changeset 0:b9809b6ee179 draft

planemo upload for repository https://github.com/asaim/galaxytools/tree/master/tools/combine_metaphlan2_humann2 commit 5c45ed58045ce1686aa069403f8a9426ea20bac5-dirty
author bebatut
date Tue, 12 Apr 2016 02:55:42 -0400
parents
children 3f55cd32b941
files combine_metaphlan2_humann2.py combine_metaphlan2_humann2.xml test-data/combined_humann2_metaphlan2.txt test-data/humann2_file.txt test-data/metaphlan2_file.txt
diffstat 5 files changed, 233786 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/combine_metaphlan2_humann2.py	Tue Apr 12 02:55:42 2016 -0400
@@ -0,0 +1,110 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+import sys
+import os
+import argparse
+import re
+
+def extract_clade_abundance(metaphlan2_filepath):
+    clade_abundance = {}
+    with open(metaphlan2_filepath, 'r') as metaphlan2_file:
+        for line in metaphlan2_file.readlines():
+            if line.find('g__') == -1:
+                continue
+
+            split_line = line[:-1].split('\t')
+            taxo = split_line[0]
+            abundance = split_line[1]
+
+            genus = taxo[(taxo.find('g__')+3):]
+            if genus.find('|') != -1:
+                genus = genus[:(genus.find('|'))]
+            clade_abundance.setdefault(genus, {'abundance':0, 'species':{}})
+            if taxo.find('t__') != -1:
+                continue
+            elif taxo.find('s__') != -1:
+                species = taxo[(taxo.find('s__')+3):]
+                clade_abundance[genus]['species'].setdefault(species, abundance)
+            else:
+                clade_abundance[genus]['abundance'] = abundance
+    return clade_abundance
+
+def compute_overall_abundance(humann2_file):
+    overall_abundance = 0
+    with open(args.humann2_file, 'r') as humann2_file:
+        for line in humann2_file.readlines():
+            if line.find('|') != -1 or line.startswith('#'):
+                continue
+            split_line = line[:-1].split('\t')
+            overall_abundance += float(split_line[1])
+    return overall_abundance
+
+def format_characteristic_name(name):
+    formatted_name = name
+    formatted_name = formatted_name.replace('/',' ')
+    formatted_name = formatted_name.replace('-',' ')
+    formatted_name = formatted_name.replace("'",'')
+    if formatted_name.find('(') != -1 and formatted_name.find(')') != -1:
+        open_bracket = formatted_name.find('(')
+        close_bracket = formatted_name.find(')')+1
+        formatted_name = formatted_name[:open_bracket] + formatted_name[close_bracket:]
+    return formatted_name
+
+def combine_metaphlan2_humann2(args):
+    clade_abundance = extract_clade_abundance(args.metaphlan2_file)
+    overall_abundance = compute_overall_abundance(args.humann2_file)
+
+    with open(args.output_file, 'w') as output_file:
+        output_file.write('genus\t')
+        output_file.write('genus_abundance\t')
+        output_file.write('species\t')
+        output_file.write('species_abundance\t')
+        output_file.write(args.type + '_id\t')
+        output_file.write(args.type + '_name\t')
+        output_file.write(args.type + '_abundance\n')
+        with open(args.humann2_file, 'r') as humann2_file:
+            for line in humann2_file.readlines():
+                if line.find('|') == -1:
+                    continue
+
+                split_line = line[:-1].split('\t')
+                abundance = 100*float(split_line[1])/overall_abundance
+                annotation = split_line[0].split('|')
+                characteristic = annotation[0].split(':')
+                characteristic_id = characteristic[0]
+                characteristic_name = ''
+                if len(characteristic) > 1:
+                    characteristic_name = format_characteristic_name(characteristic[-1])
+                taxo = annotation[1].split('.')
+                
+                if taxo[0] == 'unclassified':
+                    continue
+                genus = taxo[0][3:]
+                species = taxo[1][3:]
+
+                if not clade_abundance.has_key(genus):
+                    print "no", genus, "found in", args.metaphlan2_file
+                    continue
+                if not clade_abundance[genus]['species'].has_key(species):
+                    print "no", species, "found in", args.metaphlan2_file,
+                    print "for", genus
+                    continue
+                output_file.write(genus + '\t')
+                output_file.write(clade_abundance[genus]['abundance'] + '\t')
+                output_file.write(species + '\t')
+                output_file.write(clade_abundance[genus]['species'][species] + '\t')
+                output_file.write(characteristic_id + '\t')
+                output_file.write(characteristic_name + '\t')
+                output_file.write(str(abundance) + '\n')
+
+if __name__ == '__main__':
+    parser = argparse.ArgumentParser()
+    parser.add_argument('--humann2_file', required=True)
+    parser.add_argument('--metaphlan2_file', required=True)
+    parser.add_argument('--output_file', required=True)
+    parser.add_argument('--type', required=True, 
+        choices = ['gene_families','pathways'])
+    args = parser.parse_args()
+
+    combine_metaphlan2_humann2(args)
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/combine_metaphlan2_humann2.xml	Tue Apr 12 02:55:42 2016 -0400
@@ -0,0 +1,60 @@
+<tool id="combine_metaphlan2_humann2" name="Combine MetaPhlAn2 and HUMAnN2 outputs" version="0.1.0">
+    <description>to relate genus/species abundances and gene families/pathways abundances</description>
+
+    <requirements>
+    </requirements>
+
+    <stdio>
+        <exit_code range="1:" />
+        <exit_code range=":-1" />
+    </stdio>
+
+    <version_command></version_command>
+
+    <command><![CDATA[
+        python $__tool_directory__/combine_metaphlan2_humann2.py 
+            --metaphlan2_file $metaphlan2_file
+            --humann2_file $humann2_file
+            --type $type    
+
+            #if str($type) == 'gene_families'
+                --output_file $gene_families_output_file
+            #else
+                --output_file $pathway_output_file
+            #end if
+    ]]></command>
+
+    <inputs>
+        <param name="metaphlan2_file" format="txt,tabular" type="data" label="Input file corresponding to MetaPhlAn2 output" help="The MetaPhlAn2 output file contains relative abundance of clades at different taxonomic levels (--metaphlan2_file)"/>
+        
+        <param name="humann2_file" format="txt,tabular" type="data" label="Input file corresponding to HUMAnN2 output" help="The HUMAnN2 output file contains relative abundance of gene families or pathways with corresponding taxonomic stratification (--humann2_file)"/>
+
+        <param name='type' type="select" label="Type of characteristics in HUMAnN2 file" help="(--type)">
+            <option value="gene_families" selected="true">Gene families</option>
+            <option value="pathways">Pathways</option>
+        </param>
+    </inputs>
+
+    <outputs>
+        <data name="gene_families_output_file" format="tabular"
+            label="${tool.name} on ${on_string}: Gene family abundances related to genus/species abundances" >
+            <filter>type=="gene_families"</filter>
+        </data>
+        <data name="pathway_output_file" format="tabular"
+            label="${tool.name} on ${on_string}: Pathway abundances related to genus/species abundances" >
+            <filter>type=="pathways"</filter>
+        </data>
+    </outputs>
+
+    <tests>
+    </tests>
+
+    <help><![CDATA[
+        **What it does**
+
+        This tool combine MetaPhlAn2 outputs and HUMANnN2 outputs to get, for each gene families/pathways and the corresponding taxonomic stratification, relative abundance of this gene family/pathway and the relative abundance of corresponding species and genus.
+    ]]></help>
+
+    <citations>
+    </citations>
+</tool>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/combined_humann2_metaphlan2.txt	Tue Apr 12 02:55:42 2016 -0400
@@ -0,0 +1,29434 @@
+genus	genus_abundance	species	species_abundance	gene_families	gene_families_id	gene_families_abundance
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P19529	 Replication initiation protein	0.40728906083
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P19529	 Replication initiation protein	0.261480825839
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P19529	 Replication initiation protein	0.188582893984
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HJZ6	 Plasmid recombination enzyme type 3	0.338670908045
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HJZ6	 Plasmid recombination enzyme type 3	0.298445310895
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5HJZ6	 Plasmid recombination enzyme type 3	0.0233463103488
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P02983	 Tetracycline resistance protein	0.25596042462
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P02983	 Tetracycline resistance protein	0.255300007484
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q93GF3	 Rep	0.322388303126
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q93GF3	 Rep	0.0431524470097
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V6QG63	 Integrase	0.303352524824
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_W1W6K4		0.247856118482
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D4FM51	 Plasmid recombination enzyme	0.214063812113
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Z6ILY0		0.196787157891
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P516	 Replication initiation protein, truncated	0.11963734642
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P516	 Replication initiation protein, truncated	0.0759957583321
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU99		0.173070998557
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P14491	 Protein rlx	0.172105258916
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P14491	 Protein rlx	0.00010650270839
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P18358	 Transposon Tn552 resolvase	0.132196365122
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P18358	 Transposon Tn552 resolvase	0.0309505071873
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRN3	 ISSep1 like transposase	0.125576550449
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRN3	 ISSep1 like transposase	0.0183157071851
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q5HRN3	 ISSep1 like transposase	0.00112799242136
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L351	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.130782524407
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J5T4	 50S ribosomal protein L11	0.12410365529
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_N6A8S2		0.113249904113
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WXY9		0.107571179124
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P18357	 Regulatory protein BlaR1	0.0712959295517
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P18357	 Regulatory protein BlaR1	0.0277440503984
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P18357	 Regulatory protein BlaR1	0.0084931424066
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0LDS3		0.104070365649
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I3U5U5	 Mobilization protein C	0.0997088242247
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I3U5U5	 Mobilization protein C	0.00114228510186
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUF7		0.098270495978
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F3SP64	 Techoic acid ABC transporter, permease family protein	0.0956239346086
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P20384	 Putative transposon Tn552 DNA invertase bin3	0.0661950772486
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P20384	 Putative transposon Tn552 DNA invertase bin3	0.0269637235552
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P20384	 Putative transposon Tn552 DNA invertase bin3	0.00019566776657
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P18416	 Transposase for transposon Tn552	0.0441357768335
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P18416	 Transposase for transposon Tn552	0.0385414943881
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P18416	 Transposase for transposon Tn552	0.00989303026308
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0A042	 Penicillinase repressor	0.0379799781136
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0A042	 Penicillinase repressor	0.0352622268418
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P0A042	 Penicillinase repressor	0.0183591139641
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00807	 Beta lactamase	0.0412316511256
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P00807	 Beta lactamase	0.0373573740881
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P00807	 Beta lactamase	0.00672984582293
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P00807	 Beta lactamase	0.00606675009203
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q3Y3U4	 Mobilization protein MobC	0.0892243981339
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUE7	 Mobilization protein	0.084553431316
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P18179	 Potential ATP binding protein	0.0637292636696
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P18179	 Potential ATP binding protein	0.0221610094782
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L460	 Teichoic acid translocation permease protein	0.080608701493
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L460	 Teichoic acid translocation permease protein	0.00129525180214
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J1A645		0.0783881376034
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5QCS1	 Mobilization protein	0.0749404699751
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q51952	 OrfD	0.0651341933877
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GJM8		0.0434296773207
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GJM8		0.0238832040333
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V6QFW8		0.0659031103116
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P80705	 Aldehyde dehydrogenase gamma chain 	0.0653241739856
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N6U7		0.063761319368
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P0A0H1	 rRNA adenine N 6 methyltransferase	0.0226175612476
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0A0H1	 rRNA adenine N 6 methyltransferase	0.0216724174848
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0A0H1	 rRNA adenine N 6 methyltransferase	0.0188894850716
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9EB85	 Signal peptidase I	0.0624951739064
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5QVZ6		0.0602335935344
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZS60		0.0578684397035
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98B43	 Two component response regulator	0.0575196424371
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SI43	 ABC transporter ATP binding protein	0.0570538281831
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0A0C8	 Replication and maintenance protein	0.0324394820429
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0A0C8	 Replication and maintenance protein	0.0231810495574
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GFH6	 Low molecular weight protein tyrosine phosphatase PtpA	0.0354167703853
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GFH6	 Low molecular weight protein tyrosine phosphatase PtpA	0.0183258466875
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B4RP36	 CadB	0.0487184983795
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B4RP36	 CadB	0.00490892819264
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2JDC8		0.0507820741087
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G9C7		0.040078306483
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6G9C7		0.0106721459659
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O31705	 Molybdopterin synthase catalytic subunit	0.0285392263198
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O31705	 Molybdopterin synthase catalytic subunit	0.0219732758688
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKI3	 Possible virC1 gene, ATPase	0.0471333875271
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SJI8		0.0393960287655
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SJI8		0.00992036231973
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A5F3J8	 30S ribosomal protein S7	0.0232861798756
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5F3J8	 30S ribosomal protein S7	0.0118676610265
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5F3J8	 30S ribosomal protein S7	0.00713968027228
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A5F3J8	 30S ribosomal protein S7	0.00567831860252
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5F3J8	 30S ribosomal protein S7	0.000989848701479
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5F3J8	 30S ribosomal protein S7	0.000215736255456
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HIS8	 Single stranded DNA binding protein 1	0.0292879510174
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HIS8	 Single stranded DNA binding protein 1	0.0197919806691
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUW8	 TraE protein	0.0484687584584
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GJN1		0.0484242052246
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0MRE5		0.0459012366765
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKI5		0.0467006250254
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUB3		0.0462297494159
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q8CUB3		0.000421895513212
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GGX9	 UPF0403 protein SAR1441	0.0262243115002
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GGX9	 UPF0403 protein SAR1441	0.0203954907764
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9E8I0	 S ribosylhomocysteine lyase	0.0242916014032
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9E8I0	 S ribosylhomocysteine lyase	0.0218537149004
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUE8		0.0340367475364
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5KX02	 Deoxyribose phosphate aldolase	0.0286706093583
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5KX02	 Deoxyribose phosphate aldolase	0.0129800362923
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5KX02	 Deoxyribose phosphate aldolase	0.00260539005058
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q5KX02	 Deoxyribose phosphate aldolase	0.00108192765046
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2J7Y2		0.0447078695852
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P26423	 Galactose 6 phosphate isomerase subunit LacA	0.0188042195034
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P26423	 Galactose 6 phosphate isomerase subunit LacA	0.0139401788338
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P26423	 Galactose 6 phosphate isomerase subunit LacA	0.00649375574629
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P26423	 Galactose 6 phosphate isomerase subunit LacA	0.00493303242485
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5UNN1	 GNAT family acetyltransferase	0.0321583971311
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UNN1	 GNAT family acetyltransferase	0.0120538740417
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IWE0		0.0435080917164
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUV2	 TraG	0.0434010310472
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D2JFR8		0.0204127580601
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2JFR8		0.020048797362
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q7A7G4		0.0275018643849
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q7A7G4		0.0141609785439
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9WFJ2		0.0412735266586
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVA1	 Translation initiation factor 2, gamma subunit, GTPase	0.0409624299684
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q28UY2	 50S ribosomal protein L11	0.0313651727575
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q28UY2	 50S ribosomal protein L11	0.00832691607994
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q28UY2	 50S ribosomal protein L11	0.000247462175375
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q28UY2	 50S ribosomal protein L11	0.00023534864231
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9REY1		0.0401201319394
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L5M1	 Antibacterial protein 3 homolog	0.0388272144013
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L5M1	 Antibacterial protein 3 homolog	0.00107409114416
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9H9A8	 ATP synthase subunit beta	0.0104376734151
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A9H9A8	 ATP synthase subunit beta	0.0103817520943
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A9H9A8	 ATP synthase subunit beta	0.00994312524914
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A9H9A8	 ATP synthase subunit beta	0.00477909232636
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9H9A8	 ATP synthase subunit beta	0.00219629558569
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9H9A8	 ATP synthase subunit beta	0.00081272960829
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A9H9A8	 ATP synthase subunit beta	0.000449030921068
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A9H9A8	 ATP synthase subunit beta	0.000290748970921
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A9H9A8	 ATP synthase subunit beta	0.000166105788989
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9H9A8	 ATP synthase subunit beta	0.000164466148189
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FFK2	 Ferritin	0.0389947184645
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUZ2	 Heme oxygenase	0.0388173802433
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P55253	 Glucose 1 phosphate thymidylyltransferase	0.0221098988842
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P55253	 Glucose 1 phosphate thymidylyltransferase	0.00626860981126
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P55253	 Glucose 1 phosphate thymidylyltransferase	0.00435878907571
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P55253	 Glucose 1 phosphate thymidylyltransferase	0.00337878666962
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P55253	 Glucose 1 phosphate thymidylyltransferase	0.00148990314069
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P55253	 Glucose 1 phosphate thymidylyltransferase	0.000759338007733
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KUL3	 GCN5 related N acetyltransferase	0.0383995585849
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q7WK82	 ATP dependent Clp protease ATP binding subunit ClpX	0.0138914950022
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q7WK82	 ATP dependent Clp protease ATP binding subunit ClpX	0.00965875074792
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q7WK82	 ATP dependent Clp protease ATP binding subunit ClpX	0.00716747412917
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7WK82	 ATP dependent Clp protease ATP binding subunit ClpX	0.00429592796328
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q7WK82	 ATP dependent Clp protease ATP binding subunit ClpX	0.00199954269294
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7WK82	 ATP dependent Clp protease ATP binding subunit ClpX	0.000967260503942
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q7WK82	 ATP dependent Clp protease ATP binding subunit ClpX	0.000208424909891
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q7WK82	 ATP dependent Clp protease ATP binding subunit ClpX	8.42073123899e-05
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P70996		0.0239562254761
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P70996		0.0141011664641
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q6AL57	 Transcription elongation factor GreA	0.0378685292195
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI00037E9002	 hypothetical protein	0.0374797949062
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X3Q8	 Serine protease SplB	0.03764492118
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FFI7	 Adenylosuccinate lyase	0.011406275006
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FFI7	 Adenylosuccinate lyase	0.0110703414554
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q2FFI7	 Adenylosuccinate lyase	0.00798316298276
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2FFI7	 Adenylosuccinate lyase	0.00687488297458
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q2FFI7	 Adenylosuccinate lyase	0.000184960022788
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NN33		0.0331919634122
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J222	 Prohead peptidase	0.0372174207115
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B0TC61	 50S ribosomal protein L22	0.0238180118537
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B0TC61	 50S ribosomal protein L22	0.013285030987
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4A047	 Imidazole glycerol phosphate synthase subunit HisH	0.0248612985456
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4A047	 Imidazole glycerol phosphate synthase subunit HisH	0.0120316048337
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q7UFS3	 GMP synthase [glutamine hydrolyzing]	0.0105328921165
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q7UFS3	 GMP synthase [glutamine hydrolyzing]	0.0104301771626
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q7UFS3	 GMP synthase [glutamine hydrolyzing]	0.00987241509698
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q7UFS3	 GMP synthase [glutamine hydrolyzing]	0.00533176049293
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q7UFS3	 GMP synthase [glutamine hydrolyzing]	0.000250406426513
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q7UFS3	 GMP synthase [glutamine hydrolyzing]	0.000174754801307
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q7UFS3	 GMP synthase [glutamine hydrolyzing]	0.000162884891887
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P08417	 Fumarate hydratase, mitochondrial	0.0137107204522
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P08417	 Fumarate hydratase, mitochondrial	0.0114303158869
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P08417	 Fumarate hydratase, mitochondrial	0.00995106962683
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P08417	 Fumarate hydratase, mitochondrial	0.00058703085098
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P08417	 Fumarate hydratase, mitochondrial	0.000424303604311
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P08417	 Fumarate hydratase, mitochondrial	0.000382118623873
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P08417	 Fumarate hydratase, mitochondrial	7.52905052573e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUW3		0.0209777438798
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XWF4	 Transcriptional regulator, MerR family	0.036459593464
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SEX9	 Staphylococcal secretory antigen SssA	0.0254652293112
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SEX9	 Staphylococcal secretory antigen SssA	0.0108662548267
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUF8		0.036364041975
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HJP2	 Diacetyl reductase [ acetoin forming]	0.0189025047295
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HJP2	 Diacetyl reductase [ acetoin forming]	0.0120387578178
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5HJP2	 Diacetyl reductase [ acetoin forming]	0.00539300515127
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6U4R9	 PTS system glucoside specific EIICBA component	0.0257016548493
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A6U4R9	 PTS system glucoside specific EIICBA component	0.0103761862221
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QDY7		0.035767573207
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4SCS1	 50S ribosomal protein L5	0.0245487004574
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4SCS1	 50S ribosomal protein L5	0.00861776979753
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4SCS1	 50S ribosomal protein L5	0.00274646568447
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR00	 Protein NrdI	0.0333672572233
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HR00	 Protein NrdI	0.00231575060244
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKI1	 Possible replication protein C	0.0346824262836
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QGG7	 Tributyrin esterase	0.0193909928731
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QGG7	 Tributyrin esterase	0.0160858498799
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Y2QRV2		0.0354112953085
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V6Q9S0		0.0350755583763
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X2C6	 Quinolone resistance protein NorB	0.0290865499139
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X2C6	 Quinolone resistance protein NorB	0.00557513916539
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A7X2C6	 Quinolone resistance protein NorB	0.000170075262333
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q126M1	 Tryptophan synthase beta chain	0.00946875181098
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q126M1	 Tryptophan synthase beta chain	0.00874968546387
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q126M1	 Tryptophan synthase beta chain	0.00720127454599
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q126M1	 Tryptophan synthase beta chain	0.00611810491919
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q126M1	 Tryptophan synthase beta chain	0.00280034045302
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q126M1	 Tryptophan synthase beta chain	0.000203861254453
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q126M1	 Tryptophan synthase beta chain	0.000107753006989
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q126M1	 Tryptophan synthase beta chain	8.37880228668e-05
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H6MX85	 Peptide methionine sulfoxide reductase MsrA	0.0196854300735
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H6MX85	 Peptide methionine sulfoxide reductase MsrA	0.0149583566157
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWX7	 Putative phage tail tube protein FII	0.0335935523865
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q73WG1	 Serine hydroxymethyltransferase	0.0120001654737
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q73WG1	 Serine hydroxymethyltransferase	0.00965855289533
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q73WG1	 Serine hydroxymethyltransferase	0.00485433280565
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q73WG1	 Serine hydroxymethyltransferase	0.00346780059997
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q73WG1	 Serine hydroxymethyltransferase	0.0022442086417
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q73WG1	 Serine hydroxymethyltransferase	0.00144368486064
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q73WG1	 Serine hydroxymethyltransferase	0.000364958776861
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q73WG1	 Serine hydroxymethyltransferase	0.000256524334673
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q73WG1	 Serine hydroxymethyltransferase	0.000137366758574
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q73WG1	 Serine hydroxymethyltransferase	9.94724803483e-05
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMY4	quinone oxidoreductase 4	0.0262145564484
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CMY4	quinone oxidoreductase 4	0.00837402961703
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P13792	 Alkaline phosphatase synthesis transcriptional regulatory protein PhoP	0.0169704411474
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P13792	 Alkaline phosphatase synthesis transcriptional regulatory protein PhoP	0.00847723868307
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P13792	 Alkaline phosphatase synthesis transcriptional regulatory protein PhoP	0.00846995596331
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P13792	 Alkaline phosphatase synthesis transcriptional regulatory protein PhoP	0.000320782081009
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q6GIH0	 UPF0051 protein SAR0880	0.0139241401147
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GIH0	 UPF0051 protein SAR0880	0.0110382372708
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GIH0	 UPF0051 protein SAR0880	0.00850381119536
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q6GIH0	 UPF0051 protein SAR0880	0.000279505731741
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6GIH0	 UPF0051 protein SAR0880	0.00020886898245
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q6GIH0	 UPF0051 protein SAR0880	0.000176890656524
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49YE0	 Putative universal stress protein SSP1056	0.0182593277066
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49YE0	 Putative universal stress protein SSP1056	0.0157105676559
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L4H7		0.0206809335208
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L4H7		0.0122766638089
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q4L4H7		0.000986019499541
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKI7	 TraG	0.0336500182992
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SC38		0.0337093310312
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A6TWG5	 30S ribosomal protein S5	0.0137728965252
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A6TWG5	 30S ribosomal protein S5	0.0112175600011
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6TWG5	 30S ribosomal protein S5	0.00846318200703
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6TWG5	 30S ribosomal protein S5	0.000255606500127
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6U4U8		0.0336548558504
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q81L15	 Translation initiation factor IF 3	0.0212211744284
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q81L15	 Translation initiation factor IF 3	0.0063990034402
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q81L15	 Translation initiation factor IF 3	0.00597624026845
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q04L81	 Phosphopentomutase	0.0188045347006
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q04L81	 Phosphopentomutase	0.00834091204037
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04L81	 Phosphopentomutase	0.00585083100339
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q04L81	 Phosphopentomutase	0.000542364459146
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUB7		0.022833732676
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CUB7		0.010638818828
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P831	 Nitroreductase family protein	0.0273967281305
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P831	 Nitroreductase family protein	0.00612473741784
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5QYC3		0.0334164537023
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRT0	 Acetyltransferase, GNAT family	0.0259010795463
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRT0	 Acetyltransferase, GNAT family	0.00738681183038
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8R9	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0186381048115
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L8R9	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0144863327502
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLV2	 Staphylococcal secretory antigen SsaA	0.0182158479155
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HLV2	 Staphylococcal secretory antigen SsaA	0.0148964217108
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV94		0.0307270516076
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUV3	 TraH	0.0324872173355
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B7HEC5	 SsrA binding protein	0.0233359463386
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B7HEC5	 SsrA binding protein	0.00455347135897
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B7HEC5	 SsrA binding protein	0.00330828109406
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B7HEC5	 SsrA binding protein	0.00148477305222
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P38021	 Ornithine aminotransferase	0.0191501123036
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P38021	 Ornithine aminotransferase	0.0132408918156
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FV54	 O acetyltransferase OatA	0.0182819439498
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FV54	 O acetyltransferase OatA	0.0139617011539
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P55393	 Putative replication protein A	0.0319838065737
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KX88		0.031564494515
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3DJ42	 2 oxoglutarate carboxylase small subunit	0.00975768972288
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3DJ42	 2 oxoglutarate carboxylase small subunit	0.00898433264997
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D3DJ42	 2 oxoglutarate carboxylase small subunit	0.00704367837207
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D3DJ42	 2 oxoglutarate carboxylase small subunit	0.00478685820965
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D3DJ42	 2 oxoglutarate carboxylase small subunit	0.00107461578936
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D3DJ42	 2 oxoglutarate carboxylase small subunit	0.000249484148072
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P37469	 Replicative DNA helicase	0.0152332299435
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P37469	 Replicative DNA helicase	0.0104604078013
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P37469	 Replicative DNA helicase	0.00565650651404
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P37469	 Replicative DNA helicase	0.000550248253182
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KL54	 Tripartite ATP independent periplasmic transporter, DctQ component	0.0310780875259
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SJR1		0.0233586904255
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SJR1		0.00819514666696
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q033L0	 tRNA modification GTPase MnmE	0.0131538491419
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q033L0	 tRNA modification GTPase MnmE	0.0117928557447
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q033L0	 tRNA modification GTPase MnmE	0.00618700782488
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q033L0	 tRNA modification GTPase MnmE	0.000407241946471
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUW0	 TraW	0.028644845528
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q04F01	 Adenine phosphoribosyltransferase	0.0147754381176
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04F01	 Adenine phosphoribosyltransferase	0.00970219390284
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q04F01	 Adenine phosphoribosyltransferase	0.00695510235798
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5VI99	 Cysteine  tRNA ligase	0.0130626494458
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5VI99	 Cysteine  tRNA ligase	0.0101294741832
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A5VI99	 Cysteine  tRNA ligase	0.00790512814082
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A5VI99	 Cysteine  tRNA ligase	0.000162460210361
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5VI99	 Cysteine  tRNA ligase	0.000114472298814
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P22344		0.0313768892423
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P19480	 Alkyl hydroperoxide reductase subunit F	0.0122520044323
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P19480	 Alkyl hydroperoxide reductase subunit F	0.0107109280654
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P19480	 Alkyl hydroperoxide reductase subunit F	0.00500340805375
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P19480	 Alkyl hydroperoxide reductase subunit F	0.00249402334501
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P19480	 Alkyl hydroperoxide reductase subunit F	0.000180836072404
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P19480	 Alkyl hydroperoxide reductase subunit F	0.000170287841291
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P19480	 Alkyl hydroperoxide reductase subunit F	0.000169436984661
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P19480	 Alkyl hydroperoxide reductase subunit F	8.64422667429e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P19480	 Alkyl hydroperoxide reductase subunit F	8.49870097281e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B7UNN6	 ATP dependent 6 phosphofructokinase isozyme 1	0.0130211893966
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B7UNN6	 ATP dependent 6 phosphofructokinase isozyme 1	0.0124750822531
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7UNN6	 ATP dependent 6 phosphofructokinase isozyme 1	0.00423165477296
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B7UNN6	 ATP dependent 6 phosphofructokinase isozyme 1	0.000790360019306
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B7UNN6	 ATP dependent 6 phosphofructokinase isozyme 1	0.000644027389413
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IUD2	 ATP dependent Clp protease proteolytic subunit	0.0311068726469
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E6SMQ6	 L glutamate ABC transporter ATP binding proteinL aspartate ABC transporter ATP binding proteinneutral amino acid ABC transporter ATP binding protein	0.0114031470496
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E6SMQ6	 L glutamate ABC transporter ATP binding proteinL aspartate ABC transporter ATP binding proteinneutral amino acid ABC transporter ATP binding protein	0.0107314043626
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E6SMQ6	 L glutamate ABC transporter ATP binding proteinL aspartate ABC transporter ATP binding proteinneutral amino acid ABC transporter ATP binding protein	0.00706666310604
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E6SMQ6	 L glutamate ABC transporter ATP binding proteinL aspartate ABC transporter ATP binding proteinneutral amino acid ABC transporter ATP binding protein	0.00115534499941
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E6SMQ6	 L glutamate ABC transporter ATP binding proteinL aspartate ABC transporter ATP binding proteinneutral amino acid ABC transporter ATP binding protein	0.000726584585727
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV20		0.0284529544137
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q839Y4	 Adenylosuccinate synthetase	0.0152543692986
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q839Y4	 Adenylosuccinate synthetase	0.00888409088149
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q839Y4	 Adenylosuccinate synthetase	0.00578402644132
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q839Y4	 Adenylosuccinate synthetase	0.000676189017723
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q839Y4	 Adenylosuccinate synthetase	0.000354187971267
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G2JZ44	 Carnitine transport ATP binding protein OpuCA	0.0197920394972
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G2JZ44	 Carnitine transport ATP binding protein OpuCA	0.0108166945546
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G2JZ44	 Carnitine transport ATP binding protein OpuCA	0.000308130190644
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99YM5	 Guanylate kinase	0.0133473374416
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q99YM5	 Guanylate kinase	0.0131392540912
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q99YM5	 Guanylate kinase	0.00444271529171
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AEH3	 Protein ElaA	0.0294857963262
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEH3	 Protein ElaA	0.00143484128519
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q59966	 Cysteine synthase, plasmid	0.0132435392103
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q59966	 Cysteine synthase, plasmid	0.0120792183499
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q59966	 Cysteine synthase, plasmid	0.00291478300785
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q59966	 Cysteine synthase, plasmid	0.00261703696933
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUB4		0.0166824142374
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CUB4		0.0134033221262
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9RU74	 Ketol acid reductoisomerase	0.0109748654093
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9RU74	 Ketol acid reductoisomerase	0.0105247530464
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9RU74	 Ketol acid reductoisomerase	0.00478207940684
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q9RU74	 Ketol acid reductoisomerase	0.00426126151531
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU74	 Ketol acid reductoisomerase	0.000153441592022
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q9RU74	 Ketol acid reductoisomerase	0.000100662579814
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U449	 MutT nudix family protein	0.030753483205
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N2Z6	 LPXTG motif cell wall anchor domain protein 	0.0305959468481
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P39357		0.0152327866239
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P39357		0.00955932932281
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39357		0.00554778769725
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6ADC9	 50S ribosomal protein L20	0.020370723156
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q6ADC9	 50S ribosomal protein L20	0.00493377004791
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6ADC9	 50S ribosomal protein L20	0.00383979978936
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q6ADC9	 50S ribosomal protein L20	0.00113443334327
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUD7		0.0174102956132
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CUD7		0.012721824935
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUY8	 Response regulator receiver protein	0.0300663245437
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O80448	 Pyridoxal biosynthesis protein PDX1.1	0.0185398691359
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O80448	 Pyridoxal biosynthesis protein PDX1.1	0.00843845892281
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O80448	 Pyridoxal biosynthesis protein PDX1.1	0.00245008375281
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O80448	 Pyridoxal biosynthesis protein PDX1.1	0.000285248724528
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P55189	 Putative sulfate transporter YbaR	0.0285671402993
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P55189	 Putative sulfate transporter YbaR	0.00108935998758
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9F4G3	 HTH type transcriptional regulator TcaR	0.0206105238215
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9F4G3	 HTH type transcriptional regulator TcaR	0.00904110784435
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q831A8	 UDP N acetylglucosamine 1 carboxyvinyltransferase 2	0.0126469114986
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q831A8	 UDP N acetylglucosamine 1 carboxyvinyltransferase 2	0.00923400048167
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q831A8	 UDP N acetylglucosamine 1 carboxyvinyltransferase 2	0.00644440940322
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q831A8	 UDP N acetylglucosamine 1 carboxyvinyltransferase 2	0.000585936667349
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q831A8	 UDP N acetylglucosamine 1 carboxyvinyltransferase 2	0.000404271861106
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q831A8	 UDP N acetylglucosamine 1 carboxyvinyltransferase 2	0.000258003368975
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_S5KBE3	 Amidohydrolase	0.0150142105917
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S5KBE3	 Amidohydrolase	0.0143210152456
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S5KBE3	 Amidohydrolase	0.000252681997407
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUU7	 DNA directed RNA polymerase specialized sigma subunit, sigma24	0.0295845836381
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q18JB5	 Formate  tetrahydrofolate ligase	0.0112149004393
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q18JB5	 Formate  tetrahydrofolate ligase	0.00950064687043
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q18JB5	 Formate  tetrahydrofolate ligase	0.00487476431624
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q18JB5	 Formate  tetrahydrofolate ligase	0.00259564617699
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q18JB5	 Formate  tetrahydrofolate ligase	0.000869045441912
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q18JB5	 Formate  tetrahydrofolate ligase	0.000452910553696
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q18JB5	 Formate  tetrahydrofolate ligase	6.03133617377e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GGI4	 UPF0403 protein SAR1592	0.0245302903185
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GGI4	 UPF0403 protein SAR1592	0.00504191450383
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Y4SN89		0.0294734352764
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8XXC7	 Uracil phosphoribosyltransferase	0.0146340773682
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8XXC7	 Uracil phosphoribosyltransferase	0.0131839854594
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8XXC7	 Uracil phosphoribosyltransferase	0.000845519667258
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8XXC7	 Uracil phosphoribosyltransferase	0.000577273307411
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XXC7	 Uracil phosphoribosyltransferase	0.000160516005642
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8L7B5	 Chaperonin CPN60 like 1, mitochondrial	0.0122223404992
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8L7B5	 Chaperonin CPN60 like 1, mitochondrial	0.0110466682659
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8L7B5	 Chaperonin CPN60 like 1, mitochondrial	0.0058257551692
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q8L7B5	 Chaperonin CPN60 like 1, mitochondrial	0.000215829407254
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q8L7B5	 Chaperonin CPN60 like 1, mitochondrial	7.43479878837e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q8L7B5	 Chaperonin CPN60 like 1, mitochondrial	6.23623023739e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2J878	 CTP synthase	0.0117334087653
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2J878	 CTP synthase	0.00983590941211
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q2J878	 CTP synthase	0.00496145051608
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2J878	 CTP synthase	0.00246103681858
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q2J878	 CTP synthase	0.000241099847303
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q2J878	 CTP synthase	0.000203150017998
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUV7	 TraN	0.0293586121126
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3VA73	 PF03904 domain protein	0.0241667546503
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2G1Q1		0.0294035345974
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8DSX2	 Bifunctional protein GlmU	0.0128588269362
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8DSX2	 Bifunctional protein GlmU	0.00993231168018
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSX2	 Bifunctional protein GlmU	0.00576543021043
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8DSX2	 Bifunctional protein GlmU	0.000582986046408
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DSX2	 Bifunctional protein GlmU	0.000172696700398
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FDT8	 Probable transglycosylase IsaA	0.0204399756118
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FDT8	 Probable transglycosylase IsaA	0.00883989501342
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SKB9	 Integral membrane protein	0.0220486075792
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SKB9	 Integral membrane protein	0.00719265717763
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P62087		0.0199661320923
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P62087		0.00921338983996
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RA73		0.0291772572467
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q30TV4	 50S ribosomal protein L14	0.0212911101745
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q30TV4	 50S ribosomal protein L14	0.00755246742886
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q30TV4	 50S ribosomal protein L14	0.000275859474188
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YXL5	 ATP dependent protease subunit HslV	0.0156158478026
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YXL5	 ATP dependent protease subunit HslV	0.0134509393733
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PS89	 Alpha beta hydrolase fold	0.0290572064003
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T2K100	 CadX	0.0283596775558
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T2K100	 CadX	0.000682908894031
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3HCJ2	 2 isopropylmalate synthase	0.011216202765
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3HCJ2	 2 isopropylmalate synthase	0.0109939925562
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D3HCJ2	 2 isopropylmalate synthase	0.00671798624617
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTK1		0.0169212590307
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CTK1		0.0120475765827
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR58	 Decarboxylase family protein	0.0157824835832
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HR58	 Decarboxylase family protein	0.0130357944737
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q71YN8	 Peptidase T	0.010954113598
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q71YN8	 Peptidase T	0.0100185677842
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q71YN8	 Peptidase T	0.00593498155019
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q71YN8	 Peptidase T	0.00142248226594
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q71YN8	 Peptidase T	0.000255710265674
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q71YN8	 Peptidase T	0.000228298945937
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W7NL02		0.0286066274728
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1ZLX4	 Transaldolase	0.0148936254128
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1ZLX4	 Transaldolase	0.0138626086209
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P37464	 Serine  tRNA ligase	0.0120317502062
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P37464	 Serine  tRNA ligase	0.0097869505281
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P37464	 Serine  tRNA ligase	0.00647897990524
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P37464	 Serine  tRNA ligase	0.000295234329014
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O34742	 Glycine betaine carnitine choline transport system permease protein OpuCD	0.0128753214874
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O34742	 Glycine betaine carnitine choline transport system permease protein OpuCD	0.0101019630099
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O34742	 Glycine betaine carnitine choline transport system permease protein OpuCD	0.00506582133628
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_O34742	 Glycine betaine carnitine choline transport system permease protein OpuCD	0.000634997280196
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B4U3I6	 Phosphoglucosamine mutase	0.0141958738261
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B4U3I6	 Phosphoglucosamine mutase	0.00891623320329
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U3I6	 Phosphoglucosamine mutase	0.00534676641642
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B4U3I6	 Phosphoglucosamine mutase	0.000201182315886
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W6EGR2		0.0219382151892
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PS72		0.0198257193756
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O35008	 Putative protein YtqA	0.0129644309446
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O35008	 Putative protein YtqA	0.00878937669982
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O35008	 Putative protein YtqA	0.00639271618348
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O35008	 Putative protein YtqA	0.000229732664716
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P46331		0.0207571524247
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P46331		0.0074741737326
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6AFK7	 3 isopropylmalate dehydratase large subunit	0.0130018999624
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6AFK7	 3 isopropylmalate dehydratase large subunit	0.00773883988308
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q6AFK7	 3 isopropylmalate dehydratase large subunit	0.00692769779894
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q6AFK7	 3 isopropylmalate dehydratase large subunit	0.000409202238562
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q6AFK7	 3 isopropylmalate dehydratase large subunit	9.51598186153e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CMQ4	 NADPH dependent oxidoreductase	0.018679831955
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMQ4	 NADPH dependent oxidoreductase	0.00952555795258
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A1SEI7	 50S ribosomal protein L1	0.0150635665706
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A1SEI7	 50S ribosomal protein L1	0.0085529805277
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A1SEI7	 50S ribosomal protein L1	0.00418462744062
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A1SEI7	 50S ribosomal protein L1	0.000241542027634
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4A0X5	 Probable transglycosylase SceD 1	0.0147346351132
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4A0X5	 Probable transglycosylase SceD 1	0.0132570570159
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_N0AYY4	 Aromatic amino acid transport protein AroP 	0.018808621003
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N0AYY4	 Aromatic amino acid transport protein AroP 	0.00918157577684
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q04EV5	 Arginine deiminase	0.0140069039919
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q04EV5	 Arginine deiminase	0.0139585066244
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUW1	 Signal peptidase I	0.0207605908752
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B1HX23	 UPF0173 metal dependent hydrolase Bsph_4138	0.0154067126829
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B1HX23	 UPF0173 metal dependent hydrolase Bsph_4138	0.01251494942
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GK63	 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1	0.0201642703819
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GK63	 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1	0.00495402030567
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q6GK63	 2 C methyl D erythritol 4 phosphate cytidylyltransferase 1	0.0027760142124
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P39634	 1 pyrroline 5 carboxylate dehydrogenase	0.0144692373017
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P39634	 1 pyrroline 5 carboxylate dehydrogenase	0.0127965474122
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P39634	 1 pyrroline 5 carboxylate dehydrogenase	0.000589398981939
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SHT3	 Chromosome  partitioning protein ParB   Stage 0 sporulation protein J	0.0156545847459
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SHT3	 Chromosome  partitioning protein ParB   Stage 0 sporulation protein J	0.0121857026671
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0C0G7	 Glyceraldehyde 3 phosphate dehydrogenase	0.0112038002615
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0C0G7	 Glyceraldehyde 3 phosphate dehydrogenase	0.00823086960995
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0C0G7	 Glyceraldehyde 3 phosphate dehydrogenase	0.00677011722932
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0C0G7	 Glyceraldehyde 3 phosphate dehydrogenase	0.000797319544385
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0C0G7	 Glyceraldehyde 3 phosphate dehydrogenase	0.000558283286284
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P0C0G7	 Glyceraldehyde 3 phosphate dehydrogenase	0.000259172074957
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMC4		0.0276256593187
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5DUC9	 Thioesterase like superfamily protein	0.016132039266
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_X5DUC9	 Thioesterase like superfamily protein	0.0113947013533
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HGK2	 3 oxoacyl [acyl carrier protein] reductase FabG	0.0156274039213
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HGK2	 3 oxoacyl [acyl carrier protein] reductase FabG	0.0110763430645
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q5HGK2	 3 oxoacyl [acyl carrier protein] reductase FabG	0.000923507981431
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUU4		0.0206987442601
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI000372A8A8	 hypothetical protein	0.0180903323884
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R7G2P1	 tRNA  2 O) methyltransferase	0.0161934480381
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R7G2P1	 tRNA  2 O) methyltransferase	0.010633468294
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7G2P1	 tRNA  2 O) methyltransferase	0.00066134455477
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X3B0	 Transcriptional repressor NrdR	0.0168265423238
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X3B0	 Transcriptional repressor NrdR	0.0055416421666
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A7X3B0	 Transcriptional repressor NrdR	0.00501598205289
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P43753	 Formate acetyltransferase	0.0121414617142
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P43753	 Formate acetyltransferase	0.00821283001755
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P43753	 Formate acetyltransferase	0.00664122860226
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P43753	 Formate acetyltransferase	0.000314508772951
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKI6		0.0272995828771
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMK8	 Membrane protein insertase YidC 1	0.0181066624207
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CMK8	 Membrane protein insertase YidC 1	0.00919023310481
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q73JJ6	 50S ribosomal protein L7 L12	0.0146993691243
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q73JJ6	 50S ribosomal protein L7 L12	0.00817103833733
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q73JJ6	 50S ribosomal protein L7 L12	0.00258113265631
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q73JJ6	 50S ribosomal protein L7 L12	0.00155330103925
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q73JJ6	 50S ribosomal protein L7 L12	0.000282023931709
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FH23	 Response regulator ArlR	0.0138503408763
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FH23	 Response regulator ArlR	0.0100446972837
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q2FH23	 Response regulator ArlR	0.00323620201959
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q2FH23	 Response regulator ArlR	0.000153208751979
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A4W496	 Glutamate  tRNA ligase	0.0125309352088
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A4W496	 Glutamate  tRNA ligase	0.00839577132096
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4W496	 Glutamate  tRNA ligase	0.00625762492929
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4W496	 Glutamate  tRNA ligase	9.06324663811e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q033R5	 Fructosamine 3 kinase	0.0168937352194
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q033R5	 Fructosamine 3 kinase	0.010332777397
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLX2	 Molybdenum ABC transporter, ATP binding protein ModC	0.0143778189522
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HLX2	 Molybdenum ABC transporter, ATP binding protein ModC	0.012802116156
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P55294	 dTDP glucose 4,6 dehydratase	0.0207614434463
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P55294	 dTDP glucose 4,6 dehydratase	0.0030887072864
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P55294	 dTDP glucose 4,6 dehydratase	0.00216659226565
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P55294	 dTDP glucose 4,6 dehydratase	0.000670966722554
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P55294	 dTDP glucose 4,6 dehydratase	0.000417773951972
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D2NAI9	 Antibiotic biosynthesis monooxygenase	0.0181207110403
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2NAI9	 Antibiotic biosynthesis monooxygenase	0.00887520639399
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P50863	 Protein mrp homolog SalA	0.0156020347785
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P50863	 Protein mrp homolog SalA	0.0113004948577
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P96672	 UPF0750 membrane protein YdeO	0.0140448966702
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P96672	 UPF0750 membrane protein YdeO	0.0128457108157
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SEV3	 Molybdopterin biosynthesis protein MoeB	0.0138228655474
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SEV3	 Molybdopterin biosynthesis protein MoeB	0.0130106174261
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P74533	 Recombination protein RecR	0.0153086776281
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P74533	 Recombination protein RecR	0.0115198555531
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4X0K4		0.0266764772579
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L869	 PTS system lactose specific EIICB component	0.0121189702489
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L869	 PTS system lactose specific EIICB component	0.0100245066238
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q4L869	 PTS system lactose specific EIICB component	0.00460155477634
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P55373	 Putative transposase y4bF	0.0267428033241
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P43089	 5 aminolevulinate synthase	0.0266805359926
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YZ40		0.0144311119948
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YZ40		0.012232293109
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P72371	 Cap8E	0.026609003986
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YT60	 HlyD secretion family protein	0.0150381678268
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R9YT60	 HlyD secretion family protein	0.0114977761107
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N619	 Hydrolase, HD family	0.0149264780492
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N619	 Hydrolase, HD family	0.0115707112148
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0A0Q0	 Lactose phosphotransferase system repressor	0.0108133808038
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0A0Q0	 Lactose phosphotransferase system repressor	0.010483663222
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0A0Q0	 Lactose phosphotransferase system repressor	0.00515762446262
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1S7	 Cystathionine beta lyase	0.014388210344
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C1S7	 Cystathionine beta lyase	0.0120187925941
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q167Z8	 ExbD TolR family biopolymer transport protein, putative	0.0263861436247
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PP38	 D12 class N6 adenine specific DNA methyltransferase	0.0263569333141
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FHH3	 Ribosome maturation factor RimP	0.0134500420155
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FHH3	 Ribosome maturation factor RimP	0.0128638826392
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0C2U0	 Ornithine carbamoyltransferase, catabolic	0.0127463478269
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0C2U0	 Ornithine carbamoyltransferase, catabolic	0.00799843992551
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0C2U0	 Ornithine carbamoyltransferase, catabolic	0.00555653761995
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5LYN3	 UDP N acetylenolpyruvoylglucosamine reductase	0.0110635923176
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5LYN3	 UDP N acetylenolpyruvoylglucosamine reductase	0.00766603998408
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5LYN3	 UDP N acetylenolpyruvoylglucosamine reductase	0.00701047087228
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5LYN3	 UDP N acetylenolpyruvoylglucosamine reductase	0.000505493454853
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5KUG7	 UDP N acetylglucosamine 1 carboxyvinyltransferase 2	0.0118263278088
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5KUG7	 UDP N acetylglucosamine 1 carboxyvinyltransferase 2	0.00902803882564
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5KUG7	 UDP N acetylglucosamine 1 carboxyvinyltransferase 2	0.00469512048835
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5KUG7	 UDP N acetylglucosamine 1 carboxyvinyltransferase 2	0.000693720573091
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SHS5	 Superantigen like protein	0.026212956909
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FAD6	 Ornithine carbamoyltransferase	0.00950306752353
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8FAD6	 Ornithine carbamoyltransferase	0.00859283844815
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8FAD6	 Ornithine carbamoyltransferase	0.00644858660865
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8FAD6	 Ornithine carbamoyltransferase	0.00122900528327
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8FAD6	 Ornithine carbamoyltransferase	0.00029301877585
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8FAD6	 Ornithine carbamoyltransferase	0.000121060632557
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_N0C910	 IS3 Spn1, transposase	0.0261730953283
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3X7Y2	 Glutathione peroxidase	0.0261599261452
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q839B0	 33 kDa chaperonin	0.0136569674563
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q839B0	 33 kDa chaperonin	0.0124933886681
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUV5	 TraF	0.0254047118688
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QE85	 Staphylococcal enterotoxin like toxin	0.0260852371782
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J227		0.0257085399707
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q928B5	 Thioredoxin reductase	0.0130339749594
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q928B5	 Thioredoxin reductase	0.00958293326702
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q928B5	 Thioredoxin reductase	0.00345512379623
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F8FNN8	 YbaR	0.0201498963183
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F8FNN8	 YbaR	0.00532109838405
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F8FNN8	 YbaR	0.000597278665203
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q88TV5	 Tyrosine  tRNA ligase	0.00868386725374
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q88TV5	 Tyrosine  tRNA ligase	0.00854582931111
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q88TV5	 Tyrosine  tRNA ligase	0.00492189049956
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q88TV5	 Tyrosine  tRNA ligase	0.00348597771253
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q88TV5	 Tyrosine  tRNA ligase	0.000418982940142
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IRF7	 PEBP family protein	0.0175590620058
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A5IRF7	 PEBP family protein	0.00831514738398
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P9WQI2	 Trehalose import ATP binding protein SugC	0.0159447188472
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P9WQI2	 Trehalose import ATP binding protein SugC	0.00999274724931
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPJ9	 Bifunctional protein PyrR	0.0258927937992
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49V04	 4 diphosphocytidyl 2 C methyl D erythritol kinase	0.0155629171113
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49V04	 4 diphosphocytidyl 2 C methyl D erythritol kinase	0.0103066359688
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B5XK69	 Oleate hydratase	0.0110211731211
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B5XK69	 Oleate hydratase	0.00974551229315
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B5XK69	 Oleate hydratase	0.00479971790837
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B5XK69	 Oleate hydratase	0.000285146334119
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P65591	 Transcription termination antitermination protein NusG	0.0162261992167
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P65591	 Transcription termination antitermination protein NusG	0.00957855869495
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WWR2	 Anaerobic ribonucleoside triphosphate reductase activating protein	0.0132336671353
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WWR2	 Anaerobic ribonucleoside triphosphate reductase activating protein	0.0125617987025
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QFI0	 UPF0344 protein NWMN_0840	0.0222175925484
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A6QFI0	 UPF0344 protein NWMN_0840	0.00356633182448
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SIH2	 Cysteine desulfurase	0.0143797153132
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SIH2	 Cysteine desulfurase	0.0113904538449
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P42620	 Glutathionyl hydroquinone reductase YqjG	0.0220307612465
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42620	 Glutathionyl hydroquinone reductase YqjG	0.00272972886539
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P42620	 Glutathionyl hydroquinone reductase YqjG	0.000996991123428
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B2ITM7	 30S ribosomal protein S9	0.0178668158278
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B2ITM7	 30S ribosomal protein S9	0.00787160890768
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C1F934	 Glycine cleavage system H protein	0.0231403521145
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C1F934	 Glycine cleavage system H protein	0.00258448211739
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YZ71	 Imidazole glycerol phosphate synthase subunit HisF	0.0145957657289
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YZ71	 Imidazole glycerol phosphate synthase subunit HisF	0.0110203127198
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IVQ1	 Diaminopimelate epimerase like protein	0.0130326957026
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5IVQ1	 Diaminopimelate epimerase like protein	0.012651496567
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A1WIM3	 Urease subunit alpha	0.0105221549621
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A1WIM3	 Urease subunit alpha	0.00993248042426
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1WIM3	 Urease subunit alpha	0.00447801181638
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A1WIM3	 Urease subunit alpha	0.000288136187802
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A1WIM3	 Urease subunit alpha	0.000282228870446
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1WIM3	 Urease subunit alpha	0.000140949631148
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HDD6	 Gamma hemolysin component A	0.0256138738927
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5QMP7	 Nitrite reductase [NADH], large subunit	0.0147707665115
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5QMP7	 Nitrite reductase [NADH], large subunit	0.0108194622279
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L7Y8	 ATP synthase subunit b	0.0139999436697
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L7Y8	 ATP synthase subunit b	0.0115778051298
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RIA5		0.0255527609234
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B2GAM0	 Enolase	0.0119733698112
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B2GAM0	 Enolase	0.00679140535734
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2GAM0	 Enolase	0.00609343688694
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B2GAM0	 Enolase	0.000238758987762
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2GAM0	 Enolase	0.000184578734097
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B2GAM0	 Enolase	0.000171601695703
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_B2GAM0	 Enolase	7.9687898616e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRP0	 Dihydropteroate synthase	0.0167292177153
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRP0	 Dihydropteroate synthase	0.00870215157299
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q88VG4	 GTPase Obg	0.0112434862865
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q88VG4	 GTPase Obg	0.0087417211794
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q88VG4	 GTPase Obg	0.00490986351319
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q88VG4	 GTPase Obg	0.000541016077588
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9K6G3	 UPF0340 protein BH3766	0.0253990152218
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0EHT6		0.0253849766843
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q59935	 Mannose 6 phosphate isomerase	0.0135485320556
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q59935	 Mannose 6 phosphate isomerase	0.00644469795445
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q59935	 Mannose 6 phosphate isomerase	0.00497342355108
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q59935	 Mannose 6 phosphate isomerase	0.000413160180036
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L928	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0213827710211
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L928	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00398317790139
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0ABU1	 1,4 Dihydroxy 2 naphthoyl CoA synthase	0.0113856965325
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0ABU1	 1,4 Dihydroxy 2 naphthoyl CoA synthase	0.0109889545002
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABU1	 1,4 Dihydroxy 2 naphthoyl CoA synthase	0.00294536566838
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E6VPG8	 Transcriptional regulator, AraC family	0.0253548642016
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQT4		0.014021911472
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQT4		0.0113226955508
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B0SAP0	 Succinyl CoA ligase [ADP forming] subunit beta	0.0151065414986
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B0SAP0	 Succinyl CoA ligase [ADP forming] subunit beta	0.0100890929242
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0SAP0	 Succinyl CoA ligase [ADP forming] subunit beta	8.66648648495e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P19924	 Phosphoribulokinase, plasmid	0.0231305082718
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P19924	 Phosphoribulokinase, plasmid	0.00208108129993
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHB1		0.0250238499787
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKI6	 TraI	0.0243711622756
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7Z635	 Glycerol 3 phosphate dehydrogenase [NAD+]	0.0101695877026
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7Z635	 Glycerol 3 phosphate dehydrogenase [NAD+]	0.00887741459406
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A7Z635	 Glycerol 3 phosphate dehydrogenase [NAD+]	0.00593450372566
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A7Z635	 Glycerol 3 phosphate dehydrogenase [NAD+]	0.000202478007822
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRD2		0.0166082812104
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRD2		0.00858009532144
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7WYS8	 Lysine  tRNA ligase	0.0110511464458
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7WYS8	 Lysine  tRNA ligase	0.0108724606739
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A7WYS8	 Lysine  tRNA ligase	0.00323970096306
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P66938	 DNA topoisomerase 4 subunit B	0.0105085093997
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P66938	 DNA topoisomerase 4 subunit B	0.0101611312782
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P66938	 DNA topoisomerase 4 subunit B	0.00428655609703
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P66938	 DNA topoisomerase 4 subunit B	0.000159110404829
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUW2	 Sex pilus assembly protein	0.0178306922601
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q04789	 Acetolactate synthase	0.0109409970243
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q04789	 Acetolactate synthase	0.00908538498793
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04789	 Acetolactate synthase	0.00464609577571
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q04789	 Acetolactate synthase	0.000369639246112
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CRX7	 Two component sensor histidine kinase like protein	0.0159700978644
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRX7	 Two component sensor histidine kinase like protein	0.00900214663108
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QC63	 Multiple CBS domains containing cytosolic protein	0.0144635341291
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QC63	 Multiple CBS domains containing cytosolic protein	0.0104894171689
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03JU0	 Transposase	0.0249365144797
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q1WV02	 UPF0374 protein LSL_0370	0.011841551573
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q1WV02	 UPF0374 protein LSL_0370	0.00768088239601
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1WV02	 UPF0374 protein LSL_0370	0.00539230623793
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A9KK69	tRNA ribosyltransferase isomerase	0.0110303783103
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A9KK69	tRNA ribosyltransferase isomerase	0.00660741559361
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A9KK69	tRNA ribosyltransferase isomerase	0.00648924662635
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A9KK69	tRNA ribosyltransferase isomerase	0.000606212683008
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A9KK69	tRNA ribosyltransferase isomerase	9.85982104992e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HMG3	 Dihydroxy acid dehydratase	0.0133681705431
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HMG3	 Dihydroxy acid dehydratase	0.0102825720552
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q5HMG3	 Dihydroxy acid dehydratase	0.00104436181214
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C7K3	 Lantibiotic transport ATP binding protein	0.0151288391954
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C7K3	 Lantibiotic transport ATP binding protein	0.00966989145173
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUW4	 TraC	0.0244553004135
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8I6	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0124220893956
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L8I6	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.012307498809
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P52999	 Aspartate 1 decarboxylase	0.01357401413
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P52999	 Aspartate 1 decarboxylase	0.0111416678671
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0NRM0	 L serine ammonia lyase alpha subunit	0.0132234224032
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0NRM0	 L serine ammonia lyase alpha subunit	0.0114091812478
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2JDK2	 Elongation factor 4	0.0126155119063
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2JDK2	 Elongation factor 4	0.0082182515372
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2JDK2	 Elongation factor 4	0.0032864886019
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q2JDK2	 Elongation factor 4	0.000265999300085
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q2JDK2	 Elongation factor 4	0.000218954615217
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1Y9K8		0.0164602601965
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y9K8		0.00814350035486
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8DWE5	 Tagatose 1,6 diphosphate aldolase 2	0.0133287883907
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DWE5	 Tagatose 1,6 diphosphate aldolase 2	0.010796120064
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DWE5	 Tagatose 1,6 diphosphate aldolase 2	0.000449206343601
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1AU48	 50S ribosomal protein L15	0.0135704319656
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q1AU48	 50S ribosomal protein L15	0.00879998886901
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q1AU48	 50S ribosomal protein L15	0.00221646837792
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B0JHY9	 50S ribosomal protein L6	0.0119908774196
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B0JHY9	 50S ribosomal protein L6	0.0105490791112
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B0JHY9	 50S ribosomal protein L6	0.00197050999607
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X4U8	 ATP synthase subunit delta	0.0150520708111
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X4U8	 ATP synthase subunit delta	0.00945198145209
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A9BIZ6	 Glutamate synthase, NADH NADPH, small subunit	0.0149186434327
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A9BIZ6	 Glutamate synthase, NADH NADPH, small subunit	0.00956700746861
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L8F8	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.014473554074
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8F8	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00994410983275
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2J8Q0		0.00753476874216
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q88RZ3	 Putative ribose uptake protein RbsU	0.0187105961665
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q88RZ3	 Putative ribose uptake protein RbsU	0.00566689385041
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FEH9	 Phosphosugar binding transcriptional regulator, RpiR family	0.0170989063685
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FEH9	 Phosphosugar binding transcriptional regulator, RpiR family	0.00720929909553
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0A0A1	 Pyruvate dehydrogenase E1 component subunit beta	0.0122207465392
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0A0A1	 Pyruvate dehydrogenase E1 component subunit beta	0.0120614473481
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IUD1		0.0242432601185
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E4PYL2	 Plasmid recombination protein, Mob family	0.0240575116791
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q88YL5	 Peptide chain release factor 2	0.0135603470373
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q88YL5	 Peptide chain release factor 2	0.0100495034948
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q88YL5	 Peptide chain release factor 2	0.000615959589395
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRF7	 Phosphate acetyltransferase	0.0101747895203
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRF7	 Phosphate acetyltransferase	0.00943396715012
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5HRF7	 Phosphate acetyltransferase	0.00460027902276
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5KXU4	 Chorismate synthase	0.0104999609311
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5KXU4	 Chorismate synthase	0.00997444264773
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5KXU4	 Chorismate synthase	0.00351360502081
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5KXU4	 Chorismate synthase	0.000135341243363
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q71ZM1	 Probable endonuclease 4	0.0122471690062
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q71ZM1	 Probable endonuclease 4	0.011911512365
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DLF5	 DNA polymerase III gamma and tau subunits	0.0130519112766
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DLF5	 DNA polymerase III gamma and tau subunits	0.0110888750444
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUW7	 TraK protein	0.0195684919835
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9E8E5	 ATP synthase epsilon chain	0.0209579938344
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9E8E5	 ATP synthase epsilon chain	0.0031204914263
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GE73	 Heme response regulator HssR	0.0140443234579
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GE73	 Heme response regulator HssR	0.010024961702
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9WDP4	 MmoB DmpM family	0.0240663909521
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q67MT5	 Peptide chain release factor 3	0.00949984187032
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q67MT5	 Peptide chain release factor 3	0.00861396282839
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q67MT5	 Peptide chain release factor 3	0.00539591361524
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q67MT5	 Peptide chain release factor 3	0.000311435943558
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q67MT5	 Peptide chain release factor 3	0.00022807954135
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PGM6	 50S ribosomal protein L6	0.0240311486566
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FG29	 Alanine dehydrogenase 2	0.0140554894598
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FG29	 Alanine dehydrogenase 2	0.00925974349892
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2FG29	 Alanine dehydrogenase 2	0.000677110079641
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O32197	 Transcriptional regulatory protein LiaR	0.0121689450461
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O32197	 Transcriptional regulatory protein LiaR	0.00800774000966
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O32197	 Transcriptional regulatory protein LiaR	0.00365316420177
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_O32197	 Transcriptional regulatory protein LiaR	0.000174377491457
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2NAH1	 Dihydroorotate oxidase	0.0121820103505
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D2NAH1	 Dihydroorotate oxidase	0.0117853377294
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HET5	 Sirohydrochlorin ferrochelatase	0.0165948223502
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D8HET5	 Sirohydrochlorin ferrochelatase	0.00737147500857
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P37545		0.0124683431386
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P37545		0.0114950125711
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NRL5		0.0185840912755
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_W4KZV0	 Glycosyltransferase Gtf1	0.0120635988819
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W4KZV0	 Glycosyltransferase Gtf1	0.0118845584366
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q817Z6	 Transcription elongation factor GreA	0.0109869884284
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q817Z6	 Transcription elongation factor GreA	0.00697119620498
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q817Z6	 Transcription elongation factor GreA	0.0059882829751
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9E943		0.015264476699
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9E943		0.00867504103655
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZTG5	 Acetyltransferase, GNAT family protein	0.0239383102819
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6AQS4	 Aspartate  tRNA ligase	0.0121005936933
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6AQS4	 Aspartate  tRNA ligase	0.0109773700737
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q6AQS4	 Aspartate  tRNA ligase	0.000474026392486
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q6AQS4	 Aspartate  tRNA ligase	0.000363473019197
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQC3	 Membrane spanning protein	0.0121387625064
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CQC3	 Membrane spanning protein	0.0117749568869
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P39576	 Branched chain amino acid aminotransferase 2	0.0119627357353
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P39576	 Branched chain amino acid aminotransferase 2	0.011933382061
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C3F9W4	 UTP  glucose 1 phosphate uridylyltransferase	0.0239008188152
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1WZJ2	 60 kDa chaperonin	0.0225356407173
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A1WZJ2	 60 kDa chaperonin	0.00115656238616
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A1WZJ2	 60 kDa chaperonin	0.000201935299888
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HP96	 UPF0398 protein SERP1017	0.0119227741076
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HP96	 UPF0398 protein SERP1017	0.0119114565444
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HGN0	 Carbamoyl phosphate synthase small chain	0.0102789057763
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HGN0	 Carbamoyl phosphate synthase small chain	0.00851230363961
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5HGN0	 Carbamoyl phosphate synthase small chain	0.00495677542037
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q5HGN0	 Carbamoyl phosphate synthase small chain	0.000110343789677
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V105	 Penicillinase repressor family protein	0.0238138423584
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P71015	 HTH type transcriptional repressor GbsR	0.0136439394832
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P71015	 HTH type transcriptional repressor GbsR	0.010168449922
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HLA3	 Putative aldehyde dehydrogenase AldA	0.0128808083192
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLA3	 Putative aldehyde dehydrogenase AldA	0.0104759996242
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q5HLA3	 Putative aldehyde dehydrogenase AldA	0.000335878784174
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GE10	 6 carboxyhexanoate  CoA ligase	0.0118968718359
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GE10	 6 carboxyhexanoate  CoA ligase	0.011818165575
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X6Z3	 Oxygen dependent choline dehydrogenase	0.013286268442
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X6Z3	 Oxygen dependent choline dehydrogenase	0.0104300525075
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV13	 Radical SAM superfamily protein	0.0236393082444
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O34436	 Probable low affinity inorganic phosphate transporter	0.0121582847208
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O34436	 Probable low affinity inorganic phosphate transporter	0.0114796385864
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P66936	 DNA gyrase subunit B	0.0137231227642
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P66936	 DNA gyrase subunit B	0.00989051015211
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C9A997	 Alpha acetolactate decarboxylase	0.0145182061983
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C9A997	 Alpha acetolactate decarboxylase	0.00911282354859
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GJ93	 Putative acetyl CoA C acetyltransferase VraB	0.0122255141315
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GJ93	 Putative acetyl CoA C acetyltransferase VraB	0.0114042912184
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q99Y18	 6 phospho beta galactosidase	0.00993055287234
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99Y18	 6 phospho beta galactosidase	0.00884608444785
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q99Y18	 6 phospho beta galactosidase	0.00483447536427
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SIZ2	 Luciferase family oxidoreductase, FMN dependent, PP_0088 family	0.0119933028465
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D6SIZ2	 Luciferase family oxidoreductase, FMN dependent, PP_0088 family	0.0116145700703
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A0Q6K3	 Malate dehydrogenase	0.0135799302641
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0Q6K3	 Malate dehydrogenase	0.00994421618759
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CNA9	 Phosphoglycolate phosphatase	0.016361661658
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNA9	 Phosphoglycolate phosphatase	0.00721434063215
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C2L0	 FatD	0.0095936689324
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C2L0	 FatD	0.00918976586606
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I0C2L0	 FatD	0.00476808183833
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKI4		0.0197894344415
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GJE0	 Serine acetyltransferase	0.016639592249
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GJE0	 Serine acetyltransferase	0.00684707292279
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZMW5		0.0129530917473
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G7ZMW5		0.0105624076391
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FVV8	 Transcriptional regulator, putative	0.0123118132369
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FVV8	 Transcriptional regulator, putative	0.0111954208145
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2G0P2	 Transcription termination antitermination protein NusG	0.0119170840909
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2G0P2	 Transcription termination antitermination protein NusG	0.0115899139277
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GIN8	 Protein translocase subunit SecA 1	0.0119274423546
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GIN8	 Protein translocase subunit SecA 1	0.0115752869138
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WSQ0		0.0129087857683
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WSQ0		0.010541964533
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G6X4	 Isopentenyl diphosphate delta isomerase	0.0121901959958
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6G6X4	 Isopentenyl diphosphate delta isomerase	0.0112471769982
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5FLZ3	 tRNA N6 adenosine threonylcarbamoyltransferase	0.00999639290836
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5FLZ3	 tRNA N6 adenosine threonylcarbamoyltransferase	0.00797260550927
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5FLZ3	 tRNA N6 adenosine threonylcarbamoyltransferase	0.00492165638663
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q5FLZ3	 tRNA N6 adenosine threonylcarbamoyltransferase	0.000533964162529
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49XA7	 Response regulator	0.00937726374472
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49XA7	 Response regulator	0.0076510036168
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q49XA7	 Response regulator	0.00618798423419
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q49XA7	 Response regulator	0.000210781978183
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SF18	 Aldose 1 epimerase	0.0129167874389
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SF18	 Aldose 1 epimerase	0.0104719671108
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5M2U6	 Ribosomal RNA small subunit methyltransferase H	0.00995060492195
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5M2U6	 Ribosomal RNA small subunit methyltransferase H	0.00824323982772
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5M2U6	 Ribosomal RNA small subunit methyltransferase H	0.00513831864535
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1J1	 ABC transporter ATP binding protein	0.0138348663425
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C1J1	 ABC transporter ATP binding protein	0.00951583673439
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D2P385		0.0233451514874
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HM69	 Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.0108000401687
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HM69	 Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.00851131550972
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5HM69	 Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.00383785626388
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5HM69	 Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.00019185336944
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B9KZY0	 50S ribosomal protein L16	0.00721175482508
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KZY0	 50S ribosomal protein L16	0.00588333364334
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9KZY0	 50S ribosomal protein L16	0.00549143805882
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9KZY0	 50S ribosomal protein L16	0.00472682338284
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QH80	 Hydroxymethylglutaryl CoA reductase	0.0117556526388
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QH80	 Hydroxymethylglutaryl CoA reductase	0.0115359336326
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUZ1	 Phytochrome sensor diguanylate cyclase phosphodiesterase	0.0232694545177
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQB1	 Probable quinol oxidase subunit 3	0.0155351314732
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQB1	 Probable quinol oxidase subunit 3	0.00772539582603
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5VKT1	 Peptide methionine sulfoxide reductase MsrA	0.0162934746011
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5VKT1	 Peptide methionine sulfoxide reductase MsrA	0.0069554920024
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U493		0.0125782504714
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I6U493		0.0106633701023
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5WE04	 L lactate dehydrogenase	0.0158584345254
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5WE04	 L lactate dehydrogenase	0.00737876657084
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZUY2	 Tagatose 6 phosphate kinase	0.0135007369573
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C7ZUY2	 Tagatose 6 phosphate kinase	0.00972405700043
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKD7		0.0223416277199
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P19581	 Capsule biosynthesis protein CapC	0.023188461391
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P00728	 Thermophilic aminopeptidase 1 alpha chain 	0.0120386534412
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P00728	 Thermophilic aminopeptidase 1 alpha chain 	0.0111391264403
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B7HEG4	 HPr kinase phosphorylase	0.0122798502814
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B7HEG4	 HPr kinase phosphorylase	0.0108799271093
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QDA5	 Transcriptional regulator in cluster with Zn dependent hydrolase	0.0133142685356
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QDA5	 Transcriptional regulator in cluster with Zn dependent hydrolase	0.00983545477149
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C6V7	 Acyl CoA dehydrogenase, short chain specific	0.0116791477927
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C6V7	 Acyl CoA dehydrogenase, short chain specific	0.0114557582485
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GDQ8	 Holin like protein CidB	0.0134839468543
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GDQ8	 Holin like protein CidB	0.00965081276112
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUA7		0.0159294003108
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CUA7		0.00568260740483
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U3NTK4		0.0229736230436
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9VWJ0		0.0225003028676
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5F973	 Phosphoribosylformylglycinamidine cyclo ligase	0.012212730174
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5F973	 Phosphoribosylformylglycinamidine cyclo ligase	0.0104832823636
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F973	 Phosphoribosylformylglycinamidine cyclo ligase	0.000217666555587
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q5F973	 Phosphoribosylformylglycinamidine cyclo ligase	0.000100964567551
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P39851	 Putative tyrosine protein kinase CapB	0.0228528553725
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A3CQT5	 2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N acetyltransferase	0.0105463956763
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A3CQT5	 2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N acetyltransferase	0.00807587773834
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CQT5	 2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N acetyltransferase	0.00437620803416
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YSD7	guanido phosphotransferase SAB0474	0.0118262303172
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YSD7	guanido phosphotransferase SAB0474	0.0111679433991
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YSH2		0.0137313773394
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YSH2		0.00925663960234
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P39773	 2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.0120158491822
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P39773	 2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.0109349414042
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9BHA3	 Elongation factor Tu	0.0226520163766
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9BHA3	 Elongation factor Tu	0.000280679657077
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1S4	 Carboxylesterase	0.0119656280723
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C1S4	 Carboxylesterase	0.0109667199335
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QJ40	 Riboflavin biosynthesis protein RibD	0.0121408421553
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QJ40	 Riboflavin biosynthesis protein RibD	0.0107904428331
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49W95	flavin oxidoreductase	0.0135749357207
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49W95	flavin oxidoreductase	0.00934680072168
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GJB5		0.0117284359833
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GJB5		0.0111881526574
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HK19	 Sensor protein kinase WalK	0.0130362188003
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HK19	 Sensor protein kinase WalK	0.00984098024419
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1YAJ7	 Conserved membrane protein 	0.0088381367354
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YAJ7	 Conserved membrane protein 	0.00820299279512
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T1YAJ7	 Conserved membrane protein 	0.00584377598766
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9E8W4		0.0126903597638
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9E8W4		0.0101916916935
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HLN9	 Transcriptional regulator, TetR family	0.0129977994178
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLN9	 Transcriptional regulator, TetR family	0.00988254338093
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CMU9	 Protein translocase subunit SecA 2	0.0128531965237
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMU9	 Protein translocase subunit SecA 2	0.0100218134142
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0C1L0	 Transposase for insertion sequence like element IS431mec	0.0222703263798
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0C1L0	 Transposase for insertion sequence like element IS431mec	0.0005791688704
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P396	 Betaine aldehyde dehydrogenase	0.0125947741991
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P396	 Betaine aldehyde dehydrogenase	0.0102225308202
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C432	 Homoserine dehydrogenase	0.0127412552042
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C432	 Homoserine dehydrogenase	0.0100048519629
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DJU7	 Choline transporter	0.0134519025764
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DJU7	 Choline transporter	0.00928798127421
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C7E7	 NikE	0.0128217756273
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C7E7	 NikE	0.00990708016559
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C1KXH5	 3 5 exoribonuclease YhaM	0.0133393478337
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C1KXH5	 3 5 exoribonuclease YhaM	0.00931523281448
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P54425		0.0106374724461
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P54425		0.0104245658218
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P54425		0.00165620251393
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRQ4	 50S ribosomal protein L25	0.0134515137965
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRQ4	 50S ribosomal protein L25	0.00924998378019
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPB5	 Glucose specific phosphotransferase enzyme IIA component	0.022693513905
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WTQ7	 NnrU family protein	0.0219340877664
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q038L3	 Elongation factor Ts	0.0118867656432
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q038L3	 Elongation factor Ts	0.0107978024207
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV82		0.0220256921847
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CS24		0.011791790266
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS24		0.0108691545876
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HS39	 Replication associated protein RepA	0.0226431181303
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SDZ5		0.0120169569667
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SDZ5		0.010639992894
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49VS2	 Putative lipid kinase SSP1993	0.0138513384766
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49VS2	 Putative lipid kinase SSP1993	0.0087800033638
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5EIQ4	 Dihydroxyacetone kinase, L subunit	0.0147532076467
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_X5EIQ4	 Dihydroxyacetone kinase, L subunit	0.00786658440845
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B3WF19	 Phenylalanine  tRNA ligase alpha subunit	0.0118004749838
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B3WF19	 Phenylalanine  tRNA ligase alpha subunit	0.00694530385441
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B3WF19	 Phenylalanine  tRNA ligase alpha subunit	0.00344104054505
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B3WF19	 Phenylalanine  tRNA ligase alpha subunit	0.00032096420554
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B3WF19	 Phenylalanine  tRNA ligase alpha subunit	0.000101778797932
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UMZ1	 N acetylglucosamine 6 phosphate deacetylase	0.0117359440656
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5UMZ1	 N acetylglucosamine 6 phosphate deacetylase	0.0108474074123
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GI66	 UDP N acetylmuramoyl L alanyl D glutamate  L lysine ligase	0.0143934446054
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GI66	 UDP N acetylmuramoyl L alanyl D glutamate  L lysine ligase	0.00817910480853
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5E5J7	 Lipoprotein	0.0129383498449
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_X5E5J7	 Lipoprotein	0.00957069560684
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B1MB87	 Urease accessory protein UreG	0.0118621379656
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B1MB87	 Urease accessory protein UreG	0.0106456105726
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YZ70	 1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.0179326745158
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YZ70	 1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.00437552640539
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DLQ3	 TcaB protein	0.0144847988448
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DLQ3	 TcaB protein	0.00801458269798
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YTA2	 Dephospho CoA kinase	0.0113578643185
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YTA2	 Dephospho CoA kinase	0.0111328048187
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WY79	 Alpha beta hydrolase	0.0146592613772
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WY79	 Alpha beta hydrolase	0.00782298702075
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q71WL8	 Arginine  tRNA ligase	0.0114949176408
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q71WL8	 Arginine  tRNA ligase	0.0109569983153
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SBR0		0.0224412841322
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P74309	 Fructose bisphosphate aldolase class 1	0.0138924474738
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P74309	 Fructose bisphosphate aldolase class 1	0.00853285654793
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y647	 Ribitol 5 phosphate 2 dehydrogenase	0.0152544055035
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1Y647	 Ribitol 5 phosphate 2 dehydrogenase	0.00716364488688
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99VJ4	 Clumping factor A	0.0224119469229
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X2X9	 Ribosomal protein L11 methyltransferase	0.0123258952036
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X2X9	 Ribosomal protein L11 methyltransferase	0.0100394359472
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8XNK5	 Tagatose 6 phosphate kinase	0.00923123363605
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8XNK5	 Tagatose 6 phosphate kinase	0.00880515478541
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8XNK5	 Tagatose 6 phosphate kinase	0.00431236887865
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L4C2	 Fructose specific permease	0.0119481624503
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L4C2	 Fructose specific permease	0.0104055765489
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0M6S7		0.0223335758788
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9H8V7		0.0223286626026
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CR31	 N succinyldiaminopimelate aminotransferase	0.0114031845217
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CR31	 N succinyldiaminopimelate aminotransferase	0.0109204468752
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XPL8	 Cobalamin synthesis protein, putative	0.0131166665216
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1XPL8	 Cobalamin synthesis protein, putative	0.00920488263685
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GEY2	 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase	0.0148004522121
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GEY2	 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase	0.00748140115618
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q74JL8	 Cytidylate kinase	0.00880851170688
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q74JL8	 Cytidylate kinase	0.00799797577449
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q74JL8	 Cytidylate kinase	0.00546522015676
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P62221	 Protein RecA	0.0135933663263
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P62221	 Protein RecA	0.00867620676045
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X442	 NH dependent NAD(+) synthetase	0.0111169328769
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X442	 NH dependent NAD(+) synthetase	0.00776953026692
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7X442	 NH dependent NAD(+) synthetase	0.00206085736204
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A7X442	 NH dependent NAD(+) synthetase	0.00118696482961
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FK43	 Pyruvate formate lyase activating enzyme	0.0133639729988
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FK43	 Pyruvate formate lyase activating enzyme	0.00868324917205
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O32091		0.00785427924618
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O32091		0.00761386548756
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O32091		0.00677822741317
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6Q235	 3 dehydroquinate dehydratase	0.0222462173991
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P38527	 Transcription termination factor Rho	0.0117487071333
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P38527	 Transcription termination factor Rho	0.0104807929911
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YSR2	 Probable transcriptional regulatory protein SAB0618	0.0118371447306
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YSR2	 Probable transcriptional regulatory protein SAB0618	0.0103554321414
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9EA42		0.0147092245546
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9EA42		0.00747857320344
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y682	 Transporter	0.0132541088738
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1Y682	 Transporter	0.00892456464113
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_K0LCS5	 Sulfite reductase  alpha subunit	0.0114044283352
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0LCS5	 Sulfite reductase  alpha subunit	0.0107519021648
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QJ45	 Lysophospholipase Monoglyceride lipase	0.0115714599719
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QJ45	 Lysophospholipase Monoglyceride lipase	0.0105607383742
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HHC7	 NAD specific glutamate dehydrogenase	0.0125450360312
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HHC7	 NAD specific glutamate dehydrogenase	0.00957142283215
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P39766	 Uracil permease	0.0111565466515
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P39766	 Uracil permease	0.010970782121
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HM36	 Galactose 6 phosphate isomerase subunit LacB	0.0105435679391
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HM36	 Galactose 6 phosphate isomerase subunit LacB	0.00939886918289
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5HM36	 Galactose 6 phosphate isomerase subunit LacB	0.00216205543521
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8FW95	 Bacterioferritin	0.0220133662614
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8EU05	 Chaperone protein ClpB	0.0144239507216
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8EU05	 Chaperone protein ClpB	0.00765499620099
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SEC7	 DHHA1 domain protein	0.0112132417736
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D6SEC7	 DHHA1 domain protein	0.0108549835841
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0BUN4	 50S ribosomal protein L18	0.0136148260749
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q0BUN4	 50S ribosomal protein L18	0.00533351824466
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q0BUN4	 50S ribosomal protein L18	0.00282576617679
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0BUN4	 50S ribosomal protein L18	0.000289296755161
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HL91	 Perfringolysin O regulator protein, putative	0.0119447557539
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HL91	 Perfringolysin O regulator protein, putative	0.0101117481323
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FJI0	 Methionine import ATP binding protein MetN 1	0.0139374770721
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FJI0	 Methionine import ATP binding protein MetN 1	0.00810678642803
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P37560		0.0198430200031
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P37560		0.00218943130869
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9MKF3	 DNA directed RNA polymerase subunit alpha	0.00849942043699
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9MKF3	 DNA directed RNA polymerase subunit alpha	0.00818119213953
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B9MKF3	 DNA directed RNA polymerase subunit alpha	0.00420967826784
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B9MKF3	 DNA directed RNA polymerase subunit alpha	0.000993527929598
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9MKF3	 DNA directed RNA polymerase subunit alpha	0.000114472298814
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GF11	 Protein SprT like	0.0195946959345
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GF11	 Protein SprT like	0.00240734377259
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P65168	 Inosine 5 monophosphate dehydrogenase	0.0098825013784
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P65168	 Inosine 5 monophosphate dehydrogenase	0.00850938283482
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P65168	 Inosine 5 monophosphate dehydrogenase	0.00216200539843
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P65168	 Inosine 5 monophosphate dehydrogenase	0.000731603264875
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P65168	 Inosine 5 monophosphate dehydrogenase	0.000488850884829
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P65168	 Inosine 5 monophosphate dehydrogenase	9.03890488355e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P65168	 Inosine 5 monophosphate dehydrogenase	7.35357374688e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S4X548	 O acetylserine dependent cystathionine beta synthase	0.0147633059342
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_S4X548	 O acetylserine dependent cystathionine beta synthase	0.00720098340322
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X202	 Nuclease SbcCD subunit D	0.0136295354067
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X202	 Nuclease SbcCD subunit D	0.00832183389169
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q03UB1	 Ribosomal RNA large subunit methyltransferase H	0.0217397014673
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q03UB1	 Ribosomal RNA large subunit methyltransferase H	0.000211222944667
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5UPA0	 Transcription termination factor NusA	0.0112047746557
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UPA0	 Transcription termination factor NusA	0.0107427369824
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F7Z135	 Purine operon repressor, PurR	0.0135873848627
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F7Z135	 Purine operon repressor, PurR	0.00835512770877
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FDM8	 HTH type transcriptional regulator ArcR	0.0145544150498
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FDM8	 HTH type transcriptional regulator ArcR	0.00738012686594
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C0SPB0		0.0126812984019
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C0SPB0		0.00925188649064
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9CE10	 UDP N acetylmuramate  L alanine ligase	0.00923680913592
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9CE10	 UDP N acetylmuramate  L alanine ligase	0.00796527184321
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CE10	 UDP N acetylmuramate  L alanine ligase	0.0045245751443
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9CE10	 UDP N acetylmuramate  L alanine ligase	0.00020508569846
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CNH5	 General stress protein 20U	0.0118129642635
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNH5	 General stress protein 20U	0.0101101888076
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q038N5	 Chaperone protein DnaJ	0.00849197542603
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q038N5	 Chaperone protein DnaJ	0.00780661537626
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q038N5	 Chaperone protein DnaJ	0.00537888162953
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q038N5	 Chaperone protein DnaJ	0.000234522957156
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P39651		0.0113384105105
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P39651		0.0105399866705
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F8FR22	 ABC transporter permease protein	0.0127501913589
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F8FR22	 ABC transporter permease protein	0.00914544193805
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW63		0.0204950730061
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0CE57	 Transposase InsH for insertion sequence element IS5R	0.0218548969727
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WPL2		0.0183938483635
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WPL2		0.0034608499855
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DKN5	 Biotin synthase	0.010934068619
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DKN5	 Biotin synthase	0.010906091904
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L4U2	 Protein NagD homolog	0.0137540377982
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L4U2	 Protein NagD homolog	0.00804354548209
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QHK9	 Glycerate kinase	0.0131973729673
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QHK9	 Glycerate kinase	0.00864499218072
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P77499	 Probable ATP dependent transporter SufC	0.0134841878746
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P77499	 Probable ATP dependent transporter SufC	0.00632765743631
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77499	 Probable ATP dependent transporter SufC	0.00161703604642
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P77499	 Probable ATP dependent transporter SufC	0.000392693852386
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P9K4	 DNA polymerase III delta prime subunit	0.0109628832375
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P9K4	 DNA polymerase III delta prime subunit	0.010724809713
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HE75	 Fructose bisphosphate aldolase	0.0127297866041
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HE75	 Fructose bisphosphate aldolase	0.00899075988171
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SKI8	 Ribosomal protein S18p alanine acetyltransferase	0.0113480923646
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SKI8	 Ribosomal protein S18p alanine acetyltransferase	0.0104398310964
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q7UQD2	 UPF0365 protein RB6389	0.0106337311323
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q7UQD2	 UPF0365 protein RB6389	0.0103823993715
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q7UQD2	 UPF0365 protein RB6389	0.000746872141434
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9K706	 Gluconeogenesis factor	0.0123783763746
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9K706	 Gluconeogenesis factor	0.00936060898274
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P49778	 Elongation factor P	0.0135779575375
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P49778	 Elongation factor P	0.00814838342417
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SF08	 N acetyl L,L diaminopimelate deacetylase like protein	0.0115456238497
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SF08	 N acetyl L,L diaminopimelate deacetylase like protein	0.0101658339119
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q56198	 Glucokinase	0.0124443692388
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q56198	 Glucokinase	0.00926686210172
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2N9Z4	 Aminoacyltransferase FemA 	0.0152882295133
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D2N9Z4	 Aminoacyltransferase FemA 	0.00642288236269
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WYV5	 Dihydroxyacetone kinase subunit DhaK	0.0109018777012
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WYV5	 Dihydroxyacetone kinase subunit DhaK	0.0107868843083
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLP5		0.021671971606
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1H9	 FMN reductase	0.0216658074752
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C9RUW3	 ComE operon protein 2	0.0130205210014
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C9RUW3	 ComE operon protein 2	0.00860464912406
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_K0L0Y0	 Pyruvate oxidase	0.0113512177156
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0L0Y0	 Pyruvate oxidase	0.0102692712647
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C7C2		0.010751124452
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C7C2		0.0104913927264
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q05207	 Protein translocase subunit SecY	0.0115526036007
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q05207	 Protein translocase subunit SecY	0.0100598866588
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P33015	 UPF0394 inner membrane protein YeeE	0.0106377375875
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P33015	 UPF0394 inner membrane protein YeeE	0.00782209236169
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33015	 UPF0394 inner membrane protein YeeE	0.00312905796731
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HH71	 UPF0477 protein SACOL1020	0.0114245974478
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HH71	 UPF0477 protein SACOL1020	0.0101350981235
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P65904	 Phosphoribosylformylglycinamidine synthase 1	0.0131447983987
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P65904	 Phosphoribosylformylglycinamidine synthase 1	0.00838402349076
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X6X6	 Pantothenate synthetase	0.0114963027901
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X6X6	 Pantothenate synthetase	0.0100243975201
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L6U5	 Probable nicotinate nucleotide adenylyltransferase	0.0114271869529
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L6U5	 Probable nicotinate nucleotide adenylyltransferase	0.00997054396415
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P74892	 Sucrose operon repressor	0.0111041433003
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P74892	 Sucrose operon repressor	0.0103706438545
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G2JZ43	 Carnitine transport permease protein OpuCB	0.0108655408282
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G2JZ43	 Carnitine transport permease protein OpuCB	0.00622023724054
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G2JZ43	 Carnitine transport permease protein OpuCB	0.0043836622176
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WVY8	 Ribosomal RNA small subunit methyltransferase G	0.0213190425
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q55848	 Ribose phosphate pyrophosphokinase	0.0114574276258
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q55848	 Ribose phosphate pyrophosphokinase	0.00937412626791
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q55848	 Ribose phosphate pyrophosphokinase	0.000313554557611
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q55848	 Ribose phosphate pyrophosphokinase	0.000244098072735
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49YW6		0.0118264374885
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49YW6		0.009607454405
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YS82	 tRNA threonylcarbamoyl adenosine modification protein YeaZ	0.0111507386161
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R9YS82	 tRNA threonylcarbamoyl adenosine modification protein YeaZ	0.0102715568199
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C3PFR3	 ATP synthase subunit alpha	0.0115121053738
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C3PFR3	 ATP synthase subunit alpha	0.00713352132457
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C3PFR3	 ATP synthase subunit alpha	0.00277320034632
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQ28	 ABC transporter	0.0111681908444
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CQ28	 ABC transporter	0.010253166063
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IUD7	 Phage transcriptional regulator, RinA family	0.0212702297867
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O31677	 7 carboxy 7 deazaguanine synthase	0.0111283880511
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O31677	 7 carboxy 7 deazaguanine synthase	0.010269749537
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P54452		0.0116365737092
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P54452		0.00974261356711
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QHC5	 Alkaline phosphatase like protein	0.0135762337142
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QHC5	 Alkaline phosphatase like protein	0.00778471002406
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2LTR7	 Proline  tRNA ligase	0.0132113458917
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2LTR7	 Proline  tRNA ligase	0.00785454999884
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q2LTR7	 Proline  tRNA ligase	0.000276042158022
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HEB2	 Cardiolipin synthase 2	0.013623939659
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HEB2	 Cardiolipin synthase 2	0.00771958610275
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P58336	 Fructose bisphosphate aldolase	0.0205527752606
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P58336	 Fructose bisphosphate aldolase	0.000739055291682
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DK54	 Predicted membrane protein with CBS domains	0.0115824595561
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DK54	 Predicted membrane protein with CBS domains	0.00975417461053
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9SLK0	 Peroxisomal isocitrate dehydrogenase [NADP]	0.0212847390561
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV16		0.0213113346691
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P52331	 RNA polymerase sigma factor SigA	0.00905495183268
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P52331	 RNA polymerase sigma factor SigA	0.00663064130489
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P52331	 RNA polymerase sigma factor SigA	0.0050023910728
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P52331	 RNA polymerase sigma factor SigA	0.000615066763268
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q818M5	 Probable glycine dehydrogenase  subunit 2	0.0112120438765
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q818M5	 Probable glycine dehydrogenase  subunit 2	0.0100905726132
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5MZU9	 Formate nitrite transporter	0.0113692916383
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5MZU9	 Formate nitrite transporter	0.00991731828889
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O34697	 Bacitracin export ATP binding protein BceA	0.0157186380961
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O34697	 Bacitracin export ATP binding protein BceA	0.00556451268645
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O31605	 Oligoendopeptidase F homolog	0.0109682955466
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O31605	 Oligoendopeptidase F homolog	0.0102887435894
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49WL3	 Ribonuclease J 1	0.00983962573307
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49WL3	 Ribonuclease J 1	0.00612707603014
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q49WL3	 Ribonuclease J 1	0.00467968619191
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q49WL3	 Ribonuclease J 1	0.000562179347755
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5US29	 Sugar binding domain containing protein	0.010785147517
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5US29	 Sugar binding domain containing protein	0.0104591190608
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q7MDH6	 Sugar phosphate permease	0.0118608994871
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q7MDH6	 Sugar phosphate permease	0.0093664356906
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0G9L6		0.020190744366
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J0G9L6		0.00102089332849
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQZ3	 Transferrin receptor	0.0109092470785
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQZ3	 Transferrin receptor	0.0102897141904
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DIA5	 Methylenetetrahydrofolate reductase	0.0135618807929
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DIA5	 Methylenetetrahydrofolate reductase	0.00764497187024
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q59939	 Citrate synthase	0.0103868362497
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q59939	 Citrate synthase	0.00749754298993
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q59939	 Citrate synthase	0.00329334014121
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J7N1F5	 Teichoic acid biosynthesis protein B family protein	0.0211928579852
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U6BEE8	 Cytochrome D ubiquinol oxidase subunit I	0.0109341955606
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U6BEE8	 Cytochrome D ubiquinol oxidase subunit I	0.0102586080857
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L9P9	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0125449555738
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L9P9	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00864568976359
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C3G5A7	 N acyl L amino acid amidohydrolase	0.0114752605909
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C3G5A7	 N acyl L amino acid amidohydrolase	0.0097150851236
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B1W0Z3	 Phosphoglycerate kinase	0.009074861334
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B1W0Z3	 Phosphoglycerate kinase	0.00682929193516
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B1W0Z3	 Phosphoglycerate kinase	0.00438625294626
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1W0Z3	 Phosphoglycerate kinase	0.000741440415907
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B1W0Z3	 Phosphoglycerate kinase	0.000152055071615
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C2PG19	 Phosphinothricin N acetyltransferase	0.0173242027198
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C2PG19	 Phosphinothricin N acetyltransferase	0.00385163188964
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7N3H3	 Anion transporter	0.0114806490946
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C7N3H3	 Anion transporter	0.00968767192066
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HFZ9	 Glucose specific phosphotransferase enzyme IIA component	0.0211298156008
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUV9	 TraU	0.0206020730303
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FFJ3	 Sodium proline symporter	0.0110326555684
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FFJ3	 Sodium proline symporter	0.0100724387536
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C1KVA9	 GTPase Era	0.0100147084214
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C1KVA9	 GTPase Era	0.0071259184946
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C1KVA9	 GTPase Era	0.00396417605542
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P40398		0.00971594797023
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P40398		0.0088512901094
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P40398		0.00252840996438
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YBG5	 Opine dehydrogenase	0.0114696672937
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1YBG5	 Opine dehydrogenase	0.00962433235797
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SIQ2	 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.0210709024236
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P804		0.0120341329717
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P804		0.00894337945541
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A6Q773	 50S ribosomal protein L19	0.0198200783179
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6Q773	 50S ribosomal protein L19	0.00124395718821
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FG85	 Holliday junction ATP dependent DNA helicase RuvA	0.0130902521585
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FG85	 Holliday junction ATP dependent DNA helicase RuvA	0.0079726677791
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P44594	 Queuine tRNA ribosyltransferase	0.0102934956084
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P44594	 Queuine tRNA ribosyltransferase	0.00981851481933
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P44594	 Queuine tRNA ribosyltransferase	0.000814601083738
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P44594	 Queuine tRNA ribosyltransferase	0.000123731087687
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8MD39	 Histidine triad  protein	0.0210320154286
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FUU3	 Imidazole glycerol phosphate synthase subunit hisF	0.021029887861
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DKR8	 Mevalonate kinase	0.0114611714481
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DKR8	 Mevalonate kinase	0.00954992633162
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WY01		0.0117201217407
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WY01		0.00881700887023
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5WIL7	 Phosphonates import ATP binding protein PhnC	0.0109816136576
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5WIL7	 Phosphonates import ATP binding protein PhnC	0.00997533803043
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B7HCU0	 Chaperone protein DnaK	0.011179747896
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B7HCU0	 Chaperone protein DnaK	0.00622342776248
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B7HCU0	 Chaperone protein DnaK	0.00310794647235
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B7HCU0	 Chaperone protein DnaK	0.000401832147026
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B7HCU0	 Chaperone protein DnaK	5.53837452316e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HM44	 Zinc type alcohol dehydrogenase like protein SERP1785	0.0129109351683
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HM44	 Zinc type alcohol dehydrogenase like protein SERP1785	0.00801562046389
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G5Y3		0.0141968568376
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6G5Y3		0.00662980714546
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D2J8Q4		0.0208387203383
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P36967	 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial	0.0108840663069
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P36967	 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial	0.00952897222867
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P36967	 Succinyl CoA ligase [ADP GDP forming] subunit alpha, mitochondrial	0.000460255144985
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B7GLM2	 ABC type oligopeptide transport system, permease component	0.0110617121803
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B7GLM2	 ABC type oligopeptide transport system, permease component	0.0098581653672
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q99UN8	 Malonyl CoA acyl carrier protein transacylase	0.0115101611489
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99UN8	 Malonyl CoA acyl carrier protein transacylase	0.00940500380906
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PS55		0.0209005440845
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DMC7	 Probable DNA directed RNA polymerase subunit delta	0.0135113886743
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DMC7	 Probable DNA directed RNA polymerase subunit delta	0.00737311095347
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49ZB9		0.0107871089483
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49ZB9		0.0100695490903
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2SDW0	 Nucleoside diphosphate kinase	0.0207528478174
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P58381	 Enoyl [acyl carrier protein] reductase [NADH] 2	0.0207857178434
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y9P7	 UDP N acetylmuramoylalanyl D glutamate  2, 6 diaminopimelate ligase	0.0107138827097
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1Y9P7	 UDP N acetylmuramoylalanyl D glutamate  2, 6 diaminopimelate ligase	0.0100842348695
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P39131	 UDP N acetylglucosamine 2 epimerase	0.0140504793287
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P39131	 UDP N acetylglucosamine 2 epimerase	0.00673207400058
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQ44		0.0169157639166
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQ44		0.00350316044475
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O32165	 FeS cluster assembly protein SufD	0.0104542025109
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O32165	 FeS cluster assembly protein SufD	0.0103158195882
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L8L0	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0129771007999
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8L0	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00778958284604
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P21345	 Proton glutamate symport protein	0.00897374380147
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P21345	 Proton glutamate symport protein	0.0070068450112
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21345	 Proton glutamate symport protein	0.00310123541665
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P21345	 Proton glutamate symport protein	0.000915831932635
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P21345	 Proton glutamate symport protein	0.000766271262478
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YSP8	 Undecaprenyl diphosphatase	0.0116768478711
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YSP8	 Undecaprenyl diphosphatase	0.00908548132461
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DIX2	 Probable cytosol aminopeptidase	0.0121687049975
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DIX2	 Probable cytosol aminopeptidase	0.00857587081798
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5IQI7	 Iron dependent repressor	0.0124683710847
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IQI7	 Iron dependent repressor	0.0082745707759
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPW3	 Transcription factor FapR	0.0115744391923
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HPW3	 Transcription factor FapR	0.0091646078453
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X0W1	 Phosphoribosylformylglycinamidine synthase 2	0.0109650357371
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X0W1	 Phosphoribosylformylglycinamidine synthase 2	0.00970761670243
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P44681	 Ribosome binding ATPase YchF	0.0110193449177
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P44681	 Ribosome binding ATPase YchF	0.00961731347054
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P44681	 Ribosome binding ATPase YchF	9.50702142679e-05
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49X88	 DNA mismatch repair protein MutS	0.0113673663374
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49X88	 DNA mismatch repair protein MutS	0.00934932496864
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5WDJ2	 Putative sporulation transcription regulator WhiA	0.0119485572429
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5WDJ2	 Putative sporulation transcription regulator WhiA	0.00875307659866
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNS2	 Protoporphyrinogen oxidase	0.0121414755915
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CNS2	 Protoporphyrinogen oxidase	0.00851389542095
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q1AU26	 Elongation factor G	0.011647802184
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q1AU26	 Elongation factor G	0.00859757394791
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1AU26	 Elongation factor G	0.000161905188021
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q1AU26	 Elongation factor G	0.000123301322162
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q1AU26	 Elongation factor G	0.000121854849953
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QD55	 Hydrolase 	0.01242126311
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QD55	 Hydrolase 	0.00820618842938
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GDB6	 Lactonase drp35	0.0104510267503
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GDB6	 Lactonase drp35	0.0101136355397
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKK3	 Succinylglutamatedesuccinylase aspartoacylase	0.0205995341766
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9ZGN9	 ABC transporter family protein	0.0105599041576
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9ZGN9	 ABC transporter family protein	0.0100373059411
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQY7	 Glycerate kinase family protein	0.0103279668661
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQY7	 Glycerate kinase family protein	0.0102663570938
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNQ0		0.0149726416123
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HNQ0		0.00561639589686
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7WZ80	 Putative antiporter subunit mnhE2	0.0162506343755
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7WZ80	 Putative antiporter subunit mnhE2	0.00430473162048
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J4T5	 Putative metal dependent protease of the PAD1 JAB1 superfamily	0.020546542027
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUU1		0.0199951229618
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKI9	 Amino acid ABC transporter, amino acid binding protein	0.0193040026295
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5HKI9	 Amino acid ABC transporter, amino acid binding protein	0.00123148824383
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GFX2	 Catabolite control protein A	0.0115331057565
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GFX2	 Catabolite control protein A	0.00898218857611
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YPK7	 Urea transporter	0.0124881687936
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R9YPK7	 Urea transporter	0.00801374199427
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F8FR25		0.0115967703391
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F8FR25		0.00888378715638
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HLG3	 Sensor protein LytS	0.0114473284392
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLG3	 Sensor protein LytS	0.00900481103213
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WU10	 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.020450301944
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P4A3	 Acetyltransferase, GNAT family	0.0115768420858
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P4A3	 Acetyltransferase, GNAT family	0.00886437838
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4A0F8	 ABC type transport system involved in lipoprotein release permease component	0.0119261602515
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4A0F8	 ABC type transport system involved in lipoprotein release permease component	0.00851206243751
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A1U241	 Uracil phosphoribosyltransferase	0.0120509366557
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A1U241	 Uracil phosphoribosyltransferase	0.00832957028443
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQH1	 Adapter protein MecA	0.0126789037406
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQH1	 Adapter protein MecA	0.00773162196269
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P37941	 2 oxoisovalerate dehydrogenase subunit beta	0.0108641050444
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P37941	 2 oxoisovalerate dehydrogenase subunit beta	0.00953552621071
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P39852	 Putative tyrosine protein phosphatase CapC	0.0203797973247
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQK8	 Putative peptidyl prolyl cis trans isomerase	0.0109555835627
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQK8	 Putative peptidyl prolyl cis trans isomerase	0.00942355638174
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0C0R4	 Lipase	0.0104549724843
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0C0R4	 Lipase	0.00992950360644
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CTX9		0.0107695805893
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTX9		0.00936458883627
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X3Z2	 Monofunctional glycosyltransferase	0.0137829526892
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X3Z2	 Monofunctional glycosyltransferase	0.00659546657971
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKH1		0.0203634926834
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B1JVW3	 tRNA specific 2 thiouridylase MnmA	0.0110854045116
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B1JVW3	 tRNA specific 2 thiouridylase MnmA	0.00927139894981
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q71YH9	 Dihydroorotase	0.0108895255505
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q71YH9	 Dihydroorotase	0.00945824904905
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQM7		0.0203478018107
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_S4XAN4	 Cobalamin biosynthesis like protein	0.0105032259048
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S4XAN4	 Cobalamin biosynthesis like protein	0.00983474539002
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L7L1	 Diacylglycerol kinase	0.0126663990225
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L7L1	 Diacylglycerol kinase	0.00768041439558
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P45360	 Putative UDP N acetylglucosamine 2 epimerase	0.0146207184631
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P45360	 Putative UDP N acetylglucosamine 2 epimerase	0.00547755057689
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P45360	 Putative UDP N acetylglucosamine 2 epimerase	0.000247999997361
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XM99	 IS1272 transposase, putative	0.0202070847864
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1XM99	 IS1272 transposase, putative	0.000120858913973
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O34849	 Glutamate synthase large subunit like protein YerD	0.0104197657328
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O34849	 Glutamate synthase large subunit like protein YerD	0.00987926894315
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QDJ7	 Predicted ring cleavage extradiol dioxygenase	0.0108727808238
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QDJ7	 Predicted ring cleavage extradiol dioxygenase	0.00941832942612
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GEA0	 Lysostaphin resistance protein A	0.0102300751632
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GEA0	 Lysostaphin resistance protein A	0.0100552385182
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HNU6	 UPF0271 protein SERP1168	0.0109343205365
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNU6	 UPF0271 protein SERP1168	0.00933283446148
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QCQ2	 Ferric uptake regulation protein FUR	0.0133917601411
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QCQ2	 Ferric uptake regulation protein FUR	0.00687463419288
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLG5	 2 dehydropantoate 2 reductase	0.0110107363917
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HLG5	 2 dehydropantoate 2 reductase	0.00924328955475
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QDN7	 Ribosomal RNA small subunit methyltransferase D	0.0110489737406
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QDN7	 Ribosomal RNA small subunit methyltransferase D	0.00920457853846
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HM27	 Energy coupling factor transporter ATP binding protein EcfA1	0.0102665141184
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HM27	 Energy coupling factor transporter ATP binding protein EcfA1	0.00991119625193
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YZ25	 Putative hemin transport system permease protein HrtB	0.0129720626774
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YZ25	 Putative hemin transport system permease protein HrtB	0.00726503017387
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KVR7	 Transcriptional regulator, MerR family	0.0202343255716
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q6LLZ7		0.0201929135102
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K2M7		0.0188858504482
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D0K2M7		0.00131844122667
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJW0		0.0201929135102
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SIG3	 O methyltransferase family protein	0.0119547801082
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SIG3	 O methyltransferase family protein	0.00823617777183
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O07631	 GTP binding protein TypA BipA homolog	0.0120944263082
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O07631	 GTP binding protein TypA BipA homolog	0.00809536956128
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLI3	 Amino acid ABC transporter, permease protein	0.011346735222
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HLI3	 Amino acid ABC transporter, permease protein	0.00883848357905
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P52146	 Arsenical pump membrane protein	0.0099055077299
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P52146	 Arsenical pump membrane protein	0.00542116240834
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52146	 Arsenical pump membrane protein	0.00476346941944
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P52146	 Arsenical pump membrane protein	8.47018184157e-05
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRP5	 tRNA lysidine synthase	0.0118885614648
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRP5	 tRNA lysidine synthase	0.0082834648765
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6G3Y9	 Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	0.00944763109187
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G3Y9	 Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	0.00722571149048
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q6G3Y9	 Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	0.00345445062946
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C1KVE4	 Uridine kinase	0.00827993327478
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C1KVE4	 Uridine kinase	0.00612655439292
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C1KVE4	 Uridine kinase	0.00534174487973
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C1KVE4	 Uridine kinase	0.000342252771362
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P418	 ABC transporter, substrate binding protein	0.0114921155201
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P418	 ABC transporter, substrate binding protein	0.00859971238505
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5MYS8	6 aminopenicillanic acid acyl transferase	0.0114089445665
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5MYS8	6 aminopenicillanic acid acyl transferase	0.00867044740923
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G930	 Probable glycine dehydrogenase  subunit 1	0.0102444477788
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6G930	 Probable glycine dehydrogenase  subunit 1	0.00982424517572
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9K8V3	 Arginine biosynthesis bifunctional protein ArgJ	0.0132872451686
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9K8V3	 Arginine biosynthesis bifunctional protein ArgJ	0.00676139121728
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X393	 Glutamyl tRNA reductase	0.0108691510163
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X393	 Glutamyl tRNA reductase	0.00914253483277
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8NYY1		0.0139469657524
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8NYY1		0.00603760845115
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QIE1	 Hydrolase 	0.011952378185
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QIE1	 Hydrolase 	0.00807399823673
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DNM2	 Putative pyruvate, phosphate dikinase regulatory protein	0.0123327212567
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DNM2	 Putative pyruvate, phosphate dikinase regulatory protein	0.00767647593799
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C665	 RsbU	0.0106104469657
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C665	 RsbU	0.0093933447872
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q74L45	 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 2	0.0116891328427
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q74L45	 2,3 bisphosphoglycerate dependent phosphoglycerate mutase 2	0.00830344885871
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P37105	 Signal recognition particle protein	0.012336556704
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P37105	 Signal recognition particle protein	0.00756273206102
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P37105	 Signal recognition particle protein	8.87210611125e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV09	 O acetylhomoserine sulfhydrylase	0.0199867816737
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q45068	 Amino acid carrier protein AlsT	0.0105219115099
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q45068	 Amino acid carrier protein AlsT	0.0094579662891
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S0L1H4	 Diphosphomevalonate decarboxylase	0.0112360342292
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_S0L1H4	 Diphosphomevalonate decarboxylase	0.00874345500672
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ALC6	 CTP pyrophosphohydrolase	0.0199722360468
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_K4KQ59	 GAF domain containing protein	0.0199717702619
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M4IMI2	 Transposase like protein	0.0199426186065
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O34528		0.0111277383718
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O34528		0.00871538858343
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_O34528		9.31407449742e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GLI8	 Inner membrane protein	0.0196782230749
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WUP0	 30S ribosomal protein S4	0.0199071769679
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQ05	 Laccase domain protein SERP0752	0.0107570625833
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQ05	 Laccase domain protein SERP0752	0.00914331094652
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FGC8	 Shikimate dehydrogenase	0.0113407081659
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FGC8	 Shikimate dehydrogenase	0.00849888105004
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9EA45		0.0101395677659
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9EA45		0.00973175129681
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2G1E0		0.0102967456991
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2G1E0		0.00953704747286
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZQ52	 Ammonium transporter family protein	0.0113764846466
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G7ZQ52	 Ammonium transporter family protein	0.00848809342542
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O32034		0.0116270538306
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O32034		0.00822746033161
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N074	 Cof like hydrolase	0.0105608783641
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N074	 Cof like hydrolase	0.00927839867901
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUZ0		0.0187383153095
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L9G5	 Alkaline phosphatase III	0.0113663982007
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L9G5	 Alkaline phosphatase III	0.00843360993766
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D5HC82	 DNA repair protein radA	0.0107307905457
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D5HC82	 DNA repair protein radA	0.00906421482268
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P23530	 Phosphoenolpyruvate protein phosphotransferase	0.0107693295537
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P23530	 Phosphoenolpyruvate protein phosphotransferase	0.0090053375514
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N3B0		0.0103560649758
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N3B0		0.00941360597989
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P24136	 Oligopeptide transport ATP binding protein OppD	0.0130128433854
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P24136	 Oligopeptide transport ATP binding protein OppD	0.00626539639642
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P24136	 Oligopeptide transport ATP binding protein OppD	0.000473382030498
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K6PSM8	 ATPase component of an ABC superfamily transporter	0.00725083568542
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_K6PSM8	 ATPase component of an ABC superfamily transporter	0.00702548106429
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K6PSM8	 ATPase component of an ABC superfamily transporter	0.00546883706886
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C0ZDE1	 ABC transporter substrate binding protein	0.0109644891409
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C0ZDE1	 ABC transporter substrate binding protein	0.00876340420349
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GGK7	 Sensor protein SrrB	0.010322676475
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GGK7	 Sensor protein SrrB	0.00934086664976
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CPM6	 Divalent metal cation transporter MntH	0.0111153428837
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPM6	 Divalent metal cation transporter MntH	0.00859659542378
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C5H5		0.0197112614961
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C1KWN7	 GTPase Der	0.0116042936631
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C1KWN7	 GTPase Der	0.00810310360391
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WPW4	 Cation efflux family protein	0.0105212205718
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WPW4	 Cation efflux family protein	0.00916318718792
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q71YR0	 DNA ligase	0.0101542997844
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q71YR0	 DNA ligase	0.00928578964744
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q71YR0	 DNA ligase	0.000243859699803
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y643	 Homoserine O acetyltransferase	0.0104671264277
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1Y643	 Homoserine O acetyltransferase	0.00921638679752
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9CGD4	 Spermidine putrescine import ATP binding protein PotA	0.0092550169933
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9CGD4	 Spermidine putrescine import ATP binding protein PotA	0.00678382155782
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CGD4	 Spermidine putrescine import ATP binding protein PotA	0.0035548425437
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUE3		0.0143802254416
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CUE3		0.00528437171067
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49VK4	 Sensor histidine kinase GraS	0.0120204759117
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49VK4	 Sensor histidine kinase GraS	0.00764899381512
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3SSY2	 50S ribosomal protein L10	0.0196635490856
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P39814	 DNA topoisomerase 1	0.0124874933289
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P39814	 DNA topoisomerase 1	0.0071477799419
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CN80	 General stress protein 26	0.0106641371048
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CN80	 General stress protein 26	0.00899387254527
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QCK9	 Late competence protein ComGA	0.0111294167892
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QCK9	 Late competence protein ComGA	0.00852502575583
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IYW4		0.0165309236214
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W5SE24	 Glycerol 3 phosphate transporter	0.0100107170422
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_W5SE24	 Glycerol 3 phosphate transporter	0.00963997244545
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B7IJP9	 Probable manganese dependent inorganic pyrophosphatase	0.0106869099902
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B7IJP9	 Probable manganese dependent inorganic pyrophosphatase	0.00896160121457
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5UJL0		0.0102003096056
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UJL0		0.0094413318688
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7WYY2	 Ribulokinase	0.010127659957
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7WYY2	 Ribulokinase	0.00950807037015
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IVF9	 Mg2+ transporter protein, CorA family protein	0.0107588366611
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5IVF9	 Mg2+ transporter protein, CorA family protein	0.00886802878822
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SEI0	 Mannose 6 phosphate isomerase, class I	0.0102036328806
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D6SEI0	 Mannose 6 phosphate isomerase, class I	0.00941339170083
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P71082	 Putative multidrug export ATP binding permease protein YgaD	0.0120662444591
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P71082	 Putative multidrug export ATP binding permease protein YgaD	0.00753662933986
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V5YQU8	 YycH protein	0.00985358428694
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_V5YQU8	 YycH protein	0.00973322507615
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KX33	 FlaF protein	0.0184385752871
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L5J1	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0195866247958
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FIM4	 Epimerase family protein SAUSA300_0753	0.0117183662214
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FIM4	 Epimerase family protein SAUSA300_0753	0.00785981503461
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRI8	 Hydrolase, haloacid dehalogenase like family	0.0126229430472
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRI8	 Hydrolase, haloacid dehalogenase like family	0.00691916886542
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GI14	 Amidophosphoribosyltransferase	0.0112468108915
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GI14	 Amidophosphoribosyltransferase	0.00768442880186
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q6GI14	 Amidophosphoribosyltransferase	0.000557505353786
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPV9	 Poly D alanine transfer protein	0.0105839993211
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CPV9	 Poly D alanine transfer protein	0.00894891302921
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P0A324	 Catalase	0.0108548082293
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0A324	 Catalase	0.00817372270163
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0A324	 Catalase	0.00039327914033
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P0A324	 Catalase	7.13026607034e-05
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P80866	 Vegetative protein 296	0.0114619534783
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P80866	 Vegetative protein 296	0.00806216429772
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8Y5E4	 Diadenylate cyclase	0.0107682713626
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8Y5E4	 Diadenylate cyclase	0.00873475470558
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A6U0P1	 Bifunctional purine biosynthesis protein PurH	0.0118764663532
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6U0P1	 Bifunctional purine biosynthesis protein PurH	0.00761805533578
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P45482	 Cell division protein FtsZ	0.0103579029474
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P45482	 Cell division protein FtsZ	0.00913921868201
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUA2	 Mobilization protein	0.0130657075496
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C0Z7W5	 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.0105194152859
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C0Z7W5	 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.00895297750475
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V566	 Type I restriction modification system, M subunit	0.0194862080662
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P8I6	 Oligopeptide ABC transporter, periplasmic oligopeptide binding protein	0.0107681479788
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P8I6	 Oligopeptide ABC transporter, periplasmic oligopeptide binding protein	0.00868865161832
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q731B9	 Arginine repressor	0.0115710414879
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q731B9	 Arginine repressor	0.0077732033732
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D7PDW2	 RmlC	0.0194501181723
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E5RBE6	 Protein smf. domain protein	0.0113077023874
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5RBE6	 Protein smf. domain protein	0.00813000872476
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DPJ4	 Signal recognition particle receptor FtsY	0.00971783806694
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DPJ4	 Signal recognition particle receptor FtsY	0.0097094507315
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N2L9	 Sua5 YciO YrdC YwlC family protein	0.0131419590004
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N2L9	 Sua5 YciO YrdC YwlC family protein	0.00628310246173
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SK78	 ABC transporter ATP binding protein	0.0118542399434
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SK78	 ABC transporter ATP binding protein	0.00757040231377
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X1XSD9		0.0116677129628
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_X1XSD9		0.00775551691847
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y562	 Biotin synthesis protein bioC	0.0194177324426
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P68825	 Peptide deformylase	0.0132585594169
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P68825	 Peptide deformylase	0.0060950689787
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C564	 Adenine specific methyltransferase	0.0106686588328
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C564	 Adenine specific methyltransferase	0.00873334904571
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KRQ9	 Response regulator receiver protein	0.0193978703005
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKI8	 DSBA oxidoreductase	0.0193895156919
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNW5	 Protein GrpE	0.0107557114503
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HNW5	 Protein GrpE	0.00863082440733
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QF63		0.0103742394526
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QF63		0.00901048735348
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49YI2	 Putative dipeptidase SSP1012	0.00985399630916
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49YI2	 Putative dipeptidase SSP1012	0.00948431627006
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C4Z3J5	 Aspartyl glutamyl tRNA amidotransferase subunit B	0.0118221231864
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C4Z3J5	 Aspartyl glutamyl tRNA amidotransferase subunit B	0.00754905262505
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q7A7M5	 UPF0324 membrane protein SA0329	0.00980205219779
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q7A7M5	 UPF0324 membrane protein SA0329	0.00956037483763
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49YQ5		0.0101798382808
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49YQ5		0.0091581239051
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVJ7	 Acyltransferase 3 family	0.0193296504546
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G7L8	 Hydroxyethylthiazole kinase	0.0136307343275
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6G7L8	 Hydroxyethylthiazole kinase	0.00568324131874
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPR6	 Ribonuclease J 2	0.0102513653208
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HPR6	 Ribonuclease J 2	0.00905522727426
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV11	 Isopropylmalate homocitrate synthase	0.0193051673864
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKT7		0.0191550771346
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HKT7		0.00011934346046
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DM46	 tRNA pseudouridine synthase A	0.0101792104966
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DM46	 tRNA pseudouridine synthase A	0.00909021694385
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HKG0	 Conserved domain protein	0.0101895990348
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKG0	 Conserved domain protein	0.00907808907327
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q1GB50	 Ribonuclease Y	0.00714239566024
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q1GB50	 Ribonuclease Y	0.00658871114849
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1GB50	 Ribonuclease Y	0.00513737223167
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q1GB50	 Ribonuclease Y	0.000255050790602
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1GB50	 Ribonuclease Y	0.000136084550002
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7WWP7		0.0114604581113
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7WWP7		0.00770124484451
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HP19	 Proline dipeptidase	0.0109573113781
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HP19	 Proline dipeptidase	0.00830123142898
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1XR51	 SAM dependent methyltransferase, putative	0.0102772013516
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XR51	 SAM dependent methyltransferase, putative	0.00897615032918
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KN07		0.0192369798332
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3ERJ1	 Energy coupling factor transporter transmembrane protein EcfT	0.0111632642652
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3ERJ1	 Energy coupling factor transporter transmembrane protein EcfT	0.00806784343954
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B8JEW4	 6,7 dimethyl 8 ribityllumazine synthase	0.0131642174403
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8JEW4	 6,7 dimethyl 8 ribityllumazine synthase	0.00306120042764
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B8JEW4	 6,7 dimethyl 8 ribityllumazine synthase	0.00300077294613
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HEG2	 Accessory gene regulator A	0.0116221165352
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HEG2	 Accessory gene regulator A	0.0076036823942
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SUW9		0.0192159643965
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_L0LNE1	 SecY stabilizing membrane protein	0.0192094923647
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QFI9	 Phosphomevalonate kinase	0.0106221715352
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QFI9	 Phosphomevalonate kinase	0.00858460687594
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L8W8	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0107548095063
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8W8	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00844846664162
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C5P0	 CobB CobQ like glutamine amidotransferase domain protein	0.0111667854265
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C5P0	 CobB CobQ like glutamine amidotransferase domain protein	0.00803598200087
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P54932	 Protein RdxB	0.01920270903
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C253	 Arginine permease	0.010851201487
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C253	 Arginine permease	0.00834971136622
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QI08	 Autolysin	0.0112985555332
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QI08	 Autolysin	0.00789577279091
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CSG3	 Geranyltranstransferase	0.0113827245289
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSG3	 Geranyltranstransferase	0.00779935694225
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9E8Q8	 50S ribosomal protein L10	0.012359418483
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B9E8Q8	 50S ribosomal protein L10	0.00682208913441
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HL87	 Ribokinase	0.0100754955762
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HL87	 Ribokinase	0.00910370498981
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FUW4	 Accessory Sec system protein Asp2	0.0105639509646
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FUW4	 Accessory Sec system protein Asp2	0.00861505286653
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KL47	 Protein tyrosine phosphatase	0.0191653504249
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P34956	 Quinol oxidase subunit 1	0.0101001600499
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P34956	 Quinol oxidase subunit 1	0.0090361272606
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CPK5	 Cell division protein FtsA	0.0100421210147
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPK5	 Cell division protein FtsA	0.0091168975304
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9EBJ3	 GTPase HflX	0.0102397573469
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9EBJ3	 GTPase HflX	0.00891698969905
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PS98	 Transcriptional regulator, GntR family	0.019155262558
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQL5	 Poly  alpha glucosyltransferase	0.0102212287882
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CQL5	 Poly  alpha glucosyltransferase	0.00893264486908
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A1BI09	 UvrABC system protein B	0.0111798012239
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A1BI09	 UvrABC system protein B	0.00497968671398
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A1BI09	 UvrABC system protein B	0.00281065445269
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A1BI09	 UvrABC system protein B	0.000179413554826
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9KGL2	 Ribosomal RNA small subunit methyltransferase I	0.0116065692101
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9KGL2	 Ribosomal RNA small subunit methyltransferase I	0.00750005209102
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SES7		0.0123003109787
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SES7		0.00683254234151
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q831X4	 Asparagine  tRNA ligase	0.00864637872887
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q831X4	 Asparagine  tRNA ligase	0.00555814445031
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q831X4	 Asparagine  tRNA ligase	0.00438059861054
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q831X4	 Asparagine  tRNA ligase	0.000536279004945
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRF6	protein N octanoyltransferase	0.00958483436321
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRF6	protein N octanoyltransferase	0.00952171010325
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0DH75	 Orotate phosphoribosyltransferase	0.0083571840741
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0DH75	 Orotate phosphoribosyltransferase	0.0056983346749
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0DH75	 Orotate phosphoribosyltransferase	0.0050311920933
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28VX1	 Sigma 54 modulation protein   SSU ribosomal protein S30P	0.0190992146574
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQR8	 Organic hydroperoxide resistance protein like 1	0.0111745940776
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQR8	 Organic hydroperoxide resistance protein like 1	0.00792220159697
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P9I7	 Conserved integral membrane protein, putative	0.00959882430733
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P9I7	 Conserved integral membrane protein, putative	0.00949602917849
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P40420	 Glucose uptake protein GlcU	0.0125292407972
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P40420	 Glucose uptake protein GlcU	0.00656538232736
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SCJ9	 Quinone oxidoreductase, YhdH YhfP family	0.0106212710221
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D6SCJ9	 Quinone oxidoreductase, YhdH YhfP family	0.00846583543635
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GG70	 GTP pyrophosphokinase	0.0100042708369
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GG70	 GTP pyrophosphokinase	0.00906728462938
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49VP4	 UTP  glucose 1 phosphate uridylyltransferase 2	0.00859803068509
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49VP4	 UTP  glucose 1 phosphate uridylyltransferase 2	0.00740811251694
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q49VP4	 UTP  glucose 1 phosphate uridylyltransferase 2	0.00273133054225
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V6Q8F3		0.0190781798005
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_X5E2B2	 Nucleoside triphosphatase YtkD	0.0098418831362
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5E2B2	 Nucleoside triphosphatase YtkD	0.00923295386555
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5JGR7	 Nucleoside diphosphate kinase	0.0167062688986
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q5JGR7	 Nucleoside diphosphate kinase	0.00233313047983
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQK2	 Glycerophosphoryl diester phosphodiesterase GlpQ, putative	0.0110925570292
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQK2	 Glycerophosphoryl diester phosphodiesterase GlpQ, putative	0.00794586162914
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QGA7	 Luciferase like monooxygenase	0.0190382504962
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L4T7	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0104894315844
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L4T7	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00854233477274
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRK2	 Acetyltransferase, GNAT family	0.0190317302313
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1Y8A8	 Acetyltransferase	0.0127773557068
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y8A8	 Acetyltransferase	0.00624638767191
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8EQK8	 Choline ABC transporter ATP binding protein	0.0102567828718
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8EQK8	 Choline ABC transporter ATP binding protein	0.00876371872315
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5MZE1	 Transporter, major facilitator family protein	0.00970552156329
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5MZE1	 Transporter, major facilitator family protein	0.00931125614023
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YSK0	 Sugar  transporter family protein	0.0100615909916
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R9YSK0	 Sugar  transporter family protein	0.00895096035945
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L8J6	 Ribose 5 phosphate isomerase A	0.010042028333
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8J6	 Ribose 5 phosphate isomerase A	0.00888706410042
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2G2P8	 ADP dependent  NAD(P)H hydrate dehydratase	0.0126663760196
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2G2P8	 ADP dependent  NAD(P)H hydrate dehydratase	0.00630358995181
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI000382D87E	 hypothetical protein	0.0179066096317
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HM49	 Transporter, putative	0.00958978040762
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HM49	 Transporter, putative	0.00940485655765
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q03Q56	 D ribose pyranase	0.0157721362516
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q03Q56	 D ribose pyranase	0.00317178427344
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GF03	 Alanine racemase 1	0.0118882032435
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GF03	 Alanine racemase 1	0.00708947562073
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D6SFZ4	 Tetratricopeptide repeat protein	0.0110290343565
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SFZ4	 Tetratricopeptide repeat protein	0.00795160505119
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HM63	 Drug resistance transporter, EmrB QacA family	0.0189719538037
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O32163	 Zinc dependent sulfurtransferase SufU	0.0107198924028
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O32163	 Zinc dependent sulfurtransferase SufU	0.00822982566281
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P08065	 Succinate dehydrogenase flavoprotein subunit	0.00980121793409
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P08065	 Succinate dehydrogenase flavoprotein subunit	0.0091420500097
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A4W0T4	 GMP reductase	0.0100471799668
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A4W0T4	 GMP reductase	0.00831068413166
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A4W0T4	 GMP reductase	0.000309596901624
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4W0T4	 GMP reductase	0.000268267198257
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7Z7M0	 Argininosuccinate synthase	0.0103171659599
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7Z7M0	 Argininosuccinate synthase	0.00861169341155
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q031Z8	 UPF0397 protein LACR_0367	0.0156661461668
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q031Z8	 UPF0397 protein LACR_0367	0.00326672299297
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQY3		0.010335559254
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQY3		0.00859654847066
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HDX9	 Adenylate kinase	0.0108325252863
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HDX9	 Adenylate kinase	0.00804117490211
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HKV0	 Indole 3 pyruvate decarboxylase	0.010649744878
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKV0	 Indole 3 pyruvate decarboxylase	0.00827474146317
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1IZI8	 Uridylate kinase	0.0103592902472
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1IZI8	 Uridylate kinase	0.00717409090544
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1IZI8	 Uridylate kinase	0.000999239964932
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IZI8	 Uridylate kinase	0.000359304510857
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SE47		0.0188966692071
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P21880	 Dihydrolipoyl dehydrogenase	0.0101892368041
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P21880	 Dihydrolipoyl dehydrogenase	0.00867887630993
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49XC4		0.00962549115645
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49XC4		0.00926203384525
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FE11	 Phosphoglucomutase	0.00986747059129
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FE11	 Phosphoglucomutase	0.00886832987606
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P54542		0.00993984042695
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P54542		0.008940625318
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UNI0		0.0102779371336
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5UNI0		0.00859724817667
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2RJ31	 Glutamate 1 semialdehyde 2,1 aminomutase	0.00948856783218
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2RJ31	 Glutamate 1 semialdehyde 2,1 aminomutase	0.00937728741333
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N0AM09		0.0188611181683
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P06574	 RNA polymerase sigma B factor	0.00969107389367
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P06574	 RNA polymerase sigma B factor	0.00917698487256
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJB4	 Putative transposase	0.0187663788213
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L332	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0103109264501
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L332	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0085204874463
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8SDK3	 Phi PVL orfs 18 19 like protein	0.0188302203482
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CNS0	 Uroporphyrinogen decarboxylase	0.0102746168038
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNS0	 Uroporphyrinogen decarboxylase	0.00851835267273
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZP32		0.0145995023326
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G7ZP32		0.00422153846347
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GEF9	 Molybdenum cofactor biosynthesis protein B	0.0117991054151
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GEF9	 Molybdenum cofactor biosynthesis protein B	0.00665694960369
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O34987	 Guanine hypoxanthine permease PbuG	0.0106179387268
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O34987	 Guanine hypoxanthine permease PbuG	0.00819015696133
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CQ61	 Mercuric reductase like protein	0.0095401704719
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQ61	 Mercuric reductase like protein	0.00926444731712
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P20368	 Alcohol dehydrogenase 1	0.0110318071164
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P20368	 Alcohol dehydrogenase 1	0.00705216330194
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P20368	 Alcohol dehydrogenase 1	0.000554146703021
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P20368	 Alcohol dehydrogenase 1	0.000100964567551
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F2HK99	cation transporter, LIVCS family	0.0124527808689
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F2HK99	cation transporter, LIVCS family	0.00633696067296
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLN7	 Membrane associated protein TcaA	0.00957123132821
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HLN7	 Membrane associated protein TcaA	0.00921709555971
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WZ77	 Sugar isomerase 	0.0130908087501
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WZ77	 Sugar isomerase 	0.00569219506127
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5EHY0	 Sodium hydrogen exchanger family protein	0.0103368872593
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_X5EHY0	 Sodium hydrogen exchanger family protein	0.00844095173291
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CNF4	 NAD dependent protein deacetylase	0.00983845514272
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNF4	 NAD dependent protein deacetylase	0.00893279151021
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HEM7	 DNA polymerase IV	0.0104478484102
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HEM7	 DNA polymerase IV	0.00832235493491
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L574	 N5 carboxyaminoimidazole ribonucleotide synthase	0.0108353267009
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L574	 N5 carboxyaminoimidazole ribonucleotide synthase	0.00792638077834
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L3R2	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0123995741811
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L3R2	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00634884882554
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W5WU40	 Anion transporter	0.0100107681728
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_W5WU40	 Anion transporter	0.00873652465263
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RK78	 Arginine ornithine APC family amino acid polyamine organocation transporter, antiporter	0.00985805645528
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D9RK78	 Arginine ornithine APC family amino acid polyamine organocation transporter, antiporter	0.00866011415439
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D9RK78	 Arginine ornithine APC family amino acid polyamine organocation transporter, antiporter	0.000227083819951
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YV12	 PTS system EIIBC component SAB0132	0.0116362459755
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YV12	 PTS system EIIBC component SAB0132	0.0070961254118
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q88W26	 ATP dependent protease ATPase subunit HslU	0.00982405097015
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q88W26	 ATP dependent protease ATPase subunit HslU	0.00891772760682
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C7ZV35	 II DNA RNA helicase ComFC	0.00965664452895
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZV35	 II DNA RNA helicase ComFC	0.0090741200223
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O06662	 tRNA specific endonuclease VapC	0.0186614279834
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O31546	 Probable tRNA dihydrouridine synthase 2	0.0101800013437
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O31546	 Probable tRNA dihydrouridine synthase 2	0.00854215567824
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YVT4	 N acetylmuramoyl L alanine amidase sle1	0.00991149700103
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YVT4	 N acetylmuramoyl L alanine amidase sle1	0.00878418815007
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CPM1	 Protoheme IX farnesyltransferase	0.00985272462723
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPM1	 Protoheme IX farnesyltransferase	0.00883803863854
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D9RD76	cation symporter	0.00949551123423
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RD76	cation symporter	0.00918370517902
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C3AH20	 Dehydrogenase	0.0119074378818
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C3AH20	 Dehydrogenase	0.0067662936399
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B7IR21	 Membrane protein PfoR	0.0110845747498
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B7IR21	 Membrane protein PfoR	0.00703270299284
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B7IR21	 Membrane protein PfoR	0.000546139769913
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5LD58	 Asparaginase	0.0123051124126
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5LD58	 Asparaginase	0.00635329114386
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V6QFC6	 Recombinase	0.0186544287865
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O34580	 ATP dependent DNA helicase PcrA	0.00978551652946
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O34580	 ATP dependent DNA helicase PcrA	0.0088266748448
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQE8	 Probable glycolipid permease LtaA	0.0106318463823
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQE8	 Probable glycolipid permease LtaA	0.00800622958016
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GDP8	 Ferrous iron transport protein B	0.0104933526047
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GDP8	 Ferrous iron transport protein B	0.00814194146324
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HH80	 UPF0738 protein SACOL1009	0.0171880156664
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HH80	 UPF0738 protein SACOL1009	0.00133063467546
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IV60	 Molybdate ABC transporter, inner membrane subunit	0.0113283270427
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5IV60	 Molybdate ABC transporter, inner membrane subunit	0.00730569220146
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRU1		0.00951933558925
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CRU1		0.00911236106523
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6G9H0	 Conserved virulence factor B	0.00938977572949
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G9H0	 Conserved virulence factor B	0.0092415360082
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HHG7	 Oligopeptide transport system permease protein	0.0100299544575
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D8HHG7	 Oligopeptide transport system permease protein	0.00857984282063
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A4W453	 30S ribosomal protein S2	0.00789131284972
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4W453	 30S ribosomal protein S2	0.00596852149575
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A4W453	 30S ribosomal protein S2	0.00414053968264
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_A4W453	 30S ribosomal protein S2	0.000607380617631
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNX1		0.0167714047756
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5ISU0	 von Willebrand factor, type A	0.0099819132393
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5ISU0	 von Willebrand factor, type A	0.00859424318801
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8EHK0	 Purine nucleoside phosphorylase DeoD type 2	0.0102679587538
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8EHK0	 Purine nucleoside phosphorylase DeoD type 2	0.00803631289931
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8EHK0	 Purine nucleoside phosphorylase DeoD type 2	0.000242121265113
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1F7		0.0154487128602
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GEQ8	 Probable uridylyltransferase SAR2262	0.00993876323672
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GEQ8	 Probable uridylyltransferase SAR2262	0.00864210706505
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U4M2	 TRAP dicarboxylate family transporter DctQ subunit	0.0183017364207
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WSV6		0.011924596763
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WSV6		0.00662953796872
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YC46	 Integral membrane protein	0.0099767139188
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1YC46	 Integral membrane protein	0.00848470166743
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1QNK0		0.0182895830047
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DKZ2	 Protein containing tetrapyrrole methyltransferase domain and MazG like  domain	0.0109805889256
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DKZ2	 Protein containing tetrapyrrole methyltransferase domain and MazG like  domain	0.00755198300363
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FJB8	 Transcriptional regulator CtsR	0.00974539033726
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FJB8	 Transcriptional regulator CtsR	0.0087649584436
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SC26	 6 O methylguanine DNA methyltransferase, DNA binding domain protein	0.00960027417573
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D6SC26	 6 O methylguanine DNA methyltransferase, DNA binding domain protein	0.00890524598432
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QI51	 Transporter	0.0111164924978
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QI51	 Transporter	0.00738710720232
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7GMX2	 Na+ antiporter NhaC	0.01190265111
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7GMX2	 Na+ antiporter NhaC	0.00659906999358
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O31703	 Molybdopterin molybdenumtransferase	0.0102061238188
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O31703	 Molybdopterin molybdenumtransferase	0.00829032552396
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QHC2	 Membrane protein, putative	0.00930481397143
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QHC2	 Membrane protein, putative	0.00917451285046
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49WG6	 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	0.0101518675748
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49WG6	 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	0.00832698277401
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QES6		0.00959468962809
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QES6		0.00885416997559
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X5Y6	 Heme sensor protein HssS	0.00992044213651
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X5Y6	 Heme sensor protein HssS	0.00853701329106
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CN54	 Antiholin like protein LrgA	0.012742082757
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CN54	 Antiholin like protein LrgA	0.00569841105489
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5FB81	 APC family amino acid polyamine organocation transporter	0.00982853634812
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5FB81	 APC family amino acid polyamine organocation transporter	0.00860890734123
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P42799	 Glutamate 1 semialdehyde 2,1 aminomutase 1, chloroplastic	0.00947670318338
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P42799	 Glutamate 1 semialdehyde 2,1 aminomutase 1, chloroplastic	0.00894971817874
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRF8	 Putative heme dependent peroxidase SERP0235	0.0109755078271
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRF8	 Putative heme dependent peroxidase SERP0235	0.00741374357035
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6G9K4	 DNA topoisomerase 4 subunit A	0.0100089580817
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G9K4	 DNA topoisomerase 4 subunit A	0.00840535047344
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEV8	 Formate hydrogenlyase maturation protein HycH	0.0184187251303
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LU41	 Replication protein B	0.0184130228128
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HDU6	glycine glycyltransferase	0.0106656948835
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HDU6	glycine glycyltransferase	0.00774679436126
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W8TV76	 2 hydroxyacid dehydrogenase	0.010203563135
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_W8TV76	 2 hydroxyacid dehydrogenase	0.00820884587934
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HME0	 Probable DEAD box ATP dependent RNA helicase SERP1688	0.0099696552137
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HME0	 Probable DEAD box ATP dependent RNA helicase SERP1688	0.00842497054825
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q67JV0	 50S ribosomal protein L16	0.0158173347507
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q67JV0	 50S ribosomal protein L16	0.00258883506541
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A2RN27	 Methionyl tRNA formyltransferase	0.00653598979534
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A2RN27	 Methionyl tRNA formyltransferase	0.00638711072706
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A2RN27	 Methionyl tRNA formyltransferase	0.00548180501927
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5MZU0	 Carbamoyl phosphate synthase large chain	0.0106010147798
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5MZU0	 Carbamoyl phosphate synthase large chain	0.00779754953051
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9K621	 Sensory transduction protein BceR	0.00937172514434
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9K621	 Sensory transduction protein BceR	0.00902076916137
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P39755	 Probable NADH quinone oxidoreductase subunit 5	0.0102307307607
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P39755	 Probable NADH quinone oxidoreductase subunit 5	0.00811117331007
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L3J2	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0101028896478
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L3J2	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00826320585219
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FH56	 Putative oligopeptide transport system permease protein oppC2	0.0102937485262
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FH56	 Putative oligopeptide transport system permease protein oppC2	0.00806900604934
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8NXM4	 DegV domain containing protein MW0711	0.010453551761
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8NXM4	 DegV domain containing protein MW0711	0.00790616014477
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O32168	 Methionine import system permease protein MetP	0.0095894618412
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O32168	 Methionine import system permease protein MetP	0.00876209740565
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CQA9	 Integral membrane protein LmrP	0.0104805306817
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQA9	 Integral membrane protein LmrP	0.00786793666921
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5SUC1	 Protein co occurring with transport systems	0.00944706394572
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5SUC1	 Protein co occurring with transport systems	0.00890047801278
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKE0		0.0166143023932
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QEQ2		0.0116378970664
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QEQ2		0.00669324652189
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C723	 Sodium glutamate symport carrier protein	0.0107724287424
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C723	 Sodium glutamate symport carrier protein	0.00754528123089
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IVV5	 Sortase family protein	0.0107975160501
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5IVV5	 Sortase family protein	0.00751683743547
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CNB4	 Suppressor protein suhB	0.0110857073665
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNB4	 Suppressor protein suhB	0.00722354671415
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B5XSS1	 50S ribosomal protein L13	0.0154892835388
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5XSS1	 50S ribosomal protein L13	0.00281984363588
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G7ZSB9	 Nucleoside permease	0.00973306169078
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZSB9	 Nucleoside permease	0.00856944473291
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5MZG2	 Molybdopterin guanine dinucleotide biosynthesis protein B	0.0100726936726
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5MZG2	 Molybdopterin guanine dinucleotide biosynthesis protein B	0.00822928192609
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HKF6	 Extracellular cysteine protease	0.00925528040675
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKF6	 Extracellular cysteine protease	0.00903176825234
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FZ98	 UPF0747 protein SAOUHSC_01139 SAOUHSC_01140 SAOUHSC_01141	0.00924632605286
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FZ98	 UPF0747 protein SAOUHSC_01139 SAOUHSC_01140 SAOUHSC_01141	0.00903856245161
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HFZ7	 Dihydrofolate reductase	0.0106461090862
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HFZ7	 Dihydrofolate reductase	0.00746050882391
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FHD8	 Aerobic glycerol 3 phosphate dehydrogenase	0.00953288699878
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FHD8	 Aerobic glycerol 3 phosphate dehydrogenase	0.00869934470079
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SFA5	 Glycerophosphoryl diester phosphodiesterase	0.0095200761613
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SFA5	 Glycerophosphoryl diester phosphodiesterase	0.00872301325639
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QEN2		0.00941427134485
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QEN2		0.00882839564098
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L769	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0102337453275
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L769	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00800779632127
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HMD7	 Cell division protein, FtsW RodA SpoVE family	0.00986892971774
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HMD7	 Cell division protein, FtsW RodA SpoVE family	0.00835379962241
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZYL4	 Phage major tail protein	0.0182066286682
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P46907	 Nitrite extrusion protein	0.0097519396289
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P46907	 Nitrite extrusion protein	0.00845334485457
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2N4B3	 Ribosomal protein serine N acetyltransferase	0.0181801045522
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9IYN9	 Elongation factor P	0.0181729322236
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R4Q226	 APC family amino acid polyamine organocation transporter	0.0117242073016
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R4Q226	 APC family amino acid polyamine organocation transporter	0.00643522763067
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C3P5A0	 Demethylmenaquinone methyltransferase	0.00962263721276
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C3P5A0	 Demethylmenaquinone methyltransferase	0.00852092417319
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KX90	 ABC polysaccharide export transporter, inner membrane subunit	0.0181561047515
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P54462	 Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB	0.0102709418201
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P54462	 Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB	0.00779042094777
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B3H2W6	 RNA pyrophosphohydrolase	0.018148364489
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GCB8	 Probable acetyl CoA acyltransferase	0.0180420714444
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q6GCB8	 Probable acetyl CoA acyltransferase	8.89555661221e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QF58		0.0103154466509
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QF58		0.00782389279948
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q67SK0	 ATP dependent Clp protease proteolytic subunit 1	0.011631077068
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q67SK0	 ATP dependent Clp protease proteolytic subunit 1	0.00648250845925
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HL78	 Esterase, putative	0.00981754915373
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HL78	 Esterase, putative	0.00829795713454
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49Y17		0.00929448714349
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49Y17		0.00880585342974
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GJA0	 Glucosamine 6 phosphate deaminase	0.0111538949109
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GJA0	 Glucosamine 6 phosphate deaminase	0.00694340170407
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKI1	 Probable succinyl diaminopimelate desuccinylase	0.00985296524084
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HKI1	 Probable succinyl diaminopimelate desuccinylase	0.00824159357019
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49UZ0	 Orn Lys Arg decarboxylase family protein	0.00981325283361
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49UZ0	 Orn Lys Arg decarboxylase family protein	0.00827595926482
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D8HFV1		0.00970548587245
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HFV1		0.00836113269627
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WWG5	 Extracellular solute binding protein, family 5	0.0180649584481
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HFW6	 CCA adding enzyme	0.010505169557
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HFW6	 CCA adding enzyme	0.00753037428287
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CRU6		0.00967250038563
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRU6		0.00838605146594
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99W51	 tRNA specific adenosine deaminase	0.0180300418881
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SK39	 DNA polymerase III polC type	0.0105495016509
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SK39	 DNA polymerase III polC type	0.00750638633064
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D6SCB4	 ABC transporter, ATP binding protein	0.00942561201621
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SCB4	 ABC transporter, ATP binding protein	0.00862332128959
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T2KQZ5	 Lipoyltransferase and lipoate protein ligase	0.00919097704555
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T2KQZ5	 Lipoyltransferase and lipoate protein ligase	0.00885638231078
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QJ79	 Multimodular transpeptidase transglycosylase	0.00903143265781
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QJ79	 Multimodular transpeptidase transglycosylase	0.00900669431536
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6U1W4	 Segregation and condensation protein A	0.012560617861
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A6U1W4	 Segregation and condensation protein A	0.00547704876062
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW34		0.0171182951869
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L3G1	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0108510055906
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L3G1	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00716549966706
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C596		0.00926239126416
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C596		0.00875340567988
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CNV0	 Spore cortex protein like protein	0.0097848124188
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNV0	 Spore cortex protein like protein	0.00822792428407
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HIB4	 Serine aspartate repeat containing protein C	0.0112001265241
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HIB4	 Serine aspartate repeat containing protein C	0.00681091850777
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WVM4		0.0179518026905
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SCB6	 Transporter, major facilitator family protein	0.0104374497354
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D6SCB6	 Transporter, major facilitator family protein	0.00756377569836
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N2S8		0.0179206161423
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLU4	 Putative 2 hydroxyacid dehydrogenase SERP1888	0.00954053461913
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HLU4	 Putative 2 hydroxyacid dehydrogenase SERP1888	0.00843639159235
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Y5VS88		0.00912020125722
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y5VS88		0.00885313926267
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P751		0.0102378639956
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P751		0.00771902628262
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CPK2	 Cell divisio initiation protein	0.0109407085092
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPK2	 Cell divisio initiation protein	0.00700799636872
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QCA4	 Dihydrofolate synthase Folylpolyglutamate synthase	0.00921836081046
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QCA4	 Dihydrofolate synthase Folylpolyglutamate synthase	0.00871934769419
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PMB5	 Large conductance mechanosensitive channel	0.0179277277979
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V3B6	 Heme ABC exporter, ATP binding protein CcmA	0.0106609625619
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G8V3B6	 Heme ABC exporter, ATP binding protein CcmA	0.00726295634838
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTQ7	 Putative pyridoxine kinase	0.0094419774534
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CTQ7	 Putative pyridoxine kinase	0.00847524466121
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1YB06	 Ribosomal RNA small subunit methyltransferase E	0.0107830007863
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YB06	 Ribosomal RNA small subunit methyltransferase E	0.00711156532661
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YLA1	 Ktr system potassium uptake protein A	0.0101189908816
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R9YLA1	 Ktr system potassium uptake protein A	0.0077648850047
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B2U2	 ABC polyamine opine transporter, periplasmic substrate binding protein	0.017863879482
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q67LZ8	 Oligopeptide ABC transporter permease protein	0.0178507283224
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QGC0	 Serine threonine protein kinase PrkC	0.00922346159054
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A6QGC0	 Serine threonine protein kinase PrkC	0.00860622129996
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7DU42	 Transcriptional regulator	0.017831406541
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GCL3	 Iron sulfur cluster repair protein ScdA	0.0104589123801
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GCL3	 Iron sulfur cluster repair protein ScdA	0.00736924031375
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P462		0.00955858123682
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P462		0.00826716894438
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRJ0	 Deoxynucleoside kinase family protein	0.00994597846255
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRJ0	 Deoxynucleoside kinase family protein	0.00784320059532
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QDZ4	 Na+ H+ antiporter like protein	0.00909607415144
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QDZ4	 Na+ H+ antiporter like protein	0.0086926615259
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CPK8	 Penicillin binding protein 1	0.00938344789025
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPK8	 Penicillin binding protein 1	0.00840141108263
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q4JT56	 30S ribosomal protein S17	0.0177799238455
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A6QFE8		0.0168274279252
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QFE8		0.000949591267878
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V7ZGG5	 OmpW family outer membrane protein	0.0177763577743
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSE1	 ABC transporter ATP binding protein	0.00950223789046
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CSE1	 ABC transporter ATP binding protein	0.00826456992045
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FWE1	 Release factor glutamine methyltransferase	0.00903550886779
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FWE1	 Release factor glutamine methyltransferase	0.00873030884261
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J6L0	 Dimethlysulfonioproprionate lyase DddL	0.0169960544462
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WXU0		0.00998318008587
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WXU0		0.00777762857798
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1Y9B2	 Phosphotransferase enzyme family protein	0.00988426272595
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y9B2	 Phosphotransferase enzyme family protein	0.00784189601009
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A5VR36	 Lactoylglutathione lyase	0.0177102293036
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L635	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0110480884419
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L635	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00665918955998
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1Y8E9	 2 oxoacid ferredoxin oxidoreductase, alpha subunit	0.0101725920017
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y8E9	 2 oxoacid ferredoxin oxidoreductase, alpha subunit	0.00753381845789
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C6Z8	 Transcriptional regulator, RpiR family	0.00924238801681
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C6Z8	 Transcriptional regulator, RpiR family	0.00846326911544
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KN38	 UvrB protein	0.0143484910416
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DQ98	 Processive diacylglycerol beta glucosyltransferase	0.00939934706404
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DQ98	 Processive diacylglycerol beta glucosyltransferase	0.00829482793696
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P65742	 Phosphate acyltransferase	0.0127591407805
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P65742	 Phosphate acyltransferase	0.00451515956711
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P65742	 Phosphate acyltransferase	0.000395776831899
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HLQ8		0.0119499850909
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLQ8		0.00574013982374
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L5A2	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0176774712847
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FIE3	 D alanine  poly ligase subunit 1	0.00947751233638
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FIE3	 D alanine  poly ligase subunit 1	0.00819732177136
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IU85	 Parallel beta helix repeat	0.010012934705
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5IU85	 Parallel beta helix repeat	0.0076597209361
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L6H4	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0109593935413
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L6H4	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00671272834915
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8YZY5	 Anthranilate synthase	0.0102003674915
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A8YZY5	 Anthranilate synthase	0.00746949859229
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G2JZ42	 Carnitine transport binding protein OpuCC	0.0124537655844
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G2JZ42	 Carnitine transport binding protein OpuCC	0.00520942892437
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5LZL6	 CBS domain containing protein	0.0176574833296
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P37813	 ATP synthase subunit a	0.00992491610188
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P37813	 ATP synthase subunit a	0.00773238686093
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNI0		0.0161613649047
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P650	 Ribonuclease BN like family protein	0.00922208526379
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P650	 Ribonuclease BN like family protein	0.00842865926528
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P96589		0.0102620481956
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P96589		0.00738463398211
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49Z78		0.0100418437434
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49Z78		0.00760318371607
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SEC6	 Acid phosphatase	0.0128111041407
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SEC6	 Acid phosphatase	0.00483030498954
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L6F4	 Penicillin binding protein 2	0.00967278476998
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L6F4	 Penicillin binding protein 2	0.00796128145004
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WYV1	 Lipase esterase	0.00897557308202
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WYV1	 Lipase esterase	0.00858347036551
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QDU9	 Flavohemoprotein	0.00942318794021
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QDU9	 Flavohemoprotein	0.00813426215012
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49YA3	 HemA concentration negative effector	0.00983712909714
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49YA3	 HemA concentration negative effector	0.00770446986818
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQY2	 Glycosyl transferase, group 4 family protein	0.0094161786675
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQY2	 Glycosyl transferase, group 4 family protein	0.00811754320534
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C4G8	 Glycosyltransferase	0.0100625007246
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C4G8	 Glycosyltransferase	0.00747015895183
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A4IRH3	 Trigger factor	0.010079775588
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A4IRH3	 Trigger factor	0.00744755235016
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5KVS7	 Glucose 6 phosphate isomerase	0.00882301892397
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5KVS7	 Glucose 6 phosphate isomerase	0.00869351818356
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KX94	 ATPase, ParA type	0.0174868024139
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4ER30	 Phage minor structural, N terminal region domain protein	0.0175080128165
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R6JIT7		0.0093874119189
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R6JIT7		0.0081141182912
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WXF9		0.0106067299141
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WXF9		0.00688708765054
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X169	 Endonuclease MutS2	0.00924181526363
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X169	 Endonuclease MutS2	0.00823651632882
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HHQ6	 Putative acetyltransferase SACOL0827	0.00907216856293
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HHQ6	 Putative acetyltransferase SACOL0827	0.00833145617703
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C5M0	 Transcriptional regulator	0.0150645545235
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C5M0	 Transcriptional regulator	0.00240904549041
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P23847	 Periplasmic dipeptide transport protein	0.0120355164779
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P23847	 Periplasmic dipeptide transport protein	0.00245694819523
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23847	 Periplasmic dipeptide transport protein	0.00230250366944
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P23847	 Periplasmic dipeptide transport protein	0.000673097117011
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q7A528	 UPF0354 protein SA1564	0.00891634611258
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q7A528	 UPF0354 protein SA1564	0.00854952217914
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IUW4	 Transport system permease protein	0.00943351304236
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5IUW4	 Transport system permease protein	0.00803189223925
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49X60	 Riboflavin kinase FAD synthase	0.0103418952628
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49X60	 Riboflavin kinase FAD synthase	0.0071221019004
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QJ04	 DNA repair exonuclease family protein YhaO	0.00991163791241
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QJ04	 DNA repair exonuclease family protein YhaO	0.00754873897334
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9EAD9		0.00966343766488
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9EAD9		0.0077884550083
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SEY3	 Salicylate hydroxylase	0.0106488511828
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SEY3	 Salicylate hydroxylase	0.00680357637979
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QII8	 Phage portal protein	0.0174404933296
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P08064	 Succinate dehydrogenase cytochrome b558 subunit	0.00888871456734
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P08064	 Succinate dehydrogenase cytochrome b558 subunit	0.00851993924584
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKN3	 Acetyltransferase, GNAT family	0.0174067615409
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F9Y7Q5	 Carbonic anhydrase	0.0174019974836
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F8WKF3		0.00977978048736
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F8WKF3		0.00761591712285
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPE4		0.00922268146451
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HPE4		0.00816205460682
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0JI98	 DUF21 CBS domain protein	0.00939817090003
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0JI98	 DUF21 CBS domain protein	0.00798612719319
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SJL6	 Manganese ABC transporter, ATP binding protein SitB	0.00943023910432
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SJL6	 Manganese ABC transporter, ATP binding protein SitB	0.00794611951402
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C2I1		0.0134014578181
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C2I1		0.00397486803692
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P63482	 Alanine racemase 2	0.00963140093244
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P63482	 Alanine racemase 2	0.00764402130076
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P94544	 DNA polymerase 3 5 exonuclease PolX	0.0104245936689
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P94544	 DNA polymerase 3 5 exonuclease PolX	0.00689564196037
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IT13		0.0172995750296
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P39616	 Probable aldehyde dehydrogenase YwdH	0.0108802578446
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P39616	 Probable aldehyde dehydrogenase YwdH	0.00626068589801
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P39616	 Probable aldehyde dehydrogenase YwdH	0.000167625869728
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B0F4	 Trigger factor	0.0169974037737
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K9R4		0.0173079552332
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUU5		0.0167964612784
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IR45		0.017297987207
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B5BP16	 Truncated transposase of IS3 family	0.015454806895
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B5BP16	 Truncated transposase of IS3 family	0.00183551872573
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03727	 Transport processing ATP binding protein ComA	0.0172902257487
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U3NTD9	 IS1272 like transposase, degenerate	0.0172890481887
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_X2GN29	 Metal ABC transporter permease	0.0107157806055
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X2GN29	 Metal ABC transporter permease	0.00656292847635
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CP66	 Heptaprenyl diphosphate syntase component II	0.011026788496
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CP66	 Heptaprenyl diphosphate syntase component II	0.0062506981156
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X4U4	 ATP synthase gamma chain	0.0105568109353
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X4U4	 ATP synthase gamma chain	0.0067194808284
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQM9	 DltB protein	0.0104205583439
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQM9	 DltB protein	0.00685361281486
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q7WZY5	 Oxygen sensor histidine kinase NreB	0.00908969788031
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q7WZY5	 Oxygen sensor histidine kinase NreB	0.00817266985918
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9Z9U1	 Sorbitol dehydrogenase	0.0172436167505
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKG7	 ABC transporter, ATP binding protein	0.0103206089799
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HKG7	 ABC transporter, ATP binding protein	0.00692596139385
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WQT3	 Prephenate dehydratase	0.00987058230731
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WQT3	 Prephenate dehydratase	0.007359695804
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R7YU19		0.0172122732302
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D2N911	 UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.00916263992304
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2N911	 UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.00804398403512
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XT22	 Amino acid permease, putative	0.00913666958492
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1XT22	 Amino acid permease, putative	0.00806379924539
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8RET5	 D specific D 2 hydroxyacid dehydrogenase ddh like protein	0.0104989900918
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G8RET5	 D specific D 2 hydroxyacid dehydrogenase ddh like protein	0.00669739941324
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O32035		0.0104855808012
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O32035		0.0067058091095
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YZ93		0.0108271501368
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YZ93		0.00635604857874
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O06844	 Nitric oxide reductase subunit C	0.0156496521183
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O06844	 Nitric oxide reductase subunit C	0.00150928324567
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5E1J9		0.0168137562954
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_X5E1J9		0.000297830582749
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O34527	 HTH type transcriptional regulator CymR	0.0102277377589
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O34527	 HTH type transcriptional regulator CymR	0.00690346930491
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L3C5	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00907099099057
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L3C5	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00805700544018
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HP88	 Probable ATP dependent helicase DinG homolog	0.00894602095706
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HP88	 Probable ATP dependent helicase DinG homolog	0.00817991598814
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8PIV9	 Universal stress protein	0.0171126491296
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X623	 Oxygen regulatory protein NreC	0.00970339416781
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X623	 Oxygen regulatory protein NreC	0.0074073378726
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L540	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00926908025787
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L540	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00783587101552
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q46845	 Disulfide bond oxidoreductase YghU	0.00879861461338
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q46845	 Disulfide bond oxidoreductase YghU	0.00488699138202
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46845	 Disulfide bond oxidoreductase YghU	0.00325133731729
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5A009	 Oxidoreductase	0.0167867366204
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_X5A009	 Oxidoreductase	0.000304276160035
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R9YN68	 2 succinyl 6 hydroxy 2, 4 cyclohexadiene 1 carboxylate synthase	0.00864293723157
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YN68	 2 succinyl 6 hydroxy 2, 4 cyclohexadiene 1 carboxylate synthase	0.00844195972159
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P61544	 UPF0316 protein SA1727	0.0170828119375
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZXI9	 Mn2 and Fe2 transporter	0.00962228108713
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C7ZXI9	 Mn2 and Fe2 transporter	0.00745474699278
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O31775		0.00999499444314
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O31775		0.00707720405766
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRD0	 Endonuclease III	0.00853357712706
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRD0	 Endonuclease III	0.00852603547479
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L5E4	 Phenylalanine  tRNA ligase beta subunit	0.00867626079944
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L5E4	 Phenylalanine  tRNA ligase beta subunit	0.00837864763203
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7X117		0.0115114620759
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7X117		0.00553784995996
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P45625		0.00972660202083
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P45625		0.00722122725258
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A4IMH7	 tRNA 2 methylthio N dimethylallyladenosine synthase	0.00980457201869
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A4IMH7	 tRNA 2 methylthio N dimethylallyladenosine synthase	0.00722280968557
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U4X7	 ABC sugar transporter, inner membrane subunit	0.0170203407221
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4YX93	 L fuculose 1 phosphate aldolase	0.0170197511107
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IUE2	 DUTPase	0.0170028327562
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L7F0	 UPF0754 membrane protein SH1116	0.00861104671906
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L7F0	 UPF0754 membrane protein SH1116	0.00839701961882
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQR1	 Toprim domain protein	0.0109125723586
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQR1	 Toprim domain protein	0.00608458093191
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HF07	 Riboflavin biosynthesis protein RibBA	0.00920349007475
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HF07	 Riboflavin biosynthesis protein RibBA	0.00779164451138
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0LFR7		0.00930126301035
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_K0LFR7		0.00767911716292
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G904	 DNA primase	0.00881246084259
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6G904	 DNA primase	0.0081602703725
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C2H0	 Fructose repressor	0.0116033507068
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C2H0	 Fructose repressor	0.00535992157492
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SGJ9	 Substrate specific component ThiW of predicted thiazole ECF transporter	0.00940982499189
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SGJ9	 Substrate specific component ThiW of predicted thiazole ECF transporter	0.00755326963737
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLR8		0.0169589294686
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HR97	 Teichoic acids export ATP binding protein TagH	0.00890760869149
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR97	 Teichoic acids export ATP binding protein TagH	0.00801472552417
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B7GF12	 Ferrochelatase	0.0113517004694
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B7GF12	 Ferrochelatase	0.00560031603057
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKC7		0.016948915725
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H7CPK2		0.0110765953624
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H7CPK2		0.00586605349785
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CTH6	 Urea amidolyase	0.0119333131253
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTH6	 Urea amidolyase	0.00498996715123
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI00036095F7	 hypothetical protein	0.0169196122266
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8XSL7	 Remnant of isrso5 transposase protein	0.0169104166402
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_W0F5U5	 Spermidine putrescine ABC transporter permease protein	0.00795786091455
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W0F5U5	 Spermidine putrescine ABC transporter permease protein	0.00660329916078
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_W0F5U5	 Spermidine putrescine ABC transporter permease protein	0.00194171546011
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_W0F5U5	 Spermidine putrescine ABC transporter permease protein	0.000406473403749
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q02W25	 50S ribosomal protein L4	0.00606172433036
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q02W25	 50S ribosomal protein L4	0.00582424575625
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q02W25	 50S ribosomal protein L4	0.00502257088416
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J611	 Putative sensor histidine protein kinase	0.0169003270361
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C729		0.010323506221
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C729		0.00656312506171
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P55177	 Hydrolase in agr operon	0.00849635045166
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P55177	 Hydrolase in agr operon	0.0083870476262
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D1GNQ1	 Aldo keto reductase family protein	0.00985841953144
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D1GNQ1	 Aldo keto reductase family protein	0.0070167326885
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C4ZHB9	 Glutamyl tRNA amidotransferase subunit A	0.00889338402978
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C4ZHB9	 Glutamyl tRNA amidotransferase subunit A	0.00788962445964
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C4ZHB9	 Glutamyl tRNA amidotransferase subunit A	7.20146701537e-05
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_M1XHI0	 Transposon tn552 dna invertase binr	0.010953853955
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_M1XHI0	 Transposon tn552 dna invertase binr	0.00590740984337
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D0LZ79	 Phosphoribosylformylglycinamidine synthase, purS	0.0168274279252
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUU3		0.0167320599669
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P67371	 DegV domain containing protein SA1258	0.00922865464808
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P67371	 DegV domain containing protein SA1258	0.00760452977983
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IQC1	 LmbE family protein	0.00867307969385
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5IQC1	 LmbE family protein	0.00806420506077
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SJM7	 Siderophore staphylobactin biosynthesis protein SbnG	0.0168327670912
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8GFH7	 Spermidine export protein MdtJ	0.0168274279252
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1LCM1		0.016656596871
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QE85		0.00963705596971
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QE85		0.00716722573426
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7NM10	 Endoribonuclease YbeY	0.0167924926012
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9RCA1	 DNA polymerase III subunit beta	0.00972526542977
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9RCA1	 DNA polymerase III subunit beta	0.00704249022451
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CQE3		0.00882766065721
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQE3		0.00796443264579
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HM66		0.0105665067805
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HM66		0.0062216768634
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YUE8	 L threonine dehydratase biosynthetic IlvA	0.0108879585548
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q2YUE8	 L threonine dehydratase biosynthetic IlvA	0.00588201781768
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L855	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0101514599669
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L855	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00662428319813
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C2G3	 Deoxyribodipyrimidine photolyase	0.00906128418306
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C2G3	 Deoxyribodipyrimidine photolyase	0.00769023275432
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQ91	 Histidine biosynthesis bifunctional protein HisIE	0.0167418286342
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV07	 Asparagine synthetase	0.0167476013458
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FH57	 Putative oligopeptide transport ATP binding protein oppD2	0.0100185113413
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FH57	 Putative oligopeptide transport ATP binding protein oppD2	0.00672140935285
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5F4X4	 Spermidine putrescine ABC transporter permease	0.00869906307717
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5F4X4	 Spermidine putrescine ABC transporter permease	0.00542815664043
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5F4X4	 Spermidine putrescine ABC transporter permease	0.00232073974866
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C5F4X4	 Spermidine putrescine ABC transporter permease	0.000290964171617
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28TB6	 Amino acid ABC transporter membrane protein 2, PAAT family	0.0167350540836
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X0C7	 Lipoyl synthase	0.0104784381769
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X0C7	 Lipoyl synthase	0.0062365602262
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CPQ1	 Bifunctional autolysin	0.00877696619011
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPQ1	 Bifunctional autolysin	0.00794434254535
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L6B1	 TelA like protein SH1505	0.00932905542159
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L6B1	 TelA like protein SH1505	0.00738152006435
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9EAC4		0.00903419163597
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9EAC4		0.00767606222235
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HH83	 UPF0413 protein SACOL1006	0.00991877609572
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HH83	 UPF0413 protein SACOL1006	0.00679085039945
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F2I802	 Response regulator receiver domain protein	0.0106518108499
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F2I802	 Response regulator receiver domain protein	0.00604726127886
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2IHW6	 NADH quinone oxidoreductase subunit B	0.0166592235914
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P46905		0.0106260732276
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P46905		0.00605825048188
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P67760	 UPF0302 protein SA1295	0.00935994518369
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P67760	 UPF0302 protein SA1295	0.0073134589971
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X1C4	 UDP N acetylmuramoylalanine  D glutamate ligase	0.00910398717176
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X1C4	 UDP N acetylmuramoylalanine  D glutamate ligase	0.00756834244445
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49W91	 Na H(+) antiporter subunit A1	0.00926276781159
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49W91	 Na H(+) antiporter subunit A1	0.0073969833291
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q168U2	 Polyhydroxyalkanoate synthesis repressor	0.0164125632822
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J230		0.0166537393906
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPQ8	 Nucleotidase	0.00937462428578
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CPQ8	 Nucleotidase	0.00727862057048
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RH26	 Site specific DNA methyltransferase 	0.00847180942229
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D9RH26	 Site specific DNA methyltransferase 	0.00816630989856
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GBA6	 Histidinol phosphate aminotransferase	0.00888929754926
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GBA6	 Histidinol phosphate aminotransferase	0.00760598812503
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V2S6	 Phage tail tape measure protein, TP901 family, core region	0.0166267424482
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SIU9	 Phosphate regulon sensor protein PhoR SphS	0.00945014777427
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SIU9	 Phosphate regulon sensor protein PhoR SphS	0.00717292333619
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1B5	 Choloylglycine hydrolase	0.016621076752
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9CFS9	 Small heat shock protein	0.0165276699081
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CP83	 2 oxoglutarate dehydrogenase E1 component	0.00850330944753
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CP83	 2 oxoglutarate dehydrogenase E1 component	0.00811064069584
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q53229	 UPF0093 membrane protein RHOS4_28450	0.0166155424475
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2K5Z5	 Leucine responsive transcriptional regulator protein, AsnC family	0.016612346497
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5BRV4	 Binding protein dependent transport systems inner membrane component	0.0165945720053
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O06994	 Oligo 1,6 glucosidase 1	0.0100673627199
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O06994	 Oligo 1,6 glucosidase 1	0.00627516338984
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_O06994	 Oligo 1,6 glucosidase 1	0.000227185676338
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L5P2	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0112565872507
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L5P2	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00533491414587
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49XR9		0.0084377466656
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49XR9		0.00814940915275
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8SDJ9	 Amidase	0.0165775676226
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6U9R9	 Export membrane protein SecF	0.00834561942193
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D6U9R9	 Export membrane protein SecF	0.00823069145384
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P0AC90	 GDP mannose 4,6 dehydratase	0.01148565425
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC90	 GDP mannose 4,6 dehydratase	0.0048379033069
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P0AC90	 GDP mannose 4,6 dehydratase	0.000240758806804
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q04E86	 DNA directed RNA polymerase subunit beta	0.0106814616802
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04E86	 DNA directed RNA polymerase subunit beta	0.00588070316137
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C4X0	 KipI	0.00994774303152
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C4X0	 KipI	0.00660274623595
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRC6	 Iron compound ABC transporter, permease protein	0.00855031810004
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRC6	 Iron compound ABC transporter, permease protein	0.00800168551796
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9E7V9	 Two component response regulator	0.00939170196311
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9E7V9	 Two component response regulator	0.00716017665595
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q732I6	 Orotidine 5 phosphate decarboxylase	0.0111155643882
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q732I6	 Orotidine 5 phosphate decarboxylase	0.00524366235125
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q732I6	 Orotidine 5 phosphate decarboxylase	0.000168274279255
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FJ80	 FMN dependent NADPH azoreductase	0.0091750450559
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FJ80	 FMN dependent NADPH azoreductase	0.00737149629473
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KX92	 ABC polysaccharide export transporter, ATPase subunit	0.0165250148066
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G9J2	 Anthranilate synthase component I	0.00836465249889
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6G9J2	 Anthranilate synthase component I	0.00815717847542
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R4RG70	 Cyclase family protein	0.00915550916226
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R4RG70	 Cyclase family protein	0.00735873007563
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2N3U7	 Phosphoenolpyruvate dependent sugar phosphotransferase system, eiia 2, putative	0.0165106316908
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1Y7X3	 Transporter, Na+ H+ antiporter family	0.00891101666094
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y7X3	 Transporter, Na+ H+ antiporter family	0.00759022311412
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HGH0	 Phosphatidate cytidylyltransferase	0.00897770641128
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HGH0	 Phosphatidate cytidylyltransferase	0.00749097205333
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B1YGB5	 DNA replication and repair protein RecF	0.012049779784
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B1YGB5	 DNA replication and repair protein RecF	0.00441412241762
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HN66	 A G specific adenine glycosylase	0.00840447717037
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HN66	 A G specific adenine glycosylase	0.00805138155125
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RCZ8		0.0164514290142
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C7U2	 4 aminobutyrate aminotransferase	0.00991863830261
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C7U2	 4 aminobutyrate aminotransferase	0.00652810779873
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0A080	 Methionine aminopeptidase	0.00847480663812
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0A080	 Methionine aminopeptidase	0.00791643614215
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8WHV5	 Pseudouridine synthase	0.00975152682687
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8WHV5	 Pseudouridine synthase	0.00668699357405
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X1H5		0.00918291768991
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X1H5		0.00725243109969
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WUA4		0.0164301015936
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9KD29	 Manganese transport system membrane protein MntC	0.00976215169224
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9KD29	 Manganese transport system membrane protein MntC	0.00646932866353
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9KD29	 Manganese transport system membrane protein MntC	0.000197582323972
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U1FXL3	 Primosome assembly protein PriA	0.00958263075056
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U1FXL3	 Primosome assembly protein PriA	0.00684519931731
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O31404	2,6 dichlorophenolindophenol oxidoreductase subunit alpha	0.00982378407118
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O31404	2,6 dichlorophenolindophenol oxidoreductase subunit alpha	0.00656299601057
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SH06		0.00998565150969
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D6SH06		0.00641663844447
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49WX9	 Bifunctional protein PyrR	0.0163425676044
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q041L5	 ABC type cobalt transport system, permease component CbiQ related transporter	0.00779146124004
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q041L5	 ABC type cobalt transport system, permease component CbiQ related transporter	0.00762300989356
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q041L5	 ABC type cobalt transport system, permease component CbiQ related transporter	0.000970711374118
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G7M7	 D alanine  D alanine ligase	0.0101580362291
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6G7M7	 D alanine  D alanine ligase	0.00619768460466
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q59801	 Hyaluronate lyase	0.016369169794
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZLK0		0.0163180183873
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YAV1	 Transposase	0.00834054167348
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1YAV1	 Transposase	0.00798715251958
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O32232	 Carboxylesterase	0.00838585129964
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O32232	 Carboxylesterase	0.00794072762394
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N145	 Cation diffusion facilitator family transporter	0.00997118879395
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N145	 Cation diffusion facilitator family transporter	0.00635142370259
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O34997		0.0098239212179
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O34997		0.00649637111717
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPV5	 UPF0122 protein SERP0802	0.0163151105958
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRJ8		0.00943315851264
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CRJ8		0.00687580632143
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HLT6	 Abortive infection family protein	0.00955105985278
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLT6	 Abortive infection family protein	0.00674429976313
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SIF5	 Biotin carboxylase	0.00831938645473
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SIF5	 Biotin carboxylase	0.00797355383683
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q02137	 Acetolactate synthase large subunit	0.0102184216204
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q02137	 Acetolactate synthase large subunit	0.00604436137613
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L6W7	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00817666032272
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L6W7	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00809660555679
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9GV41	 Prostaglandin F synthase	0.0162552149734
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0C3I3	 Translocator protein, LysE family	0.0162701682179
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F2LJU7	 Glycogen debranching enzyme GlgX	0.0162663609413
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2LTM3	 Phosphopantothenoylcysteine decarboxylase   phosphopantothenate  cysteine ligase	0.00847791955642
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2LTM3	 Phosphopantothenoylcysteine decarboxylase   phosphopantothenate  cysteine ligase	0.0077824082616
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q73FJ4	 Glutamine amidotransferase subunit PdxT	0.0162533521198
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q67N11	 Pseudouridine 5 phosphate glycosidase	0.0162453380477
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9KZ75	 Urocanate hydratase	0.01472308983
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9KZ75	 Urocanate hydratase	0.000508931280073
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9KZ75	 Urocanate hydratase	0.000468839253735
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9KZ75	 Urocanate hydratase	0.000311693151087
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9KZ75	 Urocanate hydratase	0.000212596946377
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1E7		0.0162390829012
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0LK11	 ABC transporter, ATP binding protein	0.00813607203746
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_K0LK11	 ABC transporter, ATP binding protein	0.00809141326783
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8EM59	 Thymidine kinase	0.0161912993725
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0A0M5	 Thymidylate synthase	0.0133632476255
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0A0M5	 Thymidylate synthase	0.00279216621758
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O33518	 Protein translocase subunit SecF	0.0161748035552
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YUL0	 Putative thiaminase 2	0.00917995771694
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YUL0	 Putative thiaminase 2	0.00699192524892
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F8F763		0.00987950987938
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F8F763		0.00628339827711
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQF1	 Membrane protein, putative	0.00872551148047
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQF1	 Membrane protein, putative	0.00743710141863
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0A067	 Signal peptidase IB	0.0112012690125
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0A067	 Signal peptidase IB	0.00468587912345
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I4E1R6		0.0158807005075
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I4E1R6		0.000268344484059
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q52881	 Chemotaxis protein CheW	0.0161496916854
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSV4		0.00783732259487
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CSV4		0.00777012595486
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8CSV4		0.000541947281236
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WXI7	 CorA like Mg2+ transporter protein	0.00902109045041
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WXI7	 CorA like Mg2+ transporter protein	0.00712578022829
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L3C7	 Transcription activator of glutamate synthase operon	0.00830120133685
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L3C7	 Transcription activator of glutamate synthase operon	0.00784383353441
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IW30		0.016138841985
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L7K3	 UPF0421 protein SH1063	0.0104586592144
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L7K3	 UPF0421 protein SH1063	0.00567855586439
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F1C1	 HTH type transcriptional regulator IscR	0.0161354660351
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9RQP9	 Poly beta 1,6 N acetyl D glucosamine synthase	0.016133658297
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QHG0	 Phosphonate ABC transporter permease protein phnE1	0.0089666007246
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QHG0	 Phosphonate ABC transporter permease protein phnE1	0.00714671959049
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FIS2	 Lipoteichoic acid synthase	0.00829127355178
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FIS2	 Lipoteichoic acid synthase	0.00782130804102
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5UJE9		0.00848217584722
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UJE9		0.00761927988358
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49Y24	 Heat inducible transcription repressor HrcA	0.00838881024364
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49Y24	 Heat inducible transcription repressor HrcA	0.00771128821185
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7NA19	 Ribonucleoside diphosphate reductase subunit beta	0.00854300928518
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C7NA19	 Ribonucleoside diphosphate reductase subunit beta	0.00755515474284
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DVN1		0.0160954101497
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV40		0.0155620880008
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0A036LTT5		0.00956069484334
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WZD3	 Dihydrolipoyl dehydrogenase	0.00851776513675
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WZD3	 Dihydrolipoyl dehydrogenase	0.00755804437473
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNL5	 Formamidopyrimidine DNA glycosylase	0.0105412373255
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HNL5	 Formamidopyrimidine DNA glycosylase	0.0055309271791
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WZG7	 BirA bifunctional protein	0.0100214650423
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WZG7	 BirA bifunctional protein	0.00604506184695
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FUW5	 Accessory Sec system protein Asp3	0.0160643798816
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1G6		0.0159286325511
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I0C1G6		0.000120195913754
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FWQ0	 Anti repressor	0.0160421789329
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GIG7	 Probable nitronate monooxygenase	0.0159753027494
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2N524		0.00835799272499
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D2N524		0.00768308101316
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N0D9	 Glyoxalase family protein	0.0160314159563
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5QQY5	 Magnesium transporter	0.00899204131894
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E5QQY5	 Magnesium transporter	0.00702517763883
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HH10	 Phosphoribosylamine  glycine ligase	0.00801487301031
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HH10	 Phosphoribosylamine  glycine ligase	0.00800046160917
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A6QI12		0.00844761691593
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QI12		0.00756478758332
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DNV1	 3 dehydroquinate synthase	0.0081878041199
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DNV1	 3 dehydroquinate synthase	0.00781858851254
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B1AJD3	 Glycine  tRNA ligase	0.00928629606532
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B1AJD3	 Glycine  tRNA ligase	0.00671102388828
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PSC3	 Exopolysaccharide synthesis, ExoD	0.0159581641613
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GIU7	 Quinolone resistance protein NorA	0.00930666306242
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GIU7	 Quinolone resistance protein NorA	0.0066897079962
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P21881	 Pyruvate dehydrogenase E1 component subunit alpha	0.00937612324826
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P21881	 Pyruvate dehydrogenase E1 component subunit alpha	0.00661578176874
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FXB1	 Leucotoxin LukDv	0.0159846767481
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q7BHL7	 Regulatory protein MsrR	0.00905382314326
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q7BHL7	 Regulatory protein MsrR	0.0069282805271
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GI75	 Enoyl [acyl carrier protein] reductase [NADPH] FabI	0.00869691161621
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GI75	 Enoyl [acyl carrier protein] reductase [NADPH] FabI	0.00727349046758
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P97030	 Epoxyqueuosine reductase	0.00868303135312
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P97030	 Epoxyqueuosine reductase	0.00728627635176
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLY0	 Probable molybdenum cofactor guanylyltransferase	0.00864362651205
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HLY0	 Probable molybdenum cofactor guanylyltransferase	0.00712986974677
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P22825	 PTS system sucrose specific EIIBC component	0.0111452372425
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P22825	 PTS system sucrose specific EIIBC component	0.00481497761351
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y5U5	 ABC transporter permease protein	0.0107050669578
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1Y5U5	 ABC transporter permease protein	0.00525365993288
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4K2W0		0.0158806543712
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C6D5Z2	 Inosine uridine preferring nucleoside hydrolase	0.00830571657165
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C6D5Z2	 Inosine uridine preferring nucleoside hydrolase	0.00764887973667
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K826	 Ribose operon repressor, putative	0.01595372772
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NRH5		0.0156404557871
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HKH4	 Peptide ABC transporter, permease protein, putative	0.0118199611682
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKH4	 Peptide ABC transporter, permease protein, putative	0.00412802080384
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9K5Z9	 L lactate permease	0.00820773322272
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9K5Z9	 L lactate permease	0.00773843914489
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B8D184	 Undecaprenyl phosphate galactose phosphotransferase	0.0159411951521
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D1BHZ8	 Ribonucleoside triphosphate reductase class III catalytic subunit	0.00865898985318
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D1BHZ8	 Ribonucleoside triphosphate reductase class III catalytic subunit	0.00700712090875
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D1BHZ8	 Ribonucleoside triphosphate reductase class III catalytic subunit	0.00021616371486
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D1BHZ8	 Ribonucleoside triphosphate reductase class III catalytic subunit	5.62163516481e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J3X8		0.0159327641544
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NRR7		0.0107385631633
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FYR1	 Aminoacyltransferase FemB	0.0102865188432
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FYR1	 Aminoacyltransferase FemB	0.00563138916274
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49WP2		0.0118443442465
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49WP2		0.00407046826086
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I2DKJ5	 Urea ABC transporter, urea binding protein	0.0154147487165
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I2DKJ5	 Urea ABC transporter, urea binding protein	0.000498289149601
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PS70	 YD repeat protein	0.0159110394583
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPD3		0.00825511628505
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HPD3		0.00764741592198
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O32090	 Nicotinate phosphoribosyltransferase	0.0113169209574
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O32090	 Nicotinate phosphoribosyltransferase	0.00452041770767
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QEY2		0.00797592509029
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A6QEY2		0.00792507780727
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CTJ5		0.00816514548253
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTJ5		0.00773337210748
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V4QJE1		0.0158928931334
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C5L3	 Integral membrane protein	0.00867466869561
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C5L3	 Integral membrane protein	0.00721816699474
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J223	 Putative phage major capsid protein, gp36	0.00977663622169
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49YR8	 Regulatory protein RecX	0.0082054672367
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49YR8	 Regulatory protein RecX	0.00767865548974
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV75	 RES domain containing protein	0.01581571568
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HMZ8	 ABC transporter, ATP binding protein	0.00867296698659
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HMZ8	 ABC transporter, ATP binding protein	0.00719560460104
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C4F0	 GTPases 	0.00807256432096
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C4F0	 GTPases 	0.00779350630939
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QDT5	 Duplicated ATPase component YkoD of energizing module of thiamin regulated ECF transporter for HydroxyMethylPyrimidine	0.00807687124731
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QDT5	 Duplicated ATPase component YkoD of energizing module of thiamin regulated ECF transporter for HydroxyMethylPyrimidine	0.00778816278907
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9ZH99	 Isocitrate dehydrogenase [NADP]	0.00785245692203
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9ZH99	 Isocitrate dehydrogenase [NADP]	0.00680317152105
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9ZH99	 Isocitrate dehydrogenase [NADP]	0.000628516399437
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9ZH99	 Isocitrate dehydrogenase [NADP]	0.000305650254845
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZH99	 Isocitrate dehydrogenase [NADP]	0.000161422064185
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9ZH99	 Isocitrate dehydrogenase [NADP]	0.00011369883733
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V6N7	 Biotin requiring enzyme family protein	0.00907629665336
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G8V6N7	 Biotin requiring enzyme family protein	0.0067881046325
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GHK8	 ATP dependent DNA helicase RecG	0.00801610679464
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GHK8	 ATP dependent DNA helicase RecG	0.00781777256002
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNU1	 Riboflavin synthase alpha chain	0.0103546267898
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CNU1	 Riboflavin synthase alpha chain	0.0054957603439
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QIX9		0.00821453000383
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QIX9		0.0076338465078
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N6E7	 Hydrolase, haloacid dehalogenase like family protein	0.00809948817323
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N6E7	 Hydrolase, haloacid dehalogenase like family protein	0.00773635950038
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2GKX1	 O acetylhomoserine  lyase	0.0116630346408
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B2GKX1	 O acetylhomoserine  lyase	0.00415661701863
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J217	 Putative Endonuclease	0.0158161431131
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P66840	 Putative 5 deoxyribonucleotidase	0.00830607747775
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P66840	 Putative 5 deoxyribonucleotidase	0.00741715126849
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B0RVK4	3 ketoacid coenzyme A transferase subunit A	0.0154358024837
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_B0RVK4	3 ketoacid coenzyme A transferase subunit A	0.000175590552265
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV29	 Two component transcriptional regulator, LuxR family	0.0157944906875
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X1Y2	 Homoserine kinase	0.00869295111848
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X1Y2	 Homoserine kinase	0.00709782513665
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KV10		0.0157891138332
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RDU7	 Glyoxalase bleomycin resistance protein dioxygenase superfamily protein	0.0121512609138
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D9RDU7	 Glyoxalase bleomycin resistance protein dioxygenase superfamily protein	0.00362789429202
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5D8K3	 Phosphopantetheine adenylyltransferase	0.0091433510789
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5D8K3	 Phosphopantetheine adenylyltransferase	0.0066120726967
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F4FQW3	 Recombinational DNA repair protein RecT	0.0147802734038
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F4FQW3	 Recombinational DNA repair protein RecT	0.000979919839162
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QIJ6		0.0157445719487
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0A2X7	 Carbamate kinase 1	0.00880436341123
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0A2X7	 Carbamate kinase 1	0.00562381109912
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0A2X7	 Carbamate kinase 1	0.00127439427146
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GBK7	 Putative antiporter subunit mnhA2	0.00793572475214
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GBK7	 Putative antiporter subunit mnhA2	0.00780061992721
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C568	 Cysteine desulfurase	0.00818288660773
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C568	 Cysteine desulfurase	0.00755314497265
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P92514	 Cytochrome c oxidase subunit 3	0.0156241304146
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L770	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00841769094432
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L770	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00727364957934
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WZA3		0.0094237552913
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WZA3		0.00626338360046
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UQ99	 Peptidase M16 domain containing protein	0.00820953935843
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5UQ99	 Peptidase M16 domain containing protein	0.00747634118773
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L6M0	 DNA repair protein RecN	0.00882182582744
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L6M0	 DNA repair protein RecN	0.00686190331437
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W6RXA4	 NAD dependent epimerase dehydratase	0.0156833596713
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_X5EJ50	 PAP2 superfamily protein	0.00790605989954
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5EJ50	 PAP2 superfamily protein	0.00777257228853
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5FUG4	 3 isopropylmalate dehydratase small subunit	0.01566388306
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNT1	 Integrase	0.0156613759049
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DK14	 Homolog of FecCD transport family protein SstB	0.00945931646946
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DK14	 Homolog of FecCD transport family protein SstB	0.00619991086146
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5ITB1	 Coproporphyrinogen III oxidase, anaerobic	0.00802275464005
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5ITB1	 Coproporphyrinogen III oxidase, anaerobic	0.0076256144276
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UN27		0.0109776459429
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5UN27		0.00466724638121
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YAK1	 Phage protein	0.0156405975948
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZU94	 GCN5 N acetyltransferase	0.0156316557947
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4A0J9	 Urease accessory protein UreD	0.00863149768049
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4A0J9	 Urease accessory protein UreD	0.00698725484347
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B0TH67	 tRNA  ) methyltransferase	0.00814253706743
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B0TH67	 tRNA  ) methyltransferase	0.00746179794314
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQC2	 Aminotransferase, class I	0.00877812099029
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQC2	 Aminotransferase, class I	0.00682522957656
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FH66	 Indole 3 glycerol phosphate synthase	0.00783509206405
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FH66	 Indole 3 glycerol phosphate synthase	0.00776793710653
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PGE5		0.0131076913034
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DNZ7	 UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.00794383697458
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DNZ7	 UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.0076487580855
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DP24	 4 hydroxy tetrahydrodipicolinate reductase	0.00954704642993
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DP24	 4 hydroxy tetrahydrodipicolinate reductase	0.00588781943663
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQ00		0.0155914310068
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW29		0.0155879678136
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C7ZRN4	 Ferrichrome ABC transporter lipoprotein	0.00780180098278
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZRN4	 Ferrichrome ABC transporter lipoprotein	0.00772663116053
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X1N2	 GTP sensing transcriptional pleiotropic repressor CodY	0.00872767393729
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X1N2	 GTP sensing transcriptional pleiotropic repressor CodY	0.00683336179559
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1U2	 Trehalose operon transcriptional repressor	0.0155572656171
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49W05		0.0155525608514
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUD3	 Resolvase	0.0142627874927
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CUD3	 Resolvase	0.00128463596679
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3E6A1	 Respiratory nitrate reductase, gamma subunit	0.0155340950213
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q74I98	 tRNA  ) methyltransferase	0.00912967689857
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q74I98	 tRNA  ) methyltransferase	0.00605064134319
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q74I98	 tRNA  ) methyltransferase	0.000352681855603
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5IVI2	 GCN5 related N acetyltransferase	0.0111933091547
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IVI2	 GCN5 related N acetyltransferase	0.00433788232542
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5WCN5	 Sorbitol dehydrogenase	0.0155230313608
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3YNY8	 Penicillin binding protein, transpeptidase domain protein	0.00806484360918
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3YNY8	 Penicillin binding protein, transpeptidase domain protein	0.00744728738098
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HEB7		0.0155016939907
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1SNL2	 30S ribosomal protein S3	0.015479057139
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FH43	 4 hydroxy tetrahydrodipicolinate synthase	0.00815612316285
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FH43	 4 hydroxy tetrahydrodipicolinate synthase	0.0072819605278
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QCP0		0.008418884771
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QCP0		0.00704747437473
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49WD6	 NAD kinase	0.00821203293991
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49WD6	 NAD kinase	0.00724886069466
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QGS2		0.00900543687466
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QGS2		0.00643962050607
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQW7		0.015444283256
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X1H8	 Probable dual specificity RNA methyltransferase RlmN	0.00810223983233
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X1H8	 Probable dual specificity RNA methyltransferase RlmN	0.00732498848881
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49YF9	 PTS system N acetylglucosamine specific IIBC component	0.00820887885356
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49YF9	 PTS system N acetylglucosamine specific IIBC component	0.00722491982852
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HNY9	 Putative GTP cyclohydrolase 1 type 2	0.00772352845339
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNY9	 Putative GTP cyclohydrolase 1 type 2	0.00770679109208
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C313	 Hydrolase 	0.00869899893533
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C313	 Hydrolase 	0.00672961065591
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G960	 Ribonuclease Z	0.0083293328745
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6G960	 Ribonuclease Z	0.00709865777329
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJF7	 Ribosome recycling factor	0.0154235264706
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5EJB2	 DNA polymerase III, delta subunit	0.00864636942931
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_X5EJB2	 DNA polymerase III, delta subunit	0.00677622109649
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N425		0.00940343551642
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N425		0.00601758044094
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3EJ05	 Cytochrome bd type ubiquinol oxidase subunit II	0.00777033621934
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3EJ05	 Cytochrome bd type ubiquinol oxidase subunit II	0.00764257860472
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A6QJ17	 Iron compound ABC transporter, permease protein	0.00780202904638
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QJ17	 Iron compound ABC transporter, permease protein	0.00760278392866
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L7J6	 Sensor protein VraS	0.00866094689819
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L7J6	 Sensor protein VraS	0.00664690160906
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FZK3	 Protein FmtA	0.0080560904029
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FZK3	 Protein FmtA	0.00734234483622
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKG9		0.0153934829014
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WNY6	 ATP synthase subunit a	0.0153913683666
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E1VCL4	 ABC type transport system permease protein	0.0153888462352
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D7A4H7	 ABC transporter related protein	0.0153827561785
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SE14	 4 phosphopantetheinyl transferase family protein	0.0153772323327
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U6BC07	 Aconitate hydratase	0.00792429098369
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U6BC07	 Aconitate hydratase	0.00745129077475
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CN46	 Para nitrobenzyl esterase chain A	0.00916092404713
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CN46	 Para nitrobenzyl esterase chain A	0.00620154449358
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1Y9W9	 Regulator of kinase autophosphorylation inhibitor	0.00854244638388
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y9W9	 Regulator of kinase autophosphorylation inhibitor	0.0068189362427
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q13SP0	 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.0150933660987
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q13SP0	 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.000264913467809
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQT9	 Sodium transport family protein	0.00849866091357
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQT9	 Sodium transport family protein	0.00685918057521
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YUU9	 Superoxide dismutase [Mn Fe] 2	0.0153419933285
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P52078		0.00859116727644
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P52078		0.00674323490479
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P74193	 Threonine synthase	0.00919673456402
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P74193	 Threonine synthase	0.00600299295281
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P74193	 Threonine synthase	0.000131979826866
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O34453	 Nitric oxide synthase oxygenase	0.0100029941548
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O34453	 Nitric oxide synthase oxygenase	0.0053282569439
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E0SM47	 D alanine aminotransferase	0.0153244273288
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZRL2		0.00875861100523
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G7ZRL2		0.00656060229913
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUE9		0.0112410135745
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RE66		0.0079794199966
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D9RE66		0.00733154011111
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0CF79	 Transposase InsF for insertion sequence IS3A	0.0153077125181
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HP79	 3 phosphoshikimate 1 carboxyvinyltransferase	0.00869395228518
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HP79	 3 phosphoshikimate 1 carboxyvinyltransferase	0.00660025690012
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q75JL2	 Mitochondrial DNA repair protein recA homolog	0.0152715329049
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5DV87	 Molybdate ABC transporter, periplasmic molybdate binding protein	0.00872036571043
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_X5DV87	 Molybdate ABC transporter, periplasmic molybdate binding protein	0.00654390030136
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L4W4	 Na+ H+ antiporter, MnhD subunit	0.00922038426502
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L4W4	 Na+ H+ antiporter, MnhD subunit	0.00603749473339
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q7W4T6	 Holliday junction ATP dependent DNA helicase RuvB	0.00879114530708
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q7W4T6	 Holliday junction ATP dependent DNA helicase RuvB	0.00505602560965
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q7W4T6	 Holliday junction ATP dependent DNA helicase RuvB	0.00128951279244
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q7W4T6	 Holliday junction ATP dependent DNA helicase RuvB	0.000100964567551
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C7MGE6		0.0151996546652
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E1WQ62		0.0152466956201
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QD71	 FemC, factor involved in methicillin resistance Glutamine synthetase repressor	0.0140513534422
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QD71	 FemC, factor involved in methicillin resistance Glutamine synthetase repressor	0.00119247954461
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV33	 Putative outer membrane protein	0.0152394045338
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U5P983	 Macrolide ABC transporter ATP binding protein	0.0120384552937
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_U5P983	 Macrolide ABC transporter ATP binding protein	0.00256858286854
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_U5P983	 Macrolide ABC transporter ATP binding protein	0.000620120608516
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PSB1	 Flagellar FlbT family protein	0.0152240805661
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q637E1	 Phosphonate ABC transporter, phosphate binding protein	0.00866621551577
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q637E1	 Phosphonate ABC transporter, phosphate binding protein	0.00654867473221
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YYC5	 D 3 phosphoglycerate dehydrogenase	0.0152086612548
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GDQ0	 ATP dependent Clp protease ATP binding subunit ClpL	0.0116586397314
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q6GDQ0	 ATP dependent Clp protease ATP binding subunit ClpL	0.00353756862108
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMN3		0.0048919492637
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHB4		0.0138389984359
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2VEQ1	 Electron transport complex subunit A	0.0133975464902
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2VEQ1	 Electron transport complex subunit A	0.00178684669454
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DPU7	 SpoU rRNA Methylase family protein	0.00759783800646
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DPU7	 SpoU rRNA Methylase family protein	0.0075693517793
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HIW9		0.0151496974981
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HP11	 Shikimate kinase	0.014940391682
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8Y1		0.0151264119218
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YX72	 Spermidine putrescine binding periplasmic protein	0.00936109014337
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YX72	 Spermidine putrescine binding periplasmic protein	0.00574404816351
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8U5S6	 ABC transporter, membrane spanning protein 	0.0150911972081
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9EC33		0.00824494922496
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9EC33		0.00683616801544
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B2G6L2	 Isoleucine  tRNA ligase	0.00992611323938
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B2G6L2	 Isoleucine  tRNA ligase	0.00471401991901
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B2G6L2	 Isoleucine  tRNA ligase	0.000253400682826
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B2G6L2	 Isoleucine  tRNA ligase	0.000186585208693
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L9Z0	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0150746021732
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8U3B8	 Arsenical resistance protein acr3	0.0150721839621
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7WXS7	 Antiholin like protein LrgB	0.0150643482386
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVS3	 RES domain containing protein	0.0143982688872
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV12	 Generic methyltransferase	0.0150559090172
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HR29	 Histidine protein kinase SaeS	0.00847761579037
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR29	 Histidine protein kinase SaeS	0.00647899446394
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FG30		0.00830791067254
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FG30		0.00670408802114
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQ98	 Phosphoribosylglycinamide formyltransferase	0.0150466640138
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q46ZM0	 sn glycerol 3 phosphate import ATP binding protein UgpC	0.0116166324596
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46ZM0	 sn glycerol 3 phosphate import ATP binding protein UgpC	0.00332897547547
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8NXR4	 ABC transporter permease	0.0085083846062
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8NXR4	 ABC transporter permease	0.00653088350564
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5QZ07		0.0146131201924
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C0R3V6	 3 5 exonuclease	0.0150219839494
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A9B436	 30S ribosomal protein S4	0.00891919555302
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A9B436	 30S ribosomal protein S4	0.00561523660964
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A9B436	 30S ribosomal protein S4	0.000487507901928
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SJT4	 Lipid A export ATP binding permease protein MsbA	0.00807815845551
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SJT4	 Lipid A export ATP binding permease protein MsbA	0.00694217759652
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LXH7	 Universal stress family protein	0.0150117064219
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q53178	 Cytochrome c type protein NapC	0.0118806337637
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q53178	 Cytochrome c type protein NapC	0.00278201693077
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q53178	 Cytochrome c type protein NapC	0.000348989210141
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR27		0.00890120083183
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HR27		0.00600645770515
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FVY9	 HTH type transcriptional regulator SarV	0.0106262163536
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FVY9	 HTH type transcriptional regulator SarV	0.00437156809713
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7HRI8	 UPF0260 protein Plav_0898	0.0148773058787
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P4S1	 Transcriptional regulator, GntR family	0.0149880283586
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZP62	 Chromosome replication initiation membrane attachment protein	0.00778919308172
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G7ZP62	 Chromosome replication initiation membrane attachment protein	0.00719739494667
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WPL6		0.0149751329359
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9EBX9	 DNA damage repair protein homolog	0.00804953274037
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9EBX9	 DNA damage repair protein homolog	0.00692464121662
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8H9	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0145504814636
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49W87	 Na H(+) antiporter subunit E1	0.00836648953688
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49W87	 Na H(+) antiporter subunit E1	0.00660545010455
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q71X09	 Methionine import ATP binding protein MetN 2	0.0086077063105
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q71X09	 Methionine import ATP binding protein MetN 2	0.00635230764605
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E5QWQ2	 Aspartokinase	0.0077269244669
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5QWQ2	 Aspartokinase	0.00722586795412
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q0Q2J7	 Putative antiporter subunit mnhD2	0.00824227702429
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q0Q2J7	 Putative antiporter subunit mnhD2	0.00670880578064
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A1A081	 50S ribosomal protein L5	0.00849844584014
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A1A081	 50S ribosomal protein L5	0.00644493938427
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKJ7	 ABC di oligopeptide transporter, periplasmic ligand binding protein	0.0149377946205
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DNP9	 Exodeoxyribonuclease 7 large subunit	0.00757203186757
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DNP9	 Exodeoxyribonuclease 7 large subunit	0.00736204734728
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P598	 Aspartate aminotransferase, putative	0.00783025322571
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P598	 Aspartate aminotransferase, putative	0.00709926173464
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKP9	 Capsule polysaccharide export protein	0.0148999469027
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZT42	 DNA binding protein	0.0149265148195
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0RH75	 LexA repressor	0.0146842692751
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RDS5		0.0149112611842
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IRS8	 Isochorismate synthase	0.0091722302624
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5IRS8	 Isochorismate synthase	0.00573876189176
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5MZL4		0.0107116502349
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5MZL4		0.00418419186288
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KS15	 CheW protein	0.0148842537265
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GE66	quinone oxidoreductase 1	0.0148725123734
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7W3F5	 Phosphonate ABC transporter, permease protein	0.00754566067967
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G7W3F5	 Phosphonate ABC transporter, permease protein	0.0073170736297
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SGK9	 Lysophospholipase Monoglyceride lipase putative	0.00783201917779
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SGK9	 Lysophospholipase Monoglyceride lipase putative	0.00702409867683
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRU1	 Glycosyl transferase, group 1 family protein	0.0148493073766
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QHK8		0.00906322042008
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QHK8		0.00578407325075
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GEF4	 Protein FdhD homolog	0.010490905226
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GEF4	 Protein FdhD homolog	0.00435215020311
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G0LQ60		0.014832061152
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CNW5	 Septation ring formation regulator EzrA	0.00759764420808
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNW5	 Septation ring formation regulator EzrA	0.0072269361966
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRK7	 30S ribosomal protein S12	0.0112787562241
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRK7	 30S ribosomal protein S12	0.00353432973925
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HPN8	 tRNA dimethylallyltransferase	0.00754419796792
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPN8	 tRNA dimethylallyltransferase	0.00724595969136
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LI45		0.0141490508982
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9EAX4	 Capsular polysaccharide synthesis protein CapM homolog	0.0147650473726
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV21	 N6 adenine specific DNA methyltransferase, N12 class	0.0147830581496
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q07GR3		0.0140879032677
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HPR5	 DNA translocase FtsK	0.00757902263109
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPR5	 DNA translocase FtsK	0.00719744988904
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WUR4	 ABC transporter substrate binding protein	0.0147726459128
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8NXI7	 MW0768 protein	0.0147622148175
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C4L0	 ADP ribose pyrophosphatase	0.0079774082891
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C4L0	 ADP ribose pyrophosphatase	0.00679014362372
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3F2N0	 Transcriptional regulator, LysR family protein	0.014767023142
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A4ISF0	 Pyridine nucleotide disulphide oxidoreductase	0.00759923735302
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A4ISF0	 Pyridine nucleotide disulphide oxidoreductase	0.00716750489301
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O31678	 NADPH dependent 7 cyano 7 deazaguanine reductase	0.0102578285576
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O31678	 NADPH dependent 7 cyano 7 deazaguanine reductase	0.00436151011777
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HJZ0	 DNA gyrase subunit A	0.0147326710447
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D5WDJ8	 Ectoine hydroxyectoine ABC transporter, ATP binding protein	0.00768243989574
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D5WDJ8	 Ectoine hydroxyectoine ABC transporter, ATP binding protein	0.00705082930648
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U2V1	 Gas vesicle synthesis GvpLGvpF	0.0147331517588
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q03I89	 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.00923951682562
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03I89	 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.00515291020752
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q03I89	 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.000335561698559
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q52666	 Glutamate glutamine aspartate asparagine transport ATP binding protein BztD	0.0144926850095
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q52666	 Glutamate glutamine aspartate asparagine transport ATP binding protein BztD	0.000232637252418
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KUW5	 Beta lactamase	0.0147232065233
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C381	 1,4 dihydroxy 2 naphthoate polyprenyltransferase	0.00832087377453
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C381	 1,4 dihydroxy 2 naphthoate polyprenyltransferase	0.00639510727924
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9E6Y5		0.00912151527922
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9E6Y5		0.00559359611645
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N4DJP8	 LysR substrate binding domain protein	0.0147119798432
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GFZ2	 Probable tRNA sulfurtransferase	0.00760929506225
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GFZ2	 Probable tRNA sulfurtransferase	0.0071003046849
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R4NJW9	 Low specificity L threonine aldolase	0.0145933682214
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4NJW9	 Low specificity L threonine aldolase	0.000109033010313
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNI2	 Aminotransferase, class V	0.00753458469314
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HNI2	 Aminotransferase, class V	0.00716388607281
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W8H188		0.0146764910242
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G0LRP3	 Haloacid dehalogenase like hydrolase	0.00769603367493
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G0LRP3	 Haloacid dehalogenase like hydrolase	0.00698929758006
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMP2		0.0146814118352
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADW3	 Inner membrane protein YhcB	0.014681368917
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F0LGR4	 Sugar ABC transporter, substrate binding protein	0.0146304269704
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C5M6	 Acyl CoA hydrolase	0.00832382382903
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C5M6	 Acyl CoA hydrolase	0.00635407625062
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9BQJ1	 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.0146103413638
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9BQJ1	 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	5.73336556199e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8K9K4	 Flagellar basal body rod protein FlgG	0.0108402661204
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8K9K4	 Flagellar basal body rod protein FlgG	0.00382632839371
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQ95	 Cobalt transport family protein	0.00943761313032
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQ95	 Cobalt transport family protein	0.00522613952247
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRN0	 UvrB UvrC domain protein	0.00890062202937
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRN0	 UvrB UvrC domain protein	0.00575787989527
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P77737	 Oligopeptide transport ATP binding protein OppF	0.0105440419157
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77737	 Oligopeptide transport ATP binding protein OppF	0.0041006803924
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2G0B1	 HTH type transcriptional regulator MgrA	0.00845287829774
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2G0B1	 HTH type transcriptional regulator MgrA	0.00617062667753
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L5Y5	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0119436857518
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L5Y5	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00267852920471
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G7ZQT1		0.0087645953891
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZQT1		0.00585272410928
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F4DQ72	 TRAP T family transporter periplasmic binding protein	0.0146138312258
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QEC0		0.00772881261683
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QEC0		0.0068838439416
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M013	 Phage integrase family protein	0.0146110717476
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F0L4M9	 Cytochrome c oxidase fixO chain	0.0145994114377
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M4S1P9	 Methylmalonyl CoA epimerase	0.0145953351657
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q84F59		0.0100634475259
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q84F59		0.00439267588898
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q84F59		0.000134799155604
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0C0L2	 Peroxiredoxin OsmC	0.0124616726509
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P0C0L2	 Peroxiredoxin OsmC	0.00212368682882
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV36		0.0132954776276
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G970	 Segregation and condensation protein B	0.0100688447626
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6G970	 Segregation and condensation protein B	0.00450360601875
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O86489	 Serine aspartate repeat containing protein E	0.0145591688664
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8NW76		0.00755400071622
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8NW76		0.00700045054284
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LJQ4	 Pyrophosphate phospho hydrolase	0.0145488688378
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QDY4	 Phage major head protein	0.0145377544511
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1XSF4	 Glycine betaine transporter	0.00747544530644
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XSF4	 Glycine betaine transporter	0.007059490221
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FDY2	 Putative NADH nitroreductase SAUSA300_2462	0.00843817216564
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FDY2	 Putative NADH nitroreductase SAUSA300_2462	0.00562185869445
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q2FDY2	 Putative NADH nitroreductase SAUSA300_2462	0.000379566043421
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P80885	 Pyruvate kinase	0.00911377442461
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P80885	 Pyruvate kinase	0.00540143359176
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1XS28		0.00926341059407
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XS28		0.0052348444422
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C7LI26	 Oligopeptide ABC transporter, periplasmic oligopeptide binding protein	0.0144954164244
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6U170	 Tyrosine recombinase XerC	0.00800259925726
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A6U170	 Tyrosine recombinase XerC	0.00649267431442
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X4S8	 Thiamine phosphate synthase	0.00799234150964
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X4S8	 Thiamine phosphate synthase	0.00649647039575
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B8JAD8	 Nucleoside diphosphate kinase	0.014125553485
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B8JAD8	 Nucleoside diphosphate kinase	0.000258221400383
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QEL4	 ComF operon protein A, DNA transporter ATPase	0.00771892816897
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QEL4	 ComF operon protein A, DNA transporter ATPase	0.00674858893987
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P0AFM3	 Glycine betaine binding periplasmic protein	0.0104307853422
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFM3	 Glycine betaine binding periplasmic protein	0.00403585319561
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P26280	 Reaction center protein L chain	0.0144640145758
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW26	 DNA topology modulation kinase FlaR, putative	0.0144617107933
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L700	 UPF0758 protein SH1266	0.0144442047111
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3XB68	 YhgE Pip C terminal domain protein	0.01445245323
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PM78	 Haloacid dehalogenase domain protein hydrolase	0.0144389591063
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKJ3	 Putative Mrr restriction system protein	0.0144339668761
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J618	 Deoxyguanosinetriphosphate triphosphohydrolase like protein	0.0144183466847
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV92		0.0132200517956
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QK31	 Transcriptional regulator LysR family protein	0.0144154591401
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SDZ0	 Peptidase, M23 family	0.0144042723773
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V8RAR8		0.0141127122953
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V8RAR8		0.000271627885023
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F8KLF6		0.00843163293901
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F8KLF6		0.0059576538228
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L7E3	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00900877579262
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L7E3	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0049967337191
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A5FZW4	 50S ribosomal protein L4	0.0143580318296
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KS17	 Chemotaxis protein methyltransferase	0.0143500871309
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C1L2U0	 UPF0176 protein Lm4b_01393	0.00706777678093
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C1L2U0	 UPF0176 protein Lm4b_01393	0.00664969298773
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C1L2U0	 UPF0176 protein Lm4b_01393	0.000617606261115
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G0LQ70		0.0143392167792
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49WX1	 Cell division protein SepF	0.00840179466646
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49WX1	 Cell division protein SepF	0.00592071606311
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P7Q5		0.0143191468696
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSL7	 Signal transduction histidine protein kinase ArlS	0.00754246899131
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CSL7	 Signal transduction histidine protein kinase ArlS	0.00662481696425
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IPM4		0.0143172380273
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRG3	 UPF0382 membrane protein SERP0230	0.0143123859136
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKK4	 Acyl homoserine lactone synthase	0.014298450351
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49XX5		0.00788415123494
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49XX5		0.00640318815479
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B4RCM7	 NADH quinone oxidoreductase subunit C	0.0142561314882
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I0AL38	 3 oxoacyl [acyl carrier protein] reductase	0.0142712813193
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9KX08	 Putative ribosome biogenesis GTPase RsgA	0.00735294139907
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9KX08	 Putative ribosome biogenesis GTPase RsgA	0.00691784785537
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B8IA33	 Fumarylacetoacetate  hydrolase	0.0141000716355
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B8IA33	 Fumarylacetoacetate  hydrolase	0.000168555204593
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HKL3	 RarD protein	0.00761720449983
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKL3	 RarD protein	0.00664846204044
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P98056	 Cytochrome c oxidase subunit 1 homolog	0.0142641716527
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J9YR02	 BioY family protein	0.0142614035264
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QDA3	 Peptidase, M16 family	0.00754983694735
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QDA3	 Peptidase, M16 family	0.00670841388987
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6UJ92		0.0142577567946
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q59928	 Acetylornithine aminotransferase	0.00925539127134
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q59928	 Acetylornithine aminotransferase	0.00499629761031
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GH28	 Putative oligopeptide transport ATP binding protein oppF2	0.00776457213758
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GH28	 Putative oligopeptide transport ATP binding protein oppF2	0.0064853057981
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q18GT4	 Ketol acid reductoisomerase	0.0135585196356
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q18GT4	 Ketol acid reductoisomerase	0.000682604450229
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q38YN7	 Putative Holliday junction resolvase	0.0142238207492
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZR43		0.0134507740795
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G7ZR43		0.000770706329765
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YXZ9	 Probable CtpA like serine protease	0.00890777111064
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YXZ9	 Probable CtpA like serine protease	0.00531313300058
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H8LDC1	 Helix turn helix domain protein	0.0104184847805
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H8LDC1	 Helix turn helix domain protein	0.00379738994832
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L675	 Anthranilate synthase component II	0.00893296929299
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L675	 Anthranilate synthase component II	0.00527659880064
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV03		0.0135253994774
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F4LW30	 Galactitol specific enzyme IIC component of PTS	0.014197647639
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0LNC6	 Na+transporting ATP synthase	0.00738899111902
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_K0LNC6	 Na+transporting ATP synthase	0.00680751597867
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9E6T3	 Phosphate specific transport system accessory protein PhoU	0.0073600631114
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9E6T3	 Phosphate specific transport system accessory protein PhoU	0.00682398163121
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C7ZW47	 Membrane protein	0.00706223345274
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZW47	 Membrane protein	0.00704712205765
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DV69		0.014183393772
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIJ2		0.0141810817314
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUU2		0.00704491920429
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0RBY2		0.00869029712704
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0RBY2		0.00548576335652
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QHV2	 Sec independent protein translocase protein TatC	0.0141496946167
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QIY9	 Glutamate ABC transporter, periplasmic glutamine binding protein	0.0141428843356
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HEX2		0.0141401349962
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X2GRS8	 FAD dependent pyridine nucleotide disulfide oxidoreductase	0.0141245076222
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0L524	 Polysaccharide biosynthesis family protein	0.0141129139575
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P39788	 Endonuclease III	0.00791179135708
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P39788	 Endonuclease III	0.00619991805963
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YQF0	 Alpha acetolactate decarboxylase	0.0141099734662
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5VFT5	 Acetolactate synthase, large subunit, biosynthetic type	0.014098952608
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI00003793A9	 hypothetical protein	0.0114525381983
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G8W9Y6		0.0140955382504
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2U6	 Response regulator receiver protein	0.0140769344722
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E6V848	 Short chain dehydrogenase reductase SDR	0.0140765742244
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P00282	 Azurin	0.0140629219089
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A3MKU1	 Uridylate kinase	0.0077512224934
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A3MKU1	 Uridylate kinase	0.00627542474389
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V1X3	 Citrate transporter family protein	0.0140399527379
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8GM57	 50S ribosomal protein L2	0.00704249958021
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8GM57	 50S ribosomal protein L2	0.00699631058642
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N580		0.00742004607587
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N580		0.00661518748317
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C2E4	 Hydrogen peroxide inducible genes activator	0.00850290968214
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C2E4	 Hydrogen peroxide inducible genes activator	0.00552020774169
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMX6		0.00853855595724
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5MYZ4		0.0139949764666
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q3Z8B4	 3 methyl 2 oxobutanoate hydroxymethyltransferase	0.0139916982598
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FH48	 Phosphate binding protein PstS	0.00794856212142
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FH48	 Phosphate binding protein PstS	0.00604942633631
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D0K910		0.00811567119622
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K910		0.00587938970257
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G7J6	 UPF0340 protein SAS2017	0.013990265004
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N0F9	 X Pro dipeptidyl peptidase C terminal non catalytic domain protein	0.0139881746522
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HJG9		0.0139681438505
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJV3		0.0137731223449
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8VVU3	 Replication associated protein	0.00757993637579
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8VVU3	 Replication associated protein	0.00635898350569
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPV8	 Ribonuclease 3	0.013933780983
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GHW0	 UPF0348 protein SAR1099	0.00868657899245
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GHW0	 UPF0348 protein SAR1099	0.00522071056833
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV91		0.00800285667259
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWW9		0.0138772722579
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GDB7	 UPF0312 protein SAR2769	0.0138924822615
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F4FN41	 Transcriptional regulator, AraC family	0.00903456271687
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F4FN41	 Transcriptional regulator, AraC family	0.00485362909052
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CP86	 Putative branched chain amino acid carrier protein SE_1090	0.0070818913522
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CP86	 Putative branched chain amino acid carrier protein SE_1090	0.00679450815367
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_W8U5L3	 Membrane protein	0.00768490350863
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W8U5L3	 Membrane protein	0.00617803426433
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GHU5	 Ribonuclease HIII	0.00875119217763
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GHU5	 Ribonuclease HIII	0.00501116897617
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q795R8		0.00876928826628
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q795R8		0.00507896767408
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SI06	 Hydroxyacylglutathione hydrolase	0.00803038687313
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SI06	 Hydroxyacylglutathione hydrolase	0.00580055031754
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HPS0	 tRNA pseudouridine synthase B	0.00743696852517
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPS0	 tRNA pseudouridine synthase B	0.00638750479081
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4A044	 Histidinol dehydrogenase	0.0138077921607
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A2SL87	 ABC transporter permease protein	0.0138117519668
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D7URR5	 Cell shape determining protein MreC	0.00727857032898
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D7URR5	 Cell shape determining protein MreC	0.00652976298219
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YVY3	 Peptidyl tRNA hydrolase	0.0137551531747
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QET5		0.00691582644082
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QET5		0.00688525989612
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPQ8	 CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.0100195389573
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5HPQ8	 CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.00377271663966
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IXK5		0.0137344089024
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HFR9	 Pyrroline 5 carboxylate reductase	0.00731449490545
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HFR9	 Pyrroline 5 carboxylate reductase	0.00647420438654
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8RDK6		0.0137833809505
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FJ09	 Putative antiporter subunit mnhG2	0.0137692750758
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B5W0	 RNA polymerase sigma factor	0.0137666854449
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WTV2		0.0137631440614
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UKJ6		0.0137595520908
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D2J6L2	 Universal stress protein family	0.00709625315037
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2J6L2	 Universal stress protein family	0.00665765682572
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B8ZJM7	 Phosphoribosylaminoimidazole succinocarboxamide synthase	0.00870374513302
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B8ZJM7	 Phosphoribosylaminoimidazole succinocarboxamide synthase	0.00394833112147
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B8ZJM7	 Phosphoribosylaminoimidazole succinocarboxamide synthase	0.00107179551009
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_M5AFG5	 ABC type transporter ATP binding protein EcsA	0.00771825495512
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M5AFG5	 ABC type transporter ATP binding protein EcsA	0.00602727339159
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A2RLY6	 Leucine  tRNA ligase	0.0134936387573
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A2RLY6	 Leucine  tRNA ligase	0.000237024520384
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7FZ47	 30S ribosomal protein S13	0.00735724292259
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7FZ47	 30S ribosomal protein S13	0.00638242297509
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49X25	 Ribosome maturation factor RimM	0.00768109416126
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49X25	 Ribosome maturation factor RimM	0.00605449304688
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G7ZNW2		0.00726525276881
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZNW2		0.00647006781202
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0LZ01	 Aminoacylase	0.0137326507861
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q92QK5	 Aspartyl glutamyl tRNA amidotransferase subunit B	0.0132040618225
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q92QK5	 Aspartyl glutamyl tRNA amidotransferase subunit B	0.000349943286423
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q92QK5	 Aspartyl glutamyl tRNA amidotransferase subunit B	0.000175417562624
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EPG0	 Dihydroneopterin aldolase	0.0137180118955
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C5T9		0.00813486200199
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C5T9		0.00557536389818
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV08		0.0137089531666
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SJM3	 Siderophore staphylobactin biosynthesis protein SbnC	0.0137037272908
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WT86	 Autoinducer binding domain protein	0.0132214777233
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU51		0.00916407712192
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CU51		0.00453542366589
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X311		0.0136985648635
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFD8	 NADH quinone oxidoreductase subunit I	0.0122318061413
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AFD8	 NADH quinone oxidoreductase subunit I	0.000914730525837
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P0AFD8	 NADH quinone oxidoreductase subunit I	0.000186625818025
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9HWF5	 Protein translocase subunit SecY	0.012570155443
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HWF5	 Protein translocase subunit SecY	0.00112386631973
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WYU2	 Aldo keto reductase	0.0136890780716
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9E8Y3	 Xanthine phosphoribosyltransferase	0.00772039466275
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9E8Y3	 Xanthine phosphoribosyltransferase	0.00592486105659
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSM8	 Aspartokinase	0.00821551455803
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CSM8	 Aspartokinase	0.00546203983399
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O33587	 AgrC	0.00746662814848
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O33587	 AgrC	0.00612249093075
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C7W6	 Two component sensor histidine kinase	0.00711614074794
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C7W6	 Two component sensor histidine kinase	0.00655613996835
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SH59	 Chromosome replication initiation protein dnaD	0.00687469194631
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SH59	 Chromosome replication initiation protein dnaD	0.00679001063524
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A037L527	 SPP1 family phage portal protein	0.0136615512095
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DQ89	 ATP phosphoribosyltransferase	0.0135888816549
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR30	 Glycosyl transferase, group 2 family protein	0.0136481019436
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G9WG62	 ABC transporterpermease protein	0.0136477662081
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV38		0.01330098383
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1D1		0.013636839608
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q989G8	 Deoxyguanosinetriphosphate triphosphohydrolase like protein 2	0.0136346590226
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7K529	 Trap transporter solute receptor, taxi family	0.0135052606171
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QF90	 Manganese ABC transporter, inner membrane permease protein SitD	0.0136319066565
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P50205	 Acetoacetyl CoA reductase	0.0134702102799
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y630	 Long chain fatty acid  CoA ligase	0.0136211489619
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPX4	 Phosphoglycerate mutase	0.0136201087632
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F8KHS4	 RNA pseudouridylate synthase	0.00685527525226
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F8KHS4	 RNA pseudouridylate synthase	0.00674651711417
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C4K6C1	 5 methylthioadenosine S adenosylhomocysteine nucleosidase	0.00886578066694
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C4K6C1	 5 methylthioadenosine S adenosylhomocysteine nucleosidase	0.00473197024262
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P37216	 Phospho 2 dehydro 3 deoxyheptonate aldolase 2, chloroplastic	0.0135425942487
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YUY9	 N acetylmuramic acid 6 phosphate etherase	0.013571512437
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N315		0.0135779979837
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D9RBB0	 ABC 2 type transport system permease protein	0.0083478943026
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RBB0	 ABC 2 type transport system permease protein	0.00522643024033
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0LZX2		0.0135666212891
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_H5YAU3	 ABC type spermidine putrescine transport system, permease component II	0.0135665212187
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C2F4		0.00799350735037
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C2F4		0.00544054386088
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N4H6		0.00861858685578
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N4H6		0.00494077302648
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YYV8	 Imidazolonepropionase	0.0135430446134
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HPT2	 Ribosome recycling factor	0.0135388234584
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7M7P5	 Aspartate semialdehyde dehydrogenase	0.0124730892899
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M7P5	 Aspartate semialdehyde dehydrogenase	0.00106077377174
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5ZJA3	 Sugar phosphotransferase system , fructose specific family, IIA component	0.0135318595219
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q7UA36	 ATP dependent Clp protease proteolytic subunit 1	0.0135288325453
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L4Q7	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0135270104518
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P35163	 Transcriptional regulatory protein ResD	0.00760900529954
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P35163	 Transcriptional regulatory protein ResD	0.0059163802022
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C0Q8	 5 nucleotidase	0.0135245929378
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1LDG8		0.013522040297
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GE63		0.0135205885165
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q53726	 Heptaprenylglyceryl phosphate synthase	0.0135178991557
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WTZ9	 Glycoside hydrolase, family 16	0.0135133467105
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HF86	 Glyceraldehyde 3 phosphate dehydrogenase 2	0.00770414228999
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HF86	 Glyceraldehyde 3 phosphate dehydrogenase 2	0.00576672898866
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q65JY3	 Phospho N acetylmuramoyl pentapeptide transferase	0.00760585134608
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q65JY3	 Phospho N acetylmuramoyl pentapeptide transferase	0.00589306073323
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q88EH6	 Acetyl coenzyme A synthetase 1	0.00975690038068
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q88EH6	 Acetyl coenzyme A synthetase 1	0.00308298928177
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88EH6	 Acetyl coenzyme A synthetase 1	0.000643935093784
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9VUH1	proton antiporter	0.0134776119902
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1GG85	 Phage protein	0.0134619423401
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3TTH2		0.012776215335
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X240	 Tryptophan synthase alpha chain	0.00768093957961
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X240	 Tryptophan synthase alpha chain	0.00576177677375
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U3I1	 Trimethylamine N oxide reductase c type cytochrome TorC	0.0134266200791
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A059MSQ1	 Nitrate reductase	0.0134239871378
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WNY5		0.013303351667
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0RIF4	 Branched chain alpha keto acid dehydrogenase E2 component	0.00700069563536
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0RIF4	 Branched chain alpha keto acid dehydrogenase E2 component	0.00641240862263
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U4PPL6		0.0132102087699
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GRQ0	 30S ribosomal protein S2	0.0124673836374
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1GRQ0	 30S ribosomal protein S2	0.0009351538195
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L300	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0101961427289
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L300	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00320552135685
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZTN4	 Acyl CoA dehydrogenase	0.0133981139134
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CT00		0.0133893131034
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRZ0		0.0133829789435
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DKC4	 Haloacid dehalogenase like hydrolase family protein	0.00755879873262
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DKC4	 Haloacid dehalogenase like hydrolase family protein	0.00581832941664
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HNZ4	 Ferric uptake regulation protein	0.0094854807721
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNZ4	 Ferric uptake regulation protein	0.00388319049278
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CT38		0.013364268899
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L3X4	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0133642485758
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AU02		0.0132818973523
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1WG04	 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase	0.0133545490863
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F8KJ61	 DNA 3 methyladenine glycosylase I	0.0101404291894
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F8KJ61	 DNA 3 methyladenine glycosylase I	0.00321399788442
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q81FQ4	 Nucleoside diphosphate kinase	0.0133366182297
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L9M0	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0133469347392
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1UT83	 50S ribosomal protein L13	0.0133355576008
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZTG5	 Glycosyl transferase	0.0133329621335
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WQY8	 Cytochrome c type biogenesis protein CcmE	0.0133281941121
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QE86		0.00842284304972
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QE86		0.00487887036717
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8UEY5	 CTP synthase	0.0100541735173
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8UEY5	 CTP synthase	0.0028173212972
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8UEY5	 CTP synthase	0.000377100806165
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RM99	 Phage N acetylglucosaminidase	0.0133037669221
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RDD3	 Ser Asp rich fibrinogen bone sialoprotein binding protein SdrE_1	0.0131457727167
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TND0		0.0133016724525
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1G5	 SIR2 family protein	0.0127395487262
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I0C1G5	 SIR2 family protein	0.000548303369547
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WU99	 CapB protein	0.0132874531997
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A8Z124		0.00704849087525
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z124		0.00623812532799
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS21	 2 succinylbenzoate  CoA ligase	0.0132609973524
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G7DLE2		0.013267032121
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YZN5	 ABC type dipeptide oligopeptide nickel transport system, permease component	0.0132668922877
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F6BN92	 Tetracycline transcriptional regulator YcdC domain containing protein	0.0132568731917
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q16CW9	 Lipopolysaccharide 1,3 galactosyltransferase, putative	0.0132566396676
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7HSL3	 Cobyrinic acid ac diamide synthase	0.0132419723126
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D1GUM7	 Probable siderophore biosynthesis protein SbnA	0.0132517957004
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLR4	 Formimidoylglutamase	0.0132421393526
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7ZIA3	 S formylglutathione hydrolase FrmB	0.00980337935387
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZIA3	 S formylglutathione hydrolase FrmB	0.0033277920045
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6G6F1	 D lactate dehydrogenase	0.00708887819916
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G6F1	 D lactate dehydrogenase	0.00468944345258
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q6G6F1	 D lactate dehydrogenase	0.00142658291459
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNV6		0.0128044935538
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4X0D6	 SH3, type 3 domain protein	0.0121695511264
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5K8E6	 UbiC transcription regulator associated protein	0.013230615398
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMQ2	 Alkyl hydroperoxide reductase subunit C	0.0132282436397
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G2RRU8	 Glycerol uptake facilitator Permease 	0.0132224219016
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0JRX2	 Oxidoreductase domain protein	0.0131975855616
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C7B0	 ATP dependent dethiobiotin synthetase BioD	0.0131874423502
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C718	 Integral membrane protein	0.0131708043681
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N176		0.0131617884384
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q03ZA4	 Ribosomal RNA small subunit methyltransferase G	0.00692491984208
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03ZA4	 Ribosomal RNA small subunit methyltransferase G	0.0055483176888
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q03ZA4	 Ribosomal RNA small subunit methyltransferase G	0.000680221141661
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GCY8	 Purine nucleoside phosphorylase DeoD type	0.0131506225358
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q53222	 2 vinyl bacteriochlorophyllide hydratase	0.012550787906
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AD60	 Inhibitor of vertebrate lysozyme	0.0131454852335
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTX4		0.0131427215519
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F4CQG8	 Amidohydrolase 2	0.0131341884352
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G7QNB5	 ABC transporter permease protein	0.013132163316
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9EBL7		0.0131226064489
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HDI6	 Pyridoxal dependent decarboxylase	0.0131181498504
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1XRH9	 Ribulose phosphate 3 epimerase	0.00663256365452
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XRH9	 Ribulose phosphate 3 epimerase	0.00648349234539
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV32		0.0125529305888
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2J6T4		0.0130902210999
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8RG67		0.0130884924502
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQI0	 Type III secretion system inner membrane R protein	0.0130844050793
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHB5	 Secretion protein HlyD family protein	0.0130760534653
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P50736		0.00766779106653
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P50736		0.00540736195165
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N523	 ACT domain protein	0.00732466595957
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N523	 ACT domain protein	0.00574913556166
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J4T6	 ThiF family protein	0.0130628718607
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P52311	 Modification methylase XorII	0.0130590139013
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHP1	 Abortive infection protein	0.013055631463
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HHC0	 Inactive signal peptidase IA	0.0080207721739
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HHC0	 Inactive signal peptidase IA	0.00502722030091
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZXZ9		0.0130436386112
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RNH9	 Phage transcriptional regulator	0.0130389162147
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CT65		0.00737298670153
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CT65		0.00566204798048
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R9YLC4	 Cell cycle family protein	0.00873206166994
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YLC4	 Cell cycle family protein	0.00430112535437
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GDN6	 4,4 diaponeurosporenoate glycosyltransferase	0.0130301033782
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1C1E1	 Glucose 1 phosphate adenylyltransferase	0.00910133635156
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C1E1	 Glucose 1 phosphate adenylyltransferase	0.00391765532982
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SDZ2	 Gamma glutamyltransferase	0.0130239942374
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RGW2	 SWIM zinc finger domain protein	0.0130228727684
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HPI3	 Protein GlcT	0.00795560645955
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPI3	 Protein GlcT	0.0050622396212
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J617		0.0130146518856
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P44023		0.00649962347219
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P44023		0.00575803039656
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P44023		0.000456753915945
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P44023		0.000295341576
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N0V3		0.0130019324861
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9TBR6	 Predicted protein	0.012995356196
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTB3	 Extracellular solute binding protein, family 5	0.0129944547373
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRM6	 PIN domain protein	0.00873860809846
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRM6	 PIN domain protein	0.00425333194036
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z4R9	 Bacteriophage integrase	0.0129913354176
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVS2	 DNA RNA helicase, superfamily I	0.0129897644075
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U3TJ62	 Elongation factor 4	0.00846189681405
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3TJ62	 Elongation factor 4	0.00452637951424
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3JHV2		0.011729133203
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3JHV2		0.00123344037246
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2SD76	 Leu Ile Val binding protein family	0.0129775321286
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HR28	 Response regulator SaeR	0.00729766292573
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR28	 Response regulator SaeR	0.00567786450027
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C6V2	 Acetyltransferase	0.012972516568
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49WT0	 3 hexulose 6 phosphate synthase 2	0.0128134432427
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HR38	 Cys tRNA Cys tRNA(Cys) deacylase	0.00938936997681
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR38	 Cys tRNA Cys tRNA(Cys) deacylase	0.00357593749703
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B214	 Cupin 2, conserved barrel domain protein	0.0123617562359
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YHY9	 Partition protein A	0.0125931155798
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F6BWB1	 Transcriptional regulator, MerR family	0.0129559759399
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8R5Z9	 Ribosome recycling factor	0.00782058092533
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8R5Z9	 Ribosome recycling factor	0.00495072331836
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8R5Z9	 Ribosome recycling factor	0.000182246511823
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L666	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00729385443216
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L666	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00565661950504
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J4T9	 ATPase	0.0126920791535
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9WGZ8	 Di and tricarboxylate transporter	0.0129439763578
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6U7Z3	 Proline  tRNA ligase	0.0129292780064
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GJM1	 UPF0753 protein SAR0453	0.0129208408323
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X3N2	 S adenosylmethionine synthase	0.0119374627957
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7X3N2	 S adenosylmethionine synthase	0.000314288304632
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A7X3N2	 S adenosylmethionine synthase	0.000303198406489
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A7X3N2	 S adenosylmethionine synthase	0.000219248402744
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A7X3N2	 S adenosylmethionine synthase	9.09590698658e-05
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P39912	 Protein AroA	0.0080551949207
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P39912	 Protein AroA	0.00486939483851
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P19066	 Nitrogenase molybdenum iron protein alpha chain	0.0127755044433
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7Z9P0	 Cyclic pyranopterin monophosphate synthase	0.0129154606216
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HN96	 Foldase protein PrsA	0.00648530121757
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HN96	 Foldase protein PrsA	0.00642535012125
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B2GC97	 Dehydrogenase	0.0129042879968
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O31676	 6 carboxy 5,6,7,8 tetrahydropterin synthase	0.00913329158338
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O31676	 6 carboxy 5,6,7,8 tetrahydropterin synthase	0.00375248328388
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Z8B9P7		0.0128887627319
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O34011	 Fructose 1,6 bisphosphatase class 1	0.0121609241815
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9JLP2	 Dipeptide ABC transporter	0.0128668520211
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P80886	 Succinyl CoA ligase [ADP forming] subunit beta	0.0128374781438
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P0AEG0	 Dipeptide transport system permease protein DppB	0.00992342335678
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEG0	 Dipeptide transport system permease protein DppB	0.00223104998593
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AEG0	 Dipeptide transport system permease protein DppB	0.000707871490084
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99WQ6	 Lipase 2	0.0128578291632
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YWD0	 HTH type transcriptional regulator SAB2452	0.0128563529597
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N6C7	 DHHA1 domain protein	0.00867437833706
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N6C7	 DHHA1 domain protein	0.0041809477702
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IPW8	 Uracil xanthine permease	0.0128514147321
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6JGY2	 Peptide chain release factor 3	0.0128410629683
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SGT7	 Enoyl CoA hydratase   Enoyl CoA hydratase [valine degradation]   3 hydroxyacyl CoA dehydrogenase	0.0128401132553
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X5Z9	 Ferredoxin  NADP reductase	0.0128354913943
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHN8	 Signal transduction histidine kinase	0.0128341272214
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P29925	 NADH quinone oxidoreductase chain 13	0.0123713198927
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMU5		0.0125612322002
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HP54		0.00793495900379
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HP54		0.00489624064913
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LLI4	 Transcriptional regulator	0.0128297694731
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A9VIS8	 UPF0758 protein BcerKBAB4_4299	0.0128260948955
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B7HHF8	 3 isopropylmalate dehydratase small subunit	0.00919042922339
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B7HHF8	 3 isopropylmalate dehydratase small subunit	0.00360265838662
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8IHY5	 C4 dicarboxylate binding protein	0.0128250295837
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WUJ0	 Membrane protein involved in aromatic hydrocarbon degradation	0.0127874329907
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C0V7	 Multidrug resistance efflux pump	0.0128214290607
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GCF0		0.0128208406492
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D3P6U6	 ATP dependent helicase Lhr and Lhr like helicase	0.0128107156448
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SF44	 Chitinase B	0.00985606492761
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SF44	 Chitinase B	0.00294948838
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8NY74		0.0127819776081
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0M0Z9	 Iron regulated ABC transporter siderophore binding protein SirA	0.0127688304449
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A9NFP2	 50S ribosomal protein L32	0.0114964418797
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A9NFP2	 50S ribosomal protein L32	0.00126205709439
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C2ZQ18	 ABC transporter ATP binding protein yxdL	0.0127480146585
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FG95	 Probable cell wall amidase LytH	0.0076316597454
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FG95	 Probable cell wall amidase LytH	0.00501997308609
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GIA3	 3 oxoacyl [acyl carrier protein] synthase 2	0.0123437751219
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q6GIA3	 3 oxoacyl [acyl carrier protein] synthase 2	0.000373070419201
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L5B7	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00709090745164
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L5B7	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00563427252894
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GDK6	 Uroporphyrinogen decarboxylase	0.0126105292376
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O05956	 Endonuclease III	0.00675118233588
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O05956	 Endonuclease III	0.00597045308052
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1RH88	 Superoxide dismutase [Mn Fe]	0.012708930991
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H1XS41	 UDP N acetylglucosamine 2 epimerase	0.0127171778456
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FUW3	 Accessory Sec system protein Asp1	0.0127152492704
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQG2	 Chemotaxis MotB protein	0.0127147114084
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q11MY4	 Aminotransferase	0.0127052629349
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A5VPU4	 Transcriptional regulator, MarR family	0.0126968872048
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4X051		0.0126855222317
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WVV8	 Ferrochelatase	0.0126748499842
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HGC3	 Glutamine synthetase	0.00916082579412
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5HGC3	 Glutamine synthetase	0.00349625806493
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQM8		0.0126488841667
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A8YTF9	 Thymidylate kinase	0.0126225601658
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C5C5	 Peptidoglycan endo beta N acetylglucosaminidase	0.00730154596996
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C5C5	 Peptidoglycan endo beta N acetylglucosaminidase	0.00533154438352
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1ZBH9	 Binding protein dependent transport systems inner membrane component	0.0126248645535
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L8E1V7	 Polyketide biosynthesis 3 hydroxy 3 methylglutaryl ACP synthase pksG	0.0126236912321
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L5Y3	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0126232952162
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K3P4	 Sua5 YciO YrdC YwlC family protein	0.0126221854032
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76138	 Putative HTH type transcriptional regulator YneL	0.0126205709439
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P12011	 Gluconokinase	0.0125949634914
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHP3		0.0113400290258
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A0A038GLZ5	 Peptide ABC transporter substrate binding protein	0.0125854947233
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5E0Q9	 Triose phosphate Transporter family protein	0.0085744191159
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_X5E0Q9	 Triose phosphate Transporter family protein	0.00400948424349
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WTC7		0.012582601744
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FC02		0.0125769739746
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N054	 Transcriptional regulator, GntR family	0.0125761893941
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GHN9	 Lipoprotein signal peptidase	0.00837293417915
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GHN9	 Lipoprotein signal peptidase	0.00420228937062
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M3F1		0.0119736535398
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q65GI9	 3 isopropylmalate dehydrogenase	0.00726306682196
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q65GI9	 3 isopropylmalate dehydrogenase	0.00524498792638
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C1CCZ1	 UvrABC system protein C	0.00844730090532
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C1CCZ1	 UvrABC system protein C	0.00394357742005
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C1CCZ1	 UvrABC system protein C	0.000175840549338
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q9HJD0	 30S ribosomal protein S8e	0.01255889573
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q3B6F6	 30S ribosomal protein S3	0.00662531057201
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q3B6F6	 30S ribosomal protein S3	0.00592454301407
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O34720	 Probable oxidoreductase YjgC	0.0125264142104
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q3J8Q5	 50S ribosomal protein L10	0.012544188914
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O07084	 Cadmium, cobalt and zinc H K(+) antiporter	0.0125401791213
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1WR56	 Oxidoreductase FAD binding domain protein	0.0125338189221
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IPG3		0.0125336550569
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FKF1	 HTH type transcriptional regulator NorG	0.0125143137413
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRK4	 Elongation factor Tu	0.00659741032047
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRK4	 Elongation factor Tu	0.00476146099791
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5HRK4	 Elongation factor Tu	0.00114466143495
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHY8	 Transcriptional regulator, LysR family	0.0125034750619
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L9C4	 Putative pyruvate, phosphate dikinase regulatory protein 1	0.0125013747126
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0L607	 Indigoidine systhesis protein	0.0124953165068
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULT5	 Predicted 1,4 beta cellobiosidase	0.0124919113642
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QDY0	 Phage portal protein	0.0124915967949
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YZB2	 ATP phosphoribosyltransferase regulatory subunit	0.0124773581329
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HKP7	 Probable poly beta 1,6 N acetyl D glucosamine export protein	0.0124847989364
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6IPE0	 Probable transaldolase	0.0121087977466
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B6IPE0	 Probable transaldolase	0.000156291900234
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1C0		0.012454469324
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R9YPY4	 Phage head morphogenesis , SPP1 gp7 family domain protein	0.00777557129384
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YPY4	 Phage head morphogenesis , SPP1 gp7 family domain protein	0.00467079248757
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HNR9	 D tyrosyl tRNA deacylase	0.00746568286139
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNR9	 D tyrosyl tRNA deacylase	0.00495273113325
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSN4		0.0124256457505
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X1Q2	 Ribosome binding factor A	0.0121268331113
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X1Q2	 Ribosome binding factor A	0.000294357339795
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IVU5	 Phospholipase Carboxylesterase	0.0121131036563
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P09772	 Nitrogenase molybdenum iron protein beta chain	0.0123642992259
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F2IUQ0	 Integrase, catalytic region	0.0124083916451
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMP5	 5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	0.0118806457386
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8CMP5	 5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	0.000451436849506
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6X7U6	 2,3 diaminopropionate biosynthesis protein SbnB	0.0123979425746
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV90		0.0121692233406
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GC63	 Exotoxin	0.0123949109634
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YJ81	 Thioester reductase domain protein	0.0123932935637
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B7GHM5	 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.0123825142377
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KW42	 FAD dependent oxidoreductase	0.0120893613571
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P43519	 Nitrogen regulatory protein P II	0.0123707453935
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CRB0	 Putative hemin import ATP binding protein HrtA	0.00706267867935
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRB0	 Putative hemin import ATP binding protein HrtA	0.00530681141279
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O34318		0.0123693011539
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E8TF05	 Tetracycline transcriptional regulator YcdC domain containing protein	0.0123679666369
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O32220	 Copper exporting P type ATPase A	0.0123569622591
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V5D6	 Bacterial extracellular solute binding family protein	0.0123608668059
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SS95		0.0112682060541
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C6SS95		0.00108450713043
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9EAP7	 ATP dependent Clp protease ATP binding subunit ClpB	0.00869500157243
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9EAP7	 ATP dependent Clp protease ATP binding subunit ClpB	0.00333744069269
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9EAP7	 ATP dependent Clp protease ATP binding subunit ClpB	0.000306510635362
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U3TT52	 Cytoplasmic protein	0.0123267136495
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L9T6	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0123364978592
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QEW8		0.0123344610407
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DLR4	 Putative 3 methyladenine DNA glycosylase	0.0123336645591
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PH06		0.0108405632193
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PL00	 TspO and MBR like proteins	0.0123327146517
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HI13	 NPQTN specific sortase B	0.0123271378063
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J097	 Acetyltransferase	0.0123231060792
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q56734	 Aspartate semialdehyde dehydrogenase	0.0122918495062
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P0A1X7	 Methionine aminopeptidase	0.0102267028847
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A1X7	 Methionine aminopeptidase	0.00182989059492
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89XX5	 Cobalt insertion protein	0.0123096238462
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8ZLF2	 sn glycerol 3 phosphate transport system permease protein UgpA	0.0111772978332
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZLF2	 sn glycerol 3 phosphate transport system permease protein UgpA	0.00112980531303
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GDH0	 Carbamate kinase 2	0.0122197789359
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C0X1	 AmrA	0.0123026122897
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CXD9	 Aminomethyltransferase	0.0122723986236
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q48335	 Glyceraldehyde 3 phosphate dehydrogenase	0.0123016812273
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5L3C1	 Heptaprenylglyceryl phosphate synthase	0.0122969252522
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IPG6		0.0121760344618
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J3Y0		0.012291862937
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q989X4	 Mlr6247 protein	0.0122255688806
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7Y0P1	 Binding protein dependent transport systems inner membrane component	0.0122874461871
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5DZP9	 Binding  dependent transport system inner membrane component family protein	0.0122798031414
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU52	 Alkylmercury lyase	0.0122709116211
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M379	 CheW3	0.0122631116017
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4A054		0.0122543283283
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YQ77	 YGGT family protein	0.0122615895631
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G2I4C8	 UTP  glucose 1 phosphate uridylyltransferase	0.0122517085426
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QET9		0.0122438397549
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IYX7	 CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.0120908074499
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WTW6		0.0115873162943
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y669	 Multidrug resistance protein B	0.0122105899828
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_H5YAU5	 Spermidine putrescine binding periplasmic protein	0.0122098250927
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2T0P7	 Mannitol ABC transporter, permease protein	0.0114432879819
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2T0P7	 Mannitol ABC transporter, permease protein	0.000762130572329
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HK76	 Type 1 restriction enzyme R protein	0.0122054043792
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W0II99	 C4 dicarboxylate ABC transporter permease	0.0121411123218
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q82YY1	 Ribosomal RNA small subunit methyltransferase G	0.0122007447069
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8EU13	 Dihydrolipoyl dehydrogenase	0.0116994569253
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8EU13	 Dihydrolipoyl dehydrogenase	0.000490379173534
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V4L1		0.0121874473405
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9ZE56	 Aspartate aminotransferase	0.0121872731702
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q46829	 6 phospho beta glucosidase BglA	0.00874855928819
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46829	 6 phospho beta glucosidase BglA	0.00244369787961
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q46829	 6 phospho beta glucosidase BglA	0.000584152516903
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q46829	 6 phospho beta glucosidase BglA	0.000390997674336
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P67185	 Probable transcriptional regulatory protein SAG1645	0.00904847995143
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P67185	 Probable transcriptional regulatory protein SAG1645	0.0022816962629
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P67185	 Probable transcriptional regulatory protein SAG1645	0.000847110514407
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B348	 Cbb3 type cytochrome c oxidase subunit CcoP	0.0120896661745
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A2S4H0	 ATPase, AAA family protein	0.0121760782663
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q44532	 Ferredoxin  NADP reductase	0.0121726877219
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K7A4	 IucC family siderophore biosynthesis protein	0.0121706013444
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C613	 DNA polymerase III alpha subunit	0.0121639393339
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P33517	 Cytochrome c oxidase subunit 1	0.0118726129855
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L6M8	 Acetyl CoA carboxylase biotin carboxyl carrier subunit	0.0121548844203
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V6XU76		0.0121449210767
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QF31	 Phosphohydrolase, Icc family	0.0121401814333
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LT36	 Na+ Ca+ antiporter	0.0121258990019
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P37474	 Transcription repair coupling factor	0.0121207934872
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2KXF0	 N carbamoyl D amino acid hydrolase	0.0121185750038
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q89WF4	 Transcriptional regulatory protein	0.0121180665297
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A2BPB2	 S adenosylmethionine synthase	0.011683637213
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A2BPB2	 S adenosylmethionine synthase	0.000391475418598
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5DZU0	 NAD dependent epimerase dehydratase family protein	0.0121109790576
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HNY1	 DNA repair protein RecO	0.00697876360096
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNY1	 DNA repair protein RecO	0.0051299601905
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKL2		0.0119815048067
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2SC15	 2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N succinyltransferase	0.00790772721356
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2SC15	 2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N succinyltransferase	0.00372997971131
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2SC15	 2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N succinyltransferase	0.000265797402461
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B2SC15	 2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N succinyltransferase	0.000191220771873
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F6CVN5	 GAF domain protein	0.0120764713487
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K3I1	 Phage amidase	0.012085372427
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRV3	 PAP2 family protein	0.0120843529342
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LIE1	 Transcriptional regulator	0.0120832028563
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DKX8	 Glutamine amidotransferase subunit PdxT	0.0120708936661
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPG3	 Ribosome binding factor A	0.0120057921527
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C9XQG5	 Trehalose 6 phosphate hydrolase	0.0120691250907
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q53174	 Motility protein A	0.0120678743489
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D1GS39	 MarR family regulatory protein	0.00716530430704
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D1GS39	 MarR family regulatory protein	0.00490176578579
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0C0Q4	 Extracellular elastase	0.0120616500837
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y750	 IolE protein like protein	0.012060509616
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49XH5	 Anthranilate phosphoribosyltransferase	0.0120583285242
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HHH0	 Probable cysteine desulfurase	0.0119981465011
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XW27		0.0120449838416
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G0LQE0	 Capsular polysaccharide synthesis enzyme	0.012037044709
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HGL7	 Peptide deformylase like	0.00859597870513
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HGL7	 Peptide deformylase like	0.00343111203016
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0R979	 DNA topoisomerase 3	0.0117153881242
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0R979	 DNA topoisomerase 3	0.00030324288334
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RE87	 Superantigen like protein	0.0120154440738
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUF5		0.0109720002299
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_N1MUD6		0.00626136551373
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N1MUD6		0.00575194520612
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4X095	 Superfamily II helicase and inactivated derivatives like protein	0.0120097822927
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTP4	 Extracellular solute binding protein, family 1	0.0118561813545
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FH55	 Putative oligopeptide transport system permease protein oppB2	0.00610254282516
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FH55	 Putative oligopeptide transport system permease protein oppB2	0.00589801112127
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O68926	 Bacterioferritin	0.0119470052079
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJ68	 SmpA OmlA domain protein	0.0119984864063
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F4FMD5	 Periplasmic iron binding protein	0.0119535432711
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIK5	 Putrescine binding periplasmic protein	0.0119896588158
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98I01	 UvrABC system protein B	0.0119884904439
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WTZ4		0.0119747065394
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8UZP9		0.011944911942
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M453	 McpA	0.0119665875436
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0A0L2	 Enterotoxin type A	0.0119601773884
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8UZP3	 Dyp type peroxidase family protein	0.0119600009276
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P37754	 6 phosphogluconate dehydrogenase, decarboxylating	0.00859312814236
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37754	 6 phosphogluconate dehydrogenase, decarboxylating	0.00336099103597
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9ZFS6	 Exotoxin 3	0.0119531341597
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89P04	 Blr3679 protein	0.0119528607887
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O07641	 Nitrogenase iron protein	0.0117832640933
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O07641	 Nitrogenase iron protein	0.000126999456037
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WW59		0.0119494602044
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ANZ4	 Cytochrome c1	0.0119491751935
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O34364	 Probable oligo 1,6 glucosidase 2	0.0119464376035
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0A6B3	 Acyl carrier protein	0.00860979215583
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A6B3	 Acyl carrier protein	0.0032971863612
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DIE1	 MarR family regulatory protein	0.0119402765031
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKG7	 Two component transcriptional regulator, LuxR family	0.0119271912193
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J6L2		0.0102912554307
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8VQ99	 Serine rich adhesin for platelets	0.00997890730777
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8VQ99	 Serine rich adhesin for platelets	0.00193681693255
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A6QIU2		0.00589200830223
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QIU2		0.00561703048722
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_M1XIG8	 SCCmec staphylococcal cassette region, isolate CMFT535	0.00605792961041
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_M1XIG8	 SCCmec staphylococcal cassette region, isolate CMFT535	0.0058529229587
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F6CLL2	 PSP1 domain protein	0.0119060163129
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P16145	 Probable Ni Fe hydrogenase B type cytochrome subunit	0.0119030860489
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CAY6	 Acetyl CoA acetyltransferase, cytosolic	0.00772247040773
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8CAY6	 Acetyl CoA acetyltransferase, cytosolic	0.00381063962975
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8CAY6	 Acetyl CoA acetyltransferase, cytosolic	0.000270668578151
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q8CAY6	 Acetyl CoA acetyltransferase, cytosolic	9.14534126319e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9K0E0	 ABC transporter substrate binding protein 	0.0119001024454
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKG1		0.0118984393914
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GJ30	 Putative glycosyltransferase TagX	0.0118973441319
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJT9	 Desulfoferrodoxin 	0.0118951056764
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P37877	 Acetate kinase	0.0118914227804
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C5BM46	 TRAP transporter, DctQ family protein	0.0118808182322
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IUL9	 Membrane flanked domain	0.0118874443288
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J2V7	 Cysteine  tRNA ligase	0.011876392403
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J2Q4		0.00968199186531
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B0RVK3	3 ketoacid coenzyme A transferase subunit B	0.00979966774079
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0RVK3	3 ketoacid coenzyme A transferase subunit B	0.00120413211948
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_B0RVK3	3 ketoacid coenzyme A transferase subunit B	0.000766380440402
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q115Z7	 Holliday junction ATP dependent DNA helicase RuvB	0.00804089836233
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q115Z7	 Holliday junction ATP dependent DNA helicase RuvB	0.00254507332297
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q115Z7	 Holliday junction ATP dependent DNA helicase RuvB	0.000543691907568
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q115Z7	 Holliday junction ATP dependent DNA helicase RuvB	0.000529184639021
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q115Z7	 Holliday junction ATP dependent DNA helicase RuvB	0.00019576302677
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YTV6	 TRAP type C4 dicarboxylate transport system, periplasmic component	0.0118018461025
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8PLY8	 Sulfoxide reductase catalytic subunit YedY	0.0118617341804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39363	 Putative phosphotransferase IIA component SgcA	0.011859058035
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q7A7F8		0.0118527436102
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q1WSV7	 Redox sensing transcriptional repressor Rex	0.0118447361179
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q11CE6	 Carbohydrate ABC transporter substrate binding protein, CUT1 family	0.0118425641445
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2W0K2	 ATPase involved in chromosome partitioning	0.0118386306923
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUK3	 Probable thiol peroxidase	0.0118366143258
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HMA3	 Thymidine kinase	0.0117795863939
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y9M1E8	 Nitrate reductase, alpha subunit	0.0118252823231
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8AX62		0.0118237624978
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IV89		0.0118182834819
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5STS9		0.0118150557451
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J3X7		0.0115885919423
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P17855	 Staphylocoagulase	0.0118020426088
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9VYY8		0.0118004792521
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P80046	 Isocitrate dehydrogenase [NADP]	0.0118004629039
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4A065		0.0117914737622
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKD7	 Oxidoreductase, short chain dehydrogenase reductase family	0.011796944589
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QEA3		0.0117944592067
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9A759		0.0117643471923
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RMW1	 DNA integration recombination inversion protein	0.0117812233546
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QJP6	 Zn binding lipoprotein adcA like protein	0.0117775665133
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B9DM19	 50S ribosomal protein L3	0.00596463948014
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DM19	 50S ribosomal protein L3	0.00580319660948
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J9EAY7		0.0117601683494
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A1VWN7	 Transposase, IS4 family	0.0117553283226
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N0AWG4	 Replicative DNA helicase	0.00730583840558
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_N0AWG4	 Replicative DNA helicase	0.00444824747624
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9ZLS9	 Transcription termination factor Rho	0.010810174017
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9ZLS9	 Transcription termination factor Rho	0.000937251827674
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C1KVY0	 5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	0.0117246549043
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9CF79	 Aspartate carbamoyltransferase	0.00888623318514
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CF79	 Aspartate carbamoyltransferase	0.00283332931429
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X766	 Imidazoleglycerol phosphate dehydratase	0.00595488483484
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X766	 Imidazoleglycerol phosphate dehydratase	0.00575569697971
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5RSG0	 NAD dependent epimerase dehydratase	0.0117375740775
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8YHG4	 Glutamate  tRNA ligase 1	0.0117337030041
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLD9	 Peptidase, M20 M25 M40 family	0.0117303682968
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IS38	 Phosphodiesterase, MJ0936 family	0.0116583273998
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P63333	 Putative zinc metalloprotease SA1105	0.00597051433695
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P63333	 Putative zinc metalloprotease SA1105	0.00575841363976
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P00964	 Glutamine synthetase	0.0117177968764
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XT07	 BioX, putative	0.0117173057514
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Y2C2K5	 DNA gyrase subunit A	0.0117138131575
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q74LG0	 Xanthine uracil permease	0.0113985823408
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q74LG0	 Xanthine uracil permease	0.0003150433189
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKK1	 Transcriptional regulator, LuxR family	0.0117088754958
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D4M6I9		0.0116965130911
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQZ0		0.00727698235135
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQZ0		0.00413724929353
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B9C6	 Phospholipid glycerol acyltransferase	0.0116844142591
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQ74	 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	0.0116770938282
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3G1Y7	 Cadmium resistance transporter, putative	0.0116769763369
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YKU7	 Na+ dependent nucleoside transporter family protein	0.011676299732
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D3P377	 Simple sugar transport system permease protein	0.0116731689464
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9REZ0		0.00093198650593
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8VQK4	 Putative peptide transport system permease protein BruAb2_1031	0.0116695929135
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Z7FZL7	 MFS transporter, ACS family, glucarate transporter	0.0116691265024
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7X9S0	 Phosphosugar isomerase	0.0116615231662
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PLJ3		0.0106255041697
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XSP1		0.0116578111987
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N1K2	 ROK family protein	0.0116572655381
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7ZBN3		0.0115794976015
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q829X3	 UvrABC system protein A	0.00898437468957
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q829X3	 UvrABC system protein A	0.00243766626111
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q829X3	 UvrABC system protein A	0.000225386755442
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q83RN5	 Respiratory nitrate reductase 1 beta chain	0.00922414250969
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83RN5	 Respiratory nitrate reductase 1 beta chain	0.00186501557343
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q83RN5	 Respiratory nitrate reductase 1 beta chain	0.000495946293869
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HK21	 YycI protein	0.00984676644771
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HK21	 YycI protein	0.00179423729618
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89EZ8	 Outer membrane lipoprotein	0.0115839454368
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV99	 HipA domain containing protein	0.0104493426382
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P46050	 Ferredoxin 3	0.0116349644511
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0LVM3	 Fructose phosphotransferase system enzyme fruA homolog	0.011634639662
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S4X9U7	 LysR family HTH type transcriptional regulator	0.0116279022639
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV28	 DNA binding HTH domain containing proteins	0.0116228161566
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L8S8	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0116168074394
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U2Q5		0.0115251902991
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CR86		0.0116132003921
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q989G9	 Mlr6427 protein	0.0115785354126
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IR41		0.0116084759036
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F2MVP5	 L sorbosone dehydrogenase	0.0115979087322
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0CL53	 S glutathione dehydrogenase	0.00541201275759
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P0CL53	 S glutathione dehydrogenase	0.00415918051161
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0CL53	 S glutathione dehydrogenase	0.00202042286414
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K9Z2	 Glycosyltransferase stabilizing protein Gtf2	0.0115877054186
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9ZG89	 GTP binding protein EngB	0.01158333774
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YWJ9	 3 dehydroquinate dehydratase	0.0115630331758
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8NYT6		0.0115606503862
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QDI5		0.0099926120805
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QDI5		0.00156666885001
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YUI8	 Serine protein kinase RsbW	0.00637418276524
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YUI8	 Serine protein kinase RsbW	0.00476534153218
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L667	 Phosphatidylglycerol lysyltransferase	0.00735994871073
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L667	 Phosphatidylglycerol lysyltransferase	0.00419579745183
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X782	 Pyrrolidone carboxylate peptidase	0.0115168858743
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V5SBZ4	 Phosphonate ABC transporter substrate binding protein	0.0115449815011
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E1VBT7	 Na H(+) antiporter NhaD	0.0115368689946
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YV92		0.0115348173584
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5VW20	 Metal dependent transcriptional regulator	0.0108471286876
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C5VW20	 Metal dependent transcriptional regulator	0.0006846101382
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YAE9	 O succinylbenzoate synthase	0.0115219983879
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L783	 UPF0478 protein SH1183	0.00586408932774
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L783	 UPF0478 protein SH1183	0.0056533001921
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L7R6	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0115147386016
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7V8Z9		0.0115122768461
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WXA3		0.0114492041315
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QCT2		0.00600439557699
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QCT2		0.0055061234648
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J3N9	 Chemotaxis protein methyltransferase	0.0115080298093
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J4U2		0.010952371053
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5MZU4	 Uroporphyrinogen III C methyltransferase	0.0115006646668
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G2SQT2	 ABC transporter, ATP binding protein	0.011495075921
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNG0	 D alanine aminotransferase	0.011461192634
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H6PAQ2	 Transcriptional regulator,glutamine synthetase repressor	0.0114911624931
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM96		0.0114791756389
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_K0LAR2	 APC family amino acid polyamine organocation transporter	0.00765159354888
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0LAR2	 APC family amino acid polyamine organocation transporter	0.00382751133148
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2SLW2		0.0114762586711
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9FFE6	 Probable acyl activating enzyme 5, peroxisomal	0.010997907331
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9FFE6	 Probable acyl activating enzyme 5, peroxisomal	0.00046673323585
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CKK8	 UPF0310 protein SSA_0254	0.0114689376715
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WUC8	 HesA MoeB ThiF family protein	0.0114676610679
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FDU6	 Dehydrosqualene desaturase	0.0114635013068
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N1MTW2	 Zn dependent hydroxyacylglutathione hydrolase   Polysulfide binding protein	0.0114654643932
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45773	 Type II secretion system protein G	0.0114604065486
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNM7	 Ser Asp rich fibrinogen binding protein	0.0113983597556
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3I166	 Response regulator receiver protein	0.0114469541327
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1IS93	 DNA directed RNA polymerase subunit alpha	0.0114228638335
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HIG5	 Hypoxanthine guanine phosphoribosyltransferase	0.0114370665496
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28TC8	 Poly hydroxyalkanoic acid synthase class I	0.0114345488682
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q53135	 Chemotaxis protein CheA	0.011402484585
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRJ2	 3 oxoacyl  reductase, putative	0.0114233717134
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N355	 Periplasmic binding protein	0.00589635457519
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N355	 Periplasmic binding protein	0.00552696723389
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZTC0	 FecCD transporter	0.0114228468036
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XMS1	 High affinity iron permease	0.0114228268645
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49UM5	 Adenylyl sulfate kinase	0.0114136484765
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SIU1	 Primosomal protein DnaI	0.0114179715194
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HM58		0.00639938525407
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HM58		0.00501496780761
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YCL4		0.0113963067567
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_M1XK11	 SCCmec staphylococcal cassette region, isolate CMFT201	0.00633987115425
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_M1XK11	 SCCmec staphylococcal cassette region, isolate CMFT201	0.00506881877928
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P11663		0.0114076235642
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SE37		0.0114062031467
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKE6	 TonB dependent receptor protein	0.0113954639132
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q99UZ6	 UPF0637 protein SA0957	0.00660070721203
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99UZ6	 UPF0637 protein SA0957	0.00478563958559
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_N1MTR3	 Type I restriction modification system,specificity subunit S	0.00592375011152
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N1MTR3	 Type I restriction modification system,specificity subunit S	0.00545934536518
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KPX1	 Periplasmic binding protein LacI transcriptional regulator	0.0113815448013
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P19931	 Hydrogenase 1 operon protein HyaE	0.0113789435255
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2VKE4	 Cation acetate symporter ActP	0.0100043068083
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2VKE4	 Cation acetate symporter ActP	0.00129690199628
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2VKE4	 Cation acetate symporter ActP	7.30568506111e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C1C8M1	 Threonine  tRNA ligase	0.0050027322415
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C1C8M1	 Threonine  tRNA ligase	0.00324119644924
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C1C8M1	 Threonine  tRNA ligase	0.00298096444131
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C1C8M1	 Threonine  tRNA ligase	5.81928343254e-05
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q1WV73	 Ribosomal RNA small subunit methyltransferase A	0.00747197101507
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1WV73	 Ribosomal RNA small subunit methyltransferase A	0.00353670408158
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1WV73	 Ribosomal RNA small subunit methyltransferase A	0.000333017403754
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B7GJM7	 2 oxoglutarate ferredoxin oxidoreductase, beta subunit	0.0113680645984
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B0UDK8	 Light independent protochlorophyllide reductase iron sulfur ATP binding protein	0.0111770258207
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_X4Z848	 Short chain dehydrogenase family protein	0.0113607563038
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CR42		0.0113605727579
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B1HU19	 3 methyl 2 oxobutanoate hydroxymethyltransferase	0.0113512145532
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HS11		0.0113564784551
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AQ72	 Glycine betaine L proline ABC transporter, permease protein ProW 1	0.0113537182367
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C110	 ABC transporter ATP binding protein	0.0113511975131
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P45527		0.00736507179354
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45527		0.00398312699266
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C5Y5		0.0113469069338
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J074	 TRAP T family transporter, DctP  subunit	0.0113454379559
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5BPQ5	 RNA polymerase sigma factor RpoH	0.0113447834269
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89WR0	 Exodeoxyribonuclease III	0.0113436078267
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PR66	 NADH dehydrogenase (Quinone)	0.010976446243
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQG0	 Response regulator	0.011336297956
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FXR3	 Delta aminolevulinic acid dehydratase	0.0113146995017
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O49213	 GDP L fucose synthase 1	0.0113143928865
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89IP8	 Serine acetyltransferase	0.0113275503595
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E6MC83		0.0113267486778
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XR90	 Aminotransferase	0.0113260104166
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X0P1		0.0062122459943
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X0P1		0.0051100198801
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UJV7	 Aminopeptidase PepS	0.011321091936
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9RQQ0	 Biofilm operon icaADBC HTH type negative transcriptional regulator IcaR	0.0113174614597
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SHR5	 Chromosome  partitioning protein ParB   Stage 0 sporulation protein J	0.0113171804973
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G0AJ01	 ABC sugar transporter, periplasmic ligand binding protein	0.0113169803392
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C140	 OppC	0.0113159800641
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D7DKW7	 Short chain dehydrogenase reductase SDR	0.0113132925496
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4YYE1	 Universal stress protein	0.0113123946422
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS08		0.0113109896407
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WTB5		0.0113096932204
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QJ09		0.00601232588772
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QJ09		0.00529116807185
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89P06	 Blr3677 protein	0.0112996961603
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P455	 Transcriptional regulator, LysR family	0.0112977984986
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q65T94	 ARA1 protein	0.0112974896381
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KX11	 ABC branched chain amino acid transporter, inner membrane subunit	0.011296050036
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P39794	 PTS system trehalose specific EIIBC component	0.011287667139
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KNI7	 Transcriptional regulator MraZ	0.0112864216589
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIS2		0.0112831812394
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WSY4	 Transcriptional regulator, RpiR family	0.0112779700285
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J3F1	 NADH quinone oxidoreductase subunit H 1	0.0111529900605
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HFS0		0.0112736183539
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ANZ3	 Cytochrome b	0.011271548094
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L7G4	 Peroxide responsive repressor PerR	0.00654614901702
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L7G4	 Peroxide responsive repressor PerR	0.00472488461633
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKY5		0.0112649147712
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9WYT7	 Probable transcriptional regulatory protein TM_0466	0.0112529638585
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_K7ZDL1	 DeoC LacD aldolase family protein	0.0112522535942
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J229		0.0112468948315
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QF80	 Teichoic acid biosynthesis protein X	0.011238601682
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X9ZAP3		0.011157703346
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D8HI57	 Hydrolase, haloacid dehalogenase like family	0.00630665427493
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HI57	 Hydrolase, haloacid dehalogenase like family	0.00492757968824
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HM80		0.00848950898404
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HM80		0.00248179206051
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWN5	 ABC amino acid transporter, periplasmic ligand binding protein	0.0112246987079
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C3E8	 Myo inositol 1 monophosphatase	0.00602474135819
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C3E8	 Myo inositol 1 monophosphatase	0.00519661876225
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S5UDS6		0.0112182852835
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N6A8	 Primosomal protein DnaI	0.0112179687137
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5MYT2		0.0090212568973
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5MYT2		0.00219367564817
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J234		0.0112146282016
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IQI8		0.00709711181287
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5IQI8		0.00404614017933
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B7K4	 TRAP dicarboxylate transporter DctP subunit	0.0111967619416
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4X0A4	 HipA domain protein	0.0111944432142
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FWP1	 Phospholipase C	0.0111893586613
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_R0P3C6	 Acetyl coenzyme A carboxyl transferase alpha chain Propionyl CoA carboxylase beta chain	0.0111831791842
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B2RKJ1	 NAD specific glutamate dehydrogenase	0.00441831635582
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B2RKJ1	 NAD specific glutamate dehydrogenase	0.0036376841418
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2RKJ1	 NAD specific glutamate dehydrogenase	0.00207838998201
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B2RKJ1	 NAD specific glutamate dehydrogenase	0.000960229462783
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B2RKJ1	 NAD specific glutamate dehydrogenase	7.55722810999e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B3E717	 Elongation factor Ts	0.0111806512125
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1BBE0	 Alkylhydroperoxidase like protein, AhpD family	0.01117997135
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5URI8		0.0111779685437
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2T9Y7		0.0111766690639
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0BXH7	 Elongation factor P	0.0108416058044
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7WXZ6	 Putative N acetylmannosamine 6 phosphate 2 epimerase	0.0111701567044
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A0A023X9G2	 ABC transporter permease protein	0.011168115569
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28PP3	 Binding protein dependent transport systems inner membrane component	0.0111637240831
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LPC2	 tRNA modification GTPase MnmE	0.0111591452087
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKU1	 Arginine repressor	0.00903339486477
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HKU1	 Arginine repressor	0.00211867832237
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GER3	 Arginase	0.0111511966182
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P18156	 Glycerol uptake facilitator protein	0.0111492138557
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSL5		0.0111382889378
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZXN9	 Peptidase A24A	0.011136688331
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V705	 Poly glycerophosphotransferase family protein	0.0111326041236
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q1WQZ0	 Fructose 1,6 bisphosphatase class 3	0.0111300048324
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUE4		0.0111285187541
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J212	 Putative site specific recombinase	0.0111270395882
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI00005C7E8C	 hypothetical protein	0.0107726147877
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V6G8		0.0111159897634
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QCJ5	 ATP dependent RNA helicase YqfR	0.0111093920684
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QHV4	 Transcription repressor of sporulation, septation and degradation PaiA	0.0111032640266
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L978	 Diapolycopene oxygenase	0.0110914988192
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99R75	 Dehydrosqualene synthase	0.0110960089692
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3U834	 Class I fumarate hydratase	0.0110948533529
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2S5S6	 Threonine  tRNA ligase	0.0109696424943
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B2S5S6	 Threonine  tRNA ligase	7.00656263343e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99WV0	 Glycyl glycine endopeptidase LytM	0.0109989369633
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YSU1	 Teichoic acid biosynthesis protein	0.0110674891676
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WX47	 Heat shock protein DnaJ domain protein	0.0106738266523
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IQJ9		0.0110657099883
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q6Q272	 p hydroxyphenylacetate 3 hydroxylase, oxygenase component	0.01036707751
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI00037895ED	 hypothetical protein	0.00784002852057
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HS21	 Lipase, putative	0.011059355613
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P05448	 Putative L,D transpeptidase in ATP synthase subunits region ORF 5	0.0105415209781
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QH68	 TetR family regulatory protein	0.0110580672296
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L5S4	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0110577828709
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O32068		0.0110512427507
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9Z3R5	 Alpha glucosides binding periplasmic protein AglE	0.0110471907481
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9ZS97	 UPF0051 protein ABCI8, chloroplastic	0.0110449652705
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8HFF8	 Phospho 2 dehydro 3 deoxyheptonate aldolase	0.011044005203
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F2I852	 Oxidoreductase, FAD FMN binding protein	0.0109004412307
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F2I852	 Oxidoreductase, FAD FMN binding protein	0.00014240418554
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P43984		0.00685795218964
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P43984		0.00418125901777
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A9VTL7	 Nucleoid occlusion protein	0.0110392062828
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WSI1	 Mammalian cell entry related domain protein	0.0109921390003
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTY4	 Thiamine biosynthesis lipoprotein	0.0110373297491
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X6I5	 Fibronectin binding protein A	0.0110344747971
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM51	 Energy converting hydrogenase B, subunit C, EhbC	0.0110342971621
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2SII2	 Glycine  tRNA ligase alpha subunit	0.00773405104189
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2SII2	 Glycine  tRNA ligase alpha subunit	0.00216145355653
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2SII2	 Glycine  tRNA ligase alpha subunit	0.000769399138066
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2SII2	 Glycine  tRNA ligase alpha subunit	0.000350192418987
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42909	 N acetylgalactosamine specific phosphotransferase enzyme IIB component 1	0.0110312031704
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_K4H363	 Ribose ABC transporter, periplasmic ribose binding protein RbsB	0.0108416313394
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q0TRG3	 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.0110007079004
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KR73	 ABC sugar transporter, inner membrane subunit	0.0110147853677
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YCD5	 Fructokinase	0.0110146622498
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8HYX7	 ABC type branched chain amino acid transport ATPase component	0.0110112093908
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2NAF2	 Regulatory protein	0.0110005487935
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2JLI1	 Conjugal transfer protein, putative	0.0109980826906
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P94357	 UPF0750 membrane protein YxkD	0.0109882148925
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0TP75		0.0109720182822
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q167Y1	 Type II IV secretion system protein, TadC subfamily, putative	0.0109686236006
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X1E9	 Aspartate carbamoyltransferase	0.0109799217698
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3K0N4	 ABC transporter ATP binding protein	0.0109777678205
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y8Z5		0.00561161623508
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1Y8Z5		0.00536317746871
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_J7Q543		0.0107498378041
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WUL7	 Lipoprotein	0.00653748808731
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WUL7	 Lipoprotein	0.00435053746211
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FK78	 N acetyl gamma glutamyl phosphate reductase	0.0109634486319
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLM4	 Acetyltransferase, GNAT family	0.0109629296607
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQN2		0.0109620182266
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0LQD7	 Hydrolase	0.0109584719651
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8WCV6	 PTS system ascorbate specific transporter subunit IIC	0.0109555135148
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KRG8		0.0108449427543
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KNM4	 Urea amidolyase related protein	0.0109499528334
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CN53	 Antiholin like protein LrgB	0.0109432004911
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z171	 Iron  ABC superfamily ATP binding cassette transporter, membrane protein	0.0109394935723
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNN3	 Porphobilinogen deaminase	0.0109393136579
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GAW6	 Argininosuccinate lyase	0.0109076924843
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U2U0	 Permease	0.0109329208217
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_R4VP47	 Twin arginine translocation pathway signal	0.0109328426581
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LQ58	 Translation initiation factor IF 3	0.0109319701203
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWE2	 Integrase family protein	0.0109311113907
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z3H2	 TetR family transcriptional regulator	0.0109271720848
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2G1Q2	 1 phosphatidylinositol phosphodiesterase	0.0109239235548
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZSW5	 ABC transporter	0.0109226388993
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D2J655	 Replication initiation protein	0.00987764243887
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9Z3R6	 Alpha glucoside transport system permease protein AglF	0.0109191908169
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SKH8	 Sucrose 6 phosphate hydrolase	0.0109171097182
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKJ8	 Glycerol dehydrogenase	0.0109160401072
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IU13	 Transcriptional regulator, XRE family	0.00632034251442
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5IU13	 Transcriptional regulator, XRE family	0.00459535137125
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J9U7Y2		0.0109127645166
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P22256	 4 aminobutyrate aminotransferase GabT	0.00604678791205
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P22256	 4 aminobutyrate aminotransferase GabT	0.00480393500466
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CU42	 Carbamate kinase 2	0.00637113145351
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU42	 Carbamate kinase 2	0.00452478654164
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7DDI7	 Sec independent protein translocase protein TatC	0.0109051743492
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q931T2		0.00646697389192
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q931T2		0.00443696936996
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WTA8	 LysM domain containing protein	0.0109020698049
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2P7B9	 3 oxoacyl [acyl carrier protein] synthase 3	0.00666595315886
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2P7B9	 3 oxoacyl [acyl carrier protein] synthase 3	0.0041240987747
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P94328	 Cyclic pyranopterin monophosphate synthase accessory protein	0.0108842102234
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G7H4	 Pyrimidine nucleoside phosphorylase	0.0108785480241
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P69789	 Phosphotransferase enzyme IIB component GlvB	0.0108037087968
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P69789	 Phosphotransferase enzyme IIB component GlvB	7.61996736203e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J527		0.00797181356199
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LSK1	 Methionine synthase	0.0108632713237
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SPL1		0.0108626910485
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F8WKJ0		0.0108621966597
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPM3	 Pyruvate carboxylase	0.0105346727681
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8CPM3	 Pyruvate carboxylase	0.00032362730315
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8XU11	 Potassium transporting ATPase B chain	0.00899479351814
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8XU11	 Potassium transporting ATPase B chain	0.000950877181688
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q8XU11	 Potassium transporting ATPase B chain	0.000549507279067
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q8XU11	 Potassium transporting ATPase B chain	0.000352210684477
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FF48	 Potassium transporting ATPase A chain	0.0108504222391
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D4FNL7	 Ribonuclease R	0.0108518171501
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P39211	 Xylulose kinase	0.0108508911841
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U214	 Binding protein dependent transport systems inner membrane component	0.0108489201867
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRE0	 UPF0272 protein SERP0253	0.0108452541352
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8R9I8	 Secretory antigen SsaA	0.0108356276225
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QI48	 RND multidrug efflux transporter Acriflavin resistance protein	0.0108339932343
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1AZJ2	 UPF0173 metal dependent hydrolase Pden_0574	0.010833356134
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QHT5		0.00930209274894
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A6QHT5		0.00152655905841
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9KAF4	 BH2333 protein	0.00722209313236
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9KAF4	 BH2333 protein	0.00360562143555
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Z2CD30		0.0108191869292
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9FD71	 Hydroxymethylglutaryl CoA synthase	0.0107248597267
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKM6		0.0108242848137
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P46333	 Probable metabolite transport protein CsbC	0.0108237551949
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SE59	 Transcriptional regulator, GntR family	0.0108229263435
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1YD73	 Gluconate operon transcriptional repressor	0.0108214649545
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5ENW5	 ABC transporter family protein	0.0108160636465
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V322		0.0107950828503
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QGV6		0.0108032866435
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P73098	 Chaperone protein dnaK3	0.0108067831152
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P11901	 Transposase for insertion sequence element IS421	0.0107987531548
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5ITW6		0.0107924127987
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PFT3		0.00573731839696
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KPJ0	 Ribose phosphate pyrophosphokinase	0.00973240333631
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q732P6	 Isoprenyl transferase	0.00603563880878
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q732P6	 Isoprenyl transferase	0.00474740862093
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U3U4	 Nitrate sulfonate bicarbonate ABC transporter periplasmic ligand binding protein	0.0105878086203
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q65GF0	 UvrABC system protein C	0.0107752205799
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLA7	 Aldehyde dehydrogenase family protein	0.0107633103866
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P11959	 Dihydrolipoyl dehydrogenase	0.0107439347905
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V5X0C1	 Nitrate reductase	0.0107615129061
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GK28	 Protein EsaA	0.0107613203328
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P37171	 Hypoxanthine guanine phosphoribosyltransferase	0.0106610109362
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7DVV7	 Response regulator receiver	0.0107586806591
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMX2	 Dihydrolipoamide dehydrogenase	0.0107555671589
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J6K3	 TonB dependent, hydroxamate type ferrisiderophore, outer membrane receptor	0.0107487083262
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q21E72	 Phosphate import ATP binding protein PstB	0.00913593402256
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q21E72	 Phosphate import ATP binding protein PstB	0.000966503625263
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q21E72	 Phosphate import ATP binding protein PstB	0.000626553167431
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9JY98	 ABC transporter	0.0107331524919
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O31727	 UPF0001 protein YlmE	0.0107311339539
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQ24	 Glutamate racemase	0.0107305989516
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G5Z1	 Putative ABC transporter ATP binding protein SAS2569	0.0107293071796
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YTG8	 2 dehydropantoate 2 reductase	0.0107274330049
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5H330	 Glutamine synthetase	0.0107254990968
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9KXN9	 tRNA  ) methyltransferase	0.0107136341948
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J4T7		0.0106729084032
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FEK4	 Urease subunit beta	0.00791980040219
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FEK4	 Urease subunit beta	0.00252088933805
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H8XGR9		0.0107074991298
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J221	 Putative head portal protein	0.0107018604772
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QDH4		0.0106976998526
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7XW34	 30S ribosomal protein S1	0.010695020069
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRF9		0.0101203226328
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0A0E5	 Mercuric reductase	0.00687999066275
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0A0E5	 Mercuric reductase	0.00380568721471
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_M7XUL4	 NLPA lipoprotein	0.0106840793318
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49YA8		0.0106795455434
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D6SCK6	 ABC transporter, ATP binding protein	0.010678665253
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GCC9	 Efem EfeO family lipoprotein	0.0106708599355
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F4AWZ4	 Acetyl CoA acetyltransferase	0.0106575167324
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D7A1G5	 CoA binding domain protein	0.0106549922776
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C6AZB2	 Inner membrane translocator	0.0106543906962
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FF06	 Putative aldehyde dehydrogenase SAUSA300_2076	0.0106537784084
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4EX96	 HTH type transcriptional regulator BetI	0.0106531362298
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y6Z9	 Transcription antiterminator, BglG family	0.010639395141
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GK25	 Protein EssB	0.0106388783786
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F2JYP7	 ABC type transporter, integral membrane subunit	0.0106375638703
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H6LRG1		0.0105813671088
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRR5		0.0106333592144
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0BS24	 Acetolactate synthase small subunit	0.0106315736013
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SRN3		0.0106247190529
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7WYY0	 Molecular chaperone Hsp31 and glyoxalase 3	0.0100746050293
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A7WYY0	 Molecular chaperone Hsp31 and glyoxalase 3	0.000548645747453
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89UV8	 Immunogenic protein	0.00881171122344
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q89UV8	 Immunogenic protein	0.00170669200061
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J233		0.0105897366
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q47BM0	 Argininosuccinate synthase	0.0100305043123
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q47BM0	 Argininosuccinate synthase	0.000582565064718
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6TYC4		0.0102690955334
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N0Q7	 Transition metal uptake transporter, Ni2+ Co2+ transporter  family	0.0106144646321
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F8HYA2	 Nucleoside permease	0.0106137354909
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P51763	 Reaction center protein M chain	0.0106092393408
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P81177	 Zinc metalloproteinase aureolysin	0.0106087304158
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N340		0.0104314782984
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P46322	 CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.00976647988831
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P46322	 CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.000834417913644
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5MZ71	 PIN domain protein	0.0105992752497
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q03UC7	 50S ribosomal protein L9	0.00549528482536
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q03UC7	 50S ribosomal protein L9	0.00510272525063
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C1KVB2	 Endoribonuclease YbeY	0.00551262358105
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C1KVB2	 Endoribonuclease YbeY	0.00508045122172
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI000308ED7E	 hypothetical protein	0.010191013248
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8AFT7		0.0103030625899
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XRT4	 Competence protein ComGF, putative	0.0104565253025
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RDD4		0.0105715693376
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P21883	 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	0.0105619454802
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E6TY02	 Binding protein dependent transport systems inner membrane component	0.0105641383268
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P29968	 Putative dehydrogenase XoxF	0.0105542333277
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNB7	 Phosphoenolpyruvate carboxykinase [ATP]	0.0105460845287
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49Y11	 Cytidine deaminase	0.00558253486666
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49Y11	 Cytidine deaminase	0.0049718496916
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P64309	 Non canonical purine NTP pyrophosphatase	0.010514942746
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A9W4X6	 Sulfite reductase [NADPH] hemoprotein beta component	0.010547558621
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L9R4	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0105473853867
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1AYY0	 Phage portal protein, HK97 family	0.0105119622079
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5DWG5	 ABC 2 transporter family protein	0.0104188903319
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_X5DWG5	 ABC 2 transporter family protein	0.000110464515918
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GC59	 Exotoxin	0.0105353655118
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQI0	 RepB plasmid partition	0.0105113964307
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SGS1		0.00955448940715
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SGS1		0.000975133362152
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0C5Z7	 Transcription termination factor NusA	0.0105295188123
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKG6	 Diacetyl reductase [ acetoin forming]	0.0105257496069
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9F1K0	 DNA polymerase III subunit alpha	0.0105213772601
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSX1		0.0104663985647
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8VQS9	 MntC	0.0105204339885
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5KX81	 Octanoyltransferase LipM	0.010497752788
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6IN07	 DNA directed RNA polymerase subunit omega	0.0104927058536
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8EQK9	 GTP cyclohydrolase FolE2	0.0105023666133
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WW77	 Ribosome maturation factor RimP	0.0104952831711
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CN93	 Membrane protein	0.0104729757092
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_V5TWY7	 PTS system glucose specific transporter subunit IICBA	0.0104904252645
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P77316		0.00670804971711
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77316		0.0036508630862
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P77316		0.000120771013817
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F0T8W8		0.0104838521983
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9E8P7		0.0104833764681
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T4Q5	 Transcriptional regulator	0.0104829968225
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6TXF8	 Histidine ammonia lyase	0.0104674347747
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B092		0.0104619254596
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E6U995	 Binding protein dependent transport systems inner membrane component	0.0104718982588
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P5S5	 Accessory Sec system protein translocase subunit SecY2	0.0104694672948
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49V41	 Putative TrmH family tRNA rRNA methyltransferase	0.0104679285507
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KN81	 Alpha amylase, catalytic region	0.010466425293
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GEN7	 Tagatose 1,6 diphosphate aldolase	0.0104397224221
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28NP7	 Outer membrane protein assembly factor BamD	0.0104616910525
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKU8	 CapA related protein	0.0104598716057
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J4T8		0.0104570497345
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X0H4	 Argininosuccinate lyase	0.0104225599004
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PR59	 Flavin reductase domain protein, FMN binding	0.0104492875353
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQZ2	 ABC transporter 	0.0104467954065
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0L036	 Formate dehydrogenase	0.0104431113048
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A0A034SNG1	 3 methyladenine DNA glycosylase	0.0104416684879
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GJ94	 Putative long chain fatty acid CoA ligase VraA	0.0104375670134
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WYU6		0.0104369055382
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N0Z4	 Siderophore biosynthesis protein, IucA IucC family	0.0104365176482
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZRG1	 AraC family transcriptional regulator, putative	0.0104297804495
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P74241	 Sulfate adenylyltransferase	0.0103614435659
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GTK0	 NADH quinone oxidoreductase subunit D	0.0103980197479
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQM9	 Ribosomal protein serine N acetyltransferase	0.0104227754495
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZS06	 AraC family regulatory protein	0.0104223799277
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N0Y3		0.0104180767958
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WU68	 Precorrin 2 dehydrogenase	0.00750885914747
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WU68	 Precorrin 2 dehydrogenase	0.00290766631653
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JD71		0.0104015531511
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X154	 Probable heme iron transport system permease protein IsdF	0.010398347544
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4XKS9	 Bifunctional protein PyrR	0.0103584300303
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0A023X460	 hypoxanthine phosphoribosyltransferase	0.0103943973082
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNS8	 Sortase	0.0103924748542
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O34591	2,6 dichlorophenolindophenol oxidoreductase subunit beta	0.0100125932926
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O34591	2,6 dichlorophenolindophenol oxidoreductase subunit beta	0.00037256042308
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q168P4	 GTP cyclohydrolase FolE2	0.0102288520058
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVS1		0.0103879284379
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E4TMS6	 Beta Ig H3 fasciclin	0.0103645679204
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A017XC98		0.0103818196874
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IVA9		0.0103449229298
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WU63		0.0103786188133
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P42506		0.00951725979652
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G7S7S5	 Phosphate specific transport system accessory protein PhoU	0.0102076140559
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G7S7S5	 Phosphate specific transport system accessory protein PhoU	0.000168274279255
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O07319	 Transcriptional regulator MraZ	0.00630116466935
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O07319	 Transcriptional regulator MraZ	0.00383158472798
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O07319	 Transcriptional regulator MraZ	0.000236450977871
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKM7	 Protein disulfide isomerase, thioredoxin related	0.0103654590537
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQY5		0.0103612950521
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3EHQ7	 ABC transporter related protein	0.0103594661729
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZUM9		0.00990496749863
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q88VE3	 Probable GTP binding protein EngB	0.0060185630111
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q88VE3	 Probable GTP binding protein EngB	0.00409020953135
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q88VE3	 Probable GTP binding protein EngB	0.000245655882116
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMW6	 IS605 IS200 like transposase	0.0103488391244
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q71ZB6	 Valine  tRNA ligase	0.0103397410634
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64484		0.0103476176319
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P52041	 3 hydroxybutyryl CoA dehydrogenase	0.0103323851371
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P9WGC6	 Succinyl CoA ligase [ADP forming] subunit alpha	0.00478085868842
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P9WGC6	 Succinyl CoA ligase [ADP forming] subunit alpha	0.00246492243269
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P9WGC6	 Succinyl CoA ligase [ADP forming] subunit alpha	0.00135877249533
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P9WGC6	 Succinyl CoA ligase [ADP forming] subunit alpha	0.00133468445677
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P9WGC6	 Succinyl CoA ligase [ADP forming] subunit alpha	0.000389028747605
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTA4	 Probable cysteine desulfurase	0.00961322649836
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8CTA4	 Probable cysteine desulfurase	0.000694764719843
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QGU6	 Cystathionine gamma lyase	0.0103361677394
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GFS7	 RNA polymerase sigma factor SigS	0.0103280334157
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X5U0	 Formimidoylglutamase	0.0103273596498
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N5CGV2	 Transcriptional regulator	0.0103215200398
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XSM0	 Cell shape determinant MreD	0.00569259186441
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1XSM0	 Cell shape determinant MreD	0.00462892670378
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PH43	 Cell wall hydrolase, SleB	0.0103210895016
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C0MHK2	 Phosphoglycerate mutase family protein	0.00868406367288
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C0MHK2	 Phosphoglycerate mutase family protein	0.00163508052616
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMX9	 Anaerobic dicarboxylate transport	0.0103161909748
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G6T1	 MerR family regulatory protein	0.0103161292418
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C7M3	 Transporter, drug metabolite exporter family	0.010313170348
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0DKR8	 Spermidine N acetyltransferase	0.0101330047742
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GGG1	 Shikimate kinase	0.0102562533104
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L4Y2	 ATP dependent helicase deoxyribonuclease subunit B	0.010274539088
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZU12	 Membrane protein	0.0103022208563
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QJ12	 ABC transporter ecsA	0.0102999454019
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P98008	 Nitric oxide reductase subunit B	0.0096925436012
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P98008	 Nitric oxide reductase subunit B	0.000546230005066
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49VL2		0.00524183646958
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49VL2		0.0050509119918
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P67641	 UPF0735 ACT domain containing protein SA1469	0.00547851016735
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P67641	 UPF0735 ACT domain containing protein SA1469	0.00480904624695
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FFH9	 Sodium dependent dicarboxylate transporter SdcS	0.0102799511046
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B5H7E3	 ABC transporter ATP binding protein	0.0102774639147
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HL74	 Abortive infection family protein	0.0102735057734
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3TMH1	 Chloride channel protein	0.0100322904357
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_U3TMH1	 Chloride channel protein	0.000227699309071
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D6ZZK2	 Sulfate ABC transporter, periplasmic sulfate binding protein	0.0102591921736
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C7F8	 Aminobenzoyl glutamate transport protein	0.0102580713578
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IRE1	 SNARE associated Golgi protein	0.00553820355594
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5IRE1	 SNARE associated Golgi protein	0.00471025884853
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3JD05	 Spermidine N acetyltransferase	0.00897947683872
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3JD05	 Spermidine N acetyltransferase	0.00126496671488
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P42199	 L cystine binding protein TcyA	0.0102436220777
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N1M3	 Glyoxalase family protein	0.0101888965733
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98BM2	 ABC transporter, periplasmic oligopeptide binding protein	0.0102414717286
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A4IR80	 Alanine  tRNA ligase	0.01024073124
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U3NFX9	 ABC transporter ATP binding protein	0.0102353300461
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B0K5G6	 50S ribosomal protein L10	0.0102274398674
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJG3	 Outer membrane protein assembly factor BamA	0.0102256183737
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0BUK0	 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	0.00584586923378
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0BUK0	 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	0.00357174158041
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0BUK0	 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	0.000799185286166
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRL1		0.0102190652413
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QDJ4		0.0102178213488
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0CZ58	 Fructose bisphosphate aldolase	0.00875600563036
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P0CZ58	 Fructose bisphosphate aldolase	0.00116114699048
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0CZ58	 Fructose bisphosphate aldolase	0.000226886668651
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FAF0		0.0102155424323
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QDY9		0.010207909043
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N0Y7	 Iron chelate uptake ABC transporter, FeCT family, permease protein	0.0102057316864
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5ISU2		0.0102025677556
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I3U2F8	sodium  symporter	0.0102000248311
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C6W8	 Staphylococcal accessory regulator	0.0101999958735
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S4X9L5	 2 oxoglutarate ferredoxin oxidoreductase subunit beta	0.0101997911
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTZ4	 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.0101938520621
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4X0K2		0.00979523235248
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRJ5	 Teichoic acid biosynthesis protein, putative	0.0101919276015
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V6YJ87	 Membrane protein	0.0091565372312
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M0P1	 Gifsy 1 prophage protein	0.010183252148
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9JV31		0.0101708015459
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR73	 Transcriptional regulator, AraC family	0.0101756700505
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8DJT3	 Phosphorylase family	0.0101715736713
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q88Z97	 Methionine  tRNA ligase	0.0101553687835
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E2QLB6	 C4 dicarboxylate binding periplasmicprote in	0.010169245429
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2LUP9	 Bifunctional protein FolD	0.0101618802529
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L842	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0101600467714
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8UZW2	 Glycerophosphoryl diester phosphodiesterase family protein	0.0101561940664
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SJW5	 Membrane protein, putative	0.00609706102311
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SJW5	 Membrane protein, putative	0.00401710647261
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q02431	 Chlorophyllide reductase 35.5 kDa chain	0.00876392584319
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R7DZG1	 tRNA specific adenosine deaminase	0.010142117168
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L9F7	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0101408963524
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R9CBE2	 Phosphoglyceromutase	0.0101395358215
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P9WPD4	 Citrate synthase 1	0.00879039160168
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P9WPD4	 Citrate synthase 1	0.00115763273446
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P9WPD4	 Citrate synthase 1	0.000173500910368
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SGD2	 Histidinol phosphate aminotransferase	0.0101359654956
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P34918	 Glyceraldehyde 3 phosphate dehydrogenase 3	0.0100200996557
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X6Y1	 L lactate dehydrogenase 2	0.0101314145336
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B5ZA76	 Peptidoglycan deacetylase	0.00968387392923
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B5ZA76	 Peptidoglycan deacetylase	0.000279956499069
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SDT2	 PTS system, glucose subfamily, IIA component	0.0101282477102
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P05648	 Chromosomal replication initiator protein DnaA	0.0101248914814
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L4Y4		0.0101213328743
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMQ9	 Integrase like protein	0.0101190058611
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F4FMY2	 Group 2 glycosyl transferase	0.0101175413536
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F4EI16	 Acetolactate synthase  (Large subunit)	0.0101167058889
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1XU00		0.00871961859667
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XU00		0.00139575676065
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99W47	 Serine aspartate repeat containing protein D	0.0101146673308
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2YAA3	 NADH quinone oxidoreductase subunit C D	0.0099905998741
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q2YAA3	 NADH quinone oxidoreductase subunit C D	0.000113220789427
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C7ZSD0	 GtrA family protein	0.00902347737489
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZSD0	 GtrA family protein	0.00108396479951
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J220	 Phage terminase like protein, large subunit	0.0099604770017
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0C0R2	 HTH type transcriptional regulator SarS	0.0101039870238
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28912	 H repeat associated protein YhhI	0.0101037162046
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RJ27		0.0100964567551
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C5G1		0.0100668249129
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2NAM2	 Transcriptional regulator	0.0100939831829
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C160	 Glycerophosphodiester phosphodiesterase	0.0100936074352
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4A9R7	 PRD domain protein	0.0100914547113
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PLE1		0.00979448902713
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FWK2	 3 isopropylmalate dehydrogenase	0.0100369195991
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0RJK0	 Malate dehydrogenase	0.00961736965778
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0RJK0	 Malate dehydrogenase	0.000469681751327
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVR0		0.00981290725344
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7DYY9	 Cell division protein ftsW	0.0100826289535
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMV9	 Succinyl diaminopimelate desuccinylase	0.010082460848
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJB9	 ABC transporter related	0.0100786655735
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1Y6A6	 Periplasmic nitrate reductase	0.00951873122098
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1Y6A6	 Periplasmic nitrate reductase	0.000547021334512
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99VJ2	 Extracellular matrix protein binding protein emp	0.0100764242019
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2YKR5	 sn glycerol 3 phosphate binding periplasmic protein UgpB	0.0100763632677
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9WST0	 Phage terminase like protein, large subunit	0.0100685745827
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q163E0	 AzlC family protein	0.0100088521945
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98I23	 Putative phosphoribosylaminoimidazole succinocarboxamide synthase 2	0.0100235080918
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LNW6	 Bacterial type II III secretion system protein	0.0100578092815
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q13RB8	 Xylose isomerase	0.010041424205
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P22874	 Mercuric resistance operon regulatory protein	0.00961511908508
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P22874	 Mercuric resistance operon regulatory protein	0.000435192101515
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZTM6	 Capsular polysaccharide synthesis enzyme	0.0100484474311
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_V4YS06		0.0100415420719
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B2UX43	 Chromosomal replication initiator protein DnaA	0.00955154941871
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2UX43	 Chromosomal replication initiator protein DnaA	0.000489420132521
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F2KIT5	 Glycine betaine ABC transporter, ATP binding component	0.0100392565728
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0JFL4	 BioY family protein	0.0100378019448
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P60238	 F420 non reducing hydrogenase iron sulfur subunit D	0.0100300738868
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YDR0	 Transcriptional regulator, MerR family protein	0.0100299521673
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7DVA3		0.00999056895559
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C0P4G8		0.0100294717777
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV95		0.00534001958313
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P0AFU1	 Inner membrane ABC transporter permease protein YejB	0.00691462570259
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFU1	 Inner membrane ABC transporter permease protein YejB	0.00221211597867
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AFU1	 Inner membrane ABC transporter permease protein YejB	0.000899550145075
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H6LQV6		0.010015364333
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R5JER5	 RelA SpoT domain protein	0.0100202303531
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G956	 Maltose operon transcriptional repressor	0.0100190659558
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G5JW97	 Competence specific sigma factor ComX	0.0100117392192
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QIV7	 Immunodominant antigen B	0.0100105338098
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y6NBB6		0.0100104571681
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A0A023NRD3		0.0100056038554
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G0LQ11	 ABC transport system, ATP binding protein	0.0100052941326
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U3QR56	 ABC transporter permease	0.0100020232721
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9JJI7	 Taurine uptake ABC transporter	0.00999673363563
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X0A3		0.00999664824295
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B1HUK4	 Alanine  tRNA ligase	0.00999498898644
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O05220		0.00999480587179
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_X4ZX80		0.00999007460807
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CR64		0.00998560060477
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WQD3	 Glutathione dependent formaldehyde activating, GFA	0.00998540590801
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SG33	 Chromosome partition protein Smc	0.00998453782619
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNU4	 Proline dehydrohenase like protein	0.00998421682202
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P21801	 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial	0.0099606982896
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2G260		0.00997882634436
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0AKG2	 Two component transcriptional regulator, winged helix family	0.00997651347729
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_W1WH34		0.0093077813003
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q16AI7	 Signal peptidase I, putative	0.00997164797896
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QDV1		0.0099697172906
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y598	 Transporter, drug metabolite exporter family protein	0.00996953928107
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1M3		0.00980690761311
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLE0	 Polyphosphate kinase	0.00995800575829
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IR30		0.00995703893989
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3TXU6	 TRAP type bacterial extracellular solute binding protein	0.00995096106819
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F0J4U6		0.00994878782517
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNN0	 Probable GTP binding protein EngB	0.00994559752623
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HP94	 Holliday junction resolvase RecU	0.00993864329144
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9CEU9	 GGDEF family protein	0.0097513395241
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A9CEU9	 GGDEF family protein	0.0001851686381
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QI46		0.00992518620471
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C4W8W1	 Pyruvate carboxylase	0.00993289810255
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SVV6	apo citrate lyase	0.00992907232954
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FYR2	 Aminoacyltransferase FemA	0.00651408776667
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FYR2	 Aminoacyltransferase FemA	0.00341396602238
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U4PWQ9	 DNA gyrase subunit A	0.00992658727177
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CT75		0.00959761069241
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C1KWF9	 Peptide methionine sulfoxide reductase MsrA	0.0099232476655
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q3XXT3	 Amino acid permease associated region	0.00991852807122
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L8E8	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0099175353474
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9JY93	 Peptide chain release factor 1	0.00923481831275
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9JY93	 Peptide chain release factor 1	0.000309209880084
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q9JY93	 Peptide chain release factor 1	0.000253448747291
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JY93	 Peptide chain release factor 1	0.000118503013559
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PL07	 Isopentenyl diphosphate Delta isomerase	0.00857238380062
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8HYF7	 Lon protease	0.00988946588391
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89W19	 Partitioning protein	0.00974280186659
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SH67	 Zn peptidase with DNA binding domain	0.00989893742476
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q81V80	 Putative pyridoxal phosphate dependent acyltransferase	0.00989890782823
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVA5	 Aldo keto reductase	0.00989696649188
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5CRQ8	 TRAP dicarboxylate transporter, DctP subunit	0.00988797920849
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1WG09	 Binding protein dependent transport systems inner membrane component	0.00988728389866
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQB3	 Inosine uridine preferring nucleoside hydrolase family protein	0.00988698132522
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B8CX69	 Predicted ATPase of the ABC class	0.0098864338494
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D0LJQ7	 Extracellular solute binding protein family 1	0.00988520206457
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WVF5	 L malyl CoA beta methylmalyl CoA lyase	0.00892763969695
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C8WVN6	 Transcriptional regulator, ArsR family	0.00941796527124
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C8WVN6	 Transcriptional regulator, ArsR family	0.000465274504846
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q52812	 General L amino acid binding periplasmic protein AapJ	0.00953483861383
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q52812	 General L amino acid binding periplasmic protein AapJ	0.000348277597693
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O84917	 Ribulose bisphosphate carboxylase	0.00988208909086
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNS6	 Secretory antigen SsaA like protein	0.00988104244234
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N0X8	 Na Pi cotransporter II like protein	0.00988070810348
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DIP6	 Pseudouridine synthase	0.00603080457751
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DIP6	 Pseudouridine synthase	0.00384543194841
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZPE9	 LPXTG surface protein	0.00987229633686
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5BS21	 Surface presentation of antigens  protein	0.00986845643358
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QEQ6	 Para aminobenzoate synthase, amidotransferase component PabAb	0.00986273366546
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QF95		0.00985922729801
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HL38		0.00985049431107
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1M8V2	 ABC nitrate sulfonate bicarbonate transporter family, periplasmic substrate binding protein	0.00985013309583
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RHP8	 Enterotoxin family protein	0.00984891823814
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99TF2	 Acetate kinase	0.00984536080888
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J231		0.00968465726413
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q89BK7	 Phosphoenolpyruvate carboxykinase [ATP]	0.0097820139961
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5S5I1	 Alcohol dehydrogenase iron type protein	0.00983794285418
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6T8U6		0.00929222298063
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KN35	 Tyrosine recombinase	0.00982074347653
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P37478	 Transcriptional regulatory protein YycF	0.00982041130511
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J615		0.00980959105839
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2G222	 N acetylmuramoyl L alanine amidase domain containing protein SAOUHSC_02979	0.00980898535016
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H0B2B9		0.00980505706954
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E1UN96	 Acetoin utilization protein AcuA	0.00980496822528
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X0T7		0.00519855546358
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X0T7		0.00460307719431
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FHR7	 Carbamate kinase 1	0.0097765126122
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N256	 Bacteriocin, lactococcin 972 family	0.00925223101851
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV77	 TPR repeat containing Spindly family protein	0.0097849943017
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P68799	 Fibrinogen binding protein	0.00978342375696
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACS3	 Redox sensitive transcriptional activator SoxR	0.00977290608915
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8RA51	 Exotoxin 15	0.00976626592247
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4YYR0	 Phosphoglycerate mutase	0.00932171533192
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M4YYR0	 Phosphoglycerate mutase	0.000441976365008
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A5IGK7	 L threonine 3 dehydrogenase	0.0078924383028
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5IGK7	 L threonine 3 dehydrogenase	0.00170760161493
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_A5IGK7	 L threonine 3 dehydrogenase	0.000119484695331
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YCF9		0.00975746334795
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZTK0		0.0097572268412
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HM43	 Alcohol dehydrogenase, zinc containing	0.00975527403381
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8AWA2	 ATPase like protein	0.00970818513325
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L8N9	 Multidrug export protein MepA	0.00974985894504
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GI89	 Tryptophan  tRNA ligase	0.00974762345764
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1K1C0	 Recombinase	0.00974366700419
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P51007	 Transcriptional activator protein FnrL	0.00973965704744
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N353		0.00959423518806
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1R2	 Alpha keto acid binding periplasmic protein TakP	0.00973367255591
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D7G5T9	 ABC transporter ATP binding protein	0.00973350800557
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PLB3		0.00958809132076
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QDY3		0.00972588406416
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49YT7	 Ferritin	0.0097252855213
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPT4	 3 oxoacyl [acyl carrier protein] synthase 3 protein 1	0.00937553296924
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PP96	 TonB dependent siderophore receptor	0.00972057193572
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0DAK7	 UDP glucose GDP mannose dehydrogenase family protein	0.00971587063017
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O05267	 NADH dehydrogenase like protein YumB	0.00971214195993
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P387	 Signal peptidase I	0.00971025679227
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B4RGD5	 Patch repair protein	0.0097101569922
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVS4		0.00948069220741
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P33770	 Coproporphyrinogen III oxidase, anaerobic 1	0.009678196275
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KR17	 CrpK, Fnr type transcriptional regulator	0.00970257801681
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L9U1	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00970022763163
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HH87	 Regulatory protein Spx	0.00602123160955
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HH87	 Regulatory protein Spx	0.00246625277676
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5HH87	 Regulatory protein Spx	0.00121158469971
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GKH0	 AMP dependent synthetase and ligase	0.00969894065734
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C5E5		0.00969711018576
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZJI0	 Tail fiber assembly protein	0.00968660532172
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_K2HP40	 Protein translocase subunit SecA	0.00968581100208
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUK2		0.00968560042704
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5APQ0		0.00844547763704
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HN24	 UPF0316 protein SERP1448	0.0096807042433
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2G4L5	 20S proteasome, A and B subunits	0.00968037388023
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRZ7		0.00967933170641
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FHD9	 Glycerol kinase	0.00835286762793
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2FHD9	 Glycerol kinase	0.00122322095746
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2FHD9	 Glycerol kinase	7.25841607162e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YQ76	 Thioesterase superfamily protein	0.00967726168698
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IZ91	 Crotonyl CoA reductase	0.00887268893171
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRY9		0.00967349471764
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_UPI00037472A8	 hypothetical protein	0.00960895063451
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QF29	 ABC transporter 	0.00966777637163
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G9Y4	 Phosphate acyltransferase	0.00959257072584
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HF61	 Probable thiol peroxidase	0.00966045970634
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6IYF9	 NAD dependent epimerase	0.00965782223838
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GIE6	 Binding protein dependent transport systems inner membrane component	0.00965732118985
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B6YWH0	 Glyoxylate reductase	0.0096545818791
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0F9K3		0.00939652004823
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F7Z665	 D 3 phosphoglycerate dehydrogenase	0.00965128970566
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P26396	 Glucose 1 phosphate cytidylyltransferase	0.00943930487727
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8NWC6		0.00963962247272
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QIH4		0.00963430061949
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HFU7	 30S ribosomal protein S1	0.004817026824
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HFU7	 30S ribosomal protein S1	0.00481634565203
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UIZ0	 2 oxoisovalerate dehydrogenase E1 component alpha subunit	0.00963254089142
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P07001	 NAD transhydrogenase subunit alpha	0.00626554674279
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P07001	 NAD transhydrogenase subunit alpha	0.00329435074884
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P07001	 NAD transhydrogenase subunit alpha	6.69526310046e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P52878	 Phosphoserine aminotransferase	0.00958932071785
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZUX9	 Exported protein	0.00962074452826
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V268	 Short chain dehydrogenase family protein	0.00961892684335
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6STB3		0.00961732934203
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPS7	 Transcription factor	0.00961665694761
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F8IRL8	 Phosphate starvation inducible protein PhoH	0.00960614990554
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KRV4	 Outer membrane protein	0.00959686822863
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_K0PFX8	 Group 1 glycosyl transferase	0.00959510753759
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZLK6	 Galactosyl transferase	0.00959475927729
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WPB6	 Orotate phosphoribosyltransferase	0.00941991202967
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW03	 Carbohydrate ABC transporter membrane protein 2, CUT1 family	0.00959048338216
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GCR4	 FMN dependent NADH azoreductase	0.00959042708832
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89L00	 Serine  tRNA ligase	0.00959015855305
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q45592	 Probable peptide export permease protein YydJ	0.0095901195082
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KM23	 Trk system potassium uptake protein	0.00958224307251
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KRF9	 Electron transport protein SCO1 SenC	0.00933638091923
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IUJ4	 DNA mismatch repair protein MutS domain protein	0.00957752157667
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C7R8	 Short chain dehydrogenase	0.00957617626321
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GER8	 Mannitol 1 phosphate 5 dehydrogenase	0.0094501382726
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B5R9D9	 Probable L ascorbate 6 phosphate lactonase UlaG	0.00703758215432
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5R9D9	 Probable L ascorbate 6 phosphate lactonase UlaG	0.00253386642821
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2RP22	 Dual specificity RNA methyltransferase RlmN	0.00954147624925
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q4WWN8	 Sulfate adenylyltransferase	0.00945814182583
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3UFE6	 Saccharopine dehydrogenase	0.00956367565474
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O67876	 Delta aminolevulinic acid dehydratase	0.0094166464144
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DJF9	 Phage integrase	0.00955916373453
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y7R5	 Exotoxin	0.00955777390351
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q30UY1		0.00954015216938
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QG17	 Transporter, LysE family	0.00682412654697
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QG17	 Transporter, LysE family	0.00273059599749
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0AK81	 Ferric uptake regulator, Fur family	0.00955413189088
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Z6NK79	 ABC transporter, permease	0.00952585578974
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57SA8	 7 cyano 7 deazaguanine synthase	0.0048864967998
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q57SA8	 7 cyano 7 deazaguanine synthase	0.00461705650809
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPF5	 Competence damage inducible protein cinA	0.00955027165747
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C5I2	 EcsB	0.00954966586299
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P29930	 Cobyrinic acid a,c diamide adenosyltransferase	0.00914212211606
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q7A363	 Accessory Sec system protein translocase subunit SecY2	0.00954190527646
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O66113	 Pyruvate dehydrogenase E1 component subunit beta	0.00953875302837
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU34	 ABC transporter 	0.00953689668326
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77656		0.00953621184314
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y784	 CDP glycerol glycerophosphotransferase	0.00952161322369
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49UP4	 UPF0753 protein SSP2379	0.00951029449492
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q65GR3	 Histidine  tRNA ligase	0.00949576316852
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C0H3V2	 Mannitol specific phosphotransferase enzyme IIA component	0.00950815993706
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X0A2		0.00950511610162
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPH6	 Prephenate dehydrogenase	0.00948798269405
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HM71	 Lytic regulatory protein, putative	0.00950315071679
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_K8FGY8	 DUF2188 family protein	0.00949699293752
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P67109	 UPF0042 nucleotide binding protein SA0720	0.00948921905353
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D7A1Q0	 Arginine ornithine antiporter	0.00541986381125
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D7A1Q0	 Arginine ornithine antiporter	0.00405917143621
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YBW3	 ABC transporter ATP binding and permease protein	0.00947766201952
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L8U4	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00947672133237
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5E2U4		0.0094754568936
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C7C9	 dTDP glucose 4,6 dehydratase	0.00947200773814
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QFZ0	 Penicillin amidase V	0.00946850308772
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKN0	 UPF0312 protein SERP2314	0.00946511485583
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0UP49		0.00946501406535
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28MM7	 Phosphorylase	0.0094615864651
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNU8	 5 methylthioadenosine S adenosylhomocysteine nucleosidase	0.00945778169008
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CSF5		0.00693799384768
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSF5		0.00251952710442
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGL5	 Ribosome association toxin RatA	0.00945681107722
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5IW55	 Transcriptional regulator, MarR family	0.00614270066509
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IW55	 Transcriptional regulator, MarR family	0.00331285209636
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HRH0	 Putative proline betaine transporter	0.00945444546386
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7WYP0	 Ribosomal RNA small subunit methyltransferase A	0.00942520216031
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O33405	 Uptake hydrogenase small subunit	0.00921369703225
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GIN0	 Prolipoprotein diacylglyceryl transferase	0.0067448052452
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q6GIN0	 Prolipoprotein diacylglyceryl transferase	0.00266692879371
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8AQN0		0.00925219451151
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GGZ6	 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	0.00944091929124
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CR74		0.00944267805088
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F8KHK9	 Response regulator protein	0.00944048240381
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J228	 Putative endonuclease	0.00943811239098
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRW9		0.00943744267162
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTL9		0.00719025717946
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNN6	 Polysaccharide biosynthesis protein CapD	0.00943658366693
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8RE63	 ABC transporter ATP binding protein	0.00943293008457
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J3M8	maltose 1 phosphate maltosyltransferase	0.00939910930606
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HL47		0.00942728119056
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9RFD3	 Anaerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase	0.00937354320319
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LKL8	 AFG1 family ATPase	0.00942690196505
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P92549	 ATP synthase subunit alpha, mitochondrial	0.00789806958374
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P92549	 ATP synthase subunit alpha, mitochondrial	0.00079821751402
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P92549	 ATP synthase subunit alpha, mitochondrial	0.000584776296618
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P92549	 ATP synthase subunit alpha, mitochondrial	0.000141542809735
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SGR6	 PTS system, IIA component	0.00942558603353
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J098	 RhtB family transporter	0.00942475667529
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSR0	 ABC transporter 	0.00941738186826
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1BAM2	 ABC polyamine transporter, periplasmic substrate binding protein	0.00941621872911
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A6QIG0	 GntR family regulatory protein	0.00691611795014
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QIG0	 GntR family regulatory protein	0.0024976477698
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q819W8	 Ribosome biogenesis GTPase A	0.0094086772813
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNG2	 tRNA  ) methyltransferase	0.00940837922941
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76501		0.00940828562998
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HE77	 Inosine uridine preferring nucleoside hydrolase	0.00940631882807
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9S469	 L ribulose 5 phosphate 4 epimerase	0.0081838440505
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9S469	 L ribulose 5 phosphate 4 epimerase	0.00120259043041
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F4FMG8	 Sulfite reductase flavoprotein alpha component	0.00935789027399
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KRZ3		0.00937726725075
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WSN3	 Transcriptional regulator, TetR family	0.00939327714445
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q720A2	 DNA polymerase III PolC type	0.00938281244946
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P0AEQ0	 Glycolate oxidase subunit GlcD	0.00565794724901
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEQ0	 Glycolate oxidase subunit GlcD	0.003196224074
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AEQ0	 Glycolate oxidase subunit GlcD	0.00053725565957
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DPC0	 DNA mismatch repair protein MutL	0.00939015805893
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DJK9	 UPF0042 nucleotide binding protein Sca_0414	0.0093883068886
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AEN3		0.00938557102829
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SJV4	 Secretory antigen SsaA	0.00938120044794
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIP1	 Response regulator receiver protein	0.00937569307645
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P26410	 Hydrogenase nickel incorporation protein HypB	0.00937532916708
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8I4	 PTS system, arbutin like IIBC component	0.0093718915273
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CR16		0.0093716480216
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HJ89	 Protein EssA	0.00936846719509
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNC1		0.0093683301739
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8AKZ3		0.00936603228504
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5QV38		0.00520718947391
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E5QV38		0.00414998588395
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A1R8R6	 30S ribosomal protein S11	0.0066224452287
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A1R8R6	 30S ribosomal protein S11	0.00163709333726
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A1R8R6	 30S ribosomal protein S11	0.0010895823343
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SFU4		0.00930427218454
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P55910	 L lactate permease	0.00934597252164
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5M3M6	 NADH nitroreductase, putative	0.0093440373108
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F8KLB6		0.00929869497976
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNG9	 Transferase hexapeptide repeat containing protein	0.00933904415524
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU45		0.0092003441532
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LHS0	 Type II secretion system protein	0.00886619661476
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39349	 Putative phosphoethanolamine transferase YjgX	0.00933448567956
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G5EL93	 Cassette chromosome recombinase A	0.00525188487654
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G5EL93	 Cassette chromosome recombinase A	0.00408254657888
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L565	 Probable quinol oxidase subunit 2	0.00923030778328
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_H2J1V2	 ABC type dipeptide oligopeptide nickel transport system, permease component	0.00933312790301
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T0JW92		0.00932512473855
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YUT2		0.00932492231257
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7EXB5	 Transcriptional regulator, crp family	0.00932436960875
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J6K8	 Transcriptional regulator AcuR	0.00932318138397
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YN62	 TM2 domain protein	0.0084328408575
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CN30	 Thiazole synthase	0.00932058218635
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A8FHJ2	 Triosephosphate isomerase	0.00927960722179
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0DA58	 DegV domain containing protein SpyM3_1667	0.00904044266103
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0DA58	 DegV domain containing protein SpyM3_1667	0.000275268324171
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1A4	 Light harvesting protein B 875 alpha chain	0.00930720571084
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L4Y3	 ATP dependent helicase nuclease subunit A	0.00930016878458
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WW34	 Multidrug resistance protein	0.00929950748139
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24207	 Phenylalanine specific permease	0.00775447024461
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P24207	 Phenylalanine specific permease	0.00114521988793
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P24207	 Phenylalanine specific permease	0.000390710074736
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HN77	 Amino acid ABC transporter, permease amino acid binding protein, putative	0.00928934515801
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKG5	 Drug transporter, putative	0.00928897198715
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QFS6		0.00925568698648
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QHI5		0.00928369998861
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2N4J0	 Sau1hsdS1	0.00927973463049
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O31645	 PTS system mannose specific EIIBCA component	0.00926546801256
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WZZ2		0.00926929988047
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C3AIA3	 Tetracycline resistance protein	0.00926850936456
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8KA28	 3 oxoacyl [acyl carrier protein] synthase 1	0.00544882089954
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8KA28	 3 oxoacyl [acyl carrier protein] synthase 1	0.00217052816146
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8KA28	 3 oxoacyl [acyl carrier protein] synthase 1	0.00146402751429
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q8KA28	 3 oxoacyl [acyl carrier protein] synthase 1	0.000136070845758
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49Z62	 Low molecular weight protein tyrosine phosphatase PtpB	0.00926389348918
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQ77	 Tripartite ATP independent periplasmic transporter, DctQ component	0.00901988716919
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H6PCS0	 Transcriptional regulator CtsR	0.00926034546864
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SBZ3	 Amidohydrolase family protein	0.0092576024763
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQN2	 D isomer specific 2 hydroxyacid dehydrogenase family protein	0.00925213522493
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HN04		0.00924895668021
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C2ZP74	 Glycine betaine L proline ABC transporter, permease glycine betaine L proline binding protein	0.00924775916903
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRD9	 AIR carboxylase, putative	0.00924621298581
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R9XSB4	 UvrABC system protein A	0.00862332646265
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9XSB4	 UvrABC system protein A	0.000535271867785
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_R9XSB4	 UvrABC system protein A	8.41725770146e-05
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C1KYW0	 Peptide chain release factor 1	0.00924210890414
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28PV9	 N acetyl gamma glutamyl phosphate reductase	0.00916017534514
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76064		0.00923448272793
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS00		0.00923404098577
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HE46	 Mannitol specific phosphotransferase enzyme IIA component	0.00922052708812
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HL17	 Pyruvate phosphate dikinase	0.00921904132396
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1AYY2	 Phage major capsid protein, HK97 family	0.00921850471279
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HLL0		0.00800534387548
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLL0		0.00121223704075
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q59643	 Delta aminolevulinic acid dehydratase	0.00751821997258
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q59643	 Delta aminolevulinic acid dehydratase	0.001546895183
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2N5G1	 LysM domain protein	0.00921535664122
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0A0M6	 UPF0039 protein SAV1054	0.00738000441014
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0A0M6	 UPF0039 protein SAV1054	0.00182656472435
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N344		0.00920476358798
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Y8CPG9		0.00920377071227
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3VVP7	 Gram positive signal peptide protein, YSIRK family	0.00920316820526
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKY3	 ABC transporter, ATP binding protein	0.00919988712643
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T0VCE6	 ABC transporter ATP binding protein	0.004690235387
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T0VCE6	 ABC transporter ATP binding protein	0.00450601179371
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G2T0H2	 DNA alkylation repair enzyme	0.00919028779364
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EHK8		0.00918772281379
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3EYF0	 C4 dicarboxylate transport transcriptional regulatory protein DctD	0.0091845930435
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P39062	 Acetyl coenzyme A synthetase	0.00917679652768
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R9YQ52	 Sugar  transporter family protein	0.00918038065309
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B634	 Phage major tail protein, TP901 1 family	0.0091785970501
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQC0		0.0091785970501
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C290		0.0091785970501
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLU2		0.0091785970501
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9CNN7	 50S ribosomal protein L3 glutamine methyltransferase	0.0091785970501
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMQ2	 Phage major tail protein 2	0.00917795324495
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M323	 Membrane bound O acyl transferase, MBOAT family protein	0.00917653549516
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PFT2	 Sulfoxide reductase heme binding subunit YedZ	0.00917513389383
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N6M7		0.00917459338002
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPA3	 Oligoendopeptidase	0.00917295354852
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q16DB6		0.00916995313689
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8NXN8	 MW0677 protein	0.00916458314787
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F3SY37	 Transcriptional regulator, AraC family	0.00916266269921
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLU9		0.00912466345078
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WT37	 Flagellin domain protein	0.00915037585336
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPN2	 Glutamine synthetase	0.00913667777012
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SFS5	 Membrane protein	0.00914847907357
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49ZH2	 DNA topoisomerase 3	0.00914228201004
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LNV7		0.00914520196114
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8RPJ3	 Hydroxymethylpyrimidine ABC transporter, transmembrane component	0.00914474010873
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQA3	 Dihydrolipoyl dehydrogenase	0.00913562500449
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F4FSV5	 RelA SpoT domain protein	0.00913161895037
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98D26	 Branched chain amino acid ABC transporter, periplasmic amino acid binding protein	0.00912997897019
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B3EQT3	 Recombination protein RecR	0.00862592221946
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B3EQT3	 Recombination protein RecR	0.000499824591837
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R5NQY2	 Beta eliminating lyase	0.00912506698043
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D9QKH6	 NAD dependent epimerase dehydratase	0.00912180643365
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D8IGI0	 Phosphoribosylaminoimidazole carboxylase ATPase subunit	0.00818579935823
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D8IGI0	 Phosphoribosylaminoimidazole carboxylase ATPase subunit	0.000933549805209
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4ZTR9	 Hydrolase, haloacid dehalogenase like family	0.00895666135108
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZTR9	 Hydrolase, haloacid dehalogenase like family	0.000161802191592
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PM06	 RNA polymerase, sigma 24 subunit, ECF subfamily	0.00911401393391
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GD19	 Binding protein dependent transport systems inner membrane component	0.00911267130273
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V3H8	 FecCD transport family protein	0.00911063618044
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AVK0	 Protein LemA	0.00633554256561
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A8AVK0	 Protein LemA	0.00277357011327
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U2V0	 Gas vesicle operon protein	0.00910821882302
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4Q5Z5	 Phosphoribosylglycinamide formyltransferase	0.00910346357244
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKX0	 NAD transhydrogenase subunit beta	0.00910166740807
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T659	 Transcriptional regulator	0.00910007635272
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B4RAW2		0.00906384563392
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F2F126	 Lactoylglutathione lyase	0.0090990875998
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4A0W1	 Transcriptional regulator	0.00909240530746
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X770	 ATP phosphoribosyltransferase	0.00874355400699
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SGA0	 Teichoic acid biosynthesis protein F	0.00908348856721
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FK09	 Sensory transduction protein LytR	0.00908337273559
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4YWX8	 Acetyl transferase GNAT family	0.00908333670842
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSL4		0.0090781785992
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FEK1	 Urease accessory protein UreF	0.00907098996871
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DLC6	 Transcription repair coupling factor	0.00907060125353
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV88		0.00827649194441
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P39142	 Pyrimidine nucleoside phosphorylase	0.00905013153851
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KR74	 Binding protein dependent transport systems inner membrane component	0.00905721610337
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1BD29	 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.00369531576231
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1BD29	 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.00361543984118
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1BD29	 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.00140822617768
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1BD29	 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.000220647673866
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7X314	 Phage major capsid protein, HK97 family	0.00896373300757
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q65G88	 Isocitrate dehydrogenase [NADP]	0.00841842628595
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q65G88	 Isocitrate dehydrogenase [NADP]	0.000630472971508
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4V182	 L carnitine dehydrogenase	0.00890124334126
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4V182	 L carnitine dehydrogenase	0.00014240418554
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C1PH90	 Pyridoxal dependent decarboxylase	0.00544737588536
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C1PH90	 Pyridoxal dependent decarboxylase	0.00359847369018
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5EHV6		0.00904309924058
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YVJ6		0.00903857110068
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_S4X2L4	 Mercury transport protein	0.009035514858
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P63858	 Capsular polysaccharide biosynthesis protein CapA	0.00891339829032
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P37386	 Probable cadmium transporting ATPase	0.00902070876129
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3NHB2	 Aldehyde dehydrogenase  family protein	0.00903411073956
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQW3		0.00903258074272
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P4Z6	 Oligopeptide transport ATP binding protein	0.00903155468609
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZWH4		0.00903047016227
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPW9		0.00890086319516
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0L2R6	 Oligopeptide ABC superfamily ATP binding cassette transporter, membrane protein	0.00902784133271
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28K40	 Amino acid amide ABC transporter membrane protein 2, HAAT family	0.00902648264391
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NRK2		0.0069997372494
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR98	 UDP N acetyl D mannosamine transferase	0.00902054966891
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XRQ5	 Teichoic acid translocation ATP binding protein, putative	0.00902032156231
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58423	 Fructose 6 phosphate aldolase 1	0.00889335711964
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W7IVE6		0.00901374286985
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P39916	 Thioredoxin reductase	0.00893578274035
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FH82	 Glycerol 3 phosphate acyltransferase	0.00485263184638
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FH82	 Glycerol 3 phosphate acyltransferase	0.00416402375546
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K3P5		0.00901548219531
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D3HF85		0.0090152557786
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRH0	 50S ribosomal protein L14	0.00901098277103
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU46	 Alginate lyase	0.00900902311693
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L811	 Type II pantothenate kinase	0.00900822819043
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J7M6X3	 MarR family transcriptional regulator	0.00900505217524
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R9H5		0.00898895308649
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A0KET1	 Membrane lipoprotein	0.00900413419289
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A0QP90	 Glucose 6 phosphate 1 dehydrogenase	0.00883884620043
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LWG6		0.00900114191447
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KPE8		0.00896015723995
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N1J7	 Kinase, PfkB family	0.00899674537633
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPD8	 Cardiolipin synthase 1	0.00899201785225
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QFY8		0.00898560123081
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1V469	 Sulfate thiosulfate ABC transporter, permease protein CysW	0.0076972380021
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1V469	 Sulfate thiosulfate ABC transporter, permease protein CysW	0.000985317247327
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A1V469	 Sulfate thiosulfate ABC transporter, permease protein CysW	0.00030196227023
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O33406	 Uptake hydrogenase large subunit	0.00894406940872
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49XZ6	 Superoxide dismutase [Mn Fe]	0.00895343059819
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KLD6		0.00886051097766
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9E750		0.00897148290567
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IVI8	 Protein disulfide isomerase like protein	0.00897080412118
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y907	 Glycerol uptake operon antiterminator regulatory protein	0.00896920339038
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZM83	 LysR family regulatory protein	0.00896872624831
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GIB5	 Peptide chain release factor 2	0.00896861493324
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0S1W5		0.00896182915437
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMV5	 Phage infection protein	0.00896120059235
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T7P3	 Flavodoxin	0.0089575414097
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRH4	 Putative long chain fatty acid CoA ligase VraA	0.00895689669014
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P26946		0.00895035191119
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LKT8	 Branched chain amino acid aminotransferase, putative	0.00894718909195
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49XT6		0.00894623889987
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IXY3		0.00890386679927
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I3U2U9	 Iron  ABC superfamily ATP binding cassette transporter, ABC protein	0.00893964671505
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0C5W5	 Transposase InsD for insertion element IS2A D F H I K	0.0089380515943
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TVV9		0.00893409977775
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8ZKQ1	 Autoinducer 2 binding protein LsrB	0.00703618527585
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZKQ1	 Autoinducer 2 binding protein LsrB	0.00189421462211
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNL6	 PpiC type peptidyl prolyl cis trans isomerase	0.00892513102305
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS09	 DNA topoisomerase	0.00892411745334
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F6CD95	 Phosphoenolpyruvate dependent sugar phosphotransferase system EIIC, mannose specific	0.00892224190262
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8NZX4	 Transketolase	0.00876347698677
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8NZX4	 Transketolase	0.000127921572763
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X534	 Multidrug resistance efflux pump SepA	0.00551077026885
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X534	 Multidrug resistance efflux pump SepA	0.00340943167485
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I2C5T3	 Ribonucleoside diphosphate reductase	0.00891966084505
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E0TW67	 Quinol oxidase subunit 2	0.0089085091746
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KKK1	 Transcriptional regulator, DeoR family	0.00891758831205
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F8WK85	 PAP2 family protein	0.00891724673663
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U2V4	 Heat shock protein Hsp20	0.0085222921287
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_UPI0003655EFD	 multidrug transporter	0.00891059637377
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F3STZ2	 Valine  tRNA ligase 	0.00890978336389
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P36843	 Arginine biosynthesis bifunctional protein ArgJ	0.00889762142132
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3I502	 Oligoendopeptidase, pepF M3 family	0.00890137265601
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N1T5		0.00890071377972
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q3KGL4	 Uracil DNA glycosylase	0.00719966315849
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q3KGL4	 Uracil DNA glycosylase	0.00169409985919
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W0NHL6	 Branched chain amino acid ABC transporter ATP binding protein	0.00889215052428
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U4QA39	 Xanthine dehydrogenase, iron sulfur binding subunit	0.00889017382141
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4MCF7		0.00888996192274
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPK7	 Amidohydrolase 2	0.00888471863346
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PMR6		0.00786926915388
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q45480		0.00887951054161
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IUX4	 Choline carnitine betaine transporter	0.00887526940737
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WTC3	 Lipoprotein	0.00886801118358
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8UZQ2	 Bacterial low temperature requirement A family protein	0.00886530261195
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D4MNT7	 Acetyltransferases	0.00886410792069
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FZ91	 Cell division protein DivIB	0.00886347671361
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KUA0	 CBS domain containing protein	0.00885540944473
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HMA0	 Putative aldehyde dehydrogenase SERP1729	0.00884926378161
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3SY39	 Phosphate ABC transporter permease	0.00885294328543
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C5T1		0.00471023420541
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C5T1		0.00414253911251
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F8KIL6	 NADH oxidase family protein	0.00885221930253
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P54569		0.00884770142755
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1K1J6	 Inner membrane translocator	0.00884523723512
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L6U2	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00881919976677
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV17	 Putative threonine efflux protein	0.00884300321602
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S4ZTI3	 Transcriptional regulator, ArsR family	0.00884017196068
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IT33	 Glucose 6 phosphate 1 dehydrogenase	0.00883812570903
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HBY6		0.0088319748728
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q16A99	 tRNA 2 thiocytidine biosynthesis protein TtcA	0.00882942494928
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L4I8	 Prolipoprotein diacylglyceryl transferase	0.00881219203451
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6A550		0.00882689478162
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B1I9		0.00882601061295
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GIW1	 UPF0178 protein SAR0734	0.00681528057808
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GIW1	 UPF0178 protein SAR0734	0.00191794363068
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNT0	 Abortive phage resistance protein	0.00882121029877
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SSX7		0.00881944315563
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CP80	 Maltose maltodextrin transport permease like protein	0.00881853004165
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I4E0M5	 Cation efflux family protein	0.00794547190319
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I4E0M5	 Cation efflux family protein	0.000872974287891
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV96		0.00875683249375
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y8J8	 Short chain dehydrogenase reductase family protein	0.00881707430297
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0R8M9	 Gluconate kinase, FGGY family	0.00881647520827
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1P4		0.00836490779372
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V6QG29	 Type III restriction enzyme, res subunit	0.00881223860351
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FER8	 Energy coupling factor transporter ATP binding protein EcfA2	0.00880229610019
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1JJ05	 tRNA binding domain protein	0.00819007948726
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1JJ05	 tRNA binding domain protein	0.000615637607018
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O05410	 Probable metal binding protein YrpE	0.00879753713122
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q1WTX2	 Orotidine 5 phosphate decarboxylase	0.0087837786813
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNS7	 Replication associated protein	0.00866547714525
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q87IM1	 Tryptophan synthase beta chain 2	0.00837961184272
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W8TU36	 Membrane protein	0.00877421568493
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY18	 Small acid soluble spore protein, alpha beta type	0.00877952761314
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW30	 PreQ biosynthesis protein QueC	0.0087753786074
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LRN8		0.00867448303815
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YC99	 8 amino 7 oxononanoate synthase	0.00877240346969
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9KA77	 Translation initiation factor IF 2	0.0087692255243
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RNU6	 Ferrichrome ABC transporter subunit	0.00876342347605
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNU7	 Multidrug resistance protein like protein	0.00876409572632
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08190	 Protein FimG	0.00876283872186
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B903	 Amino acid amide ABC transporter ATP binding protein 1, HAAT family	0.00875920479807
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O34996	 DNA polymerase I	0.00875691539765
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y8L2	 Oligopeptide binding protein oppA	0.00875532060266
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YYG7		0.00875188418493
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X235	 N anthranilate isomerase	0.00875100679814
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q52671	 Sarcosine oxidase subunit beta	0.00825406563444
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D3QZW7		0.0087432776935
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNV5		0.00874117493155
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E6V5R9	 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein	0.00873661528641
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P17054	 Phytoene desaturase 	0.00870827229369
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FAI6	 L ribulose 5 phosphate 4 epimerase UlaF	0.00856601103523
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8FAI6	 L ribulose 5 phosphate 4 epimerase UlaF	0.000154380072711
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8PVZ6	 D,D dipeptide transport system permease protein DdpC	0.00872523852333
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C528		0.00872405564817
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVR7		0.0086665213513
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CXJ8	 Chloramphenicol resistance protein 	0.00871448664119
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F8KL74		0.0087143570673
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1ZKW6	 40 residue YVTN family beta propeller repeat protein	0.00855862682021
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P43270	 Thermonuclease	0.00634947515828
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P43270	 Thermonuclease	0.00235651771234
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L686	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00870345584545
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5MZ73		0.00870052696817
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W0ILL7	 Membrane protein	0.00865506306868
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P28812		0.00847103990354
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P28812		0.000225192254189
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WWS4		0.00869420652076
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1BAZ5		0.00866821008546
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKE5	 Serine protease	0.00868715303695
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QIJ7	 Endodeoxyribonuclease RusA	0.00868687867006
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HL84	 Gamma glutamyltranspeptidase	0.00868654153693
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CN58	 Beta lactamase	0.00868525392352
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPK8	 Catalase	0.00867424249117
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0A023X187	 Oligopeptide dipeptide ABC transporter, ATP binding protein, C terminal domain	0.00868347325241
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PFZ4	 Peptidase S16, lon domain protein	0.00867602178543
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V619	 HMGL like family protein	0.00866900571243
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQF0	 Extracellular solute binding protein, family 3	0.00866486168983
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DL96	 SirB protein	0.00866422699497
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q6W1T0	 Transporter	0.00866082896553
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR11	 ATP dependent DNA helicase RecQ	0.0086539146438
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SJH3	 Integral membrane protein	0.00864866108615
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q57060		0.00864796399863
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9PDT5	 2 C methyl D erythritol 2,4 cyclodiphosphate synthase	0.00864772331488
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C3BKF8	 Glucose 6 phosphate 1 dehydrogenase	0.00864679881485
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQ95	 Histidinol dehydrogenase	0.00862662476448
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q97P97	 Ribosomal silencing factor RsfS	0.00864487331225
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LUZ4	 Prolipoprotein diacylglyceryl transferase	0.00832865591998
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P26277	 Chlorophyllide reductase subunit Z	0.00823471384132
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KGQ3	 Transcriptional activator protein 	0.00863422716896
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3VSI0	 GA module	0.00862525630026
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_T1K2G0		0.00860892592346
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GK24	 Protein EssC	0.00860405672877
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31459	 2 dehydro 3 deoxygalactonokinase	0.00860262724615
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WT93		0.00860204345561
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRQ3	 Peptidyl tRNA hydrolase	0.00851833826285
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C756	 Phage infection protein	0.00859890553149
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E4PKC3	 Extracellular solute binding protein, family 1	0.00859364352995
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P42405	 3 hexulose 6 phosphate synthase	0.00851513558733
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QEV8	 ABC transporter, ATP binding protein	0.00858974126068
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28TQ1	 Type II secretion system protein E	0.00858730837802
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQA8	 Surfactin synthetase	0.00858154961947
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q168G3	 MFS protein, putative	0.00858079939203
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2NA34		0.00854061789575
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRZ9		0.00857781326001
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L732	 DNA polymerase	0.0085776693114
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L4Y7	 Coenzyme A disulfide reductase	0.00857317746231
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4AR30	 Dihydrolipoyl dehydrogenase	0.00856788206826
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6STQ9		0.00856074600214
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV35		0.00609919596272
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKF0	 ATP dependent dethiobiotin synthetase BioD	0.00855828714269
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WTJ0	 Lipase	0.00855238739519
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SDW7	 Acetate CoA transferase YdiF	0.00854722514266
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49VL4		0.00854162561304
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WQ10		0.00679637990855
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9FFR3	 6 phosphogluconate dehydrogenase, decarboxylating 2, chloroplastic	0.00853690457989
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7EIU7		0.00801153926255
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J0W1		0.00853060335963
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LWK7	 ABC transporter, periplasmic substrate binding protein	0.00853284565312
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4ZCC6	 Acetylornithine deacetylase	0.00852831196343
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZTX4	 SSS sodium solute transporter superfamily protein	0.00852314343831
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B5Y9	 PTS system fructose subfamily IIA component	0.0085229829751
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O34546		0.00852280050567
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ALJ5	 Phage integrase	0.0085174720211
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IU36		0.00851601792584
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YY67	 L threonine dehydratase catabolic TdcB	0.00851473292172
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SII5	 Single stranded DNA specific exonuclease RecJ	0.00851148807935
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QC45	 D 3 phosphoglycerate dehydrogenase	0.00850931139084
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPV5	 NADH dehydrogenase like protein SE_0635	0.00850825669304
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RCU3	 ABC type nitrate sulfonate bicarbonate transporter, TauA	0.0085066479037
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0A0Q1		0.0044679850645
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0A0Q1		0.00403579570213
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0JA88		0.00850268741806
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNZ9	 5 formyltetrahydrofolate cyclo ligase family protein	0.00850183313855
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O33812		0.00850000589144
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0M4V6		0.00849940891634
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C0QXM0	 Pyrrolidone carboxylate peptidase	0.00849841837975
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4GAA6	 ABC transporter, permease component	0.00849751663385
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q48UU5	 Dephospho CoA kinase	0.00829822947832
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q48UU5	 Dephospho CoA kinase	0.000170836831725
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B4EC93		0.00798882818705
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B4EC93		0.00043932312374
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A032VR07		0.0084910524274
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X763	 Imidazole glycerol phosphate synthase subunit HisF	0.00841051620208
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FHE2	 DNA mismatch repair protein MutL	0.00848787161963
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI0000379EF0	 hypothetical protein	0.00687948816926
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H6P8S4	 Acetoin dehydrogenase E1 component	0.00764952459043
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_H6P8S4	 Acetoin dehydrogenase E1 component	0.000834977545683
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I1ZNE0	 SpoU rRNA methylase family protein	0.00812776759124
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I1ZNE0	 SpoU rRNA methylase family protein	0.000337012345239
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVN2		0.00720264907404
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49ZB7	 UPF0457 protein SSP0714	0.00846303626856
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N0Y1		0.00832690019151
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T523		0.00845918626134
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNN4	 Uroporphyrinogen III synthase	0.00845624900757
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8RAR9	 Proline dehydrogenase 	0.00845436392716
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IQG6	 Alpha beta hydrolase fold	0.00845399370288
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L5K1	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00830722989582
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZTG3		0.00845287221699
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS03		0.0084511467398
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5LZ68	 Ribonuclease 3	0.00814781870993
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5LZ68	 Ribonuclease 3	0.000303196899553
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q03736	 Cytochrome c oxidase subunit 2	0.00833403952448
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HL89		0.00844871686925
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E6JZW3	 Amino acid permease	0.00844835446325
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G4L4Q8	 Cation transporting ATPase	0.00430529967298
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G4L4Q8	 Cation transporting ATPase	0.00414272253007
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V5E5	 Coagulase family protein	0.00844678961746
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q46339	 Formyltetrahydrofolate deformylase	0.00841589928077
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5BRX6	 Inner membrane translocator	0.00844401401347
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P45694	 Transketolase	0.00839683841684
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V4E9	 ATP dependent DNA helicase RecQ	0.00844179905337
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P37940	 2 oxoisovalerate dehydrogenase subunit alpha	0.00844104972273
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KJA0	 Acetyl CoA hydrolase	0.00843901785007
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8R9L3	 Branched chain amino acid transport systemcarrier protein	0.00843781892926
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E6K098	 ABC transporter, substrate binding protein, QAT family	0.00843425571386
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8RUR9	 Iron binding protein SufA for iron sulfur cluster assembly	0.00843280752883
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B8I2Q1	 LexA repressor	0.00833115168878
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9M8L4	 Glycerol kinase	0.00835622558269
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9M8L4	 Glycerol kinase	6.93914553649e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9E9D4	 Respiratory nitrate reductase delta chain	0.00843056796745
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQE0	 Galactosamine containing minor teichoic acid biosynthesis protein	0.00842982491615
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YX92	 High affinity heme uptake system protein IsdE	0.00842927695389
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7X2B6		0.00842299287941
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PGU0	 Lytic transglycosylase, catalytic	0.00799943305081
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IUB8		0.00841371396259
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2W0J7	 Flagellar P ring protein	0.00841193486109
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D3HGD1		0.00840816515029
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75915	 Chaperone protein YcdY	0.00840492809366
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1JZW0	 Glutamate  putrescine ligase	0.0075325084384
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1JZW0	 Glutamate  putrescine ligase	0.000871700142874
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP04	 Multimeric flavodoxin	0.00839967252632
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CNK0	 Single stranded DNA binding protein	0.00557983059337
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNK0	 Single stranded DNA binding protein	0.00281854579949
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28L99	 50S ribosomal protein L25	0.00839519315845
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9IQ26		0.00839357975676
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8GM77	 NADH quinone oxidoreductase subunit F	0.00837985287019
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SK14	 Teichoic acid export ATP binding protein TagH	0.00838783272714
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5DX47	 Bacterial regulatory s, tetR family protein	0.0083848436241
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P46354	 Purine nucleoside phosphorylase 1	0.00838323205349
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8DL52	 Ribonuclease E	0.00838101241983
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNG1	 Alkaline shock protein 23	0.00837975947732
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IRR8	 Bacteriocin associated integral membrane protein	0.00837773197382
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IQJ5	 Serine type D Ala D Ala carboxypeptidase	0.00837864992697
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8R9K4		0.00837765467627
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQW0		0.00837697171716
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEU9	 Chaperone protein Skp	0.00837456785359
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D7A512	 Phosphoesterase PA phosphatase related protein	0.00837057989867
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q044B7	 Translation initiation factor IF 2	0.00836938075698
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_N0BAQ7	 dTDP 4 dehydrorhamnose 3,5 epimerase	0.00836495411039
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H0C7J0	 Single stranded DNA specific exonuclease RecJ	0.00835795168013
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WY02	 Aldo keto reductase	0.00835487926589
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X6P6	 Holin like protein CidA	0.00668525996857
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X6P6	 Holin like protein CidA	0.00166883156819
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49Z00	 Redox sensing transcriptional repressor Rex	0.00835260734921
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A3N352	 N acetylneuraminate lyase	0.00834595125833
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8RKJ0	 Putative ribitol 5 phosphate dehydrogenase	0.00834118876729
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKZ8	 Uroporphyrin III C methyltransferase, putative	0.00834103670905
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49WT2	 Excinuclease ATPase subunit	0.0083373711107
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HMF5	 L threonine dehydratase biosynthetic IlvA	0.00832250698168
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X0F5	 Na H(+) antiporter subunit G1	0.00514123702341
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X0F5	 Na H(+) antiporter subunit G1	0.0031957729388
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P76113	 NADPH dependent curcumin reductase	0.00537015156457
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76113	 NADPH dependent curcumin reductase	0.00296640529446
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B479	 NADH quinone oxidoreductase subunit N	0.00815185044792
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YUZ7	 Acetylglutamate kinase	0.00833110883496
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LTG8	 NADH dehydrogenase 	0.00832727685994
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0A028WHC5	 DNA polymerase III, alpha subunit	0.00832675389192
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8H3	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00832505911346
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQB7	 OpuCB protein	0.00832456623843
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P29363	 Threonine synthase	0.00735836740919
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P29363	 Threonine synthase	0.000875981366048
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P37252	 Acetolactate synthase small subunit	0.00832421740822
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A012NRC3		0.0082945842406
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J3X0		0.00831981256697
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4MV13	LPS N acetylglucosamine transferase	0.00831799793053
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLV3	 Transcriptional regulator, AraC family	0.00831597428492
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8FW08	 sn glycerol 3 phosphate transport system permease protein UgpE	0.00831437162647
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C1A7Q5		0.00823008725213
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q132P2	 Aerobic magnesium protoporphyrin IX monomethyl ester [oxidative] cyclase	0.00811620943049
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O34943	 Putative tRNA binding protein YtpR	0.00506925866025
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O34943	 Putative tRNA binding protein YtpR	0.00323331120477
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N1T1		0.00829843622982
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SPX6		0.00829769322572
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q931P4	 Iron regulated surface determinant protein H	0.00829654615726
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8LI03	 Sal9 lantibiotic transport ATP binding protein	0.00829600573282
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPC5	 Nuclease SbcCD subunit C	0.00829188370331
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E3D8W4	 Anaerobic ribonucleoside triphosphate reductase activating protein	0.00810479956501
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E3D8W4	 Anaerobic ribonucleoside triphosphate reductase activating protein	0.000174076840602
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WTS0		0.00803578775975
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2G9D9	 Arginine  tRNA ligase	0.00825816203287
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G9AIL7	 Transcriptional regulatory protein, LuxR family	0.00825985145088
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99RJ0	 Protein flp	0.00825825018274
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49WG0	 Organic hydroperoxide resistance protein like 2	0.00824980169165
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QHT0		0.00824896170185
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V5SGS7	 Multidrug ABC transporter permease	0.00824837187764
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TY91	 Phosphoglycerate mutase	0.00824549189947
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8LMW5	 Branched chain amino acid ABC uptake transporter substrate binding protein	0.00698824075221
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8LMW5	 Branched chain amino acid ABC uptake transporter substrate binding protein	0.00125671574623
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7HYE5	 Ribonuclease D	0.00816884714702
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7DPT5		0.00796049958351
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9ANN8	 AMP nucleosidase	0.00824227426019
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N6D480		0.00823791562104
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMP3	 Transporter	0.00823720760506
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C3R6	 General stress protein, Gls24 family	0.00823495237446
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNG8	 FtsK SpoIIIE family protein	0.00823076395745
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L427	 Transcriptional regulator, MerR family	0.0082299450925
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR89	 Nucleoside permease NupC, putative	0.00822682161104
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S9RN07		0.0082230303982
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRL3		0.00799346250258
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H0DMI5	 GA module	0.00821686253744
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Z3FT61	 Fructose 1,6 bisphosphatase class 3	0.00821542676285
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F4FM20	 RstA	0.00821514226018
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P50939	 NADH quinone oxidoreductase subunit L	0.00762651913637
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LQC3	 Putative arginyl tRNA  protein transferase	0.00821104949448
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNJ1		0.00694586789974
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HNJ1		0.00126395437668
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WUY8	 Substrate binding region of ABC type glycine betaine transport system	0.00820905237708
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O34900	 L cystine import ATP binding protein TcyN	0.00477380196942
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O34900	 L cystine import ATP binding protein TcyN	0.0032625191175
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1UAJ5		0.00819058416298
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3UWQ8	 Spermidine putrescine ABC transporter ATPase	0.00761093575697
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3UWQ8	 Spermidine putrescine ABC transporter ATPase	0.000586264413904
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49X90	 Glycerol 3 phosphate responsive antiterminator	0.0081964537126
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FJN4	 Alkyl hydroperoxide reductase subunit C	0.00561270211105
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q2FJN4	 Alkyl hydroperoxide reductase subunit C	0.00258085450565
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9VLZ2	 Cell wall shape determining protein	0.00819279116384
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P67586	 Tryptophan  tRNA ligase	0.00819059285018
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52132	 UPF0380 protein YfjQ	0.00769815260273
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P52132	 UPF0380 protein YfjQ	0.000379566043421
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WVB3	 CDP alcohol phosphatidyltransferase	0.00818712235558
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU41	 Ornithine carbamoyltransferase 1, catabolic	0.00608134597836
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CU41	 Ornithine carbamoyltransferase 1, catabolic	0.00208157501138
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AQI9	 RNA polymerase sigma factor RpoD	0.00818173347031
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQF2	 Capsular polysaccharide synthesis enzyme Cap5B	0.00817964227885
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J219		0.00789362411128
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q71Y59	 Tyrosine recombinase XerD	0.00817308905498
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRJ6	 Alkanal monooxygenase alpha chain	0.00816856512806
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G7SE40	 DegV family protein	0.0081663265963
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3UK96	 ATP dependent deoxyribonuclease subunit A domain protein	0.00816107727379
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SXL7	 Transcriptional regulator	0.00815785438604
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DNN7	 Aminomethyltransferase	0.00810790667644
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV10		0.00342047831142
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B0U1N1	 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.0081222862238
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HK08	 Beta hemolysin	0.00814521681387
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHM8	 DHC, diheme cytochrome c	0.00778774192463
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HP49	 Oxidoreductase, short chain dehydrogenase reductase family	0.00814118735677
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1E9	 Plasmid and phage replicative helicase	0.00814054504109
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G0J3G6	 Zinc iron permease	0.00813512057594
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q213K6	 Leucyl phenylalanyl tRNA  protein transferase	0.00811061144237
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RDA2		0.00812621388862
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKX7	 Glycosyl transferase, group 1 family protein	0.00812567842872
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L8C9P6	 HTH type transcriptional regulator YidP	0.00812485604084
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4VSE4	 3 methyladenine DNA glycosylase	0.00793756980626
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4VSE4	 3 methyladenine DNA glycosylase	0.000183571941004
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9ZB00	 Lytic regulatory protein	0.00812076543796
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M2T1	 Diguanylate cyclase	0.00797559612852
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKZ3	 Glutathione peroxidase homolog BsaA	0.00811997469253
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLI2	 Amino acid ABC transporter, amino acid binding protein	0.00811490057851
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_X5KE92	 N5 carboxyaminoimidazole ribonucleotide mutase	0.00682228076165
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KE92	 N5 carboxyaminoimidazole ribonucleotide mutase	0.00128890937299
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C833		0.00810945798875
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q034H8	 Ribose 5 phosphate isomerase A	0.00810779847792
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P90597	 Dihydrolipoyl dehydrogenase	0.00810718382616
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6U4E8	 Immunoglobulin binding protein sbi	0.00810701398765
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3EYN7	 Glutamate glutamine aspartate asparagine transport system permeaseprotein BztC	0.00810426836133
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N6C9	 Universal stress family protein	0.00487572349474
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N6C9	 Universal stress family protein	0.00322569191584
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CNS7		0.00809343458733
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HCQ5	 Aminopeptidase	0.00809104609626
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G9WGT8	 dTDP 4 dehydrorhamnose reductase	0.00608028277975
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G9WGT8	 dTDP 4 dehydrorhamnose reductase	0.00200808480251
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CP57		0.00788707987907
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_K7SKZ4	 Glycosyl transferase, group 2 family	0.00474236743799
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K7SKZ4	 Glycosyl transferase, group 2 family	0.00334388267092
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25748	 HTH type transcriptional regulator GalS	0.00808461583283
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9VTJ9	 Glyoxalase I	0.00808400383634
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPK1	 Secretory antigen SsaA	0.00798137393995
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRU7		0.00719331888677
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CRU7		0.000883369578059
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P95695	 Capsular polysaccharide type 5 biosynthesis protein cap5A	0.00789634890485
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8IME6		0.00711301497428
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8IME6		0.000962608051076
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23898	 Probable endopeptidase NlpC	0.00807485414057
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0V4T9	 ABC transporter, ATP binding protein	0.00807225789106
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7LNX4	 UPF0319 protein YccT	0.00803675790816
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUW5	 Type IV conjugative transfer system lipoprotein 	0.00600463457831
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8UII5	 Glutathione synthetase	0.00806475165807
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YEW5	 Chaperone Hsp33	0.00806803465972
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3EXK7	 Peptidase, M48 family, putative	0.00806447021575
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O34962	 Probable NAD dependent malic enzyme 4	0.00805723992654
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5QSU8	 Transcriptional regulator, AraC family	0.00805551592568
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5QR85		0.00805044024818
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CT01		0.00804667564175
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q03UE1	 DNA replication and repair protein RecF	0.00804105690109
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q887Z4	quinone oxidoreductase	0.00794791759979
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q887Z4	quinone oxidoreductase	8.91913140862e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q52664	 Glutamate glutamine aspartate asparagine transport system permease protein BztB	0.00803991523331
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E4PYK4		0.0080315209269
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKL4	 Thiamine biosynthesis protein, putative	0.00802892003984
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP72	 Predicted ATPase, AAA+ superfamily	0.00801169198351
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B0UWH2	 Ribosomal RNA small subunit methyltransferase G	0.0059651297174
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B0UWH2	 Ribosomal RNA small subunit methyltransferase G	0.00205724538192
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5SQR1	 Glycogen debranching enzyme GlgX	0.00801903365896
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6STH9		0.0080182114799
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DIQ2	alanine symporter family protein	0.00801590421538
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSJ5		0.00801243431988
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IXU6		0.00767780795201
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AQK3	 Cache sensor protein	0.00801217233086
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G7ZP06		0.00800436342665
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CJJ1	 DNA polymerase III subunit beta	0.0076291319463
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9CJJ1	 DNA polymerase III subunit beta	0.000366881350446
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5XA33		0.00800479127343
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D9SVN6	 N5 carboxyaminoimidazole ribonucleotide mutase	0.00800444610238
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQJ8	 Penicillin binding protein 4	0.00698670112414
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CQJ8	 Penicillin binding protein 4	0.00101643011993
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N3T1		0.00800312032625
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P24734	 HTH type transcriptional activator AmpR	0.00787879304777
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P24734	 HTH type transcriptional activator AmpR	0.00011369883733
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_L0KHH1	 Cation multidrug efflux pump	0.00799132110837
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89L46	 UvrABC system protein A	0.00798641960154
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q128P2	 Thioesterase superfamily	0.00797229847544
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E3HK42	 Lysine specific permease 2	0.00687450942146
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E3HK42	 Lysine specific permease 2	0.000593887235019
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3HK42	 Lysine specific permease 2	0.000512748890077
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76540	 Ethanolamine utilization protein EutK	0.00797751008931
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0RL15	 Diaminopimelate decarboxylase	0.00797670529236
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQ86	 Extracellular solute binding protein, family 1	0.00797543847996
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99UB6	 Prephenate dehydrogenase	0.0079272484833
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q01S06		0.00796466904885
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L628	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00795723963796
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R7HEN4	 Pseudouridine synthase	0.00784690378575
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7HEN4	 Pseudouridine synthase	0.000110103127101
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D3P3D0	 D xylose transport system substrate binding protein	0.00795286733342
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47VK9	 Arginine repressor	0.00795119012803
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q633V5	 Non canonical purine NTP pyrophosphatase	0.00793112958445
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GJ46	 Putative antiporter subunit mnhB2	0.00405076813483
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GJ46	 Putative antiporter subunit mnhB2	0.00389653474258
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQJ9	 Teichoic acid biosynthesis protein F	0.00794533269645
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNV6		0.00794321633688
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U0M8		0.00794287372583
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28TL6	 Phosphatidylcholine synthase	0.00794209321716
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LLU6	 50S ribosomal protein L3	0.00793954818958
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SDB9	 Toxin, beta grasp domain protein	0.00793557413603
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3X653	 Osmosensitive K+ channel His kinase sensor domain protein	0.00793293325889
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU16		0.00793193270444
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FDM1	 Immunodominant staphylococcal antigen B	0.00793090992404
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8RGA7	 ATP dependent DNA helicase, RecQ family	0.00792650121029
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YPY8	 5 formyltetrahydrofolate cyclo ligase	0.00792172652434
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9V1L0		0.00792120928572
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I1ZJL0	 Nicotinate phosphoribosyltransferase	0.00752857768951
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I1ZJL0	 Nicotinate phosphoribosyltransferase	0.000388293376771
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SET8	 Sucrose 6 phosphate hydrolase	0.00791628508511
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7NIN1	 ABC type Fe3+ transport system periplasmic component like protein	0.00791515931129
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YQ24		0.00579867290733
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R9YQ24		0.00207555400418
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3VZC8		0.00791233545643
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49XM4	 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	0.00790662902432
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4LAB0	 Multicopper oxidase mco	0.00620467802147
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4LAB0	 Multicopper oxidase mco	0.00170594716457
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8YAE3	 Ribonuclease M5	0.00790927834852
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B0T2A6	 Lysine  tRNA ligase	0.00785346726338
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRX0		0.00790205669016
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUX0		0.00425450249446
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YTP0	 2 succinylbenzoate  CoA ligase	0.00787226267018
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0ALN8	 MotA TolQ ExbB proton channel	0.0079003722628
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7N4V9	 3 phenylpropionate cinnamic acid dioxygenase subunit beta	0.00789258543691
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D2VQJ9	 Pyruvate dehydrogenase E1 component subunit alpha	0.00789174799119
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GJ34	 Putative N acetylmannosaminyltransferase	0.0078378780257
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHJ7	 Transcriptional regulator, AsnC family	0.00788893088454
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HMZ9		0.0078862164524
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99TA4	 HTH type transcriptional regulator rot	0.00417914373547
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q99TA4	 HTH type transcriptional regulator rot	0.00370623853076
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8E5	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00788092148422
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O03042	 Ribulose bisphosphate carboxylase large chain	0.0078431009967
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UNZ2	 Cell division protein DivIB	0.00787637554718
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PMP3	 Transcriptional regulator, TetR family	0.00787001780487
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8KY51	 Protein phosphatase PhpP	0.00753328859556
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8KY51	 Protein phosphatase PhpP	0.000335395240992
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HF39	 Acetoin utilization protein AcuC	0.00783459501004
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O54461	 Beta lactamase	0.00784861759786
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A3CWT9	 Nitrogen fixing NifU domain protein	0.00785953005832
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q21CC1	 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.00780107274874
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WZU8		0.00785617773608
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6TXC8	 Nucleoid associated protein Amet_4780	0.00753227726175
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A6TXC8	 Nucleoid associated protein Amet_4780	0.00032052243667
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U5P976	 Magnesium transporter	0.00705908560427
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_U5P976	 Magnesium transporter	0.000786783005696
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6LWI6	 GAF domain containing protein	0.00784474916199
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8C1	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00784467673606
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E8TMU8	 Glycine betaine L proline ABC transporter, ATPase subunit	0.00784423232503
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNA8		0.00784113568699
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V6QDM9		0.00246255042807
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI000369A903	 hypothetical protein	0.00685421483854
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNS9	 LtrC like protein	0.00783408385486
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3JCN0	 1,4 alpha glucan branching enzyme GlgB	0.00783060579873
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P44502	 Cystathionine gamma synthase	0.00777193837587
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNE8		0.00782925788706
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPF3	 Phosphate ABC transporter, permease protein	0.0078287214987
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D7A0M4	 Short chain dehydrogenase reductase SDR	0.00782715393568
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9RM66	 Universal stress protein C	0.00782490186443
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q73CS7	 Tn554 related, transposase B	0.007775579191
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q73CS7	 Tn554 related, transposase B	4.91072799416e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D6GPL1	 RNA polymerase sigma factor, sigma 70 family	0.00782450415153
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V0Z4		0.00770217465199
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9I1W8	 Catalase HPII	0.00726121468851
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I1W8	 Catalase HPII	0.000524974875448
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49VK7	 Secretory antigen SsaA like protein	0.00776052880605
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1R133	 Binding protein dependent transport systems inner membrane component	0.00781070287759
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I3G3U5		0.00779970607389
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G1Y5A8		0.00780751872059
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WT15	 Glycosyltransferase stabilizing protein Gtf2	0.00780220323155
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5QVT2	 Riboflavin transporter RibU	0.00780076118997
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV76		0.0063661543842
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR55		0.00759371558475
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7WZS8	 Triosephosphate isomerase	0.00774445423765
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9KF52	 Phosphoribosylamine  glycine ligase	0.00749462708184
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9KF52	 Phosphoribosylamine  glycine ligase	0.000292156354607
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8NMF7	 Oligopeptide ABC transporter, permease protein	0.00778555961379
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HFS5	 Tyrosine recombinase XerD	0.00778325220638
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IV34	 50S ribosomal protein L3	0.00778314207395
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLI8	 Glutaredoxin, putative	0.00778304587995
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O32037	 tRNA threonylcarbamoyladenosine dehydratase	0.00778106440636
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8DJ84	 CBS domain protein	0.00778057962816
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGB8	 ECF RNA polymerase sigma E factor	0.00777874332467
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HK23	 Ribosomal RNA large subunit methyltransferase H	0.00777643983776
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TSJ0		0.00777206054385
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O34994	 Transcriptional repressor CcpN	0.0042278178998
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O34994	 Transcriptional repressor CcpN	0.00354395020655
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4VVE0	 FAD synthase	0.00777072083849
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0HXT5		0.00777047501604
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3RT40		0.00776826621325
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DVR0	 Biofilm regulatory protein A	0.0077675462043
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48NP4	 OsmC Ohr family protein	0.00776650519624
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F4FR09	 Succinate semialdehyde dehydrogenase (+))	0.00709223360744
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F4FR09	 Succinate semialdehyde dehydrogenase (+))	0.000673371648383
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q16DL2	 Ubiquinone biosynthesis protein UbiB	0.00776549329732
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8E7Y8	 Peptidyl tRNA hydrolase	0.00736907442202
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E7Y8	 Peptidyl tRNA hydrolase	0.000393805108984
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WW27		0.00534022407314
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QEY2	 4 phosphopantetheinyl transferase	0.00776147557268
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C5E6	 Endonuclease	0.00776009481888
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0HVJ1	 Drug resistance transporter, EmrB QacA subfamily	0.00775910755826
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PGB1	 Tripartite ATP independent periplasmic transporter, DctQ component	0.00723507743166
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W7WFV4	 Methylmalonyl CoA mutase	0.00775689968825
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7WZX4		0.00775537817759
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N461	 MAP domain protein	0.0077525006429
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQQ1		0.00775193364915
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HG72	 Nuclease SbcCD subunit C	0.00775053036901
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N3KST8	 Trehalose 6 phosphate phosphatase 	0.00774844853109
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQQ7		0.00774828878698
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4SM12	 Inner membrane transporter YcaM	0.00774811916739
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49Z27		0.00774808864596
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y5K7		0.0046350722673
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1Y5K7		0.00311224341763
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KKX9	 Na+ solute symporter	0.00774553114578
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C7M0E4	 2 isopropylmalate synthase	0.00773075613678
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3EY08		0.00748299483783
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B2Y834	 Abortive phage resistance protein like protein	0.00636646451295
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B2Y834	 Abortive phage resistance protein like protein	0.00137161984281
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q7UJL3	 Inosine 5 monophosphate dehydrogenase	0.00521430972788
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q7UJL3	 Inosine 5 monophosphate dehydrogenase	0.00234654837325
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7UJL3	 Inosine 5 monophosphate dehydrogenase	0.000149226881691
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F4BQ82	 NADH peroxidase	0.00773223263172
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GHV6	 Iron regulated surface determinant protein A	0.00773203190076
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0A0K1		0.00772966767211
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C9AA28	 FeS assembly protein SufD	0.00746884557294
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C9AA28	 FeS assembly protein SufD	0.000258041843139
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q21CS1	 3 isopropylmalate dehydrogenase	0.00767659298681
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DQD2	 ADP dependent  NAD(P)H hydrate dehydratase	0.00750716339666
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DQD2	 ADP dependent  NAD(P)H hydrate dehydratase	0.000209905545844
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49XL3		0.00772140464051
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YA90		0.00729730200305
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0LM02	 Formate nitrite transporter family protein	0.00770158328058
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DPV8	 Heme A synthase	0.00769906635666
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7ECV7	 Peptidoglycan binding like protein	0.00753897434303
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46812	 Protein SsnA	0.00769877139946
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W6RLX0	 Spermidine putrescine binding periplasmic protein SPBP	0.0076962856639
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B5EHD3	 TRAP proton dicarboxylate symporter, large membrane protein component	0.00673954374464
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B5EHD3	 TRAP proton dicarboxylate symporter, large membrane protein component	0.000954075010457
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJJ6		0.00768688837952
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L5F4	 Succinate dehydrogenase iron sulfur protein subunit	0.00768418675896
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KSN1		0.00719264177581
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU14		0.0076778146081
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99SN7		0.00767538304027
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U3L6	 DNA replication protein DnaD	0.00750076209149
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B4U3L6	 DNA replication protein DnaD	0.000158999318978
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUX7	 Acyltransferase 3 family	0.00765918691696
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9B0F8	 DnaC	0.00765906567894
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2G6V6	 Thymidylate synthase	0.00761545958298
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WWN9	 N acetylmuramoyl L alanine amidase	0.00765262770131
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R5A036	 Transcriptional regulator, MerR family	0.00544569234837
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R5A036	 Transcriptional regulator, MerR family	0.0022051897346
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQY8		0.00762354041416
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C0ZBE7	 Deoxyadenosine deoxycytidine kinase	0.00765060449453
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5VJS0	 DEAD DEAH box helicase domain protein	0.00764837020303
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O07603	 Putative aminopeptidase YhfE	0.00764578132675
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q55154	 Chaperone protein dnaK1	0.0076452237975
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O07575		0.00760670477702
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZK57	 3 hydroxydecanoyl [acyl carrier protein] dehydratase	0.0040909250835
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A7ZK57	 3 hydroxydecanoyl [acyl carrier protein] dehydratase	0.00350137540918
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4A072	 Na+ H+ exchanger	0.00764319590386
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q3J9K9	 Transcriptional repressor NrdR	0.00764171155097
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J3UP44		0.0073640680111
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J3UP44		0.000277375185585
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M3S4		0.00729026889649
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1Y972	 Transposase	0.00763228031342
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8A272		0.00745858159518
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRZ2	 Transcriptional regulator, LysR family	0.00763116046889
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SFD5	 Glycosyl transferase, group 1 family protein	0.00762639447904
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQE2	 Serine protease HtrA like	0.00762428508185
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R5XW73	 Glycerol 3 phosphate cytidyltransferase	0.00417362702711
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R5XW73	 Glycerol 3 phosphate cytidyltransferase	0.00344980815944
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R9YPL9	 Host cell surface exposed lipofamily protein	0.00762241308269
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2N9E8	 MAP domain protein	0.00761980489808
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P00644	 Thermonuclease	0.00761841219482
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K5S8	 Ftsk spoiiie family protein	0.00761628686395
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8HBY9	 D alanyl D alanine carboxypeptidase DacA	0.00718471008967
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8HBY9	 D alanyl D alanine carboxypeptidase DacA	0.000430825320684
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5BS61	 RNA polymerase, sigma 28 subunit, FliA WhiG	0.00761441989307
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FEB2	 HTH type transcriptional regulator SarZ	0.00392358773371
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FEB2	 HTH type transcriptional regulator SarZ	0.00369020237093
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9CJS1	 ABC transporter, substrate binding protein	0.00760573195767
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW43		0.00726771971846
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P50975	 NADH quinone oxidoreductase subunit J	0.00726807318393
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P26158		0.0075532608823
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZNX7	 Competence protein ComEC, putative	0.00759790000105
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0RIM4	 L cystine uptake protein TcyP	0.00759527864992
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B939	 SufBD protein	0.00759097458581
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TNC0	 Serine acetyltransferase	0.00758742891901
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LWX2	 Flagellar basal body rod protein FlgC	0.00757968389331
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5Q4V1		0.00685799347416
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SHI1	 Predicted oxidoreductase	0.00757264356527
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNM6	 SAM dependent methyltransferase	0.00757027422873
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q07184		0.00756082739806
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1M2		0.000980238519916
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WT69		0.00755563432402
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AL29	 Two component response regulator receiver protein	0.00755532201306
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q73GH4	 NADH quinone oxidoreductase subunit I	0.00747601683626
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49WA8		0.00754963252985
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNB3	 O succinylbenzoic acid synthetase, putative	0.0075488455855
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DRV2	 Glucan binding protein A, GbpA	0.00754756542985
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B0TI32	 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.00739642705656
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKS8	 Cell wall surface anchor family protein	0.00754194148708
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5XCE8	 Dihydrolipoamide dehydrogenase	0.0072162754361
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5XCE8	 Dihydrolipoamide dehydrogenase	0.000325130374349
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q50784	 Polyferredoxin protein MvhB	0.00753937078867
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PH50		0.00740896851013
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SJ70	 Organic hydroperoxide resistance protein	0.00753720423417
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7HYI4	 50S ribosomal protein L9	0.00753695987855
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M5AH54	 Nod factor export ATP binding protein I	0.0069934831374
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M5AH54	 Nod factor export ATP binding protein I	0.000541697421252
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0B343	 Binding protein dependent transport systems inner membrane component	0.00753411956907
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QIQ9		0.00753193023237
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SJA6	 SAM dependent methyltransferase, MraW methylase family	0.00753045252873
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IVH0	 Zn dependent protease like protein	0.00752800800598
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5FLS6	 Alcohol acetaldehyde dehydrogenase	0.00752766311496
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HF24	 D alanine aminotransferase	0.00751166561758
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E9LLQ7	 IS2 ORFB transposase	0.00752368938823
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q02441	 Denitrification regulatory protein NirQ	0.00752299095854
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GDM0		0.00752209374452
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPN1	 Portal protein, truncation	0.00752161625519
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P80876	 General stress protein 18	0.00751922191359
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QGJ7	 Nitrilotriacetate monooxygenase	0.00751428245041
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CP12	 ComEC late competence protein 3	0.00751226561769
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B8EMX2	 Alpha,alpha trehalose phosphate synthase 	0.00751115805396
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O31219	 Aspartate semialdehyde dehydrogenase	0.00749913356592
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7E3Y1	 Dimethylglycine dehydrogenase DmgdH	0.00749907035383
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P31078	 HTH type transcriptional regulator PetP	0.00749671472636
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1WJX6	 TRAP dicarboxylate transporter, DctM subunit	0.00749510964909
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CEY4	 Putrescine carbamoyltransferase	0.00749464266677
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9KWJ8	 Putative acetyltransferase	0.00749457707454
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9JX70	 ABC transporter membrane spanning protein	0.00749306664
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AZX9		0.00749174847439
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_W0F7K7	 Permease of the major facilitator superfamily	0.00749028768647
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GI34	 Glutamyl endopeptidase	0.00748609907383
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SRE9		0.0074837329033
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0TDZ2	 Elongation factor G	0.00665826136751
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T0TDZ2	 Elongation factor G	0.000822424945116
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9APM5	 Taurine  pyruvate aminotransferase	0.007374871288
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKT3		0.00747885685564
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5INZ6		0.00747614035503
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J090		0.00747545235946
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZTG4	 Polysaccharide biosynthesis protein	0.00747088305053
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HDV1	 M23 M37 peptidase domain protein	0.00747034536349
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FEZ8	 Type II pantothenate kinase	0.00746878893216
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76066		0.00746503109865
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8EP56	 Oligopeptide ABC transporter permease	0.00746066906163
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P40711	 Peptidyl tRNA hydrolase ArfB	0.00745868571787
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F6G911	 Transmembrane cytochrome bd type quinol oxidase, subunit 1 oxidoreductase protein	0.00644415634518
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6G911	 Transmembrane cytochrome bd type quinol oxidase, subunit 1 oxidoreductase protein	0.00101074927586
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28WI0	 Chromosomal replication initiator protein DnaA	0.00745140788566
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V046	 Abi like family protein	0.00745018079315
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C4W3	 Enterotoxin	0.00745005788855
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8ALR8	 Carnitine operon protein CaiE	0.00744864201648
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D0CZU1	 2 oxoglutarate dehydrogenase E1 component	0.00744854866881
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QES1		0.00743871417244
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D9PWF6		0.00744228326115
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2J7P9	 Replication initiator protein	0.00598602566179
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N1I8		0.00740605433172
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QEW6	 Two component sensor histidine kinase	0.00743514881198
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37758	 Nitrate nitrite transporter NarU	0.00743054098806
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76121		0.00742730918786
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YUT9		0.00742268926764
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G9G2D3	 Dipeptide ABC transporter, permease protein DppC	0.0074223563085
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CP59	 Probable elastin binding protein EbpS	0.00741896770124
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O30808	 NADP dependent malic enzyme	0.00732548373082
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7INS2	 Acyl CoA dehydrogenase domain protein	0.00677533237976
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A7INS2	 Acyl CoA dehydrogenase domain protein	0.000632550347795
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMZ3	 2 dehydropantoate 2 reductase	0.0074077662286
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C7RQ14		0.00740724756652
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSN0	 Trans 2 decenoyl [acyl carrier protein] isomerase	0.00695705759929
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DSN0	 Trans 2 decenoyl [acyl carrier protein] isomerase	0.000449895173142
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q164M5	 5,10 methylenetetrahydrofolate reductase, putative	0.00732715694754
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N5T3	 ABC 2 type transporter	0.00740224630985
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K7YQ88	 N5 carboxyaminoimidazole ribonucleotide mutase	0.00739890932337
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DV75		0.00731735822552
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7Z1S6	 Cadmium, cobalt and zinc H K(+) antiporter	0.0073951402365
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XUW5		0.00728243830778
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3TX99	 Sulfite reductase 	0.00738916983072
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L9L8	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00738574371786
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNC7	 Urease accessory protein UreF	0.007384731449
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N5T1	 SagB type dehydrogenase domain protein	0.00736993100505
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J4Z5	 Valine  tRNA ligase	0.00733532604142
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AYH1	 Glucose 1 phosphate adenylyltransferase, GlgD subunit	0.00682853638189
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A8AYH1	 Glucose 1 phosphate adenylyltransferase, GlgD subunit	0.000536095608361
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T0CSQ2	 Glycosyltransferase, group 1 family protein	0.00736298695715
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XRJ3	 Proline iminopeptidase	0.00735749138637
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_T1Y9S4	 Phosphoesterase family protein	0.00726337765105
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A5E8J0	 Heat inducible transcription repressor HrcA	0.00735273005398
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R0MDF2	 DNA mismatch repair protein MutS	0.00730556925234
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R0MDF2	 DNA mismatch repair protein MutS	4.31656979679e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D8IIA8		0.00734868051363
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV31	 Two component transcriptional regulator, LuxR family	0.00734793459163
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACU8	 HTH type transcriptional regulator YjdC	0.0073423136735
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q74JN2	 50S ribosomal protein L32	0.00734190470893
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CP35	 N acetyl gamma glutamyl phosphate reductase	0.00734079974238
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS10		0.0073404320465
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2JAL6		0.00429403149016
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZXH6	 Methyltransferase type 12	0.00733658057401
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8HGF9		0.00733617743809
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M1XJU0	 Transposase for IS1272	0.0044600304171
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_M1XJU0	 Transposase for IS1272	0.00287544817708
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE86	 Periplasmic protein CpxP	0.00733098608666
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DYP4	 Glycosyl transferase GT2 family	0.00732342987285
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K393	 Lipoprotein	0.00732154042331
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CUB6		0.00438023023098
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUB6		0.00133367750313
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K0DDY7	 3 oxoacyl [acyl carrier protein] synthase 2	0.00731625633675
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E9KNS2	 Crp family transcriptional regulator	0.00399915411837
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E9KNS2	 Crp family transcriptional regulator	0.00331527444406
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QC48	 Glycerophosphoryl diester phosphodiesterase	0.00730943128049
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8X8	 Ppx GppA, Ppx GppA phosphatase family protein	0.00730795980961
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNA1	 ABC transporter, permease protein	0.00730675591842
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9EBC6	 Ribonuclease HII	0.00730452176445
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4VNN3		0.00691767914016
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4VNN3		0.000385138650544
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I1ZP03		0.00730197056888
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3F521	 ABC transporter, inner membrane subunit	0.00730119272062
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0JEM4	 Tn554 related transposase A	0.00437960187405
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0JEM4	 Tn554 related transposase A	0.00291929076394
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E6AKY5	 4Fe 4S binding domain protein	0.00729849248731
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q931R7	 Conserved virulence factor C	0.00729816143899
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YRY7		0.00729659045058
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLQ2		0.0072414347619
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WT53	 PAS PAC sensor hybrid histidine kinase	0.00729180919722
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A1YRL8	 Cassette chromosome recombinase A	0.00392784352778
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A1YRL8	 Cassette chromosome recombinase A	0.00336272571139
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_V8LZ20	 Ammonia permease	0.0072889375107
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7WY72		0.00728840872075
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLC6	 Transcriptional regulator, MerR family	0.00728560656292
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C2Q1		0.00727923848982
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45424		0.00727905006737
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IPV1		0.00727519848485
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B3PS08	 Bacterioferritin	0.00727499793762
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS13		0.00726909417848
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8ET44	 2 hydroxypenta 2,4 dienoate hydratase	0.00726686588294
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_R4WZZ5		0.00726488050059
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B9DSF8	 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex	0.00697211266547
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B9DSF8	 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex	0.000290604796619
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1TJ24	 Potassium transporting ATPase A chain	0.00330087897386
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1TJ24	 Potassium transporting ATPase A chain	0.00239205049166
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A1TJ24	 Potassium transporting ATPase A chain	0.000987862082514
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1TJ24	 Potassium transporting ATPase A chain	0.000529363252317
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4LAB5	 Protein ArsC 1	0.00479480321823
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4LAB5	 Protein ArsC 1	0.00241558839141
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A5D3C3	 Putative Holliday junction resolvase	0.00725681288271
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUE8		0.00713263538384
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TW73	 Putative transcriptional regulator	0.00725427025564
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49UM3		0.0072517064177
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F4BKY0		0.00725090463917
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98NZ9	 Mll9669 protein	0.0072503948014
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A034MYR1		0.00724980877847
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YX94	 Iron regulated surface determinant protein C	0.00724809923415
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8IG02	 Phosphate starvation inducible protein	0.00724764006213
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A0A059IQB9	 Intracellular septation protein	0.00724669666836
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q52675	 Dimethyl sulfoxide trimethylamine N oxide reductase	0.00724514412816
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACS6	 HTH type transcriptional regulator ZntR	0.00724495462434
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHA8		0.00336110000712
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P11701	 Levansucrase	0.00723986825569
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G0LRB5	 Exotoxin	0.00723653524776
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0GC54		0.00697952117213
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S6B705		0.00723190016397
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9V2B9		0.00570201497952
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9V2B9		0.00152875395628
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW63		0.0071048265207
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B8DTT6	 Phosphoribosylformylglycinamidine cyclo ligase	0.00686884109589
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B8DTT6	 Phosphoribosylformylglycinamidine cyclo ligase	0.000349340756437
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B3W746	 PTS system, IID component	0.00721646748211
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI00035D3DCC	 hypothetical protein	0.00350610465267
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7DC27		0.00721175482508
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PVZ5		0.00721175482508
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5NNR3	 7 cyano 7 deazaguanine synthase	0.00719385285889
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1URA3	 ATP dependent zinc metalloprotease FtsH	0.00492416862707
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1URA3	 ATP dependent zinc metalloprotease FtsH	0.00210072203228
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A1URA3	 ATP dependent zinc metalloprotease FtsH	0.000176548665049
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9WHB8	 Glycosidase	0.00720163053375
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C5L3X3	 Cysteine synthase, putative	0.00719685406641
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IYL4		0.00608739687797
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5LYH1	 Dihydroxy acid dehydratase	0.00716959892569
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49VQ7	 7 cyano 7 deazaguanine synthase	0.00713846649159
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRH5	 Hydrolase, haloacid dehalogenase like family	0.0071902403287
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M4RZJ4		0.00718521323488
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPY9	 Chromosomal replication initiator, DnaA C terminal domain	0.00718170584665
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C7M5H1		0.00718060091939
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KSY4		0.00183430023519
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J7M7S6	 Myo inositol 1 monophosphatase	0.0071743300169
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS14		0.00717081163341
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LML0	 Major facilitator superfamiy transporter	0.00716996725443
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QIC4		0.0071687308088
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F0PHP0	 Diacylglycerol kinase catalytic domain family protein	0.00629794866615
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F0PHP0	 Diacylglycerol kinase catalytic domain family protein	0.000870179797072
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WXR5	 KDPG and KHG aldolase	0.00716702059996
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I2FHZ3	 Glycosyl transferases group 1 family protein	0.00716509353952
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9ZI33	 Ribulose bisphosphate carboxylase small chain	0.00657448038738
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU48		0.00716410990219
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSM3		0.00716317629621
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3F1F2	 RelA SpoT family protein	0.00716315058261
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKT3	 Transcriptional antiterminator, BglG family	0.00716189419527
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16679	 Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnL	0.0071616117505
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I1ZMS2	 Oxidoreductase, short chain dehydrogenase	0.00716136430243
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03J15	 5 nucleotidase 2,3 cyclic phosphodiesterase or related esterase	0.0071572488754
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZY45	 Exported protein	0.00714880849833
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRI1	 GTP cyclohydrolase FolE2	0.00702592892061
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N5E9		0.00714060274925
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B4D6	 Glutathione S transferase, N terminal domain	0.00713801560302
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P35595	 PTS system glucose specific EIICBA component	0.00649794752533
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P35595	 PTS system glucose specific EIICBA component	0.000603308919995
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLV4	 Staphylococcal accessory regulator Y	0.00713455608099
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24240	 6 phospho beta glucosidase AscB	0.00315485537734
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P24240	 6 phospho beta glucosidase AscB	0.00262584196892
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P24240	 6 phospho beta glucosidase AscB	0.000676917715576
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P24240	 6 phospho beta glucosidase AscB	0.000675440208081
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A1AXZ2	 S formylglutathione hydrolase	0.00626261155438
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1AXZ2	 S formylglutathione hydrolase	0.000865435526635
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRK1	 Ornithine cyclodeaminase mu crystallin family protein	0.00701520192801
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0C0L1	 ATP dependent protease ATPase subunit HslU	0.00712517067454
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9REU8	 Poly  alpha glucosyltransferase	0.00712112770919
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8S5T3	 Transcription termination protein NusB	0.00711794480716
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C9LYN2	 Diaminopimelate decarboxylase	0.00711783767377
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1JFV4		0.00665721818849
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1JFV4		0.000460617181985
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G723	 Staphylococcal secretory antigen ssaA2	0.00711476620655
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X2E3	 Holliday junction resolvase RecU	0.00711467458673
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1S3	 Phosphatidylglycerophosphatase B like protein	0.00711341288136
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DWE6	 Constitutive fructose permease	0.00711096633177
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P05100	 DNA 3 methyladenine glycosylase 1	0.00698065545836
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F2I8E8	 Branched chain amino acid ABC transporter, permease protein	0.00632167055943
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F2I8E8	 Branched chain amino acid ABC transporter, permease protein	0.00078767403323
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W0IR18	 C4 dicarboxylate ABC transporter	0.00710858635573
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR39		0.00710770167128
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WVF0	 Glucose sorbosone dehydrogenase	0.00710692275048
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN84		0.00710575187519
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IQH4	 Phage integrase family protein	0.007102719963
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AW17	 Cell division protein ftsA	0.00669169396602
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A8AW17	 Cell division protein ftsA	0.000410391673337
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GCC9	 Flagellar biosynthetic protein flhB	0.00709963847725
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B573	 Allergen V5 Tpx 1 family protein	0.00709808188009
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RHA1		0.00709418053167
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IVA2	sodium symporter	0.00709282170767
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46856		0.00709267827927
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5EIL9	 Tandem five TM family protein	0.00709230222278
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEF6	 Transcriptional regulatory protein DpiA	0.0070919431687
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CIS4	 N acetyldiaminopimelate deacetylase	0.00706884196591
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2N5X4	 Transcription factor	0.00708728931765
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E9C0U9	 GTP binding protein TypA	0.00708289131839
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R7BPT0	 2 nitropropane dioxygenase NPD	0.00672391888899
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R7BPT0	 2 nitropropane dioxygenase NPD	0.000356953018253
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O32799	 Formate acetyltransferase	0.00671762592483
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_O32799	 Formate acetyltransferase	0.000293214818468
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_V8AQW0		0.00707990040009
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KU62	 Sulfide quinone reductase	0.0070782857017
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DU03		0.0070771477826
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HP10		0.00707407321978
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q182G9	 Uracil DNA glycosylase	0.00707334058319
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMX3	 Phosphoadenosine phosphosulfate reductase	0.00703912018221
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_R4XS51	 ABC transporter, periplasmic spermidine putrescine binding protein PotD 	0.00707009889422
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WWA3	 Glutathione dependent formaldehyde activating, GFA	0.00706836545846
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PL72		0.00702009666317
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9A1B9		0.00623607965573
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9A1B9		0.000827998694714
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K767		0.00706384635046
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P02992	 Elongation factor Tu, mitochondrial	0.00475643502202
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P02992	 Elongation factor Tu, mitochondrial	0.00203803746886
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P02992	 Elongation factor Tu, mitochondrial	0.000172371819055
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T1ZGA3	 Phosphomethylpyrimidine kinase	0.00693029333183
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T1ZGA3	 Phosphomethylpyrimidine kinase	0.000133198637928
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ALC4	 Translation initiation factor IF 2	0.00705696956821
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKF2	 Aminotransferase, class II	0.00705525961169
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CRB9	 Energy coupling factor transporter ATP binding protein EcfA1	0.00641393619466
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A3CRB9	 Energy coupling factor transporter ATP binding protein EcfA1	0.000605015072758
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSQ8	 Two component sensor histidine kinase	0.00704715821951
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C9RRF6	 von Willebrand factor type A	0.00695933195907
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P40118	 Protein CbxX, chromosomal	0.00704426029352
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRZ8		0.00704335690526
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q88U22	 Phosphoribosylaminoimidazole succinocarboxamide synthase	0.00704294061338
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GAV6	 Coenzyme A disulfide reductase	0.00704256225402
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W0ARZ1		0.00669313171575
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q6D2R7	 NADH quinone oxidoreductase subunit A	0.00693165883307
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U0I9	 Putative competence damage inducible protein	0.00661939552248
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B4U0I9	 Putative competence damage inducible protein	0.000420851828362
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N5T0	 Bacteriocin biosynthesis cyclodehydratase, SagC family	0.0070382605176
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KPX4		0.00703467902835
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5DRL9	 Nitroreductase family protein	0.00703396681474
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P0AC06	 Flagellar biosynthetic protein FliP	0.00382224743967
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC06	 Flagellar biosynthetic protein FliP	0.00320881625849
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0JK96	 Hit like protein involved in cell cycle regulation	0.00702723697896
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KRV7		0.00315775024288
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKH6		0.00702471314784
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C3BKL0	 ABC transporter	0.00702448585152
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9LC43	 TagG homolog	0.00702182922288
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSC8	 Ribonuclease HIII	0.00648688717272
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DSC8	 Ribonuclease HIII	0.00053400490564
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L709	 Porphobilinogen deaminase	0.00702003895026
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I9KTK5	 Oligoendopeptidase F	0.00701919978426
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FH51	 Phosphate import ATP binding protein PstB	0.00691837309021
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8DI84	 ABC transporter, ATP binding protein	0.00679996411329
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8DI84	 ABC transporter, ATP binding protein	0.000216198217452
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89XS8	 Branched chain amino acid transaminase	0.00701306306065
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q88ZS6	 Glucosamine 6 phosphate deaminase	0.00657727752717
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q88ZS6	 Glucosamine 6 phosphate deaminase	0.000435401425669
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K567		0.00699986799405
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DTP8		0.00700716094871
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HL30	 Transcriptional regulator, LysR family	0.00700652031444
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_N6AES7	 Hyperosmolarity resistance protein Ebh	0.00700127476439
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4T381	 Protein NrdI	0.00697174801371
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNS3	 Integrase	0.00700012159172
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPL1	 Aminotransferase	0.00699586698646
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5M1U2	 D alanyl D alanine carboxypeptidase	0.00653122877231
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5M1U2	 D alanyl D alanine carboxypeptidase	0.000463838193177
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5UQU4	 TetR family transcriptional regulator	0.00699419810803
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PVT0		0.00699415671682
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1ZB21	 ABC transporter related	0.00699330579165
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPL9	 Lipoprotein VsaC	0.00699217953434
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9P7	 ATP dependent RNA helicase DeaD	0.00696544648529
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QFB0		0.00698836329808
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q89DJ1	 Ribose phosphate pyrophosphokinase	0.00685599170526
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3JRF0	 Peptide methionine sulfoxide reductase MsrB	0.00698555275381
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_L0SNC2	 Transketolase	0.00698488708022
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5WYS7	 ICESt1 ORFJ phage replication initiation factor	0.00698378720858
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q49115	 Protein MeaA	0.00698220737235
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5WZX2	 Poly beta hydroxybutyrate polymerase domain protein	0.00698217190882
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSD9		0.00693634977948
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4TKN5	 UPF0299 membrane protein YPDSF_1460	0.0069681686484
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3STF6		0.00696543281902
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPK4		0.00696493977933
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SFE6		0.00558388984476
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SFE6		0.00137551069679
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1F1	 Phage terminase like protein large subunit	0.00615274542591
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWJ6	 Transcriptional regulator, GntR family	0.00695486220072
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0KQ95	 Transfer complex protein TraG	0.00695370396957
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQ58	 ATP utilizing enzyme of the PP loop superfamily	0.0069522904474
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7IGG7	 ABC transporter related	0.00695225084512
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A9FT06	 Succinate dehydrogenase	0.00695099266909
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YW86	 D specific D 2 hydroxyacid dehydrogenase	0.00694950186956
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H2A790	 Amino acid ABC transporter, amino acid binding permease protein	0.00694915924784
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S2XRA0	 Heme A synthase	0.00694829067516
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WZS3	 Lipase	0.00694528410141
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X2GZX1	 rRNA methyltransferase	0.00693827362136
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0DC56	 UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.00633592241462
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0DC56	 UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.000602197267757
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IX14		0.00693226820311
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P37518	 Ribosome binding ATPase YchF	0.0065747951502
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P37518	 Ribosome binding ATPase YchF	0.00035671991234
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2N5R5	 Kinase associated protein B	0.00518914356259
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D2N5R5	 Kinase associated protein B	0.00174049024111
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FHG5	 Glutamate decarboxylase beta	0.00692914569682
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8GP69	 Phospho N acetylmuramoyl pentapeptide transferase	0.00692868397097
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E7B4R3	 Trap type C4 dicarboxylate transport system,large permease component	0.0069281465322
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9JTR3	 ATP synthase gamma chain	0.00692533288698
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q5JII2	 Ferritin like protein	0.00692482327901
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KT97	 ABC transporter related	0.00692340227199
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6U596	 Ribonuclease P protein component	0.00692138539598
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A2RGD6		0.00691741990612
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7WZL5	 NADPH dependent 7 cyano 7 deazaguanine reductase	0.00663649326558
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O07329	 Catabolite control protein A	0.00670268703459
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_O07329	 Catabolite control protein A	0.000209737418657
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0GPC1	 Site specific recombinase XerD	0.00690368958362
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B5E1P6	 Aspartyl glutamyl tRNA amidotransferase subunit B	0.00651339927971
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B5E1P6	 Aspartyl glutamyl tRNA amidotransferase subunit B	0.000390060466013
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1L9		0.0069027929749
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9A1V9	 50S ribosomal protein L6	0.00690157343391
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F0VTB0		0.00689785729893
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3ST50		0.0068943076867
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SIH2		0.00689266846212
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R4Y9R8	 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.00689123263561
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P26289	 NADH quinone oxidoreductase subunit 4L, chloroplastic	0.00689030063715
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRZ3		0.00689028896274
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LHW6	 Penicillin binding protein	0.00688832669889
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_L0KL03	 ABC type sugar transport system, periplasmic component	0.00688566742008
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z136		0.0068841263421
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A264	 Outer membrane protein C	0.00688348972655
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9JEG2	 Deoxyguanosinetriphosphate triphosphohydrolase like protein	0.00688084063595
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W967	 RNA polymerase binding transcription factor DksA	0.00688044668922
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEB1	 Sulfate transport system permease protein CysW	0.00372927539724
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P0AEB1	 Sulfate transport system permease protein CysW	0.00314608560259
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5LY98	 Probable dual specificity RNA methyltransferase RlmN	0.00685762164293
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS12		0.00687051826498
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F3T0N3		0.00687028032512
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T572	 Integrase	0.00686645937592
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X1Z3		0.00678604040823
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q88GW8	 5 dehydro 4 deoxyglucarate dehydratase	0.00673285942181
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TVX8		0.00686137751272
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q53212	 Putative peroxiredoxin y4vD	0.00685800599334
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76573		0.00685690000565
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q038S0	 Histidine  tRNA ligase	0.00685305859164
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q929Y1	 UDP N acetylmuramoylalanine  D glutamate ligase	0.00640920063475
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q929Y1	 UDP N acetylmuramoylalanine  D glutamate ligase	0.000447098959534
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P66717	 Probable DNA directed RNA polymerase subunit delta	0.00556286451059
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P66717	 Probable DNA directed RNA polymerase subunit delta	0.00128885893191
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1MMP4	 50S ribosomal protein L20	0.00685142263857
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2G2B1	 HTH type transcriptional regulator SarT	0.0068513879717
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L9Y1	 PTS system mannitol specific EIICB component	0.00684310211878
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI00035C8B7E	 hypothetical protein	0.00329626637797
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H4FT59	 Pyridine nucleotide disulfide oxidoreductase, dimerization domain protein	0.0053621386315
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_H4FT59	 Pyridine nucleotide disulfide oxidoreductase, dimerization domain protein	0.00148099190938
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SJW9		0.00472867125348
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SJW9		0.00211408669761
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H2A5L6	 Methionine aminopeptidase	0.00569680237033
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_H2A5L6	 Methionine aminopeptidase	0.00114516036147
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89EB1	 Bll7176 protein	0.00684014999954
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6X5J7	 TonB dependent receptor	0.00683966302872
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRI9	 50S ribosomal protein L13	0.00453198486309
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CRI9	 50S ribosomal protein L13	0.00230612197875
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPS1	 Glucose 6 phosphate 1 dehydrogenase	0.00683493557467
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8V4	 Sensory transduction protein LytR	0.00683395993918
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M8R009		0.00683258395713
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJC9	 MgtC SapB transporter	0.00682993353233
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2VH10	 Non canonical purine NTP phosphatase	0.00682899278441
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WVG4		0.00653007314838
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P00148	 Cytochrome c	0.00682773100947
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AA96		0.00673097117008
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q47BQ9	 Tripartite ATP independent periplasmic transporter, DctQ component	0.00679454931657
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O34760	 Probable quorum quenching lactonase YtnP	0.00681265183081
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6VKW6	 ATP dependent zinc metalloprotease FtsH	0.00641716677968
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C6VKW6	 ATP dependent zinc metalloprotease FtsH	0.000391041568753
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI000468DB65	 leucyl tRNA synthetase	0.0068100667639
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P10346	 Glutamine transport ATP binding protein GlnQ	0.0065145934795
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P10346	 Glutamine transport ATP binding protein GlnQ	0.000292237195099
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F2MQQ8	 Tagatose 6 phosphate kinase	0.00680347078296
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HL20	 Lipoprotein, putative	0.00680314231173
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D3NZU9		0.00679997995868
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S5N864	 Molecular chaperone GroES	0.00679993404402
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9JS61	 Dihydroxy acid dehydratase	0.00440244375944
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9JS61	 Dihydroxy acid dehydratase	0.00192736500265
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9JS61	 Dihydroxy acid dehydratase	0.000265514619032
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JS61	 Dihydroxy acid dehydratase	5.499159453e-05
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8D2	 Cyclic pyranopterin monophosphate synthase	0.00679483542721
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2YPH2	 Ornithine carbamoyltransferase	0.0067935800675
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5M4T5		0.00506116282729
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5M4T5		0.00173062267019
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X232	 Anthranilate phosphoribosyltransferase	0.00679139055714
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HP06	 ComG operon protein 2, putative	0.00678804058242
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2IAX9	 Tyrosine  tRNA ligase	0.00674076442911
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8Z2X7	 Autoinducer 2 import system permease protein LsrD	0.00413914728221
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8Z2X7	 Autoinducer 2 import system permease protein LsrD	0.00264567982378
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZMN3	 Iron transporting membrane protein, putative	0.00678278601764
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PMN1		0.00678058003937
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CEG3	 Aminopeptidase C	0.00584909038863
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9CEG3	 Aminopeptidase C	0.000930699443829
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P57874	 Ferrochelatase	0.00410433875241
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P57874	 Ferrochelatase	0.00267000093513
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P68188	 Maltose maltodextrin import ATP binding protein MalK	0.00667471773582
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IX61		0.0067281387059
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D2NAN7		0.00677004480579
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L4Z3	 3 oxoacyl [acyl carrier protein] synthase 3	0.00659909140502
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWP4	 ABC sugar transporter, inner membrane subunit	0.00676620850471
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q45582	 N acetylmuramic acid 6 phosphate etherase	0.00675913035091
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8NUG3		0.00676193582505
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B0CHX9	 Adenine phosphoribosyltransferase	0.00663158708845
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9AHJ5	 Interrupted beta D glucuronidase	0.00675325884508
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RMN6	 Phage protein	0.00675168301807
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I4DYP2	 RNA binding protein	0.00675145152469
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YGB9		0.00674946284911
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N6Q3		0.00654815885935
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI00005C7F68	 hypothetical protein	0.00649774913013
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FH00	 Alanine dehydrogenase 1	0.00674507211225
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99V46	 Staphopain B	0.00674189055317
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A0A023VMY7	 Peptidase M16	0.00636784785767
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A0A023VMY7	 Peptidase M16	0.000371921195675
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI0003C168CC		0.00673903085798
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QGP9		0.00673950116629
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04IA2	 Glucose 6 phosphate isomerase	0.00603032919414
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q04IA2	 Glucose 6 phosphate isomerase	0.000474569644549
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q04IA2	 Glucose 6 phosphate isomerase	0.000234469851147
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F6IG84	 Cytochrome bd I oxidase subunit II	0.00673935416198
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B1HZV3	 HTH type transcriptional regulator	0.0067377367663
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37649	 Protein YhjK	0.00673628730647
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J9ZII5		0.00673616922898
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E3CJI9	 DNA ligase	0.00673548855369
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3ST65	 Fructan hydrolase FruB	0.00673219900058
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2H8		0.00673097117008
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I3FUW1		0.00673097117008
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C8B1	 Succinylornithine transaminase	0.0053312007067
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1C8B1	 Succinylornithine transaminase	0.00100991072153
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1C8B1	 Succinylornithine transaminase	0.000365739738134
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLB6	 Glycine oxidase, putative	0.00672315439205
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P56900	 Transketolase	0.00648732057773
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P56900	 Transketolase	0.000171132392321
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P58313	 UTP  glucose 1 phosphate uridylyltransferase	0.00629558227456
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G0LV16	 CAAX amino terminal protease family protein	0.00670528262069
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRY8		0.00670361025964
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5HX70	 Ethanolamine utilization protein EutP	0.00670198765282
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D4MEH6	 Hemolysins and related proteins containing CBS domains	0.00630004208535
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D4MEH6	 Hemolysins and related proteins containing CBS domains	0.000399378597983
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LSI2	 ABC transporter, permease protein	0.00669598708021
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H8LI74		0.00563982714077
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_H8LI74		0.00105332457202
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FZ95	 Cell division protein FtsL	0.00387862239488
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FZ95	 Cell division protein FtsL	0.00281443720416
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PP90	 TRAP T family transporter, small  inner membrane subunit	0.0065887347605
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2N4E0	 Peptidase propeptide and ypeb domain protein	0.00669119627097
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRZ2		0.00668982400315
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B1MZ61	 Glycine  tRNA ligase alpha subunit	0.00547522982148
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B1MZ61	 Glycine  tRNA ligase alpha subunit	0.00118691088411
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WTG8	 Methyl accepting chemotaxis sensory transducer	0.00668889381015
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFD2	 NADH quinone oxidoreductase subunit E	0.00524526079583
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AFD2	 NADH quinone oxidoreductase subunit E	0.00134048348113
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6ISP7	 Phosphopantetheine adenylyltransferase	0.00663642667208
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P68801	 Staphylokinase	0.00668798870034
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SR62		0.00668431442719
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4W448	 ATPases with chaperone activity, ATP binding subunit	0.006683021575
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WUJ3	 ABC transporter permease	0.00667926139281
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KP74	 Branched chain amino acid aminotransferase	0.00667922767162
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8E4M4		0.00618717014836
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E4M4		0.000489527068517
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_X4ZCF7	 ABC transporter family protein	0.00590968113711
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X4ZCF7	 ABC transporter family protein	0.000764844394014
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B7GH97	 ABC type phosphate transport system, permease component	0.00667380763727
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24197		0.00666949560939
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9KA05	 Ribonuclease 3	0.00666896843111
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7HVB6		0.0061919308326
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A7HVB6		0.000438548380158
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FGH0	 Superoxide dismutase [Mn Fe] 1	0.00664009886802
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1RGX4	 Lipoyl synthase	0.00665942311861
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PLE0		0.00383469911358
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KN41		0.00666305782894
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0B261	 MaoC domain protein dehydratase	0.00661161999165
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YYN3	 Protein L isoaspartate O methyltransferase	0.00666145467484
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GGT1	 Elastin binding protein EbpS	0.00665982698642
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TYM1	 Putative  citramalate synthase CimA	0.00664253019899
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SHR9	 C4 dicarboxylate transporter malic acid transport protein	0.00665286198343
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0AAE8	 Choline carnitine betaine transporter	0.00665180854344
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AZI4	 Penicillin binding protein 1B	0.00619245912332
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A8AZI4	 Penicillin binding protein 1B	0.000458596103965
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CP81	 Maltose maltodextrin transport permease	0.00665061610302
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DND7		0.00628958362766
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DND7		0.000360334306718
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A0A023SIR8	 rRNA methyltransferase	0.00556680525349
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A0A023SIR8	 rRNA methyltransferase	0.00108282478382
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKD3	 Flagellar motor switch protein FliG	0.0066479826873
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UI30	 ATP dependent DNA helicase RecQ	0.00664490749811
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5QFG0	 Oligopeptide dipeptide ABC transporter, ATP binding protein like protein	0.00664114988499
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U5P5Q4	 Competence protein CglA	0.00645353711176
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_U5P5Q4	 Competence protein CglA	0.000185596631526
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CP92	 Membrane spanning protein	0.00663819073831
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1QJR5	 S adenosylmethionine synthase	0.00659378448586
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SI80	 Disulfide bond regulator	0.00663613398054
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C7MB99	 Methyltransferase family protein	0.00663531827391
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U350		0.00651190128841
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_X4YVT9	 Nitronate monooxygenase family protein	0.00637786441238
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X4YVT9	 Nitronate monooxygenase family protein	0.000127319757313
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X4YVT9	 Nitronate monooxygenase family protein	0.00012683990898
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WXE6		0.00663154819488
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DWJ3		0.00655785004054
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U5L575	 Oxidoreductase	0.00662974886885
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q67NS9	 GTPase Der	0.00600952265066
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q67NS9	 GTPase Der	0.00062009746349
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q16B11	 Membrane protein, putative	0.00644693137352
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0A2U6	 Zinc transport system ATP binding protein AdcC	0.00647049430916
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0A2U6	 Zinc transport system ATP binding protein AdcC	0.000157265681548
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57LQ8	 Acetyltransferase YpeA	0.00651451578544
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8E4F9	 Probable tRNA sulfurtransferase	0.00618865462924
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E4F9	 Probable tRNA sulfurtransferase	0.000433933674884
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P59199	 DNA polymerase I	0.00645796047217
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P59199	 DNA polymerase I	0.000164368074045
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P74741	 Bifunctional purine biosynthesis protein PurH	0.006618402139
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUY4	 Putative two component membrane permease complex subunit SMU_746c	0.00649456004552
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DUY4	 Putative two component membrane permease complex subunit SMU_746c	0.000125890981982
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8DH56	 NmrA family protein	0.00661171334624
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Z4JX05	 Aryl phospho beta D glucosidase BglA	0.00661135796602
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YN56		0.00661069507405
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7N8L4	 NAD NADP dependent betaine aldehyde dehydrogenase	0.0053755831002
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7N8L4	 NAD NADP dependent betaine aldehyde dehydrogenase	0.00108083474831
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7N8L4	 NAD NADP dependent betaine aldehyde dehydrogenase	0.000146868739106
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ASB3	 Membrane transport family protein	0.00660925092787
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8LGD6		0.006608863279
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49V01	 Ribonuclease M5	0.00660776072376
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI00003799C3	 hypothetical protein	0.00166648199247
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IR33	 Prophage antirepressor	0.00660760432173
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P63419		0.00660557314349
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A0A024DEM0	 LrgA	0.00660503960676
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F0L985		0.00660488427962
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FI15	 Bifunctional protein FolD	0.00659253563216
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P65644	 Ethanolamine utilization cobalamin adenosyltransferase	0.00660096755602
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AMF4	 ABC transporter, periplasmic substrate binding protein	0.00659874272806
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q09AF1	 Ribose transport system permease protein RbsC	0.00659704121345
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8M6	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00659588848635
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L884	 Energy coupling factor transporter ATP binding protein EcfA2	0.00658609402613
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABL2	 Cytochrome c type protein NrfB	0.00656008364889
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DWM8	 Hypoxanthine guanine phosphoribosyltransferase	0.00658996402895
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R9I6	 RNA polymerase sigma 32 factor 2	0.00658958539911
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AR59	 Long chain fatty acid  CoA ligase	0.00658895723426
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49YA1	 Uroporphyrinogen III synthase	0.00658858911143
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKM2		0.00658558831419
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B0I1W2		0.00658552033146
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45322	 Molybdenum transport system permease protein ModB	0.00426823923841
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P45322	 Molybdenum transport system permease protein ModB	0.00231513735074
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMP0	 Aspartate carbamoyltransferase	0.006581715483
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9E9D0		0.00658121682418
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03K00	 ABC type multidrug transport system, permease component	0.00657964930594
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D3P3A4	 Transposase	0.00651590444006
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PN16	  malyl CoA thioesterase	0.0048546051314
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A3PN16	  malyl CoA thioesterase	0.000220446654038
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5FKU9	 Cell division protein FtsZ	0.00593311002835
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5FKU9	 Cell division protein FtsZ	0.000642684420515
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WZN3		0.00657535594373
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G7SHI8	 Phosphatase	0.00657440135329
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9KNV7	 Tryptophan  tRNA ligase	0.00657322113224
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KX10	 ABC branched chain amino acid transporter, periplasmic ligand binding protein	0.00657312110568
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N3Z5		0.00637874434509
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PSA8	 Oligopeptide dipeptide ABC transporter, ATPase subunit	0.00656771437168
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0JR51	 TetR family transcription regulator	0.00656621415858
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWX2	 RNA polymerase, sigma 24 subunit, ECF subfamily	0.00656585307449
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8R8R7	 Galactokinase	0.00644110789886
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8R8R7	 Galactokinase	0.000116318626209
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AM27	 Pseudouridine synthase	0.00656228929679
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GEB2	 Transcriptional regulator, BadM Rrf2 family	0.00654732642842
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I4E0F8		0.00656056936653
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P95780	 dTDP glucose 4,6 dehydratase	0.00610596679188
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P95780	 dTDP glucose 4,6 dehydratase	0.000450828773395
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GHV7	 Iron regulated surface determinant protein B	0.00655959627301
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HEW0	 Serine protease SplA	0.00655206671721
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I1ZKQ0	 Fe2+ Zn2+ uptake regulation protein	0.00654912739172
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SU84	 Transcriptional regulator	0.00654738569894
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P52230	 Thioredoxin 1	0.00654259383255
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P58740	 Undecaprenyl diphosphatase 1	0.00630285350779
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0A037YPE8		0.00636647539356
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5LY46		0.00624464667656
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9RWJ0	 Argininosuccinate lyase	0.00595747667574
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9RWJ0	 Argininosuccinate lyase	0.000558726597923
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q45539	 Putative glycosyltransferase CsbB	0.0065265348309
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H6LML3		0.0065324114155
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O69077	 Aspartokinase	0.00558983141996
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O69077	 Aspartokinase	0.00094078179332
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DKA9	 Teichoic acid biosynthesis protein B	0.00652952123429
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7D2I2	 Acetate kinase	0.00652822023156
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C9ABJ9	 Fructose 6 phosphate aldolase	0.00652692259895
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O33517	 Protein translocase subunit SecD	0.00652635029318
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q039P7	 tRNA specific 2 thiouridylase MnmA	0.00557275007841
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q039P7	 tRNA specific 2 thiouridylase MnmA	0.000589326592132
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q039P7	 tRNA specific 2 thiouridylase MnmA	0.000360025630381
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I4E028	 Hydrolase homolog	0.00652495912847
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRZ4		0.00652332307445
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7ZH46	 Glutamate dehydrogenase	0.00652075679321
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQE1	 Galactosamine containing minor teichoic acid biosynthesis protein	0.00652019302053
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q3K425	 Chromosomal replication initiator protein DnaA	0.00651717881743
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J9YQL3	 DedA family protein	0.00616458989286
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YQL3	 DedA family protein	0.000351181104529
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P71067	 L lactate permease	0.00564416156719
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P71067	 L lactate permease	0.000502879651103
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P71067	 L lactate permease	0.000289371370026
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P71067	 L lactate permease	7.77847207683e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0A1I8	 Flagellar basal body rod protein FlgC	0.00508521173563
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A1I8	 Flagellar basal body rod protein FlgC	0.00142295335039
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJJ8		0.00617915151381
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7DHA8		0.00633442892043
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33570	 Transketolase 2	0.00642987590864
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7GTX6	 Pseudouridine synthase	0.00650370084511
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WQH4		0.00330073534548
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI000382BE44	 hypothetical protein	0.00571002658998
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N3T8		0.00650105913942
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5X9H7	 Holliday junction ATP dependent DNA helicase RuvA	0.00570162657041
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5X9H7	 Holliday junction ATP dependent DNA helicase RuvA	0.000799370569717
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9UZU7	 Phosphate import ATP binding protein PstB	0.00636349675563
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q9UZU7	 Phosphate import ATP binding protein PstB	0.000130445177716
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U4E4		0.00650024859914
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J1B0P3		0.00649999800358
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HG20	 Diaminopimelate decarboxylase	0.00647791720839
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9MIT8		0.00649288652755
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2N3E8		0.00646095685679
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C1C967	 N anthranilate isomerase	0.00648966083748
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L449	 Putative antiporter subunit mnhG2	0.0064885333081
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULS3	 Phosphoglycolate phosphatase	0.00648762523643
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X5E2	 30S ribosomal protein S8	0.00332192390973
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X5E2	 30S ribosomal protein S8	0.00316340216286
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C0MDU1	 Response regulator protein	0.00648384549908
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q06172	 Flagellar basal body rod protein FlgG	0.00647865275734
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IXU4	 Transcriptional regulator, IclR family MhpR	0.0064781970356
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5APK9	 DMSO TMAO sensor hybrid histidine kinase	0.00647801236685
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1J5E1	 Glycine  tRNA ligase beta subunit	0.00606044421248
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1J5E1	 Glycine  tRNA ligase beta subunit	0.000414592475678
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKC3	 Membrane protein, putative	0.00647363723046
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TRP1	 Carbonic anhydrase acetyltransferase isoleucine patch superfamily protein	0.00647352177415
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P58118	 Protein translocase subunit SecY	0.00613998186832
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P58118	 Protein translocase subunit SecY	0.000332257853633
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q82Z40	 DNA directed RNA polymerase subunit beta	0.0064622357153
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KT87	 Periplasmic sensor signal transduction histidine kinase	0.00647005725661
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F0VS50	 Peptide nickel transport system substrate binding protein	0.00618985539886
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F0VS50	 Peptide nickel transport system substrate binding protein	0.000279086679677
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B0E4	 Membrane protein insertase YidC	0.00646718903224
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R5I2I4	 Phospho 2 dehydro 3 deoxyheptonate aldolase	0.00464141847983
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5I2I4	 Phospho 2 dehydro 3 deoxyheptonate aldolase	0.00155671291281
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R5I2I4	 Phospho 2 dehydro 3 deoxyheptonate aldolase	0.000264084553313
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV58	 Site specific recombinase and resolvase superfamily	0.00646201646613
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWL8	 Periplasmic glucan biosynthesis protein, MdoG	0.00646117034667
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0NEL3		0.00646084456315
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSS6		0.00646024031884
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YQA3		0.00645938250863
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98H85	 Cation efflux system protein	0.0064590335637
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5WEL9	 Glutamate racemase	0.00645568781632
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P12758	 Uridine phosphorylase	0.00645517062473
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q74I62	 Putative ABC transporter ATP binding protein LJ_1704	0.00603002078698
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q74I62	 Putative ABC transporter ATP binding protein LJ_1704	0.000424512194917
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB10		0.00645443240522
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L629	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0064521633962
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVN6		0.00040224927311
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G8P8U5	 Transporter	0.00486790692516
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G8P8U5	 Transporter	0.0015784281536
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5ZH83	 Phosphohydrolase	0.00644407851167
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P42505	 Trans acting regulatory protein HvrA	0.00644325956312
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C5BV15	 Mandelate racemase muconate lactonizing protein	0.00643821471685
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D6SHJ8	 Bacterial membrane protein YfhO	0.0064324516115
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77183		0.00594440461867
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P77183		0.000487751534064
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J2S1		0.00643197142278
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8E2G3	 Phosphoribosylformylglycinamidine synthase, putative	0.00607202495589
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E2G3	 Phosphoribosylformylglycinamidine synthase, putative	0.000357560370922
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRM1	 Putative TrmH family tRNA rRNA methyltransferase	0.00642816204074
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CM87	 Cation transporting ATPase, E1 E 2 family, putative	0.00612503358458
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A3CM87	 Cation transporting ATPase, E1 E 2 family, putative	0.000301594282399
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76632	 CRISPR system Cascade subunit CasB	0.00642592091503
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KL58	 5 oxoprolinase	0.0064238014191
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5DRJ8	 Phosphate ABC transporter, permease protein PstA	0.00642294961085
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9EAQ4	 Oligopeptide ABC transporter ATP binding protein OppF	0.00642255924961
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q71YA8	 4 hydroxy tetrahydrodipicolinate reductase	0.00642208067694
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49YE7		0.00642074529592
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YX06	 Serine protease HtrA like	0.00641793614513
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNV7	 ComE operon protein 1, putative	0.00641752600621
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37147	 UPF0716 protein FxsA	0.00641609151883
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4Z8G3	 Glycogen debranching protein	0.00590417540964
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4Z8G3	 Glycogen debranching protein	0.000501833799826
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0V0U2	 Cell division initiation protein DivIVA	0.00605811308482
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T0V0U2	 Cell division initiation protein DivIVA	0.000346957276804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8H883	 Putataive InsB from Escherichia coli	0.00640420572518
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33218	 Inner membrane protein YebE	0.00640265598781
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C1V0	 Regulator of sigma D	0.00639994894055
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3TQH5	 HNH endonuclease family protein	0.0063986374888
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2S8H5	 3 hydroxydecanoyl [acyl carrier protein] dehydratase	0.00635341923365
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X9N846		0.00635809856185
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HMY5	 Accessory gene regulator protein B	0.00636348466452
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2TY69	 L ribulose 5 phosphate 3 epimerase UlaE	0.00634383127151
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSG3	 Aspartate  tRNA ligase	0.00638628597828
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q67Q92	 Queuine tRNA ribosyltransferase	0.00542816708414
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q67Q92	 Queuine tRNA ribosyltransferase	0.000740267192043
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q67Q92	 Queuine tRNA ribosyltransferase	0.000205152816232
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CU74		0.00573789698293
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU74		0.000638908573758
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8YJ91	 Chaperone protein ClpB	0.00637413808556
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SW45	 Enoyl ACP reductase	0.00637362556308
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P19779		0.00637302749706
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T5E5	 Transcriptional regulator	0.00636819986288
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S6BC90		0.00635351589849
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CN73	 Nitrate reductase delta chain	0.00636205926166
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVA6	 Mannose 1 phosphate guanylyltransferase  mannose 6 phosphate isomerase, type 2	0.00635482310048
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9KTK8	 tRNA sulfurtransferase	0.00359026755361
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KTK8	 tRNA sulfurtransferase	0.00276428707623
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8PSU5	  binding domain protein	0.00635363848367
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZSA7	 Monofunctional biosynthetic peptidoglycan transglycosylase	0.00634329323447
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P45595	 Phosphoenolpyruvate protein phosphotransferase	0.00597884404776
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P45595	 Phosphoenolpyruvate protein phosphotransferase	0.00030590305211
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P45595	 Phosphoenolpyruvate protein phosphotransferase	6.54339387901e-05
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJH3	 MATE efflux family protein	0.00634885039229
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8FEQ2	 Pseudouridine synthase	0.00603738008445
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A8FEQ2	 Pseudouridine synthase	0.000309707262429
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DXP9	 Transcriptional antiterminator, BglG family	0.00608633564549
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DXP9	 Transcriptional antiterminator, BglG family	0.000259762268849
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNR7	 DNA intergrase recombinase, phage integrase family	0.00634463204423
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U3D2	 Glycerol 3 phosphate acyltransferase	0.00618025943495
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B4U3D2	 Glycerol 3 phosphate acyltransferase	0.000158004018075
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31434	 Alpha xylosidase	0.00633532363882
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U5I2	 Cationic amino acid transporter APC superfamily	0.00633484831447
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WWM3	 Outer membrane lipoprotein carrier protein LolA	0.00633409533131
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30744	 L serine dehydratase 2	0.00632219172519
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G0LV60	 Integrase	0.00632973541497
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8I069	 Spermidine putrescine binding periplasmic protein	0.00622878205511
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8I069	 Spermidine putrescine binding periplasmic protein	9.50702142679e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G6KV35	 Leucyl tRNA synthetase	0.00632326894216
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNS1	 Histidine  tRNA ligase	0.00630279959578
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRE1		0.00623988865022
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9PDT8	 Enolase	0.00410805602387
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9PDT8	 Enolase	0.00100600073885
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9PDT8	 Enolase	0.00066741504477
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9PDT8	 Enolase	0.000295720211908
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9PDT8	 Enolase	0.000127319757313
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9PDT8	 Enolase	0.000106840812223
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU59		0.00629740156832
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YAI5	 Nitrogen regulation protein NIFR3	0.00631675998467
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTT3		0.00631028547195
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49YF5	 OsmC like protein	0.00630916891596
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WVM5		0.00579104271692
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WVM5		0.000517125254172
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B1U3	 Magnesium transporter	0.00630601421368
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1R011	 3 octaprenyl 4 hydroxybenzoate carboxy lyase	0.00629847605352
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C7C7I3		0.00574326676185
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C7C7I3		0.000543340501239
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9AHT6	 Pneumococcal vaccine antigen A	0.00630085462237
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P95784	 ATP synthase subunit a	0.00629908142068
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P37079	 Sorbitol 6 phosphate 2 dehydrogenase	0.00629888051771
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U0D0	 Recombination factor protein RarA	0.00629848319732
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7DZA1	 Transcriptional regulator	0.00629769895998
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q99Y73	 Endonuclease MutS2	0.00629452274305
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9TX51	 YlmE	0.00628080698987
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E7PVL4	 ATP dependent RNA helicase	0.00629553385878
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57NU9	 GTP cyclohydrolase 2	0.00456935706837
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q57NU9	 GTP cyclohydrolase 2	0.00172566659646
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5QCP2	 Carboxynorspermidine carboxyspermidine decarboxylase	0.00608488264333
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0C161	 Methionine  tRNA ligase	0.00628017581849
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZNL5		0.00629025820331
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SQI4	 Putative glutathione reductase	0.00629008381187
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8Y270	 Aspartate  tRNA ligase	0.00577773578495
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q8Y270	 Aspartate  tRNA ligase	0.00050794695928
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7IKH6	 Chitin deacetylase	0.00628899297037
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WNW7	 IS66 Orf2 family protein	0.00622971563621
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_X4ZFB4		0.00581939295259
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X4ZFB4		0.00046713674973
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3THN5	 ABC transporter, periplasmic solute binding protein	0.00628587570845
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O68575	 Pyruvate formate lyase activating enzyme	0.00625134427369
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0U356	 ABC transporter, ATP binding permease protein	0.00628410334138
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O67161	 Glyceraldehyde 3 phosphate dehydrogenase	0.00621998575539
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S9QSU8	 DNA polymerase III, beta subunit	0.00628251313237
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLR1		0.00558311750514
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27596	 Tungsten formylmethanofuran dehydrogenase, subunit H	0.00627907180425
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HNA3	 Signal transduction protein TRAP	0.00451833367378
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNA3	 Signal transduction protein TRAP	0.0017601875758
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PG41		0.00627689668783
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76319		0.00627609943844
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77296		0.00620836032358
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DTW1		0.00627226446032
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KS80		0.00591515903757
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WZ17		0.00626901000495
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P95781	 8 oxo dGTP diphosphatase	0.0062689805632
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B9DRH4	 Haloacid dehalogenase like hydrolase	0.0051114721543
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B9DRH4	 Haloacid dehalogenase like hydrolase	0.00115627349167
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C7TN90	 ABC transporter, amino acid binding protein	0.00604101873104
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C7TN90	 ABC transporter, amino acid binding protein	0.000226326412812
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AES3	 Glucarate dehydratase	0.00568585516615
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P0AES3	 Glucarate dehydratase	0.000541467665364
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04I02	 Transcriptional regulator AdcR	0.00626697232465
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV81		0.00580840139965
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C542	 Glucosyltransferase 	0.00626509716623
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q720G3	 Gamma glutamyl phosphate reductase	0.00567218393519
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q720G3	 Gamma glutamyl phosphate reductase	0.000373283541773
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q720G3	 Gamma glutamyl phosphate reductase	0.000219151533047
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O32167	 Methionine binding lipoprotein MetQ	0.00626397245349
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T4S9	 Cation efflux pump 	0.00626317075744
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LLT3	 Phosphate acyltransferase	0.00623417992916
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RMB0	 Amino acid ABC transporter permease protein	0.00625515003203
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AD05		0.00625297926713
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F9X2K4		0.00619490214753
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F9X2K4		5.72361494017e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N6N4	 Type I restriction modification DNA specificity domain protein	0.00625167125495
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q30TW1	 50S ribosomal protein L2	0.00549152947591
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q30TW1	 50S ribosomal protein L2	0.000759616959092
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZS00		0.0061861153686
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B5Z0	 UPF0042 nucleotide binding protein Pden_2850	0.00624865952608
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PP31		0.00624585108708
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9Z3R7	 Alpha glucoside transport system permease protein AglG	0.00624506263569
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KSE1	 MIP family channel proteins	0.0062444403289
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B5E2W4	 Acetate kinase	0.00589908314672
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B5E2W4	 Acetate kinase	0.000343815795543
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E3S6	 HisA hisF family protein HisAF	0.00624235180578
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G5JV69	 Mannosyl glycoprotein endo beta N acetylglucosaminidase	0.0062381733159
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ASZ5	 Flagellar basal body associated protein FliL 2	0.00622666808484
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2N3H7		0.00622577175393
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6W2Y5	 Short chain dehydrogenase reductase SDR	0.00622543248201
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U3AFI9	 Urea ABC transporter, urea binding protein	0.00622537118883
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M3I579	 Valine  tRNA ligase	0.00617937668342
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M3I579	 Valine  tRNA ligase	4.40508584409e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3B4E2	 Bifunctional protein FolD	0.0031832583429
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q3B4E2	 Bifunctional protein FolD	0.00276271780406
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q3B4E2	 Bifunctional protein FolD	0.000251212203766
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58158	 Type A flavoprotein FprA	0.00621777005546
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NRE3		0.00621427269524
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q97PA9	 Serine threonine protein kinase StkP	0.0062099609209
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5X3Q6	 PTS system, ascorbate specific IIA component	0.00573670838669
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5X3Q6	 PTS system, ascorbate specific IIA component	0.000474012054236
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3EY08	 Glutathionylspermidine synthase	0.00620599403889
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CGF7	 Oxygen independent coproporphyrinogen III oxidase like protein LL1139	0.00617724850368
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TZB4	 Bifunctional biotin  [acetyl CoA carboxylase] synthetase biotin operon repressor	0.00609357129134
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I6TZB4	 Bifunctional biotin  [acetyl CoA carboxylase] synthetase biotin operon repressor	0.000111072131519
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2HJP8		0.00620461784783
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R7ESR9		0.00515196355272
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7ESR9		0.00105230411057
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W0ISJ9	 Sulfate thiosulfate transporter subunit	0.00620312451176
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CQQ7	 Tributyrin esterase, putative	0.00601095436578
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A3CQQ7	 Tributyrin esterase, putative	0.000191583619638
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T5F3	 Deoxyribonuclease	0.0047422935234
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I6T5F3	 Deoxyribonuclease	0.0014598109911
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5LXV7	 Late competence protein, ABC transporter subunit	0.00618213685877
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFF4	 Nucleoside permease NupG	0.00619809769181
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F2JY03		0.00619765423717
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7HVU8	 UDP N acetylmuramate  L alanine ligase	0.0061794809158
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q88XV1	 Energy coupling factor transporter ATP binding protein EcfA2	0.00618521029388
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LSV7	 Oligopeptide dipeptide ABC transporter, periplasmic substrate binding protein	0.00618710533487
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKF7	 Transcriptional regulator, LysR family	0.00618535433225
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P60811	 Foldase protein PrsA 1	0.00575283999009
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P60811	 Foldase protein PrsA 1	0.000431510789861
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TRN9		0.00618410694252
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9W2G7	 Nitrate reductase	0.00618346618981
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAA0	 Putative L,D transpeptidase YafK	0.0061246636924
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SSQ2	 Two component sensor histidine kinase	0.00617840590568
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9REP5	 Penicillin binding protein2	0.00617819065865
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39160	 D mannonate oxidoreductase	0.00616368810904
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B2INS9	 Hydrolase, haloacid dehalogenase like family	0.00598054728615
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B2INS9	 Hydrolase, haloacid dehalogenase like family	0.000180616399917
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G1ZTT8	 Sodium dependent inorganic phosphate  transporter family protein	0.00615765116692
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KPL9	 Serine alanine racemase VanTc3	0.00615306886846
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W8WPD9	 Phage protein	0.00615006789594
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9KDV3	 UDP glucose 4 epimerase	0.00592894504767
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q9KDV3	 UDP glucose 4 epimerase	0.000116051227075
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9KDV3	 UDP glucose 4 epimerase	0.00010271064858
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B6V383	 Tra8	0.00614601813723
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8DIK9	 Phosphotransferase enzyme family	0.00571334482361
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8DIK9	 Phosphotransferase enzyme family	0.000429445739298
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8RFW9		0.00614094848376
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8UIG9	 Non canonical purine NTP pyrophosphatase	0.00601771659775
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F8H0	 Glutathione regulated potassium efflux system ancillary protein KefG	0.00610260069034
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QEW5	 CAAX amino terminal protease family protein	0.00613699628209
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UKU3	 Membrane associated protein	0.00613592280104
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T9G0	 Transmembrane protein	0.00613355240149
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WQ34		0.00613201696097
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9AQT5		0.00609183318437
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQS0	 Acetyltransferase, GNAT family	0.0061292667776
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16431	 Formate hydrogenlyase subunit 5	0.00612775019434
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8L4W4	 Periplasmic binding protein LacI transcriptional regulator	0.00612450922652
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P54453		0.00612416787901
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T1ZLK9	 DNA repair protein radA	0.00612391736649
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2IKB4	 Xylose isomerase domain protein TIM barrel	0.0061213228308
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P02915	 Histidine transport ATP binding protein HisP	0.00343954074783
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P02915	 Histidine transport ATP binding protein HisP	0.00220950823772
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P02915	 Histidine transport ATP binding protein HisP	0.000466993236331
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0T7J2	 Pleiotropic regulator of exopolysaccharide synthesis, competence and biofilm formation Ftr, nREfamily	0.00611553966799
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TZW1	 ATP binding protein	0.00611241294191
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVS5		0.00295647693126
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B2IM62	 Cmp binding factor 1	0.00557698817109
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B2IM62	 Cmp binding factor 1	0.000531126801661
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q48UW8	 Endoribonuclease YbeY	0.0061066010183
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8G521	 Electron transfer flavoprotein subunit beta	0.006102694886
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U9T291		0.00609763374754
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T1ZCJ6	 Transcriptional regulator	0.00609708008759
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A4J700	 Endoribonuclease L PSP	0.00609619379648
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E7MXD2	 Rhodanese like protein	0.00609542776482
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C1CQE1	 UPF0340 protein SPT_0687	0.00609461887954
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8R9S1	 ATP dependent RNA helicase YqfR	0.00608006913247
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6IP81		0.00609245326741
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3BXK0	 Glutamate cysteine ligase	0.00608802002392
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A0RRT8	 Imidazole glycerol phosphate synthase subunit HisF	0.00605592857663
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QT86		0.00608261526411
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3USC3		0.00195214510397
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E8QBY5	 Ribosomal RNA small subunit methyltransferase E	0.00594370551483
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E8QBY5	 Ribosomal RNA small subunit methyltransferase E	0.000136808357112
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27651	 Conserved protein	0.00607905841905
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q168P3	 Trk system potassium uptake protein	0.00607768065146
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_H8ZPX2	 3 succinoylsemialdehyde pyridine dehydrogenase	0.00607696393717
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8H1	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00607437194557
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8IRV1	 Anthranilate synthase component II	0.00607429186157
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WT83	 Cytochrome c, monohaem	0.00607398987323
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_U6EZ18	 Rubrerythrin	0.0060730468962
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5X5K2	 Predicted membrane protein	0.00607230739814
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8PIM5	 Chemotaxis response regulator protein glutamate methylesterase of group 2 operon	0.00376613308265
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8PIM5	 Chemotaxis response regulator protein glutamate methylesterase of group 2 operon	0.00224553795946
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1ZP10	 Urea ABC transporter, ATP binding protein UrtD	0.00607027446175
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P72479	 Oligopeptide transport ATP binding protein OppF	0.00606991155779
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAS1	 Inner membrane protein YlaC	0.00606733830247
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8FMG3	 GTP cyclohydrolase 1	0.00574761566589
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q8FMG3	 GTP cyclohydrolase 1	0.000319508125159
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KXA3	 2 dehydro 3 deoxyphosphooctonate aldolase	0.00606612173541
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A9FGM6	 PhoH family protein	0.00605707367366
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0A8Y6	 Sugar phosphatase YidA	0.00419609356064
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A8Y6	 Sugar phosphatase YidA	0.00185476714152
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q3K3G9	 Polyribonucleotide nucleotidyltransferase	0.00604307977865
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P26426	 Lactose specific phosphotransferase enzyme IIA component	0.00232780467765
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P26426	 Lactose specific phosphotransferase enzyme IIA component	0.00219341729462
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P26426	 Lactose specific phosphotransferase enzyme IIA component	0.00140319211528
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R6ZPD9		0.0055959890612
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6ZPD9		0.000448058529621
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SXV6	 Transmembrane protein	0.00604274025058
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9A0R7	 Putative gluconeogenesis factor	0.0055364797937
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9A0R7	 Putative gluconeogenesis factor	0.000506102994718
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E067	 Nitroreductase family protein	0.00604002425716
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98DS8	 Mll4564 protein	0.00601244198332
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04HZ7	 D alanine  poly ligase subunit 1	0.00514782117594
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q04HZ7	 D alanine  poly ligase subunit 1	0.000883137828261
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0C0Q2	 Glutamyl endopeptidase	0.00602986786083
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P43085	 Phosphoenolpyruvate carboxykinase [ATP]	0.00596366571507
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1JDC3	 SAM dependent methyltransferase	0.00602626115917
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7EQS8	 Nucleoid associated protein PGA1_c30280	0.00602441855224
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AVW5	 Competence protein ComFC	0.00602248240306
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKM3	 Immunodominant antigen B, putative	0.00602129000257
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_N0AZY0	 O succinylhomoserine sulfhydrylase	0.00602086847816
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q7A1P4	 UPF0382 membrane protein MW0538	0.00602066675809
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJ50	 Binding protein dependent transport systems inner membrane component	0.00601669212709
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1RBI9	 Oxidoreductase, short chain dehydrogenase reductase family	0.00597990276096
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTV2	 ATP phosphoribosyltransferase regulatory subunit	0.00601461408233
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R6UCD8	 Aminotransferase class I and II	0.00601422495644
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XNC8		0.00601226264401
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J9YQ34	 Oligopeptide ABC transporter permease	0.00600964727421
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E5QV40		0.00502342695451
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5QV40		0.000985067740709
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GDV2	 DNA topoisomerase 4 subunit A	0.00600818048286
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7Y7J0	 NAD dependent epimerase dehydratase	0.00600759624777
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U069		0.00600728622925
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0ALU1	 50S ribosomal protein L17	0.0051167205653
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0ALU1	 50S ribosomal protein L17	0.000888446596554
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4ZVH1	 Hydroxymethylglutaryl CoA reductase	0.00600225633812
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TW14	 Alpha glucosidase	0.006001222269
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9FA52	 Glucans biosynthesis glucosyltransferase H	0.00600007227908
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5P3C5	 Crossover junction endodeoxyribonuclease RuvC	0.00599991333173
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RG71	 Colicin V production protein	0.00599756658282
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L5A0	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00584631821884
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5YI36	 Glutamine ABC transporter, permease substrate binding protein	0.00539784588337
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F5YI36	 Glutamine ABC transporter, permease substrate binding protein	0.000424220872067
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5YI36	 Glutamine ABC transporter, permease substrate binding protein	0.000174679182612
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CLG7	 Hydrolase, HAD superfamily, putative	0.00599668247589
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F4EDS5	 Alkylhydroperoxidase like protein, AhpD family	0.00599395937725
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PWA6		0.00599246508092
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNK5	 PTS IIA like nitrogen regulatory protein PtsN	0.00599202437695
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C1KWM3	 3 phosphoshikimate 1 carboxyvinyltransferase	0.00574288641775
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C1KWM3	 3 phosphoshikimate 1 carboxyvinyltransferase	0.000245381490762
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FH89	 Pyridoxamine kinase	0.00484316225185
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8FH89	 Pyridoxamine kinase	0.00104839609546
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F2MNJ9	 PTS family mannose fructose sorbose porter component IID	0.00599022273436
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5XB25	 Exodeoxyribonuclease 7 large subunit	0.00548156489514
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5XB25	 Exodeoxyribonuclease 7 large subunit	0.000508426336664
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F4GVQ8	 ABC transporter protein	0.00598838986408
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G7T8		0.00598649947879
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q2RFW5	 Ribose 5 phosphate isomerase	0.00598516695293
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQH1	 Flagellar biosynthesis type III secretory pathway protein	0.00559692067874
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P67634	 Tyrosine recombinase XerS	0.00541160474202
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P67634	 Tyrosine recombinase XerS	0.000571950838439
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPM8	 Surface lipoprotein related protein	0.00598338465515
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V6X6G1		0.00463665970694
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KU19	 Proline racemase	0.00598256290284
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ARY7	 Ferredoxin 4	0.00598147347826
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T4P1	 Peptidoglycan hydrolase	0.00598093660083
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TWA3	 Integral membrane protein	0.00597771191154
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HJ84	 Virulence factor EsxB	0.00597606868299
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5NPR4	 UvrABC system protein C	0.00597287938571
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A5FZW0	 50S ribosomal protein L22	0.00597281686918
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C6Y6	 Transcriptional regulator, DeoR family	0.00597119224512
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H2A6W4		0.00596928262322
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TED5	 Modulator protein MzrA	0.00596844715259
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LMZ8	 Lipoprotein, putative	0.00596720970845
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZDL2	 NADH quinone oxidoreductase subunit G	0.00595399016147
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRU0	 Protease Do	0.005962474214
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5CZN0	 SAM dependent methyltransferases	0.0059591964784
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E8Q7C4		0.00595912496884
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TX14		0.00595781466815
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1M3E9	 Binding protein dependent transport systems inner membrane component	0.005957579251
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM27		0.00595604724398
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LSN8	 Polyphosphate kinase 2, putative	0.00595593722382
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I4DZ43		0.0056062381813
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I4DZ43		0.000346553329776
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0YJQ5	 Serine aspartate repeat containing protein G	0.00595161580727
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q73X87	 Ribonuclease PH	0.00593751748506
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G2KPL2	 Peptidase family protein	0.00594880362918
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37342		0.00594777465786
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HP97	 Cell cycle protein GpsB	0.00412750425344
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HP97	 Cell cycle protein GpsB	0.00181971818499
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQH3		0.00584064332541
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SSZ2	 Transcriptional regulator	0.00594241458923
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUW9	 TraL	0.00594105599334
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S6AT93	 Cell envelope biogenesis, outer membrane	0.00593926690843
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F9YAH5	 BolA like protein	0.00593909220889
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1CP59	 Phage protein	0.00593909220889
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04FF6	 Arginine  tRNA ligase	0.00557397922191
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q04FF6	 Arginine  tRNA ligase	0.000360161336472
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A933	 Putative polysaccharide export protein GfcE	0.00593802233492
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AY63	 Membrane protein, putative	0.00593629940188
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J6K9	 Acrylyl CoA reductase AcuI	0.00590549723895
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D9QJC6	 Cysteine desulfurase	0.0059276747075
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HP08		0.00592688311322
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CQ84	 Stomatin prohibitin like membrane protease subunits, putative	0.00528193246044
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A3CQ84	 Stomatin prohibitin like membrane protease subunits, putative	0.000641361028153
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQ32	 Bacteriocin production protein, putative	0.00592181328338
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0P6S9		0.00592104876254
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R0MT59	 DNA polymerase III PolC	0.00591125265352
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0C397	 Intracellular protease, PfpI family	0.00591080784298
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q74IL5	 50S ribosomal protein L27	0.0026286157375
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q74IL5	 50S ribosomal protein L27	0.00206724147577
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q74IL5	 50S ribosomal protein L27	0.00121300249588
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GIZ8	 Aspartate  tRNA ligase	0.00590880729166
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P37872		0.00590826113268
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P17430	 Acetate operon repressor	0.00590798110058
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q70AN6	 Cell shape determining protein MreC	0.00590654981347
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRY0	 UPF0342 protein SE_1526	0.00412466005555
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CRY0	 UPF0342 protein SE_1526	0.00177934466619
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3QG19	 Homoserine O succinyltransferase	0.00564091867103
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A3QG19	 Homoserine O succinyltransferase	0.000235010793897
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M2M3	 CheBRA	0.00589650742813
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q16D47	 3,5 bisphosphate nucleotidase	0.0058948986145
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B962	 Ribosomal RNA large subunit methyltransferase E	0.00539937679205
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8DI48	 Cytoplasmic alpha amylase	0.00560582133742
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8DI48	 Cytoplasmic alpha amylase	0.00028316818275
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QCY5		0.00306937748222
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QCY5		0.00281611447239
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B2IML2	 Ascorbate specific PTS system enzyme IIC	0.00554182848215
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B2IML2	 Ascorbate specific PTS system enzyme IIC	0.000342259326346
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P96995	 UDP glucose 4 epimerase	0.00588160722308
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q838A4	 UDP N acetylmuramoyl L alanyl D glutamate  L lysine ligase	0.00566553483074
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q838A4	 UDP N acetylmuramoyl L alanyl D glutamate  L lysine ligase	0.000214848835174
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5LY94	 Phospho N acetylmuramoyl pentapeptide transferase	0.00551220421
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5LY94	 Phospho N acetylmuramoyl pentapeptide transferase	0.0003590173836
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4WEY5	 Ribosome maturation factor RimP	0.00586802614828
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_L0LMR9	 ABC transporter, ATP binding protein	0.00586769527868
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CEG1	 5 methylthioadenosine S adenosylhomocysteine nucleosidase	0.00586630123676
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Z1HLQ0	 Regulatory protein BlaR1	0.0058617654621
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D2TMN6	 Proofreading thioesterase EntH	0.00586137695646
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZT27		0.00586119312599
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XBT3	 Universal stress protein G	0.00585948849707
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H2A8F3	 Methionine ABC transporter substrate binding protein	0.00585912145833
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7ADF8	 2 deoxyglucose 6 phosphate phosphatase	0.00585662534331
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AQC4	 MotA TolQ ExbB proton channel family protein	0.00528548750421
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P25885		0.00585405348076
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AA45	 Ribosomal small subunit pseudouridine synthase A	0.00585213105105
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N5S9	 Streptolysin associated protein SagD	0.00584950869774
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_W1VWW7	 Putative copper transporting P type ATPase B	0.00584911966381
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J7M137	 Adenine specific methyltransferase	0.00530824416678
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J7M137	 Adenine specific methyltransferase	0.000539913646818
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G7SF07	 Small conductance mechanosensitive channel	0.00584573020638
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9W9	 Protein YrdA	0.00584410864527
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNI6	 Polysaccharide biosynthesis protein, MviN like family	0.00584358605227
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77790	 D alanyl D alanine dipeptidase	0.00584136520345
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DPH3	 Ribonuclease HII	0.00583956937664
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M536	 XRE family transcriptional regulator	0.00583919008869
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33234	 HTH type transcriptional regulator AdiY	0.00583874062057
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJK7		0.00552264718973
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DJG9	 3 dehydroquinate dehydratase	0.00583528159538
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TQ24	 Folyl polyglutamate synthetase	0.00583269999631
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R7GI74	 Formate C acetyltransferase	0.00500315485946
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R7GI74	 Formate C acetyltransferase	0.000600713157855
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7GI74	 Formate C acetyltransferase	0.000228350483301
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N0K5	 Isochorismatase family protein	0.00583214740859
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I4DXS5	 Acyltransferase homolog	0.00550638072933
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I4DXS5	 Acyltransferase homolog	0.000324200736299
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQL1	 Na H(+) antiporter subunit B1	0.0033500644917
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQL1	 Na H(+) antiporter subunit B1	0.00247975250974
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75989	 HTH type transcriptional repressor YcgE	0.00582925411068
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KX89	 Lipopolysaccharide biosynthesis protein like protein	0.00582607315807
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSP8	 Membrane protein insertase YidC 2	0.00582481862375
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PP65	 Transcriptional regulator, LysR family	0.00582394443256
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q163W1	 Ferredoxin flavodoxin oxidoreductase family protein, putative	0.00582120626025
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NGM7	 30S ribosomal protein S6e	0.00581917595631
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV85		0.00580021267872
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUU0		0.0054130574241
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWM6	 LysR family transcriptional regulatory protein	0.00580647138449
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B2IQJ8	 ABC transporter, ATP binding protein	0.00580625369421
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKE2		0.0055435624106
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57661		0.00580400939432
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5ISK2	 ABC 2 type transporter	0.00580242081563
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A919	 Outer membrane protein X	0.00580240349547
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LRM2	 Cyclopropane fatty acyl phospholipid synthase	0.00580186824384
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F9VEN7	 Epoxyqueuosine reductase	0.00564897385365
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F9VEN7	 Epoxyqueuosine reductase	0.000152514452491
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0J9Y4		0.00564500474886
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GH34	 N anthranilate isomerase	0.00553119246705
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GH34	 N anthranilate isomerase	0.000268522786042
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J9YQK1	 Cobyric acid synthase	0.00579928756498
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46787		0.00579888863876
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A5V3T8	 Homoserine O succinyltransferase	0.00576903808511
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6JGW9	 Replicative DNA helicase	0.00579519657211
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q88RC0	 Glutarate semialdehyde dehydrogenase DavD	0.00577584602298
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27739	 Energy coupling factor transporter ATP binding protein EcfA	0.00579067067847
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A0A024DFE0	 Membrane protein	0.00579064675754
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37675	 2,3 diketo L gulonate TRAP transporter large permease protein YiaN	0.00299201319988
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P37675	 2,3 diketo L gulonate TRAP transporter large permease protein YiaN	0.00279671601282
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U3H0	 ABC peptide opine transporter, periplasmic substrate binding protein	0.00578868242644
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P20751	 Probable adenosine monophosphate protein transferase fic	0.00578841479403
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5X0H0	 Haloacid dehalogenase like hydrolase	0.00578706188731
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J430	 ATP synthase epsilon chain 1	0.0057860228752
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4NU59	 Histone acetyltransferase HPA2 related acetyltransferase	0.00578560864381
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B1IC45		0.00578351258589
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSK3		0.00547530997075
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DSK3		0.000307468066434
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2G1X0	 Alpha hemolysin	0.00578243427876
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A2RH97	 Mannitol 1 phosphate 5 dehydrogenase	0.00576092054376
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9E705		0.0057804374371
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77858	 Hydrogenase 4 component C	0.00577497894246
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I4DYX6	 ABC transporter homolog	0.00577289187707
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KX15	 Short chain dehydrogenase reductase SDR	0.00577130597874
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D5T0L1	 Amino acid permease	0.0051010643021
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D5T0L1	 Amino acid permease	0.000668827235136
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9M916	 Modification methylase BabI	0.0057256811435
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P26236	 Magnesium protoporphyrin O methyltransferase	0.00507797091726
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YSR3	 HTH type transcriptional regulator SarX	0.00418832095638
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YSR3	 HTH type transcriptional regulator SarX	0.00157985392164
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5T4K4		0.00576787769211
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0A3S3	 DNA entry nuclease	0.00564646903201
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0A3S3	 DNA entry nuclease	0.000118087213513
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1JGW5	 NAD kinase	0.00525609410511
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1JGW5	 NAD kinase	0.000501680275164
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21369	 Pyrazinamidase nicotinamidase	0.0057576197785
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L7Q5	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00575711691806
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q4KJK0	 Arginine  tRNA ligase	0.00416406211742
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4KJK0	 Arginine  tRNA ligase	0.00156192529498
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33235	 Flagellar hook associated protein 1	0.00575461974505
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R3S4	 Protease do	0.00575281502288
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNI6		0.00574981079575
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G4Q6N7	 Inner membrane translocator	0.00574888342871
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IP44	 Acyl CoA dehydrogenase like protein	0.00574707549822
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GWT5	 Adenosylhomocysteinase	0.00573188634889
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5WHP5		0.00574465567319
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P77935	 Amidophosphoribosyltransferase	0.00573281597426
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4X0R7		0.00569381935846
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T2A0U3		0.00574316297032
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F2HMQ5	 N acetylglucosamine 6 phosphate deacetylase	0.00552164751297
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F2HMQ5	 N acetylglucosamine 6 phosphate deacetylase	0.000219669248848
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75682	 Probable 2 keto 3 deoxy galactonate aldolase YagE	0.00574106337457
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QIK9		0.00573953322389
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F4EDJ1	 Phosphatidate cytidylyltransferase	0.00573905690431
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CR82		0.00573640961397
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AR26	 Histidine ammonia lyase	0.00573614434719
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNQ2	fumarate reductase, subunit B, TfrB	0.00573586679002
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACL3	 Exu regulon transcriptional regulator	0.0057353477922
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A6QIC9	 Aspartyl glutamyl tRNA amidotransferase subunit C	0.00462172988296
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QIC9	 Aspartyl glutamyl tRNA amidotransferase subunit C	0.00111149730341
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HN64		0.00573156663717
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AGK2		0.00573052540833
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33359	 Putative osmoprotectant uptake system permease protein YehW	0.0057283799539
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SXW0	 Acetyltransferase	0.00572824537828
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQ11		0.00505594340621
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN41	 Tungsten formylmethanofuran dehydrogenase, subunit C, FwdC	0.00572000144651
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7DRE6	 Transposon protein	0.00571834660749
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YSL1	 Thermolysin metallopeptidase, catalytic domain protein	0.00571778910489
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D2RJ96	 CRISPR associated protein Cas4	0.0057163606451
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E4SZ07	 Alcohol dehydrogenase   Acetaldehyde dehydrogenase	0.00571527686535
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TYS5	 Bifunctional ATP dependent DNA helicase DNA polymerase III subunit epsilon	0.00491260970544
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I6TYS5	 Bifunctional ATP dependent DNA helicase DNA polymerase III subunit epsilon	0.000802658214151
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J2S8		0.00571517116836
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0T9H7		0.00571486291083
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69793	 N,N diacetylchitobiose specific phosphotransferase enzyme IIA component	0.00571476935381
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B622	 5 Nucleotidase domain protein	0.00571385855141
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKD5	 Transposase, homeodomain like superfamily	0.0057116519943
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNB6	 Formylmethanofuran dehydrogenase subunit E, metal binding	0.00571125736097
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CFC2	 CCA adding enzyme	0.00553628222911
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9CFC2	 CCA adding enzyme	0.000174726383486
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q16DI2	 Transcriptional regulator, LacI family, putative	0.00570920241292
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DVZ6		0.00570690302509
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O31462		0.00365320609795
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O31462		0.00205284905293
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P74839	 Propionate catabolism operon regulatory protein	0.00570407873876
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HGH1	 Isoprenyl transferase	0.00570107779704
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KS86		0.000371193263052
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7EMW2		0.00569140327178
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SI82		0.00569809668974
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PR64	 Transcriptional regulator, TetR family	0.00569769676344
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UJ70	 MutS domain V family protein	0.00569320644223
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32689		0.00569114834755
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SSP7		0.0056909450515
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B9DTQ1	 Replication initiation and membrane attachment protein	0.00548097037056
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B9DTQ1	 Replication initiation and membrane attachment protein	0.000206409301081
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I1ZKL5	 Pseudouridine synthase	0.00507035109331
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I1ZKL5	 Pseudouridine synthase	0.000618251571332
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P21363	 Protein YciE	0.00548861125294
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21363	 Protein YciE	0.000199534718483
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9KA74	 Transcription termination antitermination protein NusA	0.00568787618022
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9NAA5	 Phosphoheptose isomerase	0.00547978866513
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9NAA5	 Phosphoheptose isomerase	0.000188366730507
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KM78	 OmpA MotB domain protein	0.00568428302566
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DWY0	 UPF0246 protein SAG2081	0.0055389771329
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DWY0	 UPF0246 protein SAG2081	0.000145064033838
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WTV0	 Phosphate specific transport system accessory protein PhoU	0.00568126802692
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S6BDB2	 Methionine  tRNA ligase	0.00536808023002
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S6BDB2	 Methionine  tRNA ligase	0.000309881908192
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R6MA81		0.00567612856744
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGE7		0.00567565036624
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8YFR1	 4 hydroxy 3 methylbut 2 enyl diphosphate reductase	0.00546030818249
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q8YFR1	 4 hydroxy 3 methylbut 2 enyl diphosphate reductase	0.000151826417371
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q54443	 Dextranase	0.00567475772749
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99R72	 Glycosyl 4,4 diaponeurosporenoate acyltransferase	0.00551644888831
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77427		0.00567362425994
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28K41	 Amino acid amide ABC transporter substrate binding protein, HAAT family	0.00567047983554
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B0J8	 Extracellular solute binding protein, family 5	0.00566983823015
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5Y296	 Two component system, NtrC family, C4 dicarboxylate transport sensor histidine kinase DctB	0.00566938052098
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5FKB1	 Trehalose 6 P hydrolase	0.00566883844388
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7HQ39	 Two component transcriptional regulator, winged helix family	0.00566794143584
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WNH8	 Major facilitator superfamily MFS_1	0.00566697683957
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1JF79	 ComE operon protein 2	0.00544068460483
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1JF79	 ComE operon protein 2	0.000223372937057
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16433	 Formate hydrogenlyase subunit 7	0.00566401484266
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWV4	 TRAP T family transporter, large inner membrane subunit DctM	0.00566088252339
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B9DVZ2	 Transcription antiterminator	0.00566071412621
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4G9C2		0.00566030719698
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV37		0.0055997019166
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A5VLG3	 Glutamyl tRNA amidotransferase subunit A	0.00563952571801
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1QSY8	 Ribosome maturation factor RimP	0.00565699391644
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T5B9	 Transcriptional regulator	0.00565664980137
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SR38		0.00565549745539
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28K77	 Succinate dehydrogenase subunit C	0.00565273188162
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2S5Z1	 Indole 3 glycerol phosphate synthase	0.00557849458491
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P29961	 Heme exporter protein C	0.00564948255258
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M4MFI8	 Oxidoreductase,likely required for utilization of stachydrine	0.0056475895905
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM84	 Predicted transcriptional regulator	0.00564446875227
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNV4	 Putative major capsid protein gp5 	0.00556278389769
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J232		0.00510912171942
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T1Z3D7		0.00564383524522
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DTN8	 Adenosine deaminase	0.00536039707912
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DTN8	 Adenosine deaminase	0.000281721796391
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8Y0Z5	 Ubiquinone biosynthesis O methyltransferase	0.00436889928435
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8Y0Z5	 Ubiquinone biosynthesis O methyltransferase	0.00127096089898
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N1N3N6	 Mobile element protein	0.00563956879368
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DR58	 UPF0398 protein spr0331	0.00563886408525
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P3X1	 Membrane protein, putative	0.00559262991617
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IQ87	 RNA polymerase, sigma 24 subunit, ECF subfamily	0.00563420923279
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AA87	disulfide interchange protein DsbE	0.00563309208925
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99UM3	 Probable cell wall hydrolase LytN	0.00563282381069
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3X8V2	 DNA helicase II, putative	0.00563277999915
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7DNJ2	 Pyruvate carboxylase	0.00563088667809
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLQ3	 Putative 3 methyladenine DNA glycosylase	0.00563034754152
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32167		0.00562890667951
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42597		0.00295342021767
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P42597		0.00265696230398
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q48RL4	 Xaa Pro dipeptidase	0.0039102631974
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q48RL4	 Xaa Pro dipeptidase	0.00171641402851
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04GC3	 Peptide chain release factor 2	0.00562634438884
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E7I2X0		0.00140228566043
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YCT9	 Phage terminase, large subunit	0.00561801867721
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U217	 GntR family transcriptional regulator	0.00562005260744
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q251B6	 Nitrate reductase gamma chain	0.00561884535968
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9WGF1	 ABC type multidrug transport system, ATPase and permease component	0.00561796539253
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q02000	 Anthranilate phosphoribosyltransferase	0.00561482443179
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CN32	 Thiamine phosphate synthase	0.00561108953121
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F0VRX4	 Autolysin	0.00561034326884
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C7F9	 Transposase	0.00560985201872
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4NJ09	 Alpha L Rha alpha 1,3 L rhamnosyltransferase	0.00502853387071
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4NJ09	 Alpha L Rha alpha 1,3 L rhamnosyltransferase	0.000580823793681
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5L6I9	 Peptide ABC transporter permease	0.00560860693022
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2G0L5	 Serine aspartate repeat containing protein C	0.00560806742951
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CLV1		0.00537793092351
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A3CLV1		0.000137366758574
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7D383	 Transposon protein	0.00560761404368
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G2J491	 Formate dehydrogenase, alpha subunit	0.00560678636261
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q6ZEM6	 Arsenate reductase ArsI1	0.00501156137097
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A2RIB7	 NADH oxidase	0.00521362242124
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A2RIB7	 NADH oxidase	0.000388629940542
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KNX6	 FKBP type peptidyl prolyl cis trans isomerase SlyD	0.00552385543169
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DRX4		0.00560041062166
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7DEQ4	 Trk system potassium uptake protein TrkA	0.00560024621696
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X5R9	 Multidrug resistance outer membrane protein MdtP	0.00559922760583
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5LZD4		0.00537095212781
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5YRT3	 Transposase InsI for insertion sequence element IS30B C D	0.00559784593619
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T5F7	 NADH dehydrogenase, NADH nitroreductase	0.00559587099546
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76538	 Inner membrane protein YfeZ	0.00559485360739
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77211	 Cation efflux system protein CusC	0.00559262670703
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C9Y1J4	 Penicillin binding protein activator LpoB	0.00559239203469
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32721	 D allose import ATP binding protein AlsA	0.00559200384399
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B7GSP5	 UPF0145 protein Blon_0093 BLIJ_0092	0.00540391804849
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52131		0.00558640980076
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L933	 Poly gamma glutamate synthesis protein PgsA	0.00558574979492
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNG7	 Glycerol 3 phosphate dehydrogenase 	0.00558556800796
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RHC7	 ABC transporter permease protein	0.00558365781611
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E0SXX7	 Collagenase like protease	0.00440859396804
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E0SXX7	 Collagenase like protease	0.00117434393949
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFT7	 Transcriptional regulatory protein YehT	0.00558253725545
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RN76	 Conserved bacteriophage protein	0.00544411015788
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E8TFR7	 TRAP transporter, 4TM 12TM fusion protein	0.00557803942815
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04D50	 Dipeptidase A, Cysteine peptidase, MEROPS family C69	0.00557684600329
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QFY5	 Integral membrane protein	0.0055763654217
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O30807	 NAD dependent malic enzyme	0.0054920165041
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MI34	 Ribonuclease H	0.0055296608634
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DV32		0.00556979387536
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8S2G5	 Glutathione peroxidase	0.00556689186576
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SRX5		0.00541486976046
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W6W5E1	 Methionine synthase 	0.00440703047368
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W6W5E1	 Methionine synthase 	0.00115666622233
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6ST36	 Transcriptional regulator MutR	0.00556362556107
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PX69		0.00555239964849
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J2R6		0.00543358629954
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HP16	 Octanoyltransferase LipM	0.00554190232481
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIY0	 Carboxymuconolactone decarboxylase	0.00555596138423
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6STB9		0.00555480149455
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P05707	 Sorbitol 6 phosphate 2 dehydrogenase	0.00555441842484
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03WF6	 Pseudouridine synthase	0.00555413408574
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y8DDU0		0.00555399791952
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G2JRU4	 Phosphoglycerate mutase	0.00555363573922
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F2N166		0.00555338273915
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KM20	 PTSINtr with GAF domain, PtsP	0.00555284148235
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q11KE0	 1 deoxy D xylulose 5 phosphate synthase	0.00553077006495
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G4NPZ1	 Fructokinase	0.00554990149012
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AXR0	 Multidrug resistance protein B	0.00554579935867
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A8Y3	 Alpha D glucose 1 phosphate phosphatase YihX	0.00554568947344
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6AGI1		0.00358206138801
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6AGI1		0.0019634858598
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4YZY5	 Pyrroloquinoline quinone synthase	0.00530979580265
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LSI1	 ABC transporter, permease protein	0.00554200333875
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0A349	 GTP sensing transcriptional pleiotropic repressor CodY	0.00528331460093
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0A349	 GTP sensing transcriptional pleiotropic repressor CodY	0.000257562672328
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J7M139	 tRNA dihydrouridine synthase	0.00513404226505
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J7M139	 tRNA dihydrouridine synthase	0.00040577051774
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D3SBH0	 Riboflavin synthase, alpha subunit	0.00553897005836
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7NFU7	 Bifunctional purine biosynthesis protein PurH	0.00261106918966
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B7NFU7	 Bifunctional purine biosynthesis protein PurH	0.00202411379988
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7NFU7	 Bifunctional purine biosynthesis protein PurH	0.0007437446589
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7NFU7	 Bifunctional purine biosynthesis protein PurH	0.000159617304044
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7VLK4	 Stringent starvation protein A homolog	0.00552751396187
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SW26	 LysR family transcriptional regulator	0.00553528040323
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQU2	 Lipoprotein, putative	0.00553369144839
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q2S2A1	 Imidazoleglycerol phosphate dehydratase	0.00536257841443
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0SW85	 Transcription repair coupling factor	0.00553049742425
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KML1	 Response regulator receiver protein	0.00552905929891
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WU42	 HAD superfamily hydrolase, subfamily IA, variant 3	0.00552874317374
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P07604	 Transcriptional regulatory protein TyrR	0.00552867396938
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37025	 2 5 RNA ligase	0.0055278338503
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C3R4	 Thiamin pyrophosphokinase	0.00552635099844
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WPY8	 Short chain dehydrogenase reductase SDR	0.00552626514814
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5WFD7	 Crossover junction endodeoxyribonuclease RuvC	0.00344815424205
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WFD7	 Crossover junction endodeoxyribonuclease RuvC	0.00207766157744
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SPD3	 Putative potassium uptake system protein	0.00552326778213
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DT23	 S adenosylmethionine synthase	0.00551095771113
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I8RAB7	 transcription regulator, sugar kinase, ROK family	0.00552089847738
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9A1B6	 Non canonical purine NTP pyrophosphatase	0.00539747393423
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9A1B6	 Non canonical purine NTP pyrophosphatase	0.000111194457655
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RPB0	 UPF0393 family membrane protein	0.00551030745831
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6STQ4	 Oxidoreductase	0.00551778254298
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0R079	 Glutamine synthetase 1	0.00338219388724
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0R079	 Glutamine synthetase 1	0.00179082352557
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0R079	 Glutamine synthetase 1	0.000151648064633
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A0R079	 Glutamine synthetase 1	0.000108447440982
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A0R079	 Glutamine synthetase 1	7.30568506111e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F4FLP5	 O antigen polymerase	0.00547934224757
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI000467E284	 transposase, partial	0.00551301257457
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44684	 ADP ribose pyrophosphatase	0.00551167719544
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CLN3	 GTP binding protein TypA BipA, putative	0.00551035019807
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77315	 Probable ABC transporter permease protein YphD	0.00550943702847
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B8H5V4	 Uronate isomerase	0.00549274844743
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KNU8	 Transcriptional regulator, MerR family	0.00550624324136
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2VDR3	 High frequency lysogenization protein HflD homolog	0.00550146547003
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C1CMA0	 Ribosomal protein L11 methyltransferase	0.00523361144408
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C1CMA0	 Ribosomal protein L11 methyltransferase	0.000266682743347
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IQ60	 Septum formation initiator	0.0054997630513
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F4LK69	 Regulatory protein TetR	0.00549918289014
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L562	 Probable quinol oxidase subunit 4	0.00351803241489
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L562	 Probable quinol oxidase subunit 4	0.00197969740297
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SFA3	 V5 Tpx 1 related allergen	0.00549595229488
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7LPQ4	 N acetyl D glucosamine kinase	0.00549564635532
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03LK9	 ABC type amino acid transport system, permease component	0.00518750194828
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q03LK9	 ABC type amino acid transport system, permease component	0.000307584542622
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A2RM05	 Queuosine precursor transporter QueT	0.00467353222067
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A2RM05	 Queuosine precursor transporter QueT	0.000821506403212
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1CBF6	 Sec independent protein translocase protein TatB	0.00549464936708
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57865	 4 hydroxy tetrahydrodipicolinate reductase	0.00548907643782
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U203	 DNA polymerase III subunit delta	0.00501889215793
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B4U203	 DNA polymerase III subunit delta	0.000473578597112
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5Q752		0.00549177524316
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMR3		0.00317344283456
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8LKD4		0.00549042007129
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A2J0	 Histidine transport system permease protein HisQ	0.00549028646706
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P35598	 Putative ABC transporter ATP binding protein exp8	0.00505812339045
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P35598	 Putative ABC transporter ATP binding protein exp8	0.000430980911101
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37351	 Ribose 5 phosphate isomerase B	0.00548876974838
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CPS1	 Two component response transcriptional regulator , putative	0.0054880352406
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7ZCY2	 High affinity branched chain amino acid transport system permease protein	0.0054841377746
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQ54	 Phosphate starvation inducible E	0.00437506106792
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3K427	 Possible phenol degradation enzyme	0.00513185718389
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8FVT0	 Putative ATP binding protein BRA0745 BS1330_II0738	0.00548268141123
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9JTA4	 UPF0210 protein NMA1908	0.00457636408963
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q9JTA4	 UPF0210 protein NMA1908	0.0007216216997
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JTA4	 UPF0210 protein NMA1908	0.000182984823916
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36556	 Transcriptional regulatory protein BasR	0.0054798778258
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2IDX6	 Signal recognition particle protein	0.00530845863653
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2IDX6	 Signal recognition particle protein	0.00017119331743
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW90		0.00540960075954
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IRW7		0.00532645757181
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DVW8	 Ribonuclease M5	0.00547632862804
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L860	 Alkaline shock protein 23	0.00392194008683
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L860	 Alkaline shock protein 23	0.00134866035879
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P42359	 Putative zinc metalloproteinase in scaA 5region 	0.00524297815375
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P42359	 Putative zinc metalloproteinase in scaA 5region 	0.000231018102216
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7QLE1		0.00546507422373
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P05379	 Anthranilate synthase component 2	0.00506343630552
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P05379	 Anthranilate synthase component 2	0.000382441543756
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SS47		0.00547058273727
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03174	 Fructan beta fructosidase	0.00546904699069
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUL3		0.00546777186071
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F0TB22	 H4MPT linked C1 transfer pathway protein	0.00546498819527
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1IS55	 UPF0442 protein YjjB	0.00546450369367
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F9Y8G5	 4 hydroxybenzoate polyprenyl transferase	0.00546251530394
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N0J9		0.00521284930688
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30143		0.00467708384403
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P30143		0.000593711618593
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P30143		0.000186909124703
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WNN4	 Succinate dehydrogenase subunit D	0.00545706549476
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3I8L4		0.00545519798903
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0TGG3	 Ribosomal protein S5p alanine acetyl transferase	0.00545458350825
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37016		0.00545324277703
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LRD0	 3 hydroxyacyl CoA dehydrogenase NAD binding	0.00544818107767
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P33117	 Ferric uptake regulation protein	0.00324354840164
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33117	 Ferric uptake regulation protein	0.00220411755054
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37349	 PTS dependent dihydroxyacetone kinase, phosphotransferase subunit DhaM	0.0054468260767
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23524	 Glycerate 2 kinase	0.00544661228458
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LHU2	 Processing peptidase	0.00544343015891
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R9R9	 Methylenetetrahydrofolate reductase	0.00543989422161
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SS67		0.00543766165574
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J9W5M6	 Dihydroxyacetone kinase like protein	0.00543423031455
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5M378		0.00459328394313
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5M378		0.000839294759434
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U058	 ComG operon protein 6	0.00541393415845
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4Q1E8	 Fumarate reductase, flavoprotein subunit	0.00542891987528
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75672		0.00542609373917
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39383		0.00542291590255
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTN4		0.00542011034305
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW17	 Putative agmatine deiminase	0.00541869335045
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T9F6	 Transcriptional regulator	0.00541842753694
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5X9T1	 Exodeoxyribonuclease III	0.00511195940442
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5X9T1	 Exodeoxyribonuclease III	0.000306179795101
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0MUF4		0.00541810863775
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E9U3	 Phage tail protein I	0.00538046514061
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADV7	 Probable phospholipid binding protein MlaC	0.00541456765181
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4ZG31	 Drug metabolite transporter superfamily protein	0.00518083556749
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M4ZG31	 Drug metabolite transporter superfamily protein	0.000233680527382
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WQX9		0.0030266154111
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTI0		0.00541417106718
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9R9D6	 Lipopolysaccharide core heptose kinase RfaP	0.00541127857591
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KS14	 Chemotaxis histidine protein kinase	0.00541083614214
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SQV1		0.00541073736051
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27398	 Imidazole glycerol phosphate synthase subunit HisF	0.00539061862173
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C6AUH7	 Acriflavin resistance protein	0.00540923947243
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q00277	 Glutathione peroxidase	0.005408009902
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R6JPB3		0.00540621655845
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X2Q3	 N utilization substance protein B homolog	0.00401365248263
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X2Q3	 N utilization substance protein B homolog	0.00139210182804
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C6XLP5	 Acyl CoA dehydrogenase domain protein	0.00540348836496
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52135		0.00540149073871
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C113	 Isovaleryl CoA dehydrogenase	0.00540118278298
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DWK3		0.00539721335572
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WY94		0.00179056706538
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L8N845		0.00539518565436
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P95785	 ATP synthase subunit b	0.0053922834468
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G3ECR2	 CRISPR associated endonuclease Cas1	0.00460013574168
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G3ECR2	 CRISPR associated endonuclease Cas1	0.000792014743374
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3N3J7		0.00538879183856
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28Q13	 Acetyltransferase GNAT family	0.00538383098144
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4THT3	 UPF0257 lipoprotein YnfC	0.00538320280787
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LL11	 HTH type transcriptional regulator	0.00538317003078
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P59626	 Probable dihydroorotate dehydrogenase A 	0.00536696050067
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV27		0.000877952761313
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QGY3		0.00537831211926
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SHK7		0.0038229990764
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SHK7		0.00155503362571
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C6BBB4	 Ammonium transporter	0.00507264294737
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C6BBB4	 Ammonium transporter	0.000305349936132
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q7DDR9	 Adenosine monophosphate protein transferase NmFic	0.00537682726665
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0C5T7	 Peptide ABC transporter, ATP binding protein	0.00537652317731
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G4QEC1	 Na+ H+ antiporter, NhaC family protein	0.00537628142658
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q87A27	 Transcription termination antitermination protein NusG	0.00537522253266
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7WYM2	 Thymidylate kinase	0.00536231615889
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUN5	 Ferredoxin  NADP reductase	0.00525777446916
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DUN5	 Ferredoxin  NADP reductase	0.000113188977077
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99QS1	 Protein map	0.00537078265348
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1CEX0	 UPF0301 protein YPN_3133	0.00536891663446
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q53158	 Phosphoribosyl AMP cyclohydrolase	0.00535115594644
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R5QB36		0.00517635715813
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R5QB36		0.000168185543324
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6L8Z7		0.00536604670561
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9N6	 Pyruvate formate lyase 1 activating enzyme	0.00536597176613
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T5H3		0.00536498189726
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DWZ2	 Pseudouridine synthase	0.0051545257434
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DWZ2	 Pseudouridine synthase	0.000209905545844
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUW3	 Shikimate dehydrogenase	0.00536355310143
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NES1	 FrhB	0.00536286750786
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8DHP6	 ABC transporter, permease protein	0.0051584300917
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8DHP6	 ABC transporter, permease protein	0.000202123966812
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q60151	 Glutathione reductase	0.00514100374394
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q60151	 Glutathione reductase	0.000211131884693
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SWI7		0.00535964304679
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M0T0	 NADPH dependent FMN reductase	0.00535785759692
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSK8		0.0053542527738
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SW57		0.00535408728366
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83LB6	 Gamma glutamyl gamma aminobutyrate hydrolase	0.00533539548156
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9L6S1	 ATP dependent DNA helicase Rep	0.00502920163536
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9L6S1	 ATP dependent DNA helicase Rep	0.000304547449849
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6VMG4	 amino acid aminotransferase 2 hydroxyacid dehydrogenase	0.00534639347091
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49X30	 Ribosome biogenesis GTPase A	0.00534477794114
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03IX4	 Protein translocase subunit SecA	0.00504171032084
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q03IX4	 Protein translocase subunit SecA	0.000300711730497
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31665		0.00534137412068
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SS05		0.00533875844657
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5NLB9	 Type III pantothenate kinase	0.00529871373552
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2G9M5	 Guanylate kinase	0.00532231414557
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQD9	 Phage phi C31 gp36 major capsid like protein	0.00508460160556
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F3Y7S3	 Low molecular weight protein tyrosine phosphatase	0.00532777882509
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q16CP9		0.00532733703529
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1JAW0	 DNA repair protein RecN	0.00497251662362
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1JAW0	 DNA repair protein RecN	0.0003535530468
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SVR2		0.00532410424949
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XYI0	 Membrane protease subunit HflK	0.00532395562601
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FHU5	 Heme oxygenase  1	0.00532351507339
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AYI7	 N acetyl gamma glutamyl phosphate reductase	0.00532333183112
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C0SP91	 Putative metallo hydrolase YycJ	0.00532268706313
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I4DZ32	 Transcriptional regulator homolog	0.00532142084135
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L4D1	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00532089856166
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPE9		0.00518861244094
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U028	 Histidine kinase of the competence regulon, ComD	0.00531839102052
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WZ55	 Heme A synthase	0.00527350159329
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K4Q9M3	 Ferrous iron transport protein B	0.00531631578906
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DY37	 UPF0348 protein SAG1656	0.00521884753347
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DY37	 UPF0348 protein SAG1656	9.6988057209e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C0Z6S0	 Argininosuccinate synthase	0.00478481558683
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C0Z6S0	 Argininosuccinate synthase	0.000526562888693
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WT82		0.00531392460796
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6IRR4	 50S ribosomal protein L29	0.005311886375
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WQT8	 Membrane protein like protein	0.00457514230767
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SRT1	 Ribonuclease R	0.00531047023752
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48C82		0.00530819455194
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J5H6	 Bifunctional uridylyltransferase uridylyl removing enzyme	0.00528043568411
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A1KWW2	 Staphylococcus aureus E 1, EDINA plasmid DNA, complete sequence	0.00467394277933
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q832Z5	 Ribose phosphate pyrophosphokinase 2	0.00525688483376
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DNI6	 Phosphotransferase system, trehalose specific IIBC component	0.0053014974192
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U4S6	 Primosomal protein DnaI	0.00530052403461
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58664		0.00529960845271
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQX8		0.00528535609948
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B9DW70	 DNA mismatch repair protein MutL	0.00529839314884
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P08624	 Nitrogenase iron protein 2	0.00521099895392
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WU00	 O antigen polymerase	0.00523791414412
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23841	 HTH type transcriptional regulator XapR	0.00529758611765
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D9QNR1	 Iron sulfur cluster assembly accessory protein	0.00529709748291
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O86034	 D beta hydroxybutyrate dehydrogenase	0.00425501259896
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O86034	 D beta hydroxybutyrate dehydrogenase	0.00100925280908
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75804	 Soluble aldose sugar dehydrogenase YliI	0.00456687510766
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P75804	 Soluble aldose sugar dehydrogenase YliI	0.000727416126886
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMU8		0.00345682175842
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WRY9		0.00420244054353
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4W0T3	 Endonuclease III	0.00528756629503
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U5P8L5		0.00513583793142
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_U5P8L5		0.000150743223935
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UML7	 Predicted AAA ATPase	0.00528638300131
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46948	 Chaperone protein YajL	0.00528560724989
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6G5G1	 ATP dependent protease subunit HslV	0.00528266142267
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H6PB78	 DNA polymerase III, gamma and tau subunits	0.00521582442352
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_H6PB78	 DNA polymerase III, gamma and tau subunits	6.65554169703e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC82	 Lactoylglutathione lyase	0.00521903032879
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1JFX3		0.00528109758635
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKN1	 Hemolysin type calcium binding protein	0.005280354281
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6ST78	 Serine protease	0.00518459310002
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C6ST78	 Serine protease	9.55199314625e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77285	 Electron transport complex subunit RsxG	0.00527950779968
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77544	 Glutathione S transferase YfcF	0.00527879545326
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A3CL70	 Cobalt transport protein CbiM	0.00527798206918
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P54475	 DEAD box ATP dependent RNA helicase CshB	0.00501966991757
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P54475	 DEAD box ATP dependent RNA helicase CshB	0.000235857028813
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F0VXG5	 Adenylate cyclase	0.00527595232741
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2S7V7	 Glyoxalase Bleomycin resistance protein	0.00527551079474
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HP23	 Acetylglutamate kinase	0.00527392603684
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ASM5	 Type I secretion membrane fusion protein, HlyD family	0.00527381438109
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_K9NJK2	 Putrescine transport system permease protein	0.00527333874768
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SVD1	 Glucosyltransferase	0.00527030751138
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DV44	 Acetylglutamate kinase	0.00526897082689
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5WEU2	 Aminodeoxychorismate lyase family	0.00526667684977
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SRQ3	 Cell shape determining protein MreC	0.00526576209634
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TSN2	 Peptidase	0.0052646765043
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJT8		0.00510784234398
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUA4	 Mobilization protein	0.00405327515884
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3THN7	 Binding protein dependent transport systems inner membrane component	0.00525955513274
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q3IMY5	 50S ribosomal protein L2	0.00525873782172
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DT19		0.00525729995962
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL10		0.00525652018675
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7DFK4	  2 hydroxyglutaryl CoA dehydratase activator related protein	0.00525505534698
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P09431	 Nitrogen regulation protein NtrB	0.00525454435861
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQG5	 Flagellar hook associated protein	0.00525333229148
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LSI0	 ABC transporter, periplasmic substrate binding protein	0.00524959762868
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7Q688		0.00524919765938
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A2RKV6	 Homoserine kinase	0.00524613408218
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q7CYZ1		0.00524056744021
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q02136	 Histidinol dehydrogenase	0.00524476068464
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8P1D8		0.00505925516468
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8P1D8		0.000183906316125
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B9B4		0.00524206657046
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SS04		0.00524175122392
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2S8A9	 Nicotinate phosphoribosyltransferase	0.00521246577771
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R9RCS6	 MATE efflux family protein	0.00523895186347
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P07017	 Methyl accepting chemotaxis protein II	0.00523680316405
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2IXV2	 Transglutaminase like	0.00523665425264
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q93PN3	 Ferric hydroxamate receptor 1	0.00523660951552
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADC5	 Lipoprotein releasing system transmembrane protein LolC	0.00353427929427
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0ADC5	 Lipoprotein releasing system transmembrane protein LolC	0.00170086678283
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G2TKZ3	 NUDIX hydrolase	0.00504926281224
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G2TKZ3	 NUDIX hydrolase	0.000182906825274
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AVP5	 ABC transporter, permease protein	0.00522945088327
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUW6	 Putative conjugative transfer factor, TraB	0.00208977125446
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KS54		0.00518808740203
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C3MD65	 Phosphoribosylaminoimidazole succinocarboxamide synthase	0.00511973915723
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P57099	 Glycerate kinase	0.00509321204181
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P57099	 Glycerate kinase	0.000127965231366
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M2V1		0.00266177008397
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AMV2		0.00517298346644
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T1ZL59	 DeoR family transcriptional regulator	0.00481652846128
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_T1ZL59	 DeoR family transcriptional regulator	0.00040314220944
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2G1T7	 HTH type transcriptional regulator SarU	0.00521918751984
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P50351	 Transcriptional regulatory protein ChvI	0.0048943700798
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E4PYH8		0.0052180031036
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P10423	 Alkaline phosphatase isozyme conversion protein	0.0052150111761
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J7M1N2	 LacI family transcriptional regulator	0.00521233567741
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77234		0.00521072981919
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A0A023Y025	 Multidrug transporter	0.00520821367899
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SW93	 ABC transporter membrane protein subunit and ATP binding protein	0.00520683894019
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVS7		0.00499804649325
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIF9	 PRC barrel domain protein	0.00457848199654
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVM9	 Bacteriophage protein gp37	0.00519233777103
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K828		0.00520500282858
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5M018	 DNA topoisomerase 1	0.00520308086282
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF79		0.00520265206267
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B3GZA0	 Siroheme synthase	0.00464641652674
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B3GZA0	 Siroheme synthase	0.000544725341071
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_N0C5G3		0.00510431201412
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_N0C5G3		9.59739235272e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GCD6	 Flagellar fliL protein	0.00519958281543
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N358	 Hydrolase, alpha beta domain protein	0.00519742250431
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU58		0.0051553953691
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P19498	 Coenzyme F420 hydrogenase subunit gamma	0.00519656755873
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46817	 Guanine hypoxanthine permease GhxQ	0.00519520916182
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL39		0.00519309309627
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49YS7		0.00420056508751
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49YS7		0.000890863831337
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5LYI8	 Tryptophan synthase alpha chain	0.00518995931773
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q02151		0.00518933483409
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P45404	 Cytochrome c type biogenesis protein CycK	0.00518932277308
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P55045	 Formamidopyrimidine DNA glycosylase	0.00516478145082
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q59659	 Succinate dehydrogenase cytochrome b556 subunit	0.00469276828813
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O34113	 LctF	0.0051871658116
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKT8	 DNA repair and recombination protein RadB	0.00518599928696
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0T8E0	 Alanine  tRNA ligase	0.00478275548117
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T0T8E0	 Alanine  tRNA ligase	0.000402207120161
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IW20	 LPXTG motif cell wall anchor domain	0.00518028671341
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DS10		0.00517934643094
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PMP8	 UPF0178 protein Rsph17029_2512	0.00516367615175
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A2T8	 Fumarate and nitrate reduction regulatory protein	0.00468508308547
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0A2T8	 Fumarate and nitrate reduction regulatory protein	0.0004933312928
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8DJ95	 Tat pathway signal sequence domain protein	0.00456838068489
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8DJ95	 Tat pathway signal sequence domain protein	0.000608434271651
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZHD9	 Glutathione regulated potassium efflux system ancillary protein KefF	0.00517647285688
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U2S4	 Phosphopantetheinyl transferase	0.00517624687805
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5XCB9	 Putative NADH nitroreductase Spy0809	0.00500624537849
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5XCB9	 Putative NADH nitroreductase Spy0809	0.000167437093783
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PR78	 Peptidase S15	0.00517283928821
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ML57	 HTH type transcriptional activator RhaR	0.00516788895949
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KSR5	 Acetyltransferase	0.00516688760996
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SWF7		0.0051644307191
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33342	 Probable fimbrial chaperone YehC	0.00516424003531
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1JM47	 Transporter	0.00516035492508
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_X5K411	 Iron compound ABC transporter,iron compound binding protein	0.00489600118879
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K411	 Iron compound ABC transporter,iron compound binding protein	0.00025030750151
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CGM7	 Dihydroorotase	0.00470405373297
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9CGM7	 Dihydroorotase	0.00044083153862
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CE02	 Glycerol facilitator aquaporin gla	0.00515895007246
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DYP7	 DNA primase	0.00486486572547
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DYP7	 DNA primase	0.000293121189229
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TQK5		0.00515693938496
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DNY1	 1 acyl sn glycerol 3 phosphate acyltransferase	0.0045941667769
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DNY1	 1 acyl sn glycerol 3 phosphate acyltransferase	0.000561854481104
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2E1P6		0.00515421666728
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52048		0.00453457880565
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P52048		0.000618866584436
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5M2Y8	 Polar amino acid ABC uptake transporter membrane spanning protein	0.00454794966609
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5M2Y8	 Polar amino acid ABC uptake transporter membrane spanning protein	0.000604386152048
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YUD5	 Membrane anchored Ser Asp rich fibrinogen binding protein	0.00512112070513
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7ENI8	 Thioesterase like protein	0.0050529401696
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8E7H4	 Sensor protein LytS	0.00492759030038
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E7H4	 Sensor protein LytS	0.000213161111079
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F6P2R4		0.00515047381167
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0TW25		0.00515020331453
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHA9		0.00452979697086
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7ULC6	 Xylose isomerase	0.00512156380603
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U2T1	 Polyketide synthase	0.00514832169912
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K8EYP9		0.00514739265932
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TXG1	 Oxidoreductase	0.00514622667886
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47129	 Transcriptional activator FeaR	0.00514600406158
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PR63	 Glyoxalase bleomycin resistance protein dioxygenase	0.0051451807077
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C1C8T6	 Alanine racemase	0.00445707268264
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C1C8T6	 Alanine racemase	0.00066493943195
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABP7	 Protein DedA	0.00483343340797
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0ABP7	 Protein DedA	0.000305959556486
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U5D1	 Pyruvate formate lyase activating enzyme	0.00513917774994
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0TSZ1		0.00483246933141
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T0TSZ1		0.000305626361893
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJL0	 Peptidoglycan binding domain 1 protein	0.00513799276158
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5FNA2	 Transcriptional repressor NrdR	0.00513619079139
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F2MT10	 HD domain protein	0.00512647936303
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5FKZ1	 Thymidine kinase	0.00512568819417
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUE1	 Ribonuclease HII	0.00512108904949
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75676		0.00495467936287
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H8LF45	 Xanthine uracil vitamin C permease	0.00450046930276
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_H8LF45	 Xanthine uracil vitamin C permease	0.000618378330732
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LNW7	 CpaB family protein	0.00511853432044
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76524	 Aminopeptidase YpdF	0.00511560861102
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2ACV0	 Putative glutathione dependent formaldehyde activating enzyme	0.00492866598973
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C7N8H5	 Lipoyltransferase and lipoate protein ligase	0.00496287270983
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C7N8H5	 Lipoyltransferase and lipoate protein ligase	0.000151371165743
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F2MUA2	 Metallo beta lactamase	0.00511415905192
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5APM3	 Response regulator receiver protein	0.00511400577759
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU33		0.00511339743327
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9PIN2	 Zinc transporter ZupT	0.00511162198189
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IZ78	 Mesaconyl CoA hydratase	0.00511042847013
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IU53		0.00501483045235
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U1N8	 Transaminase	0.00510867254187
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A2RLU2	 Geranyltranstransferase	0.00494687100774
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A2RLU2	 Geranyltranstransferase	0.000161543308082
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N3N0		0.00510732440053
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X6C4	 Xanthine dehydrogenase iron sulfur binding subunit	0.00508310474223
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S1SPS9	 PTS system transporter subunit IIA	0.00510238201793
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2YKR3	 Adenine deaminase	0.00496075190595
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKK2	 Mandelate racemase muconate lactonizing enzyme	0.00509967987955
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC14	 Dihydropteroate synthase	0.00504105288353
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K0N9J9	 Cellobiose permease IIC component	0.00509892657043
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X9Z2	 UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	0.00509614894234
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q97S57	 Translation initiation factor IF 2	0.00509812603631
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4ZI73	 Hydrolase, haloacid dehalogenase like family	0.00490647613807
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZI73	 Hydrolase, haloacid dehalogenase like family	0.000187666482439
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP24	 Predicted type II restriction enzyme, methylase subunit	0.00509290349483
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5XAQ7	 Ribosome associated factor Y	0.00509178471796
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IY96	 PAS sensor Signal Tranduction Histidine Kinase	0.00509012385015
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI000362C308	 hypothetical protein	0.0040068045668
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8IPV3	 Acetylglutamate kinase	0.00503431027139
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZXQ0		0.00471581519852
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F9V6Y3	 ATP dependent Clp protease proteolytic subunit	0.00508420098816
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5WG14	 Two component system histidine kinase	0.00445831772493
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C5WG14	 Two component system histidine kinase	0.000625792044908
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A5FZN2	 Galactarate dehydratase	0.00508356730526
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IR10	 Arsenate reductase and related	0.00503127138567
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q88V07	 DNA polymerase IV	0.00507995667613
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39834		0.00507960917243
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F9V7S5	 Metallo beta lactamase superfamily protein	0.00507819384017
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QCC1	 Preprotein translocase subunit YajC	0.00256516689849
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QCC1	 Preprotein translocase subunit YajC	0.00251106966551
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YBH0		0.00468502675045
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CEB7	 Putative ribosome biogenesis GTPase RsgA	0.00417307170737
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9CEB7	 Putative ribosome biogenesis GTPase RsgA	0.000902236112725
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E4PYB8	 Replication initiator protein	0.00501809427148
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9VMC6	 CG9547	0.00506761437503
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NHW2	 4 hydroxy tetrahydrodipicolinate synthase	0.0050666991063
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TYU2	 Peptide synthetase	0.00506620301513
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D3R5Q5	 O acetyl L homoserine sulfhydrolase	0.00476102824799
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D3R5Q5	 O acetyl L homoserine sulfhydrolase	0.000304636871653
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WPP6	 Superoxide dismutase [Cu Zn]	0.00506549064185
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4YY04	 Ribosome biogenesis GTPase A	0.00480356899714
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M4YY04	 Ribosome biogenesis GTPase A	0.000261527073525
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RK54	 UPF0717 family protein	0.0050649631902
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S5NA52	 Hydrolase	0.00506462745725
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4VU31	 Predicted membrane metal binding protein	0.00496042253614
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4VU31	 Predicted membrane metal binding protein	0.000103939486353
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0VTE1	 Peptide deformylase	0.00437253188791
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0VTE1	 Peptide deformylase	0.000621012221049
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S6AZJ1		0.00506292089511
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P40680	 Probable L,D transpeptidase ErfK SrfK	0.00504806313717
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F0VY37	 PTS system, beta glucosides specific IIA component	0.00505791862955
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U3X8		0.0050574996091
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1LGM8	 Metal dependent phosphohydrolase, HD subdomain protein	0.00505640107232
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M5C7	 XRE family transcriptional regulator	0.0050547657851
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q59931	 NADP dependent glyceraldehyde 3 phosphate dehydrogenase	0.0041061167736
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q59931	 NADP dependent glyceraldehyde 3 phosphate dehydrogenase	0.000689345478221
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q59931	 NADP dependent glyceraldehyde 3 phosphate dehydrogenase	0.000177786686832
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZIZ3		0.00504822837756
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R0Y6	 Escherichia coli IMT2125 genomic chromosome, IMT2125	0.00504822837756
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C9A4P2	 Phosphorylase	0.00504683308106
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1JF14	 Trigger factor	0.00492239873711
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1JF14	 Trigger factor	0.000124340600433
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47WP5	 Ribonuclease 3	0.00438976532295
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q47WP5	 Ribonuclease 3	0.000648567589055
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TW59		0.00504521019142
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW32		0.00455274623253
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TX36	 50S ribosomal protein L22P	0.00504193493773
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T1Z4R2		0.00504138438755
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F2MTI0	 3 dehydroquinate synthase	0.00467314204482
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F2MTI0	 3 dehydroquinate synthase	0.000366676259414
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DV84		0.00503854105881
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S5RL61	 ATP dependent DNA helicase	0.00503653801624
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L3Y7	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00500267572866
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_V5P4D6	 PTS fructose transporter subunit IIB	0.0050344854911
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08245		0.00503362158088
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G617		0.00482895473731
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3TGB3	 ATPase components of ABC transporters	0.00502879846246
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C0MBF3	 Energy coupling factor transporter transmembrane protein EcfT	0.00489952627103
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C0MBF3	 Energy coupling factor transporter transmembrane protein EcfT	0.000129110700192
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5ITY8		0.00502795187955
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P46384	 Protein PilG	0.00502780426994
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WNL0	 DSBA oxidoreductase	0.00502715911757
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3WPI1	 PF05656 family protein	0.00502459083499
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9FA54	 Glucans biosynthesis protein G	0.00497286788053
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q92GE0	 3 oxoacyl [acyl carrier protein] reductase FabG	0.00501495248473
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WU00		0.00499444041792
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5WH94	 Tetra tricopeptide repeat family protein	0.00446240126991
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C5WH94	 Tetra tricopeptide repeat family protein	0.000541797143835
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0W1R5	quinone reductase 	0.00502163065941
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WXA6		0.0050211789825
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P95786	 ATP synthase subunit delta	0.00501786037708
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TX78	 Competence protein transcription factor	0.00458394259805
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I6TX78	 Competence protein transcription factor	0.000432346103269
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D4FMJ9		0.00501551997754
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWR6	 ABC sugar transporter, periplasmic lignad binding protein	0.0050145918305
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B3W6P3	 Divalent metal cation transporter MntH	0.00439726761745
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B3W6P3	 Divalent metal cation transporter MntH	0.000616543359942
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O32332	 Glucitol sorbitol permease IIC component	0.00501373958195
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q031X8	 D alanine  D alanine ligase	0.00466646162002
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q031X8	 D alanine  D alanine ligase	0.000345752694971
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KS02	 Heat shock protein Hsp20	0.00390895314682
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A2RE15	 Cell envelope related transcriptional attenuator domain protein	0.00500980133488
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03KT7	 Dihydroorotate dehydrogenase B ), electron transfer subunit	0.00500722982397
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q48662	 Malolactic enzyme	0.00500243038245
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P26172	 Geranylgeranyl diphosphate reductase	0.00498698493136
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTD3		0.00499970472379
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DWA4		0.0049976416435
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45548	 Phosphotriesterase homology protein	0.0049974809485
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKS4	 IS1272 like transposase, degenerate	0.00484577806598
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q38XG4	 3 oxoacyl [acyl carrier protein] synthase 3	0.00498537054407
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P38487	 Creatinase	0.00499451315962
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27572	 Probable tRNA pseudouridine synthase D	0.00495993204366
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLQ1		0.00494702913428
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5TD70	 Type I site specific deoxyribonuclease, HsdR family	0.00499162812141
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5M6A1	 Undecaprenyl diphosphatase	0.0033112571257
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5M6A1	 Undecaprenyl diphosphatase	0.0016798405978
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8P322	 tRNA lysidine synthase	0.00459764895342
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8P322	 tRNA lysidine synthase	0.000393368475092
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP25	 Predicted type II restriction enzyme, methylase subunit	0.00498922888301
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37127	 Protein AegA	0.00498760544096
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TCA9	 Tagatose 6 phosphate kinase	0.0048152854914
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I6TCA9	 Tagatose 6 phosphate kinase	0.00017141692284
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_L8A618	 PTS system, galactose inducible IIB component, PTS system, galactose inducible IIC component	0.00498647865459
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6U5R2	 CDP alcohol phosphatidyltransferase	0.00498630901729
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5LZ72	 Phenylalanine  tRNA ligase beta subunit	0.00460436639738
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5LZ72	 Phenylalanine  tRNA ligase beta subunit	0.000379960165002
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PX51	 Peptidase M50	0.00498243201914
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DRY1		0.00498019736288
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37683	 Inner membrane protein YiaV	0.00497971987776
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R7A897		0.00478493145723
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R7A897		0.000193418711788
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K7S8		0.00434409372476
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2J8F1		0.00183815002162
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I1ZMC2	 Multidrug ABC transporter, ATPase and permease component	0.00483687684202
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I1ZMC2	 Multidrug ABC transporter, ATPase and permease component	0.000139167634962
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U5P8L4	 Membrane protein	0.00497001357111
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B7K205	 Peptide chain release factor 1	0.00497351576209
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LN51	 RmuC domain protein	0.00497023871017
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D5GYN2	 Transcriptional regulator, repressor of sugar transport operon	0.00496968552742
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A3NQD4	 Multifunctional CCA protein	0.00435339500213
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3NQD4	 Multifunctional CCA protein	0.000387564834434
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3NQD4	 Multifunctional CCA protein	0.000228314412376
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J2S9		0.00496835595505
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D1BPV2	 NADH dehydrogenase (Quinone)	0.00496774513181
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DVQ3	 Ribosome maturation factor RimP	0.00496759553202
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P59676	 Penicillin binding protein 2X	0.00457768539649
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P59676	 Penicillin binding protein 2X	0.000389287732948
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03UP2	 Aryl alcohol dehydrogenase family enzyme	0.00496440993937
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QGM1	 ABC transporter ATP binding protein	0.00496297756535
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DT90	 Ribonuclease Z	0.00443671166647
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DT90	 Ribonuclease Z	0.000525034750102
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0A4L9	 DNA gyrase subunit B	0.00458020415075
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0A4L9	 DNA gyrase subunit B	0.000381299892987
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_J9YXD5	 Amino acid amide ABC transporter membrane protein, 2, HAAT family	0.00496042895081
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J3W5	 Putative head portal protein, HK97 family	0.00489144287115
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O69787	 Choline sulfatase	0.00488758194429
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNF8	 Transporter	0.00495479276429
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQJ6	 Flagellar hook capping protein	0.00483899775248
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CP91	 ABC transporter protein	0.0049543929379
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACQ2	 Ribose operon repressor	0.00495214575559
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN85		0.00495083331394
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F0VVV7	 Two component sensor protein	0.00468321822428
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F0VVV7	 Two component sensor protein	0.000267551140168
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B2S648	 Protein RecA	0.00454150199129
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B2S648	 Protein RecA	0.000408116998705
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16692	 Phosphoribosyl 1,2 cyclic phosphodiesterase	0.00494914025792
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P00497	 Amidophosphoribosyltransferase	0.00493009072842
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK18		0.00473032310276
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5Y8D8	 DNA topoisomerase 1	0.00494438868876
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q70AC7	 Methylmalonyl CoA carboxyltransferase 5S subunit	0.0049441022033
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P02976	 Immunoglobulin G binding protein A	0.00494401029781
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q02ZD2	 Redox sensing transcriptional repressor Rex	0.00494374761966
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KW91	 Serine acetyltransferase	0.00494308552618
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7D3U9		0.00494278539999
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0TUM6	 5 nucleotidase	0.00494256181244
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q07637	 Pyruvate kinase	0.00448035574746
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q07637	 Pyruvate kinase	0.000459277225941
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P65213	 Potassium transporting ATPase C chain 1	0.0047518556474
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q7ZAK9	 Segregation and condensation protein B	0.00424522391298
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q7ZAK9	 Segregation and condensation protein B	0.00069242878178
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZV90	 Thioredoxin	0.00493647861724
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0A0I4	 Protein translocase subunit SecE	0.00378617128317
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0A0I4	 Protein translocase subunit SecE	0.00114736167161
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T6W0	 Dehydrogenase	0.00493189977863
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D1GMZ6	 Phage minor head protein	0.00493032472099
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P46340	 Probable ABC transporter permease protein YqgI	0.00458510531074
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P46340	 Probable ABC transporter permease protein YqgI	0.000344377514621
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U5PCG2	 ABC transporter ATP binding protein	0.00492783336082
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X2A9	 Peptide methionine sulfoxide reductase MsrB	0.00490050626091
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SQK1		0.00492482385283
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5XAF5	 PTS system mannose specific EIIAB component	0.00373684902517
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5XAF5	 PTS system mannose specific EIIAB component	0.000643179103744
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q5XAF5	 PTS system mannose specific EIIAB component	0.000543305477902
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULV9	 Phosphatidylserine synthase, PssA	0.00492112397024
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P56579	 Glucitol sorbitol permease IIC component	0.00492104226938
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SPV4		0.00492058367572
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P39671	 Phosphoglucomutase	0.00491481880903
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUS0		0.00491858276748
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B1F4	 3 oxoacyl [acyl carrier protein] synthase II	0.00491802622268
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2S5M8	 Glutamate  tRNA ligase 1	0.0048785587675
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8TS80		0.00491350328742
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUT9		0.00491330419018
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5XAE3	 Malonyl CoA acyl carrier protein transacylase	0.00472133193165
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5XAE3	 Malonyl CoA acyl carrier protein transacylase	0.000189072223876
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R5PQE2	 ATPase	0.00490852383468
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YXC0	 FPRL1 inhibitory protein	0.00490545134243
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW15	 Glutathione biosynthesis bifunctional protein GshAB	0.00466507159899
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DW15	 Glutathione biosynthesis bifunctional protein GshAB	0.000240133378862
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A9CR98		0.00490512305875
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNZ3	 Type IV prepilin peptidase	0.00490342446215
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVV1	 Periplasmic sensor signal transduction histidine kinase	0.00490274177837
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5M3F8	 Polysaccharide biosynthesis protein	0.00489415394123
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B2IQP4	 Peptidase, U32 family	0.00482243856345
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B2IQP4	 Peptidase, U32 family	7.85716478965e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M5ABS1	 Antiholin like protein LrgB	0.00472929760406
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M5ABS1	 Antiholin like protein LrgB	0.000171708448215
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8RE73	 Transcriptional regulator, DeoR family	0.00489915688103
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K4PVR2	 CBS domain protein	0.00489826027982
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LQ23	 Paraquat inducible protein A, putative	0.00489805397746
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47152		0.00489621683999
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4YX89	 Stage 0 sporulation protein	0.00489613914001
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B8CRT5	 Homoserine O succinyltransferase	0.00486633039704
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SVD2	 ABC transporter permease	0.00486197012402
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TYL9		0.00489506461194
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75874		0.00489455412758
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PGQ0	 ErfK YbiS YcfS YnhG family protein	0.00489323861283
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J7M8F1	 Primosome assembly protein	0.00489129827272
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P38392	 Superinfection exclusion protein B	0.00488839189104
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DR59	 Penicillin binding protein 1A	0.00463408061354
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DR59	 Penicillin binding protein 1A	0.000253620037426
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77789		0.00488753868177
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B0KR46	 N succinylarginine dihydrolase	0.00323233692635
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B0KR46	 N succinylarginine dihydrolase	0.00134715434646
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0KR46	 N succinylarginine dihydrolase	0.000286562021999
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9J9V0	 ABC transporter	0.0048869670163
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1HH61	 Cyclic di GMP binding protein	0.00488518328391
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47153	 Putative protein FhiA	0.00488490364678
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9CM94	 Anaerobic ribonucleoside triphosphate reductase activating protein	0.00484580991288
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACR7		0.00488307057826
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5FKL1	 ABC transporter permease protein	0.0044394049434
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5FKL1	 ABC transporter permease protein	0.000440916466672
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P13669	 Mannosyl D glycerate transport metabolism system repressor MngR	0.00487935731141
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P43340		0.00487677495226
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8PUV4	 NADH dehydrogenase (quinone)	0.00487666414285
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKB5	 V type ATP synthase subunit E	0.00487588512295
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98IW6	 Mll2216 protein	0.00473096294588
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q02419	 Protein PhnA	0.00487252191131
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YNN7	 ABC 2 transporter family protein	0.00487216253262
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZK4	 Sortase family protein	0.00487171496555
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4X335	 ABC transporter related	0.00412934390196
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A4X335	 ABC transporter related	0.000401238095146
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4X335	 ABC transporter related	0.000339216166814
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8AP76	 Nickel cobalt efflux system RcnA	0.00486723410952
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S5ED07	 Jag protein	0.00486324794817
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0A3Q0	 4 alpha glucanotransferase	0.0047946639875
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0A3Q0	 4 alpha glucanotransferase	6.76706216868e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7RCA7		0.00486161049678
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TD39	 2 C methyl D erythritol 4 phosphate cytidylyltransferase	0.00484895164893
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW20	 AguR protein	0.00486105322787
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULB0	 Tungsten formylmethanofuran dehydrogenase, subunit F, FwdF	0.00486063310687
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P34001		0.00461739541413
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P34001		0.000242981865753
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B1B3K1	 Truncated Pre protein	0.00486025666269
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HND5		0.00485894852809
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CMZ5	 Dihydrolipoamide acetyl transferase, E2 component, putative	0.00485856949282
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8S2N5	 Transamidase GatB domain protein	0.00485710473932
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DT75	 ATP dependent helicase deoxyribonuclease subunit B	0.00482414521043
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W839	 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	0.00485455275186
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4F1A3	 Agmatinase	0.00485379837404
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77791	 Maltose O acetyltransferase	0.00485011416437
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FL68	 Ribosomal RNA small subunit methyltransferase H	0.00341992746144
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8FL68	 Ribosomal RNA small subunit methyltransferase H	0.00137495919357
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6L918		0.0048489833839
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WWG0	 FAD dependent oxidoreductase	0.00484874163009
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GIU5	 Cell division protein ftsA	0.00484826352404
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q13T51	 UPF0271 protein Bxeno_A4200	0.00484678915216
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31436	 Sugar efflux transporter C	0.00484501753467
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACV2	 Protein Ddg	0.00484401865385
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XKW1	 Spermidine putrescine transport system, permease protein	0.00484400650546
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q7UIA7	 3 isopropylmalate dehydratase large subunit	0.00425992349623
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q7UIA7	 3 isopropylmalate dehydratase large subunit	0.000522064089329
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNV7		0.00483926537216
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P42360		0.00405126156082
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P42360		0.000787719536335
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0TD56	 Carbonic anhydrase	0.00483810602531
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H6P8E7	 Pyridoxal phosphate enzyme, YggS family	0.00483808729643
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C482	 Hydrolase 	0.00483646887611
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O05158	 PAGS 5	0.00483576517653
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q167S3	 TRAP dicarboxylate transporter, DctM subunit, putative	0.00481332319711
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H6PBU2	 Nitroreductase	0.00483455912017
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W9EI16	 Replication associated protein	0.00474373229316
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E3GXP2	 Phosphate ABC transporter substrate binding protein, PhoT family	0.00483340089247
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D1BS48		0.00482843711363
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37440	 Oxidoreductase UcpA	0.00482808897038
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7DL42	 Type I restriction modification system, specificity determinant	0.00482764286864
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DT71		0.00482625961281
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5ITY3		0.0048258768331
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P17802	 A G specific adenine glycosylase	0.00482469648153
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D8IJC7	 Glycerol dehydrogenase	0.0043845505551
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D8IJC7	 Glycerol dehydrogenase	0.000440019757327
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZT64		0.00482400748578
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52096		0.00482309222645
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TW33	 TetR AcrR family transcriptional regulator	0.00482202769169
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30979		0.00482186780519
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P25130		0.00481755237445
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T745	 Cell wall protein, WapE	0.00481511634554
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5E195		0.00481481655033
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMN6	 5 methylthioadenosine S adenosylhomocysteine deaminase	0.00481438014434
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R6A5	 Ribose 5 phosphate isomerase A	0.00481285915746
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P66796	 Transcriptional regulatory protein QseB	0.00481269866019
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAM2	 Probable Ni Fe hydrogenase 1 B type cytochrome subunit	0.00481182137659
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98C76	 Mlr5266 protein	0.00481137689416
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4T8M7	 Shikimate kinase 2	0.00481083411699
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G4Q6V2	 Carbamoyl phosphate synthase large chain	0.00470303756517
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G4Q6V2	 Carbamoyl phosphate synthase large chain	0.00010694989725
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ASM9	 Peptide deformylase	0.00480969889196
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WUL0		0.00480783655005
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0S2		0.00480725201004
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4W1C0	 Predicted Rossmann fold nucleotide binding protein involved in DNA uptake	0.00424361194519
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4W1C0	 Predicted Rossmann fold nucleotide binding protein involved in DNA uptake	0.000563253308779
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SSP8		0.00480648408825
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8DK82	 Bacterial capsule synthesis protein	0.00446497342456
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8DK82	 Bacterial capsule synthesis protein	0.000334534597049
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F4FKW9		0.00480517937908
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E7PW89	 Sensor histidine kinase	0.0048026740131
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WS78	 Signal transduction histidine kinase	0.00480163948402
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GJ92	 Protein VraC	0.0047992384338
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3F4P1	 Short chain dehydrogenase reductase SDR	0.00479399182572
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44501	 2 hydroxyacid dehydrogenase homolog	0.00356042609767
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P44501	 2 hydroxyacid dehydrogenase homolog	0.00123326447898
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWQ1	 Caspase family protein	0.00479253085345
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5DX77		0.00469638764652
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5SXF8	 GntR family transcriptional regulator protein	0.00479048339601
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V6EN15	 Oligopeptidase A	0.00479046523191
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LMC4	 Peptidase, family S49	0.0047896750836
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C2G5	 Permease	0.004679706361
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C9AC53	 His Glu Gln Arg opine family amino ABC transporter, permease, 3 TM region	0.0039723779263
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C9AC53	 His Glu Gln Arg opine family amino ABC transporter, permease, 3 TM region	0.000813889155413
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DWA7		0.00477907964735
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQR2		0.00478447793075
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5LAL6		0.00478443229087
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H1XUH5	 Cysteine desulfurase	0.00478428348071
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XSU0	 Segregation and condensation protein A	0.00476750532969
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30177		0.00478276458352
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58758		0.00478121193277
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IYV6	 ECF RNA polymerase sigma factor RpoE	0.00477775761024
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SQQ0		0.00477718249481
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76112	 L amino acid N acyltransferase MnaT	0.0047761650625
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW20		0.00127380980503
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E2Z2	 Transcriptional regulator	0.00477480478431
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A028QNK4		0.00477435784413
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P54689	 Branched chain amino acid aminotransferase	0.00418328110887
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P54689	 Branched chain amino acid aminotransferase	0.000488406651636
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P54689	 Branched chain amino acid aminotransferase	0.000101984411668
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW48		0.00342702863783
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LTL4	 Resolvase domain protein	0.00477195215479
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DTF8		0.00477145081066
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SP54		0.00477052154201
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4W090	 Putative sporulation transcription regulator WhiA	0.00449236512993
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4W090	 Putative sporulation transcription regulator WhiA	0.000276859598763
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U0Z2	 Transcriptional regulator	0.0047691476566
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R3P2	 PHB depolymerase	0.00450545637459
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O85674	 Anthranilate 1,2 dioxygenase small subunit	0.00476777124547
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T999	 Putative DNA binding protein	0.00476254488251
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KUN2	 Oxidoreductase domain protein	0.00476253665921
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WNN9		0.0036278123303
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DTC7	 Chaperone protein ClpB	0.00476016293719
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9VVU4	 Cyclopropane fatty acyl phospholipid synthase	0.00475092534509
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P94417	 Aspartokinase 3	0.00411300905449
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P94417	 Aspartokinase 3	0.000496705989632
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_S4X152		0.00475707355345
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q162C3	 Sodium hydrogen exchanger family, putative	0.00475683587333
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8DSD7	 30S ribosomal protein S6	0.00222780531406
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8DSD7	 30S ribosomal protein S6	0.00183374917154
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSD7	 30S ribosomal protein S6	0.000695110958018
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PR77	 Major facilitator superfamily MFS_1	0.0047562836198
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P50840	 Putative RNA methyltransferase YpsC	0.00420858355072
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P50840	 Putative RNA methyltransferase YpsC	0.000437986230234
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B476	 Beta lactamase domain protein	0.0047528313
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1R9	 Operon regulator SmoC	0.00475224560892
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV02		0.00475099085748
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77256		0.00475055958409
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P62904	 Transposase from transposon Tn1545	0.00458049041838
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P62904	 Transposase from transposon Tn1545	0.000169625728247
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23877	 Ferric enterobactin transport system permease protein FepG	0.00474878314961
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P26982	 Periplasmic serine endoprotease DegP	0.00428346534425
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P26982	 Periplasmic serine endoprotease DegP	0.000465274504846
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SRD4		0.00451233052825
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TS63	 ABC transporter permease	0.00474747370561
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q89ER2	 Alkanesulfonate monooxygenase	0.00471693678805
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8HDN7	 GTPase HflX	0.00432214127468
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8HDN7	 GTPase HflX	0.000418523350642
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4VWU0	 Oxidoreductase, aldo keto reductase family	0.00431028115487
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4VWU0	 Oxidoreductase, aldo keto reductase family	0.000429696768239
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3Y3Z6	 PHP domain protein	0.00473900624443
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4ZZW8	 Intramembrane protease RasP YluC, implicated in cell division based on FtsL cleavage	0.00473831941401
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23883	 Aldehyde dehydrogenase PuuC	0.00316693720323
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P23883	 Aldehyde dehydrogenase PuuC	0.00156580212221
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFL4	 Predicted ABC type nitrate sulfonate bicarbonate transport system, permease protein	0.00473363872013
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76559		0.00473334505232
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5ZHL1	 Sulfatase	0.00447882535746
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5ZHL1	 Sulfatase	0.000254334884536
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NE41		0.00473160998906
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1WG05	 Dimethylmenaquinone methyltransferase	0.00472797655149
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI00005C8244	 transposase	0.00432562112631
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5WE91	 Acetoin dehydrogenase E1 component beta subunit	0.00472755981126
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D9PYS9	 Non canonical purine NTP pyrophosphatase	0.00472755043103
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R7MP32		0.00472459734257
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6X6K9	 2,5 diketo D gluconic acid reductase A	0.00472311765628
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RBA6		0.00436639477355
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8V2H2		0.00472198232595
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q5QKR8	 UDP N acetylglucosamine 4,6 dehydratase 	0.00437142262549
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q5QKR8	 UDP N acetylglucosamine 4,6 dehydratase 	0.00027780948655
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E016	 Tungsten formylmethanofuran dehydrogenase subunit F FwdF	0.00472102096436
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1I7K6	 Succinate dehydrogenase, cytochrome b556 subunit	0.00472045137769
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7UPF3	 Endonuclease V	0.0046831907931
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMP4	 Serine aspartate repeat containing protein F	0.00471802270786
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T783	 Transporter trans membrane domain bacteriocin immunity protein	0.00457137225766
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJ14	 Lipopolysaccharide biosynthesis	0.00471602111186
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G7SBD4		0.00399086893274
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G7SBD4		0.000724967628253
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHA2		0.00450598746497
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X4T7	 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	0.00325685928598
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X4T7	 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	0.00145657528368
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U214	 Inorganic ion ABC transporter ATP binding protein, possible ferrichrome transport system	0.00439364522388
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I6U214	 Inorganic ion ABC transporter ATP binding protein, possible ferrichrome transport system	0.000318500213096
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_I4CF79	 ATPase involved in chromosome partitioning	0.00471180952933
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J3X6		0.00470875668111
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7DV55	 ATP binding protein	0.00470786240961
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P05425	 Copper exporting P type ATPase B	0.00308469995663
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P05425	 Copper exporting P type ATPase B	0.00114043874855
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P05425	 Copper exporting P type ATPase B	0.000478005580712
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U4S4	 Blue light receptor BLUF domain containing protein	0.00470699364922
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SQS1		0.00470659313741
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P13036	 Fe dicitrate transport protein FecA	0.00410999420959
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P13036	 Fe dicitrate transport protein FecA	0.000591923084517
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QH70		0.00470068635461
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PL49	 Response regulator receiver protein	0.00469866737068
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKG8	 Nicotinate nucleotide pyrophosphorylase [carboxylating]	0.00469696321063
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A034LRF8		0.00469581702898
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZAW9	 Sulfoxide reductase catalytic subunit YedY	0.00400149984489
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8ZAW9	 Sulfoxide reductase catalytic subunit YedY	0.000692863802228
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW77		0.00469363819543
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7N5M7	 Flagellar L ring protein	0.0046926312804
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SRM3		0.00469171983937
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PVW1		0.00469075274835
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PN29		0.0042035487537
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GHZ2	 GTPase Der	0.00468882714998
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U2X8		0.00468880382286
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZSR5	 Shikimate kinase 1	0.0046183138684
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37317	 Integrase	0.00468640012258
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6UCT4	 Glycosyl transferase family 8	0.00468526409842
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76176		0.00468510572701
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IUF8		0.00468453242591
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7ZLE6	 TRAP transporter subunit DctP	0.00468399322538
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMM1	 Predicted metal dependent phosphoesterase, PHP family	0.00468394020865
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_C4Z354	 3 hydroxybutyryl CoA dehydrogenase	0.00468323285886
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SUU9		0.00449025729398
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75821		0.00467894983706
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKI6		0.00467874260687
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_V6H5T7		0.00467865660148
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q00749	 Multiple sugar binding protein	0.00467487804422
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q1ITT1	 50S ribosomal protein L35	0.00363839113268
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q1ITT1	 50S ribosomal protein L35	0.001035779181
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LHS2	 Response regulator receiver protein	0.00467160910475
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TNX3		0.00467062344301
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76280		0.00466989760778
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q3YYG5	 Regulatory protein RecX	0.00466913745103
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U4I6	 Holliday junction resolvase RecU	0.00449367868393
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B4U4I6	 Holliday junction resolvase RecU	0.00017141692284
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFZ1	 Protein SseB	0.00466490531957
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8LGT0	 Transcriptional regulator, DeoR family	0.00466381035329
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNL6	 Transposase, RNaseH like family	0.00466149769044
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHR5		0.00381673216736
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1E1		0.00466022084077
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFT3	 Inner membrane amino acid ABC transporter permease protein YecS	0.00465896091255
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7N3F3	 Chaperone protein TorD	0.00465545071973
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4ZQK4	 D alanyl transfer protein DltB	0.00374234934966
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZQK4	 D alanyl transfer protein DltB	0.000911697429797
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P57576	 50S ribosomal protein L6	0.00445774894845
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P57576	 50S ribosomal protein L6	0.000190140428536
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WSD0	 Peptidase M10, serralysin like protein	0.00464669153814
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P908	 Transcriptional regulator, GntR family	0.0046466724168
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R7B660	 Dihydrodipicolinate reductase domain protein	0.00464441416712
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G9WJ36	 Ribonucleoside diphosphate reductase subunit beta	0.00452709268684
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G9WJ36	 Ribonucleoside diphosphate reductase subunit beta	0.000116857138369
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U3L2	 Glycine D amino acid oxidases family	0.00436105124959
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B4U3L2	 Glycine D amino acid oxidases family	0.000282390079137
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G5JVK4	 Acyl ACP thioesterase	0.00464244130939
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6AH12	 NAD dependent epimerase dehydratase family protein	0.00464178420606
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TGL3	 Ubiquinone menaquinone biosynthesis C methyltransferase UbiE	0.00462711720183
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q81IT9	 DEAD box ATP dependent RNA helicase CshA	0.00403185313963
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q81IT9	 DEAD box ATP dependent RNA helicase CshA	0.000569049569947
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G2TP30	 Histidine triad  protein	0.00463357993961
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44645	 Molybdopterin adenylyltransferase	0.00463218466003
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77396		0.00462634736127
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5H1S4	 Acyl CoA dehydrogenase	0.00448423275896
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5H1S4	 Acyl CoA dehydrogenase	0.00013849734918
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4RDZ6	 Taurine transporting AtPase	0.00462187140649
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E149	 Cell division protein FtsZ	0.00462111293503
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TPS2		0.00461973460442
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TE36	 Undecaprenyl diphosphatase	0.00450046402025
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IS41		0.00461936615623
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E8MRI6	 Two component response regulator	0.00461933881063
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLY5		0.00442922403112
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FF88	 Accessory gene regulator protein B	0.00448009605098
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5RYV7	 Lysine decarboxylase family protein	0.00461527889979
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5LYY8	 Galactose 1 phosphate uridylyltransferase	0.00461360162828
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O04904	 Dihydroorotase, mitochondrial	0.00357149807516
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O04904	 Dihydroorotase, mitochondrial	0.000830397053697
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_O04904	 Dihydroorotase, mitochondrial	0.000209535220118
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q7NFC3	 Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	0.00419327086061
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q7NFC3	 Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	0.000407303141601
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U336	 Glutamine amidotransferase	0.00460961816629
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G7SP01	 RNA methyltransferase, TrmH family, group 3	0.00460892425793
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U5P9W8	 Haloacid dehalogenase	0.00414103509318
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_U5P9W8	 Haloacid dehalogenase	0.000467183848247
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJ18	 UDP glucose pyrophosphorylase	0.00460595140745
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P45861		0.00460527396052
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FWV6	 Staphylococcal complement inhibitor	0.00460518943035
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P37981	 Inorganic pyrophosphatase	0.00460481397258
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CGB9		0.00460420183992
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7D8T2	 Glycosyltransferase	0.00460386134102
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TQY8	 Gramicidin S synthetase	0.00460334740703
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30866		0.00460250889854
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B1L1		0.00459663717457
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5XD24	 Probable metallo hydrolase M6_Spy0554	0.00460015697678
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SPU7		0.00459762722186
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS01		0.00459507172701
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TNQ1	 Aminotransferase	0.00459345203595
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q7UNC2	 Imidazoleglycerol phosphate dehydratase	0.00448345038552
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SU58	 Bacteriocin operon protein ScnE homolog	0.00459136099763
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P07102	 Periplasmic AppA protein	0.00450872885594
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A0A024C317		0.00458929852505
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZMQ9	 UPF0756 membrane protein YeaL	0.00458929852505
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O68560	 Ribosome association toxin RatA	0.00458929852505
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSL9		0.00458929852505
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q837R5	 UPF0042 nucleotide binding protein EF_0766	0.00458923934177
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5M430	 tRNA dimethylallyltransferase	0.00429270925189
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5M430	 tRNA dimethylallyltransferase	0.000251265235304
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4HIB4		0.0038289003597
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A3DGK6	 Acetylglutamate kinase	0.00455557328771
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28UI8	 tRNA  ) methyltransferase	0.00458641389403
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7IHD1	 Rubredoxin type Fe4 protein	0.00458633405543
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P72524	 DNA gyrase subunit A	0.00434445367558
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P72524	 DNA gyrase subunit A	0.000231074518954
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKS3	 Type II secretion system protein, GspF	0.00458264317873
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37329	 Molybdate binding periplasmic protein	0.00458228855762
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I4DZ12	 Response regulator homolog	0.00438537580563
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I4DZ12	 Response regulator homolog	0.000194162629908
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46802		0.0045763511017
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5WIG1	 16S rRNA mC 967 methyltransferase	0.00448217546927
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C5WIG1	 16S rRNA mC 967 methyltransferase	9.33992299267e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YWN2		0.00457275963389
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SMV0	 Siroheme synthase CysG	0.00457246355828
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9S8	 High affinity branched chain amino acid transport ATP binding protein LivG	0.00456829237577
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8LKP2		0.00456804610464
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A0A026BBH0	 Aldo keto reductase	0.00456473137648
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KLU7	 GCN5 related N acetyltransferase	0.00456298806474
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNC9	 ISSep1 like transposase	0.00395127292306
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKF4		0.00456198560884
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8E418	 DNA translocase FtsK	0.00441759311976
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E418	 DNA translocase FtsK	0.000143548869679
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G0HAL8	 Glycerol dehydrogenase	0.00456110574949
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C256		0.00456104063322
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9I676	 D hydantoinase dihydropyrimidinase	0.00427683521788
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I676	 D hydantoinase dihydropyrimidinase	0.000283790453035
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5P409	 Peptide chain release factor 3	0.00346052577516
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5P409	 Peptide chain release factor 3	0.000949264953233
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q5P409	 Peptide chain release factor 3	0.000150256870575
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACB2	 Delta aminolevulinic acid dehydratase	0.00441083411658
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C7LDR5	 Glutamine amidotransferase, putative	0.00455931462995
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HN02		0.00436273445947
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFJ9	 Low affinity inorganic phosphate transporter 1	0.0035494041883
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AFJ9	 Low affinity inorganic phosphate transporter 1	0.00100349625964
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8RFZ3	 UPF0324 membrane protein FN0533	0.00443327745321
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8RFZ3	 UPF0324 membrane protein FN0533	0.000119061990035
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SMW6		0.00455191162673
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WWA2		0.00445929070542
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5LZ25	 Aminoacylase N acyl L amino acid amidohydrolase hippurate hydrolase	0.00454578534735
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77968	 Superoxide dismutase [Fe]	0.00453077006373
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5WGJ7	 XRE family transcriptional regulator	0.00454392040934
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULH0	 2 deoxyribose 5 phosphate aldolase , DeoC	0.00454389446984
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZMU3	 Probable manganese efflux pump MntP	0.00454180973334
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8EA81	 Single stranded DNA binding protein	0.00454054019802
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKX5	 Conserved domain protein	0.00453893448521
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DWH1	 tRNA pseudouridine synthase A	0.00453822056514
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F8ETX3	 ParB like partition protein	0.00453691702793
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P18811	 Maltose regulon regulatory protein MalI	0.00453535859994
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J226	 Phage protein, HK97 gp10 family	0.00431428102497
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E124	 UDP N acetylglucosamine diphosphorylase glucosamine 1 phosphate N acetyltransferase GlmU	0.00453287745315
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SPR1	 Dihydrolipoyl dehydrogenase	0.00453271724669
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U0E0	 Stress response protein	0.00453096532143
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PP80	 Diguanylate cyclase	0.00396377134477
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SQS3		0.00452914416364
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI00035EF123	 RNA helicase, partial	0.00452913240233
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QJ51	 Rhodanese like domain protein	0.00325715726019
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QJ51	 Rhodanese like domain protein	0.00127178850075
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8IMU7		0.00429711343168
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8IMU7		0.000229987625399
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_R6V5M5	 Radical SAM domain protein	0.00387790158875
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_R6V5M5	 Radical SAM domain protein	0.000647532382604
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R6ZG02	 Precorrin 4 C methyltransferase	0.00365428885198
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6ZG02	 Precorrin 4 C methyltransferase	0.000871130465164
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q56110	 Outer membrane protein S1	0.00452504783762
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADC7	 Lipopolysaccharide export system permease protein LptG	0.0045249472582
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5SJE8		0.00452390648689
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P02925	 D ribose binding periplasmic protein	0.00452301628766
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52007	 Protein YecM	0.00452289746843
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4Q3U4		0.00452088135358
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27441	 3 isopropylmalate dehydrogenase	0.00451069628668
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS32		0.00452069988677
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZRS2	 Blue copper oxidase CueO	0.00452021100644
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4VU30	 DNA uptake protein and related DNA binding proteins	0.00451856119375
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O58411	 Pyruvate ketoisovalerate oxidoreductases common subunit gamma	0.00451799773733
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LNK3	 Holo [acyl carrier protein] synthase	0.00448498684713
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K8EIP5	 Radical SAM superfamily protein	0.00451637528858
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76362	 UPF0758 protein YeeS	0.00451619749822
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26329	 Cobalt precorrin 8X methylmutase	0.00451335851475
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q6MSN9	 30S ribosomal protein S8	0.0039444508638
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6MSN9	 30S ribosomal protein S8	0.000315514273597
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q6MSN9	 30S ribosomal protein S8	0.000253044028954
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5LYF9		0.00450197225599
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45799	 ADP compounds hydrolase NudE	0.0045082990735
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SPU8	 Glucan binding protein C	0.00450781436855
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26742	 Amidophosphoribosyltransferase	0.00450209051155
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PN67		0.00450329450441
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q984R8	 Mll7872 protein	0.00450299959827
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q9ZBH3	 UPF0264 protein SCO6440	0.00450019841101
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26944	 Metalloprotease MTH_856	0.00450004514233
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0BAQ4	 tRNA modification GTPase MnmE	0.00271258828758
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0BAQ4	 tRNA modification GTPase MnmE	0.00171117625032
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q0BAQ4	 tRNA modification GTPase MnmE	7.60275358073e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1A8	 1 deoxy D xylulose 5 phosphate synthase 1	0.00447445973076
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q9V2R2	 Quinolinate synthase A	0.00448386638158
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D3HEP6	 Glycosyl hydrolases family 25	0.00400495755567
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D3HEP6	 Glycosyl hydrolases family 25	0.000491857897248
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SRF0		0.00449661046668
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9E1	 Arabinose operon regulatory protein	0.00449313917107
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q99XQ7	 Elongation factor Ts	0.00428568204345
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q99XQ7	 Elongation factor Ts	0.000206620981839
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGB1	 Phosphoserine phosphatase	0.00431092593727
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PMC5	 Phospholipid glycerol acyltransferase	0.00448853070218
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R7MTU6		0.00312028806211
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R7MTU6		0.00136819774915
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK81	 Predicted transcriptional regulator	0.00448777799873
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q02425	 Putative transcriptional regulator MtlR	0.00448533449472
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6T4E6	 UPF0246 protein KPN78578_00060	0.00389442067912
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6T4E6	 UPF0246 protein KPN78578_00060	0.000552987763462
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6T5Z2	 Putative glutamate  cysteine ligase 2	0.0044847107555
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUC9	 Probable 2  3 dephosphocoenzyme A synthase	0.00448421890505
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E3I9	 PIN domain containing protein	0.00448317549688
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9GRA4	 50S ribosomal protein L1	0.0044818765783
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFW6	 Regulator of nucleoside diphosphate kinase	0.00448181495393
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTV5	 Extracellular solute binding protein, family 3	0.00448172011075
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LPB3	 Import inner membrane translocase	0.00417688442557
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P95676	 Alpha acetolactate decarboxylase	0.00433978500059
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P95676	 Alpha acetolactate decarboxylase	0.000140815296448
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8DIJ3	 Acetyltransferase, GNAT family	0.00448058230265
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S5FCX8	 Carboxylate  amine ligase	0.00448056916425
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D4MG24	 Transcriptional regulator, GntR family	0.00447979780402
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZKS4	 Phosphatase NudJ	0.00447861554601
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X204	 Large conductance mechanosensitive channel	0.00447844143877
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P44990	 Putative L ribulose 5 phosphate 3 epimerase SgbU	0.00417393058393
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44990	 Putative L ribulose 5 phosphate 3 epimerase SgbU	0.000128945807859
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P44990	 Putative L ribulose 5 phosphate 3 epimerase SgbU	0.000118781844174
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XE72	 2 dehydropantoate 2 reductase	0.0044762444096
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B3EPQ3	 Protease HtpX homolog	0.00447606640996
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HCM9	 Poly beta 1,6 N acetyl D glucosamine N deacetylase	0.00447590192718
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_M1XHM6	 Universal stress protein family protein	0.00267835215143
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_M1XHM6	 Universal stress protein family protein	0.00179749769031
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CKQ0	 Malate permease, putative	0.00447459437398
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SMU9	 CRISPR associated protein Cas4	0.00447405373743
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKS7	 Transcriptional regulator, MarR family	0.00447362497581
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q89N53	 GMP synthase [glutamine hydrolyzing]	0.00365448800386
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q89N53	 GMP synthase [glutamine hydrolyzing]	0.00051666940653
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q89N53	 GMP synthase [glutamine hydrolyzing]	0.000257922045004
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5X1A0	 Ribosomal RNA large subunit methyltransferase E	0.00251121504706
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5X1A0	 Ribosomal RNA large subunit methyltransferase E	0.00195031837936
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DV78		0.00447170019454
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9JHG8		0.00444018888745
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_C4ZGW0	 Aspartate aminotransferase, putative	0.00447006927207
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_X5PZN2	 Transposase	0.00446945838367
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P11000	 Wall associated protein	0.00446913818316
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F2M7N9	 ABC superfamily ATP binding cassette transporter, ABC protein	0.00406940529751
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F2M7N9	 ABC superfamily ATP binding cassette transporter, ABC protein	0.00039960940675
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3XD08	 Lipid A export ATP binding permease protein MsbA	0.0044686387362
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F2J6H9	 Bacteriophage related protein	0.00436556981661
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6ST75		0.00446609439763
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P72525	 DNA topoisomerase 4 subunit A	0.0042700598395
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P72525	 DNA topoisomerase 4 subunit A	0.000185496944463
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6U9U3	 Cyclic pyranopterin monophosphate synthase	0.0044561713224
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TSK5	 Osmoprotectant amino acid ABC transporter ATP binding protein	0.00446336003363
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZVT4	 Phosphoribosylformylglycinamidine synthase	0.00446280357411
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SRE4		0.00446097096094
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SR85		0.00445940862028
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I2ZQB3	 L lactate dehydrogenase 	0.00445910521981
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T636	 MutG	0.00445907954399
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQW5		0.00445762604166
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P10249	 Sucrose phosphorylase	0.0044558748046
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G4QII0	 D isomer specific 2 hydroxyacid dehydrogenase, NAD binding protein	0.00445449486465
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F9Y8V6	 Sugar ABC transporter, permease protein	0.00445445594536
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U5PD31	 Asparaginase	0.00374935953614
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_U5PD31	 Asparaginase	0.000704080503851
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M5AC54		0.00406296371612
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M5AC54		0.00039007600134
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XE45	quinone oxidoreductase	0.00228368648636
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8XE45	quinone oxidoreductase	0.00182136317128
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q8XE45	quinone oxidoreductase	0.000291893911813
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P71311		0.00445191334239
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G2SQ27	 Glycosyltransferase	0.00445185563423
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN92	 Multidrug efflux permease, AraJ	0.00445179482459
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K4QA11		0.0039106394955
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4QA11		0.000540445047347
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFK8	 Spermidine putrescine transport system permease protein PotC	0.00444812947011
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B1MWT1	 ABC type dipeptide oligopeptide nickel transport system, permease component	0.0044478665228
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26858	 Endonuclease III	0.00444746918424
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27494	 Phosphoribosylamine  glycine ligase	0.00444649634864
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4M2X7		0.00444501118643
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36930	 Galactitol utilization operon repressor	0.00444312290235
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28W31	 Transcriptional regulator PpsR	0.00444286178709
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V7ZEH0	 ABC transporter permease and ATP binding protein	0.00444170727425
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03K16	 4 hydroxy tetrahydrodipicolinate synthase	0.00444081474749
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8E5K2	 Phosphate binding protein PstS 1	0.00444039663878
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHA6		0.00323398619948
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q046F5	 Ribose xylose arabinose galactoside ABC type transport system, permease component	0.00443911631109
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P68898	 HPr kinase phosphorylase	0.00443880309312
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GE71		0.00443876390234
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31474	 Probable transport protein HsrA	0.00443826430636
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R5VVL9		0.00443761012057
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AXV1	 Transporter	0.00443533343599
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04CP4	 Fhu operon transcription regulator	0.0044342878675
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WSW4	 ErfK YbiS YcfS YnhG family protein	0.00443301034466
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9HYE8	 Fumarate reductase iron sulfur protein	0.004432612486
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44450	 Formate dehydrogenase iron sulfur subunit	0.00327947808824
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P44450	 Formate dehydrogenase iron sulfur subunit	0.00115242226469
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TQG8	 Signal peptidase I	0.00442755709412
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44742		0.00434584091874
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P44742		8.05140092145e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6Q203	 Transposase	0.00442600469836
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76345	 Cytochrome b561 homolog 1	0.00442491977054
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76419		0.00442487234529
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46863	 Putative binding protein YgiS	0.00442476617878
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0CZ69	 Arginine regulator	0.00442450956873
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0TCE5	 SWF SNF family helicase	0.00442390142258
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S5RNF0		0.00442040784076
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C0V9	 Rhamnulokinase	0.00442035581943
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SRL3		0.00441860813137
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DVZ9		0.00441860715053
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVN0		0.00441428934247
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE54	 Putative peroxiredoxin bcp	0.00441400257249
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42599		0.00441359994156
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5M456		0.00429383916589
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5M456		0.000119484695331
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9H6	 Cobyrinic acid a,c diamide adenosyltransferase	0.00418189021278
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6D7E5	 Zinc transporter ZitB	0.00441214786536
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABU5	 Enhancing lycopene biosynthesis protein 2	0.00386528909413
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0ABU5	 Enhancing lycopene biosynthesis protein 2	0.000544970487756
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U158		0.0044088730968
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KPQ3		0.000435192101515
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZV25	 Bacillithiol system protein YtxJ	0.00399124584302
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C7ZV25	 Bacillithiol system protein YtxJ	0.000417208956827
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULV3	 IMP cyclohydrolase	0.00440751194073
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q02001	 Anthranilate synthase component 1	0.00439697652507
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KP07		0.000593909220891
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S6C0Y4	 Citrate transporter protein	0.00440551441991
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P20083	 DNA topoisomerase 4 subunit B	0.00295498930401
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P20083	 DNA topoisomerase 4 subunit B	0.0011995523475
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P20083	 DNA topoisomerase 4 subunit B	0.000248793851224
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AVA4	 ABC transporter ATP binding protein	0.0044028739458
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76445	 Inner membrane protein YeiU	0.00440194769928
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P37487	 Manganese dependent inorganic pyrophosphatase	0.00429249480532
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P37487	 Manganese dependent inorganic pyrophosphatase	0.00010821497058
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DV98	 Folate transporter FolT	0.00439946763889
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7IDP6	 Glutamine amidotransferase class I	0.0043989476398
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2FX18	 SAM dependent methyltransferase	0.004398763556
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83MA0	 Taurine import ATP binding protein TauB	0.00439873741291
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25894	 Metalloprotease LoiP	0.00439550729713
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3STE3	 Partial transposase	0.00439519573877
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4KI13	 Fibrinogen binding family protein	0.00439264405186
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S5E3S7	 ABC transport protein permease component	0.00429904803564
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S5E3S7	 ABC transport protein permease component	9.54296479668e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37662		0.00439216283877
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C0T2	 Trp repressor binding protein	0.00424953115642
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I1ZLT1	 Thiamine biosynthesis protein ApbE, putative	0.004390057658
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31130		0.00438976380657
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5H5N0	 4 carboxymuconolactone decarboxylase	0.00438976380657
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWM5	 Short chain alcohol dehydrogenase	0.00438915354864
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P35594	 ATP dependent Clp protease ATP binding subunit ClpE	0.00429909051532
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P35594	 ATP dependent Clp protease ATP binding subunit ClpE	8.99662398289e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SNZ9		0.00438828993805
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U9YEM0		0.00438801350203
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7DT58	 Deacetylase	0.00438789507938
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P49331	 Glucosyltransferase S	0.00438669847724
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJS6		0.00438566000106
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q839H4	 2,3 bisphosphoglycerate dependent phosphoglycerate mutase	0.00423023109366
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q839H4	 2,3 bisphosphoglycerate dependent phosphoglycerate mutase	0.000149577137115
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9ZAH9	 Bacterial PH domain protein	0.00438459677547
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T3IE94	 Lantibiotic protection ABC transporter, ATP binding subunit	0.00438429983572
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O32047	 Protein translocase subunit SecDF	0.00438006012464
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WW73		0.0041866119926
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_W5XDK2	 PTS family mannose porter, IIC component	0.0037164003485
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W5XDK2	 PTS family mannose porter, IIC component	0.00066201575413
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZY18		0.00432987016975
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C1AAF1	 UDP glucose 6 dehydrogenase	0.00437701890402
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8CWR9	 30S Ribosomal protein S1	0.00408328872354
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8CWR9	 30S Ribosomal protein S1	0.000293456025758
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4ZYK3	 CAAX amino terminal protease family	0.00393676290692
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZYK3	 CAAX amino terminal protease family	0.000438978455221
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TT39	 30S ribosomal protein S2	0.00437413521862
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SU88	 Penicillin binding protein 2B	0.00437308803092
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E7T8A0	 Mg chelatase subunit ChlD	0.00434805921998
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T6L1		0.00437130900031
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1JBZ2	 Xaa His dipeptidase	0.00436743507526
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULS6	 Transcriptional activator	0.00436707368131
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q47163	 Type I restriction enzyme EcoprrI M protein	0.00436623689094
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2QQY4	 Guanine deaminase	0.00436540898896
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CNT6	 ATP phosphoribosyltransferase regulatory subunit	0.00436322515046
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQB9	 Cyclic nucleotide regulated FAD dependent pyridine nucleotide disulphide oxidoreductase	0.00436216774665
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q839C1	 L lactate dehydrogenase 1	0.00406721224106
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q839C1	 L lactate dehydrogenase 1	0.000292919861197
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E8MF10	 UDP glucose 4 epimerase	0.00435970334431
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMI6	 Multimeric flavodoxin	0.00435885650528
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADT1		0.0043576299376
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A1U5		0.00431117778962
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PS67		0.00210298155132
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HME1		0.00435616907487
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SVE3		0.0040494970061
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0A2X3	 Exodeoxyribonuclease	0.00373447452684
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0A2X3	 Exodeoxyribonuclease	0.000619961286399
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8G9Z1	 Cell division protein FtsB	0.00435420569648
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F0RP81	 Cation diffusion facilitator family transporter	0.00435250866297
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WZN4		0.00434829797916
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31442	 Multidrug resistance protein D	0.00434697323572
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P60239	 F420 non reducing hydrogenase subunit G	0.00434589620295
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7D0G7	 Type II restriction endonuclease	0.00434369304237
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A012N4E0		0.00434256204521
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E148		0.0043423311737
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SRA2		0.00434019492015
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27236	 Methyl coenzyme M reductase I subunit beta	0.00433917147216
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNV6	 Smooth muscle caldesmon	0.00433839590629
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_M1XHY8	 Membrane protein, putative	0.00433744876097
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5ZL84	 Membrane protein	0.00405347266297
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5ZL84	 Membrane protein	0.000282601335208
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q7D3Z9	 Dihydrodipicolinate synthase	0.00433535610808
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q21SX1	 D alanine  D alanine ligase	0.00414144238927
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q21SX1	 D alanine  D alanine ligase	0.000185256087248
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27431	 50S ribosomal protein L16 arginine hydroxylase	0.00433473573249
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37443		0.00433374146804
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUK9	 7 carboxy 7 deazaguanine synthase	0.00433343517416
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E8QA77	 Exported protein	0.00420841833141
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E8QA77	 Exported protein	0.000106055218019
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5XA14		0.00433035817101
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K0NAU6	 Aspartate aminotransferase	0.00407103070767
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K0NAU6	 Aspartate aminotransferase	0.000258798529733
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C5CJ75	 Glycogen synthase	0.00432965318196
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7ZF49	 SPFH domain band 7 family protein	0.00432944468858
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58131	 Acetylornithine aminotransferase	0.00432270656799
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKG8	 Conserved domain protein	0.00432765739418
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K0N5S7	 ATP dependent DNA helicase recG	0.00432730612371
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R6G0R0	 Glutamine ABC transporter permease substrate binding protein	0.00432603748456
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44614	 Tryptophan specific transport protein	0.0040544274822
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P44614	 Tryptophan specific transport protein	0.00027045371912
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q07211	 Fructokinase	0.00402347135499
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q07211	 Fructokinase	0.000301232658193
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16919	 Protein RhsD	0.00432362446229
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0TL30		0.00432331479476
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUN4	 FruR	0.00409161954595
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DUN4	 FruR	0.000231570109067
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28QW5	 Ppx GppA phosphatase	0.00428389550508
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33650	 Ferrous iron transport protein B	0.00432255240508
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0CF89	 Transposase InsI for insertion sequence element IS30C	0.00432154014986
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16683	 Putative phosphonates transport system permease protein PhnE	0.00247703864477
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P16683	 Putative phosphonates transport system permease protein PhnE	0.00184338897567
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F3YMS0	 Permease	0.00431888630986
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GHY8	 UPF0223 protein SAR1071	0.00263332277758
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GHY8	 UPF0223 protein SAR1071	0.00161011061968
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HWZ6	 Inorganic pyrophosphatase	0.00431824987599
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SS19		0.00431489289594
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T801	 Endoglucanase	0.0043146016889
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A7I5Y0		0.00431433337533
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C802		0.00431276638614
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23485	 Protein FecR	0.00431203719116
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GGL2		0.00431022724133
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0UR47	 Immunoreactive protein Se23.5	0.00430973032606
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J146		0.00397606433201
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U0G5	 ComB, accessory factor for ComA	0.00430749851046
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P04043	 Modification methylase DpnIIA	0.00430540543356
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76004		0.00375432005439
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P76004		0.000548320383308
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49Y53	 UPF0473 protein SSP1146	0.00273047270346
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49Y53	 UPF0473 protein SSP1146	0.00131570591835
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_K7YHX4	 Receptor ligand binding region family protein	0.00430194286815
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37671	 HTH type transcriptional regulator YiaJ	0.00430188342691
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KPI5	 UPF0126 membrane protein VC_2382	0.00430097138899
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MH24	 NADH quinone oxidoreductase subunit C D	0.00345505722763
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A7MH24	 NADH quinone oxidoreductase subunit C D	0.000837782373557
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AUT9	 Phage terminase, large subunit	0.00429926110958
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZPN4		0.00429898075976
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J0Q8	 Multisensor hybrid histidine kinase	0.00429678645906
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ54	 Archaeal glutamate synthase [NADPH]	0.00429434559907
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46118	 HTH type transcriptional regulator HexR	0.00369489689609
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P46118	 HTH type transcriptional regulator HexR	0.000598952551094
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B8GCI5	 SAF domain protein	0.0042936415212
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04G79	 30S ribosomal protein S3	0.00413691906274
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q04G79	 30S ribosomal protein S3	0.000155091501615
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U427	 Sugar binding periplasmic protein	0.00429094108583
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5EXV0	 Uridine kinase	0.00428011201443
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QII5		0.00429012667032
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5PMJ4	 tRNA specific 2 thiouridylase MnmA	0.00427624935113
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39293		0.00428770677345
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SPE0		0.00428746544275
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J1E0S9		0.00348403593023
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q53044	 Nitrogen regulatory protein P II	0.00428538989427
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2G2M4	 Mini ribonuclease 3	0.00288036680974
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2G2M4	 Mini ribonuclease 3	0.00113359237147
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9PET0	 Transcriptional repressor NrdR	0.00428518284701
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8YIY0	 Phosphoglycerate kinase	0.00423072581399
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5M1U0	 Heat inducible transcription repressor HrcA	0.00418714784454
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5M1U0	 Heat inducible transcription repressor HrcA	9.6156731003e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1LZ65	 RpiR like protein	0.00428314889681
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75856	 Probable fimbrial chaperone protein ElfD	0.00428288607699
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26759	 Putative ammonium transporter MTH_663	0.00357933669932
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O26759	 Putative ammonium transporter MTH_663	0.000703404000126
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFL2	 Putrescine transport system permease protein PotI	0.00364980757539
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AFL2	 Putrescine transport system permease protein PotI	0.000632599222723
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F6D6E3	 Methyltransferase type 11	0.00428228120833
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2L0H5	 sn glycerol 3 phosphate import ATP binding protein UgpC	0.00418399155245
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q92RN6	 Probable galactose dehydrogenase GalD	0.00427706228936
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SS20		0.00389920323339
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C6SS20		0.000376733461014
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0UG31	 Cell division protein FtsW	0.00418438686194
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T0UG31	 Cell division protein FtsW	9.12055714146e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7UMJ8	 ATP synthase gamma chain	0.00427168957108
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YBR3		0.00427053657127
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2NQH3	 Rhomboid protease GlpG	0.00426912644602
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVM7		0.000504822837756
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3USA6		0.00412199235875
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P51008	 Oxygen independent coproporphyrinogen III oxidase	0.00425575469605
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03KB7	 ATP dependent 6 phosphofructokinase	0.00423769720946
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A1H0	 DNA polymerase III subunit epsilon	0.00424307490261
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GFQ2	 ABC transporter related	0.00426149537967
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5X1L0	 PTS system, fructose specific IIABC component	0.003893794206
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5X1L0	 PTS system, fructose specific IIABC component	0.00036628975769
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FFV5	 tRNA dihydrouridine synthase C	0.00425385177092
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F0T7F9	 Precorrin 2 C20 methyltransferase	0.0042526820757
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C2SK84	 Transposase for insertion sequence element IS257 in transposon Tn4003	0.00393605539639
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C2SK84	 Transposase for insertion sequence element IS257 in transposon Tn4003	0.000316418680946
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A2RNT2	 Proline  tRNA ligase	0.00413998853528
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A2RNT2	 Proline  tRNA ligase	0.000109628168664
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LHX0		0.00424996907183
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77389	 Inner membrane transport protein YdhP	0.00383806268473
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P77389	 Inner membrane transport protein YdhP	0.000411148960024
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6ST67		0.00424917052772
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T6E7		0.00424746241013
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PR71	 Transcriptional regulator, GntR family	0.00424733526459
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KLM6		0.00354029788781
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57RM6	 Dipeptide permease D	0.00424715136105
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P80521	 Pyruvate synthase subunit PorA	0.00424625109164
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T6M3		0.00424607844448
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X5F7	 30S ribosomal protein S19	0.00273068555434
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X5F7	 30S ribosomal protein S19	0.00151414017441
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77546		0.00424449791752
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI000360EE81	 hypothetical protein, partial	0.00423335427154
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5S114	 CarD family transcriptional regulator protein	0.00419709640534
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AG77	 Nuclease SbcCD subunit D	0.00424109327061
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76484		0.00424104391347
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P26162	 Magnesium chelatase subunit H	0.00422266135152
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57981	 Adenylosuccinate synthetase	0.0042390666014
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C9A4C5	 Universal bacterial protein YeaZ	0.00423770854754
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TWK1		0.00423548783475
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57QC3	 Virulence transcriptional regulatory protein PhoP	0.00423506110926
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1QUR0	 3 isopropylmalate dehydrogenase	0.00391866476325
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1QUR0	 3 isopropylmalate dehydrogenase	0.000260079835773
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C0ME26	 Adenylate kinase	0.00419573251645
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DTR9		0.00423363944897
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H6P8H2		0.00411708283599
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_H6P8H2		0.000116318626209
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A9KJR8	 Urease accessory protein UreE	0.00423306006917
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8RDD3		0.00341648642788
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1M8C4	 Polar amino acid ABC transporter, inner membrane subunit	0.00423037704416
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FDG8	 L tartrate dehydratase subunit alpha	0.00411817433109
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KJE9	 Flagellar hook associated 2 domain protein	0.00422870292372
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46832	 Putative type II secretion system M type protein YghD	0.00422651264295
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1AHE9	 2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.00296254976178
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1AHE9	 2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.000702355535775
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A1AHE9	 2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.000295600663388
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A1AHE9	 2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.000222687516585
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SPA0		0.00422563861319
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1W6	 tRNA guanylyltransferase ThgL	0.00422535236593
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9JZ44	 30S ribosomal protein S1	0.0034422359366
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9JZ44	 30S ribosomal protein S1	0.000783105459727
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8DJB0		0.00422390817434
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5X6Q7	 ABC transport system permease protein	0.00422375641249
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F2JYX7	 Peptidase M75, Imelysin	0.00422333351381
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0TC75	 Poly D alaninet ransfer protein DltD	0.00422305509269
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32715	 Multidrug resistance protein MdtO	0.00422227103869
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P41006	 Uracil permease	0.00422191445104
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQF5	 Peptidase M24	0.00421992627107
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W6E031		0.00347951555251
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XAZ3	 UPF0187 protein YneE	0.00421948296544
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A0A3H4	 Glycine betaine transport system permease protein glycine betaine binding protein	0.00359372024177
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A0A3H4	 Glycine betaine transport system permease protein glycine betaine binding protein	0.000624827044623
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RKF6	 D alanyl D alanine carboxypeptidase DacC	0.00421838909007
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DN97	 Hexulose 6 phosphate synthase 	0.00377834331466
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DN97	 Hexulose 6 phosphate synthase 	0.000439227545744
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XBL0	 Pyridoxine kinase	0.00419400743364
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P65858	 tRNA pseudouridine synthase B	0.00396181460794
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P65858	 tRNA pseudouridine synthase B	0.000251652417761
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B1J8	 Multisubunit potassium proton antiporter, PhaD subunit	0.00421280615692
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMH5	 Probable bifunctional tRNA threonylcarbamoyladenosine biosynthesis protein	0.00421137247641
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8EA37	 Ribosomal protein S12 methylthiotransferase RimO	0.00421033119063
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8WXC5		0.0042099826729
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DTN6	 Probable bifunctional oligoribonuclease and PAP phosphatase NrnA	0.00399087467948
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DTN6	 Probable bifunctional oligoribonuclease and PAP phosphatase NrnA	0.000218066020627
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SE09		0.0022247931683
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SE09		0.00198376447891
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U2S8	 Bacitracin synthetase	0.00420850155311
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9E7Y2		0.0026196516018
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9E7Y2		0.00158867863508
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SQC4		0.00409313188703
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T8U4	 Transcriptional regulator	0.00420732458442
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J9YT94	 Amidase	0.00386599700062
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YT94	 Amidase	0.000341230551136
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9V764	 ATPase	0.00420719512589
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q52983	 Probable K H(+) antiporter subunit F	0.0042068569813
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2K316	 tRNA  methyltransferase 2	0.00234931179001
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2K316	 tRNA  methyltransferase 2	0.00183826269395
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B2H5	 Flagellin domain protein	0.00420601951843
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08660	 Lysine sensitive aspartokinase 3	0.00420564174938
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B8ETJ4	 Exodeoxyribonuclease III Xth	0.00420492626813
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q15UL9	 Deoxycytidine triphosphate deaminase	0.00420423806161
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SQB9		0.0042041704884
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6STC0		0.00420380534191
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R194		0.00420370012745
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CNT7	 Histidinol phosphate aminotransferase	0.00420361926898
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9CMM8	 Selenide, water dikinase	0.00340045728094
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9CMM8	 Selenide, water dikinase	0.000781527041064
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P22787		0.00420105746833
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37685	 Aldehyde dehydrogenase B	0.00354550879877
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P37685	 Aldehyde dehydrogenase B	0.000458826979894
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P37685	 Aldehyde dehydrogenase B	0.0001934271654
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P26218	 Cryptic outer membrane porin BglH	0.00419946920442
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L5D3	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00419555594698
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F0VW84	 Ferrous iron transport protein B	0.00419544038527
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P06610	 Vitamin B12 transport periplasmic protein BtuE	0.00419459646628
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33346		0.00419364262485
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI00032A023A	 chaperone protein DnaK like	0.00360108108318
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_UPI00032A023A	 chaperone protein DnaK like	0.000572690454035
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LKM9	 Transcriptional regulator	0.00419226846233
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YCI7	 Transcriptional regulator, AraC family	0.00419208754405
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WRB0	 Spheroidene monooxygenase	0.00419136065266
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKE8	 Accumulation associated protein	0.0041897705415
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIQ0	 Methyl accepting chemotaxis sensory transducer	0.00418852823643
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7MLH6	 Phosphoserine aminotransferase	0.00277931152359
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q7MLH6	 Phosphoserine aminotransferase	0.00140794255851
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7LN63		0.00418704542262
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F9L8X7		0.00418672847899
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44916	 Octaprenyl diphosphate synthase	0.00314094985846
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P44916	 Octaprenyl diphosphate synthase	0.00091265676079
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P44916	 Octaprenyl diphosphate synthase	0.000131807529438
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E0SZG6	 Transcriptional regulator	0.00418372218722
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4TUR5	 tRNA modifying protein YgfZ	0.0041829216948
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P08987	 Glucosyltransferase I	0.00415915873463
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SMA2	 Radical SAM domain containing protein	0.00418208895929
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CPL4	 Cystathionine gamma synthase, putative	0.00418200584773
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMZ6		0.0010127091206
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A7B0	 Inorganic pyrophosphatase	0.00418116331296
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SV52	 Acyl CoA thioesterase	0.00418087530449
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D0LSQ0	 3 demethylubiquinone 9 3 methyltransferase	0.00417969985411
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q48677	 Glutamyl aminopeptidase	0.00417871585693
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75683		0.00417723179343
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P60845	 Aquaporin Z	0.00355932099316
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P60845	 Aquaporin Z	0.000616815376842
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F4ECZ7	 HNH endonuclease	0.00417590351856
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKV4	 Tetrahydromethanopterin S methyltransferase, subunit H, MtrH	0.0041757801019
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46915	 Glucarate dehydratase related protein	0.0041757256129
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNF1		0.00417411455397
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45095	 Dipeptide transport ATP binding protein DppD	0.0041733592609
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31667		0.00417274833122
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FJ20	 Transcriptional regulator SarA	0.00240182563511
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FJ20	 Transcriptional regulator SarA	0.00177048050746
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9G4	 HTH type transcriptional regulator CueR	0.00417083894554
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZR16	 6 phospho beta glucosidase	0.00416938461072
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36547	 HTH type transcriptional regulator eutR	0.00416760693399
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM85	 Protein GrpE	0.00416689547856
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZJF2	 Tryptophan  tRNA ligase	0.0041666284891
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39398	 L galactonate transporter	0.00416649333542
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P07962	 Methyl coenzyme M reductase subunit alpha	0.00416647761469
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6UF03		0.00416647095151
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSQ9	 Tyrosine recombinase XerD like	0.00416514370824
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTD8		0.00416514253301
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75858		0.00416467700209
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMU3	 Glycosyltransferase, GT2 family	0.00416213697804
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9GZR7	 Aspartate carbamoyltransferase	0.00416183185608
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNF6	 Putative Zn peptidase	0.0041378652992
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45543	 Fructoselysine kinase	0.00416069019842
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27098	L glutamate ligase	0.00416056157692
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G7ZQ64	 Acetolactate synthase isozyme III small subunit 	0.00357612707015
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZQ64	 Acetolactate synthase isozyme III small subunit 	0.000583610217058
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8HF16	 Thiamine diphosphokinase	0.00415913562809
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2NYV9	 ATP dependent protease ATPase subunit HslU	0.00363529127734
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2NYV9	 ATP dependent protease ATPase subunit HslU	0.000523764478187
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6JIZ7	 Crossover junction endodeoxyribonuclease RuvC	0.00414007269621
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2VFX0	 Protein Syd	0.0041582194531
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q56954	 Chelated iron transport system membrane protein YfeC	0.00415814809267
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9VZ19	 Membrane protein	0.00415527832664
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6ST04		0.00415252962594
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7DM48	 Permease	0.00415198866819
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_X5K4I4	 ABC transporter, ATP binding  permease protein	0.0041509460026
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B9DT59	 Sensor histidine kinase	0.00414936775062
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0BSD5	 Alanine  tRNA ligase	0.00414927603891
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AFH2	 Polymorphic outer membrane protein repeat  (Fragment)	0.00411787759584
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5BRY1	 Trimethylamine methyltransferase MttB like protein	0.00414630077552
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WT54		0.00414616163652
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ATM2	 Transcriptional regulator, LysR family	0.0041461053442
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5VZF1	 DNA protection during starvation protein	0.00414595371427
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UML2	 Predicted flavoprotein	0.00414569519591
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MTN6	 Thiamine kinase	0.00414530772024
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9DYB1	 50S ribosomal protein L23	0.00244374289022
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9DYB1	 50S ribosomal protein L23	0.00170104456875
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P07464	 Galactoside O acetyltransferase	0.00414400454222
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZDA6	 UPF0249 protein ChbG	0.00414241314444
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1VB18	 Ribosomal silencing factor RsfS	0.00414213610466
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_U6EC46	 NusA family KH domain containing protein	0.00414040982513
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M2C8	 Inositol monophosphatase	0.00414011399192
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1LNZ4	 GCN5 related N acetyltransferase, GNAT family	0.00414008147366
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AL10	 Transcriptional regulator, LuxR family	0.00413932969644
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77700		0.00413918127961
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28635	 D methionine binding lipoprotein MetQ	0.004138330177
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7VM29	 GTPase Der	0.00374262671106
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7VM29	 GTPase Der	0.000395086504317
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5XD15	 Zinc binding protein AdcA	0.00413674370235
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5WWT9	 Predicted membrane protein	0.00413638685008
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J170	 Reaction center protein H chain	0.00413504160426
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E4F5	 Archaea specific RecJ like exonuclease	0.00413398592184
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ48	 Short chain dehydrogenase 	0.00413366340316
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2C9Y4		0.00413320110566
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZV33	 Oligoribonuclease	0.00405359563627
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5XAQ1	 Putative bifunctional phosphatase peptidyl prolyl cis trans isomerase	0.00374121938752
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5XAQ1	 Putative bifunctional phosphatase peptidyl prolyl cis trans isomerase	0.00038806155961
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G4RGP8	 ABC type nitrate sulfonate bicarbonate transport systems, periplasmic components	0.00371726607303
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8I070	 Peptidyl prolyl cis trans isomerase	0.00412910714218
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0V4W6	 Proteinase	0.00412857152842
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30149	 Inner membrane protein YabI	0.00412647867875
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75806	 Putative undecaprenyl diphosphatase YbjG	0.00412639409114
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGM8	 Uracil permease	0.00403624378731
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P0AGM8	 Uracil permease	8.89555661221e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJJ0	 Rhodanese domain protein	0.00412489039141
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37339	 L 2 hydroxyglutarate oxidase LhgO	0.00412456900821
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVU8	 FMN dependent NADH azoreductase	0.00412452511792
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77775	 Epimerase family protein YfcH	0.0041244777044
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77409	 Protein PhsC homolog	0.00412426552376
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37348	 UPF0759 protein YecE	0.00412386131378
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77390	 [Citrate [pro 3S] lyase] ligase	0.00412291078682
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P19932	 Hydrogenase 1 operon protein HyaF	0.00406315006239
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Z8K1G5	 Urease accessory protein ureE	0.00412155552668
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6F2Y7	 Chaperone protein ClpB1	0.00403176182255
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q6F2Y7	 Chaperone protein ClpB1	8.96255353703e-05
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_H8I846	 Formate nitrite transporter	0.00412063489189
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7ZE55		0.00412043798891
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83RZ7	 Anaerobic dimethyl sulfoxide reductase chain B	0.00411768904072
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5X4A4	 Ribose transport system substrate binding protein	0.00411452205009
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5X3F3	 HI0933 like oxidoreductase dehydrogenase	0.0036069644215
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5X3F3	 HI0933 like oxidoreductase dehydrogenase	0.000506072964796
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5LXC8		0.00388302386871
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1Y6	 Diguanylate cyclase phosphodiesterase with PAS PAC sensor	0.00411232474848
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WNL3	 Alkane 1 monooxygenase	0.00411194116988
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KLF6		0.00328476375827
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26232	 Orotidine 5 phosphate decarboxylase	0.0041110687609
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2P582	 Aspartate  tRNA ligase	0.00292485327142
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2P582	 Aspartate  tRNA ligase	0.00112568283551
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q2P582	 Aspartate  tRNA ligase	5.61538195461e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AYT3	 Potassium uptake protein, Trk family	0.00365648052212
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A8AYT3	 Potassium uptake protein, Trk family	0.000453167178336
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1R1	 TRAP T family sorbitol mannitol transporter, DctM  subunit	0.00409654208003
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A4FVV8	 Tetrahydromethanopterin S methyltransferase subunit H	0.00410721490764
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C4ZVV8	 HTH type transcriptional regulator MurR	0.00373601150112
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P65897	 Phosphoribosylglycinamide formyltransferase	0.00410472629957
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C5BQ83	 30S ribosomal protein S13	0.00317242884158
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5BQ83	 30S ribosomal protein S13	0.000932247951143
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KT69	 Methionine  tRNA ligase	0.00351424131111
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9KT69	 Methionine  tRNA ligase	0.000474570803824
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9KT69	 Methionine  tRNA ligase	0.000115494428051
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7E309	 MDR permease	0.00410383408143
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24242	 HTH type transcriptional regulator AscG	0.00410254312741
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6T533	 UPF0255 protein KPN78578_02430	0.00410243874904
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YYZ3		0.00369737406556
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WX60		0.00394694651011
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZUE4	 Regulator of ribonuclease activity A	0.00410109665785
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1LSV5	 Uridylate kinase	0.00409370980603
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K9NKD1	 NAD dependent epimerase dehydratase	0.00409925851919
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P46920	 Glycine betaine transport ATP binding protein OpuAA	0.00363975151446
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P46920	 Glycine betaine transport ATP binding protein OpuAA	0.00035897784116
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_I3UCI5	 Amino acid ABC transporter ATPase	0.00409736677218
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64452		0.00409614756625
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P29849	 Maltodextrin phosphorylase	0.00390456263838
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P29849	 Maltodextrin phosphorylase	0.000190920486328
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P43850	 N5 carboxyaminoimidazole ribonucleotide synthase	0.00408234207229
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16682	 Phosphonates binding periplasmic protein	0.00330522334937
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P16682	 Phosphonates binding periplasmic protein	0.000789640992767
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C7Y1	 Arginine repressor	0.00409386006796
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACI1	 Right origin binding protein	0.00409287115655
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0D2	 Energy converting hydrogenase B subunit I EhbI	0.00409283675261
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76508		0.00409278388387
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKI1	 NADH quinone oxidoreductase subunit B 2	0.00398812902002
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW27		0.00409016675056
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O66119	 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	0.00408949048301
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4PYA3	 Ribonucleoside diphosphate reductase	0.00392432733534
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4PYA3	 Ribonucleoside diphosphate reductase	0.000163025422338
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q602K3	 Porphobilinogen deaminase	0.00321590645146
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q602K3	 Porphobilinogen deaminase	0.00061761349772
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q602K3	 Porphobilinogen deaminase	0.000244423711079
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9J9J5		0.00408638180461
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B0G9	 Permease YjgP YjgQ family protein	0.00408566352613
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7B346		0.00408562762518
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F6BRI2	 ABC transporter related protein	0.00408498532188
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE13	 AMP nucleosidase	0.00400863135333
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1C8	 Hydrolase HAD superfamily	0.00408396082675
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F4R2	 NADPH dependent 7 cyano 7 deazaguanine reductase	0.00407318020932
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WXL5		0.0040830178142
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_N0C862	 Histidine kinase	0.0040815836544
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P25131		0.00408135477584
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q12UL5	 2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.00408072217528
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YXU8	 ErfK YbiS YcfS YnhG family protein	0.00407888842194
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULZ8		0.0040786249533
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULH9	 Predicted ATP utilizing enzyme	0.00407841956485
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U0Z0		0.00407810516449
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q987Q1	 ABC transporter, permease protein	0.00407799230363
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0E5	 Carbohydrate kinase	0.00407762858884
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SLZ8		0.00407759793876
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7MVN0	 5 formyltetrahydrofolate cyclo ligase	0.00388437644256
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M7MVN0	 5 formyltetrahydrofolate cyclo ligase	0.000191947847054
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q0TMQ9	 30S ribosomal protein S14 type Z	0.00218017971532
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q0TMQ9	 30S ribosomal protein S14 type Z	0.00189525500352
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WPC2	 OmpA MotB domain protein	0.00407542928715
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRL9	 RNA polymerase sigma factor sigW, putative	0.00407542763611
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YVV9	 Initiation control protein YabA	0.0027087956056
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YVV9	 Initiation control protein YabA	0.00136504183245
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQI2		0.000383895694109
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P04816	 Leucine specific binding protein	0.00407239878854
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O87278	 Probable N methylproline demethylase	0.0040402690634
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9J7V3	 Oligopeptide ABC transporter	0.0040715177689
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZKV2	 UPF0260 protein YcgN	0.004045410547
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SRZ7		0.00404736483525
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8EB10	 Sulfate adenylyltransferase subunit 1	0.00370266581699
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q8EB10	 Sulfate adenylyltransferase subunit 1	0.000365399440259
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F7E7	 Phosphoenolpyruvate synthase regulatory protein	0.00395952162785
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U5P9Q9	 PTS sorbitol transporter subunit IIB	0.00406190528745
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S5QXV6	 Maltose maltodextrin binding protein	0.00405996072864
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AG22	 GTP pyrophosphokinase	0.00405605884018
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E2D1	 Fumarate hydratase FumA3	0.00405695862659
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEJ1	 Multidrug export protein EmrB	0.00398465756306
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P0AEJ1	 Multidrug export protein EmrB	6.96787905791e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69857	 Probable N acetylneuraminic acid outer membrane channel protein NanC	0.0040535351386
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C7J0	 Arabinose import ATP binding protein AraG	0.00405322021314
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9K105	 Quinolinate synthase A	0.00280268231902
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9K105	 Quinolinate synthase A	0.00122280917088
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28VP7	 Ubiquinone biosynthesis O methyltransferase	0.00405065823942
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0U0F8	 Sakacin A production response regulator	0.00402784008173
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SUM1		0.0040497058206
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0C8K1	 D tagatose 1,6 bisphosphate aldolase subunit KbaZ	0.00404004711984
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CMH9	 DEAD RNA helicase, putative	0.00404708879026
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q6FF92	 50S ribosomal protein L10	0.00315863892422
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FF92	 50S ribosomal protein L10	0.00088565410133
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABJ0	 Cytochrome bo ubiquinol oxidase subunit 1	0.00299437895142
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0ABJ0	 Cytochrome bo ubiquinol oxidase subunit 1	0.000916382119923
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P0ABJ0	 Cytochrome bo ubiquinol oxidase subunit 1	0.000123405234198
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69799	 PTS system mannose specific EIIAB component	0.00404265271686
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32136	 Putative sulfoquinovose importer	0.00404222443851
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03XZ5	 Glutamate synthase  small subunit	0.00404213500946
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A0A024DE18	 Pyruvate dehydrogenase	0.00388224062839
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A0A024DE18	 Pyruvate dehydrogenase	0.000159501686498
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8CWX8	 Signal recognition particle receptor FtsY	0.00382096011563
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8CWX8	 Signal recognition particle receptor FtsY	0.000219778685039
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O06941	 Protein GrpE	0.00404000887853
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0T7N0	 Methylenetetrahydrofolate reductase	0.00403979048496
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0LW41		0.00298621598413
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_K0LW41		0.00077419841396
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1ABR2	 Cell division activator CedA	0.00403858270205
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4X0G7		0.00403858270205
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5X1H5	 50S ribosomal protein L35	0.00403858270205
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4PMP8	 Fumarate reductase succinate dehydrogenase flavoprotein domain protein	0.00403828335125
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WTF8	 Malto oligosyltrehalose synthase	0.00403629329826
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B054	 Transcriptional regulator, LuxR family	0.00403457675527
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E2P1	 Bicarbonate ABC transporter ATP binding protein BtcA	0.00403258045688
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27502	 Hydroxylamine reductase	0.00402375120336
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5M1E5		0.00403137760592
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZUQ1	 Protein PsiE	0.0040310731318
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9JUD9	 Sulfite reductase [NADPH] hemoprotein beta component	0.00385241359059
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JUD9	 Sulfite reductase [NADPH] hemoprotein beta component	0.000177250716112
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1Y0	 Fumarate hydratase FumA2	0.0040293808749
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04K89	 Phosphopantothenate  cysteine ligase	0.0035941297277
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q04K89	 Phosphopantothenate  cysteine ligase	0.00043420629419
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q60316	 Formate dehydrogenase subunit beta	0.00402790591289
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R6RW73	 ABC type multidrug transport system ATPase component	0.00402703585315
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J2P2	 Cytochrome c 554	0.00402685220603
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27543	 3,4 dihydroxy 2 butanone 4 phosphate synthase	0.00402656593112
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2LQB0	 50S ribosomal protein L14	0.00402655358256
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7MCD8	 Oxidoreductase, NAD binding domain protein	0.00402563631199
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8ACZ6	 Xaa Pro dipeptidase	0.00402531672709
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T664		0.00402396659047
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U500	 ABC branched chain amino acid transporter, inner membrane subunit	0.0040235183526
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SU64		0.00402295933107
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P68999	 tRNA specific adenosine deaminase	0.00319904750204
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P68999	 tRNA specific adenosine deaminase	0.000814230383474
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0TEW3	 Cysteine and methionine metabolism regulator CmbR, LysR family	0.00384190367191
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T0TEW3	 Cysteine and methionine metabolism regulator CmbR, LysR family	0.000180616399917
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8HCR3	 Pyrimidine nucleoside phosphorylase	0.00402225609767
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACA8	 Glutathione S transferase GstB	0.00402076569434
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6STR0		0.00389088791291
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8U2H9	 Isopentenyl diphosphate delta isomerase	0.0040198617658
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77297		0.00401857551915
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46904	 Probable electron transfer flavoprotein quinone oxidoreductase YgcN	0.00401797097178
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P50456	 Protein mlc	0.00401759591905
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9Z661	 Diaminopimelate decarboxylase	0.00400650309809
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58332		0.00401623851779
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7DS31	 Surfactin synthetase	0.00401547108111
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NH89	 Replication factor C small subunit	0.00401497387381
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULX2	 Adhesin like protein	0.00400585228419
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SR01		0.00401460969447
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFU4	 Transcriptional regulatory protein GlrR	0.00401422821633
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TY61	 ABC transporter ATP binding protein	0.00401404541637
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58400	 Putative hydrogenase expression formation protein MJ0993	0.00401340068704
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E5V4A5	 Cytochrome C biogenesis protein transmembrane protein	0.00401259259306
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Z1ADI7	 Gluconate permease	0.00401160193817
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F0TCJ5	 Methyltransferase MtaA CmuA family	0.00401069110818
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A5EBW8	 ATP synthase subunit a 2	0.00401054742772
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WUM0	 HAD superfamily hydrolase, subfamily IIA	0.00401040013289
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T0U2I3		0.00400944189088
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8Q0R3	 Ribose 5 phosphate isomerase A	0.00400942376994
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75794	 Putative pyruvate formate lyase 3 activating enzyme	0.00400488342837
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P52993	 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	0.00386726748443
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P52993	 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	0.000129276014789
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQ45		0.00386019468557
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WT88	 Autoinducer binding domain protein	0.00400281861591
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76268	 Transcriptional regulator KdgR	0.0040021809025
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5WG19	 Phosphomevalonate kinase	0.00379312869434
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C5WG19	 Phosphomevalonate kinase	0.000209041972141
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SHV3	 NH dependent NAD(+) synthetase	0.00400126891885
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VGG3		0.00400078952636
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P65560		0.00400069157179
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MUU9	 Glutamate 1 semialdehyde 2,1 aminomutase	0.00399147814672
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P02918	 Penicillin binding protein 1A	0.00399928382189
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0DF46	 Ribosomal RNA small subunit methyltransferase I	0.00398242266172
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF33	 Respiratory nitrate reductase 2 gamma chain	0.00399873454279
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9I425	 Cytochrome bo ubiquinol oxidase subunit 3	0.00399820097361
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G5JYJ7	 Phosphatidate cytidylyltransferase like protein	0.00399768492299
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K4SCN9	 tRNA lysidine synthase	0.00399692528741
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PFZ9	 DNA translocase FtsK	0.00399593816115
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31443		0.00399587347626
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37906	 Gamma glutamylputrescine oxidoreductase	0.00395751127225
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39208	 Thermosensitive gluconokinase	0.00398428278146
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X538		0.00399409759955
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CHW5	 Phosphoserine aminotransferase	0.00399368540935
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XZ35	 N carbamoyl L amino acid hydrolase	0.00399274238526
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM43	 Energy converting hydrogenase B, subunit K, EhbK	0.00398956790636
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_C4ZI69	 Anthranilate phosphoribosyltransferase	0.00398319747372
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23876	 Ferric enterobactin transport system permease protein FepD	0.00398789975665
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8REB9		0.00398699030311
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7DUX8	 ABC transporter ATP binding protein	0.0039868683237
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9CLV7	 o succinylbenzoate synthase	0.00398674228595
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9U1		0.00398661757519
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E6AYN5		0.00398509516561
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P19930	 Hydrogenase 1 maturation protease	0.00398496581826
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CHM9	 Glycogen synthase	0.00398487292205
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75851	 Putative aliphatic sulfonates transport permease protein SsuC	0.00398435468143
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58197		0.00398421180571
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZTG3	 Protein export protein SecB	0.00398388778254
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HL55	 Copper chaperone CopZ	0.00398386238906
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SUR3	 Glucan binding protein D	0.00398305353357
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KR36	 Two component transcriptional regulator, LuxR family	0.00398264130532
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1K3	 Cellulose synthase like protein	0.00398171051128
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CGD8	 Homoserine dehydrogenase	0.00383610968403
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9CGD8	 Homoserine dehydrogenase	0.000123731087687
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C5Y9	 Phage protein	0.00378164135783
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_X7F912	 Malto oligosyltrehalose trehalohydrolase	0.00397809236825
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SEA5	 General stress protein 13	0.00234431313221
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SEA5	 General stress protein 13	0.00163241425183
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9TW73		0.00397495126339
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8E0C9	 Group B oligopeptidase PepB	0.00377284344874
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E0C9	 Group B oligopeptidase PepB	0.000189154258001
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7UM47	 Nucleoid occlusion factor SlmA	0.00397377571467
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76190	 Murein DD endopeptidase MepH	0.00397334188118
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SRM8		0.00397262487299
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WQH8	 Plasmid pRiA4b ORF 3 family protein	0.00198812507747
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7ZM05	 Transcriptional repressor protein, GntR family	0.00397051050945
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P04890	 Integrase	0.00397025141804
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D4MHB3	 Predicted flavoprotein	0.00387702678419
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D4MHB3	 Predicted flavoprotein	8.95870164589e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5F5D8	 Cytosol aminopeptidase	0.00355899928165
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5F5D8	 Cytosol aminopeptidase	0.000404284559238
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B9DV71	 ABC transporter ATP binding protein	0.00396599659765
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P19317	 Probable nitrate reductase molybdenum cofactor assembly chaperone NarW	0.00396387224473
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q5JEF8	 Nicotinamide nucleotide adenylyltransferase	0.00396353245712
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B0SHV0		0.00393749004557
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK70	 Fumarate reductase, iron sulfur protein	0.00396225337937
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57935		0.00396006129972
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00892	 Acetolactate synthase isozyme 2 large subunit	0.00390730847586
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G5JU10	 Beta lactamase	0.00395630469176
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GJR0	 UPF0355 protein MRSA252	0.00395615109263
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V724	 Hsp20 alpha crystallin family protein	0.00395554475411
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q165N5	 Trimethylamine methyltransferase family protein	0.00395536675272
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AG14	 Probable protease SohB	0.00342206491615
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AG14	 Probable protease SohB	0.000533270606
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44431	 DNA adenine methylase	0.00392995350076
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DPZ3	 Release factor glutamine methyltransferase	0.0031486049369
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DPZ3	 Release factor glutamine methyltransferase	0.000789617222518
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WP65		0.00365235531929
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5FIJ4	 Elongation factor P 1	0.00394130785927
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q31YD8	 Erythronate 4 phosphate dehydrogenase	0.00395343710373
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_X2GNE3	 Aconitate hydratase	0.00395140855238
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NGB7	 Transporter	0.00395138516472
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACQ6	 Hydrogen peroxide inducible genes activator	0.00395099893549
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_X5JZY6	 ABC transporter, ATP binding protein	0.00378819127643
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5JZY6	 ABC transporter, ATP binding protein	0.000162061906182
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6D7M7	 Octanoyltransferase	0.003949847123
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CN10	 PTS enzyme II glucose specific factor IIABC component	0.00381613422764
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B1F2	 UDP 3 O acylglucosamine N acyltransferase	0.00393343333391
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V2EJX2	 Proline specific permease	0.00394775199198
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46851	 L glyceraldehyde 3 phosphate reductase	0.00331871104149
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q46851	 L glyceraldehyde 3 phosphate reductase	0.000629039330089
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DT20		0.00394711420974
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q4UY06	 Sulfate adenylyltransferase subunit 2	0.00277430720505
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4UY06	 Sulfate adenylyltransferase subunit 2	0.000938838779014
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q4UY06	 Sulfate adenylyltransferase subunit 2	0.00012164405729
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q4UY06	 Sulfate adenylyltransferase subunit 2	0.000111439920036
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26664		0.00394449400116
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN19	 Formate dehydrogenase accessory protein FdhD, FdhD	0.00394407953786
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4VSJ2	 ABC type Mn2+ Zn2+ transport system, permease component	0.00381753586697
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4VSJ2	 ABC type Mn2+ Zn2+ transport system, permease component	0.000126522014477
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9CMC7	 tRNA dimethylallyltransferase	0.00394292998213
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4EY85	 DnaA regulatory inactivator Hda	0.00394287441441
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X5L9	 Endoglucanase	0.00394267822881
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J9YS58		0.00394257994726
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5ZJC0	 PpGpp synthetase	0.00394225082794
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04KA6		0.00394048273939
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I1ZKX0	 UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.00393969553256
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0TWG5	 ABC type multidrug transport system, ATPase component	0.0039392781204
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X2C5	 Extracellular matrix binding protein EbhB	0.0039389115187
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75937	 Flagellar hook protein FlgE	0.00393854269169
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42237	 Probable glucarate transporter	0.0036989744362
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P42237	 Probable glucarate transporter	0.000239486769553
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32687		0.00393675097198
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QIJ0		0.00383446381102
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVD1	 3 oxoadipate enol lactonase	0.00393617680384
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3LER3		0.00393572470272
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8PFF8	 tRNA dihydrouridine synthase A	0.00393547074025
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C9XTA5	 Tat linked quality control protein TatD	0.00391615321306
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2GL45	 30S ribosomal protein S8	0.00393393365673
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SIF8	 NADPH dependent FMN reductase	0.00393363943633
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4ZW20	 YfaA	0.00373235197373
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZW20	 YfaA	0.000201124636555
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8HEX8	 NADPH dependent fmn reductase	0.003932129702
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98FZ6	 Mlr3554 protein	0.00391887985388
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWE3	 Methyl accepting chemotaxis sensory transducer	0.003931329361
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P09738	 Superoxide dismutase [Mn Fe]	0.00393037543741
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q88J90	 Ribose import ATP binding protein RbsA	0.00390337673391
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30147	 Hydroxypyruvate isomerase	0.00392885964215
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMV9	 SsDNA binding protein	0.0039284725479
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D0ZY51	 Serine endoprotease DegS	0.00382307541205
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45550		0.00392612989087
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WXH7		0.00271576724571
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WXH7		0.00120962140635
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A0A023VI11	 Beta lactamase	0.00392518736792
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D4HUM4		0.00392503172814
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKL4		0.00162509171439
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23917	 Fructokinase	0.00392299931448
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5LZ45	 Sensor histidine kinase 	0.00392277771242
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q60178	 Delta aminolevulinic acid dehydratase	0.00382971300702
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7UR12	 Purine nucleoside phosphorylase DeoD type	0.00387522325721
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AYG2	 ATP synthase gamma chain	0.00392092180567
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6FE61	 NADH dehydrogenase I chain L	0.00353630844005
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FE61	 NADH dehydrogenase I chain L	0.000384239683975
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XAR8	 UDP N acetylglucosamine 2 epimerase	0.00391210724249
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75828		0.00391677404793
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZP8	 CMP N acetylneuraminic acid synthetase NeuA	0.00391664331885
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S6B942		0.00391647924414
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NG20	 Predicted multimeric flavodoxin	0.00391452767987
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q830B9	 Probable nicotinate nucleotide adenylyltransferase	0.00391435694674
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52130	 Antitoxin RnlB	0.00391373586232
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KUI0	 Sulfate thiosulfate import ATP binding protein CysA	0.00381282170605
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7EVV9	 Protease DegQ	0.00391302074877
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6STZ5		0.00391298182612
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5R646	 Allantoinase	0.00389679706469
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FHW8	 UPF0358 protein SAUSA300_1012	0.00257729035061
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FHW8	 UPF0358 protein SAUSA300_1012	0.00133436057129
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_X5KE03		0.00391147428753
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M1IWL8		0.00391082617602
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0T1X7	 3 phenylpropionate cinnamic acid dioxygenase ferredoxin  NAD reductase component	0.00391078950977
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31467	 6 phosphogluconate phosphatase	0.0039107409028
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJA6	 FO synthase subunit 2	0.0039093843891
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A3N1B7	 Beta hexosaminidase	0.00390535455408
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM22	 Possible glycosyltransferase	0.00390912310869
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5XAE6	 Biotin carboxyl carrier protein of acetyl CoA carboxylase	0.0033212253514
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5XAE6	 Biotin carboxyl carrier protein of acetyl CoA carboxylase	0.000410914461567
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZN3	 Heavy metal translocating P type ATPase	0.00341838159554
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D3DZN3	 Heavy metal translocating P type ATPase	0.000487833392581
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1JBS9	 Short chain dehydrogenase	0.00376346243198
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q1JBS9	 Short chain dehydrogenase	0.000141804167907
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2FME4	 Transport system permease protein	0.0039047924149
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B0V6S4		0.00276391206906
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B0V6S4		0.000692126940784
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V6S4		0.000448489497696
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X9LDU8		0.00383726985783
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76470	 Inner membrane transport protein RhmT	0.00390338970388
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7CYD5	 Thioesterase	0.0038994571164
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P18159	 Phosphoglucomutase	0.00387416162227
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFV3		0.00389760348151
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADU6	 Protein YgiW	0.00389729304078
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U2V2	 Transcriptional regulator	0.00389674646866
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A1D0	 Ethanolamine utilization protein EutL	0.00389466015264
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJL4	 Invasion associated locus B family protein	0.00361021975845
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A027RVP4		0.00389235344037
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGJ0	 Trk system potassium uptake protein TrkA	0.00334597552896
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AGJ0	 Trk system potassium uptake protein TrkA	0.000545387086967
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KSN0		0.000716060762778
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1C3		0.0038897180817
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PGF4		0.00388907346113
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M2D5	 Choline ethanolamine kinase	0.00388858546318
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F0VXH5	 ABC transporter permease protein	0.00388428586547
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABC8	 Protein HflK	0.00388350376208
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKS9	 Elongation factor 1 beta	0.00388325259812
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z2G4		0.00388325259812
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q0A9A9	 3 isopropylmalate dehydratase small subunit	0.00384738618855
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WQN8	 Transcriptional regulator, BadM Rrf2 family	0.00379940043343
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WS76	 Multi sensor signal transduction histidine kinase	0.00388076940204
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P55138		0.00388059861299
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00934	 Threonine synthase	0.00387500664981
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L5J6	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00387666061224
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QB63	 Phosphatidylserine decarboxylase	0.00387621849455
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q97PK0	 Putative GTP cyclohydrolase 1 type 2	0.00384128461331
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P19072	 Branched chain amino acid transport system 2 carrier protein	0.00280407501177
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P19072	 Branched chain amino acid transport system 2 carrier protein	0.00107147437756
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0R6	 Chaperone protein DnaJ	0.00387489151438
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5WFH4	 UDP N acetylmuramoylpentapeptide lysine N alanyltransferase UDP N acetylmuramoylpentapeptide lysine N(6) seryltransferase	0.00387350764967
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9F664	 UTP  glucose 1 phosphate uridylyltransferase	0.00364278430588
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2NS15	 DNA repair protein RecO	0.00387279368783
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P20753	 Peptidyl prolyl cis trans isomerase A	0.00383949651083
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37017		0.00386910738667
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DTW5		0.00386799253399
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44740	 Probable tRNA  N6) methyltransferase	0.00386741734111
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27254	 Probable GTPase ArgK	0.00386699884687
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U5UFJ6		0.00386681388971
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P71238	 Putative colanic acid polymerase	0.00385154565627
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKM8		0.00386626994042
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R8I3	 Flagellar biosynthesis protein FlhA	0.00386577799042
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GI12	 Sarcosine oxidase alpha subunit family	0.00386573874313
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7V5G9	 Diaminopimelate epimerase	0.00323074615402
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V5G9	 Diaminopimelate epimerase	0.000459158699546
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7V5G9	 Diaminopimelate epimerase	0.000141011965854
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0A4H7	 Transcriptional regulatory protein CiaR	0.00386260633884
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45073	 Lipopolysaccharide export system ATP binding protein LptB	0.00310970748916
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P45073	 Lipopolysaccharide export system ATP binding protein LptB	0.000720880816372
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV89		0.00252832713367
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27762	 Phosphate transporter permease PstC	0.00385939753202
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PND3		0.00284569433476
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U5PB97	 Glutamyl tRNA synthetase	0.00385666022427
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACL6	 Glc operon transcriptional activator	0.00385617511446
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMD6	 Imidazole glycerol phosphate synthase subunit HisH	0.00385335338776
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46125	 Inner membrane protein YedI	0.00242198827792
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P46125	 Inner membrane protein YedI	0.00142930314031
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T1ZTW1	 ABC transporter, permease protein	0.00385122069051
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P17725	 Citrate lyase subunit beta	0.00385068604087
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B5SL97	 Choline dehydrogenase lipoprotein	0.00312821980544
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B5SL97	 Choline dehydrogenase lipoprotein	0.000721921056745
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3RZ99	 Glutamate synthase alpha subunit domain protein	0.00384988023647
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TP65	 LrgA family protein	0.00384903003715
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023KUE4	 Transferase	0.00384883464737
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSW4		0.00384768557731
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5FNZ7	 Cold shock protein	0.00384624804989
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R7V5	 Cold shock protein	0.00384600356073
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C1CQV0	 HAD superfamily subfamily IIA hydrolase	0.00371450954586
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C1CQV0	 HAD superfamily subfamily IIA hydrolase	0.000131464280662
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSM5		0.00384236812962
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DTW2		0.00384235289059
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P37769	 2 dehydro 3 deoxy D gluconate 5 dehydrogenase	0.00270279380859
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37769	 2 dehydro 3 deoxy D gluconate 5 dehydrogenase	0.0011394109724
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q167T4	 Branched chain amino acid ABC transporter, permease protein, putative	0.00384167285491
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFM7	 Phage shock protein A	0.00384125079086
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W0N7A1	 Urea ABC transporter ATP binding protein	0.00384017901592
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76078	 1,2 phenylacetyl CoA epoxidase, subunit B	0.00383872044758
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRI6	 SdrG protein	0.00383843397159
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADL5		0.00374235783785
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GPC0	 Adenylate kinase	0.00382579995615
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00935	 Cystathionine gamma synthase	0.00351912340016
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LX99	 TPR domain protein	0.00383642011395
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76012		0.00383586503794
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q48656	 Aminopeptidase N	0.0038344448389
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23482	 Hydrogenase 4 component B	0.0038199452776
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1JX98	 Serine  tRNA ligase	0.00359456203064
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B1JX98	 Serine  tRNA ligase	0.000216671863976
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77378	 Putative electron transfer flavoprotein subunit YdiR	0.00383176288161
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMT9	 Glycosyltransferase, GT2 family	0.00383160958154
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEI0	 Inner membrane protein YjiG	0.0038313646904
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFN4	 Phage shock protein C	0.00383076008988
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AA92		0.0038305191158
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WSX6	 Pseudoazurin	0.00383014321068
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P42850	 Phosphoenolpyruvate synthase	0.00382768925434
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C0RJC1	 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	0.00381884550597
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB26		0.00382891995658
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5S8C8	 Aldo keto reductase protein	0.00382535931708
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACY5		0.00328111143878
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0ACY5		0.000540475416065
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CP60	 Glycosyl transferase, putative	0.00329732599988
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A3CP60	 Glycosyl transferase, putative	0.000522460602306
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6UK01	 Chaperone protein HchA	0.00381921015662
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27218	 UPF0051 protein MTH_1150	0.0038190426022
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8ET05	 Ornithine carbamoyltransferase	0.00381329320817
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46853		0.00381731157808
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WV09	 Heme NO binding domain protein	0.00381674626654
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P80911	 Indolepyruvate oxidoreductase subunit IorB	0.00381615259092
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PP97	 Transcriptional regulator, AraC family	0.0038151354305
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P10768	 S formylglutathione hydrolase	0.00370292270792
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB87	 L fuculose phosphate aldolase	0.00370480215965
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RKJ6	 Transposase IS4 family protein	0.00381024873915
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1W2	 Lactaldehyde dehydrogenase CofA	0.00381007963723
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9I7C4	 DNA polymerase III subunit beta	0.00305588505238
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I7C4	 DNA polymerase III subunit beta	0.000536953182285
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9I7C4	 DNA polymerase III subunit beta	0.000216198217452
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1JJ54	 Autoinducer 2 import system permease protein LsrC	0.00380902208408
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4VHG9	 tRNA N6 adenosine threonylcarbamoyltransferase	0.0029607582118
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VHG9	 tRNA N6 adenosine threonylcarbamoyltransferase	0.000846900523513
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9VVE0	 Gene transfer agent protein	0.00380318164633
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9S2	 Lactaldehyde reductase	0.00356359937205
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P0A9S2	 Lactaldehyde reductase	0.000241831641053
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q3Z396	 Deferrochelatase peroxidase EfeB	0.0037620707503
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F6BFP8	 CRISPR associated protein Cas5 family	0.00380311112582
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RDG8	 Monovalent cation proton antiporter subunit E	0.00380187472128
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75980	 Putative protein BeeE from lambdoid prophage e14 region	0.00380183767339
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q54431	 Signal recognition particle protein	0.00372600784477
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q54431	 Signal recognition particle protein	7.40209439512e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P59210	 Regulatory protein RecX	0.00379968701775
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A936	 Membrane bound lytic murein transglycosylase A	0.00379904645465
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45423		0.00379899495123
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9J2	 Ribonuclease G	0.00369550795202
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P0A9J2	 Ribonuclease G	9.94724803483e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7DMI2	 Transcriptional regulator	0.00379804746079
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C1CRY7	 S1 RNA binding domain protein	0.003797948684
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D0ZXP9	 Methyl viologen resistance protein YddG	0.00379760726886
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q12S01	 4 hydroxybenzoate octaprenyltransferase	0.00233939461246
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q12S01	 4 hydroxybenzoate octaprenyltransferase	0.00145749319065
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP68		0.00379677848421
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6WXJ2	 Porphobilinogen deaminase	0.0037638396079
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KU25		0.00207127249077
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNZ6		0.00379442002235
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CFZ5	 Metal ABC transporter substrate binding lipoprotein	0.00379389513682
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3XFP9	 Inosose dehydratase IolE	0.00379320299646
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULR1	 Predicted phosphatidylglycerophosphatase A related protein	0.00379096585605
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4ZCL2	 DNA polymerase III subunit delta	0.00378907729648
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0L612		0.00347583392754
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83MG9	 Probable crotonobetaine carnitine CoA ligase	0.00378675525629
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE93	 Protein CreA	0.0037472843699
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7EP81	 Bifunctional adenosylcobalamin biosynthesis protein CobP	0.00378413515735
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q13CP7	 2 deoxycytidine 5 triphosphate deaminase	0.0037824826164
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTW7		0.00373315640351
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I2J103	 GatB Yqey domain protein	0.00378138625409
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36638	 Peptide transport system ATP binding protein SapF	0.00378082182008
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F6D1U5	 Sulfate transporting ATPase	0.0037771571763
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8HDH3	 N acetyllactosaminide beta 1,6 N acetylglucosaminyl transferase	0.0037769738974
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4AW63		0.00377623972215
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I5AX29	 ABC type multidrug transport system, ATPase and permease component	0.00377234907525
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q7BVT7		0.00190599039667
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q7BVT7		0.00186592926664
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2N0Z3	 Anaerobic dimethyl sulfoxide reductase chain A	0.00377009328741
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T6D9	 Glycerophosphoryl diester phosphodiesterase	0.00376995042715
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9L3	 FKBP type 22 kDa peptidyl prolyl cis trans isomerase	0.00376993957578
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F0PCL5	 Amino acid ABC transporter, amino acid binding protein	0.00345886775805
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0PCL5	 Amino acid ABC transporter, amino acid binding protein	0.000184241911585
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F0PCL5	 Amino acid ABC transporter, amino acid binding protein	0.000126363664022
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B0U620	 Uracil DNA glycosylase	0.00376696531574
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32718	 D allose kinase	0.00376685596045
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D6GSS9	 CRISPR associated endonuclease Cas1	0.00376641254123
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SKF6	 HEAT repeat containing protein	0.00376640265439
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U3S2	 Serine threonine protein kinase	0.00376440228421
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8VRM3	 Type II secretion system protein L	0.0037624735201
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MHP0	 Nicotinate phosphoribosyltransferase	0.00374093565197
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7EPE2	 S adenosylmethionine uptake transporter like protein	0.00376137470723
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9F1M9	 UDP N acetylmuramate  L alanine ligase	0.00376054549502
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AS82	 SsrA binding protein	0.00376033378771
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y3FJT1		0.00375917642514
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A5IT97	 Diacylglycerol kinase	0.00257770955007
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IT97	 Diacylglycerol kinase	0.0011808721351
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B2IR65		0.00375816179517
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7N5W6	 D serine dehydratase	0.00366426114522
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7N5W6	 D serine dehydratase	8.33040986445e-05
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFG5	 Predicted phosphosugar isomerase	0.00375676079492
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P12655	 PTS system sucrose specific EIIBCA component	0.00375630007236
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52073	 Glycolate oxidase subunit GlcE	0.00375463507762
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4TF25	 Nitric oxide reductase FlRd NAD reductase	0.00375441008798
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77732		0.00375382059551
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2L2H8	 30S ribosomal protein S12	0.00293219819269
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q2L2H8	 30S ribosomal protein S12	0.00082010079516
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q213B4	 Aspartate racemase	0.00375173548668
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V4JQ05		0.00375092683205
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A2BIZ8	 S adenosylmethionine synthase	0.00375042574704
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVN1		0.00219129348946
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K4VRI7		0.0037485182804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P54746	 Mannosylglycerate hydrolase	0.00374839757511
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5M3Y0	 Cell division protein	0.00326402441898
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5M3Y0	 Cell division protein	0.000483472357634
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0C1		0.0037472108363
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q04849	 Nitrogen assimilation regulatory protein NtrX	0.00374715363778
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9Z615	 Ferredoxin  NADP reductase	0.00374590928837
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45541	 Protein FrlC	0.00374545749389
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2JLL9	 LL diaminopimelate aminotransferase	0.00374531221449
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P17327	 Glycine betaine L proline transport system permease protein ProW	0.00374478559905
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32125	 Molybdopterin guanine dinucleotide biosynthesis adapter protein	0.00374250812769
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S6D840	 Cobaltochelatase CobT	0.00374186782835
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GKI8	 Peptidase M16 like protein	0.00374113910755
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PSI9	 Adhesin like protein	0.00374087675213
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D8JXK3	 Oxygen independent coproporphyrinogen III oxidase	0.0037402905814
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9V1H0		0.00249350529148
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9L7S0	 3 sulfolactaldehyde reductase	0.00373985994886
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z4Z3		0.00373942842782
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UZR9		0.00373942842782
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE28	 Protein AroM	0.0037393209415
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CMD6	 Cobalamin independent methionine synthase II, putative	0.0037383777189
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PV41	 Bacterial membrane flanked domain protein	0.00373581923889
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P03023	 Lactose operon repressor	0.00373481003326
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3VIV1	 Transposase, IS4 like family protein	0.0037335559143
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J3F9J8	 Nicotinamide mononucleotide transporter	0.00373305229209
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP50		0.00373213449957
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U4TH79		0.00373204611952
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMU7	 Possible glycosyltransferase	0.00373178885067
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AN32	 Na+ solute symporter   histidine kinase	0.00373161799809
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8CWR6	 Alpha monoglucosyldiacylglycerol synthase	0.00335400347074
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8CWR6	 Alpha monoglucosyldiacylglycerol synthase	0.000377179178174
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P65631	 Membrane protein insertase YidC 1	0.00373088770972
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21822	 Methyl accepting chemotaxis serine transducer	0.00372988135617
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46831		0.00372925739751
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2P3J8	 Imidazole glycerol phosphate synthase subunit HisF	0.00370706658722
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28R93	 Toxic anion resistance	0.00372854687088
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZS16	 Membrane protein	0.00302795167263
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WZ48		0.00360571896684
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3NI78		0.0037268284105
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9U5		0.00326046778963
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P0A9U5		0.000233781661863
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0A9U5		0.000231928728941
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N4EZP0	 FAD binding domain protein	0.00372589339841
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL31	 Translation initiation factor 6	0.00372586384935
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1M3I8		0.00372569238541
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00490	 Maltodextrin phosphorylase	0.00372536810827
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QJ64	 Thioredoxin	0.00222802960863
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QJ64	 Thioredoxin	0.00149706708893
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G5JXL5	 Rod shape determining protein MreD	0.00372378620273
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24169	 Ornithine decarboxylase, inducible	0.00372352073216
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9UVF1	 Short chain dehydrogenase reductase SDR	0.00371460168506
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77423	 Hydrogenase 4 component H	0.00372242994065
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1HAB5	 Peptidoglycan hydrolase flgJ	0.00372156640868
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D2J9T7		0.00372140024296
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q213M9	 C4 dicarboxylate transport protein	0.003721178777
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C6C506	 GCN5 related N acetyltransferase	0.00372072800936
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J4J9	 Ribonuclease E	0.00372012471111
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFU2	 Glutamate  tRNA ligase	0.00372009662357
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJ29	 Cytochrome c, class I	0.0037200670431
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E4P0V7	 SerB Phosphoserine phosphatase	0.00371996174464
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMV3	 Polysaccharide polyol phosphate ABC transporter, ATPase component	0.00371970408823
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J1AHN1	 ZIP zinc transporter family protein	0.00371963500186
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XCW6	 Protein SprT	0.00371945212192
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W9B8I4	 Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	0.00371778725231
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TYX3	 HSP70 class molecular chaperones involved in cell morphogenesis	0.00371724204946
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P02929	 Protein TonB	0.00371623775407
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5WHW2	 Arginine repressor	0.00371525718923
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CN85	 Copper export proteins	0.00371371143373
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HCA4	 ABC transporter, ATP binding protein	0.00371349271502
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P07959	 Methyl coenzyme M reductase operon protein C	0.00371286786896
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7NMR0	 Endonuclease 8	0.00371273848685
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WSI7		0.00328989797294
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64558		0.00371208270525
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F6D3C6	 3H domain containing protein	0.00371176713344
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LX45	 Membrane protein	0.00371004716092
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0TSM6	 Histidine kinase, putative	0.0037070504419
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7DP98	 Two component system response regulator	0.00370461892438
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76422	 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase	0.00356052370931
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P76422	 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase	0.000136623230783
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL67	 50S ribosomal protein L30P	0.00370401724605
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMG8	 Cell wall biosynthesis protein, MurD like peptide ligase family	0.00370334935715
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X6I1	 HTH type transcriptional regulator EcpR	0.0037029181401
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2QG11	 Receptor protein	0.00370252993512
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CNP4	 Transcriptional regulator GntR family	0.003699249463
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7N1I3	 Antitoxin HicB 1	0.00369890371729
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F2QCR4	 ABC transporter, ATP binding permease protein	0.0035064498261
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F2QCR4	 ABC transporter, ATP binding permease protein	0.000192330967404
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57840	 DNA directed RNA polymerase subunit E	0.00369762521481
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X1XJA7		0.00369701977523
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F7X0	 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.0036826888775
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_L7VRM1	 OadB	0.00369606119513
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P40709	 Inner membrane protein YejM	0.00369502554057
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B5EPG1	 PilT protein domain protein	0.00369349653755
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27290	 Inosine 5 monophosphate dehydrogenase related protein I	0.00369340896937
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37439	 PTS system glucose specific EIICB component	0.00367216728991
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A1G6	 RNA polymerase binding transcription factor DksA	0.00369297874305
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q53143	 Diheme cytochrome c type	0.00369281105029
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57947		0.00369188726131
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q6N0X7	 Short chain dehydrogenase	0.00368985935558
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2N8C9	 Membrane protein, putative	0.00368898996752
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46834	 Putative type II secretion system C type protein YghF	0.00368880107817
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2HS82	 N acetylmuramoyl L alanine amidase	0.00368806432378
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DR50	 Diphosphomevalonate decarboxylase	0.00368776306389
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6ST97	 Transcriptional regulator	0.00368691756231
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V5DMC9	 Selenocysteine specific translation elongation factor	0.00368655301387
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6STE7	 Transcriptional regulator	0.0036865172603
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27465	 Protein L isoaspartate methyltransferase homolog	0.00368634696266
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX54	 Response regulator receiver protein	0.00368600519264
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9T2	 D 3 phosphoglycerate dehydrogenase	0.00296657296936
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0A9T2	 D 3 phosphoglycerate dehydrogenase	0.000680388394091
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A6G4	 Nicotinamide nucleotide amidohydrolase PncC	0.0036848030319
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRU9		0.00368409993429
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFY4	 Protein SanA	0.00368355100305
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9T9		0.00368089195647
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZP5	 Peptidase U62 family	0.00368059943221
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K4Q9Y1	 ATP dependent RNA helicase DBP2	0.00322962094902
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4Q9Y1	 ATP dependent RNA helicase DBP2	0.000450317628671
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G2T0A1		0.00367918001469
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YCU2	 Siderophore synthase	0.00367829349665
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8GL06	 TRAP dicarboxylate transporter, DctM subunit	0.0036771941083
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YBP6		0.00367610450898
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IU77		0.00367519284746
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76161	 Antitermination protein Q homolog from lambdoid prophage Qin	0.00367309210874
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SVH6		0.00367294432232
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F4EG72	 ABC type polar amino acid transport system, ATPase component	0.00367279768184
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S6AU95	 Transcriptional regulators	0.00367256939593
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZTE9	 Mannitol 1 phosphate 5 dehydrogenase	0.00361814865434
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G8LHY7		0.00367166017937
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U5G1		0.00367045539182
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0T503	 Purine nucleoside phosphorylase	0.00366918408877
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P27756	 Alpha galactosidase	0.00366896175829
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P62448	 Imidazole glycerol phosphate synthase subunit HisH	0.00361924622524
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C4V2	 ComE operon protein 1	0.00366822295302
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SIG9		0.00363337010067
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33915	 Inner membrane ABC transporter permease protein YejE	0.00366714286759
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9W6R8	 Chaperone protein DnaJ	0.0030797142694
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9W6R8	 Chaperone protein DnaJ	0.000483002780103
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9W6R8	 Chaperone protein DnaJ	0.000103873011888
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KPA4	 L aspartate oxidase	0.00281257445828
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9KPA4	 L aspartate oxidase	0.000849349304807
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2KX33	 Permease family protein	0.00366597880778
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N1T2		0.00366589830932
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27701	 Conserved protein	0.00366555253069
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9R0	 Aspartate semialdehyde dehydrogenase	0.00255984531769
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0A9R0	 Aspartate semialdehyde dehydrogenase	0.000898762525562
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P0A9R0	 Aspartate semialdehyde dehydrogenase	0.000206816147307
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A2RED4	 GntR family regulatory protein	0.00349484775002
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A2RED4	 GntR family regulatory protein	0.000170548256
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8AQ14	 5 keto 4 deoxy D glucarate aldolase	0.00362086979079
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC31	 Cell division protein FtsX	0.0036644744763
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNS4	 Replication initiator protein A	0.00366390091926
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8ZH39	 D methionine transport system permease protein MetI	0.00366366697092
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N2R4		0.00366345463751
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46908	 Putative electron transfer flavoprotein subunit YgcR	0.00366264038976
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SPQ0		0.00366243252502
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1R4J9		0.00361907154939
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77263	 Probable fimbrial chaperone EcpE	0.00366216522579
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G8QBH7	 ImpD	0.00366206437471
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F095	 UPF0194 membrane protein YbhG	0.00366160246355
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J6C1	 Sensor histidine kinase RegB	0.00366140820302
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PLM1	 4 deoxy L threo 5 hexosulose uronate ketol isomerase	0.00351236959022
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C0P4	 AzlD	0.00234521656469
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C0P4	 AzlD	0.000964306102423
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G2T8N1		0.00365905733915
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZWY8	 Ribosome maturation factor RimM	0.00365903531052
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E4PYJ4	 Thiol disulfide isomerase and thioredoxin	0.00278357453023
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E4PYJ4	 Thiol disulfide isomerase and thioredoxin	0.000875082830739
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C7TGJ0	 PTS system, IIC component	0.00365664737976
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEB4	 D alanyl D alanine carboxypeptidase DacA	0.00365613506572
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75976		0.00365592281176
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q830B5	 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.00365565630895
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEW5	 3,5 cyclic adenosine monophosphate phosphodiesterase CpdA	0.00365527928285
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULC5		0.00365514404689
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PUS4	 Adhesin like protein	0.00365467063145
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37461	 Sensor protein ZraS	0.00364759597659
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28629	 Biodegradative arginine decarboxylase	0.00365326084429
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76482		0.00365210799392
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2RV04	 GTPase Obg	0.00365131490342
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SEC7		0.00365131373579
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8A338		0.00199333062319
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F0VWI5	 PTT family thiamin transporter	0.00364919858585
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMJ1	 Threonine  tRNA ligase	0.00364912743818
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E6P0C6	 Lipopolysaccharide biosynthesis protein, truncated protein	0.00364803348464
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9AC07	 NifU like domain protein	0.00364795022156
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6ISJ0	 Peptidase M20D, amidohydrolase, putative	0.0036472118947
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZII5	 Protoheme IX farnesyltransferase	0.00359669512128
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV86	 Putative signal peptide protein	0.00246554074983
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZNU0		0.00364467925828
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TPZ0	 Permease	0.0036446624831
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0T0I4	 Ribosomal RNA large subunit methyltransferase G	0.00364457719366
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABP1	 Anaerobic C4 dicarboxylate transporter DcuB	0.00364415118571
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G9Z7C4	 Amine oxidase	0.00364303838702
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15934	 Flagellar assembly protein FliH	0.00364103066407
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27375	 Heat shock protein C	0.00364090930971
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31470		0.00364082080278
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76395		0.003640811867
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32134		0.00364012716006
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V3R5	 Transcriptional regulator, MarR family	0.00363975502529
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2II05	 ABC transporter related	0.00363921635406
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G0AA04	 Sulfate binding protein sbp	0.00339343124814
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G0AA04	 Sulfate binding protein sbp	0.000245659154257
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A207	 Ethanolamine utilization protein EutJ	0.00361544660428
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F0VS21	 Rhamnosyltransferase	0.00363796141786
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5DXZ5	 Lateral flagellar motor protein B 	0.00363735632566
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PK94	 30S ribosomal protein S9	0.00363692053405
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G0LSM2	 Phage protein	0.00336520589123
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4ZLZ8	 CRISPR associated protein, Csd1 family	0.00363572368014
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57PU8	 Phenylalanine  tRNA ligase beta subunit	0.00361929968611
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SQM5		0.00362105411584
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8Z9J5	 Ribosomal large subunit pseudouridine synthase A	0.00349109945847
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B0TI92	 S adenosylmethionine decarboxylase proenzyme	0.00252679302226
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B0TI92	 S adenosylmethionine decarboxylase proenzyme	0.000580451550779
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B0TI92	 S adenosylmethionine decarboxylase proenzyme	0.000524011724491
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SUB6		0.00363042587824
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6WZN8	 Glycoside hydrolase family 25	0.003630425491
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WNZ4	 PfkB domain protein	0.00362904749973
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D5CZH2	 Pyrimidine monooxygenase RutA	0.00362352494887
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADQ4		0.0036288118958
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A034HVJ8		0.0036286678768
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QFM9		0.00346859070452
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E0SGK4	 ABC transporter, permease component	0.0036262974049
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58811		0.00362629726187
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V1A8J2		0.00362573163635
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1R9F1		0.00362572607067
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9G7	 Isocitrate lyase	0.00360461216106
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9S6S1	 Xaa Pro dipeptidase	0.00362505513075
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CI68	 DegV domain containing protein YejH	0.00326233700921
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9CI68	 DegV domain containing protein YejH	0.000362681096433
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P49078	 Asparagine synthetase [glutamine hydrolyzing] 1	0.00362499543439
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNG5	 CMP sialic acid synthetase, NeuA	0.00362211552094
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IXN3	Kdo2 lipid A phosphoethanolamine transferase	0.00362210056983
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R8AGJ1		0.00336548558503
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1DNL9	 DNA directed RNA polymerase beta subunit	0.00362173771225
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0T7Z3		0.00362087960629
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUY9		0.00362048686638
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30860	 ABC transporter arginine binding protein 1	0.00362030680831
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4VZG9	 Transcriptional regulator	0.00362025940412
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAV9	 Putative isomerase YbhH	0.00362010794074
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACS1	 Transcriptional repressor MprA	0.00361995607933
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGG3	 Acyl CoA thioesterase 2	0.00361995025019
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q54430	 Sucrose operon repressor	0.00361963258806
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1JQN1	 Cell division inhibitor SulA	0.00361930207119
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U5MPL0	 Protease YdeA	0.00361926875808
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SK92	 Energy converting hydrogenase A subunit Q EhaQ	0.00361854864465
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEN3	 NADH flavin reductase	0.00361845252889
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9S6	 Glycerol dehydrogenase	0.00298322734725
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P0A9S6	 Glycerol dehydrogenase	0.000633986174764
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P43671	 Paraquat inducible protein B	0.00361594956084
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6EIV0	 Nucleoid associated protein VSAL_I1059	0.00361561885794
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PVN9		0.00361549075627
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P65103	 Isopentenyl diphosphate delta isomerase	0.00337429058899
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P65103	 Isopentenyl diphosphate delta isomerase	0.000240777852245
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P58205	 Flagellar L ring protein	0.00361443547772
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E2B0	 Calcineurin like phosphoesterase	0.00361439623911
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SN00	 Transcriptional regulator ArsR family	0.00361407650553
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R5CIR9		0.0036137938247
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABV8	 Protein TolR	0.00361339029231
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27068		0.00361322822855
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1BAH6	 MOSC domain containing protein	0.00361306850307
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39380	 RNA 2 phosphotransferase	0.00361244867249
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRL7	 ABC transporter related	0.0036123597999
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C6W4P9	 Aldehyde Dehydrogenase	0.00361113843761
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K0DDY9	 Microcin C7 resistance MccF related protein	0.00360345275468
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8CVL1	 Multidrug resistance protein MdtE	0.00361053672104
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A908	 MltA interacting protein	0.00360923375847
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R0T4	 Rhsg core protein with extension	0.00360897910171
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NI01	 MrtD	0.0036087503527
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q492H7	 NADH quinone oxidoreductase subunit B	0.00300939073457
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q492H7	 NADH quinone oxidoreductase subunit B	0.00059240418778
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F2MTK1	 Cysteine synthase	0.00360730861711
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNJ1	 Predicted SAM dependent methyltransferase	0.0036062046286
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3STW5		0.00360587741254
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7ZAP7	 Histidine kinase	0.00360534953452
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NEB6	 Phosphoribosylformylglycinamidine synthase 2	0.0036042394389
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P05052	 HTH type transcriptional regulator AppY	0.00360391086063
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7CB38	 UPF0324 inner membrane protein YeiH	0.00264114111867
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7CB38	 UPF0324 inner membrane protein YeiH	0.00096224252462
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58899	 UDP N acetylglucosamine 2 epimerase	0.00360316486589
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0C0F3	 DNA polymerase III subunit alpha	0.00360147669839
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNC2	 Nuclease, Staphylococcus nuclease like family	0.00360111289495
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P71242	 Colanic acid biosynthesis protein WcaK	0.00357431250499
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C3L9	 Lipoprotein NlpI	0.00360054857158
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFF3	 Nucleoside permease NupC	0.00359985362613
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37387	 D xylose binding periplasmic protein	0.00359910906736
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLM6		0.00359842080043
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QFC7		0.00354551439452
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P58813	 2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.00359764500889
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TQZ1	 Thioesterase	0.00359558077843
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABU3	 Ribosome binding ATPase YchF	0.00312278551523
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P0ABU3	 Ribosome binding ATPase YchF	0.000472191326719
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMB6	 Cell wall biosynthesis protein, MurD like peptide ligase family	0.00359417450971
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HDF1		0.00359229675885
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4YXM1	 Cell division protein FtsX	0.00344004336205
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M4YXM1	 Cell division protein FtsX	0.000151826417371
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_G0EC83	 Threonine synthase	0.00359093793101
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TR24	 Transcriptional regulator	0.00359088230465
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9E8V3	 Putative septation protein SpoVG	0.00206659872788
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9E8V3	 Putative septation protein SpoVG	0.00152412651673
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3ST42		0.00343713858001
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A018Y1M8	 Glycogen branching enzyme	0.00358897243168
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMZ2	 3 methyladenine DNA glycosylase 8 oxoguanine DNA glycosylase	0.0035880933935
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3SLJ8	 UDP glucose 4 epimerase	0.00358677911163
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7UXY9	 Phosphoribosylformylglycinamidine cyclo ligase	0.00239612696782
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UXY9	 Phosphoribosylformylglycinamidine cyclo ligase	0.00118573262512
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULA7		0.00358560830036
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P19934	 Protein TolA	0.00358535042731
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C5BKL9	 Chromosomal replication initiator protein DnaA	0.00308783689145
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5BKL9	 Chromosomal replication initiator protein DnaA	0.000497493337954
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P10539	 Aspartate semialdehyde dehydrogenase	0.00355561156279
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D4GIS9	 RbsA	0.00358453029052
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XAF1	 Propionate kinase	0.00357615213481
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U222	 ABC transporter permease	0.00358326078805
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J266		0.00340545785502
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5X0E4	 Major facilitator superfamily protein	0.00358247686764
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RF98	 Peptidyl prolyl cis trans isomerase	0.00358157598581
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P73860	 KaiC like protein 1	0.00358055076397
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJ79	 Cobalt ABC transporter permease protein CbiQ1	0.00358050501334
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27481	 Putative branched chain amino acid aminotransferase	0.00344884095875
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAS3	 Inner membrane protein YbbJ	0.00357921339445
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47151	 Probable endopeptidase YafL	0.00357848131513
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24193	 Hydrogenase isoenzymes formation protein HypE	0.00357800493028
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P54820	 Cytochrome c 552	0.00357702936623
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TCE8	 Co chaperone protein HscB	0.00357650457028
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKC1	 Arsenical resistance operon trans acting repressor	0.00357516770225
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F2I582	 ABC transporter, ATP binding protein	0.0029549110727
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F2I582	 ABC transporter, ATP binding protein	0.000619743591182
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28PT8		0.00357437448407
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4VT18	 Mevalonate kinase	0.00357367832008
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TQY3	 Alpha beta hydrolase	0.00357360165746
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AG42	 Riboflavin biosynthesis protein RibF	0.003573578197
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XA27	 Protein FixB	0.00357328244032
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTD2		0.00357327055963
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75919	 Cardiolipin synthase C	0.00357214255166
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_N0CFH5	 L cystine ABC transporter substrate binding component	0.00357205746575
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q839F5	 30S ribosomal protein S17	0.00222353901004
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q839F5	 30S ribosomal protein S17	0.00134840473358
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R7E4L4	 Hydrolase NUDIX family	0.00357103000472
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HGC7	 Glutathione peroxidase homolog BsaA	0.00356887697231
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_W5ZFT8	 Oxidoreductase, putative	0.00302461826221
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_W5ZFT8	 Oxidoreductase, putative	0.000542820255649
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9RVD6	 Tryptophan  tRNA ligase 2	0.00356653589913
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58065	 Putative NADH oxidase	0.00356632647967
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNN7	 Sugar transferase	0.00356567357362
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1X8Q2	 Ribosomal RNA large subunit methyltransferase K L	0.0035654126009
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16926	 Cell shape determining protein MreC	0.00356527349538
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U2B4	 Septation ring formation regulator EzrA	0.00348632086285
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B4U2B4	 Septation ring formation regulator EzrA	7.88785683993e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P09996		0.0034883768307
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2NUJ6	 8 amino 7 oxononanoate synthase	0.00355607670831
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P26365	 N acetylmuramoyl L alanine amidase AmiB	0.00356447781356
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28M29	 Lipoprotein releasing system transmembrane protein LolC E family	0.00356447063236
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKE5	 FecR protein	0.00347874922283
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C9A9S2		0.00356076360124
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XMS0		0.00356071465824
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39347	 Putative prophage P4 integrase	0.00356019791978
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q00750	 Multiple sugar binding transport system permease protein MsmF	0.00356011079706
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RKI9	 Multidrug resistance protein	0.00355977758746
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HAU8	 30S ribosomal protein L7 Ae	0.00355927154754
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32157	 Protein YiiM	0.00355873600723
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK53	 Alcohol dehydrogenase , GroES like protein	0.00355814293683
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKJ0	 Tyrosine  tRNA ligase	0.00355788163777
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F4EDN7	 Ribulose phosphate 3 epimerase	0.00355768630359
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PYU4	 Predicted glycosyltransferase  GT1 family	0.00355706010599
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HEZ3	 Putative fluoride ion transporter CrcB 1	0.00236552851077
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HEZ3	 Putative fluoride ion transporter CrcB 1	0.0011904509235
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37659	 Protein BcsG homolog	0.00355586563472
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNU8	 Large terminase subunit	0.00355514112114
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DWA1		0.00355510255804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MT79	 Outer membrane usher protein fimD [Precursor] and minor component of type 1 fimbriae [Precursor]	0.00355451368476
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E311	 Polysaccharide polyol phosphate ABC transporter ATP binding protein	0.00355413380046
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RB01		0.00355364414499
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGI3	 Ribose transport system permease protein RbsC	0.00355362335011
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36928		0.00355325664071
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q97SH4	 PTS system mannitol specific EIICB component	0.00354793823225
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SW52	 Malonyl CoA ACP transacylase	0.00355177790843
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69807	 Mannose permease IID component	0.00324244362385
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P69807	 Mannose permease IID component	0.000309259038733
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNL4	 Adhesin like protein	0.00355140032483
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP62		0.00354661616839
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL46	 Phosphoserine phosphatase, HAD family, SerB	0.00355027627655
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2NG16	 Lysine decarboxylase LdcC	0.00355023900609
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P05417	 Ubiquinol cytochrome c reductase iron sulfur subunit	0.00302919925978
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46850	 RNA splicing ligase RtcB	0.00200082822927
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P46850	 RNA splicing ligase RtcB	0.00154926743486
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKL3		0.00341586438871
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E1RJE3		0.00354933947748
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZUJ0	 Pantothenate kinase	0.00342151669972
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAL7		0.00354926264376
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G9WFA5	 Maltose maltodextrin ABC permease	0.00335111445156
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G9WFA5	 Maltose maltodextrin ABC permease	0.000197480960554
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DH85	 Deoxyribonuclease I	0.00354786286411
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C4ZXX6	 PKHD type hydroxylase YbiX	0.00342310558711
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R6Q8V3	 O 6 methylguanine DNA methyltransferase	0.00354758113898
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q27331	 V type proton ATPase catalytic subunit A isoform 2	0.00354741163284
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P03018	 DNA helicase II	0.00308925876448
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P03018	 DNA helicase II	0.000380355878369
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IRS3	 DoxX family protein	0.00339293420696
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4YYU6	 A G specific adenine glycosylase	0.00345635387179
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M4YYU6	 A G specific adenine glycosylase	8.99862455844e-05
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F3SVI7		0.00354498606367
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0KMY1	 Dipeptide and tripeptide permease B	0.00354422439627
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15288	 Cytosol non specific dipeptidase	0.00353715583583
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37194	 Outer membrane protein slp	0.00354218683256
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44978		0.00354204468357
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V6Q9U1		0.00217757532056
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6D734	 Fe ions import ATP binding protein FbpC 1	0.00345279478448
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28916	 H repeat associated protein YbfD	0.003539699828
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8IMX0	 Ribonuclease VapC	0.00353891994959
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4YXM6		0.00353861121862
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D0RWK6		0.00353760971675
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E171	 Phosphatidylglycerophosphate synthase PgsA	0.00353703664533
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25740	 Lipopolysaccharide core biosynthesis protein RfaG	0.0027189693439
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P25740	 Lipopolysaccharide core biosynthesis protein RfaG	0.000731304188522
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03MN5	 Adapter protein MecA	0.00353532015414
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PWY7		0.00353492169543
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75969	 Prophage lambda integrase	0.00353478715728
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I4E0I3	 Arabinose efflux permease homolog	0.00353469314483
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKJ7	 Probable thymidylate kinase	0.00353454633544
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1LSW5	 UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.00353418802203
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8YC76	 DNA polymerase IV	0.0035252112564
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O33641	 Outer membrane protease IcsP	0.00353358158673
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0UHV5	 Transcriptional regulator, AraC family	0.00340090114006
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T0UHV5	 Transcriptional regulator, AraC family	0.000131807529438
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P59339	 Transcriptional regulatory protein DcuR	0.00353191833803
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R5F6		0.00353146476548
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9PE70	 30S ribosomal protein S3	0.00353078458249
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CQL5	 Amino acid ABC transporter, periplasmic amino acid binding protein, putative	0.00353042854632
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YAD1	 Transposase	0.00353028392611
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O28994	 Carbamoyl phosphate synthase large chain	0.00291997059257
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O28994	 Carbamoyl phosphate synthase large chain	0.000520752072675
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_O28994	 Carbamoyl phosphate synthase large chain	6.97440380121e-05
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMC5	 Predicted metal dependent membrane protease	0.00352875595645
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P44917		0.00352871282784
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q50423	 Methylamine utilization ferredoxin type protein MauM	0.00352738649249
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6ECF3	 3 keto L gulonate 6 phosphate decarboxylase UlaD	0.00352703816392
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZWR6	 SPP1 gp7 family Phage head morphogenesis protein	0.00352625948911
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58639		0.00352616630888
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZLS1	 Arabinose 5 phosphate isomerase KdsD	0.00340217987096
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q8ZLS1	 Arabinose 5 phosphate isomerase KdsD	0.00010650270839
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A3MYE6	 Recombination protein RecR	0.00352492795822
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SQA7		0.0035238321415
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1AAH4		0.00352371818036
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83BS0	 Transcription termination antitermination protein NusA	0.00247509514081
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q83BS0	 Transcription termination antitermination protein NusA	0.000977176565689
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q83BS0	 Transcription termination antitermination protein NusA	7.11519151217e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5FUN9	 Zinc transport protein ZntB	0.00352271997903
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B7GKM4	 NADH dehydrogenase, FAD containing subunit	0.00352220978502
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1REU5		0.00322971653084
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6ELV0	 Putrescine binding periplasmic protein	0.00352081881039
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0I1I7	 tRNA tmRNA ) methyltransferase	0.00314829960997
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0I1I7	 tRNA tmRNA ) methyltransferase	0.0003718985177
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P09394	 Glycerophosphoryl diester phosphodiesterase	0.00351946911945
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A9CR53		0.00351919766705
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E4PYM8	 Beta lactamase	0.00351919766705
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P22255	 3,5 bisphosphate nucleotidase CysQ	0.00351877019073
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJP3		0.00351475589496
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ97		0.00351473738636
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q4DJ07	 Prostaglandin F synthase	0.0034827475717
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D1Q2W4	 Transcriptional activator of maltose regulon,MalT	0.00351400263011
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEK8	 Formate dehydrogenase, nitrate inducible, cytochrome b556 subunit	0.00351342509831
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q133V1	 Transcriptional regulator, ArsR family	0.00351262869716
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNX0	 Cyclic nucleotide binding protein	0.00351222633873
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP32	 Purine pyrimidine phosphoribosyl transferase	0.00351163656097
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNP7	 Cobalt ABC transporter, permease component, CbiQ	0.00351048273613
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5GVF4	 PhaC protein	0.00350990054485
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACI5	 Xylose operon regulatory protein	0.00350929967955
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5XE77	 Single stranded DNA binding protein 1	0.00350874271151
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32720	 D allose transport system permease protein AlsC	0.00350598952703
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27716	 50S ribosomal protein L1	0.0035051713212
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4YXB8	 Uracil DNA glycosylase superfamily protein	0.00350494757647
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37757		0.00350492991842
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1T3	 Phosphohydrolase 	0.00207594171536
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C1T3	 Phosphohydrolase 	0.00142781566523
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GDE2	 ATP synthase subunit b 2	0.00350302277696
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPJ6	 Binding protein dependent transport systems inner membrane component	0.00350286617536
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R6BWJ5	 Efflux ABC transporter permease ATP binding protein	0.00350219407278
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P04995	 Exodeoxyribonuclease I	0.00350216658832
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMF6	 Shikimate dehydrogenase	0.00350109135918
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F2QFE8	 ABC transporter, membrane spanning permease amino acid transport	0.00350042627907
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45552		0.00349967620387
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O29757	 Exosome complex component Rrp41	0.00349486295816
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T7T2	 Permease	0.00349918344046
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L0MNT8	 ATPase component of ABC transporters with duplicated ATPase domain	0.00349894299984
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKX7	 Transcriptional regulator, TetR AcrR family	0.00349846550003
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7Q849	 Escherichia coli IMT2125 genomic chromosome, IMT2125	0.003496309348
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJX9	 ABC transporter ATP binding protein	0.00349584329694
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D9PYS7	 Predicted single stranded DNA specific exonuclease	0.00349313949072
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IZJ1		0.0033739303773
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X582	 Laminin binding fimbrial subunit ElfA	0.00349223383381
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21865	 Sensor protein KdpD	0.00349211924721
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83L33	 UPF0061 protein YdiU	0.00349191453035
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7W8T4	 Peptide chain release factor 2	0.00331244150632
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q7W8T4	 Peptide chain release factor 2	0.000178698349646
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P61154	 Tungsten containing formylmethanofuran dehydrogenase 2 subunit B	0.00349101665054
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16688	 Alpha D ribose 1 methylphosphonate 5 phosphate C P lyase	0.00348988361612
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3TIJ2	 Ornithine cyclodeaminase mu crystallin	0.00341703280453
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76656		0.00348715217491
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P42811	 Putative 26S protease regulatory subunit homolog MTBMA_c13930	0.00348582118912
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZRP6		0.00348149245702
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q7VSN2	 Glutamyl tRNA amidotransferase subunit A	0.00320436385825
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7VSN2	 Glutamyl tRNA amidotransferase subunit A	0.000172603982111
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q7VSN2	 Glutamyl tRNA amidotransferase subunit A	0.000104952772922
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q31YX9	 Elongation factor P like protein	0.00348312400841
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32151		0.00348233330982
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P50319	 Phosphoglycerate kinase, chromosomal	0.00326389130986
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P50319	 Phosphoglycerate kinase, chromosomal	0.000121060632557
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P50319	 Phosphoglycerate kinase, chromosomal	9.68020781937e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A7Q4	 Phosphopantetheine adenylyltransferase	0.00348153681211
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U9Z8R5		0.00348153681211
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PU75		0.00348128723958
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69814	 Galactitol specific phosphotransferase enzyme IIA component	0.00348108690038
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37646	 Cyclic di GMP phosphodiesterase YhjH	0.00348062924513
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33924		0.00347963764952
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LNR0	 Sulphur oxidation protein SoxZ	0.00343683659537
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77510	 Sensor histidine kinase DpiB	0.00347898354393
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58493		0.0034789183591
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E1XQA2		0.00347810516591
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMS9		0.00339653779518
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0JFD7		0.00347718191153
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F6A0T7	 Response regulator receiver domain protein	0.00347560327174
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGF3	 Sulfur acceptor protein CsdE	0.0034753868403
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83IW8		0.00344371407662
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6N6K5	 Aliphatic sulfonates import ATP binding protein SsuB	0.00340932381565
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B1MWT5	 Predicted permease	0.00347393686948
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8NZA2	 Putative NrdI like protein	0.00302801469133
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8NZA2	 Putative NrdI like protein	0.000445759680135
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75785	 Phosphoethanolamine transferase OpgE	0.00347330413605
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C1KVS7	 Indole 3 glycerol phosphate synthase	0.0034643405242
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4CJE2	 Bacterial regulatory s, gntR family protein	0.00347184067644
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D1Q668		0.00333624265838
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U2E8	 ABC transporter permease	0.00347153582342
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ALJ9		0.002014433606
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69925	 Ribonucleoside diphosphate reductase 1 subunit beta	0.00328295600884
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P69925	 Ribonucleoside diphosphate reductase 1 subunit beta	9.5701011899e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27303	 Multidrug export protein EmrA	0.00347046474998
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D6DM05	 Predicted oxidoreductases of the aldo keto reductase family	0.00310457291383
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D6DM05	 Predicted oxidoreductases of the aldo keto reductase family	0.000365512733903
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1RKI0	 Transcription elongation factor GreA	0.00346996730519
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77161	 2 hydroxy 3 oxopropionate reductase	0.00304049815561
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P77161	 2 hydroxy 3 oxopropionate reductase	0.000416062778372
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P57864		0.00336858159526
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P57864		0.000101166901352
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QD35		0.00346947115482
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31675	 Sugar efflux transporter A	0.00346917619826
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFM0	 Paraquat inducible protein A	0.00346880911463
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H6PD11	 Ion transport protein	0.00346829183262
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N6EHF2		0.00346770827804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21829	 Pyridoxal phosphate phosphatase YbhA	0.00346656655744
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SL61	 Phosphopantothenoylcysteine decarboxylase CoaC	0.00346567890302
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NHG2	 DNA polymerase II large subunit	0.00346547234544
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8DBE9	 Acyl [acyl carrier protein]  UDP N acetylglucosamine O acyltransferase	0.00346457447989
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16686	 Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnH	0.00346439454575
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MUC3	 Orotidine 5 phosphate decarboxylase	0.0033720043794
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28304	 Quinone oxidoreductase 1	0.00237347907389
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P28304	 Quinone oxidoreductase 1	0.00108880688508
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1Y2	 Nitroreductase family protein	0.00346201532541
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46888		0.00346137493923
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26325	 Cyclic 2,3 diphosphoglycerate synthetase	0.00346101289314
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I3J5	 5 hydroxyisourate hydrolase	0.00332663438059
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2P1U6	 Lysine  tRNA ligase	0.00265999209012
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2P1U6	 Lysine  tRNA ligase	0.000410232928171
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q2P1U6	 Lysine  tRNA ligase	0.000382266376411
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9JSI7	 Cation efflux system protein	0.00345972311625
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39288	 Epoxyqueuosine reductase	0.0034439019529
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJT9	 GTP binding protein	0.00345911965715
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37645		0.0034589608265
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5ZH68		0.00345751137291
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q49173	 Methyl coenzyme M reductase II subunit gamma	0.00345743267848
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N6P2		0.00332165992271
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36645	 Protein transport protein HofB homolog	0.00345659776213
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SR09		0.00345280630895
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5X1D7	 Polysaccharide deacetylase family protein	0.00345253151764
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PS51		0.0034522262739
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN55	 DNA directed RNA polymerase subunit D	0.00345174525575
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2N4E4		0.00317778340272
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUY3	 Putative two component membrane permease complex subunit SMU_747c	0.00345072989841
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77598		0.00345020275262
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K4PPW1	 Formate nitrite transporter	0.00344974815598
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FL94	 DnaJ like protein DjlA	0.00344973847019
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A021V5W0	 LctP family lactate transporter	0.00344916528683
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0PNB2	 6 pyruvoyl tetrahydrobiopterin synthase	0.00286789528154
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0PNB2	 6 pyruvoyl tetrahydrobiopterin synthase	0.00056810547269
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q928I1	 Triosephosphate isomerase 1	0.00341694310153
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39404	 Transcriptional activator protein BglJ	0.00344789085686
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1GAW9	 Tryptophan specific transport protein	0.00344732530154
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C4WZ51	 Sugar ABC transport system permease component	0.00344676657451
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8G1E1		0.00344665647042
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACK4	 Putative aga operon transcriptional repressor	0.00344609896615
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAK6	 Electron transport protein HydN	0.0034454474439
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E348		0.0034454313626
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4NJP1	 Signal peptidase I	0.0034450978431
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P44908		0.00201761326144
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44908		0.00142697028721
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SHS2	 Xaa Pro aminopeptidase	0.00344380755323
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77467	 1,2 epoxyphenylacetyl CoA isomerase	0.00344342779495
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SUE0	 ABC transporter permease	0.00344212639297
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77463	 Probable D,D dipeptide transport system permease protein DdpC	0.00344192847391
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQ71	 Arsenical pump membrane protein	0.00344145921437
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFQ9		0.0034403346691
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24255	 RNA polymerase sigma 54 factor	0.00343885546029
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HMD2	 HD domain protein	0.00343871180099
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77265	 Multidrug resistance like ATP binding protein MdlA	0.00342890218786
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3EVZ5	 Rossmann fold nucleotide binding protein Smf possibly involved in DNA uptake truncated	0.0034377463732
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SKB3		0.00343717061552
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABI6	 Magnesium transport protein CorA	0.00343679187374
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23173	 Low affinity tryptophan permease	0.00343578728911
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADW7		0.00343444925593
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9P5	 Thioredoxin reductase	0.00188232028849
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0A9P5	 Thioredoxin reductase	0.00144735970184
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76016	 PTS dependent dihydroxyacetone kinase operon regulatory protein	0.00343342385267
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O29399	 tRNA splicing ligase RtcB	0.00343188835224
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AG16	 Amidophosphoribosyltransferase	0.00343122462602
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37908	 UPF0053 inner membrane protein YfjD	0.00342882311977
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37018		0.00342818941754
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULW0		0.00342712133125
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMV0	 Glycosyltransferase, GT2 family	0.00342658636399
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NEQ0	 Histidinol phosphate aminotransferase	0.00338699097462
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZQP2	 Flap endonuclease Xni	0.00342625454257
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q88V19	 Glutamate racemase	0.0034262058489
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P19497	 Coenzyme F420 hydrogenase subunit delta	0.0034259527111
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZRA1	 Acetyl esterase	0.00342538932434
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44093		0.00342404300125
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76108	 Putative ABC transporter periplasmic binding protein YdcS	0.00342138872011
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5E4Y6	 Multidrug resistance protein NorM	0.00342119857936
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9MKV9	 Hydroxyethylthiazole kinase	0.00340504030313
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_S4X853		0.00229259465878
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S4X853		0.00112839094893
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32140	 Sulfoquinovose isomerase	0.00342054012029
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZS72	 Phosphoglucosamine mutase	0.00341648901752
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5WIJ5		0.00341974584647
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HER7		0.0021428825168
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D8HER7		0.00127675561803
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWD8		0.000934857106959
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24532	 Argininosuccinate synthase	0.0027696288248
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P24532	 Argininosuccinate synthase	0.000421235338274
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P24532	 Argininosuccinate synthase	0.000181282358197
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31440	 Adenine permease AdeQ	0.00341784565494
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW69		0.00341782069712
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P58839	 Glyceraldehyde 3 phosphate dehydrogenase	0.00341779797334
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P03014	 DNA invertase from lambdoid prophage e14	0.00288697147737
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P03014	 DNA invertase from lambdoid prophage e14	0.00053078949573
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R7MPC8	 ComG operon protein 4	0.00340282748261
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZE6	 Transcriptional regulator LysR family	0.00341727671763
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGN1	 Xanthine permease XanP	0.00341655123807
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y6R7	 Membrane lipoprotein	0.00341636900993
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q9V150	 Tryptophan synthase beta chain 2	0.00339800879263
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P61951	 Flavodoxin 1	0.003414967335
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NHY4	 Predicted ATPase	0.00341364098943
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D2BL86	 Undecaprenyl phosphate alpha N acetylglucosaminephosphotransferase	0.00328678328202
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D2BL86	 Undecaprenyl phosphate alpha N acetylglucosaminephosphotransferase	0.00012683990898
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P31672	 NifS IcsS protein homolog	0.0034133110002
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q32GE1	 Quinate shikimate dehydrogenase	0.00341081661323
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A0A023VR15		0.00328126991725
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A0A023VR15		0.000129007016113
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q4QLY5	 Glycine  tRNA ligase beta subunit	0.00341017031522
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNM9	 ROK family protein	0.00341004812657
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEG3	 Dipeptide transport system permease protein DppC	0.00311472110581
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AEG3	 Dipeptide transport system permease protein DppC	0.000294310911107
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P67664	 HTH type transcriptional activator AaeR	0.00340898815891
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33919		0.00340856458383
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X800	 D methionine transport system permease protein MetI	0.00340851930026
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULR3	 7 cyano 7 deazaguanine synthase	0.00340829282459
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O75600	 2 amino 3 ketobutyrate coenzyme A ligase, mitochondrial	0.00333971647728
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SP30		0.00340763691119
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33554	 Prepilin peptidase dependent protein A	0.0034074591231
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X3EYH3	 DNA mismatch repair protein MutL	0.00340724077318
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SVL6		0.00340664822947
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P20506	 L Threonine dehydratase biosynthetic IlvA	0.00328686803743
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P20506	 L Threonine dehydratase biosynthetic IlvA	8.8565410137e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83Q93	 Biosynthetic arginine decarboxylase	0.00340614971069
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26938	 Aspartate carbamoyltransferase regulatory chain	0.00340583588479
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTQ6	 TRAP T family transporter, large  inner membrane subunit	0.00336765267827
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3X570	 Phosphotriesterase protein Php	0.00340566840718
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2HNY3		0.00180293870627
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27221		0.00340485004774
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75978		0.00340369283133
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0DM86	 Clamp binding protein CrfC	0.00340106236227
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFU3		0.00289711323404
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AFU3		0.000503503780741
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U2K4	 Transcriptional regulator	0.00339995381181
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TXK4	 Prephenate dehydrogenase	0.00339939455215
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KSM2	 Alcohol dehydrogenase GroES domain protein	0.00339917888808
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQ44		0.0033987862603
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV87	 Caspase 1, p20	0.00339841206897
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KMC5	 Transcriptional regulator, LysR family	0.00339735531103
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5WGS2	 Amino acid ABC transporter extracellular binding protein	0.00339640135332
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77439	 Multiphosphoryl transfer protein 1	0.00339626061915
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O32333	 Glucitol sorbitol specific phosphotransferase enzyme IIB component	0.00289112953635
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O32333	 Glucitol sorbitol specific phosphotransferase enzyme IIB component	0.000408034807398
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_O32333	 Glucitol sorbitol specific phosphotransferase enzyme IIB component	9.63402362147e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TXL9		0.00339536673199
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O59521	 Elongation factor 2	0.00339480746738
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTY1		0.00339449839181
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39830	 Inner membrane protein YbaL	0.00339448117215
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77626		0.00339427169615
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULA0	 Multidrug ABC transporter, ATPase component	0.00339399169574
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6DH09	 Dipeptide and tripeptide permease A	0.00339354659971
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76298	 Flagellar biosynthesis protein FlhA	0.00339352628254
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46907	 Putative electron transfer flavoprotein subunit YgcQ	0.00339282659184
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E234		0.00339221965686
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PVB1	 Formate dehydrogenase alpha subunit FdhA	0.00339195111193
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UME7	 Arsenite transporting ATPase	0.00339075562554
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77279	 Probable iron export ATP binding protein FetA	0.00339056598344
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V8Q7	 Signal peptidase I	0.00339004981675
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q87C91	 Phosphate binding protein PstS	0.00338882597722
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SRI3		0.00338722094293
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P67446	 Xanthine permease XanQ	0.00338718153565
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM90	 Adhesin like protein	0.00338678937595
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q483C5	 Holliday junction ATP dependent DNA helicase RuvA	0.00224754888813
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q483C5	 Holliday junction ATP dependent DNA helicase RuvA	0.00113835393533
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQB2	 Transcriptional regulator, LacI family	0.0033857882393
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2FEJ8	 HTH type transcriptional regulator SarR	0.00181465975686
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FEJ8	 HTH type transcriptional regulator SarR	0.00157076309042
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E3G1M3	 Ribose 1,5 bisphosphate phosphokinase PhnN	0.00338534095639
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77625	 Sugar phosphatase YfbT	0.00334804370924
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16326	 Flagellar hook associated protein 3	0.00338472635366
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39333	 Cyclic di GMP binding biofilm dispersal mediator protein	0.00338268171585
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58239	 Peptide chain release factor subunit 1	0.00338229193239
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X5F4R0		0.000770721889707
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45148	 Carbonic anhydrase 2	0.00336578451891
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IR31	 Transcriptional regulator, XRE family	0.00338096604107
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57QS3	 Ribosomal RNA large subunit methyltransferase I	0.00338067984639
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI00035DAFDB	 hypothetical protein	0.00338046657014
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7BMM6	 Glycerol 3 phosphate cytidyltransferase TagD	0.00337987799309
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76250	 HTH type transcriptional regulator DmlR	0.00337957217815
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45015	 Protein NrfC homolog	0.00337882720551
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9S4	 Galactitol 1 phosphate 5 dehydrogenase	0.0033775024204
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K9NE14		0.00337634680302
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45539	 Putative fructoselysine transporter FrlA	0.0032398561034
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WXV4		0.00337540990843
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABF0	 Carbonic anhydrase 1	0.00337494526814
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SLB3		0.00337470725305
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9I0G7	 Orotate phosphoribosyltransferase	0.00337397768443
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q21LG2	 tRNA  ) methyltransferase	0.00212200286551
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q21LG2	 tRNA  ) methyltransferase	0.00100885950343
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q21LG2	 tRNA  ) methyltransferase	0.000231570109067
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB72	 Fructose bisphosphate aldolase class 2	0.00337294278813
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2U084	 Protein CsiD	0.00337214466571
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGI6	 Xylose transport system permease protein XylH	0.00337194826546
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8D0P1	 Chemotaxis protein CheY	0.0033707794636
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N3V2		0.00337041438875
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_W6A6C9	 Citrate lyase subunit alpha	0.00337011522751
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNC4	 Predicted coenzyme PQQ synthesis protein	0.0033700339923
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B8CSC0	 Lipoprotein signal peptidase	0.00335778750284
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47VJ8	 Ribosomal RNA small subunit methyltransferase A	0.00336921765182
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABM0	 Heme exporter protein B	0.00291991091943
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0ABM0	 Heme exporter protein B	0.00044912776094
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D3HDQ8		0.00336799379779
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMN0	 Glutamyl tRNA amidotransferase subunit A	0.003367694725
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R6Z842	 [citrate  lyase] ligase	0.00336559103387
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_H1Y825	 Cupin 2 conserved barrel domain protein	0.00336548558503
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSL6		0.00336548558503
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76352		0.00336488640724
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P13522	 Sucrose 6 phosphate hydrolase	0.00329350786495
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P13522	 Sucrose 6 phosphate hydrolase	7.02117994125e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P67051	 Thymidylate synthase	0.00287647636561
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P67051	 Thymidylate synthase	0.000361448332522
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0TGS5	 UvrC excinuclease ABC subunit C	0.00336285545088
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58036		0.00336277244322
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P59351	 UPF0229 protein PP_0396	0.00287864376367
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P59351	 UPF0229 protein PP_0396	0.00048382944637
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32141	 Sulfofructosephosphate aldolase	0.00336141863686
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM93	 Adhesin like protein	0.00336126995672
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PWI6		0.00336039532664
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N2G7		0.00336033782322
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SHC8		0.00320975909854
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7FM33	 Polyamine aminopropyl transferase	0.00331154658064
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27101	 Putative biopolymer transport protein ExbB homolog	0.00335925225292
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08201	 Nitrite reductase  large subunit	0.0033591849179
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30235	 Pseudouridine kinase	0.00335876845105
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I4E1E6		0.00278069598109
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I4E1E6		0.000578072018962
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75853	 Putative aliphatic sulfonates binding protein	0.00335819243402
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6UEM2		0.00335506386789
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGF5	 D xylose proton symporter	0.0033567041949
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P38489	 Oxygen insensitive NADH nitroreductase	0.00335594206886
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O33787		0.00335478986585
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77425	 Allantoate amidohydrolase	0.00335347613673
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NEM0	 DNA primase DnaG	0.00335337128974
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q3SFC9	 Dihydroxy acid dehydratase	0.00278472471224
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3SFC9	 Dihydroxy acid dehydratase	0.000568130742122
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28NX6	 Peptidase C26	0.00335251817262
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P13016	 1,6 anhydro N acetylmuramyl L alanine amidase AmpD	0.00332083089985
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0A9	 DNA polymerase	0.00335237491632
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFH0	 Methylated DNA  protein cysteine methyltransferase	0.00335026490429
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEC3	 Aerobic respiration control sensor protein ArcB	0.00331724845191
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33358	 HTH type transcriptional regulator MlrA	0.00334702947404
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C0H3	 Chaperone SurA	0.00334598710696
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9NAD2		0.00334451070664
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C0M7M5	 Thymidylate kinase	0.00332713822054
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O32113		0.00248988706525
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_O32113		0.000854043162465
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABC5	 Modulator of FtsH protease HflC	0.0033416510771
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_U6ED29	 Ferrous iron transport protein B	0.00334134490671
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P42096	 Protein LacX, chromosomal	0.00294293101062
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P42096	 Protein LacX, chromosomal	0.000396717357767
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZES9	 Long chain fatty acid  CoA ligase	0.0033390106185
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76466		0.00231982223687
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P76466		0.000961149266541
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A7FZA6	 Transcription elongation factor GreA	0.00333872131274
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NEX9	 PurB	0.00333780815604
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J7M693	 Cell division protein FtsL	0.00333776062127
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6C6K5		0.00333772692507
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P67176	 Probable transcriptional regulatory protein YebC	0.00333675682093
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75990	 Blue light  and temperature regulated antirepressor YcgF	0.00333659908305
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4VYJ7	 DNA repair protein RecO	0.00306590028613
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4VYJ7	 DNA repair protein RecO	0.000270577052397
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P04395	 DNA 3 methyladenine glycosylase 2	0.00333644366195
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33224	 Putative acyl CoA dehydrogenase AidB	0.00333353649843
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1JS01	 DNA directed RNA polymerase subunit alpha	0.00330732110419
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5NMC2	 Phenylalanine  tRNA ligase alpha subunit	0.00313412601971
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5NMC2	 Phenylalanine  tRNA ligase alpha subunit	0.000198749148722
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28306	 UPF0755 protein YceG	0.00333267084621
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8PGP9	 Proline  tRNA ligase	0.00256711018509
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8PGP9	 Proline  tRNA ligase	0.00052180243945
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q8PGP9	 Proline  tRNA ligase	0.000240581681149
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL43	 Oligosaccharyl transferase, STT3 subunit	0.00333166478304
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F1C0	 Cysteine desulfurase IscS	0.00333112975624
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YNW2	 ThiF family protein	0.00333079229312
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7IES2	 Ribonuclease HII	0.00248927811309
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A7IES2	 Ribonuclease HII	0.000829481975454
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P26838	 Chloramphenicol acetyltransferase	0.00319426366642
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0CB40	 Phosphoethanolamine transferase EptC	0.00332726898576
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3F1U6	 Integrase	0.00332724399385
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9MJT7	 Membrane protein insertase YidC	0.00332572189742
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVJ0	 Replication protein C	0.00325343751282
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q60AI1	 Spermidine putrescine import ATP binding protein PotA	0.00320223338486
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DT53	 Glucose 1 phosphate adenylyltransferase	0.00323161011588
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEZ8	 Membrane bound lytic murein transglycosylase D	0.00332453044283
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z5I1		0.00201328155534
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC26	 Nitrite transporter NirC	0.00332381811297
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58569	 Protein FwdA	0.00332367033257
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z084		0.00332311882137
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW64		0.00316403681444
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNX2		0.00331986906355
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D8MLX7	 Photosystem I assembly famlily protein BtpA	0.00331923358888
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SU15		0.0033182722782
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DTF4		0.00331809985889
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SL16	 Energy converting hydrogenase A subunit P EhaP	0.00331690424376
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HJ91	 Virulence factor EsxA	0.00331661242111
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K0C8E5		0.00330354076046
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RFS9		0.00331547514087
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFE9	 NADH quinone oxidoreductase subunit M	0.00246565725356
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AFE9	 NADH quinone oxidoreductase subunit M	0.000840581066662
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B2IMU5	 HIT family protein	0.00331508523426
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1U1A4	 Phosphoribosylaminoimidazole succinocarboxamide synthase	0.00191423483913
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1U1A4	 Phosphoribosylaminoimidazole succinocarboxamide synthase	0.00122537920447
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A1U1A4	 Phosphoribosylaminoimidazole succinocarboxamide synthase	0.000140815296448
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFR7	 Inner membrane ABC transporter permease protein YcjO	0.00331479750361
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76633		0.0033141910151
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XDS0	 Aspartate ammonia lyase	0.0032988313786
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CNT1	 1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.00331325584168
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37617	 Lead, cadmium, zinc and mercury transporting ATPase	0.003313055986
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WWQ1	 Lipoprotein signal peptidase	0.00331271825149
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AES0	 Bifunctional glutathionylspermidine synthetase amidase	0.00331178652393
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMM4	 Serine threonine protein kinase related protein 	0.00331097393845
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKM3		0.00331080520967
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A1B6	 Phospho 2 dehydro 3 deoxyheptonate aldolase, Tyr sensitive	0.0032307661174
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PSB0		0.002549380289
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WT17		0.000660980936181
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33368		0.00331025993503
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1JPZ9	 4 alpha L fucosyltransferase	0.00331005803866
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76236	 Inner membrane protein YeaI	0.00330882840312
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5PD59	 1 deoxy D xylulose 5 phosphate reductoisomerase	0.00246103331403
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5PD59	 1 deoxy D xylulose 5 phosphate reductoisomerase	0.000846953173728
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WR94		0.0032569215339
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37648	 Protein YhjJ	0.00330717818273
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36634	 Peptide transport periplasmic protein SapA	0.00330657204296
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJF5		0.00330595809988
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2W403	 Electron transport complex subunit E	0.00330489201535
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32717	 Putative alkyl aryl sulfatase YjcS	0.00330452263659
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P63590	 3 dehydroquinate dehydratase	0.00330373832785
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P07658	 Formate dehydrogenase H	0.00330349867028
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25519	 GTPase HflX	0.0033034881502
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DVD7	 Cell division protein SepF	0.00330269132514
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q65KJ5	 Metallothiol transferase FosB	0.00330231596568
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7DDS7	 Septum site determining protein MinD	0.00282720515761
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7DDS7	 Septum site determining protein MinD	0.000474308816744
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9E9S0		0.00323426209127
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WS75	 ATPase associated with various cellular activities, AAA_3	0.00330105318315
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24173	 Lipopolysaccharide heptosyltransferase 1	0.0032991184538
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76072	 Side tail fiber protein homolog from lambdoid prophage Rac	0.00329885314593
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_L0LLE8	 Competence damage associated protein	0.00329843631385
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76224	 Inner membrane ABC transporter permease protein YnjC	0.0032980506721
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A957	 KHG KDPG aldolase	0.00329746557564
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V1HUJ0	 Stationary phase inducible protein CsiE	0.00329702926471
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DRQ7	 Ribosomal RNA large subunit methyltransferase H	0.00329694415481
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMQ0	 Cobalt precorrin 3B C17 methyltransferase, CbiH	0.00329615610221
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023L6S3	 AraC family transcriptional regulator	0.00329561759549
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8LQS7		0.00329448374167
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76481		0.00329407097491
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U0D413	 Type II secretion system protein C	0.00329394803663
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW25		0.000814230383474
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4WEY1	 tRNA pseudouridine synthase B	0.00329340221848
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0C7L3	 Beta ketoadipyl CoA thiolase	0.00317253005758
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P0C7L3	 Beta ketoadipyl CoA thiolase	8.42776022963e-05
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q0W662	 Pyruvate carboxylase, subunit B	0.00329290159029
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39315	 Quinone oxidoreductase 2	0.00301996484195
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P39315	 Quinone oxidoreductase 2	0.000270682486737
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YRX8		0.00329055198371
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B8DYK8	 Deoxycytidine triphosphate deaminase	0.00328970347291
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T8RG60		0.00271282248687
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q11MX0	 Transcriptional regulator, BadM Rrf2 family	0.00328735184198
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PU88	 DNA helicase related protein	0.00328728590139
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P51981	 L Ala D L Glu epimerase	0.003286682468
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKK2	 Predicted unusual protein kinase, ubiquinone biosynthesis protein related, AarF	0.00328581835313
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3STE7		0.00328537404878
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2M2B8	 Multidrug transporter	0.00328528584245
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46843		0.00328515244977
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1XYL1	 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.003285011618
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q92JD8	 Probable ABC transporter permease protein RC0129	0.00328496306351
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J1A8G2		0.00315655734326
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P06130	 Formate dehydrogenase subunit beta	0.00328471414075
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q849Z0		0.00313544699304
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q849Z0		0.000149135254871
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I1ZP64		0.0032845483703
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XBV3	 Enterobactin synthase component E	0.00308454406376
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q8XBV3	 Enterobactin synthase component E	0.000160018608354
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y800	 Acetyltransferase, GNAT family	0.00328290434586
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F6D2B8	 ABC transporter related protein	0.00328271777831
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37746	 Putative O antigen transporter	0.00319882586793
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACB6	 Protoporphyrinogen IX dehydrogenase [menaquinone]	0.00328257528618
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T1ZCM0	 Endonuclease, putative	0.00328238548915
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NIC5	 ORC1 type DNA replication protein	0.00328221063678
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G0GLQ7	 ATP dependent RNA helicase HrpB	0.0032816006976
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37093	 Type II secretion system protein E	0.0030217648008
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P37093	 Type II secretion system protein E	0.000258287446789
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q98FL3	 Phosphate transport system permease protein PstC	0.00327993822459
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_N0AQS7	 D 3 phosphoglycerate dehydrogenase	0.00319401836028
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_N0AQS7	 D 3 phosphoglycerate dehydrogenase	8.56357655231e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC04	 Outer membrane protein assembly factor BamD	0.00327913017693
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WR49	 Cellulose synthase 	0.00327881649228
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4IMP7	 Large conductance mechanosensitive channel	0.00327753205696
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P55798	 Serine threonine protein phosphatase 1	0.00327620875004
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T6N0		0.00327618487573
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QII4		0.00327568278972
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q12HP7	 ATP synthase subunit b	0.00327505311213
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SU46	 Cell division protein DivIB	0.00327466898095
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q3K0J6	 Hydroxymethylglutaryl CoA synthase	0.00327441018232
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LHW3	 Aminotransferase class I and II	0.00327389269447
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL24		0.00327372931267
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C5W449		0.00327342570554
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44704	 CDP diacylglycerol  serine O phosphatidyltransferase	0.00327315400389
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58356	 Sensor protein TorS	0.00327127315841
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_M5Q8W3	 Opacity protein	0.0032698404315
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45240	 Sodium glutamate symport carrier protein	0.00284500817156
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P45240	 Sodium glutamate symport carrier protein	0.000423329499718
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21437	 Fructose 1,6 bisphosphatase 2 class 2	0.00326795570116
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75867	 Putative Lon protease homolog	0.00326784319349
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P11664		0.00326746960731
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1RF99		0.0031317975865
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZS9	 ABC transporter ATP binding protein	0.00326617468296
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E1RJD9	 Radical SAM domain protein	0.00326588059993
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SR89	 Tellurite resistance protein TehB	0.00326563172959
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16689	 Alpha D ribose 1 methylphosphonate 5 triphosphate diphosphatase	0.00326435658396
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACR3		0.00326414587456
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TQ16	 Pyridoxamine kinase	0.00326381939659
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0T1Y1	 3 phenylpropionate cinnamic acid dioxygenase subunit alpha	0.00319972134341
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULL0	 PyrE like protein	0.00326202682171
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46836	 Leader peptidase PppA	0.00326187956943
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C3DRI7		0.00326178596989
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_H8DHC5	 ATP dependent OLD family endonuclease	0.00326122669
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S5R225	 Ribosomal protein alanine acetyltransferase	0.00326058344388
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KUZ2	 Phage portal protein, lambda family	0.003260550849
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WR00		0.00325984424162
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8A6Z4	 Protein FdhE	0.00325925397523
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XE94	 Pyrimidine specific ribonucleoside hydrolase RihB	0.00325912355432
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MG32	 2 succinyl 5 enolpyruvyl 6 hydroxy 3 cyclohexene 1 carboxylate synthase	0.00319538746593
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A3U7R8	 O acetylhomoserine sulfhydrylase	0.00325751577656
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39180	 Antigen 43	0.00325736901822
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XW57	 Hpt protein	0.0032569215339
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JG74		0.0032569215339
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I0ZWM4		0.0032569215339
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q16A53	 Transcriptional regulator, ArsR family, putative	0.0032569215339
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPT6		0.0032569215339
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39691	disulfide interchange protein DsbC	0.00325553681749
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TL41	 Histidinol dehydrogenase	0.00325529594579
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2UKS8	 Electron transfer flavodomain protein	0.00325320747711
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T5X6I4	 Colicin I receptor	0.00325271750706
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5Y8G8	 Penicillin binding protein, 1A family	0.00325218964925
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8PUM8	 Sodium proline symporter	0.00325201167216
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WU01	 Polysaccharide export protein	0.00325169037815
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQ84		0.00209927748906
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQ84		0.00115172357547
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZS12		0.00325090184361
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKK8	 Adenine cytosine DNA methyltransferase	0.00325077792131
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28721	 Protein GltF	0.00325038205725
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KJQ4		0.00319397405344
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2UNT1	 Predicted protein	0.00272727118182
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSA7		0.00324825247042
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31433		0.00324600428178
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CKK9	 Multiple antibiotic resistance operon transcription repressor , putative	0.00324503537945
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0USP0	 VanZF related protein	0.00324491678761
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DVH2	 Phosphopantetheine adenylyltransferase	0.00324473454275
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7N653	 Succinyl diaminopimelate desuccinylase	0.00324414283075
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44304	 Glyceraldehyde 3 phosphate dehydrogenase	0.00317076677206
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MI93	 Acetylornithine deacetylase	0.00324365520886
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E2Y0	 D alanine D alanine ligase	0.00324345548476
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AD57	 YhgE Pip domain protein	0.0032434524472
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QHJ4		0.0032419345938
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RF58		0.00324022671962
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P22731	 High affinity branched chain amino acid transport ATP binding protein LivF	0.00233754441516
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P22731	 High affinity branched chain amino acid transport ATP binding protein LivF	0.000901973836876
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E3F0	 4Fe 4S binding domain containing protein	0.00323921333483
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32712	 Formate dependent nitrite reductase complex subunit NrfG	0.00323912006357
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AA97		0.00323863164697
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3UHD1	 Aminotransferase	0.00323862232845
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7MLR5	 Cysteine  tRNA ligase	0.00272044240703
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7MLR5	 Cysteine  tRNA ligase	0.000312036408031
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q7MLR5	 Cysteine  tRNA ligase	0.000172377748422
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMS8	 Predicted Fe S oxidoreductase	0.00323796802086
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVG4	 Hemolysin type calcium binding protein	0.00323779367386
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75952	 HTH type transcriptional repressor ComR	0.0032372917795
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FD60	 N acetylmannosamine kinase	0.00323709388061
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30958	 Transcription repair coupling factor	0.00323682568284
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U015		0.00323642458931
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQA6	 Transcriptional activator, TenA family	0.0031685836933
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77504		0.00323477089018
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I4E1N1		0.00323425524444
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNQ0	 Glycosyltransferase dolichyl phosphate mannose synthase, GT2 family	0.00323416518061
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P34749	 Putative DNA transport protein HofQ	0.00323335594762
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P43531	 Inner membrane transport protein YnfM	0.00276951285758
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P43531	 Inner membrane transport protein YnfM	0.000463512690115
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0UHU4	 4 carboxymuconolactone decarboxylase	0.00290073952364
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T0UHU4	 4 carboxymuconolactone decarboxylase	0.000332120287996
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A911	 Outer membrane protein A	0.0032324675491
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAG7	 Multidrug resistance like ATP binding protein MdlB	0.00319454018485
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADU9		0.00323210894103
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRV4		0.00323108357882
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0M6	 6 hydroxymethyl 7,8 dihydropterin pyrophosphokinase	0.00323042635263
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X7DMX2		0.00322998028291
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P11512	 DNA directed RNA polymerase subunit A	0.00322900778005
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB69	 NAD transhydrogenase subunit beta	0.00322845699514
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SLG3	 HD domain containing protein	0.0032281078324
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9JUC8	 Lipoyl synthase	0.0031149316359
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JUC8	 Lipoyl synthase	0.000107983494709
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1SWH9	 sn glycerol 3 phosphate import ATP binding protein UgpC	0.00309258470201
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_A1SWH9	 sn glycerol 3 phosphate import ATP binding protein UgpC	0.000107294970829
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TXN1	 Chorismate synthase	0.00321937170341
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIJ7	 NUDIX hydrolase	0.0032238988407
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G4QEZ4	 2 nitropropane dioxygenase family protein	0.00322339462195
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A4G0N3	 Probable tRNA pseudouridine synthase B	0.00322337961188
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6T6B5	 tRNA 2 methylthio N dimethylallyladenosine synthase	0.00181356587493
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6T6B5	 tRNA 2 methylthio N dimethylallyladenosine synthase	0.00113401326908
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A6T6B5	 tRNA 2 methylthio N dimethylallyladenosine synthase	0.000274639648573
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P06710	 DNA polymerase III subunit tau	0.00322210195065
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P04993	 RecBCD enzyme subunit RecD	0.00322206817808
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2MI40	 Thiamine ABC transporter permease	0.00322103014557
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TPB9	 GntR family transcriptional regulator	0.00322030055917
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5YX37	 Transporter, major facilitator family	0.00322024712513
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P11557	 Protein DamX	0.00321928101471
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P26647	 1 acyl sn glycerol 3 phosphate acyltransferase	0.00315648451855
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9K5	 PhoH like protein	0.00321864345905
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39342		0.00321838865009
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADV3	 Lipopolysaccharide export system protein LptA	0.00321817542505
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5QY15	 Glucans biosynthesis protein G	0.00238965273199
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B5QY15	 Glucans biosynthesis protein G	0.000795886378569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52612	 Flagellum specific ATP synthase	0.00321656967272
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H1CG66	 Inosine 5 monophosphate dehydrogenase	0.00321595242224
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJD7	 Predicted transposase	0.00321580773286
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FJC0		0.00321551335294
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YRC9	 Dihydrofolate reductase	0.00260828266476
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J9YRC9	 Dihydrofolate reductase	0.000607217824341
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E3GX46	 Triphosphoribosyl dephospho CoA protein	0.00321542224976
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3S395	 Transcription initiation factor IIB	0.00321531110081
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7M4N2	 Bifunctional protein FolD	0.00312246213814
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6ST62		0.00321473922054
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MIX6	 Thiazole synthase	0.0032145313021
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACD2	 Putative colanic acid biosynthesis acetyltransferase WcaF	0.00289077349305
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46925	 Cysteine desulfurase CsdA	0.00321421148416
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6ST49		0.00321406648142
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8E7H3	 Sensory transduction protein LytR	0.0026111952825
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E7H3	 Sensory transduction protein LytR	0.000602035822728
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NGX9	 Phenylalanine  tRNA ligase beta subunit	0.00321299812039
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76542	 Putative prophage CPZ 55 integrase	0.00321222249563
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAJ6	 Formate dehydrogenase O iron sulfur subunit	0.00321164397357
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AA83	 Cytosine permease	0.003084007424
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AA83	 Cytosine permease	0.000126522014477
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1XE05	 CP4 6 prophage predicted ferric trasnporter subunit membrane component of ABC superfamily	0.00321039408342
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YBR1		0.0032101689052
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K4W2H2	 Cyclic di GMP phosphodiesterase	0.0032099860209
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q92UW6	 Probable sulfoacetaldehyde acetyltransferase	0.00315712763973
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZRU8	 Transglutaminase like protein	0.00320858780077
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZK67	 Methylglyoxal synthase	0.00320806869098
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PN05	 AAA ATPase	0.00320750927074
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q3SKN6	 Ribosome recycling factor	0.00320521799595
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WUZ0	 ABC transporter related	0.00320503682554
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5M4V7	 Lipid multidrug protein type ABC exporter, ATP binding membrane spanning protein	0.00313712878913
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5M4V7	 Lipid multidrug protein type ABC exporter, ATP binding membrane spanning protein	6.64677864095e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58409		0.00320358318969
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27472		0.00320329806719
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37338	 HTH type transcriptional repressor CsiR	0.00320320456704
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28Q04	 Phosphate ABC transporter membrane protein 2, PhoT family	0.00320293867497
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MDB8	 Cobalamin synthase	0.0032028683056
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF96	 Toxin antitoxin biofilm protein TabA	0.00320284033129
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25527	 GABA permease	0.00220966095168
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P25527	 GABA permease	0.000899052847995
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0A084	 Peptide methionine sulfoxide reductase MsrA 1	0.00320211342379
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A5V938	 3,4 dihydroxy 2 butanone 4 phosphate synthase	0.00320187895229
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJU3	 Adhesin like protein	0.00320076450647
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P22714	 Galactose 1 phosphate uridylyltransferase	0.00320118505678
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X4P8	 Holo [acyl carrier protein] synthase	0.00320068846381
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25535	 2 octaprenylphenol hydroxylase	0.00320050007886
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFY0	 Sigma E factor regulatory protein RseB	0.00320036106647
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52614	 Flagellar hook length control protein	0.00319925433502
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFJ0	 Putative permease PerM	0.00319923200385
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CJ30	 Deoxyuridine 5 triphosphate nucleotidohydrolase	0.00319833606016
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABS6	 DNA primase	0.00319412032361
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8CY30	 Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.0031536838038
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNK2		0.00319584051849
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WRK9	 Probable cytosol aminopeptidase	0.00319557333068
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PWQ3	 Minor teichoic acid biosynthesis protein GgaB	0.00319557327968
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27051	 D 3 phosphoglycerate dehydrogenase	0.0031930952498
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVG9	 ABC Glycine betaine L proline transporter, inner membrane subunit	0.00319544783349
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IX13	 Transcriptional activator, adenine specific DNA methyltransferase	0.0031949661612
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77730		0.00319384939384
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5JBH1	 GDP L fucose synthase	0.0031933841601
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PXR3		0.0028853624741
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7N3N2	 ProP effector	0.00319308224312
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9SAK4	 Succinate semialdehyde dehydrogenase, mitochondrial	0.0031798741179
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5ZW64	 Flagellar P ring protein	0.00232754618206
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5ZW64	 Flagellar P ring protein	0.00086470106642
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33363	 Periplasmic beta glucosidase	0.00277273543165
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P33363	 Periplasmic beta glucosidase	0.000387324367487
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76027	 Oligopeptide transport ATP binding protein OppD	0.00319076179675
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27477	 UPF0284 protein MTH_1426	0.00319042857172
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42598		0.00318997439596
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKY3	 Probable phosphoglucosamine mutase	0.00318959921149
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T8I8	 Methylated DNA  protein cysteine S methyltransferase	0.00318937415877
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X7L9	 Tyrosine protein kinase wzc	0.00318502288916
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D3HAC9	 Single stranded DNA specific exonuclease	0.00314167132714
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D3HAC9	 Single stranded DNA specific exonuclease	4.59765790313e-05
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O28392	 DNA directed RNA polymerase subunit B	0.00318695708635
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76550		0.00318690865183
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77698		0.00318655186201
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZY5	 Transcription elongation factor GreB	0.00318470245018
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI00005C81F5	 hypothetical protein RSP_4057	0.000461025422612
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R6DSS9	 Dihydroorotate dehydrogenase	0.00318362466257
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76162		0.00318355545327
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7VQF3	 Chaperone protein ClpB	0.0031833492903
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KMR2		0.00300533254593
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P67291	 UPF0154 protein SA1178	0.00261138346712
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P67291	 UPF0154 protein SA1178	0.000570421285597
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2CCG1		0.00318165175384
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00562	 Bifunctional aspartokinase homoserine dehydrogenase 2	0.00318054607523
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QD86		0.00164474709909
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QD86		0.00153420785067
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2FS70	 30S ribosomal protein S7	0.00317824759277
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P05704	 Methyl accepting chemotaxis protein III	0.00317692151765
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P33216	 Mannitol 2 dehydrogenase	0.00309248815581
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33591	 Nickel transport system permease protein NikB	0.00317665276099
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DS55		0.00311361997965
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76097		0.00317661605682
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJZ0	 LPS assembly protein LptD	0.00317483847556
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1PI08		0.00295047368796
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83II9	 Ascorbate specific permease IIC component UlaA	0.00317317405272
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K8EXK1		0.00317286010644
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32690		0.00317270019569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76630	 Inner membrane protein YgaZ	0.00317253518153
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76585		0.0031720447246
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DYR5	 ATP dependent DNA helicase	0.00317196106804
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKK4		0.00258129656292
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G9A888	 Multidrug resistance protein, AcrB family	0.00317061894034
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1DQS7	 DNA gyrase subunit B	0.00316898751507
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HS30		0.0017710826003
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HS30		0.00139784539425
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31122	 Sugar efflux transporter	0.00316796502206
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30871	 Inorganic triphosphatase	0.00316775344481
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46911		0.00316569503798
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2YQ27	 Xanthine phosphoribosyltransferase	0.0031647049792
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9WEG0	 Permease of the drug metabolite transporter  superfamily	0.00316433757888
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E189		0.0031638667975
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83RK8		0.00316299725314
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0BPU7	 Protoheme IX farnesyltransferase	0.00315199354893
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0A4I5	 Sensor protein CiaH	0.0031616075898
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9N1I0	 Peptidase E	0.0031612853116
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WPF0		0.0031605949073
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q985A5	 GTPase Era	0.00316039320832
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27250	 Aldehyde reductase Ahr	0.00301754022184
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P27250	 Aldehyde reductase Ahr	0.000142605321397
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K7VU62	 Cystathionine beta lyase	0.0027591023758
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K7VU62	 Cystathionine beta lyase	0.000400616918923
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0M0D8	 30S ribosomal protein S18	0.00167754950111
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0M0D8	 30S ribosomal protein S18	0.00148098107247
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WVT7	 Lytic transglycosylase, catalytic	0.0029998362486
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFP5		0.00315794045586
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00909	 Tryptophan biosynthesis protein TrpCF	0.00313878912707
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8VHA5	 Exodeoxyribonuclease III	0.00315718733684
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5QVL2		0.00302249551321
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V0C7	 Endoribonuclease YbeY	0.00315514273597
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKQ3		0.00315514273597
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLZ7		0.00315514273597
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77610	 L asparagine permease	0.00315504880659
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P22098	 Tryptophan biosynthesis protein TrpCF	0.00315052272131
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6ERK3	 L allo threonine aldolase	0.00315382042019
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7FGD3	 Glucokinase	0.00315374481903
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77293	 Bactoprenol glucosyl transferase homolog from prophage CPS 53	0.00312233442679
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5XDZ5		0.00315341675308
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A2J2	 High affinity branched chain amino acid transport system permease protein LivH	0.00315243745485
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CP54	 ABC transporter membrane spanning permease, arginine histidine transport, putative	0.00299661596227
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A3CP54	 ABC transporter membrane spanning permease, arginine histidine transport, putative	0.000155809517821
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P07021	 Putative lipoprotein YfiB	0.00315234429153
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTS5	 Animal heme peroxidase	0.00315193129632
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69740	 Hydrogenase 1 small chain	0.00297404527281
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31961	 Phosphogluconate dehydratase	0.00182531550354
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P31961	 Phosphogluconate dehydratase	0.000686407698619
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P31961	 Phosphogluconate dehydratase	0.000550521419806
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P31961	 Phosphogluconate dehydratase	5.71713293013e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39409		0.0031500047544
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76499		0.00314979668348
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L6P508	 DNA topoisomerase IV subunit A	0.00314971223724
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P27675	 Glutamine transport ATP binding protein GlnQ	0.00314892969401
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3I295	 Peptidase M20	0.00314886099222
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8D5J3	 Alkaline phosphatase	0.00314717496162
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P09549	 Protein DedD	0.00314627194485
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR61	 Lipoprotein, putative	0.00314621746782
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVR4		0.00166615270775
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TCC4	 Exodeoxyribonuclease 7 large subunit	0.00314199447815
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F9XXP5	 Transporter, Sodium bile acid symporter family, macrolide resistance protein	0.0031442797976
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76197	 Inner membrane transport protein YdiM	0.00314417685783
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1JNH2	 UPF0283 membrane protein YE2117	0.00314343319015
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0AK23		0.00314179801282
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33135	 Flagellar biosynthetic protein FliR	0.00314176834067
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRW3		0.00314164544463
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FJZ8	 Anaerobic C4 dicarboxylate transporter DcuC	0.00313998898259
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77306	 Inner membrane protein YqiK	0.00313998294968
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A1R7	 DNA binding protein HU alpha	0.00313992989732
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8FP74	 Methionyl tRNA formyltransferase	0.00313470358573
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q03SV2	 Ribose 5 phosphate isomerase A	0.00313945729604
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E0ZS30	 Beta geo	0.00313925332806
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F7QQI7	 N acetylneuraminate synthase	0.00313886278539
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADM9		0.00313784707725
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AG94		0.00234801319886
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P29848	 Cysteine synthase B	0.00312681812997
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9SFA8		0.00313626310326
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27278	 Trifunctional NAD biosynthesis regulator protein NadR	0.003135875584
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P54745	 Heat responsive suppressor HrsA	0.00313556713831
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27880	 Indolepyruvate oxidoreductase subunit IorA	0.00313545349247
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFI5	 D alanyl D alanine endopeptidase	0.00313543621316
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45564		0.00313532194808
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q56066	 Molybdopterin molybdenumtransferase	0.00312376975345
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VKL4	 Cbb3 type cytochrome c oxidase subunit CcoP	0.00313511658445
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q168Q1	 Integral membrane protein, putative	0.00313463283829
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39434	 Soluble lytic murein transglycosylase	0.00313459051716
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4ZRY7		0.00302503698926
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZRY7		0.000109033010313
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z481	 Competence protein ComGD	0.00313403981584
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZ70	 Methanogenesis marker protein 17	0.00313361506218
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q9HNI0	 Thermosome subunit beta	0.00313287687691
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q9CE42	 Peptide methionine sulfoxide reductase MsrA 2	0.00313189149092
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB92	 Phospho 2 dehydro 3 deoxyheptonate aldolase, Phe sensitive	0.00311374466613
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39343	 HTH type transcriptional regulator IdnR	0.00313069573114
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27719		0.0031306610119
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PTK0		0.00313026342776
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39368		0.0031300514684
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7XFL7		0.00312962083952
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76547		0.00294074364406
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25534	 2 octaprenyl 6 methoxyphenol hydroxylase	0.00311472315541
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D4LWG1	 ATPase components of various ABC type transport systems, contain duplicated ATPase	0.0031268280271
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S4Z2	 Two component response regulator	0.00312649714226
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76117		0.00312562097661
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q92BC5	 Probable thiol peroxidase	0.00312554961736
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMV8	 Sugar transferase, WcaJ	0.00312535681985
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AFH0	 Polymorphic outer membrane protein repeat  (Fragment)	0.00309831590357
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P54036	 30S ribosomal protein S17P	0.00312358250729
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F752	 Crotonobetainyl CoA dehydrogenase	0.00304538890237
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1Z1Y2	 Ureidoglycolate lyase	0.00310465527797
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A2E0	 Nitrogen regulation protein NR	0.00304336436612
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6CZ33	 sn glycerol 3 phosphate transport system permease protein UgpE	0.00312103235093
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZB3	 MatE efflux family protein	0.00312093671976
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNL3	 Adhesin like protein	0.00311964936867
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R5FRB0	 Glutamine amidotransferase of anthranilate synthase or aminodeoxychorismate synthase	0.00311934916806
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H5SY94	 ABC transporter ATP binding protein	0.00311930119269
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37635		0.00311879210118
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83P86	 Multidrug resistance protein MdtN	0.00311716224859
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFN1	 Predicted peptidase	0.00311668301774
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q56200	 UPF0045 protein in glkA 3region	0.00183716346247
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q56200	 UPF0045 protein in glkA 3region	0.00127928118736
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P06612	 DNA topoisomerase 1	0.00175808238609
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P06612	 DNA topoisomerase 1	0.00131716806448
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P06612	 DNA topoisomerase 1	3.83312708965e-05
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E3L7	 Ribonuclease III Rnc	0.00311511446785
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31806	 Bifunctional NADH hydrate repair enzyme Nnr	0.00311497246743
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP00	 Methenyltetrahydromethanopterin cyclohydrolase	0.00311480464285
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WZ51	 Lyso ornithine lipid acyltransferase	0.00311389028848
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03Z27	 Methionine import ATP binding protein MetN	0.00311386350267
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VAL6	 Methyltransferase	0.00311374659085
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZRX6	 Uronate isomerase	0.00309951839592
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P57936	 Triosephosphate isomerase	0.00311179649902
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q15RL2	 Electron transport complex subunit D	0.00311139918178
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U152		0.00311056682282
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMG5	 Adhesin like protein	0.00306589102687
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0L2H6		0.00270937398459
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0JC87		0.00310904155471
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P61653	 2 dehydro 3 deoxyphosphooctonate aldolase	0.00233243154499
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P61653	 2 dehydro 3 deoxyphosphooctonate aldolase	0.000493500643506
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P61653	 2 dehydro 3 deoxyphosphooctonate aldolase	0.000281850321045
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36672	 PTS system trehalose specific EIIBC component	0.00242482042439
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P36672	 PTS system trehalose specific EIIBC component	0.000682961830955
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0MXI6	 Adenosylmethionine 8 amino 7 oxononanoate transaminase	0.00310708649084
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP16	 Conserved hypothetical membrane protein Msm_1739	0.00310684646991
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P19642	 PTS system maltose  and glucose specific EIICB component	0.00310663821334
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39176	 Probable L,D transpeptidase ErfK SrfK	0.00309076105414
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4YX49	 Cystathionine beta lyase	0.00310596311758
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39325	 ABC transporter periplasmic binding protein YtfQ	0.00310453664141
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNH1	 Lipopolysaccharide cholinephosphotransferase	0.00310451793849
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P76085	 Phenylacetate coenzyme A ligase	0.00253421661312
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76085	 Phenylacetate coenzyme A ligase	0.000348659222697
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P76085	 Phenylacetate coenzyme A ligase	0.000190653517635
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFV5		0.00310400260439
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNW1	 Phage related minor tail protein	0.00310344753406
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B5Y0Y6	 Queuine tRNA ribosyltransferase	0.00174140780902
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5Y0Y6	 Queuine tRNA ribosyltransferase	0.00135737308854
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U0J6		0.00310251922018
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77148		0.00303904701579
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76446	 Protein Rtn	0.00310206405999
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7DGD4	 Signal transduction histidine kinase	0.0031019067336
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J3B7	 ABC transporter, fused ATPase and inner membrane subunits	0.00310189669363
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1TJX6	 Respiratory nitrate reductase alpha subunit apoprotein	0.00310175536074
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJQ2		0.00310099395708
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CQV0	 33 kDa chaperonin	0.00310055518721
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FDB4	 Toxin YhaV	0.00310036573555
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36682		0.00308498114903
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P06988	 Histidinol dehydrogenase	0.00309820087591
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77503		0.00309797034822
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52616	 Phase 2 flagellin	0.00309694927255
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15038	 Helicase IV	0.00309604655361
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5F8E8	 Chaperone protein HscA homolog	0.00304134366087
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q5F8E8	 Chaperone protein HscA homolog	5.46936985633e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7UFR8	 Probable 4 deoxy 4 formamido L arabinose phosphoundecaprenol deformylase ArnD	0.00309531582506
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5ITH6		0.00309513170475
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULF5	 Possible glycosyltransferase	0.00309431129087
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52052		0.00309407178861
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TY12	 Predicted HD superfamily hydrolase	0.00309369190128
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RQI3	 Immunoglobulin G binding protein A	0.00309357910708
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SE78		0.00249936797124
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SE78		0.000593909220891
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P12995	 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.00309277307214
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SRB4		0.00309275390478
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZD8	 Anaerobic ribonucleoside triphosphate reductase NrdD	0.00309252067107
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI000375C690	 hypothetical protein	0.00309230047798
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G8E7	 Putative fluoride ion transporter CrcB 2	0.00309221737379
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64625		0.00309180513915
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77735		0.00309015553247
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MKJ4		0.00307032384496
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15047	 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase	0.00306717320362
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E128		0.00308754053219
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23905	 D galactose binding periplasmic protein	0.00308721548364
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABD2		0.00268969637913
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P0ABD2		0.000397339939164
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8H0W5	 Cbb3 type cytochrome c oxidase subunit I	0.00308636688712
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_X2HF59	 Membrane protein	0.0030863083251
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26654	 Probable ribosome biogenesis protein MTH_554	0.00308604178302
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C1V1	 NADH pyrophosphatase	0.0030858966339
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SVP2	 Signal peptidase type IV	0.0030857030283
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28638	 DNA adenine methyltransferase YhdJ	0.00308563526214
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACN9	 HTH type transcriptional repressor CytR	0.00308450035733
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64573		0.00308437405251
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0C8J9	 D tagatose 1,6 bisphosphate aldolase subunit GatZ	0.00306031767827
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3MLM0	 Deoxycytidine triphosphate deaminase	0.0029058812081
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3MLM0	 Deoxycytidine triphosphate deaminase	0.000177754520338
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F5V3	 Nitrate reductase, alpha subunit	0.00308326531169
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75818		0.00308286037841
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37766	 Acetate CoA transferase YdiF	0.00308203679543
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O28869		0.00308193256809
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AA79	 Hexuronate transporter	0.00308180617168
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A952	 Spermidine N acetyltransferase	0.0030817242339
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J2Z8	 RNA polymerase sigma factor	0.00308135476356
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN02	 Predicted RNA binding protein	0.0030811509012
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76086	 Transcriptional repressor PaaX	0.00308105043131
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5E212	 Soluble pyridine nucleotide transhydrogenase	0.00236283463007
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5E212	 Soluble pyridine nucleotide transhydrogenase	0.000638745251797
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q5E212	 Soluble pyridine nucleotide transhydrogenase	7.83278258767e-05
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3VA72	 PF04394 family protein	0.00235228969977
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P05827	 HTH type transcriptional regulator IlvY	0.00307940592854
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37313	 Dipeptide transport ATP binding protein DppF	0.00250800033948
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P37313	 Dipeptide transport ATP binding protein DppF	0.000570207928434
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSP3		0.00307771395266
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L8P5	 PTS system sucrose specific IIBC component	0.00307725175514
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6D3Q6	 Oxoglutarate dehydrogenase , E1 component	0.00307645201216
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNF2		0.00307607480034
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7WYX0	 Putative ribosomal protein L7Ae like	0.00167268382302
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7WYX0	 Putative ribosomal protein L7Ae like	0.00140228566043
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77131		0.00299906889304
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0ZM41		0.00307486633913
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CNH3	 Repressor protein	0.00200028711822
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNH3	 Repressor protein	0.00107448110237
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2TGR6	flavin oxidoreductase NADH oxidase	0.00307466734313
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27113	 2 oxoglutarate synthase subunit KorB	0.00307452244261
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2Y7L8	 Chorismate synthase	0.00173247469356
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2Y7L8	 Chorismate synthase	0.000704653047047
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q2Y7L8	 Chorismate synthase	0.000402250882647
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2Y7L8	 Chorismate synthase	0.000228539738879
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77704		0.00307367382771
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB86	 Thiamine biosynthesis lipoprotein ApbE	0.00307317718889
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FF30	 Flavohemoprotein	0.00307271581337
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X7W7	 Catecholate siderophore receptor Fiu	0.00307252951378
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T339	 General secretion pathway protein H	0.00307073804941
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7VKS0	 Translation initiation factor IF 3	0.00307047353604
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46891	 Putative hydroxypyruvate isomerase YgbM	0.00306944137117
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46866	 Probable transcriptional regulator YgiV	0.00306897196752
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACS8	 HTH type transcriptional regulator RpiR	0.00306816176123
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76500		0.00306786726997
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABM3	 Heme exporter protein C	0.00306778740412
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZTZ7	 Putative ECA polymerase	0.00306582600457
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q219I2	 Peptidase M16 like	0.00306545250778
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8I9B9	 Enoyl [acyl carrier protein] reductase [NADH]	0.00306482280873
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKX9	 Pyruvate formate lyase activating enzyme, PflA	0.00306406534207
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S0ZBX9	 FhuE receptor	0.00306261871181
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76237	 Putative diguanylate cyclase YeaJ	0.00304491270447
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NE10	 Dihydroxy acid dehydratase	0.00299981717344
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZSB8	 N acetylneuraminate lyase	0.00306123407175
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SLR7		0.00306121379113
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S4X915	 Beta hemolysin	0.00222444766408
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZQY1	 D phenylhydantoinase	0.00306051405111
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76223	 Protein YnjB	0.00303604475146
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32057	 Putative colanic acid biosynthesis glycosyl transferase WcaI	0.00306025879908
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GJZ3	 Putative fluoride ion transporter CrcB	0.00306021483352
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2MVD0		0.00305997390472
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5QTB3		0.00305953235003
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R2L0		0.00305953235003
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P07770	 Benzoate 1,2 dioxygenase subunit beta	0.00305953235003
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28247		0.00305953235003
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X9B6	 Biotin carboxylase	0.00304623080989
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SRS1		0.00305866150708
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75835	 Inner membrane transporter YcaM	0.00305789508152
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T6X2	 Protein BglB	0.00305725140528
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D3EYX3	 Glyoxalase bleomycin resistance protein dioxygenase	0.00305643215798
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NI56	 tRNA  N(2)) dimethyltransferase	0.00305601008789
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SPL2		0.00305527923493
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49W44		0.00299332511708
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9I0J7	 NADH quinone oxidoreductase subunit F	0.0022508882494
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I0J7	 NADH quinone oxidoreductase subunit F	0.000582077720039
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9I0J7	 NADH quinone oxidoreductase subunit F	0.000221716788257
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2G026	 Protein translocase subunit SecG	0.00305140591276
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWD4	 Periplasmic sensor diguanylate cyclase phosphodiesterase	0.00296054993884
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q11IP6	 Phosphate transporter	0.00305009302832
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKX3		0.00304913553248
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SQR5		0.00304910359502
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76553	 Ethanolamine utilization protein EutG	0.00304870006451
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GE51	 Cytochrome c oxidase assembly protein CtaG	0.00304847446393
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P67129	 UPF0053 inner membrane protein YgdQ	0.00304757416066
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5Y1K1	 Elongation factor Ts	0.00199627892722
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B5Y1K1	 Elongation factor Ts	0.000815427458339
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B5Y1K1	 Elongation factor Ts	0.00023548659242
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SMD3		0.00304688103454
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZR14	 Aminomethyltransferase	0.00278946968432
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A7ZR14	 Aminomethyltransferase	0.000189356502509
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7IP37		0.0030361870543
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A5GUA9	 Light independent protochlorophyllide reductase subunit B	0.00279927951465
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YM38		0.00304467614182
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HN47		0.00302322645489
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21893	 Single stranded DNA specific exonuclease RecJ	0.00304353467246
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25798	 Flagellar M ring protein	0.00304329088194
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7F1S3		0.00303330777127
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ECQ4	 50S ribosomal protein L3 glutamine methyltransferase	0.00266841551139
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8ECQ4	 50S ribosomal protein L3 glutamine methyltransferase	0.000331999031964
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNW5		0.00304212968224
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30851	 Ribonuclease R	0.00303908395744
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAA7	 Protein WzxE	0.00304098319583
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1R618		0.00291436496334
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9VYZ6		0.00303884955033
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABQ3	 2 hydroxy 3 oxopropionate reductase	0.00299723599369
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN65	 MEMO1 family protein Msm_1438	0.00303744139369
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PUB1		0.00303727464839
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C3X110		0.00303711990817
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AD15	 Sensor histidine kinase YehU	0.00303673341518
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL08		0.00303551072224
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q03638	 Glutamine dependent NAD synthetase	0.00303473560979
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X693	 2 methylcitrate dehydratase	0.00273202538052
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8X693	 2 methylcitrate dehydratase	0.000302106680487
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33129	 Outer membrane usher protein HtrE	0.00303236356342
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75870	 Inner membrane protein YccS	0.00303220031734
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q92CE4	 Glutamate 5 kinase	0.00290361029752
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q92CE4	 Glutamate 5 kinase	0.000127641678324
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HND0	 Putative fluoride ion transporter CrcB 2	0.00303061167881
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KPE3	 Dephospho CoA kinase	0.00302859422483
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM88	 Adhesin like protein	0.00301980055753
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNW8	 Putative PeiW related protein 	0.00302736029165
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABQ1	 Coenzyme A biosynthesis bifunctional protein CoaBC	0.00302275763535
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39364	 Putative sgc region protein SgcQ	0.00302682248225
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAT4	 Miniconductance mechanosensitive channel YbdG	0.00302622994403
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFB0	 Nickel transport system permease protein NikC	0.00302513934816
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1I490	 Curved DNA binding protein	0.00302507653426
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZUI3	 HTH type transcriptional repressor FabR	0.00302439678469
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33222	 Putative acid  amine ligase YjfC	0.00302405793744
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SL02	 Heavy metal translocating P type ATPase	0.00302387072136
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PVC4	 O linked GlcNAc transferase	0.00302360048825
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XCU1	 UDP 2,3 diacylglucosamine hydrolase	0.00302354112601
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A031SXK0	 Ferrienterobactin receptor	0.00302260256281
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q667I7	 Bifunctional uridylyltransferase uridylyl removing enzyme	0.00302235555293
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q50566	 DNA ligase	0.00302223520767
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJS4	 Ribonuclease P protein component 3	0.00302206826913
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5M614	 Riboflavin transporter RibU	0.00302198039844
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q97Q34	 Phosphate import ATP binding protein PstB 2	0.00302182262131
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G0IAR7	 Multidrug resistance protein MdtG	0.00302181175606
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SLQ2		0.00302175887648
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEZ0	 Multidrug transporter MdfA	0.00302135995108
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RT76		0.003021233483
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RNM4		0.00273085408669
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7M6Q9	 Putative ion transport protein YfeO	0.00302048824878
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U5PDK7	 Transcriptional regulator	0.00300485058997
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39405	 Ferric iron reductase protein FhuF	0.00301911452377
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39163	 Cation transport protein ChaC	0.00301880392313
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5E8X7	 3 ketoacyl CoA thiolase	0.00232655686401
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5E8X7	 3 ketoacyl CoA thiolase	0.000567362285432
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q5E8X7	 3 ketoacyl CoA thiolase	0.000119626264869
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KUY6	 Alanine racemase 1	0.00301854987973
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37626		0.00301800893754
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1LT82	 D alanine  D alanine ligase	0.00301797905452
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW56		0.00301678362858
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT51		0.00301603774003
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0M1	 Oxidoreductase aldo keto reductase family	0.00301601638419
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76219	 TVP38 TMEM64 family membrane protein YdjX	0.00301596389101
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76272		0.00301526049411
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7N8S4	 Amino acid acetyltransferase	0.00299740537725
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_C8VYT7	 dTDP 4 dehydrorhamnose reductase	0.00301506617848
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52636	 Putative electron transport protein YccM	0.00301505435925
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0DMC6	 Sensor histidine kinase RcsC	0.00301491140914
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27089	 Type 2 DNA topoisomerase 6 subunit A	0.00301400862722
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75967		0.00301350036569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAL2	 Ferredoxin type protein NapF	0.00301330502957
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0AP01		0.00301328332384
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16681	 Protein PhnB	0.00301301448308
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P70787	 Probable tartrate dehydrogenase decarboxylase TtuC	0.00295942484983
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39165		0.00301108285293
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEY4	 Nucleoside triphosphate pyrophosphohydrolase	0.00301046929057
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAY8		0.00301023087103
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30852	 Protein smf	0.00300957977055
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K4VCY9	 Outer membrane specific lipoprotein transporter subunit LolE	0.00300224473675
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1SVN9	 D erythrose 4 phosphate dehydrogenase	0.00180887874137
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1SVN9	 D erythrose 4 phosphate dehydrogenase	0.00114497258553
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEJ3	 Isochorismate synthase EntC	0.00300699159805
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW55		0.00300690988857
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMH6		0.00300643120187
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KN06		0.000999649183674
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJV9	 Adhesin like protein	0.00299626645517
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABH3	 Cell division protein FtsA	0.00300524557235
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF77		0.00300470690007
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R7A629	 Cell division ATP binding protein FtsE	0.00300394480332
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKA0	 Glycosyltransferase	0.00300337169282
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMR2		0.00300285329982
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24205	 Lipid A biosynthesis 2 (lauroyl) lipid IVA acyltransferase	0.00300275936498
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69229	 Transcriptional regulatory protein BaeR	0.003002732201
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8Q0F9	 Macro domain containing protein MM_0177	0.00299382268574
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1AD62	 Ecotin	0.00293232743364
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGH1	 Inner membrane transport permease YhhJ	0.00300156468587
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77381		0.0030014186679
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B8ZNP1	 Pantothenate kinase	0.00284141294209
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B8ZNP1	 Pantothenate kinase	0.000158749320046
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFQ0	 Inner membrane transport permease YbhR	0.00299957220234
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FBT8	 Phosphate specific transport system accessory protein PhoU	0.00299937579692
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQV6		0.00299929674101
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5X5K7	 TetR family transcriptional regulator	0.00299828630207
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SPB0	 7 carboxy 7 deazaguanine synthase	0.00299811114677
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23620	 Phosphate regulon transcriptional regulatory protein PhoB	0.00239010787396
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P23620	 Phosphate regulon transcriptional regulatory protein PhoB	0.000461025422612
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P23620	 Phosphate regulon transcriptional regulatory protein PhoB	0.00014675082493
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P26608	 Flagellar protein FliS	0.00299773600847
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQY2		0.00299763443862
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SS39		0.00299700571088
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZRN4		0.00299658261998
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76462		0.00299645113979
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW11	 Transcriptional regulator, GntR family	0.00299606675556
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4KMH2	 Cysteine desulfurase	0.00299566883687
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1AZE4	 Nucleoside ABC transporter membrane protein	0.00299549213667
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F0TA01	 Archaeal glutamate synthase [NADPH]	0.00299542641967
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADS0	 LOG family protein YgdH	0.00216399577085
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0ADS0	 LOG family protein YgdH	0.000818388077065
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P66901	 Diaminopropionate ammonia lyase	0.00299538779309
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M3U6	 Two component sensor histidine kinase	0.00299522662527
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GGE3	 NADH dehydrogenase 	0.00299513228572
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KJC3	 CheW protein	0.00299389931062
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0J9	 Putative adenylate kinase	0.00299335139447
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q65WJ9	 2,3 diketo L gulonate reductase	0.00299308775591
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A270	 Exopolyphosphatase	0.00299303345263
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV73		0.00273822524192
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76149	 Succinate semialdehyde dehydrogenase [NAD+] Sad	0.00299244298463
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75966	 Ribosomal large subunit pseudouridine synthase E	0.00299244171713
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76104		0.00299163508693
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P38035	 Transcriptional regulatory protein RtcR	0.00269226915596
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P38035	 Transcriptional regulatory protein RtcR	0.000298618073442
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P06134	 Bifunctional transcriptional activator DNA repair enzyme Ada	0.00299086509436
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3STL6		0.00299067443458
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6IRZ1	 Phospholipase D	0.00298922291438
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LHQ6	 Protein TolB	0.00298903369739
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P41655		0.002988959825
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P34209	 Protein YdcF	0.00298878253827
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AG04	 3 octaprenyl 4 hydroxybenzoate carboxy lyase partner protein	0.0029886925671
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ62		0.00298846695747
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PWN2		0.00298794590986
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24230	 ATP dependent DNA helicase RecG	0.00298721490239
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76206		0.00298675856415
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76909		0.00298637650735
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8P682	 Ribosomal large subunit pseudouridine synthase D	0.00263885125654
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8P682	 Ribosomal large subunit pseudouridine synthase D	0.000319533563707
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UND9	 Lipopolysaccharide cholinephosphotransferase, LicD family	0.0029861733199
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULX3	 Adhesin like protein	0.00298560132184
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U2T3		0.00298530805922
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2KVV8	 Glutaminase	0.00298508319056
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DU77		0.0029849868147
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89LH6	 UPF0271 protein blr4568	0.00298441204161
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26490	 Conserved protein	0.00298417020577
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44432	 Enoyl [acyl carrier protein] reductase [NADH] FabI	0.00296649478695
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6STT7		0.00285720389828
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I6STT7		0.000126522014477
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75824	 NADH oxidoreductase hcr	0.0029211995899
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AA51		0.00298300941335
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76418		0.00298276990537
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P14175	 Glycine betaine L proline transport ATP binding protein ProV	0.00298233117538
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5F2P1	 3 ketoacyl CoA thiolase	0.00298161535509
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFS5	 AI 2 transport protein TqsA	0.00298158430472
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q89UE3	 Malate synthase G	0.00219512918759
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q89UE3	 Malate synthase G	0.000785780949395
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F6D239		0.00298062545892
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q52986	 Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnI	0.00257978631596
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q52986	 Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnI	0.000259113038117
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45763	 Putative type II secretion system protein L	0.00297929031727
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76518		0.00297874730053
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P09127	 Putative uroporphyrinogen III C methyltransferase	0.0029785948237
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76613		0.00297844416684
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFZ1	 Digeranylgeranylglycerophospholipid reductase 1	0.00297823184556
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULR0	 Cobalamin synthase	0.00297815972548
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A058T111	 Glycerol 3 phosphate acyltransferase	0.0029775514952
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAZ6	 Replication associated recombination protein A	0.00297692196135
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37772	 Inner membrane ABC transporter permease protein YjfF	0.0029763516706
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1PD38	 Glutamine binding periplasmic protein	0.00297574992378
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7E6J0	 Endonuclease	0.00297557974594
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C0MGC7	 Arginine repressor	0.00297547008364
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1VDD6	 Protein RecA	0.00282863880379
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B1VDD6	 Protein RecA	0.00014675082493
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TN35	 Sorbose PTS system, IIB component	0.00297537605573
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK88	 Adhesin like protein	0.00297529106527
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L350	 Transposase for IS1272	0.00297516312481
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46809		0.00297384003541
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PXB7		0.00297352080914
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GGX3	 Extracellular matrix binding protein ebh	0.00297329243444
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7DCE8	 Anticodon nuclease	0.00297304499642
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76536	 Probable deferrochelatase peroxidase YfeX	0.00297258421398
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D9PXN6	 Predicted FMN binding protein	0.00297215703575
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27710	 Phosphosulfolactate synthase	0.00297136617035
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27661	 DNA topoisomerase 1	0.00297133928089
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AG12	 Protein UmuD	0.00297089336109
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P21627	 High affinity branched chain amino acid transport system permease protein BraD	0.00297086052965
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6E7F4	 dTDP glucose 4,6 dehydratase	0.00296149857884
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58210		0.00296988476286
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31460	 Galactonate operon transcriptional repressor	0.00296974958809
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5NQ45	 50S ribosomal protein L15	0.00296932465958
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6IR83		0.0029693134954
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2JDA2	 Replication protein	0.00296921648449
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQ43	 Fatty acid beta hydroxylase	0.00296913821662
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77455	 Bifunctional protein PaaZ	0.00291719718173
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P77455	 Bifunctional protein PaaZ	5.15915010509e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5LZD2	 Acetyltransferase	0.00296861814888
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WTE8		0.00154684158062
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76403		0.00284662974224
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P76403		0.000119768170286
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NED1	 EhbF	0.00296630565779
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F3TY15	 Serine aspartate repeat protein F	0.00293563579351
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F3TY15	 Serine aspartate repeat protein F	2.95563722301e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P12282	 Molybdopterin synthase adenylyltransferase	0.00294794633114
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABU8	 Biopolymer transport protein ExbB	0.00296481771417
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI0003C7D7D4	 5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase, partial	0.00295434737968
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P50199	 Gluconate 5 dehydrogenase	0.00296389944125
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2G506	 ATM1 type heavy metal exporter	0.00296376046724
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W0PEX2	 Dihydrodipicolinate synthase	0.00296369457879
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47702		0.00296354114148
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP17	 O linked GlcNAc transferase	0.00296332057113
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27859	 Ribonuclease Z	0.00296238518132
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNW6	 Putative collagen like protein B	0.00296180546717
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_M1P548	 Dipeptide binding ABC transporter, periplasmic substrate binding component	0.00296072974006
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P33014	 UPF0033 protein YeeD	0.00296029213952
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q87NA5	 Probable intracellular septation protein A	0.00295966798384
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P18392	 Sensor protein RstB	0.00295948161583
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UXM9		0.00295851179886
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IXH2	 Fumarase alpha subunit	0.00295696551049
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V1QTW1		0.00295675235078
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7L8J6	 2  3 dephosphocoenzyme A synthase	0.00295643279975
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64431		0.00295638830766
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RK06	 Putative amino acid ABC transporter permease peptidyl dipeptidase fusion protein	0.00295620312654
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q652A8	 UDP glucose 4 epimerase 3	0.0027876149099
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q652A8	 UDP glucose 4 epimerase 3	0.00016771522849
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C5BQ62	 50S ribosomal protein L4	0.00156639101697
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5BQ62	 50S ribosomal protein L4	0.00138881206604
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PGH2		0.00293688075657
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y9QME3		0.00263093826367
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16685	 Alpha D ribose 1 methylphosphonate 5 triphosphate synthase subunit PhnG	0.00295404561033
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76938	 Elongation factor P hydroxylase	0.00295277141104
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJJ3	 Predicted helicase	0.00295240760526
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K5T3		0.00295136919038
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MGN9	 Cyclic pyranopterin monophosphate synthase	0.00292644331602
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9A5A9	 D alanine  D alanine ligase	0.00295076568905
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77416	 Hydrogenase 4 component D	0.00295074569438
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8I2E1	 Ribonuclease R	0.00295001184839
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57083	 HTH type transcriptional regulator PerR	0.00294996035532
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9X5	 Rod shape determining protein MreB	0.00294969963618
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N2H0		0.00294869764278
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75892	 Putative pyrimidine permease RutG	0.00294865019062
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XAS8	 Ferrous iron permease EfeU	0.00294828411975
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4WDR5	 Anaerobic nitric oxide reductase transcription regulator NorR	0.00293575840772
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B5YDT2	 D tyrosyl tRNA deacylase	0.00294615908682
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N3X1		0.00294457630745
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08997	 Malate synthase A	0.00286237658675
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q12F86	 Peptide chain release factor 1	0.00294356118694
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PXT2		0.00294287229477
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O07020	 Lactate utilization protein A	0.0029428484702
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NEW4	 Alanine  tRNA ligase	0.00294246729874
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P60543	 Phosphoribosyl AMP cyclohydrolase	0.00294232674233
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XAR3	 Poly beta 1,6 N acetyl D glucosamine N deacetylase	0.00294224501658
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I1ZLL6	 Glutamine amidotransferase	0.00294205309421
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D4LGK2	 Phosphate starvation inducible protein PhoH, predicted ATPase	0.00294195580916
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O31611	 GTP pyrophosphokinase YjbM	0.00294114003652
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6DHE2	 UDP N acetyl D mannosaminuronic acid transferase	0.00292224764458
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN83		0.00287130648014
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2GME6	 Uro adherence factor A	0.00294006741347
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58690	 Putative fumarate hydratase subunit alpha	0.00272666240693
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEW8	 Inosine guanosine kinase	0.00293963084216
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADK7	 Protein YibA	0.0029393751155
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LPC1	 Adenosine deaminase	0.00293906278783
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5SSZ9	 ATP dependent DNA ligase	0.00293883240832
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSE0		0.00282147771283
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F3YPM3	 Prephenate dehydratase	0.00293791727167
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27679	 Protein pelota homolog	0.0029378912847
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNM1	poly glycerophosphotransferase, GT2 family	0.00293776452354
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SU32		0.00293689517453
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P73426	 2 C methyl D erythritol 2,4 cyclodiphosphate synthase	0.0029351951906
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24211	 Putative protein RhsE	0.0029344414464
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39270	 Inner membrane protein YjdF	0.00293379367
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E4P0	 Valine  tRNA ligase	0.00293369419828
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP87	 N acetyltransferase, GNAT family	0.00293316125979
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27294	 Protein InaA	0.0029331210475
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1EDI8	 Error prone, lesion bypass DNA polymerase V 	0.00293192834455
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEU2	 Histidine binding periplasmic protein	0.0029315559875
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69743	 Hydrogenase 2 small chain	0.0029315113137
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D3HD08		0.00293072860321
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R6EWI0	 TIGR00730 family protein	0.00293039104859
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4XH87		0.00293029817892
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A020WTM6	 6 phospho beta galactosidase	0.00293012769318
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P17411	 6 phospho beta glucosidase	0.00292926539282
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAF0	 Probable cadaverine lysine antiporter	0.00292918789614
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CU26		0.00292904859571
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7ZB43		0.0029283724318
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP30		0.00292828545222
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQU3		0.00292770442971
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6Q6S9	 Transposase	0.00292755986295
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C4ZZR6	 Phosphoadenosine phosphosulfate reductase	0.00292678054576
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WV17		0.0028853956444
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28TK3	 Hydroxyacylglutathione hydrolase	0.00292665155068
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15006	 Protein McrC	0.00292565064401
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32670	 Multiphosphoryl transfer protein 2	0.00292562282496
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1WIS2	 Intracellular growth attenuator protein igaA	0.00292561618079
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O58855	 Orotate phosphoribosyltransferase	0.0029252887559
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3YFK0		0.00292494542717
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77694	 Fimbria adhesin EcpD	0.00292439808668
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D4GIS8	 RbsC	0.00292337626201
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75957	 Lipoprotein releasing system ATP binding protein LolD	0.00251086151983
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P75957	 Lipoprotein releasing system ATP binding protein LolD	0.000403974017711
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HJ26	 Single stranded DNA binding protein 2	0.00292273207338
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TG48	 Aspartate  ammonia ligase	0.00281617905293
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A6TG48	 Aspartate  ammonia ligase	0.000105611472334
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75811	 HTH type transcriptional regulator RcdA	0.00292178990664
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AA55	 Protein QmcA	0.00292154239087
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B3GYL9	 Ribosomal protein L11 methyltransferase	0.00289804408868
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R5K4V5	 Indole 3 glycerol phosphate synthase	0.00292121797885
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27280	 Probable dihydroorotate dehydrogenase B ), electron transfer subunit	0.00292114073038
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3UJR5		0.00292071498319
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A012V5I1		0.00186208661896
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64610		0.00291877193348
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7FNV8	 Pimeloyl [acyl carrier protein] methyl ester esterase	0.0029176413626
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2TX82		0.00291674969745
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27389	 Diaminopimelate epimerase	0.00291198568453
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1WKV0	 Succinate dehydrogenase	0.00291574738867
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5Z994	 BioY family protein	0.002915397914
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46142		0.00291383713756
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5BUA3	 ABC transporter related protein	0.00291347813573
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9L646	 Anaerobic ribonucleoside triphosphate reductase	0.0029059573075
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SRZ0		0.00291256458369
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7CQE0	 tRNA threonylcarbamoyladenosine biosynthesis protein TsaB	0.00291200986061
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEZ1	 5,10 methylenetetrahydrofolate reductase	0.00285770034111
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4EW02	 Exoribonuclease 2	0.00291141271497
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D4FIU1		0.00291123841282
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SSY8		0.00291066648873
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G4RBE3	 Mannonate dehydratase	0.00290979575137
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J3Q2		0.00271916120892
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39362	 Protein SgcE	0.00290906974973
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL20	 ATPase involved in DNA repair, SbcC	0.00290839945937
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39384		0.00290838623235
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKC6	 2 methylcitrate dehydratase, MmgE PrpD family	0.00290836945683
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P60070	 Anti sigma B factor antagonist	0.00201150255409
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P60070	 Anti sigma B factor antagonist	0.00089651496544
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3F0C5		0.00284540019172
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y6XNC4		0.00290678271147
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76044		0.00283139956482
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U3QV92	 N acetyl anhydromuranmyl L alanine amidase	0.00290575630265
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P17994		0.00290565015376
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULS0		0.0029056430893
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E6K0A1	 GroES like protein	0.00290498466288
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75938	 Flagellar basal body rod protein FlgF	0.00290483151928
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26272	 Phosphoribosylaminoimidazole succinocarboxamide synthase	0.00290466518008
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B4V0		0.0029034739488
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08369	 Inner membrane protein CreD	0.00290041277381
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP39		0.00290004793995
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C3T922	 Membrane associated protein	0.00289926183942
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U3E4	 Histidine protein kinase	0.00289897522042
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RQH1	 GTPase HflX	0.0028984423392
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YEK4	 Transcriptional regulator, GntR family	0.00289831858175
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6W2Y7	 Monosaccharide transporting ATPase	0.00289727794148
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DYR0	 Molybdopterin biosynthesis protein MoeA1	0.0028970492528
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAN2	 Hydrogenase 2 operon protein HybE	0.00289601256262
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3VYK3	 Nuclear export factor GLE1 domain protein	0.00280457132087
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E4S6	 Methionine synthase MetE	0.00289546169988
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P57871	 Sugar fermentation stimulation protein homolog	0.00289507991188
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32719	 D allulose 6 phosphate 3 epimerase	0.00281184610741
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KPW2	 UDP 3 O acylglucosamine N acyltransferase	0.00289377982807
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRG7	 Extradiol ring cleavage dioxygenase, class III enzyme, subunit B	0.00289361964239
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKD0	 Putative HTH type transcriptional regulatory protein Msm_0453	0.0028933042571
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44518	 Signal recognition particle protein	0.0028932614044
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QZC7	 Citrate dependent iron transport, membrane bound protein	0.00289222905057
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XV86	 Membrane protein	0.00289198467833
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ82	 3 dehydroquinate synthase	0.00289184339564
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77216		0.00289183641279
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76458	 Acetate CoA transferase subunit alpha	0.00281498851124
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMV6		0.00128350704812
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN23	 Tungsten formylmethanofuran dehydrogenase, subunit E, FwdE	0.00289114455926
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P05050	 Alpha ketoglutarate dependent dioxygenase AlkB	0.00271012761414
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P29131	 Cell division protein FtsN	0.00289059972846
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5VY51	 AzlC family protein	0.00289056471787
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRZ6		0.00212695388973
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1IPQ9		0.00289013464959
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77129		0.0028815197658
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3JNN5	 Gamma glutamyl phosphate reductase	0.00288949493782
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44591	 Protein translocase subunit SecD	0.00288887789357
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_C7MNW3	 Acyl CoA synthetase  AMP acid ligase II	0.00288843127632
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IXI2		0.00278522788459
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A017IYW6	 Oxygen insensitive NADPH nitroreductase domain protein	0.00288790490254
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77156	 Inner membrane ABC transporter permease protein YdcU	0.00288705045369
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26778	 Exosome complex component Rrp42	0.00288527896262
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC29		0.00283530590933
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9ADN8		0.00288470193003
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HCR5		0.00288470193003
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KGW3		0.00288470193003
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M8DGK3		0.00288470193003
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PXM1		0.0028845082435
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F0KI44	 Aldehyde reductase	0.00288439125196
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9R9D5	 Lipopolysaccharide core heptosyltransferase RfaQ	0.00288439019614
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42910	 N acetylgalactosamine permease IIC component 1	0.0028843680621
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F0TCP3		0.00288402227553
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64636	 GMP IMP nucleotidase YrfG	0.00288299810788
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q9V076	 Ribonuclease J	0.0028817691093
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32696	 Phage shock protein G	0.00288132800965
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4VNY3	 Membrane protein	0.0027505702346
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4VNY3	 Membrane protein	0.000130613929561
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75713		0.0028811600235
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8AGY5	 Dihydrofolate reductase FolM	0.00288055086427
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1CBV8	 Phosphoenolpyruvate carboxylase	0.00288033630661
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FIB4		0.0028792370084
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJH5	 Predicted oxidoreductase, aldo keto reductase family	0.00287887360205
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45039	 Protein CysZ homolog	0.00287873894523
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WT79	 Proton translocating NADH quinone oxidoreductase, chain M	0.00287838128257
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9HCC0	 Methylcrotonoyl CoA carboxylase beta chain, mitochondrial	0.00287767235779
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45762	 Putative type II secretion system protein K	0.00287680011175
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q82SA8	 Glucans biosynthesis glucosyltransferase H	0.00216312722888
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q82SA8	 Glucans biosynthesis glucosyltransferase H	0.000713207098464
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77536		0.00287580481315
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P41443	 Putative type II secretion system protein H	0.00287567218411
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77258	 N ethylmaleimide reductase	0.00287566307112
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PS37	 Sulfotransferase	0.00287547270057
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77280		0.00287515853466
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E5ZSU8		0.00201929135102
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SV04		0.00287391342891
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A6USH1	 UPF0285 protein Mevan_1551	0.00287384071958
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5WII8	 Amino acid ABC transporter extracellular binding protein	0.00274900156546
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C5WII8	 Amino acid ABC transporter extracellular binding protein	0.000124493918067
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5V6A9	 1 deoxy D xylulose 5 phosphate synthase	0.00285455397376
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X7X9	 Probable ATP dependent helicase DinG	0.00287309713452
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9T4	 Protein tas	0.00287205662854
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_U6EDF1	 Probable cyclic pyranopterin monophosphate synthase accessory protein	0.0028713689573
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D0JN49	 Phosphoribosylformylglycinamidine synthase	0.00287091997562
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8TQE0	 Pili assembly chaperone	0.00287061134199
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q28KP2	 N acetylmuramic acid 6 phosphate etherase	0.00250015152801
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q28KP2	 N acetylmuramic acid 6 phosphate etherase	0.000364097873034
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75712	 Putative allantoin permease	0.00286994408703
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3ST30		0.00286974614688
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77366	 Beta phosphoglucomutase	0.00286908170775
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J099	 Transcriptional regulator, HxlR family	0.00286881408216
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77588		0.00286860204356
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAE6	 Putative arginine ornithine antiporter	0.00286840819284
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TPD4	 MutE	0.00286814392596
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P26394	 dTDP 4 dehydrorhamnose 3,5 epimerase	0.00285858395435
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R4E7		0.00286769897109
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2K5E7	 Xylose ABC transporter, permease protein	0.00286766016872
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04IT2	 Segregation and condensation protein A	0.00286744801742
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1JQW7	 Glycerol 3 phosphate acyltransferase	0.002867120993
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULF2	 Adenosylcobinamide amidohydrolase, CbiZ	0.0028662148485
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1WY04	 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.00273451636353
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1WY04	 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.000116051227075
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M5L4	 LysR family transcriptional regulator	0.00286577094379
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5DZU8	 3 methyl 2 oxobutanoate hydroxymethyltransferase 2	0.00285663963552
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26901	 ATP dependent DNA helicase Hel308	0.00286530182768
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02KY6		0.00286513667006
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KIP8	 D tagatose 1,6 bisphosphate aldolase subunit KbaY	0.00285488212034
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F8KNY9		0.00199968131843
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F8KNY9		0.000863549584731
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADA6		0.00286305016058
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G4RE73	 Glutaredoxin	0.00286292292617
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O64363	 Protein gp55	0.00286277232594
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O31711		0.00251773142289
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O31711		0.000198358678878
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_O31711		0.000145902554264
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAW3		0.00286197821381
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76035		0.00284722126591
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP74		0.00286029487819
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58115	 Pirin like protein YhaK	0.00285928058709
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SM76	poly glycerophosphotransferase	0.00285828343462
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77526	 Disulfide bond oxidoreductase YfcG	0.0028168597801
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8Z7H3	 Virulence sensor histidine kinase PhoQ	0.00285720187439
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A6C2	 Endonuclease 4	0.00285706166067
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77368	 UPF0098 protein YbcL	0.0028570580238
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9ZFV2	 Ethanolamine utilization protein EutA	0.00285661553877
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TGA6	 Rhamnulose 1 phosphate aldolase	0.00281979481028
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FIP6	 Maf like protein YceF	0.00285602449195
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XA81		0.00285511114991
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57624	 Aspartyl glutamyl tRNA amidotransferase subunit B	0.00285499419265
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULU4	 Glutamyl tRNA reductase	0.00285466491068
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X3W353	 Enterobactin synthase subunit F	0.00285451833244
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C5T2	 Transposase FOR transposon Tn554	0.00199272172799
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C5T2	 Transposase FOR transposon Tn554	0.000861081075041
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1MM06	 Glucose 6 phosphate isomerase	0.0028537911828
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5EZV0	 Probable protein kinase UbiB	0.00285375983935
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45253	 Release factor glutamine methyltransferase	0.0028528395511
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SPE5		0.00285214105251
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E138		0.00285183454173
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N6RCJ7	 RpiR family transcriptional regulator	0.00285175249907
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31126		0.00285173799115
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27720	 Probable tRNA sulfurtransferase	0.00285054302259
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2J9G2		0.00285026914838
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E0IXH7	 ShET2 enterotoxin domain protein	0.00284944361339
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E006		0.00282515589425
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27911	 2 phosphoglycerate kinase	0.00284891831568
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5UAG1	 Ribonuclease T	0.00203420461447
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5UAG1	 Ribonuclease T	0.000814651897983
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1A2	 ATPase	0.00284858037687
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I3U9H2	 Glutamine ABC transporter ATP binding protein	0.0028485049154
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32710	 Cytochrome c type biogenesis protein NrfE	0.00284838305902
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58691		0.00284793471167
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULS7	 Molybdopterin biosynthesis protein, MoeA	0.00284779676557
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ87	 Predicted kinase 	0.00284729307936
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D7AA03	 Binding protein dependent transport systems inner membrane component	0.00284714020527
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27896	 Nitrate nitrite sensor protein NarQ	0.00284713714471
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q4FQB2	 tRNA  methyltransferase	0.00266022650581
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4FQB2	 tRNA  methyltransferase	0.000186625818025
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C1L1N4	 Protease HtpX homolog	0.00284654917214
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LK75	 Histidine kinase	0.00284589529647
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KIP9	 Putative tagatose 6 phosphate ketose aldose isomerase	0.00284483629525
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5EZL8	 UPF0208 membrane protein YfbV	0.00284472537751
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEC9	 Sensor histidine kinase DcuS	0.00284440350468
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P06709	 Bifunctional ligase repressor BirA	0.00284421968948
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEM2	 FKBP type 16 kDa peptidyl prolyl cis trans isomerase	0.00284358699532
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KSC2	 Methylisocitrate lyase	0.00214969426257
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9KSC2	 Methylisocitrate lyase	0.000442098061438
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9KSC2	 Methylisocitrate lyase	0.000251781963964
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7LSZ0	 Cytoplasmic trehalase	0.00284005077718
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E3H102		0.00284208260514
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DYQ8	 Isoleucine  tRNA ligase	0.00284149753504
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F0VRX3		0.00283994713972
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q51687	 Histidinol phosphate aminotransferase	0.00283950612053
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NGD5	 Polyphosphate kinase	0.00283902625914
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FKA9		0.00253390179227
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B9L2J1	 Acetaldehyde dehydrogenase	0.00283787464859
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C665	 Penicillin insensitive murein endopeptidase	0.00283750779134
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P50252	 Adenosylhomocysteinase	0.00283079183653
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQE5		0.00283587308009
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A6UWL8	 N acetyl gamma glutamyl phosphate reductase	0.00281980493608
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47534		0.00283562647301
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P03835	 Transposase InsG for insertion sequence element IS4	0.00283536373859
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6ZUP8	 Formate C acetyltransferase 3	0.00283529715362
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5QX24	 Protein TolB	0.00283455825291
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57725	 Probable acetolactate synthase large subunit	0.00281841490432
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGJ3	 tRNA  2 O) methyltransferase	0.0028339356046
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P71229	 Hydrogenase 4 transcriptional activator	0.00283353198665
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0CI32	 3 phenylpropionate dihydrodiol cinnamic acid dihydrodiol dehydrogenase	0.0027794535588
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6D5V7	 Transcriptional regulator SlyA	0.00283256291829
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8AQ08	 Threonine serine transporter TdcC	0.00283242986536
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08722	 PTS system beta glucoside specific EIIBCA component	0.00283223913856
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9CNG8	 Undecaprenyl phosphate alpha N acetylglucosaminyl 1 phosphate transferase	0.00283167237651
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZQG6		0.00278520330167
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZR32		0.00283113638958
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FFW9		0.00277463964927
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A6TSP5	 DEAD DEAH box helicase domain protein	0.00283012900256
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77634		0.00282988217536
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T631	 ABC transporter substrate binding protein	0.00282981976452
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83BB6	 RNA polymerase sigma factor RpoD	0.00282948605882
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNH2	 Glycosyltransferase, GT2 family	0.00282940589158
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABD0	 High affinity choline transport protein	0.00223260662354
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0ABD0	 High affinity choline transport protein	0.000517767013082
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P0ABD0	 High affinity choline transport protein	6.80354228742e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFR0	 NTE family protein RssA	0.00282777858078
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77716	 Inner membrane ABC transporter permease protein YcjP	0.00282776231049
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5QFZ9	 Cyclase dehydrase	0.00279215465992
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P02919	 Penicillin binding protein 1B	0.00282624785703
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8PY83	 CoB  CoM heterodisulfide reductase 1 subunit B	0.00282620740965
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1ADH3	 tRNA 5 methylaminomethyl 2 thiouridine biosynthesis bifunctional protein MnmC	0.00282593756525
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CR15		0.00282577095742
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9V0	 Probable acyl CoA dehydrogenase YdiO	0.00282553245809
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27112	 2 oxoglutarate synthase subunit KorA	0.00282440191637
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KLG1	 Membrane anchored oxidoreductase	0.00282376943085
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A5VFM2	 tRNA specific 2 thiouridylase MnmA	0.00282348144658
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A8AKU2	 50S ribosomal protein L1	0.00143204404088
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8AKU2	 50S ribosomal protein L1	0.00139102271384
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46808		0.00280166027317
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q04539	 Ribulose phosphate 3 epimerase, plasmid	0.00201993181821
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q04539	 Ribulose phosphate 3 epimerase, plasmid	0.000795712435408
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31777	 Ribosomal RNA large subunit methyltransferase J	0.00277734974399
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76318	 Putative SOS response associated peptidase YedK	0.00282070767979
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_L0EBI3	 Transcriptional accessory protein	0.00281977589502
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJS0	 Exosome complex component Rrp4	0.00281844403516
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P19926	 Glucose 1 phosphatase	0.00274046184205
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F0VTI5	 PAP2 superfamily protein	0.00281766327808
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1QA11	 Ribosomal protein S12 methylthiotransferase RimO	0.00242961798999
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1QA11	 Ribosomal protein S12 methylthiotransferase RimO	0.000387462893488
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U3NMM0		0.00281640161158
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7FJ95		0.00281614073771
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X7R2	 Acyl coenzyme A dehydrogenase	0.00279674702602
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KKX8	 Cyclic nucleotide binding protein	0.0028156021252
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS04		0.0027510937376
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFA3	 Nitrate nitrite sensor protein NarX	0.00281499977326
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5F4D2	 Phosphomethylpyrimidine synthase	0.00275298494353
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5F4D2	 Phosphomethylpyrimidine synthase	5.67854710649e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U250	 McpJ	0.00281357716665
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1F6		0.0026823926613
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7N6B0	 Peptidase B	0.00276826501518
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E2Q4	 Cell wall biosynthesis protein phospho N acetylmuramoyl pentapeptide transferase family	0.00281199078513
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMK8	 Arginine  tRNA ligase	0.00281156500162
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6T9H3		0.00281106459458
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76056	 Putative lambdoid prophage Rac integrase	0.00281102222103
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P37551	 Pur operon repressor	0.00262045215705
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P37551	 Pur operon repressor	0.000190499184056
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E3GWD7	 Protease HtpX homolog	0.00280996270439
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P18949	 Cystathionine beta lyase	0.00275856488701
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98NF5	 Threonine dehydratase	0.00280949126324
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O29196	 5,10 methylenetetrahydromethanopterin reductase	0.00280911102503
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O28664	 Proline  tRNA ligase	0.00280896413374
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32143	 Sulfofructose kinase	0.00280892079737
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A029J2G1	 Sodium hydrogen exchanger family protein	0.00280889549158
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37661	 Phosphoethanolamine transferase EptB	0.00280875137607
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1AH06		0.00273616714231
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9MQU9	 FMN dependent NADH azoreductase	0.00280809737319
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27587		0.00280766861302
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SDD7		0.00268028766978
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37597	 Inner membrane transport protein YdhC	0.00280709342811
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5FI46	 Ribulokinase	0.00280647191593
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27611	 Conserved protein	0.0028067971702
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F0LGH9	 Transcriptional regulator, AraC family	0.00280669779414
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1IZP1	 Gamma glutamyl phosphate reductase	0.0028062816807
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1U3	 Ferredoxin	0.00280603459774
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39366	 Putative aminopeptidase SgcX	0.00280578373999
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R5WAI2	 Exodeoxyribonuclease V gamma subunit	0.00280483674772
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPU6		0.00280457132087
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LTW5	 Chaperone	0.00280457132087
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T5X346	 Sensor protein evgS	0.00280395508094
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E3GWU1	 Radical SAM domain protein	0.00280386322227
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75791		0.00280334301892
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76340	 Probable transcriptional regulatory protein YedW	0.00280297331229
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPB4	 Peptide methionine sulfoxide reductase MsrB	0.00277029322663
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SL42		0.00280230747968
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADH8	 Type 1 fimbriae regulatory protein FimE	0.00280051055267
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15030	 Fe dicitrate transport system permease protein FecC	0.00279726643153
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9WQ71	 NTP pyrophosphohydrolase	0.00279714403521
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FGS9	 Ribosomal RNA small subunit methyltransferase F	0.00279681555206
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7ZKI4	 HTH type transcriptional regulator, AsnC family	0.00279636032649
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H8E0P5	 Isopropylmalate isomerase small subunit 	0.00279623945125
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HME3		0.00279549348118
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F731	 Non specific ribonucleoside hydrolase RihC	0.00279531553339
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30844	 Sensor protein BasS	0.00279444592619
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9H4	 Lysine decarboxylase, inducible	0.00279426852802
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52140	 UPF0758 protein YfjY	0.00279420931001
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42604	 Altronate dehydratase	0.00279406112479
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46PS3	 Pseudouridine 5 phosphate glycosidase	0.00279394145979
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI000329D795	 catalase peroxidase like	0.00273690643599
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_UPI000329D795	 catalase peroxidase like	5.65627829382e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B3R9A8	 YagS molybdopterin dehydrogenase, FAD binding, CO dehydrogenase flavoprotein, C terminal	0.00279324987518
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D8IGU8	 ABC superfamily ATP binding cassette transporter, ABC protein	0.00279309541548
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P43669	 Tail specific protease	0.00279276464537
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACH9	 Melibiose operon regulatory protein	0.00279261214526
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27367	 DNA polymerase sliding clamp	0.00279215547579
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X7Z7	 2,5 diketo D gluconic acid reductase B	0.00265390902048
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8X7Z7	 2,5 diketo D gluconic acid reductase B	0.000125734206171
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7DDH4	 Putative lipoprotein NMB1126 NMB1164	0.00199060640077
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q7DDH4	 Putative lipoprotein NMB1126 NMB1164	0.000800795577162
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7UNM8	 L rhamnose proton symporter	0.00279078794135
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76584		0.00279036312977
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26800	 Ketoisovalerate oxidoreductase subunit VorB	0.0027903537531
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52599	 Probable multidrug resistance protein EmrK	0.00279033328807
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27840		0.00278881381413
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q3ADL9	 Acetyl CoA carboxylase, biotin carboxylase	0.00278875799392
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47083	 HTH type transcriptional regulator cbl	0.00278861159578
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZRM1		0.00278774295244
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XD89	 DNA ligase B	0.00278769089579
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P22939	 Farnesyl diphosphate synthase	0.00278731203559
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R8A2V2	 Glucose 6 phosphate 1 dehydrogenase	0.00278718708162
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77221		0.00278713853161
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZQE3	 Topoisomerase DNA binding C4 zinc finger domain protein	0.0027869816827
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRE1		0.00278690470775
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32688		0.00278683367834
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6D107	 Bifunctional protein Aas	0.00278671329744
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACE1	 Hydrogenase 2 large chain	0.00278659287165
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77554		0.00278568824624
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2LKW6	 Acetyltransferase component of pyruvate dehydrogenase complex	0.00278566991327
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0C7	 Energy converting hydrogenase B subunit N EhbN	0.00278566631371
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1JPW1	 Histidinol phosphate aminotransferase	0.00278555777135
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37327	 Inner membrane protein YfdC	0.00278530266387
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S5YTE6	 L arabinose isomerase	0.00278488973603
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9J9	 P protein	0.00278485078432
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEV5	 Formate hydrogenlyase regulatory protein HycA	0.00278451260195
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AD32	 UPF0721 transmembrane protein YfcA	0.00278348665672
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SMS3	 Aspartate glutamate uridylate kinase	0.00278346898806
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MNC1	 Ribosomal RNA small subunit methyltransferase C	0.00268347139191
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MLE5	 Glucans biosynthesis protein D	0.00274038744977
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E4Q3		0.00278134920814
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q99ZQ6	 Pseudouridine synthase	0.00278098375999
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F446	 Aspartate carbamoyltransferase	0.00278060481913
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7D247	 Oxidoreductase short chain dehydrogenase reductase family protein	0.00278046852717
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5NP61	 4 hydroxy 3 methylbut 2 enyl diphosphate reductase	0.00260255761065
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5NP61	 4 hydroxy 3 methylbut 2 enyl diphosphate reductase	0.000123127521402
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8SR94	 Protein with similarity with cytochrome c type biogenesis protein CcdA	0.00278013867013
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ92	 Riboflavin specific deaminase	0.00278000503457
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4F298	 Fructose 1,6 bisphosphatase class 1	0.00277593935314
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C9A6P4		0.00277980780655
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46852	 Quercetin 2,3 dioxygenase	0.00277965773145
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI000376D251	 hypothetical protein	0.00237783802959
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_S0F090	 Acetolactate synthase, small subunit	0.00277813673194
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KRH9	 Glycosyl transferase, family 2	0.00277756415397
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q4UYY0	 Tyrosine recombinase XerC	0.00277664849865
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P65234	 Ribose phosphate pyrophosphokinase	0.00178087226343
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P65234	 Ribose phosphate pyrophosphokinase	0.000906640283482
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK92	 Uridylate kinase	0.00277573911561
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S4X8K0		0.00277568857495
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMV5	 Glycosyltransferase, GT2 family	0.0027756586809
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49VN6		0.00159800760552
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49VN6		0.00117712220454
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C0H2	 LPS assembly protein LptD	0.00277471221203
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABM9	 Cytochrome c type biogenesis protein CcmH	0.00277469793881
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KW14	 Carboxypeptidase Taq. Metallo peptidase. MEROPS family M32	0.00277266019978
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9G0	 HTH type transcriptional regulator MetR	0.00277264198349
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P09155	 Ribonuclease D	0.00272633253165
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0E9		0.00277213239094
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F4F0	 Periplasmic trehalase	0.00275542889252
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5XZ61	 Candidate cytosine deaminase 	0.00276879202591
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D4UIW5		0.00276856359112
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2IF34		0.00168274279252
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK29	 Predicted DNA modification methylase	0.00276833351401
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28JW2	 HemY like protein	0.00274952369331
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77434	 Glutamate pyruvate aminotransferase AlaC	0.00189810126478
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P77434	 Glutamate pyruvate aminotransferase AlaC	0.000794986260609
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39361	 Putative sgc region transcriptional regulator	0.00276781555081
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E2W0		0.00276763318254
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31455		0.00276735921445
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M325	 FkbH like protein	0.00276708319996
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9PBC7	 Histidine biosynthesis bifunctional protein HisB	0.00276595360924
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44428	 2Fe 2S ferredoxin	0.00276574732763
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3THN6	 Binding protein dependent transport systems inner membrane component	0.00276407819061
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KRK1		0.000708523281056
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7VKH0	 4 diphosphocytidyl 2 C methyl D erythritol kinase	0.00276354660168
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q89B04	 Phosphoenolpyruvate protein phosphotransferase	0.00276348436969
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P38135	 Short chain fatty acid  CoA ligase	0.0027634313862
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9K0I2	 Phosphoenolpyruvate synthase	0.00166559593665
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9K0I2	 Phosphoenolpyruvate synthase	0.000790286576326
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9K0I2	 Phosphoenolpyruvate synthase	0.00015732466727
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9K0I2	 Phosphoenolpyruvate synthase	0.000149744577965
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNL7	 Adhesin like protein	0.00275371442748
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77309		0.00276242586133
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39308		0.00276231475163
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76083	 3 hydroxyadipyl CoA dehydrogenase	0.0027430853777
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZA3	 Heavy metal translocating P type ATPase	0.00276187026133
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GHA3		0.00276164420882
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJF0		0.00276089683454
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_U6EFC2	 Helicase	0.00276087880726
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R3C7		0.00275997755715
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQ33		0.00197906681215
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQ33		0.000780067805076
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q9YAS0	 UPF0219 protein APE_1873.1	0.00275873627559
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C1DIU1	 Response regulator	0.00275864387583
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N039		0.00259643637902
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24554	 DNA repair protein RadA	0.002525127132
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P24554	 DNA repair protein RadA	0.000154673485801
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P24554	 DNA repair protein RadA	7.8145950112e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5R8Z8	 D amino acid dehydrogenase Alanine racemase fusion protein	0.00274507112814
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9AC17	 L carnitine dehydratase bile acid inducible protein F	0.00261913392642
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A9AC17	 L carnitine dehydratase bile acid inducible protein F	0.000137929737094
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5UII8	 Lipid A disaccharide synthase	0.00275611010574
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GIV4	 UDP N acetylmuramoylalanine  D glutamate ligase	0.00274816224966
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76396		0.00272158283809
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P43790		0.00275410084884
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJC1	 Predicted transcription regulator 	0.00275399058857
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D1YZX5		0.00275393667987
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SMZ9	 Cysteine  tRNA ligase	0.00275384718344
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PR72	 Binding protein dependent transport systems inner membrane component	0.00275321548912
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46798		0.00275232492446
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A024L686	 Ankyrin repeat protein A	0.002752240973
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SKE9	 Radical SAM domain containing protein	0.00275196203921
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8ESU0	 Anthranilate synthase component II	0.00275189129557
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33590	 Nickel binding periplasmic protein	0.00275163025295
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L8E534	 Undefined function	0.00275028423404
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E047	 Tetrahydromethanopterin S methyltransferase subunit C	0.00275025374818
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P63206	 Transcriptional regulator GadE	0.00274984344137
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P72138	 Imidazole glycerol phosphate synthase subunit HisH 2	0.00273630880448
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KW49	 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase	0.00274917123465
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C9ADA5		0.00274907946679
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P57162	 Serine acetyltransferase	0.0027489079937
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49ZP3		0.00258883506541
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L9TGP7	 Exonuclease V subunit beta	0.00274835177509
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZN19	 Pyridoxine 5 phosphate synthase	0.00252120926906
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8ZN19	 Pyridoxine 5 phosphate synthase	0.000216198217452
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0KVP8	 Na H(+) antiporter NhaB	0.00220621257309
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0KVP8	 Na H(+) antiporter NhaB	0.000541330600875
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KRP1	 Galactokinase	0.00273497104795
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KPK4	 Homoserine kinase	0.00274663659395
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D5B2E2		0.00274640368321
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7GKB6	 Nitrite reductase H), small subunit	0.00174044621712
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7GKB6	 Nitrite reductase H), small subunit	0.00100420526792
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52126		0.00274459893367
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B3E0I7	 50S ribosomal protein L2	0.00274401370031
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76114	 HTH type transcriptional regulator McbR	0.00274323159716
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023KSM9		0.00274323036523
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZGW9	 ATP dependent dethiobiotin synthetase BioD 1	0.0027424016289
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D9QPC0	 Alpha beta hydrolase fold protein	0.00274235554459
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACL0	 Glycerol 3 phosphate regulon repressor	0.00274208415065
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4VIE3		0.0027418287386
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACK8	 L fucose operon activator	0.00274170828286
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P14081	 Selenocysteine specific elongation factor	0.00274162499401
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP05		0.0027412498323
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0TGY1		0.00248611898137
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KLT3		0.00263055220986
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE07	 Multidrug efflux pump subunit AcrA	0.0027393917468
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P02930	 Outer membrane protein TolC	0.00273916244757
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABW6		0.00273915253912
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NI31	 Methionine  tRNA ligase	0.00273903418583
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J218		0.00273889576383
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5HH02	 Phosphocarrier protein HPr	0.00166199130633
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HH02	 Phosphocarrier protein HPr	0.00107689907876
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8E7K5	 4 diphosphocytidyl 2 C methyl D erythritol kinase	0.00239462295833
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E7K5	 4 diphosphocytidyl 2 C methyl D erythritol kinase	0.000337181095781
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQS7	 Flagellar hook length control protein related protein	0.00273701212986
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KS21	 Two component, sigma54 specific, transcriptional regulator, Fis family	0.00273667543285
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M1J2	 Phage related integrase	0.00273641891322
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMN2		0.0027353521138
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X3ELX1	 Chloride channel protein	0.00273439978044
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULR8	 Digeranylgeranylglyceryl phosphate synthase	0.00273410955127
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45756	 Putative general secretion pathway protein A	0.00273266761961
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44797	 Adenylosuccinate lyase	0.00272481228096
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P54901	 Stationary phase inducible protein CsiE	0.00273197410203
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F7WZ70	 Pyruvate dehydrogenase E1 component	0.0027319447011
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPZ7	 Peptidase S14, ClpP	0.0027314334786
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C5CPN2	 Transaldolase	0.00273112256236
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SI06	 Chorismate lyase	0.00273098700482
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9H6E4	 Lysine 2,3 aminomutase YodO family protein	0.0027309278296
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q3JEN4	 Cytidylate kinase	0.00272085894575
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PI46		0.00273057840024
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37674	 2,3 diketo L gulonate TRAP transporter small permease protein YiaM	0.00273052432098
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0ST10	 Transcriptional regulator, Crp Fnr family	0.00273051008219
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SLI7	 DEAD DEAH box helicase domain containing protein	0.00273024014676
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TFY7	 Putative transport protein KPN78578_40470	0.00273007685435
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJP7	 Chaperonin , alpha subunit	0.00272973469334
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q4FUD2	 30S ribosomal protein S4	0.00240322751243
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4FUD2	 30S ribosomal protein S4	0.000326218311959
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AD71	 D alanyl D alanine carboxypeptidase endopeptidase AmpH	0.00272895778034
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V6PIL4	 2 isopropylmalate synthase	0.00272891047184
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9ACR2		0.00272877209597
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K7U6		0.00272877209597
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YYN2		0.00272877209597
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CR48		0.00272877209597
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42911	 N acetylgalactosamine permease IID component	0.00272840989388
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AG95	 Protein translocase subunit SecF	0.00272779656219
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ85	 DNA helicase II	0.00272735375984
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O59439	 30S ribosomal protein S5	0.00272710757708
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTJ5	 RarD protein, DMT superfamily transporter	0.00272683917161
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU09		0.00272668238836
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q4K4H3	 UPF0312 protein PFL_5802	0.0027263166663
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U5PBB0	 Glycine betaine ABC transporter ATP binding protein	0.00272514319342
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5PJX5	 Ribose import ATP binding protein RbsA	0.00272471700524
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E3M2	 2 amino 5 formylamino 6 ribosylaminopyrimidin 4 one 5 monophosphate deformylase	0.00272414354271
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TE25	 UPF0441 protein KPN78578_33850	0.00272412007658
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X645	 NAD dependent dihydropyrimidine dehydrogenase subunit PreT	0.00272373598843
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q67FX7	 DeoK	0.0025397608399
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q67FX7	 DeoK	0.000183906316125
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P10908	 Glycerophosphoryl diester phosphodiesterase	0.00272313921084
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AG01	 Lipopolysaccharide biosynthesis protein WzzE	0.00272266979723
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CT45		0.00233274308286
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMA2	 Predicted endoglucanase 	0.00272168142501
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJV6		0.00272131710571
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN28	 Biopolymer transport protein	0.00272023068007
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B4U8	 Rhs element Vgr protein	0.0026938599085
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77228	 Putative inner membrane metabolite transport protein YdfJ	0.00271971102114
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YYZ8	 UPF0060 membrane protein SAB2216c	0.00271924154495
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B8EJI8		0.00271756550924
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1JPN5	 Bifunctional polymyxin resistance protein ArnA	0.00265203823699
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1JPN5	 Bifunctional polymyxin resistance protein ArnA	6.64240575952e-05
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E2Y7	 Poly gamma glutamate biosynthesis protein	0.00271808896721
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0D9	 Transcriptional regulator, XRE family	0.00271766938181
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKR7		0.00239181982548
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5EXJ7	 HMP PP phosphatase	0.00270644199193
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5LYA2	 Glycosyltransferase	0.00271678806041
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E357	 Cell wall biosynthesis protein Mur ligase family	0.00271645675094
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJ45	 Histidine kinase	0.00271614550646
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77348	 Periplasmic murein peptide binding protein	0.00271613599239
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZIQ1	 Protein smp	0.00271610292
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZU67	 Der GTPase activating protein YihI	0.00271588641837
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76657	 Inner membrane protein YqiJ	0.00271586187022
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33226	 Cytochrome c type protein TorC	0.00271448005035
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPD5	 Truncated transposase	0.00271299348181
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UZX8		0.00258926065066
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52043	succinate CoA transferase	0.00271292312779
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37665	 Probable lipoprotein YiaD	0.00271168887481
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45508		0.00271142550023
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF57		0.00270992761759
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SU15		0.00270799323614
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TY21	 GTP cyclohydrolase MptA	0.00270771908566
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RSQ1	 GNAT family acetyltraansferase	0.00270653703561
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SK19	 Histone acetyltransferase ELP3 family	0.00270646789136
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77393		0.00270624277494
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75800	 Putative cyclic di GMP phosphodiesterase YliE	0.00269422493466
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P26612	 Cytoplasmic alpha amylase	0.0027057533086
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1WTR8	 Electron transport complex subunit D	0.00270563170285
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1R7P6		0.00266656156964
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45413	 Citrate lyase alpha chain	0.00257397063743
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJQ0	 Cell wall biosynthesis protein Mur ligase family	0.00270422403719
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P40727	 Flagellar biosynthetic protein FlhB	0.00270390262848
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76507		0.00270372844315
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7N5L4	 CinA like protein	0.00270369472777
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP28		0.0027035282503
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57975	 Putative aminopeptidase MJ0555	0.00270300119868
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37755	 Phosphomannomutase	0.00253778338733
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P37755	 Phosphomannomutase	0.000165198072496
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AA69	 Threonine homoserine exporter RhtA	0.00270270655257
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T1ZVD1	 Two component system response regulator	0.00270229775783
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SU00		0.00270186456946
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1JXR9	 3 phosphoshikimate 1 carboxyvinyltransferase	0.00270141063709
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O07165	 tRNA splicing endonuclease	0.00270134527825
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5NV97		0.00205648418849
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5NV97		0.000570421285597
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P41052	 Membrane bound lytic murein transglycosylase B	0.0027010136176
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30011	 Nicotinate nucleotide pyrophosphorylase [carboxylating]	0.0027007786184
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0TKF3	 Copper transporting P type ATPase	0.00270053177623
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6D8C5	 tRNA lysidine synthase	0.00270051517403
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77196	 Putative outer membrane usher protein YfcU	0.00269990730153
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15977	 4 alpha glucanotransferase	0.00269980115265
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I4Q017		0.00267205479737
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_C0QJ00	 Phosphomethylpyrimidine synthase	0.00269921067274
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAA2	 Inner membrane protein YagU	0.00269879197432
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26914	 Probable threonylcarbamoyladenosine tRNA methylthiotransferase	0.00269825241041
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABI1	 ATP dependent Clp protease ATP binding subunit ClpA	0.00249276060368
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P0ABI1	 ATP dependent Clp protease ATP binding subunit ClpA	0.000160823361979
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P0ABI1	 ATP dependent Clp protease ATP binding subunit ClpA	4.4536642057e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SQ46	 Putative low temperature requirement A protein	0.00269755824019
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37690	 Murein hydrolase activator EnvC	0.00269635996944
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XCJ6	 Glucose 6 phosphate 1 dehydrogenase	0.00194674906564
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8XCJ6	 Glucose 6 phosphate 1 dehydrogenase	0.000616671689421
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1F0		0.00233141865534
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77165	 Putative xanthine dehydrogenase YagT iron sulfur binding subunit	0.00269548176947
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KSE8	 FAD dependent oxidoreductase	0.00269500436654
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZ74	 UPF0288 protein mru_1774	0.00269498976532
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRK5	 UPF0457 protein SE_1763	0.00269489495992
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75788	 Inner membrane protein YbiR	0.00269470806386
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04E66	 30S ribosomal protein S4	0.00183952356114
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q04E66	 30S ribosomal protein S4	0.000855111966138
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26278	 tRNA guanine transglycosylase	0.00269461556566
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023KET7	 Mannitol 1 phosphate 5 dehydrogenase	0.00234801319886
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZ29	 GTP binding protein	0.00269365139632
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26346	 Histidine  tRNA ligase	0.00269279733256
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76034		0.00269269927668
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A3MND6	 Bifunctional protein GlmU	0.00230786963702
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3MND6	 Bifunctional protein GlmU	0.000211017421981
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3MND6	 Bifunctional protein GlmU	0.000173594605355
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9P2T1	 GMP reductase 2	0.00269237687623
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P40131	 Flagella basal body P ring formation protein FlgA	0.00269236769712
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2VIE6	 UPF0294 protein ETA_26410	0.00269218875122
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37924	 Outer membrane usher protein FimD	0.00269194658694
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42914	 Probable fimbrial chaperone YraI	0.00269182179137
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5M103	 ATP synthase epsilon chain	0.00269146950325
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8KTE1	 Fumarate hydratase class II	0.0023139123638
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8KTE1	 Fumarate hydratase class II	0.0003663502736
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0LJV9		0.00195811932291
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_K0LJV9		0.000469602639773
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X844	 Fructoselysine 6 phosphate deglycase	0.00259488045888
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XCN6	 Long chain fatty acid transport protein	0.00269009324068
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PMA4		0.002529092333
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_V5XTH0	 HIT family protein	0.0026887504893
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTG6		0.00121644057291
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P22099	 Anthranilate synthase component 1	0.0026834466863
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULK1	 Adenine deaminase	0.00268833543752
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A058T0F9	 FKBP type peptidyl prolyl cis trans isomerase	0.00268823896304
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAS6		0.00256236982594
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z3B2		0.00268773438252
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39280	 L lysine 2,3 aminomutase	0.00268760572893
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76234		0.0025405633065
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P76234		0.000146964436029
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q82TB9	 3 dehydroquinate synthase	0.0023777607309
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q82TB9	 3 dehydroquinate synthase	0.000157265681548
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q82TB9	 3 dehydroquinate synthase	0.000152284415608
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4PDP4	 Integrase core domain protein	0.00268724905306
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76193	 Probable L,D transpeptidase YnhG	0.00267718281918
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI0003814F56	 hypothetical protein, partial	0.00262303147777
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1E2		0.00230559814642
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C3P501	 ATP phosphoribosyltransferase	0.00264161209964
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39365	 Putative permease IIC component	0.00268637746854
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15005	 5 methylcytosine specific restriction enzyme B	0.00268615680178
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVG7	 Transcriptional regulator, AraC family with amidase like domain	0.00268598042461
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMD8		0.00263176793379
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI000364A211	 hypothetical protein	0.00255496663839
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E3Q9	 2 dehydropantoate 2 reductase	0.00268563068562
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39264	 Fimbrin like protein FimI	0.00268557408226
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F0T7Q3	 6 phospho 3 hexuloisomerase	0.00268545053657
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39396	 Inner membrane protein YjiY	0.00268464701265
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4M1U9		0.00268394362125
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SKC9	 CoB  CoM heterodisulfide reductase subunit C HdrC1	0.00268380619525
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WQ31	 Signal transduction histidine kinase	0.00268355704741
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q59409	 RNA polymerase sigma factor RpoS	0.00268351013408
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D4MD52	 ABC type proline glycine betaine transport system, permease component	0.00268243039777
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P3F2		0.00175849407959
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P3F2		0.00092337323528
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U2C8	 Transcriptional regulator	0.00268184664903
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76037	 Putrescine importer PuuP	0.00227473564651
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P76037	 Putrescine importer PuuP	0.000404164941325
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULV6	 Ribonuclease HII	0.00268051581044
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6ISU5	 1 deoxy D xylulose 5 phosphate reductoisomerase	0.00268051236316
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75820	 N acetylmuramoyl L alanine amidase AmiD	0.00268039841561
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNV8		0.00268015006029
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPD1	 Tripartite ATP independent periplasmic transporter, DctQ component	0.00174185721896
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULT4	 Adhesin like protein	0.00267922578737
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WZC5	 Phosphoribosylanthranilate isomerase like protein	0.00267904365956
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A9AF70	 Urease subunit gamma	0.00159909358176
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A9AF70	 Urease subunit gamma	0.0010330545327
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O67078	 3 isopropylmalate dehydratase large subunit	0.00235839078015
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O67078	 3 isopropylmalate dehydratase large subunit	0.000319715554925
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SH54	 Oxidoreductase aldo keto reductase family	0.00267763904378
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K8NX36		0.00267741529285
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P59302	 Acetylglutamate kinase	0.00267737183223
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F6C514	 Transcriptional regulator, DeoR family	0.00267658802374
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Z9EMY6		0.00267657670321
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1K6	 Cytidyltransferase related domain containing protein	0.00267657340725
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F9I1V8		0.00267628456451
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27830		0.00267628360627
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P43319		0.00267612181467
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULI2	 tRNA pseudouridine synthase A	0.00267582178855
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H8HC20	 Rhodanese like domain protein	0.00265179668848
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V6ECI2	 Dihydroxy acid dehydratase	0.00267545824215
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24252		0.00264218745683
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V6PAD8	 Putative peptidase, aminobenzoyl glutamate utilization protein 	0.00267425987732
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77376		0.0026380958142
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76046		0.00267337129058
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8AHA1	 Vitamin B12 import ATP binding protein BtuD	0.00267331515974
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27434	 CoB  CoM heterodisulfide reductase iron sulfur subunit A	0.00267313105177
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RBV2		0.0026729113715
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q60182	 Glutamine synthetase	0.00266077678066
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SIK3	 2 5 RNA ligase LigT	0.00267201177564
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46927	 tRNA threonylcarbamoyladenosine dehydratase	0.00267126456333
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0BUB7	 Succinyl diaminopimelate desuccinylase	0.00267088351466
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52111	 Glycerol 3 phosphate dehydrogenase	0.00253516620593
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P52111	 Glycerol 3 phosphate dehydrogenase	0.000122940215227
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PW09	 CAAX amino protease family protein	0.00266999753745
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1REE6		0.00266970399307
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMY5	 Diphthamide synthase, subunit DPH2	0.00266932185201
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8ZYR9	 DNA repair and recombination protein RadA	0.00266906047909
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEA4	 Curli production assembly transport component CsgG	0.00266873125465
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75728	 2 octaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase	0.00266800588264
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A2C8	 Spermidine putrescine binding periplasmic protein	0.00266741218519
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF27	 Nitrate reductase molybdenum cofactor assembly chaperone NarJ	0.00266722309966
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFC1	 Dihydroneopterin triphosphate pyrophosphatase	0.00266681649627
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52143		0.00266678205531
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULE5	 Predicted transcriptional regulator	0.002665510378
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q7NK15	 Glr1665 protein	0.00259121736188
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5VYC6	 GTPase Obg	0.00266522038879
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KX06	 Transcriptional regulator, GntR family	0.0026651162365
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39385		0.00266477695744
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IZ97	 Transglutaminase like domain protein	0.0026431523299
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6D6A4	 UPF0176 protein ECA1781	0.00266457682156
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23878	 Ferric enterobactin transport ATP binding protein FepC	0.00266425363597
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YYL7	 NLP P60 protein	0.00266419539761
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IPS9	 Phage envelope protein like protein	0.00266405606213
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AA48	 Low affinity putrescine importer PlaP	0.00255816765953
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P0AA48	 Low affinity putrescine importer PlaP	0.000105832880038
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SUT2	 Multidrug ABC transporter substrate binding protein	0.00266329771683
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0TD44	 L tartrate dehydratase subunit beta	0.00254211295403
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P78271		0.00266179627459
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN26	 Adhesin like protein	0.00266174737986
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J0L248		0.00266172928229
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YA11		0.00243194583084
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZS60		0.00266103288446
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C1E0	 Glycogen debranching enzyme	0.00263343291301
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57565	 Signal recognition particle 54 kDa protein	0.00265860076188
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AER2	 Glycerol uptake facilitator protein	0.00136535144207
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AER2	 Glycerol uptake facilitator protein	0.001293114532
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M4VIT1	 MotA TolQ ExbB proton channel family protein	0.00265830126995
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27842	 Conserved protein	0.0026580174509
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30140	 2 iminoacetate synthase	0.00246456199742
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM67	 Sugar fermentation stimulation protein homolog	0.00265774002284
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P96611	 Thioredoxin like protein YdbP	0.00265682447288
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64566		0.00265499165523
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26565		0.00265472809918
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C165	 Phosphopentomutase	0.00255677087489
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1C165	 Phosphopentomutase	8.92701746728e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SR69	 Pyrroline 5 carboxylate reductase	0.00265400601497
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P22525	 Probable L,D transpeptidase YcbB	0.00265316976169
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76269		0.00265288865239
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23849	 Trk system potassium uptake protein TrkG	0.00265270023624
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4TBG4	 UDP 4 amino 4 deoxy L arabinose  oxoglutarate aminotransferase	0.00265230819435
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32154	 Fructose like PTS system EIIBC component	0.00265210802462
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SMY1	 Universal stress protein UspA3	0.00265156386835
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2VK30	 Protein TsgA homolog	0.00265124777422
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TX52	 50S ribosomal protein L11	0.00265067451273
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4K135	 Phospholipid binding domain lipoprotein	0.00263703346227
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULL7		0.00264992486207
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q07RP5	 Ribosome binding ATPase YchF	0.00264989024513
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZRF8		0.00220501550527
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8ZRF8		0.000444777830621
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADJ1		0.00264934125042
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR67		0.00264918711914
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0AI23		0.00264824785551
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P80668	 Phenylacetaldehyde dehydrogenase	0.00263587883283
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39298	 Esterase YjfP	0.00264734892238
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37051	 Formyltetrahydrofolate deformylase	0.00264730417907
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37692	 ADP heptose  LPS heptosyltransferase 2	0.00264710131137
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46807	 Carbamate kinase like protein YqeA	0.0026464249212
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49UU5	 UPF0355 protein SSP2326	0.00264512775812
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77733	 Probable formate transporter 2	0.00264486176573
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2G3Z9	 FemAB family protein	0.00264428658154
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37007		0.00264419175764
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6LMJ9	 Glutamyl Q tRNA synthetase	0.00264366138257
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMH8	 Undecaprenyl diphosphatase	0.00264357939425
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E0TF91	 Prephenate dehydrogenase	0.00264345575013
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28631	 DNA polymerase III subunit delta	0.00263721215212
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E4F1	 Metallo beta lactamase superfamily protein	0.00264272087618
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B5E267	 Ribosome binding factor A	0.00264260819871
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPK4	 Amidase	0.00264260706942
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8X4Y8	 Phosphoribosylglycinamide formyltransferase	0.00264256281656
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AD42	 Phosphatidylglycerophosphatase C	0.00264212196605
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39295		0.00264185708655
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PG26		0.00264161201014
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMU8	 Predicted glycosyltransferase, GT2 family	0.00264126769729
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9RNH6	 Glycogen synthase	0.00263980777431
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76463		0.002639736312
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31060	 Putative molybdenum transport ATP binding protein ModF	0.00263950350991
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q3Z5U2	 HTH type transcriptional regulator SgrR	0.00263882792999
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJK1		0.00263813068048
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEB6	 Low conductance mechanosensitive channel YnaI	0.00263803248052
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P50178	 Modification methylase LlaDCHIB	0.00263700616862
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL76	 30S ribosomal protein S4e	0.0026368977135
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6T5N6	 Chaperone protein HtpG	0.00263667884318
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9HZJ5	 DNA topoisomerase 1	0.00258877103848
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9HZJ5	 DNA topoisomerase 1	4.57889195214e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75863		0.00263639778623
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A6UW73	 Argininosuccinate lyase	0.00263628149742
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6LIQ2		0.00263563485914
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRP8	 Cell division protein DivIC, putative	0.00263526788878
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P06971	 Ferrichrome iron receptor	0.00263467753895
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FIR3	 N methyl L tryptophan oxidase	0.00263404999455
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1J961	 Chromosome partitioning protein parB	0.00250284291213
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1J961	 Chromosome partitioning protein parB	0.000130952746498
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27054	 Probable L aspartate dehydrogenase	0.00263329937418
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P63342	 Inner membrane transport protein YqeG	0.00263307136079
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SS70	 Negative transcriptional regulator, CopY	0.00263286287265
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A8M9N8	 GTPase like protein	0.00263203254034
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76115	 Probable TonB dependent receptor YncD	0.00263135909745
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XDN0	 Septum site determining protein MinC	0.00263116419211
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTG7		0.00138820228296
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48B49	 ISPsy24, transposase orfB	0.00263080947199
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A6L5		0.0025200411514
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GB21		0.00230865818839
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3F031	 Beta glucosidase	0.00263041151282
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q5SKG5	 Phosphomethylpyrimidine synthase	0.00263031439006
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69680	 Ammonia channel	0.00263005602783
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q12A19	 Histone deacetylase superfamily	0.00257635213515
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN81	 Predicted ATPase, AAA+ family	0.00262944060477
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P59588	 Lysophospholipase L2	0.00260121371766
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27111	 HTH type transcriptional regulator CynR	0.00262905650213
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q49174	 Methyl coenzyme M reductase II subunit alpha	0.00262882469694
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_M7Y7A3	 Gram positive signal peptide protein, YSIRK family	0.00262832166801
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B3EG02	 CRISPR associated autoregulator, DevR family	0.00262796360257
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52235	disulfide interchange protein DsbA	0.0026253162139
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B7IKZ0	 Cyclic pyranopterin monophosphate synthase accessory protein	0.00260254509512
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MJZ3	 tRNA 2 selenouridine synthase	0.00262474724762
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WT11	 Methyl accepting chemotaxis sensory transducer	0.00262461708081
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SLA3	 RNA methyltransferase TrmH family	0.00262438058818
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C5D3		0.0014419485855
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C5D3		0.0011823044598
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJI3	 CCA adding enzyme	0.00262397084856
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GHA7	 Ferredoxin	0.00262387398071
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B4R825	 Succinoglycan biosynthesis protein	0.00260978084804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37344	 Psp operon transcriptional activator	0.00262122044841
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJ55	gamma glutamyl ligase CofE1	0.00262118089143
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0K413	 Glutathione S transferase	0.00262104295921
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25524	 Cytosine deaminase	0.00208325202784
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P25524	 Cytosine deaminase	0.000537788477954
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26874	 Conserved protein	0.00262040313216
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P06999	 ATP dependent 6 phosphofructokinase isozyme 2	0.00261984407369
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE84	 Sensor protein CpxA	0.00261889841998
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NI23	 DNA primase small subunit PriS	0.00254677068368
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7M9X6	 Adenosine deaminase	0.00219282424751
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7M9X6	 Adenosine deaminase	0.00010821497058
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64434	 Inner membrane protein YpjD	0.00261764104678
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QFY9	 Lysine , arginine , ornithine binding periplasmic protein	0.00261741166832
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9P2	 Dihydrolipoyl dehydrogenase	0.00261706296643
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J2S3		0.00239875401724
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Y1MEW7	 ATP dependent helicase	0.0026165379741
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0NAX3	 Glucose 6 phosphate 1 dehydrogenase	0.00261637208515
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25718	 Alpha amylase	0.00261523617702
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SKI2		0.00261481974051
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WNF9	 Metallophosphoesterase	0.00261441942248
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q6F228	 50S ribosomal protein L33 1	0.00261435148186
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLZ6		0.0017660311123
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HLZ6		0.000848136819327
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6I2P2	 Phosphoglycerol transferase I	0.00261382876159
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN86	 Multidrug efflux permease, AraJ	0.00261382413155
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5XYZ0	 Guanosine 5 triphosphate,3 diphosphate pyrophosphatase	0.0026103634132
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJI1	 Homoserine dehydrogenase, ThrA	0.00261257779466
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P40720	 Fumarate hydratase class I, aerobic	0.00261251345341
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O59469	 3 hydroxy 3 methylglutaryl coenzyme A reductase	0.00261217199369
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SES6		0.00186971421391
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFB9	 Nitrogen regulation protein NR	0.0025397421579
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AFB9	 Nitrogen regulation protein NR	7.15553278151e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39829	 D galactarate dehydratase	0.00238147000668
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P39829	 D galactarate dehydratase	0.000229738208812
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEX3	 Alpha ketoglutarate permease	0.00200853551328
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AEX3	 Alpha ketoglutarate permease	0.000489635785568
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P0AEX3	 Alpha ketoglutarate permease	0.000112935757891
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31131	 Protein YdeJ	0.00261018991411
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8DGR4	 LytTr DNA binding domain protein	0.00260996091236
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P23189	 Glutathione reductase	0.00242340013974
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P23189	 Glutathione reductase	0.000180511559815
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A030WUA6	 3 hydroxyisobutyrate dehydrogenase	0.00260838790652
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7LKC2	 Cytoskeleton protein RodZ	0.00260820516194
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F3U1C5		0.00260815008035
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1LTQ4	 Alanine  tRNA ligase	0.00260810227294
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PWU3		0.00260635755916
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PG69	 BLUF domain protein	0.00260584370847
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P14407	 Fumarate hydratase class I, anaerobic	0.0026054179445
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YVN2		0.00260480160136
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6IRE2	 Deoxyribodipyrimidine photolyase like protein	0.00260463978175
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B4EU40	 UPF0234 protein PMI0103	0.00258883506541
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KW36	 Short chain dehydrogenase reductase SDR	0.00260396630681
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24218	 Prophage DLP12 integrase	0.00260284058723
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PX72		0.002596031326
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACQ8	 HTH type transcriptional regulator TdcA	0.00260205947849
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XD75		0.00260103932569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADP7		0.00260102538344
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P9WQK2		0.001801266813
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P9WQK2		0.000303483751328
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P9WQK2		0.00029753017753
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P9WQK2		0.000198694995902
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M5AGF6		0.0026006410863
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77744	 HTH type transcriptional regulator AbgR	0.00260059864846
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0RCK0	 Peptide methionine sulfoxide reductase MsrA	0.00260021391796
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39263		0.00260017241144
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P11553	 L fuculokinase	0.00259961860173
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q65U21	 Lipid A export ATP binding permease protein MsbA	0.00259900622929
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I0ZXX0	 ATPase associated with various cellular activities AAA_5	0.00259846182615
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D1GN04	 Phage protein	0.00259843367723
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2NUD2	 Cytidine deaminase	0.00259832702783
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CR25		0.00186515042946
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CR25		0.000437076050005
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNS2	 Virulence protein	0.00259773922807
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ78	 Adhesin like protein	0.00258026864773
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57847		0.00259764504702
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF43		0.00226549044559
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AF43		0.000331672814426
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q32IZ2	 IS2 ORF2	0.00259680770547
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y3F751		0.00252642281968
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52074	 Glycolate oxidase iron sulfur subunit	0.00259639957
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL66	 50S ribosomal protein L15P	0.00259593192753
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U5PB64	 Uroporphyrinogen decarboxylase	0.00259587612349
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37180	 Probable Ni Fe hydrogenase 2 b type cytochrome subunit	0.0025957822101
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83IY4	 Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.00202826244029
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q83IY4	 Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.000362523525626
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q83IY4	 Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.000182129647668
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKN5		0.00259531720143
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57GJ7	 Ascorbate specific phosphotransferase enzyme IIA component	0.00259485058289
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0C7J3	 Xanthan biosynthesis protein XanB	0.00212733740808
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0C7J3	 Xanthan biosynthesis protein XanB	0.000445554231163
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEL7	 Ferrienterobactin binding periplasmic protein	0.002594402666
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADT7	 Putative acid  amine ligase YgiC	0.00259434695598
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RJP7	 Molybdenum cofactor synthesis domain containing protein	0.00259417286967
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89V93	 Bll1154 protein	0.00259389206102
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JLA5		0.00259349408112
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7X4P3	 Phosphoserine phosphatase	0.0025932654826
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LWX1	 Flagellar basal body rod protein FlgB	0.00259315052719
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABY9	 Flagellar transcriptional regulator FlhC	0.00259264063303
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X3WS87	 Lipoprotein	0.00259229005068
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33361	 Putative osmoprotectant uptake system permease protein YehY	0.00259170245111
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37643	 Inner membrane metabolite transport protein YhjE	0.00259152656304
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJY9	 Permease YjgP YjgQ family protein	0.00259135039189
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NRA2	 Putative transcriptional regulator	0.00174383209321
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76389	 UPF0053 protein YegH	0.00259124261398
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G3XD01	 UDP 2 acetamido 3 amino 2,3 dideoxy D glucuronate N acetyltransferase	0.00259026181589
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKL2		0.00258995758931
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q60356		0.00258988471759
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21418		0.00258926065066
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F4C648		0.00258886787406
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023YKS2		0.00258883506541
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E9U922		0.00258883506541
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K3IVE3		0.00258883506541
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64586	 Inner membrane protein YqjE	0.00258883506541
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3YS78	 50S ribosomal protein L36	0.00258883506541
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YA28		0.00258883506541
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P05719	 Type 1 restriction enzyme EcoKI specificity protein	0.00258874737936
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MBY5	 Putative N acetylmannosamine 6 phosphate 2 epimerase	0.00258754317814
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S6CA35	 Truncated bacteriocin ABC transporter ATP binding and permease components	0.00258749201005
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4FIQ1	 Inositol 2 dehydrogenase 3	0.00258741439624
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A960	 Glutamate pyruvate aminotransferase AlaA	0.00179017786078
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0A960	 Glutamate pyruvate aminotransferase AlaA	0.00079614685637
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KPG5	 UDP N acetylmuramoylalanine  D glutamate ligase	0.00258609446603
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZPD3	 tRNA pseudouridine synthase A	0.00256717406483
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28RD6	 Ribosomal RNA small subunit methyltransferase A	0.00257132275908
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5FM40	 ATP phosphoribosyltransferase	0.00258486949999
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFR9	 Inner membrane ABC transporter permease protein YdcV	0.00258481427515
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HWF9	 Bacterioferritin	0.00241294792391
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1R625		0.00247003771723
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7CGI0	 Cell division protein FtsP	0.00258416320585
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV04	 Transposase, IS3 IS911family	0.00258360509558
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q93SE0	 Vitamin B12 transporter BtuB	0.00258307168615
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XXA0	 Exodeoxyribonuclease III	0.00258306448499
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A037Y8T3		0.00219488190329
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PWP6		0.00258287531843
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5X5Y4	 Oxidoreductase dehydrogenase	0.00258244912162
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4TKU5	 RNA 3 terminal phosphate cyclase	0.0025823360594
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6N8F8	 Formyl coenzyme A transferase	0.00258185559572
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2ICY0	 N acylglucosamine 2 epimerase	0.00258129732167
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8HFP7	 Transcriptional regulator, LysR family	0.00258118357633
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46840		0.00258074922031
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2JIJ5	 Malate dehydrogenase  (NADP(+)), Phosphate acetyltransferase	0.0024455332064
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2JIJ5	 Malate dehydrogenase  (NADP(+)), Phosphate acetyltransferase	0.00013454739575
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJJ6	 Predicted CRISPR associated protein	0.00258001658734
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0GGN0	 Sortase like acyltransferase	0.00257967645079
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q56114	 Aspartate aminotransferase	0.0025796314711
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI00022CAA7D	 hypothetical protein LOC100749102	0.00257012738939
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37629		0.0025792041031
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKA3	 Demethylmenaquinone methyltransferase	0.00257877465372
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44779	 L fucose isomerase	0.00257779446958
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NHQ3	 Probable cobyrinic acid A,C diamide synthase	0.0025770938585
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T1ZVL8	 TetR AcrR family transcriptional regulator	0.00257603408184
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45563	 Purine nucleoside phosphorylase 2	0.00257528866486
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E3GWS4	 Oxidoreductase domain protein	0.00257473142581
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9ZBH5	 Diaminopimelate decarboxylase	0.00245001709111
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P19318	 Respiratory nitrate reductase 2 beta chain	0.00257420154248
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39374		0.00257376047305
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77445	 Ethanolamine utilization protein EutE	0.00257329480208
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7N2P9	 Oxygen dependent choline dehydrogenase	0.00252366089971
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25539	 Riboflavin biosynthesis protein RibD	0.0025679510657
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R5WTT7	 Acriflavine resistance protein B	0.00257190261101
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABR8	 Putative dioxygenase subunit alpha YeaW	0.00257079723899
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30845	 Phosphoethanolamine transferase EptA	0.00257070694701
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB60	 Lipopolysaccharide regulatory protein	0.00257004973373
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R4KHK5	 ADP forming acetyl coenzyme A synthetase	0.00256948890189
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WVU0	 Ribosomal silencing factor RsfS	0.0025689474872
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46898	 CRISPR system Cascade subunit CasD	0.00256893692862
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2LP54	 AraC family transcriptional regulator	0.00256884305687
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E7HD27	 EAL domain protein	0.00256876923874
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57926	 Probable homocitrate synthase AksA	0.00255632009386
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45579		0.00256804880451
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGC1	 Hexose phosphate transport protein	0.00256792771908
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZTA0	 Glyoxylate hydroxypyruvate reductase B	0.00250257270672
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AET9	 7 alpha hydroxysteroid dehydrogenase	0.00256671620045
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QIL3		0.00256536168457
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XC28	 Tyrosine protein kinase etk	0.0025649410016
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TQ68	 Aspartate  tRNA ligase	0.00256408964023
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45848		0.00256407204262
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J464	 Pseudouridine synthase	0.00256365244557
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37773	L alanyl gamma D glutamyl meso diaminopimelate ligase	0.00256328124444
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q6L0P2	 50S ribosomal protein L15e	0.00256283093398
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F4BY74	 Acyl coenzyme A synthetase	0.00256243285136
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39161	 Uxu operon transcriptional regulator	0.00256208647276
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PVP7		0.00256187804208
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5X205	 GNAT family acetyltransferase	0.00256152738376
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q4QLU9	 23S rRNA  C(5)) methyltransferase RlmC	0.00256149071506
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNA9		0.00173666681975
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNV0		0.00256083731773
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32152	 Putative frv operon regulatory protein	0.00256074154453
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SLZ9	 Energy converting hydrogenase B subunit O EhbO	0.00256040695585
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1RA65		0.00255999905436
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE38	 Arginine N succinyltransferase	0.00191468168309
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AE38	 Arginine N succinyltransferase	0.000361750027159
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P0AE38	 Arginine N succinyltransferase	0.000138307626783
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F6D1X0	 Peptidyl prolyl cis trans isomerase	0.00255910226289
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P26389	 Colanic acid biosynthesis protein WcaM	0.00255876383771
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMI0	 Zn dependent protease, peptidase M48 family	0.00255849609202
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76045	 Outer membrane protein G	0.0025582964153
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_U6EDC0	 Methyl viologen reducing hydrogenase subunit delta	0.0025574491288
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E8TBW5	 Sugar ABC transporter	0.00253037311004
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27126	 DNA directed RNA polymerase subunit A	0.00255695465303
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B2Z9	 GCN5 related N acetyltransferase	0.00255669892535
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M1J1	 Prophage CP4 57 regulatory	0.00255647462709
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PL14	 Regulatory protein, PpaA	0.00255643646716
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4ZMT7	 Additional lipoprotein component of predicted cobalamin ECF transporter	0.00255621796383
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X5V6	 tRNA dihydrouridine synthase A	0.00244258737563
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q8X5V6	 tRNA dihydrouridine synthase A	0.000113443334325
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B346	 FixH family protein	0.00248823615953
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TYD7	 GMP synthase [glutamine hydrolyzing] subunit B	0.0025559929679
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADD5	 Inner membrane protein YjjP	0.0025559158293
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8SDT3	 Phi105 orf 44 like protein	0.00255572526485
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57GZ6	 Maltoporin	0.00255564763547
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37663		0.00255542595546
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0KTT2	 4 hydroxy tetrahydrodipicolinate reductase	0.00232277589693
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0KTT2	 4 hydroxy tetrahydrodipicolinate reductase	0.000232102454139
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9S0M6	 Dihydrouridine synthase family protein	0.00255470534526
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1JFW5	 Putative sialic acid transporter	0.002554525898
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q02394	 5,10 methenyltetrahydromethanopterin hydrogenase	0.00255432862191
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0Y1	 Thymidylate synthase ThyA	0.00255270043746
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMP4	 Cobalamin biosynthesis protein G, CbiG	0.00255190016123
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PSP1		0.00255178707393
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VL64	 RNA polymerase sigma factor SigX	0.00255116122211
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27390	 Diaminopimelate decarboxylase	0.00254565962106
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57240		0.00254932512084
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B2A6B3	 50S ribosomal protein L21	0.00153285388787
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B2A6B3	 50S ribosomal protein L21	0.00101599478648
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A017TPE1		0.00254848494646
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q13DH5	 Transcriptional regulator, LysR family	0.00254823237371
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADM6		0.00254784938262
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACV7	 Protein MpaA	0.00254740055364
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNW2		0.00249139821392
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32129	 Probable acyltransferase YihG	0.00254675766296
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A2K8	 UTP  glucose 1 phosphate uridylyltransferase	0.0023423486475
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DWC2	 Peptide deformylase	0.00252375114666
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNZ4	 Transcriptional regulator, SARP family	0.00254549284303
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLA2		0.00254532523238
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24202	 Mrr restriction system protein	0.0025450930248
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P96349	 Cold shock protein 2	0.00254400809092
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q0W484	 Homoserine O acetyltransferase	0.00254358080436
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0BZG8	 RND transporter, hydrophobe amphiphile efflux 1  family, permease protein	0.00254357705484
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNZ2	 Magnesium chelatase subunit	0.00254311827241
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8ALR3	 L carnitine gamma butyrobetaine antiporter	0.00254257231543
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q59042	 Phosphoribosylformylglycinamidine synthase 1	0.0025414629724
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39277	 Inner membrane protein YjeH	0.00254133490714
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52133		0.00254036042613
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q06115	 Choloylglycine hydrolase	0.00254013029534
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J096		0.00132900650583
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HGM5		0.002539138678
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08194	 Glycerol 3 phosphate transporter	0.00253890109762
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM16	 Phosphoribosylformylglycinamidine cyclo ligase	0.00253839959014
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4VTV7	 Acetyltransferase 	0.00253816730522
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q7NNG3	 Phosphate import ATP binding protein PstB 2	0.0020758861809
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q7NNG3	 Phosphate import ATP binding protein PstB 2	0.000456153344813
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PYG7		0.0025372692808
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58586	 Putative gluconeogenesis factor	0.00253719106591
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE47	 UPF0053 inner membrane protein YtfL	0.00253662864629
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI00037E75DF	 histidine kinase, partial	0.00225432191493
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27041	 V type ATP synthase subunit I	0.00253596594851
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B9DTE1	 Major Facilitator Superfamily protein	0.00253489021962
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULJ5		0.00253461781155
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM89	 Adhesin like protein	0.00252574634981
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77529		0.0025344039145
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MK41	 Ribosomal RNA large subunit methyltransferase H	0.00253387561364
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MDM9	 Phosphoenolpyruvate carboxykinase [ATP]	0.00252507673127
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I2DGR3	 Phage colicin tellurite resistance cluster TerY protein	0.00253353955916
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PSW3		0.00253346128208
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EA26	 Methyltransferase domain protein	0.0025315257989
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30847	 Signal transduction histidine protein kinase BaeS	0.00253124165738
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5REH0	 G U mismatch specific DNA glycosylase	0.00253117756876
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P56902	 3 oxoacyl [acyl carrier protein] synthase 2	0.00252126781913
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76168	 Putative lambdoid prophage Qin defective integrase 	0.00253030160512
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32703		0.00253013753563
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6X3Z0		0.00252999790484
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28246	 Bicyclomycin resistance protein	0.00252900686292
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O32867	 Tetrahydromethanopterin S methyltransferase subunit A	0.00252890136039
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A6M0		0.00167296791548
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PWW4		0.00252806676019
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6ZYE2	 Galactosamine 6 phosphate isomerase	0.00252806428923
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2IIK5	 tRNA 2 methylthio N dimethylallyladenosine synthase	0.00252781387304
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1A9I1	 Formate transporter	0.00252776977534
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N4Y922	 Phosphatidylglycerol lysyltransferase	0.00252776258709
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZ23	 GMC oxidoreductase family protein	0.0025276722981
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q18KF1	 ABC type transport system ATP binding protein	0.00252753945592
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A6M027	 YCII related	0.0025275071279
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27308	 Ferredoxin like protein	0.0025251294277
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN80		0.00252460706833
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75736	 Esterase YbfF	0.00252448938486
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q65H61	 30S ribosomal protein S21	0.00252411418878
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AD19	 Inner membrane protein YohK	0.00252396337519
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF19	 N acetylglucosamine 6 phosphate deacetylase	0.00245731980751
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27129	 Lipopolysaccharide 1,2 glucosyltransferase	0.00252349752018
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IXS5		0.00170581884647
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37604	 D alanyl D alanine carboxypeptidase DacD	0.00252313668809
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45768	 Inner membrane amino acid ABC transporter permease protein YhdY	0.00252269787216
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9PHC7	 Oxygen dependent coproporphyrinogen III oxidase	0.00232199512772
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9PHC7	 Oxygen dependent coproporphyrinogen III oxidase	0.000177754520338
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ57	 Putative manganese efflux pump MntP	0.00252224204287
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9ZLC0	 Anaerobic C4 dicarboxylate transporter DcuA	0.00241856033371
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZLC0	 Anaerobic C4 dicarboxylate transporter DcuA	0.000103553402612
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27047	 tRNA 2 agmatinylcytidine synthetase TiaS	0.00252192975049
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KNM9	 K H(+) antiporter NhaP2	0.00236656268965
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9KNM9	 K H(+) antiporter NhaP2	0.0001553334128
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O05255		0.00220618182649
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_O05255		0.000315426853881
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q87VS1	 tRNA dihydrouridine synthase B	0.00210084900052
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87VS1	 tRNA dihydrouridine synthase B	0.000413032675599
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37417	 UDP N acetylenolpyruvoylglucosamine reductase	0.00252055053236
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U2R2		0.00244054775666
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7ZBE6	 Protein MazG	0.00179779766209
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F7ZBE6	 Protein MazG	0.000679906800686
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V2I282	 FAD linked oxidase	0.00251995899458
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1J061	 UPF0178 protein YaiI	0.00251994076823
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q02443	 Protein PucC	0.00251972459705
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52108	 Transcriptional regulatory protein RstA	0.00251940247869
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S9S5F9	 Malate synthase G	0.00251930708436
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F2L4	 Elongation factor P	0.00251896022343
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJT6		0.00251828676116
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45475		0.00251767975297
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8VNN2	 Beta galactosidase	0.00251724181643
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24200	 5 methylcytosine specific restriction enzyme A	0.00251697481513
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1V5	 CBS domain containing protein	0.00251687647359
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P66951	 Beta barrel assembly enhancing protease	0.00237305060002
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21514	 Cyclic di GMP phosphodiesterase YahA	0.00251646825169
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C4K7X8	 Phosphoheptose isomerase	0.00249459736505
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X8L2K3	 Putative aldehyde alcohol dehydrogenase 	0.00251601935519
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46139	 Probable diguanylate cyclase YfiN	0.00251539699783
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L7V3	 mRNA interferase MazF	0.00131663823114
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L7V3	 mRNA interferase MazF	0.00119841332847
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6LQB9	 HTH type transcriptional repressor PurR	0.00251487901747
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X534	 Enterobactin exporter EntS	0.00251472642477
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FF13	 Low molecular weight protein tyrosine phosphatase PtpB	0.0025142118911
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TNE5	 Bacteriophage replication gene A protein 	0.00167488185248
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P06131	 Formate dehydrogenase subunit alpha	0.00251062927444
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJX8	 Peptide nickel ABC transporter, permease component, DppB	0.0025122582146
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5FN15	 Multidrug resistance protein MdtL	0.00251213889722
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I4SI86	 Phenylacetate CoA ligase	0.00251124065761
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CSP4	 UPF0291 protein SE_1024	0.0013679987187
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSP4	 UPF0291 protein SE_1024	0.00114298318959
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8IAB0	 Amino acid ABC transporter permease protein	0.00251094407826
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28249	 Protein AsmA	0.00251073969441
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWC2		0.00190898714762
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P11988	 6 phospho beta glucosidase BglB	0.00246605744114
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D4J6G0	 Amino acid ABC transporter substrate binding protein, PAAT family 	0.00250837388574
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1B3	 Transposase	0.00250783740756
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTQ9	 Protein VraC	0.0025065048246
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DTK1		0.00250616547951
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DYK7	 ATPase	0.00250542399612
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X613	 Transcriptional regulatory protein ZraR	0.00250501914286
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZ50	 Nicotinate phosphoribosyltransferase	0.00250451096772
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9K0Y6	 Phospho N acetylmuramoyl pentapeptide transferase	0.00173157837279
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9K0Y6	 Phospho N acetylmuramoyl pentapeptide transferase	0.000642818993461
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9K0Y6	 Phospho N acetylmuramoyl pentapeptide transferase	0.00012994152838
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SPD8		0.0025042352202
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2IUI4	 S adenosylmethionine synthase	0.00181861039159
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2IUI4	 S adenosylmethionine synthase	0.000674069875504
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47537	 Taurine binding periplasmic protein	0.00178794442732
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q47537	 Taurine binding periplasmic protein	0.000714741375831
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKK1	 DNA binding protein MutS2	0.00250256396289
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DVU8	 Putative hydrolase SMU_367	0.00250242767165
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B9DS55	 Sortase A	0.00250127568297
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P78283	 Protein translocase subunit SecY	0.00233388250742
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P78283	 Protein translocase subunit SecY	9.24583951983e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P78283	 Protein translocase subunit SecY	7.48440085598e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46122		0.00250111643141
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL56	 Molybdopterin biosynthesis protein, MoeB	0.00249991728929
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y3DCZ9		0.00249990436658
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FJ67		0.00234468448584
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SVC2		0.00249905403117
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27833	 dTDP 4 amino 4,6 dideoxygalactose transaminase	0.00249848815012
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R4R4	 Pleiotrophic effects on 3 hydrogenase isozymes	0.00249820868504
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P07026	 Regulatory protein SdiA	0.002497981833
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0TLV3	 Carnitinyl CoA dehydratase	0.00249603635929
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J225	 Bacteriophage head tail adaptor	0.00249572823276
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2RWR8	 Light independent protochlorophyllide reductase subunit N	0.00198246567416
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2EZJ0		0.00241272106279
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023KKD3		0.00249553265387
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PWJ9	 Glycosyl transferase group 1 family	0.0024954068875
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSD8	 Single stranded DNA binding protein	0.00224987054241
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DSD8	 Single stranded DNA binding protein	0.000245059629977
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK20	 GMP synthase [glutamine hydrolyzing] subunit A	0.00249478144913
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7Q7T7	 Escherichia coli IMT2125 genomic chromosome, IMT2125	0.00249467939003
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZ14	 ABC transporter ATP binding protein	0.00249438970308
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76251	 D malate dehydrogenase [decarboxylating]	0.00244280275952
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQ32		0.00222276401836
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL13	 Acetolactate synthase , large subunit, IlvB	0.00249275769955
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NHY7	 L tyrosine decarboxylase	0.00249240438127
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZKH0	 Multidrug resistance protein MdtH	0.00249229856022
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFU9	 UPF0425 pyridoxal phosphate dependent protein Msp_0916	0.00249216067736
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L2ZQX2	 Melibiose carrier protein	0.00249180175317
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46855		0.00249130620467
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7MB61	 Glucosamine 6 phosphate deaminase	0.00247414685198
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23890	 Transcriptional activator CadC	0.00248832307723
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5NWB0	 NADH quinone oxidoreductase subunit N	0.00248749484239
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMX1	 Predicted membrane associated Zn dependent protease	0.00248623329856
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABG2	 Phosphatidate cytidylyltransferase	0.00248598581138
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5N0A7	 DNA ligase	0.00248494175128
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76278	 Inner membrane protein YebZ	0.00248477110335
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8AQ52		0.00248415416226
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAZ2	 Inner membrane protein YbjO	0.00248302066975
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O29406	 Serine hydroxymethyltransferase	0.00248274790427
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6D108	 Lysophospholipid transporter LplT	0.00248274180633
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SHN0	 ABC transporter ATP binding protein	0.00248198775151
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMD9		0.00248192723125
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6IUC1	 Methylthioribose 1 phosphate isomerase	0.00248183438962
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKN8	 Formate dehydrogenase, iron sulfur subunit	0.00248148526201
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E6JKQ2		0.00192033755933
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76369		0.00248069469877
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLP2		0.00212795804337
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJV0	 Probable 3 phosphoshikimate 1 carboxyvinyltransferase	0.00248001100251
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23842		0.00246741559175
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77615		0.00247828440913
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0IQG7		0.00247827861554
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DU05		0.00247795207078
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULW6	 50S ribosomal protein L10e	0.00247734191095
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI00037CDE8E	 amino acid binding protein	0.00247717036661
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27269	 5 formaminoimidazole 4 carboxamide 1  D ribofuranosyl 5 monophosphate synthetase	0.00247701813191
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJI7	 Asparagine synthetase, AsnB	0.00247675595708
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P78061	 Gamma glutamylputrescine synthetase PuuA	0.00242239035715
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P10121	 Signal recognition particle receptor FtsY	0.00247613057085
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WZ35		0.00234212498769
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0ZLP6	 Putative formate dehydrogenase accessory protein	0.00247578516132
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P05101	 Modification methylase EcoRII	0.00247458175161
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46939	 Probable acetyl CoA acetyltransferase	0.00247442998713
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S0JG44		0.00247397040062
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFT0	 Murein DD endopeptidase MepM	0.00244350408646
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKM5	 6 phosphogluconate dehydrogenase, beta hydroxyacid dehydrogenase related, MmsB	0.002473871394
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36999	 23S rRNA  N(1)) methyltransferase	0.00234558096893
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46130	 Putative acyl CoA thioester hydrolase YbhC	0.00247276139067
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A024L4S5	 Tail protein	0.00246692991361
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44910	 GTP binding protein TypA BipA homolog	0.00115880982628
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P44910	 GTP binding protein TypA BipA homolog	0.000932487833838
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P44910	 GTP binding protein TypA BipA homolog	0.000215319243461
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P44910	 GTP binding protein TypA BipA homolog	0.000165158237623
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TI09	 Probable phosphoglycerate mutase GpmB	0.00247169915266
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4SMK1	 L lactate dehydrogenase [cytochrome]	0.00245728318989
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J153	 Class I diheme cytochrome c	0.0024713417567
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADY2	 Peptidyl prolyl cis trans isomerase D	0.00247119510841
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9UNY1		0.00231142345208
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39356		0.00247063903643
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PUA8		0.00246898399412
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2RYH6	 KpsF GutQ	0.00247047921118
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFJ6	 Putative methylthioribose 1 phosphate isomerase	0.00246999835758
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F8KHX1	 ArsR family transcriptional regulator	0.00246991343621
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RX01		0.00175384786812
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TYE3	 Transcription regulator	0.00246915297802
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E3GYA2	 Phosphate uptake regulator, PhoU	0.00246900509494
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACM1	 Pyruvate dehydrogenase complex repressor	0.00246755380761
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4W1F2	 NTP pyrophosphohydrolase including oxidative damage repair enzymes	0.00246726196354
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULZ9		0.00246726012239
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0JLF4	 Lactoylglutathione lyase	0.00246705417427
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJL7	 Precorrin 6y C5,15 methyltransferase  CbiE	0.00246695654002
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D0B1T7	 Alkyl hydroperoxide reductase Thiol specific antioxidant Mal allergen	0.00246625680464
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WX29	 NH dependent NAD(+) synthetase	0.00246616707242
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77569	 Mhp operon transcriptional activator	0.00246616641835
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7L4M7	 Glutathione regulated potassium efflux system protein KefB	0.00246610211693
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LI88	 Rhomboid family protein	0.00246599813324
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77624	 Carbamate kinase like protein YahI	0.00246587114781
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75691	 Aldehyde reductase YahK	0.00230585357375
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P75691	 Aldehyde reductase YahK	0.000160007238593
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP56		0.00246533034355
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AD45	 Quorum sensing regulator protein G	0.00246481479996
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P63726	 Succinate dehydrogenase cytochrome b556 subunit	0.00233404921836
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P67711	 Transcriptional regulator MntR	0.00246417307405
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04KQ9		0.00236159476665
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q04KQ9		0.000102398141536
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31134	 Putrescine transport ATP binding protein PotG	0.00246312986682
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51485	 Porin B	0.00246307759909
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F6D5Z8	 ABC type transporter, periplasmic subunit	0.00246294746673
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNU3		0.00246269378601
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W6EEF6		0.00246255042807
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4VVR6	 Predicted O methyltransferase	0.00246249019618
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN34	 Molybdopterin guanine dinucleotide biosynthesis protein B, MobB	0.00246183571227
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q3JF19	 Glycerol 3 phosphate dehydrogenase [NAD+]	0.0024616610505
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_U6ED09	 ATP dependent RNA helicase, DEAD DEAH box family	0.00246133044395
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XKQ2	 Galactose methyl galactoside import ATP binding protein MglA	0.00203495633385
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XKQ2	 Galactose methyl galactoside import ATP binding protein MglA	0.000404907256209
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M5N5		0.00172648306117
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEJ7	 Ethanolamine ammonia lyase heavy chain	0.00245944402605
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KL85	 Transporter, RhaT family, DMT superfamily	0.00245933628557
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52662	 HTH type transcriptional regulator PecT	0.00245904580899
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SQB8		0.0024585713751
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZQ55	 NAD kinase	0.00239807037747
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X8H9	 Protein RdoA	0.00245841671058
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77395		0.00245707775213
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L660		0.00123118243931
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L660		0.00122568612308
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGG9	 Metalloprotease TldD	0.00212777115968
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AGG9	 Metalloprotease TldD	0.000329048316438
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A037YFV8	 Transposase	0.00245677245132
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNN3	 Arylsulfatase regulator, AslB	0.0024567152069
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q00753	 Msm operon regulatory protein	0.00245666942754
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V2P8		0.00245648330457
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57884	 Probable hydrogenase nickel incorporation protein HypB	0.00245621241334
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI00036D44BD	 hypothetical protein, partial	0.00245619645673
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAJ9	 Hydrogenase 2 operon protein HybA	0.00245618154359
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P40882		0.00218814208756
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P40882		0.000193418711788
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75974	 Putative lambdoid prophage e14 repressor protein C2	0.00245532288083
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q321F0	 3 dehydroquinate dehydratase	0.00245522961111
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP18		0.0024551880266
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SMB0	 Dihydropteroate synthase related protein	0.00245377310097
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46855		0.00245376965359
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PNK2		0.00245323473187
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJE1		0.00245265659851
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KPL8	 Thymidine phosphorylase	0.00228672151227
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9KPL8	 Thymidine phosphorylase	0.000162140788102
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36661		0.00245194955897
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A6UPR3	 Glutamyl tRNA amidotransferase subunit E	0.00245194120287
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2LS39	 Ribonuclease E	0.0024517632868
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X9H6		0.00245171719987
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q03224	 Fructose 1,6 bisphosphatase class 2	0.00242894103537
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26249	 Probable cobalt precorrin 6B C methyltransferase (decarboxylating)	0.00245125076656
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R5KA87	 MATE efflux family protein	0.00245113653716
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP64	 O linked GlcNAc transferase	0.00244991351855
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F0L9R1		0.00242127497403
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZN22	 Alpha,alpha trehalose phosphate synthase [UDP forming]	0.00244331126755
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F6IEQ5		0.00240391827502
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8G0H1	 MarR family transcriptional regulator	0.00244771578694
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O33952	 UDP glucose 6 dehydrogenase	0.00226289802836
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_O33952	 UDP glucose 6 dehydrogenase	9.64322517171e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P51024		0.00233100836942
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SEY7		0.00244666672663
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X6V3		0.00244628920473
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZIN4	 Adenylate kinase	0.00186619040434
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A7ZIN4	 Adenylate kinase	0.000555595970555
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P07003	 Pyruvate dehydrogenase [ubiquinone]	0.00244581882067
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P09835	 Sensor protein UhpB	0.0024456355025
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75685	 Inner membrane protein RclC	0.00244474123991
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P95468	 Aromatic amino acid aminotransferase	0.00244460412536
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75822		0.00243332022845
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F6D4R4	 Peptidase U32	0.00244320604454
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N6G1		0.00244303103365
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TGB7	 Cation efflux pump FieF	0.00244249815751
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9MN50		0.0022260916414
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DU86		0.00240109725098
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9CJZ7	 Ring hydroxylating dioxygenase, alpha subunit	0.00243947734761
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNK0	 N acetyltransferase, GNAT family	0.00243947663736
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KJJ0	 Proton translocating NADH quinone oxidoreductase, chain L	0.00243902207467
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77689	 FeS cluster assembly protein SufD	0.00243846113849
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N4C9		0.000952495920299
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76339	 Probable sensor like histidine kinase YedV	0.00243734725176
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6T515	 Cysteine O acetylserine efflux protein	0.00243706360186
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T1ZZG8		0.00243659148899
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P29013		0.00243657955832
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39344	 Gnt II system L idonate transporter	0.00242069076991
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9U440		0.00243638430138
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LSD5	 3 oxoadipate enol lactonase	0.00243625596186
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q72CF3	 50S ribosomal protein L17	0.00243619199055
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q59641	 Peptidyl prolyl cis trans isomerase A	0.0024359939099
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C6B577	 Peptidase S8 and S53, subtilisin, kexin, sedolisin	0.0024357849012
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQF3	 Transposase, IS200 family, truncation	0.00243537060285
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZS96		0.00243527525109
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MPG3		0.00218994780743
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52005	 Cytochrome c type protein TorY	0.00243480719324
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L5F0	 Thioredoxin	0.00243444422138
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E9S218		0.00243218522382
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V093	 Type 4 fimbrial biogenesis protein FimU	0.00243179136618
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27127	 Lipopolysaccharide 1,6 galactosyltransferase	0.00243155424127
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21599	 Pyruvate kinase II	0.00241269401446
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1HXC5	 Sulfate binding protein  (SSI2)	0.00158274778762
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1HXC5	 Sulfate binding protein  (SSI2)	0.000848276457079
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27123	 DNA directed RNA polymerase subunit B	0.0024306528956
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P05824	 DNA repair protein RecN	0.00243011943283
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A6X2	 Glutamyl tRNA reductase	0.00243003839199
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NR96		0.00181095176719
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P08656	 Mercuric transport protein	0.00242985426985
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77475	 Fructose 1 phosphate phosphatase YqaB	0.00242982081202
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15034	 Xaa Pro aminopeptidase	0.00233360941127
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27292	 Inosine 5 monophosphate dehydrogenase related protein III	0.00242872691825
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADP0	 Flavin mononucleotide phosphatase YigB	0.00242817870642
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMG3	 Potassium transport system, membrane component, KefB	0.00242795025064
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMJ4	 Type II restriction endonuclease	0.00242753347519
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMY3		0.00228568138163
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5EZ88	 LPS assembly lipoprotein LptE	0.00242703602941
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X715	 Protein GntX	0.00242649467923
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D0ZSY8	 Anti sigma E factor RseA	0.00242537667543
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39172	 High affinity zinc uptake system protein ZnuA	0.00242499040194
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16678	 Putative phosphonates utilization ATP binding protein PhnK	0.00242475669498
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZTD1	 Fibrinogen and keratin 10 binding surface anchored protein	0.00242383369355
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B4G8	 Orn DAP Arg decarboxylase 2	0.00242331050038
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q92HL2	 Transcription termination factor Rho	0.00242315880704
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJ00	 Undecaprenyl phosphate galactose phosphotransferase	0.00242299497666
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LSU8	 Membrane associated zinc metalloprotease, putative	0.00242299323921
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9MPN8	 UPF0306 protein YhbP	0.00242297137126
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77619	 UPF0214 protein YfeW	0.00242265115948
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y9YFG1	 Serine aspartate repeat containing protein D	0.0024226334014
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0CE45	 Glucuronide carrier protein	0.00242258184581
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC61	 Glutaredoxin 2	0.00242220295177
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6D3A9	 Glutathione import ATP binding protein GsiA	0.00239391207466
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKH0	 Mechanosensitive ion channel protein, Sm like ribonucleoprotein superfamily, MscS	0.00242161691611
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SNP1	 OmpA MotB domain protein	0.00242144006384
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM81	 Acetyltransferase, GNAT family	0.00242118787136
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0HDL5	 LexA repressor	0.0024205902354
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T543	 HTH type transcriptional regulator ytcD	0.00242048274204
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O31214	 Ubiquinol cytochrome c reductase iron sulfur subunit	0.00242028537818
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4ZDD2	 Polysaccharide ABC exporter membrane spanning protein	0.00242002534945
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7ADY9		0.00241907284337
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G0D6I9		0.00194162629906
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q06065	 Acetoacetate metabolism regulatory protein AtoC	0.00241858244764
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZME4	 Acetyltransferase  family protein	0.00241811822678
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39367		0.00241794555366
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4SFU3	 Biofilm PGA synthesis lipoprotein PgaB	0.00241637814809
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49XB9		0.00162461926977
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49XB9		0.000791503094211
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SV43		0.00241598077449
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1AXZ6	 Rhodanese	0.00239829946767
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0DFS6		0.00241545540042
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1AHM5	 Protein CbrA	0.00241477086619
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULH7	 UPF0290 protein Msm_0850	0.00241472796756
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X2U0		0.00191220771877
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X2U0		0.000502311281348
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PVE4	 Glycosyltransferase GT2 family	0.00241450809789
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D9RMY1		0.00125383833699
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RMY1		0.00116051227071
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HJ36		0.00241287346175
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJM3	 Amidohydrolase	0.00241281630693
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L2ZHW9	 3 propionate 3 hydroxycinnamic acid hydroxylase	0.00241278457688
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN24	 Adhesin like protein	0.00241240686353
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WRU9	 PRC barrel domain protein	0.00227758325391
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ79	 Adhesin like protein	0.00241069863339
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P13518	 RNase E specificity factor CsrD	0.00241185958674
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0C0G1	 Dihydropteroate synthase	0.00221842909117
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0C0G1	 Dihydropteroate synthase	0.000184578734097
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D4GIA4	 YhbT	0.00241161504071
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33634		0.00241081917537
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5WG42	 NADH quinone oxidoreductase subunit H	0.00187170614918
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5WG42	 NADH quinone oxidoreductase subunit H	0.000437499290392
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WG42	 NADH quinone oxidoreductase subunit H	0.00010157401162
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PS82	 ABC transporter related	0.00241042163008
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5ZLB8	 Transglycosylase protein	0.00240955394772
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF07	 Motility protein B	0.00240933044647
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6A9K7	 UvrABC system protein B	0.0018665100781
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q6A9K7	 UvrABC system protein B	0.000370654535101
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A9K7	 UvrABC system protein B	0.000172082618904
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46858		0.00240863044641
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZA0	 Amidohydrolase	0.00240807889545
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZNU9		0.00240748163975
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31069	 Voltage gated potassium channel Kch	0.00240742703617
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6I0E7		0.00240698841331
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAP6		0.00237266598557
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNL2	 Adhesin like protein	0.00240666947373
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49VH1	 Putative antiporter subunit mnhC2	0.00149387438778
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49VH1	 Putative antiporter subunit mnhC2	0.000912513865951
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9G2	 Transcriptional activator protein NhaR	0.00240563304134
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47208	 Protein FdrA	0.00240562152571
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77375		0.00240556196535
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76053	 Probable DNA endonuclease SmrA	0.00240526989997
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NE88	 Methionine aminopeptidase	0.00240489294716
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P09099	 Xylulose kinase	0.00240471174556
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31550	 Thiamine binding periplasmic protein	0.00240468774752
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1CVX6	 Potassium efflux system KefA protein   Small conductance mechanosensitive channel	0.00240423099626
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q329T6	 Low affinity potassium transport system protein kup	0.00240395229412
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8HG03		0.00240391827502
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3STJ7		0.00240391827502
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8SWM4		0.00240391827502
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIV7	 Quinolinate phosphoribosyl transferase	0.00240340106341
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7MGT4	 Phosphoribosylamine  glycine ligase	0.00240317327417
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32704		0.00240315871514
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKJ2		0.00209497171302
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F6D690	 Metallophosphoesterase	0.00240274452638
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4W853	 Negative modulator of initiation of replication	0.00240263027214
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FJN9	 Cardiolipin synthase B	0.00240221270952
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWI6	 ABC 2 type transporter	0.00240204564891
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1AP48	 Penicillin binding protein 2 	0.00240128226871
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E3Y1	 Carbohydrate kinase PfkB family	0.00240123083612
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P50599	 Protein TolR	0.00240098036167
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MGZ5	 Membrane bound lytic murein transglycosylase F	0.00240064805106
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PTD3	 Chlamydial polymorphic outer membrane protein repeat containing domain protein	0.00240057872016
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_C5A6Q6	 tRNA binding protein, putative	0.00240052607326
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P02906	 Sulfate binding protein	0.002400232446
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P30900	 Acetylornithine aminotransferase	0.0023999258124
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D7A419	 ABC transporter related protein	0.0023993684955
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TH46	disulfide interchange protein DsbD	0.00239923249556
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C8U2L5	 Predicted fimbrial like adhesin protein SfmF	0.00239842151068
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL93	 Biotin [acetyl CoA carboxylase] ligase biotin operon regulator bifunctional protein, BirA	0.00239771319611
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75749		0.0023976722967
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E0J5J4	 2 dehydro 3 deoxygluconokinase	0.00233939699456
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39314	 Inner membrane protein YtfF	0.00239458902801
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0C0C8	 S ribosylhomocysteine lyase	0.0019558964562
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0C0C8	 S ribosylhomocysteine lyase	0.000427501596602
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1JKQ0	 tRNA  methyltransferase TrmJ	0.0023941950884
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P13458	 Nuclease SbcCD subunit C	0.00239392802893
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5F974	 Pantothenate synthetase	0.0023938059633
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CRC4		0.00239344242889
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q6AKT0		0.00239186995835
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D4GNJ8	 Cell division protein ZapC	0.00239161480441
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_E1XJQ2		0.00239158313247
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46769	 dTDP 4 dehydrorhamnose reductase	0.00238134420612
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6FYD4	 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	0.00212031830643
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q6FYD4	 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	0.000257798201785
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32672	 Fructose like permease IIC component 2	0.00239051417817
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58054	 Hydrolase YbeM	0.00239042019094
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45077	 Metalloprotease PmbA homolog	0.00238683730327
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_L0KYG3	 Methanol cobalamin methyltransferase B subunit	0.00239016699134
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76204	 Putative anti FlhCFlhD(4) factor YdiV	0.002389641243
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ84	 Adhesin like protein	0.00238958414559
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FDG7	 L tartrate succinate antiporter	0.00238894353181
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AA62	 Inner membrane protein YghB	0.00238883982774
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRH1		0.00238866120857
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27552	 Leucine  tRNA ligase	0.0023881301783
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42592	 Glucosidase YgjK	0.00238787770874
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q74RF9	 Maltose transport system permease protein MalF	0.00238785954671
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V7EQ63	 Ribonuclease E	0.0023872062182
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE17	 Protein AmpG	0.00238687857698
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P38051	 Menaquinone specific isochorismate synthase	0.00238130166132
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HI37	 Probable family 20 transposase	0.00238402011599
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I1WSZ4	 Transcriptional activator protein IrlR	0.00147490077131
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I1WSZ4	 Transcriptional activator protein IrlR	0.000907870826405
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN25	 Adhesin like protein	0.00238019897137
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39407		0.00238206470263
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK42		0.00238175539715
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C3TQZ2	 Thiamine import ATP binding protein ThiQ	0.00238175281059
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SDR9	 Thioredoxin	0.0023816238104
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21189	 DNA polymerase II	0.00238132554988
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E172	 Sua5 YciO YrdC YwlC family translation factor	0.00238088592001
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8T3G2	 Diguanylate phosphodiesterase	0.00238065736669
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P26381	 Fructose permease IIC component	0.00238062016371
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q893R0	 Thiamine phosphate synthase	0.00238005322486
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P71243	 Putative colanic acid biosynthesis glycosyltransferase WcaL	0.00237957131206
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37047	 Carbohydrate diacid regulator	0.00237855979393
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76187	 Oxidoreductase YdhF	0.00237852543981
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MI52	 Glutamate 5 kinase	0.00235718874793
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P44068		0.00237830930428
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9D3	 Glutathione S transferase GstA	0.00237787143194
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6DIM2	 p hydroxybenzoic acid efflux pump subunit AaeA	0.00237786223486
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57658	 Aspartate semialdehyde dehydrogenase	0.00237743243814
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O08368	 Glutathione peroxidase	0.00236227169063
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21866	 KDP operon transcriptional regulatory protein KdpE	0.00237740179541
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZQR5		0.00237694008317
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PT43		0.00237678822295
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47539	 Taurine transport system permease protein TauC	0.0023757912581
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P26418	 Flagellar motor switch protein FliM	0.00237536397246
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2S584	 Ribulose phosphate 3 epimerase	0.00237510346612
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5X6L2	 Thiamine transporter protein	0.00237447062683
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJH1		0.00237390469354
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X7J5	 Multidrug resistance protein MdtA	0.00237359284915
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKX5	 Phosphomannomutase, ManB	0.00237208156151
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5FTN1	 D amino acid dehydrogenase small subunit	0.00234821238785
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58633		0.00237136348336
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39389		0.00163591437796
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P39389		0.000735199146289
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJY3	 Polyferredoxin, iron sulfur binding	0.00237072068069
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M1U7	 VanZ family protein	0.00237071053135
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F7R3U3	 Membrane bound PQQ dependent dehydrogenase, glucose quinate shikimate family protein	0.00237068718983
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q320T0	 Diguanylate cyclase DosC	0.00236958820059
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNT1	 Putative Gp40 related protein, ERF family single strand annealing protein 	0.0023668885889
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P56262	 Putative carboxymethylenebutenolidase	0.00236679154344
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F2IZR6	 Multiple antibiotic resistance  related protein	0.0023665572155
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q880Z2	 Xylose import ATP binding protein XylG	0.00192859111512
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q880Z2	 Xylose import ATP binding protein XylG	0.000437861008152
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9EYV5	 HTH type transcriptional regulator GadX	0.00236579526752
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E2B7	 Transporter CDF family	0.00236566568919
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P17583	 Cyanate transport protein CynX	0.00236556254064
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1A968	 Glutathione binding protein GsiB	0.00236552487435
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DYV7	 Lipoprotein signal peptidase	0.00236548696233
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNM8		0.00236530115517
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZML4	 N succinylglutamate 5 semialdehyde dehydrogenase	0.00229937740721
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9D0	 Fructose 1,6 bisphosphatase class 2	0.00236442611415
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E414	 Thioredoxin disulfide reductase TrxB	0.0023643599012
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMG7	 Cell wall biosynthesis protein, UDP N acetylmuramate alanine ligase family	0.00236414800256
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A864	 Thiol peroxidase	0.00236327787949
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R9T3		0.00236292105948
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0BUP8	 50S ribosomal protein L23	0.00236270824745
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE75	 Citrate carrier	0.00236165792439
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77359		0.00236164342494
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SWC9	 dTDP 4 dehydrorhamnose 3,5 epimerase	0.0023613256265
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N4BTF2	 DEAD DEAH box helicase family protein	0.00236088381294
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2QG34	 Peptide chain release factor homolog	0.00236081346017
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2S710	 Oxygen dependent coproporphyrinogen III oxidase	0.00203364546527
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KNM2	 Guanosine 3,5 bis 3 pyrophosphohydrolase	0.00233378462238
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B5FV81	 KLLA0D19929p	0.00216436965233
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B5FV81	 KLLA0D19929p	0.000194536739019
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39173	 Putative glucose 6 phosphate 1 epimerase	0.00235883698142
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNU7		0.00215836650091
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45421		0.00235867214959
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57766	 Formylmethanofuran  tetrahydromethanopterin formyltransferase	0.00228956440566
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77187		0.00235805138414
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6X0F3	 Glutathione S transferase domain protein	0.00235777667234
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P16536	 14 kDa peptide of ubiquinol cytochrome c2 oxidoreductase complex	0.00235732193332
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P45213	 Peptide methionine sulfoxide reductase MsrA MsrB	0.00235267843359
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57S48	 HTH type transcriptional repressor AllR	0.00235515441766
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00914	 Deoxyribodipyrimidine photo lyase	0.00234214314288
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77552		0.00235394169448
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WYK2		0.00235380410576
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SN55	 Phosphopantothenate cysteine ligase CoaB	0.0023536039381
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08555	 DsdX permease	0.00235337502934
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27243	 O antigen ligase	0.00235314477149
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5WAG0	 Ribonuclease P protein component	0.00235278067851
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37747	 UDP galactopyranose mutase	0.00235242007113
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32153	 Putative aminopeptidase FrvX	0.00235233456674
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q02432	 Chlorophyllide reductase 52.5 kDa chain	0.00233604709527
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1M613	 GntR domain protein	0.00235198680904
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F3WHR7	 Starvation sensing protein rspA	0.00235113221827
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58213		0.00235105619792
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9NUC1		0.0023153739195
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJV5		0.0023504460764
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U4A9		0.00235005010978
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P06202	 Periplasmic oligopeptide binding protein	0.00234935439421
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KS24		0.000893491748238
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJE7	 Purine NTPase involved in DNA repair, Rad50	0.00234845979603
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z1K3		0.00234801319886
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2U4Y6	 Protease IV	0.00234801319886
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2GG07		0.00234801319886
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRQ4		0.00234801319886
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R8A454	 Cassette chromosome recombinase B	0.00234801319886
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R8AKP7	 Formate dehydrogenase accessory protein	0.00234801319886
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69435	 Poly beta 1,6 N acetyl D glucosamine export protein	0.00234738555059
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0L0	 Signal recognition particle receptor FtsY	0.00234620187631
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00893	 Acetolactate synthase isozyme 3 large subunit	0.00232520943744
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HXE9	 Phosphatidylcholine synthase	0.00234580154105
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39187		0.00234575936629
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGM3	 UPF0126 inner membrane protein YicG	0.00234566905037
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E6NXI7		0.00234552660542
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNF7	 Putative nucleic acid binding protein	0.00234552435992
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J213	 Histone like nucleoid structuring protein H NS	0.00234544079363
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75908	 Probable diguanylate cyclase YcdT	0.00234504259858
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08142	 Acetolactate synthase isozyme 1 large subunit	0.00219053274381
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P08142	 Acetolactate synthase isozyme 1 large subunit	0.000122854123407
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IXI3	 PpkA related protein	0.00217892073845
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q56952	 Periplasmic chelated iron binding protein YfeA	0.0023430333657
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P63699	 Putative bacterioferritin B	0.00234301768537
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZTX6	 Ketol acid reductoisomerase	0.00228307907948
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H1BUU0	 Inner membrane metabolite transporter ygcS	0.0023419574757
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKF5	 SspC protein	0.00234161222966
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YCH9	 Hydrolase, HAD superfamily	0.00234072145742
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F6EZI7	 Diguanylate cyclase with GAF sensor	0.00229331474139
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46133	 p aminobenzoyl glutamate transport protein	0.00234046549824
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D0JTC4	 Uroporphyrinogen decarboxylase	0.00234020508465
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LWX7	 Flagellar L ring protein	0.00234009568714
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZRM7		0.00219746674666
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37621	 UPF0226 protein YhhS	0.00233704432359
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WPE9	 Cytochrome B561	0.0023370350903
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26230	 Probable deoxyhypusine synthase	0.00233670429584
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q494C7	 ATP synthase subunit b	0.00233646435149
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM57	 Predicted deacylase	0.00233613590908
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3XFB9		0.00233491087874
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B6V376	 Tra8	0.00233482234836
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4EZB3	 Beta lactamase domain protein	0.00233450669389
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AD69	 Peptidoglycan synthase FtsI	0.00231668022442
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNR6	 Heavy metal cation  efflux system protein, CzcD family	0.00233372096843
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O87656	 Iron hydroxamate import system permease protein FhuB	0.0023334942448
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9AGA7	 PTS system alpha glucoside specific EIICB component	0.00229089993161
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57714	 Pyruvate synthase subunit PorB	0.00233242841527
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL22	 DNA repair helicase	0.00233194058794
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_M1XGV8		0.00148070294222
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_M1XGV8		0.000851220225314
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64588	 Transcriptional regulator YqjI	0.00233180667612
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KPD3	 Small GTP binding protein	0.00233146993118
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q130Q6	 ABC 1	0.0023314549547
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KSL8	 Efflux transporter, RND family, MFP subunit	0.0023311822277
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45135	 Protein mrp homolog	0.0023311615768
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P07129	 Beta xylosidase	0.0020750756185
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P07129	 Beta xylosidase	0.000255612665105
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6DKE8	 Altronate oxidoreductase	0.00232492666725
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJU7	 Serine acetyltransferase, CysE	0.00233007716332
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9R9	 Cell division ATP binding protein FtsE	0.00233000087319
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45546		0.00232921428512
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A6UWB3	 Glutamate 1 semialdehyde 2,1 aminomutase	0.0023244707447
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31447		0.00232872990956
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS31		0.00232817363743
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D4JCA2	 NTP pyrophosphohydrolases containing a Zn finger, probably nucleic acid binding	0.00232713582701
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HEK4	 Porin	0.00232705260263
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T7J2		0.00232654192916
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P50466	 Aerotaxis receptor	0.00232619865255
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NEJ8	 Predicted Fe S oxidoreductase	0.00232616274097
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45185	 Chromosome partition protein MukF	0.00232615688774
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88R97	 FMN reductase 	0.00224361468723
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SLB7	 RNA methylase	0.00232546358471
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31827		0.00232495886394
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24180	 Multidrug export protein AcrE	0.00232491495741
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZV28	 Elongation factor P   beta lysine ligase	0.00232473278544
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77338	 Mechanosensitive channel MscK	0.00232470298781
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F0P8N4		0.00159751296277
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0P8N4		0.00072636379533
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39838	 Phosphotransferase RcsD	0.00232364550856
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0F6	 CBS domain containing protein	0.00232326144409
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PY79		0.00232317375388
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37748	 O antigen polymerase	0.00232143824838
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4W3M3	 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	0.00232125988117
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GDE9	 Serine rich adhesin for platelets	0.00229475824516
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GDE9	 Serine rich adhesin for platelets	2.62586651621e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6LPL4	 Chromosome partition protein MukE	0.00232090096626
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1WSR7	 CreA family protein	0.00229464926253
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39399	 Probable HTH type transcriptional regulator YjjM	0.00232040831433
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26899	 Cobalt precorrin 5B C methyltransferase	0.00232037358988
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6EB78	 CP4 44 prophage predicted disrupted hemin or colicin receptor	0.00231938488514
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KJE4	 Flagellar biosynthetic protein FlhB	0.00231900782123
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW61		0.00231845508737
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77599	 Probable fimbrial chaperone YfcS	0.00231801222717
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08005	 Oligopeptide transport system permease protein OppB	0.00231757452049
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9MHF6		0.00219726332214
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIL0	 TonB dependent receptor	0.0023172401412
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KRR2	 ATP dependent DNA ligase	0.00231716647681
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FHG0	 HTH type transcriptional regulator YdeO	0.00231516840814
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8GCA1	 Ecotin	0.00231378262823
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A3MV69	 Elongation factor 1 alpha	0.00231377806974
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25907		0.00231310919594
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X5L7	 Cellulose synthase catalytic subunit [UDP forming]	0.00231240658061
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0K963	 Histidine  tRNA ligase	0.00141540893834
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0K963	 Histidine  tRNA ligase	0.0008965619774
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E7K622	 Osmolarity sensor envZ domain protein	0.00231172308853
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_W8T7R1		0.00231058880799
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKP7		0.00231055209028
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23256	 Protein MalY	0.00231019346949
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AD62	 Pyruvate kinase I	0.00230871835142
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31802	 Nitrate nitrite response regulator protein NarP	0.00167067707556
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P31802	 Nitrate nitrite response regulator protein NarP	0.000638008338255
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNT4		0.00230824225015
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P43799	 Anaerobic glycerol 3 phosphate dehydrogenase subunit A	0.00229728498619
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D8A6D8		0.00230724282887
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGM1	 UPF0118 inner membrane protein YhhT	0.00230638080258
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2WBG4	 Thioredoxin domain containing protein	0.00230624689206
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q45972	 Ferredoxin 1	0.00230546920553
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76245	 Probable diguanylate cyclase YeaP	0.00230512687448
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WQP1	 Transposase, IS4 family	0.00212196758684
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QDX7		0.00129441753271
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QDX7		0.00100964567551
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZS89		0.00230403749786
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKJ6		0.00230349687664
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q085E2	 30S ribosomal protein S2	0.00230346713554
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J4U6		0.00207969594948
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45089	 Arginine ABC transporter permease protein ArtM	0.00230244719276
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMX1	 Transcriptional regulator	0.00230203342541
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN72	 Predicted transcriptional regulator	0.00230160907083
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PVC1	 DNA helicase UvrD REP helicase family	0.00230102674018
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2N154	 Glutamate synthase	0.00230091864198
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9C3	 Aldose 1 epimerase	0.00228258027202
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A029I8C3	 TPR repeat family protein	0.00230034915275
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KPQ7	 Ribonuclease BN	0.0022996138386
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMH8		0.00229924315495
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WQE3	 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.00229916368704
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B8IEX4	 Methyladenine glycosylase	0.00229884616966
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AER7	 Glutamate aspartate transport system permease protein GltK	0.0022985644546
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T7R3	 ATP binding protein	0.00229841781647
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KR53	 Transcriptional regulator, Fis family	0.00229837077325
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U2E4	 McpE	0.00229830259279
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42628	 Inner membrane transport protein YhaO	0.00229820415067
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42640	 Putative phosphoethanolamine transferase YhbX	0.00229815887222
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SIP9	 CoB  CoM heterodisulfide reductase subunit B HdrB1	0.00229750188368
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37837	 Transaldolase	0.0022969115104
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77333	 HTH type transcriptional regulator PgrR	0.00176372502703
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P77333	 HTH type transcriptional regulator PgrR	0.000531989859455
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULW7	 Nitrate sulfonate bicarbonate ABC transporter, ATPase component	0.00229516366801
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJ08		0.00229464926253
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5YZN9		0.00229464926253
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LHL3		0.00229464926253
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK74	 Xanthine uracil permease, UraA	0.0022940689646
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZBZ3		0.00207545867173
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0KMQ9	ferredoxin  oxidoreductase	0.0022930220384
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B5ZE82	 Two component transcriptional regulator, winged helix family	0.00229296883656
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNS6		0.00229230778369
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACL7	 Putative L lactate dehydrogenase operon regulatory protein	0.00229223511156
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WQR0	 MscS Mechanosensitive ion channel	0.0022920088026
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37627		0.00229143780599
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNU9	 Bacteriophage capsid portal protein	0.00229137820507
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KVQ7	 DNA recombination protein RmuC homolog	0.00229099576668
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKP1	 Phosphate specific transport system accessory protein PhoU	0.00229073794948
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q9HQU4	 Inosine 5 monophosphate dehydrogenase	0.00226545787078
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9M3	 Hypoxanthine phosphoribosyltransferase	0.00225062773533
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8AJ27	 6 phosphogluconolactonase	0.00229044534957
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P14294	 DNA topoisomerase 3	0.00229041734814
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E445	 Polysaccharide polyol phosphate ABC transporter permease protein	0.00229035918229
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O32254		0.0022891541378
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8AMK4		0.00228887896475
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A0B8A2		0.00228799655
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75764		0.00228738177467
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P60065	 Arginine agmatine antiporter	0.00228725201828
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47147	 Putative glutamine amidotransferase YafJ	0.00189536753557
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q47147	 Putative glutamine amidotransferase YafJ	0.000391672891359
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SSA3		0.00203078143176
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C6SSA3		0.000256255247593
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7GCQ9		0.00228643484254
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X6C5	 Xanthine dehydrogenase FAD binding subunit	0.00223881936398
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77585	 Aminopeptidase YpdE	0.00228470291416
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZ44	 Bifunctional inositol 1 monophosphatase fructose 1,6 bisphosphatase ATP NAD kinase	0.00228426405945
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ63		0.00228404436195
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2KXD7	 Amino acid ABC transporter, permease protein	0.00228381136322
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39377	 Isoaspartyl dipeptidase	0.00228351576595
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI000378B27E	 hypothetical protein	0.000747885685563
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O33566	 ORF700 protein	0.00210164962347
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPT8		0.0017580344069
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28Q52	 Cation transporter	0.00228250008589
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27115	 Succinyl CoA ligase [ADP forming] subunit beta	0.00228217381394
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33348		0.00228211376682
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76128	 Probable D,D dipeptide binding periplasmic protein DdpA	0.00228185380249
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H1R8C9		0.00228175797453
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PVK0	 Bacterial transferase hexapeptide	0.00228089167513
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMS2	 Predicted DNA binding protein	0.00228074689663
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E8SE90		0.00228061879916
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKD9	 Predicted metal dependent protease, PAD1 JAB1 superfamily	0.00228052673473
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q03287	 Urease accessory protein UreG	0.00228017105707
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P59342	 Signal transduction histidine protein kinase BarA	0.00227947639177
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8PI82	 Dipeptide transport ATP binding protein DppF	0.00227891615067
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46899	 CRISPR system Cascade subunit CasC	0.00227871120599
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LR58		0.0019030012535
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJF3	 Binding protein dependent transport systems inner membrane component	0.0022781488728
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SLR2		0.00227813813586
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KKX7		0.00224795494462
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F2R6Y1	 Gas vesicle synthesis protein	0.0018495247064
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TQZ8	 TetR family transcriptional regulator	0.00227543294248
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G8LLV9	 Coproporphyrinogen III oxidase	0.00227541400957
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SR99		0.00227536857364
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQ24	 Phage integrase family protein	0.0022744185885
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KU28	 Transcriptional regulator	0.00227287295901
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VQS2		0.00227203667616
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E4TGE1	 Acylneuraminate cytidylyltransferase	0.00227200753365
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YAS9		0.00227181693156
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6I824		0.00227129163971
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76543		0.00227043356152
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21693	 ATP dependent RNA helicase DbpA	0.00193193171554
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P21693	 ATP dependent RNA helicase DbpA	0.000333466585604
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZNY2	 Paraquat inducible protein A	0.00226929167052
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PV18		0.00226925792353
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5EXE3	 UPF0758 protein YicR	0.00226851452616
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2QQW0		0.00226838776031
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WT15	 MCP methyltransferase, CheR type	0.00226802767897
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4YZ38	 Mutator protein	0.00226794812484
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1LXW0		0.00226784450071
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5MZA4		0.00226775818996
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58369		0.00226757174291
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28W02	 Protein export protein SecB	0.00226724700743
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P09053	 Valine  pyruvate aminotransferase	0.00226722620128
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75954	 Probable L,D transpeptidase YcfS	0.00223113359725
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q05197	 Phosphatidylethanolamine N methyltransferase	0.00152076652755
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46841	 Inner membrane protein YghQ	0.00226568674258
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76079	 1,2 phenylacetyl CoA epoxidase, subunit C	0.0019349998868
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P76079	 1,2 phenylacetyl CoA epoxidase, subunit C	0.00032994956716
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJS2	 Helicase	0.00226390977864
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P68893	 Transcription termination antitermination protein NusG	0.00184893623702
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P68893	 Transcription termination antitermination protein NusG	0.00041490262313
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46943		0.00226361038637
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E2L0	 Mevalonate kinase	0.00226352548234
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULI3	 Antimicrobial peptide ABC transporter, permease component	0.002263316081
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24171	 Peptidyl dipeptidase dcp	0.00226326435008
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2YLX5	 Peptidyl tRNA hydrolase	0.00221682552203
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42904	 N acetylgalactosamine specific phosphotransferase enzyme IIB component 2	0.00226318305481
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACI8	 Regulatory protein AsnC	0.00226234469518
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACT0	 HTH type transcriptional regulator AcrR	0.00226230971956
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9U6	 HTH type transcriptional regulator PuuR	0.00226154678436
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL98	 Cobalt ABC transporter, permease component, CbiQ	0.00226069641628
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AG36	 Homoserine homoserine lactone efflux protein	0.00226068113448
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5LZS4	 Hemolysin type calcium binding region RTX toxin	0.00226067073441
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KKY7		0.00225968317853
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8C5J6	 Translation initiation factor IF 2	0.00225967736554
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WGA7	 Penicillin binding protein 6, Serine peptidase, MEROPS family S11	0.00225958856492
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMN9	 Flavodoxin 	0.00225897959545
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A1J0	 Basal body rod modification protein FlgD	0.00225840043873
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P45092	 Arginine transport ATP binding protein ArtP	0.00224700147479
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N5AMH8	 Diacetyl reductase [ acetoin forming]	0.00225736541509
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F9M5F2		0.00225655163747
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37426	 Ribonucleoside diphosphate reductase 1 subunit alpha	0.00225638746349
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D0ZTB2	 Magnesium transporting ATPase, P type 1	0.00225121063094
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15028	 Fe dicitrate binding periplasmic protein	0.00225521067373
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B0BPX9	 DNA polymerase IV	0.00225455209165
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWU3	 TRAP T family transporter, fused small and large inner membrane subunits	0.00224235318165
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKU5	H+ antiporter)	0.00225444571177
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2N7K6	 Formate acetyltransferase	0.00225414236279
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W8UYG4	 Transposase	0.00208837204219
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P80907	 Ketoisovalerate oxidoreductase subunit VorA	0.0022539708486
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P07821	 Iron hydroxamate import ATP binding protein FhuC	0.00225301645695
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58952	 tRNA (4 demethylwyosine(37) C(7)) aminocarboxypropyltransferase	0.00225300348383
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q9HSC3	 Archaeal Lon protease	0.00225288281463
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F0LF03	 Oligopeptide ABC transporter membrane spanning protein	0.00225277904798
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26311		0.0022526521031
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q07T82	 Protease HtpX homolog	0.0022525650847
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZMH3	 Serine threonine protein phosphatase 2	0.00225152792172
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJ21	 4 oxalocrotonate tautomerase family enzyme DmpI	0.00225111933071
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X4L9	 Ribosomal large subunit pseudouridine synthase F	0.00225076725962
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A5W9	 Ribonucleoside diphosphate reductase subunit alpha	0.00200802716455
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0A5W9	 Ribonucleoside diphosphate reductase subunit alpha	0.000219252848557
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJS7	 Adenylate cyclase CyaA	0.00224871502196
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P38036	 CRISPR associated endonuclease helicase Cas3	0.0022484954286
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULE7	 Molybdenum cofactor biosynthesis protein, MoaB	0.00224811556775
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0F9	 Phosphoribosylaminoimidazole carboxylase catalytic subunit PurE1	0.00224782187333
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKS1	 Multidrug ABC transporter, permease component	0.00217515462259
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULE1	 Phosphoribosylformylglycinamidine synthase related protein 	0.00224746585171
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V2R889	 Ureidoglycolate dehydrogenase	0.00224718581556
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33916		0.00224666559564
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7CYB4	 40K cell wall protein	0.00224564540012
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37902	 Glutamate aspartate periplasmic binding protein	0.00195834851069
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P37902	 Glutamate aspartate periplasmic binding protein	0.000287117791911
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39795	 Trehalose 6 phosphate hydrolase	0.00218129761381
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P39795	 Trehalose 6 phosphate hydrolase	6.40231880472e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PI07		0.0016517307058
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P67082	 UPF0001 protein YggS	0.00224398503481
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQ55		0.00224390513907
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023L2V4	 Cobalamin biosynthesis protein	0.00224365705669
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N040	 LPXTG motif cell wall anchor domain protein	0.00224365705669
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI0002BA1ECF	 hypothetical protein, partial	0.00224307993401
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZSP5		0.00224283760225
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAC2	 Universal stress protein E	0.00224277427375
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6UB50		0.00224265631759
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7E7M7	 Integrase	0.00224215541269
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0CL50	 Trehalose phosphate phosphatase	0.00215158790561
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37146	 Ribonucleoside diphosphate reductase 2 subunit beta	0.00217242053462
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A2J8	 Spermidine putrescine transport system permease protein PotB	0.00224158054142
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33353		0.00224117326005
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PW62	 MATE efflux family protein	0.00224103994003
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26830	 Putative phospho N acetylmuramoyl pentapeptide transferase	0.00224095370888
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64176	 Macrolide export protein MacA	0.0022401512065
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39285	 Miniconductance mechanosensitive channel MscM	0.00224012015001
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2ES40		0.00223998279304
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7DS47	 ABC transporter ATP binding protein	0.00223953484824
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XQY6		0.00223949917409
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5YU52	 Peroxyureidoacrylate ureidoacrylate amidohydrolase RutB	0.00216915491775
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5LYA7		0.00223875532491
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AWN6	 Conserved domain protein	0.00223795543206
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44843	 Trk system potassium uptake protein TrkH	0.00223794143548
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A009EPD3		0.00223750858626
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6DIM3	 p hydroxybenzoic acid efflux pump subunit AaeB	0.00223706666917
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I5L3		0.00223699854053
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMS3	 6,7 dimethyl 8 ribityllumazine synthase	0.00207664623021
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNM4		0.00223693613324
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23886	 ATP binding permease protein CydC	0.00223659740871
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K4XG96	 Binding protein dependent transport system inner membrane protein	0.00223622658586
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SJF4		0.00223613145736
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DTS4		0.00223606728945
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25396	 Tellurite resistance protein TehA	0.00223557717934
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9RTP8	 Divalent metal cation transporter MntH	0.00204204641077
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTP8	 Divalent metal cation transporter MntH	0.000193295454264
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP23	 Predicted type II restriction enzyme, methylase subunit	0.00223526133068
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q93PU4	 Toluene efflux pump membrane transporter TtgH	0.00196335391199
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q93PU4	 Toluene efflux pump membrane transporter TtgH	0.000271472559951
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q59787	 Sorbitol dehydrogenase	0.00217427155878
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76243		0.00223357278895
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q87VA4	 Glutathione synthetase	0.00209719562498
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMF7	 Predicted metal dependent membrane protease	0.00223313005968
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75843		0.00223309476476
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P63884	 N acetylmuramoyl L alanine amidase AmiC	0.0022315131704
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T3J5		0.00223090900524
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7LY72		0.0020070316503
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SM81	 NMD3 family protein	0.00223011156932
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACB9	 Protein HemY	0.00222979267212
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P57527		0.00222938087118
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76093		0.00222894509651
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U6UKQ1	 Hydroxylamine reductase	0.00222868458429
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2N3Y4	 Transketolase 2	0.00222862791521
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULC6		0.00222817438792
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O59536	 Triosephosphate isomerase	0.00222808991516
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVA4	 DNA binding protein, H NS family	0.00222808148612
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YS20	 Phage portal family protein	0.00222780999939
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A0B5U4	 Glycine  tRNA ligase	0.00222700373177
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P38107	 Sigma factor AlgU negative regulatory protein	0.00222692311842
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q18DL1	 Imidazoleglycerol phosphate dehydratase	0.00207660549182
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I5L2		0.00222683317047
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SK40		0.00222545315248
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FCR0		0.00201823137664
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25737	 Lysine specific permease	0.00206229307245
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P25737	 Lysine specific permease	0.000162559619913
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77171		0.0022243026551
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2LUA1	 Myosin cross reactive antigen	0.00222406096344
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC97	 Low affinity gluconate transporter	0.00222401011294
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SLL8	 Aspartate aminotransferase	0.00222322025415
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NG02	 Enolase	0.00221962725418
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5XXI0	 Phosphate acyltransferase	0.00212914935096
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1G5	 Cobalamin biosynthesis protein CbiX	0.00222236838357
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZN74	 tRNA cytidine acetyltransferase TmcA	0.00222211120234
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77559		0.00222200459439
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5PHV8	 Gamma aminobutyraldehyde dehydrogenase	0.00220656425724
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B2UML1	 Aminotransferase class I and II	0.00222014736326
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5JZK5	 Chaperonin, 33 kDa	0.00221926947999
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33128	 Probable fimbrial chaperone YadV	0.00221854302845
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27848	 Pyridoxal phosphate phosphatase YigL	0.00215341286855
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S0UQQ2	 Inner membrane protein ypdA	0.00221818831681
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJE2		0.00221806691463
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77493		0.00220076128986
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O05118	 Pyruvate kinase	0.00125835782203
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O05118	 Pyruvate kinase	0.00093551509665
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D2TN56	 Translocation and assembly module TamA	0.00221545894837
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HP60		0.00221527617626
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45394	 Inner membrane protein YrbG	0.00221484634269
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFR3	 C4 dicarboxylic acid transporter DauA	0.00221346136027
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76008	 Murein tetrapeptide carboxypeptidase	0.00221341426872
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMQ3		0.0022130251774
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XBY4	 Sensor kinase CusS	0.00221301995307
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q74M23	 50S ribosomal protein L9	0.0019882917924
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q74M23	 50S ribosomal protein L9	0.000224365705667
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8SDT2	 Phi SLT orf 99 like protein	0.00221196000476
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LX84	 UPF0301 protein SPO0296	0.00221192001992
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NI05	 MvhA	0.00221186295304
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M2B7	 CRP FNR family transcriptional regulator	0.00221097651725
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6I4A3		0.00220990721627
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TYR1		0.00220986442659
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZM93		0.00220945911402
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P06720	 Alpha galactosidase	0.00220808032612
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PY13	 Trk type potassium transport system membrane component TrkH	0.00220802266604
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2NAY0	 3 methyl 2 oxobutanoate hydroxymethyltransferase	0.00207111221754
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46892	 Inner membrane permease YgbN	0.00220800814635
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM01	 Pheromone shutdown protein, TraB family	0.00220782756384
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83RQ0	 Endo type membrane bound lytic murein transglycosylase A like protein	0.00220753476782
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0HP98	 Shikimate dehydrogenase	0.00220747718336
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L8BL77	 CFA I fimbrial subunit C usher protein	0.00220731552773
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNW4		0.00216384716279
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E066	 Aminotransferase	0.0022069090877
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1H7	 DNA polymerase II small subunit	0.0022064909912
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A035HDU9		0.00136438604799
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U0BIJ8	 Protein UshA	0.00220539734325
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NHM9	 MtaC2	0.00220402130265
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42630	 L serine dehydratase TdcG	0.00219324625176
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XBQ1	 Rare lipoprotein A	0.00220325926963
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8T137	 Glutathione reductase	0.00220287786319
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q48460	undecaprenyl phosphate glucose 1 phosphate transferase	0.00219419641569
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJB5	 UPF0280 protein Msm_0088	0.00220191166062
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0H573		0.00220170490863
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A028PVV2	 Lactate dehydrogenase	0.00220045351569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45804		0.00220036714531
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SLI5	 von Willebrand factor type A domain containing protein	0.00220017154133
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q838L2	 L rhamnose isomerase	0.00180918835182
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q838L2	 L rhamnose isomerase	0.000390911559547
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21362	 Protein YciF	0.00219998569817
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23910	 Protein AraJ	0.00219997606191
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26293	 Putative glutamine amidotransferase MTH_191	0.00219843953943
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW75		0.00191561769217
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C834	 Transcriptional regulator, PadR family	0.00188737766312
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQ65		0.00219800923847
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6UEI8		0.00148477305222
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57N15	 Putative mannosyl 3 phosphoglycerate phosphatase	0.00219767782988
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76017		0.00219756897863
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16701	 Sulfate transport system permease protein CysT	0.0021962801705
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4EV71	 Glutamine  tRNA ligase	0.00218888084046
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46068	 HTH type transcriptional regulator DsdC	0.00219516734796
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MDF6		0.00219488190329
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q32DZ9	 Macrolide export ATP binding permease protein MacB	0.00213022789159
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q32DZ9	 Macrolide export ATP binding permease protein MacB	5.14600242338e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F2LTP6	 ABC type transporter, periplasmic subunit family 3	0.00219246550323
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E6JLP6		0.00219238301474
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69424	 Sec independent protein translocase protein TatC	0.00219187444743
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8BCX2	 PTS system, mannitol specific IIC component   PTS system, mannitol specific IIB component   PTS system,mannitol specific IIA component	0.00219173750748
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKX8	 O linked GlcNAc transferase	0.00219164181539
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FDH0	 HTH type transcriptional activator TtdR	0.00219136177066
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULL2	 Adhesin like protein	0.00218872683158
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFV6	 Murein DD endopeptidase MepS Murein LD carboxypeptidase	0.00219106932988
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E3Z6	 Energy converting hydrogenase A subunit F EhaF	0.00219079643146
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30296	 High affinity branched chain amino acid transport system permease protein LivM	0.00123027401816
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P30296	 High affinity branched chain amino acid transport system permease protein LivM	0.000960246327419
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q65RK2	 Na H(+) antiporter NhaA	0.00218958318403
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37749	 Beta 1,6 galactofuranosyltransferase WbbI	0.00216205115432
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S0Y4G5		0.00218889619853
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46814	 Probable hypoxanthine oxidase XdhD	0.0021840291987
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK90	 Transcriptional regulator, MarR family	0.00218888407733
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PG03	 Gamma glutamyltransferase 2. Threonine peptidase. MEROPS family T03	0.00218881680215
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P12999	 Malonyl [acyl carrier protein] O methyltransferase	0.00218865786465
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P10932	 Aliphatic amidase regulator	0.00218861495515
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZRU4	 Membrane protein	0.00218848095464
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P35272	 Chain length determinant protein	0.00218818577716
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45757	 Putative type II secretion system protein C	0.0021877173532
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9BVK1	 Trans aconitate 2 methyltransferase	0.00217732894502
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37660	 Inner membrane transport protein YhjV	0.00218600354192
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PTX8	 Hydrolase TatD family	0.00218552874453
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A2F6		0.00218510676881
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J1AXV9		0.00218495672672
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4SHC0	 ADP L glycero D manno heptose 6 epimerase	0.00215712030879
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42912	 Putative galactosamine 6 phosphate isomerase	0.00218440071401
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNG9	 4 diphosphocytidyl 2 methyl D erithritol synthase, IspD	0.00218429364341
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4SN85	 Putative transport protein ASA_2308	0.00218423274846
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4WCP8	 2 succinyl 6 hydroxy 2,4 cyclohexadiene 1 carboxylate synthase	0.00218332164289
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFN8	 Inner membrane transport permease YadH	0.00175688016642
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AFN8	 Inner membrane transport permease YadH	0.000426214714996
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77622	 Probable D,D dipeptide transport ATP binding protein DdpF	0.00218301488837
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M423	 Methyltransferase type 12	0.00218254044786
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E0S3Q3	 Transposase ISNCY family	0.00217688664486
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MFR7	 Pyrimidine specific ribonucleoside hydrolase RihA	0.00218192959442
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F050	 2,3 bisphosphoglycerate dependent phosphoglycerate mutase	0.00217481973001
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HJ85	 Protein EsaC	0.00218136612582
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26254	 Methyl coenzyme M reductase system, component A2 homolog	0.00218122783993
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9HUG9	 Bifunctional protein HldE	0.00218087242857
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q487E5	 Protein L isoaspartate O methyltransferase	0.00214704256435
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25738	 Acidic protein MsyB	0.00198415975436
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZS4		0.00217973174341
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PTJ2	 Predicted ATPase involved in DNA repair	0.00217947739634
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q31ZL5		0.00217897440325
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWE5	 Sulfotransferase domain protein	0.00217887966256
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE26	 L arabinose transport system permease protein AraH	0.0021778579028
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76552	 Ethanolamine utilization protein EutH	0.00217784066803
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77172	 Cyclic di GMP phosphodiesterase YfgF	0.00217732495865
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K4QD28	 K07473 DNA damage inducible protein J	0.00217726099179
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76198	 Inner membrane transport protein YdiN	0.00217663365518
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNX3		0.00217649583609
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F9V983	 16S rRNA  methyltransferase	0.00200403504438
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F9V983	 16S rRNA  methyltransferase	0.000171708448215
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1QLF3		0.00177754473715
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8Z8G7	 Apolipoprotein N acyltransferase	0.00217516935408
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEP2	 Galactose proton symporter	0.00217436953618
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADI5	 Isochorismatase	0.00208022257405
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Z3G533		0.00217365578311
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27801	 Ribosomal RNA large subunit methyltransferase E	0.00217292359994
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5QR95		0.00217261399434
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T8YQT1		0.00210342849065
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6CE95	 UPF0115 protein Dd1591_1343	0.00217243396713
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TJT7	 Translation initiation factor 2 subunit gamma	0.00217216138722
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7ME63	 Molybdenum import ATP binding protein ModC	0.00217177117119
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHS6	 Activator of Hsp90 ATPase 1 family protein	0.00217141909197
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HGR8		0.00146874062405
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A902	 Outer membrane lipoprotein Blc	0.00217012172873
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C790	 Pyridoxine pyridoxamine 5 phosphate oxidase	0.0021627195327
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WSL4	 2 C methyl D erythritol 2,4 cyclodiphosphate synthase	0.0021566645868
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5XY59	 Dihydroorotate dehydrogenase 	0.00214343689064
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PM79	 Serine type D Ala D Ala carboxypeptidase	0.00216869588246
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q218J2	 Molybdopterin dehydrogenase, FAD binding	0.00216838497675
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75905	 Poly beta 1,6 N acetyl D glucosamine synthase	0.00196104145816
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P75905	 Poly beta 1,6 N acetyl D glucosamine synthase	0.000206517861244
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1F7	 Glycyl radical enzyme activating protein	0.00216641714217
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJX2	 Formate dehydrogenase accessory protein, FdhD	0.0021661322579
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q88X60	 Adenylyl sulfate kinase	0.00216579855796
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03KQ7	 tRNA and rRNA cytosine C5 methylase	0.00197949213174
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q03KQ7	 tRNA and rRNA cytosine C5 methylase	0.000186050664451
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P17334	 N,N diacetylchitobiose permease IIC component	0.00216454588309
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B8H0C0	 RNA polymerase binding transcription factor DksA	0.00216442387649
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C138	 Autoinducer 2 import ATP binding protein LsrA	0.00216414704796
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MG07	 Anaerobic glycerol 3 phosphate dehydrogenase subunit B	0.00201998228877
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L1G4X2	 Permease family protein	0.00216263634813
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI00032A2821	 multidrug resistance protein MexB like	0.00212617896026
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45104	 Ribosomal large subunit pseudouridine synthase B	0.00216205490285
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32681		0.00210652584208
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39400	 Putative L galactonate oxidoreductase	0.00216082609277
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00805	 L asparaginase 2	0.00216052564546
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27844	 Endonuclease NucS	0.00216041836873
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_I4DAA0	 UDP 4 keto 6 deoxy N acetylglucosamine 4 aminotransferase	0.00216039519739
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNW3		0.00208255635138
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K685	 Fe S oxidoreductase	0.00215889302936
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PR73	 Binding protein dependent transport systems inner membrane component	0.00215886294302
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E4K2	 MFS transporter	0.00215882541045
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31801	 Sodium proton antiporter ChaA	0.00215756141852
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2NC90		0.00206191402779
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UVQ1		0.00215746812645
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQW1		0.00215710973351
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6GY98	 Glutamate  cysteine ligase	0.00215663475929
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKW8	 Prephenate dehydrogenase 	0.00215659632661
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YGA2		0.00215647566916
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7DFU6		0.00215635638666
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A2E9	 RNA polymerase sigma factor FliA	0.00215620436573
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVK2	 Zinc containing alcohol dehydrogenase	0.00215605716426
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O83540	 V type ATP synthase beta chain 2	0.00208450476819
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_O83540	 V type ATP synthase beta chain 2	7.14540463904e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P59329	 D cysteine desulfhydrase	0.00215000951701
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8Z9L3	 L carnitine CoA transferase	0.00215574728518
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31679	 Putative metabolite transport protein YaaU	0.00215537113073
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMV2	 Predicted polysaccharide polyol phosphate ABC transporter, permease component	0.00215535163829
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E9Z893	 Alpha beta hydrolase	0.00215507791623
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y591		0.00171934075435
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YNF2		0.0021545035116
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SKG8		0.00215440361373
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39836		0.00215437559026
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28TZ9	 Protein MurJ homolog	0.00215406293608
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B5F3		0.00215363514413
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76041	 Putative sucrose phosphorylase	0.00215355841852
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8LAA1	 4 hydroxy 2 oxovalerate aldolase 1	0.00215301054336
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L8CL74	 16S rRNA  C(5)) methyltransferase	0.00215176071794
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P17315	 Colicin I receptor	0.00215167889849
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4KRZ7	 Transcriptional regulator, GntR family aminotransferase, classes I and II family protein	0.00215141387812
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0CK95	 Putative lipoprotein AcfD homolog	0.00215111229881
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76010	 Flagellar brake protein YcgR	0.00215077163898
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5FMP4	 Leucine  tRNA ligase	0.00214614469184
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75955	 Inner membrane protein YcfT	0.00215027019765
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J608		0.00194953926961
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKA7		0.00215024147781
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P52690	 HTH type transcriptional regulator CbbR	0.00215009454926
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SDA6		0.00215002193157
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D7DUK5	 Tryptophan  tRNA ligase	0.00214982054573
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76185		0.00214855989114
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8RAF9		0.00214818228832
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0K113	 Isoquinoline 1 oxidoreductase, alpha subunit	0.00214818228832
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G9P3		0.00214818228832
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F9KAU2		0.00214802795548
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8Z389	 UDP N acetyl D mannosamine dehydrogenase	0.00214771078187
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C4ZYY9	 HTH type transcriptional regulator YidZ	0.0021472095353
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77324	 Putative xanthine dehydrogenase YagS FAD binding subunit	0.00163408265727
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P77324	 Putative xanthine dehydrogenase YagS FAD binding subunit	0.000118364088576
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q08021		0.00214708921228
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52044		0.00214704916863
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1BCD3		0.00214699070717
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFA0	 Lipopolysaccharide export system permease protein LptF	0.0021467844926
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP49		0.00214660623838
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8RQU9	 NAD dependent epimerase dehydratase	0.00194513893073
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q6FZE7	 50S ribosomal protein L17	0.00214533756101
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2S8N8	 Argininosuccinate lyase	0.00208316384948
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFJ8	 Diphthine synthase	0.00212715528115
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HL27	 Conserved domain protein	0.00214452879166
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75859		0.00214445200677
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9Z507	 UvrABC system protein A	0.00214432983063
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SZU6		0.00214233623523
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77766	 Protein TrpH	0.002141692134
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25960	 Type 4 prepilin like proteins leader peptide processing enzyme	0.00214132267937
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP13	 Permease, xanthine uracil vitamin C permease family	0.00214125163553
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5AZ28		0.00214124264513
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FDA1	 Penicillin binding protein activator LpoA	0.00214069240711
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NGT2	 UvrABC system protein C	0.00214067613231
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q3B5D7	 UDP N acetylglucosamine 1 carboxyvinyltransferase	0.00161344535315
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q3B5D7	 UDP N acetylglucosamine 1 carboxyvinyltransferase	0.000517767013082
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YYR0		0.00201929135102
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32668		0.00213973998411
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN96	 Nitrate sulfonate bicarbonate ABC transporter, substrate binding component, TauA	0.00213964725467
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F9YAF1	 Bacterioferritin associated ferredoxin	0.00197969740297
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37178	 Phosphoenolpyruvate protein phosphotransferase PtsP	0.00213238712203
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q06400	 UPF0394 inner membrane protein YedE	0.00213814577261
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E0S0F8	 Ornithine cyclodeaminase	0.00213809954266
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5F9U0	 Phenylalanine  tRNA ligase alpha subunit	0.00213798485483
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G2I067	 DNA gyrase modulator	0.00213708976635
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37631		0.00213707607802
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37909		0.00213695048265
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW39		0.00115256355652
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33934	 Ferredoxin type protein NapH	0.00213452857271
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PUY3		0.00213451530518
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H0DLM8		0.00213448531923
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33228	 Protein RecT	0.00213425811923
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45428	 Putative cryptic C4 dicarboxylate transporter DcuD	0.00213379821094
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1R8C8		0.00188757650576
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJ71	 Type II secretion system protein E GspE	0.00213261255915
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SMW4	 Transporter ExbD Tol family	0.00213221120299
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27458	 UPF0147 protein MTH_1407	0.0021320782927
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9REM0	 Hydrogenase nickel incorporation protein HypA	0.00213083751506
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P31904	 Hydrogenase expression formation protein hypD2	0.0021296303804
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3JWE6		0.00209876458421
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ53	 Predicted transcriptional regulator	0.0021278692897
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8UDF7	 Carbamoyl phosphate synthase small chain	0.00144690460629
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8UDF7	 Carbamoyl phosphate synthase small chain	0.000444194122561
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q8UDF7	 Carbamoyl phosphate synthase small chain	0.000142203616267
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q8UDF7	 Carbamoyl phosphate synthase small chain	8.92701746728e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C4ZU18	 Fructose 1 phosphate kinase	0.00212671501191
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWM7		0.00212634655473
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2JS66	 Cyanate hydratase	0.00212614534098
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R6TVK2	 Aldehyde dehydrogenase A	0.00212568493014
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V709		0.00212535945472
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X524	 Sensor protein QseC	0.00212429602081
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NGM6	 Probable translation initiation factor IF 2	0.00212395807184
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XPF3	 ATP dependent RNA helicase RhlE	0.00212357754833
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P09432	 Nitrogen regulation protein NtrC	0.00212350925063
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C5WCX1	 4 hydroxythreonine 4 phosphate dehydrogenase	0.00212306214984
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7EWS3		0.000929132800795
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I7EWS3		0.000894075443788
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2T6U3	 Acetyltransferase, GNAT family	0.00212127481662
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FBC3	 Glycerol kinase	0.00203222350936
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8FBC3	 Glycerol kinase	7.11018081333e-05
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E3YPZ5	 Acetyl CoA carboxylase, biotin carboxyl carrier protein	0.00212102402837
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PSE2		0.0021203933011
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QYC7		0.00212032778471
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKH3		0.000382441543756
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FEN7	 Arabinose 5 phosphate isomerase GutQ	0.00199286503606
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0X9G6	 dGTPase	0.00211844097421
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P13039	 Enterochelin esterase	0.00211820653153
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9Y315	 Putative deoxyribose phosphate aldolase	0.00211783909538
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A6UVH0	 FO synthase subunit 1	0.0021177579714
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNK4	 Ribose phosphate pyrophosphokinase	0.00211756751309
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7UNN8	 CDP diacylglycerol pyrophosphatase	0.00201468830503
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QVF5	 Conserved domain protein	0.00211652345617
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1H531	 5 methyltetrahydrofolate  homocysteine methyltransferase	0.00142253159672
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1H531	 5 methyltetrahydrofolate  homocysteine methyltransferase	0.000693758397396
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52022	 DNA polymerase III subunit alpha	0.0021162086075
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DVX1		0.00211572722903
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WR54	 NnrS family protein	0.00209068997469
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31125	 Probable amino acid metabolite efflux pump	0.00211516213893
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6D8C7	 Sensor atoS domain protein	0.00211461415402
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P57487	 Endonuclease 1	0.002098960593
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULF0	 Phosphoenolpyruvate synthase pyruvate phosphate dikinase, PpsA	0.00211379511429
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP33	 Smf protein	0.00211338276727
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J164	 Cytochrome c2	0.00211304877266
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_V5AMJ6		0.00127803250065
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_C6A075	 DNA helicase, UvrD REP family	0.0021114799897
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9EAK0		0.00211123130946
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PUB9		0.00211115863779
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A1E9	 Minor curlin subunit	0.00211099048522
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS22	 Putative membrane protein insertion efficiency factor	0.00210994981486
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q9HLP5	 UPF0145 protein Ta0182	0.00210964585716
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PYB9		0.00210956289005
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRQ8	 ABC cobalt transporter, periplasmic binding protein CbiN	0.00198775211168
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U8EUK5		0.00210900387197
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL83	 30S ribosomal protein S3	0.00210842771535
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8EKI8	 L seryl tRNA selenium transferase	0.00210825881672
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E3T4	 4Fe 4S binding domain containing protein	0.00210804658421
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75792	 Sugar phosphatase YbiV	0.00203211375589
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64613	 Cell division protein ZapE	0.00210681413156
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9WM02	 MoxR like ATPase	0.00210517441925
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6STT6		0.0021045176398
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O28206	 Formylmethanofuran  tetrahydromethanopterin formyltransferase like protein	0.00210448262763
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI00037F13B2	 hypothetical protein	0.00204895111348
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5XYB9	 Hydroxylamine reductase	0.00209804802938
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE35	 Arginine ABC transporter permease protein ArtQ	0.00210381037382
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AV34	 Nonfunctional major facilitator superfamily MFS_1	0.00210379113718
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XNN9		0.00206436117289
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7WY98		0.00210342849065
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I9SM88	 Flavoprotein oxidoreductase	0.00210342849065
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N5YPY2		0.00210342849065
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46824	 Toxin CptA	0.00210342849065
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLZ3		0.00210342849065
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI000369E819	 hypothetical protein	0.00210342849065
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W6IFL4	 ABC transporter ATP binding protein uup	0.00210291627761
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76228	 Inner membrane protein YnjI	0.00210233261602
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76177	 Protein YdgH	0.00210201129291
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76092		0.00210165463883
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E165		0.00210151361624
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2RS21	 Nickel import ATP binding protein NikD	0.00210111791359
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8KIM2	 Protein pucC	0.00201186799986
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J7MB25	 Transposase	0.00210041507335
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52134		0.000998689182539
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C3T0C2	 Transcriptional regulation of gcv operon	0.00209965194842
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37169	 Protein MurJ homolog	0.002008067778
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P37169	 Protein MurJ homolog	9.12055714146e-05
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULG2	 Shikimate kinase	0.00209892408799
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF22	 N acetylglucosamine repressor	0.00209887821462
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9UZT1	 Ribonucleoside diphosphate reductase 1, beta subunit, B2	0.00204229687567
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABG6	 Lipid II flippase FtsW	0.00209811793178
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5UCW1	 UPF0042 nucleotide binding protein CGSHiEE_06315	0.00209779284175
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DTE8		0.00209739333717
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D4UAN3		0.00194162629906
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PH60		0.000930461897757
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q60317	 Probable aspartate aminotransferase 1	0.00209664748126
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEU5	 Histidine transport system permease protein HisM	0.00209657989342
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q01WB8	 30S ribosomal protein S11	0.00157460397123
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q01WB8	 30S ribosomal protein S11	0.000521784194789
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AA72		0.00209617354144
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76261	 Putative cyclic di GMP phosphodiesterase AdrB	0.00209565639599
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFR5		0.00171353187541
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AFR5		0.000382096483717
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4TWJ1	 Transcriptional regulator NanR	0.00209553364802
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKW5	 Cell wall biosynthesis protein, UDP glycosyltransferase family	0.00209503550111
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM83	 Hydrogenase maturation factor, HypF	0.00209486859405
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2SB72	 Bifunctional protein GlmU	0.00208929686301
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1LT01	 Hydroxyacylglutathione hydrolase	0.00209423631653
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACP3	 Catabolite repressor activator	0.00209422401964
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P17888	 Primosomal protein N	0.00209402329905
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D5WZP9	 Cytochrome c oxidase, cbb3 type, subunit II	0.00209387598763
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULE4	 Predicted transcriptional regulator	0.00209344098503
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M502		0.002093061202
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SHD6	 Glycine betaine L proline ABC transporter permease substrate binding protein	0.00209258084755
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B3HTF1	 Protein YgiQ	0.00206193205063
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P03030	 Transcriptional activator protein LysR	0.00209126884458
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0M0	 Calcineurin like phosphoesterase	0.00209089013384
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6UEL7	 Acid tolerance regulatory protein ActR	0.00209063390379
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZDH2	 Putative fluoride ion transporter CrcB 1	0.0020905440611
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75869	 Protein Sxy	0.00208959869429
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KU14	 Transcriptional regulator, AraC family with amidase like domain	0.00208948324059
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KLX0	 Class I monoheme cytochrome c	0.00208928779491
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LR99	 Peptidase, M23 M37 family	0.00186024155723
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YYE7	 Truncated methicillin resistance related surface protein	0.00208760459249
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4SG83	 Glycerol 3 phosphate transporter	0.00208740136007
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SHV7	 Metallophosphoesterase	0.00208725800464
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F0TB29	 Mur ligase middle domain protein	0.00208698120677
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77804	 Protein YdgA	0.00208682675001
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P19576	 Maltose binding periplasmic protein	0.00208678502067
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SLZ6	 SAM dependent methyltransferase	0.00208663183255
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9L5K2	 3 isopropylmalate dehydratase small subunit	0.00208621603425
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6GYX0	 ABC transporter family protein	0.00208580150439
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1J909	 Peptidase C39 bacteriocin processing	0.00208491499558
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FF43		0.00208486293359
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5DSB0		0.00184973752763
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52127		0.00208429388451
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WYU2		0.00208423851011
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27082	 Cation transporting P ATPase PacL	0.00208413067416
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023KRT9		0.00208404666009
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1VT86	 Phosphate butyryltransferase	0.00208390361084
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABE5	 Cytochrome b561	0.00208376789846
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37678	 3 keto L gulonate 6 phosphate decarboxylase SgbH	0.00208359827232
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98C73	 Mll5269 protein	0.00208280651404
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKM2		0.00208239481546
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P06744	 Glucose 6 phosphate isomerase	0.00208224844675
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08390	 USG 1 protein	0.00208188222491
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C0Q1R0	 Nicotinate nucleotide  dimethylbenzimidazole phosphoribosyltransferase	0.0020811144866
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U4TS42	 Phosphorylase 	0.00208068238749
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J267		0.000345769066951
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21507	 ATP dependent RNA helicase SrmB	0.00208022359732
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D3HHR2		0.00208006243753
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9V4P4		0.000852568097545
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TUS9	 V type ATP synthase subunit D	0.00207988270773
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKG7	 SAM dependent methyltransferase, UbiE CobQ family	0.00207980941152
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6DJF9	 Protein ViaA	0.00207941787345
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULP1	 Predicted O linked GlcNAc transferase	0.00207871729857
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q326E0		0.00207871111984
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q07QW9	 NADH quinone oxidoreductase subunit H 1	0.00207109241804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P63235	 Probable glutamate gamma aminobutyrate antiporter	0.00207851558215
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39336		0.00207776762157
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6Z4Y8	 Respiratory nitrate reductase gamma chain	0.00207724427334
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UWW0		0.00207647623618
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7MPS3	 Formamidopyrimidine DNA glycosylase	0.00206947898913
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B6V394		0.00189057999391
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A4FWA2	 50S ribosomal protein L18P	0.00207591098101
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R5LKI5		0.00207588334167
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1EU50	 Trimethylamine N oxide reductase 2	0.00207568929176
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P11072	 Bacteriophage T4 late gene expression blocking protein	0.00207562102536
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNJ9	 ADP ribosylglycohydrolase	0.00207558636374
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T594	 Tail fiber assembly protein	0.00199175274101
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77180		0.00207499683921
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00363	 Fumarate reductase flavoprotein subunit	0.00207489750988
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SHP9	 Carbamoyl phosphate synthase small chain	0.00207458090542
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C9QQU6		0.00187880366977
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B4U1T0	 Transcriptional regulator	0.00207323845718
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C2PG39	 GCN5 related N acetyltransferase	0.0020726161248
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6GJF6	 Dihydroneopterin aldolase	0.00145826980233
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GJF6	 Dihydroneopterin aldolase	0.000603831457944
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P55140	 UPF0603 protein YgcG	0.00207201582114
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77473	 Putative cyclic di GMP phosphodiesterase YlaB	0.00207185192724
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2GKY0		0.00207151595594
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GZZ4	 Peptide ABC transporter, permease protein	0.00207135208113
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KXU5	 60 kDa chaperonin 2	0.00207016412135
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76241		0.00206990460593
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACZ6	 Positive transcription regulator EvgA	0.00206927922148
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2NQZ7	 Glutamate racemase	0.0020688584284
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1H4	 TrkA domain containing protein	0.00206828580506
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1BN64	 Methylmalonate semialdehyde dehydrogenase 	0.00206815342619
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45570	 Inner membrane protein YbcI	0.00206800916017
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AD04	 Inner membrane protein YebS	0.00206689756229
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5F2S7	 Electron transport complex subunit E	0.00180874350249
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5F2S7	 Electron transport complex subunit E	0.000257562672328
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6STS8		0.00206582348587
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46890		0.00206560031092
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2XAD4	 Inner membrane transporter ybgH	0.00206521124746
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31435	 Inner membrane symporter YicJ	0.00206458687082
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9P9X3		0.0020643384514
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26153	 Isopentenyl phosphate kinase	0.00206388357496
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00811	 Beta lactamase	0.00193451676106
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83Q08	 Stringent starvation protein B	0.00206317337781
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B8EL88	 Regulatory protein ArsR	0.0020631287581
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZLB5	 Cellulose biosynthesis protein BcsE	0.00206269314153
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7VBK0		0.0018973891755
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0F2	 Metallo beta lactamase superfamily protein	0.00206085570628
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7UTB5	 Putative multidrug resistance protein MdtD	0.00206055387355
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4G3J3		0.00206050137859
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J0KYC7		0.00206050137859
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7CJM5	 Outer membrane protein assembly factor BamB	0.00206011422617
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77726	 Inner membrane transport protein YajR	0.0020587528508
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WPQ5	 Periplasmic protein thiol  disulphide oxidoreductase DsbE	0.00205812029641
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1B2		0.00205681957756
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IS43		0.00205648706973
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB36		0.00205579163764
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76230	 Putative metabolite transport protein YdjK	0.00205552198486
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W6BAL6	 Glutathione S transferase, N terminal domain protein	0.00205521764899
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32675	 Pyruvate formate lyase 2 activating enzyme	0.00205499255797
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HN54	 UPF0435 protein SERP1418	0.00156445475042
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HN54	 UPF0435 protein SERP1418	0.000490119259953
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q89AB7	 UPF0056 membrane protein bbp_399	0.0020539420677
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJG2	 Coenzyme F420 reducing hydrogenase, beta subunit	0.00205391191228
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZNU3		0.0020534158975
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q87VK2	 23S rRNA  methyltransferase RlmB	0.00205339662116
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J2Y8	 Acyltransferase domain 	0.00205332757344
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26273	 Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.00205331676913
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45537		0.00205311813136
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADY0	 Ribosomal RNA small subunit methyltransferase D	0.00205301048867
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V7Z0	 Ureidoglycolate lyase	0.00201559301522
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24520	 Nicotinamide riboside transporter PnuC	0.00205205505867
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJE9	 Predicted ATPase	0.002051995784
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J6E0		0.00205143845795
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1WG08	 Binding protein dependent transport systems inner membrane component	0.00204993314861
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D3SBH7	 TRAP transporter, 4TM 12TM fusion protein	0.00204971666314
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ58	 Adhesin like protein	0.00204950317822
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZTW7	 HTH type transcriptional regulator HdfR	0.00204926155906
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R4C4		0.00195133367325
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQ31		0.0015067749379
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69832	 Galactitol permease IIC component	0.00204894705002
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XYL7	 Aldo keto reductase	0.00204888679452
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_H1Z450	 AMP dependent synthetase and ligase	0.00204781297403
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M9FMP3		0.00190499184059
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D4FP35		0.000597423476633
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SR58		0.00204608301218
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FBQ3	 dTDP fucosamine acetyltransferase	0.00204602753835
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33360	 Putative osmoprotectant uptake system ATP binding protein YehX	0.0020455934972
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57354	 Putative GTP cyclohydrolase 1 type 2	0.00204519036135
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0I7		0.00204437188253
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C8NEG6	 ABC transporter, substrate binding protein, family 3	0.00204428280024
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76042	 Putative ABC transporter periplasmic binding protein YcjN	0.00204369952851
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1Z8	 CobB CobQ like glutamine amidotransferase domain containing protein	0.00204356257137
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52276	 Asparagine  tRNA ligase	0.00203384770499
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77608	 2 keto 4 pentenoate hydratase	0.00204342365968
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B1I797		0.00182590331849
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P29018	 ATP binding permease protein CydD	0.0020419247329
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A2T6	 cAMP activated global transcriptional regulator CRP	0.00204171510199
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27097	 2 phospho L lactate transferase	0.00204160471288
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76350	 Shikimate transporter	0.00204059510248
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9ADC4	 CRISPR associated endonuclease Cas1	0.00204053110263
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76082	 2,3 dehydroadipyl CoA hydratase	0.00203284834683
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75849		0.00132849773264
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P75849		0.000711471774704
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G4NYU6	 Transcriptional regulator, PadR family	0.00179787836884
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45600	 HTH type transcriptional regulator CysB	0.00133033412265
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P45600	 HTH type transcriptional regulator CysB	0.000709559879021
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NHM6	 MapA	0.00203989250683
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q466I1	 DNA 3 methyladenine glycosylase III	0.00203985637466
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS06		0.00203927884435
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACA2		0.00203922964628
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49ZY7		0.00203892351685
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1R4J7		0.00203887037459
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P07654	 Phosphate transport system permease protein PstA	0.00203871166979
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O06005	 Amino acid permease AapA	0.00128285060069
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_O06005	 Amino acid permease AapA	0.000755855027402
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1C7	 Xylose isomerase like TIM barrel domain containing protein	0.00203846061598
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P06136	 Cell division protein FtsQ	0.00203796836418
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1HJW0	 Pertactin 	0.00203696696485
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A2XBC4		0.00203696461243
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16429	 Formate hydrogenlyase subunit 3	0.0020363299781
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C4ZXQ4	 Purine ribonucleoside efflux pump NepI	0.00203568312465
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28UP9	 Periplasmic sensor signal transduction histidine kinase	0.00203538424257
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8HCE7		0.00195619805534
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X958		0.00203495639082
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWR1		0.00203472698151
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZN3	 Hydrogenase accessory protein HypB	0.00203409044981
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39370	 Probable 9 O acetyl N acetylneuraminic acid deacetylase	0.00203388179927
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F6D286	 Glycosyl transferase family 2	0.00203339336
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACJ2	 Leucine responsive regulatory protein	0.00203289595118
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N0AZ28	 Short chain acyl CoA synthetase	0.00203270143169
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6STX1		0.00200529039597
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8KA76	 RNA polymerase sigma factor RpoH	0.00203177981173
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R6R0	 N formylglutamate amidohydrolase	0.00203176771086
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q99ZV9	 CRISPR associated protein Csn2	0.00179771331843
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q99ZV9	 CRISPR associated protein Csn2	0.000233174520906
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7LN16	 Ribosomal protein S6  L glutamate ligase	0.00201915778115
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7FJL1	 GTP cyclohydrolase 1	0.00203057401654
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8RT27	 Cation transport protein chaC	0.00201289422652
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45608	 Phosphate regulon sensor protein PhoR	0.00202853369676
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9L8	 Pyrroline 5 carboxylate reductase	0.00197023212117
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0KZ99	 Ribosomal RNA large subunit methyltransferase M	0.00202040160141
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98AP4	 Nitrogenase iron molybdenum cofactor biosynthesis protein NifE	0.0020277953387
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K3CK98		0.00131122815001
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WY56		0.00202719052009
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45549		0.00202668610665
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64481	 Inner membrane protein YdjM	0.00202638520023
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNT4	 Putative Holliday junction resolvase	0.000963310126158
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q5HNT4	 Putative Holliday junction resolvase	0.000783530839604
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PMY6	 ABC transporter related	0.00202605619341
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MIH3	 Glyoxylate hydroxypyruvate reductase A	0.00202543220341
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9MJH4	 Biotin synthase	0.0013455726337
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B9MJH4	 Biotin synthase	0.000649598092586
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN78	 Predicted O linked GlcNAc transferase	0.00202443589173
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27918	 Phosphopantetheine adenylyltransferase	0.00202408971127
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B7KTM9	 Phage cell wall peptidase, NlpC P60 family	0.00202327013848
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25747		0.0020232464609
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75925	 Cytochrome b561 homolog 2	0.00163402995012
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P75925	 Cytochrome b561 homolog 2	0.000389164606365
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VED6		0.00202252739486
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F3A7	 HTH type transcriptional regulator UlaR	0.00202171195467
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4VN25	 Glycosyl transferase 2 family protein	0.00202133518493
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42601	 Inner membrane protein alx	0.00202103995698
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6HHL1		0.0020200192859
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D9PWJ1	 Phosphomethylpyrimidine kinase	0.00201981086729
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTT4		0.00201929135102
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8ST66	 Mannitol 1 phosphate 5 dehydrogenase	0.00152976617502
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZ41	 Arginase agmatinase family protein	0.00201891678381
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PXC4	 Probable ribosomal RNA small subunit methyltransferase A	0.00201743361399
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A1U3		0.00201677301312
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEP8	 Glyoxylate carboligase	0.00154844161157
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AEP8	 Glyoxylate carboligase	0.000468267572756
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6LV34	 RNA polymerase associated protein RapA	0.00201644257156
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1AZK3	 Peptidoglycan glycosyltransferase	0.00201587860326
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMP7	 Fuculose 1 phosphate aldolase, class II aldolase adducin family	0.00201528879291
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8UFB1	 Flavodoxin	0.00201363918567
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2E237	 Putative reductase	0.00201357099389
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58403	 Protein YfdX	0.00201344150209
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69854	 Tat proofreading chaperone DmsD	0.00201283957665
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F4E2	 Fatty acid metabolism regulator protein	0.00201204652987
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75747	 Protein AbrB	0.00201163829398
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P21112	 Methyl coenzyme M reductase II subunit gamma	0.0020115787804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1JIY2	 UPF0597 protein YE0448	0.00201152194724
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0N8	 Dolichol kinase	0.0020110730336
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9CIV7	 PTS dependent dihydroxyacetone kinase, ADP binding subunit DhaL	0.0020048850847
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE25	 Arabinose proton symporter	0.00201084029983
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76561	 Esterase YpfH	0.00201035248811
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PGV3		0.00172991589003
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q46U36	 Nucleoside ABC transporter membrane protein	0.00200964509998
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWS0	 TRAP T family transporter, periplasmic binding protein	0.00200860280954
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C7S7		0.00200808624666
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08179	 Phosphoribosylglycinamide formyltransferase	0.00197143615026
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RQ23		0.00200628064741
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9R3J0	 Transposase, putative	0.00200611821292
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_V4Z1C0		0.00200609569931
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNH0		0.00192555269663
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31660	 2 methylcitrate synthase	0.001818146801
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P31660	 2 methylcitrate synthase	0.000139261472482
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F6D1L5	 Xylose isomerase domain containing protein TIM barrel	0.00200532803366
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39353		0.00200489815266
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPE0	 Integrase XerD family protein	0.00200446683974
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQN6		0.00200444952417
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5F649	 Glutamate  tRNA ligase	0.00198232339166
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SMN4	 2 phosphosulfolactate phosphatase ComB	0.00200191997407
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKW4	 Dihydrolipoamide dehydrogenase	0.00200157892135
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A029IUD7	 Major Facilitator Superfamily protein	0.00200157873536
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SP66		0.00200110674518
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7N475	 UPF0259 membrane protein plu2479	0.00200104060116
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3STI1	 GntR family transcriptional regulator	0.00200101568683
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MWH5		0.00200008263659
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I2WAD1	 Pertactin	0.00199941482727
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2GKU0		0.00199929836735
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8Z591	 Multiphosphoryl transfer protein	0.00199912344857
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75810	 Inner membrane protein YbjJ	0.00199883673702
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TYY5	 Predicted pyridoxal phosphate dependent enzyme apparently involved in regulation of cell wall biogenesis	0.00199823499237
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GMI4	 HTH type transcriptional regulator BetI	0.00199796508164
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Y1DKJ6	 Alpha glucosidase yihQ	0.00199741115941
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PLS6	 Nitrogenase molybdenum iron cofactor biosynthesis protein NifN	0.001997271383
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26979	 Probable tyrosine recombinase XerC like	0.00199711564331
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_L0KF64	 Cu responsive transcriptional regulator	0.00199674580148
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58388	 3 mercaptopyruvate sulfurtransferase	0.00193556583751
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5PJK8	 sn glycerol 3 phosphate binding periplasmic protein UgpB	0.00199586041223
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D7A8N8		0.00199523355844
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SUV7		0.0019948503754
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJY3		0.00199448873424
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIC8	 GumN family protein	0.00168895221474
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P06846	 HTH type transcriptional regulator EbgR	0.00199402742332
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D7AAI4	 Peptidyl prolyl cis trans isomerase	0.00199395471515
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45468	 UPF0718 protein YraQ	0.00199333614315
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q5JIZ8	 4 phosphopantoate  beta alanine ligase	0.00199328199317
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46448	 Formate dehydrogenase major subunit	0.00199314572061
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGJ6		0.00199311939086
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7N3G5	 Putative aminoacrylate hydrolase RutD	0.00198641756587
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U1Q9	 CRISPR associated endoribonuclease Cas2	0.00199248888759
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0C7J8	 Glutathione S transferase domain protein	0.00199204675082
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP06		0.00199053039475
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R9I4	 Magnesium chelatase	0.0019903972207
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33352		0.00199037515523
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76077	 1,2 phenylacetyl CoA epoxidase, subunit A	0.00198955647605
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27242	 Lipopolysaccharide 1,2 N acetylglucosaminetransferase	0.00198955446329
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P25254		0.00198891245325
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39410	 Putative kinase YjjJ	0.00198876680127
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMU4	 Glycosyltransferase , GT1 family	0.00198846494706
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B9D8	 ABC transporter related protein	0.00198824899501
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45524	 Putative esterase YheT	0.00198744397869
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRJ1		0.00101792951571
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A008L098		0.00168274279252
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R5KLH4		0.00198685563968
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08192	 Bifunctional protein FolC	0.00198107371155
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9WPS8	 Amino acid amide ABC transporter membrane protein 1, HAAT family	0.00198578175135
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L3E5	 UPF0213 protein SH2523	0.00198402287733
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9MFF7		0.00198373238847
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76015	 PTS dependent dihydroxyacetone kinase, dihydroxyacetone binding subunit DhaK	0.00196342430005
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J376	 Phosphate import ATP binding protein PstB	0.00195120992919
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7LM74	 Undecaprenyl phosphate alpha 4 amino 4 deoxy L arabinose arabinosyl transferase	0.00198340878979
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FK51	 Carbamate kinase	0.0018658276149
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36879		0.00198326368697
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08395	 Protease 4	0.00198279482965
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R8A9F1		0.00198220895465
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TBU8	 L rhamnonate dehydratase	0.00198198707637
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76103	 Inner membrane protein YdcO	0.00198192383106
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P67088	 Ribosomal RNA small subunit methyltransferase I	0.00172279152009
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P67088	 Ribosomal RNA small subunit methyltransferase I	0.00025908082629
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_V5XRZ5	 Iron sulfur  cluster formation protein IscU	0.00198172173142
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27507		0.00198155535266
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9HXI4	 Inositol 1 monophosphatase	0.00193605419425
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A4FZ07	 Nitroreductase	0.0019812451116
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D4N0A6	 Molybdenum ABC transporter, periplasmic molybdate binding protein	0.00198115965246
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TX91	 Histidine kinase	0.00198050673638
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SCI0		0.0017923167418
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P18789	 Citrate synthase	0.00194512371514
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJG2		0.00197969740297
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7M5J1		0.00197969740297
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YTQ1		0.00197969740297
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_H6PD14	 Oxidoreductase,pyridinenucleotide disulfide, class I	0.00197945400123
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76296		0.00190499184059
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABJ2	 Cytochrome bo ubiquinol oxidase subunit 2	0.00197872141487
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6UC68	 Glutamine synthetase catalytic region	0.0019779755867
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45469		0.00197339701058
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37049	 Phosphodiesterase YaeI	0.00197763909459
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58409	 Methanogen homoaconitase large subunit	0.00197758064875
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KU54		0.000855631928401
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A0A024DEK4	 Lactoylglutathione lyase	0.00197742835718
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24555	 Protease 2	0.00197742610964
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B9DTF4		0.00197735834052
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MVB3	 Phage like element PBSX protein XkdC	0.00197729878963
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZJ5	 Iron sulfur flavoprotein	0.00197658770609
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37677	 L xylulose 3 keto L gulonate kinase	0.00197639014061
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNW5	 Signal transduction histidine kinase	0.00197618524966
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1VHW6		0.00197608042512
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKD8	 Adhesin like protein	0.00185104343604
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3THN2	 Dehydrogenase	0.00197585420058
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36646	 Protein transport protein HofC homolog	0.00197456903174
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I2SYF8	 Cation efflux system protein CusA	0.00197409397123
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X6C7	 Xanthine dehydrogenase molybdenum binding subunit	0.00196267091752
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P26646	 Probable acrylyl CoA reductase AcuI	0.00197358564795
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C6B907	 NAD dependent epimerase dehydratase	0.0019735573883
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKF9	 ATP utilizing enzyme, PP loop superfamily	0.00195689144206
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E3GXW6	 CobB CobQ domain protein glutamine amidotransferase	0.00197196353431
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q88VD4	 30S ribosomal protein S20	0.00197192341136
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4T2X8		0.00197112728433
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83PX4	 HTH type transcriptional regulator FrlR	0.00192903903861
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM23	 Pre mRNA splicing ribonucleoprotein PRP31	0.00196971747562
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E3GXL3	 Prephenate dehydratase	0.0019695744531
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26872		0.00196929790695
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0S7	 MotA TolQ ExbB proton channel family protein	0.00196833048427
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P06959	 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	0.00196800761989
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZR2		0.00196749148686
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPF8	 Transcriptional regulator, TrmB	0.00196736157743
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37353	 2 succinylbenzoate  CoA ligase	0.00196704896712
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7VQI2	 Protein translocase subunit SecA	0.00196698756651
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76081	 1,2 phenylacetyl CoA epoxidase, subunit E	0.00192217598228
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9L6N7	 Threonine efflux protein	0.00196622653434
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77319	 Chaperone protein HscC	0.00196610590386
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KLE9	 Transcriptional regulator, AraC family	0.00176088859482
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8WCA6	 Heme lyase subunit CcmF	0.00196599663717
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7E5A1	 Transcriptional regulator	0.00196582617721
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AD13	 Protein YeeZ	0.00196491688355
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44595	tRNA ribosyltransferase isomerase	0.00186260500273
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P44595	tRNA ribosyltransferase isomerase	0.000102087530385
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A992	 Fructose bisphosphate aldolase class 1	0.00196455428627
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27593	 Probable cyclic pyranopterin monophosphate synthase	0.00196442977045
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNS3	 Putative ATPase 	0.00196399175422
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51547	 Phosphate specific transport system accessory protein PhoU homolog	0.0012042062456
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q51547	 Phosphate specific transport system accessory protein PhoU homolog	0.000759707057095
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9BWD1	 Acetyl CoA acetyltransferase, cytosolic	0.00195803874997
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6SYG4	 ABC type multidrug transport system, ATPase component	0.00196286088208
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P35630	 NADP dependent isopropanol dehydrogenase	0.00196274025151
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ARW9	 Nif specific regulatory protein	0.00196261427358
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XRD2	 YceI family protein	0.00196259619365
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WTR7		0.00157399944547
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33644	 Laccase domain protein YfiH	0.00196108490213
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2GKA3		0.000862945021804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52128		0.00196016701725
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F8L7S5	 UDP glucose 6 dehydrogenase	0.00195986324433
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E3GYU4	 Aspartokinase	0.00195971887924
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32694		0.00195889500864
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q018U5	 Cysteine synthase 	0.00195852285532
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1LM32	 Fatty acid oxidation complex subunit alpha	0.00166416327444
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B1LM32	 Fatty acid oxidation complex subunit alpha	0.00025840749683
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A4XZN0	 Acetate CoA transferase YdiF	0.00195835025921
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A034SZW0	 Periplasmic nitrate reductase	0.00195814347835
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2S6U9	 Carbamoyl phosphate synthase small chain	0.00195374338749
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37624		0.00176142902689
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P37624		0.000196094287882
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI0003753584	 hypothetical protein	0.00187665341117
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2U6Z0	 N anthranilate isomerase	0.00195028124561
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q88WJ7	 UPF0122 protein lp_1634	0.00195702145991
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6GVM8	 Sulfite reductase [NADPH] flavoprotein, alpha component	0.00195698567311
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77522	 FeS cluster assembly protein SufB	0.00195685421299
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J123	 Diguanylate cyclase phosphodiesterase	0.00195466856466
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1LT55	 Threonylcarbamoyl AMP synthase	0.00195459019805
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46854		0.00195440779409
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A4FXY0	 ATP phosphoribosyltransferase	0.00195401606712
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P0A2Y1	 Arginase	0.00195397136555
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U531		0.00195364012728
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_K0AB23	 Nucleotide sugar dehydrogenase	0.00195345204547
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J0A2		0.0010900889895
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1J7Z5	 3 demethylubiquinone 9 3 methyltransferase	0.00195265487975
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M3A2	 Transposase IS116 IS110 IS902	0.00195252924511
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26156	 Short chain isoprenyl diphosphate synthase	0.00195222835372
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADW1	 Lipopolysaccharide export system protein LptC	0.00195127942508
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7B3T9	 Molybdate ABC transporter permease protein	0.00195075384705
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F2MM74	 Cytidine deaminase	0.00195062553611
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76417	 Putative nucleoside transporter YegT	0.00195059651784
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPX9		0.000634997280196
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75745		0.00194889773591
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75884		0.00194888619954
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAC5	 Inner membrane protein YbhL	0.00194871427919
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q53058		0.000542608803859
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P22348	 Probable N5 carboxyaminoimidazole ribonucleotide mutase	0.00193117799776
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P09384	 Chemotaxis protein CheA	0.00193816769802
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33355		0.001946923433
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q4QLL8	 Cytochrome c 552	0.0019285704898
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37642	 Inner membrane protein YhjD	0.00194666021688
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SL72	 DNA primase large subunit PriL	0.0019455693547
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KNK2	 33 kDa chaperonin	0.00194507490372
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI0003728B23	 hypothetical protein	0.0019445248132
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P09323	 PTS system N acetylglucosamine specific EIICBA component	0.00194325768766
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTR8	 Methyl accepting chemotaxis sensory transducer	0.00194283679876
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E3V9	 Transporter MIP family	0.00194278448151
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HEV6		0.000820850142691
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21649	 Protein MrkE	0.0019422317332
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMN7	 Histone	0.00194162629906
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B1I8W2	 Preprotein translocase, SecE subunit	0.00194162629906
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1JDV6		0.00194162629906
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3TRT7		0.00194162629906
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5E3B6		0.00194162629906
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39279		0.00194152670334
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31446	 Inner membrane protein YidI	0.00194122403939
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0VMD0	 Biotin synthase	0.00189692858166
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52067	 Fosmidomycin resistance protein	0.00194034612297
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P19769	 Putative transposase InsK for insertion sequence element IS150	0.00193957233248
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R6V945	 ATP dependent protease La	0.00193948616508
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A025GLL8	 Lipoprotein NlpD	0.00193815633568
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6ZZE4	 Transcriptional regulator, LysR family protein	0.00193754469004
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D3QRZ7		0.00171575033252
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J438	 Transposase	0.00193725851816
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45766	 Putative amino acid ABC transporter binding protein YhdW	0.00193668095037
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39408		0.001936654909
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9K2	 Protein PhoH	0.00193649168056
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77202	disulfide interchange protein DsbG	0.00193607780748
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GFV5	 Dihydrofolate reductase	0.00193594334819
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42915	 Outer membrane usher protein YraJ	0.00193583371468
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24216	 Flagellar hook associated protein 2	0.00193580279968
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9I7C2	 DNA gyrase subunit B	0.00134619423401
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I7C2	 DNA gyrase subunit B	0.000580336042539
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2LK66	 Penicillin binding protein 1C	0.00193561685604
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PFM0		0.00159108020975
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM36	 Predicted RecB family exonuclease	0.00193476496146
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6AT82		0.00193451243371
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30864		0.00193422055868
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5MZ72		0.00193419095425
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6STX0		0.00193403023273
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X8V7		0.00193321987342
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V2Q5	 Thymidylate synthase	0.00180103757556
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P63412	 Acetate kinase	0.00193290220051
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75750		0.00193274001284
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q06067	 Signal transduction histidine protein kinase AtoS	0.00193243961418
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3VHH5		0.00193131305606
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1GW72	 Autoinducer 2 kinase LsrK	0.00193107792738
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X4I4		0.00187319552778
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31469	 UPF0167 protein CbrC	0.0019305393998
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5P0P9		0.00192936428628
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D7B9U3		0.00192859908122
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJ57		0.00192858337456
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0TQL8		0.00192847006996
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KSX7		0.000417208956827
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEQ2	 Protein GlcG	0.00161760436184
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AEQ2	 Protein GlcG	0.000296954610446
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P80239	 Alkyl hydroperoxide reductase subunit C	0.00164047718271
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P80239	 Alkyl hydroperoxide reductase subunit C	0.000286018604961
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8SRR9	 MFS family multidrug efflux protein, similarity to bicyclomycin resistance protein Bcr	0.00192590238663
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKK3		0.00192555817846
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5ISW4		0.00176423296511
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1B0		0.00187322867724
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP78	 Exoribonuclease VII, large subunit, XseA	0.00192447897378
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMY4	 Predicted RNA binding protein	0.00192445554906
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26837	 Phenylalanine  tRNA ligase alpha subunit	0.00192366783604
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL29	 Prefoldin subunit alpha	0.00192325068811
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRL8	 WD 40 repeat protein	0.00192320216222
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57843	 2 amino 3,7 dideoxy D threo hept 6 ulosonate synthase	0.001922696357
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TX73	 Acetyltransferase	0.00192258608562
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B3M6		0.00192209844835
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AA94	 Sensor histidine kinase YpdA	0.00192195667093
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKG1	 Mechanosensitive  ion channel protein	0.00192096721768
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1E292	 PTS system, mannose fructose sorbose family, IID component	0.0019208429204
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42593	 2,4 dienoyl CoA reductase [NADPH]	0.00192070557071
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6DYT5	 Permease family protein	0.00191969904514
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P35482	 Alkaline phosphatase L	0.0019196503294
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E113	 Molybdate transport system regulatory protein ModE	0.00191939400546
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AGP3		0.0019190763744
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV30		0.00107558230342
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NI43	 Predicted transcriptional regulator	0.00191799693471
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNY6	 Adhesin like protein	0.00190098681348
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZN2	 Maf like protein PA2972	0.0019173946623
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8NY85		0.00174741713041
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2QM67		0.00191595890423
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SKL4	 Molybdenum cofactor biosynthesis protein E MoaE	0.00191577822729
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39369		0.00191552414498
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKY8	 30S ribosomal protein S3Ae	0.00191546753956
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7CQ37	 Flagellar regulator flk	0.00191534927249
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24228	 D alanyl D alanine carboxypeptidase DacB	0.00191499478819
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJH6	 Energy converting hydrogenase A subunit J EhaJ	0.00191420533922
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G1ZXK5	 Sodium proline symporter	0.00191407608736
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P09832	 Glutamate synthase [NADPH] small chain	0.0018180654177
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75910		0.00191380323446
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R6U1L8	 Glycosyltransferases involved in cell wall biogenesis	0.0019137176047
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W8UXR7		0.00170806850413
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0CL46	 Formate hydrogenlyase transcriptional activator	0.00191358975976
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0LW44		0.000731627301096
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8Z9C3	 Poly polymerase I	0.0019116362614
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A025ZG79		0.00191157676231
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZP50	 Outer membrane protein W	0.00191123680901
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL12		0.0019111868843
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A3B9	 4 phosphopantetheinyl transferase EntD	0.00191099393616
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D7HX96	 Acetate permease ActP 	0.00191051815956
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TPH6	 N acetylmuramoyl L alanine amidase	0.00191049474644
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B0RSU6	 Flagellar motor component MotA	0.00191044838639
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P57355	 UPF0056 membrane protein BU267	0.00191017342
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P56467	 Bifunctional protein FolD	0.00191005144526
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q92PC8	 5,6 dimethylbenzimidazole synthase	0.00190978493897
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T6D9	 AsnC family transcriptional regulator	0.00190957278318
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33020		0.00190930670581
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28VR9	 Monofunctional biosynthetic peptidoglycan transglycosylase	0.00190852602451
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76080	 Putative 1,2 phenylacetyl CoA epoxidase, subunit D	0.00180210683601
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q899R2	 Single stranded DNA binding protein	0.00190760819909
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46819	 Putative electron transport protein YgfS	0.00190689914827
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1S016		0.00127101815993
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P57872	 Ribosome binding factor A	0.00190499184059
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q65PC3	 50S ribosomal protein L33 1	0.00190499184059
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YQG1	 Integrase core domain protein	0.00190499184059
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_U3TJ98		0.00190499184059
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V6QAN7		0.00190499184059
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PS59	 ATP synthase subunit beta 2	0.00190498205712
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32128		0.0019048782094
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D9PYH9	 tRNA pseudouridine synthase Pus10	0.00190487291407
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77300		0.0019045070277
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X505	 NADP dependent L serine L allo threonine dehydrogenase YdfG	0.00189730740476
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFI1	 Probable oxalyl CoA decarboxylase	0.00190371074957
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46820		0.00190319198161
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8CVW1	 Outer membrane protein C	0.00190286494293
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUE2		0.00145751754359
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CUE2		0.000444777830621
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMH3	 Predicted ATPase, AAA+ superfamily	0.00190138677588
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NEH1	 Glutamyl tRNA amidotransferase subunit D	0.00190012696696
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L6Z8K5	 Protease3	0.00190006424548
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4NMU3		0.00189997281317
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q56953	 Chelated iron transport system membrane protein YfeB	0.00189953969042
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGG1	 Thiamine monophosphate kinase	0.0018992698556
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0T052	 Malate dehydrogenase	0.00189914400354
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TPF4	 Cobyrinic acid a,c diamide adenosyltransferase	0.00189909958235
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEV2	 Regulator of RpoS	0.00189901293038
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SM98	 Radical SAM domain containing protein	0.00189867887268
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MGX5	 tRNA  methyltransferase TrmJ	0.00189866092585
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FCW0	 Phosphoglycolate phosphatase	0.00189853190108
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L3N1		0.00142706757424
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK93	 Mg dependent DNase, TatD related	0.00189817397268
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUV4		0.000465274504846
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KK79	 Metallophosphoesterase	0.00189739570169
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z2W0		0.00189609000956
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1ZI13	 Catalase	0.00189568202324
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3X709	 Extracellular solute binding protein family 3	0.00189535682019
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28303	 DNA damage inducible protein F	0.00189481552915
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77460		0.00189479201207
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J2X2	 Phosphatidate cytidylyltransferase	0.00189362633301
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2K746	 Carbon nitrogen hydrolase family protein	0.0018936044804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZQ16	 Ribosomal large subunit pseudouridine synthase C	0.00189345992956
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP79	 Integrase recombinase protein	0.00189340733505
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32677		0.00189276331398
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PYE0		0.00189270596821
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KM71	 Peptidase A24A, prepilin type IV	0.00189194634382
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0RC17	 Xanthine phosphoribosyltransferase	0.0018347001591
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KNH5		0.000860946603241
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9L7R4	 Putative sulfoquinovose importer	0.0018907872986
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZRQ6	 4Fe 4S binding domain protein	0.00189076895411
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QIG5		0.00140255621526
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28TH8	 Protein L isoaspartate O methyltransferase	0.00189000017959
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TGA9	 HTH type transcriptional activator RhaS	0.0018876926515
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1LL17	 D galactonate dehydratase 2	0.0018872413805
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q836B1	 UPF0473 protein EF_1204	0.001886084981
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A0A023WMY2	 Amino acid transporter	0.00114381559691
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023WMY2	 Amino acid transporter	0.000741084604816
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F2MRI9	 PTS family mannose fructose sorbose porter component IIB	0.00188471765104
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZH57	 3 hydroxyacyl [acyl carrier protein] dehydratase FabZ	0.00187837881447
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEW2	 Hydrogenase 4 component E	0.00188462762767
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9J8J7	 Phosphate ABC transporter, permease protein PstC	0.00188422469805
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77377	 Lipopolysaccharide biosynthesis protein WzxC	0.00187687326933
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5M601	 Beta galactosidase small chain family protein	0.00188208979893
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I767	 5 nucleotidase	0.00188172261409
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNB1	 Multidrug ABC transporter, permease component	0.00188165856101
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T7JLC1		0.00188003296398
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KRH6	 CBR SDC 3 protein	0.00107054493848
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RMZ4		0.0018255251538
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UZW2	 Ecotin	0.00187897908529
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN38	 Tungsten formylmethanofuran dehydrogenase, subunit D, FwdD	0.00187888449233
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E4PHF9	 Acyl CoA dehydrogenase domain protein	0.00180244372508
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E4PHF9	 Acyl CoA dehydrogenase domain protein	7.61996736203e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B414	 General secretory system II, protein E domain protein	0.0018785750617
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P18775	 Dimethyl sulfoxide reductase DmsA	0.00187759998838
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TF99	 Undecaprenyl phosphate 4 deoxy 4 formamido L arabinose transferase	0.00187684882174
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27088	 Type 2 DNA topoisomerase 6 subunit B	0.0018766388234
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V5UK09	 Formate dehydrogenase subunit beta	0.00187609830023
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E2C7	 RNA binding protein	0.00187605426054
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T8JJU2	 ATP dependent helicase	0.0018751402163
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A1APL2	 Carbonic anhydrase	0.00187498490392
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NEU9	 Serine  tRNA ligase	0.00187432888203
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9VW16	 Short chain dehydrogenase	0.00187405111368
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B2B5	 Polysaccharide export protein	0.0018740156108
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q45388	 Protein tex	0.00148951360384
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q45388	 Protein tex	0.000326763984172
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q45388	 Protein tex	5.75953037923e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9J7	 Ribokinase	0.00186747475054
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q4JVZ1	 Thiamine phosphate synthase	0.00184387255197
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31828	 Probable zinc protease PqqL	0.00187277862199
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMP3	 Probable cobalamin biosynthesis protein CobD	0.00187266094172
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T2N8	 Transcriptional regulator	0.00187240320481
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U5UBZ0	 Integral membrane protein TerC	0.0018717985632
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NEN8	 Predicted RNA binding protein	0.00187159493115
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E040	adenosylcobinamide phosphate guanylyltransferase CobY	0.00187150771711
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9RWY7		0.00187034038121
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NE86	 Bifunctional enzyme Fae Hps	0.00187015664801
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZPK6	 ATP dependent dethiobiotin synthetase BioD 2	0.00187007773206
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15043	 ATP dependent DNA helicase RecQ	0.00186993123815
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77308	 Probable D,D dipeptide transport system permease protein DdpB	0.0018698485627
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WXV3		0.00186971421391
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5FUN5	 50S ribosomal protein L32	0.00186971421391
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3UJU5		0.00186933032783
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V0M2	 Carbonic anhydrase	0.00186925231614
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PUK9		0.00186865818735
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57242	 ABC transporter ATP binding protein uup 1	0.00186767082419
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4TGE4	 Succinylglutamate desuccinylase	0.00186760946646
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0AFP3		0.00146860531898
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M8YI17	 CRISPR associated protein Cas7 Cse4 CasC, subtype I E	0.00186739695254
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I5E3H6	 Ion channel family protein	0.0018671257319
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F621	 Mannonate dehydratase	0.00185388773405
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHP4	 Putative ECF RNA polymerase sigma factor protein	0.00115971926153
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27296	 Putative 6 carboxy 5,6,7,8 tetrahydropterin synthase	0.00186524183362
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P20966	 PTS system fructose specific EIIBC component	0.00172673993533
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P20966	 PTS system fructose specific EIIBC component	6.92012114852e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P20966	 PTS system fructose specific EIIBC component	6.83578656393e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76537		0.0018640570408
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9Q3	 Aerobic respiration control protein ArcA	0.00186396270793
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q1D759	 50S ribosomal protein L18	0.00158034165506
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q1D759	 50S ribosomal protein L18	0.000283608335813
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1AC10	 Phosphoribosylglycinamide formyltransferase 2	0.00186394372517
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26480	 UDP glucose 4 epimerase homolog	0.00186394327717
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV70	 Polysaccharide export protein	0.00186381782504
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRH2		0.00186343784104
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52002	 Multidrug resistance protein MexB	0.00120278895434
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P52002	 Multidrug resistance protein MexB	0.00065821103713
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46821	 Uric acid transporter UacT	0.00186082098821
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P07023	 T protein	0.00186056144696
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WTR8		0.00172935995362
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8GIP4	 Lysine  tRNA ligase	0.00185310633654
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A7I8B8	 Proteasome activating nucleotidase	0.00185877442604
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P07822	 Iron hydroxamate binding protein FhuD	0.00185854311879
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V4B9		0.000200724786386
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9K1P6	 Efem EfeO family lipoprotein NMB0035	0.0018572227988
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F0DGH5	 Metallo beta lactamase superfamily protein	0.00177130820265
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75748		0.00185618276035
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN13	 Cytosine deaminase	0.00185527399506
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L611	 RNA binding protein Hfq	0.00119089392106
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L611	 RNA binding protein Hfq	0.000664240575992
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IZN1	 NAD kinase	0.00145815777241
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B9E6S4	 Exogenous DNA binding protein comGC homolog	0.00120005126587
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9E6S4	 Exogenous DNA binding protein comGC homolog	0.000653492346611
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9JSA5	 DNA binding transcriptional activator	0.00185305031894
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DRN9		0.00185271775229
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8H6V7	 Cytochrome C oxidase assembly protein	0.00185271681197
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMT8	 Glycosyltransferase, GT2 family	0.00185245057506
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M320	 Putative competence damage inducible protein	0.00185204947576
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QGY4	 Extracellular matrix binding protein EbhA	0.00185203892837
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E3GXS5		0.00185186687669
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9UYJ0	 Acetate CoA transferase subunit alpha	0.00185177978569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16684	 Probable transcriptional regulator PhnF	0.00185151069335
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0L6T7	 Glycine dehydrogenase	0.00185136849817
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QYM6	 ATPase	0.00185114562355
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46896	 CRISPR associated endonuclease Cas1	0.00185089820936
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45769		0.00185079593274
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X5K0	 2 hydroxy 6 oxononadienedioate 2 hydroxy 6 oxononatrienedioate hydrolase	0.00185047516651
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE89	 Transcriptional regulatory protein CpxR	0.00185043626891
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58944		0.00185023011471
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B9F5	 DNA ligase	0.00184743511263
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMV1	 Glycosyltransferase, GT2 family	0.0018484815789
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39379		0.00184801232573
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6D6Y6	 Putrescine aminotransferase	0.00184797871404
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAR6	 Inner membrane protein YbaN	0.0018479293419
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KMK5		0.00180293870627
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRZ1		0.00184654384246
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZP15		0.00175134699868
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27156	 CRISPR associated endonuclease Cas1	0.00184494233872
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZR24	 Chromosome initiation inhibitor	0.00184476222026
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6I479		0.00168274279252
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A026XYW8	 Hemolysin E	0.00184423280215
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46844		0.00184397849153
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88IQ4	 Sensor histidine kinase response regulator	0.00184306123327
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GV37	 UPF0262 protein Sala_0765	0.00183392931044
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3WBP5		0.00184267234698
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFY4	 Cytidylate kinase	0.00184210975378
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GMP5	 Inner membrane translocator	0.0018413137443
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WVU7		0.00184126204109
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P03740	 Tail fiber assembly protein	0.00184112840192
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KV18	 Putative ribosome biogenesis GTPase RsgA	0.00184056718261
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C4K7U8	 5 formyltetrahydrofolate cyclo ligase	0.00184055036187
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8GRS8	 Ring cleavage extradiol dioxygenase	0.00184014966628
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4EUV9	 Glutamate  cysteine ligase	0.00183996601664
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A949	 Ribosomal protein alanine acetyltransferase	0.00183972156868
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZT16		0.00183867207201
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MN74	 NAD dependent malic enzyme	0.00161151936315
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A7MN74	 NAD dependent malic enzyme	0.000227095813784
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKE8	 Type II secretion system protein F, GspF	0.00183796863847
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P65809		0.00183706820333
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ59		0.00183571941002
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HE54		0.00183571941002
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76270	 Free methionine R sulfoxide reductase	0.00183571941002
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H6LL26		0.00155199931493
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E8XP36	 Outer membrane protein assembly factor BamC	0.0018353375836
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6U344		0.00182915179091
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNK2	 OstA family protein	0.00148332232394
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MQ64	 Secretion monitor	0.00183363968317
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VMF8	 DNase	0.00183361890977
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5QY81		0.00174670821275
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3EXH9	 Truncated transposase	0.00183270468804
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RJP3		0.00183269420905
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L4XYK7	 Methyl accepting chemotaxis protein III	0.00183255057092
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47427	 Tail fiber assembly protein homolog	0.00183235450335
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC77	 3 deoxy D manno octulosonic acid transferase	0.000982808560847
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0AC77	 3 deoxy D manno octulosonic acid transferase	0.000834417913644
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G9G286	 IS5 transposase	0.00183129632658
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58497	 Transcriptional regulator ModE	0.00183095785992
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1X0		0.00183028677192
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C4ZZ24	 ATPase RavA	0.00181076362893
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P09831	 Glutamate synthase [NADPH] large chain	0.0018283488552
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TC48	 Cell division protein ZipA homolog	0.00182932695654
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PM57	 OmpA domain protein	0.00182910249122
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HG20	 Probable membrane protein	0.00182856265908
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31453		0.00182830076957
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABG8	 Rod shape determining protein RodA	0.00182765019492
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77736	 Putative ankyrin repeat protein YahD	0.00182745867106
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0WKW0	 Putrescine binding periplasmic protein	0.00182742359094
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZNN2		0.00182705680342
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LC92		0.00182691162734
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8YF84	 Glutamate synthase  small chain	0.00182665616971
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8EGH1	 Ditrans,polycis undecaprenyl diphosphate synthase  farnesyl diphosphate specific)	0.00182095167718
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR24	 IS1272 like transposase, degenerate	0.00169014982362
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75617	 UPF0174 protein YaaW	0.00182552051281
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75958	 Lipoprotein releasing system transmembrane protein LolE	0.00182459562638
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KUP5		0.00173214349067
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VC46		0.00182396957591
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM19	 Predicted permease	0.00182388927288
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9K7Q2	 Cold shock DNA binding protein family	0.00182297135857
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZWQ8		0.00182292025641
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2MU68	 3 deoxy manno octulosonate cytidylyltransferase	0.00182289715951
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28915		0.00182273922705
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LJB0	ubiquinone oxidoreductase 17.2 kD subunit	0.0018224906648
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36674	 HTH type transcriptional regulator TreR	0.00182231053639
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PRX7	 Predicted DNA directed RNA polymerase subunit M RpoM	0.00182101882172
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMF4	 Replication factor C large subunit	0.00182065122941
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27669	 Regulatory protein UhpC	0.00182004175969
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26774	 Prefoldin subunit beta	0.00181906293018
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P26170	 Bacteriochlorophyll synthase 33 kDa chain	0.00181906040712
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28630	 DNA polymerase III subunit delta	0.00181891169423
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45767	 Putative amino acid ABC transporter permease protein YhdX	0.0018187016472
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P57408	 UPF0053 protein BU323	0.0018186517654
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27636	 ORC1 type DNA replication protein 2	0.00181860490097
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TY90	 50S ribosomal protein L3	0.00181856530718
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E2D0		0.00179356029055
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q21LN7	 tRNA  2 O) methyltransferase	0.00181652687139
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76123		0.00181641884257
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LHN0		0.00133381157072
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFV7	 50S ribosomal protein L4	0.00181576677069
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2IDG3	 Signal recognition particle receptor FtsY	0.00181515480186
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A1A6	 Branched chain amino acid aminotransferase	0.00173234182913
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X8Q3		0.00181471728087
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52129	 mRNA endoribonuclease LS	0.00181463297455
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_L0WME5	 N acetyl anhydromuranmyl L alanine amidase	0.00181428886879
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNK1	 Nitroreductase, NfnB	0.00181336539695
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVV6	 Polysaccharide export transporter, PST Family	0.00181282919593
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J385		0.00179603630592
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A913	 Peptidoglycan associated lipoprotein	0.00181224063677
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45061	 UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.00181133663788
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GIK4	 Clumping factor A	0.00181115088005
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R704	 Spermidine putrescine ABC transporter ATP binding protein	0.00181061945647
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6FR88	 Two component system response regulator	0.00181022813593
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPA1		0.000174377491457
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VPF4	 30S ribosomal protein S9	0.0015515050476
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A6VPF4	 30S ribosomal protein S9	0.000258221400383
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6Z3X6		0.00180957370225
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P67097	 Phosphodiesterase YfcE	0.00180786561916
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98IW7	 Mll2215 protein	0.00180759584512
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP51		0.00180753046027
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GEA8	 Twin arginine translocation pathway signal	0.0018004428143
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27906	 CoB  CoM heterodisulfide reductase iron sulfur subunit C	0.00180718733306
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47158		0.00180688691555
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MER9	 Outer membrane lipoprotein carrier protein	0.0018066140724
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77555	 Ureidoglycolate dehydrogenase )	0.00180611078115
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW66		0.00180606911504
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7IJF9	 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding	0.0018055673229
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P29915	 NADH quinone oxidoreductase chain 3	0.00180544892776
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U3U9	 CRISPR associated endonuclease Cas9	0.00180502494457
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2N6M8	 Molybdate metabolism regulator	0.00180474160748
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77334	 Cyclic di GMP phosphodiesterase Gmr	0.00180397159072
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31062	 DNA packaging protein NU1 homolog	0.00180355739055
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A0KE20	 Alcohol dehydrogenase GroES domain protein	0.00180354840344
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HCA2		0.00180328863325
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7MAI3	 CTP synthase	0.00166588410414
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7MAI3	 CTP synthase	0.000130408026097
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KN05	 Tryptophanase	0.00180300720048
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0Q1L0	 Putative fluoride ion transporter CrcB	0.00180293870627
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGH4	 Peptide transport system permease protein SapB	0.0018026309298
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DU04		0.00150031905989
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9JY97	 ABC transporter membrane spanning protein	0.00180162668246
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1ZNE5	 50S ribosomal protein L2	0.000694485787203
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1ZNE5	 50S ribosomal protein L2	0.00066036275486
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B1ZNE5	 50S ribosomal protein L2	0.000323604383174
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1ZNE5	 50S ribosomal protein L2	0.000123127521402
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MVS9	 Cytochrome b5	0.00180047313339
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C0PWP3	 NADH dehydrogenase subunit N	0.001799406461
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS07		0.00179919601738
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P26408	 Hydrogenase transcriptional regulatory protein hupR1	0.001798794961
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FE91		0.00145653781338
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8FE91		0.000341831738676
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76091		0.00179836519367
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76364	 Cytoskeleton bundling enhancing protein CbeA	0.00179819509098
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J6E2	 Anti sigma factor antagonist	0.00179803718369
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFQ4	 Inner membrane transport permease YbhS	0.00179773878658
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P66798	 Response regulator UvrY	0.00163985819824
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P66798	 Response regulator UvrY	0.000157265681548
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F3SUZ8	 Radical SAM domain protein	0.00179708915507
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M3E9		0.000807716540409
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C3K6N0	 Succinyl CoA ligase [ADP forming] subunit beta	0.00176968935271
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZBY6	 Acyl coenzyme A dehydrogenase	0.00179035724936
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SNU8	 Radical SAM domain containing protein	0.00179654745903
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A8Y2	 Pyrimidine 5 nucleotidase YjjG	0.00179625342057
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75838	 Ribosomal protein S12 methylthiotransferase accessory factor YcaO	0.00179494991937
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A5N2		0.00179362349701
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IQ08		0.00150396211669
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACP6	 HTH type transcriptional regulator GntR	0.00179206972687
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77551	 Putative Rz endopeptidase from lambdoid prophage Rac 	0.0017918287149
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6WUJ6	 ATP synthase subunit a	0.00179143587471
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X4V0	 ATP synthase subunit c	0.00128143936695
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X4V0	 ATP synthase subunit c	0.000509922058339
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HXK5	 2 isopropylmalate synthase	0.00157308889374
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9HXK5	 2 isopropylmalate synthase	0.000209032457917
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024EJP9		0.00179010288854
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SRC4		0.00179000940958
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZP63		0.00176002070125
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9UWR6	 Modulator of drug activity 	0.00178909790177
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58556	 Cell division cycle protein 48 homolog MJ1156	0.00178863362175
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37056	 Probable endopeptidase YaeF	0.00178801047906
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B4U247	 Shikimate kinase	0.00178775822157
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTG2	 MCPG protein	0.00178743613543
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H6LNW9		0.00178686357193
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P05041	 Aminodeoxychorismate synthase component 1	0.00178589153904
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76576	 UPF0070 protein YfgM	0.00178586815247
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S3N5	 Glycosyl transferase family protein	0.00178570234229
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q60177	 Proteasome subunit alpha	0.00178519295755
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08401	 Sensor protein CreC	0.00178483944615
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5MZV6		0.0017847468978
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IX83		0.0016528112072
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GFL6		0.0017657054747
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25397	 Tellurite methyltransferase	0.00178426161081
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8PNB5	 Adenylosuccinate synthetase	0.00177632564149
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PYR7	 Predicted O linked GlcNAc transferase	0.00178289634961
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R9X0		0.00172939998457
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64605	 Probable phospholipid ABC transporter binding protein MlaD	0.00178249625918
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D1QZF9		0.00178186617712
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CP32	 Truncated transposase	0.00178100315703
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47688		0.00178093337729
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31133	 Putrescine binding periplasmic protein	0.00153233104001
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P31133	 Putrescine binding periplasmic protein	0.000247484719581
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N3AGF2	 Cytochrome c type protein TorY	0.00177976923666
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023Z249	 Methylmalonyl CoA mutase	0.00177936079417
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B0L9	 DSBA oxidoreductase	0.00177934649679
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0A1B9	 Amino acid ABC transporter permease	0.00177871364947
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9KTR8	 Tryptophan synthase alpha chain	0.00177853233079
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E4D7	 Transcriptional regulator MarR family	0.00177842250134
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PVV2		0.00177835521472
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FAM3		0.00177822459924
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T8ZGR4		0.00177728268141
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8D2C5	 Oligoribonuclease	0.00177689194986
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I1B4H1		0.00177678928257
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32144		0.00177622548278
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PTP8		0.00177587571533
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NHD8	 Predicted minichromosome maintenance protein	0.00177564454363
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P26266	 Ferric enterobactin transport protein FepE	0.0017750888672
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4F0Z5	 Cell division protein ZapD	0.00177502890443
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G4L5V8	 Polysaccharide deacetylase	0.00177483085251
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZM40	 tRNA  ) methyltransferase	0.00177464966857
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1BQE2	 Oxygen dependent choline dehydrogenase	0.00142797308318
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1BQE2	 Oxygen dependent choline dehydrogenase	0.000327840896531
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKK6		0.00177406569962
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I2DNZ8	 Peptidase M14, carboxypeptidase A	0.00177395055533
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJP8	 Adhesin like protein	0.00167120588085
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULR2	 UPF0272 protein Msm_0935	0.00177281006133
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52138		0.00177275100344
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GE02		0.00177253572046
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P13857	 Ribosomal protein serine acetyltransferase	0.00177185537637
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAD4	 Tyrosine specific transport protein	0.00177184224858
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRC4	 Methyl accepting chemotaxis sensory transducer	0.00177166700007
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKA9		0.00177130820265
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C9ADA6		0.00177130820265
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_H8I895	 30S ribosomal protein S27ae	0.00177130820265
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKB2		0.00177130820265
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTC4		0.00177130820265
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVB8	 Transcriptional regulator, MerR family	0.00177130820265
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77489	 Putative xanthine dehydrogenase YagR molybdenum binding subunit	0.0017050627565
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P77489	 Putative xanthine dehydrogenase YagR molybdenum binding subunit	5.34486858428e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8D032	 Putrescine binding periplasmic protein	0.00177054300461
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A3MYM1	 Fe S biogenesis protein NfuA	0.00177044290842
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQS2	 Metal dependent phosphohydrolase	0.00177036864834
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9UPT8		0.00165730185049
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKK0	 Collagenase, peptidase family U32	0.00176902839445
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0TBG1	 Guanylate kinase	0.00176896342917
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9KQH7	 3 oxoacyl [acyl carrier protein] reductase FabG	0.00135795955124
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9KQH7	 3 oxoacyl [acyl carrier protein] reductase FabG	0.000391335533139
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC49	 Fumarate reductase iron sulfur subunit	0.00176814884403
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1V429	 Formyltetrahydrofolate deformylase	0.00176798143347
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PH69	 Alpha beta hydrolase	0.00176763266516
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKV8	 Transcription factor E	0.00176656728908
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7LF20	 4 deoxy L threo 5 hexosulose uronate ketol isomerase	0.00176066016998
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2NAD6		0.00106278492159
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3F2Q1		0.00175353961331
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1BAN7		0.00175842422119
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WTH0	 Probable chemoreceptor glutamine deamidase CheD	0.00110118699977
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4R8Z7	 Rhs family protein	0.00176458958035
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_H5WL64	 Urea ABC transporter, ATP binding protein UrtD	0.00176409323899
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULJ7	 Molecular chaperone , HSP20 alpha crystallin family	0.00176389661082
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9RYU4	 NADH dehydrogenase (quinone)	0.00176376935049
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08368	 Transcriptional regulatory protein CreB	0.0017635277971
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77357	 p aminobenzoyl glutamate hydrolase subunit A	0.00176342218833
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F5WCB8		0.0017629095862
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77717		0.00176221742145
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEQ8	 Glutamine transport system permease protein GlnP	0.00176213833162
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B8IFQ7	 DNA polymerase III, subunits gamma and tau	0.00176206669208
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P96335	 Glycerol 3 phosphate transporter	0.00176171429749
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T7GQG4	 Inner membrane transporter ygjI	0.00176146929819
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F6EKX3	 Tartrate dehydrogenase	0.00176102508014
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00393	 NADH dehydrogenase	0.00132105492925
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P00393	 NADH dehydrogenase	0.000439967736071
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L9IWH1	 CarD like TRCF domain protein	0.00175589422507
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAJ2	 Probable anaerobic dimethyl sulfoxide reductase chain YnfG	0.00175904551983
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0C2L2	 Glutathione transport system permease protein GsiD	0.0017582243943
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D9PXW6	 Thymidylate kinase related protein	0.00175801226431
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J497		0.000515125344646
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_X9TRB8		0.00175747240632
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P67661		0.00175726255473
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZJR1	 UPF0761 membrane protein YPO0028 y3801 YP_0029	0.00175721355518
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V4JK35		0.00175650778699
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6WJ89	 PKHD type hydroxylase Shew185_0721	0.00117845204505
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A6WJ89	 PKHD type hydroxylase Shew185_0721	0.00055160911712
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKI7	 NADH quinone oxidoreductase subunit I 2	0.000759132086853
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37767		0.00175445520247
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47719		0.00175406519517
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7N964	 Thiamine phosphate synthase	0.00175394979571
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZRW8	 Ferredoxin like protein FixX	0.00175362752464
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q08120	 Bacteroid development protein BacA	0.00128656852808
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q08120	 Bacteroid development protein BacA	0.000466150472485
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U3H0		0.00164134806044
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WT84	 Cytochrome c, monohaem	0.00175235945529
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1G461	 DNA replication and repair protein RecF	0.00175235292862
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A025DCK3		0.00175220379477
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76213	 Excinuclease cho	0.00175214169177
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QE42		0.00175174406328
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L8NGN8	 Sulfite oxidoreductase, molibdopterin binding subunit	0.00175147100367
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76502	 Phosphohistidine phosphatase SixA	0.00175125697477
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7NG91	 Fumarate reductase subunit C	0.00174967340064
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76612		0.00174920766548
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P41031	 Thiosulfate binding protein	0.00174908730802
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADA2	 Acyl CoA thioesterase I	0.00174891179199
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WXK2	 Protein tyrosine phosphatase	0.00174874346318
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9BKP2		0.00174873270595
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77268	 Probable D,D dipeptide transport ATP binding protein DdpD	0.00174847801956
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1AFA2	 Ribose 5 phosphate isomerase A	0.00174788208556
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D9SA34	 Hydrolase, NUDIX family	0.00174770161355
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V8HJS7	 tRNA  ) methyltransferase	0.00174754428975
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57747		0.00174739641285
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWT4	 ParB like partition protein	0.00174671375032
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I3EVN5		0.00174667924776
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FB22	 Replicative DNA helicase	0.00174655167939
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77147		0.00174619850135
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A1I4		0.00174494038397
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADR0	 Inner membrane protein YqaA	0.00174490199643
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00803	 Signal peptidase I	0.00174446853022
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5FTC5	 Deoxyribose phosphate aldolase	0.00174423087111
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E3PRA3	 Rubrerythrin 	0.00174422013798
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15031	 Fe dicitrate transport ATP binding protein FecE	0.00174414757163
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F8FMK7	 Response regulator	0.00174408704422
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IQY6		0.00174383854433
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP09		0.00174366003849
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TKX9	 Cysteine desulphurase	0.00174338274053
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P54291	 Acyl homoserine lactone synthase	0.00164943246758
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADS7		0.00174128380325
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5CW02	 Aspartate 1 decarboxylase	0.00174076840605
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B1VAC4	 50S ribosomal protein L36	0.00174076840605
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V6G7		0.00174076840605
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D5CXW1		0.00174076840605
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6UDN3		0.00174076840605
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P60876		0.00174076840605
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L6A7	 Cold shock protein CspA	0.00174076840605
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABZ3	 Flagellar motor switch protein FliG	0.00174027864323
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFU8	 Riboflavin synthase	0.00173983425518
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4M600		0.00173894520222
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M0G6	 Response regulator receiver SARP domain containing protein	0.00173885846169
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A5VTC2	 D isomer specific 2 hydroxyacid dehydrogenases family protein	0.00173881759991
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31058		0.00173862173924
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2NSV5	 tRNA 2 thiocytidine biosynthesis protein TtcA	0.00110996781781
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q2NSV5	 tRNA 2 thiocytidine biosynthesis protein TtcA	0.000506088057898
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2NSV5	 tRNA 2 thiocytidine biosynthesis protein TtcA	0.000122381293999
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6SLY5		0.0017384361865
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31135	 Putrescine transport system permease protein PotH	0.00173828866152
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB04		0.00173808501257
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE22	 Class B acid phosphatase	0.00173802023516
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KUC7		0.000747885685563
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A038GFN9	 FKBP type peptidylprolyl isomerase	0.00173744643179
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q163Q7	 NADH quinone oxidoreductase chain E	0.00173624599533
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P37466	 Protein Veg	0.00130235623083
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P37466	 Protein Veg	0.000433324324258
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q883S2	 Universal stress protein family	0.0017356436274
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31666		0.00173528101451
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7YL25	 Thiamine binding protein	0.00173410031499
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KL59	 5 oxoprolinase	0.00173338001887
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS11		0.00173318170303
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YM62		0.00173283709922
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E8TAD2	 ABC transporter related protein	0.00173241124959
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U2U2		0.00173191384815
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7XGW6	 Oxidoreductase protein	0.0017018151353
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJW9	 Predicted metal dependent membrane protease	0.00173114551322
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q3M1P1	 Binding protein dependent transport systems inner membrane component	0.00173106144041
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YNT0		0.00103935685343
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R9YNT0		0.000691538133913
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A028CJ48	 Type IV fimbrial assembly protein PilC	0.00173021724171
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32139		0.001730177096
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TDX1	 Membrane bound lytic murein transglycosylase C	0.0017300352377
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B198	 4 hydroxyproline betaine 2 epimerase	0.00172942015022
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJT4		0.00135620649675
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6WFZ4	 Hexapeptide repeat containing protein	0.00172885785606
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QDQ3		0.0011576608892
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9A0	 Ferritin 1	0.00172738210266
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H2A9D7		0.00172713889005
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P54933	 ATP binding transport protein SmoK	0.00172705455061
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A028CJT1	 LysR family transcriptional regulator	0.00172677023758
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27585	 Lysine  tRNA ligase	0.00172629402698
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X1K6	 30S ribosomal protein S16	0.0017262255684
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z4J8		0.00172601613143
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP34		0.00172601328387
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77307	 Probable iron export permease protein FetB	0.00172547364132
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76242	 Inner membrane transport protein YeaN	0.00172518660433
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLR0		0.00172503572446
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZ81	 Cytochrome C type biogenesis protein DsbD	0.0017246959331
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q045P5	 UPF0297 protein LGAS_0422	0.00132518289146
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q045P5	 UPF0297 protein LGAS_0422	0.000399069436965
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F2EVN8	 23S rRNA RlmB	0.0017240578424
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F3WHU8	 Peptidase M16 inactive domain protein	0.00172395009691
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4TCQ6	 Argininosuccinate lyase	0.0016700060291
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZSV0		0.00155170195433
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HTX3	 Probable binding protein component of ABC iron transporter PA5217	0.00170195454522
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q48HE7	 Iron compound ABC transporter, periplasmic iron compound binding protein	0.00171229960973
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PK85	 Alpha beta hydrolase fold	0.00172175077965
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D3V7P4	 Multidrug resistance protein MdtC	0.00172171321613
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42591		0.00172118229636
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P94951	 F420 dependent methylenetetrahydromethanopterin dehydrogenase	0.00172070632468
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FJW9		0.0016573440242
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75826		0.00172038323241
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHB0		0.00163189371449
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A6UV64	 30S ribosomal protein S19	0.00171978751635
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L1FI55	 Citrate carrier	0.00171950430347
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2SSM7		0.00171897532047
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21338	 Ribonuclease I	0.00171884393247
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G6ES00	 Transposase	0.00171876238222
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77328	 Putative purine permease YbbY	0.00171873877686
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C6WU62	 Cytochrome c oxidase	0.00171871937185
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0F0U1		0.0009741648377
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45955		0.00171831532254
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33341	 Outer membrane usher protein YehB	0.00171817909278
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A3CX71	 Glycerol 1 phosphate dehydrogenase [NAD+]	0.00171781402208
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N5FY18	 P loop ATPase	0.00171675508425
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45420		0.00171668555675
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5Q3L0		0.000938820556444
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75857	 Probable outer membrane usher protein ElfC	0.00171584632316
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P43801	 Anaerobic glycerol 3 phosphate dehydrogenase subunit C	0.00171556110277
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q87DN0	 Tyrosine recombinase XerD	0.00171521248624
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP21	 Predicted type II restriction enzyme, methylase subunit	0.00171503423204
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FKC6	 Acyl carrier protein phosphodiesterase	0.00171482801797
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC95	 High affinity gluconate transporter	0.00171108928301
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJF2	 Exosome subunit	0.00171405725312
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SPS1		0.00161317609636
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SIM0	 Universal stress protein UspA1	0.00171325024955
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULC4	 Archaeosine tRNA ribosyltransferase	0.00171301966884
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77768		0.00171273318457
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52086	 Alpha ribazole phosphatase	0.00171140958634
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1DH05	 Shikimate transporter	0.00171127300891
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4HIT9		0.0017112638568
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPL7		0.0017112638568
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U5UEG4		0.0017112638568
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7N0I9	 Zinc transporter ZupT	0.00171125058474
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33011	 Inner membrane protein YeeA	0.00171111021783
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_U5SC02		0.00171106343541
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1QX56	 Phosphate acyltransferase	0.00171097645395
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK56	 Arginine biosynthesis bifunctional protein ArgJ	0.00171065503963
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P78067	 Thiosulfate sulfurtransferase YnjE	0.00171049020654
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I4TNI4		0.00171008989614
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B4SPS1	 Glutathione S transferase domain	0.00170980938503
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8DEZ6	 Dual specificity RNA methyltransferase RlmN	0.00170088561093
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39282	 Inner membrane transporter YjeM	0.00170960629246
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B3PG87	 Metallo beta lactamase superfamily domain protein	0.00170908917041
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2U2C8	 Electron transport complex subunit RsxC	0.00170848368372
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9BF34	 50S ribosomal protein L7 L12	0.00170846983278
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WW55		0.00170846319745
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25550	 Anaerobic sulfatase maturating enzyme homolog AslB	0.00170790162975
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H8LBR4	 Zeta toxin	0.00170741864742
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W6RZK7		0.00170732033354
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37691		0.00170708090357
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PS02	 WGR domain protein	0.000389824585139
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5BFR1	 Possible oxygen independent coproporphyrinogen III oxidase	0.00170695358787
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XCY9	 Protease ElaD	0.0017069279535
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2YQI5	 Adenylosuccinate synthetase	0.000879161758872
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2YQI5	 Adenylosuccinate synthetase	0.000732452548255
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q2YQI5	 Adenylosuccinate synthetase	7.83278258767e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEN0	 Cystine binding periplasmic protein	0.00170637916369
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57609	 GTP cyclohydrolase III	0.0017061276503
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5EWS4	 Recombination associated protein RdgC	0.00170591286849
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q664W4	 Isocitrate dehydrogenase kinase phosphatase	0.00170543564284
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2NZ59	 Probable GTP binding protein EngB	0.00170541243206
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZ73	 Methanogenesis marker protein 6	0.0017048963557
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D7DSV8	 CRISPR associated protein Cas4	0.00170462553549
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AUR3	 Tyrosine protein kinase Wzc	0.00170341217681
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6LPK7	 Tetraacyldisaccharide 4 kinase	0.00170313179989
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58767	 Tritrans,polycis undecaprenyl diphosphate synthase 	0.00170283850131
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9QR17	 GntR family transcriptional regulator	0.00170159874283
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CN84	 Copper export proteins	0.00170151781814
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRY7		0.00170134512406
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DMU6		0.00170133062385
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PU03		0.00170127811833
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFD4	 Flap endonuclease 1	0.00170009717039
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76226	 Inner membrane protein YnjF	0.00169978997208
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9F8	 Glycine cleavage system transcriptional activator	0.00169861541186
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P09163		0.00159358471813
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D3QMJ7		0.00169769380909
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL23	 Fe S oxidoreductase	0.00169729302519
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAV5		0.00167037200609
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J5B1		0.00169579134997
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GIW0		0.00169509625364
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E3GX37	 H+transporting two sector ATPase C subunit	0.00169505749172
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZPD6		0.00169459010264
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26506	 Conserved protein	0.00169448580209
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q46DD8	 Acetyltransferase	0.00169439115447
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNH3		0.00169437422325
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37325		0.00169426274157
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V6R8		0.00169391021492
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL05	 Conserved hypothetical membrane protein Msm_0678	0.00169365384825
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39346	 L idonate 5 dehydrogenase (+))	0.00169215498195
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21824	 Chemotaxis protein methyltransferase	0.00165344713841
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB08		0.00169034253905
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1D2M1		0.00168808359555
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0GJ57	 LPXTG motif cell wall anchor domain protein	0.0016874223851
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFZ8	 50S ribosomal protein L13	0.00168664278926
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WVR4		0.00168656039594
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMY6		0.00114274563548
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM77		0.00168519049183
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76349		0.00168477815914
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30131	 Carbamoyltransferase HypF	0.00166782199417
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT92		0.00168435205841
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHN3		0.00134234448084
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9ADH4		0.00168284222092
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SQY5		0.00168274279252
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_L7VQV4	 Chemotaxis signal transduction protein	0.00168274279252
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L4J6	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00168274279252
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SKZ1		0.00168274279252
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YK09		0.00168274279252
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0ARE4	 UspA domain protein	0.00168271288589
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNB4		0.00168188063892
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2M947	 Putative 40K cell wall protein 	0.00168135964364
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G8I0W8	 Integrase	0.00168131981913
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39359		0.00168076125293
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77739		0.00168011550856
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FBW9		0.00167991465337
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS02		0.00167922513749
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39360		0.00167866704109
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VMA8	 Trk system potassium uptake protein	0.0016779461999
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P34666	 2 methoxy 6 polyprenyl 1,4 benzoquinol methylase, mitochondrial	0.00167183879002
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPF7		0.00161279613274
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P11954	 L threonine dehydratase catabolic TdcB	0.00167278839268
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52124		0.00167684079014
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23874	 Serine threonine protein kinase HipA	0.00167680888146
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q2RGX1	 Xylose binding protein	0.00167630439833
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M5N4		0.00138280559311
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4THV9		0.00167554013052
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6I6D5	 tRNA pseudouridine synthase D	0.00167023560503
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I1P8		0.00167464093265
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76100		0.00167450294506
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26134	 Protein translocase subunit SecY	0.00167355751233
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D8EA67		0.000862945021804
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKI0	 Flavodoxin, FldA	0.00167315926404
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C1CU33	 Transketolase, C subunit	0.00167265624803
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K6TWJ0		0.00167252906898
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q00267	 N hydroxyarylamine O acetyltransferase	0.00167095181016
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DYX9	 Glycosyl transferase GT4 family	0.00167076371652
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D3H3M8		0.0016705894563
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58219	 Inner membrane protein YjgN	0.00167057296281
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4YV11	 Circadian clock protein kaiB	0.00167053130636
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9H8	 Cyclopropane fatty acyl phospholipid synthase	0.00167052116168
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMW1	 Predicted permease	0.00166922477033
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5PK75	 N acetyl gamma glutamyl phosphate reductase	0.00166903353153
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q74N81	 50S ribosomal protein L14	0.0016690133578
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5PGP5	 Glutathione transport system permease protein GsiC	0.00166892763128
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U4W9	 Transcriptional regulator, DeoR family protein	0.00166829295416
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V6AGZ8		0.00166815398986
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5DX57		0.00166798094564
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9CKD6	 Ubiquinone menaquinone biosynthesis C methyltransferase UbiE	0.00165796187817
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6ZS77	 YhjQ protein	0.00166741071288
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E3GX32	 Methyltransferase	0.0016669453338
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQW2		0.00166682143875
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P00335	 Ribitol 2 dehydrogenase	0.00166582745732
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48FV2	 Membrane protein, putative	0.00166561905429
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNA6	 Exodeoxyribonuclease, XthA	0.00166473213631
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V4CH91	 Chaperone fimC	0.001664531882
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QIL0	 Phage transcriptional regulator	0.00166427880495
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77658		0.00166424318939
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FFR0		0.00163902920935
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1QUS4	 Leucyl phenylalanyl tRNA  protein transferase	0.00165375172907
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57L59	 tRNA1 (adenine(37) N6) methyltransferase	0.00166268617369
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M3GAZ5	 HlyD family secretion protein	0.00166262015733
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P22350	 Pyrroline 5 carboxylate reductase	0.00166199166784
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7DFR8		0.00166149367034
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5EXL8	 Para aminobenzoate synthetase, component II	0.00166084483293
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SMA4	 Cell wall biosynthesis protein Mur ligase family	0.00166033384333
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJE0	 DNA helicase	0.0016602634672
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UND2		0.00166024623112
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWI5		0.00165997483768
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A2RCF8	 Ribonuclease P protein component	0.00165965086458
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QIG4		0.00165906196818
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQM0	 2 dehydro 3 deoxyphosphogluconate aldolase 4 hydroxy 2 oxoglutarate aldolase	0.00165795382339
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47536		0.0016566495534
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83MD7	 Vitamin B12 binding protein	0.00165637449297
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77433		0.0016141656804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T8WTI4	 Arylsulfatase	0.00165566377168
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZCX2	 Polyphosphate kinase	0.00165556898737
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1J6K7		0.00165515684511
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2GF33		0.00165515684511
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEA0	 Curli production assembly transport component CsgF	0.00165515684511
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64494		0.00165515684511
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57P89	 Stationary phase induced ribosome associated protein	0.00165515684511
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQP7		0.00165515684511
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV62		0.00151510839277
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P13604	 NADPH dependent butanol dehydrogenase	0.00165499399449
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8P151	 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.00165496986013
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6TYH1		0.00136017765412
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P71237	 Putative colanic acid biosynthesis glycosyl transferase WcaC	0.00165469274804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FEF9	 tRNA pseudouridine synthase C	0.0016532031774
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PWL5	 Tetrahydromethanopterin S methyltransferase subunit D	0.00165283365115
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26960	 Probable porphobilinogen deaminase	0.00165282674352
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9XXB1		0.00165277830043
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77301		0.00165244110327
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q02430	 2 desacetyl 2 hydroxyethyl bacteriochlorophyllide A dehydrogenase	0.00138905334064
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SRT7		0.00161074949215
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D3GY91		0.00155962785602
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK98		0.0016512172058
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76407	 Lipid kinase YegS	0.00165103710202
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58221	 Molybdenum cofactor guanylyltransferase	0.00164979469614
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7N9D9	 PTS system N acetylmuramic acid specific EIIBC component	0.00164094240266
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52123		0.00164925440488
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QIK3		0.00164913512373
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V2U7	 2,3,4,5 tetrahydropyridine 2,6 dicarboxylate N succinyltransferase	0.00164864257232
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B8ZR31	 Peptide chain release factor 1	0.00164776319137
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26307	 Hydrogenase expression formation protein HypE	0.00164731089882
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X9I6	 Glucans biosynthesis protein C	0.00164713882276
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW62		0.00164684785469
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2X9Y8	 PTS system, glucitol sorbitol specific, IIBC component	0.00164682509393
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUQ6		0.00164665357727
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UKN3	 PTS system lactose specific EIICB component	0.00164662324414
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3KIW4	 Nicotinate phosphoribosyltransferase	0.00163930622508
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2X9M1	 Aminotransferase ybdL	0.00164517507251
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26880	 Probable cobyric acid synthase	0.00164484912124
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H6MGZ5	 Rhamnose proton symporter	0.00164462672922
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XA47	 Sensor histidine kinase QseE	0.00164435807803
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6SVK1	 Putative transcriptional regulator	0.00164419467088
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0ARD7	 Pyridoxine pyridoxamine 5 phosphate oxidase	0.00160571104287
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P63299		0.00157588926789
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P63299		6.65554169703e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACT3	 Probable acrEF envCD operon repressor	0.00164243085423
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15644	 Type II secretion system protein D	0.00164175000514
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q165A6	 Molybdate ABC transporter, periplasmic molybdate binding protein	0.00164160967375
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J3U2		0.00104778961553
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XYD0	 Type I secretion outer membrane protein, TolC	0.00164139081884
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27273	 L sulfolactate dehydrogenase	0.00164135493231
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7MHK1	 Glutathione synthetase	0.0015708667506
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88QC7	 Biosynthetic arginine decarboxylase	0.00164101359436
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y7T5	 Nitrogen regulation protein NIFR3	0.00155330103925
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI0003724574	 CRISPR associated protein Csn1, partial	0.00163974639053
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HL96		0.0016397253076
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VAY7	 Membrane protein, putative	0.00163964492987
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7A2D4	 Beta glucuronidase UidA	0.00163817368783
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FHD1		0.00163766518368
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76052	 p aminobenzoyl glutamate hydrolase subunit B	0.00163729227974
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33366	 Inner membrane protein YohD	0.00163715820328
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XKF8	 Aminodeoxychorismate lyase	0.0016369479735
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQ46		0.00163617508094
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VAP1	 Lipoprotein, putative	0.00145795492333
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P0C0I9	 UTP  glucose 1 phosphate uridylyltransferase 1	0.000740084660099
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0C0I9	 UTP  glucose 1 phosphate uridylyltransferase 1	0.000662221972069
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HC44		0.00163468377679
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87WG4		0.00163257804641
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C4L7S9	 30S ribosomal protein S10	0.00163199948584
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6GQN2	 Sporulation protein YlmC YmxH	0.0016311492073
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I0ZLL7	 Amino acid permease associated region	0.00163102170914
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A7GMU8	 Imidazole glycerol phosphate synthase subunit HisH	0.00162572051226
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1ELN4	 Formate dehydrogenase N alpha subunit @ selenocysteine containing	0.00162986099572
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJJ1	 2 methylcitrate synthase citrate synthase II PrpC CitZ	0.00162977031966
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7CI61	 Two component system response regulator	0.00162952636552
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0GJH1		0.00162887350119
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PL70	 Diacylglycerol kinase, catalytic region	0.0016287542458
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K8YMJ9		0.00162846076696
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQD3		0.00162846076696
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HS09		0.00162846076696
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSI1		0.00162846076696
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V6XDS5		0.00162846076696
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q05756	 Glutamate synthase [NADPH] small chain	0.00113729318451
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3UWL7	 LysR family transcriptional regulator	0.00162722036319
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YAI8		0.00157145675028
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VAF0		0.00159659110124
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24203		0.00162517103792
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LMF7	 Glutamate racemase	0.00151630167606
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6ZYX3	 Heat shock protein DnaJ domain containing protein	0.0016232712135
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PWJ2		0.00162315992104
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76514		0.00162311291623
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7VA67		0.00162292912173
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WXQ6		0.00162193009425
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RR65	 Dihydrofolate reductase	0.00162089608141
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3YGM4	 CoA binding domain protein 	0.00162007654689
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39381		0.00162006738553
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMP9		0.00161951391685
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26956	 Pyruvoyl dependent arginine decarboxylase	0.00161933614373
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNW9		0.00161906542683
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8NVR0		0.00161877028328
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VC64		0.0016187053476
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6AXU2	 ABC transporter, periplasmic spermidine putrescine binding protein PotD	0.00161843896447
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MMW0	 Sporulation protein YunB	0.00161767756383
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C3KCK1		0.00161751739854
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q6N9W0	 Methionine import ATP binding protein MetN 1	0.00160609764802
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACM7		0.00161710568373
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3TTB7	 FtsK SpoIIIE family protein	0.00161700333744
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P23504	 Cell surface antigen I II	0.00161617008028
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1WZ50	 4 hydroxy tetrahydrodipicolinate synthase	0.00161445610996
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G3XD65		0.00156563517305
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M238	 Transcriptional regulator, TetR family	0.00161516745163
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O34677	 Glutamine transport ATP binding protein GlnQ	0.00147602219579
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O34677	 Glutamine transport ATP binding protein GlnQ	0.000139069652272
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KJG1	 Flagellar proximal rod protein FlgC	0.00161491847368
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76359		0.00161470924364
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1HNP0	 Maf like protein yceF 1	0.00161446153537
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37750	 Putative lipopolysaccharide biosynthesis O acetyl transferase WbbJ	0.00161358131543
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q07V02	 RNA pyrophosphohydrolase	0.00160446474929
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G7R423		0.00161329626457
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HYB2		0.00155393868501
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E441		0.00161128680664
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E8XQD0	 Membrane dipeptidase	0.00161110059928
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GCN0	 MltA	0.00161086623497
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9CDF7	 Putative sugar uptake protein YxfA	0.00161078259914
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76577	 Penicillin binding protein 1C	0.00161071546404
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15082	 Glucitol operon repressor	0.00161027841967
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PGH0	 Acyltransferase 3	0.00161021913755
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP71	 Predicted tubulin like protein	0.00160964542762
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G4PHY8	cobalamin adenosyltransferase	0.00160915831494
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36938	 Phosphoglucomutase	0.001462880359
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P36938	 Phosphoglucomutase	0.000145692835279
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KX58	 ISSpo9, transposase	0.00133922715632
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IYY7	 Diguanylate cyclase phosphodiesterase	0.00160808926624
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77657		0.00160807404965
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1H3	 Divalent cation transporter mgtE family	0.00160734559997
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACD8	 Hydrogenase 1 large chain	0.00158058935045
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7D5Z8	 Glucosyltransferase SI	0.00160615318294
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J2Z9		0.000945809098861
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7UI87	 Protein FixA	0.00149321262602
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A232	 Phospholipase A1	0.00160523603002
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAK2	 Formate hydrogenlyase subunit 2	0.00160436168741
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI000311155B	 hypothetical protein	0.000523132474362
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T2FXM3	 Sulfatase	0.00160418999118
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31826	 Inner membrane ABC transporter ATP binding protein YddA	0.00160407698018
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P40786	 Nucleoside specific channel forming protein tsx	0.00160388661826
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9L6Q3	 Uroporphyrinogen III synthase	0.00160360098764
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VLQ0	 SCP 2 sterol transfer family protein	0.00153007528114
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI00037B037C	 hypothetical protein	0.00160340752438
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E9YDZ4	 Carbon starvation protein CstA	0.00160330480441
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T2G5V0	 Alcohol dehydrogenase	0.00160320734018
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37595	 Isoaspartyl peptidase	0.00159614613429
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7VN08	 Cytochrome c type biogenesis protein CcmE	0.00160308963924
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IVE5		0.00160303708467
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M533	 Lysozyme	0.00160261218335
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZV5	 PTS system, glucose subfamily, IIA subunit	0.00160261218335
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I5G4G5		0.00160261218335
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_V5AP15		0.00160261218335
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I5G7	 Signal peptidase I	0.00149285242797
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X4V6		0.00160234536583
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E3U4	 Exosome subunit	0.00160121027728
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P62423	 Phosphoglycerate kinase	0.00160083461372
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32135	 Inner membrane protein YihN	0.00160081473194
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUD5		0.0016006719749
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45566		0.00160066492534
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I4D6H8	 Multimeric flavodoxin WrbA	0.0016003990136
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAF2	 Putrescine ornithine antiporter	0.00160009599784
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KMN2	 VacJ family lipoprotein	0.00159984252056
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULP8	 Predicted surface protein	0.00159976500376
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGA8	 Transcriptional regulatory protein UhpA	0.00159920667722
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E3DHU2	 Copper homeostasis protein CutC	0.00159821607339
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R5QLU7		0.00159816135542
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C3K222	 Sulfoxide reductase heme binding subunit YedZ	0.00159809128208
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9L0J3		0.00159684963434
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F3WH46	 Pertactin family protein	0.00159644874574
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UND1	 Uroporphyrinogen III synthase, HemD	0.00159581306349
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9CJS1	 ATP dependent RNA helicase RhlB	0.00159572912437
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39352	 Putative metabolite transport protein YjhB	0.00159536967787
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6E2A6	 Inner membrane protein yghQ	0.0015935633913
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77154		0.00158828034293
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27038	 V type ATP synthase subunit C	0.00159343140891
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P80651	 Tetrahydromethanopterin S methyltransferase subunit E	0.00159333115088
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q321Q6		0.00159283699399
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47679	 Hydrolase YafV	0.00159240585675
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39267		0.0015920279089
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21179	 Catalase HPII	0.00159132974563
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R5X951		0.00159131055934
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1QKV0	 30S ribosomal protein S6	0.0015913084924
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2RPW6		0.00159098775793
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z3Z3		0.00158999318979
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M3N6	 Phospholipase D transphosphatidylase	0.00158929534418
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25536	 Maf like protein YhdE	0.00158917900272
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKT6	 Ferredoxin, iron sulfur binding	0.00158897614189
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YSY6		0.00158897084266
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SR17	 GCN5 related N acetyltransferase	0.00158813928275
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J6L3	 Putative Pre  type recombination enzyme	0.00158754518936
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMB0	 Translation initiation factor 2 subunit alpha	0.0015871775168
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I427	 Cytochrome bo ubiquinol oxidase subunit 2	0.00158715047731
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4D981		0.00158709063173
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJT5		0.00158695540285
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G9W523	 Short chain dehydrogenase reductase	0.00158550808423
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7NLC3	 D tyrosyl tRNA deacylase	0.00158484499601
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6LLR8	 UPF0761 membrane protein PBPRA3489	0.00158482452011
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8E671	 Protein SprT like	0.00158476849126
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U615		0.00158436706003
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V3F4		0.000757234256634
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8AMJ9		0.00158408354292
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZRW8		0.0015838093132
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP59		0.00158376684377
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5QX84	 FemAB family protein	0.00158351882711
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76594		0.00158344500746
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q7MP85	 4 hydroxythreonine 4 phosphate dehydrogenase	0.00080066179915
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7MP85	 4 hydroxythreonine 4 phosphate dehydrogenase	0.000758484383785
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X3EKE6		0.00158311085932
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75883		0.00158305375963
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X3N4		0.00072636379533
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q31XD7	 Ribosome maturation factor RimM	0.00158178350795
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZIM8	 Adenine phosphoribosyltransferase	0.0015237051281
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0DMC8	 Transcriptional regulatory protein RcsB	0.00158144578309
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZ76		0.00158118375675
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77539		0.00158073805695
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A1W4G0	 Peptidyl tRNA hydrolase	0.0015733114993
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM95		0.00158049085601
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J0KT45		0.00154060831138
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNB7		0.00158024632814
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XQS3	 Acetylornithine N succinyldiaminopimelate aminotransferase	0.00158002337913
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF68	 tRNA threonylcarbamoyladenosine biosynthesis protein TsaE	0.00157993310058
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWX6	 Phage related tail protein	0.000400653045843
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9DK57		0.000862945021804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77360		0.00157857664872
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PW99		0.00157790793283
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MKL4	 Indole 3 glycerol phosphate synthase	0.00157774224112
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQH2	 ATP synthase subunit b	0.00157757136799
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZTQ4	 Protein activator	0.00157757136799
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F7N467		0.00157757136799
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0VAC1		0.00157757136799
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28KF1	 Acyl CoA dehydrogenase like protein	0.00157747639831
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNT8		0.00126417342868
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PM88	 UspA domain protein	0.00157633848022
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5TEK4		0.0010856405113
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V3W6L3	 Glucarate permease	0.00157565266618
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M3S6	 Putative transposase protein	0.0014120237553
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QEM7		0.00157474507775
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZLS0	 3 deoxy D manno octulosonate 8 phosphate phosphatase KdsC	0.00157428672509
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76515		0.00157411775085
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31475		0.00157401397348
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE14	 Protein AmpE	0.00157336407381
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75769		0.00157319188204
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9CIW0	 DhaKLM operon coactivator DhaQ	0.0015725903261
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75982		0.00150390263552
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9REB3	 Hemolysin E	0.00157185253441
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2U2H8	 Aldehyde ferredoxin oxidoreductase	0.00157163197344
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B2J7		0.000768769044289
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64427	 UPF0748 lipoprotein YddW	0.00157134066395
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0A009CML4	 Surface protein G	0.00157124739287
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XPK7	 Surface protein, putative	0.00157088959754
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LWH8	 Hydrolase, NUDIX family	0.00157056612158
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKL7	 Predicted transcriptional regulator	0.00156979970594
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I6G4		0.00156968081171
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6DZ68	 Bacterial regulatory helix turn helix , lysR family protein	0.00156963998438
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TEB9	 Transcriptional regulator LsrR	0.00156871344576
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2P4Y9	 Coenzyme PQQ synthesis protein E	0.00156847517633
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08957	 Type I restriction enzyme EcoKI M protein	0.00156843257657
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76102	 Putative transposase InsQ for insertion sequence element IS609	0.00156830975044
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SHM7	 TM2 domain protein	0.00151243523151
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VF11		0.00156340670428
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WZ94		0.0015677952231
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F8KLX6		0.00119510468165
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F8KLX6		0.000372562979897
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9U810	 FadE30	0.00156747727634
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN50	 Exopolyphosphatase, GppA	0.00156630803235
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G8W4V0	 Aromatic amino acid transporter	0.00156610878625
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28LT2	 6,7 dimethyl 8 ribityllumazine synthase	0.00153245784942
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6S923	disulfide interchange protein DsbA	0.00156562350834
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QH52	 Escherichia coli IMT2125 genomic chromosome, IMT2125	0.00156534213258
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U3TX51	 Malonyl CoA acyl carrier protein transacylase	0.00156492417268
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25549	 Arylsulfatase	0.00156405280563
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023KIJ3		0.00156400430478
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P26459	 Cytochrome bd II ubiquinol oxidase subunit 1	0.00154940296295
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2NXY9	 2 keto 3 deoxygluconate permease	0.00156390331102
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1SCP3	 MFS citrate proton symporter	0.00156389926042
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KJW8	 Methyl accepting chemotaxis sensory transducer	0.00156347546043
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZJW5		0.00156022177687
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X0G0	 Na H(+) antiporter subunit C1	0.00156308576858
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A0A023KSK6	 5 carboxymethyl 2 hydroxymuconate isomerase	0.0015626777874
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77601	 Putative HTH type transcriptional regulator YkgA	0.00156257463948
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U3QUF7	 Chemotaxis protein	0.00156141707414
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P18200	 Phosphatidylglycerophosphatase A	0.00156113060079
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4LA96		0.00136204099152
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37197	 Probable cytochrome c peroxidase	0.00156073455653
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57942		0.00156059562747
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0FJC9	dicarboxylate symporter	0.00156027042167
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5QD63	 Phosphoribosylaminoimidazole carboxylase ATPase subunit	0.00156005329422
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QIK5		0.00155998620604
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B8GNE7	 Peptidase M24	0.00155943925049
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E7MS39		0.00155925238422
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C4ZPZ7	 2 isopropylmalate synthase	0.00155874256037
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAP2	 Protein AdrA	0.00155841221634
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0A013K1T0	 Putative cell surface adhesin domain protein 	0.00155830132519
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2P0J5	 Thiazole synthase	0.00113826776771
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q2P0J5	 Thiazole synthase	0.000420009798408
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R8A6I9	 PTS enzyme II glucose specific transporter subunit factor IIABC	0.00148641434491
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O59229	 30S ribosomal protein S12	0.00155734206442
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRK6	 Transcriptional regulator, LysR family	0.00155718004397
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6AHW3		0.00155702495685
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F0L5S4	 Segregation and condensation protein B	0.00155630535385
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U7DF00	 GntR family transcriptional regulator	0.00155574885258
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y5GWB2		0.00151693035729
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMA7		0.00155549365597
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I5S0		0.00145508674497
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C3SE92	 DNA polymerase III subunit psi	0.00155409668583
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024E6B6	 Cytochrome B561	0.00155361579123
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M202	 Nitroreductase	0.00155330103925
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B8DVQ6	 30S ribosomal protein S16	0.00155330103925
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D8A9J7		0.00155330103925
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0N2E1	 Antioxidant, AhpC TSA family	0.00155330103925
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N4P5U3		0.00155330103925
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0T9M8		0.00155330103925
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRU6		0.00155330103925
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A6T4	 30S ribosomal protein S9	0.00155330103925
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRL7		0.00155330103925
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWZ0		0.00155330103925
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SSV1		0.00155330103925
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q6N143	 Acetate kinase	0.00155306965367
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z3C5		0.00155257722702
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U4M0U5		0.00155241747779
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MVN0		0.0015522858987
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q3JNY2	 Phosphonates import ATP binding protein PhnC	0.00124675937319
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3JNY2	 Phosphonates import ATP binding protein PhnC	0.000297830582749
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KK81	 Methyltransferase type 12	0.00155132737271
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJ95		0.00155104987832
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3X429	 AsnC family regulatory protein Lrp	0.00155048067976
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E6A098		0.00155010306652
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F0VSK8	 Complete chromosome sequence, strain ATCC BAA 2069	0.00154990841786
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37610	 Alpha ketoglutarate dependent taurine dioxygenase	0.00151819974187
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2YCK0	 Glycine cleavage system H protein	0.0015491527879
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QGV7		0.00154904351911
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52045	 Methylmalonyl CoA decarboxylase	0.0015484204219
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACR6		0.00154777309238
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45753	 Putative DNA utilization protein HofM	0.00154775569218
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMA0		0.00154775353554
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0Z129		0.00154741652545
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_L1K7U4		0.00154604940041
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R2NN08	 PemK family transcriptional regulator	0.00154584882316
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TZP9		0.00154573478684
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P63388	 Probable phospholipid import ATP binding protein MlaF	0.00154528733341
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AD59		0.00154497883156
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DVI5		0.00154426997355
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76546		0.00154386537936
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L8UE55	 PTS system, galactitol specific IIC component	0.00154327466645
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N1A7		0.00154324445615
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZLN4	 ABC transporter, ATP binding protein	0.00154291977388
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN61		0.00116051227071
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PTY4		0.00147661867482
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45288	 Peptide transport system ATP binding protein SapD	0.0015420944679
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FHF8	 Protein YdeP	0.00154177063966
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2RS22	 Nickel import ATP binding protein NikE	0.00154118784587
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4WC00	 Protein MtfA	0.00154097442028
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HVD1	 Lipid A deacylase PagL	0.00154073097303
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U9YKK0		0.00154071855637
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X7XV22	 Carbon starvation CstA family protein	0.00154069845945
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33772	 N acetylmuramoyl L alanine amidase AmiA	0.00154042651156
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3TTL9		0.00153938877977
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8Z2V9	 Superoxide dismutase [Mn]	0.00153119917952
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YBT3		0.0015385691773
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G8Q3F3	 Smr domain protein	0.00153827373803
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJN4	 Predicted DNA binding protein	0.00153820953561
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P45174	 Sodium proline symporter	0.00144285601302
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P45174	 Sodium proline symporter	9.51598186153e-05
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SII2	 Hmd co occurring protein HcgC	0.00153725858814
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFC3	 TATA box binding protein	0.00153701329419
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7CL39	 Extracellular solute binding protein family 3	0.001322310125
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_R7CL39	 Extracellular solute binding protein family 3	0.000214362139171
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB12	 Inner membrane protein YccF	0.00153655857309
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27114	 2 oxoglutarate synthase subunit KorC	0.00153650605425
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FFV6	 Multidrug resistance outer membrane protein MdtQ	0.00153614682309
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8DCG0	 Ribosomal large subunit pseudouridine synthase A	0.001438097944
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D6Z753	 Band 7 protein	0.00153532570991
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27333	 Trk system potassium uptake protein TrkA homolog	0.0015350758565
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL99	 Predicted permease, major facilitator superfamily	0.00153490921343
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1VRZ2	 LPS biosynthesis protein WbpG	0.00153439373772
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_I5ASV0	 Anthranilate synthase component I	0.0015339258086
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACK7	 Deoxyribose operon repressor	0.00153382884481
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULI1		0.00153379539336
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RHN1		0.00138377511263
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E2P3	 2 phospho L lactate guanylyltransferase	0.00153366116699
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N1HFC9	 M48B family peptidase	0.00153346722221
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K6M8	 Glucose inhibited division protein A	0.00153333014102
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULP3	 Hydroxyethylthiazole kinase	0.00153285036468
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23484	 Probable RNA polymerase sigma factor FecI	0.00153104870601
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ64		0.00153086851058
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMD7	 Truncated transposase	0.00145382139995
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75961	 Inner membrane protein YcfZ	0.00153060976761
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023KPW6	 Glycosyl transferase	0.00153048477194
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28M41	 Kef type potassium proton antiporter, CPA2 family	0.0015300749281
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABK0	 Cytochrome bd I ubiquinol oxidase subunit 1	0.00135079455663
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P0ABK0	 Cytochrome bd I ubiquinol oxidase subunit 1	0.000164890792751
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D2ABX7		0.00152976617502
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1HK32		0.00152976617502
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3ST82		0.00152976617502
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G2BBB9	 Putative nucleoside transporter yegT	0.00152970663701
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PLQ2	 Glycoside hydrolase, family 16	0.00152959548205
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B0CE03	 Acyl carrier protein	0.00109421135744
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B0CE03	 Acyl carrier protein	0.000435192101515
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A8GJ06	 Polyamine aminopropyl transferase	0.00147936690307
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U4PYE4	 5 deoxy glucuronate isomerase	0.00152927128803
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WV96	 Two component transcriptional regulator, LuxR family	0.0015263621221
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SVY1		0.00152599827804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1EZL9	 PhnI protein	0.00152512821344
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q042B4	 Putative RNA  2 O) methyltransferase	0.00152483472481
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P25129	 Attachment protein G3P	0.00152462268557
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVD4	 Amino acid amide ABC transporter ATP binding protein 1, HAAT family	0.00152459996532
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7FHG9	 Vitamin B12 import system permease protein BtuC	0.00152436667373
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J0I2	 Acid phosphatase vanadium dependent haloperoxidase related protein	0.00152418881172
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8RY41	 Endonuclease exonuclease phosphatase family protein	0.00152374691699
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37050		0.00152359294201
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37682		0.00152348097244
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6BF16	 2 dehydro 3 deoxy 6 phosphogalactonate aldolase	0.00152226025834
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1CA93	 Leucyl phenylalanyl tRNA  protein transferase	0.00145927003614
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3UM49		0.00152181736014
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A8Z5	 Acyl CoA thioester hydrolase YbgC	0.00152163688918
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KSR7		0.000380998368122
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75860		0.00152018109382
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D3FFF2	 ABC transporter related protein	0.00151997670035
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X4XFI8		0.00151963871265
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI000474ABAF	 isoleucine  tRNA ligase	0.00151963561479
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACR1	 HTH type transcriptional activator AllS	0.00151877299942
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPZ3	 HNH endonuclease	0.00151850980768
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VCW3	 Membrane protein, putative	0.00151836538196
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAU1		0.00151826662722
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47223	 Type 1 fimbrial protein, A chain	0.00151815434614
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46942		0.00151793034209
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q890Z7	 Anaerobic sulfite reductase subunit B	0.00151728300465
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77031	 Inner membrane protein YqcE	0.00151696732805
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2IFU3	 Pantothenate synthetase	0.00151692001501
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2G8R5	 Cytochrome oxidase assembly protein 	0.00151687805296
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q6W109	 Tartrate dehydrogenase	0.00151654271305
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P54292	 Regulatory protein RhlR	0.00151627833403
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEJ4	 Osmolarity sensor protein EnvZ	0.00151567866958
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F0L7M8	 Transcriptional regulator, GntR family	0.00151433404954
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P60776	 Lipoate protein ligase A	0.00151417408007
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMW6		0.0015136258432
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P03841	 Maltose operon periplasmic protein	0.00151305169311
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P71298	 Putative prophage CP4 6 integrase	0.00151287444205
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I2BLI3	 Malonate utilization transcriptional regulator	0.00151272702481
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNS6		0.00151232417302
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P18956	 Gamma glutamyltranspeptidase	0.00151201273873
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P18777	 Anaerobic dimethyl sulfoxide reductase chain C	0.0015118739864
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU65		0.00151168814982
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6SJA3		0.00151058271908
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5Y0K2		0.00109414915973
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G0AH79	 Dihydropteroate synthase	0.00151009339845
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1UAG5	 Phosphatidylserine decarboxylase proenzyme	0.00149924356326
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A9M323		0.000841371396256
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M323		0.000667393777169
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P22608	 Type 4 fimbrial assembly protein PilB	0.00150853563875
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L7ZH95	 23S rRNA  C(5)) methyltransferase RlmD	0.00150725169811
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RP27	 Peptidyl prolyl cis trans isomerase	0.00150701777242
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33647	 mRNA interferase ChpB	0.0015069880425
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B0KA54	 GTPase Era	0.0015069741665
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR50		0.00150693384404
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CR75		0.00150693384404
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V1BIM5		0.00150693384404
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T7I9U4		0.00150645461401
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ74	 Chloramphenicol O acetyltransferase	0.00150619662008
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4TR32	 Ethanolamine ammonia lyase light chain	0.0015054558734
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VEL5		0.00150495906613
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69827	 PTS system mannitol specific cryptic EIICB component	0.00150443522512
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q38XQ8	 Ribosome maturation factor RimM	0.00150382289402
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQ64		0.00150295826789
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0C269	 Transcriptional regulator, LysR family	0.00150291360772
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5F8C3	 Fructose 1,6 bisphosphatase class 1	0.00137198330895
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q5F8C3	 Fructose 1,6 bisphosphatase class 1	0.000130783118593
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF25	 Ribonucleotide monophosphatase NagD	0.00150260367427
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P21979	 Cell surface antigen I II	0.00150238416051
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P41441	 Putative type II secretion system protein F	0.00150197114813
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXH0	 PTS system fructose subfamily IIA component	0.00150165081863
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPE3	 Transcriptional regulator, LysR family	0.00150143170233
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SM88	 Cell wall biosynthesis glycosyl transferase GT2 family	0.00150139854357
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37630	 Inner membrane protein YhiM	0.0015009776004
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37640	 Putative HTH type transcriptional regulator YhjB	0.00150091378326
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7V9D9	 Glutamate 1 semialdehyde 2,1 aminomutase	0.000852729386372
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V9D9	 Glutamate 1 semialdehyde 2,1 aminomutase	0.000638524986073
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNR8		0.00150036574955
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GJ00	 Aminodeoxychorismate synthase, subunit I	0.00149999289582
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26935		0.00149956796842
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SHL8	 NIF3 family protein HcgD	0.00149922087402
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q250M1	 50S ribosomal protein L24	0.00149823825731
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8T289		0.00149756057134
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E8TLE8		0.00142668275718
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8NV29		0.00139069424167
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMN4	 Riboflavin kinase	0.00149609207683
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MMU0	 Amino acid ABC transporter substrate binding protein, PAAT family	0.00149592115402
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77788	 CTP pyrophosphohydrolase	0.00149577137113
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52147	 Arsenate reductase	0.00114533747214
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47690	 Homocysteine S methyltransferase	0.0014935257147
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46810	 Molybdenum cofactor cytidylyltransferase	0.00149344477941
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N3NX82		0.00149328068837
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8IMK2		0.00149326646885
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW07		0.00149295050088
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0MK50		0.00149293777084
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0A6N5	 Type II secretion system protein E	0.00149225533394
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGL8	 Ribosomal RNA small subunit methyltransferase E	0.00149175945706
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U0ML56		0.00149164962244
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77269	 ABC transporter periplasmic binding protein YphF	0.00149104307454
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Z4LTQ9	 Serine aspartate repeat family protein, SdrH	0.00146820241142
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6CGX7	 Quaternary amine transporting ATPase	0.00149003854868
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9L6X9	 DNA replication terminus site binding protein	0.00148987312335
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KP57		0.00129763385071
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27322	 Argininosuccinate synthase	0.00147971407992
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2RMS9	 Endoribonuclease YbeY	0.00147765478661
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P38683	 Periplasmic protein TorT	0.00148873521523
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P70720	 3 oxoacyl [acyl carrier protein] reductase FabG	0.000860708507175
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P70720	 3 oxoacyl [acyl carrier protein] reductase FabG	0.000627989131823
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PI40	 Flagellar motor switch protein FliG	0.00148808097068
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W5XWP7	 Aldehyde dehydrogenase	0.00148793642361
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TYT4	 Transposase IS204 IS1001 IS1096 IS1165 family protein	0.00148753583184
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E7T039	 PTS system protein, cellobiose specific IIC component	0.0014870249302
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4TJM2	 Probable phosphatase YPDSF_1086	0.00148579109125
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A963	 L asparaginase 1	0.0014857428651
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5R316	 UPF0304 protein YfbU	0.0014660300057
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023WST9	 MerR family transcriptional regulator	0.00148544352668
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P21175	 Leucine , isoleucine , valine , threonine , and alanine binding protein	0.00148540284413
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EQ25	 Helix turn helix domain protein	0.00148540175958
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GJC7	 Uncharacterised conserved protein UCP032025	0.000793543688399
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77437	 Hydrogenase 4 component F	0.00148477812582
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E1PZI9		0.00148477305222
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E7HKA3		0.00148477305222
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G7RDN0		0.00148477305222
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEX1	 1 phosphofructokinase	0.00148418566049
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AVU5	 Cell cycle protein GpsB	0.00148399020485
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76549		0.00148393491596
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2SA37	 Octanoyltransferase	0.00148327926333
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H6LMT6		0.00148307757796
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADU0		0.00148207836767
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SS13		0.00148206855198
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9BAS9		0.00148130501897
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A012WQJ6	 Transposase for insertion sequence like element IS431mec	0.00100964567551
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q890E7	 FMN dependent NADH azoreductase 1	0.00148027278164
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TX50	 50S ribosomal protein L10	0.00147988338766
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_V4RU41		0.000721322428767
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27633	 Probable S methyl 5 thioinosine phosphorylase	0.00147980264671
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G7R254		0.00136438604799
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJI5	 Type I restriction modification system methylase, subunit S	0.00147953751495
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27484	 5 nucleotidase SurE	0.00147928016714
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DT17		0.000877952761313
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H1T6F3	 ABC transporter, substrate binding protein, family 5 domain protein 	0.00147839934924
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9P6J4		0.0014779071536
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E4D6	 SsDNA exonuclease RecJ2	0.00147772457195
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK44	 UPF0305 protein Msm_0367	0.00147765838512
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G7SA54	 Phosphodiesterase, MJ0936 family	0.00145836770508
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52696		0.00147700534517
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77218	 Ethanolamine utilization protein EutD	0.00140372446915
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M9B696	 Bifunctional glmU domain protein	0.0014768225098
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEK1	 Exodeoxyribonuclease 10	0.00147580905015
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39386	 Multidrug resistance protein MdtM	0.00147570161741
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PMT5	 Toluene tolerance family protein	0.00147565842709
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABE0	 Biotin carboxyl carrier protein of acetyl CoA carboxylase	0.00147557585174
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X643	 NAD dependent dihydropyrimidine dehydrogenase subunit PreA	0.00132011336774
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8X643	 NAD dependent dihydropyrimidine dehydrogenase subunit PreA	0.000145359836264
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_H6LDW2	 UDP galactopyranose mutase Glf	0.00147477463611
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKS5	 SAM dependent methyltransferase	0.00147455552114
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Y5XPW9	 Serine aspartate repeat containing protein C	0.00147448081981
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ77	 Predicted metal binding protein	0.00147442266153
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACV8		0.0014740705126
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75836		0.00147404305682
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P19496	 Coenzyme F420 hydrogenase subunit alpha	0.00147382324922
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V4B3	 Transcriptional regulator Dnr	0.00147313480861
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2Y5N1	 FMN adenylyltransferase   riboflavin kinase	0.00147265151617
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3BPQ5		0.00147257828967
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27126	 Lipopolysaccharide core biosynthesis protein RfaS	0.00144499803162
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACN0		0.00147194336465
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CU49		0.000893929296839
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU49		0.000576940386008
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ARZ1	 Electron transport complex subunit RnfC	0.00147075046306
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKF8	 TfuA like protein	0.00140903398478
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08365	 Antitoxin ChpS	0.00146950485915
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25666	 Protein HtrL	0.00146924229456
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J1B9G8		0.000567216671637
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49UR2		0.00146879646566
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP66	 Predicted ATPase, AAA+ superfamily	0.00146865045482
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y8BSP7	 Iron complex transport system substrate binding protein	0.0014366060969
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46856	 Alcohol dehydrogenase YqhD	0.00146831643525
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L8BN02		0.00123127521404
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV23		0.000827578422553
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M8PZ54	 PTS system, glucose like IIB component domain protein	0.00146753566147
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K0B0P3		0.00146674842341
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0RXK9		0.00146672656362
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D3NUN2		0.00146654441077
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKY7	 LemA protein	0.00146599875744
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKH3	 Homoserine O acetyltransferase	0.00146576286048
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZVB3	 UPF0307 protein YjgA	0.00146571903599
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UZL3	 DNA directed RNA polymerase subunit alpha	0.00143289352227
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B8GW31	 Chromosome partitioning protein ParA	0.00146414086732
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08956	 Type I restriction enzyme EcoKI R protein	0.00146397898472
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEB8	 RutC family protein YoaB	0.00146325460219
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FWV0	 Hypothetical phage protein	0.00146325460219
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A6Y6	 6,7 dimethyl 8 ribityllumazine synthase	0.00146325460219
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GKH2	 Two component transcriptional regulator, winged helix family	0.0014620652134
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7K6E8	 Aconitase family 	0.000824695640724
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A7K6E8	 Aconitase family 	0.000637247470264
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMD4		0.00146139190185
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O87131	 Chemotaxis protein methyltransferase 1	0.00144956847477
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E8TAB0	 Glutamine synthetase catalytic region	0.00146026645966
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A8YTE6	 Phosphate ABC transporter, permease protein	0.00145995256348
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39393		0.0014598695044
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J5Z1	 Phage portal protein, HK97 family	0.00141916360369
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q00751	 Multiple sugar binding transport system permease protein MsmG	0.00145970658684
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TS08	 PHP domain protein	0.00145939525389
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F0LFC9	 Spermidine putrescine ABC transporter inner membrane protein	0.00145935860687
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1A1	 UPF0254 protein mru_0533	0.00145880005215
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5Q5Z8	 Outer membrane protein NlpB	0.00145718298442
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q4UYN4	 NAD NADP dependent betaine aldehyde dehydrogenase	0.0014472006029
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32709	 Protein NrfD	0.00145664959631
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1HL74	 Transcriptional regulatory protein, C terminal domain protein	0.00145624796203
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PXY9		0.00145594659567
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B8EKL8	 Transcriptional regulator, HxlR family	0.00145545463673
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KRJ7		0.00145440601242
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P43899	 Oxygen independent coproporphyrinogen III oxidase like protein HI_0463	0.00143144708313
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2N374		0.0014541206617
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D4ZAF4	 Iron  ABC transporter, permease protein	0.00145402103273
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P65765	 FKBP type peptidyl prolyl cis trans isomerase FkpA	0.0014538731197
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZ67		0.00100884586978
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1DFX7	 Aspartokinase	0.00145291312799
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F769	 Bis tetraphosphatase, symmetrical	0.00144619417605
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEQ5	 Glutamine binding periplasmic protein	0.00145228162535
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0TMR6	 Gram positive signal peptide protein, YSIRK family	0.00145203885971
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3I2H2	 NADH ubiquinone oxidoreductase 20 kDa subunit	0.0014518651667
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YBI3	 Extracellular matrix binding protein	0.00145179790573
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P29564	 Uroporphyrinogen III C methyltransferase	0.00144616191057
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U4TYH6		0.00145117647014
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5WIY8	 UPF0061 protein ABC1129	0.00145057664644
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PXC0		0.00145039880212
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI000329B94F		0.00141945835566
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIA6	 Extensin family protein	0.00145000918638
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1UTL7		0.00144908093724
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4Y017	 Transcriptional regulator, TetR family	0.00144887393473
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76655	 Putative outer membrane usher protein YqiG	0.0014485312378
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKH5		0.00144824233302
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N8TNI2		0.00144770044505
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWH7	 Succinate dehydrogenase membrane anchor	0.00144663627074
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N5ZPN2		0.00096156731001
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39328	 Inner membrane ABC transporter permease protein YtfT	0.00144593731157
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A2J6	 Peptide transport system permease protein SapC	0.00144571374638
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULM3	 Precorrin 6X reductase, CbiJ	0.00144567344573
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B0KQI9	 Mammalian cell entry related domain protein	0.00144563735322
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q16C79	 Hydrolase, putative	0.00144541325454
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7LNV2	 Alkanesulfonate monooxygenase	0.00139693574851
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P07018	 Methyl accepting chemotaxis protein IV	0.00144474097309
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q034T8	 Holo [acyl carrier protein] synthase	0.00141732403343
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WXK7		0.00137982700055
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AH82		0.00128016017553
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KUZ9		0.000630185366224
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76393		0.00144328847901
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M5M9	 Aldehyde dehydrogenase	0.00144235096501
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6DEI9	 UPF0352 protein PC1_1633	0.00144235096501
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YXS1		0.00144235096501
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YYD2		0.00144235096501
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SXS2		0.00144235096501
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5JZ60	 Phosphotyrosine protein phosphatase, low molecular weight	0.00144235096501
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZQU2	 Succinate dehydrogenase iron sulfur subunit	0.00142905732396
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8XU90	 Uroporphyrinogen decarboxylase	0.000626132821889
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q8XU90	 Uroporphyrinogen decarboxylase	0.000499188463428
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q8XU90	 Uroporphyrinogen decarboxylase	0.000311864317186
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B8DW19	 30S ribosomal protein S3	0.000944250597479
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B8DW19	 30S ribosomal protein S3	0.000497032636127
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YU28		0.00144089109562
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023Y271	 Carbon nitrogen hydrolase	0.00144081720227
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52139		0.0013499820397
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NI75	 ComE	0.00144020640671
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JXP4	 Probable aromatic acid decarboxylase	0.00144019251323
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C5BEC5	 Fimbrial usher family protein	0.00143968804858
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKF1	 Transcriptional regulator, AraC family	0.00143945995964
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V2V4	 3 isopropylmalate dehydratase small subunit	0.00137291729937
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EAB8	 Intracellular protease, PfpI family protein	0.00143858011282
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULQ5	 2 oxoglutarate ferredoxin oxidoreductase, delta subunit, KorD	0.00143851844
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVQ9		0.00125337567858
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJD8		0.00143829562023
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5H2M9	 Methylated DNA  protein cysteine methyltransferase	0.00143746845478
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P55255	 Glucose 1 phosphate thymidylyltransferase	0.00117790601136
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNX4		0.00143660425178
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77400	 Inner membrane transport protein YbaT	0.00143607512978
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9UQD4		0.00143578151112
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46786		0.00143568157265
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HU78	 Histidine utilization repressor	0.000883249800592
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9HU78	 Histidine utilization repressor	0.000485912658469
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8FTC7		0.00143524770915
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5ZZ54	 Hydrolase of the alpha beta superfamily like protein	0.00143504163666
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK97	 Predicted permease	0.00143428620413
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5US72		0.00143339419689
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9PGZ6	 Deoxyuridine 5 triphosphate nucleotidohydrolase	0.00143333731772
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47142	 Probable 3 phenylpropionic acid transporter	0.00143295555243
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PWF8		0.00143290198482
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HTN0		0.00143222068719
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76254	 Putative dioxygenase subunit beta YeaX	0.00143138320228
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4BLQ2	 Pyrimidine specific ribonucleoside hydrolase rihA	0.00143120202187
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV60		0.00143113999702
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3D954	 Methyltransferase type 11	0.00143063084146
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J682	 2 dehydropantoate 2 reductase	0.00143028996982
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4JN97		0.00143027218884
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45053	 Oligopeptide transport system permease protein OppC	0.00142915405664
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P17869	 RNA polymerase sigma H factor	0.001428960093
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33030		0.00142850509506
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75693		0.0014277066802
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P26239	 Magnesium chelatase 38 kDa subunit	0.00142754537696
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HR18		0.00142736719257
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0BHU2	 YheO domain protein	0.00142676683487
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G2IM51	 Major facilitator superfamily protein	0.00142181335673
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5LJB5		0.00142532101693
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL35	 DNA binding protein Msm_0708	0.00142524980374
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8XZ83	 Carbamoyl phosphate synthase large chain	0.000954063356813
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XZ83	 Carbamoyl phosphate synthase large chain	0.000449741206326
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46144		0.00142405896504
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2V265	 Glycosyltransferase like 2 family protein	0.00142363620777
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D4DXV5	 Type III restriction enzyme, res subunit	0.00142356327182
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C7K2	 Electron transport complex subunit B	0.00142332791898
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABT9		0.00142312175063
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P24735	 Beta lactamase	0.00138320425258
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0VTH3	 Alkane 1 monooxygenase 2	0.00142285203907
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8D2I8	 Cardiolipin synthase A	0.00142281744659
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A024PFQ5	 Ferredoxin	0.00142210405976
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WXS2		0.00142208369026
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4VV02	 Protease, putative	0.0014220361627
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1LJI7		0.0014220361627
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XMG2	 Baseplate assembly protein V	0.0014220361627
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57990		0.00142186191066
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WY95		0.00142148220805
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1R4		0.00142132176435
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1QSI1	 Guanylate kinase	0.00142115955699
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SDZ9		0.00142110164034
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P67090	 Universal stress protein D	0.0014209260642
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNT3		0.000952495920299
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M4Z8L2		0.00139979189665
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5HZF5	 Sensor histidine kinase	0.00141885304238
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1P1	 HEAT repeat containing protein	0.00141877820424
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI00035CA2F5	 hypothetical protein	0.00141827361932
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83QI5	 GTPase Era	0.00141813071497
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7FFQ7	 Potassium transporting ATPase C chain	0.00141798376223
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PWU8		0.00141775881854
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P18642	 Protein ImpB	0.00141759748219
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76555	 Ethanolamine utilization protein EutQ	0.00141752897873
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E5CIE9	 Copper exporting ATPase	0.00141720359299
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM14	 Proteasome subunit beta	0.00141717044799
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D6DNI5	 Cation multidrug efflux pump	0.00141658971303
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_X9G8K3	 Surface protein G	0.00141583031731
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WVU4	 Surface antigen 	0.00141581634338
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV63		0.000631065237032
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I0DYC2	 Formate dehydrogenase, nitrate inducible, major subunit	0.00141419145089
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UPR0	 Thiamine biosynthesis protein ThiS	0.00141382032509
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A7GH10	 Hydroxylamine reductase	0.00138450974523
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J9YRQ9	 Large conductance mechanosensitive channel protein	0.00141237739705
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8RCJ6	 Flagellar basal body protein FliL	0.0014123681252
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PS51		0.0012210275742
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46857		0.00136438604799
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2RVQ3		0.00129496901727
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P66202	 50S ribosomal protein L31 type B	0.000984501597163
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P66202	 50S ribosomal protein L31 type B	0.000426010833549
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L2Y6Z3	 Inner membrane ABC transporter ATP binding protein YddA	0.00141029994805
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJM2	 UPF0218 protein Msm_0195	0.00141022581675
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B894	 Protein HflC	0.00141014566804
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VQV4		0.00140983584072
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2END3		0.00140942701197
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23840	 DNA damage inducible protein D	0.0014084834845
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_L8NJL2	 Cytochrome B561	0.0014084060343
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PU85		0.00140835276128
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A024L2J6	 Lysozyme	0.00140814669653
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q06553	 HTH type transcriptional regulator PrtR	0.00140767089951
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GH07	 Protein msa	0.00140717091749
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64555	 7 carboxy 7 deazaguanine synthase	0.00140713040274
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31471		0.0014071104596
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B8IL91	 Endoribonuclease L PSP	0.00108201783922
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F6D1X2	 Dihydroorotase	0.00140627857126
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMR0	 Thiamine monphosphate kinase, ThiL	0.00140617758114
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E3GWV9	 PP loop domain protein	0.00140617473706
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6D5L2	 DNA mismatch repair endonuclease MutH	0.00140459340289
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI0002BA3DF1	 hypothetical protein	0.00121064960958
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0C9F8		0.00137494365855
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H0DLY7	 Surface protein G	0.000725083317685
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H0DLY7	 Surface protein G	0.000678171713224
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SK57	 Molybdate ABC transporter ATP binding protein ModC	0.00140322991788
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M8VH72	 Mechanosensitive ion channel family protein	0.00140310654604
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNV1		0.00140299068087
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9BXI8	 D isomer specific 2 hydroxyacid dehydrogenase NAD binding	0.00140284447032
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B8H1P2	 Portal protein	0.00140272255723
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P61614	 LexA repressor	0.00131606124273
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M151	 Putative cell wall binding repeat containing protein	0.00140228566043
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1IJ55		0.00140228566043
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1E5		0.00140228566043
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2HXY4		0.00140228566043
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N4N922	 Aminotransferase class I and II family protein 	0.00140228566043
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8SYA6	 2 keto 3 deoxygluconate permease	0.00140228566043
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3P3G4	 Monooxygenase, luciferase family	0.000950751026643
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3P3G4	 Monooxygenase, luciferase family	0.000451119892661
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KLF4		0.00138583841432
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K8E4H2	 Transcription termination factor NusA	0.00140005392194
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HW04	 Arginine biosynthesis bifunctional protein ArgJ	0.0011791727969
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FBW8		0.00139974179121
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6STR4		0.00139919901854
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8YWB0	 50S ribosomal protein L33 1	0.00139745019264
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26347	 Phosphoribosyl AMP cyclohydrolase	0.00138360184106
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SMT5	 Energy converting hydrogenase B subunit A EhbA	0.00139682398308
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HYR9	 ATP dependent Clp protease proteolytic subunit 2	0.00139626572874
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PV50		0.00139618731406
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C3SN52		0.00139604051088
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SSA5		0.0013957197744
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P10367	 Histidine biosynthesis bifunctional protein HisIE	0.00130511952162
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SLM0	 Chromosome partitioning ATPase ParA	0.00139249789837
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZHE0	 Type II secretion system protein	0.00139203452329
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P30964	 Heme exporter protein B	0.00139183777338
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O59778	 Biotin synthase	0.00136858726775
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI000369CAA0	 hypothetical protein	0.00139127142829
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E135	 Voltage gated chloride channel protein	0.00138968624689
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PR56	 HpcH HpaI aldolase	0.00138945767765
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1I1		0.00138913316474
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKQ1		0.00138897523228
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2U1N8	 Radical SAM domain protein	0.00138835669495
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6LMV3	 S ribosylhomocysteine lyase	0.00137691835208
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76221	 TVP38 TMEM64 family inner membrane protein YdjZ	0.0013870157231
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U0G1		0.00138696961271
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7AHT0	 Protein FixC	0.00138645552411
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9CM13	 Magnesium and cobalt efflux protein CorC	0.00138509530726
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83QP2	 Fructose like permease IIC component	0.0013849669619
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTH1	 Transcriptional regulator, TetR family	0.00138477860416
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SL44		0.00138471479215
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q38451	 C repressor	0.00138451976866
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F7X1V6	 MFS type transport protein	0.00138441717481
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WSY5	 N formylglutamate amidohydrolase	0.00138417458645
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L6QSE5	 1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.00138386563902
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39351		0.00138379840659
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D6ZU16	 Glycerate kinase	0.00138351842827
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D4ZAK4		0.00138314294385
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N5L5		0.00138307626783
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q57549	 Probable thiol peroxidase	0.00138307626783
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NRS4		0.00138307626783
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1WE49	 Gamma glutamyl gamma aminobutyrate hydrolase Gamma Glu GABA hydrolase 	0.00138307626783
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46906		0.00138286175124
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2QIY6	 RNA pseudouridylate synthase family protein	0.00138131865374
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEH2	 Regulator of sigma E protease	0.00137585069935
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M1G0P3	 Sulfatase family protein	0.00138106591331
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I747	 Protein hcp1	0.00138090120507
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0B6I4	 Lipoprotein	0.00138064242276
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G8LF66	 Nitrate nitrite response regulator protein narL	0.00138050768627
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRS1		0.00137976843693
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5EDN1	 Cys tRNA Cys tRNA(Cys) deacylase	0.00137943659901
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2E542	 Transposase	0.00137940723758
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7M371	 Flagellar protein FliT	0.00137922175155
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J0G0		0.00137914424509
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI00022CA988	 hypothetical protein LOC100748976	0.00136669998705
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A7Z9I5	 Endonuclease V	0.00137780233602
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A6N8	 50S ribosomal protein L5	0.00137758903102
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P07024	 Protein UshA	0.00137651353253
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77212	 Probable pyridine nucleotide disulfide oxidoreductase RclA	0.00137573350169
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q3DT06		0.00102291221936
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P40733	 Deoxyguanosinetriphosphate triphosphohydrolase	0.00136684041433
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77667	 Protein SufA	0.00137555128958
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9U906	 Branched chain amino acid ABC transporter, amino acid binding protein	0.00137520570891
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M8EPJ5		0.00133722117124
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YYD9		0.00135966084766
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A0A024DHC4	 MarR family transcriptional regulator	0.00137428967035
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VP18	 Membrane protein, bmp family	0.00137406486733
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5R669		0.00137366758573
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UMI4		0.00137320816514
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46PF7	 Flagellar P ring protein	0.00137269908427
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AA74		0.00137248863791
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QIT1		0.00128551779413
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8U8I2	 Serine 3 dehydrogenase	0.00108089410627
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8U8I2	 Serine 3 dehydrogenase	0.000284017306959
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q65U60	 Protein FdhD homolog	0.00137125436262
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q6FD84	 Urease subunit beta	0.00132848115198
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0P9X7	 Probable ABC transporter ATP binding protein PEB1C	0.00136862491358
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ALK5		0.00136854046726
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y5MV84		0.00100475635021
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A2M0	 Protein sirB1	0.00136803315392
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLS8		0.00125855989064
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0M024	 Protein containing DUF124	0.00109818846469
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0M024	 Protein containing DUF124	0.00026904863568
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZZ2		0.00136641897677
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33941	 ABC transporter ATP binding protein YojI	0.00136609496176
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9Z195	 General stress protein 18	0.00136572480638
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP63	 O linked GlcNAc transferase	0.00136452326293
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023WZP7	 H NS histone	0.00136443912037
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IRW6		0.00136438604799
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X3N8	 Putative membrane protein insertion efficiency factor	0.00136438604799
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N3JM59	 Cupin domain protein	0.00136438604799
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YJH1		0.00136438604799
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q03007	 Hydrogenase expression formation protein HupH	0.00111622743189
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7XJ23	 Probabable oxidoreductase	0.00136384016423
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P06200	 Hemolytic phospholipase C	0.00136362999045
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK96		0.00136303450218
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1LTI6	 Holo [acyl carrier protein] synthase	0.00135161923988
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C1AE27	 Aminotransferase	0.00136239898762
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C1C9Q6	 Major tail protein	0.00136213986773
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2QNB6	 Cystine transporter subunit	0.00136154530448
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W5VF17	 Beta aspartyl peptidase	0.00136127244458
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SUP0	 Transcriptional regulator	0.00136111483902
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E4R4C3	 Phospholipid glycerol acyltransferase	0.00136110943834
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02RB8	 UDP 3 O acylglucosamine N acyltransferase	0.0013072836171
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37669	 Inner membrane protein YiaH	0.00136031033655
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47005	 Nitrogen assimilation regulatory protein nac	0.00136009135863
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WQQ4	 Aminotransferase, class V	0.00136003047373
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7UGJ1	 Ribosome binding ATPase YchF	0.0011077821715
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q7UGJ1	 Ribosome binding ATPase YchF	0.000252152610061
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D0KZT9	 Multiple resistance and pH regulation protein F	0.00135951065737
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VRM2		0.00135900616967
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI00037D4D8D	 hypothetical protein	0.00135832211
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C6CXV0	 D galactose D glucose ABC transporter, periplasmic D galactose D glucose binding protein	0.00135713572676
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5ZY26	 Phosphopantetheine adenylyltransferase	0.00132848115198
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QFJ2		0.0013556087533
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI000329D7B6		0.00134122175616
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L0EBK7	 Thioredoxin like protein	0.00135554280508
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L790	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00135526418154
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D9PVP5	 F420 dependent NADP reductase	0.00135504847883
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU50		0.00135429299612
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U4Y6	 ABC amino acid transporter, inner membrane subunit	0.00135409780987
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q97MB4	 NAD dependent protein deacetylase	0.00135386440103
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2M0D2		0.00135348369433
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6AME7	 Glycerol 3 phosphate transporter	0.00135271966431
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2E1	 DNA polymerase V component	0.00135229665907
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U4V8		0.00135207461004
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9ACP5	 Transcriptional regulator, MarR family	0.00135170530206
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZNB8	 UPF0226 protein YfcJ	0.00135158832109
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XZ93	 Elongation factor G	0.00135158124696
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK48	 Glutamine amidotransferase subunit PdxT	0.00135144492867
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P50727	 Ferredoxin	0.00135058096352
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77174		0.00135018618376
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98F59	 Inositol 1 monophosphatase	0.00133256523376
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q56036	 Galactoside transport system permease protein MglC	0.00134900919787
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4X0G8		0.00134854418641
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A8MI43	 Alpha beta hydrolase fold	0.00134827377178
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F9R061	 2 succinyl 6 hydroxy 2, 4 cyclohexadiene 1 carboxylate synthase 	0.00134786571608
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1C306	 Serine threonine transporter SstT	0.000572996527829
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C306	 Serine threonine transporter SstT	0.000553804939585
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1C306	 Serine threonine transporter SstT	0.000220991130205
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9KDE5	 Phosphoenolpyruvate carboxykinase [ATP]	0.00133246107013
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0WMD7	 Glycosyltransferase	0.00134672921401
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023Z2G6		0.00134619423401
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4KGF2		0.00134619423401
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U5AI32	 DNA polymerase III subunit beta	0.00134619423401
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6DEY0	 RNA polymerase associated protein RapA	0.00134613480231
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2W8	 Oxidoreductase domain protein	0.00134600568834
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P54457	 Ribosomal silencing factor RsfS	0.00134528921967
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YWF3		0.00120578254679
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D8A1C0		0.00129441753271
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMM7	 Predicted transcriptional regulator, PadR like family	0.00134309085719
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5ZY07	 Tyrosine  tRNA ligase	0.00122587864829
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q5ZY07	 Tyrosine  tRNA ligase	0.000116452788411
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1AHV1		0.00134226584595
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QEF9		0.00134224593619
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5GXC5	 Permease family protein	0.00134220252064
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G7SFU4		0.00134160522451
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_O86428	 Branched chain amino acid aminotransferase	0.00061282566411
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O86428	 Branched chain amino acid aminotransferase	0.000502676229843
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64440	 Inner membrane protein YbjM	0.00134120666826
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFW1	 Transcription antitermination protein RfaH	0.00134091931736
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KJE2	 Flagellar protein FliQ	0.0013408205469
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1BBC0	 Dihydrodipicolinate synthetase	0.00110092953144
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1BBC0	 Dihydrodipicolinate synthetase	0.000239820825536
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HJ88	 Protein EsaB	0.0013404939892
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M4C6		0.00133985892294
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46879		0.00133922715632
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HMH2		0.000955789391328
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_K4MIV8	 Dipeptide ABC transporter, ATP binding protein	0.00133663316269
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5EG78		0.00133638877789
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC99	 Succinate acetate proton symporter SatP	0.00133590817342
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WTM8		0.0013358813914
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UYP3	 ChaX protein	0.00133581490566
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D7CVN0	 3 isopropylmalate dehydrogenase	0.0013356632655
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SK13	 Phage integrase family protein	0.0013354173436
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45030	 Probable ABC transporter permease protein HI_1086	0.00133468276312
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P50601	 Protein TolB	0.00133466132299
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88EQ6	 Flagellar brake protein YcgR	0.00133448992169
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28VI8	 Lytic murein transglycosylase	0.00133436858414
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I5S4		0.00133411474929
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77616		0.001334106761
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X2T9		0.00133331904895
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08189	 Protein FimF	0.0013331612474
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R8D3		0.00133286183405
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC74	 Evolved beta galactosidase subunit beta	0.00133270171141
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58070	 Dihydroorotate dehydrogenase B ), catalytic subunit	0.00132902980738
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L4WM60	 Starvation sensing protein RspB	0.00133111010964
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16256	 Sodium pantothenate symporter	0.00133080576592
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SPI1		0.00133043151283
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76096	 Regulatory protein MokB	0.000643086417524
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XBB1	 Putative lambdoid prophage defective integrase	0.00132959146012
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49XQ7		0.0013294477165
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02JU1	 Protein phosphatase CheZ	0.00132943210539
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WZ54		0.00132908378057
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TCB0	 Uracil phosphoribosyltransferase	0.00130143413021
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MFW6	 Macrodomain Ter protein	0.00132893533358
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77746		0.00132885152649
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8JZV9	 3 hydroxybutyrate dehydrogenase type 2	0.00131977908516
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P11551	 L fucose proton symporter	0.00132862800183
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI0002BB4717	 hypothetical protein	0.00132853865453
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K4F0		0.00132848115198
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39390		0.00132848115198
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LSD4	 Major facilitator superfamily MFS_1	0.00132835991719
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4U829	 Hydrogenase accessory protein HypB	0.00132818425346
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5APZ2	 Transcriptional regulator, LysR family	0.00132736322596
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8PYF8	 2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.00131070252115
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP58		0.00132684400241
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J1E3J1		0.00132585398179
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7WXR8		0.00132579735168
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C1KWD9	 Bifunctional protein PyrR	0.00128272319023
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1BJ98	 Outer membrane usher protein	0.00132488909145
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0VT33		0.00132441328536
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J3JVP7		0.00132401633603
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7UKI3	 Succinyl CoA ligase [ADP forming] subunit beta	0.00130468427064
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW24		0.00102316362176
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32674	 Formate acetyltransferase 2	0.00127868599674
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M5I7	 AdeS	0.00132280289453
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77318		0.00132227742188
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CWK9	 AraC type DNA binding domain containing protein	0.00132211730062
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LS45	 Glycine  tRNA ligase beta subunit	0.00132210887572
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PFV9	 Aminoglycoside phosphotransferase	0.00132169387498
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W0S044	 Transposase of IS30, partial	0.00132151020556
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A3LPH4		0.00132138456464
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JM63		0.00132130387906
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02UV9	 C4 dicarboxylate transport protein 1	0.00132108073623
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UZU0	 Na translocating NADH quinone reductase subunit D	0.00132103006549
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7UR02	 D ribose binding periplasmic protein	0.00131196377312
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P02924	 L arabinose binding periplasmic protein	0.00132059506516
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3SL19	 Serine type D ala D ala carboxypeptidase	0.00132011971025
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1SWU5	 Threonine  tRNA ligase	0.0013119446736
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8HDR2	 Acyl ACP thioesterase	0.00131984708482
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02GL8	 Pyocin S5	0.00131983220907
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3XP79	 Polysaccharide lyase family 8, N terminal alpha helical domain protein	0.0013196868668
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8RA61		0.00131941511348
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N1N1E2		0.00131909399408
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZMR8	 Transposase, IS605 family	0.00131868341743
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X4ZI39	 Sigma 54 interaction domain protein	0.00131848554651
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F9LQU4	 GA module	0.0013182438079
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SU07		0.00131810757912
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MWS1	 Cna B domain protein	0.0013173071392
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87XY9	 Decarboxylase family protein	0.00131724150486
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KNP6	 Metallo phosphoesterase	0.00131664449839
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8RCC4		0.00131618353453
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PT69		0.00128585570671
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XW76	 Nucleotidyl transferase	0.00131577003328
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SIZ9	 Xylose isomerase like TIM barrel domain containing protein	0.00131519307113
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E035		0.00131514472004
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1J8E9		0.000593909220891
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6T6Q1	 Ribosomal RNA large subunit methyltransferase F	0.00131459352075
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04D22	 Cys tRNA Cys tRNA(Cys) deacylase	0.00131453919759
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWJ3	 Leucyl phenylalanyl tRNA  protein transferase	0.00131418700197
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LTV6	 His Glu Gln Arg opine family ABC transporter, periplasmic His Glu Gln Arg opine family binding protein	0.00131403554378
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C8TSW3	 Predicted oxidoreductase	0.00131320458575
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSU0		0.00131224618161
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MQF0	 Transporter YbhF	0.00131207972564
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XJ48	 1 acyl sn glycerol 3 phosphate acyltransferase	0.0013117776961
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88PG8	 Dipeptide ABC transporter, periplasmic dipeptide binding protein	0.00131169932428
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F2NB99	 Nucleoside ABC transporter membrane protein	0.00131136317597
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJA2		0.00131122815001
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRT3		0.00131122815001
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0HBU6		0.00131122815001
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CU37		0.00131122815001
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI00036CF3D9	 formate dehydrogenase subunit alpha	0.00131113831157
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q27580	 Adenosylhomocysteinase	0.00120943070238
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q27580	 Adenosylhomocysteinase	8.82557408638e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KU80	 Gas vesicle synthesis GvpLGvpF	0.00131101984341
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPN9	 2 C methyl D erythritol 4 phosphate cytidylyltransferase	0.0012970578296
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89IA9	 Blr5730 protein	0.00126703356284
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1K4		0.00131076336726
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P77817	 Cell division protein FtsZ	0.00131044480204
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D0KD36	 Lipid A palmitoyltransferase PagP	0.00130972958382
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U7DBQ4	 LysR family transcriptional regulator	0.00130962700016
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44839	 RutC family protein HI_0719	0.00130940496104
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q5N353	 Phosphoribosylaminoimidazole carboxylase	0.00130845083142
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_J7QW46	 Precorrin 2 C20 methyltransferase	0.00130820962527
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CUC4		0.000186625818025
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KM49		0.00121981778791
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0CBU4	 Acyltransferase family protein	0.00130720781032
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZK4		0.00130688207525
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45545		0.00130679730649
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNF8		0.00114101459348
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0K7G7	 Acyl CoA synthetase	0.00130505710464
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2F8L2	 Phage amidase	0.00130492595082
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9I2V5	 Aconitate hydratase 2	0.00104684721338
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9I2V5	 Aconitate hydratase 2	0.000166386784012
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9I2V5	 Aconitate hydratase 2	9.14551357336e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZKM0	 Magnesium transporter	0.00130452349376
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B7SF07	 Dentin sialophosphoprotein 	0.0013037042611
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I7FYE4	 Ethanolamine permease	0.00130362544321
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8PPN5	 UbiD family decarboxylase	0.00130335364075
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I1Y1		0.00130304091691
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8RFR7		0.00130230347632
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HQB8	 Carbamoyl transferase	0.00130223958172
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GI36	 Staphostatin B	0.00130204582156
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1R611		0.000746657630256
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9ZIS7	 Lipopolysaccharide core heptose kinase RfaY	0.00114919227487
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I7AAS7		0.00119455082102
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5EAP1		0.00130084191514
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U2B2	 Transcriptional regulator, LysR family protein	0.0012991805208
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48KZ1	 Trigger factor	0.00121998574693
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM47	 Energy converting hydrogenase B, subunit G, EhbG	0.00129822403623
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39376	 HTH type transcriptional regulator YjiE	0.0012980431702
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q63SZ9	 50S ribosomal protein L3 glutamine methyltransferase	0.00129779074265
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39805	 Transcription antiterminator LicT	0.00129731788302
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q01269	 Cyclohexadienyl dehydratase	0.00129714788129
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LXB5	 Cell division ATP binding protein FtsE	0.0012968367805
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XW77	 HAD superfamily hydrolase, subfamily IB 	0.00129611638272
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9JXV9	 Folylpolyglutamate synthase	0.00129558920598
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N533		0.000861621276469
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N533		0.000433324324258
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2HTJ9	 Anti anti sigma regulatory factor 	0.00129463032534
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VD53		0.00129441753271
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C5BF37	 ATP synthase subunit delta	0.00129441753271
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I0VSF2		0.00129441753271
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P06149	 D lactate dehydrogenase	0.000993980150875
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P06149	 D lactate dehydrogenase	0.000300286044455
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V2CGD9	 D mannonate oxidoreductase	0.00129383369105
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8TS87	 Mannitol 1 phosphate 5 dehydrogenase	0.00125584967132
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B3HGM5		0.000292650920434
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPS3	 30S ribosomal protein L7Ae, putative	0.00129346971356
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFH9	 Osmotically inducible protein Y	0.0012930522119
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P44474	 Rod shape determining protein MreB	0.000657380908808
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P44474	 Rod shape determining protein MreB	0.000635163826238
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SMF7	 DNA directed RNA polymerase subunit	0.00129131589325
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LW47	 50S ribosomal protein L24	0.00129075512037
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1PBL6	 Inner membrane protein yiaV	0.00129053397483
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAV2		0.00129042268491
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H6PBH3	 Thioredoxin	0.00129006508211
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C688		0.00128975482305
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9WJV3	 2 polyprenyl 6 methoxyphenol hydroxylase	0.00128907052873
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B357		0.00123127521404
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KVZ4	 DoxX family protein	0.00128815225987
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5PVU9	 ABC transporter ATP binding protein	0.00128806868624
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2J9D2	 DNA integration recombination inversion protein	0.00128800175428
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4XMD7		0.00128782488143
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D1QA17		0.000631028547195
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PH61	 Lytic transglycosylase, catalytic	0.00111971997904
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_UPI0002BA5A10	 MerR family transcriptional regulator	0.0010683089211
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RS00		0.00128609413574
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D5WDT4		0.00128590483651
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76065		0.00128556866054
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X8F2	 Porin OmpL	0.00128536890436
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UZY8		0.00128518307218
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P67431	 HTH type transcriptional repressor NemR	0.00128510411914
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8RU86	 Membrane protein	0.00126074882517
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7VQS0	 UDP N acetylglucosamine 1 carboxyvinyltransferase	0.00126716096594
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SSK6		0.00128363071994
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26135	 Adenylate kinase	0.00128329528596
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F0RXH0	 Ornithine decarboxylase	0.00100659827044
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0RXH0	 Ornithine decarboxylase	0.00027642915834
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C7C6X9		0.00118956526348
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49UJ3		0.000747885685563
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49UJ3		0.000534204061117
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q53177	 Periplasmic nitrate reductase, electron transfer subunit	0.00128198290012
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNS0		0.00128151875111
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7TAD9	 D mannonate dehydratase	0.000770721889707
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G7TAD9	 D mannonate dehydratase	0.00051038344523
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FEV4		0.0012809636572
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37923	 Chaperone protein FimC	0.00128026795772
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X5V5		0.000576940386008
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7L5A2		0.00127927814636
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJE8	 DNA repair exonuclease , Rad32	0.00127900280335
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T7WH30	 Electron transfer flavoprotein beta subunit	0.00127866520845
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33340		0.00127862131613
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77562		0.00127859137527
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8A2W1		0.00127803250065
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_C6A264	 50S ribosomal protein L39e	0.00127803250065
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E6JNN2		0.00127803250065
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLL7		0.00127803250065
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MUF8		0.00127803250065
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U9Y7F5		0.00127803250065
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_UPI00046CA465	 RNA methyltransferase	0.00127803250065
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G2SM74	 Fe S cluster oxidoreductase	0.00107609457781
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G2SM74	 Fe S cluster oxidoreductase	0.000201526082933
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08371	 Prepilin peptidase dependent protein B	0.00121463304819
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O30992	 Cell division protein FtsZ	0.0012774885915
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SKZ5	 SAM dependent methyltransferase UbiE family	0.00127747388471
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6UTD1	 Modulator of Rnase II stability	0.00127698793499
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5AM14	 Transketolase	0.00127671370588
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9JQX1	 Methionyl tRNA formyltransferase	0.00127638931821
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76014	 PTS dependent dihydroxyacetone kinase, ADP binding subunit DhaL	0.00114239907483
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DWB5		0.00127517295248
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G8LI42		0.00127472918415
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9ADB9	 EF hand	0.0012745875946
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5H1D4	 Methionine aminopeptidase	0.00127428021013
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7UID0	 Thymidylate synthase	0.00110604964751
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q7UID0	 Thymidylate synthase	0.000139261472482
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6LLQ5	 Probable GTP binding protein EngB	0.00127417929413
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8B0J3	 Acetyl coenzyme A synthetase	0.0012741589199
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K6MT38		0.00127411883539
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SUQ8		0.00127411496472
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4XIK4		0.00127410365496
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5CWI4	 ABC transporter related	0.00127375110641
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F4LVE5		0.00127312672759
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3V108		0.00127303317106
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU01		0.00127292367515
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABL3	 Periplasmic nitrate reductase, electron transfer subunit	0.00127186548159
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YTM5	 Acetamidase formamidase	0.00127176596549
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KSC1		0.000784087828431
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SSD0	 TRAP transporter	0.00115114995749
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6A9Z4	 Auxin Efflux Carrier	0.00127103155517
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A4Z7		0.00127097377505
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2DYR1	 Tryptophan tyrosine permease family protein	0.00127061126752
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T8P6W0	 Glutathione regulated potassium efflux system protein kefC	0.00127043087489
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46871	 NADPH dependent ferric chelate reductase	0.00127015904481
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U0AT69	 Metabolite transporter YdjK	0.00126958799696
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9DZC4		0.00126689599968
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F2F5B1	 Predicted acetamidase formamidase	0.00126945644717
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A9BPL9	 Alkylphosphonate utilization operon protein PhnA	0.000682193023999
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9BPL9	 Alkylphosphonate utilization operon protein PhnA	0.000587003299719
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PX40		0.00126843498311
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XWR3	 Prolipoprotein diacylglyceryl transferase	0.00123831948838
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRZ2		0.000839629426494
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77288		0.00126742488692
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKF2		0.00126740729147
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D3NUN5	 MoxR like ATPase	0.00126685650496
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XE09	 2 keto 3 deoxy L rhamnonate aldolase	0.000962219733424
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1QBI6	 Aminoglycoside phosphotransferase	0.00117619537806
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1QBI6	 Aminoglycoside phosphotransferase	9.01469353178e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N5V8		0.00126632448883
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7EN44	 Acetylornithine deacetylase ArgE	0.00126607905012
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2ER45		0.00126602582739
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q6LI26	 Glutathione peroxidase	0.00126565248196
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E292	 Bacterial regulatory s, luxR family protein	0.00126513124405
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H3MMC9		0.00126503364414
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9MRB3		0.00126481698181
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6LRE4	 Anhydro N acetylmuramic acid kinase	0.00126478647201
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64549		0.00126435743782
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_V4RER5		0.000995594550453
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00946	 Mannose 6 phosphate isomerase	0.00126254573102
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A025XI46	 Membrane protein 	0.00126216271756
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3UCQ6		0.00126205709439
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9V4R4		0.00126205709439
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_X6BZ54	 HNH endonuclease	0.00126205709439
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23481	 Hydrogenase 4 component A	0.00126192995611
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9HUV8	 Phosphoribosylamine  glycine ligase	0.000751557277096
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HUV8	 Phosphoribosylamine  glycine ligase	0.000306423259242
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9HUV8	 Phosphoribosylamine  glycine ligase	0.000203791869472
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZNT5	 Cellulose synthesis regulatory protein	0.00126150133906
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I1ZJN7		0.00125105012751
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5WGK5	 Aspartate carbamoyltransferase	0.000769031441952
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WGK5	 Aspartate carbamoyltransferase	0.00049191138128
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6EPA8		0.000901469353138
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A022NE52		0.00087038420303
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P26496	 Poly polymerase 2	0.0012597916142
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D7YAA8	 Poly beta 1,6 N acetyl D glucosamine export porin PgaA	0.00125937066581
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L2D926	 Fimbrial like adhesin protein	0.00125904240241
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SVK8	 Thioredoxin	0.00125863832184
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52613	 Flagellar FliJ protein	0.00125825005455
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8I308	 D hydantoinase	0.0012578468471
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5Z4H5		0.000531392460792
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I0ZPZ0	 Hydrogenase 1 large subunit	0.00125762829892
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B631	 Phage related minor tail protein like protein	0.00115193487828
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H2A8Y2		0.00125748442375
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VEM4		0.000880806182878
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0C8Z9	 Common pilus major fimbrillin subunit EcpA	0.00125611170171
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NH37		0.00125494698973
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K8E750		0.00125446241453
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3X371		0.00125417966641
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51553	CoA transacylase	0.00117990765529
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D3HNL5	 Cytochrome c oxidase subunit 2	0.0012541060778
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J216	 Putative class I holin	0.00125391310991
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C3MCT2		0.000893666737351
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C3MCT2		0.000360217199653
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9WVW5		0.00125364599543
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R8X1X2		0.00122487936057
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G3XD23	 UDP N acetyl 2 amino 2 deoxy D glucuronate oxidase	0.000894556838616
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G3XD23	 UDP N acetyl 2 amino 2 deoxy D glucuronate oxidase	0.000358011346812
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HD80	 UPF0126 membrane protein	0.00124140444671
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77239	 Cation efflux system protein CusB	0.0012516823506
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TQL5	 Transcriptional regulator	0.00125160332643
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9RZJ6		0.00125149462997
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5WEV0	 Serine O acetyltransferase	0.00125109842042
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37168	 Putative oxidoreductase YceM	0.00125086754563
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K4SQW1	 Cobalt zinc cadmium resistance protein CzcA Cation efflux system protein CusA	0.00125035778811
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7CQY4	 Chitoporin	0.00124973911414
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8CW45	 Outer membrane lipoprotein LolB	0.00124973430432
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4CSN5		0.00124962303434
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P55734	 Inner membrane protein YgaP	0.00124952738479
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VB56		0.00119873505843
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PZ24		0.00124922694919
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KU09		0.00124839846782
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B9TC98	 Xanthosine phosphorylase, putative	0.00124837928933
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZEN7	 HAD family hydrolase	0.00124741889572
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7VZ05	 Tryptophan  tRNA ligase	0.00122615951723
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PVV7	 Conserved hypothetical membrane protein Msm_1770	0.00124723842009
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WNG7		0.00124669546421
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J0KRV4		0.0012464761426
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RS69		0.0012464761426
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZCP7	 Glycerophosphodiester phosphodiesterase	0.0012464761426
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X7L674	 Alpha,alpha trehalose phosphate synthase [UDP forming]	0.0012464761426
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83SQ3	 Glutathione regulated potassium efflux system protein KefC	0.00124619566297
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4XUK4	 Outer membrane porin, OprD family	0.00124553078669
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UXX5		0.00124463405964
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6AJ35	 Pyocin protein	0.00124445551574
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P96676		0.00124408709125
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9KV03	 Two component transcriptional regulator, winged helix family	0.00124396380521
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_C6A2X9	 Protein TSIB_0916	0.00124274960598
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KSK5		0.00107145389113
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I3X4		0.00124230490878
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39332	 RutC family protein YjgH	0.00124219939976
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5PCT5	 DNA binding protein H NS	0.0012419199623
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37174	 Cys tRNA Cys tRNA(Cys) deacylase YbaK	0.00124176745868
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0LKT0		0.0012417328353
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SU74		0.00124120020059
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26310	 DNA polymerase PolB subunit 2	0.001240691573
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O34206	 Alginate biosynthesis sensor protein KinB	0.00115138670126
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMB3		0.00124053315359
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PND5	 Saccharopine dehydrogenase 	0.00123978525333
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRN6		0.00123914690318
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WXX3	 Transcriptional regulator, DeoR family	0.0012387895383
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58224	 Putative outer membrane protein YiaT	0.00123844159277
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HGS4		0.00120195913752
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9UPU8	 Ornithine decarboxylase	0.0012374551386
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFS7	 UPF0118 inner membrane protein YdiK	0.00123716871819
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44726	 UPF0701 protein HI_0467	0.00123696381338
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2K308	 UPF0502 protein YPTS_2082	0.00122660579317
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YYU0		0.00123666718675
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJV7	 Predicted ATPase 	0.00123614783844
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V6G3R8	 ABC transporter, substrate binding protein, family 5 domain protein	0.0012356455897
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q05599	 Bifunctional adenosylcobalamin biosynthesis protein CobU	0.00123552125273
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F9ZKH5		0.00123533858655
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP53	 TPR repeat protein	0.00123518528309
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK83		0.0012350849013
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VFV0	 HAD hydrolase, family IIB	0.00123468887062
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P22805	 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.0012345815675
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26931	 1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.00118726413514
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q07ML1		0.0012338251623
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I700	 Beta alanine  pyruvate aminotransferase	0.00102586943625
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9I700	 Beta alanine  pyruvate aminotransferase	0.00018956967942
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKN1		0.00123319442889
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAB0	 Zinc resistance associated protein	0.00123287084905
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C4YTW9	 Mitochondrial peroxiredoxin PRX1	0.00123274102573
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HYT1		0.00123262083214
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J7M2N5	 Dipeptide binding protein	0.00123229902468
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P77721		0.000947489694332
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77721		0.000284695577484
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U4V0C7		0.00123140898413
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B8ENG4	 Leucyl aminopeptidase	0.00123131028639
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023YPZ1		0.00123127521404
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V320		0.00123127521404
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_L0A753	 PRPP binding protein, adenine guanine phosphoribosyltransferase	0.00123127521404
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2K3R6		0.00123127521404
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_V5AK99		0.00123127521404
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31549	 Thiamine transport system permease protein ThiP	0.00123031330265
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMY2	 ADP ribose pyrophosphatase, NUDIX hydrolase family	0.00123009009605
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_L0DFT8	 Arabinose efflux permease family protein	0.00123004559979
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27566		0.00123004298651
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNV9		0.00122811905923
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5Z097		0.00120302167474
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8YBF1	 Respiratory nitrate reductase 1 alpha chain	0.00122743368481
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B3QG99	 Transport system permease protein	0.0012255054819
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A4M7		0.00122506748539
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P55891	 Motility protein A	0.00122430294666
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY82	 Alpha beta superfamily like hydrolase	0.00122413080387
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9G021	 Phi ETA orf 24 like protein	0.00119353303222
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FDB5	 Antitoxin PrlF	0.00122351790314
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFE2	 NADH quinone oxidoreductase subunit J	0.00122345554406
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I576	 4 hydroxyphenylpyruvate dioxygenase	0.00122314586183
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4A673	 Hydrogenase maturation factor	0.00122276465544
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A925	 Phosphatidylglycerophosphatase B	0.00114757948546
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U537		0.000206894605641
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023KQS7	 Formate dehydrogenase	0.000829568667165
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023KQS7	 Formate dehydrogenase	0.000392007916915
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IS46		0.00122135881409
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6LWG7	 Regulator of arsenical resistance	0.00122116908363
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SVJ7		0.00122101659821
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_O31716		0.000997137994525
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O31716		0.000222570642122
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A024L3K6	 Fimbrial biogenesis outer membrane usher protein	0.00121851169058
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P55478	 UPF0721 transmembrane protein y4hK	0.00121850781878
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1TT20	 Cytochrome c oxidase	0.00121836820748
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6D8D5	 Outer membrane protein assembly factor BamA	0.00121836769656
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNG2	 Hemolysin type calcium binding toxin	0.00121820473271
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q74RF8	 Maltose transport system permease protein MalG	0.00121764211772
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VAS6		0.00121753202086
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI0003752C76	 hypothetical protein	0.000492510085617
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8G5A1	 Cell wall binding protein	0.00121676109477
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76483	 Protein YfbM	0.00121648471882
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A037LLD0		0.00121644057291
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X485	 Truncated amidase	0.00121644057291
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z210		0.00121644057291
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0ZEX0		0.00121644057291
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46854	 ORF_f51	0.00121644057291
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I4Z4	 Peptidoglycan associated lipoprotein	0.00121644057291
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76134	 Anaerobic sulfatase maturating enzyme homolog YdeM	0.00121594948207
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZUX0		0.00121586061449
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27283	 Fibrillarin like rRNA tRNA 2 O methyltransferase	0.00121544276832
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E484		0.00121532298451
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LCZ8	 ABC transporter	0.00118480183597
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F1ZL48		0.00121409779439
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_M1X9S4		0.00121404183645
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACT8	 HTH type transcriptional regulator UidR	0.00121324280614
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R4YH39	 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.00121309328807
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7EPM1	 Gamma glutamyltranspeptidase Ggt	0.00121269625078
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q9KDA5	 DNA binding protein HU 1	0.000833588402498
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9KDA5	 DNA binding protein HU 1	0.000378144447761
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_S2XRR2		0.00121148360589
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1WQ49	 Substrate binding region of ABC type glycine betaine transport system	0.00121135235522
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E112	 Polysaccharide biosynthesis protein	0.00121102208769
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A058SUW3	 Aminopeptidase N	0.0012101089533
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSL0		0.00120918315852
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HTT0		0.00120889415994
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GMS0	 Dihydroorotase	0.00120844621842
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W6U4	 NAD kinase	0.0012081837774
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q60BY8	 Type 4 fimbrial biogenesis protein PilM	0.000851707444808
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q60BY8	 Type 4 fimbrial biogenesis protein PilM	0.000356337389236
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUX9		0.00120801791297
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TNU2		0.00120790748077
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1A6	 Nitrogen regulation protein NIFR3	0.00117400659943
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WW68	 Flagellar M ring protein	0.00120752668158
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SUF8		0.00120595202891
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37745	 dTDP 4 dehydrorhamnose 3,5 epimerase	0.000957808888434
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P37745	 dTDP 4 dehydrorhamnose 3,5 epimerase	0.00023812398007
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DMB7	 MOSC domain containing protein	0.00120540000947
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37005		0.00120453742227
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T8S6T3		0.00119359337542
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WNG3	 Histidine kinase	0.00120365132094
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8G4X8	 Citrate synthase	0.00120349861041
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1ACG0		0.00120295242507
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4KIS2	 Adenine deaminase	0.00120295104868
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5N5E1		0.0006138571074
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N5E1		0.000588719683636
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4WGI4	 Transcriptional regulator, MarR family	0.0012022673467
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1R614		0.00120206188099
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HK06		0.00120195913752
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T0G3	 Cell envelope biogenesis protein OmpA	0.00120195913752
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0Z1E7	 Peptide n acetyltransferase RimI	0.00120195913752
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P67155	 UPF0073 inner membrane protein YqfA	0.00120109503863
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7J5S6	 Ribose 5 phosphate isomerase A	0.00120107858137
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUV6	 Thioredoxin domain protein	0.000327807037508
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Z0CP45		0.00119970823817
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27128	 Lipopolysaccharide 1,3 galactosyltransferase	0.0011991883881
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP65	 O linked GlcNAc transferase	0.00119918582988
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1EVH2	 Transcriptional regulator	0.00115298504445
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WWZ3		0.00103086945848
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6BF25	 Small toxic polypeptide LdrD	0.00119889138822
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJ91	 RDD domain containing protein	0.00119875917847
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PGP7	 Ferredoxin	0.00119721212153
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AT86		0.0011966861378
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T5XQY7	 Membrane protein	0.00119666852301
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L3C2	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.000782706274168
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L3C2	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.000413789211271
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNM2	 SAM dependent methyltransferase, FkbM family	0.00119527215003
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7A375	 Aminobenzoyl glutamate transport protein	0.00119518389452
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP89		0.00119493712524
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9CPL9	 Probable uracil permease	0.0011944654937
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1AZX4		0.00119385684937
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N4BUJ9	 ATP dependent helicase HrpA	0.0011937402319
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V7V9		0.00119325003468
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RIV0	 ATP12 chaperone protein	0.00119301341243
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1HC38	 Glutathione regulated potassium efflux system protein kefC	0.00119287485641
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8YI99	 Pyrazinamidase   nicotinamidase	0.00119286911359
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7N578	 Protein Ves	0.0011229566745
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_T0M6U2	 Electron transfer flavoprotein domain containing protein	0.00119222822253
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75973		0.00119163377771
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76545		0.00119131388646
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F6IIV1	 Flagellum specific ATP synthase	0.00118953159427
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FBT7		0.00114069756108
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D2AAC8	 Biotin sulfoxide reductase	0.00118922139121
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DQZ5	 Transcriptional regulator PsrA	0.00118891443372
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LSM0		0.00115670891862
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRZ5		0.00118815613364
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XP48	 Glutamate  putrescine ligase	0.0011879092934
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A012HX51		0.00118781844178
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6STW8		0.00118781844178
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L4ITT1		0.00118781844178
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2K7S3		0.00118781844178
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37673	 Protein YiaL	0.00118781844178
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64489		0.00118781844178
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPB7	 Probable tautomerase SE_1045	0.00118781844178
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y9D7		0.00118781844178
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI0002CAE545	 hypothetical protein	0.00118781844178
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0A130		0.00118758681338
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DKJ3	 Phospholipid glycerol acyltransferase	0.00118741525627
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X1S6		0.00118726604149
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4S1N2	 Thymidylate kinase	0.00118691440361
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJN9		0.0011867551597
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJF9		0.000968986810859
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MBK8	 Membrane protein insertase, YidC Oxa1 family	0.00118654085545
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VB08	 Lipoprotein, putative	0.00118612239649
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02GV4		0.00118558894024
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9XGI9	 N carbamoylputrescine amidase	0.0010329145368
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q9XGI9	 N carbamoylputrescine amidase	0.000137180118958
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q99U54	 Extracellular matrix binding protein EbhA	0.0011843644159
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WYF3		0.00118395622532
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5LLF3	 Acetate CoA transferase subunit alpha	0.00118376028002
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P26319	 Fimbriae Z protein	0.00118347837537
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5Y844	 L asparaginase II	0.00118328886109
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A5VPL4	 2 isopropylmalate synthase homocitrate synthase family protein	0.00118326295888
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31449		0.00118322657899
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N6S0H8		0.000827578422553
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KMZ6		0.0011028546536
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4TIY8	 Alkaline phosphatase	0.00118211054849
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SFP7	 Cell division protein YlmG Ycf19, YggT family	0.00118147177116
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IY01	 Conserved hypoothetical protein	0.0003022891244
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M4JLD0	 DNA binding transcriptional activator CadC	0.00118060885137
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V1B6		0.00118034288484
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P03825	 Putative general secretion pathway protein B	0.00118004558552
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6T2I9	 Type 4 fimbrial biogenesis protein PilW	0.00117958289905
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D9QHK3	 Inositol monophosphatase family protein	0.00117955542572
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T4Y9	 AraC family transcriptional regulator	0.00117908177552
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9F7B2	 Low molecular weight protein tyrosine phosphatase wzb	0.00117870695181
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJG6		0.00117807778283
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQG4	 Flagellar hook associated protein FlgK	0.00117801756212
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VD75	 Inner membrane protein YbcI	0.00116051227071
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q31YK5	 Lipopolysaccharide core heptose phosphate phosphatase	0.00117681580257
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNY8		0.00117675269047
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB02	 Envelope biogenesis factor ElyC	0.00117665555843
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMH1	 30S ribosomal protein S15	0.00117620208067
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9F0	 Regulatory protein YeiL	0.00117592141104
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q57772	 Putative permease MJ0326	0.000803381807034
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q57772	 Putative permease MJ0326	0.000372336867658
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVP4		0.000994656649664
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TY87	 30S ribosomal protein S27e	0.00117499953441
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L1FQ99	 AbgT transporter family protein	0.0011741723658
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJA3		0.00117400659943
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_C1CVB0		0.00117400659943
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SI65		0.00117400659943
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4G7V0	 Putative lipoprotein 	0.00117400659943
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4V7E7		0.00117400659943
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6SBM6		0.00117400659943
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I8HVI3		0.00117400659943
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0A892	 RNA polymerase binding transcription factor DksA	0.00117400659943
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKS5		0.00117400659943
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RV37		0.00117400659943
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U9XWJ2		0.00117400659943
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V6Q9Q8		0.00117400659943
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KBT4		0.00117400659943
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F2QGF8	 Transcriptional regulator, Cro CI family	0.00117385004435
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R7Q8		0.00117242194216
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03K84	 Phosphoribosyl ATP pyrophosphatase	0.00117226076486
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5CFG0		0.00117153598892
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T7H4C9	 Periplasmic endochitinase	0.00117106717234
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P17410	 HTH type transcriptional regulator ChbR	0.0011703543825
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O27179	 Pyruvate carboxylase subunit B	0.00117035295185
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XST5	 Apolipoprotein N acyltransferase	0.00117022446788
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SXW9		0.0011700431934
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L4W2		0.00116998236047
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MFJ5	 Phosphopantetheine adenylyltransferase	0.00108705486777
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D9PX81	 FAD synthase	0.00116856369431
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LL38		0.00116851073163
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V608	 Anthranilate phosphoribosyltransferase	0.00114192884903
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SK04	 Beta ribofuranosylaminobenzene 5 phosphate synthase MptG2	0.00116811994949
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28VF6		0.000923525505659
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C492	 Transposase	0.00114203163805
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4Z9J6		0.00116765657588
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FCI7	 HTH type transcriptional regulator GadW	0.00116735774843
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YZ32	 Smr protein MutS2	0.00116728097278
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4KG93	 ATPase family protein associated with various cellular activities 	0.00116699330081
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97JJ9	 Germination protease	0.00116696816513
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88FQ7	 Enoyl CoA hydratase isomerase family protein	0.00116672550559
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6AD01		0.00116670719971
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SW55		0.00116653820164
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZN93	 Sulfoxide reductase heme binding subunit YedZ	0.00116651654633
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A0AI76	 Ribonuclease HII	0.00116617181584
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULA2	 Transcriptional regulator, AraC family	0.00116612466676
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V5WXJ4	 Lytic transglycosylase	0.0011660541475
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1Z5H1	 Secretion protein HlyD family protein	0.00116566225361
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZFL2		0.000454795349329
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5YRU3	 dTDP 4 dehydrorhamnose reductase	0.00116512073452
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GI13	 Sarcosine oxidase delta subunit heterotetrameric	0.00116430958131
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88M14	 Sensory box protein GGDEF family protein	0.00116397057626
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C7RV62	 Lipopolysaccharide kinase	0.00116342995258
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TXF6		0.00116337336089
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFZ4	 30S ribosomal protein S4	0.00116260376412
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KMS1		0.00116218931156
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L1GB63	 Multidrug transporter MdfA domain protein	0.00116172434604
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5RD02		0.00116076191482
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5WFX1	 Ribosomal protein L21	0.00116058211376
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P65291		0.00116056471277
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6U0K6		0.00116051227071
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C3SD74	 Membrane protein	0.00116051227071
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D1AHU8		0.00116051227071
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_D2ZUL4		0.00116051227071
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5IJ08	 Putative phosphotransferase ydiA domain protein	0.00116051227071
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQN1		0.00116051227071
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FCZ8		0.00115931559564
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNV3		0.00115898564681
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AGR4		0.0011507058007
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1ZBN6		0.0011586308375
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLU5	 SugE protein	0.00115825153252
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LYD5		0.00115720672468
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KJR5	 Binding protein dependent transport systems inner membrane component	0.00115684199771
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75839	 UPF0702 transmembrane protein YcaP	0.00115677354084
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RV19		0.00115627413702
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q2YS71	 UPF0741 protein SAB0543	0.00115621862065
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AYU9		0.00115616050597
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J0V4	 Periplasmic sensor diguanylate cyclase 	0.0011555307435
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3SJE0	 Succinyl diaminopimelate desuccinylase	0.00088783343719
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q3SJE0	 Succinyl diaminopimelate desuccinylase	0.000267302209422
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9HE84	 Tryptophan synthase alpha chain	0.000631456623624
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9HE84	 Tryptophan synthase alpha chain	0.000508778668252
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V7J4	 Recombination associated protein RdgC	0.00115491615056
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_H1Z0J9	 NADPH dependent FMN reductase	0.00115489699724
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E4R955	 Peptidase C26	0.00115488029583
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M3L5		0.00115477733827
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A0JUR7		0.00114993735637
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0F249		0.00115468265268
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGD2	 Superoxide dismutase [Cu Zn]	0.00115461846818
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C6XRP6	 Transcriptional regulator, XRE family	0.0011544390921
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9U1S9	 RNA polymerase sigma factor	0.00115441410763
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9UTM9		0.00115434916922
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77806	 Methionine aminotransferase	0.000809281057442
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P77806	 Methionine aminotransferase	0.000334224999147
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D1GN02	 Phage protein	0.00115377458094
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T6G328	 Cellulose synthase operon protein C	0.00115363572041
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B1JLB8		0.0011530605748
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q881N5	 TonB dependent receptor, putative	0.00115301877924
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0D7B2		0.00115241560315
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q0ADJ4	 Nucleotidyl transferase	0.00115176343256
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9WLG4		0.00115163707917
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P80644	 FMN reductase 	0.00115112818886
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00894	 Acetolactate synthase isozyme 3 small subunit	0.00085610180404
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P00894	 Acetolactate synthase isozyme 3 small subunit	0.000206471508289
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G3XD61	 UDP 2,3 diacetamido 2,3 dideoxy D glucuronate 2 epimerase	0.00115012689444
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46901	 CRISPR system Cascade subunit CasA	0.00114968714574
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_H1XZH3	 Aldo keto reductase	0.00114892504005
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2S7C0	 Thromboxane receptor	0.00114883133043
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H0DRQ3		0.0010302506893
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SG34		0.00114825135789
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4F2G7	 Prolipoprotein diacylglyceryl transferase	0.00113176977271
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ09		0.00105890194973
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A8FP16	 50S ribosomal protein L22	0.00114732463126
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_H3TNN5		0.00114732463126
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64487	 UPF0410 protein YeaQ	0.00114732463126
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J3U3	 Transcriptional regulator, MerR family	0.00114732463126
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RY56		0.00114732463126
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQI0	 Lipoprotein signal peptidase	0.00114703687084
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3V0G0		0.00114657416544
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S3MLJ8	 LysR family transcriptional regulator	0.00114643415798
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V7I3		0.00114579506903
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HW91	 Methyl accepting chemotaxis protein PctB	0.0011455041719
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GI58		0.00114530570909
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D3RCC5	 Ethanolamine utilisation protein EutH	0.00114521052956
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HEL1		0.00114493097631
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21517	 Maltodextrin glucosidase	0.00114472908052
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75809	 Flavin mononucleotide phosphatase YbjI	0.0011215092366
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZQD7		0.00114450607333
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZFU1	 Ammonium transporter	0.000656223074963
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_R9ZFU1	 Ammonium transporter	0.000488193933054
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AFV8	 Transcriptional regulator, MarR family	0.00105168444596
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024E8U2	 Mandelate racemase muconate lactonizing enzyme family protein	0.00114421268175
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RRN0	 Integral membrane protein	0.0011441013843
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E4R7C5	 2 dehydropantoate 2 reductase	0.00114409108207
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q96255	 Phosphoserine aminotransferase, chloroplastic	0.00114405701828
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WSZ3		0.000711360842319
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D8MHK6	 Mini ribonuclease 3	0.000901469353138
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D8MHK6	 Mini ribonuclease 3	0.000242121265113
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4XK82		0.00114343395382
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U3QX72	 GntR family transcriptional regulator	0.0010061352705
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3QX72	 GntR family transcriptional regulator	0.000136808357112
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SWE7		0.000954706557437
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W8P2	 Protein translocase subunit SecA	0.00114287369136
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V6A5		0.00114273868358
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P0A0Y5	 Phosphoheptose isomerase	0.00112535629101
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D1YVK2		0.00114220789698
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q88VD5	 30S ribosomal protein S15	0.00114160618529
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A8IJS1	 Glutamate synthase	0.00114142396389
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0VGY2	 Probably aromatic ring hydroxylating enzyme	0.00114073225602
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUM4	 Possible DNA damage inducible protein	0.00114030434559
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M2C7	 DeoR family transcriptional regulator	0.00113980018465
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1K7T3	 Two component transcriptional regulator, LuxR family	0.00113939782912
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2KZ81		0.00113914830067
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R5VQG0	 Transcriptional regulator LysR family	0.00113899008822
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G2SWK3		0.00113745771837
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I2Y2	 Phosphoserine phosphatase ThrH	0.000794996594888
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9I2Y2	 Phosphoserine phosphatase ThrH	0.000342252771362
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1WIH9	 Transcriptional regulator, DeoR family	0.00113713897208
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L1G5S5	 Binding  dependent transport system inner membrane component family protein 	0.00113698837333
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52037		0.00113698761342
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6IRJ0	 ATP dependent RNA helicase, DEAD	0.00113659938912
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WVE5	 PhoP Q and low Mg2+ inducible outer membrane protein H1	0.00113654439983
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MSL5	 NADPH dependent FMN reductase	0.0011363779807
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D7ZHL1		0.00113606807368
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZB11	 LysR family transcriptional regulator	0.00113599537602
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32166	 1,4 dihydroxy 2 naphthoate octaprenyltransferase	0.00113572381893
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SU84		0.00113569402975
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T4K9	 Haloacid dehalogenase	0.00113569006626
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HL03		0.00113547130935
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SP73		0.00113499637618
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P42257	 Protein PilJ	0.0011222335096
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E404		0.00113446914901
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SCL9		0.00106560367142
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XU74	 Elongation factor P	0.00113443334327
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2I798	 Acyl carrier protein	0.00113443334327
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3VV28	 Glucose 6 phosphate dehydrogenase, C terminal like domain protein	0.00113443334327
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2EBN0		0.00113443334327
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI000375DC81	 hypothetical protein	0.00113443334327
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Z9T5Q2		0.00113443334327
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNT2	 Phage phi PVL amidase like protein	0.00113411257928
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRV3		0.00113343246968
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SV56		0.00113337465175
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7ENJ2		0.00107052363782
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U887		0.00113266773786
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM06		0.00113202696951
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7ING9	 Thioesterase superfamily protein	0.00113186468428
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E7I9A5	 Sensor protein qseC domain protein	0.00113149946393
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30138	 Sulfur carrier protein ThiS adenylyltransferase	0.00109329859067
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39265	 D allose binding periplasmic protein	0.00113002580141
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PLT6	 Rhodanese domain protein	0.0007956235093
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HLC2	 Peptidoglycan synthase FtsI	0.00112976554566
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28JK1	 Flagellar basal body rod protein FlgF	0.00112874297967
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37182	 Hydrogenase 2 maturation protease	0.00112864168319
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LNH2	 UPF0246 protein Dshi_3333	0.00112863044892
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1MLZ3	 Ribonuclease PH	0.001114853773
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0TD54	 Glutamate ammonia ligase adenylyltransferase	0.00112837260196
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P50600	 Protein TolA	0.0011283017364
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GL55	 3 hydroxybutyryl CoA dehydrogenase	0.0011279702765
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N248		0.00112795059331
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C4LED9	 Transcriptional regulator, LuxR family	0.00112772978297
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R5DD38		0.00112729620281
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N6LZ63		0.00112718485084
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8HC83	 Regulatory protein spx	0.00112705559032
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I484	 Amino acid ABC transporter periplasmic binding protein	0.0011269657451
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SWT2	 Peptidase S8 and S53 subtilisin kexin sedolisin	0.00112674644825
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28RG9	 Transcriptional regulator, AsnC family	0.00112624445803
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_O30826	 Superoxide dismutase [Mn]	0.00111627841785
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2J7P8	 Replication initiator protein	0.000989848701479
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76486		0.00112445043393
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P57134	 DNA replication protein DnaC	0.00112406249093
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MDX7		0.0011239288737
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T6V8	 Death on curing family protein	0.00107868127726
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2GZC1	 Inner membrane transport protein YhjV	0.00112337414717
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C8YZ36	 WejK	0.00112310967575
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D7ZSZ7	 PAS domain S box protein	0.00112230654249
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNG0	 Adhesin like protein	0.00112222799543
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WUT7	 Phage SPO1 DNA polymerase related protein	0.00112204742148
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L9V0	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.00112187154943
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QGQ6		0.00112182852834
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FD73		0.00112182852834
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E4P3		0.00112125550297
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S4XRJ9		0.00100964567551
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KU56	 Xanthine oxidase	0.00112091070582
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77795		0.00112080763494
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2QQ87	 Phage baseplate assembly protein	0.0011016171142
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AKL4	 Ferrous iron transport protein A 2	0.00112073078163
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZJK9		0.000807716540409
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q4FS24	 Putative phosphoenolpyruvate synthase regulatory protein	0.00109151171366
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVA8		0.000365813650548
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76002	 Inhibitor of g type lysozyme	0.00111939544159
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZB4	 ApbE family lipoprotein	0.00111896944518
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00887	 Phospho 2 dehydro 3 deoxyheptonate aldolase, Trp sensitive	0.00104845584425
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S0ZSN8	 FhuE receptor	0.00111873525115
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KNX2	 Transcriptional regulator, ArsR family	0.00111872955451
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HMC1		0.0011185078554
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U1ASZ8	 Diguanylate cyclase domain protein	0.00111845394986
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L441		0.00111838507088
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I0G0V1	 Transcriptional regulatory protein TetR family	0.00111764533779
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2RMW0	 3 dehydroquinate synthase	0.00111057122179
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZF93		0.00111633452148
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2NAF9	 Glycerol 3 phosphate dehydrogenase	0.00111630330814
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Y5PB14		0.00111566463534
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q8XRC2	 UPF0271 protein RSp0936	0.00111557500212
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSK9		0.00111534280789
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C7NAK8	 PP loop domain protein	0.00111505840899
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S0I7	 Rod shape determining protein MreD	0.00111505083053
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KU76	 Gas vesicle protein	0.00111497525256
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44842	 IMPACT family member HI_0722	0.00111486912451
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1HVV1		0.00111480275748
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N5MF41		0.000855631928401
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1XZN1	 Protease Do	0.0011144086837
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSG4	 Aspartyl glutamyl tRNA amidotransferase subunit C	0.00111433221282
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HVX2	 Putative GTP cyclohydrolase 1 type 2	0.00111428961493
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P58415	 Sulfopyruvate decarboxylase subunit alpha	0.00111425844901
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8V940	 MutT Nudix family protein	0.00111360549531
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J6L1		0.000474012054236
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRA3		0.0011125572182
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q088F4	 Drug resistance transporter, EmrB QacA subfamily	0.00111249201266
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q08382	 Molybdenum transport system permease protein ModB	0.00111217744419
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UKL3		0.000737447207247
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5UKL3		0.000373942842782
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q05098	 Ferric enterobactin receptor	0.00111129346014
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0DYV0	 Magnesium and cobalt efflux protein CorC	0.00111095241004
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M9J5S9	 Molybdopterin binding domain of aldehyde dehydrogenase family protein	0.00111089170135
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51366	 GDP mannose 4,6 dehydratase	0.00111084875348
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G1ZE91	 Outer membrane protein assembly complex, YaeT protein	0.0011108179969
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A1KWW5	 Staphylococcus aureus E 1, EDINA plasmid DNA, complete sequence	0.000970813149532
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7EUU9		0.00106858666637
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023LAR6		0.00110950074232
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZP13		0.00110950074232
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G3IRG3	 P2 GpU family protein	0.00110950074232
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G4PUX4		0.00110950074232
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4E9B0		0.00110950074232
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSZ1		0.00110950074232
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9DZP1		0.00110950074232
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G726		0.00110935976942
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WTM5		0.00110913520338
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V8EVN4		0.00110861889009
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W5VLQ9	 ABC transporter ATP binding protein	0.00110830781847
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNC0	 SMR type multidrug efflux transporter	0.00110773950133
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37751	 Putative glycosyltransferase WbbK	0.00110768974201
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G0EVT1	 D lactate dehydrogenase	0.00110751820965
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZQZ2		0.00110727044821
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZPF5		0.00110703046024
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EEM8	 Maltose operon periplasmic family protein	0.00110686226931
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6QI78	 RpiR family Helix turn helix domain containing protein	0.00110669091249
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6WYZ9	 Phage tail X family protein	0.00100964567551
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33362	 Putative osmoprotectant uptake system substrate binding protein OsmF	0.00110547109545
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5QX27	 Quinolinate synthase A	0.000942169933705
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FFD0	 D alanyl D alanine endopeptidase, penicillin binding protein 7 and penicillin binding protein 8	0.00110462524782
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJQ5	 Phosphatidylglycerophosphatase A	0.00110454027873
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULA6	 UPF0173 metal dependent hydrolase Msm_0779	0.00110415926502
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E5AMJ1	 5 methyltetrahydrofolate  homocysteine methyltransferase  homocysteine binding subunit	0.00110410069363
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AG19	 N5 carboxyaminoimidazole ribonucleotide mutase	0.00104011363322
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZRY0		0.00110384714378
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PXE1		0.00110345996095
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5BS88	 Aerobic glycerol 3 phosphate dehydrogenase	0.00110321545175
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN27	 Putative antimicrobial peptide ABC transporter, permease component	0.00110312348316
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I3GFM4		0.00110275018336
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ65		0.00110226165579
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q160T4	 Histidine  tRNA ligase	0.000986292141564
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A017Z9Z6		0.00110174313079
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSB1		0.00110161547315
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O34814	 Cell division ATP binding protein FtsE	0.00110160259509
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6V2	 Cof like hydrolase	0.0011015619013
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5VZ70	 Permease YjgP YjgQ family protein	0.00110100881529
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VCM5	 SsrA binding protein	0.00110094109419
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKZ4		0.00110079244241
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K7Q7R6	 Amino acid permease	0.00110075907693
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46187	 Protein RseC	0.00110049072617
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D0IYI4	 Response regulator receiver protein	0.00110043125396
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F5YQ07	 4Fe 4S ferredoxin, iron sulfur binding domain protein	0.00110035575228
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77596		0.00110034907515
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V7M2	 Cysteine synthase	0.00110002299889
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC67	 Glutaredoxin like protein NrdH	0.00109993966436
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88PE3	 RND efflux membrane fusion protein related protein	0.00109968674162
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X5U4	 4 phosphopantetheinyl transferase AcpT	0.00109962469604
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1KWF3		0.00109940512807
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1KC01	 Outer membrane protein	0.00109929430155
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q65Q81	 5 nucleotidase SurE	0.0010992554786
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P97089	 Electron transfer flavoprotein subunit beta	0.0010990123022
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27298	 Oligopeptidase A	0.00108280450349
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E7TI03		0.00109881096942
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DYP4	 Adenylate cyclase	0.00109823299511
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9WDD5	 Deacetylase	0.00109770535549
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8S7W9	Cm32 Um32 methyltransferase	0.00109747877396
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023Z1J3		0.00109744095164
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8YYB8		0.00109744095164
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E5ZTT6		0.00109744095164
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69430	 Sec independent protein translocase protein TatA	0.00109744095164
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DTM3		0.00109744095164
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YQW1		0.00109744095164
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8SUJ3		0.00109744095164
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6CST0	 Peroxiredoxin	0.00109730834142
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1M611	 4 hydroxythreonine 4 phosphate dehydrogenase	0.00109729366665
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7Q7F5		0.00109694725135
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6FYV1		0.00109648776855
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q93U24	 Major curlin subunit	0.00109597182051
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R6L8		0.00109554160667
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4G4F4	 Biotin requiring enzyme domain protein 	0.000989848701479
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F6GB14	 Multidrug efflux system transmembrane protein	0.00109544503666
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8STI1		0.00109525890531
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNJ8		0.00109487185541
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7LP59	 Bacteriophage N4 receptor, inner membrane subunit	0.00109420120179
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A034GSS9		0.000909590698658
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8JBM1	 Glycine betaine proline transporter, membrane component of ABC transporter	0.00109337676502
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I4SXS6	 Choline transport protein BetT	0.0010926943442
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK05		0.00109256595108
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M280	 RelA SpoT domain protein	0.000573821139558
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A6M280	 RelA SpoT domain protein	0.000518565703875
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27635	 Protein archease	0.00109223484885
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UND0	 Glycosyltransferase, GT2 family	0.001092016108
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9CHT4		0.000490119259953
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E0WQQ5	 Methionine import ATP binding protein MetN	0.00109147253282
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A8Z9	 Esterase YqiA	0.0010913253468
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P39636	 Amino acid permease RocC	0.00109112276695
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MCZ5		0.00109089841415
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4X058		0.00109075240271
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37003		0.00109042960406
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F2K1C2	 Cytochrome b	0.00108970885432
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q60759	 Glutaryl CoA dehydrogenase, mitochondrial	0.000691758808331
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q60759	 Glutaryl CoA dehydrogenase, mitochondrial	0.000375325108331
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SQE5		0.00108883357163
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJQ8	 3 dehydroquinate dehydratase	0.00108822487378
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AGQ2		0.00108814354488
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L3HWN4	 Inner membrane protein ybhI	0.00108778886181
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9GTY9		0.00104087183042
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O34125	 ATP dependent Clp protease proteolytic subunit 2	0.00108731423432
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQP3		0.00106427255322
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P0A345	 10 kDa chaperonin	0.000726514204569
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0A345	 10 kDa chaperonin	0.000360587741251
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UZN8		0.00108650377507
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5NZ17		0.0010022670896
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8U1E4	 Translation initiation factor 5A	0.0010862603143
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DZ15		0.00108594286425
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N338		0.00108564980936
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F8YFA3		0.0010856405113
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YZE2		0.0010856405113
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L6K7	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0010856405113
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5E562		0.0010856405113
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P42403	 Aryl phospho beta D glucosidase BglC	0.00108215337143
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5PBQ8	 Ribonuclease H	0.00104087183042
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LR38		0.00102410017878
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8G0E6	 Cell wall binding protein	0.00108473836699
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU05		0.00108468476232
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MMV7	 Peptide deformylase	0.00108446520158
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB42	 Multiple stress resistance protein BhsA	0.00108439637342
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FL97		0.00108430473169
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWX5	 Putative tape measure protein	0.00108425027827
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U3U8V5		0.000442827050665
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKE4	 Flagellar biosynthetic protein fliR	0.00108294438488
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LZ27	 Transcriptional regulator, TetR family	0.00108282919258
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PFV7	 Oligopeptide dipeptide ABC transporter, ATPase subunit	0.00108265419547
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CND6	 FDHD protein	0.00108228201951
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7VSF4	 3,4 dihydroxy 2 butanone 4 phosphate synthase	0.00108217671732
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6F2F7	 Sodium hydrogen exchanger	0.00108216944141
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y9H0		0.00108208217836
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HX91		0.00108106806984
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69825	 Mannitol specific cryptic phosphotransferase enzyme IIA component	0.00108005357255
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C6XQ34	 Prephenate dehydratase	0.00107993155337
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B0YLW6	 Cysteine desulfurase, mitosomal	0.00098502398208
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B0YLW6	 Cysteine desulfurase, mitosomal	9.07954744125e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VIN9		0.00107943592761
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MJM9	 DNA gyrase inhibitor	0.00107942008262
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L2Z1P6	 Evolved beta galactosidase subunit alpha	0.00107926688732
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B3PB28	 Membrane protein, PerM family	0.00107793277941
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1WPN7	 Peptidase C39, bacteriocin processing	0.0010776470379
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P45857	 Acyl CoA dehydrogenase	0.0010624229861
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1RTM0		0.0010036419839
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q3J9B9	 30S ribosomal protein S15	0.00107733077713
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZI26	 Probable fimbrial chaperone EcpB	0.00107728542352
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZAX7	 tRNA dihydrouridine synthase B	0.000980050965743
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q8ZAX7	 tRNA dihydrouridine synthase B	9.71747522144e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L2J8		0.00107695538722
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QFG9		0.000957993241809
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UVS6	 Exoenzyme S	0.00107685918567
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6RTW0		0.00107666930068
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C3SFW7		0.00107666302963
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E1TCG3	 ABC transporter related protein	0.00107662776323
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D2GMB8		0.000554045616458
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2GMB8		0.000264998864963
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACY2	 Putative NADH nitroreductase YdjA	0.00107613406341
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MS56	 Stage II sporulation protein D	0.00107611362215
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75995		0.00107555013967
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4X5I0	 Response regulator receiver modulated diguanylate cyclase phosphodiesterase	0.00107546134338
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HXI2	 Protein translocase subunit SecF	0.00107511547214
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_L7U4Q2		0.00107499162298
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33347		0.00107498667966
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UZ76	 TadG	0.00107483115803
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K9NJR2	 Universal stress protein	0.00107450288888
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HKX9		0.00107409114416
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L9C3K6	 ATP binding permease CydD domain protein 	0.00107409114416
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M2PHP8	 Galactitol utilization operon repressor 	0.00107409114416
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CT46		0.00107409114416
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0T014	 Ribosomal RNA small subunit methyltransferase B	0.0010473045287
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABQ5	 Dihydrofolate reductase	0.00106278492159
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P13512	 Cobalt zinc cadmium resistance protein CzcD	0.00107395296176
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15032	 Exodeoxyribonuclease 8	0.00107363534507
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI00022CA5D5	 1 deoxy D xylulose 5 phosphate synthase like	0.00106992181904
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J215		0.000839123237313
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F2J6W6	 Transcriptional regulator	0.000942068039768
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKI4	 Predicted phosphoesterase, YfcE	0.00107226784971
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_L1K6L8	 Methyl accepting chemotaxis protein	0.000429636457661
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IP39		0.00107215486358
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M3S1	 Transcriptional regulator, TetR family	0.0010720733302
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77402		0.00107200318407
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KSS7		0.00107183139451
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5R7J9	 HTH type transcriptional regulator MalT	0.00107157513511
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WXL8		0.0010713714731
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7ZA52	 Deoxyribodipyrimidine photo lyase PhrB	0.00107134662494
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77339		0.0010710782885
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C4W7M7		0.00107026086188
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YU10	Kdo2 lipid A phosphoethanolamine transferase	0.00107014809423
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LND3	 Orotidine 5 phosphate decarboxylase	0.00102452105523
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SKE6	 Iron dependent repressor	0.00106992243738
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P38684	 TorCAD operon transcriptional regulatory protein TorR	0.00106989489025
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Y5PEP3	 Serine aspartate repeat containing protein I 	0.00106961672871
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2UZH1	 Cyanophycinase	0.00106929600607
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWX6	 RDD domain containing protein	0.00106926723213
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A036SNN0		0.0010691735332
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R0X4	 Tail collar domain protein	0.00106901092307
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8CFH1	 Acetyl CoA carboxylase carboxyltransferase	0.000557021076995
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F8CFH1	 Acetyl CoA carboxylase carboxyltransferase	0.000511841803341
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LLK3		0.00106855511466
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A1J8	 Flagella synthesis protein FlgN	0.0010681758596
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MTL8	 Carbonate dehydratase	0.0010678692397
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI00037B67C2	 hypothetical protein	0.00106703166617
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VD85	 Lipoprotein	0.000926571881448
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U0VR29	 Transporter associated domain protein	0.00106668402769
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GCP8		0.000970813149532
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E6CDL3		0.00106614185804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0CF66	 Transposase InsE for insertion sequence IS3A	0.00106584245923
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTV4		0.000802836504392
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0GSA8	 Glycine D amino acid oxidase, deaminating	0.00106571745319
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D3SDU3		0.00105081160906
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1EYQ2	 Rtn protein	0.00106430095132
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3IGA3	 UPF0176 protein PSHAa1433	0.00106311914684
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJF1	 Geranylgeranylglyceryl phosphate synthase	0.00106290020301
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6UW63		0.00106278492159
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G4PXG0		0.00106278492159
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2XBP0		0.00106278492159
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V6XSK5		0.00106278492159
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W9F1U2	 Recombinase RecA	0.00106278492159
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5E314		0.00106278492159
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HWU3	 Chaperone CupB2	0.0010624229774
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76090	 Inner membrane protein YnbA	0.00106226370865
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4W1K2		0.00106159713377
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q216W2	 Transcriptional regulator, GntR family	0.00106128038894
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9K3C5	 B type flagellar hook associated protein 2	0.00106079857178
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZJZ3	 TonB denpendent receptor	0.00106031661089
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ66		0.00106010186058
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PMC7	 Molybdopterin guanine dinucleotide biosynthesis protein B	0.00105985654021
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E6CZE7	 4 phosphoerythronate dehydrogenase	0.00105958018989
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI0002B9D338	 hypothetical protein, partial	0.0010594343836
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IY26		0.00105930174555
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47157	 mRNA interferase YafO	0.00105864253416
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B8F6Y2	 L fucose mutarotase	0.00105861165377
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6T7G7	 UPF0227 protein KPN78578_10770	0.00101042457385
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KU47		0.00072636379533
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S0AHH6	 Membrane bound lytic murein transglycosylase B	0.0010577845106
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRQ7	 Xanthine dehydrogenase, molybdenum binding subunit apoprotein	0.00105760808906
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76505		0.00105748778301
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V6EI61	 Lactose permease	0.00105708188072
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M256	 Sporulation protein YtaF	0.0010568648349
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7ER35	 Signal transduction protein, FIST domain protein	0.00105056798518
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E7PX47		0.00105665187089
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E4REV8	 BirA	0.00105651737737
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1ADX2	 GDP mannose pyrophosphatase NudK	0.00105640735601
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O85746	 Tyrosine aminotransferase	0.00105557883673
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5ZZI2	 2 nonaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase	0.00105547694377
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4VS30	 Radical SAM domain protein	0.000896691166027
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VS30	 Radical SAM domain protein	0.000158251673275
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9KPB3	 GTPase Era	0.00105431264751
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U3U068	 D galactonate transport protein	0.0010537946644
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RBW7	 GTP cyclohydrolase II	0.00105321607455
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LM89		0.00105266123145
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02ID7	 7 carboxy 7 deazaguanine synthase	0.00105256583581
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N0Q208	 Maltose maltodextrin ABC transporter, permease protein MalF	0.00105244560495
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UYN1		0.00105211360273
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HKW1	 Transcriptional regulator	0.00105205594872
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76222		0.00105195517613
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C461		0.00105171424533
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6AIW9		0.00105171424533
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2ESQ2		0.00105171424533
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HVP3		0.00105126311201
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3TI51	 Short chain dehydrogenase reductase SDR	0.0010507822747
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CNT3	 Integrase	0.00105004344264
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4WAD2	 Phenylacetic acid catabolic family protein	0.00104933625463
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0KXX9	 Ion transport protein	0.00104926984822
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T8B1		0.00104898959702
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023L4E6	 Multidrug transporter membrane component ATP binding component	0.00104898056665
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPZ0	 Extracellular solute binding protein, family 1	0.00104888687367
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWX6		0.000924980008479
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADH6	 Type 1 fimbriae regulatory protein FimB	0.00104841555029
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XNT2		0.00104815722673
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02UC6	 Anaerobically induced outer membrane porin OprE	0.00104814286435
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1J8H6	 Asparagine synthetase	0.00104806539315
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SIZ1		0.00104787157922
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q53091	 Molybdopterin synthase catalytic subunit	0.00102826044716
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1U4R7	 Enoyl CoA hydratase isomerase	0.00104645748367
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q897P8	 D alanine  D alanine ligase A	0.0010462018043
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P46320	 Probable 6 phospho beta glucosidase	0.00104617219793
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8XCB3	 Valine  tRNA ligase	0.000834261361671
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XCB3	 Valine  tRNA ligase	0.00020694133072
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W0RN37	 DNA repair protein radA	0.00104580587488
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2QK28	 DNA helicase	0.000972826605605
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E2QK28	 DNA helicase	7.28460083341e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P72161	 D alanyl D alanine endopeptidase	0.00101528719339
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSR7	 CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.00104511949039
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5Z1T7	 Addiction module antidote protein, HigA family	0.00104483151842
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKK3		0.00104440520801
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RNR2	 Succinate dehydrogenase subunit C	0.00104412611946
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F6D6V6	 Cobalamin  biosynthesis CbiM protein	0.00104410468882
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SP93		0.00104396107692
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9RZ09		0.00104395781807
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KJS9	 D isomer specific 2 hydroxyacid dehydrogenase, NAD binding	0.00104387753392
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MKH7	 Short chain dehydrogenase reductase SDR	0.00104385828148
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IXZ2		0.000619414524858
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48KB4	 Tat  pathway signal sequence domain protein	0.00104356466574
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HTB6	 GDP 6 deoxy D mannose reductase	0.00104325376641
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FEM6	 Dual specificity RNA methyltransferase RlmN	0.000620887916785
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q6FEM6	 Dual specificity RNA methyltransferase RlmN	0.000417120076406
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W9S9	 GTPase HflX	0.00104313050294
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M0N8		0.000735704658897
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFW5	 Ribonuclease P protein component 1	0.000917859705009
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Z4XCQ6	 Putative cross wall targeting lipoprotein signal 	0.00104197722944
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2RRZ4	 ABC transporter component	0.00104093245513
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6GHK2		0.00104087183042
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0TKV8		0.00104087183042
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI000364E1C3	 hypothetical protein	0.00104087183042
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UXP2		0.000849870097231
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R4W4T4		0.00103917425853
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FDY0	 Cell shape determining protein MreC	0.00103900340397
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O53871	 Putative acyltransferase Rv0859	0.000665713635069
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O53871	 Putative acyltransferase Rv0859	0.00037328027256
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42590	 Inner membrane transporter YgjI	0.00103890064697
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P56453	 Glycine  tRNA ligase alpha subunit	0.00102402384469
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JNY1	 Membrane fusion protein	0.0010383915335
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q9YA67	 30S ribosomal protein S17e	0.0010382029283
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XQY4	 Cytochrome b561	0.00103805914517
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V416		0.00103804913367
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0A4H3	 Virulence factors putative positive transcription regulator BvgA	0.00103790297178
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D7HY96	 VacJ like lipoprotein	0.00103789331288
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU65	 Methyl accepting chemotaxis sensory transducer	0.00103776405947
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W310	 Major facilitator superfamily MFS_1	0.000776961266865
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5W310	 Major facilitator superfamily MFS_1	0.000260523895408
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PY44		0.00103737344221
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4X169	 GNAT family acetyltransferase	0.00103716961092
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8PSK7	 Short chain dehydrogenase reductase SDR	0.00103663216213
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47319	 DTW domain containing protein YfiP	0.00100737244479
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJH6	 Predicted acetylesterase	0.00103613597734
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q4ZNV9	 Histidinol dehydrogenase	0.000560619782974
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZNV9	 Histidinol dehydrogenase	0.000472282421374
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E3GC98	 Multidrug resistance protein MdtG	0.00103601181623
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D3NW22	 X Pro aminopeptidase	0.00103508677933
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L8N8P7	 HflK protein	0.00103479139066
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWF1	 AMP binding enzyme	0.00103383519232
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q32I01	 Cytochrome c biogenesis ATP binding export protein CcmA	0.00103382347428
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M799	 Signal transduction histidine kinase, LytS	0.00103357887265
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YUZ3	 Homoserine dehydrogenase	0.00103353169204
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4K8U2	 Thiopurine S methyltransferase	0.0010333910677
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WV68		0.00103335992028
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L543	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.000957203619401
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024H9L1	 Short chain dehydrogenase	0.00103292990772
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G7R7B9		0.00103283954954
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7IJX5	 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase	0.00103263096047
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75793	 Putative formate acetyltransferase 3	0.00101322118013
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32701	 Putative cyclic di GMP phosphodiesterase YjcC	0.00103178343247
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5SQS1	 Oligopeptide ABC transporter ATP binding protein	0.00103176816392
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P14205	 Putative esterase ComA2	0.00103077968792
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6AYC1	  binding domain containing protein	0.00103059886459
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M7P6	 Ribosomal protein alanine acetyltransferase	0.0010302506893
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KKG4	 Calcium binding EF hand domain protein	0.0010302506893
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E0P4H6		0.0010302506893
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q67JS5	 50S ribosomal protein L33	0.0010302506893
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWI4		0.00103015713685
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C181	 PTS system, galactitol specific IIB component	0.00103005422654
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LS13	 Sugar isomerase 	0.00102999112631
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N3I2		0.00100964567551
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UVW2		0.00102913322903
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3TH90	 Putrescine transport ATP binding protein PotG	0.00102911890516
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R5PFJ6	 Polar amino acid transport system substrate binding protein	0.00102901803521
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WV26		0.000617520290836
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I106	disulfide interchange protein DsbG	0.00102812415991
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P48632	 Ferripyoverdine receptor	0.00102778168623
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q59635	 Catalase	0.000931655402908
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q59635	 Catalase	6.82193024019e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q03JI6	 CRISPR associated endonuclease Cas9 2	0.00102738729525
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1WTC0		0.000993312681752
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5XA93		0.00090294163501
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L3I414	 2,3 diketo L gulonate TRAP transporter large permease yiaN	0.000358030381389
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45795		0.00102633281333
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YBG6	 Transcriptional regulator, MarR family protein	0.00102617172209
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5CYS5	 Phage tail fiber repeat family protein	0.00102603487356
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WPI1	 Coenzyme PQQ synthesis D	0.00102561770669
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0K7P2	 ABC type transporter, ATPase component	0.00102511199426
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZRN9	 UPF0114 protein YqhA	0.00102481896603
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q1J886	 UPF0298 protein MGAS10750_Spy0325	0.0010244010384
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O30853	 Pyruvate kinase I 	0.00102419191028
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUY4	 Major facilitator superfamily  transporter	0.00102414992642
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7NUS6		0.00102414256376
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWV1	 Diguanylate cyclase	0.00102411891316
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V1C0	 Transcription elongation factor GreA	0.00102406991847
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8RD50		0.000999649183674
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WPT6		0.00102400674573
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K5T8		0.00102384418883
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K4WN43		0.000539917473537
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DVU1		0.00102356006868
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZM17	 Chemotaxis protein	0.00102345265849
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP26		0.00102317597688
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8PGZ1	 Rubrerythrin	0.00102299157813
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P43334	 Phenylalanine 4 hydroxylase	0.00102271714874
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZQ2	 Protein CobW	0.00101240773294
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27336	 Holliday junction resolvase Hjc	0.00102264085232
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QIK4		0.00102236408033
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_K9ZKB4	 SNARE associated Golgi family protein	0.00102115043134
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8T226		0.0010199117456
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8A2B7		0.00101984411668
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2EES9	 Response regulator inhibitor for tor operon	0.00101984411668
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NHH6	 FwdG	0.00101984411668
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLL6		0.00101984411668
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M390	 Extracellular solute binding protein, family 1	0.00101969916453
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G5JVU3	 GBS Bsp like repeat protein	0.00101937267157
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C9R804	 MazG nucleotide pyrophosphohydrolase	0.0010191893211
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HMD5		0.0010180568251
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KKN4	 Transcriptional regulator, GntR family	0.00101706216097
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6UNL0	 Predicted periplasmic pilin chaperone	0.00101702188917
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3V233	 Peptidase	0.00101692384028
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39310		0.00101682508615
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5ITU2	 Transcriptional regulator, ArsR family	0.00101616420703
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9Z3A0		0.00101604682934
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NHF2		0.00101506068509
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7NHL2		0.0010148119911
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMR6	 GtrA like surface polysaccharide biosynthesis protein, GtrA	0.00101465302536
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V3S1	 Aminoglycoside response regulator	0.000938434828866
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8D954	 sn glycerol 3 phosphate import ATP binding protein UgpC	0.00101421078805
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P05804	 Beta glucuronidase	0.00101414108781
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M2NE11	 Tail assembly chaperone gp38	0.000764784723258
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C6S9		0.000694106188659
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C6S9		0.000319508125159
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45736		0.00101354939081
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I2JDD6		0.00101351805232
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W6IPV9	 Oligopeptide transport system permease protein oppC	0.00101350600017
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0VN20	 Aliphatic amidase	0.000900367108597
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q0VN20	 Aliphatic amidase	0.000113062225704
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5D8G3		0.00101342889386
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XV16	 TRAP dicarboxylate transporter, DctP subunit	0.00101320450379
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0MN68	 Peptidase P60	0.00101292907608
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77136		0.00101251359974
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K915		0.0010122843899
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G8LD16	 Cold Shock Protein	0.000926280436248
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPG6	 Hydrolase, TatD family	0.00101204811619
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5F9J0	 ADP L glycero D manno heptose 6 epimerase	0.000559506813148
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F9J0	 ADP L glycero D manno heptose 6 epimerase	0.000419386456596
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A5URF1	 Spermidine putrescine ABC transporter ATPase subunit	0.00101131936374
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3NIS0	 Proline specific permease	0.00101053794429
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5K1D1		0.00101050021523
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M0R3	 RND type efflux pump	0.00101002434019
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W5Y8Y3	 Polyprenyl synthetase	0.00100997859984
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNT5		0.00100964567551
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D5D1V5		0.00100964567551
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D8HE41		0.00100964567551
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1JD10		0.00100964567551
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_H6VX72		0.00100964567551
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51559	 Rhamnosyltransferase 1 subunit A	0.00100956476969
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2RQ17	 Glutathione transport system permease protein gsiC	0.00100934953618
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZSF7	 SadB	0.00100929597829
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1JK30	 Fatty acid oxidation complex subunit alpha	0.00100039409075
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8MM47	 Transcriptional regulator	0.00100899756029
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C6DYM5	 Anthranilate phosphoribosyltransferase	0.00100376360904
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I291	 UTP  glucose 1 phosphate uridylyltransferase	0.000657313781243
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9I291	 UTP  glucose 1 phosphate uridylyltransferase	0.000134619423398
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4LAD9	 Transposase for IS431	0.000776421250101
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1PCV1		0.000807716540409
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0A021DBD0	 D isomer specific 2 hydroxyacid dehydrogenase	0.00100766013829
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HS12	 ABC transporter, ATP binding protein, truncation	0.00100682752192
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04KY8	 Initiation control protein YabA	0.000684097682764
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q04KY8	 Initiation control protein YabA	0.000322570503357
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A4JKW7	 Major facilitator superfamily MFS_1	0.0010066593072
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77589	 3 propionate transporter	0.00100656527243
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C3MFX0	 UDP N acetylglucosamine 1 carboxyvinyltransferase	0.000992886951922
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8RX73	 Cytochrome C	0.00100646107263
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AUU2	 Phage major capsid protein, HK97 family	0.000963981536988
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D6ZZR1		0.00100625549012
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q47QB9		0.00100605822562
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P33883	 Acyl homoserine lactone synthase	0.000829232763642
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TX94	 3 isopropylmalate dehydratase small subunit 1	0.00100543234583
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3LIZ0		0.000868194119885
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C4LJY5	 Ribonuclease PH	0.000991548332426
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A031ANR6	 Paraquat inducible protein B	0.00100455618916
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYE0		0.0010045197312
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U5PDI4	 Glycosyltransferase	0.00100443365141
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4XQD7	 Hybrid sensory histidine kinase, in two component regulatory system with UvrY domain protein	0.00100410626247
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y0ZY08		0.00100333473538
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B9PK33	 Zn containing alcohol dehydrogenase	0.00100296651466
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C4ZLQ8	 Binding protein dependent transport systems inner membrane component	0.00100245608155
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZVQ2	 Primosomal protein 1	0.00100163023896
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F3EB79	 MerR family transcriptional regulator	0.00100151880579
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E1N6	 Bacterial regulatory s, tetR family protein	0.00100099564632
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAF8	 Arginine transport ATP binding protein ArtP	0.00100078968025
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76084	 Acyl coenzyme A thioesterase PaaI	0.00100070082634
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKI1		0.00100069381643
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F4A5L9	 PIS system, IIC component	0.00100057822567
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0V1S0		0.000664240575992
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F9L0G2		0.000807716540409
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KNT5		0.000999649183674
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3EXZ8		0.000999649183674
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6U6T7	 LemA family protein	0.000999649183674
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6ABT4		0.000999649183674
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XUN1	 Iron containing alcohol dehydrogenase	0.000999639623934
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U6C8Z8	 Transposase, truncated	0.000999539836765
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4Y9D9	 Peptidyl tRNA hydrolase	0.000999478565963
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B8IT59	 Glycosyl transferase group 1	0.000999396601473
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2LU18	 Alanine  tRNA ligase	0.000999268081555
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G0AE82	 Aldo keto reductase	0.000882519799427
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_G0AE82	 Aldo keto reductase	0.000116722043416
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F4FX21	 Transcriptional regulator, MerR family	0.000998729331654
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K5GQ46		0.0009480970783
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X2Y8	 30S ribosomal protein S20	0.000997767491096
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N8X4K5		0.00099745672877
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D8MY32	 Sucrose phosphorylase	0.000997282371009
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADK2		0.000964678860466
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EKK2	 Type I restriction modification DNA specificity domain protein	0.00099700886373
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PFK8		0.000952045075592
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRR5		0.00091206779496
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8A6H8	 Inner membrane protein CbrB	0.000996489498663
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S6B0N2		0.000996119623441
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O32119	 Putative nitrogen fixation protein YutI	0.000995880500322
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QF34		0.000764883087513
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39382		0.000995728923459
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVQ5		0.000779760676163
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25888	 ATP dependent RNA helicase RhlE	0.000954879598095
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I0ZSX5	 Transporter, major facilitator family protein	0.00099460691791
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q609F9	 Glutamate racemase	0.00099437876865
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48G15	 Transcriptional regulator ArgR	0.000993917286216
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VL85		0.000993901750132
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QU36	 Hydrogenase 4 membrane subunit	0.000993675882045
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8RRJ3	 Flagellum specific ATP synthase FliI	0.000993143446216
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5VZS9	 Ribosomal protein S12 methylthiotransferase RimO	0.000992097227247
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RCT3	 Transcriptional regulator, IclR family	0.000991954032856
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JG48	 ABC transporter	0.000991834533677
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P16670	 Cytochrome b562	0.000991207457085
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E1VBD1	 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase	0.00099087446642
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4KGU1	 Transcriptional regulator, LacI family	0.000990761265099
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TGU8	 Chorismate pyruvate lyase	0.000990696466968
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_H8L2K5	 Phage tail sheath protein FI	0.000990670361145
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02H50		0.000990603325458
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3EVF6		0.00087038420303
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E6BMR9		0.000989848701479
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YRB6		0.000989848701479
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8RWG3	 DnaK suppressor protein	0.000989388927063
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44051	 Short chain fatty acids transporter	0.000769237791902
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P44051	 Short chain fatty acids transporter	0.000220104543517
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75684		0.000493118057491
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6W3N1	 Phosphate ABC transporter, inner membrane subunit PstA	0.000989079224915
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LIC7		0.000989067031434
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6U6T5	 Major facilitator superfamily MFS_1	0.000988306525653
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FFY2		0.000988274310485
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M433	 Transglutaminase domain containing protein	0.000988070547046
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A4K3		0.000987993526013
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M4ZMN9	 Gas vesicle structural protein	0.000987656345551
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C5BDM9	 DNA mismatch repair protein MutL	0.000987525069028
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CR18		0.000987434436356
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02EP8	 tRNA sulfurtransferase	0.000987031581017
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SKE5		0.000987002853236
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKX6		0.000986501468827
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M3I8	 dTDP 4 dehydrorhamnose reductase	0.000985372739281
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZQZ8	 Nicotinate nucleotide adenylyltransferase	0.000985137023423
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V962		0.000984790541389
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW06		0.00098476154801
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YV14		0.00086862040909
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02U97	 Putatitve transcriptional regulator	0.000874433843927
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q984K6	 Phosphoribosylformylglycinamidine cyclo ligase	0.000977463329191
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51468	 Flagellar biosynthetic protein FliP	0.000983978254273
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0DC76	 N utilization substance protein B homolog	0.000742151177465
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0DC76	 N utilization substance protein B homolog	0.000241542027634
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A037YH66	 UDP pyrophosphate phosphatase	0.000983469682076
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WSC8	 OmpA MotB domain protein	0.000949682938516
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R5B4	 Aminotransferase	0.000983273007884
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G0XA87		0.000982923270903
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR67	 Accessory gene regulator B	0.000982913335252
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NHD9	 Translation initiation factor 2 subunit beta	0.000982502305529
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I633		0.000981799152378
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LQH3		0.000981662144308
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P29365	 Homoserine dehydrogenase	0.0009773780862
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AA65	 Inner membrane protein YqjA	0.000981555102269
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H5XUP2	 Transcriptional regulator containing an amidase domain and an AraC type DNA binding HTH domain	0.000981541244983
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJ31	 Cytochrome c553i	0.000981489003331
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0WMZ7	 tRNA pseudouridine synthase B	0.000981465406064
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY49	 Transcriptional regulator, TetR family	0.000981075619983
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P30012	 Nicotinate nucleotide pyrophosphorylase [carboxylating]	0.000980986607389
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2N6Z5		0.000980736807984
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S0WAS7	 HTH type transcriptional regulator CynR	0.000980625561023
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MV57	 IS1016 transposase	0.000980317924379
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A8GHR1	 Putative multidrug resistance protein MdtD	0.000980310774502
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69433	 Biofilm PGA synthesis protein PgaD	0.000980244294756
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5UM94	 GntR family transcriptional regulator	0.000980239194339
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5MZW5		0.000980238519916
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K4R3		0.000980238519916
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPM6		0.000980238519916
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6ABL2	 DNA replication and repair protein RecF	0.000980238519916
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DV02		0.000980238519916
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SSX9		0.000980001219238
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V8H0	 Probable intracellular septation protein A	0.00097992204233
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4KFA5	 Glycerophosphodiester phosphodiesterase family protein	0.000978632761149
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I4D1N3	acceptor oxidoreductase, beta subunit, pyruvate 2 ketoisovalerate family	0.000978416641131
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SUT1		0.00097831696049
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88BC2	 Phospholipase D family protein	0.000977961674163
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2DZ17		0.00097785279151
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SQ57		0.00070604592693
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNB5	 Cobalt ABC transporter, permease component, CbiM	0.000977263823145
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MEC2	 Extracellular solute binding protein, family 1	0.000977256970811
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37926	 Fimbrial like protein FimF	0.000976796091883
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7I751	 NADH quinone oxidoreductase subunit N	0.000892927386968
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7I751	 NADH quinone oxidoreductase subunit N	8.35799400221e-05
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI0003700606	 hypothetical protein	0.000930593839788
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XJK8	 Guanylate kinase	0.000967786998774
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7Y3N0	 Secretion protein HlyD family protein	0.000974438344393
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83J60	 HTH type transcriptional regulator DctR	0.000974353144665
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I684		0.000974330588474
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XTG7	 Transcriptional regulator, LacI family	0.000974308009263
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IUV8	 TrbC, sex pilus assembly and mating pair formation protein	0.000831776957604
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S933	 Transcriptional regulator	0.000974084476759
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M029	 GCN5 related N acetyltransferase	0.000974043936769
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZLY3	 Mobile element protein	0.000974011785582
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NRQ9		0.00045892985251
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1VT74	 Transposase, IS4 family	0.000924706249788
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U0EAS4	 Adenine deaminase	0.00097373405435
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5Y961	 Phage terminase	0.000973352314983
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P67702	 Antitoxin HigA	0.00097315810883
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N3GRF4	 Type VII secretion system , usher family protein	0.000972712998255
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I1B3N6		0.000972672747266
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K8M4	 ABC type nitrate sulfonate bicarbonate transport system, ATPase component	0.000972652117145
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S5RLF1	 MarR family transcriptional regulator	0.000972421121624
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45604	 PTS system N acetylglucosamine specific EIICBA component	0.000972206454647
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZVR4		0.00097171422718
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P05823	 Transposon Tn2501 resolvase	0.000971015145102
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABR3	 DNA damage inducible protein I	0.00097063621985
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B0KMS4	 Permease for cytosine purines uracil thiamine allantoin	0.000970544257101
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J5W8	 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.000970164285715
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N4M678		0.000969985939964
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P05447	 ATP synthase subunits region ORF 4	0.000969920310178
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L1GDG6	 Cytochrome C and Quinol oxidase polypeptide I family protein	0.000969776771579
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VFG0	 DNA replication and repair protein RecF	0.000969625996324
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32053	 Prophage CP4 57 integrase	0.000969158598426
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5F569	 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.000957922822597
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q89AP7	 Acetolactate synthase large subunit	0.000881643940739
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q89AP7	 Acetolactate synthase large subunit	7.09519097352e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0Z1	 Methyl accepting chemotaxis sensory transducer	0.000968402212373
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27185	 tRNA  2 O) methyltransferase	0.000968396956248
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N3K3R3	 Oligopeptide dipeptide ABC transporter, ATP binding , C terminal domain protein 	0.000968205627221
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8AA27	 Methionine aminopeptidase	0.000968113724577
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5MQG0	 Putative transport domain protein	0.000968010333326
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WR12	 ABC transporter related	0.000967792594897
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L8NEI8	 Lipopolysaccharide kinase  family	0.000967593888177
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SWY9	 Phosphofructokinase	0.000966565870595
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E0C1		0.000966375280366
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M0X9		0.000966360766195
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MQI8	 Monosaccharide ABC transporter substrate binding protein, CUT2 family	0.00096632178951
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZS9		0.000966248680936
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q161C9		0.000300489784379
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3S8C7	 Hypoxanthine guanine phosphoribosyltransferase	0.000965945643712
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y6TZE6		0.000788785683993
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T8LVX5	 N acetylneuraminate epimerase	0.000965628965771
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76513		0.000965552701751
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4VVH3	 MpaA family protein	0.000965459488819
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PMZ8	 Alpha glycerophosphate oxidase	0.000965104917079
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H1FAF7		0.000965064913382
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRP7	 Electron transport complex subunit RnfG	0.000965054600144
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9BLG8	 Phage shock protein A, PspA	0.000964934552446
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3WJF6		0.000788785683993
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXF2	 Electron transfer flavoprotein, alpha subunit like protein	0.000964461503097
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P44808		0.000516378885399
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44808		0.000447911812768
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87F08	 Anhydro N acetylmuramic acid kinase	0.000964246025658
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRA3		0.000804046380393
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HEV8		0.000870559754495
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02H49		0.000963001035725
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHB8	 Glycoside hydrolase, family 16	0.00096291146512
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_X2I3A5	 Biotin  protein ligase	0.0009627726609
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MTL3		0.000961777075005
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4M4X4		0.000961698836613
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7NUM7		0.00096156731001
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D0ZSZ0		0.00096156731001
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RCV7		0.00096156731001
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A8H6	 Guanylate kinase	0.00096156731001
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5LXA3	 Glycosyl transferase family protein	0.000961159548995
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5QW86		0.000742386526114
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6D178	 23S rRNA  C(5)) methyltransferase RlmD	0.000960612633231
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q54433	 Probable phosphopantothenoylcysteine decarboxylase	0.000757054217556
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q54433	 Probable phosphopantothenoylcysteine decarboxylase	0.000203557595873
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_H0PUC5	 Two component heavy metal response transcriptional regulator, winged helix family	0.000487751534064
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_H0PUC5	 Two component heavy metal response transcriptional regulator, winged helix family	0.000472697602084
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3L8X2		0.000959704058974
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6SZZ6	 Glutathione synthase	0.000959600294932
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P96704		0.000958999211758
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33913		0.000958969086092
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HFG1		0.000958617980839
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LLH9		0.000958508904899
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J2ERM5	 Lipid A biosynthesis lauroyl acyltransferase, putative	0.000958094024246
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R8A0V4		0.000957031615154
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNE2	 Lipopolysaccharide cholinephosphotransferase, LicD family	0.000956926664637
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32155	 Fructose like phosphotransferase enzyme IIA component	0.000956862410584
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1KAD0	 GTPase Obg	0.000956854693156
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31448		0.000956393213841
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZSY7	 Putative transcriptional regulator	0.000921461210796
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L9BSL0	 Penicillin binding protein activator LpoA	0.000956193943871
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A7GHG0	 CBS domain protein	0.000955987049904
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UZP4		0.00095593819322
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LZT7		0.000955588393843
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6S279	 Flagellar hook associated protein FlgL	0.000955239673807
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P20580	 Anthranilate synthase component 1	0.000897263880529
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024EDR3	 Malonate decarboxylase, alpha subunit	0.000954762636328
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPU7	 ATPase associated with various cellular activities, AAA_5	0.000954370263706
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIV4		0.000954233514933
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9CGS5	 Single stranded DNA binding protein 1	0.000954184742848
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9G0U0	 General secretion pathway protein G	0.000954049984117
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F7IWE7		0.000954015152805
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S5VB68	 Extracellular solute binding protein family 1	0.000953991986
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K4VY87		0.000953259478077
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E1VH08	 Exodeoxyribonuclease III	0.000952767286654
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S4X6Z0		0.00095268669504
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9RZ40	 Transport protein	0.00095261728403
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY09	 RNA polymerase, sigma 24 subunit, ECF subfamily	0.000952495920299
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M410		0.000952495920299
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1EXI9		0.000952495920299
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V041	 Glycine glutamate dipeptide porin OpdP	0.000951540178152
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36566	 Protein SmtA	0.00095075053646
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P33642	 Probable D amino acid oxidase PA4548	0.000950575569701
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D9PXM6	 Predicted serine threonine protein kinase	0.000950263689243
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6UAR8		0.000846397501146
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q75SP7	  stereoselective amidase	0.000949416036673
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4R862	 Sensor protein RstB	0.00094903517389
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MML8		0.000948397141219
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J9ZMG3	 Sulfatase	0.000948046525796
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HEK1	 Bacterial type II secretion system domain protein F	0.000947830219892
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQ02	 Phage protein, HK97 gp10 family	0.000947428436847
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27297	 Protein bax	0.000947380135358
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PMS2	 Chromosome partition protein Smc	0.000947254091434
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76180	 Inner membrane protein YdgK	0.00094714463404
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0K1X4	 30S ribosomal protein S14	0.000564047863417
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0K1X4	 30S ribosomal protein S14	0.000382441543756
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULY1	 Photosynthetic reaction centre cytoplasmic domain containing protein	0.000946283610853
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98P17	 Mll9648 protein	0.000946224463598
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF42	 Inner membrane protein YijD	0.000946137333368
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PTS8		0.000946129538095
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q6LP67	 Putative reductase PBPRA2527	0.000946016212971
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYR2	 Extracellular solute binding protein, family 5	0.000945890474808
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B5XNE4	 3 dehydroquinate dehydratase	0.000945640729308
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X9A9	 Succinate dehydrogenase hydrophobic membrane anchor subunit	0.000707379681791
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1S5	 Transcriptional regulator, AraC family	0.000945544103865
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_UPI00036F8D63	 acriflavine resistance protein B, partial	0.000576089820792
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI00036F8D63	 acriflavine resistance protein B, partial	0.000366566974518
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L1FLT9	 Putative permease perM 	0.000945397664502
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P40695	 Phospholipase C accessory protein PlcR	0.000945361119388
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FDP2		0.000944767497849
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E4RAI6	 Choline carnitine betaine transporter	0.000739843512984
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E4RAI6	 Choline carnitine betaine transporter	0.000204693036494
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJQ1		0.000944041307512
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E3M3	 RNA binding protein	0.000943810116765
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9UUZ1		0.000943777846631
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A024L4D8	  S malonyltransferase like protein	0.000943594089261
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5ISW1		0.000943594089261
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z2N7		0.000943594089261
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GDA9		0.000943594089261
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9UCI2		0.000943594089261
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q7M7C0	 Biopolymer transport exbD transmembrane protein	0.000943594089261
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HVI1	 Cyclic diguanosine monophosphate binding protein PA4608	0.000943594089261
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U5UT50		0.000943594089261
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K1E3		0.000943594089261
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6G3H3	 FAD binding domain protein	0.000943453615097
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SW31	 Protein AmbD	0.000943329861605
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97L15	 Permease	0.000943047752196
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44874	 Acetate CoA transferase subunit beta	0.000907620202624
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6ZTT1	 Outer membrane usher protein fimD homolog	0.000942762737733
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4K6K6	 Glutamate aspartate periplasmic binding protein, GltI family	0.00094223237723
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C3MH15	 FAD dependent oxidoreductase	0.000942118778229
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E4RCX8	 Crc	0.000941580282981
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I7CFF2	 Methionine aminopeptidase	0.000941555772015
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2DXA7		0.000651384306779
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3MAB2	 Resolvase	0.000941412839284
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HP95		0.000940950515199
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WQC6		0.00056326228143
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J7M136	 Competence protein	0.000940710577034
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI000373AEE1	 hypothetical protein	0.00094068106194
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SIT6		0.000940120237692
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3KF35	 Glutamate  tRNA ligase	0.000872004438723
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q3KF35	 Glutamate  tRNA ligase	6.78981624432e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3UWF3	 Rieske domain containing protein	0.000939539175116
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87UP6	 Polyphosphate kinase	0.000826017663683
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q87UP6	 Polyphosphate kinase	6.23238071286e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q87UP6	 Polyphosphate kinase	5.07359635921e-05
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRW1		0.000659899134319
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8RQL9	 Isocitrate dehydrogenase [NADP]	0.000900541997573
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RRB9	 Transglycosylase SLT like protein	0.000919183957015
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5BM48	 Ethanolamine ammonia lyase, large subunit	0.00093813410675
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF81	 UPF0719 inner membrane protein YjfL	0.000937882228545
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D1BKQ4	 H+ gluconate symporter family protein	0.000937869744841
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZE7	 Probable chromosome 2 partitioning protein ParB	0.00093768441098
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5ST79		0.000331369505345
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P23101	 Toluate 1,2 dioxygenase electron transfer component	0.000919676973712
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9I6M4	 5 aminovalerate aminotransferase DavT	0.000453855095914
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I6M4	 5 aminovalerate aminotransferase DavT	0.000419711585645
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M9G8	 Signal peptidase I	0.000937371515525
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P95646	 Anthranilate synthase component 1	0.000884044675065
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S4X6I5	 Bifunctional autolysin	0.000937049532866
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SME8		0.000936865134077
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9K4A6	 Non homologous end joining protein Ku	0.000936673909872
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G7SEB9		0.000936506922665
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8LS47		0.000936299370743
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H8L8P6	 PTS system, mannose fructose sorbose specific IID component	0.000936165074732
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W9EH11		0.000926280436248
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6A8L3	 Sigma factor PvdS, controling pyoverdin biosynthesis	0.000935805237892
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q48708	 Glutaredoxin like protein NrdH	0.000480783655005
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q48708	 Glutaredoxin like protein NrdH	0.000454795349329
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_UPI000255867E	 2 oxoglutarate dehydrogenase E1 component, partial	0.000935408085648
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZRQ9		0.000934956126374
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X475	 Truncated map w protein	0.000934857106959
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZTP4		0.000934857106959
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3ZUW1	 Pyridine nucleotide disulfide oxidoreductase	0.000934857106959
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CQH1	 Type I restriction enzyme R protein	0.000934857106959
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6A9U4	 tRNA specific adenosine deaminase	0.000934857106959
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0KB39	 Acyl CoA dehydrogenase domain protein	0.000934311960489
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AGA9		0.000577737427847
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7INL3	 Integration host factor subunit alpha	0.000933972035133
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9KFG8	 Phage protein	0.000933890771246
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37903	 Universal stress protein F	0.00093378008264
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7ZEB4	 TatD family deoxyribonuclease	0.000933765982252
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0C5	 Metallophosphoesterase	0.000933203357118
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C5AQC0	 DNA helicase, ATP dependent resolution of Holliday junctions, branch migration	0.000933086656001
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8H1K8	 Chemotaxis transducer	0.000932959409317
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X5H4		0.000901469353138
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8V3S7		0.000932743203166
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E3R8	 Carbohydrate kinase PfkB family	0.000932622869121
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K9NRT8	 GntR family transcriptional regulator	0.00093255314187
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5BS31	 Sigma54 specific transcriptional regulator, fis family	0.000932529837471
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULP7		0.000932412641153
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4KE37		0.000931879986746
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M9KGL8	 Alpha beta hydrolase family protein	0.000931239152096
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q893C4	 Dipeptide transport ATP binding protein dppD	0.000930366711089
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IUJ0	 SirA family protein	0.00070604592693
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q18BQ3	 UPF0271 protein CD630_13840	0.000930227562186
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5F9H5	 Glutaminase	0.000930103142661
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P31049	 Probable fatty acid methyltransferase	0.000929353157176
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWS8	 TPR repeat containing protein	0.000929311788368
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJA1		0.000700036355679
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V3AA34	 Inner membrane metabolite transporter ydjE	0.000928921506278
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUC6	 HIRAN	0.000928842732571
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5GWV4	 50S ribosomal protein L15	0.000928453976086
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSL1	 30S ribosomal protein S5	0.000927621708931
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_UPI0000164CD9	 putative transposase	0.000927295067665
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44528	 CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.000909405193056
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LKP1	 AraC family transcriptional regulator	0.000926790566299
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WYR0		0.000926673537865
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M904	 Protein FdhD homolog	0.000926656809429
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8KA69	 DNA binding protein HU	0.000926592393964
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D3RSC1	 Channel protein, hemolysin III family	0.000926455886608
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B9G9		0.000926280436248
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XZK1		0.000926280436248
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HEV4		0.000926280436248
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K5HVD5		0.000926280436248
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1LF99	 Transcriptional regulator, BadM Rrf2 family	0.000926280436248
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5GV64	 SugE protein	0.000926280436248
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTF4		0.000926280436248
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J3JP50		0.000925927740026
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52125		0.000925857528014
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E4PKD1	 Adenylate guanylate cyclase	0.000925710564615
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7I2L4	 Colicin V producing membrane protein	0.00092557281178
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4UHR1	 K H(+) antiporter NhaP2	0.000925007242813
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U731		0.000924953131893
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABH6	 Rod shape determining protein MreD	0.000924786188939
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4QXM9	 Tetraacyldisaccharide 4 kinase	0.000924731784485
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAY2	 Biofilm regulator BssR	0.000924390571922
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23862	 Primosomal replication protein N	0.000923532047871
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RP03		0.00085072361974
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q887V6	 Protein CysZ homolog	0.000923279096806
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S1SCM6	 Short chain dehydrogenase reductase SDR	0.000923090727152
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E6W7Q1	 Spore coat U domain protein	0.000923013025103
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75770	 Inner membrane protein YbhN	0.000922557119649
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76578		0.00092226854777
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABV0	 Protein TolQ	0.000922128999947
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HT80	 DNA polymerase I	0.000908697866261
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2S8X6		0.000920738489641
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6AS38		0.000920612939969
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWD2	 Quinol oxidase subunit II	0.000920339511756
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1K712	 IS605 OrfB family transposase	0.000920322597081
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6LVU4	 Predicted protein	0.000686833792861
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8SDX0	 Anti repressor	0.00091982014574
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A022NVZ1		0.000910456628642
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2UWK2	 Probable membrane protein	0.000919427802458
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q16DG2	 Flagellar hook basal body complex protein FliE	0.000919009589934
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FA84		0.000918862830373
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A017LCS6	 Radical SAM superfamily protein	0.000918156962607
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NH93		0.000917873993212
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B2UVS5	 Purine nucleoside phosphorylase	0.000917859705009
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C1CKL8	 Conjugative transposon membrane protein	0.000917859705009
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q0SNB1	 50S ribosomal protein L33	0.000917859705009
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0AJL5		0.000917859705009
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q834F4	 UPF0122 protein EF_1701	0.000917859705009
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PTW1		0.000917373951965
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A1WV96	 50S ribosomal protein L17	0.000604061515263
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1WV96	 50S ribosomal protein L17	0.000311619035653
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6T4V9	 H Cl( ) exchange transporter ClcA	0.000915332620241
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28905	 DNA polymerase III subunit chi	0.000915260416279
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TKG9		0.000915120515301
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XDS6	 Leucine efflux protein	0.000914923455203
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GI98	 Glutamate ammonia ligase adenylyltransferase	0.000914878276567
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC51	 Zinc uptake regulation protein	0.000914830276417
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5J2P0	 HTH type transcriptional regulator GmuR	0.000914777968623
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6A8J6	 Flagellar hook basal body protein	0.000914348247784
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HXH7		0.000914262699315
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G7D6B1		0.000910422341065
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A6M3	 Disulfide bond formation protein B	0.000913834004548
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57936		0.000913672425569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEE1	 Protein DcrB	0.000913350920755
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U4Q8Z1	 Endonuclease III	0.000912826363383
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI0000379465	 hypothetical protein	0.000782965131074
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2KZM3	 Integration host factor subunit alpha	0.00091262364209
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K1CPP9		0.000912600936713
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZT41		0.000912534198195
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F9KIP1	 Conserved domain protein	0.000912348508878
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4Z9R0	 Cell surface protein	0.000912099617447
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4Y2D8		0.00091206439204
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0SA63	 Flavin binding monooxygenase	0.000911851641856
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VMN5	 Flagellar protein FliJ	0.000911643950804
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2DYY9	 Bacterial type II and III secretion system family protein	0.000911269878031
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F8EUQ1	 Nitrogen fixation protein NifX	0.000910378696475
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W7R4	 Regulatory inactivation of DnaA Hda protein	0.000910104423703
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZKE3		0.000909609155143
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4M827		0.000909590698658
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4EIZ6		0.000909590698658
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C7X1		0.000909590698658
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9UZM4		0.000909590698658
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SMQ9	 4Fe 4S ferredoxin iron sulfur binding domain containing protein	0.000909590698658
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5Q502	 Cytochrome c heme lyase subunit CcmF	0.000909567651587
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_UPI000369E51E	 hypothetical protein, partial	0.000639016250329
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75968		0.000908801958549
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2LAK5	 Short chain dehydrogenase	0.000908656748603
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97EW9	 Ribonuclease M5	0.000908609125958
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5E7Z5		0.000908516421322
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTZ1		0.000908233979881
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46890	 Putative aldolase class 2 protein YgbL	0.000908124172574
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0TQG4	 Porphobilinogen deaminase	0.000907981918728
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A1T0		0.000907889156411
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q3AEQ2	 3 isopropylmalate dehydrogenase	0.000533258469947
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3AEQ2	 3 isopropylmalate dehydrogenase	0.00032318672648
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P63747	 Ethanolamine utilization protein EutS	0.000907780567918
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVF9	 Response regulator receiver and SARP domain protein	0.000907611507798
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8NWI4		0.000907587923404
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SJB9		0.000907551257627
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G3XN37		0.00090698914614
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P71296		0.000906895864734
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I0H4	 Flavohemoprotein	0.000906864204295
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5E2D7		0.000788785683993
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P20576	 Anthranilate synthase component 2	0.000875241692599
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEL2	 Formate dehydrogenase, cytochrome b556 subunit	0.000905390545337
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A2T5	 Multiple antibiotic resistance protein MarR	0.000905321786265
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZA0		0.000905216091569
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GKC1	 L threonine aldolase	0.000905199018097
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q83EL0	 Chaperone protein HtpG	0.000904132954037
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FF72		0.000903471551996
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q14K07	 ATP synthase gamma chain	0.000903303454421
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYU1	 Phage related protein	0.000903053217022
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O83296	 Protein Soj homolog	0.000902875732368
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0LUK3		0.000631028547195
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2R3	 Signal peptidase I	0.000902171605403
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K0MYC6	 N acetylgalactosamine specific phosphotransferase enzyme IIB component 2	0.000901519898091
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89GJ0	 ABC transporter permease protein	0.000901473402797
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMZ0	 Preprotein translocase subunit SecG	0.000901469353138
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C4ZBU2	 50S ribosomal protein L36	0.000901469353138
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J1AK75		0.000901469353138
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7DA69		0.000901469353138
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U4KCQ5	 Isoleucine  tRNA ligase	0.000901372146946
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V4W0		0.000901347943124
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S4X4D7		0.000901226041565
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K0ELU4	 ABC transporter like protein	0.000900585934465
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D0JET7	 Sodium serine  transporter	0.000900025441865
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SSA5		0.000782445885104
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M4TFL9	 Protein lysine acetyltransferase	0.00089945016778
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48EI9		0.000899425883752
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQV8	 Phosphomannomutase	0.000898768345766
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4X5S3	 Type 4 fimbrial biogenesis protein PilO	0.000866377269772
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AM34	 Phosphohistidine phosphatase	0.000898009642192
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P22983	 Pyruvate, phosphate dikinase	0.000596161341159
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P22983	 Pyruvate, phosphate dikinase	0.000203856059009
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P22983	 Pyruvate, phosphate dikinase	9.13241701607e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TYV1	 Phage associated cell wall hydrolase	0.000897462822678
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PG71	 Multi sensor hybrid histidine kinase	0.000897269159674
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76344	 Metal binding protein ZinT	0.000897193254653
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0RA50	 Alcohol dehydrogenase, zinc containing protein	0.000897008715877
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P13794	 Outer membrane porin F	0.00089700437951
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q82S57	 L sorbosone dehydrogenase	0.000896398235053
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A7GB27	 Transcriptional regulator, AraC family	0.000896097218171
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P04825	 Aminopeptidase N	0.000896085667935
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J3RWH0	 WbhQ	0.000895831201736
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D5HFR4	 Alpha galactosidase	0.00089574049744
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2NYD7	 Indole 3 glycerol phosphate synthase	0.00087276863072
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WPA8		0.000633114195085
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J328		0.00084554563487
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4KX43	 Permease, YjgP YjgQ family	0.00089522472965
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M060	 PfkB domain protein	0.000894730684911
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J5Y2	 Putative transcriptional regulator	0.000894457134712
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q8VYF5	 N carbamoylputrescine amidase	0.000881238056261
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q82UZ9	 RNA pyrophosphohydrolase	0.000893886791605
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWW1	 GCN5 related N acetyltransferase	0.000893491748238
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8YZJ6		0.000893491748238
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D1QDJ9		0.000893491748238
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAM5	 Hydrogenase isoenzymes formation protein HypC	0.000893491748238
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36675	 Alternative ribosome rescue factor A	0.000893491748238
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8T2L5		0.000893491748238
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88NC4	 GDP mannose 6 dehydrogenase	0.000893325211081
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUJ9	 DegV family protein	0.000893041412595
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULF4	 Predicted metal dependent hydrolase, cyclase family	0.000892939702263
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4X2C4	 Vanillate porin OpdK	0.000892893054956
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RR73		0.000892255673769
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C8UCL7		0.000892201996048
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MW40	 SpoIIIAH like protein	0.000892011571149
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY79	 Lysine exporter protein 	0.000891670773207
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUL2		0.000891556216365
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0A028ZLF9	 Aspartyl glutamyl tRNA amidotransferase subunit C	0.000891449734579
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI0003673956	 cell division protein FtsL	0.00060488547785
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16552	 Raffinose permease	0.000891254256706
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6ALT5	 Ferrichrome iron receptor	0.000891248533711
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57I24	 Small heat shock protein IbpA	0.00089102307237
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJC2	 Predicted phosphotransacetylase	0.000890823042954
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1B5		0.000890798480173
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2N7H7	 Aspartate kinase	0.00089056018243
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WE51	 Inner membrane peptidase, Serine peptidase, MEROPS family S49	0.00089050077406
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J4Q5	 Putative Transcriptional regulator	0.000890488888643
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DTI5	 Iron chelate uptake ABC transporter, FeCT family, permease protein	0.000889502328465
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0VN76	 PhoH family protein	0.000889103082913
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39832	 High affinity zinc uptake system membrane protein ZnuB	0.000888495482507
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C9WZF0		0.000888174321366
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B0UIS6	 Glutathione S transferase domain	0.000888158736788
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E6Y0	 Lysine arginine ornithine binding periplasmic family protein	0.000888100950879
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZ68	 Histidinol phosphate aminotransferase 2	0.000875462014844
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q57466	 Flagellar basal body rod protein FlgC	0.000887127931625
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27843	 Inner membrane protein YigG	0.000887056192251
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V7ZGN1	 ABC transport system permease protein	0.000886869423521
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0KKZ8	 Fumarate hydratase, class I	0.000586858705605
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0KKZ8	 Fumarate hydratase, class I	0.000229051367001
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A0KKZ8	 Fumarate hydratase, class I	7.0604592693e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8PQM8	 FAD dependent oxidoreductase	0.000886149426683
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2LUH8		0.000885807461338
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5KKL4		0.00088565410133
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8RF80		0.00088565410133
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9UEZ1		0.00088565410133
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N3T8R5		0.00088565410133
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V8RB85	 ATP dependent DNA helicase DinG	0.000885652173825
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7GYQ7	 4 diphosphocytidyl 2 C methyl D erythritol kinase	0.000885541793494
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P23621	 Phosphate regulon sensor protein PhoR	0.000885453890531
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVP9	 Phage replisome organizer, putative	0.000885448936583
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HT89		0.000885425042157
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5XYC7	 Isocitrate dehydrogenase kinase phosphatase	0.000884949607086
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5BQ57		0.000884092399815
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O08385	 ATP phosphoribosyltransferase	0.000883841824416
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V5XTD8	 Periplasmic ribose binding protein	0.000883549458703
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J5X4	 Integrase recombinase	0.000883547643764
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M156		0.000883121753551
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q47AY5	Oxidoreductase FAD binding region	0.00088301474689
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7VK48	 GTP cyclohydrolase 2	0.000882555096115
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4WYC3	 Aspartyl asparaginyl beta hydroxylase like dioxygenase	0.000882112566295
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E8U7S3		0.000880940843118
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P25906	 Putative oxidoreductase YdbC	0.000880896666395
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZJJ2	 Cyclic pyranopterin monophosphate synthase accessory protein	0.000646655190921
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A7ZJJ2	 Cyclic pyranopterin monophosphate synthase accessory protein	0.000219488190331
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V600		0.000880759775282
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L7V6	 Holo [acyl carrier protein] synthase	0.000879971862628
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9M4C4	 UPF0276 protein NMCC_2101	0.000658497055716
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M4C4	 UPF0276 protein NMCC_2101	0.000215276263431
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I158		0.000444777830621
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ58		0.000879380183911
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NRF0		0.000537045572084
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DK50		0.000879287928295
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q49UP7		0.000807716540409
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5PJI9	 Arginine exporter protein ArgO	0.000878902211156
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_H3TL67	 Phenol hydroxylase	0.000616837114988
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW22	 L alanine exporter AlaE	0.000878739183881
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6ND25	 N acetylmannosamine kinase	0.000878491281105
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023K3H2	 Transposase	0.000877952761313
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023YPV7		0.000877952761313
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6UAL1		0.000877952761313
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E7MUF5		0.000877952761313
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI00036DFD62	 hypothetical protein	0.000877952761313
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1X512		0.000877952761313
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SK97	 Energy converting hydrogenase A subunit L EhaL	0.000768021069402
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YQD4		0.000877644246226
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MUD4		0.000877585054184
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WRV1	 Transport associated	0.000877327201875
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0E6L1		0.000877103534685
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ARQ5	 Methyltransferase small domain protein	0.00087656551708
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WWK0		0.000762495138451
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7E227	 Uroporphyrinogen III C methyltransferase CobA	0.000876197582366
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4SQR5	 Short chain dehydrogenase reductase	0.000876010998361
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P26503	 UDP glucose 4 epimerase	0.000875976637746
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51700	 Nitrite reductase	0.000875887541473
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A0A024DGP9	 Transcriptional regulator	0.000875786465582
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1TXZ0	 Gluconolactonase	0.000875111655598
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4Z832	 Acetyltransferase	0.000874335158271
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4X2L8	 Type II secretion system protein	0.000827578422553
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WZJ1		0.000874121100151
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A9KJX4	 Two component transcriptional regulator, winged helix family	0.000873780719203
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_L7VT93	 Chemotaxis protein methyltransferase 2	0.000872301256983
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAX7		0.000872119188154
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SYK3		0.000872059589154
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMP2		0.000872009065898
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8SNT6	 Transcription elongation factor	0.000871867947308
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AG37		0.000871852659587
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0REF7	 DNA binding response regulator	0.000871694925591
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKI0	 Possible H transporting ATP synthase, subunit gamma	0.00087161550974
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMQ8	 Sirohydrochlorin cobaltochelatase	0.000870922567387
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P29337	 Biotin carboxyl carrier protein	0.000870744711598
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PTU8	 ATP grasp domain protein	0.000870688164473
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U5WK69		0.000870577965182
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1KVH1		0.000870481689671
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27241	 Lipopolysaccharide core biosynthesis protein RfaZ	0.000836919641454
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV04		0.000870402846874
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023KWM2		0.00087038420303
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PND0		0.00087038420303
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTA9		0.00087038420303
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZT7		0.00087038420303
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A3B4		0.00087038420303
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2ENJ4	 Putative glutathione S transferase	0.00087038420303
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HDA2		0.00087038420303
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MPT8	 Bacteriohemerythrin	0.00087038420303
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T0VIT8	 Malate Na symporter	0.000870295081212
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9ADV3	 Putative methyl coenzyme M reductase, alpha subunit	0.000870020842799
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KFC5		0.000869921478833
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B8N7	 ATP synthase subunit delta	0.000869898106302
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTM2	 Membrane fusion protein, HlyD family	0.000869736674863
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XRP0	 DNA binding response regulator, LuxR family	0.000869638250948
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_H6NSQ0	 2 deoxy D gluconate 3 dehydrogenase	0.000869587058328
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M5DSQ3	 Peptidyl prolyl cis trans isomerase	0.000869407091672
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6AA53		0.000868998702687
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TQB7	 LicD family protein	0.000868736112223
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SMK5	 4Fe 4S ferredoxin iron sulfur binding domain containing protein	0.000868638420492
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CVC3	 Permeases of the major facilitator superfamily	0.000868110599602
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AD18	 Inner membrane protein YohC	0.000868015962595
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I7A8M6		0.000843094591768
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5LGA8	 D serine dehydratase transcriptional activator	0.000867714644717
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VRC8	 Membrane protein, TIGR01666	0.000866924925706
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M384	 CheC domain protein	0.000866648648505
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S0U5T5	 L fucose proton symporter	0.000866574378707
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQP6		0.000866428270125
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KKZ2		0.000485406574766
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39334	 HTH type transcriptional repressor BdcR	0.000866370642609
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M679	 D galactose binding protein	0.000864917406067
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMY1		0.000403858270205
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T0G8		0.00062673583599
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J3B2	 Glycosyltransferase, Succinoglycan biosynthesis protein exoL	0.000863908424031
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5A3J3		0.000863374043635
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B3RB46	 Acyl CoA dehydrogenase	0.000863307848346
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_K4PQW7		0.000461025422612
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PQW7		0.00040224927311
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7FFJ0	 UPF0253 protein YpsIP31758_1034	0.000862945021804
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D8KD63	 Transposase	0.000862945021804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1HKI4		0.000862945021804
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2E3P8		0.000862945021804
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P66235	 50S ribosomal protein L33 3	0.000862945021804
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS05		0.000862945021804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X8R1W3	 Penicillinase repressor	0.000862945021804
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P35483	 Alkaline phosphatase H	0.000776000741734
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9I2Q2	 Methionine synthase	0.000786997725194
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9I2Q2	 Methionine synthase	5.49170157598e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V5X2	 Cyclic diguanylate phosphodiesterase  domain protein	0.000862333513696
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D4Z4T4	 Aminomethyltransferase	0.000862162039977
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L1AYN6	 Inner membrane protein ybjJ	0.000861661341229
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K4XY40		0.00086117912562
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LM62	 Outer membrane OprD family porin	0.000861108527459
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DWN5	 Alpha beta hydrolase fold protein	0.000861047631891
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9HN69		0.000719841150457
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D8JTY5	 Binding protein dependent transport systems inner membrane component	0.000860640839823
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8G3F6	 TetR family transcriptional regulator	0.000860479093788
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PMD2	 Aa3 type cytochrome c oxidase subunit IV	0.000548720475822
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2T4	 Transcriptional regulator, RpiR family	0.000860089454318
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C6D6V1	 Extradiol ring cleavage dioxygenase class III protein subunit B	0.00085993870286
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UND6		0.000859923946848
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8Z8H3	 2 keto 3 deoxygluconate permease 2	0.000859737077951
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q21VJ3	 Short chain dehydrogenase reductase SDR	0.000859669106635
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8H2N8	 DNA polymerase III, beta subunit	0.000859195496327
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1M9U7	 Carbohydrate ABC transporter membrane protein 1, CUT1 family	0.000859066996097
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRB3	 Uroporphyrinogen decarboxylase 	0.000858843403681
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX83		0.000858774785092
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TVF7	 Transcription factor homologous to NACalpha BTF3 fused to metal binding domain	0.000858718096869
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ97		0.00085855986847
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E8QVJ8	 Molybdenum ABC transporter ModA	0.000858516641824
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0C652	 Insertion element IS1 protein InsA	0.000619414524858
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P0C652	 Insertion element IS1 protein InsA	0.000238686920929
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HN09	 Penicillin binding protein 1B	0.000857997283955
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N6P4		0.000857499507677
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U8S0	 CoA transferase family III	0.000857458625649
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DZR2		0.000857448556695
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W5VCD5	 Protein TadC	0.000834601541184
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4STH4	 Anaerobic nitric oxide reductase flavorubredoxin	0.000813929778204
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LS61	 5 nucleotidase SurE	0.000857205398901
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTA6	 D aminopeptidase	0.000856997270663
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q6M0B4	 UDP N acetylglucosamine 2 epimerase homolog	0.000856959343363
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q59637	 Pyruvate dehydrogenase E1 component	0.000565539447039
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q59637	 Pyruvate dehydrogenase E1 component	0.000210625675642
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q59637	 Pyruvate dehydrogenase E1 component	8.02754923173e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M3T2	 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.000856132297944
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HY09		0.000701455053878
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P24241	 PTS system arbutin , cellobiose , and salicin specific EIIBC component	0.00052048843857
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P24241	 PTS system arbutin , cellobiose , and salicin specific EIIBC component	0.000335380627997
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DX74	 ABC transporter, ATP binding protein	0.000855849499906
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_O34133	 Putative regulator AldR	0.000855849002524
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44992		0.000855836297143
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJT1		0.000855631928401
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTQ7		0.000855631928401
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QCL8		0.000855631928401
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U8LE05		0.000854711072713
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZKU5	 Acetate kinase	0.000833752160908
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0VJX5		0.000580256135353
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P12994	 UPF0098 protein YbhB	0.000853834479154
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P72158	 N5 carboxyaminoimidazole ribonucleotide synthase	0.000846929508553
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B454		0.000608220286448
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VE30	 Acetoacetyl CoA transferase, beta subunit	0.00085329020221
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O86564	 L serine dehydratase	0.00083834852298
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YTX8		0.000782671066288
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B8EMG0		0.000853142619364
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9LNI0		0.000839349276161
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ55	 SAM dependent methyltransferase	0.000851823056578
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0WG76	 Metal dependent beta lactamase	0.0008516543212
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P26275	 Positive alginate biosynthesis regulatory protein	0.000791927676458
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8E796	 UPF0291 protein gbs0261	0.000440893308086
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E796	 UPF0291 protein gbs0261	0.000410425071345
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E7I7N1	 Cryptic beta glucoside bgl operon antiterminator	0.000851255442916
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4XJJ6		0.000549847678158
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S0V4B4	 ABC transporter ATP binding protein	0.000851021517968
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E8Y3F7		0.000280457132089
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MB29		0.000850231705616
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64274	 Transcription elongation factor GreB	0.000849596450066
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87DC2	 Fumarate hydratase class II	0.000842892383294
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PVH8		0.000849123570984
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U1Z6		0.000849083508597
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4VYP5	 50S ribosomal protein L23	0.000848681467729
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N3Z7		0.000848441744123
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5Q576		0.000848441744123
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0EPK6		0.000848441744123
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0F5X0		0.000848441744123
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSW8		0.000848441744123
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI00038206B4	 hypothetical protein	0.000848441744123
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00936	 Adenylate cyclase	0.000848154496304
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADA3	 Murein hydrolase activator NlpD	0.000848080443145
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MIF0	 Ankyrin repeat containing protein	0.000847613674307
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T6MH84	 Flagellar P ring protein	0.0008472366117
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XWM2	 Amidotransferase	0.000846805233407
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1S781	 Response regulator receiver modulated CheW protein	0.000846718382565
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q2RKD5	 Flagellar biosynthetic protein FliP	0.000846117902211
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TZ39		0.000438976380662
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6BF09	 ATP dependent DNA helicase RecQ	0.000845983157363
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZK8	 Na translocating NADH quinone reductase subunit C	0.000845886550173
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q24QJ3	 Imidazole glycerol phosphate synthase subunit HisH	0.000839697984636
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A9MD69		0.000727352539079
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9MD69		0.00011822548894
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RUS2	 Chemotaxis protein CheY	0.000845470083539
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R4YES8	 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.000845453857846
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FFQ0	 Alpha ketoglutaric semialdehyde dehydrogenase	0.000694255308115
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q6FFQ0	 Alpha ketoglutaric semialdehyde dehydrogenase	0.000151109709019
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C7RN78		0.00084528120884
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28RP2	 Short chain dehydrogenase reductase SDR	0.000845203148064
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P40876		0.000844414227613
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFX3	 50S ribosomal protein L6	0.000844011611984
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76639		0.000843312683967
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUM6	 Regulatory protein GntR, HTH	0.000843258547312
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A022NPL4	 Short chain dehydrogenase reductase SDR	0.000842764311861
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SU34	 RNA polymerase, sigma 24 subunit, ECF subfamily	0.000842014148052
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2SKM8	 ABC type multidrug transport system, permease component	0.000842004902645
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZXX1	 NalD	0.000841536975734
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C3SMS7	 Repressor for mtl	0.000841371396256
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D8A052		0.000841371396256
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1J798		0.000841371396256
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZZ10	 Peptide chain release factor 3	0.000841371396256
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F9QWP6		0.000841371396256
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5DXU4		0.000841371396256
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0YAZ5		0.000841371396256
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPM0		0.000841371396256
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQT3		0.000841371396256
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6GFC4	 Thiamine biosynthesis protein ThiS	0.000841371396256
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_UPI0002BC6437	 hypothetical protein	0.000841371396256
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6BDT2		0.00084112026006
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8IHJ3	 Altronate oxidoreductase	0.000841026434627
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T2G718	 Oxalyl CoA decarboxylase	0.000840974290405
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SSU9	proton antiporter	0.000840865214264
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3MIQ6	 Phosphoglucosamine mutase	0.000678608725048
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3MIQ6	 Phosphoglucosamine mutase	0.00016175360721
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GFB8	 Protein map	0.000840186005738
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q04804	 Sensor protein PfeS	0.000719061554276
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZME8	 Plasmid stabilization system	0.000839871625498
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V5D3	 UV damage endonuclease UvdE	0.000839836018587
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP35		0.00083980004482
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W5V0V9	 Diguanylate cyclase	0.000839720657522
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WZE8		0.000839299813498
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E8ZPJ7	 Flagellar motor rotation protein MotB	0.000839206284759
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MQ20		0.000839027517683
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6ACQ5	 Peptidase S16 family protein	0.00083871809232
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LZT8	 Beta lactamase domain containing protein	0.000838680318315
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A8IC01	 Aminotransferase	0.000838447755975
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M9J3	 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase	0.000838320088672
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B215	 DSBA oxidoreductase	0.00083831448215
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K482	 Hydrolase, haloacid dehalogenase like family	0.000837862550782
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L4P7	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.000461025422612
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L4P7	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.000376733461014
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P46450	 Long chain fatty acid  CoA ligase	0.000468966823749
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P46450	 Long chain fatty acid  CoA ligase	0.000368361922791
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1ES29	 Inner membrane protein YeaI	0.000837282004438
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0T8K3	 Ribosomal protein S6  L glutamate ligase	0.000824202269479
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1R7V2		0.000836651602416
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5BKK1	 ATP synthase subunit a	0.000836515138606
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33227	 Putative protein StfE 	0.00083635838748
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0TL42	 Cell division protein DivIC 	0.000836139491027
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5WGK5		0.000836049895171
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1S9I7	 NAD transhydrogenase subunit beta	0.000835518093076
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2IT76	 Glucosyltransferase S	0.000835427250156
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T7W9		0.00083503497756
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQ53		0.000835030513442
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_U7PJB3		0.000834474909405
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IR50		0.000834417913644
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N1D9		0.000834417913644
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D1BH34		0.000834417913644
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1HUT7		0.000834417913644
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37415		0.000834417913644
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HYZ2		0.000834417913644
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_V4YZY4		0.000834417913644
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_V4Z1J1		0.000834417913644
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8G2I2	 ppGpp synthetase I, SpoT RelA	0.000834390949885
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36667	 Rhamnosyltransferase WbbL	0.000834133465108
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL75	 50S ribosomal protein L5	0.000834062624076
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q3JNU0	 NAD transhydrogenase subunit beta	0.0008337877731
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIG7		0.000441655983596
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8RR26	 Malonate transporter	0.000833678511871
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6AVC1	 Transcriptional regulator, LysR family	0.000833353771111
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9KUD9	 Ribosomal RNA small subunit methyltransferase I	0.000389955012924
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9KUD9	 Ribosomal RNA small subunit methyltransferase I	0.000270650938662
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KUD9	 Ribosomal RNA small subunit methyltransferase I	0.000126522014477
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q92MJ1	 Arginine biosynthesis bifunctional protein ArgJ	0.000802535473435
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2QLT7		0.000832593683707
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6UBX6	 Binding protein dependent transport systems inner membrane component	0.000832584455738
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C4Z2C3		0.000831991196803
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LMZ1	 N formylglutamate amidohydrolase	0.000831800809261
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B4EPF8	 LysR family regulatory protein	0.000831524328838
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C5WE22		0.000831448473301
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0N2	 Signal transduction histidine kinase, LytS	0.000831375569472
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B3PGL6	 Pyoverdine ABC transporter, permease ATP binding protein	0.000831349762192
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KR03	 Asparagine synthase	0.000831246269825
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O68826		0.000830689125341
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3JJE8	 Oxidoreductase, short chain dehydrogenase reductase family	0.000668796075028
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q3JJE8	 Oxidoreductase, short chain dehydrogenase reductase family	0.000161802191592
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MA72	 Cys Met metabolism pyridoxal phosphate dependent protein	0.0008303891533
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I1X4		0.000830311913801
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76498		0.000830173562256
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P48372	 DNA gyrase subunit A	0.000534575787312
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P48372	 DNA gyrase subunit A	0.000248788723052
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P48372	 DNA gyrase subunit A	4.04343482391e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D7Y9J7	 General secretory system II, protein E, N terminal domain protein	0.000829619428949
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9I0E6	 Homoserine O acetyltransferase	0.000822124279338
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WWP6	 Ribosome binding factor A	0.000828937336219
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L8NG89	 SH3 domain protein	0.00082870482113
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P45871		0.000828616886565
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F6B016	sodium symporter	0.000828216167213
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2FK26	 UvrABC system protein C	0.000827913725983
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X4Z0U6	 Ferredoxin  NADP reductase	0.000827810212605
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E7HNI9		0.000827578422553
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C7B1		0.000827578422553
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XHR6	 50S ribosomal protein L10	0.000827578422553
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SUU3		0.000827270653604
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNQ6	 Response regulator receiver protein	0.000827248942456
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V8MVT4	 Transposase	0.00057366231563
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WV08	 Diguanylate cyclase	0.000715082575168
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1AUZ6	 Exonuclease SbcC	0.000826688285264
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZM51	 Voltage gated ClC type chloride channel ClcB	0.00082635584526
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3V7R9	 4 hydroxythreonine 4 phosphate dehydrogenase	0.000826193406103
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A0D4		0.000756263329426
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5UIB0	 CoA transferase	0.000825846011137
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U5MKL2	 DEAD DEAH box helicase	0.000825463590865
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76586		0.000789694260583
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XHH1	 Prolipoprotein diacylglyceryl transferase 2	0.000825363601161
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76150		0.00082532714644
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88PE8	 Sensor histidine kinase	0.000825272179481
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WXA2	 Sulfotransferase	0.00082525364585
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZP6	 Electron transfer flavoprotein subunit beta	0.00082502342403
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLA5	 Acetyltransferase, GNAT family	0.00082502038856
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JMF9		0.000824311646869
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7EZE1		0.000824032883657
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SXS6	 Multidrug transporter	0.00082388302721
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T2HAA3	 D serine D alanine glycine transporter	0.000823638600857
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HUG6	 Putative lipopolysaccharide biosynthesis protein PA4999	0.000775044850755
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P38102		0.000823307551821
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4KG00		0.000823196743198
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7HT16		0.000823064177044
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XRZ9		0.000557176699559
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MSS6	 Single stranded DNA specific exonuclease RecJ	0.000822645040361
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9R1X9	 Acriflavine resistance protein B	0.00082204889067
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3JUG7	 Xanthine uracil permease family protein	0.000821602968703
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8G483	 Integral membrane protein TerC	0.000821467415199
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P38946	coenzyme A transferase	0.000731534588938
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P38946	coenzyme A transferase	8.97462822688e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9X4Q9	 Flagellar motor switch protein FliG	0.000821211532689
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HXP6		0.000821176098367
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D6CMF6	 Sulfite reductase	0.000821137781425
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2SVL7	 Amino acid ABC transporter, permease protein	0.000820966784905
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C2EHJ1		0.000721175482512
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RS49	 Amino acid ABC transporter, periplasmic amino acid binding protein	0.000820873153414
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UYW5		0.000820850142691
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8Z2F6		0.000820850142691
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N6DQ16		0.000820850142691
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L389	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.000820850142691
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G896		0.000820850142691
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FHS4		0.000820850142691
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZFX9		0.000820850142691
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8SPH4		0.000820850142691
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQZ7		0.00079997343124
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P38105	 Starvation sensing protein RspB	0.00080220133553
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1I0D4		0.000820179703624
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LZ49	 Alpha beta hydrolase fold protein	0.000820089159812
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_O83217	 Elongation factor Tu	0.000512601511007
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_O83217	 Elongation factor Tu	0.000220328027941
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O83217	 Elongation factor Tu	8.62208091825e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A8AZM1	 30S ribosomal protein S19	0.000819037755837
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YTS0	 Periplasmic tail specific protease	0.000818981620608
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2SB84	 Zinc containing alcohol dehydrogenase superfamily	0.000818931708067
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQA0		0.000373942842782
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZST2		0.000818392468367
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WUT5		0.00081839203326
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WXC0	 Aldose 1 epimerase	0.000818161838115
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NGC9		0.000817911611267
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04BU0	 Predicted membrane protein	0.000817907056472
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_V4RDN2	 Putative phage protein	0.000817862002659
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZPM4	 Cell wall surface anchor family protein	0.000817752477922
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F0JFM2	 Preprotein translocase, YajC subunit	0.000817440988096
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P32722	 Porin D	0.000782356973515
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W6BVV5	 Short chain dehydrogenase family protein	0.0008171423322
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O68562	 Outer membrane protein assembly factor BamE	0.000817014117305
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZCM7	 Amino acid APC transporter	0.000816531111366
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2UZX1	 Medium FAD binding subunit of molybdenum enzyme	0.000816294758281
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C5BF52	 Adenine deaminase	0.000805306778104
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KJM0	 YitT family protein	0.00081612209731
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P31909	 Hydrogenase expression formation protein HoxM	0.000816076191295
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1R7	 ZPR1 zinc finger domain containing protein	0.00081594269342
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023KTG8		0.000815644371141
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2T0X3	 Cholesterol oxidase	0.000815593515167
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P10151	 HTH type transcriptional regulator LeuO	0.000815435191144
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VCY0	 Oxaloacetate decarboxylase	0.000737131665884
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D2QKI4	 AMP dependent synthetase and ligase	0.000814305430558
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV24		0.000753565241666
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A009GFK1		0.000814230383474
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VRU0	 Translation elongation factor P 	0.000814230383474
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QGG4		0.000814230383474
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2WRM5	 Carboxylate amine ligase ybdK	0.000814230383474
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H1SSW9	 Arginine repressor, DNA binding domain protein 	0.000814230383474
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C683		0.000814230383474
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQS4		0.000814230383474
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5LZ42		0.000814230383474
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8H842		0.000814230383474
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUQ9		0.000813732960915
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75916	 Inner membrane protein YcdZ	0.000813291025423
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B9TAE6	 Glycine betaine L proline transport system permease protein proW, putative	0.000813221426821
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A6Z3		0.000492510085617
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YT77	 Acetyltransferase family protein	0.000812409014883
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q87QK9	 Histidine biosynthesis bifunctional protein HisB	0.000746280855287
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5EXI6		0.000812300002712
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S0X8L2	 Toxin YhaV 	0.000567216671637
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O34607	 Probable L serine dehydratase, alpha chain	0.000658160736845
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_O34607	 Probable L serine dehydratase, alpha chain	0.000136254477125
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W0Y9	 Peptidase M19, renal dipeptidase	0.00081211533033
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HAE7	 Glucose 6 phosphate 1 dehydrogenase	0.000811734206332
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8I6E1	 Lysyl tRNA synthetase protein	0.000811713036183
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28305	 Aminodeoxychorismate lyase	0.000811593459423
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XVE4	 Type VI secretion system ATPase	0.000811375714905
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H1T7S2		0.000811251908013
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJW2	 UPF0179 protein Msm_0285	0.000811136349643
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIA7		0.000715552636289
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZNX1	 Transcriptional regulator, AraC family with amidase like domain protein	0.000810899214709
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42603	 Inner membrane protein YgjV	0.000810672961331
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU90		0.000810628386666
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M3E3	 PTS system, glucose subfamily, IIA subunit	0.000810615400593
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U5SRV6	 Integrase	0.000810567720248
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0HWL6	 Ornithine cyclodeaminase family protein	0.000680310732095
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WPX8	 Cbb3 type cytochrome oxidase component	0.000731627301096
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8Y3B0	 Peptide deformylase 1	0.000474248972369
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q8Y3B0	 Peptide deformylase 1	0.000273616714234
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZA72		0.000809749332974
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WVA6	 Alcohol dehydrogenase GroES domain protein	0.000809668281709
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0WEY0		0.000809645476337
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2JCI9	 N formylglutamate amidohydrolase	0.000809221893791
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I7ABN6	 Outer membrane protein assembly factor BamA	0.000809207170188
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JJP4	 AraC type DNA binding domain containing protein	0.000808773794917
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TQA9	 Alkaline phosphatase synthesis transcriptional regulatory protein PhoP	0.00080799191426
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C3ATQ4	 Glycosyltransferase involved in cell wall biogenesis	0.000807949860559
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C4ZF78	 Orotate phosphoribosyltransferase	0.000807935144983
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X852	 Anaerobic nitric oxide reductase flavorubredoxin homolog	0.000796116453364
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B1YFG3	 Prevent host death family protein	0.000807729464076
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KSF5		0.000807716540409
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6EHP9		0.000807716540409
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QGG5		0.000807716540409
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D7XFZ2		0.000807716540409
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5D189		0.000807716540409
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I0ZQ17		0.000807716540409
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLW5		0.000807716540409
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q895M3	 Ribosome maturation factor RimM	0.000807716540409
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYN9	 D galactose binding periplasmic protein	0.000807487585795
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V8Y0		0.00080735685759
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJG8	 Dephospho CoA kinase, CoaE	0.000807329022477
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4TYE9	 Citrate synthase	0.000807190330207
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2UYR1	 Surface protein PspC	0.000807187000143
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W8TSF6		0.000764883087513
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QZB4		0.000711018081343
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WZ70	 PpiC type peptidyl prolyl cis trans isomerase	0.000807011611362
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75946		0.000807000479645
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4J7S8	 FAD FMN containing dehydrogenases	0.000806870284088
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI000363409C	 hypothetical protein	0.000806140924129
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XRI8	 YcaO like fatty acid binding protein	0.000806520134384
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30015	 Probable ATP dependent helicase lhr	0.000806508421424
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P45684	 RNA polymerase sigma factor RpoS	0.000806458059934
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q05026	 UDP glucose 4 epimerase	0.000687098007886
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q05026	 UDP glucose 4 epimerase	0.000119061990035
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I0K9	 Adenylosuccinate lyase	0.000704236505245
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9I0K9	 Adenylosuccinate lyase	8.62208091825e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MIQ5		0.000805614761905
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4T534	 Isopentenyl diphosphate Delta isomerase	0.000805568358125
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A038GJ20	 Lipoprotein	0.00080544102659
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P14295	 L 2 hydroxyisocaproate dehydrogenase	0.00080524713685
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PL40	 Antifreeze protein, type I	0.000805043423247
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1ZSZ2	 Phosphate transporter	0.00080476479035
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9ADZ7		0.000804390829799
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E8TCM1	 Inner membrane translocator	0.000804261976677
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2JB66	 Acetolactate synthase 3 regulatory subunit	0.000804204137731
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P69972	 Yop proteins translocation lipoprotein J	0.000804046380393
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PP82		0.000702287243877
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGA1	 Protein export membrane protein SecG	0.000803518820253
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023Y3W6	 Radical SAM protein	0.000803414791916
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NF24	 Predicted thioesterase	0.000803171417906
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4KHN8		0.00080312547613
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S5RJR0		0.000802958803035
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2M3F4		0.00080265662928
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MMP4	 Methyl accepting chemotaxis protein	0.000802131989329
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T106		0.000802050953259
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V7N6	 Exodeoxyribonuclease III	0.000801345619202
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY96		0.000801318037631
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQQ8		0.000801306091675
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1IL32		0.000801306091675
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E5QWI2		0.000801306091675
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E9TLK6		0.000801306091675
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H6MFF7		0.000801306091675
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0JFN1		0.000801306091675
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2KNT5	 Transposase	0.000801306091675
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P0A0V1	 LPP20 lipoprotein	0.000801306091675
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77712	 Long chain acyl CoA thioesterase FadM	0.000801306091675
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1A3	 Light harvesting protein B 875 beta chain	0.000801306091675
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U7DMJ8	 Flagellar basal body rod modification protein FlgD	0.00080095433308
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88EW8	 ParA family protein	0.000800743904051
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAN4	 Hydrogenase isoenzymes nickel incorporation protein HypB	0.000800420701134
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWN2	 Transcriptional regulator, GntR family	0.000800227834023
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7VBB6		0.000799530498591
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02QX6	 Phospholipase D	0.000799231986408
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I4X3	 Anthranilate  CoA ligase	0.00071550852917
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M4UDQ5	 Quinone oxidoreductase	0.000798979634689
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I6H7	 L cysteine transporter of ABC system FliY	0.000798896087852
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B0U641	 Lipoyl synthase	0.000697635794841
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0U641	 Lipoyl synthase	0.000100964567551
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K5Q721		0.000798450724886
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E3D6K5		0.00079813887392
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB34	 Biofilm regulator BssS	0.00079813887392
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I3V2		0.000797868713354
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G3XCV3	 Pseudaminidase	0.000797654300122
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4VYG8	 Ribosomal RNA large subunit methyltransferase H	0.000797325975949
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F2LQE5	 PAS PAC domain protein	0.000797135205256
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q7MNQ6	 UPF0246 protein VV0659	0.000774257205981
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Y8XRB2	 Quinolone resistance protein norB	0.00079700676204
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZL95	 Transcriptional regulator, LysR family	0.000796968136228
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8RGE4		0.000796887484722
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J2YJ27	 TonB dependent outermembrane ferric citrate receptor	0.000796752404843
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZDX0	 GntR family transcriptional regulator	0.000796060990397
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YY04	 N acetylgalactosaminoglycan deacetylase	0.000795787009372
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQL5	 Na H(+) antiporter subunit F1	0.000448731411334
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQL5	 Na H(+) antiporter subunit F1	0.000346957276804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H7E757	 RHS repeat associated core domain protein	0.000795152571999
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A037YC42		0.000794996594888
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A0A059MR78	 Nitrogen fixation protein NifU	0.000794996594888
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LS46		0.000794996594888
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VB68	 Phenylacetic acid degradation protein with thioesterase thiol ester dehydrase isomerase domain	0.000794996594888
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7N1I6		0.000794996594888
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I4PER2		0.000794996594888
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0EYL2		0.000794996594888
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2KU52	 Exonuclease family protein	0.000794996594888
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRT5		0.000794996594888
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FFR1		0.000794996594888
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U5BQN5		0.000794996594888
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NRP8		0.000794996594888
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58362	 Trimethylamine N oxide reductase 2	0.000794920046672
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1K314	 Holliday junction ATP dependent DNA helicase RuvA	0.000790332322594
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0TQK1	 Trigger factor	0.000794535537514
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F2NTN8	 Addiction module toxin, RelE StbE family	0.000794494656729
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P07767	 Staphylocoagulase	0.000794463828652
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTI2	 Signal transduction histidine kinase regulating citrate malate metabolism	0.000794357453363
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DV31		0.000794321450519
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9SAW1		0.000794207520667
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L1N4		0.000794128473347
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0FE04	 Diguanylate cyclase with PAS PAC sensor	0.000793917002848
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S1D0		0.00079313860346
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q98BA9	 Mll5655 protein	0.00061994476076
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q98BA9	 Mll5655 protein	0.000173181076416
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYY5	 Helix turn helix domain containing protein, AraC type	0.000792889723377
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U7DKX9	 Glutathione S transferase	0.000792500530231
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6STV8		0.000792402610977
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8RVP4	 Glutathione S transferase	0.000792262961744
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9SEQ3		0.000792214695471
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q896Z8	 2 hydroxyacid dehydrogenase	0.000791896732332
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AGW4		0.000791876080282
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P52046	 3 hydroxybutyryl CoA dehydratase	0.000791387116818
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G3XD94	 UDP N acetyl D glucosamine 6 dehydrogenase	0.000791344151376
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P43854	 Amidophosphoribosyltransferase	0.000791259277007
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9ADI3		0.00079121462994
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PI48	 Glucose 1 phosphate adenylyltransferase	0.000791165014275
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GFH6	 Ppx GppA phosphatase	0.000791073198612
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D2NQQ7	 ATP dependent zinc metalloprotease FtsH	0.000788626305456
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G3XD19	 O antigen translocase	0.000789975061976
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL58	 Putative DNA helicase II, UvrD	0.000788871619147
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2HYR6		0.000788785683993
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5YVH2		0.000788785683993
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5MZN7		0.000788785683993
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C7N981		0.000788785683993
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3V8P2		0.000788785683993
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I4ZMH3	 Protein YbaO	0.000788785683993
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J1EVE5		0.000788785683993
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M8L6H8		0.000788785683993
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S9YQX6		0.000788785683993
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPZ2	 Binding protein dependent transport systems inner membrane component	0.000788458680235
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I4D0J0	 DNA repair protein radA	0.0007884049164
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A030WJZ6		0.000788117558883
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUE7		0.000787895364675
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XT92	 Long chain fatty acid transporter	0.00078788138496
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FEM0	 Outer membrane protein assembly factor BamB	0.000787514235579
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RG77	 Transcriptional regulator, LysR family	0.000787013674809
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KEU9		0.00078611713048
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GNL4	 Dihydrodipicolinate synthase	0.000786060620793
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M9T7		0.000785590927668
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B4F105	 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.00077074253265
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9TEA7	 Membrane protein	0.000785303273688
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L8NI67		0.000784728005711
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LIG9	 Lipolytic protein	0.000784513538412
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZI94	 3 propionate 3 hydroxycinnamic acid hydroxylase	0.000739209970338
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K1C7V0	 Ferredoxin	0.000784339324758
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C3K475	 Acetylglutamate kinase	0.000729790783085
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76471		0.000784049294658
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3I0H1	 L carnitine dehydratase bile acid inducible protein F	0.000783913975776
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q887Q2	 Alginate production protein AlgE	0.000783785328581
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C5CB84	 Branched chain amino acid uptake carrier	0.000783600439297
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3USW1	 Multi sensor signal transduction histidine kinase	0.000783477738148
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PLR4	 Hly III family protein	0.000782937968455
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C0PW01		0.000782671066288
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L1DEU6		0.000782671066288
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A9M5	 Dephospho CoA kinase	0.000782457252483
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K0NAB4	 Dehydrogenase	0.000782453644746
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MYJ1	 Multidrug resistance protein MdtA	0.000782328483909
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHK3	 ComEC Rec2 related protein	0.000782155140902
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F7Z2N3	 Transcriptional activator, TenA family	0.000781809833691
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3BRW8	 1 deoxy D xylulose 5 phosphate synthase	0.000726245807652
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q3BRW8	 1 deoxy D xylulose 5 phosphate synthase	5.28887205603e-05
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E3Q6		0.000780884784864
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AER4	 Glutamate aspartate transport system permease protein GltJ	0.000434388318615
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0AER4	 Glutamate aspartate transport system permease protein GltJ	0.000346457839941
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64422	 Probable hydrogenase nickel incorporation protein HybF	0.00078082028475
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q39LW7	 Aliphatic sulfonates import ATP binding protein SsuB 2	0.000780598616527
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LL26	 tRNA pseudouridine synthase B	0.000780410307431
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1VBF0	 TRAP transporter substrate binding protein	0.000780092788163
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q07X28	 Hydroxylamine reductase	0.00077403001229
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTP9	 Diguanylate cyclase phosphodiesterase with PAS PAC sensor	0.00077994100727
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3KVE3		0.000778917583788
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ70	 Peptide methionine sulfoxide reductase, PMSR 	0.000778830769597
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZG29	 Chemotaxis protein CheY	0.000778819804461
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D3SBY0	 Ribonuclease, Rne Rng family	0.000778771753232
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9RZD9	 ABC transporter permease	0.000778448298217
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5ZDB5		0.000778302089044
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6AEX2		0.000777911931261
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZH3	 UPF0146 protein mru_1801	0.000776650519623
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E362		0.000776650519623
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WY72		0.000776650519623
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVT2		0.000776650519623
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5DU16		0.000776650519623
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4VWG8	 Transcriptional antiterminator	0.000776432082802
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0WHZ7		0.000776355301742
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJZ1		0.000775988413465
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U4H3		0.000775986010711
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8GCC2	 UPF0145 protein Spro_1658	0.000378144447761
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C3LNG5	 Amino acid ABC transporter, permease protein	0.000775901393942
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3SSW6	 50S ribosomal protein L3	0.000775680702127
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P65399	 Molybdopterin synthase catalytic subunit	0.000753443074439
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZWW3	 PTS system, galactitol specific IIC component	0.000774930826633
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76361	 Inner membrane protein YeeR	0.000774710720827
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0CF88	 Transposase InsI for insertion sequence element IS30A	0.000774266597634
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q189B8	 Threonine  tRNA ligase	0.000774188318048
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q6NBT1	 Sulfate thiosulfate import ATP binding protein CysA	0.000689603738861
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q96YV9	 30S ribosomal protein S11	0.000774008851187
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P18275	 Arginine ornithine antiporter	0.000773701669964
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D5D972	 Small heat shock protein	0.000773674847131
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1ETW9	 Trimethylamine N oxide reductase	0.000773598871637
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ85	 O acetylhomoserine aminocarboxypropyltransferase	0.000773420472638
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HBU5	 Phage late control gene D protein	0.000769657247723
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23325	 Ankyrin repeat protein A	0.000773165523909
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M9H1Q6	 Stage II sporulation family protein	0.000772747150326
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6ZY61	 sn glycerol 3 phosphate dehydrogenase , K small subunit	0.000772634867095
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P71239	 Putative colanic acid biosynthesis glycosyl transferase WcaE	0.000772610759967
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G5FKQ3		0.000772417953082
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E3B1	 Probable transaldolase	0.000568709011837
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G0K3J8	 Aspartate transaminase	0.000772281041271
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QE51		0.000772082853883
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S5J0	 Transcriptional regulator, DeoR family	0.000763450897368
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9PRX2		0.000771897464087
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P11865		0.000771829946446
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1R4E5		0.000350294283553
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q096S9		0.00077136255188
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MTD0		0.00072498553969
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5BT54	 Cysteine synthase	0.000771231356007
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EVS2	 Cysteine rich protein C	0.000771193997824
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A9B327	 Cyclic pyranopterin monophosphate synthase accessory protein	0.000420685698133
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9B327	 Cyclic pyranopterin monophosphate synthase accessory protein	0.000335430456979
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LJE6	 TonB dependent receptor	0.000770886616721
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N6S4		0.000770721889707
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6SH38	 Transposase, IS30 family	0.000770721889707
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6STX7		0.000770721889707
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3EXB3		0.000770721889707
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L1C6I4	 H+ symporter family protein 	0.000770721889707
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DVR6		0.000770721889707
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q04JH1	 Adenine phosphoribosyltransferase	0.000742386526114
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_I7EDR9	 TonB dependent receptor	0.000770413058844
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1R7	 Methyl accepting chemotaxis sensory transducer	0.000770213767338
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q3K192	 UPF0223 protein SAK_1090	0.000739825988524
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZMT0		0.000769729582203
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I2W4	 Uroporphyrinogen III C methyltransferase	0.000733357716342
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57NA5	 Zinc import ATP binding protein ZnuC	0.000686107339137
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_V8B5L5		0.000769450567771
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P38942	 4 hydroxybutyrate coenzyme A transferase	0.000769423550481
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWM5		0.000769124055104
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V1VWE5	 Multifunctional phosphoenolpyruvate protein phosphotransferase subunit IIA	0.000768854709656
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ95		0.000768562390871
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU95	 N anthranilate isomerase	0.000768476621985
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KLL4	 4 hydroxybenzoyl CoA thioesterase	0.000768347377879
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI0003654BED	 hypothetical protein	0.000767791388217
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D2Q8M6	 Sugar binding lipoprotein of ABC transporter system	0.00076771010746
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9T6E9	 Sugar ABC transporter permease	0.000767442106314
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AH81		0.000695543094212
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W5V1P4	 Type II secretion system protein E	0.000767156942726
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R5KYF0		0.000767033197483
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6LJ53	 Cell cycle protein FtsW	0.0007670034406
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A038GFP2	 OmpA family protein	0.000766936530028
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0GGI8	 Lytic murein transglycosylase B	0.000766725703128
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P0C348	 Peptide chain release factor 2	0.000766181119918
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JKL5	 DNA polymerase III subunit beta	0.000765836620494
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47329	 UDP glucose 6 dehydrogenase	0.000765214832891
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P63770	 10 kDa chaperonin	0.000765145573126
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A3X7	 DhcB, dehydrocarnitine CoA transferase, subunit B	0.000764902729029
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6U352		0.000764883087513
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C0MBU0	 50S ribosomal protein L11	0.000764883087513
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F5WGR4		0.000764883087513
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P41039		0.000764883087513
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HHG7		0.000764883087513
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQ20	 Phenol soluble modulin beta 1	0.000764883087513
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8D1Q8	 Arabinose 5 phosphate isomerase KdsD	0.000745484572549
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5RJ21	 GTP binding protein Era	0.000764688001655
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C3C2K9		0.000764664301344
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B5G543	 Sip	0.000764533333418
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WHZ8	 OmpW family protein	0.000764478242082
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A009KXU9		0.000763797071471
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Z3AQ68		0.000763767427921
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4KIU4	 Type II and III secretion system protein	0.000763703139793
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1X1F9		0.000721561300928
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45761	 Putative type II secretion system protein J	0.000763464742145
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DWK4	 Triacylglycerol lipase	0.000763262999925
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JYB8	 ComE operon protein 1 related protein	0.000763162781062
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E8XYA4	 HAD superfamily subfamily IB hydrolase, TIGR01490	0.000762217989643
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76062	 Rac prophage repressor	0.000762094405862
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5IZ71		0.000762066291299
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V2Z2I4		0.000762007587178
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q16DT4	 Magnesium chelatase 30 kDa subunit	0.000761861990092
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1RJH2	 ATP dependent Clp protease proteolytic subunit	0.000752900684886
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YWT0	 ClpB protein	0.000761735145832
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T6N9U5		0.000761357493622
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YRU2		0.000761090779765
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W1VVE0	 2 oxoglutarate dehydrogenase E1 component	0.000761037930276
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F8KKC8		0.000761017848191
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47706	 Membrane associated protein UidC	0.0007610021628
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RCN0	 3 ketoacyl CoA thiolase FadA	0.000760682449875
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4UUD9	 Flagellar biosynthesis switch protein	0.00076045496366
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P20582	 PQB biosynthetic 3 oxoacyl [acyl carrier protein] synthase III	0.00076036763262
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1WQY3	 Alanine racemase	0.000760213168039
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WY98	 SAM dependent methyltransferase	0.000759539171839
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C1D4B9	 Recombination associated protein RdgC	0.000759494821982
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E0T7X0	 LysR family transcriptional regulator YnfL	0.000759480837107
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKR4		0.000759132086853
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZJ0	 DNA directed RNA polymerase subunit H	0.000759132086853
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0KC31		0.000759132086853
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q2J514	 Endoribonuclease L PSP	0.000759132086853
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R7B3R6		0.000759132086853
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A0A023SGI9	 CAAX protease	0.000758956548432
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1LKC4	 Ureidoglycolate lyase	0.00074819650762
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RM02	 Metallophosphoesterase	0.000758299837154
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q57048		0.000758245035535
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6RIK4	 RNA polymerase ECF subfamily sigma 70 factor	0.000757904227225
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0LZ82	 Aldose 1 epimerase	0.000757808416757
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5BWI2		0.000757771177097
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VC75		0.000757660892874
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024H9M2	 HTH type transcriptional regulator HexR	0.000757579345913
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F2MV72	 C4 dicarboxylate binding protein	0.000757547901881
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4A483	 Diacylglycerol kinase	0.000757271931855
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02U67		0.000757213314008
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JHX6	 HAD superfamily hydrolase	0.000757108666545
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V7ZI65	 Transcriptional regulator	0.000757083779183
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RHA2		0.000570421285597
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39283		0.000756765649443
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5FHH0	 Protein FixA	0.000653036249708
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5EKA8		0.000756527221849
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2FQX2	 tRNA specific 2 thiouridylase MnmA	0.000752159687287
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YL09	 von Willebrand factor A	0.000756472516641
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYT7		0.000756204277169
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P24696		0.000736967646359
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_D8MEJ9	 PTS lactose cellobiose IIA component	0.000755960400709
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M5C3	 Metal dependent phosphohydrolase HD sub domain containing protein	0.000755845117397
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P43924	 Pyruvate kinase	0.000644171991452
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P43924	 Pyruvate kinase	9.53395349902e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W7NLU7		0.000627109115222
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D3V7P3	 Multidrug resistance protein MdtB	0.000722094668529
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D3V7P3	 Multidrug resistance protein MdtB	3.32229574043e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WXV7	 Transcriptional regulator, GntR family	0.000755077435599
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8Y1I2	 3 octaprenyl 4 hydroxybenzoate carboxy lyase	0.000749077684253
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4Y3Z4		0.000754941210903
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLU0		0.0007548990083
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27653	 30S ribosomal protein S19e	0.00075487269764
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B5YKP8	 Phenylacrylic acid decarboxylase	0.00075461545234
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RR64		0.000754534978784
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V4JV50		0.000754247924474
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V085	 Pyruvate kinase	0.000754212209369
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P78285	 Lysozyme RrrD	0.000753967618463
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M1F9S3	 Hydrogen peroxide inducible genes activator	0.000753919343709
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q05619	 Butyrate kinase	0.000753660830466
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F1UIR5		0.000753466922027
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M9EN20	 Acyl coenzyme A dehydrogenase domain protein	0.000753466922027
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZMN8		0.000753466922027
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0SLU0		0.000753466922027
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8SSL3	 Sterol binding protein	0.000753466922027
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4W197	 Phosphate transporter family protein	0.000753321481204
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A0JUU8	 tRNA pseudouridine synthase B	0.000753250889565
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1J6	 PolyA polymerase related protein  and P loop ATP ase domain	0.000753113029163
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q5GVA4	 Dehydrogenase	0.000753005124371
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HTD7	 Aspartate ammonia lyase	0.000599947817295
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9HTD7	 Aspartate ammonia lyase	7.76650519593e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VNQ6	 Long chain fatty acid  CoA ligase	0.000752749657088
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4M9A1	 Dimethyl sulfoxide reductase chain YnfE	0.000752667623155
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXR8	  hydrogenase maturation protein HypF	0.000752177708776
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E4D9		0.000751600362281
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV22		0.000504825992919
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0CF87	 Putative arsenate reductase	0.000751420347374
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P54019	 30S ribosomal protein S13	0.00075072188016
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I048	 tRNA dihydrouridine synthase A	0.000678582957578
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LW01		0.000750341220175
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P57067	 Outer membrane lipoprotein carrier protein	0.000749940316573
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3THN3		0.000749928361338
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5Y434	 Sulfolipid biosynthesis protein	0.000749774266186
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0M4	 Respiratory chain NADH dehydrogenase domain, 51 kDa subunit	0.000749631185562
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_U5PD17	 ABC transporter permease	0.00074893088163
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6GJ60	 Capsular polysaccharide biosynthesis protein	0.000748859519258
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B1GZC3	 Tryptophan synthase alpha chain	0.000748839080768
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B0UKB7	 Flagellar biosynthetic protein FliP	0.000748823795056
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27642	 Probable deoxyuridine 5 triphosphate nucleotidohydrolase	0.000748807213433
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1Y4X6	 Mg2 transporter protein CorA family protein	0.00074876425512
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MNC9	 PMT family glycosyltransferase, 4 amino 4 deoxy L arabinose transferase	0.000748680225349
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJZ1	 PpiC type peptidyl prolyl cis trans isomerase	0.000748561576363
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6U210		0.000747885685563
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D5D727		0.000747885685563
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J1C5J4		0.000747885685563
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9UTL0		0.000747885685563
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VB01		0.000747885685563
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O33589	 AgrD	0.000747885685563
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRK0		0.000747885685563
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9XJJ6	 Spanin, inner membrane subunit	0.000747885685563
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T1ZU11		0.000747885685563
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E6C0		0.000747731989373
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88FA1	 Transcriptional regulator, GntR family	0.000747686758711
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XUR6	 Amino acid ABC transporter, permease protein	0.000747518257934
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q00517	 Type II secretion system protein J	0.000747367870837
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZRH4	 Sensor histidine kinase	0.000747298308219
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HE05		0.000747274309688
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X4X4C7	 DNA binding protein	0.000747101401506
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N6B4	 Ribonuclease E	0.000746837006633
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q186R1	 Thiazole synthase	0.000746700458507
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X8ILE6	 Transposase, IS4 like family protein	0.000746505822678
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_X4ZS10	 Bacterial regulatory s, gntR family protein	0.000746343997417
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0TN75	 Sulfatase	0.000746079224058
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QHI9		0.000727508579747
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AA77	 D galactonate transporter	0.00074576729544
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT02	 RNA polymerase, sigma 24 subunit, ECF subfamily	0.000745379693969
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9WCL0	 Phage tail fiber assembly protein	0.00074531767821
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I4E3	 N,N(G) dimethylarginine dimethylaminohydrolase	0.00064589631181
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IR90	 Holin, SPP1 family	0.000745217284193
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YSA3	 Lipoprotein	0.000744998664464
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJC4	 Mg dependent DNase, TatD	0.000744823313121
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2TBH4	 Major facilitator superfamily MFS_1	0.000744547345881
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7KQ82	 ABC type antimicrobial peptide transport system ATPase component	0.000744529126279
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5UAN7	 GNAT family acetyltransferase	0.000744499147355
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3LL40		0.000629772025917
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0G1	 Extracellular solute binding protein, family 5	0.000744280639969
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E0WIF5	 CagZ protein	0.000744264230268
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCU3	 Pyruvate kinase	0.000744162533879
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WSH4		0.000744114733962
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0TDK7	 Chorismate mutase I	0.000743776423555
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SMQ4	 Phosphate ABC transporter permease protein PstA	0.000743762716696
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1QEI9	 Ubiquinone biosynthesis O methyltransferase	0.000743756242949
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6FEV8	 3 isopropylmalate dehydratase small subunit	0.00068695398189
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6T886	 tRNA 2 thiocytidine biosynthesis protein TtcA	0.000743480759046
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G2AN26	 4 alpha L fucosyltransferase family protein	0.0007433741925
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9KPS2	 Na translocating NADH quinone reductase subunit B	0.000743305792115
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4NT35	 Bipolar DNA helicase	0.00074323289595
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MQD6	 TIGR03943 family protein	0.000743065496778
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI0003735C7E	 hypothetical protein	0.000678397451016
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P02921	 Melibiose carrier protein	0.00074296645925
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8NUV3		0.00032994956716
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B3X836	 D xylose ABC transporter, ATP binding protein	0.000742821243256
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1AHR3		0.000742605345127
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H7CRL6		0.000742530678831
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DXL1		0.000742386526114
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VQI7		0.000742386526114
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RQQ4	 Adhesin component	0.000742386526114
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6ST18		0.000742386526114
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F8XKI5		0.000742386526114
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U4C3	 Hypoxanthine phosphoribosyltransferase	0.000742386526114
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S4XH57		0.000742386526114
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9TVN1		0.000742386526114
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X2HH90		0.000742386526114
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I2SHA0	 tRNA uridine 5 carboxymethylaminomethyl modification enzyme GidA domain protein	0.00074228839537
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6NZ74	 Glutamate synthase subunit alpha	0.00074225033506
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q57501	 4 hydroxyphenylacetate 3 monooxygenase reductase component	0.000696307362418
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RV43		0.000741548538438
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I3X3		0.00074143128878
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RXC5	 Transporter, small conductance mechanosensitive ion channel family protein	0.000741401730686
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9TYA5	 Beta ketoadipate enol lactone hydrolase	0.000741372520607
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XJE0	 Geranyltranstransferase	0.000741370863526
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77365		0.000740703109955
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZTL7	 Fe S biogenesis protein NfuA	0.000740695310039
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2UGL3	 VWA domain containing CoxE like family protein	0.00074047357846
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P20586	 p hydroxybenzoate hydroxylase	0.000740081022851
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_J7IM71	 Drug resistance transporter, EmrB QacA subfamily	0.000740054591811
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQ22	 Lysine exporter protein 	0.000739860387031
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZQ55		0.000739489214353
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8S551	 Proline dehydrogenase    Delta 1 pyrroline 5 carboxylate dehydrogenase	0.000739470115169
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S4X8J4	 IS1272 transposase	0.000739299884213
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3KK80	 Carbonic anhydrase	0.000739238932449
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2G5F9	 Hemimethylated DNA binding region protein	0.000739204869568
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9Z3	 Nitrogen regulatory protein P II 1	0.000442827050665
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P0A9Z3	 Nitrogen regulatory protein P II 1	0.000296083775805
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A3DJ91	 Chemotaxis response regulator protein glutamate methylesterase	0.000738791767325
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64543		0.000551718948365
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D5DN80	 4 carboxymuconolactone decarboxylase	0.000738400608187
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5JZJ5	 OsmC  Ohr family protein	0.000738212850014
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28KF2	 Beta lactamase like protein	0.000738177784081
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WV32		0.000738004318463
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0FIE0	 Diguanylate cyclase	0.000737916468839
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2DBA0	 2,3 cyclic nucleotide 2 phosphodiesterase	0.000737911556973
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1H0		0.000737844003934
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A058T3B4	 Transcriptional regulator	0.000737810355664
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O27818	 dTDP 4 dehydrorhamnose 3,5 epimerase	0.000728758685767
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIB1		0.000225871515772
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MUN0	 Methyl accepting chemotaxis protein	0.000737549436183
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26126	 30S ribosomal protein S8	0.00073744032742
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WV88	 2 keto 3 deoxygluconate kinase	0.000737309726369
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C3EUD3		0.000737187392298
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N3TCH5	 4 aminobutyrate transaminase	0.000737086515428
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76210		0.000737000683137
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0K9T4	 Ferric uptake regulation protein	0.000736967646359
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN94		0.000736967646359
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B4U2A3	 Transcriptional Regulator Cro CI family	0.000736967646359
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SEK4		0.000736967646359
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DX90	 Phosphatidylglycerophosphate synthase	0.000736967646359
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H0DPU7		0.000736967646359
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0H8Z7		0.000736967646359
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YZ32	 FagA protein	0.000736967646359
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7Q7A9		0.000736715236394
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P02982	 Tetracycline resistance protein, class A	0.000509868768392
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P02982	 Tetracycline resistance protein, class A	0.000226771358028
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3TXV0	 Oxidoreductase, FAD binding protein	0.000736583196437
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q15P08	 Transcriptional regulator, DeoR family	0.000736429966542
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F3SV15		0.000651384306779
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P23034	 Aspartate aminotransferase	0.000614824358054
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P23034	 Aspartate aminotransferase	0.000109863512022
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9V4R9	 Pili assembly chaperone	0.000735788232217
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_N0B1P0	 Ribosomal RNA adenine dimethylase, phospholipid N methyltransferase	0.000735669093815
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D3QYK7	 Transposase, IS4 family protein	0.000735611133681
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q602P0	 Non canonical purine NTP pyrophosphatase	0.000694631784633
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PLF5		0.000438976380662
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L3HWP0		0.000734531139267
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4SWA9	 Pyruvate dehydrogenase 	0.000734147045599
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KK42		0.000733786550591
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A1A0Q3	 ATP binding protein of ABC transporter for glutamate_aspartate	0.000391335533139
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A1A0Q3	 ATP binding protein of ABC transporter for glutamate_aspartate	0.00034232126105
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V1A6	 Ketol acid reductoisomerase	0.000673806610566
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U0D6A1	 Outer membrane protein	0.000733470090006
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABX0	 Flagellar basal body rod protein FlgB	0.00073340741618
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P43262	 Probable phospholipid binding lipoprotein MlaA	0.00073322946608
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRQ1	 Ubiquitin associated domain containing protein	0.000732957532556
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6EJ93	 Imidazole glycerol phosphate synthase subunit HisF	0.000701143139214
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q886P5	 Bifunctional uridylyltransferase uridylyl removing enzyme	0.000732277937709
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7I2S0	 Exodeoxyribonuclease X, putative	0.000732064414268
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75962	 Inner membrane protein YmfA	0.000732015002239
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A6F2	 Transcriptional activator GpuR	0.000731784546332
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F691	 Dephospho CoA kinase	0.000731661617569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5YZ54		0.000731627301096
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7M4X2		0.000731627301096
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_M7YB68		0.000731627301096
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A984	 Cold shock like protein CspH	0.000731627301096
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CTY8		0.000731627301096
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI00036CB770	 hypothetical protein	0.000731627301096
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KCP0	 DNA binding response regulator VncR	0.000731627301096
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9X4A7	 Aminopeptidase PepS	0.000731429998723
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P09546	 Bifunctional protein PutA	0.000695846627525
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2G764	 2,4 dihydroxyacetophenone dioxygenase	0.000730842005545
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8D6Q9	 Cell division protein FtsK	0.000730641308814
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6EE82	 Rhs family protein like protein	0.00073048885896
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S5N5Q9	 Ribulose phosphate 3 epimerase	0.000730337303138
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5BV23	 D arabinose 5 phosphate isomerase	0.000730307861799
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1W6Z9	 Lytic murein transglycosylase	0.000730299818114
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F3F217	 Isoleucyl tRNA synthetase	0.000730221421086
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P21367		0.000730105383215
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P29976	 Phospho 2 dehydro 3 deoxyheptonate aldolase 1, chloroplastic	0.000655752618708
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZFL5	 ABC transporter permease	0.000561784431988
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D3JTG3	 3 hydroxylisobutyryl CoA hydrolase	0.00072973583433
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8S2D3		0.000689854415274
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0DH79	 Alpha beta hydrolase fold protein	0.000729675874381
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E3DSX1	 KdgR1	0.000729618264575
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E3E5		0.000729603559631
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P47203	 Cell division protein FtsA	0.000729207763098
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ67		0.000372562979897
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVY3		0.000729139923875
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M658		0.000728864907832
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FHN1		0.000659899134319
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M8YY20	 Inner membrane symporter yihP	0.000728525647863
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3LIM1		0.000728477443259
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LW23	 L asparaginase, type II	0.000728314160392
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76173	 Anaerobic dimethyl sulfoxide reductase chain YnfH	0.000727854688092
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F7V8	 UPF0761 membrane protein ACIAD3168	0.000727763100195
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M9KL10	 Outer membrane autotransporter barrel domain protein	0.000727740293955
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZLD0	 Transcriptional regulator, LysR family	0.000727726864728
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7SGE5	 Glycosyltransferase, group 1 family protein	0.000727347036267
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F3RDV1	 Amino acid ABC transporter permease	0.000727004655918
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FCG2		0.000693179748358
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S5SX20	 Amino acid ABC transporter ATP binding protein	0.000726928417906
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A037YIC8	 Alpha amylase	0.000726651164721
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GUE2	 Predicted transcriptional regulator, marR family	0.00072636379533
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3Z714	 Conserved domain protein	0.00072636379533
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4RNY8		0.00072636379533
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P52003	 Multidrug resistance operon repressor	0.00072636379533
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSW6		0.00072636379533
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_V4YP39		0.00072636379533
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8G2S0		0.00072636379533
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q17WK7		0.000726341579077
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4X3Z5	 Nitrous oxide reductase	0.00072633755472
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8UDC1	 Oligopeptidase A	0.000725712347941
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I1ZM50	 Cytosine specific methyltransferase	0.000725284923713
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9LDC5		0.000659899134319
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3MLT7	 Histidine ammonia lyase	0.000479509680073
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3MLT7	 Histidine ammonia lyase	0.000154691386859
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3MLT7	 Histidine ammonia lyase	8.8487789264e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X3EZY0		0.000725238968953
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SXB9	 RNA methyltransferase, TrmH family, group 3	0.000725236818902
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4WJP6		0.000725062068096
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U5NEG6	 Type I restriction enzyme subunit M	0.000724804065017
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZX0	 Methyl accepting chemotaxis sensory transducer	0.000724314550599
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8P1N3	 Probable dipeptidase A	0.000724194861223
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33668		0.000711018081343
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GDD7	 Poly beta 1,6 N acetyl D glucosamine synthesis protein IcaD	0.000723913514712
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q75V35		0.000524138692523
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PS43	 RepA	0.000723336752298
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RDL9	 Penicillin insensitive murein endopeptidase	0.000723167837466
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XY80	 Aminopeptidase Y	0.000723142671967
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7IGG8	 Coenzyme F390 synthetase	0.000723061890479
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8G5F1	 Cell wall binding protein	0.000722849173542
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I1X8		0.00072283188444
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_H8FXV9		0.000615637607018
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q3JYQ4	 Deoxyribose phosphate aldolase	0.000567216671637
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4ZGM6	 PTS system, 3 keto L gulonate specific IIB component	0.000722467911687
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZMF4	 Phage Holliday junction resolvase	0.00072242507642
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6GBL6	 Arginine agmatine antiporter domain protein	0.000722287378105
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2TBY2	 VRR NUC domain protein	0.000722206777677
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J7MB46	 Quinolone resistance protein	0.000722051375175
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4TIR4		0.000691538133913
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7QYT4	 Methyltransferase type 12	0.000721896553644
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5VXC5	 Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor	0.00072166871277
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87VK8	 UPF0313 protein PSPTO_4928	0.000721365625529
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7WWM9		0.000721175482512
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MYM9		0.000721175482512
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I9RNM3	 Putative sialic acid transporter	0.000721175482512
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9UTC5		0.000721175482512
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J0J9	 DinB YfiT family metal binding protein	0.000721175482512
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1QEF7	 Putative 3 methyladenine DNA glycosylase	0.000721175482512
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RW76		0.000721175482512
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3US46	 Major facilitator superfamily metabolite H symporter	0.000721080768793
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I0J3	 NADH quinone oxidoreductase subunit J	0.000611603995236
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q46MN5	 Hydrophobe amphiphile efflux 1 HAE1	0.000720489859718
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LQW6		0.000593909220891
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R8A2Q2	 ABC transporter ATP binding protein	0.000720244318776
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8BCW1	 4 keto 6 deoxy N Acetyl D hexosaminyl  aminotransferase	0.000720132333775
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P42308	 Citrate transporter	0.000720111365776
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V9P7	 RNA binding protein, putative	0.000720040495081
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A037Y9B8	 Transcription repair coupling factor	0.000719766663666
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9UY99		0.000711575823346
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WVC3		0.000719210066935
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8VVL8	 ORF 5	0.000711089418374
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SRZ3	 Aminoglycoside phosphotransferase	0.000718963073588
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G8QBV2	 Hypoxanthine guanine phosphoribosyltransferase	0.000718896886982
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VF28	 Cobalt precorrin 6x reductase	0.000718699398007
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H4DL83	 Transposase for IS1272	0.000389824585139
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q01609		0.000718095773545
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8RAH0	 Chromosome partitioning protein ParA	0.000717543988381
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2ESK7	 Integrase core domain protein	0.000717504554246
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S0ZMG1	 Outer membrane protein YejO	0.000717271590249
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P72151	 B type flagellin	0.000717229855646
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M5K5	 Peptidoglycan binding domain 1 protein	0.000699296994483
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8PG33	 RNA polymerase sigma factor RpoD	0.000716882137684
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0K8	 Amino acid permease associated region	0.000716711406328
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3YR32	 Nitroreductase like oxidoreductase	0.000716638539331
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q1LDL8		0.000716334692139
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M0X3	 Transcriptional regulator, AraC family	0.000716226864333
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7WYH3		0.000716060762778
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7NRU0		0.000716060762778
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J1D2D1		0.000716060762778
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J1EZP1		0.000716060762778
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0KPL2		0.000715997551195
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U7DNX2	 TonB denpendent receptor	0.000715922232758
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVA7	 Phosphoglucomutase phosphomannomutase	0.000715290193969
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83KI3	 UPF0339 protein YegP	0.000715013306932
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ARQ0	 Cytochrome c oxidase, Cbb3 type, biogenesis protein CcoI	0.000715000205124
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1M0U2		0.000714866991252
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZPT0		0.000682193023999
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L4JWA2		0.000714849381789
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V1A381	 Diguanylate cyclase domain protein	0.000714832102723
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02S28		0.000714422548527
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRV7	 Blue  copper domain protein	0.000714303774032
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69818	 Fructose like phosphotransferase enzyme IIB component 2	0.000714140238531
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JIG9	 TetR family regulatory protein	0.000713506926761
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0K963		0.000713379414378
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G4R209	 Bacterial regulatory s, gntR family protein	0.000713345816056
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E3G1U2	 Alpha L rhamnosidase	0.000713158365835
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2A326	 PSP1 domain protein	0.000713107957155
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T2L9	 Sensor histidine kinase	0.000713104709801
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UXA3	 Flagellar hook associated protein 1 FlgK	0.000712950355403
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W5V4L7	 Membrane protein	0.000665083122421
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D0Z969	 ATP dependent DNA helicase Rep	0.00071258801137
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WSV2	 Pseudouridine synthase	0.000712533216495
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GNU7	 Cell shape determining protein MreC	0.00071219995149
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KG11	 Membrane protein, putative	0.000712191070545
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1JSC3	 UvrABC system protein B	0.000711859573742
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3SIT9	 LexA repressor	0.000711851193441
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V4LC05		0.000464536438986
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V4LC05		0.000247023758498
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49VT5		0.00071145030046
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UXY2	 UPF0761 membrane protein PLES_43641	0.000711376734223
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M428		0.000711375460242
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V4F8		0.000711364484222
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSU4	 NLP P60 protein	0.000711319264646
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I0DBR2	 IS1627s1 related, transposase	0.000711238535659
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2T8R8	 Pyoverdine chromophore biosynthetic protein PvcA	0.000683893682624
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O05253		0.000711113835332
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9RWZ9	 RNA methyltransferase	0.000711024774133
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ80	 RNA polymerase, sigma 24 subunit, ECF subfamily	0.000711018081343
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UVP3		0.000711018081343
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6STX2		0.000711018081343
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E092		0.000711018081343
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VJM5		0.000711018081343
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SVA4	 IS861, transposase OrfB	0.000711018081343
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R8Y0	 Escherichia coli IMT2125 genomic chromosome, IMT2125	0.000711018081343
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0TFV2		0.000711018081343
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1MPQ9	 30S ribosomal protein S19	0.000711018081343
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HS31		0.000711018081343
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VIA0		0.000711018081343
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6S3	 Arginine decarboxylase	0.000710960501543
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRK6	 Dephospho CoA kinase	0.000710800654076
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M074	 Alcohol dehydrogenase GroES domain protein	0.000710442298003
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8H984	 Two component sensor	0.000710304634551
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY87		0.000710197433332
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M2L0	 Transcriptional regulator, Fnr family	0.000710000536715
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MQ76	 Cell wall hydrolase autolysin	0.000709837321454
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZVQ0		0.000709823299687
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0GHY6	 Methylenetetrahydrofolate reductase	0.000709603520874
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N6VFQ4	 ATP dependent DNA helicase DinG	0.000709532381119
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q11190	 Electron transfer flavoprotein ubiquinone oxidoreductase, mitochondrial	0.000704395663507
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4H976	 Dihydrofolate reductase	0.000709356762229
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWP7	 Transcriptionalregulator, CopG family	0.00070901115589
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LSJ7	 Fe S metabolism associated SufE	0.000238686920929
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7SMY3	 Phosphoglycerate mutase family protein	0.000708523281056
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_H8HKL3	 Acyl CoA dehydrogenase FadE23	0.000708502728688
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M8HET6	 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.000708297348887
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VA38	 Anchored repeat type ABC transporter, ATP binding subunit	0.00070824858399
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H6LJ16	 UV damage endonuclease UvdE	0.000707988565689
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E4PRH8	 Peptidase C39, bacteriocin processing	0.000707794261479
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5AJI0	 Amino acid ABC transporter permease	0.000707635878705
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E5AMJ8	 Dipeptide binding protein	0.000707316617555
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8SRN2	 Replication protein	0.000707112426178
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KG04		0.000706513665674
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023KT22	 DNA polymerase II	0.000612374379754
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023KT22	 DNA polymerase II	9.40651765849e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R2NGH3		0.000706382139273
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0JV07		0.00070604592693
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_P14949	 Thioredoxin	0.00070604592693
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P52645		0.00070604592693
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76163		0.00070604592693
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YCX5		0.00070604592693
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_UPI0002BB49A5	 hypothetical protein, partial	0.00070604592693
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q161J2	 Helix turn helix domain protein, putative	0.000705892173049
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4LM41	 Nicotinate phosphoribosyltransferase	0.000705575917574
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87WZ6	 MutT nudix family protein	0.000705546848704
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1U1	 RNA polymerase sigma 54 factor	0.000705535209408
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3KDB9	 Alanine racemase domain protein	0.000705137503292
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZKB3	 Probable malonic semialdehyde reductase RutE	0.000699507702346
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q07806	 Penicillin binding protein 1A	0.000704802845087
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8IG29		0.000704667999233
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_L7U2C9	 Acetyltransferase	0.000704609763789
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4SQH0	 Acyl [acyl carrier protein]  UDP N acetylglucosamine O acyltransferase	0.000704574162168
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G8RED1	 Virulence associated cell wall anchored protein SasG	0.000704548511625
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D9PXI4	 A1AO ATPase, subunit K	0.000704304011871
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G2TBP0	 Nitrogenase	0.00070425899173
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZTG2		0.000704205130172
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_U3TMR9	 Replication protein	0.000704036889248
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KFC2		0.000703760965655
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B637		0.00070374273317
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C9BIE5		0.000703299244894
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KJF9	 Flagellar hook protein FlgE	0.000703190124479
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7VAR6		0.000605577128916
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A7I262	 DedA family protein	0.000702648934871
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZJB4	 Diguanylate cyclase	0.000702608495189
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L8ND35	 Sigma 54 dependent transcriptional regulator	0.000702263090012
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI00035C7086	 hypothetical protein	0.000702058522915
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76394		0.000701498993396
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2RD63	 EAL domain protein	0.00070138258445
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D7GGE9	 Glyoxalase bleomycin resistance protein dioxygenase	0.000701142830212
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1PAM7		0.000701142830212
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_H8L0H5	 Plasmid stabilization system protein	0.000701142830212
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49YX8		0.000701142830212
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R6SXB2	 RNA directed DNA polymerase	0.000701142830212
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PV23		0.000701142830212
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8T335		0.000701142830212
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_K7TAU7		0.000509922058339
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T7JW17		0.000700706365616
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K4L3Q5	 D serine D alanine glycine transporter	0.000700507657826
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P33744	 Aldehyde alcohol dehydrogenase	0.000700464528762
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B0SXA7	 Acetyl CoA carboxylase, biotin carboxyl carrier protein	0.000700451231445
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77495	 Propionate  CoA ligase	0.000699848729478
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1J9		0.000699816182166
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G0VME5	 Citrate transporter	0.000699621084748
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9X429	 CylG	0.000699589051094
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JI07	 Transcriptional regulator	0.000699284773066
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4RAV2	 Phosphoglycerate mutase related protein	0.000699282595502
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5TNC8		0.00069928246333
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SWT5	 Peptidase S8 and S53 subtilisin kexin sedolisin	0.000699107614749
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N0V8	 LivM	0.000698622830804
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DV83	 HAD hydrolase, family IIB	0.000698321388871
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7VAG6		0.000698011080431
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02PS5	 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.000611018561096
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4XE09		0.000697790749888
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6XHZ3	 Iron compound ABC transporter ATP binding protein	0.000398328566884
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R6XHZ3	 Iron compound ABC transporter ATP binding protein	0.000299415772722
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45018	 ATP dependent RNA helicase HrpA homolog	0.000697729639013
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZ76	 UDP 2 acetamido 2 deoxy 3 oxo D glucuronate aminotransferase	0.000697706766682
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0H8V7	 GGDEF domain EAL domain protein	0.000695186175258
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q634K9		0.00069752869192
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E249		0.000697466315384
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C8YZ29	 Wzm	0.000697295722693
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q9A0C6	 Carbamoyl phosphate synthase large chain	0.000369949447812
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9A0C6	 Carbamoyl phosphate synthase large chain	0.000308995286701
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O67501	 Inorganic pyrophosphatase	0.000696885416442
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F5XRW0		0.000696662451208
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FCV5	 Lipoprotein	0.000696550838907
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VA35	 Chain length determinant protein	0.000696418349536
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKA4		0.000696307362418
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D8E115		0.000696307362418
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4VSV6	 Putative ribosomal protein 	0.000696307362418
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_I0C6E4		0.000696307362418
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_J5IRF9		0.000696307362418
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9UWJ3		0.000696307362418
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZDN3	 GntR family transcriptional regulator	0.000696069389982
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9J874	 CRISPR associated endonuclease cas3 hd	0.000695594949836
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K9NP10	 L glutamine synthetase	0.000695504547838
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4LIM7	 CaiB BaiF family protein	0.000695157939648
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MFW2	 Cobalamin biosynthesis protein CobD	0.000695020767137
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I1M2	 2 oxoisovalerate dehydrogenase subunit alpha	0.0006950193564
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P21629	 High affinity branched chain amino acid transport ATP binding protein BraF	0.000695010385637
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K0WK29		0.000694751875989
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4K6P3		0.000694710327191
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5AJH9	 Glycine betaine choline proline family ABC transporter periplasmic ligand binding protein	0.000694564791563
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M5HHC7		0.000694552925733
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9LZ47		0.000499323222088
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYQ9	 MgtE intracellular region	0.000694326289851
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A966	 Chemotaxis protein CheW	0.000694324752888
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4MT97	 Predicted Zn dependent protease	0.000694169105617
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CU75	 Transposase like protein	0.000694098410268
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V778	 Dihydroorotase	0.000694080698175
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0ETM1	 Bifunctional riboflavin kinase FMN adenylyltransferase	0.000693962749146
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0I0	 Ferredoxin hydrogenase	0.000693650962514
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XL57	 ATP dependent 6 phosphofructokinase 2	0.000683058213731
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT81	 Histidine kinase internal region	0.000693326082495
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D2BL68	 Acetyltransferase, GNAT family	0.000693276401122
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_N4VKC9	 Phosphorylcholine phosphatase	0.00069300917597
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V575	 O antigen polymerase family	0.000692921715302
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D7I005		0.000664681417311
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6S241		0.000692386251849
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28911		0.00054092040422
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I4L1	 Probable deoxyguanosinetriphosphate triphosphohydrolase	0.000683958134496
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4K0X3		0.000691571395952
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ35	 Cyclase family protein	0.000691538133913
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A9CR91		0.000691538133913
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V1M1	 Nitrate inducible formate dehydrogenase, gamma subunit	0.000691538133913
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N3Y4	 XkdX family protein	0.000691538133913
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F5XQJ4		0.000691538133913
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O52706	 50S ribosomal protein L12	0.000691538133913
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADN4	 UPF0438 protein YifE	0.000691538133913
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45751	 Putative DNA utilization protein HofO	0.000691538133913
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q05626		0.000691538133913
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6M763		0.000691538133913
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMM1		0.000691538133913
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0U8	 Aminotransferase, class IV	0.000691472977146
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K121		0.000691180411654
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTI9	 Transcriptional regulator, XRE family	0.000691172436473
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EQP3	 AAA ATPase domain protein	0.000691143576983
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5QE34		0.000690924182199
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P44640		0.000689779888995
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8NUV0	 Putative surface protein MW2416	0.000689725885512
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P38067	 Succinate semialdehyde dehydrogenase [NADP]	0.000686345499892
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ19	 Drug resistance transporter, EmrB QacA subfamily	0.000689368223791
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX89	 Elongation factor G, domain IV	0.000689353290142
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A1R6L8	 Glucose 1 phosphate adenylyltransferase	0.000683338788226
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S5URW9	 Mg transport ATPase protein C	0.00068900625985
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZF1		0.000688531950958
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUP1	 Peptidoglycan glycosyltransferase	0.000688405249694
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I0HNR0	 Amino acid ABC transporter substrate binding protein	0.000688128122462
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJC5		0.0006879597499
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYC4	 Methyltransferase, putative	0.000687873736348
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D3F1T9		0.000673864235386
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5Y0W4	 UPF0234 protein KPK_4305	0.000660819555062
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2JSF8	 Major facilitator superfamily MFS_1	0.000687380376128
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51391	 Glycerol 3 phosphate regulon repressor	0.000687363946679
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9BEV2	 Protein RecA	0.00068736170784
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V6ACD4	 Peptidase M14, carboxypeptidase A	0.000687326229013
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2RNA5	 Imidazole glycerol phosphate synthase subunit HisH	0.000687092593661
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E077		0.000686833792861
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3YV68		0.000686833792861
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7DJJ7		0.000686833792861
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CS52		0.000686833792861
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9K1N7		0.000686833792861
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T0AH84		0.000686833792861
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y916		0.000686833792861
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5E1Z8	 Resolvase, N terminal domain protein	0.000686833792861
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y2PNE3		0.000686833792861
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VG84	 Class I glutamine amidotransferase	0.000686798190251
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5XL07		0.000686795052605
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8FUQ7	 ApbE family lipoprotein	0.000686519138422
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VKX5		0.000686466237472
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G0I8I1		0.000686460513629
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O52982		0.000686315818662
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EIW6	 Thioesterase superfamily protein	0.000686315818662
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1AJH6	 N acetylneuraminate epimerase	0.000686198287424
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q323Z6	 Swarming motility protein YbiA	0.000686184021827
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7B3H1	 CDP alcohol phosphatidyltransferase	0.000686106081785
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R4YE56	 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.000664240575992
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E6V0C3	 Nicotinamidase	0.000686090802898
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U0D4D4	 Membrane associated protein uidC	0.000685882201913
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_L7VTP9	 Nitrogenase iron molybdenum cofactor biosynthesis protein NifE	0.000685736148003
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8AQJ7		0.00032052243667
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XZS6	 GCN5 related N acetyltransferase	0.000685286869904
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJF5	 tRNA dimethylallyltransferase	0.000536904316636
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRI0	 Forkhead associated protein	0.000685231088727
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1CHR3	 Tripeptide aminopeptidase	0.000685037738228
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A011GQD3		0.000684902201545
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T7XDH6	 Cytochrome bd II oxidase subunit 2	0.000684795714488
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M7Y7	 Transcriptional regulator, TetR family	0.000684602548805
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2E2F5	 4Fe 4S binding domain protein 	0.000684355232724
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HYQ2		0.00068424450037
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F3H6D0	 Acriflavin resistance protein 	0.000684139680632
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L3U9S8	 Protein hdeD	0.000683732963096
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9KZ43	 GTPase Der	0.00068343421517
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TJ96	 Nudix family hydrolase	0.000683424095511
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6A8Z3		0.000341096511999
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A4IQZ4	 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	0.000680666176512
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6UWG3	 Flavodoxin	0.000682839376483
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024EBR0	 LmbE like protein	0.000682567487636
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O33730		0.000682533397142
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V5WF15	 Oligopeptide transport system permease protein OppB	0.000682497907521
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5N7N0	 Dihydrolipoamide acetyltransferase 	0.000682402607106
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADD8		0.000682354867111
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PGB8	 Histidine kinase	0.000682276576106
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C4KRY7	 Class II aldolase adducin family protein	0.000551822681502
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C4KRY7	 Class II aldolase adducin family protein	0.000130445177716
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L1FMR3	 Respiratory chain NADH dehydrogenase, 30 Kd subunit	0.000682193023999
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_UPI0002BA38E1	 hypothetical protein, partial	0.000682193023999
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8IRK1	 Replication initiator A protein	0.000681995514264
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P72146	 WbpN	0.000681762050634
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B0RVC3	 Two component system response regulator	0.00068133458395
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47138		0.000681008827598
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E8ZZT0	 DNA translocase ftsK	0.000680940616754
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8FQ12	 Chemotaxis protein CheW	0.000680660005962
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P26905	 Dipeptide transport ATP binding protein DppD	0.000680396669763
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R5VY03	 Pseudouridine synthase	0.000680372916778
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3NT46	 Oxygen dependent coproporphyrinogen III oxidase	0.000660459267334
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B5SFG5	 Amino acid binding periplasmic protein	0.000679727090511
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VHD7	 Membrane fusion protein	0.000679683224526
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1L4	 Putative cell wall binding repeat containing protein	0.000679625990338
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9DY53	 Transcription repair coupling factor	0.000679620048512
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P34750	 Fimbrial assembly protein PilQ	0.00067955082776
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACU0		0.000679419612885
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I509	 NADH dehydrogenase (quinone)	0.000647208766358
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K9NK52	 Putrescine binding periplasmic protein	0.000679173457958
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C5IBJ2	 RhsA	0.000678811662042
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2L8	 Protein tyrosine phosphatase	0.000678788076234
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G2NTW9	 Short chain dehydrogenase reductase SDR	0.00067866641599
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N1M7		0.000517767013082
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6FSB9	 Peptidase M24	0.000678489387736
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G5JTG6	 Transcriptional regulator, ArsR family	0.000677622177864
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QDX5		0.000677614547326
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R6K9		0.000677614547326
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FA27		0.000677614547326
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1HMP3	 Pyrimidine utilization protein D	0.000677614547326
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S5XJR5	 ABC type proline glycine betaine transporter, periplasmic component	0.000677440112902
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E3V1		0.000677418937704
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5I3J7	 Aec68	0.000677390856954
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A9W5	 Probable cytosol aminopeptidase	0.000677388162493
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MDU9	 Permease	0.000677251775375
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVP1	 Sterol 3 beta glucosyltransferase	0.000676771372262
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HUL4	 Epoxyqueuosine reductase	0.000676758776639
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6T1E5	 60 kDa chaperonin	0.00067641501783
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B9J7R7	 Biphenyl 2,3 diol 1,2 dioxygenase protein	0.000676263568495
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1AYP4	 Di tripeptide permease YjdL	0.000676251295495
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5WVJ2	 CRISPR associated endoribonuclease Cas2	0.000676216401888
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5WCY2	 FAD linked oxidase domain protein	0.000579256107138
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WCY2	 FAD linked oxidase domain protein	9.68949784588e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O34512		0.000357172373802
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_O34512		0.000318849439772
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M053	 Glycoside hydrolase, family 3 domain protein	0.000675958305488
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NFS1	 CRISPR associated endoribonuclease	0.000675920424571
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4GB36	 FeS assembly ATPase SufC	0.0006758431901
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8K911	 PTS system mannitol specific EIICBA component	0.000672389021896
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O50274	 Bifunctional enzyme CysN CysC	0.000675528434272
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E128		0.000675524149881
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88N58		0.000675391919232
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1LUI1	 D galactose binding periplasmic protein MglB	0.000675209889375
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q13V14	 tRNA  ) methyltransferase	0.000391335533139
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q13V14	 tRNA  ) methyltransferase	0.000283608895268
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQP5	 NLP P60 protein	0.00067467542542
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1ZV58	 Succinate dehydrogenase [ubiquinone] iron sulfur subunit, mitochondrial	0.000674674252818
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A7I616	 Imidazole glycerol phosphate synthase subunit HisF	0.000346957276804
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A7I616	 Imidazole glycerol phosphate synthase subunit HisF	0.000303219391147
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MWT9		0.000674549044356
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MFG6	 Sulfite reductase	0.000674474090038
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B0KJX0	 DNA polymerase III, delta subunit	0.000674399026456
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6K577	 Tagatose 6 phosphate kinase	0.000674359304764
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7ESZ9	 Protein RpsU	0.000674237730642
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1TJ50	 LemA family protein	0.000655614075007
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CLP0	 Zn dependent hydrolase, including glyoxylase	0.000674049024988
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RS70		0.000673097117011
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WVX1	 Hpt protein	0.000673097117011
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KLH6		0.000673097117011
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D7ZQF1		0.000673097117011
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H0DYK0	 Transporter, major facilitator family protein	0.000673097117011
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I3F4U4		0.000673097117011
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S180		0.000673097117011
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DXI9	 Prophage LambdaSa2, transcriptional regulator, Cro CI family	0.000673097117011
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8KKK4		0.000673097117011
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023WVI0	 Aldehyde dehydrogenase	0.000673088395813
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M5ACV5	 Protein LemA	0.000662062738042
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M5H1		0.00067307673286
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZJG8	 Membrane protein insertase YidC	0.000673017581951
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4T079	 Exodeoxyribonuclease 8  (EXOVIII)	0.000672873880001
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP88		0.000672861369956
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RVX8	 Protein TniQ	0.000672669435697
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9A4	 Ferritin like protein 2	0.000672609456262
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DU59	 Protein disulfide isomerase like protein	0.000672580016256
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S457	 Siderophore receptor	0.000672529477826
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LXK3	 Methyl accepting chemotaxis sensory transducer with Cache sensor	0.000672512703764
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V2J2		0.000659939312412
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYF9	 HAD superfamily hydrolase, subfamily IA, variant 1	0.000672381056246
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1U4C6	 tRNA dimethylallyltransferase	0.000667916204502
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R5Q9		0.000671758064388
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SVZ8		0.000671682475861
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9Z9R9		0.00062635438623
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZXQ3		0.000671345941158
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E6C679		0.000652574577783
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0HBF0		0.000671220733383
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2T3V8	 Aminotransferase, class III	0.000671071779942
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A7MHL5		0.00067075144455
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I7A3		0.000670691948866
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RW82	 Inositol monophosphatase family protein	0.000670419493679
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9RZW6	 Glutathione S transferase	0.000670305570117
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HXC0		0.000670141618885
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1VQ96		0.00066979534931
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YYP8	 Pyridoxal kinase	0.000669763205665
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_O33948	 Catechol 1,2 dioxygenase 1	0.000669704794825
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C3KCS9	 Lipid II flippase FtsW	0.000669672022575
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8Z9U9	 DNA replication and repair protein RecF	0.000669600196341
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0H5K7	 Serine threonine protein kinase	0.000669490971428
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77802	 Probable outer membrane usher protein EcpC	0.000669420803779
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HA42		0.000669390217573
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABY0	 Flagellar protein FliL	0.000669272701571
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSR6	 Ribosomal protein S12 methylthiotransferase RimO	0.000669270752773
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2HWA5		0.000669233466448
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPH0		0.000669016339813
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VBN2		0.000668969867074
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F0IYA9	 Fis family transcriptional regulator	0.0006689666458
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0E372	 Sensor histidine kinase	0.000668945992791
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U1Z7		0.000413312901999
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C8U5G9	 FMN reductase  RutF	0.000551483573384
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P40710	 Lipoprotein NlpE	0.000668861355274
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F0RPV6	 NLPA lipoprotein	0.000528524664931
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RPV6	 NLPA lipoprotein	0.000134799155604
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q52463	 Glycosyltransferase alg8	0.000668758266018
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SPQ1		0.000668639520207
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E7UM91		0.000668639520207
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P69976	 Yop proteins translocation protein L	0.000668639520207
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X9H7		0.000668639520207
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI00037EFB09	 hypothetical protein	0.000668639520207
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SXZ0		0.000668639520207
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R624	 Cystathionine methionine metabolism pyridoxal phosphate dependent enzyme	0.000668495770844
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I0Q0	 2 heptyl 3 hydroxy 4 quinolone synthase	0.000668379938376
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RLI9	 Myo inositol catabolism protein	0.000667822845081
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MX89		0.000570421285597
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZF4	 Virginiamycin B lyase	0.000667486684906
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F5X4D0	 GNAT family acetyltransferase	0.00066748267531
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1HD40	 Inner membrane protein ybhI	0.000667401848115
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F8GY06	 Endoribonuclease L PSP	0.000667138073407
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YWD4	 Sensor response regulator hybrid	0.00066708570146
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F4GAH1	 Transposase IS4 family protein	0.000602796016064
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HTE2		0.000666987302423
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GCL3	 Cation transport protein	0.00066679849014
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51392	 Probable alginate O acetylase AlgI	0.000666750265292
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HVK0		0.00065216761568
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A029NFD4	 Alcohol dehydrogenase, propanol preferring	0.000666605366266
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1Q7	 D galactose binding periplasmic protein	0.000666457036605
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7SLE8	 Acyl CoA thioester hydrolase, YbgC YbaW family	0.000666403144849
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMM5		0.000595591303228
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I596	 Neutral ceramidase	0.000666061076762
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUL1		0.00066604987957
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1R3Q2	 Oxidoreductase, short chain dehydrogenase reductase family	0.000665980834375
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TMH9	 Autolytic lysozyme	0.000665638467423
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6S5	 Peptidase M16 domain protein	0.000665535448641
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V3W1	 Permease	0.000665429315637
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_T3IDK7	 Pyridoxal phosphate dependent enzyme family protein	0.000665412665277
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1VES8	 Xanthine phosphoribosyltransferase	0.00066523100074
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PRQ0	 Peptidoglycan GlcNAc deacetylase	0.000664903347456
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT57		0.00066454681351
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A017JTF6	 Autotransporter  family porin	0.000664240575992
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023YQ57		0.000664240575992
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6ZNU0	 DnaJ domain protein	0.000664240575992
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D8CA09		0.000664240575992
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABF5	 Ethanolamine utilization protein EutM	0.000664240575992
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P68648	 Ferredoxin like protein FixX	0.000664240575992
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8U0I4		0.000664240575992
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6HWR1	 DNA  methyltransferase	0.000664240575992
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_T4EWY4	 DEAD DEAH box helicase family protein	0.000664184131175
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MS68	 Outer membrane protein OpcA	0.000663999133566
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8QUX6	 Transcriptional regulator PdhR	0.00066395182158
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7FMJ5	 Autoinducer 2 kinase LsrK	0.000655521408949
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A024L3Z4	 N acetylneuraminic acid outer membrane channel	0.000663235574101
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O68045	 DNA polymerase III subunit epsilon like protein	0.000662808246193
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RPF2		0.000662639720761
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PVT8		0.000662582627954
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0LQZ5		0.000662432101606
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DS16	 LacI family transcriptional regulator	0.000662149778879
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C1CXG7	 30S ribosomal protein S10	0.000662069855156
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9R1Z5	 Chemotaxis protein CheY	0.000661517293878
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNU0	 Transcriptional regulator, LacI family	0.000661429556345
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4K367	 TetR family transcriptional regulator	0.000661330361373
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E5AQY1	 N SUCCINYL L,L DAP AMINOTRANSFERASE 	0.000661090359954
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X4X2W1		0.000660511834425
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2HA74	 Polysaccharide biosynthesis protein WbpM	0.000659998942328
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PK49		0.000659899134319
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X5D6	 50S ribosomal protein L30	0.000659899134319
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6IBL9		0.000659899134319
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D0ZX68		0.000659899134319
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D1R335		0.000659899134319
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SF04		0.000659899134319
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0CAV2	 Propeptide, PepSY amd peptidase M4	0.000659899134319
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSW9		0.000659899134319
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MRM3		0.000659899134319
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6TLS6	 Phosphoribosylglycinamide formyltransferase	0.000659771048306
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9T869	 Predicted protein	0.000659372121196
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YQ12	 Surface antigen like protein	0.000659253723531
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4A4S9	 Transcriptional regulator, GntR family, putative	0.000659202910467
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4G3E6	 Isoleucine  tRNA ligase	0.000659188364431
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MMF7	 Penicillin amidase	0.000659010476323
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3KHK6	 GntR family transcriptional regulator	0.000658700835612
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZMS7	 Protein RecA	0.000658677581948
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XIQ9	 Cobalt dependent inorganic pyrophosphatase	0.000658607315677
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YRF9		0.000658436289181
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C8U5H2	 Putative aminoacrylate peracid reductase RutC	0.000410425071345
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P44700		0.000642414575323
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VDM0		0.000658220532282
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MLY8	 Periplasmic metal binding protein	0.000658110488456
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8UIH3	 Stage V sporulation protein R	0.000651879585386
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E7B1W7	 Zinc ABC transporter, inner membrane permease protein ZnuB	0.00065807454613
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_V5NK98		0.000657977876474
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZXP1	 Apo citrate lyase phosphoribosyl dephospho CoA transferase	0.000657940699917
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U6EZC2	 Transcriptional regulatory component of sensorytransduction system	0.000657891609843
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YVA6		0.000657777542327
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KU70	 Periplasmic solute binding protein	0.000657663410838
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P44305	 Ribosomal protein alanine acetyltransferase	0.00049492435074
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X4A3		0.000657572579186
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9Z3U1	 DNA translocase FtsK	0.000657563587322
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0U5W2	 Cyclic diguanylate phosphodiesterase domain protein	0.000657499580511
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0QNU4	 1 acyl sn glycerol 3 phosphate acyltransferase	0.00065744489057
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DM00	 Glutamate dehydrogenase	0.000657406476217
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ13	 Peptidase U32	0.000657374571696
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0PD68	 Fructokinase	0.000657334333813
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8XYX1	 tRNA dihydrouridine synthase C	0.000657309722104
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A5EUU4	 Na translocating NADH quinone reductase subunit E	0.000580256135353
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_K4HJS6	 Bacterioferritin comigratory protein	0.000657042428114
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4Z8E0	 GntR family transcriptional regulator	0.000656470489343
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2ERS5	 ThiS family protein	0.000656161392811
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H3M8	 MotA TolQ ExbB proton channel family protein	0.000655922367335
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2NAE3		0.000655722647739
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QEH4		0.000655614075007
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1HT62		0.000655614075007
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U5NMZ2		0.000655614075007
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI00037D91A9	 hypothetical protein	0.000655614075007
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1GG79	 CFA I fimbrial auxiliary subunit	0.000655614075007
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q1CS39	 Uroporphyrinogen III cosynthase	0.000655506180151
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M334	 Glycogen synthase	0.000655348452505
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MGS7	 Polysaccharide deacetylase	0.000655326377057
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L3HWG0	 Type VI secretion system Vgr family protein	0.000655261797636
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LXC7	 Glycoside hydrolase family 25	0.000655125162731
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VJG6	 Lipid A biosynthesis lauroyl acyltransferase	0.000655056982459
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U0D3S4		0.000654898655216
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E1R075	 FAD dependent oxidoreductase	0.000654853840295
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IQ01		0.000313554557611
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q88WV2	 Transcriptional repressor NrdR	0.000654015998401
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9LHH7	 Bifunctional protein FolD 2	0.000635131471829
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7FD15	 Glutamate racemase	0.000653840225985
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48KY0	 ABC transporter, periplasmic substrate binding protein	0.000653688232986
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4W006	 DNA polymerase III, alpha subunit	0.000653464131012
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSP7		0.000653382309034
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51465	 Flagellar motor switch protein FliM	0.000653116367283
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q92Q22	 Serine  tRNA ligase	0.000648888261255
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8FV37		0.000652972692331
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E9X900	 PmbA protein	0.000652915338267
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A0A024H2L6		0.000652768885366
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q07MI4	 ETC complex I subunit conserved region	0.000652438326695
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WR89		0.000652361831274
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1I7R1		0.000652339044328
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q63JM0	 Tryptophan synthase alpha chain	0.000638671639834
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5YPV8		0.000651384306779
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E8ZN46	 PTS system IIB component	0.000651384306779
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U3N4		0.000651384306779
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0TSK5		0.000651384306779
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q7WDY0	 1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.000634273272571
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2RXH9	 S methyl 5 thioadenosine phosphorylase	0.000615759705216
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SZ20	 Glycosyl transferase	0.000650876275903
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023LG84		0.000650803774428
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I0ZLD5	 Cation acetate symporter ActP	0.000650617303898
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VEE0		0.00054575840574
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9Z2P0	 UDP N acetylglucosamine 1 carboxyvinyltransferase	0.000650059262646
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2SAB7	 Aminotransferase, class II	0.000649937927659
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02RK7		0.000649694070827
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZVK4		0.00043286037958
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5AJP0	 Lipoprotein	0.000628532375758
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2S8W1	 Glucose 6 phosphate isomerase	0.000648714426611
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_B1LBM8	 50S ribosomal protein L5	0.000405983498507
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1LBM8	 50S ribosomal protein L5	0.000242703287378
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57851	 Dihydroneopterin aldolase	0.000648422454074
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9SB21	 ABC transporter permease	0.000648382938037
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKB3	 V type ATP synthase subunit F	0.000648249294914
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XJC4	 N acetyl anhydromuramyl L alanine amidase	0.000648075027657
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y7T3	 Nitrogen regulation protein NIFR3	0.000608220286448
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0FSR8	 TolC family type I secretion outer membrane protein	0.000647614413266
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A024L5Z4	 Glycyl radical enzyme activating protein family	0.000647391468346
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76569		0.000647306938357
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IV45	 Periplasmic nitrate reductase maturation protein NapF	0.000647290208508
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023YXB9		0.000647208766358
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B3EHY1	 Rare lipoprotein A	0.000647208766358
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I2YCG5		0.000647208766358
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TWX3		0.000647208766358
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M1MK65	 Acyl carrier protein	0.000647208766358
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P24297	 Rubredoxin	0.000647208766358
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FB59		0.000647208766358
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSX3		0.000647208766358
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_V4TUU3		0.000647208766358
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YW81	 Sugar ABC transporter permease	0.000647026417604
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V5G5		0.000647000568191
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSR0		0.000646942033277
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PX82		0.000646878092154
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8UDH6	 Transposase InsF for insertion sequence IS3	0.00064685786158
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H204	 Potassium uptake protein, TrkH family protein	0.000646856405106
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q53151	 Flagellar M ring protein	0.000646770420025
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_T3GII0	 Zinc binding dehydrogenase family protein	0.000646561685192
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LPN7		0.000378144447761
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DQ18	 TonB dependent siderophore receptor	0.000646290480632
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DKJ6	 Type III pantothenate kinase	0.000646288599036
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A209	 Ethanolamine utilization protein EutP	0.000646261641789
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V9Z4G9	 Replication protein	0.000646174886531
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XPP9	 Pilus assembly protein, PilQ	0.000619414524858
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M1N3		0.000645835207236
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28VD6	 DNA polymerase III, delta subunit	0.000645763589969
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0TPF2	 Segregation and condensation protein B	0.000645691147861
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6EBU6	 Protein phosphatase CheZ	0.000644978519246
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPX7		0.000583610217058
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q893Q5	 4 methyl 5 thiazole monophosphate biosynthesis enzyme	0.000644931738727
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FAG4	 Peptide methionine sulfoxide reductase MsrA	0.000579176134669
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4FQF7	 ATP phosphoribosyltransferase	0.000619737761266
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M4YY13	 Truncated major facilitator family protein	0.000644575918822
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q2Y6A7	 DedA	0.000644369306951
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9ZN70	 Exopolyphosphatase	0.000628430308112
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KVF1		0.00064353236767
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2TZF5		0.000643292250192
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E310	 Phosphate binding protein PstS 2	0.000643097220874
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNC9	 Formate dehydrogenase delta subunit	0.000643086417524
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D1C9U0	 Cupin 2 conserved barrel domain protein	0.000643086417524
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4FX97		0.000643086417524
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C7W3		0.000643086417524
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A230	 Nitrite reductase  small subunit	0.000643086417524
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P52228	 Thioredoxin C 3	0.000643086417524
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU12		0.000643086417524
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8T5Z8		0.000643086417524
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V1BTZ7	 Putative xanthine dehydrogenase accessory factor 	0.000578166131408
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q53157	 R.sphaeroides HISI protein	0.00049150502245
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B3Q6T2	 NADH dehydrogenase  24 kDa subunit	0.000642178103372
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I3FPW3		0.000642099498458
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VMC4	 Isocitrate dehydrogenase kinase phosphatase	0.000641990969251
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M098		0.000641920985974
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2ERE8	 Zinc binding dehydrogenase family protein	0.000641618721543
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P30341	 Mercuric reductase	0.000362198555637
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P30341	 Mercuric reductase	0.000279333338104
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9U2A1	 Thioesterase PvdG involved in non ribosomal peptide biosynthesis	0.000641527845032
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4R0W4	 Metalloendopeptidase	0.000641048453231
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ47	 Predicted O linked GlnNAc transferase	0.00064104487334
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y7K0	 Extracellular fibrinogen binding protein	0.00064104487334
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV85	 Acyl CoA reductase	0.000640984617938
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTZ8		0.000640804601648
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6ANF3		0.000640307251077
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F7QL87	 ATPase	0.000562741134015
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F7QL87	 ATPase	7.74268156022e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_L1K935		0.000476247960149
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M8YJZ4	 Protein rarD	0.000640053144312
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M415	 Periplasmic binding protein	0.00063999500437
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WTC5		0.000245655882116
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5TNT7	 NAD utilizing dehydrogenase	0.000639871668841
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O33407	 Esterase EstA	0.000639577522466
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ANC5	 Glutathione S transferase family protein	0.000639107126719
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M4G7	 Surface antigen	0.000639016250329
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V458	 Lipoprotein, putative	0.000639016250329
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F127	 ATP dependent Clp protease adapter protein ClpS	0.000639016250329
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABM7	 Heme exporter protein D	0.000639016250329
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1X7	 Anti sigma 28 factor, FlgM family	0.000639016250329
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQU0		0.000639016250329
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DS01		0.000639016250329
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7UQI7	 HTH type transcriptional repressor NsrR	0.000639003472041
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S895	 Glycosyl transferase	0.0006389801203
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T0I0		0.000638944576026
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6UL31	 Endonuclease V	0.000638848166788
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P71348	 Glutamate pyruvate aminotransferase AlaA	0.000545150625325
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRS1		0.000638185003027
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K219		0.000638158037945
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O87016	 tRNA pseudouridine synthase A	0.000630673382419
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C0M782	 DNA directed RNA polymerase subunit omega	0.000638021076773
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UVV3	 Dihydroorotase	0.000637989891544
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MI14		0.000637853236769
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F7ZMV0	 ABC transporter ATP binding protein	0.000637810823745
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1P7K7		0.000637739644614
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9PBX0	 Ribose 5 phosphate isomerase A	0.000637649927085
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UXC5	 Membrane protein, putative	0.000637569831732
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9ZIJ1	 Gluconate permease	0.000338005046092
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9ZIJ1	 Gluconate permease	0.000278704439819
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2QNX4	 Nickel cobalt efflux system rcnA	0.000637476169932
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S6C0		0.000637461646381
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V1BKN9		0.00057366231563
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V042	 Acetobutylicum phosphotransbutyrylase	0.000637162148338
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QB56		0.000637101866444
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E4F3	 Bacterial regulatory s, luxR family protein	0.000637077494667
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WZY2		0.000636453435735
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SZD4	 Chemotaxis protein	0.000636406465806
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QDZ2	 Phage tape measure protein	0.000636307258426
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2KWZ9	 ATP dependent RNA helicase RhlB	0.000636302869294
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KNJ6		0.00063607002281
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49W89	 Na H(+) antiporter subunit C1	0.000636031814707
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM11		0.000463745917509
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5K0I5	 Succinylglutamate desuccinylase aspartoacylase family protein	0.0006357076425
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X2H5U3		0.000635707120079
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8SDT5	 Phi ETA orf 55 like protein	0.000635383499401
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K0I6Y3	 Tricarballylate dehydrogenase	0.00063537367262
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V4W8		0.00063537109654
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q92M99	 Phosphoglucosamine mutase	0.000631580985468
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L6YPP4	 Autoinducer 2 aldolase	0.000635096140531
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C3P4I5	 D alanine  poly ligase subunit 2	0.000634997280196
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N6Q5		0.000634997280196
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6STY1		0.000634997280196
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1VJT0	 CheW like protein	0.000634997280196
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2J9R4		0.000634997280196
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF51		0.000634997280196
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HP30	 Exodeoxyribonuclease 7 small subunit	0.000634997280196
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6D9Z3	 UPF0391 membrane protein ECA0470	0.000634997280196
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1TGA2	 Toxin	0.000634997280196
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8T0X0	 Putrescine spermidine ABC transporter substrate binding protein	0.000634997280196
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C3A4D2	 Permease, probably tetracycline resistance protein	0.000634932834381
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D5WAU2	 PTS system, N acetylglucosamine specific IIBC subunit	0.000634930859726
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5VYM5	 Outer membrane porin	0.000634832189185
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q01602	 Transcription regulatory protein OpdE	0.000634741677751
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TEB4		0.000634509277954
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E8YFF3	 Ribonucleoside diphosphate reductase	0.000634365255037
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N5A2	 Predicted methyl accepting chemotaxis protein	0.000634278397663
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E8G6	 Amino ABC transporter, permease , 3 TM region, His Glu Gln Arg opine family domain protein	0.000634216377755
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Z1D1L3	 Serine aspartate repeat containing protein D	0.00063419072701
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K4KM08	 Phosphatidylserine phosphatidylglycerophosphate  cardiolipin synthase like protein	0.00063411738238
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1Z9R3		0.000634063460667
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYG5		0.000634000424187
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7W4F7	 Exported protein, conserved	0.000633980350502
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A4QB30		0.000633976915607
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RV70	 Uricase	0.000633857383807
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88FY7	 Porin like protein NicP	0.000633817217467
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXY5	 PAS PAC sensor hybrid histidine kinase	0.000633787996241
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P26281	 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.000633674369192
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K0CGP1	 TENA THI 4 family	0.000633449688752
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P28722		0.000633179796449
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1Y1A0	 Threonine dehydratase operon activator protein 	0.000633164613458
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I7B1F5	 TRZ ATZ atrazine degradation family enzyme	0.000632969216276
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X2HE44	 DNA polymerase III delta prime subunit	0.000632852361753
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F0MAK0	 ABC type spermidine putrescine transport system, ATPase component	0.000632754773511
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNY0		0.00063269150563
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI00036A5335	 CRISPR associated protein Csd1, partial	0.000632563243464
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A9WM93	 Uracil DNA glycosylase	0.00063241446124
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6KIL0	 YihY family protein	0.000632345934558
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8RQ92	 Membrane protein	0.000632296995104
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5E715	 Methionine import ATP binding protein MetN	0.000617314631857
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8U7U4	 ABC type transport system involved in resistance to organic solvents, periplasmic component	0.000632262106141
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87YY0	 Xanthine dehydrogenase accessory factor XdhC, putative	0.000632199370858
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HXZ1	 DNA polymerase III subunit alpha	0.000622753207548
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HV71	 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.000632051903162
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HE97	 Lon protease 2	0.000632028463339
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F9IVR5		0.000631028547195
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8PYQ4	 50S ribosomal protein L31e	0.000631028547195
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V9ZEA0		0.000631028547195
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P0A5R7	 2,3 bisphosphoglycerate dependent phosphoglycerate mutase	0.00061757939823
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HA59	 Precorrin 6A synthase 	0.000630775746285
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M104	 ABC transporter related protein	0.000630631596415
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MNN1	 ABC transporter permease protein YtlD	0.000630580961655
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XW78	 Methyltransferase type 12	0.000630564851849
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C5B1H6	 Amidase, hydantoinase carbamoylase	0.000630506393274
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I2XC44	 GroES like protein	0.000630196017834
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WT68	 NADH quinone oxidoreductase subunit	0.000630171005004
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RR58	 Pilin glycosyl transferase A	0.000629968434915
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0G0	 Binding protein dependent transport systems inner membrane component	0.000629782874206
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1LYE3	 Flagellar basal body protein FliL	0.00062973850355
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SQU6	 Two component transcriptional regulator, AraC family	0.000629682126824
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ14	 AMP dependent synthetase and ligase	0.000629564560884
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2D6		0.000629391173746
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9BPH5	 Short chain dehydrogenase reductase SDR	0.000629257915046
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I1P5		0.0006292084259
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27312	 Conserved protein	0.000386837423565
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F2JLA6	 Transposase	0.000629000278862
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E9A2	 Glycosyl transferases group 1 family protein	0.000628945721476
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2U7	 Response regulator receiver sensor signal transduction histidine kinase	0.000628852452893
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F2JM36	 ABC type transporter, periplasmic subunit family 3	0.0006286723537
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E4PPH7	 DNA repair protein RecN	0.000628659121284
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q1D8I9	 Triosephosphate isomerase	0.000615851094476
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M233	 HAD superfamily hydrolase, subfamily IA, variant 3	0.000628574954666
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0GPC8	 Acyl CoA dehydrogenase	0.000628298137416
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J3T7	 5 carboxy 2 oxohept 3 enedioate decarboxylase HpaG2 subunit	0.000628240092815
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4VYZ8		0.000628085920698
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C0B199	 Curved DNA binding protein	0.000628059280551
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9WJP6	 Phage prohead protease, HK97 family	0.000628016610208
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58208	 Protein MioC	0.000628014034582
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P58113	 Pirin like protein CC_1473	0.000627868436245
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q2SHM4	 Phosphonoacetaldehyde hydrolase	0.00062743336707
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTV3		0.000627402882465
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y9Z4		0.000627235957685
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A0Q3H7	 Riboflavin biosynthesis protein RibBA	0.000336619423289
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0Q3H7	 Riboflavin biosynthesis protein RibBA	0.00028617386801
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU78	 RNA polymerase, sigma 24 subunit, ECF subfamily	0.000627109115222
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9J779	 Methionine  tRNA ligase protein	0.000627109115222
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C6LQB4	 Deoxyribose phosphate aldolase	0.000627109115222
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YWG0		0.000627109115222
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4AQB7	 Acetyltransferase, GNAT family	0.000627109115222
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_I6X4E6		0.000627109115222
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9UEN1		0.000627109115222
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0CF06	 Insertion element IS1 protein InsA	0.000627109115222
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YXY6		0.000627109115222
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HM56	 Heme degrading monooxygenase	0.000627109115222
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1GFN8	 Inner membrane protein translocase component YidC, long form	0.000627109115222
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E397		0.000627007773835
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2I8V8	 Autotransporter  family porin	0.000626483480333
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J3J9		0.000504822837756
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VMJ3	 Transcriptional regulator FleQ	0.000626313478012
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI00035DAB5C	 transposase ISM1, partial	0.000626174481445
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_H9U2W8	 Transposase	0.000626074338971
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D7CVL6	 Deoxynucleoside kinase	0.000625729658336
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5F8Z5	 Oxidoreductase Tas, aldo keto reductase family	0.000625533074164
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5Y1Z5	 Protein ApaG	0.00062546777744
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S6B4M0	 Threonine dehydrogenase	0.000625379204355
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K4LCD0	 Transposase	0.000625367923362
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F2JL25	 DNA topoisomerase	0.000625338112786
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5EFM7	 Glycosyl transferase	0.000625074079971
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MQ33	 ATP synthase subunit a	0.000625071701246
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZMZ4	 Urease subunit alpha	0.000624925468902
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1QVC8	 UPF0042 nucleotide binding protein Csal_2229	0.000624868443114
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV27	 Sigma54 specific transcriptional regulator, Fis family	0.000624708393698
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P55717	 Probable ATP synthase y4yI	0.000624704878869
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6RKC9		0.000624610388978
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_L0ILT4	 ABC type nitrate sulfonate bicarbonate transport system, permease component	0.000624474415815
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7C4X7	 Metal dependent phosphohydrolase	0.000624464615144
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5BS30	 Sigma 54 factor, interaction domain containing protein	0.000624381100636
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VP76	 Lipoprotein, putative	0.000624355122604
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51383	 2Fe 2S ferredoxin	0.000624243035032
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VFY5	 Transport protein 	0.000623912278653
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33345	 Putative molybdate metabolism regulator	0.000623841228897
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7B083		0.000623531296066
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27691		0.000623430488125
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76076		0.000623238071306
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1RCQ3		0.000623238071306
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q9V0E3	 Ribosome biogenesis protein Nop10	0.000623238071306
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C6BD53	 MscS Mechanosensitive ion channel	0.00062302367545
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M083		0.000622726306569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABV4	 Biopolymer transport protein ExbD	0.000622366971967
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76111	 Inner membrane protein YdcZ	0.00062181099637
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_UPI00036DADFE	 hypothetical protein	0.00062159752229
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MN84	 Transcriptional regulator, TetR family	0.000621542185397
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q66FE1	disulfide interchange protein DsbD	0.000621383818566
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K3KRS9	 Sulfurtransferase	0.000621369906123
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MBZ4	 PTS system transcriptional activator	0.000621161819855
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNK3		0.00062113664746
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G9AFA8	 Sugar ABC transporter, ATP binding protein	0.000620909016078
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A2RF77	 UPF0342 protein SpyM51181	0.000297830582749
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4XW05	 Transcriptional regulator, TetR family	0.000620264357769
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0K4V5	 Proline glycine betaine ABC type transport system, ATPase component	0.000620225717235
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LWE9	 Rhomboid family protein	0.000620224512526
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JKU2		0.000535833043774
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37774		0.000619908476407
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E8SHY9	 Metallo beta lactamase superfamily domain protein in prophage	0.000256907296569
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U4QJA4	 Extracellular ligand binding receptor	0.000619802717385
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B4U0E8	 Transcriptional regulator AraC family	0.000619532382868
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H8LBN6	 PTS system, mannose fructose sorbose specific IID component	0.000619456102794
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WWT8		0.000382441543756
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJC7		0.000619414524858
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KLI1	 Phosphoribosyl dephospho CoA transferase	0.000619414524858
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYT7	 Glucan synthase 1 related protein	0.000619133164636
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K129		0.000618557072334
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4NGZ8	 ATP dependent zinc metalloprotease FtsH	0.000618539758667
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HBR1	 Mannose 6 phosphate isomerase, class I	0.000618148829243
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI0000379B1B	 hypothetical protein	0.000487751534064
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JSN0	 Pimeloyl [acyl carrier protein] methyl ester esterase	0.000617839629061
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I7BX60		0.00061777647839
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2T7W7	 Dienelactone hydrolase	0.000617655611798
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C4Z7U3	 Glycoside Hydrolase Family 105 like unsaturated rhamnogalacturonyl hydrolase	0.000617586144541
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADQ9		0.000617520290836
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39297	 Lipoprotein BsmA	0.000617520290836
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H2JJL8	 Anaerobic ribonucleoside triphosphate reductase activating protein	0.000617464675554
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q88MV0	 Tyrosine recombinase XerD	0.000617460059312
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V5F2	 Alginate biosynthesis protein AlgZ FimS	0.000617404205734
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2UC59	 Sodium symporter family protein	0.000617348052321
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F3IWE5	 Glycyl tRNA synthetase subunit beta 	0.000617326668682
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E3H2R2	 PTS system, mannose fructose sorbose family, IIC component	0.000616990123579
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MS83		0.000616815657523
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E7MRD5		0.000616656325006
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4Y0B5	 Lipopolysaccharide biosynthesis protein	0.000616656157668
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8DCV0	 Transcriptional regulator, GntR family	0.000616439110522
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B0E5	 MOSC domain containing protein	0.00061641622243
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I526	 Cysteine synthase B	0.000594799439336
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W7U2	 Protein SprT	0.000615823040037
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A1VMA0	 50S ribosomal protein L19	0.000615780700021
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_K8C187	 Aspartyl tRNA synthetase	0.000615637607018
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P30192		0.000615637607018
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2M070		0.000615637607018
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3KA14	 LysR family regulatory protein	0.000615497147878
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9T176	 Phage tail length tape measure protein	0.000607920646349
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6AFS4	 Integral membrane sensor hybrid histidine kinase	0.000615174600706
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q00518	 Type II secretion system protein K	0.000615130847609
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AD55		0.000615044858621
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P13982	 Carbamate kinase	0.000497889989313
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4X227		0.000489932169893
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_C1D0K2		0.000398824772487
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W8U3V5	 Group II intron encoded protein LtrA	0.000614547541197
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8X1S4	 Tricarboxylate transport membrane protein TctA	0.00061440315187
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SQP5	 Metal dependent phosphohydrolase	0.000614065459123
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E2K7	 DNA replication and repair protein RecF	0.0006139458642
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q034G9	 6 phospho alpha glucosidase 2	0.000457228225564
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q034G9	 6 phospho alpha glucosidase 2	0.000156586678667
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023LC15		0.000613741175057
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2E8		0.000613734596368
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7CH39	 Outer membrane protein assembly factor BamE	0.000613457956997
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H0DII2		0.000613227405275
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P71349	 L serine dehydratase	0.000526043788183
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P71349	 L serine dehydratase	7.8145950112e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q5NGP7	 Arabinose 5 phosphate isomerase KdsD	0.000593293806313
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6RS84	 Type 4 fimbrial biogenesis protein PilX	0.00059923398495
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8PWQ2	 UPF0107 protein MM_1524	0.000612896637083
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DSV1		0.000612870288642
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCK8		0.000612763481871
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4WUE8		0.000612698571034
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P39587	 Putative ribosomal RNA large subunit methyltransferase YwbD	0.000612515137769
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q04B15	 Predicted metal dependent hydrolase of the TIM barrel fold	0.000612277827489
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_K9ZXW7	 Undecaprenyl phosphate galactose phosphotransferase, WbaP exopolysaccharide biosynthesis polyprenyl glycosylphosphotransferase	0.000612267359897
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2ELK1	 Sulfotransferase family protein	0.000612265334174
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87VL9	 High affinity branched chain amino acid ABC transporter, permease protein BraE	0.000612158075536
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I4U2	 Acyl homoserine lactone acylase QuiP	0.000612150650773
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A026FAT8	 Sugar ABC transporter substrate binding protein	0.000612121249397
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I1ALS6	 Flp pilus assembly protein TadG	0.000548320695652
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZPB5		0.000611957044965
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I5U8	 Thiosulfate sulfurtransferase GlpE	0.000611928946738
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N2N9		0.000611906470006
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SPT2	 Predicted periplasmic or secreted lipoprotein	0.000611906470006
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D9PXD9	 Predicted biotin biosynthesis protein	0.000611906470006
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76406		0.000611906470006
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRG9	 Protein VraX	0.000611906470006
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVI9		0.000611906470006
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YM34	 Protein YqjC	0.000611906470006
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I0KPE5	 Outer membrane receptor for ferric coprogen and ferric rhodotorulic acid	0.000611710393444
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5TGD1	 Cobalt import ATP binding protein CbiO 2	0.00061157545334
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46793		0.000611574059777
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4A619	 GTPase HflX	0.000611570630434
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9QXD5	 Peptidase P60	0.000605039686799
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VS88	 Putative acetyltransferase 	0.000611516569865
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6FNM8	 DEAD DEAH box helicase domain protein	0.00061139156415
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1G7	 Thiamine pyrophosphate protein domain protein TPP binding	0.000611377919587
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5V9L8	 Glycine cleavage T protein	0.000611299272459
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV94		0.000611226742654
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DRR2	 3 phosphoshikimate 1 carboxyvinyltransferase	0.000611143069904
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I6Z0	 8 oxoguanine deaminase	0.000585423044904
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77609	 Protein FlxA	0.000610982139996
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9QTB8	 Oxidoreductase domain protein	0.000610888784724
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SMY3	 RNA polymerase sigma factor	0.000610536352373
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48BL4	 Cobalamin synthesis protein P47K family protein	0.00061044701329
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MCN9	 Multi copper polyphenol oxidoreductase, laccase	0.000610131876462
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9L883		0.000430552526871
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D5WQ35	 Restriction endonuclease	0.000609900615939
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U431		0.000609827404582
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E9JFX9	 Dimethyl sulfide monooxygenase	0.000439552234476
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E9JFX9	 Dimethyl sulfide monooxygenase	0.000170249634067
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIZ7	 Peptidase M23B	0.000553035928296
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZPK4		0.000609238396307
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYS9	 Conserved repeat domain	0.000609094584255
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K2G6		0.000609047241616
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4XAD4		0.000599015815846
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UYG3		0.000608877156715
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M351	 PAS PAC sensor signal transduction histidine kinase	0.000608841194186
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P11864		0.000608670875846
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5QMD6	 CHAP domain protein	0.000537242914853
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VK63		0.000608242359413
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C8UF70		0.000608220286448
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DRL1	 3 isopropylmalate dehydrogenase	0.000608220286448
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2EWR7		0.000608220286448
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7UBV5		0.000608220286448
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_V7ICS9		0.000608220286448
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VJJ6	 RNA binding S1	0.000608194639267
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32138	 Alpha glucosidase YihQ	0.000608128199059
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1G9	 Nucleotidyl transferase	0.000607941508042
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q03282	 Urease subunit gamma	0.000539917473537
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D8JE10	 Thioesterase superfamily protein	0.000607407700902
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P15713	 Non hemolytic phospholipase C	0.000604223584031
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8G289	 Cro CI family transcriptional regulator	0.000607292078076
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5IZV2	 Rod shape determining protein MreB	0.000607147234681
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GFF4	 Transcriptional regulator, XRE family	0.00060706465035
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P76641	 Guanine deaminase	0.000417498651078
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P76641	 Guanine deaminase	0.000104087183047
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WWV9		0.000606973342892
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SXG2		0.00060683706943
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7VQW0	 Transcriptional regulator	0.000606795395254
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HU72	 Lactoylglutathione lyase	0.000535769418508
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I3N5	 Heme exporter protein C	0.000606452712082
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_H3DVW8		0.000606152871003
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZ55	 Ribosomal large subunit pseudouridine synthase B	0.000606029820799
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZV86		0.000605939231038
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RUR3	 ABC 2 type transporter	0.000605878241624
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0B215	 DEAD DEAH box helicase domain protein	0.000605613820742
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C6CBJ2	 Oligogalacturonide transporter	0.000605552521084
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4KPZ2	 Choline ABC transporter, ATP binding protein	0.000605436111159
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7VB85	 Glutamine  tRNA ligase	0.000600717275705
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P25132	 12.0 kDa protein	0.000605331370911
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_N4W5E7	 C4 dicarboxylate transport protein	0.000605208731815
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P45792	 Type IV pilus assembly protein TapB	0.000401257524979
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P45792	 Type IV pilus assembly protein TapB	0.000203842725567
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E3L9		0.000605072209142
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JDR3	ubiquinone oxidoreductase, subunit RnfB	0.000604895885944
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D6DGD0	 Response regulators consisting of a CheY like receiver domain and a winged helix DNA binding domain	0.000604796466205
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P38097	 Probable diguanylate cyclase YegE	0.000604757821552
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0H1		0.00060457824881
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A8H3L2	 Thioesterase superfamily protein	0.00060457824881
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C8MNY2		0.00060457824881
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SEG9		0.00060457824881
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F0T9W8		0.00060457824881
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE65	 Cation transport regulator ChaB	0.00060457824881
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P65264	 Lipoprotein signal peptidase	0.00060457824881
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLE3		0.00060457824881
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PYQ3		0.00060457824881
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8SUE0		0.00060457824881
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VDV1	 ComE operon protein 1	0.000604465806418
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8TFM7		0.000604221879527
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RGW8	 23S rRNA [guanosine 2 O ] methyltransferase RlmB	0.000604210058292
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVN7		0.000604104279118
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1F3	 Phage major capsid protein, HK97 family	0.000604080715997
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024KYL9	 ATP dependent Clp protease ATP binding subunit	0.000603926432052
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5I3R8	 ABC transporter, permease protein	0.000603848478571
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S0J1	proton antiporter	0.0006037452736
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTA1	 Two component transcriptional regulator, winged helix family	0.000603724524139
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9T5G7	 ATPase	0.000603573016618
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ65	 Citrate transporter	0.000603567525247
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q88J89	 Ribose transport permease protein, putative	0.000603537293143
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q168I1	 Guanine deaminase	0.00060352149239
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZGV6	 ABC transporter substrate binding protein	0.000557673029571
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8H0A6		0.000461025422612
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q899S7	 DNA replication and repair protein RecF	0.000603014456763
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W3B8	 Peptidase S14, ClpP	0.000189072223876
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2P0Z5	 Threonine  tRNA ligase	0.000594107175385
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P26899	 Aspartate ammonia lyase	0.000597117107719
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_UPI0001DCFDB5	 200 kDa antigen p200, putative	0.000577868812151
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P23747	 Alginate biosynthesis transcriptional regulatory protein AlgB	0.000602417353704
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN03	 DNA directed RNA polymerase subunit F	0.000602037010818
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7VBG5	 ExsD	0.000601979891457
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A008S902		0.000438976380662
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPH2		0.000601724024253
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VR27		0.00060158445765
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DIN7	 Response regulator, LuxR family	0.000601555109431
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2MMA8		0.000601260165305
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WX72		0.00060120578379
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A029LEA3	 Prepilin type N terminal cleavage methylation domain protein	0.000600979568759
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5N087		0.000600979568759
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QIS4		0.000600979568759
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KPE9	 Matrix metallopeptidase 24 	0.000600979568759
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2FHT6	 Thioredoxin	0.000600979568759
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYQ5	 Resolvase, putative	0.000600979568759
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J0U8		0.000600750922824
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VD00		0.0006007488928
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E6UXA3	 Phosphate transporter	0.000358970498542
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E6UXA3	 Phosphate transporter	0.000241706551961
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P72139	 Putative imidazole glycerol phosphate synthase subunit hisF2	0.000600625288705
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B9L064	 Glutamine synthetase	0.000600590958158
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P06770	 FeMo cofactor biosynthesis protein NifB	0.000600416871587
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWX1		0.000600070187785
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TG52	 D ribose pyranase	0.000573152634135
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R8XI05	 Taurine binding periplasmic protein	0.000485406574766
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTK4		0.000599502760827
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E3D490		0.000599467765145
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZB7		0.000599439850814
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1J276	 Acyl CoA dehydrogenase like protein	0.000599435700211
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5E509	 Choline sulfatase	0.000599244946239
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N3WLA8	 Uroporphyrinogen decarboxylase family protein 	0.000599196246595
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DMJ1	 TonB dependent siderophore receptor	0.000599012934226
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26607	 UPF0145 protein MTH_507	0.000313554557611
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q898U9	 Conserved protein	0.00059883586596
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZPZ7	 Glycosyl transferase, family 8	0.000598590033483
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HYU5		0.000598569513192
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B8NQM3	 3 demethylubiquinone 9 3 methyltransferase, putative	0.000598268785714
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNE5	 IS element 	0.000597897622255
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q9LCJ9	 FmtB	0.000597867852176
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MQZ5		0.000597566214058
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7NLL0	 DNA gyrase subunit A	0.000597547130321
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F5XMJ8	 Oxygen independent coproporphyrinogen III oxidase	0.000597504901931
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_H0Q5F2	 Short chain dehydrogenase reductase SDR	0.00059747635842
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XNE2	 Metallophosphoesterase	0.000597451022372
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI00047C294C	 hypoxanthine oxidase, partial	0.000597445761673
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C8X890	 Two component transcriptional regulator, LuxR family	0.000597423476633
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QGE5	 Transcriptional regulator, Cro CI family	0.000597423476633
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L8QIK5		0.000597423476633
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5S0M7	 Pyridine nucleotide disulfide oxidoreductase, FAD NAD binding domain containing protein	0.000597267468424
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ09		0.000597266706697
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HBL6		0.000597157101451
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I0GMV1	 Electron transport complex subunit C	0.000597079653389
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V7I7		0.000596901110888
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W751		0.000596788181222
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_L1KD27		0.000361880170436
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00905	 Bifunctional protein TrpGD	0.000596550543928
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SQ35	 Integrase family protein	0.000596394815704
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IWJ1		0.000595619544885
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27238		0.000595432065042
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1RLC1	 AzlC family protein	0.000595227371466
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A2F4		0.000594961956457
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1RB71		0.000594931000196
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VM39	 Ribosomal RNA large subunit methyltransferase K L	0.00059473794728
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q21WE1	 Alcohol dehydrogenase, zinc binding	0.000594674471826
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTF1	 YodP	0.000594626897937
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TJJ8	 tRNA uridine 5 carboxymethylaminomethyl modification enzyme GidA	0.000594598101086
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5TC97		0.000594541170458
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXH7	 D galactose binding periplasmic protein	0.00059448368511
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WSV4	 Integral membrane sensor hybrid histidine kinase	0.000594305294571
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q897B2	 Phosphomethylpyrimidine synthase	0.000594192057559
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6UC71		0.000583610217058
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S1E1	 Transcriptional regulator	0.000593923280652
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C4ZT30	 Endoribonuclease SymE	0.000593914358554
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MKF0	 UPF0181 protein ESA_01442	0.000593909220891
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZTP1	 Membrane protein	0.000593909220891
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5R757	 NADP dependent malic enzyme . domain protein	0.000593909220891
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2TTT0	 InsA	0.000593909220891
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DWF2		0.000593909220891
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SRF9		0.000593909220891
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7M1V7	 DEAD DEAH box helicase domain protein	0.000593858716739
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_N0AMT0	 Bacterial regulatory helix turn helix, lysR family protein	0.000593743979049
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RS38	 Guanylate kinase	0.000593478256068
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AVS0	 Sugar isomerase domain protein	0.000593463695009
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VCD4		0.000521598060147
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F9CRB3	 Isoaspartyl dipeptidase	0.0005932630854
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9QXD6	 Porin	0.00059314217612
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAV9		0.000593075433997
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7SJ66	 von Willebrand factor type A domain containing protein	0.000592880915237
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1MA75	 Glutamate 5 kinase	0.000578523733226
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FAL9		0.000592369565444
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q08386	 Molybdenum pterin binding protein MopB	0.000592195197162
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAY1		0.000592172644222
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0L2	 Beta ketoacyl acyl carrier protein synthase I	0.000592013669907
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V8K4		0.000591946138918
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X4RGC4	 Serine kinase	0.000591938358013
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S4A5		0.00059134411529
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWF4		0.000591211118229
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S5YT45	 Uracil xanthine permease	0.000591118341343
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EM06	 Metalloendopeptidase related membrane protein	0.000591107366929
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVZ4	 Glycerol 1 phosphate dehydrogenase (+))	0.000590919925179
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89XW5	 Tyrosine recombinase XerD	0.000590875331099
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJL8		0.000590436067553
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J5YR81		0.000590436067553
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77695	 Protein GnsB	0.000590436067553
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSQ4	 UPF0154 protein SMU_1719c	0.000590436067553
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJN3	 50S ribosomal protein L7Ae	0.0005903758497
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RLU8	 Alpha beta hydrolase fold protein	0.000590347546404
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q79VG7	 ATP synthase subunit alpha	0.000590104565116
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U9Z5G1	 D cysteine desulfhydrase domain protein	0.000589625169458
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8H6P0		0.00058962292864
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3XK55	 Immunoglobulin binding protein sbi	0.000589598604186
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XNV8		0.000552373697679
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9S1W5		0.000589461331417
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M706	 Helix turn helix domain protein	0.000589019188958
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E7AA86	 Iron sulfur cluster binding protein	0.000588876013851
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MEJ4	 Spermidine export protein MdtJ	0.000313554557611
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A7MEJ4	 Spermidine export protein MdtJ	0.000275107813488
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABK4	 Cytochrome bd I ubiquinol oxidase subunit 2	0.000581281476243
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9LZ58		0.000588515936947
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5WYS0	 ICESt1 ORFD ATP GTP binding protein	0.000588470487757
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q0RDV0	 Ribosomal protein S12 methylthiotransferase RimO	0.000588461307543
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FDS1	 Leucyl phenylalanyl tRNA  protein transferase	0.000588249789712
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPZ8		0.000588215824
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6SMW1	 Two component response regulator	0.000588101955737
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D6ZIN1	 ABC transporter, permease protein	0.000588059414377
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M363	 Amidohydrolase 3	0.000587941034946
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q4QLD2	 Glutaredoxin 4	0.000587918782063
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MTV6		0.00058778268862
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTU9		0.00056959002939
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5J6S8	 Thioredoxin disulfide reductase	0.000587720331621
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G2TGN8	 Two component transcriptional regulator	0.000587706554006
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A3DGC7	 DNA integrity scanning protein DisA	0.000555702257611
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P50598	 Protein TolQ	0.00058757002678
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N3AK59	 Glycosyl transferase 2 family protein	0.000587484758709
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX70	 MukB N terminal domain M protein repeat protein	0.000587295106724
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P55604		0.000318773429506
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DMW2	 Apolipoprotein N acyltransferase	0.000587156733411
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U4Z2	 Short chain alcohol dehydrogenase	0.000587110260108
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M2J7	 Nicotinate nucleotide pyrophosphorylase	0.000587085925496
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK66		0.000587003299719
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNT6		0.000587003299719
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UXD0	 Radical SAM	0.000587003299719
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZUE3	 Cell division protein ZapB	0.000587003299719
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E9KNQ0	 Truncated transposase	0.000587003299719
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QWV4		0.000587003299719
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HX29		0.000587003299719
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y7ZAG7	 NAD dependent deacetylase	0.000587003299719
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U0DCI2	 3 hydroxyphenylpropionic transporter	0.000586917239308
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A031D1F0		0.000293564345029
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R7C015	 ABC transporter permease protein	0.000586736684524
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9Z4J7	 Quinoprotein ethanol dehydrogenase	0.000586710148713
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5LZU0		0.000532271859187
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9ZFE4	 Enoyl [acyl carrier protein] reductase [NADH] FabI	0.000569559475624
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E8TEM3	 2 oxo hepta 3 ene 1,7 dioic acid hydratase	0.000586539316211
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VA00	 Adhesion protein associated protein	0.000576940386008
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HWR3	 Bacteriophytochrome	0.000475126192635
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V621		0.000586336663715
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3DZ67	 Met 10+ like protein	0.000586170645718
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_UPI0000164CFE	 hypothetical protein DR_2417m	0.000563997979167
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JIA1	 DMT family permease	0.000586059415285
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A3J4	 Fimbrial subunit CupA4	0.000585959033222
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C3PFL3	 Asparagine glutamine permease	0.000585894854106
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N8YXS0		0.000585626829748
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQT4		0.000585547409979
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYV0	 Response regulator receiver protein	0.000585486037072
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZYF8	 Lipopolysaccharide cholinephosphotransferase LicD1	0.000585485928484
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LN90	 Acyl CoA synthetase	0.000585198767878
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RC10	 Isopenicillin N epimerase CefD	0.000584867294105
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T6B1	 Iron ABC transporter substrate binding protein	0.00058483083371
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S6A9	 Two component response regulator, PprB	0.000584421155155
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023YMF0	 Putative transport system permease protein	0.000584418415694
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VA52		0.000282813914711
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H7CZ41		0.000584194521333
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZZI9		0.000539917473537
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZQ24	 Autonomous glycyl radical cofactor	0.000584137495546
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X6H3	 Peptidoglycan binding like protein	0.000584067500335
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2T8C3	 Aliphatic sulfonates family ABC transporter, periplsmic ligand binding protein	0.000583961464661
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D2QC61	 NAD dependent epimerase dehydratase	0.000583850591622
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MD19	 Polysaccharide biosynthesis protein	0.00058365259432
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKD8	 Flagellar basal body associated protein FliL	0.000583610217058
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNA9		0.000583610217058
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V8H4	 Outer membrane lipoprotein	0.000583610217058
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HEY5		0.000583610217058
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L9IFI2	 Inner membrane transport RhmT domain protein	0.000583610217058
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N4PUG2	 Putative acyl CoA thioester hydrolase ybhC domain protein	0.000583610217058
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64436		0.000583610217058
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSD5		0.000583610217058
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HY42		0.000583540484657
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PH04	 Peptidoglycan binding domain 1 protein	0.000583516274646
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9C667	 Chaperonin 60 subunit beta 4, chloroplastic	0.000583463039069
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZQU2	 Bifunctional protein Aas	0.00058336334926
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_R9VAP8	 LysR family transcriptional regulator	0.000583307380006
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G8MUZ6	 Decarboxylase family protein Rossmann fold nucleotide binding protein	0.000582980801419
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TL20	 [Fe] hydrogenase	0.00058291651841
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S1G3	 Transcriptional regulator	0.000582842356088
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A7FQL2	 UPF0313 protein CLB_0243	0.000582492502332
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTX3		0.000582487889715
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1R6G9		0.000582050947567
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNV2	 Putative structural protein 	0.000581928343234
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M8Y2	 Site determining protein	0.000581847796821
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9U2T3	 General secretion pathway protein F   Type II secretory pathway, component PulF	0.000581785545148
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADX7		0.000459977637561
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M4JQT7	 Transcriptional regulator	0.000581258836817
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WTQ0	 Sarcosine oxidase, gamma subunit	0.000386477468435
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTL3		0.000580733210503
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZDM3	 Cysteine dioxygenase	0.000580648128843
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_J5III2		0.000285210642804
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LLN0	 Maf like protein SPO3892	0.000580420638135
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A026TYJ6		0.000580256135353
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAU5		0.000580256135353
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D4GGV4	 Flagellar transcriptional regulator FlhD	0.000580256135353
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DX44		0.000580256135353
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A9V7		0.000580256135353
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q49YQ0		0.000580256135353
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1HG53		0.000580256135353
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M5AHK4	 L xylulose 3 keto L gulonate kinase	0.000580202482106
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6FZP0	 Flagellar M ring protein	0.000580144314389
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZR72	 Putative Holliday junction resolvase	0.000487751534064
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1LPW4		0.000580023867729
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYT6	 Baseplate J family protein	0.000579849314894
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HQA8	 Amino acid ABC transporter substrate binding protein	0.0005796652945
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9ALK8	 FAD dependent oxidoreductase	0.00057958016568
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G3XD29	 Na H(+) antiporter NhaP	0.000579501040879
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FDR3		0.000579458168729
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A701	 Protein HypA	0.000579424822838
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q04GM9	 Ribosome binding factor A	0.000579424822838
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1EMA0	 Inner membrane protein YiaH	0.000579301788214
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2J8	 Glycerophosphoryl diester phosphodiesterase	0.000579108296344
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M4YY80	 Ribose ABC transporter permease	0.000578994357779
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9SGF5		0.000578809058215
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DHH8	 ATPase	0.000578735040051
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJK4		0.000578598260676
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4A9P0		0.000578593510323
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M0N1		0.00057830819232
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M1FEG3	 Sporulation initiation inhibitor protein soj	0.000578192081927
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q886I1	 Peptide deformylase 2	0.000567216671637
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U3U3E7	 YaaA protein	0.000560364184094
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E2BEN1	 Methionine R sulfoxide reductase B1	0.000577673433677
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4KJ83	 Chemotaxis protein MotB	0.000577661618551
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VHU4	 Exonuclease SbcD	0.000577619775321
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A024HIN5	 Transcriptional regulator	0.000577285589094
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7M3A5	 Molecular chaperone Hsp31 and glyoxalase 3	0.000577195742452
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2J604	 Regulatory protein	0.000577087052379
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN08	 Putative NADP dependent alcohol dehydrogenase	0.000576940386008
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SRV1		0.000576940386008
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RHA3		0.000576940386008
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4AFU4	 Transcriptional regulator, AraC family	0.000576940386008
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5MB52	 Hydrolase domain protein	0.000576940386008
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_M7YPQ8		0.000576940386008
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q09677		0.000576940386008
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q7A5M8	 UPF0346 protein SA1254	0.000576940386008
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J0T0		0.000576832349125
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V4QCD9		0.000576412615681
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3V3S8	 Pyocin R2 PP, tail tube protein	0.000576356438248
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZNE6	 Protein msa	0.000576315564571
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2A6		0.000576229456788
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U3Y8		0.000576114348225
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P44951	 Diaminobutyrate  2 oxoglutarate aminotransferase	0.000576008020056
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQ73	 HpcH HpaI aldolase	0.000575833182158
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A8H1	 Methionyl tRNA formyltransferase	0.0005757230387
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E8Q857		0.000575596197782
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I6Q3	 4 hydroxybenzoate transporter PcaK	0.000482618215364
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9I6Q3	 4 hydroxybenzoate transporter PcaK	9.29692150588e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVT5	 Agmatinase	0.000575016298398
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0TP59	 33 kDa chaperonin	0.000574833777107
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B3W763	 Cellobiose PTS, EIIC	0.000574818588371
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U3QUQ4	 Chemotaxis protein CheA	0.000574520523258
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8H2S7	 Long chain fatty acid transporter, putative	0.00057449029802
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C2W425	 PTS system Galactitol specific IIC component	0.000574319080802
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I2BMH0		0.000574211924179
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D7GI06	 Proline specific permease proY	0.000382389687628
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GI06	 Proline specific permease proY	0.000191755383761
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P59784	 Glucitol sorbitol specific phosphotransferase enzyme IIA component	0.000574106498613
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J2S6		0.000287648340601
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9A0T3	 Unsaturated chondroitin disaccharide hydrolase	0.000573998013811
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q7MUV7	 Lysine  tRNA ligase	0.000567164183571
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2K821	 NADH quinone oxidoreductase subunit A	0.000490122147378
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYW0	 Lysine exporter protein 	0.000573663687455
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B8V3	 30S ribosomal protein S16	0.00057366231563
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B0T202	 UPF0386 protein Caul_4643	0.00057366231563
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SRC9		0.00057366231563
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5QWN9		0.00057366231563
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8LQR9	 Transcriptional regulator, XRE  family	0.00057366231563
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P0C885	 Copper chaperone CopZ	0.00057366231563
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQQ4	 UPF0337 protein SERP0494	0.00057366231563
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Y3BSI2		0.00057366231563
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O83990	 Uridine phosphorylase	0.00056841750517
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A1A1W2	 Tyrosine  tRNA ligase	0.000550752168085
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HXI1	 Protein translocase subunit SecD	0.000517678720315
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9HXI1	 Protein translocase subunit SecD	5.5658526764e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P69986	 Yop proteins translocation protein U	0.000573217467875
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T564	 Acyl coenzyme A dehydrogenase	0.000573062802526
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9UT09	 Phospho 2 dehydro 3 deoxyheptonate aldolase, tyrosine inhibited	0.000563294946597
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V6Q1		0.000391335533139
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1U7	 Transcriptional regulator, GntR family	0.000572848610214
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3JVB5	 Integral membrane protein MviN	0.000553092432652
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R7IJT3	 Efflux ABC transporter permease protein	0.000572785292103
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CRA2		0.000392858239503
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A0A034SJE4	 NIF3 like protein	0.000572593219351
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4KLQ2	 Phosphate ABC transporter, permease protein	0.000572433179678
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F5Z794	 FMN binding oxidoreductase	0.000572419258623
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XUQ2		0.000572359528429
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q03MZ6	 Bifunctional purine biosynthesis protein PurH	0.000568858186955
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B9DSE2	 Nucleoside diphosphate kinase	0.000572055573145
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5HYZ8		0.000571993096553
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX49	 Nitroreductase	0.000571848506912
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W5WS06	 Amino acid permease	0.000571696581539
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F2N7I9	 2 keto 3 deoxy phosphogluconate aldolase	0.000571312128619
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F7ZMZ2	 LacI family transcription regulator	0.000571246024299
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97GY4	 UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.000571082533819
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VLK0	 Endonuclease III	0.000570862108561
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1FLJ4	 Glutathione synthetase	0.000570635522545
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A022KGA3	 Alcohol dehydrogenase GroES like domain protein	0.000570421285597
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V0Y0		0.000570421285597
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C1FT82	 D alanyl D alanine carboxypeptidase family protein	0.000570421285597
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C5WHZ2		0.000570421285597
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MWB1		0.000570421285597
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F3NYH2		0.000570421285597
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CU82		0.000570421285597
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI00035E9221	 hypothetical protein	0.000570421285597
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A034N917		0.00046718407465
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F7X525	 ABC transporter, periplasmic solute binding protein	0.000569562412905
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M261		0.000569552088269
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9KDS9	 Biotin carboxylase	0.000563774318943
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A037X3F6	solute symporter 	0.000568938743635
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I7B8G3	 Poly	0.000568125740025
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DXU0		0.00056802874082
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WXW9		0.000567970699945
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P13511	 Cobalt zinc cadmium resistance protein CzcA	0.00046456340751
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P13511	 Cobalt zinc cadmium resistance protein CzcA	0.000103188771227
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E2G7		0.000567538966913
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0JZY1	 Staphylococcal secretory antigen SsaA domain protein	0.000567503253251
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P27876	 Triosephosphate isomerase	0.00052686044352
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTW8		0.00056742438586
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TJL3		0.000567216671637
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9JUE9	 UPF0434 protein Avi_4243	0.000567216671637
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T5H5		0.000567216671637
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXL0		0.000567216671637
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_T2A2T5		0.000567216671637
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U3TTP8	 TonB dependent siderophore receptor	0.000567216671637
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C5ASM5	 Enoyl CoA hydratase	0.000566957012527
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V8A2		0.000566921607888
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3NGW6	 2 aminoethylphosphonate  pyruvate transaminase	0.000557546089495
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M093		0.000566764604653
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0VQR4	 Na translocating NADH quinone reductase subunit E	0.00043971470374
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51519	 Anthranilate synthase, phenazine specific	0.000566418797415
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N762	 PAS domain S box diguanylate cyclase  domain containing protein	0.000566054837636
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E0S112	 Iron ABC transporter permease protein	0.000565995657649
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7I478	 Transcriptional regulator, TetR family	0.00056592574541
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1Z181	 Selenide, water dikinase	0.000555614388208
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1R311		0.000565493156128
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8XW23		0.000565454208167
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q12NS9	 1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.000565360223815
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4VUA6	 Oxygen sensitive ribonucleoside triphosphate reductase	0.000565235881165
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P09785	 Anthranilate synthase component 1, pyocyanine specific	0.000553093668832
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LKC9	 Large exoprotein	0.000564765333263
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I2DV60	 Transcriptional regulator, GntR family	0.000564357191723
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I3B6		0.000564300131315
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZKB9		0.000564155499461
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9RLL1	 Maltose mannitol ABC transporter substrate binding protein	0.000564129729224
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T7R7U1	 Cardiolipin synthase 2	0.000564121039426
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AEM8		0.000564047863417
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S6AV50		0.000564047863417
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0VVF5		0.000564047863417
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_UPI00016C05CE	 glycogen starch alpha glucan phosphorylase	0.000562466160912
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D0LWP0	 ABC transporter related protein	0.000563946800046
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H7CVL3	 Beta lactamase	0.000563667972166
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D0K652	 Epidermin immunity protein F	0.000474012054236
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZY83	 Two component response regulator CbrB	0.000563546080511
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9HRE1	 Malonyl CoA acyl carrier protein transacylase	0.000563545818508
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9RUK4		0.000563406253369
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_C7BYC9		0.00056326228143
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V236	 Flagellar hook protein FlgE	0.000563151718837
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY63	 Restriction modification system DNA specificity domain	0.000563041358032
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I7AAC7		0.000562997153312
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I4SXZ9	 Choline transport protein BetT	0.000562972436559
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U3B9		0.000424220872067
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8PDG9	 Malonyl CoA acyl carrier protein transacylase	0.000562788560485
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K9NR38	 Peptidase M23B	0.000562581742797
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q979P0	 7 cyano 7 deazaguanine synthase	0.000562429638918
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W5WGU1		0.000562281977057
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TI69		0.000562206739392
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V8RAG2	proton antiporter	0.000562201988373
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2DX65	 Serine acetyltransferase	0.000562086090631
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K5C7	 Arabinose efflux permease family protein	0.00056199338547
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37615		0.000561889767241
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7GG89	 Single strand binding protein Primosomal replication protein n	0.000561717070013
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I1ZM56	 Peptidoglycan hydrolase	0.000561257404003
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J2H5	 Pyruvate kinase	0.000561146437027
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTJ7	 Glycosyl transferase	0.000560988188122
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKS6		0.000560914264178
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI00036BC565	 CRISPR associated protein, partial	0.000560914264178
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W4U293		0.000560914264178
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MSH8	 Signal transduction and transcriptional control protein Stc	0.000560682274902
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1U1T6	 Peptidase S49	0.00056066343352
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q890T6	 Conserved protein	0.000560610402639
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5HYR6		0.000560215619871
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5XCA7	 Dihydroneopterin aldolase	0.000560137374613
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S0TVB0		0.00055988317178
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAR8		0.000559708367412
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K530	 Shikimate dehydrogenase	0.000559370631039
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6NN79	 Asparagine synthetase	0.000558946459587
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL11		0.000558943294014
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQM1	 Major facilitator superfamily MFS_1	0.000558894124108
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9U4B2		0.000476702904542
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9K005	 Orotidine 5 phosphate decarboxylase	0.00053740453555
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q06951	 Phosphomannomutase	0.000558642627903
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97FT9	 Lon protease	0.000553864879604
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZP20	 Alpha 1,6 rhamnosyltransferase MigA	0.000558579298655
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EHJ1	 Hpt domain protein	0.000558217730313
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KQM0	 5 deoxynucleotidase VC_1978	0.000558040615179
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TF85		0.000557815290343
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D8E6H7		0.000557815290343
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E0N7V9		0.000557815290343
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MUT9	 Integral membrane protein	0.000557815290343
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L3HXK2	 Cryptic beta glucoside bgl operon antiterminator	0.000557815290343
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HPA6		0.000557815290343
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6G8C0		0.000557815290343
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U0CRT2	 Melibiose carrier protein	0.000557815290343
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8T534	 Toxin RelE	0.000557815290343
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6SGU2		0.000557808505816
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5X6K5	 ABC transport system ATP binding protein	0.000557735266372
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9G928		0.000557561397794
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2KYU1		0.000557527647015
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V7Z9W4	 Secreted protein	0.000557395783604
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K4KGL9	 Beta ketoacyl synthase	0.000557395208843
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EB50	 AAA domain family protein	0.000557280002305
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88AZ5	 33 kDa chaperonin	0.000557168672785
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I340	 Enolase phosphatase E1	0.000557072385654
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MSQ2	 Methyl accepting chemotaxis protein	0.000557045021813
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M463	 4 alpha glucanotransferase	0.000556955992681
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MVT4	 Nodulation protein NolG	0.000556954240016
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A020VVQ6		0.000556895174058
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W3L7	 Short chain fatty acid transporter	0.000477942626659
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5W3L7	 Short chain fatty acid transporter	7.88785683993e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H2JJ51	 ABC type sugar transport system, periplasmic component	0.000556704965456
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZZT1	 Type I ferripyoverdine receptor, FpvB	0.000556558870887
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6ZVQ0	 4Fe 4S binding protein	0.000556505419862
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4Z8N5	 NADH oxidase	0.000556434481046
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PTK7	 PTS system, IIC component	0.000556421291863
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1LE56	 Cysteine desulfurase	0.00055586703234
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D3FUC6	 [Ni Fe] hydrogenase, small subunit	0.000555747493644
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MRW2	 NADP reducing hydrogenase subunit HndC	0.00055571004208
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4R3E4	 MFS superfamily bicyclomycin multidrug transportprotein	0.000555641921791
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P80357	 Arginine N succinyltransferase subunit alpha	0.000542838991402
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A3DHY6	 Ribosomal RNA small subunit methyltransferase G	0.000555069376546
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4K5I5	 Sel1 domain protein	0.000554972277427
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023LDQ6		0.000554902212389
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N5S4K4		0.000539917473537
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9C0V7		0.000554859109393
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V8R9C6	 Cytochrome C assembly protein	0.000554822527184
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1L8	 Putative cell wall binding repeat containing protein	0.000554770267843
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q92ID5	 NADH quinone oxidoreductase subunit A	0.00055475455811
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TDP3	 Isopentenyl diphosphate Delta isomerase	0.00055475037116
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4TBG9	 Probable 4 amino 4 deoxy L arabinose phosphoundecaprenol flippase subunit ArnE	0.00055475037116
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8LMK0	 HTH type transcriptional activator hxlR	0.00055475037116
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P54065	 30S ribosomal protein S28e	0.00055475037116
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6LKT9	 PTS system	0.00055475037116
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XUW5	 Transcriptional regulator, GntR family	0.000554641681823
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0X9S8	 Type VI secretion associated protein	0.000554472192684
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37641		0.000554423225253
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9JUC8	 50S ribosomal protein L19	0.000554365969307
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LLN2	 Dephospho CoA kinase	0.000554173527681
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O17953	 Dihydrolipoyl dehydrogenase, mitochondrial	0.000466951407236
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_O17953	 Dihydrolipoyl dehydrogenase, mitochondrial	7.09519097352e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_UPI00046D5F2F	 hypothetical protein	0.000434134729404
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI000364C709	 hydrogenase	0.000404109109272
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZNN5	 Potassium transporter	0.000553630006144
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V3C6		0.000211035412383
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_X5E185		0.000553060630843
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR19	 Nitrogenase	0.00055297286502
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1XJ95		0.000552868657612
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C1FUR3	 HTH domain protein	0.000552859377403
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7GY06	 3 oxoadipate enol lactonase 2	0.000552799447713
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XNF0	 Fatty acid oxidation complex subunit alpha	0.000552735683894
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZQ53	 Negative transcriptional regulator copper transport operon	0.000552635912445
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9LX78	 Transcriptional activator protein lasR	0.000552598788894
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46859	 Thermoresistant gluconokinase	0.000485694992219
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P09184	 Very short patch repair protein	0.000215276263431
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P37061	 NADH oxidase	0.000552062405724
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S2Y3		0.000551718948365
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNE7	 IS element 	0.000551718948365
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A7HM29	 Translation initiation factor IF 1	0.000551718948365
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5MZF6		0.000551718948365
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QGM3		0.000551718948365
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5JQZ7		0.000551718948365
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P13402	 Intrinsic membrane protein PufX	0.000551718948365
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42616	 Protein YqjC	0.000551718948365
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YBD3		0.000551718948365
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E1H2	 Secretion SecE domain protein	0.000551718948365
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SS12		0.000551718948365
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8SU96		0.000551718948365
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E5I8	 Aminotransferase	0.000551710301608
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4LGP4	 Tryptophanyl tRNA synthetase	0.000551703380426
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H2JHD1	 Integral membrane protein, TerC family	0.000550821309762
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3H5N7	 Polyphosphate kinase 2	0.000550644437014
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4Y4G5	 Methyltransferase family protein	0.000550626530332
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D4GE62	 Fcy21	0.000550576932276
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZJX7	 Membrane protein	0.000550347944
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A7G768	 Xanthine uracil permease family protein	0.000550275726276
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O34524		0.000322051229572
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_O34524		0.000228161963442
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46897	 CRISPR system Cascade subunit CasE	0.000550118246762
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5WYG2	 Signal peptide containing protein	0.000549910339858
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M109	 Stage III sporulation protein AA	0.000549897125555
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WVP5	 Ribonuclease 3	0.000501537378528
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DF02		0.000549746761862
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48E25	 GAF domain GGDEF domain EAL domain protein	0.000549568146697
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RX88	 50S ribosomal protein L25	0.000549409814042
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MAE0		0.000548935412434
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_S6A3I5	 Hemolysin	0.000548783764027
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU25		0.000548720475822
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KJD9	 Flagellar switch protein	0.000548720475822
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B9MG23		0.000548720475822
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D8ELB2		0.000548720475822
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K6NB87	 NADP oxidoreductase coenzyme F420 dependent	0.000548720475822
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RL91		0.000548720475822
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CPR7	 Recombinase Sin	0.000548720475822
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI000364F1B6	 hypothetical protein	0.000548720475822
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI0003EE4E67	 hypothetical protein	0.000548720475822
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HYH5	 Putative aldolase class 2 protein PA3430	0.000548561003832
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A014CIJ3	 CDP alcohol phosphatidyltransferase family protein	0.000548428375191
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M214	 Pyruvate, water dikinase	0.000548086557437
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQ79	 Response regulator receiver protein	0.000547969083315
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9VP62	 Esterase	0.00052321947442
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V1J4	 Oligoendopeptidase F	0.000547632957781
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MAN7	 Carboxyl terminal protease	0.000547553920809
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M9D3	 Cell envelope related transcriptional attenuator	0.000547505284188
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P22996	 Resolvase	0.000405480190966
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P22996	 Resolvase	0.000142003611183
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MCQ9	 ABC type transporter, integral membrane subunit	0.000547401462061
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P25438		0.000547378151351
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RX22	 Formamidopyrimidine DNA glycosylase	0.000547367915341
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8KBK4	 50S ribosomal protein L13	0.000313554557611
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8KBK4	 50S ribosomal protein L13	0.000233714276737
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A5P9		0.000547091775643
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8N413	 Lytic transglycosylase	0.000547057019025
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B9H5	 50S ribosomal protein L21	0.000547035364246
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I1ZJW9	 Hydrolase, haloacid dehalogenase like family	0.000546902829936
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D5C7M7	 6 phospho alpha glucosidase	0.000546879272116
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F8JIF2	 Recombination protein	0.000546767166502
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_M5Q933	 Clumping factor	0.000526157345142
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D3NWH1	 Simple sugar transport system ATP binding protein	0.00047701832085
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D3NWH1	 Simple sugar transport system ATP binding protein	6.95827481352e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N6Y0		0.000546543889489
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FBU7		0.000546370436068
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q59638	 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	0.000546351205165
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_UPI0003809C52	 flagellar biosynthesis protein FlhA, partial	0.000540689343435
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I6C8	 Probable coniferyl aldehyde dehydrogenase	0.000546109380426
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4VWT1		0.000545925200791
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I0I649	 Dihydroxyacetone kinase dihydroxyacetone binding subunit DhaK	0.000545754631968
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9DW22		0.000545754419195
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HKJ5		0.000545754419195
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZM7	 ABC transporter related	0.000545736005186
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M4YXX5	 Glycosyl hydrolase, family 3	0.000545698233332
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LD57	 AraC family transcriptional regulator	0.000545667522263
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZIX4	 Amino acid ABC transporter, amino acid binding protein	0.000545610034088
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P56861	 Adenylyl sulfate kinase	0.00054557075451
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0BBW6	 Acetyl coenzyme A synthetase	0.000545368135373
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C3SIP7	 PEP protein phosphotransferase system enzyme I	0.000545284198308
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F8I099		0.000545282981574
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HYL3	 Regulatory protein NosR	0.000545276333652
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02R92	 DNA mismatch repair protein MutS	0.000545195540816
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D2ARI1	 tRNA rRNA methyltransferase 	0.000545018901114
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVE6		0.000545001669603
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2X6	 RNA methyltransferase, TrmA family	0.000544580184686
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87VB5	 Potassium efflux system protein KefA, putative	0.000544563726128
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B1KCA5	 Transcriptional regulator, LysR family	0.000544460807735
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTF6	 Deoxyguanosinetriphosphate triphosphohydrolase like protein 2	0.000544271254241
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GD95		0.0005441804447
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4KG00	 Transcriptional regulator, LacI family	0.000544062606318
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7SJM7	 PAC2 family protein	0.00054400648175
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D7HYR3	 D alanyl D alanine carboxypeptidase	0.000543702760007
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9WQS7	 Acetyltransferase	0.000543508532469
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V1N9	 Arylamine N acetyltransferase	0.000543290739085
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P45682	 Lipoprotein NlpD LppB homolog	0.000543106176784
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I6TUC0	 UDP glucose 6 dehydrogenase	0.000542911647998
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J1C1G1		0.000542902266179
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKJ1		0.000273616714234
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNR0		0.000542824178244
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKG0		0.000542820255649
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V479		0.000542820255649
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6STN9		0.000542820255649
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S177	 Oxidoreductase	0.000542820255649
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R8A5F3		0.000542820255649
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_V4TX51		0.000542820255649
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4REL3	 Peptidase family M48 family	0.000542550882678
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRQ4	 Spore coat protein CotS	0.000542494383421
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V286		0.000511058991993
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M3G8	 Extracellular ligand binding receptor	0.000542478489498
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RPF4	 Protoporphyrinogen oxidase	0.000542272780471
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HNR8	 GTP pyrophosphokinase	0.000528610301311
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V1RE13	 Cyclic diguanylate phosphodiesterase domain containing protein	0.000542256750044
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N724		0.000542175715811
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D6S7R2		0.000542092614562
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1PIK6		0.000542092614562
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J9YSX7		0.000542092614562
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAR2	 Hha toxicity modulator TomB	0.000542092614562
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N0SZ54	 Ribosomal RNA large subunit methyltransferase F	0.000542090152793
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9V9X8	 6 phosphogluconolactonase	0.000542089394377
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C8TPJ1	 Predicted inner membrane protein	0.000542088210063
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZRP9	 Conserved repeat protein 	0.00054184943824
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A038GFU7		0.000498590457039
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1LR29	 Phage late control gene D protein GPD	0.000541759295328
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4KWU8	 N methylhydantoinase A acetone carboxylase, beta subunit	0.000541736313117
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A8MK30	 RNA binding S1 domain protein	0.000541697421252
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A8GIW3	 Probable L aspartate dehydrogenase	0.000541618974843
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQE3	 Spore coat protein CotS	0.000541591034544
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X3EN79		0.000541514221953
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F6GSD7	 Autotransporter	0.000541459241173
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PGE8	 Lysine exporter protein 	0.000541385789369
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4K0R6	 LacI family transcriptional regulator	0.000541096822557
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B0KIU6	 Transposase like protein TnpA3	0.000541067865879
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P43712	 Malonyl CoA acyl carrier protein transacylase	0.000527685674737
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0CF00	 Ferric mycobactin receptor, FemA	0.000540558893933
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3K8D6		0.000540445561832
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4R349		0.00048937654533
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q5WAN2	 GntR family transcriptional regulator	0.000540164624843
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3NCA4	 Transporter, major facilitator family	0.000540111899914
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L2E2A4	 Histidine binding periplasmic protein	0.000539917473537
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L4VLN5		0.000539917473537
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L5G2	 Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.000539917473537
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DX15		0.000539917473537
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T7V3S8	 Diguanylate cyclase	0.000539862256974
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q3K2I5		0.00053966751174
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F7Z4K9	 TnpA	0.000539643320731
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P55792	 4 hydroxybutyryl CoA dehydratase vinylacetyl CoA Delta isomerase	0.000539490460265
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J7QJA6	 SPFH domain   band 7 family protein	0.000539286152606
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3PRF6	 D amino acid dehydrogenase small subunit	0.000395016596511
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRF6	 D amino acid dehydrogenase small subunit	8.95870164589e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P50511	 RNA polymerase sigma factor RpoH	0.000292650920434
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P50511	 RNA polymerase sigma factor RpoH	0.000246255042803
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR77		0.000538892441215
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CR78		0.000497362401731
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4FPV2	 Na translocating NADH quinone reductase subunit F	0.000369525744663
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q4FPV2	 Na translocating NADH quinone reductase subunit F	0.00016897882906
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2W939	 FAD synthase	0.000538457869614
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G7D8U7	 Biopolymer transport protein	0.000538285044222
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UME6		0.000525857122659
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F6DQM1	 FAD linked oxidase domain protein	0.000538247169909
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9PNB4	 Elongation factor Ts	0.000538076305895
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZEN0	 Methyl accepting chemotaxis protein	0.000537957207637
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A024LBP2	 Conserved domain protein	0.000537769260772
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYI1		0.000537761632848
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9Y2Q0	 TonB dependent vitamin B12 receptor	0.000537713333439
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8Z3W5	 UPF0149 protein YgfB	0.000537511785031
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6S5R7		0.000537045572084
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2J773		0.000537045572084
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N1N082		0.000537045572084
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P55390	 Probable cold shock protein y4cH	0.000537045572084
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R430	 Trna rrna methyltransferase yfif	0.000536724492532
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU93	 Anthranilate phosphoribosyltransferase	0.000532496945454
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_M1XHR6	 Metallo beta lactamase family protein	0.00032273205664
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_M1XHR6	 Metallo beta lactamase family protein	0.000213925929552
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B8HHC7	 Formyltetrahydrofolate deformylase	0.000536426851884
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q1MRB9	 ATP synthase subunit alpha	0.000532387629895
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U1JLF9		0.000507359635931
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q65I16	 Glycerol 3 phosphate dehydrogenase [NAD+]	0.000524936785626
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F2K6P6		0.000535878048205
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0L7A3	 AAT family amino acid transporter	0.000535865533848
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E6UYE2	 Oxidoreductase FAD NAD binding domain protein	0.000535858345969
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IZA2	 Trehalose 6 phosphate phosphatase	0.000535617058806
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1SS95	 Prolipoprotein diacylglyceryl transferase	0.000535452519283
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V293	 Aerotaxis transducer Aer2	0.000535362001449
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G8LZQ1	 Molybdate ABC transporter, permease protein	0.000535040256309
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSC2	 3 oxoacyl [acyl carrier protein] synthase 3	0.000349062932257
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K282	 Glycosyl transferase, group 2 family protein	0.000534887658633
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2NRT0		0.00053465178938
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97G69	 Glycerol 3 phosphate acyltransferase	0.000534548625531
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8FTQ8	 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein	0.000534514704153
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI00035C7334	 hypothetical protein	0.000493088269673
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YXK4	 Membrane spanning protein	0.000534204061117
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G0LU46		0.000534204061117
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WZV5	 Dicarboxylate transporter	0.000534204061117
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6APV5		0.000534204061117
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q329H4	 Phosphonate metabolism	0.000534129608411
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9K5L2		0.000534124609907
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXF1	 D alanine  D alanine ligase	0.000529263363184
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C4ZJG8	 Nitrite reductase H), large subunit	0.000533673221537
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYW2		0.000531302198458
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E1W5	 Arginine  tRNA ligase	0.00052845161528
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G6DSX7	 UDP glucose 4 epimerase	0.00053341610726
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9DZV8		0.000533254570272
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P52477	 Multidrug resistance protein MexA	0.000533099357483
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2THH4	 HDIG domain HD domain protein	0.000533008922237
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WYD7		0.000532910347854
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1PBS0	 Blue light and temperature regulated antirepressor YcgF	0.000532845074382
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_N0C6M2	 Integrase recombinase, phage associated protein	0.000532837698981
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A8FQE6	 Radical SAM domain protein	0.000532380125138
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T279	 Amidohydrolase	0.000532340866752
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HED9	 ABC transporter ATP binding protein	0.000532319509374
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5XXZ2	 4 hydroxybenzoate octaprenyltransferase	0.000532121189742
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q94IN5	 Pyruvate dehydrogenase [NADP], mitochondrial	0.000532017649316
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1F8T4	 Autoinducer 2 binding protein lsrB	0.000411951461068
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PHS3	 Transport associated	0.000348454332059
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D0ZSY9	 ECF RNA polymerase sigma E factor	0.000531661808179
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PLZ5	 ParB family protein	0.000531471984605
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D7ZX87		0.000531392460792
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L2UZF5		0.000531392460792
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M5I2R3		0.000531392460792
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q5XE79	 Thioredoxin	0.000531392460792
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSJ1		0.000531392460792
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EFY2	 Bacterial extracellular solute binding s, 3 family protein	0.000531392460792
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI00037AA2B4	 hypothetical protein	0.000531392460792
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8FY28	 Ribonuclease HII	0.000509067917543
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4CXF8		0.000531082249197
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B0K282	 tRNA dihydrouridine synthase	0.000531078060773
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WPB0		0.000426626061
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4RQF1	 Predicted protein	0.000531054624575
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O05508	 6 phospho beta glucosidase GmuD	0.000531038465549
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5BW02		0.000530921861399
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E6UYF1	 Short chain dehydrogenase reductase SDR	0.000530814192461
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L2Z3I9		0.000530715747827
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58584	 Riboflavin synthase	0.000530698643581
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0WM29	 Methylmalonate semialdehyde dehydrogenase [acylating], mitochondrial	0.000525476698426
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPI8	 Hemolysin type calcium binding region	0.000530618991453
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AGG6	 Thioredoxin 2	0.000530591458112
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6EN42	 Selenium dependent molybdenum hydroxylase 1	0.000530167440207
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I6TBP2	 Oligo beta mannoside permease IIC component	0.000529809094058
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F2N563		0.000529688582659
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRT6		0.000529674230394
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZEH0	 Ring hydroxylating dioxygenase subunit	0.000529653047109
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8RAA5		0.000529539292148
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X2H7M9	 Carboxyl terminal protease	0.000529360258001
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6I111		0.00052926421794
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N5C6	 Redox sensing transcriptional repressor Rex	0.000529161294922
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0J9	 CheA signal transduction histidine kinase	0.000529155031434
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42905	 Putative N acetylgalactosamine permease IIC component 2	0.000529026672443
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G0EV06	 Malonate decarboxylase gamma subunit	0.000528958214831
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P27017	 Aliphatic amidase expression regulating protein	0.000528890130062
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P55222	 Cyclic AMP receptor like protein	0.000528766223235
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NGX7		0.000528613923849
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1L3		0.000528610301311
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E443		0.000528610301311
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HC59	 MazG family protein	0.000528610301311
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_O30875	 Major cold shock protein	0.000528610301311
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1RFI5		0.000528610301311
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTC1		0.000528610301311
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T5YD38		0.000528610301311
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9FGT0		0.000528610301311
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E1QW23	 Uracil DNA glycosylase superfamily	0.00052857785455
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2T4I7	 ABC transporter related	0.000528549442757
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RWA6	 Sugar kinase	0.000528504538634
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U3U8M0		0.000528303326691
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6G969	 Hypoxanthine phosphoribosyltransferase	0.000528234229671
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VRV3	 Formamidopyrimidine DNA glycosylase	0.000521928273277
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8ULT8	 Cationic amino acid transporter	0.000528088395712
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P37460	 Proline specific permease ProY	0.000527969448204
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SGN7	 Serine aspartate repeat containing protein D	0.000527930025418
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZM5		0.000527927426297
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFA6	 Bacteriophage N4 adsorption protein B	0.00052778301189
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S6AEE6	 Sulfate ABC transporter substrate binding protein CysP	0.000527753133577
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N540	 Predicted transport protein, ATPase and permease component	0.000527738831835
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ86	 4Fe 4S ferredoxin, iron sulfur binding domain protein	0.000527711626074
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W5N5	 Fatty acid cistrans isomerase	0.000527599206824
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B7GSK0		0.000527356954228
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0K514	 PTS cellobiose specific component IIC	0.000527293884197
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZG20	 Chemotaxis protein	0.000527224864101
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6SM17	 3 deoxy D arabinoheptulosonate 7 phosphate synthase	0.000527205785291
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y2XLL7	 Fibronectin binding protein B	0.00052673125871
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2HDG8	 Peptidase M23 family protein	0.000526704397268
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WRE5		0.000526633718446
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MT98		0.000384636471888
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D3QDC1	 Methicillin resistant surface protein	0.000525946292697
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L5VNR4	 Ybl54	0.000525857122659
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M4IJC9	 Transposase like protein	0.000525857122659
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC64	 Glutaredoxin 3	0.000525857122659
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW60		0.000525857122659
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9KV02	 Sulfurtransferase TusD homolog	0.000525857122659
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R4Y9A4	 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.000525857122659
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X2HFM3	 Integral membrane protein	0.000525772953941
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNK7		0.000525581740781
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F0E145	 Hydrophobe amphiphile efflux 1  family protein (Fragment)	0.000525428891673
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76001		0.000525323430942
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P74861	 Aromatic amino acid aminotransferase	0.000525134732254
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HK35		0.000525127758106
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6WRK7	 Inner membrane translocator	0.000525127543042
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6ABS5	 Formate  tetrahydrofolate ligase	0.000502069791064
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4K5S5		0.000524850662224
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4QZX1		0.000524720660832
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SM10	 Energy converting hydrogenase B subunit E EhbE	0.000524491260005
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2HCU7	 Putative histidine kinase	0.000524342381622
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A022P145		0.000373942842782
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P05695	 Porin P	0.000524204112444
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X2HFC0	 Electron transport complex protein RnfB	0.000524040131094
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M7B2	 Cell wall hydrolase autolysin	0.000523851586781
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0SXK4	 Cyclopropane fatty acyl phospholipid synthase	0.000523758876097
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T8GQ95	 Glyoxylate carboligase	0.000523685349741
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ50	 Type I phosphodiesterase nucleotide pyrophosphatase	0.000523445887987
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q5L3T0	 Type III pantothenate kinase	0.000517521488992
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F5Y5K7	 Candidate UDP glucose 6 dehydrogenase 	0.000523438427958
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B6FWG5		0.000523411551887
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RDL8	 Methyl accepting chemotaxis transducer	0.00052331926172
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S6BEN0		0.000523178004031
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNU1		0.000523132474362
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MTZ9		0.000523132474362
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V2U4		0.000523125496317
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1DA63	 NADPH dependent FMN reductase	0.000522687460834
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M868	 Aldehyde dehydrogenase	0.000522546641988
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C6A0C0		0.000522514776541
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JY29		0.000522446247476
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQT2	 Transcriptional antiterminator, BglG	0.000522035608991
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AG29		0.000470149962202
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VKU7	 ABC transporter permease	0.000521764861155
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9UQR5		0.000521732315893
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VB96	 Enoyl CoA hydratase isomerase family protein	0.000521537675097
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K2Z6	 Streptomycin resistance protein	0.000521200155132
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q0RS03	 Glutamate 1 semialdehyde 2,1 aminomutase	0.000512033605881
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_A9QYJ6	 Tellurium resistance protein	0.000521101452958
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KEG8		0.00052091979245
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX64	 ABC transporter related	0.000520804611698
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6US82	 TROVE domain containing protein	0.000520783843215
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRW0	 Phage Terminase	0.000520766450231
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTP4		0.000520435915216
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MT07		0.000520435915216
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5B8K6	 Transposase, IS3 IS911 family protein	0.000520435915216
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2LA35		0.000520435915216
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52102		0.000520435915216
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I2Y1	 Para aminobenzoate synthase component I	0.000520408333554
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XHI3	 Probable cytosol aminopeptidase	0.000516460136322
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MYI6	 Esterase family protein	0.000520296173288
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7VJN5	 3,4 dihydroxy 2 butanone 4 phosphate synthase	0.000520040734063
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3F4G7	 DNA primase	0.000519972280298
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V8RAP1	 Membrane protein	0.000483084055267
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MBQ3	 PTS system transcriptional activator	0.000519791673022
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P44016	 Putative oligopeptide transporter HI_0561	0.000519556079292
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M5U8	 Glu tRNA amidotransferase	0.000519418778818
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0LUE5	 Predicted hydrolase of the HAD superfamily	0.000519367684689
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAW0		0.000519202783198
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSP7	 1 deoxy D xylulose 5 phosphate reductoisomerase	0.000518682076807
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1LNN1	 Tex like protein	0.000518617539276
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXA4	 4Fe 4S ferredoxin, iron sulfur binding domain protein	0.000518338083841
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZL2		0.000517935823729
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5IQ58	 Collagenase and related proteases	0.000517861077984
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_P54027	 50S ribosomal protein L44e	0.000517767013082
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8T550		0.000517767013082
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D2NLM2	 Transcriptional regulator	0.000517617057912
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4XVU8	 Toluene tolerance protein Ttg2F	0.000433324324258
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MXV9	 Methyl accepting chemotaxis protein	0.000517271450442
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYI7	 N glycosidase F, putative	0.000517267306957
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R5QT37		0.000517203986907
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C6W3G1	 Aminotransferase class I and II	0.000517193372351
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VRL6	 Predicted Zn dependent peptidase	0.000516849351529
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V176		0.000424220872067
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q06129	 Anthranilate synthase component 2	0.00050851854097
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EMC8		0.000516516557473
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6E4R3	 Response regulator	0.000516442800776
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C1FNN6	 Xanthine uracil permease family protein	0.000516186680142
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F1VLT2		0.000385360944849
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F9L947	 Phage antirepressor protein	0.000516177965839
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E4Q8		0.00051617350688
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q9KYS1	 1 deoxy D xylulose 5 phosphate reductoisomerase	0.000515635923383
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I6V2	 Chemotactic transducer for trichloroethylene [positive chemotaxis], CttP	0.00051560711171
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3LE40	 Glycerol kinase 	0.00051542505954
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5WIA8	 Acyl CoA dehydrogenase domain protein	0.0003105832857
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D5WIA8	 Acyl CoA dehydrogenase domain protein	0.000204796283063
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6SL99	 RNA polymerase sigma factor	0.000515286297483
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P43502	 Protein PilI	0.000515272699383
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2UZ33	 Phosphodiesterase, family	0.000515125344646
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCU9	 Cysteine rich domain protein	0.000515125344646
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F0KFG3	 Modulator of drug activity	0.000515125344646
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F6D853	 Molybdenum pterin binding protein	0.000515125344646
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_J2FLN3	 Alcohol dehydrogenase Adh4	0.000515125344646
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2L173		0.000515125344646
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW70		0.000515125344646
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023AZR5	 Malic enzyme	0.000515116809142
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q46185	 Diaminopimelate epimerase	0.000515046015271
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HUK1	 DNA topoisomerase 4 subunit A	0.000374847908894
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9HUK1	 DNA topoisomerase 4 subunit A	0.000140155184542
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C9RQ15	 Nitrogenase	0.000514923245759
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W9T2S8	 Guanosine 3,5 bis 3 pyrophosphohydrolase	0.000514588592036
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8I2T4	 UDP N acetylmuramoylalanine  D glutamate ligase	0.000514586298747
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1YN33	 Outer membrane protein N	0.000514503177113
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A8L3S1	 Malate dehydrogenase 	0.000427756038529
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A8L3S1	 Malate dehydrogenase 	8.63683212629e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KRJ2	 Transcriptional regulator, IclR family	0.000514015289375
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4X2Y3		0.000488845929549
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B3Q6T0	 NADH quinone oxidoreductase, chain G	0.000513871171299
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J2MSH5		0.000501490600977
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G8PYJ4	 ExbD2 TolR	0.00051368371915
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q11K61	 Binding protein dependent transport systems inner membrane component	0.000513312717426
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4KUA6	 Iron ABC transporter, periplasmic iron binding protein	0.000513277651573
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YUC0	 Protein QbdB	0.000513137133672
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q03025	 Alkaline protease secretion protein AprE	0.000513067084172
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZTI8	 50S ribosomal protein L28	0.000512510495186
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5STD3		0.000512510495186
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8V9R1	 Permease	0.000512510495186
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I0GP22		0.000512510495186
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW59		0.000512510495186
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8VNS7	 ST01 protein	0.000512510495186
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V6Q1M7	 N ethylmaleimide reductase 	0.000512510495186
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W0AKH5	 MqsR controlled colanic acid and biofilm protein A	0.000512510495186
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1BGB5	 Anaerobic dimethyl sulfoxide reductase chain A	0.000512510495186
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LXR2	 ABC type transporter, periplasmic subunit	0.000512403188286
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I5ARC3	 Acetolactate synthase	0.000512267466263
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L1GW48	 Glycosyl hydrolase 1 family protein	0.000512046174668
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0TRQ8	 IS1193, transposase, ISL3 family	0.000512045996102
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRN1		0.000511962517053
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76165		0.000437076050005
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1U3	 Response regulator receiver protein	0.000511318164514
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B5SHZ2	 Segregation and condensation protein a	0.000511263883358
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q8G3W4	 Permease of ABC transporter for sugars	0.000511229329678
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMX3		0.000510567529302
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77759		0.00051025417564
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_B1I8K9	 50S ribosomal protein L24	0.000509922058339
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32162	 UPF0381 protein YiiS	0.000509922058339
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J5V3	 Hpr kinase phosphatase	0.000509922058339
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8FW09	 Cell wall binding protein	0.000509922058339
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8SUL3		0.000509922058339
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X3XYJ1		0.000509922058339
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A008QSP4		0.0005098760001
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_UPI00047AE27E	 DNA topoisomerase I	0.000506408637655
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3K4E8		0.000426120761731
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q03M45	 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.000509636427719
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97EZ4	 Galactose 1 phosphate uridylyltransferase	0.000509314797143
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6ACH6	 LPS assembly lipoprotein LptE	0.000509314263869
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P80873	 General stress protein 39	0.000509286530487
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8TMA8		0.000509100659343
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W9T9W7	 Lon protease	0.000465960663299
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_W9T9W7	 Lon protease	4.28724278343e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M577	 Polysaccharide biosynthesis protein	0.000508750627605
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N4DH58	 Pyridine nucleotide disulfide oxidoreductase family protein	0.000508731850811
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25830	 Bifunctional dihydropteroate synthase dihydropteroate reductase	0.000508639826777
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF00	 Molybdenum cofactor biosynthesis protein B	0.000395552064276
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4K4B5	 Ribosomal RNA small subunit methyltransferase D	0.000508213776737
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E2SCH3	 Ribonucleoside diphosphate reductase subunit beta	0.000508208803455
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H290	 Bacterial regulatory helix turn helix protein, AraC family protein	0.000508133696307
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024E2H8		0.000508133611365
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCQ0		0.00050809129663
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HV34	 Polyamine aminopropyl transferase 2	0.000508050282935
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1KTG4	 Glutamate racemase	0.00050786943292
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MVR3	 Methyl accepting chemotaxis protein McpA	0.000507715353124
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2MU03	 Glutamate ammonia ligase adenylyltransferase	0.00050761703081
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A4J903	 UPF0042 nucleotide binding protein Dred_3054	0.000507595315765
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JGE0	 Paraquat inducible protein A	0.00050755217728
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4XCN3	 Chaperone CupA2	0.00050753781503
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M684	 Molybdenum cofactor guanylyltransferase	0.000507452127886
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M1W4	 Two component transcriptional regulator, winged helix family	0.000507385132675
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZQB6	 Transcriptional regulator, LysR family	0.000507376147273
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZUX7	 Sensor protein basS pmrB	0.000507369533165
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C3KDN7	 Ferrochelatase	0.000488818525827
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WWC8		0.000507359635931
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C3TAX2		0.000507359635931
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCD1	 L fucose isomerase, first N terminal domain protein	0.000507359635931
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75991	 Probable two component system connector protein YcgZ	0.000507359635931
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0BTC5	 Maf like protein GbCGDNIH1_1029	0.000507359635931
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9PAQ8	 Integration host factor subunit beta	0.000507359635931
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8TC27		0.000507359635931
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K279	 PAP2 family protein	0.000507359635931
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ60	 ROK family protein	0.000507231319669
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G0AJ21	 Glycosyltransferase	0.000507191616857
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SVU2		0.000507116087899
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RY49	 Amino acid transporter	0.000506971554011
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KK74	 Cellulose synthase	0.000506948650754
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M1E1G1	 LOV protein	0.000506735045471
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQL7	 Regulatory protein, IclR	0.000506724758181
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5AYY6	 ABC family transporter, periplasmic protein	0.00048100269821
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F7YPH9	 ABC transporter ATP binding protein	0.000506679112039
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YTP5	 Iron complex transport system, substrate binding protein	0.000506603517959
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9IVG3		0.000506511208448
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A4J4I2	 Glucose 1 phosphate adenylyltransferase	0.000501974804155
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9ST52		0.000506320434282
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M4L1		0.000506243873194
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5F4E6		0.000505971908684
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6N7	 GTP binding protein HSR1 related protein	0.000505870911374
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR99	 RNA directed DNA polymerase	0.000505862220152
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6R0W0	 Electron transfer flavoprotein domain containing protein	0.000505783676008
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HW69		0.000429129682582
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7DWM1	 Peptide deformylase	0.000505474450626
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2L7K7	 Putative type I restriction modification system, specificity determinant	0.000505448191761
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UXU5	 Homologous to beta keto acyl acyl carrier protein synthase	0.000505426016014
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H1C309	 Cellulose synthase operon protein C	0.000505307379073
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I1M1	 2 oxoisovalerate dehydrogenase subunit beta	0.000505175687818
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GCF2		0.000505090360905
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E347		0.000504825992919
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M103		0.000504822837756
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N3B6I3	 Pyridoxal phosphate dependent enzyme family protein 	0.000504822837756
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64576		0.000504822837756
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQT0		0.000504822837756
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q9Y8I1	 Archaeal histone A	0.000504822837756
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1IXT2	 Cysteine synthase	0.000504736425817
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LJ72		0.000504730005763
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YDU0	 Ribosomal RNA large subunit methyltransferase J	0.000504722982486
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M4ZFW2	 HAD superfamily hydrolase	0.000504676311958
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P11290		0.000504554050106
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HDP4	 Transcriptional regulator, MerR family	0.000504468302625
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G8R7R2	 Methyltransferase family protein	0.000504119280282
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0Z0G1	 NADH quinone oxidoreductase	0.000503963199035
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D3T5X9	 Mannitol dehydrogenase domain protein	0.000503887125202
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P17058	 Acyclic carotenoid 1,2 hydratase	0.000466670803249
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2L1W2	 Phosphonoacetaldehyde hydrolase	0.000503536428401
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M004	 Signal transduction histidine kinase, nitrogen specific, NtrB	0.000503326525014
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8PG31	 Ketosteroid isomerase	0.000503320388832
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I8ZZJ9	 3 hydroxyisobutyrate dehydrogenase	0.000503307913488
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_T1VWL4	 Oligopeptide dipeptide ABC transporter ATPase subunit	0.000503195842384
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HWK6	 Lysyl endopeptidase	0.000503083087346
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M3W1	 Phage integrase	0.000502691859572
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C3K4R1	 Glycerol 3 phosphate acyltransferase	0.000502603406695
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M301	 Carbohydrate kinase, YjeF related protein	0.000502419072786
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V7H6	 Phosphohistidine phosphatase SixA	0.000502311281348
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2I9S9		0.000502311281348
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DVY8		0.000502311281348
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46909	 Inner membrane metabolite transport protein YgcS	0.000502237614096
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S5UJA4		0.000502187179538
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8DGX5	 Phosphoribosylformylglycinamidine synthase 1	0.00049145855579
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JE40	 Soluble lytic transglycosylase fused to an ABC type amino acid binding protein	0.000502088384447
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K4I6	 Membrane protein, putative	0.000501982591845
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3KFI9	 Methylthioribulose 1 phosphate dehydratase	0.000501844167504
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8RRR3	 Type I secretion system ATPase	0.000501640525071
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AU36	 Peptidase, U32 family	0.000501498719367
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q0VRV2	 Acetyl CoA C acetyltransferase	0.000277879236518
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0VRV2	 Acetyl CoA C acetyltransferase	0.000136254477125
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0VRV2	 Acetyl CoA C acetyltransferase	8.73395913058e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUK6	 Peptide methionine sulfoxide reductase MsrB	0.000493323991598
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O85341	 GDP mannose mannosyl hydrolase WbdQ WbhG	0.000501183512621
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H076	 Glycosyl transferases group 1 family protein	0.000501126993403
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RW17		0.000501067936592
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26834	 Putative nickel responsive regulator 2	0.000500998937114
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MWP3	 Ribonuclease R	0.000500908393291
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_A3NNI6	 S glutathione dehydrogenase	0.000375674987914
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3NNI6	 S glutathione dehydrogenase	0.000125110988293
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q62JH0	 Probable allantoicase 1	0.000500742236619
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MBM4		0.00050048591664
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9W0C4	 ABC transporter permease	0.000500278758489
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F0VUM0	 Protease	0.000500153851578
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M039		0.000500114197088
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN12	 Predicted acyltransferase	0.000500075960171
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D7I534	 Acyl CoA thioesterase II	0.000499975260211
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A9H6	 Gamma glutamyl phosphate reductase	0.000499886962941
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M5I9		0.000499824591837
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2JN97		0.000499824591837
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXS6	 2 C methyl D erythritol 2,4 cyclodiphosphate synthase	0.000499824591837
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1LPD5	 Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB	0.000499760547043
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2I5	 Glycosyl transferase, family 2	0.000499744877918
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6RSR0		0.000499573929629
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q466U8	 ABC transporter ATP binding protein	0.000499223578046
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7ZCI7	 YcjX like protein	0.000489046328748
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8FZW4		0.000499207524438
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKI2		0.000498590457039
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V770		0.000275107813488
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UZ15		0.000498449324203
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VJJ5	 AP endonuclease, family 2	0.000498437207819
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87U89		0.000498362817125
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P06864	 Evolved beta galactosidase subunit alpha	0.000498334922342
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYF1		0.000498181307418
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N1GZF1	 Histidinol phosphate aminotransferase	0.000498154442977
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q11D29	 Amino acid amide ABC transporter ATP binding protein 1, HAAT family	0.000498040377147
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZSV4	 Cell division protein DivIB	0.000498028990221
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UX08		0.000498022109153
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACJ7		0.000497872851587
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9ZPX5	 Succinate dehydrogenase [ubiquinone] flavoprotein subunit 2, mitochondrial	0.000494890240708
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PSC4	 Alkylhydroperoxidase like protein, AhpD family	0.000497627494875
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9KNG7	 Probable chromosome partitioning protein ParB	0.00049760640886
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D6LAV3	 PTS system, mannose fructose sorbose family, IID component	0.00049738955906
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZP88	 Proline dehydrogenase PutA	0.000497367072413
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5QWJ8		0.000497362401731
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23873	 Antitoxin HipB	0.000497362401731
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2EEQ8	 Putative defective transposase YbfQ	0.000497362401731
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FCU8	 O methyl transferase	0.000497362401731
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VBI2	 Membrane protein, putative	0.000497261664586
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A7NIM0	 Methyltransferase type 12	0.000497089655958
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACU3	 HTH type transcriptional regulator RutR	0.000496901681519
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A024L372	 Protein involved in detoxification of methylglyoxal	0.000488437252189
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_UPI0004423401	 translation factor GUF1 homolog, chloroplastic like	0.000479519807062
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5LYA4	 P4 family integrase	0.000496749893196
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_J7L244	 Zinc binding dehydrogenase family protein	0.00049674564077
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T5D5		0.000496581631675
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TK67	 Sterol regulatory element binding protein	0.000496406715499
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6T2W9		0.00049628718591
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87VD5	 Glutamate ammonia ligase adenylyltransferase	0.000496279036545
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VME8	disulfide interchange protein	0.000496205325181
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_M4MB15	 Protein A variant	0.00049605093906
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3TNP2	 Amino acid carrier protein	0.000495726111007
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5X9H5	 DNA mismatch repair protein MutL	0.000495670141632
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2TER4	 Lipid A ABC exporter family, fused ATPase and inner membrane subunits	0.000495515545918
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU60	 Prophage ps3 protein 01, putative	0.000495483279217
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN97		0.000495447539153
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0RG68		0.000495297467762
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TNE9	 Biotin [acetyl CoA carboxylase] ligase	0.000495256275966
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_U5WTC2	 Magnesium transporter	0.000495206875901
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D4K8J4	 Transposase and inactivated derivatives	0.000495146331821
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E0NCD7		0.000442827050665
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9NSM8		0.000446745874124
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3WHC1	 Cadmium resistance transporter family protein	0.000495019277495
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F4BS58	 Ribokinase	0.000494971236332
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GDS1		0.000494925231676
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNI0		0.00049492435074
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5XNC6	 Protein Smg	0.00049492435074
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MC89	 Cell wall hydrolase	0.00049492435074
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N5H5I7	 Fibronectin binding protein A	0.00049492435074
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27155	 CRISPR associated endoribonuclease Cas2	0.00049492435074
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64593	 Inner membrane protein YhaI	0.00049492435074
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6MDN1	 Translation initiation factor IF 1	0.00049492435074
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8CWZ2		0.00049492435074
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7H8U8	 Nitroreductase	0.00049492435074
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5EPD5	 Iron ascorbate oxidoreductase	0.000494868862511
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q883J9		0.000494793329818
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E5AMF6	 Ammonium transporter   Methylammonium transporter	0.000416311874317
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E5AMF6	 Ammonium transporter   Methylammonium transporter	7.82671066238e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3UP25	 HAD superfamily hydrolase subfamily IB	0.000494536934418
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PS95	 Streptococcal histidine triad family protein	0.00049448661292
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26735	 Conserved protein	0.000494337082982
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46795		0.00049372607266
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q390S8	 Drug resistance transporter EmrB QacA subfamily	0.000493632599522
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MM11	 Response regulator GtcR	0.000493608206008
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0STJ3	 Sirohydrochlorin cobaltochelatase	0.000493434397948
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5I292		0.000493354370584
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9SAS9	 Transcriptional regulator	0.000493129247172
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6G9X5	 Na H(+) antiporter NhaB	0.000493118878081
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1JJF7	 LPS assembly protein LptD	0.00049297689896
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P30417	 Probable FKBP type 25 kDa peptidyl prolyl cis trans isomerase	0.000492956309669
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HWB8	 Nuclease SbcCD subunit C	0.000492771687315
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P62177	 RNA polymerase sigma 35 factor	0.000492598894747
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R5E350	 Phospholipase patatin family	0.000492580369526
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZTL2	 Type 4 fimbrial biogenesis protein PilV	0.000459741758484
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023LDA8		0.000492510085617
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IPL7		0.000492510085617
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G0EVT0	 Cobyrinic acid a,c diamide adenosyltransferase CobO	0.000492510085617
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YTP8		0.000492510085617
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46868		0.000492510085617
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q7WP11	 2 nonaprenyl 3 methyl 6 methoxy 1,4 benzoquinol hydroxylase	0.000492510085617
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MXP3		0.000492480559599
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W0I1A1	 Aspartate ammonia lyase	0.000492461638566
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D5V8H6	 Phosphomethylpyrimidine kinase	0.000492395270689
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V155		0.00049236673889
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q930I4	 Histidinol dehydrogenase 2	0.000492197165416
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0H2V6	 Hemolysin activator protein	0.000492173837391
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VKH9	 Extracellular solute binding protein	0.000492168757257
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_M1XHT3	 SCCmec staphylococcal cassette region, isolate CMFT503	0.000476221625703
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W202	 Peptidoglycan glycosyltransferase	0.000491535860209
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O85673	 Anthranilate 1,2 dioxygenase large subunit	0.000491384496341
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P15275	 Transcriptional regulatory protein AlgQ	0.000491384488244
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P26994	 Exoenzyme S synthesis protein B	0.000491311764243
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6AR61		0.000491311764243
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Z2D8Y2	 Amino acid ABC transporter substrate binding protein	0.000491296193629
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E8IF85		0.000469602639773
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4FRK9	 N acetyl gamma glutamyl phosphate reductase	0.000477556426809
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5U1M5	 Glycoside hydrolase family 3 domain containing protein	0.000490828420022
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7RCB5		0.0004906347343
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYQ4	 Integral membrane sensor signal transduction histidine kinase	0.000490571599561
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MD13	 Cell wall binding repeat containing protein	0.000490260757887
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRP2		0.000416325817897
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P42314		0.000277698154143
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P42314		0.000212454743741
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S135	 Ferrous iron transporter B	0.000490119259953
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UX96		0.000490119259953
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2N6I7	 Lipoprotein, putative	0.000490119259953
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1C1		0.000490119259953
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5FLI5	 Glutathione peroxidase	0.000490119259953
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52627	 Regulator of sigma S factor FliZ	0.000489847341433
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJS3	 Ribonuclease P protein component 2	0.000360587741251
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P54517	 3 dehydroquinate dehydratase	0.000480958152299
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I1P2	 HTH type transcriptional regulator VqsM	0.000489718000945
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRC8	 Transposase IS116 IS110 IS902 family protein	0.000489664144304
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D5WFZ7	 Type VI secretion protein, EvpB VC_A0108 family	0.000486395635311
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2E1		0.000489581372219
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1BYF5	 Undecaprenyl diphosphatase 1	0.000350054571306
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L9I8Z3	 Aldehyde oxidase and xanthine dehydrogenase, a b hammerhead domain protein	0.000489539371726
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P29369	 Glycerol metabolism activator	0.000489539371726
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T1H0	 Iron dicitrate transporter FecR	0.000489429768499
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I4G8	 Arachidonate 15 lipoxygenase	0.000489334188443
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DMM9	 Transcriptional regulator, LysR family	0.000489312606105
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSP4		0.000489233838366
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7GX21	 Aldehyde dehydrogenase	0.000488846162737
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I2H0		0.000267102030558
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U2F5	 Acetamidase Formamidase	0.00048878650662
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZUC7		0.00023812398007
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4QXD0	 Transcriptional regulator, LysR family	0.000488596698998
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F5Q2F1	 Putrescine ornithine antiporter	0.000488438403599
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HTF1	 Low specificity L threonine aldolase	0.000388000521087
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LW35		0.000488132183902
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8G4J9	 Major facilitator transporter	0.000488058491257
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8DKX1	 4Fe 4S ferredoxin iron sulfur binding domain protein	0.00048801438115
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G0A370	 20S proteasome, A and B subunits	0.000487993802471
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I1W4	maltose 1 phosphate maltosyltransferase	0.000476541999068
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T0Z6	 dGTP pyrophosphohydrolase thiamine phosphate synthase	0.000487808587455
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ18	 Transcriptional regulator, TetR family	0.000487751534064
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYZ5	 Transposase 	0.000487751534064
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZUQ8	 DNA topology modulation protein	0.000487751534064
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T8T1E8		0.000487751534064
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U3TV34	 PoxB protein	0.000487751534064
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8SS00		0.000487751534064
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MMR2	 O antigen polymerase	0.000487626173569
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97FC1	 UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase 2	0.000487597761615
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUB1	 Diguanylate cyclase	0.000487537132241
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZC4	 1 pyrroline 5 carboxylate dehydrogenase, putative	0.00048746423345
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWA9		0.000487450391925
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XU40	 Major facilitator transporter	0.000487295896408
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_H8LWD1		0.000487284578886
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5A8E0	 HlyD family secretion protein	0.000487275552381
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DXL3	 Prophage LambdaSa2, lysin, putative	0.000487258009999
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q01244	 Yop proteins translocation protein C	0.00048723227407
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXE2	 Efflux transporter, RND family, MFP subunit	0.000487091508745
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B0S039	 Aspartate ammonia lyase	0.00048691271552
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6AE90	 Iron siderophore receptor protein	0.000486907884557
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XQ21	 Transcriptional regulator, GntR family	0.000335430456979
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E2XQ21	 Transcriptional regulator, GntR family	0.000151371165743
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HP52	 Mig 14	0.000486504282989
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4M7N5	 Monosaccharide ABC transporter membrane protein, CUT2 family 	0.000486184510838
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L8BHK8	 Predicted regulator of CFA I fimbriae	0.000485991401967
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7LVR8	 L alanine exporter AlaE	0.000485420532613
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0EKQ4		0.000485406574766
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0VLT2	 Transcriptional regulator, TetR family	0.000485406574766
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YAT3		0.000485406574766
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1YBP3		0.000485406574766
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5ZGJ9	 DNA binding protein	0.000485230664573
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0STL9	 UPF0313 protein CPR_1216	0.000484637384225
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_N6Z631	 Cytosine deaminase	0.000370429135631
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G2SPG8	 Primosomal protein n	0.000484581604522
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9CGI3		0.000484476525588
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C6B134	 Class I peptide chain release factor	0.000484420821729
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K8DRW2	 Phosphoribosylformylglycinamidine synthase,synthetase subunit   Phosphoribosylformylglycinamidine synthase, glutamine amidotransferase subunit	0.000428174563266
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8DRW2	 Phosphoribosylformylglycinamidine synthase,synthetase subunit   Phosphoribosylformylglycinamidine synthase, glutamine amidotransferase subunit	5.61033496305e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SCE5		0.000484271528765
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DNZ1	 LysR family transcriptional regulator	0.000484253669597
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77509		0.000484206425722
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RWW8	 3 5 exonuclease	0.000484130407086
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQT7	 Ribulose phosphate 3 epimerase	0.000484081804823
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LKQ2	 Sulfurtransferase	0.000484007301463
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H6NN00	 MerR family transcriptional regulator	0.000483967112143
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4WFI1	 Amino acid kinase family protein	0.000483940626472
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76510		0.000335430456979
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q82XQ6	 30S ribosomal protein S6	0.000483663292747
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXB1		0.000483652922252
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F5YFX0	 Polar amino acid ABC transporter, inner membrane subunit	0.000483641543576
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K4H8		0.000483504636783
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX73		0.00048329938343
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZS1	 Histidine transport ATP binding protein HisP	0.000483239471046
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D1AIW2	 PTS system Galactitol specific IIC component	0.000483213928413
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYS3	 PAS PAC sensor signal transduction histidine kinase	0.000483149304447
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A3PQQ0	 GCN5 related N acetyltransferase	0.000483141916243
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PSD4	 Transcriptional regulator, AsnC family	0.000483084055267
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D3EJM2	 Peptidyl prolyl cis trans isomerase	0.000483084055267
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q92QK8	 Glutamyl tRNA amidotransferase subunit C	0.000483084055267
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T4G5	 Pseudouridine synthase	0.000483084055267
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DXI1		0.000482920456755
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2UX24	 Histidinol phosphate aminotransferase	0.000482623932624
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YU01	 ATP dependent helicase HepA	0.000482611964314
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MNP4	 Penicillin binding protein 1A	0.000482522453319
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V5U2H7		0.000482516356563
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MLW9		0.000482492771412
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9TIA6	 FAD linked oxidoreductase	0.000482193011609
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B1IBC6	 Fibronectin fibrinogen binding protein	0.000477860698668
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T7IR01	 Diguanylate cyclase	0.000482117497018
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1CGR6		0.000482106441388
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76205	 Putative ankyrin repeat protein B	0.000481955859107
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LS09	 PTS system fructose subfamily IIA component	0.000481955817125
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S5GEI0	 Catecholate siderophore receptor CirA	0.000481871232282
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88AR2	 Amino acid acetyltransferase	0.000475664739365
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UZJ9	 Transcriptional regulator MraZ	0.000481763346614
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A923	 Endo beta N acetylglucosaminidase H	0.000481554404439
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSI5		0.000231570109067
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LQV7	 Short chain dehydrogenase	0.000481425956438
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5LUL7	 Flagellar biosynthesis type III secretory pathway ATPase FliI	0.000481404211477
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2IEZ0	 Aspartyl Asparaginyl beta hydroxylase	0.000481371340241
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52644	 Heat shock protein HslJ	0.000481362853169
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A4Y7		0.000481176452112
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYQ8	 Acyl CoA dehydrogenase, putative	0.000481053477703
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023KKC9		0.000480783655005
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D2PRN7	 CutC family protein	0.000480783655005
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K4NAR0		0.000480783655005
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V8R373	 Biopolymer transporter ExbB	0.000480783655005
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K9NFY1	 Glutamine synthetase	0.00048067870688
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C7NA93		0.000480362746152
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_I1Y3Y4	 Multidrug resistance efflux pump	0.000480019232859
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U6F043	 Transposase YhgA family protein	0.00047973942845
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZX65		0.000291582830692
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8TB18		0.000361880170436
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SVS2	 Membrane protein	0.00047967679603
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G3XDA7	 Cell division protein FtsQ	0.000479564629514
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6UA31	 IstB domain protein ATP binding protein	0.000479508674244
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KCY6		0.000479471645731
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V3R0	 Protease HtpX	0.000479459205806
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZW75	 Transcriptional regulator, Cro CI family	0.000479334264143
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C4Z0Q8	 Galactose 6 phosphate isomerase	0.000479087191246
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYL8	 Integral membrane sensor signal transduction histidine kinase	0.000478980733256
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N458	 DNA polymerase III subunit beta	0.000478897554981
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AQX3	 PHP domain protein	0.0004787747552
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KM18	 Pyruvate kinase	0.000478547628166
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IR39		0.000478505059485
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A8F986	 50S ribosomal protein L4	0.000478505059485
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HAP5	 Transcriptional regulatory protein, C terminal domain protein	0.000478505059485
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7VSI0		0.000478505059485
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0ELI9	 DnaA initiator associating factor for replication initiation HobA	0.000478505059485
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9V068		0.000478505059485
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4KAP5	 Ribulose phosphate 3 epimerase	0.000478505059485
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S5NXX3		0.000478505059485
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J2YES6	 Outer membrane protein, OMP85 family	0.000478476503081
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZDU5	 Quinone oxidoreductase	0.000478458014388
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VKN0	 DNA ligase	0.000476615422914
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T4F5	 Toluene tolerance protein	0.000478008231203
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IYN8		0.000477971582126
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HXN1	 Membrane bound lytic murein transglycosylase F	0.000477863083592
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E0TNV6	 Gp34	0.000477799940846
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2H287		0.000472216216807
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1D1	 Phage replisome organizer, putative	0.000477723754044
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M4H0	 GntR domain protein	0.000477685633427
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0L7	 UPF0249 protein Cbei_4037	0.000477508261157
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1WVB2	 Aspartate carbamoyltransferase	0.000465765973131
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q890U0	 Butyrate kinase	0.000477382080244
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E4BJ69	 FeoA domain protein	0.000476890669944
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q7VTF7	 Nicotinate phosphoribosyltransferase	0.000476855225444
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2H1		0.000476478208584
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023YGU3		0.00047642623157
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5BQ61	 Pertactin family protein	0.000476416175065
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V3M1		0.000476401875059
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT56		0.000476247960149
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27344	 Phosphoribosyl ATP pyrophosphatase	0.000476247960149
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A8AY72	 Glycosyl transferase, family 8 SP1766	0.000476143792663
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0K7T8	 Helix turn helix domain containing protein, AraC type	0.000476022856769
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87EJ9	 Divalent metal cation transporter MntH	0.000475647782537
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RJX0	 DNA polymerase III subunit delta	0.000475400593178
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQ76		0.000315514273597
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSF1		0.000475099056136
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PN55	 OmpA MotB domain protein	0.000474944784003
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VJS8	 Cof family hydrolase	0.000474883830856
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_W1FF26		0.000301386768813
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B9DRS8	 Glycogen synthase	0.000474695028063
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D4BTI9	 Cardiolipin synthetase	0.000474579724387
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T6MUH9	 Signal transduction histidine protein kinase BarA	0.000474301178754
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3I3E7	 Enoyl CoA hydratase isomerase	0.000474236710606
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYM0	 Antibiotic transport associated permease SpaG MutG	0.000474078627596
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CK04		0.000474012054236
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M7DK27		0.000474012054236
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACH0	 Heat shock protein 15	0.000474012054236
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64469	 OriC binding nucleoid associated protein	0.000474012054236
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1GN05	 Cytochrome d ubiquinol oxidase subunit I	0.000474012054236
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D3QTK9		0.000458080121624
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XJ76	 Phenylalanine  tRNA ligase beta subunit	0.000473432107924
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47269		0.000473412265751
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A8ML82	 Probable endonuclease 4	0.000473330887068
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97IA9	 UPF0348 protein CA_C1741	0.000473209917189
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DZB5	 Membrane protein, putative	0.000466545014957
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8LHA2	 Acetyltransferase, including N acetylase of ribosomal protein	0.000472964410626
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VG81	 Glycosyl hydrolase family 20, catalytic domain protein	0.0004729364978
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D2UPM2	 SdrD protein 	0.000454852737801
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P00561	 Bifunctional aspartokinase homoserine dehydrogenase 1	0.000472798524822
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H0DPS9	 Gram positive anchor	0.000472719657783
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5LKS8	 Chaperone protein DnaK	0.000472617083841
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M5A0		0.000472612683966
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_L5UXA6	 Glycosyl transferase, group 2 family protein	0.00047240961485
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FB43		0.000472354669428
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C9U0N0	 Acyl CoA dehydrogenase	0.00047205134912
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSH0	 Amino acid ABC transporter, periplasmic amino acid binding protein	0.000471914860714
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2QHF8	 2,3 dihydro 2,3 dihydroxybenzoate dehydrogenase	0.000471836377806
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E7D0	 Inner membrane transport protein RhmT	0.00047182348245
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSS2		0.000471797044635
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8AJI8	 Citrate lyase acyl carrier protein	0.000471797044635
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E2F9	 Ribosomal protein L32e Rpl32e	0.000471797044635
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ALK4		0.000471797044635
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FER0	 Sec independent protein translocase protein TatB	0.000471797044635
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4Y1C8	 RNA polymerase sigma factor, sigma 70 family	0.000471270154295
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1WN39	 Mg chelatase, subunit ChlI	0.000471269904418
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E4L4M2	 SNF2 family protein	0.000470879626377
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VMC0		0.000397498297444
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0K8T5	 Transcriptional regulator, LysR family	0.000470699846101
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0RGP9	 DNA mismatch repair protein	0.000470418618416
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSZ1	 Lipase	0.000470396147661
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A030TPT1		0.000470179153512
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SUI3	 Cobaltochelatase	0.000470065245307
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9KYR9	 Polyribonucleotide nucleotidyltransferase	0.000467346224866
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N1YWU7		0.000444777830621
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3K9C8	 Ribosomal RNA large subunit methyltransferase M	0.000465216145004
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MVL7	 Low specificity L threonine aldolase LtaE	0.000469726487697
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UYR5		0.000375186210507
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C8MJ83		0.000469602639773
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H6MFE3		0.000469602639773
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2IPD3		0.000469602639773
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M9F783		0.000469602639773
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S4X274		0.000469602639773
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9DZE4	 UPF0229 protein CKR_0568	0.00046948757615
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR18	 ABC type nitrate sulfonate bicarbonate transport systems periplasmic components like protein	0.000469461093891
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0V7	 Dihydroxy acid dehydratase	0.000469304818126
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1U404	 Type II secretion system protein E	0.000469254102695
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYW5		0.000469137371349
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N4K7E1	 Intergenic region domain protein	0.000442827050665
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1S9Z4	 Oxidoreductase, GMC family	0.000469092308732
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2T0P1	 Xylulokinase	0.000469073717975
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MNB4	 ComEC Rec2 like protein	0.000469011001795
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1LR90	 Pleiotropic regulatory protein DegT	0.000468991624049
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2Q2	 Phage replisome organizer, putative	0.000468871146292
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C3MCY7	 Formamidopyrimidine DNA glycosylase	0.000468821005258
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q72I44	 Maltose maltodextrin binding protein	0.000468775134097
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MBY5	 ABC transporter related protein	0.000468674474442
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1QWY3		0.000468626353124
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GD43	 Deoxyguanosinetriphosphate triphosphohydrolase 	0.000468552190944
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WVA9		0.000468507138676
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q54TC2	 Alcohol dehydrogenase class 3	0.000462540384115
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9UBT6	 Permease of the major facilitator superfamily	0.000468258301907
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q7D3U7	 ABC transporter, nucleotide binding ATPase protein	0.000468250897014
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W6EXE3	 Raffinose transport system permease protein	0.000468247448953
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G0K1E8	 Oxygen independent coproporphyrinogen III oxidase	0.000318559593003
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G0K1E8	 Oxygen independent coproporphyrinogen III oxidase	0.000149577137115
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8P9H9		0.000468115375153
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V6FRW4	 Peptidase, S9A prolyl oligopeptidase family, N terminal beta propeller domain protein	0.000467966445944
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6AEX6	 Transposase	0.000467929889461
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M7C0	 Cell wall binding repeat containing protein	0.000467920349571
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9AYY5	 Phosphomethylpyrimidine synthase	0.00046789514202
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5P4U0	 Potassium efflux system KefA	0.000467866647184
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C6XKW1	 Cytochrome c type biogenesis protein CcmB	0.000429294390423
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MUI1	 Transposase for insertion sequence element IS4351	0.000467774555302
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VL61	 CmaX protein	0.000467633686407
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F5Y9N5	 CoxE family protein	0.000467630748348
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q39LA7	 Acyl CoA dehydrogenase like protein	0.000467550187549
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PS53	 Hemolysin type calcium binding region	0.000467537867398
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1JMK2	 Translation initiation factor IF 3	0.000467428553475
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IPK7		0.000467428553475
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K6TZB8		0.000467428553475
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0C5W3	 Transposase InsC for insertion element IS2A D F H I K	0.000467428553475
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q6GAC4	 UPF0356 protein SAS1025	0.000467428553475
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5H1H3	 Zinc finger protein	0.000467428553475
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8SW86		0.000467428553475
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JG12	 Copper resistance protein A	0.000467389196073
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TIV3	 Phospholipase, patatin family	0.000467278496158
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5UDU8		0.000467196094017
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZBM2		0.000467122460831
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HA31	 D alanyl D alanine carboxypeptidase D alanyl D alanine endopeptidase	0.000467071275894
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0HC44	 Adenylosuccinate lyase	0.00046705901923
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_L0KY29		0.00046696387318
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q12PV1	 SsrA binding protein	0.000466598096654
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VFR5	 Ribonucleoside diphosphate reductase	0.00046647439951
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_X4ZHJ1	 Methionine import ATP binding protein MetN	0.00046633157783
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K1CTK9	 Exoribonuclease RNase R 	0.00046600039329
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TK25	 Ribosomal protein alanine acetyltransferase	0.000465861353611
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V6Y5		0.000465826646304
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWB2	 Integral membrane sensor signal transduction histidine kinase	0.000465809787967
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I1ZNS6	 Cation efflux protein	0.000465773128833
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V3Q5	 Major facilitator superfamily MFS_1	0.000465590979344
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J212	 Peptide chain release factor 2	0.000465579799618
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUW0	 Dihydropyrimidinase	0.000465526914791
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024ED89	 AsnC family transcriptional regulator	0.00046551777985
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6U3Y7		0.000465274504846
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9DXD9		0.000465274504846
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D6S8T9		0.000465274504846
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0KC60		0.000465274504846
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M4JLR5		0.000465274504846
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57653		0.000465274504846
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T6Y5A2		0.000465274504846
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V4QFN1		0.000465274504846
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I2BNI4	 DNA binding response regulator, OmpR family	0.000465264086606
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1VQ88	 Transcriptional regulator	0.000465251824348
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I2H6	 Ribosomal protein alanine acetyltransferase	0.000465092202698
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZKX6	 Putative	0.000464851706451
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U0CGA3	 Terminase small subunit	0.000464831079723
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q892S8	 Deoxyguanosinetriphosphate triphosphohydrolase like protein	0.000464763493739
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R5TH42		0.000464653320334
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08550	 Colicin V production protein	0.000464619868027
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4VYI2	 Transcription repair coupling factor	0.000464561133132
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5RSM0		0.000464560893644
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E1E3		0.000464547820307
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LDB9	 GGDEF domain containing protein	0.000464298451557
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V232	 Flagellar export protein FliJ	0.000464204908279
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HVZ2		0.000464166124164
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8CXG6	 Probable transcriptional regulatory protein Hore_12350	0.000463775585826
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MHF4	 YibE F family protein	0.000463671153357
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8K7S6	 Ribonuclease J 2	0.000463225409411
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W5VD93		0.000443185291831
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A3CP26		0.000463140218124
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C2Q309	 MazG nucleotide pyrophosphohydrolase	0.000463140218124
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C4NUT7		0.000463140218124
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GTP4	 Predicted methyl accepting chemotaxis protein	0.000463140218124
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HRB4		0.000463140218124
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q5WBR2	 A component PTS system diacetylchitobiose specific enzyme II	0.000463140218124
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F0LSV1	 Isopenicillin N synthase like dioxygenase	0.000463126090566
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9Z280		0.000463058242851
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WP21		0.000463023489222
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M3V3		0.000463011195887
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F2GSJ8	 Oxidoreductase domain protein	0.00046296544238
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023L0Z2	 Tail assembly protein	0.000462925940689
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V582	 Purine nucleoside phosphorylase	0.000462908955127
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUE8	 Probable ABC transporter binding protein DR_1438	0.000462782143762
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1Q601	 LrgA associated membrane protein LrgB	0.000462608657607
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8R9G2	 UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	0.00046256618767
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9MXW0		0.000462387454397
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TJ36	 Mg chelatase family protein	0.000462375151097
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P44941		0.000462260396526
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E0S0H5	 Phosphoglucomutase phosphomannomutase family protein	0.000462259640059
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5T4K7	 Basic membrane protein A immunodominant antigen P39	0.000462199166908
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LS17	 PTS system fructose subfamily IIA component	0.000462102178678
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q48C77	 Imidazoleglycerol phosphate dehydratase	0.000203557595873
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48C77	 Imidazoleglycerol phosphate dehydratase	0.000170548256
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U8B0J7		0.00046198782108
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PW61	 Type IV leader peptidase	0.000461884524877
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MW71	 Cardiolipin synthase Cls	0.00046186115894
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U931	 Anaerobic glycerol 3 phosphate dehydrogenase subunit B	0.000461613922722
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MBG2	 Trans 1,2 dihydrobenzene 1,2 diol dehydrogenase	0.000461404989635
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A3MI96	 30S ribosomal protein S15	0.000461025422612
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWP0		0.000461025422612
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KUI7		0.000461025422612
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A6V4		0.000461025422612
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C1H2		0.000461025422612
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6U3U1		0.000461025422612
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M1YJY1		0.000461025422612
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VHF6		0.000461025422612
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P40892	 Putative acetyltransferase YJL218W	0.000461025422612
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77714	 Ferredoxin like protein YdiT	0.000461025422612
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUV1		0.000461025422612
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4A413	 Transcriptional regulator	0.000460964498714
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T6VVX4	 Galactitol 1 phosphate 5 dehydrogenase	0.00046092519969
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O29388	 Probable amidophosphoribosyltransferase	0.000457791249103
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A8C8	 ATP synthase epsilon chain	0.0004605003367
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q1CV54		0.000460471453423
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V7C6	 Fimbrial subunit CupB6	0.000460369738588
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1X1	 FMN binding domain protein	0.000460290553097
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M7P0	 Pseudouridine synthase	0.000460266235882
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P42305	 ATP dependent RNA helicase DbpA	0.000429297897508
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9FI53	 Fumarate hydratase 2, chloroplastic	0.000450525074258
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JKZ8	 AFG1 like ATPase family protein	0.000460036838084
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P33639	 Sensor protein PilS	0.000460019264414
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF35		0.000459975250799
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTD7	 Regulatory protein, LacI	0.000459917149799
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A662	 Chaperone protein DnaJ 2	0.000459827318847
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_L0F3J6	 Phosphoenolpyruvate synthase pyruvate phosphate dikinase	0.000459779904927
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DR22		0.000459704166609
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02N70	 Tryptophan 2,3 dioxygenase	0.000459452551649
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q895G1	 Cytidylate kinase	0.000453328227675
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MVM4	 Chaperone protein HtpG	0.000459380924094
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9RYR8	 Transcriptional regulator, TetR family	0.000459332123375
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1I1Y5	 Phosphoglucosamine mutase	0.00045491505286
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IWY0	 Thioredoxin	0.000459167025559
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J5F5	 Surf1 protein	0.000459113112903
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6G8	 Heavy metal transport detoxification protein	0.000459047163756
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RQD5	 Exodeoxyribonuclease I	0.000458997163154
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4VUE5		0.00045892985251
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYI6		0.00045892985251
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C5D403	 Anti sigma F factor	0.00045892985251
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2W2T3	 50S ribosomal protein L31	0.00045892985251
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47156	 Antitoxin YafN	0.00045892985251
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SV57		0.000170836831725
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7CJA9	 Binding protein dependent transport system inner membrane component	0.000458709242809
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9AFH4	 CpsVO	0.000458670916326
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L7C3		0.000458536493979
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2F6	 Binding protein dependent transport systems inner membrane component	0.0004585087682
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28VQ1		0.000458418225024
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V4JCU2		0.000458401426842
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4Z928	 Polysaccharide biosynthesis protein	0.000458208991445
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A1I0	 Putative transcriptional accessory protein	0.000458006648022
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6KW92	 FHA domain containing protein	0.000457889195244
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HF81		0.000457768310317
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G0AJ20	 Glycosyltransferase	0.000457693089836
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T5N9	 Fimbrial protein	0.000457658319689
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MKU0		0.000457581630143
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1AWD7	 Glyoxalase bleomycin resistance protein dioxygenase	0.00045747798747
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B2GGG9	 Serine  tRNA ligase	0.000457362731439
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W6S7D3	 HAD superfamily hydrolase	0.000457207701941
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9RPK7	 CylE	0.000457081167541
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M4L2	 Thioredoxin disulfide reductase	0.000457011650407
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZ34		0.000457008103623
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M140		0.000456853246835
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V9M5	 Hpt domain protein	0.000456853246835
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G8QCH1	 VreI	0.000456853246835
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FE54		0.000456853246835
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GEU1	 UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.000456503763386
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M204	 Glycoside hydrolase, family 1	0.000456457688337
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A024LBI2	 Conserved outer membrane protein	0.000391335533139
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q469F5	 Lon protease	0.00045609848619
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KMK6	 SOUL heme binding protein	0.000386374633358
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5RNH3	 Phosphoenolpyruvate carboxylase	0.000456057155193
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8HEJ4	 Pts system, trehalose specific iibc component	0.000455986973622
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48GV8	 Soluble lytic murein transglycosylase, putative	0.000455958277917
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJ06		0.000365867678536
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V4I1	 LPS assembly protein LptD	0.000455764606381
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q89VR4	 Acyl CoA dehydrogenase	0.000318575328473
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q89VR4	 Acyl CoA dehydrogenase	0.000137180118958
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P25084	 Transcriptional activator protein LasR	0.000455656659911
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I0J1	 NADH quinone oxidoreductase subunit L	0.000422551631101
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4KAB8	 High affinity sulfate transporter 1	0.000455586365805
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8HE41		0.000455438329799
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q56232	 Aspartate aminotransferase	0.000455347793468
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V590		0.000455310440465
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q89DX7	 Arginine deiminase	0.00045502669121
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4KME6	 DNA binding response regulator	0.000454957349774
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A6TEH4	 UPF0213 protein KPN78578_35340	0.000454795349329
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8I4B5	 50S ribosomal protein L9	0.000454795349329
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D3Q457	 Regulatory protein, FmdB family	0.000454795349329
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4KTF9	 ABC type antimicrobial peptide transport system, ATPase component	0.000454795349329
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4TU03	 5 hydroxyisourate hydrolase	0.000454795349329
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3Z0R2		0.000454795349329
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R2D0		0.000454795349329
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW74		0.000454795349329
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37925	 Protein FimH	0.000454724867156
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O32978	 O acetylserine sulfhydrylase	0.000450138023802
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0WI88	 Type VI secretion system protein	0.000454289189195
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M5T5		0.000454194205708
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P43505	 Membrane fusion protein MtrC	0.000454048848959
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C0RG90	 3 phosphoshikimate 1 carboxyvinyltransferase	0.000449837216219
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HBN4	 Trypsin	0.000453942969658
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B3PJZ1		0.000453844049956
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C6DY30	 Poly A polymerase family protein	0.00045372896402
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY56		0.00045342024556
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L4UG82	 Mannosyl 3 phosphoglycerate phosphatase	0.000453264622804
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XNC3	 Transcriptional regulator, LysR family	0.000453251517755
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q161C7	 DNA damage inducible protein, putative	0.000453234004532
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXC6	 Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor	0.000453221935379
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_H0PW14	 Transcriptional regulator, LuxR family	0.000452912138769
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4H9L5	 Cyclic nucleotide binding domain protein	0.000452755908298
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D7I398	 4 hydroxybenzoyl CoA thioesterase	0.000452755908298
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RW93	 Shikimate kinase	0.000452755908298
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R6TUR0	 RNA binding protein YhbY family	0.000452755908298
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9IQX3	 Single stranded DNA specific exonuclease	0.000391923677309
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9IQX3	 Single stranded DNA specific exonuclease	6.05666272057e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I702	 Putative 3 oxopropanoate dehydrogenase	0.000444189940326
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G8MLW9	 Binding protein dependent transport systems inner membrane component	0.000452210655451
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E0R9G5	 ABC type multidrug transport system protein	0.000452038397157
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5D4V1	 Nucleotidyltransferase DNA polymerase involved in DNA repair	0.000452014056003
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L2S5	 Usher CupC3	0.000451959522687
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QDU7		0.000451884876695
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I4U3	 DNA recombination protein RmuC homolog	0.000451854451608
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DU26		0.000451743031544
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P65368		0.000451743031544
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8IJV0	 BioY family protein	0.000451624682988
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L306	 Two component sensor EnvZ	0.000451484887064
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_F9D1U7	 Saccharopine dehydrogenase	0.000335458427436
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F9D1U7	 Saccharopine dehydrogenase	0.000115917988002
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M4H8	 Secretion protein HlyD family protein	0.000451322847091
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I1B3F9		0.000451290815264
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4FPU1	 Imidazole glycerol phosphate synthase subunit HisH	0.000440893308086
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P19669	 Transaldolase	0.000223868220732
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W5VCW5	 Bleomycin resistance protein	0.000451037183062
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MV22	 Factor H binding protein	0.000451022226444
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DVK6	 ROK family transcriptional regulator	0.00045092789644
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9USG2		0.000450790827771
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SX49	 Chemotaxis protein CheY	0.000450785908333
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKC1		0.000450734676569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76227		0.000450734676569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1RDH8		0.000450734676569
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_T2BF48	 Ubiquinol cytochrome c reductase iron sulfur subunit	0.000450734676569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T6QMI0		0.000450734676569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2P110		0.000450734676569
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9WMU6		0.000450729991813
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0P7	 Xanthine uracil vitamin C permease	0.000450711893773
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W4UBI3	 Methionine aminopeptidase	0.000450607555141
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WXK9		0.000450503090213
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q2T2J9	 Cobalamin synthesis protein P47K family protein	0.000450483493041
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D6Z4R6	 Phosphoenolpyruvate phosphomutase	0.000450301168347
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HBM2	 Transcriptional regulator, LacI family	0.000450280284786
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_T4JEK7	 N 6 DNA Methylase family protein	0.00045023035185
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SVI0	 DEAD DEAH box helicase domain protein	0.000450140312123
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWK9		0.000295218033777
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L1VV55		0.000449925904888
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZI7	 Isoprenylcysteine carboxyl methyltransferase	0.000449597893019
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M071		0.000449471785376
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_V6ICR3	 Peptidase	0.00044941294157
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q66ED4	 Sulfite reductase [NADPH] flavoprotein alpha component	0.000449361141679
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTI6	 3 isopropylmalate dehydratase large subunit 2	0.000449357507974
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VAR2		0.000449323310356
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXN0	 Polyprenyl synthetase	0.000449301296527
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9CIV8	 PTS dependent dihydroxyacetone kinase, dihydroxyacetone binding subunit DhaK	0.000412938402064
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R5TCX3	 Sugar ABC transporter sugar binding protein	0.000449090141693
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIB0	 OmpA MotB domain protein	0.000443009277302
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1R031	 Uridylate kinase	0.000449086800312
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q0IAT1	 Two component response regulator	0.000312583800468
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0IAT1	 Two component response regulator	0.000136254477125
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E120	 Prophage LambdaSa1, site specific recombinase, phage integrase family	0.000448779652214
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6UQ90	 Radical SAM domain protein	0.000448778293322
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNP0	 Predicted UDP glucose GDP mannose dehydrogenase	0.000448731411334
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E8U8Q1	 Tellurite resistance TerB	0.000448731411334
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB32		0.000448731411334
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6AGY7		0.000448731411334
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6AIU7		0.000448731411334
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T139		0.000448731411334
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV83	 AMP dependent synthetase and ligase	0.000448697597452
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VYP9	 Oxidoreductase FAD binding domain protein	0.000448694125796
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5BVY8	 Adenylylsulfate reductase	0.000448682966364
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q895J2	 Zinc protease	0.000448482065553
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97KZ3	 Putative ABC transporter ATP binding protein CA_C0773	0.000448381431149
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TK60	 Probable septum site determining protein MinC	0.000448311281998
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VKS4	 Lipoprotein, putative	0.000448296631221
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWL8		0.000448194472313
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q02Y94	 Na+ driven multidrug efflux pump	0.000448126508227
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6TP37	 Ribosomal RNA adenine dimethylase	0.000447981769936
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A009VZS8	 Penicillin binding protein 2	0.000447951057686
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6AH52	 Acylglycerol lipase	0.000447923418252
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0KEE0	 Membrane flavodoxin oxidoreductase	0.000447905297807
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KJU7	 Siderophore interacting protein	0.000447819665749
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C9LYM2	 ATP dependent protease, Lon family	0.000447718340102
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O87388	 Sarcosine oxidase subunit beta	0.000309895773313
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I5S3		0.00044751114723
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DF80	 Lipolytic enzyme, G D S L domain protein	0.000447455208821
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F2LAJ8		0.000447276432335
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI00036FDCA7	 hypothetical protein	0.000447245545739
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVM3	 Drug resistance transporter, EmrB QacA subfamily	0.000447137991871
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F6T5		0.000447014402375
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I4D272	 Chemotaxis response regulator protein glutamate methylesterase	0.000447002411914
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RN90	 Alpha beta hydrolase fold protein	0.000446955390312
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3TBQ8		0.000446866009006
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A4XNZ9	 Lysine exporter protein 	0.000446745874124
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZH7	 Transcriptional regulator, MarR family	0.000446745874124
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0P5		0.000446745874124
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GFE3	 Regulatory protein, TetR	0.000446745874124
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F3NZG9		0.000446745874124
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J1AUY7		0.000446745874124
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YP11	 TenA family transcriptional regulator	0.000446745874124
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A8F5		0.000446745874124
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T7VHV2		0.000446745874124
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_H2ISY5	 Multidrug resistance efflux pump	0.000446557153365
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTW3		0.000446440074126
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GJM0		0.00044636527176
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P36949	 D ribose binding protein	0.000446273323025
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2G1		0.000446241371384
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B0S1E5	 Translation initiation factor IF 2	0.000446230614831
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88NC9	 Poly C5 epimerase	0.000446130910877
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C6CW93	 Major facilitator superfamily MFS_1	0.000446090886331
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7GVN4	 UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	0.000446081500514
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPV8	 Isoaspartyl dipeptidase	0.000445954356298
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MS35		0.000445921964341
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6AZQ2		0.000430683468293
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5S306		0.000445695930562
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S0U1N3		0.000445628800261
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU84	 Small GTP binding protein	0.000445532394263
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWB6		0.000445467247684
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VLJ6	 Outer membrane protein	0.000445134352814
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C7RQG5	 Thioesterase superfamily protein	0.000444812359715
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F7ZT52	 ABC type transporter, duplicate ATPase component	0.000444794600754
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9USA0	 Prophage DLP12 integrase	0.000444777830621
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q57902	 Protein translation factor SUI1 homolog	0.000444777830621
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F6V8		0.000444777830621
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8TC86		0.000444777830621
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_UPI000465DFA0	 hypothetical protein	0.000393021039497
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I0K4	 Isocitrate lyase	0.000228482593469
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9I0K4	 Isocitrate lyase	0.000172466583449
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E3GES0		0.00044452915691
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J2MU13	 Rod shape determining protein MreC	0.000444506511163
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M0S1	 Lysine  tRNA ligase	0.00044431012575
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M4YWG8	 Sortase	0.000444289063774
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I2BVX5		0.000444204276012
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K0N7F3	 PTS system beta glucoside specific EIIBCA component	0.0004441972449
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HVN8		0.000444175378923
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D8ACP8		0.000303196899553
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KLN9	 Alkanesulfonate monooxygenase	0.00044405318186
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EES2	 3 beta hydroxysteroid dehydrogenase isomerase family protein	0.000444019310398
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XNR6	 Chemotaxis sensory transducer	0.000443885050574
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q834K3	 ATP dependent protease subunit HslV	0.000443820246496
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M3D6	 GCN5 related N acetyltransferase	0.000443800296928
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1X4	 Integral membrane sensor signal transduction histidine kinase	0.000443578793418
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S6AZU1	 Acetyltransferases, including N acetylases of ribosomal proteins	0.000443437375176
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UYW2	 Proline utilization regulator	0.000443344304846
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B0KQA4	 Lipoprotein	0.000443262445712
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M580		0.000443223887475
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1H2Y6	 Protein YibB	0.000422126618876
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KW74	 DMSO membrane protein	0.000443077673708
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZZ5		0.000442949534003
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V829		0.000442827050665
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A8YZD0		0.000442827050665
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACH6	 Multiple antibiotic resistance protein MarA	0.000442827050665
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P0C467	 30S ribosomal protein S14, chloroplastic	0.000442827050665
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q31V60		0.000442827050665
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q601J1	 30S ribosomal protein S13	0.000442827050665
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXZ8	 6,7 dimethyl 8 ribityllumazine synthase	0.000442827050665
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T0VCY6		0.000442827050665
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M7C1	 Cell wall binding repeat containing protein	0.000442811573584
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C9QWV1	 Autotransporter  family porin	0.000442308194277
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZP7	 Electron transfer flavoprotein subunit alpha	0.000442295290682
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L3WXL8	 Pseudouridine 5 phosphate glycosidase	0.000442244516793
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K1C2I8		0.000400256359651
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2IFK7	 Two component transcriptional regulator, winged helix family	0.000442183139291
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1LZF7	 Transcriptional antiterminator	0.000442146734184
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q46ZU2	 ABC transporter, substrate binding protein, aliphatic sulfonates	0.000441877105641
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E8U6I4	 Agmatine deiminase	0.000441829656383
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N2B2	 Phage related protein	0.000441645778511
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J1L0	 Mannose 6 phosphate isomerase, type 1	0.000441493807927
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_X2HZR9	 Glycosyltransferase 9 family protein	0.000441375845156
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A3CQK2		0.000441271674641
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YNY5	 Putrescine binding periplasmic protein	0.000441238857895
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K0MYD7	 PTS system maltose and glucose specific EIICB component	0.00044101565073
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPC3	 ATP dependent helicase deoxyribonuclease subunit B	0.000440928514249
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8DER4	 DNA mismatch repair protein MutH	0.000440893308086
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5R7C5	 RHS family protein	0.000440893308086
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L3X118	 Inner membrane ABC transporter ATP binding protein YddA	0.000440893308086
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SUW6		0.000440893308086
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E3D9	 Cytochrome c oxidase accessory protein CcoG	0.000440824432451
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HB94	 Precorrin 4 C methyltransferase	0.000440586002313
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT53		0.000440569175598
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A0A023SJD6		0.000440364620355
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0WYS8		0.0002139079821
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HMU2	 Polysaccharide deacetylase	0.000440279468161
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97K30	 Probable M18 family aminopeptidase 1	0.000440141175377
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PVN2	 Glycosyl transferase, family 2	0.000440089559655
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MZ05		0.000440082597068
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SQP8	 YhhN family protein	0.000440070997653
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M3G6K7	 Mg transport ATPase protein C	0.000439959381687
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1IEH7	 GTPase Der	0.000439938449601
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F445	 Aspartate carbamoyltransferase regulatory chain	0.00043993275621
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W4TXL6	 Iron ABC transporter	0.00043993275621
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0AA74		0.000439703589086
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XM14		0.000439549083048
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4Y1A0	 Membrane protein insertase YidC	0.000439543133772
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SJD6	 Probable Brix domain containing ribosomal biogenesis protein	0.000439496199221
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A8F961	 Serine acetyltransferase	0.000425773988342
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8X9Y2		0.000416897005745
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S0A3	 LysR family transcriptional regulator	0.000439215002219
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A8MHC4	 tRNA  ) methyltransferase	0.000422053646169
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ91	 UPF0305 protein Msm_0064	0.000439009576085
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024EKM0	 Peptidyl prolyl cis trans isomerase, FkbP type	0.000438976380662
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9B145	 NADH dehydrogenase (Quinone)	0.000438976380662
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V429	 Transcriptional repressor, antitoxin for RelE like 	0.000438976380662
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2HZE4	 Cytidylate kinase	0.000438976380662
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E4BBW7		0.000438976380662
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P29959	 Cytochrome c biogenesis ATP binding export protein CcmA	0.000438976380662
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36678	 Putative type II secretion system protein M	0.000438976380662
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YT43		0.000438976380662
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q5HQI7		0.000438976380662
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RW94	 Acyltransferase	0.000438869567792
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D0IT38	 Sodium D alanine glycine symporter	0.00043872469019
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZMG7	 Chaperone SurA	0.000428605688027
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9Z3Z9	 Toluene tolerance protein ttg2D	0.000438450502996
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9DD40	 Hydrolase	0.000438283814301
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I5W0	 DNA primase	0.000432618381364
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZQC8	Histidine kinase A, N terminal	0.000437839073408
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E7S6W5		0.000437777804706
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VD87	 CsuC	0.000437673816573
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZL92		0.000437669903337
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P07769	 Benzoate 1,2 dioxygenase subunit alpha	0.000253877364678
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P07769	 Benzoate 1,2 dioxygenase subunit alpha	0.000183695258652
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1K4I6	 Putative reductase Bcenmc03_4815	0.000437484666765
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E7B3D1	 Metallo beta lactamase superfamily protein PA0057	0.000437207144146
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYM8	 Probable subtilase type serine protease DR_A0283	0.000413835477598
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P52137	 Putative arsenical pump membrane protein 	0.000437146737681
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYB5	 Nitroreductase	0.000437076050005
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C4K3W9	 Orotate phosphoribosyltransferase	0.000437076050005
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D3QZQ0	 Preprotein translocase, SecG subunit	0.000437076050005
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HAV0		0.000437076050005
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P16691	 Protein PhnO	0.000437076050005
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DT21		0.000437076050005
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R0MNI1	 GBSi1, group II intron, maturase	0.000437076050005
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S5RIC3		0.000437076050005
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8T4J7		0.000437076050005
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q895P7	 Phosphoprotein phosphatase 2C	0.000436925812335
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M367	 Extracellular solute binding protein, family 1	0.0004368764719
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCC5	 Transcriptional regulator, LacI family	0.0004368714329
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PND2	 Two component transcriptional regulator, winged helix family	0.000436742630735
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HNH0		0.00043647110638
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4XQ21	 Phage minor tail protein	0.000436446257425
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9KVL7	 Diaminopimelate decarboxylase	0.000425703152935
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q46D36	 2 cys peroxiredoxin, subunit A	0.00043613407576
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI00046F258D	 bifunctional aconitate hydratase 2 2 methylisocitrate dehydratase, partial	0.000346608150568
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_UPI00046F258D	 bifunctional aconitate hydratase 2 2 methylisocitrate dehydratase, partial	8.94677360908e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWX8		0.000435762590567
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K9X6	 Histone acetyltransferase	0.000435646584399
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F2ZJ87	 Xanthine dehydrogenase, molybdopterin binding subunit	0.000435606812315
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B0KLC8	 Lipoprotein	0.000435478129844
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UWA3	 Flagellar biosynthetic protein fliR	0.000435336214734
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P94427	 Probable 4 aminobutyrate aminotransferase	0.000416631631515
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZKG9	 Phosphate permease	0.000435243414252
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V0E8		0.000435192101515
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9ADD3		0.000435192101515
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U0DBB7	 Flagellar transcriptional activator flhC	0.000435192101515
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XWI0		0.000383895694109
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E3EIE7	 Phospholipase carboxylesterase family protein	0.000434977315602
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q46482	 Phosphoribosylamine  glycine ligase	0.000434973339739
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LH30	 GNAT family acetyltransferase	0.000434945899629
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNG8	 Type I secretion membrane fusion protein, HlyD family	0.000434816802769
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B9UPK8	 PI 2a ancillary protein 1	0.000434789858698
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9AQ95	 Major facilitator superfamily MFS_1	0.000434769098091
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_X2I2X2	 Type I restriction enzyme, S subunit	0.00043473928597
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S1K2	 ABC transporter substrate binding protein	0.000434708554739
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZC3	 Glucose 1 phosphate thymidylyltransferase, putative	0.000434632390996
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S4YYU9	 Enoyl CoA hydratase	0.000434599446995
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXJ5	 Na H(+) antiporter NhaA 2	0.000434497935613
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A3CK29	 Acetylxylan esterase, putative	0.000434358472782
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZAQ7	 Sarcosine oxidase subunit alpha	0.000434347258476
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A025E569	 2,3 dihydroxy 2,3 dihydrophenylpropionate dehydrogenase	0.000434256204519
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2H9Z7		0.000434256204519
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RY66	 GTPase Obg	0.000434205359005
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1IMN8	 Exodeoxyribonuclease 7 large subunit	0.000433860446818
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E4RMK3	 Molybdenum cofactor synthesis domain protein	0.000433802276083
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A906	 Outer membrane lipoprotein SlyB	0.000433790264388
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JJI4		0.000433613951933
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MRY7	 Type VI secretion protein ImpA	0.000433604816184
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZX3	 Integral membrane sensor signal transduction histidine kinase	0.000433591736982
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZQK9	 Predicted arginine uptake transporter	0.000433553501195
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9Z1W7	 Acyl CoA thioesterase 2	0.000433486016155
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VDJ6	 Kinase, PfkB family protein	0.000433423484699
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N6U5	 Transcriptional regulator	0.000433324324258
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZRQ6		0.000433324324258
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I2ZRW4	 Maltose regulon activator MalT domain protein	0.000433324324258
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RS22		0.000433324324258
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LXG1		0.000433021576206
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42619	 Inner membrane protein YqjF	0.000432842994219
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A017YMY8	 Accessory regulator protein C	0.000166883582731
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A0A017YMY8	 Accessory regulator protein C	0.000129441753276
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1TWP1	 Anhydrase, family 3 protein	0.000389860908849
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5AB28		0.000432401323567
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G4STG9	 Pyrophosphate  fructose 6 phosphate 1 phosphotransferase	0.000432347357531
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P10046	 C4 dicarboxylate transport transcriptional regulatory protein DctD	0.00043218566318
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VBT0	 RpiR family transcriptional regulator	0.000431975447146
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C7MF62	 Alpha L fucosidase	0.00043191306427
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q06584	 Pyocin S2	0.000431803829906
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q9K7C3	 L arabinose transport ATP binding protein AraG	0.000429015058973
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7KL80		0.000431694129097
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q30Q90		0.000431583346482
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C7PE04	 Short chain dehydrogenase reductase SDR	0.000431472478139
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F808	 UPF0231 protein YacL	0.000375332964878
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L4A127	 CsgBAC operon transcriptional regulatory protein	0.000410425071345
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F8YC51	 Pyridine nucleotide disulfide oxidoreductase	0.000431228878766
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_L5SRM4		0.00043105901094
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P18390		0.000430837213956
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C7T4	 X Pro dipeptidyl peptidase  family protein	0.000430539753016
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4XXI7	 Malonate transporter, MadM subunit	0.00043052394565
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5P0F6		0.000430444264524
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWX4		0.000430373604603
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VGA0	 Signal peptide protein	0.000430062896788
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MSX4	 Phage infection protein Pip	0.000430009368575
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2LAK2	 Adhesive protein CupB5	0.000429958487309
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DMN0	 TonB dependent receptor	0.000429928461103
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7IM59	 Pyridoxine 5 phosphate synthase	0.000429731477374
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H1L0	 EpsC	0.000429711125108
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WVZ8	 FxsA cytoplasmic membrane protein	0.000429653962807
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L9Y5		0.000429638402612
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RXV6		0.000429636457661
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H6PCH4	 Acyl carrier protein	0.000429636457661
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L2YG78	 Tat  pathway signal sequence	0.000429636457661
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N3RWK2	 Inner membrane yccS domain protein 	0.000429636457661
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28UC7	 ATP synthase subunit c	0.000429636457661
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E0W3	 Prophage LambdaSa1, lysin, putative	0.000429636457661
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI0003678B44	 hypothetical protein	0.000429636457661
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S0TTC0		0.000262928561334
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R2NFJ2	 Pyruvate flavodoxin oxidoreductase	0.000429417164145
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AH32		0.000428384927041
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D4GJ64	 MocR	0.000429347212934
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KKS1	 Non homologous end joining protein Ku	0.000429107185768
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TLW3	 Flagellar biosynthetic protein FliR FlhB	0.000428987633472
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HI36	 Major exported protein	0.000428842287476
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TIE4	guanido phosphotransferase CLL_A0206	0.000428815536692
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_T3G9C0	 Modulator of DNA gyrase family protein	0.000428801937925
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5FVP6	 Amidohydrolase family protein	0.000428800523038
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWH8	 Monosaccharide ABC transporter membrane protein, CUT2 family	0.000428663285466
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0K9Q9	 Cation multidrug efflux pump	0.000428371491525
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0A037Z329	 Flagellar biosynthesis protein FlhA	0.000428267796754
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0HC37	 Substrate binding region of ABC type glycine betaine transport system	0.000428140744194
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F5YM75	 ABC transporter, permease protein	0.000427934484396
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C3L318	 Precorrin 2 C methyltransferase	0.0004278159642
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4IKX0	 3 oxoacyl  reductase FabG	0.0004278159642
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2MDS8	 Arginine repressor	0.0004278159642
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZKW9		0.0004278159642
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_T0TKM9	 Transcriptional regulator, MerR family	0.0004278159642
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U9Y9T8		0.0004278159642
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5NSU1		0.000427717495618
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1V915	 Transcriptional regulator, XRE family	0.000427704116884
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q82HL5	 Imidazolonepropionase	0.000427621641867
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q828A3	 Acetylornithine aminotransferase	0.000427503901582
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q1XG14	 Recombinase Sin	0.000427437119185
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E7UQG7	 Core protein	0.000427419934107
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M262	 ABC transporter related	0.000427308186635
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2W7	 Helix turn helix domain containing protein, AraC type	0.000427274559426
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D7CSG3	 ABC transporter related protein	0.000427177378183
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_X4RBB0	 3 dehydroquinate synthase	0.000427018905924
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9Y041	 Homogentisate 1,2 dioxygenase	0.000426915667291
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1U5	 Methyl accepting chemotaxis sensory transducer	0.000426902337262
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RYE1	 Band 7 stomatin like protein	0.000426804585963
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VAV8	 Cytochrome oxidase assembly protein	0.000426770631003
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M107	 AzlC family protein	0.000426735859452
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D3QYX7	 Leucine  tRNA ligase	0.000426733483221
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_O67221	 Aspartokinase	0.000338856745524
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O67221	 Aspartokinase	8.77189987444e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E056	 DNA repair protein RecO	0.000426516662055
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5XB61	 Phage terminase	0.000426464245582
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q6HLQ9	 Spermidine putrescine import ATP binding protein PotA	0.000363204250448
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B9DSL9	 Uronate isomerase	0.000422707080733
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DT19	 Integral membrane sensor hybrid histidine kinase	0.000426113654926
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0TUR6	 Beta galactosidase Pbg	0.000426107033114
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C8WK91	 Ribonucleoside diphosphate reductase	0.000426097952704
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZNC7	 Duplicated ATPase component YkoD of energizing module of thiamin regulated ECF transporter for HydroxyMethylPyrimidine	0.000426022352748
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PS27	 Transcriptional regulator, GntR family	0.000426015889935
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UM65		0.000426010833549
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ67	 GntR domain protein	0.000426010833549
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X492		0.000426010833549
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E8WYZ5	 Acyl carrier protein	0.000426010833549
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2FL68		0.000426010833549
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0SR44	 Cell division topological specificity factor	0.000426010833549
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q2YTY4		0.000426010833549
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A8MM09	 Diguanylate cyclase	0.000425966398558
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M3C4	 ATPase like protein	0.000425961301786
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0WGN5		0.000425759541777
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M9U0	 Flagellar hook length control protein	0.000425702457804
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8V949	 ABC transporter, molybdenum transport system	0.00042554359246
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E0RYK6		0.000425327761866
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQJ7	 Thiamine monophosphate synthase	0.000425239761563
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6GNH1		0.000424989987723
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F6Q1		0.000424941026743
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MWW8	 Glycosyltransferase EpsJ	0.000424928818662
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2T4Z7		0.000424704988243
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F957		0.00042455366266
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Z8E4W9		0.000208604478414
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYC9	 ThiJ PfpI domain protein	0.000424367776936
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SN85	 Glutathione peroxidase	0.000424250831162
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJJ4	 Class I diheme cytochrome c4	0.000424220872067
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U4G2		0.000424220872067
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L6RQB7	 Disulfide isomerase thiol disulfide oxidase 	0.000424220872067
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2R1G7		0.000424220872067
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J169		0.000424220872067
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H011	 3 methyl 2 oxobutanoate hydroxymethyltransferase	0.000417546841174
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRA0	 Guanine specific ribonuclease N1 and T1	0.000424194743648
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48PX1	 Glutamate  cysteine ligase	0.000424193283499
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1W5	 Periplasmic binding protein LacI transcriptional regulator	0.000423829059667
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P25795	 Aldehyde dehydrogenase family 7 member A1	0.000234454274464
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P25795	 Aldehyde dehydrogenase family 7 member A1	0.00018936416158
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8IPY1	 Membrane protein	0.000423733833875
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M215	 ATPase, BadF BadG BcrA BcrD type	0.000423450629525
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A1N3		0.000423331520131
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I2BV46		0.000423331520131
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_K9QPP2	 Mannose 1 phosphate guanylyltransferase	0.000423211900431
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRH2	 Histidine kinase internal region	0.00042293675378
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A037YKV0	 N acetylglucosamine 6 phosphate deacetylase	0.000422791456105
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A2E4	 RNA polymerase sigma factor RpoD	0.00042278438803
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q03023	 Serralysin	0.000422759663938
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6TKS3		0.000422735084326
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M087		0.000422445889334
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P30540		0.000422445889334
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DWH8	 UPF0237 protein SMU_72	0.000422445889334
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9QRF3		0.000422445889334
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H2JB32	 Terminase like family	0.000422420732195
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRU7		0.000422072249517
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQB8		0.000422040305398
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_S4XCV1	 Surface protein G2	0.000421975698605
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P22610	 Type 4 prepilin like proteins leader peptide processing enzyme	0.000421799330841
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YXP6		0.000421671270554
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A4F866	 Transcription elongation factor GreA	0.000421530074191
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B6VK40	 Type iii secretion component protein sctt	0.000421375871138
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D4L313	 Retron type reverse transcriptase	0.000421354452586
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W4UDN2	 Maltose phosphorylase	0.000421206354345
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M4Y7D2	 Partition protein	0.000420915706716
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F4EFW8	 Sugar transporter	0.000420754291179
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W3E224		0.000415492047531
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M7V6		0.000420685698133
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2N5X2	 Signal transduction histidine protein kinase AtoS	0.000420685698133
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0QJF6		0.000420685698133
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MVG4	 Transcriptional regulator, AraC family	0.000420685698133
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M9FY69		0.000420685698133
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AFV9	 Phage shock protein D	0.000420685698133
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37590	 Signal transduction protein PmrD	0.000420685698133
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J2H1	 Transcriptional regulator, TetR family	0.000420685698133
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q890R5	 tRNA pseudouridine synthase A 2	0.000420685698133
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F9X3	 DNA polymerase III, delta prime subunit	0.000420639915114
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DWS9	 Membrane protein, putative	0.000420599562747
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8J6S6	 Dihydrodipicolinate synthase	0.000420258827342
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DXX0		0.000420248394906
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HTU7	 UPF0178 protein PA5247	0.000420248394906
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7N3U5	 Cysteine desulfurase	0.000420240286027
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQR9	 GTPase Obg	0.000420200246711
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P59927	 Single stranded DNA binding protein	0.000420167040787
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E9VT65	 Electron transfer flavoprotein FAD binding protein	0.00042013206025
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VS44		0.000420097880412
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_O07137	 Probable enoyl CoA hydratase echA8	0.000407526419209
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ08	 Oleoyl  hydrolase	0.000420013537166
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZQ75	 Transcriptional regulator MvfR	0.000419984376812
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DWZ2	 RNA polymerase sigma factor	0.000419927253634
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LW68		0.000419876424871
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4KNQ5	T U mismatch specific DNA glycosylase	0.000419811091688
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CRE9		0.000419689766162
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XXX9	 Rhs family protein	0.000419497940016
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G7M624	 Aryl alcohol dehydrogenase )	0.000419435206843
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A7GC03	 Anaerobic sulfite reductase, subunit A	0.000419340561153
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7SGJ6	 Tat  pathway signal sequence	0.000419323324169
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V703		0.000280457132089
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5QT28		0.000418940114324
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4U7G8	 N methyl L tryptophan oxidase 	0.000418940114324
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WTA3	 Lipoprotein	0.000418940114324
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HVP8	 Dephospho CoA kinase	0.000418940114324
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I2K3		0.000418940114324
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4A797	 Transferase hexapeptide repeat containing protein	0.000418868776668
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2T0L2	 UDP N acetylenolpyruvoylglucosamine reductase	0.000418782493924
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0PZ54	 Mur ligase family protein	0.000418751402672
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZR73	 Erythrocyte binding protein 2	0.000418746829755
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AB77	 Na H(+) antiporter NhaA	0.000418600014098
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V8R0S4	 Peptidase M16	0.000418578252094
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B9UQG2	 PI 1 backbone protein	0.000418455212755
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F6AYF9	 ABC type transporter, integral membrane subunit	0.000418139331152
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2N1A9		0.000418072743485
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3M2I8	 Histidinol phosphate aminotransferase	0.000315694568802
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2I8	 Histidinol phosphate aminotransferase	9.36591535738e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CRU7	 SAM dependent methyltransferase	0.000417992124277
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0XNJ8		0.000417922573674
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L9IFJ0	 BFD like [2Fe 2S] binding domain protein	0.000342252771362
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LW63	 PAS PAC sensor signal transduction histidine kinase	0.000417748568935
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RT16		0.000417635245204
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N6IY30		0.000412100275723
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1V7		0.000417484132697
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DWP9	 Methyl accepting chemotaxis sensory transducer	0.000417349446065
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E0S0B7	 HD domain containing protein	0.000417283485044
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJI4	 Predicted type I restriction modification enzyme, subunit S	0.000417208956827
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A7X0X3		0.000417208956827
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B5GNF3	 ABC transport system ATP binding protein	0.000417208956827
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D8BSS8		0.000417208956827
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8CWZ8	 Transcriptional regulator, Crp Fnr family	0.000417208956827
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI0003798A30	 hypothetical protein	0.000417208956827
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LZJ4		0.000417092287655
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I4CDV3	 Thioredoxin reductase	0.000417080443179
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_L0EAK7	 O glycosyl hydrolase	0.000416972646541
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M8T8	 Phage integrase	0.000416854178534
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L3AZC3	 Diguanylate cyclase YdeH	0.000416782395513
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XY79		0.000416524494156
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RNI2		0.000416486899454
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K8E2U7	 ABC transporter, CydDC cysteine exporter  family, permease ATP binding protein CydD	0.000416454132352
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3QJF9	 Ribosomal RNA large subunit methyltransferase F	0.000416132930916
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MLQ0	 Y_Y_Y domain containing protein	0.000415941655148
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5D1G8	 Methylthioribose 1 phosphate isomerase	0.000415910308861
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YRC1	 5 methyltetrahydropteroyltriglutamate homocysteine S methyltransferase	0.00041574799801
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D3JTG7	 AqsR	0.000415685482719
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F5Y7Q0		0.000415550372409
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6ENA5	 DNA binding protein Fis	0.000415492047531
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C5BD73	 UPF0757 protein YmgG	0.000415492047531
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SL26	 Peptidase S49	0.000415492047531
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A2D4	 Protein translocase subunit SecE	0.000415492047531
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P42913		0.000415492047531
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75692		0.000415492047531
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0TGT5		0.000415492047531
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C7ND01	 Diphosphomevalonate decarboxylase	0.000415406126411
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E0Y0	 Prophage LambdaSa1, structural protein, putative	0.00041535004752
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M3E8		0.000415337549611
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VA30		0.000362355328218
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MAG2	 Integral membrane sensor signal transduction histidine kinase	0.000415296762359
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VBQ5	 Ribonuclease Z	0.000415172439618
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HVL0	 UPF0114 protein PA4574	0.000415065464327
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9WCN5	 Serine pyruvate aminotransferase archaeal aspartate aminotransferase	0.00041492591924
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88M74	 Acyltransferase	0.000414699821368
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9UJ68	 Mitochondrial peptide methionine sulfoxide reductase	0.000359304510857
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F2JLI9	 MATE efflux family protein	0.000414423543834
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VM51	 Nitrate binding protein NasS	0.000414385558833
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4A6Q6	 Homoserine dehydrogenase	0.000414241007347
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5RNQ9	 Glucokinase	0.000414191831726
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A0LD63	 Phosphopantothenate cysteine ligase	0.000414185229168
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V8EEL8		0.000150693384401
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P57041	 Major outer membrane protein P.IA	0.000414044840017
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P65337	 4 alpha glucanotransferase	0.000414026470524
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZVS4	 Glycosyl hydrolase, BNR repeat protein	0.000414010744878
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B0KCX0	 Phosphotransferase system, lactose cellobiose specific IIB subunit	0.000413789211271
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSM2		0.000413789211271
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6V3	 Transcriptional regulator, RpiR family	0.000413651242443
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FF71		0.000413569509313
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_K9ZWQ8		0.000400653045843
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MR93	 Sensor histidine kinase YvrG	0.000413482215752
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97K94	 Quinolinate synthase A	0.00040981060336
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B5EPN2	 CDP diacylglycerol glycerol 3 phosphate 3 phosphatidyltransferase	0.000413042539362
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1GGS3		0.000413037037854
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T7NH17	 L fucose proton symporter	0.000412895059338
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DN07	 Polysaccharide biosynthesis protein	0.000412886793884
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87ZG4	 Non homologous end joining protein Ku	0.000412876878901
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q475Q2	 4 hydroxythreonine 4 phosphate dehydrogenase	0.000308661745971
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q475Q2	 4 hydroxythreonine 4 phosphate dehydrogenase	0.000104194600159
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4R6C5	 HlyD family secretion protein domain protein	0.000412827303713
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRX7	 Baseplate J family protein	0.000412769680407
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F3V8H4	 Hca operon transcriptional activator	0.000412745261531
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_I0B601		0.000412692049428
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q2FD76	 DMT family permease	0.000412671351439
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77453	 Hydrogenase 4 component J	0.0004121019921
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q3JYX2	 Acetyltransferase, GNAT family	0.0004121019921
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A0A023VJQ3	 Epimerase	0.000412100275723
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4EAB2		0.000412100275723
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N5CCD3		0.000412100275723
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A674		0.000412100275723
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DW79		0.000412100275723
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3Y8S8	 Alkyl sulfatase like hydrolase	0.000412089837824
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K0B2D2		0.000411744430042
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2T312	 Glutamate 1 semialdehyde aminotransferase	0.000224432480775
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2T312	 Glutamate 1 semialdehyde aminotransferase	0.000187066582823
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYX7		0.000411483820553
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9Z1I9	 3 oxoacyl [acyl carrier protein] synthase 1	0.000411416155998
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HBY8	 Alanine racemase domain protein	0.000411342139136
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q99335	 Transposase for insertion sequence element IS232	0.000411334072854
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W0Z0M6	 ABC transporter permease	0.000262245630003
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_W0Z0M6	 ABC transporter permease	0.000137553906749
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V4P8		0.000382441543756
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q7P0S6	 Agmatinase	0.000410574984373
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8H0T4		0.000410455381787
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RUP9		0.000410425071345
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B0ULR0		0.000410425071345
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L8CIH0	 Putative outer membrane lipoprotein YmcA	0.000410425071345
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P11289		0.000410425071345
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1KTP6	 UPF0759 protein yecE	0.000410425071345
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XVB2	 Antitoxin, putative	0.000410425071345
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4K5I9	 Sensor histidine kinase response regulator	0.000410376838603
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51463	 Flagellar M ring protein	0.000410332654044
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87BI4	 Segregation and condensation protein A	0.000410055397749
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AV27	 Secretion ATP binding protein, HlyB family	0.000409962809223
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VCM9	 Oxidoreductase, FAD binding	0.000409819878248
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZTI0		0.000409762524932
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q05335	 XylDLEGF operon transcriptional activator 3	0.000409634701124
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D7AQ31	 Transcriptional regulator, DeoR family	0.000409605291599
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0R6	 Methyl accepting chemotaxis sensory transducer	0.000409588819169
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8FRY4	 Periplasmic binding protein	0.000409426149864
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1EX10	 [NiFe] hydrogenase metallocenter assembly protein HypF	0.000409302276809
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YUJ8	 Sensor histidine kinase	0.00040927137204
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNN1		0.000389293659326
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MAA9		0.000408976320144
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZJM7	 DNA protection during starvation protein	0.000408899152471
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8AK39	 6,7 dimethyl 8 ribityllumazine synthase	0.000408763431386
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7LTX8	 DNA gyrase inhibitor	0.000408763431386
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_H1ZDP7	 Regulatory protein MerR	0.000408763431386
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6SUA4		0.000408763431386
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K5HQD7		0.000408763431386
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y7L4		0.000408763431386
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V8EL51		0.000408763431386
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X5F552		0.000408763431386
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DX75	 Membrane protein, putative	0.000408707314643
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N4C4		0.000408563490243
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M5R9		0.000408490790676
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MKH3	 Xylose transport system permease protein XylH	0.000408367749953
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1LW12	 Sensor histidine kinase AruS	0.000408346888715
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G0VNS1	 PTS family mannitol porter	0.00040833797314
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4KLM3	 Aliphatic sulfonates family ABC transporter, periplasmic substrate binding protein	0.000408152285953
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q492F5	 4 hydroxy tetrahydrodipicolinate synthase	0.00040622478255
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HXY5	 Skp like protein	0.000408072546692
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L4XF07	 D galactonate transporter	0.000408070612009
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P33641	 Outer membrane protein assembly factor BamD	0.000407771583472
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6D4G4	 Short chain dehydrogenase family protein	0.000407526419209
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8INR3	 Hydrolase HAD family	0.000407502961253
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9I3J3	 TonB dependent outer membrane receptor	0.000407443000102
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TLQ4	 Chemotaxis response regulator protein glutamate methylesterase	0.000407288646421
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58319	 Low specificity L threonine aldolase	0.00039874115762
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKR1	 Cobalt ABC transporter, permease component	0.000407115191737
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9MRN3	 UPF0482 protein YnfB	0.000407115191737
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCQ8	 Methylenetetrahydrofolate reductase	0.000407115191737
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A8L2	 Imidazole glycerol phosphate synthase subunit HisH	0.000407115191737
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZNX1		0.000407115191737
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S0WC85		0.000407115191737
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_T2A3R6		0.000407115191737
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_V4YV07		0.000407115191737
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2MZD5	 ppGpp synthetase	0.000407115191737
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4KNP6	 Arginine decarboxylase	0.000407018963296
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAX8		0.000406904755509
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4XS45	 Membrane proteins related to metalloendopeptidases	0.000406725418165
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3K742	 UDP N acetylmuramoylalanine  D glutamate ligase	0.000406594402918
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F5I475	 Acyl CoA dehydrogenase, middle domain protein	0.000406525663373
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PS03		0.00040645790064
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M5J5		0.000406128327525
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I190	 Macrolide export ATP binding permease protein MacB	0.000382186839039
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1V3V1	 ABC type transport system ATP binding protein	0.000405976254865
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T1Y1	 Potassium uptake protein, TrkA	0.00040596263216
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P57028	 DNA primase	0.000403606707282
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1QYW1	flavin oxidoreductase NADH oxidase	0.000405873212779
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LS74		0.000405794594255
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_N0AYA8	 Two component system histidine kinase	0.000405695785988
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8H0D3		0.00040561944889
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28RH4		0.000293501649859
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT03		0.000405549931201
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0Q196	 DNA gyrase, A subunit	0.000405547968248
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E6P2	 Outer membrane autotransporter barrel domain protein	0.000405486654435
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZR8		0.000405481825945
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HC08	 Acetyltransferase, GNAT family	0.000405480190966
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q2RHZ4	 UPF0297 protein Moth_1643	0.000405480190966
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CMM8	 Truncated Pre protein	0.000405480190966
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VHD2	 Ion channel	0.000405344632757
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P52027	 DNA polymerase I	0.000402264605044
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U5S7	 HAD hydrolase, family IIA	0.000405073898187
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XP36	 UPF0324 membrane protein CPE0129	0.00040502003562
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T8TFL3	 Exonuclease VIII	0.000405017085142
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q9RR46	 Glycine betaine carnitine transport ATP binding protein GbuA	0.000404980140319
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XKT3	 DegV domain containing protein CPE1310	0.000404868411646
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D3R582	 Glycosyltransferase	0.000404557054942
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PK69	 N acetylmuramoyl L alanine amidase	0.000404552035862
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4K7B0	 dTDP 4 dehydrorhamnose reductase	0.000404536492943
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q8GAI8	 Succinate semialdehyde dehydrogenase	0.000397133099496
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1KRZ2	 Phosphate acyltransferase	0.000404342969471
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88R84		0.000404266178416
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9K0X8	 Cell division protein FtsA	0.00040425788134
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8GLJ2	 Putrescine binding periplasmic protein	0.000404197734808
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9T452	 Metabolite transporter	0.000404158238923
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E4ZD88	 CobW related protein	0.000404085966467
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A8HRG8	 Glycine betaine L proline ABC transporter	0.000404065687935
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q57180		0.000403906596531
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M3C8	 Phage integrase family protein	0.000403858270205
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8TCI4		0.000403858270205
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q99ZE5	 Stress response regulator gls24 homolog	0.000403753920285
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RRJ5		0.000403731305807
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V9G1		0.000403709627503
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E0E7	 Conserved domain protein	0.000403638389367
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MSV8	 DNA binding protein, excisionase family	0.000403593804949
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A013GNM0	 Penicillin binding transpeptidase domain protein	0.000403583874104
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_L0IML0	 ABC type nitrate sulfonate bicarbonate transport system, periplasmic component	0.000403483392158
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P21207	 Low calcium response locus protein H	0.000403464881869
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6LNJ5	 Calcium translocating P type ATPase PMCA type	0.000403330548896
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2JHS5	 Transcriptional regulator, LacI family	0.000403324453564
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4CPJ8	 C type cytochrome	0.000403188612432
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M1A6	 Ribosomal RNA small subunit methyltransferase J	0.000403141732705
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P35886	 DNA gyrase subunit B	0.000396292947957
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MN04	 Ribose ABC transporter ATPase	0.000402637270755
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LW08	 Signal transduction histidine kinase, LytS	0.000402623769551
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E0IXG6		0.000402609620094
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q17ZN4	 NADPH dependent 7 cyano 7 deazaguanine reductase	0.000355509040677
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9K0Y9	 UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	0.000402445205949
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C7NGM8	 Signal recognition particle receptor FtsY	0.00040237396115
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E7S591	 Transcriptional regulator, TetR family	0.00040224927311
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JKN3		0.00040224927311
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69830	 N,N diacetylchitobiose specific phosphotransferase enzyme IIB component	0.00040224927311
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I2J9	 Phenazine biosynthesis protein PhzA 2	0.00040224927311
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U1HR10		0.00040224927311
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI00036C15FE	 hypothetical protein	0.00040224927311
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q13IW9	 ATP synthase subunit alpha 3	0.000402237603837
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0V4	 Methyl accepting chemotaxis sensory transducer	0.000401998223178
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KL71	 Inositol phosphate phosphatase	0.000401849422941
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M9E2	 Methyl accepting chemotaxis sensory transducer with Cache sensor	0.000401752212721
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B8H4F1	 30S ribosomal protein S5	0.000221900148464
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B8H4F1	 30S ribosomal protein S5	0.000179652255429
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VBD0	 2 dehydropantoate 2 reductase	0.000401498863059
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U9Y5X5	 Transporter, SSS family	0.000401326412932
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A1A1X1	 Acetylglutamate kinase	0.000363869916213
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VC45		0.000401117763535
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MML4	 Transcriptional regulator, TetR family	0.000400999040996
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P37497		0.000400954702325
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X583		0.000400825008926
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MHK1		0.000400758165496
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N2L5	 Orotidine 5 phosphate decarboxylase	0.000400709835777
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V7D9		0.000318251006545
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U5D1		0.000400653045843
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N5TKM1		0.000400653045843
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADB2	 Osmotically inducible lipoprotein E	0.000400653045843
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1U1Z4	 Glyceraldehyde 3 phosphate dehydrogenase, type I	0.000304306031927
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A1U1Z4	 Glyceraldehyde 3 phosphate dehydrogenase, type I	9.62483961382e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I0I941	 Long chain fatty acid  CoA ligase	0.000400526327677
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1BA41	 Chromosome partition protein MukF	0.000400522535862
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J3L4	 Alanine racemase	0.000400418375635
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B6YRL9	 Dihydroorotate dehydrogenase B ), catalytic subunit	0.000395420567912
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VDA6		0.000400214313199
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97GM6	 Endonuclease MutS2	0.000398159956278
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6JVY2	 4 hydroxy tetrahydrodipicolinate synthase	0.000400201060126
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3V4Z1	 Xylose isomerase domain containing protein	0.000400124240003
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V1GSR8	 Siderophore interacting protein	0.000400010660336
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P67734	 Coenzyme A biosynthesis bifunctional protein CoaBC	0.000399959092673
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZ00	 Putative quercetin 2,3 dioxygenase PA3240	0.000399911954568
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X2H662	 Phosphoserine phosphatase	0.000399867036422
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RMA7	nucleotide phosphotransferase, PPK2 family	0.000399863776114
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D4KAL9	 Carbohydrate ABC transporter membrane protein 2, CUT1 family 	0.00039979669362
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYL7	 Methyl accepting chemotaxis sensory transducer	0.000399641805634
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MVQ9	 D galactose binding periplasmic protein MglB	0.000399569828751
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P12425	 Glutamine synthetase	0.000384222546198
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6AU40		0.000399504613626
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I0J6	 NADH quinone oxidoreductase subunit G	0.000371932230557
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I073		0.000399195721619
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HMH3	 Conserved domain protein	0.000326746173305
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0Q197	 DNA topoisomerase IV subunit B	0.00039916518124
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VNU5		0.000399069436965
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A2I9		0.000399069436965
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q6D6A3	 UPF0312 protein ECA1782	0.000399069436965
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_R0PPD5		0.000399069436965
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1JAC5	 Copper exporting ATPase	0.000398832835992
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2UFB1	 Cyclohexanone monooxygenase	0.000398314879531
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VF54	 5 formyltetrahydrofolate cyclo ligase	0.000398282317752
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8UPZ5	 Oxygenase subunit of ring hydroxylating dioxygenase	0.000227080110977
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W8UPZ5	 Oxygenase subunit of ring hydroxylating dioxygenase	0.000171126385676
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7QFG7	 Glycolate dehydrogenase	0.000398186134523
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7VQ62	 Dehydrogenase	0.000397974562504
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U7DEQ6	 2 ketogluconate reductase	0.000397966101169
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_U7DL84	 TetR family transcriptional regulator	0.000397932486995
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VNQ8	 L lactate dehydrogenase	0.000397866597316
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W5P358		0.000397678958605
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7VIT0	 1 deoxy D xylulose 5 phosphate reductoisomerase	0.000397595373008
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EPZ1	 L lactate permease	0.000397524650034
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UN43		0.000397498297444
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZI6		0.000397498297444
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_J1RBL1	 Fic protein family domain protein	0.000397498297444
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0WVK1		0.000397498297444
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75971		0.000397498297444
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6N102	 Phosphoesterase	0.000397498297444
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W9EYD6	 ATP binding protein	0.000397498297444
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GUK3	 Peptidase M20D, amidohydrolase	0.000397209377096
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q21Y74	 Penicillin amidase	0.000397130861041
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8H091	 Protein tyrosine kinase	0.000397085060252
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0U5		0.000396883954049
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DV78	 Periplasmic binding protein of proline glycine betaine transport system	0.000396659018067
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V0Z0	 Membrane protein, putative	0.000396473898422
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YPZ0		0.000396253313135
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYX8	 ABC transporter related	0.000396213002536
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XX36	 Integral membrane sensor signal transduction histidine kinase	0.000396202145827
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A1SG46	 Alpha amylase, catalytic region	0.000396159653737
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6FTR0	 Sporulation integral membrane protein YlbJ	0.000395957390097
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A025BQD1	 Peptide ABC transporter permease	0.000395939480598
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B6K3		0.000395939480598
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4YIS4	 Ethanolamine utilization EutK domain protein	0.000395939480598
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PS35		0.000395939480598
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V6PLY7	 Putative lipoprotein 	0.000395939480598
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I445	 UPF0260 protein PA1299	0.000344588967754
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6SWE3	 Acetyltransferase	0.000395892663348
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JGA5		0.000395863111796
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XU95	 Transcription factor jumonji	0.000387854330269
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQJ5		0.00026811384464
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VES2		0.000192313462006
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TQI3	 Undecaprenyl phosphate glucose phosphotransferase	0.000395661472066
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VLK5	 Lipoprotein	0.000395554944199
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWX4	 Efflux transporter, RND family, MFP subunit	0.000395493845401
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J2EU28	 Sulfate permease	0.000395445731402
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q837G9	 Probable potassium transport system protein kup	0.00039543094603
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P52215	 Thioredoxin reductase	0.000320526901374
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5RUZ1	 DNA polymerase III, subunits gamma and tau	0.000395005856244
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6GIU2	 Anaerobic sulfite reductase subunit C	0.000394940393342
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1J356	 Bifunctional protein PyrR	0.000394781762812
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MRV9	 Serine threonine protein kinase	0.000394764835668
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZM9	 Ribosomal large subunit pseudouridine synthase C	0.000394656009797
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YVT6	 Rhamnosyltransferase chain B	0.000394595641022
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0TMI0	 tRNA lysidine synthase	0.000394548490387
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7BLK7	 Sugar transporter	0.000394451965878
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C4ZJC7	 NADH ubiquinone oxidoreductase chain 4L	0.000394392841997
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L9AC10	 Cysteine desulfuration protein sufE 	0.000394392841997
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M9GPF4	 Putative inner membrane protein yafU	0.000394392841997
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64618		0.000394392841997
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T764		0.000394392841997
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2NUA4	 Tetraacyldisaccharide 4 kinase	0.000394340358706
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5WHV0	 Isochorismatase hydrolase	0.000394157653942
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1ZIN6		0.000231570109067
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T1ZIN6		0.000162583844685
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P33343		0.000394112796202
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F2N691	 Methyltransferase PilK	0.000394104284364
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5EE74	 Autoinducer kinase	0.000393956866302
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4K4P3	 Permease, cytosine purine, uracil, thiamine, allantoin family	0.000393884468104
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q6HIL6	 Aminoacyl histidine dipeptidase	0.000393792088675
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_L7WTQ2	 Serine threonine rich antigen	0.000393688966151
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HA76		0.000393624045035
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RRX2	 Lipoprotein signal peptidase	0.000393624045035
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4KCW6	 Putrescine binding periplasmic protein	0.000393459083501
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1BKU7	 Core protein	0.000393387705823
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C4LJM5	 Peptide chain release factor 1	0.000393348958671
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VH89	 ABC transporter, permease protein	0.000393178377681
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q6FEG4	 Acyl CoA dehydrogenase	0.000393104992898
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EI07		0.000262928561334
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AAD6	 4 diphosphocytidyl 2 C methyl D erythritol kinase	0.000392860517294
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A1SSP3	 Enoyl CoA hydratase isomerase	0.000392858239503
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LMQ8	 Flagellar biosynthetic protein FliQ	0.000392858239503
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5F4L1	 Aminotransferase class III family protein	0.000392858239503
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2DJD9		0.000392858239503
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q7N4I9	 Complete genome; segment 8 17	0.000392858239503
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUR7		0.000392858239503
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K0NK11	 MaoC domain protein dehydratase	0.000372562979897
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4K617		0.000392807199743
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V938		0.000392669266747
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D0K261	 Cbb3 type cytochrome c oxidase subunit CcoP	0.000392463475596
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3L1C1		0.000392397752034
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2I8		0.000392305326636
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYT6	 TDP glucose 4,6 dehydratase related protein	0.000392293804438
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XJ36	 Two component response regulator	0.000392210006543
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q2YI45	 Streptokinase like protein	0.000392133856946
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P49988	 RNA polymerase sigma 54 factor	0.000392112857033
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E0T021		0.000392077126793
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A0E2		0.000233444086821
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O34788	  butanediol dehydrogenase	0.000391803937775
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4KR35	 von Willebrand factor type A domain protein	0.000391716568985
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DHR0	 Fimbrial assembly protein	0.000357640501885
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YQC3		0.000391655461503
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A6Z5	 Malate dehydrogenase	0.000391563283841
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5M532	 Prolipoprotein diacylglyceryl transferase	0.000391504284994
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JIZ7	 Methionine import ATP binding protein MetN	0.000391380100656
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJ68		0.000391335533139
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXZ3	 TfoX, C terminal domain protein	0.000391335533139
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E1A3		0.000391335533139
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q4L448	 Putative antiporter subunit mnhF2	0.000391335533139
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97MR5	 Nucleoid associated protein CA_C0126	0.000391335533139
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU56	 Osmotically inducible protein C	0.000391335533139
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZXB5	 Cation transporting ATPase, E1 E2 family	0.000391328462308
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F7ZQR5	 S adenosylmethionine dependent methyltransferase	0.000391306560993
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6AYL1		0.000391135390421
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0JA55		0.000272877209597
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S3MQQ9	Na+ symporter	0.000391057535875
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SWT0	 Glycoside hydrolase family 25	0.000391047438934
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q2RLX7	 SSU ribosomal protein S30P	0.000390907658266
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2UW91	 Dihydroorotase	0.00039081324964
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S0C8	 Long chain fatty acid transporter	0.00039067571188
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ11	 Erythronolide synthase., Aspartate racemase	0.000390603054405
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51417	 Putative transporter protein AmiS	0.000390578597879
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E4H6	 Ribosome maturation factor RimM	0.000390578597879
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2NAV1	 Replication protein Rep	0.00039054288447
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IW96	 Probable transcriptional regulatory protein Dgeo_2194	0.000390511789655
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9AFH2	 CpsK	0.000390286484951
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I504	 Acylphosphatase	0.000369833580773
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2UY66	 Hydroxyethylthiazole kinase	0.000389869411176
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZDS5	 LysR family transcriptional regulator	0.000389844938556
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V461	 Molecular chaperone, DnaJ family	0.000389824585139
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RE82		0.000389824585139
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P65761	 Ribulose phosphate 3 epimerase	0.000389824585139
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FCZ3	 Pseudouridine synthase	0.000389824585139
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JYT7		0.000389824585139
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ30	 Dipeptidyl aminopeptidase acylaminoacyl peptidase related protein	0.000389698162457
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P43703	 DNA topoisomerase 4 subunit B	0.000389621700526
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024E7D7	 Peptidase M42	0.000389481506691
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R4YDZ3	 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.000389403663867
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0SQN8	 Mannose 1 phosphate guanylyltransferase	0.000389367423807
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YPU5		0.000389312200924
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LW34		0.000389073478038
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8G3J5		0.000388992485343
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVM4	 Transcriptional regulator	0.000388924180592
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RN24	 Polyprenyl synthetase	0.000388878491964
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F6F3K3	 Transposase IS3 IS911 family protein	0.000388840315191
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PR52		0.000388711175128
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M2T3	 Polypeptide transport associated domain protein FtsQ type	0.000388599888711
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZKQ2	 Iron transporter	0.000388482387096
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9SEQ8	 Transcriptional regulator	0.000388454615328
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F2JM65	 Alcohol dehydrogenase	0.000388441463724
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T2A0W0	 Relaxase mobilization nuclease family protein	0.000388357403331
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNT0		0.000388325259817
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTD1		0.000388325259817
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXX5		0.000388325259817
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B9DT54	 RNA polymerase sigma factor protein	0.000388325259817
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4QD24		0.000388325259817
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1I8H8		0.000388325259817
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TPI9		0.000388214246306
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M3M5	 tRNA modification GTPase MnmE	0.000388200381276
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VDX0	 Membrane protein, putative	0.000388164922884
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C5WGD2	 Na+ H+ antiporter	0.00038805283718
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B2GLQ7	 Biotin synthase	0.000384329600565
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6UB19	 Arginine biosynthesis bifunctional protein ArgJ	0.000387800409193
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5Y9R9	 Acetoin transcriptional regulator, AcoR	0.000387719317441
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2P047	 Phosphoribosylglycinamide formyltransferase 2	0.000387699436488
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W0EAD6	 HAD family hydrolase	0.000387685206804
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JGA5	 Lipopolysaccharide ABC transporter periplasmic substrate binding protein LptA	0.000387579913825
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45581		0.000387402674303
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY84	 RNA directed DNA polymerase 	0.000387285017364
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VFR5	 D alanine  D alanine ligase	0.000387093229595
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LFN6		0.000386991342352
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q899J9	 Methyl accepting chemotaxis protein	0.000386866205848
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNF9	 30S ribosomal protein S15	0.000386837423565
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0H7C6		0.000386837423565
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N6EJL9		0.000386837423565
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O26271	 UPF0062 protein MTH_169	0.000386837423565
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C4ZAJ9	 ABC transporter, substrate binding protein	0.000386818323624
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZB7	 Glycosyltransferase	0.000386663216494
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GHA6	 Iron ABC transporter, permease protein	0.000386651031524
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V6M6	 Homoprotocatechuate 2,3 dioxygenase	0.000386574575389
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VI15		0.000386467598119
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9RU26		0.00038645370393
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR24	 Binding protein dependent transport systems inner membrane component	0.000386444373411
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV60	 Extracellular solute binding protein, family 3	0.000386417027582
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7AGH6	 M42 glutamyl aminopeptidase	0.000386403354072
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR22	 Binding protein dependent transport systems inner membrane component	0.000386344427525
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EBD3	 ATP dependent helicase HrpA	0.0003863101412
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A812	 N acetyl gamma glutamyl phosphate reductase	0.000386260660323
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97FQ5	 DNA ligase 2	0.000386051895766
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5USJ5	 ABC transporter related protein	0.000386022629035
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M646	 Nitroreductase	0.000385896172035
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6AE19	 UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.00038560079258
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRJ1	 Amino acid permease associated region	0.000385520606813
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1AA91	 Regulatory protein AriR	0.000385360944849
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWW3	 GCN5 related N acetyltransferase	0.000385360944849
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2I0T9	 Dehydrogenase with different specificities	0.000385360944849
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_B2ING0	 30S ribosomal protein S16	0.000385360944849
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GIE8	 Predicted two component response regulator	0.000385360944849
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8CSF3		0.000385360944849
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTG8	 Ribosome maturation factor RimP	0.000385360944849
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DYL9	 Glycosyl transferase, family 8	0.000384947542145
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8RCX1	 K insensitive pyrophosphate energized proton pump	0.000384800402261
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXR1		0.000384753422044
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTU9	 Resolvase, N terminal domain	0.000384551367531
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_M1X9B6	 SCCmec staphylococcal cassette region, isolate CMFT181	0.000357094377664
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ20	 Efflux transporter, RND family, MFP subunit	0.000384432034702
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QHZ9	 Lantibiotic ABC transporter protein	0.000340373462306
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6K8	 Cof like hydrolase	0.000384209734835
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K0Z8	 L serine dehydratase, iron sulfur dependent, beta subunit	0.000384183080835
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IX45		0.000384135310348
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1J7N1	 UDP N acetylmuramoylpentapeptide lysine N alanyltransferase   UDP N acetylmuramoylpentapeptide lysine N(6) seryltransferase	0.000384008525102
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I1AGF1	 Putative ATP dependent RNA helicase 	0.00038389822939
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT62		0.000383895694109
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H275	 Aminoglycoside 2 N acetyltransferase Ib)	0.000383895694109
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S0M0	 Histidine transport system permease	0.000383895694109
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VK41	 KHG KDPG aldolase	0.000383895694109
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MDC6	 Transcription termination factor Rho	0.000383836658612
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4SMY4	 Serine threonine protein kinase, RI01 family	0.000383799369812
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P46883	 Primary amine oxidase	0.000383766468327
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ87	 Aminoglycoside phosphotransferase	0.000383599606811
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EEA4	 Binding  dependent transport system inner membrane component family protein	0.000383435161761
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5XFF7	 ABC transporter substrate binding protein QAT family	0.00038342734463
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E4RMY1	 CoA substrate specific enzyme activase	0.000383179656485
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P64246	 Probable glutamine synthetase 2	0.000383175670949
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F9R3E1	 DNA binding transcriptional regulator AraC 	0.000383167239287
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXH6	 Na+ H+ antiporter	0.000383113119785
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q05069	 Enoyl [acyl carrier protein] reductase [NADH] FabI	0.000373341362151
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI0004641455	 electron transporter RnfC	0.000353443489885
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0Z6		0.000382633448009
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RQ53		0.000382448502931
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A0A023VL47		0.000382441543756
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5A630		0.000382441543756
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LN08		0.000382441543756
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E2A8		0.000382441543756
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6T7T0	 Transposase	0.000382441543756
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F8V9		0.000382351089277
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3USA0	 MscS mechanosensitive ion channel	0.000382320043743
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6QY26	 FAD dependent oxidoreductase	0.00038224620372
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRZ8		0.000382238893936
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M922	 GAF modulated sigma54 specific transcriptional regulator, Fis family	0.000382229989841
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M4L9		0.000382212065934
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E6WAB3	 Thymidine phosphorylase	0.000382047464531
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GEB3		0.000381932364782
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LS16	 Sigma 54 factor, interaction domain containing protein	0.000381910043122
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A7IEL6	 Binding protein dependent transport systems inner membrane component	0.000224865406572
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7IEL6	 Binding protein dependent transport systems inner membrane component	0.000157021100386
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUB4		0.00038186821544
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RT67	 Recombinase RecJ	0.000381843487067
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TRN5	 Bifunctional protein FolD	0.000381634346406
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D5BU08	 ABC transporter related protein	0.000381542364313
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRI3		0.000381414468759
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48KH7	 Response regulator	0.000381229953529
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3P9L6	 Mn containing catalase	0.000381055656285
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97EX0	 Ribosomal RNA small subunit methyltransferase A	0.000358030381389
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V1L7		0.000380999724469
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023Z7K7	 Beta lactamase	0.000380998368122
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QHE2		0.000380998368122
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C3K7U6		0.000380998368122
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J7M7N8	 Regulatory protein	0.000380998368122
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L4PPW4		0.000380998368122
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A5B0		0.000380998368122
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F2I8T3	 PTS system mannose fructose sorbose family IID component	0.000380930909817
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_U4K6F1	 Methylmalonate semialdehyde dehydrogenase [acylating]	0.000380907325867
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A015A762	 Aminopeptidase N 	0.000380841671971
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T2FV18	 Membrane protein	0.00038070109654
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ALH8	 Lipoprotein, putative	0.000238686920929
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U5R3		0.00038046692543
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8G1A8	 Membrane protein	0.000380398006279
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSZ3	 Threonine synthase	0.000380294980732
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YPX2	 N acetylmuramoyl L alanine amidase	0.000380280857061
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P53381	 Protein mrp homolog	0.000380235612254
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_G8NAB2	 Replicative DNA helicase DnaB	0.000379987944585
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VQM5	 Alanine racemase	0.00037989754497
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LNF0	 Aldehyde dehydrogenase	0.000379894774896
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J7QTH7	 Thiamine pyrophosphate enzyme TPP binding domain protein	0.000379808757638
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3HF39	 Acyltransferase family protein 5	0.00037974434923
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK21		0.000379566043421
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F4ED07	 Ribosomal protein L7Ae L30e S12e Gadd45	0.000379566043421
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZR2		0.000379404049074
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1FLR5	 Transcriptional regulator CsgD for 2nd curli operon	0.000379284883392
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S9HDZ2		0.000379250859514
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M324		0.000379240661446
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6APH0	 Peptidase M48 family protein	0.000379224660218
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T490		0.000379209977719
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q67QM2	 Oligopeptide ABC transporter permease protein	0.000379133837622
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J5A790		0.00034233921247
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MY39	 Integral membrane protein, TerC family	0.000379011696676
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0E6	 Signal transduction histidine kinase regulating citrate malate metabolism	0.000378959862416
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A4QEG9	 Riboflavin biosynthesis protein RibBA	0.000378937608624
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7CNB5		0.000378765478787
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O68827	 Chloramphenicol sensitive protein RarD	0.000378666922083
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSZ9		0.000378612859121
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9DXX3		0.000378335502174
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ68	 4Fe 4S ferredoxin, iron sulfur binding domain protein	0.000378303579621
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37686	 Probable alcohol dehydrogenase	0.00037827288505
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U9H2		0.000378194766886
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WW11		0.000378144447761
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A7X283	 Acylphosphatase	0.000378144447761
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7N743		0.000378144447761
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C5MYP4		0.000378144447761
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SQ41		0.000378144447761
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F0VYF6		0.000378144447761
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L3KQX7		0.000378144447761
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P09162		0.000378144447761
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L6W5	 O antigen chain length regulator	0.000378058077551
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXF6	 Extracellular solute binding protein, family 3	0.000378039711501
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1R8J2		0.000360587741251
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C1D5X5	 Protein export membrane protein SecF	0.000377569549254
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P44468	 Rod shape determining protein RodA	0.000377483346867
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY62		0.000377472586467
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MG71	 Methyl accepting chemotaxis sensory transducer	0.000377463245094
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P00467	 Nitrogenase molybdenum iron protein alpha chain	0.000358263077427
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_O69762	 Hydroxycinnamoyl CoA hydratase lyase	0.000377143457223
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YYR4		0.000377054440156
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P22106	 Asparagine synthetase B [glutamine hydrolyzing]	0.000377050063514
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5P4W2	 Molybdenum import ATP binding protein ModC	0.000376879325423
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97IG3	 Alanine  tRNA ligase	0.000376803163498
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WNE9	 30S ribosomal protein S20	0.000376733461014
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8V0K9		0.000376733461014
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9UQ79		0.000376733461014
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADQ1	 Protein YihD	0.000376733461014
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI0002B42FAD	 magnesium and cobalt efflux protein CorC like	0.000376733461014
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTB7	 1,4 alpha glucan branching enzyme GlgB	0.000376690116743
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LS79		0.000376669654698
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GTF6		0.000376593896662
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWU4	 Non specific serine threonine protein kinase	0.000376296042999
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX21	 Molybdate metabolism regulator	0.000375876942825
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YME8	 ABC superfamily ATP binding cassette transporter, membrane protein	0.000375776116357
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L8NKJ9		0.000375682436908
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_H6P9U5	 Membrane protein, putative	0.000375666140298
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7NVL6	 AICARFT IMPCHase bienzyme	0.000375629962705
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V4P3	 Trans aconitate 2 methyltransferase	0.000328840314214
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q47EP3	 Error prone DNA polymerase	0.000375564539724
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2K0	 Cell wall surface repeat protein	0.000375507714221
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FK36	 Cation efflux system protein CusA	0.000375492489773
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKK5	 IS element 	0.000375332964878
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C1AFW3	 Cobyrinic acid a,c diamide adenosyltransferase	0.000375332964878
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D7BFI6		0.000375332964878
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q93615	 Probable electron transfer flavoprotein subunit alpha, mitochondrial	0.000375313729331
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VT23	 Erythronate 4 phosphate dehydrogenase	0.000375214263047
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR61	 Diguanylate cyclase	0.000375118619312
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZN50	 Accessory secretory protein Asp1	0.000375109196158
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MS98		0.000374961013683
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6U3E2		0.000374843908708
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3K878		0.000374632987133
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKX3	 Kynureninase	0.000374594344237
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPC4	 ATP dependent helicase nuclease subunit A	0.000374444865418
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T459		0.000374405071263
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WWI0	 Short chain dehydrogenase reductase SDR	0.000374362110688
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C7RB36	 Acyl CoA dehydrogenase domain protein	0.000374325790886
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9U3F4	 Penicillin binding protein	0.000374244650752
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VCJ9	 Thioredoxin	0.000374121794915
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTV5	 Ion transport 2 domain protein	0.000374105054283
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HCK3		0.000374097881861
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U0CZ53	 Inner membrane protein yeeR	0.000373988971544
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TQB0	 Amylovoran biosynthesis AmsK	0.000373988375025
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZG0	 Transcriptional regulator, HxlR family	0.000373942842782
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A4IM35	 Dihydroorotate dehydrogenase B ), catalytic subunit	0.000364467507082
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V8Y5	 Transcriptional regulator MtlR	0.000373811345297
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I3S1	 Biofilm dispersion protein BdlA	0.000373808516997
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4M154	 Fimbrial like protein YraK	0.000373793695762
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI000467A336	 glutamate synthase, partial	0.000372368767423
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37024	 ATP dependent RNA helicase HrpB	0.000373713113285
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M011	 ABC transporter permease protein	0.000373699382488
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZJ59	 3 beta hydroxysteroid dehydrogenase	0.000373597239411
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYX3	 GGDEF family protein	0.000373410876286
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P29823	 Lactose transport system permease protein LacF	0.000373312326438
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MWL6	 Pyruvate kinase	0.000373290574278
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0I4	 Transcriptional regulatory protein	0.000373163331198
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S3NFN5	 Short chain dehydrogenase reductase  family oxidoreductase	0.000373158088643
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YW03	 Putative Tfp pilus assembly protein FimV	0.000372948696439
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX98	 Glycoside hydrolase, family 18	0.000372914638294
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U3U3S9	 Binding protein dependent transporter inner membrane component	0.00037281437021
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8FYL8	 Two component transcriptional regulator, winged helix family	0.000372725753256
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B0K2T9	 Tryptophan synthase beta chain	0.000327955379255
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZM1	 Cell wall associated hydrolase like protein	0.000372562979897
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7NGN6		0.000372562979897
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6C4	 Cof like hydrolase	0.000372562979897
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M5HP27		0.000372562979897
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6S3Y4		0.000372386800896
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q01464	 Septum site determining protein MinD	0.000372380658333
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_S5VEZ7	 Alpha galactosidase	0.000372211805786
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I7BXC4	 tRNA 5 methylaminomethyl 2 thiouridine	0.000372105285815
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MBX9	 Xylose isomerase domain containing protein TIM barrel	0.000372013629706
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GFC8	 Ppx GppA phosphatase family	0.000371815114486
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E942	 Helix turn helix domain protein	0.000371664734719
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3UPT4	 AMP dependent synthetase and ligase	0.000234224997824
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_I3UPT4	 AMP dependent synthetase and ligase	0.000137286564448
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E3GP22	 Metal dependent hydrolases of the beta lactamase superfamily III	0.000371505452512
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S3NQR8	 C4 dicarboxylate transport two component sensor histidine kinase	0.000371375406292
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_C1CWV4		0.000371338153083
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V1IJP0	 Anaerobic C4 dicarboxylate transporter	0.00037123856656
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1KR53	 Truncated pilin	0.000371193263052
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2THC6	 GCN5 related N acetyltransferase	0.000371193263052
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UXK4		0.000371193263052
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KNS8	 Nuclease	0.000371193263052
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_E3GYK6		0.000371193263052
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K9Z9U6	 Plasmid maintenance system killer	0.000371193263052
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q58947		0.000371193263052
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AB62	 Thymidylate kinase	0.000371193263052
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5T8M0	 Phosphotransferase system mannose fructose N acetylgalactosamine specific component IIC	0.000371186353411
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DVD7	 CBS domain protein	0.000371175158712
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H056	 Outer membrane protein oprM	0.000370790129778
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PNF0	 Heparinase II III family protein	0.000370700445638
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YSG0	 Phage infection protein	0.000370628766137
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B1XSD3	 ATP synthase gamma chain	0.000370593096617
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P0A5M3	 Transcription termination antitermination protein NusA	0.000370377497414
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C0MDY5	 Translation initiation factor IF 2	0.000370364918936
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5ZKP1	 Membrane protein	0.00037033987729
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSZ0		0.000370284870238
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DX87		0.000370179706595
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IZH8	 tRNA N6 adenosine threonylcarbamoyltransferase	0.000370034529885
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B8K9	 Integration host factor subunit beta	0.000369833580773
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMY3	 DNA directed RNA polymerase subunit L	0.000369833580773
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9RTF7	 Methionine biosynthesis protein	0.000369833580773
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DTR0		0.000369833580773
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DTR8		0.000369833580773
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4K681	 Spermidine putrescine import ATP binding protein PotA	0.000288509915721
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U7DPJ1	 LysR family transcriptional regulator	0.000369533231771
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYB4	 GTP cyclohydrolase 1	0.000327088162417
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q2FD92	 RND family drug transporter	0.000369372940757
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6MIG6		0.000369226962742
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7E9D6	 Disulfide interchange protein tlpA like protein	0.000369177209695
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQ85	 Transglutaminase domain protein	0.000166333719196
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3J7X3	 Coenzyme PQQ synthesis protein B	0.000354150948812
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q03S48	 Bifunctional protein PyrR	0.000323604383174
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6SJ34	 Prephenate dehydrogenase	0.000368899657594
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VC44		0.000368820645682
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JEW7		0.000368679168496
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2V0	 Methyl accepting chemotaxis sensory transducer	0.000368624701171
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A038GMN1		0.00036848382318
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL02		0.00036848382318
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0N6L8		0.00036848382318
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5GQ93	 Phage O protein	0.00036848382318
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RS07	 Iojap like protein	0.00036848382318
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q46PJ6		0.00036848382318
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5WC68	 Short chain dehydrogenase reductase SDR	0.000368403067074
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B3QS41	 Adenylate kinase	0.000359304510857
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V6T3		0.000368320811685
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MGY4	 Drug resistance transporter, EmrB QacA subfamily	0.000368223718362
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VGX4		0.000367963793877
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A9WMF4	 Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.00036795389322
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PRA9		0.000367643157741
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5LZS7	 Glycosyl transferase, group 1	0.000367556361774
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D8IV87	 1,4 alpha glucan branching enzyme GlgB	0.0003673287239
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5XTT8	 AMP binding enzyme	0.000367220151803
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M175	 Regulatory protein MerR	0.000367196699259
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E8Q9Z9		0.000367143882008
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_H0Q501	 Sarcosine oxidase gamma subunit family protein	0.000367143882008
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15033	 Protein RacC	0.000367143882008
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02KP6		0.000367143882008
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DZR9		0.000367143882008
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C9D9L2	 Universal stress protein	0.000367120127872
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6W2Y6	 PfkB domain protein	0.000367118738933
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0REB6	 3D  trihydroxycyclohexane 1,2 dione hydrolase	0.000366730732231
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E5U9	 ATP synthase gamma chain	0.000366644953219
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GPC7	 Regulatory protein	0.000366644646206
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F5XE95		0.000366610856192
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P22609	 Type 4 fimbrial assembly protein PilC	0.000366608942722
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E3D3B9		0.000366569547105
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8KGC4	 Flagellar biosynthesis protein FlhB	0.000366436776124
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q53599	 Protein map	0.000366303147025
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C1FKU5	 Dipeptidase family protein	0.00036599542346
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5M690	 33 kDa chaperonin	0.000365908329374
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P69955	 Low calcium response locus protein D	0.000365850663209
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8NZK5	 Immunogenic secreted protein homologue	0.000365824125672
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PFT9		0.000365813650548
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZA8	 UBA Ts N domain protein	0.000365813650548
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C3TCH2		0.000365813650548
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E3H779	 Transcriptional regulator, XRE family	0.000365813650548
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DVW8	 GntR family transcriptional regulator	0.000365813650548
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VAK1	 ABC transporter	0.000365813650548
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1F8		0.000365813650548
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P38448	 KHG KDPG aldolase	0.000365721614832
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C7RP31		0.000365669438626
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VB10	 LysR family transcriptional regulator	0.000365470827267
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8A5Z1		0.000365354049568
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTR7	 Glucose 1 phosphate adenylyltransferase	0.000362509690239
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I1Q5	 4 hydroxythreonine 4 phosphate dehydrogenase 2	0.000365082867918
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O06456	 N5 carboxyaminoimidazole ribonucleotide mutase	0.000282813914711
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_B6ISK5	 Acyl CoA dehydrogenase, putative	0.000364928173066
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RX31		0.000364899679038
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Z1H5Y2		0.000316503346551
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPV1	 TPR repeat containing protein	0.000364829728413
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WWH1	 Glycosyl transferase, group 1	0.000364823645803
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L3UJQ1		0.000275924857812
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2LWG0		0.000364541270564
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RZ47	 DNA binding protein	0.000364493023645
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M519	 EsvK1	0.000364493023645
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D3MK43	 TIM barrel signal transduction protein	0.000364493023645
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9USN8		0.000364493023645
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q6FDS2	 Putative arginyl tRNA  protein transferase	0.000364493023645
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q45538	 Protein CotJC	0.00036432105829
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTN2	 Putative phosphoenolpyruvate synthase regulatory protein	0.000364200961936
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KJ61	 Triacylglycerol lipase	0.000364057869893
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J2I9	 Shikimate kinase	0.000168837069486
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MBM8	 ATP dependent DNA helicase, UvrD REP family	0.000363717480908
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXW2	 FMN binding domain protein	0.00036370622972
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E8SRI9		0.000363674965062
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T7AJZ3	 Nucleoside triphosphatase	0.000363593924792
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I1V0	 Glycogen synthase	0.000363517224806
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TIX9	 FliB domain protein	0.000363496631114
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7FHL7	 Anhydro N acetylmuramic acid kinase	0.000363428998131
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5GTU8	 MFS transporter	0.000363264034355
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZF6	 Transcriptional regulator, XRE family	0.00036318189767
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J1DUQ4	 Putative imidazole glycerol phosphate synthase, glutamine amidotransferase subunit	0.00036318189767
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABC1	 ATP synthase protein I	0.00036318189767
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A969	 DNA repair protein RecO	0.00036318189767
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTU0	 Potassium uptake protein KtrA	0.00036318189767
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8TG00	 Type IV secretion protein Rhs	0.00036318189767
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E7AAE2	 Peptidase M16 domain protein	0.00036318137008
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q03U06	 Mannonate dehydratase	0.000352245652293
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZG28	 Putative glucosyl transferase	0.000363108379472
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9R2C2	 Membrane protein	0.000363020027207
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A6WVV0	 AMP dependent synthetase and ligase	0.000363012513484
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZ42		0.000363007376841
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U6EXA7	 Primosome assembly protein PriA	0.000362984757749
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6ADX9	 Outer membrane component of tripartite multidrug resistance system	0.000362775942033
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2Q9	 Helicase, putative	0.000362562188493
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8FTX6	 Hemerythrin	0.000362529865535
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A5U0Z1	 Succinyl CoA ligase [ADP forming] subunit beta	0.000362522277522
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E8XUV9	 Lysozyme	0.000362423994261
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B1I7A4		0.000362300622071
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C3A9F0	 Beta glucosidase	0.000362225671146
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4JCQ5	 NADPH dependent glutamate synthase beta chain and related oxidoreductases	0.000362205017985
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YSK0	 Uracil permease	0.000362170885682
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F1VLT5	 Response regulator receiver domain protein	0.000362146664736
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2E6		0.000362099175497
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVP1	 Extracellular solute binding protein, family 5	0.000362072630528
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88K39	 Glutaminase asparaginase	0.000362031948795
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2UHG1	 Carboxymuconolactone decarboxylase	0.000361880170436
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E6X1D4	 Pyruvate ketoisovalerate oxidoreductase, gamma subunit	0.000361880170436
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N5KJK9	 Serine protease splF	0.000361880170436
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P23857	 Thiosulfate sulfurtransferase PspE	0.000361880170436
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IYI4	 Protein GrpE	0.000361880170436
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PV63	 CRISPR associated endoribonuclease Cas2	0.000361880170436
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J7DEN9		0.0003618000653
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XWE5	 Sarcosine oxidase	0.000361756061357
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4T4M6		0.000181918139732
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JWJ7	 Ribosomal RNA small subunit methyltransferase I	0.000349499331266
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HBM5	 Glycerate kinase	0.000361559560067
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TS76	 Oligopeptide ABC transporter, periplasmic oligopeptide binding protein	0.000361505362166
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RFT5	 3 oxoacyl [acyl carrier protein] synthase 3	0.000361455513909
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSC3	 UDP glucose 4 epimerase	0.000361350391944
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1WSM8	 1,4 alpha glucan branching enzyme GlgB	0.000361305196417
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A010D0D1	 Ribonuclease R	0.000361292654669
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YXS7	 Tyrosine recombinase XerC	0.000361250782291
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZKQ7		0.000361064685793
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0A3M5	 Penicillin binding protein 2B	0.00036101996582
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q166F4	 Isoprenyl transferase	0.000360804007395
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MI36		0.000360769153104
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_C1D094	 GTPase Der	0.000360731002178
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5ET80	 Enoyl CoA hydratase	0.000360702625935
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I7A0G4	 Two component transcriptional regulator	0.000360587741251
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HLB9		0.000360587741251
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9STU2	 Transcriptional antiterminator, BglG	0.000360527401938
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A6VVT1	 Isochorismatase	0.000360493920977
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0ZL16	 5 nucleotidase, lipoprotein e family	0.00036035833055
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9T419	 Glycosyl transferase family 1	0.000360273349956
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JN46	 Ribosomal RNA large subunit methyltransferase J	0.000360158980565
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023YXN9	 Type 1 fimbriae anchoring protein FimD	0.00035988767286
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTY9		0.000359873956601
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8CQG7	 Transposase	0.000359840352474
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PTH2		0.00035980109538
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9CG80	 DNA topoisomerase 1	0.000323873667327
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HEA1	 Hydrolase, NUDIX family	0.000359776453544
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FF14		0.000359375043523
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D7A0Y7	 Polar amino acid ABC transporter, inner membrane subunit	0.000359304510857
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6T0G0		0.000359304510857
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P77828	 10 kDa chaperonin 1	0.000359304510857
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KFH3	 Type IV prepilin peptidase related protein	0.000359304510857
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9SB66		0.000359265905268
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MWY6		0.000359260307176
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q3Z7J2	 DNA methylase	0.000359218676355
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D2NTC3	 Threonine dehydrogenase	0.000358992220271
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D5H607	 GTP binding protein TypA	0.00035894809086
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MYV0	 ATP dependent Clp protease ATP binding subunit ClpA	0.000358922368965
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5HWX2	 Cys Met metabolism PLP dependent enzyme	0.000358788523277
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A4VG13	 D lactate dehydrogenase 	0.000358749973965
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWK6	 Serine threonine protein kinase	0.000358733855416
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SIN4	 tRNA binding domain protein	0.000358670840824
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W0E657	 Transposase IS116	0.000358644094806
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D6DES4	 Amino acid transporters	0.000358626526759
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XXL0	 Diguanylate cyclase phosphodiesterase	0.000358620965176
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RS08		0.000358608230162
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2KZT3		0.000255606500127
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28NN5	 UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.000358507783522
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V6J8		0.000358302622552
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LSF1	 Cytidylate kinase	0.000358109610163
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6AKX0		0.000358046465862
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYQ0	 Catalase	0.000358039359714
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7LDX5		0.000358030381389
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KIU0	 Sel1 like repeat protein	0.000358030381389
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L9DAS8	 Molybdopterin dinucleotide binding domain protein	0.000358030381389
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PUV9		0.000358030381389
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2E9		0.000357987624924
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MC40	 Methyl accepting chemotaxis sensory transducer with Cache sensor	0.00035793711644
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P44638	 Lactoylglutathione lyase	0.000260890355433
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C6CIT8	 ABC transporter related	0.000357878457298
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DXQ8	 Sensor protein DltS	0.000357801670655
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V757		0.00035778824466
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYD3		0.000357643763637
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2SK77	 ISXoo6 transposase	0.000357463531565
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2DXX0	 Dihydrouridine synthase family protein	0.000357336386552
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PID1		0.000253679817971
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A2SFU4	 Transport protein B	0.000357259426108
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8H2A8	 Branched chain amino acid ABC transporter, ATP binding protein	0.000357174469867
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6K2Y0	 Carbohydrate kinase, FGGY family protein	0.000357075638721
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4K8A6		0.00035701209875
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V8DYY2		0.000356923079674
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5UEK8	 Chromosome partition protein MukB	0.000356840413935
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A3CMZ0	 Na+ driven multidrug efflux pump, putative	0.000356806675282
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVU2	 Cobalt precorrin 5B C methyltransferase	0.000356766245111
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR14	 Heavy metal translocating P type ATPase	0.000356606954131
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0Q7	 Methyl accepting chemotaxis sensory transducer	0.000356466316021
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MSB5	 Stage V sporulation protein D	0.000356273948897
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CQF3		0.000356222737215
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3VE51		0.000356187359786
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0KDL1	 ABC type transporter, ATPase component	0.00035615584833
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B8GXN0	 Magnesium chelatase subunit ChlI like ATPase	0.000356153958657
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E6P5S3	 Phosphonate organophosphate ester transporter subunit, membrane component of ABC superfamily	0.000356136040748
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M7B0	 Cell wall binding repeat containing protein	0.00035599831176
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A009W0R2	 Valine  tRNA ligase	0.000355991071965
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX23		0.000355929106335
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX18		0.000355892777537
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J0Y6	 DNA topoisomerase 	0.00035580072602
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S6K9	 Formate nitrate transporter	0.000355664386083
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V917		0.000355509040677
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D8GM15	 Membrane associated dicarboxylate carrier protein	0.000355509040677
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M9A4X1	 Fructose like permease IIC component 1 domain protein 	0.000355509040677
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5PCU0	 Protein YcgL	0.000355509040677
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UUY0		0.000355405386554
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_R4U7U8	 Phosphoribosylglycinamide formyltransferase	0.000355371342201
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A2SKF9	 Transaldolase	0.000355370115683
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5P119	 Probable RNA methyltransferase AZOSEA28700	0.000355312595917
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M003	 Two component, sigma54 specific, transcriptional regulator, Fis family	0.000355296417344
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4KEM3	 Two component sensor histidine kinase PedS1	0.000355257718029
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D7I1Z9	 Dienelactone hydrolase	0.000231062206325
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D7I1Z9	 Dienelactone hydrolase	0.000124187659962
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02F58	 Phosphoserine phosphatase	0.000355185915108
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48QB2	 Fatty acid desaturase	0.000355118474351
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRF1	 Glycosyl hydrolase, BNR repeat containing protein	0.000355096002244
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4SPY8	 Protoheme IX farnesyltransferase	0.000309575011446
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_F4D5J0		0.000354748263664
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D3HBK9	 Acid phosphatase	0.000354742816222
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q4FPS9	 Chaperone protein DnaK	0.000241094534285
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q4FPS9	 Chaperone protein DnaK	0.000113520051111
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I3N2	 Cytochrome c type biogenesis protein CcmF	0.000354569964448
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MT62	 Nodulation protein NolG	0.000354345532805
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U5SYK1	 YeeE YedE family protein	0.000307818803509
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3LL65	 Aflatoxin B1 aldehyde reductase member 1	0.000250668821106
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45301		0.000354279087326
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_A0A023X2K9	 Nitroreductase family	0.000354261640528
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E7SMJ6	 Melibiose operon regulatory protein	0.000354261640528
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J1BB65		0.000354261640528
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1R7H9		0.000354261640528
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RY24	 Protein GrpE	0.000354261640528
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T7W3B1	 Inner membrane ABC transporter permease ycjO	0.000354261640528
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B0RYF7	 2 methylcitrate hydratase	0.000218310476643
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B0RYF7	 2 methylcitrate hydratase	0.000135869366622
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MCQ3		0.00035409906828
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0SU50	 Amino acid permease family protein	0.000354052983922
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51487	 Outer membrane protein OprM	0.00035405024966
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1M078	 4 hydroxy 3 methylbut 2 enyl diphosphate reductase IspH	0.000353957069884
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_L5QQP7	 Type I restriction modification DNA specificity domain protein	0.00035392325884
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A8N5	 Prolipoprotein diacylglyceryl transferase	0.000315514273597
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4X5B0		0.000165515684511
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4W0M7	 ATP dependent helicase nuclease subunit A	0.000347279086017
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0KCU7	 S adenosylmethionine dependent methyltransferase	0.000353641217339
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q729A6	 3 methyl 2 oxobutanoate hydroxymethyltransferase	0.000318572101776
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GU00	 Peptidyl prolyl cis trans isomerase	0.000353022963465
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76063		0.000353022963465
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2T0N2	 Kynurenine formamidase	0.000353022963465
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A9W7	 Octanoyltransferase	0.000353022963465
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_R0VSS0	 Tetrapyrrole  Methylases family protein (Fragment)	0.000353022963465
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8SVU4		0.000353022963465
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G2SXD8	 Aspartate aminotransferase	0.000352837924794
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C6B8Q0	 Pathogenesis related protein	0.000352818394228
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02LX5	 Putative glutamate  cysteine ligase 2	0.000249569141741
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P46861	 Lysine  tRNA ligase	0.000352578731978
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MZR9	 Division cluster competence associated protein Dca	0.000352319715104
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M244	 ROK family protein	0.000352288165918
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O34718	 Major myo inositol transporter IolT	0.000352256190561
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q92PH0	 Glutaminase	0.000352213629099
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX65		0.000352158180045
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6SDA8	 Bacteriophage protein	0.000352129062187
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P26276	 Phosphomannomutase phosphoglucomutase	0.000351881952407
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N555		0.000351841676844
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HEU0	 Transcriptional regulator, TetR family	0.000351792918298
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0E315		0.000351792918298
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J2MQX3	 ISPsy24 transposase	0.000351792918298
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64535	 Nickel cobalt homeostasis protein RcnB	0.000351792918298
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVN4		0.000351792918298
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JNP8	 Xylanase chitin deacetylase	0.000351776916948
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K5JB68	 Bacterial extracellular solute binding s, 3 family protein	0.000351618351166
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J7M386	 Mevalonate kinase	0.000351428361071
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9BPC4	 NIPSNAP family containing protein	0.000319508125159
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_O34384		0.000351181104529
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8FR31	 Histidine kinase	0.000351030799294
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C4LJK5	 ABC type transport system, ATP binding protein	0.000350703540257
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8AVJ7	 UDP N acetylmuramoylalanine  D glutamate ligase	0.000350663036281
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XTA7		0.000343463063772
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6I424	 Glutamate ammonia ligase adenylyltransferase	0.000278711047445
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRW6		0.000350571415106
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6TW03	 Methyltransferase type 12	0.000350571415106
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VCG5		0.000350571415106
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I3N1	disulfide interchange protein DsbE	0.000350571415106
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4Z8G7		0.000350571415106
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9A3G1		0.000350571415106
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E1W2A8	 Deoxyribose phosphate aldolase	0.000350481734096
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR23	 ABC type nitrate sulfonate bicarbonate transport systems periplasmic components like protein	0.000350381580092
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P00106	 Cytochrome c4	0.000350343919057
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCJ3		0.000350253246635
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9K3V7	 Pyridoxine pyridoxamine 5 phosphate oxidase	0.000350195990588
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A022SAV9	 Glucose   Sorbosone dehydrogenase family protein	0.000350167067309
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A0A023XXU1	 Alanine dehydrogenase	0.000350041488054
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUN8	 Mg2+ transporter protein, CorA family protein	0.000349866842948
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VD48	 ABC transporter, ATP binding protein	0.000349783465065
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7LLC2	 Cation efflux protein	0.000349699904124
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JIS8		0.000349692718324
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K1P9		0.000349616933572
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q313L3	 Protein translocase subunit SecA	0.000349561528448
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q898U2	 BmrU protein	0.000349518140844
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B0C3D3	 2 isopropylmalate synthase homocitrate synthase family protein	0.000349445731832
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4X643	 SAM dependent methyltransferase	0.000349440967708
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8Z8E5	 Putative potassium transporting ATPase B chain	0.000336897280232
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A4J8U4	 Putative sporulation transcription regulator WhiA	0.000349413749276
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RZA2	 Quaternary ammonium transporter	0.000349358365233
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FBY0		0.000349358365233
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E8QA00		0.000349358365233
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACZ1		0.000349358365233
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI0002B8EEE2	 hypothetical protein, partial	0.000349358365233
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F6X6		0.000349283042223
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E3E7X0	 Formate dehydrogenase, alpha subunit	0.000349264688349
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JD06	 Nitrate nitrite transporter	0.000349209390328
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K9NMX3	 Amino acid transporter	0.000349051799601
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GX76	 Transcriptional regulator, TetR family	0.000349028042618
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VD49	 Sua5 YciO YrdC YwlC family protein	0.000348871762199
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1I3	 Amino acid permease associated region	0.000348707832876
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D6SI32		0.000290128067677
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9W1Q6	 L rhamnonate dehydratase	0.000348283127755
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1QZT8	 Transcriptional regulator, LysR family	0.000348277172804
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSX7	 Adenine deaminase	0.000348231476614
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPV7	 Tetratricopeptide TPR_2 repeat protein	0.000348194008895
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCQ6		0.000348153681214
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K4KNP7		0.000348153681214
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1Q9B8	 Single stranded DNA binding protein	0.000348153681214
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8XVA1		0.000348153681214
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M5U8	 Type III restriction protein res subunit	0.000348093661706
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W4N2B7	 UPF0176 protein X964_08780	0.000343930268484
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KT83	 Transport system permease protein	0.000347799786189
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U7DLP3	 Glutathione S transferase	0.000347798533855
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X5F517	 Ribonuclease G	0.000347723690497
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D3I9D0	 Pyruvate formate lyase 1 activating enzyme	0.000347635886146
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZG59	 Oxidoreductase	0.000347593588413
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32160		0.000347502506823
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TI02	 Ser Thr protein phosphatase family protein	0.000347418869724
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F6BJB1	 N acetylglucosamine 6 phosphate deacetylase	0.000347403679726
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D6DJI1	 PTS system N acetylglucosamine specific IIB component, Glc family  PTS system N acetylglucosamine specific IIC component, Glc family (TC 4.A.1.1.2)	0.00034737011142
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R4NK63	 Valyl tRNA synthetase	0.000347239126432
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B3PC71		0.000346957276804
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SS83		0.000346957276804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I3A047		0.000346957276804
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_K4FHC9	 Transposase, IS200 family, truncated	0.000346957276804
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P55768	 Probable ribosomal protein in infB 5region	0.000346957276804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64579	 mRNA interferase HigB	0.000346957276804
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W3SJV3		0.000346957276804
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5QV04	 50S ribosomal protein L25	0.000346892923311
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M2Z2	 Acriflavin resistance protein	0.000346757507261
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KNK5	 Two component system response regulator 	0.00034673741724
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXB6	 Methyl accepting chemotaxis sensory transducer	0.000346697212907
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A0R696	 Glycine D amino acid oxidase	0.000346646514388
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K5C2		0.000346617190531
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97LP2	 Putative gluconeogenesis factor	0.000346602344075
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V3BAW5	 Anhydro N acetylmuramic acid kinase	0.000346564367455
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0N020	 ResB family protein	0.000346257908501
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M360	 Aminotransferase class III	0.000346056443319
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P32444	 MreB like protein	0.000346007151589
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K8M3	 1,4 dihydroxy 2 naphthoate octaprenyltransferase	0.00034593714403
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YP07		0.000345910751286
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TKN9	 Xanthine permease	0.00034587844109
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W1UDP7	 Surface protective antigen SpaA	0.000345832660474
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZFQ9	 Putative transporter	0.000345799351667
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5R6P0		0.000345770080777
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XX95	 NADH dehydrogenase (Quinone)	0.000345769066951
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4A5J4	 Conserved protein	0.000345769066951
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXG2		0.000345769066951
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6A5I3		0.000345769066951
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W4MRW8	 General stress protein 69	0.000345769066951
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KBR5	 D alanyl D alanine carboxypeptidase	0.000345680487162
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K0B8	 Hydrolase, haloacid dehalogenase like family	0.000345393664111
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A9XTE3	 Jhp0563 like glycosyltransferase	0.000345348551214
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M229	 5 dehydro 2 deoxygluconokinase	0.000345344714015
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6CXS0	 Amidohydrolase family protein	0.000345309165481
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1LNT9	 ABC type metal ion transport system, periplasmic component surface adhesin	0.000345273750887
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C7M9T6	 Cation diffusion facilitator family transporter	0.00034519134086
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U6A643	 Nicotinamidase family protein YcaC	0.000345178008722
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A024HB78	 Rod shape determining protein RodA	0.000345116632835
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8G168		0.000345115249086
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G3XCW3	 B band O antigen polymerase	0.000344969734145
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A0A023VMN5	 DNA polymerase III subunit epsilon	0.000344883488233
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PFT8	 ABC transporter related	0.000344709016866
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U8AFA9		0.000344653202058
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7I4D0	 Transcriptional regulator, DeoR family	0.000344588967754
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABN3	 Diacylglycerol kinase	0.000344588967754
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6MRB4	 Peptidyl prolyl cis trans isomerase	0.000344588967754
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q59266	 4 alpha glucanotransferase	0.000340579190374
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R5A601	 Recombination inhibitory protein MutS2	0.000344434893491
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZC7		0.000344178459573
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZKP0	 Glycerol 3 phosphate dehydrogenase [NAD+]	0.000343959662268
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V686		0.000343774557202
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1KW86		0.000343743598083
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DWI2	 Regulatory protein, LuxR	0.000343597974525
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MYI0	 Chitinase A1	0.000343531763506
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0K5P1	 Transcriptional regulator, AsnC family	0.000343416896431
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E0S6		0.000343416896431
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4XIG4		0.000343416896431
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P19765	 Insertion element IS1 protein InsB	0.000343416896431
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8U194	 Sulfide dehydrogenase subunit beta	0.000343416896431
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVK2	 MutT nudix family protein	0.000343416896431
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R4YI33	 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.000343416896431
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8GMX2	 Antitoxin	0.000343416896431
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9U275	 Two component hybrid sensor and regulator	0.000343244785202
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4CRS0	 Subtilisin like serine protease	0.000343182808193
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UXA6	 Flagellar L ring protein	0.000343137482735
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I2BMM3	 SAM dependent methyltransferase	0.000343043907047
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6THJ4	 Inosose dehydratase	0.00034299978439
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5XYV5	 Aspartate  tRNA ligase	0.000342632108822
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXY1	 PAS PAC sensor hybrid histidine kinase	0.000342598845601
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VAC9	 Porin	0.000342412016798
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DNK0		0.000342347672109
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A4WA61	 Acid shock protein	0.000342252771362
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E9XVL2	 AraC family protein regulatory helix turn helix domain containing protein	0.000342252771362
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F5XVK9		0.000342252771362
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACN2		0.000342252771362
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5NMQ5		0.000342252771362
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI000370F3CE	 hypothetical protein	0.000342252771362
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DX62		0.000342082240501
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q3JQS6	 DNA mismatch repair protein MutS	0.000341808140541
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N8PPS0		0.000341796696308
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M418		0.00034167366346
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E3GPG2	 Phage prohead protease	0.00034167366346
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q89FK3	 Bll6696 protein	0.00034167366346
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQF1	 Cyanophycin synthetase	0.000341651636576
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXV4	 Methyl accepting chemotaxis sensory transducer	0.000341649978748
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M161		0.000341590116775
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3TU05	 ABC branched chain amino acid transporter, ATPase subunit	0.000341570831442
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XV84	 Transcriptional regulator, GntR family	0.000341486265317
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9QYY3	 TetR family transcriptional regulator	0.000341127606986
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q82ZC9	 Mannonate dehydratase	0.000189678570948
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q82ZC9	 Mannonate dehydratase	0.000149577137115
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_S0EV96	 Nucleoside diphosphate sugar epimerases	0.000341099107415
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E134	 Dinitrogenase iron molybdenum cofactor biosynthesis protein	0.000341096511999
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q30ST8	 Two component transcriptional regulator, winged helix family	0.000341096511999
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T069	 Nicotinamide nucleotide adenylyltransferase	0.000341096511999
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T3X0	 O methyltransferase	0.000341096511999
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P57178	 Flagellum specific ATP synthase	0.00034098961022
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G2RMW8	 Acetylxylan esterase enzyme	0.000340913454838
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZGA8	 AraC family transcriptional regulator	0.000340841008995
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JKA9	 Homoserine dehydrogenase	0.000340780953897
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_O07347	 Signal recognition particle protein	0.000340720897275
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I4V0	 Nitronate monooxygenase	0.000340688664437
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5Y2G0	 Alpha beta fold family hydrolase	0.000340641429487
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LXK1		0.000340598757964
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M1B3	 Potassium uptake protein	0.000340538132497
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MME7	 Diguanylate cyclase with GAF sensor	0.00034031673291
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SUH2	 LysR family transcriptional regulator	0.000340290856216
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YUW2	 Phosphoketolase	0.000340260445729
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JMP7		0.000340063236465
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B2UUZ0	 RNA pyrophosphohydrolase	0.000339948038892
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9MQS8	 FMN dependent NADH azoreductase	0.000339948038892
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5WIM7	 Truncated tagatose 1,6 diphosphate aldolase	0.000339948038892
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_C7BXR1		0.000339948038892
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E8Q9Z4		0.000339948038892
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H2FYL4	 Phosphoenolpyruvate carboxykinase	0.000339948038892
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77295	 Probable HTH type transcriptional regulator YgaV	0.000339948038892
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J520	 Restriction endonuclease	0.000339948038892
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RS27	 Alanine  tRNA ligase	0.000339919463355
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C9XJX6	 DeoR family transcriptional regulator	0.000339917751289
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KUV4		0.00028073833207
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SLQ3		0.000339869883887
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LBK7	 Two component sensor	0.00033984312554
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RY69		0.000339842896512
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VLG4	 ErfK YbiS YcfS YnhG	0.000339770542718
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31129	 Diguanylate cyclase YdeH	0.000339728395827
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_UPI00047C8194	 PTS fructose transporter subunit IIC, partial	0.000332092473782
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88F24	 Cell division protein ZipA homolog	0.00033941932593
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VTM3	 Signal peptidase I	0.000339363326276
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P26171	 Bacteriochlorophyll synthase 44.5 kDa chain	0.000337861425347
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_O87406	 UPF0070 protein NGO0425	0.000339353272052
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TPA5	 Cell division protein FtsA	0.000339290313133
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_R4WNT0	 3 hydroxyacyl CoA dehydrogenase NAD binding protein	0.000339285366606
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7E993	 ABC transporter ATP binding protein	0.000339162587563
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6RIQ3	 Two component sensor	0.000339150446635
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31450	 Putative inactive 6 phospho alpha glucosidase	0.00033914306454
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WX56	 Lytic transglycosylase, catalytic	0.000339093898087
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P23160	 34.2 kDa protein in rubredoxin operon	0.000329752973578
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVD8		0.000338807273663
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UXV5		0.000338807273663
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WYS0		0.000338807273663
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M9BNZ7		0.000338807273663
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76196		0.000338807273663
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A5U6	 30S ribosomal protein S14	0.000338807273663
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FKB1		0.000338807273663
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F2KZY9	 Metal ion transporter, metal ion  transporter (Nramp) family	0.000338791309681
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S5XSF5	 Nitrilotriacetate monooxygenase family FMN dependent	0.000338534307948
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KBI5		0.000338441801687
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q00853	 Homocitrate synthase subunit alpha	0.000338359953327
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I1ZJ75	 N acetylneuraminate lyase	0.000338317055471
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q3A6U9	 Flotillin band_7_stomatin like domain protein	0.000338296848069
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q03CD2	 Purine nucleoside phosphorylase DeoD type	0.000300948302857
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MYX8	 Methyl accepting chemotaxis protein	0.000338009804572
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8PAF3	 Glycerate kinase	0.000337996863529
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0K4Y1	 2,3 cyclic nucleotide 2phosphodiesterase 	0.000337755868961
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4YX01	 RNA binding protein	0.000337674138972
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64438		0.000337674138972
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2RNS6	 N anthranilate isomerase	0.000337674138972
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUB6		0.000337674138972
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I1M3	 Bkd operon transcriptional regulator	0.000337674138972
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15931	 Peptidoglycan hydrolase FlgJ	0.000337417026259
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUK3	 Glutathione biosynthesis bifunctional protein GshAB	0.00033740161952
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VD88		0.00033738194716
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C1AA13	 Twitching mobility protein	0.000337035972896
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY50	 MATE efflux family protein	0.000336993395896
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P42200	 L cystine transport system permease protein TcyB	0.000336756364086
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M1Q4	 Tetratricopeptide TPR_1 repeat containing protein	0.000336640935618
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O34808	 Uronate isomerase	0.000331252730483
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYF7		0.0003365485585
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C3BGD6	 Transcriptional regulator, HxlR	0.0003365485585
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R9F7		0.0003365485585
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VHR6	 Glycerophosphodiester phosphodiesterase family protein	0.0003365485585
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N3TQ95	 Putative membrane protein	0.0003365485585
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1H4N6	 50S ribosomal protein L4	0.0003365485585
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02QL1	 Phosphonate metabolism protein	0.000336443984248
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZD4		0.000336421229853
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M087	 AraC type transcriptional regulator domain protein	0.000336361069388
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8S5Z8	 Dihydroneopterin aldolase   delta 1 pyrroline 5 carboxylate synthetase	0.000336175857997
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVE7	 Multi sensor hybrid histidine kinase	0.000336129316289
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5VYK1	 Beta lactamase domain protein	0.000336072038454
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J632	 Transcriptional regulator, GntR family	0.000336050797498
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6CBZ9		0.00033599694953
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6D4E2	 Spermidine putrescine import ATP binding protein PotA	0.000284034804119
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT68	 Phage tail tape measure protein, TP901 family	0.000335748767376
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P18249	 RNA polymerase principal sigma factor HrdD	0.000335698631875
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8RY81	 ATP phosphoribosyltransferase regulatory subunit	0.000335696881614
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTC6	 Methyl accepting chemotaxis sensory transducer	0.000335611141019
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0KMZ9	 Glutamyl tRNA reductase	0.000335466974117
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1IRV5		0.000335445266765
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IY18	 RNA ligase of LigT family	0.000335430456979
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q8ZBZ2	 Na translocating NADH quinone reductase subunit C	0.000335430456979
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0QSH2	 Lysine exporter protein 	0.000335405509876
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4AP74	 O acetylhomoserine sulfhydrylase	0.000335369028652
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VJE3	 BadF BadG BcrA BcrD ATPase family protein	0.000335320441584
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8ZBZ0	 Na translocating NADH quinone reductase subunit A	0.00030772622522
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R9VQB8	 Major facilitator transporter	0.000335021432887
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZSY3		0.000236450977871
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6S4R3	flavin oxidoreductase NADH oxidase	0.000334977321246
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2U8	 Methyl accepting chemotaxis sensory transducer	0.000334903301213
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRP9		0.000334874187565
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KFX3		0.000334789312651
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4H949	 YD repeat protein 	0.000334749224084
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWB4	 SEC C motif domain protein	0.000334518572881
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G9WG99	 Alpha glucosidase	0.000334505536962
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MRX8	 Sensor histidine kinase ResE	0.000334502586162
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T7G4	 Oligopeptide transport system permease protein	0.000334375735905
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EQ26	 GDP L fucose synthase	0.000334338253475
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VM39	 Potassium transporting ATPase C chain	0.000334320676514
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RUB5		0.000334319760099
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D2ZMQ3		0.000334319760099
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SKB5		0.000334319760099
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DRX2		0.000334319760099
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2M8	 ABC 2 type transporter	0.0003343059507
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0K5E7	 Translation factor 	0.000334131321667
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M7X4	 Replisome organizer region containing protein	0.000333791265603
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H068	 Histidine  tRNA ligase	0.000329037854156
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CXB4	 Choline dehydrogenase related flavoprotein	0.000333756159688
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A0A024C6Z7	 HrgA like protein	0.000333689456638
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DWW5	 Transporter, putative	0.000333608060801
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XNC4	 Oligopeptidase B	0.000333553915543
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A7NI76	 AAA ATPase central domain protein	0.000333385484392
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MQB3	 PTS system beta glucoside specific EIIBCA component	0.000333289508383
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C8VZ79	 Beta lactamase domain protein	0.000333216394558
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4STA4	 Phosphatase	0.000333216394558
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N5R5Q8		0.000333216394558
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75679	 Transposase InsN for insertion sequence element IS911A	0.000333216394558
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77214	 Cation efflux system protein CusF	0.000333216394558
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0SWM0	 Probable RNA 2 phosphotransferase	0.000333216394558
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G8QIK2	 Cysteine synthase	0.000333141846521
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WT49	 Flagellar hook capping protein	0.000314531363087
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q972W3	 Urease accessory protein UreG	0.000332969072349
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q57493		0.000332858513664
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J2EUP8		0.000225871515772
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAW2		0.000332828636077
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KM17	 Lipid A biosynthesis lauroyl acyltransferase 	0.000332824127787
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A009WPV3	 TonB dependent receptor family protein	0.000332820096141
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQW7	 ExsB family protein	0.000332733486907
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JIY9	 AraC type DNA binding domain containing protein	0.000332728801859
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E023	 Chloramphenicol acetyltransferase	0.000332668341277
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FED0	 UDP N acetylglucosamine 1 carboxyvinyltransferase	0.000306704667553
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q67FW7	 DeoX	0.000332461529819
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M7T3		0.000332422856007
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q46TV5	 Amidase	0.000332226373073
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZH5	 Cation diffusion facilitator family transporter	0.00033218281501
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCN2		0.000332120287996
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F4EDD2		0.000332120287996
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P46474		0.000332120287996
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2K9B7	 Alanyl tRNA synthetase protein	0.000332120287996
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W6DYU4		0.000332120287996
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5WF94	 3 ketoacyl CoA thiolase	0.000332084125679
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K7H3	 DNA repair protein RecN	0.000332021416293
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HDE0	 tRNA rRNA cytosine C5 methylase	0.000331954459378
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A9KSS0	 UvrABC system protein C	0.000331886314454
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LY34	 ATP dependent DNA helicase RecQ	0.000331787457855
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4KED8	 Phenazine biosynthesis protein, PhzF family	0.000331697627953
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DVM2	 ABC transporter ATP binding protein	0.000331654043427
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F4E2U8	 Glycerol dehydrogenase	0.000331594001182
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LXS1	 Prophage antirepressor	0.000331457814014
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TQZ4	 Ribosomal RNA small subunit methyltransferase I	0.000331433930351
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MA52	 D alanyl D alanine carboxypeptidase	0.000331243589273
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DQW9	 FAD dependent oxidoreductase	0.000331073735228
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HF95	 Transcriptional regulator, DeoR family	0.000331031369021
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4A8L7		0.000331031369021
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_F8HFC0	 Conserved domain protein	0.000331031369021
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q3K3I8	 HAD superfamily hydrolase, subfamily IA, variant 3 family protein	0.000331031369021
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SST6	 Transcriptional regulator	0.000331031369021
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O65989	 PTS system mannitol specific EIICB component	0.000324521602542
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2ENK5		0.000330915740774
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MZX2	 Alpha beta fold family hydrolase	0.00033084061837
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTK1	 tRNA specific 2 thiouridylase MnmA	0.000330789769353
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q122S9	 Transcriptional regulator, LysR family	0.000330750286916
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E6SIA9	 5 carboxymethyl 2 hydroxymuconate semialdehyde dehydrogenase	0.000172542631698
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E6SIA9	 5 carboxymethyl 2 hydroxymuconate semialdehyde dehydrogenase	0.000158202874303
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L6RYU4	 Outer membrane phosphoporin protein E	0.000330720051451
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4XNF9		0.000330682647986
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77607		0.000330660665364
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U4I0	 Uroporphyrinogen III synthase	0.000330552604886
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q88KQ9	 Membrane protein, putative	0.000330550148468
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T620	 Long chain acyl CoA synthetase	0.000330482142603
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0Q8	 Periplasmic binding protein LacI transcriptional regulator	0.000330461517167
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P07874	 Alginate biosynthesis protein AlgA	0.000309919467647
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MT32	 Two component transcriptional regulator, AraC family	0.000330071766716
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VG85	 HAD superfamily hydrolase	0.000330000801175
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0T9	 Pyridoxamine 5 phosphate oxidase related, FMN binding	0.00032994956716
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M1I6	 Periplasmic thioredoxin	0.00032994956716
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G7RAI1		0.00032994956716
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0ZPJ9		0.00032994956716
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8REW5	 Precorrin 8X methylmutase	0.00032994956716
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X4Z2K1	 Methylated DNA [] cysteine S methyltransferase family protein	0.00032994956716
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B7GPE3	 Ribosomal RNA small subunit methyltransferase A	0.000329937674947
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PQ99	 Clostridial hydrophobic W	0.000329913223712
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RY17		0.000329855376588
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D8N320	 Immunoglobulin binding regulator 	0.000329747557223
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWQ9		0.00032960915046
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V1S7		0.00032955445438
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8MR27	 ATPase	0.000329455440306
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A964	 Glycine  tRNA ligase	0.000329391226276
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2M5		0.000329234336687
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2UX27	 ATP phosphoribosyltransferase regulatory subunit	0.000329219480155
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F8F6	 tRNA lysidine synthase	0.000329034913261
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1QE36	 Pseudouridine synthase	0.000329034575413
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYE7	 Chromosomal replication initiator protein DnaA	0.000328977998615
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYX0	 Phosphoglycerate mutase	0.000328874812867
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45956	 CRISPR associated endoribonuclease Cas2	0.000328874812867
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q893S7	 Chemotaxis protein methyltransferase cheR	0.000328874812867
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DSB5		0.000328874812867
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8DUC3	 Citrate lyase acyl carrier protein	0.000328874812867
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RV33		0.000328874812867
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K323		0.00032884586262
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WVK0		0.000328814252341
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P23378	 Glycine dehydrogenase , mitochondrial	0.000322175505353
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I4SHI8	 Rhs core protein with extension	0.000328643734464
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M0Z2	 Transcriptional regulator, GntR family	0.000328340925188
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_A9BFZ1	 30S ribosomal protein S4	0.000328340057074
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5PCT4	 Thymidine kinase	0.000328340057074
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DTU8		0.00030549181446
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GEI0	 Uncharacterised conserved protein UCP028101	0.000327849373426
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4VV94		0.000327807037508
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M1Y3		0.000327807037508
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2L427	 CSS motif domain associated with EAL family protein	0.000327807037508
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76548		0.000327807037508
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y7F8I8	 High affinity iron transporter	0.000327807037508
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1B4		0.000327786808177
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWA8		0.000327570780178
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0W1		0.000327509237095
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HL97	 Tfp pilus assembly protein FimV like protein	0.000327376178708
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P35818	 Type II secretion system protein D	0.00032732039431
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0GSA6	 Type II secretory pathway, component ExeA 	0.000327293849605
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D4E309	 Mannitol dehydrogenase domain protein	0.000327264606187
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88PZ1	 Membrane protein, putative	0.000327155825256
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVI9	 Transcriptional regulator, LysR family	0.000327118468679
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V488	 Metallo beta lactamase family protein	0.000327016721605
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6UAA9	 Response regulator receiver and ANTAR domain protein	0.000326746173305
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D2NTN6	 Signal transduction histidine kinase	0.000326746173305
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAW7	 Inner membrane protein YbhQ	0.000326746173305
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76160		0.000326746173305
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q8TT42	 30S ribosomal protein S9	0.000326746173305
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25369	 Outer membrane protein assembly factor BamA	0.000326727615887
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_UPI0000164CF6	 hypothetical protein DR_1761	0.000209036371737
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZQ45	 ABC transporter, permease protein EscB	0.000326518091662
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F7YLT2	 Glucose binding protein	0.000326396784975
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D5HI95	 Beta fructosidases 	0.00032639289582
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ65	 Methyl accepting chemotaxis sensory transducer	0.000326291972719
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V1Q0		0.000326221717544
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P58579	 Glutathione synthetase	0.000211554940296
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P58579	 Glutathione synthetase	0.000108680912326
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6AIG4		0.000246255042803
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MET0	 Cell wall binding repeat containing protein	0.000325866997588
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LPA6	 Double strand break repair helicase AddA	0.000325851299132
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU81	 UPF0246 protein Cbei_1739	0.000325788224073
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8GU79		0.000325753965432
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_X4QTW2	 Excinuclease ABC subunit A	0.000325726802137
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A029KEZ2	 Glycosyl transferase 2 family protein	0.000325692153389
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_R0PK11		0.000325692153389
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTV3		0.000325447246283
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DVB4	 LacI family transcription regulator	0.000325274231644
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B4U501	 50S ribosomal protein L4	0.000325167689379
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C5BEL3	 2,3 bisphosphoglycerate dependent phosphoglycerate mutase	0.000318500213096
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VH00	 Oxidoreductase, iron sulfur binding	0.000325069083819
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YQY9		0.000319111328512
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZI41		0.000324906300555
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MI89	 Sensor histidine kinase YesM	0.000324862640467
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_U5PFI6	 Competence protein ComFC	0.000324859870554
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q77FU2	 CI like repressor	0.000324827650661
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F925		0.000324646587307
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D5VBA0	 Ribosomal RNA small subunit methyltransferase E	0.00032464491174
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1VM94		0.00032464491174
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E4ZBB9		0.00032464491174
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O66116	 Protein ZMO0507	0.00032464491174
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W6RZJ6	 Amidase	0.00032464491174
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D4GDT5	 YliJ	0.000162583844685
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D4GDT5	 YliJ	0.000161802191592
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_T3G5Y0	 Ferrous iron transport protein B	0.000324204184632
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ14	 Histidine kinase	0.000324126150643
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYD5	 Transposase, IS111A IS1328 IS1533	0.000324035051777
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25001	 Beta lactamase HcpA	0.000323866112754
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1M1B9	 Beta fructofuranosidase	0.000323846323982
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWN1	 ATP dependent 6 phosphofructokinase	0.000314339636007
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2G5	 Transposition Helper	0.000323604383174
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6SU21	 SugE like protein	0.000323604383174
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D5BSQ1	 Sarcosine oxidase delta subunit	0.000323604383174
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E4CH69		0.000323604383174
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F0T7W8	 DNA directed RNA polymerase subunit	0.000323604383174
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U9P9	 Transcriptional regulator	0.000323604383174
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRS6	 Methyl accepting chemotaxis sensory transducer	0.000323557017687
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3F5Q2	 Asp Glu racemase	0.000323454976736
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6TVR2	 Aspartate carbamoyltransferase	0.000323328818843
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N9BB91		0.000323277700048
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I0JKD6	 PTS system subunit IIBC, sucrose specific	0.000322796670137
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I2FJ48	 Type II R M system DNA modification enzyme	0.000322774585248
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D8ILH3	 Farnesyl pyrophosphate synthetase   Geranyltranstransferase   Farnesyltransferase   Heptaprenyl diphosphate synthase component II	0.00032261978806
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5IR95		0.000322570503357
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ACX1	 Inner membrane protein YdgC	0.000322570503357
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF54	 Inner membrane protein YjcH	0.000322570503357
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P39284	 Inner membrane protein YjeO	0.000322570503357
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DXI7	 Single stranded DNA binding protein 4	0.000322570503357
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A5ITY0		0.000199929836735
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M7A9	 Transcriptional regulator, MarR family	0.000322298151608
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A8MIR6	 Heavy metal translocating P type ATPase	0.000322280791608
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C5C1Y1	 Tryptophanyl tRNA synthetase	0.000322250143582
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6SII5	 Endonuclease III	0.000172884533476
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E6SII5	 Endonuclease III	0.000149355869156
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZA51		0.000322177715407
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1K6		0.000322120255402
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYH8	 Cation diffusion facilitator family transporter	0.000322056036848
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U5ACU4	 ABC transporter	0.000322020856572
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V531	 Bifunctional protein	0.000321902993151
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5EY33	 Recombination protein RecR	0.000321543208762
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4UPV8		0.000321543208762
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZWS9	 ABC 2 type transporter	0.000321519753391
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K3WBA6	 Amidophosphoribosyltransferase	0.000321405689498
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KT00	 Transcriptional regulator, Crp Fnr family	0.000321325202332
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6SDI3	 Pyochelin biosynthesis protein PchD	0.00032127596583
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6LUZ6	 Glutamate ammonia ligase adenylyltransferase	0.00032123234318
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E8ZNH1	 Magnesium transporter	0.000321213993263
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F9W1	 tRNA dimethylallyltransferase	0.00032120222975
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DSN9	 Universal stress protein family	0.000321152622951
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q4FQY1	 Kef type potassium proton antiporter, CPA2 family	0.000321030700764
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZU3	 Precorrin 2 C methyltransferase	0.000274639276872
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZA07	 AraC family transcriptional regulator	0.000320528049634
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A024L5K6	 Amino acid ABC transporter permease	0.00032052243667
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F3V9Y6	 Acetyl CoA hydrolase transferase N terminal domain protein	0.00032052243667
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I2BMK6		0.00032052243667
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I9PDN2		0.00032052243667
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M8LWS9	 Amidohydrolase family protein 	0.00032052243667
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_S5R5C5		0.00032052243667
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M2K9		0.000320493141377
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RR77	 Cytochrome c oxidase, subunit I	0.000320427728301
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9R9Y4	 Cell division protein FtsX	0.000320257132783
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E4V6		0.00032018591899
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AAY0		0.000320179160412
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FB03		0.000320081772221
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F8GT79	 Major facilitator superfamily MFS	0.000320074915122
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1JDL9	 Transcriptional regulator, RpiR family	0.000320027156549
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A013RJA0	 Type I secretion C terminal target domain protein	0.000319960619162
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P09879	 Protein B	0.00031992706064
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A720		0.000319817739629
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7BPR1	 D amino acid transaminase	0.000319736141661
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E8U988	 Acetylornithine acetyl lysine aminotransferase	0.000319698662462
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV76	 ABC transporter related	0.000319648963674
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LIR2	 Chorismate mutase related enzyme	0.000319508125159
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VDU9		0.000319508125159
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZV08		0.000319508125159
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F2GA52	 Starvation protein B	0.000319508125159
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N0GPT3	 L asparaginase I	0.000319508125159
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2NPD7	 Bacterial regulatory helix turn helix s, AraC family protein	0.000319508125159
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D3FXA1	 Maltose 6 phosphate glucosidase	0.000319500260888
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KGL8	 ABC transporter, substrate binding protein	0.00031942285098
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F7B6		0.000319339338259
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YSH6	 RofA family transcriptional regulator	0.000319083992588
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KSK9	 Mammalian cell entry related domain protein	0.000319074972525
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWM4	 Amine oxidase	0.000318975414575
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q7MW52	 Fructose 1,6 bisphosphatase class 3	0.000318956291513
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HCK8	 ComE operon protein 3	0.000318849380475
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JI10	 Major facilitator superfamily permease	0.000318842811963
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MW64	 Diguanylate cyclase and metal dependent phosphohydrolase	0.000318709062686
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU00	 Baseplate J family protein	0.000318688745253
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWI3		0.000318641752294
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2H468	 AraC family transcriptional activator FeaR	0.000318611967555
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HCV7		0.000318500213096
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KH23	 Leucine responsive regulatory protein	0.000318500213096
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3URK7		0.000318500213096
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1RFF5		0.000318500213096
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_M5A5P1	 Geranyltranstransferase	0.000318391572081
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7XZ93	 Glycosyl transferase family 2	0.000318221408913
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S4B4H2	 Accessory colonization factor AcfD	0.00031819453163
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZC1	 AraC type transcriptional regulator domain protein	0.000318170111946
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F8IF10	 ABC transporter related protein	0.00031814099852
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D2FRF2	 Serine aspartate repeat containing protein F	0.000260217957603
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VDS9		0.000318012321198
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0RZ23	 Trans 2 enoyl CoA reductase 	0.000317998637955
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LNT3	 Ribosomal protein L11 methyltransferase	0.000317986228309
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4CV16		0.000224365705667
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VFV8	 Sensor histidine kinase	0.000317915325982
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YAW9	 Transcriptional regulator, LysR family	0.000317880942054
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5HXZ1	 Anaerobic ribonucleoside triphosphate reductase	0.000317813602777
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I3P8	 Flagellar biosynthesis protein FlhF	0.000317782875291
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RUN2	 LysR family transcriptional regulator	0.000317745770611
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EI71	 ATP dependent helicase	0.000317706835503
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U413	 Pyridine nucleotide disulfide oxidoreductase	0.000317702750204
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023LCW0		0.000317498640103
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQL4	 Methylated DNA  protein cysteine methyltransferase	0.000317498640103
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F2I7B4	 ABC transporter, ATP binding protein	0.000317498640103
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9V6A4	 Peptidyl tRNA hydrolase	0.000317498640103
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_O52788	 Tyrosine protein kinase ptk	0.000302301021529
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7GWT8	 Ribosomal RNA small subunit methyltransferase C	0.000317227865753
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I3YNX6	 Glycerol 3 phosphate dehydrogenase	0.000317152689344
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1LFE8	 Transcriptional regulator, LysR family	0.000317108336538
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZK04		0.000316934037518
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2J5	 FilF	0.00031690731877
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VD60	 N acetylmuramoyl L alanine amidase	0.000316842431932
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LW27	 Integral membrane sensor signal transduction histidine kinase	0.00031682095173
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M234	 Sigma 54 factor, interaction domain containing protein	0.00031678277521
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5ST11	 Cytochrome P450	0.000316688052019
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C4I8A2	 Hydrolase, isochorismatase family	0.000316581838627
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A4YBV8	 DNA directed RNA polymerase subunit alpha	0.000280988068847
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DNP3	 Short chain dehydrogenase reductase SDR	0.000316503346551
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G4KTZ6	 Serine acetyltransferase	0.000316503346551
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1RCK1		0.000316503346551
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46864	 Antitoxin MqsA	0.000316503346551
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q4JV62	 4 hydroxy tetrahydrodipicolinate reductase	0.000316503346551
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RY12		0.000316503346551
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TPC7	 Homoserine kinase	0.00031646061254
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K1J7	 Iron only hydrogenase large subunit	0.000316367388563
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0PZM2	 4 hydroxy tetrahydrodipicolinate reductase	0.000306672428173
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_O69763	 Vanillin dehydrogenase	0.000316303972021
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V969	 Homoserine kinase	0.000316271206939
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I4DYV1	 Branched chain amino acid ABC transporter permease protein	0.000316244886557
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A7GJ81	 DNA directed RNA polymerase subunit beta	0.000312349601321
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I2BTA7	 Response regulator GGDEF domain protein	0.000315947738667
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0QIN2	 Transcriptional regulator, TetR family	0.000315776597788
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MV61	 ATP dependent transcriptional regulator, MalT like, LuxR family	0.000315683159594
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4S432	 LysR family transcriptional regulator	0.000315657632793
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48KB0	 Acyl homoserine lactone acylase PvdQ	0.000315619757016
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6N053	 O succinylhomoserine sulfhydrylase	0.000315608056071
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAZ2		0.000315542335235
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q4JX51	 Glucose 6 phosphate isomerase	0.000225774423125
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q4JX51	 Glucose 6 phosphate isomerase	8.97462822688e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V0U7		0.000315514273597
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E4FFC4		0.000315514273597
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4A9F5		0.000315514273597
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADU3	 Probable quinol monooxygenase YgiN	0.000315514273597
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q6N535	 ATP dependent Clp protease adapter protein ClpS 2	0.000315514273597
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RV68	 Transcription elongation factor GreA	0.000315514273597
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R4YEC6	 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.000315514273597
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_D1DJZ6	 TspB like protein	0.000315463911653
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KJN4		0.000315371859329
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V1TTX3	 Outer membrane receptor FepA	0.000315228337631
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V4S9	 Elongation factor P	0.000299598123293
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C8WIL3	 2 nitropropane dioxygenase NPD	0.00031511677766
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L3RWN4	 Transcriptional regulator	0.000314781296886
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0SEV2	 G5 domain protein 	0.000314657091153
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2F0		0.000314643252808
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I406	 Gamma glutamyltranspeptidase	0.000314580105771
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WR31	 Ferredoxin	0.000314531363087
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7NPA6		0.000314531363087
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KMH9		0.000314531363087
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5Q2Y7	 Major facilitator superfamily	0.000314531363087
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VCW9	 Proteasome subunit beta	0.000314531363087
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ABE7	 Soluble cytochrome b562	0.000314531363087
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADK5	 Inner membrane protein YiaW	0.000314531363087
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_P13977	 DegV domain containing 15.5 kDa protein	0.000314531363087
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q71YD4	 30S ribosomal protein S14	0.000314531363087
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T1ZWU5		0.000314531363087
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9D1R8	 N,N diacetylchitobiose permease IIC component	0.000314531363087
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZFQ9	 LysR family transcriptional regulator	0.000314455002989
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LW07	 Periplasmic binding protein LacI transcriptional regulator	0.000314351288974
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45422		0.00031429393485
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I0I6	 Methyl accepting chemotaxis protein PA2652	0.000314264024986
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6BAJ6	 Phosphoenolpyruvate  protein phosphotransferase	0.00031425124591
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MX64	 Nickel dependent hydrogenase, b type cytochrome subunit	0.000314134135291
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M3B7	 Phage minor structural protein	0.000314035496261
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XHL9	 Glycine  tRNA ligase	0.000313914226992
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6N0G1	 Cell division protein ZipA	0.000313875038968
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M165	 Cellulose synthase subunit domain	0.000313854461894
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JEK9	 Phage related protein  family protein	0.000313843218349
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MSD8		0.00031379108272
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2D9		0.000313777489355
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSV2		0.000313554557611
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_C5Q832		0.000313554557611
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZAX1	 Galactose 1 phosphate uridylyltransferase	0.000313554557611
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SRH8	 Heme oxygenase	0.000313554557611
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2G5	 Phage infection protein, putative	0.000313461443311
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I5U5	 Ribosomal RNA small subunit methyltransferase A	0.00031339988159
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0K4R1	 NAD dependent aldehyde dehydrogenase	0.000313375701373
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_W2BNM9		0.000313360205907
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKU8		0.000217596050757
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VHC2		0.000313087240727
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4JD68	 Dienelactone hydrolase family protein	0.000313068426515
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W1Q0	 Phosphoglycerate mutase	0.000313067679781
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MW97	 HD GYP domain protein	0.000313038070508
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSC4	 Malonyl CoA acyl carrier protein transacylase	0.0003130196471
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4UZD0		0.000312877282042
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T6ITD7	 DNA mismatch repair protein mutS	0.00031280501321
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A9R8	 Glycine dehydrogenase 	0.000310590492833
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYI5	 Metal dependent phosphohydrolase	0.00031273388872
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_L0LL50	 Small multidrug resistance  family efflux pump	0.000312583800468
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FAW3		0.000312583800468
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RV85		0.000312583800468
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y2QX65	 Glycosyl transferase, group 2 family protein	0.000312583800468
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M3I9	 Copper amine oxidase like domain containing protein	0.000312295552999
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HEH1	 Sugar binding domain protein	0.000311805131757
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZQR0	 Two component response regulator, malate	0.000311728654257
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VLH6	 Alanine racemase	0.000311645488885
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MRI4	 Ribose 5 phosphate isomerase A	0.000311630910015
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RM21	 Serine threonine protein kinase	0.000311624160463
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5F4G9	 Thiosulfate sulfurtransferase GlpE	0.000311619035653
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7LPC5		0.000311619035653
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U376		0.000311619035653
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H7CWV1	 Phage shock protein A	0.000311619035653
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L4JNM8		0.000311619035653
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTP7	 Multi sensor signal transduction histidine kinase	0.000311555980635
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1LPJ1	 Transcriptional regulator, RpiR family	0.000311454789453
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I7AEF9	 Pseudouridine synthase	0.000311405524832
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M3J2	 Beta lactamase domain protein	0.000311325024147
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5NYZ2	 Nitrate proton symporter	0.000311218341491
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M4YVY9	 Peptidyl prolyl cis trans isomerase	0.000311204010954
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J2YBX6	 Endonuclease exonuclease phosphatase family protein	0.000311186166688
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R5FYT2	 Riboflavin synthase alpha subunit	0.00031113962175
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MPM1	 Methyl accepting chemotaxis protein	0.000311138720833
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RU88	 RND transporter	0.000311134717689
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K0C8T6	 Oxidoreductase, short chain dehydrogenase reductase family	0.00031111081351
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1A9J0	 YcaI	0.000311041951323
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F2K6Q0		0.000311008549781
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A1SHI2	 Glycosyl transferase, family 4	0.000310954602736
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C4Z2L9		0.000310776822044
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A4VSZ3	 Predicted transcriptional regulator	0.000310660207847
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JIW3	 Enoyl CoA hydratase carnithine racemase	0.000310660207847
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_J5IRB2		0.000310660207847
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RSS9	 Pseudouridine synthase	0.000310660207847
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9TJK4		0.000310660207847
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MNB3		0.000310660207847
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W5WYX4	 Alkaline phosphatase	0.000310445575774
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VH52	 Aminotransferase	0.000310435697603
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D6XNE0	 Molybdenum cofactor synthesis domain containing protein	0.000310291281127
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A0K2M1	 Chromosome segregation ATPase	0.000310237764757
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S183	 Alkaline phosphatase	0.000310163662448
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2D9	 Helix turn helix domain containing protein, AraC type	0.000310146248201
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MMC4	 Amine oxidase, flavin containing	0.00031009773303
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0ESN2	 Outer membrane protein 33	0.000309906483997
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8RQ15	 Type IV secretion protein Rhs	0.000307712723541
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_F4D682	 Sel1 repeat protein	0.000309707262429
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1Q8C1	 Sec independent protein translocase protein TatC	0.000309707262429
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DXK1		0.000309707262429
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYE3	 UPF0173 metal dependent hydrolase DR_0006	0.000309707262429
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1PXL5	 Sensor histidine kinase	0.000309682730079
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G2JI43		0.000309619155619
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M5P7	 Cell wall binding repeat containing protein	0.000309612707254
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K3C1	 Phosphoglucomutase  phosphomannomutase family protein	0.000309528326349
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6FYU5	 Had superfamily subfamily ib, pspase like protein	0.000309470120568
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6KNU0	 Glycosyl transferase	0.000309464468865
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VFK8	 Biotin carboxylase	0.000309356490824
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VR36	 Anchored repeat type ABC transporter, permease subunit	0.000309109929686
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SWK1	 MmpL domain containing protein	0.000308992007725
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q01725	 Lipase chaperone	0.000308965899873
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ARY8	 Type A flavoprotein fprA	0.000308950253778
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5V8K7	 Thiamine monophosphate kinase	0.000308845011745
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F8FB46	 Iron ABC transporter permease	0.000308812731112
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYR4	 Cupin 2, conserved barrel domain protein	0.000308760145413
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_P37538		0.000308760145413
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46919		0.000308760145413
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N0K2	 FeS cluster assembly protein SufD	0.000308743762589
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P14789	 Protease LasA	0.00030862045946
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U4V1		0.000251789397097
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D4Z726	 3 oxoadipate CoA transferase alpha subunit LinG	0.00016497478358
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D4Z726	 3 oxoadipate CoA transferase alpha subunit LinG	0.000143619584
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6GNA7	 Peptidoglycan binding LysM	0.000308577318693
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A7P4	 Riboflavin biosynthesis protein RibF 	0.000308533093638
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M4YYK2	 Two component response regulator	0.000308517010447
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7FMV8	 Iron sulfur cluster repair protein YtfE	0.000308334751855
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D5UF49	 Zn dependent hydrolase, glyoxylase	0.000308289474466
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W8WRJ5	 Ribulose 5 phosphate 3 epimerase	0.000308288755881
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SWF2		0.000308203590299
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWE1	 Multi sensor hybrid histidine kinase	0.000308101564362
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZMY3	 RNA polymerase sigma factor RpoD	0.000308028731077
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4RCI7	 Fatty acid desaturase	0.000307931638925
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q93K67	 Arginine deiminase	0.000298454932773
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9FP56		0.00030783668702
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4BS97	 PTS system, lactose cellobiose family IIC subunit	0.000178553690672
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F4BS97	 PTS system, lactose cellobiose family IIC subunit	0.000129276014789
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JPC9	 NUDIX domain protein	0.000307818803509
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MK77	 HAD hydrolase, IIB family	0.000307818803509
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q00514	 Type II secretion system protein G	0.000307818803509
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R5Q1Z9		0.000307818803509
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EEE7	 Fimbrial family protein	0.000307818803509
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q8NWR3	 Truncated transposase	0.000289296755161
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O94524	 Glutathione S transferase omega like 2	0.000294533468202
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M192	 Flagellar hook capping protein	0.00030769591491
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EKM2	 Fic DOC family protein	0.000307667714436
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZI95	 Permease	0.000307659966809
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MD21	 Lytic transglycosylase catalytic	0.000307614169503
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A4W7D6	 D galactonate dehydratase family member Ent638_0932	0.000307603933018
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U922		0.00030755439125
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZEH6	 Putative major facilitator superfamily transporter	0.000307506908573
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K0AWK4	 Signal transduction response regulator	0.000156534213258
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K0AWK4	 Signal transduction response regulator	0.000150918636099
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H6LCQ4	 Branched chain amino acid ABC transport system permease protein LivM2	0.000307422498055
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E096		0.000307421501989
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2T7	 Abortive infection protein	0.000307406668658
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI00037460BA	 hypothetical protein	0.000307338951147
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JJQ0	 Iron ABC transporter membrane protein	0.000307180683574
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TW93	 Transposase	0.000186971421396
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5BFM6	 Beta hexosaminidase	0.000171126385676
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C5BFM6	 Beta hexosaminidase	0.00011552010017
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q72J47	 Ribose 5 phosphate isomerase A	0.00030716696465
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q899J0	 PUR operon repressor	0.000307094485236
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023NXY2	 Phosphotyrosine protein phosphatase	0.000306883184045
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WPH3		0.000306883184045
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZNH9	 UPF0265 protein YeeX	0.000306883184045
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S738		0.000306883184045
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0X640	 DnaJ domain protein	0.000306883184045
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0KDG3	 Methionine import ATP binding protein MetN	0.000301087773998
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0K2	 Glycoside hydrolase, family 3 domain protein	0.00030659979909
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YS91		0.00027909960609
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_H8H8S2	 ABC transport system permease	0.000306441017617
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9STR3		0.000306435956051
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXY2	 Diguanylate cyclase phosphodiesterase with PAS PAC sensor	0.000306360888663
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6SKM6		0.000306122312681
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYE9		0.000306107485832
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX94	 Beta and gamma crystallin	0.000306091391656
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1LF13	 membrane component of ABC superfamily binding protein dependent transport systems inner membrane component	0.000305996485387
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A3W611	 Succinyl CoA ligase [ADP forming] subunit alpha	0.000305953235003
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2UXE1		0.000305953235003
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KU74	 Gas vesicle K	0.000305953235003
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P15905	 Arsenical resistance operon repressor	0.000305953235003
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J275	 Transcriptional regulator, Crp Fnr family	0.000305953235003
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9B1J3	 Sorbitol 6 phosphate 2 dehydrogenase	0.000305953235003
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0V0Z7		0.000305953235003
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E6K041	 GTPase HflX	0.000305950261758
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W4UBC8		0.000283608335813
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S9E849	 Neutral zinc metallopeptidase	0.000305831531889
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M9S8	 UvrD REP helicase	0.000305785268006
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A4XGW8		0.000305726693099
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AAY2		0.000305565968816
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7WJI7	 Argininosuccinate lyase	0.000279869219511
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIZ2	 ABC transporter related	0.000305464048982
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DXI0	 Prophage LambdaSa2, DNA replication protein DnaC, putative	0.000305394686355
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M095	 Pentapeptide repeat protein	0.000305379213928
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2W5	 PTS system, glucose subfamily, IIA subunit	0.000305194169885
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q9RDF2	 GTPase Era	0.000305134887267
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0B1	 PAS PAC sensor signal transduction histidine kinase	0.000305129130116
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9F149	 Hemolysin F	0.000305124360328
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0Q0M8	 tRNA dimethylallyltransferase	0.000300405286386
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A0A023VI21	 GntR family transcriptional regulator	0.000305028904993
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNZ0	 Predicted regulatory protein, amino acid binding ACT domain family	0.000305028904993
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C1FK14	 Transcriptional regulator, PadR family	0.000305028904993
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M9L8	 RNA polymerase sigma factor, sigma 70 family	0.000305028904993
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T6QCZ1	 Acetoacetate metabolism regulatory protein AtoC	0.000305028904993
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI00037F2486	 hypothetical protein	0.000305028904993
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5CNW9	 Alkanesulfonate monooxygenase	0.000178625219666
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C5CNW9	 Alkanesulfonate monooxygenase	9.80238519906e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LG80		0.000304874698427
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYZ6	 Phosphate binding protein	0.000304827630946
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8FYF1	 Amino acid permease associated region	0.000304763542465
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5Q9B1	 Glycyl tRNA synthetase beta chain	0.000304636899973
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A3PXZ4	 Uridylate kinase	0.000285867873383
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4R5V1		0.000304582713198
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S6T7	 Glycosyltransferase, group 1 family protein	0.000304574637315
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TS40	 Protein MurJ homolog	0.000304323596097
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6S6X2	 Gamma glutamyltranspeptidase	0.000304158218861
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1G914	 Transcriptional regulator CsgD for 2nd curli operon	0.000304110143229
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M6B2		0.000303938556865
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P52642	 UDP N acetylglucosamine 2 epimerase	0.00029876853709
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W4TSQ5		0.000303802293893
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_G2M640		0.000303766995892
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O26091	 RlpA like lipoprotein	0.000303739302049
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MQF5	 Response regulator receiver protein	0.000303728453153
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A7IIB6	 Dihydrodipicolinate synthetase	0.000303674457192
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MCG2	 7TM receptor with intracellular metal dependent phosphohydrolase	0.000303672826584
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G4E2Y7	 ATP dependent chaperone ClpB	0.000215889812972
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_G4E2Y7	 ATP dependent chaperone ClpB	8.77486054427e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B5SHS9	 Fad dependent oxidoreductase protein	0.000303595394989
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U1XA26	 Transcriptional regulator, GntR family	0.000303571168682
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HD90		0.000303563312508
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1M081	 DNA mismatch repair protein MutS	0.000303528172931
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A3PWR0	 Nitric oxide reductase, NorZ apoprotein	0.000303521852034
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWF3	 Diguanylate cyclase phosphodiesterase	0.000303487379197
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1W8	 Chemotaxis histidine protein kinase, CheA3	0.000303412774166
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A4B0		0.000303399440503
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5YAM0	 Glycogen debranching enzyme GlgX	0.000303361075916
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8FYN5	 CoA activase	0.00030320149237
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MC17	 Universal protein YeaZ	0.000303196899553
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P00632	 3 oxoadipate enol lactonase 2	0.000303196899553
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8G2V2	 MerR family transcriptional regulator	0.000303196899553
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MCB5	 PTS system, lactose cellobiose family IIC subunit	0.000303182761817
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M4YX25	 Potassium uptake protein	0.000303128679339
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0Z408		0.000201929135102
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V4R0	 3 oxoacyl [acyl carrier protein] synthase 3	0.000302771061215
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6W8	 NADH dehydrogenase 	0.000302728421132
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B2UUB5		0.000302680233248
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W0NHP5	 Transposase	0.000287648340601
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8GWW7	 Agmatine deiminase	0.00030248676978
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HYT3		0.000302360959135
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TL50	 CoA transferase, A subunit	0.0003022891244
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AE71	 mRNA interferase MazF	0.0003022891244
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q8FEA5	 Transposase	0.0003022891244
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_UPI00031D053D	 hypothetical protein	0.0003022891244
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V5WXJ2	 Alpha beta hydrolase	0.000302089410841
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6AC49	 Phenazine specific methyltransferase PhzM	0.000302088201094
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6U1U1	 Cys Met metabolism pyridoxal phosphate dependent protein	0.000302084124316
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D7I331	 Phenylalanine hydroxylase transcriptional activator PhhR	0.000301714736753
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0W629		0.000301698486799
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V147	 Tetraacyldisaccharide 4 kinase	0.000301686131027
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MW43	 Methyl accepting chemotaxis protein signaling domain protein	0.000301640165242
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HC17	 TOBE domain protein	0.000301386768813
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YWF9		0.000301386768813
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_L5R254	 Replication initiation factor domain protein 	0.000301386768813
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4R3U4	 Metal dependent hydrolase	0.000301386768813
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5Y8U0	 Glyoxalase bleomycin resistance protein dioxygenase	0.000301386768813
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI0002B8E40E	 hypothetical protein, partial	0.000301386768813
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCV0	 FAD linked oxidase, C terminal domain protein	0.000301300299678
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P54388	 NADP specific glutamate dehydrogenase	0.000288264289939
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4EEY8	 ATP synthase gamma chain	0.000301249057131
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R5A014	 Muramoyltetrapeptide carboxypeptidase	0.000301222941747
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G9F1Y9	 2 enoate reductase FldZ	0.000301210415931
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RXS3	 Magnesium transporter	0.000301204360541
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q17WZ6	 UDP N acetylglucosamine 1 carboxyvinyltransferase	0.00029643654453
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G9AF02	 Plasmid pSfHH103e complete sequence	0.000301108813964
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9ACF0	 Secretion protein HlyD family protein	0.000301099564842
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4PRA1	 Cytochrome D ubiquinol oxidase, subunit II	0.00030102265994
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S0AE89	 Allophanate hydrolase AtzF	0.000300998731216
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AT40	 Transcriptional regulator, AraC family	0.000300967332447
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A009UCL1	 Phenylalanine  tRNA ligase beta subunit	0.000300953604194
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MJB2		0.000300908643854
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C6D021	 Uronate isomerase	0.000300863222338
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0VQQ9	 Acetyltransferase, GNAT family, putative	0.000300721699315
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J9U6I9	 Serine aspartate repeat containing protein D	0.000300681146967
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F5HTK1	 Alcaligin biosynthesis enzyme family protein	0.000300643402413
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FAM5	 Bifunctional uridylyltransferase uridylyl removing enzyme	0.000300580480638
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F2N901	 Oxidoreductase domain protein	0.000300537841212
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E4HVL3	 YD repeat protein 	0.000300489784379
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_F6D6D0	 Peptidyl tRNA hydrolase	0.000300489784379
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PTK0	 Thioredoxin like fold protein	0.000300489784379
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75977		0.000300489784379
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02IM9		0.000300489784379
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZLT4	 CAG pathogenicity island protein 23	0.000300362042817
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4SRG0	 ABC type antimicrobial peptide transporter, permease component	0.0003003062564
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRI3	 Medium chain fatty acid  CoA ligase	0.000300279433658
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M047	 Enoyl CoA hydratase isomerase	0.000300137751434
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q81WF1	 Carbamoyl phosphate synthase small chain	0.000300046900053
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MSM7	 Metallophosphoesterase	0.000299966811303
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G0HG32	 Short chain dehydrogenase	0.000299840537977
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YP88	 Acetylpolyamine aminohydrolase	0.000299783609924
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F5XM79		0.000299731928676
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZK1	 S methyl 5 thioinosine phosphorylase	0.000299689214444
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Y6EQN4	 Serine rich adhesin for platelets	0.000299675568104
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_H1Y7F7	 NAD dependent protein deacylase	0.000299604058979
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0K5A8		0.000299598123293
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8DMU1	 Maltose phosphorylase   Trehalose phosphorylase	0.000299598123293
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADP3		0.000299598123293
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZTB7	 Polysaccharide deacetylase	0.000299598123293
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R9NUS0	 RNA binding protein YhbY	0.000299598123293
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVF5		0.000299570606783
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q897S6	 S1 RNA binding domain	0.00029948565666
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O26010	 Phosphopantetheine adenylyltransferase	0.000253679817971
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S0H1	 ABC transporter, ATP binding protein	0.000299368494912
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DSM5	 Phosphotransferase enzyme family protein	0.000299334054434
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IZL3	 LmbE like protein protein	0.00029923598024
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S4XY12		0.000299222610704
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B8ET52	 Major facilitator superfamily MFS_1	0.00029920906559
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VEM4	 Glycosyl transferase	0.000299156457013
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G2AIF5	 Ulp1 protease family, C terminal catalytic domain protein	0.00029909326538
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_U5WUM2	 Zinc binding dehydrogenase	0.000299085766014
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V846	 Membrane protein, putative	0.000299024745019
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B4EH82	 Catalase related peroxidase	0.000299005087268
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C9LYG0	 Lipoprotein	0.00024994330606
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E2Q3I4	 Flavoprotein disulfide reductase	0.000298902745715
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A1SJC3	 Oligopeptide dipeptide ABC transporter, ATPase subunit	0.00029889404055
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M1Y8	 UPF0761 membrane protein NMCC_0461	0.000298823516113
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A0JXX3	 D alanine  D alanine ligase	0.000293370351376
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YRT6	 Putative phosphatase	0.000298816054761
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q166G1	 Oligopeptide ABC transporter, permease protein, putative	0.000298815290631
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H6NGS7	 Glutamine ABC transporter substrate binding protein	0.000298795561347
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X6XZ89		0.000298753579088
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A029NJF0	 ABC transporter family protein	0.000298711738321
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZT19	 Nickel responsive regulator	0.000298711738321
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V019		0.000298711738321
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UV48	 Bacteriohemerythrin	0.000298711738321
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8LGC3	 Phosphoribosylglycinamide  formyltransferase	0.000298711738321
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K1G4	 CylZ protein	0.000298711738321
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9BPF6	 Thiolase	0.000298668634175
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P0A0S5	 Cell division protein FtsZ	0.000298349274706
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9JSW9	 Altronate oxidoreductase	0.000298288167143
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JJE0		0.00029828579066
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ12	 Male sterility C terminal domain	0.00029828373703
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GIQ6		0.00029827116053
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VIA8	 DNA topoisomerase IV subunit B	0.000298255617146
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0C8G2	 Alpha L glutamate ligase like protein	0.000298209347407
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2T3	 Phosphotransferase system, EIIC	0.000298188935905
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97M68	 Prolipoprotein diacylglyceryl transferase	0.00028989065722
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P65931	 Uridylate kinase	0.000281042773681
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A038GEF1		0.000297978433142
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D7HWN3	 TorCAD operon transcriptional regulatory protein torR	0.000297877678742
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L8DV59	 Pyrimidine nucleoside phosphorylase	0.000297830582749
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q8D5H0	 GlpM protein	0.000297830582749
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RY41	 Putative GTP cyclohydrolase 1 type 2	0.000297830582749
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1JWY6	 Antitoxin PrlF	0.000297830582749
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1T644	 Fructoselysine transporter	0.000297830582749
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P32014	 Capsule polysaccharide export inner membrane protein CtrB	0.000297809219242
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P45499	 Cell division protein FtsZ	0.000297806188185
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WRH7		0.000267102030558
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LZX2		0.000297696823012
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MM75	 Penicillin binding protein 2	0.000297695469754
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A4XID9	 Type II secretion system protein E	0.000297551233529
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1JFT3	 Transcriptional regulator, AraC family	0.000297522595586
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4GHR3	 Glutamate synthase 	0.000297498802236
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_T3GIH5	 AAA domain family protein	0.00029719379796
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9YLQ5	 LXG domain of WXG superfamily protein	0.000297138509036
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023LEN6		0.000225871515772
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N1SEI4	 EamA like transporter family protein	0.000296954610446
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J224	 Phage related protein, putative DNA packing	0.000296954610446
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MPA0		0.000296954610446
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MXZ6	 Exonuclease, DNA polymerase III, epsilon subunit	0.000296938625069
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B3RC83	 Mannose 1 phosphate guanyltransferase, colanic acid synthesis	0.000296891803124
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8FZ21	 Acyl CoA synthetase	0.000296703696281
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU83	 1 acyl sn glycerol 3 phosphate acyltransferase	0.000296519193125
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I2BZM7	 Transcriptional regulator, AraC family	0.000296468431008
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VLT1	 Tryptophanase L cysteine desulfhydrase, PLP dependent	0.000296388809714
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUC8	 40 residue YVTN family beta propeller repeat protein	0.000296373070792
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88A72	 Fic family protein	0.000296263495996
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RRT6	 Kinase domain containing protein	0.000296124273894
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9RTB4	 C4 dicarboxylate transport transcriptional regulatory protein dctD	0.00029608897551
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K0HAG9		0.000296084412376
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8V8M1	 Membrane spanning protein	0.000296083775805
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5MYM8		0.00029607791668
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0TM34	 Pyridine nucleotide disulphide oxidoreductase	0.000296059750105
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR96	 Radical SAM domain protein	0.000296021892643
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F6BYP3	 Soluble epoxide hydrolase	0.000296015778218
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSG6	 Penicillin binding protein, transpeptidase	0.000295890993262
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M1F6	 Multi sensor signal transduction histidine kinase	0.000295859530754
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_W4KSI3	 PcsB protein	0.000295840253771
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DX40	 Transcriptional regulator, Cro CI family	0.000295754856607
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_O83349	 Serine hydroxymethyltransferase	0.000292844065783
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEK2	 3 oxoacyl [acyl carrier protein] reductase FabG	0.000287648340601
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_G8N5W7	 Inner membrane translocator	0.00029560934627
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RYQ0		0.000295603515799
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3QBC5	  S malonyltransferase	0.000295547451558
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WQF1	 Homocysteine S methyltransferase	0.000295498702351
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5E9L1	 Sensor response regulator hybrid	0.000295440077335
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5HY11	 Spore coat protein	0.000295429533555
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S4J7		0.000206258636928
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CP44	 Kef type K+ transport systems, predicted NAD binding component	0.000295287683325
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V6USS0	 Leucyl tRNA synthetase 	0.000295267913504
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VLI0		0.000295218033777
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C2V3W1	 Flavodoxin	0.000295218033777
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AD22		0.000295218033777
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RV93		0.000295218033777
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWK1		0.000295218033777
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K612	 EamA like transporter family	0.000295218033777
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R5WJ16	 Phenylacetate CoA oxygenase reductase PaaK subunit	0.000295218033777
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0H1T2		0.000295218033777
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_U7IPA8		0.000228944597617
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FEG1	 Kinase sensor component of a two component signal transduction system	0.000295179515208
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4Y0B0		0.00026550361452
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q2J728	 Translation initiation factor IF 2	0.000294944254247
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WS74		0.000294873051318
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYB4		0.000294847854419
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WY87		0.000286790764214
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YXY3	 Phosphate binding protein PstS	0.000294687106722
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7ZDR3	 Epoxyqueuosine reductase	0.000286356512781
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RT21	 Trigger factor	0.000294536322117
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RK93		0.000294426497888
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UZC7		0.000294357339795
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4RDX0	 Lipopolysaccharide core biosynthesis glycosyl transferase LpsC	0.000294357339795
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VF55		0.000294357339795
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VQH6	 MarR family transcriptional regulator	0.000294357339795
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8PQ32	 Iron sulfur cluster insertion protein ErpA	0.000294357339795
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MZT7		0.000294357339795
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YTN7	 Mosc domain containing protein	0.000294357339795
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_C5ZYT0	 Flagellar biosynthetic protein fliR	0.000294139381959
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJR1	 Cobalamin biosynthesis protein CobW	0.00029409909016
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1T4H0	 RND efflux system, outer membrane lipoprotein, NodT family	0.000293934508778
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5I0L6	 Cyclic nucleotide binding domain protein	0.000293928872057
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0A4V1	 N acylneuraminate cytidylyltransferase	0.000284584372868
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY61	 AAA ATPase	0.000293869529951
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V6C9	 Extracellular serine proteinase	0.000293865130582
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I5ATZ1	 Glycerate kinase	0.00029386447619
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q6YPY6	 Lysine  tRNA ligase	0.000290840239286
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSY8	 Glutamate 1 semialdehyde 2,1 aminomutase	0.000290607817933
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MIH5	 Methionine  tRNA ligase MetG	0.000293561946485
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S0W1	 Short chain dehydrogenase	0.000293501649859
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9SCU9		0.000293501649859
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADI8		0.000293501649859
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NEP1	 Translation initiation factor 1A	0.000293501649859
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V4V1N3		0.000293501649859
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5VY78	 Membrane protein like protein	0.000293288658824
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R9WF85	 Oxidoreductase	0.00029286790581
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_K9ZXB7	 CBS domain containing protein	0.000292844421259
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P71103	 Phosphate acetyltransferase	0.000283952478358
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNR9		0.000292650920434
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V2X6	 Fucose binding lectin PA IIL	0.000292650920434
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B8D9T1	 50S ribosomal protein L18	0.000292650920434
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R2A2		0.000292650920434
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q3V7G7	 Alanine racemase	0.000292650920434
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A6F2	 Ubiquinone menaquinone biosynthesis methyltransferase UbiE	0.000292650920434
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WW42	 Inner membrane translocator	0.000292541023067
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MTY5	 Alanine racemase	0.000292528774813
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0ETN8		0.000292445354232
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YJM1	 Putative TonB dependent receptor	0.000292436396131
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AU54	 Ribosomal RNA small subunit methyltransferase B 2	0.000292202207544
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D7FGF4	 Type I restriction enzyme, R subunit	0.000292193642619
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RX33	 B cell receptor associated protein related protein	0.000292110039313
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTQ4	 D isomer specific 2 hydroxyacid dehydrogenase, NAD binding	0.000292096899471
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H2JCD9		0.000292087111744
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZK9	 Methyl accepting chemotaxis sensory transducer	0.000291966781657
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVF4		0.000291895192872
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVZ7	 Ribose 5 phosphate isomerase A	0.000291834970688
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5B8V8	 UDP 2,3 diacylglucosamine hydrolase	0.000291825813605
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TRK3		0.000291811919306
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HAD1		0.000291805108529
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TQK8	 Amino acid ABC transporter, amino acid binding permease protein	0.000291805108529
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I1B6E2		0.000291805108529
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I3E9		0.000291805108529
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K3G7	 Chaperonin, 33 kDa	0.000291805108529
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I2FD14	 UDP glucose 4 epimerase	0.000291743478273
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I4B854	 Pirin domain protein	0.000291662234892
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_D1DJP5	 Phage repressor protein	0.000291661471903
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48P72	 Acyl CoA dehydrogenase family protein	0.00029162870154
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V8EDP8		0.000119484695331
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1UG51	 Spermidine putrescine import ATP binding protein PotA	0.000189961725118
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8P9C7		0.000291244108683
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P9WGZ8	 Ribonuclease J	0.000291204789223
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6AND4	 Transcriptional regulator, LysR family	0.000291203525965
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HVG0		0.000290978345962
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O06997		0.000290973470989
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZJG7	 Crossover junction endodeoxyribonuclease RusA	0.000290964171617
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB47		0.000290964171617
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88YG1	 Uracil DNA glycosylase	0.000290964171617
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P50487	 Putative purine permease CPE0397	0.000290927106868
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MHJ0	 Multidrug resistance protein MdtC	0.00029087249688
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7HVE6	 Pyrroline 5 carboxylate reductase	0.00029082588265
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MJ06	 Diguanylate cyclase  domain containing protein	0.000290727015076
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P56344	 Probable sulfate thiosulfate import ATP binding protein CysA	0.000143824170301
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S778	 Two component sensor	0.000290520777722
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRW3	 Phage major capsid protein, HK97 family	0.00029039514219
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V436	 TPR repeat containing protein	0.000275261850828
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A2SLW6		0.000290128067677
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV09	 Bacterocin transport accessory protein	0.000290128067677
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SQ52		0.000290128067677
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCV7	 ABC transporter, ATP binding protein	0.000290128067677
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I7A5B6		0.000290128067677
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O34947		0.000290128067677
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1F0X0	 DNA repair protein RadC	0.000290128067677
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5J6V4		0.000289688630704
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VNY9	 Trehalose 6 phosphate phosphatase	0.000289625922944
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VR08	 PAP2 family protein DedA family protein	0.000289492426654
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MYZ3	 Methyl accepting chemotaxis protein TlpC	0.000289441984726
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q2JEW7	 Peptide chain release factor 2	0.000289346487551
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AB53	 Protein YchN	0.000289296755161
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q7MXJ4	 Isoprenyl transferase	0.000289296755161
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W6RVE8		0.000289296755161
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q3K022	 GTPase Era	0.000289283253382
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VUD5	 High frequency lysogenization protein HflD homolog	0.000289262985664
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VB53	 Amino acid permease	0.000289261347806
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G8LP59	 YdiK	0.000289233029769
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCC8	 ABC transporter, permease protein	0.000289212903038
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8I813	 Energy coupling factor transporter transmembrane protein EcfT	0.000289173675719
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MMX2	 Type IV pilus assembly protein PilO	0.000289128271196
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSE2		0.000289080619322
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9R109	 Octaprenyl diphosphate synthase IspB	0.000289047463255
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M5ABV3	 Beta glucuronidase	0.000288980367423
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U900	 Iron chelate uptake ABC transporter, FeCT family, permease protein	0.0002889313245
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6SI27	 MATE family multi antimicrobial extrusion protein	0.000288853287048
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q7MN70	 Phosphoribosylformylglycinamidine synthase	0.000172485336507
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7MN70	 Phosphoribosylformylglycinamidine synthase	0.000107187285727
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VCR0		0.000288694711856
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F2J364	 ABC type cobalt transport system permease component CbiQ and related transporter like protein	0.000288677717883
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4XWS9	H+ symporter family	0.000288617696487
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5UAJ8		0.000288497726339
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VE46		0.000288470192999
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T7QYR2	 Multiphosphoryl transfer protein	0.000288470192999
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F7ZSI9	 Serine protein kinase , prkA protein	0.000288443201364
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPJ7	 PpiC type peptidyl prolyl cis trans isomerase	0.000288383217062
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K2Q9		0.000288353249577
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UZZ9		0.000288126646388
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QCD5		0.000122827941063
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KI93		0.000288089370491
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E0RHV7	 Predicted transcriptional regulator	0.00028807159991
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7N4H0	 Pyridine nucleotide disulfide oxidoreductase	0.000288063281621
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DYP3	 Ammonium transporter family protein	0.000287973357751
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8RSD6	 LysR family transcriptional regulator	0.000287906638153
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXP7	 Proton translocating NADH quinone oxidoreductase, chain L	0.000287875258659
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6FZX0	 Helicase domain protein	0.000287806751564
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9K107	 L aspartate oxidase	0.000284362013956
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYT5		0.000287648340601
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KPB5	 Response regulator receiver and SARP domain protein	0.000287648340601
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWR4		0.000287648340601
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DUV4		0.000287648340601
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4VHT7	 Integrase core domain protein	0.000287648340601
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9UUF2	 Ecotin	0.000287648340601
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_I6TRJ5	 Arsenate reductase	0.000287648340601
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P57021	 Bactoprenol linked glucose translocase	0.000287648340601
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E0SZL8	 Transposase like protein, IS1381 ISSpn7	0.000260217957603
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M532		0.000287563366519
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LW15	 ROK family protein	0.000287549268392
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A7E7	 Trigger factor	0.00028753317569
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C6DKA6	 Phosphonate metabolism protein PhnP	0.000287520749355
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F7X4C7	 Delta aminolevulinic acid dehydratase	0.000287419859219
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D3R7P0	 Queuine tRNA ribosyltransferase	0.000287404713564
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S9JY72		0.000287379261972
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5YZZ5	 Ethanolamine utilization cobalamin adenosyltransferase	0.000287239168
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZB4	 First mannosyl transferase	0.000287171465473
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9LAR1	 ABC transporter substrate binding protein	0.000287096525421
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1A3	 MotA TolQ ExbB proton channel	0.000286979390974
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7UA75	 Periplasmic solute binding family protein	0.000286894892072
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FEE9		0.000286847351855
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1Y7Y2	 Lipoprotein	0.000286831157815
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M8Y530	 3 deoxy 7 phosphoheptulonate synthase 	0.000286831157815
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2RQ37		0.000286831157815
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P03038	 Tetracycline repressor protein class A from transposon 1721	0.000286831157815
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I5Z5		0.000286831157815
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YRW0		0.00028683000281
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P45867	 Acyl CoA dehydrogenase	0.000267102030558
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2F6	 TraB protein	0.000286712548619
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ07	 Abortive infection protein	0.000286661091472
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FFH7		0.00028663119654
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M906	 Molybdenum cofactor synthesis domain protein	0.000286628506389
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HEQ0	 Phosphofructokinase	0.000286582802577
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1J6F0	protein N octanoyltransferase	0.0002865098476
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_A1KD90	 Clumping factor B 	0.000224365705667
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A026RF42	 Diguanylate cyclase	0.000286338554486
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KFX0	 Riboflavin biosynthesis protein RibD	0.000286242330448
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1VHP1	 Ribosomal RNA small subunit methyltransferase E	0.000286221455034
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T2Q4	 Diguanylate cyclase	0.000286214000537
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RJU8	 Tpc	0.000286147531049
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TRH5	 Stage 0 sporulation protein J	0.000286081502282
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4X0F8		0.000286018604961
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1V6	 Transposase and inactivated derivatives	0.000286018604961
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QJK0	 Truncated transposase for IS1272	0.000286018604961
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JEL1		0.000286018604961
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B4T6		0.000195289298939
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZRH0		0.000285851023658
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J7MBF6		0.000285712850185
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9V9W9		0.000285614052478
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV05	 Exonuclease, RNase T and DNA polymerase III	0.000285575315988
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E4DG75	 Helicase C terminal domain protein	0.000285472094115
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8H074	 Phosphoglucomutase phosphomannomutase alpha beta alpha domain I	0.000285410622828
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U623	 Major facilitator superfamily permease	0.000285349615291
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TMC8		0.000285210642804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5F3L0	 Protein YebF	0.000285210642804
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KNU0	 Helicase	0.000285210642804
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6G6F1	 Arsenate reductase with thioredoxin like domain	0.000285210642804
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L4K168	 Antigen 43	0.000285210642804
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVR0		0.000285210642804
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P32929	 Cystathionine gamma lyase	0.000256750502372
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MPB4	 ABC 2 family transporter protein	0.000284865040241
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K073	 Sugar binding transcriptional regulator, LacI family	0.000284864893721
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M531		0.000284840337805
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HTN3		0.000284826351315
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U8F4		0.000284822536258
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSN4	 Ribonuclease HII	0.000284808371091
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GFL7	 Cytochrome P450	0.000284763877389
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTU8		0.000213311163287
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VDE6		0.000284645008482
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYR4		0.000284622124015
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B8JAU2	 Peptide chain release factor 1	0.00028451305071
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q53591	 Hyaluronate lyase	0.000266757989009
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4YXJ9	 Cobyric acid synthase	0.000284462450207
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UMA3	 Predicted transcriptional regulator, ArsR family	0.000284407232543
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E4RH84		0.000284407232543
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K0JJB0		0.000284407232543
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M1GCT3	 Peptidyl prolyl cis trans isomerase	0.000284407232543
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N1R7		0.000284407232543
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P24162	 Probable enoyl CoA hydratase	0.000284407232543
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D5EG65	 ABC transporter related protein	0.00028438084822
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2T517	 Phenylacetaldehyde dehydrogenase	0.000274959643331
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VBZ1		0.000279577508967
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VE92	 MFS transporter	0.000284292707728
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_L0IJZ9	 Beta glucosidase like glycosyl hydrolase	0.000284200351803
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWT3		0.000284186263106
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q3K1I5	 ATP dependent helicase deoxyribonuclease subunit B	0.000269710199415
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SVX2	 Ion transport 2 domain protein	0.00028409721258
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_H0JGT1		0.000284091740633
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q5E4V6	 Ribose import ATP binding protein RbsA	0.000284074406299
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F5YLA3	 Ferric enterobactin transport ATP binding protein FepC	0.000284060454672
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5RTQ1	 MIP family channel protein	0.000284007222366
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V8KXW0	 Integrase	0.000284007222366
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VB20		0.000283994100516
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q48K66	 Branched chain amino acid transport system II carrier protein	0.000283979196066
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W6RRV7	 Magnesium transporter, CorA family	0.000283733148535
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5N518	 Fatty acid oxidation complex subunit alpha	0.000283628385408
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_C7BZT5	 Cytoplasmic pump proteins of the hefABC efflux system	0.000283612424333
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTL9	 CBS domain containing protein	0.000283608335813
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZF2	 PhnB protein	0.000283608335813
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D3H4R6		0.000283608335813
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M4Y7		0.000283608335813
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5DY13	 Lateral flagellar rod protein 	0.000283608335813
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R0FR27	 Transposase	0.000283608335813
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JGS2	 ABC type dipeptide transport system, periplasmic component	0.000283577636507
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E0D539	 Transposase, putative	0.000260890355433
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9DX48		0.000283443402913
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JDJ5	 Metal dependent hydrolase	0.000283406043145
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSJ0		0.000283396934314
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W9TVT0	 Component of chemotactic signal transduction system	0.000283204424405
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MKI7	 Subtilisin like serine protease	0.000283185676497
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S5RI26	 Bacitracin export permease protein BceB	0.000283112114753
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZ67	 P protein	0.000255146136431
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q3JZG9	 DNA polymerase IV	0.000283023360406
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M517		0.000282813914711
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7RAK2		0.000282813914711
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76297	 Flagellar protein FlhE	0.000282813914711
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6FT63	 Superoxide dismutase	0.000282813914711
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SQN8	 2 deoxy D gluconate 3 dehydrogenase	0.000282813914711
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TN34		0.000282744153142
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P96963	 DNA repair protein RadA homolog	0.000282683697639
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VFB1	 ABC transporter	0.000282673231743
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1IMR9	 Integrase	0.000282650685618
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0HTP9	 Sulfate ABC transporter periplasmic sulfate binding protein	0.000282634980509
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MY29	 DnaD like protein	0.000282632751585
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S7B0	 Peptidase dimerization domain containing protein	0.000282377432709
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8MSD7		0.000282320636011
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3K8E9	 23S rRNA  C(5)) methyltransferase RlmD	0.000282318131898
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RNA5	 ATPase AAA 2 domain protein	0.000282317211424
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VJG8	 Lipoprotein	0.000282305679392
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5EFN3	 ATP binding component of ABC transporter	0.000282258523265
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1IK08	 Argininosuccinate synthase	0.000277626085594
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRF3	 Transcriptional regulator, RpiR family	0.000282183322775
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8HG32	 3 oxoacyl [acyl carrier protein] synthase 2	0.000282078903937
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_O31019	 Carbamate kinase	0.000154853631215
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4RDW5	 Glycosyltransferase	0.000282023931709
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P56259		0.000282023931709
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FAE6		0.000282023931709
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8Z292	 Cellulose biosynthesis protein BcsQ	0.000282023931709
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR15	 Heavy metal transport detoxification protein	0.00028189187589
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RZV0		0.000281813577615
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4M1S2	 RNA splicing ligase RtcB	0.00028178232048
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DX72	 Transcriptional regulator, Cro CI family	0.000281761583862
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E0SN31	 Oxidoreductase	0.000281709792179
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25130	 UDP 4 amino 4,6 dideoxy N acetyl beta L altrosamine transaminase	0.000281675394176
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VKB6	 Type II secretion system protein L	0.000281457433766
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M8E1	 Methyl accepting chemotaxis sensory transducer	0.000281415597795
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S035	 Tail fiber protein	0.000281314971509
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q167V2	 Oxidoreductase, putative	0.000281312974148
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M049	 Alcohol dehydrogenase GroES domain protein	0.000281261760941
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AC17	 Dihydroneopterin aldolase	0.000281238349721
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T0U8G3	 ABC transporter membrane spanning permease,Pepexport, Vex3	0.000281141404149
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G8N3T6	 Cadmium transporting ATPase	0.000281123261271
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_UPI00040FB0FE	 ATPase AAA	0.000281076955245
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A9WS85	 Leucine  tRNA ligase	0.000281038827571
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G4Q931		0.000280954837732
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZHQ3	 Membrane protein, putative	0.000280896375118
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87VF3	 Lipid A export ATP binding permease protein MsbA	0.000278384952832
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M8J1	 Methyl accepting chemotaxis sensory transducer	0.000280783542448
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_O24840	 Vanillate O demethylase oxidoreductase	0.000275859474188
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU25	 Peptide ABC transporter, permease protein	0.000280680782115
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6AGQ7	 HemY domain protein	0.000280653373829
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F7ZTM8	 Riboflavin biosynthesis protein RibD	0.000280557479722
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RTE9	 AsnC family transcriptional regulator	0.000280457132089
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9R059		0.000280457132089
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5KQJ1	 Aminotransferase	0.000280457132089
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q04JY7	 Homoserine kinase	0.000280457132089
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28RU3	 Ferric uptake regulator, Fur family	0.000280457132089
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8T950		0.000280457132089
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P24582	 Modification methylase NlaIII	0.000280362415057
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YRR4		0.000280352754777
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MCB1	 Transcriptional regulator, TrmB	0.00028023850091
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A8F8	 Prephenate dehydrogenase	0.000280201815556
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YTG3		0.000279680242525
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0ADL0		0.000279680242525
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FJS4		0.000279680242525
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTJ0		0.000279680242525
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R4HZ48	 23S rRNA  methyltransferase RlmB	0.000279680242525
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5RYU5	 Major facilitator superfamily MFS_1	0.000279501304455
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W8U6I9	 AAA domain containing protein YrvN	0.0002794606163
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M4YYZ9	 N acetylmannosamine kinase	0.000279346849637
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U2K9	 Peptidase C14, caspase catalytic subunit p20	0.000279283120762
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D3P5L7	 2,4 dienoyl CoA reductase 	0.000279264710681
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_X5HG80	 Long chain fatty acid ABC transporter	0.000279258106568
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DX35	 Beta D glucuronidase	0.0002792480016
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYV1	 Response regulator receiver sensor signal transduction histidine kinase	0.000279181425645
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T6X9		0.000279166243603
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q2SFK9	 Fatty acid desaturase	0.000279103813616
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8H8U4	 Molybdopterin oxidoreductase, alpha subunit	0.000278958166342
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY45		0.000278907645166
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7I7I0		0.000278907645166
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AAU8		0.000278907645166
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8PC99	 Release factor glutamine methyltransferase	0.000278907645166
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZP9	 Precorrin 4 C methyltransferase	0.000278907645166
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U8S1P7	 Alkane 1 monooxygenase 2	0.000278907645166
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8RA66	 Tyrosine recombinase XerC	0.000278859798522
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UY15		0.000278791205759
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LZV6	 Xenobiotic transporting ATPase	0.000278761639144
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V4ITY3	solute symporter	0.000278755005742
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P22033	 Methylmalonyl CoA mutase, mitochondrial	0.000214494008579
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2K1F3		0.000278654649708
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ35	 Major facilitator superfamily MFS_1	0.000278577228644
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYT4	 Homoprotocatechuate 2,3 dioxygenase, putative	0.000278520068301
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1VLU5	 Short chain dehydrogenase reductase SDR	0.00027851766076
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V7N3		0.000278512497099
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DR24	 Ribonuclease E	0.000278417742872
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MSB6	 Actin like ATPase involved in cell division	0.000278399662935
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HAW2	 ATPase histidine kinase DNA gyrase B HSP90 domain protein	0.000278304131069
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F0L3S0	 Biopolymer transport protein	0.000278228514868
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9X581	 NatC	0.000278175998804
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A0A024DD00	 PTS sorbitol transporter subunit IIA	0.000278139304545
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UL38	 Ribonuclease P protein component 4	0.000278139304545
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXK4		0.000278139304545
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UYR5	 Amino acid ABC transporter, periplasmic amino acid binding protein	0.000278139304545
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H2D5		0.000278139304545
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2N3Z8		0.000278139304545
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M265	 Precorrin 2 dehydrogenase	0.000278139304545
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N6G4	 Signal peptidase I	0.000278139304545
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IX01		0.000278139304545
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X1WW26		0.000278139304545
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JE23	 Pilus assembly protein tip associated adhesin PilY1	0.000277864727294
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7VID0		0.000277534746433
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HC81		0.000277449534964
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B2SZE6	 ABC transporter related	0.000277375185585
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYG6		0.000277375185585
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V8R541	 Restriction endonuclease	0.000277375185585
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LYR7	 Oligopeptide dipeptide ABC transporter, ATPase subunit	0.000277332655947
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N619		0.000277210262791
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAX1		0.000277182984648
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W6RWI6	 Accessory gene regulator A	0.00027699521957
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T2HSQ7	 Integrase core domain	0.000276804975963
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IXT7	 ABC peptide opine transporter, ATPase subunit	0.000276698607661
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP37		0.000276615253565
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VAR2		0.000276615253565
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q2RG70	 Hydro lyase, Fe S type, tartrate fumarate subfamily, beta region	0.000276615253565
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E6D9		0.000276615253565
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P55573		0.000276560950792
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HBB1	 Cell envelope like function transcriptional attenuator common domain protein	0.000276531390548
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_C1DAI5	 Glucose 6 phosphate isomerase	0.00027643909294
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T289		0.000276431695074
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7VBB1		0.000188015954469
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A5R4	solute symporter	0.000276198871064
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_H5VFC5	 GTP binding protein TypA BipA	0.00027614498681
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P14532	 Cytochrome c551 peroxidase	0.000276115690416
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0R7	 ABC transporter, periplasmic substrate binding protein	0.000276100752193
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPA7		0.000276087304127
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D2U2M6	 UPF0042 nucleotide binding protein ARN_28520	0.00027606007052
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023NX12	 Potassium transporter KefB	0.000275968679221
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P13656	 Probable bifunctional chitinase lysozyme	0.000275863187806
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A027RPI9		0.000275859474188
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4TJD9	 Phage tail assembly protein	0.000275859474188
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQC9		0.000275859474188
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SRI2		0.000275859474188
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I2DEZ6		0.000275859474188
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36677		0.000275859474188
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64591	 Inner membrane protein YhaH	0.000275859474188
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRE8		0.000275859474188
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V6PC60	 Cytochrome D ubiquinol oxidase subunit I 	0.000275859474188
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W6I678	 ThiJ PfpI family protein	0.000275859474188
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZCK5	 Aminodeoxychorismate lyase	0.000275750800319
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YKM5		0.000275694883941
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8PAV7	 Ditrans,polycis undecaprenyl diphosphate synthase  farnesyl diphosphate specific)	0.000275688375118
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q4FQ57	 tRNA dihydrouridine synthase	0.000275635360694
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRB6	 S layer protein, putative	0.000275521393677
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0E8	 TPR repeat containing protein	0.000275511161594
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M893	 Putative hemagglutinin hemolysin related protein	0.000275508257076
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_L0WHQ4	 Short chain dehydrogenase reductase SDR	0.00027535176869
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WTQ5	 Cytochrome c biogenesis factor like protein	0.000275185255724
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4LPV2	 Oligo 1,6 glucosidase	0.00027516567395
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX91		0.000275154647549
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A0N8	 Protease subunit HflC	0.000275107813488
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9Z292		0.000275107813488
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K2XX98	 Tryptophanase	0.000275107813488
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L1FGZ9	 Serine dehydratase alpha chain family protein	0.000275107813488
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U3U3I5		0.000275107813488
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2JNG5	 Response regulator receiver modulated diguanylate cyclase	0.000275059595779
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9U3V3	 Type IIA topoisomerase , A subunit	0.000274920665323
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YU53	 rRNA  methyltransferase (Mycinamicin resistance protein)	0.000274628429733
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K0AYA8	 Bifunctional chorismate mutase prephenate dehydratase	0.000274562216705
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0SPS1	 DHH family protein	0.00027450553964
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5XCQ0	 Putative 2 dehydropantoate 2 reductase	0.000274409134763
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P11347	 Nitrogenase molybdenum iron protein beta chain	0.000261732000066
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VDK4		0.000274360237906
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_O07134	 Probable 1,4 dihydroxy 2 naphthoate octaprenyltransferase	0.000274360237906
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8G5H9	 GntR family transcriptional regulator	0.000274318638767
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HJZ5		0.000274266055219
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZMV7	 DNA topoisomerase 1	0.000274261646884
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P0A603	 RNA polymerase sigma factor SigA	0.000274057897923
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0HT75	 Lipid A disaccharide synthase	0.000274014315548
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KT30	 Transporter, DME family, DMT superfamily	0.000273882730133
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6U6	 Integral membrane sensor signal transduction histidine kinase	0.000273833087097
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4XJN9	 Acyl CoA dehydrogenase	0.000273802342942
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C3P9Q0	 30S ribosomal protein S12	0.000273616714234
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G2B9M8	 Electron transport complex protein rnfC domain protein	0.000273616714234
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3U7X5	 DNA binding protein	0.000273616714234
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V1CD68		0.000273616714234
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T3U2	 Iron dicitrate transporter FecR	0.000273596413672
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K9SGS9	 ATPase associated with various cellular activities AAA_5	0.000273551966777
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51576		0.000262245630003
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O07599		0.000273432205475
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I733		0.00027331391355
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M6B3		0.0002733130176
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TR74	 P type ATPase metal cation transport	0.000273296854314
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KHC4	 Cell division protein ftsA	0.000273290999752
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0QHU9	 Lipid A phosphoethanolamine transferase, associated with polymyxin resistance	0.000273252139247
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A9Z4	 Glutamate ammonia ligase adenylyltransferase	0.000237665102643
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VPR5		0.000273232712201
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GFR6	 Molybdopterin binding domain	0.000273097791846
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_N0B6U2		0.000252411418878
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJK6		0.000258221400383
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C3BBY3		0.000272877209597
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_H6PBJ5	 ThiW protein	0.000272877209597
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N3H987	 NAD binding Rossmann like domain protein (Fragment)	0.000272877209597
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V7ZGN6	 Phosphatidylserine synthase	0.000272877209597
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q4L8N2	 Efem EfeO family lipoprotein	0.000272845342706
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E4Z9V1	 SUN family protein	0.000272797556318
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E6SIK1	 Xanthine uracil vitamin C permease	0.000177130820264
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E6SIK1	 Xanthine uracil vitamin C permease	9.55199314625e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M139	 von Willebrand factor, type A	0.000272643671546
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6FSH7	 Oxidoreductase	0.000272540721167
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q57251	 Putative L lactate permease	0.000272521283509
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YKE6	 Protein PqqC	0.000148477305223
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P26973	 DNA topoisomerase 4 subunit A	0.000272413612349
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M113	 Stage III sporulation protein AE	0.000272269798843
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYY8	 4Fe 4S ferredoxin, iron sulfur binding domain protein	0.000272254778324
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8QT68	 Helicase	0.000272250070751
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S1K0	 Type III secretion protein PcrV	0.000272219213646
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N275	 FolC	0.000272144202314
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q03SY7	 Dipeptide tripeptide permease	0.000272142040874
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q17ZB6	 30S ribosomal protein S11	0.000272141691517
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_U6EDN2	 Peptidase S26B, signal peptidase	0.000272141691517
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P26512	 Aspartokinase	0.000272112377464
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FF15	 Exonuclease V, alpha subunit	0.00027205215948
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M9J1	 Amidohydrolase	0.000272043062896
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YRE4	 Permease	0.000271964712352
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9RZM0		0.000271954553681
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZ48		0.000251155640679
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B8FP12	 Lipoprotein	0.000258221400383
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXY6	 PAS PAC sensor hybrid histidine kinase	0.000271561790114
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U5R3V9	 D alanine  poly ligase, subunit 1	0.000271514116665
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A010JG94	 MATE efflux family protein	0.000271492979712
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PI56	 Transcriptional regulator, MarR family	0.000271410127825
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1IMR8	 Transposase C for	0.000271410127825
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E0RV96	 Rhamnulose 1 phosphate aldolase	0.000271410127825
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6S3C3	 General secretion pathway protein I	0.000271410127825
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8DLJ7	 Inner membrane transport protein yeaN	0.000271410127825
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q0E830	 W0075	0.000271410127825
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A9G3	 Conjugal transfer protein 	0.000271410127825
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5EMC4	 High affinity branched chain amino acid ABC transporter permease protein	0.000271410127825
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9UME2	 Peptidase	0.000271410127825
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3P661	 Oxidoreductase, FAD binding	0.000271286325243
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4IP74	 Mannonate dehydratase	0.000255305773518
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQR1	 S layer domain protein domain	0.000270929371891
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I3E5		0.000270908022993
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P11460	 Ferric anguibactin binding protein	0.00027087687187
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q9RAJ5	 Bifunctional purine biosynthesis protein PurH	0.000270871163273
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2HYZ7	 tRNA tmRNA ) methyltransferase	0.000270785200183
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VIC2	 L xylulose 5 phosphate 3 epimerase	0.000270777852294
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O59829	 Probable nitrilase C965.09	0.000270692667136
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M050	 Transcriptional regulator, LysR family	0.000270682486737
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E087	 Transcriptional regulator AsnC family	0.000270682486737
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MEW1		0.000270682486737
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FE82		0.000270682486737
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A7FWJ9	 Cysteine desulfurase IscS	0.000262862015527
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYF4	 Oxidoreductase, short chain dehydrogenase reductase family	0.000270469639162
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6GQC1	 Peptidase U32	0.000270421602654
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQS5	 Transcriptional regulator, LysR family	0.000270376157351
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZHA8	 Histidine kinase	0.000270215313425
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GFL4	 Permease	0.000270156340395
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_W0A6T6	 Peroxidase	0.000270153588191
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V1I5	 S adenosylmethionine decarboxylase proenzyme	0.0002139079821
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6TTW0	 Cyclic nucleotide binding protein	0.000270082312416
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M3F4	 Urease accessory protein UreF	0.000269958736763
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRK0	 UspA domain protein	0.000269958736763
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M178		0.000269958736763
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GSG1	 Predicted transcriptional regulator, AraC family	0.000269958736763
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VHY4	 DeoR family transcriptional regulator	0.000269958736763
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LW04	 Membrane protein, putative	0.000269958736763
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JZ56	 Aspartate 1 decarboxylase	0.000269958736763
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_R0RZA1	 Sterol O acyltransferase 2 domain protein	0.000269958736763
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4REY9	 Pyrazinamidase nicotinamidase PncA	0.000269958736763
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76129	 Oxygen sensor protein DosP	0.000269771236323
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DN19	 Oxidoreductase protein	0.000269562801385
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0BEA7	 Fumarate reductase succinate dehydrogenase flavoprotein domain protein	0.00026948314235
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4Y1U6		0.000218914870838
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M347	 ABC transporter related protein	0.000269429943625
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O34645	 Alpha galactosidase	0.000269354582379
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S5R644	 Ferrichrome ABC transporter, ferrichrome binding protein	0.000269302394763
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7BLM0	 Extracellular solute binding protein family 5	0.000269269897157
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RUE3		0.000269238846806
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WQ46	 Response regulator receiver protein	0.000269238846806
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJD5	 Probable hydrogenase nickel incorporation protein HypA	0.000269238846806
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTH3	 Phosphotransferase system PTS, lactose cellobiose specific IIA subunit	0.000269238846806
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M366		0.000269238846806
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B4UHS9	 Succinate dehydrogenase fumarate reductase iron sulfur subunit	0.000269238846806
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UVJ2		0.000269238846806
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D2PY67	 ABC transporter related protein	0.000269238846806
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E8QFC4		0.000269238846806
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WZZ1	 Type VI secretion protein DotU	0.000269238846806
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M4ZG23	 Transcriptional regulator, MarR family	0.000269238846806
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q60AW7	 DNA polymerase III, epsilon subunit	0.000269238846806
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1Y5J1		0.000269238846806
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q82X69	 DNA directed RNA polymerase subunit alpha	0.000261544501231
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TQB8	 Minor teichoic acid biosynthesis protein GgaB	0.00026919639796
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R5A2K0	 Candidate zinc binding lipoprotein ZinT	0.000269084581236
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MVV7	 HTH type transcriptional regulator YybE	0.000268871676061
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZD6	 Ferredoxin nitrite reductase	0.000268733045269
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_T0SXL1	 ABC transporter multidrug efflux pump	0.000268582460332
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RVI8	 Magnesium transporter	0.000268522786042
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4QB48		0.000268522786042
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5D395	 Enoyl CoA hydratase carnithine racemase	0.000268522786042
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IWN0	 Carbamoyl phosphate synthase small chain	0.000256255247593
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U7DIY7	 Copper oxidase	0.000268302665283
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H6LJB5	 Chemotaxis protein methyltransferase CheR2	0.000268168300515
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QYV2	 Conserved domain protein	0.000239252529737
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQJ4	 Integral membrane sensor signal transduction histidine kinase	0.000268073732447
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q04945	 NADH dependent butanol dehydrogenase B	0.000259500798001
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8KE45	 UPF0324 membrane protein CT0845	0.000268050484083
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CLC3		0.000268039506761
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E4P1		0.000267874945743
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A8GLA8	 Triosephosphate isomerase	0.000267810524008
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M1X9		0.000267810524008
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AGH5	 DGC domain protein	0.000267810524008
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5BT52		0.000267810524008
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YRZ3		0.000267810524008
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W0A553		0.000267810524008
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R5A083	 Transcriptional regulator, RofA	0.000267805352634
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2IJK8	 Exodeoxyribonuclease 7 large subunit	0.000262881567488
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U6T9	 Bacterial extracellular solute binding protein, family 5	0.000267660773039
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5PBU8	 Putative membrane protein	0.000267633166045
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0D8		0.00026757597729
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q14GX0	 Chaperone protein DnaJ	0.000148915291375
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q14GX0	 Chaperone protein DnaJ	0.000118642265041
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VLQ7	 General secretion pathway protein F	0.000267521036108
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1V7U0	 Flagellar basal body rod protein FlgG	0.000267102030558
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WT07	 Flagellin specific chaperone FliS like protein	0.000267102030558
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7MGP9		0.000267102030558
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TPF9	 Precorrin 6x reductase	0.000267102030558
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V2R9		0.000267102030558
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RPF3		0.000267102030558
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVE1	 Short chain dehydrogenase	0.000267102030558
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I4N6	 B type flagellar protein FliS	0.000267102030558
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I626	 UPF0271 protein PA0492	0.000267102030558
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5GD40	 BMC domain protein	0.000267102030558
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B0UBE5	 NAD dependent epimerase dehydratase	0.000267089696131
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MTG9	 Tetratricopeptide TPR_2 repeat containing protein	0.00026707684635
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RQC6	 Lipid II flippase FtsW	0.000266985530502
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5PZK9	 Aldo keto reductase	0.000266905097342
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MD43	 Major facilitator superfamily MFS_1	0.000266473996489
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQW6	 UPF0272 protein Cbei_0559	0.000266471511044
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AF49	 UPF0047 protein YjbQ	0.000248681200866
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C3K789		0.000266397275856
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E3X3		0.000266397275856
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L4JRF0		0.000266397275856
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P21640	 Precorrin 3B C methyltransferase	0.000266397275856
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q0RCK1	 N acetylglucosamine 6 phosphate deacetylase	0.000266397275856
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q74CZ6	 5 nucleotidase SurE	0.000266397275856
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4JIJ4	 Saccharopine dehydrogenase and related proteins	0.000266350836689
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6AE16	 Methyl accepting chemotaxis protein	0.000266244777419
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JH13		0.000266129039372
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EUL3	 N5 glutamine S adenosyl L methionine dependent methyltransferase	0.000266007555029
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5G6A1	 Cyclopropane fatty acyl phospholipid synthase	0.000265976165357
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0A023B8B3	 Mannitol 1 phosphate 5 dehydrogenase	0.000265932103783
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JKH6	 Acyl CoA dehydrogenase	0.000265925572113
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TKY4		0.000265696230401
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L5GDC6		0.000265696230401
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N6SI78	 Tandem five TM protein 	0.000265696230401
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F803		0.000265696230401
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FEA4		0.000265696230401
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZ68		0.000265696230401
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_V6QBN8		0.000265696230401
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97FA7		0.000265611933741
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IZT5	 Oligopeptidase A	0.00026547986934
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI00037600AD	 hypothetical protein	0.000177442122235
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q6F9I9	 Coenzyme PQQ synthesis protein E	0.000154616489354
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F9I9	 Coenzyme PQQ synthesis protein E	0.000110828284904
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P56904	 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase	0.000259325232643
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9MPH1		0.000265242631613
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2UYP0	 WblI protein	0.000265187391597
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VJN7	 Isochorismate synthetase, enterochelin	0.000265165212902
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WPU2		0.000265037945732
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37613		0.000264998864963
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q2NQP8	 50S ribosomal protein L17	0.000264998864963
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HTJ9		0.000264998864963
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q9L0Q7	 2 C methyl D erythritol 2,4 cyclodiphosphate synthase	0.000264998864963
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXI0		0.000264998864963
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5M9K2	 Cupin domain protein	0.000264998864963
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_U3SSB7	 Preprotein translocase subunit YajC	0.000264998864963
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P09852	 Exotoxin A regulatory protein	0.000264934572079
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F0L964	 Aldo keto reductase	0.000264925487115
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D5V8P7	 23S ribosomal RNA G745 methyltransferase	0.000264873664063
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U6F3A2	 Elongation factor G	0.000264823864754
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V4N2T0		0.000209741236218
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LPB8	 ATP binding permease fusion ABC transporter	0.000264626551426
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4QZK0	 Alpha beta hydrolase family protein	0.000264489578229
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M4B6		0.000264489515106
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_L7VWI6		0.000264365155109
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JFV1		0.000264305150655
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4XVX2		0.000264305150655
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P69980	 Yop proteins translocation protein R	0.000264305150655
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q3K3J8		0.000264305150655
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RST5		0.000264305150655
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9TWX8	 Hydroxyacylglutathione hydrolase	0.000264305150655
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M054	 Glycosyl hydrolase family 32, N terminal domain protein	0.000264198375304
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M113	 CheA signal transduction histidine kinase	0.000264029723445
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4NGT3	 Arsenical resistance protein ArsH	0.000263959653732
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VM88	 Glucose ABC transporter, ATP binding protein	0.000263915024112
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U3HEJ8		0.000263913815111
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCS1		0.0002638713427
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_UPI0001DCF72B	 63 kDa protein	0.000231980489396
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RQC1	 Amino acid or sugar ABC transport system, permease protein	0.000263730109465
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWR6	 MgtC SapB transporter	0.000263615058876
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RJZ9		0.000263615058876
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T8MXY0	 L asparaginase 1	0.000263615058876
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MQB0	 DNA polymerase III epsilon subunit like 3 5 exonuclease	0.000263516000297
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FBL3		0.000263483572659
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MKU3	 ABC type transport system, involved in lipoprotein release, permease component	0.000263480945117
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6SKJ8		0.000263452178979
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F0Q2N4	 Xanthine dehydrogenase	0.000263427209593
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_H0PS39	 Chaperon protein, Hsp70 class	0.000263359105832
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3SZE2		0.000263161507845
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR82	 Transposase	0.000262928561334
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWR4		0.000262928561334
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2J620	 ABC transporter ATP binding protein	0.000262928561334
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D5X8K2	 NADH quinone oxidoreductase subunit I	0.000262928561334
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GIE6	 Thiamine phosphate synthase	0.000262928561334
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8CWH0	 Phosphoribosylamine  glycine ligase	0.000262928561334
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L2XUN0		0.000262928561334
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0A201	 Curli production assembly transport component CsgE	0.000262928561334
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q59087	 Catabolic 3 dehydroquinate dehydratase	0.000262928561334
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AAE4	 Thiazole synthase	0.000262928561334
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F885		0.000262928561334
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F9K9S6	 Glyoxylate reductase	0.000262722688059
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRP0	 Transcriptional regulator, MerR family	0.000262722688059
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6ABV2	 Major facilitator family transporter	0.000262706819539
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UYZ9		0.000262672045666
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT75	 Ig domain protein, group 2 domain protein	0.000262608941266
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8MRP6		0.000262600845644
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02GV0		0.000262494800974
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RR63	 Tyrosine  tRNA ligase	0.000262446331802
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5W1N9		0.000262434755407
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_L9MQV1	 FAD dependent oxidoreductase TIGR03364 2 aminoethylphosphonate  pyruvate transaminase multi domain protein	0.000262434755407
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SRN1	 Cation diffusion facilitator family transporter	0.000262419338208
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4H9H0		0.000262321925413
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q3DDY2		0.000192313462006
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_F8KRB8	 Cell division protein FtsI [Peptidoglycan synthetase]	0.000262258645274
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MWZ3	 HTH type transcriptional regulator GlvR	0.000262247399255
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UYR3	 Universal stress protein	0.000262245630003
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8V7W6	 Myo inositol catabolism protein	0.000262245630003
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_L5RDB7	 Putative gluconolactonase domain protein	0.000262245630003
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N3YND1	 Multidrug transporter MdfA domain protein 	0.000262245630003
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U7DNG8	 Peptidase M19	0.000262158911536
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0Z3B1	 Pesticin domain containing protein	0.000262124780262
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9WYD0	 Glutaminase	0.000261986215177
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DU60	 Triacylglycerol lipase	0.000261909458379
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PRL4	 Xylulose 5 phosphate fructose 6 phosphate phosphoketolase	0.000261785021841
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5RWM1	 Succinate dehydrogenase	0.000261618050728
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JIL7	 Chromosome partitioning protein parA	0.000261566237176
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E6CY06		0.000261566237176
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K0H8G2	 Metalloendopeptidase like membrane protein	0.000261566237176
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HFH6		0.000261566237176
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q68S88	 Mutant cytolysin A	0.000261566237176
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9R0I4	 Heat shock protein IbpA	0.000225871515772
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P56431	 Thioredoxin reductase	0.000261539530927
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H0DT55	 MutS family protein	0.000183906316125
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M4YP28	 Chemotaxis protein	0.000261450911954
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V5R0	 Phosphate ABC transporter, periplasmic phosphate binding protein, PstS	0.00026141887833
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M044	 Pyruvate phosphate dikinase, PEP pyruvate binding	0.000261408166706
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9TVW8	 Signal transduction histidine kinase CheA	0.000261314265468
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O52058	 Biotin carboxylase	0.000250765779763
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4R3K2		0.000261093483542
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P10996	 Nitrogenase iron molybdenum cofactor biosynthesis protein NifE	0.000261080690988
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1W3	 Multi sensor signal transduction histidine kinase	0.000261068521699
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LST0	 Regulatory protein, LacI	0.000261064959376
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KLM0		0.000243333395815
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MAV9		0.000260892097395
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A037WK85		0.000260890355433
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E3D421	 CinA related protein	0.000260890355433
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PS33	 NADPH dependent FMN reductase domain protein	0.000260890355433
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VI34	 ATP dependent dethiobiotin synthetase BioD	0.000260890355433
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FDD7		0.000260890355433
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5SMM9	 Ribose 5 phosphate isomerase B	0.000260890355433
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1CT08	 Chromate reductase, Class I, flavoprotein	0.000260890355433
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W8TN29	 ACT domain containing protein	0.000260890355433
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q890R3	 Energy coupling factor transporter ATP binding protein EcfA2	0.000256761510589
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_S4GRW5	 Polyphosphate kinase 	0.00026078986139
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WYR6	 Alcohol dehydrogenase, zinc binding domain protein	0.00026054948827
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LIE7		0.000260538963622
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B5SF50	 Xanthine permease protein	0.000260468079974
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E8Q9V7	 ABC transporter permease	0.000260295156878
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A9AQ58	 Aldehyde Dehydrogenase	0.000260239032654
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M7M4		0.000260217957603
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M077	 Transcriptional regulator, MarR family	0.000260217957603
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q18CI7	 30S ribosomal protein S11	0.000260217957603
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZ78		0.000260217957603
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9DYP5		0.000260172421099
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J1W1	 Chemotaxis histidine protein kinase, CheA4	0.000260131240287
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P14756	 Pseudolysin	0.000260059575122
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I0HTT1	 Transcriptional regulator, GntR family with aminotransferase domain	0.000260002007468
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RL88		0.000259883056759
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UXM6	 Deoxyguanosinetriphosphate triphosphohydrolase like protein	0.000259824923522
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U3M4		0.000259549016841
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MHX3	 Transcriptional regulator	0.000259549016841
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_R0NVZ1		0.000259549016841
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZP34	 GntR family transcriptional regulator	0.000259549016841
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VD21		0.000259549016841
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V9D5	 3 deoxy D manno 2 octulosonate transferase	0.000259090403072
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LW46	 Ppx GppA phosphatase	0.000259082816999
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XPH3		0.000259053824639
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU07	 Ig domain protein, group 2 domain protein	0.000258973518371
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B4SQ46	 Drug resistance transporter, EmrB QacA subfamily	0.000258946308602
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUU6		0.000258883506541
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVF3		0.000258883506541
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9EBW5	 Peptide methionine sulfoxide reductase MsrA	0.000258883506541
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L8DWY4	 Cytochrome d ubiquinol oxidase subunit 1	0.000258883506541
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4K8K3	 Oxidoreductase, short chain dehydrogenase reductase family	0.000258883506541
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4R2N5		0.000258883506541
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R9IEQ8		0.000258883506541
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YVV5	 Adenylosuccinate lyase	0.000258829031068
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VCQ3	 UvrD REP helicase	0.000258747020014
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAU8		0.000258720316279
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B1ZAH8	 Binding protein dependent transport systems inner membrane component	0.000258712126952
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97FJ7	 Histidine  tRNA ligase	0.000258580602944
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q04L26	 Xaa Pro dipeptidyl peptidase	0.000258574843541
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P23669	 Threonine synthase	0.000185407719914
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P23669	 Threonine synthase	7.31627301136e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQA8	 Methyl accepting chemotaxis sensory transducer	0.000258466260561
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U5R0R0		0.000258310807567
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A1A025	 Response regulator of two component system	0.000258221400383
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LS03	 Glycoside hydrolase, family 46	0.000258221400383
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9DX64	 ATP synthase subunit delta	0.000258221400383
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YNN7	 DNA entry nuclease	0.000258221400383
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4K5W7		0.000258221400383
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8XB75	 5 hydroxyisourate hydrolase	0.000258221400383
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUE5		0.000258221400383
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T8DWJ2	 HTH type transcriptional regulator AcrR	0.000258221400383
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1H5X7	 Iron sulfur cluster assembly ATPase protein SufC	0.000258221400383
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q46BI1	 Acetate kinase	0.000258123614049
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LS15	 PHP C terminal domain protein	0.000258094444144
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O69754	 Trans 2,3 dihydro 3 hydroxyanthranilate isomerase	0.000258061565547
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A3M0Z0	 D amino acid dehydrogenase small subunit	0.000126205709439
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M0Z0	 D amino acid dehydrogenase small subunit	0.000106840812223
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B1XUJ9	 NADH quinone oxidoreductase subunit B	0.000214362139171
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F3EJZ8	 Nitrate reductase	0.000257916738629
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2THX3	 3D G5 domain protein	0.000257902062733
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KFN0	 Sensor histidine kinase VncS	0.000257828965486
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q18C09	 Methionine import ATP binding protein MetN	0.00023039701675
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LS70		0.000257690757856
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SR70	 Nitrate ABC transporter substrate binding protein	0.000257641558287
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U5ACW9		0.000171126385676
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8G4T0	 Sugar ABC transporter substrate binding protein	0.000257579109834
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E4SRK6	 Mannose specific phosphotransferase system component IIC low	0.000257569377062
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5Z355		0.000257562672328
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J2YBM3	 Flagellar assembly protein FliH	0.000257562672328
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P71297		0.000257562672328
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R4Y6B2	 Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.000257562672328
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5VTD5	 ABC transporter permease protein	0.000257562672328
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VE12	 Transglutaminase	0.000257365519847
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0GY09	 AAA+ family ATPase	0.000257288690294
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MFG9	 Spermidine putrescine transport system permease protein PotC	0.000257285086697
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W9BQH2	 Curved DNA binding protein	0.000257257041294
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P54905	 Phytoene synthase	0.000257083989833
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YNP0	 AMP binding protein	0.00025704732773
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KEU3		0.000257025171308
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UZF1		0.000256950781867
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AB05	 Porphobilinogen deaminase	0.000256914040094
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A017I5Y6	 Phosphate transporter family protein	0.000256907296569
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT48		0.000256907296569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E3F446	 Nickel import ATP binding protein NikD, putative	0.000256907296569
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZMV6		0.000256907296569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R9U595	 Truncated RpoS	0.000256907296569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T0MUP8		0.000256907296569
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T0U9A1	 Transcriptional regulator	0.000256907296569
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3SZ43	 Acyl CoA thioesterase	0.000256907296569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1FKD9		0.00021996637811
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97K95	 L aspartate oxidase	0.00025680902092
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U1F4B9	 Acyltransferase domain protein	0.000256578217151
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I2DWY9	 MotA TolQ ExbB proton channel family protein	0.000256550226663
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q63QK7	 Arginine biosynthesis bifunctional protein ArgJ	0.000209521615738
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V6FKH0	 AsmA domain protein	0.000256333211089
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRW1	 Phage portal protein	0.000256270105165
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A0LT91	  S malonyltransferase like protein	0.000256255247593
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPH1	 OmpA MotB domain protein	0.000256255247593
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I2DHK5		0.000256176186713
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RX60	 Membrane protein insertase	0.000255962633345
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D7HYK9	 Acyl CoA thioesterase II, putative	0.000255940741137
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J5HE89	 Adenylosuccinate lyase	0.000255921361887
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8H8V6	 Helicase	0.00025587213323
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6P0		0.000255871126068
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q17XQ8	 Acetyl coenzyme A carboxylase carboxyl transferase subunit alpha	0.000242121265113
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8G3Q0	 RNA helicase	0.000255616336015
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYP0	 PTS system, mannose fructose sorbose family, IIA subunit	0.000255606500127
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2UDG7	 Transcriptional regulator, MerR family	0.000255606500127
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E4ZD91		0.000255548308159
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4K5N7	 TonB dependent outermembrane heme receptor HasR	0.000255516682896
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LCG2	 Type III export protein	0.000255364145648
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8IS60	 Isertion sequence IS861 transposase	0.00025530332539
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E2XT98	 Alcohol dehydrogenase	0.000255246868134
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5Y909		0.000246721894432
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAW9		0.000255211570275
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8IDT0	 GCN5 related N acetyltransferase	0.00025517838932
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1A4	 Flagellin domain protein	0.000254961029174
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D3VIS7	 Regulator of ribonuclease activity B	0.000254961029174
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8PF29	 CzcI	0.000254961029174
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4L7Y2	 Transcriptional regulator I2	0.000254961029174
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S0VVA9	 Fimbrial like adhesin protein	0.000254961029174
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0WAK7		0.000254961029174
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KFS4	 Secreted protein, putative	0.000254961029174
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E6DXU7	 ABC transporter, solute binding protein	0.000254905761382
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5F3A7	 Aldehyde dehydrogenase	0.000248451743105
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q17Y79	 ATP synthase gamma chain	0.000254756978723
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E3EMN0	 Oxidoreductase, aldo keto reductase family	0.000254732565107
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E3D1E7		0.000254676275826
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FFG0		0.000254631473869
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWG3		0.000254600002699
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C5D4L1	 Transcriptional regulator, RpiR family	0.00025456732589
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MIG9	 Methyl accepting chemotaxis protein	0.000254564651682
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VE73		0.000254502170961
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I2BSA8	 Oxidoreductase, short chain dehydrogenase reductase family	0.000254318809957
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M9JHU6	 LysM domain protein	0.000254318809957
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T0TFQ9	 Ribonuclease BN	0.000254318809957
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C8UDI8		0.000198358678878
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZQ4	 Methyltransferase type 11	0.00025415886101
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B3PH50	 Probable protein kinase UbiB	0.000155059403657
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B3PH50	 Probable protein kinase UbiB	9.89848701519e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ39		0.000253998912074
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S070	 ABC transporter, ATP binding protein	0.000253998912074
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D0T5H1	 ATP dependent helicase HrpA	0.000253952420153
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A4IQK7	 NADPH dehydrogenase	0.000154616489354
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4IQK7	 NADPH dehydrogenase	9.15363259767e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q796Q6		0.000253804851906
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9LZP7		0.000253679817971
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UY99	 Peptidyl prolyl cis trans isomerase	0.000253679817971
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I1ZNG1		0.000253679817971
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVH3	 Methyl accepting chemotaxis sensory transducer	0.000253652631242
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q43922	 3 dehydroshikimate dehydratase	0.000253569067231
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G8LV00	 Transposase	0.000253563982433
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D4GDN3	 Catalase	0.000253418071489
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YSY8	 Ribonuclease E	0.000253326578811
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A9F2		0.00025330535615
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M9Q4	 SSS sodium solute transporter superfamily	0.000253216352411
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXG4	 Lon protease	0.000253205829873
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B3WBW4	 Phosphotransferase system sugar specific EII component	0.000253107471242
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTH9		0.000253044028954
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6TVZ6	 Metal dependent phosphohydrolase	0.000253044028954
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FBG6		0.000253044028954
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S617	 ABC transporter permease	0.000253044028954
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q6ME50	 30S ribosomal protein S8	0.000253044028954
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HYR3		0.000253044028954
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W8ELK9		0.000253044028954
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D7CUB2	 RNA binding S1 domain protein	0.000253020130954
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87VJ2	 DNA mismatch repair protein MutL	0.00025301379991
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q05825	 ATP synthase subunit beta, mitochondrial	0.000230941757868
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O83079	 Probable metal transport system membrane protein TP_0036	0.000252727328034
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9DZY6		0.000247918000239
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M465	 TPR domain protein	0.00025261078636
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY67	 Helix turn helix domain containing protein, AraC type	0.000252586104592
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W4TF65	 Glycosyltransferase	0.000252436964812
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY74	 Resolvase helix turn helix domain protein	0.000252411418878
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4PZ48	 Glutamine methyltransferase	0.000252411418878
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZF14	 Amino acid permease	0.000252397696844
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q886D0	 Autotransporter, putative	0.000252322412231
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZVE6	 ABC transporter permease protein	0.000249513613834
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9S0U1	 Amine oxidase	0.000252264966562
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KN05	 Multiple inositol polyphosphate histidine phosphatase	0.000252226321213
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CTA0	 AraC type DNA binding domain containing protein	0.000252128128849
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXI3	 Integral membrane sensor signal transduction histidine kinase	0.000252092240782
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q9ZB62	 Ornithine carbamoyltransferase	0.000248070190543
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0HD99		0.000251985816737
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A9KMQ0	 L lactate dehydrogenase	0.000251838345335
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M5DN32	 Signal transduction protein	0.000241831646374
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YRE9	 Acetyltransferase	0.000251781963964
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I644	 Putative esterase PA0474	0.000251781963964
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTI8	 MutT nudix family protein	0.000251781963964
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G4KZ65	 ATP dependent zinc metalloprotease FtsH	0.000251765357837
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8GID3	 Lipid A disaccharide synthase	0.000228828489435
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WCE7	 ppGpp synthetase I, SpoT RelA	0.000251628138368
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E104	 1 deoxy D xylulose 5 phosphate synthase	0.000251604414955
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VPA5		0.000217596050757
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8YH38	 Muconate cycloisomerase i	0.000251275785879
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A3DEM3	 4 hydroxy tetrahydrodipicolinate reductase	0.000251155640679
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULJ0	 Pyridoxamine phosphate oxidase 	0.000251155640679
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_C1CXG1	 50S ribosomal protein L22	0.000251155640679
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DXM1	 Short chain dehydrogenase	0.000251155640679
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G4L0D5		0.000251155640679
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W6QWZ0	 Putative acyl CoA thioester hydrolase	0.000251155640679
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M3F7	 Sigma 54 factor, interaction domain containing protein	0.000251115816316
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I0C4K0		0.000249039126921
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXV6	 Xylan 1,4 beta xylosidase	0.000250984528484
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E0T031	 Phage related minor tail protein	0.000250934926662
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D6Z602	 Glutamine synthetase catalytic region	0.000250891149859
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MKN8	 FAD dependent oxidoreductase	0.00025086692744
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7UAA4	 Arginine ornithine antiporter ArcD	0.000250653807877
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W6Z8	 Secretion protein HlyD family protein	0.000250583319928
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KRZ0	 AMP dependent synthetase and ligase	0.00025057222477
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B9EBL2		0.000250532425689
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E453		0.000250532425689
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E7IBL3	 Protein gmr domain protein	0.000250532425689
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RZE6	 Transcription termination antitermination protein NusG	0.000250532425689
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4R188	 Alpha beta hydrolase	0.000250532425689
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75988		0.000250532425689
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A6A0	 Putative N acetylmannosamine 6 phosphate 2 epimerase	0.000250532425689
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Z2DML4	 Protein BatD	0.000250532425689
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8ESX1	 Rhamnulokinase	0.000250521303543
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5N033		0.000250516869412
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97DP6	 Phospho alpha glucosidase PagL	0.000250509910005
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H0C7	 AraC like ligand binding domain protein	0.000250469619377
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQ83	 Xylose isomerase domain protein TIM barrel	0.000250448693643
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VK36	 Cobaltochelatase subunit	0.000250427233432
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWI0		0.000250400897602
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_K9SJV6	 Amino acid amide ABC transporter substrate binding protein, HAAT family	0.000250373562667
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI000463660C	 enolase	0.000247059252895
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q9XAD5	 Probable cysteine desulfurase	0.000250325374096
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTV6	 SEC C motif domain protein	0.000250264878076
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_O24850		0.000250221976586
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q01856		0.000250196393638
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S3MI44	 Major facilitator superfamily  transporter	0.000250022557177
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D3FUC5	 [Ni Fe] hydrogenase, large subunit	0.000250000772244
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97H93	 Cell division protein SepF	0.000249912295923
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q4FTT8	 2 octaprenylphenol hydroxylase	0.000249905852183
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F8A5M8	 Alpha amylase catalytic region	0.000249863107864
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5EXM8	 Glycosyl transferase	0.000249848234794
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSK1	 Probable dual specificity RNA methyltransferase RlmN	0.000249819802111
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P22520	 Colicin V secretion processing ATP binding protein CvaB	0.000249738165282
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_Q2NEP0	 Predicted permease	0.00024962468031
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR40	 Ribonuclease R	0.000249501707113
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q51281	 SiaD protein	0.000249426769242
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WQH5	 Transposase IS66	0.00019118554479
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKC2	 Response regulator receiver protein	0.000249295228524
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E0R9L7		0.000249295228524
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DXL2		0.000249295228524
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M2R9	 ABC type transporter, periplasmic subunit family 3	0.000249295228524
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VRC7	 Electron transfer flavoprotein FAD binding domain protein	0.000249295228524
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WYW1		0.000249295228524
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88MC6		0.000249295228524
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSP5		0.000249295228524
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4R8F1	 Transcriptional regulator, LysR family	0.000249295228524
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5VLQ7	 Predicted acyltransferase	0.000249295228524
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_UPI00000D3C44	 single stranded DNA binding protein	0.000249295228524
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M142		0.00024924845894
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YQH5	 PTS system transporter subunit IIBC	0.00024917493531
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D7AQD0	flavin oxidoreductase NADH oxidase	0.000249152108706
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_N0ATL3	 Amidase	0.000249142290851
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P32051		0.000249052077061
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A0R5R7	 Putative aminotransferase MSMEG_6286 MSMEI_6121	0.000248991243233
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M385	 Response regulator receiver protein	0.000248959861144
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KJK2	 Immunodominant antigen A	0.000174377491457
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8G053	 Inosine uridine preferring nucleoside hydrolase	0.000248907944275
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT52		0.000248873814545
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P77923	 Delta aminolevulinic acid dehydratase	0.000225367338279
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4G266	 Phosphate starvation inducible protein	0.000248735560623
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ88	 Type II secretory pathway pseudopilin PulG like protein	0.000248681200866
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6X9T8	 HAD hydrolase family IIA	0.000248681200866
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S9BT59	 Dihydroorotase	0.000248311068396
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VBG2		0.000248295381349
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M1G9	 Calcium transporting ATPase	0.000248233327981
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2Q1	 M18 family aminopeptidase	0.000248146162412
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D2S3Z6	 SSS sodium solute transporter superfamily	0.000248143890922
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A9R0	 Ribosomal RNA small subunit methyltransferase H	0.000242565929466
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5RXJ0	 ApbE family lipoprotein	0.000248093412111
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZU58	 Lipoprotein involved in the synthesis of group B streptococcal carboyhdrate antigen	0.000248078032007
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VCN3		0.000248070190543
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GEE3	 rRNA methylase	0.000248070190543
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2RWN6	 Transcriptional regulator, AsnC family	0.000248070190543
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8G1N6	 Transcriptional regulator	0.000248070190543
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E4RJQ9	 Cysteine desulfurase, SufS subfamily	0.000248061621943
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6ASP3	 Sulfonate ABC transporter periplasmic sulfonate binding protein	0.000248041594086
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H6LBB1	 Electron transfer flavoprotein alpha subunit EtfA	0.000247880976462
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q899C3	 Isoleucine  tRNA ligase	0.000244119484735
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A022NSH9		0.000244152206847
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C5VT76	 LicC protein	0.000247462175375
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9SB45	 Flp prepilin peptidase A, FppA	0.000247462175375
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V1XBG2	 Cell filamentation protein Fic	0.000247462175375
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V4QMN6	 Glutamyl tRNA amidotransferase subunit A	0.000247368613519
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P45793	 Type IV pilus assembly protein TapC	0.000247310729735
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2M1		0.000247206829572
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5H336	 Hsp90xo protein	0.000247141181492
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K0IHJ1	 Ammonium transporter NrgA	0.000247073431187
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FFB2	 Argininosuccinate lyase	0.000213726244637
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L860		0.000246857497843
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B2UTG2	 UPF0763 protein HPSH_03535	0.000246857133381
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8G0E8		0.000246827668114
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UZY5	 AlgW protein	0.000246806789277
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0QGI7		0.000246767626323
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7R1P9	 Cobalamin biosynthesis protein CbiM	0.000246710300903
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YQD3		0.000246618960611
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E3J2		0.000246595354278
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q030J8	 3 oxoacyl [acyl carrier protein] synthase 3	0.000218055091687
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZLH4	  binding protein	0.000246310528709
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PTP2	 CAAX amino terminal protease	0.000246268227897
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5A605		0.000246255042803
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D5CDT8	 Ferritin Dps family protein	0.000246255042803
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M1N2		0.000246255042803
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C762	 Cysteine desulfuration protein SufE	0.000246255042803
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S9BP95		0.000246255042803
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S9L773		0.000246255042803
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSX6	 Metal dependent phosphohydrolase	0.000246153334117
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR74	 Methyl accepting chemotaxis sensory transducer	0.000245966150019
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SLD8	 Fibronectin binding A domain protein	0.00024589817214
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q5P6J7	 Magnesium transporter	0.000245866755521
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I602		0.000245845561756
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q7U836	 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.00023130485121
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1LZD3		0.000245694779473
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UJK5		0.000245655882116
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTW4		0.000245655882116
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D7YQY2	 3 phenylpropionate cinnamic acid dioxygenase subunit alpha	0.000245655882116
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K9NNF0	 LysR family transcriptional regulator	0.000245655882116
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VFE8	 Low molecular weight phosphotyrosine protein phosphatase	0.000245655882116
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P31063		0.000245655882116
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q46577	 UvrABC system protein A	0.00024563544392
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F0J5L6	 L sorbosone dehydrogenase	0.000245620155986
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P19843	 Copper binding periplasmic protein	0.000245617736794
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B8RD42	 Cell wall surface anchor family protein,putative	0.000245492764246
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TPY0	 Vancomycin B type resistance protein VanW	0.000245469515004
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RT45	 Exonuclease SbcD, putative	0.000245360654027
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_X2IBS7	 Membrane protein	0.000245355407333
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4H9R3	 YjeF domain protein	0.000245350436151
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4CT20	 Outer membrane protein OprN	0.000245236869196
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024EII1		0.000210342849062
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V4UXH0		0.000245212850967
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97TN5	 Divalent metal cation transporter MntH	0.00024513576659
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1XYD2	 ATPase associated with various cellular activities AAA_3	0.000245059629977
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6MEG5	 Acyl CoA thioester hydrolase YbgC YbaW family	0.000245059629977
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_UPI00036F07BD	 hypothetical protein, partial	0.000245059629977
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W6S1I7		0.000245059629977
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YPM1	 FemAB family protein	0.0002449154323
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JJA0	 Flavodoxin reductase  family protein 1	0.000244795283627
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L6P6		0.000244621606074
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D0IU34	 Transcriptional regulator of hydrogenase activity	0.000244608754254
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0Q2Z5	 ATP synthase gamma chain	0.000244466265262
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q51466	 Flagellar motor switch protein FliN	0.000244466265262
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RY78		0.000244466265262
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_UPI00036BE9BD	 hypothetical protein	0.000244466265262
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_K9ZW90	 ABC type dipeptide transport system, periplasmic component	0.000244413881007
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2G0	 Methyl accepting chemotaxis sensory transducer	0.000244352339691
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0HA95		0.000244350655864
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UYT5		0.000244328202879
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4XZT5	 Cytochrome c family protein	0.00021300541678
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G8QQ16	 Aminoacyl histidine dipeptidase	0.000244171946338
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F6BHL2	 PTS system transcriptional activator	0.000244121153548
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MLW0	 Methyl accepting chemotaxis protein McpC	0.000243985089285
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P59872	 Acetyl coenzyme A synthetase	0.000232588379308
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZC7		0.000243875767032
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B5I6I0	 3 oxoacyl [acyl carrier protein] reductase	0.000243875767032
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P60480	 Isoprenyl transferase 1	0.000243875767032
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_T2BJL4	 ISSoc3 transposase	0.000243875767032
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V0AGL2	 Sugar efflux transporter C domain protein	0.000243875767032
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZTZ8	 Erythrocyte binding protein 2	0.000243814872424
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5ELV4		0.000211665760065
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D6GTM4	 Rubredoxin	0.000243678453856
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P50097	 Inosine 5 monophosphate dehydrogenase	0.000243649030923
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX93	 NERD domain protein	0.000243492001236
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q53046	 Pyruvate flavodoxin oxidoreductase	0.000243347928109
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5TME3	 Xylulokinase	0.000243317612751
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G9A7G5	 High affinity zinc uptake system membrane protein znuB	0.000243288114579
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I7L4T0	 Phosphate import ATP binding protein pstB	0.000243288114579
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_R0VZS5		0.000243288114579
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q04KA9	 Uridine kinase	0.000228944597617
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VGZ5		0.000243142436874
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWE6	 MATE efflux family protein	0.000243071419942
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1REU7		0.000243044312419
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X4UYI0	 Spermidine dehydrogenase	0.00024303432977
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T8PH03	 ATP independent RNA helicase dbpA	0.00024295412275
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EV03	 Cytosine specific methyltransferase	0.000242942733099
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6JZ36	 Citrate transporter	0.00024292457664
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E3D438		0.000242864071513
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T5YMK1	 Putrescine aminotransferase	0.000242750377343
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNE9		0.000242703287378
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B0KFB1	 Rhomboid family protein	0.000242703287378
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HE60	 Release factor glutamine methyltransferase	0.000242703287378
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6AZR4		0.000242703287378
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A4J5C2	 Methylenetetrahydrofolate reductase	0.000242513400569
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VGY1	 Uroporphyrin III C methyltransferase, putative	0.000242332201863
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WGE7	 1 deoxy D xylulose 5 phosphate reductoisomerase	0.000242304961774
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DXG6	 Prophage LambdaSa2, site specific recombinase, phage integrase family	0.00024230350011
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_C1CX80	 Bifunctional protein PyrR	0.000182906825274
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UWL8	 Dihydroorotate dehydrogenase 	0.000223130441631
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DLN9		0.000242121265113
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H4AYY9		0.000242121265113
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RT77		0.000242121265113
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1FIF8		0.000242121265113
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E052		0.000242121265113
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MUQ9	 Phage XkdN like protein	0.000242121265113
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G8MFZ3	 Type VI secretion protein	0.000242079911359
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JV28	 UDP N acetylenolpyruvoylglucosamine reductase	0.000242030979104
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N5PST4	 Serine protease splD	0.000241905481782
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M075	 Aminotransferase class III	0.000241888539009
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P39879		0.000241880929632
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LS08	 Sigma 54 factor, interaction domain containing protein	0.000241787664754
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K9U0	 DNA binding domain containing protein, AraC type	0.000241688740953
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RSC6	 D Ala D Ala carboxypeptidase	0.000241542027634
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UP86		0.000241542027634
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KK38		0.000241542027634
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A7C7	 Conserved phage related protein	0.000241542027634
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I6F3		0.000241542027634
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JTW6	 Co chaperone protein HscB homolog	0.000241542027634
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A025A6U1		0.000214818228835
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1QYW0		0.000241286026763
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IYC6	 Phosphoglycolate phosphatase	0.000219012077121
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LZX4		0.000241007375026
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LJD0		0.000240965555018
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DTC3	 MerR family transcriptional regulator	0.000240965555018
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8V752		0.000240965555018
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F9L9		0.000240965555018
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B0CGA0		0.000233174520906
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1BIG3	 Amidase, hydantoinase carbamoylase	0.00024078917953
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IYH9	 Sulfate adenylyltransferase	0.000180276360825
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6T1V4	 Dihydrolipoamide acetyltransferase	0.000240698723324
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EKM3	 DNA transfer protein ComE	0.000240644260805
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V1V1	 Acyl CoA delta 9 desaturase, DesB	0.000240583527529
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6AJY0		0.000196812022518
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2X4	 Transcriptional regulator, RpiR family	0.000240391827508
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TRH1	 LysE type translocator superfamily	0.000240391827508
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E8NPX2	 Putative cold shock protein	0.000240391827508
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9UYD8		0.000240391827508
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WVE9	 Acetyltransferase	0.000240391827508
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A5B4		0.000240391827508
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5Y0M6	 Transcriptional regulator, TetR family	0.000240391827508
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YYL3	 Ferrous iron transport protein B	0.000240317596883
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_B2IQF0		0.000240290064754
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N514		0.00024014769169
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8DFL1	 DHHA1 domain protein	0.000240124257268
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_S4XFR3		0.000240059236955
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VF07		0.000240008754116
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2QGJ0	 Inner membrane transport permease yhhJ	0.000240005412239
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6ADJ2		0.000239963406285
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A010PG87	 Ribonuclease E	0.000239957485571
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_H8GKW4		0.000217596050757
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H5Y5I7	 ABC type multidrug transport system, ATPase and permease component	0.000239881592242
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HD89	 ABC transporter, ATP binding protein	0.000239853073972
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LS21	 Sugar isomerase 	0.000239848301427
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B605		0.000239820825536
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVT4	 Cell wall hydrolase autolysin	0.000239820825536
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C3KUZ6		0.000239820825536
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C6D8U7		0.000239820825536
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RV78	 3 hydroxybutyryl CoA dehydratase	0.000239820825536
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A8FKX4	 Elongation factor P	0.00022946492625
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V4V933	 Fis family transcriptional regulator	0.000239463926441
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRD1	 Aldehyde dehydrogenase	0.000239404935469
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q882G0	 3,4 dihydroxy 2 butanone 4 phosphate synthase	0.000130952746498
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q882G0	 3,4 dihydroxy 2 butanone 4 phosphate synthase	0.000108331081064
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1Y0	 Helix turn helix domain containing protein, AraC type	0.000239252529737
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M239	 PTS system fructose subfamily IIA component	0.000239252529737
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VB06		0.000239252529737
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RKW9	 Biopolymer transport protein ExbD TolR	0.000239252529737
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L4FU88		0.000239252529737
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q034X6	 30S ribosomal protein S12	0.000239252529737
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5ML33	 Lipolytic protein, G D S L family	0.000239252529737
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K9K7		0.000239129737034
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JZ77	 3,4 dihydroxy 2 butanone 4 phosphate synthase	0.000239105757879
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TJ76	 Tetratricopeptide repeat domain protein	0.000239025833933
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M617		0.000238686920929
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UK39	 Coenzyme F420 reducing hydrogenase , delta subunit	0.000238686920929
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNX6	 Predicted universal stress protein, UspA	0.000238686920929
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DGT5	 Aldo keto reductase family protein	0.000238686920929
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1TAG1		0.000238686920929
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P56580	 Glucitol sorbitol specific phosphotransferase enzyme IIB component	0.000238686920929
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q6LKZ5	 ATP synthase epsilon chain 2	0.000238686920929
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZ17	 FMN dependent NADH azoreductase 3	0.000238686920929
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZAI2	 Accessory Sec system protein Asp3	0.000238686920929
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T2G6P0		0.000238686920929
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JY85		0.000222579214609
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DVY4	 Cell division protein FtsW	0.000238317160312
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRA6	 Iron ABC transporter, periplasmic substrate binding protein, putative	0.000238292252484
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E0J171	 Ig domain protein group 1 domain protein	0.000238236598422
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0PY95	 Alanine racemase	0.000238192233006
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSD6	 Aminopeptidase	0.000238177510151
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q89M20	 Blr4373 protein	0.00023814011448
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I2BWH8	 CheW like domain protein	0.00023812398007
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36647	 Prepilin peptidase dependent protein D	0.00023812398007
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_R7ACY8	 Dyp type peroxidase	0.00023812398007
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FCW7	 Phosphate import ATP binding protein PstB	0.000225367338279
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_W0RMS6	 Nitrilase cyanide hydratase and apolipoprotein N acyltransferase	0.000237935052556
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q48QI5	 Oxidoreductase alpha  subunit, fusion	0.000237900802689
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5MZF0	 Predicted signal transduction protein	0.000237882217616
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M452	 Integral membrane sensor signal transduction histidine kinase	0.000237853725001
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VAV5		0.000237816305725
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2E7S5		0.000237811758392
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2ILL9	 Acetyl CoA carboxylase, biotin carboxylase	0.000237802554987
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R5PKA2	 Polyphosphate kinase 2	0.000237774210093
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_C1CXQ2		0.000237682447335
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4QZL0		0.0002375962126
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PJU3		0.000237563688359
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0ENG7	 LPXTG motif cell wall anchor domain protein 	0.000237563688359
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X5EI43		0.000237563688359
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A014LMK6	 Acetate  CoA ligase	0.000237542000594
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V857		0.00019669338484
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q3K2H5	 Prophage LambdaSa03, tail component, putative	0.000237416691965
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T2L8	 Pirin like protein	0.000231969215077
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F1XKP7		0.000237350299382
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MBG6	 Glucokinase	0.000237296482894
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q891D3	 Tyrosine  tRNA ligase	0.000209826698302
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4H934	 DNA binding helix turn helix protein	0.000237108125679
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9UPI6	 Porin thermoregulatory protein envY	0.000213455745355
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WP16	 Esterase lipase like protein	0.000237006027118
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6UCF5		0.000237006027118
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RLX6		0.000237006027118
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F2MPN2	 2 dehydro 3 deoxyphosphogluconate aldolase 4 hydroxy 2 oxoglutarate aldolase	0.000237006027118
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JIJ8		0.000237006027118
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A6J6	 UPF0336 protein PPA1896	0.000237006027118
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRG0	 ErfK YbiS YcfS YnhG family protein	0.00023694425854
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P45260	 Acetolactate synthase small subunit	0.000205212535673
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q17XN9	 Aspartate carbamoyltransferase	0.00023663419075
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V995	 Protease HtpX homolog	0.000236589577506
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H6NZB1		0.000236450977871
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HTX6	 Glycine cleavage system H protein 2	0.000236450977871
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SHN1	 Ribosomal protein alanine acetyltransferase RimI	0.000236450977871
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q7WQL9	 Glutamate 5 kinase	0.000134083091033
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7WQL9	 Glutamate 5 kinase	9.84060112589e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MT01	 Oxygen independent coproporphyrinogen III oxidase 1	0.000236334506054
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q32EJ7		0.000170836831725
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0TNA9	 Protein  methyltransferase, release factor specific	0.000236281696446
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5B4R5	 Inner membrane translocator	0.000236175719321
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J0G9	 Aminotransferase, class V	0.000236174427015
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8PGH1		0.000236148456182
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A0QSU4		0.000236146269734
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JJB8	 Riboflavin biosynthesis protein RibF	0.000236045001566
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FBV7	 3 hydroxyisobutyrate dehydrogenase	0.000236014800681
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5EY83	 Small heat shock protein IbpB	0.000235898522313
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P44270		0.000235898522313
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A7G2	 Conserved membrane protein	0.000235898522313
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A8B2	 Homoserine kinase	0.000235898522313
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JZS9		0.000235898522313
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MP56	 ATP dependent DNA helicase PcrA	0.000235732334907
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7W6N5	flavin oxidoreductase	0.000235708542516
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9K588		0.000235701759534
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02MJ3	 Pyoverdine synthetase D	0.000235625126075
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VKV2	 Efflux ABC transporter permease	0.000235582761554
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TMR9		0.000235580959024
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_O52674	 DsORF g1	0.000235526870397
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C3FDC0		0.000235489369047
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3SYS1	 Gamma aminobutyrate permease	0.000235437108969
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S0T6	 5 Nucleotidase domain containing protein	0.000235389412529
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B6IS55	 Oxidoreductase, short chain dehydrogenase	0.00023534864231
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E8QSX5		0.00023534864231
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F2LSI9	 Metal dependent phosphohydrolase, HD region	0.00023534864231
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_I6WWP7	 Cell division protein FtsX	0.00023534864231
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9V8F1		0.00023534864231
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P35881	 Transposase for insertion sequence element IS905	0.000235291206819
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1KVW4	 Multidrug resistance translocase	0.000235108602605
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ46	 Response regulator receiver protein	0.000235044385434
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1ISE9	 SpoU methylase family protein	0.000234801319881
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JD62	 Ferric acinetobactin transport system ATP binding protein	0.000234801319881
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q9A2S6	 NAD dependent protein deacylase	0.000234801319881
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSM5		0.000234801319881
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_C1A7X4	 Acyl CoA dehydrogenase	0.000234783240166
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M3C600	 Outer membrane usher protein, FimD	0.000234746506157
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M085	 GCN5 related N acetyltransferase	0.000234666867568
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8CBH4	 Fe S protein, homolog of lactate dehydrogenase SO1521	0.000234604400457
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RTT6	 O antigen polymerase	0.00023445006724
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O34399	 Glutamate synthase [NADPH] small chain	0.000234366761305
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P43948	L alanyl gamma D glutamyl meso diaminopimelate ligase	0.000151381458848
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P43948	L alanyl gamma D glutamyl meso diaminopimelate ligase	8.28937336219e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E4D4Y2		0.000234256537237
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0Z8	 Integral membrane sensor signal transduction histidine kinase	0.000234127434117
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q5SHZ8	 8 amino 7 oxononanoate synthase 2 amino 3 ketobutyrate coenzyme A ligase	0.000198752169915
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZQ9		0.000233714276737
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M3F8	 Metal dependent phosphohydrolase	0.000233714276737
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GLI1		0.000233714276737
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WZN7	 General secretion pathway protein G	0.000233714276737
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6FIZ1		0.000233714276737
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8UYM6	 S formylglutathione hydrolase	0.000233714276737
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A3MR63	 UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.000233662080782
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VH17		0.000233654999491
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G8M3K1		0.000233499713744
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B6N6	 HupE UreJ protein	0.000176203433774
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCR0		0.000233454209619
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4QYT8	 Nitrite reductase small subunit	0.000233361795418
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKV8	 Drug resistance transporter, EmrB QacA subfamily	0.000233343825936
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_L0BJA1		0.000233216572618
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RXV8		0.000233174520906
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRH1	 Response regulator receiver protein	0.000233174520906
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSN9	 GTP sensing transcriptional pleiotropic repressor CodY	0.000233174520906
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9J7U7		0.000233174520906
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E7T3N9	 IS150 orfB	0.000233174520906
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8INQ8	 2 dehydro 3 deoxy 6 phosphogalactonate aldolase	0.000233174520906
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AED2	 Universal stress protein A	0.000233174520906
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5UKS9		0.000233107846713
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HJZ6	 HTH domain protein	0.000233095683208
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U3Z0		0.000232916731701
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTI5	 Pentapeptide repeat protein	0.000232907420082
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E9CGB4	 Acyl CoA dehydrogenase	0.000232855576755
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V8W4		0.000232800506631
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G4KST8	 Aminopeptidase	0.000232752459027
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F5XRT1	 UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	0.000232713718893
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M4YXS3	 RNA polymerase sigma factor	0.000232694997719
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUL9		0.000232637252418
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6PR03	 Glycosyl transferase family 2	0.000232502562303
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9S358	 Anthranilate synthase component 1	0.000209424067862
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZR6		0.000232451839431
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E3PS54	 Chemotaxis protein cheV	0.000232413864062
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9RUX7	 TonB domain containing protein	0.000232400320513
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E4BG02	 Dinuclear metal center protein, YbgI family	0.000232362295288
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YR49	 Acetoacetyl CoA synthetase	0.000232339050347
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRY0		0.000232220567034
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX69		0.000232181561998
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023XYH0	 Chromosome partitioning protein ParB	0.000232102454139
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I2YPJ9	 N acetylgalactosamine permease IIC component 1 domain protein	0.000232102454139
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P56793	 50S ribosomal protein L16, chloroplastic	0.000232102454139
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P83221	 Peptidyl prolyl cis trans isomerase cyp18	0.000232102454139
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1CP27	 Transcriptional regulator, Cro CI family	0.000232102454139
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1DDE5	 D tyrosyl tRNA deacylase	0.000232102454139
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R3CWE8	 NCS1 nucleoside transporter	0.000232102454139
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX99	 Carbohydrate binding family V XII	0.000232066094032
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q2J713	 Probable dual specificity RNA methyltransferase RlmN	0.000216160484731
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P43741	 DNA polymerase I	0.000227283335477
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZF26	 TonB denpendent receptor	0.000231935859705
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3LGV5		0.000171126385676
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q2S6J2	 Uridylate kinase	0.000223868220732
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT79	 Periplasmic binding protein LacI transcriptional regulator	0.0002317671246
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1DDZ9	 UPF0061 protein MXAN_0863	0.000231746875126
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M7S7	 Ketopantoate reductase ApbA PanE domain protein	0.000231668823266
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E3GZR7	 C4 dicarboxylate transporter malic acid transport protein	0.000231596881296
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1TWV9		0.000231570109067
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B0VBA7	 Transcriptional regulator 	0.000231570109067
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H087	 Acetate kinase	0.00023131580953
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S0A7	 DcaP like protein	0.000231277570826
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U8XP57	 Chemotactic transducer PctC	0.000231270522651
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0VMD9	 Putative ribosome biogenesis GTPase RsgA	0.000231210477377
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_I6XSN2	 Peptidase, M50 family	0.000231153612789
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8D0W8	 Sulfate thiosulfate import ATP binding protein CysA	0.000106278492154
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V8T9		0.000231040200351
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C3AWX8		0.000231040200351
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VQJ8		0.000231040200351
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P39156	 Putative sugar phosphate isomerase YwlF	0.000231040200351
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R7PVB2		0.000231040200351
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5V9H0	 SAM dependent methyltransferase	0.000231040200351
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F5HTJ7	 Phosphopantetheine attachment domain protein	0.000230922701493
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N8WA96		0.000230883226861
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JYY8	 Ribosomal RNA large subunit methyltransferase K	0.000230798497597
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RX12		0.000230678544492
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q7VL09	 8 amino 7 oxononanoate synthase	0.000142003611183
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q7VL09	 8 amino 7 oxononanoate synthase	8.8643167292e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8AHE6		0.000181264932762
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B6IRS5	 50S ribosomal protein L15	0.000230512711301
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2FEN7	 Sugar  transporter domain protein	0.000230512711301
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P36881	 Putative phosphotransferase enzyme IIA component YadI	0.000230512711301
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P37664		0.000230512711301
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXY1	 50S ribosomal protein L13	0.000230512711301
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RDM8		0.000230512711301
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_T0XBW7		0.000230512711301
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I7B469	 Glycosyl transferase, group 1	0.000230500167503
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8RCZ3		0.000230471371995
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S256	 LysR family transcriptional regulator	0.00023042168832
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4LXR7	 PTS system transcriptional activator	0.000230328070793
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q6VRN6	 Cag17	0.00023024986899
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_H6VX70	 Tyrosine recombinase XerC	0.000230061725678
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q8XV10	 Elongation factor G 1	0.00010800169125
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q8XV10	 Elongation factor G 1	6.42268241398e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q8XV10	 Elongation factor G 1	5.78262127973e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTZ5		0.000229987625399
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4MXR1	 GadE transcriptional activator	0.000229987625399
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VCC8		0.000229987625399
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02HV7		0.000229987625399
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MWY2		0.000229987625399
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B5XJ20	 Bifunctional purine biosynthesis protein PurH	0.000226228223882
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87Y83	 D isomer specific 2 hydroxyacid dehydrogenase family protein	0.000229970054546
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2UZY6	 Penicillin binding protein	0.0002299239317
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q3JN62	 Colicin V processing peptidase	0.000229915632503
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M4Z3	 Transglutaminase domain containing protein	0.000229823696026
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T1ZWS9	 Site specific recombinase, phage integrase family	0.000229810848699
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VC22	 Alpha ketoglutarate dependent taurine dioxygenase  (Sulfate starvation induced protein 3) (SSI3)	0.000229725978499
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUZ9		0.00022970483139
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A0A024C3E3	 Chemotaxis protein	0.000229586939769
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RS47	 Uracil permease	0.000229568967016
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VE40	 DNA polymerase III subunit beta	0.000229475622931
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7KZA9	 Transcriptional regulator, HxlR family	0.00022946492625
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DQE7	 KHG KDPG aldolase	0.00022946492625
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0ET87		0.00022946492625
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7SJ58	 Cof like hydrolase	0.00022946492625
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_T0W257		0.00022946492625
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0W9C8	 Ribosomal RNA small subunit methyltransferase J	0.00022946492625
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5NV67	 tRNA dihydrouridine synthase	0.000229261446723
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_S0EYL5	 Sugar phosphate isomerases epimerases	0.00022919817133
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0J7	 Methyl accepting chemotaxis sensory transducer	0.000229160684034
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B581	 Transcriptional regulator, MarR family	0.000228944597617
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU62		0.000228944597617
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVV3	 GCN5 related N acetyltransferase	0.000228944597617
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JGQ3	 Acetyltransferase  family protein	0.000228944597617
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RMH9	 Thioredoxin reductase	0.000228944597617
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DXM7		0.000228944597617
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2T831	 Transcriptional regulator, MarR family	0.000228944597617
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q32FA3		0.000228944597617
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZLB9	 Probable L asparaginase	0.000228944597617
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4R9J2	 Protein MoaF	0.000228944597617
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S9MC23		0.000228944597617
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T2N9		0.000228944597617
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9SEQ2		0.000228852969647
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S0AB89	 FAD dependent pyridine nucleotide disulfide oxidoreductase	0.000228802997406
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_O86793	 tRNA N6 adenosine threonylcarbamoyltransferase	0.00021101352074
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q21TR5	 Putative ribose galactose methyl galactoside import ATP binding protein	0.0001828654904
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E8U679	 S layer like protein array related protein	0.000228593708156
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P22036	 Magnesium transporting ATPase, P type 1	0.000211958898632
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1I0	 Extracellular solute binding protein, family 3	0.000228555970316
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H7CSE8	 GntR family transcriptional regulator	0.00022854554317
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MV88	 Protein tyrosine phosphatase	0.000228494579134
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B8EQA1	 Alkanesulfonate monooxygenase	0.000228478664301
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E8U932	 UvrD REP helicase	0.000228474398528
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZE6	 Succinate semialdehyde dehydrogenase	0.000228442748711
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C5VTT8	 tRNA specific adenosine deaminase	0.000228426623417
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GJE1	 Predicted transcriptional regulator, marR family	0.000228426623417
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F0JTZ1	 DNA binding transcriptional activator, co regulator with RcsB	0.000228426623417
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F4AEJ0	 NifU like protein	0.000228426623417
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LM52		0.000228426623417
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M4G4	 GCN5 related N acetyltransferase	0.000228426623417
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U4K0	 Hydrolase, NUDIX family protein	0.000228426623417
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FCN6	 tRNA  ) methyltransferase	0.000228426623417
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3TAS5		0.000228426623417
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q4FQM5	 Possible acyl CoA dehydrogenase	0.000228402163852
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TIC3	 DNA mismatch repair protein MutS	0.000228245879728
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q07QX1	 NADH dehydrogenase 	0.000228187004068
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU63	 Metallophosphoesterase	0.000228163927818
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KPZ6	 Oligopeptidase A	0.000228144806391
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M3L5	 Dichlorophenol hydroxylase	0.000228071042304
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_G6EQ26	 SSU ribosomal protein S1P	0.00022801584648
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8PH61	 AdeT, RND type efflux pump	0.000227937675643
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAZ1		0.000227910987699
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F2EY33	 Vitamin B12 binding protein BtuF	0.000227910987699
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q09067	 Urease accessory protein UreH	0.000227910987699
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_C7NCF6	 2 nitropropane dioxygenase NPD	0.000227882075596
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4VZ41	 ATP dependent exoDNAse , alpha subunit helicase superfamily I member	0.000227873219439
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U4A0	 RND family efflux transporter MFP subunit	0.000227778748256
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MXH4	 DNA helicase, Rad3	0.000227708622376
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MZ96	 Sulfate adenylyltransferase subunit 1	0.000227685600789
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX32		0.000227433234925
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9XAS7	 BPS protein	0.000227429112189
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A0K257	 GCN5 related N acetyltransferase	0.00022739767467
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D4GIG3		0.00022739767467
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F507		0.00022739767467
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A8C6	 ATP synthase gamma chain	0.00022739767467
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R9NQT1	 Mannitol repressor protein	0.00022739767467
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0N3	 Iron containing alcohol dehydrogenase	0.000227174412448
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B687		0.000227172959407
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F9FAZ9	 ATP dependent Clp protease proteolytic subunit	0.000226886668651
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVC9	 UPF0176 protein DR_1100	0.000226886668651
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T0V279	 Phage integrase	0.000226886668651
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SU68	 Hydrolase	0.000226886668651
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8V9S2	 Protease	0.000226752574882
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E0W8	 Prophage LambdaSa1, minor structural protein, putative	0.000226727784588
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZX4		0.000226636593602
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9R0R8	 Flavodoxin nitric oxide synthase	0.000226592293803
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0ZZN9	 Aspartate semialdehyde dehydrogenase	0.000226534851173
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ67	 Methyl accepting chemotaxis sensory transducer	0.000226486713782
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GE62	 ATP dependent helicase	0.000226429974714
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B7ITF9	 NADPH dehydrogenase	0.000212261653559
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B316	 Pseudouridine 5 phosphate glycosidase	0.000226377954154
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3MA53		0.000226377954154
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0H1Z5	 1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase family protein	0.000226377954154
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZJ81	 NAD kinase	0.000226377954154
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYV3	 Putative cell wall binding repeat containing protein	0.000226355039942
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6FXN6	 Pseudouridine synthase	0.000226310866228
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VV20	 p aminobenzoate synthetase	0.000226063918638
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4VT34	 ABC type amino acid transport signal transduction system, periplasmic component domain	0.000225871515772
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1R255	 Cell wall binding repeat domain protein	0.000225871515772
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D3HLH2		0.000225871515772
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KHF7		0.000225871515772
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F0LCV8	 Transcriptional regulator, AsnC family	0.000225871515772
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8IRJ3	 TraG TraD family protein	0.000225871515772
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K322		0.000225871515772
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWY0		0.000225867245728
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZBX3	 Peptidase	0.000225843282444
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W5VAG4		0.000225777811435
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VQH1	 ATP dependent helicase	0.000225713549669
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C1DKH4	 Tartrate transporter	0.000225529149699
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7MAB8	 GLYCERALDEHYDE 3 PHOSPHATE DEHYDROGENASE	0.000225430518221
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023LBM1		0.000225367338279
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4CYH2	 Epoxide hydrolase	0.000225367338279
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K0BT25	 DNA binding transcriptional activator	0.000225367338279
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1M9P2	 Stage V sporulation protein AC	0.000225367338279
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AAL7	 Phosphotransferase system protein, mannitol fructose specific IIA subunit	0.000225367338279
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I4L7		0.000225367338279
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U6EYS7	 Chemotaxis protein CheW	0.000225367338279
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VD99		0.000225367338279
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4VWF3	 ATPase component of ABC transporters with duplicated ATPase domains	0.000225361742056
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V8R7W8	 Membrane protein	0.000225316023603
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4MWH4	 Lysophospholipase	0.000225272547382
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F755		0.000225116092648
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6FXK3		0.000225103447159
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VHB7		0.000225026138731
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_J1LSW8		0.000224982720282
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q035Y9	 60 kDa chaperonin	0.000224972467461
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28WH8	 DNA replication and repair protein RecF	0.000224952479385
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZH94		0.000224865406572
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C2VC63	 Fructose bisphosphate aldolase, class II	0.000224865406572
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V9VJ25		0.000222382285664
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q869Z4	 Phosphoenolpyruvate carboxykinase [GTP], mitochondrial	0.000224589522275
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YTR5	 Sensor histidine kinase CsrS	0.000224566551604
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97L63	 Spore photoproduct lyase	0.000224491322309
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MRK8	 Secretion protein HlyD family protein	0.000224452291578
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G0A952	 Inner membrane translocator	0.000224451969541
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A058T6Z9		0.000217920169605
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9SF47		0.000224365705667
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5L287	 ABC transporter 	0.000224365705667
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZA5	 Response regulator	0.000224365705667
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A9R6	 Aminomethyltransferase	0.000177130820264
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RQ56	 Cell cycle protein, FtsW RodA SpoVE family	0.000224261108596
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZLF9	 Ribonucleoside diphosphate reductase subunit alpha	0.000224250695484
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1QDN1	 Aminotransferase	0.000224218764561
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T2I1		0.000224110761572
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GPT5	 Predicted aminoacid permease	0.000224094772409
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F2JJH8	 MATE efflux family protein	0.000224012299936
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9QQ22		0.000223875099852
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYI7	 Polysaccharide deacetylase	0.000223868220732
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E7HP23	 Acyl CoA dehydrogenase, N terminal domain protein	0.000223868220732
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_I1XZ29		0.000223868220732
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J9ZQJ4		0.000223868220732
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DXI3		0.000223868220732
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8J979		0.000223868220732
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V8DNF3		0.000223868220732
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MAL1	 Glycosyltransferase	0.000223755563125
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU03		0.00022367666924
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6AD99	 Transcriptional regulator, LysR family	0.000223562855639
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B9DT77	 6 phospho beta glucosidase 1	0.000223510324774
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9PMT4	 Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.000201994252493
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MG21		0.000223390431803
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D2AE28	 Recombinase regulator for fimA	0.000223372937057
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H1DWM1	 Transaldolase	0.000223372937057
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N8WPF6		0.000223372937057
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3JGP3	 V4R domain protein	0.000223372937057
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZBL9	 Cro Cl family transcriptional regulator	0.000223372937057
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7PG96		0.000223372937057
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y7ZCF6	 NAD dependent deacetylase	0.000223372937057
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_U5P200	 ABC transporter ATP binding protein	0.000223333059475
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9U7J8	 Membrane bound lytic murein transglycosylase B	0.000223327217151
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A009QE54	 TonB dependent siderophore receptor family protein	0.000223298459332
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q08ZN5	 Catalase	0.000223262720369
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KS34	 Transporter, DME family, DMT superfamily	0.000223139465955
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q899I0	 Stage V sporulation protein B	0.000223068725595
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2U1	 Multi sensor hybrid histidine kinase	0.000223019244496
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JX72	 Glutamate ammonia ligase adenylyltransferase	0.000222994990717
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1LWV2	 Response regulator receiver protein	0.000222900061428
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUR8		0.000222900061428
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B1WUS6	 Glutathione S transferase	0.000222879840072
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H075	 PAP2 superfamily protein	0.000222879840072
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9AG33		0.000222879840072
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HAH8	 GDSL like protein	0.000222879840072
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M3ID57	 E1 E2 ATPase	0.000222879840072
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P20356	 Regulatory protein RepA	0.000222879840072
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q896J4	 HPr kinase phosphorylase	0.000222879840072
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R5WWI1	 Sugar efflux transporter	0.00022276835946
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F985	 Protein TolB	0.000222758981487
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7G9B5	 L threonine ammonia lyase	0.000222742801057
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX78		0.00022256476341
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZS6	 Metallophosphoesterase	0.000222509040964
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WTT8		0.00022238891531
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q896N2	 Phosphoserine phosphatase	0.00022238891531
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T6T2	 Polyhydroxyalkanoate granule associated protein	0.00022238891531
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KG73	 GtrA family protein	0.00022238891531
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B9UQU3	 PI 2a backbone protein	0.000222246192999
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88FX9	 Nicotinate dehydrogenase subunit A	0.000209470057162
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V742		0.000221981252322
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q492J8	 Methionine  tRNA ligase	0.000221931619887
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRX4		0.000221900148464
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KRD8	 Anti sigma regulatory kinase	0.000221900148464
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9R3J8	 Transposase, putative	0.000221900148464
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZP3	 LuxR family transcriptional regulator	0.00022179334138
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V326	 Mate efflux family protein	0.000221737940748
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D5UV60	 Acyl CoA dehydrogenase domain protein	0.000221720745039
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q2JFL7	 NADH quinone oxidoreductase subunit D	0.000127159404973
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q2JFL7	 NADH quinone oxidoreductase subunit D	7.86941290332e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1V3L9		0.000214219833783
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0H3E7		0.000221581111819
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P57000	 Glutamine  tRNA ligase	0.000217113048079
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TLB0	 Diguanylate cyclase phosphodiesterase domain 2	0.000221545282604
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F9W4	 LPS assembly protein LptD	0.000221539493205
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M273		0.000221535047573
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR78		0.000221413525327
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FBS8		0.000221413525327
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B3DRA9	 Deoxyuridine 5 triphosphate nucleotidohydrolase	0.000221413525327
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G0AH50	 Thiol peroxidase, Bcp type	0.000221413525327
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M254		0.000221413525327
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I2BS77	 Transcriptional regulator, LysR family	0.000221413525327
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K7A9D1	 Inner membrane transport permease	0.000221413525327
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VF88	ubiquinone oxidoreductase subunit J	0.000221413525327
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IZ80	 Potassium proton antiporter regulatory subunit, CPA2 family	0.000221413525327
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YSZ8	 Transcriptional regulator RofA	0.000221055544569
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K1L0		0.00022095548103
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1X0	 ThiW protein	0.000220929031837
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V309	 Lipoprotein, putative	0.000220929031837
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZMU2	 UPF0266 membrane protein YobD	0.000220929031837
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0WZB8		0.000220929031837
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7AGV1	 Allantoinase	0.000220929031837
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q890M8	 Tetracycline resistance protein	0.000220929031837
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JV11	 UPF0307 protein NMA1049	0.000220929031837
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JY91	 L asparaginase I	0.000220929031837
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q9K9X4	 Transposase related protein 	0.000220929031837
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X2H7D0		0.000220929031837
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X5ETW2	 Peptidase, M50 family	0.000220929031837
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7GVD0	 LysR substrate binding domain protein	0.000220782777866
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P69829	 Nitrogen regulatory protein	0.000209905545844
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N5L0		0.000220615863404
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9NUL2	 ABC transporter, permease protein	0.000220567116691
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E0NNQ0		0.000220458319414
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9KKE8	 CylI	0.000220410553208
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZL53	 Cadmium, zinc and cobalt transporting ATPase	0.000220354885192
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZV7	 Transcriptional antiterminator, BglG	0.000220346627179
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E7B190	 Methyl viologen resistance protein smvA	0.000220262432493
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P43010	 NAD transhydrogenase subunit beta	0.000156796801723
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KX97	 Glycosyl transferase, family 2	0.000220232444633
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6WUZ5	 ROK family protein	0.000220052503945
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VAU8		0.00021996637811
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q67JS9	 50S ribosomal protein L1	0.00021996637811
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RT82		0.00021996637811
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9V9M5		0.000219880818342
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q2J4N0	 Phosphoribosylformylglycinamidine synthase 1	0.000209470057162
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LPE8	 C4 dicarboxylate transporter	0.000219746411725
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1C8	 Flagellar hook associated protein FlgK	0.000219715261127
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98IL7	 Mlr2347 protein	0.000219615399759
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WY58	 CobB CobQ domain protein glutamine amidotransferase	0.000219607607193
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7UAA9	 Transporter, major facilitator family protein	0.000219576810577
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F4LTT4	 DNA methylase N 4 N 6 domain protein	0.000219537014302
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT46		0.000219488190331
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C5C3V4	 Dihydrodipicolinate synthetase	0.000219488190331
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E8U5H6		0.000219488190331
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F7Y3H5	 Enoyl CoA hydratase	0.000219488190331
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q49890	 Tyrosine recombinase XerD	0.000219488190331
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HUB0	 UPF0158 protein PA5073	0.000219488190331
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4X352	 Major facilitator superfamily  metabolite H+ symporter	0.000219475246209
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3YAK9	 Proline iminopeptidase	0.00021945095581
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWE8	 Ribonucleoside triphosphate reductase, adenosylcobalamin dependent	0.000219442744442
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ49	 Transcriptional regulator, LysR family	0.000219439475523
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H7CZX2	 DNA replication protein DnaC	0.000219398858547
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JHE9	 Nitrate transport ATP binding protein nrtC	0.000219225251498
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VFU9		0.000219103050225
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V5WU09	 Transcriptional regulator	0.000219023665057
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU52	 Propionyl CoA carboxylase, beta subunit, putative	0.000219019228017
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I5Q788	 Putative ATP binding component of a transport system	0.000219012077121
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_R5WIV5	 MFS transporter AraJ	0.000219012077121
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9BP26	 Amidase	0.000218818469264
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q3IF99	 Twitching motility protein PilU 	0.000218812371822
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M2M8	 G3E family GTPase like protein	0.000218775051057
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Y4MH80		0.000218673698038
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MNS8	 Permease	0.000218613264343
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VFD9	 Osmosensitive K+ channel histidine kinase KdpD	0.000218592620522
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q67KN9	 NADH quinone oxidoreductase subunit D 2	0.000218579121852
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VCT1	 Lysophospholipase	0.000164170028542
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25916	 Replicative DNA helicase	0.000218561127149
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_C1CYZ3		0.000218538025002
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4L8W0		0.000218538025002
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G2TPA3	 PfkB domain protein	0.000218538025002
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K0B2S0		0.000218538025002
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L1FHD3		0.000218538025002
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J584	 Tetratricopeptide repeat protein	0.000218538025002
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXB7		0.000218538025002
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSR9	 Oligoendopeptidase F, putative	0.000218531632946
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N3H4	 Exopolysaccharide biosynthesis protein	0.000218396641289
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q56998	 UvrABC system protein B	0.000218243320001
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6T197	 Chitin binding protein CbpD	0.000218240845228
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C6XRQ8		0.000218066020627
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G9WDQ0	 Arginine agmatine antiporter	0.000218066020627
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RLA6		0.000218040664748
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MMQ6	 Stage II sporulation P	0.000217959462955
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWU2	 ABC transporter related	0.000217774172579
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9MP20		0.000217637934485
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SY76	 ATPase AAA	0.000217637812186
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G2CHD9	 Oxygen insensitive NADPH nitroreductase	0.000217596050757
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QB47	 Escherichia coli IMT2125 genomic chromosome, IMT2125	0.000217596050757
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_K9ZYD2	 Exodeoxyribonuclease III	0.000217596050757
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q9X2I3	 Septum site determining protein MinD	0.000217596050757
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8G0X5	 Cell wall binding protein	0.000217596050757
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9WZR6	 Molybdate ABC transporter substrate binding protein	0.000217596050757
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4SJH6	 NADH quinone oxidoreductase subunit D 1	0.00019749030538
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MXQ5	 Amylopullulanase AmyB	0.000217232901361
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M911	 Major facilitator superfamily MFS_1	0.000217220617345
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5ULZ5	 Methyl coenzyme M reductase, D subunit, McrD	0.00021712810226
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0QNA7		0.00021712810226
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YYE2	 Cobalt transport protein CbiQ	0.00021712810226
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1QWQ5	 6 phosphogluconate dehydrogenase, NAD binding protein	0.00021712810226
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5JK63	 Hypoxanthine phosphoribosyltransferase	0.00021712810226
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_T1UA89	 Neuraminyllactose binding hemagglutinin family protein	0.00021712810226
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4KTJ1	 ABC type Fe3+ hydroxamate transport system, periplasmic component	0.000217057118151
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q46VJ2	ABC transporter, substrate binding protein, aliphatic sulfonates	0.000217014499826
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YWL1	 ABC transporter	0.000216978224367
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7WB79	 Succinate dehydrogenase flavoprotein subunit	0.000216839319547
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8G0S1	 Glycosyl transferase family 4	0.000216830999774
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D1BK43		0.000216766202188
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q03027	 Alkaline protease secretion protein AprF	0.000216742119675
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U7D4	 Sugar binding periplasmic protein	0.000216720387022
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D7CXV9	 Electron transfer flavoprotein alpha beta subunit	0.000216662162129
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1I6F8		0.000216662162129
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JMU8		0.000216662162129
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U769	 Translocase subunit	0.000216662162129
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RW85	 MutT nudix family protein	0.000216662162129
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V6F9W2		0.000216662162129
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX56	 PAS PAC sensor signal transduction histidine kinase	0.000216618202429
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q21M93	 DNA directed RNA polymerase subunit beta	0.000209562654846
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9MRK7	 Choline transporter	0.000216525162509
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W0U8	 Adenine phosphoribosyltransferase	0.000184241911585
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MRE5	 General secretion pathway protein D	0.00021635876007
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A0JSX3	 Carbohydrate ABC transporter membrane protein 1, CUT1 family	0.000216355333847
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MRV5	 Neutral endopeptidase PepO	0.000216300617978
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MLW2	 dTDP glucose 4,6 dehydratase 2	0.000216214079904
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E3GEX1	 Glyoxalase	0.000216198217452
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MT85	 Sulfite reductase	0.000216198217452
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V7C6		0.000216088770316
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4KEY4	 Chitinase	0.000216088665646
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5VPY7	 Phosphorylase	0.000215946062008
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_L7VT83	 Chemotaxis protein	0.000215837136829
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J1R8	 Tfp pilus assembly pathway, ATPase PilB	0.000215788783847
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q1QCP2	 tRNA 2 thiocytidine biosynthesis protein TtcA	0.000215784530715
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0GKZ5	 Asparagine synthetase	0.000215739131866
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4CYJ0	 Alcohol dehydrogenase GroES domain protein	0.000215736255456
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F0VS49	 Pseudouridine synthase	0.000215736255456
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0CI74		0.000215736255456
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4VR51	 YcbB domain protein	0.000215736255456
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5K3N6		0.000215736255456
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2JHN6	 Integral membrane sensor signal transduction histidine kinase	0.000215684230111
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZIA7	 Cell surface protein	0.00021567024673
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q2FD95	 AdeI	0.000215629012902
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GMQ7	 Predicted acyl CoA thioesterase 1	0.000215576569108
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MQI3	 Thiamine biosynthesis lipoprotein ApbE	0.000215506259443
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W887		0.000181313513197
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M469	 Drug resistance transporter, EmrB QacA subfamily	0.000215491297908
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_H2A7K3	 COG4478, integral membrane protein	0.000191583619638
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WY70		0.000215276263431
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WCM3	 Peptidoglycan binding LysM	0.000215276263431
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HFA9		0.000215276263431
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JHR5		0.000215276263431
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_O27714	 Transcription elongation factor Spt5	0.000215276263431
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AEW0	 Hydrogenase 3 maturation protease	0.000215276263431
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZJ8	 Cell division inhibitor SulA	0.000215276263431
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_R1ALN2		0.000215276263431
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S4YYU3	 GntR family transcriptional regulator	0.000215276263431
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8H2S9	 Glucokinase	0.000215276263431
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MPS5	 Acetyltransferase	0.000215276263431
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A014FPC4		0.000215232197334
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YY95		0.000215099640317
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VN57	 Oxidoreductase, molybdopterin binding	0.000215094970585
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M335	 1,4 alpha glucan branching enzyme	0.000215094705391
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5PNN3	 Hydrogenase expression protein HypA	0.000214948351001
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RHG4		0.000214943953307
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M260	 ABC transporter related	0.000214894257941
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSX8		0.000214863391922
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VDI3	 Polyhydroxyalkanoate synthesis protein PhaF	0.000214853243398
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HBC2	 Transporter, CPA2 family	0.000214820139519
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M6B4		0.000214818228835
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LLE1		0.000214818228835
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZRL4	 Transposase	0.000214818228835
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H3VMS8		0.000214818228835
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YRQ7	 ABC transporter ATP binding protein	0.000214818228835
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DZS0		0.000214818228835
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N8UCZ7	 Magnesium translocating P type ATPase	0.000214785327643
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VHU4	 DNA gyrase topoisomerase IV, A subunit	0.000214695624633
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6SY16		0.000214650342257
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HU63		0.00021456992835
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DV19	 Efflux ABC transporter, permease protein	0.000214568963059
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RS79	 Dipeptidyl peptidase IV related protein	0.00021453213806
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X2HD61	 Phosphopantothenoylcysteine decarboxylase   Phosphopantothenoylcysteine synthetase	0.000214525566226
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I1L9	 Dihydrolipoyl dehydrogenase	0.000180000391728
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2V9F3	 Gamma glutamyl phosphate reductase	0.000214415155545
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A010YSV0	 Bifunctional uridylyltransferase uridylyl removing enzyme	0.000214395785068
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TLC2	 Integral membrane protein	0.000214362139171
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TMR7		0.000214362139171
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E4SGC1	 ABC transporter related protein	0.000214362139171
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F0KMH7	 Acridine efflux pump 	0.000214362139171
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8FY64	 AsnC family transcriptional regulator	0.000214362139171
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G8RCU4	 Tagatose 6 phosphate kinase	0.000214362139171
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P20925	 Frd operon probable iron sulfur subunit A 	0.000214362139171
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MNE1	 Transcriptional regulator, MarR family	0.000214362139171
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0Z1B4	 Hypoxanthine guanine phosphoribosyltransferase	0.000214362139171
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI00047C2C2F	 selenate reductase subunit YgfK, partial	0.000211795686046
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1LU43	 ABC type multidrug transport system, permease component	0.000214212108429
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q04939	 Sucrose operon repressor	0.000214150232405
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MMN5	 Sensor protein GtcS	0.00021409449019
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A013LFH7		0.000214021881814
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VGZ3		0.0002139079821
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RNQ7	 Autotransporter A	0.0002139079821
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_J7IXF3	 Response regulator with CheY like receiver domain and winged helix DNA binding domain	0.0002139079821
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_L7VNU0		0.0002139079821
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MJY9	 Transcriptional regulator, MarR family	0.0002139079821
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L1ENB1	 4Fe 4S binding domain protein	0.000213696557823
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MPW8	 Lysophospholipase L2	0.000213680793569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7M996		0.000213455745355
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VJJ1	 Poly depolymerase	0.000213455745355
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_N0APD9		0.000213455745355
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48K36	 Potassium transporting ATPase B chain	0.000213411321248
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWY1	 Serine threonine protein kinase related protein	0.000213119931792
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VFL4	 Cystathionine beta synthase	0.000213099266172
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A4W401	 Polyribonucleotide nucleotidyltransferase	0.000213049871782
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M080	 Transcriptional regulator, PadR like family	0.00021300541678
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1M4		0.00021300541678
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G2TQW7	 Phosphotransferase system PTS sorbose specific IIC subunit	0.00021300541678
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU29		0.00021300541678
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUC1	 SsrA binding protein	0.00021300541678
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SXH1	 Membrane protein	0.00021300541678
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W6QZB6	 6,7 dimethyl 8 ribityllumazine synthase	0.00021300541678
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MZJ7	 Lipopolysaccharide N acetylglucosaminyltransferase	0.000212953632578
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRT4		0.00021283413977
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_K9VMS4	 UDP galactopyranose mutase	0.000212782080905
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N7Z4	 Predicted kinase	0.000212780013595
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A013Y7Z1	 His Kinase A domain protein	0.00021274833368
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KMR7	 3 oxoacyl  synthase I	0.000212615085399
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E4BHA0	 4 phosphoerythronate dehydrogenase	0.000212556984319
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6SK88		0.000212556984319
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WZP2		0.000212556984319
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P21482	 Disulfide bond formation protein B 1	0.000212556984319
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9U0L1	 Transcriptional regulator	0.000212534624019
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRZ3		0.000212425981157
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JFF2	 Major Facilitator Superfamily protein	0.000212299712506
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EKX8		0.000212166234511
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A011F836	 TonB dependent Receptor Plug domain protein	0.000212156317589
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q1D5H7	 Mutator mutT protein	0.000212110436028
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q5X183		0.000212110436028
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_H8H715		0.000155330103929
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F9VK25	 Stage IV sporulation protein B	0.000211826918708
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ANH9	 RNA polymerase sigma 54 factor	0.000211743658894
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MNN3	 Glycerate dehydrogenase HprA	0.000211667853212
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A3CPS6	 Acetyltransferase, putative	0.000211665760065
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A3DJH8	 30S ribosomal protein S3	0.000211665760065
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JKV6		0.000211665760065
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SR21		0.000211665760065
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YRJ0		0.000211665760065
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RNJ0	 RNA polymerase sigma 70 factor, ECF subfamily	0.000211665760065
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI0002BAE276	 hypothetical protein	0.000211665760065
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_D4DM85	 DNA gyrase, B subunit, C terminal domain protein	0.000211628453456
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6A8S2	 Benzoate specific porin	0.000211627049695
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F2LP18		0.000211607068363
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A6W862	 D isomer specific 2 hydroxyacid dehydrogenase NAD binding	0.000211596294302
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_L9LRB5	 Phage like baseplate assembly protein	0.000211594988336
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WZI6	 Molybdenum cofactor sulfurylase	0.000196812022518
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT50		0.000211554940296
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M8Q2	 Methyl accepting chemotaxis sensory transducer	0.000211451926844
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q98M95	 Glutamyl tRNA amidotransferase subunit A	0.000172971307968
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXY0	 D galactose binding periplasmic protein	0.000211353236796
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6KYS6	 S ribosylhomocysteine lyase	0.000211222944667
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H3X0	 Bacterial regulatory helix turn helix protein, AraC family protein	0.000211222944667
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8ZZL4	 EtfB protein	0.000211222944667
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9V971	 NADH quinone oxidoreductase subunit C	0.000211222944667
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q39F94	 Polysaccharide deacetylase	0.000211222944667
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5VZZ2	 Cyclic pyranopterin monophosphate synthase	0.000206086402542
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYZ3		0.000211184162531
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7FPS5	 DEAD DEAH box helicase	0.000211075489268
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KP52		0.000211070306313
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VD13		0.000211050476236
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RL22	 Arginine  tRNA ligase	0.000210938322825
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C3DTJ7	 Carbon starvation protein A	0.000162225264601
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C3DTJ7	 Carbon starvation protein A	4.86810836748e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D1APR3	 Deoxyribose phosphate aldolase	0.000210781978183
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MVJ3	 Isochorismatase hydrolase	0.000210781978183
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MNP0		0.000210655294881
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T2J2	 S8 S53 family peptidase	0.000210589891427
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7WCS7	 Integral membrane component of multidrug efflux system	0.000210423016392
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TQ47	 Shikimate kinase	0.000210342849062
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5S8G4	 N acetylglucosamine regulated outer membrane porin	0.000210342849062
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4QAU1		0.000210342849062
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8CD77	 Outer Membrane Siderophore Receptor IroN	0.000210342849062
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P77219		0.000210342849062
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S1T6T5	 Glutathione peroxidase	0.000210342849062
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S4YUV8	 ABC transporter	0.000210277342109
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C9X377	 Transferrin binding protein like lipoprotein 	0.000210202154805
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51548	 L ornithine 5 monooxygenase	0.000210142401056
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q981X2	 D amino acid dehydrogenase 3 small subunit	0.000204497287824
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0AZ30	 Extracellular solute binding protein, family 1	0.000210084294989
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZB9	 O antigen transporter RfbX, putative	0.000210076672568
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O87014	 USG 1 protein homolog	0.000209905772661
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX14	 GCN5 related N acetyltransferase	0.000209905545844
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_D3E438	 Transcriptional regulator	0.000209905545844
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DU47	 Myo inositol catabolism IolH protein	0.000209905545844
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2GFP3		0.000209905545844
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWT4		0.000209905545844
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_L1NZC1	 Peptidase, M61 family	0.000209834492312
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G2PAE6	 Oligopeptide dipeptide ABC transporter, ATPase subunit	0.000209778058491
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W4UK26		0.000209713202113
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1Q8	 Periplasmic binding protein LacI transcriptional regulator	0.000209687575388
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MR71	 PGA biosynthesis protein CapA	0.00020959182041
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_J4KJZ5	 TonB dependent siderophore receptor	0.00020959072135
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D1AIE5	 Selenate reductase YgfK	0.000209507974516
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7GXG8	 Short chain dehydrogenase family protein	0.000209470057162
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C0ZTQ3		0.000209470057162
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P07771	 Benzoate 1,2 dioxygenase electron transfer component	0.000209470057162
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P52039	 Electron transfer flavoprotein subunit alpha	0.000209470057162
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRG5		0.000209470057162
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VK02	 Isoleucyl tRNA synthetase	0.000209291683384
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_R9BBW4	 HAE1 family hydrophobic amphiphilic exporter 1 	0.000209155570728
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IYN7	 Amidase	0.000209151479876
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7VAX6	 Quorum sensing control repressor	0.000209036371737
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8CXX9	 Predicted nucleotide kinase	0.000209036371737
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HA77		0.000209036371737
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0N3E0	 Cytoplasmic membrane protein fxsA	0.000209036371737
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MCL8	 PRC barrel domain protein	0.000209036371737
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VAR6	 Sugar transport protein	0.000209036371737
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0I0A4	 CheW protein	0.000209036371737
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_W6ELT6	 Glutathionylspermidine synthetase	0.000209036371737
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H7CVA1	 Iron chelate ABC transporter permease protein	0.000209016924942
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_T3I3Z9	 Homocitrate synthase	0.000208946669838
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q9X806	 Ubiquinol cytochrome c reductase cytochrome b subunit	0.000208789370939
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E0T020	 Phage terminase like protein, large subunit	0.000208734387443
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HXY3	 Putative zinc metalloprotease PA3649	0.000208730614659
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9FNM5	 Translation factor GUF1 homolog, chloroplastic	0.000147883596875
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q9FNM5	 Translation factor GUF1 homolog, chloroplastic	6.07854109316e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX97	 RNA polymerase, sigma 28 subunit, FliA WhiG family	0.000208604478414
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5ZIL6		0.000208604478414
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H2JCZ5	 Glycopeptide antibiotics resistance protein	0.000208604478414
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JWE5	 Homoserine kinase	0.000208604478414
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P42455	 2 isopropylmalate synthase	0.000204194098841
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q0VM47	 Type II secretion system protein, putative	0.000208372245248
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E1M6K4	 Aldehyde alcohol dehydrogenase 2	0.000208315566022
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_X5A2G4	 Epoxide hydrolase domain containing protein	0.000208310551011
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q48S90	 Membrane protein	0.000208284376017
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_L0EBD3	 Lipoprotein, YaeC family	0.000180293870626
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q5HQ23	 Non canonical purine NTP pyrophosphatase	0.000181590948835
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O34162	 Oxygen independent coproporphyrinogen III oxidase	0.000208197748933
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A030XYN1		0.000208174366085
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0A3		0.000208174366085
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWM0	 Positive regulator of sigma E, RseC MucC	0.000208174366085
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U3TMG0	 ATP dependent transcriptional regulator, MalT like, LuxR family	0.000208094730544
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q2KBF3	 Tetracycline efflux transporter protein	0.000208008651001
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A6QBY0	 3 oxoacyl [acyl carrier protein] synthase 3	0.000114084257117
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_L0F2G6	 ABC type dipeptide oligopeptide nickel transport system, permease component	0.000207783191377
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VJV8	 Allantoate amidohydrolase	0.000207782895531
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V9R6	 Nucleoid associated protein PSPA7_4451	0.000207746023765
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2UX09		0.000207746023765
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E3D189	 Adhesin MafB2	0.000207746023765
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M515		0.000207746023765
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M8F7		0.000207746023765
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7EUJ1	 Acetyltransferase domain containing protein	0.000207746023765
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0I5D9	 Protease	0.000207746023765
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5FPX3	 tRNA pseudouridine synthase A	0.000207746023765
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X3EGM7		0.000207746023765
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q72KJ4	 Pili assembly protein pilC	0.000207655421999
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P57011	 Signal recognition particle receptor FtsY	0.000207639268365
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY03	 ABC transporter related	0.000207398079238
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A7GYI2	 Lipoprotein, nlpa family	0.000207354509797
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9C285	 Hydrolase, TatD family	0.000207319440552
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9NW45	 Trehalose utilization	0.000207319440552
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q12GA5	 Dyp type peroxidase	0.000207319440552
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V4D8C9	 Transcriptional regulator	0.000207319440552
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_T4ZWD9	 Membrane protein	0.000207309431914
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JKE9	 Outer membrane porin protein	0.000207105838237
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5NQ43	 Adenylate kinase	0.000198358678878
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTV0	 Fibronectin, type III domain protein	0.000206935858693
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XDU7	 Aromatic ring hydroxylating dioxygenase, beta subunit	0.000206894605641
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B4U552	 Zinc binding lipoprotein LraI, laminin binding protein	0.000206894605641
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7BLM1	 Binding protein dependent transport systems inner membrane component	0.000206894605641
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U3A1	 TRAP T family transporter small inner membrane subunit	0.000206894605641
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XI79	 Putative pyruvate, phosphate dikinase regulatory protein	0.000206894605641
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSZ4		0.000206894605641
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_H3TMN5	 Hemagglutinin	0.000206757307732
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3JUL5	 Benzoate transport protein	0.00020663579327
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWX5	 Acriflavin resistance protein	0.000206565299254
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S8U6	 CvpA family protein	0.000206486416606
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HD87	 Histidine kinase	0.000206477200036
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXY4	 Transcriptional regulator, TetR family	0.000206471508289
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B5XIZ5		0.000206471508289
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7A454	 Sensory box containing diguanylate cyclase	0.000206471508289
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D5HEW0	 Carbohydrate ABC transporter membrane protein 1, CUT1 family 	0.000206471508289
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JHQ9	 Histone acetyltransferase HPA2	0.000206471508289
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K4NFJ8		0.000206471508289
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K681	 Dihydrofolate reductase	0.000206471508289
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5NRL6	 Ribonuclease PH	0.000157021100386
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_I0DZ31	 Major facilitator transporter	0.000206439033995
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JIT2	 ABC type spermidine putrescine transport system, ATPase component	0.000206417799319
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VGJ3	 Two component sensor PhoQ	0.000206396744885
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3F1H1	 Ribosomal silencing factor RsfS	0.000206050137856
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YZR8	 Iron transport system substrate binding protein	0.000206050137856
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_K0M3L5	 Hemolysin	0.000206050137856
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6G0X7	 Rubrerythrin	0.000206050137856
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P40740	 Aryl phospho beta D glucosidase BglH	0.000165537917534
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZKN1		0.000186196521995
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVW2	 3D domain protein	0.000205630483811
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B6JMC7	 Phosphotransacetylase	0.000205630483811
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6EIP4		0.000205630483811
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E8Q9Y2	 Abortive infection protein AbiGI	0.000205630483811
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M1N6	 Phage tail tape measure protein, TP901 family	0.000205579209995
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_F8KPC2	 Arginase	0.000205577002233
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8P9Z6	 DNA repair protein RecN	0.000205290274089
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2HZ46		0.0002052540844
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E6VPP7	 NADH ubiquinone plastoquinone oxidoreductase chain 6	0.000205212535673
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E9WKH8	 Kelch domain containing protein	0.000205212535673
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F9V7A7	 Mannose specific PTS system IID component	0.000205212535673
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I4SK17	 Cytochrome C peroxidase	0.000205212535673
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75737		0.000205212535673
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A6S0		0.000205212535673
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVH9	 Phosphotransacetylase	0.000205136304214
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KWI3	 Thiamine pyrophosphate enzyme TPP binding domain protein	0.000205082711363
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KNV9	 Acyl CoA dehydrogenase	0.000204909547185
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AAJ1	 DNA or RNA helicase of superfamily II	0.000204874177984
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G8V0K4	 Surface protein G	0.000204803866865
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024E8N7	 LysR family transcriptional regulator	0.000204796283063
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWW9		0.000204796283063
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXB8	 SCP like extracellular	0.000204796283063
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RY97		0.000204796283063
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P0CZ01	 Hyaluronate lyase	0.000204770609419
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2B6	 PTS system, lactose cellobiose family IIC subunit	0.000204724531846
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZMH8	 Putative zinc metalloprotease jhp_0242	0.000204599080554
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UY33	 Succinylglutamate desuccinylase	0.000204596350139
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY24	 Amino acid permease associated region	0.000204394539061
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B4S0J5	 Phosphatidylserine decarboxylase proenzyme	0.000204381715693
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1RTE5	 Peptidase T	0.000204381715693
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VHP6	 Membrane associated protein	0.000204381715693
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P53652	 Superoxide dismutase [Mn]	0.000204381715693
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2T753	 Alpha ketoglutarate dependent taurine dioxygenase	0.000204381715693
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_S5RIW0		0.000204241324401
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MKZ1		0.00020422012167
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_I1VJZ3	 PhoH	0.000204110560293
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HAW3		0.000203968823335
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D7B4P4		0.000203968823335
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VA48	 Lactate malate dehydrogenase, NAD binding domain protein	0.000203968823335
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PQM7	 Glycosyl transferase, group 2 family protein	0.000203968823335
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VHZ8		0.000203968823335
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F8Q1	 Protease HtpX	0.000203968823335
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAV5		0.000203926332912
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4Z8S0	 Conserved domain protein	0.000203914368025
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9QZA2	 ABC transporter related protein	0.000203911681156
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_N0C372	 LytR family transcriptional regulator	0.000203903230069
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A0A024C0E9	 LPS biosynthesis protein	0.000203816430274
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I399		0.000180616399917
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7LAA9		0.000203743623634
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DRS5	 Sugar binding protein	0.000203696753247
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VKL1	 Aminopeptidase	0.00020366976462
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8FZJ8	 Major facilitator transporter	0.000203639626596
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HMC2		0.000203610413135
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TJ37	 DNA uptake protein	0.00020358944032
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VE97	 Transcriptional regulator, LysR family	0.000203557595873
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F3BY18		0.000203557595873
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K6UZ95	 Benzoate transport porin BenP	0.000203557595873
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8BL74	 Cellulose synthase operon protein C	0.000203557595873
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4QZ02	 Ribosomal RNA small subunit methyltransferase D	0.000203557595873
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q896W6	 Conserved protein	0.000203557595873
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WR60	 von Willebrand factor, type A	0.000203456387153
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L4X9	 Asparagine synthetase	0.000203441658927
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1S0	 Glycoside hydrolase, clan GH D	0.000203432995682
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX09	 Transcriptional antiterminator, BglG	0.00020341885616
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K7YBZ8		0.00020341224815
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTV8		0.000203330236449
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HFG5	 ABC transporter, solute binding protein	0.000203304759737
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KKM3		0.000203287302216
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSH5	 Membrane protein insertase YidC	0.000203258130574
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXN5	 Methyl accepting chemotaxis sensory transducer	0.000203225028614
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V967		0.000203148023241
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A8IE40	 Chromate transport protein	0.000203148023241
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8KED5	 Probable thiol peroxidase	0.000203148023241
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_UPI00030600C0	 cyclopropane fatty acyl phospholipid synthase	0.000203148023241
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8M5I9	 Potassium transporter Kup	0.000202985088682
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XSQ7	 Transcriptional regulator, AraC family	0.000202964857331
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYV3	 Oxidoreductase, putative	0.000202912118004
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_X2HYV0	 Membrane protein	0.000202778190807
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RQK0		0.000202740095483
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A0LK05	 2 dehydro 3 deoxyphosphooctonate aldolase	0.000202740095483
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TRU1		0.000202740095483
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E5C1		0.000202740095483
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E8U7F9	 Response regulator receiver protein	0.000202740095483
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0LRB0	 Ferrous iron transport protein B	0.000202740095483
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VAJ1		0.000202740095483
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02N09		0.000202740095483
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q03PY9	 50S ribosomal protein L13	0.000202740095483
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K347	 Nitroreductase	0.000202740095483
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MLA9		0.000202740095483
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E8QKL2		0.000202710743882
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N8PWN0	 DNA ligase	0.000202703950198
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q896N6	 Thymidylate kinase	0.000202584790513
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_J1AY66		0.00020249970642
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q3JM24	 Potassium efflux system protein	0.000202437358871
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YF75		0.000202333802704
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U3TT47	 Heme exporter protein B1	0.000202333802704
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RQI7	 Anhydro N acetylmuramic acid kinase	0.000202281228021
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25722	 DNA translocase FtsK	0.000202267777642
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6RV19	 Adenylosuccinate lyase	0.000202232940222
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D3MIV3	 Peptidase, M16 family	0.000202131266368
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N9PED4	 Ferrous iron transporter B	0.000202097293316
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A4SZM1	 Glutamine  tRNA ligase	0.000198140021853
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0MUC7	 RND transporter	0.000202072580441
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q17WK3		0.000202049517902
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX22		0.000201929135102
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M010	 GCN5 related N acetyltransferase	0.000201929135102
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C8WV62	 Transcriptional regulator, MarR family	0.000201929135102
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F1UR15	 BNR Asp box repeat protein	0.000201929135102
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQR2		0.000201903691163
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GZA7		0.00020188998802
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q892X8	 Oligoendopeptidase F	0.000201851614548
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MQ23	 Pseudaminic acid biosynthesis associated protein PseG	0.000201778833543
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S2A4	 Anhydratase	0.000190140428536
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J2F940	 Multidrug efflux RND transporter, membrane fusion protein MexE	0.000201752300418
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E1D0		0.000201704804242
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DS62	 Multifunctional hydroxymethylpyrimidine phosphokinase 4 amino 5 aminomethyl 2 methylpyrimidine hydrolase	0.000201670853361
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76192		0.00020160441498
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAX3		0.000201550992942
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A6X351	 Iron containing alcohol dehydrogenase	0.000201527086057
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_I3UXJ0	 Homocysteine S methyltransferase	0.000201526082933
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4JZP0		0.000201526082933
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6RK04	 Tryptophan repressor binding protein	0.000201526082933
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P68398	 tRNA specific adenosine deaminase	0.000201526082933
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXT9	 Thiosulfate sulfurtransferase	0.000201526082933
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_UPI0002BA87F0	 hypothetical protein	0.000201526082933
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TLC0	 Aminotransferase, class V	0.000201519171697
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E4RHP3	 NCS1 nucleoside transporter	0.00020116989257
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RVY2	 Peroxidase	0.000201124636555
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VHV5	 Transcriptional regulator	0.000201124636555
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0SRF8	 Endoribonuclease YbeY	0.000201124636555
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q3IL08	 Deoxycytidine triphosphate deaminase	0.000201124636555
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FEF0		0.000201124636555
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2DY30	 Bacterial regulatory helix turn helix , lysR family protein	0.000201124636555
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5ZX61	 Rrf2 family transcriptional regulator	0.000201124636555
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RTE7	 UvrD REP helicase	0.000201064792968
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV36	 Integral membrane sensor signal transduction histidine kinase	0.000201035731912
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FBR2		0.000200922731046
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q9FKK7	 Xylose isomerase	0.000190781721787
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P0A5S1	 PhoH like protein	0.000200850872534
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5LYA1		0.000200824649461
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YR23	 AMP binding protein	0.000200788724682
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TJK8	 Spore coat protein, CotS family	0.000200734505397
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RZ85	 Acyltransferase	0.000200724786386
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UNY3	 CDP diacylglycerol  glycerol 3 phosphate 3 phosphatidyltransferase	0.000200724786386
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DF31	 Transcriptional regulator, AraC family	0.000200724786386
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ARH0	 Biotin transport ATP binding protein BioM	0.000200724786386
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F4W9	 Maf like protein NGO2175	0.000200724786386
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6HE72		0.000200724786386
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZDW6	 Cro Cl family transcriptional regulator	0.000200724786386
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9AQ51		0.000200724786386
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MN80		0.000200724786386
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9X6V6	 RlpA like lipoprotein	0.000200656020994
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P32016	 Capsule polysaccharide export ATP binding protein CtrD	0.00018257607152
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T1P2	 Sulfate permease	0.000200459509022
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0N1J6	 Sensor histidine kinase	0.0002003487444
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VAP8		0.000200329477422
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024JQQ2	 Plasmid pSG, complete sequence	0.000200326522916
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7GXS6	 5 formyltetrahydrofolate cyclo ligase	0.000200326522916
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C9XLF6	 NUDIX family protein	0.000200326522916
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D5HIW6	 Phosphate ABC transporter membrane protein 2, PhoT family 	0.000200326522916
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RMK3	 Peptidase S54, rhomboid domain protein	0.000200326522916
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N4GJN2	 MFS sugar transport family protein	0.000200326522916
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q62MT4	 Methionyl tRNA formyltransferase	0.000200326522916
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MY05	 SH3, type 3 domain protein	0.000200326522916
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E3T3		0.000200104450502
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9R3W0	 PTS system, lactose cellobiose family IIC subunit	0.000200024608731
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8G2G6	 Peptidase M56	0.000200008072351
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWP7		0.000199929836735
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZI3	 Transcriptional regulator, TetR family	0.000199929836735
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HAX6	 ROK family protein	0.000199929836735
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P96662		0.000199929836735
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q58321	 Magnesium chelatase subunit ChlI homolog	0.000199929836735
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T5M8	 Acetyltransferase	0.000199929836735
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2L1		0.000199874460971
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VKU4	 Oxidoreductase	0.000199784674988
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PI69		0.000149355869156
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6LR95	 Hydrogenase Fe only	0.000199764812633
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VBX6		0.000199711374854
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P57037	 Capsule polysaccharide modification protein LipA	0.000199676191226
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023XN60	 Spermidine putrescine transport system permease protein potC	0.000199534718483
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P63229	 D glycero beta D manno heptose 1,7 bisphosphate 7 phosphatase	0.000199534718483
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FFA8	 Uroporphyrinogen III synthase  (Uroporphyrinogen III cosynthetase) (Hydroxymethylbilane hydrolyase [cyclizing])	0.000199534718483
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VE79	 AdaA	0.000199534718483
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P45946	 Arsenite resistance protein ArsB	0.000199512726764
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MGB3	 D galactonate dehydratase	0.000199425070114
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8IMM6	 Glycosyl transferase	0.000199421226342
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T1ZXB1	 Plasmid recombination protein	0.00019941150398
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2D5		0.000199394809498
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8V7N9		0.000199316314293
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5YFU3	 SMP 30 Gluconolaconase LRE domain protein	0.000167159880054
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B3PEP4	 Transcriptional regulator, AsnC family	0.000199141158881
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M8Y1	 Type IV pilus assembly PilZ	0.000199141158881
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q11K56	 Cupin 2, conserved barrel	0.000199141158881
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1RAU0		0.000199141158881
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZC9		0.000199141158881
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZQ3	 Aerobic cobaltochelatase subunit CobN	0.000199100054953
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVT2		0.000199091952486
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AAR3	 L threonine 3 dehydrogenase	0.000173777224704
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6M2N2	 RND transporter, HAE1 family	0.00019902068809
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5WYH1	 Phage integrase family recombinase	0.00019901070226
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0WJ22	 Uracil xanthine permease xanthine permease	0.000198945153801
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P33983	 RNA polymerase sigma 54 factor	0.000198802828675
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P65098	 Isocitrate dehydrogenase [NADP]	0.000198755640935
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7GVA1	 Isochorismatase family protein	0.000198749148722
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6S7Y9		0.000198749148722
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8PJ04	 BasH	0.000198749148722
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AB49	 tRNA lysidine synthase	0.000198749148722
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_R5ELP6	 Haloacid dehalogenase like hydrolase	0.000198749148722
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E3D2G5	 Histone deacetylase family protein	0.000198743005816
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023UVB3	 MFS transporter	0.000198697587137
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4XIN2		0.000198688077103
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P51973	 Competence protein ComA	0.000198572721015
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RN28	 Carboxyl terminal protease	0.000198503303635
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZBV1	 Membrane protein	0.000198384802319
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZC0	 Membrane protein CF 9 family	0.000198358678878
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TQ13	 Thiamine phosphate synthase	0.000198358678878
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SVV0	 Phosphoribosyltransferase	0.000198358678878
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IZI7	 Elongation factor Ts	0.000198358678878
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E5V1	 ATP synthase subunit delta	0.000198358678878
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5XIL5	 Lactate dehydrogenase and related dehydrogenases	0.000198358678878
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H4N1		0.000198319244663
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VBT1		0.000198210456098
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6S5H1	 Protein disulfide isomerase	0.000197969740294
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LXY6	 Signal peptidase I	0.000197969740294
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7QHS4		0.000197969740294
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q4FU03	 Pseudouridine synthase	0.000197969740294
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZWD2	 Peptidase, M23 M37 family	0.000197969740294
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZZS5	 Glucan binding protein B	0.000197969740294
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D7CU09	 ABC transporter related protein	0.000197886814339
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F2JYD9	 Phenylalanine racemase 	0.000197872687225
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_UPI00046D0E88	 amidase	0.000197827387937
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HPN1		0.000197815250047
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_O86810	 DNA translocase FtsK	0.000197782673456
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1FU82	 Cell division protein FtsK	0.000197696649282
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E8TPX5	 Type VI secretion protein, VC_A0110 family	0.000191839661461
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q44472	 Putative hydroxypyruvate reductase	0.000197677940447
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I1N2	 PslG	0.000197671593097
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_R4QLQ3		0.000197664376432
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MRD6	 Glycosyl transferases group 1	0.000197554592893
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RS17		0.000197550010686
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A9APP3	 Rieske  domain protein	0.000197425164404
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0B9	 D galactose binding periplasmic protein	0.000197425103674
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7GX48	 Dihydroorotase	0.00019740446272
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_X5A6R4	 NMT1 THI5 like domain containing protein	0.000197234003696
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TQ92	 Ser Thr protein phosphatase family protein	0.000197196420998
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I4QAR1	 Flagellar basal body L ring protein	0.000197196420998
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5F2Q7	 Pili assembly chaperone	0.000197196420998
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_M4ZKD5	 ADP heptose lps heptosyltransferase II	0.000197157706912
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I1ZM42	 TraG TraD family protein	0.000197152555236
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P43735	 Chaperone protein DnaJ	0.000197138302391
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3LGX1		0.000197125754383
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8I741	 ABC transporter transmembrane region	0.000196819931648
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HK83	 DNA polymerase III subunit epsilon	0.000196812022518
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQN9		0.000196812022518
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FBG3		0.000196812022518
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9REL6		0.000196812022518
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E0TPJ9	 Histidine kinase	0.000196812022518
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F5WH27		0.000196812022518
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSL3	 50S ribosomal protein L6	0.000196812022518
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVG7	 FemA related protein	0.000196812022518
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1DY96		0.000196812022518
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MFW3	 30S ribosomal protein S3	0.000196812022518
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_X2HX12	 Membrane protein	0.000196812022518
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q795M6	 Putative aminotransferase YugH	0.000196759576443
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RNV8	 NurA domain containing protein	0.000196525869114
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YTB8	 Glycosyl transferase family protein	0.000196514951482
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWY3	 Transcriptional antiterminator, BglG	0.00019645500062
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WZB9		0.000196429119746
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSC7	 Acetyl CoA carboxylase, biotin carboxyl carrier protein	0.000196429119746
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V8H7	 Acetyltransferase, GNAT family	0.000196429119746
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V541		0.000196429119746
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D3SEM2	 Phosphoribosylglycinamide formyltransferase	0.000196429119746
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZM96	 Amino acid binding ACT	0.000196429119746
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_X2HYB2	calcium antiporter	0.000196384061693
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3HWF4		0.000196335900413
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XP60	 Acetylornithine deacetylase	0.000196288985127
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZDY1		0.000196238226533
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E4G9		0.000196174222974
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E8U7B0	 Cytochrome P450	0.000196166668421
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28RF2	 Anhydro N acetylmuramic acid kinase 1	0.000186414909071
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTB9		0.000196066185101
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9Z138		0.000196047703981
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EKZ4		0.000196047703981
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_J0PVL0		0.000196047703981
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RWS7	 UTP  hexose 1 phosphate uridylyltransferase	0.000196047703981
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KFY0	 Integral membrane protein	0.000196047703981
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M2T0	 UDP N acetylmuramoyl tripeptide  D alanyl D alanine ligase	0.000195944670084
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q63NI4	 Methionine import ATP binding protein MetN 2	0.000183571941004
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A030RGA6	 Phage protein 	0.000195764854158
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V052	 Phosphatidylglycerophosphatase A	0.00019566776657
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45470	 Protein YhbO	0.00019566776657
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MVZ4	 Sensor histidine kinase YclK	0.00019566776657
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8V8I0	 Regulator of sorbitol operon	0.000195575543383
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A009JWB2	 NMT1 like family protein	0.000176200707892
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GCK3	 Mannose 1 phosphate guanylyltransferase	0.000195313583654
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LST7	 Response regulator receiver protein	0.000195289298939
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A8LWQ1	 Oxidoreductase domain protein	0.000195289298939
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C7MAW1	 Ferritin like protein	0.000195289298939
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M575	 Glycosyl transferase family 2	0.000195289298939
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1LWW7	 GCN5 related N acetyltransferase	0.000195289298939
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M8Z1I4	 ABC transporter transmembrane region 2 family protein	0.000195289298939
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FDX8	 Maf like protein ACIAD0829	0.000195289298939
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZ61		0.000195289298939
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U8ZUR2	 Mg chelatase like protein	0.000195289298939
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_V4Z2G5		0.000195289298939
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U0B3S9		0.000195281272953
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQA7	 Acetylornithine deacetylase ArgE. Metallo peptidase. MEROPS family M20A   acetylornithine deacetylase	0.000195198604205
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M472	 Putative VGR related protein	0.000194971149258
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E6DXQ9		0.00019491229257
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K0HWI3	 NADPH dependent FMN reductase	0.00019491229257
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P0CS91	 Heat shock protein SSC1, mitochondrial	0.000194871461489
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU95	 NADH quinone oxidoreductase subunit I	0.000189072223876
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4A3Y5	 Peptidase, M24 family protein	0.000194764880071
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T560		0.000194726630442
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VM96	 Methylaspartate mutase	0.000194725059029
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_I6XPP6	 Methylmalonyl CoA carboxyltransferase 5S subunit	0.000194691288047
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E1S9J4	 Signal transduction histidine kinase	0.000194552177814
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYR9	 Peptidoglycan binding domain 1 protein	0.000194536739019
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_C1CVP1	 Ribosome recycling factor	0.000194536739019
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G8P8V7	 Transcriptional regulator, TetR family	0.000194536739019
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C7RGN8	 NusA antitermination factor	0.000194499833653
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S318	 Proline dehydrogenase aldehyde dehydrogenase  family protein	0.00019435340571
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VK56	 Membrane associated protein	0.000194230657926
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6U991	 Cys Met metabolism pyridoxal phosphate dependent protein	0.000194222947595
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V8G8		0.000194162629908
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UWI0	 Co chaperone protein HscB homolog	0.000194162629908
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZYI5		0.000194162629908
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48CJ9	 Protease PfpI	0.000194162629908
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZL73	 Flagellar biosynthetic protein FlhB	0.000194137513236
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O52733	 D xylose proton symporter	0.000194118141962
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E0TTE0	 Alpha,alpha phosphotrehalase	0.000193977309909
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87X69		0.000193834376592
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P37030	 Cysteine desulfurase	0.000193833465306
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTS1		0.000193789956907
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KP24		0.000193789956907
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4H9P2	 Amine oxidase 	0.000193704801231
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QDZ6		0.000193652775188
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0Q1U2	 Fe S oxidoreductase, putative	0.000193626791139
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HW54		0.000193604334348
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0L8		0.000193543954103
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1KTV6	 2 isopropylmalate synthase	0.000187242042865
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A5WBZ4	 Transporter, NhaC family	0.000193511217302
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IYP6		0.00016497478358
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZB6		0.000193418711788
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V786		0.000193418711788
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9DXT5		0.000193418711788
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9Z2J9		0.000193418711788
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J9HV03	 Sigma 70 factor, ECF subfamily	0.000193418711788
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P9WPZ0	 Probable GTPase MT1543	0.000193418711788
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q04803	 Transcriptional activator protein PfeR	0.000193418711788
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FAU5		0.000193418711788
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTK3		0.000193418711788
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9VWW7	 Phosphodiesterase	0.000193418711788
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W4TPM5	 Phosphoglycerate mutase family protein	0.000193418711788
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K9BV07		0.000193281067288
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A5X8	 Arginine  tRNA ligase	0.000193173623147
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MZL4	 Alpha amylase	0.000193075368388
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWF7	 UDP glucose 4 epimerase, putative	0.000193048886331
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TKG7		0.000192931422315
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V4UI35	 RNA polymerase subunit sigma 24	0.000192890108452
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PRE7	 PTS system beta glucoside specific EIIBCA component	0.000192888559444
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M141		0.000192840847577
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5I6S3		0.000192777093138
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MS66	 Glycerol 1 phosphate dehydrogenase	0.000192774596183
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MNZ4	 Beta glucanase BglA	0.000192760480569
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5JT53	 Gram negative pili assembly chaperone, N terminal domain protein	0.000192680472429
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YRJ4		0.000192680472429
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1QUQ7	 Transcriptional regulator, LysR family	0.000192680472429
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FAA9	 Elongation factor P	0.000192680472429
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSU4		0.000192680472429
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUK2	 Transcriptional regulator, TetR family	0.000192680472429
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7M922	 Na H(+) antiporter NhaA	0.000192676975481
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q833W9	 Tagatose 6 phosphate kinase	0.000187318307148
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSD9		0.000192313462006
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M235	 Sugar isomerase 	0.000192313462006
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A6W0A1	 Inorganic pyrophosphatase	0.000192313462006
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B7MKP4		0.000192313462006
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DQ55	 LPS transport protein LptA	0.000192313462006
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D0K172		0.000192313462006
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VAR4	 Response regulator MprA	0.000192313462006
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AA51	 L fucose isomerase	0.000192313462006
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K4FFQ5	 Lysine decarboxylase	0.000186625818025
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2K2	 Methyl accepting chemotaxis sensory transducer	0.000192216137373
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q03PU9	 DNA directed RNA polymerase subunit beta	0.000184400026924
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VFM2		0.000192151529217
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DVB5	 Beta glucanase	0.000192130308292
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q6NCF3	 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	0.000187732383729
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LW40	 NUDIX hydrolase	0.000191947847054
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V4G2Y6	 Oxidoreductase	0.000191947847054
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M8W9J3	 Glycosyl hydrolase family 65 central catalytic domain protein	0.000191943300125
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LCX9	 Transcriptional regulator	0.000191835371022
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MU88	 DNA binding response regulator, Fis family	0.00019178639733
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q8FTK5	 GTPase Der	0.000191748647829
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E8ZM45	 Glycosyl transferase	0.000191706026808
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q1IYS1	 Carboxynorspermidine decarboxylase	0.000191687025317
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W8WVR8	 Dihydrolipoyl dehydrogenase	0.000191685491272
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M3T0	 Merops peptidase family S24	0.000191583619638
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M2K6	 Phosphoesterase, HXTX	0.000191583619638
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0C6E0	 Sulfurtransferase	0.000191583619638
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0TRI9	 MTA SAH nucleosidase	0.000191583619638
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K2V5	 Phosphatidate cytidylyltransferase	0.000191583619638
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q9X3Y6	 DNA gyrase subunit B	0.000178136885645
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V0G0		0.000181087110149
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0E927		0.00019127693092
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H1SKR8	 Site specific recombinase, phage integrase family	0.000191230018976
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VJF8	 Phosphate transport system permease protein PstA	0.000191220771873
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L7ZNE5	 ABC transporter ATP binding protein	0.000180883784493
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q2NYD6	 Anthranilate phosphoribosyltransferase	0.000190949920922
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A011DVL1	 Bacterial regulatory s, tetR family protein	0.000190859295934
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C4S8U7		0.000190859295934
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F2RAT0	 UDP galactose lipid carrier transferase	0.000190859295934
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K4U3	 Acetyltransferase	0.000190859295934
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3HGU2	 Oxidoreductase FAD binding domain protein 3	0.000190813111086
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q8NNF6	 Pyruvate dehydrogenase E1 component	0.000190759026214
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_UPI00046E7A1E	 TonB dependent receptor	0.000190652215152
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RX79	 Cytochrome B6	0.00019062270225
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7GXR8		0.000190499184056
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UW90	 MotD	0.000190499184056
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E2XTQ0	 Ribose ABC transporter, permease protein	0.000190499184056
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M7Z8		0.000190499184056
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VFP2	 OsmC family protein	0.000190499184056
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K2I7	 Transcriptional regulator, TetR family, putative	0.000190499184056
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HAH0	 ATPase histidine kinase DNA gyrase B HSP90 domain protein	0.000190449481148
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F6AYF6	 TonB dependent siderophore receptor	0.000190171974784
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTD8	 Extracellular solute binding protein, family 1	0.000190170190982
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M105	 Acyl CoA synthetase AMP acid ligases II	0.000190169610406
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RUU7	 Amino acid transporter LysE	0.000190140428536
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A1SJB1	 Adenine phosphoribosyltransferase	0.000190140428536
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7I6U8		0.000190140428536
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4Q8I8		0.000190140428536
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P65671	 Sulfate adenylyltransferase subunit 2	0.000190140428536
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7CLA1		0.000190140428536
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HFJ2	 Helicase C terminal domain protein	0.000189915514534
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YX60	 Trans 1,2 dihydrobenzene 1,2 diol dehydrogenase	0.000189783021711
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WPZ1		0.00016771522849
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1C8A9	 N succinylglutamate 5 semialdehyde dehydrogenase	0.000187588178561
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RYG5	 Hydrolase	0.000189609668446
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C6DJK8	 Transglutaminase domain protein	0.000177754520338
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZTH3	 Putative membrane protein	0.000189481021191
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q9PD69	 Proline iminopeptidase	0.000181918139732
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PMC6	 GCN5 related N acetyltransferase	0.000189426956008
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8PEL6		0.000189426956008
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9RZI0		0.000189426956008
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q5H5C1	 Phosphinothricin acetyltransferase	0.000189426956008
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX07	 Na+ H+ antiporter	0.000189378358692
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T6E5	 Penicillin acylase	0.000189363646186
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZKE4	 Primosomal protein N	0.000189320363029
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A8LAR7	 Pyrimidine nucleoside phosphorylase	0.000189313303526
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4MC03	 Lysophospholipid transporter LplT	0.000189268782251
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U8AFT2		0.000189073715748
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M5V1	 Porin for benzoate transport 	0.000189072223876
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B5YJV0	 GTP cyclohydrolase 1	0.000189072223876
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LGF1	 RNA polymerase sigma factor	0.000189072223876
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P64634	 Putative DNA utilization protein HofN	0.000189072223876
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P76208		0.000189072223876
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0A4M5	 ATP synthase subunit delta	0.000189072223876
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A6B1	 BadF BadG BcrA BcrD ATPase family protein	0.000189072223876
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2Y865	 Pyridoxine 5 phosphate synthase	0.000176511481738
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N9IGS7		0.000188941703082
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q7TYA6	 Aspartate  tRNA ligase	0.000188916825079
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N1N7	 Acyl protein synthetase related protein	0.000188914440417
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q8G7Y6	 4 hydroxy 3 methylbut 2 en 1 yl diphosphate synthase	0.000183175235649
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2ESE9	 DNA RNA non specific endonuclease family protein	0.000188895871044
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZ97	 TerF related protein	0.000188842959745
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8M8V8	 Singapore isolate B  whole genome shotgun sequence assembly, scaffold_6	0.00018878445626
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RSC8	 Diaminohydroxyphosphoribosylaminopyrimidine deaminase	0.00018876401032
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E4RBH8	 FolC	0.000188758306528
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V636	 tRNA 5 methylaminomethyl 2 thiouridine biosynthesis bifunctional protein MnmC	0.000188657825934
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B8CN82	 Membrane protein, putative	0.00018857960099
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M404	 2 5 RNA ligase	0.000188366730507
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWU7	 Purine pyrimidine phosphoribosyltransferase related protein	0.000188366730507
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F3U4T8	 Aldehyde dehydrogenase EutE	0.000116857138369
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F3U4T8	 Aldehyde dehydrogenase EutE	7.14035131195e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M169	 Transmembrane protein	0.000188195831125
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RMF0	 Aminomethyltransferase	0.000188175064541
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B8N0		0.000188015954469
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WR48		0.000188015954469
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WFS0	 NADPH dependent FMN reductase	0.000188015954469
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MRU9		0.000188015954469
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZUG2	 Phenylalanine  tRNA ligase beta subunit	0.000188005425379
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVF8	 Signal transduction histidine kinase, LytS	0.000187989189105
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6Q2D0	 Iron only hydrogenase maturation protein HydF	0.000187980802948
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MPM6	 Anti sigma factor N terminus	0.000187940436274
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXH9	 Lipase, putative	0.000187925334105
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EIM7	 Fucosyltransferase	0.000187901412267
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RW70	 Glucose fructose oxidoreductase	0.000187830598082
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8K9C8	 GTP binding protein TypA BipA homolog	0.000111601051278
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q8K9C8	 GTP binding protein TypA BipA homolog	7.61996736203e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I3D2	 Dihydrolipoyllysine residue succinyltransferase component of 2 oxoglutarate dehydrogenase complex	0.000175288876185
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0RKD1	 Possible membrane protein	0.000187666482439
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQD1	 Transcriptional regulator	0.000187666482439
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M115	 Metal dependent phosphohydrolase	0.000187666482439
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A6S8		0.000187666482439
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P56176	 Bifunctional NADH hydrate repair enzyme Nnr	0.000187544333102
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F2JM58	 Transcriptional regulator, PucR family	0.000187508894872
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWL7	 Glycosyl transferase, family 2	0.000187318498183
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4CQS2	 Beta ketoadipate enol lactone hydrolase	0.000187318307148
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J230	 TatD related deoxyribonuclease	0.000187318307148
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5X6Z2		0.000187318307148
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8T306		0.000187318307148
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MCP1	 Multi sensor signal transduction histidine kinase	0.000187228198573
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GDI2	 Glycogen debranching enzyme GlgX Isoamylase	0.000187162565758
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JSZ8	 UDP N acetylmuramate  L alanine ligase	0.000180453148965
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A272	 Pilin biosynthetic protein	0.00018707788199
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1B2S7	 ABC transporter, ATP binding protein	0.000187049175855
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0KDL6	 Alcohol dehydrogenase	0.000156050336246
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_L0WM00	 NAD+ synthetase	0.000186974420811
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XRT9		0.000186971421396
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VSH7	 Outer membrane lipoproteins carrier protein	0.000186971421396
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E8UEX4	 Tricarboxylate transport protein TctC	0.000186971421396
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A5N5	 Undecaprenyl diphosphatase	0.000186971421396
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A0Q0N0	 5 methyltetrahydrofolate  homocysteine methyltransferase, putative	0.000186960418045
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A6U6I4	 FAD dependent pyridine nucleotide disulphide oxidoreductase	0.000186804659926
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXC5		0.000186776724141
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H2JC94	 Drug resistance transporter, EmrB QacA subfamily	0.000186669008335
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B9L9J4		0.000186625818025
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F2MXH3	 Hydrolase	0.000186625818025
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EQF7		0.000186625818025
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K0JMF7		0.000186625818025
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRQ3	 Methionyl tRNA formyltransferase	0.000186625818025
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CUQ4	 Folate dependent phosphoribosylglycinamide formyltransferase PurN	0.000186625818025
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MLL1	 3 methylornithine synthase PylB	0.000186625818025
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0K6G2	 Integral membrane protein	0.000186529417601
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V6R4		0.000179485554002
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P18655	 Superoxide dismutase [Fe]	0.000173181076416
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1E5	 Transposase, IS4 family protein	0.000186405600158
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WUV2	 ErfK YbiS YcfS YnhG family protein	0.000186281489948
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQI1	 Peptidase M23B	0.000186281489948
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D3PKE0	 PepSY associated TM helix domain protein	0.000186281489948
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GQL0		0.000186281489948
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F5WFQ6	 B domain protein	0.000186281489948
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T2KAI1		0.000186281489948
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MN24		0.000186112147541
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G2AUL8		0.000185991710049
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H202	 Peptidase M16C associated family protein	0.000185985761085
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0ENV0	 Outer membrane protein HofB	0.000185979155983
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_E5TF09		0.000185938430118
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A7E9	 ATP dependent Clp protease proteolytic subunit 2	0.000185938430118
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q898F3	 DNA binding protein iolR	0.000185938430118
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YQ10	 Thiolase	0.000185861718814
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UZ12		9.74561462898e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RKT2		0.000185596631526
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_I4AI93		0.000185596631526
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M7PBX7	 Transferase	0.000185596631526
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V9W180	 Transposase	0.000185596631526
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M167		0.000185427983977
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YXR7		0.00018534114514
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI0003610FAC	 hypothetical protein, partial	0.000137783305789
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YWL9		0.000185256087248
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IXV7	 UDP N acetylenolpyruvoylglucosamine reductase	0.000185256087248
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AP78	 Demethylspheroidene O methyltransferase	0.000185179905574
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MVK2		0.000185086438817
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U923	 Copper exporting ATPase	0.000185037474142
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K5NMC7	 Chaperone usher secretion system usher protein	0.000185029622642
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYB1		0.000184987368254
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q883F3	 Urease subunit gamma beta	0.000147609016888
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q8EED7	 Phosphomethylpyrimidine synthase	0.000182790189976
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWA6	 Transcriptional regulator, TetR family	0.000184916790387
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B8HEC3	 Transketolase central region	0.000184916790387
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_J7IUM0	 Response regulator containing a CheY like receiver domain and an HTH DNA binding domain	0.000184916790387
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XMU3	 Diaminopimelate decarboxylase	0.000184780751829
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2LBA7		0.00018467049004
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RX61	 Metal binding protein	0.000184578734097
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B304	 Heat shock protein DnaJ domain protein	0.000184578734097
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E4TDW5	 DNA methylase N 4 N 6 domain protein	0.000184578734097
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6AFI4	 Patatin	0.000184578734097
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IXC5	 Electron transport complex subunit RnfB	0.000184578734097
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U5VH91	 Extracellular solute binding protein	0.000184578734097
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U7DJB4	 Heme oxygenase	0.000184578734097
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2QLJ8	 Transposase insG for insertion sequence element IS4	0.00018456966445
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F6W5	 Two component sensor	0.00018447725982
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MQT2	 Diguanylate cyclase	0.000184322861361
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZXL0	 Alginate lyase	0.00018424436569
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V7L4		0.000184241911585
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TMF1	 Site specific recombinase	0.000184241911585
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M244	 Mannosyl glycoprotein endo beta N acetylglucosamidase	0.000184241911585
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GWD9		0.000184241911585
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02LE1		0.000184241911585
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5XCG7	 Probable dTDP 4 dehydrorhamnose 3,5 epimerase	0.000184241911585
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I4X6	 Chaperone CupC2	0.000184241911585
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MX56	 Methionine ABC transporter ATP binding protein	0.000184241911585
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K377	 Membrane protein, putative	0.000184241911585
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q8G3N6	 Inosine 5 monophosphate dehydrogenase	0.000155479005887
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6SHK2	 Nitric oxide reductase	0.000184090819876
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV33	 AAA ATPase	0.000183970146086
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A010AWY9	 CSLREA domain protein	0.000183906316125
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVW3	 RelA SpoT domain protein	0.000183906316125
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D0IRH3		0.000183906316125
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4GXS4	 DNA 3 methyladenine glycosidase I	0.000183906316125
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YXA3	 Succinate dehydrogenase  cytochrome b subunit, b558 family	0.000183906316125
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6K7	 Phosphoglycerate mutase	0.000183906316125
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q322R9	 Sulfoxide reductase heme binding subunit YedZ	0.000183906316125
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AAZ9	 DNA integrity scanning protein DisA	0.000183906316125
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZLT2	 Chloride channel protein	0.000183752331509
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q58094	 Putative transketolase N terminal section	0.000176203433774
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F3ZY36	 MATE efflux family protein	0.000183660573547
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1V5P8	 Nitrite extrusion protein	0.00018361238426
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M1W3		0.000183571941004
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V727		0.000183571941004
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8PCN1	 FilB	0.000183571941004
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9W0X5	 Membrane protein	0.000183571941004
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MM24	 Site specific recombinase	0.000183566213718
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25046	 Adenosine deaminase	0.000183541397395
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8IS38	 Xaa His dipeptidase	0.000183372850064
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H7CVU9	 FliB family protein	0.000183305315086
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M0B3	 Subtilisin	0.000183191027235
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRU0	 Na+ H+ antiporter, putative	0.00018298825657
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXJ6	 Diguanylate cyclase	0.000182906825274
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MSR5		0.000182906825274
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9NYD0	 Cobalt transport protein	0.000182906825274
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U580	 Pyridine nucleotide disulfide oxidoreductase	0.000182906825274
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_J0Y4M7		0.000182906825274
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L3WMR3		0.000182906825274
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q1CT84	 Outer membrane lipoprotein carrier protein	0.000182906825274
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A889		0.000182906825274
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1GU77	 D mannonate oxidoreductase	0.000182906825274
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P45335		0.000182617412734
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KGP8	 LysR family transcriptional regulatory protein	0.00018257607152
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U5VFI8	 Transcriptional regulator	0.00018257607152
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZL20	 Homoserine dehydrogenase	0.000182467122916
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7N6I4	 Amino acid transporters Alcohol dehydrogenase class IV	0.000182454171343
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q09CY9	 Glycerophosphoryl diester phosphodiesterase family protein	0.000182411142819
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_O06745	 Bifunctional homocysteine S methyltransferase 5,10 methylenetetrahydrofolate reductase	0.000126067051254
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0TMX8	 Threonine  tRNA ligase	0.000182279261568
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5APE8	 Thiamine pyrophosphokinase	0.000182246511823
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U7DPL1	 LysR family transcriptional regulator	0.000182246511823
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8RBK3	 Aspartate ammonia lyase	0.000182135589504
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A3P5		0.000182121300019
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T6JGD5	 Acetyl CoA acetyltransferase	0.000182120187581
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_B2ICL0	 Imidazole glycerol phosphate synthase subunit HisF	0.00012683990898
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q59337	 Catalase	0.000154704113463
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E0SGG3	 Sensor protein	0.00018193728746
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9LZ37	 Tail fibre protein, putative	0.000181925068152
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6ZW32	 Rhs element Vgr protein	0.000179644194549
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D3NTM9	 Transcriptional regulator	0.000181918139732
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VKT7		0.000181918139732
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YT00		0.000181918139732
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W5VEH7		0.000181918139732
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WUI7	 Pyrrolo quinoline quinone	0.000181849539811
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5PHU3	 Carbamoyl phosphate synthase small chain	0.00015024489219
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SL48	 Extracellular solute binding protein family 1	0.000181818977765
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DXK8	 Prophage LambdaSa2, PblB, putative	0.00018177862567
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B8DQC5	 Major facilitator superfamily MFS_1	0.000181686447161
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28SN4	 N acetylglucosamine 6 phosphate deacetylase	0.000181655734375
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VHT5	 Primosome assembly protein PriA	0.000181622673841
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E4BBY5		0.000181590948835
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G2SXT9	 NUDIX hydrolase	0.000181590948835
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7UA10		0.000181590948835
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_J0KVM1		0.000181590948835
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXY3	 Diguanylate cyclase	0.000181427794345
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6V5	 Drug resistance transporter, EmrB QacA subfamily	0.000181338329682
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8I1I9	 TrkA C domain protein	0.000181264932762
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4N462	 Sensory box protein	0.000181264932762
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q7WYU3	 Putative AgrB like protein	0.000181264932762
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZL74	 Molybdenum cofactor guanylyltransferase	0.000181264932762
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W0AGF9		0.000181264932762
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DYM7	 Protein translocase subunit SecA 2	0.000181260358452
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KP29	 Amidohydrolase	0.000181237911898
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MQS6		0.000181125983759
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YXR6	 6 aminohexanoate dimer hydrolase	0.000181122561858
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWP5		0.000180940085213
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V9M7		0.000180940085213
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A8EWD3	 UDP 3 O [3 hydroxymyristoyl] N acetylglucosamine deacetylase	0.000180940085213
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1KQY9	 Protein GrpE	0.000180940085213
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E4SRM2		0.000180940085213
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KF01		0.000180940085213
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I3FSN5		0.000180940085213
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N9HZ93		0.000180940085213
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P56032	 50S ribosomal protein L4	0.000180940085213
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1LS55	 RegA, response regulator containing a Fis type DNA binding domain	0.000180940085213
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWX7		0.00018093349252
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI00035CE6C9	 hypothetical protein	0.000180867105086
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_N9Z7F0	 YhgE Pip domain containing protein	0.000180652918519
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MTT7	 Cobalamin  biosynthesis CbiG protein	0.000180620012531
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A0ZZF7	 L asparaginase I	0.000180616399917
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSS4		0.000180616399917
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_K0K215	 Luciferase like monooxygenase	0.000180616399917
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K5IJJ4	 Type VII secretion system , usher family protein	0.000180616399917
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M8I708	 Signal transduction histidine kinase	0.000180616399917
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O31038	 FMN reductase 	0.000180616399917
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1LL93	 Glycerophosphoryl diester phosphodiesterase family protein	0.000180616399917
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3K8I4		0.000180616399917
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZJJ2		0.000180616399917
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MH92	 Branched chain alpha keto acid dehydrogenase subunit E2	0.000180616399917
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_V9VPV4	 ABC transporter permease	0.000180440855903
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWC3	 Sigma 54 factor, interaction domain containing protein	0.000180401241698
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7WBX4	 Arabinose efflux permease family protein	0.000180365156659
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7IB09	 Endonuclease exonuclease phosphatase	0.000180347410965
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N6G6	 Phosphate propanoyltransferase	0.000180293870626
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6Z9	 Nitroreductase	0.000180293870626
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U9N4	 Sugar kinase	0.000180293870626
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GYV6		0.000180293870626
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RNI0	 DEAD DEAH box helicase domain protein	0.000180186616692
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A038GJX3	 Cation efflux family protein	0.000179972491179
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PS34	 Methyltransferase type 11	0.000179972491179
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F3G4W6	 Coenzyme PQQ synthesis protein E	0.000179972491179
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWG3		0.000179972491179
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E439	 Bacterial regulatory helix turn helix , lysR family protein	0.000179972491179
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q1CTZ0	 Cag pathogenicity island protein I	0.000179894074221
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVK7	 ATP dependent zinc metalloprotease FtsH	0.000179875264855
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q9XAR5	 NADH quinone oxidoreductase subunit L	0.000179827108916
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A5CXF1	 Acetylglutamate kinase	0.000140423598815
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2HTD1	 Transcriptional regulator	0.000179652255429
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DVP7	 Triacylglycerol lipase	0.000179652255429
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K082	 2 dehydro 3 deoxyphosphogluconate aldolase  4 hydroxy 2 oxoglutarate aldolase	0.000179652255429
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVH4	 Aspartate  tRNA ligase	0.000179620990751
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1TE96	 Type VI secretion protein, VC_A0114 family	0.000177499673089
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVV9	 DNA directed RNA polymerase subunit beta	0.00017958328944
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q79VD7	 Cytochrome c oxidase subunit 1	0.000148421145873
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q2RSB2	 NAD transhydrogenase subunit alpha part 1	0.000179412860907
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V4YKS4	 DNA directed RNA polymerase	0.00017937116353
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SVN0	 Cytochrome P450	0.000179352627506
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSK6	 Thiamine pyrophosphokinase	0.000179333157286
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HAD9	 Transcriptional regulator, GntR family	0.000179333157286
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1VQY8	 Transcriptional regulator, ArsR family	0.000179333157286
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MG01		0.000179333157286
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZCI4	 LysR family transcriptional regulator	0.000179333157286
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EQA8	 Paralysed flagella protein	0.000179163381913
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HAB8	 Aminodeoxychorismate synthase, component I	0.000179157037976
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B5E9	 ATP dependent DNA helicase RecQ	0.000179123989759
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI0003696809	 hypothetical protein	0.000164804529099
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M0F2	 Phopholipase D family protein	0.000179042195809
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWA3		0.000179017612622
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M3E9	 Urease accessory protein UreD	0.000179015190695
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JJL0	 OmpW family protein	0.000179015190695
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HVG4	 Magnesium chelatase subunit ChlI	0.000179015190695
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F7U5		0.000179015190695
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWR2	 Acetyltransferase, putative	0.000179015190695
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY57		0.000179002076992
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YY68		0.000178938277613
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4R715	 Putrescine importer PuuP	0.000178935122703
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U9F5		0.000178723178832
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9K0K9	 Iron regulated protein FrpA	0.000178719944775
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UZP9		0.000178698349646
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2HWV5	 Periplasmic serine protease 	0.000178698349646
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_I4Y2U3	 DJ 1 PfpI family protein	0.000178698349646
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MXQ2	 Type IV pilus assembly protein PilC	0.000178598229859
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JJ99	 Fatty acid desaturase	0.000178551655721
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HAZ8		0.000141804167907
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A780	 Error prone DNA polymerase	0.000178523308132
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1LMT5		0.000178474489381
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A011D9G9		0.000178382628183
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VH28	 Actinobacterial surface anchored protein domain protein	0.000178382628183
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VIG2	 Tellurite resistance protein	0.000178382628183
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX04		0.000178369606984
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E8QRB2	 Outer membrane protein HopZ	0.000178155414662
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V2C1		0.000178068020369
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C5J508	 DNA replication protein	0.000178068020369
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2P8R3	 Putative manganese efflux pump MntP	0.000178068020369
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P31884	 Quinone reactive Ni Fe hydrogenase small chain	0.000119202559095
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8K9F4	 tRNA  ) methyltransferase	0.000169974019446
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VFH2	 ABC transporter associated permease	0.000177915268227
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1G6	 2 aminoethylphosphonate  pyruvate transaminase	0.00017785977063
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV74	 Integral membrane sensor signal transduction histidine kinase	0.000177842699036
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YXC7		0.000177759479163
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LXC6	 Lytic transglycosylase catalytic	0.000177756681424
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M132	 Abortive infection protein	0.000177754520338
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P37508		0.000177754520338
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1QD84	 Oxidoreductase FAD NAD binding protein	0.000177754520338
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q48EZ4	 Sensor histidine kinase	0.000177695634915
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q5SJ70	 Acetyl Coenzyme A dehydrogenase, medium chain	0.000177619873224
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2THL1	 Acetyl coenzyme A carboxylase carboxyl transferase subunit beta	0.000161543308082
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_D1DHF6	 Oxidoreductase	0.000177468477673
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_J7TT99	 Transport protein SgaT, putative	0.000177463204808
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9FS88	 2 methylacyl CoA dehydrogenase, mitochondrial	0.000177458702758
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EAI6		0.000177458702758
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MMU8		0.000177457818429
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U7H1	 Glutamate synthase small subunit	0.000177443859199
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZD7	 Flavin reductase domain protein, FMN binding	0.000177442122235
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E3E7X3	 Oxidoreductase Fe S binding subunit	0.000177442122235
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K0H1B5		0.000177442122235
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0GNQ8	 NTP pyrophosphohydrolase	0.000177442122235
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P57109	 Maleylacetoacetate isomerase	0.000158749320046
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HWS2	 UPF0276 protein PA4106	0.000149799061646
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MXD6	 Xylose transport system permease protein XylH	0.000177209361813
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2Z6	 Transketolase, central region	0.000177130820264
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TI10	 Peptidyl tRNA hydrolase	0.000177130820264
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H1FI32	 Imidazole glycerol phosphate synthase subunit hisF	0.000177130820264
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0AET6	 Protein HdeD	0.000177130820264
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q03MR7	 Protein GrpE	0.000177130820264
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RLL3	 DEAD DEAH box helicase domain protein	0.000177023293161
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H3F275		0.00017682060867
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9K0S5		0.00017682060867
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HFL5	 AMP binding enzyme	0.00017674070519
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_G7QF23	 Peptide chain release factor 3	0.000176737556075
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C5ABI0	 Major facilitator superfamily MFS_1	0.000176704526082
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0TR80	 Amidohydrolase family protein	0.000176617060648
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A7A7	 Lysyl tRNA synthetase	0.000176607455717
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WUP2	 PAS PAC sensor hybrid histidine kinase	0.000176575688953
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B5Y8S3	 Transcription termination factor Rho	0.000176511481738
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T1XQN9		0.000176511481738
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0PBR3	 Histidine transport system permease protein HisM	0.000176511481738
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4H9Y2	 Biotin biosynthesis bifunctional protein BioWF	0.000176399561172
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W4U3A3	 Valyl tRNA synthetase	0.000176355729757
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DQ56		0.000176203433774
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C3PHK6	 Lipoyl synthase	0.000176203433774
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I0ZSX7	 Putative transporter	0.000176203433774
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I6UMD2	 Acetyltransferase	0.000176203433774
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_F4D464	 Heavy metal translocating P type ATPase	0.000176189562544
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P56072	 L serine dehydratase	0.000167768278514
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VKY5	 Mannose 6 phosphate isomerase	0.000176079365222
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U7F2	 Pyridine nucleotide disulfide oxidoreductase	0.000175839744125
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5RY54		0.000175821515397
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F8V1	 2,3 dihydroxybenzoate AMP ligase	0.000175813928273
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P9WH42	 30S ribosomal protein S1	0.000175810261805
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G7LWI4	 DNA polymerase	0.000123195038235
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G7LWI4	 DNA polymerase	5.25857122629e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVB6	 Aspartyl glutamyl tRNA amidotransferase subunit B	0.000175700576524
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0CDY8		0.000161028018419
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3MA07		0.000175590552265
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M043	 Transcriptional regulator, TetR family	0.000175590552265
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A9AH86	 Glutamine amidotransferase class II	0.000175590552265
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M622	 Transcriptional regulator, LuxR family	0.000175590552265
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K9NBL7	 Formate dehydrogenase family accessory protein FdhD	0.000175590552265
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M1FE06	 Cobalamin  biosynthesis CbiM protein	0.000175590552265
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q3K2Q5	 Biotin synthase	0.000175590552265
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5NIJ4	 6 pyruvoyl tetrahydropterin synthase family protein	0.000175590552265
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9CH32	 Multidrug resistance protein	0.000175392125025
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZXU9	 Lysyl aminopeptidase	0.000175378056723
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RWV4	 Histidine kinase	0.000175342711037
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V8R6	 Ribonuclease D	0.000175324531226
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M4MNB9	 ABC transporter,ATP binding protein	0.000175324118311
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V9XEY4	 Glutaminase	0.000175298967926
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C8NS74	 Formamidopyrimidine DNA glycosylase H2TH domain protein	0.000175285707553
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MUY1	 Amino acid carrier family protein	0.000175186437726
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UYI4	 6 aminohexanoate dimer hydrolase	0.000175144395858
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI00036EFCB4	 alpha L Rha alpha 1,3 L rhamnosyltransferase, partial	0.000175025479387
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023WNU6	 TetR family transcriptional regulator	0.000174981919496
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZY6	 Molybdopterin guanine dinucleotide biosynthesis protein B	0.000174981919496
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2UYL5		0.000174981919496
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RR67	 Thymidylate synthase	0.000174981919496
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3HKE7	 ABC cobalamin Fe3+ siderophore transporter, periplasmic ligand binding protein	0.00012683990898
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GR57	 D alanyl D alanine carboxypeptidase	0.000174821647362
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X2H2G3	 RND efflux system, outer membrane lipoprotein CmeC	0.000174776203927
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DSU9	 S adenosylmethionine synthase	0.000174701276244
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YXK7	 Two component sensor histidine kinase	0.000174682450552
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V979		0.000174679182612
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F5M6R3		0.000174679182612
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_J7TAV9		0.000174679182612
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1H0H4	 NAD dependent Fe hydrogenase 51kDa NADH dehydrogenase component	0.000174606486164
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DWT2	 Membrane protein, putative	0.00017313529478
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WWM0	 Amidase	0.000174417441188
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3ZVN7	 Gram positive signal peptide protein, YSIRK family	0.000174377491457
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P57024	 Outer membrane lipoprotein LolB	0.000174377491457
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWP2		0.000174377491457
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU68		0.000174344201481
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F2JKB2	 MATE efflux family protein	0.000174334986677
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0W0	 Methyltransferase type 11	0.000174102200317
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAX6		0.000174076840602
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_T1U7S9	 TrbL VirB6 plasmid conjugal transfer family protein	0.000174076840602
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VC18	 Haemagglutination activity domain protein	0.000174059476948
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K2Y0		0.000174049982634
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ92	 Transcriptional antiterminator, BglG	0.00017390332539
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWG0		0.000173804675839
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_T2BZI8		0.000173802110965
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWP9		0.000173777224704
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9DZW5		0.000173777224704
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E4U5		0.000173777224704
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88JX6	 Porin like protein GalP	0.000173767709571
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5CPE6	 Thymidine kinase	0.000173478638402
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4H6S8	 Binding protein dependent transport systems inner membrane component	0.000173478638402
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M8L412	 Bacterial regulatory helix turn helix , lysR family protein	0.000173478638402
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q46941		0.000173478638402
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q9AGG3	 Rubrerythrin	0.000173478638402
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T7PSP7	 5 deoxynucleotidase YfbR	0.000173478638402
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S4L7	 Transcriptional regulator	0.000173454816095
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8G079		0.000173448330525
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S7U2	 Helicase secretion neighborhood ATPase	0.000173329729699
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E1R9	 Peptidase M16 inactive domain protein	0.000173223077535
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6KR64	 Major facilitator superfamily MFS_1	0.000173201933576
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HC94	 LysR family transcriptional regulator	0.000173181076416
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TNA6	 D galactose binding periplasmic protein	0.000173181076416
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZCZ8	 Sensor histidine kinase	0.000173176401555
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q72M00	 Ketol acid reductoisomerase	0.000154616489354
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1H1		0.000172884533476
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SLZ7	 Methyltransferase type 11	0.000172884533476
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4KLW2	 Type VI secretion protein TssG1	0.000172884533476
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_V2VFK5	 Methionine biosynthesis protein MetW	0.000172884533476
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV69	 Adenylosuccinate synthetase	0.000172769884877
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HPT5		0.000172662823443
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVX3		0.000172591021643
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_F5ZKP5	 Phospholipase carboxylesterase	0.000172589004361
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q6F1W4	 Energy coupling factor transporter ATP binding protein EcfA2	0.000172589004361
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8UC79	 Protein FdhD homolog	0.000172589004361
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IXK1		0.00017244492134
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VAL5	 Ribosomal RNA large subunit methyltransferase K L	0.000172388400709
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C3KNV3	 MFS permease	0.000172375084724
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H4YCY4		0.000172294483872
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_O07344	 Signal peptidase I	0.000172294483872
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXL7	 Hydrolase, haloacid dehalogenase like family	0.000172294483872
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W8EP13	 Lysyl tRNA synthetase	0.000172294483872
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0N4Z5	 Exodeoxyribonuclease V, gamma subunit	0.000172242306221
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P31153	 S adenosylmethionine synthase isoform type 2	0.000126999456037
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I696	 Component of chemotactic signal transduction system	0.000172130632695
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6AX81	 Efflux transporter, RND family, MFP subunit	0.000172074283563
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YPP3	 Aromatic amino acid aminotransferase	0.000172074283563
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V9N9	 Paraquat inducible protein A	0.00017200096687
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F0JV11	 DNA adenine methylase	0.00017200096687
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_N1K138	 FtsK SpoIIIE family protein	0.000171977611837
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q606N7	 ATP phosphoribosyltransferase regulatory subunit	0.000171928522783
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X2HDH4	 Prolyl endopeptidase	0.000171919013304
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D7CV09	 ATP dependent zinc metalloprotease FtsH	0.000171869398811
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9K1B0	 NADH quinone oxidoreductase subunit L	0.000171725071638
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P57702	 Adenylyl sulfate kinase	0.000171708448215
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q1CUW5	 UDP 3 O acylglucosamine N acyltransferase	0.000171708448215
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8TLM8	 Phosphoglycerate mutase family protein	0.000171708448215
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9T2K7	 Pilus assembly protein	0.000171708448215
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M8U4	 Heavy metal RND efflux membrane fusion protein CzcB family protein	0.000171665991787
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CTU5		0.000171495991485
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E3EZG0	 Oxidoreductase, short chain dehydrogenase reductase family	0.00017141692284
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U4Y3		0.00017141692284
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VD34	 Tat  pathway signal sequence	0.00017141692284
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VDN7	 DeoR family transcriptional regulator	0.00017141692284
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A917	 Aspartate carbamoyltransferase	0.00017141692284
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LBR0	 MFS family transporter	0.000171271531046
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HAK8	 Protoporphyrinogen oxidase	0.000171263955291
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M194	 AraC family transcriptional regulator	0.000171126385676
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4R0D2	 Glycosyltransferase	0.000171126385676
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2D7	 DNA primase	0.000171118446519
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F8DZR5	quinone oxidoreductase	0.000171044690853
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8ZG58	 Amidase	0.000171012099662
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JKX1		0.000171004585465
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8LRQ2	 Beta ketoacyl synthase	0.000170976768585
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q5HW32	 2,3 bisphosphoglycerate independent phosphoglycerate mutase	0.000165223188654
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPD2		0.000170836831725
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E7BDJ1	 ISNme1 transposase 	0.000170836831725
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2JDZ0	 Antiadhesin Pls, binding to squamous nasal epithelial cells	0.000170791790371
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5FA21	 Imidazole glycerol phosphate synthase subunit HisH	0.000160261218335
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LZU7	 GerA spore germination protein	0.000170735785558
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSY3	 Glutamyl tRNA reductase	0.000170551297527
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUF8		0.000170548256
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1SD75	 3 isopropylmalate dehydratase small subunit	0.000170548256
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F6AS06	 Precorrin 6A synthase 	0.000170548256
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5G6K3	 Histidinol phosphate phosphatase HisJ family	0.000170548256
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5UIW1	 Ribose phosphate diphosphokinase	0.000170548256
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZE56	 Type VI secretion system protein ImpL	0.000170485994735
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M202	 Carboxy terminal protease	0.000170433409329
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O66976	 Histidinol dehydrogenase	0.000166838190616
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HXX3	 Probable cysteine desulfurase	0.000136254477125
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWQ8		0.000170260653542
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M205	 Transcriptional regulator, GntR family	0.000170260653542
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JDE7	 Patatin like phospholipase family protein	0.000170260653542
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3YEU6	 Toxin, OB domain protein 	0.000170260653542
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7EI43		0.000170260653542
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YND3		0.000170260653542
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VBP8		0.000170260653542
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2T3A1	 Transcriptional regulator, LysR family	0.000170260653542
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U8PKI0		0.000170260653542
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XVQ4		0.000170233324928
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HZ43	 Transporter, major facilitator family protein	0.000170140469188
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U4M4	 GntR family transcriptional regulator	0.000170140262453
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RW75	 Acetylornithine acetyl lysine aminotransferase	0.000166776580179
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T2HRY4	 Transposase DDE domain protein	0.00017011800023
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRW1	 Ribonucleoside diphosphate reductase	0.000170103013676
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q8Y213	 Glycine  tRNA ligase beta subunit	0.000170101106314
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MXZ0	 TonB dependent receptor family protein	0.000170046341123
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HTQ5		0.00017003378831
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q2JTU3	 Phosphate import ATP binding protein PstB 2	0.000149135254871
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M4F0	 Transporter LysE family	0.000169974019446
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YXK8		0.000169974019446
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J7R7N7	 DNA damage inducible protein	0.000169974019446
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVU1		0.000169974019446
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RSV7	 Reverse transcriptase	0.00016990278229
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D2PWU8	 ResB family protein	0.00016986154098
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D3P6N7	 Peptide nickel transport system ATP binding protein	0.000169782345969
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RZA8	 Membrane protein	0.000169781545431
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7GVN1	 Ribosomal RNA small subunit methyltransferase H	0.00015024489219
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT71		0.000169688348825
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI000368F594	 polyphosphate kinase	0.000169656577466
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q2Q1G9	 Blr	0.000169656251694
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q01671	 Hydroxyneurosporene desaturase	0.000169648036742
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K4RS80	 Potassium efflux system KefA protein   Small conductance mechanosensitive channel	0.000169640108197
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A013KTF4	 RND transporter, hydrophobe amphiphile efflux 1 family protein	0.000169533545447
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_G2TGT9	 Cobalt transport protein	0.000169403636831
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N642	 Transcriptional regulator, TetR family	0.000169403636831
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9DEZ5		0.000169403636831
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q932Q4	 Orf513	0.000101676301661
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q932Q4	 Orf513	6.77160077436e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U6J5	 Transporter, major facilitator family protein	0.000169247452097
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W4TX83		0.000169207472682
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYX6	 Xanthine dehydrogenase, C terminal subunit	0.000169126785061
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D8B9N6	 2 succinyl 6 hydroxy 2, 4 cyclohexadiene 1 carboxylate synthase 	0.00016911987864
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XKU2	 Amino acid ABC transporter, permease protein	0.00016911987864
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5ZGN4	 Membrane protein	0.00016911987864
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MAA3		0.00016911987864
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9USG0	 IS30 transposase	0.00016911987864
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S656	 Short chain dehydrogenase	0.00016911987864
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q892B0	 Hydroxyacylglutathione hydrolase	0.00016911987864
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M7V0	 Putative non ribosomal peptide synthetase	0.000169118566565
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A027G7Z7		0.00016910175333
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7ICE8	 TonB dependent receptor protein	0.000168963648098
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S1I9	 TetR family transcriptional regulator	0.000168837069486
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTA2		0.000168837069486
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TL84	 Cyclic nucleotide binding domain protein	0.000168837069486
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M114	 Stage III sporulation protein AF	0.000168837069486
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MJY8	 Helix turn helix domain protein	0.000168837069486
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V8DPK1		0.000168837069486
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E0RLL7		0.000168804055092
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KFI6	 Succinate semialdehyde dehydrogenase (+))	0.000168591502889
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1KX53	 Putative ribosome biogenesis GTPase RsgA	0.000168555204593
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H3X7	 RNA methyltransferase, TrmH family, group 1 family protein	0.000168555204593
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MCM7	 Aminodeoxychorismate lyase	0.000168555204593
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X5F9F0		0.000168555204593
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DW29	 Penicillin binding protein 	0.00016855510176
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J1Q7	 Cobalamin  biosynthesis CbiX protein	0.000168348128142
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0QG73	 SAM dependent methyltransferase	0.000168336119397
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXM0	 Alkyl hydroperoxide reductase  Thiol specific antioxidant  Mal allergen	0.000168274279255
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V9S9		0.000168274279255
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_C1D104		0.000168274279255
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_F8KQA4	 Phospholipid binding protein	0.000168274279255
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J7TB42	 Oxygen insensitive NADH nitroreductase	0.000168274279255
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTM5		0.000168274279255
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6AW99		0.000168274279255
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MSZ1		0.000168274279255
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RX17	 Virulence factor related protein	0.000168204456774
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ43	 Binding protein dependent transport systems inner membrane component	0.000167994288769
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RKE8	 Pyridine nucleotide disulfide oxidoreductase family protein associated with PFOR	0.000167902230932
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0JW97	 4 hydroxyphenylacetate 3 monooxygenase oxygenase component	0.000167886298108
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CIR4	 EAL domain protein	0.000167842124009
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V8D4		0.00016780660523
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4H9Q4	 Hydrolase, P loop family	0.00016771522849
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GHW6	 Cytochrome d ubiquinol oxidase, subunit II	0.00016771522849
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E6C2		0.00016771522849
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSF0	 Leucine  tRNA ligase	0.000167680005789
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KT44		0.000127803250064
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9AAI4	 Nitrate transporter, NarK NasA family	0.000167577892285
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV61	 Histidine kinase	0.000167507116072
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2DYU2	 Drug resistance transporter, Bcr CflA subfamily protein	0.000167506569753
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWQ2		0.000167437093783
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYA1	 Phage replisome organizer, putative	0.000167437093783
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6X978	 NADP dependent oxidoreductase domain protein	0.000167437093783
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K9BU68	 Molybdopterin binding domain of aldehyde dehydrogenase protein	0.000167437093783
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F7X4		0.000167437093783
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVD4	 Sigma54 specific transcriptional regulator, Fis family	0.000167360657628
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CX29	 Tfp pilus assembly protein PilN	0.000158004018075
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S3NMU2		0.000167229814232
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_O31248	 Peptidyl prolyl cis trans isomerase  (Rotamase)	0.000167171586623
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L6YR76	 Guanosine 5 monophosphate oxidoreductase	0.000167159880054
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_UPI0000164CF9	 ferredoxin, putative, partial	0.000167159880054
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_X6KYJ4	 Hydrolase	0.000167159880054
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWW8		0.000167146941294
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W4UKK8	 DNA binding protein	0.000167061780165
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0B4T1	 Short chain dehydrogenase reductase SDR	0.000166883582731
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VBV4		0.000166883582731
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8AXM7	 NADH ubiquinone oxidoreductase chain G	0.000166883582731
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N9IVN2		0.000166883582731
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M8H3	 Chemotactic signal transduction system component	0.000166879415095
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S7L1	H+ antiporter 2  (DHA2) family protein	0.000166877528986
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RR86	 BrkB protein, putative	0.000166774341775
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q2FD99	 Multidrug efflux transport protein	0.000166745776304
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1WDW4	 3 methyl 2 oxobutanoate hydroxymethyltransferase	0.000126363664022
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B642		0.000166637659386
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXC3		0.000166608197279
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6SYV8	 Glucosyl transferase	0.000166608197279
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9UXV0	 Glycerol 3 phosphate regulon repressor	0.000166608197279
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I2E2	 FMN dependent NADH azoreductase 2	0.000166608197279
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H7CZP9	 ABC transporter, ATP binding protein	0.000166606104778
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZPC4	 Streptococcal histidine triad protein	0.000166566764399
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M186	 Imidazoleglycerol phosphate dehydratase	0.000113443334325
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0E580		0.000166500503898
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1J5		0.000166471297655
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M6U7	 CsuD	0.000166453857863
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT54		0.000166333719196
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VQL7		0.000166333719196
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VDC9	 Trk system potassium uptake protein TrkA	0.000166333719196
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I3D8		0.000166333719196
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C4K9M3	flavin oxidoreductase NADH oxidase	0.000166197546315
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E8YMA7	 Xanthine dehydrogenase, small subunit	0.000166193533549
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2DYB6	 Major Facilitator Superfamily protein	0.000166143325373
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VFI9	 Na+ proline symporter	0.000166140526686
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9TY41	 Aldehyde dehydrogenase	0.000165967790416
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0TTK8	 ATP dependent zinc metalloprotease FtsH	0.000165938089003
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XS92	 Multisubunit potassium proton antiporter, PhaD subunit	0.000165901594925
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P42810	 TPR repeat containing protein PA4667	0.00013944439219
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUF1		0.000165787467244
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4AJ46	 Peptidase M24	0.000165787467244
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_N0A600		0.000165787467244
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E5X0	 Hydroxyethylthiazole kinase	0.000165787467244
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVA0		0.000165787467244
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RW71	 Acetyltransferase, putative	0.000165787467244
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MX08	 Phosphoglycerate mutase	0.000165787467244
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V5WWK4	 Glycine betaine ABC transporter permease	0.000165787467244
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVG1	 Probable 3 hydroxybutyryl CoA dehydrogenase	0.00014675082493
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V7ZHE5	 Potassium transporting ATPase A chain	0.000165683687713
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A017BYI2	 DEAD DEAH box helicase family protein	0.0001656510041
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CIT2	 Non ribosomal peptide synthetase modules related protein	0.000165575185848
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02IQ8		0.000165573444684
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EL02		0.000165515684511
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2N4S2	 Maltose transporter membrane protein	0.000165515684511
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8V7H1	 ABC transporter ATP binding protein	0.000165408705302
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VT73		0.00016539532054
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JE53	 MFS family transporter	0.000165293606291
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWG5	 7 carboxy 7 deazaguanine synthase	0.000165244791406
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5NRV6	 Pseudouridine synthase	0.000165244791406
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9V210	 Allophanate hydrolase	0.000165244791406
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C0Y0T7	 Outer membrane efflux protein OprC	0.000165234164492
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A9Q4	 UDP N acetylmuramoylalanine  D glutamate ligase	0.000165116737833
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZMF0	 Putative methylthiotransferase jhp_0270	0.000165109787493
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ84	 Binding protein dependent transport systems inner membrane component	0.00016497478358
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0ECM2	 Flagellar motor switch protein FliY	0.00016497478358
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_O32216	 UPF0126 membrane protein YvgT	0.00016497478358
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02LX8	 Adenylate cyclase ExoY	0.00016497478358
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X2H8Z5		0.00016497478358
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q30SK1	 Polysaccharide deacetylase	0.000164941583936
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q0HNC2	 L threonine ammonia lyase	0.000164857838785
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV78	 NMT1 THI5 like protein	0.000164705656689
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C6CW74	 Sulfate ABC transporter, ATPase subunit	0.000164705656689
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1QAV9		0.000164705656689
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A7W9	 NAD kinase	0.000164705656689
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q7N4Q1	 Complete genome; segment 8 17	0.000164705656689
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSA9		0.000164705656689
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6G2T1	 Dihydroxyacetone kinase L subunit	0.000164705656689
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q8YDS8	 Cation transporting p type atpase b	0.000164586439283
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N4G1	 Predicted exonuclease, sbcD related	0.000164571422247
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88F11		0.000164550281832
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_D1DII4	 Ferredoxin	0.000164516318654
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HBJ9	 Adenosine deaminase	0.000164437406434
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8PGL4	 Endonuclease III	0.000164437406434
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DU58	 Triacylglycerol lipase	0.000164437406434
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51368	 Protein TonB	0.000164437406434
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E7L9	 Adapter protein MecA	0.000164437406434
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HWJ9		0.000164437406434
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W6I515	 Transcriptional regulator, LysR family protein	0.000164437406434
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W4HL11		0.000162122168903
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MXQ9	 Neutral endopeptidase PepO	0.000164293495406
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RRK9	 Threonine transporter	0.000164170028542
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V115	 Heme acquisition protein HasAp	0.000164170028542
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D5W932	 Sua5 YciO YrdC YwlC family protein	0.000164170028542
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1E6A4	 1 deoxy D xylulose 5 phosphate synthase	0.000164170028542
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q605Q8	 Beta lactamase	0.000164170028542
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X5ENZ1		0.000164170028542
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZM46	 Translation initiation factor IF 2	0.000164121710888
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D3P474	 4 hydroxyphenylpyruvate dioxygenase	0.000164000843781
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2C8	 DNA mismatch repair enzyme	0.000163934419505
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ25	 Methyltransferase type 11	0.000163903518754
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M046	 Transcriptional regulator, TetR family	0.000163903518754
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F1K0Y5	 DNA directed RNA polymerase 	0.000163871702103
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VGM0	 Flavoprotein	0.000163695998333
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W8ERS2	 Histidine kinase	0.000163648705257
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZE8	 Chromosome partitioning ATPase, putative, ParA family	0.000146113701232
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9LZI0	 ABC transporter ATP binding protein	0.000163637872849
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4UMY3	 Transcriptional regulator, Crp Fnr family	0.000163637872849
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YUD0	 Secretion protein HlyD	0.000163637872849
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DXK6		0.000163505479749
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7IBN3	disulfide interchange protein	0.000163373086648
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5E0T6	 ZYRO0G15466p	0.000163373086648
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GH22	 Sugar  phosphate isomerase epimerase	0.000163373086648
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PRF9		0.000163373086648
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O05103	 HTH type transcriptional regulator MalR	0.000163373086648
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5D154	 RNA 3 terminal phosphate cyclase	0.000163373086648
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4BZ47	 TRAP transporter, DctM subunit	0.000163279611339
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0QDW1	 Adenylate guanylate cyclase	0.000163272870914
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P56074	 Delta aminolevulinic acid dehydratase	0.000153208751979
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8P8N2	 Major facilitator superfamily permease	0.000163214434894
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WHX2	 Superfamily I DNA and RNA helicase like protein	0.000163211420809
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V438		0.000163109155979
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C3KLK5	 Peroxiredoxin 6	0.000163109155979
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I2FE21	 Riboflavin synthase subunit alpha	0.000163109155979
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M9REM3		0.000163109155979
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N6DJM0		0.000163109155979
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5XDL5	 CutC like protein M6_Spy0363	0.000163109155979
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUS8	 Spermidine putrescine ABC transporter, permease protein	0.000163109155979
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q2Y639	 UDP N acetylmuramate  L alanine ligase	0.00016017256157
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A3DIP6	 UDP N acetylmuramate  L alanine ligase	0.0001604979597
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A6S6	 ABC transporter associated permease	0.000162998321348
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q47RU5	 Polyribonucleotide nucleotidyltransferase	0.000160886652971
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5VBC0	 Aldehyde dehydrogenase	0.000162863977329
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7G9U3	 Phosphosugar isomerase transcriptional regulator	0.000162846076695
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MPP2	 5 nucleotidase	0.000162846076695
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V6EUN6	 3 oxoacyl [acyl carrier protein] synthase, KASI	0.000162846076695
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9QA68	 Adhesin invasin	0.000162792825387
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9K1M2	 Putative outer membrane protein NMB0088	0.000162783639368
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E1A4		0.000162583844685
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KG78	 HTH type transcriptional regulator BetI	0.000162583844685
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25042		0.000162583844685
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P0DMD0	 Transcriptional regulatory protein RcsA	0.000162583844685
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6XE72		0.000162583844685
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_W4KX88		0.000162583844685
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_R4Q3N6	 Membrane protein	0.000162372894214
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V044	 Lipoprotein, putative	0.00016232245587
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B3PJX0	 Sigma54 dependent transcriptional regulator	0.00016232245587
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VEZ7	 Long chain fatty acid  CoA ligase synthetase	0.000162310789838
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZD1		0.000162071355274
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RVE4	 Pseudouridine synthase	0.000162061906182
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A2RFC7	 ATP synthase subunit a	0.000162061906182
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D6B3U1	 Short chain dehydrogenase	0.000162061906182
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SU99	 Glycosyl transferase group 1	0.000162061906182
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E6E9X3		0.000162061906182
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5ZKR4	 Oxidoreductase	0.000162061906182
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L4FI59	 Sensor protein torS	0.000162055731845
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0E2	 Peptidase S8 and S53, subtilisin, kexin, sedolisin	0.000162053314945
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_UPI000475DCB4	 ATPase, partial	0.000155403721435
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2MTV9	 ABC transporter ATP binding protein	0.000161970167242
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D0IRT5	 Arginine permease	0.000161912084244
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M300		0.000161802191592
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2HZE1	 Enoyl CoA hydratase carnithine racemase	0.000161802191592
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28PJ5	 Acyl [acyl carrier protein]  UDP N acetylglucosamine O acyltransferase	0.000161802191592
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_UPI0002BAE2AB	 hypothetical protein	0.000161802191592
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_X5DQJ7	 ABC type glycine betaine L proline transporter, substrate binding lipoprotein	0.000161802191592
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RML5	 Peptidoglycan glycosyltransferase	0.00016172677942
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S9FAF7		0.000161713518017
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSF5	 Drug transport protein	0.000161624126614
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F6B6L3	 Biotin and thiamin synthesis associated	0.000161621822976
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KLW3	 Methyltransferase type 11	0.000161543308082
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D3V3H0	 ATP dependent Clp protease proteolytic subunit	0.000161543308082
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L1GDP4	 Export membrane protein SecD	0.000161543308082
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RX92	 Single stranded DNA binding protein DdrA	0.000161543308082
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0Z0A9	 Protein YicC	0.000161543308082
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZ60		0.000161533118182
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRT5		0.000161285251683
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HDK7		0.000161285251683
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0KA12	 Phosphoserine phosphatase family enzyme	0.000161285251683
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8TBX4	 Hydrogenase	0.000161285251683
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W9BPP7	 SdiA protein	0.000161285251683
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C4LL84	 Sialic acid transporter	0.000161228832168
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P94367	 ATP binding permease protein CydD	0.000161148792204
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UZN0	 Fe pyochelin receptor	0.000161076931471
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8VSK5	 Invasion plasmid gene product	0.000161076001648
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M9B5		0.000161028018419
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_A9BLG4	  binding domain protein	0.000161028018419
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6G330	quinone reductase, zeta crystallin like oxidoreductase protein	0.000161028018419
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2SW19	 Pyridine nucleotide disulphide oxidoreductase, class II	0.000161028018419
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E6A7		0.000161028018419
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2M1Y3		0.000161028018419
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_R4MC14	 Poly polymerase	0.000160913069401
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F5XE67	 UTP  glucose 1 phosphate uridylyltransferase	0.000160868957638
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B8GTL2	 Chromosome partition protein Smc	0.000160798432292
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HEB6	 Ribosomal subunit interface protein	0.000160771604381
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F7V2B8	 Serine pyruvate aminotransferase	0.000160771604381
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G2AG81	 Protein ydeP domain protein	0.000160771604381
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P20371	 Protocatechuate 3,4 dioxygenase alpha chain	0.000160771604381
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q17X82		0.000160771604381
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZBF0		0.000160771604381
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T9B5		0.000160771604381
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T0TSW6	 5 nucleotidase	0.000160646926276
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ55	 2,5 didehydrogluconate reductase	0.000160516005642
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZS4	 NADPH dependent FMN reductase	0.000160516005642
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VU19		0.000160516005642
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_L9NPU9	 Pirin family protein	0.000160516005642
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4KAE2		0.000160516005642
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9K0Y0	 D alanine  D alanine ligase	0.000160516005642
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E1S075	 Adenylosuccinate synthetase	0.000160399532119
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E8QKJ5		0.000160261218335
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_G2J2T3	 Ribosomal RNA small subunit methyltransferase E	0.000160261218335
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K7YE63		0.000160261218335
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L7Z9S4		0.000160261218335
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VH79	 Transcriptional regulator	0.000160261218335
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I0U0		0.000160261218335
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V2TE51	 Electron transfer flavoprotein, FAD binding	0.000160261218335
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M7N4	 Chaperone protein	0.000160070884344
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU50	 Acyl CoA dehydrogenase	0.000160008142791
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KKV9		0.000160007238593
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q07RH6	 Transaldolase	0.000160007238593
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q8G6D6	 Phosphoglycerate kinase	0.000143415578912
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Z2DBM9	 Oxoglutarate dehydrogenase , E1 component	0.000159874533411
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8XZ19	 DNA polymerase IV	0.000156291900234
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C1CJ99	 Peptidase, M42	0.00015975406258
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6BH49	 Coproporphyrinogen III oxidase	0.00015975406258
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RKF5	 Riboflavin synthase, alpha subunit	0.00015975406258
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HFJ4		0.000159699208722
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VD08	 Amino acid carrier protein	0.000159614529638
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A0R6E0	 Trehalose synthase amylase TreS	7.78446935599e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_A0R6E0	 Trehalose synthase amylase TreS	7.48440085598e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_L0A4U7	 Haloacid dehalogenase superfamily protein, subfamily IA, variant 3 with third motif having DD or ED	0.000159501686498
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O52376	disulfide interchange protein DsbA	0.000159501686498
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A5B2	 Ribosomal RNA small subunit methyltransferase G	0.000159501686498
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V8ELC4		0.000159501686498
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F9J2	 Coenzyme PQQ synthesis protein B	0.000118642265041
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EL78		0.000159256872562
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S2F8	 Type I deoxyribonuclease HsdR	0.000159250106543
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY51	 Type IV pilus assembly PilZ	0.000159250106543
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M7W5	 Heat shock protein DnaJ domain protein	0.000159250106543
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWB5	 Zinc import ATP binding protein ZnuC	0.000139646704778
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M783	 Putative TonB dependent receptor	0.0001591854327
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1M3		0.000159161030069
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0ESR9	 Outer membrane protein	0.000158999318978
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K4KJS3	 Acyl [acyl carrier protein]  UDP N acetylglucosamine O acyltransferase	0.000158999318978
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O05389		0.000158999318978
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q4JVG0	 Chorismate synthase	0.000148041887902
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q04664	 Galactosyl transferase CpsE	0.000158880923958
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4G9I7	 1  5 [(5 phosphoribosylamino)methylideneamino] imidazole 4 carboxamide isomerase	0.000141209185386
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q3K2F6	 Fructose 1,6 bisphosphatase class 3	0.000158809661046
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MB49	 Integral membrane sensor signal transduction histidine kinase	0.000158783235276
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0TPM3	 ATP dependent DNA helicase RecG	0.000158773712904
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M4A2		0.000158749320046
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0DUB4	 Guanine deaminase	0.000158689907659
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D4GIJ6	 YyaJ	0.000158627289171
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5W827	 2 C methyl D erythritol 4 phosphate cytidylyltransferase	0.000158500106044
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ40		0.000158500106044
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V512		0.000158500106044
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B7GJX4	 Predicted dithiol disulfide isomerase involved in polyketide biosynthesis	0.000158500106044
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E4ZDG9		0.000158500106044
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E8QJ87		0.000158422959765
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97J66	 Protein CA_C1420	0.000158390925404
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C9X0B4	 Cystathionine beta lyase 	0.000158251673275
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M1LU25	 Ferredoxin  NADP+ reductase	0.000158251673275
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q890U2	 Glutamine  fructose 6 phosphate aminotransferase [isomerizing]	0.000134024446804
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MEQ3	 Ferripyoverdine receptor	0.000158120631444
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_H6PBG3	 Two component sensor histidine kinase	0.000158110642494
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZA1	 Transcriptional regulator like protein	0.000158038948968
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HM95		0.000158004018075
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6TUT9	 Membrane spanning protein	0.000158004018075
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V627	 Membrane protein, putative	0.000158004018075
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_C5ZXL6	 Hydrogenase expression formation protein HypE	0.000158004018075
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXQ6		0.000158004018075
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9T136	 TetR family transcriptional regulator	0.000158004018075
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M5ABJ7	 Glucuronide carrier protein	0.000157990330036
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M9K8	 Methyl accepting chemotaxis sensory transducer	0.000157971293995
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E1Q026	 Iron regulated outer membrane protein	0.00015792208861
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_L0WLU4	 Apolipoprotein N acyltransferase	0.000157877470237
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G0A8R2	 Amino acid adenylation	0.000157811807184
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LW94	 Transcriptional regulator, DeoR family	0.000157757136799
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V4I6	 Transcriptional regulator, LuxR family	0.000157757136799
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2UX29	 Probable tRNA sulfurtransferase	0.000157757136799
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C6AA47	 N acetylmuramoyl L alanine amidase	0.000157757136799
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VIE6		0.000157757136799
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q49776	 ATP phosphoribosyltransferase	0.000157757136799
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F9B4		0.000157757136799
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZW0	 Sucrose 6 phosphate hydrolase	0.000157751749107
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_X2I9U8	 Histidine kinase	0.000157714814815
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E4R7D6	 Lytic transglycosylase, catalytic	0.000157642183015
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4KM36	 Dihydroxyacid dehydratase phosphogluconate dehydratase	0.000157636386831
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C6XQ62	 Pyridine nucleotide disulphide oxidoreductase dimerisation region	0.000157511120879
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A6QAR3	 Probable transcriptional regulatory protein SUN_1622	0.000157511025821
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JM22	 Phosphoserine phosphatase	0.000157511025821
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5GIU2	 ABC transporter permease protein	0.000157511025821
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9JG24	 Shikimate dehydrogenase	0.000120626723475
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P15493	 Lipase	0.000157265681548
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1J5J9	 Xaa Pro dipeptidase	0.000157265681548
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXI9	 Serine cycle enzyme, putative	0.000157265681548
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q7UX42	 Glutamine  tRNA ligase	0.000152820980484
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88NS8	 Hydrolase, putative	0.000157164332457
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HTQ9		0.000157149386773
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VE78		0.000157114689825
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D5WB27	 Histidine ammonia lyase	0.000157024492139
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT40	 Phage integrase family protein	0.000157021100386
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCR1	 Hydrolase, alpha beta domain protein	0.000157021100386
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E4QDT6		0.000157021100386
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H1ST37	 Polysaccharide biosynthesis protein	0.000157021100386
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUB7	 Phage shock protein A homolog	0.000157021100386
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S5EBY8		0.000157021100386
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X2HGW8	 Alkaline protease secretion protein AprE	0.000156984545094
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q03CA4	 Ribose import ATP binding protein RbsA	8.95075953473e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRD7	 Aspartyl glutamyl tRNA amidotransferase subunit B	0.000156908796094
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_U3NIT1	 Pyridine nucleotide disulfide oxidoreductase protein	0.000156903736517
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A022KFC8	 FCD domain protein	0.000156777278811
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E3D2E3		0.000156777278811
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTL4		0.000156777278811
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W8EUK6	 Iron ABC transporter	0.000156777278811
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WWU8	 CheA signal transduction histidine kinase	0.000156636813946
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DUX4	 Phosphoesterase family protein	0.000156585555709
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q182W3	 Stage IV sporulation protein A	0.000156561402874
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A7A2	 DNA ligase	0.000156557314415
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A034HF74		0.000156534213258
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXR2	 4Fe 4S ferredoxin, iron sulfur binding domain protein	0.000156534213258
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTF9		0.000156534213258
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8G2Y5	 Crp Fnr family transcription regulator	0.000156534213258
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JGS8	 Acyl coenzyme A synthetases AMP  acid ligase	0.00015639067699
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N1HD11	 Propionate catabolism operon regulatory protein PrpR	0.000156390323523
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I4D3	 Putative quercetin 2,3 dioxygenase PA1205	0.000114342658613
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZKV9	 IS606 TRANSPOSASE	0.000156315872988
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M3B4		0.000156291900234
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2HX69	 Predicted hydrolase 	0.000156291900234
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C3I9I9		0.000156291900234
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9GGY0	 Transcriptional regulator	0.000156291900234
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0K7S4	 RNA polymerase factor sigma 54	0.000156239647173
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q47SC0	 Aspartyl glutamyl tRNA amidotransferase subunit B	0.000156189102493
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X2H969	 D 2 hydroxyglutarate dehydrogenase	0.000156061613746
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C3GUE0	 Alcohol dehydrogenase GroES domain protein	0.000156050336246
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M4N9	 Transcriptional antiterminator, BglG	0.000156050336246
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N9JGK4		0.000156050336246
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P72131	 HTH type transcriptional regulator PtxR	0.000156050336246
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q1CUH3	 Tetraacyldisaccharide 4 kinase	0.000156050336246
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q87AR8	 Laccase domain protein PD_1754	0.000156050336246
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P52560	 GTP pyrophosphokinase	0.000151929761441
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A009R342	 SIR2 like domain protein	0.000155963170264
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q45223	 3 hydroxybutyryl CoA dehydrogenase	0.000134083091033
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZQ3		0.000155809517821
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VBK7	 Protein translocase subunit SecE	0.000155809517821
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N9KV58		0.000155809517821
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q1CRS3	 tRNA specific 2 thiouridylase MnmA	0.000155809517821
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6QEM9	 Oxidoreductase short chain dehydrogenase reductase family protein	0.000155809517821
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VLC1	 Rad3 related DNA helicase	0.000155684610072
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M276		0.000155569441527
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H0DTH9	 Peptidase, S54 family	0.000155569441527
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YQW9	 Rhomboid family protein	0.000155569441527
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F9W5		0.000155569441527
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2F4	 Response regulator receiver protein	0.000155513992796
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C6CQD0	 Histidine ammonia lyase	0.000155496395732
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C1E8Z2	 Succinic semialdehyde dehydrogenase	0.000155372637797
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WSD1	 Haemin degrading family protein	0.000155330103929
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2I366	 AraC type DNA binding domain containing protein	0.000155330103929
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5LY30	 Glycoprotein endopeptidase	0.000155330103929
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZ06	 Histidine ammonia lyase	0.000155224386394
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4L1E0	 ABC type Fe3+ siderophore transport system, permease component	0.000155091501615
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I1B7Q6		0.000155091501615
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VMX1		0.000155091501615
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q83FR2	 Hexulose 6 phosphate synthase	0.000155091501615
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U3AB85	 ABC transporter, ATP binding protein	0.000155091501615
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A038G8N7	 ATP dependent RNA helicase, DEAD box family protein	0.000155066000136
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I783		0.000155016666244
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZX12	 Exodeoxyribonuclease 7 large subunit	0.000154972475133
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZTL3	 Amino acid permease	0.000154952867915
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FFD2	 Sensor protein	0.000154922560694
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B3DTC2	 Phosphoglucosamine mutase	0.000150362100169
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JE35	 Lipid A core O antigen ligase	0.000154867738246
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GF04	 Methyltransferase	0.000154853631215
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E4GGL7	 HTH type pyridoxine biosynthesis transcriptional regulator PdxR family protein	0.000154853631215
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E8SMG2	 PetC	0.000154853631215
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0ETC3		0.000154853631215
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0BTM6	 3 oxoacyl [acyl carrier protein] reductase	0.000154853631215
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A651	 Putative pyruvate, phosphate dikinase regulatory protein	0.000154853631215
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q9Z515	 Sporulation transcription regulator WhiA	0.000154853631215
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_F3SWD4	 Putative fibrinogen binding protein	9.04700426116e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_D0W9Q2	 Translation initiation factor IF 2	0.000154691199237
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4KKS1	 CHASE domain sensory box histidine kinase	0.000154663359075
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I7EKZ4		0.000154616489354
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q1H2B5	 Dihydroxyacetone kinase DhaK subunit	0.000154616489354
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q8PMG5	 Phospholipase	0.000154616489354
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZWS4	 ABC transporter ATP binding protein YvcR	0.000154616489354
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K1EXL1	 Phospholipase C, phosphocholine specific	0.000154585918757
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M258	 Sensor histidine kinase like protein	0.000154557521069
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M887	 Histidine kinase	0.000154384494354
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023K2K8	 Oxidoreductase	0.000154380072711
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RSS6	 rRNA methyltransferase	0.000154380072711
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWF9	 NLP P60 protein	0.000154380072711
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B6JMQ6	 tRNA  methyltransferase	0.000154380072711
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KI43	 Transcriptional regulator, LysR family	0.000154380072711
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F8EJQ6	 3 oxoacyl  reductase	0.000154380072711
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U4F0	 Transcriptional regulator, LuxR family protein	0.000154380072711
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YUB2		0.000154380072711
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RJS3	 Transcriptional regulator, LacI family	0.000154380072711
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L0ZBR4	 Autoinducer 2 kinase LsrK domain protein	0.000154380072711
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MNN2		0.000154380072711
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RS18		0.000154380072711
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K025		0.000154380072711
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQP1		0.000154144377946
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P45031		0.000154144377946
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q3K3Q5	 Sensor histidine kinase	0.000154144377946
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_B0RNQ5	 Nicotinamide phosphoribosyltransferase	0.000153989107738
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JJD3	 Tartrate ABC transporter permease	0.000153975137139
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F916		0.0001539609205
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GFP5	 Iron sulfur protein	0.000153936069506
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VUU2		0.000153911064671
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0EVL6	 Conjugal transfer entry exclusion protein	0.000153909401755
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9TIQ4	 Glycosyltransferase	0.000153771494575
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7GYT0	 Ribonuclease 3	0.000148695975778
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7H8U6	 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.000153680837379
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQD4	 Endodeoxyribonuclease RusA	0.000153675140867
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0QJX2		0.000153675140867
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M542	 Two component transcriptional regulator, winged helix family	0.000153675140867
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J2YH36	 4 hydroxyphenylacetate degradation isomerase decarboxylase domain protein	0.000153675140867
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MRW4	 Haloacid dehalogenase superfamily enzyme, subfamily IA	0.000153675140867
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F5Y6	 Lipid A disaccharide synthase	0.000153675140867
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5XA41	 Transcription regulator, crp family	0.000153675140867
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RW97		0.000153675140867
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P55980	 Cytotoxicity associated immunodominant antigen	0.000153526564196
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY73	 Accessory gene regulator B	0.000153441592022
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F5YEL5	 Nitrogenase	0.000153383868802
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E0RBR7	 Periplasmic [Fe] hydrogenase large subunit 	0.000153210956924
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3L8Z6		0.000153208751979
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0HE81	 Alcohol dehydrogenase	0.000153208751979
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3UZP7		0.000153208751979
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXP2		0.000153208751979
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U3TXZ2	 Endonuclease III	0.000153208751979
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V8EN35	 Pyrroloquinoline quinone biosynthesis protein PqqE	0.000153208751979
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VLA1		0.000153090486457
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_R4QCF3	 Membrane protein	0.000153083011434
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYX4	 Probable guanine deaminase	0.000100964567551
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1KVH9	 DNA repair protein RecO	0.000152976617507
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZS8	 HAD superfamily hydrolase, subfamily IA, variant 1	0.000152976617507
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MD42	 PHP domain protein	0.000152976617507
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YQP7	 DNA binding response regulator	0.000152976617507
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YRD9	 Endopeptidase O, putative	0.000152976617507
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2JRT8	 ABC transporter transmembrane region 2 family protein	0.000152976617507
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q2T4E0	 DNA binding response regulator	0.000152976617507
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DWZ8	 Glycosyl transferase, family 8	0.000152976617507
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVJ3	 Branched chain amino acid ABC transporter, ATP binding protein	0.000152976617507
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MT37		0.000152976617507
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_W0GJH7		0.000152976617507
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HYB8	 Electron transport complex subunit C	0.000152861119221
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXU7	 Methylenetetrahydrofolate  tRNA  methyltransferase TrmFO	0.00014252285375
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1BSH6	 FAD dependent oxidoreductase	0.000152750072493
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTQ4	 HAD superfamily hydrolase, subfamily IA, variant 3	0.000152745185404
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_T3G6D1	 Bacterial regulatory s, gntR family protein	0.000152745185404
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWR5	 DNA primase	0.000152723633588
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U1T6A5		0.000152669865009
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E1SA68	 LPS assembly protein LptD	0.000152581904637
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUH2	 Alanine racemase	0.000152514452491
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F5XF11	 Two component histidine kinase SenX3	0.000152514452491
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U530	 ABC transporter, ATP binding protein	0.000152514452491
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F806		0.000152514452491
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X2H5V8	 Glutamate  cysteine ligase , divergent, of Alpha and Beta proteobacteria type	0.000152500886327
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_R6RWM5	 Prophage LambdaSa04 DNA polymerase	0.000152491983402
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LS24	 Peptidase M56, BlaR1	0.000152473597785
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IYR1	 NH dependent NAD(+) synthetase	0.000147609016888
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRT2	 Resolvase, N terminal domain	0.000152343209911
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAY9		0.000152284415608
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C5C0W1	 Ribosome binding ATPase YchF	0.000152284415608
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U4S9		0.000152284415608
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MW69		0.000152284415608
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VGK2	 Universal bacterial protein YeaZ	0.000152284415608
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8WYT5	 Staphylolytic protease preproenzyme LasA	0.000152284415608
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D0IUG7	 Type III R M system restriction enzyme	0.00015223756288
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q46WX7	 AMP dependent synthetase and ligase	0.00015223188124
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KGI1	 DNA directed DNA polymerase	0.000152227036405
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G4PUV9	 Hpr component enzyme I component enzyme IIA component	0.000152187020835
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_D1DKC6		0.000152178867492
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E4ZAN9	 NADH dehydrogenase I chain J	0.000152055071615
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K4NAI3		0.000152055071615
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T5ME54	 Cysteine and O acetyl L serine efflux system protein	0.000152055071615
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MRC1		0.000152055071615
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M277		0.00015182676069
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024ECE2	 Short chain dehydrogenase	0.000151826417371
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A1SM04	 5 carboxymethyl 2 hydroxymuconate delta isomerase	0.000151826417371
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8B183	 dTDP 4 dehydrorhamnose reductase	0.000151826417371
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RW71	 TadB domain containing protein	0.000151826417371
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSR2	 WD repeat family protein	0.000151826417371
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VAL8	 Flavodoxin reductase 1	0.000151826417371
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VI11	 Phosphoenolpyruvate sugar phosphotransferase	0.000151801543558
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E8SP74	 TnaB	0.000134440169845
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4QBP0	 K12555 penicillin binding protein 2A	0.000151776035011
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X2H6U2	 Two component system histidine kinase	0.0001517702611
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q7DDB6	 Probable TonB dependent receptor NMB1497	0.000151754161149
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2L9	 Capsular exopolysaccharide family	0.000151598449776
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8FUI8	 RND family efflux transporter, MFP subunit	0.000151598449776
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUW7		0.000151598449776
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G7ZFF7	 L sorbosone dehydrogenase	0.000151541586138
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F2QGL0	 Competence protein	0.000127803250064
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M1Z168		0.000151486127573
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ64		0.000151371165743
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B6JM63	 Polyamine aminopropyl transferase	0.000151371165743
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HHI0		0.000151371165743
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7SIM7	 Phosphoglycerate mutase family protein	0.000151371165743
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A5H2	 Alanine racemase	0.000151371165743
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W8TZQ2	 Amino acid ABC transporter ATP binding protein	0.000151371165743
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HF88	 Amino acid peptide transporter	0.000151357817318
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A010WN13	 Phospholipase C, phosphocholine specific	0.000151189798153
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MJV4	 Fic family protein	0.000151169038616
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A1T8W5	 Phosphoribosyl isomerase A	0.0001511445622
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSK3	 Branched chain amino acid ABC transporter, permease protein	0.0001511445622
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U8X0	H+ antiporter 2  (DHA2) family protein	0.000150984359419
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWN6	 Cell division protein FtsA	0.000150963734044
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E6S2D5		0.000150938233806
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C7NCS1	 Binding protein dependent transport systems inner membrane component	0.000150918636099
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JKW7	 TetR family regulatory protein	0.000150918636099
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6U512	 Binding protein dependent transport systems inner membrane component	0.000150918636099
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F9Y6I8	 Membrane protein	0.000150918636099
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O05405		0.000150918636099
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZ80		0.000150918636099
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RR83	 Transcriptional activator protein CzcR	0.000150918636099
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XV70	 Cysteine desulfurase	0.000150918636099
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_U3PCK7	 Transposase, undefined	0.000150918636099
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MUC9	 Cyclic di GMP phosphodiesterase response regulator RpfG	0.000150918636099
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HEM4		0.000150817489058
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2ECR6	 MOSC domain protein	0.000150693384401
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U4KGU9	 Toluene tolerance protein Ttg2B	0.000133374593858
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RVS9	 Diguanylate cyclase	0.000150576752798
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M2G8	 Glyoxalase bleomycin resistance protein dioxygenase	0.000150468804098
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W8ESZ0	 MFS transporter	0.000150468804098
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7VFL0	 Lysine  tRNA ligase	0.000147345139035
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZK82		0.00015036223634
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5MZ45	 CheA2	0.000150322486529
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2ELD5		0.000150273772922
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YPI1		0.00015024489219
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1CQ18	 Phage single strand DNA binding protein	0.00015024489219
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2SCI6	 Predicted Hydrolase or acyltransferase 	0.00015024489219
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q47456	 Transcriptional regulatory protein PcoR	0.00015024489219
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V8K7	 Pilin like competence factor	0.000150021645689
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L3QDS2		0.000150021645689
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q893F0	 Transcriptional regulatory protein	0.000150021645689
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_R0PW25		0.000150021645689
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B3E5B6	 Carbon starvation protein CstA	0.000149991273184
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88F38	 Cation transporting P type ATPase	0.00014991942178
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVT5		0.000149892189082
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M5B9	 Type II secretion system protein E	0.000149799061646
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XMI8	 Shikimate dehydrogenase	0.000149799061646
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5TC44	 Nicotinate nucleotide diphosphorylase 	0.000149799061646
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1IVE2	 YD repeat protein	0.000149762973114
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYR1	 Drug transport protein, putative	0.00014975814942
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B4U0G0	 S adenosylmethionine dependent methyltransferase	0.000149577137115
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B5HHN6	 Regulatory protein	0.000149577137115
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7GV54	 Probable allantoicase	0.000149577137115
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RUT9		0.000149577137115
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q03AI1	 Uracil DNA glycosylase	0.000149577137115
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K891	 rRNA methylase	0.000149577137115
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MWI4	 Flagellar basal body rod protein FlgG	0.000149577137115
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0NB13	H+ symporter family	0.000149541457307
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IYB4	 ATPase AAA 2	0.000149541272794
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P56145	 Phenylalanine  tRNA ligase beta subunit	0.00014950874194
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX16	 Zinc finger, SWIM domain protein	0.000149506419129
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4M1C9		0.000149410972477
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_L0A3G2	 ABC type metal ion transport system, periplasmic component surface adhesin	0.000149355869156
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EPG2		0.000149308020825
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P44555		0.000149249827898
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V4J6	 Methylenetetrahydrofolate reductase	0.000149245480485
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E4BAZ7		0.000149135254871
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DY22		0.000149135254871
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4KGB9	 Transcriptional regulator, AraC family	0.000149135254871
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HW09	 Probable 2 dehydropantoate 2 reductase	0.000149135254871
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RV98	 Ferrochelatase	0.000149135254871
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MRN2	 Cytochrome B561	0.000149135254871
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WWS4	 RecB family exonuclease like protein	0.000148960169024
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RTX7	 3 oxoacyl ACP reductase	0.000148915291375
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PQ95	 Response regulator receiver protein	0.000148915291375
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1IIB8	 Sensor histidine kinase	0.000148915291375
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2HW18		0.000148915291375
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MPJ0		0.000148915291375
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_Q6UB95	 RepA	0.000112558046324
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M7U1	 Phosphopantetheinyl transferase component of siderophore synthetase	0.000148695975778
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ26	 Two component transcriptional regulator, LytTR family	0.000148695975778
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTK9	 Transcriptional regulator, GntR family	0.000148695975778
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C6CTD5	 Glycosyl transferase family 2	0.000148695975778
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D5WC99	 Enoyl CoA hydratase isomerase	0.000148695975778
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YTI3	 Peptide ABC transporter ATP binding protein	0.000148695975778
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P9WK18	 Methionine aminopeptidase 2	0.000148695975778
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1I3T3	 Polyhydroxyalkanoate synthesis protein PhaF	0.000148695975778
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97FS6	 Dihydroorotate dehydrogenase B ), electron transfer subunit	0.000148695975778
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_R4QAT2	 Membrane protein required for colicin V production	0.000148695975778
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q887Q4	 Alginate biosynthesis protein AlgX	0.000148688330337
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZDD2		0.000148601634041
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WHU9		0.000148477305223
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B5SMJ4	 Ribose abc transporter, permease protein	0.000148477305223
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GUV3	 GTPase, G3E family	0.000148477305223
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L8NGT0	 Membrane bound lytic murein transglycosylase	0.000148477305223
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VAB4	 Bacterial SH3 domain containing protein	0.000148477305223
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7VI99	 Arginine  tRNA ligase	0.000148397607256
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KLG8	 PTS system, fructose subfamily, IIC subunit	0.000148355187751
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q4W573	 Bis tetraphosphatase, symmetrical Trk system potassium uptake protein TrkG, fusion	0.000148350676492
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VJY1	 Transporter, lactate permease  family protein	0.000148279741291
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E0RLY4	 Short chain type dehydrogenase reductase	0.000148259276874
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E9WE17	 LysR family bacterial regulatory helix turn helix protein	0.000148259276874
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J1I0	 O antigen polymerase	0.000148259276874
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S0V1D3	 Protein sbmA	0.000148259276874
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WSR0		0.000148043630187
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KJG8	 HAD superfamily hydrolase, subfamily IA, variant 3	0.000148041887902
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M1X8		0.000148041887902
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYE4	 Peptidoglycan binding domain 1 protein	0.000147907201018
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M5ABW2		0.000147854680482
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RW48		0.000147825135503
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V1I4		0.000141011965854
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRB4	 Histidine kinase	0.000147729538444
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E0TH65	 Flagellar biosynthesis protein FlhA	0.000147687068385
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C8VZF1		0.000147683994055
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2U6V6	 Probable non ribosomal peptide synthetase	0.000147610349974
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1KSK9	 Sec independent protein translocase protein TatB	0.000147609016888
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZSI9		0.000147609016888
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9Z004	 Menaquinone specific isochorismate synthase	0.000147609016888
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q28UK4	 FAD linked oxidase like protein	0.000147609016888
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q83K97		0.000147609016888
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5ZJK5	 Pyruvate dehydrogenase complex repressor	0.000147609016888
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HKR5	 Cobyrinic acid a,c diamide synthase	0.000147605540557
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3TL38	 UDP 2,3 diacylglucosamine hydrolase	0.000147393529272
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9K0V4	 Ribosomal RNA large subunit methyltransferase L	0.000147393529272
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q03GN4	 Pyridine nucleotide disulfide oxidoreductase	0.000147368116288
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVK7	 MATE efflux family protein	0.000147253638886
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0I9		0.000147178669897
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5ZJK9	 Methyltransferase	0.000147178669897
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MSH2		0.000147178669897
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C825	 Copper homeostasis protein CutC	0.000147178669897
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_R9DPB9	 Na+ H+ antiporter NhaC	0.000147178669897
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V4VCN9		0.000147178669897
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTV7		0.000147071787019
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7I864	 TonB dependent receptor	0.000147061083876
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XVS8		0.000146965098669
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K0HWR7	 LysR family transcriptional regulator	0.000146964436029
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2J3G4	 ABC transporter related	0.000146964436029
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5Y3E4	 Glycine cleavage T protein	0.000146964436029
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B5M1	 5 nucleotidase SurE	0.000129110700192
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A010V7A5		0.00014675082493
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXH8	 MORN repeat containing protein	0.00014675082493
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WSH1	 Beta lactamase domain protein	0.000111072131519
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MWT7	 Peptidyl prolyl cis trans isomerase	0.000146414060371
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O85227	 Hydrogen cyanide synthase subunit HcnB	0.000146379438167
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWU3		0.000146367314786
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WW75	 3 deoxy manno octulosonate cytidylyltransferase	0.000146325460217
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B1Y7H6	 50S ribosomal protein L1	0.000146325460217
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S3X7	 Lyase	0.000146325460217
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DX93	 Sensor histidine kinase	0.000146241664664
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q0RRL9	 60 kDa chaperonin 1	0.000146205875047
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9WSL6	 3 ketoacyl CoA thiolase	0.000146113701232
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F3ZY48	 Carbohydrate ABC transporter membrane protein 2, CUT1 family	0.000146113701232
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8V9G8	 Luciferase family oxidoreductase, group 1	0.000146113701232
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RY70	 Ornithine carbamoyltransferase	0.000146113701232
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_V6JSM6	 UDP N acetylglucosamine 2 epimerase	0.000146113701232
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W6ICD8		0.000146113701232
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A948	 Pyridoxal biosynthesis lyase PdxS	0.000129441753276
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E8U9D7	 Nicotinate phosphoribosyltransferase	0.000145956941121
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F8Z9	 Formamidopyrimidine DNA glycosylase	0.000122233132626
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D9RC05		0.000145902554264
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6BNK0	 ABC type transporter, integral membrane subunit	0.000145902554264
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VGA8	 Protease	0.000145902554264
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P95649	 Protein CbbY	0.000145902554264
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_V5CIF7		0.000145902554264
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZA4	 Bacteriophytochrome	0.000110685476279
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S2E8	 Peptidase M23	0.000145692016668
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B3PI58	 Undecaprenyl diphosphatase	0.000145692016668
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E8U946	 Methylenetetrahydrofolate reductase	0.000145692016668
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RSJ8	 Exonuclease SbcCD, D subunit	0.000145692016668
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U5VMK8	 NAD specific glutamate dehydrogenase	0.000145641011327
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q07GL5	 Pirin protein, putative	0.000136254477125
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2G9	 Polysaccharide biosynthesis protein	0.000145492047235
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7SJY0	 CoA substrate specific enzyme activase	0.000144433588109
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VGE0	 Anchored repeat ABC transporter, substrate binding protein	0.000145323023705
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1J449	 Peptidase M23B	0.00014527275907
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RNK2		0.00014527275907
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YL85		0.00014527275907
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSR1	 Polyribonucleotide nucleotidyltransferase	0.00014521201811
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I4DYY6	 3 ketoacyl  reductase	0.000145064033838
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q3K2I8		0.000145064033838
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4K8R5	 ErfK YbiS YcfS YnhG family protein	0.000145064033838
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q8C3X4	 Translation factor Guf1, mitochondrial	0.000145046305642
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q2PB80	 Surface protein	0.000145043430544
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P75783	 Moderate conductance mechanosensitive channel YbiO	0.000145035380902
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P28822	 Dihydropteroate synthase	0.000130276861352
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023NMX1	 Peptidoglycan transglycosylase	0.000144855907538
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_A2RG42	 5 methylthioadenosine S adenosylhomocysteine nucleosidase	0.000144855907538
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M9V8	 Acylneuraminate cytidylyltransferase	0.000144855907538
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3QXL3	 NADH dehydrogenase	0.000144855907538
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VI78	disulfide interchange protein	0.000144855907538
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0Z4Y7	 Integrase catalytic subunit	0.000144855907538
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8SSE7	 Molybdopterin biosynthesis protein MoeA	0.000144855907538
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VCQ6	 Deoxyribodipyrimidine photolyase , FAD binding	7.38045084391e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B0VCQ6	 Deoxyribodipyrimidine photolyase , FAD binding	7.09020839533e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7I5R6		0.000144681960622
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H9UNS0		0.000144648377576
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4JWD8	 Peptidase, M48 family protein	0.000144557353414
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A010U7S7	 Glutamine  tRNA ligase	0.000144494745639
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_A0A016QUC8	 UvrABC system protein B	0.000144476420853
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G7SNL0	 PfkB family carbohydrate kinase	0.000144441441416
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N659	 Diguanylate phosphodiesterase	0.000144441441416
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IVX0	 4 hydroxybenzoate polyprenyltransferase, putative	0.000144441441416
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q21UM5	 Enoyl CoA hydratase isomerase	0.000144441441416
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1F1	 Single stranded DNA specific exonuclease RecJ	0.000144422235168
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P26340	 Mannose 1 phosphate guanylyltransferase ManC	0.000134619423398
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTT6	 Cysteine  tRNA ligase	0.000144345424213
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D7I1Z5	 Protein involved in meta pathway of phenol degradation	0.000144235096505
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSX2		0.000144235096505
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MRF4	 Nitrite and sulphite reductase 4Fe 4S region	0.000144235096505
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI00036D0EB4	 hypothetical protein	0.000144235096505
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_T5D7P0	 1 pyrroline 5 carboxylate dehydrogenase 	0.00014419692474
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR97	 Acyl ACP thioesterase	0.000144029340297
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VAG5	 Haloacid dehalogenase, type II	0.000144029340297
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M3Z6	 Periplasmic protein	0.000144029340297
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MWK1	 SbmA BacA like family protein	0.000144029340297
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_L0DXM3	 ADP heptose  lipooligosaccharide heptosyltransferase II	0.000144029340297
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IYQ4	 Prephenate dehydratase	0.000144029340297
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSR5	 Cell divisionFtsK SpoIIIE	0.000143839866545
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2TG00	 Alpha beta hydrolase fold	0.000143824170301
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8DLQ2	 ABC transporter related	0.000143824170301
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JM33	 Transcriptional regulator	0.000143824170301
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R4K2P7	 Demethylmenaquinone methyltransferase	0.000143619584
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6F4S0	 Oxidoreductase, pyridine nucleotide disulfide family	0.000143372400668
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C5BMG6	 Probable cytosol aminopeptidase	0.000143242186665
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT04		0.000143212152554
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DTG1	 TetR family transcriptional regulator	0.000143212152554
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U546	 TENA THI 4 family protein	0.000143212152554
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T8P1G7	 Multidrug resistance protein MdtO	0.000143212152554
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M193	 Transposition Helper	0.00014300930248
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S1A1	 Membrane associated protein	0.00014300930248
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P20372	 Protocatechuate 3,4 dioxygenase beta chain	0.00014300930248
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P37454	 Exodeoxyribonuclease	0.00014300930248
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1JUQ1	 L arabonate dehydratase	8.37185468964e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A1UWS5	 Hemin ABC transporter, permease protein	0.000142807026239
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B3PGS4	 Flagellar basal body rod protein FlgF	0.000142807026239
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_D2T8K9	 Aromatic amino acid transaminase	0.000142807026239
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F5X5		0.000142807026239
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MX92	 Sensory transduction protein LytT	0.000142807026239
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VL55		0.000142786537429
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A4ILI2	 UDP N acetylenolpyruvoylglucosamine reductase	0.000123882904968
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P56117		0.00014267066518
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YZQ4	 Endoglycoceramidase	0.000142625878873
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B420	 Peptidase M48, Ste24p	0.000142605321397
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0K3	 Cell wall hydrolase autolysin	0.000142605321397
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_F4D3L6		0.000142605321397
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K4L2S2	 Flagellar motor rotation protein MotA	0.000142605321397
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F4W7		0.000142605321397
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8C2D4	 Alpha xylosidase	0.000142504894476
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR80	 NAD dependent aldehyde dehydrogenase like protein	0.000142476131912
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F8F839	 Acetolactate synthase large subunit	0.000142432313209
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N5AME8	 Phage tail tape measure protein, TP901 family, core region	0.000142412305727
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A1U4H5	 D 3 phosphoglycerate dehydrogenase	0.00014240418554
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUS8	 ABC transporter related	0.00014240418554
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S768	 GHMP kinase, N terminal domain containing protein	0.00014240418554
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GVP7	 Alpha amylase	0.000142323791039
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RT23	 LysR family transcriptional regulator	0.000142203616267
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25657	 4 hydroxy tetrahydrodipicolinate synthase	0.000142203616267
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5I1Z2		0.000142203616267
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5DC92		0.000142203616267
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7VFA9	 ATP dependent RNA helicase DeaD	0.000136623230783
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVW0	 DNA directed RNA polymerase subunit beta	0.000142137861507
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MRE3	 Di  tripeptide transporter	0.000142047516231
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S292	 Lysozyme	0.000142003611183
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU85		0.000142003611183
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6S5N2	 Putrescine transport system permease protein	0.000142003611183
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DVY7	 Cell division protein FtsQ	0.000142003611183
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MNB9	 Transcriptional regulator, RpiR family	0.000142003611183
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DY40	 Glycerol uptake facilitator protein	0.000142003611183
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTE5		0.000142003611183
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q896L1	 Magnesium protoporphyrin IX monomethyl ester oxidative cyclase	0.000141989221299
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0E539	 Integral membrane protein	0.000141977747847
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_C1CVF4	 DNA gyrase subunit A	0.000139922913434
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VA45		0.000141880432694
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B9MFW6	 5 nucleotidase SurE	0.000141804167907
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C6AVN9	 Alpha beta hydrolase fold protein	0.000141804167907
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0J3V7	 Spermidine putrescine ABC transporter ATP binding protein	0.000141804167907
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q7WJ90	 Isoprenyl transferase	0.000141804167907
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N1Z0		0.000141754551778
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KPA3	 Lipid A biosynthesis acyltransferase	0.000141605284085
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_O83046	 Pca operon regulatory protein	0.000141605284085
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZKM0	 Putative	0.000141605284085
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5BPH7		0.000141605284085
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C5C1A7	 Ribulokinase	0.000141584682336
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_X2GNK8	 Arsenic transporter ATPase	0.000141546862594
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U5P8	 Uracil xanthine permease	0.000141475388454
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_O04983	 Biotin carboxylase, chloroplastic	0.000116992546413
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DTN7		0.000141406957356
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_K0FX78	 BRO domain containing protein	0.000141406957356
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q04661	 Tyrosine protein phosphatase CpsB	0.000141406957356
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6KLR0	 Polysaccharide deacetylase	0.000141406957356
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G9G2D7	 ABC transporter related protein	0.000141308002175
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W4UF17	 Beta mannosidase	0.00014127184119
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8ICU4	 Pyridine nucleotide disulfide oxidoreductase family protein	0.000141243561489
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K6U2B0	 ABC type sugar transport system, periplasmic component	0.000141209185386
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q5ZT84	 4 hydroxyphenylpyruvate dioxygenase	0.000141209185386
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KJQ4		0.000141140926402
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWT8	 Sensor histidine kinase	0.000141048057497
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUF3	 Histidinol phosphate aminotransferase	0.000141011965854
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6S4K8	 Purine cytosine transport protein	0.000141011965854
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_C7C0M5		0.000141011965854
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L9N3	 Short chain dehydrogenase	0.000141011965854
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q24UB9	 NADH quinone oxidoreductase subunit H	0.000141011965854
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CP54		0.000141004905543
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L2K0	 Penicillin binding protein 3A	0.00014092663674
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C3L0X3	 Proton sodium glutamate symporter	0.000140815296448
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5XB78		0.000140815296448
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q2LRC2	 UDP N acetylglucosamine pyrophosphorylase	0.000140619174866
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_H6VX66		0.000140531118689
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JZG4	 DNA translocase FtsK 2	0.000140501802233
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A0JTB2	 Homodimeric dihydroxyacetone kinase	0.000140470987857
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E3NV91	 Aldehyde dehydrogenase	0.000140424685355
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A7GYD5	 Queuine tRNA ribosyltransferase	0.000140423598815
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HAN6	 ABC transporter, ATP binding protein	0.000140423598815
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GPH6	 Conserved protein with a HD domain	0.000140423598815
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VD27	 Hydrolase, alpha beta domain protein	0.00014039022316
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0QP46	 Flavoprotein	0.000140328454309
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RXY1	 Helicase	0.000140268705366
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V9E6	 AMP nucleosidase	0.000140251284062
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WCX2	 30S ribosomal protein S2	0.000140228566044
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYK1		0.000140228566044
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E6S2L0	 Transporter, major facilitator family protein	0.000140228566044
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U7J9	 Haloacid dehalogenase like hydrolase	0.000140228566044
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S3MGS8	 Gamma carboxygeranoyl CoA hydratase	0.000140228566044
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S6BCA1		0.000140228566044
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L9P8	 Transcriptional regulator AcoR	0.000140158251866
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E466		0.000140115001755
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MXN6	 ABC type multidrug transport system, ATPase and permease component	0.000140108285774
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0A5H2	 Binding protein dependent transport systems inner membrane component	0.000140034141131
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXW3	 ApbE family lipoprotein	0.000140034074272
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V9ZPI5	 GntR family transcriptional regulator	0.000140034074272
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E4GYP5	 Phenylalanine  tRNA ligase beta subunit	0.000139934770935
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0TPV7	 Stage V sporulation protein B	0.000139889381537
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RS28	 GGDEF family protein	0.000139858749927
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H1Y2	 LysR substrate binding domain protein	0.000139840121257
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KMP6		0.000139840121257
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L9BMS0	 Amino ABC transporter, permease , 3 TM region, His Glu Gln Arg opine family domain protein 	0.000139840121257
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P38055	 Inner membrane metabolite transport protein YdjE	0.000139840121257
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q031D5	 Phosphoserine aminotransferase	0.000139840121257
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRM5	 Transport protein, putative	0.000139840121257
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B9UQA9	 PI 1 ancillary protein 2	0.000139646704778
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RWB5	 Metal binding protein	0.000139453822583
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV77	 Binding protein dependent transport systems inner membrane component	0.000139453822583
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C1E2L9	 Serine pyruvate aminotransferase and or alanine glyoxylate transaminase	0.000139453822583
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7N2E0	 Transcriptional regulator LsrR	0.000139453822583
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S217		0.000139261472482
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV67		0.000139261472482
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I6K2	 Guanidinopropionase	0.000105722060258
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HLL2	 Peptidase, M24 family protein	0.00013910455536
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F3Y8Y9	 Altronate oxidoreductase	0.000139069652272
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YZU0	 Transcriptional regulator, GntR family	0.000139069652272
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F6M1	 Cell division protein FtsQ	0.000139069652272
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VNN0	 Carboxypeptidase G2	0.000138878359765
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUR8		0.000138878359765
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FDQ7		0.000138878359765
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9QT07	 Membrane protein	0.000138878359765
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A030Z1U3		0.000138687592787
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M7V2	 23 dihydro 2,3 dihydroxybenzoate dehydrogenase	0.000138687592787
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ54		0.000138687592787
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D0K0C5		0.000138616605165
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V6API5	 Transcriptional regulatory protein AlgP	0.000121351643689
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PGY9		0.00013849734918
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR93	 4 phosphopantetheinyl transferase	0.00013849734918
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A7FRF2	 SPFH domain Band 7 family protein	0.00013849734918
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_M4ZP55	 7 carboxy 7 deazaguanine synthase	0.00013849734918
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q31WQ9		0.00013849734918
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6ARX8	 NADPH dependent 7 cyano 7 deazaguanine reductase	0.000124647614257
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2J9	 Cell wall surface repeat protein	0.000138307626783
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V6W0	 Cobalt precorrin 5B C methyltransferase	0.000138307626783
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M1IRD2	 Dehydrogenase	0.000138307626783
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q8FP97	 Proline  tRNA ligase	0.000138296784894
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RPB8	 Lon protease	0.000138251330787
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_E8TFY3	 Amidohydrolase 3	0.000138228960785
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A0RQU5	 TonB dependent receptor protein	0.000138201771835
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K4KVK1	 Drug resistance ABC transporter,ATP binding protein	0.000138181218023
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRG4		0.00013816582129
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E4AYJ6		0.000138136756741
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4X062		0.000138118423464
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A9KSY6	 Sulfate ABC transporter, inner membrane subunit	0.000138118423464
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4QX58		0.000138118423464
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2IS47	 CRISPR associated protein CasA Cse1	0.000138118423464
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVT7	 Phosphatase, putative	0.000138118423464
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZT6	 Transcriptional regulator, XRE family	0.000137929737094
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K7Y9Y7	 Outer membrane protein	0.000137929737094
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M1FED4	 Bis tetraphosphatase prpE [asymmetrical]	0.000137929737094
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_UPI0003616C00	 hypothetical protein	0.000137929737094
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I2DEY3	 Flagellar hook associated protein FlgL	0.000137808545174
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A7FX06	 Aminotransferase, class IV	0.000137741565552
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LNW7		0.000137741565552
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q887Q0	 Alginate biosynthesis protein Alg44	0.000137741565552
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T5MN46	 Inner membrane amino acid ABC transporter permease yhdY	0.000137741565552
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8R7Y4	 Energy coupling factor transporter ATP binding protein EcfA1	0.000119768170286
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2UY31	 Two component sensor kinase	0.00013765541179
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S1Z6	 Transcriptional regulator MexT	0.00011181015233
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2JLW6	 ABC transporter related	0.000137553906749
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9Z273	 Glycerol 3 phosphate dehydrogenase	0.000137553906749
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C7MAG4	 Phosphate sulfate permease	0.000137379764961
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A1VBP9	 Binding protein dependent transport systems inner membrane component	0.000137366758574
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2HZL6	 Cobalamin synthase	0.000137366758574
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C7MCQ3	 Pseudouridine synthase	0.000137366758574
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JND0	 Universal stress family protein	0.000137366758574
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M0U9	 Short chain dehydrogenase reductase SDR	0.000137366758574
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3V422	 LysR family transcriptional regulator	0.000137366758574
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RY02		0.000137366758574
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RM84	 Long chain fatty acid  CoA ligase	0.000137362792949
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I1ZK66	 Oligoendopeptidase F	0.000137235113156
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C2X6L3	 Alpha glucosidase	0.00013720082463
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9RPT1	 Rhamnolipids biosynthesis 3 oxoacyl [acyl carrier protein] reductase	0.000137180118958
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9IBZ3	 Protein icc	0.000137180118958
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U8YTJ0		0.000137180118958
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8FRJ8	 Proton translocating NADH quinone oxidoreductase, chain M	0.000137133411911
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2U5K3		0.000121790793185
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A009HBV1	 Ferrous iron transport protein B	0.000137092886935
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AA35	 NAD transhydrogenase subunit alpha	0.000137088568761
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_C2ZFP3	 Acetyl CoA acetyltransferase	0.00013699398582
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D1BYT2	 Succinyl diaminopimelate desuccinylase	0.00013699398582
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_F8KP37	 Phospholipase A1	0.000136808357112
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I3XDQ4	 DNA topoisomerase 1B	0.000136808357112
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZAJ2		0.000136623230783
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U8S7	 Siderophore interacting protein	0.000136438604804
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H4B3Q7	 ATPase associated with various cellular activities family protein	0.000136438604804
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JZR3	 23S rRNA  methyltransferase RlmB	0.000136438604804
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZW64	 NAD dependent oxidoreductase	0.000136438604804
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A6Z0		0.000136362099791
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C5C7X4	 Chromosomal replication initiator protein DnaA	0.0001363554309
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WWW6	 TonB family protein	0.000136254477125
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LPP5	 Basic amino acid, basic peptide and imipenem outer membrane porin	0.000136254477125
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VIZ2	 Dicarboxylate transport protein   alpha ketoglutarate permease	0.000136254477125
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P27175	 Quinoprotein glucose dehydrogenase	0.00013619328135
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7I3B2	 2 aminoethylphosphonate ABC transport system, 1 aminoethylphosphonate binding protein component	0.000136070845758
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F1UED2		0.000136070845758
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXY2		0.000136070845758
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VAK2		0.000136067390428
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_T1VWC8	 ABC transporter ATP binding protein permease	0.000136060001336
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JKK4	 Glutathione import ATP binding protein gsiA	0.000135972569786
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q42682	 Delta aminolevulinic acid dehydratase, chloroplastic	0.000124493918067
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C7T103	 BibA	0.000135966921778
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VG42		0.000135922969408
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTI6		0.000135887708684
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_B7VS71	 Phosphomethylpyrimidine kinase	0.000135887708684
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O86062	 NADH pyrophosphatase	0.000135887708684
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P56111	 Phosphogluconate dehydratase	0.000126522014477
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A5W974	 3 methyl 2 oxobutanoate hydroxymethyltransferase	0.000127803250064
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A015AL57	 AcrB AcrD AcrF family protein	0.000135779468256
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTN2	 Protein translocase subunit SecD	0.000135705063912
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A8AXK2	 Pyridoxal phosphate dependent aminotransferase	0.000135705063912
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RS94		0.000135705063912
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YMJ4	 ABC transporter substrate binding protein	0.000135705063912
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SZB0	 Dienelactone hydrolase	0.000135632167686
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A0A024DFI1	 Cell division protein FtsK	0.000135531915505
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B8F444		0.000135522909465
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JGK5	 RDD family protein	0.000135522909465
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S3P9S1		0.000135433132711
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F6G1Z6	 Fused ATP binding subunit of ABC superfamily protein involved in precise excision of transposons	0.000135378412409
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M3H8		0.000135341243363
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VRG1		0.000135341243363
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F9M2		0.000135341243363
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_U3TMY9	 Integrase	0.000135341243363
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SVE5	 Aminotransferase	0.000135341243363
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q831N0	 tRNA N6 adenosine threonylcarbamoyltransferase	0.000121205963449
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C7RCC8	 Serine O acetyltransferase	0.000135160063659
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E6S5F6	 Flagellar biosynthesis sigma factor	0.000135160063659
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U705	 Efflux ABC transporter, permease protein	0.000135160063659
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1QEV4	 FAD linked oxidase like protein	0.000135153966287
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7IAM2		0.000135122415678
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HDS2	maltose 1 phosphate maltosyltransferase	0.000135058495919
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DWF3		0.000134995662538
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSW5	 Cobalamin synthase	0.000134979368382
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX48	 Beta lactamase domain protein	0.000134979368382
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GDB8	 Permease protein of oligopeptide ABC transporter	0.000134979368382
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RNA7	 SAM dependent methyltransferase related to tRNA	0.000134979368382
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_M4ZJ25	 Integrase recombinase	0.000134979368382
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LSU1	 Lipid A disaccharide synthase	0.000134979368382
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU03		0.000134979368382
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXJ6	 30S ribosomal protein S3	0.000134979368382
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A7D5	 Conserved protein	0.000134825114887
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6RPX2	 Iron containing alcohol dehydrogenase	0.000134799155604
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6ZCK2	 Acyl CoA dehydrogenase	0.000134799155604
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K2R7		0.000134799155604
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D0L5P3		0.000134791352063
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4DVS4	 Periplasmic binding protein	0.000134619423398
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A1V9U1	 Adenylosuccinate synthetase	0.000117674321155
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V5K4	 Copper resistance protein A	0.000134450771023
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HUN5		0.00013435078143
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTI4		0.000134261393016
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWI0	 GCN5 related N acetyltransferase	0.000134261393016
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q9XAR0	 NADH quinone oxidoreductase subunit G	0.000134222691672
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V5F8	 ABC transporter, permease protein	0.000134083091033
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E1PY57	 Riboflavin biosynthesis protein 	0.000134083091033
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1GCT8	 Butyryl CoA dehydrogenase	0.000134083091033
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VLP6		0.000134021912674
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RQY3		0.000133977686206
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S0B1	 Glutathione S transferase	0.000133905261999
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HAA4	 NlpC P60 family protein	0.000133905261999
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6L4U5	 Altronate oxidoreductase	0.000127159404973
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZB3	 FMN binding domain protein	0.000133727904045
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UZF9	 Oxidoreductase, short chain dehydrogenase reductase family	0.000133727904045
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F9S8	 Molybdopterin biosynthesis protein  OR thiamin thiazole moiety synthesis (ThiF)	0.000133727904045
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1Y7P3	 Glycine  tRNA ligase alpha subunit	0.00011525635565
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M2X4		0.000133551015284
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C5ZSV0	 Transcriptional regulator, LuxR family	0.000133551015284
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E0SHR7	 FMN oxidoreductase	0.000133551015284
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5GFP8		0.000133551015284
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9L4M7	 Hydrolase	0.000133551015284
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5VZL4	 Beta lactamase	0.000126680762298
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SXK1	 Histidine kinase	0.000133439114235
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FA05		0.00013341983496
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K7YQ94		0.000133390140735
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_G8RED2	 Virulence associated cell wall anchored protein SasG	0.000133374593858
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25890	 Chaperone protein DnaJ	0.000133374593858
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P35755	 Iron utilization periplasmic protein	0.000133374593858
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q39FJ3	 Hydroxypyruvate isomerase	0.000133374593858
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q31H63	 Argininosuccinate synthase	0.000128945807859
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8UV07		0.000133287838528
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1IQ80	 Riboflavin biosynthesis protein RibD	0.000133198637928
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F8G9	 ADP dependent  NAD(P)H hydrate dehydratase	0.000133198637928
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR21	 Binding protein dependent transport systems inner membrane component	0.000133023145658
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXE4		0.000133023145658
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RNI0		0.000133023145658
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F9Y8Y0	 Oxidoreductase, aldo keto reductase family protein	0.000133023145658
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q00513	 Type II secretion system protein F	0.000133023145658
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1RAX2		0.000133023145658
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9SIB9	 Aconitate hydratase 2, mitochondrial	0.000127314539667
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E3D657	 Glutathione regulated potassium efflux system protein	0.000132875348939
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX27	 Urea amidolyase related protein	0.0001328481152
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6UXY4		0.0001328481152
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUZ6		0.0001328481152
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7NQ15	 Gluconate 5 dehydrogenase	0.0001328481152
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C6XB32	 Malto oligosyltrehalose trehalohydrolase	0.000132776557068
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M185	 Histidinol phosphate aminotransferase	0.000132673544747
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3HN93	 Bacterial regulatory helix turn helix protein, LysR family protein 40	0.000132673544747
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M701	 NAD dependent epimerase dehydratase	0.000132673544747
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0SRR9	 Polysaccharide deacetylase family protein	0.000132673544747
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q4FRE8		0.000132673544747
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AEX4	 ABC type glycine betaine transport, ATP binding protein	0.000132673544747
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_G2SIS1	 Gamma glutamyltransferase	0.00013252530971
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXI3		6.59899134279e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V3K7	 Membrane protein, putative	0.000132499432481
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4J5A0	 Diaminopropionate ammonia lyase	0.000132499432481
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U596	 Metal binding protein	0.000132499432481
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GTG2	 Putative serine protease	0.000132499432481
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T2G2V5		0.000132499432481
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_UPI0000F2F50C	 glutamyl Q tRNA ligase	0.000132499432481
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAW6		0.000132325776605
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQ28	 Short chain dehydrogenase reductase SDR	0.000132325776605
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MZ19	 Periplasmic protein	0.000132325776605
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q3JS21	 EutG protein	0.000132325776605
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q7ML43		0.000132325776605
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU53		0.000132325776605
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1V472	 2 octaprenyl 6 methoxyphenyl hydroxylase	0.000132152575333
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_L0A7F9		0.000132152575333
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M1V095	 A G specific adenine glycosylase	0.000132152575333
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M4A9	 Exonuclease RNase T and DNA polymerase III	0.000131979826866
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E0Z8	 Prophage LambdaSa1, reverse transcriptase maturase family protein	0.000131979826866
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZMN9	 Fumarate reductase cytochrome b subunit	0.000131979826866
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUT7	 Zn dependent hydrolase of the beta lactamase fold like protein	0.000131807529438
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAY2		0.000131807529438
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FDU5		0.000131807529438
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XMJ3	 3 dehydroquinate synthase	0.000131807529438
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUC2	 Oxidoreductase, short chain dehydrogenase reductase family	0.000131807529438
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E4B1	 Glycosyl transferases group 1 family protein	0.000131807529438
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4H950	 YD repeat protein 	0.000131800918066
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8GQJ7		0.000131677199104
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VKR8		0.000131662835036
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RZK1	 Transglutaminase	0.000131635681292
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRR4	 Transglutaminase domain protein	0.000131635681292
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M378	 Thymidylate synthase	0.000131635681292
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I0BK74	 Transcriptional regulator	0.000131635681292
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S2B2	 Sirohydrochlorin cobaltochelatase	0.000131635681292
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LY81	 Multi sensor signal transduction histidine kinase	0.000131482812517
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E4REK4	 Regulatory protein, IclR	0.000131464280662
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRX1	 Acyl CoA dehydrogenase, putative	0.000131454877782
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I163	 Putative quercetin 2,3 dioxygenase PA2418	0.000117674321155
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1JS05	 Transposase for insertion sequence element IS1665	0.000131293325811
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B2VIL6	 Ubiquinone biosynthesis O methyltransferase	0.000131293325811
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B8DT48	 Methionine  tRNA ligase	0.000131256447503
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q12GA2	 Glycerol kinase	9.28836868024e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S0D0	 LysR family transcriptional regulator	0.000131122815001
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_K9ZX43		0.000131122815001
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4RA06		0.000131122815001
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q8G4N5	 Glucosamine 6 phosphate deaminase	0.000131122815001
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q05627		0.000130982849568
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ15	 BAAT Acyl CoA thioester hydrolase like protein	0.000130952746498
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR25	 Binding protein dependent transport systems inner membrane component	0.000130952746498
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5JVU8	 Diguanylate cyclase domain protein	0.000130952746498
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYN5	 Cytochrome C6, putative	0.000130952746498
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A900	 Ribonuclease Y	0.000130831538847
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MXC7	 Chorismate mutase	0.000130783118593
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MCE4	 Diguanylate cyclase	0.000130783118593
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZPC0	 Sialidase	0.000130739012232
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q650K4	 4 deoxy L threo 5 hexosulose uronate ketol isomerase	0.000124493918067
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_T1Y610		0.000130652673624
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JK92	 LysR family transcriptional regulator	0.000130613929561
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W0AMQ6	 Cell envelope integrity inner membrane protein TolA	0.000130613929561
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W5WZ80	 N succinyldiaminopimelate aminotransferase	0.000130613929561
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8V540	 Acetoin utilization acuC protein	0.000130613929561
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VCJ0	 Protease	0.000130573124671
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3TNK1	 GNAT family acetyltransferase TIGR03103	0.000130533693827
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S045	 Metallophosphatase	0.000130445177716
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WP12	 Ribosomal RNA small subunit methyltransferase E	0.000130445177716
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYF6	 Rubrerythrin	0.000130445177716
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HEJ4	 Phospholipase, patatin family	0.000130445177716
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2X6L5	 HTH type transcriptional regulator MurR	0.000130445177716
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P19940	 RNA polymerase sigma G factor	0.000130445177716
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A038CJW0		0.000130385711959
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M3L2	 Transcription regulator LysR family	0.000130276861352
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQC6	 Polysaccharide deacetylase	0.000130276861352
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUR0	 Transcriptional regulator, RpiR family	0.000130276861352
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E8QKR2	 Zinc dependent alcohol dehydrogenase	0.000130276861352
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U653		0.000130276861352
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVS2	 Restriction endonuclease	0.000130233815956
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MZX2		0.000130145889731
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M079	 NADPH dependent FMN reductase	0.000130108978802
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JE80	 Tyrosine recombinase XerC	0.000130108978802
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F2J418	 Major facilitator superfamily  transporter	0.000130108978802
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V5M9		0.00012994152838
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DDR4		0.00012994152838
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E8QA07		0.00012994152838
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_J7J208	 Peptidylarginine deiminase like enzyme	0.00012994152838
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4QZ95	 3,5 bisphosphate nucleotidase CysQ	0.00012994152838
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A009FMX4	 BCCT transporter family protein	0.000129931861416
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2J1	 Glycosyl transferase, group 1	0.000129838326871
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVI5		0.00012977450842
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P26993	 Exoenzyme S synthesis regulatory protein ExsA	0.00012977450842
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q2VYZ0	 Phenylalanyl tRNA synthetase alpha subunit	0.00012977450842
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I3P5		0.00012977450842
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N391		0.000129634622012
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RTZ1	 LysR family transcriptional regulator	0.000129607917268
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B6JNM2		0.000129607917268
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25963	 UDP N acetylenolpyruvoylglucosamine reductase	0.000129607917268
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1JBZ8	 Two component sensor kinase yesM	0.000129586623194
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JGI7	 MJ0042 family finger like domain protein	0.000129441753276
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E6VA72	 ABC transporter related protein	0.000129441753276
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N022	 Histidinol phosphatase HisK	0.000129441753276
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5XD38	 PTS system, N acetylgalactosamine specific IID component	0.000129441753276
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9UYG2		0.000129441753276
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LS23	 Helix turn helix domain protein	0.000129276014789
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_T9WNI3	 NADP specific glutamate dehydrogenase	0.000129276014789
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A0A024C1C5		0.00012917869793
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PMS5		0.000129110700192
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWV9	 Transcription activator, effector binding	0.000129110700192
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B5Z805		0.000129110700192
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JEK3		0.000129110700192
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RJQ2	 3 mercaptopyruvate sulfurtransferase	0.000129110700192
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V4I6Z5	 Phenylacetate CoA oxygenase subunit PaaA	0.000129110700192
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1C6W3	 Chemotaxis response regulator protein glutamate methylesterase	9.65244431705e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWR2	 Pentapeptide repeat protein	0.000128945807859
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FBR2		0.000128945807859
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25515	 Hydroxymethylpyrimidine phosphomethylpyrimidine kinase	0.000128945807859
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W8H2B8	 Regucalcin	0.000128945807859
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RS60	 DNA modification methyltransferase related protein	0.000128866495395
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_A9G3I5	 Malate dehydrogenase  (NADP(+))	0.000128807280231
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B4U470	 Nickel or oligopeptide transport ATP binding protein	0.000128781336164
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VER6	 Tat  pathway signal sequence	0.000128781336164
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P55995	 Lon protease	0.000128625744566
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D1AJ49	 2 amino 4 hydroxy 6 hydroxymethyldihydropteridine pyrophosphokinase	0.000128617283503
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WW64		9.34857106929e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1ZHY8	 Pyridoxal 5 phosphate dependent protein beta subunit	0.000121205963449
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K6LY10	 Amidohydrolase family protein	0.000128517525866
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MQL2	 Dihydroorotase	0.00012845364828
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SQU7	 Integral membrane sensor signal transduction histidine kinase	0.0001284132685
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3LGU1		0.000128290428909
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VSH8		0.000128290428909
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HBS7	 Oxidoreductase, NAD binding domain protein	0.000128290428909
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F5C4	 Thiazole synthase	0.000128290428909
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_W0RI86	 von Willebrand factor type A	0.000128290428909
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02SV2	 Tyrosine  tRNA ligase	8.45599393202e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZS0		0.000128127623796
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MG47		0.000128127623796
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZXC5	 Hydrolase 	0.000128127623796
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KP66	 Outer membrane usher protein	0.000128073621262
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X7DB62		0.000128005480982
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JMR4	 HTH type transcriptional activator aaeR	0.000127965231366
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MXU9	 Bacterial regulatory helix turn helix , lysR family protein	0.000127965231366
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U7D2	 ABC transporter, permease protein	0.000127965231366
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VGK7	 AsnC family transcriptional regulator	0.000127965231366
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F8A1	 Bis tetraphosphatase, symmetrical (Diadenosine tetraphosphatase) (Ap4A hydrolase) (Diadenosine 5,5 P1,P4 tetraphosphate pyrophosphohydrolase)	0.000127965231366
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W4U756	 Helicase	0.000127885989184
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A028ILN1		0.000127803250064
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRT8		0.000127803250064
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JLE3	 Cell division protein FtsQ	0.000127803250064
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VIA3		0.000127803250064
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6V897	 Extracellular solute binding protein family 1	0.000127803250064
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A7FVN3	 Carbon monoxide dehydrogenase	0.000127684088551
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSA1		0.000127641678324
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V4A2	 Heme d1 biosynthesis protein NirF	0.000127641678324
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B9K138	 Aliphatic sulfonates import ATP binding protein SsuB	0.000127641678324
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q13LM2	 ABC putrescine transporter, inner membrane subunit PotI	0.000127641678324
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WG67		0.000121937883516
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8FSB8	 Chitinase	0.000127538496676
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXH6		0.000127519012341
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V5A3		0.000127480514582
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U5VGF8		0.000127480514582
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2B1	 Beta lactamase domain protein	0.000127459243216
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VDE3	 ABC transporter	0.000127322379495
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_B2HGA4	 Isopentenyl diphosphate delta isomerase	0.000127319757313
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q892Q8	 Heat inducible transcription repressor HrcA	0.000127319757313
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5LXH8	 Zinc finger domain containing protein	0.000107523501119
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_O75874	 Isocitrate dehydrogenase [NADP] cytoplasmic	8.79482295769e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P35885	 DNA gyrase subunit A	0.000127234246595
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKF2	 Lytic transglycosylase, catalytic	0.000127159404973
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A7ZEL6	 3 methyl 2 oxobutanoate hydroxymethyltransferase	0.000127159404973
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E3I461	 Arsenical resistance protein	0.000127159404973
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E9W328	 Phosphate acetyl butaryl transferase	0.000127159404973
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9QTM2	 Sugar ABC transporter substrate binding protein	0.000127159404973
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4H9E3		0.000126999456037
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8P8P5		0.000126999456037
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S960		0.000126999456037
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1JHG8	 Periplasmic component of efflux system	0.000126999456037
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HU82		0.000126999456037
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q4FR51	 Lon protease	0.000126974415047
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_Q932I8	 Tetracycline resistance protein TetM	6.65554169703e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q932I8	 Tetracycline resistance protein TetM	6.03855069084e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B8H806	 Shikimate dehydrogenase	0.00012683990898
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E1S7W8	 Molybdenum transport ATP binding protein	0.00012683990898
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MWF2		0.00012683990898
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F8GU00	 Oxygenase subunit protein	0.000126680762298
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2SV86	 IolD protein	0.000126629524234
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V9I8	 Transcriptional regulator, IclR family	0.000126522014477
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JW21	 Amino acid acetyltransferase	0.000123127521402
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1QBW0	 Lipid A export ATP binding permease protein MsbA	0.000126458616796
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_H2I4X3	 DNA double strand break repair rad50 ATPase	0.00012637629584
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTX4		0.000126363664022
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RND3	 Electron transfer flavoprotein ubiquinone oxidoreductase	0.000126335063759
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LDX4		0.0001262447642
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I7HG53	 Penicillin binding protein	0.000126208864662
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S0W1	 Acyltransferase	0.000126205709439
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W5VBR3	 LysR family transcriptional regulator	0.000126205709439
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EP41	 Outer membrane protein P1	0.000126181118479
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8I6U9	 Phosphatidylserine decarboxylase proenzyme	0.000126048149254
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M9H8		0.000126048149254
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P72097	 CMP N acetylneuraminate beta galactosamide alpha 2,3 sialyltransferase	0.000126048149254
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VPR2		0.000125890981982
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E6C9E2		0.000125890981982
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q31EP3	 ATP binding cassette  superfamily transporter, ATP binding component	0.000125890981982
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZN08	 Magnesium and cobalt transport protein CorA	0.000125890981982
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2U1	 Chromosome partition protein Smc	0.000125879359062
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_L0GLS2	 TIGR01244 family protein	0.000125830178878
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M7T5	 Metallophosphoesterase	0.000125734206171
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P63946	 4 hydroxy tetrahydrodipicolinate synthase	0.000125734206171
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RV62	 NADH pyrophosphatase	0.000125734206171
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X2HA66	 Macrolide specific efflux protein MacA	0.000125734206171
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B3PFW0	 Copper resistance protein A	0.000125671634187
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JV93	 4 hydroxybenzoate octaprenyltransferase	0.000125577820334
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_R0P9K1	 D alanyl D alanine carboxypeptidase family protein 	0.000125577820334
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S6AXT9	 ABC type multidrug transport system, ATPase permease components	0.000125577820334
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PKV6	 Chalcone and stilbene synthases domain protein	0.00012542182304
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_R0ZN34		0.00012542182304
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_S1H4E1	 Outer membrane autotransporter barrel domain containing protein	0.00012542182304
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D0ISP2	 Aminodeoxychorismate lyase	0.000125266212844
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E5ASL7	 Folylpolyglutamate synthase    Dihydrofolate synthase (EC 6.3.2.12)	0.000125266212844
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U3QMM7	 ABC transporter ATP binding protein	0.000125182549717
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F5TR17	 Ribonucleoside diphosphate reductase	0.000125123266877
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A0A024BU97	 Restriction endonuclease	0.000125110988293
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M9G0T9	 Acyl CoA dehydrogenase, N terminal domain protein	0.000125110988293
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VMS2	 Glucose 6 phosphate isomerase	0.000125098746319
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SSR9	 ABC transporter related	0.000125076679432
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A746		0.000124956793408
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I0JK39		0.000124956147962
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q03024	 Alkaline protease secretion ATP binding protein AprD	0.000124956147962
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DVB6	 Alpha galactosidase	0.000124858410838
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RU18	 Cytochrome C assembly protein	0.000124801690418
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WG85		0.000124801690418
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_R9SL71	 SAM dependent methyltransferase	0.000124801690418
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A8V3	 1 deoxy D xylulose 5 phosphate synthase	0.000124757596415
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6TT61	 Biotin synthase	0.000124647614257
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VH54	 Transporter, major facilitator family protein	0.000124647614257
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RLB7	 Transcriptional regulator, LuxR family	0.000124647614257
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7BMZ3	 ABC transporter related protein	0.000124532318415
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4K4R8	 DNA binding response regulator	0.000124493918067
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4QUJ5		0.000124493918067
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_F4D588	 Type I restriction modification system, M subunit	0.000124359461523
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B5SGS2	 Phosphoribosylaminoimidazole carboxylase atpase subunit protein	0.000124340600433
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8AXQ8	 Putrescine transport protein 	0.000124340600433
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q6V3X0	 Dihydroorotate dehydrogenase 	0.000109506038561
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUU0	 D 3 phosphoglycerate dehydrogenase	0.000124303283838
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WFZ6	 Anthranilate phosphoribosyltransferase	0.000118921752118
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HTK9	 Rubredoxin NAD reductase	0.000124035095272
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZS57	 Tn5252, Orf23	0.000124035095272
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_X2HPT1	 Membrane protein	0.000124035095272
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5WHC3	 4 hydroxy tetrahydrodipicolinate synthase	0.000122678696905
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A3CKW3	 Small conductance mechanosensitive efflux channel, putative	0.000123882904968
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q59640	 Phosphatidate cytidylyltransferase	0.000123882904968
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_R4XYL7	 Glutamate dehydrogenase	0.000123882904968
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F2N3V4	 Peptide ABC transporter, periplasmic peptide binding protein	0.000123765311142
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTI7		0.000123750861376
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2F5	 Conjugal transfer protein	0.000123731087687
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U4V3	 Oxidoreductase, Gfo Idh MocA family protein	0.000123731087687
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I1Y2		0.000123731087687
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2ERR4	 Outer membrane porin, OprD family protein	0.000123731087687
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GWF1	 5` nucleotidase family protein	0.000123694131354
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7FH09	 UPF0176 protein YpsIP31758_1560	0.000123579642048
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P45262	 Replication associated recombination protein A	0.000123579642048
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q72TV3	 Transketolase alpha subunit protein	0.000123579642048
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RW78	 Chloride peroxidase, putative	0.000123579642048
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R5A053	 Glycerol 3 phosphate transporter	0.000123579642048
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MV95		0.000123579642048
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M3B5	 Arylsulfatase	0.000123519028908
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VV71		0.000123428566685
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F5XDX0	 Diaminopimelate epimerase	0.000123428566685
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P41504	 Probable tRNA dihydrouridine synthase	0.000123428566685
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E6NPZ4	 Methyl accepting chemotaxis protein	0.000123380451375
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RQ95	 Integral membrane protein MviN	0.000123277860258
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P58253	 Stage 0 sporulation protein A homolog	0.000123277860258
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RW09	 Sensor histidine kinase	0.000123277860258
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZJN2	 Probable nicotinate nucleotide pyrophosphorylase [carboxylating]	0.000123277860258
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9UBP5		8.30984095082e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX02	flavin oxidoreductase NADH oxidase	0.00012320305774
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_B7KKV6	 Transposase, IS605 OrfB family	0.000123127521402
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C1MWX1	 Predicted protein	0.000123127521402
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0K9R8		0.000123127521402
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25758	 Probable chromosome partitioning protein ParB	0.000123127521402
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B8FY01	 Binding protein dependent transport systems inner membrane component	0.000122977548784
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_T2A3N6	 Replication initiation factor	0.000122977548784
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MRG1	 Amino acid polyamine organocation transporter, APC superfamily	0.000122973279599
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IZ90	 Drug resistance transporter EmrB QacA subfamily	0.000122955784014
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F8J4	 DNA primase	0.000122867679839
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_J7TL98	 Transcriptional regulator, AraC family	0.000122827941063
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU40		0.000122827941063
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZZ3	 AAA ATPase, central domain protein	0.000122724234349
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_K9ZX93	 Threonine  tRNA ligase	0.000122697326968
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O34319		0.000122678696905
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RY11		0.0001226261011
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VCS4		0.000122529814988
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KM62	 Alcohol dehydrogenase, zinc binding domain protein	0.000122529814988
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_R4QKT1	 Fibronectin	0.000122529814988
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V6AHQ4	 Putative serine threonine protein kinase	0.000122495186454
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E8QNX4	 Type II adenine specific DNA methyltransferase	0.000122381293999
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MCR1	 Taurine transporting ATPase	0.000122381293999
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_R4Q8N7	 Oxidoreductase	0.000122381293999
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W5V8H5	 O methyltransferase	0.000122381293999
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A020PVQ3	 Tandem lipoprotein	0.000122085329566
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B1J595	 Hydrolase, alpha beta fold family	0.000122085329566
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B1XZJ7	 Pseudouridine synthase	0.000122085329566
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V343	 Chemotaxis protein MotA	0.000122085329566
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7UA16	 UDP glucose 4 epimerase	0.000122085329566
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JNU4	 Patatin like phospholipase family protein	0.000121937883516
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F0PBS4	 PTS system, IIC component	0.000121937883516
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZS47	 CylD	0.000121937883516
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6QZF3		0.000121937883516
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W8S4A4	 Protein YicC	0.000121937883516
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R9P548	 Glycoside hydrolase	0.000121905767989
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D8GL93	 Adenine deaminase	0.000121826723698
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQN1		0.000121790793185
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LV07	 Patatin	0.000121790793185
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E3DNN6	 Binding protein dependent transport systems inner membrane component	0.000121790793185
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A6W2T3	 3 dehydroquinate synthase	0.000115785054529
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LSK3	 Protein kinase	0.000121543016383
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7HEZ4	 Phospho 2 dehydro 3 deoxyheptonate aldolase	0.000121497674548
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B2IN54	 Transketolase, N terminal subunit	0.000121497674548
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K0H8L8	 Formimidoylglutamase	0.000121497674548
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VFS5		0.000121497674548
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZUW4	 ABC transporter permease protein	0.000121446352886
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRU6		0.000121351643689
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E1V4H9	 ATP dependent RNA helicase RhlB	0.000121351643689
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_G2M909		0.000121278759821
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F4UMA3	 Glyceraldehyde 3 phosphate dehydrogenase C 	0.000121205963449
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P58965	 DNA polymerase IV	0.000121205963449
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CWD7	 AraC type DNA binding domain containing protein	0.000121205963449
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MTT1	 Transcriptional regulator, AraC family	0.000121205963449
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F3U4R8		6.04216442575e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A9ANH6	 Transcriptional regulator, AraC family	0.000121060632557
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M4D7	 Lipoprotein	0.000121060632557
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TRM3	 NAD kinase	0.000121060632557
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1BAK9	 Cell division protein FtsQ	0.00012091564976
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PRM1	 6 phosphogluconate dehydrogenase, NAD binding	0.00012091564976
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2SBZ3	 Dihydrodipicolinate synthetase	0.00012091564976
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RNS6		0.00012091564976
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4RCM3	 Transcriptional regulator, LysR family	0.00012091564976
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R7IGE7	 Cyclodextrin ABC transporter permease protein	0.00012091564976
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1QVP5	 Phosphoribosylformylglycinamidine cyclo ligase	0.000116184772787
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q44653	 30S ribosomal protein S1	0.000120843288515
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P52667	 HTH type transcriptional regulator EstR	0.000120771013817
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YN60	 Sulfite reductase	0.000120771013817
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6S4V7	 Transcriptional regulator, AraC family	0.000120626723475
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E5ASY5	 DNA polymerase III subunit beta	0.000120626723475
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F6FQD2	 Nicotinate phosphoribosyltransferase	0.000120626723475
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B0T8H5	tRNA ribosyltransferase isomerase	0.000120482777504
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VBC3	 Binding protein dependent transport system inner membrane component	0.000120482777504
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q032R3	 1,4 dihydroxy 2 naphthoate octaprenyltransferase	0.000120482777504
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_S4YWC9	 Iron ABC transporter permease	0.000120482777504
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KF14	 Acyl CoA dehydrogenase	0.000120405646471
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D7CX06	 Lysine biosynthesis enzyme LysX	0.000120339174671
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0DA52	 DegV domain containing protein SpyM3_0586	0.000120339174671
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F9V8	 Pseudouridine synthase	0.000120339174671
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CRD4	 Integrase	0.000120339174671
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MMM3	 D galactose binding periplasmic protein MglB	0.000120339174671
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D2NR34	 ATPase with chaperone activity, ATP binding subunit	0.000120331351996
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DH36		0.000120297435343
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JMF6		0.000120195913754
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E4ZDR8		0.000120195913754
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXT7		0.000120195913754
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T8SMP8	 Protein rhsB 	0.000120195913754
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ11	 Transcriptional regulator, LysR family	0.000120052993522
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C3KT41	 D isomer specific 2 hydroxyacid dehydrogenase family protein	0.000120052993522
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q897T7	 Transcriptional regulatory protein	0.000120052993522
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9Z908	 Allophanate hydrolase	0.000120052993522
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYQ3		0.000119910412773
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N9ANA5		0.000119910412773
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXD2	 S layer like array related protein	0.000119910412773
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5FWD3	 Ribokinase family Sugar kinase	0.000119910412773
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KX84		0.000107523501119
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1J9N5	 Para aminobenzoate synthetase component I   4 amino 4 deoxychorismate lyase	0.000119781823058
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0KCX4	 Carbohydrate ABC transporter membrane protein 2, CUT1 family	0.000119768170286
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B9K203		0.000119768170286
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_F4D676	 P type DNA transfer ATPase VirB11	0.000119768170286
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9PMA7	 NADH quinone oxidoreductase subunit L	0.000119645725466
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M168	 Diguanylate cyclase	0.000119626264869
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K8EKX2	 DNA 3 methylpurine glycosylase	0.000119626264869
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZNA1		0.000119626264869
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZNL7	 ABC transporter substrate binding protein	0.000119626264869
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M3S8	 Dihydropyrimidinase	0.000119484695331
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSQ3	 Phosphoglucosamine mutase	0.000119484695331
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A010IHG0	 Thiamine pyrophosphate enzyme, C terminal TPP binding domain protein	0.000119370913826
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IYT0	 ABC protein exporter, fused ATPase and inner membrane subunits	0.000119346837179
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MYF0	 Bacterial lipid A biosynthesis acyltransferase family protein	0.00011934346046
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_I6X2N5		0.00011934346046
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5KET0	 ABC transporter efflux protein, DrrB family,putative	0.00011934346046
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P9WG25	 Transketolase	0.000116777664836
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0D3	 Methyl accepting chemotaxis sensory transducer	0.000119203597586
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9K5G4	 Ribokinase	0.000119202559095
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E8UAZ5	 Phosphoesterase RecJ domain protein	0.000119202559095
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LCW7		0.000119202559095
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J2EU84	 Transcriptional regulator, AraC family	0.000119202559095
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RW34		0.000119202559095
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7D6K7		0.000119202559095
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V4R4P8	 Phosphoribosylformylglycinamidine cyclo ligase	0.000117128899152
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MDS8	 Ribonuclease E	0.000119183547588
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RLX4	 DNA mismatch repair protein MutL	0.000119130792016
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_C1CUQ9	 Translation initiation factor IF 2	0.000119080246922
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q4FBH4	 Superfamily I DNA helicase	0.000118940969512
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JDM8	 Dihydropteroate synthase	0.000118921752118
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LPZ1		0.000118921752118
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F856	 UPF0042 nucleotide binding protein ACIAD3059	0.000118921752118
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F945		0.000118921752118
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RT94	 Chloromuconate cycloisomerase, putative	0.000118921752118
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RW26		0.000118921752118
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q9X909	 DNA topoisomerase 1	0.000118892625668
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZG6		0.000118781844174
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0N8C1	 RNA polymerase sigma 54 factor	0.000118781844174
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q97D80	 4 hydroxy tetrahydrodipicolinate synthase 2	0.000118642265041
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B3G0Z4		0.00011863385441
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EMS0	 Bifunctional cytochrome c biogenesis protein	0.000118559399907
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q5SHB3	 Ribonuclease Y	0.000118538622954
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C5BY82	 Glutamate racemase	0.000118503013559
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_D2FMR2	 Acetyl coenzyme A synthetase	0.000118503013559
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_G0AAP1	 Sulfate adenylyltransferase subunit 1	0.000118503013559
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JLL9		0.000118503013559
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2T833	 Membrane protein, putative	0.000118503013559
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I452	 Probable 3 mercaptopyruvate sulfurtransferase	0.000118503013559
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q9Z3Q8	 Rhizobactin siderophore biosynthesis protein RhbE	0.000118503013559
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U1VIQ4		0.000100362393193
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VCQ8	 NADH dehydrogenase	0.000118364088576
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JM28	 Permease	0.000118364088576
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VL07	 Universal stress protein UspA	0.000118364088576
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_S5XQJ7	 Histone deacetylase	0.00011822548894
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024E8Z4	 Sensor histidine kinase response regulator	0.000118182498056
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25582	 Protease HtpX homolog	0.000118087213513
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FBI7		0.000118087213513
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RQZ8	 Xanthine dehydrogenase	0.000117994498154
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DJQ4	 LysR family transcriptional regulator protein	0.000117949261161
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YUS2	 Glyoxalase	0.000117949261161
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MT68	 Peptidase U61 LD carboxypeptidase A	0.000117949261161
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VM83	 Serine threonine protein kinase	0.000117814197336
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VNR8	 NAD glutamate dehydrogenase	0.000117812549755
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_H5WHX8		0.000117811630746
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q7AX70	 FhaC protein	0.000117676878779
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H4G2	 Opine oxidase subunit A	0.000117674321155
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_L7VTK0		0.000117674321155
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P07661	 Citrate proton symporter	0.000117674321155
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G8U508	 DNA directed RNA polymerase	0.000117644251544
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EB62	 Type II secretion system protein D	0.000117570294221
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VFI4		0.000117537331259
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GDY6	 Transporter	0.000117503143556
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M2U6	 Oxygen independent coproporphyrinogen III oxidase	0.000117400659946
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5LWF8	 Ribose ABC transport system ATP binding protein RbsA	0.000117400659946
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K0CB29		0.000117400659946
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P38376	 Protein translocase subunit SecY	0.000117400659946
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MKF5	 UPF0750 membrane protein YpjC	0.000117400659946
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q6XGF7	 Pilx6 VirB6 like protein	0.000117264306096
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWE3		0.000117264306096
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZ46	 Minor tail protein gp26 related protein	0.000111849338365
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4JAE0		0.000117128268618
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_R7II06	 Oligopeptide transport ATP binding protein OppD	0.000117128268618
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A9W9	 Cation transporting P type ATPase A	0.000116992703493
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A1T9L9	 Malate dehydrogenase	0.000116992546413
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT65		0.000116992546413
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LRF0	 Transglutaminase domain protein	0.000116992546413
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I7J8Z1	 Transporter, BCCT family protein	0.000116992546413
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P08394	 RecBCD enzyme subunit RecB	0.000116861574176
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1VIU6	 ATP synthase subunit a	0.000116857138369
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JUV1	 Proline iminopeptidase	0.000111686468534
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6AFX2	 Response regulator receiver modulated CheB methylesterase	0.000116722043416
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU14		0.000116587260453
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_I7FLW8	 General substrate transporter	0.000116587260453
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FA90	 C4 dicarboxylate transport protein	0.000116587260453
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S4YFW2	 LysR family transcriptional regulator	0.000116587260453
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WU27	 Amidohydrolase	0.000116486619608
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EMB4		0.000116479627004
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V079		0.000116452788411
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_H0DYF1	 ABC transporter, substrate binding protein, family 3	0.000116452788411
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F797		0.000116452788411
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q17VZ5	 Threonine  tRNA ligase	0.000116442944224
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q7NPZ7	 UDP N acetylmuramoylalanine  D glutamate ligase	0.000116318626209
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A662	 Signal recognition particle receptor FtsY	0.000116222415225
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B5EZJ2	 Ribonuclease BN	0.000116184772787
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E8ZN21	 Histone acetyltransferase HPA2	0.000116184772787
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J2Y4U4	 Transporter, major facilitator family	0.000116184772787
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F964		0.000116184772787
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P43329	 ATP dependent RNA helicase HrpA	0.000116104807093
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY06	 Helix turn helix domain containing protein, AraC type	0.000116051227075
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_O33945	 Probable cat1 operon transcriptional activator	0.000116051227075
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVA9	 Transcriptional regulator, LacI family	0.000116051227075
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6WXN2	 Cysteine synthase A	0.000115917988002
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2XH16		0.000115917988002
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVE7	 Transcriptional regulator, LysR family	0.000115917988002
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q2SGE5	 Predicted Zn dependent Hydrolase of the beta lactamase fold	0.000115785054529
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B3WA65	 Probable potassium transport system protein kup	0.000115716425873
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JP76		0.000115652425605
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RS72		0.000115652425605
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q9XAQ9	 NADH quinone oxidoreductase subunit F	0.000115652425605
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZHP4	 MFS family transporter	0.000115652425605
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1E2		0.000115583170858
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RK88	 Ferrichrysobactin receptor	0.000115569119114
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HZX3	 Protein glutamine gamma glutamyltransferase	0.000115556060609
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1KWK7	 Possible lipoprotein	0.00011552010017
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KLG3	 Membrane protein	0.00011552010017
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A9J7	 UPF0042 nucleotide binding protein PPA0813	0.00011552010017
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8FZY5	 Histidine kinase	0.00011552010017
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I7GUS8		0.000115399307828
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZA6	 Histidine kinase	0.000115388077206
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G0BED7	 Transcriptional regulator, LysR family	0.000115388077206
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P56396	 Tryptophan  tRNA ligase	0.00011525635565
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9K068	 Tyrosine recombinase XerD	0.00011525635565
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUQ6	 Carboxymethylenebutenolidase related protein	0.00011525635565
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4REQ0		0.00011525635565
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9QVD4		0.000115249458801
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ17	 Malonyl CoA acyl carrier protein transacylase	0.000115124934495
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M372	 SH3, type 3 domain protein	0.000115124934495
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B7GK36	 Fatty acid desaturase	0.000115124934495
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_M4R901		0.000115124934495
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X5ENC8	 Fructose bisphosphate aldolase	0.000115124934495
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JGN7	 Surface antigen family protein	0.000115124216001
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P0A5L7	 Glutamine dependent NAD synthetase	0.000115111100643
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B5Z6V3		0.0001149938127
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M8A4		0.0001149938127
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S0P6	 LysR family transcriptional regulator	0.0001149938127
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D7CRR2	 Cytochrome c assembly protein	0.000114984661231
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZK3	 Histidine kinase	0.000114862989255
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B7GQA5	 Binding protein dependent transport systems inner membrane component	0.000114862989255
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KL61	 Transporter, RhaT family, DMT superfamily	0.000114862989255
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DXB0		0.000114862989255
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M012	 ABC transporter related	0.00011473246313
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D3SQB6	 Urea ABC transporter, urea binding protein	0.00011473246313
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D6Y938	 Binding protein dependent transport systems inner membrane component	0.00011473246313
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F6R3	 Agmatinase	0.00011473246313
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZR71	 CylF	0.00011473246313
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VFB4	 Transcriptional regulator	0.00011473246313
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MQ56	 Serine threonine protein phosphatase	0.00011469832496
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XNN2	 Cell division protein FtsX	0.000114602233316
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B1XAJ3	 5 methyltetrahydropteroyltriglutamate  homocysteine methyltransferase	9.07966492564e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7GZ54	 Actinomycin synthetase II	0.000114579213607
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PP57	 Glutathione S transferase family protein	0.000114472298814
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5BXF1	 Aspartokinase	0.000114472298814
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WDL1	 Peptidoglycan glycosyltransferase	0.000114342658613
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWJ6		0.000114342658613
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RVB3	 DNA recombination RmuC like protein	0.000114342658613
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P65894	 Phosphoribosylamine  glycine ligase	0.000114342658613
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4XYD4		0.000111378452898
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S6J1		0.000114213311714
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q72HC1	 Probable dual specificity RNA methyltransferase RlmN	0.000114213311714
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HXC6		0.000114213311714
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_W9F1Z6		0.000114213311714
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3N7I6	 MFS transporter	0.000114084257117
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C9XK28	 L lactate dehydrogenase	0.000114084257117
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWV7	 Tryptophan  tRNA ligase	0.000114084257117
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7D190	 6 phosphogluconate dehydrogenase	0.000114084257117
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8PEA5	 Diacylglycerol kinase	0.000114084257117
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W0HG73	 Malonyl CoA acyl carrier protein transacylase	0.000114084257117
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P55218	 O succinylhomoserine sulfhydrylase	8.38576142499e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXP0	 Multicopper oxidase, type 3	0.000113955493854
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MAU3	 Cobalt ABC transporter, inner membrane subunit CbiQ	0.000113955493854
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1KU06	 Sulfite reductase [NADPH] flavoprotein alpha component	5.57199600181e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4QWY4	 Acyl CoA dehydrogenase	0.000113827020915
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSV9		0.000113827020915
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MLC6	 AAA domain protein	0.000113737198252
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZW11		0.00011369883733
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KLK8	 LysR family transcriptional regulatory protein	0.00011369883733
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P50933	 L lactate dehydrogenase	0.00011369883733
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RT22	 3 oxoacyl [acyl carrier protein] synthase 3 protein 2	0.000103130303939
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2Y1	 Pseudouridine synthase	0.00011357094213
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M9D2	 Pseudouridine synthase, RluA family	0.00011357094213
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VQK9		0.00011357094213
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RR78	 Protoheme IX farnesyltransferase	0.00011357094213
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWU9	 Aldo keto reductase	0.000113443334325
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F5M0N6	 AraC family transcriptional regulator	0.000113443334325
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I1ZNC1		0.000113443334325
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I2C019	 Transcriptional regulator, LysR family	0.000113443334325
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_T2A3K0	 MafB family adhesin protein	0.000113443334325
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T3H2	 Outer membrane cobalamin receptor protein	0.000113376659183
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2I7A0	 Malonyl CoA acyl carrier protein transacylase	0.000113316012967
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F0K2U2	 Phosphate starvation inducible protein family	0.000113316012967
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8R6G7	 DNA 3 methyladenine glycosidase	0.000113316012967
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4KFA0	 Copper sensor histidine kinase	0.000113188977077
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88MS8	 Probable biofilm formation methyltransferase WspC	0.000113188977077
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B5Z6E9	 Acetyl coenzyme A synthetase	0.000106850503883
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A997	 Chaperone protein DnaJ 1	0.000113062225704
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q8XWD0	 Tyrosine recombinase XerD	0.000113062225704
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VA90		0.000113062225704
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A5WAX5	 L pipecolate dehydrogenase	0.000112935757891
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E8U6V1	 Aldose 1 epimerase	0.000112935757891
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0ME34	 Sodium alanine symporter family protein	0.000112935757891
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EKX0		0.000112935757891
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MSQ9	 Glycosyltransferase	0.000112935757891
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F739		0.000112935757891
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X5ET90	 M23 peptidase domain protein	0.000112935757891
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RXZ9	 Peptide transporter	0.00011286972138
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M109	 Auxin Efflux Carrier	0.000112809572687
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KN53	 OmpA MotB domain protein	0.000112809572687
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U7C0	 Transporter, major facilitator family protein	0.000112809572687
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RKU4	 Drug resistance translocase family protein	0.000112683669145
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GD90	 DEAD DEAH box helicase domain protein	0.000112683669145
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUD9		0.000112683669145
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1ITE9		0.000112620857734
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A010CBA8	 Sensory box protein	0.000112615962195
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1QDQ1	 DNA polymerase I	0.000112598192451
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1TVS9	 DNA directed RNA polymerase subunit beta	0.000107426094169
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WZD6		0.000112558046324
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RVZ0	 TIGR01777 family protein	0.000112558046324
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4K7F3	 Biotin carboxylase	0.000112558046324
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XJS1	 tRNA pseudouridine synthase B	0.000112558046324
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VB35	 Aldehyde dehydrogenase, phenylacetic acid degradation	0.000112544217187
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LW88	 Diguanylate cyclase phosphodiesterase with PAS PAC and GAF sensor	0.000112459219823
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0QEA5	 Sphingosine kinase	0.000112432703286
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_I1EHK4		0.000112432703286
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FD06		0.000112432703286
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A3DE29	 Phospho N acetylmuramoyl pentapeptide transferase	0.000106278492154
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXM6	 1,4 dihydroxy 2 naphthoate octaprenyltransferase	0.000112307639102
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8LJY5	 2 octaprenyl 6 methoxyphenol hydroxylase	0.000112307639102
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I489		0.000112307639102
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B4SKP9	 Transcriptional regulator, LysR family	0.000112182852833
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B6JP11	 L seryl tRNA selenium transferase	0.000112182852833
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SQV1	 Inner membrane translocator	0.000112182852833
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KI57	 Transcription activator of glutamate synthase operon GltC	0.000112182852833
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6FSL2		0.000112182852833
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8RD56	 AAA superfamily ATPases with N terminal receiver domain	0.000112165572213
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8V7H8	 CobN magnesium chelatase domain protein	0.000112133937752
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V0J5	 Phosphopentomutase	0.000101065633184
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3N6S5	 Transcriptional regulator, LysR family	0.000112058343561
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E5AVM4	 Transcriptional regulators, LysR family	0.000111934110366
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88QJ9	 Protein FdhE homolog	0.000111934110366
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B1I6S1	 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	0.000111903791009
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2HZZ5		0.00011181015233
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VE13	 LacI family transcriptional regulator	0.00011181015233
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A7GYU4	 Porphobilinogen deaminase	0.000111686468534
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KG57		0.000111563058069
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5XAX1	 NAD dependent oxidoreductase	0.000111563058069
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTE1	 Glucose 1 phosphate adenylyltransferase	0.000111563058069
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZKW2	 Probable iron chelatin transport system permease protein jhp_0822	0.000111563058069
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5F1W8	 Polyhydroxyalkanoate synthesis protein PhaF	0.000111563058069
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZLX3	 DNA gyrase subunit B	0.000104472387599
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RNK3	 TspB3	0.000111439920036
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P57061	 Lipoprotein releasing system transmembrane protein LolC	0.000111439920036
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JX66	 Dihydroorotate dehydrogenase 	0.000101370047746
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023YZ73	 Exodeoxyribonuclease encoded by cryptic prophage CP 933P	0.000111317053528
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MUK3	 Drug resistance transporter, Bcr CflA subfamily protein	0.000111317053528
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q05624	 Phosphate butyryltransferase	0.000111317053528
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A5V6	 Calcineurin like phosphoesterase	0.000111317053528
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_G2DQA0	 Guanosine 3,5 bis diphosphate 3 pyrophosphohydrolase	0.000111225292204
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M7C9		0.000111194457655
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q3JG98	 Acyl CoA dehydrogenase, C terminal domain family	0.000111194457655
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZMV6	 UPF0026 protein jhp_0109	0.000111194457655
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTS7	 Stage V sporulation protein E	0.000111072131519
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZM43		0.000111072131519
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SWU7		0.000111072131519
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0Z033		0.000111072131519
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C5CT24	 Polyribonucleotide nucleotidyltransferase	0.000103675669068
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_N0AHS5	 Bacterial regulatory helix turn helix, lysR family protein	0.000110950074232
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5ENV4	 Transcriptional regulator	0.000110950074232
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S761	 Nuclease, RecB family	0.000110889179573
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVB7		0.000110882176196
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B7B0	 Transcriptional regulator, AraC family	0.000110828284904
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUV0	 2 dehydropantoate 2 reductase	0.000110706762669
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U641		0.000110706762669
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VCG0	 Acyltransferase	0.000110706762669
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GVU2	 ABC transporter, ATP binding protein	0.000110706762669
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0MSG1		0.000110706762669
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYJ9		0.000110585506626
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q7VK29	 Cysteine synthase	0.000110585506626
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B5Z6I2	 Dihydroorotate dehydrogenase 	0.00010528109234
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0AYH9	 Transcriptional regulator, LysR family	0.000110464515918
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2R8	 Methyl accepting chemotaxis sensory transducer	0.000110464515918
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4XW41	 DedA	0.000110464515918
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VFS0	 Beta galactosidase	0.000110429776939
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4L1E1	 ABC type Fe3+ siderophore transport system, permease component	0.000110343789677
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P9WLT0		0.000110343789677
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_J2ES16	 Diguanylate cyclase  domain protein	0.000101253682478
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LW90		0.000110223327024
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E2QNK3	 PTS system galactitol specific enzyme IIC component	0.000110223327024
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E6V099	 Formiminoglutamate deiminase	0.000110223327024
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVA5	 SLH family protein	0.000110223327024
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E1A3	 Probable dual specificity RNA methyltransferase RlmN	9.46247118594e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A2AS89	 Agmatinase, mitochondrial	0.000110103127101
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZXU5	 Polysaccharide biosynthesis glycosyl transferase CpsN	0.000110103127101
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CR26	 Xaa Pro aminopeptidase	0.000110103127101
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZ79	 Transposase, putative	0.000110087232229
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q42601	 Carbamoyl phosphate synthase large chain, chloroplastic	9.50889045055e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TJ59	 Riboflavin biosynthesis protein RibF	0.00010998318905
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VF81		0.00010998318905
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CQE4	 GGDEF domain protein	0.00010998318905
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T5A3	 AraC family transcriptional regulator	0.00010998318905
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M492	 Adhesin MafA 3	0.000109863512022
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4A9G3	 Glycerol dehydratase activator	0.000109863512022
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZM9		0.000109624937626
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4H9R8	 Triacylglycerol lipase	0.000109624937626
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WNS2	 Lytic transglycosylase, catalytic	0.000109544217645
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C3L0M2		0.000109506038561
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E1Q396	 Thioredoxin reductase	0.000109506038561
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HB86	 ABC transporter, ATP binding protein	0.000109387397127
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L5D8	 Acetylornithine deacetylase	0.000109387397127
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q1CUW0	 Phosphate acyltransferase	0.000109387397127
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_I1Y621	 Lytic murein transglycosylase	0.000102190857847
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D2PIY1	 Peptidase S15	0.000109269012506
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5WYW3	 Signal peptide containing protein	0.000109269012506
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6WV66	 Transcriptional regulator	0.000109269012506
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0A4G4	 Metal ABC transporter substrate binding lipoprotein	0.000109269012506
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H1A9	 DNA polymerase III, subunits gamma and tau	0.000109148140432
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C1E3Y9	 Carbamoyl phosphate synthase	0.000109105451179
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F9U6	 Ferrochelatase	0.000104843787699
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D8IWQ9	 Cytochrome c protein	0.000109033010313
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IXD5	 Deoxyguanosinetriphosphate triphosphohydrolase like protein	0.000109033010313
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUX7	 Regulatory protein, LysR	0.000108915391105
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8IJ37	 Dioxygenase	0.000108915391105
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F2JI77	 DEAD DEAH box helicase domain protein	0.000108915391105
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZE0		0.000108915391105
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T7RPB5	 Acriflavine resistance protein F	0.000108915391105
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N9J1H3		0.000108798025379
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V4X0	 Type IV pilus biogenesis protein	0.000108794840653
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F6A168	 Ribose phosphate diphosphokinase	0.00010856405113
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G0A8S2		0.00010856405113
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LEY5	 LysR family transcriptional regulator	0.00010856405113
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U7Q7	 PAS domain S box	0.00010856405113
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E0X1	 Prophage LambdaSa1, pblA protein, internal deletion	0.000108535259195
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VRL9	 Hydrolase, alpha beta fold family	0.000108447440982
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q1CSU8	 tRNA pseudouridine synthase D	0.000108447440982
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J2Y0	 ABC oligo dipeptide transporter, fused ATPase subunits	0.00010840064861
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IWL4	 Chaperone protein DnaK	0.000108374573612
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_J9ZNM9	 Malonyl CoA ACP transacylase	0.000108331081064
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q5N127	 Transaldolase	0.000108331081064
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RRW7	 Lipid A biosynthesis acyltransferase	0.00010821497058
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_I6RW78	 ATPase	0.00010821497058
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YTD4	 Rhamnosyltransferase chain B	0.00010821497058
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q47GC9	 2,3 dihydroxyphenylpropionate 2,3 dihydroxicinnamic acid 1,2 dioxygenase 2	0.000107181069591
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0B3Q1	 Flavin containing monooxygenase FMO	0.000108099108731
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZHF6		0.000108099108731
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_O32177	 3 ketoacyl CoA thiolase	0.000104087183047
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RZQ6	 Phosphate ABC transporter, permease protein PstC	0.000107983494709
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUF1	 Putative gluconeogenesis factor	0.000107983494709
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YT50	 Filamentous hemagglutinin, intein containing	0.000107969573866
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B4SL85	 Phosphatidate cytidylyltransferase	0.000107868127728
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K4NDS6		0.000107868127728
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HAU1	 Protoporphyrinogen oxidase	0.000107753006989
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D7CQX7		0.000107753006989
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1MFZ6	 Pseudouridine 5 phosphate glycosidase 1	0.000107753006989
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZFM2	 Two component sensor	0.000107753006989
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2M254	 Anhydro N acetylmuramic acid kinase	0.000107753006989
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P96718	 UDP glucose 6 dehydrogenase YwqF	0.000103659720281
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DRF3		0.000107638131715
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N3DTH0	 Alpha 2 macroglobulin family protein	0.000107638131715
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FFB1	 Alginate biosynthesis protein	0.000107638131715
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_U3U0I4	 PstC protein	0.000107638131715
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2HZJ1	 AraC type DNA binding domain containing protein	0.000107523501119
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F6CSY8	 S adenosylmethionine dependent methyltransferase	0.000107523501119
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2MNB6	 ATP dependent RNA helicase DbpA	0.000107523501119
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_L9NDB6	 Nonribosomal peptide synthase	0.000107418701513
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MHF7		0.000107409114413
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P39762	 Aminopeptidase AmpS	0.000107409114413
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FEZ0		0.000107409114413
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H2F2	 TonB dependent siderophore receptor family protein	0.000107365651438
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RR99	 Oxidoreductase, short chain dehydrogenase reductase family	0.000107294970829
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5EHQ7		0.000107294970829
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRN8	 Ribosomal protein L11 methyltransferase	0.000107181069591
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D0J2L9	 Transcriptional regulator, LysR family	0.000107181069591
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JDE9	 Major Facilitator Superfamily protein	0.000107181069591
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZGB3	 AraC family transcriptional regulator	0.000107181069591
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M8E0	 Cell wall binding repeat containing protein	0.00010706740992
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4R6E9		0.00010706740992
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D2NU75	 3 deoxy D arabino heptulosonate 7 phosphate  synthase	0.00010695399105
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P30690	 Major outer membrane protein P.IB	0.00010695399105
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_Q8XMG8	 Zinc transporter ZupT	0.00010695399105
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4XT01	 Transketolase	0.00010695231524
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LS38	 Tetratricopeptide TPR_2 repeat protein	0.000106840812223
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6TLP6	 PfkB domain protein	0.000106840812223
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5J671	 Arabitol phosphate dehydrogenase	0.000106727872672
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MV68	 SCP like extracellular	0.000106727872672
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X2HH54	 A G specific adenine glycosylase	0.000106727872672
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CXQ6		0.000106641922364
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_R6M7U0	 Transporter major facilitator family protein	0.00010661517165
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LQF1		8.57084614151e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWY2	 Peptidase M42 family protein	0.00010650270839
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C3K0D7	 Probable M18 family aminopeptidase 2	0.00010650270839
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E2PX18	 Sugar kinase	0.00010650270839
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RLT4	 Homoserine dehydrogenase	0.00010650270839
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YZY2		0.00010650270839
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DWP5	 Dihydrodipicolinate reductase	0.00010650270839
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q31DZ2	 Hydrogenase expression formation protein hypD	0.00010650270839
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A6W0		0.00010650270839
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MZA5	 Double stranded RNA RNA DNA hybrid binding protein	0.00010650270839
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_W1W6V9		0.00010650270839
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X7LA43	 Porin	0.00010642335659
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JEX5		0.000106390482144
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_I4ES52		0.000106390482144
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P56148	 DNA repair protein RadA homolog	0.000106390482144
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MJT1		0.000106364660476
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Z2DR98	 Acyl CoA synthetase	0.000106302266251
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWC7	 Glycerol 1 phosphate dehydrogenase (+))	0.000106278492154
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2I3G0	 Molybdopterin biosynthesis protein	0.000106278492154
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F8JV04	 Major facilitator superfamily sugar transporter	0.000106278492154
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_K9ZYZ2	 Arabinose efflux permease family protein	0.000106278492154
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A853		0.000106166737695
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E6S7U2	 Molybdopterin dehydrogenase FAD binding protein	0.000106055218019
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q1LLQ3	 Cbb3 type cytochrome oxidase, subunit I	0.000106055218019
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RW25	 Membrane protein	0.000105999157282
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RY38	 Oxidoreductase, short chain dehydrogenase reductase family	0.000105943932369
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RW95	 General secretion pathway protein D, putative	0.000105888434892
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VDR8		0.000105832880038
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0N593	 Transcriptional regulator, AraC family	0.000105832880038
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LIM7	 3 hydroxyacyl CoA dehydrogenase NAD binding subunit	0.000105832880038
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_S1T9V9	 Thiamine monophosphate kinase	0.000105832880038
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_H2I4X5		0.000105722060258
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_N0B753	 Group 1 glycosyl transferase	0.000105722060258
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSL6	 Molybdate metabolism regulator related protein	0.000105722060258
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_T1UAW5	 CobW HypB UreG, nucleotide binding domain protein	0.000105722060258
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q47CM9	 Phenylalanine  tRNA ligase beta subunit	0.000102841590255
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W0R6T6	 Glutamine  tRNA ligase	0.000105639104852
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU93	 NADH dehydrogenase I, G subunit	0.000105584479325
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWR5	 Phage integrase family protein	0.000105501115517
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LP82		0.000105501115517
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F9Y0	 Type II secretion system protein K	0.000105501115517
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T6X0		0.000105501115517
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7SNW6	 Glycosyl hydrolase family 38 N terminal domain containing protein	0.000105466290334
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M3G1	 Aminoglycoside phosphotransferase	0.000105390989091
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5RZU5		0.000105390989091
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GCV1	 Folylpolyglutamate synthase 	0.00010528109234
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25441		0.00010528109234
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MLD2	 Anti sigma factor N terminus	0.00010528109234
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M1H4	dicarboxylate symporter	0.000105171424536
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VM85		0.000105171424536
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JH55	 Transcriptional regulatory protein, C terminal family protein	0.000105171424536
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A059MMV6	 MFS transporter	0.000105061984962
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZB2	 FMN binding domain protein	0.000105061984962
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D7CNA1	 Radical SAM domain protein	0.000105061984962
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_T2SUX4	 Cation transporter 	0.000104998147863
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A024HD58		0.000104952772922
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YPK5	 SorC family transcriptional regulator	0.000104952772922
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25770	 UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	0.000104952772922
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZFE5	 Glucose sensitive porin	0.000104952772922
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FCS8	 ATP phosphoribosyltransferase regulatory subunit	0.000104843787699
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DY20	 3 hydroxyacyl CoA dehydrogenase family protein	0.000104843787699
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUJ6		0.000104809956189
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9LZL8	 Type II restriction endonuclease	0.000104735028576
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JDR1		0.000104735028576
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_F8KRE5	 Chemotaxis protein Che	0.000104735028576
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_M4ZJP4		0.000104735028576
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RTB7	 TonB dependent receptor	0.000104655143875
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E1Q5C1	 DNA topoisomerase I 	0.000104653782893
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V075	 Ser Thr protein phosphatase family protein	0.000104626494877
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7W9E1		0.000104626494877
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VN68	 Glycosyl hydrolase, alpha L fucosidase	0.000104626494877
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VNH2	 Cysteine synthase ornithine cyclodeaminase	0.000104626494877
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q187U6	 tRNA 2 methylthio N dimethylallyladenosine synthase	0.000104626494877
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTX3	 C di GMP phosphodiesterase A	0.000104604742151
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A6L8	 Conserved membrane spanning protein	8.71135181603e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_L0KAS8	 Sulfite reductase, subunit C	0.000104518185874
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S1L9	 Periplasmic aliphatic sulfonate binding protein	0.000104518185874
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S121	 Cation transporter	0.000104410100881
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D0C8Q0		0.000104410100881
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E6NJA8		0.000104410100881
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E8XM67	 Sugar isomerase 	0.000104410100881
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DS55	 Radical SAM superfamily protein	0.000104410100881
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M264	 Lantibiotic modifying like protein	0.000104395220491
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ61	 Aldose 1 epimerase	0.000104302239202
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4DAR6	 ABC type oligopeptide transport system,, ATPase component	0.000104302239202
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VLV0	 tRNA processing ribonuclease	0.000104302239202
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5EDT3	 Transcriptional regulator	0.000104302239202
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LY02	 Helix turn helix domain containing protein, AraC type	0.000104194600159
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C3K388	 Two component system, sensor kinase	0.000104194600159
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P9WKI2		0.000104087183047
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5XA85	 Abortive infection phage resistance protein	0.000104087183047
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F7N0	 Ferrochelatase	0.000103979987179
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_W6RYK9	 Alpha dextran endo 1,6 alpha glucosidase	0.000103953780583
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7I5N1	 Zn dependent oligopeptidase	0.000103952933511
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2TA66	 Phosphate ABC transporter permease	0.000103873011888
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YYI3	 Myo inositol 2 dehydrogenase	0.000103766256477
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q59092	 3 carboxy cis,cis muconate cycloisomerase	0.000103766256477
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6PZ09	 Chorismate synthase	0.000103766256477
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MRD5	 D galactose binding periplasmic protein MglB	0.000103766256477
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0N1	 Response regulator receiver protein	0.000103659720281
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F5XFZ9		0.000103659720281
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5EWU3		0.000103659720281
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7GZW3	 Glycerol 3 phosphate dehydrogenase [NAD+]	9.5701011899e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RPU8	 Lipoprotein	0.000103553402612
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KTJ2	 ABC spermidine putrescine transporter, ATPase subunit	0.000103553402612
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C7NH85	 Glycerophosphoryl diester phosphodiesterase	0.000103553402612
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M9C4		0.000103447302815
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VHB4	 FecCD family membrane transport protein	0.000103447302815
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FAN6		0.000103447302815
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYC5		0.000103447302815
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q893C6	 Dipeptide transport system permease protein dppB	0.000103341420213
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HTH5	 HTH type transcriptional regulator CdhR	0.000103341420213
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E1PY25		0.00010323575414
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4XIX4	 Segregation and condensation protein B	0.00010323575414
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9I2I4		0.000103187250176
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A5D0	 Uronate isomerase	9.41833652534e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q15RF6	 Chemotaxis response regulator protein glutamate methylesterase	0.000103130303939
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XJR2	 Putative zinc metalloprotease CPE1693	0.000103130303939
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FB80		0.000103025068933
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6Q3	 Lysophospholipase	0.000103025068933
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K4NDV9		0.000103025068933
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S210		0.000103025068933
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8TTR1	 Outer membrane protein expression inhibitor	0.000103025068933
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5FAC7	 Penicillin binding protein 1A	0.000102966522307
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A4A5I0	 Transcriptional regulator, LysR family	0.000102920048468
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5TSA7		0.000102920048468
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K4RK14	 Cysteine desulfurase	0.000102815241905
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I3M9	 Cytochrome c type biogenesis protein CycH	0.000102815241905
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q73TT2		0.000102721799309
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AB12	 4 hydroxythreonine 4 phosphate dehydrogenase	0.00010271064858
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPL8		0.000102606267836
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D4MGJ2	 Cyclopropane fatty acyl phospholipid synthase	0.000102606267836
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4H9I9	 RHS repeat associated core domain protein	0.000102582594977
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q5I3J8	 Aec67	0.000102515895552
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2M2	 NLP P60 protein	0.000102502099037
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EBG3	 Cytochrome c family protein	0.000102502099037
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V1W7	 Vanillate O demethylase oxygenase subunit	0.000102398141536
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KSX5	 Sporulation domain protein	0.000102398141536
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I3TU69	 Lincomycin resistance protein	0.000102398141536
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AVC8	 Asparaginase	0.000102294394678
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E2Q4D8	 IolC protein	0.000102294394678
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S7N6	 AXE1 multi domain protein	0.000102294394678
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FD39	 Bifunctional protein	0.000102250567858
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E7PVM6	 Streptococcal histidine triad protein	0.000102191512147
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F0VYG1	 Cysteine desulfurase	0.000102190857847
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VAR4	 Bacterial extracellular solute binding protein	0.000102190857847
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI0003746BBE	 hypothetical protein	0.000102190857847
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_J4JDJ6	 PF05787 domain protein	0.000102087530385
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P52610	 Flagellar motor switch protein FliG	0.000102087530385
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_C5ZWF4	 Peptidylarginine deiminase related protein	0.000101984411668
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P9WQ72	 Phosphoserine aminotransferase	0.000101881501059
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_U3P882		0.000101881501059
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQ22		0.000101807930329
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A6Q5D2	 Cytochrome b	0.000101778797932
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2LBD2		0.000101778797932
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N2U9		0.000101778797932
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GI78	 Beta N acetylhexosaminidase	0.000101778797932
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V1X7		0.000101676301661
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V8I1		0.000101676301661
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B6ZQQ2	 Inner membrane protein YicO	0.000101676301661
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q4FRI0	 Site 2 protease, Metallo peptidase, MEROPS family M50B	0.000101676301661
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VD06	 UvrD REP helicase	0.000101659658359
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V2W5	 Sensor histidine kinase	0.000101593272732
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_S2WX32	 Polyphosphate kinase	0.000101590549112
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DT71		0.000101471927184
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q17WJ2	 Lipid A disaccharide synthase	0.000101471927184
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L3SKH8		0.000101268372671
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MMR7		0.000101268372671
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q15PR2		0.000101268372671
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J2B0	 Peptidase M29, aminopeptidase II	0.000101268372671
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q48S64	 R28 protein	0.000101081513366
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A1R863	 tRNA specific 2 thiouridylase MnmA	0.000101065633184
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTD5	 Lipoprotein, putative	0.000101065633184
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DPL2	 Glycosyl transferase, group 1 protein	0.000101065633184
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6EGE1	 General secretory pathway component, cryptic	0.000101065633184
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_J3TFE7	 Arabinose efflux permease family protein	0.000101065633184
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AUK2	 Transcriptional regulator, GntR family	0.000100964567551
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K9XMG5	 Amidohydrolase	0.000100964567551
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O24982	 Apolipoprotein N acyltransferase	0.000100964567551
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_R4X5X2	 Cassette chromosome recombinase A1	0.000100964567551
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU10	 Glutamate racemase	9.65244431705e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VUW8	 Membrane bound lytic murein transglycosylase B	0.000100863703847
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KLF9		0.000100863703847
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I492		0.000100763041467
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXS7	 Endoglucanase, putative	0.000100763041467
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S5R2A4		0.000100763041467
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M387	 Adenosylmethionine 8 amino 7 oxononanoate aminotransferase	0.000100662579814
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZFV2	 Protein kinase	0.000100562318283
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3MA77	 A G specific adenine glycosylase	0.000100462256268
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQU3	 Integral membrane sensor signal transduction histidine kinase	0.000100462256268
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J087	 Inositol monophosphatase	0.000100462256268
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6S564	 ATPase involved in chromosome partitioning	0.000100362393193
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I2DH65		0.000100362393193
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I4D2I9	 Calcium proton exchanger Cax	0.000100362393193
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_UPI0000165EEC	 peptide ABC transporter, periplasmic peptide binding protein	9.40955895157e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q2RX27	 Dihydroorotate dehydrogenase 	9.62483961382e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A9MAP0	 Nicotinate nucleotide  dimethylbenzimidazole phosphoribosyltransferase	0.000100262728454
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HBG9	 Zinc binding alcohol dehydrogenase family protein	0.000100163261463
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_X2HW61	 Iron ABC transporter substrate binding protein	0.000100163261463
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D7FE46	 RBL01243	0.000100129616949
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V197	 Helix turn helix domain protein	0.000100063991626
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G8PBV9	 PTS system, lactose cellobiose IIC component family protein	0.000100063991626
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q0RPF6	 GTPase Obg	0.000100063991626
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPF3	 Integral membrane sensor signal transduction histidine kinase	9.99649183674e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q9X5M1	 Diaminopimelate decarboxylase	9.62483961382e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KKY6	 D alanyl D alanine carboxypeptidase D alanyl D alanine endopeptidase	9.98660411009e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2Q1E5	 Beta ketoadipyl CoA thiolase	9.98660411009e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M2L7	 Electron transport complex subunit D	9.98660411009e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_M9XAR7	 2 nitropropane dioxygenase	9.98660411009e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88C44	 Transcriptional regulator, AraC family	9.98660411009e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6BXV0		9.98660411009e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A1B500	 Peptidase M23B	9.37461165771e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WU75	 Urea amidolyase related protein	9.97673592413e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSF6	 Sun protein, putative	9.97673592413e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D0K1D5		9.96688722129e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRK0		9.96688722129e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E8QNM4		9.96338848402e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4R0H3	 ABC transporter, ATP binding domain protein	9.95762240261e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9Z1V2	 RlpA like protein	9.95705794405e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVU4	 Endonuclease III, putative	9.95705794405e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UZJ0	 UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	9.94724803483e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HEP8	 Sugar binding domain protein	9.94724803483e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q17VI1	 Carbamoyl phosphate synthase small chain	9.94724803483e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q59650	 UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	9.94724803483e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8PEV0	 Cell division protein FtsK	9.9455178959e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MFL6	 ATP dependent DNA helicase Rep	9.94259136017e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VBD8	 3 beta hydroxysteroid dehydrogenase isomerase	9.9374574361e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8AMR2		9.92768609131e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DXA0	 Membrane protein, putative	9.92768609131e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5LUL0	 Spore coat polysaccharide biosynthesis protein spsC	9.92768609131e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D5X7D2	 Stage V sporulation protein AD	9.91793394392e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWZ4	 Transcriptional regulator, XRE family	9.9082009374e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C6WR75	 Short chain dehydrogenase reductase SDR	9.9082009374e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F2JHX4	 ABC type transporter, periplasmic subunit	9.9082009374e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H179	 Ferric alcaligin E	9.90666000203e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E6C5P3	 Glycosyl hydrolase family 20, catalytic domain protein	9.89931398265e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HD52		9.89848701519e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_F7ZGH1	 Poly A polymerase like protein	9.89848701519e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VCF0	 Dolichyl phosphate mannose protein mannosyltransferase	9.89848701519e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IZN6	 Membrane associated PIN like nuclease	9.89848701519e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5MH03	 Serine dehydratase alpha chain	9.89848701519e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q46675	 NeuB protein	9.88879212077e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7FQK3	 Arabinose binding protein	9.88879212077e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q3S2Y2	 Glycosyltransferase Gtf1	7.64304069267e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A059MIV5	 Aldehyde dehydrogenase	9.87911619861e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G2L1E2		9.87911619861e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q5XDS6	 Branched chain amino acid transport system carrier protein	9.87911619861e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MXN3	 Bacteriophage Mu I protein GP32	9.86945919316e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q1IVE2	 Pyruvate carboxylase subunit A	9.86945919316e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VC89	 Phospho 2 dehydro 3 deoxyheptonate aldolase	9.86945919316e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1GE26	 Aerotaxis sensor receptor protein	9.86945919316e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q165N7	 Conserved domain protein	9.37461165771e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RLS2	 Metal dependent phosphohydrolase with GAF sensor	9.85982104992e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N0A5S9	 GtrOC2	9.85982104992e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZCR7	 MFS transporter	9.85020171233e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F4EE48	 Bifunctional 2,3 cyclic nucleotide 2 phosphodiesterase 3 nucleotidase protein	9.8423977732e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V2U4R3		9.8310867965e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K7YS10		9.83101923606e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HFJ6	 UvrD REP helicase	9.82937737449e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I310		9.82623528446e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A1ABD7	 Voltage gated ClC type chloride channel ClcB	9.82145598732e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U472	 Membrane spanning protein	9.82145598732e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E4GKY2	 Membrane alanyl aminopeptidase	9.81671845822e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A4VYZ2	 ABC type sugar transport system, periplasmic component	9.81191132616e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E2W7		9.81191132616e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E7ACI0	 Na+ H+ Antiporter	9.81191132616e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U855	 Ser Thr phosphatase family protein	9.81191132616e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VAN9	 Major facilitator superfamily permease	9.8003056248e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A7H5L7	 Adenylosuccinate synthetase	9.79287755151e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8GG94	 Anaerobic nitric oxide reductase flavorubredoxin	9.79287755151e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R5AEA5	 Mg chelatase subunit ChlI	9.79287755151e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A058TBR0	 Glycerophosphodiester phosphodiesterase	9.78338832898e-05
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_B9ADF9	 Tetratricopeptide repeat protein	9.78338832898e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GSQ7	 2 oxoisovalerate dehydrogenase, ODBB	9.78338832898e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_O83092	 Ribonucleoside diphosphate reductase subunit beta	9.78338832898e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T9ZKW9	 L lactate permease	9.78338832898e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYN3	 Drug resistance transporter, EmrB QacA subfamily	9.76446494697e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZLY0	 UDP N acetylmuramoylalanine  D glutamate ligase	9.75503068148e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_H2HHM8		9.73891844381e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0TRY8	 Lysine N methylase, homolog	9.73621673598e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IWW3	 Periplasmic sensor diguanylate cyclase	9.73621673598e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_V5NNB3	 Iron regulated outer membrane protein FrbP_1	9.73077999897e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E3IHD0	 Aliphatic sulfonates family ABC transporter, periplasmic ligand binding protein	9.72683695096e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HWI0	 D alanine  D alanine ligase A	9.72683695096e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V9XDD0	 Diaminohydroxyphosphoribosylaminopyrimidine deaminase	9.72683695096e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VEA6		9.72145754669e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LU76		9.71747522144e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZN7		9.71747522144e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4FTG4	 Galactonate dehydratase	9.70813149491e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VFY2		9.6988057209e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MQT4	 Pentapeptide repeat protein	9.6988057209e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5N005	 Signaling protein	9.68955362173e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KP57	 Phospholipase D	9.68949784588e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A3DIZ4	 DNA directed RNA polymerase subunit beta	8.8593336896e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A2RHJ5	 Protein translocase subunit SecA	9.68020781937e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q1R7E0		9.68020781937e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q3I510	 EaeH	9.67286715414e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LFL9	 LysR family transcriptional regulator	9.67093558888e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_L0A6M1	 ABC type dipeptide oligopeptide nickel transport system, permease component	9.67093558888e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D5CF58	 Cell division protein MukB	9.66475343654e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZV8	 Glycoside hydrolase, family 3 domain protein	9.66224737784e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXP5	 NADH quinone oxidoreductase subunit N	9.66168110494e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G4LTR1		9.66168110494e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVI8		9.65244431705e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2VHD6	 Protein RecA	9.63402362147e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B5B0J6	 FAD dependent urate hydroxylase	9.63402362147e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYF7	 Cation transporter, putative	9.63402362147e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A7IGN0	 HI0933 family protein	9.19531580625e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9U5D1	 Glucose dehydrogenase, PQQ dependent	9.62844763817e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR81	 Coenzyme F390 synthetase like protein	9.62483961382e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZM4		9.62483961382e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GG00	 Na+ H+ antiporter	9.62483961382e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F3NZ35	 DeaD DeaH box helicase	9.61924762562e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_L8A867	 Glycerol dehydrogenase	9.6156731003e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RJD3		9.60652402942e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J2D3	 Permease YjgP YjgQ	9.60652402942e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4R497	 Guanosine 3,5 bis pyrophosphate 3 pyrophosphohydrolase ppGpp synthetase II	9.59967418627e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2IJJ4	 Riboflavin biosynthesis protein RibD	9.59739235272e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5SXX5	 Protein AmbC	9.59739235272e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JEM9		9.58827801971e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9V8S5	 Cellulase 	9.57918098192e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_R4RE02	 Amino acid permease YtnA	9.57918098192e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I6EJW6		9.5701011899e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTL7	 Fosmidomycin resistance protein, putative	9.5701011899e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B0RIE3	 L arabinose isomerase	7.74268156022e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E6S1Z5	 Menaquinone biosynthesis protein, SCO4494 family	9.56103859416e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U7Y1		9.56103859416e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRR7	 Sensory box sensor histidine kinase	9.55973923268e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q73E41	 Calcium transporting ATPase 1	8.31664519938e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LXD6		9.55199314625e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LY49	 Transcriptional regulator, GntR family with LacI sensor	9.55199314625e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GZI4	 Secretion protein HlyD	9.55199314625e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I2FAM4	 SpfH domain band 7 family protein	9.55199314625e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2S3	 Threonyl alanyl tRNA synthetase, SAD	9.54296479668e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7I2D1	 Glycerophosphoryl diester phosphodiesterase	9.54296479668e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U407	 O antigen polymerase	9.54296479668e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q59086	 Quinate shikimate dehydrogenase 	9.53720338388e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VLK6	 D mannonate oxidoreductase	9.52495920279e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WGD9	 Endonuclease exonuclease phosphatase	9.52495920279e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F7ZNF0	 PLP dependent aminotransferase	9.52495920279e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_G7TFM6	 Amine oxidase	9.52495920279e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HA38	 OmpA family protein	9.51598186153e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JKE4	 PHA synthase PhaC	9.51598186153e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DPY7		9.51598186153e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_J0I3X2	 Cag pathogenicity island protein Cagb	9.50917983722e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F5ZFT9	 Signal recognition particle receptor FtsY	9.50702142679e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0TMJ7	 Amidohydrolase homolog	9.50702142679e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVJ1	 Branched chain amino acid ABC transporter, permease protein	9.50702142679e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U8C9	 N formimino L glutamate deiminase	9.48915108604e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A013LHN9	 Putative membrane protein	9.48839627998e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A4X329	 Transcriptional regulator, LacI family	9.48024108512e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8PVV2	 Oxidoreductase, FAD binding protein	9.48024108512e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U7S7	 ABC transporter associated permease	9.47816002364e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q66FG9	 Glycerol 3 phosphate acyltransferase	9.47620567674e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M5DTK5	 FMN oxidoreductase	9.47134779989e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_X5HTN1	 Biofilm synthesis protein	9.46365308019e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F7V4L9	 L lactate permease	9.46247118594e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_P13510	 Cobalt zinc cadmium resistance protein CzcB	9.46247118594e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZB3	 dTDP glucose 4,6 dehydratase	9.46247118594e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q4FUR4	 Homoserine O acetyltransferase	8.71887457287e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0TPS5	 Tryptophan halogenase	9.45361119378e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B4SRW3	 Acetyl CoA acetyltransferase	9.45361119378e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4R8Z6	 Allophanate hydrolase subunit 1 and 2	9.45361119378e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q67LS2	 tRNA specific 2 thiouridylase MnmA	9.43594089311e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZCN6		9.43594089311e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q87J85	 Tyrosine  tRNA ligase 1	8.32354225457e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M3H0	 Adhesin Ata autotransporter	9.41992437692e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K0HFL9	 MFS superfamily metabolite transporter	9.41833652534e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_K9ZYD1	 NADH dehydrogenase, FAD containing subunit	9.41833652534e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6LGJ5	 Methionine synthase vitamin B12 independent	9.41833652534e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F5XRV0	 Polyprenyl diphosphate synthase	9.40955895157e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VIL3		9.40079772396e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8DN13	 D alanine transfer from undecaprenol phosphate to the poly chain	9.40079772396e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RS20	 Multidrug efflux transporter, putative	9.39205279506e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_W6RY62		9.38874667495e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6TUJ7		9.37461165771e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YX94	 DNA processing   uptake protein	9.37461165771e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F9Z8	 Malate synthase G	9.36593349163e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VS16	 Predicted esterase of the alpha beta hydrolase superfamily	9.36591535738e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9K0U7	 Putative phospholipase A1	9.36591535738e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRC4	 Arginine  tRNA ligase	5.55972288326e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N8QX29	 Xanthine dehydrogenase, molybdopterin binding subunit	9.35331151829e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A7HZX6	 Serine  tRNA ligase	8.8643167292e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXN2	 NLP P60 protein	9.34857106929e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6VC61	 Peptide chain release factor 1	9.34857106929e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_L5S037	 ACT domain protein	9.34189914186e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HEK8	 Mur ligase middle domain protein	9.33992299267e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P71362	 L 2,4 diaminobutyrate decarboxylase	9.33992299267e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F3CNA8	 Anaerobic dimethyl sulfoxide reductase, A subunit, DmsA YnfE family	9.3316814731e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H1SN32	 Tryptophan synthase beta chain	9.33129090076e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q5SJB6	 Membrane lipoprotein	9.30549009713e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZS36	 MFS general substrate transporter	9.30549009713e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MLQ3	 Processive diacylglycerol glucosyltransferase UgtP	9.30549009713e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B5I692	 FemAB family protein	9.29692150588e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M2K8	 YibE F family protein	9.29692150588e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0F919	 Phosphate transporter	9.28836868024e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A9Q2	 UDP N acetylglucosamine  N acetylmuramyl  pyrophosphoryl undecaprenol N acetylglucosamine transferase	9.27983157681e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZFP1	 MFS transporter	9.27983157681e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZN31	 ATP DEPENDENT PROTEASE,ATP BINDING SUBUNIT	9.27935949375e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A6H1	 NADH quinone oxidoreductase subunit N	8.49870097281e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZZR7	 2,3 butanediol dehydrogenase	9.27131015115e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7VGP6	 tRNA 2 methylthio N dimethylallyladenosine synthase	9.27131015115e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M0G3	 PAS PAC sensor signal transduction histidine kinase	9.26964702948e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYU9	 Integral membrane sensor hybrid histidine kinase	9.26729721951e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CN83	 Outer membrane receptor for monomeric catechols	9.26283554781e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_D4DSS6	 Delta 1 pyrroline 5 carboxylate dehydrogenase	9.25473239312e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B1ZNJ3		9.25431416557e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZJF9	 DNA polymerase III subunit alpha	9.09768872042e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7MAQ1	 Membrane bound O acyl transferase MBOAT family protein	9.24583951983e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LYZ9	6 aminopenicillanic acid acyl transferase	9.23738038023e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU59		9.23738038023e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KJH6	 cAMP phosphodiesterase, heme regulated	9.22893670436e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCP3		9.22050845183e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0ESN6	 Alanine dehydrogenase	9.22050845183e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A014M9H7	 Delta 1 pyrroline 5 carboxylate dehydrogenase	9.21474232701e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E1Q5C2	 VirB8 type IV secretion protein	9.21209557924e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M9RQJ4		9.21209557924e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VCM8	 2 amino 3 ketobutyrate coenzyme A ligase	9.21209557924e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4KDT6	 Drug resistance transporter, EmrB QacA family	9.21209557924e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KN46	 Threonine dehydratase catabolic	9.20369804519e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C4ZKX2		9.19531580625e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JH08	 Glycosyltransferase	9.19531580625e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JLT1	 Cyanide insensitive terminal oxidase	9.19531580625e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U8MM05		9.19531580625e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZM69	 Copper transporting ATPase	9.18955283052e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E3D3R3	 LPS biosynthesis protein related protein	9.18694882206e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EKX1	 Antibiotic transport system permease protein	9.1785970502e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q0SPR1	 Cysteine desulfurase family protein	9.1785970502e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q43931	 Muconate cycloisomerase 1	9.1785970502e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YWL2	 Transport system permease protein	9.17026044927e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M0Z9	 Type II secretion system F domain containing protein	9.17026044927e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_M4WTC0	 Alanine  glyoxylate transaminase	9.17026044927e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51416	 ATP dependent protease ATP binding subunit like protein AmiB	9.17026044927e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q87Q74	 Imidazolonepropionase	9.17026044927e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89SA6	 A G specific adenine glycosylase	9.17026044927e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_L0WHY8	 Ppx GppA phosphatase	9.16193897889e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N377	 Diguanylate cyclase	9.16193897889e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q5SJP8	 4 hydroxyphenylacetate 3 monooxygenase oxygenase component	9.16193897889e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VA73		9.16193897889e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q98IL5	 Mlr2349 protein	9.16130878532e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E1PW93	 Transposase B	9.15363259767e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RL27	 Cell envelope related transcriptional attenuator	9.15363259767e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MT61	 Multidrug transporter	9.15363259767e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S1T5	 Mutlidrug resistance protein	9.14534126319e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MZK3	 Binding  dependent transport system inner membrane component family protein	9.1370649371e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MU76	disulfide interchange protein	9.1370649371e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2Z1	 Membrane protein containing C terminal PDZ domain	9.12880357598e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q5LP66	 Pseudouridine synthase	9.12880357598e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TKI7	 Serine type D Ala D Ala carboxypeptidase	9.12055714146e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E8YKU0	 Acyl CoA dehydrogenase domain containing protein	9.12055714146e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_L5SXQ3	 Pre toxin domain with VENN motif family protein	9.11444941211e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2SQB9	 tRNA 2 selenouridine synthase	9.10410888664e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CMF0	 Lysine ornithine N monooxygenase	9.09590698658e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4KHH9	 Alcohol dehydrogenase, class IV	9.08771985158e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2XLW1	 RND efflux system, outer membrane lipoprotein	9.08771985158e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6SJL2	 Glutaminyl tRNA synthetase	9.07954744125e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K4RNE1	 Outer membrane protein	9.07954744125e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IZ16	 Acyl CoA dehydrogenase like protein	9.07954744125e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V2WBL1		9.07517240523e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M5J0	 SEC C motif domain protein	9.07138971723e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V3ARY1	 Ornithine decarboxylase, inducible	9.07138971723e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M9B3		9.06595876448e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6T0M4		9.06324663811e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_O33013	 Signal recognition particle protein	9.05511816555e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MPF8	 Multidrug resistance efflux pump	9.05511816555e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P28998	 NADP specific glutamate dehydrogenase 	7.93746600232e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A8I328	 Iron alcohol dehydrogenase	9.04700426116e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E4PGW6	 L carnitine dehydratase bile acid inducible protein F	9.04700426116e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D0C6D9	 Molybdopterin oxidoreductase	9.04296908096e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E3J1U8	 DNA polymerase I	9.03993800046e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C8W984	 M20 DapE family protein YgeY	9.03890488355e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KIW4		9.03890488355e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MJA7	 rRNA  ) methyltransferase	9.03890488355e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYL5	 GGDEF family protein	9.03890488355e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYC2	 Aminotransferase, putative	9.03081999536e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8PIL7	 Rossmann fold nucleotide binding protein	9.02274955824e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_D3A856	 DNA gyrase, B subunit, C terminal domain protein	9.01995971843e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25242	 DNA polymerase III subunit beta	9.01469353178e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A1R4R1	 Glutamyl tRNA amidotransferase subunit A	7.03585836595e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_K8DNE8	 Acetylornithine aminotransferase   N succinyl L,L diaminopimelate aminotransferase	9.00665187764e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_UPI0004625117	 hypothetical protein, partial	9.00665187764e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HF76	 Transglycosylase	9.00488052094e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LZP2	 SMC domain protein	9.00256646252e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RIY5	 Rsp	8.99862455844e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C3FBN6	 Transposase A from transposon Tn554	8.99862455844e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M8Q184	 Prophage tail length tape measure family protein	8.99061153583e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M540	 TonB dependent receptor	8.9894590788e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_L7VSY8		4.15663102266e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_L7VSY8		4.12605506952e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8V9H7	 Amino acid permease	8.98261277143e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X2HAY5	 SUN family protein	8.98261277143e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V2J6	 Sporulation protein YqfD	8.97462822688e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A8L4	 Histidinol phosphate aminotransferase	8.97462822688e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9ZBQ0	 MFS transporter	8.97462822688e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I1AGI3	 Usher CupA3 	8.96790197042e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G4KXX3		8.96665786382e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GVT2	 Cytochrome P450	8.96665786382e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9V9R0	 Sensor histidine kinase	8.96665786382e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M4L6		8.95870164589e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KJJ5	 Cytochrome c, class I	8.95870164589e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1N4V8	 Signal transduction histidine kinase	8.95870164589e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RV79	 tRNA 2 methylthio N dimethylallyladenosine synthase	8.95870164589e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RZ19		8.95870164589e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RWV6	 Type I phosphodiesterase nucleotide pyrophosphatase	8.95075953473e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MNI8	 Type IV pilus assembly protein TapC	8.94283149298e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M994	 Glycerol 3 phosphate acyltransferase	8.94199988014e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A1R669	 Oxidoreductase family, NAD binding Rossmann fold domain protein	8.91913140862e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E4SGD8	 Natural resistance associated macrophage protein	8.91125927197e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DGV0	 Glycosyl transferase, group 1	8.90340101895e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D3PQT0	 GntR family transcriptional regulator	8.90340101895e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_M2JNM4	 Cellobiose phosphotransferase system IIC component	8.90340101895e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P0A0V8	 Capsule polysaccharide export outer membrane protein CtrA	8.89555661221e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_UPI00037131BB	 hypothetical protein	8.89182613197e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0GRI3	 3 carboxymuconate cyclase	8.88772601641e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8PCW7		8.88772601641e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D6ZGV8	 Hydrolase, alpha beta domain protein	8.87990919521e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8PBY1	 AdiY	8.87990919521e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W4ZID1		8.87990919521e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZTN5	 Cell wall surface anchor family protein	8.87210611125e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FB27	 Nitrate reductase, large subunit	8.86492899651e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25039	 Exodeoxyribonuclease 7 large subunit	8.8643167292e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D7CWU8	 Type IV pilus assembly protein PilM	8.8565410137e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HE29		8.8565410137e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5E7A9	 Extracellular ligand binding receptor	8.8565410137e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U8YLF7		8.8565410137e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JJR4	 Indoleacetamide hydrolase (Indole 3 acetamidehydrolase)	8.8487789264e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q45604		8.8487789264e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q895P9	 16S rRNA MC 967 methyltransferase	8.84103043399e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_F8KS43	 GTP pyrophosphokinase	8.83143524914e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A666		8.81786616152e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VB22		8.81017168818e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_I7ICF1		8.81017168818e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A022J9C0	 LysM domain protein	8.80865284285e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A5N2H8	 FprA	8.80249063201e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KJF2	 Flagellar hook associated protein 3	8.80249063201e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JH95	 ABC transporter family protein	8.80249063201e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E6NII4	 Bifunctional phosphopantothenoylcysteine decarboxylase phosphopantothenate synthase	8.80249063201e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G7ZPJ9	 Restriction modification system, S subunit	8.80249063201e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_V8FVT8		8.79482295769e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HXN5	 N Acetyl D Glucosamine phosphotransferase system transporter	8.79039259107e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YZS9	 Integral membrane protein	8.78716862887e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P0DD78	 DNA repair protein RadA homolog	8.78716862887e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JWM8	 Peptide methionine sulfoxide reductase MsrA MsrB	8.56357655231e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B6IQY6	 Sensor protein KdpD	8.77953425165e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E6SFW3	 Acyl CoA dehydrogenase domain containing protein	8.77952761323e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7VIB6	 Bifunctional protein GlmU	8.77952761323e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D7GDS8	 Protein export membrane protein SecF	8.77189987444e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5JZK8	 Lipoprotein, putative	8.77189987444e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQD9	 ABC type sugar transport system periplasmic component like protein	8.76428537815e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3HH46	 Membrane protein, TerC family CBS transporter associated domain protein	8.76428537815e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VMV3	 Sialidase	8.76428537815e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P44940	 Putative acid  amine ligase HI_0929	8.76428537815e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1IAK7	 Histidine decarboxylase	8.76428537815e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_R4QJK7	 MFS transporter	8.76428537815e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A022CKG6		8.760395175e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_R5TI31		8.75668408904e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HBV2	 Transporter, major facilitator family protein	8.74152100009e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JEY6		8.74152100009e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_P58120	 Multi drug resistance efflux pump PmrA homolog	8.74152100009e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MY79	 Phosphoglycerate kinase	8.73395913058e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXB0	 Alpha dextran endo 1,6 alpha glucosidase	8.73097198582e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9DZ64		8.72641033295e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VCE3	 Outer membrane protein assembly factor BamA	8.71954367516e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZXM4		8.71887457287e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_T0U0P6	 Leucyl tRNA synthetase	8.71887457287e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5REB2	 WafV	8.71887457287e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZL96	 tRNA  ) methyltransferase	8.71135181603e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUT4		8.7038420301e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSU0	 Glutamine synthase	8.69826700495e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7M8H7	 Valine  tRNA ligase	8.68822551028e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M8R9		8.68339724836e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V5T4P8	 Fimbrial biogenesis outer membrane usher protein	8.68293246504e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q17YP3	 Major facilitator family transporter	8.68139015958e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E6NJW8	 Poly E rich protein	8.6739319201e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_UPI0000164CF0	 helicase related protein, partial	8.6739319201e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TKT2	 D alanine  poly ligase subunit 1	8.66648648495e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5ANN3	 Molybdopterin biosynthesis protein MoeA	8.66648648495e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_I3VWE8	 Aspartokinase	8.66648648495e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023S033	 Peptidase C13 family protein	8.65905382081e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_M4UY53	 Cytochrome c type biogenesis protein CcsA ResC	8.65905382081e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q7AX67		8.64889353223e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MV13	 CoA binding domain acetyltransferase, GNAT family	8.64689035382e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W4TZ21	 Protein translocase subunit SecA	8.64499001084e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LX76		8.64422667429e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2SBV0	 Signal transduction histidine kinase involved in nitrogen fixation and metabolism regulation	8.63683212629e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2D8		8.63445206228e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P9WIZ4	 Divalent metal cation transporter MntH	8.62945021804e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F5X0	 1 deoxy D xylulose 5 phosphate reductoisomerase	8.62945021804e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F2MNQ3	 Serine protease HtrA	8.62208091825e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E6S2B8		8.61472419359e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U594	 Nicotinate nucleotide  dimethylbenzimidazole phosphoribosyltransferase	8.61472419359e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A009L0Q9	 Diguanylate cyclase domain protein	8.60738001277e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR83	 Drug resistance transporter, EmrB QacA subfamily	8.60738001277e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S5H9		8.60738001277e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZTN2	 Glycerophosphoryl diester phosphodiesterase	8.60738001277e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P14657	 NADP specific glutamate dehydrogenase	7.61422078092e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8GK38	 Peptidase U62 modulator of DNA gyrase	7.84495474367e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_C7BXE2		8.60004834349e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K6M6J3	 Transporter, major facilitator family protein	8.60004834349e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HTI4	 YD repeat protein	8.59850150169e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G2JDG3	 RNA splicing ligase RtcB	8.59272915342e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZLN0		8.58542241127e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K4NAS3	 ATP binding protein	8.58412852712e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E6NBZ7	 Proline permease	8.57812808373e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FDG7		8.57812808373e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M100	 Inner membrane protein	8.57084614151e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8PIM3		8.57084614151e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P42454	 Rubredoxin NAD reductase	8.57084614151e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q55905	 Phosphoenolpyruvate synthase	4.32026390858e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q55905	 Phosphoenolpyruvate synthase	4.2457766002e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q0ZKT3	 ChrA	8.56357655231e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVJ0	 Branched chain amino acid ABC transporter, periplasmic amino acid binding protein	8.56357655231e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WR52		8.55631928381e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KHS2	 ABC1 family protein	8.55631928381e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7SNQ8	 RfbX family protein involved in the export of O antigen and teichoic acid	8.55631928381e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E3HVR7	 Aspartate aminotransferase	8.54907430573e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4R0I6		8.54907430573e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JEB9	 Group A colicins tolerance protein	8.54184158676e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P05846	 Transposon Tn7 transposition protein TnsC	8.54184158676e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1QE72	 Diacylglycerol O acyltransferase	8.54184158676e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTX1		8.54184158676e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVA9	 Probable butyrate kinase	8.53462109461e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F5TKP9	 Nitrate reductase, alpha subunit	8.53015292685e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G7T9W9	 Sulfate transporter	8.52741279998e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AAW0	 Phosphoenolpyruvate protein phosphotransferase	8.52741279998e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_R4WT31	 Ribonucleoside diphosphate reductase	8.52643438467e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZIY9	 DNA binding transcriptional regulator CynR	8.52021667058e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZJ96	 Chromosomal replication initiator protein DnaA	8.51303267711e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RRK7		8.50586078829e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZC75	 Sensor response regulator hybrid	8.50333080201e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A021ZS12	 Sigma 54 interaction domain protein	8.49857969821e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F6DH03	 Menaquinone biosynthesis protein	8.49155320039e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I2DEN6		8.49155320039e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CZX0	 Site specific DNA methylase	8.49155320039e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A009JRB9		8.48441744174e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WRS0	 SAM dependent methyltransferase	8.48441744174e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7UWA0		8.48441744174e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RIT9	 NHL repeat containing protein	8.48441744174e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q17Z65	 NADH quinone oxidoreductase subunit N	8.48441744174e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9Z2N2	 4 hydroxybutyrate coenzyme A transferase	8.47729366556e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U7C7	 Phospholipase, patatin family protein	8.47729366556e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZYJ3	 Glycosyl transferase, putative	8.47729366556e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RX08	 DNA polymerase III subunit alpha	8.47488100818e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U8E3	 Adenosylmethionine 8 amino 7 oxononanoate transaminase	8.47018184157e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F4A6D4	 Flagellar motor switch protein FliN	8.46308194049e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V4QZ67	 ATPase	8.46188344665e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FFC1	 Lipid II flippase FtsW	8.45599393202e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWE7	 Transcriptional regulator, Fis family	8.44891778689e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B2JWI7	 Major facilitator superfamily MFS_1	8.44891778689e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P37498		8.44891778689e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUU2	 DNA helicase RecQ	8.44417840306e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZJE9	 DNA polymerase I	8.44161246935e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PIK9	 Amidase	8.43480096548e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXG6	 PTS system mannose fructose sorbose family IID component	8.43480096548e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FB19		8.43480096548e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V9N7		8.42776022963e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0ELD1		8.42776022963e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HDK2	 Transporter, anaerobic C4 dicarboxylate uptake  family	8.42073123899e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q0B621	 Sigma54 specific transcriptional regulator, Fis family	8.41371396226e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q88QE3	 MORN domain protein	8.41371396226e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_U5Y027	 Xanthine uracil vitamin C permease	8.41371396226e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4QZZ1	 Chloride channel protein	8.40670837218e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9ZK41	 Putative glucose galactose transporter	8.40670837218e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTQ6	 Daunorubicin C 13 ketoreductase	8.39971443845e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_R4X9Z7	 Glutamate dehydrogenase	8.39971443845e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GTZ6		8.39538663669e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VCS0		8.39273213181e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPK7	 Sporulation stage II, protein E	8.37880228668e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_D3HGH4		8.37185468964e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZL83	 Ribonuclease Y	8.37185468964e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W8RA00	 MFS transporter	8.37185468964e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T3T5	 Lipid A biosynthesis lauroyl acyltransferase	8.36498894154e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7SFI0	 MMPL family protein	8.35807361277e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXS8	 FAD dependent pyridine nucleotide disulphide oxidoreductase	8.35799400221e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I1X7	 Multifunctional non homologous end joining protein LigD	8.34653307798e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4REY2		8.34456930705e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VKM1	 RecF RecN SMC N terminal domain protein	8.33831943978e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LQD7	 2 alkenal reductase	8.33728881468e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IVY6	 FAD dependent oxidoreductase	8.33728881468e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWX5		8.33728881468e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LRE6	 Membrane protein	8.33040986445e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FD60		8.33040986445e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YRY5	 Permease	8.33040986445e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_K4PRA4	 Phosphotransferase system, EIIC	8.32354225457e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RU35	 DNA repair protein RecN	8.32354225457e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G3XD12	 Hydrogen cyanide synthase subunit HcnC	8.30300720041e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0ERW5	 Integral membrane protein	8.29618467928e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K0B4J3	 Uroporphyrin III C methyltransferase HemD	8.29618467928e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RUT4	ubiquinone oxidoreductase subunit M	8.28937336219e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXH9	 NHL repeat containing protein	8.28937336219e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1IQR7	 DNA ligase	8.2879006082e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K4NLN5		8.28257321986e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_R4QK25	 GTPase	8.28257321986e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RQ09	 PglB	8.27578422502e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KGA1	 D galactonate transporter	8.27578422502e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B3PCQ0	 ACT domain protein phosphoserine phosphatase SerB	8.26900635144e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4H9D0	 Phosphoglucomutase phosphomannomutase, alpha beta alpha domain II	8.26900635144e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZLW5	 Glutamine synthetase	7.50108228443e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVW3		8.26223957083e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A9KCU3	 Aspartate aminotransferase	8.25548385492e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IZU9	 Serine  tRNA ligase	8.25548385492e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A615		8.25548385492e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZPA2	 Universal stress protein	8.25548385492e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9SMI0		8.25290613663e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JF32	 Lon protease  C terminal proteolytic domain protein	8.25099488746e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSM8	 Endopeptidase IV related protein	8.2487391795e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HKR9		8.24200551426e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU78	 2 phosphoglycerate kinase, putative	8.24200551426e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q500N2	 Bifunctional spore maturation protein, fused SpmA SpmB	8.22187032219e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR66	 Signal transduction histidine kinase regulating citrate malate metabolism	8.21518043518e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I1AMP8	 Semialdehyde dehydrogenase	8.21518043518e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C6ELT1	 Attaching and effacing protein, pathogenesis factor	8.20850142711e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JDP8	 Protein visC	8.20850142711e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXH3	 Folyl polyglutamate synthetase	8.20850142711e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GHW3	 Molecular chaperone DnaK	8.2018332697e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JG86	 Sensor protein gacS	8.19892795167e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M8U5	 Heavy metal RND efflux outer membrane protein CzcC family	8.19517593771e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G8PES7	 Glycosyl transferase 2 family protein	8.18852940388e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A8EWF0	 3 oxoacyl [acyl carrier protein] synthase 2	8.18189364297e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q00934	 Type 4 fimbriae expression regulatory protein PilR	8.17526862772e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JYA6	 PqiA family protein	8.17526862772e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V405		8.16205073121e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_F8KPA7	 Glutathione regulated potassium efflux system protein KefB	8.15545779846e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1Q8B0	 UvrABC system protein C	8.15545779846e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q4FV40	 Protein translocase subunit SecA	8.1537341556e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4XVN9	 Methyl accepting chemotaxis sensory transducer	8.14887550839e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F2KCE9	 Protein tldE, 	7.93746600232e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M8Y264	 Inner membrane transporter ygjI	8.14230383474e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PPB0	 Integral membrane sensor signal transduction histidine kinase	8.12919223473e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LPT1	 Protein translocase subunit SecY	8.12919223473e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JEZ3	 Adenylate cyclase	8.12919223473e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RVQ7	 Transporter, major facilitator family protein	8.12919223473e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_S5FCD6	 Portal protein	8.12919223473e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R8ZJ12		8.12185501441e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUS5	 Major facilitator family protein	8.1161227935e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RY06	 Valine  tRNA ligase	8.1145595379e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D3UHV1	 Type I restriction modification system, restriction enzyme	8.10931238408e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_O06924	malonate ACP transferase	8.1030953091e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6ABX1	 Replicative DNA helicase	8.1030953091e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8REV7	 Phosphoribosylamine  glycine ligase	8.1030953091e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_UPI0004669FC1	 oxidoreductase	8.0965972376e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_I0KAK8	 Major facilitator superfamily MFS_1	8.0901095796e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N9B926		8.0901095796e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25751	 Protein TolB	8.0901095796e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E294		8.08363230984e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B2IBI5		8.07716540409e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D3PRK0	 Phenylacetate  CoA ligase	8.07070883712e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSN4		8.07070883712e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A9MFX7	 Anaerobic nitric oxide reductase transcription regulator NorR	6.90120078939e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_T0T886	 Guanine deaminase	8.05140092145e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1M1B1	 PTS system maltose and glucose specific EIICB component MalX	8.0449854622e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWI8	 Aluminium resistance family protein	8.03858021854e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YYK5	 Conserved membrane spanning protein	8.03858021854e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RXG6	 Poly polymerase	8.01306091725e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q82F74	 Probable M18 family aminopeptidase 2	8.01306091725e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TNM6	 DNA polymerase	8.0025070375e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_H8GMP1	 Arylsulfotransferase 	8.00036192915e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E5ALT8	 UvrABC system protein A	7.99929076072e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2E4I0	 Permease for cytosine purine, uracil, thiamine, allantoin family protein	7.99402751819e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023YJF5		7.98770312898e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JJP8		7.98770312898e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25294	 Cytosol aminopeptidase	7.98770312898e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1Q8I7	 Arginine  tRNA ligase	7.7308244682e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K6LK64	 Diguanylate cyclase  domain protein	7.97508432492e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I2FAM9	 Serine protease Do	7.9687898616e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FD51	 Aminopeptidase P	7.9687898616e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2I0W8		7.96250532714e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U7Z2		7.96250532714e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWZ6	 Response regulator receiver sensor signal transduction histidine kinase	7.95623069731e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q3SF48	 DEAD DEAH box helicase	7.95623069731e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_S6AFF6		7.95623069731e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JTG4	 Alanine  tRNA ligase	7.95288039006e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JTK4	 Lactoferrin binding protein A	7.95120418641e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K9BES8	 Type I secretion C terminal target domain protein, VC_A0849 subclass family	7.94767793023e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_R0WMM8	 Dehydrogenase E1 component family protein	7.94725952802e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1CMV1	 Branched chain amino acid transport system carrier protein	7.94371105862e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A3PGB9	 Two component, sigma54 specific, transcriptional regulator, Fis family	7.93746600232e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MSP8	 Lactose binding protein LacE	7.93746600232e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V7ZKK9	 Glutamate synthase, beta subunit	7.93746600232e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D4JWQ1	 Seryl tRNA synthetase	7.93123075775e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q2YI46	 Streptokinase like protein	7.93123075775e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JXS4	 Membrane protein insertase YidC	7.93123075775e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W8EKH5	 Fatty acid  CoA ligase	7.93123075775e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYG9	 Aldehyde dehydrogenase	7.92500530271e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D5WEA6	 Major facilitator superfamily MFS_1	7.91878961195e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IW74	 RNA polymerase sigma 54 factor	7.91878961195e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V5B6	 Phenylacetaldehyde dehydrogenase	7.91258366428e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6S911	 Deoxyribodipyrimidine photolyase	7.91258366428e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P46392	 Acetyl  propionyl coenzyme A carboxylase alpha chain	7.51783823886e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HFJ3		7.90640682872e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_O07002	 Aspartate proton symporter	7.90638743545e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q43923	 Putative porin QuiX	7.90638743545e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_C1CUZ2		7.90020090426e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P72749	 GTP binding protein TypA BipA homolog	7.90020090426e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3SYD5	 MATE family drug transporter	7.90020090426e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P45119	 Pyruvate dehydrogenase E1 component	7.89881561588e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M9S8V5	 Oxidoreductase	7.8940240465e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WDF2	 Major facilitator superfamily MFS_1	7.88785683993e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HDF7	 Dihydroorotase	7.88785683993e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_W4MVL4	 Phosphoenolpyruvate protein phosphotransferase	7.88483663129e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F8J3	 Glutamyl tRNA reductase	7.88169926236e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1VJQ2	 Acyl CoA dehydrogenase	7.87555129056e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YJI7	 PAAR motif containing protein	7.87555129056e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_A0A023SHI2	 Sensor protein LytS	7.86328407742e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P71838	 KsdD like steroid dehydrogenase Rv0785	7.86328407742e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYM5		7.86328407742e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_G7UVD4	 Dihydrolipoamide dehydrogenase	7.85716478965e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_H3XI04	 GA module	7.84193772652e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1QCK7	 Glutamate synthase 	7.83886394002e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZMX5	 Threonine synthase	7.83278258767e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8FWK7	 Nucleotide sugar dehydrogenase	7.82064814496e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7VF14	 UDP N acetylmuramoyl L alanyl D glutamate  2,6 diaminopimelate ligase	7.8145950112e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HCV9	 ABC transporter, ATP binding protein	7.80855124089e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EM51	 Zinc protease	7.80251681181e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WV43	 Cis,cis muconate transporter MucK	7.80251681181e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5D7U1	 Nucleotidyltransferase DNA polymerase involved in DNA repair	7.79047589158e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HDX4		7.78446935599e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_K0B0R4	 Para aminobenzoate synthase component 1	7.77847207683e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25534	 Plasminogen binding protein PgbB	7.77847207683e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZMV8	 Flagellin B	7.77847207683e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B3PG85	 Sensor histidine kinase	7.76650519593e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8ZQD5	 DNA translocase FtsK	7.75736430924e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_G8PNB5	 Acetylornithine deacetylase or succinyl diaminopimelate desuccinylase	7.75457508027e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUH1	 Ornithine aminotransferase, putative	7.74862375715e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6Z6	 SNF2 related protein	7.72008773757e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5K4N5	 Membrane protein, putative	7.71900363557e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_P56867	 Hexagonally packed intermediate layer surface protein	7.71485450576e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q1CUR3	 Glutamyl tRNA reductase	7.71310676467e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FFB5	 Channel tunnel spanning the outer membrane and periplasm segregation of daughter chromosomes	7.71310676467e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JYM0	disulfide interchange protein DsbD	7.70134001169e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F6FVA2	 NADH quinone oxidoreductase, F subunit	7.69547008823e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6UXR0	 GWSI6489	7.69547008823e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JY28		7.67791388258e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M8Y3	 Flagellar biosynthetic protein FlhF	7.67207960163e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MUH2	 Flagellar hook associated protein 2	7.66625418032e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A9KHS7	 Radical SAM domain protein	7.64304069267e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H5Y2B5	 Cytosine deaminase like metal dependent hydrolase	7.64304069267e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_O82392	 Phosphomethylpyrimidine synthase, chloroplastic	7.64304069267e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_V7ZFF9	 S methylmethionine permease	7.64304069267e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A2D2		7.63952980633e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT70	 Phage portal protein, SPP1	7.63148658724e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZK62	 Signal recognition particle protein	7.63148658724e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_G2MDU0	 Outer membrane protein HopG	7.62572262508e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VAM5	 Transferase	7.62572262508e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GSQ0	 VanW like protein	7.62572262508e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K4RIH9	 Transporter	7.62572262508e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I6SKB7		7.61996736203e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MCY2	 Glycosyl transferase family 2	7.61996736203e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P03708	 Terminase large subunit	7.61996736203e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F8HXV5	 Multidrug resistance efflux pump	7.61422078092e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51397	 Outer membrane protein OprJ	7.61422078092e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0E8W5		7.60848285954e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVZ5	 Zinc metalloprotease, putative	7.60275358073e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B9E1R4		7.59703292329e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M391	 Methyl accepting chemotaxis sensory transducer	7.59132086802e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VGJ6	 Membrane fusion protein	7.59132086802e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V4GWV2	 Tryptophan permease	7.58561739676e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_L9MX54	 Phage like baseplate assembly protein	7.58351715202e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WZL0	 Two component transcriptional regulator, winged helix family	7.57992248932e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q4FQ21	 UDP N acetylmuramoylalanine  D glutamate ligase	7.57992248932e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_U7J4M5		7.57992248932e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9Z2M8	 L fucose proton symporter	7.5742361255e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q1Q8J3	 Trigger factor	7.5742361255e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZJL8	 ATP dependent Clp protease ATP binding subunit ClpX	7.5742361255e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LW09	 Response regulator receiver protein	7.56288895502e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q3SFK0	 Chromate transporter	7.55722810999e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P10486	 Type I restriction enzyme EcoR124II R protein	7.55390943091e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A1SQR8	 MATE efflux family protein	7.55157573287e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D7CX24	 Peptidase M20	7.54593180546e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7CKR0	 Replicative DNA helicase	7.54593180546e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_U5PBM4	 Branched chain amino acid ABC transporter substrate binding protein	7.54593180546e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RP65	 Peptidase S41	7.54029630658e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7SJI3	 Transporter, major facilitator family protein	7.54029630658e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYH2	 Serine protease, subtilase family	7.54029630658e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A032DM97		7.52905052573e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C4LGM2	 Catalase	7.52905052573e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A6QAV3	 Ni Fe hydrogenase, large subunit	7.51224460898e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q5H175	 Dihydrolipoyl dehydrogenase	7.51224460898e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LR92	 AMP dependent synthetase and ligase	7.50665929757e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q1CRH7	 tRNA modification GTPase MnmE	7.50108228443e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZKU4	 Phosphate acetyltransferase	6.91538133862e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F2QGG0	 Phage integrase family site specific recombinase	7.48440085598e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q9AK82	 DNA polymerase IV	7.23760340832e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q8XIK5		7.47885685523e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F5XLU5	 NADH quinone oxidoreductase subunit M	7.46779345778e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_J0P427	 Type III restriction modification system DNA endonuclease	7.46667956922e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RJ04	 Potassium uptake protein, TrkH family	7.45676274357e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_X5DTS0	 PTS system sugar specific permease protein	7.45676274357e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P33655	 DNA primase	7.45125959813e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9K1R6	 Glutamate  tRNA ligase	7.45125959813e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M1L0	 Valine  pyruvate aminotransferase	7.44576456823e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_G4L521	 Glycine betaine ABC transporter permease glycine betaine binding protein	7.44027763871e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_I1WGW6		7.44027763871e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUQ8	 Phosphotransferase system, EIIC	7.43479878837e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A016YJN0	 MMPL family protein	7.42963038389e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6S6	 Radical SAM domain protein	7.42932800208e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8V756	 Glycosyltransferase	7.42932800208e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWI2		7.42090165475e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A5S0	 Probable potassium transport system protein kup	7.4184105479e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VS05	 Sodium hydrogen exchanger family protein	7.41296384368e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYX7	 Xanthine permease, putative	7.4075251318e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_A2BKX6	 V type ATP synthase alpha chain	7.40209439512e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JXK3	 Serine type peptidase	7.39120444269e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LXZ9	 MATE efflux family protein	7.38584985752e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YYA3	 Nucleotidyltransferase DNA polymerase involved in DNA repair UmuC	7.38045084391e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5CTY8		7.38045084391e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VKL3	 23S rRNA  C(5)) methyltransferase RlmD	7.37505971866e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E4U760	 Carbohydrate ABC transporter membrane protein 2, CUT1 family	7.37505971866e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G8LUB7		7.36430106156e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A013SXP0	 Phosphoenolpyruvate protein phosphotransferase	7.36270286918e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A8IJ61	 Sodium sulphate symporter	7.34822180093e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_M5D5M6	 Sel1 repeat protein	7.34287764036e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7VGX8	 Isoleucine  tRNA ligase	7.33224740615e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RTQ5	 GntR family transcriptional regulator	7.32689169422e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6S8I9		7.32689169422e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JZ25		7.32689169422e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M0L0	 ATP dependent RNA helicase HrpA	7.32561690549e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_J4KJN9		7.32416805587e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT42		7.31097520261e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_G8TK26	 RNA splicing ligase RtcB	7.31097520261e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U5K4	 6 phosphogluconate dehydrogenase, decarboxylating	7.30568506111e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KKG0	 Response regulator receiver modulated diguanylate cyclase	7.28460083341e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8S496	 Replication associated recombination protein A	7.28460083341e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VIM2	 Phosphotransferase system, EIIC	7.28460083341e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_X5ERA2		7.26886735422e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_S5DFR0	 Isoleucine  tRNA ligase	7.26646341714e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A8ESW7	 Aspartate  tRNA ligase	6.99200606286e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A3P8Z9	 AMP binding domain protein	7.25841607162e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LUU0		7.25841607162e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E3A0A4	 2,4 dienoyl CoA reductase FadH2	7.25320169192e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R9V179	 FAD dependent oxidoreductase	7.25320169192e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1EFK1	 Protease III	7.24848881533e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXK8		7.23760340832e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZJ57	 Transcription repair coupling factor	7.23278737321e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9TM82	 Pyruvate flavodoxin ferredoxin oxidoreductase domain protein	7.23241887878e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E1V509	 APC family transporter	7.23241887878e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q51484		7.23241887878e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXE1	 Lysine  tRNA ligase	6.58178406462e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWW2		7.19633410902e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9U4U5	 Enterochelin esterase	7.19120851554e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7SNW3	 Biotin requiring enzyme	7.17587544768e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q21QY4	quinone oxidoreductase	7.17587544768e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_R5TSV1	 Phosphoglucomutase phosphomannomutase family protein	7.17077894512e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A037Y901	proton symporter	7.16568967666e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EP63		7.16568967666e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E8P8P8		7.16060762818e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T3B6	 Phospholipase D protein	7.16060762818e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_B9KQZ7	 Glycosyl transferase, family 2	7.15553278151e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VS92	 Paraquat inducible protein	7.15046512452e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C9X0H3	 DNA repair protein RecN	7.15046512452e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_G8NWZ5	 Sigma 54 interacting domain protein	7.15046512452e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1J0Q8	 Glycolate oxidase subunit, GlcD	7.15046512452e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FF20	 Polyphosphate AMP phosphotransferase	7.1353051271e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A0LSS7	 Glutamate  tRNA ligase	7.13026607034e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B8DWF1	 ATP binding protein of ABC transporter	7.11519151217e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P9WPR0		7.11519151217e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7VFT4	 Donor ubiquinone reductase I	7.11519151217e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DX72	 Galactose proton symporter	7.11018081333e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_J7LRM2	 Gamma aminobutyraldehyde dehydrogenase	7.11018081333e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E6B2J0	 Glycosyl transferases group 1 family protein	7.10517716788e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VLY8		7.10018055966e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VBI4	 Amidohydrolase family protein	7.09519097352e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUA0	 NADH quinone oxidoreductase subunit N	7.09519097352e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K4NKR5		7.09020839533e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_H2JWP6	 Permease for cytosine purines uracil thiamine allantoin	7.08523281096e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F4GZX9	 Amidophosphoribosyltransferase	7.08026420425e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VFY7	 Penicillin binding protein, transpeptidase domain protein	7.08026420425e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q0VT82	 Monooxygenase, putative	7.07034786727e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D3RCC6	 Carbohydrate kinase, FGGY like protein	7.0604592693e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K1BT49	 Transport protein HasD	7.0604592693e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A3DIH0	 Intracellular exo alpha  L arabinofuranosidase	7.05552533585e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IZ14	 Major facilitator superfamily MFS_1	7.05552533585e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RZD3		7.05059829221e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A0A059MV07	 3D  trihydroxycyclohexane 1,2 dione hydrolase	7.03585836595e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HFH3	 Exo alpha sialidase	7.03095874328e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_F9VBF9	 OPT family oligopeptide transporter	7.03095874328e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_C3BHS6	 Aldehyde dehydrogenase	7.02606593976e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q17VD8	 Complete genome, strain Sheeba	7.02606593976e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_E3EL28	 Nicotinate phosphoribosyltransferase and like protein	7.01142830171e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F629	 NADH quinone oxidoreductase subunit N	7.01142830171e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FEF8		7.01142830171e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RV87		7.01142830171e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU62	 Transcription repair coupling factor	7.00953939298e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2I1F3	 GGDEF domain protein	7.00656263343e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KI03	 X Pro dipeptidyl peptidase	7.00656263343e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S6P7	 DEAD DEAH box helicase	7.00170371362e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_M4YVT1		7.00170371362e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2V9	 Methyl accepting chemotaxis sensory transducer	6.99685152814e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D0MEX8	 FAD dependent oxidoreductase	6.99685152814e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_J8WK23	 Type III restriction modification system EcoPI enzyme, subunit res	6.99083114627e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_C4I344	 Permease, major facilitator superfamily	6.98716730466e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C7ZVQ2	 Glycosyl transferase	6.98716730466e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D5VAW9	 Transporter	6.9823352384e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F653		6.9823352384e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A8KZZ6	 ABC transporter related	6.97750985195e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D5WIU5	 RND efflux system, outer membrane lipoprotein, NodT family	6.97750985195e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A6QE03	 Amidase	6.95348261412e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C4K3W3	 NADH quinone oxidoreductase subunit N	6.94869700973e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F3P3J8	 ABC transport system, ATP binding protein	6.94391798823e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_I3YFJ2	 NADH dehydrogenase subunit M	6.94391798823e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RY09		6.93914553649e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q040Z6	 PTS system IIC component, Glc family   PTS system IIA component, Glc family   PTS system IIB component, Glc family	6.92962028475e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HTR0	 Probable multidrug resistance protein NorM	6.92962028475e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P0A533	 Cobyric acid synthase	6.92486745851e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M1H8		6.91538215038e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IVV0	 Dynamin family protein	6.91538133862e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X5EKC8	 Ferric alcaligin siderophore receptor	6.91538133862e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_D4HD09		6.91064801873e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RQA1	 MFS type transporter	6.90592117269e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I692		6.89648685469e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2V422		6.89177935548e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RQR5	 MafB5	6.89177935548e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q2KAV8	 UPF0061 protein RHE_CH01223	6.89177935548e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VBC4	 Acinetobactin biosynthesis protein	6.89060368468e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EPP7	 Periplasmic dipeptide transport substrate binding protein	6.88238360999e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9UAL6		4.19985721923e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXI1		6.87301344791e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A7K3E5	 Nucleoside diphosphate sugar epimerase dehydratase	6.8590059479e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A850	 Exodeoxyribonuclease V beta chain	6.85618993404e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VKL6	 Thiol reductant ABC exporter, CydC subunit	6.84505542725e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3TA62	 Protein MurJ homolog	6.84505542725e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RLL2		6.84041785609e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZXX5	 Carbon starvation protein A	6.83578656393e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A024E6L7	 Carbamoyl phosphate synthase L chain, ATP binding	6.8265427691e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F9EXE3	 ABC superfamily ATP binding cassette transporter, ABC protein	6.8265427691e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3IYN0	 OmpA family protein	6.8265427691e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_B2TPE7	 Cobyric acid synthase	6.81732393978e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D7FE80	 Sialic acid binding adhesin SabA	6.81732393978e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VC77	 Methylmalonyl CoA mutase, small subunit	6.81732393978e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A0A024BZJ6	 Peptide ABC transporter ATP binding protein	6.80354228742e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_H2GZD2	 Ascorbate specific PTS system enzyme IIC	6.78981624432e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q8RGJ4	 Aspartate  tRNA ligase	6.78981624432e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6CPB8	 Methionine  tRNA ligase	6.78981624432e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RS80	 Peptidase	6.78069627647e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_B4RRC4		6.76706216868e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JHI1	 Response regulator	6.76706216868e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VKD0		6.76252964207e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_H7CWQ5	 ABC transporter, permease ATP binding protein	6.76252964207e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_N9ILP1		6.75800318242e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSR5	 Glycine  tRNA ligase	6.74446009015e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_O53182	 2 oxoglutarate oxidoreductase subunit KorA	6.7264868453e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4X4D0	 ATP dependent RNA helicase RhlE	6.72200849224e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HR37	 FGGY family pentulose kinase	6.71753609811e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZX20		6.71753609811e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I4P0M5	 Tail fiber protein	6.71306965079e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D7FCY4		6.69526310046e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXH7	 Fatty acid  CoA ligase, putative	6.69526310046e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B2I1K5	disulfide interchange protein	6.67755076421e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_A4WV67	 Kinase like protein	6.66432789116e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X5EK24	 Integral membrane transporter	6.65115728241e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C7QFW5	 Nucleic acid binding OB fold tRNA helicase type	6.64240575952e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_N0CE78	 Snf2 family protein	6.639156957e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A6WEY6	 Carbamoyl phosphate synthase L chain ATP binding	6.63803862903e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_M1MHE2	 Glycosyl transferase, family 2	6.63367723736e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_D5WG02	 Type VI secretion ATPase, ClpV1 family	6.62932157241e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXP3		6.62932157241e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_R4XX04	 Phage related protein	6.62497162406e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YUC5	 Sensor histidine kinase	6.62062738022e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VAH8	 Kinase domain protein	6.61628883078e-05
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_E6JPP5	solute symporter family protein	6.60762876664e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M7E3	 Membrane bound O acyl transferase MBOAT family protein	6.59037647241e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_C5BHI4	 Peptide chain release factor 3	6.58607746574e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RX51	 Malto oligosyltrehalose trehalohydrolase	6.57321403361e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_X2M604		6.56893738151e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U9DMQ5		6.54763732488e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7VK73	 UvrABC system protein C	6.53915592966e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F5XP90		6.5349234657e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYP5		6.52647495464e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_C7NCR9	 Nickel ABC transporter, periplasmic nickel binding protein	6.52225888532e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E6NJU4	 Single stranded DNA specific exonuclease	6.51804826e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JXS7	 Chromosomal replication initiator protein DnaA	6.50125998378e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_Q897Q2	 NH3 dependent NAD+ synthetase	6.49707641899e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_D5AV31	 TPR repeat domain protein	6.48872542152e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VP93	 PTS system, sucrose specific IIBC component	6.48455796764e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E8QV25		6.47208766328e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LT80	 Response regulator receiver protein	6.46380073994e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RNU6		6.45337713376e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q1GSN3	 DNA mismatch repair protein MutL	6.4390668077e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0ML51		6.43086417564e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZJ66	 Protein translocase subunit SecD	6.41452144495e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_N1QK40	 Amidase signature enzyme	6.40638118982e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YQ86		6.39826156881e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W5V0N3	 Hemagglutinin	6.39421011212e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0HDD8		6.37805227784e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_X2HWT2	 Membrane protein	6.36598786618e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A8EV23	 Chaperone protein HtpG	6.34997280186e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V690		6.34598161899e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M1V0X7		6.34199544901e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q46RL8	 Trans feruloyl CoA synthase	6.33403811442e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VRQ2		6.33006693061e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P07648	 RecBCD enzyme subunit RecC	6.32861421102e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H383	 Fumarate reductase flavoprotein subunit	6.32213948355e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_F5ZKQ5	 PTS multi domain regulator	6.32213948355e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_A0A034P4M4	 Iron regulated surface determinant protein H	6.30634400706e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_L0A6E5	 Phytoene desaturase	6.29847583024e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RNM6	 Protein translocase subunit SecD	6.27889101723e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q1CRC0	 DNA helicase II	6.27109115202e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_F9CKG9	 Hydrogenase 4 membrane subunit	6.25942762219e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VB45	 Exonuclease V subunit alpha	6.25942762219e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G3XDA3	 Methyl accepting chemotaxis protein CtpH	6.25554941464e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R6TDY4	 ATPase histidine kinase DNA gyrase B HSP90 domain protein	6.25167600896e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2EFZ4	 Type I secretion system ATPase family protein	6.25167600896e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_C3MH79	 Enoyl CoA hydratase isomerase 3 hydroxyacyl CoA dehydrogenase	6.24780739809e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B6JN53	 Polyribonucleotide nucleotidyltransferase	6.24394357193e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7US81	 Predicted tail fiber protein	6.21320415715e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HUW6	 Methyl accepting chemotaxis protein CtpL	6.20556653695e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3T7G8		6.20556653695e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A5F379	 DNA repair protein RecN	6.20175476408e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q89P00	 60 kDa chaperonin 4	6.19034748939e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q08860	 Flagellin	6.18655438387e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R5BEJ3		6.18655438387e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023YXD9	 Anaerobic dimethyl sulfoxide reductase chain A	6.17520290826e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E1NZW5	 PspA related protein	6.17142833477e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_X2HS12	 Multidrug transporter	6.16765837234e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M585		6.16389301288e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MTV5	 MafB family protein	6.16013224832e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0Z1M1		6.15929409299e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F7D3	 Septum formation, penicillin binding protein 3, peptidoglycan synthetase	6.15637607059e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IVV5	 tRNA uridine 5 carboxymethylaminomethyl modification enzyme MnmG	6.1376636813e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_K0CE62	 Pimeloyl CoA synthetase	6.13393484477e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P56190	 Carbon starvation protein A homolog	6.1302105375e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_R7N6I1	 Thiamine pyrophosphate protein domain protein TPP binding	6.12277547343e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VEJ2		6.11906470047e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JFA0		6.11906470047e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MD69	 DNA polymerase III, subunits gamma and tau	6.11165663129e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LTC5	 Glutamate  tRNA ligase	6.0968941758e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_F4GQ68	 Acetolactate synthase 2 catalytic subunit	6.0968941758e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M0A0	 Phosphoenolpyruvate protein phosphotransferase	6.07123076071e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_P42425	 Lon protease 2	6.06758218495e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IXY0	 DNA polymerase of the X family containing C terminal PHP hydrolase domain	6.06758218495e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9Z196	 Oligopeptide binding protein OppA	6.06393799105e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2UJ43	 Thiamine pyrophosphate protein domain protein TPP binding	6.06029817195e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E1S7F7	 Para aminobenzoate synthase,aminase component Aminodeoxychorismate lyase	6.04940488667e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F7L8	 Glycine  tRNA ligase beta subunit	6.045782488e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B7MV22	 Exodeoxyribonuclease VIII from bacteriophage origin	6.04216442575e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YYU8	 Pyochelin synthetase	6.03855069084e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_P0A0U8	 Penicillin binding protein 2	5.81593131096e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M0E5	 Aminopeptidase	6.02054666391e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A022S625	 UvrD REP helicase N terminal domain protein	6.00596193837e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M597	 Peptidase M56 BlaR1	5.99552063814e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RVZ7	 O acetylhomoserine  lyase	5.99196246605e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9RPF6		5.99196246605e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_P45868	 Probable NAD dependent malic enzyme 2	5.97423476602e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H3D4	 FhuE receptor	5.97070180681e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_G8Q707	 PpkA	5.96717302349e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M3W5	 PAS modulated sigma54 specific transcriptional regulator, Fis family	5.96364840798e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6DB92	 Low affinity potassium transport system protein kup	5.95661165519e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RJQ8	 Acetolactate synthase	5.94258784839e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FF05	 Primosomal protein N  directs replication fork assembly at D loops, ATP dependent	5.93909220871e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D7CSB0	 ABC transporter related protein	5.93211325207e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P59217	 Putative terminase large subunit	5.93211325207e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LZ45	 Histidine kinase internal region	5.92515067795e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A1KRG6	 DNA directed RNA polymerase subunit beta	5.20685868017e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_E1VIL5		5.9147374075e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_S8MEU9	 Cell wall surface anchor protein	5.9147374075e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VIB3	 Type III restriction enzyme, res subunit	5.91127444702e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWM9	 Collagen triple helix repeat	5.8871467959e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6A8Y3	 Non ribosomal peptide synthetase modules related protein	5.88297305092e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_B9E9A5		5.859812394e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GVV6	 Glutathione regulated potassium efflux system protein KefB, putative	5.85641343092e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9M106	 Soluble lytic murein transglycosylase, putative	5.84285691843e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7H186	 FhuE receptor	5.82936302215e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYV0	 Oligoendopeptidase F, putative	5.82936302215e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_X2IT45	 DNA polymerase III subunit gamma tau	5.82263942005e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WXD2	 Type VI secretion protein VasA	5.81928343254e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RU45		5.7958994006e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E8U8Y0	 Oligoendopeptidase F	5.7925741568e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9HUW5	disulfide interchange protein DsbD 1	5.78593510343e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G0DTF9	 Ferrochelatase, HemH	5.77931125028e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUA4	 Enoyl CoA hydratase 3,2 trans enoyl CoA isomerase 3 hydroxyacyl CoA dehydrogenase	5.77270254687e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JZ20		5.76610894068e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MEP6	 Acetyltransferase PglI	5.76281778252e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7LY47	 Multi sensor signal transduction histidine kinase	5.75296681203e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7I3M9	 Peptidase M24	5.74969063498e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_C6AZU8	 ABC transporter related	5.74969063498e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZKG9	 Methionine  tRNA ligase	5.5323050715e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_V5NHS3		5.70421285587e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_C5ZZ07	 ABC transporter, periplasmic binding protein	5.66580064787e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A010IRI1	 Copper resistance , CopA family protein	5.65944885385e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B2FLW2	 Chaperone protein HtpG	5.65944885385e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A026S5H6		5.64678789405e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P10802	 Dihydrolipoyllysine residue acetyltransferase component of pyruvate dehydrogenase complex	5.64363150137e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q5F4X8	 Lipid A export ATP binding permease protein MsbA	5.64363150137e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q3JGA3	 Isoquinoline 1 oxidoreductase, beta subunit	5.63732928801e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EP78	 Flagellar hook protein FlgE	5.63104113498e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_H5J341	 Twice split molybdate metabolism regulator domain protein	5.61972039703e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6M2E5	 Sulfatase	5.60602818211e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A010Q6A8	 TonB dependent receptor family protein	5.59980962597e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_P56123	 Ribonuclease R	5.59360485049e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A022NSU8		5.550553466e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A7ZZW4	 Porin, autotransporter  family	5.54574272042e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M3H0	 Coagulation factor 5 8 type domain protein	5.54445730618e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_E6SHW8	 AMP dependent synthetase and ligase	5.51417627256e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GYE3		5.50515635455e-05
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI00037C10BF	 hypothetical protein	2.59149300702e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_J7QQA0	 Primosomal protein N	5.50215627017e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A8Q7	 1,4 alpha glucan branching enzyme GlgB	5.33921562963e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M530	 Phage tail tape meausure protein lambda family	5.48720475852e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUN0	 UvrABC system protein C	5.47530192752e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_A0A023LEW3	 Alpha glucosidase	5.4634506248e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6AB89	 Isoleucine  tRNA ligase	3.54634940478e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W1MGG5	 Peptigoglycan binding protein LysM	5.43404561631e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q8RM03	 Acetone carboxylase alpha subunit	5.43112251438e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F8E027	 Phage primase	5.410748529e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B9KCQ6	 Polyphosphate kinase	5.40206353973e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D6XQD7	 Outer membrane protein BabA	5.40206353973e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9Z1G0	 DNA primase	5.39917473547e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A6QBN8	 ATP dependent zinc metalloprotease FtsH	5.3905268315e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K0HYU8	 M13 family metallopeptidase	5.3905268315e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WH07	 UPF0313 protein PsycPRwf_2008	5.38477693572e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A5WGU9	 ABC transporter related protein	5.38190658576e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7SIX4	 PTS system, mannitol specific IIC component	5.37045572063e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A6Q6L7	 Transketolase	5.36189949855e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q8E0W9	 Prophage LambdaSa1, N acetylmuramoyl L alanine amidase, family 4	5.35491208613e-05
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_UPI00036DB2E6	 hypothetical protein	2.73987971621e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JZD0		5.34486858428e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A8A0A4	 L shaped tail fiber protein	5.33639363362e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_O25396	 Ferrous iron transport protein B	5.33357462011e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_B7V5N6	 ATP dependent DNA helicase RecG	5.33075858202e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P37739	 C4 dicarboxylate transport sensor protein DctS	5.33075858202e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZVH9	 Serine threonine protein kinase PrkC, regulator of stationary phase	5.31672288362e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_B8ZUG9	 Threonine  tRNA ligase	5.31392460822e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWJ1	 DNA mismatch repair protein MutL	5.31112927695e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_R4ZWJ6	 Phage tail fibers	5.28623378928e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYG5	 Methyl accepting chemotaxis protein	5.27230117772e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_I1XWU0	 Soluble lytic murein transglycosylase like protein	5.26680060284e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JZN9	 Probable TonB dependent receptor NMB0964	5.2613114935e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9K1H0	 Outer membrane protein assembly factor BamA	5.25309924861e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_T2ENN0	 Rhs element Vgr family protein	4.13281078845e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LVT1		5.24763864661e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q4QN88	 Autotransported protein Lav	5.24491260026e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_J8YHU3	 Aida related Type V secretory pathway adhesin	5.24218938495e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_H2HFL3	 Metal nicotianamine transporter YSL2	5.2367514293e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B7GZC9		5.23132474332e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_U5MX52	 Macrolide export ATP binding permease protein MacB	5.22320577051e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A0A024C8M9	 Membrane protein	5.22050504405e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_T8SKI1		5.21780710825e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_C4B4S0	 Staphylocoagulase	5.20973000747e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0Z4J7	 Histidine kinase	5.20824584953e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E6S4X2	 Outer membrane protein	5.20435915186e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_M4WY62	 Non specific serine threonine protein kinase	5.20435915186e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JGS2	 Exporter	5.20167787522e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F9W0	 DNA mismatch repair protein MutL	5.1803267083e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_L0GLZ7	 Diguanylate cyclase  domain containing protein	5.17767013062e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A7FAV7		5.16178770749e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VH70	 Phosphatase	4.6807866275e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_F8LLX7	 Restriction enzyme BgcI subunit alpha 	5.14600242338e-05
+Streptococcus	17.12842	Streptococcus_mutans	16.30896	UniRef50_C6SRZ6	 Transcriptional antiterminator	5.13292158324e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JNQ8	 TonB dependent receptor family protein	5.11731209056e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0ES06	 Methyl accepting chemotaxis protein	5.11471973442e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7WCF3		5.10437651925e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q2S834	 Predicted extracellular nuclease	5.07614718661e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RSS3	 ABC transporter, ATP binding protein, MDR family	5.07614718661e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A023RVA0	 Haloacid dehalogenase	5.06088057868e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P13989	 Transposon Tn7 transposition protein TnsB	5.06088057868e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_H0UKG1	 Urocanate hydratase	5.0558120958e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W5VBF2	 Membrane protein	5.02811591362e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_F8KSC7	 Phosphoglycerol transferase	5.02061499541e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JIN7	 Diguanylate cyclase  domain protein	5.01811965915e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9PEV8	 DNA topoisomerase 1	4.55821975377e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_L8A4F6	 ATP dependent DNA helicase RecG	5.01064851337e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_F0RK09	 Peptidase U32	4.98836796156e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_D0XDU0	 DNA directed RNA polymerase subunit beta	4.98221404193e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_D9R3D4	 Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein	4.980985079e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A0A024BWT3	 RloF	4.96872871855e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_X5EFR9	 Two component sensor	4.96628468037e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_U5QPT0	 Prolyl endopeptidase	4.96384304616e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P9WP46	 Carbon starvation protein A homolog	4.93472959709e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W5VF97	 ATPase	4.93434497257e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXG0	 Ribonuclease R	4.92510085566e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_U3R1J4	 3 hydroxyacyl CoA dehydrogenase	4.89881453463e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M1Z6	 Methyl accepting chemotaxis sensory transducer with Cache sensor	4.88932530503e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A0A023V7M1	 ATPase	4.85406574796e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q1CSQ2	 Glycine  tRNA ligase beta subunit	4.84010390918e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_S4X6Q1	 BglG family transcriptional antiterminator	4.82391627117e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_T2SKF0		4.82391627117e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_E4G8P9	 1,3 beta galactosyl N acetylhexosamine phosphorylase	4.81471471386e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E2PCU1	 FimV domain protein	4.81241980741e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_W0YQ62	 Fusaric acid resistance protein	4.78505059495e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C6SH91	 Copper transporting ATPase copA	4.76697674901e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JF19	 Subtilisin like serine protease	4.76472711406e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VFT5	 ABC transporter associated permease	4.74457554251e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V4K0	 Phosphoenolpyruvate protein phosphotransferase	4.71576681662e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_UPI00022CA8A0	 alanyl tRNA synthetase like	4.70258814889e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RX36	 Penicillin binding protein 1	4.68295767869e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_M4QX62	 General secretion pathway protein D	4.67645055775e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_D6XR13		4.66349041772e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E4R6V3	 ATP dependent helicase HrpB	4.66133737558e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M6M8	 Peptidase M56 BlaR1	4.63352765269e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_M9VD52	 Efflux ABC transporter permease	4.62503745032e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_F8KSY3	 ATPase provides energy for both assembly of type IV secretion complex and secretion of T DNA complex 	4.61657830567e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I0EYG5	 Adenine specific DNA methylase	4.61657830567e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_D4DLY8	 Primosomal protein N	4.61446835218e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZM40	 Flagellar biosynthesis protein FlhA	4.58929852459e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6A8I8	 Alanine  tRNA ligase	4.58304891277e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A4VH03	 Primosome assembly protein PriA	4.55410769309e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U539		4.52959028946e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_L0WJ64	 3 phosphoshikimate 1 carboxyvinyltransferase	4.52350213007e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_V6FKX1	 Glycosyl hydrolase family 3, C terminal domain protein	4.49931227973e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_I1ZR02		4.49730813104e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7S7B4	 Phosphoribosylformylglycinamidine synthase 2	4.48532063721e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IY10	 DNA internalization related competence protein ComEC Rec2	4.47141574649e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_D1DK94	 ATP dependent DNA helicase RecQ	4.46548286354e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_E0TN47		4.44973854378e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IZ39	 Maltodextrin phosphorylase	4.44190794294e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VCB9	 BNR Asp box repeat protein	4.43410485494e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_E2ZTK2	 Large exoprotein	4.43021358257e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RTE3	 Protein export membrane protein, putative	4.42827050635e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K4NG74	 VirB4 like protein	4.41664774904e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8X5L8	 Cyclic di GMP binding protein	4.41085922018e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_D7BEZ9	 ATP dependent DNA helicase RecG	4.3993275622e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_F0KJR3	 Membrane alanyl aminopeptidase	4.3993275622e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VEP7	 Rhs element Vgr family protein	4.37834204452e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E6MZF0	 Type III restriction enzyme, res subunit	4.36697956579e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q1JFT4	 Cell surface protein	4.36509154958e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q4ZXS3	 Transcriptional regulator, LuxR family	4.33324324298e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_P45303	 2 oxoglutarate dehydrogenase E1 component	4.17036627676e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_H8H606		4.32767113369e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A1WST0	 Aldehyde oxidase and xanthine dehydrogenase, molybdopterin binding	4.30920049296e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYY7		4.28678442953e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_R0QJ92	 Dicarboxylate symporter family protein	4.28360490284e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_Q9CH00	 Ribonuclease R 1	4.25113968658e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0VU18		4.24935048641e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_M3NMQ8	 TonB dependent receptor plug domain protein	4.23686813091e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D0SBY2	 Oxidoreductase alpha  subunit	4.22976822578e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_K5P2M6		4.22269207661e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_R6Q6V2	 Cytosine specific methyltransferase	4.22269207661e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RYW8	 Excinuclease ABC, subunit A	4.21036561949e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RX49	 Sensory box GGDEF family protein	4.20685698163e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_J7RHN4	 Aconitate hydratase	4.19288071199e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JU31	 DNA translocase FtsK 1	4.19288071199e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_B4EYR5	 Glycerol 3 phosphate acyltransferase	4.18245930178e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_A9LZF1	 P type cation transporting ATPase	4.17554042815e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9QYL5	 Peptide synthase	4.1549204749e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_N1N5F7	 Clumping factor ClfB, fibrinogen binding protein	4.14979726923e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q7VJY3	 Chaperone protein ClpB	4.1075902181e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_G7M388	 CoA disulfide reductase	4.09592566146e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_A6Q747	 Alanine  tRNA ligase	4.08928989651e-05
+Streptococcus	17.12842	Streptococcus_agalactiae	0.81946	UniRef50_J9YQD0	 Cell wall surface anchor family protein	4.08432716594e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q1IZH7	 Protein translocase subunit SecA	4.0401987813e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q9ZLD6	 UvrABC system protein A	4.03696791514e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_T1UB30	 2Fe 2S iron sulfur cluster binding domain protein	4.02730624412e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXD5	 Outer membrane protein	4.0224927311e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_P45597	 Multiphosphoryl transfer protein	4.01449572753e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_I4Y2X2	 TonB dependent outermembrane receptor	3.96405840428e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A037Y546	 Membrane protein	3.96250265136e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6FC54	 DNA mismatch repair protein MutS	3.95939480547e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXQ2	 Pyruvate dehydrogenase E1 component	3.95474216839e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_X2HWL3	 TonB dependent receptor	3.94392841997e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N2N059	 CRISPR associated endonuclease Cas3 HD	3.9255275094e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_N3QGD9	 Alpha mannosidase mngB	3.91032407198e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A024L183	 PapC like porin protein	3.90125840591e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_R4RFG5	 Phosphatidylglycerol lysyltransferase MprF	3.8817596137e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E4ZBP3	 Aminopeptidase N	3.87877708605e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_K7RVV7	 FAD linked oxidase protein	3.87431187858e-05
+Clostridium	0.93894	Clostridium_beijerinckii	0.93894	UniRef50_A6LWL3	 Collagen triple helix repeat	3.8728257599e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q4FVL5	 Translation initiation factor IF 2	3.8698569392e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B9Y1T7		3.83021879923e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_G0AHQ2	 TonB dependent receptor	3.82441543767e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_Q6F6Q6	 Phosphoenolpyruvate carboxylase	3.79566043401e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G5RHI0	 Multidrug transporter MdtC	3.78286127997e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q9I742	 Protein ClpV1	3.73389672889e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_W4UHC4	 Helicase	3.72838137179e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I2F9Q0	 Cobalt zinc cadmium resistance protein CzcA	3.68080814981e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A010CI18	 NADH Ubiquinone plastoquinone , various chains family protein	3.67678687344e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A023YVZ5	 Antigen 43	3.6754484003e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7U5I2	 Tricorn protease	3.63705214571e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B6JLQ7	 Type II R M system protein	3.6357424394e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_B6JNR5	 Isoleucine  tRNA ligase	3.60073350769e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L3G729	 Phage antigen 43  phase variable biofilm formation autotransporter	3.59688519978e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_Q48253	 Vacuolating cytotoxin autotransporter	3.59304510837e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q3J0K0	 PAS PAC sensor hybrid histidine kinase	3.56010463876e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_E0WIK7	 CagY protein	3.55011660987e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_C7R130	 D lactate dehydrogenase 	3.53146441263e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_H8GT24	 Transpeptidase transglycosylase component	3.52653047716e-05
+Staphylococcus	55.38558	Staphylococcus_epidermidis	27.10796	UniRef50_D1WQ15	 KxYKxGKxW signal domain protein	3.49358365183e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWU2		3.47195899411e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RXB5		3.44588967723e-05
+Rhodobacter	5.64659	Rhodobacter_sphaeroides	5.64659	UniRef50_Q983N4	 Isoleucine  tRNA ligase	3.39948038892e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_D8JKJ3	 Transcription repair coupling factor	3.39034813773e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G9YYU5	 Helicase protein	3.35430456959e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_K4NN39	 Type I restriction enzyme R protein	3.30057429101e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q7N3E1	 Multidrug resistance protein MdtC	3.29841775752e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_V9WW95		3.28340057044e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G7UA09	 Glycosyl hydrolase family 38 N terminal domain protein	3.23500697096e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_E3D229	 Chromosome partition protein Smc	3.18199078347e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_G0LRQ0	 Serine aspartate repeat containing protein D	3.14433408727e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RUP8	 Isoleucine  tRNA ligase	3.12100672473e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_C1DLW9		3.09897383496e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M2F1	 IcmB protein	3.0951737447e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0MM85	 Hemagglutinin hemolysin family protein	3.06557363026e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_P58402	 Sensor protein EvgS	3.01027333145e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_Q02GC2	 Type 4 fimbrial biogenesis protein PilY1	3.00132483779e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_J4VP36	 DNA polymerase III, alpha subunit	2.97216860599e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_Q9JVX8	 DNA polymerase III subunit alpha	2.94357339795e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A0A009XXP0	 RecF RecN SMC N terminal domain protein	2.92905620962e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9YY53		2.92566118618e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_B0V8Z8	 ATP dependent dsDNA exonuclease 	2.88552636616e-05
+Helicobacter	0.07678	Helicobacter_pylori	0.07678	UniRef50_I9V7J9	 Outer membrane protein HopL	2.85775736026e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_Q6ABR7	 Cobalamin biosynthesis protein CobN	2.8553327931e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_A6V8C8		2.82972442692e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_G8VL08	 ATP dependent helicase HrpA	2.82418370752e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_W1C828	 Molybdate metabolism regulator	2.79757737727e-05
+Staphylococcus	55.38558	Staphylococcus_aureus	28.27762	UniRef50_I3GYQ4		2.73839347839e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_Q8FJC7	 DNA translocase FtsK	2.65486635693e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_G9W1N9	 Enterobactin synthetase component F	2.6238193233e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_F0N1G5	 Transcription repair coupling factor	2.58949903961e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_C9WZ56	 Transcription repair coupling factor	2.48987836093e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_E2QDF8	 Phage lambda related protein, Side tail fiber protein homolog	2.4770502341e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_L4JUW1	 Adhesin invasin	2.44170659171e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_R0UE42	 Filamentous hemagglutinin family N terminal domain protein	2.43934688419e-05
+Deinococcus	0.30974	Deinococcus_radiodurans	0.15196	UniRef50_Q9RWI1		2.27141884239e-05
+Propionibacterium	0.36055	Propionibacterium_acnes	0.36055	UniRef50_F9NYB1	 RHS repeat associated core domain protein	2.15782362763e-05
+Methanobrevibacter	6.51285	Methanobrevibacter_smithii	6.51285	UniRef50_A5UKU3	 Adhesin like protein	1.83906316145e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_V5VA04	 Hemolysin type calcium binding domain containing protein	1.83471865409e-05
+Neisseria	0.04343	Neisseria_meningitidis	0.04343	UniRef50_R0YL20	 Filamentous hemagglutinin family N terminal domain protein	1.82246511863e-05
+Acinetobacter	0.12091	Acinetobacter_baumannii	0.12091	UniRef50_A3M865		1.69091555151e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_A0A024L957		1.60746007854e-05
+Pseudomonas	1.92917	Pseudomonas_aeruginosa	0.81333	UniRef50_U6ANV5		1.52169657171e-05
+Escherichia	11.54704	Escherichia_coli	6.69956	UniRef50_M4JLP2		1.50648414743e-05
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/humann2_file.txt	Tue Apr 12 02:55:42 2016 -0400
@@ -0,0 +1,204097 @@
+# Gene Family	humann2_Abundance
+UniRef50_P19529: Replication initiation protein	8491.6203916670
+UniRef50_P19529: Replication initiation protein|g__Staphylococcus.s__Staphylococcus_epidermidis	4033.9801448086
+UniRef50_P19529: Replication initiation protein|g__Staphylococcus.s__Staphylococcus_aureus	2589.8276215214
+UniRef50_P19529: Replication initiation protein|g__Propionibacterium.s__Propionibacterium_acnes	1867.8126253369
+UniRef50_Q5HJZ6: Plasmid recombination enzyme type 3	6541.5278380159
+UniRef50_Q5HJZ6: Plasmid recombination enzyme type 3|g__Staphylococcus.s__Staphylococcus_aureus	3354.3540695429
+UniRef50_Q5HJZ6: Plasmid recombination enzyme type 3|g__Staphylococcus.s__Staphylococcus_epidermidis	2955.9410606524
+UniRef50_Q5HJZ6: Plasmid recombination enzyme type 3|g__Escherichia.s__Escherichia_coli	231.2327078206
+UniRef50_P02983: Tetracycline resistance protein	5063.7609262711
+UniRef50_P02983: Tetracycline resistance protein|g__Staphylococcus.s__Staphylococcus_aureus	2535.1510022555
+UniRef50_P02983: Tetracycline resistance protein|g__Staphylococcus.s__Staphylococcus_epidermidis	2528.6099240155
+UniRef50_Q93GF3: Rep	3620.4854732918
+UniRef50_Q93GF3: Rep|g__Staphylococcus.s__Staphylococcus_epidermidis	3193.0835831399
+UniRef50_Q93GF3: Rep|g__Staphylococcus.s__Staphylococcus_aureus	427.4018901518
+UniRef50_V6QG63: Integrase	3006.6923019119
+UniRef50_V6QG63: Integrase|g__Staphylococcus.s__Staphylococcus_epidermidis	3004.5443880088
+UniRef50_V6QG63: Integrase|unclassified	2.1479139031
+UniRef50_W1W6K4	2456.8919290157
+UniRef50_W1W6K4|g__Staphylococcus.s__Staphylococcus_epidermidis	2454.8821878197
+UniRef50_W1W6K4|unclassified	2.0097411960
+UniRef50_D4FM51: Plasmid recombination enzyme	2120.1874806725
+UniRef50_D4FM51: Plasmid recombination enzyme|g__Staphylococcus.s__Staphylococcus_epidermidis	2120.1874806725
+UniRef50_Z6ILY0	2001.4420730481
+UniRef50_Z6ILY0|g__Staphylococcus.s__Staphylococcus_epidermidis	1949.0714679824
+UniRef50_Z6ILY0|unclassified	52.3706050657
+UniRef50_F0P516: Replication initiation protein, truncated	1937.6411893465
+UniRef50_F0P516: Replication initiation protein, truncated|g__Staphylococcus.s__Staphylococcus_epidermidis	1184.9438800291
+UniRef50_F0P516: Replication initiation protein, truncated|g__Staphylococcus.s__Staphylococcus_aureus	752.6973093174
+UniRef50_Q8CU99	1714.1756039229
+UniRef50_Q8CU99|g__Staphylococcus.s__Staphylococcus_epidermidis	1714.1756039229
+UniRef50_P14491: Protein rlx	1713.0351893643
+UniRef50_P14491: Protein rlx|g__Staphylococcus.s__Staphylococcus_epidermidis	1704.6104696986
+UniRef50_P14491: Protein rlx|unclassified	7.3698673450
+UniRef50_P14491: Protein rlx|g__Staphylococcus.s__Staphylococcus_aureus	1.0548523207
+UniRef50_P18358: Transposon Tn552 resolvase	1615.8824453625
+UniRef50_P18358: Transposon Tn552 resolvase|g__Staphylococcus.s__Staphylococcus_aureus	1309.3342380259
+UniRef50_P18358: Transposon Tn552 resolvase|g__Staphylococcus.s__Staphylococcus_epidermidis	306.5482073366
+UniRef50_Q5HRN3: ISSep1-like transposase	1436.3479542640
+UniRef50_Q5HRN3: ISSep1-like transposase|g__Staphylococcus.s__Staphylococcus_epidermidis	1243.7685169618
+UniRef50_Q5HRN3: ISSep1-like transposase|g__Staphylococcus.s__Staphylococcus_aureus	181.4072761300
+UniRef50_Q5HRN3: ISSep1-like transposase|g__Propionibacterium.s__Propionibacterium_acnes	11.1721611722
+UniRef50_Q4L351: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	1295.3309025030
+UniRef50_Q4L351: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	1295.3309025030
+UniRef50_Q3J5T4: 50S ribosomal protein L11	1229.1802787878
+UniRef50_Q3J5T4: 50S ribosomal protein L11|g__Rhodobacter.s__Rhodobacter_sphaeroides	1229.1802787878
+UniRef50_N6A8S2	1135.8005834263
+UniRef50_N6A8S2|g__Staphylococcus.s__Staphylococcus_epidermidis	1121.6796828769
+UniRef50_N6A8S2|unclassified	14.1209005495
+UniRef50_L7WXY9	1065.4899191617
+UniRef50_L7WXY9|g__Staphylococcus.s__Staphylococcus_epidermidis	1065.4349514194
+UniRef50_L7WXY9|unclassified	0.0549677423
+UniRef50_P18357: Regulatory protein BlaR1	1065.0580195099
+UniRef50_P18357: Regulatory protein BlaR1|g__Staphylococcus.s__Staphylococcus_aureus	706.1480208450
+UniRef50_P18357: Regulatory protein BlaR1|g__Staphylococcus.s__Staphylococcus_epidermidis	274.7899691079
+UniRef50_P18357: Regulatory protein BlaR1|g__Propionibacterium.s__Propionibacterium_acnes	84.1200295569
+UniRef50_K0LDS3	1037.3597919116
+UniRef50_K0LDS3|g__Staphylococcus.s__Staphylococcus_aureus	1030.7612677732
+UniRef50_K0LDS3|unclassified	6.5985241384
+UniRef50_I3U5U5: Mobilization protein C	1000.6288671941
+UniRef50_I3U5U5: Mobilization protein C|g__Staphylococcus.s__Staphylococcus_epidermidis	987.5625344925
+UniRef50_I3U5U5: Mobilization protein C|g__Staphylococcus.s__Staphylococcus_aureus	11.3137225223
+UniRef50_I3U5U5: Mobilization protein C|unclassified	1.7526101792
+UniRef50_Q8CUF7	973.3166630783
+UniRef50_Q8CUF7|g__Staphylococcus.s__Staphylococcus_epidermidis	973.3166630783
+UniRef50_F3SP64: Techoic acid ABC transporter, permease family protein	947.1038892942
+UniRef50_F3SP64: Techoic acid ABC transporter, permease family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	947.1038892942
+UniRef50_P20384: Putative transposon Tn552 DNA-invertase bin3	924.6260429245
+UniRef50_P20384: Putative transposon Tn552 DNA-invertase bin3|g__Staphylococcus.s__Staphylococcus_aureus	655.6268090299
+UniRef50_P20384: Putative transposon Tn552 DNA-invertase bin3|g__Staphylococcus.s__Staphylococcus_epidermidis	267.0612493985
+UniRef50_P20384: Putative transposon Tn552 DNA-invertase bin3|g__Acinetobacter.s__Acinetobacter_baumannii	1.9379844961
+UniRef50_P18416: Transposase for transposon Tn552	916.8592876685
+UniRef50_P18416: Transposase for transposon Tn552|g__Staphylococcus.s__Staphylococcus_aureus	437.1412457261
+UniRef50_P18416: Transposase for transposon Tn552|g__Escherichia.s__Escherichia_coli	381.7328724613
+UniRef50_P18416: Transposase for transposon Tn552|g__Staphylococcus.s__Staphylococcus_epidermidis	97.9851694811
+UniRef50_P0A042: Penicillinase repressor	907.2620340107
+UniRef50_P0A042: Penicillinase repressor|g__Staphylococcus.s__Staphylococcus_epidermidis	376.1713543153
+UniRef50_P0A042: Penicillinase repressor|g__Staphylococcus.s__Staphylococcus_aureus	349.2534826528
+UniRef50_P0A042: Penicillinase repressor|g__Acinetobacter.s__Acinetobacter_baumannii	181.8371970426
+UniRef50_P00807: Beta-lactamase	905.1256628462
+UniRef50_P00807: Beta-lactamase|g__Escherichia.s__Escherichia_coli	408.3774350317
+UniRef50_P00807: Beta-lactamase|g__Staphylococcus.s__Staphylococcus_aureus	370.0047946940
+UniRef50_P00807: Beta-lactamase|g__Staphylococcus.s__Staphylococcus_epidermidis	66.6555207055
+UniRef50_P00807: Beta-lactamase|g__Acinetobacter.s__Acinetobacter_baumannii	60.0879124150
+UniRef50_Q3Y3U4: Mobilization protein MobC	886.5410288112
+UniRef50_Q3Y3U4: Mobilization protein MobC|g__Staphylococcus.s__Staphylococcus_epidermidis	883.7199058841
+UniRef50_Q3Y3U4: Mobilization protein MobC|unclassified	2.8211229270
+UniRef50_Q8CUE7: Mobilization protein	872.1202834681
+UniRef50_Q8CUE7: Mobilization protein|g__Staphylococcus.s__Staphylococcus_epidermidis	837.4564797023
+UniRef50_Q8CUE7: Mobilization protein|unclassified	34.6638037659
+UniRef50_P18179: Potential ATP-binding protein	850.6971824970
+UniRef50_P18179: Potential ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	631.2042453639
+UniRef50_P18179: Potential ATP-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	219.4929371331
+UniRef50_Q4L460: Teichoic acid translocation permease protein	811.2148180466
+UniRef50_Q4L460: Teichoic acid translocation permease protein|g__Staphylococcus.s__Staphylococcus_epidermidis	798.3860422339
+UniRef50_Q4L460: Teichoic acid translocation permease protein|g__Staphylococcus.s__Staphylococcus_aureus	12.8287758127
+UniRef50_J1A645	777.6353655805
+UniRef50_J1A645|g__Staphylococcus.s__Staphylococcus_epidermidis	776.3925454707
+UniRef50_J1A645|unclassified	1.2428201098
+UniRef50_C5QCS1: Mobilization protein	772.9364283639
+UniRef50_C5QCS1: Mobilization protein|g__Staphylococcus.s__Staphylococcus_epidermidis	742.2452429868
+UniRef50_C5QCS1: Mobilization protein|unclassified	30.6911853771
+UniRef50_Q51952: OrfD	709.6261688748
+UniRef50_Q51952: OrfD|g__Staphylococcus.s__Staphylococcus_aureus	645.1193222284
+UniRef50_Q51952: OrfD|unclassified	64.5068466464
+UniRef50_Q6GJM8	666.6980603857
+UniRef50_Q6GJM8|g__Staphylococcus.s__Staphylococcus_aureus	430.1477079939
+UniRef50_Q6GJM8|g__Staphylococcus.s__Staphylococcus_epidermidis	236.5503523918
+UniRef50_V6QFW8	652.7350327943
+UniRef50_V6QFW8|g__Staphylococcus.s__Staphylococcus_epidermidis	652.7350327943
+UniRef50_P80705: Aldehyde dehydrogenase gamma chain (Fragment)	647.0009783631
+UniRef50_P80705: Aldehyde dehydrogenase gamma chain (Fragment)|g__Rhodobacter.s__Rhodobacter_sphaeroides	647.0009783631
+UniRef50_C5N6U7	631.7953914966
+UniRef50_C5N6U7|g__Staphylococcus.s__Staphylococcus_aureus	631.5217398987
+UniRef50_C5N6U7|unclassified	0.2736515978
+UniRef50_P0A0H1: rRNA adenine N-6-methyltransferase	627.5689728741
+UniRef50_P0A0H1: rRNA adenine N-6-methyltransferase|g__Neisseria.s__Neisseria_meningitidis	224.0148380381
+UniRef50_P0A0H1: rRNA adenine N-6-methyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	214.6536949590
+UniRef50_P0A0H1: rRNA adenine N-6-methyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	187.0902389794
+UniRef50_P0A0H1: rRNA adenine N-6-methyltransferase|unclassified	1.8102008975
+UniRef50_B9EB85: Signal peptidase I	618.9812468096
+UniRef50_B9EB85: Signal peptidase I|g__Staphylococcus.s__Staphylococcus_epidermidis	618.9812468096
+UniRef50_C5QVZ6	596.5815037424
+UniRef50_C5QVZ6|g__Staphylococcus.s__Staphylococcus_epidermidis	596.5815037424
+UniRef50_G7ZS60	573.1559210039
+UniRef50_G7ZS60|g__Staphylococcus.s__Staphylococcus_aureus	573.1559210039
+UniRef50_Q98B43: Two-component response regulator	569.7012707747
+UniRef50_Q98B43: Two-component response regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	569.7012707747
+UniRef50_E8SI43: ABC transporter ATP-binding protein	565.0876299174
+UniRef50_E8SI43: ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	565.0876299174
+UniRef50_P0A0C8: Replication and maintenance protein	550.8915944410
+UniRef50_P0A0C8: Replication and maintenance protein|g__Staphylococcus.s__Staphylococcus_epidermidis	321.2957063023
+UniRef50_P0A0C8: Replication and maintenance protein|g__Staphylococcus.s__Staphylococcus_aureus	229.5958881387
+UniRef50_Q6GFH6: Low molecular weight protein-tyrosine-phosphatase PtpA	532.2918562060
+UniRef50_Q6GFH6: Low molecular weight protein-tyrosine-phosphatase PtpA|g__Staphylococcus.s__Staphylococcus_epidermidis	350.7841537314
+UniRef50_Q6GFH6: Low molecular weight protein-tyrosine-phosphatase PtpA|g__Staphylococcus.s__Staphylococcus_aureus	181.5077024746
+UniRef50_B4RP36: CadB	531.1509559529
+UniRef50_B4RP36: CadB|g__Staphylococcus.s__Staphylococcus_aureus	482.5306497238
+UniRef50_B4RP36: CadB|g__Staphylococcus.s__Staphylococcus_epidermidis	48.6203062292
+UniRef50_D2JDC8	503.0632772263
+UniRef50_D2JDC8|g__Staphylococcus.s__Staphylococcus_aureus	502.9692627859
+UniRef50_D2JDC8|unclassified	0.0940144404
+UniRef50_Q6G9C7	502.6560671708
+UniRef50_Q6G9C7|g__Staphylococcus.s__Staphylococcus_aureus	396.9541736778
+UniRef50_Q6G9C7|g__Staphylococcus.s__Staphylococcus_epidermidis	105.7018934930
+UniRef50_O31705: Molybdopterin synthase catalytic subunit	501.3452309651
+UniRef50_O31705: Molybdopterin synthase catalytic subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	282.6657609895
+UniRef50_O31705: Molybdopterin synthase catalytic subunit|g__Staphylococcus.s__Staphylococcus_aureus	217.6335362172
+UniRef50_O31705: Molybdopterin synthase catalytic subunit|unclassified	1.0459337584
+UniRef50_Q3HKI3: Possible virC1 gene, ATPase	500.0872493616
+UniRef50_Q3HKI3: Possible virC1 gene, ATPase|g__Rhodobacter.s__Rhodobacter_sphaeroides	466.8309751661
+UniRef50_Q3HKI3: Possible virC1 gene, ATPase|unclassified	33.2562741956
+UniRef50_E8SJI8	488.4524569499
+UniRef50_E8SJI8|g__Staphylococcus.s__Staphylococcus_epidermidis	390.1965780773
+UniRef50_E8SJI8|g__Staphylococcus.s__Staphylococcus_aureus	98.2558788726
+UniRef50_A5F3J8: 30S ribosomal protein S7	487.0760696217
+UniRef50_A5F3J8: 30S ribosomal protein S7|g__Rhodobacter.s__Rhodobacter_sphaeroides	230.6371476687
+UniRef50_A5F3J8: 30S ribosomal protein S7|g__Staphylococcus.s__Staphylococcus_epidermidis	117.5428302659
+UniRef50_A5F3J8: 30S ribosomal protein S7|g__Staphylococcus.s__Staphylococcus_aureus	70.7147115612
+UniRef50_A5F3J8: 30S ribosomal protein S7|g__Streptococcus.s__Streptococcus_mutans	56.2407064205
+UniRef50_A5F3J8: 30S ribosomal protein S7|g__Clostridium.s__Clostridium_beijerinckii	9.8039215686
+UniRef50_A5F3J8: 30S ribosomal protein S7|g__Escherichia.s__Escherichia_coli	2.1367521368
+UniRef50_Q5HIS8: Single-stranded DNA-binding protein 1	486.1104531708
+UniRef50_Q5HIS8: Single-stranded DNA-binding protein 1|g__Staphylococcus.s__Staphylococcus_aureus	290.0814783621
+UniRef50_Q5HIS8: Single-stranded DNA-binding protein 1|g__Staphylococcus.s__Staphylococcus_epidermidis	196.0289748087
+UniRef50_Q3IUW8: TraE protein	480.0571094793
+UniRef50_Q3IUW8: TraE protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	480.0571094793
+UniRef50_Q6GJN1	479.6158335459
+UniRef50_Q6GJN1|g__Staphylococcus.s__Staphylococcus_aureus	479.6158335459
+UniRef50_J0MRE5	466.4114881174
+UniRef50_J0MRE5|g__Staphylococcus.s__Staphylococcus_epidermidis	454.6271805027
+UniRef50_J0MRE5|unclassified	11.7843076147
+UniRef50_Q3HKI5	466.0863415041
+UniRef50_Q3HKI5|g__Rhodobacter.s__Rhodobacter_sphaeroides	462.5446942235
+UniRef50_Q3HKI5|unclassified	3.5416472807
+UniRef50_Q8CUB3	462.0595725869
+UniRef50_Q8CUB3|g__Staphylococcus.s__Staphylococcus_epidermidis	457.8809233494
+UniRef50_Q8CUB3|g__Acinetobacter.s__Acinetobacter_baumannii	4.1786492375
+UniRef50_Q6GGX9: UPF0403 protein SAR1441	461.7441881574
+UniRef50_Q6GGX9: UPF0403 protein SAR1441|g__Staphylococcus.s__Staphylococcus_aureus	259.7377687662
+UniRef50_Q6GGX9: UPF0403 protein SAR1441|g__Staphylococcus.s__Staphylococcus_epidermidis	202.0064193912
+UniRef50_B9E8I0: S-ribosylhomocysteine lyase	457.8085639697
+UniRef50_B9E8I0: S-ribosylhomocysteine lyase|g__Staphylococcus.s__Staphylococcus_epidermidis	240.5953097451
+UniRef50_B9E8I0: S-ribosylhomocysteine lyase|g__Staphylococcus.s__Staphylococcus_aureus	216.4493488206
+UniRef50_B9E8I0: S-ribosylhomocysteine lyase|unclassified	0.7639054040
+UniRef50_J0XSF7	453.0408406949
+UniRef50_J0XSF7|unclassified	453.0408406949
+UniRef50_Q8CUE8	452.5991820392
+UniRef50_Q8CUE8|g__Staphylococcus.s__Staphylococcus_epidermidis	337.1157660745
+UniRef50_Q8CUE8|unclassified	115.4834159647
+UniRef50_Q5KX02: Deoxyribose-phosphate aldolase	449.0482597143
+UniRef50_Q5KX02: Deoxyribose-phosphate aldolase|g__Staphylococcus.s__Staphylococcus_aureus	283.9670396629
+UniRef50_Q5KX02: Deoxyribose-phosphate aldolase|g__Staphylococcus.s__Staphylococcus_epidermidis	128.5603118707
+UniRef50_Q5KX02: Deoxyribose-phosphate aldolase|g__Streptococcus.s__Streptococcus_mutans	25.8049939080
+UniRef50_Q5KX02: Deoxyribose-phosphate aldolase|g__Propionibacterium.s__Propionibacterium_acnes	10.7159142727
+UniRef50_D2J7Y2	442.8075182168
+UniRef50_D2J7Y2|g__Staphylococcus.s__Staphylococcus_aureus	442.8075182168
+UniRef50_P26423: Galactose-6-phosphate isomerase subunit LacA	439.9610954047
+UniRef50_P26423: Galactose-6-phosphate isomerase subunit LacA|g__Staphylococcus.s__Staphylococcus_aureus	186.2457291650
+UniRef50_P26423: Galactose-6-phosphate isomerase subunit LacA|g__Staphylococcus.s__Staphylococcus_epidermidis	138.0700098256
+UniRef50_P26423: Galactose-6-phosphate isomerase subunit LacA|g__Streptococcus.s__Streptococcus_mutans	64.3171748643
+UniRef50_P26423: Galactose-6-phosphate isomerase subunit LacA|g__Streptococcus.s__Streptococcus_agalactiae	48.8590457474
+UniRef50_P26423: Galactose-6-phosphate isomerase subunit LacA|unclassified	2.4691358025
+UniRef50_U5UNN1: GNAT family acetyltransferase	437.8988812128
+UniRef50_U5UNN1: GNAT family acetyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	318.5117107028
+UniRef50_U5UNN1: GNAT family acetyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	119.3871705100
+UniRef50_A5IWE0	432.4786090242
+UniRef50_A5IWE0|g__Staphylococcus.s__Staphylococcus_aureus	430.9243606116
+UniRef50_A5IWE0|unclassified	1.5542484126
+UniRef50_Q3IUV2: TraG	429.8639819879
+UniRef50_Q3IUV2: TraG|g__Rhodobacter.s__Rhodobacter_sphaeroides	429.8639819879
+UniRef50_D2JFR8	423.3722239425
+UniRef50_D2JFR8|g__Staphylococcus.s__Staphylococcus_epidermidis	202.1774425936
+UniRef50_D2JFR8|g__Staphylococcus.s__Staphylococcus_aureus	198.5726066906
+UniRef50_D2JFR8|unclassified	22.6221746583
+UniRef50_Q7A7G4	412.6481590460
+UniRef50_Q7A7G4|g__Staphylococcus.s__Staphylococcus_aureus	272.3912462754
+UniRef50_Q7A7G4|g__Staphylococcus.s__Staphylococcus_epidermidis	140.2569127706
+UniRef50_V9WFJ2	409.0709236519
+UniRef50_V9WFJ2|g__Rhodobacter.s__Rhodobacter_sphaeroides	408.7921897718
+UniRef50_V9WFJ2|unclassified	0.2787338802
+UniRef50_Q3IVA1: Translation initiation factor 2, gamma subunit, GTPase	405.7109435708
+UniRef50_Q3IVA1: Translation initiation factor 2, gamma subunit, GTPase|g__Rhodobacter.s__Rhodobacter_sphaeroides	405.7109435708
+UniRef50_Q28UY2: 50S ribosomal protein L11	397.9108773463
+UniRef50_Q28UY2: 50S ribosomal protein L11|g__Staphylococcus.s__Staphylococcus_aureus	310.6552478586
+UniRef50_Q28UY2: 50S ribosomal protein L11|g__Staphylococcus.s__Staphylococcus_epidermidis	82.4736467645
+UniRef50_Q28UY2: 50S ribosomal protein L11|g__Clostridium.s__Clostridium_beijerinckii	2.4509803922
+UniRef50_Q28UY2: 50S ribosomal protein L11|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3310023310
+UniRef50_D9REY1	397.3684324359
+UniRef50_D9REY1|g__Staphylococcus.s__Staphylococcus_aureus	397.3684324359
+UniRef50_Q4L5M1: Antibacterial protein 3 homolog	395.2010741317
+UniRef50_Q4L5M1: Antibacterial protein 3 homolog|g__Staphylococcus.s__Staphylococcus_epidermidis	384.5627762594
+UniRef50_Q4L5M1: Antibacterial protein 3 homolog|g__Staphylococcus.s__Staphylococcus_aureus	10.6382978723
+UniRef50_A9H9A8: ATP synthase subunit beta	392.5914097524
+UniRef50_A9H9A8: ATP synthase subunit beta|g__Rhodobacter.s__Rhodobacter_sphaeroides	103.3795683799
+UniRef50_A9H9A8: ATP synthase subunit beta|g__Staphylococcus.s__Staphylococcus_epidermidis	102.8256976298
+UniRef50_A9H9A8: ATP synthase subunit beta|g__Staphylococcus.s__Staphylococcus_aureus	98.4813335045
+UniRef50_A9H9A8: ATP synthase subunit beta|g__Streptococcus.s__Streptococcus_mutans	47.3343514688
+UniRef50_A9H9A8: ATP synthase subunit beta|g__Escherichia.s__Escherichia_coli	21.7531322023
+UniRef50_A9H9A8: ATP synthase subunit beta|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0496517541
+UniRef50_A9H9A8: ATP synthase subunit beta|g__Acinetobacter.s__Acinetobacter_baumannii	4.4474109280
+UniRef50_A9H9A8: ATP synthase subunit beta|g__Streptococcus.s__Streptococcus_agalactiae	2.8797129327
+UniRef50_A9H9A8: ATP synthase subunit beta|g__Clostridium.s__Clostridium_beijerinckii	1.6451889313
+UniRef50_A9H9A8: ATP synthase subunit beta|g__Neisseria.s__Neisseria_meningitidis	1.6289491668
+UniRef50_A9H9A8: ATP synthase subunit beta|unclassified	0.1664128542
+UniRef50_Q2FFK2: Ferritin	386.2218143484
+UniRef50_Q2FFK2: Ferritin|g__Staphylococcus.s__Staphylococcus_aureus	386.2218143484
+UniRef50_Q3IUZ2: Heme oxygenase	384.4653741880
+UniRef50_Q3IUZ2: Heme oxygenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	384.4653741880
+UniRef50_P55253: Glucose-1-phosphate thymidylyltransferase	382.6386777166
+UniRef50_P55253: Glucose-1-phosphate thymidylyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	218.9867140571
+UniRef50_P55253: Glucose-1-phosphate thymidylyltransferase|g__Escherichia.s__Escherichia_coli	62.0872248879
+UniRef50_P55253: Glucose-1-phosphate thymidylyltransferase|g__Streptococcus.s__Streptococcus_mutans	43.1714727397
+UniRef50_P55253: Glucose-1-phosphate thymidylyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.4650734567
+UniRef50_P55253: Glucose-1-phosphate thymidylyltransferase|g__Clostridium.s__Clostridium_beijerinckii	14.7566931333
+UniRef50_P55253: Glucose-1-phosphate thymidylyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	7.5208365286
+UniRef50_P55253: Glucose-1-phosphate thymidylyltransferase|unclassified	2.6506629134
+UniRef50_B9KUL3: GCN5-related N-acetyltransferase	380.3270743020
+UniRef50_B9KUL3: GCN5-related N-acetyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	380.3270743020
+UniRef50_Q7WK82: ATP-dependent Clp protease ATP-binding subunit ClpX	379.0744039223
+UniRef50_Q7WK82: ATP-dependent Clp protease ATP-binding subunit ClpX|g__Rhodobacter.s__Rhodobacter_sphaeroides	137.5878225316
+UniRef50_Q7WK82: ATP-dependent Clp protease ATP-binding subunit ClpX|g__Staphylococcus.s__Staphylococcus_epidermidis	95.6647562822
+UniRef50_Q7WK82: ATP-dependent Clp protease ATP-binding subunit ClpX|g__Staphylococcus.s__Staphylococcus_aureus	70.9899948369
+UniRef50_Q7WK82: ATP-dependent Clp protease ATP-binding subunit ClpX|g__Escherichia.s__Escherichia_coli	42.5488670677
+UniRef50_Q7WK82: ATP-dependent Clp protease ATP-binding subunit ClpX|g__Streptococcus.s__Streptococcus_mutans	19.8044001122
+UniRef50_Q7WK82: ATP-dependent Clp protease ATP-binding subunit ClpX|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.5801975624
+UniRef50_Q7WK82: ATP-dependent Clp protease ATP-binding subunit ClpX|g__Clostridium.s__Clostridium_beijerinckii	2.0643371724
+UniRef50_Q7WK82: ATP-dependent Clp protease ATP-binding subunit ClpX|g__Propionibacterium.s__Propionibacterium_acnes	0.8340283570
+UniRef50_P70996	376.9380968318
+UniRef50_P70996|g__Staphylococcus.s__Staphylococcus_epidermidis	237.2735906975
+UniRef50_P70996|g__Staphylococcus.s__Staphylococcus_aureus	139.6645061343
+UniRef50_Q6AL57: Transcription elongation factor GreA	375.0675126733
+UniRef50_Q6AL57: Transcription elongation factor GreA|g__Rhodobacter.s__Rhodobacter_sphaeroides	375.0675126733
+UniRef50_UPI00037E9002: hypothetical protein	374.2733505300
+UniRef50_UPI00037E9002: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	371.2173073712
+UniRef50_UPI00037E9002: hypothetical protein|unclassified	3.0560431588
+UniRef50_A7X3Q8: Serine protease SplB	372.8527947288
+UniRef50_A7X3Q8: Serine protease SplB|g__Staphylococcus.s__Staphylococcus_aureus	372.8527947288
+UniRef50_Q2FFI7: Adenylosuccinate lyase	371.8142350959
+UniRef50_Q2FFI7: Adenylosuccinate lyase|g__Staphylococcus.s__Staphylococcus_aureus	112.9730486910
+UniRef50_Q2FFI7: Adenylosuccinate lyase|g__Staphylococcus.s__Staphylococcus_epidermidis	109.6458066811
+UniRef50_Q2FFI7: Adenylosuccinate lyase|g__Streptococcus.s__Streptococcus_mutans	79.0689563318
+UniRef50_Q2FFI7: Adenylosuccinate lyase|g__Rhodobacter.s__Rhodobacter_sphaeroides	68.0920360610
+UniRef50_Q2FFI7: Adenylosuccinate lyase|g__Deinococcus.s__Deinococcus_radiodurans	1.8319300253
+UniRef50_Q2FFI7: Adenylosuccinate lyase|unclassified	0.2024573057
+UniRef50_U5NN33	369.5697377495
+UniRef50_U5NN33|g__Rhodobacter.s__Rhodobacter_sphaeroides	328.7486314975
+UniRef50_U5NN33|unclassified	40.8211062521
+UniRef50_Q3J222: Prohead peptidase	368.6186314093
+UniRef50_Q3J222: Prohead peptidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	368.6186314093
+UniRef50_B0TC61: 50S ribosomal protein L22	367.4857798205
+UniRef50_B0TC61: 50S ribosomal protein L22|g__Staphylococcus.s__Staphylococcus_aureus	235.9046587475
+UniRef50_B0TC61: 50S ribosomal protein L22|g__Staphylococcus.s__Staphylococcus_epidermidis	131.5811210731
+UniRef50_Q4A047: Imidazole glycerol phosphate synthase subunit HisH	365.4044609328
+UniRef50_Q4A047: Imidazole glycerol phosphate synthase subunit HisH|g__Staphylococcus.s__Staphylococcus_aureus	246.2378550082
+UniRef50_Q4A047: Imidazole glycerol phosphate synthase subunit HisH|g__Staphylococcus.s__Staphylococcus_epidermidis	119.1666059246
+UniRef50_Q7UFS3: GMP synthase [glutamine-hydrolyzing]	364.3149885842
+UniRef50_Q7UFS3: GMP synthase [glutamine-hydrolyzing]|g__Staphylococcus.s__Staphylococcus_epidermidis	104.3226586513
+UniRef50_Q7UFS3: GMP synthase [glutamine-hydrolyzing]|g__Rhodobacter.s__Rhodobacter_sphaeroides	103.3053220115
+UniRef50_Q7UFS3: GMP synthase [glutamine-hydrolyzing]|g__Staphylococcus.s__Staphylococcus_aureus	97.7809872952
+UniRef50_Q7UFS3: GMP synthase [glutamine-hydrolyzing]|g__Streptococcus.s__Streptococcus_mutans	52.8082338413
+UniRef50_Q7UFS3: GMP synthase [glutamine-hydrolyzing]|g__Propionibacterium.s__Propionibacterium_acnes	2.4801416238
+UniRef50_Q7UFS3: GMP synthase [glutamine-hydrolyzing]|g__Clostridium.s__Clostridium_beijerinckii	1.7308527689
+UniRef50_Q7UFS3: GMP synthase [glutamine-hydrolyzing]|g__Streptococcus.s__Streptococcus_agalactiae	1.6132876695
+UniRef50_Q7UFS3: GMP synthase [glutamine-hydrolyzing]|unclassified	0.2735047227
+UniRef50_P08417: Fumarate hydratase, mitochondrial	362.2061083213
+UniRef50_P08417: Fumarate hydratase, mitochondrial|g__Staphylococcus.s__Staphylococcus_epidermidis	135.7973473741
+UniRef50_P08417: Fumarate hydratase, mitochondrial|g__Rhodobacter.s__Rhodobacter_sphaeroides	113.2111607479
+UniRef50_P08417: Fumarate hydratase, mitochondrial|g__Staphylococcus.s__Staphylococcus_aureus	98.5600183132
+UniRef50_P08417: Fumarate hydratase, mitochondrial|g__Acinetobacter.s__Acinetobacter_baumannii	5.8142263689
+UniRef50_P08417: Fumarate hydratase, mitochondrial|g__Propionibacterium.s__Propionibacterium_acnes	4.2025000909
+UniRef50_P08417: Fumarate hydratase, mitochondrial|g__Deinococcus.s__Deinococcus_radiodurans	3.7846804393
+UniRef50_P08417: Fumarate hydratase, mitochondrial|g__Helicobacter.s__Helicobacter_pylori	0.7457121551
+UniRef50_P08417: Fumarate hydratase, mitochondrial|unclassified	0.0904628319
+UniRef50_Q3IUW3	362.0587464698
+UniRef50_Q3IUW3|g__Rhodobacter.s__Rhodobacter_sphaeroides	207.7733247279
+UniRef50_Q3IUW3|unclassified	154.2854217419
+UniRef50_S5XWF4: Transcriptional regulator, MerR family	361.1127581515
+UniRef50_S5XWF4: Transcriptional regulator, MerR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	361.1127581515
+UniRef50_E8SEX9: Staphylococcal secretory antigen SssA	360.3866581964
+UniRef50_E8SEX9: Staphylococcal secretory antigen SssA|g__Staphylococcus.s__Staphylococcus_aureus	252.2194659856
+UniRef50_E8SEX9: Staphylococcal secretory antigen SssA|g__Staphylococcus.s__Staphylococcus_epidermidis	107.6244378624
+UniRef50_E8SEX9: Staphylococcal secretory antigen SssA|unclassified	0.5427543484
+UniRef50_Q8CUF8	360.1663717978
+UniRef50_Q8CUF8|g__Staphylococcus.s__Staphylococcus_epidermidis	360.1663717978
+UniRef50_Q5HJP2: Diacetyl reductase [(S)-acetoin forming]	359.8714735265
+UniRef50_Q5HJP2: Diacetyl reductase [(S)-acetoin forming]|g__Staphylococcus.s__Staphylococcus_aureus	187.2191917221
+UniRef50_Q5HJP2: Diacetyl reductase [(S)-acetoin forming]|g__Staphylococcus.s__Staphylococcus_epidermidis	119.2374524037
+UniRef50_Q5HJP2: Diacetyl reductase [(S)-acetoin forming]|g__Streptococcus.s__Streptococcus_mutans	53.4148294008
+UniRef50_A6U4R9: PTS system glucoside-specific EIICBA component	357.8919864479
+UniRef50_A6U4R9: PTS system glucoside-specific EIICBA component|g__Staphylococcus.s__Staphylococcus_aureus	254.5611343929
+UniRef50_A6U4R9: PTS system glucoside-specific EIICBA component|g__Staphylococcus.s__Staphylococcus_epidermidis	102.7705706441
+UniRef50_A6U4R9: PTS system glucoside-specific EIICBA component|unclassified	0.5602814109
+UniRef50_A6QDY7	355.8909667016
+UniRef50_A6QDY7|g__Staphylococcus.s__Staphylococcus_aureus	354.2586679119
+UniRef50_A6QDY7|unclassified	1.6322987898
+UniRef50_A4SCS1: 50S ribosomal protein L5	355.6984079708
+UniRef50_A4SCS1: 50S ribosomal protein L5|g__Rhodobacter.s__Rhodobacter_sphaeroides	243.1417382634
+UniRef50_A4SCS1: 50S ribosomal protein L5|g__Streptococcus.s__Streptococcus_mutans	85.3543971569
+UniRef50_A4SCS1: 50S ribosomal protein L5|g__Escherichia.s__Escherichia_coli	27.2022725505
+UniRef50_Q5HR00: Protein NrdI	353.4210930744
+UniRef50_Q5HR00: Protein NrdI|g__Staphylococcus.s__Staphylococcus_epidermidis	330.4848228699
+UniRef50_Q5HR00: Protein NrdI|g__Staphylococcus.s__Staphylococcus_aureus	22.9362702046
+UniRef50_Q3HKI1: Possible replication protein C	352.4521498474
+UniRef50_Q3HKI1: Possible replication protein C|g__Rhodobacter.s__Rhodobacter_sphaeroides	343.5108684646
+UniRef50_Q3HKI1: Possible replication protein C|unclassified	8.9412813827
+UniRef50_D3QGG7: Tributyrin esterase	351.3791383801
+UniRef50_D3QGG7: Tributyrin esterase|g__Staphylococcus.s__Staphylococcus_aureus	192.0574053201
+UniRef50_D3QGG7: Tributyrin esterase|g__Staphylococcus.s__Staphylococcus_epidermidis	159.3217330599
+UniRef50_Y2QRV2	350.7299260264
+UniRef50_Y2QRV2|g__Staphylococcus.s__Staphylococcus_epidermidis	350.7299260264
+UniRef50_V6Q9S0	348.9432427126
+UniRef50_V6Q9S0|g__Staphylococcus.s__Staphylococcus_epidermidis	347.4046314168
+UniRef50_V6Q9S0|unclassified	1.5386112958
+UniRef50_A7X2C6: Quinolone resistance protein NorB	344.9899819949
+UniRef50_A7X2C6: Quinolone resistance protein NorB|g__Staphylococcus.s__Staphylococcus_aureus	288.0867082319
+UniRef50_A7X2C6: Quinolone resistance protein NorB|g__Staphylococcus.s__Staphylococcus_epidermidis	55.2187693229
+UniRef50_A7X2C6: Quinolone resistance protein NorB|g__Streptococcus.s__Streptococcus_agalactiae	1.6845044401
+UniRef50_Q126M1: Tryptophan synthase beta chain	344.5993279307
+UniRef50_Q126M1: Tryptophan synthase beta chain|g__Staphylococcus.s__Staphylococcus_epidermidis	93.7829185093
+UniRef50_Q126M1: Tryptophan synthase beta chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	86.6609512237
+UniRef50_Q126M1: Tryptophan synthase beta chain|g__Staphylococcus.s__Staphylococcus_aureus	71.3247698738
+UniRef50_Q126M1: Tryptophan synthase beta chain|g__Streptococcus.s__Streptococcus_mutans	60.5965544902
+UniRef50_Q126M1: Tryptophan synthase beta chain|g__Escherichia.s__Escherichia_coli	27.7358732964
+UniRef50_Q126M1: Tryptophan synthase beta chain|g__Acinetobacter.s__Acinetobacter_baumannii	2.0191366080
+UniRef50_Q126M1: Tryptophan synthase beta chain|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0672358591
+UniRef50_Q126M1: Tryptophan synthase beta chain|g__Propionibacterium.s__Propionibacterium_acnes	0.8298755187
+UniRef50_Q126M1: Tryptophan synthase beta chain|unclassified	0.5820125514
+UniRef50_H6MX85: Peptide methionine sulfoxide reductase MsrA	343.1281639629
+UniRef50_H6MX85: Peptide methionine sulfoxide reductase MsrA|g__Staphylococcus.s__Staphylococcus_epidermidis	194.9736481910
+UniRef50_H6MX85: Peptide methionine sulfoxide reductase MsrA|g__Staphylococcus.s__Staphylococcus_aureus	148.1545157719
+UniRef50_Q3IWX7: Putative phage tail tube protein FII	342.9694139223
+UniRef50_Q3IWX7: Putative phage tail tube protein FII|g__Rhodobacter.s__Rhodobacter_sphaeroides	332.7261553361
+UniRef50_Q3IWX7: Putative phage tail tube protein FII|unclassified	10.2432585862
+UniRef50_Q73WG1: Serine hydroxymethyltransferase	342.9053085187
+UniRef50_Q73WG1: Serine hydroxymethyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	118.8552158918
+UniRef50_Q73WG1: Serine hydroxymethyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	95.6627966582
+UniRef50_Q73WG1: Serine hydroxymethyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.0795681435
+UniRef50_Q73WG1: Serine hydroxymethyltransferase|g__Streptococcus.s__Streptococcus_mutans	34.3467087918
+UniRef50_Q73WG1: Serine hydroxymethyltransferase|g__Escherichia.s__Escherichia_coli	22.2276853765
+UniRef50_Q73WG1: Serine hydroxymethyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.2989258079
+UniRef50_Q73WG1: Serine hydroxymethyltransferase|g__Clostridium.s__Clostridium_beijerinckii	3.6147213395
+UniRef50_Q73WG1: Serine hydroxymethyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	2.5407362295
+UniRef50_Q73WG1: Serine hydroxymethyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3605442177
+UniRef50_Q73WG1: Serine hydroxymethyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	0.9852216749
+UniRef50_Q73WG1: Serine hydroxymethyltransferase|unclassified	0.9331843875
+UniRef50_Q8CMY4: Probable malate:quinone oxidoreductase 4	342.6907132543
+UniRef50_Q8CMY4: Probable malate:quinone oxidoreductase 4|g__Staphylococcus.s__Staphylococcus_epidermidis	259.6411501994
+UniRef50_Q8CMY4: Probable malate:quinone oxidoreductase 4|g__Staphylococcus.s__Staphylococcus_aureus	82.9402811317
+UniRef50_Q8CMY4: Probable malate:quinone oxidoreductase 4|unclassified	0.1092819232
+UniRef50_P13792: Alkaline phosphatase synthesis transcriptional regulatory protein PhoP	339.1132028319
+UniRef50_P13792: Alkaline phosphatase synthesis transcriptional regulatory protein PhoP|g__Staphylococcus.s__Staphylococcus_aureus	168.0831360846
+UniRef50_P13792: Alkaline phosphatase synthesis transcriptional regulatory protein PhoP|g__Staphylococcus.s__Staphylococcus_epidermidis	83.9625116878
+UniRef50_P13792: Alkaline phosphatase synthesis transcriptional regulatory protein PhoP|g__Streptococcus.s__Streptococcus_mutans	83.8903802467
+UniRef50_P13792: Alkaline phosphatase synthesis transcriptional regulatory protein PhoP|g__Streptococcus.s__Streptococcus_agalactiae	3.1771748128
+UniRef50_Q6GIH0: UPF0051 protein SAR0880	338.0537824245
+UniRef50_Q6GIH0: UPF0051 protein SAR0880|g__Streptococcus.s__Streptococcus_mutans	137.9111548970
+UniRef50_Q6GIH0: UPF0051 protein SAR0880|g__Staphylococcus.s__Staphylococcus_epidermidis	109.3278319169
+UniRef50_Q6GIH0: UPF0051 protein SAR0880|g__Staphylococcus.s__Staphylococcus_aureus	84.2256981990
+UniRef50_Q6GIH0: UPF0051 protein SAR0880|g__Clostridium.s__Clostridium_beijerinckii	2.7683546666
+UniRef50_Q6GIH0: UPF0051 protein SAR0880|g__Propionibacterium.s__Propionibacterium_acnes	2.0687354734
+UniRef50_Q6GIH0: UPF0051 protein SAR0880|g__Streptococcus.s__Streptococcus_agalactiae	1.7520072716
+UniRef50_Q49YE0: Putative universal stress protein SSP1056	336.4536310749
+UniRef50_Q49YE0: Putative universal stress protein SSP1056|g__Staphylococcus.s__Staphylococcus_aureus	180.8488675724
+UniRef50_Q49YE0: Putative universal stress protein SSP1056|g__Staphylococcus.s__Staphylococcus_epidermidis	155.6047635026
+UniRef50_Q4L4H7	336.1933562687
+UniRef50_Q4L4H7|g__Staphylococcus.s__Staphylococcus_aureus	204.8335769905
+UniRef50_Q4L4H7|g__Staphylococcus.s__Staphylococcus_epidermidis	121.5937839052
+UniRef50_Q4L4H7|g__Streptococcus.s__Streptococcus_agalactiae	9.7659953730
+UniRef50_Q3HKI7: TraG	333.8959125966
+UniRef50_Q3HKI7: TraG|g__Rhodobacter.s__Rhodobacter_sphaeroides	333.2854199778
+UniRef50_Q3HKI7: TraG|unclassified	0.6104926188
+UniRef50_D6SC38	333.8728808416
+UniRef50_D6SC38|g__Staphylococcus.s__Staphylococcus_aureus	333.8728808416
+UniRef50_A6TWG5: 30S ribosomal protein S5	333.8720290791
+UniRef50_A6TWG5: 30S ribosomal protein S5|g__Streptococcus.s__Streptococcus_mutans	136.4131680968
+UniRef50_A6TWG5: 30S ribosomal protein S5|g__Staphylococcus.s__Staphylococcus_epidermidis	111.1039275771
+UniRef50_A6TWG5: 30S ribosomal protein S5|g__Staphylococcus.s__Staphylococcus_aureus	83.8232878355
+UniRef50_A6TWG5: 30S ribosomal protein S5|g__Clostridium.s__Clostridium_beijerinckii	2.5316455696
+UniRef50_A6U4U8	333.3333333333
+UniRef50_A6U4U8|g__Staphylococcus.s__Staphylococcus_aureus	333.3333333333
+UniRef50_Q81L15: Translation initiation factor IF-3	332.7545390622
+UniRef50_Q81L15: Translation initiation factor IF-3|g__Staphylococcus.s__Staphylococcus_epidermidis	210.1843740151
+UniRef50_Q81L15: Translation initiation factor IF-3|g__Streptococcus.s__Streptococcus_mutans	63.3787039890
+UniRef50_Q81L15: Translation initiation factor IF-3|g__Staphylococcus.s__Staphylococcus_aureus	59.1914610581
+UniRef50_Q04L81: Phosphopentomutase	332.2645260368
+UniRef50_Q04L81: Phosphopentomutase|g__Staphylococcus.s__Staphylococcus_aureus	186.2488510242
+UniRef50_Q04L81: Phosphopentomutase|g__Staphylococcus.s__Staphylococcus_epidermidis	82.6122692611
+UniRef50_Q04L81: Phosphopentomutase|g__Streptococcus.s__Streptococcus_mutans	57.9493494134
+UniRef50_Q04L81: Phosphopentomutase|g__Streptococcus.s__Streptococcus_agalactiae	5.3718296656
+UniRef50_Q04L81: Phosphopentomutase|unclassified	0.0822266726
+UniRef50_Q8CUB7	332.2440903166
+UniRef50_Q8CUB7|g__Staphylococcus.s__Staphylococcus_epidermidis	226.1559003302
+UniRef50_Q8CUB7|g__Staphylococcus.s__Staphylococcus_aureus	105.3718060310
+UniRef50_Q8CUB7|unclassified	0.7163839554
+UniRef50_F0P831: Nitroreductase family protein	332.0121737896
+UniRef50_F0P831: Nitroreductase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	271.3499279504
+UniRef50_F0P831: Nitroreductase family protein|g__Staphylococcus.s__Staphylococcus_aureus	60.6622458392
+UniRef50_C5QYC3	330.9720876616
+UniRef50_C5QYC3|g__Staphylococcus.s__Staphylococcus_epidermidis	330.9720876616
+UniRef50_Q5HRT0: Acetyltransferase, GNAT family	329.6987466403
+UniRef50_Q5HRT0: Acetyltransferase, GNAT family|g__Staphylococcus.s__Staphylococcus_aureus	256.5363292740
+UniRef50_Q5HRT0: Acetyltransferase, GNAT family|g__Staphylococcus.s__Staphylococcus_epidermidis	73.1624173663
+UniRef50_Q4L8R9: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	328.0798240915
+UniRef50_Q4L8R9: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	184.6004520552
+UniRef50_Q4L8R9: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	143.4793720363
+UniRef50_Q5HLV2: Staphylococcal secretory antigen SsaA	327.9593072044
+UniRef50_Q5HLV2: Staphylococcal secretory antigen SsaA|g__Staphylococcus.s__Staphylococcus_epidermidis	180.4182235145
+UniRef50_Q5HLV2: Staphylococcal secretory antigen SsaA|g__Staphylococcus.s__Staphylococcus_aureus	147.5410836899
+UniRef50_Q3IV94	326.8083758202
+UniRef50_Q3IV94|g__Rhodobacter.s__Rhodobacter_sphaeroides	304.3349994245
+UniRef50_Q3IV94|unclassified	22.4733763957
+UniRef50_Q3IUV3: TraH	323.7320307513
+UniRef50_Q3IUV3: TraH|g__Rhodobacter.s__Rhodobacter_sphaeroides	321.7684988253
+UniRef50_Q3IUV3: TraH|unclassified	1.9635319260
+UniRef50_B7HEC5: SsrA-binding protein	323.7023902202
+UniRef50_B7HEC5: SsrA-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	231.1300578470
+UniRef50_B7HEC5: SsrA-binding protein|g__Streptococcus.s__Streptococcus_mutans	45.0996965511
+UniRef50_B7HEC5: SsrA-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	32.7667534691
+UniRef50_B7HEC5: SsrA-binding protein|g__Clostridium.s__Clostridium_beijerinckii	14.7058823529
+UniRef50_P38021: Ornithine aminotransferase	320.9379847663
+UniRef50_P38021: Ornithine aminotransferase|g__Staphylococcus.s__Staphylococcus_aureus	189.6716122105
+UniRef50_P38021: Ornithine aminotransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	131.1439462060
+UniRef50_P38021: Ornithine aminotransferase|unclassified	0.1224263498
+UniRef50_Q2FV54: O-acetyltransferase OatA	319.7476132536
+UniRef50_Q2FV54: O-acetyltransferase OatA|g__Staphylococcus.s__Staphylococcus_aureus	181.0728693566
+UniRef50_Q2FV54: O-acetyltransferase OatA|g__Staphylococcus.s__Staphylococcus_epidermidis	138.2831768862
+UniRef50_Q2FV54: O-acetyltransferase OatA|unclassified	0.3915670108
+UniRef50_P55393: Putative replication protein A	316.7824846821
+UniRef50_P55393: Putative replication protein A|g__Rhodobacter.s__Rhodobacter_sphaeroides	316.7824846821
+UniRef50_B9KX88	316.5806210649
+UniRef50_B9KX88|g__Rhodobacter.s__Rhodobacter_sphaeroides	312.6294231787
+UniRef50_B9KX88|unclassified	3.9511978861
+UniRef50_D3DJ42: 2-oxoglutarate carboxylase small subunit	316.1208066697
+UniRef50_D3DJ42: 2-oxoglutarate carboxylase small subunit|g__Staphylococcus.s__Staphylococcus_aureus	96.6446938718
+UniRef50_D3DJ42: 2-oxoglutarate carboxylase small subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	88.9850060064
+UniRef50_D3DJ42: 2-oxoglutarate carboxylase small subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	69.7638641249
+UniRef50_D3DJ42: 2-oxoglutarate carboxylase small subunit|g__Streptococcus.s__Streptococcus_mutans	47.4112683861
+UniRef50_D3DJ42: 2-oxoglutarate carboxylase small subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.6434942022
+UniRef50_D3DJ42: 2-oxoglutarate carboxylase small subunit|g__Clostridium.s__Clostridium_beijerinckii	2.4710069495
+UniRef50_D3DJ42: 2-oxoglutarate carboxylase small subunit|unclassified	0.2014731287
+UniRef50_P37469: Replicative DNA helicase	315.9563130493
+UniRef50_P37469: Replicative DNA helicase|g__Staphylococcus.s__Staphylococcus_aureus	150.8769889577
+UniRef50_P37469: Replicative DNA helicase|g__Staphylococcus.s__Staphylococcus_epidermidis	103.6047403069
+UniRef50_P37469: Replicative DNA helicase|g__Streptococcus.s__Streptococcus_mutans	56.0246693591
+UniRef50_P37469: Replicative DNA helicase|g__Streptococcus.s__Streptococcus_agalactiae	5.4499144257
+UniRef50_B9KL54: Tripartite ATP-independent periplasmic transporter, DctQ component	313.9945644576
+UniRef50_B9KL54: Tripartite ATP-independent periplasmic transporter, DctQ component|g__Rhodobacter.s__Rhodobacter_sphaeroides	307.8118223024
+UniRef50_B9KL54: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	6.1827421553
+UniRef50_E8SJR1	312.5238671125
+UniRef50_E8SJR1|g__Staphylococcus.s__Staphylococcus_epidermidis	231.3553258536
+UniRef50_E8SJR1|g__Staphylococcus.s__Staphylococcus_aureus	81.1685412589
+UniRef50_Q033L0: tRNA modification GTPase MnmE	312.3962734947
+UniRef50_Q033L0: tRNA modification GTPase MnmE|g__Staphylococcus.s__Staphylococcus_aureus	130.2818351129
+UniRef50_Q033L0: tRNA modification GTPase MnmE|g__Staphylococcus.s__Staphylococcus_epidermidis	116.8019239890
+UniRef50_Q033L0: tRNA modification GTPase MnmE|g__Streptococcus.s__Streptococcus_mutans	61.2790008905
+UniRef50_Q033L0: tRNA modification GTPase MnmE|g__Streptococcus.s__Streptococcus_agalactiae	4.0335135023
+UniRef50_Q3IUW0: TraW	312.2818852366
+UniRef50_Q3IUW0: TraW|g__Rhodobacter.s__Rhodobacter_sphaeroides	283.7118627133
+UniRef50_Q3IUW0: TraW|unclassified	28.5700225233
+UniRef50_Q04F01: Adenine phosphoribosyltransferase	311.5352076926
+UniRef50_Q04F01: Adenine phosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	146.3428059560
+UniRef50_Q04F01: Adenine phosphoribosyltransferase|g__Streptococcus.s__Streptococcus_mutans	96.0950374786
+UniRef50_Q04F01: Adenine phosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	68.8865661159
+UniRef50_Q04F01: Adenine phosphoribosyltransferase|unclassified	0.2107981421
+UniRef50_A5VI99: Cysteine--tRNA ligase	310.9630293473
+UniRef50_A5VI99: Cysteine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	129.3785509380
+UniRef50_A5VI99: Cysteine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	100.3270199529
+UniRef50_A5VI99: Cysteine--tRNA ligase|g__Streptococcus.s__Streptococcus_mutans	78.2960629908
+UniRef50_A5VI99: Cysteine--tRNA ligase|g__Streptococcus.s__Streptococcus_agalactiae	1.6090814263
+UniRef50_A5VI99: Cysteine--tRNA ligase|g__Clostridium.s__Clostridium_beijerinckii	1.1337868481
+UniRef50_A5VI99: Cysteine--tRNA ligase|unclassified	0.2185271912
+UniRef50_P22344	310.7712933690
+UniRef50_P22344|g__Methanobrevibacter.s__Methanobrevibacter_smithii	310.7712933690
+UniRef50_P19480: Alkyl hydroperoxide reductase subunit F	309.5468291250
+UniRef50_P19480: Alkyl hydroperoxide reductase subunit F|g__Staphylococcus.s__Staphylococcus_aureus	121.3495459793
+UniRef50_P19480: Alkyl hydroperoxide reductase subunit F|g__Staphylococcus.s__Staphylococcus_epidermidis	106.0860094304
+UniRef50_P19480: Alkyl hydroperoxide reductase subunit F|g__Streptococcus.s__Streptococcus_mutans	49.5560786829
+UniRef50_P19480: Alkyl hydroperoxide reductase subunit F|g__Escherichia.s__Escherichia_coli	24.7019662987
+UniRef50_P19480: Alkyl hydroperoxide reductase subunit F|g__Acinetobacter.s__Acinetobacter_baumannii	1.7910845041
+UniRef50_P19480: Alkyl hydroperoxide reductase subunit F|g__Streptococcus.s__Streptococcus_agalactiae	1.6866099209
+UniRef50_P19480: Alkyl hydroperoxide reductase subunit F|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6781826414
+UniRef50_P19480: Alkyl hydroperoxide reductase subunit F|unclassified	0.9994364420
+UniRef50_P19480: Alkyl hydroperoxide reductase subunit F|g__Propionibacterium.s__Propionibacterium_acnes	0.8561643836
+UniRef50_P19480: Alkyl hydroperoxide reductase subunit F|g__Clostridium.s__Clostridium_beijerinckii	0.8417508418
+UniRef50_B7UNN6: ATP-dependent 6-phosphofructokinase isozyme 1	309.0067435300
+UniRef50_B7UNN6: ATP-dependent 6-phosphofructokinase isozyme 1|g__Staphylococcus.s__Staphylococcus_aureus	128.9679113423
+UniRef50_B7UNN6: ATP-dependent 6-phosphofructokinase isozyme 1|g__Staphylococcus.s__Staphylococcus_epidermidis	123.5590123909
+UniRef50_B7UNN6: ATP-dependent 6-phosphofructokinase isozyme 1|g__Escherichia.s__Escherichia_coli	41.9122755200
+UniRef50_B7UNN6: ATP-dependent 6-phosphofructokinase isozyme 1|g__Streptococcus.s__Streptococcus_agalactiae	7.8280929486
+UniRef50_B7UNN6: ATP-dependent 6-phosphofructokinase isozyme 1|g__Clostridium.s__Clostridium_beijerinckii	6.3787465745
+UniRef50_B7UNN6: ATP-dependent 6-phosphofructokinase isozyme 1|unclassified	0.3607047537
+UniRef50_A5IUD2: ATP-dependent Clp protease proteolytic subunit	308.0969235182
+UniRef50_A5IUD2: ATP-dependent Clp protease proteolytic subunit|g__Staphylococcus.s__Staphylococcus_aureus	308.0969235182
+UniRef50_E6SMQ6: L-glutamate ABC transporter ATP-binding proteinL-aspartate ABC transporter ATP-binding proteinneutral amino acid ABC transporter ATP-binding protein	307.8619049955
+UniRef50_E6SMQ6: L-glutamate ABC transporter ATP-binding proteinL-aspartate ABC transporter ATP-binding proteinneutral amino acid ABC transporter ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	112.9420679568
+UniRef50_E6SMQ6: L-glutamate ABC transporter ATP-binding proteinL-aspartate ABC transporter ATP-binding proteinneutral amino acid ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	106.2888161943
+UniRef50_E6SMQ6: L-glutamate ABC transporter ATP-binding proteinL-aspartate ABC transporter ATP-binding proteinneutral amino acid ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	69.9915156123
+UniRef50_E6SMQ6: L-glutamate ABC transporter ATP-binding proteinL-aspartate ABC transporter ATP-binding proteinneutral amino acid ABC transporter ATP-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.4430738172
+UniRef50_E6SMQ6: L-glutamate ABC transporter ATP-binding proteinL-aspartate ABC transporter ATP-binding proteinneutral amino acid ABC transporter ATP-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	7.1964314150
+UniRef50_Q3IV20	307.5336113741
+UniRef50_Q3IV20|g__Rhodobacter.s__Rhodobacter_sphaeroides	281.8112839366
+UniRef50_Q3IV20|unclassified	25.7223274376
+UniRef50_Q839Y4: Adenylosuccinate synthetase	306.8309341269
+UniRef50_Q839Y4: Adenylosuccinate synthetase|g__Staphylococcus.s__Staphylococcus_aureus	151.0863629548
+UniRef50_Q839Y4: Adenylosuccinate synthetase|g__Staphylococcus.s__Staphylococcus_epidermidis	87.9921649443
+UniRef50_Q839Y4: Adenylosuccinate synthetase|g__Streptococcus.s__Streptococcus_mutans	57.2876859834
+UniRef50_Q839Y4: Adenylosuccinate synthetase|g__Streptococcus.s__Streptococcus_agalactiae	6.6972902883
+UniRef50_Q839Y4: Adenylosuccinate synthetase|g__Clostridium.s__Clostridium_beijerinckii	3.5080422752
+UniRef50_Q839Y4: Adenylosuccinate synthetase|unclassified	0.2593876809
+UniRef50_G2JZ44: Carnitine transport ATP-binding protein OpuCA	306.6693008460
+UniRef50_G2JZ44: Carnitine transport ATP-binding protein OpuCA|g__Staphylococcus.s__Staphylococcus_epidermidis	196.0295574704
+UniRef50_G2JZ44: Carnitine transport ATP-binding protein OpuCA|g__Staphylococcus.s__Staphylococcus_aureus	107.1335698945
+UniRef50_G2JZ44: Carnitine transport ATP-binding protein OpuCA|g__Streptococcus.s__Streptococcus_agalactiae	3.0518646107
+UniRef50_G2JZ44: Carnitine transport ATP-binding protein OpuCA|unclassified	0.4543088703
+UniRef50_Q99YM5: Guanylate kinase	306.3382290901
+UniRef50_Q99YM5: Guanylate kinase|g__Staphylococcus.s__Staphylococcus_aureus	132.1982331556
+UniRef50_Q99YM5: Guanylate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	130.1372789472
+UniRef50_Q99YM5: Guanylate kinase|g__Streptococcus.s__Streptococcus_mutans	44.0027169874
+UniRef50_P0AEH3: Protein ElaA	306.2523651752
+UniRef50_P0AEH3: Protein ElaA|g__Pseudomonas.s__Pseudomonas_aeruginosa	292.0410302486
+UniRef50_P0AEH3: Protein ElaA|g__Escherichia.s__Escherichia_coli	14.2113349266
+UniRef50_Q59966: Cysteine synthase, plasmid	305.5980755001
+UniRef50_Q59966: Cysteine synthase, plasmid|g__Staphylococcus.s__Staphylococcus_aureus	131.1701672328
+UniRef50_Q59966: Cysteine synthase, plasmid|g__Staphylococcus.s__Staphylococcus_epidermidis	119.6381923168
+UniRef50_Q59966: Cysteine synthase, plasmid|g__Escherichia.s__Escherichia_coli	28.8693655462
+UniRef50_Q59966: Cysteine synthase, plasmid|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.9203504042
+UniRef50_Q8CUB4	305.4370573366
+UniRef50_Q8CUB4|g__Staphylococcus.s__Staphylococcus_epidermidis	165.2303837085
+UniRef50_Q8CUB4|g__Staphylococcus.s__Staphylococcus_aureus	132.7527314912
+UniRef50_Q8CUB4|unclassified	7.4539421369
+UniRef50_Q9RU74: Ketol-acid reductoisomerase	305.2080612625
+UniRef50_Q9RU74: Ketol-acid reductoisomerase|g__Staphylococcus.s__Staphylococcus_epidermidis	108.7001675483
+UniRef50_Q9RU74: Ketol-acid reductoisomerase|g__Staphylococcus.s__Staphylococcus_aureus	104.2420455183
+UniRef50_Q9RU74: Ketol-acid reductoisomerase|g__Streptococcus.s__Streptococcus_mutans	47.3639369021
+UniRef50_Q9RU74: Ketol-acid reductoisomerase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	42.2055144559
+UniRef50_Q9RU74: Ketol-acid reductoisomerase|g__Deinococcus.s__Deinococcus_radiodurans	1.5197568389
+UniRef50_Q9RU74: Ketol-acid reductoisomerase|g__Clostridium.s__Clostridium_beijerinckii	0.9970089731
+UniRef50_Q9RU74: Ketol-acid reductoisomerase|unclassified	0.1796310260
+UniRef50_B4U449: MutT/nudix family protein	304.5967902498
+UniRef50_B4U449: MutT/nudix family protein|g__Streptococcus.s__Streptococcus_mutans	304.5967902498
+UniRef50_C5N2Z6: LPXTG-motif cell wall anchor domain protein (Fragment)	303.0364769557
+UniRef50_C5N2Z6: LPXTG-motif cell wall anchor domain protein (Fragment)|g__Staphylococcus.s__Staphylococcus_aureus	303.0364769557
+UniRef50_P39357	300.5674162803
+UniRef50_P39357|g__Staphylococcus.s__Staphylococcus_aureus	150.8725981144
+UniRef50_P39357|g__Staphylococcus.s__Staphylococcus_epidermidis	94.6800402821
+UniRef50_P39357|g__Escherichia.s__Escherichia_coli	54.9478676709
+UniRef50_P39357|unclassified	0.0669102129
+UniRef50_Q6ADC9: 50S ribosomal protein L20	299.8945775824
+UniRef50_Q6ADC9: 50S ribosomal protein L20|g__Staphylococcus.s__Staphylococcus_aureus	201.7611093682
+UniRef50_Q6ADC9: 50S ribosomal protein L20|g__Streptococcus.s__Streptococcus_mutans	48.8663515090
+UniRef50_Q6ADC9: 50S ribosomal protein L20|g__Staphylococcus.s__Staphylococcus_epidermidis	38.0311616490
+UniRef50_Q6ADC9: 50S ribosomal protein L20|g__Streptococcus.s__Streptococcus_agalactiae	11.2359550562
+UniRef50_Q8CUD7	298.4425257198
+UniRef50_Q8CUD7|g__Staphylococcus.s__Staphylococcus_epidermidis	172.4396591344
+UniRef50_Q8CUD7|g__Staphylococcus.s__Staphylococcus_aureus	126.0028665854
+UniRef50_Q3IUY8: Response regulator receiver protein	297.7908515128
+UniRef50_Q3IUY8: Response regulator receiver protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	297.7908515128
+UniRef50_O80448: Pyridoxal biosynthesis protein PDX1.1	294.5056937698
+UniRef50_O80448: Pyridoxal biosynthesis protein PDX1.1|g__Staphylococcus.s__Staphylococcus_aureus	183.6274802693
+UniRef50_O80448: Pyridoxal biosynthesis protein PDX1.1|g__Staphylococcus.s__Staphylococcus_epidermidis	83.5784189194
+UniRef50_O80448: Pyridoxal biosynthesis protein PDX1.1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.2667681567
+UniRef50_O80448: Pyridoxal biosynthesis protein PDX1.1|g__Clostridium.s__Clostridium_beijerinckii	2.8252359362
+UniRef50_O80448: Pyridoxal biosynthesis protein PDX1.1|unclassified	0.2077904881
+UniRef50_P55189: Putative sulfate transporter YbaR	293.7317616093
+UniRef50_P55189: Putative sulfate transporter YbaR|g__Rhodobacter.s__Rhodobacter_sphaeroides	282.9422340156
+UniRef50_P55189: Putative sulfate transporter YbaR|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.7895275937
+UniRef50_Q9F4G3: HTH-type transcriptional regulator TcaR	293.6835405240
+UniRef50_Q9F4G3: HTH-type transcriptional regulator TcaR|g__Staphylococcus.s__Staphylococcus_aureus	204.1362066064
+UniRef50_Q9F4G3: HTH-type transcriptional regulator TcaR|g__Staphylococcus.s__Staphylococcus_epidermidis	89.5473339176
+UniRef50_Q831A8: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 2	293.0547523466
+UniRef50_Q831A8: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 2|g__Staphylococcus.s__Staphylococcus_epidermidis	125.2608890951
+UniRef50_Q831A8: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 2|g__Staphylococcus.s__Staphylococcus_aureus	91.4578322439
+UniRef50_Q831A8: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 2|g__Streptococcus.s__Streptococcus_mutans	63.8284257490
+UniRef50_Q831A8: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 2|g__Clostridium.s__Clostridium_beijerinckii	5.8033890657
+UniRef50_Q831A8: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 2|g__Streptococcus.s__Streptococcus_agalactiae	4.0040963965
+UniRef50_Q831A8: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.5553852726
+UniRef50_Q831A8: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 2|unclassified	0.1447345238
+UniRef50_S5KBE3: Amidohydrolase	293.0523900839
+UniRef50_S5KBE3: Amidohydrolase|g__Staphylococcus.s__Staphylococcus_epidermidis	148.7077195081
+UniRef50_S5KBE3: Amidohydrolase|g__Staphylococcus.s__Staphylococcus_aureus	141.8419906402
+UniRef50_S5KBE3: Amidohydrolase|g__Streptococcus.s__Streptococcus_agalactiae	2.5026799355
+UniRef50_Q3IUU7: DNA-directed RNA polymerase specialized sigma subunit, sigma24	293.0194656961
+UniRef50_Q3IUU7: DNA-directed RNA polymerase specialized sigma subunit, sigma24|g__Rhodobacter.s__Rhodobacter_sphaeroides	293.0194656961
+UniRef50_Q18JB5: Formate--tetrahydrofolate ligase	292.9516488042
+UniRef50_Q18JB5: Formate--tetrahydrofolate ligase|g__Staphylococcus.s__Staphylococcus_aureus	111.0775860417
+UniRef50_Q18JB5: Formate--tetrahydrofolate ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	94.0988220013
+UniRef50_Q18JB5: Formate--tetrahydrofolate ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.2819313198
+UniRef50_Q18JB5: Formate--tetrahydrofolate ligase|g__Streptococcus.s__Streptococcus_mutans	25.7084860555
+UniRef50_Q18JB5: Formate--tetrahydrofolate ligase|g__Clostridium.s__Clostridium_beijerinckii	8.6074299429
+UniRef50_Q18JB5: Formate--tetrahydrofolate ligase|g__Streptococcus.s__Streptococcus_agalactiae	4.4858366126
+UniRef50_Q18JB5: Formate--tetrahydrofolate ligase|g__Neisseria.s__Neisseria_meningitidis	0.5973715651
+UniRef50_Q18JB5: Formate--tetrahydrofolate ligase|unclassified	0.0941852652
+UniRef50_Q6GGI4: UPF0403 protein SAR1592	292.8968601521
+UniRef50_Q6GGI4: UPF0403 protein SAR1592|g__Staphylococcus.s__Staphylococcus_aureus	242.9593956918
+UniRef50_Q6GGI4: UPF0403 protein SAR1592|g__Staphylococcus.s__Staphylococcus_epidermidis	49.9374644603
+UniRef50_Y4SN89	291.9186006659
+UniRef50_Y4SN89|g__Escherichia.s__Escherichia_coli	291.9186006659
+UniRef50_Q8XXC7: Uracil phosphoribosyltransferase	291.8605873333
+UniRef50_Q8XXC7: Uracil phosphoribosyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	144.9427033972
+UniRef50_Q8XXC7: Uracil phosphoribosyltransferase|g__Streptococcus.s__Streptococcus_mutans	130.5803192065
+UniRef50_Q8XXC7: Uracil phosphoribosyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3744197372
+UniRef50_Q8XXC7: Uracil phosphoribosyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.7175831226
+UniRef50_Q8XXC7: Uracil phosphoribosyltransferase|g__Clostridium.s__Clostridium_beijerinckii	1.5898251192
+UniRef50_Q8XXC7: Uracil phosphoribosyltransferase|unclassified	0.6557367505
+UniRef50_Q8L7B5: Chaperonin CPN60-like 1, mitochondrial	291.6597807139
+UniRef50_Q8L7B5: Chaperonin CPN60-like 1, mitochondrial|g__Staphylococcus.s__Staphylococcus_aureus	121.0557405993
+UniRef50_Q8L7B5: Chaperonin CPN60-like 1, mitochondrial|g__Staphylococcus.s__Staphylococcus_epidermidis	109.4113364110
+UniRef50_Q8L7B5: Chaperonin CPN60-like 1, mitochondrial|g__Streptococcus.s__Streptococcus_mutans	57.7009866976
+UniRef50_Q8L7B5: Chaperonin CPN60-like 1, mitochondrial|g__Neisseria.s__Neisseria_meningitidis	2.1376747555
+UniRef50_Q8L7B5: Chaperonin CPN60-like 1, mitochondrial|g__Deinococcus.s__Deinococcus_radiodurans	0.7363770250
+UniRef50_Q8L7B5: Chaperonin CPN60-like 1, mitochondrial|g__Helicobacter.s__Helicobacter_pylori	0.6176652254
+UniRef50_Q2J878: CTP synthase	291.6161117711
+UniRef50_Q2J878: CTP synthase|g__Staphylococcus.s__Staphylococcus_aureus	116.2131334777
+UniRef50_Q2J878: CTP synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	97.4194180263
+UniRef50_Q2J878: CTP synthase|g__Streptococcus.s__Streptococcus_mutans	49.1405117302
+UniRef50_Q2J878: CTP synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.3752524105
+UniRef50_Q2J878: CTP synthase|g__Streptococcus.s__Streptococcus_agalactiae	2.3879649381
+UniRef50_Q2J878: CTP synthase|g__Propionibacterium.s__Propionibacterium_acnes	2.0120921916
+UniRef50_Q2J878: CTP synthase|unclassified	0.0677389966
+UniRef50_Q3IUV7: TraN	291.5277641036
+UniRef50_Q3IUV7: TraN|g__Rhodobacter.s__Rhodobacter_sphaeroides	290.7813386882
+UniRef50_Q3IUV7: TraN|unclassified	0.7464254153
+UniRef50_H3VA73: PF03904 domain protein	291.3327174906
+UniRef50_H3VA73: PF03904 domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	239.3587694813
+UniRef50_H3VA73: PF03904 domain protein|unclassified	51.9739480093
+UniRef50_Q2G1Q1	291.2262718553
+UniRef50_Q2G1Q1|g__Staphylococcus.s__Staphylococcus_aureus	291.2262718553
+UniRef50_Q8DSX2: Bifunctional protein GlmU	290.3221623646
+UniRef50_Q8DSX2: Bifunctional protein GlmU|g__Staphylococcus.s__Staphylococcus_aureus	127.3597980770
+UniRef50_Q8DSX2: Bifunctional protein GlmU|g__Staphylococcus.s__Staphylococcus_epidermidis	98.3742308919
+UniRef50_Q8DSX2: Bifunctional protein GlmU|g__Streptococcus.s__Streptococcus_mutans	57.1035002701
+UniRef50_Q8DSX2: Bifunctional protein GlmU|g__Clostridium.s__Clostridium_beijerinckii	5.7741647446
+UniRef50_Q8DSX2: Bifunctional protein GlmU|g__Streptococcus.s__Streptococcus_agalactiae	1.7104683810
+UniRef50_Q2FDT8: Probable transglycosylase IsaA	290.0014464026
+UniRef50_Q2FDT8: Probable transglycosylase IsaA|g__Staphylococcus.s__Staphylococcus_aureus	202.4470178756
+UniRef50_Q2FDT8: Probable transglycosylase IsaA|g__Staphylococcus.s__Staphylococcus_epidermidis	87.5544285270
+UniRef50_E8SKB9: Integral membrane protein	289.6190759397
+UniRef50_E8SKB9: Integral membrane protein|g__Staphylococcus.s__Staphylococcus_epidermidis	218.3796564871
+UniRef50_E8SKB9: Integral membrane protein|g__Staphylococcus.s__Staphylococcus_aureus	71.2394194526
+UniRef50_P62087	289.0075463109
+UniRef50_P62087|g__Staphylococcus.s__Staphylococcus_epidermidis	197.7538514412
+UniRef50_P62087|g__Staphylococcus.s__Staphylococcus_aureus	91.2536948697
+UniRef50_M9RA73	288.9851158125
+UniRef50_M9RA73|g__Rhodobacter.s__Rhodobacter_sphaeroides	288.9851158125
+UniRef50_Q30TV4: 50S ribosomal protein L14	288.4124379848
+UniRef50_Q30TV4: 50S ribosomal protein L14|g__Streptococcus.s__Streptococcus_mutans	210.8770501461
+UniRef50_Q30TV4: 50S ribosomal protein L14|g__Rhodobacter.s__Rhodobacter_sphaeroides	74.8031474015
+UniRef50_Q30TV4: 50S ribosomal protein L14|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7322404372
+UniRef50_Q2YXL5: ATP-dependent protease subunit HslV	287.8909688900
+UniRef50_Q2YXL5: ATP-dependent protease subunit HslV|g__Staphylococcus.s__Staphylococcus_aureus	154.6666140544
+UniRef50_Q2YXL5: ATP-dependent protease subunit HslV|g__Staphylococcus.s__Staphylococcus_epidermidis	133.2243548356
+UniRef50_A3PS89: Alpha/beta hydrolase fold	287.7960764361
+UniRef50_A3PS89: Alpha/beta hydrolase fold|g__Rhodobacter.s__Rhodobacter_sphaeroides	287.7960764361
+UniRef50_T2K100: CadX	287.6512736519
+UniRef50_T2K100: CadX|g__Staphylococcus.s__Staphylococcus_aureus	280.8874265856
+UniRef50_T2K100: CadX|g__Staphylococcus.s__Staphylococcus_epidermidis	6.7638470663
+UniRef50_D3HCJ2: 2-isopropylmalate synthase	287.2511428768
+UniRef50_D3HCJ2: 2-isopropylmalate synthase|g__Staphylococcus.s__Staphylococcus_aureus	111.0904848807
+UniRef50_D3HCJ2: 2-isopropylmalate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	108.8896117010
+UniRef50_D3HCJ2: 2-isopropylmalate synthase|g__Streptococcus.s__Streptococcus_mutans	66.5380579456
+UniRef50_D3HCJ2: 2-isopropylmalate synthase|unclassified	0.7329883494
+UniRef50_Q8CTK1	286.9208110928
+UniRef50_Q8CTK1|g__Staphylococcus.s__Staphylococcus_epidermidis	167.5960135430
+UniRef50_Q8CTK1|g__Staphylococcus.s__Staphylococcus_aureus	119.3247975498
+UniRef50_Q5HR58: Decarboxylase family protein	285.9868716235
+UniRef50_Q5HR58: Decarboxylase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	156.3170522686
+UniRef50_Q5HR58: Decarboxylase family protein|g__Staphylococcus.s__Staphylococcus_aureus	129.1125668130
+UniRef50_Q5HR58: Decarboxylase family protein|unclassified	0.5572525419
+UniRef50_Q71YN8: Peptidase T	285.5768853586
+UniRef50_Q71YN8: Peptidase T|g__Staphylococcus.s__Staphylococcus_aureus	108.4946319653
+UniRef50_Q71YN8: Peptidase T|g__Staphylococcus.s__Staphylococcus_epidermidis	99.2285514330
+UniRef50_Q71YN8: Peptidase T|g__Streptococcus.s__Streptococcus_mutans	58.7828155376
+UniRef50_Q71YN8: Peptidase T|g__Escherichia.s__Escherichia_coli	14.0889254561
+UniRef50_Q71YN8: Peptidase T|g__Clostridium.s__Clostridium_beijerinckii	2.5326733118
+UniRef50_Q71YN8: Peptidase T|g__Streptococcus.s__Streptococcus_agalactiae	2.2611788618
+UniRef50_Q71YN8: Peptidase T|unclassified	0.1881087928
+UniRef50_W7NL02	284.9863745533
+UniRef50_W7NL02|g__Staphylococcus.s__Staphylococcus_aureus	283.3333333333
+UniRef50_W7NL02|unclassified	1.6530412199
+UniRef50_T1ZLX4: Transaldolase	284.8151062416
+UniRef50_T1ZLX4: Transaldolase|g__Staphylococcus.s__Staphylococcus_aureus	147.5133878551
+UniRef50_T1ZLX4: Transaldolase|g__Staphylococcus.s__Staphylococcus_epidermidis	137.3017183865
+UniRef50_P37464: Serine--tRNA ligase	284.5254176367
+UniRef50_P37464: Serine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	119.1680457616
+UniRef50_P37464: Serine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	96.9345064856
+UniRef50_P37464: Serine--tRNA ligase|g__Streptococcus.s__Streptococcus_mutans	64.1708280676
+UniRef50_P37464: Serine--tRNA ligase|g__Streptococcus.s__Streptococcus_agalactiae	2.9241380038
+UniRef50_P37464: Serine--tRNA ligase|unclassified	1.3278993180
+UniRef50_O34742: Glycine betaine/carnitine/choline transport system permease protein OpuCD	284.0412612986
+UniRef50_O34742: Glycine betaine/carnitine/choline transport system permease protein OpuCD|g__Staphylococcus.s__Staphylococcus_epidermidis	127.5231677770
+UniRef50_O34742: Glycine betaine/carnitine/choline transport system permease protein OpuCD|g__Staphylococcus.s__Staphylococcus_aureus	100.0545365061
+UniRef50_O34742: Glycine betaine/carnitine/choline transport system permease protein OpuCD|g__Streptococcus.s__Streptococcus_mutans	50.1742488395
+UniRef50_O34742: Glycine betaine/carnitine/choline transport system permease protein OpuCD|g__Streptococcus.s__Streptococcus_agalactiae	6.2893081761
+UniRef50_B4U3I6: Phosphoglucosamine mutase	283.9323791794
+UniRef50_B4U3I6: Phosphoglucosamine mutase|g__Staphylococcus.s__Staphylococcus_aureus	140.6025318621
+UniRef50_B4U3I6: Phosphoglucosamine mutase|g__Staphylococcus.s__Staphylococcus_epidermidis	88.3105174375
+UniRef50_B4U3I6: Phosphoglucosamine mutase|g__Streptococcus.s__Streptococcus_mutans	52.9568594815
+UniRef50_B4U3I6: Phosphoglucosamine mutase|g__Streptococcus.s__Streptococcus_agalactiae	1.9926031554
+UniRef50_B4U3I6: Phosphoglucosamine mutase|unclassified	0.0698672430
+UniRef50_W6EGR2	283.6776025879
+UniRef50_W6EGR2|g__Staphylococcus.s__Staphylococcus_aureus	217.2862789526
+UniRef50_W6EGR2|unclassified	66.3913236353
+UniRef50_A3PS72	283.5054451053
+UniRef50_A3PS72|g__Rhodobacter.s__Rhodobacter_sphaeroides	196.3631386380
+UniRef50_A3PS72|unclassified	87.1423064673
+UniRef50_O35008: Putative protein YtqA	281.0516320810
+UniRef50_O35008: Putative protein YtqA|g__Staphylococcus.s__Staphylococcus_epidermidis	128.4057492548
+UniRef50_O35008: Putative protein YtqA|g__Staphylococcus.s__Staphylococcus_aureus	87.0540716709
+UniRef50_O35008: Putative protein YtqA|g__Streptococcus.s__Streptococcus_mutans	63.3164320764
+UniRef50_O35008: Putative protein YtqA|g__Clostridium.s__Clostridium_beijerinckii	2.2753790789
+UniRef50_P46331	279.6161746847
+UniRef50_P46331|g__Staphylococcus.s__Staphylococcus_aureus	205.5884844377
+UniRef50_P46331|g__Staphylococcus.s__Staphylococcus_epidermidis	74.0276902470
+UniRef50_Q6AFK7: 3-isopropylmalate dehydratase large subunit	279.6032011781
+UniRef50_Q6AFK7: 3-isopropylmalate dehydratase large subunit|g__Staphylococcus.s__Staphylococcus_aureus	128.7768598207
+UniRef50_Q6AFK7: 3-isopropylmalate dehydratase large subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	76.6490668042
+UniRef50_Q6AFK7: 3-isopropylmalate dehydratase large subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	68.6151386270
+UniRef50_Q6AFK7: 3-isopropylmalate dehydratase large subunit|g__Neisseria.s__Neisseria_meningitidis	4.0529291462
+UniRef50_Q6AFK7: 3-isopropylmalate dehydratase large subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9425070688
+UniRef50_Q6AFK7: 3-isopropylmalate dehydratase large subunit|unclassified	0.5666997112
+UniRef50_Q8CMQ4: NADPH-dependent oxidoreductase	279.3592900133
+UniRef50_Q8CMQ4: NADPH-dependent oxidoreductase|g__Staphylococcus.s__Staphylococcus_aureus	185.0137370771
+UniRef50_Q8CMQ4: NADPH-dependent oxidoreductase|g__Staphylococcus.s__Staphylococcus_epidermidis	94.3455529362
+UniRef50_A1SEI7: 50S ribosomal protein L1	277.7480976419
+UniRef50_A1SEI7: 50S ribosomal protein L1|g__Staphylococcus.s__Staphylococcus_aureus	149.1965640618
+UniRef50_A1SEI7: 50S ribosomal protein L1|g__Staphylococcus.s__Staphylococcus_epidermidis	84.7126941178
+UniRef50_A1SEI7: 50S ribosomal protein L1|g__Streptococcus.s__Streptococcus_mutans	41.4464949647
+UniRef50_A1SEI7: 50S ribosomal protein L1|g__Streptococcus.s__Streptococcus_agalactiae	2.3923444976
+UniRef50_Q4A0X5: Probable transglycosylase SceD 1	277.2427278998
+UniRef50_Q4A0X5: Probable transglycosylase SceD 1|g__Staphylococcus.s__Staphylococcus_epidermidis	145.9386740375
+UniRef50_Q4A0X5: Probable transglycosylase SceD 1|g__Staphylococcus.s__Staphylococcus_aureus	131.3040538623
+UniRef50_N0AYY4: Aromatic amino acid transport protein AroP (General aromatic aminoacid permease)	277.2279172659
+UniRef50_N0AYY4: Aromatic amino acid transport protein AroP (General aromatic aminoacid permease)|g__Staphylococcus.s__Staphylococcus_epidermidis	186.2893236628
+UniRef50_N0AYY4: Aromatic amino acid transport protein AroP (General aromatic aminoacid permease)|g__Staphylococcus.s__Staphylococcus_aureus	90.9385936030
+UniRef50_Q04EV5: Arginine deiminase	277.1107894892
+UniRef50_Q04EV5: Arginine deiminase|g__Staphylococcus.s__Staphylococcus_epidermidis	138.7308868019
+UniRef50_Q04EV5: Arginine deiminase|g__Staphylococcus.s__Staphylococcus_aureus	138.2515367812
+UniRef50_Q04EV5: Arginine deiminase|unclassified	0.1283659061
+UniRef50_Q3IUW1: Signal peptidase I	277.0137071706
+UniRef50_Q3IUW1: Signal peptidase I|g__Rhodobacter.s__Rhodobacter_sphaeroides	205.6225404490
+UniRef50_Q3IUW1: Signal peptidase I|unclassified	71.3911667216
+UniRef50_B1HX23: UPF0173 metal-dependent hydrolase Bsph_4138	276.5491179737
+UniRef50_B1HX23: UPF0173 metal-dependent hydrolase Bsph_4138|g__Staphylococcus.s__Staphylococcus_epidermidis	152.5952426335
+UniRef50_B1HX23: UPF0173 metal-dependent hydrolase Bsph_4138|g__Staphylococcus.s__Staphylococcus_aureus	123.9538753402
+UniRef50_Q6GK63: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase 1	276.2781595220
+UniRef50_Q6GK63: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase 1|g__Staphylococcus.s__Staphylococcus_aureus	199.7163051452
+UniRef50_Q6GK63: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase 1|g__Staphylococcus.s__Staphylococcus_epidermidis	49.0669194731
+UniRef50_Q6GK63: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase 1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.4949349037
+UniRef50_P39634: 1-pyrroline-5-carboxylate dehydrogenase	275.8906849350
+UniRef50_P39634: 1-pyrroline-5-carboxylate dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	143.3100507693
+UniRef50_P39634: 1-pyrroline-5-carboxylate dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	126.7429527271
+UniRef50_P39634: 1-pyrroline-5-carboxylate dehydrogenase|g__Deinococcus.s__Deinococcus_radiodurans	5.8376814385
+UniRef50_E8SHT3: Chromosome (Plasmid) partitioning protein ParB / Stage 0 sporulation protein J	275.7431452268
+UniRef50_E8SHT3: Chromosome (Plasmid) partitioning protein ParB / Stage 0 sporulation protein J|g__Staphylococcus.s__Staphylococcus_aureus	155.0502827435
+UniRef50_E8SHT3: Chromosome (Plasmid) partitioning protein ParB / Stage 0 sporulation protein J|g__Staphylococcus.s__Staphylococcus_epidermidis	120.6928624833
+UniRef50_P0C0G7: Glyceraldehyde-3-phosphate dehydrogenase	275.5879076433
+UniRef50_P0C0G7: Glyceraldehyde-3-phosphate dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	110.9676447214
+UniRef50_P0C0G7: Glyceraldehyde-3-phosphate dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	81.5223578884
+UniRef50_P0C0G7: Glyceraldehyde-3-phosphate dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	67.0543874304
+UniRef50_P0C0G7: Glyceraldehyde-3-phosphate dehydrogenase|g__Streptococcus.s__Streptococcus_agalactiae	7.8970233194
+UniRef50_P0C0G7: Glyceraldehyde-3-phosphate dehydrogenase|g__Escherichia.s__Escherichia_coli	5.5294971278
+UniRef50_P0C0G7: Glyceraldehyde-3-phosphate dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	2.5669606798
+UniRef50_P0C0G7: Glyceraldehyde-3-phosphate dehydrogenase|unclassified	0.0500364761
+UniRef50_U5NMC4	273.7839359835
+UniRef50_U5NMC4|g__Rhodobacter.s__Rhodobacter_sphaeroides	273.6173688329
+UniRef50_U5NMC4|unclassified	0.1665671506
+UniRef50_X5DUC9: Thioesterase-like superfamily protein	273.7201234042
+UniRef50_X5DUC9: Thioesterase-like superfamily protein|g__Staphylococcus.s__Staphylococcus_aureus	159.7792142062
+UniRef50_X5DUC9: Thioesterase-like superfamily protein|g__Staphylococcus.s__Staphylococcus_epidermidis	112.8584178556
+UniRef50_X5DUC9: Thioesterase-like superfamily protein|unclassified	1.0824913424
+UniRef50_Q5HGK2: 3-oxoacyl-[acyl-carrier-protein] reductase FabG	273.7149973861
+UniRef50_Q5HGK2: 3-oxoacyl-[acyl-carrier-protein] reductase FabG|g__Staphylococcus.s__Staphylococcus_epidermidis	154.7810712249
+UniRef50_Q5HGK2: 3-oxoacyl-[acyl-carrier-protein] reductase FabG|g__Staphylococcus.s__Staphylococcus_aureus	109.7052494072
+UniRef50_Q5HGK2: 3-oxoacyl-[acyl-carrier-protein] reductase FabG|g__Clostridium.s__Clostridium_beijerinckii	9.1468522456
+UniRef50_Q5HGK2: 3-oxoacyl-[acyl-carrier-protein] reductase FabG|unclassified	0.0818245084
+UniRef50_Q3IUU4	272.7161586955
+UniRef50_Q3IUU4|g__Rhodobacter.s__Rhodobacter_sphaeroides	205.0099828298
+UniRef50_Q3IUU4|unclassified	67.7061758657
+UniRef50_UPI000372A8A8: hypothetical protein	272.2821512246
+UniRef50_UPI000372A8A8: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	179.1750594011
+UniRef50_UPI000372A8A8: hypothetical protein|unclassified	93.1070918235
+UniRef50_R7G2P1: tRNA (cytidine(34)-2'-O)-methyltransferase	272.2565109089
+UniRef50_R7G2P1: tRNA (cytidine(34)-2'-O)-methyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	160.3874352251
+UniRef50_R7G2P1: tRNA (cytidine(34)-2'-O)-methyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	105.3188118555
+UniRef50_R7G2P1: tRNA (cytidine(34)-2'-O)-methyltransferase|g__Clostridium.s__Clostridium_beijerinckii	6.5502638283
+UniRef50_A7X3B0: Transcriptional repressor NrdR	271.2255121519
+UniRef50_A7X3B0: Transcriptional repressor NrdR|g__Staphylococcus.s__Staphylococcus_epidermidis	166.6578952586
+UniRef50_A7X3B0: Transcriptional repressor NrdR|g__Staphylococcus.s__Staphylococcus_aureus	54.8869994792
+UniRef50_A7X3B0: Transcriptional repressor NrdR|g__Streptococcus.s__Streptococcus_mutans	49.6806174141
+UniRef50_P43753: Formate acetyltransferase	271.1119443349
+UniRef50_P43753: Formate acetyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	120.2546795241
+UniRef50_P43753: Formate acetyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	81.3436853814
+UniRef50_P43753: Formate acetyltransferase|g__Escherichia.s__Escherichia_coli	65.7778145674
+UniRef50_P43753: Formate acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	3.1150410543
+UniRef50_P43753: Formate acetyltransferase|unclassified	0.6207238078
+UniRef50_Q5HKI6	270.3877562122
+UniRef50_Q5HKI6|g__Staphylococcus.s__Staphylococcus_epidermidis	270.3877562122
+UniRef50_Q8CMK8: Membrane protein insertase YidC 1	270.3611394329
+UniRef50_Q8CMK8: Membrane protein insertase YidC 1|g__Staphylococcus.s__Staphylococcus_epidermidis	179.3367996303
+UniRef50_Q8CMK8: Membrane protein insertase YidC 1|g__Staphylococcus.s__Staphylococcus_aureus	91.0243398027
+UniRef50_Q73JJ6: 50S ribosomal protein L7/L12	270.2617933280
+UniRef50_Q73JJ6: 50S ribosomal protein L7/L12|g__Streptococcus.s__Streptococcus_mutans	145.5893832943
+UniRef50_Q73JJ6: 50S ribosomal protein L7/L12|g__Staphylococcus.s__Staphylococcus_epidermidis	80.9297611580
+UniRef50_Q73JJ6: 50S ribosomal protein L7/L12|g__Staphylococcus.s__Staphylococcus_aureus	25.5647374016
+UniRef50_Q73JJ6: 50S ribosomal protein L7/L12|g__Neisseria.s__Neisseria_meningitidis	15.3846153846
+UniRef50_Q73JJ6: 50S ribosomal protein L7/L12|g__Clostridium.s__Clostridium_beijerinckii	2.7932960894
+UniRef50_Q2FH23: Response regulator ArlR	270.2378625824
+UniRef50_Q2FH23: Response regulator ArlR|g__Staphylococcus.s__Staphylococcus_epidermidis	137.1802129428
+UniRef50_Q2FH23: Response regulator ArlR|g__Staphylococcus.s__Staphylococcus_aureus	99.4873501397
+UniRef50_Q2FH23: Response regulator ArlR|g__Streptococcus.s__Streptococcus_mutans	32.0528488170
+UniRef50_Q2FH23: Response regulator ArlR|g__Streptococcus.s__Streptococcus_agalactiae	1.5174506829
+UniRef50_A4W496: Glutamate--tRNA ligase	270.2309895036
+UniRef50_A4W496: Glutamate--tRNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	124.1122060216
+UniRef50_A4W496: Glutamate--tRNA ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	83.1556210718
+UniRef50_A4W496: Glutamate--tRNA ligase|g__Streptococcus.s__Streptococcus_mutans	61.9784255117
+UniRef50_A4W496: Glutamate--tRNA ligase|g__Streptococcus.s__Streptococcus_agalactiae	0.8976660682
+UniRef50_A4W496: Glutamate--tRNA ligase|unclassified	0.0870708304
+UniRef50_Q033R5: Fructosamine-3-kinase	269.6640343912
+UniRef50_Q033R5: Fructosamine-3-kinase|g__Staphylococcus.s__Staphylococcus_aureus	167.3234049244
+UniRef50_Q033R5: Fructosamine-3-kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	102.3406294668
+UniRef50_Q5HLX2: Molybdenum ABC transporter, ATP-binding protein ModC	269.2027091029
+UniRef50_Q5HLX2: Molybdenum ABC transporter, ATP-binding protein ModC|g__Staphylococcus.s__Staphylococcus_epidermidis	142.4046009497
+UniRef50_Q5HLX2: Molybdenum ABC transporter, ATP-binding protein ModC|g__Staphylococcus.s__Staphylococcus_aureus	126.7981081533
+UniRef50_P55294: dTDP-glucose 4,6-dehydratase	268.5683600554
+UniRef50_P55294: dTDP-glucose 4,6-dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	205.6309847091
+UniRef50_P55294: dTDP-glucose 4,6-dehydratase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.5919924318
+UniRef50_P55294: dTDP-glucose 4,6-dehydratase|g__Escherichia.s__Escherichia_coli	21.4589367161
+UniRef50_P55294: dTDP-glucose 4,6-dehydratase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6455662499
+UniRef50_P55294: dTDP-glucose 4,6-dehydratase|g__Clostridium.s__Clostridium_beijerinckii	4.1378273795
+UniRef50_P55294: dTDP-glucose 4,6-dehydratase|unclassified	0.1030525691
+UniRef50_D2NAI9: Antibiotic biosynthesis monooxygenase	267.3801125391
+UniRef50_D2NAI9: Antibiotic biosynthesis monooxygenase|g__Staphylococcus.s__Staphylococcus_epidermidis	179.4759436880
+UniRef50_D2NAI9: Antibiotic biosynthesis monooxygenase|g__Staphylococcus.s__Staphylococcus_aureus	87.9041688511
+UniRef50_P50863: Protein mrp homolog SalA	266.4551563845
+UniRef50_P50863: Protein mrp homolog SalA|g__Staphylococcus.s__Staphylococcus_epidermidis	154.5298034437
+UniRef50_P50863: Protein mrp homolog SalA|g__Staphylococcus.s__Staphylococcus_aureus	111.9253529408
+UniRef50_P96672: UPF0750 membrane protein YdeO	266.3370738672
+UniRef50_P96672: UPF0750 membrane protein YdeO|g__Staphylococcus.s__Staphylococcus_epidermidis	139.1071839442
+UniRef50_P96672: UPF0750 membrane protein YdeO|g__Staphylococcus.s__Staphylococcus_aureus	127.2298899230
+UniRef50_E8SEV3: Molybdopterin biosynthesis protein MoeB	265.7712861490
+UniRef50_E8SEV3: Molybdopterin biosynthesis protein MoeB|g__Staphylococcus.s__Staphylococcus_aureus	136.9080845160
+UniRef50_E8SEV3: Molybdopterin biosynthesis protein MoeB|g__Staphylococcus.s__Staphylococcus_epidermidis	128.8632016330
+UniRef50_P74533: Recombination protein RecR	265.7222611059
+UniRef50_P74533: Recombination protein RecR|g__Staphylococcus.s__Staphylococcus_epidermidis	151.6242578901
+UniRef50_P74533: Recombination protein RecR|g__Staphylococcus.s__Staphylococcus_aureus	114.0980032158
+UniRef50_A4X0K4	264.9595663365
+UniRef50_A4X0K4|g__Rhodobacter.s__Rhodobacter_sphaeroides	264.2162285737
+UniRef50_A4X0K4|unclassified	0.7433377628
+UniRef50_Q4L869: PTS system lactose-specific EIICB component	264.8952231237
+UniRef50_Q4L869: PTS system lactose-specific EIICB component|g__Staphylococcus.s__Staphylococcus_aureus	120.0319135998
+UniRef50_Q4L869: PTS system lactose-specific EIICB component|g__Staphylococcus.s__Staphylococcus_epidermidis	99.2873724605
+UniRef50_Q4L869: PTS system lactose-specific EIICB component|g__Streptococcus.s__Streptococcus_mutans	45.5759370634
+UniRef50_P55373: Putative transposase y4bF	264.8731527577
+UniRef50_P55373: Putative transposase y4bF|g__Rhodobacter.s__Rhodobacter_sphaeroides	264.8731527577
+UniRef50_P43089: 5-aminolevulinate synthase	264.7498248985
+UniRef50_P43089: 5-aminolevulinate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	264.2564281676
+UniRef50_P43089: 5-aminolevulinate synthase|unclassified	0.4933967309
+UniRef50_Q2YZ40	264.0867558840
+UniRef50_Q2YZ40|g__Staphylococcus.s__Staphylococcus_aureus	142.9324400117
+UniRef50_Q2YZ40|g__Staphylococcus.s__Staphylococcus_epidermidis	121.1543158723
+UniRef50_P72371: Cap8E	263.5479419305
+UniRef50_P72371: Cap8E|g__Staphylococcus.s__Staphylococcus_aureus	263.5479419305
+UniRef50_R9YT60: HlyD secretion family protein	262.8243212562
+UniRef50_R9YT60: HlyD secretion family protein|g__Staphylococcus.s__Staphylococcus_aureus	148.9450030995
+UniRef50_R9YT60: HlyD secretion family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	113.8793181567
+UniRef50_C5N619: Hydrolase, HD family	262.4404769588
+UniRef50_C5N619: Hydrolase, HD family|g__Staphylococcus.s__Staphylococcus_aureus	147.8387756344
+UniRef50_C5N619: Hydrolase, HD family|g__Staphylococcus.s__Staphylococcus_epidermidis	114.6017013244
+UniRef50_P0A0Q0: Lactose phosphotransferase system repressor	262.0193314356
+UniRef50_P0A0Q0: Lactose phosphotransferase system repressor|g__Staphylococcus.s__Staphylococcus_epidermidis	107.1007489668
+UniRef50_P0A0Q0: Lactose phosphotransferase system repressor|g__Staphylococcus.s__Staphylococcus_aureus	103.8350728008
+UniRef50_P0A0Q0: Lactose phosphotransferase system repressor|g__Streptococcus.s__Streptococcus_mutans	51.0835096680
+UniRef50_I0C1S7: Cystathionine beta-lyase	261.5472296728
+UniRef50_I0C1S7: Cystathionine beta-lyase|g__Staphylococcus.s__Staphylococcus_aureus	142.5075221234
+UniRef50_I0C1S7: Cystathionine beta-lyase|g__Staphylococcus.s__Staphylococcus_epidermidis	119.0397075494
+UniRef50_Q167Z8: ExbD/TolR family biopolymer transport protein, putative	261.3406293383
+UniRef50_Q167Z8: ExbD/TolR family biopolymer transport protein, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	261.3406293383
+UniRef50_A3PP38: D12 class N6 adenine-specific DNA methyltransferase	261.0513168473
+UniRef50_A3PP38: D12 class N6 adenine-specific DNA methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	261.0513168473
+UniRef50_Q2FHH3: Ribosome maturation factor RimP	260.6253390967
+UniRef50_Q2FHH3: Ribosome maturation factor RimP|g__Staphylococcus.s__Staphylococcus_epidermidis	133.2154669878
+UniRef50_Q2FHH3: Ribosome maturation factor RimP|g__Staphylococcus.s__Staphylococcus_aureus	127.4098721089
+UniRef50_P0C2U0: Ornithine carbamoyltransferase, catabolic	260.5395307489
+UniRef50_P0C2U0: Ornithine carbamoyltransferase, catabolic|g__Staphylococcus.s__Staphylococcus_aureus	126.2457527040
+UniRef50_P0C2U0: Ornithine carbamoyltransferase, catabolic|g__Staphylococcus.s__Staphylococcus_epidermidis	79.2202662727
+UniRef50_P0C2U0: Ornithine carbamoyltransferase, catabolic|g__Streptococcus.s__Streptococcus_mutans	55.0345309718
+UniRef50_P0C2U0: Ornithine carbamoyltransferase, catabolic|unclassified	0.0389808005
+UniRef50_Q5LYN3: UDP-N-acetylenolpyruvoylglucosamine reductase	260.1057749568
+UniRef50_Q5LYN3: UDP-N-acetylenolpyruvoylglucosamine reductase|g__Staphylococcus.s__Staphylococcus_aureus	109.5789600838
+UniRef50_Q5LYN3: UDP-N-acetylenolpyruvoylglucosamine reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	75.9280227709
+UniRef50_Q5LYN3: UDP-N-acetylenolpyruvoylglucosamine reductase|g__Streptococcus.s__Streptococcus_mutans	69.4349616139
+UniRef50_Q5LYN3: UDP-N-acetylenolpyruvoylglucosamine reductase|g__Streptococcus.s__Streptococcus_agalactiae	5.0066421034
+UniRef50_Q5LYN3: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.1571883848
+UniRef50_Q5KUG7: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 2	260.0717192687
+UniRef50_Q5KUG7: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 2|g__Staphylococcus.s__Staphylococcus_aureus	117.1334468680
+UniRef50_Q5KUG7: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 2|g__Staphylococcus.s__Staphylococcus_epidermidis	89.4178922825
+UniRef50_Q5KUG7: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 2|g__Streptococcus.s__Streptococcus_mutans	46.5026553595
+UniRef50_Q5KUG7: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 2|g__Streptococcus.s__Streptococcus_agalactiae	6.8709309604
+UniRef50_Q5KUG7: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 2|unclassified	0.1467937984
+UniRef50_D6SHS5: Superantigen-like protein	259.6253076185
+UniRef50_D6SHS5: Superantigen-like protein|g__Staphylococcus.s__Staphylococcus_aureus	259.6253076185
+UniRef50_Q8FAD6: Ornithine carbamoyltransferase	259.4432313094
+UniRef50_Q8FAD6: Ornithine carbamoyltransferase|g__Escherichia.s__Escherichia_coli	94.1227972746
+UniRef50_Q8FAD6: Ornithine carbamoyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	85.1074654858
+UniRef50_Q8FAD6: Ornithine carbamoyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	63.8697987329
+UniRef50_Q8FAD6: Ornithine carbamoyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	12.1726395019
+UniRef50_Q8FAD6: Ornithine carbamoyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9021941356
+UniRef50_Q8FAD6: Ornithine carbamoyltransferase|g__Clostridium.s__Clostridium_beijerinckii	1.1990407674
+UniRef50_Q8FAD6: Ornithine carbamoyltransferase|unclassified	0.0692954111
+UniRef50_N0C910: IS3-Spn1, transposase	259.2304999969
+UniRef50_N0C910: IS3-Spn1, transposase|g__Streptococcus.s__Streptococcus_mutans	259.2304999969
+UniRef50_D3X7Y2: Glutathione peroxidase	259.1000662872
+UniRef50_D3X7Y2: Glutathione peroxidase|g__Staphylococcus.s__Staphylococcus_aureus	259.1000662872
+UniRef50_Q839B0: 33 kDa chaperonin	259.0052803536
+UniRef50_Q839B0: 33 kDa chaperonin|g__Staphylococcus.s__Staphylococcus_aureus	135.2649527210
+UniRef50_Q839B0: 33 kDa chaperonin|g__Staphylococcus.s__Staphylococcus_epidermidis	123.7403276326
+UniRef50_Q3IUV5: TraF	258.7414065002
+UniRef50_Q3IUV5: TraF|g__Rhodobacter.s__Rhodobacter_sphaeroides	251.6200731110
+UniRef50_Q3IUV5: TraF|unclassified	7.1213333892
+UniRef50_A6QE85: Staphylococcal enterotoxin-like toxin	258.3603120470
+UniRef50_A6QE85: Staphylococcal enterotoxin-like toxin|g__Staphylococcus.s__Staphylococcus_aureus	258.3603120470
+UniRef50_Q3J227	258.3467999542
+UniRef50_Q3J227|g__Rhodobacter.s__Rhodobacter_sphaeroides	254.6293278352
+UniRef50_Q3J227|unclassified	3.7174721190
+UniRef50_Q928B5: Thioredoxin reductase	258.3206186612
+UniRef50_Q928B5: Thioredoxin reductase|g__Staphylococcus.s__Staphylococcus_aureus	129.0945454974
+UniRef50_Q928B5: Thioredoxin reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	94.9138247154
+UniRef50_Q928B5: Thioredoxin reductase|g__Streptococcus.s__Streptococcus_mutans	34.2211518361
+UniRef50_Q928B5: Thioredoxin reductase|unclassified	0.0910966124
+UniRef50_F8FNN8: YbaR	258.1922945820
+UniRef50_F8FNN8: YbaR|g__Staphylococcus.s__Staphylococcus_epidermidis	199.5739377386
+UniRef50_F8FNN8: YbaR|g__Staphylococcus.s__Staphylococcus_aureus	52.7026313598
+UniRef50_F8FNN8: YbaR|g__Acinetobacter.s__Acinetobacter_baumannii	5.9157254836
+UniRef50_Q88TV5: Tyrosine--tRNA ligase	258.1162929128
+UniRef50_Q88TV5: Tyrosine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	86.0090570817
+UniRef50_Q88TV5: Tyrosine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	84.6418651452
+UniRef50_Q88TV5: Tyrosine--tRNA ligase|g__Streptococcus.s__Streptococcus_mutans	48.7486909412
+UniRef50_Q88TV5: Tyrosine--tRNA ligase|g__Escherichia.s__Escherichia_coli	34.5267433624
+UniRef50_Q88TV5: Tyrosine--tRNA ligase|g__Streptococcus.s__Streptococcus_agalactiae	4.1498017602
+UniRef50_Q88TV5: Tyrosine--tRNA ligase|unclassified	0.0401346223
+UniRef50_A5IRF7: PEBP family protein	257.5451068647
+UniRef50_A5IRF7: PEBP family protein|g__Staphylococcus.s__Staphylococcus_aureus	173.9131106261
+UniRef50_A5IRF7: PEBP family protein|g__Streptococcus.s__Streptococcus_mutans	82.3570841302
+UniRef50_A5IRF7: PEBP family protein|unclassified	1.2749121085
+UniRef50_P9WQI2: Trehalose import ATP-binding protein SugC	257.5066860454
+UniRef50_P9WQI2: Trehalose import ATP-binding protein SugC|g__Staphylococcus.s__Staphylococcus_aureus	157.9239057219
+UniRef50_P9WQI2: Trehalose import ATP-binding protein SugC|g__Streptococcus.s__Streptococcus_mutans	98.9728128558
+UniRef50_P9WQI2: Trehalose import ATP-binding protein SugC|unclassified	0.6099674677
+UniRef50_Q8CPJ9: Bifunctional protein PyrR	257.1292195791
+UniRef50_Q8CPJ9: Bifunctional protein PyrR|g__Staphylococcus.s__Staphylococcus_epidermidis	256.4542633834
+UniRef50_Q8CPJ9: Bifunctional protein PyrR|unclassified	0.6749561957
+UniRef50_Q49V04: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	256.4570857947
+UniRef50_Q49V04: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	154.1423638883
+UniRef50_Q49V04: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|g__Staphylococcus.s__Staphylococcus_aureus	102.0817126123
+UniRef50_Q49V04: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.2330092941
+UniRef50_B5XK69: Oleate hydratase	256.2637379284
+UniRef50_B5XK69: Oleate hydratase|g__Staphylococcus.s__Staphylococcus_aureus	109.1588206476
+UniRef50_B5XK69: Oleate hydratase|g__Staphylococcus.s__Staphylococcus_epidermidis	96.5240829483
+UniRef50_B5XK69: Oleate hydratase|g__Streptococcus.s__Streptococcus_mutans	47.5386368187
+UniRef50_B5XK69: Oleate hydratase|g__Streptococcus.s__Streptococcus_agalactiae	2.8242218140
+UniRef50_B5XK69: Oleate hydratase|unclassified	0.2179756998
+UniRef50_P65591: Transcription termination/antitermination protein NusG	255.5823150396
+UniRef50_P65591: Transcription termination/antitermination protein NusG|g__Rhodobacter.s__Rhodobacter_sphaeroides	160.7118181190
+UniRef50_P65591: Transcription termination/antitermination protein NusG|g__Pseudomonas.s__Pseudomonas_aeruginosa	94.8704969206
+UniRef50_L7WWR2: Anaerobic ribonucleoside-triphosphate reductase-activating protein	255.4902820211
+UniRef50_L7WWR2: Anaerobic ribonucleoside-triphosphate reductase-activating protein|g__Staphylococcus.s__Staphylococcus_aureus	131.0723896142
+UniRef50_L7WWR2: Anaerobic ribonucleoside-triphosphate reductase-activating protein|g__Staphylococcus.s__Staphylococcus_epidermidis	124.4178924068
+UniRef50_A6QFI0: UPF0344 protein NWMN_0840	255.3759699889
+UniRef50_A6QFI0: UPF0344 protein NWMN_0840|g__Staphylococcus.s__Staphylococcus_aureus	220.0533621575
+UniRef50_A6QFI0: UPF0344 protein NWMN_0840|g__Staphylococcus.s__Staphylococcus_epidermidis	35.3226078314
+UniRef50_E8SIH2: Cysteine desulfurase	255.2397319489
+UniRef50_E8SIH2: Cysteine desulfurase|g__Staphylococcus.s__Staphylococcus_aureus	142.4233833908
+UniRef50_E8SIH2: Cysteine desulfurase|g__Staphylococcus.s__Staphylococcus_epidermidis	112.8163485581
+UniRef50_P42620: Glutathionyl-hydroquinone reductase YqjG	255.1140648652
+UniRef50_P42620: Glutathionyl-hydroquinone reductase YqjG|g__Rhodobacter.s__Rhodobacter_sphaeroides	218.2028981142
+UniRef50_P42620: Glutathionyl-hydroquinone reductase YqjG|g__Escherichia.s__Escherichia_coli	27.0365033160
+UniRef50_P42620: Glutathionyl-hydroquinone reductase YqjG|g__Streptococcus.s__Streptococcus_agalactiae	9.8746634350
+UniRef50_B2ITM7: 30S ribosomal protein S9	254.9253204345
+UniRef50_B2ITM7: 30S ribosomal protein S9|g__Staphylococcus.s__Staphylococcus_epidermidis	176.9612475067
+UniRef50_B2ITM7: 30S ribosomal protein S9|g__Staphylococcus.s__Staphylococcus_aureus	77.9640729278
+UniRef50_C1F934: Glycine cleavage system H protein	254.7907137707
+UniRef50_C1F934: Glycine cleavage system H protein|g__Staphylococcus.s__Staphylococcus_epidermidis	229.1928017499
+UniRef50_C1F934: Glycine cleavage system H protein|g__Staphylococcus.s__Staphylococcus_aureus	25.5979120208
+UniRef50_Q2YZ71: Imidazole glycerol phosphate synthase subunit HisF	254.4875271198
+UniRef50_Q2YZ71: Imidazole glycerol phosphate synthase subunit HisF|g__Staphylococcus.s__Staphylococcus_aureus	144.5632471168
+UniRef50_Q2YZ71: Imidazole glycerol phosphate synthase subunit HisF|g__Staphylococcus.s__Staphylococcus_epidermidis	109.1502988332
+UniRef50_Q2YZ71: Imidazole glycerol phosphate synthase subunit HisF|unclassified	0.7739811698
+UniRef50_A5IVQ1: Diaminopimelate epimerase-like protein	254.3881768880
+UniRef50_A5IVQ1: Diaminopimelate epimerase-like protein|g__Staphylococcus.s__Staphylococcus_aureus	129.0818751444
+UniRef50_A5IVQ1: Diaminopimelate epimerase-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	125.3063017435
+UniRef50_A1WIM3: Urease subunit alpha	254.0369846897
+UniRef50_A1WIM3: Urease subunit alpha|g__Staphylococcus.s__Staphylococcus_aureus	104.2163128840
+UniRef50_A1WIM3: Urease subunit alpha|g__Staphylococcus.s__Staphylococcus_epidermidis	98.3759022117
+UniRef50_A1WIM3: Urease subunit alpha|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.3523101717
+UniRef50_A1WIM3: Urease subunit alpha|g__Acinetobacter.s__Acinetobacter_baumannii	2.8538347144
+UniRef50_A1WIM3: Urease subunit alpha|g__Helicobacter.s__Helicobacter_pylori	2.7953258979
+UniRef50_A1WIM3: Urease subunit alpha|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3960306528
+UniRef50_A1WIM3: Urease subunit alpha|unclassified	0.0472681572
+UniRef50_Q5HDD6: Gamma-hemolysin component A	253.6917110027
+UniRef50_Q5HDD6: Gamma-hemolysin component A|g__Staphylococcus.s__Staphylococcus_aureus	253.6917110027
+UniRef50_C5QMP7: Nitrite reductase [NAD(P)H], large subunit	253.4575184153
+UniRef50_C5QMP7: Nitrite reductase [NAD(P)H], large subunit|g__Staphylococcus.s__Staphylococcus_aureus	146.2965361980
+UniRef50_C5QMP7: Nitrite reductase [NAD(P)H], large subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	107.1609822173
+UniRef50_Q4L7Y8: ATP synthase subunit b	253.3339112908
+UniRef50_Q4L7Y8: ATP synthase subunit b|g__Staphylococcus.s__Staphylococcus_epidermidis	138.6619485355
+UniRef50_Q4L7Y8: ATP synthase subunit b|g__Staphylococcus.s__Staphylococcus_aureus	114.6719627553
+UniRef50_M9RIA5	253.0864197531
+UniRef50_M9RIA5|g__Rhodobacter.s__Rhodobacter_sphaeroides	253.0864197531
+UniRef50_B2GAM0: Enolase	252.9906320398
+UniRef50_B2GAM0: Enolase|g__Staphylococcus.s__Staphylococcus_epidermidis	118.5898191973
+UniRef50_B2GAM0: Enolase|g__Staphylococcus.s__Staphylococcus_aureus	67.2652349439
+UniRef50_B2GAM0: Enolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	60.3522308344
+UniRef50_B2GAM0: Enolase|g__Propionibacterium.s__Propionibacterium_acnes	2.3647799773
+UniRef50_B2GAM0: Enolase|g__Acinetobacter.s__Acinetobacter_baumannii	1.8281535649
+UniRef50_B2GAM0: Enolase|g__Helicobacter.s__Helicobacter_pylori	1.6996229456
+UniRef50_B2GAM0: Enolase|g__Deinococcus.s__Deinococcus_radiodurans	0.7892659826
+UniRef50_B2GAM0: Enolase|unclassified	0.1015245938
+UniRef50_Q5HRP0: Dihydropteroate synthase	252.6772189148
+UniRef50_Q5HRP0: Dihydropteroate synthase|g__Staphylococcus.s__Staphylococcus_aureus	165.6939471054
+UniRef50_Q5HRP0: Dihydropteroate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	86.1901534772
+UniRef50_Q5HRP0: Dihydropteroate synthase|unclassified	0.7931183323
+UniRef50_Q88VG4: GTPase Obg	251.9308275527
+UniRef50_Q88VG4: GTPase Obg|g__Staphylococcus.s__Staphylococcus_aureus	111.3607135572
+UniRef50_Q88VG4: GTPase Obg|g__Staphylococcus.s__Staphylococcus_epidermidis	86.5820692489
+UniRef50_Q88VG4: GTPase Obg|g__Streptococcus.s__Streptococcus_mutans	48.6295700787
+UniRef50_Q88VG4: GTPase Obg|g__Streptococcus.s__Streptococcus_agalactiae	5.3584746680
+UniRef50_Q9K6G3: UPF0340 protein BH3766	251.5636508709
+UniRef50_Q9K6G3: UPF0340 protein BH3766|g__Staphylococcus.s__Staphylococcus_epidermidis	251.5636508709
+UniRef50_J0EHT6	251.4246066719
+UniRef50_J0EHT6|g__Staphylococcus.s__Staphylococcus_epidermidis	251.4246066719
+UniRef50_Q59935: Mannose-6-phosphate isomerase	251.3734704831
+UniRef50_Q59935: Mannose-6-phosphate isomerase|g__Staphylococcus.s__Staphylococcus_aureus	134.1909581173
+UniRef50_Q59935: Mannose-6-phosphate isomerase|g__Staphylococcus.s__Staphylococcus_epidermidis	63.8312836945
+UniRef50_Q59935: Mannose-6-phosphate isomerase|g__Streptococcus.s__Streptococcus_mutans	49.2590982333
+UniRef50_Q59935: Mannose-6-phosphate isomerase|g__Streptococcus.s__Streptococcus_agalactiae	4.0921304380
+UniRef50_Q4L928: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	251.2361468759
+UniRef50_Q4L928: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	211.7849017707
+UniRef50_Q4L928: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	39.4512451051
+UniRef50_P0ABU1: 1,4-Dihydroxy-2-naphthoyl-CoA synthase	251.2174789939
+UniRef50_P0ABU1: 1,4-Dihydroxy-2-naphthoyl-CoA synthase|g__Staphylococcus.s__Staphylococcus_aureus	112.7692299259
+UniRef50_P0ABU1: 1,4-Dihydroxy-2-naphthoyl-CoA synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	108.8397124529
+UniRef50_P0ABU1: 1,4-Dihydroxy-2-naphthoyl-CoA synthase|g__Escherichia.s__Escherichia_coli	29.1722704293
+UniRef50_P0ABU1: 1,4-Dihydroxy-2-naphthoyl-CoA synthase|unclassified	0.4362661858
+UniRef50_E6VPG8: Transcriptional regulator, AraC family	251.1263586482
+UniRef50_E6VPG8: Transcriptional regulator, AraC family|g__Rhodobacter.s__Rhodobacter_sphaeroides	251.1263586482
+UniRef50_Q5HQT4	251.0247667816
+UniRef50_Q5HQT4|g__Staphylococcus.s__Staphylococcus_aureus	138.8795278588
+UniRef50_Q5HQT4|g__Staphylococcus.s__Staphylococcus_epidermidis	112.1452389228
+UniRef50_B0SAP0: Succinyl-CoA ligase [ADP-forming] subunit beta	250.4879292890
+UniRef50_B0SAP0: Succinyl-CoA ligase [ADP-forming] subunit beta|g__Staphylococcus.s__Staphylococcus_aureus	149.6222077206
+UniRef50_B0SAP0: Succinyl-CoA ligase [ADP-forming] subunit beta|g__Staphylococcus.s__Staphylococcus_epidermidis	99.9270651961
+UniRef50_B0SAP0: Succinyl-CoA ligase [ADP-forming] subunit beta|g__Acinetobacter.s__Acinetobacter_baumannii	0.8583690987
+UniRef50_B0SAP0: Succinyl-CoA ligase [ADP-forming] subunit beta|unclassified	0.0802872737
+UniRef50_P19924: Phosphoribulokinase, plasmid	250.3778626436
+UniRef50_P19924: Phosphoribulokinase, plasmid|g__Rhodobacter.s__Rhodobacter_sphaeroides	229.0953037567
+UniRef50_P19924: Phosphoribulokinase, plasmid|g__Escherichia.s__Escherichia_coli	20.6119963707
+UniRef50_P19924: Phosphoribulokinase, plasmid|unclassified	0.6705625162
+UniRef50_A3PHB1	249.7805488531
+UniRef50_A3PHB1|g__Rhodobacter.s__Rhodobacter_sphaeroides	247.8478399468
+UniRef50_A3PHB1|unclassified	1.9327089063
+UniRef50_Q3HKI6: TraI	249.6072173245
+UniRef50_Q3HKI6: TraI|g__Rhodobacter.s__Rhodobacter_sphaeroides	241.3833176009
+UniRef50_Q3HKI6: TraI|unclassified	8.2238997237
+UniRef50_A7Z635: Glycerol-3-phosphate dehydrogenase [NAD(P)+]	249.5517566117
+UniRef50_A7Z635: Glycerol-3-phosphate dehydrogenase [NAD(P)+]|g__Staphylococcus.s__Staphylococcus_epidermidis	100.7243228914
+UniRef50_A7Z635: Glycerol-3-phosphate dehydrogenase [NAD(P)+]|g__Staphylococcus.s__Staphylococcus_aureus	87.9260398908
+UniRef50_A7Z635: Glycerol-3-phosphate dehydrogenase [NAD(P)+]|g__Streptococcus.s__Streptococcus_mutans	58.7780829414
+UniRef50_A7Z635: Glycerol-3-phosphate dehydrogenase [NAD(P)+]|g__Streptococcus.s__Streptococcus_agalactiae	2.0054362905
+UniRef50_A7Z635: Glycerol-3-phosphate dehydrogenase [NAD(P)+]|unclassified	0.1178745977
+UniRef50_Q5HRD2	249.4773873919
+UniRef50_Q5HRD2|g__Staphylococcus.s__Staphylococcus_aureus	164.4961357552
+UniRef50_Q5HRD2|g__Staphylococcus.s__Staphylococcus_epidermidis	84.9812516366
+UniRef50_A7WYS8: Lysine--tRNA ligase	249.3287993655
+UniRef50_A7WYS8: Lysine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	109.4556903857
+UniRef50_A7WYS8: Lysine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	107.6859034572
+UniRef50_A7WYS8: Lysine--tRNA ligase|g__Streptococcus.s__Streptococcus_mutans	32.0875039792
+UniRef50_A7WYS8: Lysine--tRNA ligase|unclassified	0.0997015434
+UniRef50_P66938: DNA topoisomerase 4 subunit B	248.8596802969
+UniRef50_P66938: DNA topoisomerase 4 subunit B|g__Staphylococcus.s__Staphylococcus_epidermidis	104.0811608921
+UniRef50_P66938: DNA topoisomerase 4 subunit B|g__Staphylococcus.s__Staphylococcus_aureus	100.6405665336
+UniRef50_P66938: DNA topoisomerase 4 subunit B|g__Streptococcus.s__Streptococcus_mutans	42.4560437488
+UniRef50_P66938: DNA topoisomerase 4 subunit B|g__Streptococcus.s__Streptococcus_agalactiae	1.5759033955
+UniRef50_P66938: DNA topoisomerase 4 subunit B|unclassified	0.1060057269
+UniRef50_Q3IUW2: Sex-pilus assembly protein	248.3060821932
+UniRef50_Q3IUW2: Sex-pilus assembly protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	176.6034629038
+UniRef50_Q3IUW2: Sex-pilus assembly protein|unclassified	71.7026192894
+UniRef50_Q04789: Acetolactate synthase	248.1222859881
+UniRef50_Q04789: Acetolactate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	108.3647193234
+UniRef50_Q04789: Acetolactate synthase|g__Staphylococcus.s__Staphylococcus_aureus	89.9858753253
+UniRef50_Q04789: Acetolactate synthase|g__Streptococcus.s__Streptococcus_mutans	46.0170918214
+UniRef50_Q04789: Acetolactate synthase|g__Streptococcus.s__Streptococcus_agalactiae	3.6610788822
+UniRef50_Q04789: Acetolactate synthase|unclassified	0.0935206358
+UniRef50_Q8CRX7: Two-component sensor histidine kinase-like protein	247.3367152570
+UniRef50_Q8CRX7: Two-component sensor histidine kinase-like protein|g__Staphylococcus.s__Staphylococcus_aureus	158.1752713027
+UniRef50_Q8CRX7: Two-component sensor histidine kinase-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	89.1614439543
+UniRef50_D3QC63: Multiple CBS domains-containing cytosolic protein	247.1456264639
+UniRef50_D3QC63: Multiple CBS domains-containing cytosolic protein|g__Staphylococcus.s__Staphylococcus_aureus	143.2535638982
+UniRef50_D3QC63: Multiple CBS domains-containing cytosolic protein|g__Staphylococcus.s__Staphylococcus_epidermidis	103.8920625657
+UniRef50_Q03JU0: Transposase	246.9828285753
+UniRef50_Q03JU0: Transposase|g__Streptococcus.s__Streptococcus_mutans	246.9828285753
+UniRef50_Q1WV02: UPF0374 protein LSL_0370	246.7671660583
+UniRef50_Q1WV02: UPF0374 protein LSL_0370|g__Staphylococcus.s__Staphylococcus_aureus	117.2842301034
+UniRef50_Q1WV02: UPF0374 protein LSL_0370|g__Staphylococcus.s__Staphylococcus_epidermidis	76.0750289166
+UniRef50_Q1WV02: UPF0374 protein LSL_0370|g__Streptococcus.s__Streptococcus_mutans	53.4079070383
+UniRef50_A9KK69: S-adenosylmethionine:tRNA ribosyltransferase-isomerase	246.1076082670
+UniRef50_A9KK69: S-adenosylmethionine:tRNA ribosyltransferase-isomerase|g__Staphylococcus.s__Staphylococcus_epidermidis	109.2499931194
+UniRef50_A9KK69: S-adenosylmethionine:tRNA ribosyltransferase-isomerase|g__Streptococcus.s__Streptococcus_mutans	65.4429148153
+UniRef50_A9KK69: S-adenosylmethionine:tRNA ribosyltransferase-isomerase|g__Staphylococcus.s__Staphylococcus_aureus	64.2725144449
+UniRef50_A9KK69: S-adenosylmethionine:tRNA ribosyltransferase-isomerase|g__Streptococcus.s__Streptococcus_agalactiae	6.0042121480
+UniRef50_A9KK69: S-adenosylmethionine:tRNA ribosyltransferase-isomerase|g__Clostridium.s__Clostridium_beijerinckii	0.9765625000
+UniRef50_A9KK69: S-adenosylmethionine:tRNA ribosyltransferase-isomerase|unclassified	0.1614112394
+UniRef50_Q5HMG3: Dihydroxy-acid dehydratase	245.8521272193
+UniRef50_Q5HMG3: Dihydroxy-acid dehydratase|g__Staphylococcus.s__Staphylococcus_aureus	132.4045738755
+UniRef50_Q5HMG3: Dihydroxy-acid dehydratase|g__Staphylococcus.s__Staphylococcus_epidermidis	101.8433724288
+UniRef50_Q5HMG3: Dihydroxy-acid dehydratase|g__Clostridium.s__Clostridium_beijerinckii	10.3438447514
+UniRef50_Q5HMG3: Dihydroxy-acid dehydratase|unclassified	1.2603361636
+UniRef50_I0C7K3: Lantibiotic transport ATP-binding protein	245.6181534630
+UniRef50_I0C7K3: Lantibiotic transport ATP-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	149.8430544726
+UniRef50_I0C7K3: Lantibiotic transport ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	95.7750989904
+UniRef50_Q3IUW4: TraC	245.1341448920
+UniRef50_Q3IUW4: TraC|g__Rhodobacter.s__Rhodobacter_sphaeroides	242.2166608210
+UniRef50_Q3IUW4: TraC|unclassified	2.9174840710
+UniRef50_Q4L8I6: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	244.9333345780
+UniRef50_Q4L8I6: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	123.0341465017
+UniRef50_Q4L8I6: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	121.8991880763
+UniRef50_P52999: Aspartate 1-decarboxylase	244.7956010372
+UniRef50_P52999: Aspartate 1-decarboxylase|g__Staphylococcus.s__Staphylococcus_epidermidis	134.4433444254
+UniRef50_P52999: Aspartate 1-decarboxylase|g__Staphylococcus.s__Staphylococcus_aureus	110.3522566117
+UniRef50_F0NRM0: L-serine ammonia-lyase alpha subunit	243.9727544858
+UniRef50_F0NRM0: L-serine ammonia-lyase alpha subunit|g__Staphylococcus.s__Staphylococcus_aureus	130.9709210261
+UniRef50_F0NRM0: L-serine ammonia-lyase alpha subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	113.0018334598
+UniRef50_Q2JDK2: Elongation factor 4	243.7013950293
+UniRef50_Q2JDK2: Elongation factor 4|g__Rhodobacter.s__Rhodobacter_sphaeroides	124.9498929410
+UniRef50_Q2JDK2: Elongation factor 4|g__Staphylococcus.s__Staphylococcus_epidermidis	81.3973826317
+UniRef50_Q2JDK2: Elongation factor 4|g__Escherichia.s__Escherichia_coli	32.5509104987
+UniRef50_Q2JDK2: Elongation factor 4|g__Clostridium.s__Clostridium_beijerinckii	2.6345806904
+UniRef50_Q2JDK2: Elongation factor 4|g__Helicobacter.s__Helicobacter_pylori	2.1686282676
+UniRef50_T1Y9K8	243.6870790235
+UniRef50_T1Y9K8|g__Staphylococcus.s__Staphylococcus_epidermidis	163.0300668421
+UniRef50_T1Y9K8|g__Staphylococcus.s__Staphylococcus_aureus	80.6570121814
+UniRef50_Q8DWE5: Tagatose 1,6-diphosphate aldolase 2	243.6676194774
+UniRef50_Q8DWE5: Tagatose 1,6-diphosphate aldolase 2|g__Staphylococcus.s__Staphylococcus_epidermidis	132.0145147348
+UniRef50_Q8DWE5: Tagatose 1,6-diphosphate aldolase 2|g__Streptococcus.s__Streptococcus_mutans	106.9297905776
+UniRef50_Q8DWE5: Tagatose 1,6-diphosphate aldolase 2|g__Streptococcus.s__Streptococcus_agalactiae	4.4491483943
+UniRef50_Q8DWE5: Tagatose 1,6-diphosphate aldolase 2|unclassified	0.2741657706
+UniRef50_Q1AU48: 50S ribosomal protein L15	243.5199774425
+UniRef50_Q1AU48: 50S ribosomal protein L15|g__Streptococcus.s__Streptococcus_mutans	134.4078650042
+UniRef50_Q1AU48: 50S ribosomal protein L15|g__Staphylococcus.s__Staphylococcus_aureus	87.1591795265
+UniRef50_Q1AU48: 50S ribosomal protein L15|g__Staphylococcus.s__Staphylococcus_epidermidis	21.9529329118
+UniRef50_B0JHY9: 50S ribosomal protein L6	242.7630516468
+UniRef50_B0JHY9: 50S ribosomal protein L6|g__Staphylococcus.s__Staphylococcus_epidermidis	118.7632226872
+UniRef50_B0JHY9: 50S ribosomal protein L6|g__Staphylococcus.s__Staphylococcus_aureus	104.4829821700
+UniRef50_B0JHY9: 50S ribosomal protein L6|g__Clostridium.s__Clostridium_beijerinckii	19.5168467896
+UniRef50_A7X4U8: ATP synthase subunit delta	242.6995217980
+UniRef50_A7X4U8: ATP synthase subunit delta|g__Staphylococcus.s__Staphylococcus_epidermidis	149.0827047172
+UniRef50_A7X4U8: ATP synthase subunit delta|g__Staphylococcus.s__Staphylococcus_aureus	93.6168170809
+UniRef50_A9BIZ6: Glutamate synthase, NADH/NADPH, small subunit	242.5172661580
+UniRef50_A9BIZ6: Glutamate synthase, NADH/NADPH, small subunit|g__Staphylococcus.s__Staphylococcus_aureus	147.7611779515
+UniRef50_A9BIZ6: Glutamate synthase, NADH/NADPH, small subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	94.7560882065
+UniRef50_Q4L8F8: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	241.8438913666
+UniRef50_Q4L8F8: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	143.3528060885
+UniRef50_Q4L8F8: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	98.4910852781
+UniRef50_D2J8Q0	241.5531057146
+UniRef50_D2J8Q0|unclassified	166.9252543315
+UniRef50_D2J8Q0|g__Staphylococcus.s__Staphylococcus_aureus	74.6278513830
+UniRef50_Q88RZ3: Putative ribose uptake protein RbsU	241.4459904917
+UniRef50_Q88RZ3: Putative ribose uptake protein RbsU|g__Staphylococcus.s__Staphylococcus_aureus	185.3184401257
+UniRef50_Q88RZ3: Putative ribose uptake protein RbsU|g__Staphylococcus.s__Staphylococcus_epidermidis	56.1275503660
+UniRef50_Q2FEH9: Phosphosugar-binding transcriptional regulator, RpiR family	240.7597640800
+UniRef50_Q2FEH9: Phosphosugar-binding transcriptional regulator, RpiR family|g__Staphylococcus.s__Staphylococcus_aureus	169.3555153382
+UniRef50_Q2FEH9: Phosphosugar-binding transcriptional regulator, RpiR family|g__Staphylococcus.s__Staphylococcus_epidermidis	71.4042487418
+UniRef50_P0A0A1: Pyruvate dehydrogenase E1 component subunit beta	240.5021333356
+UniRef50_P0A0A1: Pyruvate dehydrogenase E1 component subunit beta|g__Staphylococcus.s__Staphylococcus_aureus	121.0399532789
+UniRef50_P0A0A1: Pyruvate dehydrogenase E1 component subunit beta|g__Staphylococcus.s__Staphylococcus_epidermidis	119.4621800567
+UniRef50_A5IUD1	240.3999342065
+UniRef50_A5IUD1|g__Staphylococcus.s__Staphylococcus_aureus	240.1165151944
+UniRef50_A5IUD1|unclassified	0.2834190121
+UniRef50_E4PYL2: Plasmid recombination protein, Mob family	240.1715877876
+UniRef50_E4PYL2: Plasmid recombination protein, Mob family|g__Staphylococcus.s__Staphylococcus_aureus	238.2767763246
+UniRef50_E4PYL2: Plasmid recombination protein, Mob family|unclassified	1.8948114630
+UniRef50_Q88YL5: Peptide chain release factor 2	239.9436823150
+UniRef50_Q88YL5: Peptide chain release factor 2|g__Staphylococcus.s__Staphylococcus_aureus	134.3079791874
+UniRef50_Q88YL5: Peptide chain release factor 2|g__Staphylococcus.s__Staphylococcus_epidermidis	99.5349530889
+UniRef50_Q88YL5: Peptide chain release factor 2|g__Clostridium.s__Clostridium_beijerinckii	6.1007500387
+UniRef50_Q5HRF7: Phosphate acetyltransferase	239.9343950936
+UniRef50_Q5HRF7: Phosphate acetyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	100.7758441117
+UniRef50_Q5HRF7: Phosphate acetyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	93.4383950621
+UniRef50_Q5HRF7: Phosphate acetyltransferase|g__Streptococcus.s__Streptococcus_mutans	45.5633014070
+UniRef50_Q5HRF7: Phosphate acetyltransferase|unclassified	0.1568545127
+UniRef50_Q5KXU4: Chorismate synthase	239.3127394759
+UniRef50_Q5KXU4: Chorismate synthase|g__Staphylococcus.s__Staphylococcus_aureus	103.9964928865
+UniRef50_Q5KXU4: Chorismate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	98.7915155748
+UniRef50_Q5KXU4: Chorismate synthase|g__Streptococcus.s__Streptococcus_mutans	34.8003770633
+UniRef50_Q5KXU4: Chorismate synthase|g__Streptococcus.s__Streptococcus_agalactiae	1.3404825737
+UniRef50_Q5KXU4: Chorismate synthase|unclassified	0.3838713776
+UniRef50_Q71ZM1: Probable endonuclease 4	239.2788079731
+UniRef50_Q71ZM1: Probable endonuclease 4|g__Staphylococcus.s__Staphylococcus_epidermidis	121.3016536714
+UniRef50_Q71ZM1: Probable endonuclease 4|g__Staphylococcus.s__Staphylococcus_aureus	117.9771543017
+UniRef50_B9DLF5: DNA polymerase III gamma and tau subunits	239.1015670794
+UniRef50_B9DLF5: DNA polymerase III gamma and tau subunits|g__Staphylococcus.s__Staphylococcus_aureus	129.2721951190
+UniRef50_B9DLF5: DNA polymerase III gamma and tau subunits|g__Staphylococcus.s__Staphylococcus_epidermidis	109.8293719603
+UniRef50_Q3IUW7: TraK protein	238.5935490487
+UniRef50_Q3IUW7: TraK protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	193.8154390013
+UniRef50_Q3IUW7: TraK protein|unclassified	44.7781100474
+UniRef50_B9E8E5: ATP synthase epsilon chain	238.4845084247
+UniRef50_B9E8E5: ATP synthase epsilon chain|g__Staphylococcus.s__Staphylococcus_aureus	207.5777110997
+UniRef50_B9E8E5: ATP synthase epsilon chain|g__Staphylococcus.s__Staphylococcus_epidermidis	30.9067973249
+UniRef50_Q6GE73: Heme response regulator HssR	238.3933863503
+UniRef50_Q6GE73: Heme response regulator HssR|g__Staphylococcus.s__Staphylococcus_aureus	139.1015065836
+UniRef50_Q6GE73: Heme response regulator HssR|g__Staphylococcus.s__Staphylococcus_epidermidis	99.2918797667
+UniRef50_V9WDP4: MmoB/DmpM family	238.3647207712
+UniRef50_V9WDP4: MmoB/DmpM family|g__Rhodobacter.s__Rhodobacter_sphaeroides	238.3647207712
+UniRef50_Q67MT5: Peptide chain release factor 3	238.1947883518
+UniRef50_Q67MT5: Peptide chain release factor 3|g__Staphylococcus.s__Staphylococcus_aureus	94.0908489061
+UniRef50_Q67MT5: Peptide chain release factor 3|g__Staphylococcus.s__Staphylococcus_epidermidis	85.3166911652
+UniRef50_Q67MT5: Peptide chain release factor 3|g__Streptococcus.s__Streptococcus_mutans	53.4436361797
+UniRef50_Q67MT5: Peptide chain release factor 3|g__Streptococcus.s__Streptococcus_agalactiae	3.0846063239
+UniRef50_Q67MT5: Peptide chain release factor 3|g__Clostridium.s__Clostridium_beijerinckii	2.2590057768
+UniRef50_A3PGM6: 50S ribosomal protein L6	238.0156646980
+UniRef50_A3PGM6: 50S ribosomal protein L6|g__Rhodobacter.s__Rhodobacter_sphaeroides	238.0156646980
+UniRef50_Q2FG29: Alanine dehydrogenase 2	237.8265754123
+UniRef50_Q2FG29: Alanine dehydrogenase 2|g__Staphylococcus.s__Staphylococcus_aureus	139.2120998559
+UniRef50_Q2FG29: Alanine dehydrogenase 2|g__Staphylococcus.s__Staphylococcus_epidermidis	91.7128030507
+UniRef50_Q2FG29: Alanine dehydrogenase 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.7064129136
+UniRef50_Q2FG29: Alanine dehydrogenase 2|unclassified	0.1952595921
+UniRef50_O32197: Transcriptional regulatory protein LiaR	237.7490176130
+UniRef50_O32197: Transcriptional regulatory protein LiaR|g__Staphylococcus.s__Staphylococcus_aureus	120.5268872168
+UniRef50_O32197: Transcriptional regulatory protein LiaR|g__Staphylococcus.s__Staphylococcus_epidermidis	79.3123786283
+UniRef50_O32197: Transcriptional regulatory protein LiaR|g__Streptococcus.s__Streptococcus_mutans	36.1826360512
+UniRef50_O32197: Transcriptional regulatory protein LiaR|g__Streptococcus.s__Streptococcus_agalactiae	1.7271157168
+UniRef50_D2NAH1: Dihydroorotate oxidase	237.3837541357
+UniRef50_D2NAH1: Dihydroorotate oxidase|g__Staphylococcus.s__Staphylococcus_aureus	120.6562920638
+UniRef50_D2NAH1: Dihydroorotate oxidase|g__Staphylococcus.s__Staphylococcus_epidermidis	116.7274620718
+UniRef50_D8HET5: Sirohydrochlorin ferrochelatase	237.3733473046
+UniRef50_D8HET5: Sirohydrochlorin ferrochelatase|g__Staphylococcus.s__Staphylococcus_aureus	164.3628329494
+UniRef50_D8HET5: Sirohydrochlorin ferrochelatase|g__Staphylococcus.s__Staphylococcus_epidermidis	73.0105143553
+UniRef50_P37545	237.3442118448
+UniRef50_P37545|g__Staphylococcus.s__Staphylococcus_epidermidis	123.4922650692
+UniRef50_P37545|g__Staphylococcus.s__Staphylococcus_aureus	113.8519467756
+UniRef50_U5NRL5	237.2594159753
+UniRef50_U5NRL5|g__Rhodobacter.s__Rhodobacter_sphaeroides	184.0654768918
+UniRef50_U5NRL5|unclassified	53.1939390835
+UniRef50_W4KZV0: Glycosyltransferase Gtf1	237.1936799150
+UniRef50_W4KZV0: Glycosyltransferase Gtf1|g__Staphylococcus.s__Staphylococcus_epidermidis	119.4834898465
+UniRef50_W4KZV0: Glycosyltransferase Gtf1|g__Staphylococcus.s__Staphylococcus_aureus	117.7101900685
+UniRef50_Q817Z6: Transcription elongation factor GreA	237.1769442421
+UniRef50_Q817Z6: Transcription elongation factor GreA|g__Streptococcus.s__Streptococcus_mutans	108.8202395644
+UniRef50_Q817Z6: Transcription elongation factor GreA|g__Staphylococcus.s__Staphylococcus_aureus	69.0459670562
+UniRef50_Q817Z6: Transcription elongation factor GreA|g__Staphylococcus.s__Staphylococcus_epidermidis	59.3107376216
+UniRef50_B9E943	237.1081094700
+UniRef50_B9E943|g__Staphylococcus.s__Staphylococcus_aureus	151.1864713453
+UniRef50_B9E943|g__Staphylococcus.s__Staphylococcus_epidermidis	85.9216381247
+UniRef50_G7ZTG5: Acetyltransferase, GNAT family protein	237.0961502888
+UniRef50_G7ZTG5: Acetyltransferase, GNAT family protein|g__Staphylococcus.s__Staphylococcus_aureus	237.0961502888
+UniRef50_Q6AQS4: Aspartate--tRNA(Asp/Asn) ligase	236.9027638101
+UniRef50_Q6AQS4: Aspartate--tRNA(Asp/Asn) ligase|g__Staphylococcus.s__Staphylococcus_aureus	119.8499036525
+UniRef50_Q6AQS4: Aspartate--tRNA(Asp/Asn) ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	108.7249749093
+UniRef50_Q6AQS4: Aspartate--tRNA(Asp/Asn) ligase|g__Streptococcus.s__Streptococcus_agalactiae	4.6949776935
+UniRef50_Q6AQS4: Aspartate--tRNA(Asp/Asn) ligase|g__Clostridium.s__Clostridium_beijerinckii	3.6000057051
+UniRef50_Q6AQS4: Aspartate--tRNA(Asp/Asn) ligase|unclassified	0.0329018497
+UniRef50_Q8CQC3: Membrane spanning protein	236.8525906988
+UniRef50_Q8CQC3: Membrane spanning protein|g__Staphylococcus.s__Staphylococcus_epidermidis	120.2279453158
+UniRef50_Q8CQC3: Membrane spanning protein|g__Staphylococcus.s__Staphylococcus_aureus	116.6246453830
+UniRef50_P39576: Branched-chain-amino-acid aminotransferase 2	236.7481919376
+UniRef50_P39576: Branched-chain-amino-acid aminotransferase 2|g__Staphylococcus.s__Staphylococcus_epidermidis	118.4844943675
+UniRef50_P39576: Branched-chain-amino-acid aminotransferase 2|g__Staphylococcus.s__Staphylococcus_aureus	118.1937619345
+UniRef50_P39576: Branched-chain-amino-acid aminotransferase 2|unclassified	0.0699356356
+UniRef50_C3F9W4: UTP--glucose-1-phosphate uridylyltransferase	236.7248173779
+UniRef50_C3F9W4: UTP--glucose-1-phosphate uridylyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	236.7248173779
+UniRef50_A1WZJ2: 60 kDa chaperonin	236.6586514746
+UniRef50_A1WZJ2: 60 kDa chaperonin|g__Rhodobacter.s__Rhodobacter_sphaeroides	223.2034590344
+UniRef50_A1WZJ2: 60 kDa chaperonin|g__Clostridium.s__Clostridium_beijerinckii	11.4551313814
+UniRef50_A1WZJ2: 60 kDa chaperonin|g__Acinetobacter.s__Acinetobacter_baumannii	2.0000610589
+UniRef50_Q5HP96: UPF0398 protein SERP1017	236.6060044530
+UniRef50_Q5HP96: UPF0398 protein SERP1017|g__Staphylococcus.s__Staphylococcus_aureus	118.0886958341
+UniRef50_Q5HP96: UPF0398 protein SERP1017|g__Staphylococcus.s__Staphylococcus_epidermidis	117.9766014290
+UniRef50_Q5HP96: UPF0398 protein SERP1017|unclassified	0.5407071898
+UniRef50_Q5HGN0: Carbamoyl-phosphate synthase small chain	236.5669925910
+UniRef50_Q5HGN0: Carbamoyl-phosphate synthase small chain|g__Staphylococcus.s__Staphylococcus_aureus	101.8070598989
+UniRef50_Q5HGN0: Carbamoyl-phosphate synthase small chain|g__Staphylococcus.s__Staphylococcus_epidermidis	84.3098113137
+UniRef50_Q5HGN0: Carbamoyl-phosphate synthase small chain|g__Streptococcus.s__Streptococcus_mutans	49.0942074095
+UniRef50_Q5HGN0: Carbamoyl-phosphate synthase small chain|g__Propionibacterium.s__Propionibacterium_acnes	1.0928961749
+UniRef50_Q5HGN0: Carbamoyl-phosphate synthase small chain|unclassified	0.2630177940
+UniRef50_G8V105: Penicillinase repressor family protein	235.8633621280
+UniRef50_G8V105: Penicillinase repressor family protein|g__Staphylococcus.s__Staphylococcus_aureus	235.8633621280
+UniRef50_P71015: HTH-type transcriptional repressor GbsR	235.8489714049
+UniRef50_P71015: HTH-type transcriptional repressor GbsR|g__Staphylococcus.s__Staphylococcus_aureus	135.1359176210
+UniRef50_P71015: HTH-type transcriptional repressor GbsR|g__Staphylococcus.s__Staphylococcus_epidermidis	100.7130537838
+UniRef50_Q5HLA3: Putative aldehyde dehydrogenase AldA	235.6338488383
+UniRef50_Q5HLA3: Putative aldehyde dehydrogenase AldA|g__Staphylococcus.s__Staphylococcus_aureus	127.5775119099
+UniRef50_Q5HLA3: Putative aldehyde dehydrogenase AldA|g__Staphylococcus.s__Staphylococcus_epidermidis	103.7591689668
+UniRef50_Q5HLA3: Putative aldehyde dehydrogenase AldA|g__Clostridium.s__Clostridium_beijerinckii	3.3266995771
+UniRef50_Q5HLA3: Putative aldehyde dehydrogenase AldA|unclassified	0.9704683846
+UniRef50_Q6GE10: 6-carboxyhexanoate--CoA ligase	235.3047869216
+UniRef50_Q6GE10: 6-carboxyhexanoate--CoA ligase|g__Staphylococcus.s__Staphylococcus_aureus	117.8321476970
+UniRef50_Q6GE10: 6-carboxyhexanoate--CoA ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	117.0526043115
+UniRef50_Q6GE10: 6-carboxyhexanoate--CoA ligase|unclassified	0.4200349131
+UniRef50_A7X6Z3: Oxygen-dependent choline dehydrogenase	235.2853996029
+UniRef50_A7X6Z3: Oxygen-dependent choline dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	131.5933774022
+UniRef50_A7X6Z3: Oxygen-dependent choline dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	103.3040873694
+UniRef50_A7X6Z3: Oxygen-dependent choline dehydrogenase|unclassified	0.3879348313
+UniRef50_Q3IV13: Radical SAM superfamily protein	234.1346951489
+UniRef50_Q3IV13: Radical SAM superfamily protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	234.1346951489
+UniRef50_O34436: Probable low-affinity inorganic phosphate transporter	234.1209780874
+UniRef50_O34436: Probable low-affinity inorganic phosphate transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	120.4213024006
+UniRef50_O34436: Probable low-affinity inorganic phosphate transporter|g__Staphylococcus.s__Staphylococcus_aureus	113.6996756867
+UniRef50_P66936: DNA gyrase subunit B	234.0806378832
+UniRef50_P66936: DNA gyrase subunit B|g__Staphylococcus.s__Staphylococcus_aureus	135.9201856355
+UniRef50_P66936: DNA gyrase subunit B|g__Staphylococcus.s__Staphylococcus_epidermidis	97.9602091308
+UniRef50_P66936: DNA gyrase subunit B|unclassified	0.2002431170
+UniRef50_C9A997: Alpha-acetolactate decarboxylase	234.0527010622
+UniRef50_C9A997: Alpha-acetolactate decarboxylase|g__Staphylococcus.s__Staphylococcus_aureus	143.7950614801
+UniRef50_C9A997: Alpha-acetolactate decarboxylase|g__Staphylococcus.s__Staphylococcus_epidermidis	90.2576395821
+UniRef50_Q6GJ93: Putative acetyl-CoA C-acetyltransferase VraB	234.0405740657
+UniRef50_Q6GJ93: Putative acetyl-CoA C-acetyltransferase VraB|g__Staphylococcus.s__Staphylococcus_epidermidis	121.0871737288
+UniRef50_Q6GJ93: Putative acetyl-CoA C-acetyltransferase VraB|g__Staphylococcus.s__Staphylococcus_aureus	112.9534003369
+UniRef50_Q99Y18: 6-phospho-beta-galactosidase	233.8554332192
+UniRef50_Q99Y18: 6-phospho-beta-galactosidase|g__Staphylococcus.s__Staphylococcus_epidermidis	98.3568108417
+UniRef50_Q99Y18: 6-phospho-beta-galactosidase|g__Staphylococcus.s__Staphylococcus_aureus	87.6157315622
+UniRef50_Q99Y18: 6-phospho-beta-galactosidase|g__Streptococcus.s__Streptococcus_mutans	47.8828908153
+UniRef50_D6SIZ2: Luciferase family oxidoreductase, FMN-dependent, PP_0088 family	233.8233450542
+UniRef50_D6SIZ2: Luciferase family oxidoreductase, FMN-dependent, PP_0088 family|g__Staphylococcus.s__Staphylococcus_aureus	118.7872452422
+UniRef50_D6SIZ2: Luciferase family oxidoreductase, FMN-dependent, PP_0088 family|g__Staphylococcus.s__Staphylococcus_epidermidis	115.0360998120
+UniRef50_A0Q6K3: Malate dehydrogenase	233.6582898326
+UniRef50_A0Q6K3: Malate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	134.5019405665
+UniRef50_A0Q6K3: Malate dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	98.4921386659
+UniRef50_A0Q6K3: Malate dehydrogenase|unclassified	0.6642106002
+UniRef50_Q8CNA9: Phosphoglycolate phosphatase	233.5076835560
+UniRef50_Q8CNA9: Phosphoglycolate phosphatase|g__Staphylococcus.s__Staphylococcus_aureus	162.0535010925
+UniRef50_Q8CNA9: Phosphoglycolate phosphatase|g__Staphylococcus.s__Staphylococcus_epidermidis	71.4541824635
+UniRef50_I0C2L0: FatD	233.2651662659
+UniRef50_I0C2L0: FatD|g__Staphylococcus.s__Staphylococcus_aureus	95.0201557347
+UniRef50_I0C2L0: FatD|g__Staphylococcus.s__Staphylococcus_epidermidis	91.0197120530
+UniRef50_I0C2L0: FatD|g__Streptococcus.s__Streptococcus_mutans	47.2252984782
+UniRef50_Q3HKI4	233.0502126293
+UniRef50_Q3HKI4|g__Rhodobacter.s__Rhodobacter_sphaeroides	196.0037557874
+UniRef50_Q3HKI4|unclassified	37.0464568419
+UniRef50_Q6GJE0: Serine acetyltransferase	232.9139496277
+UniRef50_Q6GJE0: Serine acetyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	164.8062548335
+UniRef50_Q6GJE0: Serine acetyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	67.8165923835
+UniRef50_Q6GJE0: Serine acetyltransferase|unclassified	0.2911024108
+UniRef50_G7ZMW5	232.9084346786
+UniRef50_G7ZMW5|g__Staphylococcus.s__Staphylococcus_aureus	128.2934405747
+UniRef50_G7ZMW5|g__Staphylococcus.s__Staphylococcus_epidermidis	104.6149941039
+UniRef50_Q2FVV8: Transcriptional regulator, putative	232.8265709601
+UniRef50_Q2FVV8: Transcriptional regulator, putative|g__Staphylococcus.s__Staphylococcus_aureus	121.9419201755
+UniRef50_Q2FVV8: Transcriptional regulator, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	110.8846507846
+UniRef50_Q2G0P2: Transcription termination/antitermination protein NusG	232.8242331814
+UniRef50_Q2G0P2: Transcription termination/antitermination protein NusG|g__Staphylococcus.s__Staphylococcus_aureus	118.0323392645
+UniRef50_Q2G0P2: Transcription termination/antitermination protein NusG|g__Staphylococcus.s__Staphylococcus_epidermidis	114.7918939169
+UniRef50_Q6GIN8: Protein translocase subunit SecA 1	232.7819534954
+UniRef50_Q6GIN8: Protein translocase subunit SecA 1|g__Staphylococcus.s__Staphylococcus_aureus	118.1349323223
+UniRef50_Q6GIN8: Protein translocase subunit SecA 1|g__Staphylococcus.s__Staphylococcus_epidermidis	114.6470211731
+UniRef50_L7WSQ0	232.2671296485
+UniRef50_L7WSQ0|g__Staphylococcus.s__Staphylococcus_aureus	127.8546135677
+UniRef50_L7WSQ0|g__Staphylococcus.s__Staphylococcus_epidermidis	104.4125160808
+UniRef50_Q6G6X4: Isopentenyl-diphosphate delta-isomerase	232.1346345802
+UniRef50_Q6G6X4: Isopentenyl-diphosphate delta-isomerase|g__Staphylococcus.s__Staphylococcus_aureus	120.7373664991
+UniRef50_Q6G6X4: Isopentenyl-diphosphate delta-isomerase|g__Staphylococcus.s__Staphylococcus_epidermidis	111.3972680811
+UniRef50_Q5FLZ3: tRNA N6-adenosine threonylcarbamoyltransferase	232.1237284154
+UniRef50_Q5FLZ3: tRNA N6-adenosine threonylcarbamoyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	99.0089211574
+UniRef50_Q5FLZ3: tRNA N6-adenosine threonylcarbamoyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	78.9643902078
+UniRef50_Q5FLZ3: tRNA N6-adenosine threonylcarbamoyltransferase|g__Streptococcus.s__Streptococcus_mutans	48.7463721779
+UniRef50_Q5FLZ3: tRNA N6-adenosine threonylcarbamoyltransferase|g__Clostridium.s__Clostridium_beijerinckii	5.2886292239
+UniRef50_Q5FLZ3: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.1154156486
+UniRef50_Q49XA7: Response regulator	232.0322281579
+UniRef50_Q49XA7: Response regulator|g__Staphylococcus.s__Staphylococcus_epidermidis	92.8767781823
+UniRef50_Q49XA7: Response regulator|g__Staphylococcus.s__Staphylococcus_aureus	75.7790956013
+UniRef50_Q49XA7: Response regulator|g__Streptococcus.s__Streptococcus_mutans	61.2886717021
+UniRef50_Q49XA7: Response regulator|g__Streptococcus.s__Streptococcus_agalactiae	2.0876826722
+UniRef50_E8SF18: Aldose 1-epimerase	231.6530949122
+UniRef50_E8SF18: Aldose 1-epimerase|g__Staphylococcus.s__Staphylococcus_epidermidis	127.9338658319
+UniRef50_E8SF18: Aldose 1-epimerase|g__Staphylococcus.s__Staphylococcus_aureus	103.7192290803
+UniRef50_Q5M2U6: Ribosomal RNA small subunit methyltransferase H	231.2987033544
+UniRef50_Q5M2U6: Ribosomal RNA small subunit methyltransferase H|g__Staphylococcus.s__Staphylococcus_aureus	98.5554156601
+UniRef50_Q5M2U6: Ribosomal RNA small subunit methyltransferase H|g__Staphylococcus.s__Staphylococcus_epidermidis	81.6448782742
+UniRef50_Q5M2U6: Ribosomal RNA small subunit methyltransferase H|g__Streptococcus.s__Streptococcus_mutans	50.8922958814
+UniRef50_Q5M2U6: Ribosomal RNA small subunit methyltransferase H|unclassified	0.2061135387
+UniRef50_I0C1J1: ABC transporter ATP-binding protein	231.2762154411
+UniRef50_I0C1J1: ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	137.0269459677
+UniRef50_I0C1J1: ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	94.2492694734
+UniRef50_D2P385	231.2212299191
+UniRef50_D2P385|g__Staphylococcus.s__Staphylococcus_epidermidis	231.2212299191
+UniRef50_Q5HM69: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	231.1807585356
+UniRef50_Q5HM69: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|g__Staphylococcus.s__Staphylococcus_aureus	106.9686171160
+UniRef50_Q5HM69: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|g__Staphylococcus.s__Staphylococcus_epidermidis	84.3000244161
+UniRef50_Q5HM69: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|g__Streptococcus.s__Streptococcus_mutans	38.0119120694
+UniRef50_Q5HM69: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|g__Streptococcus.s__Streptococcus_agalactiae	1.9002049342
+UniRef50_B9KZY0: 50S ribosomal protein L16	230.9062523174
+UniRef50_B9KZY0: 50S ribosomal protein L16|g__Pseudomonas.s__Pseudomonas_aeruginosa	71.4285714286
+UniRef50_B9KZY0: 50S ribosomal protein L16|g__Rhodobacter.s__Rhodobacter_sphaeroides	58.2712706649
+UniRef50_B9KZY0: 50S ribosomal protein L16|g__Staphylococcus.s__Staphylococcus_aureus	54.3897546636
+UniRef50_B9KZY0: 50S ribosomal protein L16|g__Staphylococcus.s__Staphylococcus_epidermidis	46.8166555603
+UniRef50_D3QH80: Hydroxymethylglutaryl-CoA reductase	230.6906951250
+UniRef50_D3QH80: Hydroxymethylglutaryl-CoA reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	116.4334471382
+UniRef50_D3QH80: Hydroxymethylglutaryl-CoA reductase|g__Staphylococcus.s__Staphylococcus_aureus	114.2572479868
+UniRef50_Q3IUZ1: Phytochrome sensor diguanylate cyclase/phosphodiesterase	230.4714919513
+UniRef50_Q3IUZ1: Phytochrome sensor diguanylate cyclase/phosphodiesterase|g__Rhodobacter.s__Rhodobacter_sphaeroides	230.4714919513
+UniRef50_Q5HQB1: Probable quinol oxidase subunit 3	230.3830726302
+UniRef50_Q5HQB1: Probable quinol oxidase subunit 3|g__Staphylococcus.s__Staphylococcus_aureus	153.8671620152
+UniRef50_Q5HQB1: Probable quinol oxidase subunit 3|g__Staphylococcus.s__Staphylococcus_epidermidis	76.5159106150
+UniRef50_A5VKT1: Peptide methionine sulfoxide reductase MsrA	230.2685701270
+UniRef50_A5VKT1: Peptide methionine sulfoxide reductase MsrA|g__Staphylococcus.s__Staphylococcus_epidermidis	161.3781447917
+UniRef50_A5VKT1: Peptide methionine sulfoxide reductase MsrA|g__Staphylococcus.s__Staphylococcus_aureus	68.8904253354
+UniRef50_I6U493	230.1958116344
+UniRef50_I6U493|g__Streptococcus.s__Streptococcus_mutans	124.5808383724
+UniRef50_I6U493|g__Streptococcus.s__Streptococcus_agalactiae	105.6149732620
+UniRef50_Q5WE04: L-lactate dehydrogenase	230.1520390754
+UniRef50_Q5WE04: L-lactate dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	157.0693056986
+UniRef50_Q5WE04: L-lactate dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	73.0827333768
+UniRef50_C7ZUY2: Tagatose-6-phosphate kinase	230.0291530094
+UniRef50_C7ZUY2: Tagatose-6-phosphate kinase|g__Staphylococcus.s__Staphylococcus_aureus	133.7175732514
+UniRef50_C7ZUY2: Tagatose-6-phosphate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	96.3115797580
+UniRef50_Q3HKD7	229.9902999681
+UniRef50_Q3HKD7|g__Rhodobacter.s__Rhodobacter_sphaeroides	221.2818641414
+UniRef50_Q3HKD7|unclassified	8.7084358268
+UniRef50_P19581: Capsule biosynthesis protein CapC	229.6692983826
+UniRef50_P19581: Capsule biosynthesis protein CapC|g__Staphylococcus.s__Staphylococcus_epidermidis	229.6692983826
+UniRef50_P00728: Thermophilic aminopeptidase 1 alpha chain (Fragment)	229.5635037486
+UniRef50_P00728: Thermophilic aminopeptidase 1 alpha chain (Fragment)|g__Staphylococcus.s__Staphylococcus_aureus	119.2364186093
+UniRef50_P00728: Thermophilic aminopeptidase 1 alpha chain (Fragment)|g__Staphylococcus.s__Staphylococcus_epidermidis	110.3270851393
+UniRef50_B7HEG4: HPr kinase/phosphorylase	229.3851987132
+UniRef50_B7HEG4: HPr kinase/phosphorylase|g__Staphylococcus.s__Staphylococcus_aureus	121.6253442095
+UniRef50_B7HEG4: HPr kinase/phosphorylase|g__Staphylococcus.s__Staphylococcus_epidermidis	107.7598545037
+UniRef50_D3QDA5: Transcriptional regulator in cluster with Zn-dependent hydrolase	229.2856183965
+UniRef50_D3QDA5: Transcriptional regulator in cluster with Zn-dependent hydrolase|g__Staphylococcus.s__Staphylococcus_epidermidis	131.8707033422
+UniRef50_D3QDA5: Transcriptional regulator in cluster with Zn-dependent hydrolase|g__Staphylococcus.s__Staphylococcus_aureus	97.4149150543
+UniRef50_I0C6V7: Acyl-CoA dehydrogenase, short-chain specific	229.1388613087
+UniRef50_I0C6V7: Acyl-CoA dehydrogenase, short-chain specific|g__Staphylococcus.s__Staphylococcus_aureus	115.6757075867
+UniRef50_I0C6V7: Acyl-CoA dehydrogenase, short-chain specific|g__Staphylococcus.s__Staphylococcus_epidermidis	113.4631537220
+UniRef50_Q6GDQ8: Holin-like protein CidB	229.1374110401
+UniRef50_Q6GDQ8: Holin-like protein CidB|g__Staphylococcus.s__Staphylococcus_aureus	133.5512762682
+UniRef50_Q6GDQ8: Holin-like protein CidB|g__Staphylococcus.s__Staphylococcus_epidermidis	95.5861347718
+UniRef50_Q8CUA7	228.8847956648
+UniRef50_Q8CUA7|g__Staphylococcus.s__Staphylococcus_epidermidis	157.7721838182
+UniRef50_Q8CUA7|g__Staphylococcus.s__Staphylococcus_aureus	56.2831847118
+UniRef50_Q8CUA7|unclassified	14.8294271349
+UniRef50_U3NTK4	228.6003628881
+UniRef50_U3NTK4|g__Staphylococcus.s__Staphylococcus_aureus	227.5414395449
+UniRef50_U3NTK4|unclassified	1.0589233432
+UniRef50_V9VWJ0	228.4926573457
+UniRef50_V9VWJ0|g__Rhodobacter.s__Rhodobacter_sphaeroides	222.8534565478
+UniRef50_V9VWJ0|unclassified	5.6392007980
+UniRef50_Q5F973: Phosphoribosylformylglycinamidine cyclo-ligase	227.9477268014
+UniRef50_Q5F973: Phosphoribosylformylglycinamidine cyclo-ligase|g__Staphylococcus.s__Staphylococcus_aureus	120.9605554727
+UniRef50_Q5F973: Phosphoribosylformylglycinamidine cyclo-ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	103.8313006022
+UniRef50_Q5F973: Phosphoribosylformylglycinamidine cyclo-ligase|g__Neisseria.s__Neisseria_meningitidis	2.1558707264
+UniRef50_Q5F973: Phosphoribosylformylglycinamidine cyclo-ligase|g__Clostridium.s__Clostridium_beijerinckii	1.0000000000
+UniRef50_P39851: Putative tyrosine-protein kinase CapB	227.9413262879
+UniRef50_P39851: Putative tyrosine-protein kinase CapB|g__Staphylococcus.s__Staphylococcus_aureus	226.3453004038
+UniRef50_P39851: Putative tyrosine-protein kinase CapB|unclassified	1.5960258842
+UniRef50_A3CQT5: 2,3,4,5-tetrahydropyridine-2,6-dicarboxylate N-acetyltransferase	227.7876487430
+UniRef50_A3CQT5: 2,3,4,5-tetrahydropyridine-2,6-dicarboxylate N-acetyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	104.4564041833
+UniRef50_A3CQT5: 2,3,4,5-tetrahydropyridine-2,6-dicarboxylate N-acetyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	79.9872463600
+UniRef50_A3CQT5: 2,3,4,5-tetrahydropyridine-2,6-dicarboxylate N-acetyltransferase|g__Streptococcus.s__Streptococcus_mutans	43.3439981996
+UniRef50_Q2YSD7: Putative ATP:guanido phosphotransferase SAB0474	227.7449829583
+UniRef50_Q2YSD7: Putative ATP:guanido phosphotransferase SAB0474|g__Staphylococcus.s__Staphylococcus_epidermidis	117.1324812659
+UniRef50_Q2YSD7: Putative ATP:guanido phosphotransferase SAB0474|g__Staphylococcus.s__Staphylococcus_aureus	110.6125016924
+UniRef50_Q2YSH2	227.6840034017
+UniRef50_Q2YSH2|g__Staphylococcus.s__Staphylococcus_aureus	136.0019427852
+UniRef50_Q2YSH2|g__Staphylococcus.s__Staphylococcus_epidermidis	91.6820606165
+UniRef50_P39773: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	227.5196080803
+UniRef50_P39773: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|g__Staphylococcus.s__Staphylococcus_aureus	119.0105546301
+UniRef50_P39773: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|g__Staphylococcus.s__Staphylococcus_epidermidis	108.3047416478
+UniRef50_P39773: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|unclassified	0.2043118024
+UniRef50_V9BHA3: Elongation factor Tu	227.1360794174
+UniRef50_V9BHA3: Elongation factor Tu|g__Rhodobacter.s__Rhodobacter_sphaeroides	224.3560976487
+UniRef50_V9BHA3: Elongation factor Tu|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7799817687
+UniRef50_I0C1S4: Carboxylesterase	227.1326323884
+UniRef50_I0C1S4: Carboxylesterase|g__Staphylococcus.s__Staphylococcus_aureus	118.5131414170
+UniRef50_I0C1S4: Carboxylesterase|g__Staphylococcus.s__Staphylococcus_epidermidis	108.6194909713
+UniRef50_D3QJ40: Riboflavin biosynthesis protein RibD	227.1221037703
+UniRef50_D3QJ40: Riboflavin biosynthesis protein RibD|g__Staphylococcus.s__Staphylococcus_aureus	120.2485431257
+UniRef50_D3QJ40: Riboflavin biosynthesis protein RibD|g__Staphylococcus.s__Staphylococcus_epidermidis	106.8735606446
+UniRef50_Q49W95: NADH:flavin oxidoreductase	227.0275305324
+UniRef50_Q49W95: NADH:flavin oxidoreductase|g__Staphylococcus.s__Staphylococcus_aureus	134.4524722879
+UniRef50_Q49W95: NADH:flavin oxidoreductase|g__Staphylococcus.s__Staphylococcus_epidermidis	92.5750582445
+UniRef50_Q6GJB5	226.9765443123
+UniRef50_Q6GJB5|g__Staphylococcus.s__Staphylococcus_epidermidis	116.1638807334
+UniRef50_Q6GJB5|g__Staphylococcus.s__Staphylococcus_aureus	110.8126635789
+UniRef50_Q5HK19: Sensor protein kinase WalK	226.9613937188
+UniRef50_Q5HK19: Sensor protein kinase WalK|g__Staphylococcus.s__Staphylococcus_aureus	129.1167695408
+UniRef50_Q5HK19: Sensor protein kinase WalK|g__Staphylococcus.s__Staphylococcus_epidermidis	97.4696419039
+UniRef50_Q5HK19: Sensor protein kinase WalK|unclassified	0.3749822742
+UniRef50_T1YAJ7: Conserved membrane protein (Hemolysin III-like protein)	226.6627399418
+UniRef50_T1YAJ7: Conserved membrane protein (Hemolysin III-like protein)|g__Staphylococcus.s__Staphylococcus_epidermidis	87.5370137244
+UniRef50_T1YAJ7: Conserved membrane protein (Hemolysin III-like protein)|g__Staphylococcus.s__Staphylococcus_aureus	81.2462529586
+UniRef50_T1YAJ7: Conserved membrane protein (Hemolysin III-like protein)|g__Streptococcus.s__Streptococcus_mutans	57.8794732588
+UniRef50_B9E8W4	226.6344719969
+UniRef50_B9E8W4|g__Staphylococcus.s__Staphylococcus_aureus	125.6912209066
+UniRef50_B9E8W4|g__Staphylococcus.s__Staphylococcus_epidermidis	100.9432510903
+UniRef50_Q5HLN9: Transcriptional regulator, TetR family	226.6175486473
+UniRef50_Q5HLN9: Transcriptional regulator, TetR family|g__Staphylococcus.s__Staphylococcus_aureus	128.7362461209
+UniRef50_Q5HLN9: Transcriptional regulator, TetR family|g__Staphylococcus.s__Staphylococcus_epidermidis	97.8813025265
+UniRef50_Q8CMU9: Protein translocase subunit SecA 2	226.5647295156
+UniRef50_Q8CMU9: Protein translocase subunit SecA 2|g__Staphylococcus.s__Staphylococcus_aureus	127.3040318546
+UniRef50_Q8CMU9: Protein translocase subunit SecA 2|g__Staphylococcus.s__Staphylococcus_epidermidis	99.2606976610
+UniRef50_P0C1L0: Transposase for insertion sequence-like element IS431mec	226.3120201907
+UniRef50_P0C1L0: Transposase for insertion sequence-like element IS431mec|g__Staphylococcus.s__Staphylococcus_aureus	220.5756625313
+UniRef50_P0C1L0: Transposase for insertion sequence-like element IS431mec|g__Escherichia.s__Escherichia_coli	5.7363576594
+UniRef50_F0P396: Betaine aldehyde dehydrogenase	225.9931931833
+UniRef50_F0P396: Betaine aldehyde dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	124.7444970504
+UniRef50_F0P396: Betaine aldehyde dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	101.2486961330
+UniRef50_I0C432: Homoserine dehydrogenase	225.2880165667
+UniRef50_I0C432: Homoserine dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	126.1953130022
+UniRef50_I0C432: Homoserine dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	99.0927035646
+UniRef50_B9DJU7: Choline transporter	225.2263779474
+UniRef50_B9DJU7: Choline transporter|g__Staphylococcus.s__Staphylococcus_aureus	133.2338948468
+UniRef50_B9DJU7: Choline transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	91.9924831006
+UniRef50_I0C7E7: NikE	225.1171509386
+UniRef50_I0C7E7: NikE|g__Staphylococcus.s__Staphylococcus_epidermidis	126.9928246934
+UniRef50_I0C7E7: NikE|g__Staphylococcus.s__Staphylococcus_aureus	98.1243262452
+UniRef50_C1KXH5: 3'-5' exoribonuclease YhaM	225.0357634237
+UniRef50_C1KXH5: 3'-5' exoribonuclease YhaM|g__Staphylococcus.s__Staphylococcus_aureus	132.1191003660
+UniRef50_C1KXH5: 3'-5' exoribonuclease YhaM|g__Staphylococcus.s__Staphylococcus_epidermidis	92.2623950205
+UniRef50_C1KXH5: 3'-5' exoribonuclease YhaM|unclassified	0.6542680373
+UniRef50_P54425	225.0120149356
+UniRef50_P54425|g__Staphylococcus.s__Staphylococcus_aureus	105.3584708385
+UniRef50_P54425|g__Staphylococcus.s__Staphylococcus_epidermidis	103.2497446841
+UniRef50_P54425|g__Escherichia.s__Escherichia_coli	16.4037994130
+UniRef50_Q5HRQ4: 50S ribosomal protein L25	224.8461824513
+UniRef50_Q5HRQ4: 50S ribosomal protein L25|g__Staphylococcus.s__Staphylococcus_aureus	133.2300441907
+UniRef50_Q5HRQ4: 50S ribosomal protein L25|g__Staphylococcus.s__Staphylococcus_epidermidis	91.6161382606
+UniRef50_Q5HPB5: Glucose-specific phosphotransferase enzyme IIA component	224.7671084566
+UniRef50_Q5HPB5: Glucose-specific phosphotransferase enzyme IIA component|g__Staphylococcus.s__Staphylococcus_epidermidis	224.7671084566
+UniRef50_A4WTQ7: NnrU family protein	224.7536959512
+UniRef50_A4WTQ7: NnrU family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	217.2453990382
+UniRef50_A4WTQ7: NnrU family protein|unclassified	7.5082969130
+UniRef50_Q038L3: Elongation factor Ts	224.6785046884
+UniRef50_Q038L3: Elongation factor Ts|g__Staphylococcus.s__Staphylococcus_aureus	117.7320512684
+UniRef50_Q038L3: Elongation factor Ts|g__Staphylococcus.s__Staphylococcus_epidermidis	106.9464534200
+UniRef50_Q3IV82	224.6025863051
+UniRef50_Q3IV82|g__Rhodobacter.s__Rhodobacter_sphaeroides	218.1526917704
+UniRef50_Q3IV82|unclassified	6.4498945347
+UniRef50_Q8CS24	224.4445294349
+UniRef50_Q8CS24|g__Staphylococcus.s__Staphylococcus_aureus	116.7913709931
+UniRef50_Q8CS24|g__Staphylococcus.s__Staphylococcus_epidermidis	107.6531584418
+UniRef50_Q5HS39: Replication-associated protein RepA	224.4439724177
+UniRef50_Q5HS39: Replication-associated protein RepA|g__Staphylococcus.s__Staphylococcus_epidermidis	224.2679652826
+UniRef50_Q5HS39: Replication-associated protein RepA|unclassified	0.1760071351
+UniRef50_E8SDZ5	224.4049611687
+UniRef50_E8SDZ5|g__Staphylococcus.s__Staphylococcus_aureus	119.0215266420
+UniRef50_E8SDZ5|g__Staphylococcus.s__Staphylococcus_epidermidis	105.3834345267
+UniRef50_Q49VS2: Putative lipid kinase SSP1993	224.1513274345
+UniRef50_Q49VS2: Putative lipid kinase SSP1993|g__Staphylococcus.s__Staphylococcus_aureus	137.1900936398
+UniRef50_Q49VS2: Putative lipid kinase SSP1993|g__Staphylococcus.s__Staphylococcus_epidermidis	86.9612337947
+UniRef50_X5EIQ4: Dihydroxyacetone kinase, L subunit	224.0369329933
+UniRef50_X5EIQ4: Dihydroxyacetone kinase, L subunit|g__Staphylococcus.s__Staphylococcus_aureus	146.1226250410
+UniRef50_X5EIQ4: Dihydroxyacetone kinase, L subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	77.9143079523
+UniRef50_B3WF19: Phenylalanine--tRNA ligase alpha subunit	223.9356136031
+UniRef50_B3WF19: Phenylalanine--tRNA ligase alpha subunit|g__Staphylococcus.s__Staphylococcus_aureus	116.8773884741
+UniRef50_B3WF19: Phenylalanine--tRNA ligase alpha subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	68.7895171828
+UniRef50_B3WF19: Phenylalanine--tRNA ligase alpha subunit|g__Streptococcus.s__Streptococcus_mutans	34.0816647712
+UniRef50_B3WF19: Phenylalanine--tRNA ligase alpha subunit|g__Streptococcus.s__Streptococcus_agalactiae	3.1789786588
+UniRef50_B3WF19: Phenylalanine--tRNA ligase alpha subunit|g__Clostridium.s__Clostridium_beijerinckii	1.0080645161
+UniRef50_U5UMZ1: N-acetylglucosamine-6-phosphate deacetylase	223.6760085803
+UniRef50_U5UMZ1: N-acetylglucosamine-6-phosphate deacetylase|g__Staphylococcus.s__Staphylococcus_epidermidis	116.2382442701
+UniRef50_U5UMZ1: N-acetylglucosamine-6-phosphate deacetylase|g__Staphylococcus.s__Staphylococcus_aureus	107.4377643103
+UniRef50_Q6GI66: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--L-lysine ligase	223.5690199185
+UniRef50_Q6GI66: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--L-lysine ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	142.5593646810
+UniRef50_Q6GI66: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--L-lysine ligase|g__Staphylococcus.s__Staphylococcus_aureus	81.0096552376
+UniRef50_X5E5J7: Lipoprotein	222.9400471641
+UniRef50_X5E5J7: Lipoprotein|g__Staphylococcus.s__Staphylococcus_aureus	128.1474299225
+UniRef50_X5E5J7: Lipoprotein|g__Staphylococcus.s__Staphylococcus_epidermidis	94.7926172416
+UniRef50_B1MB87: Urease accessory protein UreG	222.9272019297
+UniRef50_B1MB87: Urease accessory protein UreG|g__Staphylococcus.s__Staphylococcus_epidermidis	117.4881273036
+UniRef50_B1MB87: Urease accessory protein UreG|g__Staphylococcus.s__Staphylococcus_aureus	105.4390746261
+UniRef50_Q2YZ70: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	222.9154126509
+UniRef50_Q2YZ70: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|g__Staphylococcus.s__Staphylococcus_aureus	177.6135425599
+UniRef50_Q2YZ70: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|g__Staphylococcus.s__Staphylococcus_epidermidis	43.3372470315
+UniRef50_Q2YZ70: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	1.9646230595
+UniRef50_B9DLQ3: TcaB protein	222.8443313186
+UniRef50_B9DLQ3: TcaB protein|g__Staphylococcus.s__Staphylococcus_aureus	143.4641795250
+UniRef50_B9DLQ3: TcaB protein|g__Staphylococcus.s__Staphylococcus_epidermidis	79.3801517936
+UniRef50_Q2YTA2: Dephospho-CoA kinase	222.7580396040
+UniRef50_Q2YTA2: Dephospho-CoA kinase|g__Staphylococcus.s__Staphylococcus_aureus	112.4935667427
+UniRef50_Q2YTA2: Dephospho-CoA kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	110.2644728613
+UniRef50_L7WY79: Alpha/beta hydrolase	222.6746366893
+UniRef50_L7WY79: Alpha/beta hydrolase|g__Staphylococcus.s__Staphylococcus_aureus	145.1921375265
+UniRef50_L7WY79: Alpha/beta hydrolase|g__Staphylococcus.s__Staphylococcus_epidermidis	77.4824991628
+UniRef50_Q71WL8: Arginine--tRNA ligase	222.3742100888
+UniRef50_Q71WL8: Arginine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	113.8510065424
+UniRef50_Q71WL8: Arginine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	108.5232035464
+UniRef50_D6SBR0	222.2689075630
+UniRef50_D6SBR0|g__Staphylococcus.s__Staphylococcus_aureus	222.2689075630
+UniRef50_P74309: Fructose-bisphosphate aldolase class 1	222.1106331223
+UniRef50_P74309: Fructose-bisphosphate aldolase class 1|g__Staphylococcus.s__Staphylococcus_aureus	137.5972562526
+UniRef50_P74309: Fructose-bisphosphate aldolase class 1|g__Staphylococcus.s__Staphylococcus_epidermidis	84.5133768696
+UniRef50_T1Y647: Ribitol-5-phosphate 2-dehydrogenase	222.0387897867
+UniRef50_T1Y647: Ribitol-5-phosphate 2-dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	151.0867215451
+UniRef50_T1Y647: Ribitol-5-phosphate 2-dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	70.9520682417
+UniRef50_Q99VJ4: Clumping factor A	221.9783382081
+UniRef50_Q99VJ4: Clumping factor A|g__Staphylococcus.s__Staphylococcus_aureus	221.9783382081
+UniRef50_A7X2X9: Ribosomal protein L11 methyltransferase	221.6613013647
+UniRef50_A7X2X9: Ribosomal protein L11 methyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	122.0813945188
+UniRef50_A7X2X9: Ribosomal protein L11 methyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	99.4352394183
+UniRef50_A7X2X9: Ribosomal protein L11 methyltransferase|unclassified	0.1446674276
+UniRef50_Q8XNK5: Tagatose-6-phosphate kinase	221.4071099835
+UniRef50_Q8XNK5: Tagatose-6-phosphate kinase|g__Staphylococcus.s__Staphylococcus_aureus	91.4304281190
+UniRef50_Q8XNK5: Tagatose-6-phosphate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	87.2103451634
+UniRef50_Q8XNK5: Tagatose-6-phosphate kinase|g__Streptococcus.s__Streptococcus_mutans	42.7117055344
+UniRef50_Q8XNK5: Tagatose-6-phosphate kinase|unclassified	0.0546311667
+UniRef50_Q4L4C2: Fructose specific permease	221.4018198797
+UniRef50_Q4L4C2: Fructose specific permease|g__Staphylococcus.s__Staphylococcus_aureus	118.3401537796
+UniRef50_Q4L4C2: Fructose specific permease|g__Staphylococcus.s__Staphylococcus_epidermidis	103.0616661002
+UniRef50_K0M6S7	221.3253927941
+UniRef50_K0M6S7|g__Staphylococcus.s__Staphylococcus_aureus	221.2021149647
+UniRef50_K0M6S7|unclassified	0.1232778294
+UniRef50_A9H8V7	221.2598075219
+UniRef50_A9H8V7|g__Rhodobacter.s__Rhodobacter_sphaeroides	221.1534515935
+UniRef50_A9H8V7|unclassified	0.1063559285
+UniRef50_Q8CR31: N-succinyldiaminopimelate aminotransferase	221.1036201942
+UniRef50_Q8CR31: N-succinyldiaminopimelate aminotransferase|g__Staphylococcus.s__Staphylococcus_aureus	112.9424390975
+UniRef50_Q8CR31: N-succinyldiaminopimelate aminotransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	108.1611810967
+UniRef50_T1XPL8: Cobalamin synthesis protein, putative	221.0829967367
+UniRef50_T1XPL8: Cobalamin synthesis protein, putative|g__Staphylococcus.s__Staphylococcus_aureus	129.9135611603
+UniRef50_T1XPL8: Cobalamin synthesis protein, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	91.1694355764
+UniRef50_Q6GEY2: Hydroxymethylpyrimidine/phosphomethylpyrimidine kinase	220.8876174006
+UniRef50_Q6GEY2: Hydroxymethylpyrimidine/phosphomethylpyrimidine kinase|g__Staphylococcus.s__Staphylococcus_aureus	146.5905571737
+UniRef50_Q6GEY2: Hydroxymethylpyrimidine/phosphomethylpyrimidine kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	74.0992740091
+UniRef50_Q6GEY2: Hydroxymethylpyrimidine/phosphomethylpyrimidine kinase|unclassified	0.1977862178
+UniRef50_Q74JL8: Cytidylate kinase	220.6718101868
+UniRef50_Q74JL8: Cytidylate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	87.2435936738
+UniRef50_Q74JL8: Cytidylate kinase|g__Staphylococcus.s__Staphylococcus_aureus	79.2156691053
+UniRef50_Q74JL8: Cytidylate kinase|g__Streptococcus.s__Streptococcus_mutans	54.1300803769
+UniRef50_Q74JL8: Cytidylate kinase|unclassified	0.0824670308
+UniRef50_P62221: Protein RecA	220.5682015671
+UniRef50_P62221: Protein RecA|g__Staphylococcus.s__Staphylococcus_aureus	134.6350175711
+UniRef50_P62221: Protein RecA|g__Staphylococcus.s__Staphylococcus_epidermidis	85.9331839960
+UniRef50_A7X442: NH(3)-dependent NAD(+) synthetase	220.4972843370
+UniRef50_A7X442: NH(3)-dependent NAD(+) synthetase|g__Staphylococcus.s__Staphylococcus_aureus	110.1072697735
+UniRef50_A7X442: NH(3)-dependent NAD(+) synthetase|g__Staphylococcus.s__Staphylococcus_epidermidis	76.9530386290
+UniRef50_A7X442: NH(3)-dependent NAD(+) synthetase|g__Escherichia.s__Escherichia_coli	20.4116890908
+UniRef50_A7X442: NH(3)-dependent NAD(+) synthetase|g__Streptococcus.s__Streptococcus_mutans	11.7562513107
+UniRef50_A7X442: NH(3)-dependent NAD(+) synthetase|unclassified	1.2690355330
+UniRef50_Q2FK43: Pyruvate formate-lyase-activating enzyme	220.4342822681
+UniRef50_Q2FK43: Pyruvate formate-lyase-activating enzyme|g__Staphylococcus.s__Staphylococcus_epidermidis	132.3629994453
+UniRef50_Q2FK43: Pyruvate formate-lyase-activating enzyme|g__Staphylococcus.s__Staphylococcus_aureus	86.0029353134
+UniRef50_Q2FK43: Pyruvate formate-lyase-activating enzyme|unclassified	2.0683475095
+UniRef50_O32091	220.3384086764
+UniRef50_O32091|g__Staphylococcus.s__Staphylococcus_aureus	77.7924319064
+UniRef50_O32091|g__Streptococcus.s__Streptococcus_mutans	75.4112623095
+UniRef50_O32091|g__Staphylococcus.s__Staphylococcus_epidermidis	67.1347144605
+UniRef50_A6Q235: 3-dehydroquinate dehydratase	220.3368759822
+UniRef50_A6Q235: 3-dehydroquinate dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	220.3368759822
+UniRef50_P38527: Transcription termination factor Rho	220.1713003241
+UniRef50_P38527: Transcription termination factor Rho|g__Staphylococcus.s__Staphylococcus_aureus	116.3646556240
+UniRef50_P38527: Transcription termination factor Rho|g__Staphylococcus.s__Staphylococcus_epidermidis	103.8066447001
+UniRef50_Q2YSR2: Probable transcriptional regulatory protein SAB0618	219.8055952720
+UniRef50_Q2YSR2: Probable transcriptional regulatory protein SAB0618|g__Staphylococcus.s__Staphylococcus_aureus	117.2405826884
+UniRef50_Q2YSR2: Probable transcriptional regulatory protein SAB0618|g__Staphylococcus.s__Staphylococcus_epidermidis	102.5650125836
+UniRef50_B9EA42	219.7582607063
+UniRef50_B9EA42|g__Staphylococcus.s__Staphylococcus_epidermidis	145.6869960554
+UniRef50_B9EA42|g__Staphylococcus.s__Staphylococcus_aureus	74.0712646509
+UniRef50_T1Y682: Transporter	219.6678899622
+UniRef50_T1Y682: Transporter|g__Staphylococcus.s__Staphylococcus_aureus	131.2748540924
+UniRef50_T1Y682: Transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	88.3930358698
+UniRef50_K0LCS5: Sulfite reductase (NADPH) alpha subunit	219.4465943589
+UniRef50_K0LCS5: Sulfite reductase (NADPH) alpha subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	112.9547584050
+UniRef50_K0LCS5: Sulfite reductase (NADPH) alpha subunit|g__Staphylococcus.s__Staphylococcus_aureus	106.4918359539
+UniRef50_D3QJ45: Lysophospholipase/Monoglyceride lipase	219.2075782907
+UniRef50_D3QJ45: Lysophospholipase/Monoglyceride lipase|g__Staphylococcus.s__Staphylococcus_epidermidis	114.6091173621
+UniRef50_D3QJ45: Lysophospholipase/Monoglyceride lipase|g__Staphylococcus.s__Staphylococcus_aureus	104.5984609286
+UniRef50_Q5HHC7: NAD-specific glutamate dehydrogenase	219.1850229011
+UniRef50_Q5HHC7: NAD-specific glutamate dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	124.2518671198
+UniRef50_Q5HHC7: NAD-specific glutamate dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	94.7998200191
+UniRef50_Q5HHC7: NAD-specific glutamate dehydrogenase|unclassified	0.1333357621
+UniRef50_P39766: Uracil permease	219.1593477714
+UniRef50_P39766: Uracil permease|g__Staphylococcus.s__Staphylococcus_aureus	110.4996230072
+UniRef50_P39766: Uracil permease|g__Staphylococcus.s__Staphylococcus_epidermidis	108.6597247642
+UniRef50_Q5HM36: Galactose-6-phosphate isomerase subunit LacB	218.9331672820
+UniRef50_Q5HM36: Galactose-6-phosphate isomerase subunit LacB|g__Staphylococcus.s__Staphylococcus_epidermidis	104.4283969600
+UniRef50_Q5HM36: Galactose-6-phosphate isomerase subunit LacB|g__Staphylococcus.s__Staphylococcus_aureus	93.0907684830
+UniRef50_Q5HM36: Galactose-6-phosphate isomerase subunit LacB|g__Streptococcus.s__Streptococcus_mutans	21.4140018390
+UniRef50_Q8FW95: Bacterioferritin	218.8418083461
+UniRef50_Q8FW95: Bacterioferritin|g__Rhodobacter.s__Rhodobacter_sphaeroides	218.0306100976
+UniRef50_Q8FW95: Bacterioferritin|unclassified	0.8111982485
+UniRef50_Q8EU05: Chaperone protein ClpB	218.6801514446
+UniRef50_Q8EU05: Chaperone protein ClpB|g__Staphylococcus.s__Staphylococcus_aureus	142.8615114341
+UniRef50_Q8EU05: Chaperone protein ClpB|g__Staphylococcus.s__Staphylococcus_epidermidis	75.8186400106
+UniRef50_D6SEC7: DHHA1 domain protein	218.5739600823
+UniRef50_D6SEC7: DHHA1 domain protein|g__Staphylococcus.s__Staphylococcus_aureus	111.0611578454
+UniRef50_D6SEC7: DHHA1 domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	107.5128022369
+UniRef50_Q0BUN4: 50S ribosomal protein L18	218.5262393201
+UniRef50_Q0BUN4: 50S ribosomal protein L18|g__Rhodobacter.s__Rhodobacter_sphaeroides	134.8475648947
+UniRef50_Q0BUN4: 50S ribosomal protein L18|g__Streptococcus.s__Streptococcus_mutans	52.8256434314
+UniRef50_Q0BUN4: 50S ribosomal protein L18|g__Staphylococcus.s__Staphylococcus_aureus	27.9877014811
+UniRef50_Q0BUN4: 50S ribosomal protein L18|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8653295129
+UniRef50_Q5HL91: Perfringolysin O regulator protein, putative	218.4578651816
+UniRef50_Q5HL91: Perfringolysin O regulator protein, putative|g__Staphylococcus.s__Staphylococcus_aureus	118.3064122750
+UniRef50_Q5HL91: Perfringolysin O regulator protein, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	100.1514529066
+UniRef50_Q2FJI0: Methionine import ATP-binding protein MetN 1	218.3366307088
+UniRef50_Q2FJI0: Methionine import ATP-binding protein MetN 1|g__Staphylococcus.s__Staphylococcus_aureus	138.0432503214
+UniRef50_Q2FJI0: Methionine import ATP-binding protein MetN 1|g__Staphylococcus.s__Staphylococcus_epidermidis	80.2933803874
+UniRef50_P37560	218.2196373065
+UniRef50_P37560|g__Staphylococcus.s__Staphylococcus_aureus	196.5344920937
+UniRef50_P37560|g__Staphylococcus.s__Staphylococcus_epidermidis	21.6851452128
+UniRef50_B9MKF3: DNA-directed RNA polymerase subunit alpha	218.0793579549
+UniRef50_B9MKF3: DNA-directed RNA polymerase subunit alpha|g__Staphylococcus.s__Staphylococcus_epidermidis	84.1822100876
+UniRef50_B9MKF3: DNA-directed RNA polymerase subunit alpha|g__Staphylococcus.s__Staphylococcus_aureus	81.0303291339
+UniRef50_B9MKF3: DNA-directed RNA polymerase subunit alpha|g__Streptococcus.s__Streptococcus_mutans	41.6946099998
+UniRef50_B9MKF3: DNA-directed RNA polymerase subunit alpha|g__Streptococcus.s__Streptococcus_agalactiae	9.8403623538
+UniRef50_B9MKF3: DNA-directed RNA polymerase subunit alpha|g__Clostridium.s__Clostridium_beijerinckii	1.1337868481
+UniRef50_B9MKF3: DNA-directed RNA polymerase subunit alpha|unclassified	0.1980595319
+UniRef50_Q6GF11: Protein SprT-like	217.9184266392
+UniRef50_Q6GF11: Protein SprT-like|g__Staphylococcus.s__Staphylococcus_aureus	194.0749751098
+UniRef50_Q6GF11: Protein SprT-like|g__Staphylococcus.s__Staphylococcus_epidermidis	23.8434515294
+UniRef50_P65168: Inosine-5'-monophosphate dehydrogenase	217.6480620450
+UniRef50_P65168: Inosine-5'-monophosphate dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	97.8808865139
+UniRef50_P65168: Inosine-5'-monophosphate dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	84.2808823057
+UniRef50_P65168: Inosine-5'-monophosphate dehydrogenase|g__Escherichia.s__Escherichia_coli	21.4135062514
+UniRef50_P65168: Inosine-5'-monophosphate dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	7.2461387457
+UniRef50_P65168: Inosine-5'-monophosphate dehydrogenase|g__Streptococcus.s__Streptococcus_agalactiae	4.8418063553
+UniRef50_P65168: Inosine-5'-monophosphate dehydrogenase|g__Deinococcus.s__Deinococcus_radiodurans	0.8952551477
+UniRef50_P65168: Inosine-5'-monophosphate dehydrogenase|g__Helicobacter.s__Helicobacter_pylori	0.7283321194
+UniRef50_P65168: Inosine-5'-monophosphate dehydrogenase|unclassified	0.3612546058
+UniRef50_S4X548: O-acetylserine dependent cystathionine beta-synthase	217.5445294343
+UniRef50_S4X548: O-acetylserine dependent cystathionine beta-synthase|g__Staphylococcus.s__Staphylococcus_aureus	146.2226431738
+UniRef50_S4X548: O-acetylserine dependent cystathionine beta-synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	71.3218862605
+UniRef50_A7X202: Nuclease SbcCD subunit D	217.4165633629
+UniRef50_A7X202: Nuclease SbcCD subunit D|g__Staphylococcus.s__Staphylococcus_aureus	134.9932529528
+UniRef50_A7X202: Nuclease SbcCD subunit D|g__Staphylococcus.s__Staphylococcus_epidermidis	82.4233104101
+UniRef50_Q03UB1: Ribosomal RNA large subunit methyltransferase H	217.4121570008
+UniRef50_Q03UB1: Ribosomal RNA large subunit methyltransferase H|g__Staphylococcus.s__Staphylococcus_aureus	215.3201067916
+UniRef50_Q03UB1: Ribosomal RNA large subunit methyltransferase H|g__Clostridium.s__Clostridium_beijerinckii	2.0920502092
+UniRef50_U5UPA0: Transcription termination factor NusA	217.3783553025
+UniRef50_U5UPA0: Transcription termination factor NusA|g__Staphylococcus.s__Staphylococcus_aureus	110.9772955748
+UniRef50_U5UPA0: Transcription termination factor NusA|g__Staphylococcus.s__Staphylococcus_epidermidis	106.4010597277
+UniRef50_F7Z135: Purine operon repressor, PurR	217.3288422234
+UniRef50_F7Z135: Purine operon repressor, PurR|g__Staphylococcus.s__Staphylococcus_aureus	134.5757743758
+UniRef50_F7Z135: Purine operon repressor, PurR|g__Staphylococcus.s__Staphylococcus_epidermidis	82.7530678477
+UniRef50_Q2FDM8: HTH-type transcriptional regulator ArcR	217.2498971448
+UniRef50_Q2FDM8: HTH-type transcriptional regulator ArcR|g__Staphylococcus.s__Staphylococcus_aureus	144.1536907731
+UniRef50_Q2FDM8: HTH-type transcriptional regulator ArcR|g__Staphylococcus.s__Staphylococcus_epidermidis	73.0962063716
+UniRef50_C0SPB0	217.2364565563
+UniRef50_C0SPB0|g__Staphylococcus.s__Staphylococcus_aureus	125.6014729671
+UniRef50_C0SPB0|g__Staphylococcus.s__Staphylococcus_epidermidis	91.6349835892
+UniRef50_Q9CE10: UDP-N-acetylmuramate--L-alanine ligase	217.2221637137
+UniRef50_Q9CE10: UDP-N-acetylmuramate--L-alanine ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	91.4856504609
+UniRef50_Q9CE10: UDP-N-acetylmuramate--L-alanine ligase|g__Staphylococcus.s__Staphylococcus_aureus	78.8917541708
+UniRef50_Q9CE10: UDP-N-acetylmuramate--L-alanine ligase|g__Streptococcus.s__Streptococcus_mutans	44.8134950116
+UniRef50_Q9CE10: UDP-N-acetylmuramate--L-alanine ligase|g__Streptococcus.s__Streptococcus_agalactiae	2.0312640705
+UniRef50_Q8CNH5: General stress protein 20U	217.1370967337
+UniRef50_Q8CNH5: General stress protein 20U|g__Staphylococcus.s__Staphylococcus_aureus	117.0010881044
+UniRef50_Q8CNH5: General stress protein 20U|g__Staphylococcus.s__Staphylococcus_epidermidis	100.1360086293
+UniRef50_Q038N5: Chaperone protein DnaJ	217.0265858652
+UniRef50_Q038N5: Chaperone protein DnaJ|g__Staphylococcus.s__Staphylococcus_aureus	84.1084712390
+UniRef50_Q038N5: Chaperone protein DnaJ|g__Staphylococcus.s__Staphylococcus_epidermidis	77.3203467871
+UniRef50_Q038N5: Chaperone protein DnaJ|g__Streptococcus.s__Streptococcus_mutans	53.2749434776
+UniRef50_Q038N5: Chaperone protein DnaJ|g__Streptococcus.s__Streptococcus_agalactiae	2.3228243615
+UniRef50_P39651	217.0064873882
+UniRef50_P39651|g__Staphylococcus.s__Staphylococcus_aureus	112.3008871871
+UniRef50_P39651|g__Staphylococcus.s__Staphylococcus_epidermidis	104.3929264112
+UniRef50_P39651|unclassified	0.3126737900
+UniRef50_F8FR22: ABC transporter permease protein	216.8645281020
+UniRef50_F8FR22: ABC transporter permease protein|g__Staphylococcus.s__Staphylococcus_aureus	126.2838208314
+UniRef50_F8FR22: ABC transporter permease protein|g__Staphylococcus.s__Staphylococcus_epidermidis	90.5807072706
+UniRef50_Q3IW63	216.7616852211
+UniRef50_Q3IW63|g__Rhodobacter.s__Rhodobacter_sphaeroides	202.9927280749
+UniRef50_Q3IW63|unclassified	13.7689571462
+UniRef50_P0CE57: Transposase InsH for insertion sequence element IS5R	216.4610566144
+UniRef50_P0CE57: Transposase InsH for insertion sequence element IS5R|g__Escherichia.s__Escherichia_coli	216.4610566144
+UniRef50_L7WPL2	216.4590893527
+UniRef50_L7WPL2|g__Staphylococcus.s__Staphylococcus_aureus	182.1812226770
+UniRef50_L7WPL2|g__Staphylococcus.s__Staphylococcus_epidermidis	34.2778666758
+UniRef50_B9DKN5: Biotin synthase	216.4552363007
+UniRef50_B9DKN5: Biotin synthase|g__Staphylococcus.s__Staphylococcus_aureus	108.2960971773
+UniRef50_B9DKN5: Biotin synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	108.0190027903
+UniRef50_B9DKN5: Biotin synthase|unclassified	0.1401363331
+UniRef50_Q4L4U2: Protein NagD homolog	216.4077501998
+UniRef50_Q4L4U2: Protein NagD homolog|g__Staphylococcus.s__Staphylococcus_aureus	136.2263825005
+UniRef50_Q4L4U2: Protein NagD homolog|g__Staphylococcus.s__Staphylococcus_epidermidis	79.6670126677
+UniRef50_Q4L4U2: Protein NagD homolog|unclassified	0.5143550316
+UniRef50_D3QHK9: Glycerate kinase	216.3369355980
+UniRef50_D3QHK9: Glycerate kinase|g__Staphylococcus.s__Staphylococcus_aureus	130.7129153064
+UniRef50_D3QHK9: Glycerate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	85.6240202915
+UniRef50_P77499: Probable ATP-dependent transporter SufC	216.1310223874
+UniRef50_P77499: Probable ATP-dependent transporter SufC|g__Rhodobacter.s__Rhodobacter_sphaeroides	133.5536634452
+UniRef50_P77499: Probable ATP-dependent transporter SufC|g__Streptococcus.s__Streptococcus_mutans	62.6720600086
+UniRef50_P77499: Probable ATP-dependent transporter SufC|g__Escherichia.s__Escherichia_coli	16.0158765163
+UniRef50_P77499: Probable ATP-dependent transporter SufC|g__Streptococcus.s__Streptococcus_agalactiae	3.8894224173
+UniRef50_F0P9K4: DNA polymerase III delta prime subunit	215.9124099820
+UniRef50_F0P9K4: DNA polymerase III delta prime subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	108.5814905502
+UniRef50_F0P9K4: DNA polymerase III delta prime subunit|g__Staphylococcus.s__Staphylococcus_aureus	106.2234997198
+UniRef50_F0P9K4: DNA polymerase III delta prime subunit|unclassified	1.1074197121
+UniRef50_Q5HE75: Fructose-bisphosphate aldolase	215.8229204434
+UniRef50_Q5HE75: Fructose-bisphosphate aldolase|g__Staphylococcus.s__Staphylococcus_epidermidis	126.0817226560
+UniRef50_Q5HE75: Fructose-bisphosphate aldolase|g__Staphylococcus.s__Staphylococcus_aureus	89.0486642966
+UniRef50_Q5HE75: Fructose-bisphosphate aldolase|unclassified	0.6925334907
+UniRef50_E8SKI8: Ribosomal-protein-S18p-alanine acetyltransferase	215.7977198280
+UniRef50_E8SKI8: Ribosomal-protein-S18p-alanine acetyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	112.3967807699
+UniRef50_E8SKI8: Ribosomal-protein-S18p-alanine acetyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	103.4009390581
+UniRef50_Q7UQD2: UPF0365 protein RB6389	215.5508924878
+UniRef50_Q7UQD2: UPF0365 protein RB6389|g__Staphylococcus.s__Staphylococcus_epidermidis	105.3214151287
+UniRef50_Q7UQD2: UPF0365 protein RB6389|g__Staphylococcus.s__Staphylococcus_aureus	102.8321085638
+UniRef50_Q7UQD2: UPF0365 protein RB6389|g__Clostridium.s__Clostridium_beijerinckii	7.3973687953
+UniRef50_Q9K706: Gluconeogenesis factor	215.3130141064
+UniRef50_Q9K706: Gluconeogenesis factor|g__Staphylococcus.s__Staphylococcus_aureus	122.6011924270
+UniRef50_Q9K706: Gluconeogenesis factor|g__Staphylococcus.s__Staphylococcus_epidermidis	92.7118216794
+UniRef50_P49778: Elongation factor P	215.1877781344
+UniRef50_P49778: Elongation factor P|g__Staphylococcus.s__Staphylococcus_aureus	134.4824017652
+UniRef50_P49778: Elongation factor P|g__Staphylococcus.s__Staphylococcus_epidermidis	80.7053763692
+UniRef50_E8SF08: N-acetyl-L,L-diaminopimelate deacetylase-like protein	215.0403680049
+UniRef50_E8SF08: N-acetyl-L,L-diaminopimelate deacetylase-like protein|g__Staphylococcus.s__Staphylococcus_aureus	114.3532244012
+UniRef50_E8SF08: N-acetyl-L,L-diaminopimelate deacetylase-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	100.6871436038
+UniRef50_Q56198: Glucokinase	215.0381254248
+UniRef50_Q56198: Glucokinase|g__Staphylococcus.s__Staphylococcus_epidermidis	123.2548164236
+UniRef50_Q56198: Glucokinase|g__Staphylococcus.s__Staphylococcus_aureus	91.7833090012
+UniRef50_D2N9Z4: Aminoacyltransferase FemA (Factor essential forexpression of methicillin resistance A)	215.0369421930
+UniRef50_D2N9Z4: Aminoacyltransferase FemA (Factor essential forexpression of methicillin resistance A)|g__Staphylococcus.s__Staphylococcus_aureus	151.4217302580
+UniRef50_D2N9Z4: Aminoacyltransferase FemA (Factor essential forexpression of methicillin resistance A)|g__Staphylococcus.s__Staphylococcus_epidermidis	63.6152119350
+UniRef50_L7WYV5: Dihydroxyacetone kinase subunit DhaK	214.8155787277
+UniRef50_L7WYV5: Dihydroxyacetone kinase subunit DhaK|g__Staphylococcus.s__Staphylococcus_aureus	107.9772633665
+UniRef50_L7WYV5: Dihydroxyacetone kinase subunit DhaK|g__Staphylococcus.s__Staphylococcus_epidermidis	106.8383153612
+UniRef50_Q5HLP5	214.6492787685
+UniRef50_Q5HLP5|g__Staphylococcus.s__Staphylococcus_epidermidis	214.6492787685
+UniRef50_I0C1H9: FMN reductase	214.5882263525
+UniRef50_I0C1H9: FMN reductase|g__Staphylococcus.s__Staphylococcus_aureus	214.5882263525
+UniRef50_C9RUW3: ComE operon protein 2	214.1857351544
+UniRef50_C9RUW3: ComE operon protein 2|g__Staphylococcus.s__Staphylococcus_epidermidis	128.9612912455
+UniRef50_C9RUW3: ComE operon protein 2|g__Staphylococcus.s__Staphylococcus_aureus	85.2244439090
+UniRef50_K0L0Y0: Pyruvate oxidase	214.1393709165
+UniRef50_K0L0Y0: Pyruvate oxidase|g__Staphylococcus.s__Staphylococcus_epidermidis	112.4277356987
+UniRef50_K0L0Y0: Pyruvate oxidase|g__Staphylococcus.s__Staphylococcus_aureus	101.7116352178
+UniRef50_I0C7C2	214.1038527944
+UniRef50_I0C7C2|g__Staphylococcus.s__Staphylococcus_aureus	106.4841331248
+UniRef50_I0C7C2|g__Staphylococcus.s__Staphylococcus_epidermidis	103.9116294052
+UniRef50_I0C7C2|unclassified	3.7080902643
+UniRef50_Q05207: Protein translocase subunit SecY	214.0601478687
+UniRef50_Q05207: Protein translocase subunit SecY|g__Staphylococcus.s__Staphylococcus_aureus	114.4223550985
+UniRef50_Q05207: Protein translocase subunit SecY|g__Staphylococcus.s__Staphylococcus_epidermidis	99.6377927701
+UniRef50_P33015: UPF0394 inner membrane protein YeeE	213.8263792945
+UniRef50_P33015: UPF0394 inner membrane protein YeeE|g__Staphylococcus.s__Staphylococcus_aureus	105.3610969225
+UniRef50_P33015: UPF0394 inner membrane protein YeeE|g__Staphylococcus.s__Staphylococcus_epidermidis	77.4736380436
+UniRef50_P33015: UPF0394 inner membrane protein YeeE|g__Escherichia.s__Escherichia_coli	30.9916443283
+UniRef50_Q5HH71: UPF0477 protein SACOL1020	213.5372447401
+UniRef50_Q5HH71: UPF0477 protein SACOL1020|g__Staphylococcus.s__Staphylococcus_epidermidis	113.1545226694
+UniRef50_Q5HH71: UPF0477 protein SACOL1020|g__Staphylococcus.s__Staphylococcus_aureus	100.3827220707
+UniRef50_P65904: Phosphoribosylformylglycinamidine synthase 1	213.2314574474
+UniRef50_P65904: Phosphoribosylformylglycinamidine synthase 1|g__Staphylococcus.s__Staphylococcus_aureus	130.1921923456
+UniRef50_P65904: Phosphoribosylformylglycinamidine synthase 1|g__Staphylococcus.s__Staphylococcus_epidermidis	83.0392651017
+UniRef50_A7X6X6: Pantothenate synthetase	213.1510175525
+UniRef50_A7X6X6: Pantothenate synthetase|g__Staphylococcus.s__Staphylococcus_aureus	113.8647257049
+UniRef50_A7X6X6: Pantothenate synthetase|g__Staphylococcus.s__Staphylococcus_epidermidis	99.2862918476
+UniRef50_Q4L6U5: Probable nicotinate-nucleotide adenylyltransferase	213.1326406662
+UniRef50_Q4L6U5: Probable nicotinate-nucleotide adenylyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	113.1801703312
+UniRef50_Q4L6U5: Probable nicotinate-nucleotide adenylyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	98.7529012007
+UniRef50_Q4L6U5: Probable nicotinate-nucleotide adenylyltransferase|unclassified	1.1995691344
+UniRef50_P74892: Sucrose operon repressor	212.6962723224
+UniRef50_P74892: Sucrose operon repressor|g__Staphylococcus.s__Staphylococcus_epidermidis	109.9805958628
+UniRef50_P74892: Sucrose operon repressor|g__Staphylococcus.s__Staphylococcus_aureus	102.7156764596
+UniRef50_G2JZ43: Carnitine transport permease protein OpuCB	212.6433144527
+UniRef50_G2JZ43: Carnitine transport permease protein OpuCB|g__Staphylococcus.s__Staphylococcus_aureus	107.6173660895
+UniRef50_G2JZ43: Carnitine transport permease protein OpuCB|g__Staphylococcus.s__Staphylococcus_epidermidis	61.6081204665
+UniRef50_G2JZ43: Carnitine transport permease protein OpuCB|g__Streptococcus.s__Streptococcus_mutans	43.4178278967
+UniRef50_A4WVY8: Ribosomal RNA small subunit methyltransferase G	212.6065274356
+UniRef50_A4WVY8: Ribosomal RNA small subunit methyltransferase G|g__Rhodobacter.s__Rhodobacter_sphaeroides	211.1537048793
+UniRef50_A4WVY8: Ribosomal RNA small subunit methyltransferase G|unclassified	1.4528225563
+UniRef50_Q55848: Ribose-phosphate pyrophosphokinase	212.3942218158
+UniRef50_Q55848: Ribose-phosphate pyrophosphokinase|g__Staphylococcus.s__Staphylococcus_epidermidis	113.4796880102
+UniRef50_Q55848: Ribose-phosphate pyrophosphokinase|g__Staphylococcus.s__Staphylococcus_aureus	92.8457031538
+UniRef50_Q55848: Ribose-phosphate pyrophosphokinase|g__Streptococcus.s__Streptococcus_agalactiae	3.1055900621
+UniRef50_Q55848: Ribose-phosphate pyrophosphokinase|g__Clostridium.s__Clostridium_beijerinckii	2.4176607562
+UniRef50_Q55848: Ribose-phosphate pyrophosphokinase|unclassified	0.5455798335
+UniRef50_Q49YW6	212.2912266486
+UniRef50_Q49YW6|g__Staphylococcus.s__Staphylococcus_aureus	117.1345331864
+UniRef50_Q49YW6|g__Staphylococcus.s__Staphylococcus_epidermidis	95.1566934621
+UniRef50_R9YS82: tRNA threonylcarbamoyl adenosine modification protein YeaZ	212.1763699443
+UniRef50_R9YS82: tRNA threonylcarbamoyl adenosine modification protein YeaZ|g__Staphylococcus.s__Staphylococcus_aureus	110.4420975253
+UniRef50_R9YS82: tRNA threonylcarbamoyl adenosine modification protein YeaZ|g__Staphylococcus.s__Staphylococcus_epidermidis	101.7342724190
+UniRef50_C3PFR3: ATP synthase subunit alpha	212.1736688165
+UniRef50_C3PFR3: ATP synthase subunit alpha|g__Staphylococcus.s__Staphylococcus_aureus	114.0212418380
+UniRef50_C3PFR3: ATP synthase subunit alpha|g__Staphylococcus.s__Staphylococcus_epidermidis	70.6537104807
+UniRef50_C3PFR3: ATP synthase subunit alpha|g__Streptococcus.s__Streptococcus_mutans	27.4670650663
+UniRef50_C3PFR3: ATP synthase subunit alpha|unclassified	0.0316514315
+UniRef50_Q8CQ28: ABC transporter	212.1670743218
+UniRef50_Q8CQ28: ABC transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	110.6149525059
+UniRef50_Q8CQ28: ABC transporter|g__Staphylococcus.s__Staphylococcus_aureus	101.5521218159
+UniRef50_A5IUD7: Phage transcriptional regulator, RinA family	211.9965010286
+UniRef50_A5IUD7: Phage transcriptional regulator, RinA family|g__Staphylococcus.s__Staphylococcus_aureus	210.6702410816
+UniRef50_A5IUD7: Phage transcriptional regulator, RinA family|unclassified	1.3262599469
+UniRef50_O31677: 7-carboxy-7-deazaguanine synthase	211.9370993913
+UniRef50_O31677: 7-carboxy-7-deazaguanine synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	110.2207271423
+UniRef50_O31677: 7-carboxy-7-deazaguanine synthase|g__Staphylococcus.s__Staphylococcus_aureus	101.7163722490
+UniRef50_P54452	211.7494066963
+UniRef50_P54452|g__Staphylococcus.s__Staphylococcus_epidermidis	115.2540340777
+UniRef50_P54452|g__Staphylococcus.s__Staphylococcus_aureus	96.4953726185
+UniRef50_D3QHC5: Alkaline phosphatase like protein	211.5687142165
+UniRef50_D3QHC5: Alkaline phosphatase like protein|g__Staphylococcus.s__Staphylococcus_aureus	134.4653282181
+UniRef50_D3QHC5: Alkaline phosphatase like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	77.1033859984
+UniRef50_Q2LTR7: Proline--tRNA ligase	211.4142951962
+UniRef50_Q2LTR7: Proline--tRNA ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	130.8513096436
+UniRef50_Q2LTR7: Proline--tRNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	77.7951135666
+UniRef50_Q2LTR7: Proline--tRNA ligase|g__Clostridium.s__Clostridium_beijerinckii	2.7340498228
+UniRef50_Q2LTR7: Proline--tRNA ligase|unclassified	0.0338221633
+UniRef50_Q5HEB2: Cardiolipin synthase 2	211.3961984823
+UniRef50_Q5HEB2: Cardiolipin synthase 2|g__Staphylococcus.s__Staphylococcus_aureus	134.9378300667
+UniRef50_Q5HEB2: Cardiolipin synthase 2|g__Staphylococcus.s__Staphylococcus_epidermidis	76.4583684156
+UniRef50_P58336: Fructose-bisphosphate aldolase	211.3862769846
+UniRef50_P58336: Fructose-bisphosphate aldolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	203.5642380208
+UniRef50_P58336: Fructose-bisphosphate aldolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3199470825
+UniRef50_P58336: Fructose-bisphosphate aldolase|unclassified	0.5020918814
+UniRef50_B9DK54: Predicted membrane protein with CBS domains	211.3279409222
+UniRef50_B9DK54: Predicted membrane protein with CBS domains|g__Staphylococcus.s__Staphylococcus_aureus	114.7180623566
+UniRef50_B9DK54: Predicted membrane protein with CBS domains|g__Staphylococcus.s__Staphylococcus_epidermidis	96.6098785655
+UniRef50_Q9SLK0: Peroxisomal isocitrate dehydrogenase [NADP]	211.1975357143
+UniRef50_Q9SLK0: Peroxisomal isocitrate dehydrogenase [NADP]|g__Rhodobacter.s__Rhodobacter_sphaeroides	210.8139476287
+UniRef50_Q9SLK0: Peroxisomal isocitrate dehydrogenase [NADP]|unclassified	0.3835880856
+UniRef50_Q3IV16	211.0773629399
+UniRef50_Q3IV16|g__Rhodobacter.s__Rhodobacter_sphaeroides	211.0773629399
+UniRef50_P52331: RNA polymerase sigma factor SigA	210.9953173706
+UniRef50_P52331: RNA polymerase sigma factor SigA|g__Staphylococcus.s__Staphylococcus_aureus	89.6844512120
+UniRef50_P52331: RNA polymerase sigma factor SigA|g__Staphylococcus.s__Staphylococcus_epidermidis	65.6729530539
+UniRef50_P52331: RNA polymerase sigma factor SigA|g__Streptococcus.s__Streptococcus_mutans	49.5460060309
+UniRef50_P52331: RNA polymerase sigma factor SigA|g__Clostridium.s__Clostridium_beijerinckii	6.0919070738
+UniRef50_Q818M5: Probable glycine dehydrogenase (decarboxylating) subunit 2	210.9910140397
+UniRef50_Q818M5: Probable glycine dehydrogenase (decarboxylating) subunit 2|g__Staphylococcus.s__Staphylococcus_epidermidis	111.0492933162
+UniRef50_Q818M5: Probable glycine dehydrogenase (decarboxylating) subunit 2|g__Staphylococcus.s__Staphylococcus_aureus	99.9417207235
+UniRef50_C5MZU9: Formate/nitrite transporter	210.8324776059
+UniRef50_C5MZU9: Formate/nitrite transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	112.6067482294
+UniRef50_C5MZU9: Formate/nitrite transporter|g__Staphylococcus.s__Staphylococcus_aureus	98.2257293765
+UniRef50_O34697: Bacitracin export ATP-binding protein BceA	210.7982166294
+UniRef50_O34697: Bacitracin export ATP-binding protein BceA|g__Staphylococcus.s__Staphylococcus_epidermidis	155.6846968925
+UniRef50_O34697: Bacitracin export ATP-binding protein BceA|g__Staphylococcus.s__Staphylococcus_aureus	55.1135197368
+UniRef50_O31605: Oligoendopeptidase F homolog	210.7214838236
+UniRef50_O31605: Oligoendopeptidase F homolog|g__Staphylococcus.s__Staphylococcus_epidermidis	108.6350965757
+UniRef50_O31605: Oligoendopeptidase F homolog|g__Staphylococcus.s__Staphylococcus_aureus	101.9044981718
+UniRef50_O31605: Oligoendopeptidase F homolog|unclassified	0.1818890761
+UniRef50_Q49WL3: Ribonuclease J 1	210.4331557780
+UniRef50_Q49WL3: Ribonuclease J 1|g__Staphylococcus.s__Staphylococcus_aureus	97.4562261962
+UniRef50_Q49WL3: Ribonuclease J 1|g__Staphylococcus.s__Staphylococcus_epidermidis	60.6854085423
+UniRef50_Q49WL3: Ribonuclease J 1|g__Streptococcus.s__Streptococcus_mutans	46.3497869145
+UniRef50_Q49WL3: Ribonuclease J 1|g__Streptococcus.s__Streptococcus_agalactiae	5.5680855313
+UniRef50_Q49WL3: Ribonuclease J 1|unclassified	0.3736485936
+UniRef50_U5US29: Sugar-binding domain-containing protein	210.4130893936
+UniRef50_U5US29: Sugar-binding domain-containing protein|g__Staphylococcus.s__Staphylococcus_aureus	106.8211133722
+UniRef50_U5US29: Sugar-binding domain-containing protein|g__Staphylococcus.s__Staphylococcus_epidermidis	103.5919760213
+UniRef50_Q7MDH6: Sugar phosphate permease	210.2453929393
+UniRef50_Q7MDH6: Sugar phosphate permease|g__Staphylococcus.s__Staphylococcus_aureus	117.4758608373
+UniRef50_Q7MDH6: Sugar phosphate permease|g__Staphylococcus.s__Staphylococcus_epidermidis	92.7695321020
+UniRef50_J0G9L6	210.0899177701
+UniRef50_J0G9L6|g__Staphylococcus.s__Staphylococcus_epidermidis	199.9785157877
+UniRef50_J0G9L6|g__Staphylococcus.s__Staphylococcus_aureus	10.1114019824
+UniRef50_Q5HQZ3: Transferrin receptor	210.0545006146
+UniRef50_Q5HQZ3: Transferrin receptor|g__Staphylococcus.s__Staphylococcus_epidermidis	108.0502531043
+UniRef50_Q5HQZ3: Transferrin receptor|g__Staphylococcus.s__Staphylococcus_aureus	101.9141114551
+UniRef50_Q5HQZ3: Transferrin receptor|unclassified	0.0901360552
+UniRef50_B9DIA5: Methylenetetrahydrofolate reductase	210.0425245957
+UniRef50_B9DIA5: Methylenetetrahydrofolate reductase|g__Staphylococcus.s__Staphylococcus_aureus	134.3231702157
+UniRef50_B9DIA5: Methylenetetrahydrofolate reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	75.7193543801
+UniRef50_Q59939: Citrate synthase	209.9402331455
+UniRef50_Q59939: Citrate synthase|g__Staphylococcus.s__Staphylococcus_aureus	102.8760534671
+UniRef50_Q59939: Citrate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	74.2591502324
+UniRef50_Q59939: Citrate synthase|g__Streptococcus.s__Streptococcus_mutans	32.6187713283
+UniRef50_Q59939: Citrate synthase|unclassified	0.1862581178
+UniRef50_J7N1F5: Teichoic acid biosynthesis protein B family protein	209.9039148008
+UniRef50_J7N1F5: Teichoic acid biosynthesis protein B family protein|g__Staphylococcus.s__Staphylococcus_aureus	209.9039148008
+UniRef50_U6BEE8: Cytochrome D ubiquinol oxidase subunit I	209.9033766033
+UniRef50_U6BEE8: Cytochrome D ubiquinol oxidase subunit I|g__Staphylococcus.s__Staphylococcus_aureus	108.2973544658
+UniRef50_U6BEE8: Cytochrome D ubiquinol oxidase subunit I|g__Staphylococcus.s__Staphylococcus_epidermidis	101.6060221376
+UniRef50_Q4L9P9: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	209.8819997089
+UniRef50_Q4L9P9: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	124.2510702325
+UniRef50_Q4L9P9: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	85.6309294764
+UniRef50_C3G5A7: N-acyl-L-amino acid amidohydrolase	209.8790321042
+UniRef50_C3G5A7: N-acyl-L-amino acid amidohydrolase|g__Staphylococcus.s__Staphylococcus_aureus	113.6563139841
+UniRef50_C3G5A7: N-acyl-L-amino acid amidohydrolase|g__Staphylococcus.s__Staphylococcus_epidermidis	96.2227181202
+UniRef50_B1W0Z3: Phosphoglycerate kinase	209.8152076193
+UniRef50_B1W0Z3: Phosphoglycerate kinase|g__Staphylococcus.s__Staphylococcus_aureus	89.8816441659
+UniRef50_B1W0Z3: Phosphoglycerate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	67.6404812183
+UniRef50_B1W0Z3: Phosphoglycerate kinase|g__Streptococcus.s__Streptococcus_mutans	43.4434876774
+UniRef50_B1W0Z3: Phosphoglycerate kinase|g__Clostridium.s__Clostridium_beijerinckii	7.3435704613
+UniRef50_B1W0Z3: Phosphoglycerate kinase|g__Streptococcus.s__Streptococcus_agalactiae	1.5060240964
+UniRef50_C2PG19: Phosphinothricin N-acetyltransferase	209.7353073763
+UniRef50_C2PG19: Phosphinothricin N-acetyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	171.5869551072
+UniRef50_C2PG19: Phosphinothricin N-acetyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	38.1483522691
+UniRef50_C7N3H3: Anion transporter	209.6608892473
+UniRef50_C7N3H3: Anion transporter|g__Staphylococcus.s__Staphylococcus_aureus	113.7096842292
+UniRef50_C7N3H3: Anion transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	95.9512050181
+UniRef50_Q5HFZ9: Glucose-specific phosphotransferase enzyme IIA component	209.2795137278
+UniRef50_Q5HFZ9: Glucose-specific phosphotransferase enzyme IIA component|g__Staphylococcus.s__Staphylococcus_aureus	209.2795137278
+UniRef50_Q3IUV9: TraU	209.2694735157
+UniRef50_Q3IUV9: TraU|g__Rhodobacter.s__Rhodobacter_sphaeroides	204.0525060423
+UniRef50_Q3IUV9: TraU|unclassified	5.2169674734
+UniRef50_Q2FFJ3: Sodium/proline symporter	209.0346626934
+UniRef50_Q2FFJ3: Sodium/proline symporter|g__Staphylococcus.s__Staphylococcus_aureus	109.2725481423
+UniRef50_Q2FFJ3: Sodium/proline symporter|g__Staphylococcus.s__Staphylococcus_epidermidis	99.7621145511
+UniRef50_C1KVA9: GTPase Era	209.0317770219
+UniRef50_C1KVA9: GTPase Era|g__Staphylococcus.s__Staphylococcus_aureus	99.1903265109
+UniRef50_C1KVA9: GTPase Era|g__Staphylococcus.s__Staphylococcus_epidermidis	70.5784085193
+UniRef50_C1KVA9: GTPase Era|g__Streptococcus.s__Streptococcus_mutans	39.2630419916
+UniRef50_P40398	208.9411023657
+UniRef50_P40398|g__Staphylococcus.s__Staphylococcus_aureus	96.2312641542
+UniRef50_P40398|g__Staphylococcus.s__Staphylococcus_epidermidis	87.6672908535
+UniRef50_P40398|g__Escherichia.s__Escherichia_coli	25.0425473580
+UniRef50_T1YBG5: Opine dehydrogenase	208.9247759214
+UniRef50_T1YBG5: Opine dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	113.6009153691
+UniRef50_T1YBG5: Opine dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	95.3238605523
+UniRef50_E8SIQ2: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase	208.6960102411
+UniRef50_E8SIQ2: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase|g__Staphylococcus.s__Staphylococcus_aureus	208.6960102411
+UniRef50_F0P804	208.6669931386
+UniRef50_F0P804|g__Staphylococcus.s__Staphylococcus_epidermidis	119.1916457777
+UniRef50_F0P804|g__Staphylococcus.s__Staphylococcus_aureus	88.5793865346
+UniRef50_F0P804|unclassified	0.8959608264
+UniRef50_A6Q773: 50S ribosomal protein L19	208.6279970985
+UniRef50_A6Q773: 50S ribosomal protein L19|g__Staphylococcus.s__Staphylococcus_epidermidis	196.3072669811
+UniRef50_A6Q773: 50S ribosomal protein L19|g__Staphylococcus.s__Staphylococcus_aureus	12.3207301173
+UniRef50_Q2FG85: Holliday junction ATP-dependent DNA helicase RuvA	208.6169479896
+UniRef50_Q2FG85: Holliday junction ATP-dependent DNA helicase RuvA|g__Staphylococcus.s__Staphylococcus_aureus	129.6519410324
+UniRef50_Q2FG85: Holliday junction ATP-dependent DNA helicase RuvA|g__Staphylococcus.s__Staphylococcus_epidermidis	78.9650069571
+UniRef50_P44594: Queuine tRNA-ribosyltransferase	208.5321014111
+UniRef50_P44594: Queuine tRNA-ribosyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	101.9515643758
+UniRef50_P44594: Queuine tRNA-ribosyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	97.2471338953
+UniRef50_P44594: Queuine tRNA-ribosyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0681877167
+UniRef50_P44594: Queuine tRNA-ribosyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.2254901961
+UniRef50_P44594: Queuine tRNA-ribosyltransferase|unclassified	0.0397252273
+UniRef50_D8MD39: Histidine triad (HIT) protein	208.3108553692
+UniRef50_D8MD39: Histidine triad (HIT) protein|g__Staphylococcus.s__Staphylococcus_aureus	208.3108553692
+UniRef50_Q2FUU3: Imidazole glycerol phosphate synthase subunit hisF	208.2897829518
+UniRef50_Q2FUU3: Imidazole glycerol phosphate synthase subunit hisF|g__Staphylococcus.s__Staphylococcus_aureus	208.2897829518
+UniRef50_B9DKR8: Mevalonate kinase	208.1036772536
+UniRef50_B9DKR8: Mevalonate kinase|g__Staphylococcus.s__Staphylococcus_aureus	113.5167685663
+UniRef50_B9DKR8: Mevalonate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	94.5869086874
+UniRef50_L7WY01	207.9693320140
+UniRef50_L7WY01|g__Staphylococcus.s__Staphylococcus_aureus	116.0815326110
+UniRef50_L7WY01|g__Staphylococcus.s__Staphylococcus_epidermidis	87.3277535286
+UniRef50_L7WY01|unclassified	4.5600458745
+UniRef50_Q5WIL7: Phosphonates import ATP-binding protein PhnC	207.7087272914
+UniRef50_Q5WIL7: Phosphonates import ATP-binding protein PhnC|g__Staphylococcus.s__Staphylococcus_epidermidis	108.7670053357
+UniRef50_Q5WIL7: Phosphonates import ATP-binding protein PhnC|g__Staphylococcus.s__Staphylococcus_aureus	98.8003838612
+UniRef50_Q5WIL7: Phosphonates import ATP-binding protein PhnC|unclassified	0.1413380945
+UniRef50_B7HCU0: Chaperone protein DnaK	207.6801647514
+UniRef50_B7HCU0: Chaperone protein DnaK|g__Staphylococcus.s__Staphylococcus_epidermidis	110.7294189154
+UniRef50_B7HCU0: Chaperone protein DnaK|g__Streptococcus.s__Streptococcus_mutans	61.6397208786
+UniRef50_B7HCU0: Chaperone protein DnaK|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.7825462708
+UniRef50_B7HCU0: Chaperone protein DnaK|g__Streptococcus.s__Streptococcus_agalactiae	3.9799323344
+UniRef50_B7HCU0: Chaperone protein DnaK|g__Propionibacterium.s__Propionibacterium_acnes	0.5485463522
+UniRef50_Q5HM44: Zinc-type alcohol dehydrogenase-like protein SERP1785	207.2663325339
+UniRef50_Q5HM44: Zinc-type alcohol dehydrogenase-like protein SERP1785|g__Staphylococcus.s__Staphylococcus_aureus	127.8759022245
+UniRef50_Q5HM44: Zinc-type alcohol dehydrogenase-like protein SERP1785|g__Staphylococcus.s__Staphylococcus_epidermidis	79.3904303094
+UniRef50_Q6G5Y3	207.2610578400
+UniRef50_Q6G5Y3|g__Staphylococcus.s__Staphylococcus_aureus	140.6122680655
+UniRef50_Q6G5Y3|g__Staphylococcus.s__Staphylococcus_epidermidis	65.6646911512
+UniRef50_Q6G5Y3|unclassified	0.9840986234
+UniRef50_D2J8Q4	207.2346308815
+UniRef50_D2J8Q4|g__Staphylococcus.s__Staphylococcus_epidermidis	206.3963709620
+UniRef50_D2J8Q4|unclassified	0.8382599196
+UniRef50_P36967: Succinyl-CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial	207.2099624789
+UniRef50_P36967: Succinyl-CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial|g__Staphylococcus.s__Staphylococcus_epidermidis	107.8008510396
+UniRef50_P36967: Succinyl-CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial|g__Staphylococcus.s__Staphylococcus_aureus	94.3793695134
+UniRef50_P36967: Succinyl-CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial|g__Acinetobacter.s__Acinetobacter_baumannii	4.5585808581
+UniRef50_P36967: Succinyl-CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial|unclassified	0.4711610677
+UniRef50_B7GLM2: ABC-type oligopeptide transport system, permease component	207.2001896796
+UniRef50_B7GLM2: ABC-type oligopeptide transport system, permease component|g__Staphylococcus.s__Staphylococcus_epidermidis	109.5603383307
+UniRef50_B7GLM2: ABC-type oligopeptide transport system, permease component|g__Staphylococcus.s__Staphylococcus_aureus	97.6398513489
+UniRef50_Q99UN8: Malonyl CoA-acyl carrier protein transacylase	207.1535140020
+UniRef50_Q99UN8: Malonyl CoA-acyl carrier protein transacylase|g__Staphylococcus.s__Staphylococcus_epidermidis	114.0019853304
+UniRef50_Q99UN8: Malonyl CoA-acyl carrier protein transacylase|g__Staphylococcus.s__Staphylococcus_aureus	93.1515286716
+UniRef50_A3PS55	207.0087020767
+UniRef50_A3PS55|g__Rhodobacter.s__Rhodobacter_sphaeroides	207.0087020767
+UniRef50_B9DMC7: Probable DNA-directed RNA polymerase subunit delta	206.8497903212
+UniRef50_B9DMC7: Probable DNA-directed RNA polymerase subunit delta|g__Staphylococcus.s__Staphylococcus_epidermidis	133.8230728072
+UniRef50_B9DMC7: Probable DNA-directed RNA polymerase subunit delta|g__Staphylococcus.s__Staphylococcus_aureus	73.0267175139
+UniRef50_Q49ZB9	206.5740342819
+UniRef50_Q49ZB9|g__Staphylococcus.s__Staphylococcus_epidermidis	106.8405402999
+UniRef50_Q49ZB9|g__Staphylococcus.s__Staphylococcus_aureus	99.7334939820
+UniRef50_Q2SDW0: Nucleoside diphosphate kinase	206.5720753419
+UniRef50_Q2SDW0: Nucleoside diphosphate kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	205.5458496058
+UniRef50_Q2SDW0: Nucleoside diphosphate kinase|unclassified	1.0262257361
+UniRef50_P58381: Enoyl-[acyl-carrier-protein] reductase [NADH] 2	206.1504615041
+UniRef50_P58381: Enoyl-[acyl-carrier-protein] reductase [NADH] 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	205.8714096202
+UniRef50_P58381: Enoyl-[acyl-carrier-protein] reductase [NADH] 2|unclassified	0.2790518839
+UniRef50_T1Y9P7: UDP-N-acetylmuramoylalanyl-D-glutamate--2, 6-diaminopimelate ligase	205.9942223660
+UniRef50_T1Y9P7: UDP-N-acetylmuramoylalanyl-D-glutamate--2, 6-diaminopimelate ligase|g__Staphylococcus.s__Staphylococcus_aureus	106.1152736009
+UniRef50_T1Y9P7: UDP-N-acetylmuramoylalanyl-D-glutamate--2, 6-diaminopimelate ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	99.8789487651
+UniRef50_P39131: UDP-N-acetylglucosamine 2-epimerase	205.9464664198
+UniRef50_P39131: UDP-N-acetylglucosamine 2-epimerase|g__Staphylococcus.s__Staphylococcus_aureus	139.1624771888
+UniRef50_P39131: UDP-N-acetylglucosamine 2-epimerase|g__Staphylococcus.s__Staphylococcus_epidermidis	66.6775896125
+UniRef50_P39131: UDP-N-acetylglucosamine 2-epimerase|unclassified	0.1063996185
+UniRef50_Q5HQ44	205.8748801436
+UniRef50_Q5HQ44|g__Staphylococcus.s__Staphylococcus_aureus	167.5415873793
+UniRef50_Q5HQ44|g__Staphylococcus.s__Staphylococcus_epidermidis	34.6969291279
+UniRef50_Q5HQ44|unclassified	3.6363636364
+UniRef50_O32165: FeS cluster assembly protein SufD	205.7159516733
+UniRef50_O32165: FeS cluster assembly protein SufD|g__Staphylococcus.s__Staphylococcus_epidermidis	103.5432802262
+UniRef50_O32165: FeS cluster assembly protein SufD|g__Staphylococcus.s__Staphylococcus_aureus	102.1726714472
+UniRef50_Q4L8L0: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	205.6828860818
+UniRef50_Q4L8L0: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	128.5312373900
+UniRef50_Q4L8L0: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	77.1516486919
+UniRef50_P21345: Proton glutamate symport protein	205.6555871834
+UniRef50_P21345: Proton glutamate symport protein|g__Staphylococcus.s__Staphylococcus_aureus	88.8801291297
+UniRef50_P21345: Proton glutamate symport protein|g__Staphylococcus.s__Staphylococcus_epidermidis	69.3990494007
+UniRef50_P21345: Proton glutamate symport protein|g__Escherichia.s__Escherichia_coli	30.7160768562
+UniRef50_P21345: Proton glutamate symport protein|g__Clostridium.s__Clostridium_beijerinckii	9.0708250909
+UniRef50_P21345: Proton glutamate symport protein|g__Deinococcus.s__Deinococcus_radiodurans	7.5895067058
+UniRef50_Q2YSP8: Undecaprenyl-diphosphatase	205.6397575832
+UniRef50_Q2YSP8: Undecaprenyl-diphosphatase|g__Staphylococcus.s__Staphylococcus_aureus	115.6529280946
+UniRef50_Q2YSP8: Undecaprenyl-diphosphatase|g__Staphylococcus.s__Staphylococcus_epidermidis	89.9868294886
+UniRef50_B9DIX2: Probable cytosol aminopeptidase	205.5285486845
+UniRef50_B9DIX2: Probable cytosol aminopeptidase|g__Staphylococcus.s__Staphylococcus_aureus	120.5245096638
+UniRef50_B9DIX2: Probable cytosol aminopeptidase|g__Staphylococcus.s__Staphylococcus_epidermidis	84.9394101910
+UniRef50_B9DIX2: Probable cytosol aminopeptidase|unclassified	0.0646288297
+UniRef50_A5IQI7: Iron dependent repressor	205.4477364062
+UniRef50_A5IQI7: Iron dependent repressor|g__Staphylococcus.s__Staphylococcus_epidermidis	123.4925418604
+UniRef50_A5IQI7: Iron dependent repressor|g__Staphylococcus.s__Staphylococcus_aureus	81.9551945459
+UniRef50_Q5HPW3: Transcription factor FapR	205.4091602688
+UniRef50_Q5HPW3: Transcription factor FapR|g__Staphylococcus.s__Staphylococcus_epidermidis	114.6386249455
+UniRef50_Q5HPW3: Transcription factor FapR|g__Staphylococcus.s__Staphylococcus_aureus	90.7705353233
+UniRef50_A7X0W1: Phosphoribosylformylglycinamidine synthase 2	205.4060607105
+UniRef50_A7X0W1: Phosphoribosylformylglycinamidine synthase 2|g__Staphylococcus.s__Staphylococcus_epidermidis	108.6028099074
+UniRef50_A7X0W1: Phosphoribosylformylglycinamidine synthase 2|g__Staphylococcus.s__Staphylococcus_aureus	96.1487474060
+UniRef50_A7X0W1: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.6545033972
+UniRef50_P44681: Ribosome-binding ATPase YchF	205.3366750870
+UniRef50_P44681: Ribosome-binding ATPase YchF|g__Staphylococcus.s__Staphylococcus_aureus	109.1407132721
+UniRef50_P44681: Ribosome-binding ATPase YchF|g__Staphylococcus.s__Staphylococcus_epidermidis	95.2543422292
+UniRef50_P44681: Ribosome-binding ATPase YchF|g__Helicobacter.s__Helicobacter_pylori	0.9416195857
+UniRef50_Q49X88: DNA mismatch repair protein MutS	205.1877387136
+UniRef50_Q49X88: DNA mismatch repair protein MutS|g__Staphylococcus.s__Staphylococcus_epidermidis	112.5876791541
+UniRef50_Q49X88: DNA mismatch repair protein MutS|g__Staphylococcus.s__Staphylococcus_aureus	92.6000595595
+UniRef50_Q5WDJ2: Putative sporulation transcription regulator WhiA	205.0386025882
+UniRef50_Q5WDJ2: Putative sporulation transcription regulator WhiA|g__Staphylococcus.s__Staphylococcus_aureus	118.3440639895
+UniRef50_Q5WDJ2: Putative sporulation transcription regulator WhiA|g__Staphylococcus.s__Staphylococcus_epidermidis	86.6945385987
+UniRef50_Q8CNS2: Protoporphyrinogen oxidase	204.5803940274
+UniRef50_Q8CNS2: Protoporphyrinogen oxidase|g__Staphylococcus.s__Staphylococcus_epidermidis	120.2548169715
+UniRef50_Q8CNS2: Protoporphyrinogen oxidase|g__Staphylococcus.s__Staphylococcus_aureus	84.3255770559
+UniRef50_Q1AU26: Elongation factor G	204.5513390789
+UniRef50_Q1AU26: Elongation factor G|g__Staphylococcus.s__Staphylococcus_aureus	115.3652461112
+UniRef50_Q1AU26: Elongation factor G|g__Staphylococcus.s__Staphylococcus_epidermidis	85.1543680763
+UniRef50_Q1AU26: Elongation factor G|g__Deinococcus.s__Deinococcus_radiodurans	1.6035842271
+UniRef50_Q1AU26: Elongation factor G|g__Propionibacterium.s__Propionibacterium_acnes	1.2212335986
+UniRef50_Q1AU26: Elongation factor G|g__Clostridium.s__Clostridium_beijerinckii	1.2069070656
+UniRef50_D3QD55: Hydrolase (HAD superfamily)	204.3038665910
+UniRef50_D3QD55: Hydrolase (HAD superfamily)|g__Staphylococcus.s__Staphylococcus_epidermidis	123.0259625855
+UniRef50_D3QD55: Hydrolase (HAD superfamily)|g__Staphylococcus.s__Staphylococcus_aureus	81.2779040055
+UniRef50_Q6GDB6: Lactonase drp35	204.0833859497
+UniRef50_Q6GDB6: Lactonase drp35|g__Staphylococcus.s__Staphylococcus_aureus	103.5118260180
+UniRef50_Q6GDB6: Lactonase drp35|g__Staphylococcus.s__Staphylococcus_epidermidis	100.1701466665
+UniRef50_Q6GDB6: Lactonase drp35|unclassified	0.4014132651
+UniRef50_Q3HKK3: Succinylglutamatedesuccinylase/aspartoacylase	204.0273600550
+UniRef50_Q3HKK3: Succinylglutamatedesuccinylase/aspartoacylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	204.0273600550
+UniRef50_Q9ZGN9: ABC transporter family protein	204.0043413082
+UniRef50_Q9ZGN9: ABC transporter family protein|g__Staphylococcus.s__Staphylococcus_aureus	104.5901984599
+UniRef50_Q9ZGN9: ABC transporter family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	99.4141428483
+UniRef50_Q5HQY7: Glycerate kinase family protein	203.9757556481
+UniRef50_Q5HQY7: Glycerate kinase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	102.2929837329
+UniRef50_Q5HQY7: Glycerate kinase family protein|g__Staphylococcus.s__Staphylococcus_aureus	101.6827719152
+UniRef50_Q5HNQ0	203.9233961824
+UniRef50_Q5HNQ0|g__Staphylococcus.s__Staphylococcus_epidermidis	148.2960010171
+UniRef50_Q5HNQ0|g__Staphylococcus.s__Staphylococcus_aureus	55.6273951653
+UniRef50_A7WZ80: Putative antiporter subunit mnhE2	203.5898978680
+UniRef50_A7WZ80: Putative antiporter subunit mnhE2|g__Staphylococcus.s__Staphylococcus_epidermidis	160.9538352879
+UniRef50_A7WZ80: Putative antiporter subunit mnhE2|g__Staphylococcus.s__Staphylococcus_aureus	42.6360625801
+UniRef50_Q3J4T5: Putative metal-dependent protease of the PAD1/JAB1 superfamily	203.5025011781
+UniRef50_Q3J4T5: Putative metal-dependent protease of the PAD1/JAB1 superfamily|g__Rhodobacter.s__Rhodobacter_sphaeroides	203.5025011781
+UniRef50_Q3IUU1	203.4849113457
+UniRef50_Q3IUU1|g__Rhodobacter.s__Rhodobacter_sphaeroides	198.0409904856
+UniRef50_Q3IUU1|unclassified	5.4439208600
+UniRef50_Q5HKI9: Amino acid ABC transporter, amino acid-binding protein	203.3930454164
+UniRef50_Q5HKI9: Amino acid ABC transporter, amino acid-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	191.1958135191
+UniRef50_Q5HKI9: Amino acid ABC transporter, amino acid-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	12.1972318973
+UniRef50_Q6GFX2: Catabolite control protein A	203.1930094904
+UniRef50_Q6GFX2: Catabolite control protein A|g__Staphylococcus.s__Staphylococcus_aureus	114.2292393879
+UniRef50_Q6GFX2: Catabolite control protein A|g__Staphylococcus.s__Staphylococcus_epidermidis	88.9637701024
+UniRef50_R9YPK7: Urea transporter	203.0604526429
+UniRef50_R9YPK7: Urea transporter|g__Staphylococcus.s__Staphylococcus_aureus	123.6886275696
+UniRef50_R9YPK7: Urea transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	79.3718250733
+UniRef50_F8FR25	202.8489597121
+UniRef50_F8FR25|g__Staphylococcus.s__Staphylococcus_aureus	114.8598030024
+UniRef50_F8FR25|g__Staphylococcus.s__Staphylococcus_epidermidis	87.9891567097
+UniRef50_Q5HLG3: Sensor protein LytS	202.6791475560
+UniRef50_Q5HLG3: Sensor protein LytS|g__Staphylococcus.s__Staphylococcus_aureus	113.3796609728
+UniRef50_Q5HLG3: Sensor protein LytS|g__Staphylococcus.s__Staphylococcus_epidermidis	89.1878334206
+UniRef50_Q5HLG3: Sensor protein LytS|unclassified	0.1116531626
+UniRef50_L7WU10: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase	202.5492946685
+UniRef50_L7WU10: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase|g__Staphylococcus.s__Staphylococcus_epidermidis	202.5492946685
+UniRef50_F0P4A3: Acetyltransferase, GNAT family	202.4593474874
+UniRef50_F0P4A3: Acetyltransferase, GNAT family|g__Staphylococcus.s__Staphylococcus_epidermidis	114.6624243192
+UniRef50_F0P4A3: Acetyltransferase, GNAT family|g__Staphylococcus.s__Staphylococcus_aureus	87.7969231682
+UniRef50_Q4A0F8: ABC-type transport system involved in lipoprotein release permease component	202.4296561129
+UniRef50_Q4A0F8: ABC-type transport system involved in lipoprotein release permease component|g__Staphylococcus.s__Staphylococcus_aureus	118.1222337769
+UniRef50_Q4A0F8: ABC-type transport system involved in lipoprotein release permease component|g__Staphylococcus.s__Staphylococcus_epidermidis	84.3074223360
+UniRef50_A1U241: Uracil phosphoribosyltransferase	202.1883207456
+UniRef50_A1U241: Uracil phosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	119.3580772735
+UniRef50_A1U241: Uracil phosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	82.4999352393
+UniRef50_A1U241: Uracil phosphoribosyltransferase|unclassified	0.3303082328
+UniRef50_Q5HQH1: Adapter protein MecA	202.1553322949
+UniRef50_Q5HQH1: Adapter protein MecA|g__Staphylococcus.s__Staphylococcus_epidermidis	125.5777551288
+UniRef50_Q5HQH1: Adapter protein MecA|g__Staphylococcus.s__Staphylococcus_aureus	76.5775771661
+UniRef50_P37941: 2-oxoisovalerate dehydrogenase subunit beta	202.0474286163
+UniRef50_P37941: 2-oxoisovalerate dehydrogenase subunit beta|g__Staphylococcus.s__Staphylococcus_aureus	107.6031454188
+UniRef50_P37941: 2-oxoisovalerate dehydrogenase subunit beta|g__Staphylococcus.s__Staphylococcus_epidermidis	94.4442831975
+UniRef50_P39852: Putative tyrosine-protein phosphatase CapC	201.9298827066
+UniRef50_P39852: Putative tyrosine-protein phosphatase CapC|g__Staphylococcus.s__Staphylococcus_aureus	201.8509841522
+UniRef50_P39852: Putative tyrosine-protein phosphatase CapC|unclassified	0.0788985544
+UniRef50_Q5HQK8: Putative peptidyl-prolyl cis-trans isomerase	201.9087503403
+UniRef50_Q5HQK8: Putative peptidyl-prolyl cis-trans isomerase|g__Staphylococcus.s__Staphylococcus_epidermidis	108.5091911789
+UniRef50_Q5HQK8: Putative peptidyl-prolyl cis-trans isomerase|g__Staphylococcus.s__Staphylococcus_aureus	93.3352819737
+UniRef50_Q5HQK8: Putative peptidyl-prolyl cis-trans isomerase|unclassified	0.0642771877
+UniRef50_P0C0R4: Lipase	201.8973248251
+UniRef50_P0C0R4: Lipase|g__Staphylococcus.s__Staphylococcus_epidermidis	103.5509064005
+UniRef50_P0C0R4: Lipase|g__Staphylococcus.s__Staphylococcus_aureus	98.3464184246
+UniRef50_Q8CTX9	201.8475556099
+UniRef50_Q8CTX9|g__Staphylococcus.s__Staphylococcus_aureus	106.6669312857
+UniRef50_Q8CTX9|g__Staphylococcus.s__Staphylococcus_epidermidis	92.7512399984
+UniRef50_Q8CTX9|unclassified	2.4293843258
+UniRef50_A7X3Z2: Monofunctional glycosyltransferase	201.8373352474
+UniRef50_A7X3Z2: Monofunctional glycosyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	136.5127690190
+UniRef50_A7X3Z2: Monofunctional glycosyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	65.3245662283
+UniRef50_Q3HKH1	201.6894954073
+UniRef50_Q3HKH1|g__Rhodobacter.s__Rhodobacter_sphaeroides	201.6894954073
+UniRef50_B1JVW3: tRNA-specific 2-thiouridylase MnmA	201.6698602215
+UniRef50_B1JVW3: tRNA-specific 2-thiouridylase MnmA|g__Staphylococcus.s__Staphylococcus_epidermidis	109.7949981909
+UniRef50_B1JVW3: tRNA-specific 2-thiouridylase MnmA|g__Staphylococcus.s__Staphylococcus_aureus	91.8282440532
+UniRef50_B1JVW3: tRNA-specific 2-thiouridylase MnmA|unclassified	0.0466179775
+UniRef50_Q71YH9: Dihydroorotase	201.6245088586
+UniRef50_Q71YH9: Dihydroorotase|g__Staphylococcus.s__Staphylococcus_epidermidis	107.8549219257
+UniRef50_Q71YH9: Dihydroorotase|g__Staphylococcus.s__Staphylococcus_aureus	93.6788942741
+UniRef50_Q71YH9: Dihydroorotase|unclassified	0.0906926587
+UniRef50_Q8CQM7	201.5340857113
+UniRef50_Q8CQM7|g__Staphylococcus.s__Staphylococcus_epidermidis	201.5340857113
+UniRef50_S4XAN4: Cobalamin biosynthesis-like protein	201.5281838373
+UniRef50_S4XAN4: Cobalamin biosynthesis-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	104.0288307029
+UniRef50_S4XAN4: Cobalamin biosynthesis-like protein|g__Staphylococcus.s__Staphylococcus_aureus	97.4078890106
+UniRef50_S4XAN4: Cobalamin biosynthesis-like protein|unclassified	0.0914641238
+UniRef50_Q4L7L1: Diacylglycerol kinase	201.5242962115
+UniRef50_Q4L7L1: Diacylglycerol kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	125.4539025886
+UniRef50_Q4L7L1: Diacylglycerol kinase|g__Staphylococcus.s__Staphylococcus_aureus	76.0703936229
+UniRef50_P45360: Putative UDP-N-acetylglucosamine 2-epimerase	201.5189044119
+UniRef50_P45360: Putative UDP-N-acetylglucosamine 2-epimerase|g__Staphylococcus.s__Staphylococcus_aureus	144.8103905924
+UniRef50_P45360: Putative UDP-N-acetylglucosamine 2-epimerase|g__Streptococcus.s__Streptococcus_mutans	54.2522065884
+UniRef50_P45360: Putative UDP-N-acetylglucosamine 2-epimerase|g__Clostridium.s__Clostridium_beijerinckii	2.4563072311
+UniRef50_T1XM99: IS1272 transposase, putative	201.3374017580
+UniRef50_T1XM99: IS1272 transposase, putative|g__Staphylococcus.s__Staphylococcus_aureus	200.1403589052
+UniRef50_T1XM99: IS1272 transposase, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	1.1970428528
+UniRef50_O34849: Glutamate synthase large subunit-like protein YerD	201.0510733452
+UniRef50_O34849: Glutamate synthase large subunit-like protein YerD|g__Staphylococcus.s__Staphylococcus_aureus	103.2022023722
+UniRef50_O34849: Glutamate synthase large subunit-like protein YerD|g__Staphylococcus.s__Staphylococcus_epidermidis	97.8488709729
+UniRef50_D3QDJ7: Predicted ring-cleavage extradiol dioxygenase	200.9725861464
+UniRef50_D3QDJ7: Predicted ring-cleavage extradiol dioxygenase|g__Staphylococcus.s__Staphylococcus_epidermidis	107.6890743704
+UniRef50_D3QDJ7: Predicted ring-cleavage extradiol dioxygenase|g__Staphylococcus.s__Staphylococcus_aureus	93.2835117760
+UniRef50_Q6GEA0: Lysostaphin resistance protein A	200.9151742378
+UniRef50_Q6GEA0: Lysostaphin resistance protein A|g__Staphylococcus.s__Staphylococcus_aureus	101.3234188120
+UniRef50_Q6GEA0: Lysostaphin resistance protein A|g__Staphylococcus.s__Staphylococcus_epidermidis	99.5917554258
+UniRef50_Q5HNU6: UPF0271 protein SERP1168	200.7353221980
+UniRef50_Q5HNU6: UPF0271 protein SERP1168|g__Staphylococcus.s__Staphylococcus_aureus	108.2985922853
+UniRef50_Q5HNU6: UPF0271 protein SERP1168|g__Staphylococcus.s__Staphylococcus_epidermidis	92.4367299127
+UniRef50_D3QCQ2: Ferric uptake regulation protein FUR	200.7277882280
+UniRef50_D3QCQ2: Ferric uptake regulation protein FUR|g__Staphylococcus.s__Staphylococcus_aureus	132.6382162165
+UniRef50_D3QCQ2: Ferric uptake regulation protein FUR|g__Staphylococcus.s__Staphylococcus_epidermidis	68.0895720115
+UniRef50_Q5HLG5: 2-dehydropantoate 2-reductase	200.6052859702
+UniRef50_Q5HLG5: 2-dehydropantoate 2-reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	109.0554504295
+UniRef50_Q5HLG5: 2-dehydropantoate 2-reductase|g__Staphylococcus.s__Staphylococcus_aureus	91.5498355407
+UniRef50_D3QDN7: Ribosomal RNA small subunit methyltransferase D	200.6005945484
+UniRef50_D3QDN7: Ribosomal RNA small subunit methyltransferase D|g__Staphylococcus.s__Staphylococcus_epidermidis	109.4341709038
+UniRef50_D3QDN7: Ribosomal RNA small subunit methyltransferase D|g__Staphylococcus.s__Staphylococcus_aureus	91.1664236446
+UniRef50_Q5HM27: Energy-coupling factor transporter ATP-binding protein EcfA1	200.4865221929
+UniRef50_Q5HM27: Energy-coupling factor transporter ATP-binding protein EcfA1|g__Staphylococcus.s__Staphylococcus_epidermidis	101.6843271601
+UniRef50_Q5HM27: Energy-coupling factor transporter ATP-binding protein EcfA1|g__Staphylococcus.s__Staphylococcus_aureus	98.1650938772
+UniRef50_Q5HM27: Energy-coupling factor transporter ATP-binding protein EcfA1|unclassified	0.6371011555
+UniRef50_Q2YZ25: Putative hemin transport system permease protein HrtB	200.4375727255
+UniRef50_Q2YZ25: Putative hemin transport system permease protein HrtB|g__Staphylococcus.s__Staphylococcus_aureus	128.4813374830
+UniRef50_Q2YZ25: Putative hemin transport system permease protein HrtB|g__Staphylococcus.s__Staphylococcus_epidermidis	71.9562352425
+UniRef50_B9KVR7: Transcriptional regulator, MerR family	200.4101643018
+UniRef50_B9KVR7: Transcriptional regulator, MerR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	200.4101643018
+UniRef50_Q6LLZ7	200.1457260495
+UniRef50_Q6LLZ7|g__Rhodobacter.s__Rhodobacter_sphaeroides	200.0000000000
+UniRef50_Q6LLZ7|unclassified	0.1457260495
+UniRef50_D0K2M7	200.1126946302
+UniRef50_D0K2M7|g__Staphylococcus.s__Staphylococcus_aureus	187.0542399797
+UniRef50_D0K2M7|g__Staphylococcus.s__Staphylococcus_epidermidis	13.0584546505
+UniRef50_A5UJW0	200.0000000000
+UniRef50_A5UJW0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	200.0000000000
+UniRef50_E8SIG3: O-methyltransferase family protein	199.9806305297
+UniRef50_E8SIG3: O-methyltransferase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	118.4056981391
+UniRef50_E8SIG3: O-methyltransferase family protein|g__Staphylococcus.s__Staphylococcus_aureus	81.5749323906
+UniRef50_O07631: GTP-binding protein TypA/BipA homolog	199.9691214367
+UniRef50_O07631: GTP-binding protein TypA/BipA homolog|g__Staphylococcus.s__Staphylococcus_epidermidis	119.7888190036
+UniRef50_O07631: GTP-binding protein TypA/BipA homolog|g__Staphylococcus.s__Staphylococcus_aureus	80.1803024331
+UniRef50_Q5HLI3: Amino acid ABC transporter, permease protein	199.9237880240
+UniRef50_Q5HLI3: Amino acid ABC transporter, permease protein|g__Staphylococcus.s__Staphylococcus_epidermidis	112.3833389989
+UniRef50_Q5HLI3: Amino acid ABC transporter, permease protein|g__Staphylococcus.s__Staphylococcus_aureus	87.5404490251
+UniRef50_P52146: Arsenical pump membrane protein	199.8210051845
+UniRef50_P52146: Arsenical pump membrane protein|g__Staphylococcus.s__Staphylococcus_epidermidis	98.1087521113
+UniRef50_P52146: Arsenical pump membrane protein|g__Staphylococcus.s__Staphylococcus_aureus	53.6937119608
+UniRef50_P52146: Arsenical pump membrane protein|g__Escherichia.s__Escherichia_coli	47.1796149380
+UniRef50_P52146: Arsenical pump membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8389261745
+UniRef50_Q5HRP5: tRNA(Ile)-lysidine synthase	199.7931237718
+UniRef50_Q5HRP5: tRNA(Ile)-lysidine synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	117.7498379200
+UniRef50_Q5HRP5: tRNA(Ile)-lysidine synthase|g__Staphylococcus.s__Staphylococcus_aureus	82.0432858518
+UniRef50_Q6G3Y9: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO	199.4596857919
+UniRef50_Q6G3Y9: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|g__Staphylococcus.s__Staphylococcus_epidermidis	93.5737290915
+UniRef50_Q6G3Y9: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|g__Staphylococcus.s__Staphylococcus_aureus	71.5668047290
+UniRef50_Q6G3Y9: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|g__Rhodobacter.s__Rhodobacter_sphaeroides	34.2144844795
+UniRef50_Q6G3Y9: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|unclassified	0.1046674918
+UniRef50_C1KVE4: Uridine kinase	199.1055063715
+UniRef50_C1KVE4: Uridine kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	82.0083072270
+UniRef50_C1KVE4: Uridine kinase|g__Staphylococcus.s__Staphylococcus_aureus	60.6802420049
+UniRef50_C1KVE4: Uridine kinase|g__Streptococcus.s__Streptococcus_mutans	52.9071238484
+UniRef50_C1KVE4: Uridine kinase|g__Clostridium.s__Clostridium_beijerinckii	3.3898305085
+UniRef50_C1KVE4: Uridine kinase|unclassified	0.1200027828
+UniRef50_F0P418: ABC transporter, substrate-binding protein	198.9988011884
+UniRef50_F0P418: ABC transporter, substrate-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	113.8232530369
+UniRef50_F0P418: ABC transporter, substrate-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	85.1755481515
+UniRef50_C5MYS8: Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase	198.8756299634
+UniRef50_C5MYS8: Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase|g__Staphylococcus.s__Staphylococcus_epidermidis	112.9994892585
+UniRef50_C5MYS8: Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase|g__Staphylococcus.s__Staphylococcus_aureus	85.8761407049
+UniRef50_Q6G930: Probable glycine dehydrogenase (decarboxylating) subunit 1	198.8182082603
+UniRef50_Q6G930: Probable glycine dehydrogenase (decarboxylating) subunit 1|g__Staphylococcus.s__Staphylococcus_aureus	101.4657718769
+UniRef50_Q6G930: Probable glycine dehydrogenase (decarboxylating) subunit 1|g__Staphylococcus.s__Staphylococcus_epidermidis	97.3038900082
+UniRef50_Q6G930: Probable glycine dehydrogenase (decarboxylating) subunit 1|unclassified	0.0485463752
+UniRef50_Q9K8V3: Arginine biosynthesis bifunctional protein ArgJ	198.6501924004
+UniRef50_Q9K8V3: Arginine biosynthesis bifunctional protein ArgJ|g__Staphylococcus.s__Staphylococcus_epidermidis	131.6030513566
+UniRef50_Q9K8V3: Arginine biosynthesis bifunctional protein ArgJ|g__Streptococcus.s__Streptococcus_mutans	66.9679609518
+UniRef50_Q9K8V3: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.0791800920
+UniRef50_A7X393: Glutamyl-tRNA reductase	198.5436377296
+UniRef50_A7X393: Glutamyl-tRNA reductase|g__Staphylococcus.s__Staphylococcus_aureus	107.6531230704
+UniRef50_A7X393: Glutamyl-tRNA reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	90.5519139488
+UniRef50_A7X393: Glutamyl-tRNA reductase|unclassified	0.3386007104
+UniRef50_Q8NYY1	198.4925265855
+UniRef50_Q8NYY1|g__Staphylococcus.s__Staphylococcus_aureus	138.1372306211
+UniRef50_Q8NYY1|g__Staphylococcus.s__Staphylococcus_epidermidis	59.7992800602
+UniRef50_Q8NYY1|unclassified	0.5560159042
+UniRef50_D3QIE1: Hydrolase (HAD superfamily)	198.3505392778
+UniRef50_D3QIE1: Hydrolase (HAD superfamily)|g__Staphylococcus.s__Staphylococcus_aureus	118.3819083753
+UniRef50_D3QIE1: Hydrolase (HAD superfamily)|g__Staphylococcus.s__Staphylococcus_epidermidis	79.9686309025
+UniRef50_B9DNM2: Putative pyruvate, phosphate dikinase regulatory protein	198.1803882288
+UniRef50_B9DNM2: Putative pyruvate, phosphate dikinase regulatory protein|g__Staphylococcus.s__Staphylococcus_epidermidis	122.1490029203
+UniRef50_B9DNM2: Putative pyruvate, phosphate dikinase regulatory protein|g__Staphylococcus.s__Staphylococcus_aureus	76.0313853085
+UniRef50_I0C665: RsbU	198.1268502217
+UniRef50_I0C665: RsbU|g__Staphylococcus.s__Staphylococcus_epidermidis	105.0907979211
+UniRef50_I0C665: RsbU|g__Staphylococcus.s__Staphylococcus_aureus	93.0360523006
+UniRef50_Q74L45: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase 2	198.0158206621
+UniRef50_Q74L45: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase 2|g__Staphylococcus.s__Staphylococcus_aureus	115.7746041630
+UniRef50_Q74L45: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase 2|g__Staphylococcus.s__Staphylococcus_epidermidis	82.2412164991
+UniRef50_P37105: Signal recognition particle protein	197.9705386847
+UniRef50_P37105: Signal recognition particle protein|g__Staphylococcus.s__Staphylococcus_epidermidis	122.1869909736
+UniRef50_P37105: Signal recognition particle protein|g__Staphylococcus.s__Staphylococcus_aureus	74.9048130889
+UniRef50_P37105: Signal recognition particle protein|g__Clostridium.s__Clostridium_beijerinckii	0.8787346221
+UniRef50_Q3IV09: O-acetylhomoserine sulfhydrylase	197.9583744917
+UniRef50_Q3IV09: O-acetylhomoserine sulfhydrylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	197.9583744917
+UniRef50_Q45068: Amino-acid carrier protein AlsT	197.8899953078
+UniRef50_Q45068: Amino-acid carrier protein AlsT|g__Staphylococcus.s__Staphylococcus_epidermidis	104.2139016197
+UniRef50_Q45068: Amino-acid carrier protein AlsT|g__Staphylococcus.s__Staphylococcus_aureus	93.6760936881
+UniRef50_S0L1H4: Diphosphomevalonate decarboxylase	197.8861467984
+UniRef50_S0L1H4: Diphosphomevalonate decarboxylase|g__Staphylococcus.s__Staphylococcus_aureus	111.2869049180
+UniRef50_S0L1H4: Diphosphomevalonate decarboxylase|g__Staphylococcus.s__Staphylococcus_epidermidis	86.5992418805
+UniRef50_D5ALC6: CTP pyrophosphohydrolase	197.8143078428
+UniRef50_D5ALC6: CTP pyrophosphohydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	197.8143078428
+UniRef50_K4KQ59: GAF domain-containing protein	197.8096944925
+UniRef50_K4KQ59: GAF domain-containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	197.8096944925
+UniRef50_M4IMI2: Transposase-like protein	197.5209629498
+UniRef50_M4IMI2: Transposase-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	197.5209629498
+UniRef50_O34528	197.4580606226
+UniRef50_O34528|g__Staphylococcus.s__Staphylococcus_epidermidis	110.2142924171
+UniRef50_O34528|g__Staphylococcus.s__Staphylococcus_aureus	86.3212589804
+UniRef50_O34528|g__Streptococcus.s__Streptococcus_agalactiae	0.9225092251
+UniRef50_Q1GLI8: Inner membrane protein	197.4549910232
+UniRef50_Q1GLI8: Inner membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	194.9022667281
+UniRef50_Q1GLI8: Inner membrane protein|unclassified	2.5527242951
+UniRef50_A4WUP0: 30S ribosomal protein S4	197.1699324895
+UniRef50_A4WUP0: 30S ribosomal protein S4|g__Rhodobacter.s__Rhodobacter_sphaeroides	197.1699324895
+UniRef50_Q5HQ05: Laccase domain protein SERP0752	197.1025480770
+UniRef50_Q5HQ05: Laccase domain protein SERP0752|g__Staphylococcus.s__Staphylococcus_aureus	106.5429471370
+UniRef50_Q5HQ05: Laccase domain protein SERP0752|g__Staphylococcus.s__Staphylococcus_epidermidis	90.5596009401
+UniRef50_Q2FGC8: Shikimate dehydrogenase	197.0386963969
+UniRef50_Q2FGC8: Shikimate dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	112.3236442349
+UniRef50_Q2FGC8: Shikimate dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	84.1768677485
+UniRef50_Q2FGC8: Shikimate dehydrogenase|unclassified	0.5381844136
+UniRef50_B9EA45	196.9132048906
+UniRef50_B9EA45|g__Staphylococcus.s__Staphylococcus_aureus	100.4269914863
+UniRef50_B9EA45|g__Staphylococcus.s__Staphylococcus_epidermidis	96.3877876452
+UniRef50_B9EA45|unclassified	0.0984257591
+UniRef50_Q2G1E0	196.8703815899
+UniRef50_Q2G1E0|g__Staphylococcus.s__Staphylococcus_aureus	101.9837547852
+UniRef50_Q2G1E0|g__Staphylococcus.s__Staphylococcus_epidermidis	94.4593504848
+UniRef50_Q2G1E0|unclassified	0.4272763199
+UniRef50_G7ZQ52: Ammonium transporter family protein	196.7480132274
+UniRef50_G7ZQ52: Ammonium transporter family protein|g__Staphylococcus.s__Staphylococcus_aureus	112.6779911266
+UniRef50_G7ZQ52: Ammonium transporter family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	84.0700221008
+UniRef50_O32034	196.6483355873
+UniRef50_O32034|g__Staphylococcus.s__Staphylococcus_aureus	115.1597447760
+UniRef50_O32034|g__Staphylococcus.s__Staphylococcus_epidermidis	81.4885908113
+UniRef50_C5N074: Cof-like hydrolase	196.4974200784
+UniRef50_C5N074: Cof-like hydrolase|g__Staphylococcus.s__Staphylococcus_epidermidis	104.5998474540
+UniRef50_C5N074: Cof-like hydrolase|g__Staphylococcus.s__Staphylococcus_aureus	91.8975726243
+UniRef50_Q3IUZ0	196.1890155085
+UniRef50_Q3IUZ0|g__Rhodobacter.s__Rhodobacter_sphaeroides	185.5929834004
+UniRef50_Q3IUZ0|unclassified	10.5960321081
+UniRef50_Q4L9G5: Alkaline phosphatase III	196.1084825955
+UniRef50_Q4L9G5: Alkaline phosphatase III|g__Staphylococcus.s__Staphylococcus_aureus	112.5780902785
+UniRef50_Q4L9G5: Alkaline phosphatase III|g__Staphylococcus.s__Staphylococcus_epidermidis	83.5303923170
+UniRef50_D5HC82: DNA repair protein radA	196.0589328369
+UniRef50_D5HC82: DNA repair protein radA|g__Staphylococcus.s__Staphylococcus_aureus	106.2827366671
+UniRef50_D5HC82: DNA repair protein radA|g__Staphylococcus.s__Staphylococcus_epidermidis	89.7761961699
+UniRef50_P23530: Phosphoenolpyruvate-protein phosphotransferase	195.8574932246
+UniRef50_P23530: Phosphoenolpyruvate-protein phosphotransferase|g__Staphylococcus.s__Staphylococcus_aureus	106.6644449125
+UniRef50_P23530: Phosphoenolpyruvate-protein phosphotransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	89.1930483121
+UniRef50_C5N3B0	195.8080090392
+UniRef50_C5N3B0|g__Staphylococcus.s__Staphylococcus_epidermidis	102.5712804698
+UniRef50_C5N3B0|g__Staphylococcus.s__Staphylococcus_aureus	93.2367285694
+UniRef50_P24136: Oligopeptide transport ATP-binding protein OppD	195.6292419353
+UniRef50_P24136: Oligopeptide transport ATP-binding protein OppD|g__Staphylococcus.s__Staphylococcus_aureus	128.8852485685
+UniRef50_P24136: Oligopeptide transport ATP-binding protein OppD|g__Streptococcus.s__Streptococcus_mutans	62.0553977339
+UniRef50_P24136: Oligopeptide transport ATP-binding protein OppD|g__Streptococcus.s__Streptococcus_agalactiae	4.6885956329
+UniRef50_K6PSM8: ATPase component of an ABC superfamily transporter	195.5651799189
+UniRef50_K6PSM8: ATPase component of an ABC superfamily transporter|g__Staphylococcus.s__Staphylococcus_aureus	71.8156464321
+UniRef50_K6PSM8: ATPase component of an ABC superfamily transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	69.5836295315
+UniRef50_K6PSM8: ATPase component of an ABC superfamily transporter|g__Streptococcus.s__Streptococcus_mutans	54.1659039553
+UniRef50_C0ZDE1: ABC transporter substrate binding protein	195.3942241606
+UniRef50_C0ZDE1: ABC transporter substrate binding protein|g__Staphylococcus.s__Staphylococcus_aureus	108.5973961640
+UniRef50_C0ZDE1: ABC transporter substrate binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	86.7968279966
+UniRef50_Q6GGK7: Sensor protein SrrB	195.3362439544
+UniRef50_Q6GGK7: Sensor protein SrrB|g__Staphylococcus.s__Staphylococcus_aureus	102.2405852402
+UniRef50_Q6GGK7: Sensor protein SrrB|g__Staphylococcus.s__Staphylococcus_epidermidis	92.5162844384
+UniRef50_Q6GGK7: Sensor protein SrrB|unclassified	0.5793742758
+UniRef50_Q8CPM6: Divalent metal cation transporter MntH	195.2361980606
+UniRef50_Q8CPM6: Divalent metal cation transporter MntH|g__Staphylococcus.s__Staphylococcus_aureus	110.0915217420
+UniRef50_Q8CPM6: Divalent metal cation transporter MntH|g__Staphylococcus.s__Staphylococcus_epidermidis	85.1446763185
+UniRef50_I0C5H5	195.2294946058
+UniRef50_I0C5H5|g__Staphylococcus.s__Staphylococcus_aureus	195.2294946058
+UniRef50_C1KWN7: GTPase Der	195.1912214845
+UniRef50_C1KWN7: GTPase Der|g__Staphylococcus.s__Staphylococcus_epidermidis	114.9343174988
+UniRef50_C1KWN7: GTPase Der|g__Staphylococcus.s__Staphylococcus_aureus	80.2569039857
+UniRef50_L7WPW4: Cation efflux family protein	194.9635227209
+UniRef50_L7WPW4: Cation efflux family protein|g__Staphylococcus.s__Staphylococcus_aureus	104.2070582486
+UniRef50_L7WPW4: Cation efflux family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	90.7564644723
+UniRef50_Q71YR0: DNA ligase	194.9589802548
+UniRef50_Q71YR0: DNA ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	100.5729042445
+UniRef50_Q71YR0: DNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	91.9707762105
+UniRef50_Q71YR0: DNA ligase|g__Streptococcus.s__Streptococcus_agalactiae	2.4152997999
+UniRef50_T1Y643: Homoserine O-acetyltransferase	194.9546628347
+UniRef50_T1Y643: Homoserine O-acetyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	103.6712847045
+UniRef50_T1Y643: Homoserine O-acetyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	91.2833781302
+UniRef50_Q9CGD4: Spermidine/putrescine import ATP-binding protein PotA	194.9010440677
+UniRef50_Q9CGD4: Spermidine/putrescine import ATP-binding protein PotA|g__Staphylococcus.s__Staphylococcus_epidermidis	91.6659895424
+UniRef50_Q9CGD4: Spermidine/putrescine import ATP-binding protein PotA|g__Staphylococcus.s__Staphylococcus_aureus	67.1901214689
+UniRef50_Q9CGD4: Spermidine/putrescine import ATP-binding protein PotA|g__Streptococcus.s__Streptococcus_mutans	35.2088126550
+UniRef50_Q9CGD4: Spermidine/putrescine import ATP-binding protein PotA|unclassified	0.8361204013
+UniRef50_Q8CUE3	194.8649845127
+UniRef50_Q8CUE3|g__Staphylococcus.s__Staphylococcus_epidermidis	142.4284359398
+UniRef50_Q8CUE3|g__Staphylococcus.s__Staphylococcus_aureus	52.3388733180
+UniRef50_Q8CUE3|unclassified	0.0976752549
+UniRef50_Q49VK4: Sensor histidine kinase GraS	194.8155695000
+UniRef50_Q49VK4: Sensor histidine kinase GraS|g__Staphylococcus.s__Staphylococcus_epidermidis	119.0563799086
+UniRef50_Q49VK4: Sensor histidine kinase GraS|g__Staphylococcus.s__Staphylococcus_aureus	75.7591895914
+UniRef50_Q3SSY2: 50S ribosomal protein L10	194.7569287183
+UniRef50_Q3SSY2: 50S ribosomal protein L10|g__Rhodobacter.s__Rhodobacter_sphaeroides	194.7569287183
+UniRef50_P39814: DNA topoisomerase 1	194.7184506793
+UniRef50_P39814: DNA topoisomerase 1|g__Staphylococcus.s__Staphylococcus_epidermidis	123.6819374535
+UniRef50_P39814: DNA topoisomerase 1|g__Staphylococcus.s__Staphylococcus_aureus	70.7949344534
+UniRef50_P39814: DNA topoisomerase 1|unclassified	0.2415787724
+UniRef50_Q8CN80: General stress protein 26	194.7020635737
+UniRef50_Q8CN80: General stress protein 26|g__Staphylococcus.s__Staphylococcus_aureus	105.6225700105
+UniRef50_Q8CN80: General stress protein 26|g__Staphylococcus.s__Staphylococcus_epidermidis	89.0794935631
+UniRef50_D3QCK9: Late competence protein ComGA	194.6667333079
+UniRef50_D3QCK9: Late competence protein ComGA|g__Staphylococcus.s__Staphylococcus_aureus	110.2309162426
+UniRef50_D3QCK9: Late competence protein ComGA|g__Staphylococcus.s__Staphylococcus_epidermidis	84.4358170653
+UniRef50_Q3IYW4	194.6532438477
+UniRef50_Q3IYW4|g__Rhodobacter.s__Rhodobacter_sphaeroides	163.7299502429
+UniRef50_Q3IYW4|unclassified	30.9232936048
+UniRef50_W5SE24: Glycerol-3-phosphate transporter	194.6295612831
+UniRef50_W5SE24: Glycerol-3-phosphate transporter|g__Staphylococcus.s__Staphylococcus_aureus	99.1507940357
+UniRef50_W5SE24: Glycerol-3-phosphate transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	95.4787672474
+UniRef50_B7IJP9: Probable manganese-dependent inorganic pyrophosphatase	194.6079865573
+UniRef50_B7IJP9: Probable manganese-dependent inorganic pyrophosphatase|g__Staphylococcus.s__Staphylococcus_epidermidis	105.8481232515
+UniRef50_B7IJP9: Probable manganese-dependent inorganic pyrophosphatase|g__Staphylococcus.s__Staphylococcus_aureus	88.7598633058
+UniRef50_U5UJL0	194.5399455548
+UniRef50_U5UJL0|g__Staphylococcus.s__Staphylococcus_aureus	101.0286068961
+UniRef50_U5UJL0|g__Staphylococcus.s__Staphylococcus_epidermidis	93.5113386587
+UniRef50_A7WYY2: Ribulokinase	194.4813988053
+UniRef50_A7WYY2: Ribulokinase|g__Staphylococcus.s__Staphylococcus_epidermidis	100.3090510128
+UniRef50_A7WYY2: Ribulokinase|g__Staphylococcus.s__Staphylococcus_aureus	94.1723477925
+UniRef50_A5IVF9: Mg2+ transporter protein, CorA family protein	194.3935969353
+UniRef50_A5IVF9: Mg2+ transporter protein, CorA family protein|g__Staphylococcus.s__Staphylococcus_aureus	106.5605184276
+UniRef50_A5IVF9: Mg2+ transporter protein, CorA family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	87.8330785077
+UniRef50_D6SEI0: Mannose-6-phosphate isomerase, class I	194.2961284061
+UniRef50_D6SEI0: Mannose-6-phosphate isomerase, class I|g__Staphylococcus.s__Staphylococcus_aureus	101.0615221561
+UniRef50_D6SEI0: Mannose-6-phosphate isomerase, class I|g__Staphylococcus.s__Staphylococcus_epidermidis	93.2346062500
+UniRef50_P71082: Putative multidrug export ATP-binding/permease protein YgaD	194.2740069911
+UniRef50_P71082: Putative multidrug export ATP-binding/permease protein YgaD|g__Staphylococcus.s__Staphylococcus_aureus	119.5096928727
+UniRef50_P71082: Putative multidrug export ATP-binding/permease protein YgaD|g__Staphylococcus.s__Staphylococcus_epidermidis	74.6462796074
+UniRef50_P71082: Putative multidrug export ATP-binding/permease protein YgaD|unclassified	0.1180345110
+UniRef50_V5YQU8: YycH protein	194.2130575961
+UniRef50_V5YQU8: YycH protein|g__Staphylococcus.s__Staphylococcus_epidermidis	97.5944782010
+UniRef50_V5YQU8: YycH protein|g__Staphylococcus.s__Staphylococcus_aureus	96.4023846407
+UniRef50_V5YQU8: YycH protein|unclassified	0.2161947543
+UniRef50_B9KX33: FlaF protein	194.0339283793
+UniRef50_B9KX33: FlaF protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	182.6242189150
+UniRef50_B9KX33: FlaF protein|unclassified	11.4097094643
+UniRef50_Q4L5J1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	193.9950348014
+UniRef50_Q4L5J1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	193.9950348014
+UniRef50_Q2FIM4: Epimerase family protein SAUSA300_0753	193.9114060591
+UniRef50_Q2FIM4: Epimerase family protein SAUSA300_0753|g__Staphylococcus.s__Staphylococcus_aureus	116.0641451314
+UniRef50_Q2FIM4: Epimerase family protein SAUSA300_0753|g__Staphylococcus.s__Staphylococcus_epidermidis	77.8472609277
+UniRef50_Q5HRI8: Hydrolase, haloacid dehalogenase-like family	193.5541585195
+UniRef50_Q5HRI8: Hydrolase, haloacid dehalogenase-like family|g__Staphylococcus.s__Staphylococcus_epidermidis	125.0234944138
+UniRef50_Q5HRI8: Hydrolase, haloacid dehalogenase-like family|g__Staphylococcus.s__Staphylococcus_aureus	68.5306641057
+UniRef50_Q6GI14: Amidophosphoribosyltransferase	193.5348924000
+UniRef50_Q6GI14: Amidophosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	111.3936419908
+UniRef50_Q6GI14: Amidophosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	76.1101541684
+UniRef50_Q6GI14: Amidophosphoribosyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	5.5217921228
+UniRef50_Q6GI14: Amidophosphoribosyltransferase|unclassified	0.5093041180
+UniRef50_Q8CPV9: Poly(Glycerophosphate chain) D-alanine transfer protein	193.4630417787
+UniRef50_Q8CPV9: Poly(Glycerophosphate chain) D-alanine transfer protein|g__Staphylococcus.s__Staphylococcus_epidermidis	104.8288481575
+UniRef50_Q8CPV9: Poly(Glycerophosphate chain) D-alanine transfer protein|g__Staphylococcus.s__Staphylococcus_aureus	88.6341936212
+UniRef50_P0A324: Catalase	193.3837962036
+UniRef50_P0A324: Catalase|g__Rhodobacter.s__Rhodobacter_sphaeroides	107.5110654420
+UniRef50_P0A324: Catalase|g__Staphylococcus.s__Staphylococcus_aureus	80.9563483495
+UniRef50_P0A324: Catalase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8952193811
+UniRef50_P0A324: Catalase|g__Neisseria.s__Neisseria_meningitidis	0.7062146893
+UniRef50_P0A324: Catalase|unclassified	0.3149483417
+UniRef50_P80866: Vegetative protein 296	193.3759362275
+UniRef50_P80866: Vegetative protein 296|g__Staphylococcus.s__Staphylococcus_epidermidis	113.5245141566
+UniRef50_P80866: Vegetative protein 296|g__Staphylococcus.s__Staphylococcus_aureus	79.8514220708
+UniRef50_Q8Y5E4: Diadenylate cyclase	193.3110378556
+UniRef50_Q8Y5E4: Diadenylate cyclase|g__Staphylococcus.s__Staphylococcus_aureus	106.6539640961
+UniRef50_Q8Y5E4: Diadenylate cyclase|g__Staphylococcus.s__Staphylococcus_epidermidis	86.5130700546
+UniRef50_Q8Y5E4: Diadenylate cyclase|unclassified	0.1440037049
+UniRef50_A6U0P1: Bifunctional purine biosynthesis protein PurH	193.1667168210
+UniRef50_A6U0P1: Bifunctional purine biosynthesis protein PurH|g__Staphylococcus.s__Staphylococcus_epidermidis	117.6300423139
+UniRef50_A6U0P1: Bifunctional purine biosynthesis protein PurH|g__Staphylococcus.s__Staphylococcus_aureus	75.4527605134
+UniRef50_A6U0P1: Bifunctional purine biosynthesis protein PurH|unclassified	0.0839139936
+UniRef50_P45482: Cell division protein FtsZ	193.1085538455
+UniRef50_P45482: Cell division protein FtsZ|g__Staphylococcus.s__Staphylococcus_epidermidis	102.5894845950
+UniRef50_P45482: Cell division protein FtsZ|g__Staphylococcus.s__Staphylococcus_aureus	90.5190692505
+UniRef50_Q8CUA2: Mobilization protein	193.0777831502
+UniRef50_Q8CUA2: Mobilization protein|g__Staphylococcus.s__Staphylococcus_epidermidis	129.4088398189
+UniRef50_Q8CUA2: Mobilization protein|unclassified	63.6689433313
+UniRef50_C0Z7W5: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	193.0443195824
+UniRef50_C0Z7W5: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|g__Staphylococcus.s__Staphylococcus_epidermidis	104.1891778577
+UniRef50_C0Z7W5: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|g__Staphylococcus.s__Staphylococcus_aureus	88.6744500759
+UniRef50_C0Z7W5: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.1806916488
+UniRef50_G8V566: Type I restriction-modification system, M subunit	193.0004608435
+UniRef50_G8V566: Type I restriction-modification system, M subunit|g__Staphylococcus.s__Staphylococcus_aureus	193.0004608435
+UniRef50_F0P8I6: Oligopeptide ABC transporter, periplasmic oligopeptide-binding protein	192.7091856980
+UniRef50_F0P8I6: Oligopeptide ABC transporter, periplasmic oligopeptide-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	106.6527420459
+UniRef50_F0P8I6: Oligopeptide ABC transporter, periplasmic oligopeptide-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	86.0564436521
+UniRef50_Q731B9: Arginine repressor	192.6484555956
+UniRef50_Q731B9: Arginine repressor|g__Staphylococcus.s__Staphylococcus_epidermidis	114.6049725021
+UniRef50_Q731B9: Arginine repressor|g__Staphylococcus.s__Staphylococcus_aureus	76.9894187806
+UniRef50_Q731B9: Arginine repressor|unclassified	1.0540643129
+UniRef50_D7PDW2: RmlC	192.6430097612
+UniRef50_D7PDW2: RmlC|g__Rhodobacter.s__Rhodobacter_sphaeroides	192.6430097612
+UniRef50_E5RBE6: Protein smf. domain protein	192.5201244712
+UniRef50_E5RBE6: Protein smf. domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	111.9967396645
+UniRef50_E5RBE6: Protein smf. domain protein|g__Staphylococcus.s__Staphylococcus_aureus	80.5233848067
+UniRef50_B9DPJ4: Signal recognition particle receptor FtsY	192.4168970327
+UniRef50_B9DPJ4: Signal recognition particle receptor FtsY|g__Staphylococcus.s__Staphylococcus_epidermidis	96.2499845504
+UniRef50_B9DPJ4: Signal recognition particle receptor FtsY|g__Staphylococcus.s__Staphylococcus_aureus	96.1669124823
+UniRef50_C5N2L9: Sua5/YciO/YrdC/YwlC family protein	192.3948364582
+UniRef50_C5N2L9: Sua5/YciO/YrdC/YwlC family protein|g__Staphylococcus.s__Staphylococcus_aureus	130.1640696247
+UniRef50_C5N2L9: Sua5/YciO/YrdC/YwlC family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	62.2307668336
+UniRef50_E8SK78: ABC transporter ATP-binding protein	192.3906844583
+UniRef50_E8SK78: ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	117.4099016214
+UniRef50_E8SK78: ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	74.9807828369
+UniRef50_X1XSD9	192.3766956304
+UniRef50_X1XSD9|g__Staphylococcus.s__Staphylococcus_aureus	115.5624517171
+UniRef50_X1XSD9|g__Staphylococcus.s__Staphylococcus_epidermidis	76.8142439133
+UniRef50_T1Y562: Biotin synthesis protein bioC	192.3222464430
+UniRef50_T1Y562: Biotin synthesis protein bioC|g__Staphylococcus.s__Staphylococcus_aureus	192.3222464430
+UniRef50_P68825: Peptide deformylase	192.2634103940
+UniRef50_P68825: Peptide deformylase|g__Staphylococcus.s__Staphylococcus_epidermidis	131.3189343401
+UniRef50_P68825: Peptide deformylase|g__Staphylococcus.s__Staphylococcus_aureus	60.3683958297
+UniRef50_P68825: Peptide deformylase|unclassified	0.5760802242
+UniRef50_I0C564: Adenine-specific methyltransferase	192.1665030520
+UniRef50_I0C564: Adenine-specific methyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	105.6673553061
+UniRef50_I0C564: Adenine-specific methyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	86.4991477459
+UniRef50_B9KRQ9: Response regulator receiver protein	192.1255225566
+UniRef50_B9KRQ9: Response regulator receiver protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	192.1255225566
+UniRef50_Q3HKI8: DSBA oxidoreductase	192.0427746303
+UniRef50_Q3HKI8: DSBA oxidoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	192.0427746303
+UniRef50_Q5HNW5: Protein GrpE	192.0132609668
+UniRef50_Q5HNW5: Protein GrpE|g__Staphylococcus.s__Staphylococcus_epidermidis	106.5295648874
+UniRef50_Q5HNW5: Protein GrpE|g__Staphylococcus.s__Staphylococcus_aureus	85.4836960794
+UniRef50_D3QF63	191.9953432800
+UniRef50_D3QF63|g__Staphylococcus.s__Staphylococcus_epidermidis	102.7512889347
+UniRef50_D3QF63|g__Staphylococcus.s__Staphylococcus_aureus	89.2440543453
+UniRef50_Q49YI2: Putative dipeptidase SSP1012	191.9140696903
+UniRef50_Q49YI2: Putative dipeptidase SSP1012|g__Staphylococcus.s__Staphylococcus_epidermidis	97.5985590605
+UniRef50_Q49YI2: Putative dipeptidase SSP1012|g__Staphylococcus.s__Staphylococcus_aureus	93.9370761456
+UniRef50_Q49YI2: Putative dipeptidase SSP1012|unclassified	0.3784344843
+UniRef50_C4Z3J5: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B	191.8611279308
+UniRef50_C4Z3J5: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B|g__Staphylococcus.s__Staphylococcus_epidermidis	117.0918023332
+UniRef50_C4Z3J5: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B|g__Staphylococcus.s__Staphylococcus_aureus	74.7693255976
+UniRef50_Q7A7M5: UPF0324 membrane protein SA0329	191.7744759874
+UniRef50_Q7A7M5: UPF0324 membrane protein SA0329|g__Staphylococcus.s__Staphylococcus_aureus	97.0840804406
+UniRef50_Q7A7M5: UPF0324 membrane protein SA0329|g__Staphylococcus.s__Staphylococcus_epidermidis	94.6903955468
+UniRef50_Q49YQ5	191.5321647474
+UniRef50_Q49YQ5|g__Staphylococcus.s__Staphylococcus_aureus	100.8258493813
+UniRef50_Q49YQ5|g__Staphylococcus.s__Staphylococcus_epidermidis	90.7063153661
+UniRef50_Q3IVJ7: Acyltransferase 3 family	191.4498414982
+UniRef50_Q3IVJ7: Acyltransferase 3 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	191.4498414982
+UniRef50_Q6G7L8: Hydroxyethylthiazole kinase	191.3501953782
+UniRef50_Q6G7L8: Hydroxyethylthiazole kinase|g__Staphylococcus.s__Staphylococcus_aureus	135.0051276216
+UniRef50_Q6G7L8: Hydroxyethylthiazole kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	56.2894632898
+UniRef50_Q6G7L8: Hydroxyethylthiazole kinase|unclassified	0.0556044668
+UniRef50_Q5HPR6: Ribonuclease J 2	191.3203332576
+UniRef50_Q5HPR6: Ribonuclease J 2|g__Staphylococcus.s__Staphylococcus_epidermidis	101.5342864281
+UniRef50_Q5HPR6: Ribonuclease J 2|g__Staphylococcus.s__Staphylococcus_aureus	89.6871793134
+UniRef50_Q5HPR6: Ribonuclease J 2|unclassified	0.0988675161
+UniRef50_Q3IV11: Isopropylmalate/homocitrate synthase	191.2073498122
+UniRef50_Q3IV11: Isopropylmalate/homocitrate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	191.2073498122
+UniRef50_Q5HKT7	191.0661684765
+UniRef50_Q5HKT7|g__Staphylococcus.s__Staphylococcus_epidermidis	189.7207862047
+UniRef50_Q5HKT7|g__Staphylococcus.s__Staphylococcus_aureus	1.1820330969
+UniRef50_Q5HKT7|unclassified	0.1633491748
+UniRef50_B9DM46: tRNA pseudouridine synthase A	191.0353298337
+UniRef50_B9DM46: tRNA pseudouridine synthase A|g__Staphylococcus.s__Staphylococcus_epidermidis	100.8196315148
+UniRef50_B9DM46: tRNA pseudouridine synthase A|g__Staphylococcus.s__Staphylococcus_aureus	90.0337332624
+UniRef50_B9DM46: tRNA pseudouridine synthase A|unclassified	0.1819650566
+UniRef50_Q5HKG0: Conserved domain protein	190.8361376216
+UniRef50_Q5HKG0: Conserved domain protein|g__Staphylococcus.s__Staphylococcus_aureus	100.9225244258
+UniRef50_Q5HKG0: Conserved domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	89.9136131958
+UniRef50_Q1GB50: Ribonuclease Y	190.7561716763
+UniRef50_Q1GB50: Ribonuclease Y|g__Staphylococcus.s__Staphylococcus_epidermidis	70.7416060255
+UniRef50_Q1GB50: Ribonuclease Y|g__Staphylococcus.s__Staphylococcus_aureus	65.2576572980
+UniRef50_Q1GB50: Ribonuclease Y|g__Streptococcus.s__Streptococcus_mutans	50.8829221605
+UniRef50_Q1GB50: Ribonuclease Y|g__Clostridium.s__Clostridium_beijerinckii	2.5261415642
+UniRef50_Q1GB50: Ribonuclease Y|g__Streptococcus.s__Streptococcus_agalactiae	1.3478446281
+UniRef50_A7WWP7	190.7462604405
+UniRef50_A7WWP7|g__Staphylococcus.s__Staphylococcus_aureus	113.5097033473
+UniRef50_A7WWP7|g__Staphylococcus.s__Staphylococcus_epidermidis	76.2767080700
+UniRef50_A7WWP7|unclassified	0.9598490233
+UniRef50_Q5HP19: Proline dipeptidase	190.7455583103
+UniRef50_Q5HP19: Proline dipeptidase|g__Staphylococcus.s__Staphylococcus_epidermidis	108.5263042659
+UniRef50_Q5HP19: Proline dipeptidase|g__Staphylococcus.s__Staphylococcus_aureus	82.2192540445
+UniRef50_T1XR51: SAM-dependent methyltransferase, putative	190.6941429830
+UniRef50_T1XR51: SAM-dependent methyltransferase, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	101.7901784844
+UniRef50_T1XR51: SAM-dependent methyltransferase, putative|g__Staphylococcus.s__Staphylococcus_aureus	88.9039644986
+UniRef50_B9KN07	190.5319885956
+UniRef50_B9KN07|g__Rhodobacter.s__Rhodobacter_sphaeroides	190.5319885956
+UniRef50_D3ERJ1: Energy-coupling factor transporter transmembrane protein EcfT	190.4738283061
+UniRef50_D3ERJ1: Energy-coupling factor transporter transmembrane protein EcfT|g__Staphylococcus.s__Staphylococcus_aureus	110.5661573754
+UniRef50_D3ERJ1: Energy-coupling factor transporter transmembrane protein EcfT|g__Staphylococcus.s__Staphylococcus_epidermidis	79.9076709307
+UniRef50_B8JEW4: 6,7-dimethyl-8-ribityllumazine synthase	190.4251291355
+UniRef50_B8JEW4: 6,7-dimethyl-8-ribityllumazine synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	130.3845275582
+UniRef50_B8JEW4: 6,7-dimethyl-8-ribityllumazine synthase|g__Clostridium.s__Clostridium_beijerinckii	30.3195517189
+UniRef50_B8JEW4: 6,7-dimethyl-8-ribityllumazine synthase|g__Staphylococcus.s__Staphylococcus_aureus	29.7210498585
+UniRef50_Q5HEG2: Accessory gene regulator A	190.4212477276
+UniRef50_Q5HEG2: Accessory gene regulator A|g__Staphylococcus.s__Staphylococcus_epidermidis	115.1108435073
+UniRef50_Q5HEG2: Accessory gene regulator A|g__Staphylococcus.s__Staphylococcus_aureus	75.3104042203
+UniRef50_U3SUW9	190.3238419440
+UniRef50_U3SUW9|g__Streptococcus.s__Streptococcus_mutans	190.3238419440
+UniRef50_L0LNE1: SecY stabilizing membrane protein	190.2597399325
+UniRef50_L0LNE1: SecY stabilizing membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	190.2597399325
+UniRef50_D3QFI9: Phosphomevalonate kinase	190.2328596755
+UniRef50_D3QFI9: Phosphomevalonate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	105.2069235065
+UniRef50_D3QFI9: Phosphomevalonate kinase|g__Staphylococcus.s__Staphylococcus_aureus	85.0259361691
+UniRef50_Q4L8W8: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	190.1981716325
+UniRef50_Q4L8W8: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	106.5206316149
+UniRef50_Q4L8W8: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	83.6775400176
+UniRef50_I0C5P0: CobB/CobQ-like glutamine amidotransferase domain protein	190.1931330279
+UniRef50_I0C5P0: CobB/CobQ-like glutamine amidotransferase domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	110.6010325934
+UniRef50_I0C5P0: CobB/CobQ-like glutamine amidotransferase domain protein|g__Staphylococcus.s__Staphylococcus_aureus	79.5921004346
+UniRef50_P54932: Protein RdxB	190.1925546329
+UniRef50_P54932: Protein RdxB|g__Rhodobacter.s__Rhodobacter_sphaeroides	190.1925546329
+UniRef50_I0C253: Arginine permease	190.1747644641
+UniRef50_I0C253: Arginine permease|g__Staphylococcus.s__Staphylococcus_aureus	107.4753425903
+UniRef50_I0C253: Arginine permease|g__Staphylococcus.s__Staphylococcus_epidermidis	82.6994218738
+UniRef50_D3QI08: Autolysin	190.1095482269
+UniRef50_D3QI08: Autolysin|g__Staphylococcus.s__Staphylococcus_aureus	111.9061449695
+UniRef50_D3QI08: Autolysin|g__Staphylococcus.s__Staphylococcus_epidermidis	78.2034032574
+UniRef50_Q8CSG3: Geranyltranstransferase	189.9882497041
+UniRef50_Q8CSG3: Geranyltranstransferase|g__Staphylococcus.s__Staphylococcus_aureus	112.7397938208
+UniRef50_Q8CSG3: Geranyltranstransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	77.2484558833
+UniRef50_B9E8Q8: 50S ribosomal protein L10	189.9825659899
+UniRef50_B9E8Q8: 50S ribosomal protein L10|g__Staphylococcus.s__Staphylococcus_aureus	122.4134246577
+UniRef50_B9E8Q8: 50S ribosomal protein L10|g__Streptococcus.s__Streptococcus_mutans	67.5691413322
+UniRef50_Q5HL87: Ribokinase	189.9597158803
+UniRef50_Q5HL87: Ribokinase|g__Staphylococcus.s__Staphylococcus_epidermidis	99.7923907422
+UniRef50_Q5HL87: Ribokinase|g__Staphylococcus.s__Staphylococcus_aureus	90.1673251381
+UniRef50_Q2FUW4: Accessory Sec system protein Asp2	189.9577673266
+UniRef50_Q2FUW4: Accessory Sec system protein Asp2|g__Staphylococcus.s__Staphylococcus_aureus	104.6302799171
+UniRef50_Q2FUW4: Accessory Sec system protein Asp2|g__Staphylococcus.s__Staphylococcus_epidermidis	85.3274874095
+UniRef50_B9KL47: Protein tyrosine phosphatase	189.8225376459
+UniRef50_B9KL47: Protein tyrosine phosphatase|g__Rhodobacter.s__Rhodobacter_sphaeroides	189.8225376459
+UniRef50_P34956: Quinol oxidase subunit 1	189.7680552063
+UniRef50_P34956: Quinol oxidase subunit 1|g__Staphylococcus.s__Staphylococcus_epidermidis	100.0366791522
+UniRef50_P34956: Quinol oxidase subunit 1|g__Staphylococcus.s__Staphylococcus_aureus	89.4980039014
+UniRef50_P34956: Quinol oxidase subunit 1|unclassified	0.2333721527
+UniRef50_Q8CPK5: Cell division protein FtsA	189.7598237654
+UniRef50_Q8CPK5: Cell division protein FtsA|g__Staphylococcus.s__Staphylococcus_aureus	99.4618335741
+UniRef50_Q8CPK5: Cell division protein FtsA|g__Staphylococcus.s__Staphylococcus_epidermidis	90.2979901913
+UniRef50_B9EBJ3: GTPase HflX	189.7373257827
+UniRef50_B9EBJ3: GTPase HflX|g__Staphylococcus.s__Staphylococcus_epidermidis	101.4193156597
+UniRef50_B9EBJ3: GTPase HflX|g__Staphylococcus.s__Staphylococcus_aureus	88.3180101230
+UniRef50_A3PS98: Transcriptional regulator, GntR family	189.7226227244
+UniRef50_A3PS98: Transcriptional regulator, GntR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	189.7226227244
+UniRef50_Q8CQL5: Poly (Glycerol-phosphate) alpha-glucosyltransferase	189.7088664062
+UniRef50_Q8CQL5: Poly (Glycerol-phosphate) alpha-glucosyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	101.2358002034
+UniRef50_Q8CQL5: Poly (Glycerol-phosphate) alpha-glucosyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	88.4730662027
+UniRef50_A1BI09: UvrABC system protein B	189.6661017806
+UniRef50_A1BI09: UvrABC system protein B|g__Staphylococcus.s__Staphylococcus_aureus	110.7299470999
+UniRef50_A1BI09: UvrABC system protein B|g__Streptococcus.s__Streptococcus_mutans	49.3211315094
+UniRef50_A1BI09: UvrABC system protein B|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.8380279425
+UniRef50_A1BI09: UvrABC system protein B|g__Clostridium.s__Clostridium_beijerinckii	1.7769952289
+UniRef50_Q9KGL2: Ribosomal RNA small subunit methyltransferase I	189.5339722360
+UniRef50_Q9KGL2: Ribosomal RNA small subunit methyltransferase I|g__Staphylococcus.s__Staphylococcus_aureus	114.9568555746
+UniRef50_Q9KGL2: Ribosomal RNA small subunit methyltransferase I|g__Staphylococcus.s__Staphylococcus_epidermidis	74.2840015357
+UniRef50_Q9KGL2: Ribosomal RNA small subunit methyltransferase I|unclassified	0.2931151257
+UniRef50_E8SES7	189.5006712182
+UniRef50_E8SES7|g__Staphylococcus.s__Staphylococcus_epidermidis	121.8279964648
+UniRef50_E8SES7|g__Staphylococcus.s__Staphylococcus_aureus	67.6726747534
+UniRef50_Q831X4: Asparagine--tRNA ligase	189.3872400830
+UniRef50_Q831X4: Asparagine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	85.6377533088
+UniRef50_Q831X4: Asparagine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	55.0504457665
+UniRef50_Q831X4: Asparagine--tRNA ligase|g__Streptococcus.s__Streptococcus_mutans	43.3874845086
+UniRef50_Q831X4: Asparagine--tRNA ligase|g__Streptococcus.s__Streptococcus_agalactiae	5.3115564990
+UniRef50_Q5HRF6: Octanoyl-[GcvH]:protein N-octanoyltransferase	189.3330577998
+UniRef50_Q5HRF6: Octanoyl-[GcvH]:protein N-octanoyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	94.9326540556
+UniRef50_Q5HRF6: Octanoyl-[GcvH]:protein N-octanoyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	94.3074420482
+UniRef50_Q5HRF6: Octanoyl-[GcvH]:protein N-octanoyltransferase|unclassified	0.0929616960
+UniRef50_P0DH75: Orotate phosphoribosyltransferase	189.2561874824
+UniRef50_P0DH75: Orotate phosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	82.7734350456
+UniRef50_P0DH75: Orotate phosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	56.4389549038
+UniRef50_P0DH75: Orotate phosphoribosyltransferase|g__Streptococcus.s__Streptococcus_mutans	49.8312647232
+UniRef50_P0DH75: Orotate phosphoribosyltransferase|unclassified	0.2125328099
+UniRef50_Q28VX1: Sigma 54 modulation protein / SSU ribosomal protein S30P	189.1674982685
+UniRef50_Q28VX1: Sigma 54 modulation protein / SSU ribosomal protein S30P|g__Rhodobacter.s__Rhodobacter_sphaeroides	189.1674982685
+UniRef50_Q5HQR8: Organic hydroperoxide resistance protein-like 1	189.1435395386
+UniRef50_Q5HQR8: Organic hydroperoxide resistance protein-like 1|g__Staphylococcus.s__Staphylococcus_aureus	110.6783731033
+UniRef50_Q5HQR8: Organic hydroperoxide resistance protein-like 1|g__Staphylococcus.s__Staphylococcus_epidermidis	78.4651664353
+UniRef50_F0P9I7: Conserved integral membrane protein, putative	189.1243031981
+UniRef50_F0P9I7: Conserved integral membrane protein, putative|g__Staphylococcus.s__Staphylococcus_aureus	95.0712169640
+UniRef50_F0P9I7: Conserved integral membrane protein, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	94.0530862342
+UniRef50_P40420: Glucose uptake protein GlcU	189.1220215932
+UniRef50_P40420: Glucose uptake protein GlcU|g__Staphylococcus.s__Staphylococcus_epidermidis	124.0954237816
+UniRef50_P40420: Glucose uptake protein GlcU|g__Staphylococcus.s__Staphylococcus_aureus	65.0265978115
+UniRef50_D6SCJ9: Quinone oxidoreductase, YhdH/YhfP family	189.0475730383
+UniRef50_D6SCJ9: Quinone oxidoreductase, YhdH/YhfP family|g__Staphylococcus.s__Staphylococcus_aureus	105.1980044056
+UniRef50_D6SCJ9: Quinone oxidoreductase, YhdH/YhfP family|g__Staphylococcus.s__Staphylococcus_epidermidis	83.8495686327
+UniRef50_Q6GG70: GTP pyrophosphokinase	189.0354371196
+UniRef50_Q6GG70: GTP pyrophosphokinase|g__Staphylococcus.s__Staphylococcus_epidermidis	99.0869478233
+UniRef50_Q6GG70: GTP pyrophosphokinase|g__Staphylococcus.s__Staphylococcus_aureus	89.8066009621
+UniRef50_Q6GG70: GTP pyrophosphokinase|unclassified	0.1418883342
+UniRef50_Q49VP4: UTP--glucose-1-phosphate uridylyltransferase 2	188.9917360468
+UniRef50_Q49VP4: UTP--glucose-1-phosphate uridylyltransferase 2|g__Staphylococcus.s__Staphylococcus_aureus	85.1588918136
+UniRef50_Q49VP4: UTP--glucose-1-phosphate uridylyltransferase 2|g__Staphylococcus.s__Staphylococcus_epidermidis	73.3733892654
+UniRef50_Q49VP4: UTP--glucose-1-phosphate uridylyltransferase 2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.0523670679
+UniRef50_Q49VP4: UTP--glucose-1-phosphate uridylyltransferase 2|unclassified	3.4070878999
+UniRef50_V6Q8F3	188.9591592698
+UniRef50_V6Q8F3|g__Staphylococcus.s__Staphylococcus_epidermidis	188.9591592698
+UniRef50_X5E2B2: Nucleoside triphosphatase YtkD	188.9260506374
+UniRef50_X5E2B2: Nucleoside triphosphatase YtkD|g__Staphylococcus.s__Staphylococcus_epidermidis	97.4785845660
+UniRef50_X5E2B2: Nucleoside triphosphatase YtkD|g__Staphylococcus.s__Staphylococcus_aureus	91.4474660714
+UniRef50_Q5JGR7: Nucleoside diphosphate kinase	188.8052158266
+UniRef50_Q5JGR7: Nucleoside diphosphate kinase|g__Staphylococcus.s__Staphylococcus_aureus	165.4666513593
+UniRef50_Q5JGR7: Nucleoside diphosphate kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.1084085875
+UniRef50_Q5JGR7: Nucleoside diphosphate kinase|unclassified	0.2301558797
+UniRef50_Q5HQK2: Glycerophosphoryl diester phosphodiesterase GlpQ, putative	188.5653464394
+UniRef50_Q5HQK2: Glycerophosphoryl diester phosphodiesterase GlpQ, putative|g__Staphylococcus.s__Staphylococcus_aureus	109.8658400495
+UniRef50_Q5HQK2: Glycerophosphoryl diester phosphodiesterase GlpQ, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	78.6995063899
+UniRef50_D3QGA7: Luciferase-like monooxygenase	188.5636808825
+UniRef50_D3QGA7: Luciferase-like monooxygenase|g__Staphylococcus.s__Staphylococcus_aureus	188.5636808825
+UniRef50_Q4L4T7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	188.4994589558
+UniRef50_Q4L4T7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	103.8922053427
+UniRef50_Q4L4T7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	84.6072536131
+UniRef50_Q5HRK2: Acetyltransferase, GNAT family	188.4991011492
+UniRef50_Q5HRK2: Acetyltransferase, GNAT family|g__Staphylococcus.s__Staphylococcus_epidermidis	188.4991011492
+UniRef50_T1Y8A8: Acetyltransferase	188.4199956495
+UniRef50_T1Y8A8: Acetyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	126.5528691574
+UniRef50_T1Y8A8: Acetyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	61.8671264921
+UniRef50_Q8EQK8: Choline ABC transporter ATP-binding protein	188.3878875167
+UniRef50_Q8EQK8: Choline ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	101.5879443712
+UniRef50_Q8EQK8: Choline ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	86.7999431455
+UniRef50_C5MZE1: Transporter, major facilitator family protein	188.3510043648
+UniRef50_C5MZE1: Transporter, major facilitator family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	96.1279961742
+UniRef50_C5MZE1: Transporter, major facilitator family protein|g__Staphylococcus.s__Staphylococcus_aureus	92.2230081906
+UniRef50_R9YSK0: Sugar (And other) transporter family protein	188.3091446054
+UniRef50_R9YSK0: Sugar (And other) transporter family protein|g__Staphylococcus.s__Staphylococcus_aureus	99.6546732740
+UniRef50_R9YSK0: Sugar (And other) transporter family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	88.6544713314
+UniRef50_Q4L8J6: Ribose-5-phosphate isomerase A	188.2998343727
+UniRef50_Q4L8J6: Ribose-5-phosphate isomerase A|g__Staphylococcus.s__Staphylococcus_aureus	99.4609156115
+UniRef50_Q4L8J6: Ribose-5-phosphate isomerase A|g__Staphylococcus.s__Staphylococcus_epidermidis	88.0216130864
+UniRef50_Q4L8J6: Ribose-5-phosphate isomerase A|unclassified	0.8173056749
+UniRef50_Q2G2P8: ADP-dependent (S)-NAD(P)H-hydrate dehydratase	188.2370368613
+UniRef50_Q2G2P8: ADP-dependent (S)-NAD(P)H-hydrate dehydratase|g__Staphylococcus.s__Staphylococcus_aureus	125.4536747573
+UniRef50_Q2G2P8: ADP-dependent (S)-NAD(P)H-hydrate dehydratase|g__Staphylococcus.s__Staphylococcus_epidermidis	62.4336844568
+UniRef50_Q2G2P8: ADP-dependent (S)-NAD(P)H-hydrate dehydratase|unclassified	0.3496776473
+UniRef50_UPI000382D87E: hypothetical protein	188.2295927952
+UniRef50_UPI000382D87E: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	177.3553838339
+UniRef50_UPI000382D87E: hypothetical protein|unclassified	10.8742089612
+UniRef50_Q5HM49: Transporter, putative	188.1317122032
+UniRef50_Q5HM49: Transporter, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	94.9816419781
+UniRef50_Q5HM49: Transporter, putative|g__Staphylococcus.s__Staphylococcus_aureus	93.1500702252
+UniRef50_A0A020D651	188.1147908579
+UniRef50_A0A020D651|unclassified	188.1147908579
+UniRef50_Q03Q56: D-ribose pyranase	188.0489827196
+UniRef50_Q03Q56: D-ribose pyranase|g__Staphylococcus.s__Staphylococcus_epidermidis	156.2145674876
+UniRef50_Q03Q56: D-ribose pyranase|g__Staphylococcus.s__Staphylococcus_aureus	31.4148255212
+UniRef50_Q03Q56: D-ribose pyranase|unclassified	0.4195897108
+UniRef50_Q6GF03: Alanine racemase 1	188.0233142243
+UniRef50_Q6GF03: Alanine racemase 1|g__Staphylococcus.s__Staphylococcus_aureus	117.7462899299
+UniRef50_Q6GF03: Alanine racemase 1|g__Staphylococcus.s__Staphylococcus_epidermidis	70.2174613598
+UniRef50_Q6GF03: Alanine racemase 1|unclassified	0.0595629346
+UniRef50_D6SFZ4: Tetratricopeptide repeat protein	187.9930738874
+UniRef50_D6SFZ4: Tetratricopeptide repeat protein|g__Staphylococcus.s__Staphylococcus_epidermidis	109.2366819763
+UniRef50_D6SFZ4: Tetratricopeptide repeat protein|g__Staphylococcus.s__Staphylococcus_aureus	78.7563919111
+UniRef50_Q5HM63: Drug resistance transporter, EmrB/QacA family	187.9070476288
+UniRef50_Q5HM63: Drug resistance transporter, EmrB/QacA family|g__Staphylococcus.s__Staphylococcus_epidermidis	187.9070476288
+UniRef50_O32163: Zinc-dependent sulfurtransferase SufU	187.6868145452
+UniRef50_O32163: Zinc-dependent sulfurtransferase SufU|g__Staphylococcus.s__Staphylococcus_aureus	106.1747963945
+UniRef50_O32163: Zinc-dependent sulfurtransferase SufU|g__Staphylococcus.s__Staphylococcus_epidermidis	81.5120181507
+UniRef50_P08065: Succinate dehydrogenase flavoprotein subunit	187.6229295411
+UniRef50_P08065: Succinate dehydrogenase flavoprotein subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	97.0758175052
+UniRef50_P08065: Succinate dehydrogenase flavoprotein subunit|g__Staphylococcus.s__Staphylococcus_aureus	90.5471120358
+UniRef50_A4W0T4: GMP reductase	187.5482523985
+UniRef50_A4W0T4: GMP reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	99.5119397877
+UniRef50_A4W0T4: GMP reductase|g__Staphylococcus.s__Staphylococcus_aureus	82.3128780050
+UniRef50_A4W0T4: GMP reductase|g__Helicobacter.s__Helicobacter_pylori	3.0663915979
+UniRef50_A4W0T4: GMP reductase|g__Streptococcus.s__Streptococcus_agalactiae	2.6570430079
+UniRef50_A7Z7M0: Argininosuccinate synthase	187.5303611510
+UniRef50_A7Z7M0: Argininosuccinate synthase|g__Staphylococcus.s__Staphylococcus_aureus	102.1860065385
+UniRef50_A7Z7M0: Argininosuccinate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	85.2942138061
+UniRef50_A7Z7M0: Argininosuccinate synthase|unclassified	0.0501408063
+UniRef50_Q031Z8: UPF0397 protein LACR_0367	187.5199351511
+UniRef50_Q031Z8: UPF0397 protein LACR_0367|g__Staphylococcus.s__Staphylococcus_aureus	155.1647924292
+UniRef50_Q031Z8: UPF0397 protein LACR_0367|g__Streptococcus.s__Streptococcus_mutans	32.3551427219
+UniRef50_Q5HQY3	187.5123935440
+UniRef50_Q5HQY3|g__Staphylococcus.s__Staphylococcus_epidermidis	102.3681822710
+UniRef50_Q5HQY3|g__Staphylococcus.s__Staphylococcus_aureus	85.1442112730
+UniRef50_Q5HDX9: Adenylate kinase	187.4393774434
+UniRef50_Q5HDX9: Adenylate kinase|g__Staphylococcus.s__Staphylococcus_aureus	107.2903648187
+UniRef50_Q5HDX9: Adenylate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	79.6435333419
+UniRef50_Q5HDX9: Adenylate kinase|unclassified	0.5054792828
+UniRef50_Q5HKV0: Indole-3-pyruvate decarboxylase	187.4369078198
+UniRef50_Q5HKV0: Indole-3-pyruvate decarboxylase|g__Staphylococcus.s__Staphylococcus_aureus	105.4800227078
+UniRef50_Q5HKV0: Indole-3-pyruvate decarboxylase|g__Staphylococcus.s__Staphylococcus_epidermidis	81.9568851120
+UniRef50_Q1IZI8: Uridylate kinase	187.2649812709
+UniRef50_Q1IZI8: Uridylate kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	102.6032250562
+UniRef50_Q1IZI8: Uridylate kinase|g__Streptococcus.s__Streptococcus_mutans	71.0555304642
+UniRef50_Q1IZI8: Uridylate kinase|g__Streptococcus.s__Streptococcus_agalactiae	9.8969370064
+UniRef50_Q1IZI8: Uridylate kinase|g__Deinococcus.s__Deinococcus_radiodurans	3.5587188612
+UniRef50_Q1IZI8: Uridylate kinase|unclassified	0.1505698829
+UniRef50_D6SE47	187.1613939959
+UniRef50_D6SE47|g__Staphylococcus.s__Staphylococcus_aureus	187.1613939959
+UniRef50_P21880: Dihydrolipoyl dehydrogenase	187.0873650484
+UniRef50_P21880: Dihydrolipoyl dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	100.9189367241
+UniRef50_P21880: Dihydrolipoyl dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	85.9596244547
+UniRef50_P21880: Dihydrolipoyl dehydrogenase|unclassified	0.2088038696
+UniRef50_Q49XC4	187.0708255361
+UniRef50_Q49XC4|g__Staphylococcus.s__Staphylococcus_epidermidis	95.3353378310
+UniRef50_Q49XC4|g__Staphylococcus.s__Staphylococcus_aureus	91.7354877052
+UniRef50_Q2FE11: Phosphoglucomutase	187.0530943070
+UniRef50_Q2FE11: Phosphoglucomutase|g__Staphylococcus.s__Staphylococcus_aureus	97.7320146129
+UniRef50_Q2FE11: Phosphoglucomutase|g__Staphylococcus.s__Staphylococcus_epidermidis	87.8360606216
+UniRef50_Q2FE11: Phosphoglucomutase|unclassified	1.4850190726
+UniRef50_P54542	187.0009073766
+UniRef50_P54542|g__Staphylococcus.s__Staphylococcus_epidermidis	98.4487990989
+UniRef50_P54542|g__Staphylococcus.s__Staphylococcus_aureus	88.5521082777
+UniRef50_U5UNI0	186.9486074977
+UniRef50_U5UNI0|g__Staphylococcus.s__Staphylococcus_epidermidis	101.7974660111
+UniRef50_U5UNI0|g__Staphylococcus.s__Staphylococcus_aureus	85.1511414865
+UniRef50_Q2RJ31: Glutamate-1-semialdehyde 2,1-aminomutase	186.9450888054
+UniRef50_Q2RJ31: Glutamate-1-semialdehyde 2,1-aminomutase|g__Staphylococcus.s__Staphylococcus_epidermidis	93.9791855927
+UniRef50_Q2RJ31: Glutamate-1-semialdehyde 2,1-aminomutase|g__Staphylococcus.s__Staphylococcus_aureus	92.8770126072
+UniRef50_Q2RJ31: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0888906056
+UniRef50_N0AM09	186.8984092071
+UniRef50_N0AM09|g__Escherichia.s__Escherichia_coli	186.8092799862
+UniRef50_N0AM09|unclassified	0.0891292209
+UniRef50_P06574: RNA polymerase sigma-B factor	186.8780228932
+UniRef50_P06574: RNA polymerase sigma-B factor|g__Staphylococcus.s__Staphylococcus_epidermidis	95.9848997398
+UniRef50_P06574: RNA polymerase sigma-B factor|g__Staphylococcus.s__Staphylococcus_aureus	90.8931231534
+UniRef50_A5UJB4: Putative transposase	186.7126883047
+UniRef50_A5UJB4: Putative transposase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	185.8709374630
+UniRef50_A5UJB4: Putative transposase|unclassified	0.8417508418
+UniRef50_Q4L332: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	186.5150750716
+UniRef50_Q4L332: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	102.1242075330
+UniRef50_Q4L332: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	84.3908675386
+UniRef50_Q8SDK3: Phi PVL orfs 18-19-like protein	186.5032536158
+UniRef50_Q8SDK3: Phi PVL orfs 18-19-like protein|g__Staphylococcus.s__Staphylococcus_aureus	186.5032536158
+UniRef50_Q8CNS0: Uroporphyrinogen decarboxylase	186.4258550098
+UniRef50_Q8CNS0: Uroporphyrinogen decarboxylase|g__Staphylococcus.s__Staphylococcus_aureus	101.7645799219
+UniRef50_Q8CNS0: Uroporphyrinogen decarboxylase|g__Staphylococcus.s__Staphylococcus_epidermidis	84.3697237490
+UniRef50_Q8CNS0: Uroporphyrinogen decarboxylase|unclassified	0.2915513389
+UniRef50_G7ZP32	186.4123350652
+UniRef50_G7ZP32|g__Staphylococcus.s__Staphylococcus_aureus	144.6002561759
+UniRef50_G7ZP32|g__Staphylococcus.s__Staphylococcus_epidermidis	41.8120788893
+UniRef50_Q6GEF9: Molybdenum cofactor biosynthesis protein B	186.3391229728
+UniRef50_Q6GEF9: Molybdenum cofactor biosynthesis protein B|g__Staphylococcus.s__Staphylococcus_aureus	116.8638236295
+UniRef50_Q6GEF9: Molybdenum cofactor biosynthesis protein B|g__Staphylococcus.s__Staphylococcus_epidermidis	65.9335226719
+UniRef50_Q6GEF9: Molybdenum cofactor biosynthesis protein B|unclassified	3.5417766714
+UniRef50_O34987: Guanine/hypoxanthine permease PbuG	186.2841207003
+UniRef50_O34987: Guanine/hypoxanthine permease PbuG|g__Staphylococcus.s__Staphylococcus_aureus	105.1649998049
+UniRef50_O34987: Guanine/hypoxanthine permease PbuG|g__Staphylococcus.s__Staphylococcus_epidermidis	81.1191208954
+UniRef50_Q8CQ61: Mercuric reductase-like protein	186.2496739710
+UniRef50_Q8CQ61: Mercuric reductase-like protein|g__Staphylococcus.s__Staphylococcus_aureus	94.4902821187
+UniRef50_Q8CQ61: Mercuric reductase-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	91.7593918523
+UniRef50_P20368: Alcohol dehydrogenase 1	186.2244937744
+UniRef50_P20368: Alcohol dehydrogenase 1|g__Staphylococcus.s__Staphylococcus_epidermidis	109.2641446794
+UniRef50_P20368: Alcohol dehydrogenase 1|g__Staphylococcus.s__Staphylococcus_aureus	69.8479028137
+UniRef50_P20368: Alcohol dehydrogenase 1|g__Escherichia.s__Escherichia_coli	5.4885264847
+UniRef50_P20368: Alcohol dehydrogenase 1|g__Streptococcus.s__Streptococcus_agalactiae	1.0000000000
+UniRef50_P20368: Alcohol dehydrogenase 1|unclassified	0.6239197966
+UniRef50_F2HK99: Branched-chain amino acid:cation transporter, LIVCS family	186.1023327051
+UniRef50_F2HK99: Branched-chain amino acid:cation transporter, LIVCS family|g__Staphylococcus.s__Staphylococcus_aureus	123.3381291170
+UniRef50_F2HK99: Branched-chain amino acid:cation transporter, LIVCS family|g__Staphylococcus.s__Staphylococcus_epidermidis	62.7642035881
+UniRef50_Q5HLN7: Membrane-associated protein TcaA	186.0883213153
+UniRef50_Q5HLN7: Membrane-associated protein TcaA|g__Staphylococcus.s__Staphylococcus_epidermidis	94.7979232750
+UniRef50_Q5HLN7: Membrane-associated protein TcaA|g__Staphylococcus.s__Staphylococcus_aureus	91.2903980403
+UniRef50_L7WZ77: Sugar isomerase (SIS)	186.0355990910
+UniRef50_L7WZ77: Sugar isomerase (SIS)|g__Staphylococcus.s__Staphylococcus_aureus	129.6574537739
+UniRef50_L7WZ77: Sugar isomerase (SIS)|g__Staphylococcus.s__Staphylococcus_epidermidis	56.3781453170
+UniRef50_X5EHY0: Sodium/hydrogen exchanger family protein	185.9844443218
+UniRef50_X5EHY0: Sodium/hydrogen exchanger family protein|g__Staphylococcus.s__Staphylococcus_aureus	102.3813354526
+UniRef50_X5EHY0: Sodium/hydrogen exchanger family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	83.6031088692
+UniRef50_Q8CNF4: NAD-dependent protein deacetylase	185.9191507300
+UniRef50_Q8CNF4: NAD-dependent protein deacetylase|g__Staphylococcus.s__Staphylococcus_aureus	97.4446321254
+UniRef50_Q8CNF4: NAD-dependent protein deacetylase|g__Staphylococcus.s__Staphylococcus_epidermidis	88.4745186046
+UniRef50_Q5HEM7: DNA polymerase IV	185.9088173246
+UniRef50_Q5HEM7: DNA polymerase IV|g__Staphylococcus.s__Staphylococcus_epidermidis	103.4803462602
+UniRef50_Q5HEM7: DNA polymerase IV|g__Staphylococcus.s__Staphylococcus_aureus	82.4284710643
+UniRef50_A0A020CZ26	185.8451182636
+UniRef50_A0A020CZ26|unclassified	185.8451182636
+UniRef50_Q4L574: N5-carboxyaminoimidazole ribonucleotide synthase	185.8246703206
+UniRef50_Q4L574: N5-carboxyaminoimidazole ribonucleotide synthase|g__Staphylococcus.s__Staphylococcus_aureus	107.3181113307
+UniRef50_Q4L574: N5-carboxyaminoimidazole ribonucleotide synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	78.5065589899
+UniRef50_Q4L3R2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	185.6930947302
+UniRef50_Q4L3R2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	122.8111453540
+UniRef50_Q4L3R2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	62.8819493762
+UniRef50_W5WU40: Anion transporter	185.6819008903
+UniRef50_W5WU40: Anion transporter|g__Staphylococcus.s__Staphylococcus_aureus	99.1513004576
+UniRef50_W5WU40: Anion transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	86.5306004327
+UniRef50_D9RK78: Arginine/ornithine APC family amino acid-polyamine-organocation transporter, antiporter	185.6617116705
+UniRef50_D9RK78: Arginine/ornithine APC family amino acid-polyamine-organocation transporter, antiporter|g__Staphylococcus.s__Staphylococcus_aureus	97.6387726346
+UniRef50_D9RK78: Arginine/ornithine APC family amino acid-polyamine-organocation transporter, antiporter|g__Staphylococcus.s__Staphylococcus_epidermidis	85.7737953466
+UniRef50_D9RK78: Arginine/ornithine APC family amino acid-polyamine-organocation transporter, antiporter|g__Streptococcus.s__Streptococcus_agalactiae	2.2491436893
+UniRef50_Q2YV12: PTS system EIIBC component SAB0132	185.6460808776
+UniRef50_Q2YV12: PTS system EIIBC component SAB0132|g__Staphylococcus.s__Staphylococcus_aureus	115.2507880506
+UniRef50_Q2YV12: PTS system EIIBC component SAB0132|g__Staphylococcus.s__Staphylococcus_epidermidis	70.2833239810
+UniRef50_Q2YV12: PTS system EIIBC component SAB0132|unclassified	0.1119688460
+UniRef50_Q88W26: ATP-dependent protease ATPase subunit HslU	185.6272852105
+UniRef50_Q88W26: ATP-dependent protease ATPase subunit HslU|g__Staphylococcus.s__Staphylococcus_aureus	97.3019665060
+UniRef50_Q88W26: ATP-dependent protease ATPase subunit HslU|g__Staphylococcus.s__Staphylococcus_epidermidis	88.3253187045
+UniRef50_C7ZV35: II DNA/RNA helicase ComFC	185.5181971810
+UniRef50_C7ZV35: II DNA/RNA helicase ComFC|g__Staphylococcus.s__Staphylococcus_epidermidis	95.6438953107
+UniRef50_C7ZV35: II DNA/RNA helicase ComFC|g__Staphylococcus.s__Staphylococcus_aureus	89.8743018703
+UniRef50_O06662: tRNA(fMet)-specific endonuclease VapC	185.4768863841
+UniRef50_O06662: tRNA(fMet)-specific endonuclease VapC|g__Rhodobacter.s__Rhodobacter_sphaeroides	184.8314555890
+UniRef50_O06662: tRNA(fMet)-specific endonuclease VapC|unclassified	0.6454307951
+UniRef50_O31546: Probable tRNA-dihydrouridine synthase 2	185.4329442107
+UniRef50_O31546: Probable tRNA-dihydrouridine synthase 2|g__Staphylococcus.s__Staphylococcus_aureus	100.8274644326
+UniRef50_O31546: Probable tRNA-dihydrouridine synthase 2|g__Staphylococcus.s__Staphylococcus_epidermidis	84.6054797780
+UniRef50_Q2YVT4: N-acetylmuramoyl-L-alanine amidase sle1	185.1707544989
+UniRef50_Q2YVT4: N-acetylmuramoyl-L-alanine amidase sle1|g__Staphylococcus.s__Staphylococcus_epidermidis	98.1680726361
+UniRef50_Q2YVT4: N-acetylmuramoyl-L-alanine amidase sle1|g__Staphylococcus.s__Staphylococcus_aureus	87.0026818628
+UniRef50_Q8CPM1: Protoheme IX farnesyltransferase	185.1577830140
+UniRef50_Q8CPM1: Protoheme IX farnesyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	97.5859637317
+UniRef50_Q8CPM1: Protoheme IX farnesyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	87.5360421275
+UniRef50_Q8CPM1: Protoheme IX farnesyltransferase|unclassified	0.0357771548
+UniRef50_D9RD76: MFS family major facilitator transporter, bicyclomycin:cation symporter	185.0076404655
+UniRef50_D9RD76: MFS family major facilitator transporter, bicyclomycin:cation symporter|g__Staphylococcus.s__Staphylococcus_epidermidis	94.0479562736
+UniRef50_D9RD76: MFS family major facilitator transporter, bicyclomycin:cation symporter|g__Staphylococcus.s__Staphylococcus_aureus	90.9596841919
+UniRef50_C3AH20: Dehydrogenase	184.9533155502
+UniRef50_C3AH20: Dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	117.9367987263
+UniRef50_C3AH20: Dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	67.0165168238
+UniRef50_B7IR21: Membrane protein PfoR	184.8511608104
+UniRef50_B7IR21: Membrane protein PfoR|g__Staphylococcus.s__Staphylococcus_aureus	109.7867798441
+UniRef50_B7IR21: Membrane protein PfoR|g__Staphylococcus.s__Staphylococcus_epidermidis	69.6551588683
+UniRef50_B7IR21: Membrane protein PfoR|g__Streptococcus.s__Streptococcus_agalactiae	5.4092220980
+UniRef50_U5LD58: Asparaginase	184.8015002592
+UniRef50_U5LD58: Asparaginase|g__Staphylococcus.s__Staphylococcus_epidermidis	121.8755520978
+UniRef50_U5LD58: Asparaginase|g__Staphylococcus.s__Staphylococcus_aureus	62.9259481614
+UniRef50_V6QFC6: Recombinase	184.7621322906
+UniRef50_V6QFC6: Recombinase|g__Staphylococcus.s__Staphylococcus_epidermidis	184.7621322906
+UniRef50_O34580: ATP-dependent DNA helicase PcrA	184.6527766016
+UniRef50_O34580: ATP-dependent DNA helicase PcrA|g__Staphylococcus.s__Staphylococcus_epidermidis	96.9203034966
+UniRef50_O34580: ATP-dependent DNA helicase PcrA|g__Staphylococcus.s__Staphylococcus_aureus	87.4234898330
+UniRef50_O34580: ATP-dependent DNA helicase PcrA|unclassified	0.3089832719
+UniRef50_Q5HQE8: Probable glycolipid permease LtaA	184.6001663207
+UniRef50_Q5HQE8: Probable glycolipid permease LtaA|g__Staphylococcus.s__Staphylococcus_aureus	105.3027476881
+UniRef50_Q5HQE8: Probable glycolipid permease LtaA|g__Staphylococcus.s__Staphylococcus_epidermidis	79.2974186326
+UniRef50_Q6GDP8: Ferrous iron transport protein B	184.5726131449
+UniRef50_Q6GDP8: Ferrous iron transport protein B|g__Staphylococcus.s__Staphylococcus_aureus	103.9310409506
+UniRef50_Q6GDP8: Ferrous iron transport protein B|g__Staphylococcus.s__Staphylococcus_epidermidis	80.6415721943
+UniRef50_Q5HH80: UPF0738 protein SACOL1009	184.5630501580
+UniRef50_Q5HH80: UPF0738 protein SACOL1009|g__Staphylococcus.s__Staphylococcus_aureus	170.2380952381
+UniRef50_Q5HH80: UPF0738 protein SACOL1009|g__Staphylococcus.s__Staphylococcus_epidermidis	13.1792242341
+UniRef50_Q5HH80: UPF0738 protein SACOL1009|unclassified	1.1457306858
+UniRef50_A5IV60: Molybdate ABC transporter, inner membrane subunit	184.5599866978
+UniRef50_A5IV60: Molybdate ABC transporter, inner membrane subunit|g__Staphylococcus.s__Staphylococcus_aureus	112.2010158365
+UniRef50_A5IV60: Molybdate ABC transporter, inner membrane subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	72.3589708613
+UniRef50_Q8CRU1	184.5369826899
+UniRef50_Q8CRU1|g__Staphylococcus.s__Staphylococcus_epidermidis	94.2839237580
+UniRef50_Q8CRU1|g__Staphylococcus.s__Staphylococcus_aureus	90.2530589319
+UniRef50_Q6G9H0: Conserved virulence factor B	184.5331702952
+UniRef50_Q6G9H0: Conserved virulence factor B|g__Staphylococcus.s__Staphylococcus_epidermidis	93.0007026944
+UniRef50_Q6G9H0: Conserved virulence factor B|g__Staphylococcus.s__Staphylococcus_aureus	91.5324676008
+UniRef50_D8HHG7: Oligopeptide transport system permease protein	184.3200810889
+UniRef50_D8HHG7: Oligopeptide transport system permease protein|g__Staphylococcus.s__Staphylococcus_aureus	99.3413303377
+UniRef50_D8HHG7: Oligopeptide transport system permease protein|g__Staphylococcus.s__Staphylococcus_epidermidis	84.9787507512
+UniRef50_A4W453: 30S ribosomal protein S2	184.2998499083
+UniRef50_A4W453: 30S ribosomal protein S2|g__Staphylococcus.s__Staphylococcus_epidermidis	78.1592299271
+UniRef50_A4W453: 30S ribosomal protein S2|g__Streptococcus.s__Streptococcus_mutans	59.1150107460
+UniRef50_A4W453: 30S ribosomal protein S2|g__Staphylococcus.s__Staphylococcus_aureus	41.0098293200
+UniRef50_A4W453: 30S ribosomal protein S2|g__Deinococcus.s__Deinococcus_radiodurans	6.0157799153
+UniRef50_A3PNX1	184.2327310885
+UniRef50_A3PNX1|g__Rhodobacter.s__Rhodobacter_sphaeroides	166.1117873561
+UniRef50_A3PNX1|unclassified	18.1209437323
+UniRef50_A5ISU0: von Willebrand factor, type A	184.1077052131
+UniRef50_A5ISU0: von Willebrand factor, type A|g__Staphylococcus.s__Staphylococcus_epidermidis	98.8655077856
+UniRef50_A5ISU0: von Willebrand factor, type A|g__Staphylococcus.s__Staphylococcus_aureus	85.1213786822
+UniRef50_A5ISU0: von Willebrand factor, type A|unclassified	0.1208187453
+UniRef50_Q8EHK0: Purine nucleoside phosphorylase DeoD-type 2	184.0701641060
+UniRef50_Q8EHK0: Purine nucleoside phosphorylase DeoD-type 2|g__Staphylococcus.s__Staphylococcus_epidermidis	101.6986355001
+UniRef50_Q8EHK0: Purine nucleoside phosphorylase DeoD-type 2|g__Staphylococcus.s__Staphylococcus_aureus	79.5953778066
+UniRef50_Q8EHK0: Purine nucleoside phosphorylase DeoD-type 2|g__Clostridium.s__Clostridium_beijerinckii	2.3980815348
+UniRef50_Q8EHK0: Purine nucleoside phosphorylase DeoD-type 2|unclassified	0.3780692646
+UniRef50_Q3J1F7	184.0642560951
+UniRef50_Q3J1F7|g__Rhodobacter.s__Rhodobacter_sphaeroides	153.0112319093
+UniRef50_Q3J1F7|unclassified	31.0530241858
+UniRef50_Q6GEQ8: Probable uridylyltransferase SAR2262	184.0335748712
+UniRef50_Q6GEQ8: Probable uridylyltransferase SAR2262|g__Staphylococcus.s__Staphylococcus_aureus	98.4381301062
+UniRef50_Q6GEQ8: Probable uridylyltransferase SAR2262|g__Staphylococcus.s__Staphylococcus_epidermidis	85.5954447650
+UniRef50_F3U4M2: TRAP dicarboxylate family transporter DctQ subunit	183.8566760337
+UniRef50_F3U4M2: TRAP dicarboxylate family transporter DctQ subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	181.2689031866
+UniRef50_F3U4M2: TRAP dicarboxylate family transporter DctQ subunit|unclassified	2.5877728471
+UniRef50_L7WSV6	183.7687733599
+UniRef50_L7WSV6|g__Staphylococcus.s__Staphylococcus_aureus	118.1067482602
+UniRef50_L7WSV6|g__Staphylococcus.s__Staphylococcus_epidermidis	65.6620250997
+UniRef50_T1YC46: Integral membrane protein	183.6161467675
+UniRef50_T1YC46: Integral membrane protein|g__Staphylococcus.s__Staphylococcus_aureus	98.8140112990
+UniRef50_T1YC46: Integral membrane protein|g__Staphylococcus.s__Staphylococcus_epidermidis	84.0364285533
+UniRef50_T1YC46: Integral membrane protein|unclassified	0.7657069152
+UniRef50_Q1QNK0	183.6063871600
+UniRef50_Q1QNK0|g__Rhodobacter.s__Rhodobacter_sphaeroides	181.1485301062
+UniRef50_Q1QNK0|unclassified	2.4578570537
+UniRef50_B9DKZ2: Protein containing tetrapyrrole methyltransferase domain and MazG-like (Predicted pyrophosphatase) domain	183.5552053427
+UniRef50_B9DKZ2: Protein containing tetrapyrrole methyltransferase domain and MazG-like (Predicted pyrophosphatase) domain|g__Staphylococcus.s__Staphylococcus_aureus	108.7568559138
+UniRef50_B9DKZ2: Protein containing tetrapyrrole methyltransferase domain and MazG-like (Predicted pyrophosphatase) domain|g__Staphylococcus.s__Staphylococcus_epidermidis	74.7983494289
+UniRef50_Q2FJB8: Transcriptional regulator CtsR	183.3350969535
+UniRef50_Q2FJB8: Transcriptional regulator CtsR|g__Staphylococcus.s__Staphylococcus_aureus	96.5228750405
+UniRef50_Q2FJB8: Transcriptional regulator CtsR|g__Staphylococcus.s__Staphylococcus_epidermidis	86.8122219130
+UniRef50_D6SC26: 6-O-methylguanine DNA methyltransferase, DNA binding domain protein	183.2872720489
+UniRef50_D6SC26: 6-O-methylguanine DNA methyltransferase, DNA binding domain protein|g__Staphylococcus.s__Staphylococcus_aureus	95.0855771344
+UniRef50_D6SC26: 6-O-methylguanine DNA methyltransferase, DNA binding domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	88.2016949145
+UniRef50_D3QI51: Transporter	183.2682509214
+UniRef50_D3QI51: Transporter|g__Staphylococcus.s__Staphylococcus_aureus	110.1029080542
+UniRef50_D3QI51: Transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	73.1653428672
+UniRef50_A7GMX2: Na+ antiporter NhaC	183.2496444285
+UniRef50_A7GMX2: Na+ antiporter NhaC|g__Staphylococcus.s__Staphylococcus_aureus	117.8893883144
+UniRef50_A7GMX2: Na+ antiporter NhaC|g__Staphylococcus.s__Staphylococcus_epidermidis	65.3602561140
+UniRef50_O31703: Molybdopterin molybdenumtransferase	183.1974304588
+UniRef50_O31703: Molybdopterin molybdenumtransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	101.0861935661
+UniRef50_O31703: Molybdopterin molybdenumtransferase|g__Staphylococcus.s__Staphylococcus_aureus	82.1112368927
+UniRef50_D3QHC2: Membrane protein, putative	183.1548339561
+UniRef50_D3QHC2: Membrane protein, putative|g__Staphylococcus.s__Staphylococcus_aureus	92.1592019568
+UniRef50_D3QHC2: Membrane protein, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	90.8686390977
+UniRef50_D3QHC2: Membrane protein, putative|unclassified	0.1269929016
+UniRef50_Q49WG6: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase	183.0231218434
+UniRef50_Q49WG6: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	100.5488145099
+UniRef50_Q49WG6: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase|g__Staphylococcus.s__Staphylococcus_aureus	82.4743073335
+UniRef50_D3QES6	182.9345230237
+UniRef50_D3QES6|g__Staphylococcus.s__Staphylococcus_epidermidis	95.0302651792
+UniRef50_D3QES6|g__Staphylococcus.s__Staphylococcus_aureus	87.6958143866
+UniRef50_D3QES6|unclassified	0.2084434579
+UniRef50_A7X5Y6: Heme sensor protein HssS	182.8936943417
+UniRef50_A7X5Y6: Heme sensor protein HssS|g__Staphylococcus.s__Staphylococcus_aureus	98.2566694151
+UniRef50_A7X5Y6: Heme sensor protein HssS|g__Staphylococcus.s__Staphylococcus_epidermidis	84.5545471854
+UniRef50_A7X5Y6: Heme sensor protein HssS|unclassified	0.0824777412
+UniRef50_Q8CN54: Antiholin-like protein LrgA	182.6432208756
+UniRef50_Q8CN54: Antiholin-like protein LrgA|g__Staphylococcus.s__Staphylococcus_epidermidis	126.2035094689
+UniRef50_Q8CN54: Antiholin-like protein LrgA|g__Staphylococcus.s__Staphylococcus_aureus	56.4397114067
+UniRef50_C5FB81: APC family amino acid-polyamine-organocation transporter	182.6130110448
+UniRef50_C5FB81: APC family amino acid-polyamine-organocation transporter|g__Staphylococcus.s__Staphylococcus_aureus	97.3463917739
+UniRef50_C5FB81: APC family amino acid-polyamine-organocation transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	85.2666192709
+UniRef50_P42799: Glutamate-1-semialdehyde 2,1-aminomutase 1, chloroplastic	182.5667777125
+UniRef50_P42799: Glutamate-1-semialdehyde 2,1-aminomutase 1, chloroplastic|g__Staphylococcus.s__Staphylococcus_epidermidis	93.8616725970
+UniRef50_P42799: Glutamate-1-semialdehyde 2,1-aminomutase 1, chloroplastic|g__Staphylococcus.s__Staphylococcus_aureus	88.6421681963
+UniRef50_P42799: Glutamate-1-semialdehyde 2,1-aminomutase 1, chloroplastic|unclassified	0.0629369191
+UniRef50_Q5HRF8: Putative heme-dependent peroxidase SERP0235	182.5589306716
+UniRef50_Q5HRF8: Putative heme-dependent peroxidase SERP0235|g__Staphylococcus.s__Staphylococcus_aureus	108.7065303532
+UniRef50_Q5HRF8: Putative heme-dependent peroxidase SERP0235|g__Staphylococcus.s__Staphylococcus_epidermidis	73.4291618354
+UniRef50_Q5HRF8: Putative heme-dependent peroxidase SERP0235|unclassified	0.4232384830
+UniRef50_Q6G9K4: DNA topoisomerase 4 subunit A	182.4866931637
+UniRef50_Q6G9K4: DNA topoisomerase 4 subunit A|g__Staphylococcus.s__Staphylococcus_epidermidis	99.1333724733
+UniRef50_Q6G9K4: DNA topoisomerase 4 subunit A|g__Staphylococcus.s__Staphylococcus_aureus	83.2504974498
+UniRef50_Q6G9K4: DNA topoisomerase 4 subunit A|unclassified	0.1028232406
+UniRef50_P0AEV8: Formate hydrogenlyase maturation protein HycH	182.4276137368
+UniRef50_P0AEV8: Formate hydrogenlyase maturation protein HycH|g__Escherichia.s__Escherichia_coli	182.4276137368
+UniRef50_A8LU41: Replication protein B	182.3711353339
+UniRef50_A8LU41: Replication protein B|g__Rhodobacter.s__Rhodobacter_sphaeroides	182.3711353339
+UniRef50_Q5HDU6: Lipid II:glycine glycyltransferase	182.3658506281
+UniRef50_Q5HDU6: Lipid II:glycine glycyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	105.6379989752
+UniRef50_Q5HDU6: Lipid II:glycine glycyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	76.7278516529
+UniRef50_W8TV76: 2-hydroxyacid dehydrogenase	182.3650559886
+UniRef50_W8TV76: 2-hydroxyacid dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	101.0608313636
+UniRef50_W8TV76: 2-hydroxyacid dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	81.3042246250
+UniRef50_Q5HME0: Probable DEAD-box ATP-dependent RNA helicase SERP1688	182.3064046276
+UniRef50_Q5HME0: Probable DEAD-box ATP-dependent RNA helicase SERP1688|g__Staphylococcus.s__Staphylococcus_epidermidis	98.7440986032
+UniRef50_Q5HME0: Probable DEAD-box ATP-dependent RNA helicase SERP1688|g__Staphylococcus.s__Staphylococcus_aureus	83.4448237891
+UniRef50_Q5HME0: Probable DEAD-box ATP-dependent RNA helicase SERP1688|unclassified	0.1174822353
+UniRef50_Q67JV0: 50S ribosomal protein L16	182.3032600700
+UniRef50_Q67JV0: 50S ribosomal protein L16|g__Streptococcus.s__Streptococcus_mutans	156.6622344290
+UniRef50_Q67JV0: 50S ribosomal protein L16|g__Streptococcus.s__Streptococcus_agalactiae	25.6410256410
+UniRef50_A2RN27: Methionyl-tRNA formyltransferase	182.2907381081
+UniRef50_A2RN27: Methionyl-tRNA formyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	64.7354805143
+UniRef50_A2RN27: Methionyl-tRNA formyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	63.2609130309
+UniRef50_A2RN27: Methionyl-tRNA formyltransferase|g__Streptococcus.s__Streptococcus_mutans	54.2943445629
+UniRef50_A5MZU0: Carbamoyl-phosphate synthase large chain	182.2279316055
+UniRef50_A5MZU0: Carbamoyl-phosphate synthase large chain|g__Staphylococcus.s__Staphylococcus_epidermidis	104.9973771680
+UniRef50_A5MZU0: Carbamoyl-phosphate synthase large chain|g__Staphylococcus.s__Staphylococcus_aureus	77.2305544374
+UniRef50_Q9K621: Sensory transduction protein BceR	182.1678114591
+UniRef50_Q9K621: Sensory transduction protein BceR|g__Staphylococcus.s__Staphylococcus_aureus	92.8219213101
+UniRef50_Q9K621: Sensory transduction protein BceR|g__Staphylococcus.s__Staphylococcus_epidermidis	89.3458901490
+UniRef50_P39755: Probable NADH-quinone oxidoreductase subunit 5	182.0223558492
+UniRef50_P39755: Probable NADH-quinone oxidoreductase subunit 5|g__Staphylococcus.s__Staphylococcus_aureus	101.3299121543
+UniRef50_P39755: Probable NADH-quinone oxidoreductase subunit 5|g__Staphylococcus.s__Staphylococcus_epidermidis	80.3368301059
+UniRef50_P39755: Probable NADH-quinone oxidoreductase subunit 5|unclassified	0.3556135891
+UniRef50_Q4L3J2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	181.9063454189
+UniRef50_Q4L3J2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	100.0637143592
+UniRef50_Q4L3J2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	81.8426310597
+UniRef50_Q2FH56: Putative oligopeptide transport system permease protein oppC2	181.8732553498
+UniRef50_Q2FH56: Putative oligopeptide transport system permease protein oppC2|g__Staphylococcus.s__Staphylococcus_epidermidis	101.9540693913
+UniRef50_Q2FH56: Putative oligopeptide transport system permease protein oppC2|g__Staphylococcus.s__Staphylococcus_aureus	79.9191859585
+UniRef50_Q8NXM4: DegV domain-containing protein MW0711	181.8431193345
+UniRef50_Q8NXM4: DegV domain-containing protein MW0711|g__Staphylococcus.s__Staphylococcus_aureus	103.5368348970
+UniRef50_Q8NXM4: DegV domain-containing protein MW0711|g__Staphylococcus.s__Staphylococcus_epidermidis	78.3062844375
+UniRef50_O32168: Methionine import system permease protein MetP	181.7623716118
+UniRef50_O32168: Methionine import system permease protein MetP|g__Staphylococcus.s__Staphylococcus_epidermidis	94.9784867483
+UniRef50_O32168: Methionine import system permease protein MetP|g__Staphylococcus.s__Staphylococcus_aureus	86.7838848635
+UniRef50_Q8CQA9: Integral membrane protein LmrP	181.7317480371
+UniRef50_Q8CQA9: Integral membrane protein LmrP|g__Staphylococcus.s__Staphylococcus_aureus	103.8040466658
+UniRef50_Q8CQA9: Integral membrane protein LmrP|g__Staphylococcus.s__Staphylococcus_epidermidis	77.9277013713
+UniRef50_U5SUC1: Protein co-occurring with transport systems	181.7225825209
+UniRef50_U5SUC1: Protein co-occurring with transport systems|g__Staphylococcus.s__Staphylococcus_epidermidis	93.5681118124
+UniRef50_U5SUC1: Protein co-occurring with transport systems|g__Staphylococcus.s__Staphylococcus_aureus	88.1544707085
+UniRef50_Q3HKE0	181.5771055568
+UniRef50_Q3HKE0|g__Rhodobacter.s__Rhodobacter_sphaeroides	164.5557723481
+UniRef50_Q3HKE0|unclassified	17.0213332087
+UniRef50_D3QEQ2	181.5601654416
+UniRef50_D3QEQ2|g__Staphylococcus.s__Staphylococcus_epidermidis	115.2671412230
+UniRef50_D3QEQ2|g__Staphylococcus.s__Staphylococcus_aureus	66.2930242186
+UniRef50_I0C723: Sodium/glutamate symport carrier protein	181.4271126748
+UniRef50_I0C723: Sodium/glutamate symport carrier protein|g__Staphylococcus.s__Staphylococcus_aureus	106.6951407178
+UniRef50_I0C723: Sodium/glutamate symport carrier protein|g__Staphylococcus.s__Staphylococcus_epidermidis	74.7319719571
+UniRef50_A5IVV5: Sortase family protein	181.3938684604
+UniRef50_A5IVV5: Sortase family protein|g__Staphylococcus.s__Staphylococcus_aureus	106.9436170724
+UniRef50_A5IVV5: Sortase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	74.4502513881
+UniRef50_Q8CNB4: Suppressor protein suhB	181.3433615842
+UniRef50_Q8CNB4: Suppressor protein suhB|g__Staphylococcus.s__Staphylococcus_aureus	109.7979978061
+UniRef50_Q8CNB4: Suppressor protein suhB|g__Staphylococcus.s__Staphylococcus_epidermidis	71.5453637781
+UniRef50_B5XSS1: 50S ribosomal protein L13	181.3421046487
+UniRef50_B5XSS1: 50S ribosomal protein L13|g__Streptococcus.s__Streptococcus_mutans	153.4130627653
+UniRef50_B5XSS1: 50S ribosomal protein L13|g__Escherichia.s__Escherichia_coli	27.9290418834
+UniRef50_G7ZSB9: Nucleoside permease	181.2765296540
+UniRef50_G7ZSB9: Nucleoside permease|g__Staphylococcus.s__Staphylococcus_epidermidis	96.4007663961
+UniRef50_G7ZSB9: Nucleoside permease|g__Staphylococcus.s__Staphylococcus_aureus	84.8757632579
+UniRef50_C5MZG2: Molybdopterin-guanine dinucleotide biosynthesis protein B	181.2712721164
+UniRef50_C5MZG2: Molybdopterin-guanine dinucleotide biosynthesis protein B|g__Staphylococcus.s__Staphylococcus_epidermidis	99.7646393869
+UniRef50_C5MZG2: Molybdopterin-guanine dinucleotide biosynthesis protein B|g__Staphylococcus.s__Staphylococcus_aureus	81.5066327296
+UniRef50_Q5HKF6: Extracellular cysteine protease	181.1234287694
+UniRef50_Q5HKF6: Extracellular cysteine protease|g__Staphylococcus.s__Staphylococcus_aureus	91.6685985117
+UniRef50_Q5HKF6: Extracellular cysteine protease|g__Staphylococcus.s__Staphylococcus_epidermidis	89.4548302578
+UniRef50_Q2FZ98: UPF0747 protein SAOUHSC_01139/SAOUHSC_01140/SAOUHSC_01141	181.1020335942
+UniRef50_Q2FZ98: UPF0747 protein SAOUHSC_01139/SAOUHSC_01140/SAOUHSC_01141|g__Staphylococcus.s__Staphylococcus_aureus	91.5799104292
+UniRef50_Q2FZ98: UPF0747 protein SAOUHSC_01139/SAOUHSC_01140/SAOUHSC_01141|g__Staphylococcus.s__Staphylococcus_epidermidis	89.5221231650
+UniRef50_Q5HFZ7: Dihydrofolate reductase	181.0673794767
+UniRef50_Q5HFZ7: Dihydrofolate reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	105.4440121362
+UniRef50_Q5HFZ7: Dihydrofolate reductase|g__Staphylococcus.s__Staphylococcus_aureus	73.8923466406
+UniRef50_Q5HFZ7: Dihydrofolate reductase|unclassified	1.7310206999
+UniRef50_Q2FHD8: Aerobic glycerol-3-phosphate dehydrogenase	180.8530084776
+UniRef50_Q2FHD8: Aerobic glycerol-3-phosphate dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	94.4181432159
+UniRef50_Q2FHD8: Aerobic glycerol-3-phosphate dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	86.1623529104
+UniRef50_Q2FHD8: Aerobic glycerol-3-phosphate dehydrogenase|unclassified	0.2725123512
+UniRef50_E8SFA5: Glycerophosphoryl diester phosphodiesterase	180.6880360127
+UniRef50_E8SFA5: Glycerophosphoryl diester phosphodiesterase|g__Staphylococcus.s__Staphylococcus_epidermidis	94.2912587277
+UniRef50_E8SFA5: Glycerophosphoryl diester phosphodiesterase|g__Staphylococcus.s__Staphylococcus_aureus	86.3967772850
+UniRef50_D3QEN2	180.6838520513
+UniRef50_D3QEN2|g__Staphylococcus.s__Staphylococcus_epidermidis	93.2433186532
+UniRef50_D3QEN2|g__Staphylococcus.s__Staphylococcus_aureus	87.4405333981
+UniRef50_Q4L769: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	180.6727061902
+UniRef50_Q4L769: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	101.3597698254
+UniRef50_Q4L769: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	79.3129363647
+UniRef50_Q5HMD7: Cell division protein, FtsW/RodA/SpoVE family	180.4863803425
+UniRef50_Q5HMD7: Cell division protein, FtsW/RodA/SpoVE family|g__Staphylococcus.s__Staphylococcus_epidermidis	97.7464664794
+UniRef50_Q5HMD7: Cell division protein, FtsW/RodA/SpoVE family|g__Staphylococcus.s__Staphylococcus_aureus	82.7399138631
+UniRef50_C7ZYL4: Phage major tail protein	180.3269118044
+UniRef50_C7ZYL4: Phage major tail protein|g__Staphylococcus.s__Staphylococcus_aureus	180.3269118044
+UniRef50_P46907: Nitrite extrusion protein	180.3135983746
+UniRef50_P46907: Nitrite extrusion protein|g__Staphylococcus.s__Staphylococcus_epidermidis	96.5877422687
+UniRef50_P46907: Nitrite extrusion protein|g__Staphylococcus.s__Staphylococcus_aureus	83.7258561058
+UniRef50_D2N4B3: Ribosomal-protein-serine N-acetyltransferase	180.0642046331
+UniRef50_D2N4B3: Ribosomal-protein-serine N-acetyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	180.0642046331
+UniRef50_A9IYN9: Elongation factor P	179.9931665575
+UniRef50_A9IYN9: Elongation factor P|g__Rhodobacter.s__Rhodobacter_sphaeroides	179.9931665575
+UniRef50_R4Q226: APC family amino acid-polyamine-organocation transporter	179.8594831109
+UniRef50_R4Q226: APC family amino acid-polyamine-organocation transporter|g__Staphylococcus.s__Staphylococcus_aureus	116.1219979043
+UniRef50_R4Q226: APC family amino acid-polyamine-organocation transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	63.7374852065
+UniRef50_C3P5A0: Demethylmenaquinone methyltransferase	179.8450559230
+UniRef50_C3P5A0: Demethylmenaquinone methyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	95.3070710463
+UniRef50_C3P5A0: Demethylmenaquinone methyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	84.3951930847
+UniRef50_C3P5A0: Demethylmenaquinone methyltransferase|unclassified	0.1427917920
+UniRef50_B9KX90: ABC polysaccharide export transporter, inner membrane subunit	179.8264994528
+UniRef50_B9KX90: ABC polysaccharide export transporter, inner membrane subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	179.8264994528
+UniRef50_P54462: Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB	179.7688904158
+UniRef50_P54462: Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB|g__Staphylococcus.s__Staphylococcus_aureus	101.7281811753
+UniRef50_P54462: Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB|g__Staphylococcus.s__Staphylococcus_epidermidis	77.1599496410
+UniRef50_P54462: Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB|unclassified	0.8807595995
+UniRef50_B3H2W6: RNA pyrophosphohydrolase	179.7498362962
+UniRef50_B3H2W6: RNA pyrophosphohydrolase|g__Escherichia.s__Escherichia_coli	179.7498362962
+UniRef50_Q6GCB8: Probable acetyl-CoA acyltransferase	179.6819999025
+UniRef50_Q6GCB8: Probable acetyl-CoA acyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	178.6970605827
+UniRef50_Q6GCB8: Probable acetyl-CoA acyltransferase|g__Helicobacter.s__Helicobacter_pylori	0.8810572687
+UniRef50_Q6GCB8: Probable acetyl-CoA acyltransferase|unclassified	0.1038820511
+UniRef50_D3QF58	179.6604481189
+UniRef50_D3QF58|g__Staphylococcus.s__Staphylococcus_aureus	102.1689777026
+UniRef50_D3QF58|g__Staphylococcus.s__Staphylococcus_epidermidis	77.4914704163
+UniRef50_Q67SK0: ATP-dependent Clp protease proteolytic subunit 1	179.4669967102
+UniRef50_Q67SK0: ATP-dependent Clp protease proteolytic subunit 1|g__Staphylococcus.s__Staphylococcus_aureus	115.1995927893
+UniRef50_Q67SK0: ATP-dependent Clp protease proteolytic subunit 1|g__Staphylococcus.s__Staphylococcus_epidermidis	64.2057765064
+UniRef50_Q67SK0: ATP-dependent Clp protease proteolytic subunit 1|unclassified	0.0616274146
+UniRef50_Q5HL78: Esterase, putative	179.4243934050
+UniRef50_Q5HL78: Esterase, putative|g__Staphylococcus.s__Staphylococcus_aureus	97.2375694944
+UniRef50_Q5HL78: Esterase, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	82.1868239106
+UniRef50_Q49Y17	179.2741851152
+UniRef50_Q49Y17|g__Staphylococcus.s__Staphylococcus_aureus	92.0569202536
+UniRef50_Q49Y17|g__Staphylococcus.s__Staphylococcus_epidermidis	87.2172648616
+UniRef50_Q6GJA0: Glucosamine-6-phosphate deaminase	179.2440363381
+UniRef50_Q6GJA0: Glucosamine-6-phosphate deaminase|g__Staphylococcus.s__Staphylococcus_aureus	110.4733589363
+UniRef50_Q6GJA0: Glucosamine-6-phosphate deaminase|g__Staphylococcus.s__Staphylococcus_epidermidis	68.7706774018
+UniRef50_Q5HKI1: Probable succinyl-diaminopimelate desuccinylase	179.2169198552
+UniRef50_Q5HKI1: Probable succinyl-diaminopimelate desuccinylase|g__Staphylococcus.s__Staphylococcus_epidermidis	97.5883468807
+UniRef50_Q5HKI1: Probable succinyl-diaminopimelate desuccinylase|g__Staphylococcus.s__Staphylococcus_aureus	81.6285729745
+UniRef50_Q49UZ0: Orn Lys Arg decarboxylase family protein	179.1639635288
+UniRef50_Q49UZ0: Orn Lys Arg decarboxylase family protein|g__Staphylococcus.s__Staphylococcus_aureus	97.1950167433
+UniRef50_Q49UZ0: Orn Lys Arg decarboxylase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	81.9689467855
+UniRef50_D8HFV1	178.9401867103
+UniRef50_D8HFV1|g__Staphylococcus.s__Staphylococcus_epidermidis	96.1276426756
+UniRef50_D8HFV1|g__Staphylococcus.s__Staphylococcus_aureus	82.8125440347
+UniRef50_A4WWG5: Extracellular solute-binding protein, family 5	178.9237441045
+UniRef50_A4WWG5: Extracellular solute-binding protein, family 5|g__Rhodobacter.s__Rhodobacter_sphaeroides	178.9237441045
+UniRef50_Q5HFW6: CCA-adding enzyme	178.8700073691
+UniRef50_Q5HFW6: CCA-adding enzyme|g__Staphylococcus.s__Staphylococcus_aureus	104.0480815375
+UniRef50_Q5HFW6: CCA-adding enzyme|g__Staphylococcus.s__Staphylococcus_epidermidis	74.5843266159
+UniRef50_Q5HFW6: CCA-adding enzyme|unclassified	0.2375992156
+UniRef50_Q8CRU6	178.8602901946
+UniRef50_Q8CRU6|g__Staphylococcus.s__Staphylococcus_aureus	95.8009390842
+UniRef50_Q8CRU6|g__Staphylococcus.s__Staphylococcus_epidermidis	83.0593511104
+UniRef50_Q99W51: tRNA-specific adenosine deaminase	178.8340980080
+UniRef50_Q99W51: tRNA-specific adenosine deaminase|g__Staphylococcus.s__Staphylococcus_aureus	178.5779142668
+UniRef50_Q99W51: tRNA-specific adenosine deaminase|unclassified	0.2561837412
+UniRef50_E8SK39: DNA polymerase III polC-type	178.8339059880
+UniRef50_E8SK39: DNA polymerase III polC-type|g__Staphylococcus.s__Staphylococcus_aureus	104.4871671993
+UniRef50_E8SK39: DNA polymerase III polC-type|g__Staphylococcus.s__Staphylococcus_epidermidis	74.3467387887
+UniRef50_D6SCB4: ABC transporter, ATP-binding protein	178.7650236472
+UniRef50_D6SCB4: ABC transporter, ATP-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	93.3556419329
+UniRef50_D6SCB4: ABC transporter, ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	85.4093817143
+UniRef50_T2KQZ5: Lipoyltransferase and lipoate-protein ligase	178.7494345201
+UniRef50_T2KQZ5: Lipoyltransferase and lipoate-protein ligase|g__Staphylococcus.s__Staphylococcus_aureus	91.0317081376
+UniRef50_T2KQZ5: Lipoyltransferase and lipoate-protein ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	87.7177263825
+UniRef50_D3QJ79: Multimodular transpeptidase-transglycosylase	178.6579927064
+UniRef50_D3QJ79: Multimodular transpeptidase-transglycosylase|g__Staphylococcus.s__Staphylococcus_aureus	89.4515063736
+UniRef50_D3QJ79: Multimodular transpeptidase-transglycosylase|g__Staphylococcus.s__Staphylococcus_epidermidis	89.2064863329
+UniRef50_A6U1W4: Segregation and condensation protein A	178.6534331706
+UniRef50_A6U1W4: Segregation and condensation protein A|g__Staphylococcus.s__Staphylococcus_aureus	124.4061968039
+UniRef50_A6U1W4: Segregation and condensation protein A|g__Staphylococcus.s__Staphylococcus_epidermidis	54.2472363668
+UniRef50_Q3IW34	178.4938634650
+UniRef50_Q3IW34|g__Rhodobacter.s__Rhodobacter_sphaeroides	169.5475512063
+UniRef50_Q3IW34|unclassified	8.9463122588
+UniRef50_Q4L3G1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	178.4438411872
+UniRef50_Q4L3G1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	107.4734023407
+UniRef50_Q4L3G1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	70.9704388466
+UniRef50_I0C596	178.4368257202
+UniRef50_I0C596|g__Staphylococcus.s__Staphylococcus_aureus	91.7390277482
+UniRef50_I0C596|g__Staphylococcus.s__Staphylococcus_epidermidis	86.6977979720
+UniRef50_Q8CNV0: Spore cortex protein-like protein	178.4065156694
+UniRef50_Q8CNV0: Spore cortex protein-like protein|g__Staphylococcus.s__Staphylococcus_aureus	96.9133296574
+UniRef50_Q8CNV0: Spore cortex protein-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	81.4931860120
+UniRef50_Q5HIB4: Serine-aspartate repeat-containing protein C	178.3897605735
+UniRef50_Q5HIB4: Serine-aspartate repeat-containing protein C|g__Staphylococcus.s__Staphylococcus_aureus	110.9312583190
+UniRef50_Q5HIB4: Serine-aspartate repeat-containing protein C|g__Staphylococcus.s__Staphylococcus_epidermidis	67.4585022545
+UniRef50_A4WVM4	178.3427824942
+UniRef50_A4WVM4|g__Rhodobacter.s__Rhodobacter_sphaeroides	177.8029968920
+UniRef50_A4WVM4|unclassified	0.5397856022
+UniRef50_D6SCB6: Transporter, major facilitator family protein	178.2925027102
+UniRef50_D6SCB6: Transporter, major facilitator family protein|g__Staphylococcus.s__Staphylococcus_aureus	103.3773529522
+UniRef50_D6SCB6: Transporter, major facilitator family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	74.9151497581
+UniRef50_C5N2S8	178.0885173829
+UniRef50_C5N2S8|g__Staphylococcus.s__Staphylococcus_aureus	177.4941108248
+UniRef50_C5N2S8|unclassified	0.5944065581
+UniRef50_Q5HLU4: Putative 2-hydroxyacid dehydrogenase SERP1888	178.0518319198
+UniRef50_Q5HLU4: Putative 2-hydroxyacid dehydrogenase SERP1888|g__Staphylococcus.s__Staphylococcus_epidermidis	94.4938888021
+UniRef50_Q5HLU4: Putative 2-hydroxyacid dehydrogenase SERP1888|g__Staphylococcus.s__Staphylococcus_aureus	83.5579431178
+UniRef50_Y5VS88	178.0163175639
+UniRef50_Y5VS88|g__Staphylococcus.s__Staphylococcus_epidermidis	90.3307118371
+UniRef50_Y5VS88|g__Staphylococcus.s__Staphylococcus_aureus	87.6856057268
+UniRef50_F0P751	177.8533867256
+UniRef50_F0P751|g__Staphylococcus.s__Staphylococcus_aureus	101.4005630287
+UniRef50_F0P751|g__Staphylococcus.s__Staphylococcus_epidermidis	76.4528236969
+UniRef50_Q8CPK2: Cell-divisio initiation protein	177.7723147165
+UniRef50_Q8CPK2: Cell-divisio initiation protein|g__Staphylococcus.s__Staphylococcus_aureus	108.3618617359
+UniRef50_Q8CPK2: Cell-divisio initiation protein|g__Staphylococcus.s__Staphylococcus_epidermidis	69.4104529806
+UniRef50_D3QCA4: Dihydrofolate synthase/Folylpolyglutamate synthase	177.6634015251
+UniRef50_D3QCA4: Dihydrofolate synthase/Folylpolyglutamate synthase|g__Staphylococcus.s__Staphylococcus_aureus	91.3029296717
+UniRef50_D3QCA4: Dihydrofolate synthase/Folylpolyglutamate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	86.3604718534
+UniRef50_A3PMB5: Large-conductance mechanosensitive channel	177.5645479671
+UniRef50_A3PMB5: Large-conductance mechanosensitive channel|g__Rhodobacter.s__Rhodobacter_sphaeroides	177.5645479671
+UniRef50_G8V3B6: Heme ABC exporter, ATP-binding protein CcmA	177.5268229740
+UniRef50_G8V3B6: Heme ABC exporter, ATP-binding protein CcmA|g__Staphylococcus.s__Staphylococcus_aureus	105.5911278630
+UniRef50_G8V3B6: Heme ABC exporter, ATP-binding protein CcmA|g__Staphylococcus.s__Staphylococcus_epidermidis	71.9356951111
+UniRef50_Q8CTQ7: Putative pyridoxine kinase	177.4604947971
+UniRef50_Q8CTQ7: Putative pyridoxine kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	93.5177328286
+UniRef50_Q8CTQ7: Putative pyridoxine kinase|g__Staphylococcus.s__Staphylococcus_aureus	83.9427619686
+UniRef50_T1YB06: Ribosomal RNA small subunit methyltransferase E	177.2360992270
+UniRef50_T1YB06: Ribosomal RNA small subunit methyltransferase E|g__Staphylococcus.s__Staphylococcus_epidermidis	106.7998511541
+UniRef50_T1YB06: Ribosomal RNA small subunit methyltransferase E|g__Staphylococcus.s__Staphylococcus_aureus	70.4362480729
+UniRef50_R9YLA1: Ktr system potassium uptake protein A	177.1302182544
+UniRef50_R9YLA1: Ktr system potassium uptake protein A|g__Staphylococcus.s__Staphylococcus_aureus	100.2231884612
+UniRef50_R9YLA1: Ktr system potassium uptake protein A|g__Staphylococcus.s__Staphylococcus_epidermidis	76.9070297931
+UniRef50_A1B2U2: ABC polyamine/opine transporter, periplasmic substrate-binding protein	176.9321645725
+UniRef50_A1B2U2: ABC polyamine/opine transporter, periplasmic substrate-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	176.9321645725
+UniRef50_Q67LZ8: Oligopeptide ABC transporter permease protein	176.8019093766
+UniRef50_Q67LZ8: Oligopeptide ABC transporter permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	176.8019093766
+UniRef50_A6QGC0: Serine/threonine-protein kinase PrkC	176.6130895671
+UniRef50_A6QGC0: Serine/threonine-protein kinase PrkC|g__Staphylococcus.s__Staphylococcus_aureus	91.3534501682
+UniRef50_A6QGC0: Serine/threonine-protein kinase PrkC|g__Staphylococcus.s__Staphylococcus_epidermidis	85.2400154698
+UniRef50_A6QGC0: Serine/threonine-protein kinase PrkC|unclassified	0.0196239290
+UniRef50_M7DU42: Transcriptional regulator	176.6105374737
+UniRef50_M7DU42: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	176.6105374737
+UniRef50_Q6GCL3: Iron-sulfur cluster repair protein ScdA	176.5783098596
+UniRef50_Q6GCL3: Iron-sulfur cluster repair protein ScdA|g__Staphylococcus.s__Staphylococcus_aureus	103.5899289604
+UniRef50_Q6GCL3: Iron-sulfur cluster repair protein ScdA|g__Staphylococcus.s__Staphylococcus_epidermidis	72.9883808992
+UniRef50_F0P462	176.5545142574
+UniRef50_F0P462|g__Staphylococcus.s__Staphylococcus_epidermidis	94.6726308908
+UniRef50_F0P462|g__Staphylococcus.s__Staphylococcus_aureus	81.8818833666
+UniRef50_Q5HRJ0: Deoxynucleoside kinase family protein	176.1922968557
+UniRef50_Q5HRJ0: Deoxynucleoside kinase family protein|g__Staphylococcus.s__Staphylococcus_aureus	98.5095930561
+UniRef50_Q5HRJ0: Deoxynucleoside kinase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	77.6827037995
+UniRef50_D3QDZ4: Na+/H+ antiporter-like protein	176.1879054087
+UniRef50_D3QDZ4: Na+/H+ antiporter-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	90.0917457685
+UniRef50_D3QDZ4: Na+/H+ antiporter-like protein|g__Staphylococcus.s__Staphylococcus_aureus	86.0961596403
+UniRef50_Q8CPK8: Penicillin-binding protein 1	176.1495087260
+UniRef50_Q8CPK8: Penicillin-binding protein 1|g__Staphylococcus.s__Staphylococcus_aureus	92.9380288337
+UniRef50_Q8CPK8: Penicillin-binding protein 1|g__Staphylococcus.s__Staphylococcus_epidermidis	83.2114798924
+UniRef50_Q4JT56: 30S ribosomal protein S17	176.1006289308
+UniRef50_Q4JT56: 30S ribosomal protein S17|g__Streptococcus.s__Streptococcus_mutans	176.1006289308
+UniRef50_A6QFE8	176.0718599034
+UniRef50_A6QFE8|g__Staphylococcus.s__Staphylococcus_epidermidis	166.6666666667
+UniRef50_A6QFE8|g__Staphylococcus.s__Staphylococcus_aureus	9.4051932367
+UniRef50_V7ZGG5: OmpW family outer membrane protein	176.0653089041
+UniRef50_V7ZGG5: OmpW family outer membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	176.0653089041
+UniRef50_Q8CSE1: ABC transporter ATP-binding protein	175.9707216288
+UniRef50_Q8CSE1: ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	94.1145802031
+UniRef50_Q8CSE1: ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	81.8561414257
+UniRef50_Q2FWE1: Release factor glutamine methyltransferase	175.9609152132
+UniRef50_Q2FWE1: Release factor glutamine methyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	89.4918790517
+UniRef50_Q2FWE1: Release factor glutamine methyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	86.4690361615
+UniRef50_Q3J6L0: Dimethlysulfonioproprionate lyase DddL	175.9257609842
+UniRef50_Q3J6L0: Dimethlysulfonioproprionate lyase DddL|g__Rhodobacter.s__Rhodobacter_sphaeroides	168.3368220994
+UniRef50_Q3J6L0: Dimethlysulfonioproprionate lyase DddL|unclassified	7.5889388849
+UniRef50_L7WXU0	175.9113032883
+UniRef50_L7WXU0|g__Staphylococcus.s__Staphylococcus_epidermidis	98.8780552228
+UniRef50_L7WXU0|g__Staphylococcus.s__Staphylococcus_aureus	77.0332480654
+UniRef50_T1Y9B2: Phosphotransferase enzyme family protein	175.5681142997
+UniRef50_T1Y9B2: Phosphotransferase enzyme family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	97.8983317186
+UniRef50_T1Y9B2: Phosphotransferase enzyme family protein|g__Staphylococcus.s__Staphylococcus_aureus	77.6697825811
+UniRef50_A5VR36: Lactoylglutathione lyase	175.4103417979
+UniRef50_A5VR36: Lactoylglutathione lyase|g__Rhodobacter.s__Rhodobacter_sphaeroides	175.4103417979
+UniRef50_Q4L635: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	175.3811107335
+UniRef50_Q4L635: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	109.4254024935
+UniRef50_Q4L635: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	65.9557082400
+UniRef50_T1Y8E9: 2-oxoacid ferredoxin oxidoreductase, alpha subunit	175.3725181923
+UniRef50_T1Y8E9: 2-oxoacid ferredoxin oxidoreductase, alpha subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	100.7540788663
+UniRef50_T1Y8E9: 2-oxoacid ferredoxin oxidoreductase, alpha subunit|g__Staphylococcus.s__Staphylococcus_aureus	74.6184393260
+UniRef50_I0C6Z8: Transcriptional regulator, RpiR family	175.3650568877
+UniRef50_I0C6Z8: Transcriptional regulator, RpiR family|g__Staphylococcus.s__Staphylococcus_aureus	91.5409062900
+UniRef50_I0C6Z8: Transcriptional regulator, RpiR family|g__Staphylococcus.s__Staphylococcus_epidermidis	83.8241505977
+UniRef50_B9KN38: UvrB protein	175.2699861625
+UniRef50_B9KN38: UvrB protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	142.1141236931
+UniRef50_B9KN38: UvrB protein|unclassified	33.1558624694
+UniRef50_B9DQ98: Processive diacylglycerol beta-glucosyltransferase	175.2513325235
+UniRef50_B9DQ98: Processive diacylglycerol beta-glucosyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	93.0955016400
+UniRef50_B9DQ98: Processive diacylglycerol beta-glucosyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	82.1558308835
+UniRef50_P65742: Phosphate acyltransferase	175.2229574331
+UniRef50_P65742: Phosphate acyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	126.3724600619
+UniRef50_P65742: Phosphate acyltransferase|g__Streptococcus.s__Streptococcus_mutans	44.7202387592
+UniRef50_P65742: Phosphate acyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	3.9199576792
+UniRef50_P65742: Phosphate acyltransferase|unclassified	0.2103009328
+UniRef50_Q5HLQ8	175.2112185855
+UniRef50_Q5HLQ8|g__Staphylococcus.s__Staphylococcus_aureus	118.3582060588
+UniRef50_Q5HLQ8|g__Staphylococcus.s__Staphylococcus_epidermidis	56.8530125267
+UniRef50_Q4L5A2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	175.0858911539
+UniRef50_Q4L5A2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	175.0858911539
+UniRef50_Q2FIE3: D-alanine--poly(phosphoribitol) ligase subunit 1	175.0597713280
+UniRef50_Q2FIE3: D-alanine--poly(phosphoribitol) ligase subunit 1|g__Staphylococcus.s__Staphylococcus_epidermidis	93.8696868243
+UniRef50_Q2FIE3: D-alanine--poly(phosphoribitol) ligase subunit 1|g__Staphylococcus.s__Staphylococcus_aureus	81.1900845037
+UniRef50_A5IU85: Parallel beta-helix repeat	175.0381947820
+UniRef50_A5IU85: Parallel beta-helix repeat|g__Staphylococcus.s__Staphylococcus_aureus	99.1727587990
+UniRef50_A5IU85: Parallel beta-helix repeat|g__Staphylococcus.s__Staphylococcus_epidermidis	75.8654359830
+UniRef50_Q4L6H4: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	175.0329082675
+UniRef50_Q4L6H4: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	108.5469269777
+UniRef50_Q4L6H4: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	66.4859812899
+UniRef50_A8YZY5: Anthranilate synthase	175.0105657096
+UniRef50_A8YZY5: Anthranilate synthase|g__Staphylococcus.s__Staphylococcus_aureus	101.0291802250
+UniRef50_A8YZY5: Anthranilate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	73.9813854846
+UniRef50_G2JZ42: Carnitine transport binding protein OpuCC	174.9444873300
+UniRef50_G2JZ42: Carnitine transport binding protein OpuCC|g__Staphylococcus.s__Staphylococcus_aureus	123.3478821969
+UniRef50_G2JZ42: Carnitine transport binding protein OpuCC|g__Streptococcus.s__Streptococcus_mutans	51.5966051331
+UniRef50_F5LZL6: CBS domain-containing protein	174.8879211575
+UniRef50_F5LZL6: CBS domain-containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	174.8879211575
+UniRef50_P37813: ATP synthase subunit a	174.8861347212
+UniRef50_P37813: ATP synthase subunit a|g__Staphylococcus.s__Staphylococcus_aureus	98.3009816474
+UniRef50_P37813: ATP synthase subunit a|g__Staphylococcus.s__Staphylococcus_epidermidis	76.5851530738
+UniRef50_A3PNI0	174.8799461891
+UniRef50_A3PNI0|g__Rhodobacter.s__Rhodobacter_sphaeroides	160.0696689608
+UniRef50_A3PNI0|unclassified	14.8102772284
+UniRef50_F0P650: Ribonuclease BN-like family protein	174.8211769455
+UniRef50_F0P650: Ribonuclease BN-like family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	91.3398183885
+UniRef50_F0P650: Ribonuclease BN-like family protein|g__Staphylococcus.s__Staphylococcus_aureus	83.4813585569
+UniRef50_P96589	174.7809415293
+UniRef50_P96589|g__Staphylococcus.s__Staphylococcus_aureus	101.6400945845
+UniRef50_P96589|g__Staphylococcus.s__Staphylococcus_epidermidis	73.1408469448
+UniRef50_Q49Z78	174.7645524312
+UniRef50_Q49Z78|g__Staphylococcus.s__Staphylococcus_aureus	99.4590873509
+UniRef50_Q49Z78|g__Staphylococcus.s__Staphylococcus_epidermidis	75.3054650803
+UniRef50_E8SEC6: Acid phosphatase	174.7287148170
+UniRef50_E8SEC6: Acid phosphatase|g__Staphylococcus.s__Staphylococcus_aureus	126.8871293311
+UniRef50_E8SEC6: Acid phosphatase|g__Staphylococcus.s__Staphylococcus_epidermidis	47.8415854859
+UniRef50_Q4L6F4: Penicillin-binding protein 2	174.6559872215
+UniRef50_Q4L6F4: Penicillin-binding protein 2|g__Staphylococcus.s__Staphylococcus_aureus	95.8037557590
+UniRef50_Q4L6F4: Penicillin-binding protein 2|g__Staphylococcus.s__Staphylococcus_epidermidis	78.8522314624
+UniRef50_L7WYV1: Lipase/esterase	173.9129268160
+UniRef50_L7WYV1: Lipase/esterase|g__Staphylococcus.s__Staphylococcus_epidermidis	88.8982471744
+UniRef50_L7WYV1: Lipase/esterase|g__Staphylococcus.s__Staphylococcus_aureus	85.0146796416
+UniRef50_D3QDU9: Flavohemoprotein	173.8971454659
+UniRef50_D3QDU9: Flavohemoprotein|g__Staphylococcus.s__Staphylococcus_epidermidis	93.3316327576
+UniRef50_D3QDU9: Flavohemoprotein|g__Staphylococcus.s__Staphylococcus_aureus	80.5655127082
+UniRef50_Q49YA3: HemA concentration negative effector	173.7401485569
+UniRef50_Q49YA3: HemA concentration negative effector|g__Staphylococcus.s__Staphylococcus_aureus	97.4314983537
+UniRef50_Q49YA3: HemA concentration negative effector|g__Staphylococcus.s__Staphylococcus_epidermidis	76.3086502032
+UniRef50_Q5HQY2: Glycosyl transferase, group 4 family protein	173.6621301721
+UniRef50_Q5HQY2: Glycosyl transferase, group 4 family protein|g__Staphylococcus.s__Staphylococcus_aureus	93.2622096631
+UniRef50_Q5HQY2: Glycosyl transferase, group 4 family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	80.3999205090
+UniRef50_I0C4G8: Glycosyltransferase	173.6516096850
+UniRef50_I0C4G8: Glycosyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	99.6636836926
+UniRef50_I0C4G8: Glycosyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	73.9879259924
+UniRef50_A4IRH3: Trigger factor	173.5988016717
+UniRef50_A4IRH3: Trigger factor|g__Staphylococcus.s__Staphylococcus_aureus	99.8347819686
+UniRef50_A4IRH3: Trigger factor|g__Staphylococcus.s__Staphylococcus_epidermidis	73.7640197031
+UniRef50_Q5KVS7: Glucose-6-phosphate isomerase	173.4919242698
+UniRef50_Q5KVS7: Glucose-6-phosphate isomerase|g__Staphylococcus.s__Staphylococcus_epidermidis	87.3872798940
+UniRef50_Q5KVS7: Glucose-6-phosphate isomerase|g__Staphylococcus.s__Staphylococcus_aureus	86.1046443759
+UniRef50_B9KX94: ATPase, ParA type	173.4692192797
+UniRef50_B9KX94: ATPase, ParA type|g__Rhodobacter.s__Rhodobacter_sphaeroides	173.1974180448
+UniRef50_B9KX94: ATPase, ParA type|unclassified	0.2718012349
+UniRef50_H4ER30: Phage minor structural, N-terminal region domain protein	173.4074957303
+UniRef50_H4ER30: Phage minor structural, N-terminal region domain protein|g__Staphylococcus.s__Staphylococcus_aureus	173.4074957303
+UniRef50_R6JIT7	173.3432889834
+UniRef50_R6JIT7|g__Staphylococcus.s__Staphylococcus_epidermidis	92.9772904157
+UniRef50_R6JIT7|g__Staphylococcus.s__Staphylococcus_aureus	80.3659985677
+UniRef50_L7WXF9	173.2668993579
+UniRef50_L7WXF9|g__Staphylococcus.s__Staphylococcus_epidermidis	105.0539825141
+UniRef50_L7WXF9|g__Staphylococcus.s__Staphylococcus_aureus	68.2129168438
+UniRef50_A7X169: Endonuclease MutS2	173.1333529489
+UniRef50_A7X169: Endonuclease MutS2|g__Staphylococcus.s__Staphylococcus_epidermidis	91.5352334763
+UniRef50_A7X169: Endonuclease MutS2|g__Staphylococcus.s__Staphylococcus_aureus	81.5782856164
+UniRef50_A7X169: Endonuclease MutS2|unclassified	0.0198338562
+UniRef50_Q5HHQ6: Putative acetyltransferase SACOL0827	173.0982432441
+UniRef50_Q5HHQ6: Putative acetyltransferase SACOL0827|g__Staphylococcus.s__Staphylococcus_epidermidis	89.8549737098
+UniRef50_Q5HHQ6: Putative acetyltransferase SACOL0827|g__Staphylococcus.s__Staphylococcus_aureus	82.5186139960
+UniRef50_Q5HHQ6: Putative acetyltransferase SACOL0827|unclassified	0.7246555383
+UniRef50_I0C5M0: Transcriptional regulator	173.0666553398
+UniRef50_I0C5M0: Transcriptional regulator|g__Staphylococcus.s__Staphylococcus_aureus	149.2063492063
+UniRef50_I0C5M0: Transcriptional regulator|g__Staphylococcus.s__Staphylococcus_epidermidis	23.8603061335
+UniRef50_P23847: Periplasmic dipeptide transport protein	173.0118385421
+UniRef50_P23847: Periplasmic dipeptide transport protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	119.2053486669
+UniRef50_P23847: Periplasmic dipeptide transport protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	24.3347567847
+UniRef50_P23847: Periplasmic dipeptide transport protein|g__Escherichia.s__Escherichia_coli	22.8050664237
+UniRef50_P23847: Periplasmic dipeptide transport protein|g__Staphylococcus.s__Staphylococcus_aureus	6.6666666667
+UniRef50_Q7A528: UPF0354 protein SA1564	172.9900767699
+UniRef50_Q7A528: UPF0354 protein SA1564|g__Staphylococcus.s__Staphylococcus_aureus	88.3116357435
+UniRef50_Q7A528: UPF0354 protein SA1564|g__Staphylococcus.s__Staphylococcus_epidermidis	84.6784410264
+UniRef50_A5IUW4: Transport system permease protein	172.9854909026
+UniRef50_A5IUW4: Transport system permease protein|g__Staphylococcus.s__Staphylococcus_aureus	93.4338973678
+UniRef50_A5IUW4: Transport system permease protein|g__Staphylococcus.s__Staphylococcus_epidermidis	79.5515935348
+UniRef50_Q49X60: Riboflavin kinase FAD synthase	172.9715442432
+UniRef50_Q49X60: Riboflavin kinase FAD synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	102.4309370466
+UniRef50_Q49X60: Riboflavin kinase FAD synthase|g__Staphylococcus.s__Staphylococcus_aureus	70.5406071966
+UniRef50_D3QJ04: DNA repair exonuclease family protein YhaO	172.9356873333
+UniRef50_D3QJ04: DNA repair exonuclease family protein YhaO|g__Staphylococcus.s__Staphylococcus_aureus	98.1694682879
+UniRef50_D3QJ04: DNA repair exonuclease family protein YhaO|g__Staphylococcus.s__Staphylococcus_epidermidis	74.7662190453
+UniRef50_B9EAD9	172.9155021570
+UniRef50_B9EAD9|g__Staphylococcus.s__Staphylococcus_epidermidis	95.7111776860
+UniRef50_B9EAD9|g__Staphylococcus.s__Staphylococcus_aureus	77.1404780628
+UniRef50_B9EAD9|unclassified	0.0638464082
+UniRef50_E8SEY3: Salicylate hydroxylase	172.8569535426
+UniRef50_E8SEY3: Salicylate hydroxylase|g__Staphylococcus.s__Staphylococcus_aureus	105.4711711359
+UniRef50_E8SEY3: Salicylate hydroxylase|g__Staphylococcus.s__Staphylococcus_epidermidis	67.3857824067
+UniRef50_A6QII8: Phage portal protein	172.7387513518
+UniRef50_A6QII8: Phage portal protein|g__Staphylococcus.s__Staphylococcus_aureus	172.7387513518
+UniRef50_P08064: Succinate dehydrogenase cytochrome b558 subunit	172.4233979843
+UniRef50_P08064: Succinate dehydrogenase cytochrome b558 subunit|g__Staphylococcus.s__Staphylococcus_aureus	88.0379600778
+UniRef50_P08064: Succinate dehydrogenase cytochrome b558 subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	84.3854379065
+UniRef50_Q5HKN3: Acetyltransferase, GNAT family	172.4046560403
+UniRef50_Q5HKN3: Acetyltransferase, GNAT family|g__Staphylococcus.s__Staphylococcus_epidermidis	172.4046560403
+UniRef50_F9Y7Q5: Carbonic anhydrase	172.3574706025
+UniRef50_F9Y7Q5: Carbonic anhydrase|g__Rhodobacter.s__Rhodobacter_sphaeroides	172.3574706025
+UniRef50_F8WKF3	172.2950737288
+UniRef50_F8WKF3|g__Staphylococcus.s__Staphylococcus_aureus	96.8634910698
+UniRef50_F8WKF3|g__Staphylococcus.s__Staphylococcus_epidermidis	75.4315826589
+UniRef50_Q5HPE4	172.1865055534
+UniRef50_Q5HPE4|g__Staphylococcus.s__Staphylococcus_epidermidis	91.3457234375
+UniRef50_Q5HPE4|g__Staphylococcus.s__Staphylococcus_aureus	80.8407821158
+UniRef50_I0JI98: DUF21/CBS domain protein	172.1821676145
+UniRef50_I0JI98: DUF21/CBS domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	93.0838523650
+UniRef50_I0JI98: DUF21/CBS domain protein|g__Staphylococcus.s__Staphylococcus_aureus	79.0983152495
+UniRef50_E8SJL6: Manganese ABC transporter, ATP-binding protein SitB	172.1035313655
+UniRef50_E8SJL6: Manganese ABC transporter, ATP-binding protein SitB|g__Staphylococcus.s__Staphylococcus_aureus	93.4014707639
+UniRef50_E8SJL6: Manganese ABC transporter, ATP-binding protein SitB|g__Staphylococcus.s__Staphylococcus_epidermidis	78.7020606016
+UniRef50_I0C2I1	172.1032068626
+UniRef50_I0C2I1|g__Staphylococcus.s__Staphylococcus_aureus	132.7342665172
+UniRef50_I0C2I1|g__Staphylococcus.s__Staphylococcus_epidermidis	39.3689403454
+UniRef50_P63482: Alanine racemase 2	171.6467887935
+UniRef50_P63482: Alanine racemase 2|g__Staphylococcus.s__Staphylococcus_epidermidis	95.3938709990
+UniRef50_P63482: Alanine racemase 2|g__Staphylococcus.s__Staphylococcus_aureus	75.7099394982
+UniRef50_P63482: Alanine racemase 2|unclassified	0.5429782963
+UniRef50_P94544: DNA polymerase/3'-5' exonuclease PolX	171.5476631989
+UniRef50_P94544: DNA polymerase/3'-5' exonuclease PolX|g__Staphylococcus.s__Staphylococcus_epidermidis	103.2500204949
+UniRef50_P94544: DNA polymerase/3'-5' exonuclease PolX|g__Staphylococcus.s__Staphylococcus_aureus	68.2976427040
+UniRef50_A5IT13	171.4883709993
+UniRef50_A5IT13|g__Staphylococcus.s__Staphylococcus_aureus	171.3430310172
+UniRef50_A5IT13|unclassified	0.1453399821
+UniRef50_P39616: Probable aldehyde dehydrogenase YwdH	171.4321175457
+UniRef50_P39616: Probable aldehyde dehydrogenase YwdH|g__Staphylococcus.s__Staphylococcus_aureus	107.7631302598
+UniRef50_P39616: Probable aldehyde dehydrogenase YwdH|g__Staphylococcus.s__Staphylococcus_epidermidis	62.0087427685
+UniRef50_P39616: Probable aldehyde dehydrogenase YwdH|g__Clostridium.s__Clostridium_beijerinckii	1.6602445174
+UniRef50_A1B0F4: Trigger factor	171.4262096543
+UniRef50_A1B0F4: Trigger factor|g__Rhodobacter.s__Rhodobacter_sphaeroides	168.3501864662
+UniRef50_A1B0F4: Trigger factor|unclassified	3.0760231881
+UniRef50_D0K9R4	171.4260324491
+UniRef50_D0K9R4|g__Staphylococcus.s__Staphylococcus_aureus	171.4260324491
+UniRef50_Q3IUU5	171.3694107121
+UniRef50_Q3IUU5|g__Rhodobacter.s__Rhodobacter_sphaeroides	166.3599586055
+UniRef50_Q3IUU5|unclassified	5.0094521067
+UniRef50_A5IR45	171.3273044851
+UniRef50_A5IR45|g__Staphylococcus.s__Staphylococcus_aureus	171.3273044851
+UniRef50_B5BP16: Truncated transposase of IS3 family	171.2514205732
+UniRef50_B5BP16: Truncated transposase of IS3 family|g__Staphylococcus.s__Staphylococcus_aureus	153.0715900619
+UniRef50_B5BP16: Truncated transposase of IS3 family|g__Staphylococcus.s__Staphylococcus_epidermidis	18.1798305113
+UniRef50_Q03727: Transport/processing ATP-binding protein ComA	171.2504313950
+UniRef50_Q03727: Transport/processing ATP-binding protein ComA|g__Streptococcus.s__Streptococcus_mutans	171.2504313950
+UniRef50_U3NTD9: IS1272-like transposase, degenerate	171.2387682931
+UniRef50_U3NTD9: IS1272-like transposase, degenerate|g__Staphylococcus.s__Staphylococcus_aureus	171.2387682931
+UniRef50_X2GN29: Metal ABC transporter permease	171.1363649733
+UniRef50_X2GN29: Metal ABC transporter permease|g__Staphylococcus.s__Staphylococcus_epidermidis	106.1340712426
+UniRef50_X2GN29: Metal ABC transporter permease|g__Staphylococcus.s__Staphylococcus_aureus	65.0022937307
+UniRef50_Q8CP66: Heptaprenyl diphosphate syntase component II	171.1242570603
+UniRef50_Q8CP66: Heptaprenyl diphosphate syntase component II|g__Staphylococcus.s__Staphylococcus_epidermidis	109.2144379306
+UniRef50_Q8CP66: Heptaprenyl diphosphate syntase component II|g__Staphylococcus.s__Staphylococcus_aureus	61.9098191297
+UniRef50_A7X4U4: ATP synthase gamma chain	171.1124227316
+UniRef50_A7X4U4: ATP synthase gamma chain|g__Staphylococcus.s__Staphylococcus_epidermidis	104.5595617490
+UniRef50_A7X4U4: ATP synthase gamma chain|g__Staphylococcus.s__Staphylococcus_aureus	66.5528609826
+UniRef50_Q5HQM9: DltB protein	171.0914192743
+UniRef50_Q5HQM9: DltB protein|g__Staphylococcus.s__Staphylococcus_epidermidis	103.2100527604
+UniRef50_Q5HQM9: DltB protein|g__Staphylococcus.s__Staphylococcus_aureus	67.8813665139
+UniRef50_Q7WZY5: Oxygen sensor histidine kinase NreB	170.9745127244
+UniRef50_Q7WZY5: Oxygen sensor histidine kinase NreB|g__Staphylococcus.s__Staphylococcus_aureus	90.0285922158
+UniRef50_Q7WZY5: Oxygen sensor histidine kinase NreB|g__Staphylococcus.s__Staphylococcus_epidermidis	80.9459205086
+UniRef50_Q9Z9U1: Sorbitol dehydrogenase	170.8819642318
+UniRef50_Q9Z9U1: Sorbitol dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	170.7887942148
+UniRef50_Q9Z9U1: Sorbitol dehydrogenase|unclassified	0.0931700169
+UniRef50_Q5HKG7: ABC transporter, ATP-binding protein	170.8180482725
+UniRef50_Q5HKG7: ABC transporter, ATP-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	102.2201078085
+UniRef50_Q5HKG7: ABC transporter, ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	68.5979404640
+UniRef50_L7WQT3: Prephenate dehydratase	170.6566821335
+UniRef50_L7WQT3: Prephenate dehydratase|g__Staphylococcus.s__Staphylococcus_aureus	97.7628344945
+UniRef50_L7WQT3: Prephenate dehydratase|g__Staphylococcus.s__Staphylococcus_epidermidis	72.8938476389
+UniRef50_R7YU19	170.4783534228
+UniRef50_R7YU19|g__Staphylococcus.s__Staphylococcus_aureus	170.4783534228
+UniRef50_D2N911: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase	170.4224004074
+UniRef50_D2N911: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	90.7510441066
+UniRef50_D2N911: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase|g__Staphylococcus.s__Staphylococcus_aureus	79.6713563008
+UniRef50_T1XT22: Amino acid permease, putative	170.3614371605
+UniRef50_T1XT22: Amino acid permease, putative|g__Staphylococcus.s__Staphylococcus_aureus	90.4938218082
+UniRef50_T1XT22: Amino acid permease, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	79.8676153523
+UniRef50_G8RET5: D-specific D-2-hydroxyacid dehydrogenase ddh-like protein	170.3210336277
+UniRef50_G8RET5: D-specific D-2-hydroxyacid dehydrogenase ddh-like protein|g__Staphylococcus.s__Staphylococcus_aureus	103.9868772431
+UniRef50_G8RET5: D-specific D-2-hydroxyacid dehydrogenase ddh-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	66.3341563846
+UniRef50_O32035	170.2715153218
+UniRef50_O32035|g__Staphylococcus.s__Staphylococcus_epidermidis	103.8540653971
+UniRef50_O32035|g__Staphylococcus.s__Staphylococcus_aureus	66.4174499247
+UniRef50_Q2YZ93	170.1903859178
+UniRef50_Q2YZ93|g__Staphylococcus.s__Staphylococcus_aureus	107.2371268400
+UniRef50_Q2YZ93|g__Staphylococcus.s__Staphylococcus_epidermidis	62.9532590779
+UniRef50_O06844: Nitric oxide reductase subunit C	169.9500704078
+UniRef50_O06844: Nitric oxide reductase subunit C|g__Rhodobacter.s__Rhodobacter_sphaeroides	155.0014277079
+UniRef50_O06844: Nitric oxide reductase subunit C|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.9486426999
+UniRef50_X5E1J9	169.6927285407
+UniRef50_X5E1J9|g__Staphylococcus.s__Staphylococcus_aureus	166.5312564914
+UniRef50_X5E1J9|g__Staphylococcus.s__Staphylococcus_epidermidis	2.9498525074
+UniRef50_X5E1J9|unclassified	0.2116195419
+UniRef50_O34527: HTH-type transcriptional regulator CymR	169.6754364358
+UniRef50_O34527: HTH-type transcriptional regulator CymR|g__Staphylococcus.s__Staphylococcus_aureus	101.3002680738
+UniRef50_O34527: HTH-type transcriptional regulator CymR|g__Staphylococcus.s__Staphylococcus_epidermidis	68.3751683620
+UniRef50_Q4L3C5: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	169.6436368340
+UniRef50_Q4L3C5: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	89.8433104859
+UniRef50_Q4L3C5: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	79.8003263481
+UniRef50_Q5HP88: Probable ATP-dependent helicase DinG homolog	169.6232387320
+UniRef50_Q5HP88: Probable ATP-dependent helicase DinG homolog|g__Staphylococcus.s__Staphylococcus_epidermidis	88.6055491946
+UniRef50_Q5HP88: Probable ATP-dependent helicase DinG homolog|g__Staphylococcus.s__Staphylococcus_aureus	81.0176895374
+UniRef50_G8PIV9: Universal stress protein	169.4916300309
+UniRef50_G8PIV9: Universal stress protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	169.4916300309
+UniRef50_A7X623: Oxygen regulatory protein NreC	169.4726422885
+UniRef50_A7X623: Oxygen regulatory protein NreC|g__Staphylococcus.s__Staphylococcus_aureus	96.1069254607
+UniRef50_A7X623: Oxygen regulatory protein NreC|g__Staphylococcus.s__Staphylococcus_epidermidis	73.3657168278
+UniRef50_Q4L540: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	169.4153868854
+UniRef50_Q4L540: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	91.8052786506
+UniRef50_Q4L540: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	77.6101082348
+UniRef50_Q46845: Disulfide-bond oxidoreductase YghU	169.3663349570
+UniRef50_Q46845: Disulfide-bond oxidoreductase YghU|g__Rhodobacter.s__Rhodobacter_sphaeroides	87.1455682601
+UniRef50_Q46845: Disulfide-bond oxidoreductase YghU|g__Streptococcus.s__Streptococcus_mutans	48.4030338618
+UniRef50_Q46845: Disulfide-bond oxidoreductase YghU|g__Escherichia.s__Escherichia_coli	32.2027558395
+UniRef50_Q46845: Disulfide-bond oxidoreductase YghU|unclassified	1.6149769956
+UniRef50_X5A009: Oxidoreductase	169.2773335731
+UniRef50_X5A009: Oxidoreductase|g__Staphylococcus.s__Staphylococcus_aureus	166.2636410726
+UniRef50_X5A009: Oxidoreductase|g__Clostridium.s__Clostridium_beijerinckii	3.0136925004
+UniRef50_R9YN68: 2-succinyl-6-hydroxy-2, 4-cyclohexadiene-1-carboxylate synthase	169.2167595777
+UniRef50_R9YN68: 2-succinyl-6-hydroxy-2, 4-cyclohexadiene-1-carboxylate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	85.6036671201
+UniRef50_R9YN68: 2-succinyl-6-hydroxy-2, 4-cyclohexadiene-1-carboxylate synthase|g__Staphylococcus.s__Staphylococcus_aureus	83.6130924575
+UniRef50_P61544: UPF0316 protein SA1727	169.1961086138
+UniRef50_P61544: UPF0316 protein SA1727|g__Staphylococcus.s__Staphylococcus_aureus	169.1961086138
+UniRef50_C7ZXI9: Mn2 and Fe2 transporter	169.1388225999
+UniRef50_C7ZXI9: Mn2 and Fe2 transporter|g__Staphylococcus.s__Staphylococcus_aureus	95.3035438126
+UniRef50_C7ZXI9: Mn2 and Fe2 transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	73.8352787873
+UniRef50_O31775	169.0909882039
+UniRef50_O31775|g__Staphylococcus.s__Staphylococcus_aureus	98.9950701079
+UniRef50_O31775|g__Staphylococcus.s__Staphylococcus_epidermidis	70.0959180960
+UniRef50_Q5HRD0: Endonuclease III	168.9663316113
+UniRef50_Q5HRD0: Endonuclease III|g__Staphylococcus.s__Staphylococcus_aureus	84.5205138202
+UniRef50_Q5HRD0: Endonuclease III|g__Staphylococcus.s__Staphylococcus_epidermidis	84.4458177912
+UniRef50_Q4L5E4: Phenylalanine--tRNA ligase beta subunit	168.9197393217
+UniRef50_Q4L5E4: Phenylalanine--tRNA ligase beta subunit|g__Staphylococcus.s__Staphylococcus_aureus	85.9337192233
+UniRef50_Q4L5E4: Phenylalanine--tRNA ligase beta subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	82.9860200984
+UniRef50_L7X117	168.8643100190
+UniRef50_L7X117|g__Staphylococcus.s__Staphylococcus_epidermidis	114.0148703168
+UniRef50_L7X117|g__Staphylococcus.s__Staphylococcus_aureus	54.8494397022
+UniRef50_P45625	168.8364055580
+UniRef50_P45625|g__Staphylococcus.s__Staphylococcus_epidermidis	96.3367868228
+UniRef50_P45625|g__Staphylococcus.s__Staphylococcus_aureus	71.5223907528
+UniRef50_P45625|unclassified	0.9772279824
+UniRef50_A4IMH7: tRNA-2-methylthio-N(6)-dimethylallyladenosine synthase	168.6471018225
+UniRef50_A4IMH7: tRNA-2-methylthio-N(6)-dimethylallyladenosine synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	97.1090379179
+UniRef50_A4IMH7: tRNA-2-methylthio-N(6)-dimethylallyladenosine synthase|g__Staphylococcus.s__Staphylococcus_aureus	71.5380639046
+UniRef50_F3U4X7: ABC sugar transporter, inner membrane subunit	168.5773646629
+UniRef50_F3U4X7: ABC sugar transporter, inner membrane subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	168.5773646629
+UniRef50_A4YX93: L-fuculose-1-phosphate aldolase	168.5715248772
+UniRef50_A4YX93: L-fuculose-1-phosphate aldolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	168.5715248772
+UniRef50_A5IUE2: DUTPase	168.5264086878
+UniRef50_A5IUE2: DUTPase|g__Staphylococcus.s__Staphylococcus_aureus	168.4039576322
+UniRef50_A5IUE2: DUTPase|unclassified	0.1224510556
+UniRef50_Q4L7F0: UPF0754 membrane protein SH1116	168.4557934571
+UniRef50_Q4L7F0: UPF0754 membrane protein SH1116|g__Staphylococcus.s__Staphylococcus_aureus	85.2878086632
+UniRef50_Q4L7F0: UPF0754 membrane protein SH1116|g__Staphylococcus.s__Staphylococcus_epidermidis	83.1679847939
+UniRef50_Q5HQR1: Toprim domain protein	168.3477055637
+UniRef50_Q5HQR1: Toprim domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	108.0831882237
+UniRef50_Q5HQR1: Toprim domain protein|g__Staphylococcus.s__Staphylococcus_aureus	60.2645173400
+UniRef50_Q5HF07: Riboflavin biosynthesis protein RibBA	168.3277113777
+UniRef50_Q5HF07: Riboflavin biosynthesis protein RibBA|g__Staphylococcus.s__Staphylococcus_aureus	91.1556429941
+UniRef50_Q5HF07: Riboflavin biosynthesis protein RibBA|g__Staphylococcus.s__Staphylococcus_epidermidis	77.1720683836
+UniRef50_K0LFR7	168.1815768157
+UniRef50_K0LFR7|g__Staphylococcus.s__Staphylococcus_aureus	92.1240315880
+UniRef50_K0LFR7|g__Staphylococcus.s__Staphylococcus_epidermidis	76.0575452277
+UniRef50_Q6G904: DNA primase	168.1356675201
+UniRef50_Q6G904: DNA primase|g__Staphylococcus.s__Staphylococcus_aureus	87.2827077492
+UniRef50_Q6G904: DNA primase|g__Staphylococcus.s__Staphylococcus_epidermidis	80.8231102299
+UniRef50_Q6G904: DNA primase|unclassified	0.0298495410
+UniRef50_I0C2H0: Fructose repressor	168.0121323065
+UniRef50_I0C2H0: Fructose repressor|g__Staphylococcus.s__Staphylococcus_aureus	114.9249780214
+UniRef50_I0C2H0: Fructose repressor|g__Staphylococcus.s__Staphylococcus_epidermidis	53.0871542851
+UniRef50_E8SGJ9: Substrate-specific component ThiW of predicted thiazole ECF transporter	168.0103727545
+UniRef50_E8SGJ9: Substrate-specific component ThiW of predicted thiazole ECF transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	93.1992799070
+UniRef50_E8SGJ9: Substrate-specific component ThiW of predicted thiazole ECF transporter|g__Staphylococcus.s__Staphylococcus_aureus	74.8110928474
+UniRef50_Q5HLR8	167.9691190676
+UniRef50_Q5HLR8|g__Staphylococcus.s__Staphylococcus_epidermidis	167.9691190676
+UniRef50_Q5HR97: Teichoic acids export ATP-binding protein TagH	167.9377043701
+UniRef50_Q5HR97: Teichoic acids export ATP-binding protein TagH|g__Staphylococcus.s__Staphylococcus_aureus	88.2250962644
+UniRef50_Q5HR97: Teichoic acids export ATP-binding protein TagH|g__Staphylococcus.s__Staphylococcus_epidermidis	79.3815664105
+UniRef50_Q5HR97: Teichoic acids export ATP-binding protein TagH|unclassified	0.3310416952
+UniRef50_B7GF12: Ferrochelatase	167.9006498137
+UniRef50_B7GF12: Ferrochelatase|g__Staphylococcus.s__Staphylococcus_aureus	112.4325171173
+UniRef50_B7GF12: Ferrochelatase|g__Staphylococcus.s__Staphylococcus_epidermidis	55.4681326965
+UniRef50_Q5HKC7	167.8699382970
+UniRef50_Q5HKC7|g__Staphylococcus.s__Staphylococcus_epidermidis	167.8699382970
+UniRef50_H7CPK2	167.8078683566
+UniRef50_H7CPK2|g__Staphylococcus.s__Staphylococcus_aureus	109.7077482834
+UniRef50_H7CPK2|g__Streptococcus.s__Streptococcus_mutans	58.1001200731
+UniRef50_Q8CTH6: Urea amidolyase	167.6160329015
+UniRef50_Q8CTH6: Urea amidolyase|g__Staphylococcus.s__Staphylococcus_aureus	118.1930791638
+UniRef50_Q8CTH6: Urea amidolyase|g__Staphylococcus.s__Staphylococcus_epidermidis	49.4229537377
+UniRef50_UPI00036095F7: hypothetical protein	167.5797028299
+UniRef50_UPI00036095F7: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	167.5797028299
+UniRef50_Q8XSL7: Remnant of isrso5-transposase protein	167.4886254690
+UniRef50_Q8XSL7: Remnant of isrso5-transposase protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	167.4886254690
+UniRef50_W0F5U5: Spermidine/putrescine ABC transporter permease protein	167.4780504617
+UniRef50_W0F5U5: Spermidine/putrescine ABC transporter permease protein|g__Staphylococcus.s__Staphylococcus_epidermidis	78.8183528892
+UniRef50_W0F5U5: Spermidine/putrescine ABC transporter permease protein|g__Staphylococcus.s__Staphylococcus_aureus	65.4021437514
+UniRef50_W0F5U5: Spermidine/putrescine ABC transporter permease protein|g__Streptococcus.s__Streptococcus_mutans	19.2316523232
+UniRef50_W0F5U5: Spermidine/putrescine ABC transporter permease protein|g__Streptococcus.s__Streptococcus_agalactiae	4.0259014980
+UniRef50_Q02W25: 50S ribosomal protein L4	167.4700479672
+UniRef50_Q02W25: 50S ribosomal protein L4|g__Staphylococcus.s__Staphylococcus_aureus	60.0381349357
+UniRef50_Q02W25: 50S ribosomal protein L4|g__Staphylococcus.s__Staphylococcus_epidermidis	57.6860367703
+UniRef50_Q02W25: 50S ribosomal protein L4|g__Streptococcus.s__Streptococcus_mutans	49.7458762612
+UniRef50_Q3J611: Putative sensor histidine protein kinase	167.3886933408
+UniRef50_Q3J611: Putative sensor histidine protein kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	167.3886933408
+UniRef50_I0C729	167.2530442341
+UniRef50_I0C729|g__Staphylococcus.s__Staphylococcus_aureus	102.2488034307
+UniRef50_I0C729|g__Staphylococcus.s__Staphylococcus_epidermidis	65.0042408034
+UniRef50_P55177: Hydrolase in agr operon	167.2210210707
+UniRef50_P55177: Hydrolase in agr operon|g__Staphylococcus.s__Staphylococcus_aureus	84.1518035261
+UniRef50_P55177: Hydrolase in agr operon|g__Staphylococcus.s__Staphylococcus_epidermidis	83.0692175446
+UniRef50_D1GNQ1: Aldo/keto reductase family protein	167.1393502616
+UniRef50_D1GNQ1: Aldo/keto reductase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	97.6423687097
+UniRef50_D1GNQ1: Aldo/keto reductase family protein|g__Staphylococcus.s__Staphylococcus_aureus	69.4969815519
+UniRef50_C4ZHB9: Glutamyl-tRNA(Gln) amidotransferase subunit A	167.1324405100
+UniRef50_C4ZHB9: Glutamyl-tRNA(Gln) amidotransferase subunit A|g__Staphylococcus.s__Staphylococcus_epidermidis	88.0842086039
+UniRef50_C4ZHB9: Glutamyl-tRNA(Gln) amidotransferase subunit A|g__Staphylococcus.s__Staphylococcus_aureus	78.1425073271
+UniRef50_C4ZHB9: Glutamyl-tRNA(Gln) amidotransferase subunit A|g__Clostridium.s__Clostridium_beijerinckii	0.7132667618
+UniRef50_C4ZHB9: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.1924578172
+UniRef50_M1XHI0: Transposon tn552 dna-invertase binr	167.0017928798
+UniRef50_M1XHI0: Transposon tn552 dna-invertase binr|g__Staphylococcus.s__Staphylococcus_epidermidis	108.4920603404
+UniRef50_M1XHI0: Transposon tn552 dna-invertase binr|g__Staphylococcus.s__Staphylococcus_aureus	58.5097325394
+UniRef50_D0LZ79: Phosphoribosylformylglycinamidine synthase, purS	166.8906516907
+UniRef50_D0LZ79: Phosphoribosylformylglycinamidine synthase, purS|g__Rhodobacter.s__Rhodobacter_sphaeroides	166.6666666667
+UniRef50_D0LZ79: Phosphoribosylformylglycinamidine synthase, purS|unclassified	0.2239850241
+UniRef50_Q3IUU3	166.7893432641
+UniRef50_Q3IUU3|g__Rhodobacter.s__Rhodobacter_sphaeroides	165.7220980853
+UniRef50_Q3IUU3|unclassified	1.0672451788
+UniRef50_P67371: DegV domain-containing protein SA1258	166.7236817451
+UniRef50_P67371: DegV domain-containing protein SA1258|g__Staphylococcus.s__Staphylococcus_aureus	91.4048846236
+UniRef50_P67371: DegV domain-containing protein SA1258|g__Staphylococcus.s__Staphylococcus_epidermidis	75.3187971214
+UniRef50_A5IQC1: LmbE family protein	166.7223737258
+UniRef50_A5IQC1: LmbE family protein|g__Staphylococcus.s__Staphylococcus_aureus	85.9022120751
+UniRef50_A5IQC1: LmbE family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	79.8716347365
+UniRef50_A5IQC1: LmbE family protein|unclassified	0.9485269143
+UniRef50_E8SJM7: Siderophore staphylobactin biosynthesis protein SbnG	166.7195482486
+UniRef50_E8SJM7: Siderophore staphylobactin biosynthesis protein SbnG|g__Staphylococcus.s__Staphylococcus_aureus	166.7195482486
+UniRef50_A8GFH7: Spermidine export protein MdtJ	166.6666666667
+UniRef50_A8GFH7: Spermidine export protein MdtJ|g__Escherichia.s__Escherichia_coli	166.6666666667
+UniRef50_Q1LCM1	166.6368638284
+UniRef50_Q1LCM1|g__Rhodobacter.s__Rhodobacter_sphaeroides	164.9746765125
+UniRef50_Q1LCM1|unclassified	1.6621873160
+UniRef50_D3QE85	166.4374157345
+UniRef50_D3QE85|g__Staphylococcus.s__Staphylococcus_epidermidis	95.4498811162
+UniRef50_D3QE85|g__Staphylococcus.s__Staphylococcus_aureus	70.9875346183
+UniRef50_B7NM10: Endoribonuclease YbeY	166.4094440149
+UniRef50_B7NM10: Endoribonuclease YbeY|g__Escherichia.s__Escherichia_coli	166.3206509815
+UniRef50_B7NM10: Endoribonuclease YbeY|unclassified	0.0887930334
+UniRef50_Q9RCA1: DNA polymerase III subunit beta	166.3971656456
+UniRef50_Q9RCA1: DNA polymerase III subunit beta|g__Staphylococcus.s__Staphylococcus_aureus	96.3235486038
+UniRef50_Q9RCA1: DNA polymerase III subunit beta|g__Staphylococcus.s__Staphylococcus_epidermidis	69.7520961593
+UniRef50_Q9RCA1: DNA polymerase III subunit beta|unclassified	0.3215208824
+UniRef50_Q8CQE3	166.3166961470
+UniRef50_Q8CQE3|g__Staphylococcus.s__Staphylococcus_aureus	87.4332537773
+UniRef50_Q8CQE3|g__Staphylococcus.s__Staphylococcus_epidermidis	78.8834423696
+UniRef50_Q5HM66	166.2779730658
+UniRef50_Q5HM66|g__Staphylococcus.s__Staphylococcus_aureus	104.6555939054
+UniRef50_Q5HM66|g__Staphylococcus.s__Staphylococcus_epidermidis	61.6223791604
+UniRef50_Q2YUE8: L-threonine dehydratase biosynthetic IlvA	166.2491017322
+UniRef50_Q2YUE8: L-threonine dehydratase biosynthetic IlvA|g__Staphylococcus.s__Staphylococcus_aureus	107.8394016722
+UniRef50_Q2YUE8: L-threonine dehydratase biosynthetic IlvA|g__Streptococcus.s__Streptococcus_mutans	58.2582381161
+UniRef50_Q2YUE8: L-threonine dehydratase biosynthetic IlvA|unclassified	0.1514619439
+UniRef50_Q4L855: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	166.1547567814
+UniRef50_Q4L855: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	100.5447773718
+UniRef50_Q4L855: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	65.6099794096
+UniRef50_I0C2G3: Deoxyribodipyrimidine photolyase	165.9148089639
+UniRef50_I0C2G3: Deoxyribodipyrimidine photolyase|g__Staphylococcus.s__Staphylococcus_aureus	89.7471697531
+UniRef50_I0C2G3: Deoxyribodipyrimidine photolyase|g__Staphylococcus.s__Staphylococcus_epidermidis	76.1676392109
+UniRef50_Q8CQ91: Histidine biosynthesis bifunctional protein HisIE	165.9058274043
+UniRef50_Q8CQ91: Histidine biosynthesis bifunctional protein HisIE|g__Staphylococcus.s__Staphylococcus_epidermidis	165.8188515065
+UniRef50_Q8CQ91: Histidine biosynthesis bifunctional protein HisIE|unclassified	0.0869758978
+UniRef50_Q3IV07: Asparagine synthetase	165.8760271255
+UniRef50_Q3IV07: Asparagine synthetase|g__Rhodobacter.s__Rhodobacter_sphaeroides	165.8760271255
+UniRef50_Q2FH57: Putative oligopeptide transport ATP-binding protein oppD2	165.7999543812
+UniRef50_Q2FH57: Putative oligopeptide transport ATP-binding protein oppD2|g__Staphylococcus.s__Staphylococcus_aureus	99.2279923963
+UniRef50_Q2FH57: Putative oligopeptide transport ATP-binding protein oppD2|g__Staphylococcus.s__Staphylococcus_epidermidis	66.5719619850
+UniRef50_C5F4X4: Spermidine/putrescine ABC transporter permease	165.7900790730
+UniRef50_C5F4X4: Spermidine/putrescine ABC transporter permease|g__Staphylococcus.s__Staphylococcus_aureus	86.1595635792
+UniRef50_C5F4X4: Spermidine/putrescine ABC transporter permease|g__Staphylococcus.s__Staphylococcus_epidermidis	53.7629860860
+UniRef50_C5F4X4: Spermidine/putrescine ABC transporter permease|g__Streptococcus.s__Streptococcus_mutans	22.9856850274
+UniRef50_C5F4X4: Spermidine/putrescine ABC transporter permease|g__Streptococcus.s__Streptococcus_agalactiae	2.8818443804
+UniRef50_Q28TB6: Amino acid ABC transporter membrane protein 2, PAAT family	165.7517532087
+UniRef50_Q28TB6: Amino acid ABC transporter membrane protein 2, PAAT family|g__Rhodobacter.s__Rhodobacter_sphaeroides	165.7517532087
+UniRef50_A7X0C7: Lipoyl synthase	165.7302669977
+UniRef50_A7X0C7: Lipoyl synthase|g__Staphylococcus.s__Staphylococcus_aureus	103.7833215259
+UniRef50_A7X0C7: Lipoyl synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	61.7697909025
+UniRef50_A7X0C7: Lipoyl synthase|unclassified	0.1771545693
+UniRef50_Q8CPQ1: Bifunctional autolysin	165.6156128930
+UniRef50_Q8CPQ1: Bifunctional autolysin|g__Staphylococcus.s__Staphylococcus_aureus	86.9311522150
+UniRef50_Q8CPQ1: Bifunctional autolysin|g__Staphylococcus.s__Staphylococcus_epidermidis	78.6844606780
+UniRef50_Q4L6B1: TelA-like protein SH1505	165.5093058016
+UniRef50_Q4L6B1: TelA-like protein SH1505|g__Staphylococcus.s__Staphylococcus_aureus	92.3993005454
+UniRef50_Q4L6B1: TelA-like protein SH1505|g__Staphylococcus.s__Staphylococcus_epidermidis	73.1100052562
+UniRef50_B9EAC4	165.5061202522
+UniRef50_B9EAC4|g__Staphylococcus.s__Staphylococcus_aureus	89.4788325755
+UniRef50_B9EAC4|g__Staphylococcus.s__Staphylococcus_epidermidis	76.0272876766
+UniRef50_Q5HH83: UPF0413 protein SACOL1006	165.4999065560
+UniRef50_Q5HH83: UPF0413 protein SACOL1006|g__Staphylococcus.s__Staphylococcus_epidermidis	98.2401681728
+UniRef50_Q5HH83: UPF0413 protein SACOL1006|g__Staphylococcus.s__Staphylococcus_aureus	67.2597383831
+UniRef50_F2I802: Response regulator receiver domain protein	165.3953712058
+UniRef50_F2I802: Response regulator receiver domain protein|g__Staphylococcus.s__Staphylococcus_aureus	105.5004850538
+UniRef50_F2I802: Response regulator receiver domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	59.8948861520
+UniRef50_B2IHW6: NADH-quinone oxidoreductase subunit B	165.2804412220
+UniRef50_B2IHW6: NADH-quinone oxidoreductase subunit B|g__Rhodobacter.s__Rhodobacter_sphaeroides	165.0006927723
+UniRef50_B2IHW6: NADH-quinone oxidoreductase subunit B|unclassified	0.2797484497
+UniRef50_P46905	165.2492960069
+UniRef50_P46905|g__Staphylococcus.s__Staphylococcus_aureus	105.2455676809
+UniRef50_P46905|g__Staphylococcus.s__Staphylococcus_epidermidis	60.0037283259
+UniRef50_P67760: UPF0302 protein SA1295	165.1411439200
+UniRef50_P67760: UPF0302 protein SA1295|g__Staphylococcus.s__Staphylococcus_aureus	92.7052471051
+UniRef50_P67760: UPF0302 protein SA1295|g__Staphylococcus.s__Staphylococcus_epidermidis	72.4358968149
+UniRef50_A7X1C4: UDP-N-acetylmuramoylalanine--D-glutamate ligase	165.1305009331
+UniRef50_A7X1C4: UDP-N-acetylmuramoylalanine--D-glutamate ligase|g__Staphylococcus.s__Staphylococcus_aureus	90.1701199993
+UniRef50_A7X1C4: UDP-N-acetylmuramoylalanine--D-glutamate ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	74.9603809338
+UniRef50_Q49W91: Na(+)/H(+) antiporter subunit A1	165.0059178658
+UniRef50_Q49W91: Na(+)/H(+) antiporter subunit A1|g__Staphylococcus.s__Staphylococcus_epidermidis	91.7427572490
+UniRef50_Q49W91: Na(+)/H(+) antiporter subunit A1|g__Staphylococcus.s__Staphylococcus_aureus	73.2631606167
+UniRef50_Q168U2: Polyhydroxyalkanoate synthesis repressor	164.9736080697
+UniRef50_Q168U2: Polyhydroxyalkanoate synthesis repressor|g__Rhodobacter.s__Rhodobacter_sphaeroides	162.5576544359
+UniRef50_Q168U2: Polyhydroxyalkanoate synthesis repressor|unclassified	2.4159536338
+UniRef50_Q3J230	164.9463746989
+UniRef50_Q3J230|g__Rhodobacter.s__Rhodobacter_sphaeroides	164.9463746989
+UniRef50_Q8CPQ8: Nucleotidase	164.9414766010
+UniRef50_Q8CPQ8: Nucleotidase|g__Staphylococcus.s__Staphylococcus_epidermidis	92.8506357543
+UniRef50_Q8CPQ8: Nucleotidase|g__Staphylococcus.s__Staphylococcus_aureus	72.0908408466
+UniRef50_D9RH26: Site-specific DNA-methyltransferase (Adenine-specific)	164.7916662686
+UniRef50_D9RH26: Site-specific DNA-methyltransferase (Adenine-specific)|g__Staphylococcus.s__Staphylococcus_aureus	83.9087377658
+UniRef50_D9RH26: Site-specific DNA-methyltransferase (Adenine-specific)|g__Staphylococcus.s__Staphylococcus_epidermidis	80.8829285028
+UniRef50_Q6GBA6: Histidinol-phosphate aminotransferase	164.7325988613
+UniRef50_Q6GBA6: Histidinol-phosphate aminotransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	88.0437342017
+UniRef50_Q6GBA6: Histidinol-phosphate aminotransferase|g__Staphylococcus.s__Staphylococcus_aureus	75.3332412500
+UniRef50_Q6GBA6: Histidinol-phosphate aminotransferase|unclassified	1.3556234096
+UniRef50_G8V2S6: Phage tail tape measure protein, TP901 family, core region	164.6789844346
+UniRef50_G8V2S6: Phage tail tape measure protein, TP901 family, core region|g__Staphylococcus.s__Staphylococcus_aureus	164.6789844346
+UniRef50_E8SIU9: Phosphate regulon sensor protein PhoR/SphS	164.6426217994
+UniRef50_E8SIU9: Phosphate regulon sensor protein PhoR/SphS|g__Staphylococcus.s__Staphylococcus_aureus	93.5986554836
+UniRef50_E8SIU9: Phosphate regulon sensor protein PhoR/SphS|g__Staphylococcus.s__Staphylococcus_epidermidis	71.0439663158
+UniRef50_I0C1B5: Choloylglycine hydrolase	164.6228687465
+UniRef50_I0C1B5: Choloylglycine hydrolase|g__Staphylococcus.s__Staphylococcus_aureus	164.6228687465
+UniRef50_A9CFS9: Small heat shock protein	164.5919125725
+UniRef50_A9CFS9: Small heat shock protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	163.6977239541
+UniRef50_A9CFS9: Small heat shock protein|unclassified	0.8941886184
+UniRef50_Q8CP83: 2-oxoglutarate dehydrogenase E1 component	164.5693828589
+UniRef50_Q8CP83: 2-oxoglutarate dehydrogenase E1 component|g__Staphylococcus.s__Staphylococcus_epidermidis	84.2207286554
+UniRef50_Q8CP83: 2-oxoglutarate dehydrogenase E1 component|g__Staphylococcus.s__Staphylococcus_aureus	80.3315548470
+UniRef50_Q8CP83: 2-oxoglutarate dehydrogenase E1 component|unclassified	0.0170993565
+UniRef50_Q53229: UPF0093 membrane protein RHOS4_28450	164.5680544221
+UniRef50_Q53229: UPF0093 membrane protein RHOS4_28450|g__Rhodobacter.s__Rhodobacter_sphaeroides	164.5680544221
+UniRef50_Q2K5Z5: Leucine-responsive transcriptional regulator protein, AsnC family	164.5364002437
+UniRef50_Q2K5Z5: Leucine-responsive transcriptional regulator protein, AsnC family|g__Rhodobacter.s__Rhodobacter_sphaeroides	164.5364002437
+UniRef50_D5BRV4: Binding-protein-dependent transport systems inner membrane component	164.3603534173
+UniRef50_D5BRV4: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	164.3603534173
+UniRef50_O06994: Oligo-1,6-glucosidase 1	164.3577831742
+UniRef50_O06994: Oligo-1,6-glucosidase 1|g__Staphylococcus.s__Staphylococcus_epidermidis	99.7118391535
+UniRef50_O06994: Oligo-1,6-glucosidase 1|g__Streptococcus.s__Streptococcus_mutans	62.1521345759
+UniRef50_O06994: Oligo-1,6-glucosidase 1|g__Streptococcus.s__Streptococcus_agalactiae	2.2501525223
+UniRef50_O06994: Oligo-1,6-glucosidase 1|unclassified	0.2436569226
+UniRef50_Q4L5P2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	164.3299406811
+UniRef50_Q4L5P2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	111.4904715954
+UniRef50_Q4L5P2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	52.8394690857
+UniRef50_Q49XR9	164.2869000548
+UniRef50_Q49XR9|g__Staphylococcus.s__Staphylococcus_aureus	83.5713643930
+UniRef50_Q49XR9|g__Staphylococcus.s__Staphylococcus_epidermidis	80.7155356618
+UniRef50_Q8SDJ9: Amidase	164.1919341077
+UniRef50_Q8SDJ9: Amidase|g__Staphylococcus.s__Staphylococcus_aureus	164.1919341077
+UniRef50_D6U9R9: Export membrane protein SecF	164.1794867034
+UniRef50_D6U9R9: Export membrane protein SecF|g__Staphylococcus.s__Staphylococcus_aureus	82.6588933559
+UniRef50_D6U9R9: Export membrane protein SecF|g__Staphylococcus.s__Staphylococcus_epidermidis	81.5205933475
+UniRef50_P0AC90: GDP-mannose 4,6-dehydratase	164.0606874818
+UniRef50_P0AC90: GDP-mannose 4,6-dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	113.7592576151
+UniRef50_P0AC90: GDP-mannose 4,6-dehydratase|g__Escherichia.s__Escherichia_coli	47.9168427523
+UniRef50_P0AC90: GDP-mannose 4,6-dehydratase|g__Helicobacter.s__Helicobacter_pylori	2.3845871145
+UniRef50_Q04E86: DNA-directed RNA polymerase subunit beta'	164.0393778064
+UniRef50_Q04E86: DNA-directed RNA polymerase subunit beta'|g__Staphylococcus.s__Staphylococcus_aureus	105.7941606573
+UniRef50_Q04E86: DNA-directed RNA polymerase subunit beta'|g__Streptococcus.s__Streptococcus_mutans	58.2452171490
+UniRef50_I0C4X0: KipI	163.9872769749
+UniRef50_I0C4X0: KipI|g__Staphylococcus.s__Staphylococcus_aureus	98.5270701673
+UniRef50_I0C4X0: KipI|g__Staphylococcus.s__Staphylococcus_epidermidis	65.3966673269
+UniRef50_I0C4X0: KipI|unclassified	0.0635394806
+UniRef50_Q5HRC6: Iron compound ABC transporter, permease protein	163.9387363256
+UniRef50_Q5HRC6: Iron compound ABC transporter, permease protein|g__Staphylococcus.s__Staphylococcus_epidermidis	84.6863241969
+UniRef50_Q5HRC6: Iron compound ABC transporter, permease protein|g__Staphylococcus.s__Staphylococcus_aureus	79.2524121287
+UniRef50_B9E7V9: Two-component response regulator	163.9374982781
+UniRef50_B9E7V9: Two-component response regulator|g__Staphylococcus.s__Staphylococcus_epidermidis	93.0197810074
+UniRef50_B9E7V9: Two-component response regulator|g__Staphylococcus.s__Staphylococcus_aureus	70.9177172707
+UniRef50_Q732I6: Orotidine 5'-phosphate decarboxylase	163.9236308732
+UniRef50_Q732I6: Orotidine 5'-phosphate decarboxylase|g__Staphylococcus.s__Staphylococcus_epidermidis	110.0937156249
+UniRef50_Q732I6: Orotidine 5'-phosphate decarboxylase|g__Streptococcus.s__Streptococcus_mutans	51.9356689028
+UniRef50_Q732I6: Orotidine 5'-phosphate decarboxylase|g__Streptococcus.s__Streptococcus_agalactiae	1.6666666667
+UniRef50_Q732I6: Orotidine 5'-phosphate decarboxylase|unclassified	0.2275796789
+UniRef50_Q2FJ80: FMN-dependent NADPH-azoreductase	163.8846354910
+UniRef50_Q2FJ80: FMN-dependent NADPH-azoreductase|g__Staphylococcus.s__Staphylococcus_aureus	90.8739103077
+UniRef50_Q2FJ80: FMN-dependent NADPH-azoreductase|g__Staphylococcus.s__Staphylococcus_epidermidis	73.0107251833
+UniRef50_B9KX92: ABC polysaccharide export transporter, ATPase subunit	163.6714265949
+UniRef50_B9KX92: ABC polysaccharide export transporter, ATPase subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	163.6714265949
+UniRef50_Q6G9J2: Anthranilate synthase component I	163.6398924399
+UniRef50_Q6G9J2: Anthranilate synthase component I|g__Staphylococcus.s__Staphylococcus_aureus	82.8474057956
+UniRef50_Q6G9J2: Anthranilate synthase component I|g__Staphylococcus.s__Staphylococcus_epidermidis	80.7924866443
+UniRef50_R4RG70: Cyclase family protein	163.5647003542
+UniRef50_R4RG70: Cyclase family protein|g__Staphylococcus.s__Staphylococcus_aureus	90.6804177379
+UniRef50_R4RG70: Cyclase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	72.8842826163
+UniRef50_D2N3U7: Phosphoenolpyruvate-dependent sugar phosphotransferase system, eiia 2, putative	163.5289695310
+UniRef50_D2N3U7: Phosphoenolpyruvate-dependent sugar phosphotransferase system, eiia 2, putative|g__Staphylococcus.s__Staphylococcus_aureus	163.5289695310
+UniRef50_T1Y7X3: Transporter, Na+/H+ antiporter family	163.4359476328
+UniRef50_T1Y7X3: Transporter, Na+/H+ antiporter family|g__Staphylococcus.s__Staphylococcus_epidermidis	88.2588503776
+UniRef50_T1Y7X3: Transporter, Na+/H+ antiporter family|g__Staphylococcus.s__Staphylococcus_aureus	75.1770972552
+UniRef50_Q5HGH0: Phosphatidate cytidylyltransferase	163.1134452814
+UniRef50_Q5HGH0: Phosphatidate cytidylyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	88.9193766589
+UniRef50_Q5HGH0: Phosphatidate cytidylyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	74.1940686225
+UniRef50_B1YGB5: DNA replication and repair protein RecF	163.0661389531
+UniRef50_B1YGB5: DNA replication and repair protein RecF|g__Staphylococcus.s__Staphylococcus_aureus	119.3466190791
+UniRef50_B1YGB5: DNA replication and repair protein RecF|g__Streptococcus.s__Streptococcus_mutans	43.7195198740
+UniRef50_Q5HN66: A/G-specific adenine glycosylase	162.9864725889
+UniRef50_Q5HN66: A/G-specific adenine glycosylase|g__Staphylococcus.s__Staphylococcus_epidermidis	83.2418478504
+UniRef50_Q5HN66: A/G-specific adenine glycosylase|g__Staphylococcus.s__Staphylococcus_aureus	79.7446247385
+UniRef50_D9RCZ8	162.9425987074
+UniRef50_D9RCZ8|g__Staphylococcus.s__Staphylococcus_aureus	162.9425987074
+UniRef50_I0C7U2: 4-aminobutyrate aminotransferase	162.8962169625
+UniRef50_I0C7U2: 4-aminobutyrate aminotransferase|g__Staphylococcus.s__Staphylococcus_aureus	98.2388034058
+UniRef50_I0C7U2: 4-aminobutyrate aminotransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	64.6574135567
+UniRef50_P0A080: Methionine aminopeptidase	162.8819337303
+UniRef50_P0A080: Methionine aminopeptidase|g__Staphylococcus.s__Staphylococcus_epidermidis	83.9384235844
+UniRef50_P0A080: Methionine aminopeptidase|g__Staphylococcus.s__Staphylococcus_aureus	78.4080626913
+UniRef50_P0A080: Methionine aminopeptidase|unclassified	0.5354474547
+UniRef50_E8WHV5: Pseudouridine synthase	162.8147458027
+UniRef50_E8WHV5: Pseudouridine synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	96.5836536855
+UniRef50_E8WHV5: Pseudouridine synthase|g__Staphylococcus.s__Staphylococcus_aureus	66.2310921172
+UniRef50_A7X1H5	162.7833326902
+UniRef50_A7X1H5|g__Staphylococcus.s__Staphylococcus_epidermidis	90.9518845337
+UniRef50_A7X1H5|g__Staphylococcus.s__Staphylococcus_aureus	71.8314481565
+UniRef50_L7WUA4	162.7313620225
+UniRef50_L7WUA4|g__Staphylococcus.s__Staphylococcus_aureus	162.7313620225
+UniRef50_Q9KD29: Manganese transport system membrane protein MntC	162.7210721368
+UniRef50_Q9KD29: Manganese transport system membrane protein MntC|g__Staphylococcus.s__Staphylococcus_epidermidis	96.6888872900
+UniRef50_Q9KD29: Manganese transport system membrane protein MntC|g__Streptococcus.s__Streptococcus_mutans	64.0752376843
+UniRef50_Q9KD29: Manganese transport system membrane protein MntC|g__Streptococcus.s__Streptococcus_agalactiae	1.9569471624
+UniRef50_U1FXL3: Primosome assembly protein PriA	162.7088637758
+UniRef50_U1FXL3: Primosome assembly protein PriA|g__Staphylococcus.s__Staphylococcus_aureus	94.9108284518
+UniRef50_U1FXL3: Primosome assembly protein PriA|g__Staphylococcus.s__Staphylococcus_epidermidis	67.7980353241
+UniRef50_O31404: Acetoin:2,6-dichlorophenolindophenol oxidoreductase subunit alpha	162.4985024017
+UniRef50_O31404: Acetoin:2,6-dichlorophenolindophenol oxidoreductase subunit alpha|g__Staphylococcus.s__Staphylococcus_epidermidis	97.2993230145
+UniRef50_O31404: Acetoin:2,6-dichlorophenolindophenol oxidoreductase subunit alpha|g__Streptococcus.s__Streptococcus_mutans	65.0029626210
+UniRef50_O31404: Acetoin:2,6-dichlorophenolindophenol oxidoreductase subunit alpha|unclassified	0.1962167661
+UniRef50_D6SH06	162.4559026200
+UniRef50_D6SH06|g__Staphylococcus.s__Staphylococcus_aureus	98.9025333529
+UniRef50_D6SH06|g__Staphylococcus.s__Staphylococcus_epidermidis	63.5533692671
+UniRef50_Q49WX9: Bifunctional protein PyrR	162.3623911486
+UniRef50_Q49WX9: Bifunctional protein PyrR|g__Staphylococcus.s__Staphylococcus_aureus	161.8643847118
+UniRef50_Q49WX9: Bifunctional protein PyrR|unclassified	0.4980064368
+UniRef50_Q041L5: ABC-type cobalt transport system, permease component CbiQ related transporter	162.2864625198
+UniRef50_Q041L5: ABC-type cobalt transport system, permease component CbiQ related transporter|g__Streptococcus.s__Streptococcus_mutans	77.1702531791
+UniRef50_Q041L5: ABC-type cobalt transport system, permease component CbiQ related transporter|g__Staphylococcus.s__Staphylococcus_aureus	75.5018327563
+UniRef50_Q041L5: ABC-type cobalt transport system, permease component CbiQ related transporter|g__Streptococcus.s__Streptococcus_agalactiae	9.6143765844
+UniRef50_Q6G7M7: D-alanine--D-alanine ligase	162.2523154348
+UniRef50_Q6G7M7: D-alanine--D-alanine ligase|g__Staphylococcus.s__Staphylococcus_aureus	100.6099117289
+UniRef50_Q6G7M7: D-alanine--D-alanine ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	61.3847486795
+UniRef50_Q6G7M7: D-alanine--D-alanine ligase|unclassified	0.2576550264
+UniRef50_Q59801: Hyaluronate lyase	162.1278651614
+UniRef50_Q59801: Hyaluronate lyase|g__Staphylococcus.s__Staphylococcus_aureus	162.1278651614
+UniRef50_G7ZLK0	161.7284533576
+UniRef50_G7ZLK0|g__Staphylococcus.s__Staphylococcus_aureus	161.6212378569
+UniRef50_G7ZLK0|unclassified	0.1072155007
+UniRef50_T1YAV1: Transposase	161.7170715339
+UniRef50_T1YAV1: Transposase|g__Staphylococcus.s__Staphylococcus_aureus	82.6086009753
+UniRef50_T1YAV1: Transposase|g__Staphylococcus.s__Staphylococcus_epidermidis	79.1084705586
+UniRef50_O32232: Carboxylesterase	161.7060253866
+UniRef50_O32232: Carboxylesterase|g__Staphylococcus.s__Staphylococcus_epidermidis	83.0573685703
+UniRef50_O32232: Carboxylesterase|g__Staphylococcus.s__Staphylococcus_aureus	78.6486568163
+UniRef50_C5N145: Cation diffusion facilitator family transporter	161.6667400499
+UniRef50_C5N145: Cation diffusion facilitator family transporter|g__Staphylococcus.s__Staphylococcus_aureus	98.7592878947
+UniRef50_C5N145: Cation diffusion facilitator family transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	62.9074521552
+UniRef50_O34997	161.6437600924
+UniRef50_O34997|g__Staphylococcus.s__Staphylococcus_epidermidis	97.3006813794
+UniRef50_O34997|g__Staphylococcus.s__Staphylococcus_aureus	64.3430787130
+UniRef50_Q5HPV5: UPF0122 protein SERP0802	161.5924377389
+UniRef50_Q5HPV5: UPF0122 protein SERP0802|g__Staphylococcus.s__Staphylococcus_epidermidis	161.5924377389
+UniRef50_Q8CRJ8	161.5315672580
+UniRef50_Q8CRJ8|g__Staphylococcus.s__Staphylococcus_epidermidis	93.4303859407
+UniRef50_Q8CRJ8|g__Staphylococcus.s__Staphylococcus_aureus	68.1011813174
+UniRef50_Q5HLT6: Abortive infection family protein	161.3968148545
+UniRef50_Q5HLT6: Abortive infection family protein|g__Staphylococcus.s__Staphylococcus_aureus	94.5981356077
+UniRef50_Q5HLT6: Abortive infection family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	66.7986792467
+UniRef50_E8SIF5: Biotin carboxylase	161.3728527417
+UniRef50_E8SIF5: Biotin carboxylase|g__Staphylococcus.s__Staphylococcus_epidermidis	82.3990698570
+UniRef50_E8SIF5: Biotin carboxylase|g__Staphylococcus.s__Staphylococcus_aureus	78.9737828847
+UniRef50_Q02137: Acetolactate synthase large subunit	161.1870072133
+UniRef50_Q02137: Acetolactate synthase large subunit|g__Staphylococcus.s__Staphylococcus_aureus	101.2079967090
+UniRef50_Q02137: Acetolactate synthase large subunit|g__Streptococcus.s__Streptococcus_mutans	59.8661641676
+UniRef50_Q02137: Acetolactate synthase large subunit|unclassified	0.1128463367
+UniRef50_Q4L6W7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	161.1779882211
+UniRef50_Q4L6W7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	80.9854439141
+UniRef50_Q4L6W7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	80.1925443071
+UniRef50_Q9GV41: Prostaglandin F synthase	161.1588934597
+UniRef50_Q9GV41: Prostaglandin F synthase|g__Staphylococcus.s__Staphylococcus_aureus	160.9992036582
+UniRef50_Q9GV41: Prostaglandin F synthase|unclassified	0.1596898014
+UniRef50_Q0C3I3: Translocator protein, LysE family	161.1473075408
+UniRef50_Q0C3I3: Translocator protein, LysE family|g__Rhodobacter.s__Rhodobacter_sphaeroides	161.1473075408
+UniRef50_F2LJU7: Glycogen debranching enzyme GlgX	161.1095985038
+UniRef50_F2LJU7: Glycogen debranching enzyme GlgX|g__Rhodobacter.s__Rhodobacter_sphaeroides	161.1095985038
+UniRef50_Q2LTM3: Phosphopantothenoylcysteine decarboxylase / phosphopantothenate--cysteine ligase	161.0498436471
+UniRef50_Q2LTM3: Phosphopantothenoylcysteine decarboxylase / phosphopantothenate--cysteine ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	83.9692553739
+UniRef50_Q2LTM3: Phosphopantothenoylcysteine decarboxylase / phosphopantothenate--cysteine ligase|g__Staphylococcus.s__Staphylococcus_aureus	77.0805882733
+UniRef50_Q73FJ4: Glutamine amidotransferase subunit PdxT	161.0026130926
+UniRef50_Q73FJ4: Glutamine amidotransferase subunit PdxT|g__Staphylococcus.s__Staphylococcus_aureus	160.9807530904
+UniRef50_Q73FJ4: Glutamine amidotransferase subunit PdxT|unclassified	0.0218600022
+UniRef50_Q67N11: Pseudouridine-5'-phosphate glycosidase	160.9013779953
+UniRef50_Q67N11: Pseudouridine-5'-phosphate glycosidase|g__Staphylococcus.s__Staphylococcus_aureus	160.9013779953
+UniRef50_Q9KZ75: Urocanate hydratase	160.8590860515
+UniRef50_Q9KZ75: Urocanate hydratase|g__Staphylococcus.s__Staphylococcus_aureus	145.8243241870
+UniRef50_Q9KZ75: Urocanate hydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0406919221
+UniRef50_Q9KZ75: Urocanate hydratase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6436018606
+UniRef50_Q9KZ75: Urocanate hydratase|g__Acinetobacter.s__Acinetobacter_baumannii	3.0871538268
+UniRef50_Q9KZ75: Urocanate hydratase|g__Deinococcus.s__Deinococcus_radiodurans	2.1056589607
+UniRef50_Q9KZ75: Urocanate hydratase|unclassified	0.1576552943
+UniRef50_Q3J1E7	160.8394241179
+UniRef50_Q3J1E7|g__Rhodobacter.s__Rhodobacter_sphaeroides	160.8394241179
+UniRef50_K0LK11: ABC transporter, ATP-binding protein	160.7245561377
+UniRef50_K0LK11: ABC transporter, ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	80.5834386736
+UniRef50_K0LK11: ABC transporter, ATP-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	80.1411174641
+UniRef50_Q8EM59: Thymidine kinase	160.5460700306
+UniRef50_Q8EM59: Thymidine kinase|g__Staphylococcus.s__Staphylococcus_aureus	160.3661538418
+UniRef50_Q8EM59: Thymidine kinase|unclassified	0.1799161888
+UniRef50_P0A0M5: Thymidylate synthase	160.4751388387
+UniRef50_P0A0M5: Thymidylate synthase|g__Staphylococcus.s__Staphylococcus_aureus	132.3558150112
+UniRef50_P0A0M5: Thymidylate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	27.6549118696
+UniRef50_P0A0M5: Thymidylate synthase|unclassified	0.4644119579
+UniRef50_O33518: Protein translocase subunit SecF	160.2027716007
+UniRef50_O33518: Protein translocase subunit SecF|g__Rhodobacter.s__Rhodobacter_sphaeroides	160.2027716007
+UniRef50_Q2YUL0: Putative thiaminase-2	160.1738447269
+UniRef50_Q2YUL0: Putative thiaminase-2|g__Staphylococcus.s__Staphylococcus_epidermidis	90.9225675858
+UniRef50_Q2YUL0: Putative thiaminase-2|g__Staphylococcus.s__Staphylococcus_aureus	69.2512771411
+UniRef50_F8F763	160.0849540439
+UniRef50_F8F763|g__Staphylococcus.s__Staphylococcus_epidermidis	97.8512573173
+UniRef50_F8F763|g__Staphylococcus.s__Staphylococcus_aureus	62.2336967266
+UniRef50_Q5HQF1: Membrane protein, putative	160.0820296775
+UniRef50_Q5HQF1: Membrane protein, putative|g__Staphylococcus.s__Staphylococcus_aureus	86.4215208573
+UniRef50_Q5HQF1: Membrane protein, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	73.6605088202
+UniRef50_P0A067: Signal peptidase IB	160.0487213487
+UniRef50_P0A067: Signal peptidase IB|g__Staphylococcus.s__Staphylococcus_epidermidis	110.9425740555
+UniRef50_P0A067: Signal peptidase IB|g__Staphylococcus.s__Staphylococcus_aureus	46.4111245866
+UniRef50_P0A067: Signal peptidase IB|unclassified	2.6950227065
+UniRef50_I4E1R6	160.0374124346
+UniRef50_I4E1R6|g__Staphylococcus.s__Staphylococcus_aureus	157.2898383327
+UniRef50_I4E1R6|g__Streptococcus.s__Streptococcus_agalactiae	2.6578084824
+UniRef50_I4E1R6|unclassified	0.0897656195
+UniRef50_Q52881: Chemotaxis protein CheW	159.9540519715
+UniRef50_Q52881: Chemotaxis protein CheW|g__Rhodobacter.s__Rhodobacter_sphaeroides	159.9540519715
+UniRef50_Q8CSV4	159.9511216922
+UniRef50_Q8CSV4|g__Staphylococcus.s__Staphylococcus_epidermidis	77.6244853513
+UniRef50_Q8CSV4|g__Staphylococcus.s__Staphylococcus_aureus	76.9589385992
+UniRef50_Q8CSV4|g__Streptococcus.s__Streptococcus_agalactiae	5.3676977417
+UniRef50_L7WXI7: CorA-like Mg2+ transporter protein	159.9261114105
+UniRef50_L7WXI7: CorA-like Mg2+ transporter protein|g__Staphylococcus.s__Staphylococcus_aureus	89.3490723450
+UniRef50_L7WXI7: CorA-like Mg2+ transporter protein|g__Staphylococcus.s__Staphylococcus_epidermidis	70.5770390655
+UniRef50_Q4L3C7: Transcription activator of glutamate synthase operon	159.9079287205
+UniRef50_Q4L3C7: Transcription activator of glutamate synthase operon|g__Staphylococcus.s__Staphylococcus_aureus	82.2189559981
+UniRef50_Q4L3C7: Transcription activator of glutamate synthase operon|g__Staphylococcus.s__Staphylococcus_epidermidis	77.6889727224
+UniRef50_A5IW30	159.8465914965
+UniRef50_A5IW30|g__Staphylococcus.s__Staphylococcus_aureus	159.8465914965
+UniRef50_Q4L7K3: UPF0421 protein SH1063	159.8304778613
+UniRef50_Q4L7K3: UPF0421 protein SH1063|g__Staphylococcus.s__Staphylococcus_aureus	103.5874214889
+UniRef50_Q4L7K3: UPF0421 protein SH1063|g__Staphylococcus.s__Staphylococcus_epidermidis	56.2430563724
+UniRef50_B5F1C1: HTH-type transcriptional regulator IscR	159.8131545201
+UniRef50_B5F1C1: HTH-type transcriptional regulator IscR|g__Escherichia.s__Escherichia_coli	159.8131545201
+UniRef50_Q9RQP9: Poly-beta-1,6-N-acetyl-D-glucosamine synthase	159.7952498420
+UniRef50_Q9RQP9: Poly-beta-1,6-N-acetyl-D-glucosamine synthase|g__Staphylococcus.s__Staphylococcus_aureus	159.7952498420
+UniRef50_D3QHG0: Phosphonate ABC transporter permease protein phnE1	159.5938130169
+UniRef50_D3QHG0: Phosphonate ABC transporter permease protein phnE1|g__Staphylococcus.s__Staphylococcus_aureus	88.8093807767
+UniRef50_D3QHG0: Phosphonate ABC transporter permease protein phnE1|g__Staphylococcus.s__Staphylococcus_epidermidis	70.7844322402
+UniRef50_Q2FIS2: Lipoteichoic acid synthase	159.5864963680
+UniRef50_Q2FIS2: Lipoteichoic acid synthase|g__Staphylococcus.s__Staphylococcus_aureus	82.1206266008
+UniRef50_Q2FIS2: Lipoteichoic acid synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	77.4658697672
+UniRef50_U5UJE9	159.4763006600
+UniRef50_U5UJE9|g__Staphylococcus.s__Staphylococcus_aureus	84.0114116561
+UniRef50_U5UJE9|g__Staphylococcus.s__Staphylococcus_epidermidis	75.4648890040
+UniRef50_Q49Y24: Heat-inducible transcription repressor HrcA	159.4628575746
+UniRef50_Q49Y24: Heat-inducible transcription repressor HrcA|g__Staphylococcus.s__Staphylococcus_epidermidis	83.0866753269
+UniRef50_Q49Y24: Heat-inducible transcription repressor HrcA|g__Staphylococcus.s__Staphylococcus_aureus	76.3761822477
+UniRef50_C7NA19: Ribonucleoside-diphosphate reductase subunit beta	159.4436981058
+UniRef50_C7NA19: Ribonucleoside-diphosphate reductase subunit beta|g__Staphylococcus.s__Staphylococcus_aureus	84.6139342978
+UniRef50_C7NA19: Ribonucleoside-diphosphate reductase subunit beta|g__Staphylococcus.s__Staphylococcus_epidermidis	74.8297638081
+UniRef50_Q8DVN1	159.4164224148
+UniRef50_Q8DVN1|g__Streptococcus.s__Streptococcus_mutans	159.4164224148
+UniRef50_Q3IV40	159.2588685461
+UniRef50_Q3IV40|g__Rhodobacter.s__Rhodobacter_sphaeroides	154.1341519928
+UniRef50_Q3IV40|unclassified	5.1247165533
+UniRef50_A0A036LTT5	159.2225468172
+UniRef50_A0A036LTT5|g__Staphylococcus.s__Staphylococcus_epidermidis	94.6935650321
+UniRef50_A0A036LTT5|unclassified	64.5289817851
+UniRef50_L7WZD3: Dihydrolipoyl dehydrogenase	159.2222885849
+UniRef50_L7WZD3: Dihydrolipoyl dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	84.3639045196
+UniRef50_L7WZD3: Dihydrolipoyl dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	74.8583840653
+UniRef50_Q5HNL5: Formamidopyrimidine-DNA glycosylase	159.1861867427
+UniRef50_Q5HNL5: Formamidopyrimidine-DNA glycosylase|g__Staphylococcus.s__Staphylococcus_epidermidis	104.4053134794
+UniRef50_Q5HNL5: Formamidopyrimidine-DNA glycosylase|g__Staphylococcus.s__Staphylococcus_aureus	54.7808732633
+UniRef50_L7WZG7: BirA bifunctional protein	159.1303491806
+UniRef50_L7WZG7: BirA bifunctional protein|g__Staphylococcus.s__Staphylococcus_epidermidis	99.2572472244
+UniRef50_L7WZG7: BirA bifunctional protein|g__Staphylococcus.s__Staphylococcus_aureus	59.8731019562
+UniRef50_Q2FUW5: Accessory Sec system protein Asp3	159.1090842185
+UniRef50_Q2FUW5: Accessory Sec system protein Asp3|g__Staphylococcus.s__Staphylococcus_aureus	159.1090842185
+UniRef50_I0C1G6	158.9550557598
+UniRef50_I0C1G6|g__Staphylococcus.s__Staphylococcus_aureus	157.7645795693
+UniRef50_I0C1G6|g__Streptococcus.s__Streptococcus_agalactiae	1.1904761905
+UniRef50_Q2FWQ0: Anti repressor	158.8891957048
+UniRef50_Q2FWQ0: Anti repressor|g__Staphylococcus.s__Staphylococcus_aureus	158.8891957048
+UniRef50_Q6GIG7: Probable nitronate monooxygenase	158.8857754412
+UniRef50_Q6GIG7: Probable nitronate monooxygenase|g__Staphylococcus.s__Staphylococcus_aureus	158.2268229027
+UniRef50_Q6GIG7: Probable nitronate monooxygenase|unclassified	0.6589525385
+UniRef50_D2N524	158.8782493425
+UniRef50_D2N524|g__Staphylococcus.s__Staphylococcus_aureus	82.7814442998
+UniRef50_D2N524|g__Staphylococcus.s__Staphylococcus_epidermidis	76.0968050427
+UniRef50_C5N0D9: Glyoxalase family protein	158.7825941823
+UniRef50_C5N0D9: Glyoxalase family protein|g__Staphylococcus.s__Staphylococcus_aureus	158.7825941823
+UniRef50_E5QQY5: Magnesium transporter	158.6419805112
+UniRef50_E5QQY5: Magnesium transporter|g__Staphylococcus.s__Staphylococcus_aureus	89.0613562464
+UniRef50_E5QQY5: Magnesium transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	69.5806242648
+UniRef50_Q5HH10: Phosphoribosylamine--glycine ligase	158.6233171490
+UniRef50_Q5HH10: Phosphoribosylamine--glycine ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	79.3830271818
+UniRef50_Q5HH10: Phosphoribosylamine--glycine ligase|g__Staphylococcus.s__Staphylococcus_aureus	79.2402899672
+UniRef50_A6QI12	158.5942958766
+UniRef50_A6QI12|g__Staphylococcus.s__Staphylococcus_epidermidis	83.6691239395
+UniRef50_A6QI12|g__Staphylococcus.s__Staphylococcus_aureus	74.9251719371
+UniRef50_B9DNV1: 3-dehydroquinate synthase	158.5347515537
+UniRef50_B9DNV1: 3-dehydroquinate synthase|g__Staphylococcus.s__Staphylococcus_aureus	81.0958172604
+UniRef50_B9DNV1: 3-dehydroquinate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	77.4389342933
+UniRef50_B1AJD3: Glycine--tRNA ligase	158.4448915259
+UniRef50_B1AJD3: Glycine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	91.9757920086
+UniRef50_B1AJD3: Glycine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	66.4690995173
+UniRef50_A3PSC3: Exopolysaccharide synthesis, ExoD	158.4394776042
+UniRef50_A3PSC3: Exopolysaccharide synthesis, ExoD|g__Rhodobacter.s__Rhodobacter_sphaeroides	158.0570743616
+UniRef50_A3PSC3: Exopolysaccharide synthesis, ExoD|unclassified	0.3824032427
+UniRef50_Q6GIU7: Quinolone resistance protein NorA	158.4354932291
+UniRef50_Q6GIU7: Quinolone resistance protein NorA|g__Staphylococcus.s__Staphylococcus_aureus	92.1775162134
+UniRef50_Q6GIU7: Quinolone resistance protein NorA|g__Staphylococcus.s__Staphylococcus_epidermidis	66.2579770157
+UniRef50_P21881: Pyruvate dehydrogenase E1 component subunit alpha	158.3912594772
+UniRef50_P21881: Pyruvate dehydrogenase E1 component subunit alpha|g__Staphylococcus.s__Staphylococcus_aureus	92.8654821753
+UniRef50_P21881: Pyruvate dehydrogenase E1 component subunit alpha|g__Staphylococcus.s__Staphylococcus_epidermidis	65.5257773019
+UniRef50_Q2FXB1: Leucotoxin LukDv	158.3196673431
+UniRef50_Q2FXB1: Leucotoxin LukDv|g__Staphylococcus.s__Staphylococcus_aureus	158.3196673431
+UniRef50_Q7BHL7: Regulatory protein MsrR	158.2941823849
+UniRef50_Q7BHL7: Regulatory protein MsrR|g__Staphylococcus.s__Staphylococcus_epidermidis	89.6732721474
+UniRef50_Q7BHL7: Regulatory protein MsrR|g__Staphylococcus.s__Staphylococcus_aureus	68.6209102375
+UniRef50_Q6GI75: Enoyl-[acyl-carrier-protein] reductase [NADPH] FabI	158.2296046167
+UniRef50_Q6GI75: Enoyl-[acyl-carrier-protein] reductase [NADPH] FabI|g__Staphylococcus.s__Staphylococcus_epidermidis	86.1382545100
+UniRef50_Q6GI75: Enoyl-[acyl-carrier-protein] reductase [NADPH] FabI|g__Staphylococcus.s__Staphylococcus_aureus	72.0400299233
+UniRef50_Q6GI75: Enoyl-[acyl-carrier-protein] reductase [NADPH] FabI|unclassified	0.0513201834
+UniRef50_P97030: Epoxyqueuosine reductase	158.1674451960
+UniRef50_P97030: Epoxyqueuosine reductase|g__Staphylococcus.s__Staphylococcus_aureus	86.0007779335
+UniRef50_P97030: Epoxyqueuosine reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	72.1666672624
+UniRef50_Q5HLY0: Probable molybdenum cofactor guanylyltransferase	158.0923695706
+UniRef50_Q5HLY0: Probable molybdenum cofactor guanylyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	85.6104940743
+UniRef50_Q5HLY0: Probable molybdenum cofactor guanylyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	70.6175435571
+UniRef50_Q5HLY0: Probable molybdenum cofactor guanylyltransferase|unclassified	1.8643319392
+UniRef50_P22825: PTS system sucrose-specific EIIBC component	158.0773853951
+UniRef50_P22825: PTS system sucrose-specific EIIBC component|g__Staphylococcus.s__Staphylococcus_aureus	110.3876093647
+UniRef50_P22825: PTS system sucrose-specific EIIBC component|g__Staphylococcus.s__Staphylococcus_epidermidis	47.6897760303
+UniRef50_T1Y5U5: ABC transporter permease protein	158.0626478944
+UniRef50_T1Y5U5: ABC transporter permease protein|g__Staphylococcus.s__Staphylococcus_aureus	106.0279582969
+UniRef50_T1Y5U5: ABC transporter permease protein|g__Staphylococcus.s__Staphylococcus_epidermidis	52.0346895976
+UniRef50_I4K2W0	158.0529653691
+UniRef50_I4K2W0|g__Pseudomonas.s__Pseudomonas_aeruginosa	157.2893813782
+UniRef50_I4K2W0|unclassified	0.7635839908
+UniRef50_C6D5Z2: Inosine/uridine-preferring nucleoside hydrolase	158.0217366875
+UniRef50_C6D5Z2: Inosine/uridine-preferring nucleoside hydrolase|g__Staphylococcus.s__Staphylococcus_epidermidis	82.2636769820
+UniRef50_C6D5Z2: Inosine/uridine-preferring nucleoside hydrolase|g__Staphylococcus.s__Staphylococcus_aureus	75.7580597054
+UniRef50_D0K826: Ribose operon repressor, putative	158.0131337848
+UniRef50_D0K826: Ribose operon repressor, putative|g__Staphylococcus.s__Staphylococcus_aureus	158.0131337848
+UniRef50_U5NRH5	157.9967627223
+UniRef50_U5NRH5|g__Rhodobacter.s__Rhodobacter_sphaeroides	154.9103429692
+UniRef50_U5NRH5|unclassified	3.0864197531
+UniRef50_Q5HKH4: Peptide ABC transporter, permease protein, putative	157.9562252266
+UniRef50_Q5HKH4: Peptide ABC transporter, permease protein, putative|g__Staphylococcus.s__Staphylococcus_aureus	117.0703887002
+UniRef50_Q5HKH4: Peptide ABC transporter, permease protein, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	40.8858365263
+UniRef50_Q9K5Z9: L-lactate permease	157.9383020636
+UniRef50_Q9K5Z9: L-lactate permease|g__Staphylococcus.s__Staphylococcus_epidermidis	81.2932043567
+UniRef50_Q9K5Z9: L-lactate permease|g__Staphylococcus.s__Staphylococcus_aureus	76.6450977069
+UniRef50_B8D184: Undecaprenyl-phosphate galactose phosphotransferase	157.8890054077
+UniRef50_B8D184: Undecaprenyl-phosphate galactose phosphotransferase|g__Staphylococcus.s__Staphylococcus_aureus	157.8890054077
+UniRef50_D1BHZ8: Ribonucleoside-triphosphate reductase class III catalytic subunit	157.8622205295
+UniRef50_D1BHZ8: Ribonucleoside-triphosphate reductase class III catalytic subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	85.7626597449
+UniRef50_D1BHZ8: Ribonucleoside-triphosphate reductase class III catalytic subunit|g__Streptococcus.s__Streptococcus_mutans	69.4017820182
+UniRef50_D1BHZ8: Ribonucleoside-triphosphate reductase class III catalytic subunit|g__Streptococcus.s__Streptococcus_agalactiae	2.1409858934
+UniRef50_D1BHZ8: Ribonucleoside-triphosphate reductase class III catalytic subunit|g__Staphylococcus.s__Staphylococcus_aureus	0.5567928731
+UniRef50_Q3J3X8	157.8055008884
+UniRef50_Q3J3X8|g__Rhodobacter.s__Rhodobacter_sphaeroides	157.8055008884
+UniRef50_U5NRR7	157.8000784049
+UniRef50_U5NRR7|g__Rhodobacter.s__Rhodobacter_sphaeroides	106.3597202833
+UniRef50_U5NRR7|unclassified	51.4403581216
+UniRef50_Q2FYR1: Aminoacyltransferase FemB	157.6583586902
+UniRef50_Q2FYR1: Aminoacyltransferase FemB|g__Staphylococcus.s__Staphylococcus_epidermidis	101.8824632516
+UniRef50_Q2FYR1: Aminoacyltransferase FemB|g__Staphylococcus.s__Staphylococcus_aureus	55.7758954386
+UniRef50_Q49WP2	157.6276994330
+UniRef50_Q49WP2|g__Staphylococcus.s__Staphylococcus_aureus	117.3118900399
+UniRef50_Q49WP2|g__Staphylococcus.s__Staphylococcus_epidermidis	40.3158093932
+UniRef50_I2DKJ5: Urea ABC transporter, urea binding protein	157.6101225617
+UniRef50_I2DKJ5: Urea ABC transporter, urea binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	152.6748352457
+UniRef50_I2DKJ5: Urea ABC transporter, urea binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9352873160
+UniRef50_A3PS70: YD repeat protein	157.5903294016
+UniRef50_A3PS70: YD repeat protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	157.5903294016
+UniRef50_Q5HPD3	157.5060696315
+UniRef50_Q5HPD3|g__Staphylococcus.s__Staphylococcus_epidermidis	81.7625082271
+UniRef50_Q5HPD3|g__Staphylococcus.s__Staphylococcus_aureus	75.7435614044
+UniRef50_O32090: Nicotinate phosphoribosyltransferase	157.4984765096
+UniRef50_O32090: Nicotinate phosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	112.0880446669
+UniRef50_O32090: Nicotinate phosphoribosyltransferase|g__Streptococcus.s__Streptococcus_mutans	44.7723178270
+UniRef50_O32090: Nicotinate phosphoribosyltransferase|unclassified	0.6381140157
+UniRef50_A6QEY2	157.4909226398
+UniRef50_A6QEY2|g__Staphylococcus.s__Staphylococcus_aureus	78.9972688810
+UniRef50_A6QEY2|g__Staphylococcus.s__Staphylococcus_epidermidis	78.4936537588
+UniRef50_Q8CTJ5	157.4663069989
+UniRef50_Q8CTJ5|g__Staphylococcus.s__Staphylococcus_aureus	80.8713955853
+UniRef50_Q8CTJ5|g__Staphylococcus.s__Staphylococcus_epidermidis	76.5949114135
+UniRef50_V4QJE1	157.4105997667
+UniRef50_V4QJE1|g__Rhodobacter.s__Rhodobacter_sphaeroides	157.4105997667
+UniRef50_I0C5L3: Integral membrane protein	157.4100308239
+UniRef50_I0C5L3: Integral membrane protein|g__Staphylococcus.s__Staphylococcus_aureus	85.9179502870
+UniRef50_I0C5L3: Integral membrane protein|g__Staphylococcus.s__Staphylococcus_epidermidis	71.4920805369
+UniRef50_Q3J223: Putative phage major capsid protein, gp36	157.3986087010
+UniRef50_Q3J223: Putative phage major capsid protein, gp36|g__Rhodobacter.s__Rhodobacter_sphaeroides	96.8323488014
+UniRef50_Q3J223: Putative phage major capsid protein, gp36|unclassified	60.5662598996
+UniRef50_Q49YR8: Regulatory protein RecX	157.3237335800
+UniRef50_Q49YR8: Regulatory protein RecX|g__Staphylococcus.s__Staphylococcus_aureus	81.2707609780
+UniRef50_Q49YR8: Regulatory protein RecX|g__Staphylococcus.s__Staphylococcus_epidermidis	76.0529726020
+UniRef50_Q3IV75: RES domain-containing protein	157.2182973404
+UniRef50_Q3IV75: RES domain-containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	156.6461984000
+UniRef50_Q3IV75: RES domain-containing protein|unclassified	0.5720989405
+UniRef50_Q5HMZ8: ABC transporter, ATP-binding protein	157.1697078739
+UniRef50_Q5HMZ8: ABC transporter, ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	85.9010957700
+UniRef50_Q5HMZ8: ABC transporter, ATP-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	71.2686121039
+UniRef50_I0C4F0: GTPases (Dynamin-related)	157.1449372308
+UniRef50_I0C4F0: GTPases (Dynamin-related)|g__Staphylococcus.s__Staphylococcus_epidermidis	79.9544287343
+UniRef50_I0C4F0: GTPases (Dynamin-related)|g__Staphylococcus.s__Staphylococcus_aureus	77.1905084964
+UniRef50_D3QDT5: Duplicated ATPase component YkoD of energizing module of thiamin-regulated ECF transporter for HydroxyMethylPyrimidine	157.1346703222
+UniRef50_D3QDT5: Duplicated ATPase component YkoD of energizing module of thiamin-regulated ECF transporter for HydroxyMethylPyrimidine|g__Staphylococcus.s__Staphylococcus_aureus	79.9970865345
+UniRef50_D3QDT5: Duplicated ATPase component YkoD of energizing module of thiamin-regulated ECF transporter for HydroxyMethylPyrimidine|g__Staphylococcus.s__Staphylococcus_epidermidis	77.1375837877
+UniRef50_Q9ZH99: Isocitrate dehydrogenase [NADP]	157.1335012241
+UniRef50_Q9ZH99: Isocitrate dehydrogenase [NADP]|g__Streptococcus.s__Streptococcus_mutans	77.7743827611
+UniRef50_Q9ZH99: Isocitrate dehydrogenase [NADP]|g__Escherichia.s__Escherichia_coli	67.3817724976
+UniRef50_Q9ZH99: Isocitrate dehydrogenase [NADP]|g__Staphylococcus.s__Staphylococcus_aureus	6.2251185211
+UniRef50_Q9ZH99: Isocitrate dehydrogenase [NADP]|g__Acinetobacter.s__Acinetobacter_baumannii	3.0273021740
+UniRef50_Q9ZH99: Isocitrate dehydrogenase [NADP]|g__Helicobacter.s__Helicobacter_pylori	1.5987991441
+UniRef50_Q9ZH99: Isocitrate dehydrogenase [NADP]|g__Deinococcus.s__Deinococcus_radiodurans	1.1261261261
+UniRef50_G8V6N7: Biotin-requiring enzyme family protein	157.1284032670
+UniRef50_G8V6N7: Biotin-requiring enzyme family protein|g__Staphylococcus.s__Staphylococcus_aureus	89.8958602359
+UniRef50_G8V6N7: Biotin-requiring enzyme family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	67.2325430311
+UniRef50_Q6GHK8: ATP-dependent DNA helicase RecG	157.0864069947
+UniRef50_Q6GHK8: ATP-dependent DNA helicase RecG|g__Staphylococcus.s__Staphylococcus_epidermidis	79.3952471552
+UniRef50_Q6GHK8: ATP-dependent DNA helicase RecG|g__Staphylococcus.s__Staphylococcus_aureus	77.4308527203
+UniRef50_Q6GHK8: ATP-dependent DNA helicase RecG|unclassified	0.2603071193
+UniRef50_Q8CNU1: Riboflavin synthase alpha chain	156.9896005914
+UniRef50_Q8CNU1: Riboflavin synthase alpha chain|g__Staphylococcus.s__Staphylococcus_epidermidis	102.5570360076
+UniRef50_Q8CNU1: Riboflavin synthase alpha chain|g__Staphylococcus.s__Staphylococcus_aureus	54.4325645838
+UniRef50_D3QIX9	156.9696864557
+UniRef50_D3QIX9|g__Staphylococcus.s__Staphylococcus_epidermidis	81.3605228356
+UniRef50_D3QIX9|g__Staphylococcus.s__Staphylococcus_aureus	75.6091636200
+UniRef50_C5N6E7: Hydrolase, haloacid dehalogenase-like family protein	156.8455950211
+UniRef50_C5N6E7: Hydrolase, haloacid dehalogenase-like family protein|g__Staphylococcus.s__Staphylococcus_aureus	80.2210950800
+UniRef50_C5N6E7: Hydrolase, haloacid dehalogenase-like family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	76.6244999411
+UniRef50_B2GKX1: O-acetylhomoserine (Thiol)-lyase	156.6851821693
+UniRef50_B2GKX1: O-acetylhomoserine (Thiol)-lyase|g__Rhodobacter.s__Rhodobacter_sphaeroides	115.5161154419
+UniRef50_B2GKX1: O-acetylhomoserine (Thiol)-lyase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	41.1690667275
+UniRef50_Q3J217: Putative Endonuclease	156.6504318960
+UniRef50_Q3J217: Putative Endonuclease|g__Rhodobacter.s__Rhodobacter_sphaeroides	156.6504318960
+UniRef50_P66840: Putative 5'(3')-deoxyribonucleotidase	156.4704179545
+UniRef50_P66840: Putative 5'(3')-deoxyribonucleotidase|g__Staphylococcus.s__Staphylococcus_aureus	82.2672515637
+UniRef50_P66840: Putative 5'(3')-deoxyribonucleotidase|g__Staphylococcus.s__Staphylococcus_epidermidis	73.4629132615
+UniRef50_P66840: Putative 5'(3')-deoxyribonucleotidase|unclassified	0.7402531293
+UniRef50_B0RVK4: Succinyl-CoA:3-ketoacid coenzyme A transferase subunit A	156.4460015916
+UniRef50_B0RVK4: Succinyl-CoA:3-ketoacid coenzyme A transferase subunit A|g__Rhodobacter.s__Rhodobacter_sphaeroides	152.8833615403
+UniRef50_B0RVK4: Succinyl-CoA:3-ketoacid coenzyme A transferase subunit A|unclassified	1.8235096166
+UniRef50_B0RVK4: Succinyl-CoA:3-ketoacid coenzyme A transferase subunit A|g__Deinococcus.s__Deinococcus_radiodurans	1.7391304348
+UniRef50_Q3IV29: Two component transcriptional regulator, LuxR family	156.4359762102
+UniRef50_Q3IV29: Two component transcriptional regulator, LuxR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	156.4359762102
+UniRef50_A7X1Y2: Homoserine kinase	156.3991867457
+UniRef50_A7X1Y2: Homoserine kinase|g__Staphylococcus.s__Staphylococcus_aureus	86.0990278998
+UniRef50_A7X1Y2: Homoserine kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	70.3001588459
+UniRef50_B9KV10	156.3827213463
+UniRef50_B9KV10|g__Rhodobacter.s__Rhodobacter_sphaeroides	156.3827213463
+UniRef50_D9RDU7: Glyoxalase/bleomycin resistance protein/dioxygenase superfamily protein	156.2840864725
+UniRef50_D9RDU7: Glyoxalase/bleomycin resistance protein/dioxygenase superfamily protein|g__Staphylococcus.s__Staphylococcus_aureus	120.3517353516
+UniRef50_D9RDU7: Glyoxalase/bleomycin resistance protein/dioxygenase superfamily protein|g__Staphylococcus.s__Staphylococcus_epidermidis	35.9323511209
+UniRef50_C5D8K3: Phosphopantetheine adenylyltransferase	156.1704015031
+UniRef50_C5D8K3: Phosphopantetheine adenylyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	90.5599984298
+UniRef50_C5D8K3: Phosphopantetheine adenylyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	65.4890409286
+UniRef50_C5D8K3: Phosphopantetheine adenylyltransferase|unclassified	0.1213621447
+UniRef50_F4FQW3: Recombinational DNA repair protein RecT	156.0962783801
+UniRef50_F4FQW3: Recombinational DNA repair protein RecT|g__Staphylococcus.s__Staphylococcus_aureus	146.3906968783
+UniRef50_F4FQW3: Recombinational DNA repair protein RecT|g__Staphylococcus.s__Staphylococcus_epidermidis	9.7055815018
+UniRef50_A6QIJ6	155.9415578211
+UniRef50_A6QIJ6|g__Staphylococcus.s__Staphylococcus_aureus	155.9415578211
+UniRef50_P0A2X7: Carbamate kinase 1	155.9118790880
+UniRef50_P0A2X7: Carbamate kinase 1|g__Staphylococcus.s__Staphylococcus_epidermidis	87.2025070257
+UniRef50_P0A2X7: Carbamate kinase 1|g__Streptococcus.s__Streptococcus_mutans	55.7008387747
+UniRef50_P0A2X7: Carbamate kinase 1|g__Streptococcus.s__Streptococcus_agalactiae	12.6221931354
+UniRef50_P0A2X7: Carbamate kinase 1|unclassified	0.3863401522
+UniRef50_Q6GBK7: Putative antiporter subunit mnhA2	155.8600711223
+UniRef50_Q6GBK7: Putative antiporter subunit mnhA2|g__Staphylococcus.s__Staphylococcus_aureus	78.5991060490
+UniRef50_Q6GBK7: Putative antiporter subunit mnhA2|g__Staphylococcus.s__Staphylococcus_epidermidis	77.2609650733
+UniRef50_I0C568: Cysteine desulfurase	155.8569700446
+UniRef50_I0C568: Cysteine desulfurase|g__Staphylococcus.s__Staphylococcus_epidermidis	81.0471119344
+UniRef50_I0C568: Cysteine desulfurase|g__Staphylococcus.s__Staphylococcus_aureus	74.8098581101
+UniRef50_P92514: Cytochrome c oxidase subunit 3	155.8457931646
+UniRef50_P92514: Cytochrome c oxidase subunit 3|g__Rhodobacter.s__Rhodobacter_sphaeroides	154.7486488931
+UniRef50_P92514: Cytochrome c oxidase subunit 3|unclassified	1.0971442715
+UniRef50_Q4L770: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	155.4143290487
+UniRef50_Q4L770: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	83.3727232086
+UniRef50_Q4L770: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	72.0416058401
+UniRef50_L7WZA3	155.3727141338
+UniRef50_L7WZA3|g__Staphylococcus.s__Staphylococcus_aureus	93.3372520664
+UniRef50_L7WZA3|g__Staphylococcus.s__Staphylococcus_epidermidis	62.0354620673
+UniRef50_U5UQ99: Peptidase M16 domain-containing protein	155.3602508941
+UniRef50_U5UQ99: Peptidase M16 domain-containing protein|g__Staphylococcus.s__Staphylococcus_epidermidis	81.3110931642
+UniRef50_U5UQ99: Peptidase M16 domain-containing protein|g__Staphylococcus.s__Staphylococcus_aureus	74.0491577299
+UniRef50_Q4L6M0: DNA repair protein RecN	155.3389423856
+UniRef50_Q4L6M0: DNA repair protein RecN|g__Staphylococcus.s__Staphylococcus_aureus	87.3754629115
+UniRef50_Q4L6M0: DNA repair protein RecN|g__Staphylococcus.s__Staphylococcus_epidermidis	67.9634794741
+UniRef50_W6RXA4: NAD-dependent epimerase/dehydratase	155.3352829783
+UniRef50_W6RXA4: NAD-dependent epimerase/dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	155.3352829783
+UniRef50_X5EJ50: PAP2 superfamily protein	155.2884597870
+UniRef50_X5EJ50: PAP2 superfamily protein|g__Staphylococcus.s__Staphylococcus_epidermidis	78.3052915622
+UniRef50_X5EJ50: PAP2 superfamily protein|g__Staphylococcus.s__Staphylococcus_aureus	76.9831682248
+UniRef50_Q5FUG4: 3-isopropylmalate dehydratase small subunit	155.1423775675
+UniRef50_Q5FUG4: 3-isopropylmalate dehydratase small subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	155.1423775675
+UniRef50_Q8CNT1: Integrase	155.1175455386
+UniRef50_Q8CNT1: Integrase|g__Staphylococcus.s__Staphylococcus_epidermidis	155.1175455386
+UniRef50_B9DK14: Homolog of FecCD transport family protein SstB	155.0962650634
+UniRef50_B9DK14: Homolog of FecCD transport family protein SstB|g__Staphylococcus.s__Staphylococcus_epidermidis	93.6894665019
+UniRef50_B9DK14: Homolog of FecCD transport family protein SstB|g__Staphylococcus.s__Staphylococcus_aureus	61.4067985615
+UniRef50_A5ITB1: Coproporphyrinogen III oxidase, anaerobic	154.9887197777
+UniRef50_A5ITB1: Coproporphyrinogen III oxidase, anaerobic|g__Staphylococcus.s__Staphylococcus_epidermidis	79.4610905057
+UniRef50_A5ITB1: Coproporphyrinogen III oxidase, anaerobic|g__Staphylococcus.s__Staphylococcus_aureus	75.5276292719
+UniRef50_U5UN27	154.9542844937
+UniRef50_U5UN27|g__Staphylococcus.s__Staphylococcus_epidermidis	108.7277072457
+UniRef50_U5UN27|g__Staphylococcus.s__Staphylococcus_aureus	46.2265772480
+UniRef50_T1YAK1: Phage protein	154.9117474991
+UniRef50_T1YAK1: Phage protein|g__Staphylococcus.s__Staphylococcus_aureus	154.9117474991
+UniRef50_C7ZU94: GCN5 N-acetyltransferase	154.8231837553
+UniRef50_C7ZU94: GCN5 N-acetyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	154.8231837553
+UniRef50_Q4A0J9: Urease accessory protein UreD	154.6953837647
+UniRef50_Q4A0J9: Urease accessory protein UreD|g__Staphylococcus.s__Staphylococcus_epidermidis	85.4903644897
+UniRef50_Q4A0J9: Urease accessory protein UreD|g__Staphylococcus.s__Staphylococcus_aureus	69.2050192750
+UniRef50_B0TH67: tRNA (guanine-N(1)-)-methyltransferase	154.6143577373
+UniRef50_B0TH67: tRNA (guanine-N(1)-)-methyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	80.6474713350
+UniRef50_B0TH67: tRNA (guanine-N(1)-)-methyltransferase|g__Streptococcus.s__Streptococcus_mutans	73.9051146766
+UniRef50_B0TH67: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0617717256
+UniRef50_Q5HQC2: Aminotransferase, class I	154.5428356235
+UniRef50_Q5HQC2: Aminotransferase, class I|g__Staphylococcus.s__Staphylococcus_aureus	86.9425898927
+UniRef50_Q5HQC2: Aminotransferase, class I|g__Staphylococcus.s__Staphylococcus_epidermidis	67.6002457308
+UniRef50_Q2FH66: Indole-3-glycerol phosphate synthase	154.5396523654
+UniRef50_Q2FH66: Indole-3-glycerol phosphate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	77.6023931374
+UniRef50_Q2FH66: Indole-3-glycerol phosphate synthase|g__Staphylococcus.s__Staphylococcus_aureus	76.9372592280
+UniRef50_A3PGE5	154.4742198704
+UniRef50_A3PGE5|g__Rhodobacter.s__Rhodobacter_sphaeroides	129.8246664284
+UniRef50_A3PGE5|unclassified	24.6495534420
+UniRef50_B9DNZ7: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase	154.4363080857
+UniRef50_B9DNZ7: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase|g__Staphylococcus.s__Staphylococcus_epidermidis	78.6794532701
+UniRef50_B9DNZ7: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase|g__Staphylococcus.s__Staphylococcus_aureus	75.7568548157
+UniRef50_B9DP24: 4-hydroxy-tetrahydrodipicolinate reductase	154.4324032371
+UniRef50_B9DP24: 4-hydroxy-tetrahydrodipicolinate reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	94.5583848026
+UniRef50_B9DP24: 4-hydroxy-tetrahydrodipicolinate reductase|g__Staphylococcus.s__Staphylococcus_aureus	58.3157000464
+UniRef50_B9DP24: 4-hydroxy-tetrahydrodipicolinate reductase|unclassified	1.5583183881
+UniRef50_A3PQ00	154.4247787611
+UniRef50_A3PQ00|g__Rhodobacter.s__Rhodobacter_sphaeroides	154.4247787611
+UniRef50_Q3IW29	154.3904776857
+UniRef50_Q3IW29|g__Rhodobacter.s__Rhodobacter_sphaeroides	154.3904776857
+UniRef50_C7ZRN4: Ferrichrome ABC transporter lipoprotein	154.3187525065
+UniRef50_C7ZRN4: Ferrichrome ABC transporter lipoprotein|g__Staphylococcus.s__Staphylococcus_epidermidis	77.2726627966
+UniRef50_C7ZRN4: Ferrichrome ABC transporter lipoprotein|g__Staphylococcus.s__Staphylococcus_aureus	76.5281459421
+UniRef50_C7ZRN4: Ferrichrome ABC transporter lipoprotein|unclassified	0.5179437678
+UniRef50_A7X1N2: GTP-sensing transcriptional pleiotropic repressor CodY	154.1237298421
+UniRef50_A7X1N2: GTP-sensing transcriptional pleiotropic repressor CodY|g__Staphylococcus.s__Staphylococcus_epidermidis	86.4429388346
+UniRef50_A7X1N2: GTP-sensing transcriptional pleiotropic repressor CodY|g__Staphylococcus.s__Staphylococcus_aureus	67.6807910075
+UniRef50_I0C1U2: Trehalose operon transcriptional repressor	154.0863888630
+UniRef50_I0C1U2: Trehalose operon transcriptional repressor|g__Staphylococcus.s__Staphylococcus_aureus	154.0863888630
+UniRef50_Q49W05	154.0397906774
+UniRef50_Q49W05|g__Staphylococcus.s__Staphylococcus_epidermidis	154.0397906774
+UniRef50_Q8CUD3: Resolvase	153.9889075604
+UniRef50_Q8CUD3: Resolvase|g__Staphylococcus.s__Staphylococcus_epidermidis	141.2652759147
+UniRef50_Q8CUD3: Resolvase|g__Staphylococcus.s__Staphylococcus_aureus	12.7236316457
+UniRef50_D3E6A1: Respiratory nitrate reductase, gamma subunit	153.8568965144
+UniRef50_D3E6A1: Respiratory nitrate reductase, gamma subunit|g__Staphylococcus.s__Staphylococcus_aureus	153.8568965144
+UniRef50_Q74I98: tRNA (guanine-N(7)-)-methyltransferase	153.8460518785
+UniRef50_Q74I98: tRNA (guanine-N(7)-)-methyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	90.4245629928
+UniRef50_Q74I98: tRNA (guanine-N(7)-)-methyltransferase|g__Streptococcus.s__Streptococcus_mutans	59.9283638800
+UniRef50_Q74I98: tRNA (guanine-N(7)-)-methyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	3.4931250057
+UniRef50_A5IVI2: GCN5-related N-acetyltransferase	153.8281384923
+UniRef50_A5IVI2: GCN5-related N-acetyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	110.8637359239
+UniRef50_A5IVI2: GCN5-related N-acetyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	42.9644025685
+UniRef50_Q5WCN5: Sorbitol dehydrogenase	153.7473168786
+UniRef50_Q5WCN5: Sorbitol dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	153.7473168786
+UniRef50_H3YNY8: Penicillin-binding protein, transpeptidase domain protein	153.6393545418
+UniRef50_H3YNY8: Penicillin-binding protein, transpeptidase domain protein|g__Staphylococcus.s__Staphylococcus_aureus	79.8779592167
+UniRef50_H3YNY8: Penicillin-binding protein, transpeptidase domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	73.7613953252
+UniRef50_D8HEB7	153.5359816486
+UniRef50_D8HEB7|g__Staphylococcus.s__Staphylococcus_aureus	153.5359816486
+UniRef50_A1SNL2: 30S ribosomal protein S3	153.3117757490
+UniRef50_A1SNL2: 30S ribosomal protein S3|g__Rhodobacter.s__Rhodobacter_sphaeroides	153.3117757490
+UniRef50_Q2FH43: 4-hydroxy-tetrahydrodipicolinate synthase	153.3054047288
+UniRef50_Q2FH43: 4-hydroxy-tetrahydrodipicolinate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	80.7820343381
+UniRef50_Q2FH43: 4-hydroxy-tetrahydrodipicolinate synthase|g__Staphylococcus.s__Staphylococcus_aureus	72.1239213362
+UniRef50_Q2FH43: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.3994490545
+UniRef50_D3QCP0	153.1860089224
+UniRef50_D3QCP0|g__Staphylococcus.s__Staphylococcus_aureus	83.3845474229
+UniRef50_D3QCP0|g__Staphylococcus.s__Staphylococcus_epidermidis	69.8014614995
+UniRef50_Q49WD6: NAD kinase	153.1318759597
+UniRef50_Q49WD6: NAD kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	81.3357907540
+UniRef50_Q49WD6: NAD kinase|g__Staphylococcus.s__Staphylococcus_aureus	71.7960852057
+UniRef50_D3QGS2	152.9750263418
+UniRef50_D3QGS2|g__Staphylococcus.s__Staphylococcus_epidermidis	89.1940320558
+UniRef50_D3QGS2|g__Staphylococcus.s__Staphylococcus_aureus	63.7809942860
+UniRef50_Q8CQW7	152.9673590504
+UniRef50_Q8CQW7|g__Staphylococcus.s__Staphylococcus_epidermidis	152.9673590504
+UniRef50_A7X1H8: Probable dual-specificity RNA methyltransferase RlmN	152.9027245397
+UniRef50_A7X1H8: Probable dual-specificity RNA methyltransferase RlmN|g__Staphylococcus.s__Staphylococcus_epidermidis	80.2483487905
+UniRef50_A7X1H8: Probable dual-specificity RNA methyltransferase RlmN|g__Staphylococcus.s__Staphylococcus_aureus	72.5500902591
+UniRef50_A7X1H8: Probable dual-specificity RNA methyltransferase RlmN|unclassified	0.1042854902
+UniRef50_Q49YF9: PTS system N-acetylglucosamine-specific IIBC component	152.8635149580
+UniRef50_Q49YF9: PTS system N-acetylglucosamine-specific IIBC component|g__Staphylococcus.s__Staphylococcus_aureus	81.3045512170
+UniRef50_Q49YF9: PTS system N-acetylglucosamine-specific IIBC component|g__Staphylococcus.s__Staphylococcus_epidermidis	71.5589637410
+UniRef50_Q5HNY9: Putative GTP cyclohydrolase 1 type 2	152.8290559722
+UniRef50_Q5HNY9: Putative GTP cyclohydrolase 1 type 2|g__Staphylococcus.s__Staphylococcus_aureus	76.4974152886
+UniRef50_Q5HNY9: Putative GTP cyclohydrolase 1 type 2|g__Staphylococcus.s__Staphylococcus_epidermidis	76.3316406835
+UniRef50_I0C313: Hydrolase (HAD superfamily)	152.8121197906
+UniRef50_I0C313: Hydrolase (HAD superfamily)|g__Staphylococcus.s__Staphylococcus_epidermidis	86.1589282886
+UniRef50_I0C313: Hydrolase (HAD superfamily)|g__Staphylococcus.s__Staphylococcus_aureus	66.6531915021
+UniRef50_Q6G960: Ribonuclease Z	152.8059894871
+UniRef50_Q6G960: Ribonuclease Z|g__Staphylococcus.s__Staphylococcus_aureus	82.4975838210
+UniRef50_Q6G960: Ribonuclease Z|g__Staphylococcus.s__Staphylococcus_epidermidis	70.3084056661
+UniRef50_A3PJF7: Ribosome-recycling factor	152.7617742012
+UniRef50_A3PJF7: Ribosome-recycling factor|g__Rhodobacter.s__Rhodobacter_sphaeroides	152.7617742012
+UniRef50_X5EJB2: DNA polymerase III, delta subunit	152.7525041692
+UniRef50_X5EJB2: DNA polymerase III, delta subunit|g__Staphylococcus.s__Staphylococcus_aureus	85.6376612016
+UniRef50_X5EJB2: DNA polymerase III, delta subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	67.1148429676
+UniRef50_C5N425	152.7369089116
+UniRef50_C5N425|g__Staphylococcus.s__Staphylococcus_epidermidis	93.1359955725
+UniRef50_C5N425|g__Staphylococcus.s__Staphylococcus_aureus	59.6009133391
+UniRef50_D3EJ05: Cytochrome bd-type ubiquinol oxidase subunit II	152.6566715224
+UniRef50_D3EJ05: Cytochrome bd-type ubiquinol oxidase subunit II|g__Staphylococcus.s__Staphylococcus_epidermidis	76.9610211563
+UniRef50_D3EJ05: Cytochrome bd-type ubiquinol oxidase subunit II|g__Staphylococcus.s__Staphylococcus_aureus	75.6956503661
+UniRef50_A6QJ17: Iron compound ABC transporter, permease protein	152.5764270445
+UniRef50_A6QJ17: Iron compound ABC transporter, permease protein|g__Staphylococcus.s__Staphylococcus_epidermidis	77.2749216444
+UniRef50_A6QJ17: Iron compound ABC transporter, permease protein|g__Staphylococcus.s__Staphylococcus_aureus	75.3015054000
+UniRef50_Q4L7J6: Sensor protein VraS	152.5526401868
+UniRef50_Q4L7J6: Sensor protein VraS|g__Staphylococcus.s__Staphylococcus_epidermidis	85.7820432282
+UniRef50_Q4L7J6: Sensor protein VraS|g__Staphylococcus.s__Staphylococcus_aureus	65.8340026633
+UniRef50_Q4L7J6: Sensor protein VraS|unclassified	0.9365942954
+UniRef50_Q2FZK3: Protein FmtA	152.5132589839
+UniRef50_Q2FZK3: Protein FmtA|g__Staphylococcus.s__Staphylococcus_aureus	79.7912633937
+UniRef50_Q2FZK3: Protein FmtA|g__Staphylococcus.s__Staphylococcus_epidermidis	72.7219955902
+UniRef50_Q3HKG9	152.4642087295
+UniRef50_Q3HKG9|g__Rhodobacter.s__Rhodobacter_sphaeroides	152.4642087295
+UniRef50_A4WNY6: ATP synthase subunit a	152.4432653939
+UniRef50_A4WNY6: ATP synthase subunit a|g__Rhodobacter.s__Rhodobacter_sphaeroides	152.4432653939
+UniRef50_E1VCL4: ABC-type transport system permease protein	152.4182850323
+UniRef50_E1VCL4: ABC-type transport system permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	152.4182850323
+UniRef50_D7A4H7: ABC transporter related protein	152.3579662805
+UniRef50_D7A4H7: ABC transporter related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	152.3579662805
+UniRef50_D6SE14: 4'-phosphopantetheinyl transferase family protein	152.3032555444
+UniRef50_D6SE14: 4'-phosphopantetheinyl transferase family protein|g__Staphylococcus.s__Staphylococcus_aureus	152.3032555444
+UniRef50_U6BC07: Aconitate hydratase	152.2869074901
+UniRef50_U6BC07: Aconitate hydratase|g__Staphylococcus.s__Staphylococcus_aureus	78.4858606924
+UniRef50_U6BC07: Aconitate hydratase|g__Staphylococcus.s__Staphylococcus_epidermidis	73.8010467977
+UniRef50_Q8CN46: Para-nitrobenzyl esterase chain A	152.1570280874
+UniRef50_Q8CN46: Para-nitrobenzyl esterase chain A|g__Staphylococcus.s__Staphylococcus_aureus	90.7340492742
+UniRef50_Q8CN46: Para-nitrobenzyl esterase chain A|g__Staphylococcus.s__Staphylococcus_epidermidis	61.4229788132
+UniRef50_T1Y9W9: Regulator of kinase autophosphorylation inhibitor	152.1462726891
+UniRef50_T1Y9W9: Regulator of kinase autophosphorylation inhibitor|g__Staphylococcus.s__Staphylococcus_epidermidis	84.6083590617
+UniRef50_T1Y9W9: Regulator of kinase autophosphorylation inhibitor|g__Staphylococcus.s__Staphylococcus_aureus	67.5379136274
+UniRef50_Q13SP0: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG	152.1155385396
+UniRef50_Q13SP0: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG|g__Staphylococcus.s__Staphylococcus_aureus	149.4917124367
+UniRef50_Q13SP0: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6238261029
+UniRef50_Q5HQT9: Sodium transport family protein	152.1111996146
+UniRef50_Q5HQT9: Sodium transport family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	84.1746874146
+UniRef50_Q5HQT9: Sodium transport family protein|g__Staphylococcus.s__Staphylococcus_aureus	67.9365122000
+UniRef50_Q2YUU9: Superoxide dismutase [Mn/Fe] 2	152.0518881913
+UniRef50_Q2YUU9: Superoxide dismutase [Mn/Fe] 2|g__Staphylococcus.s__Staphylococcus_aureus	151.9542320698
+UniRef50_Q2YUU9: Superoxide dismutase [Mn/Fe] 2|unclassified	0.0976561215
+UniRef50_P52078	151.8790458192
+UniRef50_P52078|g__Staphylococcus.s__Staphylococcus_epidermidis	85.0909134245
+UniRef50_P52078|g__Staphylococcus.s__Staphylococcus_aureus	66.7881323948
+UniRef50_P74193: Threonine synthase	151.8523548960
+UniRef50_P74193: Threonine synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	91.0887332763
+UniRef50_P74193: Threonine synthase|g__Staphylococcus.s__Staphylococcus_aureus	59.4564320772
+UniRef50_P74193: Threonine synthase|g__Propionibacterium.s__Propionibacterium_acnes	1.3071895425
+UniRef50_O34453: Nitric oxide synthase oxygenase	151.8478360334
+UniRef50_O34453: Nitric oxide synthase oxygenase|g__Staphylococcus.s__Staphylococcus_aureus	99.0743029699
+UniRef50_O34453: Nitric oxide synthase oxygenase|g__Staphylococcus.s__Staphylococcus_epidermidis	52.7735330635
+UniRef50_E0SM47: D-alanine aminotransferase	151.7802502455
+UniRef50_E0SM47: D-alanine aminotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	151.7802502455
+UniRef50_G7ZRL2	151.7286081237
+UniRef50_G7ZRL2|g__Staphylococcus.s__Staphylococcus_aureus	86.7493539334
+UniRef50_G7ZRL2|g__Staphylococcus.s__Staphylococcus_epidermidis	64.9792541904
+UniRef50_Q8CUE9	151.6497267830
+UniRef50_Q8CUE9|g__Staphylococcus.s__Staphylococcus_epidermidis	111.3362226684
+UniRef50_Q8CUE9|unclassified	40.3135041146
+UniRef50_D9RE66	151.6468646285
+UniRef50_D9RE66|g__Staphylococcus.s__Staphylococcus_aureus	79.0318840573
+UniRef50_D9RE66|g__Staphylococcus.s__Staphylococcus_epidermidis	72.6149805712
+UniRef50_P0CF79: Transposase InsF for insertion sequence IS3A	151.6146989919
+UniRef50_P0CF79: Transposase InsF for insertion sequence IS3A|g__Escherichia.s__Escherichia_coli	151.6146989919
+UniRef50_Q5HP79: 3-phosphoshikimate 1-carboxyvinyltransferase	151.4809557082
+UniRef50_Q5HP79: 3-phosphoshikimate 1-carboxyvinyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	86.1089439201
+UniRef50_Q5HP79: 3-phosphoshikimate 1-carboxyvinyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	65.3720117880
+UniRef50_Q75JL2: Mitochondrial DNA repair protein recA homolog	151.2563592878
+UniRef50_Q75JL2: Mitochondrial DNA repair protein recA homolog|g__Rhodobacter.s__Rhodobacter_sphaeroides	151.2563592878
+UniRef50_X5DV87: Molybdate ABC transporter, periplasmic molybdate-binding protein	151.1843846016
+UniRef50_X5DV87: Molybdate ABC transporter, periplasmic molybdate-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	86.3705547593
+UniRef50_X5DV87: Molybdate ABC transporter, periplasmic molybdate-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	64.8138298423
+UniRef50_Q4L4W4: Na+/H+-antiporter, MnhD subunit	151.1211246529
+UniRef50_Q4L4W4: Na+/H+-antiporter, MnhD subunit|g__Staphylococcus.s__Staphylococcus_aureus	91.3229709061
+UniRef50_Q4L4W4: Na+/H+-antiporter, MnhD subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	59.7981537467
+UniRef50_Q7W4T6: Holliday junction ATP-dependent DNA helicase RuvB	151.0749237150
+UniRef50_Q7W4T6: Holliday junction ATP-dependent DNA helicase RuvB|g__Staphylococcus.s__Staphylococcus_aureus	87.0715887792
+UniRef50_Q7W4T6: Holliday junction ATP-dependent DNA helicase RuvB|g__Streptococcus.s__Streptococcus_mutans	50.0772274104
+UniRef50_Q7W4T6: Holliday junction ATP-dependent DNA helicase RuvB|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.7719339934
+UniRef50_Q7W4T6: Holliday junction ATP-dependent DNA helicase RuvB|g__Deinococcus.s__Deinococcus_radiodurans	1.0000000000
+UniRef50_Q7W4T6: Holliday junction ATP-dependent DNA helicase RuvB|unclassified	0.1541735320
+UniRef50_C7MGE6	151.0400770210
+UniRef50_C7MGE6|g__Rhodobacter.s__Rhodobacter_sphaeroides	150.5444437966
+UniRef50_C7MGE6|unclassified	0.4956332244
+UniRef50_E1WQ62	151.0103592770
+UniRef50_E1WQ62|g__Staphylococcus.s__Staphylococcus_aureus	151.0103592770
+UniRef50_D3QD71: FemC, factor involved in methicillin resistance/Glutamine synthetase repressor	150.9820064256
+UniRef50_D3QD71: FemC, factor involved in methicillin resistance/Glutamine synthetase repressor|g__Staphylococcus.s__Staphylococcus_epidermidis	139.1711348146
+UniRef50_D3QD71: FemC, factor involved in methicillin resistance/Glutamine synthetase repressor|g__Staphylococcus.s__Staphylococcus_aureus	11.8108716110
+UniRef50_Q3IV33: Putative outer membrane protein	150.9381449692
+UniRef50_Q3IV33: Putative outer membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	150.9381449692
+UniRef50_U5P983: Macrolide ABC transporter ATP-binding protein	150.8168572409
+UniRef50_U5P983: Macrolide ABC transporter ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	119.2344560640
+UniRef50_U5P983: Macrolide ABC transporter ATP-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.4404384710
+UniRef50_U5P983: Macrolide ABC transporter ATP-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	6.1419627059
+UniRef50_A3PSB1: Flagellar FlbT family protein	150.7863692713
+UniRef50_A3PSB1: Flagellar FlbT family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	150.7863692713
+UniRef50_Q637E1: Phosphonate ABC transporter, phosphate-binding protein	150.6953440897
+UniRef50_Q637E1: Phosphonate ABC transporter, phosphate-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	85.8342260653
+UniRef50_Q637E1: Phosphonate ABC transporter, phosphate-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	64.8611180243
+UniRef50_S5YYC5: D-3-phosphoglycerate dehydrogenase	150.6336492467
+UniRef50_S5YYC5: D-3-phosphoglycerate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	150.6336492467
+UniRef50_Q6GDQ0: ATP-dependent Clp protease ATP-binding subunit ClpL	150.5103099147
+UniRef50_Q6GDQ0: ATP-dependent Clp protease ATP-binding subunit ClpL|g__Staphylococcus.s__Staphylococcus_aureus	115.4725862173
+UniRef50_Q6GDQ0: ATP-dependent Clp protease ATP-binding subunit ClpL|g__Streptococcus.s__Streptococcus_mutans	35.0377236974
+UniRef50_U5NMN3	150.5088226953
+UniRef50_U5NMN3|unclassified	102.0566836691
+UniRef50_U5NMN3|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.4521390261
+UniRef50_A3PHB4	150.4310283024
+UniRef50_A3PHB4|g__Rhodobacter.s__Rhodobacter_sphaeroides	137.0678721409
+UniRef50_A3PHB4|unclassified	13.3631561615
+UniRef50_B2VEQ1: Electron transport complex subunit A	150.3932870023
+UniRef50_B2VEQ1: Electron transport complex subunit A|g__Rhodobacter.s__Rhodobacter_sphaeroides	132.6955269079
+UniRef50_B2VEQ1: Electron transport complex subunit A|g__Escherichia.s__Escherichia_coli	17.6977600943
+UniRef50_B9DPU7: SpoU rRNA Methylase family protein	150.2228965431
+UniRef50_B9DPU7: SpoU rRNA Methylase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	75.2525186879
+UniRef50_B9DPU7: SpoU rRNA Methylase family protein|g__Staphylococcus.s__Staphylococcus_aureus	74.9703778552
+UniRef50_Q5HIW9	150.0496447963
+UniRef50_Q5HIW9|g__Staphylococcus.s__Staphylococcus_aureus	150.0496447963
+UniRef50_Q5HP11: Shikimate kinase	149.8957437334
+UniRef50_Q5HP11: Shikimate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	147.9765827197
+UniRef50_Q5HP11: Shikimate kinase|unclassified	1.9191610137
+UniRef50_Q4L8Y1	149.8841431601
+UniRef50_Q4L8Y1|g__Staphylococcus.s__Staphylococcus_epidermidis	149.8190136273
+UniRef50_Q4L8Y1|unclassified	0.0651295328
+UniRef50_Q2YX72: Spermidine/putrescine-binding periplasmic protein	149.6083098581
+UniRef50_Q2YX72: Spermidine/putrescine-binding periplasmic protein|g__Staphylococcus.s__Staphylococcus_epidermidis	92.7165873179
+UniRef50_Q2YX72: Spermidine/putrescine-binding periplasmic protein|g__Staphylococcus.s__Staphylococcus_aureus	56.8917225402
+UniRef50_Q8U5S6: ABC transporter, membrane spanning protein (Sugar)	149.4702307368
+UniRef50_Q8U5S6: ABC transporter, membrane spanning protein (Sugar)|g__Rhodobacter.s__Rhodobacter_sphaeroides	149.4702307368
+UniRef50_B9EC33	149.3703940520
+UniRef50_B9EC33|g__Staphylococcus.s__Staphylococcus_epidermidis	81.6618089389
+UniRef50_B9EC33|g__Staphylococcus.s__Staphylococcus_aureus	67.7085851131
+UniRef50_B2G6L2: Isoleucine--tRNA ligase	149.3605075093
+UniRef50_B2G6L2: Isoleucine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	98.3128386535
+UniRef50_B2G6L2: Isoleucine--tRNA ligase|g__Streptococcus.s__Streptococcus_mutans	46.6898441042
+UniRef50_B2G6L2: Isoleucine--tRNA ligase|g__Streptococcus.s__Streptococcus_agalactiae	2.5097981299
+UniRef50_B2G6L2: Isoleucine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	1.8480266218
+UniRef50_Q4L9Z0: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	149.3058657988
+UniRef50_Q4L9Z0: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	149.3058657988
+UniRef50_Q8U3B8: Arsenical-resistance protein acr3	149.2819147118
+UniRef50_Q8U3B8: Arsenical-resistance protein acr3|g__Rhodobacter.s__Rhodobacter_sphaeroides	149.2819147118
+UniRef50_A7WXS7: Antiholin-like protein LrgB	149.2043060643
+UniRef50_A7WXS7: Antiholin-like protein LrgB|g__Staphylococcus.s__Staphylococcus_aureus	149.2043060643
+UniRef50_Q3IVS3: RES domain-containing protein	149.1689827656
+UniRef50_Q3IVS3: RES domain-containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	142.6071466100
+UniRef50_Q3IVS3: RES domain-containing protein|unclassified	6.5618361557
+UniRef50_Q3IV12: Generic methyltransferase	149.1207200935
+UniRef50_Q3IV12: Generic methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	149.1207200935
+UniRef50_Q5HR29: Histidine protein kinase SaeS	149.1043369859
+UniRef50_Q5HR29: Histidine protein kinase SaeS|g__Staphylococcus.s__Staphylococcus_aureus	83.9662467338
+UniRef50_Q5HR29: Histidine protein kinase SaeS|g__Staphylococcus.s__Staphylococcus_epidermidis	64.1709722637
+UniRef50_Q5HR29: Histidine protein kinase SaeS|unclassified	0.9671179884
+UniRef50_Q2FG30	149.0456565149
+UniRef50_Q2FG30|g__Staphylococcus.s__Staphylococcus_epidermidis	82.2854083769
+UniRef50_Q2FG30|g__Staphylococcus.s__Staphylococcus_aureus	66.4004034657
+UniRef50_Q2FG30|unclassified	0.3598446722
+UniRef50_Q5HQ98: Phosphoribosylglycinamide formyltransferase	149.0291532836
+UniRef50_Q5HQ98: Phosphoribosylglycinamide formyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	149.0291532836
+UniRef50_Q46ZM0: sn-glycerol-3-phosphate import ATP-binding protein UgpC	148.9735188371
+UniRef50_Q46ZM0: sn-glycerol-3-phosphate import ATP-binding protein UgpC|g__Staphylococcus.s__Staphylococcus_epidermidis	115.0565266739
+UniRef50_Q46ZM0: sn-glycerol-3-phosphate import ATP-binding protein UgpC|g__Escherichia.s__Escherichia_coli	32.9717202402
+UniRef50_Q46ZM0: sn-glycerol-3-phosphate import ATP-binding protein UgpC|unclassified	0.9452719230
+UniRef50_Q8NXR4: ABC transporter permease	148.9559008335
+UniRef50_Q8NXR4: ABC transporter permease|g__Staphylococcus.s__Staphylococcus_epidermidis	84.2709953855
+UniRef50_Q8NXR4: ABC transporter permease|g__Staphylococcus.s__Staphylococcus_aureus	64.6849054480
+UniRef50_C5QZ07	148.7970014876
+UniRef50_C5QZ07|g__Staphylococcus.s__Staphylococcus_epidermidis	144.7351337888
+UniRef50_C5QZ07|unclassified	4.0618676989
+UniRef50_C0R3V6: 3'-5' exonuclease	148.7847104561
+UniRef50_C0R3V6: 3'-5' exonuclease|g__Rhodobacter.s__Rhodobacter_sphaeroides	148.7847104561
+UniRef50_A9B436: 30S ribosomal protein S4	148.7842758003
+UniRef50_A9B436: 30S ribosomal protein S4|g__Staphylococcus.s__Staphylococcus_aureus	88.3398579259
+UniRef50_A9B436: 30S ribosomal protein S4|g__Staphylococcus.s__Staphylococcus_epidermidis	55.6159130459
+UniRef50_A9B436: 30S ribosomal protein S4|g__Acinetobacter.s__Acinetobacter_baumannii	4.8285048285
+UniRef50_E8SJT4: Lipid A export ATP-binding/permease protein MsbA	148.7683889145
+UniRef50_E8SJT4: Lipid A export ATP-binding/permease protein MsbA|g__Staphylococcus.s__Staphylococcus_aureus	80.0098356428
+UniRef50_E8SJT4: Lipid A export ATP-binding/permease protein MsbA|g__Staphylococcus.s__Staphylococcus_epidermidis	68.7585532717
+UniRef50_Q5LXH7: Universal stress family protein	148.6829170467
+UniRef50_Q5LXH7: Universal stress family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	148.6829170467
+UniRef50_Q53178: Cytochrome c-type protein NapC	148.6822582290
+UniRef50_Q53178: Cytochrome c-type protein NapC|g__Rhodobacter.s__Rhodobacter_sphaeroides	117.6713182839
+UniRef50_Q53178: Cytochrome c-type protein NapC|g__Escherichia.s__Escherichia_coli	27.5543886162
+UniRef50_Q53178: Cytochrome c-type protein NapC|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4565513289
+UniRef50_Q5HR27	148.6731588830
+UniRef50_Q5HR27|g__Staphylococcus.s__Staphylococcus_epidermidis	88.1616298443
+UniRef50_Q5HR27|g__Staphylococcus.s__Staphylococcus_aureus	59.4907485946
+UniRef50_Q5HR27|unclassified	1.0207804442
+UniRef50_Q2FVY9: HTH-type transcriptional regulator SarV	148.5450273749
+UniRef50_Q2FVY9: HTH-type transcriptional regulator SarV|g__Staphylococcus.s__Staphylococcus_epidermidis	105.2469852680
+UniRef50_Q2FVY9: HTH-type transcriptional regulator SarV|g__Staphylococcus.s__Staphylococcus_aureus	43.2980421069
+UniRef50_A7HRI8: UPF0260 protein Plav_0898	148.5236570564
+UniRef50_A7HRI8: UPF0260 protein Plav_0898|g__Rhodobacter.s__Rhodobacter_sphaeroides	147.3517516046
+UniRef50_A7HRI8: UPF0260 protein Plav_0898|unclassified	1.1719054518
+UniRef50_F0P4S1: Transcriptional regulator, GntR family	148.4483985039
+UniRef50_F0P4S1: Transcriptional regulator, GntR family|g__Staphylococcus.s__Staphylococcus_aureus	148.4483985039
+UniRef50_G7ZP62: Chromosome replication initiation/membrane attachment protein	148.4341328041
+UniRef50_G7ZP62: Chromosome replication initiation/membrane attachment protein|g__Staphylococcus.s__Staphylococcus_aureus	77.1477882850
+UniRef50_G7ZP62: Chromosome replication initiation/membrane attachment protein|g__Staphylococcus.s__Staphylococcus_epidermidis	71.2863445191
+UniRef50_A4WPL6	148.3206762444
+UniRef50_A4WPL6|g__Rhodobacter.s__Rhodobacter_sphaeroides	148.3206762444
+UniRef50_B9EBX9: DNA-damage repair protein homolog	148.3111780715
+UniRef50_B9EBX9: DNA-damage repair protein homolog|g__Staphylococcus.s__Staphylococcus_epidermidis	79.7263132563
+UniRef50_B9EBX9: DNA-damage repair protein homolog|g__Staphylococcus.s__Staphylococcus_aureus	68.5848648152
+UniRef50_Q4L8H9: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	148.3010869367
+UniRef50_Q4L8H9: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	144.1147307069
+UniRef50_Q4L8H9: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	4.1863562298
+UniRef50_Q49W87: Na(+)/H(+) antiporter subunit E1	148.2890483718
+UniRef50_Q49W87: Na(+)/H(+) antiporter subunit E1|g__Staphylococcus.s__Staphylococcus_epidermidis	82.8656006736
+UniRef50_Q49W87: Na(+)/H(+) antiporter subunit E1|g__Staphylococcus.s__Staphylococcus_aureus	65.4234476982
+UniRef50_Q71X09: Methionine import ATP-binding protein MetN 2	148.1709308463
+UniRef50_Q71X09: Methionine import ATP-binding protein MetN 2|g__Staphylococcus.s__Staphylococcus_epidermidis	85.2547237043
+UniRef50_Q71X09: Methionine import ATP-binding protein MetN 2|g__Staphylococcus.s__Staphylococcus_aureus	62.9162071420
+UniRef50_E5QWQ2: Aspartokinase	148.0994054023
+UniRef50_E5QWQ2: Aspartokinase|g__Staphylococcus.s__Staphylococcus_epidermidis	76.5310509847
+UniRef50_E5QWQ2: Aspartokinase|g__Staphylococcus.s__Staphylococcus_aureus	71.5683544176
+UniRef50_Q0Q2J7: Putative antiporter subunit mnhD2	148.0824725700
+UniRef50_Q0Q2J7: Putative antiporter subunit mnhD2|g__Staphylococcus.s__Staphylococcus_epidermidis	81.6353422216
+UniRef50_Q0Q2J7: Putative antiporter subunit mnhD2|g__Staphylococcus.s__Staphylococcus_aureus	66.4471303484
+UniRef50_A1A081: 50S ribosomal protein L5	148.0062321550
+UniRef50_A1A081: 50S ribosomal protein L5|g__Staphylococcus.s__Staphylococcus_aureus	84.1725572274
+UniRef50_A1A081: 50S ribosomal protein L5|g__Staphylococcus.s__Staphylococcus_epidermidis	63.8336749276
+UniRef50_Q3HKJ7: ABC di/oligopeptide transporter, periplasmic ligand binding protein	147.9508602155
+UniRef50_Q3HKJ7: ABC di/oligopeptide transporter, periplasmic ligand binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	147.9508602155
+UniRef50_B9DNP9: Exodeoxyribonuclease 7 large subunit	147.9140611113
+UniRef50_B9DNP9: Exodeoxyribonuclease 7 large subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	74.9969226950
+UniRef50_B9DNP9: Exodeoxyribonuclease 7 large subunit|g__Staphylococcus.s__Staphylococcus_aureus	72.9171384164
+UniRef50_F0P598: Aspartate aminotransferase, putative	147.8688546136
+UniRef50_F0P598: Aspartate aminotransferase, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	77.5544670336
+UniRef50_F0P598: Aspartate aminotransferase, putative|g__Staphylococcus.s__Staphylococcus_aureus	70.3143875800
+UniRef50_Q3HKP9: Capsule polysaccharide export protein	147.8514809228
+UniRef50_Q3HKP9: Capsule polysaccharide export protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	147.5759988292
+UniRef50_Q3HKP9: Capsule polysaccharide export protein|unclassified	0.2754820937
+UniRef50_C7ZT42: DNA-binding protein	147.8391398244
+UniRef50_C7ZT42: DNA-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	147.8391398244
+UniRef50_A0RH75: LexA repressor	147.8193044373
+UniRef50_A0RH75: LexA repressor|g__Staphylococcus.s__Staphylococcus_epidermidis	145.4398273702
+UniRef50_A0RH75: LexA repressor|unclassified	2.3794770671
+UniRef50_D9RDS5	147.6880607315
+UniRef50_D9RDS5|g__Staphylococcus.s__Staphylococcus_aureus	147.6880607315
+UniRef50_A5IRS8: Isochorismate synthase	147.6853961327
+UniRef50_A5IRS8: Isochorismate synthase|g__Staphylococcus.s__Staphylococcus_aureus	90.8460312847
+UniRef50_A5IRS8: Isochorismate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	56.8393648480
+UniRef50_C5MZL4	147.5353429330
+UniRef50_C5MZL4|g__Staphylococcus.s__Staphylococcus_aureus	106.0931621326
+UniRef50_C5MZL4|g__Staphylococcus.s__Staphylococcus_epidermidis	41.4421808003
+UniRef50_B9KS15: CheW protein	147.4205663181
+UniRef50_B9KS15: CheW protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	147.4205663181
+UniRef50_Q6GE66: Probable malate:quinone oxidoreductase 1	147.3438551648
+UniRef50_Q6GE66: Probable malate:quinone oxidoreductase 1|g__Staphylococcus.s__Staphylococcus_aureus	147.3042745012
+UniRef50_Q6GE66: Probable malate:quinone oxidoreductase 1|unclassified	0.0395806636
+UniRef50_G7W3F5: Phosphonate ABC transporter, permease protein	147.2074280103
+UniRef50_G7W3F5: Phosphonate ABC transporter, permease protein|g__Staphylococcus.s__Staphylococcus_aureus	74.7357301941
+UniRef50_G7W3F5: Phosphonate ABC transporter, permease protein|g__Staphylococcus.s__Staphylococcus_epidermidis	72.4716978161
+UniRef50_E8SGK9: Lysophospholipase Monoglyceride lipase putative	147.1418955676
+UniRef50_E8SGK9: Lysophospholipase Monoglyceride lipase putative|g__Staphylococcus.s__Staphylococcus_epidermidis	77.5719578438
+UniRef50_E8SGK9: Lysophospholipase Monoglyceride lipase putative|g__Staphylococcus.s__Staphylococcus_aureus	69.5699377237
+UniRef50_Q5HRU1: Glycosyl transferase, group 1 family protein	147.0744414275
+UniRef50_Q5HRU1: Glycosyl transferase, group 1 family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	147.0744414275
+UniRef50_D3QHK8	147.0544967503
+UniRef50_D3QHK8|g__Staphylococcus.s__Staphylococcus_aureus	89.7663471444
+UniRef50_D3QHK8|g__Staphylococcus.s__Staphylococcus_epidermidis	57.2881496058
+UniRef50_Q6GEF4: Protein FdhD homolog	147.0125192341
+UniRef50_Q6GEF4: Protein FdhD homolog|g__Staphylococcus.s__Staphylococcus_aureus	103.9068009739
+UniRef50_Q6GEF4: Protein FdhD homolog|g__Staphylococcus.s__Staphylococcus_epidermidis	43.1057182601
+UniRef50_G0LQ60	146.9036268043
+UniRef50_G0LQ60|g__Staphylococcus.s__Staphylococcus_aureus	146.9036268043
+UniRef50_Q8CNW5: Septation ring formation regulator EzrA	146.8295340063
+UniRef50_Q8CNW5: Septation ring formation regulator EzrA|g__Staphylococcus.s__Staphylococcus_aureus	75.2505992187
+UniRef50_Q8CNW5: Septation ring formation regulator EzrA|g__Staphylococcus.s__Staphylococcus_epidermidis	71.5789347876
+UniRef50_Q5HRK7: 30S ribosomal protein S12	146.7156877176
+UniRef50_Q5HRK7: 30S ribosomal protein S12|g__Staphylococcus.s__Staphylococcus_epidermidis	111.7100434111
+UniRef50_Q5HRK7: 30S ribosomal protein S12|g__Staphylococcus.s__Staphylococcus_aureus	35.0056443065
+UniRef50_Q5HPN8: tRNA dimethylallyltransferase	146.7125518252
+UniRef50_Q5HPN8: tRNA dimethylallyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	74.7212428172
+UniRef50_Q5HPN8: tRNA dimethylallyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	71.7673523208
+UniRef50_Q5HPN8: tRNA dimethylallyltransferase|unclassified	0.2239566871
+UniRef50_A8LI45	146.5466293256
+UniRef50_A8LI45|g__Rhodobacter.s__Rhodobacter_sphaeroides	140.1387758236
+UniRef50_A8LI45|unclassified	6.4078535020
+UniRef50_B9EAX4: Capsular polysaccharide synthesis protein CapM homolog	146.4352191953
+UniRef50_B9EAX4: Capsular polysaccharide synthesis protein CapM homolog|g__Staphylococcus.s__Staphylococcus_aureus	146.2398911884
+UniRef50_B9EAX4: Capsular polysaccharide synthesis protein CapM homolog|unclassified	0.1953280069
+UniRef50_Q3IV21: N6 adenine-specific DNA methyltransferase, N12 class	146.4182782944
+UniRef50_Q3IV21: N6 adenine-specific DNA methyltransferase, N12 class|g__Rhodobacter.s__Rhodobacter_sphaeroides	146.4182782944
+UniRef50_Q07GR3	146.4180122944
+UniRef50_Q07GR3|g__Rhodobacter.s__Rhodobacter_sphaeroides	139.5331412729
+UniRef50_Q07GR3|unclassified	6.8848710215
+UniRef50_Q5HPR5: DNA translocase FtsK	146.3530511598
+UniRef50_Q5HPR5: DNA translocase FtsK|g__Staphylococcus.s__Staphylococcus_aureus	75.0661624659
+UniRef50_Q5HPR5: DNA translocase FtsK|g__Staphylococcus.s__Staphylococcus_epidermidis	71.2868886938
+UniRef50_L7WUR4: ABC transporter substrate-binding protein	146.3151506625
+UniRef50_L7WUR4: ABC transporter substrate-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	146.3151506625
+UniRef50_Q8NXI7: MW0768 protein	146.3110611916
+UniRef50_Q8NXI7: MW0768 protein|g__Staphylococcus.s__Staphylococcus_aureus	146.2118362467
+UniRef50_Q8NXI7: MW0768 protein|unclassified	0.0992249449
+UniRef50_X8FK87: (2Fe-2S)-binding domain protein	146.2784211253
+UniRef50_X8FK87: (2Fe-2S)-binding domain protein|unclassified	146.2784211253
+UniRef50_I0C4L0: ADP-ribose pyrophosphatase	146.2646973192
+UniRef50_I0C4L0: ADP-ribose pyrophosphatase|g__Staphylococcus.s__Staphylococcus_epidermidis	79.0119591713
+UniRef50_I0C4L0: ADP-ribose pyrophosphatase|g__Staphylococcus.s__Staphylococcus_aureus	67.2527381478
+UniRef50_E3F2N0: Transcriptional regulator, LysR family protein	146.2594601272
+UniRef50_E3F2N0: Transcriptional regulator, LysR family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	146.2594601272
+UniRef50_A4ISF0: Pyridine nucleotide-disulphide oxidoreductase	146.2566780029
+UniRef50_A4ISF0: Pyridine nucleotide-disulphide oxidoreductase|g__Staphylococcus.s__Staphylococcus_epidermidis	75.2663784666
+UniRef50_A4ISF0: Pyridine nucleotide-disulphide oxidoreductase|g__Staphylococcus.s__Staphylococcus_aureus	70.9902995363
+UniRef50_O31678: NADPH-dependent 7-cyano-7-deazaguanine reductase	146.2371978871
+UniRef50_O31678: NADPH-dependent 7-cyano-7-deazaguanine reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	101.5983013286
+UniRef50_O31678: NADPH-dependent 7-cyano-7-deazaguanine reductase|g__Streptococcus.s__Streptococcus_mutans	43.1984232049
+UniRef50_O31678: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	1.4404733536
+UniRef50_Q5HJZ0: DNA gyrase subunit A	146.0052226241
+UniRef50_Q5HJZ0: DNA gyrase subunit A|g__Staphylococcus.s__Staphylococcus_aureus	145.9192209905
+UniRef50_Q5HJZ0: DNA gyrase subunit A|unclassified	0.0860016336
+UniRef50_D5WDJ8: Ectoine/hydroxyectoine ABC transporter, ATP-binding protein	145.9251454205
+UniRef50_D5WDJ8: Ectoine/hydroxyectoine ABC transporter, ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	76.0904551178
+UniRef50_D5WDJ8: Ectoine/hydroxyectoine ABC transporter, ATP-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	69.8346903027
+UniRef50_F3U2V1: Gas vesicle synthesis GvpLGvpF	145.9239822063
+UniRef50_F3U2V1: Gas vesicle synthesis GvpLGvpF|g__Rhodobacter.s__Rhodobacter_sphaeroides	145.9239822063
+UniRef50_Q03I89: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG	145.8728451865
+UniRef50_Q03I89: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG|g__Staphylococcus.s__Staphylococcus_epidermidis	91.5124686781
+UniRef50_Q03I89: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG|g__Streptococcus.s__Streptococcus_mutans	51.0368174945
+UniRef50_Q03I89: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG|g__Streptococcus.s__Streptococcus_agalactiae	3.3235590138
+UniRef50_Q52666: Glutamate/glutamine/aspartate/asparagine transport ATP-binding protein BztD	145.8464352308
+UniRef50_Q52666: Glutamate/glutamine/aspartate/asparagine transport ATP-binding protein BztD|g__Rhodobacter.s__Rhodobacter_sphaeroides	143.5422877654
+UniRef50_Q52666: Glutamate/glutamine/aspartate/asparagine transport ATP-binding protein BztD|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3041474654
+UniRef50_B9KUW5: Beta-lactamase	145.8254799715
+UniRef50_B9KUW5: Beta-lactamase|g__Rhodobacter.s__Rhodobacter_sphaeroides	145.8254799715
+UniRef50_I0C381: 1,4-dihydroxy-2-naphthoate polyprenyltransferase	145.7539155637
+UniRef50_I0C381: 1,4-dihydroxy-2-naphthoate polyprenyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	82.4138009635
+UniRef50_I0C381: 1,4-dihydroxy-2-naphthoate polyprenyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	63.3401146001
+UniRef50_B9E6Y5	145.7453020657
+UniRef50_B9E6Y5|g__Staphylococcus.s__Staphylococcus_aureus	90.3437265217
+UniRef50_B9E6Y5|g__Staphylococcus.s__Staphylococcus_epidermidis	55.4015755440
+UniRef50_N4DJP8: LysR substrate binding domain protein	145.7142857143
+UniRef50_N4DJP8: LysR substrate binding domain protein|g__Escherichia.s__Escherichia_coli	145.7142857143
+UniRef50_Q6GFZ2: Probable tRNA sulfurtransferase	145.6907121373
+UniRef50_Q6GFZ2: Probable tRNA sulfurtransferase|g__Staphylococcus.s__Staphylococcus_aureus	75.3659946931
+UniRef50_Q6GFZ2: Probable tRNA sulfurtransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	70.3247174441
+UniRef50_R4NJW9: Low-specificity L-threonine aldolase	145.6194146945
+UniRef50_R4NJW9: Low-specificity L-threonine aldolase|g__Staphylococcus.s__Staphylococcus_epidermidis	144.5395010876
+UniRef50_R4NJW9: Low-specificity L-threonine aldolase|g__Streptococcus.s__Streptococcus_agalactiae	1.0799136069
+UniRef50_Q5HNI2: Aminotransferase, class V	145.5804855352
+UniRef50_Q5HNI2: Aminotransferase, class V|g__Staphylococcus.s__Staphylococcus_epidermidis	74.6260284760
+UniRef50_Q5HNI2: Aminotransferase, class V|g__Staphylococcus.s__Staphylococcus_aureus	70.9544570592
+UniRef50_W8H188	145.4661420041
+UniRef50_W8H188|g__Staphylococcus.s__Staphylococcus_aureus	145.3627879584
+UniRef50_W8H188|unclassified	0.1033540456
+UniRef50_G0LRP3: Haloacid dehalogenase-like hydrolase	145.4503457121
+UniRef50_G0LRP3: Haloacid dehalogenase-like hydrolase|g__Staphylococcus.s__Staphylococcus_epidermidis	76.2250942246
+UniRef50_G0LRP3: Haloacid dehalogenase-like hydrolase|g__Staphylococcus.s__Staphylococcus_aureus	69.2252514876
+UniRef50_U5NMP2	145.4115259573
+UniRef50_U5NMP2|g__Rhodobacter.s__Rhodobacter_sphaeroides	145.4115259573
+UniRef50_P0ADW3: Inner membrane protein YhcB	145.4111008752
+UniRef50_P0ADW3: Inner membrane protein YhcB|g__Escherichia.s__Escherichia_coli	145.4111008752
+UniRef50_F0LGR4: Sugar ABC transporter, substrate binding protein	145.3877105601
+UniRef50_F0LGR4: Sugar ABC transporter, substrate binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	144.9065481609
+UniRef50_F0LGR4: Sugar ABC transporter, substrate binding protein|unclassified	0.4811623993
+UniRef50_I0C5M6: Acyl-CoA hydrolase	145.3767438979
+UniRef50_I0C5M6: Acyl-CoA hydrolase|g__Staphylococcus.s__Staphylococcus_epidermidis	82.4430196743
+UniRef50_I0C5M6: Acyl-CoA hydrolase|g__Staphylococcus.s__Staphylococcus_aureus	62.9337242236
+UniRef50_A3PS71	145.2930240664
+UniRef50_A3PS71|unclassified	145.2930240664
+UniRef50_A9BQJ1: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG	145.2754701494
+UniRef50_A9BQJ1: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG|g__Rhodobacter.s__Rhodobacter_sphaeroides	144.7076109785
+UniRef50_A9BQJ1: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG|g__Neisseria.s__Neisseria_meningitidis	0.5678591709
+UniRef50_Q8K9K4: Flagellar basal-body rod protein FlgG	145.2647683229
+UniRef50_Q8K9K4: Flagellar basal-body rod protein FlgG|g__Rhodobacter.s__Rhodobacter_sphaeroides	107.3670336372
+UniRef50_Q8K9K4: Flagellar basal-body rod protein FlgG|g__Escherichia.s__Escherichia_coli	37.8977346857
+UniRef50_Q5HQ95: Cobalt transport family protein	145.2366212074
+UniRef50_Q5HQ95: Cobalt transport family protein|g__Staphylococcus.s__Staphylococcus_aureus	93.4745065445
+UniRef50_Q5HQ95: Cobalt transport family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	51.7621146629
+UniRef50_Q5HRN0: UvrB/UvrC domain protein	145.1846155555
+UniRef50_Q5HRN0: UvrB/UvrC domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	88.1558971157
+UniRef50_Q5HRN0: UvrB/UvrC domain protein|g__Staphylococcus.s__Staphylococcus_aureus	57.0287184398
+UniRef50_P77737: Oligopeptide transport ATP-binding protein OppF	145.1501493467
+UniRef50_P77737: Oligopeptide transport ATP-binding protein OppF|g__Rhodobacter.s__Rhodobacter_sphaeroides	104.4330914443
+UniRef50_P77737: Oligopeptide transport ATP-binding protein OppF|g__Escherichia.s__Escherichia_coli	40.6150443850
+UniRef50_P77737: Oligopeptide transport ATP-binding protein OppF|unclassified	0.1020135174
+UniRef50_Q2G0B1: HTH-type transcriptional regulator MgrA	144.8379895041
+UniRef50_Q2G0B1: HTH-type transcriptional regulator MgrA|g__Staphylococcus.s__Staphylococcus_epidermidis	83.7212351101
+UniRef50_Q2G0B1: HTH-type transcriptional regulator MgrA|g__Staphylococcus.s__Staphylococcus_aureus	61.1167543941
+UniRef50_Q4L5Y5: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	144.8252125587
+UniRef50_Q4L5Y5: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	118.2958144769
+UniRef50_Q4L5Y5: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	26.5293980817
+UniRef50_G7ZQT1	144.7767256663
+UniRef50_G7ZQT1|g__Staphylococcus.s__Staphylococcus_epidermidis	86.8086260525
+UniRef50_G7ZQT1|g__Staphylococcus.s__Staphylococcus_aureus	57.9680996139
+UniRef50_F4DQ72: TRAP-T family transporter periplasmic binding protein	144.7421761938
+UniRef50_F4DQ72: TRAP-T family transporter periplasmic binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	144.7421761938
+UniRef50_D3QEC0	144.7305417422
+UniRef50_D3QEC0|g__Staphylococcus.s__Staphylococcus_epidermidis	76.5497520991
+UniRef50_D3QEC0|g__Staphylococcus.s__Staphylococcus_aureus	68.1807896430
+UniRef50_F5M013: Phage integrase family protein	144.7148450386
+UniRef50_F5M013: Phage integrase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	144.7148450386
+UniRef50_F0L4M9: Cytochrome-c oxidase fixO chain	144.5993559109
+UniRef50_F0L4M9: Cytochrome-c oxidase fixO chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	144.5993559109
+UniRef50_M4S1P9: Methylmalonyl-CoA epimerase	144.5589826180
+UniRef50_M4S1P9: Methylmalonyl-CoA epimerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	144.5589826180
+UniRef50_Q84F59	144.5152782252
+UniRef50_Q84F59|g__Staphylococcus.s__Staphylococcus_epidermidis	99.6730612534
+UniRef50_Q84F59|g__Staphylococcus.s__Staphylococcus_aureus	43.5071034871
+UniRef50_Q84F59|g__Acinetobacter.s__Acinetobacter_baumannii	1.3351134846
+UniRef50_P0C0L2: Peroxiredoxin OsmC	144.4601787880
+UniRef50_P0C0L2: Peroxiredoxin OsmC|g__Escherichia.s__Escherichia_coli	123.4261974585
+UniRef50_P0C0L2: Peroxiredoxin OsmC|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.0339813296
+UniRef50_Q3IV36	144.3876284966
+UniRef50_Q3IV36|g__Rhodobacter.s__Rhodobacter_sphaeroides	131.6845894566
+UniRef50_Q3IV36|unclassified	12.7030390401
+UniRef50_Q6G970: Segregation and condensation protein B	144.3323250400
+UniRef50_Q6G970: Segregation and condensation protein B|g__Staphylococcus.s__Staphylococcus_aureus	99.7265179932
+UniRef50_Q6G970: Segregation and condensation protein B|g__Staphylococcus.s__Staphylococcus_epidermidis	44.6058070468
+UniRef50_O86489: Serine-aspartate repeat-containing protein E	144.2007747821
+UniRef50_O86489: Serine-aspartate repeat-containing protein E|g__Staphylococcus.s__Staphylococcus_aureus	144.2007747821
+UniRef50_Q8NW76	144.1540494063
+UniRef50_Q8NW76|g__Staphylococcus.s__Staphylococcus_epidermidis	74.8183337921
+UniRef50_Q8NW76|g__Staphylococcus.s__Staphylococcus_aureus	69.3357156142
+UniRef50_A8LJQ4: Pyrophosphate phospho-hydrolase	144.0987585114
+UniRef50_A8LJQ4: Pyrophosphate phospho-hydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	144.0987585114
+UniRef50_A6QDY4: Phage major head protein	143.9886764602
+UniRef50_A6QDY4: Phage major head protein|g__Staphylococcus.s__Staphylococcus_aureus	143.9886764602
+UniRef50_T1XSF4: Glycine betaine transporter	143.9607565304
+UniRef50_T1XSF4: Glycine betaine transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	74.0402845053
+UniRef50_T1XSF4: Glycine betaine transporter|g__Staphylococcus.s__Staphylococcus_aureus	69.9204720252
+UniRef50_Q2FDY2: Putative NAD(P)H nitroreductase SAUSA300_2462	143.9569862978
+UniRef50_Q2FDY2: Putative NAD(P)H nitroreductase SAUSA300_2462|g__Staphylococcus.s__Staphylococcus_aureus	83.5755787432
+UniRef50_Q2FDY2: Putative NAD(P)H nitroreductase SAUSA300_2462|g__Staphylococcus.s__Staphylococcus_epidermidis	55.6815012514
+UniRef50_Q2FDY2: Putative NAD(P)H nitroreductase SAUSA300_2462|g__Clostridium.s__Clostridium_beijerinckii	3.7593984962
+UniRef50_Q2FDY2: Putative NAD(P)H nitroreductase SAUSA300_2462|unclassified	0.9405078069
+UniRef50_P80885: Pyruvate kinase	143.7653660927
+UniRef50_P80885: Pyruvate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	90.2670575001
+UniRef50_P80885: Pyruvate kinase|g__Staphylococcus.s__Staphylococcus_aureus	53.4983085925
+UniRef50_T1XS28	143.5974558989
+UniRef50_T1XS28|g__Staphylococcus.s__Staphylococcus_epidermidis	91.7491236654
+UniRef50_T1XS28|g__Staphylococcus.s__Staphylococcus_aureus	51.8483322335
+UniRef50_C7LI26: Oligopeptide ABC transporter, periplasmic oligopeptide-binding protein	143.5693409676
+UniRef50_C7LI26: Oligopeptide ABC transporter, periplasmic oligopeptide-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	143.5693409676
+UniRef50_A6U170: Tyrosine recombinase XerC	143.5679260879
+UniRef50_A6U170: Tyrosine recombinase XerC|g__Staphylococcus.s__Staphylococcus_aureus	79.2614622274
+UniRef50_A6U170: Tyrosine recombinase XerC|g__Staphylococcus.s__Staphylococcus_epidermidis	64.3064638605
+UniRef50_A7X4S8: Thiamine-phosphate synthase	143.5039267419
+UniRef50_A7X4S8: Thiamine-phosphate synthase|g__Staphylococcus.s__Staphylococcus_aureus	79.1598647277
+UniRef50_A7X4S8: Thiamine-phosphate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	64.3440620142
+UniRef50_B8JAD8: Nucleoside diphosphate kinase	143.3997862137
+UniRef50_B8JAD8: Nucleoside diphosphate kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	139.9060465233
+UniRef50_B8JAD8: Nucleoside diphosphate kinase|g__Escherichia.s__Escherichia_coli	2.5575447570
+UniRef50_B8JAD8: Nucleoside diphosphate kinase|unclassified	0.9361949334
+UniRef50_D3QEL4: ComF operon protein A, DNA transporter ATPase	143.2930131802
+UniRef50_D3QEL4: ComF operon protein A, DNA transporter ATPase|g__Staphylococcus.s__Staphylococcus_epidermidis	76.4518519337
+UniRef50_D3QEL4: ComF operon protein A, DNA transporter ATPase|g__Staphylococcus.s__Staphylococcus_aureus	66.8411612465
+UniRef50_P0AFM3: Glycine betaine-binding periplasmic protein	143.2843114047
+UniRef50_P0AFM3: Glycine betaine-binding periplasmic protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	103.3113457050
+UniRef50_P0AFM3: Glycine betaine-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	39.9729656997
+UniRef50_P26280: Reaction center protein L chain	143.2583224647
+UniRef50_P26280: Reaction center protein L chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	143.2583224647
+UniRef50_Q3IW26: DNA topology modulation kinase FlaR, putative	143.2355047330
+UniRef50_Q3IW26: DNA topology modulation kinase FlaR, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	143.2355047330
+UniRef50_Q4L700: UPF0758 protein SH1266	143.1866552365
+UniRef50_Q4L700: UPF0758 protein SH1266|g__Staphylococcus.s__Staphylococcus_aureus	143.0621163586
+UniRef50_Q4L700: UPF0758 protein SH1266|unclassified	0.1245388780
+UniRef50_H3XB68: YhgE/Pip C-terminal domain protein	143.1438135237
+UniRef50_H3XB68: YhgE/Pip C-terminal domain protein|g__Staphylococcus.s__Staphylococcus_aureus	143.1438135237
+UniRef50_A3PM78: Haloacid dehalogenase domain protein hydrolase	143.0101614513
+UniRef50_A3PM78: Haloacid dehalogenase domain protein hydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	143.0101614513
+UniRef50_Q3HKJ3: Putative Mrr restriction system protein	142.9607160828
+UniRef50_Q3HKJ3: Putative Mrr restriction system protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	142.9607160828
+UniRef50_Q3J618: Deoxyguanosinetriphosphate triphosphohydrolase-like protein	142.8060064482
+UniRef50_Q3J618: Deoxyguanosinetriphosphate triphosphohydrolase-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	142.8060064482
+UniRef50_Q3IV92	142.7848632615
+UniRef50_Q3IV92|g__Rhodobacter.s__Rhodobacter_sphaeroides	130.9375369620
+UniRef50_Q3IV92|unclassified	11.8473262995
+UniRef50_A6QK31: Transcriptional regulator LysR family protein	142.7774068640
+UniRef50_A6QK31: Transcriptional regulator LysR family protein|g__Staphylococcus.s__Staphylococcus_aureus	142.7774068640
+UniRef50_D6SDZ0: Peptidase, M23 family	142.6666079667
+UniRef50_D6SDZ0: Peptidase, M23 family|g__Staphylococcus.s__Staphylococcus_aureus	142.6666079667
+UniRef50_V8RAR8	142.5881376757
+UniRef50_V8RAR8|g__Rhodobacter.s__Rhodobacter_sphaeroides	139.7788614123
+UniRef50_V8RAR8|g__Acinetobacter.s__Acinetobacter_baumannii	2.6903288115
+UniRef50_V8RAR8|unclassified	0.1189474519
+UniRef50_F8KLF6	142.5181834658
+UniRef50_F8KLF6|g__Staphylococcus.s__Staphylococcus_epidermidis	83.5108112035
+UniRef50_F8KLF6|g__Staphylococcus.s__Staphylococcus_aureus	59.0073722624
+UniRef50_Q4L7E3: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	142.3331515588
+UniRef50_Q4L7E3: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	89.2271022511
+UniRef50_Q4L7E3: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	49.4899729707
+UniRef50_Q4L7E3: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	3.6160763370
+UniRef50_A5FZW4: 50S ribosomal protein L4	142.2086200914
+UniRef50_A5FZW4: 50S ribosomal protein L4|g__Rhodobacter.s__Rhodobacter_sphaeroides	142.2086200914
+UniRef50_B9KS17: Chemotaxis protein methyltransferase	142.1299321036
+UniRef50_B9KS17: Chemotaxis protein methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	142.1299321036
+UniRef50_C1L2U0: UPF0176 protein Lm4b_01393	142.1110644280
+UniRef50_C1L2U0: UPF0176 protein Lm4b_01393|g__Staphylococcus.s__Staphylococcus_aureus	70.0025459659
+UniRef50_C1L2U0: UPF0176 protein Lm4b_01393|g__Staphylococcus.s__Staphylococcus_epidermidis	65.8616497749
+UniRef50_C1L2U0: UPF0176 protein Lm4b_01393|g__Streptococcus.s__Streptococcus_agalactiae	6.1170594407
+UniRef50_C1L2U0: UPF0176 protein Lm4b_01393|unclassified	0.1298092465
+UniRef50_G0LQ70	142.0222670887
+UniRef50_G0LQ70|g__Staphylococcus.s__Staphylococcus_aureus	142.0222670887
+UniRef50_Q49WX1: Cell division protein SepF	141.8568026087
+UniRef50_Q49WX1: Cell division protein SepF|g__Staphylococcus.s__Staphylococcus_aureus	83.2152790850
+UniRef50_Q49WX1: Cell division protein SepF|g__Staphylococcus.s__Staphylococcus_epidermidis	58.6415235237
+UniRef50_F0P7Q5	141.8234853758
+UniRef50_F0P7Q5|g__Staphylococcus.s__Staphylococcus_aureus	141.8234853758
+UniRef50_Q8CSL7: Signal transduction histidine-protein kinase ArlS	141.8198277985
+UniRef50_Q8CSL7: Signal transduction histidine-protein kinase ArlS|g__Staphylococcus.s__Staphylococcus_epidermidis	74.7041182293
+UniRef50_Q8CSL7: Signal transduction histidine-protein kinase ArlS|g__Staphylococcus.s__Staphylococcus_aureus	65.6152660773
+UniRef50_Q8CSL7: Signal transduction histidine-protein kinase ArlS|unclassified	1.5004434919
+UniRef50_A5IPM4	141.8045793147
+UniRef50_A5IPM4|g__Staphylococcus.s__Staphylococcus_aureus	141.8045793147
+UniRef50_Q5HRG3: UPF0382 membrane protein SERP0230	141.7565217259
+UniRef50_Q5HRG3: UPF0382 membrane protein SERP0230|g__Staphylococcus.s__Staphylococcus_epidermidis	141.7565217259
+UniRef50_A3PKK4: Acyl-homoserine-lactone synthase	141.6184974377
+UniRef50_A3PKK4: Acyl-homoserine-lactone synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	141.6184974377
+UniRef50_Q49XX5	141.5084493131
+UniRef50_Q49XX5|g__Staphylococcus.s__Staphylococcus_aureus	78.0882979660
+UniRef50_Q49XX5|g__Staphylococcus.s__Staphylococcus_epidermidis	63.4201513471
+UniRef50_B4RCM7: NADH-quinone oxidoreductase subunit C	141.4327715238
+UniRef50_B4RCM7: NADH-quinone oxidoreductase subunit C|g__Rhodobacter.s__Rhodobacter_sphaeroides	141.1993517526
+UniRef50_B4RCM7: NADH-quinone oxidoreductase subunit C|unclassified	0.2334197712
+UniRef50_I0AL38: 3-oxoacyl-[acyl-carrier protein] reductase	141.3494027208
+UniRef50_I0AL38: 3-oxoacyl-[acyl-carrier protein] reductase|g__Streptococcus.s__Streptococcus_mutans	141.3494027208
+UniRef50_Q9KX08: Putative ribosome biogenesis GTPase RsgA	141.3445290817
+UniRef50_Q9KX08: Putative ribosome biogenesis GTPase RsgA|g__Staphylococcus.s__Staphylococcus_epidermidis	72.8269488734
+UniRef50_Q9KX08: Putative ribosome biogenesis GTPase RsgA|g__Staphylococcus.s__Staphylococcus_aureus	68.5175802082
+UniRef50_B8IA33: Fumarylacetoacetate (FAA) hydrolase	141.3231115250
+UniRef50_B8IA33: Fumarylacetoacetate (FAA) hydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	139.6536624432
+UniRef50_B8IA33: Fumarylacetoacetate (FAA) hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6694490818
+UniRef50_Q5HKL3: RarD protein	141.2937913397
+UniRef50_Q5HKL3: RarD protein|g__Staphylococcus.s__Staphylococcus_aureus	75.4443334388
+UniRef50_Q5HKL3: RarD protein|g__Staphylococcus.s__Staphylococcus_epidermidis	65.8494579009
+UniRef50_P98056: Cytochrome c oxidase subunit 1 homolog	141.2789852789
+UniRef50_P98056: Cytochrome c oxidase subunit 1 homolog|g__Rhodobacter.s__Rhodobacter_sphaeroides	141.2789852789
+UniRef50_J9YR02: BioY family protein	141.2515684687
+UniRef50_J9YR02: BioY family protein|g__Streptococcus.s__Streptococcus_mutans	141.2515684687
+UniRef50_D3QDA3: Peptidase, M16 family	141.2203427703
+UniRef50_D3QDA3: Peptidase, M16 family|g__Staphylococcus.s__Staphylococcus_aureus	74.7770938901
+UniRef50_D3QDA3: Peptidase, M16 family|g__Staphylococcus.s__Staphylococcus_epidermidis	66.4432488801
+UniRef50_A6UJ92	141.2154495421
+UniRef50_A6UJ92|g__Rhodobacter.s__Rhodobacter_sphaeroides	141.2154495421
+UniRef50_Q59928: Acetylornithine aminotransferase	141.1553501126
+UniRef50_Q59928: Acetylornithine aminotransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	91.6696965661
+UniRef50_Q59928: Acetylornithine aminotransferase|g__Streptococcus.s__Streptococcus_mutans	49.4856535465
+UniRef50_Q6GH28: Putative oligopeptide transport ATP-binding protein oppF2	141.1374136621
+UniRef50_Q6GH28: Putative oligopeptide transport ATP-binding protein oppF2|g__Staphylococcus.s__Staphylococcus_aureus	76.9039310117
+UniRef50_Q6GH28: Putative oligopeptide transport ATP-binding protein oppF2|g__Staphylococcus.s__Staphylococcus_epidermidis	64.2334826504
+UniRef50_Q18GT4: Ketol-acid reductoisomerase	141.1077114723
+UniRef50_Q18GT4: Ketol-acid reductoisomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	134.2898797519
+UniRef50_Q18GT4: Ketol-acid reductoisomerase|g__Acinetobacter.s__Acinetobacter_baumannii	6.7608317134
+UniRef50_Q18GT4: Ketol-acid reductoisomerase|unclassified	0.0570000070
+UniRef50_Q38YN7: Putative Holliday junction resolvase	140.8793311776
+UniRef50_Q38YN7: Putative Holliday junction resolvase|g__Staphylococcus.s__Staphylococcus_aureus	140.8793311776
+UniRef50_G7ZR43	140.8561513628
+UniRef50_G7ZR43|g__Staphylococcus.s__Staphylococcus_aureus	133.2227176893
+UniRef50_G7ZR43|g__Staphylococcus.s__Staphylococcus_epidermidis	7.6334336734
+UniRef50_Q2YXZ9: Probable CtpA-like serine protease	140.8504434391
+UniRef50_Q2YXZ9: Probable CtpA-like serine protease|g__Staphylococcus.s__Staphylococcus_epidermidis	88.2267049391
+UniRef50_Q2YXZ9: Probable CtpA-like serine protease|g__Staphylococcus.s__Staphylococcus_aureus	52.6237385000
+UniRef50_H8LDC1: Helix-turn-helix domain protein	140.8006300981
+UniRef50_H8LDC1: Helix-turn-helix domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	103.1895152246
+UniRef50_H8LDC1: Helix-turn-helix domain protein|g__Staphylococcus.s__Staphylococcus_aureus	37.6111148735
+UniRef50_Q4L675: Anthranilate synthase component II	140.7381662526
+UniRef50_Q4L675: Anthranilate synthase component II|g__Staphylococcus.s__Staphylococcus_epidermidis	88.4762794479
+UniRef50_Q4L675: Anthranilate synthase component II|g__Staphylococcus.s__Staphylococcus_aureus	52.2618868047
+UniRef50_Q3IV03	140.6498028101
+UniRef50_Q3IV03|g__Rhodobacter.s__Rhodobacter_sphaeroides	133.9618423122
+UniRef50_Q3IV03|unclassified	6.6879604980
+UniRef50_F4LW30: Galactitol-specific enzyme IIC component of PTS	140.6201005299
+UniRef50_F4LW30: Galactitol-specific enzyme IIC component of PTS|g__Staphylococcus.s__Staphylococcus_aureus	140.6201005299
+UniRef50_K0LNC6: Na+transporting ATP synthase	140.6088040788
+UniRef50_K0LNC6: Na+transporting ATP synthase|g__Staphylococcus.s__Staphylococcus_aureus	73.1840020538
+UniRef50_K0LNC6: Na+transporting ATP synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	67.4248020249
+UniRef50_B9E6T3: Phosphate-specific transport system accessory protein PhoU	140.4853711222
+UniRef50_B9E6T3: Phosphate-specific transport system accessory protein PhoU|g__Staphylococcus.s__Staphylococcus_aureus	72.8974856221
+UniRef50_B9E6T3: Phosphate-specific transport system accessory protein PhoU|g__Staphylococcus.s__Staphylococcus_epidermidis	67.5878855001
+UniRef50_C7ZW47: Membrane protein	140.4809083724
+UniRef50_C7ZW47: Membrane protein|g__Staphylococcus.s__Staphylococcus_epidermidis	69.9476422673
+UniRef50_C7ZW47: Membrane protein|g__Staphylococcus.s__Staphylococcus_aureus	69.7979719874
+UniRef50_C7ZW47: Membrane protein|unclassified	0.7352941176
+UniRef50_Q8DV69	140.4789236071
+UniRef50_Q8DV69|g__Streptococcus.s__Streptococcus_mutans	140.4789236071
+UniRef50_A3PIJ2	140.4560240818
+UniRef50_A3PIJ2|g__Rhodobacter.s__Rhodobacter_sphaeroides	140.4560240818
+UniRef50_Q3IUU2	140.4390819782
+UniRef50_Q3IUU2|unclassified	70.6629280742
+UniRef50_Q3IUU2|g__Rhodobacter.s__Rhodobacter_sphaeroides	69.7761539039
+UniRef50_A0RBY2	140.4062913099
+UniRef50_A0RBY2|g__Staphylococcus.s__Staphylococcus_aureus	86.0727415352
+UniRef50_A0RBY2|g__Staphylococcus.s__Staphylococcus_epidermidis	54.3335497747
+UniRef50_D3QHV2: Sec-independent protein translocase protein TatC	140.1451515107
+UniRef50_D3QHV2: Sec-independent protein translocase protein TatC|g__Staphylococcus.s__Staphylococcus_aureus	140.1451515107
+UniRef50_D3QIY9: Glutamate ABC transporter, periplasmic glutamine-binding protein	140.0776993220
+UniRef50_D3QIY9: Glutamate ABC transporter, periplasmic glutamine-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	140.0776993220
+UniRef50_D8HEX2	140.0504685869
+UniRef50_D8HEX2|g__Staphylococcus.s__Staphylococcus_aureus	140.0504685869
+UniRef50_X2GRS8: FAD-dependent pyridine nucleotide-disulfide oxidoreductase	139.8956878119
+UniRef50_X2GRS8: FAD-dependent pyridine nucleotide-disulfide oxidoreductase|g__Staphylococcus.s__Staphylococcus_aureus	139.8956878119
+UniRef50_K0L524: Polysaccharide biosynthesis family protein	139.7808587690
+UniRef50_K0L524: Polysaccharide biosynthesis family protein|g__Staphylococcus.s__Staphylococcus_aureus	139.7808587690
+UniRef50_P39788: Endonuclease III	139.7689284367
+UniRef50_P39788: Endonuclease III|g__Staphylococcus.s__Staphylococcus_aureus	78.3620585813
+UniRef50_P39788: Endonuclease III|g__Staphylococcus.s__Staphylococcus_epidermidis	61.4068698555
+UniRef50_R9YQF0: Alpha-acetolactate decarboxylase	139.7517347764
+UniRef50_R9YQF0: Alpha-acetolactate decarboxylase|g__Staphylococcus.s__Staphylococcus_aureus	139.7517347764
+UniRef50_D5VFT5: Acetolactate synthase, large subunit, biosynthetic type	139.6425790745
+UniRef50_D5VFT5: Acetolactate synthase, large subunit, biosynthetic type|g__Rhodobacter.s__Rhodobacter_sphaeroides	139.6425790745
+UniRef50_UPI00003793A9: hypothetical protein	139.6254463841
+UniRef50_UPI00003793A9: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	113.4312608483
+UniRef50_UPI00003793A9: hypothetical protein|unclassified	26.1941855358
+UniRef50_G8W9Y6	139.6087616901
+UniRef50_G8W9Y6|g__Staphylococcus.s__Staphylococcus_epidermidis	139.6087616901
+UniRef50_A6M2U6: Response regulator receiver protein	139.4245012251
+UniRef50_A6M2U6: Response regulator receiver protein|g__Clostridium.s__Clostridium_beijerinckii	139.4245012251
+UniRef50_E6V848: Short-chain dehydrogenase/reductase SDR	139.4209331629
+UniRef50_E6V848: Short-chain dehydrogenase/reductase SDR|g__Rhodobacter.s__Rhodobacter_sphaeroides	139.4209331629
+UniRef50_P00282: Azurin	139.2857142857
+UniRef50_P00282: Azurin|g__Pseudomonas.s__Pseudomonas_aeruginosa	139.2857142857
+UniRef50_A3MKU1: Uridylate kinase	139.0933777916
+UniRef50_A3MKU1: Uridylate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	76.7717099315
+UniRef50_A3MKU1: Uridylate kinase|g__Staphylococcus.s__Staphylococcus_aureus	62.1547231479
+UniRef50_A3MKU1: Uridylate kinase|unclassified	0.1669447122
+UniRef50_G8V1X3: Citrate transporter family protein	139.0582169412
+UniRef50_G8V1X3: Citrate transporter family protein|g__Staphylococcus.s__Staphylococcus_aureus	139.0582169412
+UniRef50_Q8GM57: 50S ribosomal protein L2	139.0469003843
+UniRef50_Q8GM57: 50S ribosomal protein L2|g__Staphylococcus.s__Staphylococcus_epidermidis	69.7521888225
+UniRef50_Q8GM57: 50S ribosomal protein L2|g__Staphylococcus.s__Staphylococcus_aureus	69.2947115618
+UniRef50_C5N580	139.0114760006
+UniRef50_C5N580|g__Staphylococcus.s__Staphylococcus_aureus	73.4915847791
+UniRef50_C5N580|g__Staphylococcus.s__Staphylococcus_epidermidis	65.5198912214
+UniRef50_I0C2E4: Hydrogen peroxide-inducible genes activator	138.8914721664
+UniRef50_I0C2E4: Hydrogen peroxide-inducible genes activator|g__Staphylococcus.s__Staphylococcus_epidermidis	84.2167691931
+UniRef50_I0C2E4: Hydrogen peroxide-inducible genes activator|g__Staphylococcus.s__Staphylococcus_aureus	54.6747029733
+UniRef50_U5NMX6	138.6899455661
+UniRef50_U5NMX6|g__Rhodobacter.s__Rhodobacter_sphaeroides	84.5698264682
+UniRef50_U5NMX6|unclassified	54.1201190979
+UniRef50_C5MYZ4	138.6880601325
+UniRef50_C5MYZ4|g__Staphylococcus.s__Staphylococcus_aureus	138.6127510480
+UniRef50_C5MYZ4|unclassified	0.0753090845
+UniRef50_Q3Z8B4: 3-methyl-2-oxobutanoate hydroxymethyltransferase	138.6425861223
+UniRef50_Q3Z8B4: 3-methyl-2-oxobutanoate hydroxymethyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	138.5802821644
+UniRef50_Q3Z8B4: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.0623039578
+UniRef50_Q2FH48: Phosphate-binding protein PstS	138.6425832076
+UniRef50_Q2FH48: Phosphate-binding protein PstS|g__Staphylococcus.s__Staphylococcus_aureus	78.7262533204
+UniRef50_Q2FH48: Phosphate-binding protein PstS|g__Staphylococcus.s__Staphylococcus_epidermidis	59.9163298872
+UniRef50_D0K910	138.6135873033
+UniRef50_D0K910|g__Staphylococcus.s__Staphylococcus_epidermidis	80.3813792607
+UniRef50_D0K910|g__Staphylococcus.s__Staphylococcus_aureus	58.2322080426
+UniRef50_Q6G7J6: UPF0340 protein SAS2017	138.5660865325
+UniRef50_Q6G7J6: UPF0340 protein SAS2017|g__Staphylococcus.s__Staphylococcus_aureus	138.5660865325
+UniRef50_C5N0F9: X-Pro dipeptidyl-peptidase C-terminal non-catalytic domain protein	138.5453827165
+UniRef50_C5N0F9: X-Pro dipeptidyl-peptidase C-terminal non-catalytic domain protein|g__Staphylococcus.s__Staphylococcus_aureus	138.5453827165
+UniRef50_Q5HJG9	138.3469883473
+UniRef50_Q5HJG9|g__Staphylococcus.s__Staphylococcus_aureus	138.3469883473
+UniRef50_A5UJV3	138.2210848792
+UniRef50_A5UJV3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	136.4154047203
+UniRef50_A5UJV3|unclassified	1.8056801589
+UniRef50_Q8VVU3: Replication-associated protein	138.0575405766
+UniRef50_Q8VVU3: Replication-associated protein|g__Staphylococcus.s__Staphylococcus_epidermidis	75.0752126180
+UniRef50_Q8VVU3: Replication-associated protein|g__Staphylococcus.s__Staphylococcus_aureus	62.9823279585
+UniRef50_Q5HPV8: Ribonuclease 3	138.0066425378
+UniRef50_Q5HPV8: Ribonuclease 3|g__Staphylococcus.s__Staphylococcus_epidermidis	138.0066425378
+UniRef50_Q6GHW0: UPF0348 protein SAR1099	137.7442591802
+UniRef50_Q6GHW0: UPF0348 protein SAR1099|g__Staphylococcus.s__Staphylococcus_aureus	86.0359154022
+UniRef50_Q6GHW0: UPF0348 protein SAR1099|g__Staphylococcus.s__Staphylococcus_epidermidis	51.7083437780
+UniRef50_Q3IV91	137.6931877471
+UniRef50_Q3IV91|g__Rhodobacter.s__Rhodobacter_sphaeroides	79.2640117885
+UniRef50_Q3IV91|unclassified	58.4291759586
+UniRef50_Q3IWW9	137.6588368579
+UniRef50_Q3IWW9|g__Rhodobacter.s__Rhodobacter_sphaeroides	137.4469538621
+UniRef50_Q3IWW9|unclassified	0.2118829958
+UniRef50_Q6GDB7: UPF0312 protein SAR2769	137.5976008063
+UniRef50_Q6GDB7: UPF0312 protein SAR2769|g__Staphylococcus.s__Staphylococcus_aureus	137.5976008063
+UniRef50_F4FN41: Transcriptional regulator, AraC family	137.5551061551
+UniRef50_F4FN41: Transcriptional regulator, AraC family|g__Staphylococcus.s__Staphylococcus_epidermidis	89.4825079332
+UniRef50_F4FN41: Transcriptional regulator, AraC family|g__Staphylococcus.s__Staphylococcus_aureus	48.0725982218
+UniRef50_Q8CP86: Putative branched-chain amino acid carrier protein SE_1090	137.4383097203
+UniRef50_Q8CP86: Putative branched-chain amino acid carrier protein SE_1090|g__Staphylococcus.s__Staphylococcus_aureus	70.1423432395
+UniRef50_Q8CP86: Putative branched-chain amino acid carrier protein SE_1090|g__Staphylococcus.s__Staphylococcus_epidermidis	67.2959664808
+UniRef50_W8U5L3: Membrane protein	137.3049784612
+UniRef50_W8U5L3: Membrane protein|g__Staphylococcus.s__Staphylococcus_epidermidis	76.1148558848
+UniRef50_W8U5L3: Membrane protein|g__Staphylococcus.s__Staphylococcus_aureus	61.1901225764
+UniRef50_Q6GHU5: Ribonuclease HIII	137.2981294874
+UniRef50_Q6GHU5: Ribonuclease HIII|g__Staphylococcus.s__Staphylococcus_epidermidis	86.6758744170
+UniRef50_Q6GHU5: Ribonuclease HIII|g__Staphylococcus.s__Staphylococcus_aureus	49.6329464654
+UniRef50_Q6GHU5: Ribonuclease HIII|unclassified	0.9893086050
+UniRef50_Q795R8	137.1595627679
+UniRef50_Q795R8|g__Staphylococcus.s__Staphylococcus_epidermidis	86.8551064891
+UniRef50_Q795R8|g__Staphylococcus.s__Staphylococcus_aureus	50.3044562788
+UniRef50_E8SI06: Hydroxyacylglutathione hydrolase	136.9880298221
+UniRef50_E8SI06: Hydroxyacylglutathione hydrolase|g__Staphylococcus.s__Staphylococcus_epidermidis	79.5366836892
+UniRef50_E8SI06: Hydroxyacylglutathione hydrolase|g__Staphylococcus.s__Staphylococcus_aureus	57.4513461329
+UniRef50_Q5HPS0: tRNA pseudouridine synthase B	136.9240086031
+UniRef50_Q5HPS0: tRNA pseudouridine synthase B|g__Staphylococcus.s__Staphylococcus_aureus	73.6591925816
+UniRef50_Q5HPS0: tRNA pseudouridine synthase B|g__Staphylococcus.s__Staphylococcus_epidermidis	63.2648160215
+UniRef50_Q4A044: Histidinol dehydrogenase	136.8548546572
+UniRef50_Q4A044: Histidinol dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	136.7587906891
+UniRef50_Q4A044: Histidinol dehydrogenase|unclassified	0.0960639680
+UniRef50_A2SL87: ABC transporter permease protein	136.7980104486
+UniRef50_A2SL87: ABC transporter permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	136.7980104486
+UniRef50_D7URR5: Cell shape-determining protein MreC	136.7641504945
+UniRef50_D7URR5: Cell shape-determining protein MreC|g__Staphylococcus.s__Staphylococcus_epidermidis	72.0903432315
+UniRef50_D7URR5: Cell shape-determining protein MreC|g__Staphylococcus.s__Staphylococcus_aureus	64.6738072630
+UniRef50_Q2YVY3: Peptidyl-tRNA hydrolase	136.6936716163
+UniRef50_Q2YVY3: Peptidyl-tRNA hydrolase|g__Staphylococcus.s__Staphylococcus_aureus	136.2374297072
+UniRef50_Q2YVY3: Peptidyl-tRNA hydrolase|unclassified	0.4562419091
+UniRef50_D3QET5	136.6923730935
+UniRef50_D3QET5|g__Staphylococcus.s__Staphylococcus_epidermidis	68.4975591790
+UniRef50_D3QET5|g__Staphylococcus.s__Staphylococcus_aureus	68.1948139146
+UniRef50_Q5HPQ8: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase	136.6049093407
+UniRef50_Q5HPQ8: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	99.2381703830
+UniRef50_Q5HPQ8: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase|g__Streptococcus.s__Streptococcus_mutans	37.3667389577
+UniRef50_Q3IXK5	136.5861285713
+UniRef50_Q3IXK5|g__Rhodobacter.s__Rhodobacter_sphaeroides	136.0319687934
+UniRef50_Q3IXK5|unclassified	0.5541597779
+UniRef50_Q5HFR9: Pyrroline-5-carboxylate reductase	136.5696860436
+UniRef50_Q5HFR9: Pyrroline-5-carboxylate reductase|g__Staphylococcus.s__Staphylococcus_aureus	72.4461569327
+UniRef50_Q5HFR9: Pyrroline-5-carboxylate reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	64.1235291109
+UniRef50_G8RDK6	136.5170107178
+UniRef50_G8RDK6|g__Staphylococcus.s__Staphylococcus_aureus	136.5170107178
+UniRef50_Q2FJ09: Putative antiporter subunit mnhG2	136.3772995790
+UniRef50_Q2FJ09: Putative antiporter subunit mnhG2|g__Staphylococcus.s__Staphylococcus_aureus	136.3772995790
+UniRef50_A1B5W0: RNA polymerase sigma factor	136.3516506712
+UniRef50_A1B5W0: RNA polymerase sigma factor|g__Rhodobacter.s__Rhodobacter_sphaeroides	136.3516506712
+UniRef50_L7WTV2	136.3165751632
+UniRef50_L7WTV2|g__Staphylococcus.s__Staphylococcus_aureus	136.3165751632
+UniRef50_U5UKJ6	136.2809986170
+UniRef50_U5UKJ6|g__Staphylococcus.s__Staphylococcus_epidermidis	136.2809986170
+UniRef50_D2J6L2: Universal stress protein family	136.2251164907
+UniRef50_D2J6L2: Universal stress protein family|g__Staphylococcus.s__Staphylococcus_epidermidis	70.2845891632
+UniRef50_D2J6L2: Universal stress protein family|g__Staphylococcus.s__Staphylococcus_aureus	65.9405273275
+UniRef50_B8ZJM7: Phosphoribosylaminoimidazole-succinocarboxamide synthase	136.2162509583
+UniRef50_B8ZJM7: Phosphoribosylaminoimidazole-succinocarboxamide synthase|g__Staphylococcus.s__Staphylococcus_aureus	86.2059368363
+UniRef50_B8ZJM7: Phosphoribosylaminoimidazole-succinocarboxamide synthase|g__Streptococcus.s__Streptococcus_mutans	39.1061064018
+UniRef50_B8ZJM7: Phosphoribosylaminoimidazole-succinocarboxamide synthase|g__Streptococcus.s__Streptococcus_agalactiae	10.6155608456
+UniRef50_B8ZJM7: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.2886468746
+UniRef50_M5AFG5: ABC-type transporter ATP-binding protein EcsA	136.1421009381
+UniRef50_M5AFG5: ABC-type transporter ATP-binding protein EcsA|g__Staphylococcus.s__Staphylococcus_epidermidis	76.4451841109
+UniRef50_M5AFG5: ABC-type transporter ATP-binding protein EcsA|g__Streptococcus.s__Streptococcus_mutans	59.6969168272
+UniRef50_A2RLY6: Leucine--tRNA ligase	136.0872475543
+UniRef50_A2RLY6: Leucine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	133.6472693798
+UniRef50_A2RLY6: Leucine--tRNA ligase|g__Streptococcus.s__Streptococcus_agalactiae	2.3476010063
+UniRef50_A2RLY6: Leucine--tRNA ligase|unclassified	0.0923771682
+UniRef50_A7FZ47: 30S ribosomal protein S13	136.0840365182
+UniRef50_A7FZ47: 30S ribosomal protein S13|g__Staphylococcus.s__Staphylococcus_epidermidis	72.8695531614
+UniRef50_A7FZ47: 30S ribosomal protein S13|g__Staphylococcus.s__Staphylococcus_aureus	63.2144833568
+UniRef50_Q49X25: Ribosome maturation factor RimM	136.0436392815
+UniRef50_Q49X25: Ribosome maturation factor RimM|g__Staphylococcus.s__Staphylococcus_aureus	76.0771263381
+UniRef50_Q49X25: Ribosome maturation factor RimM|g__Staphylococcus.s__Staphylococcus_epidermidis	59.9665129434
+UniRef50_G7ZNW2	136.0409984808
+UniRef50_G7ZNW2|g__Staphylococcus.s__Staphylococcus_epidermidis	71.9584399263
+UniRef50_G7ZNW2|g__Staphylococcus.s__Staphylococcus_aureus	64.0825585544
+UniRef50_K0LZ01: Aminoacylase	136.0145555926
+UniRef50_K0LZ01: Aminoacylase|g__Staphylococcus.s__Staphylococcus_aureus	136.0145555926
+UniRef50_Q92QK5: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B	135.9825828466
+UniRef50_Q92QK5: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B|g__Rhodobacter.s__Rhodobacter_sphaeroides	130.7791648378
+UniRef50_Q92QK5: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4660009438
+UniRef50_Q92QK5: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B|g__Acinetobacter.s__Acinetobacter_baumannii	1.7374170650
+UniRef50_T2EPG0: Dihydroneopterin aldolase	135.8695652174
+UniRef50_T2EPG0: Dihydroneopterin aldolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	135.8695652174
+UniRef50_I0C5T9	135.7924491009
+UniRef50_I0C5T9|g__Staphylococcus.s__Staphylococcus_aureus	80.5714539199
+UniRef50_I0C5T9|g__Staphylococcus.s__Staphylococcus_epidermidis	55.2209951809
+UniRef50_Q3IV08	135.7798433557
+UniRef50_Q3IV08|g__Rhodobacter.s__Rhodobacter_sphaeroides	135.7798433557
+UniRef50_E8SJM3: Siderophore staphylobactin biosynthesis protein SbnC	135.7280838534
+UniRef50_E8SJM3: Siderophore staphylobactin biosynthesis protein SbnC|g__Staphylococcus.s__Staphylococcus_aureus	135.7280838534
+UniRef50_A4WT86: Autoinducer-binding domain protein	135.6908164225
+UniRef50_A4WT86: Autoinducer-binding domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	130.9516600124
+UniRef50_A4WT86: Autoinducer-binding domain protein|unclassified	4.7391564100
+UniRef50_Q8CU51	135.6862226035
+UniRef50_Q8CU51|g__Staphylococcus.s__Staphylococcus_epidermidis	90.7652787923
+UniRef50_Q8CU51|g__Staphylococcus.s__Staphylococcus_aureus	44.9209438112
+UniRef50_A7X311	135.6769527741
+UniRef50_A7X311|g__Staphylococcus.s__Staphylococcus_aureus	135.6769527741
+UniRef50_P0AFD8: NADH-quinone oxidoreductase subunit I	135.6552119993
+UniRef50_P0AFD8: NADH-quinone oxidoreductase subunit I|g__Escherichia.s__Escherichia_coli	121.1494927178
+UniRef50_P0AFD8: NADH-quinone oxidoreductase subunit I|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.0599162461
+UniRef50_P0AFD8: NADH-quinone oxidoreductase subunit I|unclassified	3.5973741999
+UniRef50_P0AFD8: NADH-quinone oxidoreductase subunit I|g__Acinetobacter.s__Acinetobacter_baumannii	1.8484288355
+UniRef50_Q9HWF5: Protein translocase subunit SecY	135.6319557927
+UniRef50_Q9HWF5: Protein translocase subunit SecY|g__Rhodobacter.s__Rhodobacter_sphaeroides	124.5006614487
+UniRef50_Q9HWF5: Protein translocase subunit SecY|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.1312943440
+UniRef50_L7WYU2: Aldo/keto reductase	135.5829911778
+UniRef50_L7WYU2: Aldo/keto reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	135.5829911778
+UniRef50_B9E8Y3: Xanthine phosphoribosyltransferase	135.5820639220
+UniRef50_B9E8Y3: Xanthine phosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	76.4663767696
+UniRef50_B9E8Y3: Xanthine phosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	58.6825774655
+UniRef50_B9E8Y3: Xanthine phosphoribosyltransferase|unclassified	0.4331096870
+UniRef50_Q8CSM8: Aspartokinase	135.4688553001
+UniRef50_Q8CSM8: Aspartokinase|g__Staphylococcus.s__Staphylococcus_epidermidis	81.3702743180
+UniRef50_Q8CSM8: Aspartokinase|g__Staphylococcus.s__Staphylococcus_aureus	54.0985809821
+UniRef50_O33587: AgrC	135.4440965260
+UniRef50_O33587: AgrC|g__Staphylococcus.s__Staphylococcus_aureus	73.9529552751
+UniRef50_O33587: AgrC|g__Staphylococcus.s__Staphylococcus_epidermidis	60.6399955871
+UniRef50_O33587: AgrC|unclassified	0.8511456639
+UniRef50_I0C7W6: Two-component sensor histidine kinase	135.4166223647
+UniRef50_I0C7W6: Two-component sensor histidine kinase|g__Staphylococcus.s__Staphylococcus_aureus	70.4815651722
+UniRef50_I0C7W6: Two-component sensor histidine kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	64.9350571925
+UniRef50_E8SH59: Chromosome replication initiation protein dnaD	135.3415649964
+UniRef50_E8SH59: Chromosome replication initiation protein dnaD|g__Staphylococcus.s__Staphylococcus_epidermidis	68.0901440283
+UniRef50_E8SH59: Chromosome replication initiation protein dnaD|g__Staphylococcus.s__Staphylococcus_aureus	67.2514209681
+UniRef50_A0A037L527: SPP1 family phage portal protein	135.3103523429
+UniRef50_A0A037L527: SPP1 family phage portal protein|g__Staphylococcus.s__Staphylococcus_aureus	135.3103523429
+UniRef50_B9DQ89: ATP phosphoribosyltransferase	135.2881145960
+UniRef50_B9DQ89: ATP phosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	134.5905993009
+UniRef50_B9DQ89: ATP phosphoribosyltransferase|unclassified	0.6975152951
+UniRef50_Q5HR30: Glycosyl transferase, group 2 family protein	135.1771445634
+UniRef50_Q5HR30: Glycosyl transferase, group 2 family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	135.1771445634
+UniRef50_G9WG62: ABC transporterpermease protein	135.1738192821
+UniRef50_G9WG62: ABC transporterpermease protein|g__Staphylococcus.s__Staphylococcus_epidermidis	135.1738192821
+UniRef50_Q3IV38	135.1328387372
+UniRef50_Q3IV38|g__Rhodobacter.s__Rhodobacter_sphaeroides	131.7391254437
+UniRef50_Q3IV38|unclassified	3.3937132935
+UniRef50_I0C1D1	135.0655971568
+UniRef50_I0C1D1|g__Staphylococcus.s__Staphylococcus_aureus	135.0655971568
+UniRef50_Q989G8: Deoxyguanosinetriphosphate triphosphohydrolase-like protein 2	135.0439996256
+UniRef50_Q989G8: Deoxyguanosinetriphosphate triphosphohydrolase-like protein 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	135.0439996256
+UniRef50_A7K529: Trap transporter solute receptor, taxi family	135.0317255266
+UniRef50_A7K529: Trap transporter solute receptor, taxi family|g__Rhodobacter.s__Rhodobacter_sphaeroides	133.7623776807
+UniRef50_A7K529: Trap transporter solute receptor, taxi family|unclassified	1.2693478459
+UniRef50_D3QF90: Manganese ABC transporter, inner membrane permease protein SitD	135.0167389125
+UniRef50_D3QF90: Manganese ABC transporter, inner membrane permease protein SitD|g__Staphylococcus.s__Staphylococcus_aureus	135.0167389125
+UniRef50_P50205: Acetoacetyl-CoA reductase	135.0011050321
+UniRef50_P50205: Acetoacetyl-CoA reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	133.4152228509
+UniRef50_P50205: Acetoacetyl-CoA reductase|unclassified	1.5858821812
+UniRef50_T1Y630: Long-chain-fatty-acid--CoA ligase	134.9101897056
+UniRef50_T1Y630: Long-chain-fatty-acid--CoA ligase|g__Staphylococcus.s__Staphylococcus_aureus	134.9101897056
+UniRef50_Q8CPX4: Phosphoglycerate mutase	134.8998870947
+UniRef50_Q8CPX4: Phosphoglycerate mutase|g__Staphylococcus.s__Staphylococcus_epidermidis	134.8998870947
+UniRef50_F8KHS4: RNA pseudouridylate synthase	134.7184729885
+UniRef50_F8KHS4: RNA pseudouridylate synthase|g__Staphylococcus.s__Staphylococcus_aureus	67.8978320666
+UniRef50_F8KHS4: RNA pseudouridylate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	66.8206409219
+UniRef50_C4K6C1: 5'-methylthioadenosine/S-adenosylhomocysteine nucleosidase	134.6784445214
+UniRef50_C4K6C1: 5'-methylthioadenosine/S-adenosylhomocysteine nucleosidase|g__Staphylococcus.s__Staphylococcus_aureus	87.8108120698
+UniRef50_C4K6C1: 5'-methylthioadenosine/S-adenosylhomocysteine nucleosidase|g__Escherichia.s__Escherichia_coli	46.8676324516
+UniRef50_P37216: Phospho-2-dehydro-3-deoxyheptonate aldolase 2, chloroplastic	134.5988272671
+UniRef50_P37216: Phospho-2-dehydro-3-deoxyheptonate aldolase 2, chloroplastic|g__Rhodobacter.s__Rhodobacter_sphaeroides	134.1321473183
+UniRef50_P37216: Phospho-2-dehydro-3-deoxyheptonate aldolase 2, chloroplastic|unclassified	0.4666799487
+UniRef50_Q2YUY9: N-acetylmuramic acid 6-phosphate etherase	134.4966684086
+UniRef50_Q2YUY9: N-acetylmuramic acid 6-phosphate etherase|g__Staphylococcus.s__Staphylococcus_aureus	134.4185664953
+UniRef50_Q2YUY9: N-acetylmuramic acid 6-phosphate etherase|unclassified	0.0781019133
+UniRef50_C5N315	134.4828023635
+UniRef50_C5N315|g__Staphylococcus.s__Staphylococcus_aureus	134.4828023635
+UniRef50_D9RBB0: ABC-2 type transport system permease protein	134.4464188990
+UniRef50_D9RBB0: ABC-2 type transport system permease protein|g__Staphylococcus.s__Staphylococcus_epidermidis	82.6814248313
+UniRef50_D9RBB0: ABC-2 type transport system permease protein|g__Staphylococcus.s__Staphylococcus_aureus	51.7649940677
+UniRef50_K0LZX2	134.3701222932
+UniRef50_K0LZX2|g__Staphylococcus.s__Staphylococcus_aureus	134.3701222932
+UniRef50_H5YAU3: ABC-type spermidine/putrescine transport system, permease component II	134.3691311488
+UniRef50_H5YAU3: ABC-type spermidine/putrescine transport system, permease component II|g__Rhodobacter.s__Rhodobacter_sphaeroides	134.3691311488
+UniRef50_I0C2F4	134.3293512614
+UniRef50_I0C2F4|g__Staphylococcus.s__Staphylococcus_aureus	79.1714117561
+UniRef50_I0C2F4|g__Staphylococcus.s__Staphylococcus_epidermidis	53.8856748742
+UniRef50_I0C2F4|unclassified	1.2722646310
+UniRef50_C5N4H6	134.2982019449
+UniRef50_C5N4H6|g__Staphylococcus.s__Staphylococcus_aureus	85.3624896815
+UniRef50_C5N4H6|g__Staphylococcus.s__Staphylococcus_epidermidis	48.9357122634
+UniRef50_Q2YYV8: Imidazolonepropionase	134.1366079392
+UniRef50_Q2YYV8: Imidazolonepropionase|g__Staphylococcus.s__Staphylococcus_aureus	134.1366079392
+UniRef50_Q5HPT2: Ribosome-recycling factor	134.0947996592
+UniRef50_Q5HPT2: Ribosome-recycling factor|g__Staphylococcus.s__Staphylococcus_aureus	134.0947996592
+UniRef50_G7M7P5: Aspartate-semialdehyde dehydrogenase	134.0456695839
+UniRef50_G7M7P5: Aspartate-semialdehyde dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	123.5392731572
+UniRef50_G7M7P5: Aspartate-semialdehyde dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	10.5063964267
+UniRef50_F5ZJA3: Sugar phosphotransferase system (PTS), fructose-specific family, IIA component	134.0258255956
+UniRef50_F5ZJA3: Sugar phosphotransferase system (PTS), fructose-specific family, IIA component|g__Streptococcus.s__Streptococcus_mutans	134.0258255956
+UniRef50_Q7UA36: ATP-dependent Clp protease proteolytic subunit 1	133.9958450124
+UniRef50_Q7UA36: ATP-dependent Clp protease proteolytic subunit 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	133.9958450124
+UniRef50_Q4L4Q7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	133.9777981513
+UniRef50_Q4L4Q7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	133.9777981513
+UniRef50_P35163: Transcriptional regulatory protein ResD	133.9617038906
+UniRef50_P35163: Transcriptional regulatory protein ResD|g__Staphylococcus.s__Staphylococcus_epidermidis	75.3631247485
+UniRef50_P35163: Transcriptional regulatory protein ResD|g__Staphylococcus.s__Staphylococcus_aureus	58.5985791422
+UniRef50_I0C0Q8: 5'-nucleotidase	133.9538539688
+UniRef50_I0C0Q8: 5'-nucleotidase|g__Staphylococcus.s__Staphylococcus_aureus	133.9538539688
+UniRef50_B1LDG8	133.9285714286
+UniRef50_B1LDG8|g__Escherichia.s__Escherichia_coli	133.9285714286
+UniRef50_Q6GE63	133.9141923199
+UniRef50_Q6GE63|g__Staphylococcus.s__Staphylococcus_aureus	133.9141923199
+UniRef50_Q53726: Heptaprenylglyceryl phosphate synthase	133.8875556398
+UniRef50_Q53726: Heptaprenylglyceryl phosphate synthase|g__Staphylococcus.s__Staphylococcus_aureus	133.8875556398
+UniRef50_A4WTZ9: Glycoside hydrolase, family 16	133.8424661076
+UniRef50_A4WTZ9: Glycoside hydrolase, family 16|g__Rhodobacter.s__Rhodobacter_sphaeroides	133.8424661076
+UniRef50_Q5HF86: Glyceraldehyde-3-phosphate dehydrogenase 2	133.7702451079
+UniRef50_Q5HF86: Glyceraldehyde-3-phosphate dehydrogenase 2|g__Staphylococcus.s__Staphylococcus_aureus	76.3054057166
+UniRef50_Q5HF86: Glyceraldehyde-3-phosphate dehydrogenase 2|g__Staphylococcus.s__Staphylococcus_epidermidis	57.1163639733
+UniRef50_Q5HF86: Glyceraldehyde-3-phosphate dehydrogenase 2|unclassified	0.3484754180
+UniRef50_Q65JY3: Phospho-N-acetylmuramoyl-pentapeptide-transferase	133.7638070541
+UniRef50_Q65JY3: Phospho-N-acetylmuramoyl-pentapeptide-transferase|g__Staphylococcus.s__Staphylococcus_epidermidis	75.3318865277
+UniRef50_Q65JY3: Phospho-N-acetylmuramoyl-pentapeptide-transferase|g__Staphylococcus.s__Staphylococcus_aureus	58.3676122838
+UniRef50_Q65JY3: Phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.0643082426
+UniRef50_Q88EH6: Acetyl-coenzyme A synthetase 1	133.7162041216
+UniRef50_Q88EH6: Acetyl-coenzyme A synthetase 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	96.6368758598
+UniRef50_Q88EH6: Acetyl-coenzyme A synthetase 1|g__Escherichia.s__Escherichia_coli	30.5353586565
+UniRef50_Q88EH6: Acetyl-coenzyme A synthetase 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3778324357
+UniRef50_Q88EH6: Acetyl-coenzyme A synthetase 1|unclassified	0.1661371696
+UniRef50_V9VUH1: Cation:proton antiporter	133.4885328295
+UniRef50_V9VUH1: Cation:proton antiporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	133.4885328295
+UniRef50_S1GG85: Phage protein	133.3333333333
+UniRef50_S1GG85: Phage protein|g__Escherichia.s__Escherichia_coli	133.3333333333
+UniRef50_I3TTH2	133.2092087035
+UniRef50_I3TTH2|g__Rhodobacter.s__Rhodobacter_sphaeroides	126.5415743850
+UniRef50_I3TTH2|unclassified	6.6676343186
+UniRef50_A7X240: Tryptophan synthase alpha chain	133.1429102248
+UniRef50_A7X240: Tryptophan synthase alpha chain|g__Staphylococcus.s__Staphylococcus_epidermidis	76.0755952896
+UniRef50_A7X240: Tryptophan synthase alpha chain|g__Staphylococcus.s__Staphylococcus_aureus	57.0673149353
+UniRef50_F3U3I1: Trimethylamine-N-oxide reductase c-type cytochrome TorC	132.9834852436
+UniRef50_F3U3I1: Trimethylamine-N-oxide reductase c-type cytochrome TorC|g__Rhodobacter.s__Rhodobacter_sphaeroides	132.9834852436
+UniRef50_A0A059MSQ1: Nitrate reductase	132.9574073698
+UniRef50_A0A059MSQ1: Nitrate reductase|g__Staphylococcus.s__Staphylococcus_aureus	132.9574073698
+UniRef50_A4WNY5	132.9023994780
+UniRef50_A4WNY5|g__Rhodobacter.s__Rhodobacter_sphaeroides	131.7625776020
+UniRef50_A4WNY5|unclassified	1.1398218760
+UniRef50_A0RIF4: Branched-chain alpha-keto acid dehydrogenase E2 component	132.8496182703
+UniRef50_A0RIF4: Branched-chain alpha-keto acid dehydrogenase E2 component|g__Staphylococcus.s__Staphylococcus_aureus	69.3381431245
+UniRef50_A0RIF4: Branched-chain alpha-keto acid dehydrogenase E2 component|g__Staphylococcus.s__Staphylococcus_epidermidis	63.5114751458
+UniRef50_U4PPL6	132.7475127344
+UniRef50_U4PPL6|g__Rhodobacter.s__Rhodobacter_sphaeroides	130.8400470608
+UniRef50_U4PPL6|unclassified	1.9074656736
+UniRef50_Q1GRQ0: 30S ribosomal protein S2	132.7449597618
+UniRef50_Q1GRQ0: 30S ribosomal protein S2|g__Rhodobacter.s__Rhodobacter_sphaeroides	123.4827617235
+UniRef50_Q1GRQ0: 30S ribosomal protein S2|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2621980382
+UniRef50_Q4L300: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	132.7363094872
+UniRef50_Q4L300: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	100.9873362128
+UniRef50_Q4L300: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	31.7489732745
+UniRef50_C7ZTN4: Acyl-CoA dehydrogenase	132.7011469306
+UniRef50_C7ZTN4: Acyl-CoA dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	132.7011469306
+UniRef50_Q8CT00	132.6139796187
+UniRef50_Q8CT00|g__Staphylococcus.s__Staphylococcus_epidermidis	132.6139796187
+UniRef50_Q8CRZ0	132.5512431546
+UniRef50_Q8CRZ0|g__Staphylococcus.s__Staphylococcus_epidermidis	132.5512431546
+UniRef50_B9DKC4: Haloacid dehalogenase-like hydrolase family protein	132.4932941696
+UniRef50_B9DKC4: Haloacid dehalogenase-like hydrolase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	74.8658555764
+UniRef50_B9DKC4: Haloacid dehalogenase-like hydrolase family protein|g__Staphylococcus.s__Staphylococcus_aureus	57.6274385932
+UniRef50_Q5HNZ4: Ferric uptake regulation protein	132.4095332564
+UniRef50_Q5HNZ4: Ferric uptake regulation protein|g__Staphylococcus.s__Staphylococcus_aureus	93.9486099150
+UniRef50_Q5HNZ4: Ferric uptake regulation protein|g__Staphylococcus.s__Staphylococcus_epidermidis	38.4609233414
+UniRef50_Q8CT38	132.3659301792
+UniRef50_Q8CT38|g__Staphylococcus.s__Staphylococcus_epidermidis	132.3659301792
+UniRef50_Q4L3X4: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	132.3657288881
+UniRef50_Q4L3X4: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	132.3657288881
+UniRef50_D5AU02	132.3378173221
+UniRef50_D5AU02|g__Rhodobacter.s__Rhodobacter_sphaeroides	131.5500840980
+UniRef50_D5AU02|unclassified	0.7877332241
+UniRef50_A1WG04: Nitrilase/cyanide hydratase and apolipoprotein N-acyltransferase	132.2696606364
+UniRef50_A1WG04: Nitrilase/cyanide hydratase and apolipoprotein N-acyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	132.2696606364
+UniRef50_F8KJ61: DNA-3-methyladenine glycosylase I	132.2684521684
+UniRef50_F8KJ61: DNA-3-methyladenine glycosylase I|g__Staphylococcus.s__Staphylococcus_aureus	100.4355234254
+UniRef50_F8KJ61: DNA-3-methyladenine glycosylase I|g__Staphylococcus.s__Staphylococcus_epidermidis	31.8329287430
+UniRef50_Q81FQ4: Nucleoside diphosphate kinase	132.2192109203
+UniRef50_Q81FQ4: Nucleoside diphosphate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	132.0920650999
+UniRef50_Q81FQ4: Nucleoside diphosphate kinase|unclassified	0.1271458203
+UniRef50_Q4L9M0: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	132.1942446043
+UniRef50_Q4L9M0: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	132.1942446043
+UniRef50_A1UT83: 50S ribosomal protein L13	132.0815601376
+UniRef50_A1UT83: 50S ribosomal protein L13|g__Rhodobacter.s__Rhodobacter_sphaeroides	132.0815601376
+UniRef50_C7ZTG5: Glycosyl transferase	132.0558534233
+UniRef50_C7ZTG5: Glycosyl transferase|g__Staphylococcus.s__Staphylococcus_aureus	132.0558534233
+UniRef50_A4WQY8: Cytochrome c-type biogenesis protein CcmE	132.0086287235
+UniRef50_A4WQY8: Cytochrome c-type biogenesis protein CcmE|g__Rhodobacter.s__Rhodobacter_sphaeroides	132.0086287235
+UniRef50_D3QE86	131.9171976839
+UniRef50_D3QE86|g__Staphylococcus.s__Staphylococcus_aureus	83.4237520549
+UniRef50_D3QE86|g__Staphylococcus.s__Staphylococcus_epidermidis	48.3225995565
+UniRef50_D3QE86|unclassified	0.1708460726
+UniRef50_Q8UEY5: CTP synthase	131.7898095809
+UniRef50_Q8UEY5: CTP synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	99.5812071613
+UniRef50_Q8UEY5: CTP synthase|g__Escherichia.s__Escherichia_coli	27.9040594689
+UniRef50_Q8UEY5: CTP synthase|g__Clostridium.s__Clostridium_beijerinckii	3.7349816407
+UniRef50_Q8UEY5: CTP synthase|unclassified	0.5695613099
+UniRef50_D9RM99: Phage N-acetylglucosaminidase	131.7666904817
+UniRef50_D9RM99: Phage N-acetylglucosaminidase|g__Staphylococcus.s__Staphylococcus_aureus	131.7666904817
+UniRef50_D9RDD3: Ser-Asp rich fibrinogen/bone sialoprotein-binding protein SdrE_1	131.7555990280
+UniRef50_D9RDD3: Ser-Asp rich fibrinogen/bone sialoprotein-binding protein SdrE_1|g__Staphylococcus.s__Staphylococcus_aureus	130.2018424436
+UniRef50_D9RDD3: Ser-Asp rich fibrinogen/bone sialoprotein-binding protein SdrE_1|unclassified	1.5537565844
+UniRef50_I6TND0	131.7459458811
+UniRef50_I6TND0|g__Streptococcus.s__Streptococcus_mutans	131.7459458811
+UniRef50_I0C1G5: SIR2 family protein	131.6685531880
+UniRef50_I0C1G5: SIR2 family protein|g__Staphylococcus.s__Staphylococcus_aureus	126.1784112510
+UniRef50_I0C1G5: SIR2 family protein|g__Streptococcus.s__Streptococcus_agalactiae	5.4306513943
+UniRef50_I0C1G5: SIR2 family protein|unclassified	0.0594905427
+UniRef50_L7WU99: CapB protein	131.6051117926
+UniRef50_L7WU99: CapB protein|g__Staphylococcus.s__Staphylococcus_epidermidis	131.6051117926
+UniRef50_A8Z124	131.5968217910
+UniRef50_A8Z124|g__Staphylococcus.s__Staphylococcus_epidermidis	69.8115293930
+UniRef50_A8Z124|g__Staphylococcus.s__Staphylococcus_aureus	61.7852923980
+UniRef50_Q8CS21: 2-succinylbenzoate--CoA ligase	131.4508188975
+UniRef50_Q8CS21: 2-succinylbenzoate--CoA ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	131.3430807864
+UniRef50_Q8CS21: 2-succinylbenzoate--CoA ligase|unclassified	0.1077381111
+UniRef50_G7DLE2	131.4028519388
+UniRef50_G7DLE2|g__Rhodobacter.s__Rhodobacter_sphaeroides	131.4028519388
+UniRef50_S5YZN5: ABC-type dipeptide/oligopeptide/nickel transport system, permease component	131.4014669652
+UniRef50_S5YZN5: ABC-type dipeptide/oligopeptide/nickel transport system, permease component|g__Rhodobacter.s__Rhodobacter_sphaeroides	131.4014669652
+UniRef50_F6BN92: Tetracycline transcriptional regulator YcdC domain-containing protein	131.3022331819
+UniRef50_F6BN92: Tetracycline transcriptional regulator YcdC domain-containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	131.3022331819
+UniRef50_Q16CW9: Lipopolysaccharide 1,3-galactosyltransferase, putative	131.2999202505
+UniRef50_Q16CW9: Lipopolysaccharide 1,3-galactosyltransferase, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	131.2999202505
+UniRef50_A7HSL3: Cobyrinic acid ac-diamide synthase	131.2826955100
+UniRef50_A7HSL3: Cobyrinic acid ac-diamide synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	131.1546479502
+UniRef50_A7HSL3: Cobyrinic acid ac-diamide synthase|unclassified	0.1280475598
+UniRef50_D1GUM7: Probable siderophore biosynthesis protein SbnA	131.2519433482
+UniRef50_D1GUM7: Probable siderophore biosynthesis protein SbnA|g__Staphylococcus.s__Staphylococcus_aureus	131.2519433482
+UniRef50_Q5HLR4: Formimidoylglutamase	131.1563023919
+UniRef50_Q5HLR4: Formimidoylglutamase|g__Staphylococcus.s__Staphylococcus_epidermidis	131.1563023919
+UniRef50_A7ZIA3: S-formylglutathione hydrolase FrmB	131.1549724653
+UniRef50_A7ZIA3: S-formylglutathione hydrolase FrmB|g__Rhodobacter.s__Rhodobacter_sphaeroides	97.0972252113
+UniRef50_A7ZIA3: S-formylglutathione hydrolase FrmB|g__Escherichia.s__Escherichia_coli	32.9599985937
+UniRef50_A7ZIA3: S-formylglutathione hydrolase FrmB|unclassified	1.0977486603
+UniRef50_Q6G6F1: D-lactate dehydrogenase	131.1091274629
+UniRef50_Q6G6F1: D-lactate dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	70.2115442189
+UniRef50_Q6G6F1: D-lactate dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	46.4464273588
+UniRef50_Q6G6F1: D-lactate dehydrogenase|g__Streptococcus.s__Streptococcus_agalactiae	14.1295401861
+UniRef50_Q6G6F1: D-lactate dehydrogenase|unclassified	0.3216156991
+UniRef50_A3PNV6	131.0874375314
+UniRef50_A3PNV6|g__Rhodobacter.s__Rhodobacter_sphaeroides	126.8216550061
+UniRef50_A3PNV6|unclassified	4.2657825252
+UniRef50_A4X0D6: SH3, type 3 domain protein	131.0735966630
+UniRef50_A4X0D6: SH3, type 3 domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	120.5328901172
+UniRef50_A4X0D6: SH3, type 3 domain protein|unclassified	10.5407065458
+UniRef50_D5K8E6: UbiC transcription regulator-associated protein	131.0421637899
+UniRef50_D5K8E6: UbiC transcription regulator-associated protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	131.0421637899
+UniRef50_Q8CMQ2: Alkyl hydroperoxide reductase subunit C	131.0186727931
+UniRef50_Q8CMQ2: Alkyl hydroperoxide reductase subunit C|g__Staphylococcus.s__Staphylococcus_epidermidis	131.0186727931
+UniRef50_G2RRU8: Glycerol uptake facilitator Permease (Major Intrinsic Protein Family)	130.9610115934
+UniRef50_G2RRU8: Glycerol uptake facilitator Permease (Major Intrinsic Protein Family)|g__Staphylococcus.s__Staphylococcus_aureus	130.9610115934
+UniRef50_F2HR75	130.7261111612
+UniRef50_F2HR75|unclassified	130.7261111612
+UniRef50_I0JRX2: Oxidoreductase domain protein	130.7150209399
+UniRef50_I0JRX2: Oxidoreductase domain protein|g__Staphylococcus.s__Staphylococcus_aureus	130.7150209399
+UniRef50_I0C7B0: ATP-dependent dethiobiotin synthetase BioD	130.6145578598
+UniRef50_I0C7B0: ATP-dependent dethiobiotin synthetase BioD|g__Staphylococcus.s__Staphylococcus_aureus	130.6145578598
+UniRef50_I0C718: Integral membrane protein	130.4497675529
+UniRef50_I0C718: Integral membrane protein|g__Staphylococcus.s__Staphylococcus_aureus	130.4497675529
+UniRef50_C5N176	130.3604695945
+UniRef50_C5N176|g__Staphylococcus.s__Staphylococcus_aureus	130.3604695945
+UniRef50_Q03ZA4: Ribosomal RNA small subunit methyltransferase G	130.2779677224
+UniRef50_Q03ZA4: Ribosomal RNA small subunit methyltransferase G|g__Staphylococcus.s__Staphylococcus_epidermidis	68.5876244512
+UniRef50_Q03ZA4: Ribosomal RNA small subunit methyltransferase G|g__Streptococcus.s__Streptococcus_mutans	54.9531169535
+UniRef50_Q03ZA4: Ribosomal RNA small subunit methyltransferase G|g__Streptococcus.s__Streptococcus_agalactiae	6.7372263177
+UniRef50_Q6GCY8: Purine nucleoside phosphorylase DeoD-type	130.2498773062
+UniRef50_Q6GCY8: Purine nucleoside phosphorylase DeoD-type|g__Staphylococcus.s__Staphylococcus_aureus	130.2498773062
+UniRef50_Q53222: 2-vinyl bacteriochlorophyllide hydratase	130.2461823769
+UniRef50_Q53222: 2-vinyl bacteriochlorophyllide hydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	124.3088363615
+UniRef50_Q53222: 2-vinyl bacteriochlorophyllide hydratase|unclassified	5.9373460155
+UniRef50_P0AD60: Inhibitor of vertebrate lysozyme	130.1989950767
+UniRef50_P0AD60: Inhibitor of vertebrate lysozyme|g__Escherichia.s__Escherichia_coli	130.1989950767
+UniRef50_Q8CTX4	130.1716222900
+UniRef50_Q8CTX4|g__Staphylococcus.s__Staphylococcus_epidermidis	130.1716222900
+UniRef50_F4CQG8: Amidohydrolase 2	130.0871063356
+UniRef50_F4CQG8: Amidohydrolase 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	130.0871063356
+UniRef50_G7QNB5: ABC transporter permease protein	130.0670486139
+UniRef50_G7QNB5: ABC transporter permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	130.0670486139
+UniRef50_B9EBL7	129.9723929612
+UniRef50_B9EBL7|g__Staphylococcus.s__Staphylococcus_aureus	129.9723929612
+UniRef50_D8HDI6: Pyridoxal-dependent decarboxylase	129.9282527384
+UniRef50_D8HDI6: Pyridoxal-dependent decarboxylase|g__Staphylococcus.s__Staphylococcus_aureus	129.9282527384
+UniRef50_T1XRH9: Ribulose-phosphate 3-epimerase	129.9075142699
+UniRef50_T1XRH9: Ribulose-phosphate 3-epimerase|g__Staphylococcus.s__Staphylococcus_epidermidis	65.6919928980
+UniRef50_T1XRH9: Ribulose-phosphate 3-epimerase|g__Staphylococcus.s__Staphylococcus_aureus	64.2155213719
+UniRef50_Q3IV32	129.7699589420
+UniRef50_Q3IV32|g__Rhodobacter.s__Rhodobacter_sphaeroides	124.3300584873
+UniRef50_Q3IV32|unclassified	5.4399004547
+UniRef50_D2J6T4	129.6516334140
+UniRef50_D2J6T4|g__Staphylococcus.s__Staphylococcus_aureus	129.6516334140
+UniRef50_G8RG67	129.6345120635
+UniRef50_G8RG67|g__Staphylococcus.s__Staphylococcus_aureus	129.6345120635
+UniRef50_B9KQI0: Type III secretion system inner membrane R protein	129.5940288421
+UniRef50_B9KQI0: Type III secretion system inner membrane R protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	129.5940288421
+UniRef50_A3PHB5: Secretion protein HlyD family protein	129.5113105764
+UniRef50_A3PHB5: Secretion protein HlyD family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	129.5113105764
+UniRef50_P50736	129.5023921293
+UniRef50_P50736|g__Staphylococcus.s__Staphylococcus_aureus	75.9453663053
+UniRef50_P50736|g__Staphylococcus.s__Staphylococcus_epidermidis	53.5570258240
+UniRef50_C5N523: ACT domain protein	129.4890062754
+UniRef50_C5N523: ACT domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	72.5468957796
+UniRef50_C5N523: ACT domain protein|g__Staphylococcus.s__Staphylococcus_aureus	56.9421104958
+UniRef50_Q3J4T6: ThiF family protein	129.3807538384
+UniRef50_Q3J4T6: ThiF family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	129.3807538384
+UniRef50_P52311: Modification methylase XorII	129.3425428153
+UniRef50_P52311: Modification methylase XorII|g__Rhodobacter.s__Rhodobacter_sphaeroides	129.3425428153
+UniRef50_A3PHP1: Abortive infection protein	129.3090415747
+UniRef50_A3PHP1: Abortive infection protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	129.3090415747
+UniRef50_Q5HHC0: Inactive signal peptidase IA	129.2333814850
+UniRef50_Q5HHC0: Inactive signal peptidase IA|g__Staphylococcus.s__Staphylococcus_aureus	79.4414552396
+UniRef50_Q5HHC0: Inactive signal peptidase IA|g__Staphylococcus.s__Staphylococcus_epidermidis	49.7919262454
+UniRef50_C7ZXZ9	129.1902587961
+UniRef50_C7ZXZ9|g__Staphylococcus.s__Staphylococcus_aureus	129.1902587961
+UniRef50_D9RNH9: Phage transcriptional regulator	129.1434859863
+UniRef50_D9RNH9: Phage transcriptional regulator|g__Staphylococcus.s__Staphylococcus_aureus	129.1434859863
+UniRef50_Q8CT65	129.1050414831
+UniRef50_Q8CT65|g__Staphylococcus.s__Staphylococcus_epidermidis	73.0254868649
+UniRef50_Q8CT65|g__Staphylococcus.s__Staphylococcus_aureus	56.0795546181
+UniRef50_R9YLC4: Cell cycle family protein	129.0867414225
+UniRef50_R9YLC4: Cell cycle family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	86.4863969780
+UniRef50_R9YLC4: Cell cycle family protein|g__Staphylococcus.s__Staphylococcus_aureus	42.6003444445
+UniRef50_Q6GDN6: 4,4'-diaponeurosporenoate glycosyltransferase	129.0561995587
+UniRef50_Q6GDN6: 4,4'-diaponeurosporenoate glycosyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	129.0561995587
+UniRef50_Q1C1E1: Glucose-1-phosphate adenylyltransferase	129.0159304168
+UniRef50_Q1C1E1: Glucose-1-phosphate adenylyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.1438650440
+UniRef50_Q1C1E1: Glucose-1-phosphate adenylyltransferase|g__Escherichia.s__Escherichia_coli	38.8022791049
+UniRef50_Q1C1E1: Glucose-1-phosphate adenylyltransferase|unclassified	0.0697862679
+UniRef50_D6SDZ2: Gamma-glutamyltransferase	128.9956917887
+UniRef50_D6SDZ2: Gamma-glutamyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	128.9956917887
+UniRef50_D9RGW2: SWIM zinc finger domain protein	128.9845842384
+UniRef50_D9RGW2: SWIM zinc finger domain protein|g__Staphylococcus.s__Staphylococcus_aureus	128.9845842384
+UniRef50_Q5HPI3: Protein GlcT	128.9347975878
+UniRef50_Q5HPI3: Protein GlcT|g__Staphylococcus.s__Staphylococcus_aureus	78.7960237191
+UniRef50_Q5HPI3: Protein GlcT|g__Staphylococcus.s__Staphylococcus_epidermidis	50.1387738687
+UniRef50_Q3J617	128.9031607946
+UniRef50_Q3J617|g__Rhodobacter.s__Rhodobacter_sphaeroides	128.9031607946
+UniRef50_P44023	128.8546039096
+UniRef50_P44023|g__Staphylococcus.s__Staphylococcus_aureus	64.3752915487
+UniRef50_P44023|g__Staphylococcus.s__Staphylococcus_epidermidis	57.0302090745
+UniRef50_P44023|g__Propionibacterium.s__Propionibacterium_acnes	4.5239030585
+UniRef50_P44023|g__Streptococcus.s__Streptococcus_agalactiae	2.9252002278
+UniRef50_C5N0V3	128.7771819502
+UniRef50_C5N0V3|g__Staphylococcus.s__Staphylococcus_aureus	128.7771819502
+UniRef50_A9TBR6: Predicted protein	128.7120473168
+UniRef50_A9TBR6: Predicted protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	128.7120473168
+UniRef50_B9KTB3: Extracellular solute-binding protein, family 5	128.7031188514
+UniRef50_B9KTB3: Extracellular solute-binding protein, family 5|g__Rhodobacter.s__Rhodobacter_sphaeroides	128.7031188514
+UniRef50_Q5HRM6: PIN domain protein	128.6782121088
+UniRef50_Q5HRM6: PIN domain protein|g__Staphylococcus.s__Staphylococcus_aureus	86.5512358485
+UniRef50_Q5HRM6: PIN domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	42.1269762603
+UniRef50_A8Z4R9: Bacteriophage integrase	128.6722236592
+UniRef50_A8Z4R9: Bacteriophage integrase|g__Staphylococcus.s__Staphylococcus_aureus	128.6722236592
+UniRef50_Q3IVS2: DNA/RNA helicase, superfamily I	128.6566636448
+UniRef50_Q3IVS2: DNA/RNA helicase, superfamily I|g__Rhodobacter.s__Rhodobacter_sphaeroides	128.6566636448
+UniRef50_U3TJ62: Elongation factor 4	128.6419250170
+UniRef50_U3TJ62: Elongation factor 4|g__Staphylococcus.s__Staphylococcus_aureus	83.8105586870
+UniRef50_U3TJ62: Elongation factor 4|g__Streptococcus.s__Streptococcus_mutans	44.8313663300
+UniRef50_Q3JHV2	128.5741322533
+UniRef50_Q3JHV2|g__Rhodobacter.s__Rhodobacter_sphaeroides	116.1707863213
+UniRef50_Q3JHV2|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.2165666865
+UniRef50_Q3JHV2|unclassified	0.1867792454
+UniRef50_B2SD76: Leu/Ile/Val-binding protein family	128.5355094697
+UniRef50_B2SD76: Leu/Ile/Val-binding protein family|g__Rhodobacter.s__Rhodobacter_sphaeroides	128.5355094697
+UniRef50_Q5HR28: Response regulator SaeR	128.5156539637
+UniRef50_Q5HR28: Response regulator SaeR|g__Staphylococcus.s__Staphylococcus_aureus	72.2794451829
+UniRef50_Q5HR28: Response regulator SaeR|g__Staphylococcus.s__Staphylococcus_epidermidis	56.2362087808
+UniRef50_I0C6V2: Acetyltransferase	128.4858330267
+UniRef50_I0C6V2: Acetyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	128.4858330267
+UniRef50_Q49WT0: 3-hexulose-6-phosphate synthase 2	128.4715173818
+UniRef50_Q49WT0: 3-hexulose-6-phosphate synthase 2|g__Staphylococcus.s__Staphylococcus_aureus	126.9102968839
+UniRef50_Q49WT0: 3-hexulose-6-phosphate synthase 2|unclassified	1.5612204979
+UniRef50_Q5HR38: Cys-tRNA(Pro)/Cys-tRNA(Cys) deacylase	128.4144308080
+UniRef50_Q5HR38: Cys-tRNA(Pro)/Cys-tRNA(Cys) deacylase|g__Staphylococcus.s__Staphylococcus_aureus	92.9966839313
+UniRef50_Q5HR38: Cys-tRNA(Pro)/Cys-tRNA(Cys) deacylase|g__Staphylococcus.s__Staphylococcus_epidermidis	35.4177468766
+UniRef50_A1B214: Cupin 2, conserved barrel domain protein	128.3360385033
+UniRef50_A1B214: Cupin 2, conserved barrel domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	122.4365788484
+UniRef50_A1B214: Cupin 2, conserved barrel domain protein|unclassified	5.8994596548
+UniRef50_S5YHY9: Partition protein A	128.3242872770
+UniRef50_S5YHY9: Partition protein A|g__Rhodobacter.s__Rhodobacter_sphaeroides	124.7280693146
+UniRef50_S5YHY9: Partition protein A|unclassified	3.5962179623
+UniRef50_F6BWB1: Transcriptional regulator, MerR family	128.3220069586
+UniRef50_F6BWB1: Transcriptional regulator, MerR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	128.3220069586
+UniRef50_Q8R5Z9: Ribosome-recycling factor	128.2979868056
+UniRef50_Q8R5Z9: Ribosome-recycling factor|g__Staphylococcus.s__Staphylococcus_epidermidis	77.4586680755
+UniRef50_Q8R5Z9: Ribosome-recycling factor|g__Streptococcus.s__Streptococcus_mutans	49.0342645785
+UniRef50_Q8R5Z9: Ribosome-recycling factor|g__Streptococcus.s__Streptococcus_agalactiae	1.8050541516
+UniRef50_Q4L666: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	128.2675125670
+UniRef50_Q4L666: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	72.2417240926
+UniRef50_Q4L666: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	56.0257884745
+UniRef50_Q3J4T9: ATPase	128.2507677312
+UniRef50_Q3J4T9: ATPase|g__Rhodobacter.s__Rhodobacter_sphaeroides	125.7082505410
+UniRef50_Q3J4T9: ATPase|unclassified	2.5425171902
+UniRef50_V9WGZ8: Di-and tricarboxylate transporter	128.2031575214
+UniRef50_V9WGZ8: Di-and tricarboxylate transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	128.2031575214
+UniRef50_A6U7Z3: Proline--tRNA ligase	128.1241059764
+UniRef50_A6U7Z3: Proline--tRNA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	128.0575782175
+UniRef50_A6U7Z3: Proline--tRNA ligase|unclassified	0.0665277590
+UniRef50_Q6GJM1: UPF0753 protein SAR0453	128.0398284304
+UniRef50_Q6GJM1: UPF0753 protein SAR0453|g__Staphylococcus.s__Staphylococcus_aureus	127.9740125246
+UniRef50_Q6GJM1: UPF0753 protein SAR0453|unclassified	0.0658159058
+UniRef50_A7X3N2: S-adenosylmethionine synthase	128.0203245147
+UniRef50_A7X3N2: S-adenosylmethionine synthase|g__Staphylococcus.s__Staphylococcus_aureus	118.2341794278
+UniRef50_A7X3N2: S-adenosylmethionine synthase|g__Acinetobacter.s__Acinetobacter_baumannii	3.1128574336
+UniRef50_A7X3N2: S-adenosylmethionine synthase|g__Propionibacterium.s__Propionibacterium_acnes	3.0030179284
+UniRef50_A7X3N2: S-adenosylmethionine synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1715380758
+UniRef50_A7X3N2: S-adenosylmethionine synthase|g__Neisseria.s__Neisseria_meningitidis	0.9009009009
+UniRef50_A7X3N2: S-adenosylmethionine synthase|unclassified	0.5978307482
+UniRef50_P39912: Protein AroA(G)	128.0111436387
+UniRef50_P39912: Protein AroA(G)|g__Staphylococcus.s__Staphylococcus_epidermidis	79.7823941218
+UniRef50_P39912: Protein AroA(G)|g__Staphylococcus.s__Staphylococcus_aureus	48.2287495169
+UniRef50_P19066: Nitrogenase molybdenum-iron protein alpha chain	127.9388364581
+UniRef50_P19066: Nitrogenase molybdenum-iron protein alpha chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	126.5345333834
+UniRef50_P19066: Nitrogenase molybdenum-iron protein alpha chain|unclassified	1.4043030747
+UniRef50_A7Z9P0: Cyclic pyranopterin monophosphate synthase	127.9207244169
+UniRef50_A7Z9P0: Cyclic pyranopterin monophosphate synthase|g__Staphylococcus.s__Staphylococcus_aureus	127.9207244169
+UniRef50_Q5HN96: Foldase protein PrsA	127.8730910453
+UniRef50_Q5HN96: Foldase protein PrsA|g__Staphylococcus.s__Staphylococcus_aureus	64.2334372827
+UniRef50_Q5HN96: Foldase protein PrsA|g__Staphylococcus.s__Staphylococcus_epidermidis	63.6396537626
+UniRef50_B2GC97: Dehydrogenase	127.8100655490
+UniRef50_B2GC97: Dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	127.8100655490
+UniRef50_O31676: 6-carboxy-5,6,7,8-tetrahydropterin synthase	127.7668166661
+UniRef50_O31676: 6-carboxy-5,6,7,8-tetrahydropterin synthase|g__Staphylococcus.s__Staphylococcus_aureus	90.4603645111
+UniRef50_O31676: 6-carboxy-5,6,7,8-tetrahydropterin synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	37.1663383987
+UniRef50_O31676: 6-carboxy-5,6,7,8-tetrahydropterin synthase|unclassified	0.1401137564
+UniRef50_Z8B9P7	127.6562961093
+UniRef50_Z8B9P7|g__Staphylococcus.s__Staphylococcus_aureus	127.6562961093
+UniRef50_O34011: Fructose-1,6-bisphosphatase class 1	127.4403498873
+UniRef50_O34011: Fructose-1,6-bisphosphatase class 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	120.4474448462
+UniRef50_O34011: Fructose-1,6-bisphosphatase class 1|unclassified	6.9929050411
+UniRef50_B9JLP2: Dipeptide ABC transporter	127.4392822471
+UniRef50_B9JLP2: Dipeptide ABC transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	127.4392822471
+UniRef50_P80886: Succinyl-CoA ligase [ADP-forming] subunit beta	127.4235064407
+UniRef50_P80886: Succinyl-CoA ligase [ADP-forming] subunit beta|g__Rhodobacter.s__Rhodobacter_sphaeroides	127.1483497148
+UniRef50_P80886: Succinyl-CoA ligase [ADP-forming] subunit beta|unclassified	0.2751567259
+UniRef50_P0AEG0: Dipeptide transport system permease protein DppB	127.3946409593
+UniRef50_P0AEG0: Dipeptide transport system permease protein DppB|g__Rhodobacter.s__Rhodobacter_sphaeroides	98.2861968062
+UniRef50_P0AEG0: Dipeptide transport system permease protein DppB|g__Escherichia.s__Escherichia_coli	22.0973559343
+UniRef50_P0AEG0: Dipeptide transport system permease protein DppB|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0110882189
+UniRef50_Q99WQ6: Lipase 2	127.3499156688
+UniRef50_Q99WQ6: Lipase 2|g__Staphylococcus.s__Staphylococcus_aureus	127.3499156688
+UniRef50_Q2YWD0: HTH-type transcriptional regulator SAB2452	127.3352946639
+UniRef50_Q2YWD0: HTH-type transcriptional regulator SAB2452|g__Staphylococcus.s__Staphylococcus_aureus	127.3352946639
+UniRef50_C5N6C7: DHHA1 domain protein	127.3251242397
+UniRef50_C5N6C7: DHHA1 domain protein|g__Staphylococcus.s__Staphylococcus_aureus	85.9150744410
+UniRef50_C5N6C7: DHHA1 domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	41.4100497987
+UniRef50_A5IPW8: Uracil-xanthine permease	127.2863841620
+UniRef50_A5IPW8: Uracil-xanthine permease|g__Staphylococcus.s__Staphylococcus_aureus	127.2863841620
+UniRef50_B6JGY2: Peptide chain release factor 3	127.1838554831
+UniRef50_B6JGY2: Peptide chain release factor 3|g__Rhodobacter.s__Rhodobacter_sphaeroides	127.1838554831
+UniRef50_E8SGT7: Enoyl-CoA hydratase / Enoyl-CoA hydratase [valine degradation] / 3-hydroxyacyl-CoA dehydrogenase	127.1744490835
+UniRef50_E8SGT7: Enoyl-CoA hydratase / Enoyl-CoA hydratase [valine degradation] / 3-hydroxyacyl-CoA dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	127.1744490835
+UniRef50_A7X5Z9: Ferredoxin--NADP reductase	127.1286720240
+UniRef50_A7X5Z9: Ferredoxin--NADP reductase|g__Staphylococcus.s__Staphylococcus_aureus	127.1286720240
+UniRef50_A3PHN8: Signal transduction histidine kinase	127.1151606224
+UniRef50_A3PHN8: Signal transduction histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	127.1151606224
+UniRef50_P29925: NADH-quinone oxidoreductase chain 13	127.0946730868
+UniRef50_P29925: NADH-quinone oxidoreductase chain 13|g__Rhodobacter.s__Rhodobacter_sphaeroides	122.5313017500
+UniRef50_P29925: NADH-quinone oxidoreductase chain 13|unclassified	4.5633713368
+UniRef50_U5NMU5	127.0866516815
+UniRef50_U5NMU5|g__Rhodobacter.s__Rhodobacter_sphaeroides	124.4122815053
+UniRef50_U5NMU5|unclassified	2.6743701762
+UniRef50_Q5HP54	127.0861646232
+UniRef50_Q5HP54|g__Staphylococcus.s__Staphylococcus_aureus	78.5915217214
+UniRef50_Q5HP54|g__Staphylococcus.s__Staphylococcus_epidermidis	48.4946429018
+UniRef50_A8LLI4: Transcriptional regulator	127.0719994581
+UniRef50_A8LLI4: Transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	127.0719994581
+UniRef50_A9VIS8: UPF0758 protein BcerKBAB4_4299	127.0356047332
+UniRef50_A9VIS8: UPF0758 protein BcerKBAB4_4299|g__Staphylococcus.s__Staphylococcus_epidermidis	127.0356047332
+UniRef50_B7HHF8: 3-isopropylmalate dehydratase small subunit	127.0355416735
+UniRef50_B7HHF8: 3-isopropylmalate dehydratase small subunit|g__Staphylococcus.s__Staphylococcus_aureus	91.0262822523
+UniRef50_B7HHF8: 3-isopropylmalate dehydratase small subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	35.6824029855
+UniRef50_B7HHF8: 3-isopropylmalate dehydratase small subunit|unclassified	0.3268564358
+UniRef50_A8IHY5: C4-dicarboxylate-binding protein	127.0250533900
+UniRef50_A8IHY5: C4-dicarboxylate-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	127.0250533900
+UniRef50_A4WUJ0: Membrane protein involved in aromatic hydrocarbon degradation	127.0112601548
+UniRef50_A4WUJ0: Membrane protein involved in aromatic hydrocarbon degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	126.6526792606
+UniRef50_A4WUJ0: Membrane protein involved in aromatic hydrocarbon degradation|unclassified	0.3585808941
+UniRef50_I0C0V7: Multidrug resistance efflux pump	126.9893921367
+UniRef50_I0C0V7: Multidrug resistance efflux pump|g__Staphylococcus.s__Staphylococcus_aureus	126.9893921367
+UniRef50_Q6GCF0	126.9835642359
+UniRef50_Q6GCF0|g__Staphylococcus.s__Staphylococcus_aureus	126.9835642359
+UniRef50_D3P6U6: ATP-dependent helicase Lhr and Lhr-like helicase	126.8832814870
+UniRef50_D3P6U6: ATP-dependent helicase Lhr and Lhr-like helicase|g__Rhodobacter.s__Rhodobacter_sphaeroides	126.8832814870
+UniRef50_E8SF44: Chitinase B	126.8321513002
+UniRef50_E8SF44: Chitinase B|g__Staphylococcus.s__Staphylococcus_epidermidis	97.6190476190
+UniRef50_E8SF44: Chitinase B|g__Staphylococcus.s__Staphylococcus_aureus	29.2131036812
+UniRef50_Q8NY74	126.5986466154
+UniRef50_Q8NY74|g__Staphylococcus.s__Staphylococcus_aureus	126.5986466154
+UniRef50_K0M0Z9: Iron-regulated ABC transporter siderophore-binding protein SirA	126.4684310008
+UniRef50_K0M0Z9: Iron-regulated ABC transporter siderophore-binding protein SirA|g__Staphylococcus.s__Staphylococcus_aureus	126.4684310008
+UniRef50_A9NFP2: 50S ribosomal protein L32	126.3661033122
+UniRef50_A9NFP2: 50S ribosomal protein L32|g__Staphylococcus.s__Staphylococcus_aureus	113.8661033122
+UniRef50_A9NFP2: 50S ribosomal protein L32|g__Staphylococcus.s__Staphylococcus_epidermidis	12.5000000000
+UniRef50_C2ZQ18: ABC transporter ATP-binding protein yxdL	126.2622617789
+UniRef50_C2ZQ18: ABC transporter ATP-binding protein yxdL|g__Staphylococcus.s__Staphylococcus_aureus	126.2622617789
+UniRef50_Q2FG95: Probable cell wall amidase LytH	126.1875043847
+UniRef50_Q2FG95: Probable cell wall amidase LytH|g__Staphylococcus.s__Staphylococcus_aureus	75.5875049089
+UniRef50_Q2FG95: Probable cell wall amidase LytH|g__Staphylococcus.s__Staphylococcus_epidermidis	49.7201464617
+UniRef50_Q2FG95: Probable cell wall amidase LytH|unclassified	0.8798530140
+UniRef50_Q6GIA3: 3-oxoacyl-[acyl-carrier-protein] synthase 2	126.0743690761
+UniRef50_Q6GIA3: 3-oxoacyl-[acyl-carrier-protein] synthase 2|g__Staphylococcus.s__Staphylococcus_aureus	122.2584855390
+UniRef50_Q6GIA3: 3-oxoacyl-[acyl-carrier-protein] synthase 2|g__Clostridium.s__Clostridium_beijerinckii	3.6950628151
+UniRef50_Q6GIA3: 3-oxoacyl-[acyl-carrier-protein] synthase 2|unclassified	0.1208207220
+UniRef50_Q4L5B7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	126.0360965161
+UniRef50_Q4L5B7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	70.2316428786
+UniRef50_Q4L5B7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	55.8044536375
+UniRef50_Q1GDK6: Uroporphyrinogen decarboxylase	126.0237854943
+UniRef50_Q1GDK6: Uroporphyrinogen decarboxylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	124.9005422741
+UniRef50_Q1GDK6: Uroporphyrinogen decarboxylase|unclassified	1.1232432202
+UniRef50_O05956: Endonuclease III	126.0009895051
+UniRef50_O05956: Endonuclease III|g__Rhodobacter.s__Rhodobacter_sphaeroides	66.8668474459
+UniRef50_O05956: Endonuclease III|g__Escherichia.s__Escherichia_coli	59.1341420592
+UniRef50_Q1RH88: Superoxide dismutase [Mn/Fe]	125.9788063548
+UniRef50_Q1RH88: Superoxide dismutase [Mn/Fe]|g__Rhodobacter.s__Rhodobacter_sphaeroides	125.8751589717
+UniRef50_Q1RH88: Superoxide dismutase [Mn/Fe]|unclassified	0.1036473831
+UniRef50_H1XS41: UDP-N-acetylglucosamine 2-epimerase	125.9568396522
+UniRef50_H1XS41: UDP-N-acetylglucosamine 2-epimerase|g__Staphylococcus.s__Staphylococcus_aureus	125.9568396522
+UniRef50_Q2FUW3: Accessory Sec system protein Asp1	125.9377381469
+UniRef50_Q2FUW3: Accessory Sec system protein Asp1|g__Staphylococcus.s__Staphylococcus_aureus	125.9377381469
+UniRef50_B9KQG2: Chemotaxis MotB protein	125.9324109118
+UniRef50_B9KQG2: Chemotaxis MotB protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	125.9324109118
+UniRef50_Q11MY4: Aminotransferase	125.8388288389
+UniRef50_Q11MY4: Aminotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	125.8388288389
+UniRef50_A5VPU4: Transcriptional regulator, MarR family	125.7558717154
+UniRef50_A5VPU4: Transcriptional regulator, MarR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	125.7558717154
+UniRef50_A4X051	125.6433077404
+UniRef50_A4X051|g__Rhodobacter.s__Rhodobacter_sphaeroides	125.6433077404
+UniRef50_A4WVV8: Ferrochelatase	125.5376048409
+UniRef50_A4WVV8: Ferrochelatase|g__Rhodobacter.s__Rhodobacter_sphaeroides	125.5376048409
+UniRef50_Q5HGC3: Glutamine synthetase	125.4774875402
+UniRef50_Q5HGC3: Glutamine synthetase|g__Staphylococcus.s__Staphylococcus_aureus	90.7330761307
+UniRef50_Q5HGC3: Glutamine synthetase|g__Streptococcus.s__Streptococcus_mutans	34.6285647503
+UniRef50_Q5HGC3: Glutamine synthetase|unclassified	0.1158466591
+UniRef50_Q8CQM8	125.2804273175
+UniRef50_Q8CQM8|g__Staphylococcus.s__Staphylococcus_epidermidis	125.2804273175
+UniRef50_A8YTF9: Thymidylate kinase	125.1313042658
+UniRef50_A8YTF9: Thymidylate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	125.0197021778
+UniRef50_A8YTF9: Thymidylate kinase|unclassified	0.1116020880
+UniRef50_I0C5C5: Peptidoglycan endo-beta-N-acetylglucosaminidase	125.1239980509
+UniRef50_I0C5C5: Peptidoglycan endo-beta-N-acetylglucosaminidase|g__Staphylococcus.s__Staphylococcus_epidermidis	72.3179046576
+UniRef50_I0C5C5: Peptidoglycan endo-beta-N-acetylglucosaminidase|g__Staphylococcus.s__Staphylococcus_aureus	52.8060933933
+UniRef50_B1ZBH9: Binding-protein-dependent transport systems inner membrane component	125.0425259045
+UniRef50_B1ZBH9: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	125.0425259045
+UniRef50_L8E1V7: Polyketide biosynthesis 3-hydroxy-3-methylglutaryl-ACP synthase pksG	125.0309047848
+UniRef50_L8E1V7: Polyketide biosynthesis 3-hydroxy-3-methylglutaryl-ACP synthase pksG|g__Staphylococcus.s__Staphylococcus_aureus	125.0309047848
+UniRef50_Q4L5Y3: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	125.0269824589
+UniRef50_Q4L5Y3: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	125.0269824589
+UniRef50_D0K3P4: Sua5/YciO/YrdC/YwlC family protein	125.0159903555
+UniRef50_D0K3P4: Sua5/YciO/YrdC/YwlC family protein|g__Staphylococcus.s__Staphylococcus_aureus	125.0159903555
+UniRef50_P76138: Putative HTH-type transcriptional regulator YneL	125.0000000000
+UniRef50_P76138: Putative HTH-type transcriptional regulator YneL|g__Escherichia.s__Escherichia_coli	125.0000000000
+UniRef50_P12011: Gluconokinase	124.7463718898
+UniRef50_P12011: Gluconokinase|g__Staphylococcus.s__Staphylococcus_aureus	124.7463718898
+UniRef50_A3PHP3	124.6844695106
+UniRef50_A3PHP3|g__Rhodobacter.s__Rhodobacter_sphaeroides	112.3169177156
+UniRef50_A3PHP3|unclassified	12.3675517950
+UniRef50_A0A038GLZ5: Peptide ABC transporter substrate-binding protein	124.6525888099
+UniRef50_A0A038GLZ5: Peptide ABC transporter substrate-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	124.6525888099
+UniRef50_X5E0Q9: Triose-phosphate Transporter family protein	124.6368272019
+UniRef50_X5E0Q9: Triose-phosphate Transporter family protein|g__Staphylococcus.s__Staphylococcus_aureus	84.9250318589
+UniRef50_X5E0Q9: Triose-phosphate Transporter family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	39.7117953430
+UniRef50_L7WTC7	124.6239353978
+UniRef50_L7WTC7|g__Staphylococcus.s__Staphylococcus_aureus	124.6239353978
+UniRef50_A7FC02	124.5681953544
+UniRef50_A7FC02|g__Acinetobacter.s__Acinetobacter_baumannii	124.5681953544
+UniRef50_C5N054: Transcriptional regulator, GntR family	124.5604245049
+UniRef50_C5N054: Transcriptional regulator, GntR family|g__Staphylococcus.s__Staphylococcus_aureus	124.5604245049
+UniRef50_Q6GHN9: Lipoprotein signal peptidase	124.5508583335
+UniRef50_Q6GHN9: Lipoprotein signal peptidase|g__Staphylococcus.s__Staphylococcus_aureus	82.9294314058
+UniRef50_Q6GHN9: Lipoprotein signal peptidase|g__Staphylococcus.s__Staphylococcus_epidermidis	41.6214269277
+UniRef50_F5M3F1	124.4896346115
+UniRef50_F5M3F1|g__Rhodobacter.s__Rhodobacter_sphaeroides	118.5926293774
+UniRef50_F5M3F1|unclassified	5.8970052340
+UniRef50_Q65GI9: 3-isopropylmalate dehydrogenase	124.4703870752
+UniRef50_Q65GI9: 3-isopropylmalate dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	71.9367892927
+UniRef50_Q65GI9: 3-isopropylmalate dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	51.9487980149
+UniRef50_Q65GI9: 3-isopropylmalate dehydrogenase|unclassified	0.5847997676
+UniRef50_C1CCZ1: UvrABC system protein C	124.4666240792
+UniRef50_C1CCZ1: UvrABC system protein C|g__Staphylococcus.s__Staphylococcus_aureus	83.6659940235
+UniRef50_C1CCZ1: UvrABC system protein C|g__Streptococcus.s__Streptococcus_mutans	39.0590235337
+UniRef50_C1CCZ1: UvrABC system protein C|g__Streptococcus.s__Streptococcus_agalactiae	1.7416065220
+UniRef50_Q9HJD0: 30S ribosomal protein S8e	124.3891400182
+UniRef50_Q9HJD0: 30S ribosomal protein S8e|g__Methanobrevibacter.s__Methanobrevibacter_smithii	124.3891400182
+UniRef50_Q3B6F6: 30S ribosomal protein S3	124.2995824226
+UniRef50_Q3B6F6: 30S ribosomal protein S3|g__Staphylococcus.s__Staphylococcus_aureus	65.6201549980
+UniRef50_Q3B6F6: 30S ribosomal protein S3|g__Staphylococcus.s__Staphylococcus_epidermidis	58.6794274246
+UniRef50_O34720: Probable oxidoreductase YjgC	124.2532372758
+UniRef50_O34720: Probable oxidoreductase YjgC|g__Staphylococcus.s__Staphylococcus_aureus	124.0674279526
+UniRef50_O34720: Probable oxidoreductase YjgC|unclassified	0.1858093232
+UniRef50_Q3J8Q5: 50S ribosomal protein L10	124.2434768776
+UniRef50_Q3J8Q5: 50S ribosomal protein L10|g__Escherichia.s__Escherichia_coli	124.2434768776
+UniRef50_O07084: Cadmium, cobalt and zinc/H(+)-K(+) antiporter	124.2037620271
+UniRef50_O07084: Cadmium, cobalt and zinc/H(+)-K(+) antiporter|g__Staphylococcus.s__Staphylococcus_epidermidis	124.2037620271
+UniRef50_A1WR56: Oxidoreductase FAD-binding domain protein	124.1407676587
+UniRef50_A1WR56: Oxidoreductase FAD-binding domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	124.1407676587
+UniRef50_A5IPG3	124.1391446613
+UniRef50_A5IPG3|g__Staphylococcus.s__Staphylococcus_aureus	124.1391446613
+UniRef50_Q2FKF1: HTH-type transcriptional regulator NorG	123.9475792833
+UniRef50_Q2FKF1: HTH-type transcriptional regulator NorG|g__Staphylococcus.s__Staphylococcus_aureus	123.9475792833
+UniRef50_Q5HRK4: Elongation factor Tu	123.8407993675
+UniRef50_Q5HRK4: Elongation factor Tu|g__Staphylococcus.s__Staphylococcus_epidermidis	65.3438179402
+UniRef50_Q5HRK4: Elongation factor Tu|g__Staphylococcus.s__Staphylococcus_aureus	47.1597225977
+UniRef50_Q5HRK4: Elongation factor Tu|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3372588296
+UniRef50_A3PHY8: Transcriptional regulator, LysR family	123.8402279644
+UniRef50_A3PHY8: Transcriptional regulator, LysR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	123.8402279644
+UniRef50_Q4L9C4: Putative pyruvate, phosphate dikinase regulatory protein 1	123.8194251289
+UniRef50_Q4L9C4: Putative pyruvate, phosphate dikinase regulatory protein 1|g__Staphylococcus.s__Staphylococcus_epidermidis	123.8194251289
+UniRef50_K0L607: Indigoidine systhesis protein	123.7594218432
+UniRef50_K0L607: Indigoidine systhesis protein|g__Staphylococcus.s__Staphylococcus_aureus	123.7594218432
+UniRef50_A5ULT5: Predicted 1,4-beta-cellobiosidase	123.7256957290
+UniRef50_A5ULT5: Predicted 1,4-beta-cellobiosidase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	123.7256957290
+UniRef50_A6QDY0: Phage portal protein	123.7225800882
+UniRef50_A6QDY0: Phage portal protein|g__Staphylococcus.s__Staphylococcus_aureus	123.7225800882
+UniRef50_Q2YZB2: ATP phosphoribosyltransferase regulatory subunit	123.6905238724
+UniRef50_Q2YZB2: ATP phosphoribosyltransferase regulatory subunit|g__Staphylococcus.s__Staphylococcus_aureus	123.5815537627
+UniRef50_Q2YZB2: ATP phosphoribosyltransferase regulatory subunit|unclassified	0.1089701098
+UniRef50_Q5HKP7: Probable poly-beta-1,6-N-acetyl-D-glucosamine export protein	123.6552509385
+UniRef50_Q5HKP7: Probable poly-beta-1,6-N-acetyl-D-glucosamine export protein|g__Staphylococcus.s__Staphylococcus_aureus	123.6552509385
+UniRef50_B6IPE0: Probable transaldolase	123.5956013153
+UniRef50_B6IPE0: Probable transaldolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	119.9311604090
+UniRef50_B6IPE0: Probable transaldolase|unclassified	2.1164532902
+UniRef50_B6IPE0: Probable transaldolase|g__Clostridium.s__Clostridium_beijerinckii	1.5479876161
+UniRef50_I0C1C0	123.3548523617
+UniRef50_I0C1C0|g__Staphylococcus.s__Staphylococcus_aureus	123.3548523617
+UniRef50_R9YPY4: Phage head morphogenesis , SPP1 gp7 family domain protein	123.2745713005
+UniRef50_R9YPY4: Phage head morphogenesis , SPP1 gp7 family domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	77.0128717671
+UniRef50_R9YPY4: Phage head morphogenesis , SPP1 gp7 family domain protein|g__Staphylococcus.s__Staphylococcus_aureus	46.2616995334
+UniRef50_Q5HNR9: D-tyrosyl-tRNA(Tyr) deacylase	123.0874591412
+UniRef50_Q5HNR9: D-tyrosyl-tRNA(Tyr) deacylase|g__Staphylococcus.s__Staphylococcus_aureus	73.9435927124
+UniRef50_Q5HNR9: D-tyrosyl-tRNA(Tyr) deacylase|g__Staphylococcus.s__Staphylococcus_epidermidis	49.0541509103
+UniRef50_Q5HNR9: D-tyrosyl-tRNA(Tyr) deacylase|unclassified	0.0897155184
+UniRef50_Q8CSN4	123.0693702940
+UniRef50_Q8CSN4|g__Staphylococcus.s__Staphylococcus_epidermidis	123.0693702940
+UniRef50_A7X1Q2: Ribosome-binding factor A	123.0252429379
+UniRef50_A7X1Q2: Ribosome-binding factor A|g__Staphylococcus.s__Staphylococcus_aureus	120.1097910429
+UniRef50_A7X1Q2: Ribosome-binding factor A|g__Staphylococcus.s__Staphylococcus_epidermidis	2.9154518950
+UniRef50_A5IVU5: Phospholipase/Carboxylesterase	123.0225336054
+UniRef50_A5IVU5: Phospholipase/Carboxylesterase|g__Staphylococcus.s__Staphylococcus_aureus	119.9738081396
+UniRef50_A5IVU5: Phospholipase/Carboxylesterase|unclassified	3.0487254657
+UniRef50_P09772: Nitrogenase molybdenum-iron protein beta chain	122.9833457957
+UniRef50_P09772: Nitrogenase molybdenum-iron protein beta chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	122.4617658036
+UniRef50_P09772: Nitrogenase molybdenum-iron protein beta chain|unclassified	0.5215799921
+UniRef50_F2IUQ0: Integrase, catalytic region	122.8984776147
+UniRef50_F2IUQ0: Integrase, catalytic region|g__Rhodobacter.s__Rhodobacter_sphaeroides	122.8984776147
+UniRef50_Q8CMP5: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	122.8421341034
+UniRef50_Q8CMP5: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	117.6714368887
+UniRef50_Q8CMP5: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	4.4712403614
+UniRef50_Q8CMP5: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.6994568533
+UniRef50_Q6X7U6: 2,3-diaminopropionate biosynthesis protein SbnB	122.7949851651
+UniRef50_Q6X7U6: 2,3-diaminopropionate biosynthesis protein SbnB|g__Staphylococcus.s__Staphylococcus_aureus	122.7949851651
+UniRef50_Q3IV90	122.7761647827
+UniRef50_Q3IV90|g__Rhodobacter.s__Rhodobacter_sphaeroides	120.5296435745
+UniRef50_Q3IV90|unclassified	2.2465212081
+UniRef50_Q6GC63: Exotoxin	122.7649586788
+UniRef50_Q6GC63: Exotoxin|g__Staphylococcus.s__Staphylococcus_aureus	122.7649586788
+UniRef50_R9YJ81: Thioester reductase domain protein	122.7489392005
+UniRef50_R9YJ81: Thioester reductase domain protein|g__Staphylococcus.s__Staphylococcus_aureus	122.7489392005
+UniRef50_B7GHM5: Adenosylmethionine-8-amino-7-oxononanoate aminotransferase	122.6421757459
+UniRef50_B7GHM5: Adenosylmethionine-8-amino-7-oxononanoate aminotransferase|g__Staphylococcus.s__Staphylococcus_aureus	122.6421757459
+UniRef50_B9KW42: FAD dependent oxidoreductase	122.5834735551
+UniRef50_B9KW42: FAD dependent oxidoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	119.7386533745
+UniRef50_B9KW42: FAD dependent oxidoreductase|unclassified	2.8448201806
+UniRef50_P43519: Nitrogen regulatory protein P-II	122.5256116433
+UniRef50_P43519: Nitrogen regulatory protein P-II|g__Rhodobacter.s__Rhodobacter_sphaeroides	122.5256116433
+UniRef50_Q8CRB0: Putative hemin import ATP-binding protein HrtA	122.5131785552
+UniRef50_Q8CRB0: Putative hemin import ATP-binding protein HrtA|g__Staphylococcus.s__Staphylococcus_aureus	69.9520519986
+UniRef50_Q8CRB0: Putative hemin import ATP-binding protein HrtA|g__Staphylococcus.s__Staphylococcus_epidermidis	52.5611265566
+UniRef50_O34318	122.5113072232
+UniRef50_O34318|g__Staphylococcus.s__Staphylococcus_epidermidis	122.5113072232
+UniRef50_E8TF05: Tetracycline transcriptional regulator YcdC domain-containing protein	122.4980895460
+UniRef50_E8TF05: Tetracycline transcriptional regulator YcdC domain-containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	122.4980895460
+UniRef50_O32220: Copper-exporting P-type ATPase A	122.4532781892
+UniRef50_O32220: Copper-exporting P-type ATPase A|g__Staphylococcus.s__Staphylococcus_aureus	122.3890970744
+UniRef50_O32220: Copper-exporting P-type ATPase A|unclassified	0.0641811149
+UniRef50_G8V5D6: Bacterial extracellular solute-binding family protein	122.4277695206
+UniRef50_G8V5D6: Bacterial extracellular solute-binding family protein|g__Staphylococcus.s__Staphylococcus_aureus	122.4277695206
+UniRef50_C6SS95	122.3470122651
+UniRef50_C6SS95|g__Streptococcus.s__Streptococcus_mutans	111.6055496239
+UniRef50_C6SS95|g__Streptococcus.s__Streptococcus_agalactiae	10.7414626411
+UniRef50_B9EAP7: ATP-dependent Clp protease ATP-binding subunit ClpB	122.2107240169
+UniRef50_B9EAP7: ATP-dependent Clp protease ATP-binding subunit ClpB|g__Staphylococcus.s__Staphylococcus_epidermidis	86.1193365487
+UniRef50_B9EAP7: ATP-dependent Clp protease ATP-binding subunit ClpB|g__Staphylococcus.s__Staphylococcus_aureus	33.0555636857
+UniRef50_B9EAP7: ATP-dependent Clp protease ATP-binding subunit ClpB|g__Clostridium.s__Clostridium_beijerinckii	3.0358237825
+UniRef50_U3TT52: Cytoplasmic protein	122.1922462672
+UniRef50_U3TT52: Cytoplasmic protein|g__Staphylococcus.s__Staphylococcus_epidermidis	122.0895007872
+UniRef50_U3TT52: Cytoplasmic protein|unclassified	0.1027454800
+UniRef50_Q4L9T6: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	122.1864081474
+UniRef50_Q4L9T6: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	122.1864081474
+UniRef50_D3QEW8	122.1662345498
+UniRef50_D3QEW8|g__Staphylococcus.s__Staphylococcus_epidermidis	122.1662345498
+UniRef50_B9DLR4: Putative 3-methyladenine DNA glycosylase	122.1583458266
+UniRef50_B9DLR4: Putative 3-methyladenine DNA glycosylase|g__Staphylococcus.s__Staphylococcus_aureus	122.1583458266
+UniRef50_A3PH06	122.1491424705
+UniRef50_A3PH06|g__Rhodobacter.s__Rhodobacter_sphaeroides	107.3699762426
+UniRef50_A3PH06|unclassified	14.7791662278
+UniRef50_A3PL00: TspO and MBR like proteins	122.1489375014
+UniRef50_A3PL00: TspO and MBR like proteins|g__Rhodobacter.s__Rhodobacter_sphaeroides	122.1489375014
+UniRef50_D8HI13: NPQTN specific sortase B	122.0937018328
+UniRef50_D8HI13: NPQTN specific sortase B|g__Staphylococcus.s__Staphylococcus_aureus	122.0937018328
+UniRef50_Q3J097: Acetyltransferase	122.0537697338
+UniRef50_Q3J097: Acetyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	122.0537697338
+UniRef50_Q56734: Aspartate-semialdehyde dehydrogenase	122.0041394368
+UniRef50_Q56734: Aspartate-semialdehyde dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	121.7441901093
+UniRef50_Q56734: Aspartate-semialdehyde dehydrogenase|unclassified	0.2599493275
+UniRef50_P0A1X7: Methionine aminopeptidase	122.0003082120
+UniRef50_P0A1X7: Methionine aminopeptidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	101.2900181985
+UniRef50_P0A1X7: Methionine aminopeptidase|g__Escherichia.s__Escherichia_coli	18.1240868881
+UniRef50_P0A1X7: Methionine aminopeptidase|unclassified	2.5862031253
+UniRef50_Q89XX5: Cobalt insertion protein	121.9202354324
+UniRef50_Q89XX5: Cobalt insertion protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	121.9202354324
+UniRef50_Q8ZLF2: sn-glycerol-3-phosphate transport system permease protein UgpA	121.8952692487
+UniRef50_Q8ZLF2: sn-glycerol-3-phosphate transport system permease protein UgpA|g__Rhodobacter.s__Rhodobacter_sphaeroides	110.7051523549
+UniRef50_Q8ZLF2: sn-glycerol-3-phosphate transport system permease protein UgpA|g__Escherichia.s__Escherichia_coli	11.1901168938
+UniRef50_Q6GDH0: Carbamate kinase 2	121.8815299128
+UniRef50_Q6GDH0: Carbamate kinase 2|g__Staphylococcus.s__Staphylococcus_aureus	121.0303696855
+UniRef50_Q6GDH0: Carbamate kinase 2|unclassified	0.8511602273
+UniRef50_I0C0X1: AmrA	121.8507897186
+UniRef50_I0C0X1: AmrA|g__Staphylococcus.s__Staphylococcus_aureus	121.8507897186
+UniRef50_Q8CXD9: Aminomethyltransferase	121.8436017182
+UniRef50_Q8CXD9: Aminomethyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	121.5515395279
+UniRef50_Q8CXD9: Aminomethyltransferase|unclassified	0.2920621903
+UniRef50_Q48335: Glyceraldehyde-3-phosphate dehydrogenase	121.8415680437
+UniRef50_Q48335: Glyceraldehyde-3-phosphate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	121.8415680437
+UniRef50_Q5L3C1: Heptaprenylglyceryl phosphate synthase	121.7944626557
+UniRef50_Q5L3C1: Heptaprenylglyceryl phosphate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	121.7944626557
+UniRef50_A5IPG6	121.7751120866
+UniRef50_A5IPG6|g__Staphylococcus.s__Staphylococcus_aureus	120.5971040848
+UniRef50_A5IPG6|unclassified	1.1780080018
+UniRef50_Q3J3Y0	121.7443231338
+UniRef50_Q3J3Y0|g__Rhodobacter.s__Rhodobacter_sphaeroides	121.7443231338
+UniRef50_Q989X4: Mlr6247 protein	121.7142974462
+UniRef50_Q989X4: Mlr6247 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	121.0877159891
+UniRef50_Q989X4: Mlr6247 protein|unclassified	0.6265814571
+UniRef50_F7Y0P1: Binding-protein-dependent transport systems inner membrane component	121.7005775900
+UniRef50_F7Y0P1: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	121.7005775900
+UniRef50_X5DZP9: Binding--dependent transport system inner membrane component family protein	121.6248773129
+UniRef50_X5DZP9: Binding--dependent transport system inner membrane component family protein|g__Staphylococcus.s__Staphylococcus_aureus	121.6248773129
+UniRef50_Q8CU52: Alkylmercury lyase	121.5368115644
+UniRef50_Q8CU52: Alkylmercury lyase|g__Staphylococcus.s__Staphylococcus_epidermidis	121.5368115644
+UniRef50_F5M379: CheW3	121.4595565469
+UniRef50_F5M379: CheW3|g__Rhodobacter.s__Rhodobacter_sphaeroides	121.4595565469
+UniRef50_Q4A054	121.4494619167
+UniRef50_Q4A054|g__Staphylococcus.s__Staphylococcus_aureus	121.3725629253
+UniRef50_Q4A054|unclassified	0.0768989914
+UniRef50_S5YQ77: YGGT family protein	121.4444815690
+UniRef50_S5YQ77: YGGT family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	121.4444815690
+UniRef50_G2I4C8: UTP--glucose-1-phosphate uridylyltransferase	121.3466153499
+UniRef50_G2I4C8: UTP--glucose-1-phosphate uridylyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	121.3466153499
+UniRef50_D3QET9	121.2686792191
+UniRef50_D3QET9|g__Staphylococcus.s__Staphylococcus_epidermidis	121.2686792191
+UniRef50_Q3IYX7: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase	121.2207633402
+UniRef50_Q3IYX7: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	119.7529761500
+UniRef50_Q3IYX7: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase|unclassified	1.4677871901
+UniRef50_A4WTW6	121.0653158158
+UniRef50_A4WTW6|g__Rhodobacter.s__Rhodobacter_sphaeroides	114.7661657487
+UniRef50_A4WTW6|unclassified	6.2991500671
+UniRef50_T1Y669: Multidrug resistance protein B	120.9393580243
+UniRef50_T1Y669: Multidrug resistance protein B|g__Staphylococcus.s__Staphylococcus_aureus	120.9393580243
+UniRef50_H5YAU5: Spermidine/putrescine-binding periplasmic protein	120.9317821971
+UniRef50_H5YAU5: Spermidine/putrescine-binding periplasmic protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	120.9317821971
+UniRef50_Q2T0P7: Mannitol ABC transporter, permease protein	120.8881377923
+UniRef50_Q2T0P7: Mannitol ABC transporter, permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	113.3396424061
+UniRef50_Q2T0P7: Mannitol ABC transporter, permease protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5484953862
+UniRef50_Q5HK76: Type-1 restriction enzyme R protein	120.8879973963
+UniRef50_Q5HK76: Type-1 restriction enzyme R protein|g__Staphylococcus.s__Staphylococcus_aureus	120.8879973963
+UniRef50_W0II99: C4-dicarboxylate ABC transporter permease	120.8650352921
+UniRef50_W0II99: C4-dicarboxylate ABC transporter permease|g__Rhodobacter.s__Rhodobacter_sphaeroides	120.2512189802
+UniRef50_W0II99: C4-dicarboxylate ABC transporter permease|unclassified	0.6138163119
+UniRef50_Q82YY1: Ribosomal RNA small subunit methyltransferase G	120.8418458363
+UniRef50_Q82YY1: Ribosomal RNA small subunit methyltransferase G|g__Staphylococcus.s__Staphylococcus_aureus	120.8418458363
+UniRef50_W8EU13: Dihydrolipoyl dehydrogenase	120.7338019122
+UniRef50_W8EU13: Dihydrolipoyl dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	115.8768586752
+UniRef50_W8EU13: Dihydrolipoyl dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8569432369
+UniRef50_G8V4L1	120.7101425388
+UniRef50_G8V4L1|g__Staphylococcus.s__Staphylococcus_aureus	120.7101425388
+UniRef50_Q9ZE56: Aspartate aminotransferase	120.7084174751
+UniRef50_Q9ZE56: Aspartate aminotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	120.7084174751
+UniRef50_Q46829: 6-phospho-beta-glucosidase BglA	120.6584003444
+UniRef50_Q46829: 6-phospho-beta-glucosidase BglA|g__Streptococcus.s__Streptococcus_mutans	86.6497970564
+UniRef50_Q46829: 6-phospho-beta-glucosidase BglA|g__Escherichia.s__Escherichia_coli	24.2035195008
+UniRef50_Q46829: 6-phospho-beta-glucosidase BglA|g__Staphylococcus.s__Staphylococcus_aureus	5.7857180105
+UniRef50_Q46829: 6-phospho-beta-glucosidase BglA|g__Clostridium.s__Clostridium_beijerinckii	3.8726226816
+UniRef50_Q46829: 6-phospho-beta-glucosidase BglA|unclassified	0.1467430951
+UniRef50_P67185: Probable transcriptional regulatory protein SAG1645	120.6095071182
+UniRef50_P67185: Probable transcriptional regulatory protein SAG1645|g__Streptococcus.s__Streptococcus_mutans	89.6203506923
+UniRef50_P67185: Probable transcriptional regulatory protein SAG1645|g__Escherichia.s__Escherichia_coli	22.5989801991
+UniRef50_P67185: Probable transcriptional regulatory protein SAG1645|g__Streptococcus.s__Streptococcus_agalactiae	8.3901762267
+UniRef50_A1B348: Cbb3-type cytochrome c oxidase subunit CcoP	120.6060413540
+UniRef50_A1B348: Cbb3-type cytochrome c oxidase subunit CcoP|g__Rhodobacter.s__Rhodobacter_sphaeroides	119.7416724275
+UniRef50_A1B348: Cbb3-type cytochrome c oxidase subunit CcoP|unclassified	0.8643689265
+UniRef50_A2S4H0: ATPase, AAA family protein	120.5975379448
+UniRef50_A2S4H0: ATPase, AAA family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	120.5975379448
+UniRef50_B9KMZ8	120.5886359224
+UniRef50_B9KMZ8|unclassified	120.5886359224
+UniRef50_Q44532: Ferredoxin--NADP reductase	120.5639564170
+UniRef50_Q44532: Ferredoxin--NADP reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	120.5639564170
+UniRef50_D0K7A4: IucC family siderophore biosynthesis protein	120.5432919650
+UniRef50_D0K7A4: IucC family siderophore biosynthesis protein|g__Staphylococcus.s__Staphylococcus_aureus	120.5432919650
+UniRef50_I0C613: DNA polymerase III alpha subunit	120.4773083165
+UniRef50_I0C613: DNA polymerase III alpha subunit|g__Staphylococcus.s__Staphylococcus_aureus	120.4773083165
+UniRef50_P33517: Cytochrome c oxidase subunit 1	120.4568200081
+UniRef50_P33517: Cytochrome c oxidase subunit 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	117.5918767688
+UniRef50_P33517: Cytochrome c oxidase subunit 1|unclassified	2.8649432393
+UniRef50_Q4L6M8: Acetyl-CoA carboxylase biotin carboxyl carrier subunit	120.3876242440
+UniRef50_Q4L6M8: Acetyl-CoA carboxylase biotin carboxyl carrier subunit|g__Staphylococcus.s__Staphylococcus_aureus	120.3876242440
+UniRef50_V6XU76	120.2889426582
+UniRef50_V6XU76|g__Staphylococcus.s__Staphylococcus_epidermidis	120.2889426582
+UniRef50_D3QF31: Phosphohydrolase, Icc family	120.2419990273
+UniRef50_D3QF31: Phosphohydrolase, Icc family|g__Staphylococcus.s__Staphylococcus_epidermidis	120.2419990273
+UniRef50_A8LT36: Na+/Ca+ antiporter	120.1005391893
+UniRef50_A8LT36: Na+/Ca+ antiporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	120.1005391893
+UniRef50_P37474: Transcription-repair-coupling factor	120.0499717991
+UniRef50_P37474: Transcription-repair-coupling factor|g__Staphylococcus.s__Staphylococcus_aureus	120.0499717991
+UniRef50_Q2KXF0: N-carbamoyl-D-amino acid hydrolase	120.0279989078
+UniRef50_Q2KXF0: N-carbamoyl-D-amino acid hydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	120.0279989078
+UniRef50_Q89WF4: Transcriptional regulatory protein	120.0229627446
+UniRef50_Q89WF4: Transcriptional regulatory protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	120.0229627446
+UniRef50_A2BPB2: S-adenosylmethionine synthase	119.9975057096
+UniRef50_A2BPB2: S-adenosylmethionine synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	115.7201728922
+UniRef50_A2BPB2: S-adenosylmethionine synthase|g__Streptococcus.s__Streptococcus_agalactiae	3.8773544828
+UniRef50_A2BPB2: S-adenosylmethionine synthase|unclassified	0.3999783346
+UniRef50_X5DZU0: NAD dependent epimerase/dehydratase family protein	119.9527651269
+UniRef50_X5DZU0: NAD dependent epimerase/dehydratase family protein|g__Staphylococcus.s__Staphylococcus_aureus	119.9527651269
+UniRef50_Q5HNY1: DNA repair protein RecO	119.9304279229
+UniRef50_Q5HNY1: DNA repair protein RecO|g__Staphylococcus.s__Staphylococcus_aureus	69.1209180629
+UniRef50_Q5HNY1: DNA repair protein RecO|g__Staphylococcus.s__Staphylococcus_epidermidis	50.8095098600
+UniRef50_Q5HKL2	119.8115598034
+UniRef50_Q5HKL2|g__Staphylococcus.s__Staphylococcus_epidermidis	118.6703919734
+UniRef50_Q5HKL2|unclassified	1.1411678301
+UniRef50_B2SC15: 2,3,4,5-tetrahydropyridine-2,6-dicarboxylate N-succinyltransferase	119.7917783690
+UniRef50_B2SC15: 2,3,4,5-tetrahydropyridine-2,6-dicarboxylate N-succinyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	78.3218054151
+UniRef50_B2SC15: 2,3,4,5-tetrahydropyridine-2,6-dicarboxylate N-succinyltransferase|g__Escherichia.s__Escherichia_coli	36.9434525575
+UniRef50_B2SC15: 2,3,4,5-tetrahydropyridine-2,6-dicarboxylate N-succinyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	2.6325810025
+UniRef50_B2SC15: 2,3,4,5-tetrahydropyridine-2,6-dicarboxylate N-succinyltransferase|g__Neisseria.s__Neisseria_meningitidis	1.8939393939
+UniRef50_F6CVN5: GAF domain protein	119.7367313590
+UniRef50_F6CVN5: GAF domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	119.6109847405
+UniRef50_F6CVN5: GAF domain protein|unclassified	0.1257466185
+UniRef50_D0K3I1: Phage amidase	119.6991451564
+UniRef50_D0K3I1: Phage amidase|g__Staphylococcus.s__Staphylococcus_aureus	119.6991451564
+UniRef50_Q5HRV3: PAP2 family protein	119.6890476261
+UniRef50_Q5HRV3: PAP2 family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	119.6890476261
+UniRef50_A8LIE1: Transcriptional regulator	119.6776567201
+UniRef50_A8LIE1: Transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	119.6776567201
+UniRef50_B9DKX8: Glutamine amidotransferase subunit PdxT	119.5921388876
+UniRef50_B9DKX8: Glutamine amidotransferase subunit PdxT|g__Staphylococcus.s__Staphylococcus_epidermidis	119.5557407795
+UniRef50_B9DKX8: Glutamine amidotransferase subunit PdxT|unclassified	0.0363981081
+UniRef50_Q8CPG3: Ribosome-binding factor A	119.5905120212
+UniRef50_Q8CPG3: Ribosome-binding factor A|g__Staphylococcus.s__Staphylococcus_epidermidis	118.9109451351
+UniRef50_Q8CPG3: Ribosome-binding factor A|unclassified	0.6795668861
+UniRef50_C9XQG5: Trehalose-6-phosphate hydrolase	119.5382239872
+UniRef50_C9XQG5: Trehalose-6-phosphate hydrolase|g__Staphylococcus.s__Staphylococcus_aureus	119.5382239872
+UniRef50_Q53174: Motility protein A	119.5258360593
+UniRef50_Q53174: Motility protein A|g__Rhodobacter.s__Rhodobacter_sphaeroides	119.5258360593
+UniRef50_D1GS39: MarR family regulatory protein	119.5178703333
+UniRef50_D1GS39: MarR family regulatory protein|g__Staphylococcus.s__Staphylococcus_aureus	70.9685039102
+UniRef50_D1GS39: MarR family regulatory protein|g__Staphylococcus.s__Staphylococcus_epidermidis	48.5493664231
+UniRef50_P0C0Q4: Extracellular elastase	119.4641880436
+UniRef50_P0C0Q4: Extracellular elastase|g__Staphylococcus.s__Staphylococcus_epidermidis	119.4641880436
+UniRef50_T1Y750: IolE protein-like protein	119.4528923217
+UniRef50_T1Y750: IolE protein-like protein|g__Staphylococcus.s__Staphylococcus_aureus	119.4528923217
+UniRef50_Q49XH5: Anthranilate phosphoribosyltransferase	119.4312897748
+UniRef50_Q49XH5: Anthranilate phosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	119.4312897748
+UniRef50_Q5HHH0: Probable cysteine desulfurase	119.3117307087
+UniRef50_Q5HHH0: Probable cysteine desulfurase|g__Staphylococcus.s__Staphylococcus_aureus	118.8352190486
+UniRef50_Q5HHH0: Probable cysteine desulfurase|unclassified	0.4765116601
+UniRef50_S5XW27	119.2991178362
+UniRef50_S5XW27|g__Rhodobacter.s__Rhodobacter_sphaeroides	119.2991178362
+UniRef50_G0LQE0: Capsular polysaccharide synthesis enzyme	119.2204849780
+UniRef50_G0LQE0: Capsular polysaccharide synthesis enzyme|g__Staphylococcus.s__Staphylococcus_aureus	119.2204849780
+UniRef50_Q5HGL7: Peptide deformylase-like	119.1218961959
+UniRef50_Q5HGL7: Peptide deformylase-like|g__Staphylococcus.s__Staphylococcus_epidermidis	85.1385680504
+UniRef50_Q5HGL7: Peptide deformylase-like|g__Staphylococcus.s__Staphylococcus_aureus	33.9833281455
+UniRef50_A0R979: DNA topoisomerase 3	119.0658328684
+UniRef50_A0R979: DNA topoisomerase 3|g__Staphylococcus.s__Staphylococcus_aureus	116.0346486728
+UniRef50_A0R979: DNA topoisomerase 3|g__Clostridium.s__Clostridium_beijerinckii	3.0034584478
+UniRef50_A0R979: DNA topoisomerase 3|unclassified	0.0277257478
+UniRef50_D9RE87: Superantigen-like protein	119.0065422475
+UniRef50_D9RE87: Superantigen-like protein|g__Staphylococcus.s__Staphylococcus_aureus	119.0065422475
+UniRef50_Q8CUF5	118.9945074411
+UniRef50_Q8CUF5|g__Staphylococcus.s__Staphylococcus_epidermidis	108.6717894801
+UniRef50_Q8CUF5|unclassified	10.3227179610
+UniRef50_N1MUD6	118.9854125187
+UniRef50_N1MUD6|g__Staphylococcus.s__Staphylococcus_epidermidis	62.0154739984
+UniRef50_N1MUD6|g__Staphylococcus.s__Staphylococcus_aureus	56.9699385203
+UniRef50_A4X095: Superfamily II helicase and inactivated derivatives-like protein	118.9504653363
+UniRef50_A4X095: Superfamily II helicase and inactivated derivatives-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	118.9504653363
+UniRef50_B9KTP4: Extracellular solute-binding protein, family 1	118.8746313726
+UniRef50_B9KTP4: Extracellular solute-binding protein, family 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	117.4291302588
+UniRef50_B9KTP4: Extracellular solute-binding protein, family 1|unclassified	1.4455011137
+UniRef50_Q2FH55: Putative oligopeptide transport system permease protein oppB2	118.8590635062
+UniRef50_Q2FH55: Putative oligopeptide transport system permease protein oppB2|g__Staphylococcus.s__Staphylococcus_aureus	60.4424202785
+UniRef50_Q2FH55: Putative oligopeptide transport system permease protein oppB2|g__Staphylococcus.s__Staphylococcus_epidermidis	58.4166432277
+UniRef50_O68926: Bacterioferritin	118.8576481882
+UniRef50_O68926: Bacterioferritin|g__Escherichia.s__Escherichia_coli	118.3286919130
+UniRef50_O68926: Bacterioferritin|unclassified	0.5289562752
+UniRef50_A3PJ68: SmpA/OmlA domain protein	118.8385856280
+UniRef50_A3PJ68: SmpA/OmlA domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	118.8385856280
+UniRef50_F4FMD5: Periplasmic iron binding protein	118.8039988642
+UniRef50_F4FMD5: Periplasmic iron binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	118.3934479294
+UniRef50_F4FMD5: Periplasmic iron binding protein|unclassified	0.4105509348
+UniRef50_A3PIK5: Putrescine-binding periplasmic protein	118.7511530691
+UniRef50_A3PIK5: Putrescine-binding periplasmic protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	118.7511530691
+UniRef50_Q98I01: UvrABC system protein B	118.7395809704
+UniRef50_Q98I01: UvrABC system protein B|g__Rhodobacter.s__Rhodobacter_sphaeroides	118.7395809704
+UniRef50_L7WTZ4	118.6030587746
+UniRef50_L7WTZ4|g__Staphylococcus.s__Staphylococcus_aureus	118.6030587746
+UniRef50_G8UZP9	118.5969765759
+UniRef50_G8UZP9|g__Staphylococcus.s__Staphylococcus_aureus	118.3079592348
+UniRef50_G8UZP9|unclassified	0.2890173410
+UniRef50_F5M453: McpA	118.5226444668
+UniRef50_F5M453: McpA|g__Rhodobacter.s__Rhodobacter_sphaeroides	118.5226444668
+UniRef50_P0A0L2: Enterotoxin type A	118.4591553108
+UniRef50_P0A0L2: Enterotoxin type A|g__Staphylococcus.s__Staphylococcus_aureus	118.4591553108
+UniRef50_G8UZP3: Dyp-type peroxidase family protein	118.4574075607
+UniRef50_G8UZP3: Dyp-type peroxidase family protein|g__Staphylococcus.s__Staphylococcus_aureus	118.4574075607
+UniRef50_P37754: 6-phosphogluconate dehydrogenase, decarboxylating	118.3991519823
+UniRef50_P37754: 6-phosphogluconate dehydrogenase, decarboxylating|g__Staphylococcus.s__Staphylococcus_epidermidis	85.1103347519
+UniRef50_P37754: 6-phosphogluconate dehydrogenase, decarboxylating|g__Escherichia.s__Escherichia_coli	33.2888172305
+UniRef50_Q9ZFS6: Exotoxin 3	118.3893959001
+UniRef50_Q9ZFS6: Exotoxin 3|g__Staphylococcus.s__Staphylococcus_aureus	118.3893959001
+UniRef50_Q89P04: Blr3679 protein	118.3866883065
+UniRef50_Q89P04: Blr3679 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	118.3866883065
+UniRef50_O07641: Nitrogenase iron protein	118.3551502323
+UniRef50_O07641: Nitrogenase iron protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	116.7069238163
+UniRef50_O07641: Nitrogenase iron protein|g__Clostridium.s__Clostridium_beijerinckii	1.2578616352
+UniRef50_O07641: Nitrogenase iron protein|unclassified	0.3903647808
+UniRef50_A4WW59	118.3530073391
+UniRef50_A4WW59|g__Rhodobacter.s__Rhodobacter_sphaeroides	118.3530073391
+UniRef50_D5ANZ4: Cytochrome c1	118.3501844590
+UniRef50_D5ANZ4: Cytochrome c1|g__Rhodobacter.s__Rhodobacter_sphaeroides	118.3501844590
+UniRef50_O34364: Probable oligo-1,6-glucosidase 2	118.3230700949
+UniRef50_O34364: Probable oligo-1,6-glucosidase 2|g__Staphylococcus.s__Staphylococcus_aureus	118.3230700949
+UniRef50_P0A6B3: Acyl carrier protein	118.2874781715
+UniRef50_P0A6B3: Acyl carrier protein|g__Staphylococcus.s__Staphylococcus_epidermidis	85.2753828859
+UniRef50_P0A6B3: Acyl carrier protein|g__Escherichia.s__Escherichia_coli	32.6568660786
+UniRef50_P0A6B3: Acyl carrier protein|unclassified	0.3552292070
+UniRef50_B9DIE1: MarR family regulatory protein	118.2620476936
+UniRef50_B9DIE1: MarR family regulatory protein|g__Staphylococcus.s__Staphylococcus_aureus	118.2620476936
+UniRef50_A3PKG7: Two component transcriptional regulator, LuxR family	118.1324449615
+UniRef50_A3PKG7: Two component transcriptional regulator, LuxR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	118.1324449615
+UniRef50_Q3J6L2	118.0309884062
+UniRef50_Q3J6L2|g__Rhodobacter.s__Rhodobacter_sphaeroides	101.9293766154
+UniRef50_Q3J6L2|unclassified	16.1016117908
+UniRef50_Q8VQ99: Serine-rich adhesin for platelets	118.0188706724
+UniRef50_Q8VQ99: Serine-rich adhesin for platelets|g__Staphylococcus.s__Staphylococcus_aureus	98.8357356428
+UniRef50_Q8VQ99: Serine-rich adhesin for platelets|g__Staphylococcus.s__Staphylococcus_epidermidis	19.1831350297
+UniRef50_A6QIU2	118.0015801415
+UniRef50_A6QIU2|g__Staphylococcus.s__Staphylococcus_epidermidis	58.3571885181
+UniRef50_A6QIU2|g__Staphylococcus.s__Staphylococcus_aureus	55.6336804431
+UniRef50_A6QIU2|unclassified	4.0107111803
+UniRef50_M1XIG8: SCCmec staphylococcal cassette region, isolate CMFT535	117.9706193768
+UniRef50_M1XIG8: SCCmec staphylococcal cassette region, isolate CMFT535|g__Staphylococcus.s__Staphylococcus_aureus	60.0005502657
+UniRef50_M1XIG8: SCCmec staphylococcal cassette region, isolate CMFT535|g__Staphylococcus.s__Staphylococcus_epidermidis	57.9700691110
+UniRef50_F6CLL2: PSP1 domain protein	117.9227188473
+UniRef50_F6CLL2: PSP1 domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	117.9227188473
+UniRef50_P16145: Probable Ni/Fe-hydrogenase B-type cytochrome subunit	117.8936961515
+UniRef50_P16145: Probable Ni/Fe-hydrogenase B-type cytochrome subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	117.8936961515
+UniRef50_Q8CAY6: Acetyl-CoA acetyltransferase, cytosolic	117.8656007098
+UniRef50_Q8CAY6: Acetyl-CoA acetyltransferase, cytosolic|g__Staphylococcus.s__Staphylococcus_epidermidis	76.4869359126
+UniRef50_Q8CAY6: Acetyl-CoA acetyltransferase, cytosolic|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.7423458761
+UniRef50_Q8CAY6: Acetyl-CoA acetyltransferase, cytosolic|g__Clostridium.s__Clostridium_beijerinckii	2.6808273904
+UniRef50_Q8CAY6: Acetyl-CoA acetyltransferase, cytosolic|g__Deinococcus.s__Deinococcus_radiodurans	0.9057971014
+UniRef50_Q8CAY6: Acetyl-CoA acetyltransferase, cytosolic|unclassified	0.0496944294
+UniRef50_B9K0E0: ABC transporter substrate binding protein (Ribose)	117.8641451555
+UniRef50_B9K0E0: ABC transporter substrate binding protein (Ribose)|g__Rhodobacter.s__Rhodobacter_sphaeroides	117.8641451555
+UniRef50_Q5HKG1	117.8476734959
+UniRef50_Q5HKG1|g__Staphylococcus.s__Staphylococcus_epidermidis	117.8476734959
+UniRef50_Q6GJ30: Putative glycosyltransferase TagX	117.8368255362
+UniRef50_Q6GJ30: Putative glycosyltransferase TagX|g__Staphylococcus.s__Staphylococcus_aureus	117.8368255362
+UniRef50_A5UJT9: Desulfoferrodoxin (Dfx)	117.8146548326
+UniRef50_A5UJT9: Desulfoferrodoxin (Dfx)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	117.8146548326
+UniRef50_P37877: Acetate kinase	117.7781777192
+UniRef50_P37877: Acetate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	117.7781777192
+UniRef50_C5BM46: TRAP transporter, DctQ family protein	117.7678436295
+UniRef50_C5BM46: TRAP transporter, DctQ family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	117.6731453460
+UniRef50_C5BM46: TRAP transporter, DctQ family protein|unclassified	0.0946982835
+UniRef50_A5IUL9: Membrane-flanked domain	117.7387732859
+UniRef50_A5IUL9: Membrane-flanked domain|g__Staphylococcus.s__Staphylococcus_aureus	117.7387732859
+UniRef50_Q3J2V7: Cysteine--tRNA ligase	117.6293098765
+UniRef50_Q3J2V7: Cysteine--tRNA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	117.6293098765
+UniRef50_Q3J2Q4	117.6232194607
+UniRef50_Q3J2Q4|g__Rhodobacter.s__Rhodobacter_sphaeroides	95.8949471101
+UniRef50_Q3J2Q4|unclassified	21.7282723506
+UniRef50_B0RVK3: Succinyl-CoA:3-ketoacid coenzyme A transferase subunit B	117.5642143504
+UniRef50_B0RVK3: Succinyl-CoA:3-ketoacid coenzyme A transferase subunit B|g__Rhodobacter.s__Rhodobacter_sphaeroides	97.0604636703
+UniRef50_B0RVK3: Succinyl-CoA:3-ketoacid coenzyme A transferase subunit B|g__Acinetobacter.s__Acinetobacter_baumannii	11.9262841280
+UniRef50_B0RVK3: Succinyl-CoA:3-ketoacid coenzyme A transferase subunit B|g__Deinococcus.s__Deinococcus_radiodurans	7.5905880547
+UniRef50_B0RVK3: Succinyl-CoA:3-ketoacid coenzyme A transferase subunit B|unclassified	0.9868784974
+UniRef50_Q115Z7: Holliday junction ATP-dependent DNA helicase RuvB	117.5290433254
+UniRef50_Q115Z7: Holliday junction ATP-dependent DNA helicase RuvB|g__Staphylococcus.s__Staphylococcus_epidermidis	79.6407943634
+UniRef50_Q115Z7: Holliday junction ATP-dependent DNA helicase RuvB|g__Escherichia.s__Escherichia_coli	25.2075890057
+UniRef50_Q115Z7: Holliday junction ATP-dependent DNA helicase RuvB|g__Acinetobacter.s__Acinetobacter_baumannii	5.3849773317
+UniRef50_Q115Z7: Holliday junction ATP-dependent DNA helicase RuvB|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2412906018
+UniRef50_Q115Z7: Holliday junction ATP-dependent DNA helicase RuvB|g__Clostridium.s__Clostridium_beijerinckii	1.9389279974
+UniRef50_Q115Z7: Holliday junction ATP-dependent DNA helicase RuvB|unclassified	0.1154640253
+UniRef50_S5YTV6: TRAP-type C4-dicarboxylate transport system, periplasmic component	117.5249638615
+UniRef50_S5YTV6: TRAP-type C4-dicarboxylate transport system, periplasmic component|g__Rhodobacter.s__Rhodobacter_sphaeroides	116.8909686714
+UniRef50_S5YTV6: TRAP-type C4-dicarboxylate transport system, periplasmic component|unclassified	0.6339951901
+UniRef50_Q8PLY8: Sulfoxide reductase catalytic subunit YedY	117.4841280269
+UniRef50_Q8PLY8: Sulfoxide reductase catalytic subunit YedY|g__Rhodobacter.s__Rhodobacter_sphaeroides	117.4841280269
+UniRef50_P39363: Putative phosphotransferase IIA component SgcA	117.4576222394
+UniRef50_P39363: Putative phosphotransferase IIA component SgcA|g__Escherichia.s__Escherichia_coli	117.4576222394
+UniRef50_Q7A7F8	117.3950812413
+UniRef50_Q7A7F8|g__Staphylococcus.s__Staphylococcus_aureus	117.3950812413
+UniRef50_Q1WSV7: Redox-sensing transcriptional repressor Rex	117.3157713167
+UniRef50_Q1WSV7: Redox-sensing transcriptional repressor Rex|g__Staphylococcus.s__Staphylococcus_aureus	117.3157713167
+UniRef50_Q11CE6: Carbohydrate ABC transporter substrate-binding protein, CUT1 family	117.2942590825
+UniRef50_Q11CE6: Carbohydrate ABC transporter substrate-binding protein, CUT1 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	117.2942590825
+UniRef50_Q2W0K2: ATPase involved in chromosome partitioning	117.2553003436
+UniRef50_Q2W0K2: ATPase involved in chromosome partitioning|g__Rhodobacter.s__Rhodobacter_sphaeroides	117.2553003436
+UniRef50_Q8DUK3: Probable thiol peroxidase	117.2353293126
+UniRef50_Q8DUK3: Probable thiol peroxidase|g__Streptococcus.s__Streptococcus_mutans	117.2353293126
+UniRef50_Q5HMA3: Thymidine kinase	117.1304542712
+UniRef50_Q5HMA3: Thymidine kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	116.6704981715
+UniRef50_Q5HMA3: Thymidine kinase|unclassified	0.4599560997
+UniRef50_Y9M1E8: Nitrate reductase, alpha subunit	117.1230918915
+UniRef50_Y9M1E8: Nitrate reductase, alpha subunit|g__Staphylococcus.s__Staphylococcus_aureus	117.1230918915
+UniRef50_G8AX62	117.1080388361
+UniRef50_G8AX62|g__Rhodobacter.s__Rhodobacter_sphaeroides	117.1080388361
+UniRef50_A5IV89	117.0537721155
+UniRef50_A5IV89|g__Staphylococcus.s__Staphylococcus_aureus	117.0537721155
+UniRef50_D5STS9	117.0218031101
+UniRef50_D5STS9|g__Rhodobacter.s__Rhodobacter_sphaeroides	117.0218031101
+UniRef50_Q3J3X7	116.9027526945
+UniRef50_Q3J3X7|g__Rhodobacter.s__Rhodobacter_sphaeroides	114.7788003590
+UniRef50_Q3J3X7|unclassified	2.1239523355
+UniRef50_P17855: Staphylocoagulase	116.8929149609
+UniRef50_P17855: Staphylocoagulase|g__Staphylococcus.s__Staphylococcus_aureus	116.8929149609
+UniRef50_A9VYY8	116.8774307495
+UniRef50_A9VYY8|g__Rhodobacter.s__Rhodobacter_sphaeroides	116.8774307495
+UniRef50_P80046: Isocitrate dehydrogenase [NADP]	116.8772688289
+UniRef50_P80046: Isocitrate dehydrogenase [NADP]|g__Staphylococcus.s__Staphylococcus_epidermidis	116.8772688289
+UniRef50_Q4A065	116.8534052150
+UniRef50_Q4A065|g__Staphylococcus.s__Staphylococcus_epidermidis	116.7882361918
+UniRef50_Q4A065|unclassified	0.0651690231
+UniRef50_Q5HKD7: Oxidoreductase, short chain dehydrogenase/reductase family	116.8424218037
+UniRef50_Q5HKD7: Oxidoreductase, short chain dehydrogenase/reductase family|g__Staphylococcus.s__Staphylococcus_epidermidis	116.8424218037
+UniRef50_A6QEA3	116.8178054217
+UniRef50_A6QEA3|g__Staphylococcus.s__Staphylococcus_aureus	116.8178054217
+UniRef50_Q9A759	116.7026873575
+UniRef50_Q9A759|g__Rhodobacter.s__Rhodobacter_sphaeroides	116.5195620370
+UniRef50_Q9A759|unclassified	0.1831253205
+UniRef50_M9RMW1: DNA integration/recombination/inversion protein	116.6867113913
+UniRef50_M9RMW1: DNA integration/recombination/inversion protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	116.6867113913
+UniRef50_A6QJP6: Zn-binding lipoprotein adcA-like protein	116.6504923352
+UniRef50_A6QJP6: Zn-binding lipoprotein adcA-like protein|g__Staphylococcus.s__Staphylococcus_aureus	116.6504923352
+UniRef50_B9DM19: 50S ribosomal protein L3	116.5541176973
+UniRef50_B9DM19: 50S ribosomal protein L3|g__Streptococcus.s__Streptococcus_mutans	59.0765614592
+UniRef50_B9DM19: 50S ribosomal protein L3|g__Staphylococcus.s__Staphylococcus_epidermidis	57.4775562381
+UniRef50_J9EAY7	116.4781728344
+UniRef50_J9EAY7|g__Staphylococcus.s__Staphylococcus_epidermidis	116.4781728344
+UniRef50_A1VWN7: Transposase, IS4 family	116.4302349600
+UniRef50_A1VWN7: Transposase, IS4 family|g__Acinetobacter.s__Acinetobacter_baumannii	116.4302349600
+UniRef50_N0AWG4: Replicative DNA helicase	116.4179292489
+UniRef50_N0AWG4: Replicative DNA helicase|g__Staphylococcus.s__Staphylococcus_aureus	72.3604189349
+UniRef50_N0AWG4: Replicative DNA helicase|g__Staphylococcus.s__Staphylococcus_epidermidis	44.0575103141
+UniRef50_Q9ZLS9: Transcription termination factor Rho	116.3519651459
+UniRef50_Q9ZLS9: Transcription termination factor Rho|g__Rhodobacter.s__Rhodobacter_sphaeroides	107.0689874597
+UniRef50_Q9ZLS9: Transcription termination factor Rho|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2829776862
+UniRef50_C1KVY0: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	116.3074677612
+UniRef50_C1KVY0: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	116.1264311698
+UniRef50_C1KVY0: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.1810365915
+UniRef50_Q9CF79: Aspartate carbamoyltransferase	116.2752034721
+UniRef50_Q9CF79: Aspartate carbamoyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	88.0133833153
+UniRef50_Q9CF79: Aspartate carbamoyltransferase|g__Streptococcus.s__Streptococcus_mutans	28.0626103098
+UniRef50_Q9CF79: Aspartate carbamoyltransferase|unclassified	0.1992098470
+UniRef50_A7X766: Imidazoleglycerol-phosphate dehydratase	116.2574115866
+UniRef50_A7X766: Imidazoleglycerol-phosphate dehydratase|g__Staphylococcus.s__Staphylococcus_epidermidis	58.9799469187
+UniRef50_A7X766: Imidazoleglycerol-phosphate dehydratase|g__Staphylococcus.s__Staphylococcus_aureus	57.0070978296
+UniRef50_A7X766: Imidazoleglycerol-phosphate dehydratase|unclassified	0.2703668383
+UniRef50_U5RSG0: NAD-dependent epimerase/dehydratase	116.2543886649
+UniRef50_U5RSG0: NAD-dependent epimerase/dehydratase|g__Staphylococcus.s__Staphylococcus_aureus	116.2543886649
+UniRef50_Q8YHG4: Glutamate--tRNA ligase 1	116.2160477552
+UniRef50_Q8YHG4: Glutamate--tRNA ligase 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	116.2160477552
+UniRef50_Q5HLD9: Peptidase, M20/M25/M40 family	116.1830192647
+UniRef50_Q5HLD9: Peptidase, M20/M25/M40 family|g__Staphylococcus.s__Staphylococcus_epidermidis	116.1830192647
+UniRef50_A5IS38: Phosphodiesterase, MJ0936 family	116.1703512948
+UniRef50_A5IS38: Phosphodiesterase, MJ0936 family|g__Staphylococcus.s__Staphylococcus_aureus	115.4694927398
+UniRef50_A5IS38: Phosphodiesterase, MJ0936 family|unclassified	0.7008585549
+UniRef50_P63333: Putative zinc metalloprotease SA1105	116.1687536647
+UniRef50_P63333: Putative zinc metalloprotease SA1105|g__Staphylococcus.s__Staphylococcus_aureus	59.1347487714
+UniRef50_P63333: Putative zinc metalloprotease SA1105|g__Staphylococcus.s__Staphylococcus_epidermidis	57.0340048933
+UniRef50_P00964: Glutamine synthetase	116.1458432918
+UniRef50_P00964: Glutamine synthetase|g__Rhodobacter.s__Rhodobacter_sphaeroides	116.0585060737
+UniRef50_P00964: Glutamine synthetase|unclassified	0.0873372181
+UniRef50_T1XT07: BioX, putative	116.0536417437
+UniRef50_T1XT07: BioX, putative|g__Staphylococcus.s__Staphylococcus_aureus	116.0536417437
+UniRef50_Y2C2K5: DNA gyrase subunit A	116.0190494708
+UniRef50_Y2C2K5: DNA gyrase subunit A|g__Staphylococcus.s__Staphylococcus_epidermidis	116.0190494708
+UniRef50_Q74LG0: Xanthine/uracil permease	116.0171924049
+UniRef50_Q74LG0: Xanthine/uracil permease|g__Staphylococcus.s__Staphylococcus_epidermidis	112.8968569591
+UniRef50_Q74LG0: Xanthine/uracil permease|g__Streptococcus.s__Streptococcus_agalactiae	3.1203354458
+UniRef50_A3PKK1: Transcriptional regulator, LuxR family	115.9701445742
+UniRef50_A3PKK1: Transcriptional regulator, LuxR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	115.9701445742
+UniRef50_D4M6I9	115.8477015731
+UniRef50_D4M6I9|g__Staphylococcus.s__Staphylococcus_aureus	115.8477015731
+UniRef50_Q5HQZ0	115.7689588378
+UniRef50_Q5HQZ0|g__Staphylococcus.s__Staphylococcus_epidermidis	72.0746151630
+UniRef50_Q5HQZ0|g__Staphylococcus.s__Staphylococcus_aureus	40.9772397771
+UniRef50_Q5HQZ0|unclassified	2.7171038976
+UniRef50_A1B9C6: Phospholipid/glycerol acyltransferase	115.7278691176
+UniRef50_A1B9C6: Phospholipid/glycerol acyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	115.7278691176
+UniRef50_Q5HQ74: Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex	115.7169870644
+UniRef50_Q5HQ74: Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex|g__Staphylococcus.s__Staphylococcus_epidermidis	115.6553641677
+UniRef50_Q5HQ74: Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex|unclassified	0.0616228967
+UniRef50_L1K9E2	115.6943547088
+UniRef50_L1K9E2|unclassified	115.6943547088
+UniRef50_D3G1Y7: Cadmium resistance transporter, putative	115.6542004796
+UniRef50_D3G1Y7: Cadmium resistance transporter, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	115.6542004796
+UniRef50_R9YKU7: Na+ dependent nucleoside transporter family protein	115.6474990698
+UniRef50_R9YKU7: Na+ dependent nucleoside transporter family protein|g__Staphylococcus.s__Staphylococcus_aureus	115.6474990698
+UniRef50_D3P377: Simple sugar transport system permease protein	115.6164903146
+UniRef50_D3P377: Simple sugar transport system permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	115.6164903146
+UniRef50_M9REZ0	115.6039388634
+UniRef50_M9REZ0|unclassified	106.3731113708
+UniRef50_M9REZ0|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.2308274926
+UniRef50_Q8VQK4: Putative peptide transport system permease protein BruAb2_1031	115.5810716231
+UniRef50_Q8VQK4: Putative peptide transport system permease protein BruAb2_1031|g__Rhodobacter.s__Rhodobacter_sphaeroides	115.5810716231
+UniRef50_Z7FZL7: MFS transporter, ACS family, glucarate transporter	115.5764520701
+UniRef50_Z7FZL7: MFS transporter, ACS family, glucarate transporter|g__Staphylococcus.s__Staphylococcus_aureus	115.5764520701
+UniRef50_F7X9S0: Phosphosugar isomerase	115.5011450954
+UniRef50_F7X9S0: Phosphosugar isomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	115.5011450954
+UniRef50_A3PLJ3	115.4663097283
+UniRef50_A3PLJ3|g__Rhodobacter.s__Rhodobacter_sphaeroides	105.2399314676
+UniRef50_A3PLJ3|unclassified	10.2263782606
+UniRef50_T1XSP1	115.4643800439
+UniRef50_T1XSP1|g__Staphylococcus.s__Staphylococcus_aureus	115.4643800439
+UniRef50_C5N1K2: ROK family protein	115.4589755675
+UniRef50_C5N1K2: ROK family protein|g__Staphylococcus.s__Staphylococcus_aureus	115.4589755675
+UniRef50_F7ZBN3	115.4070638926
+UniRef50_F7ZBN3|g__Rhodobacter.s__Rhodobacter_sphaeroides	114.6887257810
+UniRef50_F7ZBN3|unclassified	0.7183381116
+UniRef50_Q829X3: UvrABC system protein A	115.3615371078
+UniRef50_Q829X3: UvrABC system protein A|g__Staphylococcus.s__Staphylococcus_aureus	88.9854223861
+UniRef50_Q829X3: UvrABC system protein A|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.1437795480
+UniRef50_Q829X3: UvrABC system protein A|g__Propionibacterium.s__Propionibacterium_acnes	2.2323351737
+UniRef50_Q83RN5: Respiratory nitrate reductase 1 beta chain	115.3523301315
+UniRef50_Q83RN5: Respiratory nitrate reductase 1 beta chain|g__Staphylococcus.s__Staphylococcus_epidermidis	91.3601943079
+UniRef50_Q83RN5: Respiratory nitrate reductase 1 beta chain|g__Escherichia.s__Escherichia_coli	18.4719809995
+UniRef50_Q83RN5: Respiratory nitrate reductase 1 beta chain|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9120825840
+UniRef50_Q83RN5: Respiratory nitrate reductase 1 beta chain|unclassified	0.6080722401
+UniRef50_Q5HK21: YycI protein	115.2979112004
+UniRef50_Q5HK21: YycI protein|g__Staphylococcus.s__Staphylococcus_aureus	97.5269511527
+UniRef50_Q5HK21: YycI protein|g__Staphylococcus.s__Staphylococcus_epidermidis	17.7709600477
+UniRef50_Q89EZ8: Outer membrane lipoprotein	115.2903268963
+UniRef50_Q89EZ8: Outer membrane lipoprotein|g__Rhodobacter.s__Rhodobacter_sphaeroides	114.7327792089
+UniRef50_Q89EZ8: Outer membrane lipoprotein|unclassified	0.5575476875
+UniRef50_Q3IV99: HipA domain-containing protein	115.2643568099
+UniRef50_Q3IV99: HipA domain-containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	103.4951457890
+UniRef50_Q3IV99: HipA domain-containing protein|unclassified	11.7692110209
+UniRef50_P46050: Ferredoxin-3	115.2380952381
+UniRef50_P46050: Ferredoxin-3|g__Rhodobacter.s__Rhodobacter_sphaeroides	115.2380952381
+UniRef50_K0LVM3: Fructose phosphotransferase system enzyme fruA homolog	115.2348783756
+UniRef50_K0LVM3: Fructose phosphotransferase system enzyme fruA homolog|g__Staphylococcus.s__Staphylococcus_aureus	115.2348783756
+UniRef50_S4X9U7: LysR family HTH-type transcriptional regulator	115.1681480540
+UniRef50_S4X9U7: LysR family HTH-type transcriptional regulator|g__Staphylococcus.s__Staphylococcus_aureus	115.1681480540
+UniRef50_Q3IV28: DNA-binding HTH domain-containing proteins	115.1177728833
+UniRef50_Q3IV28: DNA-binding HTH domain-containing proteins|g__Rhodobacter.s__Rhodobacter_sphaeroides	115.1177728833
+UniRef50_Q4L8S8: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	115.0582597554
+UniRef50_Q4L8S8: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	115.0582597554
+UniRef50_F3U2Q5	115.0408986944
+UniRef50_F3U2Q5|g__Rhodobacter.s__Rhodobacter_sphaeroides	114.1508410192
+UniRef50_F3U2Q5|unclassified	0.8900576752
+UniRef50_Q8CR86	115.0225338826
+UniRef50_Q8CR86|g__Staphylococcus.s__Staphylococcus_epidermidis	115.0225338826
+UniRef50_Q989G9: Mlr6427 protein	114.9994040328
+UniRef50_Q989G9: Mlr6427 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	114.6791958152
+UniRef50_Q989G9: Mlr6427 protein|unclassified	0.3202082176
+UniRef50_A5IR41	114.9757403531
+UniRef50_A5IR41|g__Staphylococcus.s__Staphylococcus_aureus	114.9757403531
+UniRef50_F2MVP5: L-sorbosone dehydrogenase	114.8710781760
+UniRef50_F2MVP5: L-sorbosone dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	114.8710781760
+UniRef50_P0CL53: S-(hydroxymethyl)glutathione dehydrogenase	114.8652645413
+UniRef50_P0CL53: S-(hydroxymethyl)glutathione dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	53.6030895675
+UniRef50_P0CL53: S-(hydroxymethyl)glutathione dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.1944567534
+UniRef50_P0CL53: S-(hydroxymethyl)glutathione dehydrogenase|g__Escherichia.s__Escherichia_coli	20.0112070318
+UniRef50_P0CL53: S-(hydroxymethyl)glutathione dehydrogenase|unclassified	0.0565111886
+UniRef50_D0K9Z2: Glycosyltransferase stabilizing protein Gtf2	114.7700198165
+UniRef50_D0K9Z2: Glycosyltransferase stabilizing protein Gtf2|g__Staphylococcus.s__Staphylococcus_aureus	114.7700198165
+UniRef50_Q9ZG89: GTP-binding protein EngB	114.7267602981
+UniRef50_Q9ZG89: GTP-binding protein EngB|g__Rhodobacter.s__Rhodobacter_sphaeroides	114.7267602981
+UniRef50_Q2YWJ9: 3-dehydroquinate dehydratase	114.5256544578
+UniRef50_Q2YWJ9: 3-dehydroquinate dehydratase|g__Staphylococcus.s__Staphylococcus_aureus	114.5256544578
+UniRef50_Q8NYT6	114.5020542015
+UniRef50_Q8NYT6|g__Staphylococcus.s__Staphylococcus_aureus	114.5020542015
+UniRef50_D3QDI5	114.4884904761
+UniRef50_D3QDI5|g__Staphylococcus.s__Staphylococcus_epidermidis	98.9714740811
+UniRef50_D3QDI5|g__Staphylococcus.s__Staphylococcus_aureus	15.5170163950
+UniRef50_Q2YUI8: Serine-protein kinase RsbW	114.4629267673
+UniRef50_Q2YUI8: Serine-protein kinase RsbW|g__Staphylococcus.s__Staphylococcus_aureus	63.1328684889
+UniRef50_Q2YUI8: Serine-protein kinase RsbW|g__Staphylococcus.s__Staphylococcus_epidermidis	47.1981572126
+UniRef50_Q2YUI8: Serine-protein kinase RsbW|unclassified	4.1319010658
+UniRef50_Q4L667: Phosphatidylglycerol lysyltransferase	114.4534804916
+UniRef50_Q4L667: Phosphatidylglycerol lysyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	72.8963525447
+UniRef50_Q4L667: Phosphatidylglycerol lysyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	41.5571279469
+UniRef50_A7X782: Pyrrolidone-carboxylate peptidase	114.4296970902
+UniRef50_A7X782: Pyrrolidone-carboxylate peptidase|g__Staphylococcus.s__Staphylococcus_aureus	114.0685901361
+UniRef50_A7X782: Pyrrolidone-carboxylate peptidase|unclassified	0.3611069541
+UniRef50_V5SBZ4: Phosphonate ABC transporter substrate-binding protein	114.4123034490
+UniRef50_V5SBZ4: Phosphonate ABC transporter substrate-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	114.3468622817
+UniRef50_V5SBZ4: Phosphonate ABC transporter substrate-binding protein|unclassified	0.0654411673
+UniRef50_E1VBT7: Na(+)/H(+) antiporter NhaD	114.2665122471
+UniRef50_E1VBT7: Na(+)/H(+) antiporter NhaD|g__Rhodobacter.s__Rhodobacter_sphaeroides	114.2665122471
+UniRef50_Q2YV92	114.2461918889
+UniRef50_Q2YV92|g__Staphylococcus.s__Staphylococcus_aureus	114.2461918889
+UniRef50_C5VW20: Metal-dependent transcriptional regulator	114.2157006712
+UniRef50_C5VW20: Metal-dependent transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	107.4350036919
+UniRef50_C5VW20: Metal-dependent transcriptional regulator|g__Streptococcus.s__Streptococcus_agalactiae	6.7806969792
+UniRef50_T1YAE9: O-succinylbenzoate synthase	114.1192268468
+UniRef50_T1YAE9: O-succinylbenzoate synthase|g__Staphylococcus.s__Staphylococcus_aureus	114.1192268468
+UniRef50_Q4L783: UPF0478 protein SH1183	114.0735784760
+UniRef50_Q4L783: UPF0478 protein SH1183|g__Staphylococcus.s__Staphylococcus_aureus	58.0806660195
+UniRef50_Q4L783: UPF0478 protein SH1183|g__Staphylococcus.s__Staphylococcus_epidermidis	55.9929124565
+UniRef50_Q4L7R6: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	114.0473225499
+UniRef50_Q4L7R6: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	114.0473225499
+UniRef50_G7V8Z9	114.0229401790
+UniRef50_G7V8Z9|g__Staphylococcus.s__Staphylococcus_aureus	114.0229401790
+UniRef50_A4WXA3	114.0075832496
+UniRef50_A4WXA3|g__Rhodobacter.s__Rhodobacter_sphaeroides	113.3982387012
+UniRef50_A4WXA3|unclassified	0.6093445484
+UniRef50_D3QCT2	114.0055300684
+UniRef50_D3QCT2|g__Staphylococcus.s__Staphylococcus_epidermidis	59.4703243190
+UniRef50_D3QCT2|g__Staphylococcus.s__Staphylococcus_aureus	54.5352057494
+UniRef50_Q3J3N9: Chemotaxis protein methyltransferase	113.9808755533
+UniRef50_Q3J3N9: Chemotaxis protein methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	113.9808755533
+UniRef50_Q3J4U2	113.9283215684
+UniRef50_Q3J4U2|g__Rhodobacter.s__Rhodobacter_sphaeroides	108.4773729902
+UniRef50_Q3J4U2|unclassified	5.4509485782
+UniRef50_C5MZU4: Uroporphyrinogen-III C-methyltransferase	113.9079277585
+UniRef50_C5MZU4: Uroporphyrinogen-III C-methyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	113.9079277585
+UniRef50_G2SQT2: ABC transporter, ATP-binding protein	113.8525742231
+UniRef50_G2SQT2: ABC transporter, ATP-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	113.8525742231
+UniRef50_Q5HNG0: D-alanine aminotransferase	113.8149561460
+UniRef50_Q5HNG0: D-alanine aminotransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	113.5169784016
+UniRef50_Q5HNG0: D-alanine aminotransferase|unclassified	0.2979777444
+UniRef50_H6PAQ2: Transcriptional regulator,glutamine synthetase repressor	113.8138138138
+UniRef50_H6PAQ2: Transcriptional regulator,glutamine synthetase repressor|g__Streptococcus.s__Streptococcus_mutans	113.8138138138
+UniRef50_A5UM96	113.6950904393
+UniRef50_A5UM96|g__Methanobrevibacter.s__Methanobrevibacter_smithii	113.6950904393
+UniRef50_K0LAR2: APC family amino acid-polyamine-organocation transporter	113.6943896139
+UniRef50_K0LAR2: APC family amino acid-polyamine-organocation transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	75.7849385628
+UniRef50_K0LAR2: APC family amino acid-polyamine-organocation transporter|g__Staphylococcus.s__Staphylococcus_aureus	37.9094510511
+UniRef50_Q2SLW2	113.6661994345
+UniRef50_Q2SLW2|g__Rhodobacter.s__Rhodobacter_sphaeroides	113.6661994345
+UniRef50_Q9FFE6: Probable acyl-activating enzyme 5, peroxisomal	113.6210371937
+UniRef50_Q9FFE6: Probable acyl-activating enzyme 5, peroxisomal|g__Rhodobacter.s__Rhodobacter_sphaeroides	108.9283854504
+UniRef50_Q9FFE6: Probable acyl-activating enzyme 5, peroxisomal|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6227428807
+UniRef50_Q9FFE6: Probable acyl-activating enzyme 5, peroxisomal|unclassified	0.0699088625
+UniRef50_A3CKK8: UPF0310 protein SSA_0254	113.5936888517
+UniRef50_A3CKK8: UPF0310 protein SSA_0254|g__Streptococcus.s__Streptococcus_mutans	113.5936888517
+UniRef50_L7WUC8: HesA/MoeB/ThiF family protein	113.5810447764
+UniRef50_L7WUC8: HesA/MoeB/ThiF family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	113.5810447764
+UniRef50_Q2FDU6: Dehydrosqualene desaturase	113.5787405989
+UniRef50_Q2FDU6: Dehydrosqualene desaturase|g__Staphylococcus.s__Staphylococcus_aureus	113.5398445692
+UniRef50_Q2FDU6: Dehydrosqualene desaturase|unclassified	0.0388960297
+UniRef50_N1MTW2: Zn-dependent hydroxyacylglutathione hydrolase / Polysulfide binding protein	113.5592878901
+UniRef50_N1MTW2: Zn-dependent hydroxyacylglutathione hydrolase / Polysulfide binding protein|g__Staphylococcus.s__Staphylococcus_aureus	113.5592878901
+UniRef50_P45773: Type II secretion system protein G	113.5091926459
+UniRef50_P45773: Type II secretion system protein G|g__Escherichia.s__Escherichia_coli	113.5091926459
+UniRef50_Q8CNM7: Ser-Asp rich fibrinogen-binding protein	113.4402552745
+UniRef50_Q8CNM7: Ser-Asp rich fibrinogen-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	112.8946523726
+UniRef50_Q8CNM7: Ser-Asp rich fibrinogen-binding protein|unclassified	0.5456029019
+UniRef50_E3I166: Response regulator receiver protein	113.3759536670
+UniRef50_E3I166: Response regulator receiver protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	113.3759536670
+UniRef50_Q1IS93: DNA-directed RNA polymerase subunit alpha	113.3432161519
+UniRef50_Q1IS93: DNA-directed RNA polymerase subunit alpha|g__Rhodobacter.s__Rhodobacter_sphaeroides	113.1373521483
+UniRef50_Q1IS93: DNA-directed RNA polymerase subunit alpha|unclassified	0.2058640036
+UniRef50_Q5HIG5: Hypoxanthine-guanine phosphoribosyltransferase	113.2780224491
+UniRef50_Q5HIG5: Hypoxanthine-guanine phosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	113.2780224491
+UniRef50_Q28TC8: Poly(R)-hydroxyalkanoic acid synthase class I	113.2530861626
+UniRef50_Q28TC8: Poly(R)-hydroxyalkanoic acid synthase class I|g__Rhodobacter.s__Rhodobacter_sphaeroides	113.2530861626
+UniRef50_Q53135: Chemotaxis protein CheA	113.2150695103
+UniRef50_Q53135: Chemotaxis protein CheA|g__Rhodobacter.s__Rhodobacter_sphaeroides	112.9355066000
+UniRef50_Q53135: Chemotaxis protein CheA|unclassified	0.2795629103
+UniRef50_Q5HRJ2: 3-oxoacyl-(Acyl-carrier-protein) reductase, putative	113.1423824265
+UniRef50_Q5HRJ2: 3-oxoacyl-(Acyl-carrier-protein) reductase, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	113.1423824265
+UniRef50_C5N355: Periplasmic binding protein	113.1418881508
+UniRef50_C5N355: Periplasmic binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	58.4002360254
+UniRef50_C5N355: Periplasmic binding protein|g__Staphylococcus.s__Staphylococcus_aureus	54.7416521255
+UniRef50_C7ZTC0: FecCD transporter	113.1371834764
+UniRef50_C7ZTC0: FecCD transporter|g__Staphylococcus.s__Staphylococcus_aureus	113.1371834764
+UniRef50_T1XMS1: High-affinity iron permease	113.1369859898
+UniRef50_T1XMS1: High-affinity iron permease|g__Staphylococcus.s__Staphylococcus_aureus	113.1369859898
+UniRef50_Q49UM5: Adenylyl-sulfate kinase	113.1326289634
+UniRef50_Q49UM5: Adenylyl-sulfate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	113.0460789699
+UniRef50_Q49UM5: Adenylyl-sulfate kinase|unclassified	0.0865499935
+UniRef50_D6SIU1: Primosomal protein DnaI	113.0888963952
+UniRef50_D6SIU1: Primosomal protein DnaI|g__Staphylococcus.s__Staphylococcus_aureus	113.0888963952
+UniRef50_Q5HM58	113.0530575084
+UniRef50_Q5HM58|g__Staphylococcus.s__Staphylococcus_epidermidis	63.3824856510
+UniRef50_Q5HM58|g__Staphylococcus.s__Staphylococcus_aureus	49.6705718575
+UniRef50_T1YCL4	113.0516234820
+UniRef50_T1YCL4|g__Staphylococcus.s__Staphylococcus_aureus	112.8743185175
+UniRef50_T1YCL4|unclassified	0.1773049645
+UniRef50_M1XK11: SCCmec staphylococcal cassette region, isolate CMFT201	112.9969672554
+UniRef50_M1XK11: SCCmec staphylococcal cassette region, isolate CMFT201|g__Staphylococcus.s__Staphylococcus_epidermidis	62.7930303474
+UniRef50_M1XK11: SCCmec staphylococcal cassette region, isolate CMFT201|g__Staphylococcus.s__Staphylococcus_aureus	50.2039369080
+UniRef50_P11663	112.9864054382
+UniRef50_P11663|g__Escherichia.s__Escherichia_coli	112.9864054382
+UniRef50_D6SE37	112.9723369628
+UniRef50_D6SE37|g__Staphylococcus.s__Staphylococcus_aureus	112.9723369628
+UniRef50_Q3HKE6: TonB-dependent receptor protein	112.8659706033
+UniRef50_Q3HKE6: TonB-dependent receptor protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	112.8659706033
+UniRef50_Q99UZ6: UPF0637 protein SA0957	112.7756704534
+UniRef50_Q99UZ6: UPF0637 protein SA0957|g__Staphylococcus.s__Staphylococcus_epidermidis	65.3764718864
+UniRef50_Q99UZ6: UPF0637 protein SA0957|g__Staphylococcus.s__Staphylococcus_aureus	47.3991985670
+UniRef50_N1MTR3: Type I restriction-modification system,specificity subunit S	112.7434678600
+UniRef50_N1MTR3: Type I restriction-modification system,specificity subunit S|g__Staphylococcus.s__Staphylococcus_epidermidis	58.6715741492
+UniRef50_N1MTR3: Type I restriction-modification system,specificity subunit S|g__Staphylococcus.s__Staphylococcus_aureus	54.0718937108
+UniRef50_B9KPX1: Periplasmic binding protein/LacI transcriptional regulator	112.7281092501
+UniRef50_B9KPX1: Periplasmic binding protein/LacI transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	112.7281092501
+UniRef50_P19931: Hydrogenase-1 operon protein HyaE	112.7023450055
+UniRef50_P19931: Hydrogenase-1 operon protein HyaE|g__Escherichia.s__Escherichia_coli	112.7023450055
+UniRef50_B2VKE4: Cation/acetate symporter ActP	112.6560132038
+UniRef50_B2VKE4: Cation/acetate symporter ActP|g__Rhodobacter.s__Rhodobacter_sphaeroides	99.0873041000
+UniRef50_B2VKE4: Cation/acetate symporter ActP|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.8451201024
+UniRef50_B2VKE4: Cation/acetate symporter ActP|g__Acinetobacter.s__Acinetobacter_baumannii	0.7235890014
+UniRef50_C1C8M1: Threonine--tRNA ligase	112.6361550892
+UniRef50_C1C8M1: Threonine--tRNA ligase|g__Streptococcus.s__Streptococcus_mutans	49.5493851243
+UniRef50_C1C8M1: Threonine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	32.1023159694
+UniRef50_C1C8M1: Threonine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	29.5248572208
+UniRef50_C1C8M1: Threonine--tRNA ligase|unclassified	0.8832278986
+UniRef50_C1C8M1: Threonine--tRNA ligase|g__Streptococcus.s__Streptococcus_agalactiae	0.5763688761
+UniRef50_Q1WV73: Ribosomal RNA small subunit methyltransferase A	112.6314229661
+UniRef50_Q1WV73: Ribosomal RNA small subunit methyltransferase A|g__Staphylococcus.s__Staphylococcus_epidermidis	74.0058735089
+UniRef50_Q1WV73: Ribosomal RNA small subunit methyltransferase A|g__Streptococcus.s__Streptococcus_mutans	35.0291608964
+UniRef50_Q1WV73: Ribosomal RNA small subunit methyltransferase A|g__Streptococcus.s__Streptococcus_agalactiae	3.2983591356
+UniRef50_Q1WV73: Ribosomal RNA small subunit methyltransferase A|unclassified	0.2980294252
+UniRef50_L1K8B7	112.6204705221
+UniRef50_L1K8B7|unclassified	112.6204705221
+UniRef50_B7GJM7: 2-oxoglutarate ferredoxin oxidoreductase, beta subunit	112.5945950554
+UniRef50_B7GJM7: 2-oxoglutarate ferredoxin oxidoreductase, beta subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	112.5945950554
+UniRef50_B0UDK8: Light-independent protochlorophyllide reductase iron-sulfur ATP-binding protein	112.5379497233
+UniRef50_B0UDK8: Light-independent protochlorophyllide reductase iron-sulfur ATP-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	110.7024582167
+UniRef50_B0UDK8: Light-independent protochlorophyllide reductase iron-sulfur ATP-binding protein|unclassified	1.8354915066
+UniRef50_X4Z848: Short chain dehydrogenase family protein	112.5222103092
+UniRef50_X4Z848: Short chain dehydrogenase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	112.5222103092
+UniRef50_Q8CR42	112.5203923856
+UniRef50_Q8CR42|g__Staphylococcus.s__Staphylococcus_epidermidis	112.5203923856
+UniRef50_B1HU19: 3-methyl-2-oxobutanoate hydroxymethyltransferase	112.5121466949
+UniRef50_B1HU19: 3-methyl-2-oxobutanoate hydroxymethyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	112.4277043774
+UniRef50_B1HU19: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.0844423175
+UniRef50_Q5HS11	112.4798405080
+UniRef50_Q5HS11|g__Staphylococcus.s__Staphylococcus_epidermidis	112.4798405080
+UniRef50_D5AQ72: Glycine betaine/L-proline ABC transporter, permease protein ProW-1	112.4525020225
+UniRef50_D5AQ72: Glycine betaine/L-proline ABC transporter, permease protein ProW-1|g__Rhodobacter.s__Rhodobacter_sphaeroides	112.4525020225
+UniRef50_I0C110: ABC transporter ATP-binding protein	112.4275356045
+UniRef50_I0C110: ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	112.4275356045
+UniRef50_P45527	112.3978348192
+UniRef50_P45527|g__Rhodobacter.s__Rhodobacter_sphaeroides	72.9470939378
+UniRef50_P45527|g__Escherichia.s__Escherichia_coli	39.4507408814
+UniRef50_I0C5Y5	112.3850397127
+UniRef50_I0C5Y5|g__Staphylococcus.s__Staphylococcus_aureus	112.3850397127
+UniRef50_Q3J074: TRAP-T family transporter, DctP (Periplasmic binding) subunit	112.3704902732
+UniRef50_Q3J074: TRAP-T family transporter, DctP (Periplasmic binding) subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	112.3704902732
+UniRef50_D5BPQ5: RNA polymerase sigma factor RpoH	112.3640075135
+UniRef50_D5BPQ5: RNA polymerase sigma factor RpoH|g__Rhodobacter.s__Rhodobacter_sphaeroides	112.3640075135
+UniRef50_Q89WR0: Exodeoxyribonuclease III	112.3523638227
+UniRef50_Q89WR0: Exodeoxyribonuclease III|g__Rhodobacter.s__Rhodobacter_sphaeroides	112.3523638227
+UniRef50_A3PR66: NAD(P)H dehydrogenase (Quinone)	112.2837046350
+UniRef50_A3PR66: NAD(P)H dehydrogenase (Quinone)|g__Rhodobacter.s__Rhodobacter_sphaeroides	108.7158248603
+UniRef50_A3PR66: NAD(P)H dehydrogenase (Quinone)|unclassified	3.5678797747
+UniRef50_Q8CQG0: Response regulator	112.2799634656
+UniRef50_Q8CQG0: Response regulator|g__Staphylococcus.s__Staphylococcus_epidermidis	112.2799634656
+UniRef50_Q2FXR3: Delta-aminolevulinic acid dehydratase	112.2336326517
+UniRef50_Q2FXR3: Delta-aminolevulinic acid dehydratase|g__Staphylococcus.s__Staphylococcus_aureus	112.0660423365
+UniRef50_Q2FXR3: Delta-aminolevulinic acid dehydratase|unclassified	0.1675903151
+UniRef50_O49213: GDP-L-fucose synthase 1	112.2104301490
+UniRef50_O49213: GDP-L-fucose synthase 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	112.0630054778
+UniRef50_O49213: GDP-L-fucose synthase 1|unclassified	0.1474246712
+UniRef50_Q89IP8: Serine acetyltransferase	112.1933232045
+UniRef50_Q89IP8: Serine acetyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	112.1933232045
+UniRef50_E6MC83	112.1853829765
+UniRef50_E6MC83|g__Staphylococcus.s__Staphylococcus_aureus	112.1853829765
+UniRef50_S5XR90: Aminotransferase	112.1780708946
+UniRef50_S5XR90: Aminotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	112.1780708946
+UniRef50_A7X0P1	112.1409832084
+UniRef50_A7X0P1|g__Staphylococcus.s__Staphylococcus_aureus	61.5289714498
+UniRef50_A7X0P1|g__Staphylococcus.s__Staphylococcus_epidermidis	50.6120117586
+UniRef50_U5UJV7: Aminopeptidase PepS	112.1293559773
+UniRef50_U5UJV7: Aminopeptidase PepS|g__Staphylococcus.s__Staphylococcus_epidermidis	112.1293559773
+UniRef50_Q9RQQ0: Biofilm operon icaADBC HTH-type negative transcriptional regulator IcaR	112.0933980526
+UniRef50_Q9RQQ0: Biofilm operon icaADBC HTH-type negative transcriptional regulator IcaR|g__Staphylococcus.s__Staphylococcus_aureus	112.0933980526
+UniRef50_E8SHR5: Chromosome (Plasmid) partitioning protein ParB / Stage 0 sporulation protein J	112.0906152699
+UniRef50_E8SHR5: Chromosome (Plasmid) partitioning protein ParB / Stage 0 sporulation protein J|g__Staphylococcus.s__Staphylococcus_epidermidis	112.0906152699
+UniRef50_G0AJ01: ABC sugar transporter, periplasmic ligand binding protein	112.0886328116
+UniRef50_G0AJ01: ABC sugar transporter, periplasmic ligand binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	112.0886328116
+UniRef50_I0C140: OppC	112.0787256222
+UniRef50_I0C140: OppC|g__Staphylococcus.s__Staphylococcus_aureus	112.0787256222
+UniRef50_D7DKW7: Short-chain dehydrogenase/reductase SDR	112.0521072294
+UniRef50_D7DKW7: Short-chain dehydrogenase/reductase SDR|g__Rhodobacter.s__Rhodobacter_sphaeroides	112.0521072294
+UniRef50_M4YYE1: Universal stress protein	112.0432139373
+UniRef50_M4YYE1: Universal stress protein|g__Streptococcus.s__Streptococcus_mutans	112.0432139373
+UniRef50_Q8CS08	112.0292981493
+UniRef50_Q8CS08|g__Staphylococcus.s__Staphylococcus_epidermidis	112.0292981493
+UniRef50_L7WTB5	112.0164577997
+UniRef50_L7WTB5|g__Staphylococcus.s__Staphylococcus_epidermidis	112.0164577997
+UniRef50_D3QJ09	111.9550574398
+UniRef50_D3QJ09|g__Staphylococcus.s__Staphylococcus_aureus	59.5488698020
+UniRef50_D3QJ09|g__Staphylococcus.s__Staphylococcus_epidermidis	52.4061876378
+UniRef50_Q89P06: Blr3677 protein	111.9174422707
+UniRef50_Q89P06: Blr3677 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	111.9174422707
+UniRef50_F0P455: Transcriptional regulator, LysR family	111.8986469470
+UniRef50_F0P455: Transcriptional regulator, LysR family|g__Staphylococcus.s__Staphylococcus_epidermidis	111.8986469470
+UniRef50_Q65T94: ARA1 protein	111.8955878495
+UniRef50_Q65T94: ARA1 protein|g__Staphylococcus.s__Staphylococcus_aureus	111.8955878495
+UniRef50_B9KX11: ABC branched chain amino acid transporter, inner membrane subunit	111.8813293612
+UniRef50_B9KX11: ABC branched chain amino acid transporter, inner membrane subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	111.8813293612
+UniRef50_P39794: PTS system trehalose-specific EIIBC component	111.8605330990
+UniRef50_P39794: PTS system trehalose-specific EIIBC component|g__Staphylococcus.s__Staphylococcus_aureus	111.7983012529
+UniRef50_P39794: PTS system trehalose-specific EIIBC component|unclassified	0.0622318461
+UniRef50_B9KNI7: Transcriptional regulator MraZ	111.7859654400
+UniRef50_B9KNI7: Transcriptional regulator MraZ|g__Rhodobacter.s__Rhodobacter_sphaeroides	111.7859654400
+UniRef50_A3PIS2	111.7538708190
+UniRef50_A3PIS2|g__Rhodobacter.s__Rhodobacter_sphaeroides	111.7538708190
+UniRef50_A4WSY4: Transcriptional regulator, RpiR family	111.7022565644
+UniRef50_A4WSY4: Transcriptional regulator, RpiR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	111.7022565644
+UniRef50_Q3J3F1: NADH-quinone oxidoreductase subunit H 1	111.6645409217
+UniRef50_Q3J3F1: NADH-quinone oxidoreductase subunit H 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	110.4643968768
+UniRef50_Q3J3F1: NADH-quinone oxidoreductase subunit H 1|unclassified	1.2001440450
+UniRef50_D8HFS0	111.6591555571
+UniRef50_D8HFS0|g__Staphylococcus.s__Staphylococcus_aureus	111.6591555571
+UniRef50_D5ANZ3: Cytochrome b	111.6386507408
+UniRef50_D5ANZ3: Cytochrome b|g__Rhodobacter.s__Rhodobacter_sphaeroides	111.6386507408
+UniRef50_Q4L7G4: Peroxide-responsive repressor PerR	111.6335552831
+UniRef50_Q4L7G4: Peroxide-responsive repressor PerR|g__Staphylococcus.s__Staphylococcus_epidermidis	64.8361021673
+UniRef50_Q4L7G4: Peroxide-responsive repressor PerR|g__Staphylococcus.s__Staphylococcus_aureus	46.7974531158
+UniRef50_Q5HKY5	111.5729512283
+UniRef50_Q5HKY5|g__Staphylococcus.s__Staphylococcus_epidermidis	111.5729512283
+UniRef50_Q9WYT7: Probable transcriptional regulatory protein TM_0466	111.4545838349
+UniRef50_Q9WYT7: Probable transcriptional regulatory protein TM_0466|g__Rhodobacter.s__Rhodobacter_sphaeroides	111.4545838349
+UniRef50_K7ZDL1: DeoC/LacD aldolase family protein	111.4475490473
+UniRef50_K7ZDL1: DeoC/LacD aldolase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	111.4475490473
+UniRef50_Q3J229	111.3944733709
+UniRef50_Q3J229|g__Rhodobacter.s__Rhodobacter_sphaeroides	111.3944733709
+UniRef50_D3QF80: Teichoic acid biosynthesis protein X	111.3123341640
+UniRef50_D3QF80: Teichoic acid biosynthesis protein X|g__Staphylococcus.s__Staphylococcus_epidermidis	111.3123341640
+UniRef50_X9ZAP3	111.3048732902
+UniRef50_X9ZAP3|g__Staphylococcus.s__Staphylococcus_aureus	110.5110794470
+UniRef50_X9ZAP3|unclassified	0.7937938432
+UniRef50_D8HI57: Hydrolase, haloacid dehalogenase-like family	111.2690742471
+UniRef50_D8HI57: Hydrolase, haloacid dehalogenase-like family|g__Staphylococcus.s__Staphylococcus_epidermidis	62.4640349372
+UniRef50_D8HI57: Hydrolase, haloacid dehalogenase-like family|g__Staphylococcus.s__Staphylococcus_aureus	48.8050393099
+UniRef50_Q5HM80	111.2355585112
+UniRef50_Q5HM80|g__Staphylococcus.s__Staphylococcus_aureus	84.0840424512
+UniRef50_Q5HM80|g__Staphylococcus.s__Staphylococcus_epidermidis	24.5808219725
+UniRef50_Q5HM80|unclassified	2.5706940874
+UniRef50_B9KWN5: ABC amino acid transporter, periplasmic ligand binding protein	111.1746326478
+UniRef50_B9KWN5: ABC amino acid transporter, periplasmic ligand binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	111.1746326478
+UniRef50_I0C3E8: Myo-inositol-1(Or 4)-monophosphatase	111.1415657256
+UniRef50_I0C3E8: Myo-inositol-1(Or 4)-monophosphatase|g__Staphylococcus.s__Staphylococcus_epidermidis	59.6718383916
+UniRef50_I0C3E8: Myo-inositol-1(Or 4)-monophosphatase|g__Staphylococcus.s__Staphylococcus_aureus	51.4697273340
+UniRef50_S5UDS6	111.1111111111
+UniRef50_S5UDS6|g__Escherichia.s__Escherichia_coli	111.1111111111
+UniRef50_C5N6A8: Primosomal protein DnaI	111.1079756574
+UniRef50_C5N6A8: Primosomal protein DnaI|g__Staphylococcus.s__Staphylococcus_epidermidis	111.1079756574
+UniRef50_C5MYT2	111.0779040359
+UniRef50_C5MYT2|g__Staphylococcus.s__Staphylococcus_aureus	89.3507209124
+UniRef50_C5MYT2|g__Staphylococcus.s__Staphylococcus_epidermidis	21.7271831235
+UniRef50_Q3J234	111.0748896731
+UniRef50_Q3J234|g__Rhodobacter.s__Rhodobacter_sphaeroides	111.0748896731
+UniRef50_A5IQI8	111.0250038212
+UniRef50_A5IQI8|g__Staphylococcus.s__Staphylococcus_aureus	70.2930937556
+UniRef50_A5IQI8|g__Staphylococcus.s__Staphylococcus_epidermidis	40.0748527673
+UniRef50_A5IQI8|unclassified	0.6570572983
+UniRef50_A1B7K4: TRAP dicarboxylate transporter-DctP subunit	110.8979339309
+UniRef50_A1B7K4: TRAP dicarboxylate transporter-DctP subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	110.8979339309
+UniRef50_A4X0A4: HipA domain protein	110.8749681767
+UniRef50_A4X0A4: HipA domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	110.8749681767
+UniRef50_Q2FWP1: Phospholipase C	110.8246084019
+UniRef50_Q2FWP1: Phospholipase C|g__Staphylococcus.s__Staphylococcus_aureus	110.8246084019
+UniRef50_R0P3C6: Acetyl-coenzyme A carboxyl transferase alpha chain/Propionyl-CoA carboxylase beta chain	110.7634039882
+UniRef50_R0P3C6: Acetyl-coenzyme A carboxyl transferase alpha chain/Propionyl-CoA carboxylase beta chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	110.7634039882
+UniRef50_B2RKJ1: NAD-specific glutamate dehydrogenase	110.7540009061
+UniRef50_B2RKJ1: NAD-specific glutamate dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	43.7610585870
+UniRef50_B2RKJ1: NAD-specific glutamate dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	36.0293143429
+UniRef50_B2RKJ1: NAD-specific glutamate dehydrogenase|g__Escherichia.s__Escherichia_coli	20.5853403072
+UniRef50_B2RKJ1: NAD-specific glutamate dehydrogenase|g__Streptococcus.s__Streptococcus_agalactiae	9.5105588631
+UniRef50_B2RKJ1: NAD-specific glutamate dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	0.7485029940
+UniRef50_B2RKJ1: NAD-specific glutamate dehydrogenase|unclassified	0.1192258119
+UniRef50_B3E717: Elongation factor Ts	110.7383657817
+UniRef50_B3E717: Elongation factor Ts|g__Rhodobacter.s__Rhodobacter_sphaeroides	110.7383657817
+UniRef50_A1BBE0: Alkylhydroperoxidase like protein, AhpD family	110.7316321077
+UniRef50_A1BBE0: Alkylhydroperoxidase like protein, AhpD family|g__Rhodobacter.s__Rhodobacter_sphaeroides	110.7316321077
+UniRef50_U5URI8	110.7117953830
+UniRef50_U5URI8|g__Staphylococcus.s__Staphylococcus_epidermidis	110.7117953830
+UniRef50_G2T9Y7	110.6989247312
+UniRef50_G2T9Y7|g__Pseudomonas.s__Pseudomonas_aeruginosa	110.6989247312
+UniRef50_Q0BXH7: Elongation factor P	110.6909393013
+UniRef50_Q0BXH7: Elongation factor P|g__Rhodobacter.s__Rhodobacter_sphaeroides	107.3803024901
+UniRef50_Q0BXH7: Elongation factor P|unclassified	3.3106368113
+UniRef50_A7WXZ6: Putative N-acetylmannosamine-6-phosphate 2-epimerase	110.6344232966
+UniRef50_A7WXZ6: Putative N-acetylmannosamine-6-phosphate 2-epimerase|g__Staphylococcus.s__Staphylococcus_aureus	110.6344232966
+UniRef50_A0A023X9G2: ABC transporter permease protein	110.6142069427
+UniRef50_A0A023X9G2: ABC transporter permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	110.6142069427
+UniRef50_Q28PP3: Binding-protein-dependent transport systems inner membrane component	110.5707116255
+UniRef50_Q28PP3: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	110.5707116255
+UniRef50_A8LPC2: tRNA modification GTPase MnmE	110.5253603258
+UniRef50_A8LPC2: tRNA modification GTPase MnmE|g__Rhodobacter.s__Rhodobacter_sphaeroides	110.5253603258
+UniRef50_Q5HKU1: Arginine repressor	110.4553157373
+UniRef50_Q5HKU1: Arginine repressor|g__Staphylococcus.s__Staphylococcus_epidermidis	89.4709409833
+UniRef50_Q5HKU1: Arginine repressor|g__Staphylococcus.s__Staphylococcus_aureus	20.9843747540
+UniRef50_Q6GER3: Arginase	110.4466337915
+UniRef50_Q6GER3: Arginase|g__Staphylococcus.s__Staphylococcus_aureus	110.4466337915
+UniRef50_P18156: Glycerol uptake facilitator protein	110.4269955899
+UniRef50_P18156: Glycerol uptake facilitator protein|g__Staphylococcus.s__Staphylococcus_epidermidis	110.4269955899
+UniRef50_Q8CSL5	110.3187901260
+UniRef50_Q8CSL5|g__Staphylococcus.s__Staphylococcus_epidermidis	110.3187901260
+UniRef50_C7ZXN9: Peptidase A24A	110.3029369717
+UniRef50_C7ZXN9: Peptidase A24A|g__Staphylococcus.s__Staphylococcus_aureus	110.3029369717
+UniRef50_G8V705: Poly(Glycerophosphate) glycerophosphotransferase family protein	110.2624850840
+UniRef50_G8V705: Poly(Glycerophosphate) glycerophosphotransferase family protein|g__Staphylococcus.s__Staphylococcus_aureus	110.2624850840
+UniRef50_Q1WQZ0: Fructose-1,6-bisphosphatase class 3	110.2367404953
+UniRef50_Q1WQZ0: Fructose-1,6-bisphosphatase class 3|g__Staphylococcus.s__Staphylococcus_aureus	110.2367404953
+UniRef50_Q8CUE4	110.2220216852
+UniRef50_Q8CUE4|g__Staphylococcus.s__Staphylococcus_epidermidis	110.2220216852
+UniRef50_Q3J212: Putative site-specific recombinase	110.2073713390
+UniRef50_Q3J212: Putative site-specific recombinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	110.2073713390
+UniRef50_UPI00005C7E8C: hypothetical protein	110.1580849406
+UniRef50_UPI00005C7E8C: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	106.6969833967
+UniRef50_UPI00005C7E8C: hypothetical protein|unclassified	3.4611015440
+UniRef50_G8V6G8	110.0979287389
+UniRef50_G8V6G8|g__Staphylococcus.s__Staphylococcus_aureus	110.0979287389
+UniRef50_D3QCJ5: ATP-dependent RNA helicase YqfR	110.0325821012
+UniRef50_D3QCJ5: ATP-dependent RNA helicase YqfR|g__Staphylococcus.s__Staphylococcus_epidermidis	110.0325821012
+UniRef50_D3QHV4: Transcription repressor of sporulation, septation and degradation PaiA	109.9718871269
+UniRef50_D3QHV4: Transcription repressor of sporulation, septation and degradation PaiA|g__Staphylococcus.s__Staphylococcus_aureus	109.9718871269
+UniRef50_Q4L978: Diapolycopene oxygenase	109.9496859032
+UniRef50_Q4L978: Diapolycopene oxygenase|g__Staphylococcus.s__Staphylococcus_aureus	109.8553590452
+UniRef50_Q4L978: Diapolycopene oxygenase|unclassified	0.0943268580
+UniRef50_Q99R75: Dehydrosqualene synthase	109.9000296669
+UniRef50_Q99R75: Dehydrosqualene synthase|g__Staphylococcus.s__Staphylococcus_aureus	109.9000296669
+UniRef50_I3U834: Class I fumarate hydratase	109.8885839060
+UniRef50_I3U834: Class I fumarate hydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	109.8885839060
+UniRef50_B2S5S6: Threonine--tRNA ligase	109.8016095554
+UniRef50_B2S5S6: Threonine--tRNA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	108.6484373715
+UniRef50_B2S5S6: Threonine--tRNA ligase|g__Neisseria.s__Neisseria_meningitidis	0.6939625260
+UniRef50_B2S5S6: Threonine--tRNA ligase|unclassified	0.4592096579
+UniRef50_Q99WV0: Glycyl-glycine endopeptidase LytM	109.6271090003
+UniRef50_Q99WV0: Glycyl-glycine endopeptidase LytM|g__Staphylococcus.s__Staphylococcus_aureus	108.9385834069
+UniRef50_Q99WV0: Glycyl-glycine endopeptidase LytM|unclassified	0.6885255934
+UniRef50_Q2YSU1: Teichoic acid biosynthesis protein	109.6175562974
+UniRef50_Q2YSU1: Teichoic acid biosynthesis protein|g__Staphylococcus.s__Staphylococcus_aureus	109.6175562974
+UniRef50_A4WX47: Heat shock protein DnaJ domain protein	109.6056160933
+UniRef50_A4WX47: Heat shock protein DnaJ domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	105.7185397928
+UniRef50_A4WX47: Heat shock protein DnaJ domain protein|unclassified	3.8870763005
+UniRef50_A5IQJ9	109.5999344788
+UniRef50_A5IQJ9|g__Staphylococcus.s__Staphylococcus_aureus	109.5999344788
+UniRef50_Q6Q272: p-hydroxyphenylacetate 3-hydroxylase, oxygenase component	109.5448320633
+UniRef50_Q6Q272: p-hydroxyphenylacetate 3-hydroxylase, oxygenase component|g__Rhodobacter.s__Rhodobacter_sphaeroides	102.6803537263
+UniRef50_Q6Q272: p-hydroxyphenylacetate 3-hydroxylase, oxygenase component|unclassified	6.8644783371
+UniRef50_UPI00037895ED: hypothetical protein	109.5417758390
+UniRef50_UPI00037895ED: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	77.6512860970
+UniRef50_UPI00037895ED: hypothetical protein|unclassified	31.8904897420
+UniRef50_Q5HS21: Lipase, putative	109.5369977932
+UniRef50_Q5HS21: Lipase, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	109.5369977932
+UniRef50_P05448: Putative L,D-transpeptidase in ATP synthase subunits region ORF 5	109.5324902932
+UniRef50_P05448: Putative L,D-transpeptidase in ATP synthase subunits region ORF 5|g__Rhodobacter.s__Rhodobacter_sphaeroides	104.4081229065
+UniRef50_P05448: Putative L,D-transpeptidase in ATP synthase subunits region ORF 5|unclassified	5.1243673867
+UniRef50_D3QH68: TetR family regulatory protein	109.5242370450
+UniRef50_D3QH68: TetR family regulatory protein|g__Staphylococcus.s__Staphylococcus_aureus	109.5242370450
+UniRef50_Q4L5S4: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	109.5214206245
+UniRef50_Q4L5S4: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	109.5214206245
+UniRef50_O32068	109.4566442342
+UniRef50_O32068|g__Staphylococcus.s__Staphylococcus_epidermidis	109.4566442342
+UniRef50_Q9Z3R5: Alpha-glucosides-binding periplasmic protein AglE	109.4165113175
+UniRef50_Q9Z3R5: Alpha-glucosides-binding periplasmic protein AglE|g__Rhodobacter.s__Rhodobacter_sphaeroides	109.4165113175
+UniRef50_Q9ZS97: UPF0051 protein ABCI8, chloroplastic	109.3944691524
+UniRef50_Q9ZS97: UPF0051 protein ABCI8, chloroplastic|g__Rhodobacter.s__Rhodobacter_sphaeroides	109.3944691524
+UniRef50_F8HFF8: Phospho-2-dehydro-3-deoxyheptonate aldolase	109.3849601981
+UniRef50_F8HFF8: Phospho-2-dehydro-3-deoxyheptonate aldolase|g__Streptococcus.s__Streptococcus_mutans	109.3849601981
+UniRef50_F2I852: Oxidoreductase, FAD/FMN-binding protein	109.3734731310
+UniRef50_F2I852: Oxidoreductase, FAD/FMN-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	107.9630358954
+UniRef50_F2I852: Oxidoreductase, FAD/FMN-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	1.4104372355
+UniRef50_L1KBX0	109.3485600645
+UniRef50_L1KBX0|unclassified	109.3485600645
+UniRef50_P43984	109.3374782378
+UniRef50_P43984|g__Staphylococcus.s__Staphylococcus_aureus	67.9243456985
+UniRef50_P43984|g__Staphylococcus.s__Staphylococcus_epidermidis	41.4131325393
+UniRef50_A9VTL7: Nucleoid occlusion protein	109.3374294623
+UniRef50_A9VTL7: Nucleoid occlusion protein|g__Staphylococcus.s__Staphylococcus_aureus	109.3374294623
+UniRef50_A4WSI1: Mammalian cell entry related domain protein	109.3219984691
+UniRef50_A4WSI1: Mammalian cell entry related domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	108.8712532215
+UniRef50_A4WSI1: Mammalian cell entry related domain protein|unclassified	0.4507452476
+UniRef50_Q8CTY4: Thiamine biosynthesis lipoprotein	109.3188434001
+UniRef50_Q8CTY4: Thiamine biosynthesis lipoprotein|g__Staphylococcus.s__Staphylococcus_epidermidis	109.3188434001
+UniRef50_A7X6I5: Fibronectin-binding protein A	109.2905666284
+UniRef50_A7X6I5: Fibronectin-binding protein A|g__Staphylococcus.s__Staphylococcus_aureus	109.2905666284
+UniRef50_A5UM51: Energy-converting hydrogenase B, subunit C, EhbC	109.2888072491
+UniRef50_A5UM51: Energy-converting hydrogenase B, subunit C, EhbC|g__Methanobrevibacter.s__Methanobrevibacter_smithii	109.2888072491
+UniRef50_B2SII2: Glycine--tRNA ligase alpha subunit	109.2744605058
+UniRef50_B2SII2: Glycine--tRNA ligase alpha subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	76.6016358954
+UniRef50_B2SII2: Glycine--tRNA ligase alpha subunit|g__Escherichia.s__Escherichia_coli	21.4080405528
+UniRef50_B2SII2: Glycine--tRNA ligase alpha subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.6204866393
+UniRef50_B2SII2: Glycine--tRNA ligase alpha subunit|g__Acinetobacter.s__Acinetobacter_baumannii	3.4684684685
+UniRef50_B2SII2: Glycine--tRNA ligase alpha subunit|unclassified	0.1758289499
+UniRef50_P42909: N-acetylgalactosamine-specific phosphotransferase enzyme IIB component 1	109.2581629171
+UniRef50_P42909: N-acetylgalactosamine-specific phosphotransferase enzyme IIB component 1|g__Escherichia.s__Escherichia_coli	109.2581629171
+UniRef50_K4H363: Ribose ABC transporter, periplasmic ribose-binding protein RbsB	109.1860517784
+UniRef50_K4H363: Ribose ABC transporter, periplasmic ribose-binding protein RbsB|g__Rhodobacter.s__Rhodobacter_sphaeroides	107.3805554002
+UniRef50_K4H363: Ribose ABC transporter, periplasmic ribose-binding protein RbsB|unclassified	1.8054963781
+UniRef50_Q0TRG3: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	109.0988017363
+UniRef50_Q0TRG3: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|g__Streptococcus.s__Streptococcus_mutans	108.9561235905
+UniRef50_Q0TRG3: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.1426781459
+UniRef50_B9KR73: ABC sugar transporter, inner membrane subunit	109.0955533696
+UniRef50_B9KR73: ABC sugar transporter, inner membrane subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	109.0955533696
+UniRef50_T1YCD5: Fructokinase	109.0943339522
+UniRef50_T1YCD5: Fructokinase|g__Staphylococcus.s__Staphylococcus_aureus	109.0943339522
+UniRef50_A8HYX7: ABC-type branched-chain amino acid transport ATPase component	109.0601352319
+UniRef50_A8HYX7: ABC-type branched-chain amino acid transport ATPase component|g__Rhodobacter.s__Rhodobacter_sphaeroides	109.0601352319
+UniRef50_D2NAF2: Regulatory protein	108.9545477221
+UniRef50_D2NAF2: Regulatory protein|g__Staphylococcus.s__Staphylococcus_aureus	108.9545477221
+UniRef50_D2JLI1: Conjugal transfer protein, putative	108.9301222926
+UniRef50_D2JLI1: Conjugal transfer protein, putative|g__Staphylococcus.s__Staphylococcus_aureus	108.9301222926
+UniRef50_P94357: UPF0750 membrane protein YxkD	108.8323870343
+UniRef50_P94357: UPF0750 membrane protein YxkD|g__Staphylococcus.s__Staphylococcus_epidermidis	108.8323870343
+UniRef50_I0TP75	108.7720173902
+UniRef50_I0TP75|g__Staphylococcus.s__Staphylococcus_epidermidis	108.6719682786
+UniRef50_I0TP75|unclassified	0.1000491116
+UniRef50_Q167Y1: Type II/IV secretion system protein, TadC subfamily, putative	108.7503416491
+UniRef50_Q167Y1: Type II/IV secretion system protein, TadC subfamily, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	108.6383457747
+UniRef50_Q167Y1: Type II/IV secretion system protein, TadC subfamily, putative|unclassified	0.1119958744
+UniRef50_A7X1E9: Aspartate carbamoyltransferase	108.7502480935
+UniRef50_A7X1E9: Aspartate carbamoyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	108.7502480935
+UniRef50_H3K0N4: ABC transporter ATP-binding protein	108.7289143786
+UniRef50_H3K0N4: ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	108.7289143786
+UniRef50_T1Y8Z5	108.6994573441
+UniRef50_T1Y8Z5|g__Staphylococcus.s__Staphylococcus_aureus	55.5800551737
+UniRef50_T1Y8Z5|g__Staphylococcus.s__Staphylococcus_epidermidis	53.1194021704
+UniRef50_J7Q543	108.6993279666
+UniRef50_J7Q543|g__Rhodobacter.s__Rhodobacter_sphaeroides	106.4713895662
+UniRef50_J7Q543|unclassified	2.2279384004
+UniRef50_L7WUL7: Lipoprotein	108.6355614673
+UniRef50_L7WUL7: Lipoprotein|g__Staphylococcus.s__Staphylococcus_epidermidis	64.7503202943
+UniRef50_L7WUL7: Lipoprotein|g__Staphylococcus.s__Staphylococcus_aureus	43.0897449237
+UniRef50_L7WUL7: Lipoprotein|unclassified	0.7954962493
+UniRef50_Q2FK78: N-acetyl-gamma-glutamyl-phosphate reductase	108.6283903640
+UniRef50_Q2FK78: N-acetyl-gamma-glutamyl-phosphate reductase|g__Staphylococcus.s__Staphylococcus_aureus	108.5870904799
+UniRef50_Q2FK78: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.0412998841
+UniRef50_Q5HLM4: Acetyltransferase, GNAT family	108.5819503478
+UniRef50_Q5HLM4: Acetyltransferase, GNAT family|g__Staphylococcus.s__Staphylococcus_epidermidis	108.5819503478
+UniRef50_Q8CQN2	108.5729230804
+UniRef50_Q8CQN2|g__Staphylococcus.s__Staphylococcus_epidermidis	108.5729230804
+UniRef50_K0LQD7: Hydrolase	108.5377992583
+UniRef50_K0LQD7: Hydrolase|g__Staphylococcus.s__Staphylococcus_aureus	108.5377992583
+UniRef50_G8WCV6: PTS system ascorbate-specific transporter subunit IIC	108.5084973916
+UniRef50_G8WCV6: PTS system ascorbate-specific transporter subunit IIC|g__Staphylococcus.s__Staphylococcus_aureus	108.5084973916
+UniRef50_B9KRG8	108.4658740405
+UniRef50_B9KRG8|g__Rhodobacter.s__Rhodobacter_sphaeroides	107.4133531922
+UniRef50_B9KRG8|unclassified	1.0525208483
+UniRef50_B9KNM4: Urea amidolyase related protein	108.4534218195
+UniRef50_B9KNM4: Urea amidolyase related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	108.4534218195
+UniRef50_Q8CN53: Antiholin-like protein LrgB	108.3865434828
+UniRef50_Q8CN53: Antiholin-like protein LrgB|g__Staphylococcus.s__Staphylococcus_epidermidis	108.3865434828
+UniRef50_A8Z171: Iron (Fe3+) ABC superfamily ATP binding cassette transporter, membrane protein	108.3498284366
+UniRef50_A8Z171: Iron (Fe3+) ABC superfamily ATP binding cassette transporter, membrane protein|g__Staphylococcus.s__Staphylococcus_aureus	108.3498284366
+UniRef50_Q5HNN3: Porphobilinogen deaminase	108.3480464806
+UniRef50_Q5HNN3: Porphobilinogen deaminase|g__Staphylococcus.s__Staphylococcus_epidermidis	108.3480464806
+UniRef50_Q6GAW6: Argininosuccinate lyase	108.3078098709
+UniRef50_Q6GAW6: Argininosuccinate lyase|g__Staphylococcus.s__Staphylococcus_epidermidis	108.0348556809
+UniRef50_Q6GAW6: Argininosuccinate lyase|unclassified	0.2729541900
+UniRef50_I6U2U0: Permease	108.2847288592
+UniRef50_I6U2U0: Permease|g__Streptococcus.s__Streptococcus_mutans	108.2847288592
+UniRef50_R4VP47: Twin-arginine translocation pathway signal	108.2839546906
+UniRef50_R4VP47: Twin-arginine translocation pathway signal|g__Rhodobacter.s__Rhodobacter_sphaeroides	108.2839546906
+UniRef50_Q5LQ58: Translation initiation factor IF-3	108.2753126710
+UniRef50_Q5LQ58: Translation initiation factor IF-3|g__Rhodobacter.s__Rhodobacter_sphaeroides	108.2753126710
+UniRef50_Q3IWE2: Integrase family protein	108.2668074141
+UniRef50_Q3IWE2: Integrase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	108.2668074141
+UniRef50_A8Z3H2: TetR family transcriptional regulator	108.2277906981
+UniRef50_A8Z3H2: TetR family transcriptional regulator|g__Staphylococcus.s__Staphylococcus_aureus	108.2277906981
+UniRef50_Q2G1Q2: 1-phosphatidylinositol phosphodiesterase	108.1956157470
+UniRef50_Q2G1Q2: 1-phosphatidylinositol phosphodiesterase|g__Staphylococcus.s__Staphylococcus_aureus	108.1956157470
+UniRef50_C7ZSW5: ABC transporter	108.1828919220
+UniRef50_C7ZSW5: ABC transporter|g__Staphylococcus.s__Staphylococcus_aureus	108.1828919220
+UniRef50_D2J655: Replication initiation protein	108.1494760229
+UniRef50_D2J655: Replication initiation protein|g__Staphylococcus.s__Staphylococcus_epidermidis	97.8327613186
+UniRef50_D2J655: Replication initiation protein|unclassified	10.3167147043
+UniRef50_Q9Z3R6: Alpha-glucoside transport system permease protein AglF	108.1487405113
+UniRef50_Q9Z3R6: Alpha-glucoside transport system permease protein AglF|g__Rhodobacter.s__Rhodobacter_sphaeroides	108.1487405113
+UniRef50_E8SKH8: Sucrose-6-phosphate hydrolase	108.1281283427
+UniRef50_E8SKH8: Sucrose-6-phosphate hydrolase|g__Staphylococcus.s__Staphylococcus_epidermidis	108.1281283427
+UniRef50_Q5HKJ8: Glycerol dehydrogenase	108.1175344182
+UniRef50_Q5HKJ8: Glycerol dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	108.1175344182
+UniRef50_A5IU13: Transcriptional regulator, XRE family	108.1141052789
+UniRef50_A5IU13: Transcriptional regulator, XRE family|g__Staphylococcus.s__Staphylococcus_aureus	62.5996096226
+UniRef50_A5IU13: Transcriptional regulator, XRE family|g__Staphylococcus.s__Staphylococcus_epidermidis	45.5144956563
+UniRef50_J9U7Y2	108.0850914461
+UniRef50_J9U7Y2|g__Staphylococcus.s__Staphylococcus_epidermidis	108.0850914461
+UniRef50_P22256: 4-aminobutyrate aminotransferase GabT	108.0265553092
+UniRef50_P22256: 4-aminobutyrate aminotransferase GabT|g__Escherichia.s__Escherichia_coli	59.8901977071
+UniRef50_P22256: 4-aminobutyrate aminotransferase GabT|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.5804049002
+UniRef50_P22256: 4-aminobutyrate aminotransferase GabT|unclassified	0.5559527020
+UniRef50_Q8CU42: Carbamate kinase 2	108.0249735227
+UniRef50_Q8CU42: Carbamate kinase 2|g__Staphylococcus.s__Staphylococcus_aureus	63.1026468794
+UniRef50_Q8CU42: Carbamate kinase 2|g__Staphylococcus.s__Staphylococcus_epidermidis	44.8155887891
+UniRef50_Q8CU42: Carbamate kinase 2|unclassified	0.1067378543
+UniRef50_I7DDI7: Sec-independent protein translocase protein TatC	108.0099149012
+UniRef50_I7DDI7: Sec-independent protein translocase protein TatC|g__Rhodobacter.s__Rhodobacter_sphaeroides	108.0099149012
+UniRef50_Q931T2	107.9977216399
+UniRef50_Q931T2|g__Staphylococcus.s__Staphylococcus_aureus	64.0519149319
+UniRef50_Q931T2|g__Staphylococcus.s__Staphylococcus_epidermidis	43.9458067080
+UniRef50_L7WTA8: LysM domain-containing protein	107.9791660508
+UniRef50_L7WTA8: LysM domain-containing protein|g__Staphylococcus.s__Staphylococcus_epidermidis	107.9791660508
+UniRef50_Q2P7B9: 3-oxoacyl-[acyl-carrier-protein] synthase 3	107.9721670799
+UniRef50_Q2P7B9: 3-oxoacyl-[acyl-carrier-protein] synthase 3|g__Rhodobacter.s__Rhodobacter_sphaeroides	66.0226980667
+UniRef50_Q2P7B9: 3-oxoacyl-[acyl-carrier-protein] synthase 3|g__Escherichia.s__Escherichia_coli	40.8469909269
+UniRef50_Q2P7B9: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	1.1024780863
+UniRef50_P94328: Cyclic pyranopterin monophosphate synthase accessory protein	107.9121084768
+UniRef50_P94328: Cyclic pyranopterin monophosphate synthase accessory protein|g__Staphylococcus.s__Staphylococcus_aureus	107.8022764564
+UniRef50_P94328: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	0.1098320204
+UniRef50_Q6G7H4: Pyrimidine-nucleoside phosphorylase	107.8816713762
+UniRef50_Q6G7H4: Pyrimidine-nucleoside phosphorylase|g__Staphylococcus.s__Staphylococcus_aureus	107.7461954024
+UniRef50_Q6G7H4: Pyrimidine-nucleoside phosphorylase|unclassified	0.1354759738
+UniRef50_P69789: Phosphotransferase enzyme IIB component GlvB	107.7596698950
+UniRef50_P69789: Phosphotransferase enzyme IIB component GlvB|g__Staphylococcus.s__Staphylococcus_aureus	107.0049529139
+UniRef50_P69789: Phosphotransferase enzyme IIB component GlvB|g__Clostridium.s__Clostridium_beijerinckii	0.7547169811
+UniRef50_Q3J527	107.6514338391
+UniRef50_Q3J527|g__Rhodobacter.s__Rhodobacter_sphaeroides	78.9565463939
+UniRef50_Q3J527|unclassified	28.6948874452
+UniRef50_A8LSK1: Methionine synthase	107.5948878618
+UniRef50_A8LSK1: Methionine synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	107.5948878618
+UniRef50_C6SPL1	107.5891405470
+UniRef50_C6SPL1|g__Streptococcus.s__Streptococcus_mutans	107.5891405470
+UniRef50_F8WKJ0	107.5842438904
+UniRef50_F8WKJ0|g__Staphylococcus.s__Staphylococcus_aureus	107.5842438904
+UniRef50_Q8CPM3: Pyruvate carboxylase	107.5456502677
+UniRef50_Q8CPM3: Pyruvate carboxylase|g__Staphylococcus.s__Staphylococcus_epidermidis	104.3402950525
+UniRef50_Q8CPM3: Pyruvate carboxylase|g__Clostridium.s__Clostridium_beijerinckii	3.2053552152
+UniRef50_Q8XU11: Potassium-transporting ATPase B chain	107.5382248079
+UniRef50_Q8XU11: Potassium-transporting ATPase B chain|g__Staphylococcus.s__Staphylococcus_aureus	89.0886153064
+UniRef50_Q8XU11: Potassium-transporting ATPase B chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.4179295247
+UniRef50_Q8XU11: Potassium-transporting ATPase B chain|g__Propionibacterium.s__Propionibacterium_acnes	5.4425754737
+UniRef50_Q8XU11: Potassium-transporting ATPase B chain|g__Acinetobacter.s__Acinetobacter_baumannii	3.4884583079
+UniRef50_Q8XU11: Potassium-transporting ATPase B chain|unclassified	0.1006461952
+UniRef50_Q2FF48: Potassium-transporting ATPase A chain	107.5162254073
+UniRef50_Q2FF48: Potassium-transporting ATPase A chain|g__Staphylococcus.s__Staphylococcus_aureus	107.4676245568
+UniRef50_Q2FF48: Potassium-transporting ATPase A chain|unclassified	0.0486008505
+UniRef50_D4FNL7: Ribonuclease R	107.4814404038
+UniRef50_D4FNL7: Ribonuclease R|g__Staphylococcus.s__Staphylococcus_aureus	107.4814404038
+UniRef50_P39211: Xylulose kinase	107.4722692062
+UniRef50_P39211: Xylulose kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	107.4722692062
+UniRef50_F3U214: Binding-protein-dependent transport systems inner membrane component	107.4527475319
+UniRef50_F3U214: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	107.4527475319
+UniRef50_Q5HRE0: UPF0272 protein SERP0253	107.4164372536
+UniRef50_Q5HRE0: UPF0272 protein SERP0253|g__Staphylococcus.s__Staphylococcus_epidermidis	107.4164372536
+UniRef50_G8R9I8: Secretory antigen SsaA	107.3390819327
+UniRef50_G8R9I8: Secretory antigen SsaA|g__Staphylococcus.s__Staphylococcus_aureus	107.3210917983
+UniRef50_G8R9I8: Secretory antigen SsaA|unclassified	0.0179901343
+UniRef50_D3QI48: RND multidrug efflux transporter Acriflavin resistance protein	107.3049040577
+UniRef50_D3QI48: RND multidrug efflux transporter Acriflavin resistance protein|g__Staphylococcus.s__Staphylococcus_aureus	107.3049040577
+UniRef50_A1AZJ2: UPF0173 metal-dependent hydrolase Pden_0574	107.2985939200
+UniRef50_A1AZJ2: UPF0173 metal-dependent hydrolase Pden_0574|g__Rhodobacter.s__Rhodobacter_sphaeroides	107.2985939200
+UniRef50_A6QHT5	107.2520000827
+UniRef50_A6QHT5|g__Staphylococcus.s__Staphylococcus_aureus	92.1322497046
+UniRef50_A6QHT5|g__Staphylococcus.s__Staphylococcus_epidermidis	15.1197503781
+UniRef50_Q9KAF4: BH2333 protein	107.2427172278
+UniRef50_Q9KAF4: BH2333 protein|g__Staphylococcus.s__Staphylococcus_aureus	71.5309668286
+UniRef50_Q9KAF4: BH2333 protein|g__Staphylococcus.s__Staphylococcus_epidermidis	35.7117503992
+UniRef50_Z2CD30	107.2318593693
+UniRef50_Z2CD30|g__Staphylococcus.s__Staphylococcus_aureus	107.1582555307
+UniRef50_Z2CD30|unclassified	0.0736038386
+UniRef50_Q9FD71: Hydroxymethylglutaryl-CoA synthase	107.2223818689
+UniRef50_Q9FD71: Hydroxymethylglutaryl-CoA synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	106.2239950786
+UniRef50_Q9FD71: Hydroxymethylglutaryl-CoA synthase|unclassified	0.9983867903
+UniRef50_Q5HKM6	107.2087473481
+UniRef50_Q5HKM6|g__Staphylococcus.s__Staphylococcus_epidermidis	107.2087473481
+UniRef50_P46333: Probable metabolite transport protein CsbC	107.2035017574
+UniRef50_P46333: Probable metabolite transport protein CsbC|g__Staphylococcus.s__Staphylococcus_epidermidis	107.2035017574
+UniRef50_D6SE59: Transcriptional regulator, GntR family	107.1952924274
+UniRef50_D6SE59: Transcriptional regulator, GntR family|g__Staphylococcus.s__Staphylococcus_aureus	107.1952924274
+UniRef50_T1YD73: Gluconate operon transcriptional repressor	107.1808181519
+UniRef50_T1YD73: Gluconate operon transcriptional repressor|g__Staphylococcus.s__Staphylococcus_epidermidis	107.1808181519
+UniRef50_X5ENW5: ABC transporter family protein	107.1273210873
+UniRef50_X5ENW5: ABC transporter family protein|g__Staphylococcus.s__Staphylococcus_aureus	107.1273210873
+UniRef50_G8V322	107.1016861237
+UniRef50_G8V322|g__Staphylococcus.s__Staphylococcus_aureus	106.9195175312
+UniRef50_G8V322|unclassified	0.1821685925
+UniRef50_D3QGV6	107.1009081938
+UniRef50_D3QGV6|g__Staphylococcus.s__Staphylococcus_epidermidis	107.0007717114
+UniRef50_D3QGV6|unclassified	0.1001364824
+UniRef50_P73098: Chaperone protein dnaK3	107.0354023922
+UniRef50_P73098: Chaperone protein dnaK3|g__Rhodobacter.s__Rhodobacter_sphaeroides	107.0354023922
+UniRef50_P11901: Transposase for insertion sequence element IS421	106.9558699328
+UniRef50_P11901: Transposase for insertion sequence element IS421|g__Escherichia.s__Escherichia_coli	106.9558699328
+UniRef50_A5ITW6	106.8930720995
+UniRef50_A5ITW6|g__Staphylococcus.s__Staphylococcus_aureus	106.8930720995
+UniRef50_A3PFT3	106.8545149142
+UniRef50_A3PFT3|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.8250678046
+UniRef50_A3PFT3|unclassified	50.0294471096
+UniRef50_B9KPJ0: Ribose-phosphate pyrophosphokinase	106.8152889389
+UniRef50_B9KPJ0: Ribose-phosphate pyrophosphokinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	96.3942457475
+UniRef50_B9KPJ0: Ribose-phosphate pyrophosphokinase|unclassified	10.4210431914
+UniRef50_Q732P6: Isoprenyl transferase	106.8003131321
+UniRef50_Q732P6: Isoprenyl transferase|g__Staphylococcus.s__Staphylococcus_epidermidis	59.7797718068
+UniRef50_Q732P6: Isoprenyl transferase|g__Streptococcus.s__Streptococcus_mutans	47.0205413253
+UniRef50_F3U3U4: Nitrate/sulfonate/bicarbonate ABC transporter periplasmic ligand-binding protein	106.7894430438
+UniRef50_F3U3U4: Nitrate/sulfonate/bicarbonate ABC transporter periplasmic ligand-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	104.8665772273
+UniRef50_F3U3U4: Nitrate/sulfonate/bicarbonate ABC transporter periplasmic ligand-binding protein|unclassified	1.9228658165
+UniRef50_Q65GF0: UvrABC system protein C	106.7227923740
+UniRef50_Q65GF0: UvrABC system protein C|g__Staphylococcus.s__Staphylococcus_epidermidis	106.7227923740
+UniRef50_Q5HLA7: Aldehyde dehydrogenase family protein	106.6048282840
+UniRef50_Q5HLA7: Aldehyde dehydrogenase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	106.6048282840
+UniRef50_P11959: Dihydrolipoyl dehydrogenase	106.5886540452
+UniRef50_P11959: Dihydrolipoyl dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	106.4129233762
+UniRef50_P11959: Dihydrolipoyl dehydrogenase|unclassified	0.1757306690
+UniRef50_V5X0C1: Nitrate reductase	106.5870252023
+UniRef50_V5X0C1: Nitrate reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	106.5870252023
+UniRef50_Q6GK28: Protein EsaA	106.5851178667
+UniRef50_Q6GK28: Protein EsaA|g__Staphylococcus.s__Staphylococcus_aureus	106.5851178667
+UniRef50_P37171: Hypoxanthine-guanine phosphoribosyltransferase	106.5616046329
+UniRef50_P37171: Hypoxanthine-guanine phosphoribosyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	105.5916069841
+UniRef50_P37171: Hypoxanthine-guanine phosphoribosyltransferase|unclassified	0.9699976488
+UniRef50_I7DVV7: Response regulator receiver	106.5589733112
+UniRef50_I7DVV7: Response regulator receiver|g__Rhodobacter.s__Rhodobacter_sphaeroides	106.5589733112
+UniRef50_Q8CMX2: Dihydrolipoamide dehydrogenase	106.5281357583
+UniRef50_Q8CMX2: Dihydrolipoamide dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	106.5281357583
+UniRef50_Q3J6K3: TonB dependent, hydroxamate-type ferrisiderophore, outer membrane receptor	106.4602026923
+UniRef50_Q3J6K3: TonB dependent, hydroxamate-type ferrisiderophore, outer membrane receptor|g__Rhodobacter.s__Rhodobacter_sphaeroides	106.4602026923
+UniRef50_Q21E72: Phosphate import ATP-binding protein PstB	106.4216690806
+UniRef50_Q21E72: Phosphate import ATP-binding protein PstB|g__Staphylococcus.s__Staphylococcus_epidermidis	90.4865364568
+UniRef50_Q21E72: Phosphate import ATP-binding protein PstB|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.5727010842
+UniRef50_Q21E72: Phosphate import ATP-binding protein PstB|g__Escherichia.s__Escherichia_coli	6.2056737589
+UniRef50_Q21E72: Phosphate import ATP-binding protein PstB|unclassified	0.1567577808
+UniRef50_B9JY98: ABC transporter	106.3061304793
+UniRef50_B9JY98: ABC transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	106.3061304793
+UniRef50_O31727: UPF0001 protein YlmE	106.2861379406
+UniRef50_O31727: UPF0001 protein YlmE|g__Staphylococcus.s__Staphylococcus_epidermidis	106.2861379406
+UniRef50_Q5HQ24: Glutamate racemase	106.2808390299
+UniRef50_Q5HQ24: Glutamate racemase|g__Staphylococcus.s__Staphylococcus_epidermidis	106.2808390299
+UniRef50_Q6G5Z1: Putative ABC transporter ATP-binding protein SAS2569	106.2680447193
+UniRef50_Q6G5Z1: Putative ABC transporter ATP-binding protein SAS2569|g__Staphylococcus.s__Staphylococcus_aureus	106.2680447193
+UniRef50_R9YTG8: 2-dehydropantoate 2-reductase	106.2494820226
+UniRef50_R9YTG8: 2-dehydropantoate 2-reductase|g__Staphylococcus.s__Staphylococcus_aureus	106.2494820226
+UniRef50_Q5H330: Glutamine synthetase	106.2303276972
+UniRef50_Q5H330: Glutamine synthetase|g__Rhodobacter.s__Rhodobacter_sphaeroides	106.2303276972
+UniRef50_B9KXN9: tRNA (guanine-N(1)-)-methyltransferase	106.1688005421
+UniRef50_B9KXN9: tRNA (guanine-N(1)-)-methyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	106.1128121941
+UniRef50_B9KXN9: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0559883480
+UniRef50_Q3J4T7	106.1563670568
+UniRef50_Q3J4T7|g__Rhodobacter.s__Rhodobacter_sphaeroides	105.7094450267
+UniRef50_Q3J4T7|unclassified	0.4469220302
+UniRef50_Q2FEK4: Urease subunit beta	106.0619633598
+UniRef50_Q2FEK4: Urease subunit beta|g__Staphylococcus.s__Staphylococcus_aureus	78.4413838863
+UniRef50_Q2FEK4: Urease subunit beta|g__Staphylococcus.s__Staphylococcus_epidermidis	24.9680595796
+UniRef50_Q2FEK4: Urease subunit beta|unclassified	2.6525198939
+UniRef50_H8XGR9	106.0520476588
+UniRef50_H8XGR9|g__Staphylococcus.s__Staphylococcus_aureus	106.0520476588
+UniRef50_Q3J221: Putative head portal protein	105.9961998233
+UniRef50_Q3J221: Putative head portal protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	105.9961998233
+UniRef50_A6QDH4	105.9549910631
+UniRef50_A6QDH4|g__Staphylococcus.s__Staphylococcus_aureus	105.9549910631
+UniRef50_F7XW34: 30S ribosomal protein S1	105.9284492415
+UniRef50_F7XW34: 30S ribosomal protein S1|g__Rhodobacter.s__Rhodobacter_sphaeroides	105.9284492415
+UniRef50_A3PRF9	105.8795958378
+UniRef50_A3PRF9|g__Rhodobacter.s__Rhodobacter_sphaeroides	100.2363787442
+UniRef50_A3PRF9|unclassified	5.6432170936
+UniRef50_P0A0E5: Mercuric reductase	105.8359198345
+UniRef50_P0A0E5: Mercuric reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	68.1426249785
+UniRef50_P0A0E5: Mercuric reductase|g__Staphylococcus.s__Staphylococcus_aureus	37.6932948560
+UniRef50_M7XUL4: NLPA lipoprotein	105.8200870957
+UniRef50_M7XUL4: NLPA lipoprotein|g__Staphylococcus.s__Staphylococcus_aureus	105.8200870957
+UniRef50_Q49YA8	105.7751823477
+UniRef50_Q49YA8|g__Staphylococcus.s__Staphylococcus_epidermidis	105.7751823477
+UniRef50_D6SCK6: ABC transporter, ATP-binding protein	105.7664635422
+UniRef50_D6SCK6: ABC transporter, ATP-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	105.7664635422
+UniRef50_Q6GCC9: Efem/EfeO family lipoprotein	105.6891560510
+UniRef50_Q6GCC9: Efem/EfeO family lipoprotein|g__Staphylococcus.s__Staphylococcus_aureus	105.6891560510
+UniRef50_F4AWZ4: Acetyl-CoA acetyltransferase	105.5569987655
+UniRef50_F4AWZ4: Acetyl-CoA acetyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	105.5569987655
+UniRef50_D7A1G5: CoA-binding domain protein	105.5319953921
+UniRef50_D7A1G5: CoA-binding domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	105.5319953921
+UniRef50_C6AZB2: Inner-membrane translocator	105.5260370502
+UniRef50_C6AZB2: Inner-membrane translocator|g__Rhodobacter.s__Rhodobacter_sphaeroides	105.5260370502
+UniRef50_Q2FF06: Putative aldehyde dehydrogenase SAUSA300_2076	105.5199726681
+UniRef50_Q2FF06: Putative aldehyde dehydrogenase SAUSA300_2076|g__Staphylococcus.s__Staphylococcus_aureus	105.5199726681
+UniRef50_B4EX96: HTH-type transcriptional regulator BetI	105.5136122325
+UniRef50_B4EX96: HTH-type transcriptional regulator BetI|g__Escherichia.s__Escherichia_coli	105.5136122325
+UniRef50_T1Y6Z9: Transcription antiterminator, BglG family	105.3775141029
+UniRef50_T1Y6Z9: Transcription antiterminator, BglG family|g__Staphylococcus.s__Staphylococcus_aureus	105.3775141029
+UniRef50_Q6GK25: Protein EssB	105.3723958478
+UniRef50_Q6GK25: Protein EssB|g__Staphylococcus.s__Staphylococcus_aureus	105.3723958478
+UniRef50_F2JYP7: ABC-type transporter, integral membrane subunit	105.3593763466
+UniRef50_F2JYP7: ABC-type transporter, integral membrane subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	105.3593763466
+UniRef50_H6LRG1	105.3571012287
+UniRef50_H6LRG1|g__Staphylococcus.s__Staphylococcus_aureus	104.8027775037
+UniRef50_H6LRG1|unclassified	0.5543237251
+UniRef50_Q8CRR5	105.3177314806
+UniRef50_Q8CRR5|g__Staphylococcus.s__Staphylococcus_epidermidis	105.3177314806
+UniRef50_Q0BS24: Acetolactate synthase small subunit	105.3000459388
+UniRef50_Q0BS24: Acetolactate synthase small subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	105.3000459388
+UniRef50_U3SRN3	105.2321553059
+UniRef50_U3SRN3|g__Streptococcus.s__Streptococcus_mutans	105.2321553059
+UniRef50_A7WYY0: Molecular chaperone Hsp31 and glyoxalase 3	105.2176128160
+UniRef50_A7WYY0: Molecular chaperone Hsp31 and glyoxalase 3|g__Staphylococcus.s__Staphylococcus_aureus	99.7835703519
+UniRef50_A7WYY0: Molecular chaperone Hsp31 and glyoxalase 3|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4340424642
+UniRef50_Q89UV8: Immunogenic protein	105.1889373532
+UniRef50_Q89UV8: Immunogenic protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	87.2752831727
+UniRef50_Q89UV8: Immunogenic protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.9038707539
+UniRef50_Q89UV8: Immunogenic protein|unclassified	1.0097834266
+UniRef50_Q3J233	105.1813411200
+UniRef50_Q3J233|g__Rhodobacter.s__Rhodobacter_sphaeroides	104.8856728338
+UniRef50_Q3J233|unclassified	0.2956682862
+UniRef50_Q47BM0: Argininosuccinate synthase	105.1492540128
+UniRef50_Q47BM0: Argininosuccinate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	99.3467763554
+UniRef50_Q47BM0: Argininosuccinate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7699951463
+UniRef50_Q47BM0: Argininosuccinate synthase|unclassified	0.0324825110
+UniRef50_A6TYC4	105.1404761646
+UniRef50_A6TYC4|g__Staphylococcus.s__Staphylococcus_aureus	101.7098946936
+UniRef50_A6TYC4|unclassified	3.4305814710
+UniRef50_C5N0Q7: Transition metal uptake transporter, Ni2+-Co2+ transporter (NiCoT) family	105.1305907565
+UniRef50_C5N0Q7: Transition metal uptake transporter, Ni2+-Co2+ transporter (NiCoT) family|g__Staphylococcus.s__Staphylococcus_aureus	105.1305907565
+UniRef50_F8HYA2: Nucleoside permease	105.1233690034
+UniRef50_F8HYA2: Nucleoside permease|g__Staphylococcus.s__Staphylococcus_aureus	105.1233690034
+UniRef50_P51763: Reaction center protein M chain	105.0788370424
+UniRef50_P51763: Reaction center protein M chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	105.0788370424
+UniRef50_P81177: Zinc metalloproteinase aureolysin	105.0737964135
+UniRef50_P81177: Zinc metalloproteinase aureolysin|g__Staphylococcus.s__Staphylococcus_aureus	105.0737964135
+UniRef50_C5N340	105.0148461267
+UniRef50_C5N340|g__Staphylococcus.s__Staphylococcus_aureus	103.3182090645
+UniRef50_C5N340|unclassified	1.6966370622
+UniRef50_P46322: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase	104.9962185653
+UniRef50_P46322: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	96.7317557554
+UniRef50_P46322: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	8.2644628099
+UniRef50_C5MZ71: PIN domain protein	104.9801480534
+UniRef50_C5MZ71: PIN domain protein|g__Staphylococcus.s__Staphylococcus_aureus	104.9801480534
+UniRef50_Q03UC7: 50S ribosomal protein L9	104.9676171854
+UniRef50_Q03UC7: 50S ribosomal protein L9|g__Staphylococcus.s__Staphylococcus_epidermidis	54.4278548272
+UniRef50_Q03UC7: 50S ribosomal protein L9|g__Staphylococcus.s__Staphylococcus_aureus	50.5397623582
+UniRef50_C1KVB2: Endoribonuclease YbeY	104.9187359457
+UniRef50_C1KVB2: Endoribonuclease YbeY|g__Staphylococcus.s__Staphylococcus_epidermidis	54.5995859216
+UniRef50_C1KVB2: Endoribonuclease YbeY|g__Staphylococcus.s__Staphylococcus_aureus	50.3191500241
+UniRef50_UPI000308ED7E: hypothetical protein	104.9143398620
+UniRef50_UPI000308ED7E: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	100.9365314506
+UniRef50_UPI000308ED7E: hypothetical protein|unclassified	3.9778084113
+UniRef50_G8AFT7	104.9114561170
+UniRef50_G8AFT7|g__Rhodobacter.s__Rhodobacter_sphaeroides	102.0463202068
+UniRef50_G8AFT7|unclassified	2.8651359101
+UniRef50_T1XRT4: Competence protein ComGF, putative	104.8148093683
+UniRef50_T1XRT4: Competence protein ComGF, putative|g__Staphylococcus.s__Staphylococcus_aureus	103.5662862343
+UniRef50_T1XRT4: Competence protein ComGF, putative|unclassified	1.2485231339
+UniRef50_D9RDD4	104.7057358243
+UniRef50_D9RDD4|g__Staphylococcus.s__Staphylococcus_aureus	104.7057358243
+UniRef50_P21883: Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex	104.6707626507
+UniRef50_P21883: Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex|g__Staphylococcus.s__Staphylococcus_aureus	104.6104166674
+UniRef50_P21883: Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex|unclassified	0.0603459832
+UniRef50_E6TY02: Binding-protein-dependent transport systems inner membrane component	104.6321356397
+UniRef50_E6TY02: Binding-protein-dependent transport systems inner membrane component|g__Staphylococcus.s__Staphylococcus_aureus	104.6321356397
+UniRef50_P29968: Putative dehydrogenase XoxF	104.5984824403
+UniRef50_P29968: Putative dehydrogenase XoxF|g__Rhodobacter.s__Rhodobacter_sphaeroides	104.5340319256
+UniRef50_P29968: Putative dehydrogenase XoxF|unclassified	0.0644505147
+UniRef50_Q5HNB7: Phosphoenolpyruvate carboxykinase [ATP]	104.5545522112
+UniRef50_Q5HNB7: Phosphoenolpyruvate carboxykinase [ATP]|g__Staphylococcus.s__Staphylococcus_epidermidis	104.4533224325
+UniRef50_Q5HNB7: Phosphoenolpyruvate carboxykinase [ATP]|unclassified	0.1012297786
+UniRef50_Q49Y11: Cytidine deaminase	104.5355297829
+UniRef50_Q49Y11: Cytidine deaminase|g__Staphylococcus.s__Staphylococcus_epidermidis	55.2920197854
+UniRef50_Q49Y11: Cytidine deaminase|g__Staphylococcus.s__Staphylococcus_aureus	49.2435099975
+UniRef50_P64309: Non-canonical purine NTP pyrophosphatase	104.4936247624
+UniRef50_P64309: Non-canonical purine NTP pyrophosphatase|g__Staphylococcus.s__Staphylococcus_aureus	104.1448797438
+UniRef50_P64309: Non-canonical purine NTP pyrophosphatase|unclassified	0.3487450187
+UniRef50_A9W4X6: Sulfite reductase [NADPH] hemoprotein beta-component	104.4679225282
+UniRef50_A9W4X6: Sulfite reductase [NADPH] hemoprotein beta-component|g__Staphylococcus.s__Staphylococcus_epidermidis	104.4679225282
+UniRef50_Q4L9R4: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	104.4662067348
+UniRef50_Q4L9R4: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	104.4662067348
+UniRef50_A1AYY0: Phage portal protein, HK97 family	104.4521772660
+UniRef50_A1AYY0: Phage portal protein, HK97 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	104.1153591090
+UniRef50_A1AYY0: Phage portal protein, HK97 family|unclassified	0.3368181570
+UniRef50_X5DWG5: ABC-2 transporter family protein	104.4307865797
+UniRef50_X5DWG5: ABC-2 transporter family protein|g__Staphylococcus.s__Staphylococcus_aureus	103.1935319943
+UniRef50_X5DWG5: ABC-2 transporter family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	1.0940919037
+UniRef50_X5DWG5: ABC-2 transporter family protein|unclassified	0.1431626817
+UniRef50_Q6GC59: Exotoxin	104.3471563076
+UniRef50_Q6GC59: Exotoxin|g__Staphylococcus.s__Staphylococcus_aureus	104.3471563076
+UniRef50_A3PQI0: RepB plasmid partition	104.3197124262
+UniRef50_A3PQI0: RepB plasmid partition|g__Rhodobacter.s__Rhodobacter_sphaeroides	104.1097553889
+UniRef50_A3PQI0: RepB plasmid partition|unclassified	0.2099570373
+UniRef50_E8SGS1	104.2902775171
+UniRef50_E8SGS1|g__Staphylococcus.s__Staphylococcus_epidermidis	94.6321035081
+UniRef50_E8SGS1|g__Staphylococcus.s__Staphylococcus_aureus	9.6581740090
+UniRef50_Q0C5Z7: Transcription termination factor NusA	104.2892478782
+UniRef50_Q0C5Z7: Transcription termination factor NusA|g__Rhodobacter.s__Rhodobacter_sphaeroides	104.2892478782
+UniRef50_Q5HKG6: Diacetyl reductase [(S)-acetoin forming]	104.2519159165
+UniRef50_Q5HKG6: Diacetyl reductase [(S)-acetoin forming]|g__Staphylococcus.s__Staphylococcus_epidermidis	104.2519159165
+UniRef50_Q9F1K0: DNA polymerase III subunit alpha	104.2252307773
+UniRef50_Q9F1K0: DNA polymerase III subunit alpha|g__Staphylococcus.s__Staphylococcus_aureus	104.2086101615
+UniRef50_Q9F1K0: DNA polymerase III subunit alpha|unclassified	0.0166206158
+UniRef50_Q8DSX1	104.2027128660
+UniRef50_Q8DSX1|g__Streptococcus.s__Streptococcus_mutans	103.6640756115
+UniRef50_Q8DSX1|unclassified	0.5386372545
+UniRef50_Q8VQS9: MntC	104.1992675617
+UniRef50_Q8VQS9: MntC|g__Staphylococcus.s__Staphylococcus_aureus	104.1992675617
+UniRef50_Q5KX81: Octanoyltransferase LipM	104.1512303899
+UniRef50_Q5KX81: Octanoyltransferase LipM|g__Staphylococcus.s__Staphylococcus_aureus	103.9746224112
+UniRef50_Q5KX81: Octanoyltransferase LipM|unclassified	0.1766079787
+UniRef50_B6IN07: DNA-directed RNA polymerase subunit omega	104.1326824867
+UniRef50_B6IN07: DNA-directed RNA polymerase subunit omega|g__Rhodobacter.s__Rhodobacter_sphaeroides	103.9246352272
+UniRef50_B6IN07: DNA-directed RNA polymerase subunit omega|unclassified	0.2080472595
+UniRef50_Q8EQK9: GTP cyclohydrolase FolE2	104.0203198805
+UniRef50_Q8EQK9: GTP cyclohydrolase FolE2|g__Staphylococcus.s__Staphylococcus_aureus	104.0203198805
+UniRef50_A4WW77: Ribosome maturation factor RimP	103.9501621771
+UniRef50_A4WW77: Ribosome maturation factor RimP|g__Rhodobacter.s__Rhodobacter_sphaeroides	103.9501621771
+UniRef50_Q8CN93: Membrane protein	103.9229519079
+UniRef50_Q8CN93: Membrane protein|g__Staphylococcus.s__Staphylococcus_epidermidis	103.7292187074
+UniRef50_Q8CN93: Membrane protein|unclassified	0.1937332005
+UniRef50_V5TWY7: PTS system glucose-specific transporter subunit IICBA	103.9020472122
+UniRef50_V5TWY7: PTS system glucose-specific transporter subunit IICBA|g__Staphylococcus.s__Staphylococcus_aureus	103.9020472122
+UniRef50_P77316	103.8490810584
+UniRef50_P77316|g__Rhodobacter.s__Rhodobacter_sphaeroides	66.4396419438
+UniRef50_P77316|g__Escherichia.s__Escherichia_coli	36.1598447332
+UniRef50_P77316|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1961722488
+UniRef50_P77316|unclassified	0.0534221326
+UniRef50_F0T8W8	103.8369445105
+UniRef50_F0T8W8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	103.8369445105
+UniRef50_B9E8P7	103.8322326575
+UniRef50_B9E8P7|g__Staphylococcus.s__Staphylococcus_epidermidis	103.8322326575
+UniRef50_I6T4Q5: Transcriptional regulator	103.8284724709
+UniRef50_I6T4Q5: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	103.8284724709
+UniRef50_A6TXF8: Histidine ammonia-lyase	103.7314085342
+UniRef50_A6TXF8: Histidine ammonia-lyase|g__Staphylococcus.s__Staphylococcus_aureus	103.6743387168
+UniRef50_A6TXF8: Histidine ammonia-lyase|unclassified	0.0570698174
+UniRef50_A1B092	103.7273232056
+UniRef50_A1B092|g__Rhodobacter.s__Rhodobacter_sphaeroides	103.6197718995
+UniRef50_A1B092|unclassified	0.1075513061
+UniRef50_E6U995: Binding-protein-dependent transport systems inner membrane component	103.7185471375
+UniRef50_E6U995: Binding-protein-dependent transport systems inner membrane component|g__Staphylococcus.s__Staphylococcus_aureus	103.7185471375
+UniRef50_F0P5S5: Accessory Sec system protein translocase subunit SecY2	103.6944697406
+UniRef50_F0P5S5: Accessory Sec system protein translocase subunit SecY2|g__Staphylococcus.s__Staphylococcus_epidermidis	103.6944697406
+UniRef50_Q49V41: Putative TrmH family tRNA/rRNA methyltransferase	103.6792293043
+UniRef50_Q49V41: Putative TrmH family tRNA/rRNA methyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	103.6792293043
+UniRef50_B9KN81: Alpha amylase, catalytic region	103.6643403406
+UniRef50_B9KN81: Alpha amylase, catalytic region|g__Rhodobacter.s__Rhodobacter_sphaeroides	103.6643403406
+UniRef50_Q6GEN7: Tagatose 1,6-diphosphate aldolase	103.6614988931
+UniRef50_Q6GEN7: Tagatose 1,6-diphosphate aldolase|g__Staphylococcus.s__Staphylococcus_aureus	103.3998626975
+UniRef50_Q6GEN7: Tagatose 1,6-diphosphate aldolase|unclassified	0.2616361955
+UniRef50_Q28NP7: Outer membrane protein assembly factor BamD	103.6174502225
+UniRef50_Q28NP7: Outer membrane protein assembly factor BamD|g__Rhodobacter.s__Rhodobacter_sphaeroides	103.6174502225
+UniRef50_Q5HKU8: CapA-related protein	103.5994295758
+UniRef50_Q5HKU8: CapA-related protein|g__Staphylococcus.s__Staphylococcus_epidermidis	103.5994295758
+UniRef50_Q3J4T8	103.5714804526
+UniRef50_Q3J4T8|g__Rhodobacter.s__Rhodobacter_sphaeroides	103.5714804526
+UniRef50_A7X0H4: Argininosuccinate lyase	103.5028312961
+UniRef50_A7X0H4: Argininosuccinate lyase|g__Staphylococcus.s__Staphylococcus_aureus	103.2298771061
+UniRef50_A7X0H4: Argininosuccinate lyase|unclassified	0.2729541900
+UniRef50_A3PR59: Flavin reductase domain protein, FMN-binding	103.4946000236
+UniRef50_A3PR59: Flavin reductase domain protein, FMN-binding|g__Rhodobacter.s__Rhodobacter_sphaeroides	103.4946000236
+UniRef50_Q8CQZ2: ABC transporter (ATP-binding protein)	103.4699168221
+UniRef50_Q8CQZ2: ABC transporter (ATP-binding protein)|g__Staphylococcus.s__Staphylococcus_epidermidis	103.4699168221
+UniRef50_K0L036: Formate dehydrogenase	103.4334277669
+UniRef50_K0L036: Formate dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	103.4334277669
+UniRef50_A0A034SNG1: 3-methyladenine DNA glycosylase	103.4191374378
+UniRef50_A0A034SNG1: 3-methyladenine DNA glycosylase|g__Streptococcus.s__Streptococcus_mutans	103.4191374378
+UniRef50_Q6GJ94: Putative long chain fatty acid-CoA ligase VraA	103.3785145282
+UniRef50_Q6GJ94: Putative long chain fatty acid-CoA ligase VraA|g__Staphylococcus.s__Staphylococcus_aureus	103.3785145282
+UniRef50_A4WYU6	103.3719629703
+UniRef50_A4WYU6|g__Rhodobacter.s__Rhodobacter_sphaeroides	103.3719629703
+UniRef50_C5N0Z4: Siderophore biosynthesis protein, IucA/IucC family	103.3681211275
+UniRef50_C5N0Z4: Siderophore biosynthesis protein, IucA/IucC family|g__Staphylococcus.s__Staphylococcus_aureus	103.3681211275
+UniRef50_G7ZRG1: AraC family transcriptional regulator, putative	103.3013927799
+UniRef50_G7ZRG1: AraC family transcriptional regulator, putative|g__Staphylococcus.s__Staphylococcus_aureus	103.3013927799
+UniRef50_P74241: Sulfate adenylyltransferase	103.2931059967
+UniRef50_P74241: Sulfate adenylyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	102.6245525256
+UniRef50_P74241: Sulfate adenylyltransferase|unclassified	0.6685534711
+UniRef50_Q1GTK0: NADH-quinone oxidoreductase subunit D	103.2523998689
+UniRef50_Q1GTK0: NADH-quinone oxidoreductase subunit D|g__Rhodobacter.s__Rhodobacter_sphaeroides	102.9868200310
+UniRef50_Q1GTK0: NADH-quinone oxidoreductase subunit D|unclassified	0.2655798379
+UniRef50_Q8CQM9: Ribosomal-protein-serine N-acetyltransferase	103.2320120050
+UniRef50_Q8CQM9: Ribosomal-protein-serine N-acetyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	103.2320120050
+UniRef50_G7ZS06: AraC family regulatory protein	103.2280945734
+UniRef50_G7ZS06: AraC family regulatory protein|g__Staphylococcus.s__Staphylococcus_aureus	103.2280945734
+UniRef50_C5N0Y3	103.1854743550
+UniRef50_C5N0Y3|g__Staphylococcus.s__Staphylococcus_aureus	103.1854743550
+UniRef50_L7WU68: Precorrin-2 dehydrogenase	103.1701092437
+UniRef50_L7WU68: Precorrin-2 dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	74.3712307158
+UniRef50_L7WU68: Precorrin-2 dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	28.7988785279
+UniRef50_G2JD71	103.0218164981
+UniRef50_G2JD71|g__Acinetobacter.s__Acinetobacter_baumannii	103.0218164981
+UniRef50_L1K958	103.0056026036
+UniRef50_L1K958|unclassified	103.0056026036
+UniRef50_A7X154: Probable heme-iron transport system permease protein IsdF	102.9900666760
+UniRef50_A7X154: Probable heme-iron transport system permease protein IsdF|g__Staphylococcus.s__Staphylococcus_aureus	102.9900666760
+UniRef50_A4XKS9: Bifunctional protein PyrR	102.9583348980
+UniRef50_A4XKS9: Bifunctional protein PyrR|g__Streptococcus.s__Streptococcus_mutans	102.5947050692
+UniRef50_A4XKS9: Bifunctional protein PyrR|unclassified	0.3636298289
+UniRef50_A0A023X460: HGPRTase: hypoxanthine phosphoribosyltransferase	102.9509417043
+UniRef50_A0A023X460: HGPRTase: hypoxanthine phosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	102.9509417043
+UniRef50_Q8CNS8: Sortase	102.9319008269
+UniRef50_Q8CNS8: Sortase|g__Staphylococcus.s__Staphylococcus_epidermidis	102.9319008269
+UniRef50_O34591: Acetoin:2,6-dichlorophenolindophenol oxidoreductase subunit beta	102.9260809222
+UniRef50_O34591: Acetoin:2,6-dichlorophenolindophenol oxidoreductase subunit beta|g__Staphylococcus.s__Staphylococcus_epidermidis	99.1693772915
+UniRef50_O34591: Acetoin:2,6-dichlorophenolindophenol oxidoreductase subunit beta|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6900115765
+UniRef50_O34591: Acetoin:2,6-dichlorophenolindophenol oxidoreductase subunit beta|unclassified	0.0666920542
+UniRef50_Q168P4: GTP cyclohydrolase FolE2	102.9070146391
+UniRef50_Q168P4: GTP cyclohydrolase FolE2|g__Rhodobacter.s__Rhodobacter_sphaeroides	101.3113040927
+UniRef50_Q168P4: GTP cyclohydrolase FolE2|unclassified	1.5957105464
+UniRef50_Q3IVS1	102.8868710065
+UniRef50_Q3IVS1|g__Rhodobacter.s__Rhodobacter_sphaeroides	102.8868710065
+UniRef50_E4TMS6: Beta-Ig-H3/fasciclin	102.8389410875
+UniRef50_E4TMS6: Beta-Ig-H3/fasciclin|g__Rhodobacter.s__Rhodobacter_sphaeroides	102.6554975846
+UniRef50_E4TMS6: Beta-Ig-H3/fasciclin|unclassified	0.1834435030
+UniRef50_A0A017XC98	102.8263671032
+UniRef50_A0A017XC98|g__Staphylococcus.s__Staphylococcus_aureus	102.8263671032
+UniRef50_A5IVA9	102.8012230062
+UniRef50_A5IVA9|g__Staphylococcus.s__Staphylococcus_aureus	102.4609244684
+UniRef50_A5IVA9|unclassified	0.3402985378
+UniRef50_L7WU63	102.7946641581
+UniRef50_L7WU63|g__Staphylococcus.s__Staphylococcus_epidermidis	102.7946641581
+UniRef50_P42506	102.7792834668
+UniRef50_P42506|g__Rhodobacter.s__Rhodobacter_sphaeroides	94.2633641421
+UniRef50_P42506|unclassified	8.5159193248
+UniRef50_G7S7S5: Phosphate-specific transport system accessory protein PhoU	102.7676202337
+UniRef50_G7S7S5: Phosphate-specific transport system accessory protein PhoU|g__Streptococcus.s__Streptococcus_mutans	101.1009535671
+UniRef50_G7S7S5: Phosphate-specific transport system accessory protein PhoU|g__Streptococcus.s__Streptococcus_agalactiae	1.6666666667
+UniRef50_O07319: Transcriptional regulator MraZ	102.7013795701
+UniRef50_O07319: Transcriptional regulator MraZ|g__Staphylococcus.s__Staphylococcus_aureus	62.4096633322
+UniRef50_O07319: Transcriptional regulator MraZ|g__Staphylococcus.s__Staphylococcus_epidermidis	37.9497958632
+UniRef50_O07319: Transcriptional regulator MraZ|g__Clostridium.s__Clostridium_beijerinckii	2.3419203747
+UniRef50_A5UKM7: Protein disulfide-isomerase, thioredoxin-related	102.6643237829
+UniRef50_A5UKM7: Protein disulfide-isomerase, thioredoxin-related|g__Methanobrevibacter.s__Methanobrevibacter_smithii	102.6643237829
+UniRef50_Q8CQY5	102.6230815762
+UniRef50_Q8CQY5|g__Staphylococcus.s__Staphylococcus_epidermidis	102.6230815762
+UniRef50_D3EHQ7: ABC transporter related protein	102.6049675061
+UniRef50_D3EHQ7: ABC transporter related protein|g__Staphylococcus.s__Staphylococcus_aureus	102.6049675061
+UniRef50_A7ZUM9	102.5728370058
+UniRef50_A7ZUM9|g__Escherichia.s__Escherichia_coli	98.1034014097
+UniRef50_A7ZUM9|unclassified	4.4694355961
+UniRef50_Q88VE3: Probable GTP-binding protein EngB	102.5550713058
+UniRef50_Q88VE3: Probable GTP-binding protein EngB|g__Staphylococcus.s__Staphylococcus_aureus	59.6106451707
+UniRef50_Q88VE3: Probable GTP-binding protein EngB|g__Streptococcus.s__Streptococcus_mutans	40.5113361108
+UniRef50_Q88VE3: Probable GTP-binding protein EngB|g__Streptococcus.s__Streptococcus_agalactiae	2.4330900243
+UniRef50_Q8CMW6: IS605/IS200-like transposase	102.4997122789
+UniRef50_Q8CMW6: IS605/IS200-like transposase|g__Staphylococcus.s__Staphylococcus_epidermidis	102.4997122789
+UniRef50_Q71ZB6: Valine--tRNA ligase	102.4989933559
+UniRef50_Q71ZB6: Valine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	102.4096008553
+UniRef50_Q71ZB6: Valine--tRNA ligase|unclassified	0.0893925006
+UniRef50_P64484	102.4876140499
+UniRef50_P64484|g__Escherichia.s__Escherichia_coli	102.4876140499
+UniRef50_P52041: 3-hydroxybutyryl-CoA dehydrogenase	102.4654209922
+UniRef50_P52041: 3-hydroxybutyryl-CoA dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	102.3367443418
+UniRef50_P52041: 3-hydroxybutyryl-CoA dehydrogenase|unclassified	0.1286766504
+UniRef50_P9WGC6: Succinyl-CoA ligase [ADP-forming] subunit alpha	102.4615962063
+UniRef50_P9WGC6: Succinyl-CoA ligase [ADP-forming] subunit alpha|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.3518463395
+UniRef50_P9WGC6: Succinyl-CoA ligase [ADP-forming] subunit alpha|g__Escherichia.s__Escherichia_coli	24.4137373385
+UniRef50_P9WGC6: Succinyl-CoA ligase [ADP-forming] subunit alpha|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.4579142791
+UniRef50_P9WGC6: Succinyl-CoA ligase [ADP-forming] subunit alpha|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.2193351504
+UniRef50_P9WGC6: Succinyl-CoA ligase [ADP-forming] subunit alpha|g__Propionibacterium.s__Propionibacterium_acnes	3.8531215162
+UniRef50_P9WGC6: Succinyl-CoA ligase [ADP-forming] subunit alpha|unclassified	0.1656415826
+UniRef50_Q8CTA4: Probable cysteine desulfurase	102.4427718321
+UniRef50_Q8CTA4: Probable cysteine desulfurase|g__Staphylococcus.s__Staphylococcus_epidermidis	95.2138629573
+UniRef50_Q8CTA4: Probable cysteine desulfurase|g__Streptococcus.s__Streptococcus_agalactiae	6.8812726751
+UniRef50_Q8CTA4: Probable cysteine desulfurase|unclassified	0.3476361997
+UniRef50_D3QGU6: Cystathionine gamma-lyase	102.3742089933
+UniRef50_D3QGU6: Cystathionine gamma-lyase|g__Staphylococcus.s__Staphylococcus_aureus	102.3742089933
+UniRef50_Q6GFS7: RNA polymerase sigma factor SigS	102.2936428714
+UniRef50_Q6GFS7: RNA polymerase sigma factor SigS|g__Staphylococcus.s__Staphylococcus_aureus	102.2936428714
+UniRef50_A7X5U0: Formimidoylglutamase	102.2869695801
+UniRef50_A7X5U0: Formimidoylglutamase|g__Staphylococcus.s__Staphylococcus_aureus	102.2869695801
+UniRef50_N5CGV2: Transcriptional regulator	102.2291313687
+UniRef50_N5CGV2: Transcriptional regulator|g__Staphylococcus.s__Staphylococcus_aureus	102.2291313687
+UniRef50_T1XSM0: Cell shape determinant MreD	102.2291167933
+UniRef50_T1XSM0: Cell shape determinant MreD|g__Staphylococcus.s__Staphylococcus_aureus	56.3820754397
+UniRef50_T1XSM0: Cell shape determinant MreD|g__Staphylococcus.s__Staphylococcus_epidermidis	45.8470413537
+UniRef50_A3PH43: Cell wall hydrolase, SleB	102.2248671181
+UniRef50_A3PH43: Cell wall hydrolase, SleB|g__Rhodobacter.s__Rhodobacter_sphaeroides	102.2248671181
+UniRef50_C0MHK2: Phosphoglycerate mutase family protein	102.2055999380
+UniRef50_C0MHK2: Phosphoglycerate mutase family protein|g__Streptococcus.s__Streptococcus_mutans	86.0110025082
+UniRef50_C0MHK2: Phosphoglycerate mutase family protein|g__Streptococcus.s__Streptococcus_agalactiae	16.1945974298
+UniRef50_Q8CMX9: Anaerobic dicarboxylate transport	102.1763498323
+UniRef50_Q8CMX9: Anaerobic dicarboxylate transport|g__Staphylococcus.s__Staphylococcus_epidermidis	102.1763498323
+UniRef50_Q6G6T1: MerR family regulatory protein	102.1757384001
+UniRef50_Q6G6T1: MerR family regulatory protein|g__Staphylococcus.s__Staphylococcus_aureus	102.1757384001
+UniRef50_I0C7M3: Transporter, drug/metabolite exporter family	102.1464321411
+UniRef50_I0C7M3: Transporter, drug/metabolite exporter family|g__Staphylococcus.s__Staphylococcus_aureus	102.1464321411
+UniRef50_P0DKR8: Spermidine N(1)-acetyltransferase	102.0960717858
+UniRef50_P0DKR8: Spermidine N(1)-acetyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	100.3619885665
+UniRef50_P0DKR8: Spermidine N(1)-acetyltransferase|unclassified	1.7340832194
+UniRef50_Q6GGG1: Shikimate kinase	102.0579030881
+UniRef50_Q6GGG1: Shikimate kinase|g__Staphylococcus.s__Staphylococcus_aureus	101.5826993487
+UniRef50_Q6GGG1: Shikimate kinase|unclassified	0.4752037393
+UniRef50_Q4L4Y2: ATP-dependent helicase/deoxyribonuclease subunit B	102.0529946881
+UniRef50_Q4L4Y2: ATP-dependent helicase/deoxyribonuclease subunit B|g__Staphylococcus.s__Staphylococcus_aureus	101.7638101883
+UniRef50_Q4L4Y2: ATP-dependent helicase/deoxyribonuclease subunit B|unclassified	0.2891844997
+UniRef50_C7ZU12: Membrane protein	102.0379832865
+UniRef50_C7ZU12: Membrane protein|g__Staphylococcus.s__Staphylococcus_aureus	102.0379832865
+UniRef50_D3QJ12: ABC transporter ecsA	102.0154461288
+UniRef50_D3QJ12: ABC transporter ecsA|g__Staphylococcus.s__Staphylococcus_aureus	102.0154461288
+UniRef50_P98008: Nitric oxide reductase subunit B	102.0123061837
+UniRef50_P98008: Nitric oxide reductase subunit B|g__Rhodobacter.s__Rhodobacter_sphaeroides	95.9994564062
+UniRef50_P98008: Nitric oxide reductase subunit B|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4101158289
+UniRef50_P98008: Nitric oxide reductase subunit B|unclassified	0.6027339486
+UniRef50_Q49VL2	101.9441642850
+UniRef50_Q49VL2|g__Staphylococcus.s__Staphylococcus_aureus	51.9175845222
+UniRef50_Q49VL2|g__Staphylococcus.s__Staphylococcus_epidermidis	50.0265797627
+UniRef50_P67641: UPF0735 ACT domain-containing protein SA1469	101.8927398376
+UniRef50_P67641: UPF0735 ACT domain-containing protein SA1469|g__Staphylococcus.s__Staphylococcus_aureus	54.2617108183
+UniRef50_P67641: UPF0735 ACT domain-containing protein SA1469|g__Staphylococcus.s__Staphylococcus_epidermidis	47.6310290193
+UniRef50_Q2FFH9: Sodium-dependent dicarboxylate transporter SdcS	101.8174133157
+UniRef50_Q2FFH9: Sodium-dependent dicarboxylate transporter SdcS|g__Staphylococcus.s__Staphylococcus_aureus	101.8174133157
+UniRef50_B5H7E3: ABC transporter ATP-binding protein	101.7927790312
+UniRef50_B5H7E3: ABC transporter ATP-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	101.7927790312
+UniRef50_Q5HL74: Abortive infection family protein	101.7535757605
+UniRef50_Q5HL74: Abortive infection family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	101.7535757605
+UniRef50_U3TMH1: Chloride channel protein	101.6197067312
+UniRef50_U3TMH1: Chloride channel protein|g__Streptococcus.s__Streptococcus_mutans	99.3644669516
+UniRef50_U3TMH1: Chloride channel protein|g__Streptococcus.s__Streptococcus_agalactiae	2.2552397796
+UniRef50_D6ZZK2: Sulfate ABC transporter, periplasmic sulfate-binding protein	101.6118072154
+UniRef50_D6ZZK2: Sulfate ABC transporter, periplasmic sulfate-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	101.6118072154
+UniRef50_I0C7F8: Aminobenzoyl-glutamate transport protein	101.6007061353
+UniRef50_I0C7F8: Aminobenzoyl-glutamate transport protein|g__Staphylococcus.s__Staphylococcus_aureus	101.6007061353
+UniRef50_A5IRE1: SNARE associated Golgi protein	101.5055345954
+UniRef50_A5IRE1: SNARE associated Golgi protein|g__Staphylococcus.s__Staphylococcus_aureus	54.8529418812
+UniRef50_A5IRE1: SNARE associated Golgi protein|g__Staphylococcus.s__Staphylococcus_epidermidis	46.6525927142
+UniRef50_D3JD05: Spermidine N(1)-acetyltransferase	101.4657300286
+UniRef50_D3JD05: Spermidine N(1)-acetyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	88.9369117950
+UniRef50_D3JD05: Spermidine N(1)-acetyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	12.5288182336
+UniRef50_P42199: L-cystine-binding protein TcyA	101.4575937500
+UniRef50_P42199: L-cystine-binding protein TcyA|g__Staphylococcus.s__Staphylococcus_aureus	101.4575937500
+UniRef50_C5N1M3: Glyoxalase family protein	101.4402609202
+UniRef50_C5N1M3: Glyoxalase family protein|g__Staphylococcus.s__Staphylococcus_aureus	100.9155669208
+UniRef50_C5N1M3: Glyoxalase family protein|unclassified	0.5246939994
+UniRef50_Q98BM2: ABC transporter, periplasmic oligopeptide-binding protein	101.4362956928
+UniRef50_Q98BM2: ABC transporter, periplasmic oligopeptide-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	101.4362956928
+UniRef50_A4IR80: Alanine--tRNA ligase	101.4289615499
+UniRef50_A4IR80: Alanine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	101.4289615499
+UniRef50_U3NFX9: ABC transporter ATP-binding protein	101.3754656152
+UniRef50_U3NFX9: ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	101.3754656152
+UniRef50_B0K5G6: 50S ribosomal protein L10	101.2973176184
+UniRef50_B0K5G6: 50S ribosomal protein L10|g__Staphylococcus.s__Staphylococcus_epidermidis	101.2973176184
+UniRef50_A3PJG3: Outer membrane protein assembly factor BamA	101.2792766977
+UniRef50_A3PJG3: Outer membrane protein assembly factor BamA|g__Rhodobacter.s__Rhodobacter_sphaeroides	101.2792766977
+UniRef50_Q0BUK0: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase	101.2728438492
+UniRef50_Q0BUK0: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.9002057412
+UniRef50_Q0BUK0: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|g__Escherichia.s__Escherichia_coli	35.3761885683
+UniRef50_Q0BUK0: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9155024931
+UniRef50_Q0BUK0: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|unclassified	0.0809470466
+UniRef50_Q5HRL1	101.2143714287
+UniRef50_Q5HRL1|g__Staphylococcus.s__Staphylococcus_epidermidis	101.2143714287
+UniRef50_A6QDJ4	101.2020513392
+UniRef50_A6QDJ4|g__Staphylococcus.s__Staphylococcus_aureus	101.2020513392
+UniRef50_P0CZ58: Fructose-bisphosphate aldolase	101.1970577946
+UniRef50_P0CZ58: Fructose-bisphosphate aldolase|g__Streptococcus.s__Streptococcus_mutans	86.7235490899
+UniRef50_P0CZ58: Fructose-bisphosphate aldolase|g__Clostridium.s__Clostridium_beijerinckii	11.5005394332
+UniRef50_P0CZ58: Fructose-bisphosphate aldolase|g__Streptococcus.s__Streptococcus_agalactiae	2.2471910112
+UniRef50_P0CZ58: Fructose-bisphosphate aldolase|unclassified	0.7257782602
+UniRef50_Q6FAF0	101.1794798920
+UniRef50_Q6FAF0|g__Acinetobacter.s__Acinetobacter_baumannii	101.1794798920
+UniRef50_A6QDY9	101.1038752567
+UniRef50_A6QDY9|g__Staphylococcus.s__Staphylococcus_aureus	101.1038752567
+UniRef50_C5N0Y7: Iron chelate uptake ABC transporter, FeCT family, permease protein	101.0823097051
+UniRef50_C5N0Y7: Iron chelate uptake ABC transporter, FeCT family, permease protein|g__Staphylococcus.s__Staphylococcus_aureus	101.0823097051
+UniRef50_A5ISU2	101.0509726639
+UniRef50_A5ISU2|g__Staphylococcus.s__Staphylococcus_aureus	101.0509726639
+UniRef50_I3U2F8: DAACS family dicarboxylate/amino acid:sodium (Na+) symporter	101.0257863575
+UniRef50_I3U2F8: DAACS family dicarboxylate/amino acid:sodium (Na+) symporter|g__Staphylococcus.s__Staphylococcus_aureus	101.0257863575
+UniRef50_I0C6W8: Staphylococcal accessory regulator	101.0254995480
+UniRef50_I0C6W8: Staphylococcal accessory regulator|g__Staphylococcus.s__Staphylococcus_aureus	101.0254995480
+UniRef50_S4X9L5: 2-oxoglutarate ferredoxin oxidoreductase subunit beta	101.0234713764
+UniRef50_S4X9L5: 2-oxoglutarate ferredoxin oxidoreductase subunit beta|g__Staphylococcus.s__Staphylococcus_aureus	101.0234713764
+UniRef50_Q8CTZ4: Adenosylmethionine-8-amino-7-oxononanoate aminotransferase	100.9646483841
+UniRef50_Q8CTZ4: Adenosylmethionine-8-amino-7-oxononanoate aminotransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	100.9646483841
+UniRef50_A4X0K2	100.9585895271
+UniRef50_A4X0K2|g__Rhodobacter.s__Rhodobacter_sphaeroides	97.0165335232
+UniRef50_A4X0K2|unclassified	3.9420560039
+UniRef50_Q5HRJ5: Teichoic acid biosynthesis protein, putative	100.9455876319
+UniRef50_Q5HRJ5: Teichoic acid biosynthesis protein, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	100.9455876319
+UniRef50_V6YJ87: Membrane protein	100.9157708959
+UniRef50_V6YJ87: Membrane protein|g__Staphylococcus.s__Staphylococcus_epidermidis	90.6906002104
+UniRef50_V6YJ87: Membrane protein|unclassified	10.2251706855
+UniRef50_F5M0P1: Gifsy-1 prophage protein	100.8596619092
+UniRef50_F5M0P1: Gifsy-1 prophage protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	100.8596619092
+UniRef50_B9JV31	100.8249166093
+UniRef50_B9JV31|g__Rhodobacter.s__Rhodobacter_sphaeroides	100.7363453597
+UniRef50_B9JV31|unclassified	0.0885712496
+UniRef50_Q5HR73: Transcriptional regulator, AraC family	100.7845652912
+UniRef50_Q5HR73: Transcriptional regulator, AraC family|g__Staphylococcus.s__Staphylococcus_epidermidis	100.7845652912
+UniRef50_F8DJT3: Phosphorylase family	100.7439928482
+UniRef50_F8DJT3: Phosphorylase family|g__Streptococcus.s__Streptococcus_mutans	100.7439928482
+UniRef50_Q88Z97: Methionine--tRNA ligase	100.7361918316
+UniRef50_Q88Z97: Methionine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	100.5834921084
+UniRef50_Q88Z97: Methionine--tRNA ligase|unclassified	0.1526997232
+UniRef50_E2QLB6: C4-dicarboxylate-binding periplasmicprote in	100.7209328546
+UniRef50_E2QLB6: C4-dicarboxylate-binding periplasmicprote in|g__Rhodobacter.s__Rhodobacter_sphaeroides	100.7209328546
+UniRef50_Q2LUP9: Bifunctional protein FolD	100.6479847275
+UniRef50_Q2LUP9: Bifunctional protein FolD|g__Staphylococcus.s__Staphylococcus_epidermidis	100.6479847275
+UniRef50_Q4L842: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	100.6298250748
+UniRef50_Q4L842: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	100.6298250748
+UniRef50_G8UZW2: Glycerophosphoryl diester phosphodiesterase family protein	100.5916660936
+UniRef50_G8UZW2: Glycerophosphoryl diester phosphodiesterase family protein|g__Staphylococcus.s__Staphylococcus_aureus	100.5916660936
+UniRef50_E8SJW5: Membrane protein, putative	100.5836471539
+UniRef50_E8SJW5: Membrane protein, putative|g__Staphylococcus.s__Staphylococcus_aureus	60.3881259633
+UniRef50_E8SJW5: Membrane protein, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	39.7872894427
+UniRef50_E8SJW5: Membrane protein, putative|unclassified	0.4082317479
+UniRef50_Q02431: Chlorophyllide reductase 35.5 kDa chain	100.4941868337
+UniRef50_Q02431: Chlorophyllide reductase 35.5 kDa chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	86.8019945586
+UniRef50_Q02431: Chlorophyllide reductase 35.5 kDa chain|unclassified	13.6921922751
+UniRef50_R7DZG1: tRNA-specific adenosine deaminase	100.4522419497
+UniRef50_R7DZG1: tRNA-specific adenosine deaminase|g__Staphylococcus.s__Staphylococcus_epidermidis	100.4522419497
+UniRef50_Q4L9F7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	100.4401504251
+UniRef50_Q4L9F7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	100.4401504251
+UniRef50_A1B1Z9	100.4303109791
+UniRef50_A1B1Z9|unclassified	100.4303109791
+UniRef50_R9CBE2: Phosphoglyceromutase	100.4266750948
+UniRef50_R9CBE2: Phosphoglyceromutase|g__Escherichia.s__Escherichia_coli	100.4266750948
+UniRef50_P9WPD4: Citrate synthase 1	100.4077621708
+UniRef50_P9WPD4: Citrate synthase 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	87.0641237306
+UniRef50_P9WPD4: Citrate synthase 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.4657326084
+UniRef50_P9WPD4: Citrate synthase 1|g__Acinetobacter.s__Acinetobacter_baumannii	1.7184336503
+UniRef50_P9WPD4: Citrate synthase 1|unclassified	0.1594721815
+UniRef50_E8SGD2: Histidinol-phosphate aminotransferase	100.3913129277
+UniRef50_E8SGD2: Histidinol-phosphate aminotransferase|g__Staphylococcus.s__Staphylococcus_aureus	100.3913129277
+UniRef50_P34918: Glyceraldehyde-3-phosphate dehydrogenase 3	100.3639692486
+UniRef50_P34918: Glyceraldehyde-3-phosphate dehydrogenase 3|g__Rhodobacter.s__Rhodobacter_sphaeroides	99.2437238003
+UniRef50_P34918: Glyceraldehyde-3-phosphate dehydrogenase 3|unclassified	1.1202454482
+UniRef50_A7X6Y1: L-lactate dehydrogenase 2	100.3462380846
+UniRef50_A7X6Y1: L-lactate dehydrogenase 2|g__Staphylococcus.s__Staphylococcus_aureus	100.3462380846
+UniRef50_B5ZA76: Peptidoglycan deacetylase	100.3426062012
+UniRef50_B5ZA76: Peptidoglycan deacetylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	95.9135879458
+UniRef50_B5ZA76: Peptidoglycan deacetylase|g__Helicobacter.s__Helicobacter_pylori	2.7728192757
+UniRef50_B5ZA76: Peptidoglycan deacetylase|unclassified	1.6561989798
+UniRef50_D6SDT2: PTS system, glucose subfamily, IIA component	100.3148723939
+UniRef50_D6SDT2: PTS system, glucose subfamily, IIA component|g__Staphylococcus.s__Staphylococcus_aureus	100.3148723939
+UniRef50_P05648: Chromosomal replication initiator protein DnaA	100.2816307439
+UniRef50_P05648: Chromosomal replication initiator protein DnaA|g__Staphylococcus.s__Staphylococcus_aureus	100.2816307439
+UniRef50_Q4L4Y4	100.2463846452
+UniRef50_Q4L4Y4|g__Staphylococcus.s__Staphylococcus_epidermidis	100.2463846452
+UniRef50_Q8CMQ9: Integrase-like protein	100.2233368251
+UniRef50_Q8CMQ9: Integrase-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	100.2233368251
+UniRef50_F4FMY2: Group 2 glycosyl transferase	100.2088316627
+UniRef50_F4FMY2: Group 2 glycosyl transferase|g__Staphylococcus.s__Staphylococcus_aureus	100.2088316627
+UniRef50_F4EI16: Acetolactate synthase (Acetohydroxy-acid synthase) (Large subunit)	100.2005568313
+UniRef50_F4EI16: Acetolactate synthase (Acetohydroxy-acid synthase) (Large subunit)|g__Staphylococcus.s__Staphylococcus_epidermidis	100.2005568313
+UniRef50_T1XU00	100.1873786288
+UniRef50_T1XU00|g__Staphylococcus.s__Staphylococcus_epidermidis	86.3631549975
+UniRef50_T1XU00|g__Staphylococcus.s__Staphylococcus_aureus	13.8242236312
+UniRef50_Q99W47: Serine-aspartate repeat-containing protein D	100.1803660048
+UniRef50_Q99W47: Serine-aspartate repeat-containing protein D|g__Staphylococcus.s__Staphylococcus_aureus	100.1803660048
+UniRef50_Q2YAA3: NADH-quinone oxidoreductase subunit C/D	100.1379711748
+UniRef50_Q2YAA3: NADH-quinone oxidoreductase subunit C/D|g__Rhodobacter.s__Rhodobacter_sphaeroides	98.9515442538
+UniRef50_Q2YAA3: NADH-quinone oxidoreductase subunit C/D|g__Acinetobacter.s__Acinetobacter_baumannii	1.1213913175
+UniRef50_Q2YAA3: NADH-quinone oxidoreductase subunit C/D|unclassified	0.0650356035
+UniRef50_C7ZSD0: GtrA family protein	100.1088046981
+UniRef50_C7ZSD0: GtrA family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	89.3727135544
+UniRef50_C7ZSD0: GtrA family protein|g__Staphylococcus.s__Staphylococcus_aureus	10.7360911437
+UniRef50_Q3J220: Phage terminase-like protein, large subunit	100.0812817893
+UniRef50_Q3J220: Phage terminase-like protein, large subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	98.6531933260
+UniRef50_Q3J220: Phage terminase-like protein, large subunit|unclassified	1.4280884633
+UniRef50_P0C0R2: HTH-type transcriptional regulator SarS	100.0745832808
+UniRef50_P0C0R2: HTH-type transcriptional regulator SarS|g__Staphylococcus.s__Staphylococcus_aureus	100.0745832808
+UniRef50_P28912: H repeat-associated protein YhhI	100.0719009614
+UniRef50_P28912: H repeat-associated protein YhhI|g__Escherichia.s__Escherichia_coli	100.0719009614
+UniRef50_B4RJ27	100.0000000000
+UniRef50_B4RJ27|g__Neisseria.s__Neisseria_meningitidis	100.0000000000
+UniRef50_I0C5G1	99.9917736869
+UniRef50_I0C5G1|g__Staphylococcus.s__Staphylococcus_aureus	99.7065124633
+UniRef50_I0C5G1|unclassified	0.2852612235
+UniRef50_D2NAM2: Transcriptional regulator	99.9755005916
+UniRef50_D2NAM2: Transcriptional regulator|g__Staphylococcus.s__Staphylococcus_aureus	99.9755005916
+UniRef50_I0C160: Glycerophosphodiester phosphodiesterase	99.9717790118
+UniRef50_I0C160: Glycerophosphodiester phosphodiesterase|g__Staphylococcus.s__Staphylococcus_aureus	99.9717790118
+UniRef50_H4A9R7: PRD domain protein	99.9504574332
+UniRef50_H4A9R7: PRD domain protein|g__Staphylococcus.s__Staphylococcus_aureus	99.9504574332
+UniRef50_A3PLE1	99.9296927892
+UniRef50_A3PLE1|g__Rhodobacter.s__Rhodobacter_sphaeroides	97.0091712835
+UniRef50_A3PLE1|unclassified	2.9205215057
+UniRef50_Q2FWK2: 3-isopropylmalate dehydrogenase	99.9287231696
+UniRef50_Q2FWK2: 3-isopropylmalate dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	99.4103163369
+UniRef50_Q2FWK2: 3-isopropylmalate dehydrogenase|unclassified	0.5184068327
+UniRef50_A0RJK0: Malate dehydrogenase	99.9068450819
+UniRef50_A0RJK0: Malate dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	95.2548987337
+UniRef50_A0RJK0: Malate dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	4.6519463483
+UniRef50_Q3IVR0	99.8778823415
+UniRef50_Q3IVR0|g__Rhodobacter.s__Rhodobacter_sphaeroides	97.1915939567
+UniRef50_Q3IVR0|unclassified	2.6862883848
+UniRef50_I7DYY9: Cell division protein ftsW	99.8630430262
+UniRef50_I7DYY9: Cell division protein ftsW|g__Rhodobacter.s__Rhodobacter_sphaeroides	99.8630430262
+UniRef50_Q8CMV9: Succinyl-diaminopimelate desuccinylase	99.8613780311
+UniRef50_Q8CMV9: Succinyl-diaminopimelate desuccinylase|g__Staphylococcus.s__Staphylococcus_epidermidis	99.8613780311
+UniRef50_A3PJB9: ABC transporter related	99.8237878692
+UniRef50_A3PJB9: ABC transporter related|g__Rhodobacter.s__Rhodobacter_sphaeroides	99.8237878692
+UniRef50_B1Y6A6: Periplasmic nitrate reductase	99.8119964831
+UniRef50_B1Y6A6: Periplasmic nitrate reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	94.2779378138
+UniRef50_B1Y6A6: Periplasmic nitrate reductase|g__Escherichia.s__Escherichia_coli	5.4179535235
+UniRef50_B1Y6A6: Periplasmic nitrate reductase|unclassified	0.1161051458
+UniRef50_Q99VJ2: Extracellular matrix protein-binding protein emp	99.8015882826
+UniRef50_Q99VJ2: Extracellular matrix protein-binding protein emp|g__Staphylococcus.s__Staphylococcus_aureus	99.8015882826
+UniRef50_Q2YKR5: sn-glycerol-3-phosphate-binding periplasmic protein UgpB	99.8009847623
+UniRef50_Q2YKR5: sn-glycerol-3-phosphate-binding periplasmic protein UgpB|g__Rhodobacter.s__Rhodobacter_sphaeroides	99.8009847623
+UniRef50_V9WST0: Phage terminase-like protein, large subunit	99.7738882763
+UniRef50_V9WST0: Phage terminase-like protein, large subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	99.7238420064
+UniRef50_V9WST0: Phage terminase-like protein, large subunit|unclassified	0.0500462699
+UniRef50_Q163E0: AzlC family protein	99.7736281154
+UniRef50_Q163E0: AzlC family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	99.1323237177
+UniRef50_Q163E0: AzlC family protein|unclassified	0.6413043977
+UniRef50_Q98I23: Putative phosphoribosylaminoimidazole-succinocarboxamide synthase 2	99.7012998986
+UniRef50_Q98I23: Putative phosphoribosylaminoimidazole-succinocarboxamide synthase 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	99.2774825356
+UniRef50_Q98I23: Putative phosphoribosylaminoimidazole-succinocarboxamide synthase 2|unclassified	0.4238173630
+UniRef50_Q3J3B6	99.6778818982
+UniRef50_Q3J3B6|unclassified	99.6778818982
+UniRef50_Q5LNW6: Bacterial type II/III secretion system protein	99.6172174600
+UniRef50_Q5LNW6: Bacterial type II/III secretion system protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	99.6172174600
+UniRef50_Q13RB8: Xylose isomerase	99.5514510480
+UniRef50_Q13RB8: Xylose isomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	99.4549320477
+UniRef50_Q13RB8: Xylose isomerase|unclassified	0.0965190004
+UniRef50_P22874: Mercuric resistance operon regulatory protein	99.5429528434
+UniRef50_P22874: Mercuric resistance operon regulatory protein|g__Staphylococcus.s__Staphylococcus_epidermidis	95.2326080158
+UniRef50_P22874: Mercuric resistance operon regulatory protein|g__Staphylococcus.s__Staphylococcus_aureus	4.3103448276
+UniRef50_G7ZTM6: Capsular polysaccharide synthesis enzyme	99.5244933431
+UniRef50_G7ZTM6: Capsular polysaccharide synthesis enzyme|g__Staphylococcus.s__Staphylococcus_aureus	99.5244933431
+UniRef50_V4YS06	99.4560994561
+UniRef50_V4YS06|g__Streptococcus.s__Streptococcus_mutans	99.4560994561
+UniRef50_B2UX43: Chromosomal replication initiator protein DnaA	99.4504289452
+UniRef50_B2UX43: Chromosomal replication initiator protein DnaA|g__Staphylococcus.s__Staphylococcus_epidermidis	94.6029844962
+UniRef50_B2UX43: Chromosomal replication initiator protein DnaA|g__Clostridium.s__Clostridium_beijerinckii	4.8474444490
+UniRef50_F2KIT5: Glycine betaine ABC transporter, ATP-binding component	99.4334628112
+UniRef50_F2KIT5: Glycine betaine ABC transporter, ATP-binding component|g__Rhodobacter.s__Rhodobacter_sphaeroides	99.4334628112
+UniRef50_I0JFL4: BioY family protein	99.4190554991
+UniRef50_I0JFL4: BioY family protein|g__Staphylococcus.s__Staphylococcus_aureus	99.4190554991
+UniRef50_P60238: F420-non-reducing hydrogenase iron-sulfur subunit D	99.3425132206
+UniRef50_P60238: F420-non-reducing hydrogenase iron-sulfur subunit D|g__Methanobrevibacter.s__Methanobrevibacter_smithii	99.3425132206
+UniRef50_T1YDR0: Transcriptional regulator, MerR family protein	99.3413076549
+UniRef50_T1YDR0: Transcriptional regulator, MerR family protein|g__Staphylococcus.s__Staphylococcus_aureus	99.3413076549
+UniRef50_I7DVA3	99.3371094545
+UniRef50_I7DVA3|g__Rhodobacter.s__Rhodobacter_sphaeroides	98.9512380225
+UniRef50_I7DVA3|unclassified	0.3858714320
+UniRef50_C0P4G8	99.3365496531
+UniRef50_C0P4G8|g__Rhodobacter.s__Rhodobacter_sphaeroides	99.3365496531
+UniRef50_Q3IV95	99.3315285273
+UniRef50_Q3IV95|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.8900357091
+UniRef50_Q3IV95|unclassified	46.4414928181
+UniRef50_P0AFU1: Inner membrane ABC transporter permease protein YejB	99.3050539365
+UniRef50_P0AFU1: Inner membrane ABC transporter permease protein YejB|g__Rhodobacter.s__Rhodobacter_sphaeroides	68.4856665096
+UniRef50_P0AFU1: Inner membrane ABC transporter permease protein YejB|g__Escherichia.s__Escherichia_coli	21.9098247269
+UniRef50_P0AFU1: Inner membrane ABC transporter permease protein YejB|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.9095627000
+UniRef50_A3PS91	99.2839396883
+UniRef50_A3PS91|unclassified	99.2839396883
+UniRef50_H6LQV6	99.2757073536
+UniRef50_H6LQV6|g__Staphylococcus.s__Staphylococcus_aureus	99.1968229642
+UniRef50_H6LQV6|unclassified	0.0788843894
+UniRef50_R5JER5: RelA/SpoT domain protein	99.2450182884
+UniRef50_R5JER5: RelA/SpoT domain protein|g__Staphylococcus.s__Staphylococcus_aureus	99.2450182884
+UniRef50_Q6G956: Maltose operon transcriptional repressor	99.2334855564
+UniRef50_Q6G956: Maltose operon transcriptional repressor|g__Staphylococcus.s__Staphylococcus_aureus	99.2334855564
+UniRef50_G5JW97: Competence-specific sigma factor ComX	99.1609181519
+UniRef50_G5JW97: Competence-specific sigma factor ComX|g__Streptococcus.s__Streptococcus_mutans	99.1609181519
+UniRef50_D3QIV7: Immunodominant antigen B	99.1489792174
+UniRef50_D3QIV7: Immunodominant antigen B|g__Staphylococcus.s__Staphylococcus_epidermidis	99.1489792174
+UniRef50_Y6NBB6	99.1482201223
+UniRef50_Y6NBB6|g__Staphylococcus.s__Staphylococcus_aureus	99.1482201223
+UniRef50_A0A023NRD3	99.1001506574
+UniRef50_A0A023NRD3|g__Rhodobacter.s__Rhodobacter_sphaeroides	99.1001506574
+UniRef50_G0LQ11: ABC transport system, ATP-binding protein	99.0970830187
+UniRef50_G0LQ11: ABC transport system, ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	99.0970830187
+UniRef50_U3QR56: ABC transporter permease	99.0646868970
+UniRef50_U3QR56: ABC transporter permease|g__Rhodobacter.s__Rhodobacter_sphaeroides	99.0646868970
+UniRef50_B9JJI7: Taurine uptake ABC transporter	99.0122958786
+UniRef50_B9JJI7: Taurine uptake ABC transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	99.0122958786
+UniRef50_A7X0A3	99.0114501098
+UniRef50_A7X0A3|g__Staphylococcus.s__Staphylococcus_aureus	99.0114501098
+UniRef50_B1HUK4: Alanine--tRNA ligase	98.9950160622
+UniRef50_B1HUK4: Alanine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	98.9950160622
+UniRef50_O05220	98.9932024096
+UniRef50_O05220|g__Staphylococcus.s__Staphylococcus_epidermidis	98.9932024096
+UniRef50_X4ZX80	98.9463417749
+UniRef50_X4ZX80|g__Staphylococcus.s__Staphylococcus_epidermidis	98.9463417749
+UniRef50_Q8CR64	98.9020291669
+UniRef50_Q8CR64|g__Staphylococcus.s__Staphylococcus_epidermidis	98.9020291669
+UniRef50_A4WQD3: Glutathione-dependent formaldehyde-activating, GFA	98.9001007997
+UniRef50_A4WQD3: Glutathione-dependent formaldehyde-activating, GFA|g__Rhodobacter.s__Rhodobacter_sphaeroides	98.9001007997
+UniRef50_E8SG33: Chromosome partition protein Smc	98.8915029140
+UniRef50_E8SG33: Chromosome partition protein Smc|g__Staphylococcus.s__Staphylococcus_epidermidis	98.8915029140
+UniRef50_Q8CNU4: Proline dehydrohenase-like protein	98.8883235395
+UniRef50_Q8CNU4: Proline dehydrohenase-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	98.8883235395
+UniRef50_P21801: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial	98.8453801286
+UniRef50_P21801: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial|g__Rhodobacter.s__Rhodobacter_sphaeroides	98.6553850642
+UniRef50_P21801: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial|unclassified	0.1899950644
+UniRef50_Q2G260	98.8349337435
+UniRef50_Q2G260|g__Staphylococcus.s__Staphylococcus_aureus	98.8349337435
+UniRef50_Q0AKG2: Two component transcriptional regulator, winged helix family	98.8120260332
+UniRef50_Q0AKG2: Two component transcriptional regulator, winged helix family|g__Rhodobacter.s__Rhodobacter_sphaeroides	98.8120260332
+UniRef50_W1WH34	98.7952392058
+UniRef50_W1WH34|g__Staphylococcus.s__Staphylococcus_epidermidis	92.1885917610
+UniRef50_W1WH34|unclassified	6.6066474448
+UniRef50_Q16AI7: Signal peptidase I, putative	98.7638358765
+UniRef50_Q16AI7: Signal peptidase I, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	98.7638358765
+UniRef50_A6QDV1	98.7447134417
+UniRef50_A6QDV1|g__Staphylococcus.s__Staphylococcus_aureus	98.7447134417
+UniRef50_T1Y598: Transporter, drug/metabolite exporter family protein	98.7429503526
+UniRef50_T1Y598: Transporter, drug/metabolite exporter family protein|g__Staphylococcus.s__Staphylococcus_aureus	98.7429503526
+UniRef50_Q3J1M3	98.6473222457
+UniRef50_Q3J1M3|g__Rhodobacter.s__Rhodobacter_sphaeroides	97.1321707305
+UniRef50_Q3J1M3|unclassified	1.5151515152
+UniRef50_Q5HLE0: Polyphosphate kinase	98.6287169828
+UniRef50_Q5HLE0: Polyphosphate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	98.6287169828
+UniRef50_A5IR30	98.6191411640
+UniRef50_A5IR30|g__Staphylococcus.s__Staphylococcus_aureus	98.6191411640
+UniRef50_I3TXU6: TRAP-type bacterial extracellular solute-binding protein	98.5589430980
+UniRef50_I3TXU6: TRAP-type bacterial extracellular solute-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	98.5589430980
+UniRef50_F0J4U6	98.5374182891
+UniRef50_F0J4U6|g__Rhodobacter.s__Rhodobacter_sphaeroides	98.5374182891
+UniRef50_Q5HNN0: Probable GTP-binding protein EngB	98.5058200858
+UniRef50_Q5HNN0: Probable GTP-binding protein EngB|g__Staphylococcus.s__Staphylococcus_epidermidis	98.5058200858
+UniRef50_Q5HP94: Holliday junction resolvase RecU	98.4369421124
+UniRef50_Q5HP94: Holliday junction resolvase RecU|g__Staphylococcus.s__Staphylococcus_epidermidis	98.4369421124
+UniRef50_A9CEU9: GGDEF family protein	98.4157948002
+UniRef50_A9CEU9: GGDEF family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	96.5817985519
+UniRef50_A9CEU9: GGDEF family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.8339962483
+UniRef50_D3QI46	98.4150630628
+UniRef50_D3QI46|g__Staphylococcus.s__Staphylococcus_aureus	98.3036568713
+UniRef50_D3QI46|unclassified	0.1114061915
+UniRef50_C4W8W1: Pyruvate carboxylase	98.3800390916
+UniRef50_C4W8W1: Pyruvate carboxylase|g__Staphylococcus.s__Staphylococcus_aureus	98.3800390916
+UniRef50_U3SVV6: 2'-(5''-triphosphoribosyl)-3'-dephospho-CoA:apo-citrate lyase	98.3421468577
+UniRef50_U3SVV6: 2'-(5''-triphosphoribosyl)-3'-dephospho-CoA:apo-citrate lyase|g__Streptococcus.s__Streptococcus_mutans	98.3421468577
+UniRef50_Q2FYR2: Aminoacyltransferase FemA	98.3320587593
+UniRef50_Q2FYR2: Aminoacyltransferase FemA|g__Staphylococcus.s__Staphylococcus_epidermidis	64.5185526434
+UniRef50_Q2FYR2: Aminoacyltransferase FemA|g__Staphylococcus.s__Staphylococcus_aureus	33.8135061159
+UniRef50_U4PWQ9: DNA gyrase subunit A	98.3175336906
+UniRef50_U4PWQ9: DNA gyrase subunit A|g__Rhodobacter.s__Rhodobacter_sphaeroides	98.3175336906
+UniRef50_Q8CT75	98.2850032095
+UniRef50_Q8CT75|g__Staphylococcus.s__Staphylococcus_epidermidis	95.0591967578
+UniRef50_Q8CT75|unclassified	3.2258064516
+UniRef50_C1KWF9: Peptide methionine sulfoxide reductase MsrA	98.2844566781
+UniRef50_C1KWF9: Peptide methionine sulfoxide reductase MsrA|g__Staphylococcus.s__Staphylococcus_epidermidis	98.2844566781
+UniRef50_Q3XXT3: Amino acid permease-associated region	98.2377116229
+UniRef50_Q3XXT3: Amino acid permease-associated region|g__Staphylococcus.s__Staphylococcus_aureus	98.2377116229
+UniRef50_Q4L8E8: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	98.2278792248
+UniRef50_Q4L8E8: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	98.2278792248
+UniRef50_Q9JY93: Peptide chain release factor 1	98.2124738825
+UniRef50_Q9JY93: Peptide chain release factor 1|g__Staphylococcus.s__Staphylococcus_aureus	91.4659324230
+UniRef50_Q9JY93: Peptide chain release factor 1|g__Acinetobacter.s__Acinetobacter_baumannii	3.0625583567
+UniRef50_Q9JY93: Peptide chain release factor 1|g__Clostridium.s__Clostridium_beijerinckii	2.5102741827
+UniRef50_Q9JY93: Peptide chain release factor 1|g__Neisseria.s__Neisseria_meningitidis	1.1737089202
+UniRef50_A3PL07: Isopentenyl-diphosphate Delta-isomerase	98.0942227198
+UniRef50_A3PL07: Isopentenyl-diphosphate Delta-isomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	84.9048731505
+UniRef50_A3PL07: Isopentenyl-diphosphate Delta-isomerase|unclassified	13.1893495693
+UniRef50_A8HYF7: Lon protease	98.0813001726
+UniRef50_A8HYF7: Lon protease|g__Rhodobacter.s__Rhodobacter_sphaeroides	97.9498662132
+UniRef50_A8HYF7: Lon protease|unclassified	0.1314339594
+UniRef50_Q89W19: Partitioning protein	98.0804068372
+UniRef50_Q89W19: Partitioning protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	96.4972376240
+UniRef50_Q89W19: Partitioning protein|unclassified	1.5831692132
+UniRef50_E8SH67: Zn peptidase with DNA binding domain	98.0436767557
+UniRef50_E8SH67: Zn peptidase with DNA binding domain|g__Staphylococcus.s__Staphylococcus_aureus	98.0436767557
+UniRef50_Q81V80: Putative pyridoxal phosphate-dependent acyltransferase	98.0433836179
+UniRef50_Q81V80: Putative pyridoxal phosphate-dependent acyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	98.0433836179
+UniRef50_Q3IVA5: Aldo/keto reductase	98.0241557204
+UniRef50_Q3IVA5: Aldo/keto reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	98.0241557204
+UniRef50_D5CRQ8: TRAP dicarboxylate transporter, DctP subunit	97.9351414889
+UniRef50_D5CRQ8: TRAP dicarboxylate transporter, DctP subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	97.9351414889
+UniRef50_A1WG09: Binding-protein-dependent transport systems inner membrane component	97.9282548172
+UniRef50_A1WG09: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	97.9282548172
+UniRef50_Q5HQB3: Inosine-uridine preferring nucleoside hydrolase family protein	97.9252579893
+UniRef50_Q5HQB3: Inosine-uridine preferring nucleoside hydrolase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	97.9252579893
+UniRef50_B8CX69: Predicted ATPase of the ABC class	97.9198355343
+UniRef50_B8CX69: Predicted ATPase of the ABC class|g__Staphylococcus.s__Staphylococcus_epidermidis	97.9198355343
+UniRef50_D0LJQ7: Extracellular solute-binding protein family 1	97.9076353649
+UniRef50_D0LJQ7: Extracellular solute-binding protein family 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	97.9076353649
+UniRef50_A4WVF5: L-malyl-CoA/beta-methylmalyl-CoA lyase	97.8998643006
+UniRef50_A4WVF5: L-malyl-CoA/beta-methylmalyl-CoA lyase|g__Rhodobacter.s__Rhodobacter_sphaeroides	88.4234926518
+UniRef50_A4WVF5: L-malyl-CoA/beta-methylmalyl-CoA lyase|unclassified	9.4763716487
+UniRef50_C8WVN6: Transcriptional regulator, ArsR family	97.8881999477
+UniRef50_C8WVN6: Transcriptional regulator, ArsR family|g__Staphylococcus.s__Staphylococcus_epidermidis	93.2799050169
+UniRef50_C8WVN6: Transcriptional regulator, ArsR family|g__Staphylococcus.s__Staphylococcus_aureus	4.6082949309
+UniRef50_Q52812: General L-amino acid-binding periplasmic protein AapJ	97.8869761068
+UniRef50_Q52812: General L-amino acid-binding periplasmic protein AapJ|g__Rhodobacter.s__Rhodobacter_sphaeroides	94.4374729184
+UniRef50_Q52812: General L-amino acid-binding periplasmic protein AapJ|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4495031885
+UniRef50_O84917: Ribulose bisphosphate carboxylase	97.8768030265
+UniRef50_O84917: Ribulose bisphosphate carboxylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	97.8768030265
+UniRef50_Q8CNS6: Secretory antigen SsaA-like protein	97.8664365331
+UniRef50_Q8CNS6: Secretory antigen SsaA-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	97.8664365331
+UniRef50_C5N0X8: Na/Pi-cotransporter II-like protein	97.8631250857
+UniRef50_C5N0X8: Na/Pi-cotransporter II-like protein|g__Staphylococcus.s__Staphylococcus_aureus	97.8631250857
+UniRef50_B9DIP6: Pseudouridine synthase	97.8188365034
+UniRef50_B9DIP6: Pseudouridine synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	59.7318913336
+UniRef50_B9DIP6: Pseudouridine synthase|g__Staphylococcus.s__Staphylococcus_aureus	38.0869451698
+UniRef50_G7ZPE9: LPXTG surface protein	97.7798110397
+UniRef50_G7ZPE9: LPXTG surface protein|g__Staphylococcus.s__Staphylococcus_aureus	97.7798110397
+UniRef50_D5BS21: Surface presentation of antigens (SPOA) protein	97.7417788531
+UniRef50_D5BS21: Surface presentation of antigens (SPOA) protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	97.7417788531
+UniRef50_D3QEQ6: Para-aminobenzoate synthase, amidotransferase component PabAb	97.6850978980
+UniRef50_D3QEQ6: Para-aminobenzoate synthase, amidotransferase component PabAb|g__Staphylococcus.s__Staphylococcus_aureus	97.6850978980
+UniRef50_A6QF95	97.6503692052
+UniRef50_A6QF95|g__Staphylococcus.s__Staphylococcus_aureus	97.6503692052
+UniRef50_Q5HL38	97.5638736439
+UniRef50_Q5HL38|g__Staphylococcus.s__Staphylococcus_epidermidis	97.5638736439
+UniRef50_B1M8V2: ABC nitrate/sulfonate/bicarbonate transporter family, periplasmic substrate-binding protein	97.5602960003
+UniRef50_B1M8V2: ABC nitrate/sulfonate/bicarbonate transporter family, periplasmic substrate-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	97.5602960003
+UniRef50_D9RHP8: Enterotoxin family protein	97.5482634851
+UniRef50_D9RHP8: Enterotoxin family protein|g__Staphylococcus.s__Staphylococcus_aureus	97.5482634851
+UniRef50_Q99TF2: Acetate kinase	97.5130290524
+UniRef50_Q99TF2: Acetate kinase|g__Staphylococcus.s__Staphylococcus_aureus	97.5130290524
+UniRef50_Q3J231	97.4693340748
+UniRef50_Q3J231|g__Rhodobacter.s__Rhodobacter_sphaeroides	95.9213464587
+UniRef50_Q3J231|unclassified	1.5479876161
+UniRef50_Q89BK7: Phosphoenolpyruvate carboxykinase [ATP]	97.4596770675
+UniRef50_Q89BK7: Phosphoenolpyruvate carboxykinase [ATP]|g__Staphylococcus.s__Staphylococcus_aureus	96.8856127784
+UniRef50_Q89BK7: Phosphoenolpyruvate carboxykinase [ATP]|unclassified	0.5740642891
+UniRef50_S5S5I1: Alcohol dehydrogenase iron-type protein	97.4395581816
+UniRef50_S5S5I1: Alcohol dehydrogenase iron-type protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	97.4395581816
+UniRef50_D6T8U6	97.3277517083
+UniRef50_D6T8U6|g__Staphylococcus.s__Staphylococcus_aureus	92.0344949323
+UniRef50_D6T8U6|unclassified	5.2932567760
+UniRef50_B9KN35: Tyrosine recombinase	97.2692075520
+UniRef50_B9KN35: Tyrosine recombinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	97.2692075520
+UniRef50_P37478: Transcriptional regulatory protein YycF	97.2659175719
+UniRef50_P37478: Transcriptional regulatory protein YycF|g__Staphylococcus.s__Staphylococcus_epidermidis	97.2659175719
+UniRef50_Q3J615	97.1587488197
+UniRef50_Q3J615|g__Rhodobacter.s__Rhodobacter_sphaeroides	97.1587488197
+UniRef50_Q2G222: N-acetylmuramoyl-L-alanine amidase domain-containing protein SAOUHSC_02979	97.1527496039
+UniRef50_Q2G222: N-acetylmuramoyl-L-alanine amidase domain-containing protein SAOUHSC_02979|g__Staphylococcus.s__Staphylococcus_aureus	97.1527496039
+UniRef50_H0B2B9	97.1138420870
+UniRef50_H0B2B9|g__Staphylococcus.s__Staphylococcus_aureus	97.1138420870
+UniRef50_E1UN96: Acetoin utilization protein AcuA	97.1129621321
+UniRef50_E1UN96: Acetoin utilization protein AcuA|g__Staphylococcus.s__Staphylococcus_aureus	97.1129621321
+UniRef50_A7X0T7	97.0799251225
+UniRef50_A7X0T7|g__Staphylococcus.s__Staphylococcus_aureus	51.4889093240
+UniRef50_A7X0T7|g__Staphylococcus.s__Staphylococcus_epidermidis	45.5910157985
+UniRef50_Q2FHR7: Carbamate kinase 1	97.0286975076
+UniRef50_Q2FHR7: Carbamate kinase 1|g__Staphylococcus.s__Staphylococcus_aureus	96.8311245155
+UniRef50_Q2FHR7: Carbamate kinase 1|unclassified	0.1975729921
+UniRef50_C5N256: Bacteriocin, lactococcin 972 family	96.9189509096
+UniRef50_C5N256: Bacteriocin, lactococcin 972 family|g__Staphylococcus.s__Staphylococcus_aureus	91.6383959533
+UniRef50_C5N256: Bacteriocin, lactococcin 972 family|unclassified	5.2805549563
+UniRef50_Q3IV77: TPR repeat containing Spindly family protein	96.9151311102
+UniRef50_Q3IV77: TPR repeat containing Spindly family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	96.9151311102
+UniRef50_P68799: Fibrinogen-binding protein	96.8995757052
+UniRef50_P68799: Fibrinogen-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	96.8995757052
+UniRef50_P0ACS3: Redox-sensitive transcriptional activator SoxR	96.7954038351
+UniRef50_P0ACS3: Redox-sensitive transcriptional activator SoxR|g__Escherichia.s__Escherichia_coli	96.7954038351
+UniRef50_G8RA51: Exotoxin 15	96.7296365383
+UniRef50_G8RA51: Exotoxin 15|g__Staphylococcus.s__Staphylococcus_aureus	96.7296365383
+UniRef50_M4YYR0: Phosphoglycerate mutase	96.7041402122
+UniRef50_M4YYR0: Phosphoglycerate mutase|g__Streptococcus.s__Streptococcus_mutans	92.3266008860
+UniRef50_M4YYR0: Phosphoglycerate mutase|g__Streptococcus.s__Streptococcus_agalactiae	4.3775393262
+UniRef50_A5IGK7: L-threonine 3-dehydrogenase	96.6577799533
+UniRef50_A5IGK7: L-threonine 3-dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	78.1703769375
+UniRef50_A5IGK7: L-threonine 3-dehydrogenase|g__Escherichia.s__Escherichia_coli	16.9128799969
+UniRef50_A5IGK7: L-threonine 3-dehydrogenase|g__Deinococcus.s__Deinococcus_radiodurans	1.1834319527
+UniRef50_A5IGK7: L-threonine 3-dehydrogenase|unclassified	0.3910910663
+UniRef50_T1YCF9	96.6424517493
+UniRef50_T1YCF9|g__Staphylococcus.s__Staphylococcus_aureus	96.6424517493
+UniRef50_C7ZTK0	96.6401092765
+UniRef50_C7ZTK0|g__Staphylococcus.s__Staphylococcus_aureus	96.6401092765
+UniRef50_Q5HM43: Alcohol dehydrogenase, zinc-containing	96.6207677646
+UniRef50_Q5HM43: Alcohol dehydrogenase, zinc-containing|g__Staphylococcus.s__Staphylococcus_epidermidis	96.6207677646
+UniRef50_G8AWA2: ATPase-like protein	96.5710360007
+UniRef50_G8AWA2: ATPase-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	96.1543774090
+UniRef50_G8AWA2: ATPase-like protein|unclassified	0.4166585917
+UniRef50_Q4L8N9: Multidrug export protein MepA	96.5671342088
+UniRef50_Q4L8N9: Multidrug export protein MepA|g__Staphylococcus.s__Staphylococcus_aureus	96.5671342088
+UniRef50_Q6GI89: Tryptophan--tRNA ligase	96.5449929026
+UniRef50_Q6GI89: Tryptophan--tRNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	96.5449929026
+UniRef50_B1K1C0: Recombinase	96.5058063489
+UniRef50_B1K1C0: Recombinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	96.5058063489
+UniRef50_P51007: Transcriptional activator protein FnrL	96.4660898736
+UniRef50_P51007: Transcriptional activator protein FnrL|g__Rhodobacter.s__Rhodobacter_sphaeroides	96.4660898736
+UniRef50_C5N353	96.4095964632
+UniRef50_C5N353|g__Staphylococcus.s__Staphylococcus_aureus	95.0257641940
+UniRef50_C5N353|unclassified	1.3838322692
+UniRef50_Q3J1R2: Alpha-keto acid-binding periplasmic protein TakP	96.4068166882
+UniRef50_Q3J1R2: Alpha-keto acid-binding periplasmic protein TakP|g__Rhodobacter.s__Rhodobacter_sphaeroides	96.4068166882
+UniRef50_D7G5T9: ABC transporter ATP-binding protein	96.4051869052
+UniRef50_D7G5T9: ABC transporter ATP-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	96.4051869052
+UniRef50_A3PLB3	96.3616131292
+UniRef50_A3PLB3|g__Rhodobacter.s__Rhodobacter_sphaeroides	94.9649124769
+UniRef50_A3PLB3|unclassified	1.3967006523
+UniRef50_A6QDY3	96.3296758463
+UniRef50_A6QDY3|g__Staphylococcus.s__Staphylococcus_aureus	96.3296758463
+UniRef50_Q49YT7: Ferritin	96.3237475996
+UniRef50_Q49YT7: Ferritin|g__Staphylococcus.s__Staphylococcus_epidermidis	96.3237475996
+UniRef50_Q8CPT4: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 1	96.2982243554
+UniRef50_Q8CPT4: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 1|g__Staphylococcus.s__Staphylococcus_epidermidis	92.8596357776
+UniRef50_Q8CPT4: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 1|unclassified	3.4385885778
+UniRef50_A3PP96: TonB-dependent siderophore receptor	96.2770620574
+UniRef50_A3PP96: TonB-dependent siderophore receptor|g__Rhodobacter.s__Rhodobacter_sphaeroides	96.2770620574
+UniRef50_I0DAK7: UDP-glucose/GDP-mannose dehydrogenase family protein	96.2304981423
+UniRef50_I0DAK7: UDP-glucose/GDP-mannose dehydrogenase family protein|g__Staphylococcus.s__Staphylococcus_aureus	96.2304981423
+UniRef50_O05267: NADH dehydrogenase-like protein YumB	96.1935676594
+UniRef50_O05267: NADH dehydrogenase-like protein YumB|g__Staphylococcus.s__Staphylococcus_aureus	96.1935676594
+UniRef50_F0P387: Signal peptidase I	96.1748960827
+UniRef50_F0P387: Signal peptidase I|g__Staphylococcus.s__Staphylococcus_epidermidis	96.1748960827
+UniRef50_B4RGD5: Patch repair protein	96.1739076165
+UniRef50_B4RGD5: Patch repair protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	96.1739076165
+UniRef50_Q3IVS4	96.1537929271
+UniRef50_Q3IVS4|g__Rhodobacter.s__Rhodobacter_sphaeroides	93.9011817448
+UniRef50_Q3IVS4|unclassified	2.2526111824
+UniRef50_P33770: Coproporphyrinogen-III oxidase, anaerobic 1	96.1225116227
+UniRef50_P33770: Coproporphyrinogen-III oxidase, anaerobic 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	95.8573538197
+UniRef50_P33770: Coproporphyrinogen-III oxidase, anaerobic 1|unclassified	0.2651578029
+UniRef50_B9KR17: CrpK, Fnr-type transcriptional regulator	96.0988419219
+UniRef50_B9KR17: CrpK, Fnr-type transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	96.0988419219
+UniRef50_Q4L9U1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	96.0755626147
+UniRef50_Q4L9U1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	96.0755626147
+UniRef50_Q5HH87: Regulatory protein Spx	96.0640878405
+UniRef50_Q5HH87: Regulatory protein Spx|g__Staphylococcus.s__Staphylococcus_epidermidis	59.6370762099
+UniRef50_Q5HH87: Regulatory protein Spx|g__Staphylococcus.s__Staphylococcus_aureus	24.4269136845
+UniRef50_Q5HH87: Regulatory protein Spx|g__Streptococcus.s__Streptococcus_mutans	12.0000979462
+UniRef50_Q1GKH0: AMP-dependent synthetase and ligase	96.0628158233
+UniRef50_Q1GKH0: AMP-dependent synthetase and ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	96.0628158233
+UniRef50_I0C5E5	96.0446859820
+UniRef50_I0C5E5|g__Staphylococcus.s__Staphylococcus_aureus	96.0446859820
+UniRef50_A7ZJI0: Tail fiber assembly protein	95.9406409265
+UniRef50_A7ZJI0: Tail fiber assembly protein|g__Escherichia.s__Escherichia_coli	95.9406409265
+UniRef50_K2HP40: Protein translocase subunit SecA	95.9327736156
+UniRef50_K2HP40: Protein translocase subunit SecA|g__Rhodobacter.s__Rhodobacter_sphaeroides	95.9327736156
+UniRef50_Q8DUK2	95.9306879825
+UniRef50_Q8DUK2|g__Streptococcus.s__Streptococcus_mutans	95.9306879825
+UniRef50_D5APQ0	95.8976280590
+UniRef50_D5APQ0|g__Rhodobacter.s__Rhodobacter_sphaeroides	83.6479355271
+UniRef50_D5APQ0|unclassified	12.2496925320
+UniRef50_Q5HN24: UPF0316 protein SERP1448	95.8821939033
+UniRef50_Q5HN24: UPF0316 protein SERP1448|g__Staphylococcus.s__Staphylococcus_epidermidis	95.8821939033
+UniRef50_Q2G4L5: 20S proteasome, A and B subunits	95.8789218339
+UniRef50_Q2G4L5: 20S proteasome, A and B subunits|g__Rhodobacter.s__Rhodobacter_sphaeroides	95.8789218339
+UniRef50_Q8CRZ7	95.8685996600
+UniRef50_Q8CRZ7|g__Staphylococcus.s__Staphylococcus_epidermidis	95.8685996600
+UniRef50_Q2FHD9: Glycerol kinase	95.8631934056
+UniRef50_Q2FHD9: Glycerol kinase|g__Staphylococcus.s__Staphylococcus_aureus	82.7306829567
+UniRef50_Q2FHD9: Glycerol kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.1153488509
+UniRef50_Q2FHD9: Glycerol kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7189072610
+UniRef50_Q2FHD9: Glycerol kinase|unclassified	0.2982543369
+UniRef50_R9YQ76: Thioesterase superfamily protein	95.8480972256
+UniRef50_R9YQ76: Thioesterase superfamily protein|g__Staphylococcus.s__Staphylococcus_aureus	95.8480972256
+UniRef50_Q3IZ91: Crotonyl-CoA reductase	95.8384558891
+UniRef50_Q3IZ91: Crotonyl-CoA reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	87.8792347347
+UniRef50_Q3IZ91: Crotonyl-CoA reductase|unclassified	7.9592211545
+UniRef50_Q8CRY9	95.8107874105
+UniRef50_Q8CRY9|g__Staphylococcus.s__Staphylococcus_epidermidis	95.8107874105
+UniRef50_UPI00037472A8: hypothetical protein	95.7677128296
+UniRef50_UPI00037472A8: hypothetical protein|g__Staphylococcus.s__Staphylococcus_epidermidis	95.1715128146
+UniRef50_UPI00037472A8: hypothetical protein|unclassified	0.5962000150
+UniRef50_D3QF29: ABC transporter (Membrane spanning protein)	95.7541502541
+UniRef50_D3QF29: ABC transporter (Membrane spanning protein)|g__Staphylococcus.s__Staphylococcus_epidermidis	95.7541502541
+UniRef50_Q6G9Y4: Phosphate acyltransferase	95.6895613116
+UniRef50_Q6G9Y4: Phosphate acyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	95.0092785866
+UniRef50_Q6G9Y4: Phosphate acyltransferase|unclassified	0.6802827250
+UniRef50_Q5HF61: Probable thiol peroxidase	95.6816826006
+UniRef50_Q5HF61: Probable thiol peroxidase|g__Staphylococcus.s__Staphylococcus_aureus	95.6816826006
+UniRef50_B6IYF9: NAD dependent epimerase	95.6555598922
+UniRef50_B6IYF9: NAD dependent epimerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	95.6555598922
+UniRef50_Q1GIE6: Binding-protein-dependent transport systems inner membrane component	95.6505972747
+UniRef50_Q1GIE6: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	95.6505972747
+UniRef50_B6YWH0: Glyoxylate reductase	95.6234658680
+UniRef50_B6YWH0: Glyoxylate reductase|g__Staphylococcus.s__Staphylococcus_aureus	95.6234658680
+UniRef50_J0F9K3	95.6127138729
+UniRef50_J0F9K3|g__Staphylococcus.s__Staphylococcus_epidermidis	93.0675015616
+UniRef50_J0F9K3|unclassified	2.5452123113
+UniRef50_F7Z665: D-3-phosphoglycerate dehydrogenase	95.5908586522
+UniRef50_F7Z665: D-3-phosphoglycerate dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	95.5908586522
+UniRef50_P26396: Glucose-1-phosphate cytidylyltransferase	95.5880235730
+UniRef50_P26396: Glucose-1-phosphate cytidylyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	93.4912623925
+UniRef50_P26396: Glucose-1-phosphate cytidylyltransferase|unclassified	2.0967611805
+UniRef50_Q8NWC6	95.4753009548
+UniRef50_Q8NWC6|g__Staphylococcus.s__Staphylococcus_aureus	95.4753009548
+UniRef50_A6QIH4	95.4225908471
+UniRef50_A6QIH4|g__Staphylococcus.s__Staphylococcus_aureus	95.4225908471
+UniRef50_Q5HFU7: 30S ribosomal protein S1	95.4133980830
+UniRef50_Q5HFU7: 30S ribosomal protein S1|g__Staphylococcus.s__Staphylococcus_aureus	47.7100723634
+UniRef50_Q5HFU7: 30S ribosomal protein S1|g__Staphylococcus.s__Staphylococcus_epidermidis	47.7033257196
+UniRef50_U5UIZ0: 2-oxoisovalerate dehydrogenase E1 component alpha subunit	95.4051616825
+UniRef50_U5UIZ0: 2-oxoisovalerate dehydrogenase E1 component alpha subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	95.4051616825
+UniRef50_P07001: NAD(P) transhydrogenase subunit alpha	95.3949204395
+UniRef50_P07001: NAD(P) transhydrogenase subunit alpha|g__Rhodobacter.s__Rhodobacter_sphaeroides	62.0568868342
+UniRef50_P07001: NAD(P) transhydrogenase subunit alpha|g__Escherichia.s__Escherichia_coli	32.6287808559
+UniRef50_P07001: NAD(P) transhydrogenase subunit alpha|g__Neisseria.s__Neisseria_meningitidis	0.6631299735
+UniRef50_P07001: NAD(P) transhydrogenase subunit alpha|unclassified	0.0461227758
+UniRef50_P52878: Phosphoserine aminotransferase	95.3627017719
+UniRef50_P52878: Phosphoserine aminotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	94.9770889970
+UniRef50_P52878: Phosphoserine aminotransferase|unclassified	0.3856127749
+UniRef50_C7ZUX9: Exported protein	95.2883250194
+UniRef50_C7ZUX9: Exported protein|g__Staphylococcus.s__Staphylococcus_aureus	95.2883250194
+UniRef50_G8V268: Short chain dehydrogenase family protein	95.2703218233
+UniRef50_G8V268: Short chain dehydrogenase family protein|g__Staphylococcus.s__Staphylococcus_aureus	95.2703218233
+UniRef50_C6STB3	95.2544994278
+UniRef50_C6STB3|g__Streptococcus.s__Streptococcus_mutans	95.2544994278
+UniRef50_Q8CPS7: Transcription factor	95.2478397210
+UniRef50_Q8CPS7: Transcription factor|g__Staphylococcus.s__Staphylococcus_epidermidis	95.2478397210
+UniRef50_F8IRL8: Phosphate starvation-inducible protein PhoH	95.1437730932
+UniRef50_F8IRL8: Phosphate starvation-inducible protein PhoH|g__Staphylococcus.s__Staphylococcus_aureus	95.1437730932
+UniRef50_B9KRV4: Outer membrane protein	95.0518430515
+UniRef50_B9KRV4: Outer membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	95.0518430515
+UniRef50_K0PFX8: Group 1 glycosyl transferase	95.0344043491
+UniRef50_K0PFX8: Group 1 glycosyl transferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	95.0344043491
+UniRef50_G7ZLK6: Galactosyl transferase	95.0309550173
+UniRef50_G7ZLK6: Galactosyl transferase|g__Staphylococcus.s__Staphylococcus_aureus	95.0309550173
+UniRef50_A4WPB6: Orotate phosphoribosyltransferase	94.9968317605
+UniRef50_A4WPB6: Orotate phosphoribosyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	93.2991866171
+UniRef50_A4WPB6: Orotate phosphoribosyltransferase|unclassified	1.6976451434
+UniRef50_Q3IW03: Carbohydrate ABC transporter membrane protein 2, CUT1 family	94.9886045647
+UniRef50_Q3IW03: Carbohydrate ABC transporter membrane protein 2, CUT1 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	94.9886045647
+UniRef50_Q6GCR4: FMN-dependent NADH-azoreductase	94.9880470043
+UniRef50_Q6GCR4: FMN-dependent NADH-azoreductase|g__Staphylococcus.s__Staphylococcus_aureus	94.9880470043
+UniRef50_Q89L00: Serine--tRNA ligase	94.9853873062
+UniRef50_Q89L00: Serine--tRNA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	94.9853873062
+UniRef50_Q45592: Probable peptide export permease protein YydJ	94.9850005879
+UniRef50_Q45592: Probable peptide export permease protein YydJ|g__Staphylococcus.s__Staphylococcus_aureus	94.9850005879
+UniRef50_B9KM23: Trk system potassium uptake protein	94.9069887083
+UniRef50_B9KM23: Trk system potassium uptake protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	94.9069887083
+UniRef50_B9KRF9: Electron transport protein SCO1/SenC	94.8621197795
+UniRef50_B9KRF9: Electron transport protein SCO1/SenC|g__Rhodobacter.s__Rhodobacter_sphaeroides	92.4718556785
+UniRef50_B9KRF9: Electron transport protein SCO1/SenC|unclassified	2.3902641010
+UniRef50_A5IUJ4: DNA mismatch repair protein MutS domain protein	94.8602248192
+UniRef50_A5IUJ4: DNA mismatch repair protein MutS domain protein|g__Staphylococcus.s__Staphylococcus_aureus	94.8602248192
+UniRef50_I0C7R8: Short chain dehydrogenase	94.8469002094
+UniRef50_I0C7R8: Short chain dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	94.8469002094
+UniRef50_Q6GER8: Mannitol-1-phosphate 5-dehydrogenase	94.8069166693
+UniRef50_Q6GER8: Mannitol-1-phosphate 5-dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	93.5985613746
+UniRef50_Q6GER8: Mannitol-1-phosphate 5-dehydrogenase|unclassified	1.2083552947
+UniRef50_B5R9D9: Probable L-ascorbate-6-phosphate lactonase UlaG	94.8000750628
+UniRef50_B5R9D9: Probable L-ascorbate-6-phosphate lactonase UlaG|g__Streptococcus.s__Streptococcus_mutans	69.7034843511
+UniRef50_B5R9D9: Probable L-ascorbate-6-phosphate lactonase UlaG|g__Escherichia.s__Escherichia_coli	25.0965907117
+UniRef50_Q2RP22: Dual-specificity RNA methyltransferase RlmN	94.7564263783
+UniRef50_Q2RP22: Dual-specificity RNA methyltransferase RlmN|g__Rhodobacter.s__Rhodobacter_sphaeroides	94.5032151444
+UniRef50_Q2RP22: Dual-specificity RNA methyltransferase RlmN|unclassified	0.2532112339
+UniRef50_Q4WWN8: Sulfate adenylyltransferase	94.7509518360
+UniRef50_Q4WWN8: Sulfate adenylyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	93.6778322855
+UniRef50_Q4WWN8: Sulfate adenylyltransferase|unclassified	1.0731195506
+UniRef50_I3UFE6: Saccharopine dehydrogenase	94.7230883735
+UniRef50_I3UFE6: Saccharopine dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	94.7230883735
+UniRef50_O67876: Delta-aminolevulinic acid dehydratase	94.6961859526
+UniRef50_O67876: Delta-aminolevulinic acid dehydratase|g__Staphylococcus.s__Staphylococcus_epidermidis	93.2668424458
+UniRef50_O67876: Delta-aminolevulinic acid dehydratase|unclassified	1.4293435067
+UniRef50_B9DJF9: Phage integrase	94.6784002188
+UniRef50_B9DJF9: Phage integrase|g__Staphylococcus.s__Staphylococcus_aureus	94.6784002188
+UniRef50_T1Y7R5: Exotoxin	94.6646346865
+UniRef50_T1Y7R5: Exotoxin|g__Staphylococcus.s__Staphylococcus_aureus	94.6646346865
+UniRef50_Q30UY1	94.6514951989
+UniRef50_Q30UY1|g__Rhodobacter.s__Rhodobacter_sphaeroides	94.4901008420
+UniRef50_Q30UY1|unclassified	0.1613943568
+UniRef50_D3QG17: Transporter, LysE family	94.6344126085
+UniRef50_D3QG17: Transporter, LysE family|g__Staphylococcus.s__Staphylococcus_aureus	67.5893208131
+UniRef50_D3QG17: Transporter, LysE family|g__Staphylococcus.s__Staphylococcus_epidermidis	27.0450917953
+UniRef50_Q0AK81: Ferric uptake regulator, Fur family	94.6285625008
+UniRef50_Q0AK81: Ferric uptake regulator, Fur family|g__Rhodobacter.s__Rhodobacter_sphaeroides	94.6285625008
+UniRef50_Z6NK79: ABC transporter, permease	94.6108025986
+UniRef50_Z6NK79: ABC transporter, permease|g__Staphylococcus.s__Staphylococcus_aureus	94.3485028539
+UniRef50_Z6NK79: ABC transporter, permease|unclassified	0.2622997447
+UniRef50_Q57SA8: 7-cyano-7-deazaguanine synthase	94.6076762894
+UniRef50_Q57SA8: 7-cyano-7-deazaguanine synthase|g__Escherichia.s__Escherichia_coli	48.3981352896
+UniRef50_Q57SA8: 7-cyano-7-deazaguanine synthase|g__Streptococcus.s__Streptococcus_mutans	45.7294734190
+UniRef50_Q57SA8: 7-cyano-7-deazaguanine synthase|unclassified	0.4800675808
+UniRef50_Q8CPF5: Competence-damage inducible protein cinA	94.5903289551
+UniRef50_Q8CPF5: Competence-damage inducible protein cinA|g__Staphylococcus.s__Staphylococcus_epidermidis	94.5903289551
+UniRef50_I0C5I2: EcsB	94.5843288850
+UniRef50_I0C5I2: EcsB|g__Staphylococcus.s__Staphylococcus_aureus	94.5843288850
+UniRef50_E2YZE2	94.5808240461
+UniRef50_E2YZE2|unclassified	94.5808240461
+UniRef50_P29930: Cob(I)yrinic acid a,c-diamide adenosyltransferase	94.5757124696
+UniRef50_P29930: Cob(I)yrinic acid a,c-diamide adenosyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.5478262107
+UniRef50_P29930: Cob(I)yrinic acid a,c-diamide adenosyltransferase|unclassified	4.0278862589
+UniRef50_Q7A363: Accessory Sec system protein translocase subunit SecY2	94.5074644293
+UniRef50_Q7A363: Accessory Sec system protein translocase subunit SecY2|g__Staphylococcus.s__Staphylococcus_aureus	94.5074644293
+UniRef50_O66113: Pyruvate dehydrogenase E1 component subunit beta	94.4762430992
+UniRef50_O66113: Pyruvate dehydrogenase E1 component subunit beta|g__Rhodobacter.s__Rhodobacter_sphaeroides	94.4762430992
+UniRef50_Q8CU34: ABC transporter (ATP-binding protein)	94.4578569945
+UniRef50_Q8CU34: ABC transporter (ATP-binding protein)|g__Staphylococcus.s__Staphylococcus_epidermidis	94.4578569945
+UniRef50_P77656	94.4510740197
+UniRef50_P77656|g__Escherichia.s__Escherichia_coli	94.4510740197
+UniRef50_T1Y784: CDP-glycerol glycerophosphotransferase	94.3064825080
+UniRef50_T1Y784: CDP-glycerol glycerophosphotransferase|g__Staphylococcus.s__Staphylococcus_aureus	94.3064825080
+UniRef50_Q49UP4: UPF0753 protein SSP2379	94.2719370151
+UniRef50_Q49UP4: UPF0753 protein SSP2379|g__Staphylococcus.s__Staphylococcus_epidermidis	94.1943765579
+UniRef50_Q49UP4: UPF0753 protein SSP2379|unclassified	0.0775604571
+UniRef50_Q65GR3: Histidine--tRNA ligase	94.2332838658
+UniRef50_Q65GR3: Histidine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_aureus	94.0504515479
+UniRef50_Q65GR3: Histidine--tRNA ligase|unclassified	0.1828323179
+UniRef50_C0H3V2: Mannitol-specific phosphotransferase enzyme IIA component	94.1732349048
+UniRef50_C0H3V2: Mannitol-specific phosphotransferase enzyme IIA component|g__Streptococcus.s__Streptococcus_mutans	94.1732349048
+UniRef50_A7X0A2	94.1430873440
+UniRef50_A7X0A2|g__Staphylococcus.s__Staphylococcus_aureus	94.1430873440
+UniRef50_Q5HPH6: Prephenate dehydrogenase	94.1390668184
+UniRef50_Q5HPH6: Prephenate dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	93.9733901128
+UniRef50_Q5HPH6: Prephenate dehydrogenase|unclassified	0.1656767056
+UniRef50_Q5HM71: Lytic regulatory protein, putative	94.1236212593
+UniRef50_Q5HM71: Lytic regulatory protein, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	94.1236212593
+UniRef50_K8FGY8: DUF2188 family protein	94.0626317516
+UniRef50_K8FGY8: DUF2188 family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	94.0626317516
+UniRef50_P67109: UPF0042 nucleotide-binding protein SA0720	93.9856355916
+UniRef50_P67109: UPF0042 nucleotide-binding protein SA0720|g__Staphylococcus.s__Staphylococcus_aureus	93.9856355916
+UniRef50_U5NRL0	93.9743828252
+UniRef50_U5NRL0|unclassified	93.9743828252
+UniRef50_D7A1Q0: Arginine/ornithine antiporter	93.8847704434
+UniRef50_D7A1Q0: Arginine/ornithine antiporter|g__Staphylococcus.s__Staphylococcus_aureus	53.6808500517
+UniRef50_D7A1Q0: Arginine/ornithine antiporter|g__Staphylococcus.s__Staphylococcus_epidermidis	40.2039203917
+UniRef50_T1YBW3: ABC transporter ATP-binding and permease protein	93.8711693557
+UniRef50_T1YBW3: ABC transporter ATP-binding and permease protein|g__Staphylococcus.s__Staphylococcus_aureus	93.8711693557
+UniRef50_Q4L8U4: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	93.8618523530
+UniRef50_Q4L8U4: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	93.8618523530
+UniRef50_X5E2U4	93.8493287638
+UniRef50_X5E2U4|g__Staphylococcus.s__Staphylococcus_aureus	93.8493287638
+UniRef50_I0C7C9: dTDP-glucose 4,6-dehydratase	93.8151667251
+UniRef50_I0C7C9: dTDP-glucose 4,6-dehydratase|g__Staphylococcus.s__Staphylococcus_aureus	93.8151667251
+UniRef50_D3QFZ0: Penicillin amidase V	93.7804550386
+UniRef50_D3QFZ0: Penicillin amidase V|g__Staphylococcus.s__Staphylococcus_epidermidis	93.7804550386
+UniRef50_Q5HKN0: UPF0312 protein SERP2314	93.7468964153
+UniRef50_Q5HKN0: UPF0312 protein SERP2314|g__Staphylococcus.s__Staphylococcus_epidermidis	93.7468964153
+UniRef50_T0UP49	93.7458981395
+UniRef50_T0UP49|g__Streptococcus.s__Streptococcus_mutans	93.7458981395
+UniRef50_Q28MM7: Phosphorylase	93.7119495937
+UniRef50_Q28MM7: Phosphorylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	93.7119495937
+UniRef50_Q5HNU8: 5'-methylthioadenosine/S-adenosylhomocysteine nucleosidase	93.6742653336
+UniRef50_Q5HNU8: 5'-methylthioadenosine/S-adenosylhomocysteine nucleosidase|g__Staphylococcus.s__Staphylococcus_epidermidis	93.6742653336
+UniRef50_Q8CSF5	93.6716828635
+UniRef50_Q8CSF5|g__Staphylococcus.s__Staphylococcus_aureus	68.7171154788
+UniRef50_Q8CSF5|g__Staphylococcus.s__Staphylococcus_epidermidis	24.9545673847
+UniRef50_P0AGL5: Ribosome association toxin RatA	93.6646519328
+UniRef50_P0AGL5: Ribosome association toxin RatA|g__Escherichia.s__Escherichia_coli	93.6646519328
+UniRef50_A5IW55: Transcriptional regulator, MarR family	93.6521889887
+UniRef50_A5IW55: Transcriptional regulator, MarR family|g__Staphylococcus.s__Staphylococcus_epidermidis	60.8401621884
+UniRef50_A5IW55: Transcriptional regulator, MarR family|g__Staphylococcus.s__Staphylococcus_aureus	32.8120268002
+UniRef50_Q5HRH0: Putative proline/betaine transporter	93.6412217986
+UniRef50_Q5HRH0: Putative proline/betaine transporter|g__Staphylococcus.s__Staphylococcus_aureus	93.6412217986
+UniRef50_A7WYP0: Ribosomal RNA small subunit methyltransferase A	93.6344290828
+UniRef50_A7WYP0: Ribosomal RNA small subunit methyltransferase A|g__Staphylococcus.s__Staphylococcus_aureus	93.3515825295
+UniRef50_A7WYP0: Ribosomal RNA small subunit methyltransferase A|unclassified	0.2828465533
+UniRef50_O33405: Uptake hydrogenase small subunit	93.5934083753
+UniRef50_O33405: Uptake hydrogenase small subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	91.2567374449
+UniRef50_O33405: Uptake hydrogenase small subunit|unclassified	2.3366709304
+UniRef50_A8YNI5: Microcystis aeruginosa PCC 7806 genome sequencing data, contig C328	93.5866388630
+UniRef50_A8YNI5: Microcystis aeruginosa PCC 7806 genome sequencing data, contig C328|unclassified	93.5866388630
+UniRef50_Q6GIN0: Prolipoprotein diacylglyceryl transferase	93.5770090388
+UniRef50_Q6GIN0: Prolipoprotein diacylglyceryl transferase|g__Staphylococcus.s__Staphylococcus_aureus	66.8036857760
+UniRef50_Q6GIN0: Prolipoprotein diacylglyceryl transferase|g__Streptococcus.s__Streptococcus_mutans	26.4145022199
+UniRef50_Q6GIN0: Prolipoprotein diacylglyceryl transferase|unclassified	0.3588210430
+UniRef50_A8AQN0	93.5647398268
+UniRef50_A8AQN0|g__Escherichia.s__Escherichia_coli	91.6380343711
+UniRef50_A8AQN0|unclassified	1.9267054557
+UniRef50_Q6GGZ6: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex	93.5585627378
+UniRef50_Q6GGZ6: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|g__Staphylococcus.s__Staphylococcus_aureus	93.5072522988
+UniRef50_Q6GGZ6: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|unclassified	0.0513104390
+UniRef50_Q8CR74	93.5246718716
+UniRef50_Q8CR74|g__Staphylococcus.s__Staphylococcus_epidermidis	93.5246718716
+UniRef50_F8KHK9: Response regulator protein	93.5029251626
+UniRef50_F8KHK9: Response regulator protein|g__Staphylococcus.s__Staphylococcus_aureus	93.5029251626
+UniRef50_Q3J228: Putative endonuclease	93.4794514541
+UniRef50_Q3J228: Putative endonuclease|g__Rhodobacter.s__Rhodobacter_sphaeroides	93.4794514541
+UniRef50_Q5HRW9	93.4728182423
+UniRef50_Q5HRW9|g__Staphylococcus.s__Staphylococcus_epidermidis	93.4728182423
+UniRef50_B9KTL9	93.4653994470
+UniRef50_B9KTL9|g__Rhodobacter.s__Rhodobacter_sphaeroides	71.2156487554
+UniRef50_B9KTL9|unclassified	22.2497506916
+UniRef50_A3PNN6: Polysaccharide biosynthesis protein CapD	93.4643102606
+UniRef50_A3PNN6: Polysaccharide biosynthesis protein CapD|g__Rhodobacter.s__Rhodobacter_sphaeroides	93.4643102606
+UniRef50_G8RE63: ABC transporter ATP-binding protein	93.4281234829
+UniRef50_G8RE63: ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	93.4281234829
+UniRef50_Q3J3M8: Alpha-1,4-glucan:maltose-1-phosphate maltosyltransferase	93.4280180979
+UniRef50_Q3J3M8: Alpha-1,4-glucan:maltose-1-phosphate maltosyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	93.0931467745
+UniRef50_Q3J3M8: Alpha-1,4-glucan:maltose-1-phosphate maltosyltransferase|unclassified	0.3348713233
+UniRef50_Q5HL47	93.4130193730
+UniRef50_Q5HL47|g__Staphylococcus.s__Staphylococcus_epidermidis	93.3721742114
+UniRef50_Q5HL47|unclassified	0.0408451617
+UniRef50_Q9RFD3: Anaerobic magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase	93.3857764151
+UniRef50_Q9RFD3: Anaerobic magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase|g__Rhodobacter.s__Rhodobacter_sphaeroides	92.8399282099
+UniRef50_Q9RFD3: Anaerobic magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase|unclassified	0.5458482052
+UniRef50_A8LKL8: AFG1-family ATPase	93.3684181857
+UniRef50_A8LKL8: AFG1-family ATPase|g__Rhodobacter.s__Rhodobacter_sphaeroides	93.3684181857
+UniRef50_P92549: ATP synthase subunit alpha, mitochondrial	93.3601885077
+UniRef50_P92549: ATP synthase subunit alpha, mitochondrial|g__Rhodobacter.s__Rhodobacter_sphaeroides	78.2261517610
+UniRef50_P92549: ATP synthase subunit alpha, mitochondrial|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9059172280
+UniRef50_P92549: ATP synthase subunit alpha, mitochondrial|g__Neisseria.s__Neisseria_meningitidis	5.7918962147
+UniRef50_P92549: ATP synthase subunit alpha, mitochondrial|g__Acinetobacter.s__Acinetobacter_baumannii	1.4019057692
+UniRef50_P92549: ATP synthase subunit alpha, mitochondrial|unclassified	0.0343175348
+UniRef50_E8SGR6: PTS system, IIA component	93.3553845883
+UniRef50_E8SGR6: PTS system, IIA component|g__Staphylococcus.s__Staphylococcus_aureus	93.3553845883
+UniRef50_Q3J098: RhtB family transporter	93.3471702389
+UniRef50_Q3J098: RhtB family transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	93.3471702389
+UniRef50_Q8CSR0: ABC transporter (ATP-binding protein)	93.2741267226
+UniRef50_Q8CSR0: ABC transporter (ATP-binding protein)|g__Staphylococcus.s__Staphylococcus_epidermidis	93.2741267226
+UniRef50_A1BAM2: ABC polyamine transporter, periplasmic substrate-binding protein	93.2626064519
+UniRef50_A1BAM2: ABC polyamine transporter, periplasmic substrate-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	93.2626064519
+UniRef50_A6QIG0: GntR family regulatory protein	93.2383107090
+UniRef50_A6QIG0: GntR family regulatory protein|g__Staphylococcus.s__Staphylococcus_epidermidis	68.5004464228
+UniRef50_A6QIG0: GntR family regulatory protein|g__Staphylococcus.s__Staphylococcus_aureus	24.7378642862
+UniRef50_Q819W8: Ribosome biogenesis GTPase A	93.1879124479
+UniRef50_Q819W8: Ribosome biogenesis GTPase A|g__Staphylococcus.s__Staphylococcus_aureus	93.1879124479
+UniRef50_Q5HNG2: tRNA (guanine-N(7)-)-methyltransferase	93.1849604035
+UniRef50_Q5HNG2: tRNA (guanine-N(7)-)-methyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	93.1849604035
+UniRef50_P76501	93.1840333512
+UniRef50_P76501|g__Escherichia.s__Escherichia_coli	93.1840333512
+UniRef50_D8HE77: Inosine-uridine preferring nucleoside hydrolase	93.1645532311
+UniRef50_D8HE77: Inosine-uridine preferring nucleoside hydrolase|g__Staphylococcus.s__Staphylococcus_aureus	93.1645532311
+UniRef50_Q9S469: L-ribulose-5-phosphate 4-epimerase	93.1613203879
+UniRef50_Q9S469: L-ribulose-5-phosphate 4-epimerase|g__Streptococcus.s__Streptococcus_mutans	81.0565948926
+UniRef50_Q9S469: L-ribulose-5-phosphate 4-epimerase|g__Streptococcus.s__Streptococcus_agalactiae	11.9110145230
+UniRef50_Q9S469: L-ribulose-5-phosphate 4-epimerase|unclassified	0.1937109723
+UniRef50_F4FMG8: Sulfite reductase flavoprotein alpha-component	93.1572100389
+UniRef50_F4FMG8: Sulfite reductase flavoprotein alpha-component|g__Staphylococcus.s__Staphylococcus_aureus	92.6848943244
+UniRef50_F4FMG8: Sulfite reductase flavoprotein alpha-component|unclassified	0.4723157146
+UniRef50_B9KRZ3	93.1114526050
+UniRef50_B9KRZ3|g__Rhodobacter.s__Rhodobacter_sphaeroides	92.8768129077
+UniRef50_B9KRZ3|unclassified	0.2346396972
+UniRef50_A4WSN3: Transcriptional regulator, TetR family	93.0353823354
+UniRef50_A4WSN3: Transcriptional regulator, TetR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	93.0353823354
+UniRef50_Q720A2: DNA polymerase III PolC-type	93.0228942141
+UniRef50_Q720A2: DNA polymerase III PolC-type|g__Staphylococcus.s__Staphylococcus_epidermidis	92.9317351328
+UniRef50_Q720A2: DNA polymerase III PolC-type|unclassified	0.0911590813
+UniRef50_P0AEQ0: Glycolate oxidase subunit GlcD	93.0170574723
+UniRef50_P0AEQ0: Glycolate oxidase subunit GlcD|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.0389390678
+UniRef50_P0AEQ0: Glycolate oxidase subunit GlcD|g__Escherichia.s__Escherichia_coli	31.6568886642
+UniRef50_P0AEQ0: Glycolate oxidase subunit GlcD|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3212297403
+UniRef50_B9DPC0: DNA mismatch repair protein MutL	93.0044894628
+UniRef50_B9DPC0: DNA mismatch repair protein MutL|g__Staphylococcus.s__Staphylococcus_epidermidis	93.0044894628
+UniRef50_B9DJK9: UPF0042 nucleotide-binding protein Sca_0414	92.9861546116
+UniRef50_B9DJK9: UPF0042 nucleotide-binding protein Sca_0414|g__Staphylococcus.s__Staphylococcus_epidermidis	92.9861546116
+UniRef50_B9AEN3	92.9590573796
+UniRef50_B9AEN3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	92.9590573796
+UniRef50_E8SJV4: Secretory antigen SsaA	92.9157691206
+UniRef50_E8SJV4: Secretory antigen SsaA|g__Staphylococcus.s__Staphylococcus_aureus	92.9157691206
+UniRef50_A3PIP1: Response regulator receiver protein	92.8612215538
+UniRef50_A3PIP1: Response regulator receiver protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	92.8612215538
+UniRef50_P26410: Hydrogenase nickel incorporation protein HypB	92.8576172263
+UniRef50_P26410: Hydrogenase nickel incorporation protein HypB|g__Rhodobacter.s__Rhodobacter_sphaeroides	92.8576172263
+UniRef50_Q4L8I4: PTS system, arbutin-like IIBC component	92.8235692443
+UniRef50_Q4L8I4: PTS system, arbutin-like IIBC component|g__Staphylococcus.s__Staphylococcus_epidermidis	92.8235692443
+UniRef50_Q8CR16	92.8211574506
+UniRef50_Q8CR16|g__Staphylococcus.s__Staphylococcus_epidermidis	92.8211574506
+UniRef50_Q5HJ89: Protein EssA	92.7896530666
+UniRef50_Q5HJ89: Protein EssA|g__Staphylococcus.s__Staphylococcus_aureus	92.7896530666
+UniRef50_A5UNC1	92.7882959451
+UniRef50_A5UNC1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	92.7882959451
+UniRef50_A8AKZ3	92.7655365858
+UniRef50_A8AKZ3|g__Escherichia.s__Escherichia_coli	92.7655365858
+UniRef50_E5QV38	92.6778134629
+UniRef50_E5QV38|g__Staphylococcus.s__Staphylococcus_aureus	51.5744245750
+UniRef50_E5QV38|g__Staphylococcus.s__Staphylococcus_epidermidis	41.1033888879
+UniRef50_A1R8R6: 30S ribosomal protein S11	92.5980383715
+UniRef50_A1R8R6: 30S ribosomal protein S11|g__Staphylococcus.s__Staphylococcus_aureus	65.5917753062
+UniRef50_A1R8R6: 30S ribosomal protein S11|g__Staphylococcus.s__Staphylococcus_epidermidis	16.2145332463
+UniRef50_A1R8R6: 30S ribosomal protein S11|g__Streptococcus.s__Streptococcus_mutans	10.7917298190
+UniRef50_D6SFU4	92.5817260244
+UniRef50_D6SFU4|g__Staphylococcus.s__Staphylococcus_aureus	92.1538358477
+UniRef50_D6SFU4|unclassified	0.4278901767
+UniRef50_P55910: L-lactate permease	92.5668553664
+UniRef50_P55910: L-lactate permease|g__Staphylococcus.s__Staphylococcus_aureus	92.5668553664
+UniRef50_Q5M3M6: NAD(P)H nitroreductase, putative	92.5476881389
+UniRef50_Q5M3M6: NAD(P)H nitroreductase, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	92.5476881389
+UniRef50_F8KLB6	92.5214202268
+UniRef50_F8KLB6|g__Staphylococcus.s__Staphylococcus_epidermidis	92.0985966195
+UniRef50_F8KLB6|unclassified	0.4228236073
+UniRef50_A3PNG9: Transferase hexapeptide repeat containing protein	92.4982336057
+UniRef50_A3PNG9: Transferase hexapeptide repeat containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	92.4982336057
+UniRef50_Q8CU45	92.4849474151
+UniRef50_Q8CU45|g__Staphylococcus.s__Staphylococcus_epidermidis	91.1244843251
+UniRef50_Q8CU45|unclassified	1.3604630899
+UniRef50_A8LHS0: Type II secretion system protein	92.4782600256
+UniRef50_A8LHS0: Type II secretion system protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	87.8149318103
+UniRef50_A8LHS0: Type II secretion system protein|unclassified	4.6633282153
+UniRef50_P39349: Putative phosphoethanolamine transferase YjgX	92.4530843440
+UniRef50_P39349: Putative phosphoethanolamine transferase YjgX|g__Escherichia.s__Escherichia_coli	92.4530843440
+UniRef50_G5EL93: Cassette chromosome recombinase A	92.4525472829
+UniRef50_G5EL93: Cassette chromosome recombinase A|g__Staphylococcus.s__Staphylococcus_aureus	52.0171086147
+UniRef50_G5EL93: Cassette chromosome recombinase A|g__Staphylococcus.s__Staphylococcus_epidermidis	40.4354386682
+UniRef50_Q4L565: Probable quinol oxidase subunit 2	92.4506270289
+UniRef50_Q4L565: Probable quinol oxidase subunit 2|g__Staphylococcus.s__Staphylococcus_aureus	91.4212580429
+UniRef50_Q4L565: Probable quinol oxidase subunit 2|unclassified	1.0293689860
+UniRef50_H2J1V2: ABC-type dipeptide/oligopeptide/nickel transport system, permease component	92.4396362940
+UniRef50_H2J1V2: ABC-type dipeptide/oligopeptide/nickel transport system, permease component|g__Rhodobacter.s__Rhodobacter_sphaeroides	92.4396362940
+UniRef50_T0JW92	92.3603692338
+UniRef50_T0JW92|g__Staphylococcus.s__Staphylococcus_epidermidis	92.3603692338
+UniRef50_Q2YUT2	92.3583643128
+UniRef50_Q2YUT2|g__Staphylococcus.s__Staphylococcus_aureus	92.3583643128
+UniRef50_I7EXB5: Transcriptional regulator, crp family	92.3528900773
+UniRef50_I7EXB5: Transcriptional regulator, crp family|g__Rhodobacter.s__Rhodobacter_sphaeroides	92.3528900773
+UniRef50_Q3J6K8: Transcriptional regulator AcuR	92.3411213468
+UniRef50_Q3J6K8: Transcriptional regulator AcuR|g__Rhodobacter.s__Rhodobacter_sphaeroides	92.3411213468
+UniRef50_R9YN62: TM2 domain protein	92.3237195804
+UniRef50_R9YN62: TM2 domain protein|g__Staphylococcus.s__Staphylococcus_aureus	83.5227749896
+UniRef50_R9YN62: TM2 domain protein|unclassified	8.8009445908
+UniRef50_Q8CN30: Thiazole synthase	92.3153776856
+UniRef50_Q8CN30: Thiazole synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	92.3153776856
+UniRef50_A8FHJ2: Triosephosphate isomerase	92.2748817827
+UniRef50_A8FHJ2: Triosephosphate isomerase|g__Staphylococcus.s__Staphylococcus_epidermidis	91.9095425936
+UniRef50_A8FHJ2: Triosephosphate isomerase|unclassified	0.3653391892
+UniRef50_P0DA58: DegV domain-containing protein SpyM3_1667	92.2671310457
+UniRef50_P0DA58: DegV domain-containing protein SpyM3_1667|g__Streptococcus.s__Streptococcus_mutans	89.5407456329
+UniRef50_P0DA58: DegV domain-containing protein SpyM3_1667|g__Streptococcus.s__Streptococcus_agalactiae	2.7263854127
+UniRef50_Q3J1A4: Light-harvesting protein B-875 alpha chain	92.1828908555
+UniRef50_Q3J1A4: Light-harvesting protein B-875 alpha chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	92.1828908555
+UniRef50_Q4L4Y3: ATP-dependent helicase/nuclease subunit A	92.1131938674
+UniRef50_Q4L4Y3: ATP-dependent helicase/nuclease subunit A|g__Staphylococcus.s__Staphylococcus_aureus	92.1131938674
+UniRef50_L7WW34: Multidrug resistance protein	92.1066440133
+UniRef50_L7WW34: Multidrug resistance protein|g__Staphylococcus.s__Staphylococcus_epidermidis	92.1066440133
+UniRef50_P24207: Phenylalanine-specific permease	92.0164413379
+UniRef50_P24207: Phenylalanine-specific permease|g__Escherichia.s__Escherichia_coli	76.8038771689
+UniRef50_P24207: Phenylalanine-specific permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3427900075
+UniRef50_P24207: Phenylalanine-specific permease|g__Acinetobacter.s__Acinetobacter_baumannii	3.8697741615
+UniRef50_Q5HN77: Amino acid ABC transporter, permease/amino acid-binding protein, putative	92.0059916396
+UniRef50_Q5HN77: Amino acid ABC transporter, permease/amino acid-binding protein, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	92.0059916396
+UniRef50_Q5HKG5: Drug transporter, putative	92.0022955820
+UniRef50_Q5HKG5: Drug transporter, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	92.0022955820
+UniRef50_D3QFS6	91.9672073603
+UniRef50_D3QFS6|g__Staphylococcus.s__Staphylococcus_aureus	91.6726254663
+UniRef50_D3QFS6|unclassified	0.2945818939
+UniRef50_D3QHI5	91.9500792583
+UniRef50_D3QHI5|g__Staphylococcus.s__Staphylococcus_aureus	91.9500792583
+UniRef50_D2N4J0: Sau1hsdS1	91.9108045086
+UniRef50_D2N4J0: Sau1hsdS1|g__Staphylococcus.s__Staphylococcus_aureus	91.9108045086
+UniRef50_O31645: PTS system mannose-specific EIIBCA component	91.8354135951
+UniRef50_O31645: PTS system mannose-specific EIIBCA component|g__Staphylococcus.s__Staphylococcus_epidermidis	91.7695012943
+UniRef50_O31645: PTS system mannose-specific EIIBCA component|unclassified	0.0659123008
+UniRef50_A4WZZ2	91.8074538949
+UniRef50_A4WZZ2|g__Rhodobacter.s__Rhodobacter_sphaeroides	91.8074538949
+UniRef50_C3AIA3: Tetracycline resistance protein	91.7996242579
+UniRef50_C3AIA3: Tetracycline resistance protein|g__Staphylococcus.s__Staphylococcus_aureus	91.7996242579
+UniRef50_Q8KA28: 3-oxoacyl-[acyl-carrier-protein] synthase 1	91.7575409773
+UniRef50_Q8KA28: 3-oxoacyl-[acyl-carrier-protein] synthase 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.9676545119
+UniRef50_Q8KA28: 3-oxoacyl-[acyl-carrier-protein] synthase 1|g__Escherichia.s__Escherichia_coli	21.4979196574
+UniRef50_Q8KA28: 3-oxoacyl-[acyl-carrier-protein] synthase 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.5004089038
+UniRef50_Q8KA28: 3-oxoacyl-[acyl-carrier-protein] synthase 1|g__Acinetobacter.s__Acinetobacter_baumannii	1.3477088949
+UniRef50_Q8KA28: 3-oxoacyl-[acyl-carrier-protein] synthase 1|unclassified	0.4438490093
+UniRef50_Q49Z62: Low molecular weight protein-tyrosine-phosphatase PtpB	91.7539064830
+UniRef50_Q49Z62: Low molecular weight protein-tyrosine-phosphatase PtpB|g__Staphylococcus.s__Staphylococcus_epidermidis	91.7539064830
+UniRef50_A3PQ77: Tripartite ATP-independent periplasmic transporter, DctQ component	91.7245531943
+UniRef50_A3PQ77: Tripartite ATP-independent periplasmic transporter, DctQ component|g__Rhodobacter.s__Rhodobacter_sphaeroides	89.3371544886
+UniRef50_A3PQ77: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	2.3873987058
+UniRef50_H6PCS0: Transcriptional regulator CtsR	91.7187652386
+UniRef50_H6PCS0: Transcriptional regulator CtsR|g__Streptococcus.s__Streptococcus_mutans	91.7187652386
+UniRef50_D6SBZ3: Amidohydrolase family protein	91.6915973677
+UniRef50_D6SBZ3: Amidohydrolase family protein|g__Staphylococcus.s__Staphylococcus_aureus	91.6915973677
+UniRef50_Q5HQN2: D-isomer specific 2-hydroxyacid dehydrogenase family protein	91.6374471692
+UniRef50_Q5HQN2: D-isomer specific 2-hydroxyacid dehydrogenase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	91.6374471692
+UniRef50_Q5HN04	91.6059653851
+UniRef50_Q5HN04|g__Staphylococcus.s__Staphylococcus_epidermidis	91.6059653851
+UniRef50_C2ZP74: Glycine betaine/L-proline ABC transporter, permease/glycine betaine/L-proline-binding protein	91.5941046778
+UniRef50_C2ZP74: Glycine betaine/L-proline ABC transporter, permease/glycine betaine/L-proline-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	91.5941046778
+UniRef50_Q5HRD9: AIR carboxylase, putative	91.5787905606
+UniRef50_Q5HRD9: AIR carboxylase, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	91.5787905606
+UniRef50_R9XSB4: UvrABC system protein A	91.5446986168
+UniRef50_R9XSB4: UvrABC system protein A|g__Staphylococcus.s__Staphylococcus_epidermidis	85.4094329506
+UniRef50_R9XSB4: UvrABC system protein A|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3015813445
+UniRef50_R9XSB4: UvrABC system protein A|g__Acinetobacter.s__Acinetobacter_baumannii	0.8336843217
+UniRef50_C1KYW0: Peptide chain release factor 1	91.5381418284
+UniRef50_C1KYW0: Peptide chain release factor 1|g__Staphylococcus.s__Staphylococcus_epidermidis	91.5381418284
+UniRef50_Q28PV9: N-acetyl-gamma-glutamyl-phosphate reductase	91.4895662100
+UniRef50_Q28PV9: N-acetyl-gamma-glutamyl-phosphate reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.7266337817
+UniRef50_Q28PV9: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.7629324283
+UniRef50_P76064	91.4626086350
+UniRef50_P76064|g__Escherichia.s__Escherichia_coli	91.4626086350
+UniRef50_Q8CS00	91.4582334153
+UniRef50_Q8CS00|g__Staphylococcus.s__Staphylococcus_epidermidis	91.4582334153
+UniRef50_B9KJL3	91.4495522009
+UniRef50_B9KJL3|unclassified	91.4495522009
+UniRef50_Q5HE46: Mannitol-specific phosphotransferase enzyme IIA component	91.3243854925
+UniRef50_Q5HE46: Mannitol-specific phosphotransferase enzyme IIA component|g__Staphylococcus.s__Staphylococcus_aureus	91.3243854925
+UniRef50_Q5HL17: Pyruvate phosphate dikinase	91.3096697937
+UniRef50_Q5HL17: Pyruvate phosphate dikinase|g__Staphylococcus.s__Staphylococcus_epidermidis	91.3096697937
+UniRef50_A1AYY2: Phage major capsid protein, HK97 family	91.3043549473
+UniRef50_A1AYY2: Phage major capsid protein, HK97 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	91.3043549473
+UniRef50_Q5HLL0	91.2952052368
+UniRef50_Q5HLL0|g__Staphylococcus.s__Staphylococcus_aureus	79.2886462018
+UniRef50_Q5HLL0|g__Staphylococcus.s__Staphylococcus_epidermidis	12.0065590350
+UniRef50_Q59643: Delta-aminolevulinic acid dehydratase	91.2932551411
+UniRef50_Q59643: Delta-aminolevulinic acid dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	74.4639446781
+UniRef50_Q59643: Delta-aminolevulinic acid dehydratase|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.3211688072
+UniRef50_Q59643: Delta-aminolevulinic acid dehydratase|unclassified	1.5081416559
+UniRef50_D2N5G1: LysM domain protein	91.2731749834
+UniRef50_D2N5G1: LysM domain protein|g__Staphylococcus.s__Staphylococcus_aureus	91.2731749834
+UniRef50_P0A0M6: UPF0039 protein SAV1054	91.1861394328
+UniRef50_P0A0M6: UPF0039 protein SAV1054|g__Staphylococcus.s__Staphylococcus_aureus	73.0949935125
+UniRef50_P0A0M6: UPF0039 protein SAV1054|g__Staphylococcus.s__Staphylococcus_epidermidis	18.0911459203
+UniRef50_C5N344	91.1682564610
+UniRef50_C5N344|g__Staphylococcus.s__Staphylococcus_aureus	91.1682564610
+UniRef50_Y8CPG9	91.1584225586
+UniRef50_Y8CPG9|g__Staphylococcus.s__Staphylococcus_epidermidis	91.1584225586
+UniRef50_H3VVP7: Gram-positive signal peptide protein, YSIRK family	91.1524550491
+UniRef50_H3VVP7: Gram-positive signal peptide protein, YSIRK family|g__Staphylococcus.s__Staphylococcus_epidermidis	91.1524550491
+UniRef50_Q5HKY3: ABC transporter, ATP-binding protein	91.1199577195
+UniRef50_Q5HKY3: ABC transporter, ATP-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	91.1199577195
+UniRef50_T0VCE6: ABC transporter ATP-binding protein	91.0839060054
+UniRef50_T0VCE6: ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	46.4542710454
+UniRef50_T0VCE6: ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	44.6296349601
+UniRef50_G2T0H2: DNA alkylation repair enzyme	91.0248814663
+UniRef50_G2T0H2: DNA alkylation repair enzyme|g__Streptococcus.s__Streptococcus_mutans	91.0248814663
+UniRef50_L1KG88	91.0039491642
+UniRef50_L1KG88|unclassified	91.0039491642
+UniRef50_T2EHK8	90.9994767138
+UniRef50_T2EHK8|g__Pseudomonas.s__Pseudomonas_aeruginosa	90.9994767138
+UniRef50_E3EYF0: C4-dicarboxylate transport transcriptional regulatory protein DctD	90.9684780143
+UniRef50_E3EYF0: C4-dicarboxylate transport transcriptional regulatory protein DctD|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.9684780143
+UniRef50_P39062: Acetyl-coenzyme A synthetase	90.9661380844
+UniRef50_P39062: Acetyl-coenzyme A synthetase|g__Staphylococcus.s__Staphylococcus_aureus	90.8912576982
+UniRef50_P39062: Acetyl-coenzyme A synthetase|unclassified	0.0748803862
+UniRef50_R9YQ52: Sugar (And other) transporter family protein	90.9267565420
+UniRef50_R9YQ52: Sugar (And other) transporter family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	90.9267565420
+UniRef50_A1B634: Phage major tail protein, TP901-1 family	90.9090909091
+UniRef50_A1B634: Phage major tail protein, TP901-1 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.9090909091
+UniRef50_A6LQC0	90.9090909091
+UniRef50_A6LQC0|g__Clostridium.s__Clostridium_beijerinckii	90.9090909091
+UniRef50_I0C290	90.9090909091
+UniRef50_I0C290|g__Staphylococcus.s__Staphylococcus_aureus	90.9090909091
+UniRef50_Q5HLU2	90.9090909091
+UniRef50_Q5HLU2|g__Staphylococcus.s__Staphylococcus_epidermidis	90.9090909091
+UniRef50_Q9CNN7: 50S ribosomal protein L3 glutamine methyltransferase	90.9090909091
+UniRef50_Q9CNN7: 50S ribosomal protein L3 glutamine methyltransferase|g__Escherichia.s__Escherichia_coli	90.9090909091
+UniRef50_U5NMQ2: Phage major tail protein 2	90.9027143636
+UniRef50_U5NMQ2: Phage major tail protein 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.9027143636
+UniRef50_F5M323: Membrane bound O-acyl transferase, MBOAT family protein	90.8886723108
+UniRef50_F5M323: Membrane bound O-acyl transferase, MBOAT family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.8886723108
+UniRef50_A3PFT2: Sulfoxide reductase heme-binding subunit YedZ	90.8747901999
+UniRef50_A3PFT2: Sulfoxide reductase heme-binding subunit YedZ|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.8747901999
+UniRef50_C5N6M7	90.8694366999
+UniRef50_C5N6M7|g__Staphylococcus.s__Staphylococcus_aureus	90.8694366999
+UniRef50_Q8CPA3: Oligoendopeptidase	90.8531950466
+UniRef50_Q8CPA3: Oligoendopeptidase|g__Staphylococcus.s__Staphylococcus_epidermidis	90.8531950466
+UniRef50_Q16DB6	90.8234775754
+UniRef50_Q16DB6|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.8234775754
+UniRef50_Q8NXN8: MW0677 protein	90.7702907084
+UniRef50_Q8NXN8: MW0677 protein|g__Staphylococcus.s__Staphylococcus_aureus	90.7702907084
+UniRef50_F3SY37: Transcriptional regulator, AraC family	90.7512696924
+UniRef50_F3SY37: Transcriptional regulator, AraC family|g__Staphylococcus.s__Staphylococcus_epidermidis	90.7512696924
+UniRef50_Q5HLU9	90.6570897231
+UniRef50_Q5HLU9|g__Staphylococcus.s__Staphylococcus_epidermidis	90.3749074759
+UniRef50_Q5HLU9|unclassified	0.2821822472
+UniRef50_A4WT37: Flagellin domain protein	90.6295750608
+UniRef50_A4WT37: Flagellin domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.6295750608
+UniRef50_Q5HPN2: Glutamine synthetase	90.6110016913
+UniRef50_Q5HPN2: Glutamine synthetase|g__Staphylococcus.s__Staphylococcus_epidermidis	90.4939028783
+UniRef50_Q5HPN2: Glutamine synthetase|unclassified	0.1170988130
+UniRef50_E8SFS5: Membrane protein	90.6107884723
+UniRef50_E8SFS5: Membrane protein|g__Staphylococcus.s__Staphylococcus_epidermidis	90.6107884723
+UniRef50_Q49ZH2: DNA topoisomerase 3	90.5809745472
+UniRef50_Q49ZH2: DNA topoisomerase 3|g__Staphylococcus.s__Staphylococcus_epidermidis	90.5494098750
+UniRef50_Q49ZH2: DNA topoisomerase 3|unclassified	0.0315646721
+UniRef50_Q5LNV7	90.5783304277
+UniRef50_Q5LNV7|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.5783304277
+UniRef50_W8RPJ3: Hydroxymethylpyrimidine ABC transporter, transmembrane component	90.5737560268
+UniRef50_W8RPJ3: Hydroxymethylpyrimidine ABC transporter, transmembrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.5737560268
+UniRef50_L1K5J8	90.5190001835
+UniRef50_L1K5J8|unclassified	90.5190001835
+UniRef50_Q8CQA3: Dihydrolipoyl dehydrogenase	90.4834757982
+UniRef50_Q8CQA3: Dihydrolipoyl dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	90.4834757982
+UniRef50_F4FSV5: RelA/SpoT domain protein	90.4437979764
+UniRef50_F4FSV5: RelA/SpoT domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	90.4437979764
+UniRef50_Q98D26: Branched-chain amino acid ABC transporter, periplasmic amino acid-binding protein	90.4275548505
+UniRef50_Q98D26: Branched-chain amino acid ABC transporter, periplasmic amino acid-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.4275548505
+UniRef50_B3EQT3: Recombination protein RecR	90.3856375820
+UniRef50_B3EQT3: Recombination protein RecR|g__Streptococcus.s__Streptococcus_mutans	85.4351425325
+UniRef50_B3EQT3: Recombination protein RecR|g__Streptococcus.s__Streptococcus_agalactiae	4.9504950495
+UniRef50_R5NQY2: Beta-eliminating lyase	90.3789042211
+UniRef50_R5NQY2: Beta-eliminating lyase|g__Staphylococcus.s__Staphylococcus_aureus	90.3789042211
+UniRef50_D9QKH6: NAD-dependent epimerase/dehydratase	90.3466102505
+UniRef50_D9QKH6: NAD-dependent epimerase/dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.3466102505
+UniRef50_D8IGI0: Phosphoribosylaminoimidazole carboxylase ATPase subunit	90.3222723043
+UniRef50_D8IGI0: Phosphoribosylaminoimidazole carboxylase ATPase subunit|g__Streptococcus.s__Streptococcus_mutans	81.0759611691
+UniRef50_D8IGI0: Phosphoribosylaminoimidazole carboxylase ATPase subunit|g__Streptococcus.s__Streptococcus_agalactiae	9.2463111352
+UniRef50_R4ZTR9: Hydrolase, haloacid dehalogenase-like family	90.3135007046
+UniRef50_R4ZTR9: Hydrolase, haloacid dehalogenase-like family|g__Streptococcus.s__Streptococcus_mutans	88.7109366020
+UniRef50_R4ZTR9: Hydrolase, haloacid dehalogenase-like family|g__Streptococcus.s__Streptococcus_agalactiae	1.6025641026
+UniRef50_A3PM06: RNA polymerase, sigma-24 subunit, ECF subfamily	90.2694297115
+UniRef50_A3PM06: RNA polymerase, sigma-24 subunit, ECF subfamily|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.2694297115
+UniRef50_Q1GD19: Binding-protein-dependent transport systems inner membrane component	90.2561316683
+UniRef50_Q1GD19: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.2561316683
+UniRef50_G8V3H8: FecCD transport family protein	90.2359748713
+UniRef50_G8V3H8: FecCD transport family protein|g__Staphylococcus.s__Staphylococcus_aureus	90.2359748713
+UniRef50_A8AVK0: Protein LemA	90.2208854039
+UniRef50_A8AVK0: Protein LemA|g__Streptococcus.s__Streptococcus_mutans	62.7501579938
+UniRef50_A8AVK0: Protein LemA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.4707274100
+UniRef50_F3U2V0: Gas vesicle operon protein	90.2120322400
+UniRef50_F3U2V0: Gas vesicle operon protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.2120322400
+UniRef50_R4Q5Z5: Phosphoribosylglycinamide formyltransferase	90.1649340283
+UniRef50_R4Q5Z5: Phosphoribosylglycinamide formyltransferase|g__Streptococcus.s__Streptococcus_mutans	90.1649340283
+UniRef50_A3PKX0: NAD(P) transhydrogenase subunit beta	90.1471439816
+UniRef50_A3PKX0: NAD(P) transhydrogenase subunit beta|g__Rhodobacter.s__Rhodobacter_sphaeroides	90.1471439816
+UniRef50_I6T659: Transcriptional regulator	90.1313854299
+UniRef50_I6T659: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	90.1313854299
+UniRef50_B4RAW2	90.1293615772
+UniRef50_B4RAW2|g__Rhodobacter.s__Rhodobacter_sphaeroides	89.7725395528
+UniRef50_B4RAW2|unclassified	0.3568220244
+UniRef50_F2F126: Lactoylglutathione lyase	90.1215923615
+UniRef50_F2F126: Lactoylglutathione lyase|g__Staphylococcus.s__Staphylococcus_aureus	90.1215923615
+UniRef50_Q4A0W1: Transcriptional regulator	90.0554078326
+UniRef50_Q4A0W1: Transcriptional regulator|g__Staphylococcus.s__Staphylococcus_epidermidis	90.0554078326
+UniRef50_A7X770: ATP phosphoribosyltransferase	90.0130446680
+UniRef50_A7X770: ATP phosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	86.6002224252
+UniRef50_A7X770: ATP phosphoribosyltransferase|unclassified	3.4128222427
+UniRef50_E8SGA0: Teichoic acid biosynthesis protein F	89.9670922931
+UniRef50_E8SGA0: Teichoic acid biosynthesis protein F|g__Staphylococcus.s__Staphylococcus_epidermidis	89.9670922931
+UniRef50_Q2FK09: Sensory transduction protein LytR	89.9659450429
+UniRef50_Q2FK09: Sensory transduction protein LytR|g__Staphylococcus.s__Staphylococcus_aureus	89.9659450429
+UniRef50_M4YWX8: Acetyl transferase GNAT family	89.9655882131
+UniRef50_M4YWX8: Acetyl transferase GNAT family|g__Streptococcus.s__Streptococcus_mutans	89.9655882131
+UniRef50_Q8CSL4	89.9144999022
+UniRef50_Q8CSL4|g__Staphylococcus.s__Staphylococcus_epidermidis	89.9144999022
+UniRef50_Q2FEK1: Urease accessory protein UreF	89.8433003649
+UniRef50_Q2FEK1: Urease accessory protein UreF|g__Staphylococcus.s__Staphylococcus_aureus	89.8433003649
+UniRef50_B9DLC6: Transcription-repair-coupling factor	89.8394503491
+UniRef50_B9DLC6: Transcription-repair-coupling factor|g__Staphylococcus.s__Staphylococcus_epidermidis	89.8394503491
+UniRef50_Q3IV88	89.8161434305
+UniRef50_Q3IV88|g__Rhodobacter.s__Rhodobacter_sphaeroides	81.9742226917
+UniRef50_Q3IV88|unclassified	7.8419207387
+UniRef50_P39142: Pyrimidine-nucleoside phosphorylase	89.7247185888
+UniRef50_P39142: Pyrimidine-nucleoside phosphorylase|g__Staphylococcus.s__Staphylococcus_epidermidis	89.6367087783
+UniRef50_P39142: Pyrimidine-nucleoside phosphorylase|unclassified	0.0880098104
+UniRef50_B9KR74: Binding-protein-dependent transport systems inner membrane component	89.7068776012
+UniRef50_B9KR74: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	89.7068776012
+UniRef50_A1BD29: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha	89.6717638554
+UniRef50_A1BD29: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|g__Escherichia.s__Escherichia_coli	36.6001246966
+UniRef50_A1BD29: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.8089964516
+UniRef50_A1BD29: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.9477265325
+UniRef50_A1BD29: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|g__Neisseria.s__Neisseria_meningitidis	2.1853971073
+UniRef50_A1BD29: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|unclassified	1.1295190674
+UniRef50_F7X314: Phage major capsid protein, HK97 family	89.6462036161
+UniRef50_F7X314: Phage major capsid protein, HK97 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	88.7809775744
+UniRef50_F7X314: Phage major capsid protein, HK97 family|unclassified	0.8652260416
+UniRef50_Q65G88: Isocitrate dehydrogenase [NADP]	89.6245036941
+UniRef50_Q65G88: Isocitrate dehydrogenase [NADP]|g__Staphylococcus.s__Staphylococcus_aureus	83.3800063739
+UniRef50_Q65G88: Isocitrate dehydrogenase [NADP]|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2444973202
+UniRef50_Q4V182: L-carnitine dehydrogenase	89.6108662744
+UniRef50_Q4V182: L-carnitine dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	88.1620508774
+UniRef50_Q4V182: L-carnitine dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4104372355
+UniRef50_Q4V182: L-carnitine dehydrogenase|unclassified	0.0383781615
+UniRef50_C1PH90: Pyridoxal-dependent decarboxylase	89.5942982270
+UniRef50_C1PH90: Pyridoxal-dependent decarboxylase|g__Staphylococcus.s__Staphylococcus_epidermidis	53.9533424199
+UniRef50_C1PH90: Pyridoxal-dependent decarboxylase|g__Staphylococcus.s__Staphylococcus_aureus	35.6409558072
+UniRef50_X5EHV6	89.5670576314
+UniRef50_X5EHV6|g__Staphylococcus.s__Staphylococcus_aureus	89.5670576314
+UniRef50_Q2YVJ6	89.5222088294
+UniRef50_Q2YVJ6|g__Staphylococcus.s__Staphylococcus_aureus	89.5222088294
+UniRef50_S4X2L4: Mercury transport protein	89.4919383815
+UniRef50_S4X2L4: Mercury transport protein|g__Staphylococcus.s__Staphylococcus_epidermidis	89.4919383815
+UniRef50_P63858: Capsular polysaccharide biosynthesis protein CapA	89.4860435048
+UniRef50_P63858: Capsular polysaccharide biosynthesis protein CapA|g__Staphylococcus.s__Staphylococcus_aureus	88.2824391419
+UniRef50_P63858: Capsular polysaccharide biosynthesis protein CapA|unclassified	1.2036043630
+UniRef50_P37386: Probable cadmium-transporting ATPase	89.4783056295
+UniRef50_P37386: Probable cadmium-transporting ATPase|g__Staphylococcus.s__Staphylococcus_epidermidis	89.3452919186
+UniRef50_P37386: Probable cadmium-transporting ATPase|unclassified	0.1330137109
+UniRef50_A3NHB2: Aldehyde dehydrogenase (NAD) family protein	89.4780313399
+UniRef50_A3NHB2: Aldehyde dehydrogenase (NAD) family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	89.4780313399
+UniRef50_Q8CQW3	89.4628775401
+UniRef50_Q8CQW3|g__Staphylococcus.s__Staphylococcus_epidermidis	89.4628775401
+UniRef50_F0P4Z6: Oligopeptide transport ATP-binding protein	89.4527149984
+UniRef50_F0P4Z6: Oligopeptide transport ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	89.4527149984
+UniRef50_E2ZWH4	89.4419733705
+UniRef50_E2ZWH4|g__Pseudomonas.s__Pseudomonas_aeruginosa	89.4419733705
+UniRef50_A3PPW9	89.4392979919
+UniRef50_A3PPW9|g__Rhodobacter.s__Rhodobacter_sphaeroides	88.1582857338
+UniRef50_A3PPW9|unclassified	1.2810122581
+UniRef50_K0L2R6: Oligopeptide ABC superfamily ATP binding cassette transporter, membrane protein	89.4159362208
+UniRef50_K0L2R6: Oligopeptide ABC superfamily ATP binding cassette transporter, membrane protein|g__Staphylococcus.s__Staphylococcus_aureus	89.4159362208
+UniRef50_Q28K40: Amino acid/amide ABC transporter membrane protein 2, HAAT family	89.4024791354
+UniRef50_Q28K40: Amino acid/amide ABC transporter membrane protein 2, HAAT family|g__Rhodobacter.s__Rhodobacter_sphaeroides	89.4024791354
+UniRef50_U5NRK2	89.3780184518
+UniRef50_U5NRK2|g__Rhodobacter.s__Rhodobacter_sphaeroides	69.3286508245
+UniRef50_U5NRK2|unclassified	20.0493676273
+UniRef50_Q5HR98: UDP-N-acetyl-D-mannosamine transferase	89.3437161937
+UniRef50_Q5HR98: UDP-N-acetyl-D-mannosamine transferase|g__Staphylococcus.s__Staphylococcus_epidermidis	89.3437161937
+UniRef50_T1XRQ5: Teichoic acid translocation ATP-binding protein, putative	89.3414569199
+UniRef50_T1XRQ5: Teichoic acid translocation ATP-binding protein, putative|g__Staphylococcus.s__Staphylococcus_aureus	89.3414569199
+UniRef50_P58423: Fructose-6-phosphate aldolase 1	89.3376943922
+UniRef50_P58423: Fructose-6-phosphate aldolase 1|g__Escherichia.s__Escherichia_coli	88.0839420734
+UniRef50_P58423: Fructose-6-phosphate aldolase 1|unclassified	1.2537523188
+UniRef50_W7IVE6	89.3235886892
+UniRef50_W7IVE6|g__Staphylococcus.s__Staphylococcus_aureus	89.2762984924
+UniRef50_W7IVE6|unclassified	0.0472901968
+UniRef50_P39916: Thioredoxin reductase	89.3124377636
+UniRef50_P39916: Thioredoxin reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	88.5041451381
+UniRef50_P39916: Thioredoxin reductase|unclassified	0.8082926255
+UniRef50_Q2FH82: Glycerol-3-phosphate acyltransferase	89.3051475437
+UniRef50_Q2FH82: Glycerol-3-phosphate acyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	48.0627210523
+UniRef50_Q2FH82: Glycerol-3-phosphate acyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	41.2424264914
+UniRef50_D0K3P5	89.2935255801
+UniRef50_D0K3P5|g__Staphylococcus.s__Staphylococcus_aureus	89.2935255801
+UniRef50_D3HF85	89.2912830438
+UniRef50_D3HF85|g__Streptococcus.s__Streptococcus_mutans	89.2912830438
+UniRef50_Q8CRH0: 50S ribosomal protein L14	89.2489611909
+UniRef50_Q8CRH0: 50S ribosomal protein L14|g__Staphylococcus.s__Staphylococcus_epidermidis	89.2489611909
+UniRef50_Q8CU46: Alginate lyase	89.2295518660
+UniRef50_Q8CU46: Alginate lyase|g__Staphylococcus.s__Staphylococcus_epidermidis	89.2295518660
+UniRef50_Q4L811: Type II pantothenate kinase	89.2216785445
+UniRef50_Q4L811: Type II pantothenate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	89.2216785445
+UniRef50_J7M6X3: MarR family transcriptional regulator	89.1902218140
+UniRef50_J7M6X3: MarR family transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	89.1902218140
+UniRef50_M9R9H5	89.1892258354
+UniRef50_M9R9H5|g__Rhodobacter.s__Rhodobacter_sphaeroides	89.0307689570
+UniRef50_M9R9H5|unclassified	0.1584568784
+UniRef50_A0KET1: Membrane lipoprotein	89.1811296902
+UniRef50_A0KET1: Membrane lipoprotein|g__Rhodobacter.s__Rhodobacter_sphaeroides	89.1811296902
+UniRef50_A0QP90: Glucose-6-phosphate 1-dehydrogenase	89.1663076076
+UniRef50_A0QP90: Glucose-6-phosphate 1-dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	87.5440405958
+UniRef50_A0QP90: Glucose-6-phosphate 1-dehydrogenase|unclassified	1.6222670118
+UniRef50_Q5LWG6	89.1514927740
+UniRef50_Q5LWG6|g__Rhodobacter.s__Rhodobacter_sphaeroides	89.1514927740
+UniRef50_B9KPE8	89.1274452271
+UniRef50_B9KPE8|g__Rhodobacter.s__Rhodobacter_sphaeroides	88.7455615101
+UniRef50_B9KPE8|unclassified	0.3818837170
+UniRef50_C5N1J7: Kinase, PfkB family	89.1079474170
+UniRef50_C5N1J7: Kinase, PfkB family|g__Staphylococcus.s__Staphylococcus_aureus	89.1079474170
+UniRef50_Q8CPD8: Cardiolipin synthase 1	89.0611238214
+UniRef50_Q8CPD8: Cardiolipin synthase 1|g__Staphylococcus.s__Staphylococcus_epidermidis	89.0611238214
+UniRef50_D3QFY8	88.9975706206
+UniRef50_D3QFY8|g__Staphylococcus.s__Staphylococcus_epidermidis	88.9975706206
+UniRef50_A1V469: Sulfate/thiosulfate ABC transporter, permease protein CysW	88.9868370417
+UniRef50_A1V469: Sulfate/thiosulfate ABC transporter, permease protein CysW|g__Rhodobacter.s__Rhodobacter_sphaeroides	76.2370224406
+UniRef50_A1V469: Sulfate/thiosulfate ABC transporter, permease protein CysW|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.7590399407
+UniRef50_A1V469: Sulfate/thiosulfate ABC transporter, permease protein CysW|g__Acinetobacter.s__Acinetobacter_baumannii	2.9907746604
+UniRef50_O33406: Uptake hydrogenase large subunit	88.9240716236
+UniRef50_O33406: Uptake hydrogenase large subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	88.5862201528
+UniRef50_O33406: Uptake hydrogenase large subunit|unclassified	0.3378514709
+UniRef50_Q49XZ6: Superoxide dismutase [Mn/Fe]	88.9055523423
+UniRef50_Q49XZ6: Superoxide dismutase [Mn/Fe]|g__Staphylococcus.s__Staphylococcus_epidermidis	88.6789377239
+UniRef50_Q49XZ6: Superoxide dismutase [Mn/Fe]|unclassified	0.2266146184
+UniRef50_B9KLD6	88.8854930629
+UniRef50_B9KLD6|g__Rhodobacter.s__Rhodobacter_sphaeroides	87.7586186181
+UniRef50_B9KLD6|unclassified	1.1268744448
+UniRef50_B9E750	88.8577361670
+UniRef50_B9E750|g__Staphylococcus.s__Staphylococcus_epidermidis	88.8577361670
+UniRef50_A5IVI8: Protein-disulfide isomerase-like protein	88.8510131699
+UniRef50_A5IVI8: Protein-disulfide isomerase-like protein|g__Staphylococcus.s__Staphylococcus_aureus	88.8510131699
+UniRef50_T1Y907: Glycerol uptake operon antiterminator regulatory protein	88.8351587881
+UniRef50_T1Y907: Glycerol uptake operon antiterminator regulatory protein|g__Staphylococcus.s__Staphylococcus_aureus	88.8351587881
+UniRef50_G7ZM83: LysR-family regulatory protein	88.8304329513
+UniRef50_G7ZM83: LysR-family regulatory protein|g__Staphylococcus.s__Staphylococcus_aureus	88.8304329513
+UniRef50_Q1GIB5: Peptide chain release factor 2	88.8293304351
+UniRef50_Q1GIB5: Peptide chain release factor 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	88.8293304351
+UniRef50_J0S1W5	88.7621209275
+UniRef50_J0S1W5|g__Staphylococcus.s__Staphylococcus_epidermidis	88.7621209275
+UniRef50_Q8CMV5: Phage infection protein	88.7558953572
+UniRef50_Q8CMV5: Phage infection protein|g__Staphylococcus.s__Staphylococcus_epidermidis	88.7558953572
+UniRef50_I6T7P3: Flavodoxin	88.7196531116
+UniRef50_I6T7P3: Flavodoxin|g__Streptococcus.s__Streptococcus_mutans	88.7196531116
+UniRef50_Q5HRH4: Putative long chain fatty acid-CoA ligase VraA	88.7132675094
+UniRef50_Q5HRH4: Putative long chain fatty acid-CoA ligase VraA|g__Staphylococcus.s__Staphylococcus_epidermidis	88.7132675094
+UniRef50_P26946	88.6484449771
+UniRef50_P26946|g__Staphylococcus.s__Staphylococcus_aureus	88.6484449771
+UniRef50_Q5LKT8: Branched-chain amino acid aminotransferase, putative	88.6171189454
+UniRef50_Q5LKT8: Branched-chain amino acid aminotransferase, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	88.6171189454
+UniRef50_Q49XT6	88.6077078014
+UniRef50_Q49XT6|g__Staphylococcus.s__Staphylococcus_aureus	88.6077078014
+UniRef50_Q3IXY3	88.5823507479
+UniRef50_Q3IXY3|g__Rhodobacter.s__Rhodobacter_sphaeroides	88.1880348248
+UniRef50_Q3IXY3|unclassified	0.3943159231
+UniRef50_I3U2U9: Iron (Fe3+) ABC superfamily ATP binding cassette transporter, ABC protein	88.5424157393
+UniRef50_I3U2U9: Iron (Fe3+) ABC superfamily ATP binding cassette transporter, ABC protein|g__Staphylococcus.s__Staphylococcus_epidermidis	88.5424157393
+UniRef50_P0C5W5: Transposase InsD for insertion element IS2A/D/F/H/I/K	88.5266169220
+UniRef50_P0C5W5: Transposase InsD for insertion element IS2A/D/F/H/I/K|g__Escherichia.s__Escherichia_coli	88.5266169220
+UniRef50_I6TVV9	88.4874762943
+UniRef50_I6TVV9|g__Streptococcus.s__Streptococcus_mutans	88.4874762943
+UniRef50_Q8ZKQ1: Autoinducer 2-binding protein LsrB	88.4508309654
+UniRef50_Q8ZKQ1: Autoinducer 2-binding protein LsrB|g__Rhodobacter.s__Rhodobacter_sphaeroides	69.6896490176
+UniRef50_Q8ZKQ1: Autoinducer 2-binding protein LsrB|g__Escherichia.s__Escherichia_coli	18.7611819478
+UniRef50_A3PNL6: PpiC-type peptidyl-prolyl cis-trans isomerase	88.3986455796
+UniRef50_A3PNL6: PpiC-type peptidyl-prolyl cis-trans isomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	88.3986455796
+UniRef50_Q8CS09: DNA topoisomerase	88.3886067141
+UniRef50_Q8CS09: DNA topoisomerase|g__Staphylococcus.s__Staphylococcus_epidermidis	88.3886067141
+UniRef50_F6CD95: Phosphoenolpyruvate-dependent sugar phosphotransferase system EIIC, mannose specific	88.3700303881
+UniRef50_F6CD95: Phosphoenolpyruvate-dependent sugar phosphotransferase system EIIC, mannose specific|g__Streptococcus.s__Streptococcus_mutans	88.3700303881
+UniRef50_Q8NZX4: Transketolase	88.3634083823
+UniRef50_Q8NZX4: Transketolase|g__Staphylococcus.s__Staphylococcus_aureus	86.7975488761
+UniRef50_Q8NZX4: Transketolase|g__Streptococcus.s__Streptococcus_agalactiae	1.2669947078
+UniRef50_Q8NZX4: Transketolase|unclassified	0.2988647984
+UniRef50_A7X534: Multidrug resistance efflux pump SepA	88.3498256868
+UniRef50_A7X534: Multidrug resistance efflux pump SepA|g__Staphylococcus.s__Staphylococcus_epidermidis	54.5812298563
+UniRef50_A7X534: Multidrug resistance efflux pump SepA|g__Staphylococcus.s__Staphylococcus_aureus	33.7685958306
+UniRef50_I2C5T3: Ribonucleoside-diphosphate reductase	88.3444663944
+UniRef50_I2C5T3: Ribonucleoside-diphosphate reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	88.3444663944
+UniRef50_E0TW67: Quinol oxidase subunit 2	88.3299987473
+UniRef50_E0TW67: Quinol oxidase subunit 2|g__Staphylococcus.s__Staphylococcus_epidermidis	88.2340150676
+UniRef50_E0TW67: Quinol oxidase subunit 2|unclassified	0.0959836797
+UniRef50_B9KKK1: Transcriptional regulator, DeoR family	88.3239390644
+UniRef50_B9KKK1: Transcriptional regulator, DeoR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	88.3239390644
+UniRef50_F8WK85: PAP2 family protein	88.3205559427
+UniRef50_F8WK85: PAP2 family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	88.3205559427
+UniRef50_F3U2V4: Heat shock protein Hsp20	88.3101823455
+UniRef50_F3U2V4: Heat shock protein Hsp20|g__Rhodobacter.s__Rhodobacter_sphaeroides	84.4087419518
+UniRef50_F3U2V4: Heat shock protein Hsp20|unclassified	3.9014403937
+UniRef50_UPI0003655EFD: multidrug transporter	88.2546876582
+UniRef50_UPI0003655EFD: multidrug transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	88.2546876582
+UniRef50_F3STZ2: Valine--tRNA ligase (Fragment)	88.2466352305
+UniRef50_F3STZ2: Valine--tRNA ligase (Fragment)|g__Staphylococcus.s__Staphylococcus_epidermidis	88.2466352305
+UniRef50_P36843: Arginine biosynthesis bifunctional protein ArgJ	88.1818591853
+UniRef50_P36843: Arginine biosynthesis bifunctional protein ArgJ|g__Staphylococcus.s__Staphylococcus_aureus	88.1261776991
+UniRef50_P36843: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.0556814862
+UniRef50_E3I502: Oligoendopeptidase, pepF/M3 family	88.1633316708
+UniRef50_E3I502: Oligoendopeptidase, pepF/M3 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	88.1633316708
+UniRef50_C5N1T5	88.1568058538
+UniRef50_C5N1T5|g__Staphylococcus.s__Staphylococcus_aureus	88.1568058538
+UniRef50_Q3KGL4: Uracil-DNA glycosylase	88.0879622762
+UniRef50_Q3KGL4: Uracil-DNA glycosylase|g__Staphylococcus.s__Staphylococcus_epidermidis	71.3088099431
+UniRef50_Q3KGL4: Uracil-DNA glycosylase|g__Escherichia.s__Escherichia_coli	16.7791523331
+UniRef50_W0NHL6: Branched-chain amino acid ABC transporter ATP-binding protein	88.0719913922
+UniRef50_W0NHL6: Branched-chain amino acid ABC transporter ATP-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	88.0719913922
+UniRef50_U4QA39: Xanthine dehydrogenase, iron-sulfur-binding subunit	88.0524132083
+UniRef50_U4QA39: Xanthine dehydrogenase, iron-sulfur-binding subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	88.0524132083
+UniRef50_F4MCF7	88.0503144654
+UniRef50_F4MCF7|g__Escherichia.s__Escherichia_coli	88.0503144654
+UniRef50_A3PPK7: Amidohydrolase 2	87.9983824916
+UniRef50_A3PPK7: Amidohydrolase 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	87.9983824916
+UniRef50_A3PMR6	87.9830391974
+UniRef50_A3PMR6|g__Rhodobacter.s__Rhodobacter_sphaeroides	77.9408989188
+UniRef50_A3PMR6|unclassified	10.0421402785
+UniRef50_Q45480	87.9467991294
+UniRef50_Q45480|g__Staphylococcus.s__Staphylococcus_epidermidis	87.9467991294
+UniRef50_A5IUX4: Choline/carnitine/betaine transporter	87.9047929649
+UniRef50_A5IUX4: Choline/carnitine/betaine transporter|g__Staphylococcus.s__Staphylococcus_aureus	87.9047929649
+UniRef50_L7WTC3: Lipoprotein	87.8329041432
+UniRef50_L7WTC3: Lipoprotein|g__Staphylococcus.s__Staphylococcus_epidermidis	87.8329041432
+UniRef50_G8UZQ2: Bacterial low temperature requirement A family protein	87.8060771910
+UniRef50_G8UZQ2: Bacterial low temperature requirement A family protein|g__Staphylococcus.s__Staphylococcus_aureus	87.8060771910
+UniRef50_D4MNT7: Acetyltransferases	87.7942444135
+UniRef50_D4MNT7: Acetyltransferases|g__Methanobrevibacter.s__Methanobrevibacter_smithii	87.7942444135
+UniRef50_Q2FZ91: Cell division protein DivIB	87.7879926452
+UniRef50_Q2FZ91: Cell division protein DivIB|g__Staphylococcus.s__Staphylococcus_aureus	87.7879926452
+UniRef50_B9KUA0: CBS domain containing protein	87.7080906650
+UniRef50_B9KUA0: CBS domain containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	87.7080906650
+UniRef50_Q5HMA0: Putative aldehyde dehydrogenase SERP1729	87.6899580846
+UniRef50_Q5HMA0: Putative aldehyde dehydrogenase SERP1729|g__Staphylococcus.s__Staphylococcus_epidermidis	87.6472211613
+UniRef50_Q5HMA0: Putative aldehyde dehydrogenase SERP1729|unclassified	0.0427369232
+UniRef50_D3SY39: Phosphate ABC transporter permease	87.6836646772
+UniRef50_D3SY39: Phosphate ABC transporter permease|g__Staphylococcus.s__Staphylococcus_epidermidis	87.6836646772
+UniRef50_I0C5T1	87.6819812400
+UniRef50_I0C5T1|g__Staphylococcus.s__Staphylococcus_aureus	46.6523486373
+UniRef50_I0C5T1|g__Staphylococcus.s__Staphylococcus_epidermidis	41.0296326027
+UniRef50_F8KIL6: NADH oxidase family protein	87.6764940141
+UniRef50_F8KIL6: NADH oxidase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	87.6764940141
+UniRef50_P54569	87.6317468806
+UniRef50_P54569|g__Staphylococcus.s__Staphylococcus_epidermidis	87.6317468806
+UniRef50_B1K1J6: Inner-membrane translocator	87.6073403735
+UniRef50_B1K1J6: Inner-membrane translocator|g__Rhodobacter.s__Rhodobacter_sphaeroides	87.6073403735
+UniRef50_Q4L6U2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	87.6024844152
+UniRef50_Q4L6U2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	87.3494531862
+UniRef50_Q4L6U2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.2530312290
+UniRef50_Q3IV17: Putative threonine efflux protein	87.5852136101
+UniRef50_Q3IV17: Putative threonine efflux protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	87.5852136101
+UniRef50_S4ZTI3: Transcriptional regulator, ArsR family	87.5571715414
+UniRef50_S4ZTI3: Transcriptional regulator, ArsR family|g__Streptococcus.s__Streptococcus_mutans	87.5571715414
+UniRef50_A5IT33: Glucose-6-phosphate 1-dehydrogenase	87.5369045141
+UniRef50_A5IT33: Glucose-6-phosphate 1-dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	87.5369045141
+UniRef50_D8HBY6	87.4759837735
+UniRef50_D8HBY6|g__Staphylococcus.s__Staphylococcus_aureus	87.4759837735
+UniRef50_Q16A99: tRNA 2-thiocytidine biosynthesis protein TtcA	87.4507281459
+UniRef50_Q16A99: tRNA 2-thiocytidine biosynthesis protein TtcA|g__Rhodobacter.s__Rhodobacter_sphaeroides	87.4507281459
+UniRef50_Q4L4I8: Prolipoprotein diacylglyceryl transferase	87.4444945957
+UniRef50_Q4L4I8: Prolipoprotein diacylglyceryl transferase|g__Staphylococcus.s__Staphylococcus_epidermidis	87.2800453490
+UniRef50_Q4L4I8: Prolipoprotein diacylglyceryl transferase|unclassified	0.1644492467
+UniRef50_B6A550	87.4256681895
+UniRef50_B6A550|g__Rhodobacter.s__Rhodobacter_sphaeroides	87.4256681895
+UniRef50_A1B1I9	87.4169109721
+UniRef50_A1B1I9|g__Rhodobacter.s__Rhodobacter_sphaeroides	87.4169109721
+UniRef50_Q6GIW1: UPF0178 protein SAR0734	87.3983839219
+UniRef50_Q6GIW1: UPF0178 protein SAR0734|g__Staphylococcus.s__Staphylococcus_aureus	67.5017062261
+UniRef50_Q6GIW1: UPF0178 protein SAR0734|g__Staphylococcus.s__Staphylococcus_epidermidis	18.9962050767
+UniRef50_Q6GIW1: UPF0178 protein SAR0734|unclassified	0.9004726191
+UniRef50_Q8CNT0: Abortive phage resistance protein	87.3693664295
+UniRef50_Q8CNT0: Abortive phage resistance protein|g__Staphylococcus.s__Staphylococcus_epidermidis	87.3693664295
+UniRef50_C6SSX7	87.3518638225
+UniRef50_C6SSX7|g__Streptococcus.s__Streptococcus_mutans	87.3518638225
+UniRef50_Q8CP80: Maltose/maltodextrin transport permease-like protein	87.3428199173
+UniRef50_Q8CP80: Maltose/maltodextrin transport permease-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	87.3428199173
+UniRef50_I4E0M5: Cation efflux family protein	87.3419894224
+UniRef50_I4E0M5: Cation efflux family protein|g__Streptococcus.s__Streptococcus_mutans	78.6956463629
+UniRef50_I4E0M5: Cation efflux family protein|g__Streptococcus.s__Streptococcus_agalactiae	8.6463430594
+UniRef50_Q3IV96	87.3317626092
+UniRef50_Q3IV96|g__Rhodobacter.s__Rhodobacter_sphaeroides	86.7317387292
+UniRef50_Q3IV96|unclassified	0.6000238800
+UniRef50_T1Y8J8: Short-chain dehydrogenase/reductase family protein	87.3284016049
+UniRef50_T1Y8J8: Short-chain dehydrogenase/reductase family protein|g__Staphylococcus.s__Staphylococcus_aureus	87.3284016049
+UniRef50_A0R8M9: Gluconate kinase, FGGY family	87.3224678926
+UniRef50_A0R8M9: Gluconate kinase, FGGY family|g__Staphylococcus.s__Staphylococcus_epidermidis	87.3224678926
+UniRef50_Q3J1P4	87.2982816545
+UniRef50_Q3J1P4|g__Rhodobacter.s__Rhodobacter_sphaeroides	82.8499343543
+UniRef50_Q3J1P4|unclassified	4.4483473002
+UniRef50_V6QG29: Type III restriction enzyme, res subunit	87.2805065901
+UniRef50_V6QG29: Type III restriction enzyme, res subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	87.2805065901
+UniRef50_Q2FER8: Energy-coupling factor transporter ATP-binding protein EcfA2	87.2483169837
+UniRef50_Q2FER8: Energy-coupling factor transporter ATP-binding protein EcfA2|g__Staphylococcus.s__Staphylococcus_aureus	87.1820314164
+UniRef50_Q2FER8: Energy-coupling factor transporter ATP-binding protein EcfA2|unclassified	0.0662855673
+UniRef50_Q1JJ05: tRNA binding domain protein	87.2159145319
+UniRef50_Q1JJ05: tRNA binding domain protein|g__Streptococcus.s__Streptococcus_mutans	81.1183535562
+UniRef50_Q1JJ05: tRNA binding domain protein|g__Streptococcus.s__Streptococcus_agalactiae	6.0975609756
+UniRef50_O05410: Probable metal-binding protein YrpE	87.1348963760
+UniRef50_O05410: Probable metal-binding protein YrpE|g__Rhodobacter.s__Rhodobacter_sphaeroides	87.1348963760
+UniRef50_Q1WTX2: Orotidine 5'-phosphate decarboxylase	87.0644294517
+UniRef50_Q1WTX2: Orotidine 5'-phosphate decarboxylase|g__Staphylococcus.s__Staphylococcus_aureus	86.9986262938
+UniRef50_Q1WTX2: Orotidine 5'-phosphate decarboxylase|unclassified	0.0658031579
+UniRef50_Q8CNS7: Replication-associated protein	87.0643686090
+UniRef50_Q8CNS7: Replication-associated protein|g__Staphylococcus.s__Staphylococcus_epidermidis	85.8269129005
+UniRef50_Q8CNS7: Replication-associated protein|unclassified	1.2374557085
+UniRef50_Q87IM1: Tryptophan synthase beta chain 2	87.0403997836
+UniRef50_Q87IM1: Tryptophan synthase beta chain 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	82.9955700892
+UniRef50_Q87IM1: Tryptophan synthase beta chain 2|unclassified	4.0448296944
+UniRef50_W8TU36: Membrane protein	86.9767303475
+UniRef50_W8TU36: Membrane protein|g__Staphylococcus.s__Staphylococcus_aureus	86.9039099334
+UniRef50_W8TU36: Membrane protein|unclassified	0.0728204141
+UniRef50_A6LY18: Small acid-soluble spore protein, alpha/beta type	86.9565217391
+UniRef50_A6LY18: Small acid-soluble spore protein, alpha/beta type|g__Clostridium.s__Clostridium_beijerinckii	86.9565217391
+UniRef50_Q3IW30: PreQ(0) biosynthesis protein QueC	86.9154280580
+UniRef50_Q3IW30: PreQ(0) biosynthesis protein QueC|g__Rhodobacter.s__Rhodobacter_sphaeroides	86.9154280580
+UniRef50_A8LRN8	86.9134434554
+UniRef50_A8LRN8|g__Rhodobacter.s__Rhodobacter_sphaeroides	85.9161114493
+UniRef50_A8LRN8|unclassified	0.9973320061
+UniRef50_T1YC99: 8-amino-7-oxononanoate synthase	86.8859609114
+UniRef50_T1YC99: 8-amino-7-oxononanoate synthase|g__Staphylococcus.s__Staphylococcus_aureus	86.8859609114
+UniRef50_Q9KA77: Translation initiation factor IF-2	86.8544850634
+UniRef50_Q9KA77: Translation initiation factor IF-2|g__Staphylococcus.s__Staphylococcus_epidermidis	86.8544850634
+UniRef50_D9RNU6: Ferrichrome ABC transporter subunit	86.8424083205
+UniRef50_D9RNU6: Ferrichrome ABC transporter subunit|g__Staphylococcus.s__Staphylococcus_aureus	86.7970188810
+UniRef50_D9RNU6: Ferrichrome ABC transporter subunit|unclassified	0.0453894395
+UniRef50_Q8CNU7: Multidrug resistance protein-like protein	86.8036771601
+UniRef50_Q8CNU7: Multidrug resistance protein-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	86.8036771601
+UniRef50_P08190: Protein FimG	86.7912272038
+UniRef50_P08190: Protein FimG|g__Escherichia.s__Escherichia_coli	86.7912272038
+UniRef50_A1B903: Amino acid/amide ABC transporter ATP-binding protein 1, HAAT family	86.7552351337
+UniRef50_A1B903: Amino acid/amide ABC transporter ATP-binding protein 1, HAAT family|g__Rhodobacter.s__Rhodobacter_sphaeroides	86.7552351337
+UniRef50_O34996: DNA polymerase I	86.7325598479
+UniRef50_O34996: DNA polymerase I|g__Staphylococcus.s__Staphylococcus_aureus	86.7325598479
+UniRef50_T1Y8L2: Oligopeptide-binding protein oppA	86.7167642572
+UniRef50_T1Y8L2: Oligopeptide-binding protein oppA|g__Staphylococcus.s__Staphylococcus_aureus	86.7167642572
+UniRef50_Q2YYG7	86.6827283789
+UniRef50_Q2YYG7|g__Staphylococcus.s__Staphylococcus_aureus	86.6827283789
+UniRef50_A7X235: N-(5'-phosphoribosyl)anthranilate isomerase	86.6740383324
+UniRef50_A7X235: N-(5'-phosphoribosyl)anthranilate isomerase|g__Staphylococcus.s__Staphylococcus_aureus	86.6740383324
+UniRef50_Q52671: Sarcosine oxidase subunit beta	86.6369847056
+UniRef50_Q52671: Sarcosine oxidase subunit beta|g__Rhodobacter.s__Rhodobacter_sphaeroides	81.7521020952
+UniRef50_Q52671: Sarcosine oxidase subunit beta|unclassified	4.8848826104
+UniRef50_D3QZW7	86.5974856879
+UniRef50_D3QZW7|g__Streptococcus.s__Streptococcus_mutans	86.5974856879
+UniRef50_A5UNV5	86.5766589563
+UniRef50_A5UNV5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	86.5766589563
+UniRef50_E6V5R9: Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein	86.5314981118
+UniRef50_E6V5R9: Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	86.5314981118
+UniRef50_P17054: Phytoene desaturase (neurosporene-forming)	86.5066189292
+UniRef50_P17054: Phytoene desaturase (neurosporene-forming)|g__Rhodobacter.s__Rhodobacter_sphaeroides	86.2507759396
+UniRef50_P17054: Phytoene desaturase (neurosporene-forming)|unclassified	0.2558429897
+UniRef50_Q8FAI6: L-ribulose-5-phosphate 4-epimerase UlaF	86.5031715391
+UniRef50_Q8FAI6: L-ribulose-5-phosphate 4-epimerase UlaF|g__Escherichia.s__Escherichia_coli	84.8417543203
+UniRef50_Q8FAI6: L-ribulose-5-phosphate 4-epimerase UlaF|g__Clostridium.s__Clostridium_beijerinckii	1.5290519878
+UniRef50_Q8FAI6: L-ribulose-5-phosphate 4-epimerase UlaF|unclassified	0.1323652310
+UniRef50_G8PVZ6: D,D-dipeptide transport system permease protein DdpC	86.4188173629
+UniRef50_G8PVZ6: D,D-dipeptide transport system permease protein DdpC|g__Rhodobacter.s__Rhodobacter_sphaeroides	86.4188173629
+UniRef50_I0C528	86.4071016176
+UniRef50_I0C528|g__Staphylococcus.s__Staphylococcus_aureus	86.4071016176
+UniRef50_Q3IVR7	86.3681657642
+UniRef50_Q3IVR7|g__Rhodobacter.s__Rhodobacter_sphaeroides	85.8372552025
+UniRef50_Q3IVR7|unclassified	0.5309105617
+UniRef50_Q8CXJ8: Chloramphenicol resistance protein (Efflux protein)	86.3123257253
+UniRef50_Q8CXJ8: Chloramphenicol resistance protein (Efflux protein)|g__Staphylococcus.s__Staphylococcus_epidermidis	86.3123257253
+UniRef50_F8KL74	86.3110423653
+UniRef50_F8KL74|g__Staphylococcus.s__Staphylococcus_aureus	86.3110423653
+UniRef50_B1ZKW6: 40-residue YVTN family beta-propeller repeat protein	86.3057108610
+UniRef50_B1ZKW6: 40-residue YVTN family beta-propeller repeat protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	84.7686176230
+UniRef50_B1ZKW6: 40-residue YVTN family beta-propeller repeat protein|unclassified	1.5370932379
+UniRef50_P43270: Thermonuclease	86.2281994740
+UniRef50_P43270: Thermonuclease|g__Staphylococcus.s__Staphylococcus_aureus	62.8881528667
+UniRef50_P43270: Thermonuclease|g__Staphylococcus.s__Staphylococcus_epidermidis	23.3400466074
+UniRef50_Q4L686: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	86.2030715978
+UniRef50_Q4L686: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	86.2030715978
+UniRef50_C5MZ73	86.1740626360
+UniRef50_C5MZ73|g__Staphylococcus.s__Staphylococcus_aureus	86.1740626360
+UniRef50_W0ILL7: Membrane protein	86.1543198281
+UniRef50_W0ILL7: Membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	85.7237670463
+UniRef50_W0ILL7: Membrane protein|unclassified	0.4305527818
+UniRef50_P28812	86.1315248374
+UniRef50_P28812|g__Rhodobacter.s__Rhodobacter_sphaeroides	83.9011160945
+UniRef50_P28812|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2304087429
+UniRef50_L7WWS4	86.1114619875
+UniRef50_L7WWS4|g__Staphylococcus.s__Staphylococcus_epidermidis	86.1114619875
+UniRef50_A1BAZ5	86.0818576377
+UniRef50_A1BAZ5|g__Rhodobacter.s__Rhodobacter_sphaeroides	85.8539812105
+UniRef50_A1BAZ5|unclassified	0.2278764272
+UniRef50_Q5HKE5: Serine protease	86.0416010057
+UniRef50_Q5HKE5: Serine protease|g__Staphylococcus.s__Staphylococcus_epidermidis	86.0416010057
+UniRef50_A6QIJ7: Endodeoxyribonuclease RusA	86.0388835485
+UniRef50_A6QIJ7: Endodeoxyribonuclease RusA|g__Staphylococcus.s__Staphylococcus_aureus	86.0388835485
+UniRef50_Q5HL84: Gamma-glutamyltranspeptidase	86.0355444253
+UniRef50_Q5HL84: Gamma-glutamyltranspeptidase|g__Staphylococcus.s__Staphylococcus_epidermidis	86.0355444253
+UniRef50_Q8CN58: Beta-lactamase	86.0227913037
+UniRef50_Q8CN58: Beta-lactamase|g__Staphylococcus.s__Staphylococcus_epidermidis	86.0227913037
+UniRef50_Q5HPK8: Catalase	86.0122262879
+UniRef50_Q5HPK8: Catalase|g__Staphylococcus.s__Staphylococcus_epidermidis	85.9137289602
+UniRef50_Q5HPK8: Catalase|unclassified	0.0984973277
+UniRef50_A0A023X187: Oligopeptide/dipeptide ABC transporter, ATP-binding protein, C-terminal domain	86.0051547095
+UniRef50_A0A023X187: Oligopeptide/dipeptide ABC transporter, ATP-binding protein, C-terminal domain|g__Staphylococcus.s__Staphylococcus_epidermidis	86.0051547095
+UniRef50_A3PFZ4: Peptidase S16, lon domain protein	85.9313519174
+UniRef50_A3PFZ4: Peptidase S16, lon domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	85.9313519174
+UniRef50_G8V619: HMGL-like family protein	85.8618614698
+UniRef50_G8V619: HMGL-like family protein|g__Staphylococcus.s__Staphylococcus_aureus	85.8618614698
+UniRef50_A3PQF0: Extracellular solute-binding protein, family 3	85.8208171440
+UniRef50_A3PQF0: Extracellular solute-binding protein, family 3|g__Rhodobacter.s__Rhodobacter_sphaeroides	85.8208171440
+UniRef50_B9DL96: SirB protein	85.8145308311
+UniRef50_B9DL96: SirB protein|g__Staphylococcus.s__Staphylococcus_epidermidis	85.8145308311
+UniRef50_Q6W1T0: Transporter	85.7808751683
+UniRef50_Q6W1T0: Transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	85.7808751683
+UniRef50_Q5HR11: ATP-dependent DNA helicase RecQ	85.7123925125
+UniRef50_Q5HR11: ATP-dependent DNA helicase RecQ|g__Staphylococcus.s__Staphylococcus_epidermidis	85.7123925125
+UniRef50_E8SJH3: Integral membrane protein	85.6603588360
+UniRef50_E8SJH3: Integral membrane protein|g__Staphylococcus.s__Staphylococcus_aureus	85.6603588360
+UniRef50_Q57060	85.6534545572
+UniRef50_Q57060|g__Staphylococcus.s__Staphylococcus_aureus	85.6534545572
+UniRef50_Q9PDT5: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase	85.6510707135
+UniRef50_Q9PDT5: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|g__Escherichia.s__Escherichia_coli	85.6510707135
+UniRef50_C3BKF8: Glucose-6-phosphate 1-dehydrogenase	85.6419140355
+UniRef50_C3BKF8: Glucose-6-phosphate 1-dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	85.6419140355
+UniRef50_Q8CQ95: Histidinol dehydrogenase	85.6296890641
+UniRef50_Q8CQ95: Histidinol dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	85.4421008648
+UniRef50_Q8CQ95: Histidinol dehydrogenase|unclassified	0.1875881992
+UniRef50_Q97P97: Ribosomal silencing factor RsfS	85.6228429629
+UniRef50_Q97P97: Ribosomal silencing factor RsfS|g__Streptococcus.s__Streptococcus_mutans	85.6228429629
+UniRef50_Q5LUZ4: Prolipoprotein diacylglyceryl transferase	85.5677801810
+UniRef50_Q5LUZ4: Prolipoprotein diacylglyceryl transferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	82.4908789488
+UniRef50_Q5LUZ4: Prolipoprotein diacylglyceryl transferase|unclassified	3.0769012323
+UniRef50_P26277: Chlorophyllide reductase subunit Z	85.5583527072
+UniRef50_P26277: Chlorophyllide reductase subunit Z|g__Rhodobacter.s__Rhodobacter_sphaeroides	81.5604329425
+UniRef50_P26277: Chlorophyllide reductase subunit Z|unclassified	3.9979197647
+UniRef50_B9KGQ3: Transcriptional activator protein (CzcR)	85.5173986120
+UniRef50_B9KGQ3: Transcriptional activator protein (CzcR)|g__Rhodobacter.s__Rhodobacter_sphaeroides	85.5173986120
+UniRef50_H3VSI0: GA module	85.4285469592
+UniRef50_H3VSI0: GA module|g__Staphylococcus.s__Staphylococcus_epidermidis	85.4285469592
+UniRef50_T1K2G0	85.2668033179
+UniRef50_T1K2G0|g__Rhodobacter.s__Rhodobacter_sphaeroides	85.2668033179
+UniRef50_Q6GK24: Protein EssC	85.2185765507
+UniRef50_Q6GK24: Protein EssC|g__Staphylococcus.s__Staphylococcus_aureus	85.2185765507
+UniRef50_P31459: 2-dehydro-3-deoxygalactonokinase	85.2044182905
+UniRef50_P31459: 2-dehydro-3-deoxygalactonokinase|g__Escherichia.s__Escherichia_coli	85.2044182905
+UniRef50_A4WT93	85.1986361577
+UniRef50_A4WT93|g__Rhodobacter.s__Rhodobacter_sphaeroides	85.1986361577
+UniRef50_Q5HRQ3: Peptidyl-tRNA hydrolase	85.1806777541
+UniRef50_Q5HRQ3: Peptidyl-tRNA hydrolase|g__Staphylococcus.s__Staphylococcus_epidermidis	84.3695810269
+UniRef50_Q5HRQ3: Peptidyl-tRNA hydrolase|unclassified	0.8110967272
+UniRef50_I0C756: Phage infection protein	85.1675566989
+UniRef50_I0C756: Phage infection protein|g__Staphylococcus.s__Staphylococcus_aureus	85.1675566989
+UniRef50_E4PKC3: Extracellular solute-binding protein, family 1	85.1639357312
+UniRef50_E4PKC3: Extracellular solute-binding protein, family 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	85.1154393901
+UniRef50_E4PKC3: Extracellular solute-binding protein, family 1|unclassified	0.0484963412
+UniRef50_P42405: 3-hexulose-6-phosphate synthase	85.1018416201
+UniRef50_P42405: 3-hexulose-6-phosphate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	84.3378602401
+UniRef50_P42405: 3-hexulose-6-phosphate synthase|unclassified	0.7639813800
+UniRef50_D3QEV8: ABC transporter, ATP-binding protein	85.0767895017
+UniRef50_D3QEV8: ABC transporter, ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	85.0767895017
+UniRef50_Q28TQ1: Type II secretion system protein E	85.0526931012
+UniRef50_Q28TQ1: Type II secretion system protein E|g__Rhodobacter.s__Rhodobacter_sphaeroides	85.0526931012
+UniRef50_Q8CQA8: Surfactin synthetase	84.9956556801
+UniRef50_Q8CQA8: Surfactin synthetase|g__Staphylococcus.s__Staphylococcus_epidermidis	84.9956556801
+UniRef50_Q168G3: MFS protein, putative	84.9882250789
+UniRef50_Q168G3: MFS protein, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	84.9882250789
+UniRef50_D2NA34	84.9754483233
+UniRef50_D2NA34|g__Staphylococcus.s__Staphylococcus_aureus	84.5902488655
+UniRef50_D2NA34|unclassified	0.3851994579
+UniRef50_Q8CRZ9	84.9586490396
+UniRef50_Q8CRZ9|g__Staphylococcus.s__Staphylococcus_epidermidis	84.9586490396
+UniRef50_Q4L732: DNA polymerase	84.9572233056
+UniRef50_Q4L732: DNA polymerase|g__Staphylococcus.s__Staphylococcus_epidermidis	84.9572233056
+UniRef50_Q4L4Y7: Coenzyme A disulfide reductase	84.9127339447
+UniRef50_Q4L4Y7: Coenzyme A disulfide reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	84.9127339447
+UniRef50_A4AR30: Dihydrolipoyl dehydrogenase	84.8602859010
+UniRef50_A4AR30: Dihydrolipoyl dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	84.8602859010
+UniRef50_U5NML2	84.8176262851
+UniRef50_U5NML2|unclassified	84.8176262851
+UniRef50_I6STQ9	84.7896069857
+UniRef50_I6STQ9|g__Streptococcus.s__Streptococcus_mutans	84.7896069857
+UniRef50_Q3IV35	84.7690808326
+UniRef50_Q3IV35|g__Rhodobacter.s__Rhodobacter_sphaeroides	60.4092713974
+UniRef50_Q3IV35|unclassified	24.3598094352
+UniRef50_Q5HKF0: ATP-dependent dethiobiotin synthetase BioD	84.7652532989
+UniRef50_Q5HKF0: ATP-dependent dethiobiotin synthetase BioD|g__Staphylococcus.s__Staphylococcus_epidermidis	84.7652532989
+UniRef50_L7WTJ0: Lipase	84.7068194578
+UniRef50_L7WTJ0: Lipase|g__Staphylococcus.s__Staphylococcus_epidermidis	84.7068194578
+UniRef50_D6SDW7: Acetate CoA-transferase YdiF	84.6556901096
+UniRef50_D6SDW7: Acetate CoA-transferase YdiF|g__Staphylococcus.s__Staphylococcus_aureus	84.6556901096
+UniRef50_Q49VL4	84.6002297659
+UniRef50_Q49VL4|g__Staphylococcus.s__Staphylococcus_aureus	84.6002297659
+UniRef50_A4WQ10	84.5535301601
+UniRef50_A4WQ10|g__Rhodobacter.s__Rhodobacter_sphaeroides	67.3145052110
+UniRef50_A4WQ10|unclassified	17.2390249491
+UniRef50_Q9FFR3: 6-phosphogluconate dehydrogenase, decarboxylating 2, chloroplastic	84.5534704595
+UniRef50_Q9FFR3: 6-phosphogluconate dehydrogenase, decarboxylating 2, chloroplastic|g__Staphylococcus.s__Staphylococcus_aureus	84.5534704595
+UniRef50_I7EIU7	84.5372731737
+UniRef50_I7EIU7|g__Rhodobacter.s__Rhodobacter_sphaeroides	79.3500081946
+UniRef50_I7EIU7|unclassified	5.1872649791
+UniRef50_Q3J0W1	84.5243499337
+UniRef50_Q3J0W1|g__Rhodobacter.s__Rhodobacter_sphaeroides	84.4910602456
+UniRef50_Q3J0W1|unclassified	0.0332896881
+UniRef50_Q5LWK7: ABC transporter, periplasmic substrate-binding protein	84.5132689624
+UniRef50_Q5LWK7: ABC transporter, periplasmic substrate-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	84.5132689624
+UniRef50_M4ZCC6: Acetylornithine deacetylase	84.4683651927
+UniRef50_M4ZCC6: Acetylornithine deacetylase|g__Streptococcus.s__Streptococcus_mutans	84.4683651927
+UniRef50_C7ZTX4: SSS sodium solute transporter superfamily protein	84.4171737178
+UniRef50_C7ZTX4: SSS sodium solute transporter superfamily protein|g__Staphylococcus.s__Staphylococcus_aureus	84.4171737178
+UniRef50_A1B5Y9: PTS system fructose subfamily IIA component	84.4155844156
+UniRef50_A1B5Y9: PTS system fructose subfamily IIA component|g__Rhodobacter.s__Rhodobacter_sphaeroides	84.4155844156
+UniRef50_O34546	84.4137771536
+UniRef50_O34546|g__Staphylococcus.s__Staphylococcus_aureus	84.4137771536
+UniRef50_D5ALJ5: Phage integrase	84.3610013660
+UniRef50_D5ALJ5: Phage integrase|g__Rhodobacter.s__Rhodobacter_sphaeroides	84.3610013660
+UniRef50_A5IU36	84.3465993308
+UniRef50_A5IU36|g__Staphylococcus.s__Staphylococcus_aureus	84.3465993308
+UniRef50_Q2YY67: L-threonine dehydratase catabolic TdcB	84.3338720528
+UniRef50_Q2YY67: L-threonine dehydratase catabolic TdcB|g__Staphylococcus.s__Staphylococcus_aureus	84.3338720528
+UniRef50_E8SII5: Single-stranded-DNA-specific exonuclease RecJ	84.3017336259
+UniRef50_E8SII5: Single-stranded-DNA-specific exonuclease RecJ|g__Staphylococcus.s__Staphylococcus_epidermidis	84.3017336259
+UniRef50_D3QC45: D-3-phosphoglycerate dehydrogenase	84.2801746913
+UniRef50_D3QC45: D-3-phosphoglycerate dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	84.2801746913
+UniRef50_Q8CPV5: NADH dehydrogenase-like protein SE_0635	84.2697284741
+UniRef50_Q8CPV5: NADH dehydrogenase-like protein SE_0635|g__Staphylococcus.s__Staphylococcus_epidermidis	84.2697284741
+UniRef50_D9RCU3: ABC-type nitrate/sulfonate/bicarbonate transporter, TauA	84.2537942768
+UniRef50_D9RCU3: ABC-type nitrate/sulfonate/bicarbonate transporter, TauA|g__Staphylococcus.s__Staphylococcus_aureus	84.2537942768
+UniRef50_P0A0Q1	84.2253968188
+UniRef50_P0A0Q1|g__Staphylococcus.s__Staphylococcus_epidermidis	44.2530005612
+UniRef50_P0A0Q1|g__Staphylococcus.s__Staphylococcus_aureus	39.9723962576
+UniRef50_I0JA88	84.2145677864
+UniRef50_I0JA88|g__Staphylococcus.s__Staphylococcus_aureus	84.2145677864
+UniRef50_Q5HNZ9: 5-formyltetrahydrofolate cyclo-ligase family protein	84.2061066051
+UniRef50_Q5HNZ9: 5-formyltetrahydrofolate cyclo-ligase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	84.2061066051
+UniRef50_O33812	84.1880087005
+UniRef50_O33812|g__Staphylococcus.s__Staphylococcus_epidermidis	84.1880087005
+UniRef50_K0M4V6	84.1820959817
+UniRef50_K0M4V6|g__Staphylococcus.s__Staphylococcus_aureus	84.1820959817
+UniRef50_C0QXM0: Pyrrolidone-carboxylate peptidase	84.1722852470
+UniRef50_C0QXM0: Pyrrolidone-carboxylate peptidase|g__Staphylococcus.s__Staphylococcus_epidermidis	84.1722852470
+UniRef50_A4GAA6: ABC transporter, permease component	84.1633539365
+UniRef50_A4GAA6: ABC transporter, permease component|g__Rhodobacter.s__Rhodobacter_sphaeroides	84.1633539365
+UniRef50_Q48UU5: Dephospho-CoA kinase	84.1615146584
+UniRef50_Q48UU5: Dephospho-CoA kinase|g__Streptococcus.s__Streptococcus_mutans	82.1895213300
+UniRef50_Q48UU5: Dephospho-CoA kinase|g__Streptococcus.s__Streptococcus_agalactiae	1.6920473773
+UniRef50_Q48UU5: Dephospho-CoA kinase|unclassified	0.2799459510
+UniRef50_B4EC93	84.1235200415
+UniRef50_B4EC93|g__Rhodobacter.s__Rhodobacter_sphaeroides	79.1250671480
+UniRef50_B4EC93|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3512603916
+UniRef50_B4EC93|unclassified	0.6471925019
+UniRef50_A0A032VR07	84.0993294316
+UniRef50_A0A032VR07|g__Staphylococcus.s__Staphylococcus_aureus	84.0993294316
+UniRef50_A7X763: Imidazole glycerol phosphate synthase subunit HisF	84.0756423967
+UniRef50_A7X763: Imidazole glycerol phosphate synthase subunit HisF|g__Staphylococcus.s__Staphylococcus_aureus	83.3016612270
+UniRef50_A7X763: Imidazole glycerol phosphate synthase subunit HisF|unclassified	0.7739811698
+UniRef50_Q2FHE2: DNA mismatch repair protein MutL	84.0678252331
+UniRef50_Q2FHE2: DNA mismatch repair protein MutL|g__Staphylococcus.s__Staphylococcus_aureus	84.0678252331
+UniRef50_UPI0000379EF0: hypothetical protein	84.0419338570
+UniRef50_UPI0000379EF0: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	68.1376480494
+UniRef50_UPI0000379EF0: hypothetical protein|unclassified	15.9042858076
+UniRef50_H6P8S4: Acetoin dehydrogenase E1 component(TPP-dependent alpha subunit)	84.0344523025
+UniRef50_H6P8S4: Acetoin dehydrogenase E1 component(TPP-dependent alpha subunit)|g__Streptococcus.s__Streptococcus_mutans	75.7644466367
+UniRef50_H6P8S4: Acetoin dehydrogenase E1 component(TPP-dependent alpha subunit)|g__Streptococcus.s__Streptococcus_agalactiae	8.2700056657
+UniRef50_Q5NZ09	83.9509565181
+UniRef50_Q5NZ09|unclassified	83.9509565181
+UniRef50_I1ZNE0: SpoU rRNA methylase family protein	83.8391144714
+UniRef50_I1ZNE0: SpoU rRNA methylase family protein|g__Streptococcus.s__Streptococcus_mutans	80.5011875787
+UniRef50_I1ZNE0: SpoU rRNA methylase family protein|g__Streptococcus.s__Streptococcus_agalactiae	3.3379268927
+UniRef50_Q3IVN2	83.8383838384
+UniRef50_Q3IVN2|g__Rhodobacter.s__Rhodobacter_sphaeroides	71.3383838384
+UniRef50_Q3IVN2|unclassified	12.5000000000
+UniRef50_Q49ZB7: UPF0457 protein SSP0714	83.8218443740
+UniRef50_Q49ZB7: UPF0457 protein SSP0714|g__Staphylococcus.s__Staphylococcus_aureus	83.8218443740
+UniRef50_C5N0Y1	83.8015106465
+UniRef50_C5N0Y1|g__Staphylococcus.s__Staphylococcus_aureus	82.4734893981
+UniRef50_C5N0Y1|unclassified	1.3280212483
+UniRef50_I6T523	83.7837121132
+UniRef50_I6T523|g__Streptococcus.s__Streptococcus_mutans	83.7837121132
+UniRef50_Q5HNN4: Uroporphyrinogen-III synthase	83.7546201868
+UniRef50_Q5HNN4: Uroporphyrinogen-III synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	83.7546201868
+UniRef50_G8RAR9: Proline dehydrogenase (Prolineoxidase)	83.7359494743
+UniRef50_G8RAR9: Proline dehydrogenase (Prolineoxidase)|g__Staphylococcus.s__Staphylococcus_aureus	83.7359494743
+UniRef50_A5IQG6: Alpha/beta hydrolase fold	83.7322826010
+UniRef50_A5IQG6: Alpha/beta hydrolase fold|g__Staphylococcus.s__Staphylococcus_aureus	83.7322826010
+UniRef50_Q4L5K1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	83.7230969337
+UniRef50_Q4L5K1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	82.2786656478
+UniRef50_Q4L5K1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	1.4444312859
+UniRef50_G7ZTG3	83.7211748835
+UniRef50_G7ZTG3|g__Staphylococcus.s__Staphylococcus_aureus	83.7211748835
+UniRef50_Q8CS03	83.7040849555
+UniRef50_Q8CS03|g__Staphylococcus.s__Staphylococcus_epidermidis	83.7040849555
+UniRef50_Q5LZ68: Ribonuclease 3	83.7027861799
+UniRef50_Q5LZ68: Ribonuclease 3|g__Streptococcus.s__Streptococcus_mutans	80.6997831769
+UniRef50_Q5LZ68: Ribonuclease 3|g__Streptococcus.s__Streptococcus_agalactiae	3.0030030030
+UniRef50_Q03736: Cytochrome c oxidase subunit 2	83.6818570976
+UniRef50_Q03736: Cytochrome c oxidase subunit 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	82.5442006698
+UniRef50_Q03736: Cytochrome c oxidase subunit 2|unclassified	1.1376564278
+UniRef50_Q5HL89	83.6800183883
+UniRef50_Q5HL89|g__Staphylococcus.s__Staphylococcus_epidermidis	83.6800183883
+UniRef50_E6JZW3: Amino acid permease	83.6764289509
+UniRef50_E6JZW3: Amino acid permease|g__Staphylococcus.s__Staphylococcus_epidermidis	83.6764289509
+UniRef50_G4L4Q8: Cation-transporting ATPase	83.6731380914
+UniRef50_G4L4Q8: Cation-transporting ATPase|g__Staphylococcus.s__Staphylococcus_epidermidis	42.6416888360
+UniRef50_G4L4Q8: Cation-transporting ATPase|g__Staphylococcus.s__Staphylococcus_aureus	41.0314492554
+UniRef50_G8V5E5: Coagulase family protein	83.6609299909
+UniRef50_G8V5E5: Coagulase family protein|g__Staphylococcus.s__Staphylococcus_aureus	83.6609299909
+UniRef50_Q46339: Formyltetrahydrofolate deformylase	83.6583091791
+UniRef50_Q46339: Formyltetrahydrofolate deformylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	83.3549777402
+UniRef50_Q46339: Formyltetrahydrofolate deformylase|unclassified	0.3033314388
+UniRef50_D5BRX6: Inner-membrane translocator	83.6334391191
+UniRef50_D5BRX6: Inner-membrane translocator|g__Rhodobacter.s__Rhodobacter_sphaeroides	83.6334391191
+UniRef50_P45694: Transketolase	83.6332869382
+UniRef50_P45694: Transketolase|g__Staphylococcus.s__Staphylococcus_epidermidis	83.1661900853
+UniRef50_P45694: Transketolase|unclassified	0.4670968529
+UniRef50_G8V4E9: ATP-dependent DNA helicase RecQ	83.6115011248
+UniRef50_G8V4E9: ATP-dependent DNA helicase RecQ|g__Staphylococcus.s__Staphylococcus_aureus	83.6115011248
+UniRef50_P37940: 2-oxoisovalerate dehydrogenase subunit alpha	83.6040794059
+UniRef50_P37940: 2-oxoisovalerate dehydrogenase subunit alpha|g__Staphylococcus.s__Staphylococcus_aureus	83.6040794059
+UniRef50_B9KJA0: Acetyl-CoA hydrolase	83.5839547948
+UniRef50_B9KJA0: Acetyl-CoA hydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	83.5839547948
+UniRef50_G8R9L3: Branched-chain amino acid transport systemcarrier protein	83.5720801259
+UniRef50_G8R9L3: Branched-chain amino acid transport systemcarrier protein|g__Staphylococcus.s__Staphylococcus_aureus	83.5720801259
+UniRef50_E6K098: ABC transporter, substrate-binding protein, QAT family	83.5367883846
+UniRef50_E6K098: ABC transporter, substrate-binding protein, QAT family|g__Staphylococcus.s__Staphylococcus_aureus	83.5367883846
+UniRef50_W8RUR9: Iron binding protein SufA for iron-sulfur cluster assembly	83.5224448870
+UniRef50_W8RUR9: Iron binding protein SufA for iron-sulfur cluster assembly|g__Rhodobacter.s__Rhodobacter_sphaeroides	83.5224448870
+UniRef50_B8I2Q1: LexA repressor	83.5150007201
+UniRef50_B8I2Q1: LexA repressor|g__Staphylococcus.s__Staphylococcus_aureus	82.5155982029
+UniRef50_B8I2Q1: LexA repressor|unclassified	0.9994025172
+UniRef50_Q9M8L4: Glycerol kinase	83.5077002555
+UniRef50_Q9M8L4: Glycerol kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	82.7639417012
+UniRef50_Q9M8L4: Glycerol kinase|g__Deinococcus.s__Deinococcus_radiodurans	0.6872852234
+UniRef50_Q9M8L4: Glycerol kinase|unclassified	0.0564733309
+UniRef50_B9E9D4: Respiratory nitrate reductase delta chain	83.5002632303
+UniRef50_B9E9D4: Respiratory nitrate reductase delta chain|g__Staphylococcus.s__Staphylococcus_aureus	83.5002632303
+UniRef50_Q8CQE0: Galactosamine-containing minor teichoic acid biosynthesis protein	83.4929037049
+UniRef50_Q8CQE0: Galactosamine-containing minor teichoic acid biosynthesis protein|g__Staphylococcus.s__Staphylococcus_epidermidis	83.4929037049
+UniRef50_Q2YX92: High-affinity heme uptake system protein IsdE	83.4874764320
+UniRef50_Q2YX92: High-affinity heme uptake system protein IsdE|g__Staphylococcus.s__Staphylococcus_aureus	83.4874764320
+UniRef50_L7X2B6	83.4252360378
+UniRef50_L7X2B6|g__Staphylococcus.s__Staphylococcus_epidermidis	83.4252360378
+UniRef50_A3PGU0: Lytic transglycosylase, catalytic	83.3861971178
+UniRef50_A3PGU0: Lytic transglycosylase, catalytic|g__Rhodobacter.s__Rhodobacter_sphaeroides	79.2301026472
+UniRef50_A3PGU0: Lytic transglycosylase, catalytic|unclassified	4.1560944706
+UniRef50_A5IUB8	83.3333333333
+UniRef50_A5IUB8|g__Staphylococcus.s__Staphylococcus_aureus	83.3333333333
+UniRef50_Q2W0J7: Flagellar P-ring protein	83.3157122852
+UniRef50_Q2W0J7: Flagellar P-ring protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	83.3157122852
+UniRef50_D3HGD1	83.2783753175
+UniRef50_D3HGD1|g__Streptococcus.s__Streptococcus_mutans	83.2783753175
+UniRef50_P75915: Chaperone protein YcdY	83.2463140042
+UniRef50_P75915: Chaperone protein YcdY|g__Escherichia.s__Escherichia_coli	83.2463140042
+UniRef50_B1JZW0: Glutamate--putrescine ligase	83.2391876190
+UniRef50_B1JZW0: Glutamate--putrescine ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	74.6054642841
+UniRef50_B1JZW0: Glutamate--putrescine ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.6337233350
+UniRef50_A5UP04: Multimeric flavodoxin	83.1942604227
+UniRef50_A5UP04: Multimeric flavodoxin|g__Methanobrevibacter.s__Methanobrevibacter_smithii	83.1942604227
+UniRef50_Q8CNK0: Single-stranded DNA-binding protein	83.1814229145
+UniRef50_Q8CNK0: Single-stranded DNA-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	55.2652354059
+UniRef50_Q8CNK0: Single-stranded DNA-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	27.9161875087
+UniRef50_Q28L99: 50S ribosomal protein L25	83.1498946816
+UniRef50_Q28L99: 50S ribosomal protein L25|g__Rhodobacter.s__Rhodobacter_sphaeroides	83.1498946816
+UniRef50_A9IQ26	83.1339148014
+UniRef50_A9IQ26|g__Rhodobacter.s__Rhodobacter_sphaeroides	83.1339148014
+UniRef50_A8GM77: NADH-quinone oxidoreductase subunit F	83.0974708148
+UniRef50_A8GM77: NADH-quinone oxidoreductase subunit F|g__Rhodobacter.s__Rhodobacter_sphaeroides	82.9979573373
+UniRef50_A8GM77: NADH-quinone oxidoreductase subunit F|unclassified	0.0995134775
+UniRef50_E8SK14: Teichoic acid export ATP-binding protein TagH	83.0769935492
+UniRef50_E8SK14: Teichoic acid export ATP-binding protein TagH|g__Staphylococcus.s__Staphylococcus_epidermidis	83.0769935492
+UniRef50_X5DX47: Bacterial regulatory s, tetR family protein	83.0473880835
+UniRef50_X5DX47: Bacterial regulatory s, tetR family protein|g__Staphylococcus.s__Staphylococcus_aureus	83.0473880835
+UniRef50_P46354: Purine nucleoside phosphorylase 1	83.0314263392
+UniRef50_P46354: Purine nucleoside phosphorylase 1|g__Streptococcus.s__Streptococcus_mutans	83.0314263392
+UniRef50_K8DL52: Ribonuclease E	83.0094420558
+UniRef50_K8DL52: Ribonuclease E|g__Escherichia.s__Escherichia_coli	83.0094420558
+UniRef50_Q8CNG1: Alkaline shock protein 23	82.9970323309
+UniRef50_Q8CNG1: Alkaline shock protein 23|g__Staphylococcus.s__Staphylococcus_epidermidis	82.9970323309
+UniRef50_A5IRR8: Bacteriocin-associated integral membrane protein	82.9964962481
+UniRef50_A5IRR8: Bacteriocin-associated integral membrane protein|g__Staphylococcus.s__Staphylococcus_aureus	82.9769509940
+UniRef50_A5IRR8: Bacteriocin-associated integral membrane protein|unclassified	0.0195452541
+UniRef50_A5IQJ5: Serine-type D-Ala-D-Ala carboxypeptidase	82.9860428286
+UniRef50_A5IQJ5: Serine-type D-Ala-D-Ala carboxypeptidase|g__Staphylococcus.s__Staphylococcus_aureus	82.9860428286
+UniRef50_G8R9K4	82.9761854031
+UniRef50_G8R9K4|g__Staphylococcus.s__Staphylococcus_aureus	82.9761854031
+UniRef50_Q8CQW0	82.9694210587
+UniRef50_Q8CQW0|g__Staphylococcus.s__Staphylococcus_epidermidis	82.9694210587
+UniRef50_P0AEU9: Chaperone protein Skp	82.9456120767
+UniRef50_P0AEU9: Chaperone protein Skp|g__Escherichia.s__Escherichia_coli	82.9456120767
+UniRef50_D7A512: Phosphoesterase PA-phosphatase related protein	82.9061135178
+UniRef50_D7A512: Phosphoesterase PA-phosphatase related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	82.9061135178
+UniRef50_Q044B7: Translation initiation factor IF-2	82.8942366612
+UniRef50_Q044B7: Translation initiation factor IF-2|g__Staphylococcus.s__Staphylococcus_aureus	82.8942366612
+UniRef50_N0BAQ7: dTDP-4-dehydrorhamnose 3,5-epimerase	82.8503930961
+UniRef50_N0BAQ7: dTDP-4-dehydrorhamnose 3,5-epimerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	82.8503930961
+UniRef50_H0C7J0: Single-stranded-DNA-specific exonuclease RecJ	82.7810377724
+UniRef50_H0C7J0: Single-stranded-DNA-specific exonuclease RecJ|g__Staphylococcus.s__Staphylococcus_aureus	82.7810377724
+UniRef50_L7WY02: Aldo keto reductase	82.7506071539
+UniRef50_L7WY02: Aldo keto reductase|g__Staphylococcus.s__Staphylococcus_aureus	82.7506071539
+UniRef50_A7X6P6: Holin-like protein CidA	82.7428051185
+UniRef50_A7X6P6: Holin-like protein CidA|g__Staphylococcus.s__Staphylococcus_aureus	66.2139216828
+UniRef50_A7X6P6: Holin-like protein CidA|g__Staphylococcus.s__Staphylococcus_epidermidis	16.5288834357
+UniRef50_Q49Z00: Redox-sensing transcriptional repressor Rex	82.7281050353
+UniRef50_Q49Z00: Redox-sensing transcriptional repressor Rex|g__Staphylococcus.s__Staphylococcus_epidermidis	82.7281050353
+UniRef50_A3N352: N-acetylneuraminate lyase	82.6621800178
+UniRef50_A3N352: N-acetylneuraminate lyase|g__Staphylococcus.s__Staphylococcus_aureus	82.6621800178
+UniRef50_Q8RKJ0: Putative ribitol-5-phosphate dehydrogenase	82.6150100932
+UniRef50_Q8RKJ0: Putative ribitol-5-phosphate dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	82.6150100932
+UniRef50_Q5HKZ8: Uroporphyrin-III C-methyltransferase, putative	82.6135040377
+UniRef50_Q5HKZ8: Uroporphyrin-III C-methyltransferase, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	82.6135040377
+UniRef50_Q49WT2: Excinuclease ATPase subunit	82.5771982481
+UniRef50_Q49WT2: Excinuclease ATPase subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	82.5771982481
+UniRef50_Q5HMF5: L-threonine dehydratase biosynthetic IlvA	82.5771281984
+UniRef50_Q5HMF5: L-threonine dehydratase biosynthetic IlvA|g__Staphylococcus.s__Staphylococcus_epidermidis	82.4299770062
+UniRef50_Q5HMF5: L-threonine dehydratase biosynthetic IlvA|unclassified	0.1471511922
+UniRef50_A7X0F5: Na(+)/H(+) antiporter subunit G1	82.5736212657
+UniRef50_A7X0F5: Na(+)/H(+) antiporter subunit G1|g__Staphylococcus.s__Staphylococcus_epidermidis	50.9212008540
+UniRef50_A7X0F5: Na(+)/H(+) antiporter subunit G1|g__Staphylococcus.s__Staphylococcus_aureus	31.6524204116
+UniRef50_P76113: NADPH-dependent curcumin reductase	82.5691335211
+UniRef50_P76113: NADPH-dependent curcumin reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.1884768570
+UniRef50_P76113: NADPH-dependent curcumin reductase|g__Escherichia.s__Escherichia_coli	29.3806566641
+UniRef50_A1B479: NADH-quinone oxidoreductase subunit N	82.5574871513
+UniRef50_A1B479: NADH-quinone oxidoreductase subunit N|g__Rhodobacter.s__Rhodobacter_sphaeroides	80.7397153837
+UniRef50_A1B479: NADH-quinone oxidoreductase subunit N|unclassified	1.8177717676
+UniRef50_Q2YUZ7: Acetylglutamate kinase	82.5151737588
+UniRef50_Q2YUZ7: Acetylglutamate kinase|g__Staphylococcus.s__Staphylococcus_aureus	82.5151737588
+UniRef50_A8LTG8: NADH dehydrogenase (Quinone)	82.4772200973
+UniRef50_A8LTG8: NADH dehydrogenase (Quinone)|g__Rhodobacter.s__Rhodobacter_sphaeroides	82.4772200973
+UniRef50_A0A028WHC5: DNA polymerase III, alpha subunit	82.4720403789
+UniRef50_A0A028WHC5: DNA polymerase III, alpha subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	82.4720403789
+UniRef50_Q4L8H3: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	82.4552545054
+UniRef50_Q4L8H3: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	82.4552545054
+UniRef50_Q8CQB7: OpuCB protein	82.4503728421
+UniRef50_Q8CQB7: OpuCB protein|g__Staphylococcus.s__Staphylococcus_epidermidis	82.4503728421
+UniRef50_P29363: Threonine synthase	82.4479287072
+UniRef50_P29363: Threonine synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	72.8806905993
+UniRef50_P29363: Threonine synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.6761265590
+UniRef50_P29363: Threonine synthase|unclassified	0.8911115489
+UniRef50_P37252: Acetolactate synthase small subunit	82.4469178656
+UniRef50_P37252: Acetolactate synthase small subunit|g__Streptococcus.s__Streptococcus_mutans	82.4469178656
+UniRef50_A0A012NRC3	82.4260928994
+UniRef50_A0A012NRC3|g__Staphylococcus.s__Staphylococcus_aureus	82.1534172015
+UniRef50_A0A012NRC3|unclassified	0.2726756978
+UniRef50_Q3J3X0	82.4032902707
+UniRef50_Q3J3X0|g__Rhodobacter.s__Rhodobacter_sphaeroides	82.4032902707
+UniRef50_D4MV13: UDP-N-acetylglucosamine:LPS N-acetylglucosamine transferase	82.3853172680
+UniRef50_D4MV13: UDP-N-acetylglucosamine:LPS N-acetylglucosamine transferase|g__Clostridium.s__Clostridium_beijerinckii	82.3853172680
+UniRef50_Q5HLV3: Transcriptional regulator, AraC family	82.3652741414
+UniRef50_Q5HLV3: Transcriptional regulator, AraC family|g__Staphylococcus.s__Staphylococcus_epidermidis	82.3652741414
+UniRef50_Q8FW08: sn-glycerol-3-phosphate transport system permease protein UgpE	82.3494006673
+UniRef50_Q8FW08: sn-glycerol-3-phosphate transport system permease protein UgpE|g__Rhodobacter.s__Rhodobacter_sphaeroides	82.3494006673
+UniRef50_C1A7Q5	82.3448278669
+UniRef50_C1A7Q5|g__Rhodobacter.s__Rhodobacter_sphaeroides	81.5146090529
+UniRef50_C1A7Q5|unclassified	0.8302188140
+UniRef50_Q132P2: Aerobic magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase	82.3178282506
+UniRef50_Q132P2: Aerobic magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase|g__Rhodobacter.s__Rhodobacter_sphaeroides	80.3867101830
+UniRef50_Q132P2: Aerobic magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase|unclassified	1.9311180675
+UniRef50_O34943: Putative tRNA-binding protein YtpR	82.2325105370
+UniRef50_O34943: Putative tRNA-binding protein YtpR|g__Staphylococcus.s__Staphylococcus_epidermidis	50.2082936935
+UniRef50_O34943: Putative tRNA-binding protein YtpR|g__Staphylococcus.s__Staphylococcus_aureus	32.0242168435
+UniRef50_C5N1T1	82.1915690930
+UniRef50_C5N1T1|g__Staphylococcus.s__Staphylococcus_aureus	82.1915690930
+UniRef50_C6SPX6	82.1842100350
+UniRef50_C6SPX6|g__Streptococcus.s__Streptococcus_mutans	82.1842100350
+UniRef50_Q931P4: Iron-regulated surface determinant protein H	82.1728489359
+UniRef50_Q931P4: Iron-regulated surface determinant protein H|g__Staphylococcus.s__Staphylococcus_aureus	82.1728489359
+UniRef50_F8LI03: Sal9 lantibiotic transport ATP-binding protein	82.1674963211
+UniRef50_F8LI03: Sal9 lantibiotic transport ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	82.1674963211
+UniRef50_Q8CPC5: Nuclease SbcCD subunit C	82.1266698251
+UniRef50_Q8CPC5: Nuclease SbcCD subunit C|g__Staphylococcus.s__Staphylococcus_epidermidis	82.1266698251
+UniRef50_E3D8W4: Anaerobic ribonucleoside-triphosphate reductase-activating protein	81.9978395036
+UniRef50_E3D8W4: Anaerobic ribonucleoside-triphosphate reductase-activating protein|g__Streptococcus.s__Streptococcus_mutans	80.2737015726
+UniRef50_E3D8W4: Anaerobic ribonucleoside-triphosphate reductase-activating protein|g__Streptococcus.s__Streptococcus_agalactiae	1.7241379310
+UniRef50_A4WTS0	81.9886736436
+UniRef50_A4WTS0|g__Rhodobacter.s__Rhodobacter_sphaeroides	79.5901765803
+UniRef50_A4WTS0|unclassified	2.3984970633
+UniRef50_Q2G9D9: Arginine--tRNA ligase	81.8671662313
+UniRef50_Q2G9D9: Arginine--tRNA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	81.7926747291
+UniRef50_Q2G9D9: Arginine--tRNA ligase|unclassified	0.0744915022
+UniRef50_G9AIL7: Transcriptional regulatory protein, LuxR-family	81.8094075102
+UniRef50_G9AIL7: Transcriptional regulatory protein, LuxR-family|g__Rhodobacter.s__Rhodobacter_sphaeroides	81.8094075102
+UniRef50_Q99RJ0: Protein flp	81.7935478063
+UniRef50_Q99RJ0: Protein flp|g__Staphylococcus.s__Staphylococcus_aureus	81.7935478063
+UniRef50_Q49WG0: Organic hydroperoxide resistance protein-like 2	81.7098700242
+UniRef50_Q49WG0: Organic hydroperoxide resistance protein-like 2|g__Staphylococcus.s__Staphylococcus_epidermidis	81.7098700242
+UniRef50_D3QHT0	81.7015503748
+UniRef50_D3QHT0|g__Staphylococcus.s__Staphylococcus_epidermidis	81.7015503748
+UniRef50_V5SGS7: Multidrug ABC transporter permease	81.6957084817
+UniRef50_V5SGS7: Multidrug ABC transporter permease|g__Rhodobacter.s__Rhodobacter_sphaeroides	81.6957084817
+UniRef50_I6TY91: Phosphoglycerate mutase	81.6671838395
+UniRef50_I6TY91: Phosphoglycerate mutase|g__Streptococcus.s__Streptococcus_mutans	81.6671838395
+UniRef50_F8LMW5: Branched-chain amino acid ABC uptake transporter substrate-binding protein	81.6618809789
+UniRef50_F8LMW5: Branched-chain amino acid ABC uptake transporter substrate-binding protein|g__Streptococcus.s__Streptococcus_mutans	69.2147841734
+UniRef50_F8LMW5: Branched-chain amino acid ABC uptake transporter substrate-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	12.4470968055
+UniRef50_A7HYE5: Ribonuclease D	81.6567735432
+UniRef50_A7HYE5: Ribonuclease D|g__Rhodobacter.s__Rhodobacter_sphaeroides	80.9080585908
+UniRef50_A7HYE5: Ribonuclease D|unclassified	0.7487149525
+UniRef50_I7DPT5	81.6553398140
+UniRef50_I7DPT5|g__Rhodobacter.s__Rhodobacter_sphaeroides	78.8444874929
+UniRef50_I7DPT5|unclassified	2.8108523211
+UniRef50_A9ANN8: AMP nucleosidase	81.6353148446
+UniRef50_A9ANN8: AMP nucleosidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	81.6353148446
+UniRef50_N6D480	81.5921448568
+UniRef50_N6D480|g__Staphylococcus.s__Staphylococcus_aureus	81.5921448568
+UniRef50_Q8CMP3: Transporter	81.5851323375
+UniRef50_Q8CMP3: Transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	81.5851323375
+UniRef50_I0C3R6: General stress protein, Gls24 family	81.5627954855
+UniRef50_I0C3R6: General stress protein, Gls24 family|g__Staphylococcus.s__Staphylococcus_aureus	81.5627954855
+UniRef50_Q5HNG8: FtsK/SpoIIIE family protein	81.5213114569
+UniRef50_Q5HNG8: FtsK/SpoIIIE family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	81.5213114569
+UniRef50_Q4L427: Transcriptional regulator, MerR family	81.5132010379
+UniRef50_Q4L427: Transcriptional regulator, MerR family|g__Staphylococcus.s__Staphylococcus_epidermidis	81.5132010379
+UniRef50_Q5HR89: Nucleoside permease NupC, putative	81.4822646259
+UniRef50_Q5HR89: Nucleoside permease NupC, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	81.4822646259
+UniRef50_S9RN07	81.4447146920
+UniRef50_S9RN07|g__Staphylococcus.s__Staphylococcus_aureus	81.4447146920
+UniRef50_Q8CRL3	81.4372747020
+UniRef50_Q8CRL3|g__Staphylococcus.s__Staphylococcus_epidermidis	79.1709675628
+UniRef50_Q8CRL3|unclassified	2.2663071392
+UniRef50_H0DMI5: GA module	81.3836253325
+UniRef50_H0DMI5: GA module|g__Staphylococcus.s__Staphylococcus_epidermidis	81.3836253325
+UniRef50_Z3FT61: Fructose-1,6-bisphosphatase class 3	81.3694047537
+UniRef50_Z3FT61: Fructose-1,6-bisphosphatase class 3|g__Staphylococcus.s__Staphylococcus_epidermidis	81.3694047537
+UniRef50_F4FM20: RstA	81.3665869070
+UniRef50_F4FM20: RstA|g__Staphylococcus.s__Staphylococcus_aureus	81.3665869070
+UniRef50_P50939: NADH-quinone oxidoreductase subunit L	81.3612965705
+UniRef50_P50939: NADH-quinone oxidoreductase subunit L|g__Rhodobacter.s__Rhodobacter_sphaeroides	75.5365899280
+UniRef50_P50939: NADH-quinone oxidoreductase subunit L|unclassified	5.8247066424
+UniRef50_Q5LQC3: Putative arginyl-tRNA--protein transferase	81.3260502534
+UniRef50_Q5LQC3: Putative arginyl-tRNA--protein transferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	81.3260502534
+UniRef50_Q5HNJ1	81.3138953156
+UniRef50_Q5HNJ1|g__Staphylococcus.s__Staphylococcus_epidermidis	68.7951037499
+UniRef50_Q5HNJ1|g__Staphylococcus.s__Staphylococcus_aureus	12.5187915656
+UniRef50_A4WUY8: Substrate-binding region of ABC-type glycine betaine transport system	81.3062698745
+UniRef50_A4WUY8: Substrate-binding region of ABC-type glycine betaine transport system|g__Rhodobacter.s__Rhodobacter_sphaeroides	81.3062698745
+UniRef50_O34900: L-cystine import ATP-binding protein TcyN	81.2685925079
+UniRef50_O34900: L-cystine import ATP-binding protein TcyN|g__Streptococcus.s__Streptococcus_mutans	47.2819533150
+UniRef50_O34900: L-cystine import ATP-binding protein TcyN|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.3135055855
+UniRef50_O34900: L-cystine import ATP-binding protein TcyN|unclassified	1.6731336074
+UniRef50_A1UAJ5	81.2425647873
+UniRef50_A1UAJ5|g__Rhodobacter.s__Rhodobacter_sphaeroides	81.1233520991
+UniRef50_A1UAJ5|unclassified	0.1192126881
+UniRef50_I3UWQ8: Spermidine/putrescine ABC transporter ATPase	81.1888801160
+UniRef50_I3UWQ8: Spermidine/putrescine ABC transporter ATPase|g__Rhodobacter.s__Rhodobacter_sphaeroides	75.3822448961
+UniRef50_I3UWQ8: Spermidine/putrescine ABC transporter ATPase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8066352199
+UniRef50_Q49X90: Glycerol-3-phosphate responsive antiterminator	81.1814868463
+UniRef50_Q49X90: Glycerol-3-phosphate responsive antiterminator|g__Staphylococcus.s__Staphylococcus_epidermidis	81.1814868463
+UniRef50_Q2FJN4: Alkyl hydroperoxide reductase subunit C	81.1527926623
+UniRef50_Q2FJN4: Alkyl hydroperoxide reductase subunit C|g__Staphylococcus.s__Staphylococcus_aureus	55.5908101940
+UniRef50_Q2FJN4: Alkyl hydroperoxide reductase subunit C|g__Streptococcus.s__Streptococcus_mutans	25.5619824682
+UniRef50_V9VLZ2: Cell wall shape-determining protein	81.1452112613
+UniRef50_V9VLZ2: Cell wall shape-determining protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	81.1452112613
+UniRef50_P67586: Tryptophan--tRNA ligase	81.1234381411
+UniRef50_P67586: Tryptophan--tRNA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	81.1234381411
+UniRef50_P52132: UPF0380 protein YfjQ	81.1040631936
+UniRef50_P52132: UPF0380 protein YfjQ|g__Escherichia.s__Escherichia_coli	76.2460810703
+UniRef50_P52132: UPF0380 protein YfjQ|g__Staphylococcus.s__Staphylococcus_aureus	3.7593984962
+UniRef50_P52132: UPF0380 protein YfjQ|unclassified	1.0985836270
+UniRef50_A4WVB3: CDP-alcohol phosphatidyltransferase	81.0890647497
+UniRef50_A4WVB3: CDP-alcohol phosphatidyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	81.0890647497
+UniRef50_Q8CU41: Ornithine carbamoyltransferase 1, catabolic	81.0632746925
+UniRef50_Q8CU41: Ornithine carbamoyltransferase 1, catabolic|g__Staphylococcus.s__Staphylococcus_epidermidis	60.2324768566
+UniRef50_Q8CU41: Ornithine carbamoyltransferase 1, catabolic|g__Staphylococcus.s__Staphylococcus_aureus	20.6168863183
+UniRef50_Q8CU41: Ornithine carbamoyltransferase 1, catabolic|unclassified	0.2139115176
+UniRef50_D5AQI9: RNA polymerase sigma factor RpoD	81.0356907255
+UniRef50_D5AQI9: RNA polymerase sigma factor RpoD|g__Rhodobacter.s__Rhodobacter_sphaeroides	81.0356907255
+UniRef50_Q8CQF2: Capsular polysaccharide synthesis enzyme Cap5B	81.0149785934
+UniRef50_Q8CQF2: Capsular polysaccharide synthesis enzyme Cap5B|g__Staphylococcus.s__Staphylococcus_epidermidis	81.0149785934
+UniRef50_Q3J219	80.9990231441
+UniRef50_Q3J219|g__Rhodobacter.s__Rhodobacter_sphaeroides	78.1821217357
+UniRef50_Q3J219|unclassified	2.8169014085
+UniRef50_Q71Y59: Tyrosine recombinase XerD	80.9500724186
+UniRef50_Q71Y59: Tyrosine recombinase XerD|g__Staphylococcus.s__Staphylococcus_epidermidis	80.9500724186
+UniRef50_Q8CRJ6: Alkanal monooxygenase alpha chain	80.9052653439
+UniRef50_Q8CRJ6: Alkanal monooxygenase alpha chain|g__Staphylococcus.s__Staphylococcus_epidermidis	80.9052653439
+UniRef50_G7SE40: DegV family protein	80.8830938850
+UniRef50_G7SE40: DegV family protein|g__Streptococcus.s__Streptococcus_mutans	80.8830938850
+UniRef50_H3UK96: ATP-dependent deoxyribonuclease subunit A domain protein	80.8311021553
+UniRef50_H3UK96: ATP-dependent deoxyribonuclease subunit A domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	80.8311021553
+UniRef50_I6SXL7: Transcriptional regulator	80.7991811772
+UniRef50_I6SXL7: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	80.7991811772
+UniRef50_B9DNN7: Aminomethyltransferase	80.7195536801
+UniRef50_B9DNN7: Aminomethyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	80.3044758483
+UniRef50_B9DNN7: Aminomethyltransferase|unclassified	0.4150778318
+UniRef50_Q3IV10	80.7179230510
+UniRef50_Q3IV10|unclassified	46.8399161979
+UniRef50_Q3IV10|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.8780068531
+UniRef50_B0U1N1: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha	80.6930240109
+UniRef50_B0U1N1: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|g__Staphylococcus.s__Staphylococcus_aureus	80.4468975682
+UniRef50_B0U1N1: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|unclassified	0.2461264427
+UniRef50_Q5HK08: Beta-hemolysin	80.6740127891
+UniRef50_Q5HK08: Beta-hemolysin|g__Staphylococcus.s__Staphylococcus_epidermidis	80.6740127891
+UniRef50_A3PHM8: DHC, diheme cytochrome c	80.6389321491
+UniRef50_A3PHM8: DHC, diheme cytochrome c|g__Rhodobacter.s__Rhodobacter_sphaeroides	77.1334153507
+UniRef50_A3PHM8: DHC, diheme cytochrome c|unclassified	3.5055167984
+UniRef50_Q5HP49: Oxidoreductase, short-chain dehydrogenase/reductase family	80.6341031733
+UniRef50_Q5HP49: Oxidoreductase, short-chain dehydrogenase/reductase family|g__Staphylococcus.s__Staphylococcus_epidermidis	80.6341031733
+UniRef50_Q3J1E9: Plasmid and phage replicative helicase	80.6277413803
+UniRef50_Q3J1E9: Plasmid and phage replicative helicase|g__Rhodobacter.s__Rhodobacter_sphaeroides	80.6277413803
+UniRef50_G0J3G6: Zinc/iron permease	80.5740149565
+UniRef50_G0J3G6: Zinc/iron permease|g__Staphylococcus.s__Staphylococcus_epidermidis	80.5740149565
+UniRef50_Q213K6: Leucyl/phenylalanyl-tRNA--protein transferase	80.5328839813
+UniRef50_Q213K6: Leucyl/phenylalanyl-tRNA--protein transferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	80.3312651071
+UniRef50_Q213K6: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.2016188742
+UniRef50_D9RDA2	80.4857989859
+UniRef50_D9RDA2|g__Staphylococcus.s__Staphylococcus_aureus	80.4857989859
+UniRef50_Q5HKX7: Glycosyl transferase, group 1 family protein	80.4804955422
+UniRef50_Q5HKX7: Glycosyl transferase, group 1 family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	80.4804955422
+UniRef50_L8C9P6: HTH-type transcriptional regulator YidP	80.4723502304
+UniRef50_L8C9P6: HTH-type transcriptional regulator YidP|g__Escherichia.s__Escherichia_coli	80.4723502304
+UniRef50_A4VSE4: 3-methyladenine DNA glycosylase	80.4355621407
+UniRef50_A4VSE4: 3-methyladenine DNA glycosylase|g__Streptococcus.s__Streptococcus_mutans	78.6173803225
+UniRef50_A4VSE4: 3-methyladenine DNA glycosylase|g__Streptococcus.s__Streptococcus_agalactiae	1.8181818182
+UniRef50_Q9ZB00: Lytic regulatory protein	80.4318349984
+UniRef50_Q9ZB00: Lytic regulatory protein|g__Staphylococcus.s__Staphylococcus_aureus	80.4318349984
+UniRef50_F5M2T1: Diguanylate cyclase	80.4313571002
+UniRef50_F5M2T1: Diguanylate cyclase|g__Rhodobacter.s__Rhodobacter_sphaeroides	78.9940106907
+UniRef50_F5M2T1: Diguanylate cyclase|unclassified	1.4373464096
+UniRef50_Q5HKZ3: Glutathione peroxidase homolog BsaA	80.4240030882
+UniRef50_Q5HKZ3: Glutathione peroxidase homolog BsaA|g__Staphylococcus.s__Staphylococcus_epidermidis	80.4240030882
+UniRef50_UPI00047647D3: hypothetical protein	80.3979679860
+UniRef50_UPI00047647D3: hypothetical protein|unclassified	80.3979679860
+UniRef50_Q5HLI2: Amino acid ABC transporter, amino acid-binding protein	80.3737467047
+UniRef50_Q5HLI2: Amino acid ABC transporter, amino acid-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	80.3737467047
+UniRef50_X5KE92: N5-carboxyaminoimidazole ribonucleotide mutase	80.3369967443
+UniRef50_X5KE92: N5-carboxyaminoimidazole ribonucleotide mutase|g__Streptococcus.s__Streptococcus_mutans	67.5710392975
+UniRef50_X5KE92: N5-carboxyaminoimidazole ribonucleotide mutase|g__Streptococcus.s__Streptococcus_agalactiae	12.7659574468
+UniRef50_I0C833	80.3198407663
+UniRef50_I0C833|g__Staphylococcus.s__Staphylococcus_aureus	80.3198407663
+UniRef50_Q034H8: Ribose-5-phosphate isomerase A	80.3034041998
+UniRef50_Q034H8: Ribose-5-phosphate isomerase A|g__Streptococcus.s__Streptococcus_mutans	80.3034041998
+UniRef50_P90597: Dihydrolipoyl dehydrogenase	80.2973164031
+UniRef50_P90597: Dihydrolipoyl dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	80.2973164031
+UniRef50_A6U4E8: Immunoglobulin-binding protein sbi	80.2956342436
+UniRef50_A6U4E8: Immunoglobulin-binding protein sbi|g__Staphylococcus.s__Staphylococcus_aureus	80.2956342436
+UniRef50_Q8CU98	80.2772789838
+UniRef50_Q8CU98|unclassified	80.2772789838
+UniRef50_E3EYN7: Glutamate/glutamine/aspartate/asparagine transport system permeaseprotein BztC	80.2684402845
+UniRef50_E3EYN7: Glutamate/glutamine/aspartate/asparagine transport system permeaseprotein BztC|g__Rhodobacter.s__Rhodobacter_sphaeroides	80.2684402845
+UniRef50_C5N6C9: Universal stress family protein	80.2401833344
+UniRef50_C5N6C9: Universal stress family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	48.2914314695
+UniRef50_C5N6C9: Universal stress family protein|g__Staphylococcus.s__Staphylococcus_aureus	31.9487518649
+UniRef50_A3CNS7	80.1611375518
+UniRef50_A3CNS7|g__Streptococcus.s__Streptococcus_mutans	80.1611375518
+UniRef50_D8HCQ5: Aminopeptidase	80.1374808262
+UniRef50_D8HCQ5: Aminopeptidase|g__Staphylococcus.s__Staphylococcus_aureus	80.1374808262
+UniRef50_UPI00030354CC: hypothetical protein	80.1330667320
+UniRef50_UPI00030354CC: hypothetical protein|unclassified	80.1330667320
+UniRef50_G9WGT8: dTDP-4-dehydrorhamnose reductase	80.1109515787
+UniRef50_G9WGT8: dTDP-4-dehydrorhamnose reductase|g__Streptococcus.s__Streptococcus_mutans	60.2219464434
+UniRef50_G9WGT8: dTDP-4-dehydrorhamnose reductase|g__Streptococcus.s__Streptococcus_agalactiae	19.8890051353
+UniRef50_A3CP57	80.0914945888
+UniRef50_A3CP57|g__Streptococcus.s__Streptococcus_mutans	78.1173046185
+UniRef50_A3CP57|unclassified	1.9741899704
+UniRef50_K7SKZ4: Glycosyl transferase, group 2 family	80.0899791386
+UniRef50_K7SKZ4: Glycosyl transferase, group 2 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	46.9706111066
+UniRef50_K7SKZ4: Glycosyl transferase, group 2 family|g__Streptococcus.s__Streptococcus_mutans	33.1193680320
+UniRef50_P25748: HTH-type transcriptional regulator GalS	80.0737925088
+UniRef50_P25748: HTH-type transcriptional regulator GalS|g__Escherichia.s__Escherichia_coli	80.0737925088
+UniRef50_V9VTJ9: Glyoxalase I	80.0677310111
+UniRef50_V9VTJ9: Glyoxalase I|g__Pseudomonas.s__Pseudomonas_aeruginosa	80.0677310111
+UniRef50_Q8CPK1: Secretory antigen SsaA	80.0615765753
+UniRef50_Q8CPK1: Secretory antigen SsaA|g__Staphylococcus.s__Staphylococcus_epidermidis	79.0512368204
+UniRef50_Q8CPK1: Secretory antigen SsaA|unclassified	1.0103397550
+UniRef50_Q8CRU7	79.9952761719
+UniRef50_Q8CRU7|g__Staphylococcus.s__Staphylococcus_epidermidis	71.2459733275
+UniRef50_Q8CRU7|g__Staphylococcus.s__Staphylococcus_aureus	8.7493028444
+UniRef50_P95695: Capsular polysaccharide type 5 biosynthesis protein cap5A	79.9853091210
+UniRef50_P95695: Capsular polysaccharide type 5 biosynthesis protein cap5A|g__Staphylococcus.s__Staphylococcus_aureus	78.2091093576
+UniRef50_P95695: Capsular polysaccharide type 5 biosynthesis protein cap5A|unclassified	1.7761997634
+UniRef50_F8IME6	79.9847235642
+UniRef50_F8IME6|g__Streptococcus.s__Streptococcus_mutans	70.4506060572
+UniRef50_F8IME6|g__Streptococcus.s__Streptococcus_agalactiae	9.5341175070
+UniRef50_P23898: Probable endopeptidase NlpC	79.9771081719
+UniRef50_P23898: Probable endopeptidase NlpC|g__Escherichia.s__Escherichia_coli	79.9771081719
+UniRef50_T0V4T9: ABC transporter, ATP-binding protein	79.9513937102
+UniRef50_T0V4T9: ABC transporter, ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	79.9513937102
+UniRef50_B7LNX4: UPF0319 protein YccT	79.9385234875
+UniRef50_B7LNX4: UPF0319 protein YccT|g__Escherichia.s__Escherichia_coli	79.5997853810
+UniRef50_B7LNX4: UPF0319 protein YccT|unclassified	0.3387381065
+UniRef50_Q3IUW5: Type IV conjugative transfer system lipoprotein (TraV)	79.9332530664
+UniRef50_Q3IUW5: Type IV conjugative transfer system lipoprotein (TraV)|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.4726914991
+UniRef50_Q3IUW5: Type IV conjugative transfer system lipoprotein (TraV)|unclassified	20.4605615673
+UniRef50_Q8UII5: Glutathione synthetase	79.9208484914
+UniRef50_Q8UII5: Glutathione synthetase|g__Rhodobacter.s__Rhodobacter_sphaeroides	79.8770484902
+UniRef50_Q8UII5: Glutathione synthetase|unclassified	0.0438000012
+UniRef50_S5YEW5: Chaperone Hsp33	79.9095648643
+UniRef50_S5YEW5: Chaperone Hsp33|g__Rhodobacter.s__Rhodobacter_sphaeroides	79.9095648643
+UniRef50_E3EXK7: Peptidase, M48 family, putative	79.8742609546
+UniRef50_E3EXK7: Peptidase, M48 family, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	79.8742609546
+UniRef50_O34962: Probable NAD-dependent malic enzyme 4	79.8026488100
+UniRef50_O34962: Probable NAD-dependent malic enzyme 4|g__Staphylococcus.s__Staphylococcus_epidermidis	79.8026488100
+UniRef50_E5QSU8: Transcriptional regulator, AraC family	79.7855735043
+UniRef50_E5QSU8: Transcriptional regulator, AraC family|g__Staphylococcus.s__Staphylococcus_aureus	79.7855735043
+UniRef50_E5QR85	79.7353016354
+UniRef50_E5QR85|g__Staphylococcus.s__Staphylococcus_aureus	79.7353016354
+UniRef50_Q8CT01	79.6980152237
+UniRef50_Q8CT01|g__Staphylococcus.s__Staphylococcus_epidermidis	79.6980152237
+UniRef50_Q03UE1: DNA replication and repair protein RecF	79.6423646050
+UniRef50_Q03UE1: DNA replication and repair protein RecF|g__Staphylococcus.s__Staphylococcus_epidermidis	79.6423646050
+UniRef50_Q887Z4: Probable malate:quinone oxidoreductase	79.6419893043
+UniRef50_Q887Z4: Probable malate:quinone oxidoreductase|g__Staphylococcus.s__Staphylococcus_epidermidis	78.7198696787
+UniRef50_Q887Z4: Probable malate:quinone oxidoreductase|g__Neisseria.s__Neisseria_meningitidis	0.8833922261
+UniRef50_Q887Z4: Probable malate:quinone oxidoreductase|unclassified	0.0387273994
+UniRef50_Q52664: Glutamate/glutamine/aspartate/asparagine transport system permease protein BztB	79.6310569967
+UniRef50_Q52664: Glutamate/glutamine/aspartate/asparagine transport system permease protein BztB|g__Rhodobacter.s__Rhodobacter_sphaeroides	79.6310569967
+UniRef50_E4PYK4	79.5479158848
+UniRef50_E4PYK4|g__Staphylococcus.s__Staphylococcus_aureus	79.5479158848
+UniRef50_Q5HKL4: Thiamine biosynthesis protein, putative	79.5221554906
+UniRef50_Q5HKL4: Thiamine biosynthesis protein, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	79.5221554906
+UniRef50_A5UP72: Predicted ATPase, AAA+ superfamily	79.4830899345
+UniRef50_A5UP72: Predicted ATPase, AAA+ superfamily|g__Methanobrevibacter.s__Methanobrevibacter_smithii	79.3515208140
+UniRef50_A5UP72: Predicted ATPase, AAA+ superfamily|unclassified	0.1315691205
+UniRef50_B0UWH2: Ribosomal RNA small subunit methyltransferase G	79.4573313579
+UniRef50_B0UWH2: Ribosomal RNA small subunit methyltransferase G|g__Escherichia.s__Escherichia_coli	59.0814169969
+UniRef50_B0UWH2: Ribosomal RNA small subunit methyltransferase G|g__Pseudomonas.s__Pseudomonas_aeruginosa	20.3759143610
+UniRef50_D5SQR1: Glycogen debranching enzyme GlgX	79.4242361797
+UniRef50_D5SQR1: Glycogen debranching enzyme GlgX|g__Rhodobacter.s__Rhodobacter_sphaeroides	79.4242361797
+UniRef50_C6STH9	79.4160929362
+UniRef50_C6STH9|g__Streptococcus.s__Streptococcus_mutans	79.4160929362
+UniRef50_B9DIQ2: Sodium:alanine symporter family protein	79.3932407161
+UniRef50_B9DIQ2: Sodium:alanine symporter family protein|g__Staphylococcus.s__Staphylococcus_aureus	79.3932407161
+UniRef50_Q8CSJ5	79.3588732584
+UniRef50_Q8CSJ5|g__Staphylococcus.s__Staphylococcus_epidermidis	79.3588732584
+UniRef50_Q3IXU6	79.3564576035
+UniRef50_Q3IXU6|g__Rhodobacter.s__Rhodobacter_sphaeroides	76.0445781944
+UniRef50_Q3IXU6|unclassified	3.3118794091
+UniRef50_D5AQK3: Cache sensor protein	79.3562783974
+UniRef50_D5AQK3: Cache sensor protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	79.3562783974
+UniRef50_G7ZP06	79.3147122940
+UniRef50_G7ZP06|g__Staphylococcus.s__Staphylococcus_epidermidis	79.2789353809
+UniRef50_G7ZP06|unclassified	0.0357769131
+UniRef50_U1R336	79.3060199791
+UniRef50_U1R336|unclassified	79.3060199791
+UniRef50_Q9CJJ1: DNA polymerase III subunit beta	79.2967332066
+UniRef50_Q9CJJ1: DNA polymerase III subunit beta|g__Streptococcus.s__Streptococcus_mutans	75.5624684119
+UniRef50_Q9CJJ1: DNA polymerase III subunit beta|g__Streptococcus.s__Streptococcus_agalactiae	3.6337634018
+UniRef50_Q9CJJ1: DNA polymerase III subunit beta|unclassified	0.1005013929
+UniRef50_Q5XA33	79.2831729743
+UniRef50_Q5XA33|g__Streptococcus.s__Streptococcus_mutans	79.2831729743
+UniRef50_D9SVN6: N5-carboxyaminoimidazole ribonucleotide mutase	79.2797542398
+UniRef50_D9SVN6: N5-carboxyaminoimidazole ribonucleotide mutase|g__Staphylococcus.s__Staphylococcus_epidermidis	79.2797542398
+UniRef50_Q8CQJ8: Penicillin binding protein 4	79.2667312720
+UniRef50_Q8CQJ8: Penicillin binding protein 4|g__Staphylococcus.s__Staphylococcus_epidermidis	69.1995349814
+UniRef50_Q8CQJ8: Penicillin binding protein 4|g__Staphylococcus.s__Staphylococcus_aureus	10.0671962906
+UniRef50_C5N3T1	79.2666231368
+UniRef50_C5N3T1|g__Staphylococcus.s__Staphylococcus_aureus	79.2666231368
+UniRef50_P24734: HTH-type transcriptional activator AmpR	79.1613541161
+UniRef50_P24734: HTH-type transcriptional activator AmpR|g__Rhodobacter.s__Rhodobacter_sphaeroides	78.0352279900
+UniRef50_P24734: HTH-type transcriptional activator AmpR|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1261261261
+UniRef50_L0KHH1: Cation/multidrug efflux pump	79.1497581993
+UniRef50_L0KHH1: Cation/multidrug efflux pump|g__Rhodobacter.s__Rhodobacter_sphaeroides	79.1497581993
+UniRef50_Q89L46: UvrABC system protein A	79.1012113977
+UniRef50_Q89L46: UvrABC system protein A|g__Rhodobacter.s__Rhodobacter_sphaeroides	79.1012113977
+UniRef50_Q128P2: Thioesterase superfamily	79.0826120340
+UniRef50_Q128P2: Thioesterase superfamily|g__Rhodobacter.s__Rhodobacter_sphaeroides	78.9613492021
+UniRef50_Q128P2: Thioesterase superfamily|unclassified	0.1212628319
+UniRef50_E3HK42: Lysine-specific permease 2	79.0489747060
+UniRef50_E3HK42: Lysine-specific permease 2|g__Staphylococcus.s__Staphylococcus_aureus	68.0883362173
+UniRef50_E3HK42: Lysine-specific permease 2|g__Clostridium.s__Clostridium_beijerinckii	5.8821351829
+UniRef50_E3HK42: Lysine-specific permease 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0785033058
+UniRef50_P76540: Ethanolamine utilization protein EutK	79.0129674479
+UniRef50_P76540: Ethanolamine utilization protein EutK|g__Escherichia.s__Escherichia_coli	79.0129674479
+UniRef50_F0RL15: Diaminopimelate decarboxylase	79.0049963649
+UniRef50_F0RL15: Diaminopimelate decarboxylase|g__Staphylococcus.s__Staphylococcus_epidermidis	79.0049963649
+UniRef50_A3PQ86: Extracellular solute-binding protein, family 1	78.9924492661
+UniRef50_A3PQ86: Extracellular solute-binding protein, family 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	78.9924492661
+UniRef50_J2XB15	78.9725741835
+UniRef50_J2XB15|unclassified	78.9725741835
+UniRef50_Q99UB6: Prephenate dehydrogenase	78.9376626520
+UniRef50_Q99UB6: Prephenate dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	78.5151531431
+UniRef50_Q99UB6: Prephenate dehydrogenase|unclassified	0.4225095089
+UniRef50_Q01S06	78.8857838154
+UniRef50_Q01S06|g__Streptococcus.s__Streptococcus_mutans	78.8857838154
+UniRef50_Q4L628: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	78.8121994771
+UniRef50_Q4L628: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	78.8121994771
+UniRef50_R7HEN4: Pseudouridine synthase	78.8098944595
+UniRef50_R7HEN4: Pseudouridine synthase|g__Staphylococcus.s__Staphylococcus_aureus	77.7193819186
+UniRef50_R7HEN4: Pseudouridine synthase|g__Clostridium.s__Clostridium_beijerinckii	1.0905125409
+UniRef50_D3P3D0: D-xylose transport system substrate-binding protein	78.7688941409
+UniRef50_D3P3D0: D-xylose transport system substrate-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	78.7688941409
+UniRef50_Q47VK9: Arginine repressor	78.7522823193
+UniRef50_Q47VK9: Arginine repressor|g__Escherichia.s__Escherichia_coli	78.7522823193
+UniRef50_Q633V5: Non-canonical purine NTP pyrophosphatase	78.7218435875
+UniRef50_Q633V5: Non-canonical purine NTP pyrophosphatase|g__Staphylococcus.s__Staphylococcus_epidermidis	78.5535933726
+UniRef50_Q633V5: Non-canonical purine NTP pyrophosphatase|unclassified	0.1682502149
+UniRef50_Q6GJ46: Putative antiporter subunit mnhB2	78.7137811825
+UniRef50_Q6GJ46: Putative antiporter subunit mnhB2|g__Staphylococcus.s__Staphylococcus_aureus	40.1206901894
+UniRef50_Q6GJ46: Putative antiporter subunit mnhB2|g__Staphylococcus.s__Staphylococcus_epidermidis	38.5930909931
+UniRef50_Q8CQJ9: Teichoic acid biosynthesis protein F	78.6942675947
+UniRef50_Q8CQJ9: Teichoic acid biosynthesis protein F|g__Staphylococcus.s__Staphylococcus_epidermidis	78.6942675947
+UniRef50_A5UNV6	78.6733061859
+UniRef50_A5UNV6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	78.6733061859
+UniRef50_I6U0M8	78.6699128069
+UniRef50_I6U0M8|g__Streptococcus.s__Streptococcus_mutans	78.6699128069
+UniRef50_Q28TL6: Phosphatidylcholine synthase	78.6621822862
+UniRef50_Q28TL6: Phosphatidylcholine synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	78.6621822862
+UniRef50_Q5LLU6: 50S ribosomal protein L3	78.6369751503
+UniRef50_Q5LLU6: 50S ribosomal protein L3|g__Rhodobacter.s__Rhodobacter_sphaeroides	78.6369751503
+UniRef50_D6SDB9: Toxin, beta-grasp domain protein	78.5976142770
+UniRef50_D6SDB9: Toxin, beta-grasp domain protein|g__Staphylococcus.s__Staphylococcus_aureus	78.5976142770
+UniRef50_H3X653: Osmosensitive K+ channel His kinase sensor domain protein	78.5714578025
+UniRef50_H3X653: Osmosensitive K+ channel His kinase sensor domain protein|g__Staphylococcus.s__Staphylococcus_aureus	78.5714578025
+UniRef50_Q8CU16	78.5615478462
+UniRef50_Q8CU16|g__Staphylococcus.s__Staphylococcus_epidermidis	78.5615478462
+UniRef50_Q2FDM1: Immunodominant staphylococcal antigen B	78.5514177538
+UniRef50_Q2FDM1: Immunodominant staphylococcal antigen B|g__Staphylococcus.s__Staphylococcus_aureus	78.5514177538
+UniRef50_G8RGA7: ATP-dependent DNA helicase, RecQ family	78.5077518039
+UniRef50_G8RGA7: ATP-dependent DNA helicase, RecQ family|g__Staphylococcus.s__Staphylococcus_aureus	78.5077518039
+UniRef50_R9YPY8: 5-formyltetrahydrofolate cyclo-ligase	78.4604610952
+UniRef50_R9YPY8: 5-formyltetrahydrofolate cyclo-ligase|g__Staphylococcus.s__Staphylococcus_aureus	78.4604610952
+UniRef50_J9V1L0	78.4553381235
+UniRef50_J9V1L0|g__Staphylococcus.s__Staphylococcus_aureus	78.4553381235
+UniRef50_I1ZJL0: Nicotinate phosphoribosyltransferase	78.4123703819
+UniRef50_I1ZJL0: Nicotinate phosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	74.5665323203
+UniRef50_I1ZJL0: Nicotinate phosphoribosyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	3.8458380617
+UniRef50_D6SET8: Sucrose-6-phosphate hydrolase	78.4065665522
+UniRef50_D6SET8: Sucrose-6-phosphate hydrolase|g__Staphylococcus.s__Staphylococcus_aureus	78.4065665522
+UniRef50_A7NIN1: ABC-type Fe3+ transport system periplasmic component-like protein	78.3954163651
+UniRef50_A7NIN1: ABC-type Fe3+ transport system periplasmic component-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	78.3954163651
+UniRef50_R9YQ24	78.3800894317
+UniRef50_R9YQ24|g__Staphylococcus.s__Staphylococcus_aureus	57.4327513897
+UniRef50_R9YQ24|g__Staphylococcus.s__Staphylococcus_epidermidis	20.5572514648
+UniRef50_R9YQ24|unclassified	0.3900865771
+UniRef50_H3VZC8	78.3674475941
+UniRef50_H3VZC8|g__Staphylococcus.s__Staphylococcus_epidermidis	78.3674475941
+UniRef50_Q49XM4: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex	78.3621150390
+UniRef50_Q49XM4: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|g__Staphylococcus.s__Staphylococcus_epidermidis	78.3109284385
+UniRef50_Q49XM4: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|unclassified	0.0511866005
+UniRef50_Q4LAB0: Multicopper oxidase mco	78.3505082813
+UniRef50_Q4LAB0: Multicopper oxidase mco|g__Staphylococcus.s__Staphylococcus_aureus	61.4540147297
+UniRef50_Q4LAB0: Multicopper oxidase mco|g__Staphylococcus.s__Staphylococcus_epidermidis	16.8964935516
+UniRef50_Q8YAE3: Ribonuclease M5	78.3371685766
+UniRef50_Q8YAE3: Ribonuclease M5|g__Staphylococcus.s__Staphylococcus_aureus	78.3371685766
+UniRef50_B0T2A6: Lysine--tRNA ligase	78.2830409103
+UniRef50_B0T2A6: Lysine--tRNA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	77.7843896514
+UniRef50_B0T2A6: Lysine--tRNA ligase|unclassified	0.4986512588
+UniRef50_Q5HRX0	78.2656419160
+UniRef50_Q5HRX0|g__Staphylococcus.s__Staphylococcus_epidermidis	78.2656419160
+UniRef50_Q3IUX0	78.2594118573
+UniRef50_Q3IUX0|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.1385699721
+UniRef50_Q3IUX0|unclassified	36.1208418851
+UniRef50_Q2YTP0: 2-succinylbenzoate--CoA ligase	78.2584956672
+UniRef50_Q2YTP0: 2-succinylbenzoate--CoA ligase|g__Staphylococcus.s__Staphylococcus_aureus	77.9705480954
+UniRef50_Q2YTP0: 2-succinylbenzoate--CoA ligase|unclassified	0.2879475718
+UniRef50_Q0ALN8: MotA/TolQ/ExbB proton channel	78.2489585646
+UniRef50_Q0ALN8: MotA/TolQ/ExbB proton channel|g__Rhodobacter.s__Rhodobacter_sphaeroides	78.2489585646
+UniRef50_Q53132	78.2077693484
+UniRef50_Q53132|unclassified	78.2077693484
+UniRef50_Q7N4V9: 3-phenylpropionate/cinnamic acid dioxygenase subunit beta	78.1718342221
+UniRef50_Q7N4V9: 3-phenylpropionate/cinnamic acid dioxygenase subunit beta|g__Escherichia.s__Escherichia_coli	78.1718342221
+UniRef50_D2VQJ9: Pyruvate dehydrogenase E1 component subunit alpha	78.1635397704
+UniRef50_D2VQJ9: Pyruvate dehydrogenase E1 component subunit alpha|g__Rhodobacter.s__Rhodobacter_sphaeroides	78.1635397704
+UniRef50_Q6GJ34: Putative N-acetylmannosaminyltransferase	78.1479621033
+UniRef50_Q6GJ34: Putative N-acetylmannosaminyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	77.6299865963
+UniRef50_Q6GJ34: Putative N-acetylmannosaminyltransferase|unclassified	0.5179755070
+UniRef50_A3PHJ7: Transcriptional regulator, AsnC family	78.1356378369
+UniRef50_A3PHJ7: Transcriptional regulator, AsnC family|g__Rhodobacter.s__Rhodobacter_sphaeroides	78.1356378369
+UniRef50_Q5HMZ9	78.1087528395
+UniRef50_Q5HMZ9|g__Staphylococcus.s__Staphylococcus_epidermidis	78.1087528395
+UniRef50_Q99TA4: HTH-type transcriptional regulator rot	78.1004906720
+UniRef50_Q99TA4: HTH-type transcriptional regulator rot|g__Staphylococcus.s__Staphylococcus_aureus	41.3921818003
+UniRef50_Q99TA4: HTH-type transcriptional regulator rot|g__Staphylococcus.s__Staphylococcus_epidermidis	36.7083088717
+UniRef50_Q4L8E5: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	78.0563090138
+UniRef50_Q4L8E5: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	78.0563090138
+UniRef50_O03042: Ribulose bisphosphate carboxylase large chain	78.0245467132
+UniRef50_O03042: Ribulose bisphosphate carboxylase large chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	77.6817173285
+UniRef50_O03042: Ribulose bisphosphate carboxylase large chain|unclassified	0.3428293846
+UniRef50_U5UNZ2: Cell division protein DivIB	78.0112839407
+UniRef50_U5UNZ2: Cell division protein DivIB|g__Staphylococcus.s__Staphylococcus_epidermidis	78.0112839407
+UniRef50_A3PMP3: Transcriptional regulator, TetR family	77.9483139061
+UniRef50_A3PMP3: Transcriptional regulator, TetR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	77.9483139061
+UniRef50_Q8KY51: Protein phosphatase PhpP	77.9351016640
+UniRef50_Q8KY51: Protein phosphatase PhpP|g__Streptococcus.s__Streptococcus_mutans	74.6131913232
+UniRef50_Q8KY51: Protein phosphatase PhpP|g__Streptococcus.s__Streptococcus_agalactiae	3.3219103407
+UniRef50_Q5HF39: Acetoin utilization protein AcuC	77.9090282721
+UniRef50_Q5HF39: Acetoin utilization protein AcuC|g__Staphylococcus.s__Staphylococcus_aureus	77.5974700835
+UniRef50_Q5HF39: Acetoin utilization protein AcuC|unclassified	0.3115581886
+UniRef50_O54461: Beta-lactamase	77.9004879142
+UniRef50_O54461: Beta-lactamase|g__Staphylococcus.s__Staphylococcus_aureus	77.7363563102
+UniRef50_O54461: Beta-lactamase|unclassified	0.1641316040
+UniRef50_A3CWT9: Nitrogen-fixing NifU domain protein	77.8444383901
+UniRef50_A3CWT9: Nitrogen-fixing NifU domain protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	77.8444383901
+UniRef50_Q21CC1: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	77.8189174468
+UniRef50_Q21CC1: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|g__Rhodobacter.s__Rhodobacter_sphaeroides	77.2654500282
+UniRef50_Q21CC1: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.5534674186
+UniRef50_L7WZU8	77.8112354327
+UniRef50_L7WZU8|g__Staphylococcus.s__Staphylococcus_epidermidis	77.8112354327
+UniRef50_A6TXC8: Nucleoid-associated protein Amet_4780	77.7777777778
+UniRef50_A6TXC8: Nucleoid-associated protein Amet_4780|g__Staphylococcus.s__Staphylococcus_aureus	74.6031746032
+UniRef50_A6TXC8: Nucleoid-associated protein Amet_4780|g__Staphylococcus.s__Staphylococcus_epidermidis	3.1746031746
+UniRef50_U5P976: Magnesium transporter	77.7091290564
+UniRef50_U5P976: Magnesium transporter|g__Streptococcus.s__Streptococcus_mutans	69.9164645131
+UniRef50_U5P976: Magnesium transporter|g__Streptococcus.s__Streptococcus_agalactiae	7.7926645434
+UniRef50_A6LWI6: GAF domain-containing protein	77.6980415235
+UniRef50_A6LWI6: GAF domain-containing protein|g__Staphylococcus.s__Staphylococcus_aureus	77.6980415235
+UniRef50_Q4L8C1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	77.6973241834
+UniRef50_Q4L8C1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	77.6973241834
+UniRef50_E8TMU8: Glycine betaine/L-proline ABC transporter, ATPase subunit	77.6929225300
+UniRef50_E8TMU8: Glycine betaine/L-proline ABC transporter, ATPase subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	77.6929225300
+UniRef50_Q5HNA8	77.6622519877
+UniRef50_Q5HNA8|g__Staphylococcus.s__Staphylococcus_epidermidis	77.6622519877
+UniRef50_J6MTI6	77.6559666085
+UniRef50_J6MTI6|unclassified	77.6559666085
+UniRef50_V6QDM9	77.6248424040
+UniRef50_V6QDM9|unclassified	53.2345985015
+UniRef50_V6QDM9|g__Staphylococcus.s__Staphylococcus_epidermidis	24.3902439024
+UniRef50_UPI000369A903: hypothetical protein	77.5924185022
+UniRef50_UPI000369A903: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	67.8873292362
+UniRef50_UPI000369A903: hypothetical protein|unclassified	9.7050892660
+UniRef50_Q8CNS9: LtrC-like protein	77.5924073650
+UniRef50_Q8CNS9: LtrC-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	77.5924073650
+UniRef50_Q3JCN0: 1,4-alpha-glucan branching enzyme GlgB	77.5829336181
+UniRef50_Q3JCN0: 1,4-alpha-glucan branching enzyme GlgB|g__Rhodobacter.s__Rhodobacter_sphaeroides	77.5579590807
+UniRef50_Q3JCN0: 1,4-alpha-glucan branching enzyme GlgB|unclassified	0.0249745374
+UniRef50_P44502: Cystathionine gamma-synthase	77.5756885361
+UniRef50_P44502: Cystathionine gamma-synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	76.9768896592
+UniRef50_P44502: Cystathionine gamma-synthase|unclassified	0.5987988769
+UniRef50_A5UNE8	77.5446087371
+UniRef50_A5UNE8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	77.5446087371
+UniRef50_Q5HPF3: Phosphate ABC transporter, permease protein	77.5392960975
+UniRef50_Q5HPF3: Phosphate ABC transporter, permease protein|g__Staphylococcus.s__Staphylococcus_epidermidis	77.5392960975
+UniRef50_D7A0M4: Short-chain dehydrogenase/reductase SDR	77.5237702248
+UniRef50_D7A0M4: Short-chain dehydrogenase/reductase SDR|g__Rhodobacter.s__Rhodobacter_sphaeroides	77.5237702248
+UniRef50_Q9RM66: Universal stress protein C	77.5014646645
+UniRef50_Q9RM66: Universal stress protein C|g__Escherichia.s__Escherichia_coli	77.5014646645
+UniRef50_Q73CS7: Tn554-related, transposase B	77.4993313072
+UniRef50_Q73CS7: Tn554-related, transposase B|g__Staphylococcus.s__Staphylococcus_epidermidis	77.0129499843
+UniRef50_Q73CS7: Tn554-related, transposase B|g__Staphylococcus.s__Staphylococcus_aureus	0.4863813230
+UniRef50_D6GPL1: RNA polymerase sigma factor, sigma-70 family	77.4975255311
+UniRef50_D6GPL1: RNA polymerase sigma factor, sigma-70 family|g__Streptococcus.s__Streptococcus_mutans	77.4975255311
+UniRef50_G8V0Z4	77.4786367174
+UniRef50_G8V0Z4|g__Staphylococcus.s__Staphylococcus_aureus	76.2859173154
+UniRef50_G8V0Z4|unclassified	1.1927194020
+UniRef50_Q9I1W8: Catalase HPII	77.4084082814
+UniRef50_Q9I1W8: Catalase HPII|g__Rhodobacter.s__Rhodobacter_sphaeroides	71.9184449023
+UniRef50_Q9I1W8: Catalase HPII|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1995951469
+UniRef50_Q9I1W8: Catalase HPII|unclassified	0.2903682322
+UniRef50_Q49VK7: Secretory antigen SsaA-like protein	77.3876037430
+UniRef50_Q49VK7: Secretory antigen SsaA-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	76.8638839771
+UniRef50_Q49VK7: Secretory antigen SsaA-like protein|unclassified	0.5237197659
+UniRef50_Q1R133: Binding-protein-dependent transport systems inner membrane component	77.3608312999
+UniRef50_Q1R133: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	77.3608312999
+UniRef50_I3G3U5	77.3518242433
+UniRef50_I3G3U5|g__Staphylococcus.s__Staphylococcus_aureus	77.2519138453
+UniRef50_I3G3U5|unclassified	0.0999103980
+UniRef50_G1Y5A8	77.3292939291
+UniRef50_G1Y5A8|g__Escherichia.s__Escherichia_coli	77.3292939291
+UniRef50_L7WT15: Glycosyltransferase stabilizing protein Gtf2	77.2766468553
+UniRef50_L7WT15: Glycosyltransferase stabilizing protein Gtf2|g__Staphylococcus.s__Staphylococcus_epidermidis	77.2766468553
+UniRef50_E5QVT2: Riboflavin transporter RibU	77.2623642053
+UniRef50_E5QVT2: Riboflavin transporter RibU|g__Staphylococcus.s__Staphylococcus_aureus	77.2623642053
+UniRef50_Q3IV76	77.2348336983
+UniRef50_Q3IV76|g__Rhodobacter.s__Rhodobacter_sphaeroides	63.0533516719
+UniRef50_Q3IV76|unclassified	14.1814820264
+UniRef50_Q5HR55	77.1922896560
+UniRef50_Q5HR55|g__Staphylococcus.s__Staphylococcus_epidermidis	75.2116883074
+UniRef50_Q5HR55|unclassified	1.9806013486
+UniRef50_A7WZS8: Triosephosphate isomerase	77.1895587389
+UniRef50_A7WZS8: Triosephosphate isomerase|g__Staphylococcus.s__Staphylococcus_aureus	76.7046739811
+UniRef50_A7WZS8: Triosephosphate isomerase|unclassified	0.4848847577
+UniRef50_Q9KF52: Phosphoribosylamine--glycine ligase	77.1239220383
+UniRef50_Q9KF52: Phosphoribosylamine--glycine ligase|g__Streptococcus.s__Streptococcus_mutans	74.2302697235
+UniRef50_Q9KF52: Phosphoribosylamine--glycine ligase|g__Streptococcus.s__Streptococcus_agalactiae	2.8936523148
+UniRef50_G8NMF7: Oligopeptide ABC transporter, permease protein	77.1118007300
+UniRef50_G8NMF7: Oligopeptide ABC transporter, permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	77.1118007300
+UniRef50_Q5HFS5: Tyrosine recombinase XerD	77.0889470946
+UniRef50_Q5HFS5: Tyrosine recombinase XerD|g__Staphylococcus.s__Staphylococcus_aureus	77.0889470946
+UniRef50_A5IV34: 50S ribosomal protein L3	77.0878562918
+UniRef50_A5IV34: 50S ribosomal protein L3|g__Staphylococcus.s__Staphylococcus_aureus	77.0878562918
+UniRef50_Q5HLI8: Glutaredoxin, putative	77.0869035418
+UniRef50_Q5HLI8: Glutaredoxin, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	77.0869035418
+UniRef50_O32037: tRNA threonylcarbamoyladenosine dehydratase	77.0672781064
+UniRef50_O32037: tRNA threonylcarbamoyladenosine dehydratase|g__Staphylococcus.s__Staphylococcus_aureus	77.0672781064
+UniRef50_F8DJ84: CBS domain protein	77.0624766378
+UniRef50_F8DJ84: CBS domain protein|g__Streptococcus.s__Streptococcus_mutans	77.0624766378
+UniRef50_P0AGB8: ECF RNA polymerase sigma-E factor	77.0442890347
+UniRef50_P0AGB8: ECF RNA polymerase sigma-E factor|g__Escherichia.s__Escherichia_coli	77.0442890347
+UniRef50_Q5HK23: Ribosomal RNA large subunit methyltransferase H	77.0214742298
+UniRef50_Q5HK23: Ribosomal RNA large subunit methyltransferase H|g__Staphylococcus.s__Staphylococcus_epidermidis	77.0214742298
+UniRef50_I6TSJ0	76.9780996676
+UniRef50_I6TSJ0|g__Streptococcus.s__Streptococcus_mutans	76.9780996676
+UniRef50_O34994: Transcriptional repressor CcpN	76.9752032306
+UniRef50_O34994: Transcriptional repressor CcpN|g__Staphylococcus.s__Staphylococcus_epidermidis	41.8742733450
+UniRef50_O34994: Transcriptional repressor CcpN|g__Staphylococcus.s__Staphylococcus_aureus	35.1009298857
+UniRef50_A4VVE0: FAD synthase	76.9648306031
+UniRef50_A4VVE0: FAD synthase|g__Streptococcus.s__Streptococcus_mutans	76.9648306031
+UniRef50_J0HXT5	76.9623958633
+UniRef50_J0HXT5|g__Staphylococcus.s__Staphylococcus_epidermidis	76.9623958633
+UniRef50_H3RT40	76.9405188540
+UniRef50_H3RT40|g__Staphylococcus.s__Staphylococcus_aureus	76.9405188540
+UniRef50_Q8DVR0: Biofilm regulatory protein A	76.9333875507
+UniRef50_Q8DVR0: Biofilm regulatory protein A|g__Streptococcus.s__Streptococcus_mutans	76.9333875507
+UniRef50_Q48NP4: OsmC/Ohr family protein	76.9230769231
+UniRef50_Q48NP4: OsmC/Ohr family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	76.9230769231
+UniRef50_F4FR09: Succinate-semialdehyde dehydrogenase (NAD(P)(+))	76.9141634950
+UniRef50_F4FR09: Succinate-semialdehyde dehydrogenase (NAD(P)(+))|g__Streptococcus.s__Streptococcus_mutans	70.2447777419
+UniRef50_F4FR09: Succinate-semialdehyde dehydrogenase (NAD(P)(+))|g__Streptococcus.s__Streptococcus_agalactiae	6.6693857530
+UniRef50_Q16DL2: Ubiquinone biosynthesis protein UbiB	76.9130546059
+UniRef50_Q16DL2: Ubiquinone biosynthesis protein UbiB|g__Rhodobacter.s__Rhodobacter_sphaeroides	76.9130546059
+UniRef50_Q8E7Y8: Peptidyl-tRNA hydrolase	76.8871666494
+UniRef50_Q8E7Y8: Peptidyl-tRNA hydrolase|g__Streptococcus.s__Streptococcus_mutans	72.9867378304
+UniRef50_Q8E7Y8: Peptidyl-tRNA hydrolase|g__Streptococcus.s__Streptococcus_agalactiae	3.9004288191
+UniRef50_A4WW27	76.8850973712
+UniRef50_A4WW27|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.8920610732
+UniRef50_A4WW27|unclassified	23.9930362981
+UniRef50_D3QEY2: 4'-phosphopantetheinyl transferase	76.8732611938
+UniRef50_D3QEY2: 4'-phosphopantetheinyl transferase|g__Staphylococcus.s__Staphylococcus_epidermidis	76.8732611938
+UniRef50_I0C5E6: Endonuclease	76.8595855665
+UniRef50_I0C5E6: Endonuclease|g__Staphylococcus.s__Staphylococcus_aureus	76.8595855665
+UniRef50_Q0HVJ1: Drug resistance transporter, EmrB/QacA subfamily	76.8498072785
+UniRef50_Q0HVJ1: Drug resistance transporter, EmrB/QacA subfamily|g__Rhodobacter.s__Rhodobacter_sphaeroides	76.8498072785
+UniRef50_A3PGB1: Tripartite ATP-independent periplasmic transporter, DctQ component	76.8369537552
+UniRef50_A3PGB1: Tripartite ATP-independent periplasmic transporter, DctQ component|g__Rhodobacter.s__Rhodobacter_sphaeroides	71.6595693632
+UniRef50_A3PGB1: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	5.1773843920
+UniRef50_W7WFV4: Methylmalonyl-CoA mutase	76.8279395078
+UniRef50_W7WFV4: Methylmalonyl-CoA mutase|g__Rhodobacter.s__Rhodobacter_sphaeroides	76.8279395078
+UniRef50_A7WZX4	76.8128697591
+UniRef50_A7WZX4|g__Staphylococcus.s__Staphylococcus_aureus	76.8128697591
+UniRef50_C5N461: MAP domain protein	76.7843693182
+UniRef50_C5N461: MAP domain protein|g__Staphylococcus.s__Staphylococcus_aureus	76.7843693182
+UniRef50_Q8CQQ1	76.7787535486
+UniRef50_Q8CQQ1|g__Staphylococcus.s__Staphylococcus_epidermidis	76.7787535486
+UniRef50_Q5HG72: Nuclease SbcCD subunit C	76.7648548099
+UniRef50_Q5HG72: Nuclease SbcCD subunit C|g__Staphylococcus.s__Staphylococcus_aureus	76.7648548099
+UniRef50_N3KST8: Trehalose 6-phosphate phosphatase (Fragment)	76.7442353196
+UniRef50_N3KST8: Trehalose 6-phosphate phosphatase (Fragment)|g__Escherichia.s__Escherichia_coli	76.7442353196
+UniRef50_Q8CQQ7	76.7426531397
+UniRef50_Q8CQQ7|g__Staphylococcus.s__Staphylococcus_epidermidis	76.7426531397
+UniRef50_F4SM12: Inner membrane transporter YcaM	76.7409731485
+UniRef50_F4SM12: Inner membrane transporter YcaM|g__Escherichia.s__Escherichia_coli	76.7409731485
+UniRef50_Q49Z27	76.7406708501
+UniRef50_Q49Z27|g__Staphylococcus.s__Staphylococcus_epidermidis	76.7406708501
+UniRef50_T1Y5K7	76.7330150849
+UniRef50_T1Y5K7|g__Staphylococcus.s__Staphylococcus_aureus	45.9079098710
+UniRef50_T1Y5K7|g__Staphylococcus.s__Staphylococcus_epidermidis	30.8251052138
+UniRef50_B9KKX9: Na+/solute symporter	76.7153401797
+UniRef50_B9KKX9: Na+/solute symporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	76.7153401797
+UniRef50_R0XB61	76.6924218885
+UniRef50_R0XB61|unclassified	76.6924218885
+UniRef50_C7M0E4: 2-isopropylmalate synthase	76.6877780099
+UniRef50_C7M0E4: 2-isopropylmalate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	76.5690016239
+UniRef50_C7M0E4: 2-isopropylmalate synthase|unclassified	0.1187763860
+UniRef50_D3EY08	76.6750772828
+UniRef50_D3EY08|g__Staphylococcus.s__Staphylococcus_aureus	74.1150585728
+UniRef50_D3EY08|unclassified	2.5600187100
+UniRef50_B2Y834: Abortive phage resistance protein-like protein	76.6415837104
+UniRef50_B2Y834: Abortive phage resistance protein-like protein|g__Staphylococcus.s__Staphylococcus_aureus	63.0564233311
+UniRef50_B2Y834: Abortive phage resistance protein-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	13.5851603793
+UniRef50_Q7UJL3: Inosine-5'-monophosphate dehydrogenase	76.6360648469
+UniRef50_Q7UJL3: Inosine-5'-monophosphate dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	51.6449468794
+UniRef50_Q7UJL3: Inosine-5'-monophosphate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.2413056398
+UniRef50_Q7UJL3: Inosine-5'-monophosphate dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4780123890
+UniRef50_Q7UJL3: Inosine-5'-monophosphate dehydrogenase|unclassified	0.2717999387
+UniRef50_F4BQ82: NADH peroxidase	76.5836255160
+UniRef50_F4BQ82: NADH peroxidase|g__Staphylococcus.s__Staphylococcus_epidermidis	76.5836255160
+UniRef50_Q6GHV6: Iron-regulated surface determinant protein A	76.5816373833
+UniRef50_Q6GHV6: Iron-regulated surface determinant protein A|g__Staphylococcus.s__Staphylococcus_aureus	76.5816373833
+UniRef50_P0A0K1	76.5582209639
+UniRef50_P0A0K1|g__Staphylococcus.s__Staphylococcus_aureus	76.5582209639
+UniRef50_C9AA28: FeS assembly protein SufD	76.5306840161
+UniRef50_C9AA28: FeS assembly protein SufD|g__Streptococcus.s__Streptococcus_mutans	73.9749176775
+UniRef50_C9AA28: FeS assembly protein SufD|g__Streptococcus.s__Streptococcus_agalactiae	2.5557663386
+UniRef50_Q21CS1: 3-isopropylmalate dehydrogenase	76.5108218542
+UniRef50_Q21CS1: 3-isopropylmalate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	76.0325446144
+UniRef50_Q21CS1: 3-isopropylmalate dehydrogenase|unclassified	0.4782772398
+UniRef50_Q8DQD2: ADP-dependent (S)-NAD(P)H-hydrate dehydratase	76.4933066335
+UniRef50_Q8DQD2: ADP-dependent (S)-NAD(P)H-hydrate dehydratase|g__Streptococcus.s__Streptococcus_mutans	74.3544352117
+UniRef50_Q8DQD2: ADP-dependent (S)-NAD(P)H-hydrate dehydratase|g__Streptococcus.s__Streptococcus_agalactiae	2.0790020790
+UniRef50_Q8DQD2: ADP-dependent (S)-NAD(P)H-hydrate dehydratase|unclassified	0.0598693428
+UniRef50_Q49XL3	76.4763800588
+UniRef50_Q49XL3|g__Staphylococcus.s__Staphylococcus_epidermidis	76.4763800588
+UniRef50_T1YA90	76.3306054903
+UniRef50_T1YA90|g__Staphylococcus.s__Staphylococcus_aureus	72.2758704370
+UniRef50_T1YA90|unclassified	4.0547350534
+UniRef50_K0LM02: Formate/nitrite transporter family protein	76.2800600981
+UniRef50_K0LM02: Formate/nitrite transporter family protein|g__Staphylococcus.s__Staphylococcus_aureus	76.2800600981
+UniRef50_B9DPV8: Heme A synthase	76.2551313139
+UniRef50_B9DPV8: Heme A synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	76.2551313139
+UniRef50_I7ECV7: Peptidoglycan binding-like protein	76.2550538372
+UniRef50_I7ECV7: Peptidoglycan binding-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	74.6695056086
+UniRef50_I7ECV7: Peptidoglycan binding-like protein|unclassified	1.5855482286
+UniRef50_Q46812: Protein SsnA	76.2522099207
+UniRef50_Q46812: Protein SsnA|g__Escherichia.s__Escherichia_coli	76.2522099207
+UniRef50_W6RLX0: Spermidine/putrescine-binding periplasmic protein SPBP	76.2275900405
+UniRef50_W6RLX0: Spermidine/putrescine-binding periplasmic protein SPBP|g__Rhodobacter.s__Rhodobacter_sphaeroides	76.2275900405
+UniRef50_B5EHD3: TRAP proton/dicarboxylate symporter, large membrane protein component	76.2011757362
+UniRef50_B5EHD3: TRAP proton/dicarboxylate symporter, large membrane protein component|g__Rhodobacter.s__Rhodobacter_sphaeroides	66.7515734292
+UniRef50_B5EHD3: TRAP proton/dicarboxylate symporter, large membrane protein component|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.4496023070
+UniRef50_A3PJJ6	76.1345149686
+UniRef50_A3PJJ6|g__Rhodobacter.s__Rhodobacter_sphaeroides	76.1345149686
+UniRef50_Q4L5F4: Succinate dehydrogenase iron-sulfur protein subunit	76.1077568630
+UniRef50_Q4L5F4: Succinate dehydrogenase iron-sulfur protein subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	76.1077568630
+UniRef50_B9KSN1	76.0469869949
+UniRef50_B9KSN1|g__Rhodobacter.s__Rhodobacter_sphaeroides	71.2392669059
+UniRef50_B9KSN1|unclassified	4.8077200890
+UniRef50_Q8CU14	76.0446441194
+UniRef50_Q8CU14|g__Staphylococcus.s__Staphylococcus_epidermidis	76.0446441194
+UniRef50_Q99SN7	76.0205607416
+UniRef50_Q99SN7|g__Staphylococcus.s__Staphylococcus_aureus	76.0205607416
+UniRef50_B4U3L6: DNA replication protein DnaD	75.8658368599
+UniRef50_B4U3L6: DNA replication protein DnaD|g__Streptococcus.s__Streptococcus_mutans	74.2910337103
+UniRef50_B4U3L6: DNA replication protein DnaD|g__Streptococcus.s__Streptococcus_agalactiae	1.5748031496
+UniRef50_Q3IUX7: Acyltransferase 3 family	75.8601468092
+UniRef50_Q3IUX7: Acyltransferase 3 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	75.8601468092
+UniRef50_Q9B0F8: DnaC	75.8589460115
+UniRef50_Q9B0F8: DnaC|g__Staphylococcus.s__Staphylococcus_aureus	75.8589460115
+UniRef50_Q2G6V6: Thymidylate synthase	75.7981533893
+UniRef50_Q2G6V6: Thymidylate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	75.4270509713
+UniRef50_Q2G6V6: Thymidylate synthase|unclassified	0.3711024180
+UniRef50_L7WWN9: N-acetylmuramoyl-L-alanine amidase	75.7951812891
+UniRef50_L7WWN9: N-acetylmuramoyl-L-alanine amidase|g__Staphylococcus.s__Staphylococcus_epidermidis	75.7951812891
+UniRef50_R5A036: Transcriptional regulator, MerR family	75.7778918738
+UniRef50_R5A036: Transcriptional regulator, MerR family|g__Streptococcus.s__Streptococcus_mutans	53.9366678871
+UniRef50_R5A036: Transcriptional regulator, MerR family|g__Streptococcus.s__Streptococcus_agalactiae	21.8412239867
+UniRef50_Q8CQY8	75.7755818604
+UniRef50_Q8CQY8|g__Staphylococcus.s__Staphylococcus_epidermidis	75.5070872789
+UniRef50_Q8CQY8|unclassified	0.2684945815
+UniRef50_C0ZBE7: Deoxyadenosine/deoxycytidine kinase	75.7751425088
+UniRef50_C0ZBE7: Deoxyadenosine/deoxycytidine kinase|g__Staphylococcus.s__Staphylococcus_aureus	75.7751425088
+UniRef50_D5VJS0: DEAD/DEAH box helicase domain protein	75.7530130474
+UniRef50_D5VJS0: DEAD/DEAH box helicase domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	75.7530130474
+UniRef50_O07603: Putative aminopeptidase YhfE	75.7273716136
+UniRef50_O07603: Putative aminopeptidase YhfE|g__Staphylococcus.s__Staphylococcus_aureus	75.7273716136
+UniRef50_Q55154: Chaperone protein dnaK1	75.7218495848
+UniRef50_Q55154: Chaperone protein dnaK1|g__Staphylococcus.s__Staphylococcus_aureus	75.7218495848
+UniRef50_O07575	75.7094013594
+UniRef50_O07575|g__Staphylococcus.s__Staphylococcus_epidermidis	75.3403393043
+UniRef50_O07575|unclassified	0.3690620551
+UniRef50_A7ZK57: 3-hydroxydecanoyl-[acyl-carrier-protein] dehydratase	75.7064546791
+UniRef50_A7ZK57: 3-hydroxydecanoyl-[acyl-carrier-protein] dehydratase|g__Escherichia.s__Escherichia_coli	40.5184232719
+UniRef50_A7ZK57: 3-hydroxydecanoyl-[acyl-carrier-protein] dehydratase|g__Pseudomonas.s__Pseudomonas_aeruginosa	34.6792493060
+UniRef50_A7ZK57: 3-hydroxydecanoyl-[acyl-carrier-protein] dehydratase|unclassified	0.5087821011
+UniRef50_Q4A072: Na+ H+ exchanger	75.7017643837
+UniRef50_Q4A072: Na+ H+ exchanger|g__Staphylococcus.s__Staphylococcus_epidermidis	75.7017643837
+UniRef50_Q3J9K9: Transcriptional repressor NrdR	75.6870626628
+UniRef50_Q3J9K9: Transcriptional repressor NrdR|g__Escherichia.s__Escherichia_coli	75.6870626628
+UniRef50_J3UP44	75.6844047572
+UniRef50_J3UP44|g__Streptococcus.s__Streptococcus_mutans	72.9371520100
+UniRef50_J3UP44|g__Streptococcus.s__Streptococcus_agalactiae	2.7472527473
+UniRef50_F5M3S4	75.6621796392
+UniRef50_F5M3S4|g__Rhodobacter.s__Rhodobacter_sphaeroides	72.2062112810
+UniRef50_F5M3S4|unclassified	3.4559683582
+UniRef50_T1Y972: Transposase	75.5936513030
+UniRef50_T1Y972: Transposase|g__Staphylococcus.s__Staphylococcus_epidermidis	75.5936513030
+UniRef50_A8A272	75.5924561954
+UniRef50_A8A272|g__Escherichia.s__Escherichia_coli	73.8732584716
+UniRef50_A8A272|unclassified	1.7191977239
+UniRef50_A3PRZ2: Transcriptional regulator, LysR family	75.5825598423
+UniRef50_A3PRZ2: Transcriptional regulator, LysR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	75.5825598423
+UniRef50_E8SFD5: Glycosyl transferase, group 1 family protein	75.5353552639
+UniRef50_E8SFD5: Glycosyl transferase, group 1 family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	75.5353552639
+UniRef50_Q5HQE2: Serine protease HtrA-like	75.5144628138
+UniRef50_Q5HQE2: Serine protease HtrA-like|g__Staphylococcus.s__Staphylococcus_epidermidis	75.5144628138
+UniRef50_R5XW73: Glycerol-3-phosphate cytidyltransferase	75.5060450557
+UniRef50_R5XW73: Glycerol-3-phosphate cytidyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	41.3375417569
+UniRef50_R5XW73: Glycerol-3-phosphate cytidyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	34.1685032989
+UniRef50_R9YPL9: Host cell surface-exposed lipofamily protein	75.4959216641
+UniRef50_R9YPL9: Host cell surface-exposed lipofamily protein|g__Staphylococcus.s__Staphylococcus_epidermidis	75.4959216641
+UniRef50_D2N9E8: MAP domain protein	75.4700889916
+UniRef50_D2N9E8: MAP domain protein|g__Staphylococcus.s__Staphylococcus_aureus	75.4700889916
+UniRef50_P00644: Thermonuclease	75.4562950112
+UniRef50_P00644: Thermonuclease|g__Staphylococcus.s__Staphylococcus_aureus	75.4562950112
+UniRef50_R9DJ31	75.4454145019
+UniRef50_R9DJ31|unclassified	75.4454145019
+UniRef50_D0K5S8: Ftsk/spoiiie family protein	75.4352447465
+UniRef50_D0K5S8: Ftsk/spoiiie family protein|g__Staphylococcus.s__Staphylococcus_aureus	75.4352447465
+UniRef50_F8HBY9: D-alanyl-D-alanine carboxypeptidase DacA	75.4278020009
+UniRef50_F8HBY9: D-alanyl-D-alanine carboxypeptidase DacA|g__Streptococcus.s__Streptococcus_mutans	71.1607078001
+UniRef50_F8HBY9: D-alanyl-D-alanine carboxypeptidase DacA|g__Streptococcus.s__Streptococcus_agalactiae	4.2670942008
+UniRef50_D5BS61: RNA polymerase, sigma 28 subunit, FliA/WhiG	75.4167533993
+UniRef50_D5BS61: RNA polymerase, sigma 28 subunit, FliA/WhiG|g__Rhodobacter.s__Rhodobacter_sphaeroides	75.4167533993
+UniRef50_Q2FEB2: HTH-type transcriptional regulator SarZ	75.4105156819
+UniRef50_Q2FEB2: HTH-type transcriptional regulator SarZ|g__Staphylococcus.s__Staphylococcus_epidermidis	38.8610363900
+UniRef50_Q2FEB2: HTH-type transcriptional regulator SarZ|g__Staphylococcus.s__Staphylococcus_aureus	36.5494792919
+UniRef50_A9CJS1: ABC transporter, substrate binding protein	75.3307040494
+UniRef50_A9CJS1: ABC transporter, substrate binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	75.3307040494
+UniRef50_Q3IW43	75.3066474983
+UniRef50_Q3IW43|g__Rhodobacter.s__Rhodobacter_sphaeroides	71.9828737421
+UniRef50_Q3IW43|unclassified	3.3237737562
+UniRef50_P50975: NADH-quinone oxidoreductase subunit J	75.3040671894
+UniRef50_P50975: NADH-quinone oxidoreductase subunit J|g__Rhodobacter.s__Rhodobacter_sphaeroides	71.9863746284
+UniRef50_P50975: NADH-quinone oxidoreductase subunit J|unclassified	3.3176925611
+UniRef50_P26158	75.2606745115
+UniRef50_P26158|g__Rhodobacter.s__Rhodobacter_sphaeroides	74.8110061332
+UniRef50_P26158|unclassified	0.4496683783
+UniRef50_G7ZNX7: Competence protein ComEC, putative	75.2531327111
+UniRef50_G7ZNX7: Competence protein ComEC, putative|g__Staphylococcus.s__Staphylococcus_aureus	75.2531327111
+UniRef50_A0RIM4: L-cystine uptake protein TcyP	75.2271696313
+UniRef50_A0RIM4: L-cystine uptake protein TcyP|g__Staphylococcus.s__Staphylococcus_epidermidis	75.2271696313
+UniRef50_A1B939: SufBD protein	75.1845401800
+UniRef50_A1B939: SufBD protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	75.1845401800
+UniRef50_I6TNC0: Serine acetyltransferase	75.1494222482
+UniRef50_I6TNC0: Serine acetyltransferase|g__Streptococcus.s__Streptococcus_mutans	75.1494222482
+UniRef50_Q5LWX2: Flagellar basal-body rod protein FlgC	75.0727119142
+UniRef50_Q5LWX2: Flagellar basal-body rod protein FlgC|g__Rhodobacter.s__Rhodobacter_sphaeroides	75.0727119142
+UniRef50_C5Q4V1	75.0676117424
+UniRef50_C5Q4V1|g__Staphylococcus.s__Staphylococcus_aureus	67.9247545995
+UniRef50_C5Q4V1|unclassified	7.1428571429
+UniRef50_E8SHI1: Predicted oxidoreductase	75.0029812333
+UniRef50_E8SHI1: Predicted oxidoreductase|g__Staphylococcus.s__Staphylococcus_aureus	75.0029812333
+UniRef50_A5UNM6: SAM-dependent methyltransferase	74.9795142231
+UniRef50_A5UNM6: SAM-dependent methyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	74.9795142231
+UniRef50_Q07184	74.8859484218
+UniRef50_Q07184|g__Rhodobacter.s__Rhodobacter_sphaeroides	74.8859484218
+UniRef50_Q3J1M2	74.8652626682
+UniRef50_Q3J1M2|unclassified	65.1565248042
+UniRef50_Q3J1M2|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.7087378641
+UniRef50_L7WT69	74.8345138030
+UniRef50_L7WT69|g__Staphylococcus.s__Staphylococcus_epidermidis	74.8345138030
+UniRef50_D5AL29: Two-component response regulator receiver protein	74.8314205301
+UniRef50_D5AL29: Two-component response regulator receiver protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	74.8314205301
+UniRef50_Q73GH4: NADH-quinone oxidoreductase subunit I	74.7777299663
+UniRef50_Q73GH4: NADH-quinone oxidoreductase subunit I|g__Rhodobacter.s__Rhodobacter_sphaeroides	74.0459452022
+UniRef50_Q73GH4: NADH-quinone oxidoreductase subunit I|unclassified	0.7317847641
+UniRef50_Q49WA8	74.7750692442
+UniRef50_Q49WA8|g__Staphylococcus.s__Staphylococcus_aureus	74.7750692442
+UniRef50_Q5HNB3: O-succinylbenzoic acid synthetase, putative	74.7672749817
+UniRef50_Q5HNB3: O-succinylbenzoic acid synthetase, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	74.7672749817
+UniRef50_Q8DRV2: Glucan-binding protein A, GbpA	74.7545957251
+UniRef50_Q8DRV2: Glucan-binding protein A, GbpA|g__Streptococcus.s__Streptococcus_mutans	74.7545957251
+UniRef50_B0TI32: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha	74.7507301307
+UniRef50_B0TI32: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|g__Staphylococcus.s__Staphylococcus_epidermidis	73.2576510350
+UniRef50_B0TI32: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|unclassified	1.4930790956
+UniRef50_Q5HKS8: Cell wall surface anchor family protein	74.6988935822
+UniRef50_Q5HKS8: Cell wall surface anchor family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	74.6988935822
+UniRef50_Q5XCE8: Dihydrolipoamide dehydrogenase	74.6935879919
+UniRef50_Q5XCE8: Dihydrolipoamide dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	71.4733456610
+UniRef50_Q5XCE8: Dihydrolipoamide dehydrogenase|g__Streptococcus.s__Streptococcus_agalactiae	3.2202423309
+UniRef50_Q50784: Polyferredoxin protein MvhB	74.6734321905
+UniRef50_Q50784: Polyferredoxin protein MvhB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	74.6734321905
+UniRef50_A3PH50	74.6657363140
+UniRef50_A3PH50|g__Rhodobacter.s__Rhodobacter_sphaeroides	73.3818674197
+UniRef50_A3PH50|unclassified	1.2838688943
+UniRef50_E8SJ70: Organic hydroperoxide resistance protein	74.6519736278
+UniRef50_E8SJ70: Organic hydroperoxide resistance protein|g__Staphylococcus.s__Staphylococcus_epidermidis	74.6519736278
+UniRef50_A7HYI4: 50S ribosomal protein L9	74.6495534162
+UniRef50_A7HYI4: 50S ribosomal protein L9|g__Rhodobacter.s__Rhodobacter_sphaeroides	74.6495534162
+UniRef50_M5AH54: Nod factor export ATP-binding protein I	74.6319302049
+UniRef50_M5AH54: Nod factor export ATP-binding protein I|g__Streptococcus.s__Streptococcus_mutans	69.2667071927
+UniRef50_M5AH54: Nod factor export ATP-binding protein I|g__Streptococcus.s__Streptococcus_agalactiae	5.3652230123
+UniRef50_A0B343: Binding-protein-dependent transport systems inner membrane component	74.6214216711
+UniRef50_A0B343: Binding-protein-dependent transport systems inner membrane component|g__Staphylococcus.s__Staphylococcus_epidermidis	74.6214216711
+UniRef50_D3QIQ9	74.5997374629
+UniRef50_D3QIQ9|g__Staphylococcus.s__Staphylococcus_aureus	74.5997374629
+UniRef50_E8SJA6: SAM-dependent methyltransferase, MraW methylase family	74.5851015993
+UniRef50_E8SJA6: SAM-dependent methyltransferase, MraW methylase family|g__Staphylococcus.s__Staphylococcus_epidermidis	74.5851015993
+UniRef50_A5IVH0: Zn-dependent protease-like protein	74.5608899099
+UniRef50_A5IVH0: Zn-dependent protease-like protein|g__Staphylococcus.s__Staphylococcus_aureus	74.5608899099
+UniRef50_Q5FLS6: Alcohol-acetaldehyde dehydrogenase	74.5574739489
+UniRef50_Q5FLS6: Alcohol-acetaldehyde dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	74.5574739489
+UniRef50_Q5HF24: D-alanine aminotransferase	74.5490030832
+UniRef50_Q5HF24: D-alanine aminotransferase|g__Staphylococcus.s__Staphylococcus_aureus	74.3990273001
+UniRef50_Q5HF24: D-alanine aminotransferase|unclassified	0.1499757832
+UniRef50_E9LLQ7: IS2 ORFB transposase	74.5181163126
+UniRef50_E9LLQ7: IS2 ORFB transposase|g__Escherichia.s__Escherichia_coli	74.5181163126
+UniRef50_Q02441: Denitrification regulatory protein NirQ	74.5111987404
+UniRef50_Q02441: Denitrification regulatory protein NirQ|g__Rhodobacter.s__Rhodobacter_sphaeroides	74.5111987404
+UniRef50_Q6GDM0	74.5023123158
+UniRef50_Q6GDM0|g__Staphylococcus.s__Staphylococcus_aureus	74.5023123158
+UniRef50_Q5HPN1: Portal protein, truncation	74.4975830395
+UniRef50_Q5HPN1: Portal protein, truncation|g__Staphylococcus.s__Staphylococcus_epidermidis	74.4975830395
+UniRef50_P80876: General stress protein 18	74.4738683675
+UniRef50_P80876: General stress protein 18|g__Staphylococcus.s__Staphylococcus_epidermidis	74.4738683675
+UniRef50_D3QGJ7: Nitrilotriacetate monooxygenase	74.4249456286
+UniRef50_D3QGJ7: Nitrilotriacetate monooxygenase|g__Staphylococcus.s__Staphylococcus_epidermidis	74.4249456286
+UniRef50_Q8CP12: ComEC late competence protein 3	74.4049699800
+UniRef50_Q8CP12: ComEC late competence protein 3|g__Staphylococcus.s__Staphylococcus_epidermidis	74.4049699800
+UniRef50_B8EMX2: Alpha,alpha-trehalose-phosphate synthase (UDP-forming)	74.3940001541
+UniRef50_B8EMX2: Alpha,alpha-trehalose-phosphate synthase (UDP-forming)|g__Rhodobacter.s__Rhodobacter_sphaeroides	74.3940001541
+UniRef50_O31219: Aspartate-semialdehyde dehydrogenase	74.2749040362
+UniRef50_O31219: Aspartate-semialdehyde dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	74.2749040362
+UniRef50_I7E3Y1: Dimethylglycine dehydrogenase DmgdH	74.2742779543
+UniRef50_I7E3Y1: Dimethylglycine dehydrogenase DmgdH|g__Rhodobacter.s__Rhodobacter_sphaeroides	74.2742779543
+UniRef50_P31078: HTH-type transcriptional regulator PetP	74.2509467251
+UniRef50_P31078: HTH-type transcriptional regulator PetP|g__Rhodobacter.s__Rhodobacter_sphaeroides	74.2509467251
+UniRef50_A1WJX6: TRAP dicarboxylate transporter, DctM subunit	74.2350492938
+UniRef50_A1WJX6: TRAP dicarboxylate transporter, DctM subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	74.2350492938
+UniRef50_Q9CEY4: Putrescine carbamoyltransferase	74.2304240839
+UniRef50_Q9CEY4: Putrescine carbamoyltransferase|g__Streptococcus.s__Streptococcus_mutans	74.2304240839
+UniRef50_Q9KWJ8: Putative acetyltransferase	74.2297744280
+UniRef50_Q9KWJ8: Putative acetyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	74.2297744280
+UniRef50_B9JX70: ABC transporter membrane spanning protein	74.2148143823
+UniRef50_B9JX70: ABC transporter membrane spanning protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	74.2148143823
+UniRef50_A8AZX9	74.2017586575
+UniRef50_A8AZX9|g__Streptococcus.s__Streptococcus_mutans	74.2017586575
+UniRef50_W0F7K7: Permease of the major facilitator superfamily	74.1872903351
+UniRef50_W0F7K7: Permease of the major facilitator superfamily|g__Staphylococcus.s__Staphylococcus_epidermidis	74.1872903351
+UniRef50_Q6GI34: Glutamyl endopeptidase	74.1458043688
+UniRef50_Q6GI34: Glutamyl endopeptidase|g__Staphylococcus.s__Staphylococcus_aureus	74.1458043688
+UniRef50_C6SRE9	74.1223687162
+UniRef50_C6SRE9|g__Streptococcus.s__Streptococcus_mutans	74.1223687162
+UniRef50_T0TDZ2: Elongation factor G	74.0921938663
+UniRef50_T0TDZ2: Elongation factor G|g__Streptococcus.s__Streptococcus_mutans	65.9465149904
+UniRef50_T0TDZ2: Elongation factor G|g__Streptococcus.s__Streptococcus_agalactiae	8.1456788759
+UniRef50_Q9APM5: Taurine--pyruvate aminotransferase	74.0909899457
+UniRef50_Q9APM5: Taurine--pyruvate aminotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	73.0441526852
+UniRef50_Q9APM5: Taurine--pyruvate aminotransferase|unclassified	1.0468372605
+UniRef50_A5UKT3	74.0740740741
+UniRef50_A5UKT3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	74.0740740741
+UniRef50_A5INZ6	74.0471685895
+UniRef50_A5INZ6|g__Staphylococcus.s__Staphylococcus_aureus	74.0471685895
+UniRef50_Q3J090	74.0403543617
+UniRef50_Q3J090|g__Rhodobacter.s__Rhodobacter_sphaeroides	74.0403543617
+UniRef50_C7ZTG4: Polysaccharide biosynthesis protein	73.9950978025
+UniRef50_C7ZTG4: Polysaccharide biosynthesis protein|g__Staphylococcus.s__Staphylococcus_aureus	73.9950978025
+UniRef50_D8HDV1: M23/M37 peptidase domain protein	73.9897723001
+UniRef50_D8HDV1: M23/M37 peptidase domain protein|g__Staphylococcus.s__Staphylococcus_aureus	73.9897723001
+UniRef50_Q2FEZ8: Type II pantothenate kinase	73.9743566809
+UniRef50_Q2FEZ8: Type II pantothenate kinase|g__Staphylococcus.s__Staphylococcus_aureus	73.9743566809
+UniRef50_P76066	73.9371373514
+UniRef50_P76066|g__Escherichia.s__Escherichia_coli	73.9371373514
+UniRef50_Q8EP56: Oligopeptide ABC transporter permease	73.8939337095
+UniRef50_Q8EP56: Oligopeptide ABC transporter permease|g__Staphylococcus.s__Staphylococcus_aureus	73.8939337095
+UniRef50_P40711: Peptidyl-tRNA hydrolase ArfB	73.8742897511
+UniRef50_P40711: Peptidyl-tRNA hydrolase ArfB|g__Escherichia.s__Escherichia_coli	73.8742897511
+UniRef50_F6G911: Transmembrane cytochrome bd-type quinol oxidase, subunit 1 oxidoreductase protein	73.8368499153
+UniRef50_F6G911: Transmembrane cytochrome bd-type quinol oxidase, subunit 1 oxidoreductase protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	63.8259193446
+UniRef50_F6G911: Transmembrane cytochrome bd-type quinol oxidase, subunit 1 oxidoreductase protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.0109305707
+UniRef50_Q28WI0: Chromosomal replication initiator protein DnaA	73.8022067186
+UniRef50_Q28WI0: Chromosomal replication initiator protein DnaA|g__Rhodobacter.s__Rhodobacter_sphaeroides	73.8022067186
+UniRef50_G8V046: Abi-like family protein	73.7900530241
+UniRef50_G8V046: Abi-like family protein|g__Staphylococcus.s__Staphylococcus_aureus	73.7900530241
+UniRef50_I0C4W3: Enterotoxin	73.7888357198
+UniRef50_I0C4W3: Enterotoxin|g__Staphylococcus.s__Staphylococcus_aureus	73.7888357198
+UniRef50_A8ALR8: Carnitine operon protein CaiE	73.7748122648
+UniRef50_A8ALR8: Carnitine operon protein CaiE|g__Escherichia.s__Escherichia_coli	73.7748122648
+UniRef50_D0CZU1: 2-oxoglutarate dehydrogenase E1 component	73.7738877061
+UniRef50_D0CZU1: 2-oxoglutarate dehydrogenase E1 component|g__Rhodobacter.s__Rhodobacter_sphaeroides	73.7738877061
+UniRef50_D3QES1	73.7453902940
+UniRef50_D3QES1|g__Staphylococcus.s__Staphylococcus_epidermidis	73.6764822835
+UniRef50_D3QES1|unclassified	0.0689080105
+UniRef50_D9PWF6	73.7118321968
+UniRef50_D9PWF6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	73.7118321968
+UniRef50_D2J7P9: Replication initiator protein	73.6998607301
+UniRef50_D2J7P9: Replication initiator protein|g__Staphylococcus.s__Staphylococcus_aureus	59.2883801415
+UniRef50_D2J7P9: Replication initiator protein|unclassified	14.4114805886
+UniRef50_C5N1I8	73.6644119727
+UniRef50_C5N1I8|g__Staphylococcus.s__Staphylococcus_aureus	73.3530040424
+UniRef50_C5N1I8|unclassified	0.3114079303
+UniRef50_D3QEW6: Two-component sensor histidine kinase	73.6411692965
+UniRef50_D3QEW6: Two-component sensor histidine kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	73.6411692965
+UniRef50_P37758: Nitrate/nitrite transporter NarU	73.5955312669
+UniRef50_P37758: Nitrate/nitrite transporter NarU|g__Escherichia.s__Escherichia_coli	73.5955312669
+UniRef50_P76121	73.5635220158
+UniRef50_P76121|g__Escherichia.s__Escherichia_coli	73.5635220158
+UniRef50_Q2YUT9	73.5177641788
+UniRef50_Q2YUT9|g__Staphylococcus.s__Staphylococcus_aureus	73.5177641788
+UniRef50_G9G2D3: Dipeptide ABC transporter, permease protein DppC	73.5144663967
+UniRef50_G9G2D3: Dipeptide ABC transporter, permease protein DppC|g__Rhodobacter.s__Rhodobacter_sphaeroides	73.5144663967
+UniRef50_Q8CP59: Probable elastin-binding protein EbpS	73.4809040556
+UniRef50_Q8CP59: Probable elastin-binding protein EbpS|g__Staphylococcus.s__Staphylococcus_epidermidis	73.4809040556
+UniRef50_O30808: NADP-dependent malic enzyme	73.3785324740
+UniRef50_O30808: NADP-dependent malic enzyme|g__Rhodobacter.s__Rhodobacter_sphaeroides	72.5549953662
+UniRef50_O30808: NADP-dependent malic enzyme|unclassified	0.8235371078
+UniRef50_A7INS2: Acyl-CoA dehydrogenase domain protein	73.3711133245
+UniRef50_A7INS2: Acyl-CoA dehydrogenase domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	67.1060407041
+UniRef50_A7INS2: Acyl-CoA dehydrogenase domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2650726204
+UniRef50_Q8CMZ3: 2-dehydropantoate 2-reductase	73.3699594647
+UniRef50_Q8CMZ3: 2-dehydropantoate 2-reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	73.3699594647
+UniRef50_C7RQ14	73.3648223944
+UniRef50_C7RQ14|g__Rhodobacter.s__Rhodobacter_sphaeroides	73.3648223944
+UniRef50_Q8DSN0: Trans-2-decenoyl-[acyl-carrier-protein] isomerase	73.3619026168
+UniRef50_Q8DSN0: Trans-2-decenoyl-[acyl-carrier-protein] isomerase|g__Streptococcus.s__Streptococcus_mutans	68.9059317346
+UniRef50_Q8DSN0: Trans-2-decenoyl-[acyl-carrier-protein] isomerase|g__Streptococcus.s__Streptococcus_agalactiae	4.4559708822
+UniRef50_Q164M5: 5,10-methylenetetrahydrofolate reductase, putative	73.3515843641
+UniRef50_Q164M5: 5,10-methylenetetrahydrofolate reductase, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	72.5715676822
+UniRef50_Q164M5: 5,10-methylenetetrahydrofolate reductase, putative|unclassified	0.7800166819
+UniRef50_C5N5T3: ABC-2 type transporter	73.3152876241
+UniRef50_C5N5T3: ABC-2 type transporter|g__Staphylococcus.s__Staphylococcus_aureus	73.3152876241
+UniRef50_K7YQ88: N5-carboxyaminoimidazole ribonucleotide mutase	73.2822365591
+UniRef50_K7YQ88: N5-carboxyaminoimidazole ribonucleotide mutase|g__Staphylococcus.s__Staphylococcus_aureus	73.2822365591
+UniRef50_Q8DV75	73.2787504444
+UniRef50_Q8DV75|g__Streptococcus.s__Streptococcus_mutans	72.4745165854
+UniRef50_Q8DV75|unclassified	0.8042338590
+UniRef50_A7Z1S6: Cadmium, cobalt and zinc/H(+)-K(+) antiporter	73.2449057711
+UniRef50_A7Z1S6: Cadmium, cobalt and zinc/H(+)-K(+) antiporter|g__Staphylococcus.s__Staphylococcus_aureus	73.2449057711
+UniRef50_T1XUW5	73.2432564775
+UniRef50_T1XUW5|g__Staphylococcus.s__Staphylococcus_aureus	72.1286534911
+UniRef50_T1XUW5|unclassified	1.1146029864
+UniRef50_I3TX99: Sulfite reductase (Ferredoxin)	73.1857720975
+UniRef50_I3TX99: Sulfite reductase (Ferredoxin)|g__Rhodobacter.s__Rhodobacter_sphaeroides	73.1857720975
+UniRef50_Q4L9L8: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	73.1518382835
+UniRef50_Q4L9L8: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	73.1518382835
+UniRef50_Q8CNC7: Urease accessory protein UreF	73.1418123022
+UniRef50_Q8CNC7: Urease accessory protein UreF|g__Staphylococcus.s__Staphylococcus_epidermidis	73.1418123022
+UniRef50_C5N5T1: SagB-type dehydrogenase domain protein	72.9952218269
+UniRef50_C5N5T1: SagB-type dehydrogenase domain protein|g__Staphylococcus.s__Staphylococcus_aureus	72.9952218269
+UniRef50_Q3J4Z5: Valine--tRNA ligase	72.9757691288
+UniRef50_Q3J4Z5: Valine--tRNA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	72.6524781845
+UniRef50_Q3J4Z5: Valine--tRNA ligase|unclassified	0.3232909443
+UniRef50_A8AYH1: Glucose-1-phosphate adenylyltransferase, GlgD subunit	72.9427379216
+UniRef50_A8AYH1: Glucose-1-phosphate adenylyltransferase, GlgD subunit|g__Streptococcus.s__Streptococcus_mutans	67.6329978676
+UniRef50_A8AYH1: Glucose-1-phosphate adenylyltransferase, GlgD subunit|g__Streptococcus.s__Streptococcus_agalactiae	5.3097400540
+UniRef50_T0CSQ2: Glycosyltransferase, group 1 family protein	72.9264447492
+UniRef50_T0CSQ2: Glycosyltransferase, group 1 family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	72.9264447492
+UniRef50_S5XRJ3: Proline iminopeptidase	72.8720140622
+UniRef50_S5XRJ3: Proline iminopeptidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	72.8720140622
+UniRef50_T1Y9S4: Phosphoesterase family protein	72.8486288571
+UniRef50_T1Y9S4: Phosphoesterase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	71.9398678885
+UniRef50_T1Y9S4: Phosphoesterase family protein|unclassified	0.9087609686
+UniRef50_A5E8J0: Heat-inducible transcription repressor HrcA	72.8248556134
+UniRef50_A5E8J0: Heat-inducible transcription repressor HrcA|g__Rhodobacter.s__Rhodobacter_sphaeroides	72.8248556134
+UniRef50_R0MDF2: DNA mismatch repair protein MutS	72.7852862500
+UniRef50_R0MDF2: DNA mismatch repair protein MutS|g__Streptococcus.s__Streptococcus_mutans	72.3577531161
+UniRef50_R0MDF2: DNA mismatch repair protein MutS|g__Streptococcus.s__Streptococcus_agalactiae	0.4275331338
+UniRef50_D8IIA8	72.7847470837
+UniRef50_D8IIA8|g__Streptococcus.s__Streptococcus_mutans	72.7847470837
+UniRef50_Q3IV31: Two component transcriptional regulator, LuxR family	72.7773591256
+UniRef50_Q3IV31: Two component transcriptional regulator, LuxR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	72.7773591256
+UniRef50_P0ACU8: HTH-type transcriptional regulator YjdC	72.7216869401
+UniRef50_P0ACU8: HTH-type transcriptional regulator YjdC|g__Escherichia.s__Escherichia_coli	72.7216869401
+UniRef50_Q74JN2: 50S ribosomal protein L32	72.7176363650
+UniRef50_Q74JN2: 50S ribosomal protein L32|g__Streptococcus.s__Streptococcus_mutans	72.7176363650
+UniRef50_Q8CP35: N-acetyl-gamma-glutamyl-phosphate reductase	72.7066922627
+UniRef50_Q8CP35: N-acetyl-gamma-glutamyl-phosphate reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	72.7066922627
+UniRef50_Q8CS10	72.7030504318
+UniRef50_Q8CS10|g__Staphylococcus.s__Staphylococcus_epidermidis	72.7030504318
+UniRef50_D2JAL6	72.6651805088
+UniRef50_D2JAL6|g__Staphylococcus.s__Staphylococcus_aureus	42.5300835165
+UniRef50_D2JAL6|unclassified	30.1350969924
+UniRef50_C7ZXH6: Methyltransferase type 12	72.6649036583
+UniRef50_C7ZXH6: Methyltransferase type 12|g__Staphylococcus.s__Staphylococcus_aureus	72.6649036583
+UniRef50_F8HGF9	72.6609108128
+UniRef50_F8HGF9|g__Streptococcus.s__Streptococcus_mutans	72.6609108128
+UniRef50_M1XJU0: Transposase for IS1272	72.6539891378
+UniRef50_M1XJU0: Transposase for IS1272|g__Escherichia.s__Escherichia_coli	44.1742140364
+UniRef50_M1XJU0: Transposase for IS1272|g__Staphylococcus.s__Staphylococcus_aureus	28.4797751015
+UniRef50_P0AE86: Periplasmic protein CpxP	72.6094932556
+UniRef50_P0AE86: Periplasmic protein CpxP|g__Escherichia.s__Escherichia_coli	72.6094932556
+UniRef50_D3DYP4: Glycosyl transferase GT2 family	72.5346530023
+UniRef50_D3DYP4: Glycosyl transferase GT2 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	72.5346530023
+UniRef50_D0K393: Lipoprotein	72.5159390159
+UniRef50_D0K393: Lipoprotein|g__Staphylococcus.s__Staphylococcus_aureus	72.5159390159
+UniRef50_Q8CUB6	72.4719434613
+UniRef50_Q8CUB6|g__Staphylococcus.s__Staphylococcus_aureus	43.3838359062
+UniRef50_Q8CUB6|unclassified	15.8787457416
+UniRef50_Q8CUB6|g__Staphylococcus.s__Staphylococcus_epidermidis	13.2093618135
+UniRef50_K0DDY7: 3-oxoacyl-[acyl-carrier-protein] synthase 2	72.4636029669
+UniRef50_K0DDY7: 3-oxoacyl-[acyl-carrier-protein] synthase 2|g__Streptococcus.s__Streptococcus_mutans	72.4636029669
+UniRef50_E9KNS2: Crp family transcriptional regulator	72.4454998405
+UniRef50_E9KNS2: Crp family transcriptional regulator|g__Staphylococcus.s__Staphylococcus_aureus	39.6094809830
+UniRef50_E9KNS2: Crp family transcriptional regulator|g__Staphylococcus.s__Staphylococcus_epidermidis	32.8360188576
+UniRef50_D3QC48: Glycerophosphoryl diester phosphodiesterase	72.3960044378
+UniRef50_D3QC48: Glycerophosphoryl diester phosphodiesterase|g__Staphylococcus.s__Staphylococcus_epidermidis	72.3960044378
+UniRef50_Q4L8X8: Ppx-GppA, Ppx/GppA phosphatase family protein	72.3814303063
+UniRef50_Q4L8X8: Ppx-GppA, Ppx/GppA phosphatase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	72.3814303063
+UniRef50_Q5HNA1: ABC transporter, permease protein	72.3695064085
+UniRef50_Q5HNA1: ABC transporter, permease protein|g__Staphylococcus.s__Staphylococcus_epidermidis	72.3695064085
+UniRef50_B9EBC6: Ribonuclease HII	72.3473783092
+UniRef50_B9EBC6: Ribonuclease HII|g__Staphylococcus.s__Staphylococcus_epidermidis	72.3473783092
+UniRef50_R4VNN3	72.3305013613
+UniRef50_R4VNN3|g__Streptococcus.s__Streptococcus_mutans	68.5159091743
+UniRef50_R4VNN3|g__Streptococcus.s__Streptococcus_agalactiae	3.8145921870
+UniRef50_I1ZP03	72.3221100826
+UniRef50_I1ZP03|g__Streptococcus.s__Streptococcus_mutans	72.3221100826
+UniRef50_E3F521: ABC transporter, inner membrane subunit	72.3144059120
+UniRef50_E3F521: ABC transporter, inner membrane subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	72.3144059120
+UniRef50_I0JEM4: Tn554-related transposase A	72.2916248246
+UniRef50_I0JEM4: Tn554-related transposase A|g__Staphylococcus.s__Staphylococcus_epidermidis	43.3776123671
+UniRef50_I0JEM4: Tn554-related transposase A|g__Staphylococcus.s__Staphylococcus_aureus	28.9140124575
+UniRef50_E6AKY5: 4Fe-4S binding domain protein	72.2876615463
+UniRef50_E6AKY5: 4Fe-4S binding domain protein|g__Escherichia.s__Escherichia_coli	72.2876615463
+UniRef50_Q931R7: Conserved virulence factor C	72.2843826899
+UniRef50_Q931R7: Conserved virulence factor C|g__Staphylococcus.s__Staphylococcus_aureus	72.2843826899
+UniRef50_R9YRY7	72.2688228906
+UniRef50_R9YRY7|g__Staphylococcus.s__Staphylococcus_aureus	72.2688228906
+UniRef50_Q5HLQ2	72.2555249521
+UniRef50_Q5HLQ2|g__Staphylococcus.s__Staphylococcus_epidermidis	71.7225353165
+UniRef50_Q5HLQ2|unclassified	0.5329896355
+UniRef50_A4WT53: PAS/PAC sensor hybrid histidine kinase	72.2214671353
+UniRef50_A4WT53: PAS/PAC sensor hybrid histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	72.2214671353
+UniRef50_A1YRL8: Cassette chromosome recombinase A	72.2091860145
+UniRef50_A1YRL8: Cassette chromosome recombinase A|g__Staphylococcus.s__Staphylococcus_epidermidis	38.9031877524
+UniRef50_A1YRL8: Cassette chromosome recombinase A|g__Staphylococcus.s__Staphylococcus_aureus	33.3059982621
+UniRef50_V8LZ20: Ammonia permease	72.1930246174
+UniRef50_V8LZ20: Ammonia permease|g__Streptococcus.s__Streptococcus_mutans	72.1930246174
+UniRef50_A7WY72	72.1877872359
+UniRef50_A7WY72|g__Staphylococcus.s__Staphylococcus_aureus	72.1877872359
+UniRef50_Q5HLC6: Transcriptional regulator, MerR family	72.1600333625
+UniRef50_Q5HLC6: Transcriptional regulator, MerR family|g__Staphylococcus.s__Staphylococcus_epidermidis	72.1600333625
+UniRef50_I0C2Q1	72.0969610070
+UniRef50_I0C2Q1|g__Staphylococcus.s__Staphylococcus_aureus	72.0969610070
+UniRef50_P45424	72.0950947835
+UniRef50_P45424|g__Escherichia.s__Escherichia_coli	72.0950947835
+UniRef50_A5IPV1	72.0569469202
+UniRef50_A5IPV1|g__Staphylococcus.s__Staphylococcus_aureus	72.0569469202
+UniRef50_B3PS08: Bacterioferritin	72.0549606072
+UniRef50_B3PS08: Bacterioferritin|g__Rhodobacter.s__Rhodobacter_sphaeroides	72.0549606072
+UniRef50_Q8CS13	71.9964870329
+UniRef50_Q8CS13|g__Staphylococcus.s__Staphylococcus_epidermidis	71.9964870329
+UniRef50_Q8ET44: 2-hydroxypenta-2,4-dienoate hydratase	71.9744169583
+UniRef50_Q8ET44: 2-hydroxypenta-2,4-dienoate hydratase|g__Staphylococcus.s__Staphylococcus_epidermidis	71.9744169583
+UniRef50_R4WZZ5	71.9547528088
+UniRef50_R4WZZ5|g__Rhodobacter.s__Rhodobacter_sphaeroides	71.9547528088
+UniRef50_B9DSF8: Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex	71.9333290702
+UniRef50_B9DSF8: Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex|g__Streptococcus.s__Streptococcus_mutans	69.0550441068
+UniRef50_B9DSF8: Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex|g__Streptococcus.s__Streptococcus_agalactiae	2.8782849634
+UniRef50_A1TJ24: Potassium-transporting ATPase A chain	71.9102551963
+UniRef50_A1TJ24: Potassium-transporting ATPase A chain|g__Escherichia.s__Escherichia_coli	32.6934394305
+UniRef50_A1TJ24: Potassium-transporting ATPase A chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.6919797675
+UniRef50_A1TJ24: Potassium-transporting ATPase A chain|g__Propionibacterium.s__Propionibacterium_acnes	9.7842451711
+UniRef50_A1TJ24: Potassium-transporting ATPase A chain|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2430596709
+UniRef50_A1TJ24: Potassium-transporting ATPase A chain|unclassified	0.4975311562
+UniRef50_Q4LAB5: Protein ArsC 1	71.9094194824
+UniRef50_Q4LAB5: Protein ArsC 1|g__Staphylococcus.s__Staphylococcus_epidermidis	47.4899594435
+UniRef50_Q4LAB5: Protein ArsC 1|g__Staphylococcus.s__Staphylococcus_aureus	23.9251100658
+UniRef50_Q4LAB5: Protein ArsC 1|unclassified	0.4943499731
+UniRef50_A5D3C3: Putative Holliday junction resolvase	71.8748473719
+UniRef50_A5D3C3: Putative Holliday junction resolvase|g__Streptococcus.s__Streptococcus_mutans	71.8748473719
+UniRef50_Q8DUE8	71.8584663894
+UniRef50_Q8DUE8|g__Streptococcus.s__Streptococcus_mutans	70.6449357120
+UniRef50_Q8DUE8|unclassified	1.2135306774
+UniRef50_I6TW73: Putative transcriptional regulator	71.8496640117
+UniRef50_I6TW73: Putative transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	71.8496640117
+UniRef50_Q49UM3	71.8242705692
+UniRef50_Q49UM3|g__Staphylococcus.s__Staphylococcus_epidermidis	71.8242705692
+UniRef50_F4BKY0	71.8163293821
+UniRef50_F4BKY0|g__Streptococcus.s__Streptococcus_mutans	71.8163293821
+UniRef50_Q98NZ9: Mll9669 protein	71.8112797118
+UniRef50_Q98NZ9: Mll9669 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	71.8112797118
+UniRef50_A0A034MYR1	71.8054754684
+UniRef50_A0A034MYR1|g__Staphylococcus.s__Staphylococcus_aureus	71.8054754684
+UniRef50_Q2YX94: Iron-regulated surface determinant protein C	71.7885433469
+UniRef50_Q2YX94: Iron-regulated surface determinant protein C|g__Staphylococcus.s__Staphylococcus_aureus	71.7885433469
+UniRef50_A8IG02: Phosphate starvation inducible protein	71.7839954939
+UniRef50_A8IG02: Phosphate starvation inducible protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	71.7839954939
+UniRef50_A0A059IQB9: Intracellular septation protein	71.7746516835
+UniRef50_A0A059IQB9: Intracellular septation protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	71.7746516835
+UniRef50_Q52675: Dimethyl sulfoxide/trimethylamine N-oxide reductase	71.7592746038
+UniRef50_Q52675: Dimethyl sulfoxide/trimethylamine N-oxide reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	71.7592746038
+UniRef50_P0ACS6: HTH-type transcriptional regulator ZntR	71.7573976699
+UniRef50_P0ACS6: HTH-type transcriptional regulator ZntR|g__Escherichia.s__Escherichia_coli	71.7573976699
+UniRef50_A3PHA8	71.7398311527
+UniRef50_A3PHA8|unclassified	38.4499346213
+UniRef50_A3PHA8|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.2898965314
+UniRef50_S4PI94: Putative SLIT-ROBO Rho GTPase-activating protein 1-like protein (Fragment)	71.7283620847
+UniRef50_S4PI94: Putative SLIT-ROBO Rho GTPase-activating protein 1-like protein (Fragment)|unclassified	71.7283620847
+UniRef50_P11701: Levansucrase	71.7070199109
+UniRef50_P11701: Levansucrase|g__Streptococcus.s__Streptococcus_mutans	71.7070199109
+UniRef50_G0LRB5: Exotoxin	71.6740082514
+UniRef50_G0LRB5: Exotoxin|g__Staphylococcus.s__Staphylococcus_aureus	71.6740082514
+UniRef50_J0GC54	71.6424650049
+UniRef50_J0GC54|g__Staphylococcus.s__Staphylococcus_epidermidis	69.1284213999
+UniRef50_J0GC54|unclassified	2.5140436051
+UniRef50_S6B705	71.6281002274
+UniRef50_S6B705|g__Streptococcus.s__Streptococcus_mutans	71.6281002274
+UniRef50_B9V2B9	71.6168960180
+UniRef50_B9V2B9|g__Staphylococcus.s__Staphylococcus_aureus	56.4754063512
+UniRef50_B9V2B9|g__Staphylococcus.s__Staphylococcus_epidermidis	15.1414896667
+UniRef50_Q8DW63	71.6154009228
+UniRef50_Q8DW63|g__Streptococcus.s__Streptococcus_mutans	70.3695038074
+UniRef50_Q8DW63|unclassified	1.2458971153
+UniRef50_B8DTT6: Phosphoribosylformylglycinamidine cyclo-ligase	71.4922276935
+UniRef50_B8DTT6: Phosphoribosylformylglycinamidine cyclo-ligase|g__Streptococcus.s__Streptococcus_mutans	68.0321944866
+UniRef50_B8DTT6: Phosphoribosylformylglycinamidine cyclo-ligase|g__Streptococcus.s__Streptococcus_agalactiae	3.4600332068
+UniRef50_B3W746: PTS system, IID component	71.4752477740
+UniRef50_B3W746: PTS system, IID component|g__Streptococcus.s__Streptococcus_mutans	71.4752477740
+UniRef50_UPI00035D3DCC: hypothetical protein	71.4383418080
+UniRef50_UPI00035D3DCC: hypothetical protein|unclassified	36.7122518766
+UniRef50_UPI00035D3DCC: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	34.7260899314
+UniRef50_Q7DC27	71.4285714286
+UniRef50_Q7DC27|g__Escherichia.s__Escherichia_coli	71.4285714286
+UniRef50_R7PVZ5	71.4285714286
+UniRef50_R7PVZ5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	71.4285714286
+UniRef50_Q5NNR3: 7-cyano-7-deazaguanine synthase	71.3764524849
+UniRef50_Q5NNR3: 7-cyano-7-deazaguanine synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	71.2512620355
+UniRef50_Q5NNR3: 7-cyano-7-deazaguanine synthase|unclassified	0.1251904495
+UniRef50_A1URA3: ATP-dependent zinc metalloprotease FtsH	71.3454924704
+UniRef50_A1URA3: ATP-dependent zinc metalloprotease FtsH|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.7712545748
+UniRef50_A1URA3: ATP-dependent zinc metalloprotease FtsH|g__Escherichia.s__Escherichia_coli	20.8065273118
+UniRef50_A1URA3: ATP-dependent zinc metalloprotease FtsH|g__Acinetobacter.s__Acinetobacter_baumannii	1.7486200291
+UniRef50_A1URA3: ATP-dependent zinc metalloprotease FtsH|unclassified	0.0190905548
+UniRef50_V9WHB8: Glycosidase	71.3282957420
+UniRef50_V9WHB8: Glycosidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	71.3282957420
+UniRef50_C5L3X3: Cysteine synthase, putative	71.2809873896
+UniRef50_C5L3X3: Cysteine synthase, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	71.2809873896
+UniRef50_Q8CUE6	71.2630693026
+UniRef50_Q8CUE6|unclassified	71.2630693026
+UniRef50_Q3IYL4	71.2422923536
+UniRef50_Q3IYL4|g__Rhodobacter.s__Rhodobacter_sphaeroides	60.2924077785
+UniRef50_Q3IYL4|unclassified	10.9498845751
+UniRef50_Q5LYH1: Dihydroxy-acid dehydratase	71.2344240896
+UniRef50_Q5LYH1: Dihydroxy-acid dehydratase|g__Streptococcus.s__Streptococcus_mutans	71.0110398092
+UniRef50_Q5LYH1: Dihydroxy-acid dehydratase|unclassified	0.2233842803
+UniRef50_Q49VQ7: 7-cyano-7-deazaguanine synthase	71.2186355132
+UniRef50_Q49VQ7: 7-cyano-7-deazaguanine synthase|g__Staphylococcus.s__Staphylococcus_aureus	70.7026897131
+UniRef50_Q49VQ7: 7-cyano-7-deazaguanine synthase|unclassified	0.5159458001
+UniRef50_Q5HRH5: Hydrolase, haloacid dehalogenase-like family	71.2154818576
+UniRef50_Q5HRH5: Hydrolase, haloacid dehalogenase-like family|g__Staphylococcus.s__Staphylococcus_epidermidis	71.2154818576
+UniRef50_M4RZJ4	71.1656911841
+UniRef50_M4RZJ4|g__Rhodobacter.s__Rhodobacter_sphaeroides	71.1656911841
+UniRef50_A3PPY9: Chromosomal replication initiator, DnaA C-terminal domain	71.1309523810
+UniRef50_A3PPY9: Chromosomal replication initiator, DnaA C-terminal domain|g__Rhodobacter.s__Rhodobacter_sphaeroides	71.1309523810
+UniRef50_C7M5H1	71.1200086679
+UniRef50_C7M5H1|g__Streptococcus.s__Streptococcus_mutans	71.1200086679
+UniRef50_B9KSY4	71.1056132239
+UniRef50_B9KSY4|unclassified	52.9378512091
+UniRef50_B9KSY4|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.1677620147
+UniRef50_J7M7S6: Myo-inositol-1(Or 4)-monophosphatase	71.0578987353
+UniRef50_J7M7S6: Myo-inositol-1(Or 4)-monophosphatase|g__Streptococcus.s__Streptococcus_mutans	71.0578987353
+UniRef50_Q8CS14	71.0230510300
+UniRef50_Q8CS14|g__Staphylococcus.s__Staphylococcus_epidermidis	71.0230510300
+UniRef50_A8LML0: Major facilitator superfamiy transporter	71.0146879082
+UniRef50_A8LML0: Major facilitator superfamiy transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	71.0146879082
+UniRef50_D3QIC4	71.0024415760
+UniRef50_D3QIC4|g__Staphylococcus.s__Staphylococcus_epidermidis	71.0024415760
+UniRef50_F0PHP0: Diacylglycerol kinase catalytic domain family protein	70.9964756655
+UniRef50_F0PHP0: Diacylglycerol kinase catalytic domain family protein|g__Streptococcus.s__Streptococcus_mutans	62.3778105419
+UniRef50_F0PHP0: Diacylglycerol kinase catalytic domain family protein|g__Streptococcus.s__Streptococcus_agalactiae	8.6186651236
+UniRef50_A4WXR5: KDPG and KHG aldolase	70.9855028729
+UniRef50_A4WXR5: KDPG and KHG aldolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	70.9855028729
+UniRef50_I2FHZ3: Glycosyl transferases group 1 family protein	70.9664163707
+UniRef50_I2FHZ3: Glycosyl transferases group 1 family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	70.9664163707
+UniRef50_Q9ZI33: Ribulose bisphosphate carboxylase small chain	70.9592667514
+UniRef50_Q9ZI33: Ribulose bisphosphate carboxylase small chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.1167092262
+UniRef50_Q9ZI33: Ribulose bisphosphate carboxylase small chain|unclassified	5.8425575252
+UniRef50_Q8CU48	70.9566739694
+UniRef50_Q8CU48|g__Staphylococcus.s__Staphylococcus_epidermidis	70.9566739694
+UniRef50_Q8CSM3	70.9474271019
+UniRef50_Q8CSM3|g__Staphylococcus.s__Staphylococcus_epidermidis	70.9474271019
+UniRef50_E3F1F2: RelA/SpoT family protein	70.9471724225
+UniRef50_E3F1F2: RelA/SpoT family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	70.9471724225
+UniRef50_Q5HKT3: Transcriptional antiterminator, BglG family	70.9347285783
+UniRef50_Q5HKT3: Transcriptional antiterminator, BglG family|g__Staphylococcus.s__Staphylococcus_epidermidis	70.9347285783
+UniRef50_P16679: Alpha-D-ribose 1-methylphosphonate 5-triphosphate synthase subunit PhnL	70.9319311141
+UniRef50_P16679: Alpha-D-ribose 1-methylphosphonate 5-triphosphate synthase subunit PhnL|g__Escherichia.s__Escherichia_coli	70.9319311141
+UniRef50_I1ZMS2: Oxidoreductase, short chain dehydrogenase	70.9294802734
+UniRef50_I1ZMS2: Oxidoreductase, short chain dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	70.9294802734
+UniRef50_Q03J15: 5'-nucleotidase/2',3'-cyclic phosphodiesterase or related esterase	70.8887191715
+UniRef50_Q03J15: 5'-nucleotidase/2',3'-cyclic phosphodiesterase or related esterase|g__Streptococcus.s__Streptococcus_mutans	70.8887191715
+UniRef50_C7ZY45: Exported protein	70.8051217543
+UniRef50_C7ZY45: Exported protein|g__Staphylococcus.s__Staphylococcus_aureus	70.8051217543
+UniRef50_Q5HRI1: GTP cyclohydrolase FolE2	70.7617742289
+UniRef50_Q5HRI1: GTP cyclohydrolase FolE2|g__Staphylococcus.s__Staphylococcus_epidermidis	69.5880653087
+UniRef50_Q5HRI1: GTP cyclohydrolase FolE2|unclassified	1.1737089202
+UniRef50_C5N5E9	70.7238482018
+UniRef50_C5N5E9|g__Staphylococcus.s__Staphylococcus_epidermidis	70.7238482018
+UniRef50_A1B4D6: Glutathione S-transferase, N-terminal domain	70.6982239032
+UniRef50_A1B4D6: Glutathione S-transferase, N-terminal domain|g__Rhodobacter.s__Rhodobacter_sphaeroides	70.6982239032
+UniRef50_P35595: PTS system glucose-specific EIICBA component	70.6908505924
+UniRef50_P35595: PTS system glucose-specific EIICBA component|g__Streptococcus.s__Streptococcus_mutans	64.3586921921
+UniRef50_P35595: PTS system glucose-specific EIICBA component|g__Streptococcus.s__Streptococcus_agalactiae	5.9754519296
+UniRef50_P35595: PTS system glucose-specific EIICBA component|unclassified	0.3567064707
+UniRef50_Q5HLV4: Staphylococcal accessory regulator Y	70.6639591892
+UniRef50_Q5HLV4: Staphylococcal accessory regulator Y|g__Staphylococcus.s__Staphylococcus_epidermidis	70.6639591892
+UniRef50_P24240: 6-phospho-beta-glucosidase AscB	70.6490944588
+UniRef50_P24240: 6-phospho-beta-glucosidase AscB|g__Escherichia.s__Escherichia_coli	31.2471538665
+UniRef50_P24240: 6-phospho-beta-glucosidase AscB|g__Streptococcus.s__Streptococcus_mutans	26.0075592122
+UniRef50_P24240: 6-phospho-beta-glucosidase AscB|g__Streptococcus.s__Streptococcus_agalactiae	6.7045076505
+UniRef50_P24240: 6-phospho-beta-glucosidase AscB|g__Clostridium.s__Clostridium_beijerinckii	6.6898737296
+UniRef50_A1AXZ2: S-formylglutathione hydrolase	70.5994910283
+UniRef50_A1AXZ2: S-formylglutathione hydrolase|g__Streptococcus.s__Streptococcus_mutans	62.0278153641
+UniRef50_A1AXZ2: S-formylglutathione hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.5716756643
+UniRef50_Q5HRK1: Ornithine cyclodeaminase/mu-crystallin family protein	70.5883872158
+UniRef50_Q5HRK1: Ornithine cyclodeaminase/mu-crystallin family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	69.4818201886
+UniRef50_Q5HRK1: Ornithine cyclodeaminase/mu-crystallin family protein|unclassified	1.1065670272
+UniRef50_Q0C0L1: ATP-dependent protease ATPase subunit HslU	70.5710017619
+UniRef50_Q0C0L1: ATP-dependent protease ATPase subunit HslU|g__Rhodobacter.s__Rhodobacter_sphaeroides	70.5710017619
+UniRef50_D9REU8: Poly (Glycerol-phosphate) alpha-glucosyltransferase	70.5309583541
+UniRef50_D9REU8: Poly (Glycerol-phosphate) alpha-glucosyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	70.5309583541
+UniRef50_W8S5T3: Transcription termination protein NusB	70.4994334132
+UniRef50_W8S5T3: Transcription termination protein NusB|g__Rhodobacter.s__Rhodobacter_sphaeroides	70.4994334132
+UniRef50_C9LYN2: Diaminopimelate decarboxylase	70.4983723143
+UniRef50_C9LYN2: Diaminopimelate decarboxylase|g__Streptococcus.s__Streptococcus_mutans	70.4983723143
+UniRef50_Q1JFV4	70.4983495014
+UniRef50_Q1JFV4|g__Streptococcus.s__Streptococcus_mutans	65.9361828606
+UniRef50_Q1JFV4|g__Streptococcus.s__Streptococcus_agalactiae	4.5621666408
+UniRef50_Q6G723: Staphylococcal secretory antigen ssaA2	70.4679510755
+UniRef50_Q6G723: Staphylococcal secretory antigen ssaA2|g__Staphylococcus.s__Staphylococcus_aureus	70.4679510755
+UniRef50_A7X2E3: Holliday junction resolvase RecU	70.4670436302
+UniRef50_A7X2E3: Holliday junction resolvase RecU|g__Staphylococcus.s__Staphylococcus_aureus	70.4670436302
+UniRef50_I0C1S3: Phosphatidylglycerophosphatase B-like protein	70.4545471138
+UniRef50_I0C1S3: Phosphatidylglycerophosphatase B-like protein|g__Staphylococcus.s__Staphylococcus_aureus	70.4545471138
+UniRef50_Q8DWE6: Constitutive fructose permease	70.4303153497
+UniRef50_Q8DWE6: Constitutive fructose permease|g__Streptococcus.s__Streptococcus_mutans	70.4303153497
+UniRef50_P05100: DNA-3-methyladenine glycosylase 1	70.4252906657
+UniRef50_P05100: DNA-3-methyladenine glycosylase 1|g__Escherichia.s__Escherichia_coli	69.1396558978
+UniRef50_P05100: DNA-3-methyladenine glycosylase 1|unclassified	1.2856347678
+UniRef50_F2I8E8: Branched-chain amino acid ABC transporter, permease protein	70.4142528917
+UniRef50_F2I8E8: Branched-chain amino acid ABC transporter, permease protein|g__Streptococcus.s__Streptococcus_mutans	62.6127631976
+UniRef50_F2I8E8: Branched-chain amino acid ABC transporter, permease protein|g__Streptococcus.s__Streptococcus_agalactiae	7.8014896942
+UniRef50_W0IR18: C4-dicarboxylate ABC transporter	70.4067429609
+UniRef50_W0IR18: C4-dicarboxylate ABC transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	70.4067429609
+UniRef50_Q5HR39	70.3979806349
+UniRef50_Q5HR39|g__Staphylococcus.s__Staphylococcus_epidermidis	70.3979806349
+UniRef50_A4WVF0: Glucose sorbosone dehydrogenase	70.3902658413
+UniRef50_A4WVF0: Glucose sorbosone dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	70.3902658413
+UniRef50_A5UN84	70.3786689483
+UniRef50_A5UN84|g__Methanobrevibacter.s__Methanobrevibacter_smithii	70.3786689483
+UniRef50_A5IQH4: Phage integrase family protein	70.3486394809
+UniRef50_A5IQH4: Phage integrase family protein|g__Staphylococcus.s__Staphylococcus_aureus	70.3486394809
+UniRef50_A8AW17: Cell division protein ftsA	70.3423568448
+UniRef50_A8AW17: Cell division protein ftsA|g__Streptococcus.s__Streptococcus_mutans	66.2776469837
+UniRef50_A8AW17: Cell division protein ftsA|g__Streptococcus.s__Streptococcus_agalactiae	4.0647098610
+UniRef50_UPI00046FAFA5: hypothetical protein	70.3361203539
+UniRef50_UPI00046FAFA5: hypothetical protein|unclassified	70.3361203539
+UniRef50_Q1GCC9: Flagellar biosynthetic protein flhB	70.3181190139
+UniRef50_Q1GCC9: Flagellar biosynthetic protein flhB|g__Rhodobacter.s__Rhodobacter_sphaeroides	70.3181190139
+UniRef50_A1B573: Allergen V5/Tpx-1 family protein	70.3027017522
+UniRef50_A1B573: Allergen V5/Tpx-1 family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	70.3027017522
+UniRef50_D9RHA1	70.2640609843
+UniRef50_D9RHA1|g__Staphylococcus.s__Staphylococcus_aureus	70.2640609843
+UniRef50_A5IVA2: Bile acid:sodium symporter	70.2506025599
+UniRef50_A5IVA2: Bile acid:sodium symporter|g__Staphylococcus.s__Staphylococcus_aureus	70.2506025599
+UniRef50_P46856	70.2491819784
+UniRef50_P46856|g__Escherichia.s__Escherichia_coli	70.2491819784
+UniRef50_X5EIL9: Tandem five-TM family protein	70.2454573401
+UniRef50_X5EIL9: Tandem five-TM family protein|g__Staphylococcus.s__Staphylococcus_aureus	70.2454573401
+UniRef50_P0AEF6: Transcriptional regulatory protein DpiA	70.2419011017
+UniRef50_P0AEF6: Transcriptional regulatory protein DpiA|g__Escherichia.s__Escherichia_coli	70.2419011017
+UniRef50_Q9CIS4: N-acetyldiaminopimelate deacetylase	70.2292378304
+UniRef50_Q9CIS4: N-acetyldiaminopimelate deacetylase|g__Streptococcus.s__Streptococcus_mutans	70.0130960530
+UniRef50_Q9CIS4: N-acetyldiaminopimelate deacetylase|unclassified	0.2161417773
+UniRef50_D2N5X4: Transcription factor	70.1958071980
+UniRef50_D2N5X4: Transcription factor|g__Staphylococcus.s__Staphylococcus_aureus	70.1958071980
+UniRef50_E9C0U9: GTP-binding protein TypA	70.1522473694
+UniRef50_E9C0U9: GTP-binding protein TypA|g__Rhodobacter.s__Rhodobacter_sphaeroides	70.1522473694
+UniRef50_R7BPT0: 2-nitropropane dioxygenase NPD	70.1322461829
+UniRef50_R7BPT0: 2-nitropropane dioxygenase NPD|g__Streptococcus.s__Streptococcus_mutans	66.5968175973
+UniRef50_R7BPT0: 2-nitropropane dioxygenase NPD|g__Streptococcus.s__Streptococcus_agalactiae	3.5354285856
+UniRef50_O32799: Formate acetyltransferase	70.1281801336
+UniRef50_O32799: Formate acetyltransferase|g__Streptococcus.s__Streptococcus_mutans	66.5344891556
+UniRef50_O32799: Formate acetyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	2.9041358328
+UniRef50_O32799: Formate acetyltransferase|unclassified	0.6895551452
+UniRef50_V8AQW0	70.1226239245
+UniRef50_V8AQW0|g__Streptococcus.s__Streptococcus_mutans	70.1226239245
+UniRef50_B9KU62: Sulfide-quinone reductase	70.1066312012
+UniRef50_B9KU62: Sulfide-quinone reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	70.1066312012
+UniRef50_Q8DU03	70.0953607216
+UniRef50_Q8DU03|g__Streptococcus.s__Streptococcus_mutans	70.0953607216
+UniRef50_M4MLE9	70.0903126992
+UniRef50_M4MLE9|unclassified	70.0903126992
+UniRef50_Q5HP10	70.0649088226
+UniRef50_Q5HP10|g__Staphylococcus.s__Staphylococcus_epidermidis	70.0649088226
+UniRef50_Q182G9: Uracil-DNA glycosylase	70.0576524493
+UniRef50_Q182G9: Uracil-DNA glycosylase|g__Staphylococcus.s__Staphylococcus_aureus	70.0576524493
+UniRef50_Q8CMX3: Phosphoadenosine phosphosulfate reductase	70.0268467524
+UniRef50_Q8CMX3: Phosphoadenosine phosphosulfate reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	69.7187176941
+UniRef50_Q8CMX3: Phosphoadenosine phosphosulfate reductase|unclassified	0.3081290583
+UniRef50_R4XS51: ABC transporter, periplasmic spermidine putrescine-binding protein PotD (TC 3.A.1.11.1)	70.0255452552
+UniRef50_R4XS51: ABC transporter, periplasmic spermidine putrescine-binding protein PotD (TC 3.A.1.11.1)|g__Rhodobacter.s__Rhodobacter_sphaeroides	70.0255452552
+UniRef50_A4WWA3: Glutathione-dependent formaldehyde-activating, GFA	70.0083765018
+UniRef50_A4WWA3: Glutathione-dependent formaldehyde-activating, GFA|g__Rhodobacter.s__Rhodobacter_sphaeroides	70.0083765018
+UniRef50_A3PL72	69.9865388152
+UniRef50_A3PL72|g__Rhodobacter.s__Rhodobacter_sphaeroides	69.5302999205
+UniRef50_A3PL72|unclassified	0.4562388946
+UniRef50_Q9A1B9	69.9659149916
+UniRef50_Q9A1B9|g__Streptococcus.s__Streptococcus_mutans	61.7650311093
+UniRef50_Q9A1B9|g__Streptococcus.s__Streptococcus_agalactiae	8.2008838823
+UniRef50_D0K767	69.9636171559
+UniRef50_D0K767|g__Staphylococcus.s__Staphylococcus_aureus	69.9636171559
+UniRef50_P02992: Elongation factor Tu, mitochondrial	69.9605995322
+UniRef50_P02992: Elongation factor Tu, mitochondrial|g__Streptococcus.s__Streptococcus_mutans	47.1099429967
+UniRef50_P02992: Elongation factor Tu, mitochondrial|g__Escherichia.s__Escherichia_coli	20.1856702633
+UniRef50_P02992: Elongation factor Tu, mitochondrial|g__Acinetobacter.s__Acinetobacter_baumannii	1.7072506052
+UniRef50_P02992: Elongation factor Tu, mitochondrial|unclassified	0.9577356670
+UniRef50_T1ZGA3: Phosphomethylpyrimidine kinase	69.9601072047
+UniRef50_T1ZGA3: Phosphomethylpyrimidine kinase|g__Streptococcus.s__Streptococcus_mutans	68.6408459910
+UniRef50_T1ZGA3: Phosphomethylpyrimidine kinase|g__Streptococcus.s__Streptococcus_agalactiae	1.3192612137
+UniRef50_D5ALC4: Translation initiation factor IF-2	69.8955063085
+UniRef50_D5ALC4: Translation initiation factor IF-2|g__Rhodobacter.s__Rhodobacter_sphaeroides	69.8955063085
+UniRef50_Q5HKF2: Aminotransferase, class II	69.8785701045
+UniRef50_Q5HKF2: Aminotransferase, class II|g__Staphylococcus.s__Staphylococcus_epidermidis	69.8785701045
+UniRef50_A3CRB9: Energy-coupling factor transporter ATP-binding protein EcfA1	69.8385566838
+UniRef50_A3CRB9: Energy-coupling factor transporter ATP-binding protein EcfA1|g__Streptococcus.s__Streptococcus_mutans	63.5266049291
+UniRef50_A3CRB9: Energy-coupling factor transporter ATP-binding protein EcfA1|g__Streptococcus.s__Streptococcus_agalactiae	5.9923504595
+UniRef50_A3CRB9: Energy-coupling factor transporter ATP-binding protein EcfA1|unclassified	0.3196012953
+UniRef50_Q8CSQ8: Two-component sensor histidine kinase	69.7983301512
+UniRef50_Q8CSQ8: Two-component sensor histidine kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	69.7983301512
+UniRef50_C9RRF6: von Willebrand factor type A	69.7886097751
+UniRef50_C9RRF6: von Willebrand factor type A|g__Rhodobacter.s__Rhodobacter_sphaeroides	68.9284580508
+UniRef50_C9RRF6: von Willebrand factor type A|unclassified	0.8601517243
+UniRef50_P40118: Protein CbxX, chromosomal	69.7696277454
+UniRef50_P40118: Protein CbxX, chromosomal|g__Rhodobacter.s__Rhodobacter_sphaeroides	69.7696277454
+UniRef50_Q8CRZ8	69.7606801682
+UniRef50_Q8CRZ8|g__Staphylococcus.s__Staphylococcus_epidermidis	69.7606801682
+UniRef50_Q88U22: Phosphoribosylaminoimidazole-succinocarboxamide synthase	69.7565570200
+UniRef50_Q88U22: Phosphoribosylaminoimidazole-succinocarboxamide synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	69.7565570200
+UniRef50_Q6GAV6: Coenzyme A disulfide reductase	69.7528095730
+UniRef50_Q6GAV6: Coenzyme A disulfide reductase|g__Staphylococcus.s__Staphylococcus_aureus	69.7528095730
+UniRef50_W0ARZ1	69.7507899083
+UniRef50_W0ARZ1|g__Escherichia.s__Escherichia_coli	66.2918871252
+UniRef50_W0ARZ1|unclassified	3.4589027830
+UniRef50_Q6D2R7: NADH-quinone oxidoreductase subunit A	69.7420894763
+UniRef50_Q6D2R7: NADH-quinone oxidoreductase subunit A|g__Pseudomonas.s__Pseudomonas_aeruginosa	68.6543705499
+UniRef50_Q6D2R7: NADH-quinone oxidoreductase subunit A|unclassified	1.0877189263
+UniRef50_B4U0I9: Putative competence-damage inducible protein	69.7298816960
+UniRef50_B4U0I9: Putative competence-damage inducible protein|g__Streptococcus.s__Streptococcus_mutans	65.5615695984
+UniRef50_B4U0I9: Putative competence-damage inducible protein|g__Streptococcus.s__Streptococcus_agalactiae	4.1683120977
+UniRef50_C5N5T0: Bacteriocin biosynthesis cyclodehydratase, SagC family	69.7102031763
+UniRef50_C5N5T0: Bacteriocin biosynthesis cyclodehydratase, SagC family|g__Staphylococcus.s__Staphylococcus_aureus	69.7102031763
+UniRef50_B9KPX4	69.6747304423
+UniRef50_B9KPX4|g__Rhodobacter.s__Rhodobacter_sphaeroides	69.6747304423
+UniRef50_X5DRL9: Nitroreductase family protein	69.6676763477
+UniRef50_X5DRL9: Nitroreductase family protein|g__Staphylococcus.s__Staphylococcus_aureus	69.6676763477
+UniRef50_UPI00036EA5DF: hypothetical protein	69.6539221634
+UniRef50_UPI00036EA5DF: hypothetical protein|unclassified	69.6539221634
+UniRef50_P0AC06: Flagellar biosynthetic protein FliP	69.6389225319
+UniRef50_P0AC06: Flagellar biosynthetic protein FliP|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.8573150203
+UniRef50_P0AC06: Flagellar biosynthetic protein FliP|g__Escherichia.s__Escherichia_coli	31.7816075116
+UniRef50_I0JK96: Hit-like protein involved in cell-cycle regulation	69.6010209265
+UniRef50_I0JK96: Hit-like protein involved in cell-cycle regulation|g__Staphylococcus.s__Staphylococcus_epidermidis	69.6010209265
+UniRef50_B9KRV7	69.5775398891
+UniRef50_B9KRV7|unclassified	38.3017139289
+UniRef50_B9KRV7|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.2758259602
+UniRef50_A5UKH6	69.5760237301
+UniRef50_A5UKH6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	69.5760237301
+UniRef50_C3BKL0: ABC transporter	69.5737724817
+UniRef50_C3BKL0: ABC transporter|g__Streptococcus.s__Streptococcus_mutans	69.5737724817
+UniRef50_Q9LC43: TagG homolog	69.5474599970
+UniRef50_Q9LC43: TagG homolog|g__Staphylococcus.s__Staphylococcus_aureus	69.5474599970
+UniRef50_Q8DSC8: Ribonuclease HIII	69.5381780823
+UniRef50_Q8DSC8: Ribonuclease HIII|g__Streptococcus.s__Streptococcus_mutans	64.2491453196
+UniRef50_Q8DSC8: Ribonuclease HIII|g__Streptococcus.s__Streptococcus_agalactiae	5.2890327626
+UniRef50_Q4L709: Porphobilinogen deaminase	69.5297283050
+UniRef50_Q4L709: Porphobilinogen deaminase|g__Staphylococcus.s__Staphylococcus_aureus	69.5297283050
+UniRef50_I9KTK5: Oligoendopeptidase F	69.5214168149
+UniRef50_I9KTK5: Oligoendopeptidase F|g__Staphylococcus.s__Staphylococcus_aureus	69.5214168149
+UniRef50_Q2FH51: Phosphate import ATP-binding protein PstB	69.4970254242
+UniRef50_Q2FH51: Phosphate import ATP-binding protein PstB|g__Staphylococcus.s__Staphylococcus_aureus	68.5227823781
+UniRef50_Q2FH51: Phosphate import ATP-binding protein PstB|unclassified	0.9742430461
+UniRef50_F8DI84: ABC transporter, ATP-binding protein	69.4913324636
+UniRef50_F8DI84: ABC transporter, ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	67.3500048405
+UniRef50_F8DI84: ABC transporter, ATP-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	2.1413276231
+UniRef50_Q89XS8: Branched-chain-amino-acid transaminase	69.4606358523
+UniRef50_Q89XS8: Branched-chain-amino-acid transaminase|g__Rhodobacter.s__Rhodobacter_sphaeroides	69.4606358523
+UniRef50_Q88ZS6: Glucosamine-6-phosphate deaminase	69.4568314700
+UniRef50_Q88ZS6: Glucosamine-6-phosphate deaminase|g__Streptococcus.s__Streptococcus_mutans	65.1444133987
+UniRef50_Q88ZS6: Glucosamine-6-phosphate deaminase|g__Streptococcus.s__Streptococcus_agalactiae	4.3124180713
+UniRef50_D0K567	69.4310199056
+UniRef50_D0K567|g__Staphylococcus.s__Staphylococcus_aureus	69.3299457803
+UniRef50_D0K567|unclassified	0.1010741253
+UniRef50_Q8DTP8	69.4021785926
+UniRef50_Q8DTP8|g__Streptococcus.s__Streptococcus_mutans	69.4021785926
+UniRef50_Q5HL30: Transcriptional regulator, LysR family	69.3958334531
+UniRef50_Q5HL30: Transcriptional regulator, LysR family|g__Staphylococcus.s__Staphylococcus_epidermidis	69.3958334531
+UniRef50_N6AES7: Hyperosmolarity resistance protein Ebh	69.3438790875
+UniRef50_N6AES7: Hyperosmolarity resistance protein Ebh|g__Staphylococcus.s__Staphylococcus_epidermidis	69.3438790875
+UniRef50_B4T381: Protein NrdI	69.3407081446
+UniRef50_B4T381: Protein NrdI|g__Escherichia.s__Escherichia_coli	69.0514324263
+UniRef50_B4T381: Protein NrdI|unclassified	0.2892757184
+UniRef50_Q8CNS3: Integrase	69.3324575295
+UniRef50_Q8CNS3: Integrase|g__Staphylococcus.s__Staphylococcus_epidermidis	69.3324575295
+UniRef50_A3PPL1: Aminotransferase	69.2903179417
+UniRef50_A3PPL1: Aminotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	69.2903179417
+UniRef50_Q5M1U2: D-alanyl-D-alanine-carboxypeptidase	69.2823941620
+UniRef50_Q5M1U2: D-alanyl-D-alanine-carboxypeptidase|g__Streptococcus.s__Streptococcus_mutans	64.6883251295
+UniRef50_Q5M1U2: D-alanyl-D-alanine-carboxypeptidase|g__Streptococcus.s__Streptococcus_agalactiae	4.5940690326
+UniRef50_U5UQU4: TetR family transcriptional regulator	69.2737885941
+UniRef50_U5UQU4: TetR family transcriptional regulator|g__Staphylococcus.s__Staphylococcus_aureus	69.2737885941
+UniRef50_R7PVT0	69.2733786363
+UniRef50_R7PVT0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	69.2733786363
+UniRef50_B1ZB21: ABC transporter related	69.2649506779
+UniRef50_B1ZB21: ABC transporter related|g__Rhodobacter.s__Rhodobacter_sphaeroides	69.2649506779
+UniRef50_Q8CPL9: Lipoprotein VsaC	69.2537957021
+UniRef50_Q8CPL9: Lipoprotein VsaC|g__Staphylococcus.s__Staphylococcus_epidermidis	69.2537957021
+UniRef50_P0A9P7: ATP-dependent RNA helicase DeaD	69.2483778981
+UniRef50_P0A9P7: ATP-dependent RNA helicase DeaD|g__Escherichia.s__Escherichia_coli	68.9890191602
+UniRef50_P0A9P7: ATP-dependent RNA helicase DeaD|unclassified	0.2593587379
+UniRef50_A6QFB0	69.2159979246
+UniRef50_A6QFB0|g__Staphylococcus.s__Staphylococcus_aureus	69.2159979246
+UniRef50_Q89DJ1: Ribose-phosphate pyrophosphokinase	69.2082189743
+UniRef50_Q89DJ1: Ribose-phosphate pyrophosphokinase|g__Streptococcus.s__Streptococcus_mutans	67.9049281500
+UniRef50_Q89DJ1: Ribose-phosphate pyrophosphokinase|unclassified	1.3032908244
+UniRef50_Q3JRF0: Peptide methionine sulfoxide reductase MsrB	69.1881609880
+UniRef50_Q3JRF0: Peptide methionine sulfoxide reductase MsrB|g__Rhodobacter.s__Rhodobacter_sphaeroides	69.1881609880
+UniRef50_L0SNC2: Transketolase	69.1815678474
+UniRef50_L0SNC2: Transketolase|g__Streptococcus.s__Streptococcus_mutans	69.1815678474
+UniRef50_F5WYS7: ICESt1 ORFJ phage replication initiation factor	69.1706742075
+UniRef50_F5WYS7: ICESt1 ORFJ phage replication initiation factor|g__Streptococcus.s__Streptococcus_mutans	69.1706742075
+UniRef50_Q49115: Protein MeaA	69.1550267752
+UniRef50_Q49115: Protein MeaA|g__Rhodobacter.s__Rhodobacter_sphaeroides	69.1550267752
+UniRef50_D5WZX2: Poly-beta-hydroxybutyrate polymerase domain protein	69.1546755280
+UniRef50_D5WZX2: Poly-beta-hydroxybutyrate polymerase domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	69.1546755280
+UniRef50_Q8DSD9	69.0813193789
+UniRef50_Q8DSD9|g__Streptococcus.s__Streptococcus_mutans	68.7008318633
+UniRef50_Q8DSD9|unclassified	0.3804875157
+UniRef50_A4TKN5: UPF0299 membrane protein YPDSF_1460	69.0159807288
+UniRef50_A4TKN5: UPF0299 membrane protein YPDSF_1460|g__Escherichia.s__Escherichia_coli	69.0159807288
+UniRef50_H3VJS7	68.9903954829
+UniRef50_H3VJS7|unclassified	68.9903954829
+UniRef50_U3STF6	68.9888838031
+UniRef50_U3STF6|g__Streptococcus.s__Streptococcus_mutans	68.9888838031
+UniRef50_Q5HPK4	68.9840005089
+UniRef50_Q5HPK4|g__Staphylococcus.s__Staphylococcus_epidermidis	68.9840005089
+UniRef50_E8SFE6	68.9291373236
+UniRef50_E8SFE6|g__Staphylococcus.s__Staphylococcus_aureus	55.3054401182
+UniRef50_E8SFE6|g__Staphylococcus.s__Staphylococcus_epidermidis	13.6236972054
+UniRef50_Q3J1F1: Phage terminase-like protein large subunit	68.8970645427
+UniRef50_Q3J1F1: Phage terminase-like protein large subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	60.9396501678
+UniRef50_Q3J1F1: Phage terminase-like protein large subunit|unclassified	7.9574143749
+UniRef50_B9KWJ6: Transcriptional regulator, GntR family	68.8841874868
+UniRef50_B9KWJ6: Transcriptional regulator, GntR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	68.8841874868
+UniRef50_K0KQ95: Transfer complex protein TraG	68.8727158272
+UniRef50_K0KQ95: Transfer complex protein TraG|g__Staphylococcus.s__Staphylococcus_aureus	68.8727158272
+UniRef50_Q8CQ58: ATP-utilizing enzyme of the PP-loop superfamily	68.8587156467
+UniRef50_Q8CQ58: ATP-utilizing enzyme of the PP-loop superfamily|g__Staphylococcus.s__Staphylococcus_epidermidis	68.8587156467
+UniRef50_A7IGG7: ABC transporter related	68.8583234074
+UniRef50_A7IGG7: ABC transporter related|g__Rhodobacter.s__Rhodobacter_sphaeroides	68.8583234074
+UniRef50_A9FT06: Succinate dehydrogenase	68.8458618472
+UniRef50_A9FT06: Succinate dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	68.8458618472
+UniRef50_Q2YW86: D-specific D-2-hydroxyacid dehydrogenase	68.8310962758
+UniRef50_Q2YW86: D-specific D-2-hydroxyacid dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	68.8310962758
+UniRef50_H2A790: Amino acid ABC transporter, amino acid-binding/permease protein	68.8277027911
+UniRef50_H2A790: Amino acid ABC transporter, amino acid-binding/permease protein|g__Streptococcus.s__Streptococcus_mutans	68.8277027911
+UniRef50_S2XRA0: Heme A synthase	68.8191000436
+UniRef50_S2XRA0: Heme A synthase|g__Staphylococcus.s__Staphylococcus_aureus	68.8191000436
+UniRef50_L7WZS3: Lipase	68.7893215399
+UniRef50_L7WZS3: Lipase|g__Staphylococcus.s__Staphylococcus_epidermidis	68.7893215399
+UniRef50_X2GZX1: rRNA methyltransferase	68.7198864874
+UniRef50_X2GZX1: rRNA methyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	68.7198864874
+UniRef50_P0DC56: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase	68.7183618042
+UniRef50_P0DC56: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase|g__Streptococcus.s__Streptococcus_mutans	62.7539201949
+UniRef50_P0DC56: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase|g__Streptococcus.s__Streptococcus_agalactiae	5.9644416092
+UniRef50_Q3IX14	68.6604060340
+UniRef50_Q3IX14|g__Rhodobacter.s__Rhodobacter_sphaeroides	68.6604060340
+UniRef50_P37518: Ribosome-binding ATPase YchF	68.6529465798
+UniRef50_P37518: Ribosome-binding ATPase YchF|g__Streptococcus.s__Streptococcus_mutans	65.1198267835
+UniRef50_P37518: Ribosome-binding ATPase YchF|g__Streptococcus.s__Streptococcus_agalactiae	3.5331197963
+UniRef50_D2N5R5: Kinase-associated protein B	68.6343137180
+UniRef50_D2N5R5: Kinase-associated protein B|g__Staphylococcus.s__Staphylococcus_aureus	51.3956894825
+UniRef50_D2N5R5: Kinase-associated protein B|g__Staphylococcus.s__Staphylococcus_epidermidis	17.2386242355
+UniRef50_Q8FHG5: Glutamate decarboxylase beta	68.6294792805
+UniRef50_Q8FHG5: Glutamate decarboxylase beta|g__Escherichia.s__Escherichia_coli	68.6294792805
+UniRef50_A8GP69: Phospho-N-acetylmuramoyl-pentapeptide-transferase	68.6249061331
+UniRef50_A8GP69: Phospho-N-acetylmuramoyl-pentapeptide-transferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	68.6249061331
+UniRef50_E7B4R3: Trap-type C4-dicarboxylate transport system,large permease component	68.6195830898
+UniRef50_E7B4R3: Trap-type C4-dicarboxylate transport system,large permease component|g__Rhodobacter.s__Rhodobacter_sphaeroides	68.6195830898
+UniRef50_B9JTR3: ATP synthase gamma chain	68.5917154399
+UniRef50_B9JTR3: ATP synthase gamma chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	68.5917154399
+UniRef50_Q5JII2: Ferritin-like protein	68.5866680457
+UniRef50_Q5JII2: Ferritin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	68.5866680457
+UniRef50_B9KT97: ABC transporter related	68.5725937318
+UniRef50_B9KT97: ABC transporter related|g__Rhodobacter.s__Rhodobacter_sphaeroides	68.5725937318
+UniRef50_A6U596: Ribonuclease P protein component	68.5526176544
+UniRef50_A6U596: Ribonuclease P protein component|g__Staphylococcus.s__Staphylococcus_aureus	68.5526176544
+UniRef50_A2RGD6	68.5133415999
+UniRef50_A2RGD6|g__Streptococcus.s__Streptococcus_mutans	68.5133415999
+UniRef50_A7WZL5: NADPH-dependent 7-cyano-7-deazaguanine reductase	68.4724540509
+UniRef50_A7WZL5: NADPH-dependent 7-cyano-7-deazaguanine reductase|g__Staphylococcus.s__Staphylococcus_aureus	65.7309135922
+UniRef50_A7WZL5: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	2.7415404587
+UniRef50_O07329: Catabolite control protein A	68.4638643130
+UniRef50_O07329: Catabolite control protein A|g__Streptococcus.s__Streptococcus_mutans	66.3865274438
+UniRef50_O07329: Catabolite control protein A|g__Streptococcus.s__Streptococcus_agalactiae	2.0773368692
+UniRef50_L0GPC1: Site-specific recombinase XerD	68.3773501048
+UniRef50_L0GPC1: Site-specific recombinase XerD|g__Pseudomonas.s__Pseudomonas_aeruginosa	68.3773501048
+UniRef50_B5E1P6: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B	68.3750736834
+UniRef50_B5E1P6: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B|g__Streptococcus.s__Streptococcus_mutans	64.5117335486
+UniRef50_B5E1P6: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B|g__Streptococcus.s__Streptococcus_agalactiae	3.8633401348
+UniRef50_I0C1L9	68.3684696753
+UniRef50_I0C1L9|g__Staphylococcus.s__Staphylococcus_aureus	68.3684696753
+UniRef50_Q9A1V9: 50S ribosomal protein L6	68.3563907746
+UniRef50_Q9A1V9: 50S ribosomal protein L6|g__Streptococcus.s__Streptococcus_mutans	68.3563907746
+UniRef50_J1KAC8	68.3456708662
+UniRef50_J1KAC8|unclassified	68.3456708662
+UniRef50_F0VTB0	68.3195844467
+UniRef50_F0VTB0|g__Streptococcus.s__Streptococcus_mutans	68.3195844467
+UniRef50_U3ST50	68.2844274375
+UniRef50_U3ST50|g__Streptococcus.s__Streptococcus_mutans	68.2844274375
+UniRef50_D6SIH2	68.2681917954
+UniRef50_D6SIH2|g__Staphylococcus.s__Staphylococcus_aureus	68.2681917954
+UniRef50_R4Y9R8: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	68.2539707023
+UniRef50_R4Y9R8: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|g__Escherichia.s__Escherichia_coli	68.2539707023
+UniRef50_P26289: NAD(P)H-quinone oxidoreductase subunit 4L, chloroplastic	68.2447397564
+UniRef50_P26289: NAD(P)H-quinone oxidoreductase subunit 4L, chloroplastic|g__Rhodobacter.s__Rhodobacter_sphaeroides	68.2447397564
+UniRef50_Q8CRZ3	68.2446241277
+UniRef50_Q8CRZ3|g__Staphylococcus.s__Staphylococcus_epidermidis	68.2446241277
+UniRef50_A8LHW6: Penicillin-binding protein	68.2251889545
+UniRef50_A8LHW6: Penicillin-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	68.2251889545
+UniRef50_L0KL03: ABC-type sugar transport system, periplasmic component	68.1988502213
+UniRef50_L0KL03: ABC-type sugar transport system, periplasmic component|g__Rhodobacter.s__Rhodobacter_sphaeroides	68.1988502213
+UniRef50_A8Z136	68.1835866688
+UniRef50_A8Z136|g__Staphylococcus.s__Staphylococcus_aureus	68.1835866688
+UniRef50_P0A264: Outer membrane protein C	68.1772813325
+UniRef50_P0A264: Outer membrane protein C|g__Escherichia.s__Escherichia_coli	68.1772813325
+UniRef50_B9JEG2: Deoxyguanosinetriphosphate triphosphohydrolase-like protein	68.1510435081
+UniRef50_B9JEG2: Deoxyguanosinetriphosphate triphosphohydrolase-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	68.1510435081
+UniRef50_A5W967: RNA polymerase-binding transcription factor DksA	68.1471416766
+UniRef50_A5W967: RNA polymerase-binding transcription factor DksA|g__Pseudomonas.s__Pseudomonas_aeruginosa	68.1471416766
+UniRef50_P0AEB1: Sulfate transport system permease protein CysW	68.0967706453
+UniRef50_P0AEB1: Sulfate transport system permease protein CysW|g__Escherichia.s__Escherichia_coli	36.9364767036
+UniRef50_P0AEB1: Sulfate transport system permease protein CysW|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.1602939417
+UniRef50_Q5LY98: Probable dual-specificity RNA methyltransferase RlmN	68.0822553003
+UniRef50_Q5LY98: Probable dual-specificity RNA methyltransferase RlmN|g__Streptococcus.s__Streptococcus_mutans	67.9210718102
+UniRef50_Q5LY98: Probable dual-specificity RNA methyltransferase RlmN|unclassified	0.1611834900
+UniRef50_Q8CS12	68.0488059487
+UniRef50_Q8CS12|g__Staphylococcus.s__Staphylococcus_epidermidis	68.0488059487
+UniRef50_F3T0N3	68.0464492817
+UniRef50_F3T0N3|g__Staphylococcus.s__Staphylococcus_epidermidis	68.0464492817
+UniRef50_I6T572: Integrase	68.0086048251
+UniRef50_I6T572: Integrase|g__Streptococcus.s__Streptococcus_mutans	68.0086048251
+UniRef50_A7X1Z3	68.0076660810
+UniRef50_A7X1Z3|g__Staphylococcus.s__Staphylococcus_aureus	67.2120979946
+UniRef50_A7X1Z3|unclassified	0.7955680864
+UniRef50_Q88GW8: 5-dehydro-4-deoxyglucarate dehydratase	67.9981313505
+UniRef50_Q88GW8: 5-dehydro-4-deoxyglucarate dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	66.6853687894
+UniRef50_Q88GW8: 5-dehydro-4-deoxyglucarate dehydratase|unclassified	1.3127625612
+UniRef50_I6TVX8	67.9582716902
+UniRef50_I6TVX8|g__Streptococcus.s__Streptococcus_mutans	67.9582716902
+UniRef50_Q53212: Putative peroxiredoxin y4vD	67.9248785953
+UniRef50_Q53212: Putative peroxiredoxin y4vD|g__Rhodobacter.s__Rhodobacter_sphaeroides	67.9248785953
+UniRef50_P76573	67.9139243792
+UniRef50_P76573|g__Escherichia.s__Escherichia_coli	67.9139243792
+UniRef50_Q038S0: Histidine--tRNA ligase	67.9103386295
+UniRef50_Q038S0: Histidine--tRNA ligase|g__Streptococcus.s__Streptococcus_mutans	67.8758772296
+UniRef50_Q038S0: Histidine--tRNA ligase|unclassified	0.0344614000
+UniRef50_Q929Y1: UDP-N-acetylmuramoylalanine--D-glutamate ligase	67.9079776260
+UniRef50_Q929Y1: UDP-N-acetylmuramoylalanine--D-glutamate ligase|g__Streptococcus.s__Streptococcus_mutans	63.4797017429
+UniRef50_Q929Y1: UDP-N-acetylmuramoylalanine--D-glutamate ligase|g__Streptococcus.s__Streptococcus_agalactiae	4.4282758831
+UniRef50_P66717: Probable DNA-directed RNA polymerase subunit delta	67.8626532920
+UniRef50_P66717: Probable DNA-directed RNA polymerase subunit delta|g__Streptococcus.s__Streptococcus_mutans	55.0971954371
+UniRef50_P66717: Probable DNA-directed RNA polymerase subunit delta|g__Streptococcus.s__Streptococcus_agalactiae	12.7654578549
+UniRef50_Q1MMP4: 50S ribosomal protein L20	67.8596739901
+UniRef50_Q1MMP4: 50S ribosomal protein L20|g__Rhodobacter.s__Rhodobacter_sphaeroides	67.8596739901
+UniRef50_Q2G2B1: HTH-type transcriptional regulator SarT	67.8593306333
+UniRef50_Q2G2B1: HTH-type transcriptional regulator SarT|g__Staphylococcus.s__Staphylococcus_aureus	67.8593306333
+UniRef50_Q4L9Y1: PTS system mannitol-specific EIICB component	67.8156296926
+UniRef50_Q4L9Y1: PTS system mannitol-specific EIICB component|g__Staphylococcus.s__Staphylococcus_aureus	67.7772636951
+UniRef50_Q4L9Y1: PTS system mannitol-specific EIICB component|unclassified	0.0383659976
+UniRef50_UPI00035C8B7E: hypothetical protein	67.8091955337
+UniRef50_UPI00035C8B7E: hypothetical protein|unclassified	35.1614413966
+UniRef50_UPI00035C8B7E: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.6477541371
+UniRef50_H4FT59: Pyridine nucleotide-disulfide oxidoreductase, dimerization domain protein	67.7775452009
+UniRef50_H4FT59: Pyridine nucleotide-disulfide oxidoreductase, dimerization domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	53.1091130439
+UniRef50_H4FT59: Pyridine nucleotide-disulfide oxidoreductase, dimerization domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	14.6684321570
+UniRef50_E8SJW9	67.7738548983
+UniRef50_E8SJW9|g__Staphylococcus.s__Staphylococcus_aureus	46.8349577299
+UniRef50_E8SJW9|g__Staphylococcus.s__Staphylococcus_epidermidis	20.9388971684
+UniRef50_H2A5L6: Methionine aminopeptidase	67.7659786770
+UniRef50_H2A5L6: Methionine aminopeptidase|g__Streptococcus.s__Streptococcus_mutans	56.4237782472
+UniRef50_H2A5L6: Methionine aminopeptidase|g__Streptococcus.s__Streptococcus_agalactiae	11.3422004298
+UniRef50_Q89EB1: Bll7176 protein	67.7480245342
+UniRef50_Q89EB1: Bll7176 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	67.7480245342
+UniRef50_A6X5J7: TonB-dependent receptor	67.7432013489
+UniRef50_A6X5J7: TonB-dependent receptor|g__Rhodobacter.s__Rhodobacter_sphaeroides	67.7432013489
+UniRef50_Q8CRI9: 50S ribosomal protein L13	67.7277881508
+UniRef50_Q8CRI9: 50S ribosomal protein L13|g__Staphylococcus.s__Staphylococcus_epidermidis	44.8868843101
+UniRef50_Q8CRI9: 50S ribosomal protein L13|g__Staphylococcus.s__Staphylococcus_aureus	22.8409038407
+UniRef50_Q8CPS1: Glucose-6-phosphate 1-dehydrogenase	67.6963784469
+UniRef50_Q8CPS1: Glucose-6-phosphate 1-dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	67.6963784469
+UniRef50_A3XDT9	67.6906269997
+UniRef50_A3XDT9|unclassified	67.6906269997
+UniRef50_Q4L8V4: Sensory transduction protein LytR	67.6867152996
+UniRef50_Q4L8V4: Sensory transduction protein LytR|g__Staphylococcus.s__Staphylococcus_epidermidis	67.6867152996
+UniRef50_M8R009	67.6730869339
+UniRef50_M8R009|g__Escherichia.s__Escherichia_coli	67.6730869339
+UniRef50_A3PJC9: MgtC/SapB transporter	67.6468358949
+UniRef50_A3PJC9: MgtC/SapB transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	67.6468358949
+UniRef50_B2VH10: Non-canonical purine NTP phosphatase	67.6375182903
+UniRef50_B2VH10: Non-canonical purine NTP phosphatase|g__Escherichia.s__Escherichia_coli	67.6375182903
+UniRef50_A4WVG4	67.6348253023
+UniRef50_A4WVG4|g__Rhodobacter.s__Rhodobacter_sphaeroides	64.6768792930
+UniRef50_A4WVG4|unclassified	2.9579460093
+UniRef50_P00148: Cytochrome c'	67.6250210849
+UniRef50_P00148: Cytochrome c'|g__Rhodobacter.s__Rhodobacter_sphaeroides	67.6250210849
+UniRef50_P0AA96	67.6209045890
+UniRef50_P0AA96|g__Escherichia.s__Escherichia_coli	66.6666666667
+UniRef50_P0AA96|unclassified	0.9542379223
+UniRef50_Q47BQ9: Tripartite ATP-independent periplasmic transporter, DctQ component	67.5008574894
+UniRef50_Q47BQ9: Tripartite ATP-independent periplasmic transporter, DctQ component|g__Rhodobacter.s__Rhodobacter_sphaeroides	67.2963741773
+UniRef50_Q47BQ9: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	0.2044833121
+UniRef50_O34760: Probable quorum-quenching lactonase YtnP	67.4756698914
+UniRef50_O34760: Probable quorum-quenching lactonase YtnP|g__Staphylococcus.s__Staphylococcus_aureus	67.4756698914
+UniRef50_C6VKW6: ATP-dependent zinc metalloprotease FtsH	67.4631152718
+UniRef50_C6VKW6: ATP-dependent zinc metalloprotease FtsH|g__Streptococcus.s__Streptococcus_mutans	63.5586021446
+UniRef50_C6VKW6: ATP-dependent zinc metalloprotease FtsH|g__Clostridium.s__Clostridium_beijerinckii	3.8730574323
+UniRef50_C6VKW6: ATP-dependent zinc metalloprotease FtsH|unclassified	0.0314556949
+UniRef50_UPI000468DB65: leucyl-tRNA synthetase	67.4500661873
+UniRef50_UPI000468DB65: leucyl-tRNA synthetase|g__Rhodobacter.s__Rhodobacter_sphaeroides	67.4500661873
+UniRef50_P10346: Glutamine transport ATP-binding protein GlnQ	67.4180144549
+UniRef50_P10346: Glutamine transport ATP-binding protein GlnQ|g__Escherichia.s__Escherichia_coli	64.5235614583
+UniRef50_P10346: Glutamine transport ATP-binding protein GlnQ|g__Clostridium.s__Clostridium_beijerinckii	2.8944529966
+UniRef50_F2MQQ8: Tagatose-6-phosphate kinase	67.3847365266
+UniRef50_F2MQQ8: Tagatose-6-phosphate kinase|g__Streptococcus.s__Streptococcus_mutans	67.3847365266
+UniRef50_Q5HL20: Lipoprotein, putative	67.3814831949
+UniRef50_Q5HL20: Lipoprotein, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	67.3814831949
+UniRef50_D3NZU9	67.3501617806
+UniRef50_D3NZU9|g__Rhodobacter.s__Rhodobacter_sphaeroides	67.3501617806
+UniRef50_S5N864: Molecular chaperone GroES	67.3497070205
+UniRef50_S5N864: Molecular chaperone GroES|g__Streptococcus.s__Streptococcus_mutans	67.3497070205
+UniRef50_Q9JS61: Dihydroxy-acid dehydratase	67.3376474249
+UniRef50_Q9JS61: Dihydroxy-acid dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	43.6038490157
+UniRef50_Q9JS61: Dihydroxy-acid dehydratase|g__Escherichia.s__Escherichia_coli	19.0895187232
+UniRef50_Q9JS61: Dihydroxy-acid dehydratase|g__Acinetobacter.s__Acinetobacter_baumannii	2.6297801840
+UniRef50_Q9JS61: Dihydroxy-acid dehydratase|unclassified	1.4698371927
+UniRef50_Q9JS61: Dihydroxy-acid dehydratase|g__Neisseria.s__Neisseria_meningitidis	0.5446623094
+UniRef50_Q4L8D2: Cyclic pyranopterin monophosphate synthase	67.3350052535
+UniRef50_Q4L8D2: Cyclic pyranopterin monophosphate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	67.2992079500
+UniRef50_Q4L8D2: Cyclic pyranopterin monophosphate synthase|unclassified	0.0357973034
+UniRef50_Q2YPH2: Ornithine carbamoyltransferase	67.2867742840
+UniRef50_Q2YPH2: Ornithine carbamoyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	67.2867742840
+UniRef50_Q5M4T5	67.2690000284
+UniRef50_Q5M4T5|g__Streptococcus.s__Streptococcus_mutans	50.1281088014
+UniRef50_Q5M4T5|g__Streptococcus.s__Streptococcus_agalactiae	17.1408912271
+UniRef50_A7X232: Anthranilate phosphoribosyltransferase	67.2650883559
+UniRef50_A7X232: Anthranilate phosphoribosyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	67.2650883559
+UniRef50_Q5HP06: ComG operon protein 2, putative	67.2319086494
+UniRef50_Q5HP06: ComG operon protein 2, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	67.2319086494
+UniRef50_B2IAX9: Tyrosine--tRNA ligase	67.2169184977
+UniRef50_B2IAX9: Tyrosine--tRNA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	66.7636636555
+UniRef50_B2IAX9: Tyrosine--tRNA ligase|unclassified	0.4532548422
+UniRef50_Q8Z2X7: Autoinducer 2 import system permease protein LsrD	67.2000808853
+UniRef50_Q8Z2X7: Autoinducer 2 import system permease protein LsrD|g__Escherichia.s__Escherichia_coli	40.9960383390
+UniRef50_Q8Z2X7: Autoinducer 2 import system permease protein LsrD|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.2040425463
+UniRef50_G7ZMN3: Iron-transporting membrane protein, putative	67.1798649977
+UniRef50_G7ZMN3: Iron-transporting membrane protein, putative|g__Staphylococcus.s__Staphylococcus_aureus	67.1798649977
+UniRef50_A3PMN1	67.1580159637
+UniRef50_A3PMN1|g__Rhodobacter.s__Rhodobacter_sphaeroides	67.1580159637
+UniRef50_Q9CEG3: Aminopeptidase C	67.1501893872
+UniRef50_Q9CEG3: Aminopeptidase C|g__Streptococcus.s__Streptococcus_mutans	57.9321095558
+UniRef50_Q9CEG3: Aminopeptidase C|g__Streptococcus.s__Streptococcus_agalactiae	9.2180798314
+UniRef50_P57874: Ferrochelatase	67.0962086190
+UniRef50_P57874: Ferrochelatase|g__Streptococcus.s__Streptococcus_mutans	40.6512784827
+UniRef50_P57874: Ferrochelatase|g__Escherichia.s__Escherichia_coli	26.4449301363
+UniRef50_P68188: Maltose/maltodextrin import ATP-binding protein MalK	67.0958100983
+UniRef50_P68188: Maltose/maltodextrin import ATP-binding protein MalK|g__Escherichia.s__Escherichia_coli	66.1095065102
+UniRef50_P68188: Maltose/maltodextrin import ATP-binding protein MalK|unclassified	0.9863035881
+UniRef50_Q3IX61	67.0722041809
+UniRef50_Q3IX61|g__Rhodobacter.s__Rhodobacter_sphaeroides	66.6386126251
+UniRef50_Q3IX61|unclassified	0.4335915558
+UniRef50_D2NAN7	67.0536701141
+UniRef50_D2NAN7|g__Staphylococcus.s__Staphylococcus_epidermidis	67.0536701141
+UniRef50_Q4L4Z3: 3-oxoacyl-[acyl-carrier-protein] synthase 3	67.0535295410
+UniRef50_Q4L4Z3: 3-oxoacyl-[acyl-carrier-protein] synthase 3|g__Staphylococcus.s__Staphylococcus_aureus	65.3604681828
+UniRef50_Q4L4Z3: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	1.6930613582
+UniRef50_B9KWP4: ABC sugar transporter, inner membrane subunit	67.0156736053
+UniRef50_B9KWP4: ABC sugar transporter, inner membrane subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	67.0156736053
+UniRef50_Q45582: N-acetylmuramic acid 6-phosphate etherase	67.0030707199
+UniRef50_Q45582: N-acetylmuramic acid 6-phosphate etherase|g__Staphylococcus.s__Staphylococcus_epidermidis	66.9455682805
+UniRef50_Q45582: N-acetylmuramic acid 6-phosphate etherase|unclassified	0.0575024394
+UniRef50_Q8NUG3	66.9733550003
+UniRef50_Q8NUG3|g__Staphylococcus.s__Staphylococcus_aureus	66.9733550003
+UniRef50_B0CHX9: Adenine phosphoribosyltransferase	66.9312287994
+UniRef50_B0CHX9: Adenine phosphoribosyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.6823205338
+UniRef50_B0CHX9: Adenine phosphoribosyltransferase|unclassified	1.2489082656
+UniRef50_Q9AHJ5: Interrupted beta-D-glucuronidase	66.8874141580
+UniRef50_Q9AHJ5: Interrupted beta-D-glucuronidase|g__Escherichia.s__Escherichia_coli	66.8874141580
+UniRef50_G5MSH6	66.8830386584
+UniRef50_G5MSH6|unclassified	66.8830386584
+UniRef50_D9RMN6: Phage protein	66.8718064350
+UniRef50_D9RMN6: Phage protein|g__Staphylococcus.s__Staphylococcus_aureus	66.8718064350
+UniRef50_I4DYP2: RNA binding protein	66.8695136169
+UniRef50_I4DYP2: RNA binding protein|g__Streptococcus.s__Streptococcus_mutans	66.8695136169
+UniRef50_S5YGB9	66.8498168498
+UniRef50_S5YGB9|g__Rhodobacter.s__Rhodobacter_sphaeroides	66.8498168498
+UniRef50_C5N6Q3	66.8439340392
+UniRef50_C5N6Q3|g__Staphylococcus.s__Staphylococcus_aureus	64.8560085798
+UniRef50_C5N6Q3|unclassified	1.9879254594
+UniRef50_UPI00005C7F68: hypothetical protein	66.8168173510
+UniRef50_UPI00005C7F68: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	64.3567271938
+UniRef50_UPI00005C7F68: hypothetical protein|unclassified	2.4600901573
+UniRef50_Q2FH00: Alanine dehydrogenase 1	66.8063289513
+UniRef50_Q2FH00: Alanine dehydrogenase 1|g__Staphylococcus.s__Staphylococcus_aureus	66.8063289513
+UniRef50_Q99V46: Staphopain B	66.7748173116
+UniRef50_Q99V46: Staphopain B|g__Staphylococcus.s__Staphylococcus_aureus	66.7748173116
+UniRef50_A0A023VMY7: Peptidase M16	66.7538049913
+UniRef50_A0A023VMY7: Peptidase M16|g__Streptococcus.s__Streptococcus_mutans	63.0701246201
+UniRef50_A0A023VMY7: Peptidase M16|g__Streptococcus.s__Streptococcus_agalactiae	3.6836803712
+UniRef50_UPI0003C168CC	66.7523738037
+UniRef50_UPI0003C168CC|g__Rhodobacter.s__Rhodobacter_sphaeroides	66.7464935614
+UniRef50_UPI0003C168CC|unclassified	0.0058802423
+UniRef50_A6QGP9	66.7511517135
+UniRef50_A6QGP9|g__Staphylococcus.s__Staphylococcus_aureus	66.7511517135
+UniRef50_Q04IA2: Glucose-6-phosphate isomerase	66.7498396051
+UniRef50_Q04IA2: Glucose-6-phosphate isomerase|g__Streptococcus.s__Streptococcus_mutans	59.7271829158
+UniRef50_Q04IA2: Glucose-6-phosphate isomerase|g__Clostridium.s__Clostridium_beijerinckii	4.7003583144
+UniRef50_Q04IA2: Glucose-6-phosphate isomerase|g__Streptococcus.s__Streptococcus_agalactiae	2.3222983749
+UniRef50_F6IG84: Cytochrome bd-I oxidase subunit II	66.7496957145
+UniRef50_F6IG84: Cytochrome bd-I oxidase subunit II|g__Rhodobacter.s__Rhodobacter_sphaeroides	66.7496957145
+UniRef50_B1HZV3: HTH-type transcriptional regulator	66.7336762760
+UniRef50_B1HZV3: HTH-type transcriptional regulator|g__Staphylococcus.s__Staphylococcus_epidermidis	66.7336762760
+UniRef50_P37649: Protein YhjK	66.7193201522
+UniRef50_P37649: Protein YhjK|g__Escherichia.s__Escherichia_coli	66.7193201522
+UniRef50_J9ZII5	66.7181506578
+UniRef50_J9ZII5|g__Escherichia.s__Escherichia_coli	66.7181506578
+UniRef50_E3CJI9: DNA ligase	66.7114089334
+UniRef50_E3CJI9: DNA ligase|g__Streptococcus.s__Streptococcus_mutans	66.7114089334
+UniRef50_U3ST65: Fructan hydrolase FruB	66.6788276706
+UniRef50_U3ST65: Fructan hydrolase FruB|g__Streptococcus.s__Streptococcus_mutans	66.6788276706
+UniRef50_A6M2H8	66.6666666667
+UniRef50_A6M2H8|g__Clostridium.s__Clostridium_beijerinckii	66.6666666667
+UniRef50_I3FUW1	66.6666666667
+UniRef50_I3FUW1|g__Staphylococcus.s__Staphylococcus_aureus	66.6666666667
+UniRef50_Q1C8B1: Succinylornithine transaminase	66.6189298755
+UniRef50_Q1C8B1: Succinylornithine transaminase|g__Escherichia.s__Escherichia_coli	52.8026894584
+UniRef50_Q1C8B1: Succinylornithine transaminase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.0026251389
+UniRef50_Q1C8B1: Succinylornithine transaminase|g__Acinetobacter.s__Acinetobacter_baumannii	3.6224563429
+UniRef50_Q1C8B1: Succinylornithine transaminase|unclassified	0.1911589353
+UniRef50_Q5HLB6: Glycine oxidase, putative	66.5892456643
+UniRef50_Q5HLB6: Glycine oxidase, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	66.5892456643
+UniRef50_P56900: Transketolase	66.5724853803
+UniRef50_P56900: Transketolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	64.2534379642
+UniRef50_P56900: Transketolase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6949747468
+UniRef50_P56900: Transketolase|unclassified	0.6240726693
+UniRef50_P58313: UTP--glucose-1-phosphate uridylyltransferase	66.5710152585
+UniRef50_P58313: UTP--glucose-1-phosphate uridylyltransferase|g__Streptococcus.s__Streptococcus_mutans	62.3543726998
+UniRef50_P58313: UTP--glucose-1-phosphate uridylyltransferase|unclassified	4.2166425587
+UniRef50_G0LV16: CAAX amino terminal protease family protein	66.4122353349
+UniRef50_G0LV16: CAAX amino terminal protease family protein|g__Staphylococcus.s__Staphylococcus_aureus	66.4122353349
+UniRef50_Q8CRY8	66.3956714938
+UniRef50_Q8CRY8|g__Staphylococcus.s__Staphylococcus_epidermidis	66.3956714938
+UniRef50_R5HX70: Ethanolamine utilization protein EutP	66.3796004418
+UniRef50_R5HX70: Ethanolamine utilization protein EutP|g__Clostridium.s__Clostridium_beijerinckii	66.3796004418
+UniRef50_D4MEH6: Hemolysins and related proteins containing CBS domains	66.3541759830
+UniRef50_D4MEH6: Hemolysins and related proteins containing CBS domains|g__Streptococcus.s__Streptococcus_mutans	62.3985447386
+UniRef50_D4MEH6: Hemolysins and related proteins containing CBS domains|g__Streptococcus.s__Streptococcus_agalactiae	3.9556312444
+UniRef50_Q5LSI2: ABC transporter, permease protein	66.3201679819
+UniRef50_Q5LSI2: ABC transporter, permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	66.3201679819
+UniRef50_H8LI74	66.2920851853
+UniRef50_H8LI74|g__Streptococcus.s__Streptococcus_mutans	55.8594690946
+UniRef50_H8LI74|g__Streptococcus.s__Streptococcus_agalactiae	10.4326160907
+UniRef50_Q2FZ95: Cell division protein FtsL	66.2911728480
+UniRef50_Q2FZ95: Cell division protein FtsL|g__Staphylococcus.s__Staphylococcus_epidermidis	38.4156787768
+UniRef50_Q2FZ95: Cell division protein FtsL|g__Staphylococcus.s__Staphylococcus_aureus	27.8754940711
+UniRef50_A3PP90: TRAP-T family transporter, small (4 TMs) inner membrane subunit	66.2873161824
+UniRef50_A3PP90: TRAP-T family transporter, small (4 TMs) inner membrane subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.2578911623
+UniRef50_A3PP90: TRAP-T family transporter, small (4 TMs) inner membrane subunit|unclassified	1.0294250200
+UniRef50_D2N4E0: Peptidase propeptide and ypeb domain protein	66.2727175807
+UniRef50_D2N4E0: Peptidase propeptide and ypeb domain protein|g__Staphylococcus.s__Staphylococcus_aureus	66.2727175807
+UniRef50_Q8CRZ2	66.2591260024
+UniRef50_Q8CRZ2|g__Staphylococcus.s__Staphylococcus_epidermidis	66.2591260024
+UniRef50_B1MZ61: Glycine--tRNA ligase alpha subunit	66.2580784868
+UniRef50_B1MZ61: Glycine--tRNA ligase alpha subunit|g__Streptococcus.s__Streptococcus_mutans	54.2292207482
+UniRef50_B1MZ61: Glycine--tRNA ligase alpha subunit|g__Streptococcus.s__Streptococcus_agalactiae	11.7557170094
+UniRef50_B1MZ61: Glycine--tRNA ligase alpha subunit|unclassified	0.2731407292
+UniRef50_A4WTG8: Methyl-accepting chemotaxis sensory transducer	66.2499129386
+UniRef50_A4WTG8: Methyl-accepting chemotaxis sensory transducer|g__Rhodobacter.s__Rhodobacter_sphaeroides	66.2499129386
+UniRef50_P0AFD2: NADH-quinone oxidoreductase subunit E	66.2465432414
+UniRef50_P0AFD2: NADH-quinone oxidoreductase subunit E|g__Escherichia.s__Escherichia_coli	51.9515006408
+UniRef50_P0AFD2: NADH-quinone oxidoreductase subunit E|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.2767713827
+UniRef50_P0AFD2: NADH-quinone oxidoreductase subunit E|unclassified	1.0182712179
+UniRef50_B6ISP7: Phosphopantetheine adenylyltransferase	66.2459825605
+UniRef50_B6ISP7: Phosphopantetheine adenylyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.7302540192
+UniRef50_B6ISP7: Phosphopantetheine adenylyltransferase|unclassified	0.5157285412
+UniRef50_P68801: Staphylokinase	66.2409483104
+UniRef50_P68801: Staphylokinase|g__Staphylococcus.s__Staphylococcus_aureus	66.2409483104
+UniRef50_C6SR62	66.2045566015
+UniRef50_C6SR62|g__Streptococcus.s__Streptococcus_mutans	66.2045566015
+UniRef50_A4W448: ATPases with chaperone activity, ATP-binding subunit	66.1917515926
+UniRef50_A4W448: ATPases with chaperone activity, ATP-binding subunit|g__Streptococcus.s__Streptococcus_mutans	66.1917515926
+UniRef50_L7WUJ3: ABC transporter permease	66.1545090007
+UniRef50_L7WUJ3: ABC transporter permease|g__Staphylococcus.s__Staphylococcus_epidermidis	66.1545090007
+UniRef50_B9KP74: Branched chain amino acid aminotransferase	66.1541750103
+UniRef50_B9KP74: Branched chain amino acid aminotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	66.1541750103
+UniRef50_Q8E4M4	66.1291122105
+UniRef50_Q8E4M4|g__Streptococcus.s__Streptococcus_mutans	61.2806086177
+UniRef50_Q8E4M4|g__Streptococcus.s__Streptococcus_agalactiae	4.8485035928
+UniRef50_X4ZCF7: ABC transporter family protein	66.1076028254
+UniRef50_X4ZCF7: ABC transporter family protein|g__Streptococcus.s__Streptococcus_mutans	58.5322284881
+UniRef50_X4ZCF7: ABC transporter family protein|g__Streptococcus.s__Streptococcus_agalactiae	7.5753743374
+UniRef50_B7GH97: ABC-type phosphate transport system, permease component	66.1004924712
+UniRef50_B7GH97: ABC-type phosphate transport system, permease component|g__Staphylococcus.s__Staphylococcus_aureus	66.1004924712
+UniRef50_P24197	66.0577841431
+UniRef50_P24197|g__Escherichia.s__Escherichia_coli	66.0577841431
+UniRef50_Q9KA05: Ribonuclease 3	66.0525627244
+UniRef50_Q9KA05: Ribonuclease 3|g__Staphylococcus.s__Staphylococcus_aureus	66.0525627244
+UniRef50_A7HVB6	66.0152123243
+UniRef50_A7HVB6|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.3277606470
+UniRef50_A7HVB6|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3435869711
+UniRef50_A7HVB6|unclassified	0.3438647062
+UniRef50_Q2FGH0: Superoxide dismutase [Mn/Fe] 1	66.0104607371
+UniRef50_Q2FGH0: Superoxide dismutase [Mn/Fe] 1|g__Staphylococcus.s__Staphylococcus_aureus	65.7666251545
+UniRef50_Q2FGH0: Superoxide dismutase [Mn/Fe] 1|unclassified	0.2438355827
+UniRef50_Q1RGX4: Lipoyl synthase	65.9992887215
+UniRef50_Q1RGX4: Lipoyl synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.9580215132
+UniRef50_Q1RGX4: Lipoyl synthase|unclassified	0.0412672083
+UniRef50_A3PLE0	65.9961468037
+UniRef50_A3PLE0|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.9806421856
+UniRef50_A3PLE0|unclassified	28.0155046181
+UniRef50_B9KN41	65.9940213735
+UniRef50_B9KN41|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.9940213735
+UniRef50_Q0B261: MaoC domain protein dehydratase	65.9791056220
+UniRef50_Q0B261: MaoC domain protein dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.4845571274
+UniRef50_Q0B261: MaoC domain protein dehydratase|unclassified	0.4945484946
+UniRef50_S5YYN3: Protein-L-isoaspartate(D-aspartate) O-methyltransferase	65.9781429903
+UniRef50_S5YYN3: Protein-L-isoaspartate(D-aspartate) O-methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.9781429903
+UniRef50_Q6GGT1: Elastin-binding protein EbpS	65.9620216077
+UniRef50_Q6GGT1: Elastin-binding protein EbpS|g__Staphylococcus.s__Staphylococcus_aureus	65.9620216077
+UniRef50_Q8TYM1: Putative (R)-citramalate synthase CimA	65.9255650462
+UniRef50_Q8TYM1: Putative (R)-citramalate synthase CimA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	65.7907061864
+UniRef50_Q8TYM1: Putative (R)-citramalate synthase CimA|unclassified	0.1348588599
+UniRef50_D6SHR9: C4-dicarboxylate transporter/malic acid transport protein	65.8930369811
+UniRef50_D6SHR9: C4-dicarboxylate transporter/malic acid transport protein|g__Staphylococcus.s__Staphylococcus_aureus	65.8930369811
+UniRef50_Q0AAE8: Choline/carnitine/betaine transporter	65.8826032219
+UniRef50_Q0AAE8: Choline/carnitine/betaine transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.8826032219
+UniRef50_A8AZI4: Penicillin-binding protein 1B	65.8751420286
+UniRef50_A8AZI4: Penicillin-binding protein 1B|g__Streptococcus.s__Streptococcus_mutans	61.3329930838
+UniRef50_A8AZI4: Penicillin-binding protein 1B|g__Streptococcus.s__Streptococcus_agalactiae	4.5421489448
+UniRef50_Q8CP81: Maltose/maltodextrin transport permease	65.8707927378
+UniRef50_Q8CP81: Maltose/maltodextrin transport permease|g__Staphylococcus.s__Staphylococcus_epidermidis	65.8707927378
+UniRef50_Q8DND7	65.8638777511
+UniRef50_Q8DND7|g__Streptococcus.s__Streptococcus_mutans	62.2949593131
+UniRef50_Q8DND7|g__Streptococcus.s__Streptococcus_agalactiae	3.5689184380
+UniRef50_A0A023SIR8: rRNA methyltransferase	65.8610262848
+UniRef50_A0A023SIR8: rRNA methyltransferase|g__Streptococcus.s__Streptococcus_mutans	55.1362263863
+UniRef50_A0A023SIR8: rRNA methyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	10.7247998985
+UniRef50_A3PKD3: Flagellar motor switch protein FliG	65.8447101646
+UniRef50_A3PKD3: Flagellar motor switch protein FliG|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.8447101646
+UniRef50_U5UI30: ATP-dependent DNA helicase RecQ	65.8142520617
+UniRef50_U5UI30: ATP-dependent DNA helicase RecQ|g__Staphylococcus.s__Staphylococcus_epidermidis	65.8142520617
+UniRef50_D5QFG0: Oligopeptide/dipeptide ABC transporter, ATP-binding protein-like protein	65.7770349150
+UniRef50_D5QFG0: Oligopeptide/dipeptide ABC transporter, ATP-binding protein-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.7770349150
+UniRef50_U5P5Q4: Competence protein CglA	65.7570661106
+UniRef50_U5P5Q4: Competence protein CglA|g__Streptococcus.s__Streptococcus_mutans	63.9188308165
+UniRef50_U5P5Q4: Competence protein CglA|g__Streptococcus.s__Streptococcus_agalactiae	1.8382352941
+UniRef50_Q8CP92: Membrane spanning protein	65.7477261510
+UniRef50_Q8CP92: Membrane spanning protein|g__Staphylococcus.s__Staphylococcus_epidermidis	65.7477261510
+UniRef50_Q1QJR5: S-adenosylmethionine synthase	65.7393052910
+UniRef50_Q1QJR5: S-adenosylmethionine synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.3079059891
+UniRef50_Q1QJR5: S-adenosylmethionine synthase|unclassified	0.4313993020
+UniRef50_E8SI80: Disulfide bond regulator	65.7273550662
+UniRef50_E8SI80: Disulfide bond regulator|g__Staphylococcus.s__Staphylococcus_epidermidis	65.7273550662
+UniRef50_C7MB99: Methyltransferase family protein	65.7192759286
+UniRef50_C7MB99: Methyltransferase family protein|g__Streptococcus.s__Streptococcus_mutans	65.7192759286
+UniRef50_F3U350	65.6892048544
+UniRef50_F3U350|g__Rhodobacter.s__Rhodobacter_sphaeroides	64.4968967466
+UniRef50_F3U350|unclassified	1.1923081078
+UniRef50_X4YVT9: Nitronate monooxygenase family protein	65.6866486881
+UniRef50_X4YVT9: Nitronate monooxygenase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	63.1693332332
+UniRef50_X4YVT9: Nitronate monooxygenase family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2610340479
+UniRef50_X4YVT9: Nitronate monooxygenase family protein|g__Neisseria.s__Neisseria_meningitidis	1.2562814070
+UniRef50_L7WXE6	65.6819353138
+UniRef50_L7WXE6|g__Staphylococcus.s__Staphylococcus_epidermidis	65.6819353138
+UniRef50_Q8DWJ3	65.6685320605
+UniRef50_Q8DWJ3|g__Streptococcus.s__Streptococcus_mutans	64.9519945422
+UniRef50_Q8DWJ3|unclassified	0.7165375183
+UniRef50_U5L575: Oxidoreductase	65.6641139526
+UniRef50_U5L575: Oxidoreductase|g__Streptococcus.s__Streptococcus_mutans	65.6641139526
+UniRef50_Q67NS9: GTPase Der	65.6628387062
+UniRef50_Q67NS9: GTPase Der|g__Streptococcus.s__Streptococcus_mutans	59.5211052394
+UniRef50_Q67NS9: GTPase Der|g__Streptococcus.s__Streptococcus_agalactiae	6.1417334668
+UniRef50_Q16B11: Membrane protein, putative	65.6460570705
+UniRef50_Q16B11: Membrane protein, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	63.8534045149
+UniRef50_Q16B11: Membrane protein, putative|unclassified	1.7926525556
+UniRef50_P0A2U6: Zinc transport system ATP-binding protein AdcC	65.6444151791
+UniRef50_P0A2U6: Zinc transport system ATP-binding protein AdcC|g__Streptococcus.s__Streptococcus_mutans	64.0867827803
+UniRef50_P0A2U6: Zinc transport system ATP-binding protein AdcC|g__Streptococcus.s__Streptococcus_agalactiae	1.5576323988
+UniRef50_Q57LQ8: Acetyltransferase YpeA	65.6256580942
+UniRef50_Q57LQ8: Acetyltransferase YpeA|g__Escherichia.s__Escherichia_coli	64.5227919403
+UniRef50_Q57LQ8: Acetyltransferase YpeA|unclassified	1.1028661539
+UniRef50_Q8E4F9: Probable tRNA sulfurtransferase	65.5931923917
+UniRef50_Q8E4F9: Probable tRNA sulfurtransferase|g__Streptococcus.s__Streptococcus_mutans	61.2953116063
+UniRef50_Q8E4F9: Probable tRNA sulfurtransferase|g__Streptococcus.s__Streptococcus_agalactiae	4.2978807854
+UniRef50_P59199: DNA polymerase I	65.5906196287
+UniRef50_P59199: DNA polymerase I|g__Streptococcus.s__Streptococcus_mutans	63.9626418337
+UniRef50_P59199: DNA polymerase I|g__Streptococcus.s__Streptococcus_agalactiae	1.6279777949
+UniRef50_P74741: Bifunctional purine biosynthesis protein PurH	65.5820416537
+UniRef50_P74741: Bifunctional purine biosynthesis protein PurH|g__Streptococcus.s__Streptococcus_mutans	65.5517306668
+UniRef50_P74741: Bifunctional purine biosynthesis protein PurH|unclassified	0.0303109869
+UniRef50_Q8DUY4: Putative two-component membrane permease complex subunit SMU_746c	65.5720238107
+UniRef50_Q8DUY4: Putative two-component membrane permease complex subunit SMU_746c|g__Streptococcus.s__Streptococcus_mutans	64.3251410177
+UniRef50_Q8DUY4: Putative two-component membrane permease complex subunit SMU_746c|g__Streptococcus.s__Streptococcus_agalactiae	1.2468827930
+UniRef50_F8DH56: NmrA family protein	65.4854817547
+UniRef50_F8DH56: NmrA family protein|g__Streptococcus.s__Streptococcus_mutans	65.4854817547
+UniRef50_Z4JX05: Aryl-phospho-beta-D-glucosidase BglA	65.4819619038
+UniRef50_Z4JX05: Aryl-phospho-beta-D-glucosidase BglA|g__Staphylococcus.s__Staphylococcus_aureus	65.4819619038
+UniRef50_R9YN56	65.4753963137
+UniRef50_R9YN56|g__Staphylococcus.s__Staphylococcus_aureus	65.4753963137
+UniRef50_B7N8L4: NAD/NADP-dependent betaine aldehyde dehydrogenase	65.4625617082
+UniRef50_B7N8L4: NAD/NADP-dependent betaine aldehyde dehydrogenase|g__Escherichia.s__Escherichia_coli	53.2422733102
+UniRef50_B7N8L4: NAD/NADP-dependent betaine aldehyde dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.7050896619
+UniRef50_B7N8L4: NAD/NADP-dependent betaine aldehyde dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.4546562489
+UniRef50_B7N8L4: NAD/NADP-dependent betaine aldehyde dehydrogenase|unclassified	0.0605424872
+UniRef50_D5ASB3: Membrane transport family protein	65.4610928187
+UniRef50_D5ASB3: Membrane transport family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.4610928187
+UniRef50_F8LGD6	65.4572533642
+UniRef50_F8LGD6|g__Streptococcus.s__Streptococcus_mutans	65.4572533642
+UniRef50_Q49V01: Ribonuclease M5	65.4463331447
+UniRef50_Q49V01: Ribonuclease M5|g__Staphylococcus.s__Staphylococcus_epidermidis	65.4463331447
+UniRef50_UPI00003799C3: hypothetical protein	65.4459015822
+UniRef50_UPI00003799C3: hypothetical protein|unclassified	48.9402894363
+UniRef50_UPI00003799C3: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.5056121458
+UniRef50_A5IR33: Prophage antirepressor	65.4447840663
+UniRef50_A5IR33: Prophage antirepressor|g__Staphylococcus.s__Staphylococcus_aureus	65.4447840663
+UniRef50_P63419	65.4246663330
+UniRef50_P63419|g__Escherichia.s__Escherichia_coli	65.4246663330
+UniRef50_A0A024DEM0: LrgA	65.4193819373
+UniRef50_A0A024DEM0: LrgA|g__Streptococcus.s__Streptococcus_mutans	65.4193819373
+UniRef50_F0L985	65.4178435051
+UniRef50_F0L985|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.4178435051
+UniRef50_Q2FI15: Bifunctional protein FolD	65.4067125937
+UniRef50_Q2FI15: Bifunctional protein FolD|g__Staphylococcus.s__Staphylococcus_aureus	65.2955367617
+UniRef50_Q2FI15: Bifunctional protein FolD|unclassified	0.1111758320
+UniRef50_P65644: Ethanolamine utilization cobalamin adenosyltransferase	65.3790504543
+UniRef50_P65644: Ethanolamine utilization cobalamin adenosyltransferase|g__Escherichia.s__Escherichia_coli	65.3790504543
+UniRef50_D5AMF4: ABC transporter, periplasmic substrate-binding protein	65.3570147242
+UniRef50_D5AMF4: ABC transporter, periplasmic substrate-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.3570147242
+UniRef50_Q09AF1: Ribose transport system permease protein RbsC	65.3401621327
+UniRef50_Q09AF1: Ribose transport system permease protein RbsC|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.3401621327
+UniRef50_Q4L8M6: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	65.3287449878
+UniRef50_Q4L8M6: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	65.3287449878
+UniRef50_Q4L884: Energy-coupling factor transporter ATP-binding protein EcfA2	65.3043933368
+UniRef50_Q4L884: Energy-coupling factor transporter ATP-binding protein EcfA2|g__Staphylococcus.s__Staphylococcus_epidermidis	65.2317361018
+UniRef50_Q4L884: Energy-coupling factor transporter ATP-binding protein EcfA2|unclassified	0.0726572350
+UniRef50_P0ABL2: Cytochrome c-type protein NrfB	65.2925878831
+UniRef50_P0ABL2: Cytochrome c-type protein NrfB|g__Escherichia.s__Escherichia_coli	64.9741172374
+UniRef50_P0ABL2: Cytochrome c-type protein NrfB|unclassified	0.3184706457
+UniRef50_Q8DWM8: Hypoxanthine-guanine phosphoribosyltransferase	65.2700664083
+UniRef50_Q8DWM8: Hypoxanthine-guanine phosphoribosyltransferase|g__Streptococcus.s__Streptococcus_mutans	65.2700664083
+UniRef50_M9R9I6: RNA polymerase sigma-32 factor 2	65.2663162824
+UniRef50_M9R9I6: RNA polymerase sigma-32 factor 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.2663162824
+UniRef50_D5AR59: Long-chain-fatty-acid--CoA ligase	65.2600946458
+UniRef50_D5AR59: Long-chain-fatty-acid--CoA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.2600946458
+UniRef50_Q49YA1: Uroporphyrinogen III synthase	65.2564485862
+UniRef50_Q49YA1: Uroporphyrinogen III synthase|g__Staphylococcus.s__Staphylococcus_aureus	65.2564485862
+UniRef50_Q5HKM2	65.2267272957
+UniRef50_Q5HKM2|g__Staphylococcus.s__Staphylococcus_epidermidis	65.2267272957
+UniRef50_B0I1W2	65.2260539632
+UniRef50_B0I1W2|g__Staphylococcus.s__Staphylococcus_aureus	65.2260539632
+UniRef50_P45322: Molybdenum transport system permease protein ModB	65.2048213430
+UniRef50_P45322: Molybdenum transport system permease protein ModB|g__Escherichia.s__Escherichia_coli	42.2746250683
+UniRef50_P45322: Molybdenum transport system permease protein ModB|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.9301962747
+UniRef50_A5UMP0: Aspartate carbamoyltransferase	65.1883689757
+UniRef50_A5UMP0: Aspartate carbamoyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	65.1883689757
+UniRef50_B9E9D0	65.1834300270
+UniRef50_B9E9D0|g__Staphylococcus.s__Staphylococcus_epidermidis	65.1834300270
+UniRef50_Q03K00: ABC-type multidrug transport system, permease component	65.1679045979
+UniRef50_Q03K00: ABC-type multidrug transport system, permease component|g__Streptococcus.s__Streptococcus_mutans	65.1679045979
+UniRef50_D3P3A4: Transposase	65.1606380314
+UniRef50_D3P3A4: Transposase|g__Rhodobacter.s__Rhodobacter_sphaeroides	64.5365458210
+UniRef50_D3P3A4: Transposase|unclassified	0.6240922104
+UniRef50_A3PN16: (3S)-malyl-CoA thioesterase	65.1334264447
+UniRef50_A3PN16: (3S)-malyl-CoA thioesterase|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.0822653842
+UniRef50_A3PN16: (3S)-malyl-CoA thioesterase|unclassified	14.8677549470
+UniRef50_A3PN16: (3S)-malyl-CoA thioesterase|g__Propionibacterium.s__Propionibacterium_acnes	2.1834061135
+UniRef50_Q5FKU9: Cell division protein FtsZ	65.1297243018
+UniRef50_Q5FKU9: Cell division protein FtsZ|g__Streptococcus.s__Streptococcus_mutans	58.7642791155
+UniRef50_Q5FKU9: Cell division protein FtsZ|g__Streptococcus.s__Streptococcus_agalactiae	6.3654451864
+UniRef50_L7WZN3	65.1253811432
+UniRef50_L7WZN3|g__Staphylococcus.s__Staphylococcus_epidermidis	65.1253811432
+UniRef50_G7SHI8: Phosphatase	65.1159264359
+UniRef50_G7SHI8: Phosphatase|g__Streptococcus.s__Streptococcus_mutans	65.1159264359
+UniRef50_Q9KNV7: Tryptophan--tRNA ligase	65.1042369781
+UniRef50_Q9KNV7: Tryptophan--tRNA ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	65.1042369781
+UniRef50_B9KX10: ABC branched chain amino acid transporter, periplasmic ligand binding protein	65.1032462686
+UniRef50_B9KX10: ABC branched chain amino acid transporter, periplasmic ligand binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.1032462686
+UniRef50_C5N3Z5	65.0755817025
+UniRef50_C5N3Z5|g__Staphylococcus.s__Staphylococcus_aureus	63.1780484957
+UniRef50_C5N3Z5|unclassified	1.8975332068
+UniRef50_A3PSA8: Oligopeptide/dipeptide ABC transporter, ATPase subunit	65.0496954623
+UniRef50_A3PSA8: Oligopeptide/dipeptide ABC transporter, ATPase subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	65.0496954623
+UniRef50_I0JR51: TetR family transcription regulator	65.0348366545
+UniRef50_I0JR51: TetR family transcription regulator|g__Staphylococcus.s__Staphylococcus_epidermidis	65.0348366545
+UniRef50_A6LWX2: RNA polymerase, sigma-24 subunit, ECF subfamily	65.0312603099
+UniRef50_A6LWX2: RNA polymerase, sigma-24 subunit, ECF subfamily|g__Clostridium.s__Clostridium_beijerinckii	65.0312603099
+UniRef50_Q8R8R7: Galactokinase	64.9970406869
+UniRef50_Q8R8R7: Galactokinase|g__Streptococcus.s__Streptococcus_mutans	63.7957261155
+UniRef50_Q8R8R7: Galactokinase|g__Clostridium.s__Clostridium_beijerinckii	1.1520737327
+UniRef50_Q8R8R7: Galactokinase|unclassified	0.0492408387
+UniRef50_D5AM27: Pseudouridine synthase	64.9959629993
+UniRef50_D5AM27: Pseudouridine synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	64.9959629993
+UniRef50_Q1GEB2: Transcriptional regulator, BadM/Rrf2 family	64.9947961708
+UniRef50_Q1GEB2: Transcriptional regulator, BadM/Rrf2 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	64.8477637970
+UniRef50_Q1GEB2: Transcriptional regulator, BadM/Rrf2 family|unclassified	0.1470323737
+UniRef50_I4E0F8	64.9789280106
+UniRef50_I4E0F8|g__Streptococcus.s__Streptococcus_mutans	64.9789280106
+UniRef50_P95780: dTDP-glucose 4,6-dehydratase	64.9755567883
+UniRef50_P95780: dTDP-glucose 4,6-dehydratase|g__Streptococcus.s__Streptococcus_mutans	60.4763328361
+UniRef50_P95780: dTDP-glucose 4,6-dehydratase|g__Streptococcus.s__Streptococcus_agalactiae	4.4652176930
+UniRef50_P95780: dTDP-glucose 4,6-dehydratase|unclassified	0.0340062592
+UniRef50_Q6GHV7: Iron-regulated surface determinant protein B	64.9692900402
+UniRef50_Q6GHV7: Iron-regulated surface determinant protein B|g__Staphylococcus.s__Staphylococcus_aureus	64.9692900402
+UniRef50_Q5HEW0: Serine protease SplA	64.8947138202
+UniRef50_Q5HEW0: Serine protease SplA|g__Staphylococcus.s__Staphylococcus_aureus	64.8947138202
+UniRef50_I1ZKQ0: Fe2+/Zn2+ uptake regulation protein	64.8656013745
+UniRef50_I1ZKQ0: Fe2+/Zn2+ uptake regulation protein|g__Streptococcus.s__Streptococcus_mutans	64.8656013745
+UniRef50_I6SU84: Transcriptional regulator	64.8483508397
+UniRef50_I6SU84: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	64.8483508397
+UniRef50_P52230: Thioredoxin-1	64.8008899680
+UniRef50_P52230: Thioredoxin-1|g__Rhodobacter.s__Rhodobacter_sphaeroides	64.8008899680
+UniRef50_P58740: Undecaprenyl-diphosphatase 1	64.7983512477
+UniRef50_P58740: Undecaprenyl-diphosphatase 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	62.4263903730
+UniRef50_P58740: Undecaprenyl-diphosphatase 1|unclassified	2.3719608748
+UniRef50_A0A037YPE8	64.7889968109
+UniRef50_A0A037YPE8|g__Staphylococcus.s__Staphylococcus_epidermidis	63.0565310978
+UniRef50_A0A037YPE8|unclassified	1.7324657132
+UniRef50_F5LY46	64.7802357142
+UniRef50_F5LY46|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.8498828651
+UniRef50_F5LY46|unclassified	2.9303528491
+UniRef50_Q9RWJ0: Argininosuccinate lyase	64.7643802316
+UniRef50_Q9RWJ0: Argininosuccinate lyase|g__Streptococcus.s__Streptococcus_mutans	59.0056177156
+UniRef50_Q9RWJ0: Argininosuccinate lyase|g__Streptococcus.s__Streptococcus_agalactiae	5.5338878923
+UniRef50_Q9RWJ0: Argininosuccinate lyase|unclassified	0.2248746237
+UniRef50_Q45539: Putative glycosyltransferase CsbB	64.7059882818
+UniRef50_Q45539: Putative glycosyltransferase CsbB|g__Staphylococcus.s__Staphylococcus_aureus	64.6418341523
+UniRef50_Q45539: Putative glycosyltransferase CsbB|unclassified	0.0641541296
+UniRef50_H6LML3	64.7000385773
+UniRef50_H6LML3|g__Staphylococcus.s__Staphylococcus_aureus	64.7000385773
+UniRef50_O69077: Aspartokinase	64.6822283468
+UniRef50_O69077: Aspartokinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.3642882403
+UniRef50_O69077: Aspartokinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.3179401065
+UniRef50_B9DKA9: Teichoic acid biosynthesis protein B	64.6714128794
+UniRef50_B9DKA9: Teichoic acid biosynthesis protein B|g__Staphylococcus.s__Staphylococcus_epidermidis	64.6714128794
+UniRef50_M7D2I2: Acetate kinase	64.6585271437
+UniRef50_M7D2I2: Acetate kinase|g__Streptococcus.s__Streptococcus_mutans	64.6585271437
+UniRef50_C9ABJ9: Fructose-6-phosphate aldolase	64.6456747873
+UniRef50_C9ABJ9: Fructose-6-phosphate aldolase|g__Streptococcus.s__Streptococcus_mutans	64.6456747873
+UniRef50_O33517: Protein translocase subunit SecD	64.6400064050
+UniRef50_O33517: Protein translocase subunit SecD|g__Rhodobacter.s__Rhodobacter_sphaeroides	64.6400064050
+UniRef50_Q039P7: tRNA-specific 2-thiouridylase MnmA	64.6398640074
+UniRef50_Q039P7: tRNA-specific 2-thiouridylase MnmA|g__Streptococcus.s__Streptococcus_mutans	55.1951066951
+UniRef50_Q039P7: tRNA-specific 2-thiouridylase MnmA|g__Acinetobacter.s__Acinetobacter_baumannii	5.8369644562
+UniRef50_Q039P7: tRNA-specific 2-thiouridylase MnmA|g__Streptococcus.s__Streptococcus_agalactiae	3.5658611641
+UniRef50_Q039P7: tRNA-specific 2-thiouridylase MnmA|unclassified	0.0419316920
+UniRef50_I4E028: Hydrolase homolog	64.6262276631
+UniRef50_I4E028: Hydrolase homolog|g__Streptococcus.s__Streptococcus_mutans	64.6262276631
+UniRef50_Q8CRZ4	64.6100234238
+UniRef50_Q8CRZ4|g__Staphylococcus.s__Staphylococcus_epidermidis	64.6100234238
+UniRef50_F7ZH46: Glutamate dehydrogenase	64.5846057817
+UniRef50_F7ZH46: Glutamate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	64.5846057817
+UniRef50_Q8CQE1: Galactosamine-containing minor teichoic acid biosynthesis protein	64.5790219151
+UniRef50_Q8CQE1: Galactosamine-containing minor teichoic acid biosynthesis protein|g__Staphylococcus.s__Staphylococcus_epidermidis	64.5790219151
+UniRef50_Q3K425: Chromosomal replication initiator protein DnaA	64.5491678467
+UniRef50_Q3K425: Chromosomal replication initiator protein DnaA|g__Streptococcus.s__Streptococcus_mutans	64.5491678467
+UniRef50_J9YQL3: DedA family protein	64.5352241428
+UniRef50_J9YQL3: DedA family protein|g__Streptococcus.s__Streptococcus_mutans	61.0569632732
+UniRef50_J9YQL3: DedA family protein|g__Streptococcus.s__Streptococcus_agalactiae	3.4782608696
+UniRef50_P71067: L-lactate permease	64.5196376023
+UniRef50_P71067: L-lactate permease|g__Escherichia.s__Escherichia_coli	55.9023992682
+UniRef50_P71067: L-lactate permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9807537763
+UniRef50_P71067: L-lactate permease|g__Acinetobacter.s__Acinetobacter_baumannii	2.8660685332
+UniRef50_P71067: L-lactate permease|g__Deinococcus.s__Deinococcus_radiodurans	0.7704160247
+UniRef50_P0A1I8: Flagellar basal-body rod protein FlgC	64.4598916618
+UniRef50_P0A1I8: Flagellar basal-body rod protein FlgC|g__Pseudomonas.s__Pseudomonas_aeruginosa	50.3663003663
+UniRef50_P0A1I8: Flagellar basal-body rod protein FlgC|g__Escherichia.s__Escherichia_coli	14.0935912955
+UniRef50_A3PJJ8	64.4575448782
+UniRef50_A3PJJ8|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.2011883345
+UniRef50_A3PJJ8|unclassified	3.2563565437
+UniRef50_I7DHA8	64.4458021686
+UniRef50_I7DHA8|g__Rhodobacter.s__Rhodobacter_sphaeroides	62.7391279344
+UniRef50_I7DHA8|unclassified	1.7066742342
+UniRef50_P33570: Transketolase 2	64.4213848209
+UniRef50_P33570: Transketolase 2|g__Escherichia.s__Escherichia_coli	63.6844792643
+UniRef50_P33570: Transketolase 2|unclassified	0.7369055566
+UniRef50_A7GTX6: Pseudouridine synthase	64.4156757450
+UniRef50_A7GTX6: Pseudouridine synthase|g__Staphylococcus.s__Staphylococcus_aureus	64.4156757450
+UniRef50_A4WQH4	64.3932832067
+UniRef50_A4WQH4|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.6920168683
+UniRef50_A4WQH4|unclassified	31.7012663384
+UniRef50_UPI000382BE44: hypothetical protein	64.3906026534
+UniRef50_UPI000382BE44: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.5547570645
+UniRef50_UPI000382BE44: hypothetical protein|unclassified	7.8358455889
+UniRef50_C5N3T8	64.3895110641
+UniRef50_C5N3T8|g__Staphylococcus.s__Staphylococcus_aureus	64.3895110641
+UniRef50_Q5X9H7: Holliday junction ATP-dependent DNA helicase RuvA	64.3888969942
+UniRef50_Q5X9H7: Holliday junction ATP-dependent DNA helicase RuvA|g__Streptococcus.s__Streptococcus_mutans	56.4715593668
+UniRef50_Q5X9H7: Holliday junction ATP-dependent DNA helicase RuvA|g__Streptococcus.s__Streptococcus_agalactiae	7.9173376275
+UniRef50_Q9UZU7: Phosphate import ATP-binding protein PstB	64.3875952400
+UniRef50_Q9UZU7: Phosphate import ATP-binding protein PstB|g__Streptococcus.s__Streptococcus_mutans	63.0270292834
+UniRef50_Q9UZU7: Phosphate import ATP-binding protein PstB|g__Propionibacterium.s__Propionibacterium_acnes	1.2919896641
+UniRef50_Q9UZU7: Phosphate import ATP-binding protein PstB|unclassified	0.0685762925
+UniRef50_I6U4E4	64.3814830965
+UniRef50_I6U4E4|g__Streptococcus.s__Streptococcus_mutans	64.3814830965
+UniRef50_J1B0P3	64.3790010816
+UniRef50_J1B0P3|g__Staphylococcus.s__Staphylococcus_epidermidis	64.3790010816
+UniRef50_Q5HG20: Diaminopimelate decarboxylase	64.3195349783
+UniRef50_Q5HG20: Diaminopimelate decarboxylase|g__Staphylococcus.s__Staphylococcus_aureus	64.1603026241
+UniRef50_Q5HG20: Diaminopimelate decarboxylase|unclassified	0.1592323543
+UniRef50_A9MIT8	64.3085657180
+UniRef50_A9MIT8|g__Escherichia.s__Escherichia_coli	64.3085657180
+UniRef50_D2N3E8	64.2840904130
+UniRef50_D2N3E8|g__Staphylococcus.s__Staphylococcus_aureus	63.9923194196
+UniRef50_D2N3E8|unclassified	0.2917709934
+UniRef50_C1C967: N-(5'-phosphoribosyl)anthranilate isomerase	64.2766169844
+UniRef50_C1C967: N-(5'-phosphoribosyl)anthranilate isomerase|g__Streptococcus.s__Streptococcus_mutans	64.2766169844
+UniRef50_Q4L449: Putative antiporter subunit mnhG2	64.2654494094
+UniRef50_Q4L449: Putative antiporter subunit mnhG2|g__Staphylococcus.s__Staphylococcus_epidermidis	64.2654494094
+UniRef50_A5ULS3: Phosphoglycolate phosphatase	64.2564554456
+UniRef50_A5ULS3: Phosphoglycolate phosphatase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	64.2564554456
+UniRef50_A7X5E2: 30S ribosomal protein S8	64.2336834583
+UniRef50_A7X5E2: 30S ribosomal protein S8|g__Staphylococcus.s__Staphylococcus_aureus	32.9018782559
+UniRef50_A7X5E2: 30S ribosomal protein S8|g__Staphylococcus.s__Staphylococcus_epidermidis	31.3318052024
+UniRef50_C0MDU1: Response regulator protein	64.2190191702
+UniRef50_C0MDU1: Response regulator protein|g__Streptococcus.s__Streptococcus_mutans	64.2190191702
+UniRef50_Q06172: Flagellar basal-body rod protein FlgG	64.1675878427
+UniRef50_Q06172: Flagellar basal-body rod protein FlgG|g__Rhodobacter.s__Rhodobacter_sphaeroides	64.1675878427
+UniRef50_Q3IXU4: Transcriptional regulator, IclR family/MhpR	64.1630741628
+UniRef50_Q3IXU4: Transcriptional regulator, IclR family/MhpR|g__Rhodobacter.s__Rhodobacter_sphaeroides	64.1630741628
+UniRef50_D5APK9: DMSO/TMAO-sensor hybrid histidine kinase	64.1612451177
+UniRef50_D5APK9: DMSO/TMAO-sensor hybrid histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	64.1612451177
+UniRef50_Q1J5E1: Glycine--tRNA ligase beta subunit	64.1531123887
+UniRef50_Q1J5E1: Glycine--tRNA ligase beta subunit|g__Streptococcus.s__Streptococcus_mutans	60.0254560533
+UniRef50_Q1J5E1: Glycine--tRNA ligase beta subunit|g__Streptococcus.s__Streptococcus_agalactiae	4.1063165597
+UniRef50_Q1J5E1: Glycine--tRNA ligase beta subunit|unclassified	0.0213397757
+UniRef50_R9D0K7	64.1367806505
+UniRef50_R9D0K7|unclassified	64.1367806505
+UniRef50_Q5HKC3: Membrane protein, putative	64.1179117335
+UniRef50_Q5HKC3: Membrane protein, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	64.1179117335
+UniRef50_Q8TRP1: Carbonic anhydrase/acetyltransferase isoleucine patch superfamily protein	64.1167682006
+UniRef50_Q8TRP1: Carbonic anhydrase/acetyltransferase isoleucine patch superfamily protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	64.1167682006
+UniRef50_P58118: Protein translocase subunit SecY	64.1040701598
+UniRef50_P58118: Protein translocase subunit SecY|g__Streptococcus.s__Streptococcus_mutans	60.8132339616
+UniRef50_P58118: Protein translocase subunit SecY|g__Streptococcus.s__Streptococcus_agalactiae	3.2908361982
+UniRef50_Q82Z40: DNA-directed RNA polymerase subunit beta	64.0837918918
+UniRef50_Q82Z40: DNA-directed RNA polymerase subunit beta|g__Streptococcus.s__Streptococcus_mutans	64.0049858286
+UniRef50_Q82Z40: DNA-directed RNA polymerase subunit beta|unclassified	0.0788060632
+UniRef50_B9KT87: Periplasmic sensor signal transduction histidine kinase	64.0824540088
+UniRef50_B9KT87: Periplasmic sensor signal transduction histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	64.0824540088
+UniRef50_F0VS50: Peptide/nickel transport system substrate-binding protein	64.0714087669
+UniRef50_F0VS50: Peptide/nickel transport system substrate-binding protein|g__Streptococcus.s__Streptococcus_mutans	61.3072045866
+UniRef50_F0VS50: Peptide/nickel transport system substrate-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	2.7642041802
+UniRef50_A1B0E4: Membrane protein insertase YidC	64.0540457816
+UniRef50_A1B0E4: Membrane protein insertase YidC|g__Rhodobacter.s__Rhodobacter_sphaeroides	64.0540457816
+UniRef50_R5I2I4: Phospho-2-dehydro-3-deoxyheptonate aldolase	64.0047900238
+UniRef50_R5I2I4: Phospho-2-dehydro-3-deoxyheptonate aldolase|g__Streptococcus.s__Streptococcus_mutans	45.9707657093
+UniRef50_R5I2I4: Phospho-2-dehydro-3-deoxyheptonate aldolase|g__Clostridium.s__Clostridium_beijerinckii	15.4184081660
+UniRef50_R5I2I4: Phospho-2-dehydro-3-deoxyheptonate aldolase|g__Streptococcus.s__Streptococcus_agalactiae	2.6156161485
+UniRef50_Q3IV58: Site-specific recombinase and resolvase superfamily	64.0028142829
+UniRef50_Q3IV58: Site-specific recombinase and resolvase superfamily|g__Rhodobacter.s__Rhodobacter_sphaeroides	64.0028142829
+UniRef50_B9KWL8: Periplasmic glucan biosynthesis protein, MdoG	63.9944339225
+UniRef50_B9KWL8: Periplasmic glucan biosynthesis protein, MdoG|g__Rhodobacter.s__Rhodobacter_sphaeroides	63.9944339225
+UniRef50_J0NEL3	63.9912072112
+UniRef50_J0NEL3|g__Staphylococcus.s__Staphylococcus_epidermidis	63.9912072112
+UniRef50_Q8DSS6	63.9852224947
+UniRef50_Q8DSS6|g__Streptococcus.s__Streptococcus_mutans	63.9852224947
+UniRef50_R9YQA3	63.9767263437
+UniRef50_R9YQA3|g__Staphylococcus.s__Staphylococcus_aureus	63.9767263437
+UniRef50_Q98H85: Cation efflux system protein	63.9732702309
+UniRef50_Q98H85: Cation efflux system protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	63.9732702309
+UniRef50_Q5WEL9: Glutamate racemase	63.9401323940
+UniRef50_Q5WEL9: Glutamate racemase|g__Staphylococcus.s__Staphylococcus_aureus	63.9401323940
+UniRef50_P12758: Uridine phosphorylase	63.9350098881
+UniRef50_P12758: Uridine phosphorylase|g__Escherichia.s__Escherichia_coli	63.9350098881
+UniRef50_Q74I62: Putative ABC transporter ATP-binding protein LJ_1704	63.9286943771
+UniRef50_Q74I62: Putative ABC transporter ATP-binding protein LJ_1704|g__Streptococcus.s__Streptococcus_mutans	59.7241283079
+UniRef50_Q74I62: Putative ABC transporter ATP-binding protein LJ_1704|g__Streptococcus.s__Streptococcus_agalactiae	4.2045660692
+UniRef50_P0AB10	63.9276982190
+UniRef50_P0AB10|g__Escherichia.s__Escherichia_coli	63.9276982190
+UniRef50_Q4L629: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	63.9052248991
+UniRef50_Q4L629: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	63.9052248991
+UniRef50_Q3IVN6	63.8798192672
+UniRef50_Q3IVN6|unclassified	59.8957555222
+UniRef50_Q3IVN6|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.9840637450
+UniRef50_G8P8U5: Transporter	63.8474985345
+UniRef50_G8P8U5: Transporter|g__Streptococcus.s__Streptococcus_mutans	48.2140125316
+UniRef50_G8P8U5: Transporter|g__Streptococcus.s__Streptococcus_agalactiae	15.6334860029
+UniRef50_F5ZH83: Phosphohydrolase	63.8251484453
+UniRef50_F5ZH83: Phosphohydrolase|g__Streptococcus.s__Streptococcus_mutans	63.8251484453
+UniRef50_P42505: Trans-acting regulatory protein HvrA	63.8170371983
+UniRef50_P42505: Trans-acting regulatory protein HvrA|g__Rhodobacter.s__Rhodobacter_sphaeroides	63.8170371983
+UniRef50_A4X0H4	63.8145802296
+UniRef50_A4X0H4|unclassified	63.8145802296
+UniRef50_C5BV15: Mandelate racemase/muconate lactonizing protein	63.7670706962
+UniRef50_C5BV15: Mandelate racemase/muconate lactonizing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	63.7670706962
+UniRef50_D6SHJ8: Bacterial membrane protein YfhO	63.7099902225
+UniRef50_D6SHJ8: Bacterial membrane protein YfhO|g__Staphylococcus.s__Staphylococcus_epidermidis	63.7099902225
+UniRef50_P77183	63.7070638615
+UniRef50_P77183|g__Escherichia.s__Escherichia_coli	58.8761459871
+UniRef50_P77183|g__Staphylococcus.s__Staphylococcus_aureus	4.8309178744
+UniRef50_Q3J2S1	63.7052342102
+UniRef50_Q3J2S1|g__Rhodobacter.s__Rhodobacter_sphaeroides	63.7052342102
+UniRef50_Q8E2G3: Phosphoribosylformylglycinamidine synthase, putative	63.6816012068
+UniRef50_Q8E2G3: Phosphoribosylformylglycinamidine synthase, putative|g__Streptococcus.s__Streptococcus_mutans	60.1401571181
+UniRef50_Q8E2G3: Phosphoribosylformylglycinamidine synthase, putative|g__Streptococcus.s__Streptococcus_agalactiae	3.5414440887
+UniRef50_Q5HRM1: Putative TrmH family tRNA/rRNA methyltransferase	63.6675043201
+UniRef50_Q5HRM1: Putative TrmH family tRNA/rRNA methyltransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	63.6675043201
+UniRef50_A3CM87: Cation-transporting ATPase, E1-E 2 family, putative	63.6523091502
+UniRef50_A3CM87: Cation-transporting ATPase, E1-E 2 family, putative|g__Streptococcus.s__Streptococcus_mutans	60.6651792123
+UniRef50_A3CM87: Cation-transporting ATPase, E1-E 2 family, putative|g__Streptococcus.s__Streptococcus_agalactiae	2.9871299379
+UniRef50_P76632: CRISPR system Cascade subunit CasB	63.6453071695
+UniRef50_P76632: CRISPR system Cascade subunit CasB|g__Escherichia.s__Escherichia_coli	63.6453071695
+UniRef50_B9KL58: 5-oxoprolinase	63.6243146968
+UniRef50_B9KL58: 5-oxoprolinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	63.6243146968
+UniRef50_X5DRJ8: Phosphate ABC transporter, permease protein PstA	63.6158779920
+UniRef50_X5DRJ8: Phosphate ABC transporter, permease protein PstA|g__Staphylococcus.s__Staphylococcus_aureus	63.6158779920
+UniRef50_B9EAQ4: Oligopeptide ABC transporter ATP-binding protein OppF	63.6120116729
+UniRef50_B9EAQ4: Oligopeptide ABC transporter ATP-binding protein OppF|g__Staphylococcus.s__Staphylococcus_aureus	63.6120116729
+UniRef50_Q71YA8: 4-hydroxy-tetrahydrodipicolinate reductase	63.6072716667
+UniRef50_Q71YA8: 4-hydroxy-tetrahydrodipicolinate reductase|g__Streptococcus.s__Streptococcus_mutans	63.6072716667
+UniRef50_B9KJR9	63.6063697957
+UniRef50_B9KJR9|unclassified	63.6063697957
+UniRef50_Q49YE7	63.5940454325
+UniRef50_Q49YE7|g__Staphylococcus.s__Staphylococcus_aureus	63.5940454325
+UniRef50_Q2YX06: Serine protease HtrA-like	63.5662222975
+UniRef50_Q2YX06: Serine protease HtrA-like|g__Staphylococcus.s__Staphylococcus_aureus	63.5662222975
+UniRef50_Q5HNV7: ComE operon protein 1, putative	63.5621600911
+UniRef50_Q5HNV7: ComE operon protein 1, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	63.5621600911
+UniRef50_P37147: UPF0716 protein FxsA	63.5479522614
+UniRef50_P37147: UPF0716 protein FxsA|g__Escherichia.s__Escherichia_coli	63.5479522614
+UniRef50_R4Z8G3: Glycogen debranching protein	63.4480923837
+UniRef50_R4Z8G3: Glycogen debranching protein|g__Streptococcus.s__Streptococcus_mutans	58.4776972045
+UniRef50_R4Z8G3: Glycogen debranching protein|g__Streptococcus.s__Streptococcus_agalactiae	4.9703951792
+UniRef50_T0V0U2: Cell division initiation protein DivIVA	63.4387935984
+UniRef50_T0V0U2: Cell division initiation protein DivIVA|g__Streptococcus.s__Streptococcus_mutans	60.0023674816
+UniRef50_T0V0U2: Cell division initiation protein DivIVA|g__Streptococcus.s__Streptococcus_agalactiae	3.4364261168
+UniRef50_Q8H883: Putataive InsB from Escherichia coli	63.4302298372
+UniRef50_Q8H883: Putataive InsB from Escherichia coli|g__Escherichia.s__Escherichia_coli	63.4302298372
+UniRef50_P33218: Inner membrane protein YebE	63.4148805180
+UniRef50_P33218: Inner membrane protein YebE|g__Escherichia.s__Escherichia_coli	63.4148805180
+UniRef50_Q1C1V0: Regulator of sigma D	63.3880686639
+UniRef50_Q1C1V0: Regulator of sigma D|g__Escherichia.s__Escherichia_coli	63.3880686639
+UniRef50_I3TQH5: HNH endonuclease family protein	63.3750794362
+UniRef50_I3TQH5: HNH endonuclease family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	63.3750794362
+UniRef50_Q2S8H5: 3-hydroxydecanoyl-[acyl-carrier-protein] dehydratase	63.3345643694
+UniRef50_Q2S8H5: 3-hydroxydecanoyl-[acyl-carrier-protein] dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	62.9272168222
+UniRef50_Q2S8H5: 3-hydroxydecanoyl-[acyl-carrier-protein] dehydratase|unclassified	0.4073475472
+UniRef50_X9N846	63.3096803846
+UniRef50_X9N846|g__Staphylococcus.s__Staphylococcus_aureus	62.9735630634
+UniRef50_X9N846|unclassified	0.3361173212
+UniRef50_Q5HMY5: Accessory gene regulator protein B	63.2829195118
+UniRef50_Q5HMY5: Accessory gene regulator protein B|g__Staphylococcus.s__Staphylococcus_epidermidis	63.0269095274
+UniRef50_Q5HMY5: Accessory gene regulator protein B|unclassified	0.2560099844
+UniRef50_B2TY69: L-ribulose-5-phosphate 3-epimerase UlaE	63.2664291439
+UniRef50_B2TY69: L-ribulose-5-phosphate 3-epimerase UlaE|g__Escherichia.s__Escherichia_coli	62.8322531892
+UniRef50_B2TY69: L-ribulose-5-phosphate 3-epimerase UlaE|unclassified	0.4341759547
+UniRef50_Q8DSG3: Aspartate--tRNA(Asp/Asn) ligase	63.2527443357
+UniRef50_Q8DSG3: Aspartate--tRNA(Asp/Asn) ligase|g__Streptococcus.s__Streptococcus_mutans	63.2527443357
+UniRef50_Q67Q92: Queuine tRNA-ribosyltransferase	63.1759678290
+UniRef50_Q67Q92: Queuine tRNA-ribosyltransferase|g__Streptococcus.s__Streptococcus_mutans	53.7630895253
+UniRef50_Q67Q92: Queuine tRNA-ribosyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	7.3319503069
+UniRef50_Q67Q92: Queuine tRNA-ribosyltransferase|g__Clostridium.s__Clostridium_beijerinckii	2.0319288361
+UniRef50_Q67Q92: Queuine tRNA-ribosyltransferase|unclassified	0.0489991608
+UniRef50_Q8CU74	63.1588458342
+UniRef50_Q8CU74|g__Staphylococcus.s__Staphylococcus_aureus	56.8307983890
+UniRef50_Q8CU74|g__Staphylococcus.s__Staphylococcus_epidermidis	6.3280474453
+UniRef50_Q8YJ91: Chaperone protein ClpB	63.1324259605
+UniRef50_Q8YJ91: Chaperone protein ClpB|g__Rhodobacter.s__Rhodobacter_sphaeroides	63.1324259605
+UniRef50_I6SW45: Enoyl-ACP reductase	63.1273496997
+UniRef50_I6SW45: Enoyl-ACP reductase|g__Streptococcus.s__Streptococcus_mutans	63.1273496997
+UniRef50_P19779	63.1214261759
+UniRef50_P19779|g__Escherichia.s__Escherichia_coli	63.1214261759
+UniRef50_I6T5E5: Transcriptional regulator	63.0736110433
+UniRef50_I6T5E5: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	63.0736110433
+UniRef50_Q8CU97	63.0311824418
+UniRef50_Q8CU97|unclassified	63.0311824418
+UniRef50_S6BC90	63.0193262515
+UniRef50_S6BC90|g__Streptococcus.s__Streptococcus_mutans	62.9281742357
+UniRef50_S6BC90|unclassified	0.0911520158
+UniRef50_Q8CN73: Nitrate reductase delta chain	63.0127916750
+UniRef50_Q8CN73: Nitrate reductase delta chain|g__Staphylococcus.s__Staphylococcus_epidermidis	63.0127916750
+UniRef50_Q3IVA6: Mannose-1-phosphate guanylyltransferase (GDP) mannose-6-phosphate isomerase, type 2	62.9411213717
+UniRef50_Q3IVA6: Mannose-1-phosphate guanylyltransferase (GDP) mannose-6-phosphate isomerase, type 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	62.9411213717
+UniRef50_Q9KTK8: tRNA sulfurtransferase	62.9384623137
+UniRef50_Q9KTK8: tRNA sulfurtransferase|g__Staphylococcus.s__Staphylococcus_epidermidis	35.5596784168
+UniRef50_Q9KTK8: tRNA sulfurtransferase|g__Escherichia.s__Escherichia_coli	27.3787838969
+UniRef50_G8PSU5: (2Fe-2S)-binding domain protein	62.9293883763
+UniRef50_G8PSU5: (2Fe-2S)-binding domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	62.9293883763
+UniRef50_A7ZSA7: Monofunctional biosynthetic peptidoglycan transglycosylase	62.8968444492
+UniRef50_A7ZSA7: Monofunctional biosynthetic peptidoglycan transglycosylase|g__Escherichia.s__Escherichia_coli	62.8269242203
+UniRef50_A7ZSA7: Monofunctional biosynthetic peptidoglycan transglycosylase|unclassified	0.0699202288
+UniRef50_P45595: Phosphoenolpyruvate-protein phosphotransferase	62.8951442342
+UniRef50_P45595: Phosphoenolpyruvate-protein phosphotransferase|g__Streptococcus.s__Streptococcus_mutans	59.2172500985
+UniRef50_P45595: Phosphoenolpyruvate-protein phosphotransferase|g__Streptococcus.s__Streptococcus_agalactiae	3.0298059956
+UniRef50_P45595: Phosphoenolpyruvate-protein phosphotransferase|g__Clostridium.s__Clostridium_beijerinckii	0.6480881400
+UniRef50_R9SJH3: MATE efflux family protein	62.8819648940
+UniRef50_R9SJH3: MATE efflux family protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	62.8819648940
+UniRef50_A8FEQ2: Pseudouridine synthase	62.8645028729
+UniRef50_A8FEQ2: Pseudouridine synthase|g__Streptococcus.s__Streptococcus_mutans	59.7970182103
+UniRef50_A8FEQ2: Pseudouridine synthase|g__Streptococcus.s__Streptococcus_agalactiae	3.0674846626
+UniRef50_Q8DXP9: Transcriptional antiterminator, BglG family	62.8547030732
+UniRef50_Q8DXP9: Transcriptional antiterminator, BglG family|g__Streptococcus.s__Streptococcus_mutans	60.2818968388
+UniRef50_Q8DXP9: Transcriptional antiterminator, BglG family|g__Streptococcus.s__Streptococcus_agalactiae	2.5728062344
+UniRef50_A5UNR7: DNA intergrase/recombinase, phage integrase family	62.8401844144
+UniRef50_A5UNR7: DNA intergrase/recombinase, phage integrase family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	62.8401844144
+UniRef50_B4U3D2: Glycerol-3-phosphate acyltransferase	62.7771069273
+UniRef50_B4U3D2: Glycerol-3-phosphate acyltransferase|g__Streptococcus.s__Streptococcus_mutans	61.2121617004
+UniRef50_B4U3D2: Glycerol-3-phosphate acyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	1.5649452269
+UniRef50_P31434: Alpha-xylosidase	62.7479896411
+UniRef50_P31434: Alpha-xylosidase|g__Escherichia.s__Escherichia_coli	62.7479896411
+UniRef50_B4U5I2: Cationic amino acid transporter-APC superfamily	62.7432818079
+UniRef50_B4U5I2: Cationic amino acid transporter-APC superfamily|g__Streptococcus.s__Streptococcus_mutans	62.7432818079
+UniRef50_A4WWM3: Outer membrane lipoprotein carrier protein LolA	62.7358239127
+UniRef50_A4WWM3: Outer membrane lipoprotein carrier protein LolA|g__Rhodobacter.s__Rhodobacter_sphaeroides	62.7358239127
+UniRef50_P30744: L-serine dehydratase 2	62.7269711708
+UniRef50_P30744: L-serine dehydratase 2|g__Escherichia.s__Escherichia_coli	62.6179250655
+UniRef50_P30744: L-serine dehydratase 2|unclassified	0.1090461054
+UniRef50_G0LV60: Integrase	62.6926412750
+UniRef50_G0LV60: Integrase|g__Staphylococcus.s__Staphylococcus_aureus	62.6926412750
+UniRef50_F8I069: Spermidine/putrescine-binding periplasmic protein	62.6343718669
+UniRef50_F8I069: Spermidine/putrescine-binding periplasmic protein|g__Streptococcus.s__Streptococcus_mutans	61.6927522812
+UniRef50_F8I069: Spermidine/putrescine-binding periplasmic protein|g__Streptococcus.s__Streptococcus_agalactiae	0.9416195857
+UniRef50_G6KV35: Leucyl-tRNA synthetase	62.6285943230
+UniRef50_G6KV35: Leucyl-tRNA synthetase|g__Streptococcus.s__Streptococcus_mutans	62.6285943230
+UniRef50_Q5HNS1: Histidine--tRNA ligase	62.6283189631
+UniRef50_Q5HNS1: Histidine--tRNA ligase|g__Staphylococcus.s__Staphylococcus_epidermidis	62.4258564034
+UniRef50_Q5HNS1: Histidine--tRNA ligase|unclassified	0.2024625597
+UniRef50_A3PRE1	62.6000541292
+UniRef50_A3PRE1|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.8027571609
+UniRef50_A3PRE1|unclassified	0.7972969683
+UniRef50_Q9PDT8: Enolase	62.5937507671
+UniRef50_Q9PDT8: Enolase|g__Streptococcus.s__Streptococcus_mutans	40.6880960669
+UniRef50_Q9PDT8: Enolase|g__Escherichia.s__Escherichia_coli	9.9638988533
+UniRef50_Q9PDT8: Enolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6103887825
+UniRef50_Q9PDT8: Enolase|g__Acinetobacter.s__Acinetobacter_baumannii	2.9289504138
+UniRef50_Q9PDT8: Enolase|g__Neisseria.s__Neisseria_meningitidis	1.2610340479
+UniRef50_Q9PDT8: Enolase|g__Streptococcus.s__Streptococcus_agalactiae	1.0582010582
+UniRef50_Q9PDT8: Enolase|unclassified	0.0831815445
+UniRef50_Q8CU59	62.5876545175
+UniRef50_Q8CU59|g__Staphylococcus.s__Staphylococcus_epidermidis	62.3723918307
+UniRef50_Q8CU59|unclassified	0.2152626869
+UniRef50_T1YAI5: Nitrogen regulation protein NIFR3	62.5641265830
+UniRef50_T1YAI5: Nitrogen regulation protein NIFR3|g__Staphylococcus.s__Staphylococcus_aureus	62.5641265830
+UniRef50_Q8CTT3	62.5000000000
+UniRef50_Q8CTT3|g__Staphylococcus.s__Staphylococcus_epidermidis	62.5000000000
+UniRef50_Q49YF5: OsmC-like protein	62.4889411106
+UniRef50_Q49YF5: OsmC-like protein|g__Staphylococcus.s__Staphylococcus_aureus	62.4889411106
+UniRef50_L7WVM5	62.4790272874
+UniRef50_L7WVM5|g__Staphylococcus.s__Staphylococcus_aureus	57.3571784377
+UniRef50_L7WVM5|g__Staphylococcus.s__Staphylococcus_epidermidis	5.1218488497
+UniRef50_A1B1U3: Magnesium transporter	62.4576954731
+UniRef50_A1B1U3: Magnesium transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	62.4576954731
+UniRef50_Q1R011: 3-octaprenyl-4-hydroxybenzoate carboxy-lyase	62.4404827697
+UniRef50_Q1R011: 3-octaprenyl-4-hydroxybenzoate carboxy-lyase|g__Escherichia.s__Escherichia_coli	62.3830340315
+UniRef50_Q1R011: 3-octaprenyl-4-hydroxybenzoate carboxy-lyase|unclassified	0.0574487382
+UniRef50_C7C7I3	62.4226087008
+UniRef50_C7C7I3|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.8839831750
+UniRef50_C7C7I3|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3814968401
+UniRef50_C7C7I3|unclassified	0.1571286857
+UniRef50_Q9AHT6: Pneumococcal vaccine antigen A	62.4065924828
+UniRef50_Q9AHT6: Pneumococcal vaccine antigen A|g__Streptococcus.s__Streptococcus_mutans	62.4065924828
+UniRef50_P95784: ATP synthase subunit a	62.3890298692
+UniRef50_P95784: ATP synthase subunit a|g__Streptococcus.s__Streptococcus_mutans	62.3890298692
+UniRef50_P37079: Sorbitol-6-phosphate 2-dehydrogenase	62.3870400328
+UniRef50_P37079: Sorbitol-6-phosphate 2-dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	62.3870400328
+UniRef50_I6U0D0: Recombination factor protein RarA	62.3831047870
+UniRef50_I6U0D0: Recombination factor protein RarA|g__Streptococcus.s__Streptococcus_mutans	62.3831047870
+UniRef50_M7DZA1: Transcriptional regulator	62.3753373359
+UniRef50_M7DZA1: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	62.3753373359
+UniRef50_Q99Y73: Endonuclease MutS2	62.3655621518
+UniRef50_Q99Y73: Endonuclease MutS2|g__Streptococcus.s__Streptococcus_mutans	62.3438786073
+UniRef50_Q99Y73: Endonuclease MutS2|unclassified	0.0216835445
+UniRef50_R9TX51: YlmE	62.3570902520
+UniRef50_R9TX51: YlmE|g__Staphylococcus.s__Staphylococcus_aureus	62.2080314135
+UniRef50_R9TX51: YlmE|unclassified	0.1490588386
+UniRef50_E7PVL4: ATP-dependent RNA helicase	62.3538931674
+UniRef50_E7PVL4: ATP-dependent RNA helicase|g__Streptococcus.s__Streptococcus_mutans	62.3538931674
+UniRef50_Q57NU9: GTP cyclohydrolase-2	62.3488399695
+UniRef50_Q57NU9: GTP cyclohydrolase-2|g__Escherichia.s__Escherichia_coli	45.2570359998
+UniRef50_Q57NU9: GTP cyclohydrolase-2|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.0918039696
+UniRef50_Q5QCP2: Carboxynorspermidine/carboxyspermidine decarboxylase	62.3086444880
+UniRef50_Q5QCP2: Carboxynorspermidine/carboxyspermidine decarboxylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	60.2675056301
+UniRef50_Q5QCP2: Carboxynorspermidine/carboxyspermidine decarboxylase|unclassified	2.0411388579
+UniRef50_Q0C161: Methionine--tRNA ligase	62.3018587817
+UniRef50_Q0C161: Methionine--tRNA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	62.2017799988
+UniRef50_Q0C161: Methionine--tRNA ligase|unclassified	0.1000787829
+UniRef50_D2ZNL5	62.3016406238
+UniRef50_D2ZNL5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	62.3016406238
+UniRef50_U3SQI4: Putative glutathione reductase	62.2999133699
+UniRef50_U3SQI4: Putative glutathione reductase|g__Streptococcus.s__Streptococcus_mutans	62.2999133699
+UniRef50_Q8Y270: Aspartate--tRNA(Asp/Asn) ligase	62.2902088455
+UniRef50_Q8Y270: Aspartate--tRNA(Asp/Asn) ligase|g__Streptococcus.s__Streptococcus_mutans	57.2253803992
+UniRef50_Q8Y270: Aspartate--tRNA(Asp/Asn) ligase|g__Acinetobacter.s__Acinetobacter_baumannii	5.0309427515
+UniRef50_Q8Y270: Aspartate--tRNA(Asp/Asn) ligase|unclassified	0.0338856949
+UniRef50_A7IKH6: Chitin deacetylase	62.2891091688
+UniRef50_A7IKH6: Chitin deacetylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	62.2891091688
+UniRef50_A4WNW7: IS66 Orf2 family protein	62.2751188651
+UniRef50_A4WNW7: IS66 Orf2 family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.7019989023
+UniRef50_A4WNW7: IS66 Orf2 family protein|unclassified	0.5731199628
+UniRef50_X4ZFB4	62.2647118173
+UniRef50_X4ZFB4|g__Streptococcus.s__Streptococcus_mutans	57.6379723475
+UniRef50_X4ZFB4|g__Streptococcus.s__Streptococcus_agalactiae	4.6267394697
+UniRef50_I3THN5: ABC transporter, periplasmic solute-binding protein	62.2582343580
+UniRef50_I3THN5: ABC transporter, periplasmic solute-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	62.2582343580
+UniRef50_O68575: Pyruvate formate-lyase-activating enzyme	62.2505606902
+UniRef50_O68575: Pyruvate formate-lyase-activating enzyme|g__Streptococcus.s__Streptococcus_mutans	61.9162189797
+UniRef50_O68575: Pyruvate formate-lyase-activating enzyme|unclassified	0.3343417105
+UniRef50_T0U356: ABC transporter, ATP-binding/permease protein	62.2406800108
+UniRef50_T0U356: ABC transporter, ATP-binding/permease protein|g__Streptococcus.s__Streptococcus_mutans	62.2406800108
+UniRef50_O67161: Glyceraldehyde-3-phosphate dehydrogenase	62.2307323974
+UniRef50_O67161: Glyceraldehyde-3-phosphate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.6056296407
+UniRef50_O67161: Glyceraldehyde-3-phosphate dehydrogenase|unclassified	0.6251027567
+UniRef50_S9QSU8: DNA polymerase III, beta subunit	62.2249298417
+UniRef50_S9QSU8: DNA polymerase III, beta subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	62.2249298417
+UniRef50_C3FB78: Transposon Tn1546 resolvase	62.2025155472
+UniRef50_C3FB78: Transposon Tn1546 resolvase|unclassified	62.2025155472
+UniRef50_Q5HLR1	62.1943422318
+UniRef50_Q5HLR1|g__Staphylococcus.s__Staphylococcus_epidermidis	55.2977905077
+UniRef50_Q5HLR1|unclassified	6.8965517241
+UniRef50_O27596: Tungsten formylmethanofuran dehydrogenase, subunit H	62.1908453287
+UniRef50_O27596: Tungsten formylmethanofuran dehydrogenase, subunit H|g__Methanobrevibacter.s__Methanobrevibacter_smithii	62.1908453287
+UniRef50_Q5HNA3: Signal transduction protein TRAP	62.1853923794
+UniRef50_Q5HNA3: Signal transduction protein TRAP|g__Staphylococcus.s__Staphylococcus_aureus	44.7516765869
+UniRef50_Q5HNA3: Signal transduction protein TRAP|g__Staphylococcus.s__Staphylococcus_epidermidis	17.4337157925
+UniRef50_A3PG41	62.1693019648
+UniRef50_A3PG41|g__Rhodobacter.s__Rhodobacter_sphaeroides	62.1693019648
+UniRef50_P76319	62.1614056363
+UniRef50_P76319|g__Escherichia.s__Escherichia_coli	62.1614056363
+UniRef50_P77296	62.1237115156
+UniRef50_P77296|g__Escherichia.s__Escherichia_coli	61.4904859612
+UniRef50_P77296|unclassified	0.6332255544
+UniRef50_Q8DTW1	62.1234222307
+UniRef50_Q8DTW1|g__Streptococcus.s__Streptococcus_mutans	62.1234222307
+UniRef50_B9KS80	62.0981631343
+UniRef50_B9KS80|g__Rhodobacter.s__Rhodobacter_sphaeroides	58.5864841601
+UniRef50_B9KS80|unclassified	3.5116789742
+UniRef50_L7WZ17	62.0911885922
+UniRef50_L7WZ17|g__Staphylococcus.s__Staphylococcus_aureus	62.0911885922
+UniRef50_P95781: 8-oxo-dGTP diphosphatase	62.0908969874
+UniRef50_P95781: 8-oxo-dGTP diphosphatase|g__Streptococcus.s__Streptococcus_mutans	62.0908969874
+UniRef50_B9DRH4: Haloacid dehalogenase-like hydrolase	62.0786657933
+UniRef50_B9DRH4: Haloacid dehalogenase-like hydrolase|g__Streptococcus.s__Streptococcus_mutans	50.6263957572
+UniRef50_B9DRH4: Haloacid dehalogenase-like hydrolase|g__Streptococcus.s__Streptococcus_agalactiae	11.4522700361
+UniRef50_C7TN90: ABC transporter, amino acid-binding protein	62.0746990341
+UniRef50_C7TN90: ABC transporter, amino acid-binding protein|g__Streptococcus.s__Streptococcus_mutans	59.8330570572
+UniRef50_C7TN90: ABC transporter, amino acid-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	2.2416419770
+UniRef50_P0AES3: Glucarate dehydratase	62.0733679066
+UniRef50_P0AES3: Glucarate dehydratase|g__Escherichia.s__Escherichia_coli	56.3153520493
+UniRef50_P0AES3: Glucarate dehydratase|g__Acinetobacter.s__Acinetobacter_baumannii	5.3629474032
+UniRef50_P0AES3: Glucarate dehydratase|unclassified	0.3950684541
+UniRef50_Q04I02: Transcriptional regulator AdcR	62.0710064595
+UniRef50_Q04I02: Transcriptional regulator AdcR|g__Streptococcus.s__Streptococcus_mutans	62.0710064595
+UniRef50_Q3IV81	62.0657954614
+UniRef50_Q3IV81|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.5291068989
+UniRef50_Q3IV81|unclassified	4.5366885625
+UniRef50_I0C542: Glucosyltransferase (Side chain biosynthesis)	62.0524340191
+UniRef50_I0C542: Glucosyltransferase (Side chain biosynthesis)|g__Staphylococcus.s__Staphylococcus_aureus	62.0524340191
+UniRef50_Q720G3: Gamma-glutamyl phosphate reductase	62.0476981377
+UniRef50_Q720G3: Gamma-glutamyl phosphate reductase|g__Streptococcus.s__Streptococcus_mutans	56.1799458242
+UniRef50_Q720G3: Gamma-glutamyl phosphate reductase|g__Clostridium.s__Clostridium_beijerinckii	3.6971736801
+UniRef50_Q720G3: Gamma-glutamyl phosphate reductase|g__Streptococcus.s__Streptococcus_agalactiae	2.1705786333
+UniRef50_O32167: Methionine-binding lipoprotein MetQ	62.0412943414
+UniRef50_O32167: Methionine-binding lipoprotein MetQ|g__Staphylococcus.s__Staphylococcus_epidermidis	62.0412943414
+UniRef50_I6T4S9: Cation efflux pump (Multidrug resistance protein)	62.0333539711
+UniRef50_I6T4S9: Cation efflux pump (Multidrug resistance protein)|g__Streptococcus.s__Streptococcus_mutans	62.0333539711
+UniRef50_A8LLT3: Phosphate acyltransferase	62.0020822912
+UniRef50_A8LLT3: Phosphate acyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.7462153344
+UniRef50_A8LLT3: Phosphate acyltransferase|unclassified	0.2558669568
+UniRef50_M9RMB0: Amino acid ABC transporter permease protein	61.9539129790
+UniRef50_M9RMB0: Amino acid ABC transporter permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.9539129790
+UniRef50_P0AD05	61.9324127146
+UniRef50_P0AD05|g__Escherichia.s__Escherichia_coli	61.9324127146
+UniRef50_F9X2K4	61.9240833550
+UniRef50_F9X2K4|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.3571899309
+UniRef50_F9X2K4|g__Acinetobacter.s__Acinetobacter_baumannii	0.5668934240
+UniRef50_C5N6N4: Type I restriction modification DNA specificity domain protein	61.9194575541
+UniRef50_C5N6N4: Type I restriction modification DNA specificity domain protein|g__Staphylococcus.s__Staphylococcus_aureus	61.9194575541
+UniRef50_Q30TW1: 50S ribosomal protein L2	61.9142594933
+UniRef50_Q30TW1: 50S ribosomal protein L2|g__Streptococcus.s__Streptococcus_mutans	54.3906601009
+UniRef50_Q30TW1: 50S ribosomal protein L2|g__Streptococcus.s__Streptococcus_agalactiae	7.5235993925
+UniRef50_C7ZS00	61.9132742523
+UniRef50_C7ZS00|g__Staphylococcus.s__Staphylococcus_aureus	61.2701615888
+UniRef50_C7ZS00|unclassified	0.6431126635
+UniRef50_A1B5Z0: UPF0042 nucleotide-binding protein Pden_2850	61.8896279917
+UniRef50_A1B5Z0: UPF0042 nucleotide-binding protein Pden_2850|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.8896279917
+UniRef50_A3PP31	61.8618119066
+UniRef50_A3PP31|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.8618119066
+UniRef50_Q9Z3R7: Alpha-glucoside transport system permease protein AglG	61.8540027176
+UniRef50_Q9Z3R7: Alpha-glucoside transport system permease protein AglG|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.8540027176
+UniRef50_B9KSE1: MIP family channel proteins	61.8478391019
+UniRef50_B9KSE1: MIP family channel proteins|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.8478391019
+UniRef50_B5E2W4: Acetate kinase	61.8325724923
+UniRef50_B5E2W4: Acetate kinase|g__Streptococcus.s__Streptococcus_mutans	58.4272610659
+UniRef50_B5E2W4: Acetate kinase|g__Streptococcus.s__Streptococcus_agalactiae	3.4053114264
+UniRef50_D3E3S6: HisA/hisF family protein HisAF	61.8271533983
+UniRef50_D3E3S6: HisA/hisF family protein HisAF|g__Methanobrevibacter.s__Methanobrevibacter_smithii	61.8271533983
+UniRef50_G5JV69: Mannosyl-glycoprotein endo-beta-N-acetylglucosaminidase	61.7857676926
+UniRef50_G5JV69: Mannosyl-glycoprotein endo-beta-N-acetylglucosaminidase|g__Streptococcus.s__Streptococcus_mutans	61.7857676926
+UniRef50_D5ASZ5: Flagellar basal body-associated protein FliL-2	61.6718145372
+UniRef50_D5ASZ5: Flagellar basal body-associated protein FliL-2|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.6718145372
+UniRef50_D2N3H7	61.6629368593
+UniRef50_D2N3H7|g__Staphylococcus.s__Staphylococcus_aureus	61.6629368593
+UniRef50_A6W2Y5: Short-chain dehydrogenase/reductase SDR	61.6595765525
+UniRef50_A6W2Y5: Short-chain dehydrogenase/reductase SDR|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.6595765525
+UniRef50_U3AFI9: Urea ABC transporter, urea binding protein	61.6589694764
+UniRef50_U3AFI9: Urea ABC transporter, urea binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.6589694764
+UniRef50_M3I579: Valine--tRNA ligase	61.6397186935
+UniRef50_M3I579: Valine--tRNA ligase|g__Streptococcus.s__Streptococcus_mutans	61.2034185190
+UniRef50_M3I579: Valine--tRNA ligase|g__Streptococcus.s__Streptococcus_agalactiae	0.4363001745
+UniRef50_Q3B4E2: Bifunctional protein FolD	61.5979262814
+UniRef50_Q3B4E2: Bifunctional protein FolD|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.5284700376
+UniRef50_Q3B4E2: Bifunctional protein FolD|g__Streptococcus.s__Streptococcus_mutans	27.3632410960
+UniRef50_Q3B4E2: Bifunctional protein FolD|g__Neisseria.s__Neisseria_meningitidis	2.4881224162
+UniRef50_Q3B4E2: Bifunctional protein FolD|unclassified	0.2180927316
+UniRef50_Q58158: Type A flavoprotein FprA	61.5836843189
+UniRef50_Q58158: Type A flavoprotein FprA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	61.5836843189
+UniRef50_U5NRE3	61.5490448379
+UniRef50_U5NRE3|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.5490448379
+UniRef50_Q97PA9: Serine/threonine-protein kinase StkP	61.5316642201
+UniRef50_Q97PA9: Serine/threonine-protein kinase StkP|g__Streptococcus.s__Streptococcus_mutans	61.5063390209
+UniRef50_Q97PA9: Serine/threonine-protein kinase StkP|unclassified	0.0253251992
+UniRef50_F5X3Q6: PTS system, ascorbate-specific IIA component	61.5138616601
+UniRef50_F5X3Q6: PTS system, ascorbate-specific IIA component|g__Streptococcus.s__Streptococcus_mutans	56.8190259794
+UniRef50_F5X3Q6: PTS system, ascorbate-specific IIA component|g__Streptococcus.s__Streptococcus_agalactiae	4.6948356808
+UniRef50_E3EY08: Glutathionylspermidine synthase	61.4670491779
+UniRef50_E3EY08: Glutathionylspermidine synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.4670491779
+UniRef50_Q9CGF7: Oxygen-independent coproporphyrinogen-III oxidase-like protein LL1139	61.4634761962
+UniRef50_Q9CGF7: Oxygen-independent coproporphyrinogen-III oxidase-like protein LL1139|g__Streptococcus.s__Streptococcus_mutans	61.1823400378
+UniRef50_Q9CGF7: Oxygen-independent coproporphyrinogen-III oxidase-like protein LL1139|unclassified	0.2811361584
+UniRef50_I6TZB4: Bifunctional biotin--[acetyl-CoA-carboxylase] synthetase/biotin operon repressor	61.4536720490
+UniRef50_I6TZB4: Bifunctional biotin--[acetyl-CoA-carboxylase] synthetase/biotin operon repressor|g__Streptococcus.s__Streptococcus_mutans	60.3535620380
+UniRef50_I6TZB4: Bifunctional biotin--[acetyl-CoA-carboxylase] synthetase/biotin operon repressor|g__Streptococcus.s__Streptococcus_agalactiae	1.1001100110
+UniRef50_M2HJP8	61.4534187420
+UniRef50_M2HJP8|g__Streptococcus.s__Streptococcus_mutans	61.4534187420
+UniRef50_R7ESR9	61.4499503516
+UniRef50_R7ESR9|g__Streptococcus.s__Streptococcus_mutans	51.0274413854
+UniRef50_R7ESR9|g__Clostridium.s__Clostridium_beijerinckii	10.4225089662
+UniRef50_W0ISJ9: Sulfate/thiosulfate transporter subunit	61.4386280476
+UniRef50_W0ISJ9: Sulfate/thiosulfate transporter subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.4386280476
+UniRef50_A3CQQ7: Tributyrin esterase, putative	61.4328188181
+UniRef50_A3CQQ7: Tributyrin esterase, putative|g__Streptococcus.s__Streptococcus_mutans	59.5352856113
+UniRef50_A3CQQ7: Tributyrin esterase, putative|g__Streptococcus.s__Streptococcus_agalactiae	1.8975332068
+UniRef50_I6T5F3: Deoxyribonuclease	61.4285255206
+UniRef50_I6T5F3: Deoxyribonuclease|g__Streptococcus.s__Streptococcus_mutans	46.9698790221
+UniRef50_I6T5F3: Deoxyribonuclease|g__Streptococcus.s__Streptococcus_agalactiae	14.4586464985
+UniRef50_Q5LXV7: Late competence protein, ABC transporter subunit	61.4025614974
+UniRef50_Q5LXV7: Late competence protein, ABC transporter subunit|g__Streptococcus.s__Streptococcus_mutans	61.2307565784
+UniRef50_Q5LXV7: Late competence protein, ABC transporter subunit|unclassified	0.1718049190
+UniRef50_P0AFF4: Nucleoside permease NupG	61.3888400866
+UniRef50_P0AFF4: Nucleoside permease NupG|g__Escherichia.s__Escherichia_coli	61.3888400866
+UniRef50_F2JY03	61.3844479058
+UniRef50_F2JY03|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.3844479058
+UniRef50_A7HVU8: UDP-N-acetylmuramate--L-alanine ligase	61.3560973612
+UniRef50_A7HVU8: UDP-N-acetylmuramate--L-alanine ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.2044508849
+UniRef50_A7HVU8: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.1516464763
+UniRef50_Q88XV1: Energy-coupling factor transporter ATP-binding protein EcfA2	61.3078786394
+UniRef50_Q88XV1: Energy-coupling factor transporter ATP-binding protein EcfA2|g__Streptococcus.s__Streptococcus_mutans	61.2611973081
+UniRef50_Q88XV1: Energy-coupling factor transporter ATP-binding protein EcfA2|unclassified	0.0466813312
+UniRef50_Q5LSV7: Oligopeptide/dipeptide ABC transporter, periplasmic substrate-binding protein	61.2799666748
+UniRef50_Q5LSV7: Oligopeptide/dipeptide ABC transporter, periplasmic substrate-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.2799666748
+UniRef50_Q3HKF7: Transcriptional regulator, LysR family	61.2626239311
+UniRef50_Q3HKF7: Transcriptional regulator, LysR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.2626239311
+UniRef50_P60811: Foldase protein PrsA 1	61.2526842827
+UniRef50_P60811: Foldase protein PrsA 1|g__Streptococcus.s__Streptococcus_mutans	56.9788008766
+UniRef50_P60811: Foldase protein PrsA 1|g__Streptococcus.s__Streptococcus_agalactiae	4.2738834061
+UniRef50_I6TRN9	61.2502692035
+UniRef50_I6TRN9|g__Streptococcus.s__Streptococcus_mutans	61.2502692035
+UniRef50_V9W2G7: Nitrate reductase	61.2439228908
+UniRef50_V9W2G7: Nitrate reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.2439228908
+UniRef50_P0AAA0: Putative L,D-transpeptidase YafK	61.2206751421
+UniRef50_P0AAA0: Putative L,D-transpeptidase YafK|g__Escherichia.s__Escherichia_coli	60.6615156282
+UniRef50_P0AAA0: Putative L,D-transpeptidase YafK|unclassified	0.5591595139
+UniRef50_U3SSQ2: Two-component sensor histidine kinase	61.1938034851
+UniRef50_U3SSQ2: Two-component sensor histidine kinase|g__Streptococcus.s__Streptococcus_mutans	61.1938034851
+UniRef50_M9REP5: Penicillin-binding protein2	61.1916715785
+UniRef50_M9REP5: Penicillin-binding protein2|g__Rhodobacter.s__Rhodobacter_sphaeroides	61.1916715785
+UniRef50_P39160: D-mannonate oxidoreductase	61.0716813325
+UniRef50_P39160: D-mannonate oxidoreductase|g__Escherichia.s__Escherichia_coli	61.0480315871
+UniRef50_P39160: D-mannonate oxidoreductase|unclassified	0.0236497454
+UniRef50_B2INS9: Hydrolase, haloacid dehalogenase-like family	61.0230285287
+UniRef50_B2INS9: Hydrolase, haloacid dehalogenase-like family|g__Streptococcus.s__Streptococcus_mutans	59.2341197631
+UniRef50_B2INS9: Hydrolase, haloacid dehalogenase-like family|g__Streptococcus.s__Streptococcus_agalactiae	1.7889087657
+UniRef50_G1ZTT8: Sodium-dependent inorganic phosphate (Pi) transporter family protein	60.9882389067
+UniRef50_G1ZTT8: Sodium-dependent inorganic phosphate (Pi) transporter family protein|g__Escherichia.s__Escherichia_coli	60.9882389067
+UniRef50_B9KPL9: Serine/alanine racemase VanTc3	60.9428536931
+UniRef50_B9KPL9: Serine/alanine racemase VanTc3|g__Rhodobacter.s__Rhodobacter_sphaeroides	60.9428536931
+UniRef50_W8WPD9: Phage protein	60.9131306666
+UniRef50_W8WPD9: Phage protein|g__Staphylococcus.s__Staphylococcus_aureus	60.9131306666
+UniRef50_Q9KDV3: UDP-glucose 4-epimerase	60.8897464965
+UniRef50_Q9KDV3: UDP-glucose 4-epimerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	58.7230272112
+UniRef50_Q9KDV3: UDP-glucose 4-epimerase|g__Clostridium.s__Clostridium_beijerinckii	1.1494252874
+UniRef50_Q9KDV3: UDP-glucose 4-epimerase|g__Streptococcus.s__Streptococcus_agalactiae	1.0172939980
+UniRef50_B6V383: Tra8	60.8730199742
+UniRef50_B6V383: Tra8|g__Staphylococcus.s__Staphylococcus_aureus	60.8730199742
+UniRef50_F8DIK9: Phosphotransferase enzyme family	60.8410525781
+UniRef50_F8DIK9: Phosphotransferase enzyme family|g__Streptococcus.s__Streptococcus_mutans	56.5876223925
+UniRef50_F8DIK9: Phosphotransferase enzyme family|g__Streptococcus.s__Streptococcus_agalactiae	4.2534301856
+UniRef50_G8RFW9	60.8228077702
+UniRef50_G8RFW9|g__Staphylococcus.s__Staphylococcus_aureus	60.8228077702
+UniRef50_Q8UIG9: Non-canonical purine NTP pyrophosphatase	60.8095294258
+UniRef50_Q8UIG9: Non-canonical purine NTP pyrophosphatase|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.6022618995
+UniRef50_Q8UIG9: Non-canonical purine NTP pyrophosphatase|unclassified	1.2072675263
+UniRef50_B5F8H0: Glutathione-regulated potassium-efflux system ancillary protein KefG	60.7930105457
+UniRef50_B5F8H0: Glutathione-regulated potassium-efflux system ancillary protein KefG|g__Escherichia.s__Escherichia_coli	60.4429934021
+UniRef50_B5F8H0: Glutathione-regulated potassium-efflux system ancillary protein KefG|unclassified	0.3500171436
+UniRef50_D3QEW5: CAAX amino terminal protease family protein	60.7836633280
+UniRef50_D3QEW5: CAAX amino terminal protease family protein|g__Staphylococcus.s__Staphylococcus_aureus	60.7836633280
+UniRef50_U5UKU3: Membrane-associated protein	60.7730310728
+UniRef50_U5UKU3: Membrane-associated protein|g__Staphylococcus.s__Staphylococcus_epidermidis	60.7730310728
+UniRef50_I6T9G0: Transmembrane protein	60.7495535340
+UniRef50_I6T9G0: Transmembrane protein|g__Streptococcus.s__Streptococcus_mutans	60.7495535340
+UniRef50_W1YEB9	60.7475763293
+UniRef50_W1YEB9|unclassified	60.7475763293
+UniRef50_L7WQ34	60.7343458175
+UniRef50_L7WQ34|g__Staphylococcus.s__Staphylococcus_epidermidis	60.7343458175
+UniRef50_A9AQT5	60.7266743728
+UniRef50_A9AQT5|g__Rhodobacter.s__Rhodobacter_sphaeroides	60.3363470188
+UniRef50_A9AQT5|unclassified	0.3903273540
+UniRef50_Q5HQS0: Acetyltransferase, GNAT family	60.7071067233
+UniRef50_Q5HQS0: Acetyltransferase, GNAT family|g__Staphylococcus.s__Staphylococcus_epidermidis	60.7071067233
+UniRef50_P16431: Formate hydrogenlyase subunit 5	60.6920857779
+UniRef50_P16431: Formate hydrogenlyase subunit 5|g__Escherichia.s__Escherichia_coli	60.6920857779
+UniRef50_A8L4W4: Periplasmic binding protein/LacI transcriptional regulator	60.6599857264
+UniRef50_A8L4W4: Periplasmic binding protein/LacI transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	60.6599857264
+UniRef50_P54453	60.6566048620
+UniRef50_P54453|g__Streptococcus.s__Streptococcus_mutans	60.6566048620
+UniRef50_T1ZLK9: DNA repair protein radA	60.6541236696
+UniRef50_T1ZLK9: DNA repair protein radA|g__Streptococcus.s__Streptococcus_mutans	60.6541236696
+UniRef50_B2IKB4: Xylose isomerase domain protein TIM barrel	60.6284261823
+UniRef50_B2IKB4: Xylose isomerase domain protein TIM barrel|g__Rhodobacter.s__Rhodobacter_sphaeroides	60.6284261823
+UniRef50_P02915: Histidine transport ATP-binding protein HisP	60.5761245774
+UniRef50_P02915: Histidine transport ATP-binding protein HisP|g__Rhodobacter.s__Rhodobacter_sphaeroides	34.0668100825
+UniRef50_P02915: Histidine transport ATP-binding protein HisP|g__Escherichia.s__Escherichia_coli	21.8839964486
+UniRef50_P02915: Histidine transport ATP-binding protein HisP|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6253180463
+UniRef50_T0T7J2: Pleiotropic regulator of exopolysaccharide synthesis, competence and biofilm formation Ftr, nREfamily	60.5711470501
+UniRef50_T0T7J2: Pleiotropic regulator of exopolysaccharide synthesis, competence and biofilm formation Ftr, nREfamily|g__Streptococcus.s__Streptococcus_mutans	60.5711470501
+UniRef50_I6TZW1: ATP-binding protein	60.5401785019
+UniRef50_I6TZW1: ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	60.5401785019
+UniRef50_Q3IVS5	60.5233743900
+UniRef50_Q3IVS5|unclassified	31.2410528492
+UniRef50_Q3IVS5|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.2823215408
+UniRef50_B2IM62: Cmp-binding-factor 1	60.4976094178
+UniRef50_B2IM62: Cmp-binding-factor 1|g__Streptococcus.s__Streptococcus_mutans	55.2370827346
+UniRef50_B2IM62: Cmp-binding-factor 1|g__Streptococcus.s__Streptococcus_agalactiae	5.2605266832
+UniRef50_Q48UW8: Endoribonuclease YbeY	60.4826145094
+UniRef50_Q48UW8: Endoribonuclease YbeY|g__Streptococcus.s__Streptococcus_mutans	60.4826145094
+UniRef50_W8G521: Electron transfer flavoprotein subunit beta	60.4439263597
+UniRef50_W8G521: Electron transfer flavoprotein subunit beta|g__Rhodobacter.s__Rhodobacter_sphaeroides	60.4439263597
+UniRef50_U9T291	60.3937984922
+UniRef50_U9T291|g__Staphylococcus.s__Staphylococcus_aureus	60.3937984922
+UniRef50_T1ZCJ6: Transcriptional regulator	60.3883147868
+UniRef50_T1ZCJ6: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	60.3883147868
+UniRef50_A4J700: Endoribonuclease L-PSP	60.3795365477
+UniRef50_A4J700: Endoribonuclease L-PSP|g__Staphylococcus.s__Staphylococcus_epidermidis	60.3795365477
+UniRef50_E7MXD2: Rhodanese-like protein	60.3719494142
+UniRef50_E7MXD2: Rhodanese-like protein|g__Staphylococcus.s__Staphylococcus_aureus	60.3719494142
+UniRef50_C1CQE1: UPF0340 protein SPT_0687	60.3639378384
+UniRef50_C1CQE1: UPF0340 protein SPT_0687|g__Streptococcus.s__Streptococcus_mutans	60.3639378384
+UniRef50_G8R9S1: ATP-dependent RNA helicase YqfR	60.3430587486
+UniRef50_G8R9S1: ATP-dependent RNA helicase YqfR|g__Staphylococcus.s__Staphylococcus_aureus	60.2198303815
+UniRef50_G8R9S1: ATP-dependent RNA helicase YqfR|unclassified	0.1232283672
+UniRef50_B6IP81	60.3424886094
+UniRef50_B6IP81|g__Rhodobacter.s__Rhodobacter_sphaeroides	60.3424886094
+UniRef50_Q3BXK0: Glutamate-cysteine ligase	60.2985797056
+UniRef50_Q3BXK0: Glutamate-cysteine ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	60.2985797056
+UniRef50_A0RRT8: Imidazole glycerol phosphate synthase subunit HisF	60.2784129378
+UniRef50_A0RRT8: Imidazole glycerol phosphate synthase subunit HisF|g__Streptococcus.s__Streptococcus_mutans	59.9807310972
+UniRef50_A0RRT8: Imidazole glycerol phosphate synthase subunit HisF|unclassified	0.2976818405
+UniRef50_J7QT86	60.2450484526
+UniRef50_J7QT86|g__Escherichia.s__Escherichia_coli	60.2450484526
+UniRef50_H3USC3	60.2381454773
+UniRef50_H3USC3|unclassified	40.9031931141
+UniRef50_H3USC3|g__Staphylococcus.s__Staphylococcus_epidermidis	19.3349523632
+UniRef50_E8QBY5: Ribosomal RNA small subunit methyltransferase E	60.2242352880
+UniRef50_E8QBY5: Ribosomal RNA small subunit methyltransferase E|g__Streptococcus.s__Streptococcus_mutans	58.8692217378
+UniRef50_E8QBY5: Ribosomal RNA small subunit methyltransferase E|g__Streptococcus.s__Streptococcus_agalactiae	1.3550135501
+UniRef50_O27651: Conserved protein	60.2098198060
+UniRef50_O27651: Conserved protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	60.2098198060
+UniRef50_A4EPQ9	60.2068102091
+UniRef50_A4EPQ9|unclassified	60.2068102091
+UniRef50_Q168P3: Trk system potassium uptake protein	60.1961737555
+UniRef50_Q168P3: Trk system potassium uptake protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	60.1961737555
+UniRef50_H8ZPX2: 3-succinoylsemialdehyde-pyridine dehydrogenase	60.1890750841
+UniRef50_H8ZPX2: 3-succinoylsemialdehyde-pyridine dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	60.1890750841
+UniRef50_Q4L8H1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	60.1634027947
+UniRef50_Q4L8H1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	60.1634027947
+UniRef50_F8IRV1: Anthranilate synthase component II	60.1626096055
+UniRef50_F8IRV1: Anthranilate synthase component II|g__Streptococcus.s__Streptococcus_mutans	60.1626096055
+UniRef50_A4WT83: Cytochrome c, monohaem	60.1596185727
+UniRef50_A4WT83: Cytochrome c, monohaem|g__Rhodobacter.s__Rhodobacter_sphaeroides	60.1596185727
+UniRef50_U6EZ18: Rubrerythrin	60.1502788899
+UniRef50_U6EZ18: Rubrerythrin|g__Methanobrevibacter.s__Methanobrevibacter_smithii	60.1502788899
+UniRef50_F5X5K2: Predicted membrane protein	60.1429545574
+UniRef50_F5X5K2: Predicted membrane protein|g__Streptococcus.s__Streptococcus_mutans	60.1429545574
+UniRef50_Q8PIM5: Chemotaxis response regulator protein-glutamate methylesterase of group 2 operon	60.1415755936
+UniRef50_Q8PIM5: Chemotaxis response regulator protein-glutamate methylesterase of group 2 operon|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.3015323494
+UniRef50_Q8PIM5: Chemotaxis response regulator protein-glutamate methylesterase of group 2 operon|g__Escherichia.s__Escherichia_coli	22.2408515574
+UniRef50_Q8PIM5: Chemotaxis response regulator protein-glutamate methylesterase of group 2 operon|unclassified	0.5991916868
+UniRef50_B1ZP10: Urea ABC transporter, ATP-binding protein UrtD	60.1228194106
+UniRef50_B1ZP10: Urea ABC transporter, ATP-binding protein UrtD|g__Rhodobacter.s__Rhodobacter_sphaeroides	60.1228194106
+UniRef50_P72479: Oligopeptide transport ATP-binding protein OppF	60.1192250412
+UniRef50_P72479: Oligopeptide transport ATP-binding protein OppF|g__Streptococcus.s__Streptococcus_mutans	60.1192250412
+UniRef50_P0AAS1: Inner membrane protein YlaC	60.0937383246
+UniRef50_P0AAS1: Inner membrane protein YlaC|g__Escherichia.s__Escherichia_coli	60.0937383246
+UniRef50_Q8FMG3: GTP cyclohydrolase 1	60.0916137038
+UniRef50_Q8FMG3: GTP cyclohydrolase 1|g__Streptococcus.s__Streptococcus_mutans	56.9270567417
+UniRef50_Q8FMG3: GTP cyclohydrolase 1|g__Propionibacterium.s__Propionibacterium_acnes	3.1645569620
+UniRef50_B9KXA3: 2-dehydro-3-deoxyphosphooctonate aldolase	60.0816888790
+UniRef50_B9KXA3: 2-dehydro-3-deoxyphosphooctonate aldolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	60.0816888790
+UniRef50_A9FGM6: PhoH family protein	59.9920726704
+UniRef50_A9FGM6: PhoH family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	59.9920726704
+UniRef50_B9KT45	59.9710181102
+UniRef50_B9KT45|unclassified	59.9710181102
+UniRef50_P0A8Y6: Sugar phosphatase YidA	59.9305365131
+UniRef50_P0A8Y6: Sugar phosphatase YidA|g__Streptococcus.s__Streptococcus_mutans	41.5600607462
+UniRef50_P0A8Y6: Sugar phosphatase YidA|g__Escherichia.s__Escherichia_coli	18.3704757670
+UniRef50_Q3K3G9: Polyribonucleotide nucleotidyltransferase	59.8929920980
+UniRef50_Q3K3G9: Polyribonucleotide nucleotidyltransferase|g__Streptococcus.s__Streptococcus_mutans	59.8534706306
+UniRef50_Q3K3G9: Polyribonucleotide nucleotidyltransferase|unclassified	0.0395214674
+UniRef50_P26426: Lactose-specific phosphotransferase enzyme IIA component	59.8766460576
+UniRef50_P26426: Lactose-specific phosphotransferase enzyme IIA component|g__Staphylococcus.s__Staphylococcus_aureus	23.0556593675
+UniRef50_P26426: Lactose-specific phosphotransferase enzyme IIA component|g__Staphylococcus.s__Staphylococcus_epidermidis	21.7246242699
+UniRef50_P26426: Lactose-specific phosphotransferase enzyme IIA component|g__Streptococcus.s__Streptococcus_mutans	13.8978668390
+UniRef50_P26426: Lactose-specific phosphotransferase enzyme IIA component|unclassified	1.1984955811
+UniRef50_R6ZPD9	59.8630562922
+UniRef50_R6ZPD9|g__Streptococcus.s__Streptococcus_mutans	55.4252763809
+UniRef50_R6ZPD9|g__Clostridium.s__Clostridium_beijerinckii	4.4377799112
+UniRef50_I6SXV6: Transmembrane protein	59.8501077868
+UniRef50_I6SXV6: Transmembrane protein|g__Streptococcus.s__Streptococcus_mutans	59.8501077868
+UniRef50_Q9A0R7: Putative gluconeogenesis factor	59.8485482083
+UniRef50_Q9A0R7: Putative gluconeogenesis factor|g__Streptococcus.s__Streptococcus_mutans	54.8358689388
+UniRef50_Q9A0R7: Putative gluconeogenesis factor|g__Streptococcus.s__Streptococcus_agalactiae	5.0126792695
+UniRef50_D3E067: Nitroreductase family protein	59.8232073257
+UniRef50_D3E067: Nitroreductase family protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	59.8232073257
+UniRef50_J1C3T0	59.7872799571
+UniRef50_J1C3T0|unclassified	59.7872799571
+UniRef50_Q98DS8: Mll4564 protein	59.7658577453
+UniRef50_Q98DS8: Mll4564 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.5500196668
+UniRef50_Q98DS8: Mll4564 protein|unclassified	0.2158380785
+UniRef50_Q04HZ7: D-alanine--poly(phosphoribitol) ligase subunit 1	59.7334208473
+UniRef50_Q04HZ7: D-alanine--poly(phosphoribitol) ligase subunit 1|g__Streptococcus.s__Streptococcus_mutans	50.9864133606
+UniRef50_Q04HZ7: D-alanine--poly(phosphoribitol) ligase subunit 1|g__Streptococcus.s__Streptococcus_agalactiae	8.7470074867
+UniRef50_P0C0Q2: Glutamyl endopeptidase	59.7226136563
+UniRef50_P0C0Q2: Glutamyl endopeptidase|g__Staphylococcus.s__Staphylococcus_epidermidis	59.7226136563
+UniRef50_P43085: Phosphoenolpyruvate carboxykinase [ATP]	59.6975378275
+UniRef50_P43085: Phosphoenolpyruvate carboxykinase [ATP]|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.0669168374
+UniRef50_P43085: Phosphoenolpyruvate carboxykinase [ATP]|unclassified	0.6306209901
+UniRef50_Q1JDC3: SAM-dependent methyltransferase	59.6868912068
+UniRef50_Q1JDC3: SAM-dependent methyltransferase|g__Streptococcus.s__Streptococcus_mutans	59.6868912068
+UniRef50_I7EQS8: Nucleoid-associated protein PGA1_c30280	59.6686411715
+UniRef50_I7EQS8: Nucleoid-associated protein PGA1_c30280|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.6686411715
+UniRef50_A8AVW5: Competence protein ComFC	59.6494646502
+UniRef50_A8AVW5: Competence protein ComFC|g__Streptococcus.s__Streptococcus_mutans	59.6494646502
+UniRef50_Q5HKM3: Immunodominant antigen B, putative	59.6376545615
+UniRef50_Q5HKM3: Immunodominant antigen B, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	59.6376545615
+UniRef50_N0AZY0: O-succinylhomoserine sulfhydrylase	59.6334795879
+UniRef50_N0AZY0: O-succinylhomoserine sulfhydrylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.6334795879
+UniRef50_Q7A1P4: UPF0382 membrane protein MW0538	59.6314816586
+UniRef50_Q7A1P4: UPF0382 membrane protein MW0538|g__Staphylococcus.s__Staphylococcus_aureus	59.6314816586
+UniRef50_A3PJ50: Binding-protein-dependent transport systems inner membrane component	59.5921150659
+UniRef50_A3PJ50: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.5921150659
+UniRef50_A1RBI9: Oxidoreductase, short chain dehydrogenase/reductase family	59.5839583055
+UniRef50_A1RBI9: Oxidoreductase, short chain dehydrogenase/reductase family|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.2277360860
+UniRef50_A1RBI9: Oxidoreductase, short chain dehydrogenase/reductase family|unclassified	0.3562222195
+UniRef50_Q8CTV2: ATP phosphoribosyltransferase regulatory subunit	59.5715331449
+UniRef50_Q8CTV2: ATP phosphoribosyltransferase regulatory subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	59.5715331449
+UniRef50_R6UCD8: Aminotransferase class I and II	59.5676790612
+UniRef50_R6UCD8: Aminotransferase class I and II|g__Streptococcus.s__Streptococcus_mutans	59.5676790612
+UniRef50_T1XNC8	59.5482434069
+UniRef50_T1XNC8|g__Staphylococcus.s__Staphylococcus_aureus	59.5482434069
+UniRef50_J9YQ34: Oligopeptide ABC transporter permease	59.5223395689
+UniRef50_J9YQ34: Oligopeptide ABC transporter permease|g__Streptococcus.s__Streptococcus_mutans	59.5223395689
+UniRef50_E5QV40	59.5109238910
+UniRef50_E5QV40|g__Staphylococcus.s__Staphylococcus_epidermidis	49.7543551798
+UniRef50_E5QV40|g__Staphylococcus.s__Staphylococcus_aureus	9.7565687112
+UniRef50_Q1GDV2: DNA topoisomerase 4 subunit A	59.5078117857
+UniRef50_Q1GDV2: DNA topoisomerase 4 subunit A|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.5078117857
+UniRef50_F7Y7J0: NAD-dependent epimerase/dehydratase	59.5020252499
+UniRef50_F7Y7J0: NAD-dependent epimerase/dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.5020252499
+UniRef50_I6U069	59.4989546824
+UniRef50_I6U069|g__Streptococcus.s__Streptococcus_mutans	59.4989546824
+UniRef50_A0ALU1: 50S ribosomal protein L17	59.4779664540
+UniRef50_A0ALU1: 50S ribosomal protein L17|g__Staphylococcus.s__Staphylococcus_aureus	50.6783784589
+UniRef50_A0ALU1: 50S ribosomal protein L17|g__Staphylococcus.s__Staphylococcus_epidermidis	8.7995879951
+UniRef50_R4ZVH1: Hydroxymethylglutaryl-CoA reductase	59.4491363030
+UniRef50_R4ZVH1: Hydroxymethylglutaryl-CoA reductase|g__Streptococcus.s__Streptococcus_mutans	59.4491363030
+UniRef50_I6TW14: Alpha-glucosidase	59.4388944018
+UniRef50_I6TW14: Alpha-glucosidase|g__Streptococcus.s__Streptococcus_mutans	59.4388944018
+UniRef50_Q9FA52: Glucans biosynthesis glucosyltransferase H	59.4275043672
+UniRef50_Q9FA52: Glucans biosynthesis glucosyltransferase H|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.4275043672
+UniRef50_Q5P3C5: Crossover junction endodeoxyribonuclease RuvC	59.4259300788
+UniRef50_Q5P3C5: Crossover junction endodeoxyribonuclease RuvC|g__Neisseria.s__Neisseria_meningitidis	59.4259300788
+UniRef50_D9RG71: Colicin V production protein	59.4026867869
+UniRef50_D9RG71: Colicin V production protein|g__Staphylococcus.s__Staphylococcus_aureus	59.4026867869
+UniRef50_Q4L5A0: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	59.3947218848
+UniRef50_Q4L5A0: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	57.9046526979
+UniRef50_Q4L5A0: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	1.4900691869
+UniRef50_F5YI36: Glutamine ABC transporter, permease/substrate-binding protein	59.3945587397
+UniRef50_F5YI36: Glutamine ABC transporter, permease/substrate-binding protein|g__Streptococcus.s__Streptococcus_mutans	53.4627742612
+UniRef50_F5YI36: Glutamine ABC transporter, permease/substrate-binding protein|g__Clostridium.s__Clostridium_beijerinckii	4.2016806723
+UniRef50_F5YI36: Glutamine ABC transporter, permease/substrate-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	1.7301038062
+UniRef50_A3CLG7: Hydrolase, HAD superfamily, putative	59.3939301810
+UniRef50_A3CLG7: Hydrolase, HAD superfamily, putative|g__Streptococcus.s__Streptococcus_mutans	59.3939301810
+UniRef50_F4EDS5: Alkylhydroperoxidase like protein, AhpD family	59.3669593465
+UniRef50_F4EDS5: Alkylhydroperoxidase like protein, AhpD family|g__Streptococcus.s__Streptococcus_mutans	59.3669593465
+UniRef50_R7PWA6	59.3521591412
+UniRef50_R7PWA6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	59.3521591412
+UniRef50_A3PNK5: PTS IIA-like nitrogen-regulatory protein PtsN	59.3477942043
+UniRef50_A3PNK5: PTS IIA-like nitrogen-regulatory protein PtsN|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.3477942043
+UniRef50_C1KWM3: 3-phosphoshikimate 1-carboxyvinyltransferase	59.3416261511
+UniRef50_C1KWM3: 3-phosphoshikimate 1-carboxyvinyltransferase|g__Streptococcus.s__Streptococcus_mutans	56.8802160703
+UniRef50_C1KWM3: 3-phosphoshikimate 1-carboxyvinyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	2.4303723248
+UniRef50_C1KWM3: 3-phosphoshikimate 1-carboxyvinyltransferase|unclassified	0.0310377559
+UniRef50_Q8FH89: Pyridoxamine kinase	59.3383263455
+UniRef50_Q8FH89: Pyridoxamine kinase|g__Escherichia.s__Escherichia_coli	47.9689297871
+UniRef50_Q8FH89: Pyridoxamine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.3838021683
+UniRef50_Q8FH89: Pyridoxamine kinase|unclassified	0.9855943901
+UniRef50_F2MNJ9: PTS family mannose/fructose/sorbose porter component IID	59.3299498988
+UniRef50_F2MNJ9: PTS family mannose/fructose/sorbose porter component IID|g__Streptococcus.s__Streptococcus_mutans	59.3299498988
+UniRef50_Q5XB25: Exodeoxyribonuclease 7 large subunit	59.3276569899
+UniRef50_Q5XB25: Exodeoxyribonuclease 7 large subunit|g__Streptococcus.s__Streptococcus_mutans	54.2919662620
+UniRef50_Q5XB25: Exodeoxyribonuclease 7 large subunit|g__Streptococcus.s__Streptococcus_agalactiae	5.0356907279
+UniRef50_F4GVQ8: ABC transporter protein	59.3117962997
+UniRef50_F4GVQ8: ABC transporter protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.3117962997
+UniRef50_Q6G7T8	59.2930730452
+UniRef50_Q6G7T8|g__Staphylococcus.s__Staphylococcus_aureus	59.2930730452
+UniRef50_Q2RFW5: Ribose-5-phosphate isomerase	59.2798750898
+UniRef50_Q2RFW5: Ribose-5-phosphate isomerase|g__Clostridium.s__Clostridium_beijerinckii	59.2798750898
+UniRef50_B9KQH1: Flagellar biosynthesis/type III secretory pathway protein	59.2720532750
+UniRef50_B9KQH1: Flagellar biosynthesis/type III secretory pathway protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.4345035540
+UniRef50_B9KQH1: Flagellar biosynthesis/type III secretory pathway protein|unclassified	3.8375497210
+UniRef50_P67634: Tyrosine recombinase XerS	59.2639153079
+UniRef50_P67634: Tyrosine recombinase XerS|g__Streptococcus.s__Streptococcus_mutans	53.5990483917
+UniRef50_P67634: Tyrosine recombinase XerS|g__Streptococcus.s__Streptococcus_agalactiae	5.6648669163
+UniRef50_Q5HPM8: Surface lipoprotein-related protein	59.2622223843
+UniRef50_Q5HPM8: Surface lipoprotein-related protein|g__Staphylococcus.s__Staphylococcus_epidermidis	59.2622223843
+UniRef50_V6X6G1	59.2569659443
+UniRef50_V6X6G1|g__Staphylococcus.s__Staphylococcus_epidermidis	45.9236326109
+UniRef50_V6X6G1|unclassified	13.3333333333
+UniRef50_B9KU19: Proline racemase	59.2540833675
+UniRef50_B9KU19: Proline racemase|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.2540833675
+UniRef50_D5ARY7: Ferredoxin-4	59.2432932002
+UniRef50_D5ARY7: Ferredoxin-4|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.2432932002
+UniRef50_I6T4P1: Peptidoglycan hydrolase	59.2379757166
+UniRef50_I6T4P1: Peptidoglycan hydrolase|g__Streptococcus.s__Streptococcus_mutans	59.2379757166
+UniRef50_I6TWA3: Integral membrane protein	59.2060368952
+UniRef50_I6TWA3: Integral membrane protein|g__Streptococcus.s__Streptococcus_mutans	59.2060368952
+UniRef50_Q5HJ84: Virulence factor EsxB	59.1897615959
+UniRef50_Q5HJ84: Virulence factor EsxB|g__Staphylococcus.s__Staphylococcus_aureus	59.1897615959
+UniRef50_Q5NPR4: UvrABC system protein C	59.1581733135
+UniRef50_Q5NPR4: UvrABC system protein C|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.1581733135
+UniRef50_A5FZW0: 50S ribosomal protein L22	59.1575541207
+UniRef50_A5FZW0: 50S ribosomal protein L22|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.1575541207
+UniRef50_I0C6Y6: Transcriptional regulator, DeoR family	59.1414630890
+UniRef50_I0C6Y6: Transcriptional regulator, DeoR family|g__Staphylococcus.s__Staphylococcus_aureus	59.1414630890
+UniRef50_H2A6W4	59.1225493062
+UniRef50_H2A6W4|g__Streptococcus.s__Streptococcus_mutans	59.1225493062
+UniRef50_A6TED5: Modulator protein MzrA	59.1142744168
+UniRef50_A6TED5: Modulator protein MzrA|g__Escherichia.s__Escherichia_coli	59.1142744168
+UniRef50_Q5LMZ8: Lipoprotein, putative	59.1020181949
+UniRef50_Q5LMZ8: Lipoprotein, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.1020181949
+UniRef50_Q8ZDL2: NADH-quinone oxidoreductase subunit G	59.0848383998
+UniRef50_Q8ZDL2: NADH-quinone oxidoreductase subunit G|g__Escherichia.s__Escherichia_coli	58.9710856579
+UniRef50_Q8ZDL2: NADH-quinone oxidoreductase subunit G|unclassified	0.1137527420
+UniRef50_A3PRU0: Protease Do	59.0551156571
+UniRef50_A3PRU0: Protease Do|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.0551156571
+UniRef50_A5CZN0: SAM-dependent methyltransferases	59.0226514404
+UniRef50_A5CZN0: SAM-dependent methyltransferases|g__Methanobrevibacter.s__Methanobrevibacter_smithii	59.0226514404
+UniRef50_E8Q7C4	59.0219431765
+UniRef50_E8Q7C4|g__Streptococcus.s__Streptococcus_mutans	59.0219431765
+UniRef50_Q8TX14	59.0089653495
+UniRef50_Q8TX14|g__Methanobrevibacter.s__Methanobrevibacter_smithii	59.0089653495
+UniRef50_B1M3E9: Binding-protein-dependent transport systems inner membrane component	59.0066336686
+UniRef50_B1M3E9: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	59.0066336686
+UniRef50_A5UM27	58.9914599591
+UniRef50_A5UM27|g__Methanobrevibacter.s__Methanobrevibacter_smithii	58.9914599591
+UniRef50_Q5LSN8: Polyphosphate kinase 2, putative	58.9903702683
+UniRef50_Q5LSN8: Polyphosphate kinase 2, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	58.9903702683
+UniRef50_I4DZ43	58.9592136673
+UniRef50_I4DZ43|g__Streptococcus.s__Streptococcus_mutans	55.5267884296
+UniRef50_I4DZ43|g__Streptococcus.s__Streptococcus_agalactiae	3.4324252377
+UniRef50_J0YJQ5: Serine-aspartate repeat-containing protein G	58.9475689504
+UniRef50_J0YJQ5: Serine-aspartate repeat-containing protein G|g__Staphylococcus.s__Staphylococcus_epidermidis	58.9475689504
+UniRef50_Q73X87: Ribonuclease PH	58.9353854229
+UniRef50_Q73X87: Ribonuclease PH|g__Escherichia.s__Escherichia_coli	58.8079326151
+UniRef50_Q73X87: Ribonuclease PH|unclassified	0.1274528078
+UniRef50_G2KPL2: Peptidase family protein	58.9197158317
+UniRef50_G2KPL2: Peptidase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	58.9197158317
+UniRef50_P37342	58.9095244215
+UniRef50_P37342|g__Escherichia.s__Escherichia_coli	58.9095244215
+UniRef50_Q5HP97: Cell cycle protein GpsB	58.9040549836
+UniRef50_Q5HP97: Cell cycle protein GpsB|g__Staphylococcus.s__Staphylococcus_aureus	40.8807203710
+UniRef50_Q5HP97: Cell cycle protein GpsB|g__Staphylococcus.s__Staphylococcus_epidermidis	18.0233346126
+UniRef50_A3PQH3	58.8678139079
+UniRef50_A3PQH3|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.8484459160
+UniRef50_A3PQH3|unclassified	1.0193679918
+UniRef50_I6SSZ2: Transcriptional regulator	58.8564358107
+UniRef50_I6SSZ2: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	58.8564358107
+UniRef50_Q3IUW9: TraL	58.8429796456
+UniRef50_Q3IUW9: TraL|g__Rhodobacter.s__Rhodobacter_sphaeroides	58.8429796456
+UniRef50_S6AT93: Cell envelope biogenesis, outer membrane	58.8252597172
+UniRef50_S6AT93: Cell envelope biogenesis, outer membrane|g__Streptococcus.s__Streptococcus_mutans	58.8252597172
+UniRef50_F9YAH5: BolA-like protein	58.8235294118
+UniRef50_F9YAH5: BolA-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	58.8235294118
+UniRef50_Q1CP59: Phage protein	58.8235294118
+UniRef50_Q1CP59: Phage protein|g__Streptococcus.s__Streptococcus_agalactiae	58.8235294118
+UniRef50_Q04FF6: Arginine--tRNA ligase	58.8227182846
+UniRef50_Q04FF6: Arginine--tRNA ligase|g__Streptococcus.s__Streptococcus_mutans	55.2072807036
+UniRef50_Q04FF6: Arginine--tRNA ligase|g__Streptococcus.s__Streptococcus_agalactiae	3.5672052603
+UniRef50_Q04FF6: Arginine--tRNA ligase|unclassified	0.0482323208
+UniRef50_P0A933: Putative polysaccharide export protein GfcE	58.8129328827
+UniRef50_P0A933: Putative polysaccharide export protein GfcE|g__Escherichia.s__Escherichia_coli	58.8129328827
+UniRef50_A8AY63: Membrane protein, putative	58.7958681532
+UniRef50_A8AY63: Membrane protein, putative|g__Streptococcus.s__Streptococcus_mutans	58.7958681532
+UniRef50_Q3J6K9: Acrylyl-CoA reductase AcuI	58.7315691169
+UniRef50_Q3J6K9: Acrylyl-CoA reductase AcuI|g__Rhodobacter.s__Rhodobacter_sphaeroides	58.4907892163
+UniRef50_Q3J6K9: Acrylyl-CoA reductase AcuI|unclassified	0.2407799006
+UniRef50_D9QJC6: Cysteine desulfurase	58.7104451717
+UniRef50_D9QJC6: Cysteine desulfurase|g__Rhodobacter.s__Rhodobacter_sphaeroides	58.7104451717
+UniRef50_Q5HP08	58.7026048541
+UniRef50_Q5HP08|g__Staphylococcus.s__Staphylococcus_epidermidis	58.7026048541
+UniRef50_A3CQ84: Stomatin/prohibitin-like membrane protease subunits, putative	58.6670515435
+UniRef50_A3CQ84: Stomatin/prohibitin-like membrane protease subunits, putative|g__Streptococcus.s__Streptococcus_mutans	52.3147138501
+UniRef50_A3CQ84: Stomatin/prohibitin-like membrane protease subunits, putative|g__Streptococcus.s__Streptococcus_agalactiae	6.3523376934
+UniRef50_Q5HQ32: Bacteriocin production protein, putative	58.6523909032
+UniRef50_Q5HQ32: Bacteriocin production protein, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	58.6523909032
+UniRef50_J0P6S9	58.6448187335
+UniRef50_J0P6S9|g__Staphylococcus.s__Staphylococcus_epidermidis	58.6448187335
+UniRef50_B9KX64	58.5782434337
+UniRef50_B9KX64|unclassified	58.5782434337
+UniRef50_R0MT59: DNA polymerase III PolC	58.5477935170
+UniRef50_R0MT59: DNA polymerase III PolC|g__Streptococcus.s__Streptococcus_mutans	58.5477935170
+UniRef50_Q0C397: Intracellular protease, PfpI family	58.5433879067
+UniRef50_Q0C397: Intracellular protease, PfpI family|g__Rhodobacter.s__Rhodobacter_sphaeroides	58.5433879067
+UniRef50_Q74IL5: 50S ribosomal protein L27	58.5240926839
+UniRef50_Q74IL5: 50S ribosomal protein L27|g__Streptococcus.s__Streptococcus_mutans	26.0350319053
+UniRef50_Q74IL5: 50S ribosomal protein L27|g__Staphylococcus.s__Staphylococcus_epidermidis	20.4749203202
+UniRef50_Q74IL5: 50S ribosomal protein L27|g__Staphylococcus.s__Staphylococcus_aureus	12.0141404584
+UniRef50_Q1GIZ8: Aspartate--tRNA(Asp/Asn) ligase	58.5235735167
+UniRef50_Q1GIZ8: Aspartate--tRNA(Asp/Asn) ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	58.5235735167
+UniRef50_P37872	58.5181641043
+UniRef50_P37872|g__Staphylococcus.s__Staphylococcus_aureus	58.5181641043
+UniRef50_P17430: Acetate operon repressor	58.5153905363
+UniRef50_P17430: Acetate operon repressor|g__Escherichia.s__Escherichia_coli	58.5153905363
+UniRef50_Q70AN6: Cell shape-determining protein MreC	58.5012144035
+UniRef50_Q70AN6: Cell shape-determining protein MreC|g__Rhodobacter.s__Rhodobacter_sphaeroides	58.5012144035
+UniRef50_Q8CRY0: UPF0342 protein SE_1526	58.4760066322
+UniRef50_Q8CRY0: UPF0342 protein SE_1526|g__Staphylococcus.s__Staphylococcus_epidermidis	40.8525501133
+UniRef50_Q8CRY0: UPF0342 protein SE_1526|g__Staphylococcus.s__Staphylococcus_aureus	17.6234565189
+UniRef50_A3QG19: Homoserine O-succinyltransferase	58.4715272095
+UniRef50_A3QG19: Homoserine O-succinyltransferase|g__Streptococcus.s__Streptococcus_mutans	55.8702801176
+UniRef50_A3QG19: Homoserine O-succinyltransferase|g__Clostridium.s__Clostridium_beijerinckii	2.3276561233
+UniRef50_A3QG19: Homoserine O-succinyltransferase|unclassified	0.2735909685
+UniRef50_F5M2M3: CheBRA	58.4017499520
+UniRef50_F5M2M3: CheBRA|g__Rhodobacter.s__Rhodobacter_sphaeroides	58.4017499520
+UniRef50_Q16D47: 3'(2'),5'-bisphosphate nucleotidase	58.3858155141
+UniRef50_Q16D47: 3'(2'),5'-bisphosphate nucleotidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	58.3858155141
+UniRef50_A1B962: Ribosomal RNA large subunit methyltransferase E	58.3344844142
+UniRef50_A1B962: Ribosomal RNA large subunit methyltransferase E|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.4779370923
+UniRef50_A1B962: Ribosomal RNA large subunit methyltransferase E|unclassified	4.8565473219
+UniRef50_F8DI48: Cytoplasmic alpha-amylase	58.3272890976
+UniRef50_F8DI48: Cytoplasmic alpha-amylase|g__Streptococcus.s__Streptococcus_mutans	55.5226598141
+UniRef50_F8DI48: Cytoplasmic alpha-amylase|g__Streptococcus.s__Streptococcus_agalactiae	2.8046292835
+UniRef50_D3QCY5	58.2926475828
+UniRef50_D3QCY5|g__Staphylococcus.s__Staphylococcus_epidermidis	30.4005410677
+UniRef50_D3QCY5|g__Staphylococcus.s__Staphylococcus_aureus	27.8921065151
+UniRef50_B2IML2: Ascorbate-specific PTS system enzyme IIC	58.2787402671
+UniRef50_B2IML2: Ascorbate-specific PTS system enzyme IIC|g__Streptococcus.s__Streptococcus_mutans	54.8888448350
+UniRef50_B2IML2: Ascorbate-specific PTS system enzyme IIC|g__Streptococcus.s__Streptococcus_agalactiae	3.3898954321
+UniRef50_P96995: UDP-glucose 4-epimerase	58.2541713963
+UniRef50_P96995: UDP-glucose 4-epimerase|g__Streptococcus.s__Streptococcus_mutans	58.2541713963
+UniRef50_Q838A4: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--L-lysine ligase	58.2420527174
+UniRef50_Q838A4: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--L-lysine ligase|g__Streptococcus.s__Streptococcus_mutans	56.1140900036
+UniRef50_Q838A4: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--L-lysine ligase|g__Streptococcus.s__Streptococcus_agalactiae	2.1279627139
+UniRef50_Q5LY94: Phospho-N-acetylmuramoyl-pentapeptide-transferase	58.1513072953
+UniRef50_Q5LY94: Phospho-N-acetylmuramoyl-pentapeptide-transferase|g__Streptococcus.s__Streptococcus_mutans	54.5954322759
+UniRef50_Q5LY94: Phospho-N-acetylmuramoyl-pentapeptide-transferase|g__Streptococcus.s__Streptococcus_agalactiae	3.5558750194
+UniRef50_A4WEY5: Ribosome maturation factor RimP	58.1196581197
+UniRef50_A4WEY5: Ribosome maturation factor RimP|g__Escherichia.s__Escherichia_coli	58.1196581197
+UniRef50_L0LMR9: ABC transporter, ATP-binding protein	58.1163810335
+UniRef50_L0LMR9: ABC transporter, ATP-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	58.1163810335
+UniRef50_Q9CEG1: 5'-methylthioadenosine/S-adenosylhomocysteine nucleosidase	58.1025737944
+UniRef50_Q9CEG1: 5'-methylthioadenosine/S-adenosylhomocysteine nucleosidase|g__Streptococcus.s__Streptococcus_mutans	58.1025737944
+UniRef50_Z1HLQ0: Regulatory protein BlaR1	58.0576493742
+UniRef50_Z1HLQ0: Regulatory protein BlaR1|g__Acinetobacter.s__Acinetobacter_baumannii	58.0576493742
+UniRef50_D2TMN6: Proofreading thioesterase EntH	58.0538014338
+UniRef50_D2TMN6: Proofreading thioesterase EntH|g__Escherichia.s__Escherichia_coli	58.0538014338
+UniRef50_G7ZT27	58.0519806914
+UniRef50_G7ZT27|g__Staphylococcus.s__Staphylococcus_aureus	58.0519806914
+UniRef50_Q8XBT3: Universal stress protein G	58.0350972543
+UniRef50_Q8XBT3: Universal stress protein G|g__Escherichia.s__Escherichia_coli	58.0350972543
+UniRef50_H2A8F3: Methionine ABC transporter substrate-binding protein	58.0314619320
+UniRef50_H2A8F3: Methionine ABC transporter substrate-binding protein|g__Streptococcus.s__Streptococcus_mutans	58.0314619320
+UniRef50_Q3IV65: Capsular polysaccharide biosynthesis protein, putative	58.0245516369
+UniRef50_Q3IV65: Capsular polysaccharide biosynthesis protein, putative|unclassified	58.0245516369
+UniRef50_Q7ADF8: 2-deoxyglucose-6-phosphate phosphatase	58.0067392488
+UniRef50_Q7ADF8: 2-deoxyglucose-6-phosphate phosphatase|g__Escherichia.s__Escherichia_coli	58.0067392488
+UniRef50_D5AQC4: MotA/TolQ/ExbB proton channel family protein	57.9816045837
+UniRef50_D5AQC4: MotA/TolQ/ExbB proton channel family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.3499246558
+UniRef50_D5AQC4: MotA/TolQ/ExbB proton channel family protein|unclassified	5.6316799279
+UniRef50_P25885	57.9812663269
+UniRef50_P25885|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.9812663269
+UniRef50_P0AA45: Ribosomal small subunit pseudouridine synthase A	57.9622256896
+UniRef50_P0AA45: Ribosomal small subunit pseudouridine synthase A|g__Escherichia.s__Escherichia_coli	57.9622256896
+UniRef50_C5N5S9: Streptolysin-associated protein SagD	57.9362526837
+UniRef50_C5N5S9: Streptolysin-associated protein SagD|g__Staphylococcus.s__Staphylococcus_aureus	57.9362526837
+UniRef50_W1VWW7: Putative copper-transporting P-type ATPase B	57.9323995108
+UniRef50_W1VWW7: Putative copper-transporting P-type ATPase B|g__Staphylococcus.s__Staphylococcus_epidermidis	57.9323995108
+UniRef50_J7M137: Adenine-specific methyltransferase	57.9228728993
+UniRef50_J7M137: Adenine-specific methyltransferase|g__Streptococcus.s__Streptococcus_mutans	52.5753172180
+UniRef50_J7M137: Adenine-specific methyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	5.3475556813
+UniRef50_G7SF07: Small-conductance mechanosensitive channel	57.8988287492
+UniRef50_G7SF07: Small-conductance mechanosensitive channel|g__Streptococcus.s__Streptococcus_mutans	57.8988287492
+UniRef50_P0A9W9: Protein YrdA	57.8827680543
+UniRef50_P0A9W9: Protein YrdA|g__Escherichia.s__Escherichia_coli	57.8827680543
+UniRef50_A5UNI6: Polysaccharide biosynthesis protein, MviN-like family	57.8775920504
+UniRef50_A5UNI6: Polysaccharide biosynthesis protein, MviN-like family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	57.8775920504
+UniRef50_P77790: D-alanyl-D-alanine dipeptidase	57.8555957316
+UniRef50_P77790: D-alanyl-D-alanine dipeptidase|g__Escherichia.s__Escherichia_coli	57.8555957316
+UniRef50_B9DPH3: Ribonuclease HII	57.8378090282
+UniRef50_B9DPH3: Ribonuclease HII|g__Staphylococcus.s__Staphylococcus_aureus	57.8378090282
+UniRef50_F5M536: XRE family transcriptional regulator	57.8340523841
+UniRef50_F5M536: XRE family transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.8340523841
+UniRef50_P33234: HTH-type transcriptional regulator AdiY	57.8296006429
+UniRef50_P33234: HTH-type transcriptional regulator AdiY|g__Escherichia.s__Escherichia_coli	57.8296006429
+UniRef50_A5UJK7	57.7997460536
+UniRef50_A5UJK7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	54.6988644004
+UniRef50_A5UJK7|unclassified	3.1008816533
+UniRef50_B9DJG9: 3-dehydroquinate dehydratase	57.7953408499
+UniRef50_B9DJG9: 3-dehydroquinate dehydratase|g__Staphylococcus.s__Staphylococcus_epidermidis	57.7953408499
+UniRef50_I6TQ24: Folyl-polyglutamate synthetase	57.7697714929
+UniRef50_I6TQ24: Folyl-polyglutamate synthetase|g__Streptococcus.s__Streptococcus_mutans	57.7697714929
+UniRef50_R7GI74: Formate C-acetyltransferase	57.7650025358
+UniRef50_R7GI74: Formate C-acetyltransferase|g__Streptococcus.s__Streptococcus_mutans	49.5535709290
+UniRef50_R7GI74: Formate C-acetyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	5.9497422950
+UniRef50_R7GI74: Formate C-acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	2.2616893118
+UniRef50_C5N0K5: Isochorismatase family protein	57.7642984073
+UniRef50_C5N0K5: Isochorismatase family protein|g__Staphylococcus.s__Staphylococcus_aureus	57.7642984073
+UniRef50_I4DXS5: Acyltransferase homolog	57.7487885805
+UniRef50_I4DXS5: Acyltransferase homolog|g__Streptococcus.s__Streptococcus_mutans	54.5377538169
+UniRef50_I4DXS5: Acyltransferase homolog|g__Streptococcus.s__Streptococcus_agalactiae	3.2110347636
+UniRef50_Q5HQL1: Na(+)/H(+) antiporter subunit B1	57.7412169717
+UniRef50_Q5HQL1: Na(+)/H(+) antiporter subunit B1|g__Staphylococcus.s__Staphylococcus_epidermidis	33.1805956580
+UniRef50_Q5HQL1: Na(+)/H(+) antiporter subunit B1|g__Staphylococcus.s__Staphylococcus_aureus	24.5606213138
+UniRef50_P75989: HTH-type transcriptional repressor YcgE	57.7356418402
+UniRef50_P75989: HTH-type transcriptional repressor YcgE|g__Escherichia.s__Escherichia_coli	57.7356418402
+UniRef50_B9KX89: Lipopolysaccharide biosynthesis protein-like protein	57.7041362072
+UniRef50_B9KX89: Lipopolysaccharide biosynthesis protein-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.7041362072
+UniRef50_Q8DSP8: Membrane protein insertase YidC 2	57.6917107162
+UniRef50_Q8DSP8: Membrane protein insertase YidC 2|g__Streptococcus.s__Streptococcus_mutans	57.6917107162
+UniRef50_A3PP65: Transcriptional regulator, LysR family	57.6830523204
+UniRef50_A3PP65: Transcriptional regulator, LysR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.6830523204
+UniRef50_Q163W1: Ferredoxin/flavodoxin oxidoreductase family protein, putative	57.6559321893
+UniRef50_Q163W1: Ferredoxin/flavodoxin oxidoreductase family protein, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.6559321893
+UniRef50_Q2NGM7: 30S ribosomal protein S6e	57.6358231155
+UniRef50_Q2NGM7: 30S ribosomal protein S6e|g__Methanobrevibacter.s__Methanobrevibacter_smithii	57.6358231155
+UniRef50_Q3IV85	57.6098750212
+UniRef50_Q3IV85|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.4480020011
+UniRef50_Q3IV85|unclassified	0.1618730201
+UniRef50_Q3IUU0	57.5556656445
+UniRef50_Q3IUU0|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.6134364301
+UniRef50_Q3IUU0|unclassified	3.9422292145
+UniRef50_B9KWM6: LysR family transcriptional regulatory protein	57.5099911318
+UniRef50_B9KWM6: LysR family transcriptional regulatory protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.5099911318
+UniRef50_B2IQJ8: ABC transporter, ATP-binding protein	57.5078350261
+UniRef50_B2IQJ8: ABC transporter, ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	57.5078350261
+UniRef50_A5UKE2	57.4966920433
+UniRef50_A5UKE2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	54.9060184682
+UniRef50_A5UKE2|unclassified	2.5906735751
+UniRef50_Q57661	57.4856064369
+UniRef50_Q57661|g__Methanobrevibacter.s__Methanobrevibacter_smithii	57.4856064369
+UniRef50_A5ISK2: ABC-2 type transporter	57.4698724153
+UniRef50_A5ISK2: ABC-2 type transporter|g__Staphylococcus.s__Staphylococcus_aureus	57.4698724153
+UniRef50_P0A919: Outer membrane protein X	57.4697008684
+UniRef50_P0A919: Outer membrane protein X|g__Escherichia.s__Escherichia_coli	57.4697008684
+UniRef50_A8LRM2: Cyclopropane-fatty-acyl-phospholipid synthase	57.4643994875
+UniRef50_A8LRM2: Cyclopropane-fatty-acyl-phospholipid synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.4643994875
+UniRef50_F9VEN7: Epoxyqueuosine reductase	57.4606364079
+UniRef50_F9VEN7: Epoxyqueuosine reductase|g__Streptococcus.s__Streptococcus_mutans	55.9500623898
+UniRef50_F9VEN7: Epoxyqueuosine reductase|g__Streptococcus.s__Streptococcus_agalactiae	1.5105740181
+UniRef50_I0J9Y4	57.4444928627
+UniRef50_I0J9Y4|g__Staphylococcus.s__Staphylococcus_aureus	55.9107505314
+UniRef50_I0J9Y4|unclassified	1.5337423313
+UniRef50_Q6GH34: N-(5'-phosphoribosyl)anthranilate isomerase	57.4430752665
+UniRef50_Q6GH34: N-(5'-phosphoribosyl)anthranilate isomerase|g__Staphylococcus.s__Staphylococcus_epidermidis	54.7835007984
+UniRef50_Q6GH34: N-(5'-phosphoribosyl)anthranilate isomerase|g__Staphylococcus.s__Staphylococcus_aureus	2.6595744681
+UniRef50_J9YQK1: Cobyric acid synthase	57.4388392447
+UniRef50_J9YQK1: Cobyric acid synthase|g__Streptococcus.s__Streptococcus_mutans	57.4388392447
+UniRef50_Q46787	57.4348880940
+UniRef50_Q46787|g__Escherichia.s__Escherichia_coli	57.4348880940
+UniRef50_A5V3T8: Homoserine O-succinyltransferase	57.4208425562
+UniRef50_A5V3T8: Homoserine O-succinyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.1392343377
+UniRef50_A5V3T8: Homoserine O-succinyltransferase|unclassified	0.2816082185
+UniRef50_Q8GPI8	57.4015998945
+UniRef50_Q8GPI8|unclassified	57.4015998945
+UniRef50_B6JGW9: Replicative DNA helicase	57.3983201500
+UniRef50_B6JGW9: Replicative DNA helicase|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.3983201500
+UniRef50_Q88RC0: Glutarate-semialdehyde dehydrogenase DavD	57.3804128408
+UniRef50_Q88RC0: Glutarate-semialdehyde dehydrogenase DavD|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.2066633183
+UniRef50_Q88RC0: Glutarate-semialdehyde dehydrogenase DavD|unclassified	0.1737495225
+UniRef50_O27739: Energy-coupling factor transporter ATP-binding protein EcfA	57.3534935960
+UniRef50_O27739: Energy-coupling factor transporter ATP-binding protein EcfA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	57.3534935960
+UniRef50_A0A024DFE0: Membrane protein	57.3532566720
+UniRef50_A0A024DFE0: Membrane protein|g__Streptococcus.s__Streptococcus_mutans	57.3532566720
+UniRef50_P37675: 2,3-diketo-L-gulonate TRAP transporter large permease protein YiaN	57.3342644168
+UniRef50_P37675: 2,3-diketo-L-gulonate TRAP transporter large permease protein YiaN|g__Escherichia.s__Escherichia_coli	29.6342892606
+UniRef50_P37675: 2,3-diketo-L-gulonate TRAP transporter large permease protein YiaN|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.6999751562
+UniRef50_F3U3H0: ABC peptide/opine transporter, periplasmic substrate-binding protein	57.3338010239
+UniRef50_F3U3H0: ABC peptide/opine transporter, periplasmic substrate-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.3338010239
+UniRef50_P20751: Probable adenosine monophosphate-protein transferase fic	57.3311502681
+UniRef50_P20751: Probable adenosine monophosphate-protein transferase fic|g__Escherichia.s__Escherichia_coli	57.3311502681
+UniRef50_F5X0H0: Haloacid dehalogenase-like hydrolase	57.3177504512
+UniRef50_F5X0H0: Haloacid dehalogenase-like hydrolase|g__Streptococcus.s__Streptococcus_mutans	57.3177504512
+UniRef50_Q3J430: ATP synthase epsilon chain 1	57.3074595924
+UniRef50_Q3J430: ATP synthase epsilon chain 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.3074595924
+UniRef50_R4NU59: Histone acetyltransferase HPA2-related acetyltransferase	57.3033568522
+UniRef50_R4NU59: Histone acetyltransferase HPA2-related acetyltransferase|g__Streptococcus.s__Streptococcus_mutans	57.3033568522
+UniRef50_B1IC45	57.2825965204
+UniRef50_B1IC45|g__Streptococcus.s__Streptococcus_mutans	57.2825965204
+UniRef50_Q8DSK3	57.2753212086
+UniRef50_Q8DSK3|g__Streptococcus.s__Streptococcus_mutans	54.2300145838
+UniRef50_Q8DSK3|g__Streptococcus.s__Streptococcus_agalactiae	3.0453066248
+UniRef50_Q2G1X0: Alpha-hemolysin	57.2719164655
+UniRef50_Q2G1X0: Alpha-hemolysin|g__Staphylococcus.s__Staphylococcus_aureus	57.2719164655
+UniRef50_A2RH97: Mannitol-1-phosphate 5-dehydrogenase	57.2601711198
+UniRef50_A2RH97: Mannitol-1-phosphate 5-dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	57.0588344356
+UniRef50_A2RH97: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.2013366843
+UniRef50_B9E705	57.2521388176
+UniRef50_B9E705|g__Staphylococcus.s__Staphylococcus_epidermidis	57.2521388176
+UniRef50_P77858: Hydrogenase-4 component C	57.1980753499
+UniRef50_P77858: Hydrogenase-4 component C|g__Escherichia.s__Escherichia_coli	57.1980753499
+UniRef50_I4DYX6: ABC transporter homolog	57.1774040843
+UniRef50_I4DYX6: ABC transporter homolog|g__Streptococcus.s__Streptococcus_mutans	57.1774040843
+UniRef50_B9KX15: Short-chain dehydrogenase/reductase SDR	57.1616966102
+UniRef50_B9KX15: Short-chain dehydrogenase/reductase SDR|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.1616966102
+UniRef50_D5T0L1: Amino acid permease	57.1476873243
+UniRef50_D5T0L1: Amino acid permease|g__Streptococcus.s__Streptococcus_mutans	50.5233115520
+UniRef50_D5T0L1: Amino acid permease|g__Streptococcus.s__Streptococcus_agalactiae	6.6243757722
+UniRef50_A9M916: Modification methylase BabI	57.1425934694
+UniRef50_A9M916: Modification methylase BabI|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.7098070380
+UniRef50_A9M916: Modification methylase BabI|unclassified	0.4327864315
+UniRef50_P26236: Magnesium-protoporphyrin O-methyltransferase	57.1315502914
+UniRef50_P26236: Magnesium-protoporphyrin O-methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.2945839360
+UniRef50_P26236: Magnesium-protoporphyrin O-methyltransferase|unclassified	6.8369663554
+UniRef50_Q2YSR3: HTH-type transcriptional regulator SarX	57.1306847335
+UniRef50_Q2YSR3: HTH-type transcriptional regulator SarX|g__Staphylococcus.s__Staphylococcus_aureus	41.4830772613
+UniRef50_Q2YSR3: HTH-type transcriptional regulator SarX|g__Staphylococcus.s__Staphylococcus_epidermidis	15.6476074722
+UniRef50_U5T4K4	57.1277412661
+UniRef50_U5T4K4|g__Rhodobacter.s__Rhodobacter_sphaeroides	57.1277412661
+UniRef50_P0A3S3: DNA-entry nuclease	57.0948441155
+UniRef50_P0A3S3: DNA-entry nuclease|g__Streptococcus.s__Streptococcus_mutans	55.9252534722
+UniRef50_P0A3S3: DNA-entry nuclease|g__Streptococcus.s__Streptococcus_agalactiae	1.1695906433
+UniRef50_Q1JGW5: NAD kinase	57.0276733703
+UniRef50_Q1JGW5: NAD kinase|g__Streptococcus.s__Streptococcus_mutans	52.0587987706
+UniRef50_Q1JGW5: NAD kinase|g__Streptococcus.s__Streptococcus_agalactiae	4.9688745996
+UniRef50_P21369: Pyrazinamidase/nicotinamidase	57.0261421224
+UniRef50_P21369: Pyrazinamidase/nicotinamidase|g__Escherichia.s__Escherichia_coli	57.0261421224
+UniRef50_Q4L7Q5: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	57.0211615589
+UniRef50_Q4L7Q5: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	57.0211615589
+UniRef50_Q4KJK0: Arginine--tRNA ligase	57.0030982096
+UniRef50_Q4KJK0: Arginine--tRNA ligase|g__Escherichia.s__Escherichia_coli	41.2428064460
+UniRef50_Q4KJK0: Arginine--tRNA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.4700340215
+UniRef50_Q4KJK0: Arginine--tRNA ligase|unclassified	0.2902577421
+UniRef50_P33235: Flagellar hook-associated protein 1	56.9964283969
+UniRef50_P33235: Flagellar hook-associated protein 1|g__Escherichia.s__Escherichia_coli	56.9964283969
+UniRef50_M9R3S4: Protease do	56.9785535898
+UniRef50_M9R3S4: Protease do|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.9785535898
+UniRef50_Q5HNI6	56.9487983281
+UniRef50_Q5HNI6|g__Staphylococcus.s__Staphylococcus_epidermidis	56.9487983281
+UniRef50_G4Q6N7: Inner-membrane translocator	56.9396132539
+UniRef50_G4Q6N7: Inner-membrane translocator|g__Streptococcus.s__Streptococcus_mutans	56.9396132539
+UniRef50_A5IP44: Acyl-CoA dehydrogenase-like protein	56.9217066701
+UniRef50_A5IP44: Acyl-CoA dehydrogenase-like protein|g__Staphylococcus.s__Staphylococcus_aureus	56.9217066701
+UniRef50_Q1GWT5: Adenosylhomocysteinase	56.9185616952
+UniRef50_Q1GWT5: Adenosylhomocysteinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.7712662760
+UniRef50_Q1GWT5: Adenosylhomocysteinase|unclassified	0.1472954193
+UniRef50_C5WHP5	56.8977395984
+UniRef50_C5WHP5|g__Streptococcus.s__Streptococcus_mutans	56.8977395984
+UniRef50_P77935: Amidophosphoribosyltransferase	56.8972735396
+UniRef50_P77935: Amidophosphoribosyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.7804737177
+UniRef50_P77935: Amidophosphoribosyltransferase|unclassified	0.1167998218
+UniRef50_A4X0R7	56.8958948076
+UniRef50_A4X0R7|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.3942331113
+UniRef50_A4X0R7|unclassified	0.5016616963
+UniRef50_T2A0U3	56.8829551754
+UniRef50_T2A0U3|g__Streptococcus.s__Streptococcus_mutans	56.8829551754
+UniRef50_F2HMQ5: N-acetylglucosamine-6-phosphate deacetylase	56.8646694684
+UniRef50_F2HMQ5: N-acetylglucosamine-6-phosphate deacetylase|g__Streptococcus.s__Streptococcus_mutans	54.6889631372
+UniRef50_F2HMQ5: N-acetylglucosamine-6-phosphate deacetylase|g__Streptococcus.s__Streptococcus_agalactiae	2.1757063312
+UniRef50_P75682: Probable 2-keto-3-deoxy-galactonate aldolase YagE	56.8621598034
+UniRef50_P75682: Probable 2-keto-3-deoxy-galactonate aldolase YagE|g__Escherichia.s__Escherichia_coli	56.8621598034
+UniRef50_A6QIK9	56.8470044799
+UniRef50_A6QIK9|g__Staphylococcus.s__Staphylococcus_aureus	56.8470044799
+UniRef50_F4EDJ1: Phosphatidate cytidylyltransferase	56.8422867894
+UniRef50_F4EDJ1: Phosphatidate cytidylyltransferase|g__Streptococcus.s__Streptococcus_mutans	56.8422867894
+UniRef50_A3CR82	56.8160667956
+UniRef50_A3CR82|g__Streptococcus.s__Streptococcus_mutans	56.8160667956
+UniRef50_D5AR26: Histidine ammonia-lyase	56.8134394701
+UniRef50_D5AR26: Histidine ammonia-lyase|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.8134394701
+UniRef50_A5UNQ2: Thiol:fumarate reductase, subunit B, TfrB	56.8106904149
+UniRef50_A5UNQ2: Thiol:fumarate reductase, subunit B, TfrB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	56.8106904149
+UniRef50_P0ACL3: Exu regulon transcriptional regulator	56.8055500193
+UniRef50_P0ACL3: Exu regulon transcriptional regulator|g__Escherichia.s__Escherichia_coli	56.8055500193
+UniRef50_A6QIC9: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit C	56.7845465536
+UniRef50_A6QIC9: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit C|g__Staphylococcus.s__Staphylococcus_epidermidis	45.7757606956
+UniRef50_A6QIC9: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit C|g__Staphylococcus.s__Staphylococcus_aureus	11.0087858579
+UniRef50_Q5HN64	56.7680997026
+UniRef50_Q5HN64|g__Staphylococcus.s__Staphylococcus_epidermidis	56.7680997026
+UniRef50_B9AGK2	56.7577868882
+UniRef50_B9AGK2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	56.7577868882
+UniRef50_P33359: Putative osmoprotectant uptake system permease protein YehW	56.7365373105
+UniRef50_P33359: Putative osmoprotectant uptake system permease protein YehW|g__Escherichia.s__Escherichia_coli	56.7365373105
+UniRef50_I6SXW0: Acetyltransferase	56.7352044110
+UniRef50_I6SXW0: Acetyltransferase|g__Streptococcus.s__Streptococcus_mutans	56.7352044110
+UniRef50_A3PQ11	56.7161080064
+UniRef50_A3PQ11|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.0764132293
+UniRef50_A3PQ11|unclassified	6.6396947771
+UniRef50_U5NRT4	56.6860736252
+UniRef50_U5NRT4|unclassified	56.6860736252
+UniRef50_A5UN41: Tungsten formylmethanofuran dehydrogenase, subunit C, FwdC	56.6535526794
+UniRef50_A5UN41: Tungsten formylmethanofuran dehydrogenase, subunit C, FwdC|g__Methanobrevibacter.s__Methanobrevibacter_smithii	56.6535526794
+UniRef50_M7DRE6: Transposon protein	56.6371623846
+UniRef50_M7DRE6: Transposon protein|g__Streptococcus.s__Streptococcus_mutans	56.6371623846
+UniRef50_R9YSL1: Thermolysin metallopeptidase, catalytic domain protein	56.6316406198
+UniRef50_R9YSL1: Thermolysin metallopeptidase, catalytic domain protein|g__Staphylococcus.s__Staphylococcus_aureus	56.6316406198
+UniRef50_D2RJ96: CRISPR-associated protein Cas4	56.6174924902
+UniRef50_D2RJ96: CRISPR-associated protein Cas4|g__Streptococcus.s__Streptococcus_mutans	56.6174924902
+UniRef50_E4SZ07: Alcohol dehydrogenase / Acetaldehyde dehydrogenase	56.6067582318
+UniRef50_E4SZ07: Alcohol dehydrogenase / Acetaldehyde dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	56.6067582318
+UniRef50_I6TYS5: Bifunctional ATP-dependent DNA helicase/DNA polymerase III subunit epsilon	56.6066696289
+UniRef50_I6TYS5: Bifunctional ATP-dependent DNA helicase/DNA polymerase III subunit epsilon|g__Streptococcus.s__Streptococcus_mutans	48.6567696430
+UniRef50_I6TYS5: Bifunctional ATP-dependent DNA helicase/DNA polymerase III subunit epsilon|g__Streptococcus.s__Streptococcus_agalactiae	7.9498999859
+UniRef50_Q3J2S8	56.6057113597
+UniRef50_Q3J2S8|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.6057113597
+UniRef50_V0T9H7	56.6026582339
+UniRef50_V0T9H7|g__Escherichia.s__Escherichia_coli	56.6026582339
+UniRef50_P69793: N,N'-diacetylchitobiose-specific phosphotransferase enzyme IIA component	56.6017316017
+UniRef50_P69793: N,N'-diacetylchitobiose-specific phosphotransferase enzyme IIA component|g__Escherichia.s__Escherichia_coli	56.6017316017
+UniRef50_A1B622: 5'-Nucleotidase domain protein	56.5927105914
+UniRef50_A1B622: 5'-Nucleotidase domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.5927105914
+UniRef50_A5UKD5: Transposase, homeodomain-like superfamily	56.5708558243
+UniRef50_A5UKD5: Transposase, homeodomain-like superfamily|g__Methanobrevibacter.s__Methanobrevibacter_smithii	56.5708558243
+UniRef50_A5UNB6: Formylmethanofuran dehydrogenase subunit E, metal-binding	56.5669471924
+UniRef50_A5UNB6: Formylmethanofuran dehydrogenase subunit E, metal-binding|g__Methanobrevibacter.s__Methanobrevibacter_smithii	56.5669471924
+UniRef50_Q9CFC2: CCA-adding enzyme	56.5644834729
+UniRef50_Q9CFC2: CCA-adding enzyme|g__Streptococcus.s__Streptococcus_mutans	54.8339121673
+UniRef50_Q9CFC2: CCA-adding enzyme|g__Streptococcus.s__Streptococcus_agalactiae	1.7305713056
+UniRef50_Q16DI2: Transcriptional regulator, LacI family, putative	56.5465940319
+UniRef50_Q16DI2: Transcriptional regulator, LacI family, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.5465940319
+UniRef50_Q8DVZ6	56.5238198262
+UniRef50_Q8DVZ6|g__Streptococcus.s__Streptococcus_mutans	56.5238198262
+UniRef50_O31462	56.5154220859
+UniRef50_O31462|g__Streptococcus.s__Streptococcus_mutans	36.1830510104
+UniRef50_O31462|g__Escherichia.s__Escherichia_coli	20.3323710755
+UniRef50_P74839: Propionate catabolism operon regulatory protein	56.4958467818
+UniRef50_P74839: Propionate catabolism operon regulatory protein|g__Escherichia.s__Escherichia_coli	56.4958467818
+UniRef50_Q5HGH1: Isoprenyl transferase	56.4661240603
+UniRef50_Q5HGH1: Isoprenyl transferase|g__Staphylococcus.s__Staphylococcus_aureus	56.4661240603
+UniRef50_B9KS86	56.4566458179
+UniRef50_B9KS86|unclassified	52.7801752296
+UniRef50_B9KS86|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.6764705882
+UniRef50_I7EMW2	56.4417806940
+UniRef50_I7EMW2|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.3703030659
+UniRef50_I7EMW2|unclassified	0.0714776281
+UniRef50_E8SI82	56.4365977882
+UniRef50_E8SI82|g__Staphylococcus.s__Staphylococcus_aureus	56.4365977882
+UniRef50_A3PR64: Transcriptional regulator, TetR family	56.4326367322
+UniRef50_A3PR64: Transcriptional regulator, TetR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.4326367322
+UniRef50_U5UJ70: MutS domain V family protein	56.3881625041
+UniRef50_U5UJ70: MutS domain V family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	56.3881625041
+UniRef50_P32689	56.3677781779
+UniRef50_P32689|g__Escherichia.s__Escherichia_coli	56.3677781779
+UniRef50_U3SSP7	56.3657646393
+UniRef50_U3SSP7|g__Streptococcus.s__Streptococcus_mutans	56.3657646393
+UniRef50_B9DTQ1: Replication initiation and membrane attachment protein	56.3615024773
+UniRef50_B9DTQ1: Replication initiation and membrane attachment protein|g__Streptococcus.s__Streptococcus_mutans	54.2860778142
+UniRef50_B9DTQ1: Replication initiation and membrane attachment protein|g__Streptococcus.s__Streptococcus_agalactiae	2.0443736460
+UniRef50_B9DTQ1: Replication initiation and membrane attachment protein|unclassified	0.0310510170
+UniRef50_I1ZKL5: Pseudouridine synthase	56.3425645512
+UniRef50_I1ZKL5: Pseudouridine synthase|g__Streptococcus.s__Streptococcus_mutans	50.2191136583
+UniRef50_I1ZKL5: Pseudouridine synthase|g__Streptococcus.s__Streptococcus_agalactiae	6.1234508930
+UniRef50_P21363: Protein YciE	56.3380412494
+UniRef50_P21363: Protein YciE|g__Pseudomonas.s__Pseudomonas_aeruginosa	54.3617566644
+UniRef50_P21363: Protein YciE|g__Escherichia.s__Escherichia_coli	1.9762845850
+UniRef50_Q9KA74: Transcription termination/antitermination protein NusA	56.3353691119
+UniRef50_Q9KA74: Transcription termination/antitermination protein NusA|g__Streptococcus.s__Streptococcus_mutans	56.3353691119
+UniRef50_A9NAA5: Phosphoheptose isomerase	56.3163007825
+UniRef50_A9NAA5: Phosphoheptose isomerase|g__Escherichia.s__Escherichia_coli	54.2743736544
+UniRef50_A9NAA5: Phosphoheptose isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8656716418
+UniRef50_A9NAA5: Phosphoheptose isomerase|unclassified	0.1762554863
+UniRef50_B9KM78: OmpA/MotB domain protein	56.2997808393
+UniRef50_B9KM78: OmpA/MotB domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.2997808393
+UniRef50_Q8DWY0: UPF0246 protein SAG2081	56.2973853561
+UniRef50_Q8DWY0: UPF0246 protein SAG2081|g__Streptococcus.s__Streptococcus_mutans	54.8606037469
+UniRef50_Q8DWY0: UPF0246 protein SAG2081|g__Streptococcus.s__Streptococcus_agalactiae	1.4367816092
+UniRef50_A4WTV0: Phosphate-specific transport system accessory protein PhoU	56.2699188905
+UniRef50_A4WTV0: Phosphate-specific transport system accessory protein PhoU|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.2699188905
+UniRef50_S6BDB2: Methionine--tRNA ligase	56.2371758324
+UniRef50_S6BDB2: Methionine--tRNA ligase|g__Streptococcus.s__Streptococcus_mutans	53.1679613970
+UniRef50_S6BDB2: Methionine--tRNA ligase|g__Streptococcus.s__Streptococcus_agalactiae	3.0692144354
+UniRef50_R6MA81	56.2190152953
+UniRef50_R6MA81|g__Streptococcus.s__Streptococcus_mutans	56.2190152953
+UniRef50_P0AGE7	56.2142789684
+UniRef50_P0AGE7|g__Escherichia.s__Escherichia_coli	56.2142789684
+UniRef50_Q8YFR1: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	56.2074013226
+UniRef50_Q8YFR1: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.0814299009
+UniRef50_Q8YFR1: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|g__Propionibacterium.s__Propionibacterium_acnes	1.5037593985
+UniRef50_Q8YFR1: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.6222120231
+UniRef50_Q54443: Dextranase	56.2054378593
+UniRef50_Q54443: Dextranase|g__Streptococcus.s__Streptococcus_mutans	56.2054378593
+UniRef50_Q99R72: Glycosyl-4,4'-diaponeurosporenoate acyltransferase	56.1953184370
+UniRef50_Q99R72: Glycosyl-4,4'-diaponeurosporenoate acyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	54.6374735425
+UniRef50_Q99R72: Glycosyl-4,4'-diaponeurosporenoate acyltransferase|unclassified	1.5578448944
+UniRef50_P77427	56.1942114699
+UniRef50_P77427|g__Escherichia.s__Escherichia_coli	56.1942114699
+UniRef50_Q28K41: Amino acid/amide ABC transporter substrate-binding protein, HAAT family	56.1630676293
+UniRef50_Q28K41: Amino acid/amide ABC transporter substrate-binding protein, HAAT family|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.1630676293
+UniRef50_A1B0J8: Extracellular solute-binding protein, family 5	56.1567128714
+UniRef50_A1B0J8: Extracellular solute-binding protein, family 5|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.1567128714
+UniRef50_S5Y296: Two-component system, NtrC family, C4-dicarboxylate transport sensor histidine kinase DctB	56.1521795070
+UniRef50_S5Y296: Two-component system, NtrC family, C4-dicarboxylate transport sensor histidine kinase DctB|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.1521795070
+UniRef50_Q5FKB1: Trehalose 6-P hydrolase	56.1468105235
+UniRef50_Q5FKB1: Trehalose 6-P hydrolase|g__Streptococcus.s__Streptococcus_mutans	56.1468105235
+UniRef50_A7HQ39: Two component transcriptional regulator, winged helix family	56.1379261390
+UniRef50_A7HQ39: Two component transcriptional regulator, winged helix family|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.1379261390
+UniRef50_A4WNH8: Major facilitator superfamily MFS_1	56.1283723292
+UniRef50_A4WNH8: Major facilitator superfamily MFS_1|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.1283723292
+UniRef50_Q1JF79: ComE operon protein 2	56.0994582482
+UniRef50_Q1JF79: ComE operon protein 2|g__Streptococcus.s__Streptococcus_mutans	53.8870688677
+UniRef50_Q1JF79: ComE operon protein 2|g__Streptococcus.s__Streptococcus_agalactiae	2.2123893805
+UniRef50_P16433: Formate hydrogenlyase subunit 7	56.0990353353
+UniRef50_P16433: Formate hydrogenlyase subunit 7|g__Escherichia.s__Escherichia_coli	56.0990353353
+UniRef50_B9KWV4: TRAP-T family transporter, large inner membrane subunit DctM	56.0680113895
+UniRef50_B9KWV4: TRAP-T family transporter, large inner membrane subunit DctM|g__Rhodobacter.s__Rhodobacter_sphaeroides	56.0680113895
+UniRef50_B9DVZ2: Transcription antiterminator	56.0663435055
+UniRef50_B9DVZ2: Transcription antiterminator|g__Streptococcus.s__Streptococcus_mutans	56.0663435055
+UniRef50_H4G9C2	56.0623130893
+UniRef50_H4G9C2|g__Staphylococcus.s__Staphylococcus_aureus	56.0623130893
+UniRef50_Q3IV37	56.0566823050
+UniRef50_Q3IV37|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.4620502263
+UniRef50_Q3IV37|unclassified	0.5946320787
+UniRef50_A5VLG3: Glutamyl-tRNA(Gln) amidotransferase subunit A	56.0414066677
+UniRef50_A5VLG3: Glutamyl-tRNA(Gln) amidotransferase subunit A|g__Streptococcus.s__Streptococcus_mutans	55.8564836635
+UniRef50_A5VLG3: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.1849230042
+UniRef50_Q1QSY8: Ribosome maturation factor RimP	56.0294968190
+UniRef50_Q1QSY8: Ribosome maturation factor RimP|g__Pseudomonas.s__Pseudomonas_aeruginosa	56.0294968190
+UniRef50_I6T5B9: Transcriptional regulator	56.0260885434
+UniRef50_I6T5B9: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	56.0260885434
+UniRef50_C6SR38	56.0146751733
+UniRef50_C6SR38|g__Streptococcus.s__Streptococcus_mutans	56.0146751733
+UniRef50_Q28K77: Succinate dehydrogenase subunit C	55.9872836454
+UniRef50_Q28K77: Succinate dehydrogenase subunit C|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.9872836454
+UniRef50_B2S5Z1: Indole-3-glycerol phosphate synthase	55.9794222468
+UniRef50_B2S5Z1: Indole-3-glycerol phosphate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.2520029572
+UniRef50_B2S5Z1: Indole-3-glycerol phosphate synthase|unclassified	0.7274192896
+UniRef50_P29961: Heme exporter protein C	55.9551007805
+UniRef50_P29961: Heme exporter protein C|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.9551007805
+UniRef50_E0Y1Z2	55.9518847734
+UniRef50_E0Y1Z2|unclassified	55.9518847734
+UniRef50_U4V1U2	55.9378193287
+UniRef50_U4V1U2|unclassified	55.9378193287
+UniRef50_M4MFI8: Oxidoreductase,likely required for utilization of stachydrine	55.9363520043
+UniRef50_M4MFI8: Oxidoreductase,likely required for utilization of stachydrine|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.9363520043
+UniRef50_A5UM84: Predicted transcriptional regulator	55.9054417720
+UniRef50_A5UM84: Predicted transcriptional regulator|g__Methanobrevibacter.s__Methanobrevibacter_smithii	55.9054417720
+UniRef50_A5UNV4: Putative major capsid protein gp5 (Phage psiM2)	55.9037312210
+UniRef50_A5UNV4: Putative major capsid protein gp5 (Phage psiM2)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	55.0963970095
+UniRef50_A5UNV4: Putative major capsid protein gp5 (Phage psiM2)|unclassified	0.8073342115
+UniRef50_Q3J232	55.9032518039
+UniRef50_Q3J232|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.6031159578
+UniRef50_Q3J232|unclassified	5.3001358461
+UniRef50_T1Z3D7	55.8991672238
+UniRef50_T1Z3D7|g__Streptococcus.s__Streptococcus_mutans	55.8991672238
+UniRef50_Q8DTN8: Adenosine deaminase	55.8821675005
+UniRef50_Q8DTN8: Adenosine deaminase|g__Streptococcus.s__Streptococcus_mutans	53.0918638997
+UniRef50_Q8DTN8: Adenosine deaminase|g__Streptococcus.s__Streptococcus_agalactiae	2.7903036008
+UniRef50_Q8Y0Z5: Ubiquinone biosynthesis O-methyltransferase	55.8597963635
+UniRef50_Q8Y0Z5: Ubiquinone biosynthesis O-methyltransferase|g__Escherichia.s__Escherichia_coli	43.2716089448
+UniRef50_Q8Y0Z5: Ubiquinone biosynthesis O-methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.5881874187
+UniRef50_N1N3N6: Mobile element protein	55.8569103049
+UniRef50_N1N3N6: Mobile element protein|g__Staphylococcus.s__Staphylococcus_aureus	55.8569103049
+UniRef50_Q8DR58: UPF0398 protein spr0331	55.8499305451
+UniRef50_Q8DR58: UPF0398 protein spr0331|g__Streptococcus.s__Streptococcus_mutans	55.8499305451
+UniRef50_F0P3X1: Membrane protein, putative	55.8405751476
+UniRef50_F0P3X1: Membrane protein, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	55.3920058474
+UniRef50_F0P3X1: Membrane protein, putative|unclassified	0.4485693003
+UniRef50_A5IQ87: RNA polymerase, sigma-24 subunit, ECF subfamily	55.8038267230
+UniRef50_A5IQ87: RNA polymerase, sigma-24 subunit, ECF subfamily|g__Staphylococcus.s__Staphylococcus_aureus	55.8038267230
+UniRef50_P0AA87: Thiol:disulfide interchange protein DsbE	55.7927620142
+UniRef50_P0AA87: Thiol:disulfide interchange protein DsbE|g__Escherichia.s__Escherichia_coli	55.7927620142
+UniRef50_Q99UM3: Probable cell wall hydrolase LytN	55.7901048587
+UniRef50_Q99UM3: Probable cell wall hydrolase LytN|g__Staphylococcus.s__Staphylococcus_aureus	55.7901048587
+UniRef50_A3X8V2: DNA helicase II, putative	55.7896709288
+UniRef50_A3X8V2: DNA helicase II, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.7896709288
+UniRef50_I7DNJ2: Pyruvate carboxylase	55.7709185971
+UniRef50_I7DNJ2: Pyruvate carboxylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.7709185971
+UniRef50_Q5HLQ3: Putative 3-methyladenine DNA glycosylase	55.7655787380
+UniRef50_Q5HLQ3: Putative 3-methyladenine DNA glycosylase|g__Staphylococcus.s__Staphylococcus_epidermidis	55.7655787380
+UniRef50_P32167	55.7513077710
+UniRef50_P32167|g__Escherichia.s__Escherichia_coli	55.7513077710
+UniRef50_P42597	55.7368420942
+UniRef50_P42597|g__Escherichia.s__Escherichia_coli	29.2520464288
+UniRef50_P42597|g__Pseudomonas.s__Pseudomonas_aeruginosa	26.3157894737
+UniRef50_P42597|unclassified	0.1690061917
+UniRef50_Q48RL4: Xaa-Pro dipeptidase	55.7292262265
+UniRef50_Q48RL4: Xaa-Pro dipeptidase|g__Streptococcus.s__Streptococcus_mutans	38.7290639899
+UniRef50_Q48RL4: Xaa-Pro dipeptidase|g__Streptococcus.s__Streptococcus_agalactiae	17.0001622365
+UniRef50_Q04GC3: Peptide chain release factor 2	55.7259296534
+UniRef50_Q04GC3: Peptide chain release factor 2|g__Streptococcus.s__Streptococcus_mutans	55.7259296534
+UniRef50_E7I2X0	55.7101888992
+UniRef50_E7I2X0|unclassified	41.8213000103
+UniRef50_E7I2X0|g__Escherichia.s__Escherichia_coli	13.8888888889
+UniRef50_S5YCT9: Phage terminase, large subunit	55.6931035751
+UniRef50_S5YCT9: Phage terminase, large subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.6434679361
+UniRef50_S5YCT9: Phage terminase, large subunit|unclassified	0.0496356389
+UniRef50_F3U217: GntR family transcriptional regulator	55.6636129263
+UniRef50_F3U217: GntR family transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.6636129263
+UniRef50_Q251B6: Nitrate reductase gamma chain	55.6516557834
+UniRef50_Q251B6: Nitrate reductase gamma chain|g__Staphylococcus.s__Staphylococcus_epidermidis	55.6516557834
+UniRef50_V9WGF1: ABC-type multidrug transport system, ATPase and permease component	55.6429401798
+UniRef50_V9WGF1: ABC-type multidrug transport system, ATPase and permease component|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.6429401798
+UniRef50_Q02000: Anthranilate phosphoribosyltransferase	55.6118306449
+UniRef50_Q02000: Anthranilate phosphoribosyltransferase|g__Streptococcus.s__Streptococcus_mutans	55.6118306449
+UniRef50_Q8CN32: Thiamine phosphate synthase	55.5748384538
+UniRef50_Q8CN32: Thiamine phosphate synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	55.5748384538
+UniRef50_F0VRX4: Autolysin	55.5674471244
+UniRef50_F0VRX4: Autolysin|g__Streptococcus.s__Streptococcus_mutans	55.5674471244
+UniRef50_I0C7F9: Transposase	55.5625815549
+UniRef50_I0C7F9: Transposase|g__Staphylococcus.s__Staphylococcus_aureus	55.5625815549
+UniRef50_R4NJ09: Alpha-L-Rha alpha-1,3-L-rhamnosyltransferase	55.5576852399
+UniRef50_R4NJ09: Alpha-L-Rha alpha-1,3-L-rhamnosyltransferase|g__Streptococcus.s__Streptococcus_mutans	49.8049364512
+UniRef50_R4NJ09: Alpha-L-Rha alpha-1,3-L-rhamnosyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	5.7527487887
+UniRef50_U5L6I9: Peptide ABC transporter permease	55.5502496198
+UniRef50_U5L6I9: Peptide ABC transporter permease|g__Staphylococcus.s__Staphylococcus_aureus	55.5502496198
+UniRef50_Q2G0L5: Serine-aspartate repeat-containing protein C	55.5449061540
+UniRef50_Q2G0L5: Serine-aspartate repeat-containing protein C|g__Staphylococcus.s__Staphylococcus_aureus	55.5449061540
+UniRef50_A3CLV1	55.5404860572
+UniRef50_A3CLV1|g__Streptococcus.s__Streptococcus_mutans	53.2655272434
+UniRef50_A3CLV1|g__Streptococcus.s__Streptococcus_agalactiae	1.3605442177
+UniRef50_A3CLV1|unclassified	0.9144145960
+UniRef50_M7D383: Transposon protein	55.5404156101
+UniRef50_M7D383: Transposon protein|g__Streptococcus.s__Streptococcus_mutans	55.5404156101
+UniRef50_G2J491: Formate dehydrogenase, alpha subunit	55.5322178721
+UniRef50_G2J491: Formate dehydrogenase, alpha subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.5322178721
+UniRef50_Q6ZEM6: Arsenate reductase ArsI1	55.5183030686
+UniRef50_Q6ZEM6: Arsenate reductase ArsI1|g__Rhodobacter.s__Rhodobacter_sphaeroides	49.6368329259
+UniRef50_Q6ZEM6: Arsenate reductase ArsI1|unclassified	5.8814701427
+UniRef50_A2RIB7: NADH oxidase	55.4873110207
+UniRef50_A2RIB7: NADH oxidase|g__Streptococcus.s__Streptococcus_mutans	51.6381394750
+UniRef50_A2RIB7: NADH oxidase|g__Streptococcus.s__Streptococcus_agalactiae	3.8491715457
+UniRef50_Q9KNX6: FKBP-type peptidyl-prolyl cis-trans isomerase SlyD	55.4825113219
+UniRef50_Q9KNX6: FKBP-type peptidyl-prolyl cis-trans isomerase SlyD|g__Escherichia.s__Escherichia_coli	54.7108313903
+UniRef50_Q9KNX6: FKBP-type peptidyl-prolyl cis-trans isomerase SlyD|unclassified	0.7716799316
+UniRef50_Q8DRX4	55.4690695706
+UniRef50_Q8DRX4|g__Streptococcus.s__Streptococcus_mutans	55.4690695706
+UniRef50_I7DEQ4: Trk system potassium uptake protein TrkA	55.4674412300
+UniRef50_I7DEQ4: Trk system potassium uptake protein TrkA|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.4674412300
+UniRef50_Q8X5R9: Multidrug resistance outer membrane protein MdtP	55.4573524320
+UniRef50_Q8X5R9: Multidrug resistance outer membrane protein MdtP|g__Escherichia.s__Escherichia_coli	55.4573524320
+UniRef50_F5LZD4	55.4537423505
+UniRef50_F5LZD4|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.1964060074
+UniRef50_F5LZD4|unclassified	2.2573363431
+UniRef50_B5YRT3: Transposase InsI for insertion sequence element IS30B/C/D	55.4436677338
+UniRef50_B5YRT3: Transposase InsI for insertion sequence element IS30B/C/D|g__Escherichia.s__Escherichia_coli	55.4436677338
+UniRef50_I6T5F7: NADH dehydrogenase, NAD(P)H nitroreductase	55.4241070029
+UniRef50_I6T5F7: NADH dehydrogenase, NAD(P)H nitroreductase|g__Streptococcus.s__Streptococcus_mutans	55.4241070029
+UniRef50_P76538: Inner membrane protein YfeZ	55.4140303187
+UniRef50_P76538: Inner membrane protein YfeZ|g__Escherichia.s__Escherichia_coli	55.4140303187
+UniRef50_P77211: Cation efflux system protein CusC	55.3919740626
+UniRef50_P77211: Cation efflux system protein CusC|g__Escherichia.s__Escherichia_coli	55.3919740626
+UniRef50_C9Y1J4: Penicillin-binding protein activator LpoB	55.3896497586
+UniRef50_C9Y1J4: Penicillin-binding protein activator LpoB|g__Escherichia.s__Escherichia_coli	55.3896497586
+UniRef50_P32721: D-allose import ATP-binding protein AlsA	55.3858049375
+UniRef50_P32721: D-allose import ATP-binding protein AlsA|g__Escherichia.s__Escherichia_coli	55.3858049375
+UniRef50_B7GSP5: UPF0145 protein Blon_0093/BLIJ_0092	55.3451318181
+UniRef50_B7GSP5: UPF0145 protein Blon_0093/BLIJ_0092|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.5229158066
+UniRef50_B7GSP5: UPF0145 protein Blon_0093/BLIJ_0092|unclassified	1.8222160115
+UniRef50_P52131	55.3303989336
+UniRef50_P52131|g__Escherichia.s__Escherichia_coli	55.3303989336
+UniRef50_Q4L933: Poly-gamma-glutamate synthesis protein PgsA	55.3238619290
+UniRef50_Q4L933: Poly-gamma-glutamate synthesis protein PgsA|g__Staphylococcus.s__Staphylococcus_epidermidis	55.3238619290
+UniRef50_A5UNG7: Glycerol-3-phosphate dehydrogenase (NAD)	55.3220614265
+UniRef50_A5UNG7: Glycerol-3-phosphate dehydrogenase (NAD)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	55.3220614265
+UniRef50_M9RHC7: ABC transporter permease protein	55.3031419986
+UniRef50_M9RHC7: ABC transporter permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.3031419986
+UniRef50_E0SXX7: Collagenase-like protease	55.2960116895
+UniRef50_E0SXX7: Collagenase-like protease|g__Streptococcus.s__Streptococcus_mutans	43.6647635400
+UniRef50_E0SXX7: Collagenase-like protease|g__Streptococcus.s__Streptococcus_agalactiae	11.6312481495
+UniRef50_P0AFT7: Transcriptional regulatory protein YehT	55.2920434451
+UniRef50_P0AFT7: Transcriptional regulatory protein YehT|g__Escherichia.s__Escherichia_coli	55.2920434451
+UniRef50_D9RN76: Conserved bacteriophage protein	55.2537406879
+UniRef50_D9RN76: Conserved bacteriophage protein|g__Staphylococcus.s__Staphylococcus_aureus	53.9209971372
+UniRef50_D9RN76: Conserved bacteriophage protein|unclassified	1.3327435507
+UniRef50_E8TFR7: TRAP transporter, 4TM/12TM fusion protein	55.2474948731
+UniRef50_E8TFR7: TRAP transporter, 4TM/12TM fusion protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.2474948731
+UniRef50_Q04D50: Dipeptidase A, Cysteine peptidase, MEROPS family C69	55.2356746387
+UniRef50_Q04D50: Dipeptidase A, Cysteine peptidase, MEROPS family C69|g__Streptococcus.s__Streptococcus_mutans	55.2356746387
+UniRef50_D3QFY5: Integral membrane protein	55.2309147353
+UniRef50_D3QFY5: Integral membrane protein|g__Staphylococcus.s__Staphylococcus_epidermidis	55.2309147353
+UniRef50_O30807: NAD-dependent malic enzyme	55.2254643600
+UniRef50_O30807: NAD-dependent malic enzyme|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.3954838545
+UniRef50_O30807: NAD-dependent malic enzyme|unclassified	0.8299805056
+UniRef50_A7MI34: Ribonuclease H	55.2234880850
+UniRef50_A7MI34: Ribonuclease H|g__Escherichia.s__Escherichia_coli	54.7683310841
+UniRef50_A7MI34: Ribonuclease H|unclassified	0.4551570009
+UniRef50_Q8DV32	55.1658270862
+UniRef50_Q8DV32|g__Streptococcus.s__Streptococcus_mutans	55.1658270862
+UniRef50_W8S2G5: Glutathione peroxidase	55.1370842344
+UniRef50_W8S2G5: Glutathione peroxidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.1370842344
+UniRef50_C6SRX5	55.1136019834
+UniRef50_C6SRX5|g__Streptococcus.s__Streptococcus_mutans	53.6313866517
+UniRef50_C6SRX5|unclassified	1.4822153318
+UniRef50_W6W5E1: Methionine synthase (Fragment)	55.1054377883
+UniRef50_W6W5E1: Methionine synthase (Fragment)|g__Rhodobacter.s__Rhodobacter_sphaeroides	43.6492779652
+UniRef50_W6W5E1: Methionine synthase (Fragment)|g__Escherichia.s__Escherichia_coli	11.4561598230
+UniRef50_I6ST36: Transcriptional regulator MutR	55.1047332348
+UniRef50_I6ST36: Transcriptional regulator MutR|g__Streptococcus.s__Streptococcus_mutans	55.1047332348
+UniRef50_R7PX69	55.0958201139
+UniRef50_R7PX69|g__Methanobrevibacter.s__Methanobrevibacter_smithii	54.9935465794
+UniRef50_R7PX69|unclassified	0.1022735345
+UniRef50_Q3J2R6	55.0741137179
+UniRef50_Q3J2R6|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.8167639532
+UniRef50_Q3J2R6|unclassified	1.2573497647
+UniRef50_Q5HP16: Octanoyltransferase LipM	55.0537359808
+UniRef50_Q5HP16: Octanoyltransferase LipM|g__Staphylococcus.s__Staphylococcus_epidermidis	54.8895762070
+UniRef50_Q5HP16: Octanoyltransferase LipM|unclassified	0.1641597738
+UniRef50_A3PIY0: Carboxymuconolactone decarboxylase	55.0288236654
+UniRef50_A3PIY0: Carboxymuconolactone decarboxylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	55.0288236654
+UniRef50_C6STB9	55.0173355790
+UniRef50_C6STB9|g__Streptococcus.s__Streptococcus_mutans	55.0173355790
+UniRef50_P05707: Sorbitol-6-phosphate 2-dehydrogenase	55.0135414786
+UniRef50_P05707: Sorbitol-6-phosphate 2-dehydrogenase|g__Escherichia.s__Escherichia_coli	55.0135414786
+UniRef50_Q03WF6: Pseudouridine synthase	55.0107252520
+UniRef50_Q03WF6: Pseudouridine synthase|g__Streptococcus.s__Streptococcus_mutans	55.0107252520
+UniRef50_Y8DDU0	55.0093765984
+UniRef50_Y8DDU0|g__Staphylococcus.s__Staphylococcus_aureus	55.0093765984
+UniRef50_G2JRU4: Phosphoglycerate mutase	55.0057893964
+UniRef50_G2JRU4: Phosphoglycerate mutase|g__Staphylococcus.s__Staphylococcus_epidermidis	55.0057893964
+UniRef50_F2N166	55.0032835662
+UniRef50_F2N166|g__Pseudomonas.s__Pseudomonas_aeruginosa	55.0032835662
+UniRef50_B9KM20: PTSINtr with GAF domain, PtsP	54.9979227073
+UniRef50_B9KM20: PTSINtr with GAF domain, PtsP|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.9979227073
+UniRef50_Q11KE0: 1-deoxy-D-xylulose-5-phosphate synthase	54.9848022771
+UniRef50_Q11KE0: 1-deoxy-D-xylulose-5-phosphate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.7793171317
+UniRef50_Q11KE0: 1-deoxy-D-xylulose-5-phosphate synthase|unclassified	0.2054851454
+UniRef50_G4NPZ1: Fructokinase	54.9688036579
+UniRef50_G4NPZ1: Fructokinase|g__Staphylococcus.s__Staphylococcus_epidermidis	54.9688036579
+UniRef50_A8AXR0: Multidrug resistance protein B	54.9281742415
+UniRef50_A8AXR0: Multidrug resistance protein B|g__Streptococcus.s__Streptococcus_mutans	54.9281742415
+UniRef50_P0A8Y3: Alpha-D-glucose-1-phosphate phosphatase YihX	54.9270858871
+UniRef50_P0A8Y3: Alpha-D-glucose-1-phosphate phosphatase YihX|g__Escherichia.s__Escherichia_coli	54.9270858871
+UniRef50_Q6AGI1	54.9256772184
+UniRef50_Q6AGI1|g__Staphylococcus.s__Staphylococcus_aureus	35.4784007389
+UniRef50_Q6AGI1|g__Staphylococcus.s__Staphylococcus_epidermidis	19.4472764795
+UniRef50_A4YZY5: Pyrroloquinoline-quinone synthase	54.8976603413
+UniRef50_A4YZY5: Pyrroloquinoline-quinone synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.5906853408
+UniRef50_A4YZY5: Pyrroloquinoline-quinone synthase|unclassified	2.3069750005
+UniRef50_Q5LSI1: ABC transporter, permease protein	54.8905766961
+UniRef50_Q5LSI1: ABC transporter, permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.8905766961
+UniRef50_P0A349: GTP-sensing transcriptional pleiotropic repressor CodY	54.8794236201
+UniRef50_P0A349: GTP-sensing transcriptional pleiotropic repressor CodY|g__Streptococcus.s__Streptococcus_mutans	52.3284032119
+UniRef50_P0A349: GTP-sensing transcriptional pleiotropic repressor CodY|g__Streptococcus.s__Streptococcus_agalactiae	2.5510204082
+UniRef50_J7M139: tRNA-dihydrouridine synthase	54.8688804118
+UniRef50_J7M139: tRNA-dihydrouridine synthase|g__Streptococcus.s__Streptococcus_mutans	50.8499406235
+UniRef50_J7M139: tRNA-dihydrouridine synthase|g__Streptococcus.s__Streptococcus_agalactiae	4.0189397883
+UniRef50_D3SBH0: Riboflavin synthase, alpha subunit	54.8605336774
+UniRef50_D3SBH0: Riboflavin synthase, alpha subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.8605336774
+UniRef50_B7NFU7: Bifunctional purine biosynthesis protein PurH	54.8563232312
+UniRef50_B7NFU7: Bifunctional purine biosynthesis protein PurH|g__Escherichia.s__Escherichia_coli	25.8612427408
+UniRef50_B7NFU7: Bifunctional purine biosynthesis protein PurH|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.0477637747
+UniRef50_B7NFU7: Bifunctional purine biosynthesis protein PurH|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3663927548
+UniRef50_B7NFU7: Bifunctional purine biosynthesis protein PurH|g__Acinetobacter.s__Acinetobacter_baumannii	1.5809239609
+UniRef50_Q7VLK4: Stringent starvation protein A homolog	54.8443187780
+UniRef50_Q7VLK4: Stringent starvation protein A homolog|g__Escherichia.s__Escherichia_coli	54.7470671735
+UniRef50_Q7VLK4: Stringent starvation protein A homolog|unclassified	0.0972516045
+UniRef50_U3SW26: LysR family transcriptional regulator	54.8239896182
+UniRef50_U3SW26: LysR family transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	54.8239896182
+UniRef50_Q5HQU2: Lipoprotein, putative	54.8082518710
+UniRef50_Q5HQU2: Lipoprotein, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	54.8082518710
+UniRef50_Q2S2A1: Imidazoleglycerol-phosphate dehydratase	54.8036273989
+UniRef50_Q2S2A1: Imidazoleglycerol-phosphate dehydratase|g__Streptococcus.s__Streptococcus_mutans	53.1134688584
+UniRef50_Q2S2A1: Imidazoleglycerol-phosphate dehydratase|unclassified	1.6901585405
+UniRef50_T0SW85: Transcription-repair-coupling factor	54.7766167715
+UniRef50_T0SW85: Transcription-repair-coupling factor|g__Streptococcus.s__Streptococcus_mutans	54.7766167715
+UniRef50_B9KML1: Response regulator receiver protein	54.7623729098
+UniRef50_B9KML1: Response regulator receiver protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.7623729098
+UniRef50_A4WU42: HAD-superfamily hydrolase, subfamily IA, variant 3	54.7592418592
+UniRef50_A4WU42: HAD-superfamily hydrolase, subfamily IA, variant 3|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.7592418592
+UniRef50_P07604: Transcriptional regulatory protein TyrR	54.7585564270
+UniRef50_P07604: Transcriptional regulatory protein TyrR|g__Escherichia.s__Escherichia_coli	54.7585564270
+UniRef50_P37025: 2'-5'-RNA ligase	54.7502354972
+UniRef50_P37025: 2'-5'-RNA ligase|g__Escherichia.s__Escherichia_coli	54.7502354972
+UniRef50_I0C3R4: Thiamin pyrophosphokinase	54.7355486432
+UniRef50_I0C3R4: Thiamin pyrophosphokinase|g__Staphylococcus.s__Staphylococcus_aureus	54.7355486432
+UniRef50_A4WPY8: Short-chain dehydrogenase/reductase SDR	54.7346983420
+UniRef50_A4WPY8: Short-chain dehydrogenase/reductase SDR|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.7346983420
+UniRef50_A5WFD7: Crossover junction endodeoxyribonuclease RuvC	54.7302479821
+UniRef50_A5WFD7: Crossover junction endodeoxyribonuclease RuvC|g__Escherichia.s__Escherichia_coli	34.1521221324
+UniRef50_A5WFD7: Crossover junction endodeoxyribonuclease RuvC|g__Acinetobacter.s__Acinetobacter_baumannii	20.5781258498
+UniRef50_C6SPD3: Putative potassium uptake system protein	54.7050110360
+UniRef50_C6SPD3: Putative potassium uptake system protein|g__Streptococcus.s__Streptococcus_mutans	54.7050110360
+UniRef50_Q8DT23: S-adenosylmethionine synthase	54.6876914007
+UniRef50_Q8DT23: S-adenosylmethionine synthase|g__Streptococcus.s__Streptococcus_mutans	54.5830863717
+UniRef50_Q8DT23: S-adenosylmethionine synthase|unclassified	0.1046050290
+UniRef50_I8RAB7: Bifunctional protein: transcription regulator, sugar kinase, ROK family	54.6815443406
+UniRef50_I8RAB7: Bifunctional protein: transcription regulator, sugar kinase, ROK family|g__Streptococcus.s__Streptococcus_mutans	54.6815443406
+UniRef50_Q9A1B6: Non-canonical purine NTP pyrophosphatase	54.6628298132
+UniRef50_Q9A1B6: Non-canonical purine NTP pyrophosphatase|g__Streptococcus.s__Streptococcus_mutans	53.4590903041
+UniRef50_Q9A1B6: Non-canonical purine NTP pyrophosphatase|g__Streptococcus.s__Streptococcus_agalactiae	1.1013215859
+UniRef50_Q9A1B6: Non-canonical purine NTP pyrophosphatase|unclassified	0.1024179232
+UniRef50_M9RPB0: UPF0393 family membrane protein	54.6516516880
+UniRef50_M9RPB0: UPF0393 family membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.5766459656
+UniRef50_M9RPB0: UPF0393 family membrane protein|unclassified	0.0750057224
+UniRef50_I6STQ4: Oxidoreductase	54.6506826782
+UniRef50_I6STQ4: Oxidoreductase|g__Streptococcus.s__Streptococcus_mutans	54.6506826782
+UniRef50_A0R079: Glutamine synthetase 1	54.6309857528
+UniRef50_A0R079: Glutamine synthetase 1|g__Escherichia.s__Escherichia_coli	33.4988201235
+UniRef50_A0R079: Glutamine synthetase 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.7371484770
+UniRef50_A0R079: Glutamine synthetase 1|g__Acinetobacter.s__Acinetobacter_baumannii	1.5019929101
+UniRef50_A0R079: Glutamine synthetase 1|g__Propionibacterium.s__Propionibacterium_acnes	1.0741138561
+UniRef50_A0R079: Glutamine synthetase 1|g__Neisseria.s__Neisseria_meningitidis	0.7235890014
+UniRef50_A0R079: Glutamine synthetase 1|unclassified	0.0953213847
+UniRef50_F4FLP5: O-antigen polymerase	54.6174391143
+UniRef50_F4FLP5: O-antigen polymerase|g__Staphylococcus.s__Staphylococcus_aureus	54.2699521275
+UniRef50_F4FLP5: O-antigen polymerase|unclassified	0.3474869868
+UniRef50_UPI000467E284: transposase, partial	54.6034386942
+UniRef50_UPI000467E284: transposase, partial|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.6034386942
+UniRef50_P44684: ADP-ribose pyrophosphatase	54.5902124787
+UniRef50_P44684: ADP-ribose pyrophosphatase|g__Escherichia.s__Escherichia_coli	54.5902124787
+UniRef50_A3CLN3: GTP-binding protein TypA/BipA, putative	54.5770692801
+UniRef50_A3CLN3: GTP-binding protein TypA/BipA, putative|g__Streptococcus.s__Streptococcus_mutans	54.5770692801
+UniRef50_P77315: Probable ABC transporter permease protein YphD	54.5680248239
+UniRef50_P77315: Probable ABC transporter permease protein YphD|g__Escherichia.s__Escherichia_coli	54.5680248239
+UniRef50_B8H5V4: Uronate isomerase	54.5598387812
+UniRef50_B8H5V4: Uronate isomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.4027333614
+UniRef50_B8H5V4: Uronate isomerase|unclassified	0.1571054198
+UniRef50_B9KNU8: Transcriptional regulator, MerR family	54.5363920721
+UniRef50_B9KNU8: Transcriptional regulator, MerR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.5363920721
+UniRef50_B2VDR3: High frequency lysogenization protein HflD homolog	54.4890708044
+UniRef50_B2VDR3: High frequency lysogenization protein HflD homolog|g__Escherichia.s__Escherichia_coli	54.4890708044
+UniRef50_C1CMA0: Ribosomal protein L11 methyltransferase	54.4774698771
+UniRef50_C1CMA0: Ribosomal protein L11 methyltransferase|g__Streptococcus.s__Streptococcus_mutans	51.8361200471
+UniRef50_C1CMA0: Ribosomal protein L11 methyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	2.6413498301
+UniRef50_A5IQ60: Septum formation initiator	54.4722092581
+UniRef50_A5IQ60: Septum formation initiator|g__Staphylococcus.s__Staphylococcus_aureus	54.4722092581
+UniRef50_F4LK69: Regulatory protein TetR	54.4664630723
+UniRef50_F4LK69: Regulatory protein TetR|g__Streptococcus.s__Streptococcus_mutans	54.4664630723
+UniRef50_Q4L562: Probable quinol oxidase subunit 4	54.4520711692
+UniRef50_Q4L562: Probable quinol oxidase subunit 4|g__Staphylococcus.s__Staphylococcus_aureus	34.8442280319
+UniRef50_Q4L562: Probable quinol oxidase subunit 4|g__Staphylococcus.s__Staphylococcus_epidermidis	19.6078431373
+UniRef50_E8SFA3: V5/Tpx-1 related allergen	54.4344657555
+UniRef50_E8SFA3: V5/Tpx-1 related allergen|g__Staphylococcus.s__Staphylococcus_aureus	54.4344657555
+UniRef50_B7LPQ4: N-acetyl-D-glucosamine kinase	54.4314355879
+UniRef50_B7LPQ4: N-acetyl-D-glucosamine kinase|g__Escherichia.s__Escherichia_coli	54.4314355879
+UniRef50_Q03LK9: ABC-type amino acid transport system, permease component	54.4258904305
+UniRef50_Q03LK9: ABC-type amino acid transport system, permease component|g__Streptococcus.s__Streptococcus_mutans	51.3794301714
+UniRef50_Q03LK9: ABC-type amino acid transport system, permease component|g__Streptococcus.s__Streptococcus_agalactiae	3.0464602591
+UniRef50_A2RM05: Queuosine precursor transporter QueT	54.4254163333
+UniRef50_A2RM05: Queuosine precursor transporter QueT|g__Streptococcus.s__Streptococcus_mutans	46.2888351233
+UniRef50_A2RM05: Queuosine precursor transporter QueT|g__Streptococcus.s__Streptococcus_agalactiae	8.1365812100
+UniRef50_Q1CBF6: Sec-independent protein translocase protein TatB	54.4215609530
+UniRef50_Q1CBF6: Sec-independent protein translocase protein TatB|g__Escherichia.s__Escherichia_coli	54.4215609530
+UniRef50_Q57865: 4-hydroxy-tetrahydrodipicolinate reductase	54.4159019719
+UniRef50_Q57865: 4-hydroxy-tetrahydrodipicolinate reductase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	54.3663640716
+UniRef50_Q57865: 4-hydroxy-tetrahydrodipicolinate reductase|unclassified	0.0495379003
+UniRef50_B4U203: DNA polymerase III subunit delta	54.3999829670
+UniRef50_B4U203: DNA polymerase III subunit delta|g__Streptococcus.s__Streptococcus_mutans	49.7094404469
+UniRef50_B4U203: DNA polymerase III subunit delta|g__Streptococcus.s__Streptococcus_agalactiae	4.6905425200
+UniRef50_C5Q752	54.3930942940
+UniRef50_C5Q752|g__Staphylococcus.s__Staphylococcus_epidermidis	54.3930942940
+UniRef50_U5NMR3	54.3828158633
+UniRef50_U5NMR3|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.4312526813
+UniRef50_U5NMR3|unclassified	22.9515631821
+UniRef50_F8LKD4	54.3796720420
+UniRef50_F8LKD4|g__Streptococcus.s__Streptococcus_mutans	54.3796720420
+UniRef50_P0A2J0: Histidine transport system permease protein HisQ	54.3783487636
+UniRef50_P0A2J0: Histidine transport system permease protein HisQ|g__Escherichia.s__Escherichia_coli	54.3783487636
+UniRef50_P35598: Putative ABC transporter ATP-binding protein exp8	54.3666400470
+UniRef50_P35598: Putative ABC transporter ATP-binding protein exp8|g__Streptococcus.s__Streptococcus_mutans	50.0980048064
+UniRef50_P35598: Putative ABC transporter ATP-binding protein exp8|g__Streptococcus.s__Streptococcus_agalactiae	4.2686352406
+UniRef50_P37351: Ribose-5-phosphate isomerase B	54.3633264769
+UniRef50_P37351: Ribose-5-phosphate isomerase B|g__Escherichia.s__Escherichia_coli	54.3633264769
+UniRef50_A3CPS1: Two-component response transcriptional regulator (CheY-like receiver and winged-helix DNA-binding domains), putative	54.3560515705
+UniRef50_A3CPS1: Two-component response transcriptional regulator (CheY-like receiver and winged-helix DNA-binding domains), putative|g__Streptococcus.s__Streptococcus_mutans	54.3560515705
+UniRef50_F7ZCY2: High-affinity branched-chain amino acid transport system permease protein	54.3174492559
+UniRef50_F7ZCY2: High-affinity branched-chain amino acid transport system permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.3174492559
+UniRef50_B9KQ54: Phosphate-starvation-inducible E	54.3126831905
+UniRef50_B9KQ54: Phosphate-starvation-inducible E|g__Rhodobacter.s__Rhodobacter_sphaeroides	43.3326381129
+UniRef50_B9KQ54: Phosphate-starvation-inducible E|unclassified	10.9800450776
+UniRef50_A3K427: Possible phenol degradation enzyme	54.3067933443
+UniRef50_A3K427: Possible phenol degradation enzyme|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.8282985642
+UniRef50_A3K427: Possible phenol degradation enzyme|unclassified	3.4784947801
+UniRef50_Q8FVT0: Putative ATP-binding protein BRA0745/BS1330_II0738	54.3030247562
+UniRef50_Q8FVT0: Putative ATP-binding protein BRA0745/BS1330_II0738|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.3030247562
+UniRef50_Q9JTA4: UPF0210 protein NMA1908	54.2860802179
+UniRef50_Q9JTA4: UPF0210 protein NMA1908|g__Streptococcus.s__Streptococcus_mutans	45.3264367949
+UniRef50_Q9JTA4: UPF0210 protein NMA1908|g__Clostridium.s__Clostridium_beijerinckii	7.1472766853
+UniRef50_Q9JTA4: UPF0210 protein NMA1908|g__Neisseria.s__Neisseria_meningitidis	1.8123667377
+UniRef50_P36556: Transcriptional regulatory protein BasR	54.2752567432
+UniRef50_P36556: Transcriptional regulatory protein BasR|g__Escherichia.s__Escherichia_coli	54.2752567432
+UniRef50_B2IDX6: Signal recognition particle protein	54.2730196035
+UniRef50_B2IDX6: Signal recognition particle protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.5774414261
+UniRef50_B2IDX6: Signal recognition particle protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6955781774
+UniRef50_Q8DW90	54.2509208789
+UniRef50_Q8DW90|g__Streptococcus.s__Streptococcus_mutans	53.5792000179
+UniRef50_Q8DW90|unclassified	0.6717208610
+UniRef50_A5IRW7	54.2445831969
+UniRef50_A5IRW7|g__Staphylococcus.s__Staphylococcus_aureus	52.7557112460
+UniRef50_A5IRW7|unclassified	1.4888719509
+UniRef50_Q8DVW8: Ribonuclease M5	54.2401038391
+UniRef50_Q8DVW8: Ribonuclease M5|g__Streptococcus.s__Streptococcus_mutans	54.2401038391
+UniRef50_Q4L860: Alkaline shock protein 23	54.2308738748
+UniRef50_Q4L860: Alkaline shock protein 23|g__Staphylococcus.s__Staphylococcus_aureus	38.8447173296
+UniRef50_Q4L860: Alkaline shock protein 23|g__Staphylococcus.s__Staphylococcus_epidermidis	13.3577589792
+UniRef50_Q4L860: Alkaline shock protein 23|unclassified	2.0283975659
+UniRef50_P42359: Putative zinc metalloproteinase in scaA 5'region (Fragment)	54.2170029421
+UniRef50_P42359: Putative zinc metalloproteinase in scaA 5'region (Fragment)|g__Streptococcus.s__Streptococcus_mutans	51.9288922928
+UniRef50_P42359: Putative zinc metalloproteinase in scaA 5'region (Fragment)|g__Streptococcus.s__Streptococcus_agalactiae	2.2881106493
+UniRef50_F7QLE1	54.2133800448
+UniRef50_F7QLE1|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.1286349883
+UniRef50_F7QLE1|unclassified	0.0847450565
+UniRef50_P05379: Anthranilate synthase component 2	54.1837091273
+UniRef50_P05379: Anthranilate synthase component 2|g__Escherichia.s__Escherichia_coli	50.1506263864
+UniRef50_P05379: Anthranilate synthase component 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.7878787879
+UniRef50_P05379: Anthranilate synthase component 2|unclassified	0.2452039531
+UniRef50_U3SS47	54.1831938665
+UniRef50_U3SS47|g__Streptococcus.s__Streptococcus_mutans	54.1831938665
+UniRef50_Q03174: Fructan beta-fructosidase	54.1679831186
+UniRef50_Q03174: Fructan beta-fructosidase|g__Streptococcus.s__Streptococcus_mutans	54.1679831186
+UniRef50_Q8DUL3	54.1553536387
+UniRef50_Q8DUL3|g__Streptococcus.s__Streptococcus_mutans	54.1553536387
+UniRef50_F0TB22: H4MPT-linked C1 transfer pathway protein	54.1277829225
+UniRef50_F0TB22: H4MPT-linked C1 transfer pathway protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	54.1277829225
+UniRef50_B1IS55: UPF0442 protein YjjB	54.1229841935
+UniRef50_B1IS55: UPF0442 protein YjjB|g__Escherichia.s__Escherichia_coli	54.1229841935
+UniRef50_F9Y8G5: 4-hydroxybenzoate polyprenyl transferase	54.1032902575
+UniRef50_F9Y8G5: 4-hydroxybenzoate polyprenyl transferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.1032902575
+UniRef50_C5N0J9	54.0780760406
+UniRef50_C5N0J9|g__Staphylococcus.s__Staphylococcus_aureus	51.6304821911
+UniRef50_C5N0J9|unclassified	2.4475938495
+UniRef50_P30143	54.0556426844
+UniRef50_P30143|g__Escherichia.s__Escherichia_coli	46.3240120517
+UniRef50_P30143|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8803957962
+UniRef50_P30143|g__Neisseria.s__Neisseria_meningitidis	1.8512348365
+UniRef50_A4WNN4: Succinate dehydrogenase subunit D	54.0493128146
+UniRef50_A4WNN4: Succinate dehydrogenase subunit D|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.0493128146
+UniRef50_E3I8L4	54.0308161699
+UniRef50_E3I8L4|g__Rhodobacter.s__Rhodobacter_sphaeroides	54.0308161699
+UniRef50_T0TGG3: Ribosomal-protein-S5p-alanine acetyl transferase	54.0247300667
+UniRef50_T0TGG3: Ribosomal-protein-S5p-alanine acetyl transferase|g__Streptococcus.s__Streptococcus_mutans	54.0247300667
+UniRef50_P37016	54.0114508416
+UniRef50_P37016|g__Escherichia.s__Escherichia_coli	54.0114508416
+UniRef50_A8LRD0: 3-hydroxyacyl-CoA dehydrogenase NAD-binding	53.9613174187
+UniRef50_A8LRD0: 3-hydroxyacyl-CoA dehydrogenase NAD-binding|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.9613174187
+UniRef50_P33117: Ferric uptake regulation protein	53.9562153763
+UniRef50_P33117: Ferric uptake regulation protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	32.1256107990
+UniRef50_P33117: Ferric uptake regulation protein|g__Escherichia.s__Escherichia_coli	21.8306045774
+UniRef50_P37349: PTS-dependent dihydroxyacetone kinase, phosphotransferase subunit DhaM	53.9478968594
+UniRef50_P37349: PTS-dependent dihydroxyacetone kinase, phosphotransferase subunit DhaM|g__Escherichia.s__Escherichia_coli	53.9478968594
+UniRef50_P23524: Glycerate 2-kinase	53.9457793629
+UniRef50_P23524: Glycerate 2-kinase|g__Escherichia.s__Escherichia_coli	53.9457793629
+UniRef50_A8LHU2: Processing peptidase	53.9142621113
+UniRef50_A8LHU2: Processing peptidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.9142621113
+UniRef50_M9R9R9: Methylenetetrahydrofolate reductase	53.8792405450
+UniRef50_M9R9R9: Methylenetetrahydrofolate reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.8792405450
+UniRef50_C6SS67	53.8571281750
+UniRef50_C6SS67|g__Streptococcus.s__Streptococcus_mutans	53.8571281750
+UniRef50_J9W5M6: Dihydroxyacetone kinase-like protein	53.8231425772
+UniRef50_J9W5M6: Dihydroxyacetone kinase-like protein|g__Streptococcus.s__Streptococcus_mutans	53.8231425772
+UniRef50_Q5M378	53.8067842445
+UniRef50_Q5M378|g__Streptococcus.s__Streptococcus_mutans	45.4940188874
+UniRef50_Q5M378|g__Streptococcus.s__Streptococcus_agalactiae	8.3127653571
+UniRef50_B4U058: ComG operon protein 6	53.7718714830
+UniRef50_B4U058: ComG operon protein 6|g__Streptococcus.s__Streptococcus_mutans	53.6221200146
+UniRef50_B4U058: ComG operon protein 6|unclassified	0.1497514684
+UniRef50_R4Q1E8: Fumarate reductase, flavoprotein subunit	53.7705455187
+UniRef50_R4Q1E8: Fumarate reductase, flavoprotein subunit|g__Streptococcus.s__Streptococcus_mutans	53.7705455187
+UniRef50_P75672	53.7425541532
+UniRef50_P75672|g__Escherichia.s__Escherichia_coli	53.7425541532
+UniRef50_P39383	53.7110793824
+UniRef50_P39383|g__Escherichia.s__Escherichia_coli	53.7110793824
+UniRef50_Q8CTN4	53.6832918172
+UniRef50_Q8CTN4|g__Staphylococcus.s__Staphylococcus_epidermidis	53.6832918172
+UniRef50_Q8DW17: Putative agmatine deiminase	53.6692572640
+UniRef50_Q8DW17: Putative agmatine deiminase|g__Streptococcus.s__Streptococcus_mutans	53.6692572640
+UniRef50_I6T9F6: Transcriptional regulator	53.6666245235
+UniRef50_I6T9F6: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	53.6666245235
+UniRef50_Q5X9T1: Exodeoxyribonuclease III	53.6637686957
+UniRef50_Q5X9T1: Exodeoxyribonuclease III|g__Streptococcus.s__Streptococcus_mutans	50.6312217088
+UniRef50_Q5X9T1: Exodeoxyribonuclease III|g__Streptococcus.s__Streptococcus_agalactiae	3.0325469868
+UniRef50_W0MUF4	53.6634659977
+UniRef50_W0MUF4|g__Pseudomonas.s__Pseudomonas_aeruginosa	53.6634659977
+UniRef50_T2E9U3: Phage tail protein I	53.6533102927
+UniRef50_T2E9U3: Phage tail protein I|g__Pseudomonas.s__Pseudomonas_aeruginosa	53.2906273073
+UniRef50_T2E9U3: Phage tail protein I|unclassified	0.3626829853
+UniRef50_P0ADV7: Probable phospholipid-binding protein MlaC	53.6283944273
+UniRef50_P0ADV7: Probable phospholipid-binding protein MlaC|g__Escherichia.s__Escherichia_coli	53.6283944273
+UniRef50_M4ZG31: Drug/metabolite transporter superfamily protein	53.6278837835
+UniRef50_M4ZG31: Drug/metabolite transporter superfamily protein|g__Streptococcus.s__Streptococcus_mutans	51.3134032379
+UniRef50_M4ZG31: Drug/metabolite transporter superfamily protein|g__Streptococcus.s__Streptococcus_agalactiae	2.3144805455
+UniRef50_A4WQX9	53.6250862800
+UniRef50_A4WQX9|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.9770056418
+UniRef50_A4WQX9|unclassified	23.6480806382
+UniRef50_B9KTI0	53.6244664688
+UniRef50_B9KTI0|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.6244664688
+UniRef50_Q9R9D6: Lipopolysaccharide core heptose(I) kinase RfaP	53.5958178910
+UniRef50_Q9R9D6: Lipopolysaccharide core heptose(I) kinase RfaP|g__Escherichia.s__Escherichia_coli	53.5958178910
+UniRef50_B9KS14: Chemotaxis histidine protein kinase	53.5914358213
+UniRef50_B9KS14: Chemotaxis histidine protein kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.5914358213
+UniRef50_U3SQV1	53.5904574421
+UniRef50_U3SQV1|g__Streptococcus.s__Streptococcus_mutans	53.5904574421
+UniRef50_O27398: Imidazole glycerol phosphate synthase subunit HisF	53.5876569343
+UniRef50_O27398: Imidazole glycerol phosphate synthase subunit HisF|g__Methanobrevibacter.s__Methanobrevibacter_smithii	53.3911921031
+UniRef50_O27398: Imidazole glycerol phosphate synthase subunit HisF|unclassified	0.1964648311
+UniRef50_C6AUH7: Acriflavin resistance protein	53.5756216624
+UniRef50_C6AUH7: Acriflavin resistance protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.5756216624
+UniRef50_Q00277: Glutathione peroxidase	53.5634434254
+UniRef50_Q00277: Glutathione peroxidase|g__Staphylococcus.s__Staphylococcus_epidermidis	53.5634434254
+UniRef50_R6JPB3	53.5456813175
+UniRef50_R6JPB3|g__Streptococcus.s__Streptococcus_mutans	53.5456813175
+UniRef50_A7X2Q3: N utilization substance protein B homolog	53.5411030007
+UniRef50_A7X2Q3: N utilization substance protein B homolog|g__Staphylococcus.s__Staphylococcus_aureus	39.7530795207
+UniRef50_A7X2Q3: N utilization substance protein B homolog|g__Staphylococcus.s__Staphylococcus_epidermidis	13.7880234800
+UniRef50_C6XLP5: Acyl-CoA dehydrogenase domain protein	53.5186600212
+UniRef50_C6XLP5: Acyl-CoA dehydrogenase domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.5186600212
+UniRef50_P52135	53.4988746025
+UniRef50_P52135|g__Escherichia.s__Escherichia_coli	53.4988746025
+UniRef50_I0C113: Isovaleryl-CoA dehydrogenase	53.4958244658
+UniRef50_I0C113: Isovaleryl-CoA dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	53.4958244658
+UniRef50_Q8DWK3	53.4565094134
+UniRef50_Q8DWK3|g__Streptococcus.s__Streptococcus_mutans	53.4565094134
+UniRef50_A4WY94	53.4490359681
+UniRef50_A4WY94|unclassified	35.7144275920
+UniRef50_A4WY94|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.7346083761
+UniRef50_L8N845	53.4364261168
+UniRef50_L8N845|g__Pseudomonas.s__Pseudomonas_aeruginosa	53.4364261168
+UniRef50_P95785: ATP synthase subunit b	53.4076813043
+UniRef50_P95785: ATP synthase subunit b|g__Streptococcus.s__Streptococcus_mutans	53.4076813043
+UniRef50_G3ECR2: CRISPR-associated endonuclease Cas1	53.4063643894
+UniRef50_G3ECR2: CRISPR-associated endonuclease Cas1|g__Streptococcus.s__Streptococcus_mutans	45.5618822846
+UniRef50_G3ECR2: CRISPR-associated endonuclease Cas1|g__Streptococcus.s__Streptococcus_agalactiae	7.8444821048
+UniRef50_A3N3J7	53.3730987936
+UniRef50_A3N3J7|g__Streptococcus.s__Streptococcus_mutans	53.3730987936
+UniRef50_Q28Q13: Acetyltransferase GNAT family	53.3239641591
+UniRef50_Q28Q13: Acetyltransferase GNAT family|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.3239641591
+UniRef50_B4THT3: UPF0257 lipoprotein YnfC	53.3177424362
+UniRef50_B4THT3: UPF0257 lipoprotein YnfC|g__Escherichia.s__Escherichia_coli	53.3177424362
+UniRef50_A8LL11: HTH-type transcriptional regulator	53.3174177966
+UniRef50_A8LL11: HTH-type transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.3174177966
+UniRef50_P59626: Probable dihydroorotate dehydrogenase A (fumarate)	53.2991532870
+UniRef50_P59626: Probable dihydroorotate dehydrogenase A (fumarate)|g__Streptococcus.s__Streptococcus_mutans	53.1568710771
+UniRef50_P59626: Probable dihydroorotate dehydrogenase A (fumarate)|unclassified	0.1422822099
+UniRef50_Q3IV27	53.2704106072
+UniRef50_Q3IV27|unclassified	44.5747584333
+UniRef50_Q3IV27|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.6956521739
+UniRef50_D3QGY3	53.2693027832
+UniRef50_D3QGY3|g__Staphylococcus.s__Staphylococcus_epidermidis	53.2693027832
+UniRef50_E8SHK7	53.2665353059
+UniRef50_E8SHK7|g__Staphylococcus.s__Staphylococcus_aureus	37.8647595798
+UniRef50_E8SHK7|g__Staphylococcus.s__Staphylococcus_epidermidis	15.4017757261
+UniRef50_C6BBB4: Ammonium transporter	53.2661409239
+UniRef50_C6BBB4: Ammonium transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.2418132460
+UniRef50_C6BBB4: Ammonium transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0243276779
+UniRef50_Q7DDR9: Adenosine monophosphate-protein transferase NmFic	53.2545961129
+UniRef50_Q7DDR9: Adenosine monophosphate-protein transferase NmFic|g__Streptococcus.s__Streptococcus_mutans	53.2545961129
+UniRef50_Q0C5T7: Peptide ABC transporter, ATP-binding protein	53.2515842708
+UniRef50_Q0C5T7: Peptide ABC transporter, ATP-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.2515842708
+UniRef50_G4QEC1: Na+/H+ antiporter, NhaC family protein	53.2491898592
+UniRef50_G4QEC1: Na+/H+ antiporter, NhaC family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.2491898592
+UniRef50_Q87A27: Transcription termination/antitermination protein NusG	53.2387020817
+UniRef50_Q87A27: Transcription termination/antitermination protein NusG|g__Escherichia.s__Escherichia_coli	53.2387020817
+UniRef50_A7WYM2: Thymidylate kinase	53.1992861345
+UniRef50_A7WYM2: Thymidylate kinase|g__Staphylococcus.s__Staphylococcus_aureus	53.1108713577
+UniRef50_A7WYM2: Thymidylate kinase|unclassified	0.0884147768
+UniRef50_Q8DUN5: Ferredoxin--NADP reductase	53.1965181103
+UniRef50_Q8DUN5: Ferredoxin--NADP reductase|g__Streptococcus.s__Streptococcus_mutans	52.0754418771
+UniRef50_Q8DUN5: Ferredoxin--NADP reductase|g__Streptococcus.s__Streptococcus_agalactiae	1.1210762332
+UniRef50_Q99QS1: Protein map	53.1947274549
+UniRef50_Q99QS1: Protein map|g__Staphylococcus.s__Staphylococcus_aureus	53.1947274549
+UniRef50_Q1CEX0: UPF0301 protein YPN_3133	53.1762455353
+UniRef50_Q1CEX0: UPF0301 protein YPN_3133|g__Escherichia.s__Escherichia_coli	53.1762455353
+UniRef50_Q53158: Phosphoribosyl-AMP cyclohydrolase	53.1726278990
+UniRef50_Q53158: Phosphoribosyl-AMP cyclohydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	53.0003354269
+UniRef50_Q53158: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.1722924722
+UniRef50_R5QB36	53.1649648597
+UniRef50_R5QB36|g__Streptococcus.s__Streptococcus_mutans	51.2690469903
+UniRef50_R5QB36|g__Streptococcus.s__Streptococcus_agalactiae	1.6657877848
+UniRef50_R5QB36|unclassified	0.2301300846
+UniRef50_I6L8Z7	53.1478204261
+UniRef50_I6L8Z7|g__Streptococcus.s__Streptococcus_mutans	53.1478204261
+UniRef50_P0A9N6: Pyruvate formate-lyase 1-activating enzyme	53.1470781907
+UniRef50_P0A9N6: Pyruvate formate-lyase 1-activating enzyme|g__Escherichia.s__Escherichia_coli	53.1470781907
+UniRef50_I6T5H3	53.1372740694
+UniRef50_I6T5H3|g__Streptococcus.s__Streptococcus_mutans	53.1372740694
+UniRef50_Q8DWZ2: Pseudouridine synthase	53.1318205917
+UniRef50_Q8DWZ2: Pseudouridine synthase|g__Streptococcus.s__Streptococcus_mutans	51.0528185127
+UniRef50_Q8DWZ2: Pseudouridine synthase|g__Streptococcus.s__Streptococcus_agalactiae	2.0790020790
+UniRef50_Q8DUW3: Shikimate dehydrogenase	53.1231226114
+UniRef50_Q8DUW3: Shikimate dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	53.1231226114
+UniRef50_Q2NES1: FrhB	53.1163321741
+UniRef50_Q2NES1: FrhB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	53.1163321741
+UniRef50_F8DHP6: ABC transporter, permease protein	53.0934186966
+UniRef50_F8DHP6: ABC transporter, permease protein|g__Streptococcus.s__Streptococcus_mutans	51.0914889928
+UniRef50_F8DHP6: ABC transporter, permease protein|g__Streptococcus.s__Streptococcus_agalactiae	2.0019297038
+UniRef50_Q60151: Glutathione reductase	53.0921544783
+UniRef50_Q60151: Glutathione reductase|g__Streptococcus.s__Streptococcus_mutans	50.9188903457
+UniRef50_Q60151: Glutathione reductase|g__Streptococcus.s__Streptococcus_agalactiae	2.0911483089
+UniRef50_Q60151: Glutathione reductase|unclassified	0.0821158237
+UniRef50_U3SWI7	53.0843956131
+UniRef50_U3SWI7|g__Streptococcus.s__Streptococcus_mutans	53.0843956131
+UniRef50_G7M0T0: NADPH-dependent FMN reductase	53.0667116878
+UniRef50_G7M0T0: NADPH-dependent FMN reductase|g__Clostridium.s__Clostridium_beijerinckii	53.0667116878
+UniRef50_Q2FX82	53.0472824858
+UniRef50_Q2FX82|unclassified	53.0472824858
+UniRef50_Q8DSK8	53.0310078443
+UniRef50_Q8DSK8|g__Streptococcus.s__Streptococcus_mutans	53.0310078443
+UniRef50_U3SW57	53.0293687530
+UniRef50_U3SW57|g__Streptococcus.s__Streptococcus_mutans	53.0293687530
+UniRef50_Q83LB6: Gamma-glutamyl-gamma-aminobutyrate hydrolase	53.0245426077
+UniRef50_Q83LB6: Gamma-glutamyl-gamma-aminobutyrate hydrolase|g__Escherichia.s__Escherichia_coli	52.8442364581
+UniRef50_Q83LB6: Gamma-glutamyl-gamma-aminobutyrate hydrolase|unclassified	0.1803061496
+UniRef50_Q9L6S1: ATP-dependent DNA helicase Rep	53.0072017636
+UniRef50_Q9L6S1: ATP-dependent DNA helicase Rep|g__Escherichia.s__Escherichia_coli	49.8115503027
+UniRef50_Q9L6S1: ATP-dependent DNA helicase Rep|g__Acinetobacter.s__Acinetobacter_baumannii	3.0163794808
+UniRef50_Q9L6S1: ATP-dependent DNA helicase Rep|unclassified	0.1792719802
+UniRef50_C6VMG4: Bifunctional protein: amino acid aminotransferase 2-hydroxyacid dehydrogenase	52.9531656559
+UniRef50_C6VMG4: Bifunctional protein: amino acid aminotransferase 2-hydroxyacid dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	52.9531656559
+UniRef50_Q49X30: Ribosome biogenesis GTPase A	52.9371646982
+UniRef50_Q49X30: Ribosome biogenesis GTPase A|g__Staphylococcus.s__Staphylococcus_epidermidis	52.9371646982
+UniRef50_Q03IX4: Protein translocase subunit SecA	52.9138308707
+UniRef50_Q03IX4: Protein translocase subunit SecA|g__Streptococcus.s__Streptococcus_mutans	49.9354421370
+UniRef50_Q03IX4: Protein translocase subunit SecA|g__Streptococcus.s__Streptococcus_agalactiae	2.9783887337
+UniRef50_P31665	52.9034516785
+UniRef50_P31665|g__Escherichia.s__Escherichia_coli	52.9034516785
+UniRef50_C6SS05	52.8775448265
+UniRef50_C6SS05|g__Streptococcus.s__Streptococcus_mutans	52.8775448265
+UniRef50_Q5NLB9: Type III pantothenate kinase	52.8430714546
+UniRef50_Q5NLB9: Type III pantothenate kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.4809233976
+UniRef50_Q5NLB9: Type III pantothenate kinase|unclassified	0.3621480571
+UniRef50_Q2G9M5: Guanylate kinase	52.8068822380
+UniRef50_Q2G9M5: Guanylate kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.7146728269
+UniRef50_Q2G9M5: Guanylate kinase|unclassified	0.0922094112
+UniRef50_B9KQD9: Phage phi-C31 gp36 major capsid-like protein	52.8019221324
+UniRef50_B9KQD9: Phage phi-C31 gp36 major capsid-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.3602573545
+UniRef50_B9KQD9: Phage phi-C31 gp36 major capsid-like protein|unclassified	2.4416647779
+UniRef50_F3Y7S3: Low molecular weight protein tyrosine phosphatase	52.7687975526
+UniRef50_F3Y7S3: Low molecular weight protein tyrosine phosphatase|g__Streptococcus.s__Streptococcus_mutans	52.7687975526
+UniRef50_Q16CP9	52.7644218611
+UniRef50_Q16CP9|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.7644218611
+UniRef50_Q1JAW0: DNA repair protein RecN	52.7518692904
+UniRef50_Q1JAW0: DNA repair protein RecN|g__Streptococcus.s__Streptococcus_mutans	49.2501156022
+UniRef50_Q1JAW0: DNA repair protein RecN|g__Streptococcus.s__Streptococcus_agalactiae	3.5017536882
+UniRef50_U3SVR2	52.7324028481
+UniRef50_U3SVR2|g__Streptococcus.s__Streptococcus_mutans	52.7324028481
+UniRef50_S5XYI0: Membrane protease subunit HflK	52.7309308121
+UniRef50_S5XYI0: Membrane protease subunit HflK|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.7309308121
+UniRef50_Q2FHU5: Heme oxygenase (staphylobilin-producing) 1	52.7265673742
+UniRef50_Q2FHU5: Heme oxygenase (staphylobilin-producing) 1|g__Staphylococcus.s__Staphylococcus_aureus	52.7265673742
+UniRef50_A8AYI7: N-acetyl-gamma-glutamyl-phosphate reductase	52.7247524576
+UniRef50_A8AYI7: N-acetyl-gamma-glutamyl-phosphate reductase|g__Streptococcus.s__Streptococcus_mutans	52.7247524576
+UniRef50_C0SP91: Putative metallo-hydrolase YycJ	52.7183663757
+UniRef50_C0SP91: Putative metallo-hydrolase YycJ|g__Streptococcus.s__Streptococcus_mutans	52.7183663757
+UniRef50_I4DZ32: Transcriptional regulator homolog	52.7058251268
+UniRef50_I4DZ32: Transcriptional regulator homolog|g__Streptococcus.s__Streptococcus_mutans	52.7058251268
+UniRef50_Q4L4D1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	52.7006522260
+UniRef50_Q4L4D1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	52.7006522260
+UniRef50_A3PPE9	52.6898758641
+UniRef50_A3PPE9|g__Rhodobacter.s__Rhodobacter_sphaeroides	51.3904290068
+UniRef50_A3PPE9|unclassified	1.2994468573
+UniRef50_I6U028: Histidine kinase of the competence regulon, ComD	52.6758163732
+UniRef50_I6U028: Histidine kinase of the competence regulon, ComD|g__Streptococcus.s__Streptococcus_mutans	52.6758163732
+UniRef50_A4WZ55: Heme A synthase	52.6737705684
+UniRef50_A4WZ55: Heme A synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.2312106237
+UniRef50_A4WZ55: Heme A synthase|unclassified	0.4425599447
+UniRef50_K4Q9M3: Ferrous iron transport protein B	52.6552623163
+UniRef50_K4Q9M3: Ferrous iron transport protein B|g__Streptococcus.s__Streptococcus_mutans	52.6552623163
+UniRef50_Q8DY37: UPF0348 protein SAG1656	52.6505062084
+UniRef50_Q8DY37: UPF0348 protein SAG1656|g__Streptococcus.s__Streptococcus_mutans	51.6898914149
+UniRef50_Q8DY37: UPF0348 protein SAG1656|g__Streptococcus.s__Streptococcus_agalactiae	0.9606147935
+UniRef50_C0Z6S0: Argininosuccinate synthase	52.6445279591
+UniRef50_C0Z6S0: Argininosuccinate synthase|g__Streptococcus.s__Streptococcus_mutans	47.3910373004
+UniRef50_C0Z6S0: Argininosuccinate synthase|g__Streptococcus.s__Streptococcus_agalactiae	5.2153235681
+UniRef50_C0Z6S0: Argininosuccinate synthase|unclassified	0.0381670907
+UniRef50_A4WT82	52.6315789474
+UniRef50_A4WT82|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.6315789474
+UniRef50_B6IRR4: 50S ribosomal protein L29	52.6113913409
+UniRef50_B6IRR4: 50S ribosomal protein L29|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.6113913409
+UniRef50_A4WQT8: Membrane protein-like protein	52.5983921277
+UniRef50_A4WQT8: Membrane protein-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	45.3143356985
+UniRef50_A4WQT8: Membrane protein-like protein|unclassified	7.2840564292
+UniRef50_U3SRT1: Ribonuclease R	52.5973652572
+UniRef50_U3SRT1: Ribonuclease R|g__Streptococcus.s__Streptococcus_mutans	52.5973652572
+UniRef50_Q48C82	52.5748258096
+UniRef50_Q48C82|g__Pseudomonas.s__Pseudomonas_aeruginosa	52.5748258096
+UniRef50_Q3J5H6: Bifunctional uridylyltransferase/uridylyl-removing enzyme	52.5700685574
+UniRef50_Q3J5H6: Bifunctional uridylyltransferase/uridylyl-removing enzyme|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.2998890817
+UniRef50_Q3J5H6: Bifunctional uridylyltransferase/uridylyl-removing enzyme|unclassified	0.2701794757
+UniRef50_A1KWW2: Staphylococcus aureus E-1, EDINA plasmid DNA, complete sequence	52.5429014871
+UniRef50_A1KWW2: Staphylococcus aureus E-1, EDINA plasmid DNA, complete sequence|g__Staphylococcus.s__Staphylococcus_aureus	46.2929014871
+UniRef50_A1KWW2: Staphylococcus aureus E-1, EDINA plasmid DNA, complete sequence|unclassified	6.2500000000
+UniRef50_Q832Z5: Ribose-phosphate pyrophosphokinase 2	52.5375783743
+UniRef50_Q832Z5: Ribose-phosphate pyrophosphokinase 2|g__Streptococcus.s__Streptococcus_mutans	52.0666305147
+UniRef50_Q832Z5: Ribose-phosphate pyrophosphokinase 2|unclassified	0.4709478596
+UniRef50_Q8DNI6: Phosphotransferase system, trehalose-specific IIBC component	52.5084942944
+UniRef50_Q8DNI6: Phosphotransferase system, trehalose-specific IIBC component|g__Streptococcus.s__Streptococcus_mutans	52.5084942944
+UniRef50_B4U4S6: Primosomal protein DnaI	52.4988534411
+UniRef50_B4U4S6: Primosomal protein DnaI|g__Streptococcus.s__Streptococcus_mutans	52.4988534411
+UniRef50_P58664	52.4897850924
+UniRef50_P58664|g__Escherichia.s__Escherichia_coli	52.4897850924
+UniRef50_Q8CQX8	52.4796853763
+UniRef50_Q8CQX8|g__Staphylococcus.s__Staphylococcus_epidermidis	52.3486231623
+UniRef50_Q8CQX8|unclassified	0.1310622140
+UniRef50_B9DW70: DNA mismatch repair protein MutL	52.4777481581
+UniRef50_B9DW70: DNA mismatch repair protein MutL|g__Streptococcus.s__Streptococcus_mutans	52.4777481581
+UniRef50_P08624: Nitrogenase iron protein 2	52.4756904586
+UniRef50_P08624: Nitrogenase iron protein 2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	51.6121554354
+UniRef50_P08624: Nitrogenase iron protein 2|unclassified	0.8635350232
+UniRef50_A4WU00: O-antigen polymerase	52.4713361839
+UniRef50_A4WU00: O-antigen polymerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	51.8787359879
+UniRef50_A4WU00: O-antigen polymerase|unclassified	0.5926001960
+UniRef50_P23841: HTH-type transcriptional regulator XapR	52.4697549461
+UniRef50_P23841: HTH-type transcriptional regulator XapR|g__Escherichia.s__Escherichia_coli	52.4697549461
+UniRef50_D9QNR1: Iron-sulfur cluster assembly accessory protein	52.4649152806
+UniRef50_D9QNR1: Iron-sulfur cluster assembly accessory protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.4649152806
+UniRef50_O86034: D-beta-hydroxybutyrate dehydrogenase	52.4561848248
+UniRef50_O86034: D-beta-hydroxybutyrate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.1436222842
+UniRef50_O86034: D-beta-hydroxybutyrate dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.9961088683
+UniRef50_O86034: D-beta-hydroxybutyrate dehydrogenase|unclassified	0.3164536723
+UniRef50_P75804: Soluble aldose sugar dehydrogenase YliI	52.4371208926
+UniRef50_P75804: Soluble aldose sugar dehydrogenase YliI|g__Escherichia.s__Escherichia_coli	45.2324535075
+UniRef50_P75804: Soluble aldose sugar dehydrogenase YliI|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2046673851
+UniRef50_U5NMU8	52.4133676524
+UniRef50_U5NMU8|g__Rhodobacter.s__Rhodobacter_sphaeroides	34.2379692427
+UniRef50_U5NMU8|unclassified	18.1753984097
+UniRef50_A4WRY9	52.4123237667
+UniRef50_A4WRY9|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.6229242145
+UniRef50_A4WRY9|unclassified	10.7893995522
+UniRef50_A4W0T3: Endonuclease III	52.3705139662
+UniRef50_A4W0T3: Endonuclease III|g__Streptococcus.s__Streptococcus_mutans	52.3705139662
+UniRef50_U5P8L5	52.3607566850
+UniRef50_U5P8L5|g__Streptococcus.s__Streptococcus_mutans	50.8677257377
+UniRef50_U5P8L5|g__Streptococcus.s__Streptococcus_agalactiae	1.4930309473
+UniRef50_A5UML7: Predicted AAA ATPase	52.3587940753
+UniRef50_A5UML7: Predicted AAA ATPase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	52.3587940753
+UniRef50_Q46948: Chaperone protein YajL	52.3511106727
+UniRef50_Q46948: Chaperone protein YajL|g__Escherichia.s__Escherichia_coli	52.3511106727
+UniRef50_Q6G5G1: ATP-dependent protease subunit HslV	52.3219338308
+UniRef50_Q6G5G1: ATP-dependent protease subunit HslV|g__Escherichia.s__Escherichia_coli	52.3219338308
+UniRef50_H6PB78: DNA polymerase III, gamma and tau subunits	52.3191449102
+UniRef50_H6PB78: DNA polymerase III, gamma and tau subunits|g__Streptococcus.s__Streptococcus_mutans	51.6599491290
+UniRef50_H6PB78: DNA polymerase III, gamma and tau subunits|g__Streptococcus.s__Streptococcus_agalactiae	0.6591957811
+UniRef50_P0AC82: Lactoylglutathione lyase	52.3155877867
+UniRef50_P0AC82: Lactoylglutathione lyase|g__Escherichia.s__Escherichia_coli	51.6917019047
+UniRef50_P0AC82: Lactoylglutathione lyase|unclassified	0.6238858820
+UniRef50_Q1JFX3	52.3064448691
+UniRef50_Q1JFX3|g__Streptococcus.s__Streptococcus_mutans	52.3064448691
+UniRef50_Q3HKN1: Hemolysin-type calcium-binding protein	52.2990828275
+UniRef50_Q3HKN1: Hemolysin-type calcium-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.2990828275
+UniRef50_C6ST78: Serine protease	52.2966933801
+UniRef50_C6ST78: Serine protease|g__Streptococcus.s__Streptococcus_mutans	51.3506195864
+UniRef50_C6ST78: Serine protease|g__Streptococcus.s__Streptococcus_agalactiae	0.9460737938
+UniRef50_P77285: Electron transport complex subunit RsxG	52.2906988831
+UniRef50_P77285: Electron transport complex subunit RsxG|g__Escherichia.s__Escherichia_coli	52.2906988831
+UniRef50_P77544: Glutathione S-transferase YfcF	52.2836434731
+UniRef50_P77544: Glutathione S-transferase YfcF|g__Escherichia.s__Escherichia_coli	52.2836434731
+UniRef50_A3CL70: Cobalt transport protein CbiM	52.2755873392
+UniRef50_A3CL70: Cobalt transport protein CbiM|g__Methanobrevibacter.s__Methanobrevibacter_smithii	52.2755873392
+UniRef50_P54475: DEAD-box ATP-dependent RNA helicase CshB	52.2600141549
+UniRef50_P54475: DEAD-box ATP-dependent RNA helicase CshB|g__Streptococcus.s__Streptococcus_mutans	49.7171437398
+UniRef50_P54475: DEAD-box ATP-dependent RNA helicase CshB|g__Streptococcus.s__Streptococcus_agalactiae	2.3360376272
+UniRef50_P54475: DEAD-box ATP-dependent RNA helicase CshB|unclassified	0.2068327880
+UniRef50_F0VXG5: Adenylate cyclase	52.2554838334
+UniRef50_F0VXG5: Adenylate cyclase|g__Streptococcus.s__Streptococcus_mutans	52.2554838334
+UniRef50_B2S7V7: Glyoxalase/Bleomycin resistance protein	52.2511106886
+UniRef50_B2S7V7: Glyoxalase/Bleomycin resistance protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.2511106886
+UniRef50_Q5HP23: Acetylglutamate kinase	52.2354145098
+UniRef50_Q5HP23: Acetylglutamate kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	52.2354145098
+UniRef50_D5ASM5: Type I secretion membrane fusion protein, HlyD family	52.2343086194
+UniRef50_D5ASM5: Type I secretion membrane fusion protein, HlyD family|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.2343086194
+UniRef50_K9NJK2: Putrescine transport system permease protein	52.2295977251
+UniRef50_K9NJK2: Putrescine transport system permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.2295977251
+UniRef50_U3SVD1: Glucosyltransferase	52.1995749520
+UniRef50_U3SVD1: Glucosyltransferase|g__Streptococcus.s__Streptococcus_mutans	52.1995749520
+UniRef50_Q8DV44: Acetylglutamate kinase	52.1863358076
+UniRef50_Q8DV44: Acetylglutamate kinase|g__Streptococcus.s__Streptococcus_mutans	52.1863358076
+UniRef50_C5WEU2: Aminodeoxychorismate lyase family	52.1636151921
+UniRef50_C5WEU2: Aminodeoxychorismate lyase family|g__Streptococcus.s__Streptococcus_mutans	52.1636151921
+UniRef50_U3SRQ3: Cell shape-determining protein MreC	52.1545550490
+UniRef50_U3SRQ3: Cell shape-determining protein MreC|g__Streptococcus.s__Streptococcus_mutans	52.1545550490
+UniRef50_I6TSN2: Peptidase	52.1438028409
+UniRef50_I6TSN2: Peptidase|g__Streptococcus.s__Streptococcus_mutans	52.1438028409
+UniRef50_A5UJT8	52.1368517554
+UniRef50_A5UJT8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	50.5904444289
+UniRef50_A5UJT8|unclassified	1.5464073265
+UniRef50_Q8CUA4: Mobilization protein	52.1053665568
+UniRef50_Q8CUA4: Mobilization protein|g__Staphylococcus.s__Staphylococcus_epidermidis	40.1455209204
+UniRef50_Q8CUA4: Mobilization protein|unclassified	11.9598456364
+UniRef50_I3THN7: Binding-protein-dependent transport systems inner membrane component	52.0930783968
+UniRef50_I3THN7: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.0930783968
+UniRef50_Q3IMY5: 50S ribosomal protein L2	52.0849833686
+UniRef50_Q3IMY5: 50S ribosomal protein L2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	52.0849833686
+UniRef50_Q8DT19	52.0707421141
+UniRef50_Q8DT19|g__Streptococcus.s__Streptococcus_mutans	52.0707421141
+UniRef50_A5UL10	52.0630188812
+UniRef50_A5UL10|g__Methanobrevibacter.s__Methanobrevibacter_smithii	52.0630188812
+UniRef50_M7DFK4: (R)-2-hydroxyglutaryl-CoA dehydratase activator-related protein	52.0485104274
+UniRef50_M7DFK4: (R)-2-hydroxyglutaryl-CoA dehydratase activator-related protein|g__Streptococcus.s__Streptococcus_mutans	52.0485104274
+UniRef50_P09431: Nitrogen regulation protein NtrB	52.0434493611
+UniRef50_P09431: Nitrogen regulation protein NtrB|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.0434493611
+UniRef50_B9KQG5: Flagellar hook-associated protein	52.0314444849
+UniRef50_B9KQG5: Flagellar hook-associated protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	52.0314444849
+UniRef50_Q5LSI0: ABC transporter, periplasmic substrate-binding protein	51.9944546489
+UniRef50_Q5LSI0: ABC transporter, periplasmic substrate-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	51.9944546489
+UniRef50_J7Q688	51.9904931670
+UniRef50_J7Q688|g__Escherichia.s__Escherichia_coli	51.9904931670
+UniRef50_A2RKV6: Homoserine kinase	51.9601500747
+UniRef50_A2RKV6: Homoserine kinase|g__Streptococcus.s__Streptococcus_mutans	51.9601500747
+UniRef50_Q7CYZ1	51.9567900832
+UniRef50_Q7CYZ1|g__Rhodobacter.s__Rhodobacter_sphaeroides	51.9050154655
+UniRef50_Q7CYZ1|unclassified	0.0517746177
+UniRef50_Q02136: Histidinol dehydrogenase	51.9465473071
+UniRef50_Q02136: Histidinol dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	51.9465473071
+UniRef50_Q8P1D8	51.9307080491
+UniRef50_Q8P1D8|g__Streptococcus.s__Streptococcus_mutans	50.1092144243
+UniRef50_Q8P1D8|g__Streptococcus.s__Streptococcus_agalactiae	1.8214936248
+UniRef50_A1B9B4	51.9198635482
+UniRef50_A1B9B4|g__Rhodobacter.s__Rhodobacter_sphaeroides	51.9198635482
+UniRef50_C6SS04	51.9167402095
+UniRef50_C6SS04|g__Streptococcus.s__Streptococcus_mutans	51.9167402095
+UniRef50_B2S8A9: Nicotinate phosphoribosyltransferase	51.9132175709
+UniRef50_B2S8A9: Nicotinate phosphoribosyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	51.6266835399
+UniRef50_B2S8A9: Nicotinate phosphoribosyltransferase|unclassified	0.2865340309
+UniRef50_X5QID8: Transposase	51.8971596490
+UniRef50_X5QID8: Transposase|unclassified	51.8971596490
+UniRef50_R9RCS6: MATE efflux family protein	51.8890140426
+UniRef50_R9RCS6: MATE efflux family protein|g__Streptococcus.s__Streptococcus_mutans	51.8890140426
+UniRef50_P07017: Methyl-accepting chemotaxis protein II	51.8677323250
+UniRef50_P07017: Methyl-accepting chemotaxis protein II|g__Escherichia.s__Escherichia_coli	51.8677323250
+UniRef50_Q2IXV2: Transglutaminase-like	51.8662574372
+UniRef50_Q2IXV2: Transglutaminase-like|g__Rhodobacter.s__Rhodobacter_sphaeroides	51.8662574372
+UniRef50_Q93PN3: Ferric hydroxamate receptor 1	51.8658143399
+UniRef50_Q93PN3: Ferric hydroxamate receptor 1|g__Staphylococcus.s__Staphylococcus_aureus	51.8658143399
+UniRef50_P0ADC5: Lipoprotein-releasing system transmembrane protein LolC	51.8513197657
+UniRef50_P0ADC5: Lipoprotein-releasing system transmembrane protein LolC|g__Escherichia.s__Escherichia_coli	35.0051446759
+UniRef50_P0ADC5: Lipoprotein-releasing system transmembrane protein LolC|g__Staphylococcus.s__Staphylococcus_aureus	16.8461750898
+UniRef50_G2TKZ3: NUDIX hydrolase	51.8218397247
+UniRef50_G2TKZ3: NUDIX hydrolase|g__Streptococcus.s__Streptococcus_mutans	50.0102455218
+UniRef50_G2TKZ3: NUDIX hydrolase|g__Streptococcus.s__Streptococcus_agalactiae	1.8115942029
+UniRef50_A8AVP5: ABC transporter, permease protein	51.7949119192
+UniRef50_A8AVP5: ABC transporter, permease protein|g__Streptococcus.s__Streptococcus_mutans	51.7949119192
+UniRef50_Q3IUW6: Putative conjugative transfer factor, TraB	51.7823631653
+UniRef50_Q3IUW6: Putative conjugative transfer factor, TraB|unclassified	31.0842974463
+UniRef50_Q3IUW6: Putative conjugative transfer factor, TraB|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.6980657190
+UniRef50_B9KS54	51.7668017710
+UniRef50_B9KS54|g__Rhodobacter.s__Rhodobacter_sphaeroides	51.3852287774
+UniRef50_B9KS54|unclassified	0.3815729937
+UniRef50_C3MD65: Phosphoribosylaminoimidazole-succinocarboxamide synthase	51.7540690010
+UniRef50_C3MD65: Phosphoribosylaminoimidazole-succinocarboxamide synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.7082759963
+UniRef50_C3MD65: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	1.0457930047
+UniRef50_P57099: Glycerate kinase	51.7129662397
+UniRef50_P57099: Glycerate kinase|g__Streptococcus.s__Streptococcus_mutans	50.4455391168
+UniRef50_P57099: Glycerate kinase|g__Neisseria.s__Neisseria_meningitidis	1.2674271229
+UniRef50_F5M2V1	51.7028658657
+UniRef50_F5M2V1|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.3634079611
+UniRef50_F5M2V1|unclassified	25.3394579046
+UniRef50_D5AMV2	51.6999313224
+UniRef50_D5AMV2|g__Rhodobacter.s__Rhodobacter_sphaeroides	51.2356323798
+UniRef50_D5AMV2|unclassified	0.4642989425
+UniRef50_T1ZL59: DeoR family transcriptional regulator	51.6980441488
+UniRef50_T1ZL59: DeoR family transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	47.7051363474
+UniRef50_T1ZL59: DeoR family transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	3.9929078014
+UniRef50_Q2G1T7: HTH-type transcriptional regulator SarU	51.6932587979
+UniRef50_Q2G1T7: HTH-type transcriptional regulator SarU|g__Staphylococcus.s__Staphylococcus_aureus	51.6932587979
+UniRef50_P50351: Transcriptional regulatory protein ChvI	51.6858232407
+UniRef50_P50351: Transcriptional regulatory protein ChvI|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.4761159138
+UniRef50_P50351: Transcriptional regulatory protein ChvI|unclassified	3.2097073269
+UniRef50_E4PYH8	51.6815277890
+UniRef50_E4PYH8|g__Staphylococcus.s__Staphylococcus_aureus	51.6815277890
+UniRef50_P10423: Alkaline phosphatase isozyme conversion protein	51.6518943486
+UniRef50_P10423: Alkaline phosphatase isozyme conversion protein|g__Escherichia.s__Escherichia_coli	51.6518943486
+UniRef50_J7M1N2: LacI family transcriptional regulator	51.6253949661
+UniRef50_J7M1N2: LacI family transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	51.6253949661
+UniRef50_P77234	51.6094898000
+UniRef50_P77234|g__Escherichia.s__Escherichia_coli	51.6094898000
+UniRef50_A0A023Y025: Multidrug transporter	51.5845687781
+UniRef50_A0A023Y025: Multidrug transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	51.5845687781
+UniRef50_I6SW93: ABC transporter membrane protein subunit and ATP-binding protein	51.5709527261
+UniRef50_I6SW93: ABC transporter membrane protein subunit and ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	51.5709527261
+UniRef50_Q3IVS7	51.5700243628
+UniRef50_Q3IVS7|g__Rhodobacter.s__Rhodobacter_sphaeroides	49.5029752959
+UniRef50_Q3IVS7|unclassified	2.0670490670
+UniRef50_A3PIF9: PRC-barrel domain protein	51.5677058632
+UniRef50_A3PIF9: PRC-barrel domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	45.3474135292
+UniRef50_A3PIF9: PRC-barrel domain protein|unclassified	6.2202923340
+UniRef50_Q3IVM9: Bacteriophage protein gp37	51.5538930384
+UniRef50_Q3IVM9: Bacteriophage protein gp37|g__Rhodobacter.s__Rhodobacter_sphaeroides	51.4273264074
+UniRef50_Q3IVM9: Bacteriophage protein gp37|unclassified	0.1265666310
+UniRef50_D0K828	51.5527670234
+UniRef50_D0K828|g__Staphylococcus.s__Staphylococcus_aureus	51.5527670234
+UniRef50_Q59660: Succinate dehydrogenase hydrophobic membrane anchor subunit	51.5436386087
+UniRef50_Q59660: Succinate dehydrogenase hydrophobic membrane anchor subunit|unclassified	51.5436386087
+UniRef50_Q5M018: DNA topoisomerase 1	51.5337309813
+UniRef50_Q5M018: DNA topoisomerase 1|g__Streptococcus.s__Streptococcus_mutans	51.5337309813
+UniRef50_P0AF79	51.5294839453
+UniRef50_P0AF79|g__Escherichia.s__Escherichia_coli	51.5294839453
+UniRef50_B3GZA0: Siroheme synthase	51.5180813855
+UniRef50_B3GZA0: Siroheme synthase|g__Escherichia.s__Escherichia_coli	46.0202686887
+UniRef50_B3GZA0: Siroheme synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3952129374
+UniRef50_B3GZA0: Siroheme synthase|unclassified	0.1025997595
+UniRef50_N0C5G3	51.5060487434
+UniRef50_N0C5G3|g__Streptococcus.s__Streptococcus_mutans	50.5554784012
+UniRef50_N0C5G3|g__Streptococcus.s__Streptococcus_agalactiae	0.9505703422
+UniRef50_Q1GCD6: Flagellar fliL protein	51.4990846942
+UniRef50_Q1GCD6: Flagellar fliL protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	51.4990846942
+UniRef50_C5N358: Hydrolase, alpha/beta domain protein	51.4776879689
+UniRef50_C5N358: Hydrolase, alpha/beta domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	51.4776879689
+UniRef50_Q8CU58	51.4768349804
+UniRef50_Q8CU58|g__Staphylococcus.s__Staphylococcus_epidermidis	51.0614316898
+UniRef50_Q8CU58|unclassified	0.4154032906
+UniRef50_P19498: Coenzyme F420 hydrogenase subunit gamma	51.4692201905
+UniRef50_P19498: Coenzyme F420 hydrogenase subunit gamma|g__Methanobrevibacter.s__Methanobrevibacter_smithii	51.4692201905
+UniRef50_Q46817: Guanine/hypoxanthine permease GhxQ	51.4557659962
+UniRef50_Q46817: Guanine/hypoxanthine permease GhxQ|g__Escherichia.s__Escherichia_coli	51.4557659962
+UniRef50_A5UL39	51.4348074996
+UniRef50_A5UL39|g__Methanobrevibacter.s__Methanobrevibacter_smithii	51.4348074996
+UniRef50_Q49YS7	51.4127819933
+UniRef50_Q49YS7|g__Staphylococcus.s__Staphylococcus_epidermidis	41.6043488265
+UniRef50_Q49YS7|g__Staphylococcus.s__Staphylococcus_aureus	8.8235294118
+UniRef50_Q49YS7|unclassified	0.9849037550
+UniRef50_Q5LYI8: Tryptophan synthase alpha chain	51.4037691005
+UniRef50_Q5LYI8: Tryptophan synthase alpha chain|g__Streptococcus.s__Streptococcus_mutans	51.4037691005
+UniRef50_Q02151	51.3975839243
+UniRef50_Q02151|g__Streptococcus.s__Streptococcus_mutans	51.3975839243
+UniRef50_P45404: Cytochrome c-type biogenesis protein CycK	51.3974644664
+UniRef50_P45404: Cytochrome c-type biogenesis protein CycK|g__Rhodobacter.s__Rhodobacter_sphaeroides	51.3974644664
+UniRef50_P55045: Formamidopyrimidine-DNA glycosylase	51.3891372668
+UniRef50_P55045: Formamidopyrimidine-DNA glycosylase|g__Streptococcus.s__Streptococcus_mutans	51.1543958053
+UniRef50_P55045: Formamidopyrimidine-DNA glycosylase|unclassified	0.2347414615
+UniRef50_Q59659: Succinate dehydrogenase cytochrome b556 subunit	51.3856569073
+UniRef50_Q59659: Succinate dehydrogenase cytochrome b556 subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	46.4793580753
+UniRef50_Q59659: Succinate dehydrogenase cytochrome b556 subunit|unclassified	4.9062988320
+UniRef50_O34113: LctF	51.3761009175
+UniRef50_O34113: LctF|g__Streptococcus.s__Streptococcus_mutans	51.3761009175
+UniRef50_A5UKT8: DNA repair and recombination protein RadB	51.3645471153
+UniRef50_A5UKT8: DNA repair and recombination protein RadB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	51.3645471153
+UniRef50_T0T8E0: Alanine--tRNA ligase	51.3542792992
+UniRef50_T0T8E0: Alanine--tRNA ligase|g__Streptococcus.s__Streptococcus_mutans	47.3706330565
+UniRef50_T0T8E0: Alanine--tRNA ligase|g__Streptococcus.s__Streptococcus_agalactiae	3.9836462426
+UniRef50_A5IW20: LPXTG-motif cell wall anchor domain	51.3079671320
+UniRef50_A5IW20: LPXTG-motif cell wall anchor domain|g__Staphylococcus.s__Staphylococcus_aureus	51.3079671320
+UniRef50_Q8DS10	51.2986541374
+UniRef50_Q8DS10|g__Streptococcus.s__Streptococcus_mutans	51.2986541374
+UniRef50_A3PMP8: UPF0178 protein Rsph17029_2512	51.2923399599
+UniRef50_A3PMP8: UPF0178 protein Rsph17029_2512|g__Rhodobacter.s__Rhodobacter_sphaeroides	51.1434484096
+UniRef50_A3PMP8: UPF0178 protein Rsph17029_2512|unclassified	0.1488915503
+UniRef50_P0A2T8: Fumarate and nitrate reduction regulatory protein	51.2894226547
+UniRef50_P0A2T8: Fumarate and nitrate reduction regulatory protein|g__Escherichia.s__Escherichia_coli	46.4032402565
+UniRef50_P0A2T8: Fumarate and nitrate reduction regulatory protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8861823981
+UniRef50_F8DJ95: Tat pathway signal sequence domain protein	51.2735812385
+UniRef50_F8DJ95: Tat pathway signal sequence domain protein|g__Streptococcus.s__Streptococcus_mutans	45.2473654441
+UniRef50_F8DJ95: Tat pathway signal sequence domain protein|g__Streptococcus.s__Streptococcus_agalactiae	6.0262157944
+UniRef50_A7ZHD9: Glutathione-regulated potassium-efflux system ancillary protein KefF	51.2701929244
+UniRef50_A7ZHD9: Glutathione-regulated potassium-efflux system ancillary protein KefF|g__Escherichia.s__Escherichia_coli	51.2701929244
+UniRef50_I6U2S4: Phosphopantetheinyl transferase	51.2679547251
+UniRef50_I6U2S4: Phosphopantetheinyl transferase|g__Streptococcus.s__Streptococcus_mutans	51.2679547251
+UniRef50_Q5XCB9: Putative NAD(P)H nitroreductase Spy0809	51.2425556585
+UniRef50_Q5XCB9: Putative NAD(P)H nitroreductase Spy0809|g__Streptococcus.s__Streptococcus_mutans	49.5841808658
+UniRef50_Q5XCB9: Putative NAD(P)H nitroreductase Spy0809|g__Streptococcus.s__Streptococcus_agalactiae	1.6583747927
+UniRef50_A3PR78: Peptidase S15	51.2342043716
+UniRef50_A3PR78: Peptidase S15|g__Rhodobacter.s__Rhodobacter_sphaeroides	51.2342043716
+UniRef50_A7ML57: HTH-type transcriptional activator RhaR	51.1851740154
+UniRef50_A7ML57: HTH-type transcriptional activator RhaR|g__Escherichia.s__Escherichia_coli	51.1851740154
+UniRef50_B9KSR5: Acetyltransferase	51.1752561842
+UniRef50_B9KSR5: Acetyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	51.1752561842
+UniRef50_U3SWF7	51.1509219953
+UniRef50_U3SWF7|g__Streptococcus.s__Streptococcus_mutans	51.1509219953
+UniRef50_P33342: Probable fimbrial chaperone YehC	51.1490333744
+UniRef50_P33342: Probable fimbrial chaperone YehC|g__Escherichia.s__Escherichia_coli	51.1490333744
+UniRef50_Q1JM47: Transporter	51.1105534371
+UniRef50_Q1JM47: Transporter|g__Streptococcus.s__Streptococcus_mutans	51.1105534371
+UniRef50_X5K411: Iron-compound ABC transporter,iron-compound-binding protein	51.1044476940
+UniRef50_X5K411: Iron-compound ABC transporter,iron-compound-binding protein|g__Streptococcus.s__Streptococcus_mutans	48.4922711753
+UniRef50_X5K411: Iron-compound ABC transporter,iron-compound-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	2.4791618246
+UniRef50_X5K411: Iron-compound ABC transporter,iron-compound-binding protein|unclassified	0.1330146941
+UniRef50_Q9CGM7: Dihydroorotase	51.0985730878
+UniRef50_Q9CGM7: Dihydroorotase|g__Streptococcus.s__Streptococcus_mutans	46.5911343659
+UniRef50_Q9CGM7: Dihydroorotase|g__Streptococcus.s__Streptococcus_agalactiae	4.3662004336
+UniRef50_Q9CGM7: Dihydroorotase|unclassified	0.1412382882
+UniRef50_Q9CE02: Glycerol facilitator-aquaporin gla	51.0966391239
+UniRef50_Q9CE02: Glycerol facilitator-aquaporin gla|g__Streptococcus.s__Streptococcus_mutans	51.0966391239
+UniRef50_Q8DYP7: DNA primase	51.0870995618
+UniRef50_Q8DYP7: DNA primase|g__Streptococcus.s__Streptococcus_mutans	48.1838910765
+UniRef50_Q8DYP7: DNA primase|g__Streptococcus.s__Streptococcus_agalactiae	2.9032084853
+UniRef50_I6TQK5	51.0767243404
+UniRef50_I6TQK5|g__Streptococcus.s__Streptococcus_mutans	51.0767243404
+UniRef50_Q8DNY1: 1-acyl-sn-glycerol-3-phosphate acyltransferase	51.0676307844
+UniRef50_Q8DNY1: 1-acyl-sn-glycerol-3-phosphate acyltransferase|g__Streptococcus.s__Streptococcus_mutans	45.5027628834
+UniRef50_Q8DNY1: 1-acyl-sn-glycerol-3-phosphate acyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	5.5648679010
+UniRef50_M2E1P6	51.0497572791
+UniRef50_M2E1P6|g__Streptococcus.s__Streptococcus_mutans	51.0497572791
+UniRef50_P52048	51.0421181914
+UniRef50_P52048|g__Escherichia.s__Escherichia_coli	44.9125759228
+UniRef50_P52048|g__Clostridium.s__Clostridium_beijerinckii	6.1295422686
+UniRef50_Q5M2Y8: Polar amino acid ABC uptake transporter membrane-spanning protein	51.0311284750
+UniRef50_Q5M2Y8: Polar amino acid ABC uptake transporter membrane-spanning protein|g__Streptococcus.s__Streptococcus_mutans	45.0450071386
+UniRef50_Q5M2Y8: Polar amino acid ABC uptake transporter membrane-spanning protein|g__Streptococcus.s__Streptococcus_agalactiae	5.9861213365
+UniRef50_Q2YUD5: Membrane anchored Ser-Asp rich fibrinogen-binding protein	51.0294484371
+UniRef50_Q2YUD5: Membrane anchored Ser-Asp rich fibrinogen-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	50.7219594888
+UniRef50_Q2YUD5: Membrane anchored Ser-Asp rich fibrinogen-binding protein|unclassified	0.3074889482
+UniRef50_I7ENI8: Thioesterase-like protein	51.0189931094
+UniRef50_I7ENI8: Thioesterase-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.0466677782
+UniRef50_I7ENI8: Thioesterase-like protein|unclassified	0.9723253312
+UniRef50_Q8E7H4: Sensor protein LytS	51.0152877021
+UniRef50_Q8E7H4: Sensor protein LytS|g__Streptococcus.s__Streptococcus_mutans	48.8051444175
+UniRef50_Q8E7H4: Sensor protein LytS|g__Streptococcus.s__Streptococcus_agalactiae	2.1112467101
+UniRef50_Q8E7H4: Sensor protein LytS|unclassified	0.0988965745
+UniRef50_F6P2R4	51.0126862977
+UniRef50_F6P2R4|g__Rhodobacter.s__Rhodobacter_sphaeroides	51.0126862977
+UniRef50_T0TW25	51.0100071683
+UniRef50_T0TW25|g__Streptococcus.s__Streptococcus_mutans	51.0100071683
+UniRef50_A3PHA9	51.0011553053
+UniRef50_A3PHA9|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.8652144087
+UniRef50_A3PHA9|unclassified	6.1359408966
+UniRef50_B7ULC6: Xylose isomerase	50.9971482283
+UniRef50_B7ULC6: Xylose isomerase|g__Escherichia.s__Escherichia_coli	50.7263481660
+UniRef50_B7ULC6: Xylose isomerase|unclassified	0.2708000623
+UniRef50_I6U2T1: Polyketide synthase	50.9913707748
+UniRef50_I6U2T1: Polyketide synthase|g__Streptococcus.s__Streptococcus_mutans	50.9913707748
+UniRef50_K8EYP9	50.9821691329
+UniRef50_K8EYP9|g__Streptococcus.s__Streptococcus_mutans	50.9821691329
+UniRef50_I6TXG1: Oxidoreductase	50.9706207205
+UniRef50_I6TXG1: Oxidoreductase|g__Streptococcus.s__Streptococcus_mutans	50.9706207205
+UniRef50_Q47129: Transcriptional activator FeaR	50.9684158155
+UniRef50_Q47129: Transcriptional activator FeaR|g__Escherichia.s__Escherichia_coli	50.9684158155
+UniRef50_A3PR63: Glyoxalase/bleomycin resistance protein/dioxygenase	50.9602609360
+UniRef50_A3PR63: Glyoxalase/bleomycin resistance protein/dioxygenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.9602609360
+UniRef50_UPI000467F222: hypothetical protein	50.9561439430
+UniRef50_UPI000467F222: hypothetical protein|unclassified	50.9561439430
+UniRef50_L1KEE4	50.9477266252
+UniRef50_L1KEE4|unclassified	50.9477266252
+UniRef50_C1C8T6: Alanine racemase	50.9361194761
+UniRef50_C1C8T6: Alanine racemase|g__Streptococcus.s__Streptococcus_mutans	44.1449192597
+UniRef50_C1C8T6: Alanine racemase|g__Streptococcus.s__Streptococcus_agalactiae	6.5858691626
+UniRef50_C1C8T6: Alanine racemase|unclassified	0.2053310537
+UniRef50_P0ABP7: Protein DedA	50.9029364371
+UniRef50_P0ABP7: Protein DedA|g__Escherichia.s__Escherichia_coli	47.8725707959
+UniRef50_P0ABP7: Protein DedA|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0303656412
+UniRef50_B4U5D1: Pyruvate formate-lyase activating enzyme	50.9008048525
+UniRef50_B4U5D1: Pyruvate formate-lyase activating enzyme|g__Streptococcus.s__Streptococcus_mutans	50.9008048525
+UniRef50_T0TSZ1	50.8900876607
+UniRef50_T0TSZ1|g__Streptococcus.s__Streptococcus_mutans	47.8630221336
+UniRef50_T0TSZ1|g__Streptococcus.s__Streptococcus_agalactiae	3.0270655271
+UniRef50_A3PJL0: Peptidoglycan-binding domain 1 protein	50.8890681771
+UniRef50_A3PJL0: Peptidoglycan-binding domain 1 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.8890681771
+UniRef50_Q5FNA2: Transcriptional repressor NrdR	50.8712206269
+UniRef50_Q5FNA2: Transcriptional repressor NrdR|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.8712206269
+UniRef50_F2MT10: HD domain protein	50.7750341270
+UniRef50_F2MT10: HD domain protein|g__Streptococcus.s__Streptococcus_mutans	50.7750341270
+UniRef50_Q5FKZ1: Thymidine kinase	50.7671980229
+UniRef50_Q5FKZ1: Thymidine kinase|g__Streptococcus.s__Streptococcus_mutans	50.7671980229
+UniRef50_Q8DUE1: Ribonuclease HII	50.7216459566
+UniRef50_Q8DUE1: Ribonuclease HII|g__Streptococcus.s__Streptococcus_mutans	50.7216459566
+UniRef50_P75676	50.7065729546
+UniRef50_P75676|g__Escherichia.s__Escherichia_coli	49.0734470819
+UniRef50_P75676|unclassified	1.6331258727
+UniRef50_H8LF45: Xanthine/uracil/vitamin C permease	50.6994459308
+UniRef50_H8LF45: Xanthine/uracil/vitamin C permease|g__Streptococcus.s__Streptococcus_mutans	44.5747395539
+UniRef50_H8LF45: Xanthine/uracil/vitamin C permease|g__Streptococcus.s__Streptococcus_agalactiae	6.1247063770
+UniRef50_Q5LNW7: CpaB family protein	50.6963427328
+UniRef50_Q5LNW7: CpaB family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.6963427328
+UniRef50_P76524: Aminopeptidase YpdF	50.6673651470
+UniRef50_P76524: Aminopeptidase YpdF|g__Escherichia.s__Escherichia_coli	50.6673651470
+UniRef50_B2ACV0: Putative glutathione-dependent formaldehyde-activating enzyme	50.6550184579
+UniRef50_B2ACV0: Putative glutathione-dependent formaldehyde-activating enzyme|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.8157985447
+UniRef50_B2ACV0: Putative glutathione-dependent formaldehyde-activating enzyme|unclassified	1.8392199132
+UniRef50_C7N8H5: Lipoyltransferase and lipoate-protein ligase	50.6538481728
+UniRef50_C7N8H5: Lipoyltransferase and lipoate-protein ligase|g__Streptococcus.s__Streptococcus_mutans	49.1545977980
+UniRef50_C7N8H5: Lipoyltransferase and lipoate-protein ligase|g__Streptococcus.s__Streptococcus_agalactiae	1.4992503748
+UniRef50_F2MUA2: Metallo-beta-lactamase	50.6530080400
+UniRef50_F2MUA2: Metallo-beta-lactamase|g__Streptococcus.s__Streptococcus_mutans	50.6530080400
+UniRef50_D5APM3: Response regulator receiver protein	50.6514899398
+UniRef50_D5APM3: Response regulator receiver protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.6514899398
+UniRef50_Q8CU33	50.6454646149
+UniRef50_Q8CU33|g__Staphylococcus.s__Staphylococcus_epidermidis	50.6454646149
+UniRef50_Q9PIN2: Zinc transporter ZupT	50.6278797193
+UniRef50_Q9PIN2: Zinc transporter ZupT|g__Streptococcus.s__Streptococcus_mutans	50.6278797193
+UniRef50_Q3IZ78: Mesaconyl-CoA hydratase	50.6160586241
+UniRef50_Q3IZ78: Mesaconyl-CoA hydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.6160586241
+UniRef50_A5IU53	50.6090497199
+UniRef50_A5IU53|g__Staphylococcus.s__Staphylococcus_aureus	49.6692114272
+UniRef50_A5IU53|unclassified	0.9398382927
+UniRef50_I6U1N8: Transaminase	50.5986670946
+UniRef50_I6U1N8: Transaminase|g__Streptococcus.s__Streptococcus_mutans	50.5986670946
+UniRef50_A2RLU2: Geranyltranstransferase	50.5961095038
+UniRef50_A2RLU2: Geranyltranstransferase|g__Streptococcus.s__Streptococcus_mutans	48.9961095038
+UniRef50_A2RLU2: Geranyltranstransferase|g__Streptococcus.s__Streptococcus_agalactiae	1.6000000000
+UniRef50_C5N3N0	50.5853144762
+UniRef50_C5N3N0|g__Staphylococcus.s__Staphylococcus_aureus	50.5853144762
+UniRef50_Q8X6C4: Xanthine dehydrogenase iron-sulfur-binding subunit	50.5649073777
+UniRef50_Q8X6C4: Xanthine dehydrogenase iron-sulfur-binding subunit|g__Escherichia.s__Escherichia_coli	50.3454317244
+UniRef50_Q8X6C4: Xanthine dehydrogenase iron-sulfur-binding subunit|unclassified	0.2194756533
+UniRef50_S1SPS9: PTS system transporter subunit IIA	50.5363628220
+UniRef50_S1SPS9: PTS system transporter subunit IIA|g__Streptococcus.s__Streptococcus_mutans	50.5363628220
+UniRef50_Q2YKR3: Adenine deaminase	50.5279739904
+UniRef50_Q2YKR3: Adenine deaminase|g__Rhodobacter.s__Rhodobacter_sphaeroides	49.1335923708
+UniRef50_Q2YKR3: Adenine deaminase|unclassified	1.3943816196
+UniRef50_Q3HKK2: Mandelate racemase/muconate lactonizing enzyme	50.5095995877
+UniRef50_Q3HKK2: Mandelate racemase/muconate lactonizing enzyme|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.5095995877
+UniRef50_P0AC14: Dihydropteroate synthase	50.5053343360
+UniRef50_P0AC14: Dihydropteroate synthase|g__Escherichia.s__Escherichia_coli	49.9289305724
+UniRef50_P0AC14: Dihydropteroate synthase|unclassified	0.5764037636
+UniRef50_K0N9J9: Cellobiose permease IIC component	50.5021384640
+UniRef50_K0N9J9: Cellobiose permease IIC component|g__Streptococcus.s__Streptococcus_mutans	50.5021384640
+UniRef50_Q8X9Z2: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--2,6-diaminopimelate ligase	50.5008042361
+UniRef50_Q8X9Z2: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--2,6-diaminopimelate ligase|g__Escherichia.s__Escherichia_coli	50.4746275445
+UniRef50_Q8X9Z2: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--2,6-diaminopimelate ligase|unclassified	0.0261766916
+UniRef50_Q97S57: Translation initiation factor IF-2	50.4942096021
+UniRef50_Q97S57: Translation initiation factor IF-2|g__Streptococcus.s__Streptococcus_mutans	50.4942096021
+UniRef50_R4ZI73: Hydrolase, haloacid dehalogenase-like family	50.4547560007
+UniRef50_R4ZI73: Hydrolase, haloacid dehalogenase-like family|g__Streptococcus.s__Streptococcus_mutans	48.5960199412
+UniRef50_R4ZI73: Hydrolase, haloacid dehalogenase-like family|g__Streptococcus.s__Streptococcus_agalactiae	1.8587360595
+UniRef50_A5UP24: Predicted type II restriction enzyme, methylase subunit	50.4424831241
+UniRef50_A5UP24: Predicted type II restriction enzyme, methylase subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	50.4424831241
+UniRef50_Q5XAQ7: Ribosome-associated factor Y	50.4314022380
+UniRef50_Q5XAQ7: Ribosome-associated factor Y|g__Streptococcus.s__Streptococcus_mutans	50.4314022380
+UniRef50_Q3IY96: PAS sensor Signal Tranduction Histidine Kinase	50.4149522314
+UniRef50_Q3IY96: PAS sensor Signal Tranduction Histidine Kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.4149522314
+UniRef50_UPI000362C308: hypothetical protein	50.3970233459
+UniRef50_UPI000362C308: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.6852545797
+UniRef50_UPI000362C308: hypothetical protein|unclassified	10.7117687663
+UniRef50_A8IPV3: Acetylglutamate kinase	50.3853789069
+UniRef50_A8IPV3: Acetylglutamate kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	49.8621486081
+UniRef50_A8IPV3: Acetylglutamate kinase|unclassified	0.5232302988
+UniRef50_E2ZXQ0	50.3815452756
+UniRef50_E2ZXQ0|g__Pseudomonas.s__Pseudomonas_aeruginosa	46.7076253868
+UniRef50_E2ZXQ0|unclassified	3.6739198888
+UniRef50_F9V6Y3: ATP-dependent Clp protease proteolytic subunit	50.3562894536
+UniRef50_F9V6Y3: ATP-dependent Clp protease proteolytic subunit|g__Streptococcus.s__Streptococcus_mutans	50.3562894536
+UniRef50_C5WG14: Two component system histidine kinase	50.3553859849
+UniRef50_C5WG14: Two component system histidine kinase|g__Streptococcus.s__Streptococcus_mutans	44.1572507372
+UniRef50_C5WG14: Two component system histidine kinase|g__Streptococcus.s__Streptococcus_agalactiae	6.1981352477
+UniRef50_A5FZN2: Galactarate dehydratase	50.3500131636
+UniRef50_A5FZN2: Galactarate dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.3500131636
+UniRef50_A5IR10: Arsenate reductase and related	50.3160197241
+UniRef50_A5IR10: Arsenate reductase and related|g__Staphylococcus.s__Staphylococcus_aureus	49.8320500716
+UniRef50_A5IR10: Arsenate reductase and related|unclassified	0.4839696526
+UniRef50_Q88V07: DNA polymerase IV	50.3142518147
+UniRef50_Q88V07: DNA polymerase IV|g__Streptococcus.s__Streptococcus_mutans	50.3142518147
+UniRef50_P39834	50.3108099765
+UniRef50_P39834|g__Escherichia.s__Escherichia_coli	50.3108099765
+UniRef50_F9V7S5: Metallo-beta-lactamase superfamily protein	50.2967918681
+UniRef50_F9V7S5: Metallo-beta-lactamase superfamily protein|g__Streptococcus.s__Streptococcus_mutans	50.2967918681
+UniRef50_D3QCC1: Preprotein translocase subunit YajC	50.2774060952
+UniRef50_D3QCC1: Preprotein translocase subunit YajC|g__Staphylococcus.s__Staphylococcus_aureus	25.4066051161
+UniRef50_D3QCC1: Preprotein translocase subunit YajC|g__Staphylococcus.s__Staphylococcus_epidermidis	24.8708009791
+UniRef50_T1YBH0	50.2740852751
+UniRef50_T1YBH0|g__Staphylococcus.s__Staphylococcus_aureus	46.4026822883
+UniRef50_T1YBH0|unclassified	3.8714029868
+UniRef50_Q9CEB7: Putative ribosome biogenesis GTPase RsgA	50.2682073839
+UniRef50_Q9CEB7: Putative ribosome biogenesis GTPase RsgA|g__Streptococcus.s__Streptococcus_mutans	41.3320416121
+UniRef50_Q9CEB7: Putative ribosome biogenesis GTPase RsgA|g__Streptococcus.s__Streptococcus_agalactiae	8.9361657719
+UniRef50_E4PYB8: Replication initiator protein	50.2063672130
+UniRef50_E4PYB8: Replication initiator protein|g__Staphylococcus.s__Staphylococcus_epidermidis	49.7015378087
+UniRef50_E4PYB8: Replication initiator protein|unclassified	0.5048294043
+UniRef50_Q9VMC6: CG9547	50.1920079286
+UniRef50_Q9VMC6: CG9547|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.1920079286
+UniRef50_Q2NHW2: 4-hydroxy-tetrahydrodipicolinate synthase	50.1829426817
+UniRef50_Q2NHW2: 4-hydroxy-tetrahydrodipicolinate synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	50.1829426817
+UniRef50_I6TYU2: Peptide synthetase	50.1780291642
+UniRef50_I6TYU2: Peptide synthetase|g__Streptococcus.s__Streptococcus_mutans	50.1780291642
+UniRef50_D3R5Q5: O-acetyl-L-homoserine sulfhydrolase	50.1727015972
+UniRef50_D3R5Q5: O-acetyl-L-homoserine sulfhydrolase|g__Streptococcus.s__Streptococcus_mutans	47.1554364414
+UniRef50_D3R5Q5: O-acetyl-L-homoserine sulfhydrolase|g__Clostridium.s__Clostridium_beijerinckii	3.0172651559
+UniRef50_A4WPP6: Superoxide dismutase [Cu-Zn]	50.1709734881
+UniRef50_A4WPP6: Superoxide dismutase [Cu-Zn]|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.1709734881
+UniRef50_M4YY04: Ribosome biogenesis GTPase A	50.1670654718
+UniRef50_M4YY04: Ribosome biogenesis GTPase A|g__Streptococcus.s__Streptococcus_mutans	47.5767797917
+UniRef50_M4YY04: Ribosome biogenesis GTPase A|g__Streptococcus.s__Streptococcus_agalactiae	2.5902856801
+UniRef50_M9RK54: UPF0717 family protein	50.1657493619
+UniRef50_M9RK54: UPF0717 family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.1657493619
+UniRef50_S5NA52: Hydrolase	50.1624241067
+UniRef50_S5NA52: Hydrolase|g__Streptococcus.s__Streptococcus_mutans	50.1624241067
+UniRef50_A4VU31: Predicted membrane metal-binding protein	50.1597951176
+UniRef50_A4VU31: Predicted membrane metal-binding protein|g__Streptococcus.s__Streptococcus_mutans	49.1303301391
+UniRef50_A4VU31: Predicted membrane metal-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	1.0294649784
+UniRef50_A6F5Z7: NAD-dependent 4-hydroxybutyrate dehydrogenase	50.1513109192
+UniRef50_A6F5Z7: NAD-dependent 4-hydroxybutyrate dehydrogenase|unclassified	50.1513109192
+UniRef50_Q0VTE1: Peptide deformylase	50.1491998716
+UniRef50_Q0VTE1: Peptide deformylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	43.3075879387
+UniRef50_Q0VTE1: Peptide deformylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1507936508
+UniRef50_Q0VTE1: Peptide deformylase|unclassified	0.6908182821
+UniRef50_S6AZJ1	50.1455215221
+UniRef50_S6AZJ1|g__Streptococcus.s__Streptococcus_mutans	50.1455215221
+UniRef50_P40680: Probable L,D-transpeptidase ErfK/SrfK	50.1387165472
+UniRef50_P40680: Probable L,D-transpeptidase ErfK/SrfK|g__Escherichia.s__Escherichia_coli	49.9983633824
+UniRef50_P40680: Probable L,D-transpeptidase ErfK/SrfK|unclassified	0.1403531648
+UniRef50_F0VY37: PTS system, beta-glucosides-specific IIA component	50.0959767593
+UniRef50_F0VY37: PTS system, beta-glucosides-specific IIA component|g__Streptococcus.s__Streptococcus_mutans	50.0959767593
+UniRef50_I6U3X8	50.0918265860
+UniRef50_I6U3X8|g__Streptococcus.s__Streptococcus_mutans	50.0918265860
+UniRef50_Q1LGM8: Metal-dependent phosphohydrolase, HD subdomain protein	50.0809461672
+UniRef50_Q1LGM8: Metal-dependent phosphohydrolase, HD subdomain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.0809461672
+UniRef50_F5M5C7: XRE family transcriptional regulator	50.0647495225
+UniRef50_F5M5C7: XRE family transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	50.0647495225
+UniRef50_Q59931: NADP-dependent glyceraldehyde-3-phosphate dehydrogenase	50.0137984426
+UniRef50_Q59931: NADP-dependent glyceraldehyde-3-phosphate dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	40.6688888309
+UniRef50_Q59931: NADP-dependent glyceraldehyde-3-phosphate dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	6.8275979875
+UniRef50_Q59931: NADP-dependent glyceraldehyde-3-phosphate dehydrogenase|g__Streptococcus.s__Streptococcus_agalactiae	1.7608819722
+UniRef50_Q59931: NADP-dependent glyceraldehyde-3-phosphate dehydrogenase|unclassified	0.7564296520
+UniRef50_A7ZIZ3	50.0000000000
+UniRef50_A7ZIZ3|g__Escherichia.s__Escherichia_coli	50.0000000000
+UniRef50_J7R0Y6: Escherichia coli IMT2125 genomic chromosome, IMT2125	50.0000000000
+UniRef50_J7R0Y6: Escherichia coli IMT2125 genomic chromosome, IMT2125|g__Escherichia.s__Escherichia_coli	50.0000000000
+UniRef50_C9A4P2: Phosphorylase	49.9861803350
+UniRef50_C9A4P2: Phosphorylase|g__Streptococcus.s__Streptococcus_mutans	49.9861803350
+UniRef50_Q1JF14: Trigger factor	49.9852518557
+UniRef50_Q1JF14: Trigger factor|g__Streptococcus.s__Streptococcus_mutans	48.7537247621
+UniRef50_Q1JF14: Trigger factor|g__Streptococcus.s__Streptococcus_agalactiae	1.2315270936
+UniRef50_Q47WP5: Ribonuclease 3	49.9735724592
+UniRef50_Q47WP5: Ribonuclease 3|g__Escherichia.s__Escherichia_coli	43.4782758885
+UniRef50_Q47WP5: Ribonuclease 3|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4237148218
+UniRef50_Q47WP5: Ribonuclease 3|unclassified	0.0715817489
+UniRef50_I6TW59	49.9701064818
+UniRef50_I6TW59|g__Streptococcus.s__Streptococcus_mutans	49.9701064818
+UniRef50_Q3IW32	49.9558462579
+UniRef50_Q3IW32|g__Rhodobacter.s__Rhodobacter_sphaeroides	45.0925145618
+UniRef50_Q3IW32|unclassified	4.8633316961
+UniRef50_Q8TX36: 50S ribosomal protein L22P	49.9376668471
+UniRef50_Q8TX36: 50S ribosomal protein L22P|g__Methanobrevibacter.s__Methanobrevibacter_smithii	49.9376668471
+UniRef50_T1Z4R2	49.9322139422
+UniRef50_T1Z4R2|g__Streptococcus.s__Streptococcus_mutans	49.9322139422
+UniRef50_F2MTI0: 3-dehydroquinate synthase	49.9167027252
+UniRef50_F2MTI0: 3-dehydroquinate synthase|g__Streptococcus.s__Streptococcus_mutans	46.2849706403
+UniRef50_F2MTI0: 3-dehydroquinate synthase|g__Streptococcus.s__Streptococcus_agalactiae	3.6317320849
+UniRef50_Q8DV84	49.9040522930
+UniRef50_Q8DV84|g__Streptococcus.s__Streptococcus_mutans	49.9040522930
+UniRef50_S5RL61: ATP-dependent DNA helicase	49.8842132285
+UniRef50_S5RL61: ATP-dependent DNA helicase|g__Streptococcus.s__Streptococcus_mutans	49.8842132285
+UniRef50_Q4L3Y7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	49.8729245793
+UniRef50_Q4L3Y7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	49.5488253949
+UniRef50_Q4L3Y7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.3240991843
+UniRef50_V5P4D6: PTS fructose transporter subunit IIB	49.8638840656
+UniRef50_V5P4D6: PTS fructose transporter subunit IIB|g__Streptococcus.s__Streptococcus_mutans	49.8638840656
+UniRef50_P08245	49.8553274972
+UniRef50_P08245|g__Escherichia.s__Escherichia_coli	49.8553274972
+UniRef50_Q6G617	49.8080057058
+UniRef50_Q6G617|g__Staphylococcus.s__Staphylococcus_aureus	47.8282119602
+UniRef50_Q6G617|unclassified	1.9797937456
+UniRef50_U3TGB3: ATPase components of ABC transporters	49.8075570909
+UniRef50_U3TGB3: ATPase components of ABC transporters|g__Streptococcus.s__Streptococcus_mutans	49.8075570909
+UniRef50_C0MBF3: Energy-coupling factor transporter transmembrane protein EcfT	49.8059576066
+UniRef50_C0MBF3: Energy-coupling factor transporter transmembrane protein EcfT|g__Streptococcus.s__Streptococcus_mutans	48.5271852281
+UniRef50_C0MBF3: Energy-coupling factor transporter transmembrane protein EcfT|g__Streptococcus.s__Streptococcus_agalactiae	1.2787723785
+UniRef50_A5ITY8	49.7991721403
+UniRef50_A5ITY8|g__Staphylococcus.s__Staphylococcus_aureus	49.7991721403
+UniRef50_P46384: Protein PilG	49.7977101461
+UniRef50_P46384: Protein PilG|g__Pseudomonas.s__Pseudomonas_aeruginosa	49.7977101461
+UniRef50_A4WNL0: DSBA oxidoreductase	49.7913202572
+UniRef50_A4WNL0: DSBA oxidoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	49.7913202572
+UniRef50_H3WPI1: PF05656 family protein	49.7658827929
+UniRef50_H3WPI1: PF05656 family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	49.7658827929
+UniRef50_Q9FA54: Glucans biosynthesis protein G	49.7512081891
+UniRef50_Q9FA54: Glucans biosynthesis protein G|g__Rhodobacter.s__Rhodobacter_sphaeroides	49.2535946139
+UniRef50_Q9FA54: Glucans biosynthesis protein G|unclassified	0.4976135752
+UniRef50_Q92GE0: 3-oxoacyl-[acyl-carrier-protein] reductase FabG	49.7438829500
+UniRef50_Q92GE0: 3-oxoacyl-[acyl-carrier-protein] reductase FabG|g__Rhodobacter.s__Rhodobacter_sphaeroides	49.6704200926
+UniRef50_Q92GE0: 3-oxoacyl-[acyl-carrier-protein] reductase FabG|unclassified	0.0734628575
+UniRef50_L7WU00	49.7425775958
+UniRef50_L7WU00|g__Staphylococcus.s__Staphylococcus_aureus	49.4672590500
+UniRef50_L7WU00|unclassified	0.2753185459
+UniRef50_C5WH94: Tetra tricopeptide repeat family protein	49.7373242629
+UniRef50_C5WH94: Tetra tricopeptide repeat family protein|g__Streptococcus.s__Streptococcus_mutans	44.1976960645
+UniRef50_C5WH94: Tetra tricopeptide repeat family protein|g__Streptococcus.s__Streptococcus_agalactiae	5.3662107111
+UniRef50_C5WH94: Tetra tricopeptide repeat family protein|unclassified	0.1734174873
+UniRef50_Q0W1R5: Predicted NADPH:quinone reductase (Alcohol dehydrogenase superfamily)	49.7365638383
+UniRef50_Q0W1R5: Predicted NADPH:quinone reductase (Alcohol dehydrogenase superfamily)|g__Rhodobacter.s__Rhodobacter_sphaeroides	49.7365638383
+UniRef50_A4WXA6	49.7320902202
+UniRef50_A4WXA6|g__Rhodobacter.s__Rhodobacter_sphaeroides	49.7320902202
+UniRef50_B9KRB9	49.7049462881
+UniRef50_B9KRB9|unclassified	49.7049462881
+UniRef50_P95786: ATP synthase subunit delta	49.6992212098
+UniRef50_P95786: ATP synthase subunit delta|g__Streptococcus.s__Streptococcus_mutans	49.6992212098
+UniRef50_I6TX78: Competence protein/transcription factor	49.6836546027
+UniRef50_I6TX78: Competence protein/transcription factor|g__Streptococcus.s__Streptococcus_mutans	45.4014978644
+UniRef50_I6TX78: Competence protein/transcription factor|g__Streptococcus.s__Streptococcus_agalactiae	4.2821567383
+UniRef50_UPI00047C7F40: hypothetical protein	49.6762544793
+UniRef50_UPI00047C7F40: hypothetical protein|unclassified	49.6762544793
+UniRef50_D4FMJ9	49.6760408051
+UniRef50_D4FMJ9|g__Staphylococcus.s__Staphylococcus_epidermidis	49.6760408051
+UniRef50_B9KWR6: ABC sugar transporter, periplasmic lignad binding protein	49.6668480055
+UniRef50_B9KWR6: ABC sugar transporter, periplasmic lignad binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	49.6668480055
+UniRef50_B3W6P3: Divalent metal cation transporter MntH	49.6591140734
+UniRef50_B3W6P3: Divalent metal cation transporter MntH|g__Streptococcus.s__Streptococcus_mutans	43.5525820999
+UniRef50_B3W6P3: Divalent metal cation transporter MntH|g__Streptococcus.s__Streptococcus_agalactiae	6.1065319735
+UniRef50_O32332: Glucitol/sorbitol permease IIC component	49.6584069397
+UniRef50_O32332: Glucitol/sorbitol permease IIC component|g__Streptococcus.s__Streptococcus_mutans	49.6584069397
+UniRef50_Q031X8: D-alanine--D-alanine ligase	49.6432999869
+UniRef50_Q031X8: D-alanine--D-alanine ligase|g__Streptococcus.s__Streptococcus_mutans	46.2188046084
+UniRef50_Q031X8: D-alanine--D-alanine ligase|g__Streptococcus.s__Streptococcus_agalactiae	3.4244953785
+UniRef50_B9KS02: Heat shock protein Hsp20	49.6318384273
+UniRef50_B9KS02: Heat shock protein Hsp20|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.7160886401
+UniRef50_B9KS02: Heat shock protein Hsp20|unclassified	10.9157497872
+UniRef50_A2RE15: Cell envelope-related transcriptional attenuator domain protein	49.6194007105
+UniRef50_A2RE15: Cell envelope-related transcriptional attenuator domain protein|g__Streptococcus.s__Streptococcus_mutans	49.6194007105
+UniRef50_Q03KT7: Dihydroorotate dehydrogenase B (NAD(+)), electron transfer subunit	49.5939312713
+UniRef50_Q03KT7: Dihydroorotate dehydrogenase B (NAD(+)), electron transfer subunit|g__Streptococcus.s__Streptococcus_mutans	49.5939312713
+UniRef50_Q48662: Malolactic enzyme	49.5463953720
+UniRef50_Q48662: Malolactic enzyme|g__Streptococcus.s__Streptococcus_mutans	49.5463953720
+UniRef50_P26172: Geranylgeranyl diphosphate reductase	49.5329503731
+UniRef50_P26172: Geranylgeranyl diphosphate reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	49.3934164462
+UniRef50_P26172: Geranylgeranyl diphosphate reductase|unclassified	0.1395339269
+UniRef50_Q8CTD3	49.5193991819
+UniRef50_Q8CTD3|g__Staphylococcus.s__Staphylococcus_epidermidis	49.5193991819
+UniRef50_Q8DWA4	49.4989654759
+UniRef50_Q8DWA4|g__Streptococcus.s__Streptococcus_mutans	49.4989654759
+UniRef50_P45548: Phosphotriesterase homology protein	49.4973738779
+UniRef50_P45548: Phosphotriesterase homology protein|g__Escherichia.s__Escherichia_coli	49.4973738779
+UniRef50_Q5HKS4: IS1272-like transposase, degenerate	49.4859297054
+UniRef50_Q5HKS4: IS1272-like transposase, degenerate|g__Staphylococcus.s__Staphylococcus_epidermidis	47.9948380260
+UniRef50_Q5HKS4: IS1272-like transposase, degenerate|unclassified	1.4910916794
+UniRef50_Q38XG4: 3-oxoacyl-[acyl-carrier-protein] synthase 3	49.4857534492
+UniRef50_Q38XG4: 3-oxoacyl-[acyl-carrier-protein] synthase 3|g__Streptococcus.s__Streptococcus_mutans	49.3774268042
+UniRef50_Q38XG4: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	0.1083266450
+UniRef50_P38487: Creatinase	49.4679795176
+UniRef50_P38487: Creatinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	49.4679795176
+UniRef50_O27572: Probable tRNA pseudouridine synthase D	49.4660906364
+UniRef50_O27572: Probable tRNA pseudouridine synthase D|g__Methanobrevibacter.s__Methanobrevibacter_smithii	49.1254720736
+UniRef50_O27572: Probable tRNA pseudouridine synthase D|unclassified	0.3406185628
+UniRef50_Q5HLQ1	49.4484864869
+UniRef50_Q5HLQ1|g__Staphylococcus.s__Staphylococcus_epidermidis	48.9976756625
+UniRef50_Q5HLQ1|unclassified	0.4508108244
+UniRef50_F5TD70: Type I site-specific deoxyribonuclease, HsdR family	49.4394047583
+UniRef50_F5TD70: Type I site-specific deoxyribonuclease, HsdR family|g__Streptococcus.s__Streptococcus_mutans	49.4394047583
+UniRef50_Q5M6A1: Undecaprenyl-diphosphatase	49.4341514509
+UniRef50_Q5M6A1: Undecaprenyl-diphosphatase|g__Streptococcus.s__Streptococcus_mutans	32.7962294695
+UniRef50_Q5M6A1: Undecaprenyl-diphosphatase|g__Streptococcus.s__Streptococcus_agalactiae	16.6379219814
+UniRef50_Q8P322: tRNA(Ile)-lysidine synthase	49.4333561720
+UniRef50_Q8P322: tRNA(Ile)-lysidine synthase|g__Streptococcus.s__Streptococcus_mutans	45.5372519779
+UniRef50_Q8P322: tRNA(Ile)-lysidine synthase|g__Streptococcus.s__Streptococcus_agalactiae	3.8961041941
+UniRef50_A5UP25: Predicted type II restriction enzyme, methylase subunit	49.4156415862
+UniRef50_A5UP25: Predicted type II restriction enzyme, methylase subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	49.4156415862
+UniRef50_P37127: Protein AegA	49.3995622616
+UniRef50_P37127: Protein AegA|g__Escherichia.s__Escherichia_coli	49.3995622616
+UniRef50_I6TCA9: Tagatose-6-phosphate kinase	49.3906182653
+UniRef50_I6TCA9: Tagatose-6-phosphate kinase|g__Streptococcus.s__Streptococcus_mutans	47.6928253960
+UniRef50_I6TCA9: Tagatose-6-phosphate kinase|g__Streptococcus.s__Streptococcus_agalactiae	1.6977928693
+UniRef50_L8A618: PTS system, galactose-inducible IIB component, PTS system, galactose-inducible IIC component	49.3884020457
+UniRef50_L8A618: PTS system, galactose-inducible IIB component, PTS system, galactose-inducible IIC component|g__Streptococcus.s__Streptococcus_mutans	49.3884020457
+UniRef50_A6U5R2: CDP-alcohol phosphatidyltransferase	49.3867218791
+UniRef50_A6U5R2: CDP-alcohol phosphatidyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	49.3867218791
+UniRef50_Q5LZ72: Phenylalanine--tRNA ligase beta subunit	49.3670867243
+UniRef50_Q5LZ72: Phenylalanine--tRNA ligase beta subunit|g__Streptococcus.s__Streptococcus_mutans	45.6037846648
+UniRef50_Q5LZ72: Phenylalanine--tRNA ligase beta subunit|g__Streptococcus.s__Streptococcus_agalactiae	3.7633020595
+UniRef50_R7PX51: Peptidase M50	49.3483222876
+UniRef50_R7PX51: Peptidase M50|g__Methanobrevibacter.s__Methanobrevibacter_smithii	49.3483222876
+UniRef50_Q8DRY1	49.3261892134
+UniRef50_Q8DRY1|g__Streptococcus.s__Streptococcus_mutans	49.3261892134
+UniRef50_P37683: Inner membrane protein YiaV	49.3214599789
+UniRef50_P37683: Inner membrane protein YiaV|g__Escherichia.s__Escherichia_coli	49.3214599789
+UniRef50_R7A897	49.3078937468
+UniRef50_R7A897|g__Streptococcus.s__Streptococcus_mutans	47.3921849346
+UniRef50_R7A897|g__Streptococcus.s__Streptococcus_agalactiae	1.9157088123
+UniRef50_D0K7S8	49.3026792367
+UniRef50_D0K7S8|g__Staphylococcus.s__Staphylococcus_aureus	43.0259231543
+UniRef50_D0K7S8|unclassified	6.2767560824
+UniRef50_D2J8F1	49.2992025286
+UniRef50_D2J8F1|unclassified	31.0933104399
+UniRef50_D2J8F1|g__Staphylococcus.s__Staphylococcus_aureus	18.2058920887
+UniRef50_I1ZMC2: Multidrug ABC transporter, ATPase and permease component	49.2850571015
+UniRef50_I1ZMC2: Multidrug ABC transporter, ATPase and permease component|g__Streptococcus.s__Streptococcus_mutans	47.9066761671
+UniRef50_I1ZMC2: Multidrug ABC transporter, ATPase and permease component|g__Streptococcus.s__Streptococcus_agalactiae	1.3783809344
+UniRef50_U5P8L4: Membrane protein	49.2756839126
+UniRef50_U5P8L4: Membrane protein|g__Streptococcus.s__Streptococcus_mutans	49.2253242069
+UniRef50_U5P8L4: Membrane protein|unclassified	0.0503597057
+UniRef50_B7K205: Peptide chain release factor 1	49.2600115340
+UniRef50_B7K205: Peptide chain release factor 1|g__Streptococcus.s__Streptococcus_mutans	49.2600115340
+UniRef50_Q5LN51: RmuC domain protein	49.2275540887
+UniRef50_Q5LN51: RmuC domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	49.2275540887
+UniRef50_D5GYN2: Transcriptional regulator, repressor of sugar transport operon	49.2220751097
+UniRef50_D5GYN2: Transcriptional regulator, repressor of sugar transport operon|g__Streptococcus.s__Streptococcus_mutans	49.2220751097
+UniRef50_A3NQD4: Multifunctional CCA protein	49.2180016165
+UniRef50_A3NQD4: Multifunctional CCA protein|g__Escherichia.s__Escherichia_coli	43.1180473281
+UniRef50_A3NQD4: Multifunctional CCA protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8386222398
+UniRef50_A3NQD4: Multifunctional CCA protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.2613320486
+UniRef50_Q3J2S9	49.2089064070
+UniRef50_Q3J2S9|g__Rhodobacter.s__Rhodobacter_sphaeroides	49.2089064070
+UniRef50_D1BPV2: NAD(P)H dehydrogenase (Quinone)	49.2028565298
+UniRef50_D1BPV2: NAD(P)H dehydrogenase (Quinone)|g__Streptococcus.s__Streptococcus_mutans	49.2028565298
+UniRef50_Q8DVQ3: Ribosome maturation factor RimP	49.2013748239
+UniRef50_Q8DVQ3: Ribosome maturation factor RimP|g__Streptococcus.s__Streptococcus_mutans	49.2013748239
+UniRef50_P59676: Penicillin-binding protein 2X	49.1952102595
+UniRef50_P59676: Penicillin-binding protein 2X|g__Streptococcus.s__Streptococcus_mutans	45.3395236321
+UniRef50_P59676: Penicillin-binding protein 2X|g__Streptococcus.s__Streptococcus_agalactiae	3.8556866274
+UniRef50_B9KW86	49.1849633208
+UniRef50_B9KW86|unclassified	49.1849633208
+UniRef50_Q03UP2: Aryl-alcohol dehydrogenase family enzyme	49.1698232338
+UniRef50_Q03UP2: Aryl-alcohol dehydrogenase family enzyme|g__Streptococcus.s__Streptococcus_mutans	49.1698232338
+UniRef50_A6QGM1: ABC transporter ATP-binding protein	49.1556363358
+UniRef50_A6QGM1: ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	49.1556363358
+UniRef50_Q8DT90: Ribonuclease Z	49.1434424662
+UniRef50_Q8DT90: Ribonuclease Z|g__Streptococcus.s__Streptococcus_mutans	43.9432542929
+UniRef50_Q8DT90: Ribonuclease Z|g__Streptococcus.s__Streptococcus_agalactiae	5.2001881733
+UniRef50_P0A4L9: DNA gyrase subunit B	49.1410418930
+UniRef50_P0A4L9: DNA gyrase subunit B|g__Streptococcus.s__Streptococcus_mutans	45.3644705449
+UniRef50_P0A4L9: DNA gyrase subunit B|g__Streptococcus.s__Streptococcus_agalactiae	3.7765713481
+UniRef50_J9YXD5: Amino acid/amide ABC transporter membrane protein, 2, HAAT family	49.1303936730
+UniRef50_J9YXD5: Amino acid/amide ABC transporter membrane protein, 2, HAAT family|g__Rhodobacter.s__Rhodobacter_sphaeroides	49.1303936730
+UniRef50_Q3J3W5: Putative head portal protein, HK97 family	49.1157786006
+UniRef50_Q3J3W5: Putative head portal protein, HK97 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.4471234790
+UniRef50_Q3J3W5: Putative head portal protein, HK97 family|unclassified	0.6686551217
+UniRef50_O69787: Choline-sulfatase	49.0764490441
+UniRef50_O69787: Choline-sulfatase|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.4088830650
+UniRef50_O69787: Choline-sulfatase|unclassified	0.6675659791
+UniRef50_A5UNF8: Transporter	49.0745702623
+UniRef50_A5UNF8: Transporter|g__Methanobrevibacter.s__Methanobrevibacter_smithii	49.0745702623
+UniRef50_B9KQJ6: Flagellar hook capping protein	49.0710237343
+UniRef50_B9KQJ6: Flagellar hook capping protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.9276826499
+UniRef50_B9KQJ6: Flagellar hook capping protein|unclassified	1.1433410844
+UniRef50_Q8CP91: ABC transporter protein	49.0706101959
+UniRef50_Q8CP91: ABC transporter protein|g__Staphylococcus.s__Staphylococcus_epidermidis	49.0706101959
+UniRef50_P0ACQ2: Ribose operon repressor	49.0483530579
+UniRef50_P0ACQ2: Ribose operon repressor|g__Escherichia.s__Escherichia_coli	49.0483530579
+UniRef50_A5UN85	49.0353540259
+UniRef50_A5UN85|g__Methanobrevibacter.s__Methanobrevibacter_smithii	49.0353540259
+UniRef50_F0VVV7: Two-component sensor protein	49.0347206404
+UniRef50_F0VVV7: Two-component sensor protein|g__Streptococcus.s__Streptococcus_mutans	46.3847698046
+UniRef50_F0VVV7: Two-component sensor protein|g__Streptococcus.s__Streptococcus_agalactiae	2.6499508358
+UniRef50_B2S648: Protein RecA	49.0233267972
+UniRef50_B2S648: Protein RecA|g__Streptococcus.s__Streptococcus_mutans	44.9811463709
+UniRef50_B2S648: Protein RecA|g__Streptococcus.s__Streptococcus_agalactiae	4.0421804263
+UniRef50_P16692: Phosphoribosyl 1,2-cyclic phosphodiesterase	49.0185852122
+UniRef50_P16692: Phosphoribosyl 1,2-cyclic phosphodiesterase|g__Escherichia.s__Escherichia_coli	49.0185852122
+UniRef50_P00497: Amidophosphoribosyltransferase	49.0172004125
+UniRef50_P00497: Amidophosphoribosyltransferase|g__Streptococcus.s__Streptococcus_mutans	48.8299098188
+UniRef50_P00497: Amidophosphoribosyltransferase|unclassified	0.1872905937
+UniRef50_A5UK18	48.9972411596
+UniRef50_A5UK18|g__Methanobrevibacter.s__Methanobrevibacter_smithii	46.8513184129
+UniRef50_A5UK18|unclassified	2.1459227468
+UniRef50_S5Y8D8: DNA topoisomerase 1	48.9715234630
+UniRef50_S5Y8D8: DNA topoisomerase 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.9715234630
+UniRef50_Q70AC7: Methylmalonyl-CoA carboxyltransferase 5S subunit	48.9686859778
+UniRef50_Q70AC7: Methylmalonyl-CoA carboxyltransferase 5S subunit|g__Streptococcus.s__Streptococcus_mutans	48.9686859778
+UniRef50_P02976: Immunoglobulin G-binding protein A	48.9677757032
+UniRef50_P02976: Immunoglobulin G-binding protein A|g__Staphylococcus.s__Staphylococcus_aureus	48.9677757032
+UniRef50_Q02ZD2: Redox-sensing transcriptional repressor Rex	48.9651740167
+UniRef50_Q02ZD2: Redox-sensing transcriptional repressor Rex|g__Streptococcus.s__Streptococcus_mutans	48.9651740167
+UniRef50_B9KW91: Serine acetyltransferase	48.9586163351
+UniRef50_B9KW91: Serine acetyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.9586163351
+UniRef50_M7D3U9	48.9556437459
+UniRef50_M7D3U9|g__Streptococcus.s__Streptococcus_mutans	48.9556437459
+UniRef50_T0TUM6: 5'-nucleotidase	48.9534292309
+UniRef50_T0TUM6: 5'-nucleotidase|g__Streptococcus.s__Streptococcus_mutans	48.9534292309
+UniRef50_Q07637: Pyruvate kinase	48.9244206479
+UniRef50_Q07637: Pyruvate kinase|g__Streptococcus.s__Streptococcus_mutans	44.3755255545
+UniRef50_Q07637: Pyruvate kinase|g__Streptococcus.s__Streptococcus_agalactiae	4.5488950934
+UniRef50_P65213: Potassium-transporting ATPase C chain 1	48.9198743117
+UniRef50_P65213: Potassium-transporting ATPase C chain 1|g__Staphylococcus.s__Staphylococcus_aureus	47.0645867422
+UniRef50_P65213: Potassium-transporting ATPase C chain 1|unclassified	1.8552875696
+UniRef50_V9U722	48.9149070721
+UniRef50_V9U722|unclassified	48.9149070721
+UniRef50_Q7ZAK9: Segregation and condensation protein B	48.9048070479
+UniRef50_Q7ZAK9: Segregation and condensation protein B|g__Streptococcus.s__Streptococcus_mutans	42.0466705890
+UniRef50_Q7ZAK9: Segregation and condensation protein B|g__Streptococcus.s__Streptococcus_agalactiae	6.8581364589
+UniRef50_C7ZV90: Thioredoxin	48.8931784385
+UniRef50_C7ZV90: Thioredoxin|g__Staphylococcus.s__Staphylococcus_aureus	48.8931784385
+UniRef50_P0A0I4: Protein translocase subunit SecE	48.8640032284
+UniRef50_P0A0I4: Protein translocase subunit SecE|g__Staphylococcus.s__Staphylococcus_aureus	37.5000000000
+UniRef50_P0A0I4: Protein translocase subunit SecE|g__Staphylococcus.s__Staphylococcus_epidermidis	11.3640032284
+UniRef50_I6T6W0: Dehydrogenase	48.8478274929
+UniRef50_I6T6W0: Dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	48.8478274929
+UniRef50_D1GMZ6: Phage minor head protein	48.8322273900
+UniRef50_D1GMZ6: Phage minor head protein|g__Staphylococcus.s__Staphylococcus_aureus	48.8322273900
+UniRef50_P46340: Probable ABC transporter permease protein YqgI	48.8238888644
+UniRef50_P46340: Probable ABC transporter permease protein YqgI|g__Streptococcus.s__Streptococcus_mutans	45.4130139112
+UniRef50_P46340: Probable ABC transporter permease protein YqgI|g__Streptococcus.s__Streptococcus_agalactiae	3.4108749532
+UniRef50_U5PCG2: ABC transporter ATP-binding protein	48.8075518010
+UniRef50_U5PCG2: ABC transporter ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	48.8075518010
+UniRef50_A7X2A9: Peptide methionine sulfoxide reductase MsrB	48.7911363124
+UniRef50_A7X2A9: Peptide methionine sulfoxide reductase MsrB|g__Staphylococcus.s__Staphylococcus_aureus	48.5368915033
+UniRef50_A7X2A9: Peptide methionine sulfoxide reductase MsrB|unclassified	0.2542448090
+UniRef50_C6SQK1	48.7777442352
+UniRef50_C6SQK1|g__Streptococcus.s__Streptococcus_mutans	48.7777442352
+UniRef50_Q5XAF5: PTS system mannose-specific EIIAB component	48.7629841461
+UniRef50_Q5XAF5: PTS system mannose-specific EIIAB component|g__Streptococcus.s__Streptococcus_mutans	37.0114894344
+UniRef50_Q5XAF5: PTS system mannose-specific EIIAB component|g__Streptococcus.s__Streptococcus_agalactiae	6.3703447590
+UniRef50_Q5XAF5: PTS system mannose-specific EIIAB component|g__Clostridium.s__Clostridium_beijerinckii	5.3811499527
+UniRef50_A5ULV9: Phosphatidylserine synthase, PssA	48.7410988785
+UniRef50_A5ULV9: Phosphatidylserine synthase, PssA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	48.7410988785
+UniRef50_P56579: Glucitol/sorbitol permease IIC component	48.7402896753
+UniRef50_P56579: Glucitol/sorbitol permease IIC component|g__Escherichia.s__Escherichia_coli	48.7402896753
+UniRef50_C6SPV4	48.7357475505
+UniRef50_C6SPV4|g__Streptococcus.s__Streptococcus_mutans	48.7357475505
+UniRef50_P39671: Phosphoglucomutase	48.7263429303
+UniRef50_P39671: Phosphoglucomutase|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.6786496316
+UniRef50_P39671: Phosphoglucomutase|unclassified	0.0476932987
+UniRef50_Q8DUS0	48.7159296254
+UniRef50_Q8DUS0|g__Streptococcus.s__Streptococcus_mutans	48.7159296254
+UniRef50_A1B1F4: 3-oxoacyl-[acyl-carrier-protein] synthase II	48.7104173470
+UniRef50_A1B1F4: 3-oxoacyl-[acyl-carrier-protein] synthase II|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.7104173470
+UniRef50_B2S5M8: Glutamate--tRNA ligase 1	48.6903960969
+UniRef50_B2S5M8: Glutamate--tRNA ligase 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.3195133286
+UniRef50_B2S5M8: Glutamate--tRNA ligase 1|unclassified	0.3708827684
+UniRef50_W8TS80	48.6656200942
+UniRef50_W8TS80|g__Escherichia.s__Escherichia_coli	48.6656200942
+UniRef50_Q8DUT9	48.6636481426
+UniRef50_Q8DUT9|g__Streptococcus.s__Streptococcus_mutans	48.6636481426
+UniRef50_Q5XAE3: Malonyl CoA-acyl carrier protein transacylase	48.6349248517
+UniRef50_Q5XAE3: Malonyl CoA-acyl carrier protein transacylase|g__Streptococcus.s__Streptococcus_mutans	46.7622656756
+UniRef50_Q5XAE3: Malonyl CoA-acyl carrier protein transacylase|g__Streptococcus.s__Streptococcus_agalactiae	1.8726591760
+UniRef50_R5PQE2: ATPase	48.6163012801
+UniRef50_R5PQE2: ATPase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	48.6163012801
+UniRef50_Q2YXC0: FPRL1 inhibitory protein	48.5858698889
+UniRef50_Q2YXC0: FPRL1 inhibitory protein|g__Staphylococcus.s__Staphylococcus_aureus	48.5858698889
+UniRef50_Q8DW15: Glutathione biosynthesis bifunctional protein GshAB	48.5834297796
+UniRef50_Q8DW15: Glutathione biosynthesis bifunctional protein GshAB|g__Streptococcus.s__Streptococcus_mutans	46.2050371941
+UniRef50_Q8DW15: Glutathione biosynthesis bifunctional protein GshAB|g__Streptococcus.s__Streptococcus_agalactiae	2.3783925855
+UniRef50_A9CR98	48.5826184148
+UniRef50_A9CR98|g__Staphylococcus.s__Staphylococcus_aureus	48.5826184148
+UniRef50_Q8CNZ3: Type IV prepilin peptidase	48.5657947246
+UniRef50_Q8CNZ3: Type IV prepilin peptidase|g__Staphylococcus.s__Staphylococcus_epidermidis	48.5657947246
+UniRef50_Q3IVV1: Periplasmic sensor signal transduction histidine kinase	48.5590331072
+UniRef50_Q3IVV1: Periplasmic sensor signal transduction histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.5590331072
+UniRef50_Q5M3F8: Polysaccharide biosynthesis protein	48.5470567619
+UniRef50_Q5M3F8: Polysaccharide biosynthesis protein|g__Streptococcus.s__Streptococcus_mutans	48.4739751770
+UniRef50_Q5M3F8: Polysaccharide biosynthesis protein|unclassified	0.0730815849
+UniRef50_B2IQP4: Peptidase, U32 family	48.5418828628
+UniRef50_B2IQP4: Peptidase, U32 family|g__Streptococcus.s__Streptococcus_mutans	47.7636727460
+UniRef50_B2IQP4: Peptidase, U32 family|g__Streptococcus.s__Streptococcus_agalactiae	0.7782101167
+UniRef50_M5ABS1: Antiholin-like protein LrgB	48.5418416693
+UniRef50_M5ABS1: Antiholin-like protein LrgB|g__Streptococcus.s__Streptococcus_mutans	46.8411613972
+UniRef50_M5ABS1: Antiholin-like protein LrgB|g__Streptococcus.s__Streptococcus_agalactiae	1.7006802721
+UniRef50_Q8RE73: Transcriptional regulator, DeoR family	48.5235266179
+UniRef50_Q8RE73: Transcriptional regulator, DeoR family|g__Streptococcus.s__Streptococcus_mutans	48.5235266179
+UniRef50_K4PVR2: CBS domain protein	48.5146462628
+UniRef50_K4PVR2: CBS domain protein|g__Streptococcus.s__Streptococcus_mutans	48.5146462628
+UniRef50_Q5LQ23: Paraquat-inducible protein A, putative	48.5126029483
+UniRef50_Q5LQ23: Paraquat-inducible protein A, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.5126029483
+UniRef50_Q47152	48.4944070850
+UniRef50_Q47152|g__Escherichia.s__Escherichia_coli	48.4944070850
+UniRef50_M4YX89: Stage 0 sporulation protein	48.4936375083
+UniRef50_M4YX89: Stage 0 sporulation protein|g__Streptococcus.s__Streptococcus_mutans	48.4936375083
+UniRef50_B8CRT5: Homoserine O-succinyltransferase	48.4908163161
+UniRef50_B8CRT5: Homoserine O-succinyltransferase|g__Escherichia.s__Escherichia_coli	48.1983978644
+UniRef50_B8CRT5: Homoserine O-succinyltransferase|unclassified	0.2924184517
+UniRef50_I6SVD2: ABC transporter permease	48.4834546186
+UniRef50_I6SVD2: ABC transporter permease|g__Streptococcus.s__Streptococcus_mutans	48.1552116940
+UniRef50_I6SVD2: ABC transporter permease|unclassified	0.3282429246
+UniRef50_I6TYL9	48.4829948829
+UniRef50_I6TYL9|g__Streptococcus.s__Streptococcus_mutans	48.4829948829
+UniRef50_P75874	48.4779388086
+UniRef50_P75874|g__Escherichia.s__Escherichia_coli	48.4779388086
+UniRef50_A3PGQ0: ErfK/YbiS/YcfS/YnhG family protein	48.4649093391
+UniRef50_A3PGQ0: ErfK/YbiS/YcfS/YnhG family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.4649093391
+UniRef50_J7M8F1: Primosome assembly protein	48.4456913089
+UniRef50_J7M8F1: Primosome assembly protein|g__Streptococcus.s__Streptococcus_mutans	48.4456913089
+UniRef50_P38392: Superinfection exclusion protein B	48.4169051540
+UniRef50_P38392: Superinfection exclusion protein B|g__Escherichia.s__Escherichia_coli	48.4169051540
+UniRef50_Q8DR59: Penicillin-binding protein 1A	48.4100587911
+UniRef50_Q8DR59: Penicillin-binding protein 1A|g__Streptococcus.s__Streptococcus_mutans	45.8980880713
+UniRef50_Q8DR59: Penicillin-binding protein 1A|g__Streptococcus.s__Streptococcus_agalactiae	2.5119707198
+UniRef50_P77789	48.4084545729
+UniRef50_P77789|g__Escherichia.s__Escherichia_coli	48.4084545729
+UniRef50_B0KR46: N-succinylarginine dihydrolase	48.4041066111
+UniRef50_B0KR46: N-succinylarginine dihydrolase|g__Escherichia.s__Escherichia_coli	32.0145671373
+UniRef50_B0KR46: N-succinylarginine dihydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.3428427332
+UniRef50_B0KR46: N-succinylarginine dihydrolase|g__Acinetobacter.s__Acinetobacter_baumannii	2.8382434447
+UniRef50_B0KR46: N-succinylarginine dihydrolase|unclassified	0.2084532959
+UniRef50_B9J9V0: ABC transporter	48.4027925324
+UniRef50_B9J9V0: ABC transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.4027925324
+UniRef50_S1HH61: Cyclic di-GMP-binding protein	48.3851256178
+UniRef50_S1HH61: Cyclic di-GMP-binding protein|g__Escherichia.s__Escherichia_coli	48.3851256178
+UniRef50_Q47153: Putative protein FhiA	48.3823559617
+UniRef50_Q47153: Putative protein FhiA|g__Escherichia.s__Escherichia_coli	48.3823559617
+UniRef50_Q9CM94: Anaerobic ribonucleoside-triphosphate reductase-activating protein	48.3794432396
+UniRef50_Q9CM94: Anaerobic ribonucleoside-triphosphate reductase-activating protein|g__Escherichia.s__Escherichia_coli	47.9951534525
+UniRef50_Q9CM94: Anaerobic ribonucleoside-triphosphate reductase-activating protein|unclassified	0.3842897871
+UniRef50_P0ACR7	48.3642003992
+UniRef50_P0ACR7|g__Escherichia.s__Escherichia_coli	48.3642003992
+UniRef50_Q5FKL1: ABC transporter-permease protein	48.3369713598
+UniRef50_Q5FKL1: ABC transporter-permease protein|g__Streptococcus.s__Streptococcus_mutans	43.9699297593
+UniRef50_Q5FKL1: ABC transporter-permease protein|g__Streptococcus.s__Streptococcus_agalactiae	4.3670416005
+UniRef50_P13669: Mannosyl-D-glycerate transport/metabolism system repressor MngR	48.3274224786
+UniRef50_P13669: Mannosyl-D-glycerate transport/metabolism system repressor MngR|g__Escherichia.s__Escherichia_coli	48.3274224786
+UniRef50_P43340	48.3018455934
+UniRef50_P43340|g__Escherichia.s__Escherichia_coli	48.3018455934
+UniRef50_Q8PUV4: NAD(P)H dehydrogenase (quinone)	48.3007480855
+UniRef50_Q8PUV4: NAD(P)H dehydrogenase (quinone)|g__Escherichia.s__Escherichia_coli	48.3007480855
+UniRef50_A5UKB5: V-type ATP synthase subunit E	48.2930323104
+UniRef50_A5UKB5: V-type ATP synthase subunit E|g__Methanobrevibacter.s__Methanobrevibacter_smithii	48.2930323104
+UniRef50_Q98IW6: Mll2216 protein	48.2656704686
+UniRef50_Q98IW6: Mll2216 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	46.8576557165
+UniRef50_Q98IW6: Mll2216 protein|unclassified	1.4080147521
+UniRef50_Q02419: Protein PhnA	48.2597214992
+UniRef50_Q02419: Protein PhnA|g__Streptococcus.s__Streptococcus_mutans	48.2597214992
+UniRef50_R9YNN7: ABC-2 transporter family protein	48.2561620457
+UniRef50_R9YNN7: ABC-2 transporter family protein|g__Staphylococcus.s__Staphylococcus_aureus	48.2561620457
+UniRef50_D3DZK4: Sortase family protein	48.2517291334
+UniRef50_D3DZK4: Sortase family protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	48.2517291334
+UniRef50_A4X335: ABC transporter related	48.2327442391
+UniRef50_A4X335: ABC transporter related|g__Streptococcus.s__Streptococcus_mutans	40.8989411049
+UniRef50_A4X335: ABC transporter related|g__Propionibacterium.s__Propionibacterium_acnes	3.9740485685
+UniRef50_A4X335: ABC transporter related|g__Streptococcus.s__Streptococcus_agalactiae	3.3597545658
+UniRef50_A8AP76: Nickel/cobalt efflux system RcnA	48.2073486528
+UniRef50_A8AP76: Nickel/cobalt efflux system RcnA|g__Escherichia.s__Escherichia_coli	48.2073486528
+UniRef50_S5ED07: Jag protein	48.1678678583
+UniRef50_S5ED07: Jag protein|g__Streptococcus.s__Streptococcus_mutans	48.1678678583
+UniRef50_P0A3Q0: 4-alpha-glucanotransferase	48.1588217244
+UniRef50_P0A3Q0: 4-alpha-glucanotransferase|g__Streptococcus.s__Streptococcus_mutans	47.4885804376
+UniRef50_P0A3Q0: 4-alpha-glucanotransferase|g__Streptococcus.s__Streptococcus_agalactiae	0.6702412869
+UniRef50_J7RCA7	48.1516497787
+UniRef50_J7RCA7|g__Escherichia.s__Escherichia_coli	48.1516497787
+UniRef50_A6TD39: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	48.1485401716
+UniRef50_A6TD39: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|g__Escherichia.s__Escherichia_coli	48.0262706664
+UniRef50_A6TD39: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.1222695052
+UniRef50_Q8DW20: AguR protein	48.1461303284
+UniRef50_Q8DW20: AguR protein|g__Streptococcus.s__Streptococcus_mutans	48.1461303284
+UniRef50_A5ULB0: Tungsten formylmethanofuran dehydrogenase, subunit F, FwdF	48.1419692548
+UniRef50_A5ULB0: Tungsten formylmethanofuran dehydrogenase, subunit F, FwdF|g__Methanobrevibacter.s__Methanobrevibacter_smithii	48.1419692548
+UniRef50_P34001	48.1394354254
+UniRef50_P34001|g__Streptococcus.s__Streptococcus_mutans	45.7328301019
+UniRef50_P34001|g__Streptococcus.s__Streptococcus_agalactiae	2.4066053235
+UniRef50_B1B3K1: Truncated Pre protein	48.1382407767
+UniRef50_B1B3K1: Truncated Pre protein|g__Staphylococcus.s__Staphylococcus_aureus	48.1382407767
+UniRef50_Q5HND5	48.1252844036
+UniRef50_Q5HND5|g__Staphylococcus.s__Staphylococcus_epidermidis	48.1252844036
+UniRef50_A3CMZ5: Dihydrolipoamide acetyl transferase, E2 component, putative	48.1215302622
+UniRef50_A3CMZ5: Dihydrolipoamide acetyl transferase, E2 component, putative|g__Streptococcus.s__Streptococcus_mutans	48.1215302622
+UniRef50_W8S2N5: Transamidase GatB domain protein	48.1070226628
+UniRef50_W8S2N5: Transamidase GatB domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.1070226628
+UniRef50_Q8DT75: ATP-dependent helicase/deoxyribonuclease subunit B	48.1039331667
+UniRef50_Q8DT75: ATP-dependent helicase/deoxyribonuclease subunit B|g__Streptococcus.s__Streptococcus_mutans	47.7805761708
+UniRef50_Q8DT75: ATP-dependent helicase/deoxyribonuclease subunit B|unclassified	0.3233569960
+UniRef50_A5W839: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	48.0817465929
+UniRef50_A5W839: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|g__Pseudomonas.s__Pseudomonas_aeruginosa	48.0817465929
+UniRef50_B4F1A3: Agmatinase	48.0742748844
+UniRef50_B4F1A3: Agmatinase|g__Escherichia.s__Escherichia_coli	48.0742748844
+UniRef50_P77791: Maltose O-acetyltransferase	48.0377847596
+UniRef50_P77791: Maltose O-acetyltransferase|g__Escherichia.s__Escherichia_coli	48.0377847596
+UniRef50_Q8FL68: Ribosomal RNA small subunit methyltransferase H	48.0286183098
+UniRef50_Q8FL68: Ribosomal RNA small subunit methyltransferase H|g__Escherichia.s__Escherichia_coli	33.8725509789
+UniRef50_Q8FL68: Ribosomal RNA small subunit methyltransferase H|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.6182348612
+UniRef50_Q8FL68: Ribosomal RNA small subunit methyltransferase H|unclassified	0.5378324698
+UniRef50_I6L918	48.0265849843
+UniRef50_I6L918|g__Streptococcus.s__Streptococcus_mutans	48.0265849843
+UniRef50_A4WWG0: FAD dependent oxidoreductase	48.0241905422
+UniRef50_A4WWG0: FAD dependent oxidoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.0241905422
+UniRef50_Q1GIU5: Cell division protein ftsA	48.0194551577
+UniRef50_Q1GIU5: Cell division protein ftsA|g__Rhodobacter.s__Rhodobacter_sphaeroides	48.0194551577
+UniRef50_Q13T51: UPF0271 protein Bxeno_A4200	48.0048522934
+UniRef50_Q13T51: UPF0271 protein Bxeno_A4200|g__Escherichia.s__Escherichia_coli	48.0048522934
+UniRef50_P31436: Sugar efflux transporter C	47.9873053704
+UniRef50_P31436: Sugar efflux transporter C|g__Escherichia.s__Escherichia_coli	47.9873053704
+UniRef50_P0ACV2: Protein Ddg	47.9774119906
+UniRef50_P0ACV2: Protein Ddg|g__Escherichia.s__Escherichia_coli	47.9774119906
+UniRef50_S5XKW1: Spermidine/putrescine transport system, permease protein	47.9772916673
+UniRef50_S5XKW1: Spermidine/putrescine transport system, permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.9772916673
+UniRef50_Q7UIA7: 3-isopropylmalate dehydratase large subunit	47.9332212496
+UniRef50_Q7UIA7: 3-isopropylmalate dehydratase large subunit|g__Streptococcus.s__Streptococcus_mutans	42.1922620931
+UniRef50_Q7UIA7: 3-isopropylmalate dehydratase large subunit|g__Acinetobacter.s__Acinetobacter_baumannii	5.1707653684
+UniRef50_Q7UIA7: 3-isopropylmalate dehydratase large subunit|unclassified	0.5701937881
+UniRef50_A5UNV7	47.9303332796
+UniRef50_A5UNV7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	47.9303332796
+UniRef50_P42360	47.9275176879
+UniRef50_P42360|g__Streptococcus.s__Streptococcus_mutans	40.1255773098
+UniRef50_P42360|g__Streptococcus.s__Streptococcus_agalactiae	7.8019403781
+UniRef50_T0TD56: Carbonic anhydrase	47.9188505696
+UniRef50_T0TD56: Carbonic anhydrase|g__Streptococcus.s__Streptococcus_mutans	47.9188505696
+UniRef50_H6P8E7: Pyridoxal phosphate enzyme, YggS family	47.9186650701
+UniRef50_H6P8E7: Pyridoxal phosphate enzyme, YggS family|g__Streptococcus.s__Streptococcus_mutans	47.9186650701
+UniRef50_I0C482: Hydrolase (HAD superfamily)	47.9026354831
+UniRef50_I0C482: Hydrolase (HAD superfamily)|g__Staphylococcus.s__Staphylococcus_aureus	47.9026354831
+UniRef50_O05158: PAGS-5	47.8956657154
+UniRef50_O05158: PAGS-5|g__Streptococcus.s__Streptococcus_mutans	47.8956657154
+UniRef50_Q167S3: TRAP dicarboxylate transporter, DctM subunit, putative	47.8909040364
+UniRef50_Q167S3: TRAP dicarboxylate transporter, DctM subunit, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.6733899214
+UniRef50_Q167S3: TRAP dicarboxylate transporter, DctM subunit, putative|unclassified	0.2175141149
+UniRef50_H6PBU2: Nitroreductase	47.8837203727
+UniRef50_H6PBU2: Nitroreductase|g__Streptococcus.s__Streptococcus_mutans	47.8837203727
+UniRef50_W9EI16: Replication-associated protein	47.8803113929
+UniRef50_W9EI16: Replication-associated protein|g__Staphylococcus.s__Staphylococcus_aureus	46.9841292665
+UniRef50_W9EI16: Replication-associated protein|unclassified	0.8961821263
+UniRef50_E3GXP2: Phosphate ABC transporter substrate-binding protein, PhoT family	47.8722487473
+UniRef50_E3GXP2: Phosphate ABC transporter substrate-binding protein, PhoT family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	47.8722487473
+UniRef50_D1BS48	47.8230851747
+UniRef50_D1BS48|g__Streptococcus.s__Streptococcus_mutans	47.8230851747
+UniRef50_P37440: Oxidoreductase UcpA	47.8196370022
+UniRef50_P37440: Oxidoreductase UcpA|g__Escherichia.s__Escherichia_coli	47.8196370022
+UniRef50_M7DL42: Type I restriction-modification system, specificity determinant	47.8152186032
+UniRef50_M7DL42: Type I restriction-modification system, specificity determinant|g__Streptococcus.s__Streptococcus_mutans	47.8152186032
+UniRef50_Q8DT71	47.8015181946
+UniRef50_Q8DT71|g__Streptococcus.s__Streptococcus_mutans	47.8015181946
+UniRef50_A5ITY3	47.7977269665
+UniRef50_A5ITY3|g__Staphylococcus.s__Staphylococcus_aureus	47.7977269665
+UniRef50_P17802: A/G-specific adenine glycosylase	47.7860362160
+UniRef50_P17802: A/G-specific adenine glycosylase|g__Escherichia.s__Escherichia_coli	47.7860362160
+UniRef50_D8IJC7: Glycerol dehydrogenase	47.7847865785
+UniRef50_D8IJC7: Glycerol dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	43.4266264041
+UniRef50_D8IJC7: Glycerol dehydrogenase|g__Streptococcus.s__Streptococcus_agalactiae	4.3581601744
+UniRef50_G7ZT64	47.7792120819
+UniRef50_G7ZT64|g__Staphylococcus.s__Staphylococcus_aureus	47.7792120819
+UniRef50_P52096	47.7701469281
+UniRef50_P52096|g__Escherichia.s__Escherichia_coli	47.7701469281
+UniRef50_I6TW33: TetR/AcrR family transcriptional regulator	47.7596032811
+UniRef50_I6TW33: TetR/AcrR family transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	47.7596032811
+UniRef50_P30979	47.7580196909
+UniRef50_P30979|g__Escherichia.s__Escherichia_coli	47.7580196909
+UniRef50_A1B8P9	47.7471489087
+UniRef50_A1B8P9|unclassified	47.7471489087
+UniRef50_P25130	47.7152776593
+UniRef50_P25130|g__Pseudomonas.s__Pseudomonas_aeruginosa	47.7152776593
+UniRef50_I6T745: Cell wall protein, WapE	47.6911500968
+UniRef50_I6T745: Cell wall protein, WapE|g__Streptococcus.s__Streptococcus_mutans	47.6911500968
+UniRef50_X5E195	47.6881807857
+UniRef50_X5E195|g__Staphylococcus.s__Staphylococcus_aureus	47.6881807857
+UniRef50_A5UMN6: 5-methylthioadenosine/S-adenosylhomocysteine deaminase	47.6838584180
+UniRef50_A5UMN6: 5-methylthioadenosine/S-adenosylhomocysteine deaminase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	47.6838584180
+UniRef50_M9R6A5: Ribose-5-phosphate isomerase A	47.6687938570
+UniRef50_M9R6A5: Ribose-5-phosphate isomerase A|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.6687938570
+UniRef50_P66796: Transcriptional regulatory protein QseB	47.6672042175
+UniRef50_P66796: Transcriptional regulatory protein QseB|g__Escherichia.s__Escherichia_coli	47.6672042175
+UniRef50_P0AAM2: Probable Ni/Fe-hydrogenase 1 B-type cytochrome subunit	47.6585151930
+UniRef50_P0AAM2: Probable Ni/Fe-hydrogenase 1 B-type cytochrome subunit|g__Escherichia.s__Escherichia_coli	47.6585151930
+UniRef50_Q98C76: Mlr5266 protein	47.6541128324
+UniRef50_Q98C76: Mlr5266 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.6541128324
+UniRef50_B4T8M7: Shikimate kinase 2	47.6487369151
+UniRef50_B4T8M7: Shikimate kinase 2|g__Escherichia.s__Escherichia_coli	47.6487369151
+UniRef50_G4Q6V2: Carbamoyl-phosphate synthase large chain	47.6403512547
+UniRef50_G4Q6V2: Carbamoyl-phosphate synthase large chain|g__Streptococcus.s__Streptococcus_mutans	46.5810697677
+UniRef50_G4Q6V2: Carbamoyl-phosphate synthase large chain|g__Propionibacterium.s__Propionibacterium_acnes	1.0592814870
+UniRef50_D5ASM9: Peptide deformylase	47.6374931188
+UniRef50_D5ASM9: Peptide deformylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.6374931188
+UniRef50_M4WUL0	47.6190476190
+UniRef50_M4WUL0|g__Pseudomonas.s__Pseudomonas_aeruginosa	47.6190476190
+UniRef50_D3E0S2	47.6132580631
+UniRef50_D3E0S2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	47.6132580631
+UniRef50_A4W1C0: Predicted Rossmann fold nucleotide-binding protein involved in DNA uptake	47.6094274512
+UniRef50_A4W1C0: Predicted Rossmann fold nucleotide-binding protein involved in DNA uptake|g__Streptococcus.s__Streptococcus_mutans	42.0307049108
+UniRef50_A4W1C0: Predicted Rossmann fold nucleotide-binding protein involved in DNA uptake|g__Streptococcus.s__Streptococcus_agalactiae	5.5787225404
+UniRef50_U3SSP8	47.6056522088
+UniRef50_U3SSP8|g__Streptococcus.s__Streptococcus_mutans	47.6056522088
+UniRef50_F8DK82: Bacterial capsule synthesis protein	47.5948639684
+UniRef50_F8DK82: Bacterial capsule synthesis protein|g__Streptococcus.s__Streptococcus_mutans	44.2231718796
+UniRef50_F8DK82: Bacterial capsule synthesis protein|g__Streptococcus.s__Streptococcus_agalactiae	3.3133861231
+UniRef50_F8DK82: Bacterial capsule synthesis protein|unclassified	0.0583059657
+UniRef50_F4FKW9	47.5927297628
+UniRef50_F4FKW9|g__Staphylococcus.s__Staphylococcus_aureus	47.5927297628
+UniRef50_E7PW89: Sensor histidine kinase	47.5679154538
+UniRef50_E7PW89: Sensor histidine kinase|g__Streptococcus.s__Streptococcus_mutans	47.5679154538
+UniRef50_A4WS78: Signal transduction histidine kinase	47.5576689970
+UniRef50_A4WS78: Signal transduction histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.5576689970
+UniRef50_Q6GJ92: Protein VraC	47.5338878797
+UniRef50_Q6GJ92: Protein VraC|g__Staphylococcus.s__Staphylococcus_aureus	47.5338878797
+UniRef50_E3F4P1: Short-chain dehydrogenase/reductase SDR	47.4819230349
+UniRef50_E3F4P1: Short-chain dehydrogenase/reductase SDR|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.4819230349
+UniRef50_A0A011Q5G2	47.4815782588
+UniRef50_A0A011Q5G2|unclassified	47.4815782588
+UniRef50_P44501: 2-hydroxyacid dehydrogenase homolog	47.4789393241
+UniRef50_P44501: 2-hydroxyacid dehydrogenase homolog|g__Escherichia.s__Escherichia_coli	35.2641147684
+UniRef50_P44501: 2-hydroxyacid dehydrogenase homolog|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.2148245557
+UniRef50_M2H6K6	47.4740695763
+UniRef50_M2H6K6|unclassified	47.4740695763
+UniRef50_Q3IWQ1: Caspase family protein	47.4674528866
+UniRef50_Q3IWQ1: Caspase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.4674528866
+UniRef50_X5DX77	47.4566589443
+UniRef50_X5DX77|g__Staphylococcus.s__Staphylococcus_aureus	46.5152058829
+UniRef50_X5DX77|unclassified	0.9414530614
+UniRef50_S5SXF8: GntR family transcriptional regulator protein	47.4471739166
+UniRef50_S5SXF8: GntR family transcriptional regulator protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.4471739166
+UniRef50_V6EN15: Oligopeptidase A	47.4469940109
+UniRef50_V6EN15: Oligopeptidase A|g__Escherichia.s__Escherichia_coli	47.4469940109
+UniRef50_Q5LMC4: Peptidase, family S49	47.4391680148
+UniRef50_Q5LMC4: Peptidase, family S49|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.4391680148
+UniRef50_I0C2G5: Permease	47.4357542613
+UniRef50_I0C2G5: Permease|g__Staphylococcus.s__Staphylococcus_aureus	46.3499866785
+UniRef50_I0C2G5: Permease|unclassified	1.0857675828
+UniRef50_C9AC53: His/Glu/Gln/Arg/opine family amino ABC transporter, permease, 3-TM region	47.4054135801
+UniRef50_C9AC53: His/Glu/Gln/Arg/opine family amino ABC transporter, permease, 3-TM region|g__Streptococcus.s__Streptococcus_mutans	39.3442771325
+UniRef50_C9AC53: His/Glu/Gln/Arg/opine family amino ABC transporter, permease, 3-TM region|g__Streptococcus.s__Streptococcus_agalactiae	8.0611364477
+UniRef50_Q8DWA7	47.3931810624
+UniRef50_Q8DWA7|g__Streptococcus.s__Streptococcus_mutans	47.3342258900
+UniRef50_Q8DWA7|unclassified	0.0589551724
+UniRef50_Q8CQR2	47.3876929976
+UniRef50_Q8CQR2|g__Staphylococcus.s__Staphylococcus_epidermidis	47.3876929976
+UniRef50_H5LAL6	47.3872409590
+UniRef50_H5LAL6|g__Escherichia.s__Escherichia_coli	47.3872409590
+UniRef50_H1XUH5: Cysteine desulfurase	47.3857670740
+UniRef50_H1XUH5: Cysteine desulfurase|g__Streptococcus.s__Streptococcus_mutans	47.3857670740
+UniRef50_S5XSU0: Segregation and condensation protein A	47.3775258262
+UniRef50_S5XSU0: Segregation and condensation protein A|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.2195884687
+UniRef50_S5XSU0: Segregation and condensation protein A|unclassified	0.1579373575
+UniRef50_P30177	47.3707232104
+UniRef50_P30177|g__Escherichia.s__Escherichia_coli	47.3707232104
+UniRef50_Q58758	47.3553450358
+UniRef50_Q58758|g__Methanobrevibacter.s__Methanobrevibacter_smithii	47.3553450358
+UniRef50_Q3IYV6: ECF RNA polymerase sigma factor RpoE	47.3211318200
+UniRef50_Q3IYV6: ECF RNA polymerase sigma factor RpoE|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.3211318200
+UniRef50_U3SQQ0	47.3154356095
+UniRef50_U3SQQ0|g__Streptococcus.s__Streptococcus_mutans	47.3154356095
+UniRef50_P76112: L-amino acid N-acyltransferase MnaT	47.3053584871
+UniRef50_P76112: L-amino acid N-acyltransferase MnaT|g__Escherichia.s__Escherichia_coli	47.3053584871
+UniRef50_Q3IW20	47.2997346036
+UniRef50_Q3IW20|unclassified	34.6833302954
+UniRef50_Q3IW20|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.6164043082
+UniRef50_D3E2Z2: Transcriptional regulator	47.2918856597
+UniRef50_D3E2Z2: Transcriptional regulator|g__Methanobrevibacter.s__Methanobrevibacter_smithii	47.2918856597
+UniRef50_A0A028QNK4	47.2874589564
+UniRef50_A0A028QNK4|g__Escherichia.s__Escherichia_coli	47.2874589564
+UniRef50_P54689: Branched-chain-amino-acid aminotransferase	47.2806677427
+UniRef50_P54689: Branched-chain-amino-acid aminotransferase|g__Streptococcus.s__Streptococcus_mutans	41.4331602693
+UniRef50_P54689: Branched-chain-amino-acid aminotransferase|g__Clostridium.s__Clostridium_beijerinckii	4.8374064633
+UniRef50_P54689: Branched-chain-amino-acid aminotransferase|g__Helicobacter.s__Helicobacter_pylori	1.0101010101
+UniRef50_Q3IW48	47.2739625235
+UniRef50_Q3IW48|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.9428843301
+UniRef50_Q3IW48|unclassified	13.3310781934
+UniRef50_A8LTL4: Resolvase domain protein	47.2636318912
+UniRef50_A8LTL4: Resolvase domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.2636318912
+UniRef50_Q8DTF8	47.2586663459
+UniRef50_Q8DTF8|g__Streptococcus.s__Streptococcus_mutans	47.2586663459
+UniRef50_C6SP54	47.2494624373
+UniRef50_C6SP54|g__Streptococcus.s__Streptococcus_mutans	47.2494624373
+UniRef50_A4W090: Putative sporulation transcription regulator WhiA	47.2366181956
+UniRef50_A4W090: Putative sporulation transcription regulator WhiA|g__Streptococcus.s__Streptococcus_mutans	44.4944720598
+UniRef50_A4W090: Putative sporulation transcription regulator WhiA|g__Streptococcus.s__Streptococcus_agalactiae	2.7421461358
+UniRef50_I6U0Z2: Transcriptional regulator	47.2358548377
+UniRef50_I6U0Z2: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	47.2358548377
+UniRef50_M9R3P2: PHB depolymerase	47.2307295661
+UniRef50_M9R3P2: PHB depolymerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.6241338310
+UniRef50_M9R3P2: PHB depolymerase|unclassified	2.6065957351
+UniRef50_O85674: Anthranilate 1,2-dioxygenase small subunit	47.2222222222
+UniRef50_O85674: Anthranilate 1,2-dioxygenase small subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	47.2222222222
+UniRef50_I6T999: Putative DNA binding protein	47.1704578945
+UniRef50_I6T999: Putative DNA binding protein|g__Streptococcus.s__Streptococcus_mutans	47.1704578945
+UniRef50_B9KUN2: Oxidoreductase domain protein	47.1703764471
+UniRef50_B9KUN2: Oxidoreductase domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.1703764471
+UniRef50_A4WNN9	47.1486172991
+UniRef50_A4WNN9|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.9315393340
+UniRef50_A4WNN9|unclassified	11.2170779652
+UniRef50_Q8DTC7: Chaperone protein ClpB	47.1468660011
+UniRef50_Q8DTC7: Chaperone protein ClpB|g__Streptococcus.s__Streptococcus_mutans	47.1468660011
+UniRef50_V9VVU4: Cyclopropane-fatty-acyl-phospholipid synthase	47.1448660954
+UniRef50_V9VVU4: Cyclopropane-fatty-acyl-phospholipid synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.0553725958
+UniRef50_V9VVU4: Cyclopropane-fatty-acyl-phospholipid synthase|unclassified	0.0894934996
+UniRef50_P94417: Aspartokinase 3	47.1437174372
+UniRef50_P94417: Aspartokinase 3|g__Streptococcus.s__Streptococcus_mutans	40.7371531840
+UniRef50_P94417: Aspartokinase 3|g__Streptococcus.s__Streptococcus_agalactiae	4.9196069639
+UniRef50_P94417: Aspartokinase 3|unclassified	1.4869572893
+UniRef50_S4X152	47.1162673087
+UniRef50_S4X152|g__Staphylococcus.s__Staphylococcus_epidermidis	47.1162673087
+UniRef50_Q162C3: Sodium/hydrogen exchanger family, putative	47.1139132144
+UniRef50_Q162C3: Sodium/hydrogen exchanger family, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.1139132144
+UniRef50_Q8DSD7: 30S ribosomal protein S6	47.1122251992
+UniRef50_Q8DSD7: 30S ribosomal protein S6|g__Staphylococcus.s__Staphylococcus_epidermidis	22.0652191961
+UniRef50_Q8DSD7: 30S ribosomal protein S6|g__Staphylococcus.s__Staphylococcus_aureus	18.1623040242
+UniRef50_Q8DSD7: 30S ribosomal protein S6|g__Streptococcus.s__Streptococcus_mutans	6.8847019789
+UniRef50_A3PR77: Major facilitator superfamily MFS_1	47.1084434387
+UniRef50_A3PR77: Major facilitator superfamily MFS_1|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.1084434387
+UniRef50_P50840: Putative RNA methyltransferase YpsC	47.1026687426
+UniRef50_P50840: Putative RNA methyltransferase YpsC|g__Streptococcus.s__Streptococcus_mutans	41.6837674126
+UniRef50_P50840: Putative RNA methyltransferase YpsC|g__Streptococcus.s__Streptococcus_agalactiae	4.3380191770
+UniRef50_P50840: Putative RNA methyltransferase YpsC|unclassified	1.0808821529
+UniRef50_A1B476: Beta-lactamase domain protein	47.0742500590
+UniRef50_A1B476: Beta-lactamase domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.0742500590
+UniRef50_Q3J1R9: Operon regulator SmoC	47.0684491023
+UniRef50_Q3J1R9: Operon regulator SmoC|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.0684491023
+UniRef50_Q3IV02	47.0560214609
+UniRef50_Q3IV02|g__Rhodobacter.s__Rhodobacter_sphaeroides	47.0560214609
+UniRef50_P77256	47.0517499288
+UniRef50_P77256|g__Escherichia.s__Escherichia_coli	47.0517499288
+UniRef50_P62904: Transposase from transposon Tn1545	47.0473579181
+UniRef50_P62904: Transposase from transposon Tn1545|g__Streptococcus.s__Streptococcus_mutans	45.3673058725
+UniRef50_P62904: Transposase from transposon Tn1545|g__Streptococcus.s__Streptococcus_agalactiae	1.6800520456
+UniRef50_P23877: Ferric enterobactin transport system permease protein FepG	47.0341552962
+UniRef50_P23877: Ferric enterobactin transport system permease protein FepG|g__Escherichia.s__Escherichia_coli	47.0341552962
+UniRef50_P26982: Periplasmic serine endoprotease DegP	47.0337264277
+UniRef50_P26982: Periplasmic serine endoprotease DegP|g__Escherichia.s__Escherichia_coli	42.4254314968
+UniRef50_P26982: Periplasmic serine endoprotease DegP|g__Staphylococcus.s__Staphylococcus_aureus	4.6082949309
+UniRef50_C6SRD4	47.0259052318
+UniRef50_C6SRD4|g__Streptococcus.s__Streptococcus_mutans	44.6922186436
+UniRef50_C6SRD4|unclassified	2.3336865882
+UniRef50_I6TS63: ABC transporter permease	47.0211859542
+UniRef50_I6TS63: ABC transporter permease|g__Streptococcus.s__Streptococcus_mutans	47.0211859542
+UniRef50_Q89ER2: Alkanesulfonate monooxygenase	46.9698286742
+UniRef50_Q89ER2: Alkanesulfonate monooxygenase|g__Escherichia.s__Escherichia_coli	46.7187341308
+UniRef50_Q89ER2: Alkanesulfonate monooxygenase|unclassified	0.2510945434
+UniRef50_F8HDN7: GTPase HflX	46.9537456585
+UniRef50_F8HDN7: GTPase HflX|g__Streptococcus.s__Streptococcus_mutans	42.8084958863
+UniRef50_F8HDN7: GTPase HflX|g__Streptococcus.s__Streptococcus_agalactiae	4.1452497722
+UniRef50_A4VWU0: Oxidoreductase, aldo/keto reductase family	46.9469442407
+UniRef50_A4VWU0: Oxidoreductase, aldo/keto reductase family|g__Streptococcus.s__Streptococcus_mutans	42.6910277478
+UniRef50_A4VWU0: Oxidoreductase, aldo/keto reductase family|g__Streptococcus.s__Streptococcus_agalactiae	4.2559164929
+UniRef50_H3Y3Z6: PHP domain protein	46.9373202835
+UniRef50_H3Y3Z6: PHP domain protein|g__Staphylococcus.s__Staphylococcus_aureus	46.9373202835
+UniRef50_R4ZZW8: Intramembrane protease RasP/YluC, implicated in cell division based on FtsL cleavage	46.9305175958
+UniRef50_R4ZZW8: Intramembrane protease RasP/YluC, implicated in cell division based on FtsL cleavage|g__Streptococcus.s__Streptococcus_mutans	46.9305175958
+UniRef50_P23883: Aldehyde dehydrogenase PuuC	46.9063928622
+UniRef50_P23883: Aldehyde dehydrogenase PuuC|g__Escherichia.s__Escherichia_coli	31.3668178852
+UniRef50_P23883: Aldehyde dehydrogenase PuuC|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.5084319201
+UniRef50_P23883: Aldehyde dehydrogenase PuuC|unclassified	0.0311430569
+UniRef50_Q2NFL4: Predicted ABC-type nitrate/sulfonate/bicarbonate transport system, permease protein	46.8841578283
+UniRef50_Q2NFL4: Predicted ABC-type nitrate/sulfonate/bicarbonate transport system, permease protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	46.8841578283
+UniRef50_P76559	46.8812492058
+UniRef50_P76559|g__Escherichia.s__Escherichia_coli	46.8812492058
+UniRef50_F5ZHL1: Sulfatase	46.8794187583
+UniRef50_F5ZHL1: Sulfatase|g__Streptococcus.s__Streptococcus_mutans	44.3603678606
+UniRef50_F5ZHL1: Sulfatase|g__Streptococcus.s__Streptococcus_agalactiae	2.5190508978
+UniRef50_Q2NE41	46.8640643329
+UniRef50_Q2NE41|g__Methanobrevibacter.s__Methanobrevibacter_smithii	46.8640643329
+UniRef50_A1WG05: Dimethylmenaquinone methyltransferase	46.8280770786
+UniRef50_A1WG05: Dimethylmenaquinone methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	46.8280770786
+UniRef50_UPI00005C8244: transposase	46.8252864524
+UniRef50_UPI00005C8244: transposase|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.8429619541
+UniRef50_UPI00005C8244: transposase|unclassified	3.9823244982
+UniRef50_Q5WE91: Acetoin dehydrogenase E1 component beta subunit	46.8239494897
+UniRef50_Q5WE91: Acetoin dehydrogenase E1 component beta subunit|g__Streptococcus.s__Streptococcus_mutans	46.8239494897
+UniRef50_D9PYS9: Non-canonical purine NTP pyrophosphatase	46.8238565835
+UniRef50_D9PYS9: Non-canonical purine NTP pyrophosphatase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	46.8238565835
+UniRef50_R7MP32	46.7946078230
+UniRef50_R7MP32|g__Streptococcus.s__Streptococcus_mutans	46.7946078230
+UniRef50_I6X6K9: 2,5-diketo-D-gluconic acid reductase A	46.7799523223
+UniRef50_I6X6K9: 2,5-diketo-D-gluconic acid reductase A|g__Streptococcus.s__Streptococcus_mutans	46.7799523223
+UniRef50_M9RBA6	46.7757870636
+UniRef50_M9RBA6|g__Rhodobacter.s__Rhodobacter_sphaeroides	43.2468031058
+UniRef50_M9RBA6|unclassified	3.5289839577
+UniRef50_E8V2H2	46.7687074830
+UniRef50_E8V2H2|g__Staphylococcus.s__Staphylococcus_aureus	46.7687074830
+UniRef50_Q5QKR8: UDP-N-acetylglucosamine 4,6-dehydratase (inverting)	46.7636859011
+UniRef50_Q5QKR8: UDP-N-acetylglucosamine 4,6-dehydratase (inverting)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	43.2966012881
+UniRef50_Q5QKR8: UDP-N-acetylglucosamine 4,6-dehydratase (inverting)|g__Helicobacter.s__Helicobacter_pylori	2.7515542659
+UniRef50_Q5QKR8: UDP-N-acetylglucosamine 4,6-dehydratase (inverting)|unclassified	0.7155303471
+UniRef50_D3E016: Tungsten formylmethanofuran dehydrogenase subunit F FwdF	46.7591857111
+UniRef50_D3E016: Tungsten formylmethanofuran dehydrogenase subunit F FwdF|g__Methanobrevibacter.s__Methanobrevibacter_smithii	46.7591857111
+UniRef50_Q1I7K6: Succinate dehydrogenase, cytochrome b556 subunit	46.7535442600
+UniRef50_Q1I7K6: Succinate dehydrogenase, cytochrome b556 subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	46.7535442600
+UniRef50_B7UPF3: Endonuclease V	46.7500360243
+UniRef50_B7UPF3: Endonuclease V|g__Escherichia.s__Escherichia_coli	46.3844981134
+UniRef50_B7UPF3: Endonuclease V|unclassified	0.3655379109
+UniRef50_Q8CMP4: Serine-aspartate repeat-containing protein F	46.7294895852
+UniRef50_Q8CMP4: Serine-aspartate repeat-containing protein F|g__Staphylococcus.s__Staphylococcus_epidermidis	46.7294895852
+UniRef50_I6T783: Transporter trans-membrane domain bacteriocin immunity protein	46.7117156006
+UniRef50_I6T783: Transporter trans-membrane domain bacteriocin immunity protein|g__Streptococcus.s__Streptococcus_mutans	45.2769953711
+UniRef50_I6T783: Transporter trans-membrane domain bacteriocin immunity protein|unclassified	1.4347202296
+UniRef50_A3PJ14: Lipopolysaccharide biosynthesis	46.7096648482
+UniRef50_A3PJ14: Lipopolysaccharide biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	46.7096648482
+UniRef50_G7SBD4	46.7078369707
+UniRef50_G7SBD4|g__Streptococcus.s__Streptococcus_mutans	39.5274206540
+UniRef50_G7SBD4|g__Streptococcus.s__Streptococcus_agalactiae	7.1804163167
+UniRef50_A3PHA2	46.7033949648
+UniRef50_A3PHA2|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.6293939969
+UniRef50_A3PHA2|unclassified	2.0740009679
+UniRef50_A7X4T7: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	46.6840465322
+UniRef50_A7X4T7: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|g__Staphylococcus.s__Staphylococcus_aureus	32.2574479837
+UniRef50_A7X4T7: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|g__Staphylococcus.s__Staphylococcus_epidermidis	14.4265985485
+UniRef50_I6U214: Inorganic ion ABC transporter ATP-binding protein, possible ferrichrome transport system	46.6712783630
+UniRef50_I6U214: Inorganic ion ABC transporter ATP-binding protein, possible ferrichrome transport system|g__Streptococcus.s__Streptococcus_mutans	43.5167042305
+UniRef50_I6U214: Inorganic ion ABC transporter ATP-binding protein, possible ferrichrome transport system|g__Streptococcus.s__Streptococcus_agalactiae	3.1545741325
+UniRef50_I4CF79: ATPase involved in chromosome partitioning	46.6679513775
+UniRef50_I4CF79: ATPase involved in chromosome partitioning|g__Methanobrevibacter.s__Methanobrevibacter_smithii	46.6679513775
+UniRef50_Q3J3X6	46.6377145500
+UniRef50_Q3J3X6|g__Rhodobacter.s__Rhodobacter_sphaeroides	46.6377145500
+UniRef50_M7DV55: ATP-binding protein	46.6288572694
+UniRef50_M7DV55: ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	46.6288572694
+UniRef50_P05425: Copper-exporting P-type ATPase B	46.6286619099
+UniRef50_P05425: Copper-exporting P-type ATPase B|g__Staphylococcus.s__Staphylococcus_aureus	30.5523019753
+UniRef50_P05425: Copper-exporting P-type ATPase B|g__Acinetobacter.s__Acinetobacter_baumannii	11.2954353811
+UniRef50_P05425: Copper-exporting P-type ATPase B|g__Streptococcus.s__Streptococcus_agalactiae	4.7343894230
+UniRef50_P05425: Copper-exporting P-type ATPase B|unclassified	0.0465351305
+UniRef50_F3U4S4: Blue-light receptor BLUF domain-containing protein	46.6202526628
+UniRef50_F3U4S4: Blue-light receptor BLUF domain-containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	46.6202526628
+UniRef50_C6SQS1	46.6162858077
+UniRef50_C6SQS1|g__Streptococcus.s__Streptococcus_mutans	46.6162858077
+UniRef50_Q8CUB1	46.5858361597
+UniRef50_Q8CUB1|unclassified	46.5858361597
+UniRef50_P13036: Fe(3+) dicitrate transport protein FecA	46.5699740825
+UniRef50_P13036: Fe(3+) dicitrate transport protein FecA|g__Escherichia.s__Escherichia_coli	40.7072927590
+UniRef50_P13036: Fe(3+) dicitrate transport protein FecA|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8626813235
+UniRef50_D3QH70	46.5577822856
+UniRef50_D3QH70|g__Staphylococcus.s__Staphylococcus_epidermidis	46.5577822856
+UniRef50_A3PL49: Response regulator receiver protein	46.5377853305
+UniRef50_A3PL49: Response regulator receiver protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	46.5377853305
+UniRef50_A5UKG8: Nicotinate-nucleotide pyrophosphorylase [carboxylating]	46.5209065373
+UniRef50_A5UKG8: Nicotinate-nucleotide pyrophosphorylase [carboxylating]|g__Methanobrevibacter.s__Methanobrevibacter_smithii	46.5209065373
+UniRef50_A0A034LRF8	46.5095542216
+UniRef50_A0A034LRF8|g__Staphylococcus.s__Staphylococcus_aureus	46.5095542216
+UniRef50_Q8ZAW9: Sulfoxide reductase catalytic subunit YedY	46.4951592523
+UniRef50_Q8ZAW9: Sulfoxide reductase catalytic subunit YedY|g__Escherichia.s__Escherichia_coli	39.6327141486
+UniRef50_Q8ZAW9: Sulfoxide reductase catalytic subunit YedY|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8624451036
+UniRef50_Q8DW77	46.4879740415
+UniRef50_Q8DW77|g__Streptococcus.s__Streptococcus_mutans	46.4879740415
+UniRef50_Q7N5M7: Flagellar L-ring protein	46.4780010871
+UniRef50_Q7N5M7: Flagellar L-ring protein|g__Escherichia.s__Escherichia_coli	46.4780010871
+UniRef50_C6SRM3	46.4689737515
+UniRef50_C6SRM3|g__Streptococcus.s__Streptococcus_mutans	46.4689737515
+UniRef50_R7PVW1	46.4593952326
+UniRef50_R7PVW1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	46.4593952326
+UniRef50_A3PN29	46.4403962679
+UniRef50_A3PN29|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.6339004431
+UniRef50_A3PN29|unclassified	4.8064958248
+UniRef50_Q1GHZ2: GTPase Der	46.4403232115
+UniRef50_Q1GHZ2: GTPase Der|g__Rhodobacter.s__Rhodobacter_sphaeroides	46.4403232115
+UniRef50_I6U2X8	46.4400921688
+UniRef50_I6U2X8|g__Streptococcus.s__Streptococcus_mutans	46.4400921688
+UniRef50_A7ZSR5: Shikimate kinase 1	46.4223402822
+UniRef50_A7ZSR5: Shikimate kinase 1|g__Escherichia.s__Escherichia_coli	45.7419268999
+UniRef50_A7ZSR5: Shikimate kinase 1|unclassified	0.6804133822
+UniRef50_P37317: Integrase	46.4162848041
+UniRef50_P37317: Integrase|g__Escherichia.s__Escherichia_coli	46.4162848041
+UniRef50_A6UCT4: Glycosyl transferase family 8	46.4050330929
+UniRef50_A6UCT4: Glycosyl transferase family 8|g__Rhodobacter.s__Rhodobacter_sphaeroides	46.4050330929
+UniRef50_P76176	46.4034645088
+UniRef50_P76176|g__Escherichia.s__Escherichia_coli	46.4034645088
+UniRef50_A5IUF8	46.3977862683
+UniRef50_A5IUF8|g__Staphylococcus.s__Staphylococcus_aureus	46.3977862683
+UniRef50_F7ZLE6: TRAP transporter subunit DctP	46.3924457757
+UniRef50_F7ZLE6: TRAP transporter subunit DctP|g__Rhodobacter.s__Rhodobacter_sphaeroides	46.3924457757
+UniRef50_A5UMM1: Predicted metal-dependent phosphoesterase, PHP family	46.3919206733
+UniRef50_A5UMM1: Predicted metal-dependent phosphoesterase, PHP family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	46.3919206733
+UniRef50_C4Z354: 3-hydroxybutyryl-CoA dehydrogenase	46.3849147523
+UniRef50_C4Z354: 3-hydroxybutyryl-CoA dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	46.3849147523
+UniRef50_U3SUU9	46.3675344669
+UniRef50_U3SUU9|g__Streptococcus.s__Streptococcus_mutans	44.4735950729
+UniRef50_U3SUU9|unclassified	1.8939393939
+UniRef50_P75821	46.3424937138
+UniRef50_P75821|g__Escherichia.s__Escherichia_coli	46.3424937138
+UniRef50_A5UKI6	46.3404412097
+UniRef50_A5UKI6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	46.3404412097
+UniRef50_V6H5T7	46.3395893724
+UniRef50_V6H5T7|g__Streptococcus.s__Streptococcus_agalactiae	46.3395893724
+UniRef50_UPI00041375E2: cation:proton antiporter	46.3163989037
+UniRef50_UPI00041375E2: cation:proton antiporter|unclassified	46.3163989037
+UniRef50_Q00749: Multiple sugar-binding protein	46.3021647852
+UniRef50_Q00749: Multiple sugar-binding protein|g__Streptococcus.s__Streptococcus_mutans	46.3021647852
+UniRef50_Q1ITT1: 50S ribosomal protein L35	46.2951550930
+UniRef50_Q1ITT1: 50S ribosomal protein L35|g__Staphylococcus.s__Staphylococcus_aureus	36.0363167092
+UniRef50_Q1ITT1: 50S ribosomal protein L35|g__Staphylococcus.s__Staphylococcus_epidermidis	10.2588383838
+UniRef50_A8LHS2: Response regulator receiver protein	46.2697876895
+UniRef50_A8LHS2: Response regulator receiver protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	46.2697876895
+UniRef50_I6TNX3	46.2600252375
+UniRef50_I6TNX3|g__Streptococcus.s__Streptococcus_mutans	46.2600252375
+UniRef50_P76280	46.2528362281
+UniRef50_P76280|g__Escherichia.s__Escherichia_coli	46.2528362281
+UniRef50_Q3YYG5: Regulatory protein RecX	46.2453072823
+UniRef50_Q3YYG5: Regulatory protein RecX|g__Escherichia.s__Escherichia_coli	46.2453072823
+UniRef50_B4U4I6: Holliday junction resolvase RecU	46.2052749783
+UniRef50_B4U4I6: Holliday junction resolvase RecU|g__Streptococcus.s__Streptococcus_mutans	44.5074821090
+UniRef50_B4U4I6: Holliday junction resolvase RecU|g__Streptococcus.s__Streptococcus_agalactiae	1.6977928693
+UniRef50_P0AFZ1: Protein SseB	46.2033902855
+UniRef50_P0AFZ1: Protein SseB|g__Escherichia.s__Escherichia_coli	46.2033902855
+UniRef50_F8LGT0: Transcriptional regulator, DeoR family	46.1925452306
+UniRef50_F8LGT0: Transcriptional regulator, DeoR family|g__Streptococcus.s__Streptococcus_mutans	46.1925452306
+UniRef50_Q53074: UvrB protein (Fragment)	46.1918522249
+UniRef50_Q53074: UvrB protein (Fragment)|unclassified	46.1918522249
+UniRef50_A5UNL6: Transposase, RNaseH-like family	46.1696395429
+UniRef50_A5UNL6: Transposase, RNaseH-like family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	46.1696395429
+UniRef50_A3PHR5	46.1580517217
+UniRef50_A3PHR5|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.8026892001
+UniRef50_A3PHR5|unclassified	8.3553625216
+UniRef50_I0C1E1	46.1569930303
+UniRef50_I0C1E1|g__Staphylococcus.s__Staphylococcus_aureus	46.1569930303
+UniRef50_P0AFT3: Inner membrane amino-acid ABC transporter permease protein YecS	46.1445141157
+UniRef50_P0AFT3: Inner membrane amino-acid ABC transporter permease protein YecS|g__Escherichia.s__Escherichia_coli	46.1445141157
+UniRef50_B7N3F3: Chaperone protein TorD	46.1097475347
+UniRef50_B7N3F3: Chaperone protein TorD|g__Escherichia.s__Escherichia_coli	46.1097475347
+UniRef50_R4ZQK4: D-alanyl transfer protein DltB	46.0958422577
+UniRef50_R4ZQK4: D-alanyl transfer protein DltB|g__Streptococcus.s__Streptococcus_mutans	37.0659672044
+UniRef50_R4ZQK4: D-alanyl transfer protein DltB|g__Streptococcus.s__Streptococcus_agalactiae	9.0298750533
+UniRef50_P57576: 50S ribosomal protein L6	46.0348564820
+UniRef50_P57576: 50S ribosomal protein L6|g__Escherichia.s__Escherichia_coli	44.1516173106
+UniRef50_P57576: 50S ribosomal protein L6|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8832391714
+UniRef50_A4WSD0: Peptidase M10, serralysin-like protein	46.0229925294
+UniRef50_A4WSD0: Peptidase M10, serralysin-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	46.0229925294
+UniRef50_F0P908: Transcriptional regulator, GntR family	46.0228031428
+UniRef50_F0P908: Transcriptional regulator, GntR family|g__Staphylococcus.s__Staphylococcus_epidermidis	46.0228031428
+UniRef50_R7B660: Dihydrodipicolinate reductase domain protein	46.0004363884
+UniRef50_R7B660: Dihydrodipicolinate reductase domain protein|g__Streptococcus.s__Streptococcus_mutans	46.0004363884
+UniRef50_G9WJ36: Ribonucleoside-diphosphate reductase subunit beta	45.9958373303
+UniRef50_G9WJ36: Ribonucleoside-diphosphate reductase subunit beta|g__Streptococcus.s__Streptococcus_mutans	44.8384299229
+UniRef50_G9WJ36: Ribonucleoside-diphosphate reductase subunit beta|g__Streptococcus.s__Streptococcus_agalactiae	1.1574074074
+UniRef50_B4U3L2: Glycine/D-amino acid oxidases family	45.9908009448
+UniRef50_B4U3L2: Glycine/D-amino acid oxidases family|g__Streptococcus.s__Streptococcus_mutans	43.1938783611
+UniRef50_B4U3L2: Glycine/D-amino acid oxidases family|g__Streptococcus.s__Streptococcus_agalactiae	2.7969225837
+UniRef50_G5JVK4: Acyl-ACP thioesterase	45.9808962886
+UniRef50_G5JVK4: Acyl-ACP thioesterase|g__Streptococcus.s__Streptococcus_mutans	45.9808962886
+UniRef50_B6AH12: NAD dependent epimerase/dehydratase family protein	45.9743880318
+UniRef50_B6AH12: NAD dependent epimerase/dehydratase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	45.9743880318
+UniRef50_A6TGL3: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE	45.9201772542
+UniRef50_A6TGL3: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE|g__Escherichia.s__Escherichia_coli	45.8291192055
+UniRef50_A6TGL3: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE|unclassified	0.0910580487
+UniRef50_Q81IT9: DEAD-box ATP-dependent RNA helicase CshA	45.9048238931
+UniRef50_Q81IT9: DEAD-box ATP-dependent RNA helicase CshA|g__Streptococcus.s__Streptococcus_mutans	39.9333472863
+UniRef50_Q81IT9: DEAD-box ATP-dependent RNA helicase CshA|g__Streptococcus.s__Streptococcus_agalactiae	5.6361314048
+UniRef50_Q81IT9: DEAD-box ATP-dependent RNA helicase CshA|unclassified	0.3353452020
+UniRef50_G2TP30: Histidine triad (HIT) protein	45.8931291640
+UniRef50_G2TP30: Histidine triad (HIT) protein|g__Staphylococcus.s__Staphylococcus_aureus	45.8931291640
+UniRef50_P44645: Molybdopterin adenylyltransferase	45.8793096666
+UniRef50_P44645: Molybdopterin adenylyltransferase|g__Escherichia.s__Escherichia_coli	45.8793096666
+UniRef50_P77396	45.8214943468
+UniRef50_P77396|g__Escherichia.s__Escherichia_coli	45.8214943468
+UniRef50_Q5H1S4: Acyl-CoA dehydrogenase	45.7856673907
+UniRef50_Q5H1S4: Acyl-CoA dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.4139252782
+UniRef50_Q5H1S4: Acyl-CoA dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3717421125
+UniRef50_M4RDZ6: Taurine-transporting AtPase	45.7771624105
+UniRef50_M4RDZ6: Taurine-transporting AtPase|g__Streptococcus.s__Streptococcus_mutans	45.7771624105
+UniRef50_D3E149: Cell division protein FtsZ	45.7696501566
+UniRef50_D3E149: Cell division protein FtsZ|g__Methanobrevibacter.s__Methanobrevibacter_smithii	45.7696501566
+UniRef50_I6TPS2	45.7559985297
+UniRef50_I6TPS2|g__Streptococcus.s__Streptococcus_mutans	45.7559985297
+UniRef50_A6TE36: Undecaprenyl-diphosphatase	45.7530968897
+UniRef50_A6TE36: Undecaprenyl-diphosphatase|g__Escherichia.s__Escherichia_coli	44.5746872334
+UniRef50_A6TE36: Undecaprenyl-diphosphatase|unclassified	1.1784096563
+UniRef50_A5IS41	45.7523492476
+UniRef50_A5IS41|g__Staphylococcus.s__Staphylococcus_aureus	45.7523492476
+UniRef50_E8MRI6: Two-component response regulator	45.7520784040
+UniRef50_E8MRI6: Two-component response regulator|g__Streptococcus.s__Streptococcus_mutans	45.7520784040
+UniRef50_Q3D1H7	45.7420572379
+UniRef50_Q3D1H7|unclassified	45.7420572379
+UniRef50_Q5HLY5	45.7264789095
+UniRef50_Q5HLY5|g__Staphylococcus.s__Staphylococcus_epidermidis	43.8690932725
+UniRef50_Q5HLY5|unclassified	1.8573856369
+UniRef50_Q2FF88: Accessory gene regulator protein B	45.7173282397
+UniRef50_Q2FF88: Accessory gene regulator protein B|g__Staphylococcus.s__Staphylococcus_aureus	44.3729533998
+UniRef50_Q2FF88: Accessory gene regulator protein B|unclassified	1.3443748399
+UniRef50_S5RYV7: Lysine decarboxylase family protein	45.7118671603
+UniRef50_S5RYV7: Lysine decarboxylase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	45.7118671603
+UniRef50_Q5LYY8: Galactose-1-phosphate uridylyltransferase	45.6952546837
+UniRef50_Q5LYY8: Galactose-1-phosphate uridylyltransferase|g__Streptococcus.s__Streptococcus_mutans	45.6952546837
+UniRef50_O04904: Dihydroorotase, mitochondrial	45.6737493244
+UniRef50_O04904: Dihydroorotase, mitochondrial|g__Escherichia.s__Escherichia_coli	35.3737767792
+UniRef50_O04904: Dihydroorotase, mitochondrial|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.2246383443
+UniRef50_O04904: Dihydroorotase, mitochondrial|g__Neisseria.s__Neisseria_meningitidis	2.0753342009
+UniRef50_Q7NFC3: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO	45.6646002415
+UniRef50_Q7NFC3: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|g__Streptococcus.s__Streptococcus_mutans	41.5321034133
+UniRef50_Q7NFC3: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|g__Streptococcus.s__Streptococcus_agalactiae	4.0341196073
+UniRef50_Q7NFC3: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|unclassified	0.0983772208
+UniRef50_B4U336: Glutamine amidotransferase	45.6558006249
+UniRef50_B4U336: Glutamine amidotransferase|g__Streptococcus.s__Streptococcus_mutans	45.6558006249
+UniRef50_B9KPI4	45.6550175374
+UniRef50_B9KPI4|unclassified	45.6550175374
+UniRef50_G7SP01: RNA methyltransferase, TrmH family, group 3	45.6489278340
+UniRef50_G7SP01: RNA methyltransferase, TrmH family, group 3|g__Streptococcus.s__Streptococcus_mutans	45.6489278340
+UniRef50_U5P9W8: Haloacid dehalogenase	45.6419420515
+UniRef50_U5P9W8: Haloacid dehalogenase|g__Streptococcus.s__Streptococcus_mutans	41.0147360962
+UniRef50_U5P9W8: Haloacid dehalogenase|g__Streptococcus.s__Streptococcus_agalactiae	4.6272059553
+UniRef50_A3PJ18: UDP-glucose pyrophosphorylase	45.6194833412
+UniRef50_A3PJ18: UDP-glucose pyrophosphorylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	45.6194833412
+UniRef50_P45861	45.6127735920
+UniRef50_P45861|g__Rhodobacter.s__Rhodobacter_sphaeroides	45.6127735920
+UniRef50_Q2FWV6: Staphylococcal complement inhibitor	45.6119363659
+UniRef50_Q2FWV6: Staphylococcal complement inhibitor|g__Staphylococcus.s__Staphylococcus_aureus	45.6119363659
+UniRef50_P37981: Inorganic pyrophosphatase	45.6082176576
+UniRef50_P37981: Inorganic pyrophosphatase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	45.6082176576
+UniRef50_Q9CGB9	45.6021548113
+UniRef50_Q9CGB9|g__Streptococcus.s__Streptococcus_mutans	45.6021548113
+UniRef50_M7D8T2: Glycosyltransferase	45.5987823519
+UniRef50_M7D8T2: Glycosyltransferase|g__Streptococcus.s__Streptococcus_mutans	45.5987823519
+UniRef50_I6TQY8: Gramicidin S synthetase	45.5936921108
+UniRef50_I6TQY8: Gramicidin S synthetase|g__Streptococcus.s__Streptococcus_mutans	45.5936921108
+UniRef50_P30866	45.5853871331
+UniRef50_P30866|g__Escherichia.s__Escherichia_coli	45.5853871331
+UniRef50_A1B1L1	45.5834203240
+UniRef50_A1B1L1|g__Rhodobacter.s__Rhodobacter_sphaeroides	45.5272308500
+UniRef50_A1B1L1|unclassified	0.0561894740
+UniRef50_Q5XD24: Probable metallo-hydrolase M6_Spy0554	45.5620926069
+UniRef50_Q5XD24: Probable metallo-hydrolase M6_Spy0554|g__Streptococcus.s__Streptococcus_mutans	45.5620926069
+UniRef50_C6SPU7	45.5370367385
+UniRef50_C6SPU7|g__Streptococcus.s__Streptococcus_mutans	45.5370367385
+UniRef50_Q8CS01	45.5117259298
+UniRef50_Q8CS01|g__Staphylococcus.s__Staphylococcus_epidermidis	45.5117259298
+UniRef50_I6TNQ1: Aminotransferase	45.4956837568
+UniRef50_I6TNQ1: Aminotransferase|g__Streptococcus.s__Streptococcus_mutans	45.4956837568
+UniRef50_Q7UNC2: Imidazoleglycerol-phosphate dehydratase	45.4827174982
+UniRef50_Q7UNC2: Imidazoleglycerol-phosphate dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.4061762880
+UniRef50_Q7UNC2: Imidazoleglycerol-phosphate dehydratase|unclassified	1.0765412102
+UniRef50_C6SU58: Bacteriocin operon protein ScnE homolog	45.4749731415
+UniRef50_C6SU58: Bacteriocin operon protein ScnE homolog|g__Streptococcus.s__Streptococcus_mutans	45.4749731415
+UniRef50_L1KHJ1	45.4699322474
+UniRef50_L1KHJ1|unclassified	45.4699322474
+UniRef50_P07102: Periplasmic AppA protein	45.4564419095
+UniRef50_P07102: Periplasmic AppA protein|g__Escherichia.s__Escherichia_coli	44.6565460072
+UniRef50_P07102: Periplasmic AppA protein|unclassified	0.7998959023
+UniRef50_A0A024C317	45.4545454545
+UniRef50_A0A024C317|g__Helicobacter.s__Helicobacter_pylori	45.4545454545
+UniRef50_A7ZMQ9: UPF0756 membrane protein YeaL	45.4545454545
+UniRef50_A7ZMQ9: UPF0756 membrane protein YeaL|g__Escherichia.s__Escherichia_coli	45.4545454545
+UniRef50_O68560: Ribosome association toxin RatA	45.4545454545
+UniRef50_O68560: Ribosome association toxin RatA|g__Pseudomonas.s__Pseudomonas_aeruginosa	45.4545454545
+UniRef50_Q9RSL9	45.4545454545
+UniRef50_Q9RSL9|g__Deinococcus.s__Deinococcus_radiodurans	45.4545454545
+UniRef50_Q837R5: UPF0042 nucleotide-binding protein EF_0766	45.4539592758
+UniRef50_Q837R5: UPF0042 nucleotide-binding protein EF_0766|g__Streptococcus.s__Streptococcus_mutans	45.4539592758
+UniRef50_Q5M430: tRNA dimethylallyltransferase	45.4486674423
+UniRef50_Q5M430: tRNA dimethylallyltransferase|g__Streptococcus.s__Streptococcus_mutans	42.5169874542
+UniRef50_Q5M430: tRNA dimethylallyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	2.4886476652
+UniRef50_Q5M430: tRNA dimethylallyltransferase|unclassified	0.4430323229
+UniRef50_H4HIB4	45.4420056246
+UniRef50_H4HIB4|g__Staphylococcus.s__Staphylococcus_aureus	37.9232086322
+UniRef50_H4HIB4|unclassified	7.5187969925
+UniRef50_A3DGK6: Acetylglutamate kinase	45.4414089008
+UniRef50_A3DGK6: Acetylglutamate kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	45.1205150302
+UniRef50_A3DGK6: Acetylglutamate kinase|unclassified	0.3208938706
+UniRef50_Q28UI8: tRNA (guanine-N(7)-)-methyltransferase	45.4259747283
+UniRef50_Q28UI8: tRNA (guanine-N(7)-)-methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	45.4259747283
+UniRef50_A7IHD1: Rubredoxin-type Fe(Cys)4 protein	45.4251839697
+UniRef50_A7IHD1: Rubredoxin-type Fe(Cys)4 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	45.4251839697
+UniRef50_P72524: DNA gyrase subunit A	45.4063820003
+UniRef50_P72524: DNA gyrase subunit A|g__Streptococcus.s__Streptococcus_mutans	43.0294882745
+UniRef50_P72524: DNA gyrase subunit A|g__Streptococcus.s__Streptococcus_agalactiae	2.2886694269
+UniRef50_P72524: DNA gyrase subunit A|unclassified	0.0882242989
+UniRef50_A5UKS3: Type II secretion system protein, GspF	45.3886278115
+UniRef50_A5UKS3: Type II secretion system protein, GspF|g__Methanobrevibacter.s__Methanobrevibacter_smithii	45.3886278115
+UniRef50_P37329: Molybdate-binding periplasmic protein	45.3851154792
+UniRef50_P37329: Molybdate-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	45.3851154792
+UniRef50_I4DZ12: Response regulator homolog	45.3578769920
+UniRef50_I4DZ12: Response regulator homolog|g__Streptococcus.s__Streptococcus_mutans	43.4348000689
+UniRef50_I4DZ12: Response regulator homolog|g__Streptococcus.s__Streptococcus_agalactiae	1.9230769231
+UniRef50_Q46802	45.3263081564
+UniRef50_Q46802|g__Escherichia.s__Escherichia_coli	45.3263081564
+UniRef50_C5WIG1: 16S rRNA m(5)C 967 methyltransferase	45.3186183052
+UniRef50_C5WIG1: 16S rRNA m(5)C 967 methyltransferase|g__Streptococcus.s__Streptococcus_mutans	44.3935489250
+UniRef50_C5WIG1: 16S rRNA m(5)C 967 methyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	0.9250693802
+UniRef50_S5YWN2	45.2907365901
+UniRef50_S5YWN2|g__Rhodobacter.s__Rhodobacter_sphaeroides	45.2907365901
+UniRef50_R9SMV0: Siroheme synthase CysG	45.2878041196
+UniRef50_R9SMV0: Siroheme synthase CysG|g__Methanobrevibacter.s__Methanobrevibacter_smithii	45.2878041196
+UniRef50_P0A9S8: High-affinity branched-chain amino acid transport ATP-binding protein LivG	45.2464907895
+UniRef50_P0A9S8: High-affinity branched-chain amino acid transport ATP-binding protein LivG|g__Escherichia.s__Escherichia_coli	45.2464907895
+UniRef50_F8LKP2	45.2440516058
+UniRef50_F8LKP2|g__Streptococcus.s__Streptococcus_mutans	45.2440516058
+UniRef50_A0A026BBH0: Aldo/keto reductase	45.2112209976
+UniRef50_A0A026BBH0: Aldo/keto reductase|g__Streptococcus.s__Streptococcus_mutans	45.2112209976
+UniRef50_B9KLU7: GCN5-related N-acetyltransferase	45.1939544279
+UniRef50_B9KLU7: GCN5-related N-acetyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	45.1939544279
+UniRef50_Q5HNC9: ISSep1-like transposase	45.1925659919
+UniRef50_Q5HNC9: ISSep1-like transposase|g__Staphylococcus.s__Staphylococcus_epidermidis	39.1352433720
+UniRef50_Q5HNC9: ISSep1-like transposase|unclassified	6.0573226199
+UniRef50_A5UKF4	45.1840256388
+UniRef50_A5UKF4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	45.1840256388
+UniRef50_Q8E418: DNA translocase FtsK	45.1756700402
+UniRef50_Q8E418: DNA translocase FtsK|g__Streptococcus.s__Streptococcus_mutans	43.7538953210
+UniRef50_Q8E418: DNA translocase FtsK|g__Streptococcus.s__Streptococcus_agalactiae	1.4217747192
+UniRef50_G0HAL8: Glycerol dehydrogenase	45.1753111029
+UniRef50_G0HAL8: Glycerol dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	45.1753111029
+UniRef50_I0C256	45.1746661611
+UniRef50_I0C256|g__Staphylococcus.s__Staphylococcus_aureus	45.1746661611
+UniRef50_Q9I676: D-hydantoinase/dihydropyrimidinase	45.1705561815
+UniRef50_Q9I676: D-hydantoinase/dihydropyrimidinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.3597636439
+UniRef50_Q9I676: D-hydantoinase/dihydropyrimidinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8107925376
+UniRef50_Q5P409: Peptide chain release factor 3	45.1648306883
+UniRef50_Q5P409: Peptide chain release factor 3|g__Escherichia.s__Escherichia_coli	34.2746555459
+UniRef50_Q5P409: Peptide chain release factor 3|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.4019612648
+UniRef50_Q5P409: Peptide chain release factor 3|g__Acinetobacter.s__Acinetobacter_baumannii	1.4882138776
+UniRef50_P0ACB2: Delta-aminolevulinic acid dehydratase	45.1639523927
+UniRef50_P0ACB2: Delta-aminolevulinic acid dehydratase|g__Escherichia.s__Escherichia_coli	43.6869510123
+UniRef50_P0ACB2: Delta-aminolevulinic acid dehydratase|unclassified	1.4770013804
+UniRef50_C7LDR5: Glutamine amidotransferase, putative	45.1575710225
+UniRef50_C7LDR5: Glutamine amidotransferase, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	45.1575710225
+UniRef50_Q53076: PgsA protein (Fragment)	45.1441816768
+UniRef50_Q53076: PgsA protein (Fragment)|unclassified	45.1441816768
+UniRef50_Q5HN02	45.1410587793
+UniRef50_Q5HN02|g__Staphylococcus.s__Staphylococcus_epidermidis	43.2105496541
+UniRef50_Q5HN02|unclassified	1.9305091252
+UniRef50_P0AFJ9: Low-affinity inorganic phosphate transporter 1	45.0940419829
+UniRef50_P0AFJ9: Low-affinity inorganic phosphate transporter 1|g__Escherichia.s__Escherichia_coli	35.1549486556
+UniRef50_P0AFJ9: Low-affinity inorganic phosphate transporter 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.9390933273
+UniRef50_Q8RFZ3: UPF0324 membrane protein FN0533	45.0884855317
+UniRef50_Q8RFZ3: UPF0324 membrane protein FN0533|g__Streptococcus.s__Streptococcus_mutans	43.9092402487
+UniRef50_Q8RFZ3: UPF0324 membrane protein FN0533|g__Streptococcus.s__Streptococcus_agalactiae	1.1792452830
+UniRef50_R9SMW6	45.0842482381
+UniRef50_R9SMW6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	45.0842482381
+UniRef50_A4WWA2	45.0313700446
+UniRef50_A4WWA2|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.1668875882
+UniRef50_A4WWA2|unclassified	0.8644824564
+UniRef50_Q5LZ25: Aminoacylase/N-acyl-L-amino acid amidohydrolase/hippurate hydrolase	45.0235707200
+UniRef50_Q5LZ25: Aminoacylase/N-acyl-L-amino acid amidohydrolase/hippurate hydrolase|g__Streptococcus.s__Streptococcus_mutans	45.0235707200
+UniRef50_P77968: Superoxide dismutase [Fe]	45.0149492061
+UniRef50_P77968: Superoxide dismutase [Fe]|g__Escherichia.s__Escherichia_coli	44.8748523727
+UniRef50_P77968: Superoxide dismutase [Fe]|unclassified	0.1400968334
+UniRef50_C5WGJ7: XRE family transcriptional regulator	45.0050995072
+UniRef50_C5WGJ7: XRE family transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	45.0050995072
+UniRef50_A5ULH0: 2-deoxyribose-5-phosphate aldolase (DERA), DeoC	45.0048425903
+UniRef50_A5ULH0: 2-deoxyribose-5-phosphate aldolase (DERA), DeoC|g__Methanobrevibacter.s__Methanobrevibacter_smithii	45.0048425903
+UniRef50_A7ZMU3: Probable manganese efflux pump MntP	44.9841943912
+UniRef50_A7ZMU3: Probable manganese efflux pump MntP|g__Escherichia.s__Escherichia_coli	44.9841943912
+UniRef50_Q8EA81: Single-stranded DNA-binding protein	44.9716203233
+UniRef50_Q8EA81: Single-stranded DNA-binding protein|g__Escherichia.s__Escherichia_coli	44.9716203233
+UniRef50_Q5HKX5: Conserved domain protein	44.9557165974
+UniRef50_Q5HKX5: Conserved domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	44.9557165974
+UniRef50_Q8DWH1: tRNA pseudouridine synthase A	44.9486456013
+UniRef50_Q8DWH1: tRNA pseudouridine synthase A|g__Streptococcus.s__Streptococcus_mutans	44.9486456013
+UniRef50_F8ETX3: ParB-like partition protein	44.9357347629
+UniRef50_F8ETX3: ParB-like partition protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.9357347629
+UniRef50_P18811: Maltose regulon regulatory protein MalI	44.9202993678
+UniRef50_P18811: Maltose regulon regulatory protein MalI|g__Escherichia.s__Escherichia_coli	44.9202993678
+UniRef50_Q3J226: Phage protein, HK97 gp10 family	44.9099037945
+UniRef50_Q3J226: Phage protein, HK97 gp10 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.7306443202
+UniRef50_Q3J226: Phage protein, HK97 gp10 family|unclassified	2.1792594743
+UniRef50_D3E124: UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU	44.8957249369
+UniRef50_D3E124: UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU|g__Methanobrevibacter.s__Methanobrevibacter_smithii	44.8957249369
+UniRef50_C6SPR1: Dihydrolipoyl dehydrogenase	44.8941381777
+UniRef50_C6SPR1: Dihydrolipoyl dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	44.8941381777
+UniRef50_I6U0E0: Stress response protein	44.8767862957
+UniRef50_I6U0E0: Stress response protein|g__Streptococcus.s__Streptococcus_mutans	44.8767862957
+UniRef50_A3PP80: Diguanylate cyclase	44.8684754830
+UniRef50_A3PP80: Diguanylate cyclase|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.2590335492
+UniRef50_A3PP80: Diguanylate cyclase|unclassified	5.6094419338
+UniRef50_U3SQS3	44.8587487026
+UniRef50_U3SQS3|g__Streptococcus.s__Streptococcus_mutans	44.8587487026
+UniRef50_UPI00035EF123: RNA helicase, partial	44.8586322131
+UniRef50_UPI00035EF123: RNA helicase, partial|g__Streptococcus.s__Streptococcus_mutans	44.8586322131
+UniRef50_D3QJ51: Rhodanese-like domain protein	44.8567836300
+UniRef50_D3QJ51: Rhodanese-like domain protein|g__Staphylococcus.s__Staphylococcus_aureus	32.2603992588
+UniRef50_D3QJ51: Rhodanese-like domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	12.5963843712
+UniRef50_F8IMU7	44.8385128257
+UniRef50_F8IMU7|g__Streptococcus.s__Streptococcus_mutans	42.5606084977
+UniRef50_F8IMU7|g__Streptococcus.s__Streptococcus_agalactiae	2.2779043280
+UniRef50_R6V5M5: Radical SAM domain protein	44.8220012340
+UniRef50_R6V5M5: Radical SAM domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.4085395779
+UniRef50_R6V5M5: Radical SAM domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	6.4134616560
+UniRef50_R6ZG02: Precorrin-4 C(11)-methyltransferase	44.8218560918
+UniRef50_R6ZG02: Precorrin-4 C(11)-methyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.1937751096
+UniRef50_R6ZG02: Precorrin-4 C(11)-methyltransferase|g__Clostridium.s__Clostridium_beijerinckii	8.6280809822
+UniRef50_Q56110: Outer membrane protein S1	44.8181767859
+UniRef50_Q56110: Outer membrane protein S1|g__Escherichia.s__Escherichia_coli	44.8181767859
+UniRef50_P0ADC7: Lipopolysaccharide export system permease protein LptG	44.8171806006
+UniRef50_P0ADC7: Lipopolysaccharide export system permease protein LptG|g__Escherichia.s__Escherichia_coli	44.8171806006
+UniRef50_G5SJE8	44.8068723178
+UniRef50_G5SJE8|g__Escherichia.s__Escherichia_coli	44.8068723178
+UniRef50_P02925: D-ribose-binding periplasmic protein	44.7980553709
+UniRef50_P02925: D-ribose-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	44.7980553709
+UniRef50_P52007: Protein YecM	44.7968785301
+UniRef50_P52007: Protein YecM|g__Escherichia.s__Escherichia_coli	44.7968785301
+UniRef50_R4Q3U4	44.7769099916
+UniRef50_R4Q3U4|g__Streptococcus.s__Streptococcus_mutans	44.7769099916
+UniRef50_O27441: 3-isopropylmalate dehydrogenase	44.7767365626
+UniRef50_O27441: 3-isopropylmalate dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	44.6760323556
+UniRef50_O27441: 3-isopropylmalate dehydrogenase|unclassified	0.1007042070
+UniRef50_Q8CS32	44.7751126600
+UniRef50_Q8CS32|g__Staphylococcus.s__Staphylococcus_epidermidis	44.7751126600
+UniRef50_Q8ZRS2: Blue copper oxidase CueO	44.7702705620
+UniRef50_Q8ZRS2: Blue copper oxidase CueO|g__Escherichia.s__Escherichia_coli	44.7702705620
+UniRef50_B9KU34	44.7674546957
+UniRef50_B9KU34|unclassified	44.7674546957
+UniRef50_L1KBM7	44.7668218456
+UniRef50_L1KBM7|unclassified	44.7668218456
+UniRef50_A4VU30: DNA uptake protein and related DNA-binding proteins	44.7539300504
+UniRef50_A4VU30: DNA uptake protein and related DNA-binding proteins|g__Streptococcus.s__Streptococcus_mutans	44.7539300504
+UniRef50_O58411: Pyruvate/ketoisovalerate oxidoreductases common subunit gamma	44.7483493161
+UniRef50_O58411: Pyruvate/ketoisovalerate oxidoreductases common subunit gamma|g__Methanobrevibacter.s__Methanobrevibacter_smithii	44.7483493161
+UniRef50_Q5LNK3: Holo-[acyl-carrier-protein] synthase	44.7429259573
+UniRef50_Q5LNK3: Holo-[acyl-carrier-protein] synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.4213941179
+UniRef50_Q5LNK3: Holo-[acyl-carrier-protein] synthase|unclassified	0.3215318394
+UniRef50_K8EIP5: Radical SAM superfamily protein	44.7322798297
+UniRef50_K8EIP5: Radical SAM superfamily protein|g__Streptococcus.s__Streptococcus_mutans	44.7322798297
+UniRef50_P76362: UPF0758 protein YeeS	44.7305189113
+UniRef50_P76362: UPF0758 protein YeeS|g__Escherichia.s__Escherichia_coli	44.7305189113
+UniRef50_O26329: Cobalt-precorrin-8X methylmutase	44.7024002996
+UniRef50_O26329: Cobalt-precorrin-8X methylmutase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	44.7024002996
+UniRef50_Q6MSN9: 30S ribosomal protein S8	44.6989401906
+UniRef50_Q6MSN9: 30S ribosomal protein S8|g__Streptococcus.s__Streptococcus_mutans	39.0676745265
+UniRef50_Q6MSN9: 30S ribosomal protein S8|g__Propionibacterium.s__Propionibacterium_acnes	3.1250000000
+UniRef50_Q6MSN9: 30S ribosomal protein S8|g__Clostridium.s__Clostridium_beijerinckii	2.5062656642
+UniRef50_Q5LYF9	44.6843202780
+UniRef50_Q5LYF9|g__Streptococcus.s__Streptococcus_mutans	44.5896255011
+UniRef50_Q5LYF9|unclassified	0.0946947768
+UniRef50_P45799: ADP compounds hydrolase NudE	44.6522892421
+UniRef50_P45799: ADP compounds hydrolase NudE|g__Escherichia.s__Escherichia_coli	44.6522892421
+UniRef50_C6SPU8: Glucan-binding protein C	44.6474884990
+UniRef50_C6SPU8: Glucan-binding protein C|g__Streptococcus.s__Streptococcus_mutans	44.6474884990
+UniRef50_O26742: Amidophosphoribosyltransferase	44.6235319194
+UniRef50_O26742: Amidophosphoribosyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	44.5907967592
+UniRef50_O26742: Amidophosphoribosyltransferase|unclassified	0.0327351602
+UniRef50_A3PN67	44.6027216640
+UniRef50_A3PN67|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.6027216640
+UniRef50_Q984R8: Mll7872 protein	44.5998007765
+UniRef50_Q984R8: Mll7872 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.5998007765
+UniRef50_A6DZ03	44.5980370386
+UniRef50_A6DZ03|unclassified	44.5980370386
+UniRef50_Q9ZBH3: UPF0264 protein SCO6440	44.5720565161
+UniRef50_Q9ZBH3: UPF0264 protein SCO6440|g__Methanobrevibacter.s__Methanobrevibacter_smithii	44.5720565161
+UniRef50_O26944: Metalloprotease MTH_856	44.5705384718
+UniRef50_O26944: Metalloprotease MTH_856|g__Methanobrevibacter.s__Methanobrevibacter_smithii	44.5705384718
+UniRef50_Q0BAQ4: tRNA modification GTPase MnmE	44.5680319626
+UniRef50_Q0BAQ4: tRNA modification GTPase MnmE|g__Escherichia.s__Escherichia_coli	26.8667350673
+UniRef50_Q0BAQ4: tRNA modification GTPase MnmE|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.9482848471
+UniRef50_Q0BAQ4: tRNA modification GTPase MnmE|g__Neisseria.s__Neisseria_meningitidis	0.7530120482
+UniRef50_Q3J1A8: 1-deoxy-D-xylulose-5-phosphate synthase 1	44.5636411322
+UniRef50_Q3J1A8: 1-deoxy-D-xylulose-5-phosphate synthase 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.3171286649
+UniRef50_Q3J1A8: 1-deoxy-D-xylulose-5-phosphate synthase 1|unclassified	0.2465124673
+UniRef50_Q9V2R2: Quinolinate synthase A	44.5431066432
+UniRef50_Q9V2R2: Quinolinate synthase A|g__Methanobrevibacter.s__Methanobrevibacter_smithii	44.4102965063
+UniRef50_Q9V2R2: Quinolinate synthase A|unclassified	0.1328101369
+UniRef50_D3HEP6: Glycosyl hydrolases family 25	44.5385501269
+UniRef50_D3HEP6: Glycosyl hydrolases family 25|g__Streptococcus.s__Streptococcus_mutans	39.6669609231
+UniRef50_D3HEP6: Glycosyl hydrolases family 25|g__Streptococcus.s__Streptococcus_agalactiae	4.8715892038
+UniRef50_C6SRF0	44.5365198479
+UniRef50_C6SRF0|g__Streptococcus.s__Streptococcus_mutans	44.5365198479
+UniRef50_P0A9E1: Arabinose operon regulatory protein	44.5021385229
+UniRef50_P0A9E1: Arabinose operon regulatory protein|g__Escherichia.s__Escherichia_coli	44.5021385229
+UniRef50_Q99XQ7: Elongation factor Ts	44.4938569465
+UniRef50_Q99XQ7: Elongation factor Ts|g__Streptococcus.s__Streptococcus_mutans	42.4473867159
+UniRef50_Q99XQ7: Elongation factor Ts|g__Streptococcus.s__Streptococcus_agalactiae	2.0464702306
+UniRef50_P0AGB1: Phosphoserine phosphatase	44.4614672206
+UniRef50_P0AGB1: Phosphoserine phosphatase|g__Escherichia.s__Escherichia_coli	42.6974139723
+UniRef50_P0AGB1: Phosphoserine phosphatase|unclassified	1.7640532484
+UniRef50_A3PMC5: Phospholipid/glycerol acyltransferase	44.4564941053
+UniRef50_A3PMC5: Phospholipid/glycerol acyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.4564941053
+UniRef50_R7MTU6	44.4560494848
+UniRef50_R7MTU6|g__Streptococcus.s__Streptococcus_mutans	30.9047831115
+UniRef50_R7MTU6|g__Streptococcus.s__Streptococcus_agalactiae	13.5512663733
+UniRef50_A5UK81: Predicted transcriptional regulator	44.4490389805
+UniRef50_A5UK81: Predicted transcriptional regulator|g__Methanobrevibacter.s__Methanobrevibacter_smithii	44.4490389805
+UniRef50_Q02425: Putative transcriptional regulator MtlR	44.4248373812
+UniRef50_Q02425: Putative transcriptional regulator MtlR|g__Streptococcus.s__Streptococcus_mutans	44.4248373812
+UniRef50_A6T4E6: UPF0246 protein KPN78578_00060	44.4212216285
+UniRef50_A6T4E6: UPF0246 protein KPN78578_00060|g__Escherichia.s__Escherichia_coli	38.5721523261
+UniRef50_A6T4E6: UPF0246 protein KPN78578_00060|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4770478087
+UniRef50_A6T4E6: UPF0246 protein KPN78578_00060|unclassified	0.3720214937
+UniRef50_A6T5Z2: Putative glutamate--cysteine ligase 2	44.4186595781
+UniRef50_A6T5Z2: Putative glutamate--cysteine ligase 2|g__Escherichia.s__Escherichia_coli	44.4186595781
+UniRef50_Q8DUC9: Probable 2-(5''-triphosphoribosyl)-3'-dephosphocoenzyme-A synthase	44.4137880626
+UniRef50_Q8DUC9: Probable 2-(5''-triphosphoribosyl)-3'-dephosphocoenzyme-A synthase|g__Streptococcus.s__Streptococcus_mutans	44.4137880626
+UniRef50_D3E3I9: PIN domain-containing protein	44.4034536632
+UniRef50_D3E3I9: PIN domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	44.4034536632
+UniRef50_A9GRA4: 50S ribosomal protein L1	44.3905885699
+UniRef50_A9GRA4: 50S ribosomal protein L1|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.3905885699
+UniRef50_P0AFW6: Regulator of nucleoside diphosphate kinase	44.3899782135
+UniRef50_P0AFW6: Regulator of nucleoside diphosphate kinase|g__Escherichia.s__Escherichia_coli	44.3899782135
+UniRef50_B9KTV5: Extracellular solute-binding protein, family 3	44.3890388426
+UniRef50_B9KTV5: Extracellular solute-binding protein, family 3|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.3890388426
+UniRef50_A8LPB3: Import inner membrane translocase	44.3801912297
+UniRef50_A8LPB3: Import inner membrane translocase|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.3698045451
+UniRef50_A8LPB3: Import inner membrane translocase|unclassified	3.0103866846
+UniRef50_P95676: Alpha-acetolactate decarboxylase	44.3779476871
+UniRef50_P95676: Alpha-acetolactate decarboxylase|g__Streptococcus.s__Streptococcus_mutans	42.9832475476
+UniRef50_P95676: Alpha-acetolactate decarboxylase|g__Streptococcus.s__Streptococcus_agalactiae	1.3947001395
+UniRef50_F8DIJ3: Acetyltransferase, GNAT family	44.3777694623
+UniRef50_F8DIJ3: Acetyltransferase, GNAT family|g__Streptococcus.s__Streptococcus_mutans	44.3777694623
+UniRef50_S5FCX8: Carboxylate--amine ligase	44.3776393335
+UniRef50_S5FCX8: Carboxylate--amine ligase|g__Streptococcus.s__Streptococcus_mutans	44.3776393335
+UniRef50_D4MG24: Transcriptional regulator, GntR family	44.3699994233
+UniRef50_D4MG24: Transcriptional regulator, GntR family|g__Streptococcus.s__Streptococcus_mutans	44.3699994233
+UniRef50_A7ZKS4: Phosphatase NudJ	44.3582897905
+UniRef50_A7ZKS4: Phosphatase NudJ|g__Escherichia.s__Escherichia_coli	44.3582897905
+UniRef50_A7X204: Large-conductance mechanosensitive channel	44.3565653515
+UniRef50_A7X204: Large-conductance mechanosensitive channel|g__Staphylococcus.s__Staphylococcus_epidermidis	44.3565653515
+UniRef50_P44990: Putative L-ribulose-5-phosphate 3-epimerase SgbU	44.3429154275
+UniRef50_P44990: Putative L-ribulose-5-phosphate 3-epimerase SgbU|g__Streptococcus.s__Streptococcus_mutans	41.3405483247
+UniRef50_P44990: Putative L-ribulose-5-phosphate 3-epimerase SgbU|g__Escherichia.s__Escherichia_coli	1.2771392082
+UniRef50_P44990: Putative L-ribulose-5-phosphate 3-epimerase SgbU|g__Streptococcus.s__Streptococcus_agalactiae	1.1764705882
+UniRef50_P44990: Putative L-ribulose-5-phosphate 3-epimerase SgbU|unclassified	0.5487573063
+UniRef50_Q8XE72: 2-dehydropantoate 2-reductase	44.3348049536
+UniRef50_Q8XE72: 2-dehydropantoate 2-reductase|g__Escherichia.s__Escherichia_coli	44.3348049536
+UniRef50_B3EPQ3: Protease HtpX homolog	44.3330419624
+UniRef50_B3EPQ3: Protease HtpX homolog|g__Escherichia.s__Escherichia_coli	44.3330419624
+UniRef50_Q5HCM9: Poly-beta-1,6-N-acetyl-D-glucosamine N-deacetylase	44.3314128485
+UniRef50_Q5HCM9: Poly-beta-1,6-N-acetyl-D-glucosamine N-deacetylase|g__Staphylococcus.s__Staphylococcus_aureus	44.3314128485
+UniRef50_M1XHM6: Universal stress protein family protein	44.3308969701
+UniRef50_M1XHM6: Universal stress protein family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	26.5276444637
+UniRef50_M1XHM6: Universal stress protein family protein|g__Staphylococcus.s__Staphylococcus_aureus	17.8032525064
+UniRef50_A3CKQ0: Malate permease, putative	44.3184622339
+UniRef50_A3CKQ0: Malate permease, putative|g__Streptococcus.s__Streptococcus_mutans	44.3184622339
+UniRef50_R9SMU9: CRISPR-associated protein Cas4	44.3131075183
+UniRef50_R9SMU9: CRISPR-associated protein Cas4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	44.3131075183
+UniRef50_A5UKS7: Transcriptional regulator, MarR family	44.3088608639
+UniRef50_A5UKS7: Transcriptional regulator, MarR family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	44.3088608639
+UniRef50_Q89N53: GMP synthase [glutamine-hydrolyzing]	44.2925422399
+UniRef50_Q89N53: GMP synthase [glutamine-hydrolyzing]|g__Escherichia.s__Escherichia_coli	36.1957476023
+UniRef50_Q89N53: GMP synthase [glutamine-hydrolyzing]|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1173339228
+UniRef50_Q89N53: GMP synthase [glutamine-hydrolyzing]|g__Acinetobacter.s__Acinetobacter_baumannii	2.5545798022
+UniRef50_Q89N53: GMP synthase [glutamine-hydrolyzing]|unclassified	0.4248809127
+UniRef50_Q5X1A0: Ribosomal RNA large subunit methyltransferase E	44.2912883852
+UniRef50_Q5X1A0: Ribosomal RNA large subunit methyltransferase E|g__Pseudomonas.s__Pseudomonas_aeruginosa	24.8722409056
+UniRef50_Q5X1A0: Ribosomal RNA large subunit methyltransferase E|g__Escherichia.s__Escherichia_coli	19.3168596337
+UniRef50_Q5X1A0: Ribosomal RNA large subunit methyltransferase E|unclassified	0.1021878458
+UniRef50_Q8DV78	44.2897969357
+UniRef50_Q8DV78|g__Streptococcus.s__Streptococcus_mutans	44.2897969357
+UniRef50_B9JHG8	44.2852473028
+UniRef50_B9JHG8|g__Rhodobacter.s__Rhodobacter_sphaeroides	43.9776943055
+UniRef50_B9JHG8|unclassified	0.3075529974
+UniRef50_C4ZGW0: Aspartate aminotransferase, putative	44.2736435216
+UniRef50_C4ZGW0: Aspartate aminotransferase, putative|g__Methanobrevibacter.s__Methanobrevibacter_smithii	44.2736435216
+UniRef50_X5PZN2: Transposase	44.2675929990
+UniRef50_X5PZN2: Transposase|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.2675929990
+UniRef50_P11000: Wall-associated protein	44.2644215843
+UniRef50_P11000: Wall-associated protein|g__Streptococcus.s__Streptococcus_mutans	44.2644215843
+UniRef50_F2M7N9: ABC superfamily ATP binding cassette transporter, ABC protein	44.2631985919
+UniRef50_F2M7N9: ABC superfamily ATP binding cassette transporter, ABC protein|g__Streptococcus.s__Streptococcus_mutans	40.3052813102
+UniRef50_F2M7N9: ABC superfamily ATP binding cassette transporter, ABC protein|g__Streptococcus.s__Streptococcus_agalactiae	3.9579172817
+UniRef50_I3XD08: Lipid A export ATP-binding/permease protein MsbA	44.2594748295
+UniRef50_I3XD08: Lipid A export ATP-binding/permease protein MsbA|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.2594748295
+UniRef50_F2J6H9: Bacteriophage-related protein	44.2456816943
+UniRef50_F2J6H9: Bacteriophage-related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	43.2386323489
+UniRef50_F2J6H9: Bacteriophage-related protein|unclassified	1.0070493454
+UniRef50_C6ST75	44.2342745178
+UniRef50_C6ST75|g__Streptococcus.s__Streptococcus_mutans	44.2342745178
+UniRef50_W5VFG0	44.2282951932
+UniRef50_W5VFG0|unclassified	44.2282951932
+UniRef50_P72525: DNA topoisomerase 4 subunit A	44.2275242181
+UniRef50_P72525: DNA topoisomerase 4 subunit A|g__Streptococcus.s__Streptococcus_mutans	42.2926571476
+UniRef50_P72525: DNA topoisomerase 4 subunit A|g__Streptococcus.s__Streptococcus_agalactiae	1.8372479471
+UniRef50_P72525: DNA topoisomerase 4 subunit A|unclassified	0.0976191234
+UniRef50_A6U9U3: Cyclic pyranopterin monophosphate synthase	44.2138393620
+UniRef50_A6U9U3: Cyclic pyranopterin monophosphate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.1359917690
+UniRef50_A6U9U3: Cyclic pyranopterin monophosphate synthase|unclassified	0.0778475930
+UniRef50_I6TSK5: Osmoprotectant amino acid ABC transporter ATP-binding protein	44.2071921060
+UniRef50_I6TSK5: Osmoprotectant amino acid ABC transporter ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	44.2071921060
+UniRef50_C7ZVT4: Phosphoribosylformylglycinamidine synthase	44.2016806723
+UniRef50_C7ZVT4: Phosphoribosylformylglycinamidine synthase|g__Staphylococcus.s__Staphylococcus_aureus	44.2016806723
+UniRef50_C6SRE4	44.1835296197
+UniRef50_C6SRE4|g__Streptococcus.s__Streptococcus_mutans	44.1835296197
+UniRef50_C6SR85	44.1680554717
+UniRef50_C6SR85|g__Streptococcus.s__Streptococcus_mutans	44.1680554717
+UniRef50_I2ZQB3: L-lactate dehydrogenase (Cytochrome)	44.1650504525
+UniRef50_I2ZQB3: L-lactate dehydrogenase (Cytochrome)|g__Escherichia.s__Escherichia_coli	44.1650504525
+UniRef50_I6T636: MutG	44.1647961472
+UniRef50_I6T636: MutG|g__Streptococcus.s__Streptococcus_mutans	44.1647961472
+UniRef50_Q8CQW5	44.1503999846
+UniRef50_Q8CQW5|g__Staphylococcus.s__Staphylococcus_epidermidis	44.1503999846
+UniRef50_P10249: Sucrose phosphorylase	44.1330549189
+UniRef50_P10249: Sucrose phosphorylase|g__Streptococcus.s__Streptococcus_mutans	44.1330549189
+UniRef50_G4QII0: D-isomer specific 2-hydroxyacid dehydrogenase, NAD-binding protein	44.1193873523
+UniRef50_G4QII0: D-isomer specific 2-hydroxyacid dehydrogenase, NAD-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.1193873523
+UniRef50_F9Y8V6: Sugar ABC transporter, permease protein	44.1190018776
+UniRef50_F9Y8V6: Sugar ABC transporter, permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.1190018776
+UniRef50_U5PD31: Asparaginase	44.1089398787
+UniRef50_U5PD31: Asparaginase|g__Streptococcus.s__Streptococcus_mutans	37.1353993493
+UniRef50_U5PD31: Asparaginase|g__Streptococcus.s__Streptococcus_agalactiae	6.9735405294
+UniRef50_M5AC54	44.1049748983
+UniRef50_M5AC54|g__Streptococcus.s__Streptococcus_mutans	40.2414808944
+UniRef50_M5AC54|g__Streptococcus.s__Streptococcus_agalactiae	3.8634940039
+UniRef50_Q8XE45: Malate:quinone oxidoreductase	44.0941424511
+UniRef50_Q8XE45: Malate:quinone oxidoreductase|g__Escherichia.s__Escherichia_coli	22.6186922972
+UniRef50_Q8XE45: Malate:quinone oxidoreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.0396273213
+UniRef50_Q8XE45: Malate:quinone oxidoreductase|g__Acinetobacter.s__Acinetobacter_baumannii	2.8910529594
+UniRef50_Q8XE45: Malate:quinone oxidoreductase|unclassified	0.5447698732
+UniRef50_P71311	44.0938187561
+UniRef50_P71311|g__Escherichia.s__Escherichia_coli	44.0938187561
+UniRef50_G2SQ27: Glycosyltransferase	44.0932471877
+UniRef50_G2SQ27: Glycosyltransferase|g__Streptococcus.s__Streptococcus_mutans	44.0932471877
+UniRef50_A5UN92: Multidrug efflux permease, AraJ	44.0926449007
+UniRef50_A5UN92: Multidrug efflux permease, AraJ|g__Methanobrevibacter.s__Methanobrevibacter_smithii	44.0926449007
+UniRef50_K4QA11	44.0856099402
+UniRef50_K4QA11|g__Streptococcus.s__Streptococcus_mutans	38.7327910212
+UniRef50_K4QA11|g__Streptococcus.s__Streptococcus_agalactiae	5.3528189191
+UniRef50_P0AFK8: Spermidine/putrescine transport system permease protein PotC	44.0563415265
+UniRef50_P0AFK8: Spermidine/putrescine transport system permease protein PotC|g__Escherichia.s__Escherichia_coli	44.0563415265
+UniRef50_B1MWT1: ABC-type dipeptide/oligopeptide/nickel transport system, permease component	44.0537371742
+UniRef50_B1MWT1: ABC-type dipeptide/oligopeptide/nickel transport system, permease component|g__Streptococcus.s__Streptococcus_mutans	44.0537371742
+UniRef50_O26858: Endonuclease III	44.0498017484
+UniRef50_O26858: Endonuclease III|g__Methanobrevibacter.s__Methanobrevibacter_smithii	44.0498017484
+UniRef50_O27494: Phosphoribosylamine--glycine ligase	44.0401663325
+UniRef50_O27494: Phosphoribosylamine--glycine ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	44.0401663325
+UniRef50_F4M2X7	44.0254565957
+UniRef50_F4M2X7|g__Escherichia.s__Escherichia_coli	44.0254565957
+UniRef50_P36930: Galactitol utilization operon repressor	44.0067541526
+UniRef50_P36930: Galactitol utilization operon repressor|g__Escherichia.s__Escherichia_coli	44.0067541526
+UniRef50_Q28W31: Transcriptional regulator PpsR	44.0041679457
+UniRef50_Q28W31: Transcriptional regulator PpsR|g__Rhodobacter.s__Rhodobacter_sphaeroides	44.0041679457
+UniRef50_V7ZEH0: ABC transporter permease and ATP-binding protein	43.9927331140
+UniRef50_V7ZEH0: ABC transporter permease and ATP-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	43.9927331140
+UniRef50_Q03K16: 4-hydroxy-tetrahydrodipicolinate synthase	43.9838931142
+UniRef50_Q03K16: 4-hydroxy-tetrahydrodipicolinate synthase|g__Streptococcus.s__Streptococcus_mutans	43.9838931142
+UniRef50_Q8E5K2: Phosphate-binding protein PstS 1	43.9797519712
+UniRef50_Q8E5K2: Phosphate-binding protein PstS 1|g__Streptococcus.s__Streptococcus_mutans	43.9797519712
+UniRef50_A3PHA6	43.9707098206
+UniRef50_A3PHA6|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.0309023048
+UniRef50_A3PHA6|unclassified	11.9398075158
+UniRef50_Q046F5: Ribose/xylose/arabinose/galactoside ABC-type transport system, permease component	43.9670710107
+UniRef50_Q046F5: Ribose/xylose/arabinose/galactoside ABC-type transport system, permease component|g__Streptococcus.s__Streptococcus_mutans	43.9670710107
+UniRef50_P68898: HPr kinase/phosphorylase	43.9639687544
+UniRef50_P68898: HPr kinase/phosphorylase|g__Streptococcus.s__Streptococcus_mutans	43.9639687544
+UniRef50_Q6GE71	43.9635805907
+UniRef50_Q6GE71|g__Staphylococcus.s__Staphylococcus_aureus	43.9635805907
+UniRef50_P31474: Probable transport protein HsrA	43.9586323599
+UniRef50_P31474: Probable transport protein HsrA|g__Escherichia.s__Escherichia_coli	43.9586323599
+UniRef50_R5VVL9	43.9521529998
+UniRef50_R5VVL9|g__Streptococcus.s__Streptococcus_mutans	43.9521529998
+UniRef50_A8AXV1: Transporter	43.9296036577
+UniRef50_A8AXV1: Transporter|g__Streptococcus.s__Streptococcus_mutans	43.9296036577
+UniRef50_Q04CP4: Fhu operon transcription regulator	43.9192478614
+UniRef50_Q04CP4: Fhu operon transcription regulator|g__Streptococcus.s__Streptococcus_mutans	43.9192478614
+UniRef50_A4WSW4: ErfK/YbiS/YcfS/YnhG family protein	43.9065946815
+UniRef50_A4WSW4: ErfK/YbiS/YcfS/YnhG family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	43.9065946815
+UniRef50_A9HYE8: Fumarate reductase iron-sulfur protein	43.9026541044
+UniRef50_A9HYE8: Fumarate reductase iron-sulfur protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	43.9026541044
+UniRef50_P44450: Formate dehydrogenase iron-sulfur subunit	43.8956008075
+UniRef50_P44450: Formate dehydrogenase iron-sulfur subunit|g__Escherichia.s__Escherichia_coli	32.4814751133
+UniRef50_P44450: Formate dehydrogenase iron-sulfur subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.4141256942
+UniRef50_I6TQG8: Signal peptidase I	43.8525831538
+UniRef50_I6TQG8: Signal peptidase I|g__Streptococcus.s__Streptococcus_mutans	43.8525831538
+UniRef50_P44742	43.8406763414
+UniRef50_P44742|g__Escherichia.s__Escherichia_coli	43.0432281755
+UniRef50_P44742|g__Helicobacter.s__Helicobacter_pylori	0.7974481659
+UniRef50_I6Q203: Transposase	43.8372075047
+UniRef50_I6Q203: Transposase|g__Streptococcus.s__Streptococcus_mutans	43.8372075047
+UniRef50_P76345: Cytochrome b561 homolog 1	43.8264618753
+UniRef50_P76345: Cytochrome b561 homolog 1|g__Escherichia.s__Escherichia_coli	43.8264618753
+UniRef50_P76419	43.8259921536
+UniRef50_P76419|g__Escherichia.s__Escherichia_coli	43.8259921536
+UniRef50_Q46863: Putative binding protein YgiS	43.8249406312
+UniRef50_Q46863: Putative binding protein YgiS|g__Escherichia.s__Escherichia_coli	43.8249406312
+UniRef50_P0CZ69: Arginine regulator	43.8223990460
+UniRef50_P0CZ69: Arginine regulator|g__Streptococcus.s__Streptococcus_mutans	43.8223990460
+UniRef50_T0TCE5: SWF/SNF family helicase	43.8163756839
+UniRef50_T0TCE5: SWF/SNF family helicase|g__Streptococcus.s__Streptococcus_mutans	43.8163756839
+UniRef50_S5RNF0	43.7817736259
+UniRef50_S5RNF0|g__Streptococcus.s__Streptococcus_mutans	43.7817736259
+UniRef50_Q1C0V9: Rhamnulokinase	43.7812583825
+UniRef50_Q1C0V9: Rhamnulokinase|g__Escherichia.s__Escherichia_coli	43.7812583825
+UniRef50_C6SRL3	43.7639484677
+UniRef50_C6SRL3|g__Streptococcus.s__Streptococcus_mutans	43.7639484677
+UniRef50_Q8DVZ9	43.7639387530
+UniRef50_Q8DVZ9|g__Streptococcus.s__Streptococcus_mutans	43.7639387530
+UniRef50_Q3IVN0	43.7211731753
+UniRef50_Q3IVN0|g__Rhodobacter.s__Rhodobacter_sphaeroides	43.7211731753
+UniRef50_P0AE54: Putative peroxiredoxin bcp	43.7183328721
+UniRef50_P0AE54: Putative peroxiredoxin bcp|g__Escherichia.s__Escherichia_coli	43.7183328721
+UniRef50_P42599	43.7143450283
+UniRef50_P42599|g__Escherichia.s__Escherichia_coli	43.7143450283
+UniRef50_Q5M456	43.7116106002
+UniRef50_Q5M456|g__Streptococcus.s__Streptococcus_mutans	42.5281786476
+UniRef50_Q5M456|g__Streptococcus.s__Streptococcus_agalactiae	1.1834319527
+UniRef50_P0A9H6: Cob(I)yrinic acid a,c-diamide adenosyltransferase	43.7088735967
+UniRef50_P0A9H6: Cob(I)yrinic acid a,c-diamide adenosyltransferase|g__Escherichia.s__Escherichia_coli	41.4193841880
+UniRef50_P0A9H6: Cob(I)yrinic acid a,c-diamide adenosyltransferase|unclassified	2.2894894087
+UniRef50_Q6D7E5: Zinc transporter ZitB	43.6999629907
+UniRef50_Q6D7E5: Zinc transporter ZitB|g__Escherichia.s__Escherichia_coli	43.6999629907
+UniRef50_P0ABU5: Enhancing lycopene biosynthesis protein 2	43.6812605536
+UniRef50_P0ABU5: Enhancing lycopene biosynthesis protein 2|g__Escherichia.s__Escherichia_coli	38.2836195695
+UniRef50_P0ABU5: Enhancing lycopene biosynthesis protein 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3976409841
+UniRef50_I6U158	43.6675281610
+UniRef50_I6U158|g__Streptococcus.s__Streptococcus_mutans	43.6675281610
+UniRef50_B9KPQ3	43.6669149639
+UniRef50_B9KPQ3|unclassified	39.3565701363
+UniRef50_B9KPQ3|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.3103448276
+UniRef50_C7ZV25: Bacillithiol system protein YtxJ	43.6633851535
+UniRef50_C7ZV25: Bacillithiol system protein YtxJ|g__Staphylococcus.s__Staphylococcus_aureus	39.5311537485
+UniRef50_C7ZV25: Bacillithiol system protein YtxJ|g__Staphylococcus.s__Staphylococcus_epidermidis	4.1322314050
+UniRef50_A5ULV3: IMP cyclohydrolase	43.6540466387
+UniRef50_A5ULV3: IMP cyclohydrolase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	43.6540466387
+UniRef50_Q02001: Anthranilate synthase component 1	43.6506968058
+UniRef50_Q02001: Anthranilate synthase component 1|g__Streptococcus.s__Streptococcus_mutans	43.5496989857
+UniRef50_Q02001: Anthranilate synthase component 1|unclassified	0.1009978201
+UniRef50_B9KP07	43.6473932905
+UniRef50_B9KP07|unclassified	37.7650403494
+UniRef50_B9KP07|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.8823529412
+UniRef50_S6C0Y4: Citrate transporter protein	43.6342622641
+UniRef50_S6C0Y4: Citrate transporter protein|g__Streptococcus.s__Streptococcus_mutans	43.6342622641
+UniRef50_P20083: DNA topoisomerase 4 subunit B	43.6126812557
+UniRef50_P20083: DNA topoisomerase 4 subunit B|g__Escherichia.s__Escherichia_coli	29.2675873891
+UniRef50_P20083: DNA topoisomerase 4 subunit B|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.8809239379
+UniRef50_P20083: DNA topoisomerase 4 subunit B|g__Acinetobacter.s__Acinetobacter_baumannii	2.4641699287
+UniRef50_A8AVA4: ABC transporter ATP-binding protein	43.6081097814
+UniRef50_A8AVA4: ABC transporter ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	43.6081097814
+UniRef50_P76445: Inner membrane protein YeiU	43.5989358054
+UniRef50_P76445: Inner membrane protein YeiU|g__Escherichia.s__Escherichia_coli	43.5989358054
+UniRef50_A3PNW7	43.5920601881
+UniRef50_A3PNW7|unclassified	43.5920601881
+UniRef50_P37487: Manganese-dependent inorganic pyrophosphatase	43.5866748369
+UniRef50_P37487: Manganese-dependent inorganic pyrophosphatase|g__Streptococcus.s__Streptococcus_mutans	42.5148634757
+UniRef50_P37487: Manganese-dependent inorganic pyrophosphatase|g__Streptococcus.s__Streptococcus_agalactiae	1.0718113612
+UniRef50_Q8DV98: Folate transporter FolT	43.5743721347
+UniRef50_Q8DV98: Folate transporter FolT|g__Streptococcus.s__Streptococcus_mutans	43.5743721347
+UniRef50_A7IDP6: Glutamine amidotransferase class-I	43.5692218220
+UniRef50_A7IDP6: Glutamine amidotransferase class-I|g__Rhodobacter.s__Rhodobacter_sphaeroides	43.5692218220
+UniRef50_M2FX18: SAM-dependent methyltransferase	43.5673985705
+UniRef50_M2FX18: SAM-dependent methyltransferase|g__Streptococcus.s__Streptococcus_mutans	43.5673985705
+UniRef50_Q83MA0: Taurine import ATP-binding protein TauB	43.5671396372
+UniRef50_Q83MA0: Taurine import ATP-binding protein TauB|g__Escherichia.s__Escherichia_coli	43.5671396372
+UniRef50_P25894: Metalloprotease LoiP	43.5351470693
+UniRef50_P25894: Metalloprotease LoiP|g__Escherichia.s__Escherichia_coli	43.5351470693
+UniRef50_U3STE3: Partial transposase	43.5320612505
+UniRef50_U3STE3: Partial transposase|g__Streptococcus.s__Streptococcus_mutans	43.5320612505
+UniRef50_M4KI13: Fibrinogen-binding family protein	43.5293289397
+UniRef50_M4KI13: Fibrinogen-binding family protein|g__Streptococcus.s__Streptococcus_mutans	43.5067881575
+UniRef50_M4KI13: Fibrinogen-binding family protein|unclassified	0.0225407822
+UniRef50_S5E3S7: ABC transport protein permease component	43.5249492985
+UniRef50_S5E3S7: ABC transport protein permease component|g__Streptococcus.s__Streptococcus_mutans	42.5797697144
+UniRef50_S5E3S7: ABC transport protein permease component|g__Streptococcus.s__Streptococcus_agalactiae	0.9451795841
+UniRef50_P37662	43.5020219994
+UniRef50_P37662|g__Escherichia.s__Escherichia_coli	43.5020219994
+UniRef50_I0C0T2: Trp repressor binding protein	43.4932962588
+UniRef50_I0C0T2: Trp repressor binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	42.0893315298
+UniRef50_I0C0T2: Trp repressor binding protein|unclassified	1.4039647289
+UniRef50_I1ZLT1: Thiamine biosynthesis protein ApbE, putative	43.4811713107
+UniRef50_I1ZLT1: Thiamine biosynthesis protein ApbE, putative|g__Streptococcus.s__Streptococcus_mutans	43.4811713107
+UniRef50_P31130	43.4782608696
+UniRef50_P31130|g__Escherichia.s__Escherichia_coli	43.4782608696
+UniRef50_Q5H5N0: 4-carboxymuconolactone decarboxylase	43.4782608696
+UniRef50_Q5H5N0: 4-carboxymuconolactone decarboxylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	43.4782608696
+UniRef50_B9KWM5: Short-chain alcohol dehydrogenase	43.4722165914
+UniRef50_B9KWM5: Short-chain alcohol dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	43.4722165914
+UniRef50_P35594: ATP-dependent Clp protease ATP-binding subunit ClpE	43.4712579037
+UniRef50_P35594: ATP-dependent Clp protease ATP-binding subunit ClpE|g__Streptococcus.s__Streptococcus_mutans	42.5801904529
+UniRef50_P35594: ATP-dependent Clp protease ATP-binding subunit ClpE|g__Streptococcus.s__Streptococcus_agalactiae	0.8910674508
+UniRef50_C6SNZ9	43.4636629908
+UniRef50_C6SNZ9|g__Streptococcus.s__Streptococcus_mutans	43.4636629908
+UniRef50_U9YEM0	43.4609250399
+UniRef50_U9YEM0|g__Escherichia.s__Escherichia_coli	43.4609250399
+UniRef50_M7DT58: Deacetylase	43.4597521270
+UniRef50_M7DT58: Deacetylase|g__Streptococcus.s__Streptococcus_mutans	43.4597521270
+UniRef50_P49331: Glucosyltransferase-S	43.4479004233
+UniRef50_P49331: Glucosyltransferase-S|g__Streptococcus.s__Streptococcus_mutans	43.4479004233
+UniRef50_Q8GNZ1: Rep1	43.4459446316
+UniRef50_Q8GNZ1: Rep1|unclassified	43.4459446316
+UniRef50_A5UJS6	43.4376148725
+UniRef50_A5UJS6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	43.4376148725
+UniRef50_Q839H4: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase	43.4360381724
+UniRef50_Q839H4: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase|g__Streptococcus.s__Streptococcus_mutans	41.8981747386
+UniRef50_Q839H4: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase|g__Streptococcus.s__Streptococcus_agalactiae	1.4814814815
+UniRef50_Q839H4: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase|unclassified	0.0563819523
+UniRef50_Q9ZAH9: Bacterial PH domain protein	43.4270841922
+UniRef50_Q9ZAH9: Bacterial PH domain protein|g__Staphylococcus.s__Staphylococcus_aureus	43.4270841922
+UniRef50_T3IE94: Lantibiotic protection ABC transporter, ATP-binding subunit	43.4241431629
+UniRef50_T3IE94: Lantibiotic protection ABC transporter, ATP-binding subunit|g__Streptococcus.s__Streptococcus_mutans	43.4241431629
+UniRef50_O32047: Protein translocase subunit SecDF	43.3821510940
+UniRef50_O32047: Protein translocase subunit SecDF|g__Staphylococcus.s__Staphylococcus_epidermidis	43.3821510940
+UniRef50_A4WW73	43.3767211689
+UniRef50_A4WW73|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.4661508898
+UniRef50_A4WW73|unclassified	1.9105702791
+UniRef50_W5XDK2: PTS family mannose porter, IIC component	43.3658679359
+UniRef50_W5XDK2: PTS family mannose porter, IIC component|g__Streptococcus.s__Streptococcus_mutans	36.8089562372
+UniRef50_W5XDK2: PTS family mannose porter, IIC component|g__Clostridium.s__Clostridium_beijerinckii	6.5569116987
+UniRef50_C7ZY18	43.3536877385
+UniRef50_C7ZY18|g__Staphylococcus.s__Staphylococcus_aureus	42.8850464551
+UniRef50_C7ZY18|unclassified	0.4686412834
+UniRef50_C1AAF1: UDP-glucose 6-dehydrogenase	43.3520294315
+UniRef50_C1AAF1: UDP-glucose 6-dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	43.3520294315
+UniRef50_Q8CWR9: 30S Ribosomal protein S1	43.3493140759
+UniRef50_Q8CWR9: 30S Ribosomal protein S1|g__Streptococcus.s__Streptococcus_mutans	40.4427892139
+UniRef50_Q8CWR9: 30S Ribosomal protein S1|g__Streptococcus.s__Streptococcus_agalactiae	2.9065248619
+UniRef50_R4ZYK3: CAAX amino terminal protease family	43.3393760630
+UniRef50_R4ZYK3: CAAX amino terminal protease family|g__Streptococcus.s__Streptococcus_mutans	38.9915294286
+UniRef50_R4ZYK3: CAAX amino terminal protease family|g__Streptococcus.s__Streptococcus_agalactiae	4.3478466344
+UniRef50_Q8TT39: 30S ribosomal protein S2	43.3234680712
+UniRef50_Q8TT39: 30S ribosomal protein S2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	43.3234680712
+UniRef50_I6SU88: Penicillin-binding protein 2B	43.3130962375
+UniRef50_I6SU88: Penicillin-binding protein 2B|g__Streptococcus.s__Streptococcus_mutans	43.3130962375
+UniRef50_E7T8A0: Mg-chelatase subunit ChlD	43.2995236812
+UniRef50_E7T8A0: Mg-chelatase subunit ChlD|g__Escherichia.s__Escherichia_coli	43.0651992619
+UniRef50_E7T8A0: Mg-chelatase subunit ChlD|unclassified	0.2343244192
+UniRef50_I6T6L1	43.2954758915
+UniRef50_I6T6L1|g__Streptococcus.s__Streptococcus_mutans	43.2954758915
+UniRef50_Q1JBZ2: Xaa-His dipeptidase	43.2571067374
+UniRef50_Q1JBZ2: Xaa-His dipeptidase|g__Streptococcus.s__Streptococcus_mutans	43.2571067374
+UniRef50_A5ULS6: Transcriptional activator	43.2535273238
+UniRef50_A5ULS6: Transcriptional activator|g__Methanobrevibacter.s__Methanobrevibacter_smithii	43.2535273238
+UniRef50_Q47163: Type I restriction enzyme EcoprrI M protein	43.2452393631
+UniRef50_Q47163: Type I restriction enzyme EcoprrI M protein|g__Streptococcus.s__Streptococcus_mutans	43.2452393631
+UniRef50_E2QQY4: Guanine deaminase	43.2370394371
+UniRef50_E2QQY4: Guanine deaminase|g__Escherichia.s__Escherichia_coli	43.2370394371
+UniRef50_A3CNT6: ATP phosphoribosyltransferase regulatory subunit	43.2154096857
+UniRef50_A3CNT6: ATP phosphoribosyltransferase regulatory subunit|g__Streptococcus.s__Streptococcus_mutans	43.2154096857
+UniRef50_A3PQB9: Cyclic nucleotide-regulated FAD-dependent pyridine nucleotide-disulphide oxidoreductase	43.2049366669
+UniRef50_A3PQB9: Cyclic nucleotide-regulated FAD-dependent pyridine nucleotide-disulphide oxidoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	43.2049366669
+UniRef50_Q839C1: L-lactate dehydrogenase 1	43.1847746988
+UniRef50_Q839C1: L-lactate dehydrogenase 1|g__Streptococcus.s__Streptococcus_mutans	40.2835602599
+UniRef50_Q839C1: L-lactate dehydrogenase 1|g__Streptococcus.s__Streptococcus_agalactiae	2.9012144389
+UniRef50_E8MF10: UDP-glucose 4-epimerase	43.1805280808
+UniRef50_E8MF10: UDP-glucose 4-epimerase|g__Streptococcus.s__Streptococcus_mutans	43.1805280808
+UniRef50_A5UMI6: Multimeric flavodoxin	43.1721405935
+UniRef50_A5UMI6: Multimeric flavodoxin|g__Methanobrevibacter.s__Methanobrevibacter_smithii	43.1721405935
+UniRef50_P0ADT1	43.1599920972
+UniRef50_P0ADT1|g__Escherichia.s__Escherichia_coli	43.1599920972
+UniRef50_P0A1U5	43.1529684711
+UniRef50_P0A1U5|g__Escherichia.s__Escherichia_coli	42.6999084351
+UniRef50_P0A1U5|unclassified	0.4530600361
+UniRef50_A3PS67	43.1489116634
+UniRef50_A3PS67|unclassified	22.3200050249
+UniRef50_A3PS67|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.8289066385
+UniRef50_Q5HME1	43.1455230337
+UniRef50_Q5HME1|g__Staphylococcus.s__Staphylococcus_epidermidis	43.1455230337
+UniRef50_U3SVE3	43.1374336570
+UniRef50_U3SVE3|g__Streptococcus.s__Streptococcus_mutans	40.1081003397
+UniRef50_U3SVE3|unclassified	3.0293333173
+UniRef50_P0A2X3: Exodeoxyribonuclease	43.1283560050
+UniRef50_P0A2X3: Exodeoxyribonuclease|g__Streptococcus.s__Streptococcus_mutans	36.9879712994
+UniRef50_P0A2X3: Exodeoxyribonuclease|g__Streptococcus.s__Streptococcus_agalactiae	6.1403847056
+UniRef50_A8G9Z1: Cell division protein FtsB	43.1260768217
+UniRef50_A8G9Z1: Cell division protein FtsB|g__Escherichia.s__Escherichia_coli	43.1260768217
+UniRef50_F0RP81: Cation diffusion facilitator family transporter	43.1092686131
+UniRef50_F0RP81: Cation diffusion facilitator family transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	43.1092686131
+UniRef50_A4WZN4	43.0675640438
+UniRef50_A4WZN4|g__Rhodobacter.s__Rhodobacter_sphaeroides	43.0675640438
+UniRef50_P31442: Multidrug resistance protein D	43.0544431691
+UniRef50_P31442: Multidrug resistance protein D|g__Escherichia.s__Escherichia_coli	43.0544431691
+UniRef50_P60239: F420-non-reducing hydrogenase subunit G	43.0437757360
+UniRef50_P60239: F420-non-reducing hydrogenase subunit G|g__Methanobrevibacter.s__Methanobrevibacter_smithii	43.0437757360
+UniRef50_M7D0G7: Type II restriction endonuclease	43.0219546097
+UniRef50_M7D0G7: Type II restriction endonuclease|g__Streptococcus.s__Streptococcus_mutans	43.0219546097
+UniRef50_A0A012N4E0	43.0107526882
+UniRef50_A0A012N4E0|g__Staphylococcus.s__Staphylococcus_aureus	43.0107526882
+UniRef50_D3E148	43.0084660294
+UniRef50_D3E148|g__Methanobrevibacter.s__Methanobrevibacter_smithii	43.0084660294
+UniRef50_C6SRA2	42.9873075815
+UniRef50_C6SRA2|g__Streptococcus.s__Streptococcus_mutans	42.9873075815
+UniRef50_O27236: Methyl-coenzyme M reductase I subunit beta	42.9771708769
+UniRef50_O27236: Methyl-coenzyme M reductase I subunit beta|g__Methanobrevibacter.s__Methanobrevibacter_smithii	42.9771708769
+UniRef50_Q8CNV6: Smooth muscle caldesmon	42.9694893121
+UniRef50_Q8CNV6: Smooth muscle caldesmon|g__Staphylococcus.s__Staphylococcus_epidermidis	42.9694893121
+UniRef50_M1XHY8: Membrane protein, putative	42.9601083447
+UniRef50_M1XHY8: Membrane protein, putative|g__Staphylococcus.s__Staphylococcus_aureus	42.9601083447
+UniRef50_F5ZL84: Membrane protein	42.9464920552
+UniRef50_F5ZL84: Membrane protein|g__Streptococcus.s__Streptococcus_mutans	40.1474770931
+UniRef50_F5ZL84: Membrane protein|g__Streptococcus.s__Streptococcus_agalactiae	2.7990149620
+UniRef50_Q7D3Z9: Dihydrodipicolinate synthase	42.9393817379
+UniRef50_Q7D3Z9: Dihydrodipicolinate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.9393817379
+UniRef50_Q21SX1: D-alanine--D-alanine ligase	42.9360099581
+UniRef50_Q21SX1: D-alanine--D-alanine ligase|g__Escherichia.s__Escherichia_coli	41.0187701460
+UniRef50_Q21SX1: D-alanine--D-alanine ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8348623853
+UniRef50_Q21SX1: D-alanine--D-alanine ligase|unclassified	0.0823774268
+UniRef50_P27431: 50S ribosomal protein L16 arginine hydroxylase	42.9332372497
+UniRef50_P27431: 50S ribosomal protein L16 arginine hydroxylase|g__Escherichia.s__Escherichia_coli	42.9332372497
+UniRef50_P37443	42.9233895925
+UniRef50_P37443|g__Escherichia.s__Escherichia_coli	42.9233895925
+UniRef50_Q8DUK9: 7-carboxy-7-deazaguanine synthase	42.9203559156
+UniRef50_Q8DUK9: 7-carboxy-7-deazaguanine synthase|g__Streptococcus.s__Streptococcus_mutans	42.9203559156
+UniRef50_E8QA77: Exported protein	42.9010861910
+UniRef50_E8QA77: Exported protein|g__Streptococcus.s__Streptococcus_mutans	41.6821310038
+UniRef50_E8QA77: Exported protein|g__Streptococcus.s__Streptococcus_agalactiae	1.0504201681
+UniRef50_E8QA77: Exported protein|unclassified	0.1685350191
+UniRef50_Q5XA14	42.8898798464
+UniRef50_Q5XA14|g__Streptococcus.s__Streptococcus_mutans	42.8898798464
+UniRef50_K0NAU6: Aspartate aminotransferase	42.8846410421
+UniRef50_K0NAU6: Aspartate aminotransferase|g__Streptococcus.s__Streptococcus_mutans	40.3213801278
+UniRef50_K0NAU6: Aspartate aminotransferase|g__Streptococcus.s__Streptococcus_agalactiae	2.5632609143
+UniRef50_C5CJ75: Glycogen synthase	42.8828973072
+UniRef50_C5CJ75: Glycogen synthase|g__Escherichia.s__Escherichia_coli	42.8828973072
+UniRef50_F7ZF49: SPFH domain/band 7 family protein	42.8808322919
+UniRef50_F7ZF49: SPFH domain/band 7 family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.8808322919
+UniRef50_Q58131: Acetylornithine aminotransferase	42.8746988456
+UniRef50_Q58131: Acetylornithine aminotransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	42.8140948140
+UniRef50_Q58131: Acetylornithine aminotransferase|unclassified	0.0606040316
+UniRef50_Q5HKG8: Conserved domain protein	42.8631300975
+UniRef50_Q5HKG8: Conserved domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	42.8631300975
+UniRef50_K0N5S7: ATP-dependent DNA helicase recG	42.8596509515
+UniRef50_K0N5S7: ATP-dependent DNA helicase recG|g__Streptococcus.s__Streptococcus_mutans	42.8596509515
+UniRef50_R6G0R0: Glutamine ABC transporter permease/substrate-binding protein	42.8470857598
+UniRef50_R6G0R0: Glutamine ABC transporter permease/substrate-binding protein|g__Streptococcus.s__Streptococcus_mutans	42.8470857598
+UniRef50_P44614: Tryptophan-specific transport protein	42.8356333932
+UniRef50_P44614: Tryptophan-specific transport protein|g__Escherichia.s__Escherichia_coli	40.1569340665
+UniRef50_P44614: Tryptophan-specific transport protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6786993267
+UniRef50_Q07211: Fructokinase	42.8338784394
+UniRef50_Q07211: Fructokinase|g__Streptococcus.s__Streptococcus_mutans	39.8503301958
+UniRef50_Q07211: Fructokinase|g__Streptococcus.s__Streptococcus_agalactiae	2.9835482437
+UniRef50_P16919: Protein RhsD	42.8231860657
+UniRef50_P16919: Protein RhsD|g__Escherichia.s__Escherichia_coli	42.8231860657
+UniRef50_T0TL30	42.8201189746
+UniRef50_T0TL30|g__Streptococcus.s__Streptococcus_mutans	42.8201189746
+UniRef50_Q8DUN4: FruR	42.8188795323
+UniRef50_Q8DUN4: FruR|g__Streptococcus.s__Streptococcus_mutans	40.5253015507
+UniRef50_Q8DUN4: FruR|g__Streptococcus.s__Streptococcus_agalactiae	2.2935779817
+UniRef50_Q28QW5: Ppx/GppA phosphatase	42.8137292358
+UniRef50_Q28QW5: Ppx/GppA phosphatase|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.4296920096
+UniRef50_Q28QW5: Ppx/GppA phosphatase|unclassified	0.3840372262
+UniRef50_P33650: Ferrous iron transport protein B	42.8125679129
+UniRef50_P33650: Ferrous iron transport protein B|g__Escherichia.s__Escherichia_coli	42.8125679129
+UniRef50_P0CF89: Transposase InsI for insertion sequence element IS30C	42.8025420668
+UniRef50_P0CF89: Transposase InsI for insertion sequence element IS30C|g__Escherichia.s__Escherichia_coli	42.8025420668
+UniRef50_P16683: Putative phosphonates transport system permease protein PhnE	42.7915230584
+UniRef50_P16683: Putative phosphonates transport system permease protein PhnE|g__Escherichia.s__Escherichia_coli	24.5337419339
+UniRef50_P16683: Putative phosphonates transport system permease protein PhnE|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.2577811244
+UniRef50_F3YMS0: Permease	42.7762572020
+UniRef50_F3YMS0: Permease|g__Streptococcus.s__Streptococcus_mutans	42.7762572020
+UniRef50_Q6GHY8: UPF0223 protein SAR1071	42.7744202086
+UniRef50_Q6GHY8: UPF0223 protein SAR1071|g__Staphylococcus.s__Staphylococcus_aureus	26.0816526178
+UniRef50_Q6GHY8: UPF0223 protein SAR1071|g__Staphylococcus.s__Staphylococcus_epidermidis	15.9472838713
+UniRef50_Q6GHY8: UPF0223 protein SAR1071|unclassified	0.7454837195
+UniRef50_Q9HWZ6: Inorganic pyrophosphatase	42.7699536652
+UniRef50_Q9HWZ6: Inorganic pyrophosphatase|g__Pseudomonas.s__Pseudomonas_aeruginosa	42.7699536652
+UniRef50_A3PJK2	42.7491325689
+UniRef50_A3PJK2|unclassified	42.7491325689
+UniRef50_U3SS19	42.7367045746
+UniRef50_U3SS19|g__Streptococcus.s__Streptococcus_mutans	42.7367045746
+UniRef50_I6T801: Endoglucanase	42.7338203248
+UniRef50_I6T801: Endoglucanase|g__Streptococcus.s__Streptococcus_mutans	42.7338203248
+UniRef50_A7I5Y0	42.7311628225
+UniRef50_A7I5Y0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	42.7311628225
+UniRef50_I0C802	42.7156426333
+UniRef50_I0C802|g__Staphylococcus.s__Staphylococcus_aureus	42.7156426333
+UniRef50_P23485: Protein FecR	42.7084203473
+UniRef50_P23485: Protein FecR|g__Escherichia.s__Escherichia_coli	42.7084203473
+UniRef50_Q1GGL2	42.6904937630
+UniRef50_Q1GGL2|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.6904937630
+UniRef50_T0UR47: Immunoreactive protein Se23.5	42.6855720833
+UniRef50_T0UR47: Immunoreactive protein Se23.5|g__Streptococcus.s__Streptococcus_mutans	42.6855720833
+UniRef50_Q3J146	42.6811190409
+UniRef50_Q3J146|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.3807890079
+UniRef50_Q3J146|unclassified	3.3003300330
+UniRef50_I6U0G5: ComB, accessory factor for ComA	42.6634671443
+UniRef50_I6U0G5: ComB, accessory factor for ComA|g__Streptococcus.s__Streptococcus_mutans	42.6634671443
+UniRef50_P04043: Modification methylase DpnIIA	42.6427363380
+UniRef50_P04043: Modification methylase DpnIIA|g__Streptococcus.s__Streptococcus_mutans	42.6427363380
+UniRef50_P76004	42.6153505340
+UniRef50_P76004|g__Escherichia.s__Escherichia_coli	37.1845306274
+UniRef50_P76004|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4308199065
+UniRef50_Q49Y53: UPF0473 protein SSP1146	42.6090898534
+UniRef50_Q49Y53: UPF0473 protein SSP1146|g__Staphylococcus.s__Staphylococcus_aureus	27.0438706339
+UniRef50_Q49Y53: UPF0473 protein SSP1146|g__Staphylococcus.s__Staphylococcus_epidermidis	13.0313628856
+UniRef50_Q49Y53: UPF0473 protein SSP1146|unclassified	2.5338563339
+UniRef50_K7YHX4: Receptor ligand binding region family protein	42.6084414809
+UniRef50_K7YHX4: Receptor ligand binding region family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.6084414809
+UniRef50_P37671: HTH-type transcriptional regulator YiaJ	42.6078527473
+UniRef50_P37671: HTH-type transcriptional regulator YiaJ|g__Escherichia.s__Escherichia_coli	42.6078527473
+UniRef50_Q9KPI5: UPF0126 membrane protein VC_2382	42.5988194998
+UniRef50_Q9KPI5: UPF0126 membrane protein VC_2382|g__Escherichia.s__Escherichia_coli	42.5988194998
+UniRef50_A7MH24: NADH-quinone oxidoreductase subunit C/D	42.5838699576
+UniRef50_A7MH24: NADH-quinone oxidoreductase subunit C/D|g__Escherichia.s__Escherichia_coli	34.2204925097
+UniRef50_A7MH24: NADH-quinone oxidoreductase subunit C/D|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.2977859845
+UniRef50_A7MH24: NADH-quinone oxidoreductase subunit C/D|unclassified	0.0655914634
+UniRef50_D5AUT9: Phage terminase, large subunit	42.5818800977
+UniRef50_D5AUT9: Phage terminase, large subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.5818800977
+UniRef50_Q8ZPN4	42.5791033828
+UniRef50_Q8ZPN4|g__Escherichia.s__Escherichia_coli	42.5791033828
+UniRef50_Q3J0Q8: Multisensor hybrid histidine kinase	42.5573700089
+UniRef50_Q3J0Q8: Multisensor hybrid histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.5573700089
+UniRef50_A5UJ54: Archaeal glutamate synthase [NADPH]	42.5331945972
+UniRef50_A5UJ54: Archaeal glutamate synthase [NADPH]|g__Methanobrevibacter.s__Methanobrevibacter_smithii	42.5331945972
+UniRef50_P46118: HTH-type transcriptional regulator HexR	42.5282804783
+UniRef50_P46118: HTH-type transcriptional regulator HexR|g__Escherichia.s__Escherichia_coli	36.5959760509
+UniRef50_P46118: HTH-type transcriptional regulator HexR|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9323044274
+UniRef50_B8GCI5: SAF domain protein	42.5262210827
+UniRef50_B8GCI5: SAF domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.5262210827
+UniRef50_Q04G79: 30S ribosomal protein S3	42.5100673281
+UniRef50_Q04G79: 30S ribosomal protein S3|g__Streptococcus.s__Streptococcus_mutans	40.9739690178
+UniRef50_Q04G79: 30S ribosomal protein S3|g__Streptococcus.s__Streptococcus_agalactiae	1.5360983103
+UniRef50_I6U427: Sugar-binding periplasmic protein	42.4994747158
+UniRef50_I6U427: Sugar-binding periplasmic protein|g__Streptococcus.s__Streptococcus_mutans	42.4994747158
+UniRef50_B5EXV0: Uridine kinase	42.4937622929
+UniRef50_B5EXV0: Uridine kinase|g__Escherichia.s__Escherichia_coli	42.3922185599
+UniRef50_B5EXV0: Uridine kinase|unclassified	0.1015437330
+UniRef50_A6QII5	42.4914083661
+UniRef50_A6QII5|g__Staphylococcus.s__Staphylococcus_aureus	42.4914083661
+UniRef50_Q5PMJ4: tRNA-specific 2-thiouridylase MnmA	42.4731030926
+UniRef50_Q5PMJ4: tRNA-specific 2-thiouridylase MnmA|g__Escherichia.s__Escherichia_coli	42.3539609474
+UniRef50_Q5PMJ4: tRNA-specific 2-thiouridylase MnmA|unclassified	0.1191421452
+UniRef50_P39293	42.4674405828
+UniRef50_P39293|g__Escherichia.s__Escherichia_coli	42.4674405828
+UniRef50_C6SPE0	42.4650503314
+UniRef50_C6SPE0|g__Streptococcus.s__Streptococcus_mutans	42.4650503314
+UniRef50_J1E0S9	42.4498920596
+UniRef50_J1E0S9|g__Staphylococcus.s__Staphylococcus_epidermidis	34.5075110480
+UniRef50_J1E0S9|unclassified	7.9423810115
+UniRef50_Q53044: Nitrogen regulatory protein P-II	42.4444931347
+UniRef50_Q53044: Nitrogen regulatory protein P-II|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.4444931347
+UniRef50_Q2G2M4: Mini-ribonuclease 3	42.4442892489
+UniRef50_Q2G2M4: Mini-ribonuclease 3|g__Staphylococcus.s__Staphylococcus_aureus	28.5284915253
+UniRef50_Q2G2M4: Mini-ribonuclease 3|g__Staphylococcus.s__Staphylococcus_epidermidis	11.2276256806
+UniRef50_Q2G2M4: Mini-ribonuclease 3|unclassified	2.6881720430
+UniRef50_Q9PET0: Transcriptional repressor NrdR	42.4424424424
+UniRef50_Q9PET0: Transcriptional repressor NrdR|g__Acinetobacter.s__Acinetobacter_baumannii	42.4424424424
+UniRef50_Q8YIY0: Phosphoglycerate kinase	42.4387698765
+UniRef50_Q8YIY0: Phosphoglycerate kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.9030746786
+UniRef50_Q8YIY0: Phosphoglycerate kinase|unclassified	0.5356951979
+UniRef50_Q5M1U0: Heat-inducible transcription repressor HrcA	42.4238391689
+UniRef50_Q5M1U0: Heat-inducible transcription repressor HrcA|g__Streptococcus.s__Streptococcus_mutans	41.4714582165
+UniRef50_Q5M1U0: Heat-inducible transcription repressor HrcA|g__Streptococcus.s__Streptococcus_agalactiae	0.9523809524
+UniRef50_Q1LZ65: RpiR-like protein	42.4222972543
+UniRef50_Q1LZ65: RpiR-like protein|g__Streptococcus.s__Streptococcus_mutans	42.4222972543
+UniRef50_P75856: Probable fimbrial chaperone protein ElfD	42.4196941647
+UniRef50_P75856: Probable fimbrial chaperone protein ElfD|g__Escherichia.s__Escherichia_coli	42.4196941647
+UniRef50_O26759: Putative ammonium transporter MTH_663	42.4182542778
+UniRef50_O26759: Putative ammonium transporter MTH_663|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.4514141558
+UniRef50_O26759: Putative ammonium transporter MTH_663|g__Clostridium.s__Clostridium_beijerinckii	6.9668401221
+UniRef50_P0AFL2: Putrescine transport system permease protein PotI	42.4149471640
+UniRef50_P0AFL2: Putrescine transport system permease protein PotI|g__Escherichia.s__Escherichia_coli	36.1493904636
+UniRef50_P0AFL2: Putrescine transport system permease protein PotI|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2655567004
+UniRef50_F6D6E3: Methyltransferase type 11	42.4137032644
+UniRef50_F6D6E3: Methyltransferase type 11|g__Methanobrevibacter.s__Methanobrevibacter_smithii	42.4137032644
+UniRef50_Q2L0H5: sn-glycerol-3-phosphate import ATP-binding protein UgpC	42.3921011660
+UniRef50_Q2L0H5: sn-glycerol-3-phosphate import ATP-binding protein UgpC|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.4401968327
+UniRef50_Q2L0H5: sn-glycerol-3-phosphate import ATP-binding protein UgpC|unclassified	0.9519043332
+UniRef50_Q92RN6: Probable galactose dehydrogenase GalD	42.3620126654
+UniRef50_Q92RN6: Probable galactose dehydrogenase GalD|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.3620126654
+UniRef50_C6SS20	42.3508642499
+UniRef50_C6SS20|g__Streptococcus.s__Streptococcus_mutans	38.6195209663
+UniRef50_C6SS20|g__Streptococcus.s__Streptococcus_agalactiae	3.7313432836
+UniRef50_T0UG31: Cell division protein FtsW	42.3474545284
+UniRef50_T0UG31: Cell division protein FtsW|g__Streptococcus.s__Streptococcus_mutans	41.4441121616
+UniRef50_T0UG31: Cell division protein FtsW|g__Streptococcus.s__Streptococcus_agalactiae	0.9033423668
+UniRef50_B7UMJ8: ATP synthase gamma chain	42.3087987666
+UniRef50_B7UMJ8: ATP synthase gamma chain|g__Escherichia.s__Escherichia_coli	42.3087987666
+UniRef50_T1YBR3	42.2973789206
+UniRef50_T1YBR3|g__Staphylococcus.s__Staphylococcus_aureus	42.2973789206
+UniRef50_Q2NQH3: Rhomboid protease GlpG	42.2834123848
+UniRef50_Q2NQH3: Rhomboid protease GlpG|g__Escherichia.s__Escherichia_coli	42.2834123848
+UniRef50_Q3IVM7	42.2725909380
+UniRef50_Q3IVM7|unclassified	37.2725909380
+UniRef50_Q3IVM7|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0000000000
+UniRef50_H3USA6	42.2553868407
+UniRef50_H3USA6|g__Staphylococcus.s__Staphylococcus_epidermidis	40.8261280044
+UniRef50_H3USA6|unclassified	1.4292588363
+UniRef50_P51008: Oxygen-independent coproporphyrinogen-III oxidase	42.2360282563
+UniRef50_P51008: Oxygen-independent coproporphyrinogen-III oxidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.1509723586
+UniRef50_P51008: Oxygen-independent coproporphyrinogen-III oxidase|unclassified	0.0850558977
+UniRef50_Q03KB7: ATP-dependent 6-phosphofructokinase	42.2200483731
+UniRef50_Q03KB7: ATP-dependent 6-phosphofructokinase|g__Streptococcus.s__Streptococcus_mutans	41.9721226193
+UniRef50_Q03KB7: ATP-dependent 6-phosphofructokinase|unclassified	0.2479257539
+UniRef50_P0A1H0: DNA polymerase III subunit epsilon	42.2158529504
+UniRef50_P0A1H0: DNA polymerase III subunit epsilon|g__Escherichia.s__Escherichia_coli	42.0253857915
+UniRef50_P0A1H0: DNA polymerase III subunit epsilon|unclassified	0.1904671588
+UniRef50_Q1GFQ2: ABC transporter related	42.2078307572
+UniRef50_Q1GFQ2: ABC transporter related|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.2078307572
+UniRef50_F5X1L0: PTS system, fructose-specific IIABC component	42.1938514374
+UniRef50_F5X1L0: PTS system, fructose-specific IIABC component|g__Streptococcus.s__Streptococcus_mutans	38.5659474452
+UniRef50_F5X1L0: PTS system, fructose-specific IIABC component|g__Streptococcus.s__Streptococcus_agalactiae	3.6279039922
+UniRef50_Q8FFV5: tRNA-dihydrouridine synthase C	42.1321249038
+UniRef50_Q8FFV5: tRNA-dihydrouridine synthase C|g__Escherichia.s__Escherichia_coli	42.1321249038
+UniRef50_F0T7F9: Precorrin-2 C20-methyltransferase	42.1205396987
+UniRef50_F0T7F9: Precorrin-2 C20-methyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	42.1205396987
+UniRef50_C2SK84: Transposase for insertion sequence element IS257 in transposon Tn4003	42.1184795862
+UniRef50_C2SK84: Transposase for insertion sequence element IS257 in transposon Tn4003|g__Staphylococcus.s__Staphylococcus_epidermidis	38.9845219155
+UniRef50_C2SK84: Transposase for insertion sequence element IS257 in transposon Tn4003|g__Staphylococcus.s__Staphylococcus_aureus	3.1339576707
+UniRef50_A2RNT2: Proline--tRNA ligase	42.1148914452
+UniRef50_A2RNT2: Proline--tRNA ligase|g__Streptococcus.s__Streptococcus_mutans	41.0043705004
+UniRef50_A2RNT2: Proline--tRNA ligase|g__Streptococcus.s__Streptococcus_agalactiae	1.0858083318
+UniRef50_A2RNT2: Proline--tRNA ligase|unclassified	0.0247126130
+UniRef50_A8LHX0	42.0936688475
+UniRef50_A8LHX0|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.0936688475
+UniRef50_P77389: Inner membrane transport protein YdhP	42.0861669377
+UniRef50_P77389: Inner membrane transport protein YdhP|g__Escherichia.s__Escherichia_coli	38.0139565574
+UniRef50_P77389: Inner membrane transport protein YdhP|g__Acinetobacter.s__Acinetobacter_baumannii	4.0722103803
+UniRef50_C6ST67	42.0857596955
+UniRef50_C6ST67|g__Streptococcus.s__Streptococcus_mutans	42.0857596955
+UniRef50_I6T6E7	42.0688417051
+UniRef50_I6T6E7|g__Streptococcus.s__Streptococcus_mutans	42.0688417051
+UniRef50_A3PR71: Transcriptional regulator, GntR family	42.0675823966
+UniRef50_A3PR71: Transcriptional regulator, GntR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	42.0675823966
+UniRef50_B9KLM6	42.0661406546
+UniRef50_B9KLM6|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.0647556235
+UniRef50_B9KLM6|unclassified	7.0013850311
+UniRef50_Q57RM6: Dipeptide permease D	42.0657609304
+UniRef50_Q57RM6: Dipeptide permease D|g__Escherichia.s__Escherichia_coli	42.0657609304
+UniRef50_P80521: Pyruvate synthase subunit PorA	42.0568442438
+UniRef50_P80521: Pyruvate synthase subunit PorA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	42.0568442438
+UniRef50_I6T6M3	42.0551342661
+UniRef50_I6T6M3|g__Streptococcus.s__Streptococcus_mutans	42.0551342661
+UniRef50_A7X5F7: 30S ribosomal protein S19	42.0427267872
+UniRef50_A7X5F7: 30S ribosomal protein S19|g__Staphylococcus.s__Staphylococcus_aureus	27.0459788079
+UniRef50_A7X5F7: 30S ribosomal protein S19|g__Staphylococcus.s__Staphylococcus_epidermidis	14.9967479794
+UniRef50_P77546	42.0394799925
+UniRef50_P77546|g__Escherichia.s__Escherichia_coli	42.0394799925
+UniRef50_UPI000360EE81: hypothetical protein, partial	42.0386541958
+UniRef50_UPI000360EE81: hypothetical protein, partial|g__Methanobrevibacter.s__Methanobrevibacter_smithii	41.9291081438
+UniRef50_UPI000360EE81: hypothetical protein, partial|unclassified	0.1095460520
+UniRef50_S5S114: CarD family transcriptional regulator protein	42.0360076641
+UniRef50_S5S114: CarD family transcriptional regulator protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.5699933862
+UniRef50_S5S114: CarD family transcriptional regulator protein|unclassified	0.4660142779
+UniRef50_B9KRB4	42.0242360894
+UniRef50_B9KRB4|unclassified	42.0242360894
+UniRef50_P0AG77: Nuclease SbcCD subunit D	42.0057587872
+UniRef50_P0AG77: Nuclease SbcCD subunit D|g__Escherichia.s__Escherichia_coli	42.0057587872
+UniRef50_P76484	42.0052699312
+UniRef50_P76484|g__Escherichia.s__Escherichia_coli	42.0052699312
+UniRef50_P26162: Magnesium-chelatase subunit H	42.0042051395
+UniRef50_P26162: Magnesium-chelatase subunit H|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.8232004944
+UniRef50_P26162: Magnesium-chelatase subunit H|unclassified	0.1810046452
+UniRef50_Q57981: Adenylosuccinate synthetase	41.9856857135
+UniRef50_Q57981: Adenylosuccinate synthetase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	41.9856857135
+UniRef50_C9A4C5: Universal bacterial protein YeaZ	41.9722349169
+UniRef50_C9A4C5: Universal bacterial protein YeaZ|g__Streptococcus.s__Streptococcus_mutans	41.9722349169
+UniRef50_I6TWK1	41.9502399454
+UniRef50_I6TWK1|g__Streptococcus.s__Streptococcus_mutans	41.9502399454
+UniRef50_Q57QC3: Virulence transcriptional regulatory protein PhoP	41.9460134578
+UniRef50_Q57QC3: Virulence transcriptional regulatory protein PhoP|g__Escherichia.s__Escherichia_coli	41.9460134578
+UniRef50_Q1QUR0: 3-isopropylmalate dehydrogenase	41.9406423839
+UniRef50_Q1QUR0: 3-isopropylmalate dehydrogenase|g__Escherichia.s__Escherichia_coli	38.8122770027
+UniRef50_Q1QUR0: 3-isopropylmalate dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	2.5759515648
+UniRef50_Q1QUR0: 3-isopropylmalate dehydrogenase|unclassified	0.5524138165
+UniRef50_C0ME26: Adenylate kinase	41.9373904229
+UniRef50_C0ME26: Adenylate kinase|g__Streptococcus.s__Streptococcus_mutans	41.5564847968
+UniRef50_C0ME26: Adenylate kinase|unclassified	0.3809056261
+UniRef50_Q8DTR9	41.9319326736
+UniRef50_Q8DTR9|g__Streptococcus.s__Streptococcus_mutans	41.9319326736
+UniRef50_H6P8H2	41.9295755421
+UniRef50_H6P8H2|g__Streptococcus.s__Streptococcus_mutans	40.7775018093
+UniRef50_H6P8H2|g__Streptococcus.s__Streptococcus_agalactiae	1.1520737327
+UniRef50_A9KJR8: Urease accessory protein UreE	41.9261942268
+UniRef50_A9KJR8: Urease accessory protein UreE|g__Staphylococcus.s__Staphylococcus_aureus	41.9261942268
+UniRef50_G8RDD3	41.9045850858
+UniRef50_G8RDD3|g__Staphylococcus.s__Staphylococcus_aureus	33.8384693833
+UniRef50_G8RDD3|unclassified	8.0661157025
+UniRef50_B1M8C4: Polar amino acid ABC transporter, inner membrane subunit	41.8996203001
+UniRef50_B1M8C4: Polar amino acid ABC transporter, inner membrane subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.8996203001
+UniRef50_Q8FDG8: L(+)-tartrate dehydratase subunit alpha	41.8971431213
+UniRef50_Q8FDG8: L(+)-tartrate dehydratase subunit alpha|g__Escherichia.s__Escherichia_coli	40.7883124840
+UniRef50_Q8FDG8: L(+)-tartrate dehydratase subunit alpha|unclassified	1.1088306372
+UniRef50_B9KJE9: Flagellar hook-associated 2 domain protein	41.8830390333
+UniRef50_B9KJE9: Flagellar hook-associated 2 domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.8830390333
+UniRef50_Q46832: Putative type II secretion system M-type protein YghD	41.8613454746
+UniRef50_Q46832: Putative type II secretion system M-type protein YghD|g__Escherichia.s__Escherichia_coli	41.8613454746
+UniRef50_A1AHE9: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	41.8593000385
+UniRef50_A1AHE9: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|g__Escherichia.s__Escherichia_coli	29.3424696766
+UniRef50_A1AHE9: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.9564556439
+UniRef50_A1AHE9: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|g__Clostridium.s__Clostridium_beijerinckii	2.9277663497
+UniRef50_A1AHE9: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|g__Acinetobacter.s__Acinetobacter_baumannii	2.2056006576
+UniRef50_A1AHE9: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|unclassified	0.4270077106
+UniRef50_C6SPA0	41.8526886776
+UniRef50_C6SPA0|g__Streptococcus.s__Streptococcus_mutans	41.8526886776
+UniRef50_D3E1W6: tRNA(His) guanylyltransferase ThgL	41.8498535517
+UniRef50_D3E1W6: tRNA(His) guanylyltransferase ThgL|g__Methanobrevibacter.s__Methanobrevibacter_smithii	41.8498535517
+UniRef50_Q9JZ44: 30S ribosomal protein S1	41.8497449037
+UniRef50_Q9JZ44: 30S ribosomal protein S1|g__Escherichia.s__Escherichia_coli	34.0935044847
+UniRef50_Q9JZ44: 30S ribosomal protein S1|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7562404190
+UniRef50_F8DJB0	41.8355496070
+UniRef50_F8DJB0|g__Streptococcus.s__Streptococcus_mutans	41.8355496070
+UniRef50_F5X6Q7: ABC transport system permease protein	41.8340464872
+UniRef50_F5X6Q7: ABC transport system permease protein|g__Streptococcus.s__Streptococcus_mutans	41.8340464872
+UniRef50_F2JYX7: Peptidase M75, Imelysin	41.8298579021
+UniRef50_F2JYX7: Peptidase M75, Imelysin|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.8298579021
+UniRef50_T0TC75: Poly(Glycerophosphate chain) D-alaninet ransfer protein DltD	41.8271002899
+UniRef50_T0TC75: Poly(Glycerophosphate chain) D-alaninet ransfer protein DltD|g__Streptococcus.s__Streptococcus_mutans	41.8271002899
+UniRef50_P32715: Multidrug resistance protein MdtO	41.8193346547
+UniRef50_P32715: Multidrug resistance protein MdtO|g__Escherichia.s__Escherichia_coli	41.8193346547
+UniRef50_P41006: Uracil permease	41.8158028449
+UniRef50_P41006: Uracil permease|g__Streptococcus.s__Streptococcus_mutans	41.8158028449
+UniRef50_A3PQF5: Peptidase M24	41.7961109865
+UniRef50_A3PQF5: Peptidase M24|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.7961109865
+UniRef50_W6E031	41.7933873641
+UniRef50_W6E031|g__Staphylococcus.s__Staphylococcus_aureus	34.4627391263
+UniRef50_W6E031|unclassified	7.3306482379
+UniRef50_Q8XAZ3: UPF0187 protein YneE	41.7917202815
+UniRef50_Q8XAZ3: UPF0187 protein YneE|g__Escherichia.s__Escherichia_coli	41.7917202815
+UniRef50_A0A3H4: Glycine betaine transport system permease protein/glycine betaine-binding protein	41.7824528814
+UniRef50_A0A3H4: Glycine betaine transport system permease protein/glycine betaine-binding protein|g__Streptococcus.s__Streptococcus_mutans	35.5938754450
+UniRef50_A0A3H4: Glycine betaine transport system permease protein/glycine betaine-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	6.1885774364
+UniRef50_M9RKF6: D-alanyl-D-alanine carboxypeptidase DacC	41.7808860315
+UniRef50_M9RKF6: D-alanyl-D-alanine carboxypeptidase DacC|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.7808860315
+UniRef50_Q8DN97: Hexulose-6-phosphate synthase (HumpS)	41.7727819046
+UniRef50_Q8DN97: Hexulose-6-phosphate synthase (HumpS)|g__Streptococcus.s__Streptococcus_mutans	37.4224681619
+UniRef50_Q8DN97: Hexulose-6-phosphate synthase (HumpS)|g__Streptococcus.s__Streptococcus_agalactiae	4.3503137427
+UniRef50_Q8XBL0: Pyridoxine kinase	41.7647448575
+UniRef50_Q8XBL0: Pyridoxine kinase|g__Escherichia.s__Escherichia_coli	41.5393987749
+UniRef50_Q8XBL0: Pyridoxine kinase|unclassified	0.2253460825
+UniRef50_P65858: tRNA pseudouridine synthase B	41.7321356185
+UniRef50_P65858: tRNA pseudouridine synthase B|g__Streptococcus.s__Streptococcus_mutans	39.2396531182
+UniRef50_P65858: tRNA pseudouridine synthase B|g__Streptococcus.s__Streptococcus_agalactiae	2.4924825002
+UniRef50_A1B1J8: Multisubunit potassium/proton antiporter, PhaD subunit	41.7255900669
+UniRef50_A1B1J8: Multisubunit potassium/proton antiporter, PhaD subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.7255900669
+UniRef50_A5UMH5: Probable bifunctional tRNA threonylcarbamoyladenosine biosynthesis protein	41.7113902288
+UniRef50_A5UMH5: Probable bifunctional tRNA threonylcarbamoyladenosine biosynthesis protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	41.7113902288
+UniRef50_Q8EA37: Ribosomal protein S12 methylthiotransferase RimO	41.7010768505
+UniRef50_Q8EA37: Ribosomal protein S12 methylthiotransferase RimO|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.7010768505
+UniRef50_K8WXC5	41.6976249690
+UniRef50_K8WXC5|g__Escherichia.s__Escherichia_coli	41.6976249690
+UniRef50_Q8DTN6: Probable bifunctional oligoribonuclease and PAP phosphatase NrnA	41.6873047863
+UniRef50_Q8DTN6: Probable bifunctional oligoribonuclease and PAP phosphatase NrnA|g__Streptococcus.s__Streptococcus_mutans	39.5274775724
+UniRef50_Q8DTN6: Probable bifunctional oligoribonuclease and PAP phosphatase NrnA|g__Streptococcus.s__Streptococcus_agalactiae	2.1598272138
+UniRef50_E8SE09	41.6835108522
+UniRef50_E8SE09|g__Staphylococcus.s__Staphylococcus_epidermidis	22.0353855047
+UniRef50_E8SE09|g__Staphylococcus.s__Staphylococcus_aureus	19.6481253476
+UniRef50_I6U2S8: Bacitracin synthetase	41.6829552702
+UniRef50_I6U2S8: Bacitracin synthetase|g__Streptococcus.s__Streptococcus_mutans	41.6829552702
+UniRef50_B9E7Y2	41.6812584747
+UniRef50_B9E7Y2|g__Staphylococcus.s__Staphylococcus_epidermidis	25.9462469393
+UniRef50_B9E7Y2|g__Staphylococcus.s__Staphylococcus_aureus	15.7350115354
+UniRef50_C6SQC4	41.6715021991
+UniRef50_C6SQC4|g__Streptococcus.s__Streptococcus_mutans	40.5402804797
+UniRef50_C6SQC4|unclassified	1.1312217195
+UniRef50_I6T8U4: Transcriptional regulator	41.6712980253
+UniRef50_I6T8U4: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	41.6712980253
+UniRef50_J9YT94: Amidase	41.6703369688
+UniRef50_J9YT94: Amidase|g__Streptococcus.s__Streptococcus_mutans	38.2906310044
+UniRef50_J9YT94: Amidase|g__Streptococcus.s__Streptococcus_agalactiae	3.3797059643
+UniRef50_R9V764: ATPase	41.6700158079
+UniRef50_R9V764: ATPase|g__Pseudomonas.s__Pseudomonas_aeruginosa	41.6700158079
+UniRef50_Q52983: Probable K(+)/H(+) antiporter subunit F	41.6666666667
+UniRef50_Q52983: Probable K(+)/H(+) antiporter subunit F|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.6666666667
+UniRef50_B2K316: tRNA (cmo5U34)-methyltransferase 2	41.6645519957
+UniRef50_B2K316: tRNA (cmo5U34)-methyltransferase 2|g__Escherichia.s__Escherichia_coli	23.2686758037
+UniRef50_B2K316: tRNA (cmo5U34)-methyltransferase 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.2070080478
+UniRef50_B2K316: tRNA (cmo5U34)-methyltransferase 2|unclassified	0.1888681441
+UniRef50_A1B2H5: Flagellin domain protein	41.6583720452
+UniRef50_A1B2H5: Flagellin domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.6583720452
+UniRef50_P08660: Lysine-sensitive aspartokinase 3	41.6546304450
+UniRef50_P08660: Lysine-sensitive aspartokinase 3|g__Escherichia.s__Escherichia_coli	41.6546304450
+UniRef50_B8ETJ4: Exodeoxyribonuclease III Xth	41.6475439862
+UniRef50_B8ETJ4: Exodeoxyribonuclease III Xth|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.6475439862
+UniRef50_Q15UL9: Deoxycytidine triphosphate deaminase	41.6407276689
+UniRef50_Q15UL9: Deoxycytidine triphosphate deaminase|g__Escherichia.s__Escherichia_coli	41.6407276689
+UniRef50_C6SQB9	41.6400583925
+UniRef50_C6SQB9|g__Streptococcus.s__Streptococcus_mutans	41.6400583925
+UniRef50_C6STC0	41.6364418119
+UniRef50_C6STC0|g__Streptococcus.s__Streptococcus_mutans	41.6364418119
+UniRef50_J7R194	41.6353997190
+UniRef50_J7R194|g__Escherichia.s__Escherichia_coli	41.6353997190
+UniRef50_A3CNT7: Histidinol-phosphate aminotransferase	41.6345988592
+UniRef50_A3CNT7: Histidinol-phosphate aminotransferase|g__Streptococcus.s__Streptococcus_mutans	41.6345988592
+UniRef50_Q9CMM8: Selenide, water dikinase	41.6105039412
+UniRef50_Q9CMM8: Selenide, water dikinase|g__Escherichia.s__Escherichia_coli	33.6797092625
+UniRef50_Q9CMM8: Selenide, water dikinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7406070270
+UniRef50_Q9CMM8: Selenide, water dikinase|unclassified	0.1901876516
+UniRef50_P22787	41.6092255949
+UniRef50_P22787|g__Escherichia.s__Escherichia_coli	41.6092255949
+UniRef50_P37685: Aldehyde dehydrogenase B	41.6051718737
+UniRef50_P37685: Aldehyde dehydrogenase B|g__Escherichia.s__Escherichia_coli	35.1163669074
+UniRef50_P37685: Aldehyde dehydrogenase B|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5444356473
+UniRef50_P37685: Aldehyde dehydrogenase B|g__Acinetobacter.s__Acinetobacter_baumannii	1.9157925408
+UniRef50_P37685: Aldehyde dehydrogenase B|unclassified	0.0285767783
+UniRef50_P26218: Cryptic outer membrane porin BglH	41.5934946910
+UniRef50_P26218: Cryptic outer membrane porin BglH|g__Escherichia.s__Escherichia_coli	41.5934946910
+UniRef50_Q4L5D3: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	41.5547359707
+UniRef50_Q4L5D3: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	41.5547359707
+UniRef50_F0VW84: Ferrous iron transport protein B	41.5535913938
+UniRef50_F0VW84: Ferrous iron transport protein B|g__Streptococcus.s__Streptococcus_mutans	41.5535913938
+UniRef50_P06610: Vitamin B12 transport periplasmic protein BtuE	41.5452328279
+UniRef50_P06610: Vitamin B12 transport periplasmic protein BtuE|g__Escherichia.s__Escherichia_coli	41.5452328279
+UniRef50_P33346	41.5357855391
+UniRef50_P33346|g__Escherichia.s__Escherichia_coli	41.5357855391
+UniRef50_UPI00032A023A: PREDICTED: LOW QUALITY PROTEIN: chaperone protein DnaK-like	41.5273102204
+UniRef50_UPI00032A023A: PREDICTED: LOW QUALITY PROTEIN: chaperone protein DnaK-like|g__Escherichia.s__Escherichia_coli	35.6667806392
+UniRef50_UPI00032A023A: PREDICTED: LOW QUALITY PROTEIN: chaperone protein DnaK-like|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6721924129
+UniRef50_UPI00032A023A: PREDICTED: LOW QUALITY PROTEIN: chaperone protein DnaK-like|unclassified	0.1883371683
+UniRef50_A8LKM9: Transcriptional regulator	41.5221751948
+UniRef50_A8LKM9: Transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.5221751948
+UniRef50_S5YCI7: Transcriptional regulator, AraC family	41.5203832961
+UniRef50_S5YCI7: Transcriptional regulator, AraC family|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.5203832961
+UniRef50_A4WRB0: Spheroidene monooxygenase	41.5131838260
+UniRef50_A4WRB0: Spheroidene monooxygenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.5131838260
+UniRef50_Q5HKE8: Accumulation associated protein	41.4974346260
+UniRef50_Q5HKE8: Accumulation associated protein|g__Staphylococcus.s__Staphylococcus_epidermidis	41.4974346260
+UniRef50_A3PIQ0: Methyl-accepting chemotaxis sensory transducer	41.4851302593
+UniRef50_A3PIQ0: Methyl-accepting chemotaxis sensory transducer|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.4851302593
+UniRef50_Q7MLH6: Phosphoserine aminotransferase	41.4725104427
+UniRef50_Q7MLH6: Phosphoserine aminotransferase|g__Escherichia.s__Escherichia_coli	27.5275930062
+UniRef50_Q7MLH6: Phosphoserine aminotransferase|g__Clostridium.s__Clostridium_beijerinckii	13.9449174365
+UniRef50_B7LN63	41.4704437822
+UniRef50_B7LN63|g__Escherichia.s__Escherichia_coli	41.4704437822
+UniRef50_F9L8X7	41.4673046252
+UniRef50_F9L8X7|g__Staphylococcus.s__Staphylococcus_epidermidis	41.4673046252
+UniRef50_P44916: Octaprenyl-diphosphate synthase	41.4542868870
+UniRef50_P44916: Octaprenyl-diphosphate synthase|g__Escherichia.s__Escherichia_coli	31.1094271450
+UniRef50_P44916: Octaprenyl-diphosphate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.0393767133
+UniRef50_P44916: Octaprenyl-diphosphate synthase|g__Neisseria.s__Neisseria_meningitidis	1.3054830287
+UniRef50_E0SZG6: Transcriptional regulator	41.4375289143
+UniRef50_E0SZG6: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	41.4375289143
+UniRef50_B4TUR5: tRNA-modifying protein YgfZ	41.4296004653
+UniRef50_B4TUR5: tRNA-modifying protein YgfZ|g__Escherichia.s__Escherichia_coli	41.4296004653
+UniRef50_P08987: Glucosyltransferase-I	41.4248683703
+UniRef50_P08987: Glucosyltransferase-I|g__Streptococcus.s__Streptococcus_mutans	41.1942410641
+UniRef50_P08987: Glucosyltransferase-I|unclassified	0.2306273063
+UniRef50_R9SMA2: Radical SAM domain-containing protein	41.4213526658
+UniRef50_R9SMA2: Radical SAM domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	41.4213526658
+UniRef50_A3CPL4: Cystathionine gamma-synthase, putative	41.4205294903
+UniRef50_A3CPL4: Cystathionine gamma-synthase, putative|g__Streptococcus.s__Streptococcus_mutans	41.4205294903
+UniRef50_U5NMZ6	41.4171469443
+UniRef50_U5NMZ6|unclassified	31.3868051604
+UniRef50_U5NMZ6|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.0303417839
+UniRef50_P0A7B0: Inorganic pyrophosphatase	41.4121846344
+UniRef50_P0A7B0: Inorganic pyrophosphatase|g__Escherichia.s__Escherichia_coli	41.4121846344
+UniRef50_U3SV52: Acyl-CoA thioesterase	41.4093320647
+UniRef50_U3SV52: Acyl-CoA thioesterase|g__Streptococcus.s__Streptococcus_mutans	41.4093320647
+UniRef50_D0LSQ0: 3-demethylubiquinone-9 3-methyltransferase	41.3976898578
+UniRef50_D0LSQ0: 3-demethylubiquinone-9 3-methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.3976898578
+UniRef50_Q48677: Glutamyl aminopeptidase	41.3879438924
+UniRef50_Q48677: Glutamyl aminopeptidase|g__Streptococcus.s__Streptococcus_mutans	41.3879438924
+UniRef50_P75683	41.3732450378
+UniRef50_P75683|g__Escherichia.s__Escherichia_coli	41.3732450378
+UniRef50_P60845: Aquaporin Z	41.3623954551
+UniRef50_P60845: Aquaporin Z|g__Escherichia.s__Escherichia_coli	35.2531692998
+UniRef50_P60845: Aquaporin Z|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1092261553
+UniRef50_F4ECZ7: HNH endonuclease	41.3600891862
+UniRef50_F4ECZ7: HNH endonuclease|g__Streptococcus.s__Streptococcus_agalactiae	41.3600891862
+UniRef50_A5UKV4: Tetrahydromethanopterin S-methyltransferase, subunit H, MtrH	41.3588668102
+UniRef50_A5UKV4: Tetrahydromethanopterin S-methyltransferase, subunit H, MtrH|g__Methanobrevibacter.s__Methanobrevibacter_smithii	41.3588668102
+UniRef50_Q46915: Glucarate dehydratase-related protein	41.3583271258
+UniRef50_Q46915: Glucarate dehydratase-related protein|g__Escherichia.s__Escherichia_coli	41.3583271258
+UniRef50_A5UNF1	41.3423704495
+UniRef50_A5UNF1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	41.3423704495
+UniRef50_P45095: Dipeptide transport ATP-binding protein DppD	41.3348896759
+UniRef50_P45095: Dipeptide transport ATP-binding protein DppD|g__Escherichia.s__Escherichia_coli	41.3348896759
+UniRef50_P31667	41.3288387444
+UniRef50_P31667|g__Escherichia.s__Escherichia_coli	41.3288387444
+UniRef50_Q2FJ20: Transcriptional regulator SarA	41.3244591025
+UniRef50_Q2FJ20: Transcriptional regulator SarA|g__Staphylococcus.s__Staphylococcus_aureus	23.7887973312
+UniRef50_Q2FJ20: Transcriptional regulator SarA|g__Staphylococcus.s__Staphylococcus_epidermidis	17.5356617713
+UniRef50_P0A9G4: HTH-type transcriptional regulator CueR	41.3099273013
+UniRef50_P0A9G4: HTH-type transcriptional regulator CueR|g__Escherichia.s__Escherichia_coli	41.3099273013
+UniRef50_U5NMM7	41.2962886440
+UniRef50_U5NMM7|unclassified	41.2962886440
+UniRef50_G7ZR16: 6-phospho-beta-glucosidase	41.2955228933
+UniRef50_G7ZR16: 6-phospho-beta-glucosidase|g__Staphylococcus.s__Staphylococcus_aureus	41.2955228933
+UniRef50_P36547: HTH-type transcriptional regulator eutR	41.2779159568
+UniRef50_P36547: HTH-type transcriptional regulator eutR|g__Escherichia.s__Escherichia_coli	41.2779159568
+UniRef50_A5UM85: Protein GrpE	41.2708693716
+UniRef50_A5UM85: Protein GrpE|g__Methanobrevibacter.s__Methanobrevibacter_smithii	41.2708693716
+UniRef50_Q8ZJF2: Tryptophan--tRNA ligase	41.2682249839
+UniRef50_Q8ZJF2: Tryptophan--tRNA ligase|g__Escherichia.s__Escherichia_coli	41.2682249839
+UniRef50_P39398: L-galactonate transporter	41.2668863590
+UniRef50_P39398: L-galactonate transporter|g__Escherichia.s__Escherichia_coli	41.2668863590
+UniRef50_P07962: Methyl-coenzyme M reductase subunit alpha	41.2667306536
+UniRef50_P07962: Methyl-coenzyme M reductase subunit alpha|g__Methanobrevibacter.s__Methanobrevibacter_smithii	41.2667306536
+UniRef50_D6UF03	41.2666646584
+UniRef50_D6UF03|g__Staphylococcus.s__Staphylococcus_aureus	41.2666646584
+UniRef50_Q8DSQ9: Tyrosine recombinase XerD-like	41.2535190242
+UniRef50_Q8DSQ9: Tyrosine recombinase XerD-like|g__Streptococcus.s__Streptococcus_mutans	41.2535190242
+UniRef50_Q8CTD8	41.2535073842
+UniRef50_Q8CTD8|g__Staphylococcus.s__Staphylococcus_epidermidis	41.2535073842
+UniRef50_P75858	41.2488965496
+UniRef50_P75858|g__Escherichia.s__Escherichia_coli	41.2488965496
+UniRef50_A5UMU3: Glycosyltransferase, GT2 family	41.2237389709
+UniRef50_A5UMU3: Glycosyltransferase, GT2 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	41.2237389709
+UniRef50_A9GZR7: Aspartate carbamoyltransferase	41.2207169012
+UniRef50_A9GZR7: Aspartate carbamoyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.2207169012
+UniRef50_A5UNF6: Putative Zn peptidase	41.2184784914
+UniRef50_A5UNF6: Putative Zn peptidase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	40.9833409835
+UniRef50_A5UNF6: Putative Zn peptidase|unclassified	0.2351375079
+UniRef50_P45543: Fructoselysine kinase	41.2094093932
+UniRef50_P45543: Fructoselysine kinase|g__Escherichia.s__Escherichia_coli	41.2094093932
+UniRef50_O27098: Coenzyme F420:L-glutamate ligase	41.2081354661
+UniRef50_O27098: Coenzyme F420:L-glutamate ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	41.2081354661
+UniRef50_G7ZQ64: Acetolactate synthase isozyme III small subunit (Partial)	41.1999713177
+UniRef50_G7ZQ64: Acetolactate synthase isozyme III small subunit (Partial)|g__Staphylococcus.s__Staphylococcus_epidermidis	35.4196244969
+UniRef50_G7ZQ64: Acetolactate synthase isozyme III small subunit (Partial)|g__Staphylococcus.s__Staphylococcus_aureus	5.7803468208
+UniRef50_F8HF16: Thiamine diphosphokinase	41.1940122061
+UniRef50_F8HF16: Thiamine diphosphokinase|g__Streptococcus.s__Streptococcus_mutans	41.1940122061
+UniRef50_Q2NYV9: ATP-dependent protease ATPase subunit HslU	41.1932211111
+UniRef50_Q2NYV9: ATP-dependent protease ATPase subunit HslU|g__Escherichia.s__Escherichia_coli	36.0056143013
+UniRef50_Q2NYV9: ATP-dependent protease ATPase subunit HslU|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1876068099
+UniRef50_B6JIZ7: Crossover junction endodeoxyribonuclease RuvC	41.1918552605
+UniRef50_B6JIZ7: Crossover junction endodeoxyribonuclease RuvC|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.0052040694
+UniRef50_B6JIZ7: Crossover junction endodeoxyribonuclease RuvC|unclassified	0.1866511911
+UniRef50_B2VFX0: Protein Syd	41.1849379833
+UniRef50_B2VFX0: Protein Syd|g__Escherichia.s__Escherichia_coli	41.1849379833
+UniRef50_Q56954: Chelated iron transport system membrane protein YfeC	41.1842311964
+UniRef50_Q56954: Chelated iron transport system membrane protein YfeC|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.1842311964
+UniRef50_V9VZ19: Membrane protein	41.1558076999
+UniRef50_V9VZ19: Membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.1558076999
+UniRef50_C6ST04	41.1285832907
+UniRef50_C6ST04|g__Streptococcus.s__Streptococcus_mutans	41.1285832907
+UniRef50_M7DM48: Permease	41.1232253938
+UniRef50_M7DM48: Permease|g__Streptococcus.s__Streptococcus_mutans	41.1232253938
+UniRef50_X5K4I4: ABC transporter, ATP-binding /permease protein	41.1128983492
+UniRef50_X5K4I4: ABC transporter, ATP-binding /permease protein|g__Streptococcus.s__Streptococcus_mutans	41.1128983492
+UniRef50_B9DT59: Sensor histidine kinase	41.0972666081
+UniRef50_B9DT59: Sensor histidine kinase|g__Streptococcus.s__Streptococcus_mutans	41.0972666081
+UniRef50_Q0BSD5: Alanine--tRNA ligase	41.0963582527
+UniRef50_Q0BSD5: Alanine--tRNA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.0963582527
+UniRef50_B9AFH2: Polymorphic outer membrane protein repeat (3 repeats) (Fragment)	41.0822528644
+UniRef50_B9AFH2: Polymorphic outer membrane protein repeat (3 repeats) (Fragment)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	40.7853734802
+UniRef50_B9AFH2: Polymorphic outer membrane protein repeat (3 repeats) (Fragment)|unclassified	0.2968793842
+UniRef50_D5BRY1: Trimethylamine methyltransferase MttB-like protein	41.0668898613
+UniRef50_D5BRY1: Trimethylamine methyltransferase MttB-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.0668898613
+UniRef50_A4WT54	41.0655117640
+UniRef50_A4WT54|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.0655117640
+UniRef50_D5ATM2: Transcriptional regulator, LysR family	41.0649542187
+UniRef50_D5ATM2: Transcriptional regulator, LysR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.0649542187
+UniRef50_C5VZF1: DNA protection during starvation protein	41.0634524054
+UniRef50_C5VZF1: DNA protection during starvation protein|g__Streptococcus.s__Streptococcus_mutans	41.0634524054
+UniRef50_A5UML2: Predicted flavoprotein	41.0608919194
+UniRef50_A5UML2: Predicted flavoprotein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	41.0608919194
+UniRef50_B7MTN6: Thiamine kinase	41.0570541803
+UniRef50_B7MTN6: Thiamine kinase|g__Escherichia.s__Escherichia_coli	41.0570541803
+UniRef50_B9DYB1: 50S ribosomal protein L23	41.0519012710
+UniRef50_B9DYB1: 50S ribosomal protein L23|g__Staphylococcus.s__Staphylococcus_epidermidis	24.2039653068
+UniRef50_B9DYB1: 50S ribosomal protein L23|g__Staphylococcus.s__Staphylococcus_aureus	16.8479359642
+UniRef50_P07464: Galactoside O-acetyltransferase	41.0441468996
+UniRef50_P07464: Galactoside O-acetyltransferase|g__Escherichia.s__Escherichia_coli	41.0441468996
+UniRef50_UPI000381EA29: hypothetical protein	41.0353217080
+UniRef50_UPI000381EA29: hypothetical protein|unclassified	41.0353217080
+UniRef50_Q8ZDA6: UPF0249 protein ChbG	41.0283849564
+UniRef50_Q8ZDA6: UPF0249 protein ChbG|g__Escherichia.s__Escherichia_coli	41.0283849564
+UniRef50_E1VB18: Ribosomal silencing factor RsfS	41.0256410256
+UniRef50_E1VB18: Ribosomal silencing factor RsfS|g__Pseudomonas.s__Pseudomonas_aeruginosa	41.0256410256
+UniRef50_U6EC46: NusA family KH domain-containing protein	41.0085431509
+UniRef50_U6EC46: NusA family KH domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	41.0085431509
+UniRef50_F5M2C8: Inositol monophosphatase	41.0056130813
+UniRef50_F5M2C8: Inositol monophosphatase|g__Rhodobacter.s__Rhodobacter_sphaeroides	41.0056130813
+UniRef50_Q1LNZ4: GCN5-related N-acetyltransferase, GNAT family	41.0052910053
+UniRef50_Q1LNZ4: GCN5-related N-acetyltransferase, GNAT family|g__Pseudomonas.s__Pseudomonas_aeruginosa	41.0052910053
+UniRef50_D5AL10: Transcriptional regulator, LuxR family	40.9978450543
+UniRef50_D5AL10: Transcriptional regulator, LuxR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.9978450543
+UniRef50_P77700	40.9963750651
+UniRef50_P77700|g__Escherichia.s__Escherichia_coli	40.9963750651
+UniRef50_P28635: D-methionine-binding lipoprotein MetQ	40.9879453493
+UniRef50_P28635: D-methionine-binding lipoprotein MetQ|g__Escherichia.s__Escherichia_coli	40.9879453493
+UniRef50_Q7VM29: GTPase Der	40.9818346746
+UniRef50_Q7VM29: GTPase Der|g__Escherichia.s__Escherichia_coli	37.0687143206
+UniRef50_Q7VM29: GTPase Der|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9131203540
+UniRef50_Q5XD15: Zinc-binding protein AdcA	40.9722321670
+UniRef50_Q5XD15: Zinc-binding protein AdcA|g__Streptococcus.s__Streptococcus_mutans	40.9722321670
+UniRef50_F5WWT9: Predicted membrane protein	40.9686977363
+UniRef50_F5WWT9: Predicted membrane protein|g__Streptococcus.s__Streptococcus_mutans	40.9686977363
+UniRef50_Q3J170: Reaction center protein H chain	40.9553737965
+UniRef50_Q3J170: Reaction center protein H chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.9553737965
+UniRef50_D3E4F5: Archaea-specific RecJ-like exonuclease	40.9449178272
+UniRef50_D3E4F5: Archaea-specific RecJ-like exonuclease|g__Methanobrevibacter.s__Methanobrevibacter_smithii	40.9449178272
+UniRef50_A5UJ48: Short chain dehydrogenase (7-alpha-hydroxysteroid dehydrogenase)	40.9417234523
+UniRef50_A5UJ48: Short chain dehydrogenase (7-alpha-hydroxysteroid dehydrogenase)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	40.9417234523
+UniRef50_M2C9Y4	40.9371446430
+UniRef50_M2C9Y4|g__Streptococcus.s__Streptococcus_mutans	40.9371446430
+UniRef50_A7ZV33: Oligoribonuclease	40.9367579011
+UniRef50_A7ZV33: Oligoribonuclease|g__Escherichia.s__Escherichia_coli	40.1486950778
+UniRef50_A7ZV33: Oligoribonuclease|unclassified	0.7880628233
+UniRef50_Q5XAQ1: Putative bifunctional phosphatase/peptidyl-prolyl cis-trans isomerase	40.9238581754
+UniRef50_Q5XAQ1: Putative bifunctional phosphatase/peptidyl-prolyl cis-trans isomerase|g__Streptococcus.s__Streptococcus_mutans	37.0547755342
+UniRef50_Q5XAQ1: Putative bifunctional phosphatase/peptidyl-prolyl cis-trans isomerase|g__Streptococcus.s__Streptococcus_agalactiae	3.8435420368
+UniRef50_Q5XAQ1: Putative bifunctional phosphatase/peptidyl-prolyl cis-trans isomerase|unclassified	0.0255406044
+UniRef50_G4RGP8: ABC-type nitrate/sulfonate/bicarbonate transport systems, periplasmic components	40.9238038517
+UniRef50_G4RGP8: ABC-type nitrate/sulfonate/bicarbonate transport systems, periplasmic components|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.8175307753
+UniRef50_G4RGP8: ABC-type nitrate/sulfonate/bicarbonate transport systems, periplasmic components|unclassified	4.1062730765
+UniRef50_F8I070: Peptidyl-prolyl cis-trans isomerase	40.8965961260
+UniRef50_F8I070: Peptidyl-prolyl cis-trans isomerase|g__Streptococcus.s__Streptococcus_mutans	40.8965961260
+UniRef50_T0V4W6: Proteinase	40.8912911584
+UniRef50_T0V4W6: Proteinase|g__Streptococcus.s__Streptococcus_mutans	40.8912911584
+UniRef50_P30149: Inner membrane protein YabI	40.8705626027
+UniRef50_P30149: Inner membrane protein YabI|g__Escherichia.s__Escherichia_coli	40.8705626027
+UniRef50_P75806: Putative undecaprenyl-diphosphatase YbjG	40.8697248077
+UniRef50_P75806: Putative undecaprenyl-diphosphatase YbjG|g__Escherichia.s__Escherichia_coli	40.8697248077
+UniRef50_P0AGM8: Uracil permease	40.8578915702
+UniRef50_P0AGM8: Uracil permease|g__Escherichia.s__Escherichia_coli	39.9768343015
+UniRef50_P0AGM8: Uracil permease|g__Clostridium.s__Clostridium_beijerinckii	0.8810572687
+UniRef50_A3PJJ0: Rhodanese domain protein	40.8548314667
+UniRef50_A3PJJ0: Rhodanese domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.8548314667
+UniRef50_P37339: L-2-hydroxyglutarate oxidase LhgO	40.8516483381
+UniRef50_P37339: L-2-hydroxyglutarate oxidase LhgO|g__Escherichia.s__Escherichia_coli	40.8516483381
+UniRef50_Q3IVU8: FMN-dependent NADH-azoreductase	40.8512136283
+UniRef50_Q3IVU8: FMN-dependent NADH-azoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.8512136283
+UniRef50_P77775: Epimerase family protein YfcH	40.8507440228
+UniRef50_P77775: Epimerase family protein YfcH|g__Escherichia.s__Escherichia_coli	40.8507440228
+UniRef50_P77409: Protein PhsC homolog	40.8486424871
+UniRef50_P77409: Protein PhsC homolog|g__Escherichia.s__Escherichia_coli	40.8486424871
+UniRef50_P37348: UPF0759 protein YecE	40.8446390036
+UniRef50_P37348: UPF0759 protein YecE|g__Escherichia.s__Escherichia_coli	40.8446390036
+UniRef50_P77390: [Citrate [pro-3S]-lyase] ligase	40.8352245428
+UniRef50_P77390: [Citrate [pro-3S]-lyase] ligase|g__Escherichia.s__Escherichia_coli	40.8352245428
+UniRef50_P19932: Hydrogenase-1 operon protein HyaF	40.8275727536
+UniRef50_P19932: Hydrogenase-1 operon protein HyaF|g__Escherichia.s__Escherichia_coli	40.2433265545
+UniRef50_P19932: Hydrogenase-1 operon protein HyaF|unclassified	0.5842461991
+UniRef50_Z8K1G5: Urease accessory protein ureE	40.8218014165
+UniRef50_Z8K1G5: Urease accessory protein ureE|g__Staphylococcus.s__Staphylococcus_epidermidis	40.8218014165
+UniRef50_Q6F2Y7: Chaperone protein ClpB1	40.8201357950
+UniRef50_Q6F2Y7: Chaperone protein ClpB1|g__Staphylococcus.s__Staphylococcus_aureus	39.9324428395
+UniRef50_Q6F2Y7: Chaperone protein ClpB1|g__Deinococcus.s__Deinococcus_radiodurans	0.8876929555
+UniRef50_H8I846: Formate/nitrite transporter	40.8126830217
+UniRef50_H8I846: Formate/nitrite transporter|g__Methanobrevibacter.s__Methanobrevibacter_smithii	40.8126830217
+UniRef50_F7ZE55	40.8107328031
+UniRef50_F7ZE55|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.8107328031
+UniRef50_Q83RZ7: Anaerobic dimethyl sulfoxide reductase chain B	40.7835059427
+UniRef50_Q83RZ7: Anaerobic dimethyl sulfoxide reductase chain B|g__Escherichia.s__Escherichia_coli	40.7835059427
+UniRef50_F5X4A4: Ribose transport system substrate-binding protein	40.7521385956
+UniRef50_F5X4A4: Ribose transport system substrate-binding protein|g__Streptococcus.s__Streptococcus_mutans	40.7521385956
+UniRef50_F5X3F3: HI0933-like oxidoreductase/dehydrogenase	40.7374337954
+UniRef50_F5X3F3: HI0933-like oxidoreductase/dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	35.7250519562
+UniRef50_F5X3F3: HI0933-like oxidoreductase/dehydrogenase|g__Streptococcus.s__Streptococcus_agalactiae	5.0123818392
+UniRef50_F5LXC8	40.7371299005
+UniRef50_F5LXC8|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.4592730192
+UniRef50_F5LXC8|unclassified	2.2778568813
+UniRef50_Q3J1Y6: Diguanylate cyclase/phosphodiesterase with PAS/PAC sensor(S)	40.7303754993
+UniRef50_Q3J1Y6: Diguanylate cyclase/phosphodiesterase with PAS/PAC sensor(S)|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.7303754993
+UniRef50_A4WNL3: Alkane 1-monooxygenase	40.7265763586
+UniRef50_A4WNL3: Alkane 1-monooxygenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.7265763586
+UniRef50_B9KLF6	40.7208821446
+UniRef50_B9KLF6|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.5338268458
+UniRef50_B9KLF6|unclassified	8.1870552988
+UniRef50_O26232: Orotidine 5'-phosphate decarboxylase	40.7179356146
+UniRef50_O26232: Orotidine 5'-phosphate decarboxylase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	40.7179356146
+UniRef50_Q2P582: Aspartate--tRNA ligase	40.7055471352
+UniRef50_Q2P582: Aspartate--tRNA ligase|g__Escherichia.s__Escherichia_coli	28.9691061167
+UniRef50_Q2P582: Aspartate--tRNA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.1492859605
+UniRef50_Q2P582: Aspartate--tRNA ligase|g__Neisseria.s__Neisseria_meningitidis	0.5561735261
+UniRef50_Q2P582: Aspartate--tRNA ligase|unclassified	0.0309815319
+UniRef50_A8AYT3: Potassium uptake protein, Trk family	40.7038607715
+UniRef50_A8AYT3: Potassium uptake protein, Trk family|g__Streptococcus.s__Streptococcus_mutans	36.2154824292
+UniRef50_A8AYT3: Potassium uptake protein, Trk family|g__Streptococcus.s__Streptococcus_agalactiae	4.4883783423
+UniRef50_Q3J1R1: TRAP-T family sorbitol/mannitol transporter, DctM (12TMs) subunit	40.6935068151
+UniRef50_Q3J1R1: TRAP-T family sorbitol/mannitol transporter, DctM (12TMs) subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.5740566160
+UniRef50_Q3J1R1: TRAP-T family sorbitol/mannitol transporter, DctM (12TMs) subunit|unclassified	0.1194501991
+UniRef50_A4FVV8: Tetrahydromethanopterin S-methyltransferase subunit H	40.6797652608
+UniRef50_A4FVV8: Tetrahydromethanopterin S-methyltransferase subunit H|g__Methanobrevibacter.s__Methanobrevibacter_smithii	40.6797652608
+UniRef50_C4ZVV8: HTH-type transcriptional regulator MurR	40.6591018929
+UniRef50_C4ZVV8: HTH-type transcriptional regulator MurR|g__Escherichia.s__Escherichia_coli	37.0031942070
+UniRef50_C4ZVV8: HTH-type transcriptional regulator MurR|unclassified	3.6559076859
+UniRef50_P65897: Phosphoribosylglycinamide formyltransferase	40.6551169299
+UniRef50_P65897: Phosphoribosylglycinamide formyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	40.6551169299
+UniRef50_C5BQ83: 30S ribosomal protein S13	40.6546265911
+UniRef50_C5BQ83: 30S ribosomal protein S13|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.4212096236
+UniRef50_C5BQ83: 30S ribosomal protein S13|g__Streptococcus.s__Streptococcus_mutans	9.2334169675
+UniRef50_Q9KT69: Methionine--tRNA ligase	40.6509594656
+UniRef50_Q9KT69: Methionine--tRNA ligase|g__Escherichia.s__Escherichia_coli	34.8066791781
+UniRef50_Q9KT69: Methionine--tRNA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7003697964
+UniRef50_Q9KT69: Methionine--tRNA ligase|g__Neisseria.s__Neisseria_meningitidis	1.1439104911
+UniRef50_M7E309: MDR permease	40.6462799868
+UniRef50_M7E309: MDR permease|g__Streptococcus.s__Streptococcus_mutans	40.6462799868
+UniRef50_P24242: HTH-type transcriptional regulator AscG	40.6334937782
+UniRef50_P24242: HTH-type transcriptional regulator AscG|g__Escherichia.s__Escherichia_coli	40.6334937782
+UniRef50_A6T533: UPF0255 protein KPN78578_02430	40.6324599663
+UniRef50_A6T533: UPF0255 protein KPN78578_02430|g__Escherichia.s__Escherichia_coli	40.6324599663
+UniRef50_Q2YYZ3	40.6312611006
+UniRef50_Q2YYZ3|g__Staphylococcus.s__Staphylococcus_aureus	36.6205110886
+UniRef50_Q2YYZ3|unclassified	4.0107500120
+UniRef50_A4WX60	40.6252766695
+UniRef50_A4WX60|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.0923925674
+UniRef50_A4WX60|unclassified	1.5328841021
+UniRef50_A7ZUE4: Regulator of ribonuclease activity A	40.6191672715
+UniRef50_A7ZUE4: Regulator of ribonuclease activity A|g__Escherichia.s__Escherichia_coli	40.6191672715
+UniRef50_Q1LSV5: Uridylate kinase	40.6141605889
+UniRef50_Q1LSV5: Uridylate kinase|g__Escherichia.s__Escherichia_coli	40.5460044580
+UniRef50_Q1LSV5: Uridylate kinase|unclassified	0.0681561308
+UniRef50_Q3HKD5	40.6062167401
+UniRef50_Q3HKD5|unclassified	40.6062167401
+UniRef50_K9NKD1: NAD-dependent epimerase/dehydratase	40.6009614919
+UniRef50_K9NKD1: NAD-dependent epimerase/dehydratase|g__Streptococcus.s__Streptococcus_mutans	40.6009614919
+UniRef50_P46920: Glycine betaine transport ATP-binding protein OpuAA	40.5908783725
+UniRef50_P46920: Glycine betaine transport ATP-binding protein OpuAA|g__Streptococcus.s__Streptococcus_mutans	36.0497905626
+UniRef50_P46920: Glycine betaine transport ATP-binding protein OpuAA|g__Streptococcus.s__Streptococcus_agalactiae	3.5554833727
+UniRef50_P46920: Glycine betaine transport ATP-binding protein OpuAA|unclassified	0.9856044372
+UniRef50_I3UCI5: Amino acid ABC transporter ATPase	40.5822247503
+UniRef50_I3UCI5: Amino acid ABC transporter ATPase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	40.5822247503
+UniRef50_P64452	40.5701491682
+UniRef50_P64452|g__Escherichia.s__Escherichia_coli	40.5701491682
+UniRef50_P29849: Maltodextrin phosphorylase	40.5635682303
+UniRef50_P29849: Maltodextrin phosphorylase|g__Streptococcus.s__Streptococcus_mutans	38.6726030040
+UniRef50_P29849: Maltodextrin phosphorylase|g__Streptococcus.s__Streptococcus_agalactiae	1.8909652263
+UniRef50_P43850: N5-carboxyaminoimidazole ribonucleotide synthase	40.5588922962
+UniRef50_P43850: N5-carboxyaminoimidazole ribonucleotide synthase|g__Escherichia.s__Escherichia_coli	40.4334131399
+UniRef50_P43850: N5-carboxyaminoimidazole ribonucleotide synthase|unclassified	0.1254791563
+UniRef50_P16682: Phosphonates-binding periplasmic protein	40.5574395201
+UniRef50_P16682: Phosphonates-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	32.7364681446
+UniRef50_P16682: Phosphonates-binding periplasmic protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8209713756
+UniRef50_I0C7Y1: Arginine repressor	40.5474927220
+UniRef50_I0C7Y1: Arginine repressor|g__Staphylococcus.s__Staphylococcus_aureus	40.5474927220
+UniRef50_P0ACI1: Right origin-binding protein	40.5376980838
+UniRef50_P0ACI1: Right origin-binding protein|g__Escherichia.s__Escherichia_coli	40.5376980838
+UniRef50_D3E0D2: Energy-converting hydrogenase B subunit I EhbI	40.5373573312
+UniRef50_D3E0D2: Energy-converting hydrogenase B subunit I EhbI|g__Methanobrevibacter.s__Methanobrevibacter_smithii	40.5373573312
+UniRef50_P76508	40.5368336946
+UniRef50_P76508|g__Escherichia.s__Escherichia_coli	40.5368336946
+UniRef50_A3PKI1: NADH-quinone oxidoreductase subunit B 2	40.5112632719
+UniRef50_A3PKI1: NADH-quinone oxidoreductase subunit B 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.5002832850
+UniRef50_A3PKI1: NADH-quinone oxidoreductase subunit B 2|unclassified	1.0109799869
+UniRef50_Q8DW27	40.5109123900
+UniRef50_Q8DW27|g__Streptococcus.s__Streptococcus_mutans	40.5109123900
+UniRef50_O66119: Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex	40.5042143219
+UniRef50_O66119: Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.5042143219
+UniRef50_R4PYA3: Ribonucleoside-diphosphate reductase	40.4830412967
+UniRef50_R4PYA3: Ribonucleoside-diphosphate reductase|g__Streptococcus.s__Streptococcus_mutans	38.8683617483
+UniRef50_R4PYA3: Ribonucleoside-diphosphate reductase|g__Streptococcus.s__Streptococcus_agalactiae	1.6146795484
+UniRef50_Q602K3: Porphobilinogen deaminase	40.4809923460
+UniRef50_Q602K3: Porphobilinogen deaminase|g__Escherichia.s__Escherichia_coli	31.8518320779
+UniRef50_Q602K3: Porphobilinogen deaminase|g__Acinetobacter.s__Acinetobacter_baumannii	6.1171311154
+UniRef50_Q602K3: Porphobilinogen deaminase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4208860297
+UniRef50_Q602K3: Porphobilinogen deaminase|unclassified	0.0911431232
+UniRef50_B9J9J5	40.4734245263
+UniRef50_B9J9J5|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.4734245263
+UniRef50_A1B0G9: Permease YjgP/YjgQ family protein	40.4663103624
+UniRef50_A1B0G9: Permease YjgP/YjgQ family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.4663103624
+UniRef50_R7B346	40.4659547827
+UniRef50_R7B346|g__Methanobrevibacter.s__Methanobrevibacter_smithii	40.4659547827
+UniRef50_F6BRI2: ABC transporter related protein	40.4595931123
+UniRef50_F6BRI2: ABC transporter related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.4595931123
+UniRef50_P0AE13: AMP nucleosidase	40.4518509165
+UniRef50_P0AE13: AMP nucleosidase|g__Escherichia.s__Escherichia_coli	39.7033479225
+UniRef50_P0AE13: AMP nucleosidase|unclassified	0.7485029940
+UniRef50_D3E1C8: Hydrolase HAD superfamily	40.4494460364
+UniRef50_D3E1C8: Hydrolase HAD superfamily|g__Methanobrevibacter.s__Methanobrevibacter_smithii	40.4494460364
+UniRef50_B5F4R2: NADPH-dependent 7-cyano-7-deazaguanine reductase	40.4413918413
+UniRef50_B5F4R2: NADPH-dependent 7-cyano-7-deazaguanine reductase|g__Escherichia.s__Escherichia_coli	40.3426697911
+UniRef50_B5F4R2: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.0987220502
+UniRef50_A4WXL5	40.4401060019
+UniRef50_A4WXL5|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.4401060019
+UniRef50_N0C862: Histidine kinase	40.4259014167
+UniRef50_N0C862: Histidine kinase|g__Streptococcus.s__Streptococcus_mutans	40.4259014167
+UniRef50_P25131	40.4236344970
+UniRef50_P25131|g__Pseudomonas.s__Pseudomonas_aeruginosa	40.4236344970
+UniRef50_Q12UL5: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	40.4173689271
+UniRef50_Q12UL5: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	40.4173689271
+UniRef50_S5YXU8: ErfK/YbiS/YcfS/YnhG family protein	40.3992065818
+UniRef50_S5YXU8: ErfK/YbiS/YcfS/YnhG family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.3992065818
+UniRef50_A5ULZ8	40.3965970659
+UniRef50_A5ULZ8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	40.3965970659
+UniRef50_A5ULH9: Predicted ATP-utilizing enzyme	40.3945628033
+UniRef50_A5ULH9: Predicted ATP-utilizing enzyme|g__Methanobrevibacter.s__Methanobrevibacter_smithii	40.3945628033
+UniRef50_I6U0Z0	40.3914488360
+UniRef50_I6U0Z0|g__Streptococcus.s__Streptococcus_mutans	40.3914488360
+UniRef50_Q987Q1: ABC transporter, permease protein	40.3903310096
+UniRef50_Q987Q1: ABC transporter, permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.3903310096
+UniRef50_D3E0E5: Carbohydrate kinase	40.3867286093
+UniRef50_D3E0E5: Carbohydrate kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	40.3867286093
+UniRef50_R9SLZ8	40.3864250366
+UniRef50_R9SLZ8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	40.3864250366
+UniRef50_M7MVN0: 5-formyltetrahydrofolate cyclo-ligase	40.3738102236
+UniRef50_M7MVN0: 5-formyltetrahydrofolate cyclo-ligase|g__Streptococcus.s__Streptococcus_mutans	38.4726695392
+UniRef50_M7MVN0: 5-formyltetrahydrofolate cyclo-ligase|g__Streptococcus.s__Streptococcus_agalactiae	1.9011406844
+UniRef50_Q0TMQ9: 30S ribosomal protein S14 type Z	40.3649995012
+UniRef50_Q0TMQ9: 30S ribosomal protein S14 type Z|g__Staphylococcus.s__Staphylococcus_aureus	21.5935131324
+UniRef50_Q0TMQ9: 30S ribosomal protein S14 type Z|g__Staphylococcus.s__Staphylococcus_epidermidis	18.7714863688
+UniRef50_A4WPC2: OmpA/MotB domain protein	40.3649457032
+UniRef50_A4WPC2: OmpA/MotB domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.3649457032
+UniRef50_Q5HRL9: RNA polymerase sigma factor sigW, putative	40.3649293505
+UniRef50_Q5HRL9: RNA polymerase sigma factor sigW, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	40.3649293505
+UniRef50_Q2YVV9: Initiation-control protein YabA	40.3491792899
+UniRef50_Q2YVV9: Initiation-control protein YabA|g__Staphylococcus.s__Staphylococcus_aureus	26.8291705823
+UniRef50_Q2YVV9: Initiation-control protein YabA|g__Staphylococcus.s__Staphylococcus_epidermidis	13.5200087076
+UniRef50_B9KQI2	40.3467571914
+UniRef50_B9KQI2|unclassified	36.5444758226
+UniRef50_B9KQI2|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.8022813688
+UniRef50_P04816: Leucine-specific-binding protein	40.3349302366
+UniRef50_P04816: Leucine-specific-binding protein|g__Escherichia.s__Escherichia_coli	40.3349302366
+UniRef50_O87278: Probable N-methylproline demethylase	40.3304032946
+UniRef50_O87278: Probable N-methylproline demethylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.0167025066
+UniRef50_O87278: Probable N-methylproline demethylase|unclassified	0.3137007880
+UniRef50_B9J7V3: Oligopeptide ABC transporter	40.3262042086
+UniRef50_B9J7V3: Oligopeptide ABC transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.3262042086
+UniRef50_A7ZKV2: UPF0260 protein YcgN	40.3223129864
+UniRef50_A7ZKV2: UPF0260 protein YcgN|g__Escherichia.s__Escherichia_coli	40.0676261496
+UniRef50_A7ZKV2: UPF0260 protein YcgN|unclassified	0.2546868368
+UniRef50_C6SRZ7	40.3217928303
+UniRef50_C6SRZ7|g__Streptococcus.s__Streptococcus_mutans	40.0869823287
+UniRef50_C6SRZ7|unclassified	0.2348105016
+UniRef50_Q1RK88	40.3038401938
+UniRef50_Q1RK88|unclassified	40.3038401938
+UniRef50_Q8EB10: Sulfate adenylyltransferase subunit 1	40.2920089288
+UniRef50_Q8EB10: Sulfate adenylyltransferase subunit 1|g__Escherichia.s__Escherichia_coli	36.6729230541
+UniRef50_Q8EB10: Sulfate adenylyltransferase subunit 1|g__Acinetobacter.s__Acinetobacter_baumannii	3.6190858746
+UniRef50_B5F7E7: Phosphoenolpyruvate synthase regulatory protein	40.2799093726
+UniRef50_B5F7E7: Phosphoenolpyruvate synthase regulatory protein|g__Escherichia.s__Escherichia_coli	39.2169423778
+UniRef50_B5F7E7: Phosphoenolpyruvate synthase regulatory protein|unclassified	1.0629669948
+UniRef50_U5P9Q9: PTS sorbitol transporter subunit IIB	40.2309977249
+UniRef50_U5P9Q9: PTS sorbitol transporter subunit IIB|g__Escherichia.s__Escherichia_coli	40.2309977249
+UniRef50_S5QXV6: Maltose/maltodextrin-binding protein	40.2117379108
+UniRef50_S5QXV6: Maltose/maltodextrin-binding protein|g__Streptococcus.s__Streptococcus_mutans	40.2117379108
+UniRef50_P0AG22: GTP pyrophosphokinase	40.2093832056
+UniRef50_P0AG22: GTP pyrophosphokinase|g__Escherichia.s__Escherichia_coli	40.1730917941
+UniRef50_P0AG22: GTP pyrophosphokinase|unclassified	0.0362914114
+UniRef50_F3U3F5	40.2032307637
+UniRef50_F3U3F5|unclassified	40.2032307637
+UniRef50_D3E2D1: Fumarate hydratase FumA3	40.1820036968
+UniRef50_D3E2D1: Fumarate hydratase FumA3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	40.1820036968
+UniRef50_P0AEJ1: Multidrug export protein EmrB	40.1560314868
+UniRef50_P0AEJ1: Multidrug export protein EmrB|g__Escherichia.s__Escherichia_coli	39.4659003619
+UniRef50_P0AEJ1: Multidrug export protein EmrB|g__Neisseria.s__Neisseria_meningitidis	0.6901311249
+UniRef50_P69857: Probable N-acetylneuraminic acid outer membrane channel protein NanC	40.1480958807
+UniRef50_P69857: Probable N-acetylneuraminic acid outer membrane channel protein NanC|g__Escherichia.s__Escherichia_coli	40.1480958807
+UniRef50_Q1C7J0: Arabinose import ATP-binding protein AraG	40.1449767126
+UniRef50_Q1C7J0: Arabinose import ATP-binding protein AraG|g__Escherichia.s__Escherichia_coli	40.1449767126
+UniRef50_Q9K105: Quinolinate synthase A	40.1434672758
+UniRef50_Q9K105: Quinolinate synthase A|g__Escherichia.s__Escherichia_coli	27.7590682256
+UniRef50_Q9K105: Quinolinate synthase A|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.1112703252
+UniRef50_Q9K105: Quinolinate synthase A|unclassified	0.2731287250
+UniRef50_Q28VP7: Ubiquinone biosynthesis O-methyltransferase	40.1196017342
+UniRef50_Q28VP7: Ubiquinone biosynthesis O-methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.1196017342
+UniRef50_T0U0F8: Sakacin A production response regulator	40.1129495541
+UniRef50_T0U0F8: Sakacin A production response regulator|g__Streptococcus.s__Streptococcus_mutans	39.8936000958
+UniRef50_T0U0F8: Sakacin A production response regulator|unclassified	0.2193494583
+UniRef50_U3SUM1	40.1101685356
+UniRef50_U3SUM1|g__Streptococcus.s__Streptococcus_mutans	40.1101685356
+UniRef50_P0C8K1: D-tagatose-1,6-bisphosphate aldolase subunit KbaZ	40.0963293906
+UniRef50_P0C8K1: D-tagatose-1,6-bisphosphate aldolase subunit KbaZ|g__Escherichia.s__Escherichia_coli	40.0145042744
+UniRef50_P0C8K1: D-tagatose-1,6-bisphosphate aldolase subunit KbaZ|unclassified	0.0818251162
+UniRef50_A3CMH9: DEAD RNA helicase, putative	40.0842482509
+UniRef50_A3CMH9: DEAD RNA helicase, putative|g__Streptococcus.s__Streptococcus_mutans	40.0842482509
+UniRef50_Q6FF92: 50S ribosomal protein L10	40.0565576978
+UniRef50_Q6FF92: 50S ribosomal protein L10|g__Pseudomonas.s__Pseudomonas_aeruginosa	31.2846278732
+UniRef50_Q6FF92: 50S ribosomal protein L10|g__Acinetobacter.s__Acinetobacter_baumannii	8.7719298246
+UniRef50_P0ABJ0: Cytochrome bo(3) ubiquinol oxidase subunit 1	40.0471741600
+UniRef50_P0ABJ0: Cytochrome bo(3) ubiquinol oxidase subunit 1|g__Escherichia.s__Escherichia_coli	29.6577207633
+UniRef50_P0ABJ0: Cytochrome bo(3) ubiquinol oxidase subunit 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.0762744015
+UniRef50_P0ABJ0: Cytochrome bo(3) ubiquinol oxidase subunit 1|g__Acinetobacter.s__Acinetobacter_baumannii	1.2222627917
+UniRef50_P0ABJ0: Cytochrome bo(3) ubiquinol oxidase subunit 1|unclassified	0.0909162035
+UniRef50_P69799: PTS system mannose-specific EIIAB component	40.0403113182
+UniRef50_P69799: PTS system mannose-specific EIIAB component|g__Escherichia.s__Escherichia_coli	40.0403113182
+UniRef50_P32136: Putative sulfoquinovose importer	40.0360694504
+UniRef50_P32136: Putative sulfoquinovose importer|g__Escherichia.s__Escherichia_coli	40.0360694504
+UniRef50_Q03XZ5: Glutamate synthase (NADH) small subunit	40.0351837036
+UniRef50_Q03XZ5: Glutamate synthase (NADH) small subunit|g__Streptococcus.s__Streptococcus_mutans	40.0351837036
+UniRef50_A0A024DE18: Pyruvate dehydrogenase	40.0312942739
+UniRef50_A0A024DE18: Pyruvate dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	38.4515154430
+UniRef50_A0A024DE18: Pyruvate dehydrogenase|g__Streptococcus.s__Streptococcus_agalactiae	1.5797788310
+UniRef50_Q8CWX8: Signal recognition particle receptor FtsY	40.0213550027
+UniRef50_Q8CWX8: Signal recognition particle receptor FtsY|g__Streptococcus.s__Streptococcus_mutans	37.8445647647
+UniRef50_Q8CWX8: Signal recognition particle receptor FtsY|g__Streptococcus.s__Streptococcus_agalactiae	2.1767902381
+UniRef50_O06941: Protein GrpE	40.0141255147
+UniRef50_O06941: Protein GrpE|g__Streptococcus.s__Streptococcus_mutans	40.0141255147
+UniRef50_T0T7N0: Methylenetetrahydrofolate reductase	40.0119624433
+UniRef50_T0T7N0: Methylenetetrahydrofolate reductase|g__Streptococcus.s__Streptococcus_mutans	40.0119624433
+UniRef50_K0LW41	40.0088850814
+UniRef50_K0LW41|g__Staphylococcus.s__Staphylococcus_aureus	29.5768709416
+UniRef50_K0LW41|g__Staphylococcus.s__Staphylococcus_epidermidis	7.6680208982
+UniRef50_K0LW41|unclassified	2.7639932416
+UniRef50_A1ABR2: Cell division activator CedA	40.0000000000
+UniRef50_A1ABR2: Cell division activator CedA|g__Escherichia.s__Escherichia_coli	40.0000000000
+UniRef50_A4X0G7	40.0000000000
+UniRef50_A4X0G7|g__Rhodobacter.s__Rhodobacter_sphaeroides	40.0000000000
+UniRef50_Q5X1H5: 50S ribosomal protein L35	40.0000000000
+UniRef50_Q5X1H5: 50S ribosomal protein L35|g__Pseudomonas.s__Pseudomonas_aeruginosa	40.0000000000
+UniRef50_R4PMP8: Fumarate reductase/succinate dehydrogenase flavoprotein domain protein	39.9970350906
+UniRef50_R4PMP8: Fumarate reductase/succinate dehydrogenase flavoprotein domain protein|g__Streptococcus.s__Streptococcus_mutans	39.9970350906
+UniRef50_Q3IV67	39.9885599651
+UniRef50_Q3IV67|unclassified	39.9885599651
+UniRef50_A4WTF8: Malto-oligosyltrehalose synthase	39.9773246809
+UniRef50_A4WTF8: Malto-oligosyltrehalose synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.9773246809
+UniRef50_A1B054: Transcriptional regulator, LuxR family	39.9603232414
+UniRef50_A1B054: Transcriptional regulator, LuxR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.9603232414
+UniRef50_D3E2P1: Bicarbonate ABC transporter ATP-binding protein BtcA	39.9405509744
+UniRef50_D3E2P1: Bicarbonate ABC transporter ATP-binding protein BtcA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.9405509744
+UniRef50_O27502: Hydroxylamine reductase	39.9306983853
+UniRef50_O27502: Hydroxylamine reductase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.8531019441
+UniRef50_O27502: Hydroxylamine reductase|unclassified	0.0775964412
+UniRef50_Q5M1E5	39.9286373794
+UniRef50_Q5M1E5|g__Streptococcus.s__Streptococcus_mutans	39.9286373794
+UniRef50_A7ZUQ1: Protein PsiE	39.9256217262
+UniRef50_A7ZUQ1: Protein PsiE|g__Escherichia.s__Escherichia_coli	39.9256217262
+UniRef50_Q9JUD9: Sulfite reductase [NADPH] hemoprotein beta-component	39.9116680678
+UniRef50_Q9JUD9: Sulfite reductase [NADPH] hemoprotein beta-component|g__Escherichia.s__Escherichia_coli	38.1560945986
+UniRef50_Q9JUD9: Sulfite reductase [NADPH] hemoprotein beta-component|g__Neisseria.s__Neisseria_meningitidis	1.7555734691
+UniRef50_D3E1Y0: Fumarate hydratase FumA2	39.9088608274
+UniRef50_D3E1Y0: Fumarate hydratase FumA2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.9088608274
+UniRef50_Q04K89: Phosphopantothenate--cysteine ligase	39.8985121175
+UniRef50_Q04K89: Phosphopantothenate--cysteine ligase|g__Streptococcus.s__Streptococcus_mutans	35.5979311839
+UniRef50_Q04K89: Phosphopantothenate--cysteine ligase|g__Streptococcus.s__Streptococcus_agalactiae	4.3005809337
+UniRef50_Q60316: Formate dehydrogenase subunit beta	39.8942521182
+UniRef50_Q60316: Formate dehydrogenase subunit beta|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.8942521182
+UniRef50_R6RW73: ABC-type multidrug transport system ATPase component	39.8856346422
+UniRef50_R6RW73: ABC-type multidrug transport system ATPase component|g__Streptococcus.s__Streptococcus_mutans	39.8856346422
+UniRef50_Q3J2P2: Cytochrome c-554	39.8838157157
+UniRef50_Q3J2P2: Cytochrome c-554|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.8838157157
+UniRef50_O27543: 3,4-dihydroxy-2-butanone 4-phosphate synthase	39.8809803160
+UniRef50_O27543: 3,4-dihydroxy-2-butanone 4-phosphate synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.8809803160
+UniRef50_Q2LQB0: 50S ribosomal protein L14	39.8808580101
+UniRef50_Q2LQB0: 50S ribosomal protein L14|g__Staphylococcus.s__Staphylococcus_aureus	39.8808580101
+UniRef50_M7MCD8: Oxidoreductase, NAD-binding domain protein	39.8717729361
+UniRef50_M7MCD8: Oxidoreductase, NAD-binding domain protein|g__Streptococcus.s__Streptococcus_mutans	39.8717729361
+UniRef50_A8ACZ6: Xaa-Pro dipeptidase	39.8686076187
+UniRef50_A8ACZ6: Xaa-Pro dipeptidase|g__Escherichia.s__Escherichia_coli	39.8686076187
+UniRef50_I6T664	39.8552352382
+UniRef50_I6T664|g__Streptococcus.s__Streptococcus_mutans	39.8552352382
+UniRef50_F3U500: ABC branched chain amino acid transporter, inner membrane subunit	39.8507956820
+UniRef50_F3U500: ABC branched chain amino acid transporter, inner membrane subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.8507956820
+UniRef50_C6SU64	39.8452588729
+UniRef50_C6SU64|g__Streptococcus.s__Streptococcus_mutans	39.8452588729
+UniRef50_A0A037YU89	39.8441682475
+UniRef50_A0A037YU89|unclassified	39.8441682475
+UniRef50_P68999: tRNA-specific adenosine deaminase	39.8424181040
+UniRef50_P68999: tRNA-specific adenosine deaminase|g__Streptococcus.s__Streptococcus_mutans	31.6848532077
+UniRef50_P68999: tRNA-specific adenosine deaminase|g__Streptococcus.s__Streptococcus_agalactiae	8.0645161290
+UniRef50_P68999: tRNA-specific adenosine deaminase|unclassified	0.0930487673
+UniRef50_T0TEW3: Cysteine and methionine metabolism regulator CmbR, LysR family	39.8409082452
+UniRef50_T0TEW3: Cysteine and methionine metabolism regulator CmbR, LysR family|g__Streptococcus.s__Streptococcus_mutans	38.0519994796
+UniRef50_T0TEW3: Cysteine and methionine metabolism regulator CmbR, LysR family|g__Streptococcus.s__Streptococcus_agalactiae	1.7889087657
+UniRef50_F8HCR3: Pyrimidine-nucleoside phosphorylase	39.8382937225
+UniRef50_F8HCR3: Pyrimidine-nucleoside phosphorylase|g__Streptococcus.s__Streptococcus_mutans	39.8382937225
+UniRef50_P0ACA8: Glutathione S-transferase GstB	39.8235320753
+UniRef50_P0ACA8: Glutathione S-transferase GstB|g__Escherichia.s__Escherichia_coli	39.8235320753
+UniRef50_C6STR0	39.8176272197
+UniRef50_C6STR0|g__Streptococcus.s__Streptococcus_mutans	38.5371621677
+UniRef50_C6STR0|unclassified	1.2804650520
+UniRef50_Q8U2H9: Isopentenyl-diphosphate delta-isomerase	39.8145791469
+UniRef50_Q8U2H9: Isopentenyl-diphosphate delta-isomerase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.8145791469
+UniRef50_P77297	39.8018395623
+UniRef50_P77297|g__Escherichia.s__Escherichia_coli	39.8018395623
+UniRef50_Q46904: Probable electron transfer flavoprotein-quinone oxidoreductase YgcN	39.7958518442
+UniRef50_Q46904: Probable electron transfer flavoprotein-quinone oxidoreductase YgcN|g__Escherichia.s__Escherichia_coli	39.7958518442
+UniRef50_P50456: Protein mlc	39.7921371477
+UniRef50_P50456: Protein mlc|g__Escherichia.s__Escherichia_coli	39.7921371477
+UniRef50_Q9Z661: Diaminopimelate decarboxylase	39.7855539605
+UniRef50_Q9Z661: Diaminopimelate decarboxylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.6822686935
+UniRef50_Q9Z661: Diaminopimelate decarboxylase|unclassified	0.1032852669
+UniRef50_Q58332	39.7786928147
+UniRef50_Q58332|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.7786928147
+UniRef50_M7DS31: Surfactin synthetase	39.7710917652
+UniRef50_M7DS31: Surfactin synthetase|g__Streptococcus.s__Streptococcus_mutans	39.7710917652
+UniRef50_Q2NH89: Replication factor C small subunit	39.7661671930
+UniRef50_Q2NH89: Replication factor C small subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.7661671930
+UniRef50_A5ULX2: Adhesin-like protein	39.7635023864
+UniRef50_A5ULX2: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.6758227302
+UniRef50_A5ULX2: Adhesin-like protein|unclassified	0.0876796562
+UniRef50_U3SR01	39.7625601916
+UniRef50_U3SR01|g__Streptococcus.s__Streptococcus_mutans	39.7625601916
+UniRef50_P0AFU4: Transcriptional regulatory protein GlrR	39.7587818548
+UniRef50_P0AFU4: Transcriptional regulatory protein GlrR|g__Escherichia.s__Escherichia_coli	39.7587818548
+UniRef50_I6TY61: ABC transporter ATP-binding protein	39.7569713190
+UniRef50_I6TY61: ABC transporter ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	39.7569713190
+UniRef50_Q58400: Putative hydrogenase expression/formation protein MJ0993	39.7505856201
+UniRef50_Q58400: Putative hydrogenase expression/formation protein MJ0993|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.7505856201
+UniRef50_E5V4A5: Cytochrome C biogenesis protein transmembrane protein	39.7425818818
+UniRef50_E5V4A5: Cytochrome C biogenesis protein transmembrane protein|g__Streptococcus.s__Streptococcus_mutans	39.7425818818
+UniRef50_Z1ADI7: Gluconate permease	39.7327699753
+UniRef50_Z1ADI7: Gluconate permease|g__Staphylococcus.s__Staphylococcus_aureus	39.7327699753
+UniRef50_F0TCJ5: Methyltransferase MtaA/CmuA family	39.7237486918
+UniRef50_F0TCJ5: Methyltransferase MtaA/CmuA family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.7237486918
+UniRef50_A5EBW8: ATP synthase subunit a 2	39.7223256138
+UniRef50_A5EBW8: ATP synthase subunit a 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.7223256138
+UniRef50_A4WUM0: HAD-superfamily hydrolase, subfamily IIA	39.7208667373
+UniRef50_A4WUM0: HAD-superfamily hydrolase, subfamily IIA|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.7208667373
+UniRef50_T0U2I3	39.7113758631
+UniRef50_T0U2I3|g__Staphylococcus.s__Staphylococcus_aureus	39.7113758631
+UniRef50_Q8Q0R3: Ribose-5-phosphate isomerase A	39.7111963849
+UniRef50_Q8Q0R3: Ribose-5-phosphate isomerase A|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.7111963849
+UniRef50_P75794: Putative pyruvate formate-lyase 3-activating enzyme	39.6662267319
+UniRef50_P75794: Putative pyruvate formate-lyase 3-activating enzyme|g__Escherichia.s__Escherichia_coli	39.6662267319
+UniRef50_P52993: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex	39.6561708504
+UniRef50_P52993: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.3032144665
+UniRef50_P52993: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|g__Deinococcus.s__Deinococcus_radiodurans	1.2804097311
+UniRef50_P52993: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|unclassified	0.0725466527
+UniRef50_A3PQ45	39.6464942303
+UniRef50_A3PQ45|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.2331621795
+UniRef50_A3PQ45|unclassified	1.4133320507
+UniRef50_A4WT88: Autoinducer-binding domain protein	39.6457758697
+UniRef50_A4WT88: Autoinducer-binding domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.6457758697
+UniRef50_P76268: Transcriptional regulator KdgR	39.6394596597
+UniRef50_P76268: Transcriptional regulator KdgR|g__Escherichia.s__Escherichia_coli	39.6394596597
+UniRef50_C5WG19: Phosphomevalonate kinase	39.6393582774
+UniRef50_C5WG19: Phosphomevalonate kinase|g__Streptococcus.s__Streptococcus_mutans	37.5689094337
+UniRef50_C5WG19: Phosphomevalonate kinase|g__Streptococcus.s__Streptococcus_agalactiae	2.0704488437
+UniRef50_R9SHV3: NH(3)-dependent NAD(+) synthetase	39.6304269498
+UniRef50_R9SHV3: NH(3)-dependent NAD(+) synthetase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.6304269498
+UniRef50_M9VGG3	39.6256788237
+UniRef50_M9VGG3|g__Propionibacterium.s__Propionibacterium_acnes	39.6256788237
+UniRef50_P65560	39.6247086362
+UniRef50_P65560|g__Escherichia.s__Escherichia_coli	39.6247086362
+UniRef50_A7MUU9: Glutamate-1-semialdehyde 2,1-aminomutase	39.6227133428
+UniRef50_A7MUU9: Glutamate-1-semialdehyde 2,1-aminomutase|g__Escherichia.s__Escherichia_coli	39.5334545924
+UniRef50_A7MUU9: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0892587504
+UniRef50_P02918: Penicillin-binding protein 1A	39.6107656269
+UniRef50_P02918: Penicillin-binding protein 1A|g__Escherichia.s__Escherichia_coli	39.6107656269
+UniRef50_P0DF46: Ribosomal RNA small subunit methyltransferase I	39.6082633210
+UniRef50_P0DF46: Ribosomal RNA small subunit methyltransferase I|g__Streptococcus.s__Streptococcus_mutans	39.4437648604
+UniRef50_P0DF46: Ribosomal RNA small subunit methyltransferase I|unclassified	0.1644984607
+UniRef50_P0AF33: Respiratory nitrate reductase 2 gamma chain	39.6053253114
+UniRef50_P0AF33: Respiratory nitrate reductase 2 gamma chain|g__Escherichia.s__Escherichia_coli	39.6053253114
+UniRef50_Q9I425: Cytochrome bo(3) ubiquinol oxidase subunit 3	39.6000405943
+UniRef50_Q9I425: Cytochrome bo(3) ubiquinol oxidase subunit 3|g__Escherichia.s__Escherichia_coli	39.6000405943
+UniRef50_G5JYJ7: Phosphatidate cytidylyltransferase-like protein	39.5949293891
+UniRef50_G5JYJ7: Phosphatidate cytidylyltransferase-like protein|g__Streptococcus.s__Streptococcus_mutans	39.5949293891
+UniRef50_K4SCN9: tRNA(Ile)-lysidine synthase	39.5874056053
+UniRef50_K4SCN9: tRNA(Ile)-lysidine synthase|g__Escherichia.s__Escherichia_coli	39.5874056053
+UniRef50_A3PFZ9: DNA translocase FtsK	39.5776286480
+UniRef50_A3PFZ9: DNA translocase FtsK|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.5776286480
+UniRef50_P31443	39.5769879788
+UniRef50_P31443|g__Escherichia.s__Escherichia_coli	39.5769879788
+UniRef50_P37906: Gamma-glutamylputrescine oxidoreductase	39.5692646312
+UniRef50_P37906: Gamma-glutamylputrescine oxidoreductase|g__Escherichia.s__Escherichia_coli	39.1970308816
+UniRef50_P37906: Gamma-glutamylputrescine oxidoreductase|unclassified	0.3722337496
+UniRef50_P39208: Thermosensitive gluconokinase	39.5625370497
+UniRef50_P39208: Thermosensitive gluconokinase|g__Escherichia.s__Escherichia_coli	39.4621883508
+UniRef50_P39208: Thermosensitive gluconokinase|unclassified	0.1003486989
+UniRef50_A7X538	39.5593988706
+UniRef50_A7X538|g__Staphylococcus.s__Staphylococcus_aureus	39.5593988706
+UniRef50_Q9CHW5: Phosphoserine aminotransferase	39.5553163473
+UniRef50_Q9CHW5: Phosphoserine aminotransferase|g__Streptococcus.s__Streptococcus_mutans	39.5553163473
+UniRef50_S5XZ35: N-carbamoyl-L-amino-acid hydrolase	39.5459761984
+UniRef50_S5XZ35: N-carbamoyl-L-amino-acid hydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.5459761984
+UniRef50_A5UM43: Energy-converting hydrogenase B, subunit K, EhbK	39.5145346841
+UniRef50_A5UM43: Energy-converting hydrogenase B, subunit K, EhbK|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.5145346841
+UniRef50_C4ZI69: Anthranilate phosphoribosyltransferase	39.5076901772
+UniRef50_C4ZI69: Anthranilate phosphoribosyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.4514389585
+UniRef50_C4ZI69: Anthranilate phosphoribosyltransferase|unclassified	0.0562512187
+UniRef50_P23876: Ferric enterobactin transport system permease protein FepD	39.4980125541
+UniRef50_P23876: Ferric enterobactin transport system permease protein FepD|g__Escherichia.s__Escherichia_coli	39.4980125541
+UniRef50_G8REB9	39.4890049035
+UniRef50_G8REB9|g__Staphylococcus.s__Staphylococcus_aureus	39.4890049035
+UniRef50_I7DUX8: ABC transporter ATP-binding protein	39.4877967628
+UniRef50_I7DUX8: ABC transporter ATP-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.4877967628
+UniRef50_Q9CLV7: o-succinylbenzoate synthase	39.4865484263
+UniRef50_Q9CLV7: o-succinylbenzoate synthase|g__Escherichia.s__Escherichia_coli	39.4865484263
+UniRef50_P0A9U1	39.4853132330
+UniRef50_P0A9U1|g__Escherichia.s__Escherichia_coli	39.4853132330
+UniRef50_E6AYN5	39.4702345810
+UniRef50_E6AYN5|g__Escherichia.s__Escherichia_coli	39.4702345810
+UniRef50_P19930: Hydrogenase 1 maturation protease	39.4689534647
+UniRef50_P19930: Hydrogenase 1 maturation protease|g__Escherichia.s__Escherichia_coli	39.4689534647
+UniRef50_Q9CHM9: Glycogen synthase	39.4680333775
+UniRef50_Q9CHM9: Glycogen synthase|g__Streptococcus.s__Streptococcus_mutans	39.4680333775
+UniRef50_P75851: Putative aliphatic sulfonates transport permease protein SsuC	39.4629004815
+UniRef50_P75851: Putative aliphatic sulfonates transport permease protein SsuC|g__Escherichia.s__Escherichia_coli	39.4629004815
+UniRef50_Q58197	39.4614853740
+UniRef50_Q58197|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.4614853740
+UniRef50_A7ZTG3: Protein-export protein SecB	39.4582760979
+UniRef50_A7ZTG3: Protein-export protein SecB|g__Escherichia.s__Escherichia_coli	39.4582760979
+UniRef50_Q5HL55: Copper chaperone CopZ	39.4580245891
+UniRef50_Q5HL55: Copper chaperone CopZ|g__Staphylococcus.s__Staphylococcus_epidermidis	39.4580245891
+UniRef50_I6SUR3: Glucan-binding protein D	39.4500133084
+UniRef50_I6SUR3: Glucan-binding protein D|g__Streptococcus.s__Streptococcus_mutans	39.4500133084
+UniRef50_B9KR36: Two component transcriptional regulator, LuxR family	39.4459304082
+UniRef50_B9KR36: Two component transcriptional regulator, LuxR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.4459304082
+UniRef50_Q3J1K3: Cellulose synthase-like protein	39.4367113915
+UniRef50_Q3J1K3: Cellulose synthase-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.4367113915
+UniRef50_Q9CGD8: Homoserine dehydrogenase	39.4204283698
+UniRef50_Q9CGD8: Homoserine dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	37.9946131309
+UniRef50_Q9CGD8: Homoserine dehydrogenase|g__Streptococcus.s__Streptococcus_agalactiae	1.2254901961
+UniRef50_Q9CGD8: Homoserine dehydrogenase|unclassified	0.2003250428
+UniRef50_I0C5Y9: Phage protein	39.4096340139
+UniRef50_I0C5Y9: Phage protein|g__Staphylococcus.s__Staphylococcus_aureus	37.4551335142
+UniRef50_I0C5Y9: Phage protein|unclassified	1.9545004998
+UniRef50_X7F912: Malto-oligosyltrehalose trehalohydrolase	39.4008756214
+UniRef50_X7F912: Malto-oligosyltrehalose trehalohydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.4008756214
+UniRef50_E8SEA5: General stress protein 13	39.3873561833
+UniRef50_E8SEA5: General stress protein 13|g__Staphylococcus.s__Staphylococcus_epidermidis	23.2191667738
+UniRef50_E8SEA5: General stress protein 13|g__Staphylococcus.s__Staphylococcus_aureus	16.1681894096
+UniRef50_V9TW73	39.3697646590
+UniRef50_V9TW73|g__Pseudomonas.s__Pseudomonas_aeruginosa	39.3697646590
+UniRef50_Q8E0C9: Group B oligopeptidase PepB	39.3586877781
+UniRef50_Q8E0C9: Group B oligopeptidase PepB|g__Streptococcus.s__Streptococcus_mutans	37.3679949338
+UniRef50_Q8E0C9: Group B oligopeptidase PepB|g__Streptococcus.s__Streptococcus_agalactiae	1.8734716801
+UniRef50_Q8E0C9: Group B oligopeptidase PepB|unclassified	0.1172211643
+UniRef50_B7UM47: Nucleoid occlusion factor SlmA	39.3581214782
+UniRef50_B7UM47: Nucleoid occlusion factor SlmA|g__Escherichia.s__Escherichia_coli	39.3581214782
+UniRef50_P76190: Murein DD-endopeptidase MepH	39.3538245897
+UniRef50_P76190: Murein DD-endopeptidase MepH|g__Escherichia.s__Escherichia_coli	39.3538245897
+UniRef50_U3SRM8	39.3467230073
+UniRef50_U3SRM8|g__Streptococcus.s__Streptococcus_mutans	39.3467230073
+UniRef50_A4WQH8: Plasmid pRiA4b ORF-3 family protein	39.3443995922
+UniRef50_A4WQH8: Plasmid pRiA4b ORF-3 family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.6913147423
+UniRef50_A4WQH8: Plasmid pRiA4b ORF-3 family protein|unclassified	19.6530848499
+UniRef50_F7ZM05: Transcriptional repressor protein, GntR family	39.3257813682
+UniRef50_F7ZM05: Transcriptional repressor protein, GntR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.3257813682
+UniRef50_P04890: Integrase	39.3232152065
+UniRef50_P04890: Integrase|g__Escherichia.s__Escherichia_coli	39.3232152065
+UniRef50_D4MHB3: Predicted flavoprotein	39.2871865532
+UniRef50_D4MHB3: Predicted flavoprotein|g__Streptococcus.s__Streptococcus_mutans	38.3998751069
+UniRef50_D4MHB3: Predicted flavoprotein|g__Streptococcus.s__Streptococcus_agalactiae	0.8873114463
+UniRef50_A5F5D8: Cytosol aminopeptidase	39.2837427532
+UniRef50_A5F5D8: Cytosol aminopeptidase|g__Escherichia.s__Escherichia_coli	35.2499829195
+UniRef50_A5F5D8: Cytosol aminopeptidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0042221647
+UniRef50_A5F5D8: Cytosol aminopeptidase|unclassified	0.0295376689
+UniRef50_B9DV71: ABC transporter ATP-binding protein	39.2810734879
+UniRef50_B9DV71: ABC transporter ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	39.2810734879
+UniRef50_P19317: Probable nitrate reductase molybdenum cofactor assembly chaperone NarW	39.2600329093
+UniRef50_P19317: Probable nitrate reductase molybdenum cofactor assembly chaperone NarW|g__Escherichia.s__Escherichia_coli	39.2600329093
+UniRef50_Q5JEF8: Nicotinamide-nucleotide adenylyltransferase	39.2566674949
+UniRef50_Q5JEF8: Nicotinamide-nucleotide adenylyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.2566674949
+UniRef50_B0SHV0	39.2482282454
+UniRef50_B0SHV0|g__Streptococcus.s__Streptococcus_mutans	38.9987313478
+UniRef50_B0SHV0|unclassified	0.2494968976
+UniRef50_A5UK70: Fumarate reductase, iron-sulfur protein	39.2439989144
+UniRef50_A5UK70: Fumarate reductase, iron-sulfur protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.2439989144
+UniRef50_Q57935	39.2222875388
+UniRef50_Q57935|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.2222875388
+UniRef50_P00892: Acetolactate synthase isozyme 2 large subunit	39.1970678604
+UniRef50_P00892: Acetolactate synthase isozyme 2 large subunit|g__Escherichia.s__Escherichia_coli	38.6997990546
+UniRef50_P00892: Acetolactate synthase isozyme 2 large subunit|unclassified	0.4972688058
+UniRef50_G5JU10: Beta-lactamase	39.1850803477
+UniRef50_G5JU10: Beta-lactamase|g__Streptococcus.s__Streptococcus_mutans	39.1850803477
+UniRef50_Q6GJR0: UPF0355 protein MRSA252	39.1835590305
+UniRef50_Q6GJR0: UPF0355 protein MRSA252|g__Staphylococcus.s__Staphylococcus_aureus	39.1835590305
+UniRef50_G8V724: Hsp20/alpha crystallin family protein	39.1775535720
+UniRef50_G8V724: Hsp20/alpha crystallin family protein|g__Staphylococcus.s__Staphylococcus_aureus	39.1775535720
+UniRef50_Q165N5: Trimethylamine methyltransferase family protein	39.1757905635
+UniRef50_Q165N5: Trimethylamine methyltransferase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	39.1757905635
+UniRef50_P0AG14: Probable protease SohB	39.1754812413
+UniRef50_P0AG14: Probable protease SohB|g__Escherichia.s__Escherichia_coli	33.8937213237
+UniRef50_P0AG14: Probable protease SohB|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2817599177
+UniRef50_P44431: DNA adenine methylase	39.1738309120
+UniRef50_P44431: DNA adenine methylase|g__Escherichia.s__Escherichia_coli	38.9240859054
+UniRef50_P44431: DNA adenine methylase|unclassified	0.2497450066
+UniRef50_B9KPM1	39.1722753152
+UniRef50_B9KPM1|unclassified	39.1722753152
+UniRef50_Q8DPZ3: Release factor glutamine methyltransferase	39.1710613795
+UniRef50_Q8DPZ3: Release factor glutamine methyltransferase|g__Streptococcus.s__Streptococcus_mutans	31.1852465996
+UniRef50_Q8DPZ3: Release factor glutamine methyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	7.8207359440
+UniRef50_Q8DPZ3: Release factor glutamine methyltransferase|unclassified	0.1650788359
+UniRef50_A4WP65	39.1633512250
+UniRef50_A4WP65|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.1746245032
+UniRef50_A4WP65|unclassified	2.9887267219
+UniRef50_Q5FIJ4: Elongation factor P 1	39.1620286402
+UniRef50_Q5FIJ4: Elongation factor P 1|g__Streptococcus.s__Streptococcus_mutans	39.0365447490
+UniRef50_Q5FIJ4: Elongation factor P 1|unclassified	0.1254838912
+UniRef50_Q31YD8: Erythronate-4-phosphate dehydrogenase	39.1566784231
+UniRef50_Q31YD8: Erythronate-4-phosphate dehydrogenase|g__Escherichia.s__Escherichia_coli	39.1566784231
+UniRef50_X2GNE3: Aconitate hydratase	39.1365867078
+UniRef50_X2GNE3: Aconitate hydratase|g__Streptococcus.s__Streptococcus_mutans	39.1365867078
+UniRef50_Q2NGB7: Transporter	39.1363550655
+UniRef50_Q2NGB7: Transporter|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.1363550655
+UniRef50_P0ACQ6: Hydrogen peroxide-inducible genes activator	39.1325296717
+UniRef50_P0ACQ6: Hydrogen peroxide-inducible genes activator|g__Escherichia.s__Escherichia_coli	39.1325296717
+UniRef50_X5JZY6: ABC transporter, ATP-binding protein	39.1251433887
+UniRef50_X5JZY6: ABC transporter, ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	37.5200069521
+UniRef50_X5JZY6: ABC transporter, ATP-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	1.6051364366
+UniRef50_Q6D7M7: Octanoyltransferase	39.1211215855
+UniRef50_Q6D7M7: Octanoyltransferase|g__Escherichia.s__Escherichia_coli	39.1211215855
+UniRef50_Q8CN10: PTS enzyme II glucose-specific factor IIABC component	39.1175635742
+UniRef50_Q8CN10: PTS enzyme II glucose-specific factor IIABC component|g__Staphylococcus.s__Staphylococcus_epidermidis	37.7967669272
+UniRef50_Q8CN10: PTS enzyme II glucose-specific factor IIABC component|unclassified	1.3207966470
+UniRef50_A1B1F2: UDP-3-O-acylglucosamine N-acyltransferase	39.1086266366
+UniRef50_A1B1F2: UDP-3-O-acylglucosamine N-acyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.9585517901
+UniRef50_A1B1F2: UDP-3-O-acylglucosamine N-acyltransferase|unclassified	0.1500748465
+UniRef50_V2EJX2: Proline-specific permease	39.1003704342
+UniRef50_V2EJX2: Proline-specific permease|g__Escherichia.s__Escherichia_coli	39.1003704342
+UniRef50_Q46851: L-glyceraldehyde 3-phosphate reductase	39.1003543850
+UniRef50_Q46851: L-glyceraldehyde 3-phosphate reductase|g__Escherichia.s__Escherichia_coli	32.8700565157
+UniRef50_Q46851: L-glyceraldehyde 3-phosphate reductase|g__Propionibacterium.s__Propionibacterium_acnes	6.2302978693
+UniRef50_Q8DT20	39.0940535425
+UniRef50_Q8DT20|g__Streptococcus.s__Streptococcus_mutans	39.0940535425
+UniRef50_Q4UY06: Sulfate adenylyltransferase subunit 2	39.0852955359
+UniRef50_Q4UY06: Sulfate adenylyltransferase subunit 2|g__Escherichia.s__Escherichia_coli	27.4780279096
+UniRef50_Q4UY06: Sulfate adenylyltransferase subunit 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2986955898
+UniRef50_Q4UY06: Sulfate adenylyltransferase subunit 2|g__Clostridium.s__Clostridium_beijerinckii	1.2048192771
+UniRef50_Q4UY06: Sulfate adenylyltransferase subunit 2|g__Acinetobacter.s__Acinetobacter_baumannii	1.1037527594
+UniRef50_O26664	39.0681017790
+UniRef50_O26664|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.0681017790
+UniRef50_A5UN19: Formate dehydrogenase accessory protein FdhD, FdhD	39.0639967418
+UniRef50_A5UN19: Formate dehydrogenase accessory protein FdhD, FdhD|g__Methanobrevibacter.s__Methanobrevibacter_smithii	39.0639967418
+UniRef50_A4VSJ2: ABC-type Mn2+/Zn2+ transport system, permease component	39.0637822467
+UniRef50_A4VSJ2: ABC-type Mn2+/Zn2+ transport system, permease component|g__Streptococcus.s__Streptococcus_mutans	37.8106494146
+UniRef50_A4VSJ2: ABC-type Mn2+/Zn2+ transport system, permease component|g__Streptococcus.s__Streptococcus_agalactiae	1.2531328321
+UniRef50_Q9CMC7: tRNA dimethylallyltransferase	39.0526110076
+UniRef50_Q9CMC7: tRNA dimethylallyltransferase|g__Escherichia.s__Escherichia_coli	39.0526110076
+UniRef50_B4EY85: DnaA regulatory inactivator Hda	39.0520606391
+UniRef50_B4EY85: DnaA regulatory inactivator Hda|g__Escherichia.s__Escherichia_coli	39.0520606391
+UniRef50_Q8X5L9: Endoglucanase	39.0501175258
+UniRef50_Q8X5L9: Endoglucanase|g__Escherichia.s__Escherichia_coli	39.0501175258
+UniRef50_J9YS58	39.0491440996
+UniRef50_J9YS58|g__Streptococcus.s__Streptococcus_mutans	39.0491440996
+UniRef50_F5ZJC0: PpGpp synthetase	39.0458843489
+UniRef50_F5ZJC0: PpGpp synthetase|g__Streptococcus.s__Streptococcus_mutans	39.0458843489
+UniRef50_Q04KA6	39.0283723782
+UniRef50_Q04KA6|g__Streptococcus.s__Streptococcus_mutans	39.0283723782
+UniRef50_I1ZKX0: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase	39.0205755159
+UniRef50_I1ZKX0: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase|g__Streptococcus.s__Streptococcus_mutans	39.0205755159
+UniRef50_T0TWG5: ABC-type multidrug transport system, ATPase component	39.0164412719
+UniRef50_T0TWG5: ABC-type multidrug transport system, ATPase component|g__Streptococcus.s__Streptococcus_mutans	39.0164412719
+UniRef50_A7X2C5: Extracellular matrix-binding protein EbhB	39.0128102783
+UniRef50_A7X2C5: Extracellular matrix-binding protein EbhB|g__Staphylococcus.s__Staphylococcus_aureus	39.0128102783
+UniRef50_P75937: Flagellar hook protein FlgE	39.0091572441
+UniRef50_P75937: Flagellar hook protein FlgE|g__Escherichia.s__Escherichia_coli	39.0091572441
+UniRef50_P42237: Probable glucarate transporter	39.0083501696
+UniRef50_P42237: Probable glucarate transporter|g__Escherichia.s__Escherichia_coli	36.6363619032
+UniRef50_P42237: Probable glucarate transporter|g__Acinetobacter.s__Acinetobacter_baumannii	2.3719882664
+UniRef50_P32687	38.9914112194
+UniRef50_P32687|g__Escherichia.s__Escherichia_coli	38.9914112194
+UniRef50_A6QIJ0	38.9861141507
+UniRef50_A6QIJ0|g__Staphylococcus.s__Staphylococcus_aureus	37.9783116397
+UniRef50_A6QIJ0|unclassified	1.0078025110
+UniRef50_Q3IVD1: 3-oxoadipate enol-lactonase	38.9857243913
+UniRef50_Q3IVD1: 3-oxoadipate enol-lactonase|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.9857243913
+UniRef50_A3LER3	38.9812465717
+UniRef50_A3LER3|g__Pseudomonas.s__Pseudomonas_aeruginosa	38.9812465717
+UniRef50_Q8PFF8: tRNA-dihydrouridine synthase A	38.9787312094
+UniRef50_Q8PFF8: tRNA-dihydrouridine synthase A|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.9787312094
+UniRef50_C9XTA5: Tat-linked quality control protein TatD	38.9655415737
+UniRef50_C9XTA5: Tat-linked quality control protein TatD|g__Escherichia.s__Escherichia_coli	38.7874014424
+UniRef50_C9XTA5: Tat-linked quality control protein TatD|unclassified	0.1781401313
+UniRef50_Q2GL45: 30S ribosomal protein S8	38.9635072199
+UniRef50_Q2GL45: 30S ribosomal protein S8|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.9635072199
+UniRef50_R9SIF8: NADPH-dependent FMN reductase	38.9605931243
+UniRef50_R9SIF8: NADPH-dependent FMN reductase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	38.9605931243
+UniRef50_R4ZW20: YfaA	38.9589804195
+UniRef50_R4ZW20: YfaA|g__Streptococcus.s__Streptococcus_mutans	36.9669485470
+UniRef50_R4ZW20: YfaA|g__Streptococcus.s__Streptococcus_agalactiae	1.9920318725
+UniRef50_F8HEX8: NADPH-dependent fmn reductase	38.9456400138
+UniRef50_F8HEX8: NADPH-dependent fmn reductase|g__Streptococcus.s__Streptococcus_mutans	38.9456400138
+UniRef50_Q98FZ6: Mlr3554 protein	38.9404817194
+UniRef50_Q98FZ6: Mlr3554 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.8144073602
+UniRef50_Q98FZ6: Mlr3554 protein|unclassified	0.1260743592
+UniRef50_B9KWE3: Methyl-accepting chemotaxis sensory transducer	38.9377130646
+UniRef50_B9KWE3: Methyl-accepting chemotaxis sensory transducer|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.9377130646
+UniRef50_P09738: Superoxide dismutase [Mn/Fe]	38.9282649621
+UniRef50_P09738: Superoxide dismutase [Mn/Fe]|g__Streptococcus.s__Streptococcus_mutans	38.9282649621
+UniRef50_Q88J90: Ribose import ATP-binding protein RbsA	38.9218514674
+UniRef50_Q88J90: Ribose import ATP-binding protein RbsA|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.6608572550
+UniRef50_Q88J90: Ribose import ATP-binding protein RbsA|unclassified	0.2609942123
+UniRef50_P30147: Hydroxypyruvate isomerase	38.9132518213
+UniRef50_P30147: Hydroxypyruvate isomerase|g__Escherichia.s__Escherichia_coli	38.9132518213
+UniRef50_A5UMV9: SsDNA-binding protein	38.9094178600
+UniRef50_A5UMV9: SsDNA-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	38.9094178600
+UniRef50_D0ZY51: Serine endoprotease DegS	38.9060983698
+UniRef50_D0ZY51: Serine endoprotease DegS|g__Escherichia.s__Escherichia_coli	37.8655156435
+UniRef50_D0ZY51: Serine endoprotease DegS|unclassified	1.0405827263
+UniRef50_P45550	38.8862150960
+UniRef50_P45550|g__Escherichia.s__Escherichia_coli	38.8862150960
+UniRef50_L7WXH7	38.8788735223
+UniRef50_L7WXH7|g__Staphylococcus.s__Staphylococcus_aureus	26.8982209460
+UniRef50_L7WXH7|g__Staphylococcus.s__Staphylococcus_epidermidis	11.9806525763
+UniRef50_A0A023VI11: Beta-lactamase	38.8768799107
+UniRef50_A0A023VI11: Beta-lactamase|g__Streptococcus.s__Streptococcus_mutans	38.8768799107
+UniRef50_D4HUM4	38.8753383820
+UniRef50_D4HUM4|g__Pseudomonas.s__Pseudomonas_aeruginosa	38.8753383820
+UniRef50_A3PKL4	38.8598381999
+UniRef50_A3PKL4|unclassified	22.7641746043
+UniRef50_A3PKL4|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.0956635957
+UniRef50_P23917: Fructokinase	38.8552084125
+UniRef50_P23917: Fructokinase|g__Escherichia.s__Escherichia_coli	38.8552084125
+UniRef50_Q5LZ45: Sensor histidine kinase (Homolog to HK11 Spn)	38.8530135627
+UniRef50_Q5LZ45: Sensor histidine kinase (Homolog to HK11 Spn)|g__Streptococcus.s__Streptococcus_mutans	38.8530135627
+UniRef50_Q60178: Delta-aminolevulinic acid dehydratase	38.8516338911
+UniRef50_Q60178: Delta-aminolevulinic acid dehydratase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.9312574689
+UniRef50_Q60178: Delta-aminolevulinic acid dehydratase|unclassified	0.9203764222
+UniRef50_B7UR12: Purine nucleoside phosphorylase DeoD-type	38.8509787673
+UniRef50_B7UR12: Purine nucleoside phosphorylase DeoD-type|g__Escherichia.s__Escherichia_coli	38.3820121375
+UniRef50_B7UR12: Purine nucleoside phosphorylase DeoD-type|unclassified	0.4689666298
+UniRef50_A8AYG2: ATP synthase gamma chain	38.8346317998
+UniRef50_A8AYG2: ATP synthase gamma chain|g__Streptococcus.s__Streptococcus_mutans	38.8346317998
+UniRef50_Q6FE61: NADH dehydrogenase I chain L	38.8309306831
+UniRef50_Q6FE61: NADH dehydrogenase I chain L|g__Escherichia.s__Escherichia_coli	35.0252422788
+UniRef50_Q6FE61: NADH dehydrogenase I chain L|g__Acinetobacter.s__Acinetobacter_baumannii	3.8056884043
+UniRef50_Q8XAR8: UDP-N-acetylglucosamine 2-epimerase	38.8010407090
+UniRef50_Q8XAR8: UDP-N-acetylglucosamine 2-epimerase|g__Escherichia.s__Escherichia_coli	38.7473282695
+UniRef50_Q8XAR8: UDP-N-acetylglucosamine 2-epimerase|unclassified	0.0537124396
+UniRef50_P75828	38.7935504794
+UniRef50_P75828|g__Escherichia.s__Escherichia_coli	38.7935504794
+UniRef50_D3DZP8: CMP-N-acetylneuraminic acid synthetase NeuA	38.7922556779
+UniRef50_D3DZP8: CMP-N-acetylneuraminic acid synthetase NeuA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	38.7922556779
+UniRef50_S6B942	38.7906306057
+UniRef50_S6B942|g__Streptococcus.s__Streptococcus_mutans	38.7906306057
+UniRef50_W1VWR4	38.7902621156
+UniRef50_W1VWR4|unclassified	38.7902621156
+UniRef50_G8UZK4: Replication protein Rep	38.7887240823
+UniRef50_G8UZK4: Replication protein Rep|unclassified	38.7887240823
+UniRef50_Q2NG20: Predicted multimeric flavodoxin	38.7713014062
+UniRef50_Q2NG20: Predicted multimeric flavodoxin|g__Methanobrevibacter.s__Methanobrevibacter_smithii	38.7713014062
+UniRef50_Q830B9: Probable nicotinate-nucleotide adenylyltransferase	38.7696103859
+UniRef50_Q830B9: Probable nicotinate-nucleotide adenylyltransferase|g__Streptococcus.s__Streptococcus_mutans	38.7696103859
+UniRef50_P52130: Antitoxin RnlB	38.7634588772
+UniRef50_P52130: Antitoxin RnlB|g__Escherichia.s__Escherichia_coli	38.7634588772
+UniRef50_Q9KUI0: Sulfate/thiosulfate import ATP-binding protein CysA	38.7629121705
+UniRef50_Q9KUI0: Sulfate/thiosulfate import ATP-binding protein CysA|g__Escherichia.s__Escherichia_coli	37.7639581739
+UniRef50_Q9KUI0: Sulfate/thiosulfate import ATP-binding protein CysA|unclassified	0.9989539965
+UniRef50_I7EVV9: Protease DegQ	38.7563760602
+UniRef50_I7EVV9: Protease DegQ|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.7563760602
+UniRef50_C6STZ5	38.7559905522
+UniRef50_C6STZ5|g__Streptococcus.s__Streptococcus_mutans	38.7559905522
+UniRef50_B5R646: Allantoinase	38.7484087239
+UniRef50_B5R646: Allantoinase|g__Escherichia.s__Escherichia_coli	38.5956891532
+UniRef50_B5R646: Allantoinase|unclassified	0.1527195707
+UniRef50_Q2FHW8: UPF0358 protein SAUSA300_1012	38.7428086583
+UniRef50_Q2FHW8: UPF0358 protein SAUSA300_1012|g__Staphylococcus.s__Staphylococcus_aureus	25.5266814202
+UniRef50_Q2FHW8: UPF0358 protein SAUSA300_1012|g__Staphylococcus.s__Staphylococcus_epidermidis	13.2161272380
+UniRef50_X5KE03	38.7410591894
+UniRef50_X5KE03|g__Streptococcus.s__Streptococcus_mutans	38.7410591894
+UniRef50_M1IWL8	38.7346399918
+UniRef50_M1IWL8|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.7346399918
+UniRef50_Q0T1X7: 3-phenylpropionate/cinnamic acid dioxygenase ferredoxin--NAD(+) reductase component	38.7342768322
+UniRef50_Q0T1X7: 3-phenylpropionate/cinnamic acid dioxygenase ferredoxin--NAD(+) reductase component|g__Escherichia.s__Escherichia_coli	38.7342768322
+UniRef50_P31467: 6-phosphogluconate phosphatase	38.7337954062
+UniRef50_P31467: 6-phosphogluconate phosphatase|g__Escherichia.s__Escherichia_coli	38.7337954062
+UniRef50_A5UJA6: FO synthase subunit 2	38.7203598641
+UniRef50_A5UJA6: FO synthase subunit 2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	38.7203598641
+UniRef50_A3N1B7: Beta-hexosaminidase	38.7180370834
+UniRef50_A3N1B7: Beta-hexosaminidase|g__Escherichia.s__Escherichia_coli	38.6804465052
+UniRef50_A3N1B7: Beta-hexosaminidase|unclassified	0.0375905782
+UniRef50_A5UM22: Possible glycosyltransferase	38.7177720215
+UniRef50_A5UM22: Possible glycosyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	38.7177720215
+UniRef50_Q5XAE6: Biotin carboxyl carrier protein of acetyl-CoA carboxylase	38.7093026175
+UniRef50_Q5XAE6: Biotin carboxyl carrier protein of acetyl-CoA carboxylase|g__Streptococcus.s__Streptococcus_mutans	32.8949594096
+UniRef50_Q5XAE6: Biotin carboxyl carrier protein of acetyl-CoA carboxylase|g__Streptococcus.s__Streptococcus_agalactiae	4.0698877986
+UniRef50_Q5XAE6: Biotin carboxyl carrier protein of acetyl-CoA carboxylase|unclassified	1.7444554093
+UniRef50_D3DZN3: Heavy metal translocating P-type ATPase	38.6889686438
+UniRef50_D3DZN3: Heavy metal translocating P-type ATPase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.8572400046
+UniRef50_D3DZN3: Heavy metal translocating P-type ATPase|g__Clostridium.s__Clostridium_beijerinckii	4.8317286392
+UniRef50_Q1JBS9: Short chain dehydrogenase	38.6795753660
+UniRef50_Q1JBS9: Short chain dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	37.2750809840
+UniRef50_Q1JBS9: Short chain dehydrogenase|g__Helicobacter.s__Helicobacter_pylori	1.4044943820
+UniRef50_Q2FME4: Transport system permease protein	38.6748788175
+UniRef50_Q2FME4: Transport system permease protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	38.6748788175
+UniRef50_B0V6S4	38.6722649563
+UniRef50_B0V6S4|g__Streptococcus.s__Streptococcus_mutans	27.3750696516
+UniRef50_B0V6S4|g__Streptococcus.s__Streptococcus_agalactiae	6.8551468854
+UniRef50_B0V6S4|g__Acinetobacter.s__Acinetobacter_baumannii	4.4420484193
+UniRef50_X9LDU8	38.6653653283
+UniRef50_X9LDU8|g__Staphylococcus.s__Staphylococcus_aureus	38.0061040314
+UniRef50_X9LDU8|unclassified	0.6592612969
+UniRef50_P76470: Inner membrane transport protein RhmT	38.6609857156
+UniRef50_P76470: Inner membrane transport protein RhmT|g__Escherichia.s__Escherichia_coli	38.6609857156
+UniRef50_M7CYD5: Thioesterase	38.6220355416
+UniRef50_M7CYD5: Thioesterase|g__Streptococcus.s__Streptococcus_mutans	38.6220355416
+UniRef50_P18159: Phosphoglucomutase	38.6133877095
+UniRef50_P18159: Phosphoglucomutase|g__Streptococcus.s__Streptococcus_mutans	38.3714972117
+UniRef50_P18159: Phosphoglucomutase|unclassified	0.2418904977
+UniRef50_P0AFV3	38.6036762802
+UniRef50_P0AFV3|g__Escherichia.s__Escherichia_coli	38.6036762802
+UniRef50_P0ADU6: Protein YgiW	38.6006015309
+UniRef50_P0ADU6: Protein YgiW|g__Escherichia.s__Escherichia_coli	38.6006015309
+UniRef50_I6U2V2: Transcriptional regulator	38.5951880266
+UniRef50_I6U2V2: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	38.5951880266
+UniRef50_P0A1D0: Ethanolamine utilization protein EutL	38.5745241831
+UniRef50_P0A1D0: Ethanolamine utilization protein EutL|g__Escherichia.s__Escherichia_coli	38.5745241831
+UniRef50_A3PJL4: Invasion associated locus B family protein	38.5648155322
+UniRef50_A3PJL4: Invasion associated locus B family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.7572943263
+UniRef50_A3PJL4: Invasion associated locus B family protein|unclassified	2.8075212059
+UniRef50_A0A027RVP4	38.5516774328
+UniRef50_A0A027RVP4|g__Escherichia.s__Escherichia_coli	38.5516774328
+UniRef50_P0AGJ0: Trk system potassium uptake protein TrkA	38.5418638470
+UniRef50_P0AGJ0: Trk system potassium uptake protein TrkA|g__Escherichia.s__Escherichia_coli	33.1400966707
+UniRef50_P0AGJ0: Trk system potassium uptake protein TrkA|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4017671763
+UniRef50_B9KSN0	38.5410890249
+UniRef50_B9KSN0|unclassified	31.4488904434
+UniRef50_B9KSN0|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.0921985816
+UniRef50_D3E1C3	38.5255756157
+UniRef50_D3E1C3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	38.5255756157
+UniRef50_A3PGF4	38.5191909940
+UniRef50_A3PGF4|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.5191909940
+UniRef50_F5M2D5: Choline/ethanolamine kinase	38.5143576355
+UniRef50_F5M2D5: Choline/ethanolamine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.5143576355
+UniRef50_F0VXH5: ABC transporter permease protein	38.4717724216
+UniRef50_F0VXH5: ABC transporter permease protein|g__Streptococcus.s__Streptococcus_mutans	38.4717724216
+UniRef50_P0ABC8: Protein HflK	38.4640261061
+UniRef50_P0ABC8: Protein HflK|g__Escherichia.s__Escherichia_coli	38.4640261061
+UniRef50_A5UKS9: Elongation factor 1-beta	38.4615384615
+UniRef50_A5UKS9: Elongation factor 1-beta|g__Methanobrevibacter.s__Methanobrevibacter_smithii	38.4615384615
+UniRef50_A8Z2G4	38.4615384615
+UniRef50_A8Z2G4|g__Staphylococcus.s__Staphylococcus_aureus	38.4615384615
+UniRef50_Q0A9A9: 3-isopropylmalate dehydratase small subunit	38.4552593974
+UniRef50_Q0A9A9: 3-isopropylmalate dehydratase small subunit|g__Streptococcus.s__Streptococcus_mutans	38.1063008723
+UniRef50_Q0A9A9: 3-isopropylmalate dehydratase small subunit|unclassified	0.3489585251
+UniRef50_A4WQN8: Transcriptional regulator, BadM/Rrf2 family	38.4394939145
+UniRef50_A4WQN8: Transcriptional regulator, BadM/Rrf2 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.6310276524
+UniRef50_A4WQN8: Transcriptional regulator, BadM/Rrf2 family|unclassified	0.8084662621
+UniRef50_A4WS76: Multi-sensor signal transduction histidine kinase	38.4369437335
+UniRef50_A4WS76: Multi-sensor signal transduction histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.4369437335
+UniRef50_P55138	38.4352521594
+UniRef50_P55138|g__Escherichia.s__Escherichia_coli	38.4352521594
+UniRef50_UPI00016A69C6: hypothetical protein	38.4327139204
+UniRef50_UPI00016A69C6: hypothetical protein|unclassified	38.4327139204
+UniRef50_P00934: Threonine synthase	38.4163211770
+UniRef50_P00934: Threonine synthase|g__Escherichia.s__Escherichia_coli	38.3798667572
+UniRef50_P00934: Threonine synthase|unclassified	0.0364544198
+UniRef50_Q4L5J6: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	38.3962483698
+UniRef50_Q4L5J6: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	38.3962483698
+UniRef50_J7QB63: Phosphatidylserine decarboxylase	38.3918694307
+UniRef50_J7QB63: Phosphatidylserine decarboxylase|g__Escherichia.s__Escherichia_coli	38.3918694307
+UniRef50_Q97PK0: Putative GTP cyclohydrolase 1 type 2	38.3916652049
+UniRef50_Q97PK0: Putative GTP cyclohydrolase 1 type 2|g__Streptococcus.s__Streptococcus_mutans	38.0458680355
+UniRef50_Q97PK0: Putative GTP cyclohydrolase 1 type 2|unclassified	0.3457971695
+UniRef50_P19072: Branched-chain amino acid transport system 2 carrier protein	38.3852423016
+UniRef50_P19072: Branched-chain amino acid transport system 2 carrier protein|g__Escherichia.s__Escherichia_coli	27.7728621018
+UniRef50_P19072: Branched-chain amino acid transport system 2 carrier protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.6123801998
+UniRef50_D3E0R6: Chaperone protein DnaJ	38.3787264024
+UniRef50_D3E0R6: Chaperone protein DnaJ|g__Methanobrevibacter.s__Methanobrevibacter_smithii	38.3787264024
+UniRef50_C5WFH4: UDP-N-acetylmuramoylpentapeptide-lysine N(6)-alanyltransferase/UDP-N-acetylmuramoylpentapeptide-lysine N(6)-seryltransferase	38.3650199631
+UniRef50_C5WFH4: UDP-N-acetylmuramoylpentapeptide-lysine N(6)-alanyltransferase/UDP-N-acetylmuramoylpentapeptide-lysine N(6)-seryltransferase|g__Streptococcus.s__Streptococcus_mutans	38.3650199631
+UniRef50_Q9F664: UTP--glucose-1-phosphate uridylyltransferase	38.3594032521
+UniRef50_Q9F664: UTP--glucose-1-phosphate uridylyltransferase|g__Escherichia.s__Escherichia_coli	36.0798287383
+UniRef50_Q9F664: UTP--glucose-1-phosphate uridylyltransferase|unclassified	2.2795745138
+UniRef50_Q2NS15: DNA repair protein RecO	38.3579485533
+UniRef50_Q2NS15: DNA repair protein RecO|g__Escherichia.s__Escherichia_coli	38.3579485533
+UniRef50_P20753: Peptidyl-prolyl cis-trans isomerase A	38.3279582840
+UniRef50_P20753: Peptidyl-prolyl cis-trans isomerase A|g__Escherichia.s__Escherichia_coli	38.0281578375
+UniRef50_P20753: Peptidyl-prolyl cis-trans isomerase A|unclassified	0.2998004465
+UniRef50_P37017	38.3214377134
+UniRef50_P37017|g__Escherichia.s__Escherichia_coli	38.3214377134
+UniRef50_Q8DTW5	38.3103956943
+UniRef50_Q8DTW5|g__Streptococcus.s__Streptococcus_mutans	38.3103956943
+UniRef50_P44740: Probable tRNA (adenine(37)-N6)-methyltransferase	38.3046987167
+UniRef50_P44740: Probable tRNA (adenine(37)-N6)-methyltransferase|g__Escherichia.s__Escherichia_coli	38.3046987167
+UniRef50_P27254: Probable GTPase ArgK	38.3005537553
+UniRef50_P27254: Probable GTPase ArgK|g__Escherichia.s__Escherichia_coli	38.3005537553
+UniRef50_U5UFJ6	38.2987218536
+UniRef50_U5UFJ6|g__Streptococcus.s__Streptococcus_mutans	38.2987218536
+UniRef50_P71238: Putative colanic acid polymerase	38.2983455761
+UniRef50_P71238: Putative colanic acid polymerase|g__Escherichia.s__Escherichia_coli	38.1474981737
+UniRef50_P71238: Putative colanic acid polymerase|unclassified	0.1508474024
+UniRef50_A5UKM8	38.2933343270
+UniRef50_A5UKM8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	38.2933343270
+UniRef50_M9R8I3: Flagellar biosynthesis protein FlhA	38.2884618256
+UniRef50_M9R8I3: Flagellar biosynthesis protein FlhA|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.2884618256
+UniRef50_Q1GI12: Sarcosine oxidase alpha subunit family	38.2880731022
+UniRef50_Q1GI12: Sarcosine oxidase alpha subunit family|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.2880731022
+UniRef50_A8AM44	38.2879586621
+UniRef50_A8AM44|unclassified	38.2879586621
+UniRef50_B7V5G9: Diaminopimelate epimerase	38.2661278846
+UniRef50_B7V5G9: Diaminopimelate epimerase|g__Escherichia.s__Escherichia_coli	31.9988113888
+UniRef50_B7V5G9: Diaminopimelate epimerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5477211529
+UniRef50_B7V5G9: Diaminopimelate epimerase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3966480447
+UniRef50_B7V5G9: Diaminopimelate epimerase|unclassified	0.3229472983
+UniRef50_P0A4H7: Transcriptional regulatory protein CiaR	38.2570483143
+UniRef50_P0A4H7: Transcriptional regulatory protein CiaR|g__Streptococcus.s__Streptococcus_mutans	38.2570483143
+UniRef50_P45073: Lipopolysaccharide export system ATP-binding protein LptB	38.2485643462
+UniRef50_P45073: Lipopolysaccharide export system ATP-binding protein LptB|g__Escherichia.s__Escherichia_coli	30.7999881997
+UniRef50_P45073: Lipopolysaccharide export system ATP-binding protein LptB|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1399386325
+UniRef50_P45073: Lipopolysaccharide export system ATP-binding protein LptB|unclassified	0.3086375140
+UniRef50_Q3IV89	38.2471181355
+UniRef50_Q3IV89|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.0417269642
+UniRef50_Q3IV89|unclassified	13.2053911713
+UniRef50_O27762: Phosphate transporter permease PstC	38.2252668003
+UniRef50_O27762: Phosphate transporter permease PstC|g__Methanobrevibacter.s__Methanobrevibacter_smithii	38.2252668003
+UniRef50_A3PND3	38.2212516704
+UniRef50_A3PND3|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.1850792192
+UniRef50_A3PND3|unclassified	10.0361724512
+UniRef50_U5PB97: Glutamyl-tRNA synthetase	38.1981552322
+UniRef50_U5PB97: Glutamyl-tRNA synthetase|g__Streptococcus.s__Streptococcus_mutans	38.1981552322
+UniRef50_P0ACL6: Glc operon transcriptional activator	38.1933504792
+UniRef50_P0ACL6: Glc operon transcriptional activator|g__Escherichia.s__Escherichia_coli	38.1933504792
+UniRef50_A5UMD6: Imidazole glycerol phosphate synthase subunit HisH	38.1654027866
+UniRef50_A5UMD6: Imidazole glycerol phosphate synthase subunit HisH|g__Methanobrevibacter.s__Methanobrevibacter_smithii	38.1654027866
+UniRef50_P46125: Inner membrane protein YedI	38.1449800821
+UniRef50_P46125: Inner membrane protein YedI|g__Escherichia.s__Escherichia_coli	23.9884975162
+UniRef50_P46125: Inner membrane protein YedI|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.1564825659
+UniRef50_T1ZTW1: ABC transporter, permease protein	38.1442795618
+UniRef50_T1ZTW1: ABC transporter, permease protein|g__Streptococcus.s__Streptococcus_mutans	38.1442795618
+UniRef50_P17725: Citrate lyase subunit beta	38.1389841433
+UniRef50_P17725: Citrate lyase subunit beta|g__Streptococcus.s__Streptococcus_mutans	38.1389841433
+UniRef50_B5SL97: Choline dehydrogenase lipoprotein	38.1335844402
+UniRef50_B5SL97: Choline dehydrogenase lipoprotein|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.9833427836
+UniRef50_B5SL97: Choline dehydrogenase lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1502416566
+UniRef50_D3RZ99: Glutamate synthase alpha subunit domain protein	38.1310030820
+UniRef50_D3RZ99: Glutamate synthase alpha subunit domain protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	38.1310030820
+UniRef50_I6TP65: LrgA family protein	38.1225823129
+UniRef50_I6TP65: LrgA family protein|g__Streptococcus.s__Streptococcus_mutans	38.1225823129
+UniRef50_A0A023KUE4: Transferase	38.1206470817
+UniRef50_A0A023KUE4: Transferase|g__Escherichia.s__Escherichia_coli	38.1206470817
+UniRef50_Q8DSW4	38.1092661578
+UniRef50_Q8DSW4|g__Streptococcus.s__Streptococcus_mutans	38.1092661578
+UniRef50_Q5FNZ7: Cold shock protein	38.0950282181
+UniRef50_Q5FNZ7: Cold shock protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.0950282181
+UniRef50_M9R7V5: Cold shock protein	38.0926066838
+UniRef50_M9R7V5: Cold shock protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.0926066838
+UniRef50_C1CQV0: HAD-superfamily subfamily IIA hydrolase	38.0923121824
+UniRef50_C1CQV0: HAD-superfamily subfamily IIA hydrolase|g__Streptococcus.s__Streptococcus_mutans	36.7902288491
+UniRef50_C1CQV0: HAD-superfamily subfamily IIA hydrolase|g__Streptococcus.s__Streptococcus_agalactiae	1.3020833333
+UniRef50_Q8CSM5	38.0565996846
+UniRef50_Q8CSM5|g__Staphylococcus.s__Staphylococcus_epidermidis	38.0565996846
+UniRef50_Q8DTW2	38.0564487501
+UniRef50_Q8DTW2|g__Streptococcus.s__Streptococcus_mutans	38.0564487501
+UniRef50_P37769: 2-dehydro-3-deoxy-D-gluconate 5-dehydrogenase	38.0549818038
+UniRef50_P37769: 2-dehydro-3-deoxy-D-gluconate 5-dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	26.7697259954
+UniRef50_P37769: 2-dehydro-3-deoxy-D-gluconate 5-dehydrogenase|g__Escherichia.s__Escherichia_coli	11.2852558084
+UniRef50_Q167T4: Branched-chain amino acid ABC transporter, permease protein, putative	38.0497133607
+UniRef50_Q167T4: Branched-chain amino acid ABC transporter, permease protein, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.0497133607
+UniRef50_P0AFM7: Phage shock protein A	38.0455330422
+UniRef50_P0AFM7: Phage shock protein A|g__Escherichia.s__Escherichia_coli	38.0455330422
+UniRef50_W0N7A1: Urea ABC transporter ATP-binding protein	38.0349176851
+UniRef50_W0N7A1: Urea ABC transporter ATP-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	38.0349176851
+UniRef50_P76078: 1,2-phenylacetyl-CoA epoxidase, subunit B	38.0204713464
+UniRef50_P76078: 1,2-phenylacetyl-CoA epoxidase, subunit B|g__Escherichia.s__Escherichia_coli	38.0204713464
+UniRef50_Q5HRI6: SdrG protein	38.0176339551
+UniRef50_Q5HRI6: SdrG protein|g__Staphylococcus.s__Staphylococcus_epidermidis	38.0176339551
+UniRef50_P0ADL5	38.0089657107
+UniRef50_P0ADL5|g__Escherichia.s__Escherichia_coli	37.0660512754
+UniRef50_P0ADL5|unclassified	0.9429144353
+UniRef50_Q1GPC0: Adenylate kinase	38.0048722904
+UniRef50_Q1GPC0: Adenylate kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.8925007945
+UniRef50_Q1GPC0: Adenylate kinase|unclassified	0.1123714959
+UniRef50_P00935: Cystathionine gamma-synthase	38.0022621147
+UniRef50_P00935: Cystathionine gamma-synthase|g__Escherichia.s__Escherichia_coli	34.8550336570
+UniRef50_P00935: Cystathionine gamma-synthase|unclassified	3.1472284577
+UniRef50_Q5LX99: TPR domain protein	37.9976877731
+UniRef50_Q5LX99: TPR domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.9976877731
+UniRef50_P76012	37.9921900423
+UniRef50_P76012|g__Escherichia.s__Escherichia_coli	37.9921900423
+UniRef50_Q48656: Aminopeptidase N	37.9781237310
+UniRef50_Q48656: Aminopeptidase N|g__Streptococcus.s__Streptococcus_mutans	37.9781237310
+UniRef50_P23482: Hydrogenase-4 component B	37.9751466395
+UniRef50_P23482: Hydrogenase-4 component B|g__Escherichia.s__Escherichia_coli	37.8345133372
+UniRef50_P23482: Hydrogenase-4 component B|unclassified	0.1406333023
+UniRef50_Q8CUF1	37.9699810289
+UniRef50_Q8CUF1|unclassified	37.9699810289
+UniRef50_B1JX98: Serine--tRNA ligase	37.9586802991
+UniRef50_B1JX98: Serine--tRNA ligase|g__Escherichia.s__Escherichia_coli	35.6022129132
+UniRef50_B1JX98: Serine--tRNA ligase|g__Neisseria.s__Neisseria_meningitidis	2.1460188384
+UniRef50_B1JX98: Serine--tRNA ligase|unclassified	0.2104485474
+UniRef50_P77378: Putative electron transfer flavoprotein subunit YdiR	37.9515603795
+UniRef50_P77378: Putative electron transfer flavoprotein subunit YdiR|g__Escherichia.s__Escherichia_coli	37.9515603795
+UniRef50_A5UMT9: Glycosyltransferase, GT2 family	37.9500420244
+UniRef50_A5UMT9: Glycosyltransferase, GT2 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.9500420244
+UniRef50_P0AEI0: Inner membrane protein YjiG	37.9476165087
+UniRef50_P0AEI0: Inner membrane protein YjiG|g__Escherichia.s__Escherichia_coli	37.9476165087
+UniRef50_P0AFN4: Phage shock protein C	37.9416282642
+UniRef50_P0AFN4: Phage shock protein C|g__Escherichia.s__Escherichia_coli	37.9416282642
+UniRef50_P0AA92	37.9392415449
+UniRef50_P0AA92|g__Escherichia.s__Escherichia_coli	37.9392415449
+UniRef50_A4WSX6: Pseudoazurin	37.9355184059
+UniRef50_A4WSX6: Pseudoazurin|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.9355184059
+UniRef50_P42850: Phosphoenolpyruvate synthase	37.9350687401
+UniRef50_P42850: Phosphoenolpyruvate synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.9112132818
+UniRef50_P42850: Phosphoenolpyruvate synthase|unclassified	0.0238554583
+UniRef50_C0RJC1: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	37.9345641232
+UniRef50_C0RJC1: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.8236206879
+UniRef50_C0RJC1: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|unclassified	0.1109434354
+UniRef50_P0AB26	37.9234027288
+UniRef50_P0AB26|g__Escherichia.s__Escherichia_coli	37.9234027288
+UniRef50_S5S8C8: Aldo/keto reductase protein	37.8881365004
+UniRef50_S5S8C8: Aldo/keto reductase protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.8881365004
+UniRef50_P0ACY5	37.8507722812
+UniRef50_P0ACY5|g__Escherichia.s__Escherichia_coli	32.4976525762
+UniRef50_P0ACY5|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3531197050
+UniRef50_A3CP60: Glycosyl transferase, putative	37.8329417421
+UniRef50_A3CP60: Glycosyl transferase, putative|g__Streptococcus.s__Streptococcus_mutans	32.6582491250
+UniRef50_A3CP60: Glycosyl transferase, putative|g__Streptococcus.s__Streptococcus_agalactiae	5.1746926172
+UniRef50_C6UK01: Chaperone protein HchA	37.8272323574
+UniRef50_C6UK01: Chaperone protein HchA|g__Escherichia.s__Escherichia_coli	37.8272323574
+UniRef50_O27218: UPF0051 protein MTH_1150	37.8255728205
+UniRef50_O27218: UPF0051 protein MTH_1150|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.8255728205
+UniRef50_Q8ET05: Ornithine carbamoyltransferase	37.8093133116
+UniRef50_Q8ET05: Ornithine carbamoyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.7686281501
+UniRef50_Q8ET05: Ornithine carbamoyltransferase|unclassified	0.0406851615
+UniRef50_P46853	37.8084279532
+UniRef50_P46853|g__Escherichia.s__Escherichia_coli	37.8084279532
+UniRef50_A4WV09: Heme NO binding domain protein	37.8028288449
+UniRef50_A4WV09: Heme NO binding domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.8028288449
+UniRef50_P80911: Indolepyruvate oxidoreductase subunit IorB	37.7969488057
+UniRef50_P80911: Indolepyruvate oxidoreductase subunit IorB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.7969488057
+UniRef50_A3PP97: Transcriptional regulator, AraC family	37.7868743762
+UniRef50_A3PP97: Transcriptional regulator, AraC family|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.7868743762
+UniRef50_P10768: S-formylglutathione hydrolase	37.7828918006
+UniRef50_P10768: S-formylglutathione hydrolase|g__Escherichia.s__Escherichia_coli	36.6754674212
+UniRef50_P10768: S-formylglutathione hydrolase|unclassified	1.1074243794
+UniRef50_P0AB87: L-fuculose phosphate aldolase	37.7424474373
+UniRef50_P0AB87: L-fuculose phosphate aldolase|g__Escherichia.s__Escherichia_coli	36.6940823846
+UniRef50_P0AB87: L-fuculose phosphate aldolase|unclassified	1.0483650527
+UniRef50_F0RKJ6: Transposase IS4 family protein	37.7384743140
+UniRef50_F0RKJ6: Transposase IS4 family protein|g__Deinococcus.s__Deinococcus_radiodurans	37.7384743140
+UniRef50_D3E1W2: Lactaldehyde dehydrogenase CofA	37.7367994500
+UniRef50_D3E1W2: Lactaldehyde dehydrogenase CofA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.7367994500
+UniRef50_Q9I7C4: DNA polymerase III subunit beta	37.7264672598
+UniRef50_Q9I7C4: DNA polymerase III subunit beta|g__Escherichia.s__Escherichia_coli	30.2669057720
+UniRef50_Q9I7C4: DNA polymerase III subunit beta|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3182338647
+UniRef50_Q9I7C4: DNA polymerase III subunit beta|g__Staphylococcus.s__Staphylococcus_aureus	2.1413276231
+UniRef50_A1JJ54: Autoinducer 2 import system permease protein LsrC	37.7263249521
+UniRef50_A1JJ54: Autoinducer 2 import system permease protein LsrC|g__Escherichia.s__Escherichia_coli	37.7263249521
+UniRef50_A4VHG9: tRNA N6-adenosine threonylcarbamoyltransferase	37.7128217123
+UniRef50_A4VHG9: tRNA N6-adenosine threonylcarbamoyltransferase|g__Escherichia.s__Escherichia_coli	29.3247253330
+UniRef50_A4VHG9: tRNA N6-adenosine threonylcarbamoyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3880963793
+UniRef50_V9VVE0: Gene transfer agent protein	37.7104036271
+UniRef50_V9VVE0: Gene transfer agent protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.6684785423
+UniRef50_V9VVE0: Gene transfer agent protein|unclassified	0.0419250847
+UniRef50_A0A011P347	37.6947676397
+UniRef50_A0A011P347|unclassified	37.6947676397
+UniRef50_P0A9S2: Lactaldehyde reductase	37.6907573162
+UniRef50_P0A9S2: Lactaldehyde reductase|g__Escherichia.s__Escherichia_coli	35.2955443527
+UniRef50_P0A9S2: Lactaldehyde reductase|g__Clostridium.s__Clostridium_beijerinckii	2.3952129635
+UniRef50_Q3Z396: Deferrochelatase/peroxidase EfeB	37.6797760240
+UniRef50_Q3Z396: Deferrochelatase/peroxidase EfeB|g__Escherichia.s__Escherichia_coli	37.2612971218
+UniRef50_Q3Z396: Deferrochelatase/peroxidase EfeB|unclassified	0.4184789021
+UniRef50_F6BFP8: CRISPR-associated protein Cas5 family	37.6677800744
+UniRef50_F6BFP8: CRISPR-associated protein Cas5 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.6677800744
+UniRef50_M9RDG8: Monovalent cation/proton antiporter subunit E	37.6555341492
+UniRef50_M9RDG8: Monovalent cation/proton antiporter subunit E|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.6555341492
+UniRef50_P75980: Putative protein BeeE from lambdoid prophage e14 region	37.6551672097
+UniRef50_P75980: Putative protein BeeE from lambdoid prophage e14 region|g__Escherichia.s__Escherichia_coli	37.6551672097
+UniRef50_Q54431: Signal recognition particle protein	37.6372511752
+UniRef50_Q54431: Signal recognition particle protein|g__Streptococcus.s__Streptococcus_mutans	36.9041133453
+UniRef50_Q54431: Signal recognition particle protein|g__Streptococcus.s__Streptococcus_agalactiae	0.7331378299
+UniRef50_P59210: Regulatory protein RecX	37.6338661167
+UniRef50_P59210: Regulatory protein RecX|g__Streptococcus.s__Streptococcus_mutans	37.6338661167
+UniRef50_P0A936: Membrane-bound lytic murein transglycosylase A	37.6275216821
+UniRef50_P0A936: Membrane-bound lytic murein transglycosylase A|g__Escherichia.s__Escherichia_coli	37.6275216821
+UniRef50_P45423	37.6270115682
+UniRef50_P45423|g__Escherichia.s__Escherichia_coli	37.6270115682
+UniRef50_P0A9J2: Ribonuclease G	37.6177135878
+UniRef50_P0A9J2: Ribonuclease G|g__Escherichia.s__Escherichia_coli	36.6020282328
+UniRef50_P0A9J2: Ribonuclease G|g__Acinetobacter.s__Acinetobacter_baumannii	0.9852216749
+UniRef50_P0A9J2: Ribonuclease G|unclassified	0.0304636801
+UniRef50_M7DMI2: Transcriptional regulator	37.6176271826
+UniRef50_M7DMI2: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	37.6176271826
+UniRef50_C1CRY7: S1 RNA binding domain protein	37.6166488514
+UniRef50_C1CRY7: S1 RNA binding domain protein|g__Streptococcus.s__Streptococcus_mutans	37.6166488514
+UniRef50_D0ZXP9: Methyl viologen resistance protein YddG	37.6132673171
+UniRef50_D0ZXP9: Methyl viologen resistance protein YddG|g__Escherichia.s__Escherichia_coli	37.6132673171
+UniRef50_Q12S01: 4-hydroxybenzoate octaprenyltransferase	37.6061413940
+UniRef50_Q12S01: 4-hydroxybenzoate octaprenyltransferase|g__Escherichia.s__Escherichia_coli	23.1704514683
+UniRef50_Q12S01: 4-hydroxybenzoate octaprenyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.4356899257
+UniRef50_A5UP68	37.6050586488
+UniRef50_A5UP68|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.6050586488
+UniRef50_A6WXJ2: Porphobilinogen deaminase	37.6047103861
+UniRef50_A6WXJ2: Porphobilinogen deaminase|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.2788167096
+UniRef50_A6WXJ2: Porphobilinogen deaminase|unclassified	0.3258936765
+UniRef50_B9KU25	37.5858550809
+UniRef50_B9KU25|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.5148453661
+UniRef50_B9KU25|unclassified	17.0710097147
+UniRef50_Q5HNZ6	37.5816993464
+UniRef50_Q5HNZ6|g__Staphylococcus.s__Staphylococcus_epidermidis	37.5816993464
+UniRef50_Q9CFZ5: Metal ABC transporter substrate-binding lipoprotein	37.5765006362
+UniRef50_Q9CFZ5: Metal ABC transporter substrate-binding lipoprotein|g__Streptococcus.s__Streptococcus_mutans	37.5765006362
+UniRef50_I3XFP9: Inosose dehydratase IolE	37.5696453564
+UniRef50_I3XFP9: Inosose dehydratase IolE|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.5696453564
+UniRef50_A5ULR1: Predicted phosphatidylglycerophosphatase A-related protein	37.5474876781
+UniRef50_A5ULR1: Predicted phosphatidylglycerophosphatase A-related protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.5474876781
+UniRef50_M4ZCL2: DNA polymerase III subunit delta	37.5287825064
+UniRef50_M4ZCL2: DNA polymerase III subunit delta|g__Streptococcus.s__Streptococcus_mutans	37.5287825064
+UniRef50_K0L612	37.5170749652
+UniRef50_K0L612|g__Staphylococcus.s__Staphylococcus_aureus	34.4262746015
+UniRef50_K0L612|unclassified	3.0908003637
+UniRef50_Q83MG9: Probable crotonobetaine/carnitine-CoA ligase	37.5057839412
+UniRef50_Q83MG9: Probable crotonobetaine/carnitine-CoA ligase|g__Escherichia.s__Escherichia_coli	37.5057839412
+UniRef50_P0AE93: Protein CreA	37.5047033808
+UniRef50_P0AE93: Protein CreA|g__Escherichia.s__Escherichia_coli	37.1148459384
+UniRef50_P0AE93: Protein CreA|unclassified	0.3898574424
+UniRef50_A0A011PEE7	37.5004284148
+UniRef50_A0A011PEE7|unclassified	37.5004284148
+UniRef50_I7EP81: Bifunctional adenosylcobalamin biosynthesis protein CobP	37.4798332636
+UniRef50_I7EP81: Bifunctional adenosylcobalamin biosynthesis protein CobP|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.4798332636
+UniRef50_Q13CP7: 2-deoxycytidine 5-triphosphate deaminase	37.4634657300
+UniRef50_Q13CP7: 2-deoxycytidine 5-triphosphate deaminase|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.4634657300
+UniRef50_B9KTW7	37.4619925177
+UniRef50_B9KTW7|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.9749159934
+UniRef50_B9KTW7|unclassified	0.4870765242
+UniRef50_I2J103: GatB/Yqey domain protein	37.4526068482
+UniRef50_I2J103: GatB/Yqey domain protein|g__Streptococcus.s__Streptococcus_mutans	37.4526068482
+UniRef50_P36638: Peptide transport system ATP-binding protein SapF	37.4470164314
+UniRef50_P36638: Peptide transport system ATP-binding protein SapF|g__Escherichia.s__Escherichia_coli	37.4470164314
+UniRef50_UPI00037D4258: hypothetical protein	37.4452801537
+UniRef50_UPI00037D4258: hypothetical protein|unclassified	37.4452801537
+UniRef50_F6D1U5: Sulfate-transporting ATPase	37.4107200963
+UniRef50_F6D1U5: Sulfate-transporting ATPase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.4107200963
+UniRef50_F8HDH3: N-acetyllactosaminide beta-1,6-N-acetylglucosaminyl-transferase	37.4089048169
+UniRef50_F8HDH3: N-acetyllactosaminide beta-1,6-N-acetylglucosaminyl-transferase|g__Streptococcus.s__Streptococcus_mutans	37.4089048169
+UniRef50_H4AW63	37.4016332040
+UniRef50_H4AW63|g__Staphylococcus.s__Staphylococcus_aureus	37.4016332040
+UniRef50_I5AX29: ABC-type multidrug transport system, ATPase and permease component	37.3630984290
+UniRef50_I5AX29: ABC-type multidrug transport system, ATPase and permease component|g__Streptococcus.s__Streptococcus_mutans	37.3630984290
+UniRef50_Q7BVT7	37.3588453334
+UniRef50_Q7BVT7|g__Staphylococcus.s__Staphylococcus_aureus	18.8778146918
+UniRef50_Q7BVT7|g__Staphylococcus.s__Staphylococcus_epidermidis	18.4810306417
+UniRef50_B2N0Z3: Anaerobic dimethyl sulfoxide reductase chain A	37.3407560578
+UniRef50_B2N0Z3: Anaerobic dimethyl sulfoxide reductase chain A|g__Escherichia.s__Escherichia_coli	37.3407560578
+UniRef50_I6T6D9: Glycerophosphoryl diester phosphodiesterase	37.3393411034
+UniRef50_I6T6D9: Glycerophosphoryl diester phosphodiesterase|g__Streptococcus.s__Streptococcus_mutans	37.3393411034
+UniRef50_P0A9L3: FKBP-type 22 kDa peptidyl-prolyl cis-trans isomerase	37.3392336264
+UniRef50_P0A9L3: FKBP-type 22 kDa peptidyl-prolyl cis-trans isomerase|g__Escherichia.s__Escherichia_coli	37.3392336264
+UniRef50_F0PCL5: Amino acid ABC transporter, amino acid-binding protein	37.3346157477
+UniRef50_F0PCL5: Amino acid ABC transporter, amino acid-binding protein|g__Streptococcus.s__Streptococcus_mutans	34.2582337739
+UniRef50_F0PCL5: Amino acid ABC transporter, amino acid-binding protein|g__Clostridium.s__Clostridium_beijerinckii	1.8248175182
+UniRef50_F0PCL5: Amino acid ABC transporter, amino acid-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	1.2515644556
+UniRef50_B0U620: Uracil-DNA glycosylase	37.3097751727
+UniRef50_B0U620: Uracil-DNA glycosylase|g__Streptococcus.s__Streptococcus_mutans	37.3097751727
+UniRef50_P32718: D-allose kinase	37.3086920671
+UniRef50_P32718: D-allose kinase|g__Escherichia.s__Escherichia_coli	37.3086920671
+UniRef50_D6GSS9: CRISPR-associated endonuclease Cas1	37.3043002370
+UniRef50_D6GSS9: CRISPR-associated endonuclease Cas1|g__Streptococcus.s__Streptococcus_mutans	37.3043002370
+UniRef50_R9SKF6: HEAT repeat-containing protein	37.3042023132
+UniRef50_R9SKF6: HEAT repeat-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.3042023132
+UniRef50_F3U3S2: Serine/threonine protein kinase	37.2843897172
+UniRef50_F3U3S2: Serine/threonine protein kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.2843897172
+UniRef50_Q8VRM3: Type II secretion system protein L	37.2652863411
+UniRef50_Q8VRM3: Type II secretion system protein L|g__Escherichia.s__Escherichia_coli	37.2652863411
+UniRef50_B7MHP0: Nicotinate phosphoribosyltransferase	37.2558106201
+UniRef50_B7MHP0: Nicotinate phosphoribosyltransferase|g__Escherichia.s__Escherichia_coli	37.0519652855
+UniRef50_B7MHP0: Nicotinate phosphoribosyltransferase|unclassified	0.2038453346
+UniRef50_I7EPE2: S-adenosylmethionine uptake transporter-like protein	37.2544031878
+UniRef50_I7EPE2: S-adenosylmethionine uptake transporter-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.2544031878
+UniRef50_Q9F1M9: UDP-N-acetylmuramate--L-alanine ligase	37.2461902847
+UniRef50_Q9F1M9: UDP-N-acetylmuramate--L-alanine ligase|g__Escherichia.s__Escherichia_coli	37.2461902847
+UniRef50_D5AS82: SsrA-binding protein	37.2440934371
+UniRef50_D5AS82: SsrA-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.2440934371
+UniRef50_Y3FJT1	37.2326303803
+UniRef50_Y3FJT1|g__Staphylococcus.s__Staphylococcus_aureus	37.2326303803
+UniRef50_A5IT97: Diacylglycerol kinase	37.2267397993
+UniRef50_A5IT97: Diacylglycerol kinase|g__Staphylococcus.s__Staphylococcus_epidermidis	25.5308333665
+UniRef50_A5IT97: Diacylglycerol kinase|g__Staphylococcus.s__Staphylococcus_aureus	11.6959064327
+UniRef50_B2IR65	37.2225810135
+UniRef50_B2IR65|g__Streptococcus.s__Streptococcus_mutans	37.2225810135
+UniRef50_B7N5W6: D-serine dehydratase	37.2213372856
+UniRef50_B7N5W6: D-serine dehydratase|g__Escherichia.s__Escherichia_coli	36.2925453364
+UniRef50_B7N5W6: D-serine dehydratase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8250825083
+UniRef50_B7N5W6: D-serine dehydratase|unclassified	0.1037094410
+UniRef50_Q2NFG5: Predicted phosphosugar isomerase	37.2087048560
+UniRef50_Q2NFG5: Predicted phosphosugar isomerase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.2087048560
+UniRef50_P12655: PTS system sucrose-specific EIIBCA component	37.2041416456
+UniRef50_P12655: PTS system sucrose-specific EIIBCA component|g__Streptococcus.s__Streptococcus_mutans	37.2041416456
+UniRef50_P52073: Glycolate oxidase subunit GlcE	37.1876507639
+UniRef50_P52073: Glycolate oxidase subunit GlcE|g__Escherichia.s__Escherichia_coli	37.1876507639
+UniRef50_B4TF25: Nitric oxide reductase FlRd-NAD(+) reductase	37.1854223619
+UniRef50_B4TF25: Nitric oxide reductase FlRd-NAD(+) reductase|g__Escherichia.s__Escherichia_coli	37.1854223619
+UniRef50_P77732	37.1795837546
+UniRef50_P77732|g__Escherichia.s__Escherichia_coli	37.1795837546
+UniRef50_Q2L2H8: 30S ribosomal protein S12	37.1645130451
+UniRef50_Q2L2H8: 30S ribosomal protein S12|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.0418536305
+UniRef50_Q2L2H8: 30S ribosomal protein S12|g__Streptococcus.s__Streptococcus_mutans	8.1226594146
+UniRef50_Q213B4: Aspartate racemase	37.1589318677
+UniRef50_Q213B4: Aspartate racemase|g__Streptococcus.s__Streptococcus_mutans	37.1589318677
+UniRef50_V4JQ05	37.1509225764
+UniRef50_V4JQ05|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.1509225764
+UniRef50_A2BIZ8: S-adenosylmethionine synthase	37.1459595976
+UniRef50_A2BIZ8: S-adenosylmethionine synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.1459595976
+UniRef50_Q3IVN1	37.1412461745
+UniRef50_Q3IVN1|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.7035891165
+UniRef50_Q3IVN1|unclassified	15.4376570581
+UniRef50_K4VRI7	37.1270671615
+UniRef50_K4VRI7|g__Escherichia.s__Escherichia_coli	37.1270671615
+UniRef50_P54746: Mannosylglycerate hydrolase	37.1258716402
+UniRef50_P54746: Mannosylglycerate hydrolase|g__Escherichia.s__Escherichia_coli	37.1258716402
+UniRef50_Q5M3Y0: Cell division protein	37.1169497132
+UniRef50_Q5M3Y0: Cell division protein|g__Streptococcus.s__Streptococcus_mutans	32.3284147909
+UniRef50_Q5M3Y0: Cell division protein|g__Streptococcus.s__Streptococcus_agalactiae	4.7885349223
+UniRef50_D3E0C1	37.1141176275
+UniRef50_D3E0C1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.1141176275
+UniRef50_Q04849: Nitrogen assimilation regulatory protein NtrX	37.1135511067
+UniRef50_Q04849: Nitrogen assimilation regulatory protein NtrX|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.1135511067
+UniRef50_Q9Z615: Ferredoxin--NADP reductase	37.1012264919
+UniRef50_Q9Z615: Ferredoxin--NADP reductase|g__Escherichia.s__Escherichia_coli	37.1012264919
+UniRef50_P45541: Protein FrlC	37.0967517094
+UniRef50_P45541: Protein FrlC|g__Escherichia.s__Escherichia_coli	37.0967517094
+UniRef50_Q2JLL9: LL-diaminopimelate aminotransferase	37.0953127947
+UniRef50_Q2JLL9: LL-diaminopimelate aminotransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.0953127947
+UniRef50_P17327: Glycine betaine/L-proline transport system permease protein ProW	37.0900969506
+UniRef50_P17327: Glycine betaine/L-proline transport system permease protein ProW|g__Escherichia.s__Escherichia_coli	37.0900969506
+UniRef50_P32125: Molybdopterin-guanine dinucleotide biosynthesis adapter protein	37.0675398158
+UniRef50_P32125: Molybdopterin-guanine dinucleotide biosynthesis adapter protein|g__Escherichia.s__Escherichia_coli	37.0675398158
+UniRef50_S6D840: Cobaltochelatase CobT	37.0611979936
+UniRef50_S6D840: Cobaltochelatase CobT|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.0611979936
+UniRef50_Q1GKI8: Peptidase M16-like protein	37.0539804041
+UniRef50_Q1GKI8: Peptidase M16-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.0539804041
+UniRef50_R7PSI9: Adhesin-like protein	37.0513819141
+UniRef50_R7PSI9: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.0513819141
+UniRef50_D8JXK3: Oxygen-independent coproporphyrinogen III oxidase	37.0455762068
+UniRef50_D8JXK3: Oxygen-independent coproporphyrinogen III oxidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	37.0455762068
+UniRef50_J9V1H0	37.0425142682
+UniRef50_J9V1H0|g__Staphylococcus.s__Staphylococcus_aureus	24.6968352558
+UniRef50_J9V1H0|unclassified	12.3456790123
+UniRef50_Q9L7S0: 3-sulfolactaldehyde reductase	37.0413110220
+UniRef50_Q9L7S0: 3-sulfolactaldehyde reductase|g__Escherichia.s__Escherichia_coli	37.0413110220
+UniRef50_A8Z4Z3	37.0370370370
+UniRef50_A8Z4Z3|g__Staphylococcus.s__Staphylococcus_aureus	37.0370370370
+UniRef50_B7UZR9	37.0370370370
+UniRef50_B7UZR9|g__Pseudomonas.s__Pseudomonas_aeruginosa	37.0370370370
+UniRef50_P0AE28: Protein AroM	37.0359724426
+UniRef50_P0AE28: Protein AroM|g__Escherichia.s__Escherichia_coli	37.0359724426
+UniRef50_A3CMD6: Cobalamin-independent methionine synthase II, putative	37.0266303276
+UniRef50_A3CMD6: Cobalamin-independent methionine synthase II, putative|g__Streptococcus.s__Streptococcus_mutans	37.0266303276
+UniRef50_R7PV41: Bacterial membrane flanked domain protein	37.0012899525
+UniRef50_R7PV41: Bacterial membrane flanked domain protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	37.0012899525
+UniRef50_P03023: Lactose operon repressor	36.9912943109
+UniRef50_P03023: Lactose operon repressor|g__Escherichia.s__Escherichia_coli	36.9912943109
+UniRef50_H3VIV1: Transposase, IS4-like family protein	36.9788729339
+UniRef50_H3VIV1: Transposase, IS4-like family protein|g__Staphylococcus.s__Staphylococcus_aureus	36.9788729339
+UniRef50_J3F9J8: Nicotinamide mononucleotide transporter	36.9738848255
+UniRef50_J3F9J8: Nicotinamide mononucleotide transporter|g__Streptococcus.s__Streptococcus_mutans	36.9738848255
+UniRef50_A5UP50	36.9647945818
+UniRef50_A5UP50|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.9647945818
+UniRef50_U4TH79	36.9639192247
+UniRef50_U4TH79|g__Streptococcus.s__Streptococcus_mutans	36.9639192247
+UniRef50_A5UMU7: Possible glycosyltransferase	36.9613711145
+UniRef50_A5UMU7: Possible glycosyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.9613711145
+UniRef50_D5AN32: Na+/solute symporter / histidine kinase	36.9596789111
+UniRef50_D5AN32: Na+/solute symporter / histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.9596789111
+UniRef50_Q8CWR6: Alpha-monoglucosyldiacylglycerol synthase	36.9553670105
+UniRef50_Q8CWR6: Alpha-monoglucosyldiacylglycerol synthase|g__Streptococcus.s__Streptococcus_mutans	33.2196091370
+UniRef50_Q8CWR6: Alpha-monoglucosyldiacylglycerol synthase|g__Streptococcus.s__Streptococcus_agalactiae	3.7357578735
+UniRef50_P65631: Membrane protein insertase YidC 1	36.9524457957
+UniRef50_P65631: Membrane protein insertase YidC 1|g__Streptococcus.s__Streptococcus_mutans	36.9524457957
+UniRef50_P21822: Methyl-accepting chemotaxis serine transducer	36.9424784024
+UniRef50_P21822: Methyl-accepting chemotaxis serine transducer|g__Escherichia.s__Escherichia_coli	36.9424784024
+UniRef50_Q46831	36.9362984259
+UniRef50_Q46831|g__Escherichia.s__Escherichia_coli	36.9362984259
+UniRef50_Q2P3J8: Imidazole glycerol phosphate synthase subunit HisF	36.9357155673
+UniRef50_Q2P3J8: Imidazole glycerol phosphate synthase subunit HisF|g__Escherichia.s__Escherichia_coli	36.7165103277
+UniRef50_Q2P3J8: Imidazole glycerol phosphate synthase subunit HisF|unclassified	0.2192052396
+UniRef50_Q28R93: Toxic anion resistance	36.9292610399
+UniRef50_Q28R93: Toxic anion resistance|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.9292610399
+UniRef50_C7ZS16: Membrane protein	36.9233380376
+UniRef50_C7ZS16: Membrane protein|g__Staphylococcus.s__Staphylococcus_aureus	29.9902405970
+UniRef50_C7ZS16: Membrane protein|unclassified	6.9330974406
+UniRef50_A4WZ48	36.9217983242
+UniRef50_A4WZ48|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.7127163944
+UniRef50_A4WZ48|unclassified	1.2090819297
+UniRef50_A3NI78	36.9122406097
+UniRef50_A3NI78|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.9122406097
+UniRef50_P0A9U5	36.9058004289
+UniRef50_P0A9U5|g__Escherichia.s__Escherichia_coli	32.2931882809
+UniRef50_P0A9U5|g__Neisseria.s__Neisseria_meningitidis	2.3154822284
+UniRef50_P0A9U5|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2971299196
+UniRef50_N4EZP0: FAD binding domain protein	36.9029798154
+UniRef50_N4EZP0: FAD binding domain protein|g__Escherichia.s__Escherichia_coli	36.9029798154
+UniRef50_A5UL31: Translation initiation factor 6	36.9026871478
+UniRef50_A5UL31: Translation initiation factor 6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.9026871478
+UniRef50_Q1M3I8	36.9009888892
+UniRef50_Q1M3I8|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.9009888892
+UniRef50_P00490: Maltodextrin phosphorylase	36.8977770977
+UniRef50_P00490: Maltodextrin phosphorylase|g__Escherichia.s__Escherichia_coli	36.8977770977
+UniRef50_D3QJ64: Thioredoxin	36.8950889199
+UniRef50_D3QJ64: Thioredoxin|g__Staphylococcus.s__Staphylococcus_epidermidis	22.0674407138
+UniRef50_D3QJ64: Thioredoxin|g__Staphylococcus.s__Staphylococcus_aureus	14.8276482061
+UniRef50_G5JXL5: Rod shape-determining protein MreD	36.8821091701
+UniRef50_G5JXL5: Rod shape-determining protein MreD|g__Streptococcus.s__Streptococcus_mutans	36.8821091701
+UniRef50_P24169: Ornithine decarboxylase, inducible	36.8794798262
+UniRef50_P24169: Ornithine decarboxylase, inducible|g__Escherichia.s__Escherichia_coli	36.8794798262
+UniRef50_H9UVF1: Short-chain dehydrogenase/reductase SDR	36.8746498888
+UniRef50_H9UVF1: Short-chain dehydrogenase/reductase SDR|g__Escherichia.s__Escherichia_coli	36.7911414386
+UniRef50_H9UVF1: Short-chain dehydrogenase/reductase SDR|unclassified	0.0835084501
+UniRef50_P77423: Hydrogenase-4 component H	36.8686761201
+UniRef50_P77423: Hydrogenase-4 component H|g__Escherichia.s__Escherichia_coli	36.8686761201
+UniRef50_S1HAB5: Peptidoglycan hydrolase flgJ	36.8601232982
+UniRef50_S1HAB5: Peptidoglycan hydrolase flgJ|g__Escherichia.s__Escherichia_coli	36.8601232982
+UniRef50_D2J9T7	36.8584775156
+UniRef50_D2J9T7|g__Staphylococcus.s__Staphylococcus_epidermidis	36.8584775156
+UniRef50_Q213M9: C4-dicarboxylate transport protein	36.8562840138
+UniRef50_Q213M9: C4-dicarboxylate transport protein|g__Escherichia.s__Escherichia_coli	36.8562840138
+UniRef50_C6C506: GCN5-related N-acetyltransferase	36.8518194016
+UniRef50_C6C506: GCN5-related N-acetyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.8518194016
+UniRef50_Q3J4J9: Ribonuclease E	36.8458440554
+UniRef50_Q3J4J9: Ribonuclease E|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.8458440554
+UniRef50_Q2NFU2: Glutamate--tRNA ligase	36.8455658633
+UniRef50_Q2NFU2: Glutamate--tRNA ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.8455658633
+UniRef50_A3PJ29: Cytochrome c, class I	36.8452728846
+UniRef50_A3PJ29: Cytochrome c, class I|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.8452728846
+UniRef50_E4P0V7: SerB Phosphoserine phosphatase	36.8442299597
+UniRef50_E4P0V7: SerB Phosphoserine phosphatase|g__Streptococcus.s__Streptococcus_mutans	36.8442299597
+UniRef50_A5UMV3: Polysaccharide/polyol phosphate ABC transporter, ATPase component	36.8416780109
+UniRef50_A5UMV3: Polysaccharide/polyol phosphate ABC transporter, ATPase component|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.8416780109
+UniRef50_J1AHN1: ZIP zinc transporter family protein	36.8409937474
+UniRef50_J1AHN1: ZIP zinc transporter family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	36.8409937474
+UniRef50_Q8XCW6: Protein SprT	36.8391824195
+UniRef50_Q8XCW6: Protein SprT|g__Escherichia.s__Escherichia_coli	36.8391824195
+UniRef50_W9B8I4: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	36.8226927771
+UniRef50_W9B8I4: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome|g__Escherichia.s__Escherichia_coli	36.8226927771
+UniRef50_Q8TYX3: HSP70 class molecular chaperones involved in cell morphogenesis	36.8172928347
+UniRef50_Q8TYX3: HSP70 class molecular chaperones involved in cell morphogenesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.8172928347
+UniRef50_P02929: Protein TonB	36.8073458264
+UniRef50_P02929: Protein TonB|g__Escherichia.s__Escherichia_coli	36.8073458264
+UniRef50_C5WHW2: Arginine repressor	36.7976338565
+UniRef50_C5WHW2: Arginine repressor|g__Streptococcus.s__Streptococcus_mutans	36.7976338565
+UniRef50_Q8CN85: Copper export proteins	36.7823239757
+UniRef50_Q8CN85: Copper export proteins|g__Staphylococcus.s__Staphylococcus_epidermidis	36.7823239757
+UniRef50_D8HCA4: ABC transporter, ATP-binding protein	36.7801576839
+UniRef50_D8HCA4: ABC transporter, ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	36.7801576839
+UniRef50_P07959: Methyl-coenzyme M reductase operon protein C	36.7739689181
+UniRef50_P07959: Methyl-coenzyme M reductase operon protein C|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.7739689181
+UniRef50_B7NMR0: Endonuclease 8	36.7726874576
+UniRef50_B7NMR0: Endonuclease 8|g__Escherichia.s__Escherichia_coli	36.7726874576
+UniRef50_A4WSI7	36.7696332811
+UniRef50_A4WSI7|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.5846784940
+UniRef50_A4WSI7|unclassified	4.1849547871
+UniRef50_P64558	36.7661922919
+UniRef50_P64558|g__Escherichia.s__Escherichia_coli	36.7661922919
+UniRef50_F6D3C6: 3H domain-containing protein	36.7630667220
+UniRef50_F6D3C6: 3H domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.7630667220
+UniRef50_Q5LX45: Membrane protein	36.7460313148
+UniRef50_Q5LX45: Membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.7460313148
+UniRef50_T0TSM6: Histidine kinase, putative	36.7163504169
+UniRef50_T0TSM6: Histidine kinase, putative|g__Streptococcus.s__Streptococcus_mutans	36.7163504169
+UniRef50_I7DP98: Two-component system response regulator	36.6922675374
+UniRef50_I7DP98: Two-component system response regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.6922675374
+UniRef50_P76422: Hydroxymethylpyrimidine/phosphomethylpyrimidine kinase	36.6909045747
+UniRef50_P76422: Hydroxymethylpyrimidine/phosphomethylpyrimidine kinase|g__Escherichia.s__Escherichia_coli	35.2650815595
+UniRef50_P76422: Hydroxymethylpyrimidine/phosphomethylpyrimidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.3531799729
+UniRef50_P76422: Hydroxymethylpyrimidine/phosphomethylpyrimidine kinase|unclassified	0.0726430423
+UniRef50_A5UL67: 50S ribosomal protein L30P	36.6863082355
+UniRef50_A5UL67: 50S ribosomal protein L30P|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.6863082355
+UniRef50_A5UMG8: Cell wall biosynthesis protein, MurD-like peptide ligase family	36.6796931535
+UniRef50_A5UMG8: Cell wall biosynthesis protein, MurD-like peptide ligase family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.6796931535
+UniRef50_Q8X6I1: HTH-type transcriptional regulator EcpR	36.6754221794
+UniRef50_Q8X6I1: HTH-type transcriptional regulator EcpR|g__Escherichia.s__Escherichia_coli	36.6754221794
+UniRef50_E2QG11: Receptor protein	36.6715772169
+UniRef50_E2QG11: Receptor protein|g__Escherichia.s__Escherichia_coli	36.6715772169
+UniRef50_A3CNP4: Transcriptional regulator GntR family	36.6390858964
+UniRef50_A3CNP4: Transcriptional regulator GntR family|g__Streptococcus.s__Streptococcus_mutans	36.6390858964
+UniRef50_Q7N1I3: Antitoxin HicB 1	36.6356614702
+UniRef50_Q7N1I3: Antitoxin HicB 1|g__Escherichia.s__Escherichia_coli	36.6356614702
+UniRef50_F2QCR4: ABC transporter, ATP-binding/permease protein	36.6344439759
+UniRef50_F2QCR4: ABC transporter, ATP-binding/permease protein|g__Streptococcus.s__Streptococcus_mutans	34.7295086895
+UniRef50_F2QCR4: ABC transporter, ATP-binding/permease protein|g__Streptococcus.s__Streptococcus_agalactiae	1.9049352864
+UniRef50_Q57840: DNA-directed RNA polymerase subunit E'	36.6229985875
+UniRef50_Q57840: DNA-directed RNA polymerase subunit E'|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.6229985875
+UniRef50_X1XJA7	36.6170020325
+UniRef50_X1XJA7|g__Escherichia.s__Escherichia_coli	36.6170020325
+UniRef50_B5F7X0: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	36.6136843332
+UniRef50_B5F7X0: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|g__Escherichia.s__Escherichia_coli	36.4750621611
+UniRef50_B5F7X0: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.1386221721
+UniRef50_L7VRM1: OadB	36.6075078097
+UniRef50_L7VRM1: OadB|g__Streptococcus.s__Streptococcus_mutans	36.6075078097
+UniRef50_P40709: Inner membrane protein YejM	36.5972502056
+UniRef50_P40709: Inner membrane protein YejM|g__Escherichia.s__Escherichia_coli	36.5972502056
+UniRef50_B5EPG1: PilT protein domain protein	36.5821062491
+UniRef50_B5EPG1: PilT protein domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.5821062491
+UniRef50_O27290: Inosine-5'-monophosphate dehydrogenase related protein I	36.5812389331
+UniRef50_O27290: Inosine-5'-monophosphate dehydrogenase related protein I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.5812389331
+UniRef50_P37439: PTS system glucose-specific EIICB component	36.5794087492
+UniRef50_P37439: PTS system glucose-specific EIICB component|g__Escherichia.s__Escherichia_coli	36.3708514678
+UniRef50_P37439: PTS system glucose-specific EIICB component|unclassified	0.2085572814
+UniRef50_P0A1G6: RNA polymerase-binding transcription factor DksA	36.5769777717
+UniRef50_P0A1G6: RNA polymerase-binding transcription factor DksA|g__Escherichia.s__Escherichia_coli	36.5769777717
+UniRef50_Q53143: Diheme cytochrome c-type	36.5753168647
+UniRef50_Q53143: Diheme cytochrome c-type|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.5753168647
+UniRef50_Q57947	36.5661672293
+UniRef50_Q57947|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.5661672293
+UniRef50_Q6N0X7: Short-chain dehydrogenase	36.5460819085
+UniRef50_Q6N0X7: Short-chain dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.5460819085
+UniRef50_D2N8C9: Membrane protein, putative	36.5374710851
+UniRef50_D2N8C9: Membrane protein, putative|g__Staphylococcus.s__Staphylococcus_aureus	36.5374710851
+UniRef50_Q46834: Putative type II secretion system C-type protein YghF	36.5356002372
+UniRef50_Q46834: Putative type II secretion system C-type protein YghF|g__Escherichia.s__Escherichia_coli	36.5356002372
+UniRef50_M2HS82: N-acetylmuramoyl-L-alanine amidase	36.5283030793
+UniRef50_M2HS82: N-acetylmuramoyl-L-alanine amidase|g__Streptococcus.s__Streptococcus_mutans	36.5283030793
+UniRef50_Q8DR50: Diphosphomevalonate decarboxylase	36.5253192614
+UniRef50_Q8DR50: Diphosphomevalonate decarboxylase|g__Streptococcus.s__Streptococcus_mutans	36.5253192614
+UniRef50_I6ST97: Transcriptional regulator	36.5169450208
+UniRef50_I6ST97: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	36.5169450208
+UniRef50_V5DMC9: Selenocysteine-specific translation elongation factor	36.5133343636
+UniRef50_V5DMC9: Selenocysteine-specific translation elongation factor|g__Escherichia.s__Escherichia_coli	36.5133343636
+UniRef50_I6STE7: Transcriptional regulator	36.5129802436
+UniRef50_I6STE7: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	36.5129802436
+UniRef50_O27465: Protein-L-isoaspartate methyltransferase homolog	36.5112935366
+UniRef50_O27465: Protein-L-isoaspartate methyltransferase homolog|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.5112935366
+UniRef50_A6LX54: Response regulator receiver protein	36.5079084875
+UniRef50_A6LX54: Response regulator receiver protein|g__Clostridium.s__Clostridium_beijerinckii	36.5079084875
+UniRef50_P0A9T2: D-3-phosphoglycerate dehydrogenase	36.5007334360
+UniRef50_P0A9T2: D-3-phosphoglycerate dehydrogenase|g__Escherichia.s__Escherichia_coli	29.3823173942
+UniRef50_P0A9T2: D-3-phosphoglycerate dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7388828635
+UniRef50_P0A9T2: D-3-phosphoglycerate dehydrogenase|unclassified	0.3795331783
+UniRef50_M0XBQ9	36.4992803583
+UniRef50_M0XBQ9|unclassified	36.4992803583
+UniRef50_P0A6G4: Nicotinamide-nucleotide amidohydrolase PncC	36.4960017289
+UniRef50_P0A6G4: Nicotinamide-nucleotide amidohydrolase PncC|g__Escherichia.s__Escherichia_coli	36.4960017289
+UniRef50_Q5HRU9	36.4890379234
+UniRef50_Q5HRU9|g__Staphylococcus.s__Staphylococcus_epidermidis	36.4890379234
+UniRef50_P0AFY4: Protein SanA	36.4836010533
+UniRef50_P0AFY4: Protein SanA|g__Escherichia.s__Escherichia_coli	36.4836010533
+UniRef50_P0A9T9	36.4572646201
+UniRef50_P0A9T9|g__Escherichia.s__Escherichia_coli	36.4572646201
+UniRef50_D3DZP5: Peptidase U62 family	36.4543673239
+UniRef50_D3DZP5: Peptidase U62 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.4543673239
+UniRef50_K4Q9Y1: ATP-dependent RNA helicase DBP2	36.4478219136
+UniRef50_K4Q9Y1: ATP-dependent RNA helicase DBP2|g__Streptococcus.s__Streptococcus_mutans	31.9876668355
+UniRef50_K4Q9Y1: ATP-dependent RNA helicase DBP2|g__Streptococcus.s__Streptococcus_agalactiae	4.4601550781
+UniRef50_G2T0A1	36.4403087531
+UniRef50_G2T0A1|g__Streptococcus.s__Streptococcus_mutans	36.4403087531
+UniRef50_T1YCU2: Siderophore synthase	36.4315282665
+UniRef50_T1YCU2: Siderophore synthase|g__Staphylococcus.s__Staphylococcus_aureus	36.4315282665
+UniRef50_A8GL06: TRAP dicarboxylate transporter, DctM subunit	36.4206394133
+UniRef50_A8GL06: TRAP dicarboxylate transporter, DctM subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.4206394133
+UniRef50_T1YBP6	36.4098475152
+UniRef50_T1YBP6|g__Staphylococcus.s__Staphylococcus_aureus	36.4098475152
+UniRef50_A5IU77	36.4008179959
+UniRef50_A5IU77|g__Staphylococcus.s__Staphylococcus_aureus	36.4008179959
+UniRef50_UPI00047C43F4: hypothetical protein	36.3998320520
+UniRef50_UPI00047C43F4: hypothetical protein|unclassified	36.3998320520
+UniRef50_P76161: Antitermination protein Q homolog from lambdoid prophage Qin	36.3800113033
+UniRef50_P76161: Antitermination protein Q homolog from lambdoid prophage Qin|g__Escherichia.s__Escherichia_coli	36.3800113033
+UniRef50_U3SVH6	36.3785475579
+UniRef50_U3SVH6|g__Streptococcus.s__Streptococcus_mutans	36.3785475579
+UniRef50_F4EG72: ABC-type polar amino acid transport system, ATPase component	36.3770951624
+UniRef50_F4EG72: ABC-type polar amino acid transport system, ATPase component|g__Streptococcus.s__Streptococcus_mutans	36.3770951624
+UniRef50_S6AU95: Transcriptional regulators	36.3748341127
+UniRef50_S6AU95: Transcriptional regulators|g__Streptococcus.s__Streptococcus_mutans	36.3748341127
+UniRef50_A7ZTE9: Mannitol-1-phosphate 5-dehydrogenase	36.3738649674
+UniRef50_A7ZTE9: Mannitol-1-phosphate 5-dehydrogenase|g__Escherichia.s__Escherichia_coli	35.8358257961
+UniRef50_A7ZTE9: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.5380391713
+UniRef50_G8LHY7	36.3658288093
+UniRef50_G8LHY7|g__Escherichia.s__Escherichia_coli	36.3658288093
+UniRef50_B4U5G1	36.3538960335
+UniRef50_B4U5G1|g__Streptococcus.s__Streptococcus_mutans	36.3538960335
+UniRef50_T0T503: Purine nucleoside phosphorylase	36.3413044572
+UniRef50_T0T503: Purine nucleoside phosphorylase|g__Streptococcus.s__Streptococcus_mutans	36.3413044572
+UniRef50_P27756: Alpha-galactosidase	36.3391023928
+UniRef50_P27756: Alpha-galactosidase|g__Streptococcus.s__Streptococcus_mutans	36.3391023928
+UniRef50_P62448: Imidazole glycerol phosphate synthase subunit HisH	36.3340772855
+UniRef50_P62448: Imidazole glycerol phosphate synthase subunit HisH|g__Escherichia.s__Escherichia_coli	35.8466966484
+UniRef50_P62448: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.4873806372
+UniRef50_I0C4V2: ComE operon protein 1	36.3317849221
+UniRef50_I0C4V2: ComE operon protein 1|g__Staphylococcus.s__Staphylococcus_aureus	36.3317849221
+UniRef50_D6SIG9	36.3238614391
+UniRef50_D6SIG9|g__Staphylococcus.s__Staphylococcus_aureus	35.9865860747
+UniRef50_D6SIG9|unclassified	0.3372753644
+UniRef50_P33915: Inner membrane ABC transporter permease protein YejE	36.3210872540
+UniRef50_P33915: Inner membrane ABC transporter permease protein YejE|g__Escherichia.s__Escherichia_coli	36.3210872540
+UniRef50_A9W6R8: Chaperone protein DnaJ	36.3156120044
+UniRef50_A9W6R8: Chaperone protein DnaJ|g__Escherichia.s__Escherichia_coli	30.5029214119
+UniRef50_A9W6R8: Chaperone protein DnaJ|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.7838840082
+UniRef50_A9W6R8: Chaperone protein DnaJ|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0288065844
+UniRef50_Q9KPA4: L-aspartate oxidase	36.3134193261
+UniRef50_Q9KPA4: L-aspartate oxidase|g__Escherichia.s__Escherichia_coli	27.8570445702
+UniRef50_Q9KPA4: L-aspartate oxidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.4123502473
+UniRef50_Q9KPA4: L-aspartate oxidase|unclassified	0.0440245087
+UniRef50_N2KX33: Permease family protein	36.3095578647
+UniRef50_N2KX33: Permease family protein|g__Escherichia.s__Escherichia_coli	36.3095578647
+UniRef50_C5N1T2	36.3087605705
+UniRef50_C5N1T2|g__Staphylococcus.s__Staphylococcus_aureus	36.3087605705
+UniRef50_O27701: Conserved protein	36.3053358183
+UniRef50_O27701: Conserved protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.3053358183
+UniRef50_P0A9R0: Aspartate-semialdehyde dehydrogenase	36.3040626971
+UniRef50_P0A9R0: Aspartate-semialdehyde dehydrogenase|g__Escherichia.s__Escherichia_coli	25.3538977067
+UniRef50_P0A9R0: Aspartate-semialdehyde dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.9017617503
+UniRef50_P0A9R0: Aspartate-semialdehyde dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	2.0484032401
+UniRef50_A2RED4: GntR family regulatory protein	36.3037855252
+UniRef50_A2RED4: GntR family regulatory protein|g__Streptococcus.s__Streptococcus_mutans	34.6145963360
+UniRef50_A2RED4: GntR family regulatory protein|g__Streptococcus.s__Streptococcus_agalactiae	1.6891891892
+UniRef50_A8AQ14: 5-keto-4-deoxy-D-glucarate aldolase	36.2946858129
+UniRef50_A8AQ14: 5-keto-4-deoxy-D-glucarate aldolase|g__Escherichia.s__Escherichia_coli	35.8627771961
+UniRef50_A8AQ14: 5-keto-4-deoxy-D-glucarate aldolase|unclassified	0.4319086168
+UniRef50_P0AC31: Cell division protein FtsX	36.2946582666
+UniRef50_P0AC31: Cell division protein FtsX|g__Escherichia.s__Escherichia_coli	36.2946582666
+UniRef50_Q8CNS4: Replication initiator protein A	36.2889774911
+UniRef50_Q8CNS4: Replication initiator protein A|g__Staphylococcus.s__Staphylococcus_epidermidis	36.2889774911
+UniRef50_Q8ZH39: D-methionine transport system permease protein MetI	36.2866603580
+UniRef50_Q8ZH39: D-methionine transport system permease protein MetI|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.2866603580
+UniRef50_C5N2R4	36.2845573092
+UniRef50_C5N2R4|g__Staphylococcus.s__Staphylococcus_aureus	36.2845573092
+UniRef50_Q46908: Putative electron transfer flavoprotein subunit YgcR	36.2764926211
+UniRef50_Q46908: Putative electron transfer flavoprotein subunit YgcR|g__Escherichia.s__Escherichia_coli	36.2764926211
+UniRef50_C6SPQ0	36.2744338321
+UniRef50_C6SPQ0|g__Streptococcus.s__Streptococcus_mutans	36.2744338321
+UniRef50_Q1R4J9	36.2718039158
+UniRef50_Q1R4J9|g__Escherichia.s__Escherichia_coli	35.8449665776
+UniRef50_Q1R4J9|unclassified	0.4268373382
+UniRef50_P77263: Probable fimbrial chaperone EcpE	36.2717863763
+UniRef50_P77263: Probable fimbrial chaperone EcpE|g__Escherichia.s__Escherichia_coli	36.2717863763
+UniRef50_G8QBH7: ImpD	36.2707875003
+UniRef50_G8QBH7: ImpD|g__Pseudomonas.s__Pseudomonas_aeruginosa	36.2707875003
+UniRef50_B5F095: UPF0194 membrane protein YbhG	36.2662125175
+UniRef50_B5F095: UPF0194 membrane protein YbhG|g__Escherichia.s__Escherichia_coli	36.2662125175
+UniRef50_Q3J6C1: Sensor histidine kinase RegB	36.2642884710
+UniRef50_Q3J6C1: Sensor histidine kinase RegB|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.2642884710
+UniRef50_A3PLM1: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase	36.2620327398
+UniRef50_A3PLM1: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	34.7881407845
+UniRef50_A3PLM1: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase|unclassified	1.4738919553
+UniRef50_I0C0P4: AzlD	36.2505438249
+UniRef50_I0C0P4: AzlD|g__Staphylococcus.s__Staphylococcus_epidermidis	23.2281147889
+UniRef50_I0C0P4: AzlD|g__Staphylococcus.s__Staphylococcus_aureus	9.5509357967
+UniRef50_I0C0P4: AzlD|unclassified	3.4714932392
+UniRef50_G2T8N1	36.2410044226
+UniRef50_G2T8N1|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.2410044226
+UniRef50_Q4ZWY8: Ribosome maturation factor RimM	36.2407862408
+UniRef50_Q4ZWY8: Ribosome maturation factor RimM|g__Pseudomonas.s__Pseudomonas_aeruginosa	36.2407862408
+UniRef50_E4PYJ4: Thiol-disulfide isomerase and thioredoxin	36.2370428528
+UniRef50_E4PYJ4: Thiol-disulfide isomerase and thioredoxin|g__Staphylococcus.s__Staphylococcus_epidermidis	27.5698158051
+UniRef50_E4PYJ4: Thiol-disulfide isomerase and thioredoxin|g__Staphylococcus.s__Staphylococcus_aureus	8.6672270477
+UniRef50_C7TGJ0: PTS system, IIC component	36.2171350648
+UniRef50_C7TGJ0: PTS system, IIC component|g__Streptococcus.s__Streptococcus_mutans	36.2171350648
+UniRef50_P0AEB4: D-alanyl-D-alanine carboxypeptidase DacA	36.2120608685
+UniRef50_P0AEB4: D-alanyl-D-alanine carboxypeptidase DacA|g__Escherichia.s__Escherichia_coli	36.2120608685
+UniRef50_P75976	36.2099586066
+UniRef50_P75976|g__Escherichia.s__Escherichia_coli	36.2099586066
+UniRef50_Q830B5: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha	36.2073190389
+UniRef50_Q830B5: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|g__Streptococcus.s__Streptococcus_mutans	36.2073190389
+UniRef50_P0AEW5: 3',5'-cyclic adenosine monophosphate phosphodiesterase CpdA	36.2035847972
+UniRef50_P0AEW5: 3',5'-cyclic adenosine monophosphate phosphodiesterase CpdA|g__Escherichia.s__Escherichia_coli	36.2035847972
+UniRef50_A5ULC5	36.2022453574
+UniRef50_A5ULC5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.2022453574
+UniRef50_R7PUS4: Adhesin-like protein	36.1975564309
+UniRef50_R7PUS4: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.1975564309
+UniRef50_P37461: Sensor protein ZraS	36.1939137779
+UniRef50_P37461: Sensor protein ZraS|g__Escherichia.s__Escherichia_coli	36.1274857612
+UniRef50_P37461: Sensor protein ZraS|unclassified	0.0664280167
+UniRef50_P28629: Biodegradative arginine decarboxylase	36.1835932436
+UniRef50_P28629: Biodegradative arginine decarboxylase|g__Escherichia.s__Escherichia_coli	36.1835932436
+UniRef50_P76482	36.1721748778
+UniRef50_P76482|g__Escherichia.s__Escherichia_coli	36.1721748778
+UniRef50_Q2RV04: GTPase Obg	36.1643197409
+UniRef50_Q2RV04: GTPase Obg|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.1643197409
+UniRef50_E8SEC7	36.1643081761
+UniRef50_E8SEC7|g__Staphylococcus.s__Staphylococcus_epidermidis	36.1643081761
+UniRef50_A8A338	36.1493916578
+UniRef50_A8A338|g__Escherichia.s__Escherichia_coli	19.7428728864
+UniRef50_A8A338|unclassified	16.4065187714
+UniRef50_F0VWI5: PTT family thiamin transporter	36.1433587481
+UniRef50_F0VWI5: PTT family thiamin transporter|g__Streptococcus.s__Streptococcus_mutans	36.1433587481
+UniRef50_A5UMJ1: Threonine--tRNA ligase	36.1426540685
+UniRef50_A5UMJ1: Threonine--tRNA ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.1426540685
+UniRef50_E6P0C6: Lipopolysaccharide biosynthesis protein, truncated protein	36.1318190443
+UniRef50_E6P0C6: Lipopolysaccharide biosynthesis protein, truncated protein|g__Escherichia.s__Escherichia_coli	36.1318190443
+UniRef50_Q9AC07: NifU-like domain protein	36.1309943680
+UniRef50_Q9AC07: NifU-like domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.1309943680
+UniRef50_B6ISJ0: Peptidase M20D, amidohydrolase, putative	36.1236816357
+UniRef50_B6ISJ0: Peptidase M20D, amidohydrolase, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.1236816357
+UniRef50_A7ZII5: Protoheme IX farnesyltransferase	36.1213728102
+UniRef50_A7ZII5: Protoheme IX farnesyltransferase|g__Escherichia.s__Escherichia_coli	35.6233400342
+UniRef50_A7ZII5: Protoheme IX farnesyltransferase|unclassified	0.4980327759
+UniRef50_Q3IV86: Putative signal peptide protein	36.1141118767
+UniRef50_Q3IV86: Putative signal peptide protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.4198614388
+UniRef50_Q3IV86: Putative signal peptide protein|unclassified	11.6942504379
+UniRef50_D2ZNU0	36.0985972275
+UniRef50_D2ZNU0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	36.0985972275
+UniRef50_I6TPZ0: Permease	36.0984310783
+UniRef50_I6TPZ0: Permease|g__Streptococcus.s__Streptococcus_mutans	36.0984310783
+UniRef50_Q0T0I4: Ribosomal RNA large subunit methyltransferase G	36.0975863321
+UniRef50_Q0T0I4: Ribosomal RNA large subunit methyltransferase G|g__Escherichia.s__Escherichia_coli	36.0975863321
+UniRef50_P0ABP1: Anaerobic C4-dicarboxylate transporter DcuB	36.0933669514
+UniRef50_P0ABP1: Anaerobic C4-dicarboxylate transporter DcuB|g__Escherichia.s__Escherichia_coli	36.0933669514
+UniRef50_G9Z7C4: Amine oxidase	36.0823452760
+UniRef50_G9Z7C4: Amine oxidase|g__Escherichia.s__Escherichia_coli	36.0823452760
+UniRef50_P15934: Flagellar assembly protein FliH	36.0624598548
+UniRef50_P15934: Flagellar assembly protein FliH|g__Escherichia.s__Escherichia_coli	36.0624598548
+UniRef50_P27375: Heat shock protein C	36.0612579048
+UniRef50_P27375: Heat shock protein C|g__Escherichia.s__Escherichia_coli	36.0612579048
+UniRef50_P31470	36.0603812910
+UniRef50_P31470|g__Escherichia.s__Escherichia_coli	36.0603812910
+UniRef50_P76395	36.0602927869
+UniRef50_P76395|g__Escherichia.s__Escherichia_coli	36.0602927869
+UniRef50_P32134	36.0535111312
+UniRef50_P32134|g__Escherichia.s__Escherichia_coli	36.0535111312
+UniRef50_A6V3R5: Transcriptional regulator, MarR family	36.0498253355
+UniRef50_A6V3R5: Transcriptional regulator, MarR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	36.0498253355
+UniRef50_B2II05: ABC transporter related	36.0444900853
+UniRef50_B2II05: ABC transporter related|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.0444900853
+UniRef50_G0AA04: Sulfate-binding protein sbp	36.0432426015
+UniRef50_G0AA04: Sulfate-binding protein sbp|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.6101201684
+UniRef50_G0AA04: Sulfate-binding protein sbp|g__Acinetobacter.s__Acinetobacter_baumannii	2.4331224331
+UniRef50_P0A207: Ethanolamine utilization protein EutJ	36.0321421417
+UniRef50_P0A207: Ethanolamine utilization protein EutJ|g__Escherichia.s__Escherichia_coli	35.8090634365
+UniRef50_P0A207: Ethanolamine utilization protein EutJ|unclassified	0.2230787052
+UniRef50_F0VS21: Rhamnosyltransferase	36.0320606139
+UniRef50_F0VS21: Rhamnosyltransferase|g__Streptococcus.s__Streptococcus_mutans	36.0320606139
+UniRef50_Q5DXZ5: Lateral flagellar motor protein B (MotB-like)	36.0260674995
+UniRef50_Q5DXZ5: Lateral flagellar motor protein B (MotB-like)|g__Escherichia.s__Escherichia_coli	36.0260674995
+UniRef50_A3PK94: 30S ribosomal protein S9	36.0217512169
+UniRef50_A3PK94: 30S ribosomal protein S9|g__Rhodobacter.s__Rhodobacter_sphaeroides	36.0217512169
+UniRef50_G0LSM2: Phage protein	36.0174949081
+UniRef50_G0LSM2: Phage protein|g__Staphylococcus.s__Staphylococcus_aureus	33.3305631159
+UniRef50_G0LSM2: Phage protein|unclassified	2.6869317922
+UniRef50_R4ZLZ8: CRISPR-associated protein, Csd1 family	36.0098970195
+UniRef50_R4ZLZ8: CRISPR-associated protein, Csd1 family|g__Streptococcus.s__Streptococcus_mutans	36.0098970195
+UniRef50_Q57PU8: Phenylalanine--tRNA ligase beta subunit	36.0097401963
+UniRef50_Q57PU8: Phenylalanine--tRNA ligase beta subunit|g__Escherichia.s__Escherichia_coli	35.8472261497
+UniRef50_Q57PU8: Phenylalanine--tRNA ligase beta subunit|unclassified	0.1625140465
+UniRef50_C6SQM5	35.9949901688
+UniRef50_C6SQM5|g__Streptococcus.s__Streptococcus_mutans	35.8646028371
+UniRef50_C6SQM5|unclassified	0.1303873317
+UniRef50_J7D104	35.9853581056
+UniRef50_J7D104|unclassified	35.9853581056
+UniRef50_Q8Z9J5: Ribosomal large subunit pseudouridine synthase A	35.9793937890
+UniRef50_Q8Z9J5: Ribosomal large subunit pseudouridine synthase A|g__Escherichia.s__Escherichia_coli	34.5774715145
+UniRef50_Q8Z9J5: Ribosomal large subunit pseudouridine synthase A|unclassified	1.4019222745
+UniRef50_B0TI92: S-adenosylmethionine decarboxylase proenzyme	35.9656499860
+UniRef50_B0TI92: S-adenosylmethionine decarboxylase proenzyme|g__Escherichia.s__Escherichia_coli	25.0265324118
+UniRef50_B0TI92: S-adenosylmethionine decarboxylase proenzyme|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7490619220
+UniRef50_B0TI92: S-adenosylmethionine decarboxylase proenzyme|g__Clostridium.s__Clostridium_beijerinckii	5.1900556522
+UniRef50_U3SUB6	35.9574251274
+UniRef50_U3SUB6|g__Streptococcus.s__Streptococcus_mutans	35.9574251274
+UniRef50_A6WZN8: Glycoside hydrolase family 25	35.9574212920
+UniRef50_A6WZN8: Glycoside hydrolase family 25|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.9574212920
+UniRef50_A4WNZ4: PfkB domain protein	35.9437730260
+UniRef50_A4WNZ4: PfkB domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.9437730260
+UniRef50_D5CZH2: Pyrimidine monooxygenase RutA	35.9434742740
+UniRef50_D5CZH2: Pyrimidine monooxygenase RutA|g__Escherichia.s__Escherichia_coli	35.8890751157
+UniRef50_D5CZH2: Pyrimidine monooxygenase RutA|unclassified	0.0543991583
+UniRef50_P0ADQ4	35.9414394952
+UniRef50_P0ADQ4|g__Escherichia.s__Escherichia_coli	35.9414394952
+UniRef50_A0A034HVJ8	35.9400130641
+UniRef50_A0A034HVJ8|g__Staphylococcus.s__Staphylococcus_aureus	35.9400130641
+UniRef50_A6QFM9	35.9265130850
+UniRef50_A6QFM9|g__Staphylococcus.s__Staphylococcus_aureus	34.3545343545
+UniRef50_A6QFM9|unclassified	1.5719787305
+UniRef50_E0SGK4: ABC transporter, permease component	35.9165348087
+UniRef50_E0SGK4: ABC transporter, permease component|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.9165348087
+UniRef50_Q58811	35.9165333921
+UniRef50_Q58811|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.9165333921
+UniRef50_V1A8J2	35.9109311741
+UniRef50_V1A8J2|g__Escherichia.s__Escherichia_coli	35.9109311741
+UniRef50_Q1R9F1	35.9108760490
+UniRef50_Q1R9F1|g__Escherichia.s__Escherichia_coli	35.9108760490
+UniRef50_P0A9G7: Isocitrate lyase	35.9052362007
+UniRef50_P0A9G7: Isocitrate lyase|g__Escherichia.s__Escherichia_coli	35.7017540756
+UniRef50_P0A9G7: Isocitrate lyase|unclassified	0.2034821252
+UniRef50_Q9S6S1: Xaa-Pro dipeptidase	35.9042307482
+UniRef50_Q9S6S1: Xaa-Pro dipeptidase|g__Streptococcus.s__Streptococcus_mutans	35.9042307482
+UniRef50_Q9CI68: DegV domain-containing protein YejH	35.9038640343
+UniRef50_Q9CI68: DegV domain-containing protein YejH|g__Streptococcus.s__Streptococcus_mutans	32.3117019003
+UniRef50_Q9CI68: DegV domain-containing protein YejH|g__Streptococcus.s__Streptococcus_agalactiae	3.5921621340
+UniRef50_P49078: Asparagine synthetase [glutamine-hydrolyzing] 1	35.9036394877
+UniRef50_P49078: Asparagine synthetase [glutamine-hydrolyzing] 1|g__Escherichia.s__Escherichia_coli	35.9036394877
+UniRef50_A5UNG5: CMP-sialic acid synthetase, NeuA	35.8751154865
+UniRef50_A5UNG5: CMP-sialic acid synthetase, NeuA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.8751154865
+UniRef50_Q3IXN3: Phosphatidylethanolamine:Kdo2-lipid A phosphoethanolamine transferase	35.8749674037
+UniRef50_Q3IXN3: Phosphatidylethanolamine:Kdo2-lipid A phosphoethanolamine transferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.8749674037
+UniRef50_R8AGJ1	35.8717168033
+UniRef50_R8AGJ1|g__Staphylococcus.s__Staphylococcus_epidermidis	33.3333333333
+UniRef50_R8AGJ1|unclassified	2.5383834700
+UniRef50_W1DNL9: DNA-directed RNA polymerase beta subunit	35.8713734936
+UniRef50_W1DNL9: DNA-directed RNA polymerase beta subunit|g__Escherichia.s__Escherichia_coli	35.8713734936
+UniRef50_T0T7Z3	35.8628744134
+UniRef50_T0T7Z3|g__Streptococcus.s__Streptococcus_mutans	35.8628744134
+UniRef50_Q8DUY9	35.8589845348
+UniRef50_Q8DUY9|g__Streptococcus.s__Streptococcus_mutans	35.8589845348
+UniRef50_P30860: ABC transporter arginine-binding protein 1	35.8572011560
+UniRef50_P30860: ABC transporter arginine-binding protein 1|g__Escherichia.s__Escherichia_coli	35.8572011560
+UniRef50_A4VZG9: Transcriptional regulator	35.8567316429
+UniRef50_A4VZG9: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	35.8567316429
+UniRef50_P0AAV9: Putative isomerase YbhH	35.8552314792
+UniRef50_P0AAV9: Putative isomerase YbhH|g__Escherichia.s__Escherichia_coli	35.8552314792
+UniRef50_P0ACS1: Transcriptional repressor MprA	35.8537273732
+UniRef50_P0ACS1: Transcriptional repressor MprA|g__Escherichia.s__Escherichia_coli	35.8537273732
+UniRef50_P0AGG3: Acyl-CoA thioesterase 2	35.8536696387
+UniRef50_P0AGG3: Acyl-CoA thioesterase 2|g__Escherichia.s__Escherichia_coli	35.8536696387
+UniRef50_Q54430: Sucrose operon repressor	35.8505233653
+UniRef50_Q54430: Sucrose operon repressor|g__Streptococcus.s__Streptococcus_mutans	35.8505233653
+UniRef50_Q1JQN1: Cell division inhibitor SulA	35.8472497726
+UniRef50_Q1JQN1: Cell division inhibitor SulA|g__Escherichia.s__Escherichia_coli	35.8472497726
+UniRef50_U5MPL0: Protease YdeA	35.8469198241
+UniRef50_U5MPL0: Protease YdeA|g__Streptococcus.s__Streptococcus_mutans	35.8469198241
+UniRef50_R9SK92: Energy-converting hydrogenase A subunit Q EhaQ	35.8397874860
+UniRef50_R9SK92: Energy-converting hydrogenase A subunit Q EhaQ|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.8397874860
+UniRef50_P0AEN3: NAD(P)H-flavin reductase	35.8388355109
+UniRef50_P0AEN3: NAD(P)H-flavin reductase|g__Escherichia.s__Escherichia_coli	35.8388355109
+UniRef50_P0A9S6: Glycerol dehydrogenase	35.8265638110
+UniRef50_P0A9S6: Glycerol dehydrogenase|g__Escherichia.s__Escherichia_coli	29.5472700929
+UniRef50_P0A9S6: Glycerol dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	6.2792937180
+UniRef50_P43671: Paraquat-inducible protein B	35.8140449520
+UniRef50_P43671: Paraquat-inducible protein B|g__Escherichia.s__Escherichia_coli	35.8140449520
+UniRef50_B6EIV0: Nucleoid-associated protein VSAL_I1059	35.8107695168
+UniRef50_B6EIV0: Nucleoid-associated protein VSAL_I1059|g__Escherichia.s__Escherichia_coli	35.8107695168
+UniRef50_R7PVN9	35.8095007384
+UniRef50_R7PVN9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.8095007384
+UniRef50_P65103: Isopentenyl-diphosphate delta-isomerase	35.8053179340
+UniRef50_P65103: Isopentenyl-diphosphate delta-isomerase|g__Streptococcus.s__Streptococcus_mutans	33.4205421846
+UniRef50_P65103: Isopentenyl-diphosphate delta-isomerase|g__Streptococcus.s__Streptococcus_agalactiae	2.3847757494
+UniRef50_P58205: Flagellar L-ring protein	35.7990487692
+UniRef50_P58205: Flagellar L-ring protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.7990487692
+UniRef50_D3E2B0: Calcineurin-like phosphoesterase	35.7986601317
+UniRef50_D3E2B0: Calcineurin-like phosphoesterase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.7986601317
+UniRef50_R9SN00: Transcriptional regulator ArsR family	35.7954933418
+UniRef50_R9SN00: Transcriptional regulator ArsR family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.7954933418
+UniRef50_R5CIR9	35.7926935394
+UniRef50_R5CIR9|g__Escherichia.s__Escherichia_coli	35.7926935394
+UniRef50_P0ABV8: Protein TolR	35.7886967671
+UniRef50_P0ABV8: Protein TolR|g__Escherichia.s__Escherichia_coli	35.7886967671
+UniRef50_O27068	35.7870916123
+UniRef50_O27068|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.7870916123
+UniRef50_A1BAH6: MOSC domain containing protein	35.7855096169
+UniRef50_A1BAH6: MOSC domain containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.7855096169
+UniRef50_P39380: RNA 2'-phosphotransferase	35.7793705268
+UniRef50_P39380: RNA 2'-phosphotransferase|g__Escherichia.s__Escherichia_coli	35.7793705268
+UniRef50_A3PRL7: ABC transporter related	35.7784902914
+UniRef50_A3PRL7: ABC transporter related|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.7784902914
+UniRef50_C6W4P9: Aldehyde Dehydrogenase	35.7663933516
+UniRef50_C6W4P9: Aldehyde Dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.7663933516
+UniRef50_K0DDY9: Microcin C7 resistance MccF related protein	35.7656405167
+UniRef50_K0DDY9: Microcin C7 resistance MccF related protein|g__Streptococcus.s__Streptococcus_mutans	35.6902707760
+UniRef50_K0DDY9: Microcin C7 resistance MccF related protein|unclassified	0.0753697407
+UniRef50_Q8CVL1: Multidrug resistance protein MdtE	35.7604336711
+UniRef50_Q8CVL1: Multidrug resistance protein MdtE|g__Escherichia.s__Escherichia_coli	35.7604336711
+UniRef50_P0A908: MltA-interacting protein	35.7475285242
+UniRef50_P0A908: MltA-interacting protein|g__Escherichia.s__Escherichia_coli	35.7475285242
+UniRef50_J7R0T4: Rhsg core protein with extension	35.7450062853
+UniRef50_J7R0T4: Rhsg core protein with extension|g__Escherichia.s__Escherichia_coli	35.7450062853
+UniRef50_Q2NI01: MrtD	35.7427406488
+UniRef50_Q2NI01: MrtD|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.7427406488
+UniRef50_Q492H7: NADH-quinone oxidoreductase subunit B	35.7423508339
+UniRef50_Q492H7: NADH-quinone oxidoreductase subunit B|g__Escherichia.s__Escherichia_coli	29.8064044403
+UniRef50_Q492H7: NADH-quinone oxidoreductase subunit B|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8674463938
+UniRef50_Q492H7: NADH-quinone oxidoreductase subunit B|unclassified	0.0684999999
+UniRef50_F2MTK1: Cysteine synthase	35.7284610295
+UniRef50_F2MTK1: Cysteine synthase|g__Streptococcus.s__Streptococcus_mutans	35.7284610295
+UniRef50_A5UNJ1: Predicted SAM-dependent methyltransferase	35.7175266142
+UniRef50_A5UNJ1: Predicted SAM-dependent methyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.7175266142
+UniRef50_U3STW5	35.7142857143
+UniRef50_U3STW5|g__Streptococcus.s__Streptococcus_mutans	35.7142857143
+UniRef50_F7ZAP7: Histidine kinase	35.7090573650
+UniRef50_F7ZAP7: Histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.7090573650
+UniRef50_Q2NEB6: Phosphoribosylformylglycinamidine synthase 2	35.6980624621
+UniRef50_Q2NEB6: Phosphoribosylformylglycinamidine synthase 2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.6980624621
+UniRef50_P05052: HTH-type transcriptional regulator AppY	35.6948080702
+UniRef50_P05052: HTH-type transcriptional regulator AppY|g__Escherichia.s__Escherichia_coli	35.6948080702
+UniRef50_Q7CB38: UPF0324 inner membrane protein YeiH	35.6895862647
+UniRef50_Q7CB38: UPF0324 inner membrane protein YeiH|g__Escherichia.s__Escherichia_coli	26.1590891016
+UniRef50_Q7CB38: UPF0324 inner membrane protein YeiH|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.5304971631
+UniRef50_Q58899: UDP-N-acetylglucosamine 2-epimerase	35.6874193916
+UniRef50_Q58899: UDP-N-acetylglucosamine 2-epimerase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.6874193916
+UniRef50_P0C0F3: DNA polymerase III subunit alpha	35.6706989961
+UniRef50_P0C0F3: DNA polymerase III subunit alpha|g__Streptococcus.s__Streptococcus_mutans	35.6706989961
+UniRef50_A5UNC2: Nuclease, Staphylococcus nuclease-like family	35.6670957178
+UniRef50_A5UNC2: Nuclease, Staphylococcus nuclease-like family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.6670957178
+UniRef50_P71242: Colanic acid biosynthesis protein WcaK	35.6625441587
+UniRef50_P71242: Colanic acid biosynthesis protein WcaK|g__Escherichia.s__Escherichia_coli	35.4016522002
+UniRef50_P71242: Colanic acid biosynthesis protein WcaK|unclassified	0.2608919585
+UniRef50_Q1C3L9: Lipoprotein NlpI	35.6615063968
+UniRef50_Q1C3L9: Lipoprotein NlpI|g__Escherichia.s__Escherichia_coli	35.6615063968
+UniRef50_P0AFF3: Nucleoside permease NupC	35.6546233341
+UniRef50_P0AFF3: Nucleoside permease NupC|g__Escherichia.s__Escherichia_coli	35.6546233341
+UniRef50_P37387: D-xylose-binding periplasmic protein	35.6472488780
+UniRef50_P37387: D-xylose-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	35.6472488780
+UniRef50_Q5HLM6	35.6404319625
+UniRef50_Q5HLM6|g__Staphylococcus.s__Staphylococcus_epidermidis	35.6404319625
+UniRef50_D3QFC7	35.6337676487
+UniRef50_D3QFC7|g__Staphylococcus.s__Staphylococcus_epidermidis	35.1164223303
+UniRef50_D3QFC7|unclassified	0.5173453184
+UniRef50_P58813: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	35.6327481625
+UniRef50_P58813: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.6327481625
+UniRef50_I6TQZ1: Thioesterase	35.6123030647
+UniRef50_I6TQZ1: Thioesterase|g__Streptococcus.s__Streptococcus_mutans	35.6123030647
+UniRef50_P0ABU3: Ribosome-binding ATPase YchF	35.6063213972
+UniRef50_P0ABU3: Ribosome-binding ATPase YchF|g__Escherichia.s__Escherichia_coli	30.9295190478
+UniRef50_P0ABU3: Ribosome-binding ATPase YchF|g__Neisseria.s__Neisseria_meningitidis	4.6768023493
+UniRef50_Q8CUA1	35.6021193424
+UniRef50_Q8CUA1|unclassified	35.6021193424
+UniRef50_A5UMB6: Cell wall biosynthesis protein, MurD-like peptide ligase family	35.5983747258
+UniRef50_A5UMB6: Cell wall biosynthesis protein, MurD-like peptide ligase family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.5983747258
+UniRef50_D8HDF1	35.5797766086
+UniRef50_D8HDF1|g__Staphylococcus.s__Staphylococcus_aureus	35.5797766086
+UniRef50_M4YXM1: Cell division protein FtsX	35.5755476059
+UniRef50_M4YXM1: Cell division protein FtsX|g__Streptococcus.s__Streptococcus_mutans	34.0717882074
+UniRef50_M4YXM1: Cell division protein FtsX|g__Streptococcus.s__Streptococcus_agalactiae	1.5037593985
+UniRef50_G0EC83: Threonine synthase	35.5663181461
+UniRef50_G0EC83: Threonine synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.5663181461
+UniRef50_I6TR24: Transcriptional regulator	35.5657671968
+UniRef50_I6TR24: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	35.5657671968
+UniRef50_Q3IVA2	35.5651879773
+UniRef50_Q3IVA2|unclassified	35.5651879773
+UniRef50_B9E8V3: Putative septation protein SpoVG	35.5642116013
+UniRef50_B9E8V3: Putative septation protein SpoVG|g__Staphylococcus.s__Staphylococcus_aureus	20.4685542464
+UniRef50_B9E8V3: Putative septation protein SpoVG|g__Staphylococcus.s__Staphylococcus_epidermidis	15.0956573548
+UniRef50_U3ST42	35.5548341062
+UniRef50_U3ST42|g__Streptococcus.s__Streptococcus_mutans	34.0430178960
+UniRef50_U3ST42|unclassified	1.5118162102
+UniRef50_A0A018Y1M8: Glycogen branching enzyme	35.5468509273
+UniRef50_A0A018Y1M8: Glycogen branching enzyme|g__Escherichia.s__Escherichia_coli	35.5468509273
+UniRef50_A5UMZ2: 3-methyladenine DNA glycosylase/8-oxoguanine DNA glycosylase	35.5381445246
+UniRef50_A5UMZ2: 3-methyladenine DNA glycosylase/8-oxoguanine DNA glycosylase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.5381445246
+UniRef50_D3SLJ8: UDP-glucose 4-epimerase	35.5251272662
+UniRef50_D3SLJ8: UDP-glucose 4-epimerase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.5251272662
+UniRef50_B7UXY9: Phosphoribosylformylglycinamidine cyclo-ligase	35.5177595451
+UniRef50_B7UXY9: Phosphoribosylformylglycinamidine cyclo-ligase|g__Escherichia.s__Escherichia_coli	23.7323550820
+UniRef50_B7UXY9: Phosphoribosylformylglycinamidine cyclo-ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.7440469848
+UniRef50_B7UXY9: Phosphoribosylformylglycinamidine cyclo-ligase|unclassified	0.0413574784
+UniRef50_A5ULA7	35.5135310072
+UniRef50_A5ULA7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.5135310072
+UniRef50_P19934: Protein TolA	35.5109769127
+UniRef50_P19934: Protein TolA|g__Escherichia.s__Escherichia_coli	35.5109769127
+UniRef50_C5BKL9: Chromosomal replication initiator protein DnaA	35.5107768633
+UniRef50_C5BKL9: Chromosomal replication initiator protein DnaA|g__Escherichia.s__Escherichia_coli	30.5833716357
+UniRef50_C5BKL9: Chromosomal replication initiator protein DnaA|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9274052276
+UniRef50_P10539: Aspartate-semialdehyde dehydrogenase	35.5059184704
+UniRef50_P10539: Aspartate-semialdehyde dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	35.2164293775
+UniRef50_P10539: Aspartate-semialdehyde dehydrogenase|unclassified	0.2894890928
+UniRef50_D4GIS9: RbsA	35.5028538968
+UniRef50_D4GIS9: RbsA|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.5028538968
+UniRef50_Q8XAF1: Propionate kinase	35.5019562563
+UniRef50_Q8XAF1: Propionate kinase|g__Escherichia.s__Escherichia_coli	35.4198727489
+UniRef50_Q8XAF1: Propionate kinase|unclassified	0.0820835075
+UniRef50_I6U222: ABC transporter permease	35.4902801543
+UniRef50_I6U222: ABC transporter permease|g__Streptococcus.s__Streptococcus_mutans	35.4902801543
+UniRef50_Q3J266	35.4881107745
+UniRef50_Q3J266|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.7292372722
+UniRef50_Q3J266|unclassified	1.7588735023
+UniRef50_F5X0E4: Major facilitator superfamily protein	35.4825158423
+UniRef50_F5X0E4: Major facilitator superfamily protein|g__Streptococcus.s__Streptococcus_mutans	35.4825158423
+UniRef50_M9RF98: Peptidyl-prolyl cis-trans isomerase	35.4735930899
+UniRef50_M9RF98: Peptidyl-prolyl cis-trans isomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.4735930899
+UniRef50_P73860: KaiC-like protein 1	35.4634388164
+UniRef50_P73860: KaiC-like protein 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.4634388164
+UniRef50_R9SJ79: Cobalt ABC transporter permease protein CbiQ1	35.4629856809
+UniRef50_R9SJ79: Cobalt ABC transporter permease protein CbiQ1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.4629856809
+UniRef50_O27481: Putative branched-chain-amino-acid aminotransferase	35.4601607824
+UniRef50_O27481: Putative branched-chain-amino-acid aminotransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.1589236937
+UniRef50_O27481: Putative branched-chain-amino-acid aminotransferase|unclassified	1.3012370887
+UniRef50_P0AAS3: Inner membrane protein YbbJ	35.4501928871
+UniRef50_P0AAS3: Inner membrane protein YbbJ|g__Escherichia.s__Escherichia_coli	35.4501928871
+UniRef50_Q47151: Probable endopeptidase YafL	35.4429420333
+UniRef50_Q47151: Probable endopeptidase YafL|g__Escherichia.s__Escherichia_coli	35.4429420333
+UniRef50_P24193: Hydrogenase isoenzymes formation protein HypE	35.4382236963
+UniRef50_P24193: Hydrogenase isoenzymes formation protein HypE|g__Escherichia.s__Escherichia_coli	35.4382236963
+UniRef50_P54820: Cytochrome c-552	35.4285612566
+UniRef50_P54820: Cytochrome c-552|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.4285612566
+UniRef50_A6TCE8: Co-chaperone protein HscB	35.4233634336
+UniRef50_A6TCE8: Co-chaperone protein HscB|g__Escherichia.s__Escherichia_coli	35.4233634336
+UniRef50_Q5HKC1: Arsenical resistance operon trans-acting repressor	35.4101224713
+UniRef50_Q5HKC1: Arsenical resistance operon trans-acting repressor|g__Staphylococcus.s__Staphylococcus_epidermidis	35.4101224713
+UniRef50_F2I582: ABC transporter, ATP-binding protein	35.4050411009
+UniRef50_F2I582: ABC transporter, ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	29.2668125499
+UniRef50_F2I582: ABC transporter, ATP-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	6.1382285510
+UniRef50_Q28PT8	35.4022660698
+UniRef50_Q28PT8|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.4022660698
+UniRef50_A4VT18: Mevalonate kinase	35.3953709381
+UniRef50_A4VT18: Mevalonate kinase|g__Streptococcus.s__Streptococcus_mutans	35.3953709381
+UniRef50_I6TQY3: Alpha/beta hydrolase	35.3946116359
+UniRef50_I6TQY3: Alpha/beta hydrolase|g__Streptococcus.s__Streptococcus_mutans	35.3946116359
+UniRef50_P0AG42: Riboflavin biosynthesis protein RibF	35.3943792726
+UniRef50_P0AG42: Riboflavin biosynthesis protein RibF|g__Escherichia.s__Escherichia_coli	35.3943792726
+UniRef50_Q8XA27: Protein FixB	35.3914499610
+UniRef50_Q8XA27: Protein FixB|g__Escherichia.s__Escherichia_coli	35.3914499610
+UniRef50_Q8CTD2	35.3913322891
+UniRef50_Q8CTD2|g__Staphylococcus.s__Staphylococcus_epidermidis	35.3913322891
+UniRef50_P75919: Cardiolipin synthase C	35.3801599739
+UniRef50_P75919: Cardiolipin synthase C|g__Escherichia.s__Escherichia_coli	35.3801599739
+UniRef50_N0CFH5: L-cystine ABC transporter substrate-binding component	35.3793172436
+UniRef50_N0CFH5: L-cystine ABC transporter substrate-binding component|g__Streptococcus.s__Streptococcus_mutans	35.3793172436
+UniRef50_Q839F5: 30S ribosomal protein S17	35.3781908867
+UniRef50_Q839F5: 30S ribosomal protein S17|g__Staphylococcus.s__Staphylococcus_epidermidis	22.0229637384
+UniRef50_Q839F5: 30S ribosomal protein S17|g__Staphylococcus.s__Staphylococcus_aureus	13.3552271483
+UniRef50_R7E4L4: Hydrolase NUDIX family	35.3691407920
+UniRef50_R7E4L4: Hydrolase NUDIX family|g__Streptococcus.s__Streptococcus_mutans	35.3691407920
+UniRef50_Q5HGC7: Glutathione peroxidase homolog BsaA	35.3478161584
+UniRef50_Q5HGC7: Glutathione peroxidase homolog BsaA|g__Staphylococcus.s__Staphylococcus_aureus	35.3478161584
+UniRef50_W5ZFT8: Oxidoreductase, putative	35.3335690370
+UniRef50_W5ZFT8: Oxidoreductase, putative|g__Streptococcus.s__Streptococcus_mutans	29.9572249510
+UniRef50_W5ZFT8: Oxidoreductase, putative|g__Streptococcus.s__Streptococcus_agalactiae	5.3763440860
+UniRef50_Q9RVD6: Tryptophan--tRNA ligase 2	35.3246290816
+UniRef50_Q9RVD6: Tryptophan--tRNA ligase 2|g__Streptococcus.s__Streptococcus_mutans	35.3246290816
+UniRef50_Q58065: Putative NADH oxidase	35.3225548940
+UniRef50_Q58065: Putative NADH oxidase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.3225548940
+UniRef50_A3PNN7: Sugar transferase	35.3160882090
+UniRef50_A3PNN7: Sugar transferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.3160882090
+UniRef50_B1X8Q2: Ribosomal RNA large subunit methyltransferase K/L	35.3135034139
+UniRef50_B1X8Q2: Ribosomal RNA large subunit methyltransferase K/L|g__Escherichia.s__Escherichia_coli	35.3135034139
+UniRef50_P16926: Cell shape-determining protein MreC	35.3121256482
+UniRef50_P16926: Cell shape-determining protein MreC|g__Escherichia.s__Escherichia_coli	35.3121256482
+UniRef50_B4U2B4: Septation ring formation regulator EzrA	35.3113920826
+UniRef50_B4U2B4: Septation ring formation regulator EzrA|g__Streptococcus.s__Streptococcus_mutans	34.5301420826
+UniRef50_B4U2B4: Septation ring formation regulator EzrA|g__Streptococcus.s__Streptococcus_agalactiae	0.7812500000
+UniRef50_P09996	35.3086611892
+UniRef50_P09996|g__Escherichia.s__Escherichia_coli	34.5505053437
+UniRef50_P09996|unclassified	0.7581558455
+UniRef50_Q2NUJ6: 8-amino-7-oxononanoate synthase	35.3046325237
+UniRef50_Q2NUJ6: 8-amino-7-oxononanoate synthase|g__Escherichia.s__Escherichia_coli	35.2210363949
+UniRef50_Q2NUJ6: 8-amino-7-oxononanoate synthase|unclassified	0.0835961288
+UniRef50_P26365: N-acetylmuramoyl-L-alanine amidase AmiB	35.3042448456
+UniRef50_P26365: N-acetylmuramoyl-L-alanine amidase AmiB|g__Escherichia.s__Escherichia_coli	35.3042448456
+UniRef50_Q28M29: Lipoprotein releasing system transmembrane protein LolC/E family	35.3041737197
+UniRef50_Q28M29: Lipoprotein releasing system transmembrane protein LolC/E family|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.3041737197
+UniRef50_Q3HKE5: FecR protein	35.2825393039
+UniRef50_Q3HKE5: FecR protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	34.4551490410
+UniRef50_Q3HKE5: FecR protein|unclassified	0.8273902629
+UniRef50_C9A9S2	35.2674575607
+UniRef50_C9A9S2|g__Streptococcus.s__Streptococcus_mutans	35.2674575607
+UniRef50_T1XMS0	35.2669728064
+UniRef50_T1XMS0|g__Staphylococcus.s__Staphylococcus_aureus	35.2669728064
+UniRef50_P39347: Putative prophage P4 integrase	35.2618547886
+UniRef50_P39347: Putative prophage P4 integrase|g__Escherichia.s__Escherichia_coli	35.2618547886
+UniRef50_Q00750: Multiple sugar-binding transport system permease protein MsmF	35.2609918847
+UniRef50_Q00750: Multiple sugar-binding transport system permease protein MsmF|g__Streptococcus.s__Streptococcus_mutans	35.2609918847
+UniRef50_M9RKI9: Multidrug resistance protein	35.2576916219
+UniRef50_M9RKI9: Multidrug resistance protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.2576916219
+UniRef50_D8HAU8: 30S ribosomal protein L7 Ae	35.2526795674
+UniRef50_D8HAU8: 30S ribosomal protein L7 Ae|g__Staphylococcus.s__Staphylococcus_aureus	35.2526795674
+UniRef50_P32157: Protein YiiM	35.2473753273
+UniRef50_P32157: Protein YiiM|g__Escherichia.s__Escherichia_coli	35.2473753273
+UniRef50_A5UK53: Alcohol dehydrogenase (Zinc-binding), GroES-like protein	35.2415012824
+UniRef50_A5UK53: Alcohol dehydrogenase (Zinc-binding), GroES-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.2415012824
+UniRef50_A5UKJ0: Tyrosine--tRNA ligase	35.2389132551
+UniRef50_A5UKJ0: Tyrosine--tRNA ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.2389132551
+UniRef50_F4EDN7: Ribulose-phosphate 3-epimerase	35.2369785746
+UniRef50_F4EDN7: Ribulose-phosphate 3-epimerase|g__Streptococcus.s__Streptococcus_mutans	35.2369785746
+UniRef50_R7PYU4: Predicted glycosyltransferase (Glycogen phosphorylase) GT1 family	35.2307764225
+UniRef50_R7PYU4: Predicted glycosyltransferase (Glycogen phosphorylase) GT1 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.2307764225
+UniRef50_Q5HEZ3: Putative fluoride ion transporter CrcB 1	35.2200729475
+UniRef50_Q5HEZ3: Putative fluoride ion transporter CrcB 1|g__Staphylococcus.s__Staphylococcus_epidermidis	23.4292937428
+UniRef50_Q5HEZ3: Putative fluoride ion transporter CrcB 1|g__Staphylococcus.s__Staphylococcus_aureus	11.7907792048
+UniRef50_P37659: Protein BcsG homolog	35.2189458239
+UniRef50_P37659: Protein BcsG homolog|g__Escherichia.s__Escherichia_coli	35.2189458239
+UniRef50_A5UNU8: Large terminase subunit	35.2117699047
+UniRef50_A5UNU8: Large terminase subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.2117699047
+UniRef50_Q8DWA1	35.2113879579
+UniRef50_Q8DWA1|g__Streptococcus.s__Streptococcus_mutans	35.2113879579
+UniRef50_B7MT79: Outer membrane usher protein fimD [Precursor] and minor component of type 1 fimbriae [Precursor]	35.2055554832
+UniRef50_B7MT79: Outer membrane usher protein fimD [Precursor] and minor component of type 1 fimbriae [Precursor]|g__Escherichia.s__Escherichia_coli	35.2055554832
+UniRef50_D3E311: Polysaccharide/polyol phosphate ABC transporter ATP-binding protein	35.2017929326
+UniRef50_D3E311: Polysaccharide/polyol phosphate ABC transporter ATP-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.2017929326
+UniRef50_D9RB01	35.1969431572
+UniRef50_D9RB01|g__Staphylococcus.s__Staphylococcus_aureus	35.1969431572
+UniRef50_P0AGI3: Ribose transport system permease protein RbsC	35.1967371951
+UniRef50_P0AGI3: Ribose transport system permease protein RbsC|g__Escherichia.s__Escherichia_coli	35.1967371951
+UniRef50_P36928	35.1931051347
+UniRef50_P36928|g__Escherichia.s__Escherichia_coli	35.1931051347
+UniRef50_Q97SH4: PTS system mannitol-specific EIICB component	35.1822974693
+UniRef50_Q97SH4: PTS system mannitol-specific EIICB component|g__Streptococcus.s__Streptococcus_mutans	35.1404291456
+UniRef50_Q97SH4: PTS system mannitol-specific EIICB component|unclassified	0.0418683237
+UniRef50_I6SW52: Malonyl CoA-ACP transacylase	35.1784590830
+UniRef50_I6SW52: Malonyl CoA-ACP transacylase|g__Streptococcus.s__Streptococcus_mutans	35.1784590830
+UniRef50_P69807: Mannose permease IID component	35.1777138132
+UniRef50_P69807: Mannose permease IID component|g__Escherichia.s__Escherichia_coli	32.1146685664
+UniRef50_P69807: Mannose permease IID component|g__Clostridium.s__Clostridium_beijerinckii	3.0630452468
+UniRef50_A5UNL4: Adhesin-like protein	35.1747193195
+UniRef50_A5UNL4: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.1747193195
+UniRef50_A5UP62	35.1746511219
+UniRef50_A5UP62|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.1273348107
+UniRef50_A5UP62|unclassified	0.0473163112
+UniRef50_A5UL46: Phosphoserine phosphatase, HAD family, SerB	35.1635862230
+UniRef50_A5UL46: Phosphoserine phosphatase, HAD family, SerB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.1635862230
+UniRef50_X2NG16: Lysine decarboxylase LdcC	35.1632170790
+UniRef50_X2NG16: Lysine decarboxylase LdcC|g__Escherichia.s__Escherichia_coli	35.1632170790
+UniRef50_P05417: Ubiquinol-cytochrome c reductase iron-sulfur subunit	35.1628822349
+UniRef50_P05417: Ubiquinol-cytochrome c reductase iron-sulfur subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.0025972799
+UniRef50_P05417: Ubiquinol-cytochrome c reductase iron-sulfur subunit|unclassified	5.1602849550
+UniRef50_P46850: RNA-splicing ligase RtcB	35.1617973537
+UniRef50_P46850: RNA-splicing ligase RtcB|g__Escherichia.s__Escherichia_coli	19.8171326615
+UniRef50_P46850: RNA-splicing ligase RtcB|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.3446646921
+UniRef50_A5UKL3	35.1614563892
+UniRef50_A5UKL3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.8323084183
+UniRef50_A5UKL3|unclassified	1.3291479710
+UniRef50_E1RJE3	35.1543077296
+UniRef50_E1RJE3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.1543077296
+UniRef50_A7ZUJ0: Pantothenate kinase	35.1539704350
+UniRef50_A7ZUJ0: Pantothenate kinase|g__Escherichia.s__Escherichia_coli	33.8882915334
+UniRef50_A7ZUJ0: Pantothenate kinase|unclassified	1.2656789016
+UniRef50_P0AAL7	35.1535467327
+UniRef50_P0AAL7|g__Escherichia.s__Escherichia_coli	35.1535467327
+UniRef50_G9WFA5: Maltose/maltodextrin ABC permease	35.1469381603
+UniRef50_G9WFA5: Maltose/maltodextrin ABC permease|g__Streptococcus.s__Streptococcus_mutans	33.1909949484
+UniRef50_G9WFA5: Maltose/maltodextrin ABC permease|g__Streptococcus.s__Streptococcus_agalactiae	1.9559432120
+UniRef50_C1DH85: Deoxyribonuclease I	35.1396826645
+UniRef50_C1DH85: Deoxyribonuclease I|g__Pseudomonas.s__Pseudomonas_aeruginosa	35.1396826645
+UniRef50_C4ZXX6: PKHD-type hydroxylase YbiX	35.1390889693
+UniRef50_C4ZXX6: PKHD-type hydroxylase YbiX|g__Escherichia.s__Escherichia_coli	33.9040286126
+UniRef50_C4ZXX6: PKHD-type hydroxylase YbiX|unclassified	1.2350603567
+UniRef50_R6Q8V3: O-6-methylguanine DNA methyltransferase	35.1368923279
+UniRef50_R6Q8V3: O-6-methylguanine DNA methyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.1368923279
+UniRef50_Q27331: V-type proton ATPase catalytic subunit A isoform 2	35.1352134603
+UniRef50_Q27331: V-type proton ATPase catalytic subunit A isoform 2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.1352134603
+UniRef50_P03018: DNA helicase II	35.1309591821
+UniRef50_P03018: DNA helicase II|g__Escherichia.s__Escherichia_coli	30.5974545270
+UniRef50_P03018: DNA helicase II|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7672213886
+UniRef50_P03018: DNA helicase II|unclassified	0.7662832664
+UniRef50_A5IRS3: DoxX family protein	35.1296610031
+UniRef50_A5IRS3: DoxX family protein|g__Staphylococcus.s__Staphylococcus_aureus	33.6051972415
+UniRef50_A5IRS3: DoxX family protein|unclassified	1.5244637616
+UniRef50_M4YYU6: A/G-specific adenine glycosylase	35.1246006733
+UniRef50_M4YYU6: A/G-specific adenine glycosylase|g__Streptococcus.s__Streptococcus_mutans	34.2333350761
+UniRef50_M4YYU6: A/G-specific adenine glycosylase|g__Streptococcus.s__Streptococcus_agalactiae	0.8912655971
+UniRef50_F3SVI7	35.1111894960
+UniRef50_F3SVI7|g__Staphylococcus.s__Staphylococcus_epidermidis	35.1111894960
+UniRef50_A0KMY1: Dipeptide and tripeptide permease B	35.1036455881
+UniRef50_A0KMY1: Dipeptide and tripeptide permease B|g__Escherichia.s__Escherichia_coli	35.1036455881
+UniRef50_P15288: Cytosol non-specific dipeptidase	35.0967626297
+UniRef50_P15288: Cytosol non-specific dipeptidase|g__Escherichia.s__Escherichia_coli	35.0336352804
+UniRef50_P15288: Cytosol non-specific dipeptidase|unclassified	0.0631273492
+UniRef50_P37194: Outer membrane protein slp	35.0834646102
+UniRef50_P37194: Outer membrane protein slp|g__Escherichia.s__Escherichia_coli	35.0834646102
+UniRef50_P44978	35.0820567005
+UniRef50_P44978|g__Escherichia.s__Escherichia_coli	35.0820567005
+UniRef50_V6Q9U1	35.0812315098
+UniRef50_V6Q9U1|g__Staphylococcus.s__Staphylococcus_epidermidis	21.5677179963
+UniRef50_V6Q9U1|unclassified	13.5135135135
+UniRef50_Q6D734: Fe(3+) ions import ATP-binding protein FbpC 1	35.0656242341
+UniRef50_Q6D734: Fe(3+) ions import ATP-binding protein FbpC 1|g__Escherichia.s__Escherichia_coli	34.1980842213
+UniRef50_Q6D734: Fe(3+) ions import ATP-binding protein FbpC 1|unclassified	0.8675400128
+UniRef50_P28916: H repeat-associated protein YbfD	35.0588321612
+UniRef50_P28916: H repeat-associated protein YbfD|g__Escherichia.s__Escherichia_coli	35.0588321612
+UniRef50_A8IMX0: Ribonuclease VapC	35.0511078829
+UniRef50_A8IMX0: Ribonuclease VapC|g__Rhodobacter.s__Rhodobacter_sphaeroides	35.0511078829
+UniRef50_M4YXM6	35.0480500679
+UniRef50_M4YXM6|g__Streptococcus.s__Streptococcus_mutans	35.0480500679
+UniRef50_D0RWK6	35.0381307280
+UniRef50_D0RWK6|g__Streptococcus.s__Streptococcus_mutans	35.0381307280
+UniRef50_D3E171: Phosphatidylglycerophosphate synthase PgsA	35.0324547623
+UniRef50_D3E171: Phosphatidylglycerophosphate synthase PgsA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.0324547623
+UniRef50_P25740: Lipopolysaccharide core biosynthesis protein RfaG	35.0250384008
+UniRef50_P25740: Lipopolysaccharide core biosynthesis protein RfaG|g__Escherichia.s__Escherichia_coli	26.9299360147
+UniRef50_P25740: Lipopolysaccharide core biosynthesis protein RfaG|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2431765545
+UniRef50_P25740: Lipopolysaccharide core biosynthesis protein RfaG|unclassified	0.8519258316
+UniRef50_Q03MN5: Adapter protein MecA	35.0154538358
+UniRef50_Q03MN5: Adapter protein MecA|g__Streptococcus.s__Streptococcus_mutans	35.0154538358
+UniRef50_R7PWY7	35.0115073156
+UniRef50_R7PWY7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.0115073156
+UniRef50_P75969: Prophage lambda integrase	35.0101747872
+UniRef50_P75969: Prophage lambda integrase|g__Escherichia.s__Escherichia_coli	35.0101747872
+UniRef50_I4E0I3: Arabinose efflux permease homolog	35.0092436442
+UniRef50_I4E0I3: Arabinose efflux permease homolog|g__Streptococcus.s__Streptococcus_mutans	35.0092436442
+UniRef50_A5UKJ7: Probable thymidylate kinase	35.0077895758
+UniRef50_A5UKJ7: Probable thymidylate kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	35.0077895758
+UniRef50_Q1LSW5: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase	35.0042406732
+UniRef50_Q1LSW5: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase|g__Escherichia.s__Escherichia_coli	35.0042406732
+UniRef50_Q8YC76: DNA polymerase IV	35.0029650705
+UniRef50_Q8YC76: DNA polymerase IV|g__Rhodobacter.s__Rhodobacter_sphaeroides	34.9153306145
+UniRef50_Q8YC76: DNA polymerase IV|unclassified	0.0876344561
+UniRef50_O33641: Outer membrane protease IcsP	34.9982342562
+UniRef50_O33641: Outer membrane protease IcsP|g__Escherichia.s__Escherichia_coli	34.9982342562
+UniRef50_T0UHV5: Transcriptional regulator, AraC family	34.9895884782
+UniRef50_T0UHV5: Transcriptional regulator, AraC family|g__Streptococcus.s__Streptococcus_mutans	33.6841054495
+UniRef50_T0UHV5: Transcriptional regulator, AraC family|g__Streptococcus.s__Streptococcus_agalactiae	1.3054830287
+UniRef50_P59339: Transcriptional regulatory protein DcuR	34.9817606681
+UniRef50_P59339: Transcriptional regulatory protein DcuR|g__Escherichia.s__Escherichia_coli	34.9817606681
+UniRef50_J7R5F6	34.9772682747
+UniRef50_J7R5F6|g__Escherichia.s__Escherichia_coli	34.9772682747
+UniRef50_Q9PE70: 30S ribosomal protein S3	34.9705314263
+UniRef50_Q9PE70: 30S ribosomal protein S3|g__Escherichia.s__Escherichia_coli	34.9705314263
+UniRef50_A3CQL5: Amino acid ABC transporter, periplasmic amino acid-binding protein, putative	34.9670050786
+UniRef50_A3CQL5: Amino acid ABC transporter, periplasmic amino acid-binding protein, putative|g__Streptococcus.s__Streptococcus_mutans	34.9670050786
+UniRef50_T1YAD1: Transposase	34.9655726928
+UniRef50_T1YAD1: Transposase|g__Staphylococcus.s__Staphylococcus_aureus	34.9655726928
+UniRef50_O28994: Carbamoyl-phosphate synthase large chain	34.9575069132
+UniRef50_O28994: Carbamoyl-phosphate synthase large chain|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.9207457962
+UniRef50_O28994: Carbamoyl-phosphate synthase large chain|g__Escherichia.s__Escherichia_coli	5.1577705457
+UniRef50_O28994: Carbamoyl-phosphate synthase large chain|g__Deinococcus.s__Deinococcus_radiodurans	0.6907773658
+UniRef50_O28994: Carbamoyl-phosphate synthase large chain|unclassified	0.1882132055
+UniRef50_A5UMC5: Predicted metal-dependent membrane protease	34.9504389712
+UniRef50_A5UMC5: Predicted metal-dependent membrane protease|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.9504389712
+UniRef50_P44917	34.9500118054
+UniRef50_P44917|g__Streptococcus.s__Streptococcus_mutans	34.9500118054
+UniRef50_Q50423: Methylamine utilization ferredoxin-type protein MauM	34.9368751637
+UniRef50_Q50423: Methylamine utilization ferredoxin-type protein MauM|g__Escherichia.s__Escherichia_coli	34.9368751637
+UniRef50_C6ECF3: 3-keto-L-gulonate-6-phosphate decarboxylase UlaD	34.9334251556
+UniRef50_C6ECF3: 3-keto-L-gulonate-6-phosphate decarboxylase UlaD|g__Escherichia.s__Escherichia_coli	34.9334251556
+UniRef50_C7ZWR6: SPP1 gp7 family Phage head morphogenesis protein	34.9257127984
+UniRef50_C7ZWR6: SPP1 gp7 family Phage head morphogenesis protein|g__Staphylococcus.s__Staphylococcus_aureus	34.9257127984
+UniRef50_Q58639	34.9247898981
+UniRef50_Q58639|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.9247898981
+UniRef50_Q8ZLS1: Arabinose 5-phosphate isomerase KdsD	34.9243099724
+UniRef50_Q8ZLS1: Arabinose 5-phosphate isomerase KdsD|g__Escherichia.s__Escherichia_coli	33.6967705947
+UniRef50_Q8ZLS1: Arabinose 5-phosphate isomerase KdsD|g__Neisseria.s__Neisseria_meningitidis	1.0548523207
+UniRef50_Q8ZLS1: Arabinose 5-phosphate isomerase KdsD|unclassified	0.1726870569
+UniRef50_A3MYE6: Recombination protein RecR	34.9125246977
+UniRef50_A3MYE6: Recombination protein RecR|g__Escherichia.s__Escherichia_coli	34.9125246977
+UniRef50_C6SQA7	34.9016712196
+UniRef50_C6SQA7|g__Streptococcus.s__Streptococcus_mutans	34.9016712196
+UniRef50_A1AAH4	34.9005424955
+UniRef50_A1AAH4|g__Escherichia.s__Escherichia_coli	34.9005424955
+UniRef50_Q83BS0: Transcription termination/antitermination protein NusA	34.8976250489
+UniRef50_Q83BS0: Transcription termination/antitermination protein NusA|g__Escherichia.s__Escherichia_coli	24.5144925675
+UniRef50_Q83BS0: Transcription termination/antitermination protein NusA|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.6784108464
+UniRef50_Q83BS0: Transcription termination/antitermination protein NusA|g__Acinetobacter.s__Acinetobacter_baumannii	0.7047216350
+UniRef50_B5FUN9: Zinc transport protein ZntB	34.8906558456
+UniRef50_B5FUN9: Zinc transport protein ZntB|g__Escherichia.s__Escherichia_coli	34.8906558456
+UniRef50_B7GKM4: NADH dehydrogenase, FAD-containing subunit	34.8856026470
+UniRef50_B7GKM4: NADH dehydrogenase, FAD-containing subunit|g__Staphylococcus.s__Staphylococcus_aureus	34.8856026470
+UniRef50_Q1REU5	34.8767997966
+UniRef50_Q1REU5|g__Escherichia.s__Escherichia_coli	31.9886135223
+UniRef50_Q1REU5|unclassified	2.8881862743
+UniRef50_B6ELV0: Putrescine-binding periplasmic protein	34.8718257879
+UniRef50_B6ELV0: Putrescine-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	34.8718257879
+UniRef50_Q0I1I7: tRNA/tmRNA (uracil-C(5))-methyltransferase	34.8656782577
+UniRef50_Q0I1I7: tRNA/tmRNA (uracil-C(5))-methyltransferase|g__Escherichia.s__Escherichia_coli	31.1822224997
+UniRef50_Q0I1I7: tRNA/tmRNA (uracil-C(5))-methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6834557580
+UniRef50_P09394: Glycerophosphoryl diester phosphodiesterase	34.8584578215
+UniRef50_P09394: Glycerophosphoryl diester phosphodiesterase|g__Escherichia.s__Escherichia_coli	34.8584578215
+UniRef50_A9CR53	34.8557692308
+UniRef50_A9CR53|g__Staphylococcus.s__Staphylococcus_aureus	34.8557692308
+UniRef50_E4PYM8: Beta-lactamase	34.8557692308
+UniRef50_E4PYM8: Beta-lactamase|g__Staphylococcus.s__Staphylococcus_aureus	34.8557692308
+UniRef50_P22255: 3'(2'),5'-bisphosphate nucleotidase CysQ	34.8515353067
+UniRef50_P22255: 3'(2'),5'-bisphosphate nucleotidase CysQ|g__Escherichia.s__Escherichia_coli	34.8515353067
+UniRef50_R9SJP3	34.8117758557
+UniRef50_R9SJP3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.8117758557
+UniRef50_A5UJ97	34.8115925379
+UniRef50_A5UJ97|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.8115925379
+UniRef50_Q4DJ07: Prostaglandin F synthase	34.8083917203
+UniRef50_Q4DJ07: Prostaglandin F synthase|g__Escherichia.s__Escherichia_coli	34.4947505464
+UniRef50_Q4DJ07: Prostaglandin F synthase|unclassified	0.3136411739
+UniRef50_D1Q2W4: Transcriptional activator of maltose regulon,MalT	34.8043151706
+UniRef50_D1Q2W4: Transcriptional activator of maltose regulon,MalT|g__Escherichia.s__Escherichia_coli	34.8043151706
+UniRef50_P0AEK8: Formate dehydrogenase, nitrate-inducible, cytochrome b556(Fdn) subunit	34.7985950272
+UniRef50_P0AEK8: Formate dehydrogenase, nitrate-inducible, cytochrome b556(Fdn) subunit|g__Escherichia.s__Escherichia_coli	34.7985950272
+UniRef50_Q133V1: Transcriptional regulator, ArsR family	34.7907071001
+UniRef50_Q133V1: Transcriptional regulator, ArsR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	34.7907071001
+UniRef50_A3PNX0: Cyclic nucleotide-binding protein	34.7867219552
+UniRef50_A3PNX0: Cyclic nucleotide-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	34.7867219552
+UniRef50_A5UP32: Purine/pyrimidine phosphoribosyl transferase	34.7808805222
+UniRef50_A5UP32: Purine/pyrimidine phosphoribosyl transferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.7808805222
+UniRef50_A5UNP7: Cobalt ABC transporter, permease component, CbiQ	34.7694525047
+UniRef50_A5UNP7: Cobalt ABC transporter, permease component, CbiQ|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.7694525047
+UniRef50_Q5GVF4: PhaC protein	34.7636862117
+UniRef50_Q5GVF4: PhaC protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	34.7636862117
+UniRef50_P0ACI5: Xylose operon regulatory protein	34.7577349625
+UniRef50_P0ACI5: Xylose operon regulatory protein|g__Escherichia.s__Escherichia_coli	34.7577349625
+UniRef50_Q5XE77: Single-stranded DNA-binding protein 1	34.7522184922
+UniRef50_Q5XE77: Single-stranded DNA-binding protein 1|g__Streptococcus.s__Streptococcus_mutans	34.7522184922
+UniRef50_UPI0000379DB9: hypothetical protein	34.7402276156
+UniRef50_UPI0000379DB9: hypothetical protein|unclassified	34.7402276156
+UniRef50_P32720: D-allose transport system permease protein AlsC	34.7249496736
+UniRef50_P32720: D-allose transport system permease protein AlsC|g__Escherichia.s__Escherichia_coli	34.7249496736
+UniRef50_O27716: 50S ribosomal protein L1	34.7168457828
+UniRef50_O27716: 50S ribosomal protein L1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.7168457828
+UniRef50_M4YXB8: Uracil DNA glycosylase superfamily protein	34.7146297110
+UniRef50_M4YXB8: Uracil DNA glycosylase superfamily protein|g__Streptococcus.s__Streptococcus_mutans	34.7146297110
+UniRef50_P37757	34.7144548175
+UniRef50_P37757|g__Escherichia.s__Escherichia_coli	34.7144548175
+UniRef50_I0C1T3: Phosphohydrolase (MutT/nudix family protein)	34.7028414579
+UniRef50_I0C1T3: Phosphohydrolase (MutT/nudix family protein)|g__Staphylococcus.s__Staphylococcus_aureus	20.5610915365
+UniRef50_I0C1T3: Phosphohydrolase (MutT/nudix family protein)|g__Staphylococcus.s__Staphylococcus_epidermidis	14.1417499214
+UniRef50_Q1GDE2: ATP synthase subunit b 2	34.6955656021
+UniRef50_Q1GDE2: ATP synthase subunit b 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	34.6955656021
+UniRef50_A3PPJ6: Binding-protein-dependent transport systems inner membrane component	34.6940145471
+UniRef50_A3PPJ6: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	34.6940145471
+UniRef50_R6BWJ5: Efflux ABC transporter permease/ATP-binding protein	34.6873577308
+UniRef50_R6BWJ5: Efflux ABC transporter permease/ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	34.6873577308
+UniRef50_P04995: Exodeoxyribonuclease I	34.6870855119
+UniRef50_P04995: Exodeoxyribonuclease I|g__Escherichia.s__Escherichia_coli	34.6870855119
+UniRef50_A5UMF6: Shikimate dehydrogenase	34.6764359428
+UniRef50_A5UMF6: Shikimate dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.6764359428
+UniRef50_F2QFE8: ABC transporter, membrane-spanning permease-amino acid transport	34.6698486803
+UniRef50_F2QFE8: ABC transporter, membrane-spanning permease-amino acid transport|g__Streptococcus.s__Streptococcus_mutans	34.6698486803
+UniRef50_P45552	34.6624195869
+UniRef50_P45552|g__Escherichia.s__Escherichia_coli	34.6624195869
+UniRef50_O29757: Exosome complex component Rrp41	34.6591756879
+UniRef50_O29757: Exosome complex component Rrp41|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.6147469645
+UniRef50_O29757: Exosome complex component Rrp41|unclassified	0.0444287234
+UniRef50_I6T7T2: Permease	34.6575390291
+UniRef50_I6T7T2: Permease|g__Streptococcus.s__Streptococcus_mutans	34.6575390291
+UniRef50_L0MNT8: ATPase component of ABC transporters with duplicated ATPase domain	34.6551575935
+UniRef50_L0MNT8: ATPase component of ABC transporters with duplicated ATPase domain|g__Escherichia.s__Escherichia_coli	34.6551575935
+UniRef50_A5UKX7: Transcriptional regulator, TetR/AcrR family	34.6504282134
+UniRef50_A5UKX7: Transcriptional regulator, TetR/AcrR family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.6504282134
+UniRef50_J7Q849: Escherichia coli IMT2125 genomic chromosome, IMT2125	34.6290726817
+UniRef50_J7Q849: Escherichia coli IMT2125 genomic chromosome, IMT2125|g__Escherichia.s__Escherichia_coli	34.6290726817
+UniRef50_R9SJX9: ABC transporter ATP-binding protein	34.6244566954
+UniRef50_R9SJX9: ABC transporter ATP-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.6244566954
+UniRef50_E2NTP5	34.6111400120
+UniRef50_E2NTP5|unclassified	34.6111400120
+UniRef50_D9PYS7: Predicted single-stranded-DNA-specific exonuclease	34.5976769420
+UniRef50_D9PYS7: Predicted single-stranded-DNA-specific exonuclease|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.5976769420
+UniRef50_Q3IZJ1	34.5970936791
+UniRef50_Q3IZJ1|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.4169744806
+UniRef50_Q3IZJ1|unclassified	1.1801191985
+UniRef50_Q8X582: Laminin-binding fimbrial subunit ElfA	34.5887068950
+UniRef50_Q8X582: Laminin-binding fimbrial subunit ElfA|g__Escherichia.s__Escherichia_coli	34.5887068950
+UniRef50_P21865: Sensor protein KdpD	34.5875719761
+UniRef50_P21865: Sensor protein KdpD|g__Escherichia.s__Escherichia_coli	34.5875719761
+UniRef50_Q83L33: UPF0061 protein YdiU	34.5855443652
+UniRef50_Q83L33: UPF0061 protein YdiU|g__Escherichia.s__Escherichia_coli	34.5855443652
+UniRef50_Q7W8T4: Peptide chain release factor 2	34.5778716300
+UniRef50_Q7W8T4: Peptide chain release factor 2|g__Escherichia.s__Escherichia_coli	32.8079601256
+UniRef50_Q7W8T4: Peptide chain release factor 2|g__Acinetobacter.s__Acinetobacter_baumannii	1.7699115044
+UniRef50_P61154: Tungsten-containing formylmethanofuran dehydrogenase 2 subunit B	34.5766513462
+UniRef50_P61154: Tungsten-containing formylmethanofuran dehydrogenase 2 subunit B|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.5766513462
+UniRef50_P16688: Alpha-D-ribose 1-methylphosphonate 5-phosphate C-P lyase	34.5654292468
+UniRef50_P16688: Alpha-D-ribose 1-methylphosphonate 5-phosphate C-P lyase|g__Escherichia.s__Escherichia_coli	34.5654292468
+UniRef50_I3TIJ2: Ornithine cyclodeaminase/mu-crystallin	34.5508531736
+UniRef50_I3TIJ2: Ornithine cyclodeaminase/mu-crystallin|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.8438809516
+UniRef50_I3TIJ2: Ornithine cyclodeaminase/mu-crystallin|unclassified	0.7069722220
+UniRef50_P76656	34.5383757836
+UniRef50_P76656|g__Escherichia.s__Escherichia_coli	34.5383757836
+UniRef50_P42811: Putative 26S protease regulatory subunit homolog MTBMA_c13930	34.5251930818
+UniRef50_P42811: Putative 26S protease regulatory subunit homolog MTBMA_c13930|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.5251930818
+UniRef50_D2ZRP6	34.5228350841
+UniRef50_D2ZRP6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.4823193073
+UniRef50_D2ZRP6|unclassified	0.0405157768
+UniRef50_Q7VSN2: Glutamyl-tRNA(Gln) amidotransferase subunit A	34.5114923068
+UniRef50_Q7VSN2: Glutamyl-tRNA(Gln) amidotransferase subunit A|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.7375088704
+UniRef50_Q7VSN2: Glutamyl-tRNA(Gln) amidotransferase subunit A|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7095500560
+UniRef50_Q7VSN2: Glutamyl-tRNA(Gln) amidotransferase subunit A|g__Streptococcus.s__Streptococcus_agalactiae	1.0395010395
+UniRef50_Q7VSN2: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.0249323409
+UniRef50_Q31YX9: Elongation factor P-like protein	34.4984789505
+UniRef50_Q31YX9: Elongation factor P-like protein|g__Escherichia.s__Escherichia_coli	34.4984789505
+UniRef50_P32151	34.4906475042
+UniRef50_P32151|g__Escherichia.s__Escherichia_coli	34.4906475042
+UniRef50_P50319: Phosphoglycerate kinase, chromosomal	34.4849099545
+UniRef50_P50319: Phosphoglycerate kinase, chromosomal|g__Escherichia.s__Escherichia_coli	32.3270964163
+UniRef50_P50319: Phosphoglycerate kinase, chromosomal|g__Acinetobacter.s__Acinetobacter_baumannii	1.1990407674
+UniRef50_P50319: Phosphoglycerate kinase, chromosomal|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9587727709
+UniRef50_Q6A7Q4: Phosphopantetheine adenylyltransferase	34.4827586207
+UniRef50_Q6A7Q4: Phosphopantetheine adenylyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	34.4827586207
+UniRef50_U9Z8R5	34.4827586207
+UniRef50_U9Z8R5|g__Escherichia.s__Escherichia_coli	34.4827586207
+UniRef50_R7PU75	34.4802867384
+UniRef50_R7PU75|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.4802867384
+UniRef50_P69814: Galactitol-specific phosphotransferase enzyme IIA component	34.4783024858
+UniRef50_P69814: Galactitol-specific phosphotransferase enzyme IIA component|g__Escherichia.s__Escherichia_coli	34.4783024858
+UniRef50_P37646: Cyclic di-GMP phosphodiesterase YhjH	34.4737696555
+UniRef50_P37646: Cyclic di-GMP phosphodiesterase YhjH|g__Escherichia.s__Escherichia_coli	34.4737696555
+UniRef50_P33924	34.4639484318
+UniRef50_P33924|g__Escherichia.s__Escherichia_coli	34.4639484318
+UniRef50_A8LNR0: Sulphur oxidation protein SoxZ	34.4593380620
+UniRef50_A8LNR0: Sulphur oxidation protein SoxZ|g__Rhodobacter.s__Rhodobacter_sphaeroides	34.0400268998
+UniRef50_A8LNR0: Sulphur oxidation protein SoxZ|unclassified	0.4193111622
+UniRef50_P77510: Sensor histidine kinase DpiB	34.4574698660
+UniRef50_P77510: Sensor histidine kinase DpiB|g__Escherichia.s__Escherichia_coli	34.4574698660
+UniRef50_Q58493	34.4568242452
+UniRef50_Q58493|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.4568242452
+UniRef50_E1XQA2	34.4487700019
+UniRef50_E1XQA2|g__Streptococcus.s__Streptococcus_mutans	34.4487700019
+UniRef50_A5UMS9	34.4421709053
+UniRef50_A5UMS9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.6408888540
+UniRef50_A5UMS9|unclassified	0.8012820513
+UniRef50_I0JFD7	34.4396256614
+UniRef50_I0JFD7|g__Staphylococcus.s__Staphylococcus_aureus	34.4396256614
+UniRef50_F6A0T7: Response regulator receiver domain protein	34.4239900793
+UniRef50_F6A0T7: Response regulator receiver domain protein|g__Streptococcus.s__Streptococcus_mutans	34.4239900793
+UniRef50_P0AGF3: Sulfur acceptor protein CsdE	34.4218464417
+UniRef50_P0AGF3: Sulfur acceptor protein CsdE|g__Escherichia.s__Escherichia_coli	34.4218464417
+UniRef50_Q83IW8	34.4131634801
+UniRef50_Q83IW8|g__Escherichia.s__Escherichia_coli	34.1081446704
+UniRef50_Q83IW8|unclassified	0.3050188097
+UniRef50_Q6N6K5: Aliphatic sulfonates import ATP-binding protein SsuB	34.4087174520
+UniRef50_Q6N6K5: Aliphatic sulfonates import ATP-binding protein SsuB|g__Escherichia.s__Escherichia_coli	33.7675275430
+UniRef50_Q6N6K5: Aliphatic sulfonates import ATP-binding protein SsuB|unclassified	0.6411899091
+UniRef50_B1MWT5: Predicted permease	34.4074852568
+UniRef50_B1MWT5: Predicted permease|g__Streptococcus.s__Streptococcus_mutans	34.4074852568
+UniRef50_Q8NZA2: Putative NrdI-like protein	34.4058758011
+UniRef50_Q8NZA2: Putative NrdI-like protein|g__Streptococcus.s__Streptococcus_mutans	29.9908647635
+UniRef50_Q8NZA2: Putative NrdI-like protein|g__Streptococcus.s__Streptococcus_agalactiae	4.4150110375
+UniRef50_P75785: Phosphoethanolamine transferase OpgE	34.4012183709
+UniRef50_P75785: Phosphoethanolamine transferase OpgE|g__Escherichia.s__Escherichia_coli	34.4012183709
+UniRef50_C1KVS7: Indole-3-glycerol phosphate synthase	34.3893823517
+UniRef50_C1KVS7: Indole-3-glycerol phosphate synthase|g__Streptococcus.s__Streptococcus_mutans	34.3124385933
+UniRef50_C1KVS7: Indole-3-glycerol phosphate synthase|unclassified	0.0769437584
+UniRef50_B1B3J5	34.3880257673
+UniRef50_B1B3J5|unclassified	34.3880257673
+UniRef50_H4CJE2: Bacterial regulatory s, gntR family protein	34.3867235868
+UniRef50_H4CJE2: Bacterial regulatory s, gntR family protein|g__Staphylococcus.s__Staphylococcus_aureus	34.3867235868
+UniRef50_D1Q668	34.3853995687
+UniRef50_D1Q668|g__Staphylococcus.s__Staphylococcus_aureus	33.0436977972
+UniRef50_D1Q668|unclassified	1.3417017714
+UniRef50_I6U2E8: ABC transporter permease	34.3837041808
+UniRef50_I6U2E8: ABC transporter permease|g__Streptococcus.s__Streptococcus_mutans	34.3837041808
+UniRef50_D5ALJ9	34.3753252511
+UniRef50_D5ALJ9|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.9518866357
+UniRef50_D5ALJ9|unclassified	14.4234386154
+UniRef50_P69925: Ribonucleoside-diphosphate reductase 1 subunit beta	34.3752632806
+UniRef50_P69925: Ribonucleoside-diphosphate reductase 1 subunit beta|g__Escherichia.s__Escherichia_coli	32.5159220553
+UniRef50_P69925: Ribonucleoside-diphosphate reductase 1 subunit beta|g__Neisseria.s__Neisseria_meningitidis	0.9478672986
+UniRef50_P69925: Ribonucleoside-diphosphate reductase 1 subunit beta|unclassified	0.9114739267
+UniRef50_P27303: Multidrug export protein EmrA	34.3730957717
+UniRef50_P27303: Multidrug export protein EmrA|g__Escherichia.s__Escherichia_coli	34.3730957717
+UniRef50_D6DM05: Predicted oxidoreductases of the aldo/keto reductase family	34.3693409668
+UniRef50_D6DM05: Predicted oxidoreductases of the aldo/keto reductase family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.7491329793
+UniRef50_D6DM05: Predicted oxidoreductases of the aldo/keto reductase family|g__Clostridium.s__Clostridium_beijerinckii	3.6202079875
+UniRef50_Q1RKI0: Transcription elongation factor GreA	34.3681688473
+UniRef50_Q1RKI0: Transcription elongation factor GreA|g__Escherichia.s__Escherichia_coli	34.3681688473
+UniRef50_P77161: 2-hydroxy-3-oxopropionate reductase	34.3680939721
+UniRef50_P77161: 2-hydroxy-3-oxopropionate reductase|g__Escherichia.s__Escherichia_coli	30.1145067954
+UniRef50_P77161: 2-hydroxy-3-oxopropionate reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1208791209
+UniRef50_P77161: 2-hydroxy-3-oxopropionate reductase|unclassified	0.1327080557
+UniRef50_P57864	34.3660016654
+UniRef50_P57864|g__Streptococcus.s__Streptococcus_mutans	33.3639976574
+UniRef50_P57864|g__Neisseria.s__Neisseria_meningitidis	1.0020040080
+UniRef50_J7QD35	34.3632547434
+UniRef50_J7QD35|g__Escherichia.s__Escherichia_coli	34.3632547434
+UniRef50_P31675: Sugar efflux transporter A	34.3603333566
+UniRef50_P31675: Sugar efflux transporter A|g__Escherichia.s__Escherichia_coli	34.3603333566
+UniRef50_P0AFM0: Paraquat-inducible protein A	34.3566975897
+UniRef50_P0AFM0: Paraquat-inducible protein A|g__Escherichia.s__Escherichia_coli	34.3566975897
+UniRef50_H6PD11: Ion transport protein	34.3515741883
+UniRef50_H6PD11: Ion transport protein|g__Streptococcus.s__Streptococcus_mutans	34.3515741883
+UniRef50_N6EHF2	34.3457943925
+UniRef50_N6EHF2|g__Staphylococcus.s__Staphylococcus_aureus	34.3457943925
+UniRef50_P21829: Pyridoxal phosphate phosphatase YbhA	34.3344862611
+UniRef50_P21829: Pyridoxal phosphate phosphatase YbhA|g__Escherichia.s__Escherichia_coli	34.3344862611
+UniRef50_R9SL61: Phosphopantothenoylcysteine decarboxylase CoaC	34.3256945192
+UniRef50_R9SL61: Phosphopantothenoylcysteine decarboxylase CoaC|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.3256945192
+UniRef50_Q2NHG2: DNA polymerase II large subunit	34.3236486769
+UniRef50_Q2NHG2: DNA polymerase II large subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.3236486769
+UniRef50_Q8DBE9: Acyl-[acyl-carrier-protein]--UDP-N-acetylglucosamine O-acyltransferase	34.3147557992
+UniRef50_Q8DBE9: Acyl-[acyl-carrier-protein]--UDP-N-acetylglucosamine O-acyltransferase|g__Escherichia.s__Escherichia_coli	34.3147557992
+UniRef50_P16686: Alpha-D-ribose 1-methylphosphonate 5-triphosphate synthase subunit PhnH	34.3129736479
+UniRef50_P16686: Alpha-D-ribose 1-methylphosphonate 5-triphosphate synthase subunit PhnH|g__Escherichia.s__Escherichia_coli	34.3129736479
+UniRef50_B7MUC3: Orotidine 5'-phosphate decarboxylase	34.2948152343
+UniRef50_B7MUC3: Orotidine 5'-phosphate decarboxylase|g__Escherichia.s__Escherichia_coli	33.3978985023
+UniRef50_B7MUC3: Orotidine 5'-phosphate decarboxylase|unclassified	0.8969167321
+UniRef50_P28304: Quinone oxidoreductase 1	34.2920892244
+UniRef50_P28304: Quinone oxidoreductase 1|g__Escherichia.s__Escherichia_coli	23.5080398149
+UniRef50_P28304: Quinone oxidoreductase 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.7840494095
+UniRef50_D3E1Y2: Nitroreductase family protein	34.2894087439
+UniRef50_D3E1Y2: Nitroreductase family protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.2894087439
+UniRef50_Q46888	34.2830660615
+UniRef50_Q46888|g__Escherichia.s__Escherichia_coli	34.2830660615
+UniRef50_O26325: Cyclic 2,3-diphosphoglycerate synthetase	34.2794801888
+UniRef50_O26325: Cyclic 2,3-diphosphoglycerate synthetase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.2794801888
+UniRef50_Q9I3J5: 5-hydroxyisourate hydrolase	34.2761321599
+UniRef50_Q9I3J5: 5-hydroxyisourate hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	32.9485329485
+UniRef50_Q9I3J5: 5-hydroxyisourate hydrolase|unclassified	1.3275992114
+UniRef50_Q2P1U6: Lysine--tRNA ligase	34.2672840586
+UniRef50_Q2P1U6: Lysine--tRNA ligase|g__Escherichia.s__Escherichia_coli	26.3457978837
+UniRef50_Q2P1U6: Lysine--tRNA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0631375751
+UniRef50_Q2P1U6: Lysine--tRNA ligase|g__Neisseria.s__Neisseria_meningitidis	3.7861438491
+UniRef50_Q2P1U6: Lysine--tRNA ligase|unclassified	0.0722047507
+UniRef50_B9JSI7: Cation efflux system protein	34.2667056391
+UniRef50_B9JSI7: Cation efflux system protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	34.2667056391
+UniRef50_P39288: Epoxyqueuosine reductase	34.2623676900
+UniRef50_P39288: Epoxyqueuosine reductase|g__Escherichia.s__Escherichia_coli	34.1100054844
+UniRef50_P39288: Epoxyqueuosine reductase|unclassified	0.1523622056
+UniRef50_R9SJT9: GTP-binding protein	34.2607286997
+UniRef50_R9SJT9: GTP-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.2607286997
+UniRef50_P37645	34.2591555671
+UniRef50_P37645|g__Escherichia.s__Escherichia_coli	34.2591555671
+UniRef50_F5ZH68	34.2447995051
+UniRef50_F5ZH68|g__Streptococcus.s__Streptococcus_mutans	34.2447995051
+UniRef50_Q49173: Methyl-coenzyme M reductase II subunit gamma	34.2440200789
+UniRef50_Q49173: Methyl-coenzyme M reductase II subunit gamma|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.2440200789
+UniRef50_C5N6P2	34.2432138593
+UniRef50_C5N6P2|g__Staphylococcus.s__Staphylococcus_aureus	32.8992636058
+UniRef50_C5N6P2|unclassified	1.3439502534
+UniRef50_P36645: Protein transport protein HofB homolog	34.2357506794
+UniRef50_P36645: Protein transport protein HofB homolog|g__Escherichia.s__Escherichia_coli	34.2357506794
+UniRef50_C6SR09	34.1981983650
+UniRef50_C6SR09|g__Streptococcus.s__Streptococcus_mutans	34.1981983650
+UniRef50_F5X1D7: Polysaccharide deacetylase family protein	34.1954767042
+UniRef50_F5X1D7: Polysaccharide deacetylase family protein|g__Streptococcus.s__Streptococcus_mutans	34.1954767042
+UniRef50_R7PS51	34.1924534283
+UniRef50_R7PS51|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.1924534283
+UniRef50_A5UN55: DNA-directed RNA polymerase subunit D	34.1876892010
+UniRef50_A5UN55: DNA-directed RNA polymerase subunit D|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.1876892010
+UniRef50_D2N4E4	34.1829434134
+UniRef50_D2N4E4|g__Staphylococcus.s__Staphylococcus_aureus	31.4742436856
+UniRef50_D2N4E4|unclassified	2.7086997279
+UniRef50_Q8DUY3: Putative two-component membrane permease complex subunit SMU_747c	34.1776326300
+UniRef50_Q8DUY3: Putative two-component membrane permease complex subunit SMU_747c|g__Streptococcus.s__Streptococcus_mutans	34.1776326300
+UniRef50_P77598	34.1724115331
+UniRef50_P77598|g__Escherichia.s__Escherichia_coli	34.1724115331
+UniRef50_K4PPW1: Formate/nitrite transporter	34.1679089967
+UniRef50_K4PPW1: Formate/nitrite transporter|g__Streptococcus.s__Streptococcus_mutans	34.1679089967
+UniRef50_Q8FL94: DnaJ-like protein DjlA	34.1678130641
+UniRef50_Q8FL94: DnaJ-like protein DjlA|g__Escherichia.s__Escherichia_coli	34.1678130641
+UniRef50_A0A021V5W0: LctP family lactate transporter	34.1621359898
+UniRef50_A0A021V5W0: LctP family lactate transporter|g__Staphylococcus.s__Staphylococcus_aureus	34.1621359898
+UniRef50_A0PNB2: 6-pyruvoyl tetrahydrobiopterin synthase	34.1553650104
+UniRef50_A0PNB2: 6-pyruvoyl tetrahydrobiopterin synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	28.4049677139
+UniRef50_A0PNB2: 6-pyruvoyl tetrahydrobiopterin synthase|g__Escherichia.s__Escherichia_coli	5.6267806268
+UniRef50_A0PNB2: 6-pyruvoyl tetrahydrobiopterin synthase|unclassified	0.1236166697
+UniRef50_Q928I1: Triosephosphate isomerase 1	34.1500009862
+UniRef50_Q928I1: Triosephosphate isomerase 1|g__Streptococcus.s__Streptococcus_mutans	33.8429924914
+UniRef50_Q928I1: Triosephosphate isomerase 1|unclassified	0.3070084948
+UniRef50_P39404: Transcriptional activator protein BglJ	34.1495134431
+UniRef50_P39404: Transcriptional activator protein BglJ|g__Escherichia.s__Escherichia_coli	34.1495134431
+UniRef50_W1GAW9: Tryptophan-specific transport protein	34.1439119203
+UniRef50_W1GAW9: Tryptophan-specific transport protein|g__Escherichia.s__Escherichia_coli	34.1439119203
+UniRef50_C4WZ51: Sugar ABC transport system permease component	34.1383780282
+UniRef50_C4WZ51: Sugar ABC transport system permease component|g__Rhodobacter.s__Rhodobacter_sphaeroides	34.1383780282
+UniRef50_F8G1E1	34.1372875061
+UniRef50_F8G1E1|g__Pseudomonas.s__Pseudomonas_aeruginosa	34.1372875061
+UniRef50_P0ACK4: Putative aga operon transcriptional repressor	34.1317657247
+UniRef50_P0ACK4: Putative aga operon transcriptional repressor|g__Escherichia.s__Escherichia_coli	34.1317657247
+UniRef50_P0AAK6: Electron transport protein HydN	34.1253127455
+UniRef50_P0AAK6: Electron transport protein HydN|g__Escherichia.s__Escherichia_coli	34.1253127455
+UniRef50_D3E348	34.1251534689
+UniRef50_D3E348|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.1251534689
+UniRef50_R4NJP1: Signal peptidase I	34.1218501367
+UniRef50_R4NJP1: Signal peptidase I|g__Streptococcus.s__Streptococcus_mutans	34.1218501367
+UniRef50_P44908	34.1167563254
+UniRef50_P44908|g__Pseudomonas.s__Pseudomonas_aeruginosa	19.9833794209
+UniRef50_P44908|g__Escherichia.s__Escherichia_coli	14.1333769046
+UniRef50_R9SHS2: Xaa-Pro aminopeptidase	34.1090705062
+UniRef50_R9SHS2: Xaa-Pro aminopeptidase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.1090705062
+UniRef50_P77467: 1,2-epoxyphenylacetyl-CoA isomerase	34.1053092037
+UniRef50_P77467: 1,2-epoxyphenylacetyl-CoA isomerase|g__Escherichia.s__Escherichia_coli	34.1053092037
+UniRef50_I6SUE0: ABC transporter permease	34.0924195137
+UniRef50_I6SUE0: ABC transporter permease|g__Streptococcus.s__Streptococcus_mutans	34.0924195137
+UniRef50_P77463: Probable D,D-dipeptide transport system permease protein DdpC	34.0904592313
+UniRef50_P77463: Probable D,D-dipeptide transport system permease protein DdpC|g__Escherichia.s__Escherichia_coli	34.0904592313
+UniRef50_Q8CQ71: Arsenical pump membrane protein	34.0858114667
+UniRef50_Q8CQ71: Arsenical pump membrane protein|g__Staphylococcus.s__Staphylococcus_epidermidis	34.0858114667
+UniRef50_P0AFQ9	34.0746734478
+UniRef50_P0AFQ9|g__Escherichia.s__Escherichia_coli	34.0746734478
+UniRef50_P24255: RNA polymerase sigma-54 factor	34.0600226763
+UniRef50_P24255: RNA polymerase sigma-54 factor|g__Escherichia.s__Escherichia_coli	34.0600226763
+UniRef50_Q5HMD2: HD domain protein	34.0585998078
+UniRef50_Q5HMD2: HD domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	34.0585998078
+UniRef50_P77265: Multidrug resistance-like ATP-binding protein MdlA	34.0541510225
+UniRef50_P77265: Multidrug resistance-like ATP-binding protein MdlA|g__Escherichia.s__Escherichia_coli	33.9614408404
+UniRef50_P77265: Multidrug resistance-like ATP-binding protein MdlA|unclassified	0.0927101820
+UniRef50_D3EVZ5: Rossmann fold nucleotide-binding protein Smf possibly involved in DNA uptake truncated	34.0490377623
+UniRef50_D3EVZ5: Rossmann fold nucleotide-binding protein Smf possibly involved in DNA uptake truncated|g__Staphylococcus.s__Staphylococcus_aureus	34.0490377623
+UniRef50_R9SKB3	34.0433351906
+UniRef50_R9SKB3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	34.0433351906
+UniRef50_P0ABI6: Magnesium transport protein CorA	34.0395839560
+UniRef50_P0ABI6: Magnesium transport protein CorA|g__Escherichia.s__Escherichia_coli	34.0395839560
+UniRef50_P23173: Low affinity tryptophan permease	34.0296340830
+UniRef50_P23173: Low affinity tryptophan permease|g__Escherichia.s__Escherichia_coli	34.0296340830
+UniRef50_P0ADW7	34.0163815805
+UniRef50_P0ADW7|g__Escherichia.s__Escherichia_coli	34.0163815805
+UniRef50_P0A9P5: Thioredoxin reductase	34.0121567285
+UniRef50_P0A9P5: Thioredoxin reductase|g__Escherichia.s__Escherichia_coli	18.6433749398
+UniRef50_P0A9P5: Thioredoxin reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.3353231430
+UniRef50_P0A9P5: Thioredoxin reductase|unclassified	1.0334586457
+UniRef50_P76016: PTS-dependent dihydroxyacetone kinase operon regulatory protein	34.0062255101
+UniRef50_P76016: PTS-dependent dihydroxyacetone kinase operon regulatory protein|g__Escherichia.s__Escherichia_coli	34.0062255101
+UniRef50_O29399: tRNA-splicing ligase RtcB	33.9910172002
+UniRef50_O29399: tRNA-splicing ligase RtcB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.9910172002
+UniRef50_P0AG16: Amidophosphoribosyltransferase	33.9844433472
+UniRef50_P0AG16: Amidophosphoribosyltransferase|g__Escherichia.s__Escherichia_coli	33.9844433472
+UniRef50_P37908: UPF0053 inner membrane protein YfjD	33.9606577132
+UniRef50_P37908: UPF0053 inner membrane protein YfjD|g__Escherichia.s__Escherichia_coli	33.9606577132
+UniRef50_P37018	33.9543812318
+UniRef50_P37018|g__Escherichia.s__Escherichia_coli	33.9543812318
+UniRef50_A5ULW0	33.9438024088
+UniRef50_A5ULW0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.9438024088
+UniRef50_A5UMV0: Glycosyltransferase, GT2 family	33.9385038445
+UniRef50_A5UMV0: Glycosyltransferase, GT2 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.9385038445
+UniRef50_Q2NEQ0: Histidinol-phosphate aminotransferase	33.9352760201
+UniRef50_Q2NEQ0: Histidinol-phosphate aminotransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.5463327063
+UniRef50_Q2NEQ0: Histidinol-phosphate aminotransferase|unclassified	0.3889433138
+UniRef50_A7ZQP2: Flap endonuclease Xni	33.9352173309
+UniRef50_A7ZQP2: Flap endonuclease Xni|g__Escherichia.s__Escherichia_coli	33.9352173309
+UniRef50_Q88V19: Glutamate racemase	33.9347350462
+UniRef50_Q88V19: Glutamate racemase|g__Streptococcus.s__Streptococcus_mutans	33.9347350462
+UniRef50_P19497: Coenzyme F420 hydrogenase subunit delta	33.9322278518
+UniRef50_P19497: Coenzyme F420 hydrogenase subunit delta|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.9322278518
+UniRef50_Q8ZRA1: Acetyl esterase	33.9266478075
+UniRef50_Q8ZRA1: Acetyl esterase|g__Escherichia.s__Escherichia_coli	33.9266478075
+UniRef50_P44093	33.9133131979
+UniRef50_P44093|g__Escherichia.s__Escherichia_coli	33.9133131979
+UniRef50_U5AN41	33.8983050847
+UniRef50_U5AN41|unclassified	33.8983050847
+UniRef50_P76108: Putative ABC transporter periplasmic-binding protein YdcS	33.8870239639
+UniRef50_P76108: Putative ABC transporter periplasmic-binding protein YdcS|g__Escherichia.s__Escherichia_coli	33.8870239639
+UniRef50_Q5E4Y6: Multidrug resistance protein NorM	33.8851407215
+UniRef50_Q5E4Y6: Multidrug resistance protein NorM|g__Escherichia.s__Escherichia_coli	33.8851407215
+UniRef50_A9MKV9: Hydroxyethylthiazole kinase	33.8850772326
+UniRef50_A9MKV9: Hydroxyethylthiazole kinase|g__Escherichia.s__Escherichia_coli	33.7251016442
+UniRef50_A9MKV9: Hydroxyethylthiazole kinase|unclassified	0.1599755884
+UniRef50_S4X853	33.8830313513
+UniRef50_S4X853|g__Staphylococcus.s__Staphylococcus_epidermidis	22.7069229769
+UniRef50_S4X853|g__Staphylococcus.s__Staphylococcus_aureus	11.1761083744
+UniRef50_P32140: Sulfoquinovose isomerase	33.8786190369
+UniRef50_P32140: Sulfoquinovose isomerase|g__Escherichia.s__Escherichia_coli	33.8786190369
+UniRef50_A7ZS72: Phosphoglucosamine mutase	33.8786159248
+UniRef50_A7ZS72: Phosphoglucosamine mutase|g__Escherichia.s__Escherichia_coli	33.8384950323
+UniRef50_A7ZS72: Phosphoglucosamine mutase|unclassified	0.0401208925
+UniRef50_D5WIJ5	33.8707521798
+UniRef50_D5WIJ5|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.8707521798
+UniRef50_D8HER7	33.8696853537
+UniRef50_D8HER7|g__Staphylococcus.s__Staphylococcus_aureus	21.2241043445
+UniRef50_D8HER7|g__Staphylococcus.s__Staphylococcus_epidermidis	12.6455810092
+UniRef50_Q3IWD8	33.8557471399
+UniRef50_Q3IWD8|unclassified	24.5964878806
+UniRef50_Q3IWD8|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.2592592593
+UniRef50_P24532: Argininosuccinate synthase	33.8551931499
+UniRef50_P24532: Argininosuccinate synthase|g__Escherichia.s__Escherichia_coli	27.4316910573
+UniRef50_P24532: Argininosuccinate synthase|g__Acinetobacter.s__Acinetobacter_baumannii	4.1721105581
+UniRef50_P24532: Argininosuccinate synthase|g__Propionibacterium.s__Propionibacterium_acnes	1.7955047260
+UniRef50_P24532: Argininosuccinate synthase|unclassified	0.4558868084
+UniRef50_P31440: Adenine permease AdeQ	33.8519317998
+UniRef50_P31440: Adenine permease AdeQ|g__Escherichia.s__Escherichia_coli	33.8519317998
+UniRef50_Q8DW69	33.8516846060
+UniRef50_Q8DW69|g__Streptococcus.s__Streptococcus_mutans	33.8516846060
+UniRef50_P58839: Glyceraldehyde-3-phosphate dehydrogenase	33.8514595391
+UniRef50_P58839: Glyceraldehyde-3-phosphate dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.8514595391
+UniRef50_P03014: DNA-invertase from lambdoid prophage e14	33.8510930714
+UniRef50_P03014: DNA-invertase from lambdoid prophage e14|g__Escherichia.s__Escherichia_coli	28.5939072230
+UniRef50_P03014: DNA-invertase from lambdoid prophage e14|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2571858485
+UniRef50_R7MPC8: ComG operon protein 4	33.8480593743
+UniRef50_R7MPC8: ComG operon protein 4|g__Streptococcus.s__Streptococcus_mutans	33.7031848414
+UniRef50_R7MPC8: ComG operon protein 4|unclassified	0.1448745329
+UniRef50_D3DZE6: Transcriptional regulator LysR family	33.8462967803
+UniRef50_D3DZE6: Transcriptional regulator LysR family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.8462967803
+UniRef50_P0AGN1: Xanthine permease XanP	33.8391112936
+UniRef50_P0AGN1: Xanthine permease XanP|g__Escherichia.s__Escherichia_coli	33.8391112936
+UniRef50_T1Y6R7: Membrane lipoprotein	33.8373064214
+UniRef50_T1Y6R7: Membrane lipoprotein|g__Staphylococcus.s__Staphylococcus_aureus	33.8373064214
+UniRef50_Q9V150: Tryptophan synthase beta chain 2	33.8256675102
+UniRef50_Q9V150: Tryptophan synthase beta chain 2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.6554582964
+UniRef50_Q9V150: Tryptophan synthase beta chain 2|unclassified	0.1702092138
+UniRef50_P61951: Flavodoxin-1	33.8234235814
+UniRef50_P61951: Flavodoxin-1|g__Escherichia.s__Escherichia_coli	33.8234235814
+UniRef50_Q2NHY4: Predicted ATPase	33.8102868385
+UniRef50_Q2NHY4: Predicted ATPase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.8102868385
+UniRef50_D2BL86: Undecaprenyl-phosphate alpha-N-acetylglucosaminephosphotransferase	33.8101105547
+UniRef50_D2BL86: Undecaprenyl-phosphate alpha-N-acetylglucosaminephosphotransferase|g__Streptococcus.s__Streptococcus_mutans	32.5538291476
+UniRef50_D2BL86: Undecaprenyl-phosphate alpha-N-acetylglucosaminephosphotransferase|g__Streptococcus.s__Streptococcus_agalactiae	1.2562814070
+UniRef50_P31672: NifS/IcsS protein homolog	33.8070184718
+UniRef50_P31672: NifS/IcsS protein homolog|g__Streptococcus.s__Streptococcus_mutans	33.8070184718
+UniRef50_Q32GE1: Quinate/shikimate dehydrogenase	33.7823129040
+UniRef50_Q32GE1: Quinate/shikimate dehydrogenase|g__Escherichia.s__Escherichia_coli	33.7823129040
+UniRef50_A0A023VR15	33.7769676638
+UniRef50_A0A023VR15|g__Streptococcus.s__Streptococcus_mutans	32.4992222206
+UniRef50_A0A023VR15|g__Streptococcus.s__Streptococcus_agalactiae	1.2777454432
+UniRef50_Q4QLY5: Glycine--tRNA ligase beta subunit	33.7759116681
+UniRef50_Q4QLY5: Glycine--tRNA ligase beta subunit|g__Escherichia.s__Escherichia_coli	33.7759116681
+UniRef50_A3PNM9: ROK family protein	33.7747014550
+UniRef50_A3PNM9: ROK family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.7747014550
+UniRef50_P0AEG3: Dipeptide transport system permease protein DppC	33.7646374327
+UniRef50_P0AEG3: Dipeptide transport system permease protein DppC|g__Escherichia.s__Escherichia_coli	30.8496453890
+UniRef50_P0AEG3: Dipeptide transport system permease protein DppC|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9149920437
+UniRef50_P67664: HTH-type transcriptional activator AaeR	33.7642030426
+UniRef50_P67664: HTH-type transcriptional activator AaeR|g__Escherichia.s__Escherichia_coli	33.7642030426
+UniRef50_P33919	33.7600077582
+UniRef50_P33919|g__Escherichia.s__Escherichia_coli	33.7600077582
+UniRef50_Q8X800: D-methionine transport system permease protein MetI	33.7595592487
+UniRef50_Q8X800: D-methionine transport system permease protein MetI|g__Escherichia.s__Escherichia_coli	33.7595592487
+UniRef50_A5ULR3: 7-cyano-7-deazaguanine synthase	33.7573161284
+UniRef50_A5ULR3: 7-cyano-7-deazaguanine synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.7573161284
+UniRef50_O75600: 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial	33.7569625093
+UniRef50_O75600: 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial|g__Escherichia.s__Escherichia_coli	33.0781041140
+UniRef50_O75600: 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial|unclassified	0.6788583953
+UniRef50_C6SP30	33.7508196572
+UniRef50_C6SP30|g__Streptococcus.s__Streptococcus_mutans	33.7508196572
+UniRef50_P33554: Prepilin peptidase-dependent protein A	33.7490587614
+UniRef50_P33554: Prepilin peptidase-dependent protein A|g__Escherichia.s__Escherichia_coli	33.7490587614
+UniRef50_X3EYH3: DNA mismatch repair protein MutL	33.7468961223
+UniRef50_X3EYH3: DNA mismatch repair protein MutL|g__Escherichia.s__Escherichia_coli	33.7468961223
+UniRef50_U3SVL6	33.7410272940
+UniRef50_U3SVL6|g__Streptococcus.s__Streptococcus_mutans	33.7410272940
+UniRef50_P20506: L-Threonine dehydratase biosynthetic IlvA	33.7362861557
+UniRef50_P20506: L-Threonine dehydratase biosynthetic IlvA|g__Escherichia.s__Escherichia_coli	32.5546686046
+UniRef50_P20506: L-Threonine dehydratase biosynthetic IlvA|g__Deinococcus.s__Deinococcus_radiodurans	0.8771929825
+UniRef50_P20506: L-Threonine dehydratase biosynthetic IlvA|unclassified	0.3044245686
+UniRef50_Q83Q93: Biosynthetic arginine decarboxylase	33.7360897323
+UniRef50_Q83Q93: Biosynthetic arginine decarboxylase|g__Escherichia.s__Escherichia_coli	33.7360897323
+UniRef50_O26938: Aspartate carbamoyltransferase regulatory chain	33.7329814548
+UniRef50_O26938: Aspartate carbamoyltransferase regulatory chain|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.7329814548
+UniRef50_B9KTQ6: TRAP-T family transporter, large (12 TMs) inner membrane subunit	33.7319230573
+UniRef50_B9KTQ6: TRAP-T family transporter, large (12 TMs) inner membrane subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.3547972319
+UniRef50_B9KTQ6: TRAP-T family transporter, large (12 TMs) inner membrane subunit|unclassified	0.3771258254
+UniRef50_I3X570: Phosphotriesterase protein Php	33.7313226787
+UniRef50_I3X570: Phosphotriesterase protein Php|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.7313226787
+UniRef50_M2HNY3	33.7301587302
+UniRef50_M2HNY3|g__Streptococcus.s__Streptococcus_mutans	17.8571428571
+UniRef50_M2HNY3|unclassified	15.8730158730
+UniRef50_O27221	33.7232172664
+UniRef50_O27221|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.7232172664
+UniRef50_P75978	33.7117556573
+UniRef50_P75978|g__Escherichia.s__Escherichia_coli	33.7117556573
+UniRef50_P0DM86: Clamp-binding protein CrfC	33.6857022692
+UniRef50_P0DM86: Clamp-binding protein CrfC|g__Escherichia.s__Escherichia_coli	33.6857022692
+UniRef50_P0AFU3	33.6812913407
+UniRef50_P0AFU3|g__Escherichia.s__Escherichia_coli	28.6943558944
+UniRef50_P0AFU3|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9869354463
+UniRef50_I6U2K4: Transcriptional regulator	33.6747226703
+UniRef50_I6U2K4: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	33.6747226703
+UniRef50_I6TXK4: Prephenate dehydrogenase	33.6691835027
+UniRef50_I6TXK4: Prephenate dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	33.6691835027
+UniRef50_B9KSM2: Alcohol dehydrogenase GroES domain protein	33.6670474655
+UniRef50_B9KSM2: Alcohol dehydrogenase GroES domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.6670474655
+UniRef50_A3PQ44	33.6631586975
+UniRef50_A3PQ44|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.6631586975
+UniRef50_Q3IV87: Caspase-1, p20	33.6594525327
+UniRef50_Q3IV87: Caspase-1, p20|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.6594525327
+UniRef50_B9KMC5: Transcriptional regulator, LysR family	33.6489859109
+UniRef50_B9KMC5: Transcriptional regulator, LysR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.6489859109
+UniRef50_C5WGS2: Amino acid ABC transporter extracellular-binding protein	33.6395374704
+UniRef50_C5WGS2: Amino acid ABC transporter extracellular-binding protein|g__Streptococcus.s__Streptococcus_mutans	33.6395374704
+UniRef50_P77439: Multiphosphoryl transfer protein 1	33.6381435738
+UniRef50_P77439: Multiphosphoryl transfer protein 1|g__Escherichia.s__Escherichia_coli	33.6381435738
+UniRef50_O32333: Glucitol/sorbitol-specific phosphotransferase enzyme IIB component	33.6306554103
+UniRef50_O32333: Glucitol/sorbitol-specific phosphotransferase enzyme IIB component|g__Streptococcus.s__Streptococcus_mutans	28.6350905716
+UniRef50_O32333: Glucitol/sorbitol-specific phosphotransferase enzyme IIB component|g__Clostridium.s__Clostridium_beijerinckii	4.0413663654
+UniRef50_O32333: Glucitol/sorbitol-specific phosphotransferase enzyme IIB component|g__Propionibacterium.s__Propionibacterium_acnes	0.9541984733
+UniRef50_I6TXL9	33.6292900999
+UniRef50_I6TXL9|g__Streptococcus.s__Streptococcus_mutans	33.6292900999
+UniRef50_O59521: Elongation factor 2	33.6237508833
+UniRef50_O59521: Elongation factor 2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.6237508833
+UniRef50_Q8CTY1	33.6206896552
+UniRef50_Q8CTY1|g__Staphylococcus.s__Staphylococcus_epidermidis	33.6206896552
+UniRef50_P39830: Inner membrane protein YbaL	33.6205191037
+UniRef50_P39830: Inner membrane protein YbaL|g__Escherichia.s__Escherichia_coli	33.6205191037
+UniRef50_P77626	33.6184443560
+UniRef50_P77626|g__Escherichia.s__Escherichia_coli	33.6184443560
+UniRef50_A5ULA0: Multidrug ABC transporter, ATPase component	33.6156711019
+UniRef50_A5ULA0: Multidrug ABC transporter, ATPase component|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.6156711019
+UniRef50_C6DH09: Dipeptide and tripeptide permease A	33.6112626639
+UniRef50_C6DH09: Dipeptide and tripeptide permease A|g__Escherichia.s__Escherichia_coli	33.6112626639
+UniRef50_P76298: Flagellar biosynthesis protein FlhA	33.6110614332
+UniRef50_P76298: Flagellar biosynthesis protein FlhA|g__Escherichia.s__Escherichia_coli	33.6110614332
+UniRef50_Q46907: Putative electron transfer flavoprotein subunit YgcQ	33.6041313713
+UniRef50_Q46907: Putative electron transfer flavoprotein subunit YgcQ|g__Escherichia.s__Escherichia_coli	33.6041313713
+UniRef50_D3E234	33.5981200052
+UniRef50_D3E234|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.5981200052
+UniRef50_R7PVB1: Formate dehydrogenase alpha subunit FdhA	33.5954602114
+UniRef50_R7PVB1: Formate dehydrogenase alpha subunit FdhA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.5954602114
+UniRef50_A5UME7: Arsenite-transporting ATPase	33.5836195586
+UniRef50_A5UME7: Arsenite-transporting ATPase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.5836195586
+UniRef50_P77279: Probable iron export ATP-binding protein FetA	33.5817412551
+UniRef50_P77279: Probable iron export ATP-binding protein FetA|g__Escherichia.s__Escherichia_coli	33.5817412551
+UniRef50_A6V8Q7: Signal peptidase I	33.5766289004
+UniRef50_A6V8Q7: Signal peptidase I|g__Pseudomonas.s__Pseudomonas_aeruginosa	33.5766289004
+UniRef50_Q87C91: Phosphate-binding protein PstS	33.5645074249
+UniRef50_Q87C91: Phosphate-binding protein PstS|g__Escherichia.s__Escherichia_coli	33.5645074249
+UniRef50_C2BE18: Putative cytochrome C oxidase subunit 1 (Fragment)	33.5548761700
+UniRef50_C2BE18: Putative cytochrome C oxidase subunit 1 (Fragment)|unclassified	33.5548761700
+UniRef50_U3SRI3	33.5486104193
+UniRef50_U3SRI3|g__Streptococcus.s__Streptococcus_mutans	33.5486104193
+UniRef50_P67446: Xanthine permease XanQ	33.5482201113
+UniRef50_P67446: Xanthine permease XanQ|g__Escherichia.s__Escherichia_coli	33.5482201113
+UniRef50_A5UM90: Adhesin-like protein	33.5443359794
+UniRef50_A5UM90: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.5443359794
+UniRef50_Q483C5: Holliday junction ATP-dependent DNA helicase RuvA	33.5355551515
+UniRef50_Q483C5: Holliday junction ATP-dependent DNA helicase RuvA|g__Pseudomonas.s__Pseudomonas_aeruginosa	22.2607687295
+UniRef50_Q483C5: Holliday junction ATP-dependent DNA helicase RuvA|g__Escherichia.s__Escherichia_coli	11.2747864220
+UniRef50_A3PQB2: Transcriptional regulator, LacI family	33.5344202567
+UniRef50_A3PQB2: Transcriptional regulator, LacI family|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.5344202567
+UniRef50_Q2FEJ8: HTH-type transcriptional regulator SarR	33.5308012444
+UniRef50_Q2FEJ8: HTH-type transcriptional regulator SarR|g__Staphylococcus.s__Staphylococcus_epidermidis	17.9732335895
+UniRef50_Q2FEJ8: HTH-type transcriptional regulator SarR|g__Staphylococcus.s__Staphylococcus_aureus	15.5575676549
+UniRef50_E3G1M3: Ribose 1,5-bisphosphate phosphokinase PhnN	33.5299901589
+UniRef50_E3G1M3: Ribose 1,5-bisphosphate phosphokinase PhnN|g__Escherichia.s__Escherichia_coli	33.5299901589
+UniRef50_P77625: Sugar phosphatase YfbT	33.5248370083
+UniRef50_P77625: Sugar phosphatase YfbT|g__Escherichia.s__Escherichia_coli	33.1605808894
+UniRef50_P77625: Sugar phosphatase YfbT|unclassified	0.3642561189
+UniRef50_P16326: Flagellar hook-associated protein 3	33.5239028479
+UniRef50_P16326: Flagellar hook-associated protein 3|g__Escherichia.s__Escherichia_coli	33.5239028479
+UniRef50_P39333: Cyclic-di-GMP-binding biofilm dispersal mediator protein	33.5036518047
+UniRef50_P39333: Cyclic-di-GMP-binding biofilm dispersal mediator protein|g__Escherichia.s__Escherichia_coli	33.5036518047
+UniRef50_Q58239: Peptide chain release factor subunit 1	33.4997912082
+UniRef50_Q58239: Peptide chain release factor subunit 1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.4997912082
+UniRef50_X5F4R0	33.4956567518
+UniRef50_X5F4R0|unclassified	25.8620689655
+UniRef50_X5F4R0|g__Neisseria.s__Neisseria_meningitidis	7.6335877863
+UniRef50_P45148: Carbonic anhydrase 2	33.4899385426
+UniRef50_P45148: Carbonic anhydrase 2|g__Escherichia.s__Escherichia_coli	33.3362941133
+UniRef50_P45148: Carbonic anhydrase 2|unclassified	0.1536444293
+UniRef50_A5IR31: Transcriptional regulator, XRE family	33.4866589644
+UniRef50_A5IR31: Transcriptional regulator, XRE family|g__Staphylococcus.s__Staphylococcus_aureus	33.4866589644
+UniRef50_Q57QS3: Ribosomal RNA large subunit methyltransferase I	33.4838243592
+UniRef50_Q57QS3: Ribosomal RNA large subunit methyltransferase I|g__Escherichia.s__Escherichia_coli	33.4838243592
+UniRef50_UPI00035DAFDB: hypothetical protein	33.4817119721
+UniRef50_UPI00035DAFDB: hypothetical protein|g__Streptococcus.s__Streptococcus_mutans	33.4817119721
+UniRef50_R7BMM6: Glycerol-3-phosphate cytidyltransferase TagD	33.4758824315
+UniRef50_R7BMM6: Glycerol-3-phosphate cytidyltransferase TagD|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.4758824315
+UniRef50_P76250: HTH-type transcriptional regulator DmlR	33.4728534982
+UniRef50_P76250: HTH-type transcriptional regulator DmlR|g__Escherichia.s__Escherichia_coli	33.4728534982
+UniRef50_P45015: Protein NrfC homolog	33.4654749430
+UniRef50_P45015: Protein NrfC homolog|g__Escherichia.s__Escherichia_coli	33.4654749430
+UniRef50_L1K8T7	33.4574420136
+UniRef50_L1K8T7|unclassified	33.4574420136
+UniRef50_P0A9S4: Galactitol-1-phosphate 5-dehydrogenase	33.4523536555
+UniRef50_P0A9S4: Galactitol-1-phosphate 5-dehydrogenase|g__Escherichia.s__Escherichia_coli	33.4523536555
+UniRef50_K9NE14	33.4409078839
+UniRef50_K9NE14|g__Pseudomonas.s__Pseudomonas_aeruginosa	33.4409078839
+UniRef50_P45539: Putative fructoselysine transporter FrlA	33.4366335793
+UniRef50_P45539: Putative fructoselysine transporter FrlA|g__Escherichia.s__Escherichia_coli	32.0890405613
+UniRef50_P45539: Putative fructoselysine transporter FrlA|unclassified	1.3475930179
+UniRef50_A4WXV4	33.4316284445
+UniRef50_A4WXV4|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.4316284445
+UniRef50_P0ABF0: Carbonic anhydrase 1	33.4270264311
+UniRef50_P0ABF0: Carbonic anhydrase 1|g__Escherichia.s__Escherichia_coli	33.4270264311
+UniRef50_R9SLB3	33.4246690191
+UniRef50_R9SLB3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.4246690191
+UniRef50_A9I0G7: Orotate phosphoribosyltransferase	33.4174430324
+UniRef50_A9I0G7: Orotate phosphoribosyltransferase|g__Escherichia.s__Escherichia_coli	33.4174430324
+UniRef50_Q21LG2: tRNA (guanine-N(1)-)-methyltransferase	33.4163697262
+UniRef50_Q21LG2: tRNA (guanine-N(1)-)-methyltransferase|g__Escherichia.s__Escherichia_coli	21.0173025743
+UniRef50_Q21LG2: tRNA (guanine-N(1)-)-methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.9922133863
+UniRef50_Q21LG2: tRNA (guanine-N(1)-)-methyltransferase|g__Neisseria.s__Neisseria_meningitidis	2.2935779817
+UniRef50_Q21LG2: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.1132757840
+UniRef50_P0AB72: Fructose-bisphosphate aldolase class 2	33.4071929385
+UniRef50_P0AB72: Fructose-bisphosphate aldolase class 2|g__Escherichia.s__Escherichia_coli	33.4071929385
+UniRef50_B2U084: Protein CsiD	33.3992879631
+UniRef50_B2U084: Protein CsiD|g__Escherichia.s__Escherichia_coli	33.3992879631
+UniRef50_P0AGI6: Xylose transport system permease protein XylH	33.3973427237
+UniRef50_P0AGI6: Xylose transport system permease protein XylH|g__Escherichia.s__Escherichia_coli	33.3973427237
+UniRef50_Q8D0P1: Chemotaxis protein CheY	33.3857663669
+UniRef50_Q8D0P1: Chemotaxis protein CheY|g__Escherichia.s__Escherichia_coli	33.3857663669
+UniRef50_C5N3V2	33.3821504959
+UniRef50_C5N3V2|g__Staphylococcus.s__Staphylococcus_aureus	33.3821504959
+UniRef50_W6A6C9: Citrate lyase subunit alpha	33.3791874640
+UniRef50_W6A6C9: Citrate lyase subunit alpha|g__Streptococcus.s__Streptococcus_mutans	33.3791874640
+UniRef50_A5UNC4: Predicted coenzyme PQQ synthesis protein	33.3783828727
+UniRef50_A5UNC4: Predicted coenzyme PQQ synthesis protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.3783828727
+UniRef50_B8CSC0: Lipoprotein signal peptidase	33.3754455764
+UniRef50_B8CSC0: Lipoprotein signal peptidase|g__Escherichia.s__Escherichia_coli	33.2570879496
+UniRef50_B8CSC0: Lipoprotein signal peptidase|unclassified	0.1183576268
+UniRef50_Q47VJ8: Ribosomal RNA small subunit methyltransferase A	33.3702974572
+UniRef50_Q47VJ8: Ribosomal RNA small subunit methyltransferase A|g__Escherichia.s__Escherichia_coli	33.3702974572
+UniRef50_P0ABM0: Heme exporter protein B	33.3685248408
+UniRef50_P0ABM0: Heme exporter protein B|g__Escherichia.s__Escherichia_coli	28.9201547657
+UniRef50_P0ABM0: Heme exporter protein B|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4483700751
+UniRef50_D3HDQ8	33.3581758381
+UniRef50_D3HDQ8|g__Streptococcus.s__Streptococcus_mutans	33.3581758381
+UniRef50_A5UMN0: Glutamyl-tRNA(Gln) amidotransferase subunit A	33.3552136822
+UniRef50_A5UMN0: Glutamyl-tRNA(Gln) amidotransferase subunit A|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.3552136822
+UniRef50_B9NR02	33.3392442374
+UniRef50_B9NR02|unclassified	33.3392442374
+UniRef50_R6Z842: [citrate (Pro-3S)-lyase] ligase	33.3343777476
+UniRef50_R6Z842: [citrate (Pro-3S)-lyase] ligase|g__Streptococcus.s__Streptococcus_mutans	33.3343777476
+UniRef50_H1Y825: Cupin 2 conserved barrel domain protein	33.3333333333
+UniRef50_H1Y825: Cupin 2 conserved barrel domain protein|g__Streptococcus.s__Streptococcus_agalactiae	33.3333333333
+UniRef50_Q8CSL6	33.3333333333
+UniRef50_Q8CSL6|g__Staphylococcus.s__Staphylococcus_epidermidis	33.3333333333
+UniRef50_P76352	33.3273987980
+UniRef50_P76352|g__Escherichia.s__Escherichia_coli	33.3273987980
+UniRef50_P13522: Sucrose-6-phosphate hydrolase	33.3158428343
+UniRef50_P13522: Sucrose-6-phosphate hydrolase|g__Streptococcus.s__Streptococcus_mutans	32.6204325422
+UniRef50_P13522: Sucrose-6-phosphate hydrolase|g__Streptococcus.s__Streptococcus_agalactiae	0.6954102921
+UniRef50_P67051: Thymidylate synthase	33.3136921205
+UniRef50_P67051: Thymidylate synthase|g__Streptococcus.s__Streptococcus_mutans	28.4899587586
+UniRef50_P67051: Thymidylate synthase|g__Streptococcus.s__Streptococcus_agalactiae	3.5799522673
+UniRef50_P67051: Thymidylate synthase|unclassified	1.2437810945
+UniRef50_Q0TGS5: UvrC excinuclease ABC subunit C	33.3072832623
+UniRef50_Q0TGS5: UvrC excinuclease ABC subunit C|g__Escherichia.s__Escherichia_coli	33.3072832623
+UniRef50_Q58036	33.3064611158
+UniRef50_Q58036|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.3064611158
+UniRef50_P59351: UPF0229 protein PP_0396	33.3034973715
+UniRef50_P59351: UPF0229 protein PP_0396|g__Escherichia.s__Escherichia_coli	28.5114256763
+UniRef50_P59351: UPF0229 protein PP_0396|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7920716951
+UniRef50_P32141: Sulfofructosephosphate aldolase	33.2930523885
+UniRef50_P32141: Sulfofructosephosphate aldolase|g__Escherichia.s__Escherichia_coli	33.2930523885
+UniRef50_A5UM93: Adhesin-like protein	33.2915797913
+UniRef50_A5UM93: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.2915797913
+UniRef50_R7PWI6	33.2845110835
+UniRef50_R7PWI6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.2829170485
+UniRef50_R7PWI6|unclassified	0.0015940349
+UniRef50_C5N2G7	33.2823475079
+UniRef50_C5N2G7|g__Staphylococcus.s__Staphylococcus_aureus	33.2823475079
+UniRef50_D6SHC8	33.2790410757
+UniRef50_D6SHC8|g__Staphylococcus.s__Staphylococcus_aureus	31.7909458376
+UniRef50_D6SHC8|unclassified	1.4880952381
+UniRef50_A7FM33: Polyamine aminopropyl transferase	33.2755110938
+UniRef50_A7FM33: Polyamine aminopropyl transferase|g__Escherichia.s__Escherichia_coli	32.7990963658
+UniRef50_A7FM33: Polyamine aminopropyl transferase|unclassified	0.4764147281
+UniRef50_O27101: Putative biopolymer transport protein ExbB homolog	33.2715955151
+UniRef50_O27101: Putative biopolymer transport protein ExbB homolog|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.2715955151
+UniRef50_P08201: Nitrite reductase (NADH) large subunit	33.2709285978
+UniRef50_P08201: Nitrite reductase (NADH) large subunit|g__Escherichia.s__Escherichia_coli	33.2709285978
+UniRef50_P30235: Pseudouridine kinase	33.2668037165
+UniRef50_P30235: Pseudouridine kinase|g__Escherichia.s__Escherichia_coli	33.2668037165
+UniRef50_I4E1E6	33.2667992497
+UniRef50_I4E1E6|g__Streptococcus.s__Streptococcus_mutans	27.5413053167
+UniRef50_I4E1E6|g__Streptococcus.s__Streptococcus_agalactiae	5.7254939330
+UniRef50_P75853: Putative aliphatic sulfonates-binding protein	33.2610985762
+UniRef50_P75853: Putative aliphatic sulfonates-binding protein|g__Escherichia.s__Escherichia_coli	33.2610985762
+UniRef50_A6UEM2	33.2526359122
+UniRef50_A6UEM2|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.2301118032
+UniRef50_A6UEM2|unclassified	0.0225241089
+UniRef50_P0AGF5: D-xylose-proton symporter	33.2463583643
+UniRef50_P0AGF5: D-xylose-proton symporter|g__Escherichia.s__Escherichia_coli	33.2463583643
+UniRef50_P38489: Oxygen-insensitive NAD(P)H nitroreductase	33.2388099138
+UniRef50_P38489: Oxygen-insensitive NAD(P)H nitroreductase|g__Escherichia.s__Escherichia_coli	33.2388099138
+UniRef50_O33787	33.2273979597
+UniRef50_O33787|g__Escherichia.s__Escherichia_coli	33.2273979597
+UniRef50_P77425: Allantoate amidohydrolase	33.2143861759
+UniRef50_P77425: Allantoate amidohydrolase|g__Escherichia.s__Escherichia_coli	33.2143861759
+UniRef50_Q2NEM0: DNA primase DnaG	33.2133477226
+UniRef50_Q2NEM0: DNA primase DnaG|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.2133477226
+UniRef50_Q3SFC9: Dihydroxy-acid dehydratase	33.2082386493
+UniRef50_Q3SFC9: Dihydroxy-acid dehydratase|g__Escherichia.s__Escherichia_coli	27.5812077423
+UniRef50_Q3SFC9: Dihydroxy-acid dehydratase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6270309070
+UniRef50_Q28NX6: Peptidase C26	33.2048980542
+UniRef50_Q28NX6: Peptidase C26|g__Rhodobacter.s__Rhodobacter_sphaeroides	33.2048980542
+UniRef50_P13016: 1,6-anhydro-N-acetylmuramyl-L-alanine amidase AmpD	33.2046793887
+UniRef50_P13016: 1,6-anhydro-N-acetylmuramyl-L-alanine amidase AmpD|g__Escherichia.s__Escherichia_coli	32.8910525781
+UniRef50_P13016: 1,6-anhydro-N-acetylmuramyl-L-alanine amidase AmpD|unclassified	0.3136268107
+UniRef50_D3E0A9: DNA polymerase	33.2034791772
+UniRef50_D3E0A9: DNA polymerase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.2034791772
+UniRef50_P0AFH0: Methylated-DNA--protein-cysteine methyltransferase	33.1825806374
+UniRef50_P0AFH0: Methylated-DNA--protein-cysteine methyltransferase|g__Escherichia.s__Escherichia_coli	33.1825806374
+UniRef50_P0AEC3: Aerobic respiration control sensor protein ArcB	33.1759599426
+UniRef50_P0AEC3: Aerobic respiration control sensor protein ArcB|g__Escherichia.s__Escherichia_coli	32.8555703488
+UniRef50_P0AEC3: Aerobic respiration control sensor protein ArcB|unclassified	0.3203895937
+UniRef50_P33358: HTH-type transcriptional regulator MlrA	33.1505354326
+UniRef50_P33358: HTH-type transcriptional regulator MlrA|g__Escherichia.s__Escherichia_coli	33.1505354326
+UniRef50_Q1C0H3: Chaperone SurA	33.1402113446
+UniRef50_Q1C0H3: Chaperone SurA|g__Escherichia.s__Escherichia_coli	33.1402113446
+UniRef50_T9NAD2	33.1255883897
+UniRef50_T9NAD2|g__Escherichia.s__Escherichia_coli	33.1255883897
+UniRef50_C0M7M5: Thymidylate kinase	33.1249521667
+UniRef50_C0M7M5: Thymidylate kinase|g__Streptococcus.s__Streptococcus_mutans	32.9535232135
+UniRef50_C0M7M5: Thymidylate kinase|unclassified	0.1714289533
+UniRef50_O32113	33.1198390567
+UniRef50_O32113|g__Staphylococcus.s__Staphylococcus_aureus	24.6609986616
+UniRef50_O32113|g__Staphylococcus.s__Staphylococcus_epidermidis	8.4588403950
+UniRef50_P0ABC5: Modulator of FtsH protease HflC	33.0972652897
+UniRef50_P0ABC5: Modulator of FtsH protease HflC|g__Escherichia.s__Escherichia_coli	33.0972652897
+UniRef50_U6ED29: Ferrous iron transport protein B	33.0942328359
+UniRef50_U6ED29: Ferrous iron transport protein B|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.0942328359
+UniRef50_P42096: Protein LacX, chromosomal	33.0774295318
+UniRef50_P42096: Protein LacX, chromosomal|g__Streptococcus.s__Streptococcus_mutans	29.1481564474
+UniRef50_P42096: Protein LacX, chromosomal|g__Streptococcus.s__Streptococcus_agalactiae	3.9292730845
+UniRef50_Q8ZES9: Long-chain-fatty-acid--CoA ligase	33.0711129606
+UniRef50_Q8ZES9: Long-chain-fatty-acid--CoA ligase|g__Escherichia.s__Escherichia_coli	33.0711129606
+UniRef50_P76466	33.0707324472
+UniRef50_P76466|g__Escherichia.s__Escherichia_coli	22.9765975642
+UniRef50_P76466|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.5196690270
+UniRef50_P76466|unclassified	0.5744658560
+UniRef50_A7FZA6: Transcription elongation factor GreA	33.0682475419
+UniRef50_A7FZA6: Transcription elongation factor GreA|g__Clostridium.s__Clostridium_beijerinckii	33.0682475419
+UniRef50_Q2NEX9: PurB	33.0592032135
+UniRef50_Q2NEX9: PurB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	33.0592032135
+UniRef50_J7M693: Cell division protein FtsL	33.0587324071
+UniRef50_J7M693: Cell division protein FtsL|g__Streptococcus.s__Streptococcus_mutans	33.0587324071
+UniRef50_I6C6K5	33.0583986643
+UniRef50_I6C6K5|g__Escherichia.s__Escherichia_coli	33.0583986643
+UniRef50_P67176: Probable transcriptional regulatory protein YebC	33.0487903020
+UniRef50_P67176: Probable transcriptional regulatory protein YebC|g__Escherichia.s__Escherichia_coli	33.0487903020
+UniRef50_P75990: Blue light- and temperature-regulated antirepressor YcgF	33.0472279927
+UniRef50_P75990: Blue light- and temperature-regulated antirepressor YcgF|g__Escherichia.s__Escherichia_coli	33.0472279927
+UniRef50_A4VYJ7: DNA repair protein RecO	33.0460221784
+UniRef50_A4VYJ7: DNA repair protein RecO|g__Streptococcus.s__Streptococcus_mutans	30.3661013016
+UniRef50_A4VYJ7: DNA repair protein RecO|g__Streptococcus.s__Streptococcus_agalactiae	2.6799208768
+UniRef50_P04395: DNA-3-methyladenine glycosylase 2	33.0456886299
+UniRef50_P04395: DNA-3-methyladenine glycosylase 2|g__Escherichia.s__Escherichia_coli	33.0456886299
+UniRef50_B9CVK2	33.0398735247
+UniRef50_B9CVK2|unclassified	33.0398735247
+UniRef50_P33224: Putative acyl-CoA dehydrogenase AidB	33.0168947313
+UniRef50_P33224: Putative acyl-CoA dehydrogenase AidB|g__Escherichia.s__Escherichia_coli	33.0168947313
+UniRef50_A1JS01: DNA-directed RNA polymerase subunit alpha	33.0164019672
+UniRef50_A1JS01: DNA-directed RNA polymerase subunit alpha|g__Escherichia.s__Escherichia_coli	32.7572452832
+UniRef50_A1JS01: DNA-directed RNA polymerase subunit alpha|unclassified	0.2591566840
+UniRef50_Q5NMC2: Phenylalanine--tRNA ligase alpha subunit	33.0103446117
+UniRef50_Q5NMC2: Phenylalanine--tRNA ligase alpha subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.0418406747
+UniRef50_Q5NMC2: Phenylalanine--tRNA ligase alpha subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9685039370
+UniRef50_P28306: UPF0755 protein YceG	33.0083209094
+UniRef50_P28306: UPF0755 protein YceG|g__Escherichia.s__Escherichia_coli	33.0083209094
+UniRef50_Q8PGP9: Proline--tRNA ligase	33.0063396124
+UniRef50_Q8PGP9: Proline--tRNA ligase|g__Escherichia.s__Escherichia_coli	25.4258523297
+UniRef50_Q8PGP9: Proline--tRNA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1681738664
+UniRef50_Q8PGP9: Proline--tRNA ligase|g__Acinetobacter.s__Acinetobacter_baumannii	2.3828327797
+UniRef50_Q8PGP9: Proline--tRNA ligase|unclassified	0.0294806367
+UniRef50_A5UL43: Oligosaccharyl transferase, STT3 subunit	32.9983563922
+UniRef50_A5UL43: Oligosaccharyl transferase, STT3 subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.9983563922
+UniRef50_B5F1C0: Cysteine desulfurase IscS	32.9930572382
+UniRef50_B5F1C0: Cysteine desulfurase IscS|g__Escherichia.s__Escherichia_coli	32.9930572382
+UniRef50_W0YNW2: ThiF family protein	32.9897148466
+UniRef50_W0YNW2: ThiF family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	32.9897148466
+UniRef50_A7IES2: Ribonuclease HII	32.9862846161
+UniRef50_A7IES2: Ribonuclease HII|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.6549673164
+UniRef50_A7IES2: Ribonuclease HII|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.2155749841
+UniRef50_A7IES2: Ribonuclease HII|unclassified	0.1157423156
+UniRef50_P26838: Chloramphenicol acetyltransferase	32.9787160561
+UniRef50_P26838: Chloramphenicol acetyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	31.6374718765
+UniRef50_P26838: Chloramphenicol acetyltransferase|unclassified	1.3412441797
+UniRef50_P0CB40: Phosphoethanolamine transferase EptC	32.9548183730
+UniRef50_P0CB40: Phosphoethanolamine transferase EptC|g__Escherichia.s__Escherichia_coli	32.9548183730
+UniRef50_E3F1U6: Integrase	32.9545708415
+UniRef50_E3F1U6: Integrase|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.9545708415
+UniRef50_A9MJT7: Membrane protein insertase YidC	32.9394952911
+UniRef50_A9MJT7: Membrane protein insertase YidC|g__Escherichia.s__Escherichia_coli	32.9394952911
+UniRef50_Q3IVJ0: Replication protein C	32.9352811601
+UniRef50_Q3IVJ0: Replication protein C|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.2235571521
+UniRef50_Q3IVJ0: Replication protein C|unclassified	0.7117240079
+UniRef50_Q60AI1: Spermidine/putrescine import ATP-binding protein PotA	32.9334697616
+UniRef50_Q60AI1: Spermidine/putrescine import ATP-binding protein PotA|g__Escherichia.s__Escherichia_coli	31.7164076718
+UniRef50_Q60AI1: Spermidine/putrescine import ATP-binding protein PotA|unclassified	1.2170620898
+UniRef50_Q8DT53: Glucose-1-phosphate adenylyltransferase	32.9307787189
+UniRef50_Q8DT53: Glucose-1-phosphate adenylyltransferase|g__Streptococcus.s__Streptococcus_mutans	32.0073684686
+UniRef50_Q8DT53: Glucose-1-phosphate adenylyltransferase|unclassified	0.9234102503
+UniRef50_P0AEZ8: Membrane-bound lytic murein transglycosylase D	32.9276945711
+UniRef50_P0AEZ8: Membrane-bound lytic murein transglycosylase D|g__Escherichia.s__Escherichia_coli	32.9276945711
+UniRef50_A8Z5I1	32.9274891775
+UniRef50_A8Z5I1|g__Staphylococcus.s__Staphylococcus_aureus	19.9404761905
+UniRef50_A8Z5I1|unclassified	12.9870129870
+UniRef50_P0AC26: Nitrite transporter NirC	32.9206393251
+UniRef50_P0AC26: Nitrite transporter NirC|g__Escherichia.s__Escherichia_coli	32.9206393251
+UniRef50_Q58569: Protein FwdA	32.9191756394
+UniRef50_Q58569: Protein FwdA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.9191756394
+UniRef50_A8Z084	32.9137132161
+UniRef50_A8Z084|g__Staphylococcus.s__Staphylococcus_aureus	32.9137132161
+UniRef50_Q8DW64	32.8819715338
+UniRef50_Q8DW64|g__Streptococcus.s__Streptococcus_mutans	31.3380910866
+UniRef50_Q8DW64|unclassified	1.5438804473
+UniRef50_Q5HNX2	32.8815261044
+UniRef50_Q5HNX2|g__Staphylococcus.s__Staphylococcus_epidermidis	32.8815261044
+UniRef50_D8MLX7: Photosystem I assembly famlily protein BtpA	32.8752320679
+UniRef50_D8MLX7: Photosystem I assembly famlily protein BtpA|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.8752320679
+UniRef50_I6SU15	32.8657108002
+UniRef50_I6SU15|g__Streptococcus.s__Streptococcus_mutans	32.8657108002
+UniRef50_Q8DTF4	32.8640030792
+UniRef50_Q8DTF4|g__Streptococcus.s__Streptococcus_mutans	32.8640030792
+UniRef50_B9KRV3	32.8632639175
+UniRef50_B9KRV3|unclassified	32.8632639175
+UniRef50_R9SL16: Energy-converting hydrogenase A subunit P EhaP	32.8521611513
+UniRef50_R9SL16: Energy-converting hydrogenase A subunit P EhaP|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.8521611513
+UniRef50_Q5HJ91: Virulence factor EsxA	32.8492708041
+UniRef50_Q5HJ91: Virulence factor EsxA|g__Staphylococcus.s__Staphylococcus_aureus	32.8492708041
+UniRef50_K0C8E5	32.8462953401
+UniRef50_K0C8E5|g__Streptococcus.s__Streptococcus_mutans	32.7198030020
+UniRef50_K0C8E5|unclassified	0.1264923381
+UniRef50_M9RFS9	32.8380066521
+UniRef50_M9RFS9|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.8380066521
+UniRef50_P0AFE9: NADH-quinone oxidoreductase subunit M	32.8355295193
+UniRef50_P0AFE9: NADH-quinone oxidoreductase subunit M|g__Escherichia.s__Escherichia_coli	24.4210153459
+UniRef50_P0AFE9: NADH-quinone oxidoreductase subunit M|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3255055417
+UniRef50_P0AFE9: NADH-quinone oxidoreductase subunit M|unclassified	0.0890086318
+UniRef50_B2IMU5: HIT family protein	32.8341448358
+UniRef50_B2IMU5: HIT family protein|g__Streptococcus.s__Streptococcus_mutans	32.8341448358
+UniRef50_A1U1A4: Phosphoribosylaminoimidazole-succinocarboxamide synthase	32.8318615987
+UniRef50_A1U1A4: Phosphoribosylaminoimidazole-succinocarboxamide synthase|g__Escherichia.s__Escherichia_coli	18.9594714815
+UniRef50_A1U1A4: Phosphoribosylaminoimidazole-succinocarboxamide synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.1367251323
+UniRef50_A1U1A4: Phosphoribosylaminoimidazole-succinocarboxamide synthase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3947001395
+UniRef50_A1U1A4: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.3409648453
+UniRef50_P0AFR7: Inner membrane ABC transporter permease protein YcjO	32.8312950177
+UniRef50_P0AFR7: Inner membrane ABC transporter permease protein YcjO|g__Escherichia.s__Escherichia_coli	32.8312950177
+UniRef50_P76633	32.8252880737
+UniRef50_P76633|g__Escherichia.s__Escherichia_coli	32.8252880737
+UniRef50_Q8XDS0: Aspartate ammonia-lyase	32.8191410125
+UniRef50_Q8XDS0: Aspartate ammonia-lyase|g__Escherichia.s__Escherichia_coli	32.6731590954
+UniRef50_Q8XDS0: Aspartate ammonia-lyase|unclassified	0.1459819171
+UniRef50_A3CNT1: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	32.8160256815
+UniRef50_A3CNT1: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|g__Streptococcus.s__Streptococcus_mutans	32.8160256815
+UniRef50_P37617: Lead, cadmium, zinc and mercury-transporting ATPase	32.8140462180
+UniRef50_P37617: Lead, cadmium, zinc and mercury-transporting ATPase|g__Escherichia.s__Escherichia_coli	32.8140462180
+UniRef50_A4WWQ1: Lipoprotein signal peptidase	32.8107011384
+UniRef50_A4WWQ1: Lipoprotein signal peptidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.8107011384
+UniRef50_P0AES0: Bifunctional glutathionylspermidine synthetase/amidase	32.8014728756
+UniRef50_P0AES0: Bifunctional glutathionylspermidine synthetase/amidase|g__Escherichia.s__Escherichia_coli	32.8014728756
+UniRef50_A5UMM4: Serine/threonine protein kinase related protein (PQQ-binding)	32.7934246514
+UniRef50_A5UMM4: Serine/threonine protein kinase related protein (PQQ-binding)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.7934246514
+UniRef50_A5UKM3	32.7917534832
+UniRef50_A5UKM3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.7917534832
+UniRef50_P0A1B6: Phospho-2-dehydro-3-deoxyheptonate aldolase, Tyr-sensitive	32.7906370258
+UniRef50_P0A1B6: Phospho-2-dehydro-3-deoxyheptonate aldolase, Tyr-sensitive|g__Escherichia.s__Escherichia_coli	31.9990091154
+UniRef50_P0A1B6: Phospho-2-dehydro-3-deoxyheptonate aldolase, Tyr-sensitive|unclassified	0.7916279103
+UniRef50_A3PSB0	32.7905090036
+UniRef50_A3PSB0|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.2502471989
+UniRef50_A3PSB0|unclassified	7.5402618047
+UniRef50_A4WT17	32.7885519087
+UniRef50_A4WT17|unclassified	26.2418895279
+UniRef50_A4WT17|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.5466623808
+UniRef50_P33368	32.7863528297
+UniRef50_P33368|g__Escherichia.s__Escherichia_coli	32.7863528297
+UniRef50_B1JPZ9: 4-alpha-L-fucosyltransferase	32.7843531542
+UniRef50_B1JPZ9: 4-alpha-L-fucosyltransferase|g__Escherichia.s__Escherichia_coli	32.7843531542
+UniRef50_P76236: Inner membrane protein YeaI	32.7721742724
+UniRef50_P76236: Inner membrane protein YeaI|g__Escherichia.s__Escherichia_coli	32.7721742724
+UniRef50_Q5PD59: 1-deoxy-D-xylulose 5-phosphate reductoisomerase	32.7638355513
+UniRef50_Q5PD59: 1-deoxy-D-xylulose 5-phosphate reductoisomerase|g__Escherichia.s__Escherichia_coli	24.3752176998
+UniRef50_Q5PD59: 1-deoxy-D-xylulose 5-phosphate reductoisomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3886178515
+UniRef50_M4WR94	32.7635876197
+UniRef50_M4WR94|g__Pseudomonas.s__Pseudomonas_aeruginosa	32.2580645161
+UniRef50_M4WR94|unclassified	0.5055231036
+UniRef50_P37648: Protein YhjJ	32.7558297227
+UniRef50_P37648: Protein YhjJ|g__Escherichia.s__Escherichia_coli	32.7558297227
+UniRef50_P36634: Peptide transport periplasmic protein SapA	32.7498262327
+UniRef50_P36634: Peptide transport periplasmic protein SapA|g__Escherichia.s__Escherichia_coli	32.7498262327
+UniRef50_A5UJF5	32.7437454551
+UniRef50_A5UJF5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.7437454551
+UniRef50_F7IMP7	32.7435000221
+UniRef50_F7IMP7|unclassified	32.7435000221
+UniRef50_A3PS85	32.7379795288
+UniRef50_A3PS85|unclassified	32.7379795288
+UniRef50_Q2W403: Electron transport complex subunit E	32.7331864585
+UniRef50_Q2W403: Electron transport complex subunit E|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.7331864585
+UniRef50_P32717: Putative alkyl/aryl-sulfatase YjcS	32.7295279596
+UniRef50_P32717: Putative alkyl/aryl-sulfatase YjcS|g__Escherichia.s__Escherichia_coli	32.7295279596
+UniRef50_P63590: 3-dehydroquinate dehydratase	32.7217598013
+UniRef50_P63590: 3-dehydroquinate dehydratase|g__Streptococcus.s__Streptococcus_mutans	32.7217598013
+UniRef50_P07658: Formate dehydrogenase H	32.7193861213
+UniRef50_P07658: Formate dehydrogenase H|g__Escherichia.s__Escherichia_coli	32.7193861213
+UniRef50_P25519: GTPase HflX	32.7192819256
+UniRef50_P25519: GTPase HflX|g__Escherichia.s__Escherichia_coli	32.7192819256
+UniRef50_Q8DVD7: Cell division protein SepF	32.7113897999
+UniRef50_Q8DVD7: Cell division protein SepF|g__Streptococcus.s__Streptococcus_mutans	32.7113897999
+UniRef50_Q65KJ5: Metallothiol transferase FosB	32.7076720653
+UniRef50_Q65KJ5: Metallothiol transferase FosB|g__Staphylococcus.s__Staphylococcus_epidermidis	32.7076720653
+UniRef50_Q7DDS7: Septum site-determining protein MinD	32.6997287706
+UniRef50_Q7DDS7: Septum site-determining protein MinD|g__Escherichia.s__Escherichia_coli	28.0019538159
+UniRef50_Q7DDS7: Septum site-determining protein MinD|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6977749546
+UniRef50_B9E9S0	32.6952997717
+UniRef50_B9E9S0|g__Staphylococcus.s__Staphylococcus_epidermidis	32.0336348653
+UniRef50_B9E9S0|unclassified	0.6616649064
+UniRef50_A4WS75: ATPase associated with various cellular activities, AAA_3	32.6951648803
+UniRef50_A4WS75: ATPase associated with various cellular activities, AAA_3|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.6951648803
+UniRef50_P24173: Lipopolysaccharide heptosyltransferase 1	32.6760024216
+UniRef50_P24173: Lipopolysaccharide heptosyltransferase 1|g__Escherichia.s__Escherichia_coli	32.6760024216
+UniRef50_P76072: Side tail fiber protein homolog from lambdoid prophage Rac	32.6733746892
+UniRef50_P76072: Side tail fiber protein homolog from lambdoid prophage Rac|g__Escherichia.s__Escherichia_coli	32.6733746892
+UniRef50_L0LLE8: Competence-damage associated protein	32.6692461905
+UniRef50_L0LLE8: Competence-damage associated protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.6692461905
+UniRef50_P76224: Inner membrane ABC transporter permease protein YnjC	32.6654266154
+UniRef50_P76224: Inner membrane ABC transporter permease protein YnjC|g__Escherichia.s__Escherichia_coli	32.6654266154
+UniRef50_P0A957: KHG/KDPG aldolase	32.6596315482
+UniRef50_P0A957: KHG/KDPG aldolase|g__Escherichia.s__Escherichia_coli	32.6596315482
+UniRef50_V1HUJ0: Stationary phase inducible protein CsiE	32.6553101219
+UniRef50_V1HUJ0: Stationary phase inducible protein CsiE|g__Escherichia.s__Escherichia_coli	32.6553101219
+UniRef50_Q8DRQ7: Ribosomal RNA large subunit methyltransferase H	32.6544671539
+UniRef50_Q8DRQ7: Ribosomal RNA large subunit methyltransferase H|g__Streptococcus.s__Streptococcus_mutans	32.6544671539
+UniRef50_A5UMQ0: Cobalt precorrin-3B C17-methyltransferase, CbiH	32.6466619147
+UniRef50_A5UMQ0: Cobalt precorrin-3B C17-methyltransferase, CbiH|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.6466619147
+UniRef50_A0A023L6S3: AraC family transcriptional regulator	32.6413282939
+UniRef50_A0A023L6S3: AraC family transcriptional regulator|g__Escherichia.s__Escherichia_coli	32.6413282939
+UniRef50_UPI00037DDC0E: DNA methyltransferase, partial	32.6322241341
+UniRef50_UPI00037DDC0E: DNA methyltransferase, partial|unclassified	32.6322241341
+UniRef50_F8LQS7	32.6300980787
+UniRef50_F8LQS7|g__Streptococcus.s__Streptococcus_mutans	32.6300980787
+UniRef50_P76481	32.6260098449
+UniRef50_P76481|g__Escherichia.s__Escherichia_coli	32.6260098449
+UniRef50_U0D413: Type II secretion system protein C	32.6247922070
+UniRef50_U0D413: Type II secretion system protein C|g__Escherichia.s__Escherichia_coli	32.6247922070
+UniRef50_Q3IW25	32.6194624540
+UniRef50_Q3IW25|unclassified	24.5549463249
+UniRef50_Q3IW25|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.0645161290
+UniRef50_A4WEY1: tRNA pseudouridine synthase B	32.6193861704
+UniRef50_A4WEY1: tRNA pseudouridine synthase B|g__Escherichia.s__Escherichia_coli	32.6193861704
+UniRef50_P0C7L3: Beta-ketoadipyl-CoA thiolase	32.6156507830
+UniRef50_P0C7L3: Beta-ketoadipyl-CoA thiolase|g__Escherichia.s__Escherichia_coli	31.4222121139
+UniRef50_P0C7L3: Beta-ketoadipyl-CoA thiolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.8347245409
+UniRef50_P0C7L3: Beta-ketoadipyl-CoA thiolase|unclassified	0.3587141282
+UniRef50_Q0W662: Pyruvate carboxylase, subunit B	32.6144277162
+UniRef50_Q0W662: Pyruvate carboxylase, subunit B|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.6144277162
+UniRef50_P39315: Quinone oxidoreductase 2	32.5921004616
+UniRef50_P39315: Quinone oxidoreductase 2|g__Escherichia.s__Escherichia_coli	29.9111353141
+UniRef50_P39315: Quinone oxidoreductase 2|g__Deinococcus.s__Deinococcus_radiodurans	2.6809651475
+UniRef50_W0YRX8	32.5911561206
+UniRef50_W0YRX8|g__Pseudomonas.s__Pseudomonas_aeruginosa	32.5911561206
+UniRef50_B8DYK8: Deoxycytidine triphosphate deaminase	32.5827520753
+UniRef50_B8DYK8: Deoxycytidine triphosphate deaminase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.5827520753
+UniRef50_T8RG60	32.5672374312
+UniRef50_T8RG60|g__Escherichia.s__Escherichia_coli	26.8690546859
+UniRef50_T8RG60|unclassified	5.6981827453
+UniRef50_Q11MX0: Transcriptional regulator, BadM/Rrf2 family	32.5594604297
+UniRef50_Q11MX0: Transcriptional regulator, BadM/Rrf2 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.5594604297
+UniRef50_R7PU88: DNA helicase related protein	32.5588073234
+UniRef50_R7PU88: DNA helicase related protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.5588073234
+UniRef50_P51981: L-Ala-D/L-Glu epimerase	32.5528306387
+UniRef50_P51981: L-Ala-D/L-Glu epimerase|g__Escherichia.s__Escherichia_coli	32.5528306387
+UniRef50_A5UKK2: Predicted unusual protein kinase, ubiquinone biosynthesis protein-related, AarF	32.5442720434
+UniRef50_A5UKK2: Predicted unusual protein kinase, ubiquinone biosynthesis protein-related, AarF|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.5442720434
+UniRef50_U3STE7	32.5398714466
+UniRef50_U3STE7|g__Streptococcus.s__Streptococcus_mutans	32.5398714466
+UniRef50_X2M2B8: Multidrug transporter	32.5389978102
+UniRef50_X2M2B8: Multidrug transporter|g__Escherichia.s__Escherichia_coli	32.5389978102
+UniRef50_Q46843	32.5376766271
+UniRef50_Q46843|g__Escherichia.s__Escherichia_coli	32.5376766271
+UniRef50_B1XYL1: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG	32.5362817638
+UniRef50_B1XYL1: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG|g__Escherichia.s__Escherichia_coli	32.5362817638
+UniRef50_Q92JD8: Probable ABC transporter permease protein RC0129	32.5358008575
+UniRef50_Q92JD8: Probable ABC transporter permease protein RC0129|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.5358008575
+UniRef50_J1A8G2	32.5349666360
+UniRef50_J1A8G2|g__Staphylococcus.s__Staphylococcus_epidermidis	31.2640109280
+UniRef50_J1A8G2|unclassified	1.2709557080
+UniRef50_P06130: Formate dehydrogenase subunit beta	32.5333354108
+UniRef50_P06130: Formate dehydrogenase subunit beta|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.5333354108
+UniRef50_Q849Z0	32.5320290829
+UniRef50_Q849Z0|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.0549242085
+UniRef50_Q849Z0|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4771048744
+UniRef50_I1ZP64	32.5316935432
+UniRef50_I1ZP64|g__Streptococcus.s__Streptococcus_mutans	32.5316935432
+UniRef50_Q8XBV3: Enterobactin synthase component E	32.5261396426
+UniRef50_Q8XBV3: Enterobactin synthase component E|g__Escherichia.s__Escherichia_coli	30.5507579399
+UniRef50_Q8XBV3: Enterobactin synthase component E|g__Acinetobacter.s__Acinetobacter_baumannii	1.5848986653
+UniRef50_Q8XBV3: Enterobactin synthase component E|unclassified	0.3904830373
+UniRef50_T1Y800: Acetyltransferase, GNAT family	32.5154103611
+UniRef50_T1Y800: Acetyltransferase, GNAT family|g__Staphylococcus.s__Staphylococcus_aureus	32.5154103611
+UniRef50_F6D2B8: ABC transporter related protein	32.5135625094
+UniRef50_F6D2B8: ABC transporter related protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.5135625094
+UniRef50_P37746: Putative O-antigen transporter	32.5125335591
+UniRef50_P37746: Putative O-antigen transporter|g__Escherichia.s__Escherichia_coli	31.6826580405
+UniRef50_P37746: Putative O-antigen transporter|unclassified	0.8298755187
+UniRef50_P0ACB6: Protoporphyrinogen IX dehydrogenase [menaquinone]	32.5121512011
+UniRef50_P0ACB6: Protoporphyrinogen IX dehydrogenase [menaquinone]|g__Escherichia.s__Escherichia_coli	32.5121512011
+UniRef50_T1ZCM0: Endonuclease, putative	32.5102713631
+UniRef50_T1ZCM0: Endonuclease, putative|g__Streptococcus.s__Streptococcus_mutans	32.5102713631
+UniRef50_Q2NIC5: ORC1-type DNA replication protein	32.5085395440
+UniRef50_Q2NIC5: ORC1-type DNA replication protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.5085395440
+UniRef50_G0GLQ7: ATP-dependent RNA helicase HrpB	32.5024984229
+UniRef50_G0GLQ7: ATP-dependent RNA helicase HrpB|g__Escherichia.s__Escherichia_coli	32.5024984229
+UniRef50_Q4RB68: Chromosome undetermined SCAF22168, whole genome shotgun sequence. (Fragment)	32.4957026822
+UniRef50_Q4RB68: Chromosome undetermined SCAF22168, whole genome shotgun sequence. (Fragment)|unclassified	32.4957026822
+UniRef50_P37093: Type II secretion system protein E	32.4871618544
+UniRef50_P37093: Type II secretion system protein E|g__Escherichia.s__Escherichia_coli	29.9289629431
+UniRef50_P37093: Type II secretion system protein E|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5581989113
+UniRef50_Q98FL3: Phosphate transport system permease protein PstC	32.4860325176
+UniRef50_Q98FL3: Phosphate transport system permease protein PstC|g__Escherichia.s__Escherichia_coli	32.4860325176
+UniRef50_N0AQS7: D-3-phosphoglycerate dehydrogenase	32.4832186712
+UniRef50_N0AQS7: D-3-phosphoglycerate dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	31.6350422505
+UniRef50_N0AQS7: D-3-phosphoglycerate dehydrogenase|g__Streptococcus.s__Streptococcus_agalactiae	0.8481764207
+UniRef50_P0AC04: Outer membrane protein assembly factor BamD	32.4780292380
+UniRef50_P0AC04: Outer membrane protein assembly factor BamD|g__Escherichia.s__Escherichia_coli	32.4780292380
+UniRef50_A4WR49: Cellulose synthase (UDP-forming)	32.4749223595
+UniRef50_A4WR49: Cellulose synthase (UDP-forming)|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.4749223595
+UniRef50_A4IMP7: Large-conductance mechanosensitive channel	32.4622007151
+UniRef50_A4IMP7: Large-conductance mechanosensitive channel|g__Escherichia.s__Escherichia_coli	32.4622007151
+UniRef50_P55798: Serine/threonine-protein phosphatase 1	32.4490940684
+UniRef50_P55798: Serine/threonine-protein phosphatase 1|g__Escherichia.s__Escherichia_coli	32.4490940684
+UniRef50_I6T6N0	32.4488576061
+UniRef50_I6T6N0|g__Streptococcus.s__Streptococcus_mutans	32.4488576061
+UniRef50_A6QII4	32.4438847129
+UniRef50_A6QII4|g__Staphylococcus.s__Staphylococcus_aureus	32.4438847129
+UniRef50_Q12HP7: ATP synthase subunit b	32.4376480934
+UniRef50_Q12HP7: ATP synthase subunit b|g__Pseudomonas.s__Pseudomonas_aeruginosa	32.4376480934
+UniRef50_I6SU46: Cell division protein DivIB	32.4338434797
+UniRef50_I6SU46: Cell division protein DivIB|g__Streptococcus.s__Streptococcus_mutans	32.4338434797
+UniRef50_Q3K0J6: Hydroxymethylglutaryl-CoA synthase	32.4312802178
+UniRef50_Q3K0J6: Hydroxymethylglutaryl-CoA synthase|g__Streptococcus.s__Streptococcus_mutans	32.4312802178
+UniRef50_A8LHW3: Aminotransferase class I and II	32.4261547776
+UniRef50_A8LHW3: Aminotransferase class I and II|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.4261547776
+UniRef50_A5UL24	32.4245365684
+UniRef50_A5UL24|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.4245365684
+UniRef50_C5W449	32.4215295022
+UniRef50_C5W449|g__Escherichia.s__Escherichia_coli	32.4215295022
+UniRef50_P44704: CDP-diacylglycerol--serine O-phosphatidyltransferase	32.4188384428
+UniRef50_P44704: CDP-diacylglycerol--serine O-phosphatidyltransferase|g__Escherichia.s__Escherichia_coli	32.4188384428
+UniRef50_P58356: Sensor protein TorS	32.4002096751
+UniRef50_P58356: Sensor protein TorS|g__Escherichia.s__Escherichia_coli	32.4002096751
+UniRef50_M5Q8W3: Opacity protein	32.3860192819
+UniRef50_M5Q8W3: Opacity protein|g__Staphylococcus.s__Staphylococcus_epidermidis	32.3860192819
+UniRef50_P45240: Sodium/glutamate symport carrier protein	32.3711352462
+UniRef50_P45240: Sodium/glutamate symport carrier protein|g__Escherichia.s__Escherichia_coli	28.1782831400
+UniRef50_P45240: Sodium/glutamate symport carrier protein|g__Neisseria.s__Neisseria_meningitidis	4.1928521063
+UniRef50_P21437: Fructose-1,6-bisphosphatase 2 class 2	32.3673520367
+UniRef50_P21437: Fructose-1,6-bisphosphatase 2 class 2|g__Escherichia.s__Escherichia_coli	32.3673520367
+UniRef50_P75867: Putative Lon protease homolog	32.3662377084
+UniRef50_P75867: Putative Lon protease homolog|g__Escherichia.s__Escherichia_coli	32.3662377084
+UniRef50_P11664	32.3625375373
+UniRef50_P11664|g__Escherichia.s__Escherichia_coli	32.3625375373
+UniRef50_Q1RF99	32.3609311089
+UniRef50_Q1RF99|g__Escherichia.s__Escherichia_coli	31.0187787900
+UniRef50_Q1RF99|unclassified	1.3421523189
+UniRef50_D3DZS9: ABC transporter ATP-binding protein	32.3497120047
+UniRef50_D3DZS9: ABC transporter ATP-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.3497120047
+UniRef50_E1RJD9: Radical SAM domain protein	32.3467992697
+UniRef50_E1RJD9: Radical SAM domain protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.3467992697
+UniRef50_U3SR89: Tellurite resistance protein TehB	32.3443343422
+UniRef50_U3SR89: Tellurite resistance protein TehB|g__Streptococcus.s__Streptococcus_mutans	32.3443343422
+UniRef50_P16689: Alpha-D-ribose 1-methylphosphonate 5-triphosphate diphosphatase	32.3317047073
+UniRef50_P16689: Alpha-D-ribose 1-methylphosphonate 5-triphosphate diphosphatase|g__Escherichia.s__Escherichia_coli	32.3317047073
+UniRef50_P0ACR3	32.3296177434
+UniRef50_P0ACR3|g__Escherichia.s__Escherichia_coli	32.3296177434
+UniRef50_I6TQ16: Pyridoxamine kinase	32.3263841539
+UniRef50_I6TQ16: Pyridoxamine kinase|g__Streptococcus.s__Streptococcus_mutans	32.3263841539
+UniRef50_Q0T1Y1: 3-phenylpropionate/cinnamic acid dioxygenase subunit alpha	32.3153733161
+UniRef50_Q0T1Y1: 3-phenylpropionate/cinnamic acid dioxygenase subunit alpha|g__Escherichia.s__Escherichia_coli	31.6915272458
+UniRef50_Q0T1Y1: 3-phenylpropionate/cinnamic acid dioxygenase subunit alpha|unclassified	0.6238460704
+UniRef50_A5ULL0: PyrE-like protein	32.3086296592
+UniRef50_A5ULL0: PyrE-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.3086296592
+UniRef50_Q46836: Leader peptidase PppA	32.3071712042
+UniRef50_Q46836: Leader peptidase PppA|g__Escherichia.s__Escherichia_coli	32.3071712042
+UniRef50_C3DRI7	32.3062441508
+UniRef50_C3DRI7|g__Staphylococcus.s__Staphylococcus_aureus	32.3062441508
+UniRef50_H8DHC5: ATP-dependent OLD family endonuclease	32.3007047829
+UniRef50_H8DHC5: ATP-dependent OLD family endonuclease|g__Pseudomonas.s__Pseudomonas_aeruginosa	32.3007047829
+UniRef50_S5R225: Ribosomal-protein-alanine acetyltransferase	32.2943337744
+UniRef50_S5R225: Ribosomal-protein-alanine acetyltransferase|g__Streptococcus.s__Streptococcus_mutans	32.2943337744
+UniRef50_B9KUZ2: Phage portal protein, lambda family	32.2940109395
+UniRef50_B9KUZ2: Phage portal protein, lambda family|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.2940109395
+UniRef50_A4WR00	32.2870123716
+UniRef50_A4WR00|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.2870123716
+UniRef50_A8A6Z4: Protein FdhE	32.2811660990
+UniRef50_A8A6Z4: Protein FdhE|g__Escherichia.s__Escherichia_coli	32.2811660990
+UniRef50_Q8XE94: Pyrimidine-specific ribonucleoside hydrolase RihB	32.2798743497
+UniRef50_Q8XE94: Pyrimidine-specific ribonucleoside hydrolase RihB|g__Escherichia.s__Escherichia_coli	32.2798743497
+UniRef50_B7MG32: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase	32.2779523533
+UniRef50_B7MG32: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase|g__Escherichia.s__Escherichia_coli	31.6486025091
+UniRef50_B7MG32: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase|unclassified	0.6293498442
+UniRef50_A3U7R8: O-acetylhomoserine sulfhydrylase	32.2639501715
+UniRef50_A3U7R8: O-acetylhomoserine sulfhydrylase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.2639501715
+UniRef50_P39180: Antigen 43	32.2624966087
+UniRef50_P39180: Antigen 43|g__Escherichia.s__Escherichia_coli	32.2624966087
+UniRef50_A4XW57: Hpt protein	32.2580645161
+UniRef50_A4XW57: Hpt protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	32.2580645161
+UniRef50_G2JG74	32.2580645161
+UniRef50_G2JG74|g__Acinetobacter.s__Acinetobacter_baumannii	32.2580645161
+UniRef50_I0ZWM4	32.2580645161
+UniRef50_I0ZWM4|g__Escherichia.s__Escherichia_coli	32.2580645161
+UniRef50_Q16A53: Transcriptional regulator, ArsR family, putative	32.2580645161
+UniRef50_Q16A53: Transcriptional regulator, ArsR family, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.2580645161
+UniRef50_Q5HPT6	32.2580645161
+UniRef50_Q5HPT6|g__Staphylococcus.s__Staphylococcus_epidermidis	32.2580645161
+UniRef50_P39691: Thiol:disulfide interchange protein DsbC	32.2443496412
+UniRef50_P39691: Thiol:disulfide interchange protein DsbC|g__Escherichia.s__Escherichia_coli	32.2443496412
+UniRef50_Q8TL41: Histidinol dehydrogenase	32.2419639359
+UniRef50_Q8TL41: Histidinol dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.2419639359
+UniRef50_N2UKS8: Electron transfer flavodomain protein	32.2212787715
+UniRef50_N2UKS8: Electron transfer flavodomain protein|g__Escherichia.s__Escherichia_coli	32.2212787715
+UniRef50_T5X6I4: Colicin I receptor	32.2164258804
+UniRef50_T5X6I4: Colicin I receptor|g__Escherichia.s__Escherichia_coli	32.2164258804
+UniRef50_S5Y8G8: Penicillin-binding protein, 1A family	32.2111977313
+UniRef50_S5Y8G8: Penicillin-binding protein, 1A family|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.2111977313
+UniRef50_Q8PUM8: Sodium/proline symporter	32.2094349635
+UniRef50_Q8PUM8: Sodium/proline symporter|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.2094349635
+UniRef50_A4WU01: Polysaccharide export protein	32.2062527183
+UniRef50_A4WU01: Polysaccharide export protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.2062527183
+UniRef50_Q5HQ84	32.1994254359
+UniRef50_Q5HQ84|g__Staphylococcus.s__Staphylococcus_epidermidis	20.7922198844
+UniRef50_Q5HQ84|g__Staphylococcus.s__Staphylococcus_aureus	11.4072055515
+UniRef50_D2ZS12	32.1984427058
+UniRef50_D2ZS12|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.1984427058
+UniRef50_A5UKK8: Adenine/cytosine DNA methyltransferase	32.1972153217
+UniRef50_A5UKK8: Adenine/cytosine DNA methyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.1972153217
+UniRef50_P28721: Protein GltF	32.1932945001
+UniRef50_P28721: Protein GltF|g__Escherichia.s__Escherichia_coli	32.1932945001
+UniRef50_B9KJQ4	32.1860642879
+UniRef50_B9KJQ4|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.6346034149
+UniRef50_B9KJQ4|unclassified	0.5514608730
+UniRef50_D2UNT1: Predicted protein	32.1801581568
+UniRef50_D2UNT1: Predicted protein|g__Staphylococcus.s__Staphylococcus_aureus	27.0121612757
+UniRef50_D2UNT1: Predicted protein|unclassified	5.1679968811
+UniRef50_Q8DSA7	32.1722020824
+UniRef50_Q8DSA7|g__Streptococcus.s__Streptococcus_mutans	32.1722020824
+UniRef50_P31433	32.1499349773
+UniRef50_P31433|g__Escherichia.s__Escherichia_coli	32.1499349773
+UniRef50_A3CKK9: Multiple antibiotic resistance operon transcription repressor (MarR), putative	32.1403385183
+UniRef50_A3CKK9: Multiple antibiotic resistance operon transcription repressor (MarR), putative|g__Streptococcus.s__Streptococcus_mutans	32.1403385183
+UniRef50_T0USP0: VanZF-related protein	32.1391639296
+UniRef50_T0USP0: VanZF-related protein|g__Streptococcus.s__Streptococcus_mutans	32.1391639296
+UniRef50_Q8DVH2: Phosphopantetheine adenylyltransferase	32.1373588918
+UniRef50_Q8DVH2: Phosphopantetheine adenylyltransferase|g__Streptococcus.s__Streptococcus_mutans	32.1373588918
+UniRef50_B7N653: Succinyl-diaminopimelate desuccinylase	32.1314983012
+UniRef50_B7N653: Succinyl-diaminopimelate desuccinylase|g__Escherichia.s__Escherichia_coli	32.1314983012
+UniRef50_P44304: Glyceraldehyde-3-phosphate dehydrogenase	32.1269859623
+UniRef50_P44304: Glyceraldehyde-3-phosphate dehydrogenase|g__Escherichia.s__Escherichia_coli	31.4047477146
+UniRef50_P44304: Glyceraldehyde-3-phosphate dehydrogenase|unclassified	0.7222382478
+UniRef50_B7MI93: Acetylornithine deacetylase	32.1266686674
+UniRef50_B7MI93: Acetylornithine deacetylase|g__Escherichia.s__Escherichia_coli	32.1266686674
+UniRef50_D3E2Y0: D-alanine-D-alanine ligase	32.1246905071
+UniRef50_D3E2Y0: D-alanine-D-alanine ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.1246905071
+UniRef50_B9AD57: YhgE/Pip domain protein	32.1246604217
+UniRef50_B9AD57: YhgE/Pip domain protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.1246604217
+UniRef50_A6QHJ4	32.1096268962
+UniRef50_A6QHJ4|g__Staphylococcus.s__Staphylococcus_aureus	32.1096268962
+UniRef50_D9RF58	32.0927113166
+UniRef50_D9RF58|g__Staphylococcus.s__Staphylococcus_aureus	32.0927113166
+UniRef50_P22731: High-affinity branched-chain amino acid transport ATP-binding protein LivF	32.0856943245
+UniRef50_P22731: High-affinity branched-chain amino acid transport ATP-binding protein LivF|g__Escherichia.s__Escherichia_coli	23.1521262544
+UniRef50_P22731: High-affinity branched-chain amino acid transport ATP-binding protein LivF|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.9335680700
+UniRef50_D3E3F0: 4Fe-4S binding domain-containing protein	32.0826742826
+UniRef50_D3E3F0: 4Fe-4S binding domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.0826742826
+UniRef50_P32712: Formate-dependent nitrite reductase complex subunit NrfG	32.0817504807
+UniRef50_P32712: Formate-dependent nitrite reductase complex subunit NrfG|g__Escherichia.s__Escherichia_coli	32.0817504807
+UniRef50_P0AA97	32.0769129757
+UniRef50_P0AA97|g__Escherichia.s__Escherichia_coli	32.0769129757
+UniRef50_I3UHD1: Aminotransferase	32.0768206808
+UniRef50_I3UHD1: Aminotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.0768206808
+UniRef50_Q7MLR5: Cysteine--tRNA ligase	32.0719034508
+UniRef50_Q7MLR5: Cysteine--tRNA ligase|g__Escherichia.s__Escherichia_coli	26.9445259165
+UniRef50_Q7MLR5: Cysteine--tRNA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0905536031
+UniRef50_Q7MLR5: Cysteine--tRNA ligase|g__Neisseria.s__Neisseria_meningitidis	1.7073093324
+UniRef50_Q7MLR5: Cysteine--tRNA ligase|unclassified	0.3295145988
+UniRef50_A5UMS8: Predicted Fe-S oxidoreductase	32.0703401143
+UniRef50_A5UMS8: Predicted Fe-S oxidoreductase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.0703401143
+UniRef50_Q3IVG4: Hemolysin-type calcium-binding protein	32.0686133006
+UniRef50_Q3IVG4: Hemolysin-type calcium-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	32.0686133006
+UniRef50_P75952: HTH-type transcriptional repressor ComR	32.0636423056
+UniRef50_P75952: HTH-type transcriptional repressor ComR|g__Escherichia.s__Escherichia_coli	32.0636423056
+UniRef50_Q8FD60: N-acetylmannosamine kinase	32.0616822230
+UniRef50_Q8FD60: N-acetylmannosamine kinase|g__Escherichia.s__Escherichia_coli	32.0616822230
+UniRef50_P30958: Transcription-repair-coupling factor	32.0590258677
+UniRef50_P30958: Transcription-repair-coupling factor|g__Escherichia.s__Escherichia_coli	32.0590258677
+UniRef50_I6U015	32.0550532509
+UniRef50_I6U015|g__Streptococcus.s__Streptococcus_mutans	32.0550532509
+UniRef50_A3PQA6: Transcriptional activator, TenA family	32.0497723503
+UniRef50_A3PQA6: Transcriptional activator, TenA family|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.3831254880
+UniRef50_A3PQA6: Transcriptional activator, TenA family|unclassified	0.6666468623
+UniRef50_P77504	32.0386742462
+UniRef50_P77504|g__Escherichia.s__Escherichia_coli	32.0386742462
+UniRef50_I4E1N1	32.0335670512
+UniRef50_I4E1N1|g__Streptococcus.s__Streptococcus_mutans	32.0335670512
+UniRef50_A5UNQ0: Glycosyltransferase/dolichyl-phosphate mannose synthase, GT2 family	32.0326750171
+UniRef50_A5UNQ0: Glycosyltransferase/dolichyl-phosphate mannose synthase, GT2 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	32.0326750171
+UniRef50_P34749: Putative DNA transport protein HofQ	32.0246599975
+UniRef50_P34749: Putative DNA transport protein HofQ|g__Escherichia.s__Escherichia_coli	32.0246599975
+UniRef50_P43531: Inner membrane transport protein YnfM	32.0213875631
+UniRef50_P43531: Inner membrane transport protein YnfM|g__Escherichia.s__Escherichia_coli	27.4305424641
+UniRef50_P43531: Inner membrane transport protein YnfM|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5908450990
+UniRef50_T0UHU4: 4-carboxymuconolactone decarboxylase	32.0197460361
+UniRef50_T0UHU4: 4-carboxymuconolactone decarboxylase|g__Streptococcus.s__Streptococcus_mutans	28.7302723519
+UniRef50_T0UHU4: 4-carboxymuconolactone decarboxylase|g__Streptococcus.s__Streptococcus_agalactiae	3.2894736842
+UniRef50_P0A911: Outer membrane protein A	32.0158608857
+UniRef50_P0A911: Outer membrane protein A|g__Escherichia.s__Escherichia_coli	32.0158608857
+UniRef50_P0AAG7: Multidrug resistance-like ATP-binding protein MdlB	32.0149448479
+UniRef50_P0AAG7: Multidrug resistance-like ATP-binding protein MdlB|g__Escherichia.s__Escherichia_coli	31.6402106435
+UniRef50_P0AAG7: Multidrug resistance-like ATP-binding protein MdlB|unclassified	0.3747342044
+UniRef50_P0ADU9	32.0123090647
+UniRef50_P0ADU9|g__Escherichia.s__Escherichia_coli	32.0123090647
+UniRef50_Q5HRV4	32.0021534008
+UniRef50_Q5HRV4|g__Staphylococcus.s__Staphylococcus_epidermidis	32.0021534008
+UniRef50_I0B6J5	32.0020481311
+UniRef50_I0B6J5|unclassified	32.0020481311
+UniRef50_D3E0M6: 6-hydroxymethyl-7,8-dihydropterin pyrophosphokinase	31.9956439272
+UniRef50_D3E0M6: 6-hydroxymethyl-7,8-dihydropterin pyrophosphokinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.9956439272
+UniRef50_X7DMX2	31.9912258454
+UniRef50_X7DMX2|g__Pseudomonas.s__Pseudomonas_aeruginosa	31.9912258454
+UniRef50_P11512: DNA-directed RNA polymerase subunit A'	31.9815937251
+UniRef50_P11512: DNA-directed RNA polymerase subunit A'|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.9815937251
+UniRef50_P0AB69: NAD(P) transhydrogenase subunit beta	31.9761384954
+UniRef50_P0AB69: NAD(P) transhydrogenase subunit beta|g__Escherichia.s__Escherichia_coli	31.9761384954
+UniRef50_R9SLG3: HD domain-containing protein	31.9726802253
+UniRef50_R9SLG3: HD domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.9726802253
+UniRef50_Q9JUC8: Lipoyl synthase	31.9619183743
+UniRef50_Q9JUC8: Lipoyl synthase|g__Escherichia.s__Escherichia_coli	30.8517305769
+UniRef50_Q9JUC8: Lipoyl synthase|g__Neisseria.s__Neisseria_meningitidis	1.0695187166
+UniRef50_Q9JUC8: Lipoyl synthase|unclassified	0.0406690808
+UniRef50_A1SWH9: sn-glycerol-3-phosphate import ATP-binding protein UgpC	31.9441703905
+UniRef50_A1SWH9: sn-glycerol-3-phosphate import ATP-binding protein UgpC|g__Escherichia.s__Escherichia_coli	30.6303961580
+UniRef50_A1SWH9: sn-glycerol-3-phosphate import ATP-binding protein UgpC|g__Deinococcus.s__Deinococcus_radiodurans	1.0626992561
+UniRef50_A1SWH9: sn-glycerol-3-phosphate import ATP-binding protein UgpC|unclassified	0.2510749764
+UniRef50_Q8TXN1: Chorismate synthase	31.9315578334
+UniRef50_Q8TXN1: Chorismate synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.8861535437
+UniRef50_Q8TXN1: Chorismate synthase|unclassified	0.0454042896
+UniRef50_A3PIJ7: NUDIX hydrolase	31.9309924154
+UniRef50_A3PIJ7: NUDIX hydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.9309924154
+UniRef50_G4QEZ4: 2-nitropropane dioxygenase family protein	31.9259983986
+UniRef50_G4QEZ4: 2-nitropropane dioxygenase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.9259983986
+UniRef50_A4G0N3: Probable tRNA pseudouridine synthase B	31.9258497319
+UniRef50_A4G0N3: Probable tRNA pseudouridine synthase B|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.9258497319
+UniRef50_A6T6B5: tRNA-2-methylthio-N(6)-dimethylallyladenosine synthase	31.9143524382
+UniRef50_A6T6B5: tRNA-2-methylthio-N(6)-dimethylallyladenosine synthase|g__Escherichia.s__Escherichia_coli	17.9623992745
+UniRef50_A6T6B5: tRNA-2-methylthio-N(6)-dimethylallyladenosine synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.2317944462
+UniRef50_A6T6B5: tRNA-2-methylthio-N(6)-dimethylallyladenosine synthase|g__Acinetobacter.s__Acinetobacter_baumannii	2.7201587174
+UniRef50_P06710: DNA polymerase III subunit tau	31.9131951812
+UniRef50_P06710: DNA polymerase III subunit tau|g__Escherichia.s__Escherichia_coli	31.9131951812
+UniRef50_P04993: RecBCD enzyme subunit RecD	31.9128606820
+UniRef50_P04993: RecBCD enzyme subunit RecD|g__Escherichia.s__Escherichia_coli	31.9128606820
+UniRef50_X2MI40: Thiamine ABC transporter permease	31.9025795256
+UniRef50_X2MI40: Thiamine ABC transporter permease|g__Escherichia.s__Escherichia_coli	31.9025795256
+UniRef50_Q3J525	31.8991116318
+UniRef50_Q3J525|unclassified	31.8991116318
+UniRef50_I6TPB9: GntR family transcriptional regulator	31.8953533628
+UniRef50_I6TPB9: GntR family transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	31.8953533628
+UniRef50_B5YX37: Transporter, major facilitator family	31.8948241273
+UniRef50_B5YX37: Transporter, major facilitator family|g__Escherichia.s__Escherichia_coli	31.8948241273
+UniRef50_P11557: Protein DamX	31.8852553207
+UniRef50_P11557: Protein DamX|g__Escherichia.s__Escherichia_coli	31.8852553207
+UniRef50_P26647: 1-acyl-sn-glycerol-3-phosphate acyltransferase	31.8800008203
+UniRef50_P26647: 1-acyl-sn-glycerol-3-phosphate acyltransferase|g__Escherichia.s__Escherichia_coli	31.2632896382
+UniRef50_P26647: 1-acyl-sn-glycerol-3-phosphate acyltransferase|unclassified	0.6167111821
+UniRef50_P0A9K5: PhoH-like protein	31.8789406731
+UniRef50_P0A9K5: PhoH-like protein|g__Escherichia.s__Escherichia_coli	31.8789406731
+UniRef50_P39342	31.8764169268
+UniRef50_P39342|g__Escherichia.s__Escherichia_coli	31.8764169268
+UniRef50_P0ADV3: Lipopolysaccharide export system protein LptA	31.8743050469
+UniRef50_P0ADV3: Lipopolysaccharide export system protein LptA|g__Escherichia.s__Escherichia_coli	31.8743050469
+UniRef50_B5QY15: Glucans biosynthesis protein G	31.8601624789
+UniRef50_B5QY15: Glucans biosynthesis protein G|g__Escherichia.s__Escherichia_coli	23.6682312414
+UniRef50_B5QY15: Glucans biosynthesis protein G|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8828285791
+UniRef50_B5QY15: Glucans biosynthesis protein G|unclassified	0.3091026584
+UniRef50_P52612: Flagellum-specific ATP synthase	31.8584009295
+UniRef50_P52612: Flagellum-specific ATP synthase|g__Escherichia.s__Escherichia_coli	31.8584009295
+UniRef50_H1CG66: Inosine-5'-monophosphate dehydrogenase	31.8522873939
+UniRef50_H1CG66: Inosine-5'-monophosphate dehydrogenase|g__Staphylococcus.s__Staphylococcus_aureus	31.8522873939
+UniRef50_A5UJD7: Predicted transposase	31.8508543230
+UniRef50_A5UJD7: Predicted transposase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.8508543230
+UniRef50_Q8FJC0	31.8479386475
+UniRef50_Q8FJC0|g__Escherichia.s__Escherichia_coli	31.8479386475
+UniRef50_J9YRC9: Dihydrofolate reductase	31.8478112380
+UniRef50_J9YRC9: Dihydrofolate reductase|g__Streptococcus.s__Streptococcus_agalactiae	25.8336437032
+UniRef50_J9YRC9: Dihydrofolate reductase|g__Streptococcus.s__Streptococcus_mutans	6.0141675349
+UniRef50_E3GX46: Triphosphoribosyl-dephospho-CoA protein	31.8470363193
+UniRef50_E3GX46: Triphosphoribosyl-dephospho-CoA protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.8470363193
+UniRef50_D3S395: Transcription initiation factor IIB	31.8459354484
+UniRef50_D3S395: Transcription initiation factor IIB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.8459354484
+UniRef50_B7M4N2: Bifunctional protein FolD	31.8430456514
+UniRef50_B7M4N2: Bifunctional protein FolD|g__Escherichia.s__Escherichia_coli	30.9263161709
+UniRef50_B7M4N2: Bifunctional protein FolD|unclassified	0.9167294806
+UniRef50_C6ST62	31.8402712804
+UniRef50_C6ST62|g__Streptococcus.s__Streptococcus_mutans	31.8402712804
+UniRef50_B7MIX6: Thiazole synthase	31.8382119596
+UniRef50_B7MIX6: Thiazole synthase|g__Escherichia.s__Escherichia_coli	31.8382119596
+UniRef50_P0ACD2: Putative colanic acid biosynthesis acetyltransferase WcaF	31.8374374827
+UniRef50_P0ACD2: Putative colanic acid biosynthesis acetyltransferase WcaF|g__Escherichia.s__Escherichia_coli	28.6315641533
+UniRef50_P0ACD2: Putative colanic acid biosynthesis acetyltransferase WcaF|unclassified	3.2058733294
+UniRef50_Q46925: Cysteine desulfurase CsdA	31.8350443341
+UniRef50_Q46925: Cysteine desulfurase CsdA|g__Escherichia.s__Escherichia_coli	31.8350443341
+UniRef50_C6ST49	31.8336081595
+UniRef50_C6ST49|g__Streptococcus.s__Streptococcus_mutans	31.8336081595
+UniRef50_Q8E7H3: Sensory transduction protein LytR	31.8253342055
+UniRef50_Q8E7H3: Sensory transduction protein LytR|g__Streptococcus.s__Streptococcus_mutans	25.8624916229
+UniRef50_Q8E7H3: Sensory transduction protein LytR|g__Streptococcus.s__Streptococcus_agalactiae	5.9628425826
+UniRef50_Q2NGX9: Phenylalanine--tRNA ligase beta subunit	31.8230266154
+UniRef50_Q2NGX9: Phenylalanine--tRNA ligase beta subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.8230266154
+UniRef50_J0KT69	31.8181818182
+UniRef50_J0KT69|unclassified	31.8181818182
+UniRef50_P76542: Putative prophage CPZ-55 integrase	31.8153444673
+UniRef50_P76542: Putative prophage CPZ-55 integrase|g__Escherichia.s__Escherichia_coli	31.8153444673
+UniRef50_P0AAJ6: Formate dehydrogenase-O iron-sulfur subunit	31.8096145159
+UniRef50_P0AAJ6: Formate dehydrogenase-O iron-sulfur subunit|g__Escherichia.s__Escherichia_coli	31.8096145159
+UniRef50_M5ERF8	31.8041740492
+UniRef50_M5ERF8|unclassified	31.8041740492
+UniRef50_P0AA83: Cytosine permease	31.7985756424
+UniRef50_P0AA83: Cytosine permease|g__Escherichia.s__Escherichia_coli	30.5454428103
+UniRef50_P0AA83: Cytosine permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2531328321
+UniRef50_B1XE05: CP4-6 prophage predicted ferric trasnporter subunit membrane component of ABC superfamily	31.7972350230
+UniRef50_B1XE05: CP4-6 prophage predicted ferric trasnporter subunit membrane component of ABC superfamily|g__Escherichia.s__Escherichia_coli	31.7972350230
+UniRef50_T1YBR1	31.7950047533
+UniRef50_T1YBR1|g__Staphylococcus.s__Staphylococcus_aureus	31.7950047533
+UniRef50_K4W2H2: Cyclic-di-GMP phosphodiesterase	31.7931933822
+UniRef50_K4W2H2: Cyclic-di-GMP phosphodiesterase|g__Escherichia.s__Escherichia_coli	31.7931933822
+UniRef50_Q92UW6: Probable sulfoacetaldehyde acetyltransferase	31.7860283525
+UniRef50_Q92UW6: Probable sulfoacetaldehyde acetyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.2696594093
+UniRef50_Q92UW6: Probable sulfoacetaldehyde acetyltransferase|unclassified	0.5163689432
+UniRef50_D2ZRU8: Transglutaminase-like protein	31.7793447602
+UniRef50_D2ZRU8: Transglutaminase-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.7793447602
+UniRef50_A7ZK67: Methylglyoxal synthase	31.7742032556
+UniRef50_A7ZK67: Methylglyoxal synthase|g__Escherichia.s__Escherichia_coli	31.7742032556
+UniRef50_A3PN05: AAA ATPase	31.7686624975
+UniRef50_A3PN05: AAA ATPase|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.7686624975
+UniRef50_Q3SKN6: Ribosome-recycling factor	31.7459686471
+UniRef50_Q3SKN6: Ribosome-recycling factor|g__Escherichia.s__Escherichia_coli	31.7459686471
+UniRef50_A4WUZ0: ABC transporter related	31.7441742512
+UniRef50_A4WUZ0: ABC transporter related|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.7441742512
+UniRef50_Q5M4V7: Lipid/multidrug/protein-type ABC exporter, ATP binding/membrane-spanning protein	31.7299093457
+UniRef50_Q5M4V7: Lipid/multidrug/protein-type ABC exporter, ATP binding/membrane-spanning protein|g__Streptococcus.s__Streptococcus_mutans	31.0715814985
+UniRef50_Q5M4V7: Lipid/multidrug/protein-type ABC exporter, ATP binding/membrane-spanning protein|g__Streptococcus.s__Streptococcus_agalactiae	0.6583278473
+UniRef50_P58409	31.7297767662
+UniRef50_P58409|g__Escherichia.s__Escherichia_coli	31.7297767662
+UniRef50_O27472	31.7269527804
+UniRef50_O27472|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.7269527804
+UniRef50_P37338: HTH-type transcriptional repressor CsiR	31.7260267115
+UniRef50_P37338: HTH-type transcriptional repressor CsiR|g__Escherichia.s__Escherichia_coli	31.7260267115
+UniRef50_Q28Q04: Phosphate ABC transporter membrane protein 2, PhoT family	31.7233931928
+UniRef50_Q28Q04: Phosphate ABC transporter membrane protein 2, PhoT family|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.7233931928
+UniRef50_B7MDB8: Cobalamin synthase	31.7226962219
+UniRef50_B7MDB8: Cobalamin synthase|g__Escherichia.s__Escherichia_coli	31.7226962219
+UniRef50_P0AF96: Toxin-antitoxin biofilm protein TabA	31.7224191513
+UniRef50_P0AF96: Toxin-antitoxin biofilm protein TabA|g__Escherichia.s__Escherichia_coli	31.7224191513
+UniRef50_P25527: GABA permease	31.7195347010
+UniRef50_P25527: GABA permease|g__Escherichia.s__Escherichia_coli	21.8855089986
+UniRef50_P25527: GABA permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.9046372386
+UniRef50_P25527: GABA permease|unclassified	0.9293884638
+UniRef50_P0A084: Peptide methionine sulfoxide reductase MsrA 1	31.7152195216
+UniRef50_P0A084: Peptide methionine sulfoxide reductase MsrA 1|g__Staphylococcus.s__Staphylococcus_aureus	31.7152195216
+UniRef50_A5V938: 3,4-dihydroxy-2-butanone 4-phosphate synthase	31.7128972069
+UniRef50_A5V938: 3,4-dihydroxy-2-butanone 4-phosphate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.7128972069
+UniRef50_A5UJU3: Adhesin-like protein	31.7103050643
+UniRef50_A5UJU3: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.7018592176
+UniRef50_A5UJU3: Adhesin-like protein|unclassified	0.0084458467
+UniRef50_P22714: Galactose-1-phosphate uridylyltransferase	31.7060245433
+UniRef50_P22714: Galactose-1-phosphate uridylyltransferase|g__Escherichia.s__Escherichia_coli	31.7060245433
+UniRef50_A7X4P8: Holo-[acyl-carrier-protein] synthase	31.7011060557
+UniRef50_A7X4P8: Holo-[acyl-carrier-protein] synthase|g__Staphylococcus.s__Staphylococcus_aureus	31.7011060557
+UniRef50_P25535: 2-octaprenylphenol hydroxylase	31.6992402036
+UniRef50_P25535: 2-octaprenylphenol hydroxylase|g__Escherichia.s__Escherichia_coli	31.6992402036
+UniRef50_P0AFY0: Sigma-E factor regulatory protein RseB	31.6978633603
+UniRef50_P0AFY0: Sigma-E factor regulatory protein RseB|g__Escherichia.s__Escherichia_coli	31.6978633603
+UniRef50_P52614: Flagellar hook-length control protein	31.6869017777
+UniRef50_P52614: Flagellar hook-length control protein|g__Escherichia.s__Escherichia_coli	31.6869017777
+UniRef50_P0AFJ0: Putative permease PerM	31.6866805994
+UniRef50_P0AFJ0: Putative permease PerM|g__Escherichia.s__Escherichia_coli	31.6866805994
+UniRef50_Q9CJ30: Deoxyuridine 5'-triphosphate nucleotidohydrolase	31.6778067567
+UniRef50_Q9CJ30: Deoxyuridine 5'-triphosphate nucleotidohydrolase|g__Streptococcus.s__Streptococcus_mutans	31.6778067567
+UniRef50_P0ABS6: DNA primase	31.6628263043
+UniRef50_P0ABS6: DNA primase|g__Escherichia.s__Escherichia_coli	31.6360521427
+UniRef50_P0ABS6: DNA primase|unclassified	0.0267741616
+UniRef50_Q8CY30: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	31.6579885902
+UniRef50_Q8CY30: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.2355500577
+UniRef50_Q8CY30: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|unclassified	0.4224385325
+UniRef50_A5UNK2	31.6530897522
+UniRef50_A5UNK2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.6530897522
+UniRef50_A4WRK9: Probable cytosol aminopeptidase	31.6504434000
+UniRef50_A4WRK9: Probable cytosol aminopeptidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.6504434000
+UniRef50_R7PWQ3: Minor teichoic acid biosynthesis protein GgaB	31.6504428948
+UniRef50_R7PWQ3: Minor teichoic acid biosynthesis protein GgaB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.6504428948
+UniRef50_O27051: D-3-phosphoglycerate dehydrogenase	31.6500368768
+UniRef50_O27051: D-3-phosphoglycerate dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.6258993353
+UniRef50_O27051: D-3-phosphoglycerate dehydrogenase|unclassified	0.0241375415
+UniRef50_Q3IVG9: ABC Glycine betaine/L-proline transporter, inner membrane subunit	31.6492004175
+UniRef50_Q3IVG9: ABC Glycine betaine/L-proline transporter, inner membrane subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.6492004175
+UniRef50_Q3IX13: Transcriptional activator, adenine-specific DNA methyltransferase	31.6444297113
+UniRef50_Q3IX13: Transcriptional activator, adenine-specific DNA methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.6444297113
+UniRef50_P77730	31.6333687283
+UniRef50_P77730|g__Escherichia.s__Escherichia_coli	31.6333687283
+UniRef50_Q5JBH1: GDP-L-fucose synthase	31.6287608371
+UniRef50_Q5JBH1: GDP-L-fucose synthase|g__Escherichia.s__Escherichia_coli	31.6287608371
+UniRef50_R7PXR3	31.6278283417
+UniRef50_R7PXR3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.5779709069
+UniRef50_R7PXR3|unclassified	3.0498574348
+UniRef50_Q7N3N2: ProP effector	31.6257705111
+UniRef50_Q7N3N2: ProP effector|g__Escherichia.s__Escherichia_coli	31.6257705111
+UniRef50_Q9SAK4: Succinate-semialdehyde dehydrogenase, mitochondrial	31.6209748988
+UniRef50_Q9SAK4: Succinate-semialdehyde dehydrogenase, mitochondrial|g__Escherichia.s__Escherichia_coli	31.4949511004
+UniRef50_Q9SAK4: Succinate-semialdehyde dehydrogenase, mitochondrial|unclassified	0.1260237984
+UniRef50_Q5ZW64: Flagellar P-ring protein	31.6175003361
+UniRef50_Q5ZW64: Flagellar P-ring protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.0530991071
+UniRef50_Q5ZW64: Flagellar P-ring protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.5644012290
+UniRef50_P33363: Periplasmic beta-glucosidase	31.6114015345
+UniRef50_P33363: Periplasmic beta-glucosidase|g__Escherichia.s__Escherichia_coli	27.4624603354
+UniRef50_P33363: Periplasmic beta-glucosidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8362405434
+UniRef50_P33363: Periplasmic beta-glucosidase|unclassified	0.3127006558
+UniRef50_P76027: Oligopeptide transport ATP-binding protein OppD	31.6027877318
+UniRef50_P76027: Oligopeptide transport ATP-binding protein OppD|g__Escherichia.s__Escherichia_coli	31.6027877318
+UniRef50_O27477: UPF0284 protein MTH_1426	31.5994873162
+UniRef50_O27477: UPF0284 protein MTH_1426|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.5994873162
+UniRef50_P42598	31.5949889484
+UniRef50_P42598|g__Escherichia.s__Escherichia_coli	31.5949889484
+UniRef50_A5UKY3: Probable phosphoglucosamine mutase	31.5912729471
+UniRef50_A5UKY3: Probable phosphoglucosamine mutase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.5912729471
+UniRef50_I6T8I8: Methylated-DNA--protein-cysteine S-methyltransferase	31.5890439203
+UniRef50_I6T8I8: Methylated-DNA--protein-cysteine S-methyltransferase|g__Streptococcus.s__Streptococcus_mutans	31.5890439203
+UniRef50_Q8X7L9: Tyrosine-protein kinase wzc	31.5876930834
+UniRef50_Q8X7L9: Tyrosine-protein kinase wzc|g__Escherichia.s__Escherichia_coli	31.5459469239
+UniRef50_Q8X7L9: Tyrosine-protein kinase wzc|unclassified	0.0417461595
+UniRef50_D3HAC9: Single-stranded DNA-specific exonuclease	31.5719463123
+UniRef50_D3HAC9: Single-stranded DNA-specific exonuclease|g__Streptococcus.s__Streptococcus_mutans	31.1165729061
+UniRef50_D3HAC9: Single-stranded DNA-specific exonuclease|g__Streptococcus.s__Streptococcus_agalactiae	0.4553734062
+UniRef50_O28392: DNA-directed RNA polymerase subunit B'	31.5651041118
+UniRef50_O28392: DNA-directed RNA polymerase subunit B'|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.5651041118
+UniRef50_P76550	31.5646243938
+UniRef50_P76550|g__Escherichia.s__Escherichia_coli	31.5646243938
+UniRef50_P77698	31.5610905816
+UniRef50_P77698|g__Escherichia.s__Escherichia_coli	31.5610905816
+UniRef50_Q9HZY5: Transcription elongation factor GreB	31.5427731473
+UniRef50_Q9HZY5: Transcription elongation factor GreB|g__Pseudomonas.s__Pseudomonas_aeruginosa	31.5427731473
+UniRef50_UPI00005C81F5: hypothetical protein RSP_4057	31.5389410670
+UniRef50_UPI00005C81F5: hypothetical protein RSP_4057|unclassified	26.9727310214
+UniRef50_UPI00005C81F5: hypothetical protein RSP_4057|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.5662100457
+UniRef50_R6DSS9: Dihydroorotate dehydrogenase	31.5320982379
+UniRef50_R6DSS9: Dihydroorotate dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	31.5320982379
+UniRef50_P76162	31.5314127568
+UniRef50_P76162|g__Escherichia.s__Escherichia_coli	31.5314127568
+UniRef50_Q7VQF3: Chaperone protein ClpB	31.5293708230
+UniRef50_Q7VQF3: Chaperone protein ClpB|g__Escherichia.s__Escherichia_coli	31.5293708230
+UniRef50_B9KMR2	31.5183989022
+UniRef50_B9KMR2|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.7662102540
+UniRef50_B9KMR2|unclassified	1.7521886482
+UniRef50_P67291: UPF0154 protein SA1178	31.5140730050
+UniRef50_P67291: UPF0154 protein SA1178|g__Staphylococcus.s__Staphylococcus_aureus	25.8643554908
+UniRef50_P67291: UPF0154 protein SA1178|g__Staphylococcus.s__Staphylococcus_epidermidis	5.6497175141
+UniRef50_M2CCG1	31.5125576329
+UniRef50_M2CCG1|g__Streptococcus.s__Streptococcus_mutans	31.5125576329
+UniRef50_P00562: Bifunctional aspartokinase/homoserine dehydrogenase 2	31.5016064781
+UniRef50_P00562: Bifunctional aspartokinase/homoserine dehydrogenase 2|g__Escherichia.s__Escherichia_coli	31.5016064781
+UniRef50_D3QD86	31.4858472320
+UniRef50_D3QD86|g__Staphylococcus.s__Staphylococcus_epidermidis	16.2903396606
+UniRef50_D3QD86|g__Staphylococcus.s__Staphylococcus_aureus	15.1955075714
+UniRef50_Q2FS70: 30S ribosomal protein S7	31.4788412396
+UniRef50_Q2FS70: 30S ribosomal protein S7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.4788412396
+UniRef50_P05704: Methyl-accepting chemotaxis protein III	31.4657071753
+UniRef50_P05704: Methyl-accepting chemotaxis protein III|g__Escherichia.s__Escherichia_coli	31.4657071753
+UniRef50_P33216: Mannitol 2-dehydrogenase	31.4653009641
+UniRef50_P33216: Mannitol 2-dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.6294399195
+UniRef50_P33216: Mannitol 2-dehydrogenase|unclassified	0.8358610446
+UniRef50_P33591: Nickel transport system permease protein NikB	31.4630452845
+UniRef50_P33591: Nickel transport system permease protein NikB|g__Escherichia.s__Escherichia_coli	31.4630452845
+UniRef50_Q8DS55	31.4629584953
+UniRef50_Q8DS55|g__Streptococcus.s__Streptococcus_mutans	30.8387393238
+UniRef50_Q8DS55|unclassified	0.6242191714
+UniRef50_P76097	31.4626817493
+UniRef50_P76097|g__Escherichia.s__Escherichia_coli	31.4626817493
+UniRef50_A3PJZ0: LPS-assembly protein LptD	31.4450757584
+UniRef50_A3PJZ0: LPS-assembly protein LptD|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.4450757584
+UniRef50_S1PI08	31.4433389168
+UniRef50_S1PI08|g__Escherichia.s__Escherichia_coli	29.2228626292
+UniRef50_S1PI08|unclassified	2.2204762876
+UniRef50_UPI00047E1145: sugar ABC transporter permease	31.4357077200
+UniRef50_UPI00047E1145: sugar ABC transporter permease|unclassified	31.4357077200
+UniRef50_Q83II9: Ascorbate-specific permease IIC component UlaA	31.4285905411
+UniRef50_Q83II9: Ascorbate-specific permease IIC component UlaA|g__Escherichia.s__Escherichia_coli	31.4285905411
+UniRef50_K8EXK1	31.4254810712
+UniRef50_K8EXK1|g__Streptococcus.s__Streptococcus_mutans	31.4254810712
+UniRef50_P32690	31.4238972408
+UniRef50_P32690|g__Escherichia.s__Escherichia_coli	31.4238972408
+UniRef50_P76630: Inner membrane protein YgaZ	31.4222628639
+UniRef50_P76630: Inner membrane protein YgaZ|g__Escherichia.s__Escherichia_coli	31.4222628639
+UniRef50_P76585	31.4174051505
+UniRef50_P76585|g__Escherichia.s__Escherichia_coli	31.4174051505
+UniRef50_D3DYR5: ATP-dependent DNA helicase	31.4165765771
+UniRef50_D3DYR5: ATP-dependent DNA helicase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.4165765771
+UniRef50_Q3HKK4	31.4164752022
+UniRef50_Q3HKK4|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.5663608088
+UniRef50_Q3HKK4|unclassified	5.8501143934
+UniRef50_G9A888: Multidrug resistance protein, AcrB family	31.4032835206
+UniRef50_G9A888: Multidrug resistance protein, AcrB family|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.4032835206
+UniRef50_W1DQS7: DNA gyrase subunit B	31.3871251265
+UniRef50_W1DQS7: DNA gyrase subunit B|g__Escherichia.s__Escherichia_coli	31.3871251265
+UniRef50_Q5HS30	31.3865356076
+UniRef50_Q5HS30|g__Staphylococcus.s__Staphylococcus_aureus	17.5416251786
+UniRef50_Q5HS30|g__Staphylococcus.s__Staphylococcus_epidermidis	13.8449104290
+UniRef50_P31122: Sugar efflux transporter	31.3769978805
+UniRef50_P31122: Sugar efflux transporter|g__Escherichia.s__Escherichia_coli	31.3769978805
+UniRef50_P30871: Inorganic triphosphatase	31.3749023211
+UniRef50_P30871: Inorganic triphosphatase|g__Escherichia.s__Escherichia_coli	31.3749023211
+UniRef50_Q46911	31.3545149032
+UniRef50_Q46911|g__Escherichia.s__Escherichia_coli	31.3545149032
+UniRef50_Q2YQ27: Xanthine phosphoribosyltransferase	31.3447089009
+UniRef50_Q2YQ27: Xanthine phosphoribosyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.3447089009
+UniRef50_V9WEG0: Permease of the drug/metabolite transporter (DMT) superfamily	31.3410699974
+UniRef50_V9WEG0: Permease of the drug/metabolite transporter (DMT) superfamily|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.3410699974
+UniRef50_D3E189	31.3364071598
+UniRef50_D3E189|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.3364071598
+UniRef50_Q83RK8	31.3277947884
+UniRef50_Q83RK8|g__Escherichia.s__Escherichia_coli	31.3277947884
+UniRef50_Q0BPU7: Protoheme IX farnesyltransferase	31.3146920486
+UniRef50_Q0BPU7: Protoheme IX farnesyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.2188089879
+UniRef50_Q0BPU7: Protoheme IX farnesyltransferase|unclassified	0.0958830607
+UniRef50_P0A4I5: Sensor protein CiaH	31.3140309168
+UniRef50_P0A4I5: Sensor protein CiaH|g__Streptococcus.s__Streptococcus_mutans	31.3140309168
+UniRef50_A9N1I0: Peptidase E	31.3108389238
+UniRef50_A9N1I0: Peptidase E|g__Escherichia.s__Escherichia_coli	31.3108389238
+UniRef50_A4WPF0	31.3040008387
+UniRef50_A4WPF0|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.3040008387
+UniRef50_Q985A5: GTPase Era	31.3020031183
+UniRef50_Q985A5: GTPase Era|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.3020031183
+UniRef50_P27250: Aldehyde reductase Ahr	31.2995501283
+UniRef50_P27250: Aldehyde reductase Ahr|g__Escherichia.s__Escherichia_coli	29.8871207497
+UniRef50_P27250: Aldehyde reductase Ahr|g__Acinetobacter.s__Acinetobacter_baumannii	1.4124293785
+UniRef50_K7VU62: Cystathionine beta-lyase	31.2953283648
+UniRef50_K7VU62: Cystathionine beta-lyase|g__Streptococcus.s__Streptococcus_mutans	27.3274322143
+UniRef50_K7VU62: Cystathionine beta-lyase|g__Streptococcus.s__Streptococcus_agalactiae	3.9678961505
+UniRef50_A0M0D8: 30S ribosomal protein S18	31.2835547182
+UniRef50_A0M0D8: 30S ribosomal protein S18|g__Staphylococcus.s__Staphylococcus_aureus	16.6152298950
+UniRef50_A0M0D8: 30S ribosomal protein S18|g__Staphylococcus.s__Staphylococcus_epidermidis	14.6683248232
+UniRef50_A4WVT7: Lytic transglycosylase, catalytic	31.2791704899
+UniRef50_A4WVT7: Lytic transglycosylase, catalytic|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.7117723708
+UniRef50_A4WVT7: Lytic transglycosylase, catalytic|unclassified	1.5673981191
+UniRef50_P0AFP5	31.2777099180
+UniRef50_P0AFP5|g__Escherichia.s__Escherichia_coli	31.2777099180
+UniRef50_P00909: Tryptophan biosynthesis protein TrpCF	31.2741275346
+UniRef50_P00909: Tryptophan biosynthesis protein TrpCF|g__Escherichia.s__Escherichia_coli	31.0880262571
+UniRef50_P00909: Tryptophan biosynthesis protein TrpCF|unclassified	0.1861012776
+UniRef50_W8VHA5: Exodeoxyribonuclease III	31.2702506772
+UniRef50_W8VHA5: Exodeoxyribonuclease III|g__Escherichia.s__Escherichia_coli	31.2702506772
+UniRef50_E5QVL2	31.2702260954
+UniRef50_E5QVL2|g__Staphylococcus.s__Staphylococcus_aureus	29.9362002584
+UniRef50_E5QVL2|unclassified	1.3340258370
+UniRef50_A6V0C7: Endoribonuclease YbeY	31.2500000000
+UniRef50_A6V0C7: Endoribonuclease YbeY|g__Pseudomonas.s__Pseudomonas_aeruginosa	31.2500000000
+UniRef50_Q5HKQ3	31.2500000000
+UniRef50_Q5HKQ3|g__Staphylococcus.s__Staphylococcus_epidermidis	31.2500000000
+UniRef50_Q5HLZ7	31.2500000000
+UniRef50_Q5HLZ7|g__Staphylococcus.s__Staphylococcus_epidermidis	31.2500000000
+UniRef50_P77610: L-asparagine permease	31.2490696797
+UniRef50_P77610: L-asparagine permease|g__Escherichia.s__Escherichia_coli	31.2490696797
+UniRef50_P22098: Tryptophan biosynthesis protein TrpCF	31.2478403138
+UniRef50_P22098: Tryptophan biosynthesis protein TrpCF|g__Escherichia.s__Escherichia_coli	31.2042412276
+UniRef50_P22098: Tryptophan biosynthesis protein TrpCF|unclassified	0.0435990862
+UniRef50_B6ERK3: L-allo-threonine aldolase	31.2369031699
+UniRef50_B6ERK3: L-allo-threonine aldolase|g__Escherichia.s__Escherichia_coli	31.2369031699
+UniRef50_A7FGD3: Glucokinase	31.2361543809
+UniRef50_A7FGD3: Glucokinase|g__Escherichia.s__Escherichia_coli	31.2361543809
+UniRef50_P77293: Bactoprenol glucosyl transferase homolog from prophage CPS-53	31.2352354361
+UniRef50_P77293: Bactoprenol glucosyl transferase homolog from prophage CPS-53|g__Escherichia.s__Escherichia_coli	30.9250512583
+UniRef50_P77293: Bactoprenol glucosyl transferase homolog from prophage CPS-53|unclassified	0.3101841779
+UniRef50_Q5XDZ5	31.2329050633
+UniRef50_Q5XDZ5|g__Streptococcus.s__Streptococcus_mutans	31.2329050633
+UniRef50_P0A2J2: High-affinity branched-chain amino acid transport system permease protein LivH	31.2232056385
+UniRef50_P0A2J2: High-affinity branched-chain amino acid transport system permease protein LivH|g__Escherichia.s__Escherichia_coli	31.2232056385
+UniRef50_A3CP54: ABC transporter membrane-spanning permease, arginine/histidine transport, putative	31.2230870350
+UniRef50_A3CP54: ABC transporter membrane-spanning permease, arginine/histidine transport, putative|g__Streptococcus.s__Streptococcus_mutans	29.6798771584
+UniRef50_A3CP54: ABC transporter membrane-spanning permease, arginine/histidine transport, putative|g__Streptococcus.s__Streptococcus_agalactiae	1.5432098765
+UniRef50_P07021: Putative lipoprotein YfiB	31.2222829057
+UniRef50_P07021: Putative lipoprotein YfiB|g__Escherichia.s__Escherichia_coli	31.2222829057
+UniRef50_B9KTS5: Animal heme peroxidase	31.2181924092
+UniRef50_B9KTS5: Animal heme peroxidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.2181924092
+UniRef50_P69740: Hydrogenase-1 small chain	31.2093766013
+UniRef50_P69740: Hydrogenase-1 small chain|g__Escherichia.s__Escherichia_coli	29.4563265603
+UniRef50_P69740: Hydrogenase-1 small chain|unclassified	1.7530500410
+UniRef50_P31961: Phosphogluconate dehydratase	31.2016691624
+UniRef50_P31961: Phosphogluconate dehydratase|g__Escherichia.s__Escherichia_coli	18.0787730568
+UniRef50_P31961: Phosphogluconate dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.7985008530
+UniRef50_P31961: Phosphogluconate dehydratase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4526199949
+UniRef50_P31961: Phosphogluconate dehydratase|g__Neisseria.s__Neisseria_meningitidis	0.5662514156
+UniRef50_P31961: Phosphogluconate dehydratase|unclassified	0.3055238421
+UniRef50_P39409	31.1991110426
+UniRef50_P39409|g__Escherichia.s__Escherichia_coli	31.1991110426
+UniRef50_P76499	31.1970502115
+UniRef50_P76499|g__Escherichia.s__Escherichia_coli	31.1970502115
+UniRef50_L6P508: DNA topoisomerase IV subunit A	31.1962138167
+UniRef50_L6P508: DNA topoisomerase IV subunit A|g__Escherichia.s__Escherichia_coli	31.1962138167
+UniRef50_P27675: Glutamine transport ATP-binding protein GlnQ	31.1884631449
+UniRef50_P27675: Glutamine transport ATP-binding protein GlnQ|g__Streptococcus.s__Streptococcus_mutans	31.1884631449
+UniRef50_E3I295: Peptidase M20	31.1877826904
+UniRef50_E3I295: Peptidase M20|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.1877826904
+UniRef50_Q8D5J3: Alkaline phosphatase	31.1710834598
+UniRef50_Q8D5J3: Alkaline phosphatase|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.1710834598
+UniRef50_P09549: Protein DedD	31.1621395620
+UniRef50_P09549: Protein DedD|g__Escherichia.s__Escherichia_coli	31.1621395620
+UniRef50_Q5HR61: Lipoprotein, putative	31.1615999962
+UniRef50_Q5HR61: Lipoprotein, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	31.1615999962
+UniRef50_Q3IVR4	31.1496937184
+UniRef50_Q3IVR4|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.5023507569
+UniRef50_Q3IVR4|unclassified	14.6473429615
+UniRef50_A6TCC4: Exodeoxyribonuclease 7 large subunit	31.1494144311
+UniRef50_A6TCC4: Exodeoxyribonuclease 7 large subunit|g__Escherichia.s__Escherichia_coli	31.1197735439
+UniRef50_A6TCC4: Exodeoxyribonuclease 7 large subunit|unclassified	0.0296408872
+UniRef50_F9XXP5: Transporter, Sodium/bile acid symporter family, macrolide-resistance protein	31.1424084098
+UniRef50_F9XXP5: Transporter, Sodium/bile acid symporter family, macrolide-resistance protein|g__Streptococcus.s__Streptococcus_mutans	31.1424084098
+UniRef50_P76197: Inner membrane transport protein YdiM	31.1413888465
+UniRef50_P76197: Inner membrane transport protein YdiM|g__Escherichia.s__Escherichia_coli	31.1413888465
+UniRef50_A1JNH2: UPF0283 membrane protein YE2117	31.1340232162
+UniRef50_A1JNH2: UPF0283 membrane protein YE2117|g__Escherichia.s__Escherichia_coli	31.1340232162
+UniRef50_A0AK23	31.1178276600
+UniRef50_A0AK23|g__Staphylococcus.s__Staphylococcus_aureus	31.1178276600
+UniRef50_P33135: Flagellar biosynthetic protein FliR	31.1175337732
+UniRef50_P33135: Flagellar biosynthetic protein FliR|g__Escherichia.s__Escherichia_coli	31.1175337732
+UniRef50_Q5HRW3	31.1163165537
+UniRef50_Q5HRW3|g__Staphylococcus.s__Staphylococcus_epidermidis	31.1163165537
+UniRef50_Q8FJZ8: Anaerobic C4-dicarboxylate transporter DcuC	31.0999101838
+UniRef50_Q8FJZ8: Anaerobic C4-dicarboxylate transporter DcuC|g__Escherichia.s__Escherichia_coli	31.0999101838
+UniRef50_P77306: Inner membrane protein YqiK	31.0998504311
+UniRef50_P77306: Inner membrane protein YqiK|g__Escherichia.s__Escherichia_coli	31.0998504311
+UniRef50_P0A1R7: DNA-binding protein HU-alpha	31.0993249759
+UniRef50_P0A1R7: DNA-binding protein HU-alpha|g__Escherichia.s__Escherichia_coli	31.0993249759
+UniRef50_A8FP74: Methionyl-tRNA formyltransferase	31.0975410920
+UniRef50_A8FP74: Methionyl-tRNA formyltransferase|g__Escherichia.s__Escherichia_coli	31.0475611570
+UniRef50_A8FP74: Methionyl-tRNA formyltransferase|unclassified	0.0499799351
+UniRef50_Q03SV2: Ribose-5-phosphate isomerase A	31.0946441131
+UniRef50_Q03SV2: Ribose-5-phosphate isomerase A|g__Streptococcus.s__Streptococcus_agalactiae	31.0946441131
+UniRef50_E0ZS30: Beta-geo	31.0926239195
+UniRef50_E0ZS30: Beta-geo|g__Escherichia.s__Escherichia_coli	31.0926239195
+UniRef50_F7QQI7: N-acetylneuraminate synthase	31.0887558034
+UniRef50_F7QQI7: N-acetylneuraminate synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.0887558034
+UniRef50_P0ADM9	31.0786957579
+UniRef50_P0ADM9|g__Escherichia.s__Escherichia_coli	31.0786957579
+UniRef50_B9AG94	31.0683139535
+UniRef50_B9AG94|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.2558139535
+UniRef50_B9AG94|unclassified	7.8125000000
+UniRef50_P29848: Cysteine synthase B	31.0630082537
+UniRef50_P29848: Cysteine synthase B|g__Escherichia.s__Escherichia_coli	30.9694599384
+UniRef50_P29848: Cysteine synthase B|unclassified	0.0935483153
+UniRef50_M9SFA8	31.0630073434
+UniRef50_M9SFA8|g__Pseudomonas.s__Pseudomonas_aeruginosa	31.0630073434
+UniRef50_P27278: Trifunctional NAD biosynthesis/regulator protein NadR	31.0591691725
+UniRef50_P27278: Trifunctional NAD biosynthesis/regulator protein NadR|g__Escherichia.s__Escherichia_coli	31.0591691725
+UniRef50_P54745: Heat-responsive suppressor HrsA	31.0561141830
+UniRef50_P54745: Heat-responsive suppressor HrsA|g__Escherichia.s__Escherichia_coli	31.0561141830
+UniRef50_O27880: Indolepyruvate oxidoreductase subunit IorA	31.0549885818
+UniRef50_O27880: Indolepyruvate oxidoreductase subunit IorA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.0549885818
+UniRef50_P0AFI5: D-alanyl-D-alanine endopeptidase	31.0548174395
+UniRef50_P0AFI5: D-alanyl-D-alanine endopeptidase|g__Escherichia.s__Escherichia_coli	31.0548174395
+UniRef50_P45564	31.0536857051
+UniRef50_P45564|g__Escherichia.s__Escherichia_coli	31.0536857051
+UniRef50_Q56066: Molybdopterin molybdenumtransferase	31.0531349602
+UniRef50_Q56066: Molybdopterin molybdenumtransferase|g__Escherichia.s__Escherichia_coli	30.9392674006
+UniRef50_Q56066: Molybdopterin molybdenumtransferase|unclassified	0.1138675596
+UniRef50_A4VKL4: Cbb3-type cytochrome c oxidase subunit CcoP	31.0516516882
+UniRef50_A4VKL4: Cbb3-type cytochrome c oxidase subunit CcoP|g__Pseudomonas.s__Pseudomonas_aeruginosa	31.0516516882
+UniRef50_Q168Q1: Integral membrane protein, putative	31.0468604414
+UniRef50_Q168Q1: Integral membrane protein, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	31.0468604414
+UniRef50_P39434: Soluble lytic murein transglycosylase	31.0464412733
+UniRef50_P39434: Soluble lytic murein transglycosylase|g__Escherichia.s__Escherichia_coli	31.0464412733
+UniRef50_R4ZRY7	31.0412858252
+UniRef50_R4ZRY7|g__Streptococcus.s__Streptococcus_mutans	29.9613722183
+UniRef50_R4ZRY7|g__Streptococcus.s__Streptococcus_agalactiae	1.0799136069
+UniRef50_A8Z481: Competence protein ComGD	31.0409868715
+UniRef50_A8Z481: Competence protein ComGD|g__Staphylococcus.s__Staphylococcus_aureus	31.0409868715
+UniRef50_D3DZ70: Methanogenesis marker protein 17	31.0367799138
+UniRef50_D3DZ70: Methanogenesis marker protein 17|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.0367799138
+UniRef50_Q9HNI0: Thermosome subunit beta	31.0294685838
+UniRef50_Q9HNI0: Thermosome subunit beta|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.0294685838
+UniRef50_Q9CE42: Peptide methionine sulfoxide reductase MsrA 2	31.0197088630
+UniRef50_Q9CE42: Peptide methionine sulfoxide reductase MsrA 2|g__Streptococcus.s__Streptococcus_mutans	31.0197088630
+UniRef50_P0AB92: Phospho-2-dehydro-3-deoxyheptonate aldolase, Phe-sensitive	31.0172227505
+UniRef50_P0AB92: Phospho-2-dehydro-3-deoxyheptonate aldolase, Phe-sensitive|g__Escherichia.s__Escherichia_coli	30.8399742766
+UniRef50_P0AB92: Phospho-2-dehydro-3-deoxyheptonate aldolase, Phe-sensitive|unclassified	0.1772484739
+UniRef50_P39343: HTH-type transcriptional regulator IdnR	31.0078655025
+UniRef50_P39343: HTH-type transcriptional regulator IdnR|g__Escherichia.s__Escherichia_coli	31.0078655025
+UniRef50_O27719	31.0075216270
+UniRef50_O27719|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.0075216270
+UniRef50_R7PTK0	31.0035837689
+UniRef50_R7PTK0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	31.0035837689
+UniRef50_P39368	31.0014844249
+UniRef50_P39368|g__Escherichia.s__Escherichia_coli	31.0014844249
+UniRef50_F7XFL7	30.9972192763
+UniRef50_F7XFL7|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.9972192763
+UniRef50_P76547	30.9921633942
+UniRef50_P76547|g__Escherichia.s__Escherichia_coli	29.1264917524
+UniRef50_P76547|unclassified	1.8656716418
+UniRef50_P25534: 2-octaprenyl-6-methoxyphenol hydroxylase	30.9708432803
+UniRef50_P25534: 2-octaprenyl-6-methoxyphenol hydroxylase|g__Escherichia.s__Escherichia_coli	30.8496656892
+UniRef50_P25534: 2-octaprenyl-6-methoxyphenol hydroxylase|unclassified	0.1211775911
+UniRef50_D4LWG1: ATPase components of various ABC-type transport systems, contain duplicated ATPase	30.9695579641
+UniRef50_D4LWG1: ATPase components of various ABC-type transport systems, contain duplicated ATPase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.9695579641
+UniRef50_M9S4Z2: Two-component response regulator	30.9662807269
+UniRef50_M9S4Z2: Two-component response regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	30.9662807269
+UniRef50_P76117	30.9576027751
+UniRef50_P76117|g__Escherichia.s__Escherichia_coli	30.9576027751
+UniRef50_Q92BC5: Probable thiol peroxidase	30.9568959999
+UniRef50_Q92BC5: Probable thiol peroxidase|g__Staphylococcus.s__Staphylococcus_epidermidis	30.9568959999
+UniRef50_A5UMV8: Sugar transferase, WcaJ	30.9549864438
+UniRef50_A5UMV8: Sugar transferase, WcaJ|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.9549864438
+UniRef50_B9AFH0: Polymorphic outer membrane protein repeat (3 repeats) (Fragment)	30.9447258945
+UniRef50_B9AFH0: Polymorphic outer membrane protein repeat (3 repeats) (Fragment)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.6871606418
+UniRef50_B9AFH0: Polymorphic outer membrane protein repeat (3 repeats) (Fragment)|unclassified	0.2575652527
+UniRef50_P54036: 30S ribosomal protein S17P	30.9374128276
+UniRef50_P54036: 30S ribosomal protein S17P|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.9374128276
+UniRef50_B5F752: Crotonobetainyl-CoA dehydrogenase	30.9305395048
+UniRef50_B5F752: Crotonobetainyl-CoA dehydrogenase|g__Escherichia.s__Escherichia_coli	30.1629470242
+UniRef50_B5F752: Crotonobetainyl-CoA dehydrogenase|unclassified	0.7675924806
+UniRef50_B1Z1Y2: Ureidoglycolate lyase	30.9301562454
+UniRef50_B1Z1Y2: Ureidoglycolate lyase|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.7499487520
+UniRef50_B1Z1Y2: Ureidoglycolate lyase|unclassified	0.1802074934
+UniRef50_P0A2E0: Nitrogen regulation protein NR(II)	30.9182084083
+UniRef50_P0A2E0: Nitrogen regulation protein NR(II)|g__Escherichia.s__Escherichia_coli	30.1428950763
+UniRef50_P0A2E0: Nitrogen regulation protein NR(II)|unclassified	0.7753133320
+UniRef50_Q6CZ33: sn-glycerol-3-phosphate transport system permease protein UgpE	30.9121548938
+UniRef50_Q6CZ33: sn-glycerol-3-phosphate transport system permease protein UgpE|g__Escherichia.s__Escherichia_coli	30.9121548938
+UniRef50_D3DZB3: MatE efflux family protein	30.9112077183
+UniRef50_D3DZB3: MatE efflux family protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.9112077183
+UniRef50_A5UNL3: Adhesin-like protein	30.8984571948
+UniRef50_A5UNL3: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.8984571948
+UniRef50_R5FRB0: Glutamine amidotransferase of anthranilate synthase or aminodeoxychorismate synthase	30.8954838684
+UniRef50_R5FRB0: Glutamine amidotransferase of anthranilate synthase or aminodeoxychorismate synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.8954838684
+UniRef50_H5SY94: ABC transporter ATP-binding protein	30.8950086981
+UniRef50_H5SY94: ABC transporter ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	30.8950086981
+UniRef50_P37635	30.8899664192
+UniRef50_P37635|g__Escherichia.s__Escherichia_coli	30.8899664192
+UniRef50_Q83P86: Multidrug resistance protein MdtN	30.8738236016
+UniRef50_Q83P86: Multidrug resistance protein MdtN|g__Escherichia.s__Escherichia_coli	30.8738236016
+UniRef50_Q2NFN1: Predicted peptidase	30.8690770766
+UniRef50_Q2NFN1: Predicted peptidase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.8690770766
+UniRef50_Q56200: UPF0045 protein in glkA 3'region	30.8667161699
+UniRef50_Q56200: UPF0045 protein in glkA 3'region|g__Staphylococcus.s__Staphylococcus_epidermidis	18.1961207484
+UniRef50_Q56200: UPF0045 protein in glkA 3'region|g__Staphylococcus.s__Staphylococcus_aureus	12.6705954216
+UniRef50_P06612: DNA topoisomerase 1	30.8599077125
+UniRef50_P06612: DNA topoisomerase 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.4128650152
+UniRef50_P06612: DNA topoisomerase 1|g__Escherichia.s__Escherichia_coli	13.0458446604
+UniRef50_P06612: DNA topoisomerase 1|g__Acinetobacter.s__Acinetobacter_baumannii	0.3796507213
+UniRef50_P06612: DNA topoisomerase 1|unclassified	0.0215473156
+UniRef50_D3E3L7: Ribonuclease III Rnc	30.8535414295
+UniRef50_D3E3L7: Ribonuclease III Rnc|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.8535414295
+UniRef50_P31806: Bifunctional NAD(P)H-hydrate repair enzyme Nnr	30.8521349913
+UniRef50_P31806: Bifunctional NAD(P)H-hydrate repair enzyme Nnr|g__Escherichia.s__Escherichia_coli	30.8521349913
+UniRef50_A5UP00: Methenyltetrahydromethanopterin cyclohydrolase	30.8504727787
+UniRef50_A5UP00: Methenyltetrahydromethanopterin cyclohydrolase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.8504727787
+UniRef50_A4WZ51: Lyso-ornithine lipid acyltransferase	30.8414165881
+UniRef50_A4WZ51: Lyso-ornithine lipid acyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.8414165881
+UniRef50_Q03Z27: Methionine import ATP-binding protein MetN	30.8411512890
+UniRef50_Q03Z27: Methionine import ATP-binding protein MetN|g__Streptococcus.s__Streptococcus_mutans	30.8411512890
+UniRef50_G8VAL6: Methyltransferase	30.8399933400
+UniRef50_G8VAL6: Methyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	30.8399933400
+UniRef50_A7ZRX6: Uronate isomerase	30.8360541593
+UniRef50_A7ZRX6: Uronate isomerase|g__Escherichia.s__Escherichia_coli	30.6990706849
+UniRef50_A7ZRX6: Uronate isomerase|unclassified	0.1369834744
+UniRef50_P57936: Triosephosphate isomerase	30.8206787242
+UniRef50_P57936: Triosephosphate isomerase|g__Escherichia.s__Escherichia_coli	30.8206787242
+UniRef50_Q15RL2: Electron transport complex subunit D	30.8167435096
+UniRef50_Q15RL2: Electron transport complex subunit D|g__Escherichia.s__Escherichia_coli	30.8167435096
+UniRef50_I6U152	30.8084994396
+UniRef50_I6U152|g__Streptococcus.s__Streptococcus_mutans	30.8084994396
+UniRef50_A5UMG5: Adhesin-like protein	30.8008248001
+UniRef50_A5UMG5: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.3660095936
+UniRef50_A5UMG5: Adhesin-like protein|unclassified	0.4348152066
+UniRef50_K0L2H6	30.7942482569
+UniRef50_K0L2H6|g__Staphylococcus.s__Staphylococcus_aureus	26.8348991166
+UniRef50_K0L2H6|unclassified	3.9593491402
+UniRef50_I0JC87	30.7933924754
+UniRef50_I0JC87|g__Staphylococcus.s__Staphylococcus_aureus	30.7933924754
+UniRef50_P61653: 2-dehydro-3-deoxyphosphooctonate aldolase	30.7809223069
+UniRef50_P61653: 2-dehydro-3-deoxyphosphooctonate aldolase|g__Escherichia.s__Escherichia_coli	23.1014860120
+UniRef50_P61653: 2-dehydro-3-deoxyphosphooctonate aldolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8878597262
+UniRef50_P61653: 2-dehydro-3-deoxyphosphooctonate aldolase|g__Acinetobacter.s__Acinetobacter_baumannii	2.7915765687
+UniRef50_P36672: PTS system trehalose-specific EIIBC component	30.7809197893
+UniRef50_P36672: PTS system trehalose-specific EIIBC component|g__Escherichia.s__Escherichia_coli	24.0165484110
+UniRef50_P36672: PTS system trehalose-specific EIIBC component|g__Clostridium.s__Clostridium_beijerinckii	6.7643713782
+UniRef50_J0MXI6: Adenosylmethionine-8-amino-7-oxononanoate transaminase	30.7740286142
+UniRef50_J0MXI6: Adenosylmethionine-8-amino-7-oxononanoate transaminase|g__Staphylococcus.s__Staphylococcus_epidermidis	30.7740286142
+UniRef50_A5UP16: Conserved hypothetical membrane protein Msm_1739	30.7716513354
+UniRef50_A5UP16: Conserved hypothetical membrane protein Msm_1739|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.7716513354
+UniRef50_P19642: PTS system maltose- and glucose-specific EIICB component	30.7695886655
+UniRef50_P19642: PTS system maltose- and glucose-specific EIICB component|g__Escherichia.s__Escherichia_coli	30.7695886655
+UniRef50_J9HAE8	30.7692307692
+UniRef50_J9HAE8|unclassified	30.7692307692
+UniRef50_P39176: Probable L,D-transpeptidase ErfK/SrfK	30.7644340684
+UniRef50_P39176: Probable L,D-transpeptidase ErfK/SrfK|g__Escherichia.s__Escherichia_coli	30.6123339019
+UniRef50_P39176: Probable L,D-transpeptidase ErfK/SrfK|unclassified	0.1521001665
+UniRef50_M4YX49: Cystathionine beta-lyase	30.7629022034
+UniRef50_M4YX49: Cystathionine beta-lyase|g__Streptococcus.s__Streptococcus_mutans	30.7629022034
+UniRef50_P39325: ABC transporter periplasmic-binding protein YtfQ	30.7487737204
+UniRef50_P39325: ABC transporter periplasmic-binding protein YtfQ|g__Escherichia.s__Escherichia_coli	30.7487737204
+UniRef50_A5UNH1: Lipopolysaccharide cholinephosphotransferase	30.7485884780
+UniRef50_A5UNH1: Lipopolysaccharide cholinephosphotransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.7485884780
+UniRef50_P76085: Phenylacetate-coenzyme A ligase	30.7436931562
+UniRef50_P76085: Phenylacetate-coenzyme A ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.1000591057
+UniRef50_P76085: Phenylacetate-coenzyme A ligase|g__Escherichia.s__Escherichia_coli	3.4532829799
+UniRef50_P76085: Phenylacetate-coenzyme A ligase|g__Acinetobacter.s__Acinetobacter_baumannii	1.8883210443
+UniRef50_P76085: Phenylacetate-coenzyme A ligase|unclassified	0.3020300262
+UniRef50_Q2NFV5	30.7434843696
+UniRef50_Q2NFV5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.7434843696
+UniRef50_A5UNW1: Phage-related minor tail protein	30.7379866951
+UniRef50_A5UNW1: Phage-related minor tail protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.7379866951
+UniRef50_B5Y0Y6: Queuine tRNA-ribosyltransferase	30.7374473789
+UniRef50_B5Y0Y6: Queuine tRNA-ribosyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.2477122545
+UniRef50_B5Y0Y6: Queuine tRNA-ribosyltransferase|g__Escherichia.s__Escherichia_coli	13.4440539039
+UniRef50_B5Y0Y6: Queuine tRNA-ribosyltransferase|unclassified	0.0456812206
+UniRef50_I6U0J6	30.7287922430
+UniRef50_I6U0J6|g__Streptococcus.s__Streptococcus_mutans	30.7287922430
+UniRef50_P77148	30.7266156813
+UniRef50_P77148|g__Escherichia.s__Escherichia_coli	30.1001340322
+UniRef50_P77148|unclassified	0.6264816491
+UniRef50_P76446: Protein Rtn	30.7242841249
+UniRef50_P76446: Protein Rtn|g__Escherichia.s__Escherichia_coli	30.7242841249
+UniRef50_I7DGD4: Signal transduction histidine kinase	30.7227258912
+UniRef50_I7DGD4: Signal transduction histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.7227258912
+UniRef50_Q3J3B7: ABC transporter, fused ATPase and inner membrane subunits	30.7226264507
+UniRef50_Q3J3B7: ABC transporter, fused ATPase and inner membrane subunits|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.7226264507
+UniRef50_A1TJX6: Respiratory nitrate reductase alpha subunit apoprotein	30.7212266241
+UniRef50_A1TJX6: Respiratory nitrate reductase alpha subunit apoprotein|g__Escherichia.s__Escherichia_coli	30.7212266241
+UniRef50_A5UJQ2	30.7136853284
+UniRef50_A5UJQ2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.7136853284
+UniRef50_A3CQV0: 33 kDa chaperonin	30.7093395477
+UniRef50_A3CQV0: 33 kDa chaperonin|g__Streptococcus.s__Streptococcus_mutans	30.7093395477
+UniRef50_Q8FDB4: Toxin YhaV	30.7074631304
+UniRef50_Q8FDB4: Toxin YhaV|g__Escherichia.s__Escherichia_coli	30.7074631304
+UniRef50_P36682	30.6943327210
+UniRef50_P36682|g__Escherichia.s__Escherichia_coli	30.5550870355
+UniRef50_P36682|unclassified	0.1392456855
+UniRef50_P06988: Histidinol dehydrogenase	30.6860213544
+UniRef50_P06988: Histidinol dehydrogenase|g__Escherichia.s__Escherichia_coli	30.6860213544
+UniRef50_P77503	30.6837381010
+UniRef50_P77503|g__Escherichia.s__Escherichia_coli	30.6837381010
+UniRef50_P52616: Phase 2 flagellin	30.6736248930
+UniRef50_P52616: Phase 2 flagellin|g__Escherichia.s__Escherichia_coli	30.6736248930
+UniRef50_P15038: Helicase IV	30.6646839451
+UniRef50_P15038: Helicase IV|g__Escherichia.s__Escherichia_coli	30.6646839451
+UniRef50_Q5F8E8: Chaperone protein HscA homolog	30.6645928817
+UniRef50_Q5F8E8: Chaperone protein HscA homolog|g__Escherichia.s__Escherichia_coli	30.1228810724
+UniRef50_Q5F8E8: Chaperone protein HscA homolog|g__Acinetobacter.s__Acinetobacter_baumannii	0.5417118093
+UniRef50_B7UFR8: Probable 4-deoxy-4-formamido-L-arabinose-phosphoundecaprenol deformylase ArnD	30.6574464699
+UniRef50_B7UFR8: Probable 4-deoxy-4-formamido-L-arabinose-phosphoundecaprenol deformylase ArnD|g__Escherichia.s__Escherichia_coli	30.6574464699
+UniRef50_A5ITH6	30.6556228568
+UniRef50_A5ITH6|g__Staphylococcus.s__Staphylococcus_aureus	30.6556228568
+UniRef50_A5ULF5: Possible glycosyltransferase	30.6474970965
+UniRef50_A5ULF5: Possible glycosyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.6474970965
+UniRef50_P52052	30.6451249548
+UniRef50_P52052|g__Escherichia.s__Escherichia_coli	30.6451249548
+UniRef50_Q8TY12: Predicted HD superfamily hydrolase	30.6413623741
+UniRef50_Q8TY12: Predicted HD superfamily hydrolase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.6413623741
+UniRef50_D9RQI3: Immunoglobulin G binding protein A	30.6402452079
+UniRef50_D9RQI3: Immunoglobulin G binding protein A|g__Staphylococcus.s__Staphylococcus_aureus	30.6402452079
+UniRef50_E8SE78	30.6372549020
+UniRef50_E8SE78|g__Staphylococcus.s__Staphylococcus_epidermidis	24.7549019608
+UniRef50_E8SE78|g__Staphylococcus.s__Staphylococcus_aureus	5.8823529412
+UniRef50_P12995: Adenosylmethionine-8-amino-7-oxononanoate aminotransferase	30.6322618633
+UniRef50_P12995: Adenosylmethionine-8-amino-7-oxononanoate aminotransferase|g__Escherichia.s__Escherichia_coli	30.6322618633
+UniRef50_C6SRB4	30.6320720208
+UniRef50_C6SRB4|g__Streptococcus.s__Streptococcus_mutans	30.6320720208
+UniRef50_D3DZD8: Anaerobic ribonucleoside-triphosphate reductase NrdD	30.6297619658
+UniRef50_D3DZD8: Anaerobic ribonucleoside-triphosphate reductase NrdD|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.6297619658
+UniRef50_UPI000375C690: hypothetical protein	30.6275810711
+UniRef50_UPI000375C690: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.6275810711
+UniRef50_Q6G8E7: Putative fluoride ion transporter CrcB 2	30.6267579686
+UniRef50_Q6G8E7: Putative fluoride ion transporter CrcB 2|g__Staphylococcus.s__Staphylococcus_aureus	30.6267579686
+UniRef50_P64625	30.6226750051
+UniRef50_P64625|g__Escherichia.s__Escherichia_coli	30.6226750051
+UniRef50_P77735	30.6063365339
+UniRef50_P77735|g__Escherichia.s__Escherichia_coli	30.6063365339
+UniRef50_A7MKJ4	30.6011399523
+UniRef50_A7MKJ4|g__Escherichia.s__Escherichia_coli	30.4099142841
+UniRef50_A7MKJ4|unclassified	0.1912256682
+UniRef50_P15047: 2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase	30.5890404216
+UniRef50_P15047: 2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase|g__Escherichia.s__Escherichia_coli	30.3787088680
+UniRef50_P15047: 2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase|unclassified	0.2103315536
+UniRef50_D3E128	30.5804363558
+UniRef50_D3E128|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.5804363558
+UniRef50_P23905: D-galactose-binding periplasmic protein	30.5772169239
+UniRef50_P23905: D-galactose-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	30.5772169239
+UniRef50_P0ABD2	30.5754423871
+UniRef50_P0ABD2|g__Escherichia.s__Escherichia_coli	26.6400029671
+UniRef50_P0ABD2|g__Acinetobacter.s__Acinetobacter_baumannii	3.9354394200
+UniRef50_F8H0W5: Cbb3-type cytochrome c oxidase subunit I	30.5688120296
+UniRef50_F8H0W5: Cbb3-type cytochrome c oxidase subunit I|g__Pseudomonas.s__Pseudomonas_aeruginosa	30.5688120296
+UniRef50_X2HF59: Membrane protein	30.5682320041
+UniRef50_X2HF59: Membrane protein|g__Streptococcus.s__Streptococcus_mutans	30.5682320041
+UniRef50_O26654: Probable ribosome biogenesis protein MTH_554	30.5655920475
+UniRef50_O26654: Probable ribosome biogenesis protein MTH_554|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.5655920475
+UniRef50_Q1C1V1: NADH pyrophosphatase	30.5641544232
+UniRef50_Q1C1V1: NADH pyrophosphatase|g__Escherichia.s__Escherichia_coli	30.5641544232
+UniRef50_U3SVP2: Signal peptidase type IV	30.5622368633
+UniRef50_U3SVP2: Signal peptidase type IV|g__Streptococcus.s__Streptococcus_mutans	30.5622368633
+UniRef50_P28638: DNA adenine methyltransferase YhdJ	30.5615656758
+UniRef50_P28638: DNA adenine methyltransferase YhdJ|g__Escherichia.s__Escherichia_coli	30.5615656758
+UniRef50_P0ACN9: HTH-type transcriptional repressor CytR	30.5503250511
+UniRef50_P0ACN9: HTH-type transcriptional repressor CytR|g__Escherichia.s__Escherichia_coli	30.5503250511
+UniRef50_P64573	30.5490740695
+UniRef50_P64573|g__Escherichia.s__Escherichia_coli	30.5490740695
+UniRef50_P0C8J9: D-tagatose-1,6-bisphosphate aldolase subunit GatZ	30.5431618128
+UniRef50_P0C8J9: D-tagatose-1,6-bisphosphate aldolase subunit GatZ|g__Escherichia.s__Escherichia_coli	30.3108085589
+UniRef50_P0C8J9: D-tagatose-1,6-bisphosphate aldolase subunit GatZ|unclassified	0.2323532539
+UniRef50_A3MLM0: Deoxycytidine triphosphate deaminase	30.5417613647
+UniRef50_A3MLM0: Deoxycytidine triphosphate deaminase|g__Pseudomonas.s__Pseudomonas_aeruginosa	28.7811979844
+UniRef50_A3MLM0: Deoxycytidine triphosphate deaminase|g__Acinetobacter.s__Acinetobacter_baumannii	1.7605633803
+UniRef50_B5F5V3: Nitrate reductase, alpha subunit	30.5380925851
+UniRef50_B5F5V3: Nitrate reductase, alpha subunit|g__Escherichia.s__Escherichia_coli	30.5380925851
+UniRef50_P75818	30.5340819377
+UniRef50_P75818|g__Escherichia.s__Escherichia_coli	30.5340819377
+UniRef50_P37766: Acetate CoA-transferase YdiF	30.5259247891
+UniRef50_P37766: Acetate CoA-transferase YdiF|g__Escherichia.s__Escherichia_coli	30.5259247891
+UniRef50_O28869	30.5248924731
+UniRef50_O28869|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.5248924731
+UniRef50_P0AA79: Hexuronate transporter	30.5236405843
+UniRef50_P0AA79: Hexuronate transporter|g__Escherichia.s__Escherichia_coli	30.5236405843
+UniRef50_P0A952: Spermidine N(1)-acetyltransferase	30.5228290344
+UniRef50_P0A952: Spermidine N(1)-acetyltransferase|g__Escherichia.s__Escherichia_coli	30.5228290344
+UniRef50_Q3J2Z8: RNA polymerase sigma factor	30.5191696285
+UniRef50_Q3J2Z8: RNA polymerase sigma factor|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.5191696285
+UniRef50_A5UN02: Predicted RNA-binding protein	30.5171504809
+UniRef50_A5UN02: Predicted RNA-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.5171504809
+UniRef50_P76086: Transcriptional repressor PaaX	30.5161553804
+UniRef50_P76086: Transcriptional repressor PaaX|g__Escherichia.s__Escherichia_coli	30.5161553804
+UniRef50_Q5E212: Soluble pyridine nucleotide transhydrogenase	30.5048373152
+UniRef50_Q5E212: Soluble pyridine nucleotide transhydrogenase|g__Escherichia.s__Escherichia_coli	23.4026122964
+UniRef50_Q5E212: Soluble pyridine nucleotide transhydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3264298287
+UniRef50_Q5E212: Soluble pyridine nucleotide transhydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	0.7757951901
+UniRef50_H3VA72: PF04394 family protein	30.5009147280
+UniRef50_H3VA72: PF04394 family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	23.2981704060
+UniRef50_H3VA72: PF04394 family protein|unclassified	7.2027443220
+UniRef50_P05827: HTH-type transcriptional regulator IlvY	30.4998674607
+UniRef50_P05827: HTH-type transcriptional regulator IlvY|g__Escherichia.s__Escherichia_coli	30.4998674607
+UniRef50_P37313: Dipeptide transport ATP-binding protein DppF	30.4880052732
+UniRef50_P37313: Dipeptide transport ATP-binding protein DppF|g__Escherichia.s__Escherichia_coli	24.8404009477
+UniRef50_P37313: Dipeptide transport ATP-binding protein DppF|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6476043256
+UniRef50_Q8DSP3	30.4831093453
+UniRef50_Q8DSP3|g__Streptococcus.s__Streptococcus_mutans	30.4831093453
+UniRef50_Q4L8P5: PTS system sucrose-specific IIBC component	30.4785315262
+UniRef50_Q4L8P5: PTS system sucrose-specific IIBC component|g__Staphylococcus.s__Staphylococcus_epidermidis	30.4785315262
+UniRef50_I6D3Q6: Oxoglutarate dehydrogenase (Succinyl-transferring), E1 component	30.4706105001
+UniRef50_I6D3Q6: Oxoglutarate dehydrogenase (Succinyl-transferring), E1 component|g__Escherichia.s__Escherichia_coli	30.4706105001
+UniRef50_A5UNF2	30.4668744189
+UniRef50_A5UNF2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.4668744189
+UniRef50_A7WYX0: Putative ribosomal protein L7Ae-like	30.4559268468
+UniRef50_A7WYX0: Putative ribosomal protein L7Ae-like|g__Staphylococcus.s__Staphylococcus_epidermidis	16.5670379579
+UniRef50_A7WYX0: Putative ribosomal protein L7Ae-like|g__Staphylococcus.s__Staphylococcus_aureus	13.8888888889
+UniRef50_P77131	30.4558413017
+UniRef50_P77131|g__Escherichia.s__Escherichia_coli	29.7041721247
+UniRef50_P77131|unclassified	0.7516691770
+UniRef50_J0ZM41	30.4549052575
+UniRef50_J0ZM41|g__Staphylococcus.s__Staphylococcus_epidermidis	30.4549052575
+UniRef50_Q8CNH3: Repressor protein	30.4539334459
+UniRef50_Q8CNH3: Repressor protein|g__Staphylococcus.s__Staphylococcus_aureus	19.8117732462
+UniRef50_Q8CNH3: Repressor protein|g__Staphylococcus.s__Staphylococcus_epidermidis	10.6421601997
+UniRef50_B2TGR6: NADH:flavin oxidoreductase/NADH oxidase	30.4529343086
+UniRef50_B2TGR6: NADH:flavin oxidoreductase/NADH oxidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.4529343086
+UniRef50_O27113: 2-oxoglutarate synthase subunit KorB	30.4514991465
+UniRef50_O27113: 2-oxoglutarate synthase subunit KorB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.4514991465
+UniRef50_Q2Y7L8: Chorismate synthase	30.4512442733
+UniRef50_Q2Y7L8: Chorismate synthase|g__Escherichia.s__Escherichia_coli	17.1592345273
+UniRef50_Q2Y7L8: Chorismate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.9792112633
+UniRef50_Q2Y7L8: Chorismate synthase|g__Acinetobacter.s__Acinetobacter_baumannii	3.9840796866
+UniRef50_Q2Y7L8: Chorismate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2635637870
+UniRef50_Q2Y7L8: Chorismate synthase|unclassified	0.0651550091
+UniRef50_P77704	30.4430940701
+UniRef50_P77704|g__Escherichia.s__Escherichia_coli	30.4430940701
+UniRef50_P0AB86: Thiamine biosynthesis lipoprotein ApbE	30.4381751285
+UniRef50_P0AB86: Thiamine biosynthesis lipoprotein ApbE|g__Escherichia.s__Escherichia_coli	30.4381751285
+UniRef50_Q8FF30: Flavohemoprotein	30.4336054509
+UniRef50_Q8FF30: Flavohemoprotein|g__Escherichia.s__Escherichia_coli	30.4336054509
+UniRef50_Q8X7W7: Catecholate siderophore receptor Fiu	30.4317602532
+UniRef50_Q8X7W7: Catecholate siderophore receptor Fiu|g__Escherichia.s__Escherichia_coli	30.4317602532
+UniRef50_V5T339: General secretion pathway protein H	30.4140167575
+UniRef50_V5T339: General secretion pathway protein H|g__Pseudomonas.s__Pseudomonas_aeruginosa	30.4140167575
+UniRef50_Q7VKS0: Translation initiation factor IF-3	30.4113968941
+UniRef50_Q7VKS0: Translation initiation factor IF-3|g__Pseudomonas.s__Pseudomonas_aeruginosa	30.4113968941
+UniRef50_Q46891: Putative hydroxypyruvate isomerase YgbM	30.4011738535
+UniRef50_Q46891: Putative hydroxypyruvate isomerase YgbM|g__Escherichia.s__Escherichia_coli	30.4011738535
+UniRef50_Q46866: Probable transcriptional regulator YgiV	30.3965246616
+UniRef50_Q46866: Probable transcriptional regulator YgiV|g__Escherichia.s__Escherichia_coli	30.3965246616
+UniRef50_P0ACS8: HTH-type transcriptional regulator RpiR	30.3885000020
+UniRef50_P0ACS8: HTH-type transcriptional regulator RpiR|g__Escherichia.s__Escherichia_coli	30.3885000020
+UniRef50_P76500	30.3855832237
+UniRef50_P76500|g__Escherichia.s__Escherichia_coli	30.3855832237
+UniRef50_P0ABM3: Heme exporter protein C	30.3847921952
+UniRef50_P0ABM3: Heme exporter protein C|g__Escherichia.s__Escherichia_coli	30.3847921952
+UniRef50_A7ZTZ7: Putative ECA polymerase	30.3653655825
+UniRef50_A7ZTZ7: Putative ECA polymerase|g__Escherichia.s__Escherichia_coli	30.3653655825
+UniRef50_Q219I2: Peptidase M16-like	30.3616662967
+UniRef50_Q219I2: Peptidase M16-like|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.3616662967
+UniRef50_A8I9B9: Enoyl-[acyl-carrier-protein] reductase [NADH]	30.3554294647
+UniRef50_A8I9B9: Enoyl-[acyl-carrier-protein] reductase [NADH]|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.3554294647
+UniRef50_A5UKX9: Pyruvate formate-lyase activating enzyme, PflA	30.3479271628
+UniRef50_A5UKX9: Pyruvate formate-lyase activating enzyme, PflA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.3479271628
+UniRef50_S0ZBX9: FhuE receptor	30.3335990644
+UniRef50_S0ZBX9: FhuE receptor|g__Escherichia.s__Escherichia_coli	30.3335990644
+UniRef50_P76237: Putative diguanylate cyclase YeaJ	30.3254992879
+UniRef50_P76237: Putative diguanylate cyclase YeaJ|g__Escherichia.s__Escherichia_coli	30.1582305389
+UniRef50_P76237: Putative diguanylate cyclase YeaJ|unclassified	0.1672687491
+UniRef50_Q2NE10: Dihydroxy-acid dehydratase	30.3241614797
+UniRef50_Q2NE10: Dihydroxy-acid dehydratase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.7115834416
+UniRef50_Q2NE10: Dihydroxy-acid dehydratase|unclassified	0.6125780381
+UniRef50_A7ZSB8: N-acetylneuraminate lyase	30.3198849458
+UniRef50_A7ZSB8: N-acetylneuraminate lyase|g__Escherichia.s__Escherichia_coli	30.3198849458
+UniRef50_R9SLR7	30.3196840771
+UniRef50_R9SLR7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.3196840771
+UniRef50_S4X915: Beta-hemolysin	30.3152767956
+UniRef50_S4X915: Beta-hemolysin|g__Staphylococcus.s__Staphylococcus_aureus	22.0319634703
+UniRef50_S4X915: Beta-hemolysin|unclassified	8.2833133253
+UniRef50_A7ZQY1: D-phenylhydantoinase	30.3127535267
+UniRef50_A7ZQY1: D-phenylhydantoinase|g__Escherichia.s__Escherichia_coli	30.3127535267
+UniRef50_P76223: Protein YnjB	30.3120625797
+UniRef50_P76223: Protein YnjB|g__Escherichia.s__Escherichia_coli	30.0703982110
+UniRef50_P76223: Protein YnjB|unclassified	0.2416643687
+UniRef50_P32057: Putative colanic acid biosynthesis glycosyl transferase WcaI	30.3102253920
+UniRef50_P32057: Putative colanic acid biosynthesis glycosyl transferase WcaI|g__Escherichia.s__Escherichia_coli	30.3102253920
+UniRef50_Q1GJZ3: Putative fluoride ion transporter CrcB	30.3097899367
+UniRef50_Q1GJZ3: Putative fluoride ion transporter CrcB|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.3097899367
+UniRef50_X2MVD0	30.3074036658
+UniRef50_X2MVD0|g__Escherichia.s__Escherichia_coli	30.3074036658
+UniRef50_E5QTB3	30.3030303030
+UniRef50_E5QTB3|g__Staphylococcus.s__Staphylococcus_aureus	30.3030303030
+UniRef50_J7R2L0	30.3030303030
+UniRef50_J7R2L0|g__Escherichia.s__Escherichia_coli	30.3030303030
+UniRef50_P07770: Benzoate 1,2-dioxygenase subunit beta	30.3030303030
+UniRef50_P07770: Benzoate 1,2-dioxygenase subunit beta|g__Acinetobacter.s__Acinetobacter_baumannii	30.3030303030
+UniRef50_P28247	30.3030303030
+UniRef50_P28247|g__Escherichia.s__Escherichia_coli	30.3030303030
+UniRef50_Q8X9B6: Biotin carboxylase	30.2997891600
+UniRef50_Q8X9B6: Biotin carboxylase|g__Escherichia.s__Escherichia_coli	30.1712856676
+UniRef50_Q8X9B6: Biotin carboxylase|unclassified	0.1285034924
+UniRef50_C6SRS1	30.2944050697
+UniRef50_C6SRS1|g__Streptococcus.s__Streptococcus_mutans	30.2944050697
+UniRef50_P75835: Inner membrane transporter YcaM	30.2868140347
+UniRef50_P75835: Inner membrane transporter YcaM|g__Escherichia.s__Escherichia_coli	30.2868140347
+UniRef50_I6T6X2: Protein BglB	30.2804387661
+UniRef50_I6T6X2: Protein BglB|g__Streptococcus.s__Streptococcus_mutans	30.2804387661
+UniRef50_D3EYX3: Glyoxalase/bleomycin resistance protein/dioxygenase	30.2723245601
+UniRef50_D3EYX3: Glyoxalase/bleomycin resistance protein/dioxygenase|g__Streptococcus.s__Streptococcus_mutans	30.2723245601
+UniRef50_Q2NI56: tRNA (guanine(26)-N(2))-dimethyltransferase	30.2681441818
+UniRef50_Q2NI56: tRNA (guanine(26)-N(2))-dimethyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.2681441818
+UniRef50_C6SPL2	30.2609054744
+UniRef50_C6SPL2|g__Streptococcus.s__Streptococcus_mutans	30.2609054744
+UniRef50_Q49W44	30.2600285373
+UniRef50_Q49W44|g__Staphylococcus.s__Staphylococcus_epidermidis	29.6472830982
+UniRef50_Q49W44|unclassified	0.6127454391
+UniRef50_Q9I0J7: NADH-quinone oxidoreductase subunit F	30.2549976867
+UniRef50_Q9I0J7: NADH-quinone oxidoreductase subunit F|g__Escherichia.s__Escherichia_coli	22.2938433155
+UniRef50_Q9I0J7: NADH-quinone oxidoreductase subunit F|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7651682581
+UniRef50_Q9I0J7: NADH-quinone oxidoreductase subunit F|g__Acinetobacter.s__Acinetobacter_baumannii	2.1959861131
+UniRef50_Q2G026: Protein translocase subunit SecG	30.2225422915
+UniRef50_Q2G026: Protein translocase subunit SecG|g__Staphylococcus.s__Staphylococcus_aureus	30.2225422915
+UniRef50_B9KWD4: Periplasmic sensor diguanylate cyclase/phosphodiesterase	30.2219612580
+UniRef50_B9KWD4: Periplasmic sensor diguanylate cyclase/phosphodiesterase|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.3226625008
+UniRef50_B9KWD4: Periplasmic sensor diguanylate cyclase/phosphodiesterase|unclassified	0.8992987572
+UniRef50_Q11IP6: Phosphate transporter	30.2095388739
+UniRef50_Q11IP6: Phosphate transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.2095388739
+UniRef50_A5UKX3	30.2000553901
+UniRef50_A5UKX3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.2000553901
+UniRef50_C6SQR5	30.1997390666
+UniRef50_C6SQR5|g__Streptococcus.s__Streptococcus_mutans	30.1997390666
+UniRef50_P76553: Ethanolamine utilization protein EutG	30.1957423129
+UniRef50_P76553: Ethanolamine utilization protein EutG|g__Escherichia.s__Escherichia_coli	30.1957423129
+UniRef50_Q1GE51: Cytochrome c oxidase assembly protein CtaG	30.1935078599
+UniRef50_Q1GE51: Cytochrome c oxidase assembly protein CtaG|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.1935078599
+UniRef50_P67129: UPF0053 inner membrane protein YgdQ	30.1845908379
+UniRef50_P67129: UPF0053 inner membrane protein YgdQ|g__Escherichia.s__Escherichia_coli	30.1845908379
+UniRef50_B5Y1K1: Elongation factor Ts	30.1808154274
+UniRef50_B5Y1K1: Elongation factor Ts|g__Escherichia.s__Escherichia_coli	19.7720742597
+UniRef50_B5Y1K1: Elongation factor Ts|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0763725148
+UniRef50_B5Y1K1: Elongation factor Ts|g__Acinetobacter.s__Acinetobacter_baumannii	2.3323686530
+UniRef50_R9SMD3	30.1777257947
+UniRef50_R9SMD3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.1777257947
+UniRef50_A7ZR14: Aminomethyltransferase	30.1726110884
+UniRef50_A7ZR14: Aminomethyltransferase|g__Escherichia.s__Escherichia_coli	27.6282041510
+UniRef50_A7ZR14: Aminomethyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8754748037
+UniRef50_A7ZR14: Aminomethyltransferase|unclassified	0.6689321336
+UniRef50_A7IP37	30.1696123026
+UniRef50_A7IP37|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.0718076444
+UniRef50_A7IP37|unclassified	0.0978046582
+UniRef50_A5GUA9: Light-independent protochlorophyllide reductase subunit B	30.1666902250
+UniRef50_A5GUA9: Light-independent protochlorophyllide reductase subunit B|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.7253652697
+UniRef50_A5GUA9: Light-independent protochlorophyllide reductase subunit B|unclassified	2.4413249553
+UniRef50_R9YM38	30.1558875125
+UniRef50_R9YM38|g__Staphylococcus.s__Staphylococcus_aureus	30.1558875125
+UniRef50_Q5HN47	30.1509929373
+UniRef50_Q5HN47|g__Staphylococcus.s__Staphylococcus_epidermidis	29.9434398445
+UniRef50_Q5HN47|unclassified	0.2075530929
+UniRef50_P21893: Single-stranded-DNA-specific exonuclease RecJ	30.1445818695
+UniRef50_P21893: Single-stranded-DNA-specific exonuclease RecJ|g__Escherichia.s__Escherichia_coli	30.1445818695
+UniRef50_P25798: Flagellar M-ring protein	30.1421672548
+UniRef50_P25798: Flagellar M-ring protein|g__Escherichia.s__Escherichia_coli	30.1421672548
+UniRef50_I7F1S3	30.1361588075
+UniRef50_I7F1S3|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.0432898872
+UniRef50_I7F1S3|unclassified	0.0928689203
+UniRef50_Q8ECQ4: 50S ribosomal protein L3 glutamine methyltransferase	30.1358427460
+UniRef50_Q8ECQ4: 50S ribosomal protein L3 glutamine methyltransferase|g__Escherichia.s__Escherichia_coli	26.4292273627
+UniRef50_Q8ECQ4: 50S ribosomal protein L3 glutamine methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2882727081
+UniRef50_Q8ECQ4: 50S ribosomal protein L3 glutamine methyltransferase|unclassified	0.4183426752
+UniRef50_A5UNW5	30.1306661934
+UniRef50_A5UNW5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.1306661934
+UniRef50_P30851: Ribonuclease R	30.1211480346
+UniRef50_P30851: Ribonuclease R|g__Escherichia.s__Escherichia_coli	30.1004999194
+UniRef50_P30851: Ribonuclease R|unclassified	0.0206481152
+UniRef50_P0AAA7: Protein WzxE	30.1193108591
+UniRef50_P0AAA7: Protein WzxE|g__Escherichia.s__Escherichia_coli	30.1193108591
+UniRef50_Q1R618	30.1068951924
+UniRef50_Q1R618|g__Escherichia.s__Escherichia_coli	28.8652250391
+UniRef50_Q1R618|unclassified	1.2416701533
+UniRef50_V9VYZ6	30.0981782425
+UniRef50_V9VYZ6|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.0981782425
+UniRef50_P0ABQ3: 2-hydroxy-3-oxopropionate reductase	30.0844654002
+UniRef50_P0ABQ3: 2-hydroxy-3-oxopropionate reductase|g__Escherichia.s__Escherichia_coli	29.6860182378
+UniRef50_P0ABQ3: 2-hydroxy-3-oxopropionate reductase|unclassified	0.3984471624
+UniRef50_A5UN65: MEMO1 family protein Msm_1438	30.0842312047
+UniRef50_A5UN65: MEMO1 family protein Msm_1438|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.0842312047
+UniRef50_R7PUB1	30.0825796817
+UniRef50_R7PUB1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.0825796817
+UniRef50_C3X110	30.0810470627
+UniRef50_C3X110|g__Streptococcus.s__Streptococcus_mutans	30.0810470627
+UniRef50_P0AD15: Sensor histidine kinase YehU	30.0772190565
+UniRef50_P0AD15: Sensor histidine kinase YehU|g__Escherichia.s__Escherichia_coli	30.0772190565
+UniRef50_A5UL08	30.0651089374
+UniRef50_A5UL08|g__Methanobrevibacter.s__Methanobrevibacter_smithii	30.0651089374
+UniRef50_UPI00046C53EE: hypothetical protein	30.0604738304
+UniRef50_UPI00046C53EE: hypothetical protein|unclassified	30.0604738304
+UniRef50_Q03638: Glutamine-dependent NAD(+) synthetase	30.0574318634
+UniRef50_Q03638: Glutamine-dependent NAD(+) synthetase|g__Rhodobacter.s__Rhodobacter_sphaeroides	30.0574318634
+UniRef50_Q8X693: 2-methylcitrate dehydratase	30.0514540358
+UniRef50_Q8X693: 2-methylcitrate dehydratase|g__Escherichia.s__Escherichia_coli	27.0592490691
+UniRef50_Q8X693: 2-methylcitrate dehydratase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9922049667
+UniRef50_UPI000366215B: hypothetical protein	30.0479916291
+UniRef50_UPI000366215B: hypothetical protein|unclassified	30.0479916291
+UniRef50_P33129: Outer membrane usher protein HtrE	30.0339380138
+UniRef50_P33129: Outer membrane usher protein HtrE|g__Escherichia.s__Escherichia_coli	30.0339380138
+UniRef50_P75870: Inner membrane protein YccS	30.0323211487
+UniRef50_P75870: Inner membrane protein YccS|g__Escherichia.s__Escherichia_coli	30.0323211487
+UniRef50_Q92CE4: Glutamate 5-kinase	30.0229283338
+UniRef50_Q92CE4: Glutamate 5-kinase|g__Streptococcus.s__Streptococcus_mutans	28.7587058306
+UniRef50_Q92CE4: Glutamate 5-kinase|g__Streptococcus.s__Streptococcus_agalactiae	1.2642225032
+UniRef50_Q5HND0: Putative fluoride ion transporter CrcB 2	30.0165865344
+UniRef50_Q5HND0: Putative fluoride ion transporter CrcB 2|g__Staphylococcus.s__Staphylococcus_epidermidis	30.0165865344
+UniRef50_Q9KPE3: Dephospho-CoA kinase	29.9966047326
+UniRef50_Q9KPE3: Dephospho-CoA kinase|g__Escherichia.s__Escherichia_coli	29.9966047326
+UniRef50_A5UM88: Adhesin-like protein	29.9916973430
+UniRef50_A5UM88: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.9095081648
+UniRef50_A5UM88: Adhesin-like protein|unclassified	0.0821891782
+UniRef50_A5UNW8: Putative PeiW-related protein (Phage psiM100)	29.9843832849
+UniRef50_A5UNW8: Putative PeiW-related protein (Phage psiM100)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.9843832849
+UniRef50_P0ABQ1: Coenzyme A biosynthesis bifunctional protein CoaBC	29.9836894897
+UniRef50_P0ABQ1: Coenzyme A biosynthesis bifunctional protein CoaBC|g__Escherichia.s__Escherichia_coli	29.9387964379
+UniRef50_P0ABQ1: Coenzyme A biosynthesis bifunctional protein CoaBC|unclassified	0.0448930518
+UniRef50_P39364: Putative sgc region protein SgcQ	29.9790565707
+UniRef50_P39364: Putative sgc region protein SgcQ|g__Escherichia.s__Escherichia_coli	29.9790565707
+UniRef50_P0AAT4: Miniconductance mechanosensitive channel YbdG	29.9731877968
+UniRef50_P0AAT4: Miniconductance mechanosensitive channel YbdG|g__Escherichia.s__Escherichia_coli	29.9731877968
+UniRef50_X5ZAH5	29.9626846933
+UniRef50_X5ZAH5|unclassified	29.9626846933
+UniRef50_P0AFB0: Nickel transport system permease protein NikC	29.9623860284
+UniRef50_P0AFB0: Nickel transport system permease protein NikC|g__Escherichia.s__Escherichia_coli	29.9623860284
+UniRef50_Q1I490: Curved DNA-binding protein	29.9617638904
+UniRef50_Q1I490: Curved DNA-binding protein|g__Escherichia.s__Escherichia_coli	29.9617638904
+UniRef50_A7ZUI3: HTH-type transcriptional repressor FabR	29.9550313347
+UniRef50_A7ZUI3: HTH-type transcriptional repressor FabR|g__Escherichia.s__Escherichia_coli	29.9550313347
+UniRef50_P33222: Putative acid--amine ligase YjfC	29.9516752341
+UniRef50_P33222: Putative acid--amine ligase YjfC|g__Escherichia.s__Escherichia_coli	29.9516752341
+UniRef50_R9SL02: Heavy metal-translocating P-type ATPase	29.9498209590
+UniRef50_R9SL02: Heavy metal-translocating P-type ATPase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.9498209590
+UniRef50_R7PVC4: O-linked GlcNAc transferase	29.9471444447
+UniRef50_R7PVC4: O-linked GlcNAc transferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.9471444447
+UniRef50_Q8XCU1: UDP-2,3-diacylglucosamine hydrolase	29.9465564935
+UniRef50_Q8XCU1: UDP-2,3-diacylglucosamine hydrolase|g__Escherichia.s__Escherichia_coli	29.9465564935
+UniRef50_A0A031SXK0: Ferrienterobactin receptor	29.9372605274
+UniRef50_A0A031SXK0: Ferrienterobactin receptor|g__Escherichia.s__Escherichia_coli	29.9372605274
+UniRef50_Q667I7: Bifunctional uridylyltransferase/uridylyl-removing enzyme	29.9348140267
+UniRef50_Q667I7: Bifunctional uridylyltransferase/uridylyl-removing enzyme|g__Escherichia.s__Escherichia_coli	29.9348140267
+UniRef50_Q50566: DNA ligase	29.9336220713
+UniRef50_Q50566: DNA ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.9336220713
+UniRef50_A5UJS4: Ribonuclease P protein component 3	29.9319686344
+UniRef50_A5UJS4: Ribonuclease P protein component 3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.9319686344
+UniRef50_Q5M614: Riboflavin transporter RibU	29.9310983223
+UniRef50_Q5M614: Riboflavin transporter RibU|g__Streptococcus.s__Streptococcus_mutans	29.9310983223
+UniRef50_Q97Q34: Phosphate import ATP-binding protein PstB 2	29.9295356243
+UniRef50_Q97Q34: Phosphate import ATP-binding protein PstB 2|g__Streptococcus.s__Streptococcus_mutans	29.9295356243
+UniRef50_G0IAR7: Multidrug resistance protein MdtG	29.9294280098
+UniRef50_G0IAR7: Multidrug resistance protein MdtG|g__Streptococcus.s__Streptococcus_mutans	29.9294280098
+UniRef50_R9SLQ2	29.9289042658
+UniRef50_R9SLQ2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.9289042658
+UniRef50_P0AEZ0: Multidrug transporter MdfA	29.9249531233
+UniRef50_P0AEZ0: Multidrug transporter MdfA|g__Escherichia.s__Escherichia_coli	29.9249531233
+UniRef50_Q9RT76	29.9237005246
+UniRef50_Q9RT76|g__Deinococcus.s__Deinococcus_radiodurans	29.9237005246
+UniRef50_M9RNM4	29.9195572615
+UniRef50_M9RNM4|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.0476480306
+UniRef50_M9RNM4|unclassified	2.8719092308
+UniRef50_B7M6Q9: Putative ion-transport protein YfeO	29.9163193786
+UniRef50_B7M6Q9: Putative ion-transport protein YfeO|g__Escherichia.s__Escherichia_coli	29.9163193786
+UniRef50_U5PDK7: Transcriptional regulator	29.9031663065
+UniRef50_U5PDK7: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	29.7614367382
+UniRef50_U5PDK7: Transcriptional regulator|unclassified	0.1417295683
+UniRef50_P39405: Ferric iron reductase protein FhuF	29.9027133676
+UniRef50_P39405: Ferric iron reductase protein FhuF|g__Escherichia.s__Escherichia_coli	29.9027133676
+UniRef50_P39163: Cation transport protein ChaC	29.8996370346
+UniRef50_P39163: Cation transport protein ChaC|g__Escherichia.s__Escherichia_coli	29.8996370346
+UniRef50_Q5E8X7: 3-ketoacyl-CoA thiolase	29.8974087023
+UniRef50_Q5E8X7: 3-ketoacyl-CoA thiolase|g__Escherichia.s__Escherichia_coli	23.0433004413
+UniRef50_Q5E8X7: 3-ketoacyl-CoA thiolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6194197548
+UniRef50_Q5E8X7: 3-ketoacyl-CoA thiolase|g__Acinetobacter.s__Acinetobacter_baumannii	1.1848341232
+UniRef50_Q5E8X7: 3-ketoacyl-CoA thiolase|unclassified	0.0498543830
+UniRef50_Q9KUY6: Alanine racemase 1	29.8971208707
+UniRef50_Q9KUY6: Alanine racemase 1|g__Escherichia.s__Escherichia_coli	29.8971208707
+UniRef50_P37626	29.8917631278
+UniRef50_P37626|g__Escherichia.s__Escherichia_coli	29.8917631278
+UniRef50_Q1LT82: D-alanine--D-alanine ligase	29.8914671525
+UniRef50_Q1LT82: D-alanine--D-alanine ligase|g__Escherichia.s__Escherichia_coli	29.8914671525
+UniRef50_Q8DW56	29.8796270984
+UniRef50_Q8DW56|g__Streptococcus.s__Streptococcus_mutans	29.8796270984
+UniRef50_A6LT51	29.8722394716
+UniRef50_A6LT51|g__Clostridium.s__Clostridium_beijerinckii	29.8722394716
+UniRef50_D3E0M1: Oxidoreductase aldo/keto reductase family	29.8720279534
+UniRef50_D3E0M1: Oxidoreductase aldo/keto reductase family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.8720279534
+UniRef50_P76219: TVP38/TMEM64 family membrane protein YdjX	29.8715080365
+UniRef50_P76219: TVP38/TMEM64 family membrane protein YdjX|g__Escherichia.s__Escherichia_coli	29.8715080365
+UniRef50_P76272	29.8645412667
+UniRef50_P76272|g__Escherichia.s__Escherichia_coli	29.8645412667
+UniRef50_Q7N8S4: Amino-acid acetyltransferase	29.8636273439
+UniRef50_Q7N8S4: Amino-acid acetyltransferase|g__Escherichia.s__Escherichia_coli	29.6876958913
+UniRef50_Q7N8S4: Amino-acid acetyltransferase|unclassified	0.1759314526
+UniRef50_C8VYT7: dTDP-4-dehydrorhamnose reductase	29.8626166744
+UniRef50_C8VYT7: dTDP-4-dehydrorhamnose reductase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.8626166744
+UniRef50_P52636: Putative electron transport protein YccM	29.8624996113
+UniRef50_P52636: Putative electron transport protein YccM|g__Escherichia.s__Escherichia_coli	29.8624996113
+UniRef50_P0DMC6: Sensor histidine kinase RcsC	29.8610837670
+UniRef50_P0DMC6: Sensor histidine kinase RcsC|g__Escherichia.s__Escherichia_coli	29.8610837670
+UniRef50_O27089: Type 2 DNA topoisomerase 6 subunit A	29.8521421953
+UniRef50_O27089: Type 2 DNA topoisomerase 6 subunit A|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.8521421953
+UniRef50_P75967	29.8471081369
+UniRef50_P75967|g__Escherichia.s__Escherichia_coli	29.8471081369
+UniRef50_E3EXQ0: Putative monovalent cation/H+ antiporter subunit D	29.8456446995
+UniRef50_E3EXQ0: Putative monovalent cation/H+ antiporter subunit D|unclassified	29.8456446995
+UniRef50_P0AAL2: Ferredoxin-type protein NapF	29.8451734371
+UniRef50_P0AAL2: Ferredoxin-type protein NapF|g__Escherichia.s__Escherichia_coli	29.8451734371
+UniRef50_V0AP01	29.8449584535
+UniRef50_V0AP01|g__Escherichia.s__Escherichia_coli	29.8449584535
+UniRef50_P16681: Protein PhnB	29.8422957297
+UniRef50_P16681: Protein PhnB|g__Escherichia.s__Escherichia_coli	29.8422957297
+UniRef50_P70787: Probable tartrate dehydrogenase/decarboxylase TtuC	29.8408727912
+UniRef50_P70787: Probable tartrate dehydrogenase/decarboxylase TtuC|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.3115190963
+UniRef50_P70787: Probable tartrate dehydrogenase/decarboxylase TtuC|unclassified	0.5293536948
+UniRef50_P39165	29.8231639670
+UniRef50_P39165|g__Escherichia.s__Escherichia_coli	29.8231639670
+UniRef50_P0AEY4: Nucleoside triphosphate pyrophosphohydrolase	29.8170869602
+UniRef50_P0AEY4: Nucleoside triphosphate pyrophosphohydrolase|g__Escherichia.s__Escherichia_coli	29.8170869602
+UniRef50_P0AAY8	29.8147255423
+UniRef50_P0AAY8|g__Escherichia.s__Escherichia_coli	29.8147255423
+UniRef50_P30852: Protein smf	29.8082767405
+UniRef50_P30852: Protein smf|g__Escherichia.s__Escherichia_coli	29.8082767405
+UniRef50_K4VCY9: Outer membrane-specific lipoprotein transporter subunit LolE	29.7988751952
+UniRef50_K4VCY9: Outer membrane-specific lipoprotein transporter subunit LolE|g__Escherichia.s__Escherichia_coli	29.7356271568
+UniRef50_K4VCY9: Outer membrane-specific lipoprotein transporter subunit LolE|unclassified	0.0632480384
+UniRef50_A1SVN9: D-erythrose-4-phosphate dehydrogenase	29.7908638384
+UniRef50_A1SVN9: D-erythrose-4-phosphate dehydrogenase|g__Escherichia.s__Escherichia_coli	17.9159757254
+UniRef50_A1SVN9: D-erythrose-4-phosphate dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3403406096
+UniRef50_A1SVN9: D-erythrose-4-phosphate dehydrogenase|unclassified	0.5345475035
+UniRef50_P0AEJ3: Isochorismate synthase EntC	29.7826422772
+UniRef50_P0AEJ3: Isochorismate synthase EntC|g__Escherichia.s__Escherichia_coli	29.7826422772
+UniRef50_Q8DW55	29.7818329886
+UniRef50_Q8DW55|g__Streptococcus.s__Streptococcus_mutans	29.7818329886
+UniRef50_A5UMH6	29.7770918530
+UniRef50_A5UMH6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.7770918530
+UniRef50_B9KN06	29.7721962781
+UniRef50_B9KN06|unclassified	19.8712061791
+UniRef50_B9KN06|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.9009900990
+UniRef50_A5UJV9: Adhesin-like protein	29.7700382885
+UniRef50_A5UJV9: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.6764154777
+UniRef50_A5UJV9: Adhesin-like protein|unclassified	0.0936228108
+UniRef50_P0ABH3: Cell division protein FtsA	29.7653488272
+UniRef50_P0ABH3: Cell division protein FtsA|g__Escherichia.s__Escherichia_coli	29.7653488272
+UniRef50_P0AF77	29.7600135666
+UniRef50_P0AF77|g__Escherichia.s__Escherichia_coli	29.7600135666
+UniRef50_R7A629: Cell division ATP-binding protein FtsE	29.7524654062
+UniRef50_R7A629: Cell division ATP-binding protein FtsE|g__Streptococcus.s__Streptococcus_mutans	29.7524654062
+UniRef50_X5QZB1	29.7480744892
+UniRef50_X5QZB1|unclassified	29.7480744892
+UniRef50_A5UKA0: Glycosyltransferase	29.7467890535
+UniRef50_A5UKA0: Glycosyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.7467890535
+UniRef50_A5UMR2	29.7416546483
+UniRef50_A5UMR2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.7416546483
+UniRef50_P24205: Lipid A biosynthesis (KDO)2-(lauroyl)-lipid IVA acyltransferase	29.7407242740
+UniRef50_P24205: Lipid A biosynthesis (KDO)2-(lauroyl)-lipid IVA acyltransferase|g__Escherichia.s__Escherichia_coli	29.7407242740
+UniRef50_P69229: Transcriptional regulatory protein BaeR	29.7404552293
+UniRef50_P69229: Transcriptional regulatory protein BaeR|g__Escherichia.s__Escherichia_coli	29.7404552293
+UniRef50_Q8Q0F9: Macro domain-containing protein MM_0177	29.7378523122
+UniRef50_Q8Q0F9: Macro domain-containing protein MM_0177|g__Escherichia.s__Escherichia_coli	29.6522112495
+UniRef50_Q8Q0F9: Macro domain-containing protein MM_0177|unclassified	0.0856410627
+UniRef50_J3LY38	29.7330013957
+UniRef50_J3LY38|unclassified	29.7330013957
+UniRef50_A1AD62: Ecotin	29.7322533407
+UniRef50_A1AD62: Ecotin|g__Escherichia.s__Escherichia_coli	29.0431336930
+UniRef50_A1AD62: Ecotin|unclassified	0.6891196477
+UniRef50_P0AGH1: Inner membrane transport permease YhhJ	29.7288916168
+UniRef50_P0AGH1: Inner membrane transport permease YhhJ|g__Escherichia.s__Escherichia_coli	29.7288916168
+UniRef50_P77381	29.7274453870
+UniRef50_P77381|g__Escherichia.s__Escherichia_coli	29.7274453870
+UniRef50_B8ZNP1: Pantothenate kinase	29.7150013604
+UniRef50_B8ZNP1: Pantothenate kinase|g__Streptococcus.s__Streptococcus_mutans	28.1426743164
+UniRef50_B8ZNP1: Pantothenate kinase|g__Streptococcus.s__Streptococcus_agalactiae	1.5723270440
+UniRef50_P0AFQ0: Inner membrane transport permease YbhR	29.7091571340
+UniRef50_P0AFQ0: Inner membrane transport permease YbhR|g__Escherichia.s__Escherichia_coli	29.7091571340
+UniRef50_L1KBI7	29.7075294425
+UniRef50_L1KBI7|unclassified	29.7075294425
+UniRef50_Q8FBT8: Phosphate-specific transport system accessory protein PhoU	29.7072118434
+UniRef50_Q8FBT8: Phosphate-specific transport system accessory protein PhoU|g__Escherichia.s__Escherichia_coli	29.7072118434
+UniRef50_Q5HQV6	29.7064288369
+UniRef50_Q5HQV6|g__Staphylococcus.s__Staphylococcus_epidermidis	29.7064288369
+UniRef50_F5X5K7: TetR family transcriptional regulator	29.6964209801
+UniRef50_F5X5K7: TetR family transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	29.6964209801
+UniRef50_R9SPB0: 7-carboxy-7-deazaguanine synthase	29.6946861606
+UniRef50_R9SPB0: 7-carboxy-7-deazaguanine synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.6946861606
+UniRef50_P23620: Phosphate regulon transcriptional regulatory protein PhoB	29.6924375968
+UniRef50_P23620: Phosphate regulon transcriptional regulatory protein PhoB|g__Escherichia.s__Escherichia_coli	23.6727391790
+UniRef50_P23620: Phosphate regulon transcriptional regulatory protein PhoB|g__Acinetobacter.s__Acinetobacter_baumannii	4.5662100457
+UniRef50_P23620: Phosphate regulon transcriptional regulatory protein PhoB|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4534883721
+UniRef50_P26608: Flagellar protein FliS	29.6909706165
+UniRef50_P26608: Flagellar protein FliS|g__Escherichia.s__Escherichia_coli	29.6909706165
+UniRef50_Q8CQY2	29.6899646215
+UniRef50_Q8CQY2|g__Staphylococcus.s__Staphylococcus_epidermidis	29.6899646215
+UniRef50_U3SS39	29.6837374098
+UniRef50_U3SS39|g__Streptococcus.s__Streptococcus_mutans	29.6837374098
+UniRef50_A7ZRN4	29.6795469209
+UniRef50_A7ZRN4|g__Escherichia.s__Escherichia_coli	29.6795469209
+UniRef50_P76462	29.6782446800
+UniRef50_P76462|g__Escherichia.s__Escherichia_coli	29.6782446800
+UniRef50_Q3IW11: Transcriptional regulator, GntR family	29.6744375599
+UniRef50_Q3IW11: Transcriptional regulator, GntR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.6744375599
+UniRef50_M4KMH2: Cysteine desulfurase	29.6704963883
+UniRef50_M4KMH2: Cysteine desulfurase|g__Streptococcus.s__Streptococcus_mutans	29.6704963883
+UniRef50_A1AZE4: Nucleoside ABC transporter membrane protein	29.6687462674
+UniRef50_A1AZE4: Nucleoside ABC transporter membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.6687462674
+UniRef50_F0TA01: Archaeal glutamate synthase [NADPH]	29.6680953757
+UniRef50_F0TA01: Archaeal glutamate synthase [NADPH]|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.6680953757
+UniRef50_P0ADS0: LOG family protein YgdH	29.6680849206
+UniRef50_P0ADS0: LOG family protein YgdH|g__Escherichia.s__Escherichia_coli	21.4332198249
+UniRef50_P0ADS0: LOG family protein YgdH|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1056958586
+UniRef50_P0ADS0: LOG family protein YgdH|unclassified	0.1291692370
+UniRef50_P66901: Diaminopropionate ammonia-lyase	29.6677128001
+UniRef50_P66901: Diaminopropionate ammonia-lyase|g__Escherichia.s__Escherichia_coli	29.6677128001
+UniRef50_F5M3U6: Two-component sensor histidine kinase	29.6661165191
+UniRef50_F5M3U6: Two-component sensor histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.6661165191
+UniRef50_Q1GGE3: NADH dehydrogenase (Quinone)	29.6651821363
+UniRef50_Q1GGE3: NADH dehydrogenase (Quinone)|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.6651821363
+UniRef50_B9KJC3: CheW protein	29.6529701779
+UniRef50_B9KJC3: CheW protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.6529701779
+UniRef50_D3E0J9: Putative adenylate kinase	29.6475433617
+UniRef50_D3E0J9: Putative adenylate kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.6475433617
+UniRef50_Q65WJ9: 2,3-diketo-L-gulonate reductase	29.6449321629
+UniRef50_Q65WJ9: 2,3-diketo-L-gulonate reductase|g__Escherichia.s__Escherichia_coli	29.6449321629
+UniRef50_P0A270: Exopolyphosphatase	29.6443943180
+UniRef50_P0A270: Exopolyphosphatase|g__Escherichia.s__Escherichia_coli	29.6443943180
+UniRef50_Q3IV73	29.6395470655
+UniRef50_Q3IV73|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.1206553778
+UniRef50_Q3IV73|unclassified	2.5188916877
+UniRef50_P76149: Succinate semialdehyde dehydrogenase [NAD(P)+] Sad	29.6385460485
+UniRef50_P76149: Succinate semialdehyde dehydrogenase [NAD(P)+] Sad|g__Escherichia.s__Escherichia_coli	29.6385460485
+UniRef50_P75966: Ribosomal large subunit pseudouridine synthase E	29.6385334946
+UniRef50_P75966: Ribosomal large subunit pseudouridine synthase E|g__Escherichia.s__Escherichia_coli	29.6385334946
+UniRef50_K2AEB5	29.6312014181
+UniRef50_K2AEB5|unclassified	29.6312014181
+UniRef50_P76104	29.6305442542
+UniRef50_P76104|g__Escherichia.s__Escherichia_coli	29.6305442542
+UniRef50_P38035: Transcriptional regulatory protein RtcR	29.6231371257
+UniRef50_P38035: Transcriptional regulatory protein RtcR|g__Escherichia.s__Escherichia_coli	26.6654849445
+UniRef50_P38035: Transcriptional regulatory protein RtcR|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9576521812
+UniRef50_P06134: Bifunctional transcriptional activator/DNA repair enzyme Ada	29.6229178899
+UniRef50_P06134: Bifunctional transcriptional activator/DNA repair enzyme Ada|g__Escherichia.s__Escherichia_coli	29.6229178899
+UniRef50_U3STL6	29.6210295069
+UniRef50_U3STL6|g__Streptococcus.s__Streptococcus_mutans	29.6210295069
+UniRef50_B6IRZ1: Phospholipase D	29.6066529762
+UniRef50_B6IRZ1: Phospholipase D|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.6066529762
+UniRef50_A8LHQ6: Protein TolB	29.6047788832
+UniRef50_A8LHQ6: Protein TolB|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.6047788832
+UniRef50_P41655	29.6040472167
+UniRef50_P41655|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.6040472167
+UniRef50_P34209: Protein YdcF	29.6022912866
+UniRef50_P34209: Protein YdcF|g__Escherichia.s__Escherichia_coli	29.6022912866
+UniRef50_P0AG04: 3-octaprenyl-4-hydroxybenzoate carboxy-lyase partner protein	29.6014001703
+UniRef50_P0AG04: 3-octaprenyl-4-hydroxybenzoate carboxy-lyase partner protein|g__Escherichia.s__Escherichia_coli	29.6014001703
+UniRef50_A5UJ62	29.5991656276
+UniRef50_A5UJ62|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.5991656276
+UniRef50_R7PWN2	29.5940049300
+UniRef50_R7PWN2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.5940049300
+UniRef50_P24230: ATP-dependent DNA helicase RecG	29.5867646922
+UniRef50_P24230: ATP-dependent DNA helicase RecG|g__Escherichia.s__Escherichia_coli	29.5867646922
+UniRef50_P76206	29.5822449062
+UniRef50_P76206|g__Escherichia.s__Escherichia_coli	29.5822449062
+UniRef50_P76909	29.5784608381
+UniRef50_P76909|g__Escherichia.s__Escherichia_coli	29.5784608381
+UniRef50_Q8P682: Ribosomal large subunit pseudouridine synthase D	29.5766976151
+UniRef50_Q8P682: Ribosomal large subunit pseudouridine synthase D|g__Escherichia.s__Escherichia_coli	26.1364092428
+UniRef50_Q8P682: Ribosomal large subunit pseudouridine synthase D|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1648089172
+UniRef50_Q8P682: Ribosomal large subunit pseudouridine synthase D|unclassified	0.2754794551
+UniRef50_A5UND9: Lipopolysaccharide cholinephosphotransferase, LicD family	29.5764483752
+UniRef50_A5UND9: Lipopolysaccharide cholinephosphotransferase, LicD family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.5764483752
+UniRef50_A5ULX3: Adhesin-like protein	29.5707830406
+UniRef50_A5ULX3: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.5707830406
+UniRef50_I6U2T3	29.5678784313
+UniRef50_I6U2T3|g__Streptococcus.s__Streptococcus_mutans	29.5678784313
+UniRef50_Q2KVV8: Glutaminase	29.5656512276
+UniRef50_Q2KVV8: Glutaminase|g__Escherichia.s__Escherichia_coli	29.5656512276
+UniRef50_Q8DU77	29.5646966763
+UniRef50_Q8DU77|g__Streptococcus.s__Streptococcus_mutans	29.5646966763
+UniRef50_Q89LH6: UPF0271 protein blr4568	29.5590038565
+UniRef50_Q89LH6: UPF0271 protein blr4568|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.5590038565
+UniRef50_O26490: Conserved protein	29.5566086019
+UniRef50_O26490: Conserved protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.5566086019
+UniRef50_P44432: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI	29.5563876691
+UniRef50_P44432: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI|g__Escherichia.s__Escherichia_coli	29.3815430393
+UniRef50_P44432: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI|unclassified	0.1748446299
+UniRef50_I6STT7	29.5522081173
+UniRef50_I6STT7|g__Streptococcus.s__Streptococcus_mutans	28.2990752853
+UniRef50_I6STT7|g__Streptococcus.s__Streptococcus_agalactiae	1.2531328321
+UniRef50_P75824: NADH oxidoreductase hcr	29.5519407655
+UniRef50_P75824: NADH oxidoreductase hcr|g__Escherichia.s__Escherichia_coli	28.9329183569
+UniRef50_P75824: NADH oxidoreductase hcr|unclassified	0.6190224085
+UniRef50_P0AA51	29.5451115743
+UniRef50_P0AA51|g__Escherichia.s__Escherichia_coli	29.5451115743
+UniRef50_P76418	29.5427393760
+UniRef50_P76418|g__Escherichia.s__Escherichia_coli	29.5427393760
+UniRef50_P14175: Glycine betaine/L-proline transport ATP-binding protein ProV	29.5383939902
+UniRef50_P14175: Glycine betaine/L-proline transport ATP-binding protein ProV|g__Escherichia.s__Escherichia_coli	29.5383939902
+UniRef50_A5F2P1: 3-ketoacyl-CoA thiolase	29.5313041734
+UniRef50_A5F2P1: 3-ketoacyl-CoA thiolase|g__Escherichia.s__Escherichia_coli	29.5313041734
+UniRef50_P0AFS5: AI-2 transport protein TqsA	29.5309966361
+UniRef50_P0AFS5: AI-2 transport protein TqsA|g__Escherichia.s__Escherichia_coli	29.5309966361
+UniRef50_Q89UE3: Malate synthase G	29.5243193657
+UniRef50_Q89UE3: Malate synthase G|g__Escherichia.s__Escherichia_coli	21.7415796535
+UniRef50_Q89UE3: Malate synthase G|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7827397121
+UniRef50_F6D239	29.5214997817
+UniRef50_F6D239|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.5214997817
+UniRef50_Q52986: Alpha-D-ribose 1-methylphosphonate 5-triphosphate synthase subunit PhnI	29.5156208152
+UniRef50_Q52986: Alpha-D-ribose 1-methylphosphonate 5-triphosphate synthase subunit PhnI|g__Escherichia.s__Escherichia_coli	25.5514026211
+UniRef50_Q52986: Alpha-D-ribose 1-methylphosphonate 5-triphosphate synthase subunit PhnI|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5663759515
+UniRef50_Q52986: Alpha-D-ribose 1-methylphosphonate 5-triphosphate synthase subunit PhnI|unclassified	1.3978422427
+UniRef50_P45763: Putative type II secretion system protein L	29.5082759183
+UniRef50_P45763: Putative type II secretion system protein L|g__Escherichia.s__Escherichia_coli	29.5082759183
+UniRef50_P76518	29.5028976281
+UniRef50_P76518|g__Escherichia.s__Escherichia_coli	29.5028976281
+UniRef50_P09127: Putative uroporphyrinogen-III C-methyltransferase	29.5013874267
+UniRef50_P09127: Putative uroporphyrinogen-III C-methyltransferase|g__Escherichia.s__Escherichia_coli	29.5013874267
+UniRef50_P76613	29.4998952512
+UniRef50_P76613|g__Escherichia.s__Escherichia_coli	29.4998952512
+UniRef50_Q2NFZ1: Digeranylgeranylglycerophospholipid reductase 1	29.4977923226
+UniRef50_Q2NFZ1: Digeranylgeranylglycerophospholipid reductase 1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.4977923226
+UniRef50_A5ULR0: Cobalamin synthase	29.4970780118
+UniRef50_A5ULR0: Cobalamin synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.4970780118
+UniRef50_A0A058T111: Glycerol-3-phosphate acyltransferase	29.4910538164
+UniRef50_A0A058T111: Glycerol-3-phosphate acyltransferase|g__Escherichia.s__Escherichia_coli	29.4910538164
+UniRef50_P0AAZ6: Replication-associated recombination protein A	29.4848186206
+UniRef50_P0AAZ6: Replication-associated recombination protein A|g__Escherichia.s__Escherichia_coli	29.4848186206
+UniRef50_P37772: Inner membrane ABC transporter permease protein YjfF	29.4791701959
+UniRef50_P37772: Inner membrane ABC transporter permease protein YjfF|g__Escherichia.s__Escherichia_coli	29.4791701959
+UniRef50_S1PD38: Glutamine-binding periplasmic protein	29.4732102158
+UniRef50_S1PD38: Glutamine-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	29.4732102158
+UniRef50_M7E6J0: Endonuclease	29.4715246954
+UniRef50_M7E6J0: Endonuclease|g__Streptococcus.s__Streptococcus_mutans	29.4715246954
+UniRef50_C0MGC7: Arginine repressor	29.4704385490
+UniRef50_C0MGC7: Arginine repressor|g__Streptococcus.s__Streptococcus_mutans	29.4704385490
+UniRef50_B1VDD6: Protein RecA	29.4696416861
+UniRef50_B1VDD6: Protein RecA|g__Escherichia.s__Escherichia_coli	28.0161533140
+UniRef50_B1VDD6: Protein RecA|g__Propionibacterium.s__Propionibacterium_acnes	1.4534883721
+UniRef50_I6TN35: Sorbose PTS system, IIB component	29.4695072529
+UniRef50_I6TN35: Sorbose PTS system, IIB component|g__Streptococcus.s__Streptococcus_mutans	29.4695072529
+UniRef50_A5UK88: Adhesin-like protein	29.4686654678
+UniRef50_A5UK88: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.4686654678
+UniRef50_Q4L350: Transposase for IS1272	29.4673982861
+UniRef50_Q4L350: Transposase for IS1272|g__Staphylococcus.s__Staphylococcus_epidermidis	29.4673982861
+UniRef50_Q46809	29.4542937937
+UniRef50_Q46809|g__Escherichia.s__Escherichia_coli	29.4542937937
+UniRef50_R7PXB7	29.4511320284
+UniRef50_R7PXB7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.4511320284
+UniRef50_Q6GGX3: Extracellular matrix-binding protein ebh	29.4488700992
+UniRef50_Q6GGX3: Extracellular matrix-binding protein ebh|g__Staphylococcus.s__Staphylococcus_aureus	29.4488700992
+UniRef50_M7DCE8: Anticodon nuclease	29.4464193581
+UniRef50_M7DCE8: Anticodon nuclease|g__Streptococcus.s__Streptococcus_mutans	29.4464193581
+UniRef50_P76536: Probable deferrochelatase/peroxidase YfeX	29.4418555547
+UniRef50_P76536: Probable deferrochelatase/peroxidase YfeX|g__Escherichia.s__Escherichia_coli	29.4418555547
+UniRef50_D9PXN6: Predicted FMN-binding protein	29.4376245829
+UniRef50_D9PXN6: Predicted FMN-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.4376245829
+UniRef50_O27710: Phosphosulfolactate synthase	29.4297914845
+UniRef50_O27710: Phosphosulfolactate synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.4297914845
+UniRef50_O27661: DNA topoisomerase 1	29.4295251588
+UniRef50_O27661: DNA topoisomerase 1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.4295251588
+UniRef50_P0AG12: Protein UmuD	29.4251085618
+UniRef50_P0AG12: Protein UmuD|g__Escherichia.s__Escherichia_coli	29.4251085618
+UniRef50_P21627: High-affinity branched-chain amino acid transport system permease protein BraD	29.4247833840
+UniRef50_P21627: High-affinity branched-chain amino acid transport system permease protein BraD|g__Pseudomonas.s__Pseudomonas_aeruginosa	29.4247833840
+UniRef50_Q6E7F4: dTDP-glucose 4,6-dehydratase	29.4228381304
+UniRef50_Q6E7F4: dTDP-glucose 4,6-dehydratase|g__Escherichia.s__Escherichia_coli	29.3320582722
+UniRef50_Q6E7F4: dTDP-glucose 4,6-dehydratase|unclassified	0.0907798582
+UniRef50_Q58210	29.4151189362
+UniRef50_Q58210|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.4151189362
+UniRef50_P31460: Galactonate operon transcriptional repressor	29.4137801025
+UniRef50_P31460: Galactonate operon transcriptional repressor|g__Escherichia.s__Escherichia_coli	29.4137801025
+UniRef50_Q5NQ45: 50S ribosomal protein L15	29.4095714130
+UniRef50_Q5NQ45: 50S ribosomal protein L15|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.4095714130
+UniRef50_B6IR83	29.4094608378
+UniRef50_B6IR83|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.4094608378
+UniRef50_D2JDA2: Replication protein	29.4084999967
+UniRef50_D2JDA2: Replication protein|g__Staphylococcus.s__Staphylococcus_aureus	29.4084999967
+UniRef50_B9KQ43: Fatty acid beta hydroxylase	29.4077247953
+UniRef50_B9KQ43: Fatty acid beta hydroxylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.4077247953
+UniRef50_P77455: Bifunctional protein PaaZ	29.4042628496
+UniRef50_P77455: Bifunctional protein PaaZ|g__Escherichia.s__Escherichia_coli	28.8932766463
+UniRef50_P77455: Bifunctional protein PaaZ|g__Deinococcus.s__Deinococcus_radiodurans	0.5109862034
+UniRef50_F5LZD2: Acetyltransferase	29.4025738027
+UniRef50_F5LZD2: Acetyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.4025738027
+UniRef50_A4WTE8	29.3991949037
+UniRef50_A4WTE8|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.3206379043
+UniRef50_A4WTE8|unclassified	14.0785569994
+UniRef50_UPI00035D2BA5: hypothetical protein	29.3881458253
+UniRef50_UPI00035D2BA5: hypothetical protein|unclassified	29.3881458253
+UniRef50_P76403	29.3805835500
+UniRef50_P76403|g__Escherichia.s__Escherichia_coli	28.1943439296
+UniRef50_P76403|g__Acinetobacter.s__Acinetobacter_baumannii	1.1862396204
+UniRef50_Q2NED1: EhbF	29.3796698162
+UniRef50_Q2NED1: EhbF|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.3796698162
+UniRef50_F3TY15: Serine-aspartate repeat protein F	29.3686412735
+UniRef50_F3TY15: Serine-aspartate repeat protein F|g__Staphylococcus.s__Staphylococcus_epidermidis	29.0759012267
+UniRef50_F3TY15: Serine-aspartate repeat protein F|g__Staphylococcus.s__Staphylococcus_aureus	0.2927400468
+UniRef50_P12282: Molybdopterin-synthase adenylyltransferase	29.3650895959
+UniRef50_P12282: Molybdopterin-synthase adenylyltransferase|g__Escherichia.s__Escherichia_coli	29.1978305126
+UniRef50_P12282: Molybdopterin-synthase adenylyltransferase|unclassified	0.1672590833
+UniRef50_P0ABU8: Biopolymer transport protein ExbB	29.3649325311
+UniRef50_P0ABU8: Biopolymer transport protein ExbB|g__Escherichia.s__Escherichia_coli	29.3649325311
+UniRef50_UPI0003C7D7D4: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase, partial	29.3580880901
+UniRef50_UPI0003C7D7D4: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase, partial|g__Escherichia.s__Escherichia_coli	29.2612294722
+UniRef50_UPI0003C7D7D4: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase, partial|unclassified	0.0968586179
+UniRef50_P50199: Gluconate 5-dehydrogenase	29.3558375293
+UniRef50_P50199: Gluconate 5-dehydrogenase|g__Escherichia.s__Escherichia_coli	29.3558375293
+UniRef50_Q2G506: ATM1-type heavy metal exporter	29.3544610661
+UniRef50_Q2G506: ATM1-type heavy metal exporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.3544610661
+UniRef50_W0PEX2: Dihydrodipicolinate synthase	29.3538084763
+UniRef50_W0PEX2: Dihydrodipicolinate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.3538084763
+UniRef50_Q47702	29.3522887619
+UniRef50_Q47702|g__Escherichia.s__Escherichia_coli	29.3522887619
+UniRef50_A5UP17: O-linked GlcNAc transferase	29.3501041306
+UniRef50_A5UP17: O-linked GlcNAc transferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.3501041306
+UniRef50_O27859: Ribonuclease Z	29.3408395952
+UniRef50_O27859: Ribonuclease Z|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.3408395952
+UniRef50_A5UNW6: Putative collagen-like protein B	29.3350978369
+UniRef50_A5UNW6: Putative collagen-like protein B|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.3350978369
+UniRef50_M1P548: Dipeptide-binding ABC transporter, periplasmic substrate-binding component	29.3244433356
+UniRef50_M1P548: Dipeptide-binding ABC transporter, periplasmic substrate-binding component|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.3244433356
+UniRef50_P33014: UPF0033 protein YeeD	29.3201091365
+UniRef50_P33014: UPF0033 protein YeeD|g__Staphylococcus.s__Staphylococcus_epidermidis	29.3201091365
+UniRef50_Q87NA5: Probable intracellular septation protein A	29.3139272086
+UniRef50_Q87NA5: Probable intracellular septation protein A|g__Escherichia.s__Escherichia_coli	29.3139272086
+UniRef50_P18392: Sensor protein RstB	29.3120813332
+UniRef50_P18392: Sensor protein RstB|g__Escherichia.s__Escherichia_coli	29.3120813332
+UniRef50_A6UXM9	29.3024758152
+UniRef50_A6UXM9|g__Pseudomonas.s__Pseudomonas_aeruginosa	29.3024758152
+UniRef50_E9WHJ2: NrdB protein	29.2889495076
+UniRef50_E9WHJ2: NrdB protein|unclassified	29.2889495076
+UniRef50_Q3IXH2: Fumarase alpha subunit	29.2871606566
+UniRef50_Q3IXH2: Fumarase alpha subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.2871606566
+UniRef50_V1QTW1	29.2850494237
+UniRef50_V1QTW1|g__Escherichia.s__Escherichia_coli	29.2850494237
+UniRef50_B7L8J6: 2-(5''-triphosphoribosyl)-3'-dephosphocoenzyme-A synthase	29.2818844418
+UniRef50_B7L8J6: 2-(5''-triphosphoribosyl)-3'-dephosphocoenzyme-A synthase|g__Escherichia.s__Escherichia_coli	29.2818844418
+UniRef50_P64431	29.2814437715
+UniRef50_P64431|g__Escherichia.s__Escherichia_coli	29.2814437715
+UniRef50_M9RK06: Putative amino-acid ABC-transporter permease/peptidyl-dipeptidase-fusion protein	29.2796096516
+UniRef50_M9RK06: Putative amino-acid ABC-transporter permease/peptidyl-dipeptidase-fusion protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.2796096516
+UniRef50_Q652A8: UDP-glucose 4-epimerase 3	29.2709631712
+UniRef50_Q652A8: UDP-glucose 4-epimerase 3|g__Escherichia.s__Escherichia_coli	27.6098336031
+UniRef50_Q652A8: UDP-glucose 4-epimerase 3|g__Neisseria.s__Neisseria_meningitidis	1.6611295681
+UniRef50_C5BQ62: 50S ribosomal protein L4	29.2697047557
+UniRef50_C5BQ62: 50S ribosomal protein L4|g__Escherichia.s__Escherichia_coli	15.5142646075
+UniRef50_C5BQ62: 50S ribosomal protein L4|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.7554401482
+UniRef50_A3PGH2	29.2696354779
+UniRef50_A3PGH2|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.0882319194
+UniRef50_A3PGH2|unclassified	0.1814035586
+UniRef50_Y9QME3	29.2663183247
+UniRef50_Y9QME3|g__Staphylococcus.s__Staphylococcus_aureus	26.0580352839
+UniRef50_Y9QME3|unclassified	3.2082830408
+UniRef50_P16685: Alpha-D-ribose 1-methylphosphonate 5-triphosphate synthase subunit PhnG	29.2582406084
+UniRef50_P16685: Alpha-D-ribose 1-methylphosphonate 5-triphosphate synthase subunit PhnG|g__Escherichia.s__Escherichia_coli	29.2582406084
+UniRef50_P76938: Elongation factor P hydroxylase	29.2456203464
+UniRef50_P76938: Elongation factor P hydroxylase|g__Escherichia.s__Escherichia_coli	29.2456203464
+UniRef50_A5UJJ3: Predicted helicase	29.2420170449
+UniRef50_A5UJJ3: Predicted helicase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.2420170449
+UniRef50_D0K5T3	29.2317321013
+UniRef50_D0K5T3|g__Staphylococcus.s__Staphylococcus_aureus	29.2317321013
+UniRef50_A0A017HAI8	29.2291264625
+UniRef50_A0A017HAI8|unclassified	29.2291264625
+UniRef50_B7MGN9: Cyclic pyranopterin monophosphate synthase	29.2273789667
+UniRef50_B7MGN9: Cyclic pyranopterin monophosphate synthase|g__Escherichia.s__Escherichia_coli	28.9848546574
+UniRef50_B7MGN9: Cyclic pyranopterin monophosphate synthase|unclassified	0.2425243093
+UniRef50_Q9A5A9: D-alanine--D-alanine ligase	29.2257547437
+UniRef50_Q9A5A9: D-alanine--D-alanine ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.2257547437
+UniRef50_P77416: Hydrogenase-4 component D	29.2255567072
+UniRef50_P77416: Hydrogenase-4 component D|g__Escherichia.s__Escherichia_coli	29.2255567072
+UniRef50_A8I2E1: Ribonuclease R	29.2182883554
+UniRef50_A8I2E1: Ribonuclease R|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.2182883554
+UniRef50_Q57083: HTH-type transcriptional regulator PerR	29.2177783441
+UniRef50_Q57083: HTH-type transcriptional regulator PerR|g__Escherichia.s__Escherichia_coli	29.2177783441
+UniRef50_P0A9X5: Rod shape-determining protein MreB	29.2151960606
+UniRef50_P0A9X5: Rod shape-determining protein MreB|g__Escherichia.s__Escherichia_coli	29.2151960606
+UniRef50_C5N2H0	29.2052718523
+UniRef50_C5N2H0|g__Staphylococcus.s__Staphylococcus_aureus	29.2052718523
+UniRef50_P75892: Putative pyrimidine permease RutG	29.2048018640
+UniRef50_P75892: Putative pyrimidine permease RutG|g__Escherichia.s__Escherichia_coli	29.2048018640
+UniRef50_Q8XAS8: Ferrous iron permease EfeU	29.2011761280
+UniRef50_Q8XAS8: Ferrous iron permease EfeU|g__Escherichia.s__Escherichia_coli	29.2011761280
+UniRef50_A4WDR5: Anaerobic nitric oxide reductase transcription regulator NorR	29.1827645943
+UniRef50_A4WDR5: Anaerobic nitric oxide reductase transcription regulator NorR|g__Escherichia.s__Escherichia_coli	29.0771156548
+UniRef50_A4WDR5: Anaerobic nitric oxide reductase transcription regulator NorR|unclassified	0.1056489395
+UniRef50_B5YDT2: D-tyrosyl-tRNA(Tyr) deacylase	29.1801288143
+UniRef50_B5YDT2: D-tyrosyl-tRNA(Tyr) deacylase|g__Streptococcus.s__Streptococcus_mutans	29.1801288143
+UniRef50_D2NAU9	29.1721596863
+UniRef50_D2NAU9|unclassified	29.1721596863
+UniRef50_C5N3X1	29.1644522318
+UniRef50_C5N3X1|g__Staphylococcus.s__Staphylococcus_aureus	29.1644522318
+UniRef50_P08997: Malate synthase A	29.1633633513
+UniRef50_P08997: Malate synthase A|g__Escherichia.s__Escherichia_coli	28.3503079959
+UniRef50_P08997: Malate synthase A|unclassified	0.8130553554
+UniRef50_Q12F86: Peptide chain release factor 1	29.1543980065
+UniRef50_Q12F86: Peptide chain release factor 1|g__Escherichia.s__Escherichia_coli	29.1543980065
+UniRef50_R7PXT2	29.1475748983
+UniRef50_R7PXT2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.1475748983
+UniRef50_O07020: Lactate utilization protein A	29.1473389287
+UniRef50_O07020: Lactate utilization protein A|g__Escherichia.s__Escherichia_coli	29.1473389287
+UniRef50_Q2NEW4: Alanine--tRNA ligase	29.1435636294
+UniRef50_Q2NEW4: Alanine--tRNA ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.1435636294
+UniRef50_P60543: Phosphoribosyl-AMP cyclohydrolase	29.1421714934
+UniRef50_P60543: Phosphoribosyl-AMP cyclohydrolase|g__Streptococcus.s__Streptococcus_mutans	29.1421714934
+UniRef50_Q8XAR3: Poly-beta-1,6-N-acetyl-D-glucosamine N-deacetylase	29.1413620436
+UniRef50_Q8XAR3: Poly-beta-1,6-N-acetyl-D-glucosamine N-deacetylase|g__Escherichia.s__Escherichia_coli	29.1413620436
+UniRef50_I1ZLL6: Glutamine amidotransferase	29.1394611552
+UniRef50_I1ZLL6: Glutamine amidotransferase|g__Streptococcus.s__Streptococcus_mutans	29.1394611552
+UniRef50_D4LGK2: Phosphate starvation-inducible protein PhoH, predicted ATPase	29.1384975989
+UniRef50_D4LGK2: Phosphate starvation-inducible protein PhoH, predicted ATPase|g__Streptococcus.s__Streptococcus_mutans	29.1384975989
+UniRef50_O31611: GTP pyrophosphokinase YjbM	29.1304178075
+UniRef50_O31611: GTP pyrophosphokinase YjbM|g__Streptococcus.s__Streptococcus_mutans	29.1304178075
+UniRef50_C6DHE2: UDP-N-acetyl-D-mannosaminuronic acid transferase	29.1273668539
+UniRef50_C6DHE2: UDP-N-acetyl-D-mannosaminuronic acid transferase|g__Escherichia.s__Escherichia_coli	28.9432987776
+UniRef50_C6DHE2: UDP-N-acetyl-D-mannosaminuronic acid transferase|unclassified	0.1840680763
+UniRef50_A5UN83	29.1211630745
+UniRef50_A5UN83|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.4387538102
+UniRef50_A5UN83|unclassified	0.6824092643
+UniRef50_D2GME6: Uro-adherence factor A	29.1197940503
+UniRef50_D2GME6: Uro-adherence factor A|g__Staphylococcus.s__Staphylococcus_aureus	29.1197940503
+UniRef50_Q58690: Putative fumarate hydratase subunit alpha	29.1171866318
+UniRef50_Q58690: Putative fumarate hydratase subunit alpha|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.0061316862
+UniRef50_Q58690: Putative fumarate hydratase subunit alpha|unclassified	2.1110549456
+UniRef50_P0AEW8: Inosine-guanosine kinase	29.1154700452
+UniRef50_P0AEW8: Inosine-guanosine kinase|g__Escherichia.s__Escherichia_coli	29.1154700452
+UniRef50_P0ADK7: Protein YibA	29.1129372095
+UniRef50_P0ADK7: Protein YibA|g__Escherichia.s__Escherichia_coli	29.1129372095
+UniRef50_Q5LPC1: Adenosine deaminase	29.1098437711
+UniRef50_Q5LPC1: Adenosine deaminase|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.1098437711
+UniRef50_D5SSZ9: ATP dependent DNA ligase	29.1075619854
+UniRef50_D5SSZ9: ATP dependent DNA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.1075619854
+UniRef50_Q8DSE0	29.1041217865
+UniRef50_Q8DSE0|g__Streptococcus.s__Streptococcus_mutans	27.9452265410
+UniRef50_Q8DSE0|unclassified	1.1588952455
+UniRef50_F3YPM3: Prephenate dehydratase	29.0984980467
+UniRef50_F3YPM3: Prephenate dehydratase|g__Streptococcus.s__Streptococcus_mutans	29.0984980467
+UniRef50_O27679: Protein pelota homolog	29.0982406596
+UniRef50_O27679: Protein pelota homolog|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.0982406596
+UniRef50_A5UNM1: Glycosyltransferase/CDP-glycerol:poly(Glycerophosphate) glycerophosphotransferase, GT2 family	29.0969851582
+UniRef50_A5UNM1: Glycosyltransferase/CDP-glycerol:poly(Glycerophosphate) glycerophosphotransferase, GT2 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.0969851582
+UniRef50_U3SU32	29.0883747216
+UniRef50_U3SU32|g__Streptococcus.s__Streptococcus_mutans	29.0883747216
+UniRef50_P73426: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase	29.0715372907
+UniRef50_P73426: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	29.0715372907
+UniRef50_P24211: Putative protein RhsE	29.0640718578
+UniRef50_P24211: Putative protein RhsE|g__Escherichia.s__Escherichia_coli	29.0640718578
+UniRef50_P39270: Inner membrane protein YjdF	29.0576559793
+UniRef50_P39270: Inner membrane protein YjdF|g__Escherichia.s__Escherichia_coli	29.0576559793
+UniRef50_D3E4P0: Valine--tRNA ligase	29.0566707652
+UniRef50_D3E4P0: Valine--tRNA ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.0566707652
+UniRef50_A5UP87: N-acetyltransferase, GNAT family	29.0513922947
+UniRef50_A5UP87: N-acetyltransferase, GNAT family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.0513922947
+UniRef50_P27294: Protein InaA	29.0509940135
+UniRef50_P27294: Protein InaA|g__Escherichia.s__Escherichia_coli	29.0509940135
+UniRef50_W1EDI8: Error-prone, lesion bypass DNA polymerase V (UmuC)	29.0391809291
+UniRef50_W1EDI8: Error-prone, lesion bypass DNA polymerase V (UmuC)|g__Escherichia.s__Escherichia_coli	29.0391809291
+UniRef50_P0AEU2: Histidine-binding periplasmic protein	29.0354929319
+UniRef50_P0AEU2: Histidine-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	29.0354929319
+UniRef50_P69743: Hydrogenase-2 small chain	29.0350504618
+UniRef50_P69743: Hydrogenase-2 small chain|g__Escherichia.s__Escherichia_coli	29.0350504618
+UniRef50_D3HD08	29.0272981333
+UniRef50_D3HD08|g__Streptococcus.s__Streptococcus_mutans	29.0272981333
+UniRef50_R6EWI0: TIGR00730 family protein	29.0239548355
+UniRef50_R6EWI0: TIGR00730 family protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.0239548355
+UniRef50_M4XH87	29.0230350111
+UniRef50_M4XH87|g__Pseudomonas.s__Pseudomonas_aeruginosa	29.0230350111
+UniRef50_A0A020WTM6: 6-phospho-beta-galactosidase	29.0213464411
+UniRef50_A0A020WTM6: 6-phospho-beta-galactosidase|g__Staphylococcus.s__Staphylococcus_aureus	29.0213464411
+UniRef50_P17411: 6-phospho-beta-glucosidase	29.0128058176
+UniRef50_P17411: 6-phospho-beta-glucosidase|g__Escherichia.s__Escherichia_coli	29.0128058176
+UniRef50_P0AAF0: Probable cadaverine/lysine antiporter	29.0120382545
+UniRef50_P0AAF0: Probable cadaverine/lysine antiporter|g__Escherichia.s__Escherichia_coli	29.0120382545
+UniRef50_Q8CU26	29.0106585583
+UniRef50_Q8CU26|g__Staphylococcus.s__Staphylococcus_aureus	29.0106585583
+UniRef50_F7ZB43	29.0039615167
+UniRef50_F7ZB43|g__Rhodobacter.s__Rhodobacter_sphaeroides	29.0039615167
+UniRef50_A5UP30	29.0031000305
+UniRef50_A5UP30|g__Methanobrevibacter.s__Methanobrevibacter_smithii	29.0031000305
+UniRef50_Q5HQU3	28.9973453135
+UniRef50_Q5HQU3|g__Staphylococcus.s__Staphylococcus_epidermidis	28.9973453135
+UniRef50_Q6Q6S9: Transposase	28.9959134571
+UniRef50_Q6Q6S9: Transposase|g__Escherichia.s__Escherichia_coli	28.9959134571
+UniRef50_C4ZZR6: Phosphoadenosine phosphosulfate reductase	28.9881947375
+UniRef50_C4ZZR6: Phosphoadenosine phosphosulfate reductase|g__Escherichia.s__Escherichia_coli	28.9881947375
+UniRef50_A4WV17	28.9870600188
+UniRef50_A4WV17|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.5782994409
+UniRef50_A4WV17|unclassified	0.4087605779
+UniRef50_Q28TK3: Hydroxyacylglutathione hydrolase	28.9869171103
+UniRef50_Q28TK3: Hydroxyacylglutathione hydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.9869171103
+UniRef50_P15006: Protein McrC	28.9770036654
+UniRef50_P15006: Protein McrC|g__Escherichia.s__Escherichia_coli	28.9770036654
+UniRef50_P32670: Multiphosphoryl transfer protein 2	28.9767281326
+UniRef50_P32670: Multiphosphoryl transfer protein 2|g__Escherichia.s__Escherichia_coli	28.9767281326
+UniRef50_E1WIS2: Intracellular growth attenuator protein igaA	28.9766623257
+UniRef50_E1WIS2: Intracellular growth attenuator protein igaA|g__Escherichia.s__Escherichia_coli	28.9766623257
+UniRef50_O58855: Orotate phosphoribosyltransferase	28.9734193574
+UniRef50_O58855: Orotate phosphoribosyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.9734193574
+UniRef50_H3YFK0	28.9700188701
+UniRef50_H3YFK0|g__Staphylococcus.s__Staphylococcus_aureus	28.9700188701
+UniRef50_P77694: Fimbria adhesin EcpD	28.9645977555
+UniRef50_P77694: Fimbria adhesin EcpD|g__Escherichia.s__Escherichia_coli	28.9645977555
+UniRef50_D4GIS8: RbsC	28.9544771291
+UniRef50_D4GIS8: RbsC|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.9544771291
+UniRef50_P75957: Lipoprotein-releasing system ATP-binding protein LolD	28.9502739359
+UniRef50_P75957: Lipoprotein-releasing system ATP-binding protein LolD|g__Escherichia.s__Escherichia_coli	24.8687394076
+UniRef50_P75957: Lipoprotein-releasing system ATP-binding protein LolD|g__Acinetobacter.s__Acinetobacter_baumannii	4.0011464171
+UniRef50_P75957: Lipoprotein-releasing system ATP-binding protein LolD|unclassified	0.0803881112
+UniRef50_Q5HJ26: Single-stranded DNA-binding protein 2	28.9480967855
+UniRef50_Q5HJ26: Single-stranded DNA-binding protein 2|g__Staphylococcus.s__Staphylococcus_aureus	28.9480967855
+UniRef50_A6TG48: Aspartate--ammonia ligase	28.9387712554
+UniRef50_A6TG48: Aspartate--ammonia ligase|g__Escherichia.s__Escherichia_coli	27.8927461508
+UniRef50_A6TG48: Aspartate--ammonia ligase|g__Streptococcus.s__Streptococcus_agalactiae	1.0460251046
+UniRef50_P75811: HTH-type transcriptional regulator RcdA	28.9387651283
+UniRef50_P75811: HTH-type transcriptional regulator RcdA|g__Escherichia.s__Escherichia_coli	28.9387651283
+UniRef50_P0AA55: Protein QmcA	28.9363136171
+UniRef50_P0AA55: Protein QmcA|g__Escherichia.s__Escherichia_coli	28.9363136171
+UniRef50_B3GYL9: Ribosomal protein L11 methyltransferase	28.9342047301
+UniRef50_B3GYL9: Ribosomal protein L11 methyltransferase|g__Escherichia.s__Escherichia_coli	28.7035755114
+UniRef50_B3GYL9: Ribosomal protein L11 methyltransferase|unclassified	0.2306292187
+UniRef50_R5K4V5: Indole-3-glycerol phosphate synthase	28.9331004896
+UniRef50_R5K4V5: Indole-3-glycerol phosphate synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.9331004896
+UniRef50_O27280: Probable dihydroorotate dehydrogenase B (NAD(+)), electron transfer subunit	28.9323353849
+UniRef50_O27280: Probable dihydroorotate dehydrogenase B (NAD(+)), electron transfer subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.9323353849
+UniRef50_H3UJR5	28.9281185869
+UniRef50_H3UJR5|g__Staphylococcus.s__Staphylococcus_epidermidis	28.9281185869
+UniRef50_A0A012V5I1	28.9090476079
+UniRef50_A0A012V5I1|g__Staphylococcus.s__Staphylococcus_aureus	18.4429712732
+UniRef50_A0A012V5I1|unclassified	10.4660763348
+UniRef50_P64610	28.9088737195
+UniRef50_P64610|g__Escherichia.s__Escherichia_coli	28.9088737195
+UniRef50_Q8GPJ0: MobB-like protein	28.9055176222
+UniRef50_Q8GPJ0: MobB-like protein|unclassified	28.9055176222
+UniRef50_A7FNV8: Pimeloyl-[acyl-carrier protein] methyl ester esterase	28.8976760201
+UniRef50_A7FNV8: Pimeloyl-[acyl-carrier protein] methyl ester esterase|g__Escherichia.s__Escherichia_coli	28.8976760201
+UniRef50_H0C6K1	28.8915426080
+UniRef50_H0C6K1|unclassified	28.8915426080
+UniRef50_B2TX82	28.8888445540
+UniRef50_B2TX82|g__Escherichia.s__Escherichia_coli	28.8888445540
+UniRef50_O27389: Diaminopimelate epimerase	28.8865567081
+UniRef50_O27389: Diaminopimelate epimerase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.8416595560
+UniRef50_O27389: Diaminopimelate epimerase|unclassified	0.0448971522
+UniRef50_A1WKV0: Succinate dehydrogenase	28.8789172221
+UniRef50_A1WKV0: Succinate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.8789172221
+UniRef50_R5Z994: BioY family protein	28.8754558625
+UniRef50_R5Z994: BioY family protein|g__Clostridium.s__Clostridium_beijerinckii	28.8754558625
+UniRef50_P46142	28.8599972073
+UniRef50_P46142|g__Escherichia.s__Escherichia_coli	28.8599972073
+UniRef50_D5BUA3: ABC transporter related protein	28.8564414863
+UniRef50_D5BUA3: ABC transporter related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.8564414863
+UniRef50_Q9L646: Anaerobic ribonucleoside-triphosphate reductase	28.8505533362
+UniRef50_Q9L646: Anaerobic ribonucleoside-triphosphate reductase|g__Escherichia.s__Escherichia_coli	28.7819517082
+UniRef50_Q9L646: Anaerobic ribonucleoside-triphosphate reductase|unclassified	0.0686016280
+UniRef50_C6SRZ0	28.8473932423
+UniRef50_C6SRZ0|g__Streptococcus.s__Streptococcus_mutans	28.8473932423
+UniRef50_Q7CQE0: tRNA threonylcarbamoyladenosine biosynthesis protein TsaB	28.8418990071
+UniRef50_Q7CQE0: tRNA threonylcarbamoyladenosine biosynthesis protein TsaB|g__Escherichia.s__Escherichia_coli	28.8418990071
+UniRef50_P0AEZ1: 5,10-methylenetetrahydrofolate reductase	28.8374067775
+UniRef50_P0AEZ1: 5,10-methylenetetrahydrofolate reductase|g__Escherichia.s__Escherichia_coli	28.3039922858
+UniRef50_P0AEZ1: 5,10-methylenetetrahydrofolate reductase|unclassified	0.5334144917
+UniRef50_B4EW02: Exoribonuclease 2	28.8359845992
+UniRef50_B4EW02: Exoribonuclease 2|g__Escherichia.s__Escherichia_coli	28.8359845992
+UniRef50_D4FIU1	28.8342582297
+UniRef50_D4FIU1|g__Staphylococcus.s__Staphylococcus_epidermidis	28.8342582297
+UniRef50_C6SSY8	28.8285936277
+UniRef50_C6SSY8|g__Streptococcus.s__Streptococcus_mutans	28.8285936277
+UniRef50_G4RBE3: Mannonate dehydratase	28.8199694402
+UniRef50_G4RBE3: Mannonate dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.8199694402
+UniRef50_Q3J3Q2	28.8150755064
+UniRef50_Q3J3Q2|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.9318363350
+UniRef50_Q3J3Q2|unclassified	1.8832391714
+UniRef50_P39362: Protein SgcE	28.8127787826
+UniRef50_P39362: Protein SgcE|g__Escherichia.s__Escherichia_coli	28.8127787826
+UniRef50_A5UL20: ATPase involved in DNA repair, SbcC	28.8061399153
+UniRef50_A5UL20: ATPase involved in DNA repair, SbcC|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.8061399153
+UniRef50_P39384	28.8060089088
+UniRef50_P39384|g__Escherichia.s__Escherichia_coli	28.8060089088
+UniRef50_A5UKC6: 2-methylcitrate dehydratase, MmgE/PrpD family	28.8058427562
+UniRef50_A5UKC6: 2-methylcitrate dehydratase, MmgE/PrpD family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.8058427562
+UniRef50_P60070: Anti-sigma-B factor antagonist	28.8023570058
+UniRef50_P60070: Anti-sigma-B factor antagonist|g__Staphylococcus.s__Staphylococcus_aureus	19.9228561354
+UniRef50_P60070: Anti-sigma-B factor antagonist|g__Staphylococcus.s__Staphylococcus_epidermidis	8.8795008703
+UniRef50_E3F0C5	28.7979199531
+UniRef50_E3F0C5|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.1821658898
+UniRef50_E3F0C5|unclassified	0.6157540633
+UniRef50_Y6XNC4	28.7901268928
+UniRef50_Y6XNC4|g__Staphylococcus.s__Staphylococcus_aureus	28.7901268928
+UniRef50_P76044	28.7870744675
+UniRef50_P76044|g__Escherichia.s__Escherichia_coli	28.0434971743
+UniRef50_P76044|unclassified	0.7435772931
+UniRef50_U3QV92: N-acetyl-anhydromuranmyl-L-alanine amidase	28.7799608628
+UniRef50_U3QV92: N-acetyl-anhydromuranmyl-L-alanine amidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	28.7799608628
+UniRef50_P17994	28.7789095148
+UniRef50_P17994|g__Escherichia.s__Escherichia_coli	28.7789095148
+UniRef50_A5ULS0	28.7788395452
+UniRef50_A5ULS0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.7788395452
+UniRef50_E6K0A1: GroES-like protein	28.7723181839
+UniRef50_E6K0A1: GroES-like protein|g__Streptococcus.s__Streptococcus_mutans	28.7723181839
+UniRef50_P75938: Flagellar basal-body rod protein FlgF	28.7708013785
+UniRef50_P75938: Flagellar basal-body rod protein FlgF|g__Escherichia.s__Escherichia_coli	28.7708013785
+UniRef50_O26272: Phosphoribosylaminoimidazole-succinocarboxamide synthase	28.7691538778
+UniRef50_O26272: Phosphoribosylaminoimidazole-succinocarboxamide synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.7691538778
+UniRef50_A1B4V0	28.7573553695
+UniRef50_A1B4V0|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.7573553695
+UniRef50_P08369: Inner membrane protein CreD	28.7270360698
+UniRef50_P08369: Inner membrane protein CreD|g__Escherichia.s__Escherichia_coli	28.7270360698
+UniRef50_A5UP39	28.7234225857
+UniRef50_A5UP39|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.7234225857
+UniRef50_C3T922: Membrane-associated protein	28.7156366807
+UniRef50_C3T922: Membrane-associated protein|g__Escherichia.s__Escherichia_coli	28.7156366807
+UniRef50_B4U3E4: Histidine protein kinase	28.7127978729
+UniRef50_B4U3E4: Histidine protein kinase|g__Streptococcus.s__Streptococcus_mutans	28.7127978729
+UniRef50_M9RQH1: GTPase HflX	28.7075199696
+UniRef50_M9RQH1: GTPase HflX|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.7075199696
+UniRef50_S5YEK4: Transcriptional regulator, GntR family	28.7062942183
+UniRef50_S5YEK4: Transcriptional regulator, GntR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.7062942183
+UniRef50_A6W2Y7: Monosaccharide-transporting ATPase	28.6959872335
+UniRef50_A6W2Y7: Monosaccharide-transporting ATPase|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.6959872335
+UniRef50_D3DYR0: Molybdopterin biosynthesis protein MoeA1	28.6937221945
+UniRef50_D3DYR0: Molybdopterin biosynthesis protein MoeA1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.6937221945
+UniRef50_P0AAN2: Hydrogenase-2 operon protein HybE	28.6834543332
+UniRef50_P0AAN2: Hydrogenase-2 operon protein HybE|g__Escherichia.s__Escherichia_coli	28.6834543332
+UniRef50_H3VYK3: Nuclear export factor GLE1 domain protein	28.6803157461
+UniRef50_H3VYK3: Nuclear export factor GLE1 domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	27.7777777778
+UniRef50_H3VYK3: Nuclear export factor GLE1 domain protein|unclassified	0.9025379683
+UniRef50_D3E4S6: Methionine synthase MetE	28.6779983326
+UniRef50_D3E4S6: Methionine synthase MetE|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.6779983326
+UniRef50_P57871: Sugar fermentation stimulation protein homolog	28.6742169268
+UniRef50_P57871: Sugar fermentation stimulation protein homolog|g__Escherichia.s__Escherichia_coli	28.6742169268
+UniRef50_P32719: D-allulose-6-phosphate 3-epimerase	28.6643233838
+UniRef50_P32719: D-allulose-6-phosphate 3-epimerase|g__Escherichia.s__Escherichia_coli	27.8498306447
+UniRef50_P32719: D-allulose-6-phosphate 3-epimerase|unclassified	0.8144927391
+UniRef50_Q9KPW2: UDP-3-O-acylglucosamine N-acyltransferase	28.6613402925
+UniRef50_Q9KPW2: UDP-3-O-acylglucosamine N-acyltransferase|g__Escherichia.s__Escherichia_coli	28.6613402925
+UniRef50_A3PRG7: Extradiol ring-cleavage dioxygenase, class III enzyme, subunit B	28.6597537391
+UniRef50_A3PRG7: Extradiol ring-cleavage dioxygenase, class III enzyme, subunit B|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.6597537391
+UniRef50_A5UKD0: Putative HTH-type transcriptional regulatory protein Msm_0453	28.6566300166
+UniRef50_A5UKD0: Putative HTH-type transcriptional regulatory protein Msm_0453|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.6566300166
+UniRef50_P44518: Signal recognition particle protein	28.6562055836
+UniRef50_P44518: Signal recognition particle protein|g__Escherichia.s__Escherichia_coli	28.6562055836
+UniRef50_J7QZC7: Citrate-dependent iron transport, membrane-bound protein	28.6459806714
+UniRef50_J7QZC7: Citrate-dependent iron transport, membrane-bound protein|g__Escherichia.s__Escherichia_coli	28.6459806714
+UniRef50_S5XV86: Membrane protein	28.6435602952
+UniRef50_S5XV86: Membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.6435602952
+UniRef50_A5UJ82: 3-dehydroquinate synthase	28.6421609658
+UniRef50_A5UJ82: 3-dehydroquinate synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.6421609658
+UniRef50_P77216	28.6420918044
+UniRef50_P77216|g__Escherichia.s__Escherichia_coli	28.6420918044
+UniRef50_P76458: Acetate CoA-transferase subunit alpha	28.6420687061
+UniRef50_P76458: Acetate CoA-transferase subunit alpha|g__Escherichia.s__Escherichia_coli	27.8809544726
+UniRef50_P76458: Acetate CoA-transferase subunit alpha|unclassified	0.7611142335
+UniRef50_U5NMV6	28.6354525745
+UniRef50_U5NMV6|unclassified	15.9230022640
+UniRef50_U5NMV6|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.7124503105
+UniRef50_A5UN23: Tungsten formylmethanofuran dehydrogenase, subunit E, FwdE	28.6352393655
+UniRef50_A5UN23: Tungsten formylmethanofuran dehydrogenase, subunit E, FwdE|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.6352393655
+UniRef50_P05050: Alpha-ketoglutarate-dependent dioxygenase AlkB	28.6344729640
+UniRef50_P05050: Alpha-ketoglutarate-dependent dioxygenase AlkB|g__Escherichia.s__Escherichia_coli	26.8423634139
+UniRef50_P05050: Alpha-ketoglutarate-dependent dioxygenase AlkB|unclassified	1.7921095501
+UniRef50_P29131: Cell division protein FtsN	28.6298431080
+UniRef50_P29131: Cell division protein FtsN|g__Escherichia.s__Escherichia_coli	28.6298431080
+UniRef50_C5VY51: AzlC family protein	28.6294963469
+UniRef50_C5VY51: AzlC family protein|g__Streptococcus.s__Streptococcus_mutans	28.6294963469
+UniRef50_Q8CRZ6	28.6259334264
+UniRef50_Q8CRZ6|g__Staphylococcus.s__Staphylococcus_epidermidis	21.0663398192
+UniRef50_Q8CRZ6|unclassified	7.5595936072
+UniRef50_S1IPQ9	28.6252367508
+UniRef50_S1IPQ9|g__Escherichia.s__Escherichia_coli	28.6252367508
+UniRef50_P77129	28.6236697995
+UniRef50_P77129|g__Escherichia.s__Escherichia_coli	28.5399109380
+UniRef50_P77129|unclassified	0.0837588615
+UniRef50_Q3JNN5: Gamma-glutamyl phosphate reductase	28.6189007481
+UniRef50_Q3JNN5: Gamma-glutamyl phosphate reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.6189007481
+UniRef50_P44591: Protein translocase subunit SecD	28.6127892551
+UniRef50_P44591: Protein translocase subunit SecD|g__Escherichia.s__Escherichia_coli	28.6127892551
+UniRef50_C7MNW3: Acyl-CoA synthetase (AMP-forming)/AMP-acid ligase II	28.6083657503
+UniRef50_C7MNW3: Acyl-CoA synthetase (AMP-forming)/AMP-acid ligase II|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.6083657503
+UniRef50_Q3IXI2	28.6039221871
+UniRef50_Q3IXI2|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.5861913951
+UniRef50_Q3IXI2|unclassified	1.0177307920
+UniRef50_A0A017IYW6: Oxygen-insensitive NADPH nitroreductase domain protein	28.6031522997
+UniRef50_A0A017IYW6: Oxygen-insensitive NADPH nitroreductase domain protein|g__Escherichia.s__Escherichia_coli	28.6031522997
+UniRef50_P77156: Inner membrane ABC transporter permease protein YdcU	28.5946894412
+UniRef50_P77156: Inner membrane ABC transporter permease protein YdcU|g__Escherichia.s__Escherichia_coli	28.5946894412
+UniRef50_L8M031: NAD dependent epimerase/dehydratase family protein (Fragment)	28.5823437892
+UniRef50_L8M031: NAD dependent epimerase/dehydratase family protein (Fragment)|unclassified	28.5823437892
+UniRef50_O26778: Exosome complex component Rrp42	28.5771437703
+UniRef50_O26778: Exosome complex component Rrp42|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.5771437703
+UniRef50_P0AC29	28.5759028709
+UniRef50_P0AC29|g__Escherichia.s__Escherichia_coli	28.0821874257
+UniRef50_P0AC29|unclassified	0.4937154452
+UniRef50_B9ADN8	28.5714285714
+UniRef50_B9ADN8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.5714285714
+UniRef50_D8HCR5	28.5714285714
+UniRef50_D8HCR5|g__Staphylococcus.s__Staphylococcus_aureus	28.5714285714
+UniRef50_F0KGW3	28.5714285714
+UniRef50_F0KGW3|g__Acinetobacter.s__Acinetobacter_baumannii	28.5714285714
+UniRef50_M8DGK3	28.5714285714
+UniRef50_M8DGK3|g__Acinetobacter.s__Acinetobacter_baumannii	28.5714285714
+UniRef50_R5GSP5	28.5714285714
+UniRef50_R5GSP5|unclassified	28.5714285714
+UniRef50_R7PXM1	28.5695102100
+UniRef50_R7PXM1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.5695102100
+UniRef50_F0KI44: Aldehyde reductase	28.5683514714
+UniRef50_F0KI44: Aldehyde reductase|g__Escherichia.s__Escherichia_coli	28.5683514714
+UniRef50_Q9R9D5: Lipopolysaccharide core heptosyltransferase RfaQ	28.5683410141
+UniRef50_Q9R9D5: Lipopolysaccharide core heptosyltransferase RfaQ|g__Escherichia.s__Escherichia_coli	28.5683410141
+UniRef50_P42910: N-acetylgalactosamine permease IIC component 1	28.5681217883
+UniRef50_P42910: N-acetylgalactosamine permease IIC component 1|g__Escherichia.s__Escherichia_coli	28.5681217883
+UniRef50_F0TCP3	28.5646969574
+UniRef50_F0TCP3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.5646969574
+UniRef50_P64636: GMP/IMP nucleotidase YrfG	28.5545531250
+UniRef50_P64636: GMP/IMP nucleotidase YrfG|g__Escherichia.s__Escherichia_coli	28.5545531250
+UniRef50_Q9V076: Ribonuclease J	28.5423805519
+UniRef50_Q9V076: Ribonuclease J|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.5423805519
+UniRef50_P32696: Phage shock protein G	28.5380116959
+UniRef50_P32696: Phage shock protein G|g__Escherichia.s__Escherichia_coli	28.5380116959
+UniRef50_R4VNY3: Membrane protein	28.5365869834
+UniRef50_R4VNY3: Membrane protein|g__Streptococcus.s__Streptococcus_mutans	27.2429259226
+UniRef50_R4VNY3: Membrane protein|g__Streptococcus.s__Streptococcus_agalactiae	1.2936610608
+UniRef50_P75713	28.5363478830
+UniRef50_P75713|g__Escherichia.s__Escherichia_coli	28.5363478830
+UniRef50_A8AGY5: Dihydrofolate reductase FolM	28.5303144869
+UniRef50_A8AGY5: Dihydrofolate reductase FolM|g__Escherichia.s__Escherichia_coli	28.5303144869
+UniRef50_Q1CBV8: Phosphoenolpyruvate carboxylase	28.5281894081
+UniRef50_Q1CBV8: Phosphoenolpyruvate carboxylase|g__Escherichia.s__Escherichia_coli	28.5281894081
+UniRef50_Q8FIB4	28.5173014478
+UniRef50_Q8FIB4|g__Escherichia.s__Escherichia_coli	28.5173014478
+UniRef50_A5UJH5: Predicted oxidoreductase, aldo/keto reductase family	28.5137021024
+UniRef50_A5UJH5: Predicted oxidoreductase, aldo/keto reductase family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.5137021024
+UniRef50_P45039: Protein CysZ homolog	28.5123683987
+UniRef50_P45039: Protein CysZ homolog|g__Escherichia.s__Escherichia_coli	28.5123683987
+UniRef50_A4WT79: Proton-translocating NADH-quinone oxidoreductase, chain M	28.5088259415
+UniRef50_A4WT79: Proton-translocating NADH-quinone oxidoreductase, chain M|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.5088259415
+UniRef50_Q9HCC0: Methylcrotonoyl-CoA carboxylase beta chain, mitochondrial	28.5018044210
+UniRef50_Q9HCC0: Methylcrotonoyl-CoA carboxylase beta chain, mitochondrial|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.5018044210
+UniRef50_P45762: Putative type II secretion system protein K	28.4931652908
+UniRef50_P45762: Putative type II secretion system protein K|g__Escherichia.s__Escherichia_coli	28.4931652908
+UniRef50_Q82SA8: Glucans biosynthesis glucosyltransferase H	28.4885519456
+UniRef50_Q82SA8: Glucans biosynthesis glucosyltransferase H|g__Escherichia.s__Escherichia_coli	21.4246173816
+UniRef50_Q82SA8: Glucans biosynthesis glucosyltransferase H|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0639345640
+UniRef50_P77536	28.4833073909
+UniRef50_P77536|g__Escherichia.s__Escherichia_coli	28.4833073909
+UniRef50_P41443: Putative type II secretion system protein H	28.4819937713
+UniRef50_P41443: Putative type II secretion system protein H|g__Escherichia.s__Escherichia_coli	28.4819937713
+UniRef50_P77258: N-ethylmaleimide reductase	28.4819035120
+UniRef50_P77258: N-ethylmaleimide reductase|g__Escherichia.s__Escherichia_coli	28.4819035120
+UniRef50_A3PS37: Sulfotransferase	28.4800179936
+UniRef50_A3PS37: Sulfotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.4800179936
+UniRef50_P77280	28.4769063484
+UniRef50_P77280|g__Escherichia.s__Escherichia_coli	28.4769063484
+UniRef50_E5ZSU8	28.4745762712
+UniRef50_E5ZSU8|g__Escherichia.s__Escherichia_coli	20.0000000000
+UniRef50_E5ZSU8|unclassified	8.4745762712
+UniRef50_U3SV04	28.4645742424
+UniRef50_U3SV04|g__Streptococcus.s__Streptococcus_mutans	28.4645742424
+UniRef50_A6USH1: UPF0285 protein Mevan_1551	28.4638540954
+UniRef50_A6USH1: UPF0285 protein Mevan_1551|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.4638540954
+UniRef50_C5WII8: Amino acid ABC transporter extracellular-binding protein	28.4604347171
+UniRef50_C5WII8: Amino acid ABC transporter extracellular-binding protein|g__Streptococcus.s__Streptococcus_mutans	27.2273890944
+UniRef50_C5WII8: Amino acid ABC transporter extracellular-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	1.2330456227
+UniRef50_A4EMI2	28.4580873096
+UniRef50_A4EMI2|unclassified	28.4580873096
+UniRef50_A5V6A9: 1-deoxy-D-xylulose-5-phosphate synthase	28.4570747177
+UniRef50_A5V6A9: 1-deoxy-D-xylulose-5-phosphate synthase|g__Escherichia.s__Escherichia_coli	28.2728292013
+UniRef50_A5V6A9: 1-deoxy-D-xylulose-5-phosphate synthase|unclassified	0.1842455164
+UniRef50_Q8X7X9: Probable ATP-dependent helicase DinG	28.4564892834
+UniRef50_Q8X7X9: Probable ATP-dependent helicase DinG|g__Escherichia.s__Escherichia_coli	28.4564892834
+UniRef50_P0A9T4: Protein tas	28.4461836286
+UniRef50_P0A9T4: Protein tas|g__Escherichia.s__Escherichia_coli	28.4461836286
+UniRef50_U6EDF1: Probable cyclic pyranopterin monophosphate synthase accessory protein	28.4393726130
+UniRef50_U6EDF1: Probable cyclic pyranopterin monophosphate synthase accessory protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.4393726130
+UniRef50_D0JN49: Phosphoribosylformylglycinamidine synthase	28.4349256898
+UniRef50_D0JN49: Phosphoribosylformylglycinamidine synthase|g__Escherichia.s__Escherichia_coli	28.4349256898
+UniRef50_W8TQE0: Pili assembly chaperone	28.4318688389
+UniRef50_W8TQE0: Pili assembly chaperone|g__Escherichia.s__Escherichia_coli	28.4318688389
+UniRef50_Q28KP2: N-acetylmuramic acid 6-phosphate etherase	28.4272871902
+UniRef50_Q28KP2: N-acetylmuramic acid 6-phosphate etherase|g__Escherichia.s__Escherichia_coli	24.7626626712
+UniRef50_Q28KP2: N-acetylmuramic acid 6-phosphate etherase|g__Clostridium.s__Clostridium_beijerinckii	3.6061945479
+UniRef50_Q28KP2: N-acetylmuramic acid 6-phosphate etherase|unclassified	0.0584299710
+UniRef50_P75712: Putative allantoin permease	28.4252600357
+UniRef50_P75712: Putative allantoin permease|g__Escherichia.s__Escherichia_coli	28.4252600357
+UniRef50_U3ST30	28.4232995444
+UniRef50_U3ST30|g__Streptococcus.s__Streptococcus_mutans	28.4232995444
+UniRef50_P77366: Beta-phosphoglucomutase	28.4167186305
+UniRef50_P77366: Beta-phosphoglucomutase|g__Escherichia.s__Escherichia_coli	28.4167186305
+UniRef50_Q3J099: Transcriptional regulator, HxlR family	28.4140679423
+UniRef50_Q3J099: Transcriptional regulator, HxlR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.4140679423
+UniRef50_P77588	28.4119678134
+UniRef50_P77588|g__Escherichia.s__Escherichia_coli	28.4119678134
+UniRef50_P0AAE6: Putative arginine/ornithine antiporter	28.4100478258
+UniRef50_P0AAE6: Putative arginine/ornithine antiporter|g__Escherichia.s__Escherichia_coli	28.4100478258
+UniRef50_I6TPD4: MutE	28.4074304038
+UniRef50_I6TPD4: MutE|g__Streptococcus.s__Streptococcus_mutans	28.4074304038
+UniRef50_P26394: dTDP-4-dehydrorhamnose 3,5-epimerase	28.4033681619
+UniRef50_P26394: dTDP-4-dehydrorhamnose 3,5-epimerase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.3127440020
+UniRef50_P26394: dTDP-4-dehydrorhamnose 3,5-epimerase|unclassified	0.0906241599
+UniRef50_J7R4E7	28.4030233640
+UniRef50_J7R4E7|g__Escherichia.s__Escherichia_coli	28.4030233640
+UniRef50_Q2K5E7: Xylose ABC transporter, permease protein	28.4026390473
+UniRef50_Q2K5E7: Xylose ABC transporter, permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.4026390473
+UniRef50_Q04IT2: Segregation and condensation protein A	28.4005378022
+UniRef50_Q04IT2: Segregation and condensation protein A|g__Streptococcus.s__Streptococcus_mutans	28.4005378022
+UniRef50_A1JQW7: Glycerol-3-phosphate acyltransferase	28.3972988004
+UniRef50_A1JQW7: Glycerol-3-phosphate acyltransferase|g__Escherichia.s__Escherichia_coli	28.3972988004
+UniRef50_A5ULF2: Adenosylcobinamide amidohydrolase, CbiZ	28.3883239241
+UniRef50_A5ULF2: Adenosylcobinamide amidohydrolase, CbiZ|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.3883239241
+UniRef50_A1WY04: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	28.3881311451
+UniRef50_A1WY04: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|g__Escherichia.s__Escherichia_coli	27.0839209225
+UniRef50_A1WY04: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|g__Neisseria.s__Neisseria_meningitidis	1.1494252874
+UniRef50_A1WY04: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.1547849352
+UniRef50_F5M5L4: LysR family transcriptional regulator	28.3839272856
+UniRef50_F5M5L4: LysR family transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.3839272856
+UniRef50_Q5DZU8: 3-methyl-2-oxobutanoate hydroxymethyltransferase 2	28.3808538235
+UniRef50_Q5DZU8: 3-methyl-2-oxobutanoate hydroxymethyltransferase 2|g__Escherichia.s__Escherichia_coli	28.2934865647
+UniRef50_Q5DZU8: 3-methyl-2-oxobutanoate hydroxymethyltransferase 2|unclassified	0.0873672588
+UniRef50_O26901: ATP-dependent DNA helicase Hel308	28.3792809416
+UniRef50_O26901: ATP-dependent DNA helicase Hel308|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.3792809416
+UniRef50_Q02KY6	28.3776451438
+UniRef50_Q02KY6|g__Pseudomonas.s__Pseudomonas_aeruginosa	28.3776451438
+UniRef50_Q9KIP8: D-tagatose-1,6-bisphosphate aldolase subunit KbaY	28.3694219947
+UniRef50_Q9KIP8: D-tagatose-1,6-bisphosphate aldolase subunit KbaY|g__Escherichia.s__Escherichia_coli	28.2760793176
+UniRef50_Q9KIP8: D-tagatose-1,6-bisphosphate aldolase subunit KbaY|unclassified	0.0933426772
+UniRef50_F8KNY9	28.3587695427
+UniRef50_F8KNY9|g__Staphylococcus.s__Staphylococcus_aureus	19.8057731235
+UniRef50_F8KNY9|g__Staphylococcus.s__Staphylococcus_epidermidis	8.5529964192
+UniRef50_P0ADA6	28.3569793842
+UniRef50_P0ADA6|g__Escherichia.s__Escherichia_coli	28.3569793842
+UniRef50_G4RE73: Glutaredoxin	28.3557191954
+UniRef50_G4RE73: Glutaredoxin|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.3557191954
+UniRef50_O64363: Protein gp55	28.3542275808
+UniRef50_O64363: Protein gp55|g__Escherichia.s__Escherichia_coli	28.3542275808
+UniRef50_O31711	28.3465053677
+UniRef50_O31711|g__Streptococcus.s__Streptococcus_mutans	24.9367821203
+UniRef50_O31711|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.9646365422
+UniRef50_O31711|g__Streptococcus.s__Streptococcus_agalactiae	1.4450867052
+UniRef50_P0AAW3	28.3463623252
+UniRef50_P0AAW3|g__Escherichia.s__Escherichia_coli	28.3463623252
+UniRef50_P76035	28.3380491632
+UniRef50_P76035|g__Escherichia.s__Escherichia_coli	28.2002026549
+UniRef50_P76035|unclassified	0.1378465083
+UniRef50_A5UP74	28.3296897869
+UniRef50_A5UP74|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.3296897869
+UniRef50_P58115: Pirin-like protein YhaK	28.3196437764
+UniRef50_P58115: Pirin-like protein YhaK|g__Escherichia.s__Escherichia_coli	28.3196437764
+UniRef50_R9SM76: CDP-glycerol:poly(Glycerophosphate) glycerophosphotransferase	28.3097675149
+UniRef50_R9SM76: CDP-glycerol:poly(Glycerophosphate) glycerophosphotransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.3097675149
+UniRef50_P77526: Disulfide-bond oxidoreductase YfcG	28.3039628220
+UniRef50_P77526: Disulfide-bond oxidoreductase YfcG|g__Escherichia.s__Escherichia_coli	27.8994883891
+UniRef50_P77526: Disulfide-bond oxidoreductase YfcG|unclassified	0.4044744329
+UniRef50_Q8Z7H3: Virulence sensor histidine kinase PhoQ	28.2990552398
+UniRef50_Q8Z7H3: Virulence sensor histidine kinase PhoQ|g__Escherichia.s__Escherichia_coli	28.2990552398
+UniRef50_P0A6C2: Endonuclease 4	28.2976664979
+UniRef50_P0A6C2: Endonuclease 4|g__Escherichia.s__Escherichia_coli	28.2976664979
+UniRef50_P77368: UPF0098 protein YbcL	28.2976304767
+UniRef50_P77368: UPF0098 protein YbcL|g__Escherichia.s__Escherichia_coli	28.2976304767
+UniRef50_Q9ZFV2: Ethanolamine utilization protein EutA	28.2932478993
+UniRef50_Q9ZFV2: Ethanolamine utilization protein EutA|g__Escherichia.s__Escherichia_coli	28.2932478993
+UniRef50_A6TGA6: Rhamnulose-1-phosphate aldolase	28.2909557329
+UniRef50_A6TGA6: Rhamnulose-1-phosphate aldolase|g__Escherichia.s__Escherichia_coli	27.9285582920
+UniRef50_A6TGA6: Rhamnulose-1-phosphate aldolase|unclassified	0.3623974409
+UniRef50_Q8FIP6: Maf-like protein YceF	28.2873938969
+UniRef50_Q8FIP6: Maf-like protein YceF|g__Escherichia.s__Escherichia_coli	28.2873938969
+UniRef50_Q8XA81	28.2783477329
+UniRef50_Q8XA81|g__Escherichia.s__Escherichia_coli	28.2783477329
+UniRef50_Q57624: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B	28.2771893338
+UniRef50_Q57624: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.2771893338
+UniRef50_A5ULU4: Glutamyl-tRNA reductase	28.2739279721
+UniRef50_A5ULU4: Glutamyl-tRNA reductase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.2739279721
+UniRef50_X3W353: Enterobactin synthase subunit F	28.2724761931
+UniRef50_X3W353: Enterobactin synthase subunit F|g__Escherichia.s__Escherichia_coli	28.2724761931
+UniRef50_I0C5T2: Transposase FOR transposon Tn554	28.2653892572
+UniRef50_I0C5T2: Transposase FOR transposon Tn554|g__Staphylococcus.s__Staphylococcus_epidermidis	19.7368421053
+UniRef50_I0C5T2: Transposase FOR transposon Tn554|g__Staphylococcus.s__Staphylococcus_aureus	8.5285471520
+UniRef50_Q1MM06: Glucose-6-phosphate isomerase	28.2652741652
+UniRef50_Q1MM06: Glucose-6-phosphate isomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.2652741652
+UniRef50_B5EZV0: Probable protein kinase UbiB	28.2649637251
+UniRef50_B5EZV0: Probable protein kinase UbiB|g__Escherichia.s__Escherichia_coli	28.2649637251
+UniRef50_P45253: Release factor glutamine methyltransferase	28.2558487625
+UniRef50_P45253: Release factor glutamine methyltransferase|g__Escherichia.s__Escherichia_coli	28.2558487625
+UniRef50_C6SPE5	28.2489305079
+UniRef50_C6SPE5|g__Streptococcus.s__Streptococcus_mutans	28.2489305079
+UniRef50_D3E138	28.2458946827
+UniRef50_D3E138|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.2458946827
+UniRef50_N6RCJ7: RpiR family transcriptional regulator	28.2450820940
+UniRef50_N6RCJ7: RpiR family transcriptional regulator|g__Staphylococcus.s__Staphylococcus_aureus	28.2450820940
+UniRef50_P31126	28.2449384008
+UniRef50_P31126|g__Escherichia.s__Escherichia_coli	28.2449384008
+UniRef50_K2DEX2	28.2389698913
+UniRef50_K2DEX2|unclassified	28.2389698913
+UniRef50_O27720: Probable tRNA sulfurtransferase	28.2331028769
+UniRef50_O27720: Probable tRNA sulfurtransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.2331028769
+UniRef50_D2J9G2	28.2303902994
+UniRef50_D2J9G2|g__Staphylococcus.s__Staphylococcus_aureus	28.2303902994
+UniRef50_E0IXH7: ShET2 enterotoxin domain protein	28.2222138172
+UniRef50_E0IXH7: ShET2 enterotoxin domain protein|g__Escherichia.s__Escherichia_coli	28.2222138172
+UniRef50_D3E006	28.2173744354
+UniRef50_D3E006|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.9816569592
+UniRef50_D3E006|unclassified	0.2357174762
+UniRef50_O27911: 2-phosphoglycerate kinase	28.2170110246
+UniRef50_O27911: 2-phosphoglycerate kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.2170110246
+UniRef50_A5UAG1: Ribonuclease T	28.2163988966
+UniRef50_A5UAG1: Ribonuclease T|g__Escherichia.s__Escherichia_coli	20.1477078921
+UniRef50_A5UAG1: Ribonuclease T|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0686910046
+UniRef50_D3E1A2: ATPase	28.2136639215
+UniRef50_D3E1A2: ATPase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.2136639215
+UniRef50_I3U9H2: Glutamine ABC transporter ATP-binding protein	28.2129165161
+UniRef50_I3U9H2: Glutamine ABC transporter ATP-binding protein|g__Escherichia.s__Escherichia_coli	28.2129165161
+UniRef50_P32710: Cytochrome c-type biogenesis protein NrfE	28.2117095938
+UniRef50_P32710: Cytochrome c-type biogenesis protein NrfE|g__Escherichia.s__Escherichia_coli	28.2117095938
+UniRef50_Q58691	28.2072689533
+UniRef50_Q58691|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.2072689533
+UniRef50_A5ULS7: Molybdopterin biosynthesis protein, MoeA	28.2059026710
+UniRef50_A5ULS7: Molybdopterin biosynthesis protein, MoeA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.2059026710
+UniRef50_A5UJ87: Predicted kinase (GHMP kinase family)	28.2009139287
+UniRef50_A5UJ87: Predicted kinase (GHMP kinase family)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.2009139287
+UniRef50_D7AA03: Binding-protein-dependent transport systems inner membrane component	28.1993997927
+UniRef50_D7AA03: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.1993997927
+UniRef50_P27896: Nitrate/nitrite sensor protein NarQ	28.1993694795
+UniRef50_P27896: Nitrate/nitrite sensor protein NarQ|g__Escherichia.s__Escherichia_coli	28.1993694795
+UniRef50_Q4FQB2: tRNA (mo5U34)-methyltransferase	28.1965484812
+UniRef50_Q4FQB2: tRNA (mo5U34)-methyltransferase|g__Escherichia.s__Escherichia_coli	26.3481196457
+UniRef50_Q4FQB2: tRNA (mo5U34)-methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8484288355
+UniRef50_C1L1N4: Protease HtpX homolog	28.1935459259
+UniRef50_C1L1N4: Protease HtpX homolog|g__Streptococcus.s__Streptococcus_mutans	28.1935459259
+UniRef50_A8LK75: Histidine kinase	28.1870696374
+UniRef50_A8LK75: Histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.1870696374
+UniRef50_Q9KIP9: Putative tagatose-6-phosphate ketose/aldose isomerase	28.1765807971
+UniRef50_Q9KIP9: Putative tagatose-6-phosphate ketose/aldose isomerase|g__Escherichia.s__Escherichia_coli	28.1765807971
+UniRef50_B5EZL8: UPF0208 membrane protein YfbV	28.1754822163
+UniRef50_B5EZL8: UPF0208 membrane protein YfbV|g__Escherichia.s__Escherichia_coli	28.1754822163
+UniRef50_R9D8C3	28.1746031746
+UniRef50_R9D8C3|unclassified	28.1746031746
+UniRef50_P0AEC9: Sensor histidine kinase DcuS	28.1722942382
+UniRef50_P0AEC9: Sensor histidine kinase DcuS|g__Escherichia.s__Escherichia_coli	28.1722942382
+UniRef50_P06709: Bifunctional ligase/repressor BirA	28.1704736470
+UniRef50_P06709: Bifunctional ligase/repressor BirA|g__Escherichia.s__Escherichia_coli	28.1704736470
+UniRef50_P0AEM2: FKBP-type 16 kDa peptidyl-prolyl cis-trans isomerase	28.1642071500
+UniRef50_P0AEM2: FKBP-type 16 kDa peptidyl-prolyl cis-trans isomerase|g__Escherichia.s__Escherichia_coli	28.1642071500
+UniRef50_Q9KSC2: Methylisocitrate lyase	28.1640812904
+UniRef50_Q9KSC2: Methylisocitrate lyase|g__Escherichia.s__Escherichia_coli	21.2915710403
+UniRef50_Q9KSC2: Methylisocitrate lyase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3787446642
+UniRef50_Q9KSC2: Methylisocitrate lyase|g__Acinetobacter.s__Acinetobacter_baumannii	2.4937655860
+UniRef50_B7LSZ0: Cytoplasmic trehalase	28.1572649884
+UniRef50_B7LSZ0: Cytoplasmic trehalase|g__Escherichia.s__Escherichia_coli	28.1291828021
+UniRef50_B7LSZ0: Cytoplasmic trehalase|unclassified	0.0280821864
+UniRef50_E3H102	28.1493069705
+UniRef50_E3H102|g__Streptococcus.s__Streptococcus_mutans	28.1493069705
+UniRef50_D3DYQ8: Isoleucine--tRNA ligase	28.1435121643
+UniRef50_D3DYQ8: Isoleucine--tRNA ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.1435121643
+UniRef50_F0VRX3	28.1281563285
+UniRef50_F0VRX3|g__Streptococcus.s__Streptococcus_mutans	28.1281563285
+UniRef50_Q51687: Histidinol-phosphate aminotransferase	28.1237882695
+UniRef50_Q51687: Histidinol-phosphate aminotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	28.1237882695
+UniRef50_Q2NGD5: Polyphosphate kinase	28.1190354993
+UniRef50_Q2NGD5: Polyphosphate kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.1190354993
+UniRef50_Q8FKA9	28.1090705679
+UniRef50_Q8FKA9|g__Escherichia.s__Escherichia_coli	25.0969409737
+UniRef50_Q8FKA9|unclassified	3.0121295942
+UniRef50_B9L2J1: Acetaldehyde dehydrogenase	28.1076294132
+UniRef50_B9L2J1: Acetaldehyde dehydrogenase|g__Escherichia.s__Escherichia_coli	28.1076294132
+UniRef50_Q1C665: Penicillin-insensitive murein endopeptidase	28.1039958885
+UniRef50_Q1C665: Penicillin-insensitive murein endopeptidase|g__Escherichia.s__Escherichia_coli	28.1039958885
+UniRef50_P50252: Adenosylhomocysteinase	28.0987318656
+UniRef50_P50252: Adenosylhomocysteinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.0374779508
+UniRef50_P50252: Adenosylhomocysteinase|unclassified	0.0612539148
+UniRef50_Q5HQE5	28.0878049485
+UniRef50_Q5HQE5|g__Staphylococcus.s__Staphylococcus_epidermidis	28.0878049485
+UniRef50_A6UWL8: N-acetyl-gamma-glutamyl-phosphate reductase	28.0863757276
+UniRef50_A6UWL8: N-acetyl-gamma-glutamyl-phosphate reductase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.9286585826
+UniRef50_A6UWL8: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.1577171450
+UniRef50_Q47534	28.0853624374
+UniRef50_Q47534|g__Escherichia.s__Escherichia_coli	28.0853624374
+UniRef50_P03835: Transposase InsG for insertion sequence element IS4	28.0827601936
+UniRef50_P03835: Transposase InsG for insertion sequence element IS4|g__Escherichia.s__Escherichia_coli	28.0827601936
+UniRef50_B6ZUP8: Formate C-acetyltransferase 3	28.0821007051
+UniRef50_B6ZUP8: Formate C-acetyltransferase 3|g__Escherichia.s__Escherichia_coli	28.0821007051
+UniRef50_B5QX24: Protein TolB	28.0747822891
+UniRef50_B5QX24: Protein TolB|g__Escherichia.s__Escherichia_coli	28.0747822891
+UniRef50_Q57725: Probable acetolactate synthase large subunit	28.0698162027
+UniRef50_Q57725: Probable acetolactate synthase large subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.9148910621
+UniRef50_Q57725: Probable acetolactate synthase large subunit|unclassified	0.1549251406
+UniRef50_P0AGJ3: tRNA (guanosine(18)-2'-O)-methyltransferase	28.0686152908
+UniRef50_P0AGJ3: tRNA (guanosine(18)-2'-O)-methyltransferase|g__Escherichia.s__Escherichia_coli	28.0686152908
+UniRef50_P71229: Hydrogenase-4 transcriptional activator	28.0646176711
+UniRef50_P71229: Hydrogenase-4 transcriptional activator|g__Escherichia.s__Escherichia_coli	28.0646176711
+UniRef50_P0CI32: 3-phenylpropionate-dihydrodiol/cinnamic acid-dihydrodiol dehydrogenase	28.0562898662
+UniRef50_P0CI32: 3-phenylpropionate-dihydrodiol/cinnamic acid-dihydrodiol dehydrogenase|g__Escherichia.s__Escherichia_coli	27.5289997889
+UniRef50_P0CI32: 3-phenylpropionate-dihydrodiol/cinnamic acid-dihydrodiol dehydrogenase|unclassified	0.5272900773
+UniRef50_Q6D5V7: Transcriptional regulator SlyA	28.0550195677
+UniRef50_Q6D5V7: Transcriptional regulator SlyA|g__Escherichia.s__Escherichia_coli	28.0550195677
+UniRef50_A8AQ08: Threonine/serine transporter TdcC	28.0537017496
+UniRef50_A8AQ08: Threonine/serine transporter TdcC|g__Escherichia.s__Escherichia_coli	28.0537017496
+UniRef50_P08722: PTS system beta-glucoside-specific EIIBCA component	28.0518127028
+UniRef50_P08722: PTS system beta-glucoside-specific EIIBCA component|g__Escherichia.s__Escherichia_coli	28.0518127028
+UniRef50_Q9CNG8: Undecaprenyl-phosphate alpha-N-acetylglucosaminyl 1-phosphate transferase	28.0461992280
+UniRef50_Q9CNG8: Undecaprenyl-phosphate alpha-N-acetylglucosaminyl 1-phosphate transferase|g__Escherichia.s__Escherichia_coli	28.0461992280
+UniRef50_D2ZQG6	28.0452280065
+UniRef50_D2ZQG6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.5859479144
+UniRef50_D2ZQG6|unclassified	0.4592800921
+UniRef50_D2ZR32	28.0408905644
+UniRef50_D2ZR32|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.0408905644
+UniRef50_Q8FFW9	28.0330650644
+UniRef50_Q8FFW9|g__Escherichia.s__Escherichia_coli	27.4813205916
+UniRef50_Q8FFW9|unclassified	0.5517444728
+UniRef50_A6TSP5: DEAD/DEAH box helicase domain protein	28.0309129351
+UniRef50_A6TSP5: DEAD/DEAH box helicase domain protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.0309129351
+UniRef50_P77634	28.0284682438
+UniRef50_P77634|g__Escherichia.s__Escherichia_coli	28.0284682438
+UniRef50_I6T631: ABC transporter substrate-binding protein	28.0278500979
+UniRef50_I6T631: ABC transporter substrate-binding protein|g__Streptococcus.s__Streptococcus_mutans	28.0278500979
+UniRef50_Q83BB6: RNA polymerase sigma factor RpoD	28.0245449215
+UniRef50_Q83BB6: RNA polymerase sigma factor RpoD|g__Escherichia.s__Escherichia_coli	28.0245449215
+UniRef50_A5UNH2: Glycosyltransferase, GT2 family	28.0237509079
+UniRef50_A5UNH2: Glycosyltransferase, GT2 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	28.0237509079
+UniRef50_L1KC95	28.0233832664
+UniRef50_L1KC95|unclassified	28.0233832664
+UniRef50_P0ABD0: High-affinity choline transport protein	28.0142600422
+UniRef50_P0ABD0: High-affinity choline transport protein|g__Escherichia.s__Escherichia_coli	22.1127735966
+UniRef50_P0ABD0: High-affinity choline transport protein|g__Staphylococcus.s__Staphylococcus_aureus	5.1282051282
+UniRef50_P0ABD0: High-affinity choline transport protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.6738544474
+UniRef50_P0ABD0: High-affinity choline transport protein|unclassified	0.0994268699
+UniRef50_P0AFR0: NTE family protein RssA	28.0076332655
+UniRef50_P0AFR0: NTE family protein RssA|g__Escherichia.s__Escherichia_coli	28.0076332655
+UniRef50_P77716: Inner membrane ABC transporter permease protein YcjP	28.0074721170
+UniRef50_P77716: Inner membrane ABC transporter permease protein YcjP|g__Escherichia.s__Escherichia_coli	28.0074721170
+UniRef50_D5QFZ9: Cyclase/dehydrase	28.0045836873
+UniRef50_D5QFZ9: Cyclase/dehydrase|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.6547973972
+UniRef50_D5QFZ9: Cyclase/dehydrase|unclassified	0.3497862901
+UniRef50_P02919: Penicillin-binding protein 1B	27.9924722661
+UniRef50_P02919: Penicillin-binding protein 1B|g__Escherichia.s__Escherichia_coli	27.9924722661
+UniRef50_Q8PY83: CoB--CoM heterodisulfide reductase 1 subunit B	27.9920716564
+UniRef50_Q8PY83: CoB--CoM heterodisulfide reductase 1 subunit B|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.9920716564
+UniRef50_A1ADH3: tRNA 5-methylaminomethyl-2-thiouridine biosynthesis bifunctional protein MnmC	27.9893989921
+UniRef50_A1ADH3: tRNA 5-methylaminomethyl-2-thiouridine biosynthesis bifunctional protein MnmC|g__Escherichia.s__Escherichia_coli	27.9893989921
+UniRef50_Q8CR15	27.9877488307
+UniRef50_Q8CR15|g__Staphylococcus.s__Staphylococcus_epidermidis	27.9877488307
+UniRef50_P0A9V0: Probable acyl-CoA dehydrogenase YdiO	27.9853866225
+UniRef50_P0A9V0: Probable acyl-CoA dehydrogenase YdiO|g__Escherichia.s__Escherichia_coli	27.9853866225
+UniRef50_O27112: 2-oxoglutarate synthase subunit KorA	27.9741892119
+UniRef50_O27112: 2-oxoglutarate synthase subunit KorA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.9741892119
+UniRef50_B9KLG1: Membrane-anchored oxidoreductase	27.9679247813
+UniRef50_B9KLG1: Membrane-anchored oxidoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.9679247813
+UniRef50_A5VFM2: tRNA-specific 2-thiouridylase MnmA	27.9650724513
+UniRef50_A5VFM2: tRNA-specific 2-thiouridylase MnmA|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.9650724513
+UniRef50_A8AKU2: 50S ribosomal protein L1	27.9609651504
+UniRef50_A8AKU2: 50S ribosomal protein L1|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.1836297190
+UniRef50_A8AKU2: 50S ribosomal protein L1|g__Escherichia.s__Escherichia_coli	13.7773354314
+UniRef50_Q46808	27.9581882070
+UniRef50_Q46808|g__Escherichia.s__Escherichia_coli	27.7489454085
+UniRef50_Q46808|unclassified	0.2092427986
+UniRef50_Q04539: Ribulose-phosphate 3-epimerase, plasmid	27.9486217134
+UniRef50_Q04539: Ribulose-phosphate 3-epimerase, plasmid|g__Escherichia.s__Escherichia_coli	20.0063434847
+UniRef50_Q04539: Ribulose-phosphate 3-epimerase, plasmid|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8811057652
+UniRef50_Q04539: Ribulose-phosphate 3-epimerase, plasmid|unclassified	0.0611724635
+UniRef50_P31777: Ribosomal RNA large subunit methyltransferase J	27.9391160306
+UniRef50_P31777: Ribosomal RNA large subunit methyltransferase J|g__Escherichia.s__Escherichia_coli	27.5081626293
+UniRef50_P31777: Ribosomal RNA large subunit methyltransferase J|unclassified	0.4309534013
+UniRef50_P76318: Putative SOS response-associated peptidase YedK	27.9375997759
+UniRef50_P76318: Putative SOS response-associated peptidase YedK|g__Escherichia.s__Escherichia_coli	27.9375997759
+UniRef50_L0EBI3: Transcriptional accessory protein	27.9283709465
+UniRef50_L0EBI3: Transcriptional accessory protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.9283709465
+UniRef50_A5UJS0: Exosome complex component Rrp4	27.9151795875
+UniRef50_A5UJS0: Exosome complex component Rrp4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.9151795875
+UniRef50_P19926: Glucose-1-phosphatase	27.9123783591
+UniRef50_P19926: Glucose-1-phosphatase|g__Escherichia.s__Escherichia_coli	27.1428077049
+UniRef50_P19926: Glucose-1-phosphatase|unclassified	0.7695706542
+UniRef50_F0VTI5: PAP2 superfamily protein	27.9074466065
+UniRef50_F0VTI5: PAP2 superfamily protein|g__Streptococcus.s__Streptococcus_mutans	27.9074466065
+UniRef50_Q1QA11: Ribosomal protein S12 methylthiotransferase RimO	27.9016782997
+UniRef50_Q1QA11: Ribosomal protein S12 methylthiotransferase RimO|g__Escherichia.s__Escherichia_coli	24.0640657304
+UniRef50_Q1QA11: Ribosomal protein S12 methylthiotransferase RimO|g__Deinococcus.s__Deinococcus_radiodurans	3.8376125693
+UniRef50_U3NMM0	27.8949504751
+UniRef50_U3NMM0|g__Staphylococcus.s__Staphylococcus_aureus	27.8949504751
+UniRef50_W1G6Z0	27.8936303609
+UniRef50_W1G6Z0|unclassified	27.8936303609
+UniRef50_A7FJ95	27.8923666591
+UniRef50_A7FJ95|g__Escherichia.s__Escherichia_coli	27.8923666591
+UniRef50_Q8X7R2: Acyl-coenzyme A dehydrogenase	27.8893648687
+UniRef50_Q8X7R2: Acyl-coenzyme A dehydrogenase|g__Escherichia.s__Escherichia_coli	27.7002823253
+UniRef50_Q8X7R2: Acyl-coenzyme A dehydrogenase|unclassified	0.1890825434
+UniRef50_B9KKX8: Cyclic nucleotide-binding protein	27.8870319904
+UniRef50_B9KKX8: Cyclic nucleotide-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.8870319904
+UniRef50_Q8CS04	27.8811521404
+UniRef50_Q8CS04|g__Staphylococcus.s__Staphylococcus_epidermidis	27.2481109396
+UniRef50_Q8CS04|unclassified	0.6330412009
+UniRef50_P0AFA3: Nitrate/nitrite sensor protein NarX	27.8810660169
+UniRef50_P0AFA3: Nitrate/nitrite sensor protein NarX|g__Escherichia.s__Escherichia_coli	27.8810660169
+UniRef50_A5F4D2: Phosphomethylpyrimidine synthase	27.8679499192
+UniRef50_A5F4D2: Phosphomethylpyrimidine synthase|g__Escherichia.s__Escherichia_coli	27.2668423220
+UniRef50_A5F4D2: Phosphomethylpyrimidine synthase|g__Acinetobacter.s__Acinetobacter_baumannii	0.5624296963
+UniRef50_A5F4D2: Phosphomethylpyrimidine synthase|unclassified	0.0386779009
+UniRef50_F3U250: McpJ	27.8669758599
+UniRef50_F3U250: McpJ|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.8669758599
+UniRef50_Q3J1F6	27.8599962514
+UniRef50_Q3J1F6|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.5676635513
+UniRef50_Q3J1F6|unclassified	1.2923327001
+UniRef50_B7N6B0: Peptidase B	27.8531636892
+UniRef50_B7N6B0: Peptidase B|g__Escherichia.s__Escherichia_coli	27.4181832530
+UniRef50_B7N6B0: Peptidase B|unclassified	0.4349804362
+UniRef50_D3E2Q4: Cell wall biosynthesis protein phospho-N-acetylmuramoyl-pentapeptide-transferase family	27.8512636000
+UniRef50_D3E2Q4: Cell wall biosynthesis protein phospho-N-acetylmuramoyl-pentapeptide-transferase family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.8512636000
+UniRef50_A5UMK8: Arginine--tRNA ligase	27.8470464423
+UniRef50_A5UMK8: Arginine--tRNA ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.8470464423
+UniRef50_D6T9H3	27.8420901784
+UniRef50_D6T9H3|g__Staphylococcus.s__Staphylococcus_aureus	27.8420901784
+UniRef50_P76056: Putative lambdoid prophage Rac integrase	27.8416704910
+UniRef50_P76056: Putative lambdoid prophage Rac integrase|g__Escherichia.s__Escherichia_coli	27.8416704910
+UniRef50_P37551: Pur operon repressor	27.8409684634
+UniRef50_P37551: Pur operon repressor|g__Streptococcus.s__Streptococcus_mutans	25.9541760105
+UniRef50_P37551: Pur operon repressor|g__Streptococcus.s__Streptococcus_agalactiae	1.8867924528
+UniRef50_E3GWD7: Protease HtpX homolog	27.8311765458
+UniRef50_E3GWD7: Protease HtpX homolog|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.8311765458
+UniRef50_P18949: Cystathionine beta-lyase	27.8288519930
+UniRef50_P18949: Cystathionine beta-lyase|g__Escherichia.s__Escherichia_coli	27.3221086755
+UniRef50_P18949: Cystathionine beta-lyase|unclassified	0.5067433175
+UniRef50_Q98NF5: Threonine dehydratase	27.8265071736
+UniRef50_Q98NF5: Threonine dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.8265071736
+UniRef50_O29196: 5,10-methylenetetrahydromethanopterin reductase	27.8227411176
+UniRef50_O29196: 5,10-methylenetetrahydromethanopterin reductase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.8227411176
+UniRef50_O28664: Proline--tRNA ligase	27.8212862380
+UniRef50_O28664: Proline--tRNA ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.8212862380
+UniRef50_P32143: Sulfofructose kinase	27.8208570145
+UniRef50_P32143: Sulfofructose kinase|g__Escherichia.s__Escherichia_coli	27.8208570145
+UniRef50_A0A029J2G1: Sodium/hydrogen exchanger family protein	27.8206063742
+UniRef50_A0A029J2G1: Sodium/hydrogen exchanger family protein|g__Escherichia.s__Escherichia_coli	27.8206063742
+UniRef50_P37661: Phosphoethanolamine transferase EptB	27.8191789872
+UniRef50_P37661: Phosphoethanolamine transferase EptB|g__Escherichia.s__Escherichia_coli	27.8191789872
+UniRef50_A1AH06	27.8189751072
+UniRef50_A1AH06|g__Escherichia.s__Escherichia_coli	27.1002710027
+UniRef50_A1AH06|unclassified	0.7187041045
+UniRef50_A9MQU9: FMN-dependent NADH-azoreductase	27.8127014387
+UniRef50_A9MQU9: FMN-dependent NADH-azoreductase|g__Escherichia.s__Escherichia_coli	27.8127014387
+UniRef50_O27587	27.8084547987
+UniRef50_O27587|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.8084547987
+UniRef50_D6SDD7	27.8030961440
+UniRef50_D6SDD7|g__Staphylococcus.s__Staphylococcus_aureus	26.5468147370
+UniRef50_D6SDD7|unclassified	1.2562814070
+UniRef50_P37597: Inner membrane transport protein YdhC	27.8027579001
+UniRef50_P37597: Inner membrane transport protein YdhC|g__Escherichia.s__Escherichia_coli	27.8027579001
+UniRef50_B5FI46: Ribulokinase	27.8005587480
+UniRef50_B5FI46: Ribulokinase|g__Escherichia.s__Escherichia_coli	27.7966021546
+UniRef50_B5FI46: Ribulokinase|unclassified	0.0039565935
+UniRef50_O27611: Conserved protein	27.7998236240
+UniRef50_O27611: Conserved protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.7998236240
+UniRef50_F0LGH9: Transcriptional regulator, AraC family	27.7988393574
+UniRef50_F0LGH9: Transcriptional regulator, AraC family|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.7988393574
+UniRef50_Q1IZP1: Gamma-glutamyl phosphate reductase	27.7947179765
+UniRef50_Q1IZP1: Gamma-glutamyl phosphate reductase|g__Escherichia.s__Escherichia_coli	27.7947179765
+UniRef50_A3VGU5	27.7922817403
+UniRef50_A3VGU5|unclassified	27.7922817403
+UniRef50_D3E1U3: Ferredoxin	27.7922707520
+UniRef50_D3E1U3: Ferredoxin|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.7922707520
+UniRef50_P39366: Putative aminopeptidase SgcX	27.7897861403
+UniRef50_P39366: Putative aminopeptidase SgcX|g__Escherichia.s__Escherichia_coli	27.7897861403
+UniRef50_R5WAI2: Exodeoxyribonuclease V gamma subunit	27.7804066887
+UniRef50_R5WAI2: Exodeoxyribonuclease V gamma subunit|g__Escherichia.s__Escherichia_coli	27.7804066887
+UniRef50_A3PPU6	27.7777777778
+UniRef50_A3PPU6|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.7777777778
+UniRef50_G4LTW5: Chaperone	27.7777777778
+UniRef50_G4LTW5: Chaperone|g__Pseudomonas.s__Pseudomonas_aeruginosa	27.7777777778
+UniRef50_T5X346: Sensor protein evgS	27.7716742512
+UniRef50_T5X346: Sensor protein evgS|g__Escherichia.s__Escherichia_coli	27.7716742512
+UniRef50_E3GWU1: Radical SAM domain protein	27.7707644402
+UniRef50_E3GWU1: Radical SAM domain protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.7707644402
+UniRef50_P75791	27.7656121045
+UniRef50_P75791|g__Escherichia.s__Escherichia_coli	27.7656121045
+UniRef50_P76340: Probable transcriptional regulatory protein YedW	27.7619503582
+UniRef50_P76340: Probable transcriptional regulatory protein YedW|g__Escherichia.s__Escherichia_coli	27.7619503582
+UniRef50_Q5HPB4: Peptide methionine sulfoxide reductase MsrB	27.7598391298
+UniRef50_Q5HPB4: Peptide methionine sulfoxide reductase MsrB|g__Staphylococcus.s__Staphylococcus_epidermidis	27.4382716018
+UniRef50_Q5HPB4: Peptide methionine sulfoxide reductase MsrB|unclassified	0.3215675280
+UniRef50_R9SL42	27.7553556426
+UniRef50_R9SL42|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.7553556426
+UniRef50_P0ADH8: Type 1 fimbriae regulatory protein FimE	27.7375580423
+UniRef50_P0ADH8: Type 1 fimbriae regulatory protein FimE|g__Escherichia.s__Escherichia_coli	27.7375580423
+UniRef50_P15030: Fe(3+) dicitrate transport system permease protein FecC	27.7054267589
+UniRef50_P15030: Fe(3+) dicitrate transport system permease protein FecC|g__Escherichia.s__Escherichia_coli	27.7054267589
+UniRef50_V9WQ71: NTP pyrophosphohydrolase	27.7042144888
+UniRef50_V9WQ71: NTP pyrophosphohydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.7042144888
+UniRef50_Q8FGS9: Ribosomal RNA small subunit methyltransferase F	27.7009610391
+UniRef50_Q8FGS9: Ribosomal RNA small subunit methyltransferase F|g__Escherichia.s__Escherichia_coli	27.7009610391
+UniRef50_F7ZKI4: HTH-type transcriptional regulator, AsnC family	27.6964522735
+UniRef50_F7ZKI4: HTH-type transcriptional regulator, AsnC family|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.6964522735
+UniRef50_H8E0P5: Isopropylmalate isomerase small subunit (Fragment)	27.6952550689
+UniRef50_H8E0P5: Isopropylmalate isomerase small subunit (Fragment)|g__Escherichia.s__Escherichia_coli	27.6952550689
+UniRef50_Q5HME3	27.6878666346
+UniRef50_Q5HME3|g__Staphylococcus.s__Staphylococcus_epidermidis	27.6878666346
+UniRef50_B5F731: Non-specific ribonucleoside hydrolase RihC	27.6861041570
+UniRef50_B5F731: Non-specific ribonucleoside hydrolase RihC|g__Escherichia.s__Escherichia_coli	27.6861041570
+UniRef50_P30844: Sensor protein BasS	27.6774911632
+UniRef50_P30844: Sensor protein BasS|g__Escherichia.s__Escherichia_coli	27.6774911632
+UniRef50_P0A9H4: Lysine decarboxylase, inducible	27.6757341292
+UniRef50_P0A9H4: Lysine decarboxylase, inducible|g__Escherichia.s__Escherichia_coli	27.6757341292
+UniRef50_P52140: UPF0758 protein YfjY	27.6751476066
+UniRef50_P52140: UPF0758 protein YfjY|g__Escherichia.s__Escherichia_coli	27.6751476066
+UniRef50_P42604: Altronate dehydratase	27.6736799113
+UniRef50_P42604: Altronate dehydratase|g__Escherichia.s__Escherichia_coli	27.6736799113
+UniRef50_Q46PS3: Pseudouridine-5'-phosphate glycosidase	27.6724946935
+UniRef50_Q46PS3: Pseudouridine-5'-phosphate glycosidase|g__Escherichia.s__Escherichia_coli	27.6724946935
+UniRef50_UPI000329D795: PREDICTED: catalase-peroxidase-like	27.6678174006
+UniRef50_UPI000329D795: PREDICTED: catalase-peroxidase-like|g__Escherichia.s__Escherichia_coli	27.1075933109
+UniRef50_UPI000329D795: PREDICTED: catalase-peroxidase-like|g__Acinetobacter.s__Acinetobacter_baumannii	0.5602240896
+UniRef50_B3R9A8: YagS molybdopterin dehydrogenase, FAD-binding, CO dehydrogenase flavoprotein, C-terminal	27.6656449181
+UniRef50_B3R9A8: YagS molybdopterin dehydrogenase, FAD-binding, CO dehydrogenase flavoprotein, C-terminal|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.6656449181
+UniRef50_D8IGU8: ABC superfamily ATP binding cassette transporter, ABC protein	27.6641150775
+UniRef50_D8IGU8: ABC superfamily ATP binding cassette transporter, ABC protein|g__Streptococcus.s__Streptococcus_mutans	27.6641150775
+UniRef50_P43669: Tail-specific protease	27.6608389766
+UniRef50_P43669: Tail-specific protease|g__Escherichia.s__Escherichia_coli	27.6608389766
+UniRef50_P0ACH9: Melibiose operon regulatory protein	27.6593285446
+UniRef50_P0ACH9: Melibiose operon regulatory protein|g__Escherichia.s__Escherichia_coli	27.6593285446
+UniRef50_O27367: DNA polymerase sliding clamp	27.6548054779
+UniRef50_O27367: DNA polymerase sliding clamp|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.6548054779
+UniRef50_Q8X7Z7: 2,5-diketo-D-gluconic acid reductase B	27.6523037115
+UniRef50_Q8X7Z7: 2,5-diketo-D-gluconic acid reductase B|g__Escherichia.s__Escherichia_coli	26.2855483349
+UniRef50_Q8X7Z7: 2,5-diketo-D-gluconic acid reductase B|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2453300125
+UniRef50_Q8X7Z7: 2,5-diketo-D-gluconic acid reductase B|unclassified	0.1214253642
+UniRef50_Q7DDH4: Putative lipoprotein NMB1126/NMB1164	27.6473424850
+UniRef50_Q7DDH4: Putative lipoprotein NMB1126/NMB1164|g__Pseudomonas.s__Pseudomonas_aeruginosa	19.7158909215
+UniRef50_Q7DDH4: Putative lipoprotein NMB1126/NMB1164|g__Neisseria.s__Neisseria_meningitidis	7.9314515635
+UniRef50_B7UNM8: L-rhamnose-proton symporter	27.6412607813
+UniRef50_B7UNM8: L-rhamnose-proton symporter|g__Escherichia.s__Escherichia_coli	27.6412607813
+UniRef50_P76584	27.6370532500
+UniRef50_P76584|g__Escherichia.s__Escherichia_coli	27.6370532500
+UniRef50_O26800: Ketoisovalerate oxidoreductase subunit VorB	27.6369603791
+UniRef50_O26800: Ketoisovalerate oxidoreductase subunit VorB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.6369603791
+UniRef50_P52599: Probable multidrug resistance protein EmrK	27.6367576839
+UniRef50_P52599: Probable multidrug resistance protein EmrK|g__Escherichia.s__Escherichia_coli	27.6367576839
+UniRef50_P27840	27.6217081078
+UniRef50_P27840|g__Escherichia.s__Escherichia_coli	27.6217081078
+UniRef50_Q3ADL9: Acetyl-CoA carboxylase, biotin carboxylase	27.6211552385
+UniRef50_Q3ADL9: Acetyl-CoA carboxylase, biotin carboxylase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.6211552385
+UniRef50_Q47083: HTH-type transcriptional regulator cbl	27.6197052433
+UniRef50_Q47083: HTH-type transcriptional regulator cbl|g__Escherichia.s__Escherichia_coli	27.6197052433
+UniRef50_D2ZRM1	27.6111017960
+UniRef50_D2ZRM1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.6111017960
+UniRef50_Q8XD89: DNA ligase B	27.6105862027
+UniRef50_Q8XD89: DNA ligase B|g__Escherichia.s__Escherichia_coli	27.6105862027
+UniRef50_P22939: Farnesyl diphosphate synthase	27.6068337952
+UniRef50_P22939: Farnesyl diphosphate synthase|g__Escherichia.s__Escherichia_coli	27.6068337952
+UniRef50_R8A2V2: Glucose-6-phosphate 1-dehydrogenase	27.6055961930
+UniRef50_R8A2V2: Glucose-6-phosphate 1-dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	27.6055961930
+UniRef50_P77221	27.6051153312
+UniRef50_P77221|g__Escherichia.s__Escherichia_coli	27.6051153312
+UniRef50_D2ZQE3: Topoisomerase DNA-binding C4 zinc finger domain protein	27.6035618267
+UniRef50_D2ZQE3: Topoisomerase DNA-binding C4 zinc finger domain protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.6035618267
+UniRef50_Q8CRE1	27.6027994310
+UniRef50_Q8CRE1|g__Staphylococcus.s__Staphylococcus_epidermidis	27.6027994310
+UniRef50_P32688	27.6020959227
+UniRef50_P32688|g__Escherichia.s__Escherichia_coli	27.6020959227
+UniRef50_Q6D107: Bifunctional protein Aas	27.6009036143
+UniRef50_Q6D107: Bifunctional protein Aas|g__Escherichia.s__Escherichia_coli	27.6009036143
+UniRef50_P0ACE1: Hydrogenase-2 large chain	27.5997108613
+UniRef50_P0ACE1: Hydrogenase-2 large chain|g__Escherichia.s__Escherichia_coli	27.5997108613
+UniRef50_P77554	27.5907510308
+UniRef50_P77554|g__Escherichia.s__Escherichia_coli	27.5907510308
+UniRef50_X2LKW6: Acetyltransferase component of pyruvate dehydrogenase complex	27.5905694526
+UniRef50_X2LKW6: Acetyltransferase component of pyruvate dehydrogenase complex|g__Escherichia.s__Escherichia_coli	27.5905694526
+UniRef50_D3E0C7: Energy-converting hydrogenase B subunit N EhbN	27.5905338009
+UniRef50_D3E0C7: Energy-converting hydrogenase B subunit N EhbN|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.5905338009
+UniRef50_B1JPW1: Histidinol-phosphate aminotransferase	27.5894587469
+UniRef50_B1JPW1: Histidinol-phosphate aminotransferase|g__Escherichia.s__Escherichia_coli	27.5894587469
+UniRef50_U9FYW3	27.5875190259
+UniRef50_U9FYW3|unclassified	27.5875190259
+UniRef50_P37327: Inner membrane protein YfdC	27.5869320438
+UniRef50_P37327: Inner membrane protein YfdC|g__Escherichia.s__Escherichia_coli	27.5869320438
+UniRef50_S5YTE6: L-arabinose isomerase	27.5828422146
+UniRef50_S5YTE6: L-arabinose isomerase|g__Escherichia.s__Escherichia_coli	27.5828422146
+UniRef50_P0A9J9: P-protein	27.5824564188
+UniRef50_P0A9J9: P-protein|g__Escherichia.s__Escherichia_coli	27.5824564188
+UniRef50_A3VZA4	27.5814575331
+UniRef50_A3VZA4|unclassified	27.5814575331
+UniRef50_P0AEV5: Formate hydrogenlyase regulatory protein HycA	27.5791069034
+UniRef50_P0AEV5: Formate hydrogenlyase regulatory protein HycA|g__Escherichia.s__Escherichia_coli	27.5791069034
+UniRef50_P0AD32: UPF0721 transmembrane protein YfcA	27.5689454651
+UniRef50_P0AD32: UPF0721 transmembrane protein YfcA|g__Escherichia.s__Escherichia_coli	27.5689454651
+UniRef50_R9SMS3: Aspartate/glutamate/uridylate kinase	27.5687704664
+UniRef50_R9SMS3: Aspartate/glutamate/uridylate kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.5687704664
+UniRef50_B7MNC1: Ribosomal RNA small subunit methyltransferase C	27.5664900931
+UniRef50_B7MNC1: Ribosomal RNA small subunit methyltransferase C|g__Escherichia.s__Escherichia_coli	26.5783478006
+UniRef50_B7MNC1: Ribosomal RNA small subunit methyltransferase C|unclassified	0.9881422925
+UniRef50_A7MLE5: Glucans biosynthesis protein D	27.5558230520
+UniRef50_A7MLE5: Glucans biosynthesis protein D|g__Escherichia.s__Escherichia_coli	27.1420708892
+UniRef50_A7MLE5: Glucans biosynthesis protein D|unclassified	0.4137521629
+UniRef50_D3E4Q3	27.5477751809
+UniRef50_D3E4Q3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.5477751809
+UniRef50_Q99ZQ6: Pseudouridine synthase	27.5441556126
+UniRef50_Q99ZQ6: Pseudouridine synthase|g__Streptococcus.s__Streptococcus_mutans	27.5441556126
+UniRef50_B5F446: Aspartate carbamoyltransferase	27.5404024062
+UniRef50_B5F446: Aspartate carbamoyltransferase|g__Escherichia.s__Escherichia_coli	27.5404024062
+UniRef50_R7D247: Oxidoreductase short chain dehydrogenase/reductase family protein	27.5390525073
+UniRef50_R7D247: Oxidoreductase short chain dehydrogenase/reductase family protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.5390525073
+UniRef50_Q5NP61: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	27.5372482556
+UniRef50_Q5NP61: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	25.7769401066
+UniRef50_Q5NP61: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|g__Neisseria.s__Neisseria_meningitidis	1.2195121951
+UniRef50_Q5NP61: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.5407959539
+UniRef50_W8SR94: Protein with similarity with cytochrome c-type biogenesis protein CcdA	27.5357854499
+UniRef50_W8SR94: Protein with similarity with cytochrome c-type biogenesis protein CcdA|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.5357854499
+UniRef50_A5UJ92: Riboflavin-specific deaminase	27.5344618612
+UniRef50_A5UJ92: Riboflavin-specific deaminase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.5344618612
+UniRef50_B4F298: Fructose-1,6-bisphosphatase class 1	27.5327568933
+UniRef50_B4F298: Fructose-1,6-bisphosphatase class 1|g__Escherichia.s__Escherichia_coli	27.4941934628
+UniRef50_B4F298: Fructose-1,6-bisphosphatase class 1|unclassified	0.0385634305
+UniRef50_C9A6P4	27.5325084232
+UniRef50_C9A6P4|g__Staphylococcus.s__Staphylococcus_epidermidis	27.5325084232
+UniRef50_P46852: Quercetin 2,3-dioxygenase	27.5310220097
+UniRef50_P46852: Quercetin 2,3-dioxygenase|g__Escherichia.s__Escherichia_coli	27.5310220097
+UniRef50_UPI000376D251: hypothetical protein	27.5194669063
+UniRef50_UPI000376D251: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.5512129380
+UniRef50_UPI000376D251: hypothetical protein|unclassified	3.9682539683
+UniRef50_S0F090: Acetolactate synthase, small subunit	27.5159573237
+UniRef50_S0F090: Acetolactate synthase, small subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.5159573237
+UniRef50_B9KRH9: Glycosyl transferase, family 2	27.5102862454
+UniRef50_B9KRH9: Glycosyl transferase, family 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.5102862454
+UniRef50_Q4UYY0: Tyrosine recombinase XerC	27.5012171695
+UniRef50_Q4UYY0: Tyrosine recombinase XerC|g__Escherichia.s__Escherichia_coli	27.5012171695
+UniRef50_P65234: Ribose-phosphate pyrophosphokinase	27.4982243983
+UniRef50_P65234: Ribose-phosphate pyrophosphokinase|g__Escherichia.s__Escherichia_coli	17.6385865519
+UniRef50_P65234: Ribose-phosphate pyrophosphokinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.9797867259
+UniRef50_P65234: Ribose-phosphate pyrophosphokinase|unclassified	0.8798511204
+UniRef50_A5UK92: Uridylate kinase	27.4922102173
+UniRef50_A5UK92: Uridylate kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.4922102173
+UniRef50_S4X8K0	27.4917096391
+UniRef50_S4X8K0|g__Staphylococcus.s__Staphylococcus_aureus	27.4917096391
+UniRef50_A5UMV5: Glycosyltransferase, GT2 family	27.4914135545
+UniRef50_A5UMV5: Glycosyltransferase, GT2 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.4914135545
+UniRef50_Q49VN6	27.4861753719
+UniRef50_Q49VN6|g__Staphylococcus.s__Staphylococcus_epidermidis	15.8274099942
+UniRef50_Q49VN6|g__Staphylococcus.s__Staphylococcus_aureus	11.6587653777
+UniRef50_Q1C0H2: LPS-assembly protein LptD	27.4820392869
+UniRef50_Q1C0H2: LPS-assembly protein LptD|g__Escherichia.s__Escherichia_coli	27.4820392869
+UniRef50_P0ABM9: Cytochrome c-type biogenesis protein CcmH	27.4818979183
+UniRef50_P0ABM9: Cytochrome c-type biogenesis protein CcmH|g__Escherichia.s__Escherichia_coli	27.4818979183
+UniRef50_B9KW14: Carboxypeptidase Taq. Metallo peptidase. MEROPS family M32	27.4617152040
+UniRef50_B9KW14: Carboxypeptidase Taq. Metallo peptidase. MEROPS family M32|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.4617152040
+UniRef50_P0A9G0: HTH-type transcriptional regulator MetR	27.4615347814
+UniRef50_P0A9G0: HTH-type transcriptional regulator MetR|g__Escherichia.s__Escherichia_coli	27.4615347814
+UniRef50_P09155: Ribonuclease D	27.4614666168
+UniRef50_P09155: Ribonuclease D|g__Escherichia.s__Escherichia_coli	27.0028644482
+UniRef50_P09155: Ribonuclease D|unclassified	0.4586021685
+UniRef50_D3E0E9	27.4564875399
+UniRef50_D3E0E9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.4564875399
+UniRef50_B5F4F0: Periplasmic trehalase	27.4466074716
+UniRef50_B5F4F0: Periplasmic trehalase|g__Escherichia.s__Escherichia_coli	27.2910483287
+UniRef50_B5F4F0: Periplasmic trehalase|unclassified	0.1555591429
+UniRef50_S6JA19	27.4432876872
+UniRef50_S6JA19|unclassified	27.4432876872
+UniRef50_F5XZ61: Candidate cytosine deaminase (Cytosine aminohydrolase)	27.4234030122
+UniRef50_F5XZ61: Candidate cytosine deaminase (Cytosine aminohydrolase)|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.4234030122
+UniRef50_D4UIW5	27.4211404879
+UniRef50_D4UIW5|g__Staphylococcus.s__Staphylococcus_aureus	27.4211404879
+UniRef50_M2IF34	27.4193548387
+UniRef50_M2IF34|g__Streptococcus.s__Streptococcus_mutans	16.6666666667
+UniRef50_M2IF34|unclassified	10.7526881720
+UniRef50_A5UK29: Predicted DNA modification methylase	27.4188616973
+UniRef50_A5UK29: Predicted DNA modification methylase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.4188616973
+UniRef50_Q28JW2: HemY-like protein	27.4176185646
+UniRef50_Q28JW2: HemY-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.2325604913
+UniRef50_Q28JW2: HemY-like protein|unclassified	0.1850580733
+UniRef50_P77434: Glutamate-pyruvate aminotransferase AlaC	27.4158916437
+UniRef50_P77434: Glutamate-pyruvate aminotransferase AlaC|g__Escherichia.s__Escherichia_coli	18.7996770631
+UniRef50_P77434: Glutamate-pyruvate aminotransferase AlaC|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8739133925
+UniRef50_P77434: Glutamate-pyruvate aminotransferase AlaC|unclassified	0.7423011880
+UniRef50_P39361: Putative sgc region transcriptional regulator	27.4137315490
+UniRef50_P39361: Putative sgc region transcriptional regulator|g__Escherichia.s__Escherichia_coli	27.4137315490
+UniRef50_D3E2W0	27.4119252889
+UniRef50_D3E2W0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.4119252889
+UniRef50_P31455	27.4092117816
+UniRef50_P31455|g__Escherichia.s__Escherichia_coli	27.4092117816
+UniRef50_F5M325: FkbH like protein	27.4064780058
+UniRef50_F5M325: FkbH like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.4064780058
+UniRef50_Q9PBC7: Histidine biosynthesis bifunctional protein HisB	27.3952900144
+UniRef50_Q9PBC7: Histidine biosynthesis bifunctional protein HisB|g__Escherichia.s__Escherichia_coli	27.3952900144
+UniRef50_P44428: 2Fe-2S ferredoxin	27.3932469054
+UniRef50_P44428: 2Fe-2S ferredoxin|g__Escherichia.s__Escherichia_coli	27.3932469054
+UniRef50_I3THN6: Binding-protein-dependent transport systems inner membrane component	27.3767149967
+UniRef50_I3THN6: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.3767149967
+UniRef50_B9KRK1	27.3756333915
+UniRef50_B9KRK1|unclassified	20.3580895318
+UniRef50_B9KRK1|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.0175438596
+UniRef50_B7VKH0: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	27.3714498929
+UniRef50_B7VKH0: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|g__Escherichia.s__Escherichia_coli	27.3714498929
+UniRef50_Q89B04: Phosphoenolpyruvate-protein phosphotransferase	27.3708335183
+UniRef50_Q89B04: Phosphoenolpyruvate-protein phosphotransferase|g__Escherichia.s__Escherichia_coli	27.3708335183
+UniRef50_P38135: Short-chain-fatty-acid--CoA ligase	27.3703087452
+UniRef50_P38135: Short-chain-fatty-acid--CoA ligase|g__Escherichia.s__Escherichia_coli	27.3703087452
+UniRef50_Q9K0I2: Phosphoenolpyruvate synthase	27.3655582867
+UniRef50_Q9K0I2: Phosphoenolpyruvate synthase|g__Escherichia.s__Escherichia_coli	16.4968362372
+UniRef50_Q9K0I2: Phosphoenolpyruvate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8273655352
+UniRef50_Q9K0I2: Phosphoenolpyruvate synthase|g__Acinetobacter.s__Acinetobacter_baumannii	1.5582166208
+UniRef50_Q9K0I2: Phosphoenolpyruvate synthase|g__Neisseria.s__Neisseria_meningitidis	1.4831398935
+UniRef50_A5UNL7: Adhesin-like protein	27.3621486502
+UniRef50_A5UNL7: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.2740674701
+UniRef50_A5UNL7: Adhesin-like protein|unclassified	0.0880811801
+UniRef50_P77309	27.3603495596
+UniRef50_P77309|g__Escherichia.s__Escherichia_coli	27.3603495596
+UniRef50_P39308	27.3592490775
+UniRef50_P39308|g__Escherichia.s__Escherichia_coli	27.3592490775
+UniRef50_P76083: 3-hydroxyadipyl-CoA dehydrogenase	27.3550427235
+UniRef50_P76083: 3-hydroxyadipyl-CoA dehydrogenase|g__Escherichia.s__Escherichia_coli	27.1687924213
+UniRef50_P76083: 3-hydroxyadipyl-CoA dehydrogenase|unclassified	0.1862503021
+UniRef50_D3DZA3: Heavy metal translocating P-type ATPase	27.3548466390
+UniRef50_D3DZA3: Heavy metal translocating P-type ATPase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.3548466390
+UniRef50_Q6GHA3	27.3526077098
+UniRef50_Q6GHA3|g__Staphylococcus.s__Staphylococcus_aureus	27.3526077098
+UniRef50_A5UJF0	27.3452053676
+UniRef50_A5UJF0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.3452053676
+UniRef50_U6EFC2: Helicase	27.3450268171
+UniRef50_U6EFC2: Helicase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.3450268171
+UniRef50_J7R3C7	27.3361004171
+UniRef50_J7R3C7|g__Escherichia.s__Escherichia_coli	27.3361004171
+UniRef50_Q5HQ33	27.3277515484
+UniRef50_Q5HQ33|g__Staphylococcus.s__Staphylococcus_epidermidis	19.6015974728
+UniRef50_Q5HQ33|g__Staphylococcus.s__Staphylococcus_aureus	7.7261540756
+UniRef50_Q9YAS0: UPF0219 protein APE_1873.1	27.3238061877
+UniRef50_Q9YAS0: UPF0219 protein APE_1873.1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.3238061877
+UniRef50_C1DIU1: Response regulator	27.3228910175
+UniRef50_C1DIU1: Response regulator|g__Escherichia.s__Escherichia_coli	27.3228910175
+UniRef50_C5N039	27.3223630850
+UniRef50_C5N039|g__Staphylococcus.s__Staphylococcus_aureus	25.7163125837
+UniRef50_C5N039|unclassified	1.6060505014
+UniRef50_P24554: DNA repair protein RadA	27.3159845559
+UniRef50_P24554: DNA repair protein RadA|g__Escherichia.s__Escherichia_coli	25.0100326604
+UniRef50_P24554: DNA repair protein RadA|g__Neisseria.s__Neisseria_meningitidis	1.5319580874
+UniRef50_P24554: DNA repair protein RadA|g__Acinetobacter.s__Acinetobacter_baumannii	0.7739938080
+UniRef50_B5R8Z8: D-amino acid dehydrogenase-Alanine racemase fusion protein	27.3123110042
+UniRef50_B5R8Z8: D-amino acid dehydrogenase-Alanine racemase fusion protein|g__Escherichia.s__Escherichia_coli	27.1884602165
+UniRef50_B5R8Z8: D-amino acid dehydrogenase-Alanine racemase fusion protein|unclassified	0.1238507877
+UniRef50_A9AC17: L-carnitine dehydratase/bile acid-inducible protein F	27.3072398602
+UniRef50_A9AC17: L-carnitine dehydratase/bile acid-inducible protein F|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.9411196417
+UniRef50_A9AC17: L-carnitine dehydratase/bile acid-inducible protein F|g__Acinetobacter.s__Acinetobacter_baumannii	1.3661202186
+UniRef50_A5UII8: Lipid-A-disaccharide synthase	27.2977953810
+UniRef50_A5UII8: Lipid-A-disaccharide synthase|g__Escherichia.s__Escherichia_coli	27.2977953810
+UniRef50_Q1GIV4: UDP-N-acetylmuramoylalanine--D-glutamate ligase	27.2962498896
+UniRef50_Q1GIV4: UDP-N-acetylmuramoylalanine--D-glutamate ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.2190761206
+UniRef50_Q1GIV4: UDP-N-acetylmuramoylalanine--D-glutamate ligase|unclassified	0.0771737691
+UniRef50_P76396	27.2878312185
+UniRef50_P76396|g__Escherichia.s__Escherichia_coli	26.9558212757
+UniRef50_P76396|unclassified	0.3320099428
+UniRef50_P43790	27.2778947668
+UniRef50_P43790|g__Escherichia.s__Escherichia_coli	27.2778947668
+UniRef50_A5UJC1: Predicted transcription regulator (TetR family)	27.2768026979
+UniRef50_A5UJC1: Predicted transcription regulator (TetR family)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.2768026979
+UniRef50_D1YZX5	27.2762687611
+UniRef50_D1YZX5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.2762687611
+UniRef50_R9SMZ9: Cysteine--tRNA ligase	27.2753823468
+UniRef50_R9SMZ9: Cysteine--tRNA ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.2753823468
+UniRef50_A3PR72: Binding-protein-dependent transport systems inner membrane component	27.2691257527
+UniRef50_A3PR72: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.2691257527
+UniRef50_Q46798	27.2603051864
+UniRef50_Q46798|g__Escherichia.s__Escherichia_coli	27.2603051864
+UniRef50_A0A024L686: Ankyrin-repeat protein A	27.2594736922
+UniRef50_A0A024L686: Ankyrin-repeat protein A|g__Escherichia.s__Escherichia_coli	27.2594736922
+UniRef50_R9SKE9: Radical SAM domain-containing protein	27.2567110023
+UniRef50_R9SKE9: Radical SAM domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.2567110023
+UniRef50_Q8ESU0: Anthranilate synthase component II	27.2560103244
+UniRef50_Q8ESU0: Anthranilate synthase component II|g__Streptococcus.s__Streptococcus_agalactiae	27.2560103244
+UniRef50_P33590: Nickel-binding periplasmic protein	27.2534248369
+UniRef50_P33590: Nickel-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	27.2534248369
+UniRef50_L8E534: Undefined function	27.2400932401
+UniRef50_L8E534: Undefined function|g__Staphylococcus.s__Staphylococcus_epidermidis	27.2400932401
+UniRef50_D3E047: Tetrahydromethanopterin S-methyltransferase subunit C	27.2397912940
+UniRef50_D3E047: Tetrahydromethanopterin S-methyltransferase subunit C|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.2397912940
+UniRef50_P63206: Transcriptional regulator GadE	27.2357274246
+UniRef50_P63206: Transcriptional regulator GadE|g__Escherichia.s__Escherichia_coli	27.2357274246
+UniRef50_P72138: Imidazole glycerol phosphate synthase subunit HisH 2	27.2324880402
+UniRef50_P72138: Imidazole glycerol phosphate synthase subunit HisH 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	27.1016740907
+UniRef50_P72138: Imidazole glycerol phosphate synthase subunit HisH 2|unclassified	0.1308139495
+UniRef50_B9KW49: Nitrilase/cyanide hydratase and apolipoprotein N-acyltransferase	27.2290695769
+UniRef50_B9KW49: Nitrilase/cyanide hydratase and apolipoprotein N-acyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.2290695769
+UniRef50_C9ADA5	27.2281606653
+UniRef50_C9ADA5|g__Streptococcus.s__Streptococcus_mutans	27.2281606653
+UniRef50_P57162: Serine acetyltransferase	27.2264623162
+UniRef50_P57162: Serine acetyltransferase|g__Escherichia.s__Escherichia_coli	27.2264623162
+UniRef50_Q49ZP3	27.2257323546
+UniRef50_Q49ZP3|g__Staphylococcus.s__Staphylococcus_aureus	25.6410256410
+UniRef50_Q49ZP3|unclassified	1.5847067136
+UniRef50_L9TGP7: Exonuclease V subunit beta	27.2209532686
+UniRef50_L9TGP7: Exonuclease V subunit beta|g__Escherichia.s__Escherichia_coli	27.2209532686
+UniRef50_Q8ZN19: Pyridoxine 5'-phosphate synthase	27.2182411520
+UniRef50_Q8ZN19: Pyridoxine 5'-phosphate synthase|g__Escherichia.s__Escherichia_coli	24.9712283251
+UniRef50_Q8ZN19: Pyridoxine 5'-phosphate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1413276231
+UniRef50_Q8ZN19: Pyridoxine 5'-phosphate synthase|unclassified	0.1056852038
+UniRef50_A0KVP8: Na(+)/H(+) antiporter NhaB	27.2129445072
+UniRef50_A0KVP8: Na(+)/H(+) antiporter NhaB|g__Escherichia.s__Escherichia_coli	21.8513546544
+UniRef50_A0KVP8: Na(+)/H(+) antiporter NhaB|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3615898528
+UniRef50_Q9KRP1: Galactokinase	27.2119087949
+UniRef50_Q9KRP1: Galactokinase|g__Escherichia.s__Escherichia_coli	27.0884243283
+UniRef50_Q9KRP1: Galactokinase|unclassified	0.1234844667
+UniRef50_Q9KPK4: Homoserine kinase	27.2039653174
+UniRef50_Q9KPK4: Homoserine kinase|g__Escherichia.s__Escherichia_coli	27.2039653174
+UniRef50_D5B2E2	27.2016584612
+UniRef50_D5B2E2|g__Escherichia.s__Escherichia_coli	27.2016584612
+UniRef50_A7GKB6: Nitrite reductase (NAD(P)H), small subunit	27.1843038762
+UniRef50_A7GKB6: Nitrite reductase (NAD(P)H), small subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	17.2381882014
+UniRef50_A7GKB6: Nitrite reductase (NAD(P)H), small subunit|g__Staphylococcus.s__Staphylococcus_aureus	9.9461156748
+UniRef50_P52126	27.1837833830
+UniRef50_P52126|g__Escherichia.s__Escherichia_coli	27.1837833830
+UniRef50_B3E0I7: 50S ribosomal protein L2	27.1779869598
+UniRef50_B3E0I7: 50S ribosomal protein L2|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.1779869598
+UniRef50_P76114: HTH-type transcriptional regulator McbR	27.1702406468
+UniRef50_P76114: HTH-type transcriptional regulator McbR|g__Escherichia.s__Escherichia_coli	27.1702406468
+UniRef50_A0A023KSM9	27.1702284451
+UniRef50_A0A023KSM9|g__Escherichia.s__Escherichia_coli	27.1702284451
+UniRef50_Q8ZGW9: ATP-dependent dethiobiotin synthetase BioD 1	27.1620202554
+UniRef50_Q8ZGW9: ATP-dependent dethiobiotin synthetase BioD 1|g__Escherichia.s__Escherichia_coli	27.1620202554
+UniRef50_D9QPC0: Alpha/beta hydrolase fold protein	27.1615638150
+UniRef50_D9QPC0: Alpha/beta hydrolase fold protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.1615638150
+UniRef50_P0ACL0: Glycerol-3-phosphate regulon repressor	27.1588758032
+UniRef50_P0ACL0: Glycerol-3-phosphate regulon repressor|g__Escherichia.s__Escherichia_coli	27.1588758032
+UniRef50_H4VIE3	27.1563460836
+UniRef50_H4VIE3|g__Escherichia.s__Escherichia_coli	27.1563460836
+UniRef50_P0ACK8: L-fucose operon activator	27.1551530340
+UniRef50_P0ACK8: L-fucose operon activator|g__Escherichia.s__Escherichia_coli	27.1551530340
+UniRef50_P14081: Selenocysteine-specific elongation factor	27.1543281025
+UniRef50_P14081: Selenocysteine-specific elongation factor|g__Escherichia.s__Escherichia_coli	27.1543281025
+UniRef50_A5UP05	27.1506123266
+UniRef50_A5UP05|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.1506123266
+UniRef50_I0TGY1	27.1374286024
+UniRef50_I0TGY1|g__Staphylococcus.s__Staphylococcus_epidermidis	24.6236778077
+UniRef50_I0TGY1|unclassified	2.5137507947
+UniRef50_B9KLT3	27.1364685210
+UniRef50_B9KLT3|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.0542116275
+UniRef50_B9KLT3|unclassified	1.0822568935
+UniRef50_P0AE07: Multidrug efflux pump subunit AcrA	27.1322089842
+UniRef50_P0AE07: Multidrug efflux pump subunit AcrA|g__Escherichia.s__Escherichia_coli	27.1322089842
+UniRef50_P02930: Outer membrane protein TolC	27.1299378981
+UniRef50_P02930: Outer membrane protein TolC|g__Escherichia.s__Escherichia_coli	27.1299378981
+UniRef50_P0ABW6	27.1298397602
+UniRef50_P0ABW6|g__Escherichia.s__Escherichia_coli	27.1298397602
+UniRef50_Q2NI31: Methionine--tRNA ligase	27.1286675342
+UniRef50_Q2NI31: Methionine--tRNA ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.1286675342
+UniRef50_Q3J218	27.1272965384
+UniRef50_Q3J218|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.1272965384
+UniRef50_Q5HH02: Phosphocarrier protein HPr	27.1272432649
+UniRef50_Q5HH02: Phosphocarrier protein HPr|g__Streptococcus.s__Streptococcus_mutans	16.4611343033
+UniRef50_Q5HH02: Phosphocarrier protein HPr|g__Staphylococcus.s__Staphylococcus_aureus	10.6661089616
+UniRef50_A0A017H872: Response regulator receiver protein	27.1239223800
+UniRef50_A0A017H872: Response regulator receiver protein|unclassified	27.1239223800
+UniRef50_Q8E7K5: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	27.1169755566
+UniRef50_Q8E7K5: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|g__Streptococcus.s__Streptococcus_mutans	23.7174586730
+UniRef50_Q8E7K5: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|g__Streptococcus.s__Streptococcus_agalactiae	3.3395982765
+UniRef50_Q8E7K5: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.0599186071
+UniRef50_Q5HQS7: Flagellar hook-length control protein-related protein	27.1086401521
+UniRef50_Q5HQS7: Flagellar hook-length control protein-related protein|g__Staphylococcus.s__Staphylococcus_epidermidis	27.1086401521
+UniRef50_R4XNN0	27.1070877126
+UniRef50_R4XNN0|unclassified	27.1070877126
+UniRef50_B9KS21: Two component, sigma54 specific, transcriptional regulator, Fis family	27.1053053485
+UniRef50_B9KS21: Two component, sigma54 specific, transcriptional regulator, Fis family|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.1053053485
+UniRef50_F5M1J2: Phage-related integrase	27.1027646588
+UniRef50_F5M1J2: Phage-related integrase|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.1027646588
+UniRef50_A5UMN2	27.0921985816
+UniRef50_A5UMN2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.0921985816
+UniRef50_X3ELX1: Chloride channel protein	27.0827662294
+UniRef50_X3ELX1: Chloride channel protein|g__Escherichia.s__Escherichia_coli	27.0827662294
+UniRef50_A5ULR8: Digeranylgeranylglyceryl phosphate synthase	27.0798916648
+UniRef50_A5ULR8: Digeranylgeranylglyceryl phosphate synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.0798916648
+UniRef50_P45756: Putative general secretion pathway protein A	27.0656101035
+UniRef50_P45756: Putative general secretion pathway protein A|g__Escherichia.s__Escherichia_coli	27.0656101035
+UniRef50_P44797: Adenylosuccinate lyase	27.0599427334
+UniRef50_P44797: Adenylosuccinate lyase|g__Escherichia.s__Escherichia_coli	26.9878071788
+UniRef50_P44797: Adenylosuccinate lyase|unclassified	0.0721355546
+UniRef50_P54901: Stationary phase-inducible protein CsiE	27.0587411831
+UniRef50_P54901: Stationary phase-inducible protein CsiE|g__Escherichia.s__Escherichia_coli	27.0587411831
+UniRef50_F7WZ70: Pyruvate dehydrogenase E1 component	27.0584499826
+UniRef50_F7WZ70: Pyruvate dehydrogenase E1 component|g__Escherichia.s__Escherichia_coli	27.0584499826
+UniRef50_A3PPZ7: Peptidase S14, ClpP	27.0533865974
+UniRef50_A3PPZ7: Peptidase S14, ClpP|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.0533865974
+UniRef50_C5CPN2: Transaldolase	27.0503071385
+UniRef50_C5CPN2: Transaldolase|g__Escherichia.s__Escherichia_coli	27.0503071385
+UniRef50_R9SI06: Chorismate lyase	27.0489645136
+UniRef50_R9SI06: Chorismate lyase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.0489645136
+UniRef50_A9H6E4: Lysine 2,3-aminomutase YodO family protein	27.0483784147
+UniRef50_A9H6E4: Lysine 2,3-aminomutase YodO family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.0483784147
+UniRef50_Q3JEN4: Cytidylate kinase	27.0474319751
+UniRef50_Q3JEN4: Cytidylate kinase|g__Escherichia.s__Escherichia_coli	26.9486515096
+UniRef50_Q3JEN4: Cytidylate kinase|unclassified	0.0987804655
+UniRef50_A3PI46	27.0449175039
+UniRef50_A3PI46|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.0449175039
+UniRef50_P37674: 2,3-diketo-L-gulonate TRAP transporter small permease protein YiaM	27.0443818778
+UniRef50_P37674: 2,3-diketo-L-gulonate TRAP transporter small permease protein YiaM|g__Escherichia.s__Escherichia_coli	27.0443818778
+UniRef50_Q0ST10: Transcriptional regulator, Crp/Fnr family	27.0442408502
+UniRef50_Q0ST10: Transcriptional regulator, Crp/Fnr family|g__Clostridium.s__Clostridium_beijerinckii	27.0442408502
+UniRef50_R9SLI7: DEAD/DEAH box helicase domain-containing protein	27.0415672843
+UniRef50_R9SLI7: DEAD/DEAH box helicase domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.0415672843
+UniRef50_A6TFY7: Putative transport protein KPN78578_40470	27.0399499603
+UniRef50_A6TFY7: Putative transport protein KPN78578_40470|g__Escherichia.s__Escherichia_coli	27.0399499603
+UniRef50_A5UJP7: Chaperonin (TCP-1/cpn60 family), alpha subunit	27.0365610387
+UniRef50_A5UJP7: Chaperonin (TCP-1/cpn60 family), alpha subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.0365610387
+UniRef50_Q4FUD2: 30S ribosomal protein S4	27.0336999463
+UniRef50_Q4FUD2: 30S ribosomal protein S4|g__Escherichia.s__Escherichia_coli	23.8026821757
+UniRef50_Q4FUD2: 30S ribosomal protein S4|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2310177706
+UniRef50_P0AD71: D-alanyl-D-alanine-carboxypeptidase/endopeptidase AmpH	27.0288661313
+UniRef50_P0AD71: D-alanyl-D-alanine-carboxypeptidase/endopeptidase AmpH|g__Escherichia.s__Escherichia_coli	27.0288661313
+UniRef50_V6PIL4: 2-isopropylmalate synthase	27.0283975659
+UniRef50_V6PIL4: 2-isopropylmalate synthase|g__Escherichia.s__Escherichia_coli	27.0283975659
+UniRef50_B9ACR2	27.0270270270
+UniRef50_B9ACR2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.0270270270
+UniRef50_D0K7U6	27.0270270270
+UniRef50_D0K7U6|g__Staphylococcus.s__Staphylococcus_aureus	27.0270270270
+UniRef50_F9YYN2	27.0270270270
+UniRef50_F9YYN2|g__Propionibacterium.s__Propionibacterium_acnes	27.0270270270
+UniRef50_Q8CR48	27.0270270270
+UniRef50_Q8CR48|g__Staphylococcus.s__Staphylococcus_epidermidis	27.0270270270
+UniRef50_P42911: N-acetylgalactosamine permease IID component	27.0234396091
+UniRef50_P42911: N-acetylgalactosamine permease IID component|g__Escherichia.s__Escherichia_coli	27.0234396091
+UniRef50_P0AG95: Protein translocase subunit SecF	27.0173648870
+UniRef50_P0AG95: Protein translocase subunit SecF|g__Escherichia.s__Escherichia_coli	27.0173648870
+UniRef50_A5UJ85: DNA helicase II	27.0129791668
+UniRef50_A5UJ85: DNA helicase II|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.0129791668
+UniRef50_O59439: 30S ribosomal protein S5	27.0105408583
+UniRef50_O59439: 30S ribosomal protein S5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	27.0105408583
+UniRef50_B9KTJ5: RarD protein, DMT superfamily transporter	27.0078824458
+UniRef50_B9KTJ5: RarD protein, DMT superfamily transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	27.0078824458
+UniRef50_Q8CU09	27.0063295916
+UniRef50_Q8CU09|g__Staphylococcus.s__Staphylococcus_epidermidis	27.0063295916
+UniRef50_Q4K4H3: UPF0312 protein PFL_5802	27.0027073104
+UniRef50_Q4K4H3: UPF0312 protein PFL_5802|g__Escherichia.s__Escherichia_coli	27.0027073104
+UniRef50_U5PBB0: Glycine/betaine ABC transporter ATP-binding protein	26.9910846896
+UniRef50_U5PBB0: Glycine/betaine ABC transporter ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	26.9910846896
+UniRef50_Q5PJX5: Ribose import ATP-binding protein RbsA	26.9868635238
+UniRef50_Q5PJX5: Ribose import ATP-binding protein RbsA|g__Escherichia.s__Escherichia_coli	26.9868635238
+UniRef50_D3E3M2: 2-amino-5-formylamino-6-ribosylaminopyrimidin-4(3H)-one 5'-monophosphate deformylase	26.9811836844
+UniRef50_D3E3M2: 2-amino-5-formylamino-6-ribosylaminopyrimidin-4(3H)-one 5'-monophosphate deformylase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.9811836844
+UniRef50_A6TE25: UPF0441 protein KPN78578_33850	26.9809512649
+UniRef50_A6TE25: UPF0441 protein KPN78578_33850|g__Escherichia.s__Escherichia_coli	26.9809512649
+UniRef50_Q8X645: NAD-dependent dihydropyrimidine dehydrogenase subunit PreT	26.9771470774
+UniRef50_Q8X645: NAD-dependent dihydropyrimidine dehydrogenase subunit PreT|g__Escherichia.s__Escherichia_coli	26.9771470774
+UniRef50_Q67FX7: DeoK	26.9764653292
+UniRef50_Q67FX7: DeoK|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.1549717044
+UniRef50_Q67FX7: DeoK|g__Propionibacterium.s__Propionibacterium_acnes	1.8214936248
+UniRef50_K0PKF3	26.9730023407
+UniRef50_K0PKF3|unclassified	26.9730023407
+UniRef50_P10908: Glycerophosphoryl diester phosphodiesterase	26.9712363148
+UniRef50_P10908: Glycerophosphoryl diester phosphodiesterase|g__Escherichia.s__Escherichia_coli	26.9712363148
+UniRef50_P0AG01: Lipopolysaccharide biosynthesis protein WzzE	26.9665870242
+UniRef50_P0AG01: Lipopolysaccharide biosynthesis protein WzzE|g__Escherichia.s__Escherichia_coli	26.9665870242
+UniRef50_Q8CT45	26.9588150020
+UniRef50_Q8CT45|g__Staphylococcus.s__Staphylococcus_epidermidis	23.1045716278
+UniRef50_Q8CT45|unclassified	3.8542433742
+UniRef50_A5UMA2: Predicted endoglucanase (CobN-related)	26.9567977264
+UniRef50_A5UMA2: Predicted endoglucanase (CobN-related)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.9567977264
+UniRef50_A5UJV6	26.9531893387
+UniRef50_A5UJV6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.9531893387
+UniRef50_A5UN28: Biopolymer transport protein	26.9424288743
+UniRef50_A5UN28: Biopolymer transport protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.9424288743
+UniRef50_A1B4U8: Rhs element Vgr protein	26.9423569223
+UniRef50_A1B4U8: Rhs element Vgr protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.6812404969
+UniRef50_A1B4U8: Rhs element Vgr protein|unclassified	0.2611164254
+UniRef50_P77228: Putative inner membrane metabolite transport protein YdfJ	26.9372819307
+UniRef50_P77228: Putative inner membrane metabolite transport protein YdfJ|g__Escherichia.s__Escherichia_coli	26.9372819307
+UniRef50_Q2YYZ8: UPF0060 membrane protein SAB2216c	26.9326320204
+UniRef50_Q2YYZ8: UPF0060 membrane protein SAB2216c|g__Staphylococcus.s__Staphylococcus_aureus	26.9326320204
+UniRef50_B8EJI8	26.9276687039
+UniRef50_B8EJI8|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.9160317838
+UniRef50_B8EJI8|unclassified	0.0116369201
+UniRef50_A1JPN5: Bifunctional polymyxin resistance protein ArnA	26.9249139627
+UniRef50_A1JPN5: Bifunctional polymyxin resistance protein ArnA|g__Escherichia.s__Escherichia_coli	26.2670192258
+UniRef50_A1JPN5: Bifunctional polymyxin resistance protein ArnA|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6578947368
+UniRef50_D3E2Y7: Poly-gamma-glutamate biosynthesis protein	26.9212163548
+UniRef50_D3E2Y7: Poly-gamma-glutamate biosynthesis protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.9212163548
+UniRef50_A6M0D9: Transcriptional regulator, XRE family	26.9170605860
+UniRef50_A6M0D9: Transcriptional regulator, XRE family|g__Clostridium.s__Clostridium_beijerinckii	26.9170605860
+UniRef50_A3PKR7	26.9151244593
+UniRef50_A3PKR7|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.6896951425
+UniRef50_A3PKR7|unclassified	3.2254293168
+UniRef50_B5EXJ7: HMP-PP phosphatase	26.9140481302
+UniRef50_B5EXJ7: HMP-PP phosphatase|g__Escherichia.s__Escherichia_coli	26.8058592987
+UniRef50_B5EXJ7: HMP-PP phosphatase|unclassified	0.1081888315
+UniRef50_F5LYA2: Glycosyltransferase	26.9083315692
+UniRef50_F5LYA2: Glycosyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.9083315692
+UniRef50_D3E357: Cell wall biosynthesis protein Mur ligase family	26.9050501263
+UniRef50_D3E357: Cell wall biosynthesis protein Mur ligase family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.9050501263
+UniRef50_A3PJ45: Histidine kinase	26.9019674163
+UniRef50_A3PJ45: Histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.9019674163
+UniRef50_P77348: Periplasmic murein peptide-binding protein	26.9018731845
+UniRef50_P77348: Periplasmic murein peptide-binding protein|g__Escherichia.s__Escherichia_coli	26.9018731845
+UniRef50_Q8ZIQ1: Protein smp	26.9015456202
+UniRef50_Q8ZIQ1: Protein smp|g__Escherichia.s__Escherichia_coli	26.9015456202
+UniRef50_A7ZU67: Der GTPase-activating protein YihI	26.8994012874
+UniRef50_A7ZU67: Der GTPase-activating protein YihI|g__Escherichia.s__Escherichia_coli	26.8994012874
+UniRef50_P76657: Inner membrane protein YqiJ	26.8991581511
+UniRef50_P76657: Inner membrane protein YqiJ|g__Escherichia.s__Escherichia_coli	26.8991581511
+UniRef50_P33226: Cytochrome c-type protein TorC	26.8854719650
+UniRef50_P33226: Cytochrome c-type protein TorC|g__Escherichia.s__Escherichia_coli	26.8854719650
+UniRef50_Q8CPD5: Truncated transposase	26.8707482993
+UniRef50_Q8CPD5: Truncated transposase|g__Staphylococcus.s__Staphylococcus_epidermidis	26.8707482993
+UniRef50_B7UZX8	26.8701078544
+UniRef50_B7UZX8|g__Pseudomonas.s__Pseudomonas_aeruginosa	25.6452408351
+UniRef50_B7UZX8|unclassified	1.2248670193
+UniRef50_P52043: Propionyl-CoA:succinate CoA transferase	26.8700514803
+UniRef50_P52043: Propionyl-CoA:succinate CoA transferase|g__Escherichia.s__Escherichia_coli	26.8700514803
+UniRef50_P37665: Probable lipoprotein YiaD	26.8578268652
+UniRef50_P37665: Probable lipoprotein YiaD|g__Escherichia.s__Escherichia_coli	26.8578268652
+UniRef50_P45508	26.8552182810
+UniRef50_P45508|g__Escherichia.s__Escherichia_coli	26.8552182810
+UniRef50_P0AF57	26.8403825552
+UniRef50_P0AF57|g__Escherichia.s__Escherichia_coli	26.8403825552
+UniRef50_U3SU15	26.8212235423
+UniRef50_U3SU15|g__Streptococcus.s__Streptococcus_mutans	26.8212235423
+UniRef50_Q8TY21: GTP cyclohydrolase MptA	26.8185082285
+UniRef50_Q8TY21: GTP cyclohydrolase MptA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.8185082285
+UniRef50_A0A023RSQ1: GNAT family acetyltraansferase	26.8068006555
+UniRef50_A0A023RSQ1: GNAT family acetyltraansferase|g__Acinetobacter.s__Acinetobacter_baumannii	26.8068006555
+UniRef50_R9SK19: Histone acetyltransferase ELP3 family	26.8061158187
+UniRef50_R9SK19: Histone acetyltransferase ELP3 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.8061158187
+UniRef50_P77393	26.8038861610
+UniRef50_P77393|g__Escherichia.s__Escherichia_coli	26.8038861610
+UniRef50_P75800: Putative cyclic di-GMP phosphodiesterase YliE	26.8015100345
+UniRef50_P75800: Putative cyclic di-GMP phosphodiesterase YliE|g__Escherichia.s__Escherichia_coli	26.6848558857
+UniRef50_P75800: Putative cyclic di-GMP phosphodiesterase YliE|unclassified	0.1166541487
+UniRef50_P26612: Cytoplasmic alpha-amylase	26.7990382589
+UniRef50_P26612: Cytoplasmic alpha-amylase|g__Escherichia.s__Escherichia_coli	26.7990382589
+UniRef50_A1WTR8: Electron transport complex subunit D	26.7978338191
+UniRef50_A1WTR8: Electron transport complex subunit D|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.7978338191
+UniRef50_Q1R7P6	26.7882142652
+UniRef50_Q1R7P6|g__Escherichia.s__Escherichia_coli	26.4108650620
+UniRef50_Q1R7P6|unclassified	0.3773492032
+UniRef50_P45413: Citrate lyase alpha chain	26.7873064502
+UniRef50_P45413: Citrate lyase alpha chain|g__Escherichia.s__Escherichia_coli	25.4938014381
+UniRef50_P45413: Citrate lyase alpha chain|unclassified	1.2935050120
+UniRef50_R9SJQ0: Cell wall biosynthesis protein Mur ligase family	26.7838916442
+UniRef50_R9SJQ0: Cell wall biosynthesis protein Mur ligase family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.7838916442
+UniRef50_P40727: Flagellar biosynthetic protein FlhB	26.7807082629
+UniRef50_P40727: Flagellar biosynthetic protein FlhB|g__Escherichia.s__Escherichia_coli	26.7807082629
+UniRef50_P76507	26.7789830505
+UniRef50_P76507|g__Escherichia.s__Escherichia_coli	26.7789830505
+UniRef50_B7N5L4: CinA-like protein	26.7786491177
+UniRef50_B7N5L4: CinA-like protein|g__Escherichia.s__Escherichia_coli	26.7786491177
+UniRef50_A5UP28	26.7770002474
+UniRef50_A5UP28|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.7770002474
+UniRef50_Q57975: Putative aminopeptidase MJ0555	26.7717800833
+UniRef50_Q57975: Putative aminopeptidase MJ0555|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.7717800833
+UniRef50_P37755: Phosphomannomutase	26.7715845806
+UniRef50_P37755: Phosphomannomutase|g__Escherichia.s__Escherichia_coli	25.1353860952
+UniRef50_P37755: Phosphomannomutase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6361984853
+UniRef50_P0AA69: Threonine/homoserine exporter RhtA	26.7688617712
+UniRef50_P0AA69: Threonine/homoserine exporter RhtA|g__Escherichia.s__Escherichia_coli	26.7688617712
+UniRef50_T1ZVD1: Two-component system response regulator	26.7648128782
+UniRef50_T1ZVD1: Two-component system response regulator|g__Streptococcus.s__Streptococcus_mutans	26.7648128782
+UniRef50_C6SU00	26.7605223792
+UniRef50_C6SU00|g__Streptococcus.s__Streptococcus_mutans	26.7605223792
+UniRef50_B1JXR9: 3-phosphoshikimate 1-carboxyvinyltransferase	26.7560264221
+UniRef50_B1JXR9: 3-phosphoshikimate 1-carboxyvinyltransferase|g__Escherichia.s__Escherichia_coli	26.7560264221
+UniRef50_O07165: tRNA-splicing endonuclease	26.7553790777
+UniRef50_O07165: tRNA-splicing endonuclease|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.7553790777
+UniRef50_U5NV97	26.7532327882
+UniRef50_U5NV97|g__Staphylococcus.s__Staphylococcus_epidermidis	20.3683751475
+UniRef50_U5NV97|g__Staphylococcus.s__Staphylococcus_aureus	5.6497175141
+UniRef50_U5NV97|unclassified	0.7351401266
+UniRef50_P41052: Membrane-bound lytic murein transglycosylase B	26.7520941565
+UniRef50_P41052: Membrane-bound lytic murein transglycosylase B|g__Escherichia.s__Escherichia_coli	26.7520941565
+UniRef50_P30011: Nicotinate-nucleotide pyrophosphorylase [carboxylating]	26.7497666152
+UniRef50_P30011: Nicotinate-nucleotide pyrophosphorylase [carboxylating]|g__Escherichia.s__Escherichia_coli	26.7497666152
+UniRef50_Q0TKF3: Copper-transporting P-type ATPase	26.7473217757
+UniRef50_Q0TKF3: Copper-transporting P-type ATPase|g__Escherichia.s__Escherichia_coli	26.7473217757
+UniRef50_Q6D8C5: tRNA(Ile)-lysidine synthase	26.7471573397
+UniRef50_Q6D8C5: tRNA(Ile)-lysidine synthase|g__Escherichia.s__Escherichia_coli	26.7471573397
+UniRef50_P77196: Putative outer membrane usher protein YfcU	26.7411366880
+UniRef50_P77196: Putative outer membrane usher protein YfcU|g__Escherichia.s__Escherichia_coli	26.7411366880
+UniRef50_P15977: 4-alpha-glucanotransferase	26.7400853402
+UniRef50_P15977: 4-alpha-glucanotransferase|g__Escherichia.s__Escherichia_coli	26.7400853402
+UniRef50_I4Q017	26.7395102967
+UniRef50_I4Q017|g__Escherichia.s__Escherichia_coli	26.4652725424
+UniRef50_I4Q017|unclassified	0.2742377543
+UniRef50_C0QJ00: Phosphomethylpyrimidine synthase	26.7342369527
+UniRef50_C0QJ00: Phosphomethylpyrimidine synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.7342369527
+UniRef50_P0AAA2: Inner membrane protein YagU	26.7300899690
+UniRef50_P0AAA2: Inner membrane protein YagU|g__Escherichia.s__Escherichia_coli	26.7300899690
+UniRef50_O26914: Probable threonylcarbamoyladenosine tRNA methylthiotransferase	26.7247458772
+UniRef50_O26914: Probable threonylcarbamoyladenosine tRNA methylthiotransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.7247458772
+UniRef50_P0ABI1: ATP-dependent Clp protease ATP-binding subunit ClpA	26.7234404422
+UniRef50_P0ABI1: ATP-dependent Clp protease ATP-binding subunit ClpA|g__Escherichia.s__Escherichia_coli	24.6894595217
+UniRef50_P0ABI1: ATP-dependent Clp protease ATP-binding subunit ClpA|g__Neisseria.s__Neisseria_meningitidis	1.5928693192
+UniRef50_P0ABI1: ATP-dependent Clp protease ATP-binding subunit ClpA|g__Acinetobacter.s__Acinetobacter_baumannii	0.4411116012
+UniRef50_C6SQ46: Putative low temperature requirement A protein	26.7178704928
+UniRef50_C6SQ46: Putative low temperature requirement A protein|g__Streptococcus.s__Streptococcus_mutans	26.7178704928
+UniRef50_P37690: Murein hydrolase activator EnvC	26.7060022624
+UniRef50_P37690: Murein hydrolase activator EnvC|g__Escherichia.s__Escherichia_coli	26.7060022624
+UniRef50_Q8XCJ6: Glucose-6-phosphate 1-dehydrogenase	26.7028566312
+UniRef50_Q8XCJ6: Glucose-6-phosphate 1-dehydrogenase|g__Escherichia.s__Escherichia_coli	19.2815074918
+UniRef50_Q8XCJ6: Glucose-6-phosphate 1-dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1078030083
+UniRef50_Q8XCJ6: Glucose-6-phosphate 1-dehydrogenase|unclassified	1.3135461311
+UniRef50_Q3J1F0	26.7010560382
+UniRef50_Q3J1F0|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.0914538822
+UniRef50_Q3J1F0|unclassified	3.6096021560
+UniRef50_P77165: Putative xanthine dehydrogenase YagT iron-sulfur-binding subunit	26.6973041617
+UniRef50_P77165: Putative xanthine dehydrogenase YagT iron-sulfur-binding subunit|g__Escherichia.s__Escherichia_coli	26.6973041617
+UniRef50_B9KSE8: FAD dependent oxidoreductase	26.6925757412
+UniRef50_B9KSE8: FAD dependent oxidoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.6925757412
+UniRef50_D3DZ74: UPF0288 protein mru_1774	26.6924311240
+UniRef50_D3DZ74: UPF0288 protein mru_1774|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.6924311240
+UniRef50_U2YP81: L-proline glycine betaine binding ABC transporter protein ProX	26.6922986807
+UniRef50_U2YP81: L-proline glycine betaine binding ABC transporter protein ProX|unclassified	26.6922986807
+UniRef50_Q8CRK5: UPF0457 protein SE_1763	26.6914921272
+UniRef50_Q8CRK5: UPF0457 protein SE_1763|g__Staphylococcus.s__Staphylococcus_epidermidis	26.6914921272
+UniRef50_P75788: Inner membrane protein YbiR	26.6896410218
+UniRef50_P75788: Inner membrane protein YbiR|g__Escherichia.s__Escherichia_coli	26.6896410218
+UniRef50_Q04E66: 30S ribosomal protein S4	26.6889225858
+UniRef50_Q04E66: 30S ribosomal protein S4|g__Streptococcus.s__Streptococcus_mutans	18.2194962625
+UniRef50_Q04E66: 30S ribosomal protein S4|g__Streptococcus.s__Streptococcus_agalactiae	8.4694263233
+UniRef50_O26278: tRNA-guanine(15) transglycosylase	26.6887248766
+UniRef50_O26278: tRNA-guanine(15) transglycosylase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.6887248766
+UniRef50_A0A023KET7: Mannitol-1-phosphate 5-dehydrogenase	26.6797818947
+UniRef50_A0A023KET7: Mannitol-1-phosphate 5-dehydrogenase|g__Escherichia.s__Escherichia_coli	23.2558139535
+UniRef50_A0A023KET7: Mannitol-1-phosphate 5-dehydrogenase|unclassified	3.4239679412
+UniRef50_D3DZ29: GTP-binding protein	26.6791752954
+UniRef50_D3DZ29: GTP-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.6791752954
+UniRef50_O26346: Histidine--tRNA ligase	26.6707162510
+UniRef50_O26346: Histidine--tRNA ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.6707162510
+UniRef50_P76034	26.6697450600
+UniRef50_P76034|g__Escherichia.s__Escherichia_coli	26.6697450600
+UniRef50_A3MND6: Bifunctional protein GlmU	26.6675897264
+UniRef50_A3MND6: Bifunctional protein GlmU|g__Escherichia.s__Escherichia_coli	22.8582134604
+UniRef50_A3MND6: Bifunctional protein GlmU|g__Acinetobacter.s__Acinetobacter_baumannii	2.0900146170
+UniRef50_A3MND6: Bifunctional protein GlmU|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7193616490
+UniRef50_Q9P2T1: GMP reductase 2	26.6665518561
+UniRef50_Q9P2T1: GMP reductase 2|g__Escherichia.s__Escherichia_coli	26.6665518561
+UniRef50_P40131: Flagella basal body P-ring formation protein FlgA	26.6664609419
+UniRef50_P40131: Flagella basal body P-ring formation protein FlgA|g__Escherichia.s__Escherichia_coli	26.6664609419
+UniRef50_B2VIE6: UPF0294 protein ETA_26410	26.6646885786
+UniRef50_B2VIE6: UPF0294 protein ETA_26410|g__Escherichia.s__Escherichia_coli	26.6646885786
+UniRef50_P37924: Outer membrane usher protein FimD	26.6622900710
+UniRef50_P37924: Outer membrane usher protein FimD|g__Escherichia.s__Escherichia_coli	26.6622900710
+UniRef50_P42914: Probable fimbrial chaperone YraI	26.6610540377
+UniRef50_P42914: Probable fimbrial chaperone YraI|g__Escherichia.s__Escherichia_coli	26.6610540377
+UniRef50_Q5M103: ATP synthase epsilon chain	26.6575648124
+UniRef50_Q5M103: ATP synthase epsilon chain|g__Streptococcus.s__Streptococcus_mutans	26.6575648124
+UniRef50_Q8KTE1: Fumarate hydratase class II	26.6572762339
+UniRef50_Q8KTE1: Fumarate hydratase class II|g__Escherichia.s__Escherichia_coli	22.9180634348
+UniRef50_Q8KTE1: Fumarate hydratase class II|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6285033699
+UniRef50_Q8KTE1: Fumarate hydratase class II|unclassified	0.1107094292
+UniRef50_K0LJV9	26.6558377537
+UniRef50_K0LJV9|g__Staphylococcus.s__Staphylococcus_aureus	19.3941238041
+UniRef50_K0LJV9|g__Staphylococcus.s__Staphylococcus_epidermidis	4.6511627907
+UniRef50_K0LJV9|unclassified	2.6105511590
+UniRef50_Q8X844: Fructoselysine 6-phosphate deglycase	26.6477336149
+UniRef50_Q8X844: Fructoselysine 6-phosphate deglycase|g__Escherichia.s__Escherichia_coli	25.7009020275
+UniRef50_Q8X844: Fructoselysine 6-phosphate deglycase|unclassified	0.9468315874
+UniRef50_Q8XCN6: Long-chain fatty acid transport protein	26.6439336683
+UniRef50_Q8XCN6: Long-chain fatty acid transport protein|g__Escherichia.s__Escherichia_coli	26.6439336683
+UniRef50_A3PMA4	26.6345869646
+UniRef50_A3PMA4|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.0493058539
+UniRef50_A3PMA4|unclassified	1.5852811107
+UniRef50_V5XTH0: HIT family protein	26.6306344346
+UniRef50_V5XTH0: HIT family protein|g__Streptococcus.s__Streptococcus_mutans	26.6306344346
+UniRef50_Q8CTG6	26.6283783316
+UniRef50_Q8CTG6|unclassified	14.5801855605
+UniRef50_Q8CTG6|g__Staphylococcus.s__Staphylococcus_epidermidis	12.0481927711
+UniRef50_P22099: Anthranilate synthase component 1	26.6265560137
+UniRef50_P22099: Anthranilate synthase component 1|g__Escherichia.s__Escherichia_coli	26.5781031047
+UniRef50_P22099: Anthranilate synthase component 1|unclassified	0.0484529090
+UniRef50_A5ULK1: Adenine deaminase	26.6265235689
+UniRef50_A5ULK1: Adenine deaminase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.6265235689
+UniRef50_A0A058T0F9: FKBP-type peptidyl-prolyl cis-trans isomerase	26.6255680408
+UniRef50_A0A058T0F9: FKBP-type peptidyl-prolyl cis-trans isomerase|g__Escherichia.s__Escherichia_coli	26.6255680408
+UniRef50_P0AAS6	26.6216770607
+UniRef50_P0AAS6|g__Escherichia.s__Escherichia_coli	25.3789016096
+UniRef50_P0AAS6|unclassified	1.2427754511
+UniRef50_A8Z3B2	26.6205704408
+UniRef50_A8Z3B2|g__Staphylococcus.s__Staphylococcus_aureus	26.6205704408
+UniRef50_P39280: L-lysine 2,3-aminomutase	26.6192961959
+UniRef50_P39280: L-lysine 2,3-aminomutase|g__Escherichia.s__Escherichia_coli	26.6192961959
+UniRef50_P76234	26.6185237823
+UniRef50_P76234|g__Escherichia.s__Escherichia_coli	25.1629197066
+UniRef50_P76234|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4556040757
+UniRef50_Q82TB9: 3-dehydroquinate synthase	26.6163753605
+UniRef50_Q82TB9: 3-dehydroquinate synthase|g__Escherichia.s__Escherichia_coli	23.5504473358
+UniRef50_Q82TB9: 3-dehydroquinate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5576323988
+UniRef50_Q82TB9: 3-dehydroquinate synthase|g__Acinetobacter.s__Acinetobacter_baumannii	1.5082956259
+UniRef50_H4PDP4: Integrase core domain protein	26.6157635123
+UniRef50_H4PDP4: Integrase core domain protein|g__Escherichia.s__Escherichia_coli	26.6157635123
+UniRef50_P76193: Probable L,D-transpeptidase YnhG	26.6150805163
+UniRef50_P76193: Probable L,D-transpeptidase YnhG|g__Escherichia.s__Escherichia_coli	26.5160628537
+UniRef50_P76193: Probable L,D-transpeptidase YnhG|unclassified	0.0990176626
+UniRef50_UPI0003814F56: hypothetical protein, partial	26.6119206122
+UniRef50_UPI0003814F56: hypothetical protein, partial|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.9797228017
+UniRef50_UPI0003814F56: hypothetical protein, partial|unclassified	0.6321978105
+UniRef50_Q3J1E2	26.6106494446
+UniRef50_Q3J1E2|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.8357155618
+UniRef50_Q3J1E2|unclassified	3.7749338828
+UniRef50_C3P501: ATP phosphoribosyltransferase	26.6086302366
+UniRef50_C3P501: ATP phosphoribosyltransferase|g__Streptococcus.s__Streptococcus_mutans	26.1637539160
+UniRef50_C3P501: ATP phosphoribosyltransferase|unclassified	0.4448763206
+UniRef50_P39365: Putative permease IIC component	26.6071309341
+UniRef50_P39365: Putative permease IIC component|g__Escherichia.s__Escherichia_coli	26.6071309341
+UniRef50_P15005: 5-methylcytosine-specific restriction enzyme B	26.6049453480
+UniRef50_P15005: 5-methylcytosine-specific restriction enzyme B|g__Escherichia.s__Escherichia_coli	26.6049453480
+UniRef50_Q3IVG7: Transcriptional regulator, AraC family with amidase-like domain	26.6031984265
+UniRef50_Q3IVG7: Transcriptional regulator, AraC family with amidase-like domain|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.6031984265
+UniRef50_A5UMD8	26.6004407565
+UniRef50_A5UMD8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.0662527223
+UniRef50_A5UMD8|unclassified	0.5341880342
+UniRef50_UPI000364A211: hypothetical protein	26.6003945825
+UniRef50_UPI000364A211: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.3055769995
+UniRef50_UPI000364A211: hypothetical protein|unclassified	1.2948175830
+UniRef50_D3E3Q9: 2-dehydropantoate 2-reductase	26.5997344490
+UniRef50_D3E3Q9: 2-dehydropantoate 2-reductase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.5997344490
+UniRef50_P39264: Fimbrin-like protein FimI	26.5991738230
+UniRef50_P39264: Fimbrin-like protein FimI|g__Escherichia.s__Escherichia_coli	26.5991738230
+UniRef50_F0T7Q3: 6-phospho 3-hexuloisomerase	26.5979501691
+UniRef50_F0T7Q3: 6-phospho 3-hexuloisomerase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.5979501691
+UniRef50_P39396: Inner membrane protein YjiY	26.5899916948
+UniRef50_P39396: Inner membrane protein YjiY|g__Escherichia.s__Escherichia_coli	26.5899916948
+UniRef50_F4M1U9	26.5830249794
+UniRef50_F4M1U9|g__Escherichia.s__Escherichia_coli	26.5830249794
+UniRef50_R9SKC9: CoB--CoM heterodisulfide reductase subunit C HdrC1	26.5816638485
+UniRef50_R9SKC9: CoB--CoM heterodisulfide reductase subunit C HdrC1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.5816638485
+UniRef50_A4WQ31: Signal transduction histidine kinase	26.5791961725
+UniRef50_A4WQ31: Signal transduction histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.5791961725
+UniRef50_Q59409: RNA polymerase sigma factor RpoS	26.5787315210
+UniRef50_Q59409: RNA polymerase sigma factor RpoS|g__Escherichia.s__Escherichia_coli	26.5787315210
+UniRef50_UPI0003B68328: mandelate racemase, partial	26.5689172629
+UniRef50_UPI0003B68328: mandelate racemase, partial|unclassified	26.5689172629
+UniRef50_D4MD52: ABC-type proline/glycine betaine transport system, permease component	26.5680373108
+UniRef50_D4MD52: ABC-type proline/glycine betaine transport system, permease component|g__Streptococcus.s__Streptococcus_mutans	26.5680373108
+UniRef50_F0P3F2	26.5624602761
+UniRef50_F0P3F2|g__Staphylococcus.s__Staphylococcus_epidermidis	17.4169426190
+UniRef50_F0P3F2|g__Staphylococcus.s__Staphylococcus_aureus	9.1455176571
+UniRef50_I6U2C8: Transcriptional regulator	26.5622555920
+UniRef50_I6U2C8: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	26.5622555920
+UniRef50_P76037: Putrescine importer PuuP	26.5617262565
+UniRef50_P76037: Putrescine importer PuuP|g__Escherichia.s__Escherichia_coli	22.5300390195
+UniRef50_P76037: Putrescine importer PuuP|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0030374133
+UniRef50_P76037: Putrescine importer PuuP|unclassified	0.0286498237
+UniRef50_A5ULV6: Ribonuclease HII	26.5490743481
+UniRef50_A5ULV6: Ribonuclease HII|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.5490743481
+UniRef50_B6ISU5: 1-deoxy-D-xylulose 5-phosphate reductoisomerase	26.5490402046
+UniRef50_B6ISU5: 1-deoxy-D-xylulose 5-phosphate reductoisomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.5490402046
+UniRef50_P75820: N-acetylmuramoyl-L-alanine amidase AmiD	26.5479116152
+UniRef50_P75820: N-acetylmuramoyl-L-alanine amidase AmiD|g__Escherichia.s__Escherichia_coli	26.5479116152
+UniRef50_A5UNV8	26.5454517886
+UniRef50_A5UNV8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.5454517886
+UniRef50_A3PPD1: Tripartite ATP-independent periplasmic transporter, DctQ component	26.5436222144
+UniRef50_A3PPD1: Tripartite ATP-independent periplasmic transporter, DctQ component|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.2521634194
+UniRef50_A3PPD1: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	9.2914587949
+UniRef50_A5ULT4: Adhesin-like protein	26.5362973601
+UniRef50_A5ULT4: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.5362973601
+UniRef50_A4WZC5: Phosphoribosylanthranilate isomerase-like protein	26.5344934816
+UniRef50_A4WZC5: Phosphoribosylanthranilate isomerase-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.5344934816
+UniRef50_A9AF70: Urease subunit gamma	26.5287451570
+UniRef50_A9AF70: Urease subunit gamma|g__Staphylococcus.s__Staphylococcus_aureus	15.8381660076
+UniRef50_A9AF70: Urease subunit gamma|g__Staphylococcus.s__Staphylococcus_epidermidis	10.2318522008
+UniRef50_A9AF70: Urease subunit gamma|unclassified	0.4587269487
+UniRef50_O67078: 3-isopropylmalate dehydratase large subunit	26.5252097843
+UniRef50_O67078: 3-isopropylmalate dehydratase large subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.3585983415
+UniRef50_O67078: 3-isopropylmalate dehydratase large subunit|g__Clostridium.s__Clostridium_beijerinckii	3.1666114428
+UniRef50_R9SH54: Oxidoreductase aldo/keto reductase family	26.5205815141
+UniRef50_R9SH54: Oxidoreductase aldo/keto reductase family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.5205815141
+UniRef50_K8NX36	26.5183653809
+UniRef50_K8NX36|g__Staphylococcus.s__Staphylococcus_aureus	26.5183653809
+UniRef50_P59302: Acetylglutamate kinase	26.5179349268
+UniRef50_P59302: Acetylglutamate kinase|g__Escherichia.s__Escherichia_coli	26.5179349268
+UniRef50_F6C514: Transcriptional regulator, DeoR family	26.5101717232
+UniRef50_F6C514: Transcriptional regulator, DeoR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.5101717232
+UniRef50_Z9EMY6	26.5100595994
+UniRef50_Z9EMY6|g__Staphylococcus.s__Staphylococcus_aureus	26.5100595994
+UniRef50_D3E1K6: Cytidyltransferase-related domain-containing protein	26.5100269547
+UniRef50_D3E1K6: Cytidyltransferase-related domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.5100269547
+UniRef50_F9I1V8	26.5071661220
+UniRef50_F9I1V8|g__Escherichia.s__Escherichia_coli	26.5071661220
+UniRef50_O27830	26.5071566311
+UniRef50_O27830|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.5071566311
+UniRef50_P43319	26.5055541719
+UniRef50_P43319|g__Escherichia.s__Escherichia_coli	26.5055541719
+UniRef50_A5ULI2: tRNA pseudouridine synthase A	26.5025825738
+UniRef50_A5ULI2: tRNA pseudouridine synthase A|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.5025825738
+UniRef50_H8HC20: Rhodanese-like domain protein	26.5011763136
+UniRef50_H8HC20: Rhodanese-like domain protein|g__Streptococcus.s__Streptococcus_mutans	26.2646268171
+UniRef50_H8HC20: Rhodanese-like domain protein|unclassified	0.2365494965
+UniRef50_V6ECI2: Dihydroxy-acid dehydratase	26.4989818413
+UniRef50_V6ECI2: Dihydroxy-acid dehydratase|g__Escherichia.s__Escherichia_coli	26.4989818413
+UniRef50_P24252	26.4945908210
+UniRef50_P24252|g__Escherichia.s__Escherichia_coli	26.1694525210
+UniRef50_P24252|unclassified	0.3251383001
+UniRef50_B9KS20: Sulfate transporter	26.4908531350
+UniRef50_B9KS20: Sulfate transporter|unclassified	26.4908531350
+UniRef50_V6PAD8: Putative peptidase, aminobenzoyl-glutamate utilization protein (Fragment)	26.4871126791
+UniRef50_V6PAD8: Putative peptidase, aminobenzoyl-glutamate utilization protein (Fragment)|g__Escherichia.s__Escherichia_coli	26.4871126791
+UniRef50_P77376	26.4817489762
+UniRef50_P77376|g__Escherichia.s__Escherichia_coli	26.1289269908
+UniRef50_P77376|unclassified	0.3528219854
+UniRef50_P76046	26.4783117030
+UniRef50_P76046|g__Escherichia.s__Escherichia_coli	26.4783117030
+UniRef50_A8AHA1: Vitamin B12 import ATP-binding protein BtuD	26.4777557571
+UniRef50_A8AHA1: Vitamin B12 import ATP-binding protein BtuD|g__Escherichia.s__Escherichia_coli	26.4777557571
+UniRef50_O27434: CoB--CoM heterodisulfide reductase iron-sulfur subunit A	26.4759322662
+UniRef50_O27434: CoB--CoM heterodisulfide reductase iron-sulfur subunit A|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.4759322662
+UniRef50_M9RBV2	26.4737564507
+UniRef50_M9RBV2|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.4737564507
+UniRef50_Q60182: Glutamine synthetase	26.4663905929
+UniRef50_Q60182: Glutamine synthetase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.3535698235
+UniRef50_Q60182: Glutamine synthetase|unclassified	0.1128207694
+UniRef50_R9SIK3: 2'-5' RNA ligase LigT	26.4648464352
+UniRef50_R9SIK3: 2'-5' RNA ligase LigT|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.4648464352
+UniRef50_Q46927: tRNA threonylcarbamoyladenosine dehydratase	26.4574456972
+UniRef50_Q46927: tRNA threonylcarbamoyladenosine dehydratase|g__Escherichia.s__Escherichia_coli	26.4574456972
+UniRef50_Q0BUB7: Succinyl-diaminopimelate desuccinylase	26.4536716141
+UniRef50_Q0BUB7: Succinyl-diaminopimelate desuccinylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.4536716141
+UniRef50_P52111: Glycerol-3-phosphate dehydrogenase	26.4491574102
+UniRef50_P52111: Glycerol-3-phosphate dehydrogenase|g__Escherichia.s__Escherichia_coli	25.1094643143
+UniRef50_P52111: Glycerol-3-phosphate dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2176570277
+UniRef50_P52111: Glycerol-3-phosphate dehydrogenase|unclassified	0.1220360682
+UniRef50_R7PW09: CAAX amino protease family protein	26.4448964841
+UniRef50_R7PW09: CAAX amino protease family protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.4448964841
+UniRef50_Q1REE6	26.4419890841
+UniRef50_Q1REE6|g__Escherichia.s__Escherichia_coli	26.4419890841
+UniRef50_A5UMY5: Diphthamide synthase, subunit DPH2	26.4382041815
+UniRef50_A5UMY5: Diphthamide synthase, subunit DPH2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.4382041815
+UniRef50_Q8ZYR9: DNA repair and recombination protein RadA	26.4356154226
+UniRef50_Q8ZYR9: DNA repair and recombination protein RadA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.4356154226
+UniRef50_P0AEA4: Curli production assembly/transport component CsgG	26.4323546307
+UniRef50_P0AEA4: Curli production assembly/transport component CsgG|g__Escherichia.s__Escherichia_coli	26.4323546307
+UniRef50_P75728: 2-octaprenyl-3-methyl-6-methoxy-1,4-benzoquinol hydroxylase	26.4251702092
+UniRef50_P75728: 2-octaprenyl-3-methyl-6-methoxy-1,4-benzoquinol hydroxylase|g__Escherichia.s__Escherichia_coli	26.4251702092
+UniRef50_P0A2C8: Spermidine/putrescine-binding periplasmic protein	26.4192899538
+UniRef50_P0A2C8: Spermidine/putrescine-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	26.4192899538
+UniRef50_P0AF27: Nitrate reductase molybdenum cofactor assembly chaperone NarJ	26.4174171628
+UniRef50_P0AF27: Nitrate reductase molybdenum cofactor assembly chaperone NarJ|g__Escherichia.s__Escherichia_coli	26.4174171628
+UniRef50_P0AFC1: Dihydroneopterin triphosphate pyrophosphatase	26.4133899739
+UniRef50_P0AFC1: Dihydroneopterin triphosphate pyrophosphatase|g__Escherichia.s__Escherichia_coli	26.4133899739
+UniRef50_P52143	26.4130488546
+UniRef50_P52143|g__Escherichia.s__Escherichia_coli	26.4130488546
+UniRef50_A5ULE5: Predicted transcriptional regulator	26.4004535715
+UniRef50_A5ULE5: Predicted transcriptional regulator|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.4004535715
+UniRef50_Q7NK15: Glr1665 protein	26.4002529625
+UniRef50_Q7NK15: Glr1665 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.6646210124
+UniRef50_Q7NK15: Glr1665 protein|unclassified	0.7356319501
+UniRef50_A5VYC6: GTPase Obg	26.3975813836
+UniRef50_A5VYC6: GTPase Obg|g__Escherichia.s__Escherichia_coli	26.3975813836
+UniRef50_B9KX06: Transcriptional regulator, GntR family	26.3965498109
+UniRef50_B9KX06: Transcriptional regulator, GntR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.3965498109
+UniRef50_P39385	26.3931894334
+UniRef50_P39385|g__Escherichia.s__Escherichia_coli	26.3931894334
+UniRef50_Q3IZ97: Transglutaminase-like domain protein	26.3912329816
+UniRef50_Q3IZ97: Transglutaminase-like domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.1790090723
+UniRef50_Q3IZ97: Transglutaminase-like domain protein|unclassified	0.2122239094
+UniRef50_Q6D6A4: UPF0176 protein ECA1781	26.3912071946
+UniRef50_Q6D6A4: UPF0176 protein ECA1781|g__Escherichia.s__Escherichia_coli	26.3912071946
+UniRef50_P23878: Ferric enterobactin transport ATP-binding protein FepC	26.3880062144
+UniRef50_P23878: Ferric enterobactin transport ATP-binding protein FepC|g__Escherichia.s__Escherichia_coli	26.3880062144
+UniRef50_S5YYL7: NLP/P60 protein	26.3874293946
+UniRef50_S5YYL7: NLP/P60 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.3874293946
+UniRef50_A5IPS9: Phage envelope protein-like protein	26.3860493512
+UniRef50_A5IPS9: Phage envelope protein-like protein|g__Staphylococcus.s__Staphylococcus_aureus	26.3860493512
+UniRef50_P0AA48: Low-affinity putrescine importer PlaP	26.3854994300
+UniRef50_P0AA48: Low-affinity putrescine importer PlaP|g__Escherichia.s__Escherichia_coli	25.3372814006
+UniRef50_P0AA48: Low-affinity putrescine importer PlaP|g__Acinetobacter.s__Acinetobacter_baumannii	1.0482180294
+UniRef50_V5SUT2: Multidrug ABC transporter substrate-binding protein	26.3785383469
+UniRef50_V5SUT2: Multidrug ABC transporter substrate-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	26.3785383469
+UniRef50_Q0TD44: L(+)-tartrate dehydratase subunit beta	26.3745589279
+UniRef50_Q0TD44: L(+)-tartrate dehydratase subunit beta|g__Escherichia.s__Escherichia_coli	25.1782681359
+UniRef50_Q0TD44: L(+)-tartrate dehydratase subunit beta|unclassified	1.1962907920
+UniRef50_P78271	26.3636673652
+UniRef50_P78271|g__Escherichia.s__Escherichia_coli	26.3636673652
+UniRef50_A5UN26: Adhesin-like protein	26.3631830891
+UniRef50_A5UN26: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.3631830891
+UniRef50_J0L248	26.3630038423
+UniRef50_J0L248|g__Staphylococcus.s__Staphylococcus_aureus	26.3630038423
+UniRef50_T1YA11	26.3626190064
+UniRef50_T1YA11|g__Staphylococcus.s__Staphylococcus_aureus	24.0871217480
+UniRef50_T1YA11|unclassified	2.2754972584
+UniRef50_D2ZS60	26.3561063946
+UniRef50_D2ZS60|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.3561063946
+UniRef50_Q1C1E0: Glycogen debranching enzyme	26.3429559220
+UniRef50_Q1C1E0: Glycogen debranching enzyme|g__Escherichia.s__Escherichia_coli	26.0827434503
+UniRef50_Q1C1E0: Glycogen debranching enzyme|unclassified	0.2602124717
+UniRef50_Q57565: Signal recognition particle 54 kDa protein	26.3320175222
+UniRef50_Q57565: Signal recognition particle 54 kDa protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.3320175222
+UniRef50_P0AER2: Glycerol uptake facilitator protein	26.3306825211
+UniRef50_P0AER2: Glycerol uptake facilitator protein|g__Escherichia.s__Escherichia_coli	13.5230752252
+UniRef50_P0AER2: Glycerol uptake facilitator protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.8076072959
+UniRef50_M4VIT1: MotA/TolQ/ExbB proton channel family protein	26.3290512150
+UniRef50_M4VIT1: MotA/TolQ/ExbB proton channel family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.3290512150
+UniRef50_O27842: Conserved protein	26.3262401392
+UniRef50_O27842: Conserved protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.3262401392
+UniRef50_P30140: 2-iminoacetate synthase	26.3238401441
+UniRef50_P30140: 2-iminoacetate synthase|g__Escherichia.s__Escherichia_coli	24.4101674201
+UniRef50_P30140: 2-iminoacetate synthase|unclassified	1.9136727240
+UniRef50_A5UM67: Sugar fermentation stimulation protein homolog	26.3234923627
+UniRef50_A5UM67: Sugar fermentation stimulation protein homolog|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.3234923627
+UniRef50_P96611: Thioredoxin-like protein YdbP	26.3144243304
+UniRef50_P96611: Thioredoxin-like protein YdbP|g__Staphylococcus.s__Staphylococcus_epidermidis	26.3144243304
+UniRef50_P64566	26.2962712526
+UniRef50_P64566|g__Escherichia.s__Escherichia_coli	26.2962712526
+UniRef50_O26565	26.2936608710
+UniRef50_O26565|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.2936608710
+UniRef50_Q1C165: Phosphopentomutase	26.2902085785
+UniRef50_Q1C165: Phosphopentomutase|g__Escherichia.s__Escherichia_coli	25.3234469963
+UniRef50_Q1C165: Phosphopentomutase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.8841732980
+UniRef50_Q1C165: Phosphopentomutase|unclassified	0.0825882842
+UniRef50_U3SR69: Pyrroline-5-carboxylate reductase	26.2865090134
+UniRef50_U3SR69: Pyrroline-5-carboxylate reductase|g__Streptococcus.s__Streptococcus_mutans	26.2865090134
+UniRef50_P22525: Probable L,D-transpeptidase YcbB	26.2782263723
+UniRef50_P22525: Probable L,D-transpeptidase YcbB|g__Escherichia.s__Escherichia_coli	26.2782263723
+UniRef50_P76269	26.2754421351
+UniRef50_P76269|g__Escherichia.s__Escherichia_coli	26.2754421351
+UniRef50_P23849: Trk system potassium uptake protein TrkG	26.2735759740
+UniRef50_P23849: Trk system potassium uptake protein TrkG|g__Escherichia.s__Escherichia_coli	26.2735759740
+UniRef50_B4TBG4: UDP-4-amino-4-deoxy-L-arabinose--oxoglutarate aminotransferase	26.2696930090
+UniRef50_B4TBG4: UDP-4-amino-4-deoxy-L-arabinose--oxoglutarate aminotransferase|g__Escherichia.s__Escherichia_coli	26.2696930090
+UniRef50_P32154: Fructose-like PTS system EIIBC component	26.2677104349
+UniRef50_P32154: Fructose-like PTS system EIIBC component|g__Escherichia.s__Escherichia_coli	26.2677104349
+UniRef50_R9SMY1: Universal stress protein UspA3	26.2623208583
+UniRef50_R9SMY1: Universal stress protein UspA3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.2623208583
+UniRef50_B2VK30: Protein TsgA homolog	26.2591901152
+UniRef50_B2VK30: Protein TsgA homolog|g__Escherichia.s__Escherichia_coli	26.2591901152
+UniRef50_Q8TX52: 50S ribosomal protein L11	26.2535122669
+UniRef50_Q8TX52: 50S ribosomal protein L11|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.2535122669
+UniRef50_M4K135: Phospholipid-binding domain lipoprotein	26.2514540894
+UniRef50_M4K135: Phospholipid-binding domain lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	26.1184049635
+UniRef50_M4K135: Phospholipid-binding domain lipoprotein|unclassified	0.1330491259
+UniRef50_A5ULL7	26.2460873784
+UniRef50_A5ULL7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.2460873784
+UniRef50_Q07RP5: Ribosome-binding ATPase YchF	26.2457445161
+UniRef50_Q07RP5: Ribosome-binding ATPase YchF|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.2457445161
+UniRef50_Q8ZRF8	26.2447846820
+UniRef50_Q8ZRF8|g__Escherichia.s__Escherichia_coli	21.8394983384
+UniRef50_Q8ZRF8|g__Staphylococcus.s__Staphylococcus_aureus	4.4052863436
+UniRef50_P0ADJ1	26.2403070174
+UniRef50_P0ADJ1|g__Escherichia.s__Escherichia_coli	26.2403070174
+UniRef50_Q5HR67	26.2387804296
+UniRef50_Q5HR67|g__Staphylococcus.s__Staphylococcus_epidermidis	26.2387804296
+UniRef50_V0AI23	26.2294775260
+UniRef50_V0AI23|g__Escherichia.s__Escherichia_coli	26.2294775260
+UniRef50_P80668: Phenylacetaldehyde dehydrogenase	26.2262002792
+UniRef50_P80668: Phenylacetaldehyde dehydrogenase|g__Escherichia.s__Escherichia_coli	26.1069689770
+UniRef50_P80668: Phenylacetaldehyde dehydrogenase|unclassified	0.1192313021
+UniRef50_P39298: Esterase YjfP	26.2205740746
+UniRef50_P39298: Esterase YjfP|g__Escherichia.s__Escherichia_coli	26.2205740746
+UniRef50_P37051: Formyltetrahydrofolate deformylase	26.2201309160
+UniRef50_P37051: Formyltetrahydrofolate deformylase|g__Escherichia.s__Escherichia_coli	26.2201309160
+UniRef50_P37692: ADP-heptose--LPS heptosyltransferase 2	26.2181216200
+UniRef50_P37692: ADP-heptose--LPS heptosyltransferase 2|g__Escherichia.s__Escherichia_coli	26.2181216200
+UniRef50_Q46807: Carbamate kinase-like protein YqeA	26.2114223374
+UniRef50_Q46807: Carbamate kinase-like protein YqeA|g__Escherichia.s__Escherichia_coli	26.2114223374
+UniRef50_Q49UU5: UPF0355 protein SSP2326	26.1985746314
+UniRef50_Q49UU5: UPF0355 protein SSP2326|g__Staphylococcus.s__Staphylococcus_epidermidis	26.1985746314
+UniRef50_P77733: Probable formate transporter 2	26.1959401192
+UniRef50_P77733: Probable formate transporter 2|g__Escherichia.s__Escherichia_coli	26.1959401192
+UniRef50_D2G3Z9: FemAB family protein	26.1902432277
+UniRef50_D2G3Z9: FemAB family protein|g__Staphylococcus.s__Staphylococcus_aureus	26.1902432277
+UniRef50_P37007	26.1893040477
+UniRef50_P37007|g__Escherichia.s__Escherichia_coli	26.1893040477
+UniRef50_Q6LMJ9: Glutamyl-Q tRNA(Asp) synthetase	26.1840509665
+UniRef50_Q6LMJ9: Glutamyl-Q tRNA(Asp) synthetase|g__Escherichia.s__Escherichia_coli	26.1840509665
+UniRef50_A5UMH8: Undecaprenyl-diphosphatase	26.1832389161
+UniRef50_A5UMH8: Undecaprenyl-diphosphatase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.1832389161
+UniRef50_E0TF91: Prephenate dehydrogenase	26.1820142872
+UniRef50_E0TF91: Prephenate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.1820142872
+UniRef50_P28631: DNA polymerase III subunit delta'	26.1812830276
+UniRef50_P28631: DNA polymerase III subunit delta'|g__Escherichia.s__Escherichia_coli	26.1201747909
+UniRef50_P28631: DNA polymerase III subunit delta'|unclassified	0.0611082367
+UniRef50_D3E4F1: Metallo-beta-lactamase superfamily protein	26.1747357541
+UniRef50_D3E4F1: Metallo-beta-lactamase superfamily protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.1747357541
+UniRef50_B5E267: Ribosome-binding factor A	26.1736197441
+UniRef50_B5E267: Ribosome-binding factor A|g__Streptococcus.s__Streptococcus_agalactiae	26.1736197441
+UniRef50_A3PPK4: Amidase	26.1736085591
+UniRef50_A3PPK4: Amidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.1736085591
+UniRef50_W8X4Y8: Phosphoribosylglycinamide formyltransferase	26.1731702582
+UniRef50_W8X4Y8: Phosphoribosylglycinamide formyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	26.1731702582
+UniRef50_P0AD42: Phosphatidylglycerophosphatase C	26.1688038698
+UniRef50_P0AD42: Phosphatidylglycerophosphatase C|g__Escherichia.s__Escherichia_coli	26.1688038698
+UniRef50_P39295	26.1661803802
+UniRef50_P39295|g__Escherichia.s__Escherichia_coli	26.1661803802
+UniRef50_A3PG26	26.1637530295
+UniRef50_A3PG26|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.1637530295
+UniRef50_A5UMU8: Predicted glycosyltransferase, GT2 family	26.1603427950
+UniRef50_A5UMU8: Predicted glycosyltransferase, GT2 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.1603427950
+UniRef50_Q9RNH6: Glycogen synthase	26.1458830393
+UniRef50_Q9RNH6: Glycogen synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.1458830393
+UniRef50_P76463	26.1451752434
+UniRef50_P76463|g__Escherichia.s__Escherichia_coli	26.1451752434
+UniRef50_P31060: Putative molybdenum transport ATP-binding protein ModF	26.1428694633
+UniRef50_P31060: Putative molybdenum transport ATP-binding protein ModF|g__Escherichia.s__Escherichia_coli	26.1428694633
+UniRef50_Q3Z5U2: HTH-type transcriptional regulator SgrR	26.1361782058
+UniRef50_Q3Z5U2: HTH-type transcriptional regulator SgrR|g__Escherichia.s__Escherichia_coli	26.1361782058
+UniRef50_A3PJK1	26.1292723226
+UniRef50_A3PJK1|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.1292723226
+UniRef50_P0AEB6: Low conductance mechanosensitive channel YnaI	26.1282997046
+UniRef50_P0AEB6: Low conductance mechanosensitive channel YnaI|g__Escherichia.s__Escherichia_coli	26.1282997046
+UniRef50_L1KB92	26.1275574698
+UniRef50_L1KB92|unclassified	26.1275574698
+UniRef50_P50178: Modification methylase LlaDCHIB	26.1181346346
+UniRef50_P50178: Modification methylase LlaDCHIB|g__Streptococcus.s__Streptococcus_mutans	26.1181346346
+UniRef50_A5UL76: 30S ribosomal protein S4e	26.1170604446
+UniRef50_A5UL76: 30S ribosomal protein S4e|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.1170604446
+UniRef50_A6T5N6: Chaperone protein HtpG	26.1148926513
+UniRef50_A6T5N6: Chaperone protein HtpG|g__Escherichia.s__Escherichia_coli	26.1148926513
+UniRef50_Q9HZJ5: DNA topoisomerase 1	26.1124273493
+UniRef50_Q9HZJ5: DNA topoisomerase 1|g__Escherichia.s__Escherichia_coli	25.6403914885
+UniRef50_Q9HZJ5: DNA topoisomerase 1|g__Acinetobacter.s__Acinetobacter_baumannii	0.4535147392
+UniRef50_Q9HZJ5: DNA topoisomerase 1|unclassified	0.0185211216
+UniRef50_P75863	26.1121089326
+UniRef50_P75863|g__Escherichia.s__Escherichia_coli	26.1121089326
+UniRef50_A6UW73: Argininosuccinate lyase	26.1109571542
+UniRef50_A6UW73: Argininosuccinate lyase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.1109571542
+UniRef50_Q6LIQ2	26.1045525481
+UniRef50_Q6LIQ2|g__Staphylococcus.s__Staphylococcus_aureus	26.1045525481
+UniRef50_Q5HRP8: Cell-division protein DivIC, putative	26.1009179032
+UniRef50_Q5HRP8: Cell-division protein DivIC, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	26.1009179032
+UniRef50_P06971: Ferrichrome-iron receptor	26.0950708041
+UniRef50_P06971: Ferrichrome-iron receptor|g__Escherichia.s__Escherichia_coli	26.0950708041
+UniRef50_Q8FIR3: N-methyl-L-tryptophan oxidase	26.0888553127
+UniRef50_Q8FIR3: N-methyl-L-tryptophan oxidase|g__Escherichia.s__Escherichia_coli	26.0888553127
+UniRef50_Q1J961: Chromosome partitioning protein parB	26.0863362515
+UniRef50_Q1J961: Chromosome partitioning protein parB|g__Streptococcus.s__Streptococcus_mutans	24.7893193903
+UniRef50_Q1J961: Chromosome partitioning protein parB|g__Streptococcus.s__Streptococcus_agalactiae	1.2970168612
+UniRef50_O27054: Probable L-aspartate dehydrogenase	26.0814208197
+UniRef50_O27054: Probable L-aspartate dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.0814208197
+UniRef50_P63342: Inner membrane transport protein YqeG	26.0791624691
+UniRef50_P63342: Inner membrane transport protein YqeG|g__Escherichia.s__Escherichia_coli	26.0791624691
+UniRef50_C6SS70: Negative transcriptional regulator, CopY	26.0770975057
+UniRef50_C6SS70: Negative transcriptional regulator, CopY|g__Streptococcus.s__Streptococcus_mutans	26.0770975057
+UniRef50_Q2FX83	26.0716765567
+UniRef50_Q2FX83|unclassified	26.0716765567
+UniRef50_A8M9N8: GTPase-like protein	26.0688735086
+UniRef50_A8M9N8: GTPase-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.0688735086
+UniRef50_P76115: Probable TonB-dependent receptor YncD	26.0622034172
+UniRef50_P76115: Probable TonB-dependent receptor YncD|g__Escherichia.s__Escherichia_coli	26.0622034172
+UniRef50_Q8XDN0: Septum site-determining protein MinC	26.0602729842
+UniRef50_Q8XDN0: Septum site-determining protein MinC|g__Escherichia.s__Escherichia_coli	26.0602729842
+UniRef50_B9KTG7	26.0595965898
+UniRef50_B9KTG7|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.7494005732
+UniRef50_B9KTG7|unclassified	12.3101960165
+UniRef50_Q48B49: ISPsy24, transposase orfB	26.0567596712
+UniRef50_Q48B49: ISPsy24, transposase orfB|g__Pseudomonas.s__Pseudomonas_aeruginosa	26.0567596712
+UniRef50_E3A6L5	26.0549489968
+UniRef50_E3A6L5|g__Pseudomonas.s__Pseudomonas_aeruginosa	24.9596587449
+UniRef50_E3A6L5|unclassified	1.0952902519
+UniRef50_Q6GB21	26.0549037061
+UniRef50_Q6GB21|g__Staphylococcus.s__Staphylococcus_aureus	22.8660236396
+UniRef50_Q6GB21|unclassified	3.1888800665
+UniRef50_E3F031: Beta-glucosidase	26.0528180987
+UniRef50_E3F031: Beta-glucosidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	26.0528180987
+UniRef50_Q5SKG5: Phosphomethylpyrimidine synthase	26.0518561497
+UniRef50_Q5SKG5: Phosphomethylpyrimidine synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.0518561497
+UniRef50_P69680: Ammonia channel	26.0492972101
+UniRef50_P69680: Ammonia channel|g__Escherichia.s__Escherichia_coli	26.0492972101
+UniRef50_Q12A19: Histone deacetylase superfamily	26.0467837107
+UniRef50_Q12A19: Histone deacetylase superfamily|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.5173888983
+UniRef50_Q12A19: Histone deacetylase superfamily|unclassified	0.5293948124
+UniRef50_A5UN81: Predicted ATPase, AAA+ family	26.0432017741
+UniRef50_A5UN81: Predicted ATPase, AAA+ family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.0432017741
+UniRef50_P59588: Lysophospholipase L2	26.0401901500
+UniRef50_P59588: Lysophospholipase L2|g__Escherichia.s__Escherichia_coli	25.7636295658
+UniRef50_P59588: Lysophospholipase L2|unclassified	0.2765605842
+UniRef50_P27111: HTH-type transcriptional regulator CynR	26.0393974431
+UniRef50_P27111: HTH-type transcriptional regulator CynR|g__Escherichia.s__Escherichia_coli	26.0393974431
+UniRef50_Q49174: Methyl-coenzyme M reductase II subunit alpha	26.0371015367
+UniRef50_Q49174: Methyl-coenzyme M reductase II subunit alpha|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.0371015367
+UniRef50_M7Y7A3: Gram-positive signal peptide protein, YSIRK family	26.0321193044
+UniRef50_M7Y7A3: Gram-positive signal peptide protein, YSIRK family|g__Staphylococcus.s__Staphylococcus_aureus	26.0321193044
+UniRef50_B3EG02: CRISPR-associated autoregulator, DevR family	26.0285728579
+UniRef50_B3EG02: CRISPR-associated autoregulator, DevR family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	26.0285728579
+UniRef50_P52235: Thiol:disulfide interchange protein DsbA	26.0023518901
+UniRef50_P52235: Thiol:disulfide interchange protein DsbA|g__Escherichia.s__Escherichia_coli	26.0023518901
+UniRef50_B7IKZ0: Cyclic pyranopterin monophosphate synthase accessory protein	26.0011517427
+UniRef50_B7IKZ0: Cyclic pyranopterin monophosphate synthase accessory protein|g__Staphylococcus.s__Staphylococcus_epidermidis	25.7768161469
+UniRef50_B7IKZ0: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	0.2243355958
+UniRef50_A7MJZ3: tRNA 2-selenouridine synthase	25.9967165837
+UniRef50_A7MJZ3: tRNA 2-selenouridine synthase|g__Escherichia.s__Escherichia_coli	25.9967165837
+UniRef50_A4WT11: Methyl-accepting chemotaxis sensory transducer	25.9954273511
+UniRef50_A4WT11: Methyl-accepting chemotaxis sensory transducer|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.9954273511
+UniRef50_R9SLA3: RNA methyltransferase TrmH family	25.9930850182
+UniRef50_R9SLA3: RNA methyltransferase TrmH family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.9930850182
+UniRef50_I0C5D3	25.9918217742
+UniRef50_I0C5D3|g__Staphylococcus.s__Staphylococcus_epidermidis	14.2817289320
+UniRef50_I0C5D3|g__Staphylococcus.s__Staphylococcus_aureus	11.7100928422
+UniRef50_R9SJI3: CCA-adding enzyme	25.9890267666
+UniRef50_R9SJI3: CCA-adding enzyme|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.9890267666
+UniRef50_Q1GHA7: Ferredoxin	25.9880673423
+UniRef50_Q1GHA7: Ferredoxin|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.9880673423
+UniRef50_B4R825: Succinoglycan biosynthesis protein	25.9652123558
+UniRef50_B4R825: Succinoglycan biosynthesis protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.8484824066
+UniRef50_B4R825: Succinoglycan biosynthesis protein|unclassified	0.1167299491
+UniRef50_P37344: Psp operon transcriptional activator	25.9617855252
+UniRef50_P37344: Psp operon transcriptional activator|g__Escherichia.s__Escherichia_coli	25.9617855252
+UniRef50_R9SJ55: F420-0:gamma-glutamyl ligase CofE1	25.9613937345
+UniRef50_R9SJ55: F420-0:gamma-glutamyl ligase CofE1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.9613937345
+UniRef50_Q0K413: Glutathione S-transferase	25.9600275897
+UniRef50_Q0K413: Glutathione S-transferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.9600275897
+UniRef50_P25524: Cytosine deaminase	25.9600032899
+UniRef50_P25524: Cytosine deaminase|g__Escherichia.s__Escherichia_coli	20.6334962687
+UniRef50_P25524: Cytosine deaminase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3265070212
+UniRef50_O26874: Conserved protein	25.9536904452
+UniRef50_O26874: Conserved protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.9536904452
+UniRef50_P06999: ATP-dependent 6-phosphofructokinase isozyme 2	25.9481532703
+UniRef50_P06999: ATP-dependent 6-phosphofructokinase isozyme 2|g__Escherichia.s__Escherichia_coli	25.9481532703
+UniRef50_K2A1K8	25.9436994757
+UniRef50_K2A1K8|unclassified	25.9436994757
+UniRef50_P0AE84: Sensor protein CpxA	25.9387870765
+UniRef50_P0AE84: Sensor protein CpxA|g__Escherichia.s__Escherichia_coli	25.9387870765
+UniRef50_Q2NI23: DNA primase small subunit PriS	25.9375140857
+UniRef50_Q2NI23: DNA primase small subunit PriS|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.2244004550
+UniRef50_Q2NI23: DNA primase small subunit PriS|unclassified	0.7131136308
+UniRef50_B9KNI6	25.9308615076
+UniRef50_B9KNI6|unclassified	25.9308615076
+UniRef50_B7M9X6: Adenosine deaminase	25.9269740026
+UniRef50_B7M9X6: Adenosine deaminase|g__Escherichia.s__Escherichia_coli	21.7187504557
+UniRef50_B7M9X6: Adenosine deaminase|unclassified	3.1364121857
+UniRef50_B7M9X6: Adenosine deaminase|g__Acinetobacter.s__Acinetobacter_baumannii	1.0718113612
+UniRef50_P64434: Inner membrane protein YpjD	25.9263334680
+UniRef50_P64434: Inner membrane protein YpjD|g__Escherichia.s__Escherichia_coli	25.9263334680
+UniRef50_J7QFY9: Lysine-, arginine-, ornithine-binding periplasmic protein	25.9240615971
+UniRef50_J7QFY9: Lysine-, arginine-, ornithine-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	25.9240615971
+UniRef50_P0A9P2: Dihydrolipoyl dehydrogenase	25.9206078915
+UniRef50_P0A9P2: Dihydrolipoyl dehydrogenase|g__Escherichia.s__Escherichia_coli	25.9206078915
+UniRef50_Q3J2S3	25.9182018141
+UniRef50_Q3J2S3|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.7583746003
+UniRef50_Q3J2S3|unclassified	2.1598272138
+UniRef50_Y1MEW7: ATP-dependent helicase	25.9154081235
+UniRef50_Y1MEW7: ATP-dependent helicase|g__Escherichia.s__Escherichia_coli	25.9154081235
+UniRef50_J0NAX3: Glucose-6-phosphate 1-dehydrogenase	25.9137650822
+UniRef50_J0NAX3: Glucose-6-phosphate 1-dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	25.9137650822
+UniRef50_P25718: Alpha-amylase	25.9025145202
+UniRef50_P25718: Alpha-amylase|g__Escherichia.s__Escherichia_coli	25.9025145202
+UniRef50_R9SKI2	25.8983899395
+UniRef50_R9SKI2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.8983899395
+UniRef50_A4WNF9: Metallophosphoesterase	25.8944250037
+UniRef50_A4WNF9: Metallophosphoesterase|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.8944250037
+UniRef50_Q6F228: 50S ribosomal protein L33 1	25.8937520882
+UniRef50_Q6F228: 50S ribosomal protein L33 1|g__Streptococcus.s__Streptococcus_mutans	25.8937520882
+UniRef50_Q5HLZ6	25.8919341215
+UniRef50_Q5HLZ6|g__Staphylococcus.s__Staphylococcus_epidermidis	17.4915928938
+UniRef50_Q5HLZ6|g__Staphylococcus.s__Staphylococcus_aureus	8.4003412276
+UniRef50_B6I2P2: Phosphoglycerol transferase I	25.8885748237
+UniRef50_B6I2P2: Phosphoglycerol transferase I|g__Escherichia.s__Escherichia_coli	25.8885748237
+UniRef50_A5UN86: Multidrug efflux permease, AraJ	25.8885289656
+UniRef50_A5UN86: Multidrug efflux permease, AraJ|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.8885289656
+UniRef50_F8J5A0	25.8860975397
+UniRef50_F8J5A0|unclassified	25.8860975397
+UniRef50_B5XYZ0: Guanosine-5'-triphosphate,3'-diphosphate pyrophosphatase	25.8783333322
+UniRef50_B5XYZ0: Guanosine-5'-triphosphate,3'-diphosphate pyrophosphatase|g__Escherichia.s__Escherichia_coli	25.8542524027
+UniRef50_B5XYZ0: Guanosine-5'-triphosphate,3'-diphosphate pyrophosphatase|unclassified	0.0240809295
+UniRef50_A5UJI1: Homoserine dehydrogenase, ThrA	25.8761846658
+UniRef50_A5UJI1: Homoserine dehydrogenase, ThrA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.8761846658
+UniRef50_P40720: Fumarate hydratase class I, aerobic	25.8755474002
+UniRef50_P40720: Fumarate hydratase class I, aerobic|g__Escherichia.s__Escherichia_coli	25.8755474002
+UniRef50_O59469: 3-hydroxy-3-methylglutaryl-coenzyme A reductase	25.8721654244
+UniRef50_O59469: 3-hydroxy-3-methylglutaryl-coenzyme A reductase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.8721654244
+UniRef50_D6SES6	25.8714596950
+UniRef50_D6SES6|g__Staphylococcus.s__Staphylococcus_aureus	18.5185185185
+UniRef50_D6SES6|unclassified	7.3529411765
+UniRef50_UPI000311AF55: light-harvesting protein B:800-850 subunit beta	25.8666474768
+UniRef50_UPI000311AF55: light-harvesting protein B:800-850 subunit beta|unclassified	25.8666474768
+UniRef50_P0AFB9: Nitrogen regulation protein NR(I)	25.8635038910
+UniRef50_P0AFB9: Nitrogen regulation protein NR(I)|g__Escherichia.s__Escherichia_coli	25.1547866692
+UniRef50_P0AFB9: Nitrogen regulation protein NR(I)|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7087172218
+UniRef50_P39829: D-galactarate dehydratase	25.8626197172
+UniRef50_P39829: D-galactarate dehydratase|g__Escherichia.s__Escherichia_coli	23.5871857270
+UniRef50_P39829: D-galactarate dehydratase|g__Acinetobacter.s__Acinetobacter_baumannii	2.2754339902
+UniRef50_P0AEX3: Alpha-ketoglutarate permease	25.8616177940
+UniRef50_P0AEX3: Alpha-ketoglutarate permease|g__Escherichia.s__Escherichia_coli	19.8934691843
+UniRef50_P0AEX3: Alpha-ketoglutarate permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8495803770
+UniRef50_P0AEX3: Alpha-ketoglutarate permease|g__Acinetobacter.s__Acinetobacter_baumannii	1.1185682327
+UniRef50_P31131: Protein YdeJ	25.8525339871
+UniRef50_P31131: Protein YdeJ|g__Escherichia.s__Escherichia_coli	25.8525339871
+UniRef50_F8DGR4: LytTr DNA-binding domain protein	25.8502658474
+UniRef50_F8DGR4: LytTr DNA-binding domain protein|g__Streptococcus.s__Streptococcus_mutans	25.8502658474
+UniRef50_P23189: Glutathione reductase	25.8418695981
+UniRef50_P23189: Glutathione reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.0024812518
+UniRef50_P23189: Glutathione reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7878703806
+UniRef50_P23189: Glutathione reductase|unclassified	0.0515179657
+UniRef50_A0A030WUA6: 3-hydroxyisobutyrate dehydrogenase	25.8346860665
+UniRef50_A0A030WUA6: 3-hydroxyisobutyrate dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	25.8346860665
+UniRef50_B7LKC2: Cytoskeleton protein RodZ	25.8328760792
+UniRef50_B7LKC2: Cytoskeleton protein RodZ|g__Escherichia.s__Escherichia_coli	25.8328760792
+UniRef50_F3U1C5	25.8323305255
+UniRef50_F3U1C5|g__Staphylococcus.s__Staphylococcus_epidermidis	25.8323305255
+UniRef50_Q1LTQ4: Alanine--tRNA ligase	25.8318570187
+UniRef50_Q1LTQ4: Alanine--tRNA ligase|g__Escherichia.s__Escherichia_coli	25.8318570187
+UniRef50_B9KSZ0	25.8148007367
+UniRef50_B9KSZ0|unclassified	25.8148007367
+UniRef50_R7PWU3	25.8145765626
+UniRef50_R7PWU3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.8145765626
+UniRef50_A3PG69: BLUF domain protein	25.8094871466
+UniRef50_A3PG69: BLUF domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.8094871466
+UniRef50_P14407: Fumarate hydratase class I, anaerobic	25.8052701823
+UniRef50_P14407: Fumarate hydratase class I, anaerobic|g__Escherichia.s__Escherichia_coli	25.8052701823
+UniRef50_Q2YVN2	25.7991656334
+UniRef50_Q2YVN2|g__Staphylococcus.s__Staphylococcus_aureus	25.7991656334
+UniRef50_B6IRE2: Deoxyribodipyrimidine photolyase-like protein	25.7975628968
+UniRef50_B6IRE2: Deoxyribodipyrimidine photolyase-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.7975628968
+UniRef50_B4EU40: UPF0234 protein PMI0103	25.7909020624
+UniRef50_B4EU40: UPF0234 protein PMI0103|g__Pseudomonas.s__Pseudomonas_aeruginosa	25.6410256410
+UniRef50_B4EU40: UPF0234 protein PMI0103|unclassified	0.1498764214
+UniRef50_B9KW36: Short-chain dehydrogenase/reductase SDR	25.7908924880
+UniRef50_B9KW36: Short-chain dehydrogenase/reductase SDR|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.7908924880
+UniRef50_P24218: Prophage DLP12 integrase	25.7797428381
+UniRef50_P24218: Prophage DLP12 integrase|g__Escherichia.s__Escherichia_coli	25.7797428381
+UniRef50_R7PX72	25.7738798623
+UniRef50_R7PX72|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.7123007503
+UniRef50_R7PX72|unclassified	0.0615791121
+UniRef50_L1KA07	25.7725269768
+UniRef50_L1KA07|unclassified	25.7725269768
+UniRef50_P0ACQ8: HTH-type transcriptional regulator TdcA	25.7720063741
+UniRef50_P0ACQ8: HTH-type transcriptional regulator TdcA|g__Escherichia.s__Escherichia_coli	25.7720063741
+UniRef50_Q8XD75	25.7619023067
+UniRef50_Q8XD75|g__Escherichia.s__Escherichia_coli	25.7619023067
+UniRef50_P0ADP7	25.7617642162
+UniRef50_P0ADP7|g__Escherichia.s__Escherichia_coli	25.7617642162
+UniRef50_P9WQK2	25.7612725023
+UniRef50_P9WQK2|g__Escherichia.s__Escherichia_coli	17.8405836492
+UniRef50_P9WQK2|g__Acinetobacter.s__Acinetobacter_baumannii	3.0058441163
+UniRef50_P9WQK2|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9468771545
+UniRef50_P9WQK2|g__Neisseria.s__Neisseria_meningitidis	1.9679675823
+UniRef50_M5AGF6	25.7579579587
+UniRef50_M5AGF6|g__Streptococcus.s__Streptococcus_mutans	25.7579579587
+UniRef50_P77744: HTH-type transcriptional regulator AbgR	25.7575376346
+UniRef50_P77744: HTH-type transcriptional regulator AbgR|g__Escherichia.s__Escherichia_coli	25.7575376346
+UniRef50_Q0RCK0: Peptide methionine sulfoxide reductase MsrA	25.7537270849
+UniRef50_Q0RCK0: Peptide methionine sulfoxide reductase MsrA|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.7537270849
+UniRef50_P39263	25.7533159851
+UniRef50_P39263|g__Escherichia.s__Escherichia_coli	25.7533159851
+UniRef50_P11553: L-fuculokinase	25.7478307963
+UniRef50_P11553: L-fuculokinase|g__Escherichia.s__Escherichia_coli	25.7478307963
+UniRef50_Q65U21: Lipid A export ATP-binding/permease protein MsbA	25.7417655751
+UniRef50_Q65U21: Lipid A export ATP-binding/permease protein MsbA|g__Escherichia.s__Escherichia_coli	25.7417655751
+UniRef50_I0ZXX0: ATPase associated with various cellular activities AAA_5	25.7363735534
+UniRef50_I0ZXX0: ATPase associated with various cellular activities AAA_5|g__Escherichia.s__Escherichia_coli	25.7363735534
+UniRef50_D1GN04: Phage protein	25.7360947534
+UniRef50_D1GN04: Phage protein|g__Staphylococcus.s__Staphylococcus_aureus	25.7360947534
+UniRef50_Q2NUD2: Cytidine deaminase	25.7350384482
+UniRef50_Q2NUD2: Cytidine deaminase|g__Escherichia.s__Escherichia_coli	25.7350384482
+UniRef50_Q8CR25	25.7293775447
+UniRef50_Q8CR25|g__Staphylococcus.s__Staphylococcus_epidermidis	18.4733166763
+UniRef50_Q8CR25|g__Staphylococcus.s__Staphylococcus_aureus	4.3290043290
+UniRef50_Q8CR25|unclassified	2.9270565394
+UniRef50_A5UNS2: Virulence protein	25.7292166062
+UniRef50_A5UNS2: Virulence protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.7292166062
+UniRef50_A5UJ78: Adhesin-like protein	25.7284492412
+UniRef50_A5UJ78: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.5561798591
+UniRef50_A5UJ78: Adhesin-like protein|unclassified	0.1722693822
+UniRef50_Q57847	25.7282837933
+UniRef50_Q57847|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.7282837933
+UniRef50_P0AF43	25.7235119509
+UniRef50_P0AF43|g__Escherichia.s__Escherichia_coli	22.4384702529
+UniRef50_P0AF43|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2850416980
+UniRef50_Q32IZ2: IS2 ORF2	25.7199903734
+UniRef50_Q32IZ2: IS2 ORF2|g__Escherichia.s__Escherichia_coli	25.7199903734
+UniRef50_Y3F751	25.7187849085
+UniRef50_Y3F751|g__Staphylococcus.s__Staphylococcus_aureus	25.0228657534
+UniRef50_Y3F751|unclassified	0.6959191551
+UniRef50_P52074: Glycolate oxidase iron-sulfur subunit	25.7159480100
+UniRef50_P52074: Glycolate oxidase iron-sulfur subunit|g__Escherichia.s__Escherichia_coli	25.7159480100
+UniRef50_A5UL66: 50S ribosomal protein L15P	25.7113162617
+UniRef50_A5UL66: 50S ribosomal protein L15P|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.7113162617
+UniRef50_U5PB64: Uroporphyrinogen decarboxylase	25.7107635525
+UniRef50_U5PB64: Uroporphyrinogen decarboxylase|g__Streptococcus.s__Streptococcus_mutans	25.7107635525
+UniRef50_P37180: Probable Ni/Fe-hydrogenase 2 b-type cytochrome subunit	25.7098333907
+UniRef50_P37180: Probable Ni/Fe-hydrogenase 2 b-type cytochrome subunit|g__Escherichia.s__Escherichia_coli	25.7098333907
+UniRef50_Q83IY4: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	25.7096961436
+UniRef50_Q83IY4: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|g__Escherichia.s__Escherichia_coli	20.0888538374
+UniRef50_Q83IY4: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5906014795
+UniRef50_Q83IY4: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|g__Neisseria.s__Neisseria_meningitidis	1.8038966747
+UniRef50_Q83IY4: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|unclassified	0.2263441521
+UniRef50_Q5HKN5	25.7052277287
+UniRef50_Q5HKN5|g__Staphylococcus.s__Staphylococcus_epidermidis	25.7052277287
+UniRef50_Q57GJ7: Ascorbate-specific phosphotransferase enzyme IIA component	25.7006061218
+UniRef50_Q57GJ7: Ascorbate-specific phosphotransferase enzyme IIA component|g__Escherichia.s__Escherichia_coli	25.7006061218
+UniRef50_P0C7J3: Xanthan biosynthesis protein XanB	25.7004288027
+UniRef50_P0C7J3: Xanthan biosynthesis protein XanB|g__Escherichia.s__Escherichia_coli	21.0701383632
+UniRef50_P0C7J3: Xanthan biosynthesis protein XanB|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4129761754
+UniRef50_P0C7J3: Xanthan biosynthesis protein XanB|unclassified	0.2173142642
+UniRef50_P0AEL7: Ferrienterobactin-binding periplasmic protein	25.6961697448
+UniRef50_P0AEL7: Ferrienterobactin-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	25.6961697448
+UniRef50_P0ADT7: Putative acid--amine ligase YgiC	25.6956179668
+UniRef50_P0ADT7: Putative acid--amine ligase YgiC|g__Escherichia.s__Escherichia_coli	25.6956179668
+UniRef50_K7RJP7: Molybdenum cofactor synthesis domain-containing protein	25.6938937351
+UniRef50_K7RJP7: Molybdenum cofactor synthesis domain-containing protein|g__Propionibacterium.s__Propionibacterium_acnes	25.6938937351
+UniRef50_Q89V93: Bll1154 protein	25.6911124757
+UniRef50_Q89V93: Bll1154 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.6911124757
+UniRef50_G2JLA5	25.6871706978
+UniRef50_G2JLA5|g__Acinetobacter.s__Acinetobacter_baumannii	25.6871706978
+UniRef50_F7X4P3: Phosphoserine phosphatase	25.6849065519
+UniRef50_F7X4P3: Phosphoserine phosphatase|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.6849065519
+UniRef50_Q5LWX1: Flagellar basal-body rod protein FlgB	25.6837679801
+UniRef50_Q5LWX1: Flagellar basal-body rod protein FlgB|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.6837679801
+UniRef50_P0ABY9: Flagellar transcriptional regulator FlhC	25.6787177513
+UniRef50_P0ABY9: Flagellar transcriptional regulator FlhC|g__Escherichia.s__Escherichia_coli	25.6787177513
+UniRef50_X3WS87: Lipoprotein	25.6752454208
+UniRef50_X3WS87: Lipoprotein|g__Escherichia.s__Escherichia_coli	25.6752454208
+UniRef50_P33361: Putative osmoprotectant uptake system permease protein YehY	25.6694255616
+UniRef50_P33361: Putative osmoprotectant uptake system permease protein YehY|g__Escherichia.s__Escherichia_coli	25.6694255616
+UniRef50_P37643: Inner membrane metabolite transport protein YhjE	25.6676834844
+UniRef50_P37643: Inner membrane metabolite transport protein YhjE|g__Escherichia.s__Escherichia_coli	25.6676834844
+UniRef50_A3PJY9: Permease YjgP/YjgQ family protein	25.6659386034
+UniRef50_A3PJY9: Permease YjgP/YjgQ family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.6659386034
+UniRef50_U5NRA2: Putative transcriptional regulator	25.6650951512
+UniRef50_U5NRA2: Putative transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.2717234918
+UniRef50_U5NRA2: Putative transcriptional regulator|unclassified	8.3933716593
+UniRef50_P76389: UPF0053 protein YegH	25.6648711209
+UniRef50_P76389: UPF0053 protein YegH|g__Escherichia.s__Escherichia_coli	25.6648711209
+UniRef50_G3XD01: UDP-2-acetamido-3-amino-2,3-dideoxy-D-glucuronate N-acetyltransferase	25.6551568408
+UniRef50_G3XD01: UDP-2-acetamido-3-amino-2,3-dideoxy-D-glucuronate N-acetyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	25.6551568408
+UniRef50_A5UKL2	25.6521436394
+UniRef50_A5UKL2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.6521436394
+UniRef50_Q60356	25.6514218840
+UniRef50_Q60356|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.6514218840
+UniRef50_P21418	25.6452408351
+UniRef50_P21418|g__Escherichia.s__Escherichia_coli	25.6452408351
+UniRef50_F4C648	25.6413505931
+UniRef50_F4C648|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.6413505931
+UniRef50_A0A023YKS2	25.6410256410
+UniRef50_A0A023YKS2|g__Escherichia.s__Escherichia_coli	25.6410256410
+UniRef50_E9U922	25.6410256410
+UniRef50_E9U922|g__Escherichia.s__Escherichia_coli	25.6410256410
+UniRef50_K3IVE3	25.6410256410
+UniRef50_K3IVE3|g__Escherichia.s__Escherichia_coli	25.6410256410
+UniRef50_P64586: Inner membrane protein YqjE	25.6410256410
+UniRef50_P64586: Inner membrane protein YqjE|g__Escherichia.s__Escherichia_coli	25.6410256410
+UniRef50_Q3YS78: 50S ribosomal protein L36	25.6410256410
+UniRef50_Q3YS78: 50S ribosomal protein L36|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.6410256410
+UniRef50_T1YA28	25.6410256410
+UniRef50_T1YA28|g__Staphylococcus.s__Staphylococcus_aureus	25.6410256410
+UniRef50_W1XJ22	25.6410256410
+UniRef50_W1XJ22|unclassified	25.6410256410
+UniRef50_P05719: Type-1 restriction enzyme EcoKI specificity protein	25.6401571576
+UniRef50_P05719: Type-1 restriction enzyme EcoKI specificity protein|g__Escherichia.s__Escherichia_coli	25.6401571576
+UniRef50_H1KT40	25.6361601280
+UniRef50_H1KT40|unclassified	25.6361601280
+UniRef50_B7MBY5: Putative N-acetylmannosamine-6-phosphate 2-epimerase	25.6282301891
+UniRef50_B7MBY5: Putative N-acetylmannosamine-6-phosphate 2-epimerase|g__Escherichia.s__Escherichia_coli	25.6282301891
+UniRef50_S6CA35: Truncated bacteriocin ABC transporter ATP-binding and permease components	25.6277233965
+UniRef50_S6CA35: Truncated bacteriocin ABC transporter ATP-binding and permease components|g__Streptococcus.s__Streptococcus_mutans	25.6277233965
+UniRef50_A4FIQ1: Inositol 2-dehydrogenase 3	25.6269546733
+UniRef50_A4FIQ1: Inositol 2-dehydrogenase 3|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.6269546733
+UniRef50_UPI00046305C0: ArsR family transcriptional regulator, partial	25.6225041406
+UniRef50_UPI00046305C0: ArsR family transcriptional regulator, partial|unclassified	25.6225041406
+UniRef50_P0A960: Glutamate-pyruvate aminotransferase AlaA	25.6161619850
+UniRef50_P0A960: Glutamate-pyruvate aminotransferase AlaA|g__Escherichia.s__Escherichia_coli	17.7307535128
+UniRef50_P0A960: Glutamate-pyruvate aminotransferase AlaA|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8854084723
+UniRef50_Q9KPG5: UDP-N-acetylmuramoylalanine--D-glutamate ligase	25.6138814710
+UniRef50_Q9KPG5: UDP-N-acetylmuramoylalanine--D-glutamate ligase|g__Escherichia.s__Escherichia_coli	25.6138814710
+UniRef50_A4WVN9	25.6138042200
+UniRef50_A4WVN9|unclassified	25.6138042200
+UniRef50_Q4RC21: Chromosome undetermined SCAF20072, whole genome shotgun sequence. (Fragment)	25.6134766437
+UniRef50_Q4RC21: Chromosome undetermined SCAF20072, whole genome shotgun sequence. (Fragment)|unclassified	25.6134766437
+UniRef50_A7ZPD3: tRNA pseudouridine synthase A	25.6121748465
+UniRef50_A7ZPD3: tRNA pseudouridine synthase A|g__Escherichia.s__Escherichia_coli	25.4264850244
+UniRef50_A7ZPD3: tRNA pseudouridine synthase A|unclassified	0.1856898221
+UniRef50_Q28RD6: Ribosomal RNA small subunit methyltransferase A	25.6033042433
+UniRef50_Q28RD6: Ribosomal RNA small subunit methyltransferase A|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.4675756203
+UniRef50_Q28RD6: Ribosomal RNA small subunit methyltransferase A|unclassified	0.1357286231
+UniRef50_B5FM40: ATP phosphoribosyltransferase	25.6017488381
+UniRef50_B5FM40: ATP phosphoribosyltransferase|g__Escherichia.s__Escherichia_coli	25.6017488381
+UniRef50_P0AFR9: Inner membrane ABC transporter permease protein YdcV	25.6012018656
+UniRef50_P0AFR9: Inner membrane ABC transporter permease protein YdcV|g__Escherichia.s__Escherichia_coli	25.6012018656
+UniRef50_Q9HWF9: Bacterioferritin	25.5975251320
+UniRef50_Q9HWF9: Bacterioferritin|g__Pseudomonas.s__Pseudomonas_aeruginosa	23.8989576486
+UniRef50_Q9HWF9: Bacterioferritin|unclassified	1.6985674834
+UniRef50_Q1R625	25.5970246423
+UniRef50_Q1R625|g__Escherichia.s__Escherichia_coli	24.4644014939
+UniRef50_Q1R625|unclassified	1.1326231484
+UniRef50_Q7CGI0: Cell division protein FtsP	25.5947533727
+UniRef50_Q7CGI0: Cell division protein FtsP|g__Escherichia.s__Escherichia_coli	25.5947533727
+UniRef50_Q3IV04: Transposase, IS3/IS911family	25.5892255892
+UniRef50_Q3IV04: Transposase, IS3/IS911family|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.5892255892
+UniRef50_Q93SE0: Vitamin B12 transporter BtuB	25.5839424543
+UniRef50_Q93SE0: Vitamin B12 transporter BtuB|g__Escherichia.s__Escherichia_coli	25.5839424543
+UniRef50_S5XXA0: Exodeoxyribonuclease III	25.5838711306
+UniRef50_S5XXA0: Exodeoxyribonuclease III|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.5838711306
+UniRef50_A0A037Y8T3	25.5825547803
+UniRef50_A0A037Y8T3|g__Escherichia.s__Escherichia_coli	21.7391304348
+UniRef50_A0A037Y8T3|unclassified	3.8434243455
+UniRef50_R7PWP6	25.5819975371
+UniRef50_R7PWP6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.5819975371
+UniRef50_F5X5Y4: Oxidoreductase/dehydrogenase	25.5777762858
+UniRef50_F5X5Y4: Oxidoreductase/dehydrogenase|g__Streptococcus.s__Streptococcus_mutans	25.5777762858
+UniRef50_B4TKU5: RNA 3'-terminal phosphate cyclase	25.5766564651
+UniRef50_B4TKU5: RNA 3'-terminal phosphate cyclase|g__Escherichia.s__Escherichia_coli	25.5766564651
+UniRef50_Q6N8F8: Formyl-coenzyme A transferase	25.5718977295
+UniRef50_Q6N8F8: Formyl-coenzyme A transferase|g__Escherichia.s__Escherichia_coli	25.5718977295
+UniRef50_B2ICY0: N-acylglucosamine 2-epimerase	25.5663683238
+UniRef50_B2ICY0: N-acylglucosamine 2-epimerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.5663683238
+UniRef50_F8HFP7: Transcriptional regulator, LysR family	25.5652417371
+UniRef50_F8HFP7: Transcriptional regulator, LysR family|g__Streptococcus.s__Streptococcus_mutans	25.5652417371
+UniRef50_Q46840	25.5609396732
+UniRef50_Q46840|g__Escherichia.s__Escherichia_coli	25.5609396732
+UniRef50_B2JIJ5: Malate dehydrogenase (Oxaloacetate-decarboxylating) (NADP(+)), Phosphate acetyltransferase	25.5543173683
+UniRef50_B2JIJ5: Malate dehydrogenase (Oxaloacetate-decarboxylating) (NADP(+)), Phosphate acetyltransferase|g__Escherichia.s__Escherichia_coli	24.2216974303
+UniRef50_B2JIJ5: Malate dehydrogenase (Oxaloacetate-decarboxylating) (NADP(+)), Phosphate acetyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3326199380
+UniRef50_A5UJJ6: Predicted CRISPR-associated protein	25.5536833358
+UniRef50_A5UJJ6: Predicted CRISPR-associated protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.5536833358
+UniRef50_L0GGN0: Sortase-like acyltransferase	25.5503144654
+UniRef50_L0GGN0: Sortase-like acyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	25.5503144654
+UniRef50_Q56114: Aspartate aminotransferase	25.5498689656
+UniRef50_Q56114: Aspartate aminotransferase|g__Escherichia.s__Escherichia_coli	25.5498689656
+UniRef50_U5NRH0	25.5470896852
+UniRef50_U5NRH0|unclassified	25.5470896852
+UniRef50_UPI00022CAA7D: PREDICTED: hypothetical protein LOC100749102	25.5457131985
+UniRef50_UPI00022CAA7D: PREDICTED: hypothetical protein LOC100749102|g__Escherichia.s__Escherichia_coli	25.4557361233
+UniRef50_UPI00022CAA7D: PREDICTED: hypothetical protein LOC100749102|unclassified	0.0899770753
+UniRef50_P37629	25.5456361143
+UniRef50_P37629|g__Escherichia.s__Escherichia_coli	25.5456361143
+UniRef50_A5UKA3: Demethylmenaquinone methyltransferase	25.5413826481
+UniRef50_A5UKA3: Demethylmenaquinone methyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.5413826481
+UniRef50_P44779: L-fucose isomerase	25.5316744488
+UniRef50_P44779: L-fucose isomerase|g__Escherichia.s__Escherichia_coli	25.5316744488
+UniRef50_Q2NHQ3: Probable cobyrinic acid A,C-diamide synthase	25.5247352711
+UniRef50_Q2NHQ3: Probable cobyrinic acid A,C-diamide synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.5247352711
+UniRef50_T1ZVL8: TetR/AcrR family transcriptional regulator	25.5142387505
+UniRef50_T1ZVL8: TetR/AcrR family transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	25.5142387505
+UniRef50_P45563: Purine nucleoside phosphorylase 2	25.5068557943
+UniRef50_P45563: Purine nucleoside phosphorylase 2|g__Escherichia.s__Escherichia_coli	25.5068557943
+UniRef50_E3GWS4: Oxidoreductase domain protein	25.5013366398
+UniRef50_E3GWS4: Oxidoreductase domain protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.5013366398
+UniRef50_Q9ZBH5: Diaminopimelate decarboxylase	25.4970330101
+UniRef50_Q9ZBH5: Diaminopimelate decarboxylase|g__Escherichia.s__Escherichia_coli	24.2661079083
+UniRef50_Q9ZBH5: Diaminopimelate decarboxylase|unclassified	1.2309251018
+UniRef50_P19318: Respiratory nitrate reductase 2 beta chain	25.4960884290
+UniRef50_P19318: Respiratory nitrate reductase 2 beta chain|g__Escherichia.s__Escherichia_coli	25.4960884290
+UniRef50_P39374	25.4917198724
+UniRef50_P39374|g__Escherichia.s__Escherichia_coli	25.4917198724
+UniRef50_P77445: Ethanolamine utilization protein EutE	25.4871076507
+UniRef50_P77445: Ethanolamine utilization protein EutE|g__Escherichia.s__Escherichia_coli	25.4871076507
+UniRef50_A7N2P9: Oxygen-dependent choline dehydrogenase	25.4773335297
+UniRef50_A7N2P9: Oxygen-dependent choline dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.9955104144
+UniRef50_A7N2P9: Oxygen-dependent choline dehydrogenase|unclassified	0.4818231152
+UniRef50_P25539: Riboflavin biosynthesis protein RibD	25.4755733144
+UniRef50_P25539: Riboflavin biosynthesis protein RibD|g__Escherichia.s__Escherichia_coli	25.4341808021
+UniRef50_P25539: Riboflavin biosynthesis protein RibD|unclassified	0.0413925124
+UniRef50_R5WTT7: Acriflavine resistance protein B	25.4733187433
+UniRef50_R5WTT7: Acriflavine resistance protein B|g__Escherichia.s__Escherichia_coli	25.4733187433
+UniRef50_P0ABR8: Putative dioxygenase subunit alpha YeaW	25.4623706251
+UniRef50_P0ABR8: Putative dioxygenase subunit alpha YeaW|g__Escherichia.s__Escherichia_coli	25.4623706251
+UniRef50_P30845: Phosphoethanolamine transferase EptA	25.4614763314
+UniRef50_P30845: Phosphoethanolamine transferase EptA|g__Escherichia.s__Escherichia_coli	25.4614763314
+UniRef50_P0AB60: Lipopolysaccharide regulatory protein	25.4549669856
+UniRef50_P0AB60: Lipopolysaccharide regulatory protein|g__Escherichia.s__Escherichia_coli	25.4549669856
+UniRef50_R4KHK5: ADP-forming acetyl coenzyme A synthetase	25.4494122464
+UniRef50_R4KHK5: ADP-forming acetyl coenzyme A synthetase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.4494122464
+UniRef50_L7WVU0: Ribosomal silencing factor RsfS	25.4440498237
+UniRef50_L7WVU0: Ribosomal silencing factor RsfS|g__Staphylococcus.s__Staphylococcus_aureus	25.4440498237
+UniRef50_Q46898: CRISPR system Cascade subunit CasD	25.4439452466
+UniRef50_Q46898: CRISPR system Cascade subunit CasD|g__Escherichia.s__Escherichia_coli	25.4439452466
+UniRef50_A0A017HMY7	25.4432791556
+UniRef50_A0A017HMY7|unclassified	25.4432791556
+UniRef50_X2LP54: AraC family transcriptional regulator	25.4430154972
+UniRef50_X2LP54: AraC family transcriptional regulator|g__Escherichia.s__Escherichia_coli	25.4430154972
+UniRef50_E7HD27: EAL domain protein	25.4422843681
+UniRef50_E7HD27: EAL domain protein|g__Escherichia.s__Escherichia_coli	25.4422843681
+UniRef50_Q57926: Probable homocitrate synthase AksA	25.4408473383
+UniRef50_Q57926: Probable homocitrate synthase AksA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.3189822515
+UniRef50_Q57926: Probable homocitrate synthase AksA|unclassified	0.1218650869
+UniRef50_P45579	25.4351488527
+UniRef50_P45579|g__Escherichia.s__Escherichia_coli	25.4351488527
+UniRef50_P0AGC1: Hexose phosphate transport protein	25.4339495663
+UniRef50_P0AGC1: Hexose phosphate transport protein|g__Escherichia.s__Escherichia_coli	25.4339495663
+UniRef50_A7ZTA0: Glyoxylate/hydroxypyruvate reductase B	25.4233024378
+UniRef50_A7ZTA0: Glyoxylate/hydroxypyruvate reductase B|g__Escherichia.s__Escherichia_coli	24.7866431504
+UniRef50_A7ZTA0: Glyoxylate/hydroxypyruvate reductase B|unclassified	0.6366592874
+UniRef50_P0AET9: 7-alpha-hydroxysteroid dehydrogenase	25.4219501227
+UniRef50_P0AET9: 7-alpha-hydroxysteroid dehydrogenase|g__Escherichia.s__Escherichia_coli	25.4219501227
+UniRef50_A6QIL3	25.4085343680
+UniRef50_A6QIL3|g__Staphylococcus.s__Staphylococcus_aureus	25.4085343680
+UniRef50_Q8XC28: Tyrosine-protein kinase etk	25.4043677283
+UniRef50_Q8XC28: Tyrosine-protein kinase etk|g__Escherichia.s__Escherichia_coli	25.4043677283
+UniRef50_Q8TQ68: Aspartate--tRNA(Asp/Asn) ligase	25.3959354496
+UniRef50_Q8TQ68: Aspartate--tRNA(Asp/Asn) ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.3959354496
+UniRef50_P45848	25.3957611547
+UniRef50_P45848|g__Escherichia.s__Escherichia_coli	25.3957611547
+UniRef50_Q3J464: Pseudouridine synthase	25.3916052705
+UniRef50_Q3J464: Pseudouridine synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.3916052705
+UniRef50_P37773: UDP-N-acetylmuramate:L-alanyl-gamma-D-glutamyl-meso-diaminopimelate ligase	25.3879287220
+UniRef50_P37773: UDP-N-acetylmuramate:L-alanyl-gamma-D-glutamyl-meso-diaminopimelate ligase|g__Escherichia.s__Escherichia_coli	25.3879287220
+UniRef50_Q6L0P2: 50S ribosomal protein L15e	25.3834686380
+UniRef50_Q6L0P2: 50S ribosomal protein L15e|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.3834686380
+UniRef50_F4BY74: Acyl-coenzyme A synthetase	25.3795258427
+UniRef50_F4BY74: Acyl-coenzyme A synthetase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.3795258427
+UniRef50_P39161: Uxu operon transcriptional regulator	25.3760951481
+UniRef50_P39161: Uxu operon transcriptional regulator|g__Escherichia.s__Escherichia_coli	25.3760951481
+UniRef50_R7PVP7	25.3740307537
+UniRef50_R7PVP7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.3740307537
+UniRef50_F5X205: GNAT family acetyltransferase	25.3705576708
+UniRef50_F5X205: GNAT family acetyltransferase|g__Streptococcus.s__Streptococcus_mutans	25.3705576708
+UniRef50_Q4QLU9: 23S rRNA (uracil(747)-C(5))-methyltransferase RlmC	25.3701944869
+UniRef50_Q4QLU9: 23S rRNA (uracil(747)-C(5))-methyltransferase RlmC|g__Escherichia.s__Escherichia_coli	25.3701944869
+UniRef50_Q5HNA9	25.3648078944
+UniRef50_Q5HNA9|g__Staphylococcus.s__Staphylococcus_epidermidis	17.2007552934
+UniRef50_Q5HNA9|unclassified	8.1640526010
+UniRef50_A5UNV0	25.3637229361
+UniRef50_A5UNV0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.3637229361
+UniRef50_P32152: Putative frv operon regulatory protein	25.3627743538
+UniRef50_P32152: Putative frv operon regulatory protein|g__Escherichia.s__Escherichia_coli	25.3627743538
+UniRef50_R9SLZ9: Energy-converting hydrogenase B subunit O EhbO	25.3594604320
+UniRef50_R9SLZ9: Energy-converting hydrogenase B subunit O EhbO|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.3594604320
+UniRef50_Q1RA65	25.3554203861
+UniRef50_Q1RA65|g__Escherichia.s__Escherichia_coli	25.3554203861
+UniRef50_P0AE38: Arginine N-succinyltransferase	25.3497696058
+UniRef50_P0AE38: Arginine N-succinyltransferase|g__Escherichia.s__Escherichia_coli	18.9638972318
+UniRef50_P0AE38: Arginine N-succinyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5829403912
+UniRef50_P0AE38: Arginine N-succinyltransferase|unclassified	1.4330689691
+UniRef50_P0AE38: Arginine N-succinyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3698630137
+UniRef50_F6D1X0: Peptidyl-prolyl cis-trans isomerase	25.3465381466
+UniRef50_F6D1X0: Peptidyl-prolyl cis-trans isomerase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.3465381466
+UniRef50_P26389: Colanic acid biosynthesis protein WcaM	25.3431862263
+UniRef50_P26389: Colanic acid biosynthesis protein WcaM|g__Escherichia.s__Escherichia_coli	25.3431862263
+UniRef50_A5UMI0: Zn-dependent protease, peptidase M48 family	25.3405343486
+UniRef50_A5UMI0: Zn-dependent protease, peptidase M48 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.3405343486
+UniRef50_P76045: Outer membrane protein G	25.3385566576
+UniRef50_P76045: Outer membrane protein G|g__Escherichia.s__Escherichia_coli	25.3385566576
+UniRef50_U6EDC0: Methyl-viologen-reducing hydrogenase subunit delta	25.3301647383
+UniRef50_U6EDC0: Methyl-viologen-reducing hydrogenase subunit delta|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.3301647383
+UniRef50_E8TBW5: Sugar ABC transporter	25.3290433203
+UniRef50_E8TBW5: Sugar ABC transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.0619912650
+UniRef50_E8TBW5: Sugar ABC transporter|unclassified	0.2670520553
+UniRef50_O27126: DNA-directed RNA polymerase subunit A''	25.3252672205
+UniRef50_O27126: DNA-directed RNA polymerase subunit A''|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.3252672205
+UniRef50_A1B2Z9: GCN5-related N-acetyltransferase	25.3227343747
+UniRef50_A1B2Z9: GCN5-related N-acetyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.3227343747
+UniRef50_F5M1J1: Prophage CP4-57 regulatory	25.3205128205
+UniRef50_F5M1J1: Prophage CP4-57 regulatory|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.3205128205
+UniRef50_A3PL14: Regulatory protein, PpaA	25.3201348668
+UniRef50_A3PL14: Regulatory protein, PpaA|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.3201348668
+UniRef50_R4ZMT7: Additional lipoprotein component of predicted cobalamin ECF transporter	25.3179707082
+UniRef50_R4ZMT7: Additional lipoprotein component of predicted cobalamin ECF transporter|g__Streptococcus.s__Streptococcus_mutans	25.3179707082
+UniRef50_Q8X5V6: tRNA-dihydrouridine synthase A	25.3161160589
+UniRef50_Q8X5V6: tRNA-dihydrouridine synthase A|g__Escherichia.s__Escherichia_coli	24.1925205532
+UniRef50_Q8X5V6: tRNA-dihydrouridine synthase A|g__Acinetobacter.s__Acinetobacter_baumannii	1.1235955056
+UniRef50_A1B346: FixH family protein	25.3161087291
+UniRef50_A1B346: FixH family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.6446473241
+UniRef50_A1B346: FixH family protein|unclassified	0.6714614050
+UniRef50_Q8TYD7: GMP synthase [glutamine-hydrolyzing] subunit B	25.3157422440
+UniRef50_Q8TYD7: GMP synthase [glutamine-hydrolyzing] subunit B|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.3157422440
+UniRef50_P0ADD5: Inner membrane protein YjjP	25.3149782274
+UniRef50_P0ADD5: Inner membrane protein YjjP|g__Escherichia.s__Escherichia_coli	25.3149782274
+UniRef50_Q8SDT3: Phi105 orf 44-like protein	25.3130907886
+UniRef50_Q8SDT3: Phi105 orf 44-like protein|g__Staphylococcus.s__Staphylococcus_aureus	25.3130907886
+UniRef50_Q57GZ6: Maltoporin	25.3123219111
+UniRef50_Q57GZ6: Maltoporin|g__Escherichia.s__Escherichia_coli	25.3123219111
+UniRef50_P37663	25.3101262893
+UniRef50_P37663|g__Escherichia.s__Escherichia_coli	25.3101262893
+UniRef50_A0KTT2: 4-hydroxy-tetrahydrodipicolinate reductase	25.3047025609
+UniRef50_A0KTT2: 4-hydroxy-tetrahydrodipicolinate reductase|g__Escherichia.s__Escherichia_coli	23.0058519862
+UniRef50_A0KTT2: 4-hydroxy-tetrahydrodipicolinate reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2988505747
+UniRef50_Q9S0M6: Dihydrouridine synthase family protein	25.3029890309
+UniRef50_Q9S0M6: Dihydrouridine synthase family protein|g__Staphylococcus.s__Staphylococcus_aureus	25.3029890309
+UniRef50_B1JFW5: Putative sialic acid transporter	25.3012117019
+UniRef50_B1JFW5: Putative sialic acid transporter|g__Escherichia.s__Escherichia_coli	25.3012117019
+UniRef50_Q02394: 5,10-methenyltetrahydromethanopterin hydrogenase	25.2992577878
+UniRef50_Q02394: 5,10-methenyltetrahydromethanopterin hydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.2992577878
+UniRef50_D3E0Y1: Thymidylate synthase ThyA	25.2831314923
+UniRef50_D3E0Y1: Thymidylate synthase ThyA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.2831314923
+UniRef50_A5UMP4: Cobalamin biosynthesis protein G, CbiG	25.2752051846
+UniRef50_A5UMP4: Cobalamin biosynthesis protein G, CbiG|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.2752051846
+UniRef50_R7PSP1	25.2740851154
+UniRef50_R7PSP1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.2740851154
+UniRef50_A4VL64: RNA polymerase sigma factor SigX	25.2678863881
+UniRef50_A4VL64: RNA polymerase sigma factor SigX|g__Pseudomonas.s__Pseudomonas_aeruginosa	25.2678863881
+UniRef50_O27390: Diaminopimelate decarboxylase	25.2546175496
+UniRef50_O27390: Diaminopimelate decarboxylase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.2133959745
+UniRef50_O27390: Diaminopimelate decarboxylase|unclassified	0.0412215751
+UniRef50_Q57240	25.2497007878
+UniRef50_Q57240|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.2497007878
+UniRef50_UPI0004721200: hypothetical protein, partial	25.2464864951
+UniRef50_UPI0004721200: hypothetical protein, partial|unclassified	25.2464864951
+UniRef50_B2A6B3: 50S ribosomal protein L21	25.2449818404
+UniRef50_B2A6B3: 50S ribosomal protein L21|g__Staphylococcus.s__Staphylococcus_aureus	15.1820972946
+UniRef50_B2A6B3: 50S ribosomal protein L21|g__Staphylococcus.s__Staphylococcus_epidermidis	10.0628845458
+UniRef50_A0A017TPE1	25.2413793103
+UniRef50_A0A017TPE1|g__Staphylococcus.s__Staphylococcus_aureus	25.2413793103
+UniRef50_Q13DH5: Transcriptional regulator, LysR family	25.2388777124
+UniRef50_Q13DH5: Transcriptional regulator, LysR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.2388777124
+UniRef50_P0ADM6	25.2350843907
+UniRef50_P0ADM6|g__Escherichia.s__Escherichia_coli	25.2350843907
+UniRef50_P0ACV7: Protein MpaA	25.2306389799
+UniRef50_P0ACV7: Protein MpaA|g__Escherichia.s__Escherichia_coli	25.2306389799
+UniRef50_A5UNW2	25.2254354551
+UniRef50_A5UNW2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.6759657804
+UniRef50_A5UNW2|unclassified	0.5494696747
+UniRef50_P32129: Probable acyltransferase YihG	25.2242714918
+UniRef50_P32129: Probable acyltransferase YihG|g__Escherichia.s__Escherichia_coli	25.2242714918
+UniRef50_A0A023XD37	25.2234174128
+UniRef50_A0A023XD37|unclassified	25.2234174128
+UniRef50_P0A2K8: UTP--glucose-1-phosphate uridylyltransferase	25.2214847510
+UniRef50_P0A2K8: UTP--glucose-1-phosphate uridylyltransferase|g__Escherichia.s__Escherichia_coli	23.1997096042
+UniRef50_P0A2K8: UTP--glucose-1-phosphate uridylyltransferase|unclassified	2.0217751468
+UniRef50_Q8DWC2: Peptide deformylase	25.2213441243
+UniRef50_Q8DWC2: Peptide deformylase|g__Streptococcus.s__Streptococcus_mutans	24.9964042621
+UniRef50_Q8DWC2: Peptide deformylase|unclassified	0.2249398622
+UniRef50_L0NCG3	25.2205465751
+UniRef50_L0NCG3|unclassified	25.2205465751
+UniRef50_A3PNZ4: Transcriptional regulator, SARP family	25.2117441274
+UniRef50_A3PNZ4: Transcriptional regulator, SARP family|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.2117441274
+UniRef50_Q5HLA2	25.2100840336
+UniRef50_Q5HLA2|g__Staphylococcus.s__Staphylococcus_epidermidis	25.2100840336
+UniRef50_P24202: Mrr restriction system protein	25.2077841418
+UniRef50_P24202: Mrr restriction system protein|g__Escherichia.s__Escherichia_coli	25.2077841418
+UniRef50_P96349: Cold shock protein 2	25.1970384524
+UniRef50_P96349: Cold shock protein 2|g__Staphylococcus.s__Staphylococcus_epidermidis	25.1970384524
+UniRef50_Q0W484: Homoserine O-acetyltransferase	25.1928064078
+UniRef50_Q0W484: Homoserine O-acetyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.1928064078
+UniRef50_Q0BZG8: RND transporter, hydrophobe/amphiphile efflux-1 (HAE1) family, permease protein	25.1927692708
+UniRef50_Q0BZG8: RND transporter, hydrophobe/amphiphile efflux-1 (HAE1) family, permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.1927692708
+UniRef50_A5UNZ2: Magnesium chelatase subunit	25.1882252764
+UniRef50_A5UNZ2: Magnesium chelatase subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.1882252764
+UniRef50_A8ALR3: L-carnitine/gamma-butyrobetaine antiporter	25.1828178647
+UniRef50_A8ALR3: L-carnitine/gamma-butyrobetaine antiporter|g__Escherichia.s__Escherichia_coli	25.1828178647
+UniRef50_Q59042: Phosphoribosylformylglycinamidine synthase 1	25.1718304158
+UniRef50_Q59042: Phosphoribosylformylglycinamidine synthase 1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.1718304158
+UniRef50_P39277: Inner membrane protein YjeH	25.1705619979
+UniRef50_P39277: Inner membrane protein YjeH|g__Escherichia.s__Escherichia_coli	25.1705619979
+UniRef50_P52133	25.1609102851
+UniRef50_P52133|g__Escherichia.s__Escherichia_coli	25.1609102851
+UniRef50_Q06115: Choloylglycine hydrolase	25.1586309628
+UniRef50_Q06115: Choloylglycine hydrolase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.1586309628
+UniRef50_Q3J096	25.1497157303
+UniRef50_Q3J096|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.1630980854
+UniRef50_Q3J096|unclassified	11.9866176449
+UniRef50_D8HGM5	25.1488095238
+UniRef50_D8HGM5|g__Staphylococcus.s__Staphylococcus_aureus	25.1488095238
+UniRef50_P08194: Glycerol-3-phosphate transporter	25.1464564173
+UniRef50_P08194: Glycerol-3-phosphate transporter|g__Escherichia.s__Escherichia_coli	25.1464564173
+UniRef50_A5UM16: Phosphoribosylformylglycinamidine cyclo-ligase	25.1414892542
+UniRef50_A5UM16: Phosphoribosylformylglycinamidine cyclo-ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.1414892542
+UniRef50_A4VTV7: Acetyltransferase (Isoleucine patch superfamily)	25.1391885964
+UniRef50_A4VTV7: Acetyltransferase (Isoleucine patch superfamily)|g__Streptococcus.s__Streptococcus_agalactiae	25.1391885964
+UniRef50_Q7NNG3: Phosphate import ATP-binding protein PstB 2	25.1321722875
+UniRef50_Q7NNG3: Phosphate import ATP-binding protein PstB 2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.5605414974
+UniRef50_Q7NNG3: Phosphate import ATP-binding protein PstB 2|g__Clostridium.s__Clostridium_beijerinckii	4.5179547229
+UniRef50_Q7NNG3: Phosphate import ATP-binding protein PstB 2|unclassified	0.0536760672
+UniRef50_R7PYG7	25.1302941452
+UniRef50_R7PYG7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.1302941452
+UniRef50_P58586: Putative gluconeogenesis factor	25.1295194685
+UniRef50_P58586: Putative gluconeogenesis factor|g__Escherichia.s__Escherichia_coli	25.1295194685
+UniRef50_P0AE47: UPF0053 inner membrane protein YtfL	25.1239490032
+UniRef50_P0AE47: UPF0053 inner membrane protein YtfL|g__Escherichia.s__Escherichia_coli	25.1239490032
+UniRef50_UPI00037E75DF: histidine kinase, partial	25.1228443011
+UniRef50_UPI00037E75DF: histidine kinase, partial|g__Streptococcus.s__Streptococcus_mutans	22.3278519347
+UniRef50_UPI00037E75DF: histidine kinase, partial|unclassified	2.7949923664
+UniRef50_O27041: V-type ATP synthase subunit I	25.1173853364
+UniRef50_O27041: V-type ATP synthase subunit I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.1173853364
+UniRef50_B9DTE1: Major Facilitator Superfamily protein	25.1067308176
+UniRef50_B9DTE1: Major Facilitator Superfamily protein|g__Streptococcus.s__Streptococcus_mutans	25.1067308176
+UniRef50_A5ULJ5	25.1040327615
+UniRef50_A5ULJ5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.1040327615
+UniRef50_A5UM89: Adhesin-like protein	25.1020552721
+UniRef50_A5UM89: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.0161656814
+UniRef50_A5UM89: Adhesin-like protein|unclassified	0.0858895907
+UniRef50_P77529	25.1019142257
+UniRef50_P77529|g__Escherichia.s__Escherichia_coli	25.1019142257
+UniRef50_A7MK41: Ribosomal RNA large subunit methyltransferase H	25.0966816884
+UniRef50_A7MK41: Ribosomal RNA large subunit methyltransferase H|g__Escherichia.s__Escherichia_coli	25.0966816884
+UniRef50_B7MDM9: Phosphoenolpyruvate carboxykinase [ATP]	25.0939906489
+UniRef50_B7MDM9: Phosphoenolpyruvate carboxykinase [ATP]|g__Escherichia.s__Escherichia_coli	25.0095334682
+UniRef50_B7MDM9: Phosphoenolpyruvate carboxykinase [ATP]|unclassified	0.0844571807
+UniRef50_I2DGR3: Phage/colicin/tellurite resistance cluster TerY protein	25.0933532487
+UniRef50_I2DGR3: Phage/colicin/tellurite resistance cluster TerY protein|g__Helicobacter.s__Helicobacter_pylori	25.0933532487
+UniRef50_R7PSW3	25.0925779561
+UniRef50_R7PSW3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.0925779561
+UniRef50_T2EA26: Methyltransferase domain protein	25.0734080312
+UniRef50_T2EA26: Methyltransferase domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	25.0734080312
+UniRef50_P30847: Signal transduction histidine-protein kinase BaeS	25.0705937615
+UniRef50_P30847: Signal transduction histidine-protein kinase BaeS|g__Escherichia.s__Escherichia_coli	25.0705937615
+UniRef50_B5REH0: G/U mismatch-specific DNA glycosylase	25.0699589980
+UniRef50_B5REH0: G/U mismatch-specific DNA glycosylase|g__Escherichia.s__Escherichia_coli	25.0699589980
+UniRef50_P56902: 3-oxoacyl-[acyl-carrier-protein] synthase 2	25.0641943030
+UniRef50_P56902: 3-oxoacyl-[acyl-carrier-protein] synthase 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.9718082322
+UniRef50_P56902: 3-oxoacyl-[acyl-carrier-protein] synthase 2|unclassified	0.0923860707
+UniRef50_P76168: Putative lambdoid prophage Qin defective integrase (Fragment)	25.0612830470
+UniRef50_P76168: Putative lambdoid prophage Qin defective integrase (Fragment)|g__Escherichia.s__Escherichia_coli	25.0612830470
+UniRef50_P32703	25.0596580265
+UniRef50_P32703|g__Escherichia.s__Escherichia_coli	25.0596580265
+UniRef50_A6X3Z0	25.0582750583
+UniRef50_A6X3Z0|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.0582750583
+UniRef50_P28246: Bicyclomycin resistance protein	25.0484593186
+UniRef50_P28246: Bicyclomycin resistance protein|g__Escherichia.s__Escherichia_coli	25.0484593186
+UniRef50_O32867: Tetrahydromethanopterin S-methyltransferase subunit A	25.0474143725
+UniRef50_O32867: Tetrahydromethanopterin S-methyltransferase subunit A|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.0474143725
+UniRef50_C6KV56: UDP-glucose pyrophosphorylase	25.0473729991
+UniRef50_C6KV56: UDP-glucose pyrophosphorylase|unclassified	25.0473729991
+UniRef50_E3A6M0	25.0413772785
+UniRef50_E3A6M0|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.5698517416
+UniRef50_E3A6M0|unclassified	8.4715255369
+UniRef50_R7PWW4	25.0391481042
+UniRef50_R7PWW4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.0391481042
+UniRef50_B6ZYE2: Galactosamine-6-phosphate isomerase	25.0391236307
+UniRef50_B6ZYE2: Galactosamine-6-phosphate isomerase|g__Escherichia.s__Escherichia_coli	25.0391236307
+UniRef50_B2IIK5: tRNA-2-methylthio-N(6)-dimethylallyladenosine synthase	25.0366433923
+UniRef50_B2IIK5: tRNA-2-methylthio-N(6)-dimethylallyladenosine synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	25.0366433923
+UniRef50_A1A9I1: Formate transporter	25.0362066282
+UniRef50_A1A9I1: Formate transporter|g__Escherichia.s__Escherichia_coli	25.0362066282
+UniRef50_N4Y922: Phosphatidylglycerol lysyltransferase	25.0361354325
+UniRef50_N4Y922: Phosphatidylglycerol lysyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	25.0361354325
+UniRef50_D3DZ23: GMC oxidoreductase family protein	25.0352411683
+UniRef50_D3DZ23: GMC oxidoreductase family protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.0352411683
+UniRef50_Q18KF1: ABC-type transport system ATP-binding protein	25.0339254377
+UniRef50_Q18KF1: ABC-type transport system ATP-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.0339254377
+UniRef50_A6M027: YCII-related	25.0336052459
+UniRef50_A6M027: YCII-related|g__Streptococcus.s__Streptococcus_mutans	25.0336052459
+UniRef50_O27308: Ferredoxin-like protein	25.0100553981
+UniRef50_O27308: Ferredoxin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.0100553981
+UniRef50_A5UN80	25.0048817081
+UniRef50_A5UN80|g__Methanobrevibacter.s__Methanobrevibacter_smithii	25.0048817081
+UniRef50_P75736: Esterase YbfF	25.0037161164
+UniRef50_P75736: Esterase YbfF|g__Escherichia.s__Escherichia_coli	25.0037161164
+UniRef50_M5INE2	25.0000000000
+UniRef50_M5INE2|unclassified	25.0000000000
+UniRef50_Q65H61: 30S ribosomal protein S21	25.0000000000
+UniRef50_Q65H61: 30S ribosomal protein S21|g__Streptococcus.s__Streptococcus_mutans	25.0000000000
+UniRef50_W1WRP1	25.0000000000
+UniRef50_W1WRP1|unclassified	25.0000000000
+UniRef50_P0AD19: Inner membrane protein YohK	24.9985062721
+UniRef50_P0AD19: Inner membrane protein YohK|g__Escherichia.s__Escherichia_coli	24.9985062721
+UniRef50_P0AF19: N-acetylglucosamine-6-phosphate deacetylase	24.9976389424
+UniRef50_P0AF19: N-acetylglucosamine-6-phosphate deacetylase|g__Escherichia.s__Escherichia_coli	24.3384374054
+UniRef50_P0AF19: N-acetylglucosamine-6-phosphate deacetylase|unclassified	0.6592015371
+UniRef50_P27129: Lipopolysaccharide 1,2-glucosyltransferase	24.9938922276
+UniRef50_P27129: Lipopolysaccharide 1,2-glucosyltransferase|g__Escherichia.s__Escherichia_coli	24.9938922276
+UniRef50_Q3IXS5	24.9928543211
+UniRef50_Q3IXS5|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.8952226295
+UniRef50_Q3IXS5|unclassified	8.0976316916
+UniRef50_P37604: D-alanyl-D-alanine carboxypeptidase DacD	24.9903183789
+UniRef50_P37604: D-alanyl-D-alanine carboxypeptidase DacD|g__Escherichia.s__Escherichia_coli	24.9903183789
+UniRef50_P45768: Inner membrane amino-acid ABC transporter permease protein YhdY	24.9859721420
+UniRef50_P45768: Inner membrane amino-acid ABC transporter permease protein YhdY|g__Escherichia.s__Escherichia_coli	24.9859721420
+UniRef50_Q9PHC7: Oxygen-dependent coproporphyrinogen-III oxidase	24.9817141908
+UniRef50_Q9PHC7: Oxygen-dependent coproporphyrinogen-III oxidase|g__Escherichia.s__Escherichia_coli	22.9981188851
+UniRef50_Q9PHC7: Oxygen-dependent coproporphyrinogen-III oxidase|g__Acinetobacter.s__Acinetobacter_baumannii	1.7605633803
+UniRef50_Q9PHC7: Oxygen-dependent coproporphyrinogen-III oxidase|unclassified	0.2230319255
+UniRef50_A5UJ57: Putative manganese efflux pump MntP	24.9814573968
+UniRef50_A5UJ57: Putative manganese efflux pump MntP|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.9814573968
+UniRef50_Q9ZLC0: Anaerobic C4-dicarboxylate transporter DcuA	24.9801865892
+UniRef50_Q9ZLC0: Anaerobic C4-dicarboxylate transporter DcuA|g__Escherichia.s__Escherichia_coli	23.9545455636
+UniRef50_Q9ZLC0: Anaerobic C4-dicarboxylate transporter DcuA|g__Helicobacter.s__Helicobacter_pylori	1.0256410256
+UniRef50_O27047: tRNA(Ile2) 2-agmatinylcytidine synthetase TiaS	24.9783643080
+UniRef50_O27047: tRNA(Ile2) 2-agmatinylcytidine synthetase TiaS|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.9783643080
+UniRef50_Q9KNM9: K(+)/H(+) antiporter NhaP2	24.9780310422
+UniRef50_Q9KNM9: K(+)/H(+) antiporter NhaP2|g__Escherichia.s__Escherichia_coli	23.4395367311
+UniRef50_Q9KNM9: K(+)/H(+) antiporter NhaP2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5384943111
+UniRef50_O05255	24.9751842803
+UniRef50_O05255|g__Streptococcus.s__Streptococcus_mutans	21.8510501258
+UniRef50_O05255|g__Streptococcus.s__Streptococcus_agalactiae	3.1241341545
+UniRef50_Q87VS1: tRNA-dihydrouridine synthase B	24.9669731982
+UniRef50_Q87VS1: tRNA-dihydrouridine synthase B|g__Escherichia.s__Escherichia_coli	20.8077848643
+UniRef50_Q87VS1: tRNA-dihydrouridine synthase B|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0908675748
+UniRef50_Q87VS1: tRNA-dihydrouridine synthase B|unclassified	0.0683207591
+UniRef50_P37417: UDP-N-acetylenolpyruvoylglucosamine reductase	24.9647038906
+UniRef50_P37417: UDP-N-acetylenolpyruvoylglucosamine reductase|g__Escherichia.s__Escherichia_coli	24.9647038906
+UniRef50_I6U2R2	24.9598095416
+UniRef50_I6U2R2|g__Streptococcus.s__Streptococcus_mutans	24.1723192191
+UniRef50_I6U2R2|unclassified	0.7874903225
+UniRef50_F7ZBE6: Protein MazG	24.9595835814
+UniRef50_F7ZBE6: Protein MazG|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.8062235663
+UniRef50_F7ZBE6: Protein MazG|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7341129386
+UniRef50_F7ZBE6: Protein MazG|unclassified	0.4192470766
+UniRef50_V2I282: FAD linked oxidase	24.9588450255
+UniRef50_V2I282: FAD linked oxidase|g__Escherichia.s__Escherichia_coli	24.9588450255
+UniRef50_B1J061: UPF0178 protein YaiI	24.9586645033
+UniRef50_B1J061: UPF0178 protein YaiI|g__Escherichia.s__Escherichia_coli	24.9586645033
+UniRef50_Q02443: Protein PucC	24.9565234435
+UniRef50_Q02443: Protein PucC|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.9565234435
+UniRef50_P52108: Transcriptional regulatory protein RstA	24.9533330335
+UniRef50_P52108: Transcriptional regulatory protein RstA|g__Escherichia.s__Escherichia_coli	24.9533330335
+UniRef50_S9S5F9: Malate synthase G	24.9523882038
+UniRef50_S9S5F9: Malate synthase G|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.9523882038
+UniRef50_B5F2L4: Elongation factor P	24.9489527319
+UniRef50_B5F2L4: Elongation factor P|g__Escherichia.s__Escherichia_coli	24.9489527319
+UniRef50_A5UJT6	24.9422824486
+UniRef50_A5UJT6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.9422824486
+UniRef50_P45475	24.9362703574
+UniRef50_P45475|g__Escherichia.s__Escherichia_coli	24.9362703574
+UniRef50_F9CIF9	24.9321444065
+UniRef50_F9CIF9|unclassified	24.9321444065
+UniRef50_Q8VNN2: Beta-galactosidase	24.9319328303
+UniRef50_Q8VNN2: Beta-galactosidase|g__Escherichia.s__Escherichia_coli	24.9319328303
+UniRef50_P24200: 5-methylcytosine-specific restriction enzyme A	24.9292883254
+UniRef50_P24200: 5-methylcytosine-specific restriction enzyme A|g__Escherichia.s__Escherichia_coli	24.9292883254
+UniRef50_D3E1V5: CBS domain-containing protein	24.9283143051
+UniRef50_D3E1V5: CBS domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.9283143051
+UniRef50_P66951: Beta-barrel assembly-enhancing protease	24.9262227160
+UniRef50_P66951: Beta-barrel assembly-enhancing protease|g__Escherichia.s__Escherichia_coli	23.5037960106
+UniRef50_P66951: Beta-barrel assembly-enhancing protease|unclassified	1.4224267054
+UniRef50_P21514: Cyclic di-GMP phosphodiesterase YahA	24.9242710856
+UniRef50_P21514: Cyclic di-GMP phosphodiesterase YahA|g__Escherichia.s__Escherichia_coli	24.9242710856
+UniRef50_C4K7X8: Phosphoheptose isomerase	24.9241711644
+UniRef50_C4K7X8: Phosphoheptose isomerase|g__Escherichia.s__Escherichia_coli	24.7076516599
+UniRef50_C4K7X8: Phosphoheptose isomerase|unclassified	0.2165195046
+UniRef50_X8L2K3: Putative aldehyde-alcohol dehydrogenase (Fragment)	24.9198250061
+UniRef50_X8L2K3: Putative aldehyde-alcohol dehydrogenase (Fragment)|g__Escherichia.s__Escherichia_coli	24.9198250061
+UniRef50_P46139: Probable diguanylate cyclase YfiN	24.9136608896
+UniRef50_P46139: Probable diguanylate cyclase YfiN|g__Escherichia.s__Escherichia_coli	24.9136608896
+UniRef50_Q4L7V3: mRNA interferase MazF	24.9102395089
+UniRef50_Q4L7V3: mRNA interferase MazF|g__Staphylococcus.s__Staphylococcus_aureus	13.0405969448
+UniRef50_Q4L7V3: mRNA interferase MazF|g__Staphylococcus.s__Staphylococcus_epidermidis	11.8696425641
+UniRef50_Q6LQB9: HTH-type transcriptional repressor PurR	24.9085305713
+UniRef50_Q6LQB9: HTH-type transcriptional repressor PurR|g__Escherichia.s__Escherichia_coli	24.9085305713
+UniRef50_Q8X534: Enterobactin exporter EntS	24.9070192223
+UniRef50_Q8X534: Enterobactin exporter EntS|g__Escherichia.s__Escherichia_coli	24.9070192223
+UniRef50_Q2FF13: Low molecular weight protein-tyrosine-phosphatase PtpB	24.9019230417
+UniRef50_Q2FF13: Low molecular weight protein-tyrosine-phosphatase PtpB|g__Staphylococcus.s__Staphylococcus_aureus	24.9019230417
+UniRef50_I6TNE5: Bacteriophage replication gene A protein (GPA)	24.8989165774
+UniRef50_I6TNE5: Bacteriophage replication gene A protein (GPA)|g__Streptococcus.s__Streptococcus_mutans	16.5888082632
+UniRef50_I6TNE5: Bacteriophage replication gene A protein (GPA)|unclassified	8.3101083141
+UniRef50_P06131: Formate dehydrogenase subunit alpha	24.8970697965
+UniRef50_P06131: Formate dehydrogenase subunit alpha|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.8664391413
+UniRef50_P06131: Formate dehydrogenase subunit alpha|unclassified	0.0306306552
+UniRef50_A5UJX8: Peptide/nickel ABC transporter, permease component, DppB	24.8825729217
+UniRef50_A5UJX8: Peptide/nickel ABC transporter, permease component, DppB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.8825729217
+UniRef50_B5FN15: Multidrug resistance protein MdtL	24.8813911469
+UniRef50_B5FN15: Multidrug resistance protein MdtL|g__Escherichia.s__Escherichia_coli	24.8813911469
+UniRef50_I4SI86: Phenylacetate-CoA ligase	24.8724945644
+UniRef50_I4SI86: Phenylacetate-CoA ligase|g__Escherichia.s__Escherichia_coli	24.8724945644
+UniRef50_Q8CSP4: UPF0291 protein SE_1024	24.8699317908
+UniRef50_Q8CSP4: UPF0291 protein SE_1024|g__Staphylococcus.s__Staphylococcus_aureus	13.5492950832
+UniRef50_Q8CSP4: UPF0291 protein SE_1024|g__Staphylococcus.s__Staphylococcus_epidermidis	11.3206367076
+UniRef50_A8IAB0: Amino acid ABC transporter permease protein	24.8695571047
+UniRef50_A8IAB0: Amino acid ABC transporter permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.8695571047
+UniRef50_P28249: Protein AsmA	24.8675327920
+UniRef50_P28249: Protein AsmA|g__Escherichia.s__Escherichia_coli	24.8675327920
+UniRef50_Q3IWC2	24.8622577432
+UniRef50_Q3IWC2|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.9074959060
+UniRef50_Q3IWC2|unclassified	5.9547618372
+UniRef50_P11988: 6-phospho-beta-glucosidase BglB	24.8531231603
+UniRef50_P11988: 6-phospho-beta-glucosidase BglB|g__Escherichia.s__Escherichia_coli	24.4249789897
+UniRef50_P11988: 6-phospho-beta-glucosidase BglB|unclassified	0.4281441706
+UniRef50_D4J6G0: Amino acid ABC transporter substrate-binding protein, PAAT family (TC 3.A.1.3.-)	24.8441007234
+UniRef50_D4J6G0: Amino acid ABC transporter substrate-binding protein, PAAT family (TC 3.A.1.3.-)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.8441007234
+UniRef50_D3E1B3: Transposase	24.8387871942
+UniRef50_D3E1B3: Transposase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.8387871942
+UniRef50_Q8CTQ9: Protein VraC	24.8255886733
+UniRef50_Q8CTQ9: Protein VraC|g__Staphylococcus.s__Staphylococcus_epidermidis	24.8255886733
+UniRef50_Q8DTK1	24.8222276418
+UniRef50_Q8DTK1|g__Streptococcus.s__Streptococcus_mutans	24.8222276418
+UniRef50_D3DYK7: ATPase	24.8148836457
+UniRef50_D3DYK7: ATPase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.8148836457
+UniRef50_Q8X613: Transcriptional regulatory protein ZraR	24.8108737909
+UniRef50_Q8X613: Transcriptional regulatory protein ZraR|g__Escherichia.s__Escherichia_coli	24.8108737909
+UniRef50_D3DZ50: Nicotinate phosphoribosyltransferase	24.8058405881
+UniRef50_D3DZ50: Nicotinate phosphoribosyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.8058405881
+UniRef50_Q9K0Y6: Phospho-N-acetylmuramoyl-pentapeptide-transferase	24.8041362963
+UniRef50_Q9K0Y6: Phospho-N-acetylmuramoyl-pentapeptide-transferase|g__Escherichia.s__Escherichia_coli	17.1503569499
+UniRef50_Q9K0Y6: Phospho-N-acetylmuramoyl-pentapeptide-transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3667780594
+UniRef50_Q9K0Y6: Phospho-N-acetylmuramoyl-pentapeptide-transferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.2870012870
+UniRef50_C6SPD8	24.8031094565
+UniRef50_C6SPD8|g__Streptococcus.s__Streptococcus_mutans	24.8031094565
+UniRef50_B2IUI4: S-adenosylmethionine synthase	24.7953860175
+UniRef50_B2IUI4: S-adenosylmethionine synthase|g__Escherichia.s__Escherichia_coli	18.0123625119
+UniRef50_B2IUI4: S-adenosylmethionine synthase|g__Clostridium.s__Clostridium_beijerinckii	6.6763013189
+UniRef50_B2IUI4: S-adenosylmethionine synthase|unclassified	0.1067221867
+UniRef50_Q47537: Taurine-binding periplasmic protein	24.7877633100
+UniRef50_Q47537: Taurine-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	17.7086325499
+UniRef50_Q47537: Taurine-binding periplasmic protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0791307601
+UniRef50_A5UKK1: DNA-binding protein MutS2	24.7865565474
+UniRef50_A5UKK1: DNA-binding protein MutS2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.7865565474
+UniRef50_Q8DVU8: Putative hydrolase SMU_367	24.7852066556
+UniRef50_Q8DVU8: Putative hydrolase SMU_367|g__Streptococcus.s__Streptococcus_mutans	24.7852066556
+UniRef50_B9DS55: Sortase A	24.7737968243
+UniRef50_B9DS55: Sortase A|g__Streptococcus.s__Streptococcus_mutans	24.7737968243
+UniRef50_P78283: Protein translocase subunit SecY	24.7728977783
+UniRef50_P78283: Protein translocase subunit SecY|g__Escherichia.s__Escherichia_coli	23.1158570182
+UniRef50_P78283: Protein translocase subunit SecY|g__Neisseria.s__Neisseria_meningitidis	0.9157509158
+UniRef50_P78283: Protein translocase subunit SecY|g__Acinetobacter.s__Acinetobacter_baumannii	0.7412898443
+UniRef50_P46122	24.7722195229
+UniRef50_P46122|g__Escherichia.s__Escherichia_coli	24.7722195229
+UniRef50_A5UL56: Molybdopterin biosynthesis protein, MoeB	24.7603426620
+UniRef50_A5UL56: Molybdopterin biosynthesis protein, MoeB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.7603426620
+UniRef50_Y3DCZ9	24.7602146695
+UniRef50_Y3DCZ9|g__Staphylococcus.s__Staphylococcus_aureus	24.7602146695
+UniRef50_Q8FJ67	24.7558341005
+UniRef50_Q8FJ67|g__Escherichia.s__Escherichia_coli	23.2228448327
+UniRef50_Q8FJ67|unclassified	1.5329892678
+UniRef50_J8UXH9	24.7524752475
+UniRef50_J8UXH9|unclassified	24.7524752475
+UniRef50_I6SVC2	24.7517925524
+UniRef50_I6SVC2|g__Streptococcus.s__Streptococcus_mutans	24.7517925524
+UniRef50_P27833: dTDP-4-amino-4,6-dideoxygalactose transaminase	24.7461878035
+UniRef50_P27833: dTDP-4-amino-4,6-dideoxygalactose transaminase|g__Escherichia.s__Escherichia_coli	24.7461878035
+UniRef50_J7R4R4: Pleiotrophic effects on 3 hydrogenase isozymes	24.7434198515
+UniRef50_J7R4R4: Pleiotrophic effects on 3 hydrogenase isozymes|g__Escherichia.s__Escherichia_coli	24.7434198515
+UniRef50_P07026: Regulatory protein SdiA	24.7411730034
+UniRef50_P07026: Regulatory protein SdiA|g__Escherichia.s__Escherichia_coli	24.7411730034
+UniRef50_Q0TLV3: Carnitinyl-CoA dehydratase	24.7219041277
+UniRef50_Q0TLV3: Carnitinyl-CoA dehydratase|g__Escherichia.s__Escherichia_coli	24.7219041277
+UniRef50_Q3J225: Bacteriophage head-tail adaptor	24.7188522993
+UniRef50_Q3J225: Bacteriophage head-tail adaptor|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.7188522993
+UniRef50_Q2RWR8: Light-independent protochlorophyllide reductase subunit N	24.7184446266
+UniRef50_Q2RWR8: Light-independent protochlorophyllide reductase subunit N|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.6352613817
+UniRef50_Q2RWR8: Light-independent protochlorophyllide reductase subunit N|unclassified	5.0831832449
+UniRef50_M2EZJ0	24.7172750862
+UniRef50_M2EZJ0|g__Streptococcus.s__Streptococcus_mutans	23.8967107106
+UniRef50_M2EZJ0|unclassified	0.8205643756
+UniRef50_A0A023KKD3	24.7169151951
+UniRef50_A0A023KKD3|g__Escherichia.s__Escherichia_coli	24.7169151951
+UniRef50_R7PWJ9: Glycosyl transferase group 1 family	24.7156695465
+UniRef50_R7PWJ9: Glycosyl transferase group 1 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.7156695465
+UniRef50_Q8DSD8: Single-stranded DNA-binding protein	24.7109479386
+UniRef50_Q8DSD8: Single-stranded DNA-binding protein|g__Streptococcus.s__Streptococcus_mutans	22.2837634725
+UniRef50_Q8DSD8: Single-stranded DNA-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	2.4271844660
+UniRef50_A5UK20: GMP synthase [glutamine-hydrolyzing] subunit A	24.7094749142
+UniRef50_A5UK20: GMP synthase [glutamine-hydrolyzing] subunit A|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.7094749142
+UniRef50_J7Q7T7: Escherichia coli IMT2125 genomic chromosome, IMT2125	24.7084640735
+UniRef50_J7Q7T7: Escherichia coli IMT2125 genomic chromosome, IMT2125|g__Escherichia.s__Escherichia_coli	24.7084640735
+UniRef50_D3DZ14: ABC transporter ATP-binding protein	24.7055948793
+UniRef50_D3DZ14: ABC transporter ATP-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.7055948793
+UniRef50_P76251: D-malate dehydrogenase [decarboxylating]	24.7049685034
+UniRef50_P76251: D-malate dehydrogenase [decarboxylating]|g__Escherichia.s__Escherichia_coli	24.1946538154
+UniRef50_P76251: D-malate dehydrogenase [decarboxylating]|unclassified	0.5103146879
+UniRef50_A3PQ32	24.7040087274
+UniRef50_A3PQ32|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.0152878606
+UniRef50_A3PQ32|unclassified	2.6887208668
+UniRef50_A5UL13: Acetolactate synthase (TPP-requiring), large subunit, IlvB	24.6894307578
+UniRef50_A5UL13: Acetolactate synthase (TPP-requiring), large subunit, IlvB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.6894307578
+UniRef50_Q2NHY7: L-tyrosine decarboxylase	24.6859313294
+UniRef50_Q2NHY7: L-tyrosine decarboxylase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.6859313294
+UniRef50_A7ZKH0: Multidrug resistance protein MdtH	24.6848832285
+UniRef50_A7ZKH0: Multidrug resistance protein MdtH|g__Escherichia.s__Escherichia_coli	24.6848832285
+UniRef50_Q2NFU9: UPF0425 pyridoxal phosphate-dependent protein Msp_0916	24.6835175726
+UniRef50_Q2NFU9: UPF0425 pyridoxal phosphate-dependent protein Msp_0916|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.6835175726
+UniRef50_L2ZQX2: Melibiose carrier protein	24.6799626206
+UniRef50_L2ZQX2: Melibiose carrier protein|g__Escherichia.s__Escherichia_coli	24.6799626206
+UniRef50_Q46855	24.6750544780
+UniRef50_Q46855|g__Escherichia.s__Escherichia_coli	24.6750544780
+UniRef50_Q7MB61: Glucosamine-6-phosphate deaminase	24.6650888436
+UniRef50_Q7MB61: Glucosamine-6-phosphate deaminase|g__Escherichia.s__Escherichia_coli	24.5051002742
+UniRef50_Q7MB61: Glucosamine-6-phosphate deaminase|unclassified	0.1599885694
+UniRef50_P23890: Transcriptional activator CadC	24.6455081974
+UniRef50_P23890: Transcriptional activator CadC|g__Escherichia.s__Escherichia_coli	24.6455081974
+UniRef50_G5NWB0: NADH-quinone oxidoreductase subunit N	24.6373049746
+UniRef50_G5NWB0: NADH-quinone oxidoreductase subunit N|g__Escherichia.s__Escherichia_coli	24.6373049746
+UniRef50_A5UMX1: Predicted membrane-associated Zn-dependent protease	24.6248100582
+UniRef50_A5UMX1: Predicted membrane-associated Zn-dependent protease|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.6248100582
+UniRef50_P0ABG2: Phosphatidate cytidylyltransferase	24.6223588302
+UniRef50_P0ABG2: Phosphatidate cytidylyltransferase|g__Escherichia.s__Escherichia_coli	24.6223588302
+UniRef50_G5N0A7: DNA ligase	24.6120179737
+UniRef50_G5N0A7: DNA ligase|g__Escherichia.s__Escherichia_coli	24.6120179737
+UniRef50_P76278: Inner membrane protein YebZ	24.6103277973
+UniRef50_P76278: Inner membrane protein YebZ|g__Escherichia.s__Escherichia_coli	24.6103277973
+UniRef50_A8AQ52	24.6042173261
+UniRef50_A8AQ52|g__Escherichia.s__Escherichia_coli	24.6042173261
+UniRef50_P0AAZ2: Inner membrane protein YbjO	24.5929906895
+UniRef50_P0AAZ2: Inner membrane protein YbjO|g__Escherichia.s__Escherichia_coli	24.5929906895
+UniRef50_O29406: Serine hydroxymethyltransferase	24.5902890934
+UniRef50_O29406: Serine hydroxymethyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.5902890934
+UniRef50_Q6D108: Lysophospholipid transporter LplT	24.5902286965
+UniRef50_Q6D108: Lysophospholipid transporter LplT|g__Escherichia.s__Escherichia_coli	24.5902286965
+UniRef50_R9SHN0: ABC transporter ATP-binding protein	24.5827601872
+UniRef50_R9SHN0: ABC transporter ATP-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.5827601872
+UniRef50_A5UMD9	24.5821607664
+UniRef50_A5UMD9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.5821607664
+UniRef50_B6IUC1: Methylthioribose-1-phosphate isomerase	24.5812412197
+UniRef50_B6IUC1: Methylthioribose-1-phosphate isomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.5812412197
+UniRef50_A5UKN8: Formate dehydrogenase, iron-sulfur subunit	24.5777832976
+UniRef50_A5UKN8: Formate dehydrogenase, iron-sulfur subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.5777832976
+UniRef50_E6JKQ2	24.5754712141
+UniRef50_E6JKQ2|g__Staphylococcus.s__Staphylococcus_epidermidis	19.0199156586
+UniRef50_E6JKQ2|unclassified	5.5555555556
+UniRef50_P76369	24.5699531919
+UniRef50_P76369|g__Escherichia.s__Escherichia_coli	24.5699531919
+UniRef50_Q5HLP2	24.5652897254
+UniRef50_Q5HLP2|g__Staphylococcus.s__Staphylococcus_epidermidis	21.0762854235
+UniRef50_Q5HLP2|unclassified	3.4890043019
+UniRef50_A5UJV0: Probable 3-phosphoshikimate 1-carboxyvinyltransferase	24.5631815464
+UniRef50_A5UJV0: Probable 3-phosphoshikimate 1-carboxyvinyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.5631815464
+UniRef50_P23842	24.5535389452
+UniRef50_P23842|g__Escherichia.s__Escherichia_coli	24.4384307445
+UniRef50_P23842|unclassified	0.1151082007
+UniRef50_P77615	24.5460805631
+UniRef50_P77615|g__Escherichia.s__Escherichia_coli	24.5460805631
+UniRef50_I0IQG7	24.5460231807
+UniRef50_I0IQG7|g__Staphylococcus.s__Staphylococcus_aureus	24.5460231807
+UniRef50_Q8DU05	24.5427889296
+UniRef50_Q8DU05|g__Streptococcus.s__Streptococcus_mutans	24.5427889296
+UniRef50_A5ULW6: 50S ribosomal protein L10e	24.5367456231
+UniRef50_A5ULW6: 50S ribosomal protein L10e|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.5367456231
+UniRef50_UPI00037CDE8E: amino acid-binding protein	24.5350465682
+UniRef50_UPI00037CDE8E: amino acid-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.5350465682
+UniRef50_O27269: 5-formaminoimidazole-4-carboxamide-1-(beta)-D-ribofuranosyl 5'-monophosphate synthetase	24.5335387650
+UniRef50_O27269: 5-formaminoimidazole-4-carboxamide-1-(beta)-D-ribofuranosyl 5'-monophosphate synthetase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.5335387650
+UniRef50_A5UJI7: Asparagine synthetase, AsnB	24.5309420637
+UniRef50_A5UJI7: Asparagine synthetase, AsnB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.5309420637
+UniRef50_P78061: Gamma-glutamylputrescine synthetase PuuA	24.5269070231
+UniRef50_P78061: Gamma-glutamylputrescine synthetase PuuA|g__Escherichia.s__Escherichia_coli	23.9924798957
+UniRef50_P78061: Gamma-glutamylputrescine synthetase PuuA|unclassified	0.5344271274
+UniRef50_P10121: Signal recognition particle receptor FtsY	24.5247479478
+UniRef50_P10121: Signal recognition particle receptor FtsY|g__Escherichia.s__Escherichia_coli	24.5247479478
+UniRef50_A4WZ35	24.5231834670
+UniRef50_A4WZ35|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.1974943735
+UniRef50_A4WZ35|unclassified	1.3256890935
+UniRef50_J0ZLP6: Putative formate dehydrogenase accessory protein	24.5213268513
+UniRef50_J0ZLP6: Putative formate dehydrogenase accessory protein|g__Staphylococcus.s__Staphylococcus_epidermidis	24.5213268513
+UniRef50_P05101: Modification methylase EcoRII	24.5094077222
+UniRef50_P05101: Modification methylase EcoRII|g__Escherichia.s__Escherichia_coli	24.5094077222
+UniRef50_Q46939: Probable acetyl-CoA acetyltransferase	24.5079045763
+UniRef50_Q46939: Probable acetyl-CoA acetyltransferase|g__Escherichia.s__Escherichia_coli	24.5079045763
+UniRef50_S0JG44	24.5033526179
+UniRef50_S0JG44|g__Streptococcus.s__Streptococcus_mutans	24.5033526179
+UniRef50_P0AFT0: Murein DD-endopeptidase MepM	24.5032528662
+UniRef50_P0AFT0: Murein DD-endopeptidase MepM|g__Escherichia.s__Escherichia_coli	24.2016000833
+UniRef50_P0AFT0: Murein DD-endopeptidase MepM|unclassified	0.3016527829
+UniRef50_A5UKM5: 6-phosphogluconate dehydrogenase, beta-hydroxyacid dehydrogenase related, MmsB	24.5023720103
+UniRef50_A5UKM5: 6-phosphogluconate dehydrogenase, beta-hydroxyacid dehydrogenase related, MmsB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.5023720103
+UniRef50_P36999: 23S rRNA (guanine(745)-N(1))-methyltransferase	24.4975468028
+UniRef50_P36999: 23S rRNA (guanine(745)-N(1))-methyltransferase|g__Escherichia.s__Escherichia_coli	23.2317240179
+UniRef50_P36999: 23S rRNA (guanine(745)-N(1))-methyltransferase|unclassified	1.2658227848
+UniRef50_P46130: Putative acyl-CoA thioester hydrolase YbhC	24.4913780215
+UniRef50_P46130: Putative acyl-CoA thioester hydrolase YbhC|g__Escherichia.s__Escherichia_coli	24.4913780215
+UniRef50_A0A024L4S5: Tail protein	24.4838146048
+UniRef50_A0A024L4S5: Tail protein|g__Escherichia.s__Escherichia_coli	24.4336203625
+UniRef50_A0A024L4S5: Tail protein|unclassified	0.0501942424
+UniRef50_P44910: GTP-binding protein TypA/BipA homolog	24.4816097484
+UniRef50_P44910: GTP-binding protein TypA/BipA homolog|g__Escherichia.s__Escherichia_coli	11.4773910728
+UniRef50_P44910: GTP-binding protein TypA/BipA homolog|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2357928772
+UniRef50_P44910: GTP-binding protein TypA/BipA homolog|g__Acinetobacter.s__Acinetobacter_baumannii	2.1326218562
+UniRef50_P44910: GTP-binding protein TypA/BipA homolog|g__Streptococcus.s__Streptococcus_agalactiae	1.6358039422
+UniRef50_Y8CU39	24.4812658606
+UniRef50_Y8CU39|unclassified	24.4812658606
+UniRef50_A6TI09: Probable phosphoglycerate mutase GpmB	24.4808571226
+UniRef50_A6TI09: Probable phosphoglycerate mutase GpmB|g__Escherichia.s__Escherichia_coli	24.4808571226
+UniRef50_B4SMK1: L-lactate dehydrogenase [cytochrome]	24.4786999759
+UniRef50_B4SMK1: L-lactate dehydrogenase [cytochrome]|g__Escherichia.s__Escherichia_coli	24.3380747275
+UniRef50_B4SMK1: L-lactate dehydrogenase [cytochrome]|unclassified	0.1406252485
+UniRef50_Q3J153: Class I diheme cytochrome c	24.4773173069
+UniRef50_Q3J153: Class I diheme cytochrome c|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.4773173069
+UniRef50_P0ADY2: Peptidyl-prolyl cis-trans isomerase D	24.4758648340
+UniRef50_P0ADY2: Peptidyl-prolyl cis-trans isomerase D|g__Escherichia.s__Escherichia_coli	24.4758648340
+UniRef50_H9UNY1	24.4743339000
+UniRef50_H9UNY1|g__Escherichia.s__Escherichia_coli	22.8934120964
+UniRef50_H9UNY1|unclassified	1.5809218036
+UniRef50_P39356	24.4703572387
+UniRef50_P39356|g__Escherichia.s__Escherichia_coli	24.4703572387
+UniRef50_R7PUA8	24.4693888259
+UniRef50_R7PUA8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.4539649305
+UniRef50_R7PUA8|unclassified	0.0154238953
+UniRef50_Q2RYH6: KpsF/GutQ	24.4687742552
+UniRef50_Q2RYH6: KpsF/GutQ|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.4687742552
+UniRef50_Q2NFJ6: Putative methylthioribose-1-phosphate isomerase	24.4640116576
+UniRef50_Q2NFJ6: Putative methylthioribose-1-phosphate isomerase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.4640116576
+UniRef50_F8KHX1: ArsR family transcriptional regulator	24.4631705569
+UniRef50_F8KHX1: ArsR family transcriptional regulator|g__Staphylococcus.s__Staphylococcus_epidermidis	24.4631705569
+UniRef50_Q9RX01	24.4631229629
+UniRef50_Q9RX01|g__Deinococcus.s__Deinococcus_radiodurans	17.3709243813
+UniRef50_Q9RX01|unclassified	7.0921985816
+UniRef50_I6TYE3: Transcription regulator	24.4556386256
+UniRef50_I6TYE3: Transcription regulator|g__Streptococcus.s__Streptococcus_mutans	24.4556386256
+UniRef50_E3GYA2: Phosphate uptake regulator, PhoU	24.4541739228
+UniRef50_E3GYA2: Phosphate uptake regulator, PhoU|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.4541739228
+UniRef50_P0ACM1: Pyruvate dehydrogenase complex repressor	24.4397996986
+UniRef50_P0ACM1: Pyruvate dehydrogenase complex repressor|g__Escherichia.s__Escherichia_coli	24.4397996986
+UniRef50_A4W1F2: NTP pyrophosphohydrolase including oxidative damage repair enzymes	24.4369091393
+UniRef50_A4W1F2: NTP pyrophosphohydrolase including oxidative damage repair enzymes|g__Streptococcus.s__Streptococcus_mutans	24.4369091393
+UniRef50_A5ULZ9	24.4368909037
+UniRef50_A5ULZ9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.4368909037
+UniRef50_I0JLF4: Lactoylglutathione lyase	24.4348510978
+UniRef50_I0JLF4: Lactoylglutathione lyase|g__Staphylococcus.s__Staphylococcus_aureus	24.4348510978
+UniRef50_R9SJL7: Precorrin-6y C5,15-methyltransferase (Decarboxylating) CbiE	24.4338840829
+UniRef50_R9SJL7: Precorrin-6y C5,15-methyltransferase (Decarboxylating) CbiE|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.4338840829
+UniRef50_D0B1T7: Alkyl hydroperoxide reductase/Thiol specific antioxidant/Mal allergen	24.4269535784
+UniRef50_D0B1T7: Alkyl hydroperoxide reductase/Thiol specific antioxidant/Mal allergen|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.4269535784
+UniRef50_A4WX29: NH(3)-dependent NAD(+) synthetase	24.4260648288
+UniRef50_A4WX29: NH(3)-dependent NAD(+) synthetase|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.4260648288
+UniRef50_P77569: Mhp operon transcriptional activator	24.4260583506
+UniRef50_P77569: Mhp operon transcriptional activator|g__Escherichia.s__Escherichia_coli	24.4260583506
+UniRef50_I5BUN0: NAD(FAD)-dependent dehydrogenase	24.4257737837
+UniRef50_I5BUN0: NAD(FAD)-dependent dehydrogenase|unclassified	24.4257737837
+UniRef50_B7L4M7: Glutathione-regulated potassium-efflux system protein KefB	24.4254214795
+UniRef50_B7L4M7: Glutathione-regulated potassium-efflux system protein KefB|g__Escherichia.s__Escherichia_coli	24.4254214795
+UniRef50_A8LI88: Rhomboid family protein	24.4243915767
+UniRef50_A8LI88: Rhomboid family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.4243915767
+UniRef50_P77624: Carbamate kinase-like protein YahI	24.4231338540
+UniRef50_P77624: Carbamate kinase-like protein YahI|g__Escherichia.s__Escherichia_coli	24.4231338540
+UniRef50_P75691: Aldehyde reductase YahK	24.4230314866
+UniRef50_P75691: Aldehyde reductase YahK|g__Escherichia.s__Escherichia_coli	22.8382454328
+UniRef50_P75691: Aldehyde reductase YahK|g__Acinetobacter.s__Acinetobacter_baumannii	1.5847860539
+UniRef50_H3UXX3	24.4209715378
+UniRef50_H3UXX3|unclassified	24.4209715378
+UniRef50_A5UP56	24.4177774772
+UniRef50_A5UP56|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.4177774772
+UniRef50_P0AD45: Quorum-sensing regulator protein G	24.4126712939
+UniRef50_P0AD45: Quorum-sensing regulator protein G|g__Escherichia.s__Escherichia_coli	24.4126712939
+UniRef50_P63726: Succinate dehydrogenase cytochrome b556 subunit	24.4115158335
+UniRef50_P63726: Succinate dehydrogenase cytochrome b556 subunit|g__Escherichia.s__Escherichia_coli	23.1175082009
+UniRef50_P63726: Succinate dehydrogenase cytochrome b556 subunit|unclassified	1.2940076326
+UniRef50_P67711: Transcriptional regulator MntR	24.4063153423
+UniRef50_P67711: Transcriptional regulator MntR|g__Escherichia.s__Escherichia_coli	24.4063153423
+UniRef50_Q04KQ9	24.4045308957
+UniRef50_Q04KQ9|g__Streptococcus.s__Streptococcus_mutans	23.3903321128
+UniRef50_Q04KQ9|g__Streptococcus.s__Streptococcus_agalactiae	1.0141987830
+UniRef50_P31134: Putrescine transport ATP-binding protein PotG	24.3959829330
+UniRef50_P31134: Putrescine transport ATP-binding protein PotG|g__Escherichia.s__Escherichia_coli	24.3959829330
+UniRef50_Q51485: Porin B	24.3954652492
+UniRef50_Q51485: Porin B|g__Pseudomonas.s__Pseudomonas_aeruginosa	24.3954652492
+UniRef50_F6D5Z8: ABC-type transporter, periplasmic subunit	24.3941763578
+UniRef50_F6D5Z8: ABC-type transporter, periplasmic subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.3941763578
+UniRef50_A5UNU3	24.3916637860
+UniRef50_A5UNU3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.3916637860
+UniRef50_K3DKF5	24.3902439024
+UniRef50_K3DKF5|unclassified	24.3902439024
+UniRef50_W6EEF6	24.3902439024
+UniRef50_W6EEF6|g__Staphylococcus.s__Staphylococcus_aureus	24.3902439024
+UniRef50_A4VVR6: Predicted O-methyltransferase	24.3896473377
+UniRef50_A4VVR6: Predicted O-methyltransferase|g__Streptococcus.s__Streptococcus_mutans	24.3896473377
+UniRef50_A5UN34: Molybdopterin-guanine dinucleotide biosynthesis protein B, MobB	24.3831650249
+UniRef50_A5UN34: Molybdopterin-guanine dinucleotide biosynthesis protein B, MobB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.3831650249
+UniRef50_Q3JF19: Glycerol-3-phosphate dehydrogenase [NAD(P)+]	24.3814350936
+UniRef50_Q3JF19: Glycerol-3-phosphate dehydrogenase [NAD(P)+]|g__Escherichia.s__Escherichia_coli	24.3814350936
+UniRef50_U6ED09: ATP-dependent RNA helicase, DEAD/DEAH box family	24.3781606127
+UniRef50_U6ED09: ATP-dependent RNA helicase, DEAD/DEAH box family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.3781606127
+UniRef50_Q8XKQ2: Galactose/methyl galactoside import ATP-binding protein MglA	24.3699859576
+UniRef50_Q8XKQ2: Galactose/methyl galactoside import ATP-binding protein MglA|g__Escherichia.s__Escherichia_coli	20.1551532702
+UniRef50_Q8XKQ2: Galactose/methyl galactoside import ATP-binding protein MglA|g__Clostridium.s__Clostridium_beijerinckii	4.0103896449
+UniRef50_Q8XKQ2: Galactose/methyl galactoside import ATP-binding protein MglA|unclassified	0.2044430425
+UniRef50_F5M5N5	24.3623608931
+UniRef50_F5M5N5|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.0998906155
+UniRef50_F5M5N5|unclassified	7.2624702776
+UniRef50_P0AEJ7: Ethanolamine ammonia-lyase heavy chain	24.3594766531
+UniRef50_P0AEJ7: Ethanolamine ammonia-lyase heavy chain|g__Escherichia.s__Escherichia_coli	24.3594766531
+UniRef50_B9KL85: Transporter, RhaT family, DMT superfamily	24.3584095413
+UniRef50_B9KL85: Transporter, RhaT family, DMT superfamily|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.3584095413
+UniRef50_P52662: HTH-type transcriptional regulator PecT	24.3555325262
+UniRef50_P52662: HTH-type transcriptional regulator PecT|g__Escherichia.s__Escherichia_coli	24.3555325262
+UniRef50_C6SQB8	24.3508335125
+UniRef50_C6SQB8|g__Streptococcus.s__Streptococcus_mutans	24.3508335125
+UniRef50_A7ZQ55: NAD kinase	24.3505031418
+UniRef50_A7ZQ55: NAD kinase|g__Escherichia.s__Escherichia_coli	23.7516035143
+UniRef50_A7ZQ55: NAD kinase|unclassified	0.5988996275
+UniRef50_Q8X8H9: Protein RdoA	24.3493016432
+UniRef50_Q8X8H9: Protein RdoA|g__Escherichia.s__Escherichia_coli	24.3493016432
+UniRef50_P77395	24.3360399765
+UniRef50_P77395|g__Escherichia.s__Escherichia_coli	24.3360399765
+UniRef50_Q4L660	24.3339680641
+UniRef50_Q4L660|g__Staphylococcus.s__Staphylococcus_aureus	12.1942030672
+UniRef50_Q4L660|g__Staphylococcus.s__Staphylococcus_epidermidis	12.1397649969
+UniRef50_P0AGG9: Metalloprotease TldD	24.3334818908
+UniRef50_P0AGG9: Metalloprotease TldD|g__Escherichia.s__Escherichia_coli	21.0744344406
+UniRef50_P0AGG9: Metalloprotease TldD|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2590474502
+UniRef50_A0A037YFV8: Transposase	24.3330161353
+UniRef50_A0A037YFV8: Transposase|g__Escherichia.s__Escherichia_coli	24.3330161353
+UniRef50_A5UNN3: Arylsulfatase regulator, AslB	24.3324491600
+UniRef50_A5UNN3: Arylsulfatase regulator, AslB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.3324491600
+UniRef50_Q00753: Msm operon regulatory protein	24.3319957399
+UniRef50_Q00753: Msm operon regulatory protein|g__Streptococcus.s__Streptococcus_mutans	24.3319957399
+UniRef50_G8V2P8	24.3301522916
+UniRef50_G8V2P8|g__Staphylococcus.s__Staphylococcus_aureus	24.3301522916
+UniRef50_Q57884: Probable hydrogenase nickel incorporation protein HypB	24.3274692589
+UniRef50_Q57884: Probable hydrogenase nickel incorporation protein HypB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.3274692589
+UniRef50_UPI00036D44BD: hypothetical protein, partial	24.3273112172
+UniRef50_UPI00036D44BD: hypothetical protein, partial|g__Streptococcus.s__Streptococcus_mutans	24.3273112172
+UniRef50_P0AAJ9: Hydrogenase-2 operon protein HybA	24.3271635106
+UniRef50_P0AAJ9: Hydrogenase-2 operon protein HybA|g__Escherichia.s__Escherichia_coli	24.3271635106
+UniRef50_P40882	24.3246590580
+UniRef50_P40882|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.6723761675
+UniRef50_P40882|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9157088123
+UniRef50_P40882|unclassified	0.7365740783
+UniRef50_P75974: Putative lambdoid prophage e14 repressor protein C2	24.3186589155
+UniRef50_P75974: Putative lambdoid prophage e14 repressor protein C2|g__Escherichia.s__Escherichia_coli	24.3186589155
+UniRef50_Q321F0: 3-dehydroquinate dehydratase	24.3177351289
+UniRef50_Q321F0: 3-dehydroquinate dehydratase|g__Escherichia.s__Escherichia_coli	24.3177351289
+UniRef50_A5UP18	24.3173232566
+UniRef50_A5UP18|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.3173232566
+UniRef50_R9SMB0: Dihydropteroate synthase-related protein	24.3033091755
+UniRef50_R9SMB0: Dihydropteroate synthase-related protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.3033091755
+UniRef50_P46855	24.3032750311
+UniRef50_P46855|g__Escherichia.s__Escherichia_coli	24.3032750311
+UniRef50_K4PNK2	24.2979769178
+UniRef50_K4PNK2|g__Streptococcus.s__Streptococcus_agalactiae	24.2979769178
+UniRef50_A5UJE1	24.2922508163
+UniRef50_A5UJE1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.2922508163
+UniRef50_Q9KPL8: Thymidine phosphorylase	24.2915824368
+UniRef50_Q9KPL8: Thymidine phosphorylase|g__Escherichia.s__Escherichia_coli	22.6487526043
+UniRef50_Q9KPL8: Thymidine phosphorylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6059177198
+UniRef50_Q9KPL8: Thymidine phosphorylase|unclassified	0.0369121128
+UniRef50_P36661	24.2852479681
+UniRef50_P36661|g__Escherichia.s__Escherichia_coli	24.2852479681
+UniRef50_A6UPR3: Glutamyl-tRNA(Gln) amidotransferase subunit E	24.2851652054
+UniRef50_A6UPR3: Glutamyl-tRNA(Gln) amidotransferase subunit E|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.2851652054
+UniRef50_X2LS39: Ribonuclease E	24.2834030419
+UniRef50_X2LS39: Ribonuclease E|g__Escherichia.s__Escherichia_coli	24.2834030419
+UniRef50_Q8X9H6	24.2829465756
+UniRef50_Q8X9H6|g__Escherichia.s__Escherichia_coli	24.2829465756
+UniRef50_Q03224: Fructose-1,6-bisphosphatase class 2	24.2787908476
+UniRef50_Q03224: Fructose-1,6-bisphosphatase class 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.0573608572
+UniRef50_Q03224: Fructose-1,6-bisphosphatase class 2|unclassified	0.2214299904
+UniRef50_O26249: Probable cobalt-precorrin-6B C(15)-methyltransferase (decarboxylating)	24.2783268033
+UniRef50_O26249: Probable cobalt-precorrin-6B C(15)-methyltransferase (decarboxylating)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.2783268033
+UniRef50_R5KA87: MATE efflux family protein	24.2771954222
+UniRef50_R5KA87: MATE efflux family protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.2771954222
+UniRef50_A5UP64: O-linked GlcNAc transferase	24.2650820775
+UniRef50_A5UP64: O-linked GlcNAc transferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.2650820775
+UniRef50_F0L9R1	24.2607553809
+UniRef50_F0L9R1|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.9814326229
+UniRef50_F0L9R1|unclassified	0.2793227580
+UniRef50_A7ZN22: Alpha,alpha-trehalose-phosphate synthase [UDP-forming]	24.2567911501
+UniRef50_A7ZN22: Alpha,alpha-trehalose-phosphate synthase [UDP-forming]|g__Escherichia.s__Escherichia_coli	24.1996903152
+UniRef50_A7ZN22: Alpha,alpha-trehalose-phosphate synthase [UDP-forming]|unclassified	0.0571008349
+UniRef50_A0A014MM42	24.2556770576
+UniRef50_A0A014MM42|unclassified	24.2556770576
+UniRef50_F6IEQ5	24.2451950587
+UniRef50_F6IEQ5|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.8095238095
+UniRef50_F6IEQ5|unclassified	0.4356712492
+UniRef50_F8G0H1: MarR family transcriptional regulator	24.2433147223
+UniRef50_F8G0H1: MarR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	24.2433147223
+UniRef50_O33952: UDP-glucose 6-dehydrogenase	24.2405039344
+UniRef50_O33952: UDP-glucose 6-dehydrogenase|g__Escherichia.s__Escherichia_coli	22.4127937478
+UniRef50_O33952: UDP-glucose 6-dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	0.9551098376
+UniRef50_O33952: UDP-glucose 6-dehydrogenase|unclassified	0.8726003490
+UniRef50_P51024	24.2385835261
+UniRef50_P51024|g__Escherichia.s__Escherichia_coli	23.0873902197
+UniRef50_P51024|unclassified	1.1511933064
+UniRef50_D6SEY7	24.2329243414
+UniRef50_D6SEY7|g__Staphylococcus.s__Staphylococcus_aureus	24.2329243414
+UniRef50_Q8X6V3	24.2291851891
+UniRef50_Q8X6V3|g__Escherichia.s__Escherichia_coli	24.2291851891
+UniRef50_A7ZIN4: Adenylate kinase	24.2249352952
+UniRef50_A7ZIN4: Adenylate kinase|g__Escherichia.s__Escherichia_coli	18.4836170709
+UniRef50_A7ZIN4: Adenylate kinase|g__Neisseria.s__Neisseria_meningitidis	5.5028807039
+UniRef50_A7ZIN4: Adenylate kinase|unclassified	0.2384375204
+UniRef50_P07003: Pyruvate dehydrogenase [ubiquinone]	24.2245262867
+UniRef50_P07003: Pyruvate dehydrogenase [ubiquinone]|g__Escherichia.s__Escherichia_coli	24.2245262867
+UniRef50_P09835: Sensor protein UhpB	24.2227106184
+UniRef50_P09835: Sensor protein UhpB|g__Escherichia.s__Escherichia_coli	24.2227106184
+UniRef50_D2JC88	24.2181309315
+UniRef50_D2JC88|unclassified	24.2181309315
+UniRef50_P75685: Inner membrane protein RclC	24.2138534261
+UniRef50_P75685: Inner membrane protein RclC|g__Escherichia.s__Escherichia_coli	24.2138534261
+UniRef50_P95468: Aromatic-amino-acid aminotransferase	24.2124953798
+UniRef50_P95468: Aromatic-amino-acid aminotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.2124953798
+UniRef50_P75822	24.2068501792
+UniRef50_P75822|g__Escherichia.s__Escherichia_coli	24.1007344207
+UniRef50_P75822|unclassified	0.1061157584
+UniRef50_F6D4R4: Peptidase U32	24.1986481376
+UniRef50_F6D4R4: Peptidase U32|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.1986481376
+UniRef50_C5N6G1	24.1969147485
+UniRef50_C5N6G1|g__Staphylococcus.s__Staphylococcus_aureus	24.1969147485
+UniRef50_A6TGB7: Cation-efflux pump FieF	24.1916368955
+UniRef50_A6TGB7: Cation-efflux pump FieF|g__Escherichia.s__Escherichia_coli	24.1916368955
+UniRef50_A9MN50	24.1745985774
+UniRef50_A9MN50|g__Escherichia.s__Escherichia_coli	22.0482461857
+UniRef50_A9MN50|unclassified	2.1263523918
+UniRef50_Q8DU86	24.1637167576
+UniRef50_Q8DU86|g__Streptococcus.s__Streptococcus_mutans	23.7815830763
+UniRef50_Q8DU86|unclassified	0.3821336813
+UniRef50_A9CJZ7: Ring hydroxylating dioxygenase, alpha-subunit	24.1617173904
+UniRef50_A9CJZ7: Ring hydroxylating dioxygenase, alpha-subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.1617173904
+UniRef50_A5UNK0: N-acetyltransferase, GNAT family	24.1617103557
+UniRef50_A5UNK0: N-acetyltransferase, GNAT family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.1617103557
+UniRef50_B9KJJ0: Proton-translocating NADH-quinone oxidoreductase, chain L	24.1572081556
+UniRef50_B9KJJ0: Proton-translocating NADH-quinone oxidoreductase, chain L|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.1572081556
+UniRef50_P77689: FeS cluster assembly protein SufD	24.1516523829
+UniRef50_P77689: FeS cluster assembly protein SufD|g__Escherichia.s__Escherichia_coli	24.1516523829
+UniRef50_C5N4C9	24.1470038609
+UniRef50_C5N4C9|unclassified	14.7130415968
+UniRef50_C5N4C9|g__Staphylococcus.s__Staphylococcus_aureus	9.4339622642
+UniRef50_X6KX92	24.1425350415
+UniRef50_X6KX92|unclassified	24.1425350415
+UniRef50_P76339: Probable sensor-like histidine kinase YedV	24.1406199311
+UniRef50_P76339: Probable sensor-like histidine kinase YedV|g__Escherichia.s__Escherichia_coli	24.1406199311
+UniRef50_A6T515: Cysteine/O-acetylserine efflux protein	24.1378105307
+UniRef50_A6T515: Cysteine/O-acetylserine efflux protein|g__Escherichia.s__Escherichia_coli	24.1378105307
+UniRef50_T1ZZG8	24.1331345054
+UniRef50_T1ZZG8|g__Streptococcus.s__Streptococcus_mutans	24.1331345054
+UniRef50_P29013	24.1330163385
+UniRef50_P29013|g__Escherichia.s__Escherichia_coli	24.1330163385
+UniRef50_P39344: Gnt-II system L-idonate transporter	24.1313890373
+UniRef50_P39344: Gnt-II system L-idonate transporter|g__Escherichia.s__Escherichia_coli	23.9756463938
+UniRef50_P39344: Gnt-II system L-idonate transporter|unclassified	0.1557426435
+UniRef50_J9U440	24.1310824230
+UniRef50_J9U440|g__Staphylococcus.s__Staphylococcus_aureus	24.1310824230
+UniRef50_A8LSD5: 3-oxoadipate enol-lactonase	24.1298112888
+UniRef50_A8LSD5: 3-oxoadipate enol-lactonase|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.1298112888
+UniRef50_Q72CF3: 50S ribosomal protein L17	24.1291776872
+UniRef50_Q72CF3: 50S ribosomal protein L17|g__Streptococcus.s__Streptococcus_mutans	24.1291776872
+UniRef50_Q59641: Peptidyl-prolyl cis-trans isomerase A	24.1272158044
+UniRef50_Q59641: Peptidyl-prolyl cis-trans isomerase A|g__Pseudomonas.s__Pseudomonas_aeruginosa	24.1272158044
+UniRef50_C6B577: Peptidase S8 and S53, subtilisin, kexin, sedolisin	24.1251456851
+UniRef50_C6B577: Peptidase S8 and S53, subtilisin, kexin, sedolisin|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.1251456851
+UniRef50_Q5HQF3: Transposase, IS200 family, truncation	24.1210422817
+UniRef50_Q5HQF3: Transposase, IS200 family, truncation|g__Staphylococcus.s__Staphylococcus_epidermidis	24.1210422817
+UniRef50_D2ZS96	24.1200978735
+UniRef50_D2ZS96|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.1200978735
+UniRef50_A7MPG3	24.1174453224
+UniRef50_A7MPG3|g__Escherichia.s__Escherichia_coli	21.6902608563
+UniRef50_A7MPG3|unclassified	2.4271844660
+UniRef50_P52005: Cytochrome c-type protein TorY	24.1154620110
+UniRef50_P52005: Cytochrome c-type protein TorY|g__Escherichia.s__Escherichia_coli	24.1154620110
+UniRef50_Q4L5F0: Thioredoxin	24.1118669690
+UniRef50_Q4L5F0: Thioredoxin|g__Staphylococcus.s__Staphylococcus_epidermidis	24.1118669690
+UniRef50_E9S218	24.0894928073
+UniRef50_E9S218|g__Escherichia.s__Escherichia_coli	24.0894928073
+UniRef50_B7V093: Type 4 fimbrial biogenesis protein FimU	24.0855918582
+UniRef50_B7V093: Type 4 fimbrial biogenesis protein FimU|g__Pseudomonas.s__Pseudomonas_aeruginosa	24.0855918582
+UniRef50_P27127: Lipopolysaccharide 1,6-galactosyltransferase	24.0832432629
+UniRef50_P27127: Lipopolysaccharide 1,6-galactosyltransferase|g__Escherichia.s__Escherichia_coli	24.0832432629
+UniRef50_P21599: Pyruvate kinase II	24.0815474869
+UniRef50_P21599: Pyruvate kinase II|g__Escherichia.s__Escherichia_coli	23.8964428114
+UniRef50_P21599: Pyruvate kinase II|unclassified	0.1851046755
+UniRef50_B1HXC5: Sulfate-binding protein (Sulfate starvation-induced protein 2) (SSI2)	24.0779939306
+UniRef50_B1HXC5: Sulfate-binding protein (Sulfate starvation-induced protein 2) (SSI2)|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.6762696658
+UniRef50_B1HXC5: Sulfate-binding protein (Sulfate starvation-induced protein 2) (SSI2)|g__Clostridium.s__Clostridium_beijerinckii	8.4017242648
+UniRef50_O27123: DNA-directed RNA polymerase subunit B''	24.0743159165
+UniRef50_O27123: DNA-directed RNA polymerase subunit B''|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.0743159165
+UniRef50_V9X558	24.0736675993
+UniRef50_V9X558|unclassified	24.0736675993
+UniRef50_P05824: DNA repair protein RecN	24.0690322533
+UniRef50_P05824: DNA repair protein RecN|g__Escherichia.s__Escherichia_coli	24.0690322533
+UniRef50_P0A6X2: Glutamyl-tRNA reductase	24.0682295872
+UniRef50_P0A6X2: Glutamyl-tRNA reductase|g__Escherichia.s__Escherichia_coli	24.0682295872
+UniRef50_U5NR96	24.0664227784
+UniRef50_U5NR96|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.9365079365
+UniRef50_U5NR96|unclassified	6.1299148419
+UniRef50_P08656: Mercuric transport protein	24.0664059559
+UniRef50_P08656: Mercuric transport protein|g__Staphylococcus.s__Staphylococcus_aureus	24.0664059559
+UniRef50_P77475: Fructose-1-phosphate phosphatase YqaB	24.0660745740
+UniRef50_P77475: Fructose-1-phosphate phosphatase YqaB|g__Escherichia.s__Escherichia_coli	24.0660745740
+UniRef50_P15034: Xaa-Pro aminopeptidase	24.0646685441
+UniRef50_P15034: Xaa-Pro aminopeptidase|g__Escherichia.s__Escherichia_coli	23.1131521470
+UniRef50_P15034: Xaa-Pro aminopeptidase|unclassified	0.9515163971
+UniRef50_A4WQG9	24.0605892809
+UniRef50_A4WQG9|unclassified	24.0605892809
+UniRef50_O27292: Inosine-5'-monophosphate dehydrogenase related protein III	24.0552401417
+UniRef50_O27292: Inosine-5'-monophosphate dehydrogenase related protein III|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.0552401417
+UniRef50_P0ADP0: Flavin mononucleotide phosphatase YigB	24.0498103970
+UniRef50_P0ADP0: Flavin mononucleotide phosphatase YigB|g__Escherichia.s__Escherichia_coli	24.0498103970
+UniRef50_A5UMG3: Potassium transport system, membrane component, KefB	24.0475476648
+UniRef50_A5UMG3: Potassium transport system, membrane component, KefB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.0475476648
+UniRef50_A5UMJ4: Type II restriction endonuclease	24.0434197270
+UniRef50_A5UMJ4: Type II restriction endonuclease|g__Methanobrevibacter.s__Methanobrevibacter_smithii	24.0434197270
+UniRef50_U5NMY3	24.0429450491
+UniRef50_U5NMY3|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.6384506671
+UniRef50_U5NMY3|unclassified	1.4044943820
+UniRef50_B5EZ88: LPS-assembly lipoprotein LptE	24.0384927928
+UniRef50_B5EZ88: LPS-assembly lipoprotein LptE|g__Escherichia.s__Escherichia_coli	24.0384927928
+UniRef50_Q8X715: Protein GntX	24.0331310091
+UniRef50_Q8X715: Protein GntX|g__Escherichia.s__Escherichia_coli	24.0331310091
+UniRef50_D0ZSY8: Anti-sigma-E factor RseA	24.0220577798
+UniRef50_D0ZSY8: Anti-sigma-E factor RseA|g__Escherichia.s__Escherichia_coli	24.0220577798
+UniRef50_P39172: High-affinity zinc uptake system protein ZnuA	24.0182319477
+UniRef50_P39172: High-affinity zinc uptake system protein ZnuA|g__Escherichia.s__Escherichia_coli	24.0182319477
+UniRef50_P16678: Putative phosphonates utilization ATP-binding protein PhnK	24.0159172053
+UniRef50_P16678: Putative phosphonates utilization ATP-binding protein PhnK|g__Escherichia.s__Escherichia_coli	24.0159172053
+UniRef50_G7ZTD1: Fibrinogen and keratin-10 binding surface anchored protein	24.0067753702
+UniRef50_G7ZTD1: Fibrinogen and keratin-10 binding surface anchored protein|g__Staphylococcus.s__Staphylococcus_aureus	24.0067753702
+UniRef50_A1B4G8: Orn/DAP/Arg decarboxylase 2	24.0015934219
+UniRef50_A1B4G8: Orn/DAP/Arg decarboxylase 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	24.0015934219
+UniRef50_Q92HL2: Transcription termination factor Rho	24.0000909806
+UniRef50_Q92HL2: Transcription termination factor Rho|g__Escherichia.s__Escherichia_coli	24.0000909806
+UniRef50_A3PJ00: Undecaprenyl-phosphate galactose phosphotransferase	23.9984683283
+UniRef50_A3PJ00: Undecaprenyl-phosphate galactose phosphotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.9984683283
+UniRef50_Q5LSU8: Membrane-associated zinc metalloprotease, putative	23.9984511198
+UniRef50_Q5LSU8: Membrane-associated zinc metalloprotease, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.9984511198
+UniRef50_A9MPN8: UPF0306 protein YhbP	23.9982345295
+UniRef50_A9MPN8: UPF0306 protein YhbP|g__Escherichia.s__Escherichia_coli	23.9982345295
+UniRef50_P77619: UPF0214 protein YfeW	23.9950630032
+UniRef50_P77619: UPF0214 protein YfeW|g__Escherichia.s__Escherichia_coli	23.9950630032
+UniRef50_Y9YFG1: Serine-aspartate repeat-containing protein D	23.9948871189
+UniRef50_Y9YFG1: Serine-aspartate repeat-containing protein D|g__Staphylococcus.s__Staphylococcus_aureus	23.9948871189
+UniRef50_P0CE45: Glucuronide carrier protein	23.9943764884
+UniRef50_P0CE45: Glucuronide carrier protein|g__Escherichia.s__Escherichia_coli	23.9943764884
+UniRef50_Q8CUD0	23.9934382826
+UniRef50_Q8CUD0|unclassified	23.9934382826
+UniRef50_P0AC61: Glutaredoxin-2	23.9906237457
+UniRef50_P0AC61: Glutaredoxin-2|g__Escherichia.s__Escherichia_coli	23.9906237457
+UniRef50_Q6D3A9: Glutathione import ATP-binding protein GsiA	23.9892617504
+UniRef50_Q6D3A9: Glutathione import ATP-binding protein GsiA|g__Escherichia.s__Escherichia_coli	23.7104177507
+UniRef50_Q6D3A9: Glutathione import ATP-binding protein GsiA|unclassified	0.2788439996
+UniRef50_A5UKH0: Mechanosensitive ion channel protein, Sm-like ribonucleoprotein superfamily, MscS	23.9848193762
+UniRef50_A5UKH0: Mechanosensitive ion channel protein, Sm-like ribonucleoprotein superfamily, MscS|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.9848193762
+UniRef50_D9SNP1: OmpA/MotB domain protein	23.9830677491
+UniRef50_D9SNP1: OmpA/MotB domain protein|g__Clostridium.s__Clostridium_beijerinckii	23.9830677491
+UniRef50_A5UM81: Acetyltransferase, GNAT family	23.9805699176
+UniRef50_A5UM81: Acetyltransferase, GNAT family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.9805699176
+UniRef50_Q0HDL5: LexA repressor	23.9746506533
+UniRef50_Q0HDL5: LexA repressor|g__Escherichia.s__Escherichia_coli	23.9746506533
+UniRef50_I6T543: HTH-type transcriptional regulator ytcD	23.9735859891
+UniRef50_I6T543: HTH-type transcriptional regulator ytcD|g__Streptococcus.s__Streptococcus_mutans	23.9735859891
+UniRef50_O31214: Ubiquinol-cytochrome c reductase iron-sulfur subunit	23.9716312057
+UniRef50_O31214: Ubiquinol-cytochrome c reductase iron-sulfur subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	23.9716312057
+UniRef50_M4ZDD2: Polysaccharide ABC exporter membrane-spanning protein	23.9690557603
+UniRef50_M4ZDD2: Polysaccharide ABC exporter membrane-spanning protein|g__Streptococcus.s__Streptococcus_mutans	23.9690557603
+UniRef50_Q7ADY9	23.9596216974
+UniRef50_Q7ADY9|g__Escherichia.s__Escherichia_coli	23.9596216974
+UniRef50_G0D6I9	23.9582647283
+UniRef50_G0D6I9|g__Escherichia.s__Escherichia_coli	19.2307692308
+UniRef50_G0D6I9|unclassified	4.7274954975
+UniRef50_Q06065: Acetoacetate metabolism regulatory protein AtoC	23.9547645902
+UniRef50_Q06065: Acetoacetate metabolism regulatory protein AtoC|g__Escherichia.s__Escherichia_coli	23.9547645902
+UniRef50_G7ZME4: Acetyltransferase (GNAT) family protein	23.9501667311
+UniRef50_G7ZME4: Acetyltransferase (GNAT) family protein|g__Staphylococcus.s__Staphylococcus_aureus	23.9501667311
+UniRef50_P39367	23.9484564962
+UniRef50_P39367|g__Escherichia.s__Escherichia_coli	23.9484564962
+UniRef50_F4SFU3: Biofilm PGA synthesis lipoprotein PgaB	23.9329321830
+UniRef50_F4SFU3: Biofilm PGA synthesis lipoprotein PgaB|g__Escherichia.s__Escherichia_coli	23.9329321830
+UniRef50_Q49XB9	23.9303987783
+UniRef50_Q49XB9|g__Staphylococcus.s__Staphylococcus_epidermidis	16.0909842846
+UniRef50_Q49XB9|g__Staphylococcus.s__Staphylococcus_aureus	7.8394144937
+UniRef50_I6SV43	23.9289964102
+UniRef50_I6SV43|g__Streptococcus.s__Streptococcus_mutans	23.9289964102
+UniRef50_A1AXZ6: Rhodanese	23.9286676639
+UniRef50_A1AXZ6: Rhodanese|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.7538725301
+UniRef50_A1AXZ6: Rhodanese|unclassified	0.1747951338
+UniRef50_F0DFS6	23.9237928613
+UniRef50_F0DFS6|g__Staphylococcus.s__Staphylococcus_aureus	23.9237928613
+UniRef50_A1AHM5: Protein CbrA	23.9170129161
+UniRef50_A1AHM5: Protein CbrA|g__Escherichia.s__Escherichia_coli	23.9170129161
+UniRef50_A5ULH7: UPF0290 protein Msm_0850	23.9165880281
+UniRef50_A5ULH7: UPF0290 protein Msm_0850|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.9165880281
+UniRef50_A7X2U0	23.9145183175
+UniRef50_A7X2U0|g__Staphylococcus.s__Staphylococcus_epidermidis	18.9393939394
+UniRef50_A7X2U0|g__Staphylococcus.s__Staphylococcus_aureus	4.9751243781
+UniRef50_R7PVE4: Glycosyltransferase GT2 family	23.9144103367
+UniRef50_R7PVE4: Glycosyltransferase GT2 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.9144103367
+UniRef50_D9RMY1	23.9128504807
+UniRef50_D9RMY1|g__Staphylococcus.s__Staphylococcus_epidermidis	12.4185976071
+UniRef50_D9RMY1|g__Staphylococcus.s__Staphylococcus_aureus	11.4942528736
+UniRef50_Q5HJ36	23.8982201407
+UniRef50_Q5HJ36|g__Staphylococcus.s__Staphylococcus_aureus	23.8982201407
+UniRef50_R9SJM3: Amidohydrolase	23.8976540528
+UniRef50_R9SJM3: Amidohydrolase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.8976540528
+UniRef50_L2ZHW9: 3-(3-hydroxy-phenyl)propionate/3-hydroxycinnamic acid hydroxylase	23.8973397837
+UniRef50_L2ZHW9: 3-(3-hydroxy-phenyl)propionate/3-hydroxycinnamic acid hydroxylase|g__Escherichia.s__Escherichia_coli	23.8973397837
+UniRef50_A5UN24: Adhesin-like protein	23.8935987351
+UniRef50_A5UN24: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.8935987351
+UniRef50_A4WRU9: PRC-barrel domain protein	23.8935100493
+UniRef50_A4WRU9: PRC-barrel domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.5582430466
+UniRef50_A4WRU9: PRC-barrel domain protein|unclassified	1.3352670027
+UniRef50_A5UJ79: Adhesin-like protein	23.8923797964
+UniRef50_A5UJ79: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.8766796299
+UniRef50_A5UJ79: Adhesin-like protein|unclassified	0.0157001665
+UniRef50_P13518: RNase E specificity factor CsrD	23.8881782514
+UniRef50_P13518: RNase E specificity factor CsrD|g__Escherichia.s__Escherichia_coli	23.8881782514
+UniRef50_P0C0G1: Dihydropteroate synthase	23.8876210229
+UniRef50_P0C0G1: Dihydropteroate synthase|g__Streptococcus.s__Streptococcus_mutans	21.9723527271
+UniRef50_P0C0G1: Dihydropteroate synthase|g__Streptococcus.s__Streptococcus_agalactiae	1.8281535649
+UniRef50_P0C0G1: Dihydropteroate synthase|unclassified	0.0871147309
+UniRef50_D4GIA4: YhbT	23.8857561539
+UniRef50_D4GIA4: YhbT|g__Escherichia.s__Escherichia_coli	23.8857561539
+UniRef50_P33634	23.8778735337
+UniRef50_P33634|g__Escherichia.s__Escherichia_coli	23.8778735337
+UniRef50_A5WG42: NADH-quinone oxidoreductase subunit H	23.8774800870
+UniRef50_A5WG42: NADH-quinone oxidoreductase subunit H|g__Escherichia.s__Escherichia_coli	18.5382475712
+UniRef50_A5WG42: NADH-quinone oxidoreductase subunit H|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3331962985
+UniRef50_A5WG42: NADH-quinone oxidoreductase subunit H|g__Acinetobacter.s__Acinetobacter_baumannii	1.0060362173
+UniRef50_A3PS82: ABC transporter related	23.8739360604
+UniRef50_A3PS82: ABC transporter related|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.8739360604
+UniRef50_F5ZLB8: Transglycosylase protein	23.8653421310
+UniRef50_F5ZLB8: Transglycosylase protein|g__Streptococcus.s__Streptococcus_mutans	23.8653421310
+UniRef50_P0AF07: Motility protein B	23.8631284708
+UniRef50_P0AF07: Motility protein B|g__Escherichia.s__Escherichia_coli	23.8631284708
+UniRef50_Q6A9K7: UvrABC system protein B	23.8623042770
+UniRef50_Q6A9K7: UvrABC system protein B|g__Escherichia.s__Escherichia_coli	18.4867832683
+UniRef50_Q6A9K7: UvrABC system protein B|g__Streptococcus.s__Streptococcus_agalactiae	3.6711347762
+UniRef50_Q6A9K7: UvrABC system protein B|g__Propionibacterium.s__Propionibacterium_acnes	1.7043862325
+UniRef50_Q46858	23.8561953449
+UniRef50_Q46858|g__Escherichia.s__Escherichia_coli	23.8561953449
+UniRef50_D3DZA0: Amidohydrolase	23.8507325278
+UniRef50_D3DZA0: Amidohydrolase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.8507325278
+UniRef50_D2ZNU9	23.8448170298
+UniRef50_D2ZNU9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.8448170298
+UniRef50_P31069: Voltage-gated potassium channel Kch	23.8442762106
+UniRef50_P31069: Voltage-gated potassium channel Kch|g__Escherichia.s__Escherichia_coli	23.8442762106
+UniRef50_B6I0E7	23.8399318859
+UniRef50_B6I0E7|g__Escherichia.s__Escherichia_coli	23.8399318859
+UniRef50_P0AAP6	23.8386579055
+UniRef50_P0AAP6|g__Escherichia.s__Escherichia_coli	23.4999866103
+UniRef50_P0AAP6|unclassified	0.3386712952
+UniRef50_A5UNL2: Adhesin-like protein	23.8367729601
+UniRef50_A5UNL2: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.8367729601
+UniRef50_Q49VH1: Putative antiporter subunit mnhC2	23.8339876265
+UniRef50_Q49VH1: Putative antiporter subunit mnhC2|g__Staphylococcus.s__Staphylococcus_aureus	14.7960262101
+UniRef50_Q49VH1: Putative antiporter subunit mnhC2|g__Staphylococcus.s__Staphylococcus_epidermidis	9.0379614164
+UniRef50_P0A9G2: Transcriptional activator protein NhaR	23.8265076520
+UniRef50_P0A9G2: Transcriptional activator protein NhaR|g__Escherichia.s__Escherichia_coli	23.8265076520
+UniRef50_Q47208: Protein FdrA	23.8263935959
+UniRef50_Q47208: Protein FdrA|g__Escherichia.s__Escherichia_coli	23.8263935959
+UniRef50_P77375	23.8258036824
+UniRef50_P77375|g__Escherichia.s__Escherichia_coli	23.8258036824
+UniRef50_P76053: Probable DNA endonuclease SmrA	23.8229109311
+UniRef50_P76053: Probable DNA endonuclease SmrA|g__Escherichia.s__Escherichia_coli	23.8229109311
+UniRef50_Q2NE88: Methionine aminopeptidase	23.8191774153
+UniRef50_Q2NE88: Methionine aminopeptidase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.8191774153
+UniRef50_P09099: Xylulose kinase	23.8173827104
+UniRef50_P09099: Xylulose kinase|g__Escherichia.s__Escherichia_coli	23.8173827104
+UniRef50_P31550: Thiamine-binding periplasmic protein	23.8171450227
+UniRef50_P31550: Thiamine-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	23.8171450227
+UniRef50_W1CVX6: Potassium efflux system KefA protein / Small-conductance mechanosensitive channel	23.8126211459
+UniRef50_W1CVX6: Potassium efflux system KefA protein / Small-conductance mechanosensitive channel|g__Escherichia.s__Escherichia_coli	23.8126211459
+UniRef50_Q329T6: Low affinity potassium transport system protein kup	23.8098607504
+UniRef50_Q329T6: Low affinity potassium transport system protein kup|g__Escherichia.s__Escherichia_coli	23.8098607504
+UniRef50_F8HG03	23.8095238095
+UniRef50_F8HG03|g__Streptococcus.s__Streptococcus_mutans	23.8095238095
+UniRef50_U3STJ7	23.8095238095
+UniRef50_U3STJ7|g__Streptococcus.s__Streptococcus_mutans	23.8095238095
+UniRef50_W8SWM4	23.8095238095
+UniRef50_W8SWM4|g__Escherichia.s__Escherichia_coli	23.8095238095
+UniRef50_A3PIV7: Quinolinate phosphoribosyl transferase	23.8044011053
+UniRef50_A3PIV7: Quinolinate phosphoribosyl transferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.8044011053
+UniRef50_Q7MGT4: Phosphoribosylamine--glycine ligase	23.8021449748
+UniRef50_Q7MGT4: Phosphoribosylamine--glycine ligase|g__Escherichia.s__Escherichia_coli	23.8021449748
+UniRef50_P32704	23.8020007754
+UniRef50_P32704|g__Escherichia.s__Escherichia_coli	23.8020007754
+UniRef50_Q3HKJ2	23.7998935341
+UniRef50_Q3HKJ2|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.7495734774
+UniRef50_Q3HKJ2|unclassified	3.0503200567
+UniRef50_F6D690: Metallophosphoesterase	23.7978984574
+UniRef50_F6D690: Metallophosphoesterase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.7978984574
+UniRef50_A4W853: Negative modulator of initiation of replication	23.7967668303
+UniRef50_A4W853: Negative modulator of initiation of replication|g__Escherichia.s__Escherichia_coli	23.7967668303
+UniRef50_Q8FJN9: Cardiolipin synthase B	23.7926310961
+UniRef50_Q8FJN9: Cardiolipin synthase B|g__Escherichia.s__Escherichia_coli	23.7926310961
+UniRef50_B9KWI6: ABC-2 type transporter	23.7909764502
+UniRef50_B9KWI6: ABC-2 type transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.7909764502
+UniRef50_W1AP48: Penicillin-binding protein 2 (PBP-2)	23.7834155779
+UniRef50_W1AP48: Penicillin-binding protein 2 (PBP-2)|g__Escherichia.s__Escherichia_coli	23.7834155779
+UniRef50_D3E3Y1: Carbohydrate kinase PfkB family	23.7829061656
+UniRef50_D3E3Y1: Carbohydrate kinase PfkB family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.7829061656
+UniRef50_P50599: Protein TolR	23.7804253502
+UniRef50_P50599: Protein TolR|g__Pseudomonas.s__Pseudomonas_aeruginosa	23.7804253502
+UniRef50_A7MGZ5: Membrane-bound lytic murein transglycosylase F	23.7771339915
+UniRef50_A7MGZ5: Membrane-bound lytic murein transglycosylase F|g__Escherichia.s__Escherichia_coli	23.7771339915
+UniRef50_R7PTD3: Chlamydial polymorphic outer membrane protein repeat-containing domain protein	23.7764473061
+UniRef50_R7PTD3: Chlamydial polymorphic outer membrane protein repeat-containing domain protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.7764473061
+UniRef50_C5A6Q6: tRNA-binding protein, putative	23.7759258667
+UniRef50_C5A6Q6: tRNA-binding protein, putative|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.7759258667
+UniRef50_P02906: Sulfate-binding protein	23.7730176459
+UniRef50_P02906: Sulfate-binding protein|g__Escherichia.s__Escherichia_coli	23.7730176459
+UniRef50_P30900: Acetylornithine aminotransferase	23.7699806042
+UniRef50_P30900: Acetylornithine aminotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.7699806042
+UniRef50_D7A419: ABC transporter related protein	23.7644606786
+UniRef50_D7A419: ABC transporter related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.7644606786
+UniRef50_A6TH46: Thiol:disulfide interchange protein DsbD	23.7631136720
+UniRef50_A6TH46: Thiol:disulfide interchange protein DsbD|g__Escherichia.s__Escherichia_coli	23.7631136720
+UniRef50_C8U2L5: Predicted fimbrial-like adhesin protein SfmF	23.7550813008
+UniRef50_C8U2L5: Predicted fimbrial-like adhesin protein SfmF|g__Escherichia.s__Escherichia_coli	23.7550813008
+UniRef50_A5UL93: Biotin-[acetyl-CoA-carboxylase] ligase/biotin operon regulator bifunctional protein, BirA	23.7480658241
+UniRef50_A5UL93: Biotin-[acetyl-CoA-carboxylase] ligase/biotin operon regulator bifunctional protein, BirA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.7480658241
+UniRef50_P75749	23.7476607374
+UniRef50_P75749|g__Escherichia.s__Escherichia_coli	23.7476607374
+UniRef50_E0J5J4: 2-dehydro-3-deoxygluconokinase	23.7326340656
+UniRef50_E0J5J4: 2-dehydro-3-deoxygluconokinase|g__Escherichia.s__Escherichia_coli	23.1704750617
+UniRef50_E0J5J4: 2-dehydro-3-deoxygluconokinase|unclassified	0.5621590039
+UniRef50_A0A029LHT4	23.7211622947
+UniRef50_A0A029LHT4|unclassified	23.7211622947
+UniRef50_P39314: Inner membrane protein YtfF	23.7171226113
+UniRef50_P39314: Inner membrane protein YtfF|g__Escherichia.s__Escherichia_coli	23.7171226113
+UniRef50_P0C0C8: S-ribosylhomocysteine lyase	23.7135008548
+UniRef50_P0C0C8: S-ribosylhomocysteine lyase|g__Streptococcus.s__Streptococcus_mutans	19.3721074991
+UniRef50_P0C0C8: S-ribosylhomocysteine lyase|g__Streptococcus.s__Streptococcus_agalactiae	4.2341744928
+UniRef50_P0C0C8: S-ribosylhomocysteine lyase|unclassified	0.1072188629
+UniRef50_A1JKQ0: tRNA (cytidine/uridine-2'-O-)-methyltransferase TrmJ	23.7132208503
+UniRef50_A1JKQ0: tRNA (cytidine/uridine-2'-O-)-methyltransferase TrmJ|g__Escherichia.s__Escherichia_coli	23.7132208503
+UniRef50_P13458: Nuclease SbcCD subunit C	23.7105757692
+UniRef50_P13458: Nuclease SbcCD subunit C|g__Escherichia.s__Escherichia_coli	23.7105757692
+UniRef50_A5F974: Pantothenate synthetase	23.7093667745
+UniRef50_A5F974: Pantothenate synthetase|g__Escherichia.s__Escherichia_coli	23.7093667745
+UniRef50_A3CRC4	23.7057661608
+UniRef50_A3CRC4|g__Streptococcus.s__Streptococcus_mutans	23.7057661608
+UniRef50_Q6AKT0	23.6901916817
+UniRef50_Q6AKT0|g__Clostridium.s__Clostridium_beijerinckii	23.6901916817
+UniRef50_D4GNJ8: Cell division protein ZapC	23.6876645185
+UniRef50_D4GNJ8: Cell division protein ZapC|g__Escherichia.s__Escherichia_coli	23.6876645185
+UniRef50_E1XJQ2	23.6873508249
+UniRef50_E1XJQ2|g__Streptococcus.s__Streptococcus_mutans	23.6873508249
+UniRef50_Q46769: dTDP-4-dehydrorhamnose reductase	23.6827530184
+UniRef50_Q46769: dTDP-4-dehydrorhamnose reductase|g__Escherichia.s__Escherichia_coli	23.5859397398
+UniRef50_Q46769: dTDP-4-dehydrorhamnose reductase|unclassified	0.0968132787
+UniRef50_Q6FYD4: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex	23.6804104136
+UniRef50_Q6FYD4: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|g__Escherichia.s__Escherichia_coli	21.0006179183
+UniRef50_Q6FYD4: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.5533532014
+UniRef50_Q6FYD4: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|unclassified	0.1264392939
+UniRef50_P32672: Fructose-like permease IIC component 2	23.6767634047
+UniRef50_P32672: Fructose-like permease IIC component 2|g__Escherichia.s__Escherichia_coli	23.6767634047
+UniRef50_P58054: Hydrolase YbeM	23.6758325115
+UniRef50_P58054: Hydrolase YbeM|g__Escherichia.s__Escherichia_coli	23.6758325115
+UniRef50_P45077: Metalloprotease PmbA homolog	23.6734794644
+UniRef50_P45077: Metalloprotease PmbA homolog|g__Escherichia.s__Escherichia_coli	23.6403459269
+UniRef50_P45077: Metalloprotease PmbA homolog|unclassified	0.0331335375
+UniRef50_L0KYG3: Methanol-cobalamin methyltransferase B subunit	23.6733247050
+UniRef50_L0KYG3: Methanol-cobalamin methyltransferase B subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.6733247050
+UniRef50_P76204: Putative anti-FlhC(2)FlhD(4) factor YdiV	23.6681174491
+UniRef50_P76204: Putative anti-FlhC(2)FlhD(4) factor YdiV|g__Escherichia.s__Escherichia_coli	23.6681174491
+UniRef50_A5UJ84: Adhesin-like protein	23.6675519298
+UniRef50_A5UJ84: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.6675519298
+UniRef50_Q8FDG7: L-tartrate/succinate antiporter	23.6612069932
+UniRef50_Q8FDG7: L-tartrate/succinate antiporter|g__Escherichia.s__Escherichia_coli	23.6612069932
+UniRef50_P0AA62: Inner membrane protein YghB	23.6601798599
+UniRef50_P0AA62: Inner membrane protein YghB|g__Escherichia.s__Escherichia_coli	23.6601798599
+UniRef50_Q5HRH1	23.6584107327
+UniRef50_Q5HRH1|g__Staphylococcus.s__Staphylococcus_epidermidis	23.6584107327
+UniRef50_O27552: Leucine--tRNA ligase	23.6531511621
+UniRef50_O27552: Leucine--tRNA ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.6531511621
+UniRef50_P42592: Glucosidase YgjK	23.6506505862
+UniRef50_P42592: Glucosidase YgjK|g__Escherichia.s__Escherichia_coli	23.6506505862
+UniRef50_Q74RF9: Maltose transport system permease protein MalF	23.6504707010
+UniRef50_Q74RF9: Maltose transport system permease protein MalF|g__Escherichia.s__Escherichia_coli	23.6504707010
+UniRef50_V7EQ63: Ribonuclease E	23.6439998318
+UniRef50_V7EQ63: Ribonuclease E|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.6439998318
+UniRef50_P0AE17: Protein AmpG	23.6407547209
+UniRef50_P0AE17: Protein AmpG|g__Escherichia.s__Escherichia_coli	23.6407547209
+UniRef50_P38051: Menaquinone-specific isochorismate synthase	23.6359808022
+UniRef50_P38051: Menaquinone-specific isochorismate synthase|g__Escherichia.s__Escherichia_coli	23.5855183564
+UniRef50_P38051: Menaquinone-specific isochorismate synthase|unclassified	0.0504624458
+UniRef50_Q9HI37: Probable family 20 transposase	23.6124431948
+UniRef50_Q9HI37: Probable family 20 transposase|g__Pseudomonas.s__Pseudomonas_aeruginosa	23.6124431948
+UniRef50_I1WSZ4: Transcriptional activator protein IrlR	23.6000772895
+UniRef50_I1WSZ4: Transcriptional activator protein IrlR|g__Escherichia.s__Escherichia_coli	14.6081026947
+UniRef50_I1WSZ4: Transcriptional activator protein IrlR|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.9919745949
+UniRef50_A5UN25: Adhesin-like protein	23.5949747529
+UniRef50_A5UN25: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.5745968026
+UniRef50_A5UN25: Adhesin-like protein|unclassified	0.0203779503
+UniRef50_P39407	23.5930758721
+UniRef50_P39407|g__Escherichia.s__Escherichia_coli	23.5930758721
+UniRef50_A5UK42	23.5900123669
+UniRef50_A5UK42|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.5900123669
+UniRef50_C3TQZ2: Thiamine import ATP-binding protein ThiQ	23.5899867484
+UniRef50_C3TQZ2: Thiamine import ATP-binding protein ThiQ|g__Escherichia.s__Escherichia_coli	23.5899867484
+UniRef50_E8SDR9: Thioredoxin	23.5887090706
+UniRef50_E8SDR9: Thioredoxin|g__Staphylococcus.s__Staphylococcus_epidermidis	23.5887090706
+UniRef50_P21189: DNA polymerase II	23.5857549598
+UniRef50_P21189: DNA polymerase II|g__Escherichia.s__Escherichia_coli	23.5857549598
+UniRef50_D3E172: Sua5/YciO/YrdC/YwlC family translation factor	23.5814006612
+UniRef50_D3E172: Sua5/YciO/YrdC/YwlC family translation factor|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.5814006612
+UniRef50_W8T3G2: Diguanylate phosphodiesterase	23.5791369629
+UniRef50_W8T3G2: Diguanylate phosphodiesterase|g__Escherichia.s__Escherichia_coli	23.5791369629
+UniRef50_P26381: Fructose permease IIC component	23.5787684873
+UniRef50_P26381: Fructose permease IIC component|g__Escherichia.s__Escherichia_coli	23.5787684873
+UniRef50_Q893R0: Thiamine-phosphate synthase	23.5731532615
+UniRef50_Q893R0: Thiamine-phosphate synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.5731532615
+UniRef50_P71243: Putative colanic acid biosynthesis glycosyltransferase WcaL	23.5683801731
+UniRef50_P71243: Putative colanic acid biosynthesis glycosyltransferase WcaL|g__Escherichia.s__Escherichia_coli	23.5683801731
+UniRef50_P37047: Carbohydrate diacid regulator	23.5583616275
+UniRef50_P37047: Carbohydrate diacid regulator|g__Escherichia.s__Escherichia_coli	23.5583616275
+UniRef50_P76187: Oxidoreductase YdhF	23.5580213683
+UniRef50_P76187: Oxidoreductase YdhF|g__Escherichia.s__Escherichia_coli	23.5580213683
+UniRef50_A7MI52: Glutamate 5-kinase	23.5579162455
+UniRef50_A7MI52: Glutamate 5-kinase|g__Escherichia.s__Escherichia_coli	23.3466928557
+UniRef50_A7MI52: Glutamate 5-kinase|unclassified	0.2112233898
+UniRef50_P44068	23.5558806616
+UniRef50_P44068|g__Acinetobacter.s__Acinetobacter_baumannii	23.5558806616
+UniRef50_P0A9D3: Glutathione S-transferase GstA	23.5515437704
+UniRef50_P0A9D3: Glutathione S-transferase GstA|g__Escherichia.s__Escherichia_coli	23.5515437704
+UniRef50_C6DIM2: p-hydroxybenzoic acid efflux pump subunit AaeA	23.5514526782
+UniRef50_C6DIM2: p-hydroxybenzoic acid efflux pump subunit AaeA|g__Escherichia.s__Escherichia_coli	23.5514526782
+UniRef50_Q57658: Aspartate-semialdehyde dehydrogenase	23.5471957718
+UniRef50_Q57658: Aspartate-semialdehyde dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.5471957718
+UniRef50_O08368: Glutathione peroxidase	23.5470657946
+UniRef50_O08368: Glutathione peroxidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	23.3970366825
+UniRef50_O08368: Glutathione peroxidase|unclassified	0.1500291121
+UniRef50_P21866: KDP operon transcriptional regulatory protein KdpE	23.5468922719
+UniRef50_P21866: KDP operon transcriptional regulatory protein KdpE|g__Escherichia.s__Escherichia_coli	23.5468922719
+UniRef50_D2ZQR5	23.5423192593
+UniRef50_D2ZQR5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.5423192593
+UniRef50_R7PT43	23.5408151651
+UniRef50_R7PT43|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.5408151651
+UniRef50_Q47539: Taurine transport system permease protein TauC	23.5309407619
+UniRef50_Q47539: Taurine transport system permease protein TauC|g__Escherichia.s__Escherichia_coli	23.5309407619
+UniRef50_P26418: Flagellar motor switch protein FliM	23.5267087264
+UniRef50_P26418: Flagellar motor switch protein FliM|g__Escherichia.s__Escherichia_coli	23.5267087264
+UniRef50_B2S584: Ribulose-phosphate 3-epimerase	23.5241285505
+UniRef50_B2S584: Ribulose-phosphate 3-epimerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.5241285505
+UniRef50_F5X6L2: Thiamine transporter protein	23.5178606161
+UniRef50_F5X6L2: Thiamine transporter protein|g__Streptococcus.s__Streptococcus_mutans	23.5178606161
+UniRef50_A5UJH1	23.5122553498
+UniRef50_A5UJH1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.5122553498
+UniRef50_Q8X7J5: Multidrug resistance protein MdtA	23.5091666980
+UniRef50_Q8X7J5: Multidrug resistance protein MdtA|g__Escherichia.s__Escherichia_coli	23.5091666980
+UniRef50_A5UKX5: Phosphomannomutase, ManB	23.4941982028
+UniRef50_A5UKX5: Phosphomannomutase, ManB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.4941982028
+UniRef50_B5FTN1: D-amino acid dehydrogenase small subunit	23.4890269867
+UniRef50_B5FTN1: D-amino acid dehydrogenase small subunit|g__Escherichia.s__Escherichia_coli	23.2577868138
+UniRef50_B5FTN1: D-amino acid dehydrogenase small subunit|unclassified	0.2312401729
+UniRef50_Q58633	23.4870860231
+UniRef50_Q58633|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.4870860231
+UniRef50_P39389	23.4846103119
+UniRef50_P39389|g__Escherichia.s__Escherichia_coli	16.2028562855
+UniRef50_P39389|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2817540264
+UniRef50_A5UJY3: Polyferredoxin, iron-sulfur binding	23.4807194067
+UniRef50_A5UJY3: Polyferredoxin, iron-sulfur binding|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.4807194067
+UniRef50_G7M1U7: VanZ family protein	23.4806188829
+UniRef50_G7M1U7: VanZ family protein|g__Clostridium.s__Clostridium_beijerinckii	23.4806188829
+UniRef50_F7R3U3: Membrane-bound PQQ-dependent dehydrogenase, glucose/quinate/shikimate family protein	23.4803876977
+UniRef50_F7R3U3: Membrane-bound PQQ-dependent dehydrogenase, glucose/quinate/shikimate family protein|g__Escherichia.s__Escherichia_coli	23.4803876977
+UniRef50_Q320T0: Diguanylate cyclase DosC	23.4695027975
+UniRef50_Q320T0: Diguanylate cyclase DosC|g__Escherichia.s__Escherichia_coli	23.4695027975
+UniRef50_A5UNT1: Putative Gp40-related protein, ERF family single-strand annealing protein (Phage)	23.4427645887
+UniRef50_A5UNT1: Putative Gp40-related protein, ERF family single-strand annealing protein (Phage)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.4427645887
+UniRef50_P56262: Putative carboxymethylenebutenolidase	23.4418034053
+UniRef50_P56262: Putative carboxymethylenebutenolidase|g__Escherichia.s__Escherichia_coli	23.4418034053
+UniRef50_F2IZR6: Multiple antibiotic resistance (MarC)-related protein	23.4394825125
+UniRef50_F2IZR6: Multiple antibiotic resistance (MarC)-related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.4394825125
+UniRef50_Q880Z2: Xylose import ATP-binding protein XylG	23.4384416303
+UniRef50_Q880Z2: Xylose import ATP-binding protein XylG|g__Escherichia.s__Escherichia_coli	19.1016627110
+UniRef50_Q880Z2: Xylose import ATP-binding protein XylG|g__Clostridium.s__Clostridium_beijerinckii	4.3367789193
+UniRef50_Q9EYV5: HTH-type transcriptional regulator GadX	23.4319358256
+UniRef50_Q9EYV5: HTH-type transcriptional regulator GadX|g__Escherichia.s__Escherichia_coli	23.4319358256
+UniRef50_D3E2B7: Transporter CDF family	23.4306524216
+UniRef50_D3E2B7: Transporter CDF family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.4306524216
+UniRef50_P17583: Cyanate transport protein CynX	23.4296307904
+UniRef50_P17583: Cyanate transport protein CynX|g__Escherichia.s__Escherichia_coli	23.4296307904
+UniRef50_A1A968: Glutathione-binding protein GsiB	23.4292577260
+UniRef50_A1A968: Glutathione-binding protein GsiB|g__Escherichia.s__Escherichia_coli	23.4292577260
+UniRef50_Q8DYV7: Lipoprotein signal peptidase	23.4288822277
+UniRef50_Q8DYV7: Lipoprotein signal peptidase|g__Streptococcus.s__Streptococcus_mutans	23.4288822277
+UniRef50_A5UNM8	23.4270419073
+UniRef50_A5UNM8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.4270419073
+UniRef50_A7ZML4: N-succinylglutamate 5-semialdehyde dehydrogenase	23.4259976658
+UniRef50_A7ZML4: N-succinylglutamate 5-semialdehyde dehydrogenase|g__Escherichia.s__Escherichia_coli	22.7741024696
+UniRef50_A7ZML4: N-succinylglutamate 5-semialdehyde dehydrogenase|unclassified	0.6518951963
+UniRef50_P0A9D0: Fructose-1,6-bisphosphatase class 2	23.4183750943
+UniRef50_P0A9D0: Fructose-1,6-bisphosphatase class 2|g__Escherichia.s__Escherichia_coli	23.4183750943
+UniRef50_D3E414: Thioredoxin-disulfide reductase TrxB	23.4177192905
+UniRef50_D3E414: Thioredoxin-disulfide reductase TrxB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.4177192905
+UniRef50_A5UMG7: Cell wall biosynthesis protein, UDP-N-acetylmuramate-alanine ligase family	23.4156205479
+UniRef50_A5UMG7: Cell wall biosynthesis protein, UDP-N-acetylmuramate-alanine ligase family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.4156205479
+UniRef50_P0A864: Thiol peroxidase	23.4070024446
+UniRef50_P0A864: Thiol peroxidase|g__Escherichia.s__Escherichia_coli	23.4070024446
+UniRef50_M9R9T3	23.4034683334
+UniRef50_M9R9T3|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.4034683334
+UniRef50_Q0BUP8: 50S ribosomal protein L23	23.4013605442
+UniRef50_Q0BUP8: 50S ribosomal protein L23|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.4013605442
+UniRef50_P0AE75: Citrate carrier	23.3909576564
+UniRef50_P0AE75: Citrate carrier|g__Escherichia.s__Escherichia_coli	23.3909576564
+UniRef50_P77359	23.3908140472
+UniRef50_P77359|g__Escherichia.s__Escherichia_coli	23.3908140472
+UniRef50_I6SWC9: dTDP-4-dehydrorhamnose 3,5-epimerase	23.3876664237
+UniRef50_I6SWC9: dTDP-4-dehydrorhamnose 3,5-epimerase|g__Streptococcus.s__Streptococcus_mutans	23.3876664237
+UniRef50_N4BTF2: DEAD/DEAH box helicase family protein	23.3832904969
+UniRef50_N4BTF2: DEAD/DEAH box helicase family protein|g__Escherichia.s__Escherichia_coli	23.3832904969
+UniRef50_E2QG34: Peptide chain release factor homolog	23.3825936903
+UniRef50_E2QG34: Peptide chain release factor homolog|g__Escherichia.s__Escherichia_coli	23.3825936903
+UniRef50_B2S710: Oxygen-dependent coproporphyrinogen-III oxidase	23.3804429694
+UniRef50_B2S710: Oxygen-dependent coproporphyrinogen-III oxidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.1421698185
+UniRef50_B2S710: Oxygen-dependent coproporphyrinogen-III oxidase|unclassified	3.2382731508
+UniRef50_Q9KNM2: Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase	23.3782151765
+UniRef50_Q9KNM2: Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase|g__Escherichia.s__Escherichia_coli	23.1148875193
+UniRef50_Q9KNM2: Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase|unclassified	0.2633276572
+UniRef50_B5FV81: KLLA0D19929p	23.3637051944
+UniRef50_B5FV81: KLLA0D19929p|g__Streptococcus.s__Streptococcus_agalactiae	21.4369229208
+UniRef50_B5FV81: KLLA0D19929p|g__Neisseria.s__Neisseria_meningitidis	1.9267822736
+UniRef50_P39173: Putative glucose-6-phosphate 1-epimerase	23.3630177262
+UniRef50_P39173: Putative glucose-6-phosphate 1-epimerase|g__Escherichia.s__Escherichia_coli	23.3630177262
+UniRef50_A5UNU7	23.3615919033
+UniRef50_A5UNU7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.3774649192
+UniRef50_A5UNU7|unclassified	1.9841269841
+UniRef50_P45421	23.3613851552
+UniRef50_P45421|g__Escherichia.s__Escherichia_coli	23.3613851552
+UniRef50_Q57766: Formylmethanofuran--tetrahydromethanopterin formyltransferase	23.3583629718
+UniRef50_Q57766: Formylmethanofuran--tetrahydromethanopterin formyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.6769099417
+UniRef50_Q57766: Formylmethanofuran--tetrahydromethanopterin formyltransferase|unclassified	0.6814530301
+UniRef50_P77187	23.3552368057
+UniRef50_P77187|g__Escherichia.s__Escherichia_coli	23.3552368057
+UniRef50_A6X0F3: Glutathione S-transferase domain protein	23.3525159323
+UniRef50_A6X0F3: Glutathione S-transferase domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.3525159323
+UniRef50_P16536: 14 kDa peptide of ubiquinol-cytochrome c2 oxidoreductase complex	23.3480119857
+UniRef50_P16536: 14 kDa peptide of ubiquinol-cytochrome c2 oxidoreductase complex|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.3480119857
+UniRef50_P45213: Peptide methionine sulfoxide reductase MsrA/MsrB	23.3480050954
+UniRef50_P45213: Peptide methionine sulfoxide reductase MsrA/MsrB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.3020206064
+UniRef50_P45213: Peptide methionine sulfoxide reductase MsrA/MsrB|unclassified	0.0459844889
+UniRef50_Q57S48: HTH-type transcriptional repressor AllR	23.3265439033
+UniRef50_Q57S48: HTH-type transcriptional repressor AllR|g__Escherichia.s__Escherichia_coli	23.3265439033
+UniRef50_P00914: Deoxyribodipyrimidine photo-lyase	23.3238251070
+UniRef50_P00914: Deoxyribodipyrimidine photo-lyase|g__Escherichia.s__Escherichia_coli	23.1976741909
+UniRef50_P00914: Deoxyribodipyrimidine photo-lyase|unclassified	0.1261509161
+UniRef50_P77552	23.3145325293
+UniRef50_P77552|g__Escherichia.s__Escherichia_coli	23.3145325293
+UniRef50_A4WYK2	23.3131697867
+UniRef50_A4WYK2|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.3131697867
+UniRef50_R9SN55: Phosphopantothenate-cysteine ligase CoaB	23.3111872332
+UniRef50_R9SN55: Phosphopantothenate-cysteine ligase CoaB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.3111872332
+UniRef50_P08555: DsdX permease	23.3089200144
+UniRef50_P08555: DsdX permease|g__Escherichia.s__Escherichia_coli	23.3089200144
+UniRef50_P27243: O-antigen ligase	23.3066394337
+UniRef50_P27243: O-antigen ligase|g__Escherichia.s__Escherichia_coli	23.3066394337
+UniRef50_Q5WAG0: Ribonuclease P protein component	23.3030332876
+UniRef50_Q5WAG0: Ribonuclease P protein component|g__Staphylococcus.s__Staphylococcus_epidermidis	23.3030332876
+UniRef50_P37747: UDP-galactopyranose mutase	23.2994616645
+UniRef50_P37747: UDP-galactopyranose mutase|g__Escherichia.s__Escherichia_coli	23.2994616645
+UniRef50_P32153: Putative aminopeptidase FrvX	23.2986147893
+UniRef50_P32153: Putative aminopeptidase FrvX|g__Escherichia.s__Escherichia_coli	23.2986147893
+UniRef50_Q02432: Chlorophyllide reductase 52.5 kDa chain	23.2985299729
+UniRef50_Q02432: Chlorophyllide reductase 52.5 kDa chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.1372961023
+UniRef50_Q02432: Chlorophyllide reductase 52.5 kDa chain|unclassified	0.1612338706
+UniRef50_B1M613: GntR domain protein	23.2951704354
+UniRef50_B1M613: GntR domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.2951704354
+UniRef50_F3WHR7: Starvation-sensing protein rspA	23.2867061712
+UniRef50_F3WHR7: Starvation-sensing protein rspA|g__Escherichia.s__Escherichia_coli	23.2867061712
+UniRef50_P58213	23.2859532304
+UniRef50_P58213|g__Escherichia.s__Escherichia_coli	23.2859532304
+UniRef50_B9NUC1	23.2842308290
+UniRef50_B9NUC1|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.9325393617
+UniRef50_B9NUC1|unclassified	0.3516914673
+UniRef50_R9SJV5	23.2799103033
+UniRef50_R9SJV5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.2799103033
+UniRef50_I6U4A9	23.2759884659
+UniRef50_I6U4A9|g__Streptococcus.s__Streptococcus_mutans	23.2759884659
+UniRef50_P06202: Periplasmic oligopeptide-binding protein	23.2690977755
+UniRef50_P06202: Periplasmic oligopeptide-binding protein|g__Escherichia.s__Escherichia_coli	23.2690977755
+UniRef50_B9KS24	23.2644275463
+UniRef50_B9KS24|unclassified	14.4148700241
+UniRef50_B9KS24|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.8495575221
+UniRef50_A5UJE7: Purine NTPase involved in DNA repair, Rad50	23.2602372594
+UniRef50_A5UJE7: Purine NTPase involved in DNA repair, Rad50|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.2602372594
+UniRef50_A8Z1K3	23.2558139535
+UniRef50_A8Z1K3|g__Staphylococcus.s__Staphylococcus_aureus	23.2558139535
+UniRef50_G2U4Y6: Protease IV	23.2558139535
+UniRef50_G2U4Y6: Protease IV|g__Pseudomonas.s__Pseudomonas_aeruginosa	23.2558139535
+UniRef50_M2GG07	23.2558139535
+UniRef50_M2GG07|g__Streptococcus.s__Streptococcus_mutans	23.2558139535
+UniRef50_Q8CRQ4	23.2558139535
+UniRef50_Q8CRQ4|g__Staphylococcus.s__Staphylococcus_epidermidis	23.2558139535
+UniRef50_R8A454: Cassette chromosome recombinase B	23.2558139535
+UniRef50_R8A454: Cassette chromosome recombinase B|g__Staphylococcus.s__Staphylococcus_aureus	23.2558139535
+UniRef50_R8AKP7: Formate dehydrogenase accessory protein	23.2558139535
+UniRef50_R8AKP7: Formate dehydrogenase accessory protein|g__Staphylococcus.s__Staphylococcus_epidermidis	23.2558139535
+UniRef50_P69435: Poly-beta-1,6-N-acetyl-D-glucosamine export protein	23.2495974333
+UniRef50_P69435: Poly-beta-1,6-N-acetyl-D-glucosamine export protein|g__Escherichia.s__Escherichia_coli	23.2495974333
+UniRef50_D3E0L0: Signal recognition particle receptor FtsY	23.2378737731
+UniRef50_D3E0L0: Signal recognition particle receptor FtsY|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.2378737731
+UniRef50_P00893: Acetolactate synthase isozyme 3 large subunit	23.2357095177
+UniRef50_P00893: Acetolactate synthase isozyme 3 large subunit|g__Escherichia.s__Escherichia_coli	23.0299549024
+UniRef50_P00893: Acetolactate synthase isozyme 3 large subunit|unclassified	0.2057546152
+UniRef50_Q9HXE9: Phosphatidylcholine synthase	23.2339086666
+UniRef50_Q9HXE9: Phosphatidylcholine synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	23.2339086666
+UniRef50_P39187	23.2334909482
+UniRef50_P39187|g__Escherichia.s__Escherichia_coli	23.2334909482
+UniRef50_P0AGM3: UPF0126 inner membrane protein YicG	23.2325964174
+UniRef50_P0AGM3: UPF0126 inner membrane protein YicG|g__Escherichia.s__Escherichia_coli	23.2325964174
+UniRef50_E6NXI7	23.2311855764
+UniRef50_E6NXI7|g__Escherichia.s__Escherichia_coli	23.2311855764
+UniRef50_A5UNF7: Putative nucleic acid-binding protein	23.2311633359
+UniRef50_A5UNF7: Putative nucleic acid-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.2311633359
+UniRef50_Q3J213: Histone-like nucleoid-structuring protein H-NS	23.2303356565
+UniRef50_Q3J213: Histone-like nucleoid-structuring protein H-NS|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.2303356565
+UniRef50_P75908: Probable diguanylate cyclase YcdT	23.2263917477
+UniRef50_P75908: Probable diguanylate cyclase YcdT|g__Escherichia.s__Escherichia_coli	23.2263917477
+UniRef50_P08142: Acetolactate synthase isozyme 1 large subunit	23.2202346892
+UniRef50_P08142: Acetolactate synthase isozyme 1 large subunit|g__Escherichia.s__Escherichia_coli	21.6960543381
+UniRef50_P08142: Acetolactate synthase isozyme 1 large subunit|g__Clostridium.s__Clostridium_beijerinckii	1.2168043343
+UniRef50_P08142: Acetolactate synthase isozyme 1 large subunit|unclassified	0.3073760168
+UniRef50_Q3IXI3: PpkA-related protein	23.2130446909
+UniRef50_Q3IXI3: PpkA-related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.5810436403
+UniRef50_Q3IXI3: PpkA-related protein|unclassified	1.6320010506
+UniRef50_Q56952: Periplasmic chelated iron-binding protein YfeA	23.2064913715
+UniRef50_Q56952: Periplasmic chelated iron-binding protein YfeA|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.2064913715
+UniRef50_P63699: Putative bacterioferritin B	23.2063360662
+UniRef50_P63699: Putative bacterioferritin B|g__Pseudomonas.s__Pseudomonas_aeruginosa	23.2063360662
+UniRef50_A7ZTX6: Ketol-acid reductoisomerase	23.2027712742
+UniRef50_A7ZTX6: Ketol-acid reductoisomerase|g__Escherichia.s__Escherichia_coli	22.6126762572
+UniRef50_A7ZTX6: Ketol-acid reductoisomerase|unclassified	0.5900950170
+UniRef50_R5Q800	23.1973261329
+UniRef50_R5Q800|unclassified	23.1973261329
+UniRef50_H1BUU0: Inner membrane metabolite transporter ygcS	23.1958352569
+UniRef50_H1BUU0: Inner membrane metabolite transporter ygcS|g__Escherichia.s__Escherichia_coli	23.1958352569
+UniRef50_Q5HKF5: SspC protein	23.1924157797
+UniRef50_Q5HKF5: SspC protein|g__Staphylococcus.s__Staphylococcus_epidermidis	23.1924157797
+UniRef50_S5YCH9: Hydrolase, HAD superfamily	23.1835931574
+UniRef50_S5YCH9: Hydrolase, HAD superfamily|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.1835931574
+UniRef50_F6EZI7: Diguanylate cyclase with GAF sensor	23.1813535297
+UniRef50_F6EZI7: Diguanylate cyclase with GAF sensor|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.7140550097
+UniRef50_F6EZI7: Diguanylate cyclase with GAF sensor|unclassified	0.4672985200
+UniRef50_P46133: p-aminobenzoyl-glutamate transport protein	23.1810580187
+UniRef50_P46133: p-aminobenzoyl-glutamate transport protein|g__Escherichia.s__Escherichia_coli	23.1810580187
+UniRef50_D0JTC4: Uroporphyrinogen decarboxylase	23.1784787615
+UniRef50_D0JTC4: Uroporphyrinogen decarboxylase|g__Escherichia.s__Escherichia_coli	23.1784787615
+UniRef50_Q5LWX7: Flagellar L-ring protein	23.1773952377
+UniRef50_Q5LWX7: Flagellar L-ring protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.1773952377
+UniRef50_D2ZRM7	23.1771613035
+UniRef50_D2ZRM7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.7647319249
+UniRef50_D2ZRM7|unclassified	1.4124293785
+UniRef50_B9KXA8	23.1729166138
+UniRef50_B9KXA8|unclassified	23.1729166138
+UniRef50_K2BFC0	23.1496366945
+UniRef50_K2BFC0|unclassified	23.1496366945
+UniRef50_P37621: UPF0226 protein YhhS	23.1471731150
+UniRef50_P37621: UPF0226 protein YhhS|g__Escherichia.s__Escherichia_coli	23.1471731150
+UniRef50_A4WPE9: Cytochrome B561	23.1470816642
+UniRef50_A4WPE9: Cytochrome B561|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.1470816642
+UniRef50_O26230: Probable deoxyhypusine synthase	23.1438053222
+UniRef50_O26230: Probable deoxyhypusine synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.1438053222
+UniRef50_Q494C7: ATP synthase subunit b	23.1414288018
+UniRef50_Q494C7: ATP synthase subunit b|g__Escherichia.s__Escherichia_coli	23.1414288018
+UniRef50_A5UM57: Predicted deacylase	23.1381757555
+UniRef50_A5UM57: Predicted deacylase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.1381757555
+UniRef50_H3XFB9	23.1260424857
+UniRef50_H3XFB9|g__Staphylococcus.s__Staphylococcus_aureus	23.1260424857
+UniRef50_B6V376: Tra8	23.1251656397
+UniRef50_B6V376: Tra8|g__Staphylococcus.s__Staphylococcus_aureus	23.1251656397
+UniRef50_H4EZB3: Beta-lactamase domain protein	23.1220392511
+UniRef50_H4EZB3: Beta-lactamase domain protein|g__Staphylococcus.s__Staphylococcus_aureus	23.1220392511
+UniRef50_P0AD69: Peptidoglycan synthase FtsI	23.1173127266
+UniRef50_P0AD69: Peptidoglycan synthase FtsI|g__Escherichia.s__Escherichia_coli	22.9454776127
+UniRef50_P0AD69: Peptidoglycan synthase FtsI|unclassified	0.1718351139
+UniRef50_A5UNR6: Heavy metal cation (Co/Zn/Cd) efflux system protein, CzcD family	23.1142570610
+UniRef50_A5UNR6: Heavy metal cation (Co/Zn/Cd) efflux system protein, CzcD family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.1142570610
+UniRef50_O87656: Iron(3+)-hydroxamate import system permease protein FhuB	23.1120114848
+UniRef50_O87656: Iron(3+)-hydroxamate import system permease protein FhuB|g__Escherichia.s__Escherichia_coli	23.1120114848
+UniRef50_Q9AGA7: PTS system alpha-glucoside-specific EIICB component	23.1101698036
+UniRef50_Q9AGA7: PTS system alpha-glucoside-specific EIICB component|g__Escherichia.s__Escherichia_coli	22.6901376114
+UniRef50_Q9AGA7: PTS system alpha-glucoside-specific EIICB component|unclassified	0.4200321922
+UniRef50_Q57714: Pyruvate synthase subunit PorB	23.1014550138
+UniRef50_Q57714: Pyruvate synthase subunit PorB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.1014550138
+UniRef50_A5UL22: DNA repair helicase	23.0966233452
+UniRef50_A5UL22: DNA repair helicase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.0966233452
+UniRef50_M1XGV8	23.0964508054
+UniRef50_M1XGV8|g__Staphylococcus.s__Staphylococcus_epidermidis	14.6655700919
+UniRef50_M1XGV8|g__Staphylococcus.s__Staphylococcus_aureus	8.4308807135
+UniRef50_P64588: Transcriptional regulator YqjI	23.0952970203
+UniRef50_P64588: Transcriptional regulator YqjI|g__Escherichia.s__Escherichia_coli	23.0952970203
+UniRef50_B9KPD3: Small GTP-binding protein	23.0919617419
+UniRef50_B9KPD3: Small GTP-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.0919617419
+UniRef50_Q130Q6: ABC-1	23.0918134079
+UniRef50_Q130Q6: ABC-1|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.0918134079
+UniRef50_B9KSL8: Efflux transporter, RND family, MFP subunit	23.0891121929
+UniRef50_B9KSL8: Efflux transporter, RND family, MFP subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	23.0891121929
+UniRef50_P45135: Protein mrp homolog	23.0889076568
+UniRef50_P45135: Protein mrp homolog|g__Escherichia.s__Escherichia_coli	23.0889076568
+UniRef50_P07129: Beta-xylosidase	23.0842199411
+UniRef50_P07129: Beta-xylosidase|g__Escherichia.s__Escherichia_coli	20.5525133107
+UniRef50_P07129: Beta-xylosidase|g__Clostridium.s__Clostridium_beijerinckii	2.5317066304
+UniRef50_C6DKE8: Altronate oxidoreductase	23.0824621133
+UniRef50_C6DKE8: Altronate oxidoreductase|g__Escherichia.s__Escherichia_coli	23.0271542150
+UniRef50_C6DKE8: Altronate oxidoreductase|unclassified	0.0553078983
+UniRef50_A5UJU7: Serine acetyltransferase, CysE	23.0781671217
+UniRef50_A5UJU7: Serine acetyltransferase, CysE|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.0781671217
+UniRef50_P0A9R9: Cell division ATP-binding protein FtsE	23.0774115088
+UniRef50_P0A9R9: Cell division ATP-binding protein FtsE|g__Escherichia.s__Escherichia_coli	23.0774115088
+UniRef50_P45546	23.0696207750
+UniRef50_P45546|g__Escherichia.s__Escherichia_coli	23.0696207750
+UniRef50_A6UWB3: Glutamate-1-semialdehyde 2,1-aminomutase	23.0681056803
+UniRef50_A6UWB3: Glutamate-1-semialdehyde 2,1-aminomutase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.0226385462
+UniRef50_A6UWB3: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0454671341
+UniRef50_P31447	23.0648232944
+UniRef50_P31447|g__Escherichia.s__Escherichia_coli	23.0648232944
+UniRef50_Q8CS31	23.0593137167
+UniRef50_Q8CS31|g__Staphylococcus.s__Staphylococcus_epidermidis	23.0593137167
+UniRef50_D4JCA2: NTP pyrophosphohydrolases containing a Zn-finger, probably nucleic-acid-binding	23.0490347600
+UniRef50_D4JCA2: NTP pyrophosphohydrolases containing a Zn-finger, probably nucleic-acid-binding|g__Streptococcus.s__Streptococcus_mutans	23.0490347600
+UniRef50_A0A024HEK4: Porin	23.0482104670
+UniRef50_A0A024HEK4: Porin|g__Pseudomonas.s__Pseudomonas_aeruginosa	23.0482104670
+UniRef50_I6T7J2	23.0431525196
+UniRef50_I6T7J2|g__Streptococcus.s__Streptococcus_mutans	23.0431525196
+UniRef50_P50466: Aerotaxis receptor	23.0397525486
+UniRef50_P50466: Aerotaxis receptor|g__Escherichia.s__Escherichia_coli	23.0397525486
+UniRef50_Q2NEJ8: Predicted Fe-S oxidoreductase	23.0393968636
+UniRef50_Q2NEJ8: Predicted Fe-S oxidoreductase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.0393968636
+UniRef50_P45185: Chromosome partition protein MukF	23.0393388905
+UniRef50_P45185: Chromosome partition protein MukF|g__Escherichia.s__Escherichia_coli	23.0393388905
+UniRef50_Q88R97: FMN reductase (NADPH)	23.0377780882
+UniRef50_Q88R97: FMN reductase (NADPH)|g__Pseudomonas.s__Pseudomonas_aeruginosa	22.2218025754
+UniRef50_Q88R97: FMN reductase (NADPH)|unclassified	0.8159755128
+UniRef50_R9SLB7: RNA methylase	23.0324720950
+UniRef50_R9SLB7: RNA methylase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.0324720950
+UniRef50_P31827	23.0274731060
+UniRef50_P31827|g__Escherichia.s__Escherichia_coli	23.0274731060
+UniRef50_P24180: Multidrug export protein AcrE	23.0270382353
+UniRef50_P24180: Multidrug export protein AcrE|g__Escherichia.s__Escherichia_coli	23.0270382353
+UniRef50_A7ZV28: Elongation factor P--(R)-beta-lysine ligase	23.0252339194
+UniRef50_A7ZV28: Elongation factor P--(R)-beta-lysine ligase|g__Escherichia.s__Escherichia_coli	23.0252339194
+UniRef50_P77338: Mechanosensitive channel MscK	23.0249387899
+UniRef50_P77338: Mechanosensitive channel MscK|g__Escherichia.s__Escherichia_coli	23.0249387899
+UniRef50_F2AIV2	23.0224595294
+UniRef50_F2AIV2|unclassified	23.0224595294
+UniRef50_F0P8N4	23.0167554268
+UniRef50_F0P8N4|g__Staphylococcus.s__Staphylococcus_epidermidis	15.8225108225
+UniRef50_F0P8N4|g__Staphylococcus.s__Staphylococcus_aureus	7.1942446043
+UniRef50_P39838: Phosphotransferase RcsD	23.0144650239
+UniRef50_P39838: Phosphotransferase RcsD|g__Escherichia.s__Escherichia_coli	23.0144650239
+UniRef50_D3E0F6: CBS domain-containing protein	23.0106610709
+UniRef50_D3E0F6: CBS domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.0106610709
+UniRef50_R7PY79	23.0097925463
+UniRef50_R7PY79|g__Methanobrevibacter.s__Methanobrevibacter_smithii	23.0097925463
+UniRef50_P37748: O-antigen polymerase	22.9926032933
+UniRef50_P37748: O-antigen polymerase|g__Escherichia.s__Escherichia_coli	22.9926032933
+UniRef50_A4W3M3: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	22.9908366615
+UniRef50_A4W3M3: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|g__Streptococcus.s__Streptococcus_mutans	22.9908366615
+UniRef50_Q6GDE9: Serine-rich adhesin for platelets	22.9884301653
+UniRef50_Q6GDE9: Serine-rich adhesin for platelets|g__Staphylococcus.s__Staphylococcus_aureus	22.7283521419
+UniRef50_Q6GDE9: Serine-rich adhesin for platelets|g__Staphylococcus.s__Staphylococcus_epidermidis	0.2600780234
+UniRef50_Q6LPL4: Chromosome partition protein MukE	22.9872818015
+UniRef50_Q6LPL4: Chromosome partition protein MukE|g__Escherichia.s__Escherichia_coli	22.9872818015
+UniRef50_A1WSR7: CreA family protein	22.9863521998
+UniRef50_A1WSR7: CreA family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	22.7272727273
+UniRef50_A1WSR7: CreA family protein|unclassified	0.2590794725
+UniRef50_P39399: Probable HTH-type transcriptional regulator YjjM	22.9824023478
+UniRef50_P39399: Probable HTH-type transcriptional regulator YjjM|g__Escherichia.s__Escherichia_coli	22.9824023478
+UniRef50_O26899: Cobalt-precorrin-5B C(1)-methyltransferase	22.9820584207
+UniRef50_O26899: Cobalt-precorrin-5B C(1)-methyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.9820584207
+UniRef50_C6EB78: CP4-44 prophage predicted disrupted hemin or colicin receptor	22.9722658294
+UniRef50_C6EB78: CP4-44 prophage predicted disrupted hemin or colicin receptor|g__Escherichia.s__Escherichia_coli	22.9722658294
+UniRef50_B9KJE4: Flagellar biosynthetic protein FlhB	22.9685312132
+UniRef50_B9KJE4: Flagellar biosynthetic protein FlhB|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.9685312132
+UniRef50_Q8DW61	22.9630566802
+UniRef50_Q8DW61|g__Streptococcus.s__Streptococcus_mutans	22.9630566802
+UniRef50_P77599: Probable fimbrial chaperone YfcS	22.9586703870
+UniRef50_P77599: Probable fimbrial chaperone YfcS|g__Escherichia.s__Escherichia_coli	22.9586703870
+UniRef50_P08005: Oligopeptide transport system permease protein OppB	22.9543351366
+UniRef50_P08005: Oligopeptide transport system permease protein OppB|g__Escherichia.s__Escherichia_coli	22.9543351366
+UniRef50_A9MHF6	22.9516686134
+UniRef50_A9MHF6|g__Escherichia.s__Escherichia_coli	21.7627171139
+UniRef50_A9MHF6|unclassified	1.1889514995
+UniRef50_A3PIL0: TonB-dependent receptor	22.9510232887
+UniRef50_A3PIL0: TonB-dependent receptor|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.9510232887
+UniRef50_B9KRR2: ATP dependent DNA ligase	22.9502936823
+UniRef50_B9KRR2: ATP dependent DNA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.9502936823
+UniRef50_Q8FHG0: HTH-type transcriptional regulator YdeO	22.9305038816
+UniRef50_Q8FHG0: HTH-type transcriptional regulator YdeO|g__Escherichia.s__Escherichia_coli	22.9305038816
+UniRef50_A8GCA1: Ecotin	22.9167784734
+UniRef50_A8GCA1: Ecotin|g__Escherichia.s__Escherichia_coli	22.9167784734
+UniRef50_A3MV69: Elongation factor 1-alpha	22.9167333240
+UniRef50_A3MV69: Elongation factor 1-alpha|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.9167333240
+UniRef50_P25907	22.9101084870
+UniRef50_P25907|g__Escherichia.s__Escherichia_coli	22.9101084870
+UniRef50_Q8X5L7: Cellulose synthase catalytic subunit [UDP-forming]	22.9031494582
+UniRef50_Q8X5L7: Cellulose synthase catalytic subunit [UDP-forming]|g__Escherichia.s__Escherichia_coli	22.9031494582
+UniRef50_Q0K963: Histidine--tRNA ligase	22.8988344309
+UniRef50_Q0K963: Histidine--tRNA ligase|g__Escherichia.s__Escherichia_coli	14.0188679323
+UniRef50_Q0K963: Histidine--tRNA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.8799664986
+UniRef50_E7K622: Osmolarity sensor envZ domain protein	22.8963798350
+UniRef50_E7K622: Osmolarity sensor envZ domain protein|g__Escherichia.s__Escherichia_coli	22.8963798350
+UniRef50_W8T7R1	22.8851453934
+UniRef50_W8T7R1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.8851453934
+UniRef50_A5UKP7	22.8847817241
+UniRef50_A5UKP7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.8847817241
+UniRef50_P23256: Protein MalY	22.8812297772
+UniRef50_P23256: Protein MalY|g__Escherichia.s__Escherichia_coli	22.8812297772
+UniRef50_P0AD62: Pyruvate kinase I	22.8666195222
+UniRef50_P0AD62: Pyruvate kinase I|g__Escherichia.s__Escherichia_coli	22.8666195222
+UniRef50_P31802: Nitrate/nitrite response regulator protein NarP	22.8662932929
+UniRef50_P31802: Nitrate/nitrite response regulator protein NarP|g__Escherichia.s__Escherichia_coli	16.5471621984
+UniRef50_P31802: Nitrate/nitrite response regulator protein NarP|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3191310945
+UniRef50_A5UNT4	22.8619039940
+UniRef50_A5UNT4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.8619039940
+UniRef50_P43799: Anaerobic glycerol-3-phosphate dehydrogenase subunit A	22.8586895797
+UniRef50_P43799: Anaerobic glycerol-3-phosphate dehydrogenase subunit A|g__Escherichia.s__Escherichia_coli	22.7533781594
+UniRef50_P43799: Anaerobic glycerol-3-phosphate dehydrogenase subunit A|unclassified	0.1053114203
+UniRef50_UPI0002F3FCA9: hypothetical protein	22.8523861644
+UniRef50_UPI0002F3FCA9: hypothetical protein|unclassified	22.8523861644
+UniRef50_D8A6D8	22.8520052612
+UniRef50_D8A6D8|g__Escherichia.s__Escherichia_coli	22.8520052612
+UniRef50_P0AGM1: UPF0118 inner membrane protein YhhT	22.8434673522
+UniRef50_P0AGM1: UPF0118 inner membrane protein YhhT|g__Escherichia.s__Escherichia_coli	22.8434673522
+UniRef50_Q2WBG4: Thioredoxin domain-containing protein	22.8421410401
+UniRef50_Q2WBG4: Thioredoxin domain-containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.8421410401
+UniRef50_Q45972: Ferredoxin-1	22.8344384713
+UniRef50_Q45972: Ferredoxin-1|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.8344384713
+UniRef50_P76245: Probable diguanylate cyclase YeaP	22.8310478655
+UniRef50_P76245: Probable diguanylate cyclase YeaP|g__Escherichia.s__Escherichia_coli	22.8310478655
+UniRef50_A4WQP1: Transposase, IS4 family	22.8302227188
+UniRef50_A4WQP1: Transposase, IS4 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.0169531580
+UniRef50_A4WQP1: Transposase, IS4 family|unclassified	1.8132695608
+UniRef50_D3QDX7	22.8205128205
+UniRef50_D3QDX7|g__Staphylococcus.s__Staphylococcus_aureus	12.8205128205
+UniRef50_D3QDX7|g__Staphylococcus.s__Staphylococcus_epidermidis	10.0000000000
+UniRef50_D2ZS89	22.8202581732
+UniRef50_D2ZS89|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.8202581732
+UniRef50_A5UKJ6	22.8149036094
+UniRef50_A5UKJ6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.8149036094
+UniRef50_Q085E2: 30S ribosomal protein S2	22.8146090397
+UniRef50_Q085E2: 30S ribosomal protein S2|g__Escherichia.s__Escherichia_coli	22.8146090397
+UniRef50_Q3J4U6	22.8111794293
+UniRef50_Q3J4U6|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.5982752160
+UniRef50_Q3J4U6|unclassified	2.2129042133
+UniRef50_P45089: Arginine ABC transporter permease protein ArtM	22.8045070524
+UniRef50_P45089: Arginine ABC transporter permease protein ArtM|g__Escherichia.s__Escherichia_coli	22.8045070524
+UniRef50_Q8CMX1: Transcriptional regulator	22.8004089082
+UniRef50_Q8CMX1: Transcriptional regulator|g__Staphylococcus.s__Staphylococcus_epidermidis	22.8004089082
+UniRef50_A5UN72: Predicted transcriptional regulator	22.7962059033
+UniRef50_A5UN72: Predicted transcriptional regulator|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.7962059033
+UniRef50_R7PVC1: DNA helicase UvrD/REP helicase family	22.7904382299
+UniRef50_R7PVC1: DNA helicase UvrD/REP helicase family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.7904382299
+UniRef50_X2N154: Glutamate synthase	22.7893675751
+UniRef50_X2N154: Glutamate synthase|g__Escherichia.s__Escherichia_coli	22.7893675751
+UniRef50_P0A9C3: Aldose 1-epimerase	22.7882223396
+UniRef50_P0A9C3: Aldose 1-epimerase|g__Escherichia.s__Escherichia_coli	22.6077358363
+UniRef50_P0A9C3: Aldose 1-epimerase|unclassified	0.1804865033
+UniRef50_A0A029I8C3: TPR repeat family protein	22.7837270891
+UniRef50_A0A029I8C3: TPR repeat family protein|g__Escherichia.s__Escherichia_coli	22.7837270891
+UniRef50_B9KPQ7: Ribonuclease BN	22.7764441960
+UniRef50_B9KPQ7: Ribonuclease BN|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.7764441960
+UniRef50_U5NMH8	22.7727727728
+UniRef50_U5NMH8|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.7727727728
+UniRef50_A4WQE3: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	22.7719856857
+UniRef50_A4WQE3: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.7719856857
+UniRef50_B8IEX4: Methyladenine glycosylase	22.7688408460
+UniRef50_B8IEX4: Methyladenine glycosylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.7688408460
+UniRef50_P0AER7: Glutamate/aspartate transport system permease protein GltK	22.7660506091
+UniRef50_P0AER7: Glutamate/aspartate transport system permease protein GltK|g__Escherichia.s__Escherichia_coli	22.7660506091
+UniRef50_I6T7R3: ATP-binding protein	22.7645982370
+UniRef50_I6T7R3: ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	22.7645982370
+UniRef50_B9KR53: Transcriptional regulator, Fis family	22.7641322990
+UniRef50_B9KR53: Transcriptional regulator, Fis family|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.7641322990
+UniRef50_F3U2E4: McpE	22.7634570081
+UniRef50_F3U2E4: McpE|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.7634570081
+UniRef50_P42628: Inner membrane transport protein YhaO	22.7624819916
+UniRef50_P42628: Inner membrane transport protein YhaO|g__Escherichia.s__Escherichia_coli	22.7624819916
+UniRef50_P42640: Putative phosphoethanolamine transferase YhbX	22.7620335328
+UniRef50_P42640: Putative phosphoethanolamine transferase YhbX|g__Escherichia.s__Escherichia_coli	22.7620335328
+UniRef50_R9SIP9: CoB--CoM heterodisulfide reductase subunit B HdrB1	22.7555264129
+UniRef50_R9SIP9: CoB--CoM heterodisulfide reductase subunit B HdrB1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.7555264129
+UniRef50_P37837: Transaldolase	22.7496790816
+UniRef50_P37837: Transaldolase|g__Escherichia.s__Escherichia_coli	22.7496790816
+UniRef50_P77333: HTH-type transcriptional regulator PgrR	22.7378271622
+UniRef50_P77333: HTH-type transcriptional regulator PgrR|g__Escherichia.s__Escherichia_coli	17.4687523535
+UniRef50_P77333: HTH-type transcriptional regulator PgrR|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2690748087
+UniRef50_A5ULW7: Nitrate/sulfonate/bicarbonate ABC transporter, ATPase component	22.7323676383
+UniRef50_A5ULW7: Nitrate/sulfonate/bicarbonate ABC transporter, ATPase component|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.7323676383
+UniRef50_A3PJ08	22.7272727273
+UniRef50_A3PJ08|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.7272727273
+UniRef50_B5YZN9	22.7272727273
+UniRef50_B5YZN9|g__Escherichia.s__Escherichia_coli	22.7272727273
+UniRef50_G4LHL3	22.7272727273
+UniRef50_G4LHL3|g__Pseudomonas.s__Pseudomonas_aeruginosa	22.7272727273
+UniRef50_A5UK74: Xanthine/uracil permease, UraA	22.7215251869
+UniRef50_A5UK74: Xanthine/uracil permease, UraA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.7215251869
+UniRef50_R9ZBZ3	22.7119888715
+UniRef50_R9ZBZ3|g__Pseudomonas.s__Pseudomonas_aeruginosa	20.5563072479
+UniRef50_R9ZBZ3|unclassified	2.1556816236
+UniRef50_V0KMQ9: Pyruvate:ferredoxin (Flavodoxin) oxidoreductase	22.7111559433
+UniRef50_V0KMQ9: Pyruvate:ferredoxin (Flavodoxin) oxidoreductase|g__Escherichia.s__Escherichia_coli	22.7111559433
+UniRef50_B5ZE82: Two component transcriptional regulator, winged helix family	22.7106290075
+UniRef50_B5ZE82: Two component transcriptional regulator, winged helix family|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.7106290075
+UniRef50_A5UNS6	22.7040816327
+UniRef50_A5UNS6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.7040816327
+UniRef50_P0ACL7: Putative L-lactate dehydrogenase operon regulatory protein	22.7033618541
+UniRef50_P0ACL7: Putative L-lactate dehydrogenase operon regulatory protein|g__Escherichia.s__Escherichia_coli	22.7033618541
+UniRef50_A4WQR0: MscS Mechanosensitive ion channel	22.7011203850
+UniRef50_A4WQR0: MscS Mechanosensitive ion channel|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.7011203850
+UniRef50_P37627	22.6954649692
+UniRef50_P37627|g__Escherichia.s__Escherichia_coli	22.6954649692
+UniRef50_A5UNU9: Bacteriophage capsid portal protein	22.6948746540
+UniRef50_A5UNU9: Bacteriophage capsid portal protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.6948746540
+UniRef50_Q9KVQ7: DNA recombination protein RmuC homolog	22.6910868065
+UniRef50_Q9KVQ7: DNA recombination protein RmuC homolog|g__Escherichia.s__Escherichia_coli	22.6910868065
+UniRef50_A5UKP1: Phosphate-specific transport system accessory protein PhoU	22.6885332651
+UniRef50_A5UKP1: Phosphate-specific transport system accessory protein PhoU|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.6885332651
+UniRef50_Q9HQU4: Inosine-5'-monophosphate dehydrogenase	22.6881751186
+UniRef50_Q9HQU4: Inosine-5'-monophosphate dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.4381476168
+UniRef50_Q9HQU4: Inosine-5'-monophosphate dehydrogenase|unclassified	0.2500275017
+UniRef50_P0A9M3: Hypoxanthine phosphoribosyltransferase	22.6879440970
+UniRef50_P0A9M3: Hypoxanthine phosphoribosyltransferase|g__Escherichia.s__Escherichia_coli	22.2912630631
+UniRef50_P0A9M3: Hypoxanthine phosphoribosyltransferase|unclassified	0.3966810339
+UniRef50_A8AJ27: 6-phosphogluconolactonase	22.6856352196
+UniRef50_A8AJ27: 6-phosphogluconolactonase|g__Escherichia.s__Escherichia_coli	22.6856352196
+UniRef50_P14294: DNA topoisomerase 3	22.6853578804
+UniRef50_P14294: DNA topoisomerase 3|g__Escherichia.s__Escherichia_coli	22.6853578804
+UniRef50_D3E445: Polysaccharide/polyol phosphate ABC transporter permease protein	22.6847817788
+UniRef50_D3E445: Polysaccharide/polyol phosphate ABC transporter permease protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.6847817788
+UniRef50_O32254	22.6728464581
+UniRef50_O32254|g__Escherichia.s__Escherichia_coli	22.6728464581
+UniRef50_A8AMK4	22.6701210164
+UniRef50_A8AMK4|g__Escherichia.s__Escherichia_coli	22.6701210164
+UniRef50_A0B8A2	22.6613811706
+UniRef50_A0B8A2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.6613811706
+UniRef50_P75764	22.6552921500
+UniRef50_P75764|g__Escherichia.s__Escherichia_coli	22.6552921500
+UniRef50_P60065: Arginine/agmatine antiporter	22.6540069824
+UniRef50_P60065: Arginine/agmatine antiporter|g__Escherichia.s__Escherichia_coli	22.6540069824
+UniRef50_Q47147: Putative glutamine amidotransferase YafJ	22.6519112833
+UniRef50_Q47147: Putative glutamine amidotransferase YafJ|g__Escherichia.s__Escherichia_coli	18.7726009385
+UniRef50_Q47147: Putative glutamine amidotransferase YafJ|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8793103448
+UniRef50_C6SSA3	22.6518741656
+UniRef50_C6SSA3|g__Streptococcus.s__Streptococcus_mutans	20.1138030996
+UniRef50_C6SSA3|g__Streptococcus.s__Streptococcus_agalactiae	2.5380710660
+UniRef50_J7GCQ9	22.6459132941
+UniRef50_J7GCQ9|g__Escherichia.s__Escherichia_coli	22.6459132941
+UniRef50_Q8X6C5: Xanthine dehydrogenase FAD-binding subunit	22.6429426190
+UniRef50_Q8X6C5: Xanthine dehydrogenase FAD-binding subunit|g__Escherichia.s__Escherichia_coli	22.1743074653
+UniRef50_Q8X6C5: Xanthine dehydrogenase FAD-binding subunit|unclassified	0.4686351536
+UniRef50_I6T0Y3	22.6330937543
+UniRef50_I6T0Y3|unclassified	22.6330937543
+UniRef50_P77585: Aminopeptidase YpdE	22.6287594705
+UniRef50_P77585: Aminopeptidase YpdE|g__Escherichia.s__Escherichia_coli	22.6287594705
+UniRef50_D3DZ44: Bifunctional inositol-1 monophosphatase/fructose-1,6-bisphosphatase/ATP-NAD kinase	22.6244128495
+UniRef50_D3DZ44: Bifunctional inositol-1 monophosphatase/fructose-1,6-bisphosphatase/ATP-NAD kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.6244128495
+UniRef50_A5UJ63	22.6222368634
+UniRef50_A5UJ63|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.6222368634
+UniRef50_Q2KXD7: Amino acid ABC transporter, permease protein	22.6199291357
+UniRef50_Q2KXD7: Amino acid ABC transporter, permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.6199291357
+UniRef50_P39377: Isoaspartyl dipeptidase	22.6170014029
+UniRef50_P39377: Isoaspartyl dipeptidase|g__Escherichia.s__Escherichia_coli	22.6170014029
+UniRef50_UPI000378B27E: hypothetical protein	22.6159907470
+UniRef50_UPI000378B27E: hypothetical protein|unclassified	15.2085833396
+UniRef50_UPI000378B27E: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.4074074074
+UniRef50_O33566: ORF700 protein	22.6110467426
+UniRef50_O33566: ORF700 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.8157146061
+UniRef50_O33566: ORF700 protein|unclassified	1.7953321364
+UniRef50_A3PPT8	22.6086400987
+UniRef50_A3PPT8|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.4123898070
+UniRef50_A3PPT8|unclassified	5.1962502917
+UniRef50_Q28Q52: Cation transporter	22.6069416356
+UniRef50_Q28Q52: Cation transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.6069416356
+UniRef50_O27115: Succinyl-CoA ligase [ADP-forming] subunit beta	22.6037100866
+UniRef50_O27115: Succinyl-CoA ligase [ADP-forming] subunit beta|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.6037100866
+UniRef50_P33348	22.6031153520
+UniRef50_P33348|g__Escherichia.s__Escherichia_coli	22.6031153520
+UniRef50_P76128: Probable D,D-dipeptide-binding periplasmic protein DdpA	22.6005405444
+UniRef50_P76128: Probable D,D-dipeptide-binding periplasmic protein DdpA|g__Escherichia.s__Escherichia_coli	22.6005405444
+UniRef50_H1R8C9	22.5995914198
+UniRef50_H1R8C9|g__Escherichia.s__Escherichia_coli	22.5995914198
+UniRef50_R7PVK0: Bacterial transferase hexapeptide	22.5910111879
+UniRef50_R7PVK0: Bacterial transferase hexapeptide|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.5910111879
+UniRef50_A5UMS2: Predicted DNA-binding protein	22.5895772344
+UniRef50_A5UMS2: Predicted DNA-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.5895772344
+UniRef50_E8SE90	22.5883084975
+UniRef50_E8SE90|g__Staphylococcus.s__Staphylococcus_epidermidis	22.5883084975
+UniRef50_A5UKD9: Predicted metal-dependent protease, PAD1/JAB1 superfamily	22.5873966486
+UniRef50_A5UKD9: Predicted metal-dependent protease, PAD1/JAB1 superfamily|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.5873966486
+UniRef50_Q03287: Urease accessory protein UreG	22.5838738517
+UniRef50_Q03287: Urease accessory protein UreG|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.5838738517
+UniRef50_UPI000382E2B4: hypothetical protein, partial	22.5818730778
+UniRef50_UPI000382E2B4: hypothetical protein, partial|unclassified	22.5818730778
+UniRef50_P59342: Signal transduction histidine-protein kinase BarA	22.5769935638
+UniRef50_P59342: Signal transduction histidine-protein kinase BarA|g__Escherichia.s__Escherichia_coli	22.5769935638
+UniRef50_G8PI82: Dipeptide transport ATP-binding protein DppF	22.5714446755
+UniRef50_G8PI82: Dipeptide transport ATP-binding protein DppF|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.5714446755
+UniRef50_Q46899: CRISPR system Cascade subunit CasC	22.5694148082
+UniRef50_Q46899: CRISPR system Cascade subunit CasC|g__Escherichia.s__Escherichia_coli	22.5694148082
+UniRef50_A8LR58	22.5687071448
+UniRef50_A8LR58|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.8482088287
+UniRef50_A8LR58|unclassified	3.7204983162
+UniRef50_A3PJF3: Binding-protein-dependent transport systems inner membrane component	22.5638451989
+UniRef50_A3PJF3: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.5638451989
+UniRef50_R9SLR2	22.5637388553
+UniRef50_R9SLR2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.5637388553
+UniRef50_B9KKX7	22.5429856384
+UniRef50_B9KKX7|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.2647905017
+UniRef50_B9KKX7|unclassified	0.2781951367
+UniRef50_F2R6Y1: Gas vesicle synthesis protein	22.5372759093
+UniRef50_F2R6Y1: Gas vesicle synthesis protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.3185522531
+UniRef50_F2R6Y1: Gas vesicle synthesis protein|unclassified	4.2187236562
+UniRef50_I6TQZ8: TetR family transcriptional regulator	22.5369453628
+UniRef50_I6TQZ8: TetR family transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	22.5369453628
+UniRef50_G8LLV9: Coproporphyrinogen-III oxidase	22.5367578425
+UniRef50_G8LLV9: Coproporphyrinogen-III oxidase|g__Escherichia.s__Escherichia_coli	22.5367578425
+UniRef50_C6SR99	22.5363078239
+UniRef50_C6SR99|g__Streptococcus.s__Streptococcus_mutans	22.5363078239
+UniRef50_A3PQ24: Phage integrase family protein	22.5268987296
+UniRef50_A3PQ24: Phage integrase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.5268987296
+UniRef50_B9KU28: Transcriptional regulator	22.5115900968
+UniRef50_B9KU28: Transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.5115900968
+UniRef50_M9VQS2	22.5033071628
+UniRef50_M9VQS2|g__Propionibacterium.s__Propionibacterium_acnes	22.5033071628
+UniRef50_E4TGE1: Acylneuraminate cytidylyltransferase	22.5030185218
+UniRef50_E4TGE1: Acylneuraminate cytidylyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.5030185218
+UniRef50_T1YAS9	22.5011307101
+UniRef50_T1YAS9|g__Staphylococcus.s__Staphylococcus_aureus	22.5011307101
+UniRef50_B6I824	22.4959279755
+UniRef50_B6I824|g__Escherichia.s__Escherichia_coli	22.4959279755
+UniRef50_P76543	22.4874291703
+UniRef50_P76543|g__Escherichia.s__Escherichia_coli	22.4874291703
+UniRef50_P21693: ATP-dependent RNA helicase DbpA	22.4764203152
+UniRef50_P21693: ATP-dependent RNA helicase DbpA|g__Escherichia.s__Escherichia_coli	19.1347495701
+UniRef50_P21693: ATP-dependent RNA helicase DbpA|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3028080414
+UniRef50_P21693: ATP-dependent RNA helicase DbpA|unclassified	0.0388627036
+UniRef50_R9ZNY2: Paraquat-inducible protein A	22.4761193512
+UniRef50_R9ZNY2: Paraquat-inducible protein A|g__Pseudomonas.s__Pseudomonas_aeruginosa	22.4761193512
+UniRef50_R7PV18	22.4757851053
+UniRef50_R7PV18|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.4757851053
+UniRef50_B5EXE3: UPF0758 protein YicR	22.4684221523
+UniRef50_B5EXE3: UPF0758 protein YicR|g__Escherichia.s__Escherichia_coli	22.4684221523
+UniRef50_E2QQW0	22.4671666044
+UniRef50_E2QQW0|g__Escherichia.s__Escherichia_coli	22.4671666044
+UniRef50_A4WT15: MCP methyltransferase, CheR-type	22.4636001914
+UniRef50_A4WT15: MCP methyltransferase, CheR-type|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.4636001914
+UniRef50_M4YZ38: Mutator protein	22.4628122504
+UniRef50_M4YZ38: Mutator protein|g__Streptococcus.s__Streptococcus_mutans	22.4628122504
+UniRef50_B1LXW0	22.4617859088
+UniRef50_B1LXW0|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.4617859088
+UniRef50_C5MZA4	22.4609310470
+UniRef50_C5MZA4|g__Staphylococcus.s__Staphylococcus_aureus	22.4609310470
+UniRef50_Q58369	22.4590843888
+UniRef50_Q58369|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.4590843888
+UniRef50_Q28W02: Protein-export protein SecB	22.4558680577
+UniRef50_Q28W02: Protein-export protein SecB|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.4558680577
+UniRef50_P09053: Valine--pyruvate aminotransferase	22.4556619839
+UniRef50_P09053: Valine--pyruvate aminotransferase|g__Escherichia.s__Escherichia_coli	22.4556619839
+UniRef50_P75954: Probable L,D-transpeptidase YcfS	22.4525183285
+UniRef50_P75954: Probable L,D-transpeptidase YcfS|g__Escherichia.s__Escherichia_coli	22.0981840597
+UniRef50_P75954: Probable L,D-transpeptidase YcfS|unclassified	0.3543342688
+UniRef50_Q05197: Phosphatidylethanolamine N-methyltransferase	22.4492902473
+UniRef50_Q05197: Phosphatidylethanolamine N-methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.0623784604
+UniRef50_Q05197: Phosphatidylethanolamine N-methyltransferase|unclassified	7.3869117869
+UniRef50_Q936F3	22.4426081031
+UniRef50_Q936F3|unclassified	22.4426081031
+UniRef50_Q46841: Inner membrane protein YghQ	22.4404144695
+UniRef50_Q46841: Inner membrane protein YghQ|g__Escherichia.s__Escherichia_coli	22.4404144695
+UniRef50_P76079: 1,2-phenylacetyl-CoA epoxidase, subunit C	22.4331120203
+UniRef50_P76079: 1,2-phenylacetyl-CoA epoxidase, subunit C|g__Escherichia.s__Escherichia_coli	19.1651381641
+UniRef50_P76079: 1,2-phenylacetyl-CoA epoxidase, subunit C|g__Acinetobacter.s__Acinetobacter_baumannii	3.2679738562
+UniRef50_R9SJS2: Helicase	22.4228145928
+UniRef50_R9SJS2: Helicase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.4228145928
+UniRef50_P68893: Transcription termination/antitermination protein NusG	22.4221121831
+UniRef50_P68893: Transcription termination/antitermination protein NusG|g__Streptococcus.s__Streptococcus_mutans	18.3127237789
+UniRef50_P68893: Transcription termination/antitermination protein NusG|g__Streptococcus.s__Streptococcus_agalactiae	4.1093884042
+UniRef50_Q46943	22.4198492726
+UniRef50_Q46943|g__Escherichia.s__Escherichia_coli	22.4198492726
+UniRef50_D3E2L0: Mevalonate kinase	22.4190083436
+UniRef50_D3E2L0: Mevalonate kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.4190083436
+UniRef50_A5ULI3: Antimicrobial peptide ABC transporter, permease component	22.4169343354
+UniRef50_A5ULI3: Antimicrobial peptide ABC transporter, permease component|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.4169343354
+UniRef50_P24171: Peptidyl-dipeptidase dcp	22.4164219684
+UniRef50_P24171: Peptidyl-dipeptidase dcp|g__Escherichia.s__Escherichia_coli	22.4164219684
+UniRef50_Q2YLX5: Peptidyl-tRNA hydrolase	22.4156738819
+UniRef50_Q2YLX5: Peptidyl-tRNA hydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.9564702331
+UniRef50_Q2YLX5: Peptidyl-tRNA hydrolase|unclassified	0.4592036488
+UniRef50_P42904: N-acetylgalactosamine-specific phosphotransferase enzyme IIB component 2	22.4156167822
+UniRef50_P42904: N-acetylgalactosamine-specific phosphotransferase enzyme IIB component 2|g__Escherichia.s__Escherichia_coli	22.4156167822
+UniRef50_P0ACI8: Regulatory protein AsnC	22.4073132788
+UniRef50_P0ACI8: Regulatory protein AsnC|g__Escherichia.s__Escherichia_coli	22.4073132788
+UniRef50_P0ACT0: HTH-type transcriptional regulator AcrR	22.4069668640
+UniRef50_P0ACT0: HTH-type transcriptional regulator AcrR|g__Escherichia.s__Escherichia_coli	22.4069668640
+UniRef50_P0A9U6: HTH-type transcriptional regulator PuuR	22.3994103992
+UniRef50_P0A9U6: HTH-type transcriptional regulator PuuR|g__Escherichia.s__Escherichia_coli	22.3994103992
+UniRef50_A3PFW1	22.3960184856
+UniRef50_A3PFW1|unclassified	22.3960184856
+UniRef50_A5UL98: Cobalt ABC transporter, permease component, CbiQ	22.3909879586
+UniRef50_A5UL98: Cobalt ABC transporter, permease component, CbiQ|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.3909879586
+UniRef50_P0AG36: Homoserine/homoserine lactone efflux protein	22.3908366005
+UniRef50_P0AG36: Homoserine/homoserine lactone efflux protein|g__Escherichia.s__Escherichia_coli	22.3908366005
+UniRef50_F5LZS4: Hemolysin-type calcium-binding region RTX toxin	22.3907335934
+UniRef50_F5LZS4: Hemolysin-type calcium-binding region RTX toxin|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.3907335934
+UniRef50_B9KKY7	22.3809523810
+UniRef50_B9KKY7|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.3809523810
+UniRef50_K8C5J6: Translation initiation factor IF-2	22.3808948064
+UniRef50_K8C5J6: Translation initiation factor IF-2|g__Escherichia.s__Escherichia_coli	22.3808948064
+UniRef50_A5WGA7: Penicillin-binding protein 6, Serine peptidase, MEROPS family S11	22.3800152838
+UniRef50_A5WGA7: Penicillin-binding protein 6, Serine peptidase, MEROPS family S11|g__Acinetobacter.s__Acinetobacter_baumannii	22.3800152838
+UniRef50_A5UMN9: Flavodoxin (Protoporphyrinogen oxidase)	22.3739837672
+UniRef50_A5UMN9: Flavodoxin (Protoporphyrinogen oxidase)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.3739837672
+UniRef50_P0A1J0: Basal-body rod modification protein FlgD	22.3682475299
+UniRef50_P0A1J0: Basal-body rod modification protein FlgD|g__Escherichia.s__Escherichia_coli	22.3682475299
+UniRef50_P45092: Arginine transport ATP-binding protein ArtP	22.3627708829
+UniRef50_P45092: Arginine transport ATP-binding protein ArtP|g__Streptococcus.s__Streptococcus_mutans	22.2553468934
+UniRef50_P45092: Arginine transport ATP-binding protein ArtP|unclassified	0.1074239895
+UniRef50_N5AMH8: Diacetyl reductase [(S)-acetoin forming]	22.3579961747
+UniRef50_N5AMH8: Diacetyl reductase [(S)-acetoin forming]|g__Staphylococcus.s__Staphylococcus_aureus	22.3579961747
+UniRef50_F9M5F2	22.3499361430
+UniRef50_F9M5F2|g__Streptococcus.s__Streptococcus_mutans	22.3499361430
+UniRef50_P37426: Ribonucleoside-diphosphate reductase 1 subunit alpha	22.3483100876
+UniRef50_P37426: Ribonucleoside-diphosphate reductase 1 subunit alpha|g__Escherichia.s__Escherichia_coli	22.3483100876
+UniRef50_D0ZTB2: Magnesium-transporting ATPase, P-type 1	22.3448695371
+UniRef50_D0ZTB2: Magnesium-transporting ATPase, P-type 1|g__Escherichia.s__Escherichia_coli	22.2970363321
+UniRef50_D0ZTB2: Magnesium-transporting ATPase, P-type 1|unclassified	0.0478332050
+UniRef50_P15028: Fe(3+) dicitrate-binding periplasmic protein	22.3366546149
+UniRef50_P15028: Fe(3+) dicitrate-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	22.3366546149
+UniRef50_B0BPX9: DNA polymerase IV	22.3301317119
+UniRef50_B0BPX9: DNA polymerase IV|g__Escherichia.s__Escherichia_coli	22.3301317119
+UniRef50_Q3IWU3: TRAP-T family transporter, fused small and large inner membrane subunits	22.3300437087
+UniRef50_Q3IWU3: TRAP-T family transporter, fused small and large inner membrane subunits|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.2093080378
+UniRef50_Q3IWU3: TRAP-T family transporter, fused small and large inner membrane subunits|unclassified	0.1207356709
+UniRef50_A5UKU5: pH regulator (Monovalent cation:H+ antiporter)	22.3290780761
+UniRef50_A5UKU5: pH regulator (Monovalent cation:H+ antiporter)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.3290780761
+UniRef50_X2N7K6: Formate acetyltransferase	22.3260735668
+UniRef50_X2N7K6: Formate acetyltransferase|g__Escherichia.s__Escherichia_coli	22.3260735668
+UniRef50_W8UYG4: Transposase	22.3252506623
+UniRef50_W8UYG4: Transposase|g__Staphylococcus.s__Staphylococcus_aureus	20.6842072704
+UniRef50_W8UYG4: Transposase|unclassified	1.6410433920
+UniRef50_P80907: Ketoisovalerate oxidoreductase subunit VorA	22.3243748106
+UniRef50_P80907: Ketoisovalerate oxidoreductase subunit VorA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.3243748106
+UniRef50_P07821: Iron(3+)-hydroxamate import ATP-binding protein FhuC	22.3149220721
+UniRef50_P07821: Iron(3+)-hydroxamate import ATP-binding protein FhuC|g__Escherichia.s__Escherichia_coli	22.3149220721
+UniRef50_Q58952: tRNA(Phe) (4-demethylwyosine(37)-C(7)) aminocarboxypropyltransferase	22.3147935803
+UniRef50_Q58952: tRNA(Phe) (4-demethylwyosine(37)-C(7)) aminocarboxypropyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.3147935803
+UniRef50_Q9HSC3: Archaeal Lon protease	22.3135984165
+UniRef50_Q9HSC3: Archaeal Lon protease|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.3135984165
+UniRef50_F0LF03: Oligopeptide ABC transporter membrane spanning protein	22.3125706634
+UniRef50_F0LF03: Oligopeptide ABC transporter membrane spanning protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.3125706634
+UniRef50_O26311	22.3113133423
+UniRef50_O26311|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.3113133423
+UniRef50_Q07T82: Protease HtpX homolog	22.3104514716
+UniRef50_Q07T82: Protease HtpX homolog|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.3104514716
+UniRef50_Q8ZMH3: Serine/threonine-protein phosphatase 2	22.3001789274
+UniRef50_Q8ZMH3: Serine/threonine-protein phosphatase 2|g__Escherichia.s__Escherichia_coli	22.3001789274
+UniRef50_R9SJ21: 4-oxalocrotonate tautomerase family enzyme DmpI	22.2961320522
+UniRef50_R9SJ21: 4-oxalocrotonate tautomerase family enzyme DmpI|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.2961320522
+UniRef50_Q8X4L9: Ribosomal large subunit pseudouridine synthase F	22.2926449765
+UniRef50_Q8X4L9: Ribosomal large subunit pseudouridine synthase F|g__Escherichia.s__Escherichia_coli	22.2926449765
+UniRef50_P0A5W9: Ribonucleoside-diphosphate reductase subunit alpha	22.2874818020
+UniRef50_P0A5W9: Ribonucleoside-diphosphate reductase subunit alpha|g__Escherichia.s__Escherichia_coli	19.8884342622
+UniRef50_P0A5W9: Ribonucleoside-diphosphate reductase subunit alpha|g__Streptococcus.s__Streptococcus_agalactiae	2.1715821092
+UniRef50_P0A5W9: Ribonucleoside-diphosphate reductase subunit alpha|unclassified	0.2274654306
+UniRef50_R9SJS7: Adenylate cyclase CyaA	22.2723186609
+UniRef50_R9SJS7: Adenylate cyclase CyaA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.2723186609
+UniRef50_P38036: CRISPR-associated endonuclease/helicase Cas3	22.2701437062
+UniRef50_P38036: CRISPR-associated endonuclease/helicase Cas3|g__Escherichia.s__Escherichia_coli	22.2701437062
+UniRef50_A5ULE7: Molybdenum cofactor biosynthesis protein, MoaB	22.2663813878
+UniRef50_A5ULE7: Molybdenum cofactor biosynthesis protein, MoaB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.2663813878
+UniRef50_D3E0F9: Phosphoribosylaminoimidazole carboxylase catalytic subunit PurE1	22.2634725018
+UniRef50_D3E0F9: Phosphoribosylaminoimidazole carboxylase catalytic subunit PurE1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.2634725018
+UniRef50_A5UKS1: Multidrug ABC transporter, permease component	22.2631667390
+UniRef50_A5UKS1: Multidrug ABC transporter, permease component|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.5437422786
+UniRef50_A5UKS1: Multidrug ABC transporter, permease component|unclassified	0.7194244604
+UniRef50_A5ULE1: Phosphoribosylformylglycinamidine synthase-related protein (Selenophosphate synthetase)	22.2599462982
+UniRef50_A5ULE1: Phosphoribosylformylglycinamidine synthase-related protein (Selenophosphate synthetase)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.2599462982
+UniRef50_V2R889: Ureidoglycolate dehydrogenase	22.2571726900
+UniRef50_V2R889: Ureidoglycolate dehydrogenase|g__Escherichia.s__Escherichia_coli	22.2571726900
+UniRef50_P33916	22.2520201902
+UniRef50_P33916|g__Escherichia.s__Escherichia_coli	22.2520201902
+UniRef50_M7CYB4: 40K cell wall protein	22.2419156996
+UniRef50_M7CYB4: 40K cell wall protein|g__Streptococcus.s__Streptococcus_mutans	22.2419156996
+UniRef50_P37902: Glutamate/aspartate periplasmic-binding protein	22.2401418345
+UniRef50_P37902: Glutamate/aspartate periplasmic-binding protein|g__Escherichia.s__Escherichia_coli	19.3963937863
+UniRef50_P37902: Glutamate/aspartate periplasmic-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8437480482
+UniRef50_P39795: Trehalose-6-phosphate hydrolase	22.2387007276
+UniRef50_P39795: Trehalose-6-phosphate hydrolase|g__Escherichia.s__Escherichia_coli	21.6045853186
+UniRef50_P39795: Trehalose-6-phosphate hydrolase|g__Clostridium.s__Clostridium_beijerinckii	0.6341154090
+UniRef50_A3PI07	22.2350069234
+UniRef50_A3PI07|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.3595085470
+UniRef50_A3PI07|unclassified	5.8754983764
+UniRef50_E0SUZ8	22.2301592340
+UniRef50_E0SUZ8|unclassified	22.2301592340
+UniRef50_P67082: UPF0001 protein YggS	22.2254706699
+UniRef50_P67082: UPF0001 protein YggS|g__Escherichia.s__Escherichia_coli	22.2254706699
+UniRef50_Q5HQ55	22.2246793454
+UniRef50_Q5HQ55|g__Staphylococcus.s__Staphylococcus_epidermidis	22.2246793454
+UniRef50_A0A023L2V4: Cobalamin biosynthesis protein	22.2222222222
+UniRef50_A0A023L2V4: Cobalamin biosynthesis protein|g__Escherichia.s__Escherichia_coli	22.2222222222
+UniRef50_B9KX63	22.2222222222
+UniRef50_B9KX63|unclassified	22.2222222222
+UniRef50_C5N040: LPXTG-motif cell wall anchor domain protein	22.2222222222
+UniRef50_C5N040: LPXTG-motif cell wall anchor domain protein|g__Staphylococcus.s__Staphylococcus_aureus	22.2222222222
+UniRef50_L1LY42	22.2222222222
+UniRef50_L1LY42|unclassified	22.2222222222
+UniRef50_UPI0002BA1ECF: hypothetical protein, partial	22.2165061310
+UniRef50_UPI0002BA1ECF: hypothetical protein, partial|g__Escherichia.s__Escherichia_coli	22.2165061310
+UniRef50_E2ZSP5	22.2141059646
+UniRef50_E2ZSP5|g__Pseudomonas.s__Pseudomonas_aeruginosa	22.2141059646
+UniRef50_P0AAC2: Universal stress protein E	22.2134787297
+UniRef50_P0AAC2: Universal stress protein E|g__Escherichia.s__Escherichia_coli	22.2134787297
+UniRef50_C6UB50	22.2123104371
+UniRef50_C6UB50|g__Escherichia.s__Escherichia_coli	22.2123104371
+UniRef50_M7E7M7: Integrase	22.2073492421
+UniRef50_M7E7M7: Integrase|g__Streptococcus.s__Streptococcus_mutans	22.2073492421
+UniRef50_P0CL50: Trehalose-phosphate phosphatase	22.2060321474
+UniRef50_P0CL50: Trehalose-phosphate phosphatase|g__Escherichia.s__Escherichia_coli	21.3103265610
+UniRef50_P0CL50: Trehalose-phosphate phosphatase|unclassified	0.8957055865
+UniRef50_P37146: Ribonucleoside-diphosphate reductase 2 subunit beta	22.2045655994
+UniRef50_P37146: Ribonucleoside-diphosphate reductase 2 subunit beta|g__Escherichia.s__Escherichia_coli	21.5166626007
+UniRef50_P37146: Ribonucleoside-diphosphate reductase 2 subunit beta|unclassified	0.6879029986
+UniRef50_P0A2J8: Spermidine/putrescine transport system permease protein PotB	22.2016554499
+UniRef50_P0A2J8: Spermidine/putrescine transport system permease protein PotB|g__Escherichia.s__Escherichia_coli	22.2016554499
+UniRef50_P33353	22.1976215459
+UniRef50_P33353|g__Escherichia.s__Escherichia_coli	22.1976215459
+UniRef50_R7PW62: MATE efflux family protein	22.1963010825
+UniRef50_R7PW62: MATE efflux family protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.1963010825
+UniRef50_O26830: Putative phospho-N-acetylmuramoyl-pentapeptide-transferase	22.1954470091
+UniRef50_O26830: Putative phospho-N-acetylmuramoyl-pentapeptide-transferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.1954470091
+UniRef50_P64176: Macrolide export protein MacA	22.1874986526
+UniRef50_P64176: Macrolide export protein MacA|g__Escherichia.s__Escherichia_coli	22.1874986526
+UniRef50_P39285: Miniconductance mechanosensitive channel MscM	22.1871910547
+UniRef50_P39285: Miniconductance mechanosensitive channel MscM|g__Escherichia.s__Escherichia_coli	22.1871910547
+UniRef50_T2ES40	22.1858306074
+UniRef50_T2ES40|g__Pseudomonas.s__Pseudomonas_aeruginosa	22.1858306074
+UniRef50_M7DS47: ABC transporter ATP-binding protein	22.1813939539
+UniRef50_M7DS47: ABC transporter ATP-binding protein|g__Streptococcus.s__Streptococcus_mutans	22.1813939539
+UniRef50_A4XQY6	22.1810406206
+UniRef50_A4XQY6|g__Pseudomonas.s__Pseudomonas_aeruginosa	22.1810406206
+UniRef50_B5YU52: Peroxyureidoacrylate/ureidoacrylate amidohydrolase RutB	22.1777831158
+UniRef50_B5YU52: Peroxyureidoacrylate/ureidoacrylate amidohydrolase RutB|g__Escherichia.s__Escherichia_coli	21.4843184135
+UniRef50_B5YU52: Peroxyureidoacrylate/ureidoacrylate amidohydrolase RutB|unclassified	0.6934647024
+UniRef50_F5LYA7	22.1736731926
+UniRef50_F5LYA7|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.1736731926
+UniRef50_A8AWN6: Conserved domain protein	22.1657506821
+UniRef50_A8AWN6: Conserved domain protein|g__Streptococcus.s__Streptococcus_mutans	22.1657506821
+UniRef50_P44843: Trk system potassium uptake protein TrkH	22.1656120534
+UniRef50_P44843: Trk system potassium uptake protein TrkH|g__Escherichia.s__Escherichia_coli	22.1656120534
+UniRef50_A0A009EPD3	22.1613249136
+UniRef50_A0A009EPD3|g__Escherichia.s__Escherichia_coli	22.1613249136
+UniRef50_C6DIM3: p-hydroxybenzoic acid efflux pump subunit AaeB	22.1569479613
+UniRef50_C6DIM3: p-hydroxybenzoic acid efflux pump subunit AaeB|g__Escherichia.s__Escherichia_coli	22.1569479613
+UniRef50_Q9I5L3	22.1562731836
+UniRef50_Q9I5L3|g__Pseudomonas.s__Pseudomonas_aeruginosa	22.1562731836
+UniRef50_A5UMS3: 6,7-dimethyl-8-ribityllumazine synthase	22.1561923458
+UniRef50_A5UMS3: 6,7-dimethyl-8-ribityllumazine synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.5680693790
+UniRef50_A5UMS3: 6,7-dimethyl-8-ribityllumazine synthase|unclassified	1.5881229668
+UniRef50_A5UNM4	22.1556550728
+UniRef50_A5UNM4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.1556550728
+UniRef50_P23886: ATP-binding/permease protein CydC	22.1523001877
+UniRef50_P23886: ATP-binding/permease protein CydC|g__Escherichia.s__Escherichia_coli	22.1523001877
+UniRef50_K4XG96: Binding-protein-dependent transport system inner membrane protein	22.1486273858
+UniRef50_K4XG96: Binding-protein-dependent transport system inner membrane protein|g__Escherichia.s__Escherichia_coli	22.1486273858
+UniRef50_D6SJF4	22.1476851889
+UniRef50_D6SJF4|g__Staphylococcus.s__Staphylococcus_aureus	22.1476851889
+UniRef50_Q8DTS4	22.1470496401
+UniRef50_Q8DTS4|g__Streptococcus.s__Streptococcus_mutans	22.1470496401
+UniRef50_P25396: Tellurite resistance protein TehA	22.1421953618
+UniRef50_P25396: Tellurite resistance protein TehA|g__Escherichia.s__Escherichia_coli	22.1421953618
+UniRef50_Q9RTP8: Divalent metal cation transporter MntH	22.1398646996
+UniRef50_Q9RTP8: Divalent metal cation transporter MntH|g__Escherichia.s__Escherichia_coli	20.2253766871
+UniRef50_Q9RTP8: Divalent metal cation transporter MntH|g__Deinococcus.s__Deinococcus_radiodurans	1.9144880125
+UniRef50_A5UP23: Predicted type II restriction enzyme, methylase subunit	22.1390670499
+UniRef50_A5UP23: Predicted type II restriction enzyme, methylase subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.1390670499
+UniRef50_Q93PU4: Toluene efflux pump membrane transporter TtgH	22.1347600069
+UniRef50_Q93PU4: Toluene efflux pump membrane transporter TtgH|g__Escherichia.s__Escherichia_coli	19.4459696071
+UniRef50_Q93PU4: Toluene efflux pump membrane transporter TtgH|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6887903998
+UniRef50_Q59787: Sorbitol dehydrogenase	22.1335542338
+UniRef50_Q59787: Sorbitol dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.5349960042
+UniRef50_Q59787: Sorbitol dehydrogenase|unclassified	0.5985582296
+UniRef50_P76243	22.1223429479
+UniRef50_P76243|g__Escherichia.s__Escherichia_coli	22.1223429479
+UniRef50_Q87VA4: Glutathione synthetase	22.1180688325
+UniRef50_Q87VA4: Glutathione synthetase|g__Escherichia.s__Escherichia_coli	20.7716001350
+UniRef50_Q87VA4: Glutathione synthetase|unclassified	1.3464686975
+UniRef50_A5UMF7: Predicted metal-dependent membrane protease	22.1179579514
+UniRef50_A5UMF7: Predicted metal-dependent membrane protease|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.1179579514
+UniRef50_P75843	22.1176083741
+UniRef50_P75843|g__Escherichia.s__Escherichia_coli	22.1176083741
+UniRef50_P63884: N-acetylmuramoyl-L-alanine amidase AmiC	22.1019435286
+UniRef50_P63884: N-acetylmuramoyl-L-alanine amidase AmiC|g__Escherichia.s__Escherichia_coli	22.1019435286
+UniRef50_V5T3J5	22.0959595960
+UniRef50_V5T3J5|g__Pseudomonas.s__Pseudomonas_aeruginosa	22.0959595960
+UniRef50_B7LY72	22.0907701721
+UniRef50_B7LY72|g__Escherichia.s__Escherichia_coli	19.8785742264
+UniRef50_B7LY72|unclassified	2.2121959457
+UniRef50_R9SM81: NMD3 family protein	22.0880614201
+UniRef50_R9SM81: NMD3 family protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.0880614201
+UniRef50_P0ACB9: Protein HemY	22.0849029140
+UniRef50_P0ACB9: Protein HemY|g__Escherichia.s__Escherichia_coli	22.0849029140
+UniRef50_P57527	22.0808242461
+UniRef50_P57527|g__Escherichia.s__Escherichia_coli	22.0808242461
+UniRef50_P76093	22.0765081312
+UniRef50_P76093|g__Escherichia.s__Escherichia_coli	22.0765081312
+UniRef50_U6UKQ1: Hydroxylamine reductase	22.0739278971
+UniRef50_U6UKQ1: Hydroxylamine reductase|g__Escherichia.s__Escherichia_coli	22.0739278971
+UniRef50_B2N3Y4: Transketolase 2	22.0733666202
+UniRef50_B2N3Y4: Transketolase 2|g__Escherichia.s__Escherichia_coli	22.0733666202
+UniRef50_A5ULC6	22.0688746752
+UniRef50_A5ULC6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.0688746752
+UniRef50_O59536: Triosephosphate isomerase	22.0680380177
+UniRef50_O59536: Triosephosphate isomerase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.0680380177
+UniRef50_Q3IVA4: DNA-binding protein, H-NS family	22.0679545326
+UniRef50_Q3IVA4: DNA-binding protein, H-NS family|g__Rhodobacter.s__Rhodobacter_sphaeroides	22.0679545326
+UniRef50_R9YS20: Phage portal family protein	22.0652656018
+UniRef50_R9YS20: Phage portal family protein|g__Staphylococcus.s__Staphylococcus_aureus	22.0652656018
+UniRef50_A0B5U4: Glycine--tRNA ligase	22.0572799526
+UniRef50_A0B5U4: Glycine--tRNA ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.0572799526
+UniRef50_P38107: Sigma factor AlgU negative regulatory protein	22.0564815205
+UniRef50_P38107: Sigma factor AlgU negative regulatory protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	22.0564815205
+UniRef50_Q18DL1: Imidazoleglycerol-phosphate dehydratase	22.0556445654
+UniRef50_Q18DL1: Imidazoleglycerol-phosphate dehydratase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.5676658870
+UniRef50_Q18DL1: Imidazoleglycerol-phosphate dehydratase|unclassified	1.4879786784
+UniRef50_Q9I5L2	22.0555906342
+UniRef50_Q9I5L2|g__Pseudomonas.s__Pseudomonas_aeruginosa	22.0555906342
+UniRef50_R9SK40	22.0419222947
+UniRef50_R9SK40|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.0419222947
+UniRef50_Q8FCR0	22.0367817515
+UniRef50_Q8FCR0|g__Escherichia.s__Escherichia_coli	19.9895015211
+UniRef50_Q8FCR0|unclassified	2.0472802304
+UniRef50_P25737: Lysine-specific permease	22.0359750585
+UniRef50_P25737: Lysine-specific permease|g__Escherichia.s__Escherichia_coli	20.4259090339
+UniRef50_P25737: Lysine-specific permease|g__Propionibacterium.s__Propionibacterium_acnes	1.6100660247
+UniRef50_P77171	22.0305272340
+UniRef50_P77171|g__Escherichia.s__Escherichia_coli	22.0305272340
+UniRef50_M2LUA1: Myosin-cross-reactive antigen	22.0281334074
+UniRef50_M2LUA1: Myosin-cross-reactive antigen|g__Streptococcus.s__Streptococcus_mutans	22.0281334074
+UniRef50_P0AC97: Low-affinity gluconate transporter	22.0276297604
+UniRef50_P0AC97: Low-affinity gluconate transporter|g__Escherichia.s__Escherichia_coli	22.0276297604
+UniRef50_R9SLL8: Aspartate aminotransferase	22.0198066319
+UniRef50_R9SLL8: Aspartate aminotransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.0198066319
+UniRef50_Q2NG02: Enolase	22.0188060794
+UniRef50_Q2NG02: Enolase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.9842198904
+UniRef50_Q2NG02: Enolase|unclassified	0.0345861889
+UniRef50_B5XXI0: Phosphate acyltransferase	22.0174527172
+UniRef50_B5XXI0: Phosphate acyltransferase|g__Escherichia.s__Escherichia_coli	21.0880846875
+UniRef50_B5XXI0: Phosphate acyltransferase|unclassified	0.9293680297
+UniRef50_Q8FET9	22.0145953118
+UniRef50_Q8FET9|unclassified	22.0145953118
+UniRef50_D3E1G5: Cobalamin biosynthesis protein CbiX	22.0113693098
+UniRef50_D3E1G5: Cobalamin biosynthesis protein CbiX|g__Methanobrevibacter.s__Methanobrevibacter_smithii	22.0113693098
+UniRef50_Q8ZN74: tRNA(Met) cytidine acetyltransferase TmcA	22.0088220673
+UniRef50_Q8ZN74: tRNA(Met) cytidine acetyltransferase TmcA|g__Escherichia.s__Escherichia_coli	22.0088220673
+UniRef50_P77559	22.0077661727
+UniRef50_P77559|g__Escherichia.s__Escherichia_coli	22.0077661727
+UniRef50_Q5PHV8: Gamma-aminobutyraldehyde dehydrogenase	21.9985338658
+UniRef50_Q5PHV8: Gamma-aminobutyraldehyde dehydrogenase|g__Escherichia.s__Escherichia_coli	21.8548378977
+UniRef50_Q5PHV8: Gamma-aminobutyraldehyde dehydrogenase|unclassified	0.1436959681
+UniRef50_B2UML1: Aminotransferase class I and II	21.9893712924
+UniRef50_B2UML1: Aminotransferase class I and II|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.9893712924
+UniRef50_X5JZK5: Chaperonin, 33 kDa	21.9806763285
+UniRef50_X5JZK5: Chaperonin, 33 kDa|g__Streptococcus.s__Streptococcus_agalactiae	21.9806763285
+UniRef50_P33128: Probable fimbrial chaperone YadV	21.9734812148
+UniRef50_P33128: Probable fimbrial chaperone YadV|g__Escherichia.s__Escherichia_coli	21.9734812148
+UniRef50_P27848: Pyridoxal phosphate phosphatase YigL	21.9701348306
+UniRef50_P27848: Pyridoxal phosphate phosphatase YigL|g__Escherichia.s__Escherichia_coli	21.3284018422
+UniRef50_P27848: Pyridoxal phosphate phosphatase YigL|unclassified	0.6417329884
+UniRef50_S0UQQ2: Inner membrane protein ypdA	21.9699679859
+UniRef50_S0UQQ2: Inner membrane protein ypdA|g__Escherichia.s__Escherichia_coli	21.9699679859
+UniRef50_A5UJE2	21.9687655623
+UniRef50_A5UJE2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.9687655623
+UniRef50_F1ZJA7	21.9547658454
+UniRef50_F1ZJA7|unclassified	21.9547658454
+UniRef50_P77493	21.9495825910
+UniRef50_P77493|g__Escherichia.s__Escherichia_coli	21.7973626118
+UniRef50_P77493|unclassified	0.1522199792
+UniRef50_O05118: Pyruvate kinase	21.9491467926
+UniRef50_O05118: Pyruvate kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.4633606873
+UniRef50_O05118: Pyruvate kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2657762950
+UniRef50_O05118: Pyruvate kinase|unclassified	0.2200098102
+UniRef50_D2TN56: Translocation and assembly module TamA	21.9429350524
+UniRef50_D2TN56: Translocation and assembly module TamA|g__Escherichia.s__Escherichia_coli	21.9429350524
+UniRef50_Q5HP60	21.9411247925
+UniRef50_Q5HP60|g__Staphylococcus.s__Staphylococcus_epidermidis	21.9411247925
+UniRef50_P45394: Inner membrane protein YrbG	21.9368675211
+UniRef50_P45394: Inner membrane protein YrbG|g__Escherichia.s__Escherichia_coli	21.9368675211
+UniRef50_P0AFR3: C4-dicarboxylic acid transporter DauA	21.9231500115
+UniRef50_P0AFR3: C4-dicarboxylic acid transporter DauA|g__Escherichia.s__Escherichia_coli	21.9231500115
+UniRef50_P76008: Murein tetrapeptide carboxypeptidase	21.9226835949
+UniRef50_P76008: Murein tetrapeptide carboxypeptidase|g__Escherichia.s__Escherichia_coli	21.9226835949
+UniRef50_A5UMQ3	21.9188298536
+UniRef50_A5UMQ3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.9188298536
+UniRef50_Q8XBY4: Sensor kinase CusS	21.9187781094
+UniRef50_Q8XBY4: Sensor kinase CusS|g__Escherichia.s__Escherichia_coli	21.9187781094
+UniRef50_Q74M23: 50S ribosomal protein L9	21.9151881866
+UniRef50_Q74M23: 50S ribosomal protein L9|g__Streptococcus.s__Streptococcus_mutans	19.6929659644
+UniRef50_Q74M23: 50S ribosomal protein L9|g__Streptococcus.s__Streptococcus_agalactiae	2.2222222222
+UniRef50_Q8SDT2: Phi SLT orf 99-like protein	21.9082798888
+UniRef50_Q8SDT2: Phi SLT orf 99-like protein|g__Staphylococcus.s__Staphylococcus_aureus	21.9082798888
+UniRef50_Q5LX84: UPF0301 protein SPO0296	21.9078838603
+UniRef50_Q5LX84: UPF0301 protein SPO0296|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.9078838603
+UniRef50_Q2NI05: MvhA	21.9073186434
+UniRef50_Q2NI05: MvhA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.9073186434
+UniRef50_F5M2B7: CRP/FNR family transcriptional regulator	21.8985389714
+UniRef50_F5M2B7: CRP/FNR family transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.8985389714
+UniRef50_B6I4A3	21.8879481175
+UniRef50_B6I4A3|g__Escherichia.s__Escherichia_coli	21.8879481175
+UniRef50_I6TYR1	21.8875243087
+UniRef50_I6TYR1|g__Streptococcus.s__Streptococcus_mutans	21.8875243087
+UniRef50_A7ZM93	21.8835099046
+UniRef50_A7ZM93|g__Escherichia.s__Escherichia_coli	21.8835099046
+UniRef50_UPI00035E5AD2: hypothetical protein, partial	21.8785668346
+UniRef50_UPI00035E5AD2: hypothetical protein, partial|unclassified	21.8785668346
+UniRef50_P06720: Alpha-galactosidase	21.8698537485
+UniRef50_P06720: Alpha-galactosidase|g__Escherichia.s__Escherichia_coli	21.8698537485
+UniRef50_R7PY13: Trk-type potassium transport system membrane component TrkH	21.8692826562
+UniRef50_R7PY13: Trk-type potassium transport system membrane component TrkH|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.8692826562
+UniRef50_Q2NAY0: 3-methyl-2-oxobutanoate hydroxymethyltransferase	21.8692503841
+UniRef50_Q2NAY0: 3-methyl-2-oxobutanoate hydroxymethyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.5132579456
+UniRef50_Q2NAY0: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	1.3559924385
+UniRef50_Q46892: Inner membrane permease YgbN	21.8691388465
+UniRef50_Q46892: Inner membrane permease YgbN|g__Escherichia.s__Escherichia_coli	21.8691388465
+UniRef50_A5UM01: Pheromone shutdown protein, TraB family	21.8673502734
+UniRef50_A5UM01: Pheromone shutdown protein, TraB family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.8673502734
+UniRef50_Q83RQ0: Endo-type membrane-bound lytic murein transglycosylase A-like protein	21.8644502855
+UniRef50_Q83RQ0: Endo-type membrane-bound lytic murein transglycosylase A-like protein|g__Escherichia.s__Escherichia_coli	21.8644502855
+UniRef50_Q0HP98: Shikimate dehydrogenase	21.8638799423
+UniRef50_Q0HP98: Shikimate dehydrogenase|g__Escherichia.s__Escherichia_coli	21.8638799423
+UniRef50_L8BL77: CFA/I fimbrial subunit C usher protein	21.8622788298
+UniRef50_L8BL77: CFA/I fimbrial subunit C usher protein|g__Escherichia.s__Escherichia_coli	21.8622788298
+UniRef50_A5UNW4	21.8601738478
+UniRef50_A5UNW4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.4317479416
+UniRef50_A5UNW4|unclassified	0.4284259062
+UniRef50_E3A6F7	21.8585762064
+UniRef50_E3A6F7|unclassified	21.8585762064
+UniRef50_D3E066: Aminotransferase	21.8582532588
+UniRef50_D3E066: Aminotransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.8582532588
+UniRef50_UPI00046A043A: hypothetical protein	21.8552106488
+UniRef50_UPI00046A043A: hypothetical protein|unclassified	21.8552106488
+UniRef50_D3E1H7: DNA polymerase II small subunit	21.8541122368
+UniRef50_D3E1H7: DNA polymerase II small subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.8541122368
+UniRef50_A0A035HDU9	21.8468468468
+UniRef50_A0A035HDU9|g__Staphylococcus.s__Staphylococcus_aureus	13.5135135135
+UniRef50_A0A035HDU9|unclassified	8.3333333333
+UniRef50_U0BIJ8: Protein UshA	21.8432802392
+UniRef50_U0BIJ8: Protein UshA|g__Escherichia.s__Escherichia_coli	21.8432802392
+UniRef50_Q2NHM9: MtaC2	21.8296512936
+UniRef50_Q2NHM9: MtaC2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.8296512936
+UniRef50_B9KWW8	21.8285989893
+UniRef50_B9KWW8|unclassified	21.8285989893
+UniRef50_P42630: L-serine dehydratase TdcG	21.8226712332
+UniRef50_P42630: L-serine dehydratase TdcG|g__Escherichia.s__Escherichia_coli	21.7229301819
+UniRef50_P42630: L-serine dehydratase TdcG|unclassified	0.0997410513
+UniRef50_Q8XBQ1: Rare lipoprotein A	21.8221037644
+UniRef50_Q8XBQ1: Rare lipoprotein A|g__Escherichia.s__Escherichia_coli	21.8221037644
+UniRef50_Q8T137: Glutathione reductase	21.8183261378
+UniRef50_Q8T137: Glutathione reductase|g__Escherichia.s__Escherichia_coli	21.8183261378
+UniRef50_Q48460: UDP-glucose:undecaprenyl-phosphate glucose-1-phosphate transferase	21.8164267175
+UniRef50_Q48460: UDP-glucose:undecaprenyl-phosphate glucose-1-phosphate transferase|g__Escherichia.s__Escherichia_coli	21.7323410471
+UniRef50_Q48460: UDP-glucose:undecaprenyl-phosphate glucose-1-phosphate transferase|unclassified	0.0840856704
+UniRef50_A5UJB5: UPF0280 protein Msm_0088	21.8087564185
+UniRef50_A5UJB5: UPF0280 protein Msm_0088|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.8087564185
+UniRef50_J0H573	21.8067086507
+UniRef50_J0H573|g__Staphylococcus.s__Staphylococcus_epidermidis	21.8067086507
+UniRef50_A0A028PVV2: Lactate dehydrogenase	21.7943142734
+UniRef50_A0A028PVV2: Lactate dehydrogenase|g__Escherichia.s__Escherichia_coli	21.7943142734
+UniRef50_P45804	21.7934588210
+UniRef50_P45804|g__Escherichia.s__Escherichia_coli	21.7934588210
+UniRef50_R9SLI5: von Willebrand factor type A domain-containing protein	21.7915214683
+UniRef50_R9SLI5: von Willebrand factor type A domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.7915214683
+UniRef50_Q838L2: L-rhamnose isomerase	21.7908120119
+UniRef50_Q838L2: L-rhamnose isomerase|g__Escherichia.s__Escherichia_coli	17.9190422512
+UniRef50_Q838L2: L-rhamnose isomerase|g__Clostridium.s__Clostridium_beijerinckii	3.8717697607
+UniRef50_P21362: Protein YciF	21.7896807913
+UniRef50_P21362: Protein YciF|g__Escherichia.s__Escherichia_coli	21.7896807913
+UniRef50_P23910: Protein AraJ	21.7895853493
+UniRef50_P23910: Protein AraJ|g__Escherichia.s__Escherichia_coli	21.7895853493
+UniRef50_O26293: Putative glutamine amidotransferase MTH_191	21.7743669166
+UniRef50_O26293: Putative glutamine amidotransferase MTH_191|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.7743669166
+UniRef50_Q8DW75	21.7742883489
+UniRef50_Q8DW75|g__Streptococcus.s__Streptococcus_mutans	18.9731679007
+UniRef50_Q8DW75|unclassified	2.8011204482
+UniRef50_I0C834: Transcriptional regulator, PadR family	21.7703886054
+UniRef50_I0C834: Transcriptional regulator, PadR family|g__Staphylococcus.s__Staphylococcus_aureus	18.6934655285
+UniRef50_I0C834: Transcriptional regulator, PadR family|unclassified	3.0769230769
+UniRef50_Q5HQ65	21.7701050159
+UniRef50_Q5HQ65|g__Staphylococcus.s__Staphylococcus_epidermidis	21.7701050159
+UniRef50_D6UEI8	21.7668287151
+UniRef50_D6UEI8|g__Staphylococcus.s__Staphylococcus_aureus	14.7058823529
+UniRef50_D6UEI8|unclassified	7.0609463622
+UniRef50_Q57N15: Putative mannosyl-3-phosphoglycerate phosphatase	21.7668225912
+UniRef50_Q57N15: Putative mannosyl-3-phosphoglycerate phosphatase|g__Escherichia.s__Escherichia_coli	21.7668225912
+UniRef50_P76017	21.7657444778
+UniRef50_P76017|g__Escherichia.s__Escherichia_coli	21.7657444778
+UniRef50_P16701: Sulfate transport system permease protein CysT	21.7529795231
+UniRef50_P16701: Sulfate transport system permease protein CysT|g__Escherichia.s__Escherichia_coli	21.7529795231
+UniRef50_B4EV71: Glutamine--tRNA ligase	21.7518384358
+UniRef50_B4EV71: Glutamine--tRNA ligase|g__Escherichia.s__Escherichia_coli	21.6796931196
+UniRef50_B4EV71: Glutamine--tRNA ligase|unclassified	0.0721453162
+UniRef50_P46068: HTH-type transcriptional regulator DsdC	21.7419576115
+UniRef50_P46068: HTH-type transcriptional regulator DsdC|g__Escherichia.s__Escherichia_coli	21.7419576115
+UniRef50_G7MDF6	21.7391304348
+UniRef50_G7MDF6|g__Clostridium.s__Clostridium_beijerinckii	21.7391304348
+UniRef50_Q32DZ9: Macrolide export ATP-binding/permease protein MacB	21.7153267734
+UniRef50_Q32DZ9: Macrolide export ATP-binding/permease protein MacB|g__Escherichia.s__Escherichia_coli	21.0987670552
+UniRef50_Q32DZ9: Macrolide export ATP-binding/permease protein MacB|g__Acinetobacter.s__Acinetobacter_baumannii	0.5096839959
+UniRef50_Q32DZ9: Macrolide export ATP-binding/permease protein MacB|unclassified	0.1068757223
+UniRef50_F2LTP6: ABC-type transporter, periplasmic subunit family 3	21.7151972856
+UniRef50_F2LTP6: ABC-type transporter, periplasmic subunit family 3|g__Pseudomonas.s__Pseudomonas_aeruginosa	21.7151972856
+UniRef50_E6JLP6	21.7143802813
+UniRef50_E6JLP6|g__Staphylococcus.s__Staphylococcus_epidermidis	21.7143802813
+UniRef50_P69424: Sec-independent protein translocase protein TatC	21.7093431943
+UniRef50_P69424: Sec-independent protein translocase protein TatC|g__Escherichia.s__Escherichia_coli	21.7093431943
+UniRef50_K8BCX2: PTS system, mannitol-specific IIC component / PTS system, mannitol-specific IIB component / PTS system,mannitol-specific IIA component	21.7079868774
+UniRef50_K8BCX2: PTS system, mannitol-specific IIC component / PTS system, mannitol-specific IIB component / PTS system,mannitol-specific IIA component|g__Escherichia.s__Escherichia_coli	21.7079868774
+UniRef50_A5UKX8: O-linked GlcNAc transferase	21.7070390984
+UniRef50_A5UKX8: O-linked GlcNAc transferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.7070390984
+UniRef50_Q8FDH0: HTH-type transcriptional activator TtdR	21.7042654053
+UniRef50_Q8FDH0: HTH-type transcriptional activator TtdR|g__Escherichia.s__Escherichia_coli	21.7042654053
+UniRef50_A5ULL2: Adhesin-like protein	21.7017628698
+UniRef50_A5ULL2: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.6781677441
+UniRef50_A5ULL2: Adhesin-like protein|unclassified	0.0235951257
+UniRef50_P0AFV6: Murein DD-endopeptidase MepS/Murein LD-carboxypeptidase	21.7013689359
+UniRef50_P0AFV6: Murein DD-endopeptidase MepS/Murein LD-carboxypeptidase|g__Escherichia.s__Escherichia_coli	21.7013689359
+UniRef50_D3E3Z6: Energy-converting hydrogenase A subunit F EhaF	21.6986660231
+UniRef50_D3E3Z6: Energy-converting hydrogenase A subunit F EhaF|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.6986660231
+UniRef50_P30296: High-affinity branched-chain amino acid transport system permease protein LivM	21.6959315402
+UniRef50_P30296: High-affinity branched-chain amino acid transport system permease protein LivM|g__Escherichia.s__Escherichia_coli	12.1852056419
+UniRef50_P30296: High-affinity branched-chain amino acid transport system permease protein LivM|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.5107258983
+UniRef50_Q65RK2: Na(+)/H(+) antiporter NhaA	21.6866494567
+UniRef50_Q65RK2: Na(+)/H(+) antiporter NhaA|g__Escherichia.s__Escherichia_coli	21.6866494567
+UniRef50_P37749: Beta-1,6-galactofuranosyltransferase WbbI	21.6837272508
+UniRef50_P37749: Beta-1,6-galactofuranosyltransferase WbbI|g__Escherichia.s__Escherichia_coli	21.4139594390
+UniRef50_P37749: Beta-1,6-galactofuranosyltransferase WbbI|unclassified	0.2697678118
+UniRef50_S0Y4G5	21.6798452330
+UniRef50_S0Y4G5|g__Escherichia.s__Escherichia_coli	21.6798452330
+UniRef50_Q46814: Probable hypoxanthine oxidase XdhD	21.6797427188
+UniRef50_Q46814: Probable hypoxanthine oxidase XdhD|g__Escherichia.s__Escherichia_coli	21.6316402048
+UniRef50_Q46814: Probable hypoxanthine oxidase XdhD|unclassified	0.0481025140
+UniRef50_A5UK90: Transcriptional regulator, MarR family	21.6797251790
+UniRef50_A5UK90: Transcriptional regulator, MarR family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.6797251790
+UniRef50_A3PG03: Gamma-glutamyltransferase 2. Threonine peptidase. MEROPS family T03	21.6790588544
+UniRef50_A3PG03: Gamma-glutamyltransferase 2. Threonine peptidase. MEROPS family T03|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.6790588544
+UniRef50_P12999: Malonyl-[acyl-carrier protein] O-methyltransferase	21.6774846635
+UniRef50_P12999: Malonyl-[acyl-carrier protein] O-methyltransferase|g__Escherichia.s__Escherichia_coli	21.6774846635
+UniRef50_P10932: Aliphatic amidase regulator	21.6770596679
+UniRef50_P10932: Aliphatic amidase regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	21.6770596679
+UniRef50_D2ZRU4: Membrane protein	21.6757324646
+UniRef50_D2ZRU4: Membrane protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.6757324646
+UniRef50_P35272: Chain length determinant protein	21.6728088896
+UniRef50_P35272: Chain length determinant protein|g__Escherichia.s__Escherichia_coli	21.6728088896
+UniRef50_P45757: Putative type II secretion system protein C	21.6681694010
+UniRef50_P45757: Putative type II secretion system protein C|g__Escherichia.s__Escherichia_coli	21.6681694010
+UniRef50_R8AIU3	21.6643386867
+UniRef50_R8AIU3|unclassified	21.6643386867
+UniRef50_A9BVK1: Trans-aconitate 2-methyltransferase	21.6627577813
+UniRef50_A9BVK1: Trans-aconitate 2-methyltransferase|g__Escherichia.s__Escherichia_coli	21.5652777784
+UniRef50_A9BVK1: Trans-aconitate 2-methyltransferase|unclassified	0.0974800028
+UniRef50_P37660: Inner membrane transport protein YhjV	21.6511950176
+UniRef50_P37660: Inner membrane transport protein YhjV|g__Escherichia.s__Escherichia_coli	21.6511950176
+UniRef50_R7PTX8: Hydrolase TatD family	21.6464924036
+UniRef50_R7PTX8: Hydrolase TatD family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.6464924036
+UniRef50_E3A2F6	21.6423129600
+UniRef50_E3A2F6|g__Pseudomonas.s__Pseudomonas_aeruginosa	21.6423129600
+UniRef50_J1AXV9	21.6408268734
+UniRef50_J1AXV9|g__Staphylococcus.s__Staphylococcus_epidermidis	21.6408268734
+UniRef50_L1K7Q7	21.6383030181
+UniRef50_L1K7Q7|unclassified	21.6383030181
+UniRef50_A4SHC0: ADP-L-glycero-D-manno-heptose-6-epimerase	21.6381663704
+UniRef50_A4SHC0: ADP-L-glycero-D-manno-heptose-6-epimerase|g__Escherichia.s__Escherichia_coli	21.3651220533
+UniRef50_A4SHC0: ADP-L-glycero-D-manno-heptose-6-epimerase|unclassified	0.2730443170
+UniRef50_F2AIM9	21.6366812485
+UniRef50_F2AIM9|unclassified	21.6366812485
+UniRef50_P42912: Putative galactosamine-6-phosphate isomerase	21.6353198651
+UniRef50_P42912: Putative galactosamine-6-phosphate isomerase|g__Escherichia.s__Escherichia_coli	21.6353198651
+UniRef50_A5UNG9: 4-diphosphocytidyl-2-methyl-D-erithritol synthase, IspD	21.6342593881
+UniRef50_A5UNG9: 4-diphosphocytidyl-2-methyl-D-erithritol synthase, IspD|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.6342593881
+UniRef50_A4SN85: Putative transport protein ASA_2308	21.6336562562
+UniRef50_A4SN85: Putative transport protein ASA_2308|g__Escherichia.s__Escherichia_coli	21.6336562562
+UniRef50_A4WCP8: 2-succinyl-6-hydroxy-2,4-cyclohexadiene-1-carboxylate synthase	21.6246322432
+UniRef50_A4WCP8: 2-succinyl-6-hydroxy-2,4-cyclohexadiene-1-carboxylate synthase|g__Escherichia.s__Escherichia_coli	21.6246322432
+UniRef50_P0AFN8: Inner membrane transport permease YadH	21.6223862922
+UniRef50_P0AFN8: Inner membrane transport permease YadH|g__Escherichia.s__Escherichia_coli	17.4009576729
+UniRef50_P0AFN8: Inner membrane transport permease YadH|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2214286193
+UniRef50_P77622: Probable D,D-dipeptide transport ATP-binding protein DdpF	21.6215940039
+UniRef50_P77622: Probable D,D-dipeptide transport ATP-binding protein DdpF|g__Escherichia.s__Escherichia_coli	21.6215940039
+UniRef50_F5M423: Methyltransferase type 12	21.6168949246
+UniRef50_F5M423: Methyltransferase type 12|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.6168949246
+UniRef50_E0S3Q3: Transposase ISNCY family	21.6138130930
+UniRef50_E0S3Q3: Transposase ISNCY family|g__Clostridium.s__Clostridium_beijerinckii	21.5608970321
+UniRef50_E0S3Q3: Transposase ISNCY family|unclassified	0.0529160609
+UniRef50_B7MFR7: Pyrimidine-specific ribonucleoside hydrolase RihA	21.6108447482
+UniRef50_B7MFR7: Pyrimidine-specific ribonucleoside hydrolase RihA|g__Escherichia.s__Escherichia_coli	21.6108447482
+UniRef50_B5F050: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase	21.6082934625
+UniRef50_B5F050: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase|g__Escherichia.s__Escherichia_coli	21.5404253468
+UniRef50_B5F050: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase|unclassified	0.0678681157
+UniRef50_Q5HJ85: Protein EsaC	21.6052638933
+UniRef50_Q5HJ85: Protein EsaC|g__Staphylococcus.s__Staphylococcus_aureus	21.6052638933
+UniRef50_O26254: Methyl coenzyme M reductase system, component A2 homolog	21.6038942456
+UniRef50_O26254: Methyl coenzyme M reductase system, component A2 homolog|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.6038942456
+UniRef50_Q9HUG9: Bifunctional protein HldE	21.6003740863
+UniRef50_Q9HUG9: Bifunctional protein HldE|g__Escherichia.s__Escherichia_coli	21.6003740863
+UniRef50_Q487E5: Protein-L-isoaspartate O-methyltransferase	21.5990776417
+UniRef50_Q487E5: Protein-L-isoaspartate O-methyltransferase|g__Escherichia.s__Escherichia_coli	21.2653073888
+UniRef50_Q487E5: Protein-L-isoaspartate O-methyltransferase|unclassified	0.3337702529
+UniRef50_P25738: Acidic protein MsyB	21.5982556355
+UniRef50_P25738: Acidic protein MsyB|g__Escherichia.s__Escherichia_coli	19.6520403393
+UniRef50_P25738: Acidic protein MsyB|unclassified	1.9462152962
+UniRef50_D3DZS4	21.5890762104
+UniRef50_D3DZS4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.5890762104
+UniRef50_A3PI11	21.5872971556
+UniRef50_A3PI11|unclassified	21.5872971556
+UniRef50_R7PTJ2: Predicted ATPase involved in DNA repair	21.5865570388
+UniRef50_R7PTJ2: Predicted ATPase involved in DNA repair|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.5865570388
+UniRef50_UPI0002625BDD: hypothetical protein, partial	21.5848447188
+UniRef50_UPI0002625BDD: hypothetical protein, partial|unclassified	21.5848447188
+UniRef50_Q31ZL5	21.5815751615
+UniRef50_Q31ZL5|g__Escherichia.s__Escherichia_coli	21.5815751615
+UniRef50_Q3IWE5: Sulfotransferase domain protein	21.5806368056
+UniRef50_Q3IWE5: Sulfotransferase domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.5806368056
+UniRef50_P0AE26: L-arabinose transport system permease protein AraH	21.5705168221
+UniRef50_P0AE26: L-arabinose transport system permease protein AraH|g__Escherichia.s__Escherichia_coli	21.5705168221
+UniRef50_P76552: Ethanolamine utilization protein EutH	21.5703461209
+UniRef50_P76552: Ethanolamine utilization protein EutH|g__Escherichia.s__Escherichia_coli	21.5703461209
+UniRef50_P77172: Cyclic di-GMP phosphodiesterase YfgF	21.5652382956
+UniRef50_P77172: Cyclic di-GMP phosphodiesterase YfgF|g__Escherichia.s__Escherichia_coli	21.5652382956
+UniRef50_K4QD28: K07473 DNA-damage-inducible protein J	21.5646047381
+UniRef50_K4QD28: K07473 DNA-damage-inducible protein J|g__Streptococcus.s__Streptococcus_mutans	21.5646047381
+UniRef50_P76198: Inner membrane transport protein YdiN	21.5583913047
+UniRef50_P76198: Inner membrane transport protein YdiN|g__Escherichia.s__Escherichia_coli	21.5583913047
+UniRef50_A5UNX3	21.5570262804
+UniRef50_A5UNX3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.5570262804
+UniRef50_Q2W717	21.5559654031
+UniRef50_Q2W717|unclassified	21.5559654031
+UniRef50_F9V983: 16S rRNA (-N2)-methyltransferase	21.5495747208
+UniRef50_F9V983: 16S rRNA (-N2)-methyltransferase|g__Streptococcus.s__Streptococcus_mutans	19.8488944487
+UniRef50_F9V983: 16S rRNA (-N2)-methyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	1.7006802721
+UniRef50_Q1QLF3	21.5492131334
+UniRef50_Q1QLF3|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.6056291852
+UniRef50_Q1QLF3|unclassified	3.9435839482
+UniRef50_B9KMA2: RNA polymerase sigma factor	21.5452334067
+UniRef50_B9KMA2: RNA polymerase sigma factor|unclassified	21.5452334067
+UniRef50_Q8CUC8	21.5442720286
+UniRef50_Q8CUC8|unclassified	21.5442720286
+UniRef50_Q8Z8G7: Apolipoprotein N-acyltransferase	21.5438881861
+UniRef50_Q8Z8G7: Apolipoprotein N-acyltransferase|g__Escherichia.s__Escherichia_coli	21.5438881861
+UniRef50_P0AEP2: Galactose-proton symporter	21.5359664179
+UniRef50_P0AEP2: Galactose-proton symporter|g__Escherichia.s__Escherichia_coli	21.5359664179
+UniRef50_P0ADI5: Isochorismatase	21.5333980191
+UniRef50_P0ADI5: Isochorismatase|g__Escherichia.s__Escherichia_coli	20.6034911505
+UniRef50_P0ADI5: Isochorismatase|unclassified	0.9299068686
+UniRef50_Z3G533	21.5288970758
+UniRef50_Z3G533|g__Staphylococcus.s__Staphylococcus_aureus	21.5288970758
+UniRef50_O27801: Ribosomal RNA large subunit methyltransferase E	21.5216451934
+UniRef50_O27801: Ribosomal RNA large subunit methyltransferase E|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.5216451934
+UniRef50_E5QR95	21.5185787156
+UniRef50_E5QR95|g__Staphylococcus.s__Staphylococcus_aureus	21.5185787156
+UniRef50_T8YQT1	21.5175921745
+UniRef50_T8YQT1|g__Escherichia.s__Escherichia_coli	20.8333333333
+UniRef50_T8YQT1|unclassified	0.6842588411
+UniRef50_C6CE95: UPF0115 protein Dd1591_1343	21.5167956425
+UniRef50_C6CE95: UPF0115 protein Dd1591_1343|g__Escherichia.s__Escherichia_coli	21.5167956425
+UniRef50_Q8TJT7: Translation initiation factor 2 subunit gamma	21.5140958844
+UniRef50_Q8TJT7: Translation initiation factor 2 subunit gamma|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.5140958844
+UniRef50_Q7ME63: Molybdenum import ATP-binding protein ModC	21.5102310035
+UniRef50_Q7ME63: Molybdenum import ATP-binding protein ModC|g__Escherichia.s__Escherichia_coli	21.5102310035
+UniRef50_A3PHS6: Activator of Hsp90 ATPase 1 family protein	21.5067438472
+UniRef50_A3PHS6: Activator of Hsp90 ATPase 1 family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.5067438472
+UniRef50_Q5HGR8	21.5037990403
+UniRef50_Q5HGR8|g__Staphylococcus.s__Staphylococcus_aureus	14.5470897333
+UniRef50_Q5HGR8|unclassified	6.9567093070
+UniRef50_P0A902: Outer membrane lipoprotein Blc	21.4938941588
+UniRef50_P0A902: Outer membrane lipoprotein Blc|g__Escherichia.s__Escherichia_coli	21.4938941588
+UniRef50_Q1C790: Pyridoxine/pyridoxamine 5'-phosphate oxidase	21.4901651070
+UniRef50_Q1C790: Pyridoxine/pyridoxamine 5'-phosphate oxidase|g__Escherichia.s__Escherichia_coli	21.4205793691
+UniRef50_Q1C790: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	0.0695857379
+UniRef50_A4WSL4: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase	21.4832981524
+UniRef50_A4WSL4: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.3606083709
+UniRef50_A4WSL4: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|unclassified	0.1226897815
+UniRef50_B5XY59: Dihydroorotate dehydrogenase (quinone)	21.4803391809
+UniRef50_B5XY59: Dihydroorotate dehydrogenase (quinone)|g__Escherichia.s__Escherichia_coli	21.2295951206
+UniRef50_B5XY59: Dihydroorotate dehydrogenase (quinone)|unclassified	0.2507440603
+UniRef50_A3PM79: Serine-type D-Ala-D-Ala carboxypeptidase	21.4797719147
+UniRef50_A3PM79: Serine-type D-Ala-D-Ala carboxypeptidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.4797719147
+UniRef50_Q218J2: Molybdopterin dehydrogenase, FAD-binding	21.4766925600
+UniRef50_Q218J2: Molybdopterin dehydrogenase, FAD-binding|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.4766925600
+UniRef50_P75905: Poly-beta-1,6-N-acetyl-D-glucosamine synthase	21.4685148659
+UniRef50_P75905: Poly-beta-1,6-N-acetyl-D-glucosamine synthase|g__Escherichia.s__Escherichia_coli	19.4230659896
+UniRef50_P75905: Poly-beta-1,6-N-acetyl-D-glucosamine synthase|g__Acinetobacter.s__Acinetobacter_baumannii	2.0454488763
+UniRef50_D3E1F7: Glycyl-radical enzyme activating protein	21.4572022118
+UniRef50_D3E1F7: Glycyl-radical enzyme activating protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.4572022118
+UniRef50_A5UJX2: Formate dehydrogenase accessory protein, FdhD	21.4543805856
+UniRef50_A5UJX2: Formate dehydrogenase accessory protein, FdhD|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.4543805856
+UniRef50_Q88X60: Adenylyl-sulfate kinase	21.4510754663
+UniRef50_Q88X60: Adenylyl-sulfate kinase|g__Escherichia.s__Escherichia_coli	21.4510754663
+UniRef50_Q03KQ7: tRNA and rRNA cytosine-C5-methylase	21.4485422829
+UniRef50_Q03KQ7: tRNA and rRNA cytosine-C5-methylase|g__Streptococcus.s__Streptococcus_mutans	19.6058100357
+UniRef50_Q03KQ7: tRNA and rRNA cytosine-C5-methylase|g__Streptococcus.s__Streptococcus_agalactiae	1.8427322472
+UniRef50_P17334: N,N'-diacetylchitobiose permease IIC component	21.4386683922
+UniRef50_P17334: N,N'-diacetylchitobiose permease IIC component|g__Escherichia.s__Escherichia_coli	21.4386683922
+UniRef50_B8H0C0: RNA polymerase-binding transcription factor DksA	21.4374599821
+UniRef50_B8H0C0: RNA polymerase-binding transcription factor DksA|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.4374599821
+UniRef50_Q1C138: Autoinducer 2 import ATP-binding protein LsrA	21.4347181437
+UniRef50_Q1C138: Autoinducer 2 import ATP-binding protein LsrA|g__Escherichia.s__Escherichia_coli	21.4347181437
+UniRef50_X1FQR4: Marine sediment metagenome DNA, contig: S03H2_L08205 (Fragment)	21.4292074285
+UniRef50_X1FQR4: Marine sediment metagenome DNA, contig: S03H2_L08205 (Fragment)|unclassified	21.4292074285
+UniRef50_B7MG07: Anaerobic glycerol-3-phosphate dehydrogenase subunit B	21.4290097463
+UniRef50_B7MG07: Anaerobic glycerol-3-phosphate dehydrogenase subunit B|g__Escherichia.s__Escherichia_coli	20.0068433686
+UniRef50_B7MG07: Anaerobic glycerol-3-phosphate dehydrogenase subunit B|unclassified	1.4221663777
+UniRef50_L1G4X2: Permease family protein	21.4197554705
+UniRef50_L1G4X2: Permease family protein|g__Escherichia.s__Escherichia_coli	21.4197554705
+UniRef50_UPI00032A2821: PREDICTED: multidrug resistance protein MexB-like	21.4176500949
+UniRef50_UPI00032A2821: PREDICTED: multidrug resistance protein MexB-like|g__Escherichia.s__Escherichia_coli	21.0586645576
+UniRef50_UPI00032A2821: PREDICTED: multidrug resistance protein MexB-like|unclassified	0.3589855373
+UniRef50_P45104: Ribosomal large subunit pseudouridine synthase B	21.4139965662
+UniRef50_P45104: Ribosomal large subunit pseudouridine synthase B|g__Escherichia.s__Escherichia_coli	21.4139965662
+UniRef50_P32681	21.4042550331
+UniRef50_P32681|g__Escherichia.s__Escherichia_coli	20.8640109414
+UniRef50_P32681|unclassified	0.5402440917
+UniRef50_P39400: Putative L-galactonate oxidoreductase	21.4018258601
+UniRef50_P39400: Putative L-galactonate oxidoreductase|g__Escherichia.s__Escherichia_coli	21.4018258601
+UniRef50_P00805: L-asparaginase 2	21.3988500903
+UniRef50_P00805: L-asparaginase 2|g__Escherichia.s__Escherichia_coli	21.3988500903
+UniRef50_O27844: Endonuclease NucS	21.3977875717
+UniRef50_O27844: Endonuclease NucS|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.3977875717
+UniRef50_I4DAA0: UDP-4-keto-6-deoxy-N-acetylglucosamine 4-aminotransferase	21.3975580720
+UniRef50_I4DAA0: UDP-4-keto-6-deoxy-N-acetylglucosamine 4-aminotransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.3975580720
+UniRef50_B9KMM9	21.3941254524
+UniRef50_B9KMM9|unclassified	21.3941254524
+UniRef50_A5UNW3	21.3831814597
+UniRef50_A5UNW3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.6266059658
+UniRef50_A5UNW3|unclassified	0.7565754939
+UniRef50_R4K685: Fe-S oxidoreductase	21.3826799017
+UniRef50_R4K685: Fe-S oxidoreductase|g__Clostridium.s__Clostridium_beijerinckii	21.3826799017
+UniRef50_A3PR73: Binding-protein-dependent transport systems inner membrane component	21.3823819126
+UniRef50_A3PR73: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.3823819126
+UniRef50_D3E4K2: MFS transporter	21.3820101726
+UniRef50_D3E4K2: MFS transporter|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.3820101726
+UniRef50_P31801: Sodium/proton antiporter ChaA	21.3694910091
+UniRef50_P31801: Sodium/proton antiporter ChaA|g__Escherichia.s__Escherichia_coli	21.3694910091
+UniRef50_B2NC90	21.3689469793
+UniRef50_B2NC90|g__Escherichia.s__Escherichia_coli	20.4221547995
+UniRef50_B2NC90|unclassified	0.9467921798
+UniRef50_B7UVQ1	21.3685670011
+UniRef50_B7UVQ1|g__Pseudomonas.s__Pseudomonas_aeruginosa	21.3685670011
+UniRef50_Q8CQW1	21.3650173108
+UniRef50_Q8CQW1|g__Staphylococcus.s__Staphylococcus_epidermidis	21.3650173108
+UniRef50_I6GY98: Glutamate--cysteine ligase	21.3603129454
+UniRef50_I6GY98: Glutamate--cysteine ligase|g__Escherichia.s__Escherichia_coli	21.3603129454
+UniRef50_A5UKW8: Prephenate dehydrogenase (NADP+)	21.3599322903
+UniRef50_A5UKW8: Prephenate dehydrogenase (NADP+)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.3599322903
+UniRef50_S5YGA2	21.3587372428
+UniRef50_S5YGA2|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.3587372428
+UniRef50_Q7DFU6	21.3575558135
+UniRef50_Q7DFU6|g__Escherichia.s__Escherichia_coli	21.3575558135
+UniRef50_P0A2E9: RNA polymerase sigma factor FliA	21.3560501276
+UniRef50_P0A2E9: RNA polymerase sigma factor FliA|g__Escherichia.s__Escherichia_coli	21.3560501276
+UniRef50_Q3IVK2: Zinc-containing alcohol dehydrogenase	21.3545921758
+UniRef50_Q3IVK2: Zinc-containing alcohol dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.3545921758
+UniRef50_O83540: V-type ATP synthase beta chain 2	21.3536180749
+UniRef50_O83540: V-type ATP synthase beta chain 2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.6459039914
+UniRef50_O83540: V-type ATP synthase beta chain 2|g__Deinococcus.s__Deinococcus_radiodurans	0.7077140835
+UniRef50_P59329: D-cysteine desulfhydrase	21.3534304128
+UniRef50_P59329: D-cysteine desulfhydrase|g__Escherichia.s__Escherichia_coli	21.2946934668
+UniRef50_P59329: D-cysteine desulfhydrase|unclassified	0.0587369459
+UniRef50_Q8Z9L3: L-carnitine CoA-transferase	21.3515229894
+UniRef50_Q8Z9L3: L-carnitine CoA-transferase|g__Escherichia.s__Escherichia_coli	21.3515229894
+UniRef50_P31679: Putative metabolite transport protein YaaU	21.3477973809
+UniRef50_P31679: Putative metabolite transport protein YaaU|g__Escherichia.s__Escherichia_coli	21.3477973809
+UniRef50_A5UMV2: Predicted polysaccharide/polyol phosphate ABC transporter, permease component	21.3476043187
+UniRef50_A5UMV2: Predicted polysaccharide/polyol phosphate ABC transporter, permease component|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.3476043187
+UniRef50_E9Z893: Alpha/beta hydrolase	21.3448932482
+UniRef50_E9Z893: Alpha/beta hydrolase|g__Escherichia.s__Escherichia_coli	21.3448932482
+UniRef50_T1Y591	21.3394947170
+UniRef50_T1Y591|g__Staphylococcus.s__Staphylococcus_aureus	17.0291498894
+UniRef50_T1Y591|unclassified	4.3103448276
+UniRef50_R9YNF2	21.3392040778
+UniRef50_R9YNF2|g__Staphylococcus.s__Staphylococcus_aureus	21.3392040778
+UniRef50_R9SKG8	21.3382146429
+UniRef50_R9SKG8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.3382146429
+UniRef50_P39836	21.3379370854
+UniRef50_P39836|g__Escherichia.s__Escherichia_coli	21.3379370854
+UniRef50_Q28TZ9: Protein MurJ homolog	21.3348404131
+UniRef50_Q28TZ9: Protein MurJ homolog|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.3348404131
+UniRef50_A1B5F3	21.3306033628
+UniRef50_A1B5F3|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.3306033628
+UniRef50_P76041: Putative sucrose phosphorylase	21.3298434367
+UniRef50_P76041: Putative sucrose phosphorylase|g__Escherichia.s__Escherichia_coli	21.3298434367
+UniRef50_A8LAA1: 4-hydroxy-2-oxovalerate aldolase 1	21.3244170265
+UniRef50_A8LAA1: 4-hydroxy-2-oxovalerate aldolase 1|g__Escherichia.s__Escherichia_coli	21.3244170265
+UniRef50_L8CL74: 16S rRNA (Cytosine(967)-C(5))-methyltransferase	21.3120381747
+UniRef50_L8CL74: 16S rRNA (Cytosine(967)-C(5))-methyltransferase|g__Escherichia.s__Escherichia_coli	21.3120381747
+UniRef50_P17315: Colicin I receptor	21.3112277968
+UniRef50_P17315: Colicin I receptor|g__Escherichia.s__Escherichia_coli	21.3112277968
+UniRef50_I4KRZ7: Transcriptional regulator, GntR family/aminotransferase, classes I and II family protein	21.3086029119
+UniRef50_I4KRZ7: Transcriptional regulator, GntR family/aminotransferase, classes I and II family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	21.3086029119
+UniRef50_P0CK95: Putative lipoprotein AcfD homolog	21.3056159303
+UniRef50_P0CK95: Putative lipoprotein AcfD homolog|g__Escherichia.s__Escherichia_coli	21.3056159303
+UniRef50_P76010: Flagellar brake protein YcgR	21.3022418770
+UniRef50_P76010: Flagellar brake protein YcgR|g__Escherichia.s__Escherichia_coli	21.3022418770
+UniRef50_B5FMP4: Leucine--tRNA ligase	21.2995124820
+UniRef50_B5FMP4: Leucine--tRNA ligase|g__Escherichia.s__Escherichia_coli	21.2564144422
+UniRef50_B5FMP4: Leucine--tRNA ligase|unclassified	0.0430980398
+UniRef50_P75955: Inner membrane protein YcfT	21.2972753690
+UniRef50_P75955: Inner membrane protein YcfT|g__Escherichia.s__Escherichia_coli	21.2972753690
+UniRef50_Q3J608	21.2971257537
+UniRef50_Q3J608|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.3091429686
+UniRef50_Q3J608|unclassified	1.9879827851
+UniRef50_A5UKA7	21.2969909144
+UniRef50_A5UKA7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.2969909144
+UniRef50_UPI00029A5856: hypothetical protein, partial	21.2969250347
+UniRef50_UPI00029A5856: hypothetical protein, partial|unclassified	21.2969250347
+UniRef50_P52690: HTH-type transcriptional regulator CbbR	21.2955356657
+UniRef50_P52690: HTH-type transcriptional regulator CbbR|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.2955356657
+UniRef50_D6SDA6	21.2948164264
+UniRef50_D6SDA6|g__Staphylococcus.s__Staphylococcus_aureus	21.2948164264
+UniRef50_D7DUK5: Tryptophan--tRNA ligase	21.2928218074
+UniRef50_D7DUK5: Tryptophan--tRNA ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.2928218074
+UniRef50_P76185	21.2803356985
+UniRef50_P76185|g__Escherichia.s__Escherichia_coli	21.2803356985
+UniRef50_G8RAF9	21.2765957447
+UniRef50_G8RAF9|g__Staphylococcus.s__Staphylococcus_aureus	21.2765957447
+UniRef50_Q0K113: Isoquinoline 1-oxidoreductase, alpha subunit	21.2765957447
+UniRef50_Q0K113: Isoquinoline 1-oxidoreductase, alpha subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	21.2765957447
+UniRef50_Q6G9P3	21.2765957447
+UniRef50_Q6G9P3|g__Staphylococcus.s__Staphylococcus_aureus	21.2765957447
+UniRef50_F9KAU2	21.2750671605
+UniRef50_F9KAU2|g__Staphylococcus.s__Staphylococcus_aureus	21.2750671605
+UniRef50_Q8Z389: UDP-N-acetyl-D-mannosamine dehydrogenase	21.2719257256
+UniRef50_Q8Z389: UDP-N-acetyl-D-mannosamine dehydrogenase|g__Escherichia.s__Escherichia_coli	21.2719257256
+UniRef50_C4ZYY9: HTH-type transcriptional regulator YidZ	21.2669611467
+UniRef50_C4ZYY9: HTH-type transcriptional regulator YidZ|g__Escherichia.s__Escherichia_coli	21.2669611467
+UniRef50_P77324: Putative xanthine dehydrogenase YagS FAD-binding subunit	21.2659442987
+UniRef50_P77324: Putative xanthine dehydrogenase YagS FAD-binding subunit|g__Escherichia.s__Escherichia_coli	16.1847140725
+UniRef50_P77324: Putative xanthine dehydrogenase YagS FAD-binding subunit|unclassified	3.9088972836
+UniRef50_P77324: Putative xanthine dehydrogenase YagS FAD-binding subunit|g__Deinococcus.s__Deinococcus_radiodurans	1.1723329426
+UniRef50_Q08021	21.2657694116
+UniRef50_Q08021|g__Escherichia.s__Escherichia_coli	21.2657694116
+UniRef50_P52044	21.2653728006
+UniRef50_P52044|g__Escherichia.s__Escherichia_coli	21.2653728006
+UniRef50_A1BCD3	21.2647937712
+UniRef50_A1BCD3|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.2647937712
+UniRef50_P0AFA0: Lipopolysaccharide export system permease protein LptF	21.2627513262
+UniRef50_P0AFA0: Lipopolysaccharide export system permease protein LptF|g__Escherichia.s__Escherichia_coli	21.2627513262
+UniRef50_A5UP49	21.2609858136
+UniRef50_A5UP49|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.2609858136
+UniRef50_W8RQU9: NAD-dependent epimerase/dehydratase	21.2503525981
+UniRef50_W8RQU9: NAD-dependent epimerase/dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.2655599673
+UniRef50_W8RQU9: NAD-dependent epimerase/dehydratase|unclassified	1.9847926309
+UniRef50_Q6FZE7: 50S ribosomal protein L17	21.2484202433
+UniRef50_Q6FZE7: 50S ribosomal protein L17|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.2484202433
+UniRef50_B2S8N8: Argininosuccinate lyase	21.2457881085
+UniRef50_B2S8N8: Argininosuccinate lyase|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.6326229093
+UniRef50_B2S8N8: Argininosuccinate lyase|unclassified	0.6131651992
+UniRef50_Q2NFJ8: Diphthine synthase	21.2407733124
+UniRef50_Q2NFJ8: Diphthine synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.0683344934
+UniRef50_Q2NFJ8: Diphthine synthase|unclassified	0.1724388190
+UniRef50_Q5HL27: Conserved domain protein	21.2404098158
+UniRef50_Q5HL27: Conserved domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	21.2404098158
+UniRef50_P75859	21.2396493026
+UniRef50_P75859|g__Escherichia.s__Escherichia_coli	21.2396493026
+UniRef50_Q9Z507: UvrABC system protein A	21.2384392133
+UniRef50_Q9Z507: UvrABC system protein A|g__Escherichia.s__Escherichia_coli	21.2384392133
+UniRef50_V5SZU6	21.2186937179
+UniRef50_V5SZU6|g__Pseudomonas.s__Pseudomonas_aeruginosa	21.2186937179
+UniRef50_P77766: Protein TrpH	21.2123142400
+UniRef50_P77766: Protein TrpH|g__Escherichia.s__Escherichia_coli	21.2123142400
+UniRef50_P25960: Type 4 prepilin-like proteins leader peptide-processing enzyme	21.2086549896
+UniRef50_P25960: Type 4 prepilin-like proteins leader peptide-processing enzyme|g__Escherichia.s__Escherichia_coli	21.2086549896
+UniRef50_A5UP13: Permease, xanthine/uracil/vitamin C permease family	21.2079513384
+UniRef50_A5UP13: Permease, xanthine/uracil/vitamin C permease family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.2079513384
+UniRef50_H5AZ28	21.2078622933
+UniRef50_H5AZ28|g__Escherichia.s__Escherichia_coli	21.2078622933
+UniRef50_Q8FDA1: Penicillin-binding protein activator LpoA	21.2024124803
+UniRef50_Q8FDA1: Penicillin-binding protein activator LpoA|g__Escherichia.s__Escherichia_coli	21.2024124803
+UniRef50_Q2NGT2: UvrABC system protein C	21.2022512871
+UniRef50_Q2NGT2: UvrABC system protein C|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.2022512871
+UniRef50_Q3B5D7: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	21.2003443209
+UniRef50_Q3B5D7: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|g__Escherichia.s__Escherichia_coli	15.9803126214
+UniRef50_Q3B5D7: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|g__Staphylococcus.s__Staphylococcus_aureus	5.1282051282
+UniRef50_Q3B5D7: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0918265713
+UniRef50_A1UTM5	21.1973689510
+UniRef50_A1UTM5|unclassified	21.1973689510
+UniRef50_Q2YYR0	21.1952206092
+UniRef50_Q2YYR0|g__Staphylococcus.s__Staphylococcus_aureus	20.0000000000
+UniRef50_Q2YYR0|unclassified	1.1952206092
+UniRef50_P32668	21.1929792402
+UniRef50_P32668|g__Escherichia.s__Escherichia_coli	21.1929792402
+UniRef50_A5UN96: Nitrate/sulfonate/bicarbonate ABC transporter, substrate-binding component, TauA	21.1920608048
+UniRef50_A5UN96: Nitrate/sulfonate/bicarbonate ABC transporter, substrate-binding component, TauA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.1920608048
+UniRef50_F9YAF1: Bacterioferritin-associated ferredoxin	21.1900404784
+UniRef50_F9YAF1: Bacterioferritin-associated ferredoxin|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.6078431373
+UniRef50_F9YAF1: Bacterioferritin-associated ferredoxin|unclassified	1.5821973412
+UniRef50_P37178: Phosphoenolpyruvate-protein phosphotransferase PtsP	21.1898702367
+UniRef50_P37178: Phosphoenolpyruvate-protein phosphotransferase PtsP|g__Escherichia.s__Escherichia_coli	21.1201530770
+UniRef50_P37178: Phosphoenolpyruvate-protein phosphotransferase PtsP|unclassified	0.0697171597
+UniRef50_Q06400: UPF0394 inner membrane protein YedE	21.1771894286
+UniRef50_Q06400: UPF0394 inner membrane protein YedE|g__Escherichia.s__Escherichia_coli	21.1771894286
+UniRef50_E0S0F8: Ornithine cyclodeaminase	21.1767315457
+UniRef50_E0S0F8: Ornithine cyclodeaminase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.1767315457
+UniRef50_Q5F9U0: Phenylalanine--tRNA ligase alpha subunit	21.1755956241
+UniRef50_Q5F9U0: Phenylalanine--tRNA ligase alpha subunit|g__Escherichia.s__Escherichia_coli	21.1755956241
+UniRef50_G2I067: DNA gyrase modulator	21.1667302519
+UniRef50_G2I067: DNA gyrase modulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.1667302519
+UniRef50_P37631	21.1665946763
+UniRef50_P37631|g__Escherichia.s__Escherichia_coli	21.1665946763
+UniRef50_P37909	21.1653507214
+UniRef50_P37909|g__Escherichia.s__Escherichia_coli	21.1653507214
+UniRef50_Q3IW39	21.1449346495
+UniRef50_Q3IW39|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.4155251142
+UniRef50_Q3IW39|unclassified	9.7294095353
+UniRef50_P33934: Ferredoxin-type protein NapH	21.1413629997
+UniRef50_P33934: Ferredoxin-type protein NapH|g__Escherichia.s__Escherichia_coli	21.1413629997
+UniRef50_R7PUY3	21.1412315920
+UniRef50_R7PUY3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.1412315920
+UniRef50_H0DLM8	21.1409345972
+UniRef50_H0DLM8|g__Staphylococcus.s__Staphylococcus_epidermidis	21.1409345972
+UniRef50_P33228: Protein RecT	21.1386843028
+UniRef50_P33228: Protein RecT|g__Escherichia.s__Escherichia_coli	21.1386843028
+UniRef50_P45428: Putative cryptic C4-dicarboxylate transporter DcuD	21.1341291573
+UniRef50_P45428: Putative cryptic C4-dicarboxylate transporter DcuD|g__Escherichia.s__Escherichia_coli	21.1341291573
+UniRef50_Q1R8C8	21.1226194244
+UniRef50_Q1R8C8|g__Escherichia.s__Escherichia_coli	18.6954349584
+UniRef50_Q1R8C8|unclassified	2.4271844660
+UniRef50_R9SJ71: Type II secretion system protein E GspE	21.1223859110
+UniRef50_R9SJ71: Type II secretion system protein E GspE|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.1223859110
+UniRef50_R9SMW4: Transporter ExbD/Tol family	21.1184106930
+UniRef50_R9SMW4: Transporter ExbD/Tol family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.1184106930
+UniRef50_O27458: UPF0147 protein MTH_1407	21.1170942878
+UniRef50_O27458: UPF0147 protein MTH_1407|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.1170942878
+UniRef50_Q9REM0: Hydrogenase nickel incorporation protein HypA	21.1048050494
+UniRef50_Q9REM0: Hydrogenase nickel incorporation protein HypA|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.1048050494
+UniRef50_P31904: Hydrogenase expression/formation protein hypD2	21.0928490267
+UniRef50_P31904: Hydrogenase expression/formation protein hypD2|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.0928490267
+UniRef50_Q3JWE6	21.0876480640
+UniRef50_Q3JWE6|g__Pseudomonas.s__Pseudomonas_aeruginosa	20.7871398364
+UniRef50_Q3JWE6|unclassified	0.3005082276
+UniRef50_Q3HKD6	21.0843280636
+UniRef50_Q3HKD6|unclassified	21.0843280636
+UniRef50_A5UJ53: Predicted transcriptional regulator	21.0754063659
+UniRef50_A5UJ53: Predicted transcriptional regulator|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.0754063659
+UniRef50_Q8UDF7: Carbamoyl-phosphate synthase small chain	21.0659183726
+UniRef50_Q8UDF7: Carbamoyl-phosphate synthase small chain|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.3308156652
+UniRef50_Q8UDF7: Carbamoyl-phosphate synthase small chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.3995050277
+UniRef50_Q8UDF7: Carbamoyl-phosphate synthase small chain|g__Acinetobacter.s__Acinetobacter_baumannii	1.4084507042
+UniRef50_Q8UDF7: Carbamoyl-phosphate synthase small chain|g__Neisseria.s__Neisseria_meningitidis	0.8841732980
+UniRef50_Q8UDF7: Carbamoyl-phosphate synthase small chain|unclassified	0.0429736774
+UniRef50_C4ZU18: Fructose-1-phosphate kinase	21.0639738622
+UniRef50_C4ZU18: Fructose-1-phosphate kinase|g__Escherichia.s__Escherichia_coli	21.0639738622
+UniRef50_B9KWM7	21.0603244911
+UniRef50_B9KWM7|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.0603244911
+UniRef50_N2JS66: Cyanate hydratase	21.0583315766
+UniRef50_N2JS66: Cyanate hydratase|g__Escherichia.s__Escherichia_coli	21.0583315766
+UniRef50_R6TVK2: Aldehyde dehydrogenase A	21.0537714537
+UniRef50_R6TVK2: Aldehyde dehydrogenase A|g__Escherichia.s__Escherichia_coli	21.0537714537
+UniRef50_B7V709	21.0505477938
+UniRef50_B7V709|g__Pseudomonas.s__Pseudomonas_aeruginosa	21.0505477938
+UniRef50_Q8X524: Sensor protein QseC	21.0400150502
+UniRef50_Q8X524: Sensor protein QseC|g__Escherichia.s__Escherichia_coli	21.0400150502
+UniRef50_Q2NGM6: Probable translation initiation factor IF-2	21.0366678465
+UniRef50_Q2NGM6: Probable translation initiation factor IF-2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.0366678465
+UniRef50_A8LU40: Replication protein C	21.0334448717
+UniRef50_A8LU40: Replication protein C|unclassified	21.0334448717
+UniRef50_S5XPF3: ATP-dependent RNA helicase RhlE	21.0328989648
+UniRef50_S5XPF3: ATP-dependent RNA helicase RhlE|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.0328989648
+UniRef50_P09432: Nitrogen regulation protein NtrC	21.0322225127
+UniRef50_P09432: Nitrogen regulation protein NtrC|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.0322225127
+UniRef50_C5WCX1: 4-hydroxythreonine-4-phosphate dehydrogenase	21.0277942186
+UniRef50_C5WCX1: 4-hydroxythreonine-4-phosphate dehydrogenase|g__Escherichia.s__Escherichia_coli	21.0277942186
+UniRef50_Z4WXY4	21.0238829421
+UniRef50_Z4WXY4|unclassified	21.0238829421
+UniRef50_I7EWS3	21.0136138563
+UniRef50_I7EWS3|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.2025630707
+UniRef50_I7EWS3|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.8553387141
+UniRef50_I7EWS3|unclassified	2.9557120715
+UniRef50_Q2T6U3: Acetyltransferase, GNAT family	21.0100916398
+UniRef50_Q2T6U3: Acetyltransferase, GNAT family|g__Rhodobacter.s__Rhodobacter_sphaeroides	21.0100916398
+UniRef50_Q8FBC3: Glycerol kinase	21.0100076817
+UniRef50_Q8FBC3: Glycerol kinase|g__Escherichia.s__Escherichia_coli	20.1280861064
+UniRef50_Q8FBC3: Glycerol kinase|g__Streptococcus.s__Streptococcus_agalactiae	0.7042253521
+UniRef50_Q8FBC3: Glycerol kinase|unclassified	0.1776962232
+UniRef50_E3YPZ5: Acetyl-CoA carboxylase, biotin carboxyl carrier protein	21.0076077164
+UniRef50_E3YPZ5: Acetyl-CoA carboxylase, biotin carboxyl carrier protein|g__Staphylococcus.s__Staphylococcus_epidermidis	21.0076077164
+UniRef50_R7PSE2	21.0013607004
+UniRef50_R7PSE2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	21.0013607004
+UniRef50_J7QYC7	21.0007117956
+UniRef50_J7QYC7|g__Escherichia.s__Escherichia_coli	21.0007117956
+UniRef50_Q3HKH3	20.9975166573
+UniRef50_Q3HKH3|unclassified	17.2096378694
+UniRef50_Q3HKH3|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.7878787879
+UniRef50_Q8FEN7: Arabinose 5-phosphate isomerase GutQ	20.9922804560
+UniRef50_Q8FEN7: Arabinose 5-phosphate isomerase GutQ|g__Escherichia.s__Escherichia_coli	19.7382614951
+UniRef50_Q8FEN7: Arabinose 5-phosphate isomerase GutQ|unclassified	1.2540189609
+UniRef50_V0X9G6: dGTPase	20.9820239475
+UniRef50_V0X9G6: dGTPase|g__Escherichia.s__Escherichia_coli	20.9820239475
+UniRef50_P13039: Enterochelin esterase	20.9797019183
+UniRef50_P13039: Enterochelin esterase|g__Escherichia.s__Escherichia_coli	20.9797019183
+UniRef50_Q9Y315: Putative deoxyribose-phosphate aldolase	20.9760626599
+UniRef50_Q9Y315: Putative deoxyribose-phosphate aldolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.9760626599
+UniRef50_A6UVH0: FO synthase subunit 1	20.9752591703
+UniRef50_A6UVH0: FO synthase subunit 1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.9752591703
+UniRef50_A5UNK4: Ribose-phosphate pyrophosphokinase	20.9733727827
+UniRef50_A5UNK4: Ribose-phosphate pyrophosphokinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.9733727827
+UniRef50_B7UNN8: CDP-diacylglycerol pyrophosphatase	20.9649079581
+UniRef50_B7UNN8: CDP-diacylglycerol pyrophosphatase|g__Escherichia.s__Escherichia_coli	19.9544092932
+UniRef50_B7UNN8: CDP-diacylglycerol pyrophosphatase|unclassified	1.0104986649
+UniRef50_J7QVF5: Conserved domain protein	20.9630319577
+UniRef50_J7QVF5: Conserved domain protein|g__Escherichia.s__Escherichia_coli	20.9630319577
+UniRef50_W1H531: 5-methyltetrahydrofolate--homocysteine methyltransferase	20.9607196410
+UniRef50_W1H531: 5-methyltetrahydrofolate--homocysteine methyltransferase|g__Escherichia.s__Escherichia_coli	14.0894140511
+UniRef50_W1H531: 5-methyltetrahydrofolate--homocysteine methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8713055899
+UniRef50_P52022: DNA polymerase III subunit alpha	20.9599135501
+UniRef50_P52022: DNA polymerase III subunit alpha|g__Escherichia.s__Escherichia_coli	20.9599135501
+UniRef50_Q8DVX1	20.9551457541
+UniRef50_Q8DVX1|g__Streptococcus.s__Streptococcus_mutans	20.9551457541
+UniRef50_A4WR54: NnrS family protein	20.9541636992
+UniRef50_A4WR54: NnrS family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.7071651511
+UniRef50_A4WR54: NnrS family protein|unclassified	0.2469985481
+UniRef50_P31125: Probable amino-acid metabolite efflux pump	20.9495488391
+UniRef50_P31125: Probable amino-acid metabolite efflux pump|g__Escherichia.s__Escherichia_coli	20.9495488391
+UniRef50_I6D8C7: Sensor atoS domain protein	20.9441213419
+UniRef50_I6D8C7: Sensor atoS domain protein|g__Escherichia.s__Escherichia_coli	20.9441213419
+UniRef50_P57487: Endonuclease-1	20.9382585899
+UniRef50_P57487: Endonuclease-1|g__Escherichia.s__Escherichia_coli	20.7890811986
+UniRef50_P57487: Endonuclease-1|unclassified	0.1491773912
+UniRef50_A5ULF0: Phosphoenolpyruvate synthase/pyruvate phosphate dikinase, PpsA	20.9360091917
+UniRef50_A5ULF0: Phosphoenolpyruvate synthase/pyruvate phosphate dikinase, PpsA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.9360091917
+UniRef50_A5UP33: Smf protein	20.9319251152
+UniRef50_A5UP33: Smf protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.9319251152
+UniRef50_Q3J164: Cytochrome c2	20.9286170774
+UniRef50_Q3J164: Cytochrome c2|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.9286170774
+UniRef50_V5AMJ6	20.9226906580
+UniRef50_V5AMJ6|g__Streptococcus.s__Streptococcus_mutans	12.6582278481
+UniRef50_V5AMJ6|unclassified	8.2644628099
+UniRef50_C6A075: DNA helicase, UvrD/REP family	20.9130791218
+UniRef50_C6A075: DNA helicase, UvrD/REP family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.9130791218
+UniRef50_B9EAK0	20.9106160772
+UniRef50_B9EAK0|g__Staphylococcus.s__Staphylococcus_aureus	20.9106160772
+UniRef50_R7PUB9	20.9098963032
+UniRef50_R7PUB9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.9098963032
+UniRef50_P0A1E9: Minor curlin subunit	20.9082308420
+UniRef50_P0A1E9: Minor curlin subunit|g__Escherichia.s__Escherichia_coli	20.9082308420
+UniRef50_Q8CS22: Putative membrane protein insertion efficiency factor	20.8979235591
+UniRef50_Q8CS22: Putative membrane protein insertion efficiency factor|g__Staphylococcus.s__Staphylococcus_epidermidis	20.8979235591
+UniRef50_Q9HLP5: UPF0145 protein Ta0182	20.8949130208
+UniRef50_Q9HLP5: UPF0145 protein Ta0182|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.8949130208
+UniRef50_R7PYB9	20.8940912759
+UniRef50_R7PYB9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.8940912759
+UniRef50_A3PRQ8: ABC cobalt transporter, periplasmic binding protein CbiN	20.8913042198
+UniRef50_A3PRQ8: ABC cobalt transporter, periplasmic binding protein CbiN|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.6876207158
+UniRef50_A3PRQ8: ABC cobalt transporter, periplasmic binding protein CbiN|unclassified	1.2036835040
+UniRef50_U8EUK5	20.8885545011
+UniRef50_U8EUK5|g__Pseudomonas.s__Pseudomonas_aeruginosa	20.8885545011
+UniRef50_U5NML8	20.8839522666
+UniRef50_U5NML8|unclassified	20.8839522666
+UniRef50_A5UL83: 30S ribosomal protein S3	20.8828479781
+UniRef50_A5UL83: 30S ribosomal protein S3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.8828479781
+UniRef50_Q8EKI8: L-seryl-tRNA(Sec) selenium transferase	20.8811751276
+UniRef50_Q8EKI8: L-seryl-tRNA(Sec) selenium transferase|g__Escherichia.s__Escherichia_coli	20.8811751276
+UniRef50_D3E3T4: 4Fe-4S binding domain-containing protein	20.8790730782
+UniRef50_D3E3T4: 4Fe-4S binding domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.8790730782
+UniRef50_P75792: Sugar phosphatase YbiV	20.8758205067
+UniRef50_P75792: Sugar phosphatase YbiV|g__Escherichia.s__Escherichia_coli	20.1269990570
+UniRef50_P75792: Sugar phosphatase YbiV|unclassified	0.7488214497
+UniRef50_P64613: Cell division protein ZapE	20.8668662944
+UniRef50_P64613: Cell division protein ZapE|g__Escherichia.s__Escherichia_coli	20.8668662944
+UniRef50_V9WM02: MoxR-like ATPase	20.8506258216
+UniRef50_V9WM02: MoxR-like ATPase|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.8506258216
+UniRef50_C6STT6	20.8441207727
+UniRef50_C6STT6|g__Streptococcus.s__Streptococcus_mutans	20.8441207727
+UniRef50_O28206: Formylmethanofuran--tetrahydromethanopterin formyltransferase-like protein	20.8437739959
+UniRef50_O28206: Formylmethanofuran--tetrahydromethanopterin formyltransferase-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.8437739959
+UniRef50_UPI00037F13B2: hypothetical protein	20.8414332917
+UniRef50_UPI00037F13B2: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.2937640717
+UniRef50_UPI00037F13B2: hypothetical protein|unclassified	0.5476692200
+UniRef50_B5XYB9: Hydroxylamine reductase	20.8403732246
+UniRef50_B5XYB9: Hydroxylamine reductase|g__Escherichia.s__Escherichia_coli	20.7800427444
+UniRef50_B5XYB9: Hydroxylamine reductase|unclassified	0.0603304801
+UniRef50_P0AE35: Arginine ABC transporter permease protein ArtQ	20.8371156817
+UniRef50_P0AE35: Arginine ABC transporter permease protein ArtQ|g__Escherichia.s__Escherichia_coli	20.8371156817
+UniRef50_D5AV34: Nonfunctional major facilitator superfamily MFS_1	20.8369251531
+UniRef50_D5AV34: Nonfunctional major facilitator superfamily MFS_1|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.8369251531
+UniRef50_T1XNN9	20.8351910733
+UniRef50_T1XNN9|g__Staphylococcus.s__Staphylococcus_aureus	20.4463924618
+UniRef50_T1XNN9|unclassified	0.3887986115
+UniRef50_A7WY98	20.8333333333
+UniRef50_A7WY98|g__Staphylococcus.s__Staphylococcus_aureus	20.8333333333
+UniRef50_I9SM88: Flavoprotein oxidoreductase	20.8333333333
+UniRef50_I9SM88: Flavoprotein oxidoreductase|g__Helicobacter.s__Helicobacter_pylori	20.8333333333
+UniRef50_N5YPY2	20.8333333333
+UniRef50_N5YPY2|g__Staphylococcus.s__Staphylococcus_aureus	20.8333333333
+UniRef50_Q46824: Toxin CptA	20.8333333333
+UniRef50_Q46824: Toxin CptA|g__Escherichia.s__Escherichia_coli	20.8333333333
+UniRef50_Q5HLZ3	20.8333333333
+UniRef50_Q5HLZ3|g__Staphylococcus.s__Staphylococcus_epidermidis	20.8333333333
+UniRef50_UPI000369E819: hypothetical protein	20.8333333333
+UniRef50_UPI000369E819: hypothetical protein|g__Streptococcus.s__Streptococcus_mutans	20.8333333333
+UniRef50_W6IFL4: ABC transporter ATP-binding protein uup	20.8282601373
+UniRef50_W6IFL4: ABC transporter ATP-binding protein uup|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.8282601373
+UniRef50_P76228: Inner membrane protein YnjI	20.8224792817
+UniRef50_P76228: Inner membrane protein YnjI|g__Escherichia.s__Escherichia_coli	20.8224792817
+UniRef50_P76177: Protein YdgH	20.8192967483
+UniRef50_P76177: Protein YdgH|g__Escherichia.s__Escherichia_coli	20.8192967483
+UniRef50_P76092	20.8157642805
+UniRef50_P76092|g__Escherichia.s__Escherichia_coli	20.8157642805
+UniRef50_D3E165	20.8143675273
+UniRef50_D3E165|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.8143675273
+UniRef50_Q2RS21: Nickel import ATP-binding protein NikD	20.8104483043
+UniRef50_Q2RS21: Nickel import ATP-binding protein NikD|g__Escherichia.s__Escherichia_coli	20.8104483043
+UniRef50_W8KIM2: Protein pucC	20.8061717026
+UniRef50_W8KIM2: Protein pucC|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.9264756801
+UniRef50_W8KIM2: Protein pucC|unclassified	0.8796960225
+UniRef50_J7MB25: Transposase	20.8034870479
+UniRef50_J7MB25: Transposase|g__Streptococcus.s__Streptococcus_agalactiae	20.8034870479
+UniRef50_P52134	20.7990000978
+UniRef50_P52134|unclassified	10.9075182963
+UniRef50_P52134|g__Escherichia.s__Escherichia_coli	9.8914818016
+UniRef50_C3T0C2: Transcriptional regulation of gcv operon	20.7959287040
+UniRef50_C3T0C2: Transcriptional regulation of gcv operon|g__Escherichia.s__Escherichia_coli	20.7959287040
+UniRef50_P37169: Protein MurJ homolog	20.7921788834
+UniRef50_P37169: Protein MurJ homolog|g__Escherichia.s__Escherichia_coli	19.8888365167
+UniRef50_P37169: Protein MurJ homolog|g__Neisseria.s__Neisseria_meningitidis	0.9033423668
+UniRef50_A5ULG2: Shikimate kinase	20.7887196360
+UniRef50_A5ULG2: Shikimate kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.7887196360
+UniRef50_P0AF22: N-acetylglucosamine repressor	20.7882652848
+UniRef50_P0AF22: N-acetylglucosamine repressor|g__Escherichia.s__Escherichia_coli	20.7882652848
+UniRef50_H9UZT1: Ribonucleoside-diphosphate reductase 1, beta subunit, B2	20.7850359561
+UniRef50_H9UZT1: Ribonucleoside-diphosphate reductase 1, beta subunit, B2|g__Escherichia.s__Escherichia_coli	20.2278574079
+UniRef50_H9UZT1: Ribonucleoside-diphosphate reductase 1, beta subunit, B2|unclassified	0.5571785482
+UniRef50_P0ABG6: Lipid II flippase FtsW	20.7807350902
+UniRef50_P0ABG6: Lipid II flippase FtsW|g__Escherichia.s__Escherichia_coli	20.7807350902
+UniRef50_A5UCW1: UPF0042 nucleotide-binding protein CGSHiEE_06315	20.7775152475
+UniRef50_A5UCW1: UPF0042 nucleotide-binding protein CGSHiEE_06315|g__Escherichia.s__Escherichia_coli	20.7775152475
+UniRef50_Q8DTE8	20.7735583685
+UniRef50_Q8DTE8|g__Streptococcus.s__Streptococcus_mutans	20.7735583685
+UniRef50_D4UAN3	20.7724313874
+UniRef50_D4UAN3|g__Staphylococcus.s__Staphylococcus_aureus	19.2307692308
+UniRef50_D4UAN3|unclassified	1.5416621566
+UniRef50_A3PH60	20.7682731461
+UniRef50_A3PH60|unclassified	11.5525460814
+UniRef50_A3PH60|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.2157270647
+UniRef50_Q60317: Probable aspartate aminotransferase 1	20.7661710649
+UniRef50_Q60317: Probable aspartate aminotransferase 1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.7661710649
+UniRef50_P0AEU5: Histidine transport system permease protein HisM	20.7655016435
+UniRef50_P0AEU5: Histidine transport system permease protein HisM|g__Escherichia.s__Escherichia_coli	20.7655016435
+UniRef50_Q01WB8: 30S ribosomal protein S11	20.7636026862
+UniRef50_Q01WB8: 30S ribosomal protein S11|g__Escherichia.s__Escherichia_coli	15.5956095234
+UniRef50_Q01WB8: 30S ribosomal protein S11|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1679931628
+UniRef50_P0AA72	20.7614769447
+UniRef50_P0AA72|g__Escherichia.s__Escherichia_coli	20.7614769447
+UniRef50_P76261: Putative cyclic-di-GMP phosphodiesterase AdrB	20.7563548958
+UniRef50_P76261: Putative cyclic-di-GMP phosphodiesterase AdrB|g__Escherichia.s__Escherichia_coli	20.7563548958
+UniRef50_P0AFR5	20.7560772057
+UniRef50_P0AFR5|g__Escherichia.s__Escherichia_coli	16.9716160528
+UniRef50_P0AFR5|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7844611529
+UniRef50_B4TWJ1: Transcriptional regulator NanR	20.7551391428
+UniRef50_B4TWJ1: Transcriptional regulator NanR|g__Escherichia.s__Escherichia_coli	20.7551391428
+UniRef50_A5UKW5: Cell wall biosynthesis protein, UDP-glycosyltransferase family	20.7502052643
+UniRef50_A5UKW5: Cell wall biosynthesis protein, UDP-glycosyltransferase family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.7502052643
+UniRef50_A5UM83: Hydrogenase maturation factor, HypF	20.7485521392
+UniRef50_A5UM83: Hydrogenase maturation factor, HypF|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.7485521392
+UniRef50_B2SB72: Bifunctional protein GlmU	20.7471341308
+UniRef50_B2SB72: Bifunctional protein GlmU|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.6933671256
+UniRef50_B2SB72: Bifunctional protein GlmU|unclassified	0.0537670052
+UniRef50_Q1LT01: Hydroxyacylglutathione hydrolase	20.7422897688
+UniRef50_Q1LT01: Hydroxyacylglutathione hydrolase|g__Escherichia.s__Escherichia_coli	20.7422897688
+UniRef50_P0ACP3: Catabolite repressor/activator	20.7421679747
+UniRef50_P0ACP3: Catabolite repressor/activator|g__Escherichia.s__Escherichia_coli	20.7421679747
+UniRef50_P17888: Primosomal protein N'	20.7401799447
+UniRef50_P17888: Primosomal protein N'|g__Escherichia.s__Escherichia_coli	20.7401799447
+UniRef50_D5WZP9: Cytochrome c oxidase, cbb3-type, subunit II	20.7387209039
+UniRef50_D5WZP9: Cytochrome c oxidase, cbb3-type, subunit II|g__Pseudomonas.s__Pseudomonas_aeruginosa	20.7387209039
+UniRef50_A5ULE4: Predicted transcriptional regulator	20.7344124360
+UniRef50_A5ULE4: Predicted transcriptional regulator|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.7344124360
+UniRef50_F5M502	20.7306508884
+UniRef50_F5M502|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.7306508884
+UniRef50_R9SHD6: Glycine betaine/L-proline ABC transporter permease/substrate-binding protein	20.7258932347
+UniRef50_R9SHD6: Glycine betaine/L-proline ABC transporter permease/substrate-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.7258932347
+UniRef50_B3HTF1: Protein YgiQ	20.7137919545
+UniRef50_B3HTF1: Protein YgiQ|g__Escherichia.s__Escherichia_coli	20.4223333060
+UniRef50_B3HTF1: Protein YgiQ|unclassified	0.2914586485
+UniRef50_P03030: Transcriptional activator protein LysR	20.7128985475
+UniRef50_P03030: Transcriptional activator protein LysR|g__Escherichia.s__Escherichia_coli	20.7128985475
+UniRef50_D3E0M0: Calcineurin-like phosphoesterase	20.7091476203
+UniRef50_D3E0M0: Calcineurin-like phosphoesterase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.7091476203
+UniRef50_A6UEL7: Acid tolerance regulatory protein ActR	20.7066097988
+UniRef50_A6UEL7: Acid tolerance regulatory protein ActR|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.7066097988
+UniRef50_Q8ZDH2: Putative fluoride ion transporter CrcB 1	20.7057199551
+UniRef50_Q8ZDH2: Putative fluoride ion transporter CrcB 1|g__Escherichia.s__Escherichia_coli	20.7057199551
+UniRef50_P75869: Protein Sxy	20.6963566028
+UniRef50_P75869: Protein Sxy|g__Escherichia.s__Escherichia_coli	20.6963566028
+UniRef50_B9KU14: Transcriptional regulator, AraC family with amidase-like domain	20.6952130957
+UniRef50_B9KU14: Transcriptional regulator, AraC family with amidase-like domain|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.6952130957
+UniRef50_B9KLX0: Class I monoheme cytochrome c	20.6932773109
+UniRef50_B9KLX0: Class I monoheme cytochrome c|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.6932773109
+UniRef50_Q5LR99: Peptidase, M23/M37 family	20.6859738380
+UniRef50_Q5LR99: Peptidase, M23/M37 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.4246969244
+UniRef50_Q5LR99: Peptidase, M23/M37 family|unclassified	2.2612769136
+UniRef50_E6BEI7	20.6822692642
+UniRef50_E6BEI7|unclassified	20.6822692642
+UniRef50_Q2YYE7: Truncated methicillin resistance-related surface protein	20.6766060919
+UniRef50_Q2YYE7: Truncated methicillin resistance-related surface protein|g__Staphylococcus.s__Staphylococcus_aureus	20.6766060919
+UniRef50_F4SG83: Glycerol-3-phosphate transporter	20.6745931835
+UniRef50_F4SG83: Glycerol-3-phosphate transporter|g__Escherichia.s__Escherichia_coli	20.6745931835
+UniRef50_R9SHV7: Metallophosphoesterase	20.6731733247
+UniRef50_R9SHV7: Metallophosphoesterase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.6731733247
+UniRef50_F0TB29: Mur ligase middle domain protein	20.6704317900
+UniRef50_F0TB29: Mur ligase middle domain protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.6704317900
+UniRef50_P77804: Protein YdgA	20.6689019784
+UniRef50_P77804: Protein YdgA|g__Escherichia.s__Escherichia_coli	20.6689019784
+UniRef50_P19576: Maltose-binding periplasmic protein	20.6684886717
+UniRef50_P19576: Maltose-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	20.6684886717
+UniRef50_R9SLZ6: SAM-dependent methyltransferase	20.6669714253
+UniRef50_R9SLZ6: SAM-dependent methyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.6669714253
+UniRef50_B9L5K2: 3-isopropylmalate dehydratase small subunit	20.6628531657
+UniRef50_B9L5K2: 3-isopropylmalate dehydratase small subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.6628531657
+UniRef50_I6GYX0: ABC transporter family protein	20.6587474693
+UniRef50_I6GYX0: ABC transporter family protein|g__Escherichia.s__Escherichia_coli	20.6587474693
+UniRef50_B1J909: Peptidase C39 bacteriocin processing	20.6499670741
+UniRef50_B1J909: Peptidase C39 bacteriocin processing|g__Pseudomonas.s__Pseudomonas_aeruginosa	20.6499670741
+UniRef50_Q8FF43	20.6494514279
+UniRef50_Q8FF43|g__Escherichia.s__Escherichia_coli	20.6494514279
+UniRef50_A6FVX3: Transcriptional regulator, MarR family protein	20.6487744086
+UniRef50_A6FVX3: Transcriptional regulator, MarR family protein|unclassified	20.6487744086
+UniRef50_X5DSB0	20.6462249786
+UniRef50_X5DSB0|g__Staphylococcus.s__Staphylococcus_aureus	18.3206601335
+UniRef50_X5DSB0|unclassified	2.3255648451
+UniRef50_P52127	20.6438153014
+UniRef50_P52127|g__Escherichia.s__Escherichia_coli	20.6438153014
+UniRef50_A4WYU2	20.6432668476
+UniRef50_A4WYU2|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.6432668476
+UniRef50_O27082: Cation-transporting P-ATPase PacL	20.6421987902
+UniRef50_O27082: Cation-transporting P-ATPase PacL|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.6421987902
+UniRef50_A0A023KRT9	20.6413666758
+UniRef50_A0A023KRT9|g__Escherichia.s__Escherichia_coli	20.6413666758
+UniRef50_A1VT86: Phosphate butyryltransferase	20.6399498496
+UniRef50_A1VT86: Phosphate butyryltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.6399498496
+UniRef50_P0ABE5: Cytochrome b561	20.6386056911
+UniRef50_P0ABE5: Cytochrome b561|g__Escherichia.s__Escherichia_coli	20.6386056911
+UniRef50_P37678: 3-keto-L-gulonate-6-phosphate decarboxylase SgbH	20.6369256350
+UniRef50_P37678: 3-keto-L-gulonate-6-phosphate decarboxylase SgbH|g__Escherichia.s__Escherichia_coli	20.6369256350
+UniRef50_Q98C73: Mll5269 protein	20.6290836930
+UniRef50_Q98C73: Mll5269 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.6290836930
+UniRef50_A5UKM2	20.6250060389
+UniRef50_A5UKM2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.6250060389
+UniRef50_P06744: Glucose-6-phosphate isomerase	20.6235563352
+UniRef50_P06744: Glucose-6-phosphate isomerase|g__Escherichia.s__Escherichia_coli	20.6235563352
+UniRef50_P08390: USG-1 protein	20.6199291039
+UniRef50_P08390: USG-1 protein|g__Escherichia.s__Escherichia_coli	20.6199291039
+UniRef50_C0Q1R0: Nicotinate-nucleotide--dimethylbenzimidazole phosphoribosyltransferase	20.6123250669
+UniRef50_C0Q1R0: Nicotinate-nucleotide--dimethylbenzimidazole phosphoribosyltransferase|g__Escherichia.s__Escherichia_coli	20.6123250669
+UniRef50_U4TS42: Phosphorylase (Fragment)	20.6080453565
+UniRef50_U4TS42: Phosphorylase (Fragment)|g__Escherichia.s__Escherichia_coli	20.6080453565
+UniRef50_Q3J267	20.6046399121
+UniRef50_Q3J267|unclassified	17.1799823778
+UniRef50_Q3J267|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.4246575342
+UniRef50_P21507: ATP-dependent RNA helicase SrmB	20.6035012854
+UniRef50_P21507: ATP-dependent RNA helicase SrmB|g__Escherichia.s__Escherichia_coli	20.6035012854
+UniRef50_D3HHR2	20.6019050839
+UniRef50_D3HHR2|g__Streptococcus.s__Streptococcus_mutans	20.6019050839
+UniRef50_J9V4P4	20.6017595020
+UniRef50_J9V4P4|unclassified	12.1575288356
+UniRef50_J9V4P4|g__Staphylococcus.s__Staphylococcus_aureus	8.4442306665
+UniRef50_Q8TUS9: V-type ATP synthase subunit D	20.6001249565
+UniRef50_Q8TUS9: V-type ATP synthase subunit D|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.6001249565
+UniRef50_A5UKG7: SAM-dependent methyltransferase, UbiE/CobQ family	20.5993989967
+UniRef50_A5UKG7: SAM-dependent methyltransferase, UbiE/CobQ family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.5993989967
+UniRef50_C6DJF9: Protein ViaA	20.5955210217
+UniRef50_C6DJF9: Protein ViaA|g__Escherichia.s__Escherichia_coli	20.5955210217
+UniRef50_A5ULP1: Predicted O-linked GlcNAc transferase	20.5885822025
+UniRef50_A5ULP1: Predicted O-linked GlcNAc transferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.5885822025
+UniRef50_Q326E0	20.5885210055
+UniRef50_Q326E0|g__Escherichia.s__Escherichia_coli	20.5885210055
+UniRef50_Q07QW9: NADH-quinone oxidoreductase subunit H 1	20.5879646612
+UniRef50_Q07QW9: NADH-quinone oxidoreductase subunit H 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.5130618421
+UniRef50_Q07QW9: NADH-quinone oxidoreductase subunit H 1|unclassified	0.0749028190
+UniRef50_P63235: Probable glutamate/gamma-aminobutyrate antiporter	20.5865843094
+UniRef50_P63235: Probable glutamate/gamma-aminobutyrate antiporter|g__Escherichia.s__Escherichia_coli	20.5865843094
+UniRef50_P39336	20.5791761602
+UniRef50_P39336|g__Escherichia.s__Escherichia_coli	20.5791761602
+UniRef50_I6Z4Y8: Respiratory nitrate reductase gamma chain	20.5739926761
+UniRef50_I6Z4Y8: Respiratory nitrate reductase gamma chain|g__Pseudomonas.s__Pseudomonas_aeruginosa	20.5739926761
+UniRef50_B7UWW0	20.5663856791
+UniRef50_B7UWW0|g__Pseudomonas.s__Pseudomonas_aeruginosa	20.5663856791
+UniRef50_Q7MPS3: Formamidopyrimidine-DNA glycosylase	20.5650152209
+UniRef50_Q7MPS3: Formamidopyrimidine-DNA glycosylase|g__Escherichia.s__Escherichia_coli	20.4970816924
+UniRef50_Q7MPS3: Formamidopyrimidine-DNA glycosylase|unclassified	0.0679335285
+UniRef50_B6V394	20.5634181950
+UniRef50_B6V394|g__Staphylococcus.s__Staphylococcus_aureus	18.7251829009
+UniRef50_B6V394|unclassified	1.8382352941
+UniRef50_A4FWA2: 50S ribosomal protein L18P	20.5607871292
+UniRef50_A4FWA2: 50S ribosomal protein L18P|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.5607871292
+UniRef50_R5LKI5	20.5605133763
+UniRef50_R5LKI5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.5605133763
+UniRef50_S1EU50: Trimethylamine-N-oxide reductase 2	20.5585914158
+UniRef50_S1EU50: Trimethylamine-N-oxide reductase 2|g__Escherichia.s__Escherichia_coli	20.5585914158
+UniRef50_P11072: Bacteriophage T4 late gene expression-blocking protein	20.5579152737
+UniRef50_P11072: Bacteriophage T4 late gene expression-blocking protein|g__Escherichia.s__Escherichia_coli	20.5579152737
+UniRef50_A5UNJ9: ADP-ribosylglycohydrolase	20.5575719689
+UniRef50_A5UNJ9: ADP-ribosylglycohydrolase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.5575719689
+UniRef50_V5T594: Tail fiber assembly protein	20.5550922987
+UniRef50_V5T594: Tail fiber assembly protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	19.7272448079
+UniRef50_V5T594: Tail fiber assembly protein|unclassified	0.8278474908
+UniRef50_P77180	20.5517330440
+UniRef50_P77180|g__Escherichia.s__Escherichia_coli	20.5517330440
+UniRef50_P00363: Fumarate reductase flavoprotein subunit	20.5507492401
+UniRef50_P00363: Fumarate reductase flavoprotein subunit|g__Escherichia.s__Escherichia_coli	20.5507492401
+UniRef50_R9SHP9: Carbamoyl-phosphate synthase small chain	20.5476134424
+UniRef50_R9SHP9: Carbamoyl-phosphate synthase small chain|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.5476134424
+UniRef50_C9QQU6	20.5402345119
+UniRef50_C9QQU6|g__Escherichia.s__Escherichia_coli	18.6085447137
+UniRef50_C9QQU6|unclassified	1.9316897983
+UniRef50_B4U1T0: Transcriptional regulator	20.5343172111
+UniRef50_B4U1T0: Transcriptional regulator|g__Streptococcus.s__Streptococcus_agalactiae	20.5343172111
+UniRef50_C2PG39: GCN5-related N-acetyltransferase	20.5281533420
+UniRef50_C2PG39: GCN5-related N-acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	20.5281533420
+UniRef50_Q6GJF6: Dihydroneopterin aldolase	20.5245409403
+UniRef50_Q6GJF6: Dihydroneopterin aldolase|g__Staphylococcus.s__Staphylococcus_epidermidis	14.4433818487
+UniRef50_Q6GJF6: Dihydroneopterin aldolase|g__Staphylococcus.s__Staphylococcus_aureus	5.9806273883
+UniRef50_Q6GJF6: Dihydroneopterin aldolase|unclassified	0.1005317033
+UniRef50_P55140: UPF0603 protein YgcG	20.5222076556
+UniRef50_P55140: UPF0603 protein YgcG|g__Escherichia.s__Escherichia_coli	20.5222076556
+UniRef50_P77473: Putative cyclic-di-GMP phosphodiesterase YlaB	20.5205843742
+UniRef50_P77473: Putative cyclic-di-GMP phosphodiesterase YlaB|g__Escherichia.s__Escherichia_coli	20.5205843742
+UniRef50_M2GKY0	20.5172567583
+UniRef50_M2GKY0|g__Streptococcus.s__Streptococcus_mutans	20.5172567583
+UniRef50_H8GZZ4: Peptide ABC transporter, permease protein	20.5156336660
+UniRef50_H8GZZ4: Peptide ABC transporter, permease protein|g__Deinococcus.s__Deinococcus_radiodurans	20.5156336660
+UniRef50_Q9KXU5: 60 kDa chaperonin 2	20.5038675603
+UniRef50_Q9KXU5: 60 kDa chaperonin 2|g__Escherichia.s__Escherichia_coli	20.5038675603
+UniRef50_UPI000262D9D9: ABC transporter ATP-binding protein, partial	20.5017683094
+UniRef50_UPI000262D9D9: ABC transporter ATP-binding protein, partial|unclassified	20.5017683094
+UniRef50_P76241	20.5012971990
+UniRef50_P76241|g__Escherichia.s__Escherichia_coli	20.5012971990
+UniRef50_P0ACZ6: Positive transcription regulator EvgA	20.4951031007
+UniRef50_P0ACZ6: Positive transcription regulator EvgA|g__Escherichia.s__Escherichia_coli	20.4951031007
+UniRef50_Q2NQZ7: Glutamate racemase	20.4909353705
+UniRef50_Q2NQZ7: Glutamate racemase|g__Escherichia.s__Escherichia_coli	20.4909353705
+UniRef50_D3E1H4: TrkA domain-containing protein	20.4852638428
+UniRef50_D3E1H4: TrkA domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.4852638428
+UniRef50_K8M5I2	20.4844041089
+UniRef50_K8M5I2|unclassified	20.4844041089
+UniRef50_Q1BN64: Methylmalonate-semialdehyde dehydrogenase (Acylating)	20.4839527010
+UniRef50_Q1BN64: Methylmalonate-semialdehyde dehydrogenase (Acylating)|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.4839527010
+UniRef50_P45570: Inner membrane protein YbcI	20.4825238232
+UniRef50_P45570: Inner membrane protein YbcI|g__Escherichia.s__Escherichia_coli	20.4825238232
+UniRef50_P0AD04: Inner membrane protein YebS	20.4715140412
+UniRef50_P0AD04: Inner membrane protein YebS|g__Escherichia.s__Escherichia_coli	20.4715140412
+UniRef50_A5F2S7: Electron transport complex subunit E	20.4656566649
+UniRef50_A5F2S7: Electron transport complex subunit E|g__Escherichia.s__Escherichia_coli	17.9146362567
+UniRef50_A5F2S7: Electron transport complex subunit E|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5510204082
+UniRef50_C6STS8	20.4608758892
+UniRef50_C6STS8|g__Streptococcus.s__Streptococcus_mutans	20.4608758892
+UniRef50_P46890	20.4586654608
+UniRef50_P46890|g__Escherichia.s__Escherichia_coli	20.4586654608
+UniRef50_E2XAD4: Inner membrane transporter ybgH	20.4548119954
+UniRef50_E2XAD4: Inner membrane transporter ybgH|g__Escherichia.s__Escherichia_coli	20.4548119954
+UniRef50_P31435: Inner membrane symporter YicJ	20.4486278790
+UniRef50_P31435: Inner membrane symporter YicJ|g__Escherichia.s__Escherichia_coli	20.4486278790
+UniRef50_Q9P9X3	20.4461674176
+UniRef50_Q9P9X3|g__Pseudomonas.s__Pseudomonas_aeruginosa	20.4461674176
+UniRef50_O26153: Isopentenyl phosphate kinase	20.4416621100
+UniRef50_O26153: Isopentenyl phosphate kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.4416621100
+UniRef50_P00811: Beta-lactamase	20.4367058200
+UniRef50_P00811: Beta-lactamase|g__Escherichia.s__Escherichia_coli	19.1603530623
+UniRef50_P00811: Beta-lactamase|unclassified	1.2763527577
+UniRef50_Q83Q08: Stringent starvation protein B	20.4346279873
+UniRef50_Q83Q08: Stringent starvation protein B|g__Escherichia.s__Escherichia_coli	20.4346279873
+UniRef50_B8EL88: Regulatory protein ArsR	20.4341860530
+UniRef50_B8EL88: Regulatory protein ArsR|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.4341860530
+UniRef50_Q8ZLB5: Cellulose biosynthesis protein BcsE	20.4298715040
+UniRef50_Q8ZLB5: Cellulose biosynthesis protein BcsE|g__Escherichia.s__Escherichia_coli	20.4298715040
+UniRef50_B7VBK0	20.4292854111
+UniRef50_B7VBK0|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.7926242000
+UniRef50_B7VBK0|unclassified	1.6366612111
+UniRef50_A4X015	20.4166245938
+UniRef50_A4X015|unclassified	20.4166245938
+UniRef50_D3E0F2: Metallo-beta-lactamase superfamily protein	20.4116726914
+UniRef50_D3E0F2: Metallo-beta-lactamase superfamily protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.4116726914
+UniRef50_B7UTB5: Putative multidrug resistance protein MdtD	20.4086831997
+UniRef50_B7UTB5: Putative multidrug resistance protein MdtD|g__Escherichia.s__Escherichia_coli	20.4086831997
+UniRef50_H4G3J3	20.4081632653
+UniRef50_H4G3J3|g__Staphylococcus.s__Staphylococcus_aureus	20.4081632653
+UniRef50_J0KYC7	20.4081632653
+UniRef50_J0KYC7|g__Staphylococcus.s__Staphylococcus_aureus	20.4081632653
+UniRef50_Q7CJM5: Outer membrane protein assembly factor BamB	20.4043287278
+UniRef50_Q7CJM5: Outer membrane protein assembly factor BamB|g__Escherichia.s__Escherichia_coli	20.4043287278
+UniRef50_P77726: Inner membrane transport protein YajR	20.3908450334
+UniRef50_P77726: Inner membrane transport protein YajR|g__Escherichia.s__Escherichia_coli	20.3908450334
+UniRef50_UPI0003B4AB96: resolvase, partial	20.3902902387
+UniRef50_UPI0003B4AB96: resolvase, partial|unclassified	20.3902902387
+UniRef50_A4WPQ5: Periplasmic protein thiol--disulphide oxidoreductase DsbE	20.3845799207
+UniRef50_A4WPQ5: Periplasmic protein thiol--disulphide oxidoreductase DsbE|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.3845799207
+UniRef50_Q3J1B2	20.3716969968
+UniRef50_Q3J1B2|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.3716969968
+UniRef50_A5IS43	20.3684036847
+UniRef50_A5IS43|g__Staphylococcus.s__Staphylococcus_aureus	20.3684036847
+UniRef50_P0AB36	20.3615158021
+UniRef50_P0AB36|g__Escherichia.s__Escherichia_coli	20.3615158021
+UniRef50_P76230: Putative metabolite transport protein YdjK	20.3588450356
+UniRef50_P76230: Putative metabolite transport protein YdjK|g__Escherichia.s__Escherichia_coli	20.3588450356
+UniRef50_W6BAL6: Glutathione S-transferase, N-terminal domain protein	20.3558307517
+UniRef50_W6BAL6: Glutathione S-transferase, N-terminal domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.3558307517
+UniRef50_P32675: Pyruvate formate-lyase 2-activating enzyme	20.3536013456
+UniRef50_P32675: Pyruvate formate-lyase 2-activating enzyme|g__Escherichia.s__Escherichia_coli	20.3536013456
+UniRef50_Q5HN54: UPF0435 protein SERP1418	20.3494558557
+UniRef50_Q5HN54: UPF0435 protein SERP1418|g__Staphylococcus.s__Staphylococcus_aureus	15.4950869237
+UniRef50_Q5HN54: UPF0435 protein SERP1418|g__Staphylococcus.s__Staphylococcus_epidermidis	4.8543689320
+UniRef50_Q89AB7: UPF0056 membrane protein bbp_399	20.3431968018
+UniRef50_Q89AB7: UPF0056 membrane protein bbp_399|g__Escherichia.s__Escherichia_coli	20.3431968018
+UniRef50_A5UJG2: Coenzyme F420-reducing hydrogenase, beta subunit	20.3428981285
+UniRef50_A5UJG2: Coenzyme F420-reducing hydrogenase, beta subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.3428981285
+UniRef50_D2ZNU3	20.3379853676
+UniRef50_D2ZNU3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.3379853676
+UniRef50_Q87VK2: 23S rRNA (guanosine-2'-O-)-methyltransferase RlmB	20.3377944458
+UniRef50_Q87VK2: 23S rRNA (guanosine-2'-O-)-methyltransferase RlmB|g__Escherichia.s__Escherichia_coli	20.3377944458
+UniRef50_Q3J2Y8: Acyltransferase domain (LPS)	20.3371105650
+UniRef50_Q3J2Y8: Acyltransferase domain (LPS)|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.3371105650
+UniRef50_O26273: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	20.3370035541
+UniRef50_O26273: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.3370035541
+UniRef50_P45537	20.3350361534
+UniRef50_P45537|g__Escherichia.s__Escherichia_coli	20.3350361534
+UniRef50_P0ADY0: Ribosomal RNA small subunit methyltransferase D	20.3339700101
+UniRef50_P0ADY0: Ribosomal RNA small subunit methyltransferase D|g__Escherichia.s__Escherichia_coli	20.3339700101
+UniRef50_A6V7Z0: Ureidoglycolate lyase	20.3322281275
+UniRef50_A6V7Z0: Ureidoglycolate lyase|g__Pseudomonas.s__Pseudomonas_aeruginosa	19.9633699634
+UniRef50_A6V7Z0: Ureidoglycolate lyase|unclassified	0.3688581641
+UniRef50_P24520: Nicotinamide riboside transporter PnuC	20.3245069874
+UniRef50_P24520: Nicotinamide riboside transporter PnuC|g__Escherichia.s__Escherichia_coli	20.3245069874
+UniRef50_A5UJE9: Predicted ATPase	20.3239199035
+UniRef50_A5UJE9: Predicted ATPase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.3239199035
+UniRef50_Q3J6E0	20.3183998873
+UniRef50_Q3J6E0|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.3183998873
+UniRef50_A1WG08: Binding-protein-dependent transport systems inner membrane component	20.3034906040
+UniRef50_A1WG08: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.3034906040
+UniRef50_D3SBH7: TRAP transporter, 4TM/12TM fusion protein	20.3013464313
+UniRef50_D3SBH7: TRAP transporter, 4TM/12TM fusion protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.3013464313
+UniRef50_A5UJ58: Adhesin-like protein	20.2992319774
+UniRef50_A5UJ58: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.2992319774
+UniRef50_A7ZTW7: HTH-type transcriptional regulator HdfR	20.2968388690
+UniRef50_A7ZTW7: HTH-type transcriptional regulator HdfR|g__Escherichia.s__Escherichia_coli	20.2968388690
+UniRef50_J7R4C4	20.2965148946
+UniRef50_J7R4C4|g__Escherichia.s__Escherichia_coli	19.3269155762
+UniRef50_J7R4C4|unclassified	0.9695993184
+UniRef50_A3PQ31	20.2962673099
+UniRef50_A3PQ31|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.9237992540
+UniRef50_A3PQ31|unclassified	5.3724680558
+UniRef50_P69832: Galactitol permease IIC component	20.2937238253
+UniRef50_P69832: Galactitol permease IIC component|g__Escherichia.s__Escherichia_coli	20.2937238253
+UniRef50_S5XYL7: Aldo/keto reductase	20.2931270268
+UniRef50_S5XYL7: Aldo/keto reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.2931270268
+UniRef50_H1Z450: AMP-dependent synthetase and ligase	20.2824914096
+UniRef50_H1Z450: AMP-dependent synthetase and ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.2824914096
+UniRef50_M9FMP3	20.2673293101
+UniRef50_M9FMP3|g__Escherichia.s__Escherichia_coli	18.8679245283
+UniRef50_M9FMP3|unclassified	1.3994047818
+UniRef50_Q3IW67	20.2669723619
+UniRef50_Q3IW67|unclassified	20.2669723619
+UniRef50_D4FP35	20.2656074757
+UniRef50_D4FP35|unclassified	14.3484477124
+UniRef50_D4FP35|g__Staphylococcus.s__Staphylococcus_epidermidis	5.9171597633
+UniRef50_C6SR58	20.2653570634
+UniRef50_C6SR58|g__Streptococcus.s__Streptococcus_mutans	20.2653570634
+UniRef50_Q8FBQ3: dTDP-fucosamine acetyltransferase	20.2648076248
+UniRef50_Q8FBQ3: dTDP-fucosamine acetyltransferase|g__Escherichia.s__Escherichia_coli	20.2648076248
+UniRef50_P33360: Putative osmoprotectant uptake system ATP-binding protein YehX	20.2605086796
+UniRef50_P33360: Putative osmoprotectant uptake system ATP-binding protein YehX|g__Escherichia.s__Escherichia_coli	20.2605086796
+UniRef50_Q57354: Putative GTP cyclohydrolase 1 type 2	20.2565158348
+UniRef50_Q57354: Putative GTP cyclohydrolase 1 type 2|g__Escherichia.s__Escherichia_coli	20.2565158348
+UniRef50_D3E0I7	20.2484092401
+UniRef50_D3E0I7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.2484092401
+UniRef50_C8NEG6: ABC transporter, substrate-binding protein, family 3	20.2475269277
+UniRef50_C8NEG6: ABC transporter, substrate-binding protein, family 3|g__Streptococcus.s__Streptococcus_mutans	20.2475269277
+UniRef50_P76042: Putative ABC transporter periplasmic-binding protein YcjN	20.2417499335
+UniRef50_P76042: Putative ABC transporter periplasmic-binding protein YcjN|g__Escherichia.s__Escherichia_coli	20.2417499335
+UniRef50_D3E1Z8: CobB/CobQ-like glutamine amidotransferase domain-containing protein	20.2403934463
+UniRef50_D3E1Z8: CobB/CobQ-like glutamine amidotransferase domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.2403934463
+UniRef50_P52276: Asparagine--tRNA ligase	20.2390389139
+UniRef50_P52276: Asparagine--tRNA ligase|g__Escherichia.s__Escherichia_coli	20.1441728947
+UniRef50_P52276: Asparagine--tRNA ligase|unclassified	0.0948660192
+UniRef50_P77608: 2-keto-4-pentenoate hydratase	20.2390176004
+UniRef50_P77608: 2-keto-4-pentenoate hydratase|g__Escherichia.s__Escherichia_coli	20.2390176004
+UniRef50_B1I797	20.2359734660
+UniRef50_B1I797|g__Streptococcus.s__Streptococcus_agalactiae	18.0845950493
+UniRef50_B1I797|unclassified	2.1513784167
+UniRef50_G8AI77	20.2321167151
+UniRef50_G8AI77|unclassified	20.2321167151
+UniRef50_P29018: ATP-binding/permease protein CydD	20.2241715329
+UniRef50_P29018: ATP-binding/permease protein CydD|g__Escherichia.s__Escherichia_coli	20.2241715329
+UniRef50_P0A2T6: cAMP-activated global transcriptional regulator CRP	20.2220952509
+UniRef50_P0A2T6: cAMP-activated global transcriptional regulator CRP|g__Escherichia.s__Escherichia_coli	20.2220952509
+UniRef50_O27097: 2-phospho-L-lactate transferase	20.2210019059
+UniRef50_O27097: 2-phospho-L-lactate transferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.2210019059
+UniRef50_P76350: Shikimate transporter	20.2110022553
+UniRef50_P76350: Shikimate transporter|g__Escherichia.s__Escherichia_coli	20.2110022553
+UniRef50_B9ADC4: CRISPR-associated endonuclease Cas1	20.2103683710
+UniRef50_B9ADC4: CRISPR-associated endonuclease Cas1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.2103683710
+UniRef50_P76082: 2,3-dehydroadipyl-CoA hydratase	20.2050158929
+UniRef50_P76082: 2,3-dehydroadipyl-CoA hydratase|g__Escherichia.s__Escherichia_coli	20.1342747870
+UniRef50_P76082: 2,3-dehydroadipyl-CoA hydratase|unclassified	0.0707411060
+UniRef50_P75849	20.2048060703
+UniRef50_P75849|g__Escherichia.s__Escherichia_coli	13.1580589593
+UniRef50_P75849|g__Acinetobacter.s__Acinetobacter_baumannii	7.0467471110
+UniRef50_G4NYU6: Transcriptional regulator, PadR family	20.2042253905
+UniRef50_G4NYU6: Transcriptional regulator, PadR family|g__Staphylococcus.s__Staphylococcus_epidermidis	17.8070229235
+UniRef50_G4NYU6: Transcriptional regulator, PadR family|unclassified	2.3972024670
+UniRef50_P45600: HTH-type transcriptional regulator CysB	20.2040582270
+UniRef50_P45600: HTH-type transcriptional regulator CysB|g__Escherichia.s__Escherichia_coli	13.1762474194
+UniRef50_P45600: HTH-type transcriptional regulator CysB|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0278108076
+UniRef50_Q2NHM6: MapA	20.2040434214
+UniRef50_Q2NHM6: MapA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.2040434214
+UniRef50_Q466I1: DNA-3-methyladenine glycosylase III	20.2036855516
+UniRef50_Q466I1: DNA-3-methyladenine glycosylase III|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.2036855516
+UniRef50_Q8CS06	20.1979654230
+UniRef50_Q8CS06|g__Staphylococcus.s__Staphylococcus_epidermidis	20.1979654230
+UniRef50_P0ACA2	20.1974781425
+UniRef50_P0ACA2|g__Escherichia.s__Escherichia_coli	20.1974781425
+UniRef50_Q49ZY7	20.1944460943
+UniRef50_Q49ZY7|g__Staphylococcus.s__Staphylococcus_epidermidis	20.1944460943
+UniRef50_Q1R4J7	20.1939197487
+UniRef50_Q1R4J7|g__Escherichia.s__Escherichia_coli	20.1939197487
+UniRef50_P07654: Phosphate transport system permease protein PstA	20.1923478626
+UniRef50_P07654: Phosphate transport system permease protein PstA|g__Escherichia.s__Escherichia_coli	20.1923478626
+UniRef50_O06005: Amino-acid permease AapA	20.1922880228
+UniRef50_O06005: Amino-acid permease AapA|g__Escherichia.s__Escherichia_coli	12.7059485501
+UniRef50_O06005: Amino-acid permease AapA|g__Propionibacterium.s__Propionibacterium_acnes	7.4863394727
+UniRef50_D3E1C7: Xylose isomerase-like TIM barrel domain-containing protein	20.1898613090
+UniRef50_D3E1C7: Xylose isomerase-like TIM barrel domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.1898613090
+UniRef50_P06136: Cell division protein FtsQ	20.1849858184
+UniRef50_P06136: Cell division protein FtsQ|g__Escherichia.s__Escherichia_coli	20.1849858184
+UniRef50_B9KL86	20.1768341051
+UniRef50_B9KL86|unclassified	20.1768341051
+UniRef50_E1HJW0: Pertactin (Fragment)	20.1750674940
+UniRef50_E1HJW0: Pertactin (Fragment)|g__Escherichia.s__Escherichia_coli	20.1750674940
+UniRef50_A2XBC4	20.1750441946
+UniRef50_A2XBC4|g__Escherichia.s__Escherichia_coli	20.1750441946
+UniRef50_P16429: Formate hydrogenlyase subunit 3	20.1687584812
+UniRef50_P16429: Formate hydrogenlyase subunit 3|g__Escherichia.s__Escherichia_coli	20.1687584812
+UniRef50_C4ZXQ4: Purine ribonucleoside efflux pump NepI	20.1623517440
+UniRef50_C4ZXQ4: Purine ribonucleoside efflux pump NepI|g__Escherichia.s__Escherichia_coli	20.1623517440
+UniRef50_Q28UP9: Periplasmic sensor signal transduction histidine kinase	20.1593914770
+UniRef50_Q28UP9: Periplasmic sensor signal transduction histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.1593914770
+UniRef50_F8HCE7	20.1580794830
+UniRef50_F8HCE7|g__Streptococcus.s__Streptococcus_mutans	19.3750946771
+UniRef50_F8HCE7|unclassified	0.7829848058
+UniRef50_Q8X958	20.1551538344
+UniRef50_Q8X958|g__Escherichia.s__Escherichia_coli	20.1551538344
+UniRef50_A6LWR1	20.1528816580
+UniRef50_A6LWR1|g__Clostridium.s__Clostridium_beijerinckii	20.1528816580
+UniRef50_A6LZN3: Hydrogenase accessory protein HypB	20.1465771522
+UniRef50_A6LZN3: Hydrogenase accessory protein HypB|g__Clostridium.s__Clostridium_beijerinckii	20.1465771522
+UniRef50_P39370: Probable 9-O-acetyl-N-acetylneuraminic acid deacetylase	20.1445105803
+UniRef50_P39370: Probable 9-O-acetyl-N-acetylneuraminic acid deacetylase|g__Escherichia.s__Escherichia_coli	20.1445105803
+UniRef50_F6D286: Glycosyl transferase family 2	20.1396728508
+UniRef50_F6D286: Glycosyl transferase family 2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.1396728508
+UniRef50_P0ACJ2: Leucine-responsive regulatory protein	20.1347462827
+UniRef50_P0ACJ2: Leucine-responsive regulatory protein|g__Escherichia.s__Escherichia_coli	20.1347462827
+UniRef50_N0AZ28: Short chain acyl-CoA synthetase	20.1328196712
+UniRef50_N0AZ28: Short chain acyl-CoA synthetase|g__Escherichia.s__Escherichia_coli	20.1328196712
+UniRef50_C6STX1	20.1246707539
+UniRef50_C6STX1|g__Streptococcus.s__Streptococcus_mutans	19.8613280343
+UniRef50_C6STX1|unclassified	0.2633427196
+UniRef50_Q8KA76: RNA polymerase sigma factor RpoH	20.1236915188
+UniRef50_Q8KA76: RNA polymerase sigma factor RpoH|g__Escherichia.s__Escherichia_coli	20.1236915188
+UniRef50_M9R6R0: N-formylglutamate amidohydrolase	20.1235716662
+UniRef50_M9R6R0: N-formylglutamate amidohydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.1235716662
+UniRef50_Q99ZV9: CRISPR-associated protein Csn2	20.1148570097
+UniRef50_Q99ZV9: CRISPR-associated protein Csn2|g__Streptococcus.s__Streptococcus_mutans	17.8053881875
+UniRef50_Q99ZV9: CRISPR-associated protein Csn2|g__Streptococcus.s__Streptococcus_agalactiae	2.3094688222
+UniRef50_B7LN16: Ribosomal protein S6--L-glutamate ligase	20.1139993525
+UniRef50_B7LN16: Ribosomal protein S6--L-glutamate ligase|g__Escherichia.s__Escherichia_coli	19.9986770619
+UniRef50_B7LN16: Ribosomal protein S6--L-glutamate ligase|unclassified	0.1153222905
+UniRef50_A7FJL1: GTP cyclohydrolase 1	20.1117487629
+UniRef50_A7FJL1: GTP cyclohydrolase 1|g__Escherichia.s__Escherichia_coli	20.1117487629
+UniRef50_W8RT27: Cation transport protein chaC	20.1024055635
+UniRef50_W8RT27: Cation transport protein chaC|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.9366399059
+UniRef50_W8RT27: Cation transport protein chaC|unclassified	0.1657656576
+UniRef50_P45608: Phosphate regulon sensor protein PhoR	20.0915404875
+UniRef50_P45608: Phosphate regulon sensor protein PhoR|g__Escherichia.s__Escherichia_coli	20.0915404875
+UniRef50_A6VDI0	20.0894854586
+UniRef50_A6VDI0|unclassified	20.0894854586
+UniRef50_P0A9L8: Pyrroline-5-carboxylate reductase	20.0860882134
+UniRef50_P0A9L8: Pyrroline-5-carboxylate reductase|g__Escherichia.s__Escherichia_coli	19.5140945874
+UniRef50_P0A9L8: Pyrroline-5-carboxylate reductase|unclassified	0.5719936260
+UniRef50_A0KZ99: Ribosomal RNA large subunit methyltransferase M	20.0852773902
+UniRef50_A0KZ99: Ribosomal RNA large subunit methyltransferase M|g__Escherichia.s__Escherichia_coli	20.0109964358
+UniRef50_A0KZ99: Ribosomal RNA large subunit methyltransferase M|unclassified	0.0742809544
+UniRef50_Q98AP4: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifE	20.0842274462
+UniRef50_Q98AP4: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifE|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.0842274462
+UniRef50_K3CK98	20.0792115686
+UniRef50_K3CK98|g__Escherichia.s__Escherichia_coli	12.9870129870
+UniRef50_K3CK98|unclassified	7.0921985816
+UniRef50_A4WY56	20.0782370416
+UniRef50_A4WY56|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.0782370416
+UniRef50_P45549	20.0732410964
+UniRef50_P45549|g__Escherichia.s__Escherichia_coli	20.0732410964
+UniRef50_P64481: Inner membrane protein YdjM	20.0702607794
+UniRef50_P64481: Inner membrane protein YdjM|g__Escherichia.s__Escherichia_coli	20.0702607794
+UniRef50_Q5HNT4: Putative Holliday junction resolvase	20.0685745711
+UniRef50_Q5HNT4: Putative Holliday junction resolvase|g__Staphylococcus.s__Staphylococcus_epidermidis	9.5410711849
+UniRef50_Q5HNT4: Putative Holliday junction resolvase|g__Clostridium.s__Clostridium_beijerinckii	7.7604535790
+UniRef50_Q5HNT4: Putative Holliday junction resolvase|unclassified	2.7670498071
+UniRef50_A3PMY6: ABC transporter related	20.0670021429
+UniRef50_A3PMY6: ABC transporter related|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.0670021429
+UniRef50_B7MIH3: Glyoxylate/hydroxypyruvate reductase A	20.0608218560
+UniRef50_B7MIH3: Glyoxylate/hydroxypyruvate reductase A|g__Escherichia.s__Escherichia_coli	20.0608218560
+UniRef50_B9MJH4: Biotin synthase	20.0559756262
+UniRef50_B9MJH4: Biotin synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.3271767149
+UniRef50_B9MJH4: Biotin synthase|g__Acinetobacter.s__Acinetobacter_baumannii	6.4339214077
+UniRef50_B9MJH4: Biotin synthase|unclassified	0.2948775036
+UniRef50_A5UN78: Predicted O-linked GlcNAc transferase	20.0509539221
+UniRef50_A5UN78: Predicted O-linked GlcNAc transferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.0509539221
+UniRef50_O27918: Phosphopantetheine adenylyltransferase	20.0475251899
+UniRef50_O27918: Phosphopantetheine adenylyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.0475251899
+UniRef50_B7KTM9: Phage cell wall peptidase, NlpC/P60 family	20.0394077601
+UniRef50_B7KTM9: Phage cell wall peptidase, NlpC/P60 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	20.0394077601
+UniRef50_P25747	20.0391732463
+UniRef50_P25747|g__Escherichia.s__Escherichia_coli	20.0391732463
+UniRef50_P75925: Cytochrome b561 homolog 2	20.0386591609
+UniRef50_P75925: Cytochrome b561 homolog 2|g__Escherichia.s__Escherichia_coli	16.1841920364
+UniRef50_P75925: Cytochrome b561 homolog 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8544671245
+UniRef50_A6VED6	20.0320512821
+UniRef50_A6VED6|g__Pseudomonas.s__Pseudomonas_aeruginosa	20.0320512821
+UniRef50_B5F3A7: HTH-type transcriptional regulator UlaR	20.0239747835
+UniRef50_B5F3A7: HTH-type transcriptional regulator UlaR|g__Escherichia.s__Escherichia_coli	20.0239747835
+UniRef50_H4VN25: Glycosyl transferase 2 family protein	20.0202430809
+UniRef50_H4VN25: Glycosyl transferase 2 family protein|g__Escherichia.s__Escherichia_coli	20.0202430809
+UniRef50_P42601: Inner membrane protein alx	20.0173190061
+UniRef50_P42601: Inner membrane protein alx|g__Escherichia.s__Escherichia_coli	20.0173190061
+UniRef50_Q6HHL1	20.0072098053
+UniRef50_Q6HHL1|g__Staphylococcus.s__Staphylococcus_aureus	20.0072098053
+UniRef50_D9PWJ1: Phosphomethylpyrimidine kinase	20.0051455306
+UniRef50_D9PWJ1: Phosphomethylpyrimidine kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	20.0051455306
+UniRef50_A6LTT4	20.0000000000
+UniRef50_A6LTT4|g__Clostridium.s__Clostridium_beijerinckii	20.0000000000
+UniRef50_W8ST66: Mannitol-1-phosphate 5-dehydrogenase	19.9999901487
+UniRef50_W8ST66: Mannitol-1-phosphate 5-dehydrogenase|g__Escherichia.s__Escherichia_coli	15.1515151515
+UniRef50_W8ST66: Mannitol-1-phosphate 5-dehydrogenase|unclassified	4.8484749971
+UniRef50_D3DZ41: Arginase/agmatinase family protein	19.9962901122
+UniRef50_D3DZ41: Arginase/agmatinase family protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.9962901122
+UniRef50_R7PXC4: Probable ribosomal RNA small subunit methyltransferase A	19.9816001090
+UniRef50_R7PXC4: Probable ribosomal RNA small subunit methyltransferase A|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.9816001090
+UniRef50_U2YKU9: Penicillin-binding protein 2	19.9807037079
+UniRef50_U2YKU9: Penicillin-binding protein 2|unclassified	19.9807037079
+UniRef50_P0A1U3	19.9750572110
+UniRef50_P0A1U3|g__Escherichia.s__Escherichia_coli	19.9750572110
+UniRef50_P0AEP8: Glyoxylate carboligase	19.9744250210
+UniRef50_P0AEP8: Glyoxylate carboligase|g__Escherichia.s__Escherichia_coli	15.3364853545
+UniRef50_P0AEP8: Glyoxylate carboligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6379396665
+UniRef50_Q6LV34: RNA polymerase-associated protein RapA	19.9717843642
+UniRef50_Q6LV34: RNA polymerase-associated protein RapA|g__Escherichia.s__Escherichia_coli	19.9717843642
+UniRef50_A1AZK3: Peptidoglycan glycosyltransferase	19.9661985601
+UniRef50_A1AZK3: Peptidoglycan glycosyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.9661985601
+UniRef50_A5UMP7: Fuculose-1-phosphate aldolase, class II aldolase/adducin family	19.9603568043
+UniRef50_A5UMP7: Fuculose-1-phosphate aldolase, class II aldolase/adducin family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.9603568043
+UniRef50_W8UFB1: Flavodoxin	19.9440183275
+UniRef50_W8UFB1: Flavodoxin|g__Escherichia.s__Escherichia_coli	19.9440183275
+UniRef50_M2E237: Putative reductase	19.9433429244
+UniRef50_M2E237: Putative reductase|g__Streptococcus.s__Streptococcus_mutans	19.9433429244
+UniRef50_P58403: Protein YfdX	19.9420603775
+UniRef50_P58403: Protein YfdX|g__Escherichia.s__Escherichia_coli	19.9420603775
+UniRef50_P69854: Tat proofreading chaperone DmsD	19.9360986282
+UniRef50_P69854: Tat proofreading chaperone DmsD|g__Escherichia.s__Escherichia_coli	19.9360986282
+UniRef50_B5F4E2: Fatty acid metabolism regulator protein	19.9282439243
+UniRef50_B5F4E2: Fatty acid metabolism regulator protein|g__Escherichia.s__Escherichia_coli	19.9282439243
+UniRef50_P75747: Protein AbrB	19.9242005663
+UniRef50_P75747: Protein AbrB|g__Escherichia.s__Escherichia_coli	19.9242005663
+UniRef50_P21112: Methyl-coenzyme M reductase II subunit gamma	19.9236111162
+UniRef50_P21112: Methyl-coenzyme M reductase II subunit gamma|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.9236111162
+UniRef50_A1JIY2: UPF0597 protein YE0448	19.9230482141
+UniRef50_A1JIY2: UPF0597 protein YE0448|g__Escherichia.s__Escherichia_coli	19.9230482141
+UniRef50_D3E0N8: Dolichol kinase	19.9186019648
+UniRef50_D3E0N8: Dolichol kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.9186019648
+UniRef50_Q9CIV7: PTS-dependent dihydroxyacetone kinase, ADP-binding subunit DhaL	19.9178916620
+UniRef50_Q9CIV7: PTS-dependent dihydroxyacetone kinase, ADP-binding subunit DhaL|g__Streptococcus.s__Streptococcus_agalactiae	19.8573136431
+UniRef50_Q9CIV7: PTS-dependent dihydroxyacetone kinase, ADP-binding subunit DhaL|unclassified	0.0605780189
+UniRef50_P0AE25: Arabinose-proton symporter	19.9162968614
+UniRef50_P0AE25: Arabinose-proton symporter|g__Escherichia.s__Escherichia_coli	19.9162968614
+UniRef50_P76561: Esterase YpfH	19.9114653474
+UniRef50_P76561: Esterase YpfH|g__Escherichia.s__Escherichia_coli	19.9114653474
+UniRef50_A3PGV3	19.9098099871
+UniRef50_A3PGV3|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.1338909480
+UniRef50_A3PGV3|unclassified	2.7759190391
+UniRef50_Q46U36: Nucleoside ABC transporter membrane protein	19.9044590466
+UniRef50_Q46U36: Nucleoside ABC transporter membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.9044590466
+UniRef50_Q3IWS0: TRAP-T family transporter, periplasmic binding protein	19.8941357177
+UniRef50_Q3IWS0: TRAP-T family transporter, periplasmic binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.8941357177
+UniRef50_I0C7S7	19.8890194389
+UniRef50_I0C7S7|g__Staphylococcus.s__Staphylococcus_aureus	19.8890194389
+UniRef50_UPI0002558939: TadC family type II/IV secretion system protein, partial	19.8840993544
+UniRef50_UPI0002558939: TadC family type II/IV secretion system protein, partial|unclassified	19.8840993544
+UniRef50_P08179: Phosphoribosylglycinamide formyltransferase	19.8839407896
+UniRef50_P08179: Phosphoribosylglycinamide formyltransferase|g__Escherichia.s__Escherichia_coli	19.5260198511
+UniRef50_P08179: Phosphoribosylglycinamide formyltransferase|unclassified	0.3579209386
+UniRef50_R4RQ23	19.8711359447
+UniRef50_R4RQ23|g__Pseudomonas.s__Pseudomonas_aeruginosa	19.8711359447
+UniRef50_Q9R3J0: Transposase, putative	19.8695271181
+UniRef50_Q9R3J0: Transposase, putative|g__Deinococcus.s__Deinococcus_radiodurans	19.8695271181
+UniRef50_V4Z1C0	19.8693041328
+UniRef50_V4Z1C0|g__Streptococcus.s__Streptococcus_mutans	19.8693041328
+UniRef50_A5UNH0	19.8671137503
+UniRef50_A5UNH0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.0715688021
+UniRef50_A5UNH0|unclassified	0.7955449483
+UniRef50_P31660: 2-methylcitrate synthase	19.8650095140
+UniRef50_P31660: 2-methylcitrate synthase|g__Escherichia.s__Escherichia_coli	18.0077708953
+UniRef50_P31660: 2-methylcitrate synthase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3793103448
+UniRef50_P31660: 2-methylcitrate synthase|unclassified	0.4779282739
+UniRef50_F6D1L5: Xylose isomerase domain-containing protein TIM barrel	19.8617008154
+UniRef50_F6D1L5: Xylose isomerase domain-containing protein TIM barrel|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.8617008154
+UniRef50_P39353	19.8574430742
+UniRef50_P39353|g__Escherichia.s__Escherichia_coli	19.8574430742
+UniRef50_Q8CPE0: Integrase XerD family protein	19.8531711506
+UniRef50_Q8CPE0: Integrase XerD family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	19.8531711506
+UniRef50_Q5HQN6	19.8529996492
+UniRef50_Q5HQN6|g__Staphylococcus.s__Staphylococcus_epidermidis	19.8529996492
+UniRef50_L1K7B5	19.8344307238
+UniRef50_L1K7B5|unclassified	19.8344307238
+UniRef50_A5F649: Glutamate--tRNA ligase	19.8317074257
+UniRef50_A5F649: Glutamate--tRNA ligase|g__Escherichia.s__Escherichia_coli	19.6338521497
+UniRef50_A5F649: Glutamate--tRNA ligase|unclassified	0.1978552759
+UniRef50_R9SMN4: 2-phosphosulfolactate phosphatase ComB	19.8279458094
+UniRef50_R9SMN4: 2-phosphosulfolactate phosphatase ComB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.8279458094
+UniRef50_A5UKW4: Dihydrolipoamide dehydrogenase	19.8245678647
+UniRef50_A5UKW4: Dihydrolipoamide dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.8245678647
+UniRef50_A0A029IUD7: Major Facilitator Superfamily protein	19.8245660226
+UniRef50_A0A029IUD7: Major Facilitator Superfamily protein|g__Escherichia.s__Escherichia_coli	19.8245660226
+UniRef50_C6SP66	19.8198912125
+UniRef50_C6SP66|g__Streptococcus.s__Streptococcus_mutans	19.8198912125
+UniRef50_Q7N475: UPF0259 membrane protein plu2479	19.8192360914
+UniRef50_Q7N475: UPF0259 membrane protein plu2479|g__Escherichia.s__Escherichia_coli	19.8192360914
+UniRef50_U3STI1: GntR family transcriptional regulator	19.8189893283
+UniRef50_U3STI1: GntR family transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	19.8189893283
+UniRef50_E6MWH5	19.8097479651
+UniRef50_E6MWH5|g__Neisseria.s__Neisseria_meningitidis	19.8097479651
+UniRef50_I2WAD1: Pertactin	19.8031336712
+UniRef50_I2WAD1: Pertactin|g__Escherichia.s__Escherichia_coli	19.8031336712
+UniRef50_A0A010R931	19.8019801980
+UniRef50_A0A010R931|unclassified	19.8019801980
+UniRef50_M2GKU0	19.8019801980
+UniRef50_M2GKU0|g__Streptococcus.s__Streptococcus_mutans	19.8019801980
+UniRef50_Q8Z591: Multiphosphoryl transfer protein	19.8002477211
+UniRef50_Q8Z591: Multiphosphoryl transfer protein|g__Escherichia.s__Escherichia_coli	19.8002477211
+UniRef50_P75810: Inner membrane protein YbjJ	19.7974079967
+UniRef50_P75810: Inner membrane protein YbjJ|g__Escherichia.s__Escherichia_coli	19.7974079967
+UniRef50_Q8TYY5: Predicted pyridoxal-phosphate-dependent enzyme apparently involved in regulation of cell wall biogenesis	19.7914480380
+UniRef50_Q8TYY5: Predicted pyridoxal-phosphate-dependent enzyme apparently involved in regulation of cell wall biogenesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.7914480380
+UniRef50_Q1GMI4: HTH-type transcriptional regulator BetI	19.7887747167
+UniRef50_Q1GMI4: HTH-type transcriptional regulator BetI|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.7887747167
+UniRef50_Y1DKJ6: Alpha-glucosidase yihQ	19.7832884135
+UniRef50_Y1DKJ6: Alpha-glucosidase yihQ|g__Escherichia.s__Escherichia_coli	19.7832884135
+UniRef50_A3PLS6: Nitrogenase molybdenum-iron cofactor biosynthesis protein NifN	19.7819040030
+UniRef50_A3PLS6: Nitrogenase molybdenum-iron cofactor biosynthesis protein NifN|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.7819040030
+UniRef50_O26979: Probable tyrosine recombinase XerC-like	19.7803614847
+UniRef50_O26979: Probable tyrosine recombinase XerC-like|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.7803614847
+UniRef50_L0KF64: Cu(I)-responsive transcriptional regulator	19.7766983994
+UniRef50_L0KF64: Cu(I)-responsive transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.7766983994
+UniRef50_D8E3X9	19.7758921569
+UniRef50_D8E3X9|unclassified	19.7758921569
+UniRef50_P58388: 3-mercaptopyruvate sulfurtransferase	19.7731971317
+UniRef50_P58388: 3-mercaptopyruvate sulfurtransferase|g__Escherichia.s__Escherichia_coli	19.1707436030
+UniRef50_P58388: 3-mercaptopyruvate sulfurtransferase|unclassified	0.6024535287
+UniRef50_L0DUT4	19.7714342714
+UniRef50_L0DUT4|unclassified	19.7714342714
+UniRef50_Q5PJK8: sn-glycerol-3-phosphate-binding periplasmic protein UgpB	19.7679290927
+UniRef50_Q5PJK8: sn-glycerol-3-phosphate-binding periplasmic protein UgpB|g__Escherichia.s__Escherichia_coli	19.7679290927
+UniRef50_D7A8N8	19.7617204415
+UniRef50_D7A8N8|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.7617204415
+UniRef50_U3SUV7	19.7579252186
+UniRef50_U3SUV7|g__Streptococcus.s__Streptococcus_mutans	19.7579252186
+UniRef50_R9SJY3	19.7543433564
+UniRef50_R9SJY3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.7543433564
+UniRef50_A3PIC8: GumN family protein	19.7506082337
+UniRef50_A3PIC8: GumN family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.7281676702
+UniRef50_A3PIC8: GumN family protein|unclassified	3.0224405635
+UniRef50_P06846: HTH-type transcriptional regulator EbgR	19.7497743187
+UniRef50_P06846: HTH-type transcriptional regulator EbgR|g__Escherichia.s__Escherichia_coli	19.7497743187
+UniRef50_D7AAI4: Peptidyl-prolyl cis-trans isomerase	19.7490541832
+UniRef50_D7AAI4: Peptidyl-prolyl cis-trans isomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.7490541832
+UniRef50_P45468: UPF0718 protein YraQ	19.7429275586
+UniRef50_P45468: UPF0718 protein YraQ|g__Escherichia.s__Escherichia_coli	19.7429275586
+UniRef50_Q5JIZ8: 4-phosphopantoate--beta-alanine ligase	19.7423912321
+UniRef50_Q5JIZ8: 4-phosphopantoate--beta-alanine ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.7423912321
+UniRef50_P46448: Formate dehydrogenase major subunit	19.7410415253
+UniRef50_P46448: Formate dehydrogenase major subunit|g__Escherichia.s__Escherichia_coli	19.7410415253
+UniRef50_P0AGJ6	19.7407807432
+UniRef50_P0AGJ6|g__Escherichia.s__Escherichia_coli	19.7407807432
+UniRef50_B7N3G5: Putative aminoacrylate hydrolase RutD	19.7387368074
+UniRef50_B7N3G5: Putative aminoacrylate hydrolase RutD|g__Escherichia.s__Escherichia_coli	19.6744027539
+UniRef50_B7N3G5: Putative aminoacrylate hydrolase RutD|unclassified	0.0643340535
+UniRef50_B4U1Q9: CRISPR-associated endoribonuclease Cas2	19.7345359458
+UniRef50_B4U1Q9: CRISPR-associated endoribonuclease Cas2|g__Streptococcus.s__Streptococcus_mutans	19.7345359458
+UniRef50_K0C7J8: Glutathione S-transferase domain protein	19.7301568177
+UniRef50_K0C7J8: Glutathione S-transferase domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	19.7301568177
+UniRef50_A5UP06	19.7151381225
+UniRef50_A5UP06|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.7151381225
+UniRef50_M9R9I4: Magnesium-chelatase	19.7138191048
+UniRef50_M9R9I4: Magnesium-chelatase|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.7138191048
+UniRef50_P33352	19.7136005582
+UniRef50_P33352|g__Escherichia.s__Escherichia_coli	19.7136005582
+UniRef50_L1KEZ0	19.7083872371
+UniRef50_L1KEZ0|unclassified	19.7083872371
+UniRef50_P76077: 1,2-phenylacetyl-CoA epoxidase, subunit A	19.7054919791
+UniRef50_P76077: 1,2-phenylacetyl-CoA epoxidase, subunit A|g__Escherichia.s__Escherichia_coli	19.7054919791
+UniRef50_P27242: Lipopolysaccharide 1,2-N-acetylglucosaminetransferase	19.7054720438
+UniRef50_P27242: Lipopolysaccharide 1,2-N-acetylglucosaminetransferase|g__Escherichia.s__Escherichia_coli	19.7054720438
+UniRef50_P25254	19.6991132780
+UniRef50_P25254|g__Pseudomonas.s__Pseudomonas_aeruginosa	19.6991132780
+UniRef50_P39410: Putative kinase YjjJ	19.6976706731
+UniRef50_P39410: Putative kinase YjjJ|g__Escherichia.s__Escherichia_coli	19.6976706731
+UniRef50_A5UMU4: Glycosyltransferase (Glycogen phosphorylase), GT1 family	19.6946809687
+UniRef50_A5UMU4: Glycosyltransferase (Glycogen phosphorylase), GT1 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.6946809687
+UniRef50_A1B9D8: ABC transporter related protein	19.6925420792
+UniRef50_A1B9D8: ABC transporter related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.6925420792
+UniRef50_P45524: Putative esterase YheT	19.6845688234
+UniRef50_P45524: Putative esterase YheT|g__Escherichia.s__Escherichia_coli	19.6845688234
+UniRef50_A3PRJ1	19.6803709074
+UniRef50_A3PRJ1|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.0820470032
+UniRef50_A3PRJ1|unclassified	9.5983239042
+UniRef50_A0A008L098	19.6791445617
+UniRef50_A0A008L098|g__Staphylococcus.s__Staphylococcus_aureus	16.6666666667
+UniRef50_A0A008L098|unclassified	3.0124778951
+UniRef50_R5KLH4	19.6787416405
+UniRef50_R5KLH4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.6787416405
+UniRef50_P08192: Bifunctional protein FolC	19.6717054549
+UniRef50_P08192: Bifunctional protein FolC|g__Escherichia.s__Escherichia_coli	19.6214747371
+UniRef50_P08192: Bifunctional protein FolC|unclassified	0.0502307178
+UniRef50_V9WPS8: Amino acid/amide ABC transporter membrane protein 1, HAAT family	19.6681053514
+UniRef50_V9WPS8: Amino acid/amide ABC transporter membrane protein 1, HAAT family|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.6681053514
+UniRef50_Q4L3E5: UPF0213 protein SH2523	19.6506846456
+UniRef50_Q4L3E5: UPF0213 protein SH2523|g__Staphylococcus.s__Staphylococcus_epidermidis	19.6506846456
+UniRef50_A9MFF7	19.6478075090
+UniRef50_A9MFF7|g__Escherichia.s__Escherichia_coli	19.6478075090
+UniRef50_P76015: PTS-dependent dihydroxyacetone kinase, dihydroxyacetone-binding subunit DhaK	19.6466278419
+UniRef50_P76015: PTS-dependent dihydroxyacetone kinase, dihydroxyacetone-binding subunit DhaK|g__Escherichia.s__Escherichia_coli	19.4466667631
+UniRef50_P76015: PTS-dependent dihydroxyacetone kinase, dihydroxyacetone-binding subunit DhaK|unclassified	0.1999610788
+UniRef50_Q3J376: Phosphate import ATP-binding protein PstB	19.6465736275
+UniRef50_Q3J376: Phosphate import ATP-binding protein PstB|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.3256899575
+UniRef50_Q3J376: Phosphate import ATP-binding protein PstB|unclassified	0.3208836699
+UniRef50_B7LM74: Undecaprenyl phosphate-alpha-4-amino-4-deoxy-L-arabinose arabinosyl transferase	19.6446024372
+UniRef50_B7LM74: Undecaprenyl phosphate-alpha-4-amino-4-deoxy-L-arabinose arabinosyl transferase|g__Escherichia.s__Escherichia_coli	19.6446024372
+UniRef50_Q8FK51: Carbamate kinase	19.6439347452
+UniRef50_Q8FK51: Carbamate kinase|g__Escherichia.s__Escherichia_coli	18.4800238356
+UniRef50_Q8FK51: Carbamate kinase|unclassified	1.1639109096
+UniRef50_P36879	19.6431652715
+UniRef50_P36879|g__Escherichia.s__Escherichia_coli	19.6431652715
+UniRef50_P08395: Protease 4	19.6385214907
+UniRef50_P08395: Protease 4|g__Escherichia.s__Escherichia_coli	19.6385214907
+UniRef50_R8A9F1	19.6327187124
+UniRef50_R8A9F1|g__Staphylococcus.s__Staphylococcus_epidermidis	19.6327187124
+UniRef50_A6TBU8: L-rhamnonate dehydratase	19.6305211268
+UniRef50_A6TBU8: L-rhamnonate dehydratase|g__Escherichia.s__Escherichia_coli	19.6305211268
+UniRef50_P76103: Inner membrane protein YdcO	19.6298947158
+UniRef50_P76103: Inner membrane protein YdcO|g__Escherichia.s__Escherichia_coli	19.6298947158
+UniRef50_P67088: Ribosomal RNA small subunit methyltransferase I	19.6293847877
+UniRef50_P67088: Ribosomal RNA small subunit methyltransferase I|g__Escherichia.s__Escherichia_coli	17.0633278771
+UniRef50_P67088: Ribosomal RNA small subunit methyltransferase I|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5660569106
+UniRef50_V5XRZ5: Iron-sulfur (Fe-S) cluster formation protein IscU	19.6278930271
+UniRef50_V5XRZ5: Iron-sulfur (Fe-S) cluster formation protein IscU|g__Streptococcus.s__Streptococcus_mutans	19.6278930271
+UniRef50_O27507	19.6262451345
+UniRef50_O27507|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.6262451345
+UniRef50_Q9HXI4: Inositol-1-monophosphatase	19.6251678312
+UniRef50_Q9HXI4: Inositol-1-monophosphatase|g__Escherichia.s__Escherichia_coli	19.1755805151
+UniRef50_Q9HXI4: Inositol-1-monophosphatase|unclassified	0.4495873161
+UniRef50_A4FZ07: Nitroreductase	19.6231723629
+UniRef50_A4FZ07: Nitroreductase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.6231723629
+UniRef50_D4N0A6: Molybdenum ABC transporter, periplasmic molybdate-binding protein	19.6223259358
+UniRef50_D4N0A6: Molybdenum ABC transporter, periplasmic molybdate-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.6223259358
+UniRef50_I6TX91: Histidine kinase	19.6158591515
+UniRef50_I6TX91: Histidine kinase|g__Streptococcus.s__Streptococcus_mutans	19.6158591515
+UniRef50_D6SCI0	19.6123721015
+UniRef50_D6SCI0|g__Staphylococcus.s__Staphylococcus_aureus	17.7519379845
+UniRef50_D6SCI0|unclassified	1.8604341170
+UniRef50_P18789: Citrate synthase	19.6114423724
+UniRef50_P18789: Citrate synthase|g__Escherichia.s__Escherichia_coli	19.2654092650
+UniRef50_P18789: Citrate synthase|unclassified	0.3460331074
+UniRef50_A3PJG2	19.6078431373
+UniRef50_A3PJG2|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.6078431373
+UniRef50_B7M5J1	19.6078431373
+UniRef50_B7M5J1|g__Escherichia.s__Escherichia_coli	19.6078431373
+UniRef50_Q2YTQ1	19.6078431373
+UniRef50_Q2YTQ1|g__Staphylococcus.s__Staphylococcus_aureus	19.6078431373
+UniRef50_H6PD14: Oxidoreductase,pyridinenucleotide-disulfide, class I	19.6054323734
+UniRef50_H6PD14: Oxidoreductase,pyridinenucleotide-disulfide, class I|g__Streptococcus.s__Streptococcus_agalactiae	19.6054323734
+UniRef50_P76296	19.6051666326
+UniRef50_P76296|g__Escherichia.s__Escherichia_coli	18.8679245283
+UniRef50_P76296|unclassified	0.7372421043
+UniRef50_P0ABJ2: Cytochrome bo(3) ubiquinol oxidase subunit 2	19.5981764976
+UniRef50_P0ABJ2: Cytochrome bo(3) ubiquinol oxidase subunit 2|g__Escherichia.s__Escherichia_coli	19.5981764976
+UniRef50_A6UC68: Glutamine synthetase catalytic region	19.5907894688
+UniRef50_A6UC68: Glutamine synthetase catalytic region|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.5907894688
+UniRef50_P45469	19.5880089772
+UniRef50_P45469|g__Escherichia.s__Escherichia_coli	19.5454411230
+UniRef50_P45469|unclassified	0.0425678542
+UniRef50_P37049: Phosphodiesterase YaeI	19.5874566945
+UniRef50_P37049: Phosphodiesterase YaeI|g__Escherichia.s__Escherichia_coli	19.5874566945
+UniRef50_Q58409: Methanogen homoaconitase large subunit	19.5868778198
+UniRef50_Q58409: Methanogen homoaconitase large subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.5868778198
+UniRef50_B9KU54	19.5856873823
+UniRef50_B9KU54|unclassified	11.1111111111
+UniRef50_B9KU54|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.4745762712
+UniRef50_A0A024DEK4: Lactoylglutathione lyase	19.5853694533
+UniRef50_A0A024DEK4: Lactoylglutathione lyase|g__Streptococcus.s__Streptococcus_mutans	19.5853694533
+UniRef50_P24555: Protease 2	19.5853471926
+UniRef50_P24555: Protease 2|g__Escherichia.s__Escherichia_coli	19.5853471926
+UniRef50_B9DTF4	19.5846759757
+UniRef50_B9DTF4|g__Streptococcus.s__Streptococcus_agalactiae	19.5846759757
+UniRef50_U5MVB3: Phage-like element PBSX protein XkdC	19.5840861561
+UniRef50_U5MVB3: Phage-like element PBSX protein XkdC|g__Clostridium.s__Clostridium_beijerinckii	19.5840861561
+UniRef50_A6LZJ5: Iron-sulfur flavoprotein	19.5770432542
+UniRef50_A6LZJ5: Iron-sulfur flavoprotein|g__Clostridium.s__Clostridium_beijerinckii	19.5770432542
+UniRef50_P37677: L-xylulose/3-keto-L-gulonate kinase	19.5750864739
+UniRef50_P37677: L-xylulose/3-keto-L-gulonate kinase|g__Escherichia.s__Escherichia_coli	19.5750864739
+UniRef50_A3PNW5: Signal transduction histidine kinase	19.5730571387
+UniRef50_A3PNW5: Signal transduction histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.5730571387
+UniRef50_E1VHW6	19.5720189077
+UniRef50_E1VHW6|g__Pseudomonas.s__Pseudomonas_aeruginosa	19.5720189077
+UniRef50_A5UKD8: Adhesin-like protein	19.5719509007
+UniRef50_A5UKD8: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.3335944573
+UniRef50_A5UKD8: Adhesin-like protein|unclassified	1.2383564433
+UniRef50_I3THN2: Dehydrogenase	19.5697782747
+UniRef50_I3THN2: Dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.5697782747
+UniRef50_P36646: Protein transport protein HofC homolog	19.5570493653
+UniRef50_P36646: Protein transport protein HofC homolog|g__Escherichia.s__Escherichia_coli	19.5570493653
+UniRef50_I2SYF8: Cation efflux system protein CusA	19.5523441452
+UniRef50_I2SYF8: Cation efflux system protein CusA|g__Escherichia.s__Escherichia_coli	19.5523441452
+UniRef50_Q8X6C7: Xanthine dehydrogenase molybdenum-binding subunit	19.5505454508
+UniRef50_Q8X6C7: Xanthine dehydrogenase molybdenum-binding subunit|g__Escherichia.s__Escherichia_coli	19.4392049124
+UniRef50_Q8X6C7: Xanthine dehydrogenase molybdenum-binding subunit|unclassified	0.1113405384
+UniRef50_P26646: Probable acrylyl-CoA reductase AcuI	19.5473094752
+UniRef50_P26646: Probable acrylyl-CoA reductase AcuI|g__Escherichia.s__Escherichia_coli	19.5473094752
+UniRef50_C6B907: NAD-dependent epimerase/dehydratase	19.5470295785
+UniRef50_C6B907: NAD-dependent epimerase/dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.5470295785
+UniRef50_W7WR24	19.5421032198
+UniRef50_W7WR24|unclassified	19.5421032198
+UniRef50_O88167	19.5404215064
+UniRef50_O88167|unclassified	19.5404215064
+UniRef50_A5UKF9: ATP-utilizing enzyme, PP-loop superfamily	19.5375893468
+UniRef50_A5UKF9: ATP-utilizing enzyme, PP-loop superfamily|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.3819623015
+UniRef50_A5UKF9: ATP-utilizing enzyme, PP-loop superfamily|unclassified	0.1556270453
+UniRef50_E3GXW6: CobB/CobQ domain protein glutamine amidotransferase	19.5312433078
+UniRef50_E3GXW6: CobB/CobQ domain protein glutamine amidotransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.5312433078
+UniRef50_Q88VD4: 30S ribosomal protein S20	19.5308459115
+UniRef50_Q88VD4: 30S ribosomal protein S20|g__Streptococcus.s__Streptococcus_mutans	19.5308459115
+UniRef50_G4T2X8	19.5229606994
+UniRef50_G4T2X8|g__Pseudomonas.s__Pseudomonas_aeruginosa	19.5229606994
+UniRef50_Q83PX4: HTH-type transcriptional regulator FrlR	19.5184615509
+UniRef50_Q83PX4: HTH-type transcriptional regulator FrlR|g__Escherichia.s__Escherichia_coli	19.1060991534
+UniRef50_Q83PX4: HTH-type transcriptional regulator FrlR|unclassified	0.4123623975
+UniRef50_A5UM23: Pre-mRNA splicing ribonucleoprotein PRP31	19.5089972987
+UniRef50_A5UM23: Pre-mRNA splicing ribonucleoprotein PRP31|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.5089972987
+UniRef50_E3GXL3: Prephenate dehydratase	19.5075807372
+UniRef50_E3GXL3: Prephenate dehydratase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.5075807372
+UniRef50_O26872	19.5048416956
+UniRef50_O26872|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.5048416956
+UniRef50_D3E0S7: MotA/TolQ/ExbB proton channel family protein	19.4952598918
+UniRef50_D3E0S7: MotA/TolQ/ExbB proton channel family protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.4952598918
+UniRef50_P06959: Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex	19.4920620929
+UniRef50_P06959: Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex|g__Escherichia.s__Escherichia_coli	19.4920620929
+UniRef50_Q9HZR2	19.4869500715
+UniRef50_Q9HZR2|g__Pseudomonas.s__Pseudomonas_aeruginosa	19.4869500715
+UniRef50_A6LPF8: Transcriptional regulator, TrmB	19.4856633881
+UniRef50_A6LPF8: Transcriptional regulator, TrmB|g__Clostridium.s__Clostridium_beijerinckii	19.4856633881
+UniRef50_P37353: 2-succinylbenzoate--CoA ligase	19.4825671503
+UniRef50_P37353: 2-succinylbenzoate--CoA ligase|g__Escherichia.s__Escherichia_coli	19.4825671503
+UniRef50_Q7VQI2: Protein translocase subunit SecA	19.4819590102
+UniRef50_Q7VQI2: Protein translocase subunit SecA|g__Escherichia.s__Escherichia_coli	19.4819590102
+UniRef50_P76081: 1,2-phenylacetyl-CoA epoxidase, subunit E	19.4813012656
+UniRef50_P76081: 1,2-phenylacetyl-CoA epoxidase, subunit E|g__Escherichia.s__Escherichia_coli	19.0381242539
+UniRef50_P76081: 1,2-phenylacetyl-CoA epoxidase, subunit E|unclassified	0.4431770117
+UniRef50_Q9L6N7: Threonine efflux protein	19.4744213939
+UniRef50_Q9L6N7: Threonine efflux protein|g__Escherichia.s__Escherichia_coli	19.4744213939
+UniRef50_W1W0I3	19.4737674779
+UniRef50_W1W0I3|unclassified	19.4737674779
+UniRef50_P77319: Chaperone protein HscC	19.4732266135
+UniRef50_P77319: Chaperone protein HscC|g__Escherichia.s__Escherichia_coli	19.4732266135
+UniRef50_B9KLE9: Transcriptional regulator, AraC family	19.4730933246
+UniRef50_B9KLE9: Transcriptional regulator, AraC family|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.4406590107
+UniRef50_B9KLE9: Transcriptional regulator, AraC family|unclassified	2.0324343138
+UniRef50_K8WCA6: Heme lyase subunit CcmF	19.4721443854
+UniRef50_K8WCA6: Heme lyase subunit CcmF|g__Escherichia.s__Escherichia_coli	19.4721443854
+UniRef50_M7E5A1: Transcriptional regulator	19.4704560708
+UniRef50_M7E5A1: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	19.4704560708
+UniRef50_P0AD13: Protein YeeZ	19.4614500038
+UniRef50_P0AD13: Protein YeeZ|g__Escherichia.s__Escherichia_coli	19.4614500038
+UniRef50_P44595: S-adenosylmethionine:tRNA ribosyltransferase-isomerase	19.4592279328
+UniRef50_P44595: S-adenosylmethionine:tRNA ribosyltransferase-isomerase|g__Escherichia.s__Escherichia_coli	18.4481055870
+UniRef50_P44595: S-adenosylmethionine:tRNA ribosyltransferase-isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0111223458
+UniRef50_P0A992: Fructose-bisphosphate aldolase class 1	19.4578586718
+UniRef50_P0A992: Fructose-bisphosphate aldolase class 1|g__Escherichia.s__Escherichia_coli	19.4578586718
+UniRef50_O27593: Probable cyclic pyranopterin monophosphate synthase	19.4566254093
+UniRef50_O27593: Probable cyclic pyranopterin monophosphate synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.4566254093
+UniRef50_A5UNS3: Putative ATPase (AAA+ superfamily)	19.4522870929
+UniRef50_A5UNS3: Putative ATPase (AAA+ superfamily)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.4522870929
+UniRef50_Q51547: Phosphate-specific transport system accessory protein PhoU homolog	19.4515100725
+UniRef50_Q51547: Phosphate-specific transport system accessory protein PhoU homolog|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.9270183076
+UniRef50_Q51547: Phosphate-specific transport system accessory protein PhoU homolog|g__Acinetobacter.s__Acinetobacter_baumannii	7.5244917650
+UniRef50_Q9BWD1: Acetyl-CoA acetyltransferase, cytosolic	19.4417868326
+UniRef50_Q9BWD1: Acetyl-CoA acetyltransferase, cytosolic|g__Escherichia.s__Escherichia_coli	19.3933257722
+UniRef50_Q9BWD1: Acetyl-CoA acetyltransferase, cytosolic|unclassified	0.0484610604
+UniRef50_A6SYG4: ABC-type multidrug transport system, ATPase component	19.4410864097
+UniRef50_A6SYG4: ABC-type multidrug transport system, ATPase component|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.4410864097
+UniRef50_P35630: NADP-dependent isopropanol dehydrogenase	19.4398916285
+UniRef50_P35630: NADP-dependent isopropanol dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.4398916285
+UniRef50_D5ARW9: Nif-specific regulatory protein	19.4386438845
+UniRef50_D5ARW9: Nif-specific regulatory protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.4386438845
+UniRef50_A4XRD2: YceI family protein	19.4384648125
+UniRef50_A4XRD2: YceI family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	19.4384648125
+UniRef50_A4WTR7	19.4325795245
+UniRef50_A4WTR7|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.5896220194
+UniRef50_A4WTR7|unclassified	3.8429575051
+UniRef50_S5XXA3	19.4299737187
+UniRef50_S5XXA3|unclassified	19.4299737187
+UniRef50_P33644: Laccase domain protein YfiH	19.4234962789
+UniRef50_P33644: Laccase domain protein YfiH|g__Escherichia.s__Escherichia_coli	19.4234962789
+UniRef50_M2GKA3	19.4165737644
+UniRef50_M2GKA3|unclassified	10.8695652174
+UniRef50_M2GKA3|g__Streptococcus.s__Streptococcus_mutans	8.5470085470
+UniRef50_P52128	19.4144051205
+UniRef50_P52128|g__Escherichia.s__Escherichia_coli	19.4144051205
+UniRef50_F8L7S5: UDP-glucose 6-dehydrogenase	19.4113964123
+UniRef50_F8L7S5: UDP-glucose 6-dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.4113964123
+UniRef50_E3GYU4: Aspartokinase	19.4099665533
+UniRef50_E3GYU4: Aspartokinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.4099665533
+UniRef50_P32694	19.4018065560
+UniRef50_P32694|g__Escherichia.s__Escherichia_coli	19.4018065560
+UniRef50_Q018U5: COG0031: Cysteine synthase (ISS)	19.3981205766
+UniRef50_Q018U5: COG0031: Cysteine synthase (ISS)|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.3981205766
+UniRef50_B1LM32: Fatty acid oxidation complex subunit alpha	19.3981200685
+UniRef50_B1LM32: Fatty acid oxidation complex subunit alpha|g__Escherichia.s__Escherichia_coli	16.4826464848
+UniRef50_B1LM32: Fatty acid oxidation complex subunit alpha|g__Acinetobacter.s__Acinetobacter_baumannii	2.5593879427
+UniRef50_B1LM32: Fatty acid oxidation complex subunit alpha|unclassified	0.3560856410
+UniRef50_A4XZN0: Acetate CoA-transferase YdiF	19.3964111045
+UniRef50_A4XZN0: Acetate CoA-transferase YdiF|g__Clostridium.s__Clostridium_beijerinckii	19.3964111045
+UniRef50_A0A034SZW0: Periplasmic nitrate reductase	19.3943630508
+UniRef50_A0A034SZW0: Periplasmic nitrate reductase|g__Escherichia.s__Escherichia_coli	19.3943630508
+UniRef50_B2S6U9: Carbamoyl-phosphate synthase small chain	19.3930017160
+UniRef50_B2S6U9: Carbamoyl-phosphate synthase small chain|g__Escherichia.s__Escherichia_coli	19.3507825060
+UniRef50_B2S6U9: Carbamoyl-phosphate synthase small chain|unclassified	0.0422192100
+UniRef50_P37624	19.3882206626
+UniRef50_P37624|g__Escherichia.s__Escherichia_coli	17.4460117011
+UniRef50_P37624|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9422089614
+UniRef50_UPI0003753584: hypothetical protein	19.3876095894
+UniRef50_UPI0003753584: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.5872475532
+UniRef50_UPI0003753584: hypothetical protein|unclassified	0.8003620363
+UniRef50_B9KT23: Glycine reductase complex protein C large subunit	19.3862057841
+UniRef50_B9KT23: Glycine reductase complex protein C large subunit|unclassified	19.3862057841
+UniRef50_B2U6Z0: N-(5'-phosphoribosyl)anthranilate isomerase	19.3852146679
+UniRef50_B2U6Z0: N-(5'-phosphoribosyl)anthranilate isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	19.3164918438
+UniRef50_B2U6Z0: N-(5'-phosphoribosyl)anthranilate isomerase|unclassified	0.0687228241
+UniRef50_Q88WJ7: UPF0122 protein lp_1634	19.3832500587
+UniRef50_Q88WJ7: UPF0122 protein lp_1634|g__Staphylococcus.s__Staphylococcus_aureus	19.3832500587
+UniRef50_I6GVM8: Sulfite reductase [NADPH] flavoprotein, alpha-component	19.3828956096
+UniRef50_I6GVM8: Sulfite reductase [NADPH] flavoprotein, alpha-component|g__Escherichia.s__Escherichia_coli	19.3828956096
+UniRef50_P77522: FeS cluster assembly protein SufB	19.3815935675
+UniRef50_P77522: FeS cluster assembly protein SufB|g__Escherichia.s__Escherichia_coli	19.3815935675
+UniRef50_Q3J123: Diguanylate cyclase/phosphodiesterase	19.3599458906
+UniRef50_Q3J123: Diguanylate cyclase/phosphodiesterase|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.3599458906
+UniRef50_Q1LT55: Threonylcarbamoyl-AMP synthase	19.3591697113
+UniRef50_Q1LT55: Threonylcarbamoyl-AMP synthase|g__Escherichia.s__Escherichia_coli	19.3591697113
+UniRef50_P46854	19.3573630977
+UniRef50_P46854|g__Escherichia.s__Escherichia_coli	19.3573630977
+UniRef50_A4FXY0: ATP phosphoribosyltransferase	19.3534832517
+UniRef50_A4FXY0: ATP phosphoribosyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.3534832517
+UniRef50_P0A2Y1: Arginase	19.3530405066
+UniRef50_P0A2Y1: Arginase|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.3530405066
+UniRef50_F3U531	19.3497597688
+UniRef50_F3U531|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.3497597688
+UniRef50_K0AB23: Nucleotide sugar dehydrogenase	19.3478969192
+UniRef50_K0AB23: Nucleotide sugar dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.3478969192
+UniRef50_Q3J0A2	19.3412630809
+UniRef50_Q3J0A2|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.7967479675
+UniRef50_Q3J0A2|unclassified	8.5445151134
+UniRef50_B1J7Z5: 3-demethylubiquinone-9 3-methyltransferase	19.3400014194
+UniRef50_B1J7Z5: 3-demethylubiquinone-9 3-methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	19.3400014194
+UniRef50_F5M3A2: Transposase IS116/IS110/IS902	19.3387570756
+UniRef50_F5M3A2: Transposase IS116/IS110/IS902|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.3387570756
+UniRef50_O26156: Short chain isoprenyl diphosphate synthase	19.3357769074
+UniRef50_O26156: Short chain isoprenyl diphosphate synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.3357769074
+UniRef50_P0ADW1: Lipopolysaccharide export system protein LptC	19.3263782771
+UniRef50_P0ADW1: Lipopolysaccharide export system protein LptC|g__Escherichia.s__Escherichia_coli	19.3263782771
+UniRef50_R7B3T9: Molybdate ABC transporter permease protein	19.3211727081
+UniRef50_R7B3T9: Molybdate ABC transporter permease protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.3211727081
+UniRef50_F2MM74: Cytidine deaminase	19.3199018569
+UniRef50_F2MM74: Cytidine deaminase|g__Streptococcus.s__Streptococcus_mutans	19.3199018569
+UniRef50_P76417: Putative nucleoside transporter YegT	19.3196144464
+UniRef50_P76417: Putative nucleoside transporter YegT|g__Escherichia.s__Escherichia_coli	19.3196144464
+UniRef50_A3PPX9	19.3040723753
+UniRef50_A3PPX9|unclassified	13.0147641992
+UniRef50_A3PPX9|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.2893081761
+UniRef50_P75745	19.3027889207
+UniRef50_P75745|g__Escherichia.s__Escherichia_coli	19.3027889207
+UniRef50_P75884	19.3026746591
+UniRef50_P75884|g__Escherichia.s__Escherichia_coli	19.3026746591
+UniRef50_P0AAC5: Inner membrane protein YbhL	19.3009718801
+UniRef50_P0AAC5: Inner membrane protein YbhL|g__Escherichia.s__Escherichia_coli	19.3009718801
+UniRef50_Q53058	19.2921759629
+UniRef50_Q53058|unclassified	13.9179261937
+UniRef50_Q53058|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.3742497692
+UniRef50_P22348: Probable N5-carboxyaminoimidazole ribonucleotide mutase	19.2921571267
+UniRef50_P22348: Probable N5-carboxyaminoimidazole ribonucleotide mutase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.1272843989
+UniRef50_P22348: Probable N5-carboxyaminoimidazole ribonucleotide mutase|unclassified	0.1648727278
+UniRef50_P09384: Chemotaxis protein CheA	19.2902766091
+UniRef50_P09384: Chemotaxis protein CheA|g__Escherichia.s__Escherichia_coli	19.1965136387
+UniRef50_P09384: Chemotaxis protein CheA|unclassified	0.0937629704
+UniRef50_P33355	19.2832345071
+UniRef50_P33355|g__Escherichia.s__Escherichia_coli	19.2832345071
+UniRef50_Q4QLL8: Cytochrome c-552	19.2808204339
+UniRef50_Q4QLL8: Cytochrome c-552|g__Escherichia.s__Escherichia_coli	19.1014584282
+UniRef50_Q4QLL8: Cytochrome c-552|unclassified	0.1793620058
+UniRef50_P37642: Inner membrane protein YhjD	19.2806274924
+UniRef50_P37642: Inner membrane protein YhjD|g__Escherichia.s__Escherichia_coli	19.2806274924
+UniRef50_R9SL72: DNA primase large subunit PriL	19.2698230863
+UniRef50_R9SL72: DNA primase large subunit PriL|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.2698230863
+UniRef50_Q9KNK2: 33 kDa chaperonin	19.2649258140
+UniRef50_Q9KNK2: 33 kDa chaperonin|g__Escherichia.s__Escherichia_coli	19.2649258140
+UniRef50_UPI0003728B23: hypothetical protein	19.2621878366
+UniRef50_UPI0003728B23: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.2594774619
+UniRef50_UPI0003728B23: hypothetical protein|unclassified	0.0027103747
+UniRef50_P09323: PTS system N-acetylglucosamine-specific EIICBA component	19.2469272616
+UniRef50_P09323: PTS system N-acetylglucosamine-specific EIICBA component|g__Escherichia.s__Escherichia_coli	19.2469272616
+UniRef50_B9KTR8: Methyl-accepting chemotaxis sensory transducer	19.2427585824
+UniRef50_B9KTR8: Methyl-accepting chemotaxis sensory transducer|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.2427585824
+UniRef50_D3E3V9: Transporter MIP family	19.2422404080
+UniRef50_D3E3V9: Transporter MIP family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.2422404080
+UniRef50_D8HEV6	19.2411924119
+UniRef50_D8HEV6|unclassified	11.1111111111
+UniRef50_D8HEV6|g__Staphylococcus.s__Staphylococcus_aureus	8.1300813008
+UniRef50_P21649: Protein MrkE	19.2367657319
+UniRef50_P21649: Protein MrkE|g__Escherichia.s__Escherichia_coli	19.2367657319
+UniRef50_B9KX02	19.2335230548
+UniRef50_B9KX02|unclassified	19.2335230548
+UniRef50_A5UMN7: Histone	19.2307692308
+UniRef50_A5UMN7: Histone|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.2307692308
+UniRef50_B1I8W2: Preprotein translocase, SecE subunit	19.2307692308
+UniRef50_B1I8W2: Preprotein translocase, SecE subunit|g__Streptococcus.s__Streptococcus_mutans	19.2307692308
+UniRef50_E1JDV6	19.2307692308
+UniRef50_E1JDV6|g__Escherichia.s__Escherichia_coli	19.2307692308
+UniRef50_H3TRT7	19.2307692308
+UniRef50_H3TRT7|g__Staphylococcus.s__Staphylococcus_aureus	19.2307692308
+UniRef50_X5E3B6	19.2307692308
+UniRef50_X5E3B6|g__Staphylococcus.s__Staphylococcus_aureus	19.2307692308
+UniRef50_P39279	19.2297827885
+UniRef50_P39279|g__Escherichia.s__Escherichia_coli	19.2297827885
+UniRef50_P31446: Inner membrane protein YidI	19.2267850640
+UniRef50_P31446: Inner membrane protein YidI|g__Escherichia.s__Escherichia_coli	19.2267850640
+UniRef50_Q0VMD0: Biotin synthase	19.2196580238
+UniRef50_Q0VMD0: Biotin synthase|g__Escherichia.s__Escherichia_coli	18.7880622645
+UniRef50_Q0VMD0: Biotin synthase|unclassified	0.4315957593
+UniRef50_P52067: Fosmidomycin resistance protein	19.2180897718
+UniRef50_P52067: Fosmidomycin resistance protein|g__Escherichia.s__Escherichia_coli	19.2180897718
+UniRef50_P19769: Putative transposase InsK for insertion sequence element IS150	19.2104257912
+UniRef50_P19769: Putative transposase InsK for insertion sequence element IS150|g__Escherichia.s__Escherichia_coli	19.2104257912
+UniRef50_R6V945: ATP-dependent protease La	19.2095723492
+UniRef50_R6V945: ATP-dependent protease La|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.2095723492
+UniRef50_A0A025GLL8: Lipoprotein NlpD	19.1964011008
+UniRef50_A0A025GLL8: Lipoprotein NlpD|g__Escherichia.s__Escherichia_coli	19.1964011008
+UniRef50_B6ZZE4: Transcriptional regulator, LysR family protein	19.1903430781
+UniRef50_B6ZZE4: Transcriptional regulator, LysR family protein|g__Escherichia.s__Escherichia_coli	19.1903430781
+UniRef50_D3QRZ7	19.1893442454
+UniRef50_D3QRZ7|g__Escherichia.s__Escherichia_coli	16.9935886830
+UniRef50_D3QRZ7|unclassified	2.1957555624
+UniRef50_Q3J438: Transposase	19.1875086988
+UniRef50_Q3J438: Transposase|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.1875086988
+UniRef50_P45766: Putative amino-acid ABC transporter-binding protein YhdW	19.1817881990
+UniRef50_P45766: Putative amino-acid ABC transporter-binding protein YhdW|g__Escherichia.s__Escherichia_coli	19.1817881990
+UniRef50_P39408	19.1815302732
+UniRef50_P39408|g__Escherichia.s__Escherichia_coli	19.1815302732
+UniRef50_P0A9K2: Protein PhoH	19.1799135828
+UniRef50_P0A9K2: Protein PhoH|g__Escherichia.s__Escherichia_coli	19.1799135828
+UniRef50_P77202: Thiol:disulfide interchange protein DsbG	19.1758143915
+UniRef50_P77202: Thiol:disulfide interchange protein DsbG|g__Escherichia.s__Escherichia_coli	19.1758143915
+UniRef50_Q1GFV5: Dihydrofolate reductase	19.1744826442
+UniRef50_Q1GFV5: Dihydrofolate reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.1744826442
+UniRef50_P42915: Outer membrane usher protein YraJ	19.1733967830
+UniRef50_P42915: Outer membrane usher protein YraJ|g__Escherichia.s__Escherichia_coli	19.1733967830
+UniRef50_P24216: Flagellar hook-associated protein 2	19.1730905865
+UniRef50_P24216: Flagellar hook-associated protein 2|g__Escherichia.s__Escherichia_coli	19.1730905865
+UniRef50_Q9I7C2: DNA gyrase subunit B	19.1713320366
+UniRef50_Q9I7C2: DNA gyrase subunit B|g__Escherichia.s__Escherichia_coli	13.3333333333
+UniRef50_Q9I7C2: DNA gyrase subunit B|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7479178747
+UniRef50_Q9I7C2: DNA gyrase subunit B|unclassified	0.0900808286
+UniRef50_X2LK66: Penicillin-binding protein 1C	19.1712489142
+UniRef50_X2LK66: Penicillin-binding protein 1C|g__Escherichia.s__Escherichia_coli	19.1712489142
+UniRef50_A3PFM0	19.1706924212
+UniRef50_A3PFM0|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.7587978470
+UniRef50_A3PFM0|unclassified	3.4118945742
+UniRef50_A5UM36: Predicted RecB family exonuclease	19.1628113544
+UniRef50_A5UM36: Predicted RecB family exonuclease|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.1628113544
+UniRef50_S6AT82	19.1603102022
+UniRef50_S6AT82|g__Pseudomonas.s__Pseudomonas_aeruginosa	19.1603102022
+UniRef50_A0A037YY18	19.1602493583
+UniRef50_A0A037YY18|unclassified	19.1602493583
+UniRef50_W1YD27	19.1602493583
+UniRef50_W1YD27|unclassified	19.1602493583
+UniRef50_P30864	19.1574193362
+UniRef50_P30864|g__Escherichia.s__Escherichia_coli	19.1574193362
+UniRef50_C5MZ72	19.1571261202
+UniRef50_C5MZ72|g__Staphylococcus.s__Staphylococcus_aureus	19.1571261202
+UniRef50_C6STX0	19.1555342596
+UniRef50_C6STX0|g__Streptococcus.s__Streptococcus_mutans	19.1555342596
+UniRef50_Q8X8V7	19.1475080844
+UniRef50_Q8X8V7|g__Escherichia.s__Escherichia_coli	19.1475080844
+UniRef50_B7V2Q5: Thymidylate synthase	19.1474665230
+UniRef50_B7V2Q5: Thymidylate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.8383131750
+UniRef50_B7V2Q5: Thymidylate synthase|unclassified	1.3091533480
+UniRef50_P63412: Acetate kinase	19.1443617042
+UniRef50_P63412: Acetate kinase|g__Escherichia.s__Escherichia_coli	19.1443617042
+UniRef50_P75750	19.1427553222
+UniRef50_P75750|g__Escherichia.s__Escherichia_coli	19.1427553222
+UniRef50_Q06067: Signal transduction histidine-protein kinase AtoS	19.1397800342
+UniRef50_Q06067: Signal transduction histidine-protein kinase AtoS|g__Escherichia.s__Escherichia_coli	19.1397800342
+UniRef50_H3VHH5	19.1286220790
+UniRef50_H3VHH5|g__Staphylococcus.s__Staphylococcus_epidermidis	19.1286220790
+UniRef50_S1GW72: Autoinducer 2 kinase LsrK	19.1262932553
+UniRef50_S1GW72: Autoinducer 2 kinase LsrK|g__Escherichia.s__Escherichia_coli	19.1262932553
+UniRef50_Q8X4I4	19.1240163883
+UniRef50_Q8X4I4|g__Escherichia.s__Escherichia_coli	18.5529990690
+UniRef50_Q8X4I4|unclassified	0.5710173193
+UniRef50_P31469: UPF0167 protein CbrC	19.1209594279
+UniRef50_P31469: UPF0167 protein CbrC|g__Escherichia.s__Escherichia_coli	19.1209594279
+UniRef50_Q5P0P9	19.1093205575
+UniRef50_Q5P0P9|g__Pseudomonas.s__Pseudomonas_aeruginosa	19.1093205575
+UniRef50_D7B9U3	19.1017416109
+UniRef50_D7B9U3|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.1017416109
+UniRef50_A3PJ57	19.1015860449
+UniRef50_A3PJ57|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.1015860449
+UniRef50_T0TQL8	19.1004638234
+UniRef50_T0TQL8|g__Streptococcus.s__Streptococcus_mutans	19.1004638234
+UniRef50_B9KSX7	19.0868310244
+UniRef50_B9KSX7|unclassified	14.9545996195
+UniRef50_B9KSX7|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.1322314050
+UniRef50_P0AEQ2: Protein GlcG	19.0841622634
+UniRef50_P0AEQ2: Protein GlcG|g__Escherichia.s__Escherichia_coli	16.0215053763
+UniRef50_P0AEQ2: Protein GlcG|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9411764706
+UniRef50_P0AEQ2: Protein GlcG|unclassified	0.1214804165
+UniRef50_P80239: Alkyl hydroperoxide reductase subunit C	19.0809096141
+UniRef50_P80239: Alkyl hydroperoxide reductase subunit C|g__Escherichia.s__Escherichia_coli	16.2480484243
+UniRef50_P80239: Alkyl hydroperoxide reductase subunit C|g__Streptococcus.s__Streptococcus_agalactiae	2.8328611898
+UniRef50_A6QDZ1	19.0754679586
+UniRef50_A6QDZ1|unclassified	19.0754679586
+UniRef50_W8SRR9: MFS family multidrug efflux protein, similarity to bicyclomycin resistance protein Bcr	19.0750322944
+UniRef50_W8SRR9: MFS family multidrug efflux protein, similarity to bicyclomycin resistance protein Bcr|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.0750322944
+UniRef50_A5UKK3	19.0716230967
+UniRef50_A5UKK3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.0716230967
+UniRef50_A5ISW4	19.0691737456
+UniRef50_A5ISW4|g__Staphylococcus.s__Staphylococcus_aureus	17.4737832083
+UniRef50_A5ISW4|unclassified	1.5953905373
+UniRef50_D3E1B0	19.0689019750
+UniRef50_D3E1B0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.5533273967
+UniRef50_D3E1B0|unclassified	0.5155745783
+UniRef50_A5UP78: Exoribonuclease VII, large subunit, XseA	19.0609341520
+UniRef50_A5UP78: Exoribonuclease VII, large subunit, XseA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.0609341520
+UniRef50_A5UMY4: Predicted RNA-binding protein	19.0607021427
+UniRef50_A5UMY4: Predicted RNA-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.0607021427
+UniRef50_V8CW46	19.0592966612
+UniRef50_V8CW46|unclassified	19.0592966612
+UniRef50_O26837: Phenylalanine--tRNA ligase alpha subunit	19.0529002669
+UniRef50_O26837: Phenylalanine--tRNA ligase alpha subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.0529002669
+UniRef50_A5UL29: Prefoldin subunit alpha	19.0487686399
+UniRef50_A5UL29: Prefoldin subunit alpha|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.0487686399
+UniRef50_A3PRL8: WD-40 repeat protein	19.0482880169
+UniRef50_A3PRL8: WD-40 repeat protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.0482880169
+UniRef50_Q57843: 2-amino-3,7-dideoxy-D-threo-hept-6-ulosonate synthase	19.0432782870
+UniRef50_Q57843: 2-amino-3,7-dideoxy-D-threo-hept-6-ulosonate synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.0432782870
+UniRef50_I6TX73: Acetyltransferase	19.0421861080
+UniRef50_I6TX73: Acetyltransferase|g__Streptococcus.s__Streptococcus_mutans	19.0421861080
+UniRef50_A1B3M6	19.0373563218
+UniRef50_A1B3M6|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.0373563218
+UniRef50_P0AA94: Sensor histidine kinase YpdA	19.0359520924
+UniRef50_P0AA94: Sensor histidine kinase YpdA|g__Escherichia.s__Escherichia_coli	19.0359520924
+UniRef50_Q3HKG1: Mechanosensitive (MS) ion channel protein	19.0261520875
+UniRef50_Q3HKG1: Mechanosensitive (MS) ion channel protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	19.0261520875
+UniRef50_S1E292: PTS system, mannose/fructose/sorbose family, IID component	19.0249209895
+UniRef50_S1E292: PTS system, mannose/fructose/sorbose family, IID component|g__Escherichia.s__Escherichia_coli	19.0249209895
+UniRef50_P42593: 2,4-dienoyl-CoA reductase [NADPH]	19.0235606143
+UniRef50_P42593: 2,4-dienoyl-CoA reductase [NADPH]|g__Escherichia.s__Escherichia_coli	19.0235606143
+UniRef50_I6DYT5: Permease family protein	19.0135915173
+UniRef50_I6DYT5: Permease family protein|g__Escherichia.s__Escherichia_coli	19.0135915173
+UniRef50_P35482: Alkaline phosphatase L	19.0131090140
+UniRef50_P35482: Alkaline phosphatase L|g__Pseudomonas.s__Pseudomonas_aeruginosa	19.0131090140
+UniRef50_D3E113: Molybdate transport system regulatory protein ModE	19.0105702626
+UniRef50_D3E113: Molybdate transport system regulatory protein ModE|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.0105702626
+UniRef50_UPI0003B3F8F7: transposase, partial	19.0094690081
+UniRef50_UPI0003B3F8F7: transposase, partial|unclassified	19.0094690081
+UniRef50_B9AGP3	19.0074242969
+UniRef50_B9AGP3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	19.0074242969
+UniRef50_Q3IV30	19.0041252723
+UniRef50_Q3IV30|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.6530670067
+UniRef50_Q3IV30|unclassified	8.3510582656
+UniRef50_Q2NI43: Predicted transcriptional regulator	18.9967330246
+UniRef50_Q2NI43: Predicted transcriptional regulator|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.9967330246
+UniRef50_A5UNY6: Adhesin-like protein	18.9913025714
+UniRef50_A5UNY6: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.8282568785
+UniRef50_A5UNY6: Adhesin-like protein|unclassified	0.1630456928
+UniRef50_Q9HZN2: Maf-like protein PA2972	18.9907678387
+UniRef50_Q9HZN2: Maf-like protein PA2972|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.9907678387
+UniRef50_Q8NY85	18.9820681277
+UniRef50_Q8NY85|g__Staphylococcus.s__Staphylococcus_aureus	17.3072313663
+UniRef50_Q8NY85|unclassified	1.6748367613
+UniRef50_E2QM67	18.9765474235
+UniRef50_E2QM67|g__Escherichia.s__Escherichia_coli	18.9765474235
+UniRef50_R9SKL4: Molybdenum cofactor biosynthesis protein E MoaE	18.9747579151
+UniRef50_R9SKL4: Molybdenum cofactor biosynthesis protein E MoaE|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.9747579151
+UniRef50_P39369	18.9722413659
+UniRef50_P39369|g__Escherichia.s__Escherichia_coli	18.9722413659
+UniRef50_A5UKY8: 30S ribosomal protein S3Ae	18.9716807195
+UniRef50_A5UKY8: 30S ribosomal protein S3Ae|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.9716807195
+UniRef50_Q7CQ37: Flagellar regulator flk	18.9705093474
+UniRef50_Q7CQ37: Flagellar regulator flk|g__Escherichia.s__Escherichia_coli	18.9705093474
+UniRef50_X7Z2N8	18.9702765909
+UniRef50_X7Z2N8|unclassified	18.9702765909
+UniRef50_P24228: D-alanyl-D-alanine carboxypeptidase DacB	18.9669983702
+UniRef50_P24228: D-alanyl-D-alanine carboxypeptidase DacB|g__Escherichia.s__Escherichia_coli	18.9669983702
+UniRef50_R9SJH6: Energy-converting hydrogenase A subunit J EhaJ	18.9591793007
+UniRef50_R9SJH6: Energy-converting hydrogenase A subunit J EhaJ|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.9591793007
+UniRef50_G1ZXK5: Sodium/proline symporter	18.9578991302
+UniRef50_G1ZXK5: Sodium/proline symporter|g__Escherichia.s__Escherichia_coli	18.9578991302
+UniRef50_P09832: Glutamate synthase [NADPH] small chain	18.9569272326
+UniRef50_P09832: Glutamate synthase [NADPH] small chain|g__Escherichia.s__Escherichia_coli	18.0069648372
+UniRef50_P09832: Glutamate synthase [NADPH] small chain|unclassified	0.9499623954
+UniRef50_P75910	18.9551966683
+UniRef50_P75910|g__Escherichia.s__Escherichia_coli	18.9551966683
+UniRef50_R6U1L8: Glycosyltransferases involved in cell wall biogenesis	18.9543485513
+UniRef50_R6U1L8: Glycosyltransferases involved in cell wall biogenesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.9543485513
+UniRef50_W8UXR7	18.9540068804
+UniRef50_W8UXR7|g__Staphylococcus.s__Staphylococcus_aureus	16.9175042845
+UniRef50_W8UXR7|unclassified	2.0365025958
+UniRef50_P0CL46: Formate hydrogenlyase transcriptional activator	18.9530823156
+UniRef50_P0CL46: Formate hydrogenlyase transcriptional activator|g__Escherichia.s__Escherichia_coli	18.9530823156
+UniRef50_K0LW44	18.9486864780
+UniRef50_K0LW44|unclassified	11.7023096664
+UniRef50_K0LW44|g__Staphylococcus.s__Staphylococcus_aureus	7.2463768116
+UniRef50_Q8Z9C3: Poly(A) polymerase I	18.9337339600
+UniRef50_Q8Z9C3: Poly(A) polymerase I|g__Escherichia.s__Escherichia_coli	18.9337339600
+UniRef50_A0A025ZG79	18.9331446534
+UniRef50_A0A025ZG79|g__Escherichia.s__Escherichia_coli	18.9331446534
+UniRef50_Q8ZP50: Outer membrane protein W	18.9297775979
+UniRef50_Q8ZP50: Outer membrane protein W|g__Escherichia.s__Escherichia_coli	18.9297775979
+UniRef50_A5UL12	18.9292831204
+UniRef50_A5UL12|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.9292831204
+UniRef50_P0A3B9: 4'-phosphopantetheinyl transferase EntD	18.9273720723
+UniRef50_P0A3B9: 4'-phosphopantetheinyl transferase EntD|g__Escherichia.s__Escherichia_coli	18.9273720723
+UniRef50_D7HX96: Acetate permease ActP (Cation/acetate symporter)	18.9226597597
+UniRef50_D7HX96: Acetate permease ActP (Cation/acetate symporter)|g__Escherichia.s__Escherichia_coli	18.9226597597
+UniRef50_I6TPH6: N-acetylmuramoyl-L-alanine amidase	18.9224278653
+UniRef50_I6TPH6: N-acetylmuramoyl-L-alanine amidase|g__Streptococcus.s__Streptococcus_mutans	18.9224278653
+UniRef50_B0RSU6: Flagellar motor component MotA	18.9219686938
+UniRef50_B0RSU6: Flagellar motor component MotA|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.9219686938
+UniRef50_P57355: UPF0056 membrane protein BU267	18.9192452989
+UniRef50_P57355: UPF0056 membrane protein BU267|g__Escherichia.s__Escherichia_coli	18.9192452989
+UniRef50_P56467: Bifunctional protein FolD	18.9180372044
+UniRef50_P56467: Bifunctional protein FolD|g__Helicobacter.s__Helicobacter_pylori	18.9180372044
+UniRef50_Q92PC8: 5,6-dimethylbenzimidazole synthase	18.9153976023
+UniRef50_Q92PC8: 5,6-dimethylbenzimidazole synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.9153976023
+UniRef50_U3T6D9: AsnC family transcriptional regulator	18.9132963127
+UniRef50_U3T6D9: AsnC family transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	18.9132963127
+UniRef50_P33020	18.9106609588
+UniRef50_P33020|g__Escherichia.s__Escherichia_coli	18.9106609588
+UniRef50_Q28VR9: Monofunctional biosynthetic peptidoglycan transglycosylase	18.9029287284
+UniRef50_Q28VR9: Monofunctional biosynthetic peptidoglycan transglycosylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.9029287284
+UniRef50_P76080: Putative 1,2-phenylacetyl-CoA epoxidase, subunit D	18.9026819502
+UniRef50_P76080: Putative 1,2-phenylacetyl-CoA epoxidase, subunit D|g__Escherichia.s__Escherichia_coli	17.8489036275
+UniRef50_P76080: Putative 1,2-phenylacetyl-CoA epoxidase, subunit D|unclassified	1.0537783227
+UniRef50_Q2YU65	18.8996419297
+UniRef50_Q2YU65|unclassified	18.8996419297
+UniRef50_Q899R2: Single-stranded DNA-binding protein	18.8938381589
+UniRef50_Q899R2: Single-stranded DNA-binding protein|g__Clostridium.s__Clostridium_beijerinckii	18.8938381589
+UniRef50_Q46819: Putative electron transport protein YgfS	18.8868153900
+UniRef50_Q46819: Putative electron transport protein YgfS|g__Escherichia.s__Escherichia_coli	18.8868153900
+UniRef50_E1S016	18.8780627338
+UniRef50_E1S016|g__Escherichia.s__Escherichia_coli	12.5887545577
+UniRef50_E1S016|unclassified	6.2893081761
+UniRef50_UPI000318D5FE: hypothetical protein	18.8693448458
+UniRef50_UPI000318D5FE: hypothetical protein|unclassified	18.8693448458
+UniRef50_B7NHR8	18.8679245283
+UniRef50_B7NHR8|unclassified	18.8679245283
+UniRef50_P57872: Ribosome-binding factor A	18.8679245283
+UniRef50_P57872: Ribosome-binding factor A|g__Escherichia.s__Escherichia_coli	18.8679245283
+UniRef50_Q65PC3: 50S ribosomal protein L33 1	18.8679245283
+UniRef50_Q65PC3: 50S ribosomal protein L33 1|g__Staphylococcus.s__Staphylococcus_aureus	18.8679245283
+UniRef50_R9YQG1: Integrase core domain protein	18.8679245283
+UniRef50_R9YQG1: Integrase core domain protein|g__Staphylococcus.s__Staphylococcus_aureus	18.8679245283
+UniRef50_U3TJ98	18.8679245283
+UniRef50_U3TJ98|g__Streptococcus.s__Streptococcus_agalactiae	18.8679245283
+UniRef50_V6QAN7	18.8679245283
+UniRef50_V6QAN7|g__Staphylococcus.s__Staphylococcus_epidermidis	18.8679245283
+UniRef50_W1Y4N5	18.8679245283
+UniRef50_W1Y4N5|unclassified	18.8679245283
+UniRef50_A3PS59: ATP synthase subunit beta 2	18.8678276283
+UniRef50_A3PS59: ATP synthase subunit beta 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.8678276283
+UniRef50_P32128	18.8667990722
+UniRef50_P32128|g__Escherichia.s__Escherichia_coli	18.8667990722
+UniRef50_D9PYH9: tRNA pseudouridine synthase Pus10	18.8667466248
+UniRef50_D9PYH9: tRNA pseudouridine synthase Pus10|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.8667466248
+UniRef50_P77300	18.8631227161
+UniRef50_P77300|g__Escherichia.s__Escherichia_coli	18.8631227161
+UniRef50_K0SK09	18.8589770035
+UniRef50_K0SK09|unclassified	18.8589770035
+UniRef50_Q8X505: NADP-dependent L-serine/L-allo-threonine dehydrogenase YdfG	18.8584489043
+UniRef50_Q8X505: NADP-dependent L-serine/L-allo-threonine dehydrogenase YdfG|g__Escherichia.s__Escherichia_coli	18.7918143045
+UniRef50_Q8X505: NADP-dependent L-serine/L-allo-threonine dehydrogenase YdfG|unclassified	0.0666345998
+UniRef50_P0AFI1: Probable oxalyl-CoA decarboxylase	18.8552360075
+UniRef50_P0AFI1: Probable oxalyl-CoA decarboxylase|g__Escherichia.s__Escherichia_coli	18.8552360075
+UniRef50_Q46820	18.8500978885
+UniRef50_Q46820|g__Escherichia.s__Escherichia_coli	18.8500978885
+UniRef50_Q8CVW1: Outer membrane protein C	18.8468587454
+UniRef50_Q8CVW1: Outer membrane protein C|g__Escherichia.s__Escherichia_coli	18.8468587454
+UniRef50_Q8CUE2	18.8412174721
+UniRef50_Q8CUE2|g__Staphylococcus.s__Staphylococcus_epidermidis	14.4359311285
+UniRef50_Q8CUE2|g__Staphylococcus.s__Staphylococcus_aureus	4.4052863436
+UniRef50_A5UMH3: Predicted ATPase, AAA+ superfamily	18.8322182920
+UniRef50_A5UMH3: Predicted ATPase, AAA+ superfamily|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.8322182920
+UniRef50_Q2NEH1: Glutamyl-tRNA(Gln) amidotransferase subunit D	18.8197405590
+UniRef50_Q2NEH1: Glutamyl-tRNA(Gln) amidotransferase subunit D|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.8197405590
+UniRef50_L6Z8K5: Protease3	18.8191193363
+UniRef50_L6Z8K5: Protease3|g__Escherichia.s__Escherichia_coli	18.8191193363
+UniRef50_F4NMU3	18.8182137482
+UniRef50_F4NMU3|g__Escherichia.s__Escherichia_coli	18.8182137482
+UniRef50_Q56953: Chelated iron transport system membrane protein YfeB	18.8139238992
+UniRef50_Q56953: Chelated iron transport system membrane protein YfeB|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.8139238992
+UniRef50_P0AGG1: Thiamine-monophosphate kinase	18.8112513297
+UniRef50_P0AGG1: Thiamine-monophosphate kinase|g__Escherichia.s__Escherichia_coli	18.8112513297
+UniRef50_Q0T052: Malate dehydrogenase	18.8100048324
+UniRef50_Q0T052: Malate dehydrogenase|g__Escherichia.s__Escherichia_coli	18.8100048324
+UniRef50_B2TPF4: Cob(I)yrinic acid a,c-diamide adenosyltransferase	18.8095648643
+UniRef50_B2TPF4: Cob(I)yrinic acid a,c-diamide adenosyltransferase|g__Clostridium.s__Clostridium_beijerinckii	18.8095648643
+UniRef50_P0AEV2: Regulator of RpoS	18.8087066229
+UniRef50_P0AEV2: Regulator of RpoS|g__Escherichia.s__Escherichia_coli	18.8087066229
+UniRef50_R9SM98: Radical SAM domain-containing protein	18.8053979602
+UniRef50_R9SM98: Radical SAM domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.8053979602
+UniRef50_A7MGX5: tRNA (cytidine/uridine-2'-O-)-methyltransferase TrmJ	18.8052202065
+UniRef50_A7MGX5: tRNA (cytidine/uridine-2'-O-)-methyltransferase TrmJ|g__Escherichia.s__Escherichia_coli	18.8052202065
+UniRef50_Q8FCW0: Phosphoglycolate phosphatase	18.8039422852
+UniRef50_Q8FCW0: Phosphoglycolate phosphatase|g__Escherichia.s__Escherichia_coli	18.8039422852
+UniRef50_G2L3N1	18.8011528083
+UniRef50_G2L3N1|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.1343404806
+UniRef50_G2L3N1|unclassified	4.6668123277
+UniRef50_A5UK93: Mg-dependent DNase, TatD-related	18.8003971960
+UniRef50_A5UK93: Mg-dependent DNase, TatD-related|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.8003971960
+UniRef50_Q3IUV4	18.7952767836
+UniRef50_Q3IUV4|unclassified	14.1869818527
+UniRef50_Q3IUV4|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.6082949309
+UniRef50_B9KK79: Metallophosphoesterase	18.7926888384
+UniRef50_B9KK79: Metallophosphoesterase|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.7926888384
+UniRef50_V9XL60: Gas vesicle synthesis protein	18.7898461958
+UniRef50_V9XL60: Gas vesicle synthesis protein|unclassified	18.7898461958
+UniRef50_A8Z2W0	18.7797566567
+UniRef50_A8Z2W0|g__Staphylococcus.s__Staphylococcus_aureus	18.7797566567
+UniRef50_B1ZI13: Catalase	18.7757157706
+UniRef50_B1ZI13: Catalase|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.7757157706
+UniRef50_I3X709: Extracellular solute-binding protein family 3	18.7724948084
+UniRef50_I3X709: Extracellular solute-binding protein family 3|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.7724948084
+UniRef50_P28303: DNA-damage-inducible protein F	18.7671336104
+UniRef50_P28303: DNA-damage-inducible protein F|g__Escherichia.s__Escherichia_coli	18.7671336104
+UniRef50_P77460	18.7669006863
+UniRef50_P77460|g__Escherichia.s__Escherichia_coli	18.7669006863
+UniRef50_Q3J2X2: Phosphatidate cytidylyltransferase	18.7553552592
+UniRef50_Q3J2X2: Phosphatidate cytidylyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.7553552592
+UniRef50_N2K746: Carbon-nitrogen hydrolase family protein	18.7551388208
+UniRef50_N2K746: Carbon-nitrogen hydrolase family protein|g__Escherichia.s__Escherichia_coli	18.7551388208
+UniRef50_Q8ZQ16: Ribosomal large subunit pseudouridine synthase C	18.7537071221
+UniRef50_Q8ZQ16: Ribosomal large subunit pseudouridine synthase C|g__Escherichia.s__Escherichia_coli	18.7537071221
+UniRef50_A5UP79: Integrase-recombinase protein	18.7531862016
+UniRef50_A5UP79: Integrase-recombinase protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.7531862016
+UniRef50_P32677	18.7468075176
+UniRef50_P32677|g__Escherichia.s__Escherichia_coli	18.7468075176
+UniRef50_R7PYE0	18.7462395385
+UniRef50_R7PYE0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.7462395385
+UniRef50_B9KM71: Peptidase A24A, prepilin type IV	18.7387158655
+UniRef50_B9KM71: Peptidase A24A, prepilin type IV|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.7387158655
+UniRef50_A0RC17: Xanthine phosphoribosyltransferase	18.7335324608
+UniRef50_A0RC17: Xanthine phosphoribosyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	18.1717230470
+UniRef50_A0RC17: Xanthine phosphoribosyltransferase|unclassified	0.5618094138
+UniRef50_B9KNH5	18.7324013847
+UniRef50_B9KNH5|unclassified	10.2051861039
+UniRef50_B9KNH5|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.5272152808
+UniRef50_Q9L7R4: Putative sulfoquinovose importer	18.7272361429
+UniRef50_Q9L7R4: Putative sulfoquinovose importer|g__Escherichia.s__Escherichia_coli	18.7272361429
+UniRef50_D2ZRQ6: 4Fe-4S binding domain protein	18.7270544506
+UniRef50_D2ZRQ6: 4Fe-4S binding domain protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.7270544506
+UniRef50_A6QIG5	18.7224864640
+UniRef50_A6QIG5|g__Staphylococcus.s__Staphylococcus_aureus	13.8915685896
+UniRef50_A6QIG5|unclassified	4.8309178744
+UniRef50_Q28TH8: Protein-L-isoaspartate O-methyltransferase	18.7194401505
+UniRef50_Q28TH8: Protein-L-isoaspartate O-methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.7194401505
+UniRef50_F3U4G5	18.7091006347
+UniRef50_F3U4G5|unclassified	18.7091006347
+UniRef50_A0A011PJV0	18.6984719603
+UniRef50_A0A011PJV0|unclassified	18.6984719603
+UniRef50_A6TGA9: HTH-type transcriptional activator RhaS	18.6965853198
+UniRef50_A6TGA9: HTH-type transcriptional activator RhaS|g__Escherichia.s__Escherichia_coli	18.6965853198
+UniRef50_B1LL17: D-galactonate dehydratase 2	18.6921157221
+UniRef50_B1LL17: D-galactonate dehydratase 2|g__Escherichia.s__Escherichia_coli	18.6921157221
+UniRef50_E3A0J6	18.6915887850
+UniRef50_E3A0J6|unclassified	18.6915887850
+UniRef50_K2AJG2: ABC branched-chain amino acid transporter family, inner membrane subunit (Fragment)	18.6869774410
+UniRef50_K2AJG2: ABC branched-chain amino acid transporter family, inner membrane subunit (Fragment)|unclassified	18.6869774410
+UniRef50_Q836B1: UPF0473 protein EF_1204	18.6806622040
+UniRef50_Q836B1: UPF0473 protein EF_1204|g__Streptococcus.s__Streptococcus_mutans	18.6806622040
+UniRef50_A0A023WMY2: Amino acid transporter	18.6689275995
+UniRef50_A0A023WMY2: Amino acid transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.3288812566
+UniRef50_A0A023WMY2: Amino acid transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3400463429
+UniRef50_F2MRI9: PTS family mannose/fructose/sorbose porter component IIB	18.6671195327
+UniRef50_F2MRI9: PTS family mannose/fructose/sorbose porter component IIB|g__Clostridium.s__Clostridium_beijerinckii	18.6671195327
+UniRef50_Q8ZH57: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	18.6670100271
+UniRef50_Q8ZH57: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|g__Escherichia.s__Escherichia_coli	18.6043367493
+UniRef50_Q8ZH57: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|unclassified	0.0626732779
+UniRef50_P0AEW2: Hydrogenase-4 component E	18.6662278994
+UniRef50_P0AEW2: Hydrogenase-4 component E|g__Escherichia.s__Escherichia_coli	18.6662278994
+UniRef50_B9J8J7: Phosphate ABC transporter, permease protein PstC	18.6622370971
+UniRef50_B9J8J7: Phosphate ABC transporter, permease protein PstC|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.6622370971
+UniRef50_P77377: Lipopolysaccharide biosynthesis protein WzxC	18.6578801955
+UniRef50_P77377: Lipopolysaccharide biosynthesis protein WzxC|g__Escherichia.s__Escherichia_coli	18.5894251305
+UniRef50_P77377: Lipopolysaccharide biosynthesis protein WzxC|unclassified	0.0684550650
+UniRef50_Q4L697: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	18.6442032211
+UniRef50_Q4L697: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	18.6442032211
+UniRef50_F3U494	18.6411696946
+UniRef50_F3U494|unclassified	18.6411696946
+UniRef50_H5M601: Beta galactosidase small chain family protein	18.6410920641
+UniRef50_H5M601: Beta galactosidase small chain family protein|g__Escherichia.s__Escherichia_coli	18.6410920641
+UniRef50_Q9I767: 5'-nucleotidase	18.6374552948
+UniRef50_Q9I767: 5'-nucleotidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.6374552948
+UniRef50_A5UNB1: Multidrug ABC transporter, permease component	18.6368208833
+UniRef50_A5UNB1: Multidrug ABC transporter, permease component|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.6368208833
+UniRef50_F5M116	18.6364514278
+UniRef50_F5M116|unclassified	18.6364514278
+UniRef50_T7JLC1	18.6320567070
+UniRef50_T7JLC1|g__Escherichia.s__Escherichia_coli	18.6207202148
+UniRef50_T7JLC1|unclassified	0.0113364922
+UniRef50_B9KRH6: CBR-SDC-3 protein	18.6305528208
+UniRef50_B9KRH6: CBR-SDC-3 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.6031746032
+UniRef50_B9KRH6: CBR-SDC-3 protein|unclassified	8.0273782176
+UniRef50_B9KX60	18.6229296191
+UniRef50_B9KX60|unclassified	18.6229296191
+UniRef50_D9RMZ4	18.6217717896
+UniRef50_D9RMZ4|g__Staphylococcus.s__Staphylococcus_aureus	18.0808495305
+UniRef50_D9RMZ4|unclassified	0.5409222591
+UniRef50_B7UZW2: Ecotin	18.6102821105
+UniRef50_B7UZW2: Ecotin|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.6102821105
+UniRef50_A5UN38: Tungsten formylmethanofuran dehydrogenase, subunit D, FwdD	18.6093452178
+UniRef50_A5UN38: Tungsten formylmethanofuran dehydrogenase, subunit D, FwdD|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.6093452178
+UniRef50_E4PHF9: Acyl-CoA dehydrogenase domain protein	18.6069573145
+UniRef50_E4PHF9: Acyl-CoA dehydrogenase domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.8522403334
+UniRef50_E4PHF9: Acyl-CoA dehydrogenase domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.7547169811
+UniRef50_A1B414: General secretory system II, protein E domain protein	18.6062804731
+UniRef50_A1B414: General secretory system II, protein E domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.6062804731
+UniRef50_P18775: Dimethyl sulfoxide reductase DmsA	18.5966228938
+UniRef50_P18775: Dimethyl sulfoxide reductase DmsA|g__Escherichia.s__Escherichia_coli	18.5966228938
+UniRef50_A6TF99: Undecaprenyl-phosphate 4-deoxy-4-formamido-L-arabinose transferase	18.5891829903
+UniRef50_A6TF99: Undecaprenyl-phosphate 4-deoxy-4-formamido-L-arabinose transferase|g__Escherichia.s__Escherichia_coli	18.5891829903
+UniRef50_O27088: Type 2 DNA topoisomerase 6 subunit B	18.5871030691
+UniRef50_O27088: Type 2 DNA topoisomerase 6 subunit B|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.5871030691
+UniRef50_V5UK09: Formate dehydrogenase subunit beta	18.5817494764
+UniRef50_V5UK09: Formate dehydrogenase subunit beta|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.5817494764
+UniRef50_D3E2C7: RNA-binding protein	18.5813132869
+UniRef50_D3E2C7: RNA-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.5813132869
+UniRef50_T8JJU2: ATP-dependent helicase	18.5722601679
+UniRef50_T8JJU2: ATP-dependent helicase|g__Escherichia.s__Escherichia_coli	18.5722601679
+UniRef50_A1APL2: Carbonic anhydrase	18.5707218819
+UniRef50_A1APL2: Carbonic anhydrase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.5707218819
+UniRef50_Q2NEU9: Serine--tRNA ligase	18.5642243362
+UniRef50_Q2NEU9: Serine--tRNA ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.5642243362
+UniRef50_I4ZG50	18.5622273358
+UniRef50_I4ZG50|unclassified	18.5622273358
+UniRef50_V9VW16: Short-chain dehydrogenase	18.5614731894
+UniRef50_V9VW16: Short-chain dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.5614731894
+UniRef50_A1B2B5: Polysaccharide export protein	18.5611215524
+UniRef50_A1B2B5: Polysaccharide export protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.5611215524
+UniRef50_Q45388: Protein tex	18.5597079972
+UniRef50_Q45388: Protein tex|g__Escherichia.s__Escherichia_coli	14.7528349793
+UniRef50_Q45388: Protein tex|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.2364223618
+UniRef50_Q45388: Protein tex|g__Neisseria.s__Neisseria_meningitidis	0.5704506560
+UniRef50_D0DDK5	18.5511836356
+UniRef50_D0DDK5|unclassified	18.5511836356
+UniRef50_P0A9J7: Ribokinase	18.5506822806
+UniRef50_P0A9J7: Ribokinase|g__Escherichia.s__Escherichia_coli	18.4963378325
+UniRef50_P0A9J7: Ribokinase|unclassified	0.0543444481
+UniRef50_Q4JVZ1: Thiamine-phosphate synthase	18.5494967888
+UniRef50_Q4JVZ1: Thiamine-phosphate synthase|g__Propionibacterium.s__Propionibacterium_acnes	18.2625706888
+UniRef50_Q4JVZ1: Thiamine-phosphate synthase|unclassified	0.2869261001
+UniRef50_P31828: Probable zinc protease PqqL	18.5488698403
+UniRef50_P31828: Probable zinc protease PqqL|g__Escherichia.s__Escherichia_coli	18.5488698403
+UniRef50_A5UMP3: Probable cobalamin biosynthesis protein CobD	18.5477042802
+UniRef50_A5UMP3: Probable cobalamin biosynthesis protein CobD|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.5477042802
+UniRef50_B9KSF4	18.5466543856
+UniRef50_B9KSF4|unclassified	18.5466543856
+UniRef50_V5T2N8: Transcriptional regulator	18.5451515341
+UniRef50_V5T2N8: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.5451515341
+UniRef50_U5UBZ0: Integral membrane protein TerC	18.5391628826
+UniRef50_U5UBZ0: Integral membrane protein TerC|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.5391628826
+UniRef50_Q2NEN8: Predicted RNA-binding protein	18.5371460161
+UniRef50_Q2NEN8: Predicted RNA-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.5371460161
+UniRef50_D3E040: GTP:adenosylcobinamide-phosphate guanylyltransferase CobY	18.5362822077
+UniRef50_D3E040: GTP:adenosylcobinamide-phosphate guanylyltransferase CobY|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.5362822077
+UniRef50_M9RWY7	18.5247203705
+UniRef50_M9RWY7|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.5247203705
+UniRef50_Q2NE86: Bifunctional enzyme Fae/Hps	18.5229005915
+UniRef50_Q2NE86: Bifunctional enzyme Fae/Hps|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.5229005915
+UniRef50_Q8ZPK6: ATP-dependent dethiobiotin synthetase BioD 2	18.5221189712
+UniRef50_Q8ZPK6: ATP-dependent dethiobiotin synthetase BioD 2|g__Escherichia.s__Escherichia_coli	18.5221189712
+UniRef50_P15043: ATP-dependent DNA helicase RecQ	18.5206680275
+UniRef50_P15043: ATP-dependent DNA helicase RecQ|g__Escherichia.s__Escherichia_coli	18.5206680275
+UniRef50_P77308: Probable D,D-dipeptide transport system permease protein DdpB	18.5198491714
+UniRef50_P77308: Probable D,D-dipeptide transport system permease protein DdpB|g__Escherichia.s__Escherichia_coli	18.5198491714
+UniRef50_A4WXV3	18.5185185185
+UniRef50_A4WXV3|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.5185185185
+UniRef50_Q5FUN5: 50S ribosomal protein L32	18.5185185185
+UniRef50_Q5FUN5: 50S ribosomal protein L32|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.5185185185
+UniRef50_H3UJU5	18.5147163324
+UniRef50_H3UJU5|g__Staphylococcus.s__Staphylococcus_epidermidis	18.5147163324
+UniRef50_B7V0M2: Carbonic anhydrase	18.5139436683
+UniRef50_B7V0M2: Carbonic anhydrase|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.5139436683
+UniRef50_R7PUK9	18.5080591407
+UniRef50_R7PUK9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.5080591407
+UniRef50_F5LXK7	18.4998439262
+UniRef50_F5LXK7|unclassified	18.4998439262
+UniRef50_Q57242: ABC transporter ATP-binding protein uup-1	18.4982798371
+UniRef50_Q57242: ABC transporter ATP-binding protein uup-1|g__Escherichia.s__Escherichia_coli	18.4982798371
+UniRef50_B4TGE4: Succinylglutamate desuccinylase	18.4976721216
+UniRef50_B4TGE4: Succinylglutamate desuccinylase|g__Escherichia.s__Escherichia_coli	18.4976721216
+UniRef50_V0AFP3	18.4957665621
+UniRef50_V0AFP3|g__Escherichia.s__Escherichia_coli	14.5457496090
+UniRef50_V0AFP3|unclassified	3.9500169531
+UniRef50_M8YI17: CRISPR-associated protein Cas7/Cse4/CasC, subtype I-E	18.4955672850
+UniRef50_M8YI17: CRISPR-associated protein Cas7/Cse4/CasC, subtype I-E|g__Escherichia.s__Escherichia_coli	18.4955672850
+UniRef50_I5E3H6: Ion channel family protein	18.4928809897
+UniRef50_I5E3H6: Ion channel family protein|g__Escherichia.s__Escherichia_coli	18.4928809897
+UniRef50_B5F621: Mannonate dehydratase	18.4872159080
+UniRef50_B5F621: Mannonate dehydratase|g__Escherichia.s__Escherichia_coli	18.3617657067
+UniRef50_B5F621: Mannonate dehydratase|unclassified	0.1254502014
+UniRef50_UPI00036C8CDE: hypothetical protein	18.4828174246
+UniRef50_UPI00036C8CDE: hypothetical protein|unclassified	18.4828174246
+UniRef50_A3PHP4: Putative ECF/RNA polymerase sigma factor protein	18.4794055352
+UniRef50_A3PHP4: Putative ECF/RNA polymerase sigma factor protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.4863985422
+UniRef50_A3PHP4: Putative ECF/RNA polymerase sigma factor protein|unclassified	6.9930069930
+UniRef50_O27296: Putative 6-carboxy-5,6,7,8-tetrahydropterin synthase	18.4742219856
+UniRef50_O27296: Putative 6-carboxy-5,6,7,8-tetrahydropterin synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.4742219856
+UniRef50_S9QTF6	18.4725429711
+UniRef50_S9QTF6|unclassified	18.4725429711
+UniRef50_P20966: PTS system fructose-specific EIIBC component	18.4648838466
+UniRef50_P20966: PTS system fructose-specific EIIBC component|g__Escherichia.s__Escherichia_coli	17.1024348166
+UniRef50_P20966: PTS system fructose-specific EIIBC component|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6854009596
+UniRef50_P20966: PTS system fructose-specific EIIBC component|g__Acinetobacter.s__Acinetobacter_baumannii	0.6770480704
+UniRef50_UPI000463295C: hypothetical protein	18.4648562828
+UniRef50_UPI000463295C: hypothetical protein|unclassified	18.4648562828
+UniRef50_P76537	18.4624872469
+UniRef50_P76537|g__Escherichia.s__Escherichia_coli	18.4624872469
+UniRef50_P0A9Q3: Aerobic respiration control protein ArcA	18.4615529303
+UniRef50_P0A9Q3: Aerobic respiration control protein ArcA|g__Escherichia.s__Escherichia_coli	18.4615529303
+UniRef50_Q1D759: 50S ribosomal protein L18	18.4614269748
+UniRef50_Q1D759: 50S ribosomal protein L18|g__Staphylococcus.s__Staphylococcus_epidermidis	15.6524382107
+UniRef50_Q1D759: 50S ribosomal protein L18|g__Clostridium.s__Clostridium_beijerinckii	2.8089887640
+UniRef50_A1AC10: Phosphoribosylglycinamide formyltransferase 2	18.4613649162
+UniRef50_A1AC10: Phosphoribosylglycinamide formyltransferase 2|g__Escherichia.s__Escherichia_coli	18.4613649162
+UniRef50_O26480: UDP-glucose 4-epimerase homolog	18.4613604790
+UniRef50_O26480: UDP-glucose 4-epimerase homolog|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.4613604790
+UniRef50_Q3IV70: Polysaccharide export protein	18.4601179428
+UniRef50_Q3IV70: Polysaccharide export protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.4601179428
+UniRef50_A3PRH2	18.4563544047
+UniRef50_A3PRH2|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.4563544047
+UniRef50_P52002: Multidrug resistance protein MexB	18.4322088096
+UniRef50_P52002: Multidrug resistance protein MexB|g__Escherichia.s__Escherichia_coli	11.9129807963
+UniRef50_P52002: Multidrug resistance protein MexB|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5192280133
+UniRef50_Q46821: Uric acid transporter UacT	18.4304358781
+UniRef50_Q46821: Uric acid transporter UacT|g__Escherichia.s__Escherichia_coli	18.4304358781
+UniRef50_P07023: T-protein	18.4278652609
+UniRef50_P07023: T-protein|g__Escherichia.s__Escherichia_coli	18.4278652609
+UniRef50_A4WTR8	18.4276121542
+UniRef50_A4WTR8|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.1283846954
+UniRef50_A4WTR8|unclassified	1.2992274588
+UniRef50_G1Y149	18.4225049030
+UniRef50_G1Y149|unclassified	18.4225049030
+UniRef50_A8GIP4: Lysine--tRNA ligase	18.4158505185
+UniRef50_A8GIP4: Lysine--tRNA ligase|g__Escherichia.s__Escherichia_coli	18.3540263826
+UniRef50_A8GIP4: Lysine--tRNA ligase|unclassified	0.0618241359
+UniRef50_A7I8B8: Proteasome-activating nucleotidase	18.4101657752
+UniRef50_A7I8B8: Proteasome-activating nucleotidase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.4101657752
+UniRef50_P07822: Iron(3+)-hydroxamate-binding protein FhuD	18.4078748007
+UniRef50_P07822: Iron(3+)-hydroxamate-binding protein FhuD|g__Escherichia.s__Escherichia_coli	18.4078748007
+UniRef50_B7V4B9	18.4003048906
+UniRef50_B7V4B9|unclassified	16.4122333200
+UniRef50_B7V4B9|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9880715706
+UniRef50_Q9K1P6: Efem/EfeO family lipoprotein NMB0035	18.3947977379
+UniRef50_Q9K1P6: Efem/EfeO family lipoprotein NMB0035|g__Escherichia.s__Escherichia_coli	18.3947977379
+UniRef50_F0DGH5: Metallo-beta-lactamase superfamily protein	18.3894804418
+UniRef50_F0DGH5: Metallo-beta-lactamase superfamily protein|g__Staphylococcus.s__Staphylococcus_aureus	17.5438596491
+UniRef50_F0DGH5: Metallo-beta-lactamase superfamily protein|unclassified	0.8456207926
+UniRef50_P75748	18.3844967138
+UniRef50_P75748|g__Escherichia.s__Escherichia_coli	18.3844967138
+UniRef50_K1ZYU3	18.3823529412
+UniRef50_K1ZYU3|unclassified	18.3823529412
+UniRef50_A5UN13: Cytosine deaminase	18.3754958800
+UniRef50_A5UN13: Cytosine deaminase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.3754958800
+UniRef50_Q4L611: RNA-binding protein Hfq	18.3741142269
+UniRef50_Q4L611: RNA-binding protein Hfq|g__Staphylococcus.s__Staphylococcus_epidermidis	11.7951668585
+UniRef50_Q4L611: RNA-binding protein Hfq|g__Staphylococcus.s__Staphylococcus_aureus	6.5789473684
+UniRef50_Q3IZN1: NAD kinase	18.3662628918
+UniRef50_Q3IZN1: NAD kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.4422722523
+UniRef50_Q3IZN1: NAD kinase|unclassified	3.9239906395
+UniRef50_B9E6S4: Exogenous DNA-binding protein comGC homolog	18.3583573667
+UniRef50_B9E6S4: Exogenous DNA-binding protein comGC homolog|g__Staphylococcus.s__Staphylococcus_epidermidis	11.8858654573
+UniRef50_B9E6S4: Exogenous DNA-binding protein comGC homolog|g__Staphylococcus.s__Staphylococcus_aureus	6.4724919094
+UniRef50_T9JSA5: DNA-binding transcriptional activator	18.3534715582
+UniRef50_T9JSA5: DNA-binding transcriptional activator|g__Escherichia.s__Escherichia_coli	18.3534715582
+UniRef50_Q8DRN9	18.3501776636
+UniRef50_Q8DRN9|g__Streptococcus.s__Streptococcus_mutans	18.3501776636
+UniRef50_F8H6V7: Cytochrome C oxidase assembly protein	18.3501683502
+UniRef50_F8H6V7: Cytochrome C oxidase assembly protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.3501683502
+UniRef50_A5UMT8: Glycosyltransferase, GT2 family	18.3475314161
+UniRef50_A5UMT8: Glycosyltransferase, GT2 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.3475314161
+UniRef50_B9KRF2	18.3457970414
+UniRef50_B9KRF2|unclassified	18.3457970414
+UniRef50_A6M320: Putative competence-damage inducible protein	18.3435587422
+UniRef50_A6M320: Putative competence-damage inducible protein|g__Clostridium.s__Clostridium_beijerinckii	18.3435587422
+UniRef50_A6QGY4: Extracellular matrix-binding protein EbhA	18.3434542760
+UniRef50_A6QGY4: Extracellular matrix-binding protein EbhA|g__Staphylococcus.s__Staphylococcus_aureus	18.3434542760
+UniRef50_E3GXS5	18.3417501962
+UniRef50_E3GXS5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.3417501962
+UniRef50_T9UYJ0: Acetate CoA-transferase subunit alpha	18.3408876065
+UniRef50_T9UYJ0: Acetate CoA-transferase subunit alpha|g__Escherichia.s__Escherichia_coli	18.3408876065
+UniRef50_P16684: Probable transcriptional regulator PhnF	18.3382223909
+UniRef50_P16684: Probable transcriptional regulator PhnF|g__Escherichia.s__Escherichia_coli	18.3382223909
+UniRef50_V0L6T7: Glycine dehydrogenase	18.3368140237
+UniRef50_V0L6T7: Glycine dehydrogenase|g__Escherichia.s__Escherichia_coli	18.3368140237
+UniRef50_J7QYM6: ATPase	18.3346065699
+UniRef50_J7QYM6: ATPase|g__Escherichia.s__Escherichia_coli	18.3346065699
+UniRef50_Q46896: CRISPR-associated endonuclease Cas1	18.3321560648
+UniRef50_Q46896: CRISPR-associated endonuclease Cas1|g__Escherichia.s__Escherichia_coli	18.3321560648
+UniRef50_P45769	18.3311430696
+UniRef50_P45769|g__Escherichia.s__Escherichia_coli	18.3311430696
+UniRef50_Q8X5K0: 2-hydroxy-6-oxononadienedioate/2-hydroxy-6-oxononatrienedioate hydrolase	18.3279660518
+UniRef50_Q8X5K0: 2-hydroxy-6-oxononadienedioate/2-hydroxy-6-oxononatrienedioate hydrolase|g__Escherichia.s__Escherichia_coli	18.3279660518
+UniRef50_P0AE89: Transcriptional regulatory protein CpxR	18.3275807919
+UniRef50_P0AE89: Transcriptional regulatory protein CpxR|g__Escherichia.s__Escherichia_coli	18.3275807919
+UniRef50_Q58944	18.3255389449
+UniRef50_Q58944|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.3255389449
+UniRef50_A1B9F5: DNA ligase	18.3149304226
+UniRef50_A1B9F5: DNA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.2978559453
+UniRef50_A1B9F5: DNA ligase|unclassified	0.0170744773
+UniRef50_A5UMV1: Glycosyltransferase, GT2 family	18.3082206336
+UniRef50_A5UMV1: Glycosyltransferase, GT2 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.3082206336
+UniRef50_P39379	18.3035729321
+UniRef50_P39379|g__Escherichia.s__Escherichia_coli	18.3035729321
+UniRef50_Q6D6Y6: Putrescine aminotransferase	18.3032400263
+UniRef50_Q6D6Y6: Putrescine aminotransferase|g__Escherichia.s__Escherichia_coli	18.3032400263
+UniRef50_P0AAR6: Inner membrane protein YbaN	18.3027510217
+UniRef50_P0AAR6: Inner membrane protein YbaN|g__Escherichia.s__Escherichia_coli	18.3027510217
+UniRef50_B9KMK5	18.2982527500
+UniRef50_B9KMK5|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.8571428571
+UniRef50_B9KMK5|unclassified	0.4411098929
+UniRef50_E6IF75	18.2944968673
+UniRef50_E6IF75|unclassified	18.2944968673
+UniRef50_Q8CRZ1	18.2890283913
+UniRef50_Q8CRZ1|g__Staphylococcus.s__Staphylococcus_epidermidis	18.2890283913
+UniRef50_D2ZP15	18.2763871662
+UniRef50_D2ZP15|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.3461546081
+UniRef50_D2ZP15|unclassified	0.9302325581
+UniRef50_O27156: CRISPR-associated endonuclease Cas1	18.2731663540
+UniRef50_O27156: CRISPR-associated endonuclease Cas1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.2731663540
+UniRef50_A7ZR24: Chromosome initiation inhibitor	18.2713823770
+UniRef50_A7ZR24: Chromosome initiation inhibitor|g__Escherichia.s__Escherichia_coli	18.2713823770
+UniRef50_B6I479	18.2675364854
+UniRef50_B6I479|g__Escherichia.s__Escherichia_coli	16.6666666667
+UniRef50_B6I479|unclassified	1.6008698187
+UniRef50_A0A026XYW8: Hemolysin E	18.2661387740
+UniRef50_A0A026XYW8: Hemolysin E|g__Escherichia.s__Escherichia_coli	18.2661387740
+UniRef50_Q46844	18.2636199635
+UniRef50_Q46844|g__Escherichia.s__Escherichia_coli	18.2636199635
+UniRef50_Q88IQ4: Sensor histidine kinase/response regulator	18.2545350114
+UniRef50_Q88IQ4: Sensor histidine kinase/response regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.2545350114
+UniRef50_Q1GV37: UPF0262 protein Sala_0765	18.2533954252
+UniRef50_Q1GV37: UPF0262 protein Sala_0765|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.1640882036
+UniRef50_Q1GV37: UPF0262 protein Sala_0765|unclassified	0.0893072216
+UniRef50_H3WBP5	18.2506833008
+UniRef50_H3WBP5|g__Staphylococcus.s__Staphylococcus_epidermidis	18.2506833008
+UniRef50_Q2NFY4: Cytidylate kinase	18.2451111163
+UniRef50_Q2NFY4: Cytidylate kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.2451111163
+UniRef50_Q1GMP5: Inner-membrane translocator	18.2372270685
+UniRef50_Q1GMP5: Inner-membrane translocator|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.2372270685
+UniRef50_A4WVU7	18.2367149758
+UniRef50_A4WVU7|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.2367149758
+UniRef50_P03740: Tail fiber assembly protein	18.2353913514
+UniRef50_P03740: Tail fiber assembly protein|g__Escherichia.s__Escherichia_coli	18.2353913514
+UniRef50_Q9KV18: Putative ribosome biogenesis GTPase RsgA	18.2298327745
+UniRef50_Q9KV18: Putative ribosome biogenesis GTPase RsgA|g__Escherichia.s__Escherichia_coli	18.2298327745
+UniRef50_C4K7U8: 5-formyltetrahydrofolate cyclo-ligase	18.2296661741
+UniRef50_C4K7U8: 5-formyltetrahydrofolate cyclo-ligase|g__Escherichia.s__Escherichia_coli	18.2296661741
+UniRef50_F8GRS8: Ring-cleavage extradiol dioxygenase	18.2256974988
+UniRef50_F8GRS8: Ring-cleavage extradiol dioxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.2256974988
+UniRef50_B4EUV9: Glutamate--cysteine ligase	18.2238785474
+UniRef50_B4EUV9: Glutamate--cysteine ligase|g__Escherichia.s__Escherichia_coli	18.2238785474
+UniRef50_P0A949: Ribosomal-protein-alanine acetyltransferase	18.2214574212
+UniRef50_P0A949: Ribosomal-protein-alanine acetyltransferase|g__Escherichia.s__Escherichia_coli	18.2214574212
+UniRef50_A7ZT16	18.2110627184
+UniRef50_A7ZT16|g__Escherichia.s__Escherichia_coli	18.2110627184
+UniRef50_A7MN74: NAD-dependent malic enzyme	18.2104992031
+UniRef50_A7MN74: NAD-dependent malic enzyme|g__Escherichia.s__Escherichia_coli	15.9612367213
+UniRef50_A7MN74: NAD-dependent malic enzyme|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2492624818
+UniRef50_UPI0003A64EF7: hypothetical protein	18.2097678539
+UniRef50_UPI0003A64EF7: hypothetical protein|unclassified	18.2097678539
+UniRef50_UPI0002F33E46: hypothetical protein	18.2092610868
+UniRef50_UPI0002F33E46: hypothetical protein|unclassified	18.2092610868
+UniRef50_A5UKE8: Type II secretion system protein F, GspF	18.2040955857
+UniRef50_A5UKE8: Type II secretion system protein F, GspF|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.2040955857
+UniRef50_UPI0004652E03: hypothetical protein	18.2015515357
+UniRef50_UPI0004652E03: hypothetical protein|unclassified	18.2015515357
+UniRef50_P65809	18.1951772576
+UniRef50_P65809|g__Escherichia.s__Escherichia_coli	18.1951772576
+UniRef50_A5UJ59	18.1818181818
+UniRef50_A5UJ59|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.1818181818
+UniRef50_D4HE54	18.1818181818
+UniRef50_D4HE54|g__Propionibacterium.s__Propionibacterium_acnes	18.1818181818
+UniRef50_P76270: Free methionine-R-sulfoxide reductase	18.1818181818
+UniRef50_P76270: Free methionine-R-sulfoxide reductase|g__Escherichia.s__Escherichia_coli	18.1818181818
+UniRef50_H6LL26	18.1807112661
+UniRef50_H6LL26|g__Staphylococcus.s__Staphylococcus_aureus	15.3717225020
+UniRef50_H6LL26|unclassified	2.8089887640
+UniRef50_E8XP36: Outer membrane protein assembly factor BamC	18.1780363955
+UniRef50_E8XP36: Outer membrane protein assembly factor BamC|g__Escherichia.s__Escherichia_coli	18.1780363955
+UniRef50_A6U344	18.1778457883
+UniRef50_A6U344|g__Staphylococcus.s__Staphylococcus_aureus	18.1167694299
+UniRef50_A6U344|unclassified	0.0610763584
+UniRef50_B9KSU7	18.1757733064
+UniRef50_B9KSU7|unclassified	18.1757733064
+UniRef50_A3PNK2: OstA family protein	18.1619643651
+UniRef50_A3PNK2: OstA family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.6915136658
+UniRef50_A3PNK2: OstA family protein|unclassified	3.4704506993
+UniRef50_A7MQ64: Secretion monitor	18.1612196005
+UniRef50_A7MQ64: Secretion monitor|g__Escherichia.s__Escherichia_coli	18.1612196005
+UniRef50_M9VMF8: DNase	18.1610138511
+UniRef50_M9VMF8: DNase|g__Propionibacterium.s__Propionibacterium_acnes	18.1610138511
+UniRef50_E5QY81	18.1542643515
+UniRef50_E5QY81|g__Staphylococcus.s__Staphylococcus_aureus	17.3002099164
+UniRef50_E5QY81|unclassified	0.8540544351
+UniRef50_D3EXH9: Truncated transposase	18.1519589742
+UniRef50_D3EXH9: Truncated transposase|g__Staphylococcus.s__Staphylococcus_aureus	18.1519589742
+UniRef50_M9RJP3	18.1518551855
+UniRef50_M9RJP3|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.1518551855
+UniRef50_L4XYK7: Methyl-accepting chemotaxis protein III	18.1504325267
+UniRef50_L4XYK7: Methyl-accepting chemotaxis protein III|g__Escherichia.s__Escherichia_coli	18.1504325267
+UniRef50_Q47427: Tail fiber assembly protein homolog	18.1484905823
+UniRef50_Q47427: Tail fiber assembly protein homolog|g__Escherichia.s__Escherichia_coli	18.1484905823
+UniRef50_P0AC77: 3-deoxy-D-manno-octulosonic acid transferase	18.1397834122
+UniRef50_P0AC77: 3-deoxy-D-manno-octulosonic acid transferase|g__Escherichia.s__Escherichia_coli	9.7341927439
+UniRef50_P0AC77: 3-deoxy-D-manno-octulosonic acid transferase|g__Staphylococcus.s__Staphylococcus_aureus	8.2644628099
+UniRef50_P0AC77: 3-deoxy-D-manno-octulosonic acid transferase|unclassified	0.1411278584
+UniRef50_G9G286: IS5 transposase	18.1380099078
+UniRef50_G9G286: IS5 transposase|g__Escherichia.s__Escherichia_coli	18.1380099078
+UniRef50_P58497: Transcriptional regulator ModE	18.1346575767
+UniRef50_P58497: Transcriptional regulator ModE|g__Escherichia.s__Escherichia_coli	18.1346575767
+UniRef50_J0NFY0	18.1300813008
+UniRef50_J0NFY0|unclassified	18.1300813008
+UniRef50_D3E1X0	18.1280108093
+UniRef50_D3E1X0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.1280108093
+UniRef50_C4ZZ24: ATPase RavA	18.1212013005
+UniRef50_C4ZZ24: ATPase RavA|g__Escherichia.s__Escherichia_coli	17.9346445278
+UniRef50_C4ZZ24: ATPase RavA|unclassified	0.1865567726
+UniRef50_P09831: Glutamate synthase [NADPH] large chain	18.1185780642
+UniRef50_P09831: Glutamate synthase [NADPH] large chain|g__Escherichia.s__Escherichia_coli	18.1088167814
+UniRef50_P09831: Glutamate synthase [NADPH] large chain|unclassified	0.0097612828
+UniRef50_A6TC48: Cell division protein ZipA homolog	18.1185043517
+UniRef50_A6TC48: Cell division protein ZipA homolog|g__Escherichia.s__Escherichia_coli	18.1185043517
+UniRef50_A3PM57: OmpA domain protein	18.1162811428
+UniRef50_A3PM57: OmpA domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.1162811428
+UniRef50_D8HG20: Probable membrane protein	18.1109343944
+UniRef50_D8HG20: Probable membrane protein|g__Staphylococcus.s__Staphylococcus_aureus	18.1109343944
+UniRef50_P31453	18.1083405190
+UniRef50_P31453|g__Escherichia.s__Escherichia_coli	18.1083405190
+UniRef50_P0ABG8: Rod shape-determining protein RodA	18.1018969253
+UniRef50_P0ABG8: Rod shape-determining protein RodA|g__Escherichia.s__Escherichia_coli	18.1018969253
+UniRef50_P77736: Putative ankyrin repeat protein YahD	18.0999999840
+UniRef50_P77736: Putative ankyrin repeat protein YahD|g__Escherichia.s__Escherichia_coli	18.0999999840
+UniRef50_K0WKW0: Putrescine-binding periplasmic protein	18.0996525342
+UniRef50_K0WKW0: Putrescine-binding periplasmic protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.0996525342
+UniRef50_D2ZNN2	18.0960197001
+UniRef50_D2ZNN2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.0960197001
+UniRef50_G4LC92	18.0945818088
+UniRef50_G4LC92|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.0945818088
+UniRef50_Q8YF84: Glutamate synthase (Nadph) small chain	18.0920516377
+UniRef50_Q8YF84: Glutamate synthase (Nadph) small chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.0920516377
+UniRef50_R5DQC2	18.0895811060
+UniRef50_R5DQC2|unclassified	18.0895811060
+UniRef50_Q8EGH1: Ditrans,polycis-undecaprenyl-diphosphate synthase ((2E,6E)-farnesyl-diphosphate specific)	18.0895635756
+UniRef50_Q8EGH1: Ditrans,polycis-undecaprenyl-diphosphate synthase ((2E,6E)-farnesyl-diphosphate specific)|g__Escherichia.s__Escherichia_coli	18.0355516925
+UniRef50_Q8EGH1: Ditrans,polycis-undecaprenyl-diphosphate synthase ((2E,6E)-farnesyl-diphosphate specific)|unclassified	0.0540118830
+UniRef50_Q5HR24: IS1272-like transposase, degenerate	18.0840653552
+UniRef50_Q5HR24: IS1272-like transposase, degenerate|g__Staphylococcus.s__Staphylococcus_epidermidis	16.7400293451
+UniRef50_Q5HR24: IS1272-like transposase, degenerate|unclassified	1.3440360102
+UniRef50_P75617: UPF0174 protein YaaW	18.0808035639
+UniRef50_P75617: UPF0174 protein YaaW|g__Escherichia.s__Escherichia_coli	18.0808035639
+UniRef50_P75958: Lipoprotein-releasing system transmembrane protein LolE	18.0716430589
+UniRef50_P75958: Lipoprotein-releasing system transmembrane protein LolE|g__Escherichia.s__Escherichia_coli	18.0716430589
+UniRef50_B9KUP5	18.0667009524
+UniRef50_B9KUP5|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.1559541400
+UniRef50_B9KUP5|unclassified	0.9107468124
+UniRef50_A6VC46	18.0654423641
+UniRef50_A6VC46|g__Pseudomonas.s__Pseudomonas_aeruginosa	18.0654423641
+UniRef50_A5UM19: Predicted permease	18.0646470056
+UniRef50_A5UM19: Predicted permease|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.0646470056
+UniRef50_B9K7Q2: Cold-shock DNA-binding protein family	18.0555555556
+UniRef50_B9K7Q2: Cold-shock DNA-binding protein family|g__Staphylococcus.s__Staphylococcus_aureus	18.0555555556
+UniRef50_C7ZWQ8	18.0550494161
+UniRef50_C7ZWQ8|g__Staphylococcus.s__Staphylococcus_aureus	18.0550494161
+UniRef50_X2MU68: 3-deoxy-manno-octulosonate cytidylyltransferase	18.0548206537
+UniRef50_X2MU68: 3-deoxy-manno-octulosonate cytidylyltransferase|g__Escherichia.s__Escherichia_coli	18.0548206537
+UniRef50_P28915	18.0532564172
+UniRef50_P28915|g__Escherichia.s__Escherichia_coli	18.0532564172
+UniRef50_A8LJB0: NADH:ubiquinone oxidoreductase 17.2 kD subunit	18.0507945411
+UniRef50_A8LJB0: NADH:ubiquinone oxidoreductase 17.2 kD subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.0507945411
+UniRef50_P36674: HTH-type transcriptional regulator TreR	18.0490104656
+UniRef50_P36674: HTH-type transcriptional regulator TreR|g__Escherichia.s__Escherichia_coli	18.0490104656
+UniRef50_R7PRX7: Predicted DNA-directed RNA polymerase subunit M RpoM	18.0362167232
+UniRef50_R7PRX7: Predicted DNA-directed RNA polymerase subunit M RpoM|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.0362167232
+UniRef50_A5UMF4: Replication factor C large subunit	18.0325759182
+UniRef50_A5UMF4: Replication factor C large subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.0325759182
+UniRef50_P27669: Regulatory protein UhpC	18.0265394468
+UniRef50_P27669: Regulatory protein UhpC|g__Escherichia.s__Escherichia_coli	18.0265394468
+UniRef50_O26774: Prefoldin subunit beta	18.0168446644
+UniRef50_O26774: Prefoldin subunit beta|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.0168446644
+UniRef50_P26170: Bacteriochlorophyll synthase 33 kDa chain	18.0168196749
+UniRef50_P26170: Bacteriochlorophyll synthase 33 kDa chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	18.0168196749
+UniRef50_P28630: DNA polymerase III subunit delta	18.0153467533
+UniRef50_P28630: DNA polymerase III subunit delta|g__Escherichia.s__Escherichia_coli	18.0153467533
+UniRef50_P45767: Putative amino-acid ABC transporter permease protein YhdX	18.0132663499
+UniRef50_P45767: Putative amino-acid ABC transporter permease protein YhdX|g__Escherichia.s__Escherichia_coli	18.0132663499
+UniRef50_P57408: UPF0053 protein BU323	18.0127722974
+UniRef50_P57408: UPF0053 protein BU323|g__Escherichia.s__Escherichia_coli	18.0127722974
+UniRef50_O27636: ORC1-type DNA replication protein 2	18.0123081303
+UniRef50_O27636: ORC1-type DNA replication protein 2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.0123081303
+UniRef50_Q8TY90: 50S ribosomal protein L3	18.0119159750
+UniRef50_Q8TY90: 50S ribosomal protein L3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	18.0119159750
+UniRef50_D3E2D0	18.0067628449
+UniRef50_D3E2D0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.7642546693
+UniRef50_D3E2D0|unclassified	0.2425081756
+UniRef50_D3QHT5: Resolvase/integrase	18.0045014657
+UniRef50_D3QHT5: Resolvase/integrase|unclassified	18.0045014657
+UniRef50_I7HSU0	17.9973678698
+UniRef50_I7HSU0|unclassified	17.9973678698
+UniRef50_L1KEI6	17.9967777940
+UniRef50_L1KEI6|unclassified	17.9967777940
+UniRef50_Q21LN7: tRNA (cytidine(34)-2'-O)-methyltransferase	17.9917263595
+UniRef50_Q21LN7: tRNA (cytidine(34)-2'-O)-methyltransferase|g__Escherichia.s__Escherichia_coli	17.9917263595
+UniRef50_P76123	17.9906563919
+UniRef50_P76123|g__Escherichia.s__Escherichia_coli	17.9906563919
+UniRef50_G4LHN0	17.9869021004
+UniRef50_G4LHN0|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.2106896813
+UniRef50_G4LHN0|unclassified	4.7762124191
+UniRef50_Q2NFV7: 50S ribosomal protein L4	17.9841979690
+UniRef50_Q2NFV7: 50S ribosomal protein L4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.9841979690
+UniRef50_B2IDG3: Signal recognition particle receptor FtsY	17.9781367453
+UniRef50_B2IDG3: Signal recognition particle receptor FtsY|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.9781367453
+UniRef50_P0A1A6: Branched-chain-amino-acid aminotransferase	17.9774935293
+UniRef50_P0A1A6: Branched-chain-amino-acid aminotransferase|g__Escherichia.s__Escherichia_coli	17.1579185763
+UniRef50_P0A1A6: Branched-chain-amino-acid aminotransferase|unclassified	0.8195749531
+UniRef50_Q8X8Q3	17.9738033340
+UniRef50_Q8X8Q3|g__Escherichia.s__Escherichia_coli	17.9738033340
+UniRef50_P52129: mRNA endoribonuclease LS	17.9729683251
+UniRef50_P52129: mRNA endoribonuclease LS|g__Escherichia.s__Escherichia_coli	17.9729683251
+UniRef50_L0WME5: N-acetyl-anhydromuranmyl-L-alanine amidase	17.9695601417
+UniRef50_L0WME5: N-acetyl-anhydromuranmyl-L-alanine amidase|g__Acinetobacter.s__Acinetobacter_baumannii	17.9695601417
+UniRef50_A5UNK1: Nitroreductase, NfnB	17.9604136474
+UniRef50_A5UNK1: Nitroreductase, NfnB|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.9604136474
+UniRef50_Q3IVV6: Polysaccharide export transporter, PST Family	17.9551028633
+UniRef50_Q3IVV6: Polysaccharide export transporter, PST Family|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.9551028633
+UniRef50_Q3J385	17.9507338040
+UniRef50_Q3J385|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.7887782762
+UniRef50_Q3J385|unclassified	0.1619555278
+UniRef50_P0A913: Peptidoglycan-associated lipoprotein	17.9492734999
+UniRef50_P0A913: Peptidoglycan-associated lipoprotein|g__Escherichia.s__Escherichia_coli	17.9492734999
+UniRef50_P45061: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase	17.9403198747
+UniRef50_P45061: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase|g__Escherichia.s__Escherichia_coli	17.9403198747
+UniRef50_Q6GIK4: Clumping factor A	17.9384800428
+UniRef50_Q6GIK4: Clumping factor A|g__Staphylococcus.s__Staphylococcus_aureus	17.9384800428
+UniRef50_M9R704: Spermidine/putrescine ABC transporter ATP-binding protein	17.9332165767
+UniRef50_M9R704: Spermidine/putrescine ABC transporter ATP-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.9332165767
+UniRef50_B9TN03	17.9325588052
+UniRef50_B9TN03|unclassified	17.9325588052
+UniRef50_R6FR88: Two-component system response regulator	17.9293407562
+UniRef50_R6FR88: Two-component system response regulator|g__Clostridium.s__Clostridium_beijerinckii	17.9293407562
+UniRef50_A3PPA1	17.9290996019
+UniRef50_A3PPA1|unclassified	16.2019838851
+UniRef50_A3PPA1|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.7271157168
+UniRef50_A6VPF4: 30S ribosomal protein S9	17.9243718056
+UniRef50_A6VPF4: 30S ribosomal protein S9|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.3668270486
+UniRef50_A6VPF4: 30S ribosomal protein S9|g__Streptococcus.s__Streptococcus_mutans	2.5575447570
+UniRef50_I6Z3X6	17.9228589409
+UniRef50_I6Z3X6|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.9228589409
+UniRef50_P67097: Phosphodiesterase YfcE	17.9059412922
+UniRef50_P67097: Phosphodiesterase YfcE|g__Escherichia.s__Escherichia_coli	17.9059412922
+UniRef50_Q98IW7: Mll2215 protein	17.9032693247
+UniRef50_Q98IW7: Mll2215 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.9032693247
+UniRef50_A5UP51	17.9026217228
+UniRef50_A5UP51|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.9026217228
+UniRef50_Q1GEA8: Twin-arginine translocation pathway signal	17.9013346615
+UniRef50_Q1GEA8: Twin-arginine translocation pathway signal|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.8324223831
+UniRef50_Q1GEA8: Twin-arginine translocation pathway signal|unclassified	0.0689122784
+UniRef50_O27906: CoB--CoM heterodisulfide reductase iron-sulfur subunit C	17.8992232314
+UniRef50_O27906: CoB--CoM heterodisulfide reductase iron-sulfur subunit C|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.8992232314
+UniRef50_Q47158	17.8962477568
+UniRef50_Q47158|g__Escherichia.s__Escherichia_coli	17.8962477568
+UniRef50_A7MER9: Outer-membrane lipoprotein carrier protein	17.8935453914
+UniRef50_A7MER9: Outer-membrane lipoprotein carrier protein|g__Escherichia.s__Escherichia_coli	17.8935453914
+UniRef50_P77555: Ureidoglycolate dehydrogenase (NAD(+))	17.8885605610
+UniRef50_P77555: Ureidoglycolate dehydrogenase (NAD(+))|g__Escherichia.s__Escherichia_coli	17.8885605610
+UniRef50_Q8DW66	17.8881478804
+UniRef50_Q8DW66|g__Streptococcus.s__Streptococcus_mutans	17.8881478804
+UniRef50_A7IJF9: Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding	17.8831778979
+UniRef50_A7IJF9: Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.8831778979
+UniRef50_P29915: NADH-quinone oxidoreductase chain 3	17.8820052574
+UniRef50_P29915: NADH-quinone oxidoreductase chain 3|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.8820052574
+UniRef50_B4U3U9: CRISPR-associated endonuclease Cas9	17.8778059308
+UniRef50_B4U3U9: CRISPR-associated endonuclease Cas9|g__Streptococcus.s__Streptococcus_mutans	17.8778059308
+UniRef50_B2N6M8: Molybdate metabolism regulator	17.8749996286
+UniRef50_B2N6M8: Molybdate metabolism regulator|g__Escherichia.s__Escherichia_coli	17.8749996286
+UniRef50_P77334: Cyclic di-GMP phosphodiesterase Gmr	17.8673730248
+UniRef50_P77334: Cyclic di-GMP phosphodiesterase Gmr|g__Escherichia.s__Escherichia_coli	17.8673730248
+UniRef50_P31062: DNA-packaging protein NU1 homolog	17.8632705938
+UniRef50_P31062: DNA-packaging protein NU1 homolog|g__Escherichia.s__Escherichia_coli	17.8632705938
+UniRef50_A0KE20: Alcohol dehydrogenase GroES domain protein	17.8631815813
+UniRef50_A0KE20: Alcohol dehydrogenase GroES domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.8631815813
+UniRef50_D8HCA2	17.8606086966
+UniRef50_D8HCA2|g__Staphylococcus.s__Staphylococcus_aureus	17.8606086966
+UniRef50_Q7MAI3: CTP synthase	17.8604657010
+UniRef50_Q7MAI3: CTP synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.4996903819
+UniRef50_Q7MAI3: CTP synthase|g__Helicobacter.s__Helicobacter_pylori	1.2916216972
+UniRef50_Q7MAI3: CTP synthase|unclassified	0.0691536218
+UniRef50_Q9KN05: Tryptophanase	17.8578212556
+UniRef50_Q9KN05: Tryptophanase|g__Escherichia.s__Escherichia_coli	17.8578212556
+UniRef50_A0Q1L0: Putative fluoride ion transporter CrcB	17.8571428571
+UniRef50_A0Q1L0: Putative fluoride ion transporter CrcB|g__Clostridium.s__Clostridium_beijerinckii	17.8571428571
+UniRef50_P0AGH4: Peptide transport system permease protein SapB	17.8540944959
+UniRef50_P0AGH4: Peptide transport system permease protein SapB|g__Escherichia.s__Escherichia_coli	17.8540944959
+UniRef50_Q8DU04	17.8538692138
+UniRef50_Q8DU04|g__Streptococcus.s__Streptococcus_mutans	14.8598572378
+UniRef50_Q8DU04|unclassified	2.9940119760
+UniRef50_B9JY97: ABC transporter membrane spanning protein	17.8441479636
+UniRef50_B9JY97: ABC transporter membrane spanning protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.8441479636
+UniRef50_B1ZNE5: 50S ribosomal protein L2	17.8436900226
+UniRef50_B1ZNE5: 50S ribosomal protein L2|g__Clostridium.s__Clostridium_beijerinckii	6.8785099966
+UniRef50_B1ZNE5: 50S ribosomal protein L2|g__Escherichia.s__Escherichia_coli	6.5405396257
+UniRef50_B1ZNE5: 50S ribosomal protein L2|g__Acinetobacter.s__Acinetobacter_baumannii	3.2051282051
+UniRef50_B1ZNE5: 50S ribosomal protein L2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2195121951
+UniRef50_U5MVS9: Cytochrome b5	17.8327226775
+UniRef50_U5MVS9: Cytochrome b5|g__Clostridium.s__Clostridium_beijerinckii	17.8327226775
+UniRef50_C0PWP3: NADH dehydrogenase subunit N	17.8221578584
+UniRef50_C0PWP3: NADH dehydrogenase subunit N|g__Escherichia.s__Escherichia_coli	17.8221578584
+UniRef50_Q8CS07	17.8200735270
+UniRef50_Q8CS07|g__Staphylococcus.s__Staphylococcus_epidermidis	17.8200735270
+UniRef50_P26408: Hydrogenase transcriptional regulatory protein hupR1	17.8161012782
+UniRef50_P26408: Hydrogenase transcriptional regulatory protein hupR1|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.8161012782
+UniRef50_I1W617: Metallo-beta-lactamase superfamily domain protein (Fragment)	17.8150666109
+UniRef50_I1W617: Metallo-beta-lactamase superfamily domain protein (Fragment)|unclassified	17.8150666109
+UniRef50_Q8FE91	17.8118878303
+UniRef50_Q8FE91|g__Escherichia.s__Escherichia_coli	14.4262274252
+UniRef50_Q8FE91|g__Clostridium.s__Clostridium_beijerinckii	3.3856604051
+UniRef50_P76091	17.8118446628
+UniRef50_P76091|g__Escherichia.s__Escherichia_coli	17.8118446628
+UniRef50_P76364: Cytoskeleton bundling-enhancing protein CbeA	17.8101598867
+UniRef50_P76364: Cytoskeleton bundling-enhancing protein CbeA|g__Escherichia.s__Escherichia_coli	17.8101598867
+UniRef50_Q3J6E2: Anti-sigma factor antagonist	17.8085958995
+UniRef50_Q3J6E2: Anti-sigma factor antagonist|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.8085958995
+UniRef50_P0AFQ4: Inner membrane transport permease YbhS	17.8056404359
+UniRef50_P0AFQ4: Inner membrane transport permease YbhS|g__Escherichia.s__Escherichia_coli	17.8056404359
+UniRef50_UPI00036578F1: hypothetical protein	17.8041953437
+UniRef50_UPI00036578F1: hypothetical protein|unclassified	17.8041953437
+UniRef50_P66798: Response regulator UvrY	17.7995501132
+UniRef50_P66798: Response regulator UvrY|g__Escherichia.s__Escherichia_coli	16.2419177144
+UniRef50_P66798: Response regulator UvrY|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5576323988
+UniRef50_F3SUZ8: Radical SAM domain protein	17.7992061835
+UniRef50_F3SUZ8: Radical SAM domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	17.7992061835
+UniRef50_F5M3E9	17.7966819248
+UniRef50_F5M3E9|unclassified	9.7966819248
+UniRef50_F5M3E9|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.0000000000
+UniRef50_C3K6N0: Succinyl-CoA ligase [ADP-forming] subunit beta	17.7965646364
+UniRef50_C3K6N0: Succinyl-CoA ligase [ADP-forming] subunit beta|g__Escherichia.s__Escherichia_coli	17.5278258069
+UniRef50_C3K6N0: Succinyl-CoA ligase [ADP-forming] subunit beta|unclassified	0.2687388295
+UniRef50_Q8ZBY6: Acyl-coenzyme A dehydrogenase	17.7945891254
+UniRef50_Q8ZBY6: Acyl-coenzyme A dehydrogenase|g__Escherichia.s__Escherichia_coli	17.7325302607
+UniRef50_Q8ZBY6: Acyl-coenzyme A dehydrogenase|unclassified	0.0620588647
+UniRef50_R9SNU8: Radical SAM domain-containing protein	17.7938409742
+UniRef50_R9SNU8: Radical SAM domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.7938409742
+UniRef50_P0A8Y2: Pyrimidine 5'-nucleotidase YjjG	17.7909286806
+UniRef50_P0A8Y2: Pyrimidine 5'-nucleotidase YjjG|g__Escherichia.s__Escherichia_coli	17.7909286806
+UniRef50_Q5GWV2	17.7857380148
+UniRef50_Q5GWV2|unclassified	17.7857380148
+UniRef50_P75838: Ribosomal protein S12 methylthiotransferase accessory factor YcaO	17.7780181989
+UniRef50_P75838: Ribosomal protein S12 methylthiotransferase accessory factor YcaO|g__Escherichia.s__Escherichia_coli	17.7780181989
+UniRef50_E3A5N2	17.7648806954
+UniRef50_E3A5N2|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.7648806954
+UniRef50_A5IQ08	17.7530826226
+UniRef50_A5IQ08|g__Staphylococcus.s__Staphylococcus_aureus	14.8959397655
+UniRef50_A5IQ08|unclassified	2.8571428571
+UniRef50_P0ACP6: HTH-type transcriptional regulator GntR	17.7494914338
+UniRef50_P0ACP6: HTH-type transcriptional regulator GntR|g__Escherichia.s__Escherichia_coli	17.7494914338
+UniRef50_P77551: Putative Rz endopeptidase from lambdoid prophage Rac (Fragment)	17.7471043393
+UniRef50_P77551: Putative Rz endopeptidase from lambdoid prophage Rac (Fragment)|g__Escherichia.s__Escherichia_coli	17.7471043393
+UniRef50_A6WUJ6: ATP synthase subunit a	17.7432134675
+UniRef50_A6WUJ6: ATP synthase subunit a|g__Escherichia.s__Escherichia_coli	17.7432134675
+UniRef50_A7X4V0: ATP synthase subunit c	17.7424760858
+UniRef50_A7X4V0: ATP synthase subunit c|g__Staphylococcus.s__Staphylococcus_aureus	12.6919710353
+UniRef50_A7X4V0: ATP synthase subunit c|g__Staphylococcus.s__Staphylococcus_epidermidis	5.0505050505
+UniRef50_Q9HXK5: 2-isopropylmalate synthase	17.7416655496
+UniRef50_Q9HXK5: 2-isopropylmalate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.5806034918
+UniRef50_Q9HXK5: 2-isopropylmalate synthase|g__Acinetobacter.s__Acinetobacter_baumannii	2.0703546104
+UniRef50_Q9HXK5: 2-isopropylmalate synthase|unclassified	0.0907074474
+UniRef50_A0A024EJP9	17.7300109529
+UniRef50_A0A024EJP9|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.7300109529
+UniRef50_C6SRC4	17.7290850939
+UniRef50_C6SRC4|g__Streptococcus.s__Streptococcus_mutans	17.7290850939
+UniRef50_D2ZP63	17.7285785532
+UniRef50_D2ZP63|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.4320629894
+UniRef50_D2ZP63|unclassified	0.2965155638
+UniRef50_H9UWR6: Modulator of drug activity (Mda66)	17.7200570969
+UniRef50_H9UWR6: Modulator of drug activity (Mda66)|g__Escherichia.s__Escherichia_coli	17.7200570969
+UniRef50_Q58556: Cell division cycle protein 48 homolog MJ1156	17.7154586518
+UniRef50_Q58556: Cell division cycle protein 48 homolog MJ1156|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.7154586518
+UniRef50_P37056: Probable endopeptidase YaeF	17.7092867570
+UniRef50_P37056: Probable endopeptidase YaeF|g__Escherichia.s__Escherichia_coli	17.7092867570
+UniRef50_A4WWW0	17.7092677865
+UniRef50_A4WWW0|unclassified	17.7092677865
+UniRef50_B4U247: Shikimate kinase	17.7067882816
+UniRef50_B4U247: Shikimate kinase|g__Streptococcus.s__Streptococcus_mutans	17.7067882816
+UniRef50_B9KTG2: MCPG protein	17.7035981908
+UniRef50_B9KTG2: MCPG protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.7035981908
+UniRef50_H6LNW9	17.6979272558
+UniRef50_H6LNW9|g__Staphylococcus.s__Staphylococcus_aureus	17.6979272558
+UniRef50_P05041: Aminodeoxychorismate synthase component 1	17.6882997903
+UniRef50_P05041: Aminodeoxychorismate synthase component 1|g__Escherichia.s__Escherichia_coli	17.6882997903
+UniRef50_P76576: UPF0070 protein YfgM	17.6880681588
+UniRef50_P76576: UPF0070 protein YfgM|g__Escherichia.s__Escherichia_coli	17.6880681588
+UniRef50_M9S3N5: Glycosyl transferase family protein	17.6864258977
+UniRef50_M9S3N5: Glycosyl transferase family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.6864258977
+UniRef50_Q60177: Proteasome subunit alpha	17.6813807145
+UniRef50_Q60177: Proteasome subunit alpha|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.6813807145
+UniRef50_P08401: Sensor protein CreC	17.6778793733
+UniRef50_P08401: Sensor protein CreC|g__Escherichia.s__Escherichia_coli	17.6778793733
+UniRef50_C5MZV6	17.6769627315
+UniRef50_C5MZV6|g__Staphylococcus.s__Staphylococcus_aureus	17.6769627315
+UniRef50_Q3IX83	17.6752109186
+UniRef50_Q3IX83|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.3702103351
+UniRef50_Q3IX83|unclassified	1.3050005834
+UniRef50_Q1GFL6	17.6730186050
+UniRef50_Q1GFL6|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.4883676276
+UniRef50_Q1GFL6|unclassified	0.1846509774
+UniRef50_P25397: Tellurite methyltransferase	17.6721562236
+UniRef50_P25397: Tellurite methyltransferase|g__Escherichia.s__Escherichia_coli	17.6721562236
+UniRef50_Q8PNB5: Adenylosuccinate synthetase	17.6697969007
+UniRef50_Q8PNB5: Adenylosuccinate synthetase|g__Escherichia.s__Escherichia_coli	17.5935546952
+UniRef50_Q8PNB5: Adenylosuccinate synthetase|unclassified	0.0762422055
+UniRef50_UPI00016A4BBE: hypothetical protein	17.6639840666
+UniRef50_UPI00016A4BBE: hypothetical protein|unclassified	17.6639840666
+UniRef50_R7PYR7: Predicted O-linked GlcNAc transferase	17.6586340422
+UniRef50_R7PYR7: Predicted O-linked GlcNAc transferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.6586340422
+UniRef50_M9R9X0	17.6549355983
+UniRef50_M9R9X0|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.1287811805
+UniRef50_M9R9X0|unclassified	0.5261544177
+UniRef50_P64605: Probable phospholipid ABC transporter-binding protein MlaD	17.6546713606
+UniRef50_P64605: Probable phospholipid ABC transporter-binding protein MlaD|g__Escherichia.s__Escherichia_coli	17.6546713606
+UniRef50_D1QZF9	17.6484307350
+UniRef50_D1QZF9|g__Staphylococcus.s__Staphylococcus_aureus	17.6484307350
+UniRef50_Q8CP32: Truncated transposase	17.6398829830
+UniRef50_Q8CP32: Truncated transposase|g__Staphylococcus.s__Staphylococcus_epidermidis	17.6398829830
+UniRef50_Q47688	17.6391918520
+UniRef50_Q47688|g__Escherichia.s__Escherichia_coli	17.6391918520
+UniRef50_P31133: Putrescine-binding periplasmic protein	17.6281224469
+UniRef50_P31133: Putrescine-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	15.1769187664
+UniRef50_P31133: Putrescine-binding periplasmic protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4512036805
+UniRef50_N3AGF2: Cytochrome c-type protein TorY	17.6276616622
+UniRef50_N3AGF2: Cytochrome c-type protein TorY|g__Escherichia.s__Escherichia_coli	17.6276616622
+UniRef50_A0A023Z249: Methylmalonyl-CoA mutase	17.6236162579
+UniRef50_A0A023Z249: Methylmalonyl-CoA mutase|g__Escherichia.s__Escherichia_coli	17.6236162579
+UniRef50_A1B0L9: DSBA oxidoreductase	17.6234746500
+UniRef50_A1B0L9: DSBA oxidoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.6234746500
+UniRef50_W0A1B9: Amino acid ABC transporter permease	17.6172066361
+UniRef50_W0A1B9: Amino acid ABC transporter permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.6172066361
+UniRef50_A9KTR8: Tryptophan synthase alpha chain	17.6154107716
+UniRef50_A9KTR8: Tryptophan synthase alpha chain|g__Escherichia.s__Escherichia_coli	17.6154107716
+UniRef50_D3E4D7: Transcriptional regulator MarR family	17.6143229697
+UniRef50_D3E4D7: Transcriptional regulator MarR family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.6143229697
+UniRef50_R7PVV2	17.6136565317
+UniRef50_R7PVV2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.6136565317
+UniRef50_Q8FAM3	17.6123628553
+UniRef50_Q8FAM3|g__Escherichia.s__Escherichia_coli	17.6123628553
+UniRef50_T8ZGR4	17.6030336634
+UniRef50_T8ZGR4|g__Escherichia.s__Escherichia_coli	17.6030336634
+UniRef50_Q8D2C5: Oligoribonuclease	17.5991636765
+UniRef50_Q8D2C5: Oligoribonuclease|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.5991636765
+UniRef50_I1B4H1	17.5981468119
+UniRef50_I1B4H1|g__Escherichia.s__Escherichia_coli	17.5981468119
+UniRef50_P32144	17.5925626768
+UniRef50_P32144|g__Escherichia.s__Escherichia_coli	17.5925626768
+UniRef50_R7PTP8	17.5890984174
+UniRef50_R7PTP8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.5890984174
+UniRef50_Q2NHD8: Predicted minichromosome maintenance protein	17.5868087855
+UniRef50_Q2NHD8: Predicted minichromosome maintenance protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.5868087855
+UniRef50_P26266: Ferric enterobactin transport protein FepE	17.5813051079
+UniRef50_P26266: Ferric enterobactin transport protein FepE|g__Escherichia.s__Escherichia_coli	17.5813051079
+UniRef50_B4F0Z5: Cell division protein ZapD	17.5807112087
+UniRef50_B4F0Z5: Cell division protein ZapD|g__Escherichia.s__Escherichia_coli	17.5807112087
+UniRef50_G4L5V8: Polysaccharide deacetylase	17.5787496105
+UniRef50_G4L5V8: Polysaccharide deacetylase|g__Staphylococcus.s__Staphylococcus_aureus	17.5787496105
+UniRef50_Q8ZM40: tRNA (guanine-N(7)-)-methyltransferase	17.5769550805
+UniRef50_Q8ZM40: tRNA (guanine-N(7)-)-methyltransferase|g__Escherichia.s__Escherichia_coli	17.5769550805
+UniRef50_Q1BQE2: Oxygen-dependent choline dehydrogenase	17.5732670703
+UniRef50_Q1BQE2: Oxygen-dependent choline dehydrogenase|g__Escherichia.s__Escherichia_coli	14.1433090619
+UniRef50_Q1BQE2: Oxygen-dependent choline dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2470886023
+UniRef50_Q1BQE2: Oxygen-dependent choline dehydrogenase|unclassified	0.1828694061
+UniRef50_A5UKK6	17.5711711806
+UniRef50_A5UKK6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.5711711806
+UniRef50_I2DNZ8: Peptidase M14, carboxypeptidase A	17.5700307381
+UniRef50_I2DNZ8: Peptidase M14, carboxypeptidase A|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.5700307381
+UniRef50_A5UJP8: Adhesin-like protein	17.5686598944
+UniRef50_A5UJP8: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.5523997318
+UniRef50_A5UJP8: Adhesin-like protein|unclassified	1.0162601626
+UniRef50_A5ULR2: UPF0272 protein Msm_0935	17.5587347555
+UniRef50_A5ULR2: UPF0272 protein Msm_0935|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.5587347555
+UniRef50_P52138	17.5581498187
+UniRef50_P52138|g__Escherichia.s__Escherichia_coli	17.5581498187
+UniRef50_Q6GE02	17.5560175560
+UniRef50_Q6GE02|g__Staphylococcus.s__Staphylococcus_aureus	17.5560175560
+UniRef50_P13857: Ribosomal-protein-serine acetyltransferase	17.5492791119
+UniRef50_P13857: Ribosomal-protein-serine acetyltransferase|g__Escherichia.s__Escherichia_coli	17.5492791119
+UniRef50_P0AAD4: Tyrosine-specific transport protein	17.5491490882
+UniRef50_P0AAD4: Tyrosine-specific transport protein|g__Escherichia.s__Escherichia_coli	17.5491490882
+UniRef50_A3PRC4: Methyl-accepting chemotaxis sensory transducer	17.5474133455
+UniRef50_A3PRC4: Methyl-accepting chemotaxis sensory transducer|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.5474133455
+UniRef50_A5UKA9	17.5438596491
+UniRef50_A5UKA9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.5438596491
+UniRef50_C9ADA6	17.5438596491
+UniRef50_C9ADA6|g__Streptococcus.s__Streptococcus_mutans	17.5438596491
+UniRef50_H8I895: 30S ribosomal protein S27ae	17.5438596491
+UniRef50_H8I895: 30S ribosomal protein S27ae|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.5438596491
+UniRef50_Q5HKB2	17.5438596491
+UniRef50_Q5HKB2|g__Staphylococcus.s__Staphylococcus_epidermidis	17.5438596491
+UniRef50_Q9RTC4	17.5438596491
+UniRef50_Q9RTC4|g__Deinococcus.s__Deinococcus_radiodurans	17.5438596491
+UniRef50_Q9RVB8: Transcriptional regulator, MerR family	17.5438596491
+UniRef50_Q9RVB8: Transcriptional regulator, MerR family|g__Deinococcus.s__Deinococcus_radiodurans	17.5438596491
+UniRef50_P77489: Putative xanthine dehydrogenase YagR molybdenum-binding subunit	17.5392308637
+UniRef50_P77489: Putative xanthine dehydrogenase YagR molybdenum-binding subunit|g__Escherichia.s__Escherichia_coli	16.8877339631
+UniRef50_P77489: Putative xanthine dehydrogenase YagR molybdenum-binding subunit|g__Deinococcus.s__Deinococcus_radiodurans	0.5293806247
+UniRef50_P77489: Putative xanthine dehydrogenase YagR molybdenum-binding subunit|unclassified	0.1221162759
+UniRef50_Q8D032: Putrescine-binding periplasmic protein	17.5362807721
+UniRef50_Q8D032: Putrescine-binding periplasmic protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.5362807721
+UniRef50_A3MYM1: Fe/S biogenesis protein NfuA	17.5352893729
+UniRef50_A3MYM1: Fe/S biogenesis protein NfuA|g__Escherichia.s__Escherichia_coli	17.5352893729
+UniRef50_A6LQS2: Metal dependent phosphohydrolase	17.5345538666
+UniRef50_A6LQS2: Metal dependent phosphohydrolase|g__Clostridium.s__Clostridium_beijerinckii	17.5345538666
+UniRef50_H9UPT8	17.5335778064
+UniRef50_H9UPT8|g__Escherichia.s__Escherichia_coli	16.4146877532
+UniRef50_H9UPT8|unclassified	1.1188900533
+UniRef50_A5UKK0: Collagenase, peptidase family U32	17.5212793692
+UniRef50_A5UKK0: Collagenase, peptidase family U32|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.5212793692
+UniRef50_Q0TBG1: Guanylate kinase	17.5206359228
+UniRef50_Q0TBG1: Guanylate kinase|g__Escherichia.s__Escherichia_coli	17.5206359228
+UniRef50_Q9KQH7: 3-oxoacyl-[acyl-carrier-protein] reductase FabG	17.5179948744
+UniRef50_Q9KQH7: 3-oxoacyl-[acyl-carrier-protein] reductase FabG|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.4498625030
+UniRef50_Q9KQH7: 3-oxoacyl-[acyl-carrier-protein] reductase FabG|g__Acinetobacter.s__Acinetobacter_baumannii	3.8759689922
+UniRef50_Q9KQH7: 3-oxoacyl-[acyl-carrier-protein] reductase FabG|unclassified	0.1921633791
+UniRef50_P0AC49: Fumarate reductase iron-sulfur subunit	17.5125678930
+UniRef50_P0AC49: Fumarate reductase iron-sulfur subunit|g__Escherichia.s__Escherichia_coli	17.5125678930
+UniRef50_E1V429: Formyltetrahydrofolate deformylase	17.5109097810
+UniRef50_E1V429: Formyltetrahydrofolate deformylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.5109097810
+UniRef50_A3PH69: Alpha/beta hydrolase	17.5074554176
+UniRef50_A3PH69: Alpha/beta hydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.5074554176
+UniRef50_A5UKV8: Transcription factor E	17.4969034378
+UniRef50_A5UKV8: Transcription factor E|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.4969034378
+UniRef50_B7LF20: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase	17.4946167220
+UniRef50_B7LF20: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase|g__Escherichia.s__Escherichia_coli	17.4383965849
+UniRef50_B7LF20: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase|unclassified	0.0562201371
+UniRef50_D2NAD6	17.4934748223
+UniRef50_D2NAD6|g__Staphylococcus.s__Staphylococcus_aureus	10.5263157895
+UniRef50_D2NAD6|unclassified	6.9671590329
+UniRef50_E3F2Q1	17.4910147467
+UniRef50_E3F2Q1|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.3678712824
+UniRef50_E3F2Q1|unclassified	0.1231434643
+UniRef50_Q1BAN7	17.4830503549
+UniRef50_Q1BAN7|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.4162507089
+UniRef50_Q1BAN7|unclassified	0.0667996461
+UniRef50_A4WTH0: Probable chemoreceptor glutamine deamidase CheD	17.4799743547
+UniRef50_A4WTH0: Probable chemoreceptor glutamine deamidase CheD|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.9066678190
+UniRef50_A4WTH0: Probable chemoreceptor glutamine deamidase CheD|unclassified	6.5733065357
+UniRef50_R4R8Z7: Rhs-family protein	17.4773152914
+UniRef50_R4R8Z7: Rhs-family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.4773152914
+UniRef50_H5WL64: Urea ABC transporter, ATP-binding protein UrtD	17.4723992959
+UniRef50_H5WL64: Urea ABC transporter, ATP-binding protein UrtD|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.4723992959
+UniRef50_A5ULJ7: Molecular chaperone (Small heat shock protein), HSP20/alpha crystallin family	17.4704517991
+UniRef50_A5ULJ7: Molecular chaperone (Small heat shock protein), HSP20/alpha crystallin family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.4704517991
+UniRef50_Q9RYU4: NAD(P)H dehydrogenase (quinone)	17.4691913537
+UniRef50_Q9RYU4: NAD(P)H dehydrogenase (quinone)|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.4691913537
+UniRef50_P08368: Transcriptional regulatory protein CreB	17.4667988966
+UniRef50_P08368: Transcriptional regulatory protein CreB|g__Escherichia.s__Escherichia_coli	17.4667988966
+UniRef50_P77357: p-aminobenzoyl-glutamate hydrolase subunit A	17.4657528983
+UniRef50_P77357: p-aminobenzoyl-glutamate hydrolase subunit A|g__Escherichia.s__Escherichia_coli	17.4657528983
+UniRef50_UPI0004723041: hypothetical protein	17.4610911747
+UniRef50_UPI0004723041: hypothetical protein|unclassified	17.4610911747
+UniRef50_F5WCB8	17.4606758486
+UniRef50_F5WCB8|g__Staphylococcus.s__Staphylococcus_aureus	17.4606758486
+UniRef50_Q9HXG3	17.4559030744
+UniRef50_Q9HXG3|unclassified	17.4559030744
+UniRef50_R9E3T5	17.4549703656
+UniRef50_R9E3T5|unclassified	17.4549703656
+UniRef50_P77717	17.4538203272
+UniRef50_P77717|g__Escherichia.s__Escherichia_coli	17.4538203272
+UniRef50_P0AEQ8: Glutamine transport system permease protein GlnP	17.4530369848
+UniRef50_P0AEQ8: Glutamine transport system permease protein GlnP|g__Escherichia.s__Escherichia_coli	17.4530369848
+UniRef50_B8IFQ7: DNA polymerase III, subunits gamma and tau	17.4523274335
+UniRef50_B8IFQ7: DNA polymerase III, subunits gamma and tau|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.4523274335
+UniRef50_P96335: Glycerol-3-phosphate transporter	17.4488371537
+UniRef50_P96335: Glycerol-3-phosphate transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.4488371537
+UniRef50_T7GQG4: Inner membrane transporter ygjI	17.4464105667
+UniRef50_T7GQG4: Inner membrane transporter ygjI|g__Escherichia.s__Escherichia_coli	17.4464105667
+UniRef50_F2A7T6	17.4444472062
+UniRef50_F2A7T6|unclassified	17.4444472062
+UniRef50_F6EKX3: Tartrate dehydrogenase	17.4420108247
+UniRef50_F6EKX3: Tartrate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.4420108247
+UniRef50_P00393: NADH dehydrogenase	17.4419869072
+UniRef50_P00393: NADH dehydrogenase|g__Escherichia.s__Escherichia_coli	13.0843419755
+UniRef50_P00393: NADH dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3576449317
+UniRef50_X5X5U8	17.4407367711
+UniRef50_X5X5U8|unclassified	17.4407367711
+UniRef50_L9IWH1: CarD-like/TRCF domain protein	17.4241163746
+UniRef50_L9IWH1: CarD-like/TRCF domain protein|g__Escherichia.s__Escherichia_coli	17.3911924516
+UniRef50_L9IWH1: CarD-like/TRCF domain protein|unclassified	0.0329239230
+UniRef50_P0AAJ2: Probable anaerobic dimethyl sulfoxide reductase chain YnfG	17.4224043394
+UniRef50_P0AAJ2: Probable anaerobic dimethyl sulfoxide reductase chain YnfG|g__Escherichia.s__Escherichia_coli	17.4224043394
+UniRef50_P0C2L2: Glutathione transport system permease protein GsiD	17.4142715305
+UniRef50_P0C2L2: Glutathione transport system permease protein GsiD|g__Escherichia.s__Escherichia_coli	17.4142715305
+UniRef50_D9PXW6: Thymidylate kinase-related protein	17.4121704965
+UniRef50_D9PXW6: Thymidylate kinase-related protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.4121704965
+UniRef50_Q3J497	17.4102243265
+UniRef50_Q3J497|unclassified	12.3081835102
+UniRef50_Q3J497|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.1020408163
+UniRef50_X9TRB8	17.4068234921
+UniRef50_X9TRB8|g__Staphylococcus.s__Staphylococcus_epidermidis	17.4068234921
+UniRef50_P67661	17.4047450244
+UniRef50_P67661|g__Escherichia.s__Escherichia_coli	17.4047450244
+UniRef50_Q8ZJR1: UPF0761 membrane protein YPO0028/y3801/YP_0029	17.4042597101
+UniRef50_Q8ZJR1: UPF0761 membrane protein YPO0028/y3801/YP_0029|g__Escherichia.s__Escherichia_coli	17.4042597101
+UniRef50_V4JK35	17.3972694540
+UniRef50_V4JK35|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.3972694540
+UniRef50_A6WJ89: PKHD-type hydroxylase Shew185_0721	17.3946229161
+UniRef50_A6WJ89: PKHD-type hydroxylase Shew185_0721|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.6719367362
+UniRef50_A6WJ89: PKHD-type hydroxylase Shew185_0721|g__Acinetobacter.s__Acinetobacter_baumannii	5.4633930546
+UniRef50_A6WJ89: PKHD-type hydroxylase Shew185_0721|unclassified	0.2592931252
+UniRef50_A3PKI7: NADH-quinone oxidoreductase subunit I 2	17.3820286742
+UniRef50_A3PKI7: NADH-quinone oxidoreductase subunit I 2|unclassified	9.8632316817
+UniRef50_A3PKI7: NADH-quinone oxidoreductase subunit I 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.5187969925
+UniRef50_F2AE29	17.3776231362
+UniRef50_F2AE29|unclassified	17.3776231362
+UniRef50_P37767	17.3769397029
+UniRef50_P37767|g__Escherichia.s__Escherichia_coli	17.3769397029
+UniRef50_Q47719	17.3730768894
+UniRef50_Q47719|g__Escherichia.s__Escherichia_coli	17.3730768894
+UniRef50_Q7N964: Thiamine-phosphate synthase	17.3719339195
+UniRef50_Q7N964: Thiamine-phosphate synthase|g__Escherichia.s__Escherichia_coli	17.3719339195
+UniRef50_Q8ZRW8: Ferredoxin-like protein FixX	17.3687419971
+UniRef50_Q8ZRW8: Ferredoxin-like protein FixX|g__Escherichia.s__Escherichia_coli	17.3687419971
+UniRef50_Q08120: Bacteroid development protein BacA	17.3597435525
+UniRef50_Q08120: Bacteroid development protein BacA|g__Escherichia.s__Escherichia_coli	12.7427726309
+UniRef50_Q08120: Bacteroid development protein BacA|g__Acinetobacter.s__Acinetobacter_baumannii	4.6169709215
+UniRef50_I6U3H0	17.3586652948
+UniRef50_I6U3H0|g__Streptococcus.s__Streptococcus_mutans	16.2566740021
+UniRef50_I6U3H0|unclassified	1.1019912928
+UniRef50_A4WT84: Cytochrome c, monohaem	17.3561824489
+UniRef50_A4WT84: Cytochrome c, monohaem|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.3561824489
+UniRef50_W1G461: DNA replication and repair protein RecF	17.3561178057
+UniRef50_W1G461: DNA replication and repair protein RecF|g__Escherichia.s__Escherichia_coli	17.3561178057
+UniRef50_A0A025DCK3	17.3546407147
+UniRef50_A0A025DCK3|g__Escherichia.s__Escherichia_coli	17.3546407147
+UniRef50_P76213: Excinuclease cho	17.3540256178
+UniRef50_P76213: Excinuclease cho|g__Escherichia.s__Escherichia_coli	17.3540256178
+UniRef50_B9KX55: AcrB/AcrD/AcrF family protein	17.3511429685
+UniRef50_B9KX55: AcrB/AcrD/AcrF family protein|unclassified	17.3511429685
+UniRef50_A6QE42	17.3500873204
+UniRef50_A6QE42|g__Staphylococcus.s__Staphylococcus_aureus	17.3500873204
+UniRef50_L8NGN8: Sulfite oxidoreductase, molibdopterin-binding subunit	17.3473828111
+UniRef50_L8NGN8: Sulfite oxidoreductase, molibdopterin-binding subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.3473828111
+UniRef50_P76502: Phosphohistidine phosphatase SixA	17.3452629694
+UniRef50_P76502: Phosphohistidine phosphatase SixA|g__Escherichia.s__Escherichia_coli	17.3452629694
+UniRef50_N8D5Y6	17.3433298975
+UniRef50_N8D5Y6|unclassified	17.3433298975
+UniRef50_B9KT73: Methyl-accepting chemotaxis protein	17.3422060899
+UniRef50_B9KT73: Methyl-accepting chemotaxis protein|unclassified	17.3422060899
+UniRef50_B7NG91: Fumarate reductase subunit C	17.3295785153
+UniRef50_B7NG91: Fumarate reductase subunit C|g__Escherichia.s__Escherichia_coli	17.3295785153
+UniRef50_P76612	17.3249656578
+UniRef50_P76612|g__Escherichia.s__Escherichia_coli	17.3249656578
+UniRef50_P41031: Thiosulfate-binding protein	17.3237735816
+UniRef50_P41031: Thiosulfate-binding protein|g__Escherichia.s__Escherichia_coli	17.3237735816
+UniRef50_P0ADA2: Acyl-CoA thioesterase I	17.3220351893
+UniRef50_P0ADA2: Acyl-CoA thioesterase I|g__Escherichia.s__Escherichia_coli	17.3220351893
+UniRef50_A4WXK2: Protein tyrosine phosphatase	17.3203679825
+UniRef50_A4WXK2: Protein tyrosine phosphatase|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.3203679825
+UniRef50_T9BKP2	17.3202614379
+UniRef50_T9BKP2|g__Escherichia.s__Escherichia_coli	17.3202614379
+UniRef50_P77268: Probable D,D-dipeptide transport ATP-binding protein DdpD	17.3177389055
+UniRef50_P77268: Probable D,D-dipeptide transport ATP-binding protein DdpD|g__Escherichia.s__Escherichia_coli	17.3177389055
+UniRef50_N6WR36	17.3126261304
+UniRef50_N6WR36|unclassified	17.3126261304
+UniRef50_A1AFA2: Ribose-5-phosphate isomerase A	17.3118364982
+UniRef50_A1AFA2: Ribose-5-phosphate isomerase A|g__Escherichia.s__Escherichia_coli	17.3118364982
+UniRef50_D9SA34: Hydrolase, NUDIX family	17.3100490196
+UniRef50_D9SA34: Hydrolase, NUDIX family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.3100490196
+UniRef50_V8HJS7: tRNA (guanine-N(1)-)-methyltransferase	17.3084908115
+UniRef50_V8HJS7: tRNA (guanine-N(1)-)-methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.3084908115
+UniRef50_Q57747	17.3070261700
+UniRef50_Q57747|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.3070261700
+UniRef50_B9KWT4: ParB-like partition protein	17.3002647630
+UniRef50_B9KWT4: ParB-like partition protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.3002647630
+UniRef50_K2BGJ9	17.3002027737
+UniRef50_K2BGJ9|unclassified	17.3002027737
+UniRef50_I3EVN5	17.2999230336
+UniRef50_I3EVN5|g__Staphylococcus.s__Staphylococcus_aureus	17.2999230336
+UniRef50_Q8FB22: Replicative DNA helicase	17.2986595372
+UniRef50_Q8FB22: Replicative DNA helicase|g__Escherichia.s__Escherichia_coli	17.2986595372
+UniRef50_P77147	17.2951614978
+UniRef50_P77147|g__Escherichia.s__Escherichia_coli	17.2951614978
+UniRef50_E3A1I4	17.2827005185
+UniRef50_E3A1I4|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.2827005185
+UniRef50_P0ADR0: Inner membrane protein YqaA	17.2823203105
+UniRef50_P0ADR0: Inner membrane protein YqaA|g__Escherichia.s__Escherichia_coli	17.2823203105
+UniRef50_P00803: Signal peptidase I	17.2780270597
+UniRef50_P00803: Signal peptidase I|g__Escherichia.s__Escherichia_coli	17.2780270597
+UniRef50_B5FTC5: Deoxyribose-phosphate aldolase	17.2756731734
+UniRef50_B5FTC5: Deoxyribose-phosphate aldolase|g__Escherichia.s__Escherichia_coli	17.2756731734
+UniRef50_E3PRA3: Rubrerythrin (RR)	17.2755668675
+UniRef50_E3PRA3: Rubrerythrin (RR)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.2755668675
+UniRef50_P15031: Fe(3+) dicitrate transport ATP-binding protein FecE	17.2748481367
+UniRef50_P15031: Fe(3+) dicitrate transport ATP-binding protein FecE|g__Escherichia.s__Escherichia_coli	17.2748481367
+UniRef50_F8FMK7: Response regulator	17.2742486451
+UniRef50_F8FMK7: Response regulator|g__Clostridium.s__Clostridium_beijerinckii	17.2742486451
+UniRef50_A5IQY6	17.2717873867
+UniRef50_A5IQY6|g__Staphylococcus.s__Staphylococcus_aureus	17.2717873867
+UniRef50_A5UP09	17.2700193819
+UniRef50_A5UP09|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.2700193819
+UniRef50_UPI00037AAF5D: hypothetical protein	17.2677743307
+UniRef50_UPI00037AAF5D: hypothetical protein|unclassified	17.2677743307
+UniRef50_Q8TKX9: Cysteine desulphurase	17.2672728940
+UniRef50_Q8TKX9: Cysteine desulphurase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.2672728940
+UniRef50_P54291: Acyl-homoserine-lactone synthase	17.2560958484
+UniRef50_P54291: Acyl-homoserine-lactone synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.3367457276
+UniRef50_P54291: Acyl-homoserine-lactone synthase|unclassified	0.9193501207
+UniRef50_P0ADS7	17.2464840437
+UniRef50_P0ADS7|g__Escherichia.s__Escherichia_coli	17.2464840437
+UniRef50_C5YNI9	17.2423958592
+UniRef50_C5YNI9|unclassified	17.2423958592
+UniRef50_A5CW02: Aspartate 1-decarboxylase	17.2413793103
+UniRef50_A5CW02: Aspartate 1-decarboxylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.2413793103
+UniRef50_B1VAC4: 50S ribosomal protein L36	17.2413793103
+UniRef50_B1VAC4: 50S ribosomal protein L36|g__Streptococcus.s__Streptococcus_mutans	17.2413793103
+UniRef50_B7V6G7	17.2413793103
+UniRef50_B7V6G7|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.2413793103
+UniRef50_D5CXW1	17.2413793103
+UniRef50_D5CXW1|g__Escherichia.s__Escherichia_coli	17.2413793103
+UniRef50_D6UDN3	17.2413793103
+UniRef50_D6UDN3|g__Staphylococcus.s__Staphylococcus_aureus	17.2413793103
+UniRef50_F0DEX8	17.2413793103
+UniRef50_F0DEX8|unclassified	17.2413793103
+UniRef50_P60876	17.2413793103
+UniRef50_P60876|g__Staphylococcus.s__Staphylococcus_aureus	17.2413793103
+UniRef50_Q4L6A7: Cold shock protein CspA	17.2413793103
+UniRef50_Q4L6A7: Cold shock protein CspA|g__Staphylococcus.s__Staphylococcus_epidermidis	17.2413793103
+UniRef50_P0ABZ3: Flagellar motor switch protein FliG	17.2365284717
+UniRef50_P0ABZ3: Flagellar motor switch protein FliG|g__Escherichia.s__Escherichia_coli	17.2365284717
+UniRef50_P0AFU8: Riboflavin synthase	17.2321270459
+UniRef50_P0AFU8: Riboflavin synthase|g__Escherichia.s__Escherichia_coli	17.2321270459
+UniRef50_F4M600	17.2233214522
+UniRef50_F4M600|g__Escherichia.s__Escherichia_coli	17.2233214522
+UniRef50_F5M0G6: Response regulator receiver/SARP domain-containing protein	17.2224623337
+UniRef50_F5M0G6: Response regulator receiver/SARP domain-containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.2224623337
+UniRef50_A5VTC2: D-isomer specific 2-hydroxyacid dehydrogenases family protein	17.2220576197
+UniRef50_A5VTC2: D-isomer specific 2-hydroxyacid dehydrogenases family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.2220576197
+UniRef50_P31058	17.2201177246
+UniRef50_P31058|g__Escherichia.s__Escherichia_coli	17.2201177246
+UniRef50_Q2NSV5: tRNA 2-thiocytidine biosynthesis protein TtcA	17.2182896622
+UniRef50_Q2NSV5: tRNA 2-thiocytidine biosynthesis protein TtcA|g__Escherichia.s__Escherichia_coli	10.9936371217
+UniRef50_Q2NSV5: tRNA 2-thiocytidine biosynthesis protein TtcA|g__Acinetobacter.s__Acinetobacter_baumannii	5.0125313283
+UniRef50_Q2NSV5: tRNA 2-thiocytidine biosynthesis protein TtcA|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2121212121
+UniRef50_I6SLY5	17.2182799240
+UniRef50_I6SLY5|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.2182799240
+UniRef50_P31135: Putrescine transport system permease protein PotH	17.2168187680
+UniRef50_P31135: Putrescine transport system permease protein PotH|g__Escherichia.s__Escherichia_coli	17.2168187680
+UniRef50_P0AB04	17.2148017342
+UniRef50_P0AB04|g__Escherichia.s__Escherichia_coli	17.2148017342
+UniRef50_P0AE22: Class B acid phosphatase	17.2141601486
+UniRef50_P0AE22: Class B acid phosphatase|g__Escherichia.s__Escherichia_coli	17.2141601486
+UniRef50_B9KUC7	17.2113289760
+UniRef50_B9KUC7|unclassified	9.8039215686
+UniRef50_B9KUC7|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.4074074074
+UniRef50_A0A038GFN9: FKBP-type peptidylprolyl isomerase	17.2084769334
+UniRef50_A0A038GFN9: FKBP-type peptidylprolyl isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.2084769334
+UniRef50_UPI00046A2248: integrase	17.2070177081
+UniRef50_UPI00046A2248: integrase|unclassified	17.2070177081
+UniRef50_UPI00037DBD2E: hypothetical protein	17.2020078758
+UniRef50_UPI00037DBD2E: hypothetical protein|unclassified	17.2020078758
+UniRef50_Q163Q7: NADH-quinone oxidoreductase chain E	17.1965872528
+UniRef50_Q163Q7: NADH-quinone oxidoreductase chain E|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.1965872528
+UniRef50_P37466: Protein Veg	17.1909868697
+UniRef50_P37466: Protein Veg|g__Staphylococcus.s__Staphylococcus_aureus	12.8991413762
+UniRef50_P37466: Protein Veg|g__Staphylococcus.s__Staphylococcus_epidermidis	4.2918454936
+UniRef50_Q883S2: Universal stress protein family	17.1906211208
+UniRef50_Q883S2: Universal stress protein family|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.1906211208
+UniRef50_P31666	17.1870296342
+UniRef50_P31666|g__Escherichia.s__Escherichia_coli	17.1870296342
+UniRef50_F7YL25: Thiamine-binding protein	17.1753354375
+UniRef50_F7YL25: Thiamine-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.1753354375
+UniRef50_B9KL59: 5-oxoprolinase	17.1682012899
+UniRef50_B9KL59: 5-oxoprolinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.1682012899
+UniRef50_Q8CS11	17.1662370777
+UniRef50_Q8CS11|g__Staphylococcus.s__Staphylococcus_epidermidis	17.1662370777
+UniRef50_B9KPT2	17.1660052910
+UniRef50_B9KPT2|unclassified	17.1660052910
+UniRef50_A0A038FVW1	17.1642665424
+UniRef50_A0A038FVW1|unclassified	17.1642665424
+UniRef50_W0YM62	17.1628239614
+UniRef50_W0YM62|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.1628239614
+UniRef50_E8TAD2: ABC transporter related protein	17.1586061488
+UniRef50_E8TAD2: ABC transporter related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.1586061488
+UniRef50_UPI0003806E6C: hypothetical protein	17.1561870819
+UniRef50_UPI0003806E6C: hypothetical protein|unclassified	17.1561870819
+UniRef50_I6U2U2	17.1536796537
+UniRef50_I6U2U2|g__Streptococcus.s__Streptococcus_mutans	17.1536796537
+UniRef50_F7XGW6: Oxidoreductase protein	17.1515941228
+UniRef50_F7XGW6: Oxidoreductase protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.8555680134
+UniRef50_F7XGW6: Oxidoreductase protein|unclassified	0.2960261094
+UniRef50_UPI0003B35A32: electron transport complex RsxE subunit	17.1476735683
+UniRef50_UPI0003B35A32: electron transport complex RsxE subunit|unclassified	17.1476735683
+UniRef50_A5UJW9: Predicted metal-dependent membrane protease	17.1460697075
+UniRef50_A5UJW9: Predicted metal-dependent membrane protease|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.1460697075
+UniRef50_Q3M1P1: Binding-protein-dependent transport systems inner membrane component	17.1452370113
+UniRef50_Q3M1P1: Binding-protein-dependent transport systems inner membrane component|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.1452370113
+UniRef50_R9YNT0	17.1435883828
+UniRef50_R9YNT0|g__Staphylococcus.s__Staphylococcus_aureus	10.2942733143
+UniRef50_R9YNT0|g__Staphylococcus.s__Staphylococcus_epidermidis	6.8493150685
+UniRef50_A0A028CJ48: Type IV fimbrial assembly protein PilC	17.1368756751
+UniRef50_A0A028CJ48: Type IV fimbrial assembly protein PilC|g__Escherichia.s__Escherichia_coli	17.1368756751
+UniRef50_P32139	17.1364780533
+UniRef50_P32139|g__Escherichia.s__Escherichia_coli	17.1364780533
+UniRef50_A6TDX1: Membrane-bound lytic murein transglycosylase C	17.1350730228
+UniRef50_A6TDX1: Membrane-bound lytic murein transglycosylase C|g__Escherichia.s__Escherichia_coli	17.1350730228
+UniRef50_A1B198: 4-hydroxyproline betaine 2-epimerase	17.1289809105
+UniRef50_A1B198: 4-hydroxyproline betaine 2-epimerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.1289809105
+UniRef50_A0A038FKH8	17.1278845974
+UniRef50_A0A038FKH8|unclassified	17.1278845974
+UniRef50_A3PJT4	17.1237987728
+UniRef50_A3PJT4|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.4324994366
+UniRef50_A3PJT4|unclassified	3.6912993362
+UniRef50_I6WFZ4: Hexapeptide repeat containing protein	17.1234116878
+UniRef50_I6WFZ4: Hexapeptide repeat containing protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.1234116878
+UniRef50_D3QDQ3	17.1157289801
+UniRef50_D3QDQ3|g__Staphylococcus.s__Staphylococcus_epidermidis	11.4660114660
+UniRef50_D3QDQ3|unclassified	5.6497175141
+UniRef50_P0A9A0: Ferritin-1	17.1087951403
+UniRef50_P0A9A0: Ferritin-1|g__Escherichia.s__Escherichia_coli	17.1087951403
+UniRef50_H2A9D7	17.1063862496
+UniRef50_H2A9D7|g__Streptococcus.s__Streptococcus_mutans	17.1063862496
+UniRef50_P54933: ATP-binding transport protein SmoK	17.1055509126
+UniRef50_P54933: ATP-binding transport protein SmoK|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.1055509126
+UniRef50_A0A028CJT1: LysR family transcriptional regulator	17.1027349442
+UniRef50_A0A028CJT1: LysR family transcriptional regulator|g__Escherichia.s__Escherichia_coli	17.1027349442
+UniRef50_O27585: Lysine--tRNA ligase	17.0980183331
+UniRef50_O27585: Lysine--tRNA ligase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.0980183331
+UniRef50_A7X1K6: 30S ribosomal protein S16	17.0973402875
+UniRef50_A7X1K6: 30S ribosomal protein S16|g__Staphylococcus.s__Staphylococcus_aureus	17.0973402875
+UniRef50_A8Z4J8	17.0952659264
+UniRef50_A8Z4J8|g__Staphylococcus.s__Staphylococcus_aureus	17.0952659264
+UniRef50_A5UP34	17.0952377228
+UniRef50_A5UP34|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.0952377228
+UniRef50_B9KTM7	17.0940170940
+UniRef50_B9KTM7|unclassified	17.0940170940
+UniRef50_P77307: Probable iron export permease protein FetB	17.0898928522
+UniRef50_P77307: Probable iron export permease protein FetB|g__Escherichia.s__Escherichia_coli	17.0898928522
+UniRef50_P76242: Inner membrane transport protein YeaN	17.0870499045
+UniRef50_P76242: Inner membrane transport protein YeaN|g__Escherichia.s__Escherichia_coli	17.0870499045
+UniRef50_Q5HLR0	17.0855555201
+UniRef50_Q5HLR0|g__Staphylococcus.s__Staphylococcus_epidermidis	17.0855555201
+UniRef50_D3DZ81: Cytochrome C-type biogenesis protein DsbD	17.0821900686
+UniRef50_D3DZ81: Cytochrome C-type biogenesis protein DsbD|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.0821900686
+UniRef50_Q045P5: UPF0297 protein LGAS_0422	17.0777964017
+UniRef50_Q045P5: UPF0297 protein LGAS_0422|g__Staphylococcus.s__Staphylococcus_epidermidis	13.1252272317
+UniRef50_Q045P5: UPF0297 protein LGAS_0422|g__Staphylococcus.s__Staphylococcus_aureus	3.9525691700
+UniRef50_F2EVN8: 23S rRNA RlmB	17.0758701217
+UniRef50_F2EVN8: 23S rRNA RlmB|g__Escherichia.s__Escherichia_coli	17.0758701217
+UniRef50_F3WHU8: Peptidase M16 inactive domain protein	17.0748029603
+UniRef50_F3WHU8: Peptidase M16 inactive domain protein|g__Escherichia.s__Escherichia_coli	17.0748029603
+UniRef50_B4TCQ6: Argininosuccinate lyase	17.0740809143
+UniRef50_B4TCQ6: Argininosuccinate lyase|g__Escherichia.s__Escherichia_coli	16.5405158424
+UniRef50_B4TCQ6: Argininosuccinate lyase|unclassified	0.5335650719
+UniRef50_A7ZSV0	17.0739390618
+UniRef50_A7ZSV0|g__Escherichia.s__Escherichia_coli	15.3687773044
+UniRef50_A7ZSV0|unclassified	1.7051617574
+UniRef50_Q9HTX3: Probable binding protein component of ABC iron transporter PA5217	17.0620597580
+UniRef50_Q9HTX3: Probable binding protein component of ABC iron transporter PA5217|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.8569487940
+UniRef50_Q9HTX3: Probable binding protein component of ABC iron transporter PA5217|unclassified	0.2051109640
+UniRef50_Q48HE7: Iron compound ABC transporter, periplasmic iron compound-binding protein	17.0591711724
+UniRef50_Q48HE7: Iron compound ABC transporter, periplasmic iron compound-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.9594111208
+UniRef50_Q48HE7: Iron compound ABC transporter, periplasmic iron compound-binding protein|unclassified	0.0997600516
+UniRef50_A3PK85: Alpha/beta hydrolase fold	17.0530199001
+UniRef50_A3PK85: Alpha/beta hydrolase fold|g__Rhodobacter.s__Rhodobacter_sphaeroides	17.0530199001
+UniRef50_D3V7P4: Multidrug resistance protein MdtC	17.0526478535
+UniRef50_D3V7P4: Multidrug resistance protein MdtC|g__Escherichia.s__Escherichia_coli	17.0526478535
+UniRef50_P42591	17.0473893773
+UniRef50_P42591|g__Escherichia.s__Escherichia_coli	17.0473893773
+UniRef50_P94951: F420-dependent methylenetetrahydromethanopterin dehydrogenase	17.0426751326
+UniRef50_P94951: F420-dependent methylenetetrahydromethanopterin dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.0426751326
+UniRef50_Q2FJW9	17.0424344234
+UniRef50_Q2FJW9|g__Staphylococcus.s__Staphylococcus_aureus	16.4151054612
+UniRef50_Q2FJW9|unclassified	0.6273289621
+UniRef50_P75826	17.0394750766
+UniRef50_P75826|g__Escherichia.s__Escherichia_coli	17.0394750766
+UniRef50_L1K8E5	17.0390873998
+UniRef50_L1K8E5|unclassified	17.0390873998
+UniRef50_A3PHB0	17.0387560775
+UniRef50_A3PHB0|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.1630337659
+UniRef50_A3PHB0|unclassified	0.8757223116
+UniRef50_A6UV64: 30S ribosomal protein S19	17.0335748279
+UniRef50_A6UV64: 30S ribosomal protein S19|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.0335748279
+UniRef50_L1FI55: Citrate carrier	17.0307697559
+UniRef50_L1FI55: Citrate carrier|g__Escherichia.s__Escherichia_coli	17.0307697559
+UniRef50_N2SSM7	17.0255304624
+UniRef50_N2SSM7|g__Escherichia.s__Escherichia_coli	17.0255304624
+UniRef50_P21338: Ribonuclease I	17.0242291346
+UniRef50_P21338: Ribonuclease I|g__Escherichia.s__Escherichia_coli	17.0242291346
+UniRef50_G6ES00: Transposase	17.0234214231
+UniRef50_G6ES00: Transposase|g__Streptococcus.s__Streptococcus_mutans	17.0234214231
+UniRef50_P77328: Putative purine permease YbbY	17.0231876246
+UniRef50_P77328: Putative purine permease YbbY|g__Escherichia.s__Escherichia_coli	17.0231876246
+UniRef50_C6WU62: Cytochrome-c oxidase	17.0229954284
+UniRef50_C6WU62: Cytochrome-c oxidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	17.0229954284
+UniRef50_J0F0U1	17.0219279523
+UniRef50_J0F0U1|g__Staphylococcus.s__Staphylococcus_epidermidis	9.6485812927
+UniRef50_J0F0U1|unclassified	7.3733466596
+UniRef50_P45955	17.0189935362
+UniRef50_P45955|g__Escherichia.s__Escherichia_coli	17.0189935362
+UniRef50_P33341: Outer membrane usher protein YehB	17.0176442534
+UniRef50_P33341: Outer membrane usher protein YehB|g__Escherichia.s__Escherichia_coli	17.0176442534
+UniRef50_UPI00036979C8: hypothetical protein	17.0156033104
+UniRef50_UPI00036979C8: hypothetical protein|unclassified	17.0156033104
+UniRef50_A3CX71: Glycerol-1-phosphate dehydrogenase [NAD(P)+]	17.0140284235
+UniRef50_A3CX71: Glycerol-1-phosphate dehydrogenase [NAD(P)+]|g__Methanobrevibacter.s__Methanobrevibacter_smithii	17.0140284235
+UniRef50_N5FY18: P-loop ATPase	17.0035402111
+UniRef50_N5FY18: P-loop ATPase|g__Staphylococcus.s__Staphylococcus_aureus	17.0035402111
+UniRef50_P45420	17.0028515784
+UniRef50_P45420|g__Escherichia.s__Escherichia_coli	17.0028515784
+UniRef50_C5Q3L0	16.9949214752
+UniRef50_C5Q3L0|g__Staphylococcus.s__Staphylococcus_aureus	9.2985151050
+UniRef50_C5Q3L0|unclassified	7.6964063703
+UniRef50_P75857: Probable outer membrane usher protein ElfC	16.9945394189
+UniRef50_P75857: Probable outer membrane usher protein ElfC|g__Escherichia.s__Escherichia_coli	16.9945394189
+UniRef50_Q5HM76	16.9930875576
+UniRef50_Q5HM76|unclassified	16.9930875576
+UniRef50_P43801: Anaerobic glycerol-3-phosphate dehydrogenase subunit C	16.9917144636
+UniRef50_P43801: Anaerobic glycerol-3-phosphate dehydrogenase subunit C|g__Escherichia.s__Escherichia_coli	16.9917144636
+UniRef50_Q87DN0: Tyrosine recombinase XerD	16.9882616035
+UniRef50_Q87DN0: Tyrosine recombinase XerD|g__Escherichia.s__Escherichia_coli	16.9882616035
+UniRef50_A5UP21: Predicted type II restriction enzyme, methylase subunit	16.9864960910
+UniRef50_A5UP21: Predicted type II restriction enzyme, methylase subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.9864960910
+UniRef50_Q8FKC6: Acyl carrier protein phosphodiesterase	16.9844536510
+UniRef50_Q8FKC6: Acyl carrier protein phosphodiesterase|g__Escherichia.s__Escherichia_coli	16.9844536510
+UniRef50_P0AC95: High-affinity gluconate transporter	16.9773362397
+UniRef50_P0AC95: High-affinity gluconate transporter|g__Escherichia.s__Escherichia_coli	16.9474234824
+UniRef50_P0AC95: High-affinity gluconate transporter|unclassified	0.0299127573
+UniRef50_R9SJF2: Exosome subunit	16.9768196378
+UniRef50_R9SJF2: Exosome subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.9768196378
+UniRef50_C6SPS1	16.9760782158
+UniRef50_C6SPS1|g__Streptococcus.s__Streptococcus_mutans	15.9776457770
+UniRef50_C6SPS1|unclassified	0.9984324387
+UniRef50_R9SIM0: Universal stress protein UspA1	16.9688266993
+UniRef50_R9SIM0: Universal stress protein UspA1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.9688266993
+UniRef50_A5ULC4: Archaeosine tRNA-ribosyltransferase	16.9665429208
+UniRef50_A5ULC4: Archaeosine tRNA-ribosyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.9665429208
+UniRef50_P77768	16.9637054475
+UniRef50_P77768|g__Escherichia.s__Escherichia_coli	16.9637054475
+UniRef50_UPI000371CF62: hypothetical protein, partial	16.9576744823
+UniRef50_UPI000371CF62: hypothetical protein, partial|unclassified	16.9576744823
+UniRef50_P52086: Alpha-ribazole phosphatase	16.9505959155
+UniRef50_P52086: Alpha-ribazole phosphatase|g__Escherichia.s__Escherichia_coli	16.9505959155
+UniRef50_W1DH05: Shikimate transporter	16.9492431891
+UniRef50_W1DH05: Shikimate transporter|g__Escherichia.s__Escherichia_coli	16.9492431891
+UniRef50_H4HIT9	16.9491525424
+UniRef50_H4HIT9|g__Staphylococcus.s__Staphylococcus_aureus	16.9491525424
+UniRef50_J9UQW7	16.9491525424
+UniRef50_J9UQW7|unclassified	16.9491525424
+UniRef50_Q5HPL7	16.9491525424
+UniRef50_Q5HPL7|g__Staphylococcus.s__Staphylococcus_epidermidis	16.9491525424
+UniRef50_U5UEG4	16.9491525424
+UniRef50_U5UEG4|g__Streptococcus.s__Streptococcus_mutans	16.9491525424
+UniRef50_B7N0I9: Zinc transporter ZupT	16.9490210897
+UniRef50_B7N0I9: Zinc transporter ZupT|g__Escherichia.s__Escherichia_coli	16.9490210897
+UniRef50_P33011: Inner membrane protein YeeA	16.9476308306
+UniRef50_P33011: Inner membrane protein YeeA|g__Escherichia.s__Escherichia_coli	16.9476308306
+UniRef50_U5SC02	16.9471674758
+UniRef50_U5SC02|g__Streptococcus.s__Streptococcus_agalactiae	16.9471674758
+UniRef50_Q1QX56: Phosphate acyltransferase	16.9463059710
+UniRef50_Q1QX56: Phosphate acyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.9463059710
+UniRef50_A5UK56: Arginine biosynthesis bifunctional protein ArgJ	16.9431225342
+UniRef50_A5UK56: Arginine biosynthesis bifunctional protein ArgJ|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.9431225342
+UniRef50_P78067: Thiosulfate sulfurtransferase YnjE	16.9414899507
+UniRef50_P78067: Thiosulfate sulfurtransferase YnjE|g__Escherichia.s__Escherichia_coli	16.9414899507
+UniRef50_I4TNI4	16.9375250904
+UniRef50_I4TNI4|g__Escherichia.s__Escherichia_coli	16.9375250904
+UniRef50_B4SPS1: Glutathione S-transferase domain	16.9347467780
+UniRef50_B4SPS1: Glutathione S-transferase domain|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.9347467780
+UniRef50_Q8DEZ6: Dual-specificity RNA methyltransferase RlmN	16.9329498632
+UniRef50_Q8DEZ6: Dual-specificity RNA methyltransferase RlmN|g__Escherichia.s__Escherichia_coli	16.8463615720
+UniRef50_Q8DEZ6: Dual-specificity RNA methyltransferase RlmN|unclassified	0.0865882913
+UniRef50_P39282: Inner membrane transporter YjeM	16.9327352548
+UniRef50_P39282: Inner membrane transporter YjeM|g__Escherichia.s__Escherichia_coli	16.9327352548
+UniRef50_UPI00035CE977: hypothetical protein	16.9293324294
+UniRef50_UPI00035CE977: hypothetical protein|unclassified	16.9293324294
+UniRef50_B3PG87: Metallo-beta-lactamase superfamily domain protein	16.9276134377
+UniRef50_B3PG87: Metallo-beta-lactamase superfamily domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.9276134377
+UniRef50_B2U2C8: Electron transport complex subunit RsxC	16.9216164161
+UniRef50_B2U2C8: Electron transport complex subunit RsxC|g__Escherichia.s__Escherichia_coli	16.9216164161
+UniRef50_A9BF34: 50S ribosomal protein L7/L12	16.9214792300
+UniRef50_A9BF34: 50S ribosomal protein L7/L12|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.9214792300
+UniRef50_L7WW55	16.9214135106
+UniRef50_L7WW55|g__Staphylococcus.s__Staphylococcus_aureus	16.9214135106
+UniRef50_P25550: Anaerobic sulfatase-maturating enzyme homolog AslB	16.9158514831
+UniRef50_P25550: Anaerobic sulfatase-maturating enzyme homolog AslB|g__Escherichia.s__Escherichia_coli	16.9158514831
+UniRef50_H8LBR4: Zeta toxin	16.9110678016
+UniRef50_H8LBR4: Zeta toxin|g__Streptococcus.s__Streptococcus_mutans	16.9110678016
+UniRef50_W6RZK7	16.9100940553
+UniRef50_W6RZK7|g__Clostridium.s__Clostridium_beijerinckii	16.9100940553
+UniRef50_P37691	16.9077226296
+UniRef50_P37691|g__Escherichia.s__Escherichia_coli	16.9077226296
+UniRef50_A3PS02: WGR domain protein	16.9076514817
+UniRef50_A3PS02: WGR domain protein|unclassified	13.0466476207
+UniRef50_A3PS02: WGR domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.8610038610
+UniRef50_B5BFR1: Possible oxygen-independent coproporphyrinogen III oxidase	16.9064616357
+UniRef50_B5BFR1: Possible oxygen-independent coproporphyrinogen III oxidase|g__Escherichia.s__Escherichia_coli	16.9064616357
+UniRef50_Q8XCY9: Protease ElaD	16.9062077410
+UniRef50_Q8XCY9: Protease ElaD|g__Escherichia.s__Escherichia_coli	16.9062077410
+UniRef50_Q2YQI5: Adenylosuccinate synthetase	16.9011069461
+UniRef50_Q2YQI5: Adenylosuccinate synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.7076266476
+UniRef50_Q2YQI5: Adenylosuccinate synthetase|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.2545504430
+UniRef50_Q2YQI5: Adenylosuccinate synthetase|g__Neisseria.s__Neisseria_meningitidis	0.7757951901
+UniRef50_Q2YQI5: Adenylosuccinate synthetase|unclassified	0.1631346654
+UniRef50_P0AEN0: Cystine-binding periplasmic protein	16.9007722717
+UniRef50_P0AEN0: Cystine-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	16.9007722717
+UniRef50_Q57609: GTP cyclohydrolase III	16.8982811662
+UniRef50_Q57609: GTP cyclohydrolase III|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.8982811662
+UniRef50_B5EWS4: Recombination-associated protein RdgC	16.8961538673
+UniRef50_B5EWS4: Recombination-associated protein RdgC|g__Escherichia.s__Escherichia_coli	16.8961538673
+UniRef50_Q664W4: Isocitrate dehydrogenase kinase/phosphatase	16.8914272027
+UniRef50_Q664W4: Isocitrate dehydrogenase kinase/phosphatase|g__Escherichia.s__Escherichia_coli	16.8914272027
+UniRef50_Q2NZ59: Probable GTP-binding protein EngB	16.8911973123
+UniRef50_Q2NZ59: Probable GTP-binding protein EngB|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.8911973123
+UniRef50_D3DZ73: Methanogenesis marker protein 6	16.8860858522
+UniRef50_D3DZ73: Methanogenesis marker protein 6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.8860858522
+UniRef50_D7DSV8: CRISPR-associated protein Cas4	16.8834035230
+UniRef50_D7DSV8: CRISPR-associated protein Cas4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.8834035230
+UniRef50_D5AUR3: Tyrosine-protein kinase Wzc	16.8713858547
+UniRef50_D5AUR3: Tyrosine-protein kinase Wzc|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.8713858547
+UniRef50_Q6LPK7: Tetraacyldisaccharide 4'-kinase	16.8686088714
+UniRef50_Q6LPK7: Tetraacyldisaccharide 4'-kinase|g__Escherichia.s__Escherichia_coli	16.8686088714
+UniRef50_Q58767: Tritrans,polycis-undecaprenyl-diphosphate synthase (geranylgeranyl-diphosphate specific)	16.8657039060
+UniRef50_Q58767: Tritrans,polycis-undecaprenyl-diphosphate synthase (geranylgeranyl-diphosphate specific)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.8657039060
+UniRef50_E0XT86	16.8539325843
+UniRef50_E0XT86|unclassified	16.8539325843
+UniRef50_V9QR17: GntR family transcriptional regulator	16.8534247618
+UniRef50_V9QR17: GntR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.8534247618
+UniRef50_Q8CN84: Copper export proteins	16.8526232461
+UniRef50_Q8CN84: Copper export proteins|g__Staphylococcus.s__Staphylococcus_epidermidis	16.8526232461
+UniRef50_Q5HRY7	16.8509128036
+UniRef50_Q5HRY7|g__Staphylococcus.s__Staphylococcus_epidermidis	16.8509128036
+UniRef50_F4DMU6	16.8507691868
+UniRef50_F4DMU6|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.8507691868
+UniRef50_R7PU03	16.8502491477
+UniRef50_R7PU03|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.8502491477
+UniRef50_Q2NFD4: Flap endonuclease 1	16.8385524905
+UniRef50_Q2NFD4: Flap endonuclease 1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.8385524905
+UniRef50_V6P305	16.8376753617
+UniRef50_V6P305|unclassified	16.8376753617
+UniRef50_P76226: Inner membrane protein YnjF	16.8355098557
+UniRef50_P76226: Inner membrane protein YnjF|g__Escherichia.s__Escherichia_coli	16.8355098557
+UniRef50_P0A9F8: Glycine cleavage system transcriptional activator	16.8238764654
+UniRef50_P0A9F8: Glycine cleavage system transcriptional activator|g__Escherichia.s__Escherichia_coli	16.8238764654
+UniRef50_P09163	16.8190283117
+UniRef50_P09163|g__Escherichia.s__Escherichia_coli	15.7836036620
+UniRef50_P09163|unclassified	1.0354246497
+UniRef50_A0A011QMZ0	16.8159134067
+UniRef50_A0A011QMZ0|unclassified	16.8159134067
+UniRef50_D3QMJ7	16.8147484832
+UniRef50_D3QMJ7|g__Escherichia.s__Escherichia_coli	16.8147484832
+UniRef50_A5UL23: Fe-S oxidoreductase	16.8107789332
+UniRef50_A5UL23: Fe-S oxidoreductase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.8107789332
+UniRef50_W7ULK6	16.8092179713
+UniRef50_W7ULK6|unclassified	16.8092179713
+UniRef50_P0AAV5	16.7990749546
+UniRef50_P0AAV5|g__Escherichia.s__Escherichia_coli	16.5441406486
+UniRef50_P0AAV5|unclassified	0.2549343060
+UniRef50_Q3J5B1	16.7959056439
+UniRef50_Q3J5B1|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.7959056439
+UniRef50_Q1GIW0	16.7890210868
+UniRef50_Q1GIW0|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.7890210868
+UniRef50_E3GX37: H+transporting two-sector ATPase C subunit	16.7886371708
+UniRef50_E3GX37: H+transporting two-sector ATPase C subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.7886371708
+UniRef50_UPI00036FAB93: MULTISPECIES: hypothetical protein	16.7844908715
+UniRef50_UPI00036FAB93: MULTISPECIES: hypothetical protein|unclassified	16.7844908715
+UniRef50_Q8ZPD6	16.7840079321
+UniRef50_Q8ZPD6|g__Escherichia.s__Escherichia_coli	16.7840079321
+UniRef50_O26506: Conserved protein	16.7829748910
+UniRef50_O26506: Conserved protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.7829748910
+UniRef50_Q46DD8: Acetyltransferase	16.7820374570
+UniRef50_Q46DD8: Acetyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.7820374570
+UniRef50_A5UNH3	16.7818697623
+UniRef50_A5UNH3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.7818697623
+UniRef50_P37325	16.7807655959
+UniRef50_P37325|g__Escherichia.s__Escherichia_coli	16.7807655959
+UniRef50_A6V6R8	16.7772740082
+UniRef50_A6V6R8|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.7772740082
+UniRef50_A5UL05: Conserved hypothetical membrane protein Msm_0678	16.7747348335
+UniRef50_A5UL05: Conserved hypothetical membrane protein Msm_0678|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.7747348335
+UniRef50_F8JFK7	16.7668923564
+UniRef50_F8JFK7|unclassified	16.7668923564
+UniRef50_P39346: L-idonate 5-dehydrogenase (NAD(P)(+))	16.7598893651
+UniRef50_P39346: L-idonate 5-dehydrogenase (NAD(P)(+))|g__Escherichia.s__Escherichia_coli	16.7598893651
+UniRef50_P21824: Chemotaxis protein methyltransferase	16.7533647119
+UniRef50_P21824: Chemotaxis protein methyltransferase|g__Escherichia.s__Escherichia_coli	16.3765088933
+UniRef50_P21824: Chemotaxis protein methyltransferase|unclassified	0.3768558185
+UniRef50_K2AF05	16.7483396006
+UniRef50_K2AF05|unclassified	16.7483396006
+UniRef50_P0AB08	16.7419380883
+UniRef50_P0AB08|g__Escherichia.s__Escherichia_coli	16.7419380883
+UniRef50_Q1MKV6	16.7364016736
+UniRef50_Q1MKV6|unclassified	16.7364016736
+UniRef50_J1EXN1	16.7196942493
+UniRef50_J1EXN1|unclassified	16.7196942493
+UniRef50_S1D2M1	16.7195644620
+UniRef50_S1D2M1|g__Escherichia.s__Escherichia_coli	16.7195644620
+UniRef50_J0GJ57: LPXTG-motif cell wall anchor domain protein	16.7130155264
+UniRef50_J0GJ57: LPXTG-motif cell wall anchor domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	16.7130155264
+UniRef50_Q2NFZ8: 50S ribosomal protein L13	16.7052940469
+UniRef50_Q2NFZ8: 50S ribosomal protein L13|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.7052940469
+UniRef50_A4WVR4	16.7044779852
+UniRef50_A4WVR4|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.7044779852
+UniRef50_Q9ZFA2: Citrate synthase (Fragment)	16.7039678243
+UniRef50_Q9ZFA2: Citrate synthase (Fragment)|unclassified	16.7039678243
+UniRef50_U5NMY6	16.6946279473
+UniRef50_U5NMY6|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.3182838613
+UniRef50_U5NMY6|unclassified	5.3763440860
+UniRef50_D9UMD6	16.6941879279
+UniRef50_D9UMD6|unclassified	16.6941879279
+UniRef50_A5UM77	16.6909098182
+UniRef50_A5UM77|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.6909098182
+UniRef50_P76349	16.6868258836
+UniRef50_P76349|g__Escherichia.s__Escherichia_coli	16.6868258836
+UniRef50_P30131: Carbamoyltransferase HypF	16.6834861952
+UniRef50_P30131: Carbamoyltransferase HypF|g__Escherichia.s__Escherichia_coli	16.5188841454
+UniRef50_P30131: Carbamoyltransferase HypF|unclassified	0.1646020498
+UniRef50_A6LT92	16.6826055840
+UniRef50_A6LT92|g__Clostridium.s__Clostridium_beijerinckii	16.6826055840
+UniRef50_A3PHN3	16.6735819671
+UniRef50_A3PHN3|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.2952035887
+UniRef50_A3PHN3|unclassified	3.3783783784
+UniRef50_B9ADH4	16.6676514518
+UniRef50_B9ADH4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.6676514518
+UniRef50_A0A032CY79	16.6666666667
+UniRef50_A0A032CY79|unclassified	16.6666666667
+UniRef50_D9SQY5	16.6666666667
+UniRef50_D9SQY5|g__Clostridium.s__Clostridium_beijerinckii	16.6666666667
+UniRef50_L7VQV4: Chemotaxis signal transduction protein	16.6666666667
+UniRef50_L7VQV4: Chemotaxis signal transduction protein|g__Clostridium.s__Clostridium_beijerinckii	16.6666666667
+UniRef50_Q4L4J6: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	16.6666666667
+UniRef50_Q4L4J6: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	16.6666666667
+UniRef50_R9SKZ1	16.6666666667
+UniRef50_R9SKZ1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.6666666667
+UniRef50_W0YK09	16.6666666667
+UniRef50_W0YK09|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.6666666667
+UniRef50_D4GG42	16.6666666667
+UniRef50_D4GG42|unclassified	16.6666666667
+UniRef50_Q0ARE4: UspA domain protein	16.6663704575
+UniRef50_Q0ARE4: UspA domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.6663704575
+UniRef50_A5UNB4	16.6581274967
+UniRef50_A5UNB4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.6581274967
+UniRef50_M2M947: Putative 40K cell wall protein (Fragment)	16.6529673174
+UniRef50_M2M947: Putative 40K cell wall protein (Fragment)|g__Streptococcus.s__Streptococcus_mutans	16.6529673174
+UniRef50_G8I0W8: Integrase	16.6525728769
+UniRef50_G8I0W8: Integrase|g__Staphylococcus.s__Staphylococcus_epidermidis	16.6525728769
+UniRef50_P39359	16.6470405777
+UniRef50_P39359|g__Escherichia.s__Escherichia_coli	16.6470405777
+UniRef50_P77739	16.6406448253
+UniRef50_P77739|g__Escherichia.s__Escherichia_coli	16.6406448253
+UniRef50_A7FBW9	16.6386554622
+UniRef50_A7FBW9|g__Acinetobacter.s__Acinetobacter_baumannii	16.6386554622
+UniRef50_Q8CS02	16.6318261764
+UniRef50_Q8CS02|g__Staphylococcus.s__Staphylococcus_epidermidis	16.6318261764
+UniRef50_P39360	16.6262985303
+UniRef50_P39360|g__Escherichia.s__Escherichia_coli	16.6262985303
+UniRef50_A4VMA8: Trk system potassium uptake protein	16.6191589842
+UniRef50_A4VMA8: Trk system potassium uptake protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.6191589842
+UniRef50_P34666: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial	16.6178272040
+UniRef50_P34666: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.5586683583
+UniRef50_P34666: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial|unclassified	0.0591588457
+UniRef50_UPI000255A6AD: transcriptional regulator	16.6147440938
+UniRef50_UPI000255A6AD: transcriptional regulator|unclassified	16.6147440938
+UniRef50_A3PPF7	16.6116254324
+UniRef50_A3PPF7|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.9738824407
+UniRef50_A3PPF7|unclassified	0.6377429917
+UniRef50_P11954: L-threonine dehydratase catabolic TdcB	16.6098217524
+UniRef50_P11954: L-threonine dehydratase catabolic TdcB|g__Escherichia.s__Escherichia_coli	16.5680736644
+UniRef50_P11954: L-threonine dehydratase catabolic TdcB|unclassified	0.0417480880
+UniRef50_P52124	16.6082104922
+UniRef50_P52124|g__Escherichia.s__Escherichia_coli	16.6082104922
+UniRef50_P23874: Serine/threonine-protein kinase HipA	16.6078944538
+UniRef50_P23874: Serine/threonine-protein kinase HipA|g__Escherichia.s__Escherichia_coli	16.6078944538
+UniRef50_A0NZX9	16.6037197736
+UniRef50_A0NZX9|unclassified	16.6037197736
+UniRef50_Q2RGX1: Xylose-binding protein	16.6028978184
+UniRef50_Q2RGX1: Xylose-binding protein|g__Clostridium.s__Clostridium_beijerinckii	16.6028978184
+UniRef50_F5M5N4	16.5983459149
+UniRef50_F5M5N4|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.6959492488
+UniRef50_F5M5N4|unclassified	2.9023966661
+UniRef50_A4THV9	16.5953281548
+UniRef50_A4THV9|g__Escherichia.s__Escherichia_coli	16.5953281548
+UniRef50_B6I6D5: tRNA pseudouridine synthase D	16.5927697482
+UniRef50_B6I6D5: tRNA pseudouridine synthase D|g__Escherichia.s__Escherichia_coli	16.5427896691
+UniRef50_B6I6D5: tRNA pseudouridine synthase D|unclassified	0.0499800792
+UniRef50_Q9I1P8	16.5864220812
+UniRef50_Q9I1P8|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.5864220812
+UniRef50_P76100	16.5850553880
+UniRef50_P76100|g__Escherichia.s__Escherichia_coli	16.5850553880
+UniRef50_O26134: Protein translocase subunit SecY	16.5756913828
+UniRef50_O26134: Protein translocase subunit SecY|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.5756913828
+UniRef50_D8EA67	16.5738403468
+UniRef50_D8EA67|g__Escherichia.s__Escherichia_coli	8.5470085470
+UniRef50_D8EA67|unclassified	8.0268317998
+UniRef50_A5UKI0: Flavodoxin, FldA	16.5717469467
+UniRef50_A5UKI0: Flavodoxin, FldA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.5717469467
+UniRef50_C1CU33: Transketolase, C-subunit	16.5667648424
+UniRef50_C1CU33: Transketolase, C-subunit|g__Streptococcus.s__Streptococcus_agalactiae	16.5667648424
+UniRef50_K6TWJ0	16.5655052019
+UniRef50_K6TWJ0|g__Clostridium.s__Clostridium_beijerinckii	16.5655052019
+UniRef50_Q00267: N-hydroxyarylamine O-acetyltransferase	16.5498832976
+UniRef50_Q00267: N-hydroxyarylamine O-acetyltransferase|g__Escherichia.s__Escherichia_coli	16.5498832976
+UniRef50_D3DYX9: Glycosyl transferase GT4 family	16.5480203307
+UniRef50_D3DYX9: Glycosyl transferase GT4 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.5480203307
+UniRef50_D3H3M8	16.5462943765
+UniRef50_D3H3M8|g__Escherichia.s__Escherichia_coli	16.5462943765
+UniRef50_P58219: Inner membrane protein YjgN	16.5461310173
+UniRef50_P58219: Inner membrane protein YjgN|g__Escherichia.s__Escherichia_coli	16.5461310173
+UniRef50_A4YV11: Circadian clock protein kaiB	16.5457184325
+UniRef50_A4YV11: Circadian clock protein kaiB|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.5457184325
+UniRef50_P0A9H8: Cyclopropane-fatty-acyl-phospholipid synthase	16.5456179549
+UniRef50_P0A9H8: Cyclopropane-fatty-acyl-phospholipid synthase|g__Escherichia.s__Escherichia_coli	16.5456179549
+UniRef50_A5UMW1: Predicted permease	16.5327778924
+UniRef50_A5UMW1: Predicted permease|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.5327778924
+UniRef50_Q5PK75: N-acetyl-gamma-glutamyl-phosphate reductase	16.5308837745
+UniRef50_Q5PK75: N-acetyl-gamma-glutamyl-phosphate reductase|g__Escherichia.s__Escherichia_coli	16.5308837745
+UniRef50_Q74N81: 50S ribosomal protein L14	16.5306839645
+UniRef50_Q74N81: 50S ribosomal protein L14|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.5306839645
+UniRef50_Q5PGP5: Glutathione transport system permease protein GsiC	16.5298348892
+UniRef50_Q5PGP5: Glutathione transport system permease protein GsiC|g__Escherichia.s__Escherichia_coli	16.5298348892
+UniRef50_D5TMK9	16.5289256198
+UniRef50_D5TMK9|unclassified	16.5289256198
+UniRef50_F3U4W9: Transcriptional regulator, DeoR family protein	16.5235487520
+UniRef50_F3U4W9: Transcriptional regulator, DeoR family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.5235487520
+UniRef50_V6AGZ8	16.5221723850
+UniRef50_V6AGZ8|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.5221723850
+UniRef50_X5DX57	16.5204584747
+UniRef50_X5DX57|g__Staphylococcus.s__Staphylococcus_aureus	16.5204584747
+UniRef50_Q9CKD6: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE	16.5180368726
+UniRef50_Q9CKD6: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.4212249741
+UniRef50_Q9CKD6: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE|unclassified	0.0968118985
+UniRef50_B6ZS77: YhjQ protein	16.5148106244
+UniRef50_B6ZS77: YhjQ protein|g__Escherichia.s__Escherichia_coli	16.5148106244
+UniRef50_E3GX32: Methyltransferase	16.5102012937
+UniRef50_E3GX32: Methyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.5102012937
+UniRef50_Q8CQW2	16.5089741795
+UniRef50_Q8CQW2|g__Staphylococcus.s__Staphylococcus_epidermidis	16.5089741795
+UniRef50_P00335: Ribitol 2-dehydrogenase	16.4991293255
+UniRef50_P00335: Ribitol 2-dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.4991293255
+UniRef50_Q48FV2: Membrane protein, putative	16.4970652050
+UniRef50_Q48FV2: Membrane protein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.4970652050
+UniRef50_S1QA07	16.4884003252
+UniRef50_S1QA07|unclassified	16.4884003252
+UniRef50_A5UNA6: Exodeoxyribonuclease, XthA	16.4882807572
+UniRef50_A5UNA6: Exodeoxyribonuclease, XthA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.4882807572
+UniRef50_V4CH91: Chaperone fimC	16.4862973454
+UniRef50_V4CH91: Chaperone fimC|g__Escherichia.s__Escherichia_coli	16.4862973454
+UniRef50_A6QIL0: Phage transcriptional regulator	16.4837907527
+UniRef50_A6QIL0: Phage transcriptional regulator|g__Staphylococcus.s__Staphylococcus_aureus	16.4837907527
+UniRef50_P77658	16.4834379996
+UniRef50_P77658|g__Escherichia.s__Escherichia_coli	16.4834379996
+UniRef50_Q8FFR0	16.4829367218
+UniRef50_Q8FFR0|g__Escherichia.s__Escherichia_coli	16.2337070232
+UniRef50_Q8FFR0|unclassified	0.2492296986
+UniRef50_Q1QUS4: Leucyl/phenylalanyl-tRNA--protein transferase	16.4808040283
+UniRef50_Q1QUS4: Leucyl/phenylalanyl-tRNA--protein transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.3795257008
+UniRef50_Q1QUS4: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.1012783276
+UniRef50_H0U7E9	16.4689698507
+UniRef50_H0U7E9|unclassified	16.4689698507
+UniRef50_Q57L59: tRNA1(Val) (adenine(37)-N6)-methyltransferase	16.4680165925
+UniRef50_Q57L59: tRNA1(Val) (adenine(37)-N6)-methyltransferase|g__Escherichia.s__Escherichia_coli	16.4680165925
+UniRef50_M3GAZ5: HlyD family secretion protein	16.4673627358
+UniRef50_M3GAZ5: HlyD family secretion protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.4673627358
+UniRef50_P22350: Pyrroline-5-carboxylate reductase	16.4611378838
+UniRef50_P22350: Pyrroline-5-carboxylate reductase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.4611378838
+UniRef50_I7DFR8	16.4562054851
+UniRef50_I7DFR8|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.4562054851
+UniRef50_A3PMF1	16.4508545951
+UniRef50_A3PMF1|unclassified	16.4508545951
+UniRef50_A5EXL8: Para-aminobenzoate synthetase, component II	16.4497790979
+UniRef50_A5EXL8: Para-aminobenzoate synthetase, component II|g__Clostridium.s__Clostridium_beijerinckii	16.4497790979
+UniRef50_R9SMA4: Cell wall biosynthesis protein Mur ligase family	16.4447180194
+UniRef50_R9SMA4: Cell wall biosynthesis protein Mur ligase family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.4447180194
+UniRef50_A5UJE0: DNA helicase	16.4440209815
+UniRef50_A5UJE0: DNA helicase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.4440209815
+UniRef50_A5UND2	16.4438502674
+UniRef50_A5UND2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.4438502674
+UniRef50_B9KWI5	16.4411622606
+UniRef50_B9KWI5|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.4411622606
+UniRef50_A2RCF8: Ribonuclease P protein component	16.4379534805
+UniRef50_A2RCF8: Ribonuclease P protein component|g__Streptococcus.s__Streptococcus_mutans	16.4379534805
+UniRef50_A6QIG4	16.4321207768
+UniRef50_A6QIG4|g__Staphylococcus.s__Staphylococcus_aureus	16.4321207768
+UniRef50_A6LQM0: 2-dehydro-3-deoxyphosphogluconate aldolase/4-hydroxy-2-oxoglutarate aldolase	16.4211451958
+UniRef50_A6LQM0: 2-dehydro-3-deoxyphosphogluconate aldolase/4-hydroxy-2-oxoglutarate aldolase|g__Clostridium.s__Clostridium_beijerinckii	16.4211451958
+UniRef50_Q47536	16.4082270997
+UniRef50_Q47536|g__Escherichia.s__Escherichia_coli	16.4082270997
+UniRef50_Q83MD7: Vitamin B12-binding protein	16.4055027733
+UniRef50_Q83MD7: Vitamin B12-binding protein|g__Escherichia.s__Escherichia_coli	16.4055027733
+UniRef50_P77433	16.4046383162
+UniRef50_P77433|g__Escherichia.s__Escherichia_coli	15.9874470772
+UniRef50_P77433|unclassified	0.4171912390
+UniRef50_T8WTI4: Arylsulfatase	16.3984634594
+UniRef50_T8WTI4: Arylsulfatase|g__Escherichia.s__Escherichia_coli	16.3984634594
+UniRef50_Q8ZCX2: Polyphosphate kinase	16.3975246715
+UniRef50_Q8ZCX2: Polyphosphate kinase|g__Escherichia.s__Escherichia_coli	16.3975246715
+UniRef50_E1J6K7	16.3934426230
+UniRef50_E1J6K7|g__Escherichia.s__Escherichia_coli	16.3934426230
+UniRef50_E6M6P1	16.3934426230
+UniRef50_E6M6P1|unclassified	16.3934426230
+UniRef50_K1UVG8	16.3934426230
+UniRef50_K1UVG8|unclassified	16.3934426230
+UniRef50_M2GF33	16.3934426230
+UniRef50_M2GF33|g__Streptococcus.s__Streptococcus_mutans	16.3934426230
+UniRef50_P0AEA0: Curli production assembly/transport component CsgF	16.3934426230
+UniRef50_P0AEA0: Curli production assembly/transport component CsgF|g__Escherichia.s__Escherichia_coli	16.3934426230
+UniRef50_P64494	16.3934426230
+UniRef50_P64494|g__Escherichia.s__Escherichia_coli	16.3934426230
+UniRef50_Q57P89: Stationary-phase-induced ribosome-associated protein	16.3934426230
+UniRef50_Q57P89: Stationary-phase-induced ribosome-associated protein|g__Escherichia.s__Escherichia_coli	16.3934426230
+UniRef50_Q5HQP7	16.3934426230
+UniRef50_Q5HQP7|g__Staphylococcus.s__Staphylococcus_epidermidis	16.3934426230
+UniRef50_Q3IV62	16.3933205146
+UniRef50_Q3IV62|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.0063376640
+UniRef50_Q3IV62|unclassified	1.3869828506
+UniRef50_P13604: NADPH-dependent butanol dehydrogenase	16.3918296748
+UniRef50_P13604: NADPH-dependent butanol dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	16.3918296748
+UniRef50_Q8P151: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase	16.3915906369
+UniRef50_Q8P151: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase|g__Streptococcus.s__Streptococcus_mutans	16.3915906369
+UniRef50_A6TYH1	16.3893669976
+UniRef50_A6TYH1|g__Staphylococcus.s__Staphylococcus_aureus	13.4718316248
+UniRef50_A6TYH1|unclassified	2.9175353728
+UniRef50_P71237: Putative colanic acid biosynthesis glycosyl transferase WcaC	16.3888459900
+UniRef50_P71237: Putative colanic acid biosynthesis glycosyl transferase WcaC|g__Escherichia.s__Escherichia_coli	16.3888459900
+UniRef50_Q8FEF9: tRNA pseudouridine synthase C	16.3740925901
+UniRef50_Q8FEF9: tRNA pseudouridine synthase C|g__Escherichia.s__Escherichia_coli	16.3740925901
+UniRef50_R7PWL5: Tetrahydromethanopterin S-methyltransferase subunit D	16.3704326304
+UniRef50_R7PWL5: Tetrahydromethanopterin S-methyltransferase subunit D|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.3704326304
+UniRef50_O26960: Probable porphobilinogen deaminase	16.3703642140
+UniRef50_O26960: Probable porphobilinogen deaminase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.3703642140
+UniRef50_H9XXB1	16.3698844111
+UniRef50_H9XXB1|g__Escherichia.s__Escherichia_coli	16.3698844111
+UniRef50_P77301	16.3665446537
+UniRef50_P77301|g__Escherichia.s__Escherichia_coli	16.3665446537
+UniRef50_Q02430: 2-desacetyl-2-hydroxyethyl bacteriochlorophyllide A dehydrogenase	16.3644276804
+UniRef50_Q02430: 2-desacetyl-2-hydroxyethyl bacteriochlorophyllide A dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.7578298440
+UniRef50_Q02430: 2-desacetyl-2-hydroxyethyl bacteriochlorophyllide A dehydrogenase|unclassified	2.6065978365
+UniRef50_U3SRT7	16.3608590402
+UniRef50_U3SRT7|g__Streptococcus.s__Streptococcus_mutans	15.9536115611
+UniRef50_U3SRT7|unclassified	0.4072474791
+UniRef50_D3GY91	16.3594103728
+UniRef50_D3GY91|g__Escherichia.s__Escherichia_coli	15.4472791183
+UniRef50_D3GY91|unclassified	0.9121312545
+UniRef50_A5UK98	16.3544226044
+UniRef50_A5UK98|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.3544226044
+UniRef50_P76407: Lipid kinase YegS	16.3526387728
+UniRef50_P76407: Lipid kinase YegS|g__Escherichia.s__Escherichia_coli	16.3526387728
+UniRef50_UPI00035C8380: hypothetical protein	16.3424231467
+UniRef50_UPI00035C8380: hypothetical protein|unclassified	16.3424231467
+UniRef50_P58221: Molybdenum cofactor guanylyltransferase	16.3403334076
+UniRef50_P58221: Molybdenum cofactor guanylyltransferase|g__Escherichia.s__Escherichia_coli	16.3403334076
+UniRef50_Q7N9D9: PTS system N-acetylmuramic acid-specific EIIBC component	16.3358364152
+UniRef50_Q7N9D9: PTS system N-acetylmuramic acid-specific EIIBC component|g__Escherichia.s__Escherichia_coli	16.2526561789
+UniRef50_Q7N9D9: PTS system N-acetylmuramic acid-specific EIIBC component|unclassified	0.0831802363
+UniRef50_P52123	16.3349821119
+UniRef50_P52123|g__Escherichia.s__Escherichia_coli	16.3349821119
+UniRef50_A6QIK3	16.3338006959
+UniRef50_A6QIK3|g__Staphylococcus.s__Staphylococcus_aureus	16.3338006959
+UniRef50_B7V2U7: 2,3,4,5-tetrahydropyridine-2,6-dicarboxylate N-succinyltransferase	16.3289222378
+UniRef50_B7V2U7: 2,3,4,5-tetrahydropyridine-2,6-dicarboxylate N-succinyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.3289222378
+UniRef50_B8ZR31: Peptide chain release factor 1	16.3202124402
+UniRef50_B8ZR31: Peptide chain release factor 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.3202124402
+UniRef50_O26307: Hydrogenase expression/formation protein HypE	16.3157327246
+UniRef50_O26307: Hydrogenase expression/formation protein HypE|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.3157327246
+UniRef50_Q8X9I6: Glucans biosynthesis protein C	16.3140284033
+UniRef50_Q8X9I6: Glucans biosynthesis protein C|g__Escherichia.s__Escherichia_coli	16.3140284033
+UniRef50_Q8DW62	16.3111465203
+UniRef50_Q8DW62|g__Streptococcus.s__Streptococcus_mutans	16.3111465203
+UniRef50_E2X9Y8: PTS system, glucitol/sorbitol-specific, IIBC component	16.3109210872
+UniRef50_E2X9Y8: PTS system, glucitol/sorbitol-specific, IIBC component|g__Escherichia.s__Escherichia_coli	16.3109210872
+UniRef50_A6LUQ6	16.3092223065
+UniRef50_A6LUQ6|g__Clostridium.s__Clostridium_beijerinckii	16.3092223065
+UniRef50_U5UKN3: PTS system lactose-specific EIICB component	16.3089218731
+UniRef50_U5UKN3: PTS system lactose-specific EIICB component|g__Staphylococcus.s__Staphylococcus_epidermidis	16.3089218731
+UniRef50_F7UHM1	16.3074871435
+UniRef50_F7UHM1|unclassified	16.3074871435
+UniRef50_Q3KIW4: Nicotinate phosphoribosyltransferase	16.2981404969
+UniRef50_Q3KIW4: Nicotinate phosphoribosyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.2364507157
+UniRef50_Q3KIW4: Nicotinate phosphoribosyltransferase|unclassified	0.0616897812
+UniRef50_E2X9M1: Aminotransferase ybdL	16.2945785082
+UniRef50_E2X9M1: Aminotransferase ybdL|g__Escherichia.s__Escherichia_coli	16.2945785082
+UniRef50_O26880: Probable cobyric acid synthase	16.2913501354
+UniRef50_O26880: Probable cobyric acid synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.2913501354
+UniRef50_H6MGZ5: Rhamnose-proton symporter	16.2891474614
+UniRef50_H6MGZ5: Rhamnose-proton symporter|g__Escherichia.s__Escherichia_coli	16.2891474614
+UniRef50_Q8XA47: Sensor histidine kinase QseE	16.2864866152
+UniRef50_Q8XA47: Sensor histidine kinase QseE|g__Escherichia.s__Escherichia_coli	16.2864866152
+UniRef50_I6SVK1: Putative transcriptional regulator	16.2848681548
+UniRef50_I6SVK1: Putative transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.2848681548
+UniRef50_Q0ARD7: Pyridoxine/pyridoxamine 5'-phosphate oxidase	16.2807799722
+UniRef50_Q0ARD7: Pyridoxine/pyridoxamine 5'-phosphate oxidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.9037084179
+UniRef50_Q0ARD7: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	0.3770715543
+UniRef50_P63299	16.2675354801
+UniRef50_P63299|g__Escherichia.s__Escherichia_coli	15.6083396989
+UniRef50_P63299|g__Clostridium.s__Clostridium_beijerinckii	0.6591957811
+UniRef50_P0ACT3: Probable acrEF/envCD operon repressor	16.2673984950
+UniRef50_P0ACT3: Probable acrEF/envCD operon repressor|g__Escherichia.s__Escherichia_coli	16.2673984950
+UniRef50_P15644: Type II secretion system protein D	16.2606550492
+UniRef50_P15644: Type II secretion system protein D|g__Escherichia.s__Escherichia_coli	16.2606550492
+UniRef50_Q165A6: Molybdate ABC transporter, periplasmic molybdate-binding protein	16.2592651419
+UniRef50_Q165A6: Molybdate ABC transporter, periplasmic molybdate-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.2592651419
+UniRef50_Q3J3U2	16.2590771412
+UniRef50_Q3J3U2|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.3777953092
+UniRef50_Q3J3U2|unclassified	5.8812818320
+UniRef50_A0A020CJ31	16.2578391512
+UniRef50_A0A020CJ31|unclassified	16.2578391512
+UniRef50_S5XYD0: Type I secretion outer membrane protein, TolC	16.2570975011
+UniRef50_S5XYD0: Type I secretion outer membrane protein, TolC|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.2570975011
+UniRef50_O27273: L-sulfolactate dehydrogenase	16.2567420643
+UniRef50_O27273: L-sulfolactate dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.2567420643
+UniRef50_Q7MHK1: Glutathione synthetase	16.2564181974
+UniRef50_Q7MHK1: Glutathione synthetase|g__Escherichia.s__Escherichia_coli	15.5585943535
+UniRef50_Q7MHK1: Glutathione synthetase|unclassified	0.6978238439
+UniRef50_Q88QC7: Biosynthetic arginine decarboxylase	16.2533612946
+UniRef50_Q88QC7: Biosynthetic arginine decarboxylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.2533612946
+UniRef50_T1Y7T5: Nitrogen regulation protein NIFR3	16.2510448262
+UniRef50_T1Y7T5: Nitrogen regulation protein NIFR3|g__Staphylococcus.s__Staphylococcus_aureus	15.3846153846
+UniRef50_T1Y7T5: Nitrogen regulation protein NIFR3|unclassified	0.8664294415
+UniRef50_UPI0003724574: CRISPR-associated protein Csn1, partial	16.2408103189
+UniRef50_UPI0003724574: CRISPR-associated protein Csn1, partial|g__Streptococcus.s__Streptococcus_mutans	16.2408103189
+UniRef50_Q5HL96	16.2406015038
+UniRef50_Q5HL96|g__Staphylococcus.s__Staphylococcus_epidermidis	16.2406015038
+UniRef50_A6VAY7: Membrane protein, putative	16.2398054054
+UniRef50_A6VAY7: Membrane protein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.2398054054
+UniRef50_B7A2D4: Beta-glucuronidase UidA	16.2252335405
+UniRef50_B7A2D4: Beta-glucuronidase UidA|g__Escherichia.s__Escherichia_coli	16.2252335405
+UniRef50_Q8FHD1	16.2201970790
+UniRef50_Q8FHD1|g__Escherichia.s__Escherichia_coli	16.2201970790
+UniRef50_P76052: p-aminobenzoyl-glutamate hydrolase subunit B	16.2165036651
+UniRef50_P76052: p-aminobenzoyl-glutamate hydrolase subunit B|g__Escherichia.s__Escherichia_coli	16.2165036651
+UniRef50_P33366: Inner membrane protein YohD	16.2151757095
+UniRef50_P33366: Inner membrane protein YohD|g__Escherichia.s__Escherichia_coli	16.2151757095
+UniRef50_S5XKF8: Aminodeoxychorismate lyase	16.2130934961
+UniRef50_S5XKF8: Aminodeoxychorismate lyase|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.2130934961
+UniRef50_B9KQ46	16.2054384090
+UniRef50_B9KQ46|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.2054384090
+UniRef50_C9CVV7	16.2009707464
+UniRef50_C9CVV7|unclassified	16.2009707464
+UniRef50_A6VAP1: Lipoprotein, putative	16.1945295449
+UniRef50_A6VAP1: Lipoprotein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.4402631407
+UniRef50_A6VAP1: Lipoprotein, putative|unclassified	1.7542664041
+UniRef50_A0A020BXU1	16.1926579332
+UniRef50_A0A020BXU1|unclassified	16.1926579332
+UniRef50_P0C0I9: UTP--glucose-1-phosphate uridylyltransferase 1	16.1914581063
+UniRef50_P0C0I9: UTP--glucose-1-phosphate uridylyltransferase 1|g__Clostridium.s__Clostridium_beijerinckii	7.3301424257
+UniRef50_P0C0I9: UTP--glucose-1-phosphate uridylyltransferase 1|g__Streptococcus.s__Streptococcus_agalactiae	6.5589541770
+UniRef50_P0C0I9: UTP--glucose-1-phosphate uridylyltransferase 1|unclassified	2.3023615036
+UniRef50_D8HC44	16.1906678396
+UniRef50_D8HC44|g__Staphylococcus.s__Staphylococcus_aureus	16.1906678396
+UniRef50_A0A037XDX8	16.1802273110
+UniRef50_A0A037XDX8|unclassified	16.1802273110
+UniRef50_Q87WG4	16.1698117073
+UniRef50_Q87WG4|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.1698117073
+UniRef50_C4L7S9: 30S ribosomal protein S10	16.1640813745
+UniRef50_C4L7S9: 30S ribosomal protein S10|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.1640813745
+UniRef50_R6GQN2: Sporulation protein YlmC/YmxH	16.1556598207
+UniRef50_R6GQN2: Sporulation protein YlmC/YmxH|g__Clostridium.s__Clostridium_beijerinckii	16.1556598207
+UniRef50_I0ZLL7: Amino acid permease-associated region	16.1543970197
+UniRef50_I0ZLL7: Amino acid permease-associated region|g__Escherichia.s__Escherichia_coli	16.1543970197
+UniRef50_UPI00037CB877: hypothetical protein	16.1482302257
+UniRef50_UPI00037CB877: hypothetical protein|unclassified	16.1482302257
+UniRef50_A7GMU8: Imidazole glycerol phosphate synthase subunit HisH	16.1465103326
+UniRef50_A7GMU8: Imidazole glycerol phosphate synthase subunit HisH|g__Streptococcus.s__Streptococcus_mutans	16.1018915021
+UniRef50_A7GMU8: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.0446188305
+UniRef50_W1ELN4: Formate dehydrogenase N alpha subunit @ selenocysteine-containing	16.1429007745
+UniRef50_W1ELN4: Formate dehydrogenase N alpha subunit @ selenocysteine-containing|g__Escherichia.s__Escherichia_coli	16.1429007745
+UniRef50_R9SJJ1: 2-methylcitrate synthase/citrate synthase II PrpC/CitZ	16.1420026767
+UniRef50_R9SJJ1: 2-methylcitrate synthase/citrate synthase II PrpC/CitZ|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.1420026767
+UniRef50_D7CI61: Two-component system response regulator	16.1395864415
+UniRef50_D7CI61: Two-component system response regulator|g__Propionibacterium.s__Propionibacterium_acnes	16.1395864415
+UniRef50_L0GJH1	16.1331201698
+UniRef50_L0GJH1|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.1331201698
+UniRef50_A3PL70: Diacylglycerol kinase, catalytic region	16.1319390089
+UniRef50_A3PL70: Diacylglycerol kinase, catalytic region|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.1319390089
+UniRef50_K8YMJ9	16.1290322581
+UniRef50_K8YMJ9|g__Streptococcus.s__Streptococcus_mutans	16.1290322581
+UniRef50_Q5HQD3	16.1290322581
+UniRef50_Q5HQD3|g__Staphylococcus.s__Staphylococcus_epidermidis	16.1290322581
+UniRef50_Q5HS09	16.1290322581
+UniRef50_Q5HS09|g__Staphylococcus.s__Staphylococcus_epidermidis	16.1290322581
+UniRef50_Q8DSI1	16.1290322581
+UniRef50_Q8DSI1|g__Streptococcus.s__Streptococcus_mutans	16.1290322581
+UniRef50_R9D0N5	16.1290322581
+UniRef50_R9D0N5|unclassified	16.1290322581
+UniRef50_V6XDS5	16.1290322581
+UniRef50_V6XDS5|g__Staphylococcus.s__Staphylococcus_epidermidis	16.1290322581
+UniRef50_UPI0003B68FA9: hypothetical protein	16.1223736635
+UniRef50_UPI0003B68FA9: hypothetical protein|unclassified	16.1223736635
+UniRef50_F3Z514: Putative cold-shock protein	16.1221753575
+UniRef50_F3Z514: Putative cold-shock protein|unclassified	16.1221753575
+UniRef50_UPI000382BC4C: hypothetical protein	16.1199490369
+UniRef50_UPI000382BC4C: hypothetical protein|unclassified	16.1199490369
+UniRef50_Q05756: Glutamate synthase [NADPH] small chain	16.1196739539
+UniRef50_Q05756: Glutamate synthase [NADPH] small chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.2642802529
+UniRef50_Q05756: Glutamate synthase [NADPH] small chain|unclassified	4.8553937010
+UniRef50_I3UWL7: LysR family transcriptional regulator	16.1167467227
+UniRef50_I3UWL7: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.1167467227
+UniRef50_C5Z1P3	16.1163197877
+UniRef50_C5Z1P3|unclassified	16.1163197877
+UniRef50_T1YAI8	16.1047006213
+UniRef50_T1YAI8|g__Staphylococcus.s__Staphylococcus_aureus	15.5644379845
+UniRef50_T1YAI8|unclassified	0.5402626368
+UniRef50_A6VAF0	16.1037780001
+UniRef50_A6VAF0|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.8133802775
+UniRef50_A6VAF0|unclassified	0.2903977226
+UniRef50_UPI00036C23C8: hypothetical protein, partial	16.0966062965
+UniRef50_UPI00036C23C8: hypothetical protein, partial|unclassified	16.0966062965
+UniRef50_P24203	16.0964492528
+UniRef50_P24203|g__Escherichia.s__Escherichia_coli	16.0964492528
+UniRef50_A8LMF7: Glutamate racemase	16.0901543337
+UniRef50_A8LMF7: Glutamate racemase|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.0181564963
+UniRef50_A8LMF7: Glutamate racemase|unclassified	1.0719978374
+UniRef50_I6ZYX3: Heat shock protein DnaJ domain-containing protein	16.0776325088
+UniRef50_I6ZYX3: Heat shock protein DnaJ domain-containing protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.0776325088
+UniRef50_R7PWJ2	16.0765302166
+UniRef50_R7PWJ2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.0765302166
+UniRef50_P76514	16.0760646591
+UniRef50_P76514|g__Escherichia.s__Escherichia_coli	16.0760646591
+UniRef50_B7VA67	16.0742442730
+UniRef50_B7VA67|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.0742442730
+UniRef50_A4WXQ6	16.0643494405
+UniRef50_A4WXQ6|g__Rhodobacter.s__Rhodobacter_sphaeroides	16.0643494405
+UniRef50_Q9RR65: Dihydrofolate reductase	16.0541080968
+UniRef50_Q9RR65: Dihydrofolate reductase|g__Deinococcus.s__Deinococcus_radiodurans	16.0541080968
+UniRef50_H3YGM4: CoA binding domain protein (Fragment)	16.0459910460
+UniRef50_H3YGM4: CoA binding domain protein (Fragment)|g__Staphylococcus.s__Staphylococcus_aureus	16.0459910460
+UniRef50_P39381	16.0459003076
+UniRef50_P39381|g__Escherichia.s__Escherichia_coli	16.0459003076
+UniRef50_A5UMP9	16.0404184966
+UniRef50_A5UMP9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.0404184966
+UniRef50_U3TW22: Glycine betaine ABC transporter substrate-binding protein	16.0397883020
+UniRef50_U3TW22: Glycine betaine ABC transporter substrate-binding protein|unclassified	16.0397883020
+UniRef50_O26956: Pyruvoyl-dependent arginine decarboxylase	16.0386577490
+UniRef50_O26956: Pyruvoyl-dependent arginine decarboxylase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.0386577490
+UniRef50_A5UNW9	16.0359764430
+UniRef50_A5UNW9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	16.0359764430
+UniRef50_Q8NVR0	16.0330532041
+UniRef50_Q8NVR0|g__Staphylococcus.s__Staphylococcus_aureus	16.0330532041
+UniRef50_G8VC64	16.0324100510
+UniRef50_G8VC64|g__Propionibacterium.s__Propionibacterium_acnes	16.0324100510
+UniRef50_U6AXU2: ABC transporter, periplasmic spermidine putrescine-binding protein PotD	16.0297716687
+UniRef50_U6AXU2: ABC transporter, periplasmic spermidine putrescine-binding protein PotD|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.0297716687
+UniRef50_U5MMW0: Sporulation protein YunB	16.0222304029
+UniRef50_U5MMW0: Sporulation protein YunB|g__Clostridium.s__Clostridium_beijerinckii	16.0222304029
+UniRef50_C3KCK1	16.0206440514
+UniRef50_C3KCK1|g__Pseudomonas.s__Pseudomonas_aeruginosa	16.0206440514
+UniRef50_Q6N9W0: Methionine import ATP-binding protein MetN 1	16.0205764911
+UniRef50_Q6N9W0: Methionine import ATP-binding protein MetN 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.9075375350
+UniRef50_Q6N9W0: Methionine import ATP-binding protein MetN 1|unclassified	0.1130389560
+UniRef50_P0ACM7	16.0165662366
+UniRef50_P0ACM7|g__Escherichia.s__Escherichia_coli	16.0165662366
+UniRef50_H3TTB7: FtsK/SpoIIIE family protein	16.0155525514
+UniRef50_H3TTB7: FtsK/SpoIIIE family protein|g__Staphylococcus.s__Staphylococcus_aureus	16.0155525514
+UniRef50_P23504: Cell surface antigen I/II	16.0072995852
+UniRef50_P23504: Cell surface antigen I/II|g__Streptococcus.s__Streptococcus_mutans	16.0072995852
+UniRef50_A1WZ50: 4-hydroxy-tetrahydrodipicolinate synthase	16.0050419772
+UniRef50_A1WZ50: 4-hydroxy-tetrahydrodipicolinate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.9903236266
+UniRef50_A1WZ50: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0147183506
+UniRef50_G3XD65	16.0049929723
+UniRef50_G3XD65|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.5067783780
+UniRef50_G3XD65|unclassified	0.4982145943
+UniRef50_G7M238: Transcriptional regulator, TetR family	15.9973690851
+UniRef50_G7M238: Transcriptional regulator, TetR family|g__Clostridium.s__Clostridium_beijerinckii	15.9973690851
+UniRef50_O34677: Glutamine transport ATP-binding protein GlnQ	15.9966202722
+UniRef50_O34677: Glutamine transport ATP-binding protein GlnQ|g__Escherichia.s__Escherichia_coli	14.6192098039
+UniRef50_O34677: Glutamine transport ATP-binding protein GlnQ|g__Clostridium.s__Clostridium_beijerinckii	1.3774104683
+UniRef50_B9KJG1: Flagellar proximal rod protein FlgC	15.9949030917
+UniRef50_B9KJG1: Flagellar proximal rod protein FlgC|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.9949030917
+UniRef50_H6SKL3: Rhodospirillum photometricum DSM 122 draft genome sequence	15.9938837920
+UniRef50_H6SKL3: Rhodospirillum photometricum DSM 122 draft genome sequence|unclassified	15.9938837920
+UniRef50_P76359	15.9928307802
+UniRef50_P76359|g__Escherichia.s__Escherichia_coli	15.9928307802
+UniRef50_S1HNP0: Maf-like protein yceF 1	15.9903773624
+UniRef50_S1HNP0: Maf-like protein yceF 1|g__Escherichia.s__Escherichia_coli	15.9903773624
+UniRef50_P37750: Putative lipopolysaccharide biosynthesis O-acetyl transferase WbbJ	15.9816592550
+UniRef50_P37750: Putative lipopolysaccharide biosynthesis O-acetyl transferase WbbJ|g__Escherichia.s__Escherichia_coli	15.9816592550
+UniRef50_Q07V02: RNA pyrophosphohydrolase	15.9815637544
+UniRef50_Q07V02: RNA pyrophosphohydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.8913645470
+UniRef50_Q07V02: RNA pyrophosphohydrolase|unclassified	0.0901992074
+UniRef50_G7R423	15.9788359788
+UniRef50_G7R423|g__Escherichia.s__Escherichia_coli	15.9788359788
+UniRef50_Q9HYB2	15.9769759277
+UniRef50_Q9HYB2|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.3909309246
+UniRef50_Q9HYB2|unclassified	0.5860450032
+UniRef50_D3E441	15.9589333736
+UniRef50_D3E441|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.9589333736
+UniRef50_E8XQD0: Membrane dipeptidase	15.9570890893
+UniRef50_E8XQD0: Membrane dipeptidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.9570890893
+UniRef50_Q1GCN0: MltA	15.9547678363
+UniRef50_Q1GCN0: MltA|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.9547678363
+UniRef50_Q9CDF7: Putative sugar uptake protein YxfA	15.9539394682
+UniRef50_Q9CDF7: Putative sugar uptake protein YxfA|g__Streptococcus.s__Streptococcus_agalactiae	15.9539394682
+UniRef50_P76577: Penicillin-binding protein 1C	15.9532745309
+UniRef50_P76577: Penicillin-binding protein 1C|g__Escherichia.s__Escherichia_coli	15.9532745309
+UniRef50_P15082: Glucitol operon repressor	15.9489458404
+UniRef50_P15082: Glucitol operon repressor|g__Escherichia.s__Escherichia_coli	15.9489458404
+UniRef50_A3PGH0: Acyltransferase 3	15.9483586827
+UniRef50_A3PGH0: Acyltransferase 3|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.9483586827
+UniRef50_A5UP71: Predicted tubulin-like protein	15.9426763929
+UniRef50_A5UP71: Predicted tubulin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.9426763929
+UniRef50_G4PHY8: ATP:cob(I)alamin adenosyltransferase	15.9378518026
+UniRef50_G4PHY8: ATP:cob(I)alamin adenosyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.9378518026
+UniRef50_P36938: Phosphoglucomutase	15.9320564956
+UniRef50_P36938: Phosphoglucomutase|g__Escherichia.s__Escherichia_coli	14.4890469447
+UniRef50_P36938: Phosphoglucomutase|g__Propionibacterium.s__Propionibacterium_acnes	1.4430095509
+UniRef50_B9KX58: ISSpo9, transposase	15.9296003891
+UniRef50_B9KX58: ISSpo9, transposase|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.2643281579
+UniRef50_B9KX58: ISSpo9, transposase|unclassified	2.6652722312
+UniRef50_Q3IYY7: Diguanylate cyclase/phosphodiesterase	15.9272634474
+UniRef50_Q3IYY7: Diguanylate cyclase/phosphodiesterase|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.9272634474
+UniRef50_P77657	15.9271127352
+UniRef50_P77657|g__Escherichia.s__Escherichia_coli	15.9271127352
+UniRef50_D3E1H3: Divalent cation transporter mgtE family	15.9198978310
+UniRef50_D3E1H3: Divalent cation transporter mgtE family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.9198978310
+UniRef50_P0ACD8: Hydrogenase-1 large chain	15.9186078899
+UniRef50_P0ACD8: Hydrogenase-1 large chain|g__Escherichia.s__Escherichia_coli	15.6548915009
+UniRef50_P0ACD8: Hydrogenase-1 large chain|unclassified	0.2637163890
+UniRef50_M7D5Z8: Glucosyltransferase-SI	15.9080875786
+UniRef50_M7D5Z8: Glucosyltransferase-SI|g__Streptococcus.s__Streptococcus_mutans	15.9080875786
+UniRef50_Q3J2Z9	15.9036805894
+UniRef50_Q3J2Z9|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.3677328770
+UniRef50_Q3J2Z9|unclassified	6.5359477124
+UniRef50_B7UI87: Protein FixA	15.9006403505
+UniRef50_B7UI87: Protein FixA|g__Escherichia.s__Escherichia_coli	14.7894718141
+UniRef50_B7UI87: Protein FixA|unclassified	1.1111685364
+UniRef50_P0A232: Phospholipase A1	15.8990036698
+UniRef50_P0A232: Phospholipase A1|g__Escherichia.s__Escherichia_coli	15.8990036698
+UniRef50_P0AAK2: Formate hydrogenlyase subunit 2	15.8903437743
+UniRef50_P0AAK2: Formate hydrogenlyase subunit 2|g__Escherichia.s__Escherichia_coli	15.8903437743
+UniRef50_UPI000311155B: hypothetical protein	15.8898873224
+UniRef50_UPI000311155B: hypothetical protein|unclassified	10.7085401721
+UniRef50_UPI000311155B: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.1813471503
+UniRef50_T2FXM3: Sulfatase	15.8886432150
+UniRef50_T2FXM3: Sulfatase|g__Escherichia.s__Escherichia_coli	15.8886432150
+UniRef50_P31826: Inner membrane ABC transporter ATP-binding protein YddA	15.8875239016
+UniRef50_P31826: Inner membrane ABC transporter ATP-binding protein YddA|g__Escherichia.s__Escherichia_coli	15.8875239016
+UniRef50_P40786: Nucleoside-specific channel-forming protein tsx	15.8856384686
+UniRef50_P40786: Nucleoside-specific channel-forming protein tsx|g__Escherichia.s__Escherichia_coli	15.8856384686
+UniRef50_Q9L6Q3: Uroporphyrinogen-III synthase	15.8828094502
+UniRef50_Q9L6Q3: Uroporphyrinogen-III synthase|g__Escherichia.s__Escherichia_coli	15.8828094502
+UniRef50_A4VLQ0: SCP-2 sterol transfer family protein	15.8814526649
+UniRef50_A4VLQ0: SCP-2 sterol transfer family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.1545766822
+UniRef50_A4VLQ0: SCP-2 sterol transfer family protein|unclassified	0.7268759828
+UniRef50_UPI00037B037C: hypothetical protein	15.8808933002
+UniRef50_UPI00037B037C: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.8808933002
+UniRef50_E9YDZ4: Carbon starvation protein CstA	15.8798759139
+UniRef50_E9YDZ4: Carbon starvation protein CstA|g__Escherichia.s__Escherichia_coli	15.8798759139
+UniRef50_T2G5V0: Alcohol dehydrogenase	15.8789105828
+UniRef50_T2G5V0: Alcohol dehydrogenase|g__Escherichia.s__Escherichia_coli	15.8789105828
+UniRef50_P37595: Isoaspartyl peptidase	15.8783661554
+UniRef50_P37595: Isoaspartyl peptidase|g__Escherichia.s__Escherichia_coli	15.8089731180
+UniRef50_P37595: Isoaspartyl peptidase|unclassified	0.0693930373
+UniRef50_Q7VN08: Cytochrome c-type biogenesis protein CcmE	15.8777448180
+UniRef50_Q7VN08: Cytochrome c-type biogenesis protein CcmE|g__Escherichia.s__Escherichia_coli	15.8777448180
+UniRef50_A5IVE5	15.8772242931
+UniRef50_A5IVE5|g__Staphylococcus.s__Staphylococcus_aureus	15.8772242931
+UniRef50_A3M533: Lysozyme	15.8730158730
+UniRef50_A3M533: Lysozyme|g__Acinetobacter.s__Acinetobacter_baumannii	15.8730158730
+UniRef50_A6LZV5: PTS system, glucose subfamily, IIA subunit	15.8730158730
+UniRef50_A6LZV5: PTS system, glucose subfamily, IIA subunit|g__Clostridium.s__Clostridium_beijerinckii	15.8730158730
+UniRef50_I5G4G5	15.8730158730
+UniRef50_I5G4G5|g__Escherichia.s__Escherichia_coli	15.8730158730
+UniRef50_N2WDC1	15.8730158730
+UniRef50_N2WDC1|unclassified	15.8730158730
+UniRef50_V5AP15	15.8730158730
+UniRef50_V5AP15|g__Streptococcus.s__Streptococcus_mutans	15.8730158730
+UniRef50_Q9I5G7: Signal peptidase I	15.8723048800
+UniRef50_Q9I5G7: Signal peptidase I|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.7859042452
+UniRef50_Q9I5G7: Signal peptidase I|unclassified	1.0864006347
+UniRef50_Q8X4V6	15.8703731883
+UniRef50_Q8X4V6|g__Escherichia.s__Escherichia_coli	15.8703731883
+UniRef50_D3E3U4: Exosome subunit	15.8591307438
+UniRef50_D3E3U4: Exosome subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.8591307438
+UniRef50_P62423: Phosphoglycerate kinase	15.8554099973
+UniRef50_P62423: Phosphoglycerate kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.8554099973
+UniRef50_P32135: Inner membrane protein YihN	15.8552130789
+UniRef50_P32135: Inner membrane protein YihN|g__Escherichia.s__Escherichia_coli	15.8552130789
+UniRef50_Q8DUD5	15.8537991468
+UniRef50_Q8DUD5|g__Streptococcus.s__Streptococcus_mutans	15.8537991468
+UniRef50_P45566	15.8537293247
+UniRef50_P45566|g__Escherichia.s__Escherichia_coli	15.8537293247
+UniRef50_I4D6H8: Multimeric flavodoxin WrbA	15.8510956112
+UniRef50_I4D6H8: Multimeric flavodoxin WrbA|g__Clostridium.s__Clostridium_beijerinckii	15.8510956112
+UniRef50_P0AAF2: Putrescine-ornithine antiporter	15.8480944023
+UniRef50_P0AAF2: Putrescine-ornithine antiporter|g__Escherichia.s__Escherichia_coli	15.8480944023
+UniRef50_B9KMN2: VacJ family lipoprotein	15.8455838455
+UniRef50_B9KMN2: VacJ family lipoprotein|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.8455838455
+UniRef50_A5ULP8: Predicted surface protein	15.8448160831
+UniRef50_A5ULP8: Predicted surface protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.8448160831
+UniRef50_P0AGA8: Transcriptional regulatory protein UhpA	15.8392861576
+UniRef50_P0AGA8: Transcriptional regulatory protein UhpA|g__Escherichia.s__Escherichia_coli	15.8392861576
+UniRef50_D5AR11: Gas vesicle protein GvpG	15.8300011529
+UniRef50_D5AR11: Gas vesicle protein GvpG|unclassified	15.8300011529
+UniRef50_E3DHU2: Copper homeostasis protein CutC	15.8294747569
+UniRef50_E3DHU2: Copper homeostasis protein CutC|g__Escherichia.s__Escherichia_coli	15.8294747569
+UniRef50_R5QLU7	15.8289328047
+UniRef50_R5QLU7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.8289328047
+UniRef50_C3K222: Sulfoxide reductase heme-binding subunit YedZ	15.8282387657
+UniRef50_C3K222: Sulfoxide reductase heme-binding subunit YedZ|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.8282387657
+UniRef50_Q98LC6: Mlr1084 protein	15.8181266715
+UniRef50_Q98LC6: Mlr1084 protein|unclassified	15.8181266715
+UniRef50_UPI0002F12262: hypothetical protein	15.8177456357
+UniRef50_UPI0002F12262: hypothetical protein|unclassified	15.8177456357
+UniRef50_T9L0J3	15.8159409095
+UniRef50_T9L0J3|g__Escherichia.s__Escherichia_coli	15.8159409095
+UniRef50_F3WH46: Pertactin family protein	15.8119703225
+UniRef50_F3WH46: Pertactin family protein|g__Escherichia.s__Escherichia_coli	15.8119703225
+UniRef50_W7X1H4	15.8110591547
+UniRef50_W7X1H4|unclassified	15.8110591547
+UniRef50_A5UND1: Uroporphyrinogen III synthase, HemD	15.8056742300
+UniRef50_A5UND1: Uroporphyrinogen III synthase, HemD|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.8056742300
+UniRef50_Q9CJS1: ATP-dependent RNA helicase RhlB	15.8048428580
+UniRef50_Q9CJS1: ATP-dependent RNA helicase RhlB|g__Escherichia.s__Escherichia_coli	15.8048428580
+UniRef50_P39352: Putative metabolite transport protein YjhB	15.8012827328
+UniRef50_P39352: Putative metabolite transport protein YjhB|g__Escherichia.s__Escherichia_coli	15.8012827328
+UniRef50_B4FXG8	15.8002536591
+UniRef50_B4FXG8|unclassified	15.8002536591
+UniRef50_R6A8H0	15.7839634492
+UniRef50_R6A8H0|unclassified	15.7839634492
+UniRef50_I6E2A6: Inner membrane protein yghQ	15.7833924311
+UniRef50_I6E2A6: Inner membrane protein yghQ|g__Escherichia.s__Escherichia_coli	15.7833924311
+UniRef50_P77154	15.7833475508
+UniRef50_P77154|g__Escherichia.s__Escherichia_coli	15.7310666648
+UniRef50_P77154|unclassified	0.0522808860
+UniRef50_O27038: V-type ATP synthase subunit C	15.7820852162
+UniRef50_O27038: V-type ATP synthase subunit C|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.7820852162
+UniRef50_P80651: Tetrahydromethanopterin S-methyltransferase subunit E	15.7810922141
+UniRef50_P80651: Tetrahydromethanopterin S-methyltransferase subunit E|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.7810922141
+UniRef50_Q321Q6	15.7761978546
+UniRef50_Q321Q6|g__Escherichia.s__Escherichia_coli	15.7761978546
+UniRef50_Q47679: Hydrolase YafV	15.7719276710
+UniRef50_Q47679: Hydrolase YafV|g__Escherichia.s__Escherichia_coli	15.7719276710
+UniRef50_P39267	15.7681842998
+UniRef50_P39267|g__Escherichia.s__Escherichia_coli	15.7681842998
+UniRef50_P21179: Catalase HPII	15.7612693663
+UniRef50_P21179: Catalase HPII|g__Escherichia.s__Escherichia_coli	15.7612693663
+UniRef50_R5X951	15.7610793364
+UniRef50_R5X951|g__Escherichia.s__Escherichia_coli	15.7610793364
+UniRef50_Q1QKV0: 30S ribosomal protein S6	15.7610588645
+UniRef50_Q1QKV0: 30S ribosomal protein S6|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.7610588645
+UniRef50_Q2RPW6	15.7578821612
+UniRef50_Q2RPW6|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.7578821612
+UniRef50_W6K6P7	15.7484501240
+UniRef50_W6K6P7|unclassified	15.7484501240
+UniRef50_A8Z3Z3	15.7480314961
+UniRef50_A8Z3Z3|g__Staphylococcus.s__Staphylococcus_aureus	15.7480314961
+UniRef50_F5M3N6: Phospholipase D/transphosphatidylase	15.7411197089
+UniRef50_F5M3N6: Phospholipase D/transphosphatidylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.7411197089
+UniRef50_P25536: Maf-like protein YhdE	15.7399674090
+UniRef50_P25536: Maf-like protein YhdE|g__Escherichia.s__Escherichia_coli	15.7399674090
+UniRef50_A5UKT6: Ferredoxin, iron-sulfur binding	15.7379581811
+UniRef50_A5UKT6: Ferredoxin, iron-sulfur binding|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.7379581811
+UniRef50_R9YSY6	15.7379056950
+UniRef50_R9YSY6|g__Staphylococcus.s__Staphylococcus_aureus	15.7379056950
+UniRef50_D9SR17: GCN5-related N-acetyltransferase	15.7296695392
+UniRef50_D9SR17: GCN5-related N-acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	15.7296695392
+UniRef50_Q3J6L3: Putative Pre (Mob) type recombination enzyme	15.7237853622
+UniRef50_Q3J6L3: Putative Pre (Mob) type recombination enzyme|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.7237853622
+UniRef50_A5UMB0: Translation initiation factor 2 subunit alpha	15.7201437623
+UniRef50_A5UMB0: Translation initiation factor 2 subunit alpha|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.7201437623
+UniRef50_Q9I427: Cytochrome bo(3) ubiquinol oxidase subunit 2	15.7198759506
+UniRef50_Q9I427: Cytochrome bo(3) ubiquinol oxidase subunit 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.7198759506
+UniRef50_H4D981	15.7192832122
+UniRef50_H4D981|g__Staphylococcus.s__Staphylococcus_aureus	15.7192832122
+UniRef50_A5UJT5	15.7179438425
+UniRef50_A5UJT5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.7179438425
+UniRef50_W8WQR1	15.7077216584
+UniRef50_W8WQR1|unclassified	15.7077216584
+UniRef50_G9W523: Short-chain dehydrogenase/reductase	15.7036089262
+UniRef50_G9W523: Short-chain dehydrogenase/reductase|g__Escherichia.s__Escherichia_coli	15.7036089262
+UniRef50_V4IVP0	15.7029536349
+UniRef50_V4IVP0|unclassified	15.7029536349
+UniRef50_A7NLC3: D-tyrosyl-tRNA(Tyr) deacylase	15.6970413923
+UniRef50_A7NLC3: D-tyrosyl-tRNA(Tyr) deacylase|g__Escherichia.s__Escherichia_coli	15.6970413923
+UniRef50_Q6LLR8: UPF0761 membrane protein PBPRA3489	15.6968385895
+UniRef50_Q6LLR8: UPF0761 membrane protein PBPRA3489|g__Escherichia.s__Escherichia_coli	15.6968385895
+UniRef50_Q8E671: Protein SprT-like	15.6962836537
+UniRef50_Q8E671: Protein SprT-like|g__Streptococcus.s__Streptococcus_mutans	15.6962836537
+UniRef50_G7U615	15.6923076923
+UniRef50_G7U615|g__Propionibacterium.s__Propionibacterium_acnes	15.6923076923
+UniRef50_E5CPU2	15.6913165889
+UniRef50_E5CPU2|unclassified	15.6913165889
+UniRef50_A6V3F4	15.6899228185
+UniRef50_A6V3F4|unclassified	8.1899228185
+UniRef50_A6V3F4|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5000000000
+UniRef50_A8AMJ9	15.6894996071
+UniRef50_A8AMJ9|g__Escherichia.s__Escherichia_coli	15.6894996071
+UniRef50_D2ZRW8	15.6867835085
+UniRef50_D2ZRW8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.6867835085
+UniRef50_A5UP59	15.6863628715
+UniRef50_A5UP59|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.6863628715
+UniRef50_W1UDI4	15.6862745098
+UniRef50_W1UDI4|unclassified	15.6862745098
+UniRef50_E5QX84: FemAB family protein	15.6839063992
+UniRef50_E5QX84: FemAB family protein|g__Staphylococcus.s__Staphylococcus_aureus	15.6839063992
+UniRef50_P76594	15.6831752551
+UniRef50_P76594|g__Escherichia.s__Escherichia_coli	15.6831752551
+UniRef50_Q7MP85: 4-hydroxythreonine-4-phosphate dehydrogenase	15.6804223675
+UniRef50_Q7MP85: 4-hydroxythreonine-4-phosphate dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	7.9301265639
+UniRef50_Q7MP85: 4-hydroxythreonine-4-phosphate dehydrogenase|g__Escherichia.s__Escherichia_coli	7.5123818403
+UniRef50_Q7MP85: 4-hydroxythreonine-4-phosphate dehydrogenase|unclassified	0.2379139633
+UniRef50_X3EKE6	15.6798656966
+UniRef50_X3EKE6|g__Escherichia.s__Escherichia_coli	15.6798656966
+UniRef50_P75883	15.6793001548
+UniRef50_P75883|g__Escherichia.s__Escherichia_coli	15.6793001548
+UniRef50_UPI00046963AA: protein fixU	15.6771461424
+UniRef50_UPI00046963AA: protein fixU|unclassified	15.6771461424
+UniRef50_A7X3N4	15.6688208755
+UniRef50_A7X3N4|unclassified	8.4745762712
+UniRef50_A7X3N4|g__Staphylococcus.s__Staphylococcus_aureus	7.1942446043
+UniRef50_Q31XD7: Ribosome maturation factor RimM	15.6667189918
+UniRef50_Q31XD7: Ribosome maturation factor RimM|g__Escherichia.s__Escherichia_coli	15.6667189918
+UniRef50_A7ZIM8: Adenine phosphoribosyltransferase	15.6637166883
+UniRef50_A7ZIM8: Adenine phosphoribosyltransferase|g__Escherichia.s__Escherichia_coli	15.0914837260
+UniRef50_A7ZIM8: Adenine phosphoribosyltransferase|unclassified	0.5722329622
+UniRef50_P0DMC8: Transcriptional regulatory protein RcsB	15.6633740078
+UniRef50_P0DMC8: Transcriptional regulatory protein RcsB|g__Escherichia.s__Escherichia_coli	15.6633740078
+UniRef50_D3DZ76	15.6607787772
+UniRef50_D3DZ76|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.6607787772
+UniRef50_P77539	15.6563643592
+UniRef50_P77539|g__Escherichia.s__Escherichia_coli	15.6563643592
+UniRef50_A1W4G0: Peptidyl-tRNA hydrolase	15.6558620709
+UniRef50_A1W4G0: Peptidyl-tRNA hydrolase|g__Staphylococcus.s__Staphylococcus_aureus	15.5828082808
+UniRef50_A1W4G0: Peptidyl-tRNA hydrolase|unclassified	0.0730537900
+UniRef50_A5UM95	15.6539159662
+UniRef50_A5UM95|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.6539159662
+UniRef50_J0KT45	15.6527225311
+UniRef50_J0KT45|g__Staphylococcus.s__Staphylococcus_aureus	15.2589007089
+UniRef50_J0KT45|unclassified	0.3938218222
+UniRef50_A5UNB7	15.6514940485
+UniRef50_A5UNB7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.6514940485
+UniRef50_S5XQS3: Acetylornithine/N-succinyldiaminopimelate aminotransferase	15.6492858579
+UniRef50_S5XQS3: Acetylornithine/N-succinyldiaminopimelate aminotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.6492858579
+UniRef50_P0AF68: tRNA threonylcarbamoyladenosine biosynthesis protein TsaE	15.6483916972
+UniRef50_P0AF68: tRNA threonylcarbamoyladenosine biosynthesis protein TsaE|g__Escherichia.s__Escherichia_coli	15.6483916972
+UniRef50_Q3IWX6: Phage related tail protein	15.6439496586
+UniRef50_Q3IWX6: Phage related tail protein|unclassified	11.6756956904
+UniRef50_Q3IWX6: Phage related tail protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.9682539683
+UniRef50_R9DK57	15.6392071286
+UniRef50_R9DK57|g__Staphylococcus.s__Staphylococcus_aureus	8.5470085470
+UniRef50_R9DK57|unclassified	7.0921985816
+UniRef50_P77360	15.6349567676
+UniRef50_P77360|g__Escherichia.s__Escherichia_coli	15.6349567676
+UniRef50_R7PW99	15.6283334946
+UniRef50_R7PW99|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.6283334946
+UniRef50_M1MKL4: Indole-3-glycerol phosphate synthase	15.6266924069
+UniRef50_M1MKL4: Indole-3-glycerol phosphate synthase|g__Clostridium.s__Clostridium_beijerinckii	15.6266924069
+UniRef50_A6LQH2: ATP synthase subunit b	15.6250000000
+UniRef50_A6LQH2: ATP synthase subunit b|g__Clostridium.s__Clostridium_beijerinckii	15.6250000000
+UniRef50_E2ZTQ4: Protein activator	15.6250000000
+UniRef50_E2ZTQ4: Protein activator|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.6250000000
+UniRef50_F7N467	15.6250000000
+UniRef50_F7N467|g__Escherichia.s__Escherichia_coli	15.6250000000
+UniRef50_V0VAC1	15.6250000000
+UniRef50_V0VAC1|g__Escherichia.s__Escherichia_coli	15.6250000000
+UniRef50_Q28KF1: Acyl-CoA dehydrogenase-like protein	15.6240593762
+UniRef50_Q28KF1: Acyl-CoA dehydrogenase-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.6240593762
+UniRef50_UPI0004654D72: MULTISPECIES: hypothetical protein	15.6202112815
+UniRef50_UPI0004654D72: MULTISPECIES: hypothetical protein|unclassified	15.6202112815
+UniRef50_A5UNT8	15.6169363906
+UniRef50_A5UNT8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.5209611584
+UniRef50_A5UNT8|unclassified	3.0959752322
+UniRef50_A3PM88: UspA domain protein	15.6127889066
+UniRef50_A3PM88: UspA domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.6127889066
+UniRef50_E5TEK4	15.6070571041
+UniRef50_E5TEK4|g__Staphylococcus.s__Staphylococcus_aureus	10.7526881720
+UniRef50_E5TEK4|unclassified	4.8543689320
+UniRef50_V3W6L3: Glucarate permease	15.6059962856
+UniRef50_V3W6L3: Glucarate permease|g__Escherichia.s__Escherichia_coli	15.6059962856
+UniRef50_F5M3S6: Putative transposase protein	15.5993608644
+UniRef50_F5M3S6: Putative transposase protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.9853395062
+UniRef50_F5M3S6: Putative transposase protein|unclassified	1.6140213582
+UniRef50_A6QEM7	15.5970071080
+UniRef50_A6QEM7|g__Staphylococcus.s__Staphylococcus_aureus	15.5970071080
+UniRef50_Q8ZLS0: 3-deoxy-D-manno-octulosonate 8-phosphate phosphatase KdsC	15.5924673702
+UniRef50_Q8ZLS0: 3-deoxy-D-manno-octulosonate 8-phosphate phosphatase KdsC|g__Escherichia.s__Escherichia_coli	15.5924673702
+UniRef50_P76515	15.5907937708
+UniRef50_P76515|g__Escherichia.s__Escherichia_coli	15.5907937708
+UniRef50_P31475	15.5897659115
+UniRef50_P31475|g__Escherichia.s__Escherichia_coli	15.5897659115
+UniRef50_P0AE14: Protein AmpE	15.5833290031
+UniRef50_P0AE14: Protein AmpE|g__Escherichia.s__Escherichia_coli	15.5833290031
+UniRef50_P75769	15.5816235358
+UniRef50_P75769|g__Escherichia.s__Escherichia_coli	15.5816235358
+UniRef50_E3EZC8	15.5775072044
+UniRef50_E3EZC8|unclassified	15.5775072044
+UniRef50_Q9CIW0: DhaKLM operon coactivator DhaQ	15.5756654462
+UniRef50_Q9CIW0: DhaKLM operon coactivator DhaQ|g__Streptococcus.s__Streptococcus_agalactiae	15.5756654462
+UniRef50_P75982	15.5712576528
+UniRef50_P75982|g__Escherichia.s__Escherichia_coli	14.8953506363
+UniRef50_P75982|unclassified	0.6759070165
+UniRef50_Q9REB3: Hemolysin E	15.5683580144
+UniRef50_Q9REB3: Hemolysin E|g__Escherichia.s__Escherichia_coli	15.5683580144
+UniRef50_B2U2H8: Aldehyde ferredoxin oxidoreductase	15.5661734761
+UniRef50_B2U2H8: Aldehyde ferredoxin oxidoreductase|g__Escherichia.s__Escherichia_coli	15.5661734761
+UniRef50_A1B2J7	15.5658075086
+UniRef50_A1B2J7|unclassified	7.9515616109
+UniRef50_A1B2J7|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.6142458977
+UniRef50_P64427: UPF0748 lipoprotein YddW	15.5632882115
+UniRef50_P64427: UPF0748 lipoprotein YddW|g__Escherichia.s__Escherichia_coli	15.5632882115
+UniRef50_A0A009CML4: Surface protein G	15.5623644114
+UniRef50_A0A009CML4: Surface protein G|g__Staphylococcus.s__Staphylococcus_epidermidis	15.5623644114
+UniRef50_T1XPK7: Surface protein, putative	15.5588206402
+UniRef50_T1XPK7: Surface protein, putative|g__Staphylococcus.s__Staphylococcus_aureus	15.5588206402
+UniRef50_Q5LWH8: Hydrolase, NUDIX family	15.5556167839
+UniRef50_Q5LWH8: Hydrolase, NUDIX family|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.5556167839
+UniRef50_A5UKL7: Predicted transcriptional regulator	15.5480258472
+UniRef50_A5UKL7: Predicted transcriptional regulator|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.5480258472
+UniRef50_Q9I6G4	15.5468482635
+UniRef50_Q9I6G4|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.5468482635
+UniRef50_I6DZ68: Bacterial regulatory helix-turn-helix , lysR family protein	15.5464438907
+UniRef50_I6DZ68: Bacterial regulatory helix-turn-helix , lysR family protein|g__Escherichia.s__Escherichia_coli	15.5464438907
+UniRef50_A6TEB9: Transcriptional regulator LsrR	15.5372670216
+UniRef50_A6TEB9: Transcriptional regulator LsrR|g__Escherichia.s__Escherichia_coli	15.5372670216
+UniRef50_Q2P4Y9: Coenzyme PQQ synthesis protein E	15.5349070904
+UniRef50_Q2P4Y9: Coenzyme PQQ synthesis protein E|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.5349070904
+UniRef50_P08957: Type I restriction enzyme EcoKI M protein	15.5344851626
+UniRef50_P08957: Type I restriction enzyme EcoKI M protein|g__Escherichia.s__Escherichia_coli	15.5344851626
+UniRef50_P76102: Putative transposase InsQ for insertion sequence element IS609	15.5332686355
+UniRef50_P76102: Putative transposase InsQ for insertion sequence element IS609|g__Escherichia.s__Escherichia_coli	15.5332686355
+UniRef50_D6SHM7: TM2 domain protein	15.5310592126
+UniRef50_D6SHM7: TM2 domain protein|g__Staphylococcus.s__Staphylococcus_aureus	14.9798614325
+UniRef50_D6SHM7: TM2 domain protein|unclassified	0.5511977801
+UniRef50_M9VF11	15.5281864085
+UniRef50_M9VF11|g__Propionibacterium.s__Propionibacterium_acnes	15.4847065877
+UniRef50_M9VF11|unclassified	0.0434798208
+UniRef50_A4WZ94	15.5281725176
+UniRef50_A4WZ94|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.5281725176
+UniRef50_F8KLX6	15.5269090887
+UniRef50_F8KLX6|g__Staphylococcus.s__Staphylococcus_epidermidis	11.8368721883
+UniRef50_F8KLX6|g__Staphylococcus.s__Staphylococcus_aureus	3.6900369004
+UniRef50_V9U810: FadE30	15.5250234251
+UniRef50_V9U810: FadE30|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.5250234251
+UniRef50_A5UN50: Exopolyphosphatase, GppA	15.5134426893
+UniRef50_A5UN50: Exopolyphosphatase, GppA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.5134426893
+UniRef50_H8H9P3	15.5122655123
+UniRef50_H8H9P3|unclassified	15.5122655123
+UniRef50_G8W4V0: Aromatic amino acid transporter	15.5114692633
+UniRef50_G8W4V0: Aromatic amino acid transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.5114692633
+UniRef50_Q28LT2: 6,7-dimethyl-8-ribityllumazine synthase	15.5076954516
+UniRef50_Q28LT2: 6,7-dimethyl-8-ribityllumazine synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.1781747457
+UniRef50_Q28LT2: 6,7-dimethyl-8-ribityllumazine synthase|unclassified	0.3295207059
+UniRef50_C6S923: Thiol:disulfide interchange protein DsbA	15.5066628453
+UniRef50_C6S923: Thiol:disulfide interchange protein DsbA|g__Neisseria.s__Neisseria_meningitidis	15.5066628453
+UniRef50_J7QH52: Escherichia coli IMT2125 genomic chromosome, IMT2125	15.5038759690
+UniRef50_J7QH52: Escherichia coli IMT2125 genomic chromosome, IMT2125|g__Escherichia.s__Escherichia_coli	15.5038759690
+UniRef50_U3TX51: Malonyl CoA-acyl carrier protein transacylase	15.4997362999
+UniRef50_U3TX51: Malonyl CoA-acyl carrier protein transacylase|g__Escherichia.s__Escherichia_coli	15.4997362999
+UniRef50_P25549: Arylsulfatase	15.4911058757
+UniRef50_P25549: Arylsulfatase|g__Escherichia.s__Escherichia_coli	15.4911058757
+UniRef50_A0A023KIJ3	15.4906255008
+UniRef50_A0A023KIJ3|g__Escherichia.s__Escherichia_coli	15.4906255008
+UniRef50_P26459: Cytochrome bd-II ubiquinol oxidase subunit 1	15.4903046121
+UniRef50_P26459: Cytochrome bd-II ubiquinol oxidase subunit 1|g__Escherichia.s__Escherichia_coli	15.3460070253
+UniRef50_P26459: Cytochrome bd-II ubiquinol oxidase subunit 1|unclassified	0.1442975867
+UniRef50_Q2NXY9: 2-keto-3-deoxygluconate permease	15.4896252116
+UniRef50_Q2NXY9: 2-keto-3-deoxygluconate permease|g__Escherichia.s__Escherichia_coli	15.4896252116
+UniRef50_E1SCP3: MFS citrate-proton symporter	15.4895850926
+UniRef50_E1SCP3: MFS citrate-proton symporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.4895850926
+UniRef50_B9KJW8: Methyl-accepting chemotaxis sensory transducer	15.4853875805
+UniRef50_B9KJW8: Methyl-accepting chemotaxis sensory transducer|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.4853875805
+UniRef50_A7ZJW5	15.4826271500
+UniRef50_A7ZJW5|g__Escherichia.s__Escherichia_coli	15.4531615864
+UniRef50_A7ZJW5|unclassified	0.0294655636
+UniRef50_A7X0G0: Na(+)/H(+) antiporter subunit C1	15.4815278913
+UniRef50_A7X0G0: Na(+)/H(+) antiporter subunit C1|g__Staphylococcus.s__Staphylococcus_aureus	15.4815278913
+UniRef50_A0A023KSK6: 5-carboxymethyl-2-hydroxymuconate isomerase	15.4774870561
+UniRef50_A0A023KSK6: 5-carboxymethyl-2-hydroxymuconate isomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.4774870561
+UniRef50_P77601: Putative HTH-type transcriptional regulator YkgA	15.4764654312
+UniRef50_P77601: Putative HTH-type transcriptional regulator YkgA|g__Escherichia.s__Escherichia_coli	15.4764654312
+UniRef50_B9KQL5	15.4719235364
+UniRef50_B9KQL5|unclassified	15.4719235364
+UniRef50_U3QUF7: Chemotaxis protein	15.4650003661
+UniRef50_U3QUF7: Chemotaxis protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.4650003661
+UniRef50_P18200: Phosphatidylglycerophosphatase A	15.4621630009
+UniRef50_P18200: Phosphatidylglycerophosphatase A|g__Escherichia.s__Escherichia_coli	15.4621630009
+UniRef50_B9KMF9	15.4610041256
+UniRef50_B9KMF9|unclassified	15.4610041256
+UniRef50_Q4LA96	15.4587909214
+UniRef50_Q4LA96|g__Staphylococcus.s__Staphylococcus_epidermidis	13.4902869844
+UniRef50_Q4LA96|unclassified	1.9685039370
+UniRef50_P37197: Probable cytochrome c peroxidase	15.4582403945
+UniRef50_P37197: Probable cytochrome c peroxidase|g__Escherichia.s__Escherichia_coli	15.4582403945
+UniRef50_Q57942	15.4568643765
+UniRef50_Q57942|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.4568643765
+UniRef50_L0FJC9: Sodium:dicarboxylate symporter	15.4536433871
+UniRef50_L0FJC9: Sodium:dicarboxylate symporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.4536433871
+UniRef50_D5QD63: Phosphoribosylaminoimidazole carboxylase ATPase subunit	15.4514928559
+UniRef50_D5QD63: Phosphoribosylaminoimidazole carboxylase ATPase subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.4514928559
+UniRef50_A6QIK5	15.4508283834
+UniRef50_A6QIK5|g__Staphylococcus.s__Staphylococcus_aureus	15.4508283834
+UniRef50_B8GNE7: Peptidase M24	15.4454110815
+UniRef50_B8GNE7: Peptidase M24|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.4454110815
+UniRef50_E7MS39	15.4435602711
+UniRef50_E7MS39|g__Staphylococcus.s__Staphylococcus_aureus	15.4435602711
+UniRef50_C4ZPZ7: 2-isopropylmalate synthase	15.4385107387
+UniRef50_C4ZPZ7: 2-isopropylmalate synthase|g__Escherichia.s__Escherichia_coli	15.4385107387
+UniRef50_P0AAP2: Protein AdrA	15.4352388579
+UniRef50_P0AAP2: Protein AdrA|g__Escherichia.s__Escherichia_coli	15.4352388579
+UniRef50_A0A013K1T0: Putative cell-surface adhesin domain protein (Fragment)	15.4341405404
+UniRef50_A0A013K1T0: Putative cell-surface adhesin domain protein (Fragment)|g__Staphylococcus.s__Staphylococcus_epidermidis	15.4341405404
+UniRef50_Q2P0J5: Thiazole synthase	15.4339052196
+UniRef50_Q2P0J5: Thiazole synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.2739329779
+UniRef50_Q2P0J5: Thiazole synthase|g__Acinetobacter.s__Acinetobacter_baumannii	4.1599722417
+UniRef50_R8A6I9: PTS enzyme II glucose-specific transporter subunit factor IIABC	15.4321790322
+UniRef50_R8A6I9: PTS enzyme II glucose-specific transporter subunit factor IIABC|g__Staphylococcus.s__Staphylococcus_epidermidis	14.7221384785
+UniRef50_R8A6I9: PTS enzyme II glucose-specific transporter subunit factor IIABC|unclassified	0.7100405536
+UniRef50_F5M500	15.4310359509
+UniRef50_F5M500|unclassified	15.4310359509
+UniRef50_M5F699	15.4278937794
+UniRef50_M5F699|unclassified	15.4278937794
+UniRef50_O59229: 30S ribosomal protein S12	15.4246395760
+UniRef50_O59229: 30S ribosomal protein S12|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.4246395760
+UniRef50_A3PRK6: Transcriptional regulator, LysR family	15.4230348501
+UniRef50_A3PRK6: Transcriptional regulator, LysR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.4230348501
+UniRef50_U6AHW3	15.4214987952
+UniRef50_U6AHW3|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.4214987952
+UniRef50_UPI00037AD56D: hypothetical protein	15.4156745126
+UniRef50_UPI00037AD56D: hypothetical protein|unclassified	15.4156745126
+UniRef50_F0L5S4: Segregation and condensation protein B	15.4143715127
+UniRef50_F0L5S4: Segregation and condensation protein B|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.4143715127
+UniRef50_U7DF00: GntR family transcriptional regulator	15.4088596655
+UniRef50_U7DF00: GntR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.4088596655
+UniRef50_Y5GWB2	15.4072667833
+UniRef50_Y5GWB2|g__Staphylococcus.s__Staphylococcus_aureus	15.0243832473
+UniRef50_Y5GWB2|unclassified	0.3828835360
+UniRef50_A5UMA7	15.4063320796
+UniRef50_A5UMA7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.4063320796
+UniRef50_Q9I5S0	15.3951395385
+UniRef50_Q9I5S0|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.4118553693
+UniRef50_Q9I5S0|unclassified	0.9832841691
+UniRef50_C3SE92: DNA polymerase III subunit psi	15.3924958381
+UniRef50_C3SE92: DNA polymerase III subunit psi|g__Escherichia.s__Escherichia_coli	15.3924958381
+UniRef50_A0A024E6B6: Cytochrome B561	15.3877328345
+UniRef50_A0A024E6B6: Cytochrome B561|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.3877328345
+UniRef50_A5IVF6	15.3846153846
+UniRef50_A5IVF6|unclassified	15.3846153846
+UniRef50_A6M202: Nitroreductase	15.3846153846
+UniRef50_A6M202: Nitroreductase|g__Clostridium.s__Clostridium_beijerinckii	15.3846153846
+UniRef50_B8DVQ6: 30S ribosomal protein S16	15.3846153846
+UniRef50_B8DVQ6: 30S ribosomal protein S16|g__Propionibacterium.s__Propionibacterium_acnes	15.3846153846
+UniRef50_D8A9J7	15.3846153846
+UniRef50_D8A9J7|g__Escherichia.s__Escherichia_coli	15.3846153846
+UniRef50_F0DB32	15.3846153846
+UniRef50_F0DB32|unclassified	15.3846153846
+UniRef50_F0N2E1: Antioxidant, AhpC/TSA family	15.3846153846
+UniRef50_F0N2E1: Antioxidant, AhpC/TSA family|g__Neisseria.s__Neisseria_meningitidis	15.3846153846
+UniRef50_J1EYW6	15.3846153846
+UniRef50_J1EYW6|unclassified	15.3846153846
+UniRef50_N4P5U3	15.3846153846
+UniRef50_N4P5U3|g__Escherichia.s__Escherichia_coli	15.3846153846
+UniRef50_Q0T9M8	15.3846153846
+UniRef50_Q0T9M8|g__Escherichia.s__Escherichia_coli	15.3846153846
+UniRef50_Q5HRU6	15.3846153846
+UniRef50_Q5HRU6|g__Staphylococcus.s__Staphylococcus_epidermidis	15.3846153846
+UniRef50_Q6A6T4: 30S ribosomal protein S9	15.3846153846
+UniRef50_Q6A6T4: 30S ribosomal protein S9|g__Propionibacterium.s__Propionibacterium_acnes	15.3846153846
+UniRef50_Q8CRL7	15.3846153846
+UniRef50_Q8CRL7|g__Staphylococcus.s__Staphylococcus_epidermidis	15.3846153846
+UniRef50_Q9RWZ0	15.3846153846
+UniRef50_Q9RWZ0|g__Deinococcus.s__Deinococcus_radiodurans	15.3846153846
+UniRef50_U3SSV1	15.3846153846
+UniRef50_U3SSV1|g__Streptococcus.s__Streptococcus_mutans	15.3846153846
+UniRef50_Q6N143: Acetate kinase	15.3823236343
+UniRef50_Q6N143: Acetate kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.3823236343
+UniRef50_A8Z3C5	15.3774464119
+UniRef50_A8Z3C5|g__Staphylococcus.s__Staphylococcus_aureus	15.3774464119
+UniRef50_U4M0U5	15.3758641813
+UniRef50_U4M0U5|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.3758641813
+UniRef50_B7MVN0	15.3745609608
+UniRef50_B7MVN0|g__Escherichia.s__Escherichia_coli	15.3745609608
+UniRef50_Q3JNY2: Phosphonates import ATP-binding protein PhnC	15.3726961611
+UniRef50_Q3JNY2: Phosphonates import ATP-binding protein PhnC|g__Escherichia.s__Escherichia_coli	12.3484842597
+UniRef50_Q3JNY2: Phosphonates import ATP-binding protein PhnC|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9498525074
+UniRef50_Q3JNY2: Phosphonates import ATP-binding protein PhnC|unclassified	0.0743593940
+UniRef50_B9KK81: Methyltransferase type 12	15.3650672740
+UniRef50_B9KK81: Methyltransferase type 12|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.3650672740
+UniRef50_R9SJ95	15.3623188406
+UniRef50_R9SJ95|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.3623188406
+UniRef50_I3X429: AsnC family regulatory protein Lrp	15.3566812335
+UniRef50_I3X429: AsnC family regulatory protein Lrp|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.3566812335
+UniRef50_E6A098	15.3529411765
+UniRef50_E6A098|g__Escherichia.s__Escherichia_coli	15.3529411765
+UniRef50_F0VSK8: Complete chromosome sequence, strain ATCC BAA-2069	15.3510132857
+UniRef50_F0VSK8: Complete chromosome sequence, strain ATCC BAA-2069|g__Streptococcus.s__Streptococcus_mutans	15.3510132857
+UniRef50_P37610: Alpha-ketoglutarate-dependent taurine dioxygenase	15.3478853771
+UniRef50_P37610: Alpha-ketoglutarate-dependent taurine dioxygenase|g__Escherichia.s__Escherichia_coli	15.0369558222
+UniRef50_P37610: Alpha-ketoglutarate-dependent taurine dioxygenase|unclassified	0.3109295548
+UniRef50_Q2YCK0: Glycine cleavage system H protein	15.3435291754
+UniRef50_Q2YCK0: Glycine cleavage system H protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.3435291754
+UniRef50_D3QGV7	15.3424469265
+UniRef50_D3QGV7|g__Staphylococcus.s__Staphylococcus_epidermidis	15.3424469265
+UniRef50_UPI0004690DDD: pesticidal protein Cry5Ba	15.3379689645
+UniRef50_UPI0004690DDD: pesticidal protein Cry5Ba|unclassified	15.3379689645
+UniRef50_P52045: Methylmalonyl-CoA decarboxylase	15.3362754821
+UniRef50_P52045: Methylmalonyl-CoA decarboxylase|g__Escherichia.s__Escherichia_coli	15.3362754821
+UniRef50_UPI00037FC855: hypothetical protein	15.3334418946
+UniRef50_UPI00037FC855: hypothetical protein|unclassified	15.3334418946
+UniRef50_P0ACR6	15.3298640297
+UniRef50_P0ACR6|g__Escherichia.s__Escherichia_coli	15.3298640297
+UniRef50_P45753: Putative DNA utilization protein HofM	15.3296916901
+UniRef50_P45753: Putative DNA utilization protein HofM|g__Escherichia.s__Escherichia_coli	15.3296916901
+UniRef50_U5NMA0	15.3296703297
+UniRef50_U5NMA0|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.3296703297
+UniRef50_W0Z129	15.3263324251
+UniRef50_W0Z129|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.3263324251
+UniRef50_D2J7W9: Replication initiation protein	15.3156548360
+UniRef50_D2J7W9: Replication initiation protein|unclassified	15.3156548360
+UniRef50_UPI00035CAED6: MULTISPECIES: hypothetical protein	15.3131893500
+UniRef50_UPI00035CAED6: MULTISPECIES: hypothetical protein|unclassified	15.3131893500
+UniRef50_L1K7U4	15.3127917834
+UniRef50_L1K7U4|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.3127917834
+UniRef50_R2NN08: PemK family transcriptional regulator	15.3108051731
+UniRef50_R2NN08: PemK family transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	15.3108051731
+UniRef50_I6TZP9	15.3096757044
+UniRef50_I6TZP9|g__Streptococcus.s__Streptococcus_mutans	15.3096757044
+UniRef50_P63388: Probable phospholipid import ATP-binding protein MlaF	15.3052439176
+UniRef50_P63388: Probable phospholipid import ATP-binding protein MlaF|g__Escherichia.s__Escherichia_coli	15.3052439176
+UniRef50_B9AD59	15.3021883719
+UniRef50_B9AD59|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.3021883719
+UniRef50_UPI00034AEEE6: hypothetical protein	15.3010753183
+UniRef50_UPI00034AEEE6: hypothetical protein|unclassified	15.3010753183
+UniRef50_Q8DVI5	15.2951675128
+UniRef50_Q8DVI5|g__Streptococcus.s__Streptococcus_mutans	15.2951675128
+UniRef50_P76546	15.2911602239
+UniRef50_P76546|g__Escherichia.s__Escherichia_coli	15.2911602239
+UniRef50_L8UE55: PTS system, galactitol-specific IIC component	15.2853095287
+UniRef50_L8UE55: PTS system, galactitol-specific IIC component|g__Escherichia.s__Escherichia_coli	15.2853095287
+UniRef50_C5N1A7	15.2850103118
+UniRef50_C5N1A7|g__Staphylococcus.s__Staphylococcus_aureus	15.2850103118
+UniRef50_A7ZLN4: ABC transporter, ATP-binding protein	15.2817945077
+UniRef50_A7ZLN4: ABC transporter, ATP-binding protein|g__Escherichia.s__Escherichia_coli	15.2817945077
+UniRef50_A5UN61	15.2813411569
+UniRef50_A5UN61|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.4942528736
+UniRef50_A5UN61|unclassified	3.7870882834
+UniRef50_R7PTY4	15.2812855884
+UniRef50_R7PTY4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.6251176094
+UniRef50_R7PTY4|unclassified	0.6561679790
+UniRef50_P45288: Peptide transport system ATP-binding protein SapD	15.2736202938
+UniRef50_P45288: Peptide transport system ATP-binding protein SapD|g__Escherichia.s__Escherichia_coli	15.2736202938
+UniRef50_Q8FHF8: Protein YdeP	15.2704129484
+UniRef50_Q8FHF8: Protein YdeP|g__Escherichia.s__Escherichia_coli	15.2704129484
+UniRef50_Q2RS22: Nickel import ATP-binding protein NikE	15.2646406878
+UniRef50_Q2RS22: Nickel import ATP-binding protein NikE|g__Escherichia.s__Escherichia_coli	15.2646406878
+UniRef50_A4WC00: Protein MtfA	15.2625268216
+UniRef50_A4WC00: Protein MtfA|g__Escherichia.s__Escherichia_coli	15.2625268216
+UniRef50_Q9HVD1: Lipid A deacylase PagL	15.2601156069
+UniRef50_Q9HVD1: Lipid A deacylase PagL|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.2601156069
+UniRef50_U9YKK0	15.2599926265
+UniRef50_U9YKK0|g__Escherichia.s__Escherichia_coli	15.2599926265
+UniRef50_X7XV22: Carbon starvation CstA family protein	15.2597935773
+UniRef50_X7XV22: Carbon starvation CstA family protein|g__Escherichia.s__Escherichia_coli	15.2597935773
+UniRef50_P33772: N-acetylmuramoyl-L-alanine amidase AmiA	15.2571000790
+UniRef50_P33772: N-acetylmuramoyl-L-alanine amidase AmiA|g__Escherichia.s__Escherichia_coli	15.2571000790
+UniRef50_I3TTL9	15.2468219011
+UniRef50_I3TTL9|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.2468219011
+UniRef50_Q8Z2V9: Superoxide dismutase [Mn]	15.2467448157
+UniRef50_Q8Z2V9: Superoxide dismutase [Mn]|g__Escherichia.s__Escherichia_coli	15.1657082941
+UniRef50_Q8Z2V9: Superoxide dismutase [Mn]|unclassified	0.0810365216
+UniRef50_T1YBT3	15.2387041773
+UniRef50_T1YBT3|g__Staphylococcus.s__Staphylococcus_aureus	15.2387041773
+UniRef50_K1JLF6	15.2378592591
+UniRef50_K1JLF6|unclassified	15.2378592591
+UniRef50_G8Q3F3: Smr domain protein	15.2357780095
+UniRef50_G8Q3F3: Smr domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.2357780095
+UniRef50_A5UJN4: Predicted DNA-binding protein	15.2351421189
+UniRef50_A5UJN4: Predicted DNA-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.2351421189
+UniRef50_P45174: Sodium/proline symporter	15.2332235847
+UniRef50_P45174: Sodium/proline symporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.2907165159
+UniRef50_P45174: Sodium/proline symporter|g__Neisseria.s__Neisseria_meningitidis	0.9425070688
+UniRef50_A6V662	15.2302298952
+UniRef50_A6V662|unclassified	15.2302298952
+UniRef50_K1ZM92	15.2284263959
+UniRef50_K1ZM92|unclassified	15.2284263959
+UniRef50_R9SII2: Hmd co-occurring protein HcgC	15.2257234932
+UniRef50_R9SII2: Hmd co-occurring protein HcgC|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.2257234932
+UniRef50_Q2NFC3: TATA-box-binding protein	15.2232939879
+UniRef50_Q2NFC3: TATA-box-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.2232939879
+UniRef50_R7CL39: Extracellular solute-binding protein family 3	15.2199162681
+UniRef50_R7CL39: Extracellular solute-binding protein family 3|g__Clostridium.s__Clostridium_beijerinckii	13.0967740176
+UniRef50_R7CL39: Extracellular solute-binding protein family 3|g__Helicobacter.s__Helicobacter_pylori	2.1231422505
+UniRef50_P0AB12: Inner membrane protein YccF	15.2187902188
+UniRef50_P0AB12: Inner membrane protein YccF|g__Escherichia.s__Escherichia_coli	15.2187902188
+UniRef50_O27114: 2-oxoglutarate synthase subunit KorC	15.2182700478
+UniRef50_O27114: 2-oxoglutarate synthase subunit KorC|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.2182700478
+UniRef50_Q8FFV6: Multidrug resistance outer membrane protein MdtQ	15.2147120554
+UniRef50_Q8FFV6: Multidrug resistance outer membrane protein MdtQ|g__Escherichia.s__Escherichia_coli	15.2147120554
+UniRef50_Q8DCG0: Ribosomal large subunit pseudouridine synthase A	15.2095324017
+UniRef50_Q8DCG0: Ribosomal large subunit pseudouridine synthase A|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.2435903890
+UniRef50_Q8DCG0: Ribosomal large subunit pseudouridine synthase A|unclassified	0.9659420127
+UniRef50_D6Z753: Band 7 protein	15.2065793689
+UniRef50_D6Z753: Band 7 protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.2065793689
+UniRef50_O27333: Trk system potassium uptake protein TrkA homolog	15.2041047046
+UniRef50_O27333: Trk system potassium uptake protein TrkA homolog|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.2041047046
+UniRef50_A5UL99: Predicted permease, major facilitator superfamily	15.2024541942
+UniRef50_A5UL99: Predicted permease, major facilitator superfamily|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.2024541942
+UniRef50_A1VRZ2: LPS biosynthesis protein WbpG	15.1973486832
+UniRef50_A1VRZ2: LPS biosynthesis protein WbpG|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.1973486832
+UniRef50_I5ASV0: Anthranilate synthase component I	15.1927140957
+UniRef50_I5ASV0: Anthranilate synthase component I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.1927140957
+UniRef50_P0ACK7: Deoxyribose operon repressor	15.1917537213
+UniRef50_P0ACK7: Deoxyribose operon repressor|g__Escherichia.s__Escherichia_coli	15.1917537213
+UniRef50_A5ULI1	15.1914224025
+UniRef50_A5ULI1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.1914224025
+UniRef50_D9RHN1	15.1903007798
+UniRef50_D9RHN1|g__Staphylococcus.s__Staphylococcus_aureus	13.7055518207
+UniRef50_D9RHN1|unclassified	1.4847489591
+UniRef50_D3E2P3: 2-phospho-L-lactate guanylyltransferase	15.1900929622
+UniRef50_D3E2P3: 2-phospho-L-lactate guanylyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.1900929622
+UniRef50_N1HFC9: M48B family peptidase	15.1881720430
+UniRef50_N1HFC9: M48B family peptidase|g__Escherichia.s__Escherichia_coli	15.1881720430
+UniRef50_R4K6M8: Glucose inhibited division protein A	15.1868143271
+UniRef50_R4K6M8: Glucose inhibited division protein A|g__Clostridium.s__Clostridium_beijerinckii	15.1868143271
+UniRef50_A5ULP3: Hydroxyethylthiazole kinase	15.1820623993
+UniRef50_A5ULP3: Hydroxyethylthiazole kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.1820623993
+UniRef50_P23484: Probable RNA polymerase sigma factor FecI	15.1642179345
+UniRef50_P23484: Probable RNA polymerase sigma factor FecI|g__Escherichia.s__Escherichia_coli	15.1642179345
+UniRef50_A5UJ64	15.1624331952
+UniRef50_A5UJ64|g__Methanobrevibacter.s__Methanobrevibacter_smithii	15.1624331952
+UniRef50_Q8CMD7: Truncated transposase	15.1602771356
+UniRef50_Q8CMD7: Truncated transposase|g__Staphylococcus.s__Staphylococcus_epidermidis	14.3993228041
+UniRef50_Q8CMD7: Truncated transposase|unclassified	0.7609543315
+UniRef50_P75961: Inner membrane protein YcfZ	15.1598704846
+UniRef50_P75961: Inner membrane protein YcfZ|g__Escherichia.s__Escherichia_coli	15.1598704846
+UniRef50_A0A023KPW6: Glycosyl transferase	15.1586324694
+UniRef50_A0A023KPW6: Glycosyl transferase|g__Escherichia.s__Escherichia_coli	15.1586324694
+UniRef50_Q28M41: Kef-type potassium/proton antiporter, CPA2 family	15.1545731855
+UniRef50_Q28M41: Kef-type potassium/proton antiporter, CPA2 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.1545731855
+UniRef50_P0ABK0: Cytochrome bd-I ubiquinol oxidase subunit 1	15.1522900701
+UniRef50_P0ABK0: Cytochrome bd-I ubiquinol oxidase subunit 1|g__Escherichia.s__Escherichia_coli	13.3788970665
+UniRef50_P0ABK0: Cytochrome bd-I ubiquinol oxidase subunit 1|g__Acinetobacter.s__Acinetobacter_baumannii	1.6331550439
+UniRef50_P0ABK0: Cytochrome bd-I ubiquinol oxidase subunit 1|unclassified	0.1402379596
+UniRef50_D2ABX7	15.1515151515
+UniRef50_D2ABX7|g__Escherichia.s__Escherichia_coli	15.1515151515
+UniRef50_E1HK32	15.1515151515
+UniRef50_E1HK32|g__Escherichia.s__Escherichia_coli	15.1515151515
+UniRef50_H0DH46	15.1515151515
+UniRef50_H0DH46|unclassified	15.1515151515
+UniRef50_J0KSF5	15.1515151515
+UniRef50_J0KSF5|unclassified	15.1515151515
+UniRef50_U3ST82	15.1515151515
+UniRef50_U3ST82|g__Streptococcus.s__Streptococcus_mutans	15.1515151515
+UniRef50_G2BBB9: Putative nucleoside transporter yegT	15.1509254594
+UniRef50_G2BBB9: Putative nucleoside transporter yegT|g__Escherichia.s__Escherichia_coli	15.1509254594
+UniRef50_A3PLQ2: Glycoside hydrolase, family 16	15.1498245290
+UniRef50_A3PLQ2: Glycoside hydrolase, family 16|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.1498245290
+UniRef50_B0CE03: Acyl carrier protein	15.1479226431
+UniRef50_B0CE03: Acyl carrier protein|g__Staphylococcus.s__Staphylococcus_aureus	10.8375778155
+UniRef50_B0CE03: Acyl carrier protein|g__Staphylococcus.s__Staphylococcus_epidermidis	4.3103448276
+UniRef50_A8GJ06: Polyamine aminopropyl transferase	15.1468881090
+UniRef50_A8GJ06: Polyamine aminopropyl transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.6523373392
+UniRef50_A8GJ06: Polyamine aminopropyl transferase|unclassified	0.4945507698
+UniRef50_U4PYE4: 5-deoxy-glucuronate isomerase	15.1466135608
+UniRef50_U4PYE4: 5-deoxy-glucuronate isomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.1466135608
+UniRef50_A4WV96: Two component transcriptional regulator, LuxR family	15.1177998294
+UniRef50_A4WV96: Two component transcriptional regulator, LuxR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.1177998294
+UniRef50_U3SVY1	15.1141961487
+UniRef50_U3SVY1|g__Streptococcus.s__Streptococcus_mutans	15.1141961487
+UniRef50_W1EZL9: PhnI protein	15.1055786246
+UniRef50_W1EZL9: PhnI protein|g__Escherichia.s__Escherichia_coli	15.1055786246
+UniRef50_UPI000479B03D: hypothetical protein	15.1048791610
+UniRef50_UPI000479B03D: hypothetical protein|unclassified	15.1048791610
+UniRef50_Q3J6A6: Acyl dehydratase	15.1032437157
+UniRef50_Q3J6A6: Acyl dehydratase|unclassified	15.1032437157
+UniRef50_Q042B4: Putative RNA (cytidine(34)-2'-O)-methyltransferase	15.1026717768
+UniRef50_Q042B4: Putative RNA (cytidine(34)-2'-O)-methyltransferase|g__Streptococcus.s__Streptococcus_mutans	15.1026717768
+UniRef50_P25129: Attachment protein G3P	15.1005716416
+UniRef50_P25129: Attachment protein G3P|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.1005716416
+UniRef50_Q3IVD4: Amino acid/amide ABC transporter ATP-binding protein 1, HAAT family	15.1003466097
+UniRef50_Q3IVD4: Amino acid/amide ABC transporter ATP-binding protein 1, HAAT family|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.1003466097
+UniRef50_A7FHG9: Vitamin B12 import system permease protein BtuC	15.0980359814
+UniRef50_A7FHG9: Vitamin B12 import system permease protein BtuC|g__Escherichia.s__Escherichia_coli	15.0980359814
+UniRef50_Q1J0I2: Acid phosphatase/vanadium-dependent haloperoxidase related protein	15.0962743534
+UniRef50_Q1J0I2: Acid phosphatase/vanadium-dependent haloperoxidase related protein|g__Deinococcus.s__Deinococcus_radiodurans	15.0962743534
+UniRef50_W8RY41: Endonuclease/exonuclease/phosphatase family protein	15.0918976226
+UniRef50_W8RY41: Endonuclease/exonuclease/phosphatase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.0918976226
+UniRef50_P37050	15.0903725828
+UniRef50_P37050|g__Escherichia.s__Escherichia_coli	15.0903725828
+UniRef50_P37682	15.0892635842
+UniRef50_P37682|g__Escherichia.s__Escherichia_coli	15.0892635842
+UniRef50_M5IVI2	15.0777765018
+UniRef50_M5IVI2|unclassified	15.0777765018
+UniRef50_Q6BF16: 2-dehydro-3-deoxy-6-phosphogalactonate aldolase	15.0771730644
+UniRef50_Q6BF16: 2-dehydro-3-deoxy-6-phosphogalactonate aldolase|g__Escherichia.s__Escherichia_coli	15.0771730644
+UniRef50_Q1CA93: Leucyl/phenylalanyl-tRNA--protein transferase	15.0763803834
+UniRef50_Q1CA93: Leucyl/phenylalanyl-tRNA--protein transferase|g__Escherichia.s__Escherichia_coli	14.4532886292
+UniRef50_Q1CA93: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.6230917541
+UniRef50_U9Q003	15.0753570738
+UniRef50_U9Q003|unclassified	15.0753570738
+UniRef50_H3UM49	15.0727863948
+UniRef50_H3UM49|g__Staphylococcus.s__Staphylococcus_epidermidis	15.0727863948
+UniRef50_P0A8Z5: Acyl-CoA thioester hydrolase YbgC	15.0709989265
+UniRef50_P0A8Z5: Acyl-CoA thioester hydrolase YbgC|g__Escherichia.s__Escherichia_coli	15.0709989265
+UniRef50_B9KSR7	15.0623457605
+UniRef50_B9KSR7|unclassified	11.2887608548
+UniRef50_B9KSR7|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.7735849057
+UniRef50_P75860	15.0565800527
+UniRef50_P75860|g__Escherichia.s__Escherichia_coli	15.0565800527
+UniRef50_D3FFF2: ABC transporter related protein	15.0545556448
+UniRef50_D3FFF2: ABC transporter related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.0545556448
+UniRef50_X4XFI8	15.0512080575
+UniRef50_X4XFI8|g__Escherichia.s__Escherichia_coli	15.0512080575
+UniRef50_UPI000474ABAF: isoleucine--tRNA ligase	15.0511773749
+UniRef50_UPI000474ABAF: isoleucine--tRNA ligase|g__Escherichia.s__Escherichia_coli	15.0511773749
+UniRef50_P0ACR1: HTH-type transcriptional activator AllS	15.0426336314
+UniRef50_P0ACR1: HTH-type transcriptional activator AllS|g__Escherichia.s__Escherichia_coli	15.0426336314
+UniRef50_A3PPZ3: HNH endonuclease	15.0400268580
+UniRef50_A3PPZ3: HNH endonuclease|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.0400268580
+UniRef50_A6VCW3: Membrane protein, putative	15.0385963986
+UniRef50_A6VCW3: Membrane protein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.0385963986
+UniRef50_P0AAU1	15.0376182858
+UniRef50_P0AAU1|g__Escherichia.s__Escherichia_coli	15.0376182858
+UniRef50_Q47223: Type-1 fimbrial protein, A chain	15.0365062018
+UniRef50_Q47223: Type-1 fimbrial protein, A chain|g__Escherichia.s__Escherichia_coli	15.0365062018
+UniRef50_Q46942	15.0342875615
+UniRef50_Q46942|g__Escherichia.s__Escherichia_coli	15.0342875615
+UniRef50_Q890Z7: Anaerobic sulfite reductase subunit B	15.0278760307
+UniRef50_Q890Z7: Anaerobic sulfite reductase subunit B|g__Clostridium.s__Clostridium_beijerinckii	15.0278760307
+UniRef50_P77031: Inner membrane protein YqcE	15.0247494229
+UniRef50_P77031: Inner membrane protein YqcE|g__Escherichia.s__Escherichia_coli	15.0247494229
+UniRef50_Q2IFU3: Pantothenate synthetase	15.0242808126
+UniRef50_Q2IFU3: Pantothenate synthetase|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.0242808126
+UniRef50_D2G8R5: Cytochrome oxidase assembly protein (Fragment)	15.0238652009
+UniRef50_D2G8R5: Cytochrome oxidase assembly protein (Fragment)|g__Staphylococcus.s__Staphylococcus_aureus	15.0238652009
+UniRef50_Q6W109: Tartrate dehydrogenase	15.0205438386
+UniRef50_Q6W109: Tartrate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	15.0205438386
+UniRef50_P54292: Regulatory protein RhlR	15.0179253059
+UniRef50_P54292: Regulatory protein RhlR|g__Pseudomonas.s__Pseudomonas_aeruginosa	15.0179253059
+UniRef50_P0AEJ4: Osmolarity sensor protein EnvZ	15.0119859505
+UniRef50_P0AEJ4: Osmolarity sensor protein EnvZ|g__Escherichia.s__Escherichia_coli	15.0119859505
+UniRef50_UPI00026CDAF4: flagellar biosynthetic protein FliQ	14.9994006551
+UniRef50_UPI00026CDAF4: flagellar biosynthetic protein FliQ|unclassified	14.9994006551
+UniRef50_F0L7M8: Transcriptional regulator, GntR family	14.9986682088
+UniRef50_F0L7M8: Transcriptional regulator, GntR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.9986682088
+UniRef50_P60776: Lipoate-protein ligase A	14.9970837968
+UniRef50_P60776: Lipoate-protein ligase A|g__Escherichia.s__Escherichia_coli	14.9970837968
+UniRef50_A5UMW6	14.9916538040
+UniRef50_A5UMW6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.9916538040
+UniRef50_P03841: Maltose operon periplasmic protein	14.9859671547
+UniRef50_P03841: Maltose operon periplasmic protein|g__Escherichia.s__Escherichia_coli	14.9859671547
+UniRef50_P71298: Putative prophage CP4-6 integrase	14.9842115778
+UniRef50_P71298: Putative prophage CP4-6 integrase|g__Escherichia.s__Escherichia_coli	14.9842115778
+UniRef50_I2BLI3: Malonate utilization transcriptional regulator	14.9827514890
+UniRef50_I2BLI3: Malonate utilization transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.9827514890
+UniRef50_K5Z290	14.9787614576
+UniRef50_K5Z290|unclassified	14.9787614576
+UniRef50_Q5HNS6	14.9787614576
+UniRef50_Q5HNS6|g__Staphylococcus.s__Staphylococcus_epidermidis	14.9787614576
+UniRef50_P18956: Gamma-glutamyltranspeptidase	14.9756768677
+UniRef50_P18956: Gamma-glutamyltranspeptidase|g__Escherichia.s__Escherichia_coli	14.9756768677
+UniRef50_P18777: Anaerobic dimethyl sulfoxide reductase chain C	14.9743026001
+UniRef50_P18777: Anaerobic dimethyl sulfoxide reductase chain C|g__Escherichia.s__Escherichia_coli	14.9743026001
+UniRef50_Q8CU65	14.9724619883
+UniRef50_Q8CU65|g__Staphylococcus.s__Staphylococcus_epidermidis	14.9724619883
+UniRef50_UPI000370F5C3: hypothetical protein	14.9650587997
+UniRef50_UPI000370F5C3: hypothetical protein|unclassified	14.9650587997
+UniRef50_I6SJA3	14.9615132885
+UniRef50_I6SJA3|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.9615132885
+UniRef50_S5Y0K2	14.9578726294
+UniRef50_S5Y0K2|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.8369617804
+UniRef50_S5Y0K2|unclassified	4.1209108491
+UniRef50_G0AH79: Dihydropteroate synthase	14.9566668295
+UniRef50_G0AH79: Dihydropteroate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.9566668295
+UniRef50_A4X0F9	14.9562333577
+UniRef50_A4X0F9|unclassified	14.9562333577
+UniRef50_A1UAG5: Phosphatidylserine decarboxylase proenzyme	14.9449730957
+UniRef50_A1UAG5: Phosphatidylserine decarboxylase proenzyme|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.8492050194
+UniRef50_A1UAG5: Phosphatidylserine decarboxylase proenzyme|unclassified	0.0957680763
+UniRef50_A9M323	14.9435114717
+UniRef50_A9M323|g__Acinetobacter.s__Acinetobacter_baumannii	8.3333333333
+UniRef50_A9M323|g__Neisseria.s__Neisseria_meningitidis	6.6101781383
+UniRef50_P22608: Type 4 fimbrial assembly protein PilB	14.9412380535
+UniRef50_P22608: Type 4 fimbrial assembly protein PilB|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.9412380535
+UniRef50_L7ZH95: 23S rRNA (uracil(1939)-C(5))-methyltransferase RlmD	14.9285213087
+UniRef50_L7ZH95: 23S rRNA (uracil(1939)-C(5))-methyltransferase RlmD|g__Escherichia.s__Escherichia_coli	14.9285213087
+UniRef50_F0RP27: Peptidyl-prolyl cis-trans isomerase	14.9262043999
+UniRef50_F0RP27: Peptidyl-prolyl cis-trans isomerase|g__Deinococcus.s__Deinococcus_radiodurans	14.9262043999
+UniRef50_P33647: mRNA interferase ChpB	14.9259099410
+UniRef50_P33647: mRNA interferase ChpB|g__Escherichia.s__Escherichia_coli	14.9259099410
+UniRef50_B0KA54: GTPase Era	14.9257725066
+UniRef50_B0KA54: GTPase Era|g__Clostridium.s__Clostridium_beijerinckii	14.9257725066
+UniRef50_Q52K65	14.9253731343
+UniRef50_Q52K65|unclassified	14.9253731343
+UniRef50_Q5HR50	14.9253731343
+UniRef50_Q5HR50|g__Staphylococcus.s__Staphylococcus_epidermidis	14.9253731343
+UniRef50_Q8CR75	14.9253731343
+UniRef50_Q8CR75|g__Staphylococcus.s__Staphylococcus_epidermidis	14.9253731343
+UniRef50_V1BIM5	14.9253731343
+UniRef50_V1BIM5|g__Escherichia.s__Escherichia_coli	14.9253731343
+UniRef50_T7I9U4	14.9206266173
+UniRef50_T7I9U4|g__Escherichia.s__Escherichia_coli	14.9206266173
+UniRef50_A5UJ74: Chloramphenicol O-acetyltransferase	14.9180713255
+UniRef50_A5UJ74: Chloramphenicol O-acetyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.9180713255
+UniRef50_B4TR32: Ethanolamine ammonia-lyase light chain	14.9107346262
+UniRef50_B4TR32: Ethanolamine ammonia-lyase light chain|g__Escherichia.s__Escherichia_coli	14.9107346262
+UniRef50_A6VEL5	14.9058140161
+UniRef50_A6VEL5|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.9058140161
+UniRef50_P69827: PTS system mannitol-specific cryptic EIICB component	14.9006256513
+UniRef50_P69827: PTS system mannitol-specific cryptic EIICB component|g__Escherichia.s__Escherichia_coli	14.9006256513
+UniRef50_Q38XQ8: Ribosome maturation factor RimM	14.8945608395
+UniRef50_Q38XQ8: Ribosome maturation factor RimM|g__Streptococcus.s__Streptococcus_mutans	14.8945608395
+UniRef50_B9KQ64	14.8859971804
+UniRef50_B9KQ64|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.8859971804
+UniRef50_Q0C269: Transcriptional regulator, LysR family	14.8855548454
+UniRef50_Q0C269: Transcriptional regulator, LysR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.8855548454
+UniRef50_Q5F8C3: Fructose-1,6-bisphosphatase class 1	14.8840971044
+UniRef50_Q5F8C3: Fructose-1,6-bisphosphatase class 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.5887603169
+UniRef50_Q5F8C3: Fructose-1,6-bisphosphatase class 1|g__Acinetobacter.s__Acinetobacter_baumannii	1.2953367876
+UniRef50_P0AF25: Ribonucleotide monophosphatase NagD	14.8824851204
+UniRef50_P0AF25: Ribonucleotide monophosphatase NagD|g__Escherichia.s__Escherichia_coli	14.8824851204
+UniRef50_P21979: Cell surface antigen I/II	14.8803109541
+UniRef50_P21979: Cell surface antigen I/II|g__Streptococcus.s__Streptococcus_mutans	14.8803109541
+UniRef50_P41441: Putative type II secretion system protein F	14.8762202876
+UniRef50_P41441: Putative type II secretion system protein F|g__Escherichia.s__Escherichia_coli	14.8762202876
+UniRef50_A6LXH0: PTS system fructose subfamily IIA component	14.8730475953
+UniRef50_A6LXH0: PTS system fructose subfamily IIA component|g__Clostridium.s__Clostridium_beijerinckii	14.8730475953
+UniRef50_A3PPE3: Transcriptional regulator, LysR family	14.8708773657
+UniRef50_A3PPE3: Transcriptional regulator, LysR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.8708773657
+UniRef50_R9SM88: Cell wall biosynthesis glycosyl transferase GT2 family	14.8705489459
+UniRef50_R9SM88: Cell wall biosynthesis glycosyl transferase GT2 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.8705489459
+UniRef50_P37630: Inner membrane protein YhiM	14.8663797291
+UniRef50_P37630: Inner membrane protein YhiM|g__Escherichia.s__Escherichia_coli	14.8663797291
+UniRef50_UPI0003C1A87A	14.8660888490
+UniRef50_UPI0003C1A87A|unclassified	14.8660888490
+UniRef50_P37640: Putative HTH-type transcriptional regulator YhjB	14.8657476545
+UniRef50_P37640: Putative HTH-type transcriptional regulator YhjB|g__Escherichia.s__Escherichia_coli	14.8657476545
+UniRef50_B7V9D9: Glutamate-1-semialdehyde 2,1-aminomutase	14.8627534648
+UniRef50_B7V9D9: Glutamate-1-semialdehyde 2,1-aminomutase|g__Escherichia.s__Escherichia_coli	8.4458281460
+UniRef50_B7V9D9: Glutamate-1-semialdehyde 2,1-aminomutase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3242482146
+UniRef50_B7V9D9: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0926771042
+UniRef50_A5UNR8	14.8603196739
+UniRef50_A5UNR8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.8603196739
+UniRef50_Q1GJ00: Aminodeoxychorismate synthase, subunit I	14.8566267573
+UniRef50_Q1GJ00: Aminodeoxychorismate synthase, subunit I|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.8566267573
+UniRef50_O26935	14.8524180789
+UniRef50_O26935|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.8524180789
+UniRef50_R9SHL8: NIF3 family protein HcgD	14.8489802946
+UniRef50_R9SHL8: NIF3 family protein HcgD|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.8489802946
+UniRef50_Q250M1: 50S ribosomal protein L24	14.8392480020
+UniRef50_Q250M1: 50S ribosomal protein L24|g__Staphylococcus.s__Staphylococcus_aureus	14.8392480020
+UniRef50_W8T289	14.8325358852
+UniRef50_W8T289|g__Escherichia.s__Escherichia_coli	14.8325358852
+UniRef50_E8TLE8	14.8306321180
+UniRef50_E8TLE8|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.1305290736
+UniRef50_E8TLE8|unclassified	0.7001030444
+UniRef50_Q8NV29	14.8221132504
+UniRef50_Q8NV29|g__Staphylococcus.s__Staphylococcus_aureus	13.7740820904
+UniRef50_Q8NV29|unclassified	1.0480311600
+UniRef50_A5UMN4: Riboflavin kinase	14.8179912331
+UniRef50_A5UMN4: Riboflavin kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.8179912331
+UniRef50_M1MMU0: Amino acid ABC transporter substrate-binding protein, PAAT family	14.8162983342
+UniRef50_M1MMU0: Amino acid ABC transporter substrate-binding protein, PAAT family|g__Clostridium.s__Clostridium_beijerinckii	14.8162983342
+UniRef50_P77788: CTP pyrophosphohydrolase	14.8148148148
+UniRef50_P77788: CTP pyrophosphohydrolase|g__Escherichia.s__Escherichia_coli	14.8148148148
+UniRef50_P52147: Arsenate reductase	14.8109413785
+UniRef50_P52147: Arsenate reductase|g__Escherichia.s__Escherichia_coli	11.3439546162
+UniRef50_P52147: Arsenate reductase|unclassified	3.4669867623
+UniRef50_A3PPY5	14.7991587775
+UniRef50_A3PPY5|unclassified	14.7991587775
+UniRef50_Q47690: Homocysteine S-methyltransferase	14.7925727899
+UniRef50_Q47690: Homocysteine S-methyltransferase|g__Escherichia.s__Escherichia_coli	14.7925727899
+UniRef50_Q46810: Molybdenum cofactor cytidylyltransferase	14.7917711692
+UniRef50_Q46810: Molybdenum cofactor cytidylyltransferase|g__Escherichia.s__Escherichia_coli	14.7917711692
+UniRef50_N3NX82	14.7901459352
+UniRef50_N3NX82|g__Escherichia.s__Escherichia_coli	14.7901459352
+UniRef50_F8IMK2	14.7900050985
+UniRef50_F8IMK2|g__Streptococcus.s__Streptococcus_agalactiae	14.7900050985
+UniRef50_Q8DW07	14.7868756049
+UniRef50_Q8DW07|g__Streptococcus.s__Streptococcus_mutans	14.7868756049
+UniRef50_W0MK50	14.7867495207
+UniRef50_W0MK50|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.7867495207
+UniRef50_Q0A6N5: Type II secretion system protein E	14.7799903484
+UniRef50_Q0A6N5: Type II secretion system protein E|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.7799903484
+UniRef50_P0AGL8: Ribosomal RNA small subunit methyltransferase E	14.7750789534
+UniRef50_P0AGL8: Ribosomal RNA small subunit methyltransferase E|g__Escherichia.s__Escherichia_coli	14.7750789534
+UniRef50_U0ML56	14.7739911002
+UniRef50_U0ML56|g__Escherichia.s__Escherichia_coli	14.7739911002
+UniRef50_O11346: H1-41 protein (Fragment)	14.7700240229
+UniRef50_O11346: H1-41 protein (Fragment)|unclassified	14.7700240229
+UniRef50_P77269: ABC transporter periplasmic-binding protein YphF	14.7679835679
+UniRef50_P77269: ABC transporter periplasmic-binding protein YphF|g__Escherichia.s__Escherichia_coli	14.7679835679
+UniRef50_A4WZK1	14.7668272129
+UniRef50_A4WZK1|unclassified	14.7668272129
+UniRef50_Z4LTQ9: Serine-aspartate repeat family protein, SdrH	14.7621144312
+UniRef50_Z4LTQ9: Serine-aspartate repeat family protein, SdrH|g__Staphylococcus.s__Staphylococcus_aureus	14.5417590253
+UniRef50_Z4LTQ9: Serine-aspartate repeat family protein, SdrH|unclassified	0.2203554058
+UniRef50_F6CGX7: Quaternary-amine-transporting ATPase	14.7580342770
+UniRef50_F6CGX7: Quaternary-amine-transporting ATPase|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.7580342770
+UniRef50_Q9L6X9: DNA replication terminus site-binding protein	14.7563958276
+UniRef50_Q9L6X9: DNA replication terminus site-binding protein|g__Escherichia.s__Escherichia_coli	14.7563958276
+UniRef50_B9KP57	14.7535094132
+UniRef50_B9KP57|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.8523687288
+UniRef50_B9KP57|unclassified	1.9011406844
+UniRef50_O27322: Argininosuccinate synthase	14.7488486944
+UniRef50_O27322: Argininosuccinate synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.6557759401
+UniRef50_O27322: Argininosuccinate synthase|unclassified	0.0930727543
+UniRef50_Q2RMS9: Endoribonuclease YbeY	14.7488063500
+UniRef50_Q2RMS9: Endoribonuclease YbeY|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.6353797421
+UniRef50_Q2RMS9: Endoribonuclease YbeY|unclassified	0.1134266079
+UniRef50_P38683: Periplasmic protein TorT	14.7451254568
+UniRef50_P38683: Periplasmic protein TorT|g__Escherichia.s__Escherichia_coli	14.7451254568
+UniRef50_P70720: 3-oxoacyl-[acyl-carrier-protein] reductase FabG	14.7447532843
+UniRef50_P70720: 3-oxoacyl-[acyl-carrier-protein] reductase FabG|g__Neisseria.s__Neisseria_meningitidis	8.5248570667
+UniRef50_P70720: 3-oxoacyl-[acyl-carrier-protein] reductase FabG|g__Acinetobacter.s__Acinetobacter_baumannii	6.2198962176
+UniRef50_A3PI40: Flagellar motor switch protein FliG	14.7386455147
+UniRef50_A3PI40: Flagellar motor switch protein FliG|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.7386455147
+UniRef50_W5XWP7: Aldehyde dehydrogenase	14.7372138533
+UniRef50_W5XWP7: Aldehyde dehydrogenase|g__Escherichia.s__Escherichia_coli	14.7372138533
+UniRef50_I6TYT4: Transposase IS204/IS1001/IS1096/IS1165 family protein	14.7332462063
+UniRef50_I6TYT4: Transposase IS204/IS1001/IS1096/IS1165 family protein|g__Streptococcus.s__Streptococcus_mutans	14.7332462063
+UniRef50_E7T039: PTS system protein, cellobiose-specific IIC component	14.7281859990
+UniRef50_E7T039: PTS system protein, cellobiose-specific IIC component|g__Escherichia.s__Escherichia_coli	14.7281859990
+UniRef50_A4TJM2: Probable phosphatase YPDSF_1086	14.7159654846
+UniRef50_A4TJM2: Probable phosphatase YPDSF_1086|g__Escherichia.s__Escherichia_coli	14.7159654846
+UniRef50_E6JNN1	14.7155064814
+UniRef50_E6JNN1|unclassified	14.7155064814
+UniRef50_P0A963: L-asparaginase 1	14.7154878304
+UniRef50_P0A963: L-asparaginase 1|g__Escherichia.s__Escherichia_coli	14.7154878304
+UniRef50_B5R316: UPF0304 protein YfbU	14.7135663429
+UniRef50_B5R316: UPF0304 protein YfbU|g__Escherichia.s__Escherichia_coli	14.5202425094
+UniRef50_B5R316: UPF0304 protein YfbU|unclassified	0.1933238335
+UniRef50_A0A023WST9: MerR family transcriptional regulator	14.7125230436
+UniRef50_A0A023WST9: MerR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.7125230436
+UniRef50_P21175: Leucine-, isoleucine-, valine-, threonine-, and alanine-binding protein	14.7121201047
+UniRef50_P21175: Leucine-, isoleucine-, valine-, threonine-, and alanine-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.7121201047
+UniRef50_T2EQ25: Helix-turn-helix domain protein	14.7121093628
+UniRef50_T2EQ25: Helix-turn-helix domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.7121093628
+UniRef50_Q1GJC7: Uncharacterised conserved protein UCP032025	14.7079938523
+UniRef50_Q1GJC7: Uncharacterised conserved protein UCP032025|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.8596254869
+UniRef50_Q1GJC7: Uncharacterised conserved protein UCP032025|unclassified	6.8483683654
+UniRef50_P77437: Hydrogenase-4 component F	14.7059326042
+UniRef50_P77437: Hydrogenase-4 component F|g__Escherichia.s__Escherichia_coli	14.7059326042
+UniRef50_C8KT75	14.7058823529
+UniRef50_C8KT75|unclassified	14.7058823529
+UniRef50_E1PZI9	14.7058823529
+UniRef50_E1PZI9|g__Helicobacter.s__Helicobacter_pylori	14.7058823529
+UniRef50_E7HKA3	14.7058823529
+UniRef50_E7HKA3|g__Escherichia.s__Escherichia_coli	14.7058823529
+UniRef50_G7RDN0	14.7058823529
+UniRef50_G7RDN0|g__Escherichia.s__Escherichia_coli	14.7058823529
+UniRef50_P0AEX1: 1-phosphofructokinase	14.7000645522
+UniRef50_P0AEX1: 1-phosphofructokinase|g__Escherichia.s__Escherichia_coli	14.7000645522
+UniRef50_A8AVU5: Cell cycle protein GpsB	14.6981286687
+UniRef50_A8AVU5: Cell cycle protein GpsB|g__Streptococcus.s__Streptococcus_mutans	14.6981286687
+UniRef50_P76549	14.6975810619
+UniRef50_P76549|g__Escherichia.s__Escherichia_coli	14.6975810619
+UniRef50_Q2SA37: Octanoyltransferase	14.6910871735
+UniRef50_Q2SA37: Octanoyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.6910871735
+UniRef50_H6LMT6	14.6890895879
+UniRef50_H6LMT6|g__Staphylococcus.s__Staphylococcus_aureus	14.6890895879
+UniRef50_P0ADU0	14.6791929448
+UniRef50_P0ADU0|g__Escherichia.s__Escherichia_coli	14.6791929448
+UniRef50_V5SS13	14.6790957256
+UniRef50_V5SS13|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.6790957256
+UniRef50_T9BAS9	14.6715333398
+UniRef50_T9BAS9|g__Escherichia.s__Escherichia_coli	14.6715333398
+UniRef50_A0A012WQJ6: Transposase for insertion sequence-like element IS431mec	14.6681693482
+UniRef50_A0A012WQJ6: Transposase for insertion sequence-like element IS431mec|g__Staphylococcus.s__Staphylococcus_aureus	10.0000000000
+UniRef50_A0A012WQJ6: Transposase for insertion sequence-like element IS431mec|unclassified	4.6681693482
+UniRef50_Q890E7: FMN-dependent NADH-azoreductase 1	14.6613095816
+UniRef50_Q890E7: FMN-dependent NADH-azoreductase 1|g__Streptococcus.s__Streptococcus_agalactiae	14.6613095816
+UniRef50_Q8TX50: 50S ribosomal protein L10	14.6574528427
+UniRef50_Q8TX50: 50S ribosomal protein L10|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.6574528427
+UniRef50_V4RU41	14.6573253476
+UniRef50_V4RU41|unclassified	7.5130127807
+UniRef50_V4RU41|g__Staphylococcus.s__Staphylococcus_aureus	7.1443125669
+UniRef50_O27633: Probable S-methyl-5'-thioinosine phosphorylase	14.6566531468
+UniRef50_O27633: Probable S-methyl-5'-thioinosine phosphorylase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.6566531468
+UniRef50_G7R254	14.6544676372
+UniRef50_G7R254|g__Escherichia.s__Escherichia_coli	13.5135135135
+UniRef50_G7R254|unclassified	1.1409541237
+UniRef50_A5UJI5: Type I restriction-modification system methylase, subunit S	14.6540271586
+UniRef50_A5UJI5: Type I restriction-modification system methylase, subunit S|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.6540271586
+UniRef50_O27484: 5'-nucleotidase SurE	14.6514782663
+UniRef50_O27484: 5'-nucleotidase SurE|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.6514782663
+UniRef50_Q8DT17	14.6480331263
+UniRef50_Q8DT17|g__Streptococcus.s__Streptococcus_mutans	8.6956521739
+UniRef50_Q8DT17|unclassified	5.9523809524
+UniRef50_H1T6F3: ABC transporter, substrate-binding protein, family 5 domain protein (Fragment)	14.6427542364
+UniRef50_H1T6F3: ABC transporter, substrate-binding protein, family 5 domain protein (Fragment)|g__Staphylococcus.s__Staphylococcus_aureus	14.6427542364
+UniRef50_Q9P6J4	14.6378793021
+UniRef50_Q9P6J4|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.6378793021
+UniRef50_D3E4D6: SsDNA exonuclease RecJ2	14.6360709286
+UniRef50_D3E4D6: SsDNA exonuclease RecJ2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.6360709286
+UniRef50_A5UK44: UPF0305 protein Msm_0367	14.6354153834
+UniRef50_A5UK44: UPF0305 protein Msm_0367|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.6354153834
+UniRef50_G7SA54: Phosphodiesterase, MJ0936 family	14.6330541357
+UniRef50_G7SA54: Phosphodiesterase, MJ0936 family|g__Streptococcus.s__Streptococcus_mutans	14.4443515230
+UniRef50_G7SA54: Phosphodiesterase, MJ0936 family|unclassified	0.1887026127
+UniRef50_P52696	14.6289473723
+UniRef50_P52696|g__Escherichia.s__Escherichia_coli	14.6289473723
+UniRef50_P77218: Ethanolamine utilization protein EutD	14.6277447189
+UniRef50_P77218: Ethanolamine utilization protein EutD|g__Escherichia.s__Escherichia_coli	13.9031395191
+UniRef50_P77218: Ethanolamine utilization protein EutD|unclassified	0.7246051998
+UniRef50_M9B696: Bifunctional glmU domain protein	14.6271364858
+UniRef50_M9B696: Bifunctional glmU domain protein|g__Escherichia.s__Escherichia_coli	14.6271364858
+UniRef50_P0AEK1: Exodeoxyribonuclease 10	14.6170987104
+UniRef50_P0AEK1: Exodeoxyribonuclease 10|g__Escherichia.s__Escherichia_coli	14.6170987104
+UniRef50_P39386: Multidrug resistance protein MdtM	14.6160346466
+UniRef50_P39386: Multidrug resistance protein MdtM|g__Escherichia.s__Escherichia_coli	14.6160346466
+UniRef50_A3PMT5: Toluene tolerance family protein	14.6156068696
+UniRef50_A3PMT5: Toluene tolerance family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.6156068696
+UniRef50_P0ABE0: Biotin carboxyl carrier protein of acetyl-CoA carboxylase	14.6147890050
+UniRef50_P0ABE0: Biotin carboxyl carrier protein of acetyl-CoA carboxylase|g__Escherichia.s__Escherichia_coli	14.6147890050
+UniRef50_Q8X643: NAD-dependent dihydropyrimidine dehydrogenase subunit PreA	14.6123734507
+UniRef50_Q8X643: NAD-dependent dihydropyrimidine dehydrogenase subunit PreA|g__Escherichia.s__Escherichia_coli	13.0750163127
+UniRef50_Q8X643: NAD-dependent dihydropyrimidine dehydrogenase subunit PreA|g__Clostridium.s__Clostridium_beijerinckii	1.4397113739
+UniRef50_Q8X643: NAD-dependent dihydropyrimidine dehydrogenase subunit PreA|unclassified	0.0976457641
+UniRef50_H6LDW2: UDP-galactopyranose mutase Glf	14.6068533930
+UniRef50_H6LDW2: UDP-galactopyranose mutase Glf|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.6068533930
+UniRef50_A5UKS5: SAM-dependent methyltransferase	14.6046831765
+UniRef50_A5UKS5: SAM-dependent methyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.6046831765
+UniRef50_Y5XPW9: Serine-aspartate repeat-containing protein C	14.6039432998
+UniRef50_Y5XPW9: Serine-aspartate repeat-containing protein C|g__Staphylococcus.s__Staphylococcus_epidermidis	14.6039432998
+UniRef50_A5UJ77: Predicted metal-binding protein	14.6033672732
+UniRef50_A5UJ77: Predicted metal-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.6033672732
+UniRef50_P0ACV8	14.5998794265
+UniRef50_P0ACV8|g__Escherichia.s__Escherichia_coli	14.5998794265
+UniRef50_P75836	14.5996074917
+UniRef50_P75836|g__Escherichia.s__Escherichia_coli	14.5996074917
+UniRef50_P19496: Coenzyme F420 hydrogenase subunit alpha	14.5974304151
+UniRef50_P19496: Coenzyme F420 hydrogenase subunit alpha|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.5974304151
+UniRef50_B7V4B3: Transcriptional regulator Dnr	14.5906117794
+UniRef50_B7V4B3: Transcriptional regulator Dnr|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.5906117794
+UniRef50_A4WNW4: Transposase, IS4 family	14.5863607458
+UniRef50_A4WNW4: Transposase, IS4 family|unclassified	14.5863607458
+UniRef50_Q2Y5N1: FMN adenylyltransferase / riboflavin kinase	14.5858250264
+UniRef50_Q2Y5N1: FMN adenylyltransferase / riboflavin kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.5858250264
+UniRef50_Q3BPQ5	14.5850997571
+UniRef50_Q3BPQ5|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.5850997571
+UniRef50_P27126: Lipopolysaccharide core biosynthesis protein RfaS	14.5848578278
+UniRef50_P27126: Lipopolysaccharide core biosynthesis protein RfaS|g__Escherichia.s__Escherichia_coli	14.3119320636
+UniRef50_P27126: Lipopolysaccharide core biosynthesis protein RfaS|unclassified	0.2729257642
+UniRef50_P0ACN0	14.5788111647
+UniRef50_P0ACN0|g__Escherichia.s__Escherichia_coli	14.5788111647
+UniRef50_Q8CU49	14.5681769211
+UniRef50_Q8CU49|g__Staphylococcus.s__Staphylococcus_aureus	8.8538912068
+UniRef50_Q8CU49|g__Staphylococcus.s__Staphylococcus_epidermidis	5.7142857143
+UniRef50_D5ARZ1: Electron transport complex subunit RnfC	14.5669961129
+UniRef50_D5ARZ1: Electron transport complex subunit RnfC|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.5669961129
+UniRef50_A5UKF8: TfuA-like protein	14.5605254252
+UniRef50_A5UKF8: TfuA-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.9557274295
+UniRef50_A5UKF8: TfuA-like protein|unclassified	0.6047979958
+UniRef50_P08365: Antitoxin ChpS	14.5546590729
+UniRef50_P08365: Antitoxin ChpS|g__Escherichia.s__Escherichia_coli	14.5546590729
+UniRef50_P25666: Protein HtrL	14.5520585112
+UniRef50_P25666: Protein HtrL|g__Escherichia.s__Escherichia_coli	14.5520585112
+UniRef50_J1B9G8	14.5502040094
+UniRef50_J1B9G8|unclassified	8.9322264813
+UniRef50_J1B9G8|g__Staphylococcus.s__Staphylococcus_epidermidis	5.6179775281
+UniRef50_Q49UR2	14.5476428146
+UniRef50_Q49UR2|g__Staphylococcus.s__Staphylococcus_epidermidis	14.5476428146
+UniRef50_A5UP66: Predicted ATPase, AAA+ superfamily	14.5461966553
+UniRef50_A5UP66: Predicted ATPase, AAA+ superfamily|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.5461966553
+UniRef50_Y8BSP7: Iron complex transport system substrate-binding protein	14.5451703189
+UniRef50_Y8BSP7: Iron complex transport system substrate-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	14.2288144420
+UniRef50_Y8BSP7: Iron complex transport system substrate-binding protein|unclassified	0.3163558769
+UniRef50_Q46856: Alcohol dehydrogenase YqhD	14.5428883703
+UniRef50_Q46856: Alcohol dehydrogenase YqhD|g__Escherichia.s__Escherichia_coli	14.5428883703
+UniRef50_L8BN02	14.5412198693
+UniRef50_L8BN02|g__Escherichia.s__Escherichia_coli	12.1951219512
+UniRef50_L8BN02|unclassified	2.3460979180
+UniRef50_Q3IV23	14.5365650223
+UniRef50_Q3IV23|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.1967213115
+UniRef50_Q3IV23|unclassified	6.3398437108
+UniRef50_M8PZ54: PTS system, glucose-like IIB component domain protein	14.5351552239
+UniRef50_M8PZ54: PTS system, glucose-like IIB component domain protein|g__Escherichia.s__Escherichia_coli	14.5351552239
+UniRef50_W8YU14	14.5336616280
+UniRef50_W8YU14|unclassified	14.5336616280
+UniRef50_K0B0P3	14.5273580523
+UniRef50_K0B0P3|g__Clostridium.s__Clostridium_beijerinckii	14.5273580523
+UniRef50_J0RXK9	14.5271415428
+UniRef50_J0RXK9|g__Staphylococcus.s__Staphylococcus_epidermidis	14.5271415428
+UniRef50_D3NUN2	14.5253374163
+UniRef50_D3NUN2|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.5253374163
+UniRef50_UPI00024823EA: hypothetical protein	14.5206641063
+UniRef50_UPI00024823EA: hypothetical protein|unclassified	14.5206641063
+UniRef50_UPI0003B67F69: chorismate mutase	14.5200777148
+UniRef50_UPI0003B67F69: chorismate mutase|unclassified	14.5200777148
+UniRef50_A5UKY7: LemA protein	14.5199330121
+UniRef50_A5UKY7: LemA protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.5199330121
+UniRef50_A5UKH3: Homoserine O-acetyltransferase	14.5175965790
+UniRef50_A5UKH3: Homoserine O-acetyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.5175965790
+UniRef50_A7ZVB3: UPF0307 protein YjgA	14.5171625209
+UniRef50_A7ZVB3: UPF0307 protein YjgA|g__Escherichia.s__Escherichia_coli	14.5171625209
+UniRef50_UPI000470A4B9: 5-methyltetrahydrofolate--homocysteine methyltransferase	14.5131971331
+UniRef50_UPI000470A4B9: 5-methyltetrahydrofolate--homocysteine methyltransferase|unclassified	14.5131971331
+UniRef50_A6UZL3: DNA-directed RNA polymerase subunit alpha	14.5111109485
+UniRef50_A6UZL3: DNA-directed RNA polymerase subunit alpha|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.1920433774
+UniRef50_A6UZL3: DNA-directed RNA polymerase subunit alpha|unclassified	0.3190675711
+UniRef50_B8GW31: Chromosome partitioning protein ParA	14.5015316049
+UniRef50_B8GW31: Chromosome partitioning protein ParA|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.5015316049
+UniRef50_P08956: Type I restriction enzyme EcoKI R protein	14.4999282444
+UniRef50_P08956: Type I restriction enzyme EcoKI R protein|g__Escherichia.s__Escherichia_coli	14.4999282444
+UniRef50_UPI00046DF536: hypothetical protein, partial	14.4949530424
+UniRef50_UPI00046DF536: hypothetical protein, partial|unclassified	14.4949530424
+UniRef50_P0AEB8: RutC family protein YoaB	14.4927536232
+UniRef50_P0AEB8: RutC family protein YoaB|g__Escherichia.s__Escherichia_coli	14.4927536232
+UniRef50_Q2FWV0: Hypothetical phage protein	14.4927536232
+UniRef50_Q2FWV0: Hypothetical phage protein|g__Staphylococcus.s__Staphylococcus_aureus	14.4927536232
+UniRef50_Q6A6Y6: 6,7-dimethyl-8-ribityllumazine synthase	14.4927536232
+UniRef50_Q6A6Y6: 6,7-dimethyl-8-ribityllumazine synthase|g__Propionibacterium.s__Propionibacterium_acnes	14.4927536232
+UniRef50_UPI0002D3715C: hypothetical protein	14.4847333289
+UniRef50_UPI0002D3715C: hypothetical protein|unclassified	14.4847333289
+UniRef50_Q1GKH2: Two component transcriptional regulator, winged helix family	14.4809733638
+UniRef50_Q1GKH2: Two component transcriptional regulator, winged helix family|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.4809733638
+UniRef50_A7K6E8: Aconitase family (Aconitate hydratase)	14.4797640048
+UniRef50_A7K6E8: Aconitase family (Aconitate hydratase)|g__Escherichia.s__Escherichia_coli	8.1681689005
+UniRef50_A7K6E8: Aconitase family (Aconitate hydratase)|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3115951043
+UniRef50_A5UMD4	14.4743045733
+UniRef50_A5UMD4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.4743045733
+UniRef50_O87131: Chemotaxis protein methyltransferase 1	14.4712782381
+UniRef50_O87131: Chemotaxis protein methyltransferase 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.3571998566
+UniRef50_O87131: Chemotaxis protein methyltransferase 1|unclassified	0.1140783815
+UniRef50_L1K9W5	14.4678081014
+UniRef50_L1K9W5|unclassified	14.4678081014
+UniRef50_E8TAB0: Glutamine synthetase catalytic region	14.4631576708
+UniRef50_E8TAB0: Glutamine synthetase catalytic region|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.4631576708
+UniRef50_A8YTE6: Phosphate ABC transporter, permease protein	14.4600486972
+UniRef50_A8YTE6: Phosphate ABC transporter, permease protein|g__Streptococcus.s__Streptococcus_agalactiae	14.4600486972
+UniRef50_P39393	14.4592260415
+UniRef50_P39393|g__Escherichia.s__Escherichia_coli	14.4592260415
+UniRef50_Q3J5Z1: Phage portal protein, HK97 family	14.4589779685
+UniRef50_Q3J5Z1: Phage portal protein, HK97 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.0560558829
+UniRef50_Q3J5Z1: Phage portal protein, HK97 family|unclassified	0.4029220856
+UniRef50_Q00751: Multiple sugar-binding transport system permease protein MsmG	14.4576124302
+UniRef50_Q00751: Multiple sugar-binding transport system permease protein MsmG|g__Streptococcus.s__Streptococcus_mutans	14.4576124302
+UniRef50_B2TS08: PHP domain protein	14.4545288440
+UniRef50_B2TS08: PHP domain protein|g__Clostridium.s__Clostridium_beijerinckii	14.4545288440
+UniRef50_F0LFC9: Spermidine/putrescine ABC transporter inner membrane protein	14.4541658749
+UniRef50_F0LFC9: Spermidine/putrescine ABC transporter inner membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.4541658749
+UniRef50_D3E1A1: UPF0254 protein mru_0533	14.4486336893
+UniRef50_D3E1A1: UPF0254 protein mru_0533|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.4486336893
+UniRef50_V6PZX8: Fimbrial usher family protein	14.4436485992
+UniRef50_V6PZX8: Fimbrial usher family protein|unclassified	14.4436485992
+UniRef50_G5Q5Z8: Outer membrane protein NlpB	14.4326174990
+UniRef50_G5Q5Z8: Outer membrane protein NlpB|g__Escherichia.s__Escherichia_coli	14.4326174990
+UniRef50_Q4UYN4: NAD/NADP-dependent betaine aldehyde dehydrogenase	14.4322987671
+UniRef50_Q4UYN4: NAD/NADP-dependent betaine aldehyde dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.3337473532
+UniRef50_Q4UYN4: NAD/NADP-dependent betaine aldehyde dehydrogenase|unclassified	0.0985514139
+UniRef50_P32709: Protein NrfD	14.4273345753
+UniRef50_P32709: Protein NrfD|g__Escherichia.s__Escherichia_coli	14.4273345753
+UniRef50_E1HL74: Transcriptional regulatory protein, C-terminal domain protein	14.4233566027
+UniRef50_E1HL74: Transcriptional regulatory protein, C-terminal domain protein|g__Escherichia.s__Escherichia_coli	14.4233566027
+UniRef50_R7PXY9	14.4203717302
+UniRef50_R7PXY9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.4203717302
+UniRef50_B8EKL8: Transcriptional regulator, HxlR family	14.4154991403
+UniRef50_B8EKL8: Transcriptional regulator, HxlR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.4154991403
+UniRef50_B9KRJ7	14.4051130777
+UniRef50_B9KRJ7|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.4051130777
+UniRef50_P43899: Oxygen-independent coproporphyrinogen-III oxidase-like protein HI_0463	14.4027184022
+UniRef50_P43899: Oxygen-independent coproporphyrinogen-III oxidase-like protein HI_0463|g__Escherichia.s__Escherichia_coli	14.1777171720
+UniRef50_P43899: Oxygen-independent coproporphyrinogen-III oxidase-like protein HI_0463|unclassified	0.2250012302
+UniRef50_X2N374	14.4022868316
+UniRef50_X2N374|g__Escherichia.s__Escherichia_coli	14.4022868316
+UniRef50_D4ZAF4: Iron (Chelated) ABC transporter, permease protein	14.4013000600
+UniRef50_D4ZAF4: Iron (Chelated) ABC transporter, permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.4013000600
+UniRef50_P65765: FKBP-type peptidyl-prolyl cis-trans isomerase FkpA	14.3998350606
+UniRef50_P65765: FKBP-type peptidyl-prolyl cis-trans isomerase FkpA|g__Escherichia.s__Escherichia_coli	14.3998350606
+UniRef50_UPI000380AA73: hypothetical protein	14.3978795205
+UniRef50_UPI000380AA73: hypothetical protein|unclassified	14.3978795205
+UniRef50_Q9RZ67	14.3907423185
+UniRef50_Q9RZ67|g__Deinococcus.s__Deinococcus_radiodurans	9.9920783523
+UniRef50_Q9RZ67|unclassified	4.3986639662
+UniRef50_W1DFX7: Aspartokinase	14.3903268565
+UniRef50_W1DFX7: Aspartokinase|g__Escherichia.s__Escherichia_coli	14.3903268565
+UniRef50_UPI0003A85B76: 30S ribosomal protein S6	14.3873428848
+UniRef50_UPI0003A85B76: 30S ribosomal protein S6|unclassified	14.3873428848
+UniRef50_B5F769: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical	14.3859698834
+UniRef50_B5F769: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical|g__Escherichia.s__Escherichia_coli	14.3237792339
+UniRef50_B5F769: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical|unclassified	0.0621906495
+UniRef50_P0AEQ5: Glutamine-binding periplasmic protein	14.3840721609
+UniRef50_P0AEQ5: Glutamine-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	14.3840721609
+UniRef50_I0TMR6: Gram-positive signal peptide protein, YSIRK family	14.3816676972
+UniRef50_I0TMR6: Gram-positive signal peptide protein, YSIRK family|g__Staphylococcus.s__Staphylococcus_epidermidis	14.3816676972
+UniRef50_E3I2H2: NADH ubiquinone oxidoreductase 20 kDa subunit	14.3799473609
+UniRef50_E3I2H2: NADH ubiquinone oxidoreductase 20 kDa subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.3799473609
+UniRef50_T1YBI3: Extracellular matrix binding protein	14.3792811770
+UniRef50_T1YBI3: Extracellular matrix binding protein|g__Staphylococcus.s__Staphylococcus_aureus	14.3792811770
+UniRef50_P29564: Uroporphyrinogen-III C-methyltransferase	14.3765814868
+UniRef50_P29564: Uroporphyrinogen-III C-methyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.3234596616
+UniRef50_P29564: Uroporphyrinogen-III C-methyltransferase|unclassified	0.0531218252
+UniRef50_U4TYH6	14.3731261901
+UniRef50_U4TYH6|g__Escherichia.s__Escherichia_coli	14.3731261901
+UniRef50_Q5WIY8: UPF0061 protein ABC1129	14.3671852574
+UniRef50_Q5WIY8: UPF0061 protein ABC1129|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.3671852574
+UniRef50_R7PXC0	14.3654238046
+UniRef50_R7PXC0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.3654238046
+UniRef50_UPI000329B94F	14.3653929556
+UniRef50_UPI000329B94F|g__Escherichia.s__Escherichia_coli	14.0589752434
+UniRef50_UPI000329B94F|unclassified	0.3064177123
+UniRef50_A3PIA6: Extensin family protein	14.3615648692
+UniRef50_A3PIA6: Extensin family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.3615648692
+UniRef50_U5NRG6	14.3589743590
+UniRef50_U5NRG6|unclassified	14.3589743590
+UniRef50_A1UTL7	14.3523710584
+UniRef50_A1UTL7|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.3523710584
+UniRef50_A4Y017: Transcriptional regulator, TetR family	14.3503208093
+UniRef50_A4Y017: Transcriptional regulator, TetR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.3503208093
+UniRef50_P76655: Putative outer membrane usher protein YqiG	14.3469265796
+UniRef50_P76655: Putative outer membrane usher protein YqiG|g__Escherichia.s__Escherichia_coli	14.3469265796
+UniRef50_A5UKH5	14.3440651324
+UniRef50_A5UKH5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.3440651324
+UniRef50_N8TNI2	14.3386980221
+UniRef50_N8TNI2|g__Acinetobacter.s__Acinetobacter_baumannii	14.3386980221
+UniRef50_G0LSM3: Phage protein	14.3382476483
+UniRef50_G0LSM3: Phage protein|unclassified	14.3382476483
+UniRef50_B9KWH7: Succinate dehydrogenase membrane anchor	14.3281579452
+UniRef50_B9KWH7: Succinate dehydrogenase membrane anchor|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.3281579452
+UniRef50_N5ZPN2	14.3254949153
+UniRef50_N5ZPN2|g__Staphylococcus.s__Staphylococcus_aureus	9.5238095238
+UniRef50_N5ZPN2|unclassified	4.8016853915
+UniRef50_P39328: Inner membrane ABC transporter permease protein YtfT	14.3212351287
+UniRef50_P39328: Inner membrane ABC transporter permease protein YtfT|g__Escherichia.s__Escherichia_coli	14.3212351287
+UniRef50_P0A2J6: Peptide transport system permease protein SapC	14.3190208352
+UniRef50_P0A2J6: Peptide transport system permease protein SapC|g__Escherichia.s__Escherichia_coli	14.3190208352
+UniRef50_A5ULM3: Precorrin-6X reductase, CbiJ	14.3186216788
+UniRef50_A5ULM3: Precorrin-6X reductase, CbiJ|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.3186216788
+UniRef50_B0KQI9: Mammalian cell entry related domain protein	14.3182642018
+UniRef50_B0KQI9: Mammalian cell entry related domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.3182642018
+UniRef50_Q16C79: Hydrolase, putative	14.3160446243
+UniRef50_Q16C79: Hydrolase, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.3160446243
+UniRef50_B7LNV2: Alkanesulfonate monooxygenase	14.3151058877
+UniRef50_B7LNV2: Alkanesulfonate monooxygenase|g__Escherichia.s__Escherichia_coli	13.8359008749
+UniRef50_B7LNV2: Alkanesulfonate monooxygenase|unclassified	0.4792050128
+UniRef50_P07018: Methyl-accepting chemotaxis protein IV	14.3093860364
+UniRef50_P07018: Methyl-accepting chemotaxis protein IV|g__Escherichia.s__Escherichia_coli	14.3093860364
+UniRef50_E3YZQ1	14.3083107726
+UniRef50_E3YZQ1|unclassified	14.3083107726
+UniRef50_Q034T8: Holo-[acyl-carrier-protein] synthase	14.3076931669
+UniRef50_Q034T8: Holo-[acyl-carrier-protein] synthase|g__Streptococcus.s__Streptococcus_mutans	14.0378359241
+UniRef50_Q034T8: Holo-[acyl-carrier-protein] synthase|unclassified	0.2698572427
+UniRef50_S2RJY1: Inorganic pyrophosphatase/exopolyphosphatase	14.2997197863
+UniRef50_S2RJY1: Inorganic pyrophosphatase/exopolyphosphatase|unclassified	14.2997197863
+UniRef50_M4WXK7	14.2968912577
+UniRef50_M4WXK7|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.6664478838
+UniRef50_M4WXK7|unclassified	0.6304433739
+UniRef50_B9AH82	14.2960836051
+UniRef50_B9AH82|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.6793013290
+UniRef50_B9AH82|unclassified	1.6167822761
+UniRef50_B9KUZ9	14.2952515849
+UniRef50_B9KUZ9|unclassified	8.0536028411
+UniRef50_B9KUZ9|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.2416487438
+UniRef50_P76393	14.2949998600
+UniRef50_P76393|g__Escherichia.s__Escherichia_coli	14.2949998600
+UniRef50_Q4ZMZ5	14.2933618601
+UniRef50_Q4ZMZ5|unclassified	14.2933618601
+UniRef50_A0A059DN56	14.2857142857
+UniRef50_A0A059DN56|unclassified	14.2857142857
+UniRef50_A3M5M9: Aldehyde dehydrogenase	14.2857142857
+UniRef50_A3M5M9: Aldehyde dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	14.2857142857
+UniRef50_C6DEI9: UPF0352 protein PC1_1633	14.2857142857
+UniRef50_C6DEI9: UPF0352 protein PC1_1633|g__Escherichia.s__Escherichia_coli	14.2857142857
+UniRef50_F9YXS1	14.2857142857
+UniRef50_F9YXS1|g__Propionibacterium.s__Propionibacterium_acnes	14.2857142857
+UniRef50_Q2YYD2	14.2857142857
+UniRef50_Q2YYD2|g__Staphylococcus.s__Staphylococcus_aureus	14.2857142857
+UniRef50_V5SXS2	14.2857142857
+UniRef50_V5SXS2|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.2857142857
+UniRef50_X5JZ60: Phosphotyrosine protein phosphatase, low molecular weight	14.2857142857
+UniRef50_X5JZ60: Phosphotyrosine protein phosphatase, low molecular weight|g__Streptococcus.s__Streptococcus_agalactiae	14.2857142857
+UniRef50_Q8ZQU2: Succinate dehydrogenase iron-sulfur subunit	14.2803843779
+UniRef50_Q8ZQU2: Succinate dehydrogenase iron-sulfur subunit|g__Escherichia.s__Escherichia_coli	14.1540478865
+UniRef50_Q8ZQU2: Succinate dehydrogenase iron-sulfur subunit|unclassified	0.1263364914
+UniRef50_Q8XU90: Uroporphyrinogen decarboxylase	14.2790006135
+UniRef50_Q8XU90: Uroporphyrinogen decarboxylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2015104613
+UniRef50_Q8XU90: Uroporphyrinogen decarboxylase|g__Neisseria.s__Neisseria_meningitidis	4.9441945381
+UniRef50_Q8XU90: Uroporphyrinogen decarboxylase|g__Acinetobacter.s__Acinetobacter_baumannii	3.0888491354
+UniRef50_Q8XU90: Uroporphyrinogen decarboxylase|unclassified	0.0444464788
+UniRef50_B8DW19: 30S ribosomal protein S3	14.2751389776
+UniRef50_B8DW19: 30S ribosomal protein S3|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.3522967550
+UniRef50_B8DW19: 30S ribosomal protein S3|g__Propionibacterium.s__Propionibacterium_acnes	4.9228422226
+UniRef50_Q2YU28	14.2712550607
+UniRef50_Q2YU28|g__Staphylococcus.s__Staphylococcus_aureus	14.2712550607
+UniRef50_A0A023Y271: Carbon-nitrogen hydrolase	14.2705231867
+UniRef50_A0A023Y271: Carbon-nitrogen hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.2705231867
+UniRef50_P52139	14.2689452479
+UniRef50_P52139|g__Escherichia.s__Escherichia_coli	13.3708495212
+UniRef50_P52139|unclassified	0.8980957267
+UniRef50_Q2NI75: ComE	14.2644735836
+UniRef50_Q2NI75: ComE|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.2644735836
+UniRef50_Q9JXP4: Probable aromatic acid decarboxylase	14.2643359761
+UniRef50_Q9JXP4: Probable aromatic acid decarboxylase|g__Neisseria.s__Neisseria_meningitidis	14.2643359761
+UniRef50_C5BEC5: Fimbrial usher family protein	14.2593395237
+UniRef50_C5BEC5: Fimbrial usher family protein|g__Escherichia.s__Escherichia_coli	14.2593395237
+UniRef50_Q3HKF1: Transcriptional regulator, AraC family	14.2570804249
+UniRef50_Q3HKF1: Transcriptional regulator, AraC family|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.2570804249
+UniRef50_A6V2V4: 3-isopropylmalate dehydratase small subunit	14.2535325498
+UniRef50_A6V2V4: 3-isopropylmalate dehydratase small subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.5980109921
+UniRef50_A6V2V4: 3-isopropylmalate dehydratase small subunit|unclassified	0.6555215576
+UniRef50_T2EAB8: Intracellular protease, PfpI family protein	14.2483660131
+UniRef50_T2EAB8: Intracellular protease, PfpI family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.2483660131
+UniRef50_A5ULQ5: 2-oxoglutarate ferredoxin oxidoreductase, delta subunit, KorD	14.2477551768
+UniRef50_A5ULQ5: 2-oxoglutarate ferredoxin oxidoreductase, delta subunit, KorD|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.2477551768
+UniRef50_Q3IVQ9	14.2459902192
+UniRef50_Q3IVQ9|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.4140152232
+UniRef50_Q3IVQ9|unclassified	1.8319749960
+UniRef50_A5UJD8	14.2455482662
+UniRef50_A5UJD8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.2455482662
+UniRef50_Q5H2M9: Methylated-DNA--protein-cysteine methyltransferase	14.2373556352
+UniRef50_Q5H2M9: Methylated-DNA--protein-cysteine methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.2373556352
+UniRef50_S2VYA1	14.2348754448
+UniRef50_S2VYA1|unclassified	14.2348754448
+UniRef50_E0XV99	14.2332949732
+UniRef50_E0XV99|unclassified	14.2332949732
+UniRef50_P55255: Glucose-1-phosphate thymidylyltransferase	14.2290704274
+UniRef50_P55255: Glucose-1-phosphate thymidylyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.6665285647
+UniRef50_P55255: Glucose-1-phosphate thymidylyltransferase|unclassified	2.5625418628
+UniRef50_A5UNX4	14.2287961671
+UniRef50_A5UNX4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.2287961671
+UniRef50_P77400: Inner membrane transport protein YbaT	14.2235554969
+UniRef50_P77400: Inner membrane transport protein YbaT|g__Escherichia.s__Escherichia_coli	14.2235554969
+UniRef50_J9UQD4	14.2206473612
+UniRef50_J9UQD4|g__Staphylococcus.s__Staphylococcus_aureus	14.2206473612
+UniRef50_Q46786	14.2196575241
+UniRef50_Q46786|g__Escherichia.s__Escherichia_coli	14.2196575241
+UniRef50_Q9HU78: Histidine utilization repressor	14.2195332656
+UniRef50_Q9HU78: Histidine utilization repressor|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.7481165127
+UniRef50_Q9HU78: Histidine utilization repressor|g__Acinetobacter.s__Acinetobacter_baumannii	4.8127047959
+UniRef50_Q9HU78: Histidine utilization repressor|unclassified	0.6587119569
+UniRef50_V8FTC7	14.2153603384
+UniRef50_V8FTC7|g__Clostridium.s__Clostridium_beijerinckii	14.2153603384
+UniRef50_B5ZZ54: Hydrolase of the alpha/beta superfamily-like protein	14.2133193007
+UniRef50_B5ZZ54: Hydrolase of the alpha/beta superfamily-like protein|g__Escherichia.s__Escherichia_coli	14.2133193007
+UniRef50_L1K8F2: Parallel beta-helix repeat protein	14.2105783082
+UniRef50_L1K8F2: Parallel beta-helix repeat protein|unclassified	14.2105783082
+UniRef50_A5UK97: Predicted permease	14.2058371458
+UniRef50_A5UK97: Predicted permease|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.2058371458
+UniRef50_U5US72	14.1970022916
+UniRef50_U5US72|g__Staphylococcus.s__Staphylococcus_epidermidis	14.1970022916
+UniRef50_Q9PGZ6: Deoxyuridine 5'-triphosphate nucleotidohydrolase	14.1964389338
+UniRef50_Q9PGZ6: Deoxyuridine 5'-triphosphate nucleotidohydrolase|g__Escherichia.s__Escherichia_coli	14.1964389338
+UniRef50_Q47142: Probable 3-phenylpropionic acid transporter	14.1926577530
+UniRef50_Q47142: Probable 3-phenylpropionic acid transporter|g__Escherichia.s__Escherichia_coli	14.1926577530
+UniRef50_R7PWF8	14.1921271945
+UniRef50_R7PWF8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.1921271945
+UniRef50_B9KUH1	14.1876556418
+UniRef50_B9KUH1|unclassified	14.1876556418
+UniRef50_Q9HTN0	14.1853793061
+UniRef50_Q9HTN0|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.1853793061
+UniRef50_B9KX62	14.1790599348
+UniRef50_B9KX62|unclassified	14.1790599348
+UniRef50_P76254: Putative dioxygenase subunit beta YeaX	14.1770844663
+UniRef50_P76254: Putative dioxygenase subunit beta YeaX|g__Escherichia.s__Escherichia_coli	14.1770844663
+UniRef50_H4BLQ2: Pyrimidine-specific ribonucleoside hydrolase rihA	14.1752899714
+UniRef50_H4BLQ2: Pyrimidine-specific ribonucleoside hydrolase rihA|g__Staphylococcus.s__Staphylococcus_aureus	14.1752899714
+UniRef50_Q3IV60	14.1746756484
+UniRef50_Q3IV60|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.1746756484
+UniRef50_A3D954: Methyltransferase type 11	14.1696327351
+UniRef50_A3D954: Methyltransferase type 11|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.1696327351
+UniRef50_J3LNJ3	14.1688535291
+UniRef50_J3LNJ3|unclassified	14.1688535291
+UniRef50_Q3J682: 2-dehydropantoate 2-reductase	14.1662565840
+UniRef50_Q3J682: 2-dehydropantoate 2-reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.1662565840
+UniRef50_A4JN97	14.1660804729
+UniRef50_A4JN97|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.1660804729
+UniRef50_P45053: Oligopeptide transport system permease protein OppC	14.1550059719
+UniRef50_P45053: Oligopeptide transport system permease protein OppC|g__Escherichia.s__Escherichia_coli	14.1550059719
+UniRef50_P17869: RNA polymerase sigma-H factor	14.1530848659
+UniRef50_P17869: RNA polymerase sigma-H factor|g__Clostridium.s__Clostridium_beijerinckii	14.1530848659
+UniRef50_P33030	14.1485783548
+UniRef50_P33030|g__Escherichia.s__Escherichia_coli	14.1485783548
+UniRef50_P75693	14.1406704830
+UniRef50_P75693|g__Escherichia.s__Escherichia_coli	14.1406704830
+UniRef50_P26239: Magnesium-chelatase 38 kDa subunit	14.1390728608
+UniRef50_P26239: Magnesium-chelatase 38 kDa subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.1390728608
+UniRef50_Q5HR18	14.1373080397
+UniRef50_Q5HR18|g__Staphylococcus.s__Staphylococcus_epidermidis	14.1373080397
+UniRef50_A5UP75	14.1315019799
+UniRef50_A5UP75|unclassified	14.1315019799
+UniRef50_Q0BHU2: YheO domain protein	14.1313618181
+UniRef50_Q0BHU2: YheO domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.1313618181
+UniRef50_G2IM51: Major facilitator superfamily protein	14.1277244127
+UniRef50_G2IM51: Major facilitator superfamily protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.0823002685
+UniRef50_G2IM51: Major facilitator superfamily protein|unclassified	0.0454241442
+UniRef50_H5LJB5	14.1170417653
+UniRef50_H5LJB5|g__Escherichia.s__Escherichia_coli	14.1170417653
+UniRef50_A5UL35: DNA-binding protein Msm_0708	14.1163364367
+UniRef50_A5UL35: DNA-binding protein Msm_0708|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.1163364367
+UniRef50_Q8XZ83: Carbamoyl-phosphate synthase large chain	14.1103578867
+UniRef50_Q8XZ83: Carbamoyl-phosphate synthase large chain|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.4494868839
+UniRef50_Q8XZ83: Carbamoyl-phosphate synthase large chain|g__Escherichia.s__Escherichia_coli	4.4544459233
+UniRef50_Q8XZ83: Carbamoyl-phosphate synthase large chain|unclassified	0.2064250795
+UniRef50_F5LXV2	14.1096979332
+UniRef50_F5LXV2|unclassified	14.1096979332
+UniRef50_P46144	14.1045418168
+UniRef50_P46144|g__Escherichia.s__Escherichia_coli	14.1045418168
+UniRef50_N2V265: Glycosyltransferase like 2 family protein	14.1003546323
+UniRef50_N2V265: Glycosyltransferase like 2 family protein|g__Escherichia.s__Escherichia_coli	14.1003546323
+UniRef50_D4DXV5: Type III restriction enzyme, res subunit	14.0996322408
+UniRef50_D4DXV5: Type III restriction enzyme, res subunit|g__Escherichia.s__Escherichia_coli	14.0996322408
+UniRef50_Q1C7K2: Electron transport complex subunit B	14.0973011969
+UniRef50_Q1C7K2: Electron transport complex subunit B|g__Escherichia.s__Escherichia_coli	14.0973011969
+UniRef50_X6EZK5	14.0954385541
+UniRef50_X6EZK5|unclassified	14.0954385541
+UniRef50_P0ABT9	14.0952592097
+UniRef50_P0ABT9|g__Escherichia.s__Escherichia_coli	14.0952592097
+UniRef50_P24735: Beta-lactamase	14.0933885334
+UniRef50_P24735: Beta-lactamase|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.6998977575
+UniRef50_P24735: Beta-lactamase|unclassified	0.3934907760
+UniRef50_Q0VTH3: Alkane 1-monooxygenase 2	14.0925878611
+UniRef50_Q0VTH3: Alkane 1-monooxygenase 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.0925878611
+UniRef50_Q8D2I8: Cardiolipin synthase A	14.0922452411
+UniRef50_Q8D2I8: Cardiolipin synthase A|g__Escherichia.s__Escherichia_coli	14.0922452411
+UniRef50_UPI0003B4EBBD: nitrogen regulatory protein P-II 1	14.0881526313
+UniRef50_UPI0003B4EBBD: nitrogen regulatory protein P-II 1|unclassified	14.0881526313
+UniRef50_A0A024PFQ5: Ferredoxin	14.0851795264
+UniRef50_A0A024PFQ5: Ferredoxin|g__Staphylococcus.s__Staphylococcus_aureus	14.0851795264
+UniRef50_A4WXS2	14.0849777774
+UniRef50_A4WXS2|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.0849777774
+UniRef50_A4VV02: Protease, putative	14.0845070423
+UniRef50_A4VV02: Protease, putative|g__Streptococcus.s__Streptococcus_agalactiae	14.0845070423
+UniRef50_B1LJI7	14.0845070423
+UniRef50_B1LJI7|g__Escherichia.s__Escherichia_coli	14.0845070423
+UniRef50_E2XMG2: Baseplate assembly protein V	14.0845070423
+UniRef50_E2XMG2: Baseplate assembly protein V|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.0845070423
+UniRef50_Q8CS15	14.0845070423
+UniRef50_Q8CS15|unclassified	14.0845070423
+UniRef50_W1VLZ5	14.0845070423
+UniRef50_W1VLZ5|unclassified	14.0845070423
+UniRef50_W1XX44	14.0845070423
+UniRef50_W1XX44|unclassified	14.0845070423
+UniRef50_Q57990	14.0827811691
+UniRef50_Q57990|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.0827811691
+UniRef50_M4WY95	14.0790204180
+UniRef50_M4WY95|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.0790204180
+UniRef50_I0C1R4	14.0774313091
+UniRef50_I0C1R4|g__Staphylococcus.s__Staphylococcus_aureus	14.0774313091
+UniRef50_Q1QSI1: Guanylate kinase	14.0758247320
+UniRef50_Q1QSI1: Guanylate kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	14.0758247320
+UniRef50_D6SDZ9	14.0752510986
+UniRef50_D6SDZ9|g__Staphylococcus.s__Staphylococcus_aureus	14.0752510986
+UniRef50_P67090: Universal stress protein D	14.0735121109
+UniRef50_P67090: Universal stress protein D|g__Escherichia.s__Escherichia_coli	14.0735121109
+UniRef50_A5UNT3	14.0606199153
+UniRef50_A5UNT3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.4339622642
+UniRef50_A5UNT3|unclassified	4.6266576511
+UniRef50_M4Z8L2	14.0540449292
+UniRef50_M4Z8L2|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.8641894934
+UniRef50_M4Z8L2|unclassified	0.1898554359
+UniRef50_A5HZF5: Sensor histidine kinase	14.0529799393
+UniRef50_A5HZF5: Sensor histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	14.0529799393
+UniRef50_D3E1P1: HEAT repeat-containing protein	14.0522387076
+UniRef50_D3E1P1: HEAT repeat-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.0522387076
+UniRef50_V8EWY0	14.0515311553
+UniRef50_V8EWY0|unclassified	14.0515311553
+UniRef50_UPI00035CA2F5: hypothetical protein	14.0472410641
+UniRef50_UPI00035CA2F5: hypothetical protein|g__Streptococcus.s__Streptococcus_mutans	14.0472410641
+UniRef50_Q83QI5: GTPase Era	14.0458256730
+UniRef50_Q83QI5: GTPase Era|g__Escherichia.s__Escherichia_coli	14.0458256730
+UniRef50_A7FFQ7: Potassium-transporting ATPase C chain	14.0443701847
+UniRef50_A7FFQ7: Potassium-transporting ATPase C chain|g__Escherichia.s__Escherichia_coli	14.0443701847
+UniRef50_R7PWU8	14.0421422379
+UniRef50_R7PWU8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.0421422379
+UniRef50_P18642: Protein ImpB	14.0405442877
+UniRef50_P18642: Protein ImpB|g__Escherichia.s__Escherichia_coli	14.0405442877
+UniRef50_P76555: Ethanolamine utilization protein EutQ	14.0398657976
+UniRef50_P76555: Ethanolamine utilization protein EutQ|g__Escherichia.s__Escherichia_coli	14.0398657976
+UniRef50_E5CIE9: Copper-exporting ATPase	14.0366430260
+UniRef50_E5CIE9: Copper-exporting ATPase|g__Staphylococcus.s__Staphylococcus_epidermidis	14.0366430260
+UniRef50_A5UM14: Proteasome subunit beta	14.0363147425
+UniRef50_A5UM14: Proteasome subunit beta|g__Methanobrevibacter.s__Methanobrevibacter_smithii	14.0363147425
+UniRef50_D6DNI5: Cation/multidrug efflux pump	14.0305628736
+UniRef50_D6DNI5: Cation/multidrug efflux pump|g__Escherichia.s__Escherichia_coli	14.0305628736
+UniRef50_X9G8K3: Surface protein G	14.0230414654
+UniRef50_X9G8K3: Surface protein G|g__Staphylococcus.s__Staphylococcus_epidermidis	14.0230414654
+UniRef50_A4WVU4: Surface antigen (D15)	14.0229030611
+UniRef50_A4WVU4: Surface antigen (D15)|g__Rhodobacter.s__Rhodobacter_sphaeroides	14.0229030611
+UniRef50_Q3IV63	14.0084666345
+UniRef50_Q3IV63|unclassified	7.7581032413
+UniRef50_Q3IV63|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.2503633932
+UniRef50_I0DYC2: Formate dehydrogenase, nitrate-inducible, major subunit	14.0068093708
+UniRef50_I0DYC2: Formate dehydrogenase, nitrate-inducible, major subunit|g__Escherichia.s__Escherichia_coli	14.0068093708
+UniRef50_U5UPR0: Thiamine biosynthesis protein ThiS	14.0031335684
+UniRef50_U5UPR0: Thiamine biosynthesis protein ThiS|g__Staphylococcus.s__Staphylococcus_epidermidis	14.0031335684
+UniRef50_A7GH10: Hydroxylamine reductase	13.9988288475
+UniRef50_A7GH10: Hydroxylamine reductase|g__Clostridium.s__Clostridium_beijerinckii	13.7128279634
+UniRef50_A7GH10: Hydroxylamine reductase|unclassified	0.2860008841
+UniRef50_J9YRQ9: Large conductance mechanosensitive channel protein	13.9888421385
+UniRef50_J9YRQ9: Large conductance mechanosensitive channel protein|g__Streptococcus.s__Streptococcus_mutans	13.9888421385
+UniRef50_W8RCJ6: Flagellar basal body protein FliL	13.9887503057
+UniRef50_W8RCJ6: Flagellar basal body protein FliL|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.9887503057
+UniRef50_A6W1Y7	13.9875515074
+UniRef50_A6W1Y7|unclassified	13.9875515074
+UniRef50_W0AV03	13.9860139860
+UniRef50_W0AV03|unclassified	13.9860139860
+UniRef50_A3PS51	13.9841936194
+UniRef50_A3PS51|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.0936245637
+UniRef50_A3PS51|unclassified	1.8905690557
+UniRef50_P46857	13.9829293918
+UniRef50_P46857|g__Escherichia.s__Escherichia_coli	13.5135135135
+UniRef50_P46857|unclassified	0.4694158783
+UniRef50_Q2RVQ3	13.9770888888
+UniRef50_Q2RVQ3|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.8259749799
+UniRef50_Q2RVQ3|unclassified	1.1511139090
+UniRef50_P66202: 50S ribosomal protein L31 type B	13.9703706451
+UniRef50_P66202: 50S ribosomal protein L31 type B|g__Staphylococcus.s__Staphylococcus_epidermidis	9.7509613624
+UniRef50_P66202: 50S ribosomal protein L31 type B|g__Staphylococcus.s__Staphylococcus_aureus	4.2194092827
+UniRef50_L2Y6Z3: Inner membrane ABC transporter ATP-binding protein YddA	13.9682661181
+UniRef50_L2Y6Z3: Inner membrane ABC transporter ATP-binding protein YddA|g__Escherichia.s__Escherichia_coli	13.9682661181
+UniRef50_A5UJM2: UPF0218 protein Msm_0195	13.9675318872
+UniRef50_A5UJM2: UPF0218 protein Msm_0195|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.9675318872
+UniRef50_A1B894: Protein HflC	13.9667380571
+UniRef50_A1B894: Protein HflC|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.9667380571
+UniRef50_UPI00034B0709: hypothetical protein	13.9665002147
+UniRef50_UPI00034B0709: hypothetical protein|unclassified	13.9665002147
+UniRef50_A4VQV4	13.9636693834
+UniRef50_A4VQV4|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.9636693834
+UniRef50_T2END3	13.9596201534
+UniRef50_T2END3|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.9596201534
+UniRef50_P23840: DNA-damage-inducible protein D	13.9502750189
+UniRef50_P23840: DNA-damage-inducible protein D|g__Escherichia.s__Escherichia_coli	13.9502750189
+UniRef50_L8NJL2: Cytochrome B561	13.9495079161
+UniRef50_L8NJL2: Cytochrome B561|g__Acinetobacter.s__Acinetobacter_baumannii	13.9495079161
+UniRef50_R7PU85	13.9489802753
+UniRef50_R7PU85|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.9489802753
+UniRef50_Q69TS3	13.9475157903
+UniRef50_Q69TS3|unclassified	13.9475157903
+UniRef50_A0A024L2J6: Lysozyme	13.9469393143
+UniRef50_A0A024L2J6: Lysozyme|g__Escherichia.s__Escherichia_coli	13.9469393143
+UniRef50_Q06553: HTH-type transcriptional regulator PrtR	13.9422267995
+UniRef50_Q06553: HTH-type transcriptional regulator PrtR|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.9422267995
+UniRef50_S7NJS1	13.9397099426
+UniRef50_S7NJS1|unclassified	13.9397099426
+UniRef50_Q6GH07: Protein msa	13.9372747452
+UniRef50_Q6GH07: Protein msa|g__Staphylococcus.s__Staphylococcus_aureus	13.9372747452
+UniRef50_P64555: 7-carboxy-7-deazaguanine synthase	13.9368734683
+UniRef50_P64555: 7-carboxy-7-deazaguanine synthase|g__Escherichia.s__Escherichia_coli	13.9368734683
+UniRef50_P31471	13.9366759422
+UniRef50_P31471|g__Escherichia.s__Escherichia_coli	13.9366759422
+UniRef50_A0A038FT71	13.9351311026
+UniRef50_A0A038FT71|unclassified	13.9351311026
+UniRef50_UPI00038258E2: hypothetical protein	13.9339741158
+UniRef50_UPI00038258E2: hypothetical protein|unclassified	13.9339741158
+UniRef50_B8IL91: Endoribonuclease L-PSP	13.9338456993
+UniRef50_B8IL91: Endoribonuclease L-PSP|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.7168075441
+UniRef50_B8IL91: Endoribonuclease L-PSP|unclassified	3.2170381551
+UniRef50_F6D1X2: Dihydroorotase	13.9284365334
+UniRef50_F6D1X2: Dihydroorotase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.9284365334
+UniRef50_A5UMR0: Thiamine monphosphate kinase, ThiL	13.9274362803
+UniRef50_A5UMR0: Thiamine monphosphate kinase, ThiL|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.9274362803
+UniRef50_E3GWV9: PP-loop domain protein	13.9274081112
+UniRef50_E3GWV9: PP-loop domain protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.9274081112
+UniRef50_I6D5L2: DNA mismatch repair endonuclease MutH	13.9117458427
+UniRef50_I6D5L2: DNA mismatch repair endonuclease MutH|g__Escherichia.s__Escherichia_coli	13.9117458427
+UniRef50_UPI0002BA3DF1: hypothetical protein	13.9025608506
+UniRef50_UPI0002BA3DF1: hypothetical protein|g__Escherichia.s__Escherichia_coli	11.9908363790
+UniRef50_UPI0002BA3DF1: hypothetical protein|unclassified	1.9117244716
+UniRef50_K0C9F8	13.9016272620
+UniRef50_K0C9F8|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.6180809951
+UniRef50_K0C9F8|unclassified	0.2835462669
+UniRef50_A3SUN2	13.8990461869
+UniRef50_A3SUN2|unclassified	13.8990461869
+UniRef50_H0DLY7: Surface protein G	13.8984899846
+UniRef50_H0DLY7: Surface protein G|g__Staphylococcus.s__Staphylococcus_aureus	7.1815621586
+UniRef50_H0DLY7: Surface protein G|g__Staphylococcus.s__Staphylococcus_epidermidis	6.7169278260
+UniRef50_R9SK57: Molybdate ABC transporter ATP-binding protein ModC	13.8982412535
+UniRef50_R9SK57: Molybdate ABC transporter ATP-binding protein ModC|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.8982412535
+UniRef50_M8VH72: Mechanosensitive ion channel family protein	13.8970193214
+UniRef50_M8VH72: Mechanosensitive ion channel family protein|g__Escherichia.s__Escherichia_coli	13.8970193214
+UniRef50_A5UNV1	13.8958717390
+UniRef50_A5UNV1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.8958717390
+UniRef50_A9BXI8: D-isomer specific 2-hydroxyacid dehydrogenase NAD-binding	13.8944236017
+UniRef50_A9BXI8: D-isomer specific 2-hydroxyacid dehydrogenase NAD-binding|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.8944236017
+UniRef50_B8H1P2: Portal protein	13.8932161178
+UniRef50_B8H1P2: Portal protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.8932161178
+UniRef50_UPI000374B6B2: hypothetical protein	13.8930932465
+UniRef50_UPI000374B6B2: hypothetical protein|unclassified	13.8930932465
+UniRef50_P61614: LexA repressor	13.8918189738
+UniRef50_P61614: LexA repressor|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.0348821834
+UniRef50_P61614: LexA repressor|unclassified	0.8569367904
+UniRef50_Q9X6A2	13.8910929893
+UniRef50_Q9X6A2|unclassified	13.8910929893
+UniRef50_A6M151: Putative cell wall binding repeat-containing protein	13.8888888889
+UniRef50_A6M151: Putative cell wall binding repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	13.8888888889
+UniRef50_E1IJ55	13.8888888889
+UniRef50_E1IJ55|g__Escherichia.s__Escherichia_coli	13.8888888889
+UniRef50_I0C1E5	13.8888888889
+UniRef50_I0C1E5|g__Staphylococcus.s__Staphylococcus_aureus	13.8888888889
+UniRef50_M2HXY4	13.8888888889
+UniRef50_M2HXY4|g__Streptococcus.s__Streptococcus_mutans	13.8888888889
+UniRef50_N4N922: Aminotransferase class I and II family protein (Fragment)	13.8888888889
+UniRef50_N4N922: Aminotransferase class I and II family protein (Fragment)|g__Escherichia.s__Escherichia_coli	13.8888888889
+UniRef50_W8SYA6: 2-keto-3-deoxygluconate permease	13.8888888889
+UniRef50_W8SYA6: 2-keto-3-deoxygluconate permease|g__Escherichia.s__Escherichia_coli	13.8888888889
+UniRef50_A3P3G4: Monooxygenase, luciferase family	13.8847811001
+UniRef50_A3P3G4: Monooxygenase, luciferase family|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.4166800265
+UniRef50_A3P3G4: Monooxygenase, luciferase family|g__Acinetobacter.s__Acinetobacter_baumannii	4.4681010735
+UniRef50_B9KLF4	13.8751536500
+UniRef50_B9KLF4|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.7259877196
+UniRef50_B9KLF4|unclassified	0.1491659304
+UniRef50_UPI00034FC6C5: PREDICTED: protein argonaute 2-like, partial	13.8701391481
+UniRef50_UPI00034FC6C5: PREDICTED: protein argonaute 2-like, partial|unclassified	13.8701391481
+UniRef50_D2JDV7: Replication initiator protein	13.8687450564
+UniRef50_D2JDV7: Replication initiator protein|unclassified	13.8687450564
+UniRef50_K8E4H2: Transcription termination factor NusA	13.8667847137
+UniRef50_K8E4H2: Transcription termination factor NusA|g__Streptococcus.s__Streptococcus_agalactiae	13.8667847137
+UniRef50_Q9HW04: Arginine biosynthesis bifunctional protein ArgJ	13.8640367931
+UniRef50_Q9HW04: Arginine biosynthesis bifunctional protein ArgJ|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.6790753974
+UniRef50_Q9HW04: Arginine biosynthesis bifunctional protein ArgJ|unclassified	2.1849613957
+UniRef50_A7FBW8	13.8636932259
+UniRef50_A7FBW8|g__Acinetobacter.s__Acinetobacter_baumannii	13.8636932259
+UniRef50_D0UWA8	13.8595997552
+UniRef50_D0UWA8|unclassified	13.8595997552
+UniRef50_C6STR4	13.8583173531
+UniRef50_C6STR4|g__Streptococcus.s__Streptococcus_mutans	13.8583173531
+UniRef50_A4V9J4	13.8551962454
+UniRef50_A4V9J4|unclassified	13.8551962454
+UniRef50_A8YWB0: 50S ribosomal protein L33 1	13.8409961686
+UniRef50_A8YWB0: 50S ribosomal protein L33 1|g__Streptococcus.s__Streptococcus_mutans	13.8409961686
+UniRef50_O26347: Phosphoribosyl-AMP cyclohydrolase	13.8392637852
+UniRef50_O26347: Phosphoribosyl-AMP cyclohydrolase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.7038356586
+UniRef50_O26347: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.1354281266
+UniRef50_R9SMT5: Energy-converting hydrogenase B subunit A EhbA	13.8347938981
+UniRef50_R9SMT5: Energy-converting hydrogenase B subunit A EhbA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.8347938981
+UniRef50_Q9HYR9: ATP-dependent Clp protease proteolytic subunit 2	13.8292646877
+UniRef50_Q9HYR9: ATP-dependent Clp protease proteolytic subunit 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.8292646877
+UniRef50_K4PV50	13.8284880322
+UniRef50_K4PV50|g__Streptococcus.s__Streptococcus_agalactiae	13.8284880322
+UniRef50_C3SN52	13.8270340253
+UniRef50_C3SN52|g__Escherichia.s__Escherichia_coli	13.8270340253
+UniRef50_V5XTJ1	13.8255701422
+UniRef50_V5XTJ1|unclassified	13.8255701422
+UniRef50_U3SSA5	13.8238573021
+UniRef50_U3SSA5|g__Streptococcus.s__Streptococcus_mutans	13.8238573021
+UniRef50_P10367: Histidine biosynthesis bifunctional protein HisIE	13.7933641385
+UniRef50_P10367: Histidine biosynthesis bifunctional protein HisIE|g__Escherichia.s__Escherichia_coli	12.9265102924
+UniRef50_P10367: Histidine biosynthesis bifunctional protein HisIE|unclassified	0.8668538461
+UniRef50_R9SLM0: Chromosome partitioning ATPase ParA	13.7919463446
+UniRef50_R9SLM0: Chromosome partitioning ATPase ParA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.7919463446
+UniRef50_R9ZHE0: Type II secretion system protein	13.7873568624
+UniRef50_R9ZHE0: Type II secretion system protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.7873568624
+UniRef50_P30964: Heme exporter protein B	13.7854081599
+UniRef50_P30964: Heme exporter protein B|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.7854081599
+UniRef50_O59778: Biotin synthase	13.7802459327
+UniRef50_O59778: Biotin synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.5551243465
+UniRef50_O59778: Biotin synthase|unclassified	0.2251215862
+UniRef50_UPI000369CAA0: hypothetical protein	13.7797988149
+UniRef50_UPI000369CAA0: hypothetical protein|g__Escherichia.s__Escherichia_coli	13.7797988149
+UniRef50_D3E135: Voltage-gated chloride channel protein	13.7640984416
+UniRef50_D3E135: Voltage-gated chloride channel protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.7640984416
+UniRef50_A3PR56: HpcH/HpaI aldolase	13.7618345856
+UniRef50_A3PR56: HpcH/HpaI aldolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.7618345856
+UniRef50_D3E1I1	13.7586204590
+UniRef50_D3E1I1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.7586204590
+UniRef50_A5UKQ1	13.7570562225
+UniRef50_A5UKQ1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.7570562225
+UniRef50_B2U1N8: Radical SAM domain protein	13.7509299413
+UniRef50_B2U1N8: Radical SAM domain protein|g__Escherichia.s__Escherichia_coli	13.7509299413
+UniRef50_Q6LMV3: S-ribosylhomocysteine lyase	13.7406802317
+UniRef50_Q6LMV3: S-ribosylhomocysteine lyase|g__Escherichia.s__Escherichia_coli	13.6376392776
+UniRef50_Q6LMV3: S-ribosylhomocysteine lyase|unclassified	0.1030409541
+UniRef50_E6YGE5	13.7384688009
+UniRef50_E6YGE5|unclassified	13.7384688009
+UniRef50_P76221: TVP38/TMEM64 family inner membrane protein YdjZ	13.7376483329
+UniRef50_P76221: TVP38/TMEM64 family inner membrane protein YdjZ|g__Escherichia.s__Escherichia_coli	13.7376483329
+UniRef50_I6U0G1	13.7371916342
+UniRef50_I6U0G1|g__Streptococcus.s__Streptococcus_mutans	13.7371916342
+UniRef50_Q7AHT0: Protein FixC	13.7320998617
+UniRef50_Q7AHT0: Protein FixC|g__Escherichia.s__Escherichia_coli	13.7320998617
+UniRef50_Q9CM13: Magnesium and cobalt efflux protein CorC	13.7186276419
+UniRef50_Q9CM13: Magnesium and cobalt efflux protein CorC|g__Escherichia.s__Escherichia_coli	13.7186276419
+UniRef50_Q83QP2: Fructose-like permease IIC component	13.7173564498
+UniRef50_Q83QP2: Fructose-like permease IIC component|g__Escherichia.s__Escherichia_coli	13.7173564498
+UniRef50_B9KTH1: Transcriptional regulator, TetR family	13.7154908672
+UniRef50_B9KTH1: Transcriptional regulator, TetR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.7154908672
+UniRef50_R9SL44	13.7148588434
+UniRef50_R9SL44|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.7148588434
+UniRef50_Q38451: C repressor	13.7129272401
+UniRef50_Q38451: C repressor|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.7129272401
+UniRef50_F7X1V6: MFS-type transport protein	13.7119111030
+UniRef50_F7X1V6: MFS-type transport protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.7119111030
+UniRef50_A4WSY5: N-formylglutamate amidohydrolase	13.7095083951
+UniRef50_A4WSY5: N-formylglutamate amidohydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.7095083951
+UniRef50_Q5P6B9	13.7074557773
+UniRef50_Q5P6B9|unclassified	13.7074557773
+UniRef50_L6QSE5: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	13.7064484362
+UniRef50_L6QSE5: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|g__Escherichia.s__Escherichia_coli	13.7064484362
+UniRef50_P39351	13.7057825349
+UniRef50_P39351|g__Escherichia.s__Escherichia_coli	13.7057825349
+UniRef50_D6ZU16: Glycerate kinase	13.7030094995
+UniRef50_D6ZU16: Glycerate kinase|g__Clostridium.s__Clostridium_beijerinckii	13.7030094995
+UniRef50_D4ZAK4	13.6992905273
+UniRef50_D4ZAK4|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.6992905273
+UniRef50_C5N5L5	13.6986301370
+UniRef50_C5N5L5|g__Staphylococcus.s__Staphylococcus_aureus	13.6986301370
+UniRef50_H3UES3	13.6986301370
+UniRef50_H3UES3|unclassified	13.6986301370
+UniRef50_M2CJI2	13.6986301370
+UniRef50_M2CJI2|unclassified	13.6986301370
+UniRef50_Q57549: Probable thiol peroxidase	13.6986301370
+UniRef50_Q57549: Probable thiol peroxidase|g__Propionibacterium.s__Propionibacterium_acnes	13.6986301370
+UniRef50_Q8CS16	13.6986301370
+UniRef50_Q8CS16|unclassified	13.6986301370
+UniRef50_U5NRS4	13.6986301370
+UniRef50_U5NRS4|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.6986301370
+UniRef50_W1WE49: Gamma-glutamyl-gamma-aminobutyrate hydrolase Gamma-Glu-GABA hydrolase (Fragment)	13.6986301370
+UniRef50_W1WE49: Gamma-glutamyl-gamma-aminobutyrate hydrolase Gamma-Glu-GABA hydrolase (Fragment)|g__Escherichia.s__Escherichia_coli	13.6986301370
+UniRef50_Q46906	13.6965054650
+UniRef50_Q46906|g__Escherichia.s__Escherichia_coli	13.6965054650
+UniRef50_N2QIY6: RNA pseudouridylate synthase family protein	13.6812219103
+UniRef50_N2QIY6: RNA pseudouridylate synthase family protein|g__Escherichia.s__Escherichia_coli	13.6812219103
+UniRef50_P0AEH2: Regulator of sigma E protease	13.6801316092
+UniRef50_P0AEH2: Regulator of sigma E protease|g__Escherichia.s__Escherichia_coli	13.6270647488
+UniRef50_P0AEH2: Regulator of sigma E protease|unclassified	0.0530668604
+UniRef50_M1G0P3: Sulfatase family protein	13.6787186516
+UniRef50_M1G0P3: Sulfatase family protein|g__Escherichia.s__Escherichia_coli	13.6787186516
+UniRef50_Q9I747: Protein hcp1	13.6770873046
+UniRef50_Q9I747: Protein hcp1|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.6770873046
+UniRef50_Q0B6I4: Lipoprotein	13.6745242044
+UniRef50_Q0B6I4: Lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.6745242044
+UniRef50_G8LF66: Nitrate/nitrite response regulator protein narL	13.6731897115
+UniRef50_G8LF66: Nitrate/nitrite response regulator protein narL|g__Escherichia.s__Escherichia_coli	13.6731897115
+UniRef50_Q8CRS1	13.6658678425
+UniRef50_Q8CRS1|g__Staphylococcus.s__Staphylococcus_epidermidis	13.6658678425
+UniRef50_X5EDN1: Cys-tRNA(Pro)/Cys-tRNA(Cys) deacylase	13.6625811655
+UniRef50_X5EDN1: Cys-tRNA(Pro)/Cys-tRNA(Cys) deacylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.6625811655
+UniRef50_M2E542: Transposase	13.6622903563
+UniRef50_M2E542: Transposase|g__Streptococcus.s__Streptococcus_mutans	13.6622903563
+UniRef50_B7M371: Flagellar protein FliT	13.6604532164
+UniRef50_B7M371: Flagellar protein FliT|g__Escherichia.s__Escherichia_coli	13.6604532164
+UniRef50_Q3J0G0	13.6596855564
+UniRef50_Q3J0G0|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.6596855564
+UniRef50_UPI00022CA988: PREDICTED: hypothetical protein LOC100748976	13.6487165147
+UniRef50_UPI00022CA988: PREDICTED: hypothetical protein LOC100748976|g__Escherichia.s__Escherichia_coli	13.5364318414
+UniRef50_UPI00022CA988: PREDICTED: hypothetical protein LOC100748976|unclassified	0.1122846734
+UniRef50_A7Z9I5: Endonuclease V	13.6463946654
+UniRef50_A7Z9I5: Endonuclease V|g__Clostridium.s__Clostridium_beijerinckii	13.6463946654
+UniRef50_Q6A6N8: 50S ribosomal protein L5	13.6442819935
+UniRef50_Q6A6N8: 50S ribosomal protein L5|g__Propionibacterium.s__Propionibacterium_acnes	13.6442819935
+UniRef50_P07024: Protein UshA	13.6336297566
+UniRef50_P07024: Protein UshA|g__Escherichia.s__Escherichia_coli	13.6336297566
+UniRef50_P77212: Probable pyridine nucleotide-disulfide oxidoreductase RclA	13.6259039687
+UniRef50_P77212: Probable pyridine nucleotide-disulfide oxidoreductase RclA|g__Escherichia.s__Escherichia_coli	13.6259039687
+UniRef50_Q3DT06	13.6256888104
+UniRef50_Q3DT06|g__Streptococcus.s__Streptococcus_agalactiae	10.1313980159
+UniRef50_Q3DT06|unclassified	3.4942907946
+UniRef50_P40733: Deoxyguanosinetriphosphate triphosphohydrolase	13.6248500022
+UniRef50_P40733: Deoxyguanosinetriphosphate triphosphohydrolase|g__Escherichia.s__Escherichia_coli	13.5378226984
+UniRef50_P40733: Deoxyguanosinetriphosphate triphosphohydrolase|unclassified	0.0870273039
+UniRef50_P77667: Protein SufA	13.6240992552
+UniRef50_P77667: Protein SufA|g__Escherichia.s__Escherichia_coli	13.6240992552
+UniRef50_V9U906: Branched-chain amino acid ABC transporter, amino acid-binding protein	13.6206764637
+UniRef50_V9U906: Branched-chain amino acid ABC transporter, amino acid-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.6206764637
+UniRef50_M8EPJ5	13.6185810364
+UniRef50_M8EPJ5|g__Acinetobacter.s__Acinetobacter_baumannii	13.2444599494
+UniRef50_M8EPJ5|unclassified	0.3741210870
+UniRef50_E2PUT3: Non-ribosomal peptide synthetase (Fragment)	13.6184983487
+UniRef50_E2PUT3: Non-ribosomal peptide synthetase (Fragment)|unclassified	13.6184983487
+UniRef50_Q2YYD9	13.6157047975
+UniRef50_Q2YYD9|g__Staphylococcus.s__Staphylococcus_aureus	13.4667129334
+UniRef50_Q2YYD9|unclassified	0.1489918640
+UniRef50_A0A024DHC4: MarR family transcriptional regulator	13.6116035921
+UniRef50_A0A024DHC4: MarR family transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	13.6116035921
+UniRef50_A4VP18: Membrane protein, bmp family	13.6093770385
+UniRef50_A4VP18: Membrane protein, bmp family|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.6093770385
+UniRef50_H5R669	13.6054421769
+UniRef50_H5R669|g__Escherichia.s__Escherichia_coli	13.6054421769
+UniRef50_U5UMI4	13.6008918618
+UniRef50_U5UMI4|g__Staphylococcus.s__Staphylococcus_epidermidis	13.6008918618
+UniRef50_Q46PF7: Flagellar P-ring protein	13.5958496883
+UniRef50_Q46PF7: Flagellar P-ring protein|g__Escherichia.s__Escherichia_coli	13.5958496883
+UniRef50_P0AA74	13.5937653298
+UniRef50_P0AA74|g__Escherichia.s__Escherichia_coli	13.5937653298
+UniRef50_A6QIT1	13.5906596376
+UniRef50_A6QIT1|g__Staphylococcus.s__Staphylococcus_aureus	12.7323656735
+UniRef50_A6QIT1|unclassified	0.8582939640
+UniRef50_A0A019C1K0	13.5882276640
+UniRef50_A0A019C1K0|unclassified	13.5882276640
+UniRef50_Q8U8I2: Serine 3-dehydrogenase	13.5881628093
+UniRef50_Q8U8I2: Serine 3-dehydrogenase|g__Streptococcus.s__Streptococcus_agalactiae	10.7056775707
+UniRef50_Q8U8I2: Serine 3-dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8130394043
+UniRef50_Q8U8I2: Serine 3-dehydrogenase|unclassified	0.0694458344
+UniRef50_A1B5D2	13.5820566834
+UniRef50_A1B5D2|unclassified	13.5820566834
+UniRef50_Q65U60: Protein FdhD homolog	13.5815404937
+UniRef50_Q65U60: Protein FdhD homolog|g__Escherichia.s__Escherichia_coli	13.5815404937
+UniRef50_Q6FD84: Urease subunit beta	13.5645246913
+UniRef50_Q6FD84: Urease subunit beta|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.1578947368
+UniRef50_Q6FD84: Urease subunit beta|unclassified	0.4066299545
+UniRef50_Q0P9X7: Probable ABC transporter ATP-binding protein PEB1C	13.5554972083
+UniRef50_Q0P9X7: Probable ABC transporter ATP-binding protein PEB1C|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.5554972083
+UniRef50_D5ALK5	13.5546608127
+UniRef50_D5ALK5|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.5546608127
+UniRef50_Y5MV84	13.5525613465
+UniRef50_Y5MV84|g__Staphylococcus.s__Staphylococcus_aureus	9.9515738499
+UniRef50_Y5MV84|unclassified	3.6009874966
+UniRef50_P0A2M0: Protein sirB1	13.5496361456
+UniRef50_P0A2M0: Protein sirB1|g__Escherichia.s__Escherichia_coli	13.5496361456
+UniRef50_Q5HLS8	13.5445379829
+UniRef50_Q5HLS8|g__Staphylococcus.s__Staphylococcus_epidermidis	12.4653620688
+UniRef50_Q5HLS8|unclassified	1.0791759141
+UniRef50_A0M024: Protein containing DUF124	13.5417516612
+UniRef50_A0M024: Protein containing DUF124|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.8769689340
+UniRef50_A0M024: Protein containing DUF124|g__Clostridium.s__Clostridium_beijerinckii	2.6647827273
+UniRef50_A6LZZ2	13.5336485850
+UniRef50_A6LZZ2|g__Clostridium.s__Clostridium_beijerinckii	13.5336485850
+UniRef50_P33941: ABC transporter ATP-binding protein YojI	13.5304393897
+UniRef50_P33941: ABC transporter ATP-binding protein YojI|g__Escherichia.s__Escherichia_coli	13.5304393897
+UniRef50_F9Z195: General stress protein 18	13.5267731988
+UniRef50_F9Z195: General stress protein 18|g__Propionibacterium.s__Propionibacterium_acnes	13.5267731988
+UniRef50_A5UP63: O-linked GlcNAc transferase	13.5148725541
+UniRef50_A5UP63: O-linked GlcNAc transferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.5148725541
+UniRef50_A0A023WZP7: H-NS histone	13.5140391670
+UniRef50_A0A023WZP7: H-NS histone|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.5140391670
+UniRef50_A5IRW6	13.5135135135
+UniRef50_A5IRW6|g__Staphylococcus.s__Staphylococcus_aureus	13.5135135135
+UniRef50_A7X3N8: Putative membrane protein insertion efficiency factor	13.5135135135
+UniRef50_A7X3N8: Putative membrane protein insertion efficiency factor|g__Staphylococcus.s__Staphylococcus_aureus	13.5135135135
+UniRef50_M2I4Z1	13.5135135135
+UniRef50_M2I4Z1|unclassified	13.5135135135
+UniRef50_N3JM59: Cupin domain protein	13.5135135135
+UniRef50_N3JM59: Cupin domain protein|g__Escherichia.s__Escherichia_coli	13.5135135135
+UniRef50_Q0FMS9	13.5135135135
+UniRef50_Q0FMS9|unclassified	13.5135135135
+UniRef50_Q8CTV6	13.5135135135
+UniRef50_Q8CTV6|unclassified	13.5135135135
+UniRef50_R9YJH1	13.5135135135
+UniRef50_R9YJH1|g__Staphylococcus.s__Staphylococcus_aureus	13.5135135135
+UniRef50_V6P480	13.5135135135
+UniRef50_V6P480|unclassified	13.5135135135
+UniRef50_Q03007: Hydrogenase expression/formation protein HupH	13.5119970236
+UniRef50_Q03007: Hydrogenase expression/formation protein HupH|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.0556352487
+UniRef50_Q03007: Hydrogenase expression/formation protein HupH|unclassified	2.4563617749
+UniRef50_F7XJ23: Probabable oxidoreductase	13.5081068271
+UniRef50_F7XJ23: Probabable oxidoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.5081068271
+UniRef50_P06200: Hemolytic phospholipase C	13.5060251683
+UniRef50_P06200: Hemolytic phospholipase C|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.5060251683
+UniRef50_A5UK96	13.5001271757
+UniRef50_A5UK96|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.5001271757
+UniRef50_Q1LTI6: Holo-[acyl-carrier-protein] synthase	13.4971897164
+UniRef50_Q1LTI6: Holo-[acyl-carrier-protein] synthase|g__Escherichia.s__Escherichia_coli	13.3870651127
+UniRef50_Q1LTI6: Holo-[acyl-carrier-protein] synthase|unclassified	0.1101246037
+UniRef50_C1AE27: Aminotransferase	13.4938327441
+UniRef50_C1AE27: Aminotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.4938327441
+UniRef50_C1C9Q6: Major tail protein	13.4912663003
+UniRef50_C1C9Q6: Major tail protein|g__Streptococcus.s__Streptococcus_agalactiae	13.4912663003
+UniRef50_E2QNB6: Cystine transporter subunit	13.4853774696
+UniRef50_E2QNB6: Cystine transporter subunit|g__Escherichia.s__Escherichia_coli	13.4853774696
+UniRef50_W5VF17: Beta-aspartyl peptidase	13.4826749383
+UniRef50_W5VF17: Beta-aspartyl peptidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.4826749383
+UniRef50_I6SUP0: Transcriptional regulator	13.4811139396
+UniRef50_I6SUP0: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	13.4811139396
+UniRef50_E4R4C3: Phospholipid/glycerol acyltransferase	13.4810604488
+UniRef50_E4R4C3: Phospholipid/glycerol acyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.4810604488
+UniRef50_Q02RB8: UDP-3-O-acylglucosamine N-acyltransferase	13.4795814307
+UniRef50_Q02RB8: UDP-3-O-acylglucosamine N-acyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.9479444998
+UniRef50_Q02RB8: UDP-3-O-acylglucosamine N-acyltransferase|unclassified	0.5316369309
+UniRef50_P37669: Inner membrane protein YiaH	13.4731457733
+UniRef50_P37669: Inner membrane protein YiaH|g__Escherichia.s__Escherichia_coli	13.4731457733
+UniRef50_Q47005: Nitrogen assimilation regulatory protein nac	13.4709769142
+UniRef50_Q47005: Nitrogen assimilation regulatory protein nac|g__Escherichia.s__Escherichia_coli	13.4709769142
+UniRef50_A4WQQ4: Aminotransferase, class V	13.4703738818
+UniRef50_A4WQQ4: Aminotransferase, class V|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.4703738818
+UniRef50_Q7UGJ1: Ribosome-binding ATPase YchF	13.4694261021
+UniRef50_Q7UGJ1: Ribosome-binding ATPase YchF|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.9719894649
+UniRef50_Q7UGJ1: Ribosome-binding ATPase YchF|g__Acinetobacter.s__Acinetobacter_baumannii	2.4974366372
+UniRef50_D0KZT9: Multiple resistance and pH regulation protein F	13.4652253790
+UniRef50_D0KZT9: Multiple resistance and pH regulation protein F|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.4652253790
+UniRef50_A4VRM2	13.4602286984
+UniRef50_A4VRM2|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.4602286984
+UniRef50_UPI00037D4D8D: hypothetical protein	13.4534534535
+UniRef50_UPI00037D4D8D: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.4534534535
+UniRef50_C6CXV0: D-galactose/D-glucose ABC transporter, periplasmic D-galactose/D-glucose-binding protein	13.4417029625
+UniRef50_C6CXV0: D-galactose/D-glucose ABC transporter, periplasmic D-galactose/D-glucose-binding protein|g__Clostridium.s__Clostridium_beijerinckii	13.4417029625
+UniRef50_Q5ZY26: Phosphopantetheine adenylyltransferase	13.4347414538
+UniRef50_Q5ZY26: Phosphopantetheine adenylyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.1578947368
+UniRef50_Q5ZY26: Phosphopantetheine adenylyltransferase|unclassified	0.2768467169
+UniRef50_A6QFJ2	13.4265791077
+UniRef50_A6QFJ2|g__Staphylococcus.s__Staphylococcus_aureus	13.4265791077
+UniRef50_UPI000329D7B6	13.4260106647
+UniRef50_UPI000329D7B6|g__Escherichia.s__Escherichia_coli	13.2840836017
+UniRef50_UPI000329D7B6|unclassified	0.1419270631
+UniRef50_L0EBK7: Thioredoxin-like protein	13.4259259259
+UniRef50_L0EBK7: Thioredoxin-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	13.4259259259
+UniRef50_Q4L790: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	13.4231663088
+UniRef50_Q4L790: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	13.4231663088
+UniRef50_D9PVP5: F420-dependent NADP reductase	13.4210298890
+UniRef50_D9PVP5: F420-dependent NADP reductase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.4210298890
+UniRef50_J0UHN1	13.4174602622
+UniRef50_J0UHN1|unclassified	13.4174602622
+UniRef50_Q8CU50	13.4135472371
+UniRef50_Q8CU50|g__Staphylococcus.s__Staphylococcus_epidermidis	13.4135472371
+UniRef50_F3U4Y6: ABC amino acid transporter, inner membrane subunit	13.4116140218
+UniRef50_F3U4Y6: ABC amino acid transporter, inner membrane subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.4116140218
+UniRef50_Q97MB4: NAD-dependent protein deacetylase	13.4093022321
+UniRef50_Q97MB4: NAD-dependent protein deacetylase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.4093022321
+UniRef50_X2M0D2	13.4055315360
+UniRef50_X2M0D2|g__Escherichia.s__Escherichia_coli	13.4055315360
+UniRef50_F5M3M5	13.4051988995
+UniRef50_F5M3M5|unclassified	13.4051988995
+UniRef50_U6AME7: Glycerol-3-phosphate transporter	13.3979642276
+UniRef50_U6AME7: Glycerol-3-phosphate transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.3979642276
+UniRef50_A3M2E1: DNA polymerase V component	13.3937745872
+UniRef50_A3M2E1: DNA polymerase V component|g__Acinetobacter.s__Acinetobacter_baumannii	13.3937745872
+UniRef50_F3U4V8	13.3915753104
+UniRef50_F3U4V8|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.3915753104
+UniRef50_B9ACP5: Transcriptional regulator, MarR family	13.3879175125
+UniRef50_B9ACP5: Transcriptional regulator, MarR family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.3879175125
+UniRef50_Q8ZNB8: UPF0226 protein YfcJ	13.3867588786
+UniRef50_Q8ZNB8: UPF0226 protein YfcJ|g__Escherichia.s__Escherichia_coli	13.3867588786
+UniRef50_A4XZ93: Elongation factor G	13.3866888131
+UniRef50_A4XZ93: Elongation factor G|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.3866888131
+UniRef50_A5UK48: Glutamine amidotransferase subunit PdxT	13.3853386534
+UniRef50_A5UK48: Glutamine amidotransferase subunit PdxT|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.3853386534
+UniRef50_B9KUB3	13.3804226811
+UniRef50_B9KUB3|unclassified	13.3804226811
+UniRef50_P50727: Ferredoxin	13.3767815411
+UniRef50_P50727: Ferredoxin|g__Staphylococcus.s__Staphylococcus_epidermidis	13.3767815411
+UniRef50_P77174	13.3728714589
+UniRef50_P77174|g__Escherichia.s__Escherichia_coli	13.3728714589
+UniRef50_Q98F59: Inositol-1-monophosphatase	13.3623820418
+UniRef50_Q98F59: Inositol-1-monophosphatase|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.1983453808
+UniRef50_Q98F59: Inositol-1-monophosphatase|unclassified	0.1640366610
+UniRef50_Q56036: Galactoside transport system permease protein MglC	13.3612140436
+UniRef50_Q56036: Galactoside transport system permease protein MglC|g__Escherichia.s__Escherichia_coli	13.3612140436
+UniRef50_A4X0G8	13.3566083540
+UniRef50_A4X0G8|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.3566083540
+UniRef50_A8MI43: Alpha/beta hydrolase fold	13.3539300418
+UniRef50_A8MI43: Alpha/beta hydrolase fold|g__Clostridium.s__Clostridium_beijerinckii	13.3539300418
+UniRef50_F9R061: 2-succinyl-6-hydroxy-2, 4-cyclohexadiene-1-carboxylate synthase (Fragment)	13.3498884685
+UniRef50_F9R061: 2-succinyl-6-hydroxy-2, 4-cyclohexadiene-1-carboxylate synthase (Fragment)|g__Escherichia.s__Escherichia_coli	13.3498884685
+UniRef50_Q1C306: Serine/threonine transporter SstT	13.3491642693
+UniRef50_Q1C306: Serine/threonine transporter SstT|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6752239100
+UniRef50_Q1C306: Serine/threonine transporter SstT|g__Escherichia.s__Escherichia_coli	5.4851415008
+UniRef50_Q1C306: Serine/threonine transporter SstT|g__Streptococcus.s__Streptococcus_agalactiae	2.1887988585
+UniRef50_A9KDE5: Phosphoenolpyruvate carboxykinase [ATP]	13.3442029841
+UniRef50_A9KDE5: Phosphoenolpyruvate carboxykinase [ATP]|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.1973136958
+UniRef50_A9KDE5: Phosphoenolpyruvate carboxykinase [ATP]|unclassified	0.1468892882
+UniRef50_K0WMD7: Glycosyltransferase	13.3386320238
+UniRef50_K0WMD7: Glycosyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.3386320238
+UniRef50_A0A023Z2G6	13.3333333333
+UniRef50_A0A023Z2G6|g__Escherichia.s__Escherichia_coli	13.3333333333
+UniRef50_H4KGF2	13.3333333333
+UniRef50_H4KGF2|g__Escherichia.s__Escherichia_coli	13.3333333333
+UniRef50_J0XSC7	13.3333333333
+UniRef50_J0XSC7|unclassified	13.3333333333
+UniRef50_U5AI32: DNA polymerase III subunit beta	13.3333333333
+UniRef50_U5AI32: DNA polymerase III subunit beta|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.3333333333
+UniRef50_C6DEY0: RNA polymerase-associated protein RapA	13.3327446941
+UniRef50_C6DEY0: RNA polymerase-associated protein RapA|g__Escherichia.s__Escherichia_coli	13.3327446941
+UniRef50_A6M2W8: Oxidoreductase domain protein	13.3314658893
+UniRef50_A6M2W8: Oxidoreductase domain protein|g__Clostridium.s__Clostridium_beijerinckii	13.3314658893
+UniRef50_P54457: Ribosomal silencing factor RsfS	13.3243696507
+UniRef50_P54457: Ribosomal silencing factor RsfS|g__Staphylococcus.s__Staphylococcus_epidermidis	13.3243696507
+UniRef50_F9YWF3	13.3181776261
+UniRef50_F9YWF3|g__Propionibacterium.s__Propionibacterium_acnes	11.9426307272
+UniRef50_F9YWF3|unclassified	1.3755468990
+UniRef50_D8A1C0	13.3042844614
+UniRef50_D8A1C0|g__Escherichia.s__Escherichia_coli	12.8205128205
+UniRef50_D8A1C0|unclassified	0.4837716409
+UniRef50_A5UMM7: Predicted transcriptional regulator, PadR-like family	13.3025960470
+UniRef50_A5UMM7: Predicted transcriptional regulator, PadR-like family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.3025960470
+UniRef50_Q5ZY07: Tyrosine--tRNA ligase	13.2950743935
+UniRef50_Q5ZY07: Tyrosine--tRNA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.1416718560
+UniRef50_Q5ZY07: Tyrosine--tRNA ligase|g__Acinetobacter.s__Acinetobacter_baumannii	1.1534025375
+UniRef50_A1AHV1	13.2944247522
+UniRef50_A1AHV1|g__Escherichia.s__Escherichia_coli	13.2944247522
+UniRef50_D3QEF9	13.2942275567
+UniRef50_D3QEF9|g__Staphylococcus.s__Staphylococcus_aureus	13.2942275567
+UniRef50_H5GXC5: Permease family protein	13.2937975489
+UniRef50_H5GXC5: Permease family protein|g__Escherichia.s__Escherichia_coli	13.2937975489
+UniRef50_I2FG31: Transposase	13.2907217413
+UniRef50_I2FG31: Transposase|unclassified	13.2907217413
+UniRef50_G7SFU4	13.2878816505
+UniRef50_G7SFU4|g__Streptococcus.s__Streptococcus_agalactiae	13.2878816505
+UniRef50_O86428: Branched-chain-amino-acid aminotransferase	13.2858573485
+UniRef50_O86428: Branched-chain-amino-acid aminotransferase|g__Acinetobacter.s__Acinetobacter_baumannii	6.0697101862
+UniRef50_O86428: Branched-chain-amino-acid aminotransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9787389976
+UniRef50_O86428: Branched-chain-amino-acid aminotransferase|unclassified	2.2374081648
+UniRef50_P64440: Inner membrane protein YbjM	13.2839341641
+UniRef50_P64440: Inner membrane protein YbjM|g__Escherichia.s__Escherichia_coli	13.2839341641
+UniRef50_E6JRH7	13.2829946099
+UniRef50_E6JRH7|unclassified	13.2829946099
+UniRef50_P0AFW1: Transcription antitermination protein RfaH	13.2810881073
+UniRef50_P0AFW1: Transcription antitermination protein RfaH|g__Escherichia.s__Escherichia_coli	13.2810881073
+UniRef50_B9KJE2: Flagellar protein FliQ	13.2801098387
+UniRef50_B9KJE2: Flagellar protein FliQ|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.2801098387
+UniRef50_A1BBC0: Dihydrodipicolinate synthetase	13.2794146451
+UniRef50_A1BBC0: Dihydrodipicolinate synthetase|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.9041177330
+UniRef50_A1BBC0: Dihydrodipicolinate synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3752969121
+UniRef50_Q5HJ88: Protein EsaB	13.2768754595
+UniRef50_Q5HJ88: Protein EsaB|g__Staphylococcus.s__Staphylococcus_aureus	13.2768754595
+UniRef50_G7M4C6	13.2705854681
+UniRef50_G7M4C6|g__Clostridium.s__Clostridium_beijerinckii	13.2705854681
+UniRef50_P46879	13.2643281579
+UniRef50_P46879|g__Escherichia.s__Escherichia_coli	13.2643281579
+UniRef50_UPI00034C319E: hypothetical protein	13.2606668003
+UniRef50_UPI00034C319E: hypothetical protein|unclassified	13.2606668003
+UniRef50_UPI0003752D61: hypothetical protein	13.2545591780
+UniRef50_UPI0003752D61: hypothetical protein|unclassified	13.2545591780
+UniRef50_Q5HMH2	13.2544611197
+UniRef50_Q5HMH2|g__Staphylococcus.s__Staphylococcus_epidermidis	9.4665823319
+UniRef50_Q5HMH2|unclassified	3.7878787879
+UniRef50_X7E857	13.2479872366
+UniRef50_X7E857|unclassified	13.2479872366
+UniRef50_Y5UCV9	13.2423520191
+UniRef50_Y5UCV9|unclassified	13.2423520191
+UniRef50_K4MIV8: Dipeptide ABC transporter, ATP-binding protein	13.2386360394
+UniRef50_K4MIV8: Dipeptide ABC transporter, ATP-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.2386360394
+UniRef50_Q51447: Pseudomonas aeruginosa exoenzyme S (exoS) protein (Fragment)	13.2386052972
+UniRef50_Q51447: Pseudomonas aeruginosa exoenzyme S (exoS) protein (Fragment)|unclassified	13.2386052972
+UniRef50_X5EG78	13.2362155388
+UniRef50_X5EG78|g__Staphylococcus.s__Staphylococcus_aureus	13.2362155388
+UniRef50_P0AC99: Succinate-acetate/proton symporter SatP	13.2314554088
+UniRef50_P0AC99: Succinate-acetate/proton symporter SatP|g__Escherichia.s__Escherichia_coli	13.2314554088
+UniRef50_A4WTM8	13.2311901472
+UniRef50_A4WTM8|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.2311901472
+UniRef50_A6UYP3: ChaX protein	13.2305316415
+UniRef50_A6UYP3: ChaX protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.2305316415
+UniRef50_D7CVN0: 3-isopropylmalate dehydrogenase	13.2290297269
+UniRef50_D7CVN0: 3-isopropylmalate dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.2290297269
+UniRef50_UPI0003783983: hypothetical protein, partial	13.2279281531
+UniRef50_UPI0003783983: hypothetical protein, partial|unclassified	13.2279281531
+UniRef50_R9SK13: Phage integrase family protein	13.2265940021
+UniRef50_R9SK13: Phage integrase family protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.2265940021
+UniRef50_UPI00037E6C33: hypothetical protein	13.2251128760
+UniRef50_UPI00037E6C33: hypothetical protein|unclassified	13.2251128760
+UniRef50_P45030: Probable ABC transporter permease protein HI_1086	13.2193183757
+UniRef50_P45030: Probable ABC transporter permease protein HI_1086|g__Escherichia.s__Escherichia_coli	13.2193183757
+UniRef50_P50601: Protein TolB	13.2191060227
+UniRef50_P50601: Protein TolB|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.2191060227
+UniRef50_Q88EQ6: Flagellar brake protein YcgR	13.2174083845
+UniRef50_Q88EQ6: Flagellar brake protein YcgR|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.2174083845
+UniRef50_Q28VI8: Lytic murein transglycosylase	13.2162066010
+UniRef50_Q28VI8: Lytic murein transglycosylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.2162066010
+UniRef50_Q9I5S4	13.2136925027
+UniRef50_Q9I5S4|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.2136925027
+UniRef50_P77616	13.2136133830
+UniRef50_P77616|g__Escherichia.s__Escherichia_coli	13.2136133830
+UniRef50_Q8X2T9	13.2058115167
+UniRef50_Q8X2T9|g__Escherichia.s__Escherichia_coli	13.2058115167
+UniRef50_P08189: Protein FimF	13.2042485769
+UniRef50_P08189: Protein FimF|g__Escherichia.s__Escherichia_coli	13.2042485769
+UniRef50_M9R8D3	13.2012830479
+UniRef50_M9R8D3|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.2012830479
+UniRef50_P0AC74: Evolved beta-galactosidase subunit beta	13.1996971188
+UniRef50_P0AC74: Evolved beta-galactosidase subunit beta|g__Escherichia.s__Escherichia_coli	13.1996971188
+UniRef50_Q58070: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit	13.1898122094
+UniRef50_Q58070: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.1633288748
+UniRef50_Q58070: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit|unclassified	0.0264833346
+UniRef50_Q9KET5: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 2	13.1887583331
+UniRef50_Q9KET5: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 2|unclassified	13.1887583331
+UniRef50_L4WM60: Starvation-sensing protein RspB	13.1839331552
+UniRef50_L4WM60: Starvation-sensing protein RspB|g__Escherichia.s__Escherichia_coli	13.1839331552
+UniRef50_A0A017HRP7	13.1838462159
+UniRef50_A0A017HRP7|unclassified	13.1838462159
+UniRef50_P16256: Sodium/pantothenate symporter	13.1809187936
+UniRef50_P16256: Sodium/pantothenate symporter|g__Escherichia.s__Escherichia_coli	13.1809187936
+UniRef50_C6SPI1	13.1772120170
+UniRef50_C6SPI1|g__Streptococcus.s__Streptococcus_mutans	13.1772120170
+UniRef50_P76096: Regulatory protein MokB	13.1721478400
+UniRef50_P76096: Regulatory protein MokB|unclassified	6.8027210884
+UniRef50_P76096: Regulatory protein MokB|g__Escherichia.s__Escherichia_coli	6.3694267516
+UniRef50_Q8XBB1: Putative lambdoid prophage defective integrase	13.1688917446
+UniRef50_Q8XBB1: Putative lambdoid prophage defective integrase|g__Escherichia.s__Escherichia_coli	13.1688917446
+UniRef50_Q49XQ7	13.1674680410
+UniRef50_Q49XQ7|g__Staphylococcus.s__Staphylococcus_epidermidis	13.1674680410
+UniRef50_Q02JU1: Protein phosphatase CheZ	13.1673134213
+UniRef50_Q02JU1: Protein phosphatase CheZ|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.1673134213
+UniRef50_A4WZ54	13.1638634504
+UniRef50_A4WZ54|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.1638634504
+UniRef50_A6TCB0: Uracil phosphoribosyltransferase	13.1627532118
+UniRef50_A6TCB0: Uracil phosphoribosyltransferase|g__Escherichia.s__Escherichia_coli	12.8900084631
+UniRef50_A6TCB0: Uracil phosphoribosyltransferase|unclassified	0.2727447487
+UniRef50_A7MFW6: Macrodomain Ter protein	13.1623931624
+UniRef50_A7MFW6: Macrodomain Ter protein|g__Escherichia.s__Escherichia_coli	13.1623931624
+UniRef50_P77746	13.1615630980
+UniRef50_P77746|g__Escherichia.s__Escherichia_coli	13.1615630980
+UniRef50_Q8JZV9: 3-hydroxybutyrate dehydrogenase type 2	13.1615283180
+UniRef50_Q8JZV9: 3-hydroxybutyrate dehydrogenase type 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.0717054227
+UniRef50_Q8JZV9: 3-hydroxybutyrate dehydrogenase type 2|unclassified	0.0898228954
+UniRef50_P11551: L-fucose-proton symporter	13.1593492059
+UniRef50_P11551: L-fucose-proton symporter|g__Escherichia.s__Escherichia_coli	13.1593492059
+UniRef50_UPI0002BB4717: hypothetical protein	13.1584642687
+UniRef50_UPI0002BB4717: hypothetical protein|g__Escherichia.s__Escherichia_coli	13.1584642687
+UniRef50_D0K4F0	13.1578947368
+UniRef50_D0K4F0|g__Staphylococcus.s__Staphylococcus_aureus	13.1578947368
+UniRef50_F9L838: Phenol soluble modulin beta 1 family protein (Fragment)	13.1578947368
+UniRef50_F9L838: Phenol soluble modulin beta 1 family protein (Fragment)|unclassified	13.1578947368
+UniRef50_P39390	13.1578947368
+UniRef50_P39390|g__Escherichia.s__Escherichia_coli	13.1578947368
+UniRef50_A8LSD4: Major facilitator superfamily MFS_1	13.1566939711
+UniRef50_A8LSD4: Major facilitator superfamily MFS_1|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.1566939711
+UniRef50_H4U829: Hydrogenase accessory protein HypB	13.1549541158
+UniRef50_H4U829: Hydrogenase accessory protein HypB|g__Escherichia.s__Escherichia_coli	13.1549541158
+UniRef50_D5APZ2: Transcriptional regulator, LysR family	13.1468222779
+UniRef50_D5APZ2: Transcriptional regulator, LysR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.1468222779
+UniRef50_Q8PYF8: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	13.1464946531
+UniRef50_Q8PYF8: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.9818069145
+UniRef50_Q8PYF8: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|unclassified	0.1646877386
+UniRef50_A5UP58	13.1416796466
+UniRef50_A5UP58|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.1416796466
+UniRef50_J1E3J1	13.1318740222
+UniRef50_J1E3J1|g__Staphylococcus.s__Staphylococcus_epidermidis	13.1318740222
+UniRef50_L7WXR8	13.1313131313
+UniRef50_L7WXR8|g__Staphylococcus.s__Staphylococcus_aureus	13.1313131313
+UniRef50_C1KWD9: Bifunctional protein PyrR	13.1265173849
+UniRef50_C1KWD9: Bifunctional protein PyrR|g__Clostridium.s__Clostridium_beijerinckii	12.7046866177
+UniRef50_C1KWD9: Bifunctional protein PyrR|unclassified	0.4218307672
+UniRef50_S1BJ98: Outer membrane usher protein	13.1223172999
+UniRef50_S1BJ98: Outer membrane usher protein|g__Escherichia.s__Escherichia_coli	13.1223172999
+UniRef50_Q0VT33	13.1176046952
+UniRef50_Q0VT33|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.1176046952
+UniRef50_J3JVP7	13.1136731246
+UniRef50_J3JVP7|g__Escherichia.s__Escherichia_coli	13.1136731246
+UniRef50_Q7UKI3: Succinyl-CoA ligase [ADP-forming] subunit beta	13.1089062839
+UniRef50_Q7UKI3: Succinyl-CoA ligase [ADP-forming] subunit beta|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.9221993644
+UniRef50_Q7UKI3: Succinyl-CoA ligase [ADP-forming] subunit beta|unclassified	0.1867069195
+UniRef50_Q3IW24	13.1055988566
+UniRef50_Q3IW24|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.1338880221
+UniRef50_Q3IW24|unclassified	2.9717108345
+UniRef50_P32674: Formate acetyltransferase 2	13.1052290115
+UniRef50_P32674: Formate acetyltransferase 2|g__Escherichia.s__Escherichia_coli	12.6647003771
+UniRef50_P32674: Formate acetyltransferase 2|unclassified	0.4405286344
+UniRef50_A3M5I7: AdeS	13.1016546360
+UniRef50_A3M5I7: AdeS|g__Acinetobacter.s__Acinetobacter_baumannii	13.1016546360
+UniRef50_P77318	13.0964501107
+UniRef50_P77318|g__Escherichia.s__Escherichia_coli	13.0964501107
+UniRef50_S5CWK9: AraC-type DNA-binding domain-containing protein	13.0948641953
+UniRef50_S5CWK9: AraC-type DNA-binding domain-containing protein|g__Acinetobacter.s__Acinetobacter_baumannii	13.0948641953
+UniRef50_A8LS45: Glycine--tRNA ligase beta subunit	13.0947807512
+UniRef50_A8LS45: Glycine--tRNA ligase beta subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.0947807512
+UniRef50_A3PFV9: Aminoglycoside phosphotransferase	13.0906703910
+UniRef50_A3PFV9: Aminoglycoside phosphotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.0906703910
+UniRef50_W0S044: Transposase of IS30, partial	13.0888512437
+UniRef50_W0S044: Transposase of IS30, partial|g__Escherichia.s__Escherichia_coli	13.0888512437
+UniRef50_A3LPH4	13.0876068376
+UniRef50_A3LPH4|g__Staphylococcus.s__Staphylococcus_epidermidis	13.0876068376
+UniRef50_D8JM63	13.0868076901
+UniRef50_D8JM63|g__Acinetobacter.s__Acinetobacter_baumannii	13.0868076901
+UniRef50_F2A902	13.0851876317
+UniRef50_F2A902|unclassified	13.0851876317
+UniRef50_Q02UV9: C4-dicarboxylate transport protein 1	13.0845975798
+UniRef50_Q02UV9: C4-dicarboxylate transport protein 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.0845975798
+UniRef50_B7UZU0: Na(+)-translocating NADH-quinone reductase subunit D	13.0840957133
+UniRef50_B7UZU0: Na(+)-translocating NADH-quinone reductase subunit D|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.0840957133
+UniRef50_UPI000479981B: hypothetical protein	13.0838928024
+UniRef50_UPI000479981B: hypothetical protein|unclassified	13.0838928024
+UniRef50_UPI0003B57E0D: flagellar biosynthesis protein FlhB	13.0824120189
+UniRef50_UPI0003B57E0D: flagellar biosynthesis protein FlhB|unclassified	13.0824120189
+UniRef50_Q7UR02: D-ribose-binding periplasmic protein	13.0801527758
+UniRef50_Q7UR02: D-ribose-binding periplasmic protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.9942989401
+UniRef50_Q7UR02: D-ribose-binding periplasmic protein|unclassified	0.0858538357
+UniRef50_P02924: L-arabinose-binding periplasmic protein	13.0797872679
+UniRef50_P02924: L-arabinose-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	13.0797872679
+UniRef50_Q3SL19: Serine-type D-ala-D-ala-carboxypeptidase	13.0750791319
+UniRef50_Q3SL19: Serine-type D-ala-D-ala-carboxypeptidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.0750791319
+UniRef50_A1SWU5: Threonine--tRNA ligase	13.0740328330
+UniRef50_A1SWU5: Threonine--tRNA ligase|g__Escherichia.s__Escherichia_coli	12.9941097696
+UniRef50_A1SWU5: Threonine--tRNA ligase|unclassified	0.0799230633
+UniRef50_F8HDR2: Acyl-ACP thioesterase	13.0723789229
+UniRef50_F8HDR2: Acyl-ACP thioesterase|g__Streptococcus.s__Streptococcus_agalactiae	13.0723789229
+UniRef50_Q02GL8: Pyocin S5	13.0722315866
+UniRef50_Q02GL8: Pyocin S5|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.0722315866
+UniRef50_H3XP79: Polysaccharide lyase family 8, N-terminal alpha-helical domain protein	13.0707920492
+UniRef50_H3XP79: Polysaccharide lyase family 8, N-terminal alpha-helical domain protein|g__Staphylococcus.s__Staphylococcus_aureus	13.0707920492
+UniRef50_G8RA61	13.0681004780
+UniRef50_G8RA61|g__Staphylococcus.s__Staphylococcus_aureus	13.0681004780
+UniRef50_N1N1E2	13.0649199623
+UniRef50_N1N1E2|g__Staphylococcus.s__Staphylococcus_aureus	13.0649199623
+UniRef50_A7ZMR8: Transposase, IS605 family	13.0608534203
+UniRef50_A7ZMR8: Transposase, IS605 family|g__Escherichia.s__Escherichia_coli	13.0608534203
+UniRef50_X4ZI39: Sigma-54 interaction domain protein	13.0588936148
+UniRef50_X4ZI39: Sigma-54 interaction domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.0588936148
+UniRef50_F9LQU4: GA module	13.0564993232
+UniRef50_F9LQU4: GA module|g__Staphylococcus.s__Staphylococcus_epidermidis	13.0564993232
+UniRef50_C6SU07	13.0551500501
+UniRef50_C6SU07|g__Streptococcus.s__Streptococcus_mutans	13.0551500501
+UniRef50_U5MWS1: Cna B domain protein	13.0472221211
+UniRef50_U5MWS1: Cna B domain protein|g__Clostridium.s__Clostridium_beijerinckii	13.0472221211
+UniRef50_Q87XY9: Decarboxylase family protein	13.0465720481
+UniRef50_Q87XY9: Decarboxylase family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.0465720481
+UniRef50_B9KNP6: Metallo-phosphoesterase	13.0406590186
+UniRef50_B9KNP6: Metallo-phosphoesterase|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.0406590186
+UniRef50_G8RCC4	13.0360934183
+UniRef50_G8RCC4|g__Staphylococcus.s__Staphylococcus_aureus	13.0360934183
+UniRef50_R7PT69	13.0353738827
+UniRef50_R7PT69|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.7357125168
+UniRef50_R7PT69|unclassified	0.2996613659
+UniRef50_A4XW76: Nucleotidyl transferase	13.0319979097
+UniRef50_A4XW76: Nucleotidyl transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	13.0319979097
+UniRef50_UPI000463F0F0: hypothetical protein	13.0275714491
+UniRef50_UPI000463F0F0: hypothetical protein|unclassified	13.0275714491
+UniRef50_R9SIZ9: Xylose isomerase-like TIM barrel domain-containing protein	13.0262834084
+UniRef50_R9SIZ9: Xylose isomerase-like TIM barrel domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	13.0262834084
+UniRef50_Q8E035	13.0258045168
+UniRef50_Q8E035|g__Streptococcus.s__Streptococcus_agalactiae	13.0258045168
+UniRef50_E1J8E9	13.0252100840
+UniRef50_E1J8E9|unclassified	7.1428571429
+UniRef50_E1J8E9|g__Escherichia.s__Escherichia_coli	5.8823529412
+UniRef50_A6T6Q1: Ribosomal RNA large subunit methyltransferase F	13.0203451828
+UniRef50_A6T6Q1: Ribosomal RNA large subunit methyltransferase F|g__Escherichia.s__Escherichia_coli	13.0203451828
+UniRef50_Q04D22: Cys-tRNA(Pro)/Cys-tRNA(Cys) deacylase	13.0198071410
+UniRef50_Q04D22: Cys-tRNA(Pro)/Cys-tRNA(Cys) deacylase|g__Streptococcus.s__Streptococcus_mutans	13.0198071410
+UniRef50_A6LWJ3: Leucyl/phenylalanyl-tRNA--protein transferase	13.0163188319
+UniRef50_A6LWJ3: Leucyl/phenylalanyl-tRNA--protein transferase|g__Clostridium.s__Clostridium_beijerinckii	13.0163188319
+UniRef50_Q5LTV6: His/Glu/Gln/Arg/opine family ABC transporter, periplasmic His/Glu/Gln/Arg/opine family-binding protein	13.0148187196
+UniRef50_Q5LTV6: His/Glu/Gln/Arg/opine family ABC transporter, periplasmic His/Glu/Gln/Arg/opine family-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	13.0148187196
+UniRef50_C8TSW3: Predicted oxidoreductase	13.0065885251
+UniRef50_C8TSW3: Predicted oxidoreductase|g__Escherichia.s__Escherichia_coli	13.0065885251
+UniRef50_A6LSU0	12.9970960451
+UniRef50_A6LSU0|g__Clostridium.s__Clostridium_beijerinckii	12.9970960451
+UniRef50_U5MQF0: Transporter YbhF	12.9954473878
+UniRef50_U5MQF0: Transporter YbhF|g__Clostridium.s__Clostridium_beijerinckii	12.9954473878
+UniRef50_E2XJ48: 1-acyl-sn-glycerol-3-phosphate acyltransferase	12.9924559468
+UniRef50_E2XJ48: 1-acyl-sn-glycerol-3-phosphate acyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.9924559468
+UniRef50_Q88PG8: Dipeptide ABC transporter, periplasmic dipeptide-binding protein	12.9916797159
+UniRef50_Q88PG8: Dipeptide ABC transporter, periplasmic dipeptide-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.9916797159
+UniRef50_J8V9R1: Monovalent cation/H+ antiporter subunit C	12.9895717712
+UniRef50_J8V9R1: Monovalent cation/H+ antiporter subunit C|unclassified	12.9895717712
+UniRef50_A6E2L5	12.9886326965
+UniRef50_A6E2L5|unclassified	12.9886326965
+UniRef50_F2NB99: Nucleoside ABC transporter membrane protein	12.9883503468
+UniRef50_F2NB99: Nucleoside ABC transporter membrane protein|g__Clostridium.s__Clostridium_beijerinckii	12.9883503468
+UniRef50_A3PJA2	12.9870129870
+UniRef50_A3PJA2|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.9870129870
+UniRef50_A6LRT3	12.9870129870
+UniRef50_A6LRT3|g__Clostridium.s__Clostridium_beijerinckii	12.9870129870
+UniRef50_G5PR34	12.9870129870
+UniRef50_G5PR34|unclassified	12.9870129870
+UniRef50_J0HBU6	12.9870129870
+UniRef50_J0HBU6|g__Staphylococcus.s__Staphylococcus_epidermidis	12.9870129870
+UniRef50_N3B8M7	12.9870129870
+UniRef50_N3B8M7|unclassified	12.9870129870
+UniRef50_Q8CU37	12.9870129870
+UniRef50_Q8CU37|g__Staphylococcus.s__Staphylococcus_aureus	12.9870129870
+UniRef50_Y5CTH4	12.9870129870
+UniRef50_Y5CTH4|unclassified	12.9870129870
+UniRef50_UPI00036CF3D9: formate dehydrogenase subunit alpha	12.9861231853
+UniRef50_UPI00036CF3D9: formate dehydrogenase subunit alpha|g__Escherichia.s__Escherichia_coli	12.9861231853
+UniRef50_Q27580: Adenosylhomocysteinase	12.9856462735
+UniRef50_Q27580: Adenosylhomocysteinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.9787637556
+UniRef50_Q27580: Adenosylhomocysteinase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8741258741
+UniRef50_Q27580: Adenosylhomocysteinase|unclassified	0.1327566438
+UniRef50_B9KU80: Gas vesicle synthesis GvpLGvpF	12.9849498216
+UniRef50_B9KU80: Gas vesicle synthesis GvpLGvpF|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.9849498216
+UniRef50_A6LPN9: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	12.9835689871
+UniRef50_A6LPN9: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|g__Clostridium.s__Clostridium_beijerinckii	12.8466635480
+UniRef50_A6LPN9: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.1369054391
+UniRef50_Q89IA9: Blr5730 protein	12.9824444454
+UniRef50_Q89IA9: Blr5730 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.5492892563
+UniRef50_Q89IA9: Blr5730 protein|unclassified	0.4331551891
+UniRef50_U6FU33	12.9824368980
+UniRef50_U6FU33|unclassified	12.9824368980
+UniRef50_A6M1K4	12.9824095626
+UniRef50_A6M1K4|g__Clostridium.s__Clostridium_beijerinckii	12.9824095626
+UniRef50_P77817: Cell division protein FtsZ	12.9792543446
+UniRef50_P77817: Cell division protein FtsZ|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.9792543446
+UniRef50_D0KD36: Lipid A palmitoyltransferase PagP	12.9721704910
+UniRef50_D0KD36: Lipid A palmitoyltransferase PagP|g__Escherichia.s__Escherichia_coli	12.9721704910
+UniRef50_U7DBQ4: LysR family transcriptional regulator	12.9711544547
+UniRef50_U7DBQ4: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.9711544547
+UniRef50_P44839: RutC family protein HI_0719	12.9689552761
+UniRef50_P44839: RutC family protein HI_0719|g__Escherichia.s__Escherichia_coli	12.9689552761
+UniRef50_UPI0003B32155: hypothetical protein	12.9636371469
+UniRef50_UPI0003B32155: hypothetical protein|unclassified	12.9636371469
+UniRef50_Q5N353: Phosphoribosylaminoimidazole carboxylase	12.9595051329
+UniRef50_Q5N353: Phosphoribosylaminoimidazole carboxylase|g__Propionibacterium.s__Propionibacterium_acnes	12.9595051329
+UniRef50_J7QW46: Precorrin-2 C20-methyltransferase	12.9571161151
+UniRef50_J7QW46: Precorrin-2 C20-methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.9571161151
+UniRef50_Q8CUC4	12.9494273234
+UniRef50_Q8CUC4|unclassified	11.1009984879
+UniRef50_Q8CUC4|g__Staphylococcus.s__Staphylococcus_epidermidis	1.8484288355
+UniRef50_B9KM49	12.9486050738
+UniRef50_B9KM49|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.0816422780
+UniRef50_B9KM49|unclassified	0.8669627958
+UniRef50_K0CBU4: Acyltransferase family protein	12.9471936742
+UniRef50_K0CBU4: Acyltransferase family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.9471936742
+UniRef50_A6LZK4	12.9439674427
+UniRef50_A6LZK4|g__Clostridium.s__Clostridium_beijerinckii	12.9439674427
+UniRef50_P45545	12.9431278535
+UniRef50_P45545|g__Escherichia.s__Escherichia_coli	12.9431278535
+UniRef50_A3PNF8	12.9310829666
+UniRef50_A3PNF8|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.3011388169
+UniRef50_A3PNF8|unclassified	1.6299441497
+UniRef50_UPI0004623CA1: hypothetical protein TRAVEDRAFT_50483	12.9306210733
+UniRef50_UPI0004623CA1: hypothetical protein TRAVEDRAFT_50483|unclassified	12.9306210733
+UniRef50_Q0K7G7: Acyl-CoA synthetase	12.9258920856
+UniRef50_Q0K7G7: Acyl-CoA synthetase|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.9258920856
+UniRef50_D2F8L2: Phage amidase	12.9245930773
+UniRef50_D2F8L2: Phage amidase|g__Staphylococcus.s__Staphylococcus_aureus	12.9245930773
+UniRef50_Q9I2V5: Aconitate hydratase 2	12.9222475248
+UniRef50_Q9I2V5: Aconitate hydratase 2|g__Escherichia.s__Escherichia_coli	10.3684613204
+UniRef50_Q9I2V5: Aconitate hydratase 2|g__Helicobacter.s__Helicobacter_pylori	1.6479720366
+UniRef50_Q9I2V5: Aconitate hydratase 2|g__Neisseria.s__Neisseria_meningitidis	0.9058141678
+UniRef50_R9ZKM0: Magnesium transporter	12.9206069555
+UniRef50_R9ZKM0: Magnesium transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.9206069555
+UniRef50_F4N161	12.9186994980
+UniRef50_F4N161|unclassified	12.9186994980
+UniRef50_B7SF07: Dentin sialophosphoprotein (Fragment)	12.9124928945
+UniRef50_B7SF07: Dentin sialophosphoprotein (Fragment)|g__Staphylococcus.s__Staphylococcus_aureus	12.9124928945
+UniRef50_I7FYE4: Ethanolamine permease	12.9117122455
+UniRef50_I7FYE4: Ethanolamine permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.9117122455
+UniRef50_G8PPN5: UbiD family decarboxylase	12.9090201876
+UniRef50_G8PPN5: UbiD family decarboxylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.9090201876
+UniRef50_Q9I1Y1	12.9059228254
+UniRef50_Q9I1Y1|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.9059228254
+UniRef50_G8RFR7	12.8986188710
+UniRef50_G8RFR7|g__Staphylococcus.s__Staphylococcus_aureus	12.8986188710
+UniRef50_A0A024HQB8: Carbamoyl transferase	12.8979860292
+UniRef50_A0A024HQB8: Carbamoyl transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.8979860292
+UniRef50_Q6GI36: Staphostatin B	12.8960669385
+UniRef50_Q6GI36: Staphostatin B|g__Staphylococcus.s__Staphylococcus_aureus	12.8960669385
+UniRef50_Q1R611	12.8946145066
+UniRef50_Q1R611|g__Escherichia.s__Escherichia_coli	7.3952441769
+UniRef50_Q1R611|unclassified	5.4993703297
+UniRef50_K2A0P8: Inner-membrane translocator (Fragment)	12.8886908431
+UniRef50_K2A0P8: Inner-membrane translocator (Fragment)|unclassified	12.8886908431
+UniRef50_Q9ZIS7: Lipopolysaccharide core heptose(II) kinase RfaY	12.8881584703
+UniRef50_Q9ZIS7: Lipopolysaccharide core heptose(II) kinase RfaY|g__Escherichia.s__Escherichia_coli	11.3821343739
+UniRef50_Q9ZIS7: Lipopolysaccharide core heptose(II) kinase RfaY|unclassified	1.5060240964
+UniRef50_I7AAS7	12.8867656903
+UniRef50_I7AAS7|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.8313864952
+UniRef50_I7AAS7|unclassified	1.0553791951
+UniRef50_Q8CPR8: Alcohol dehydrogenase	12.8867087626
+UniRef50_Q8CPR8: Alcohol dehydrogenase|unclassified	12.8867087626
+UniRef50_X5EAP1	12.8841428898
+UniRef50_X5EAP1|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.8841428898
+UniRef50_A0A037YSV8	12.8734114540
+UniRef50_A0A037YSV8|unclassified	12.8734114540
+UniRef50_B9KX95	12.8712139610
+UniRef50_B9KX95|unclassified	12.8712139610
+UniRef50_F3U2B2: Transcriptional regulator, LysR family protein	12.8676876682
+UniRef50_F3U2B2: Transcriptional regulator, LysR family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.8676876682
+UniRef50_W1WF83: AGCS family alanine/glycine:sodium (Na+) symporter (Fragment)	12.8616042078
+UniRef50_W1WF83: AGCS family alanine/glycine:sodium (Na+) symporter (Fragment)|unclassified	12.8616042078
+UniRef50_Q48KZ1: Trigger factor	12.8609107989
+UniRef50_Q48KZ1: Trigger factor|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.0833058222
+UniRef50_Q48KZ1: Trigger factor|unclassified	0.7776049767
+UniRef50_C5NTZ6: Reaction center (Fragment)	12.8603383929
+UniRef50_C5NTZ6: Reaction center (Fragment)|unclassified	12.8603383929
+UniRef50_A5UM47: Energy-converting hydrogenase B, subunit G, EhbG	12.8582142005
+UniRef50_A5UM47: Energy-converting hydrogenase B, subunit G, EhbG|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.8582142005
+UniRef50_P39376: HTH-type transcriptional regulator YjiE	12.8564228192
+UniRef50_P39376: HTH-type transcriptional regulator YjiE|g__Escherichia.s__Escherichia_coli	12.8564228192
+UniRef50_Q63SZ9: 50S ribosomal protein L3 glutamine methyltransferase	12.8539226595
+UniRef50_Q63SZ9: 50S ribosomal protein L3 glutamine methyltransferase|g__Neisseria.s__Neisseria_meningitidis	12.8539226595
+UniRef50_P39805: Transcription antiterminator LicT	12.8492392379
+UniRef50_P39805: Transcription antiterminator LicT|g__Escherichia.s__Escherichia_coli	12.8492392379
+UniRef50_Q01269: Cyclohexadienyl dehydratase	12.8475554618
+UniRef50_Q01269: Cyclohexadienyl dehydratase|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.8475554618
+UniRef50_Q5LXB5: Cell division ATP-binding protein FtsE	12.8444741750
+UniRef50_Q5LXB5: Cell division ATP-binding protein FtsE|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.8444741750
+UniRef50_UPI0003766160: hypothetical protein	12.8393921767
+UniRef50_UPI0003766160: hypothetical protein|unclassified	12.8393921767
+UniRef50_A4XW77: HAD-superfamily hydrolase, subfamily IB (PSPase-like)	12.8373390206
+UniRef50_A4XW77: HAD-superfamily hydrolase, subfamily IB (PSPase-like)|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.8373390206
+UniRef50_B9JXV9: Folylpolyglutamate synthase	12.8321176171
+UniRef50_B9JXV9: Folylpolyglutamate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.8321176171
+UniRef50_B9KKQ1	12.8318307364
+UniRef50_B9KKQ1|unclassified	12.8318307364
+UniRef50_C5N533	12.8257430515
+UniRef50_C5N533|g__Staphylococcus.s__Staphylococcus_epidermidis	8.5338975580
+UniRef50_C5N533|g__Staphylococcus.s__Staphylococcus_aureus	4.2918454936
+UniRef50_B2HTJ9: Anti-anti-sigma regulatory factor (Antagonist of anti-sigma factor)	12.8226204176
+UniRef50_B2HTJ9: Anti-anti-sigma regulatory factor (Antagonist of anti-sigma factor)|g__Acinetobacter.s__Acinetobacter_baumannii	12.8226204176
+UniRef50_A6VD53	12.8205128205
+UniRef50_A6VD53|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.8205128205
+UniRef50_C5BF37: ATP synthase subunit delta	12.8205128205
+UniRef50_C5BF37: ATP synthase subunit delta|g__Escherichia.s__Escherichia_coli	12.8205128205
+UniRef50_G5NU81	12.8205128205
+UniRef50_G5NU81|unclassified	12.8205128205
+UniRef50_I0VSF2	12.8205128205
+UniRef50_I0VSF2|g__Escherichia.s__Escherichia_coli	12.8205128205
+UniRef50_I4T7N2	12.8205128205
+UniRef50_I4T7N2|unclassified	12.8205128205
+UniRef50_P06149: D-lactate dehydrogenase	12.8190139047
+UniRef50_P06149: D-lactate dehydrogenase|g__Escherichia.s__Escherichia_coli	9.8448413635
+UniRef50_P06149: D-lactate dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	2.9741725413
+UniRef50_V2CGD9: D-mannonate oxidoreductase	12.8147301814
+UniRef50_V2CGD9: D-mannonate oxidoreductase|g__Escherichia.s__Escherichia_coli	12.8147301814
+UniRef50_W8TS87: Mannitol-1-phosphate 5-dehydrogenase	12.8143308118
+UniRef50_W8TS87: Mannitol-1-phosphate 5-dehydrogenase|g__Escherichia.s__Escherichia_coli	12.4385187970
+UniRef50_W8TS87: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.3758120148
+UniRef50_B3HGM5	12.8133952076
+UniRef50_B3HGM5|unclassified	9.9148444829
+UniRef50_B3HGM5|g__Escherichia.s__Escherichia_coli	2.8985507246
+UniRef50_Q5HPS3: 30S ribosomal protein L7Ae, putative	12.8111251792
+UniRef50_Q5HPS3: 30S ribosomal protein L7Ae, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	12.8111251792
+UniRef50_P0AFH9: Osmotically-inducible protein Y	12.8069900487
+UniRef50_P0AFH9: Osmotically-inducible protein Y|g__Escherichia.s__Escherichia_coli	12.8069900487
+UniRef50_Q1GJ12	12.8029895269
+UniRef50_Q1GJ12|unclassified	12.8029895269
+UniRef50_P44474: Rod shape-determining protein MreB	12.8019637621
+UniRef50_P44474: Rod shape-determining protein MreB|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.5110060366
+UniRef50_P44474: Rod shape-determining protein MreB|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2909577255
+UniRef50_L0NA87	12.7986651046
+UniRef50_L0NA87|unclassified	12.7986651046
+UniRef50_R9SMF7: DNA-directed RNA polymerase subunit	12.7897927419
+UniRef50_R9SMF7: DNA-directed RNA polymerase subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.7897927419
+UniRef50_Q5LW47: 50S ribosomal protein L24	12.7842385866
+UniRef50_Q5LW47: 50S ribosomal protein L24|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.7842385866
+UniRef50_S1PBL6: Inner membrane protein yiaV	12.7820482584
+UniRef50_S1PBL6: Inner membrane protein yiaV|g__Escherichia.s__Escherichia_coli	12.7820482584
+UniRef50_P0AAV2	12.7809459913
+UniRef50_P0AAV2|g__Escherichia.s__Escherichia_coli	12.7809459913
+UniRef50_H6PBH3: Thioredoxin	12.7774041270
+UniRef50_H6PBH3: Thioredoxin|g__Streptococcus.s__Streptococcus_mutans	12.7774041270
+UniRef50_I0C688	12.7743311771
+UniRef50_I0C688|g__Staphylococcus.s__Staphylococcus_aureus	12.7743311771
+UniRef50_U5NRM8	12.7715553456
+UniRef50_U5NRM8|unclassified	12.7715553456
+UniRef50_V9WJV3: 2-polyprenyl-6-methoxyphenol hydroxylase	12.7675536081
+UniRef50_V9WJV3: 2-polyprenyl-6-methoxyphenol hydroxylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.7675536081
+UniRef50_A1B357	12.7619332873
+UniRef50_A1B357|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.1951219512
+UniRef50_A1B357|unclassified	0.5668113361
+UniRef50_A7MKJ8	12.7616219564
+UniRef50_A7MKJ8|unclassified	12.7616219564
+UniRef50_UPI00037CA3B1: ferredoxin	12.7611403743
+UniRef50_UPI00037CA3B1: ferredoxin|unclassified	12.7611403743
+UniRef50_B9KVZ4: DoxX family protein	12.7584586466
+UniRef50_B9KVZ4: DoxX family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.7584586466
+UniRef50_V5PVU9: ABC transporter ATP-binding protein	12.7576308945
+UniRef50_V5PVU9: ABC transporter ATP-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.7576308945
+UniRef50_D2J9D2: DNA integration/recombination/inversion protein	12.7569679693
+UniRef50_D2J9D2: DNA integration/recombination/inversion protein|g__Staphylococcus.s__Staphylococcus_aureus	12.7569679693
+UniRef50_I4XMD7	12.7552161384
+UniRef50_I4XMD7|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.7552161384
+UniRef50_L1K914	12.7460481634
+UniRef50_L1K914|unclassified	12.7460481634
+UniRef50_D1QA17	12.7435064935
+UniRef50_D1QA17|unclassified	6.4935064935
+UniRef50_D1QA17|g__Staphylococcus.s__Staphylococcus_aureus	6.2500000000
+UniRef50_A3PH61: Lytic transglycosylase, catalytic	12.7423081206
+UniRef50_A3PH61: Lytic transglycosylase, catalytic|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.0902270588
+UniRef50_A3PH61: Lytic transglycosylase, catalytic|unclassified	1.6520810618
+UniRef50_UPI0002BA5A10: MerR family transcriptional regulator	12.7393799857
+UniRef50_UPI0002BA5A10: MerR family transcriptional regulator|g__Staphylococcus.s__Staphylococcus_aureus	10.5810280479
+UniRef50_UPI0002BA5A10: MerR family transcriptional regulator|unclassified	2.1583519378
+UniRef50_R4RS00	12.7380740287
+UniRef50_R4RS00|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.7380740287
+UniRef50_D5WDT4	12.7361991211
+UniRef50_D5WDT4|g__Clostridium.s__Clostridium_beijerinckii	12.7361991211
+UniRef50_P76065	12.7328694781
+UniRef50_P76065|g__Escherichia.s__Escherichia_coli	12.7328694781
+UniRef50_Q8X8F2: Porin OmpL	12.7308910000
+UniRef50_Q8X8F2: Porin OmpL|g__Escherichia.s__Escherichia_coli	12.7308910000
+UniRef50_A6UZY8	12.7290504318
+UniRef50_A6UZY8|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.7290504318
+UniRef50_P67431: HTH-type transcriptional repressor NemR	12.7282684442
+UniRef50_P67431: HTH-type transcriptional repressor NemR|g__Escherichia.s__Escherichia_coli	12.7282684442
+UniRef50_W8RU86: Membrane protein	12.7211133383
+UniRef50_W8RU86: Membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.4870422936
+UniRef50_W8RU86: Membrane protein|unclassified	0.2340710447
+UniRef50_J3L9G7	12.7204656523
+UniRef50_J3L9G7|unclassified	12.7204656523
+UniRef50_Q7VQS0: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	12.7190042903
+UniRef50_Q7VQS0: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|g__Escherichia.s__Escherichia_coli	12.5505511158
+UniRef50_Q7VQS0: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.1684531745
+UniRef50_U3SSK6	12.7136752137
+UniRef50_U3SSK6|g__Streptococcus.s__Streptococcus_mutans	12.7136752137
+UniRef50_O26135: Adenylate kinase	12.7103529197
+UniRef50_O26135: Adenylate kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.7103529197
+UniRef50_F0RXH0: Ornithine decarboxylase	12.7076999378
+UniRef50_F0RXH0: Ornithine decarboxylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.9698170839
+UniRef50_F0RXH0: Ornithine decarboxylase|g__Acinetobacter.s__Acinetobacter_baumannii	2.7378828538
+UniRef50_C7C6X9	12.7061675804
+UniRef50_C7C6X9|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.7820072163
+UniRef50_C7C6X9|unclassified	0.9241603641
+UniRef50_Q49UJ3	12.6984126984
+UniRef50_Q49UJ3|g__Staphylococcus.s__Staphylococcus_aureus	7.4074074074
+UniRef50_Q49UJ3|g__Staphylococcus.s__Staphylococcus_epidermidis	5.2910052910
+UniRef50_Q53177: Periplasmic nitrate reductase, electron transfer subunit	12.6973544404
+UniRef50_Q53177: Periplasmic nitrate reductase, electron transfer subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.6973544404
+UniRef50_A5UNS0	12.6927572929
+UniRef50_A5UNS0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.6927572929
+UniRef50_G7TAD9: D-mannonate dehydratase	12.6886626270
+UniRef50_G7TAD9: D-mannonate dehydratase|g__Staphylococcus.s__Staphylococcus_aureus	7.6335877863
+UniRef50_G7TAD9: D-mannonate dehydratase|g__Escherichia.s__Escherichia_coli	5.0550748407
+UniRef50_Q8FEV4	12.6872593848
+UniRef50_Q8FEV4|g__Escherichia.s__Escherichia_coli	12.6872593848
+UniRef50_P37923: Chaperone protein FimC	12.6803688539
+UniRef50_P37923: Chaperone protein FimC|g__Escherichia.s__Escherichia_coli	12.6803688539
+UniRef50_A7X5V5	12.6722861272
+UniRef50_A7X5V5|unclassified	6.9580004129
+UniRef50_A7X5V5|g__Staphylococcus.s__Staphylococcus_aureus	5.7142857143
+UniRef50_W1X4S8	12.6717216884
+UniRef50_W1X4S8|unclassified	12.6717216884
+UniRef50_B7L5A2	12.6705653021
+UniRef50_B7L5A2|g__Escherichia.s__Escherichia_coli	12.6705653021
+UniRef50_A5UJE8: DNA repair exonuclease (SbcD/Mre11-family), Rad32	12.6678381770
+UniRef50_A5UJE8: DNA repair exonuclease (SbcD/Mre11-family), Rad32|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.6678381770
+UniRef50_A0A058VP66	12.6663949793
+UniRef50_A0A058VP66|unclassified	12.6663949793
+UniRef50_UPI0002375F1F: hypothetical protein	12.6657552432
+UniRef50_UPI0002375F1F: hypothetical protein|unclassified	12.6657552432
+UniRef50_T7WH30: Electron transfer flavoprotein beta subunit	12.6644944802
+UniRef50_T7WH30: Electron transfer flavoprotein beta subunit|g__Escherichia.s__Escherichia_coli	12.6644944802
+UniRef50_P33340	12.6640597503
+UniRef50_P33340|g__Escherichia.s__Escherichia_coli	12.6640597503
+UniRef50_P77562	12.6637632021
+UniRef50_P77562|g__Escherichia.s__Escherichia_coli	12.6637632021
+UniRef50_A8A2W1	12.6582278481
+UniRef50_A8A2W1|g__Escherichia.s__Escherichia_coli	12.6582278481
+UniRef50_B9KN55	12.6582278481
+UniRef50_B9KN55|unclassified	12.6582278481
+UniRef50_C6A264: 50S ribosomal protein L39e	12.6582278481
+UniRef50_C6A264: 50S ribosomal protein L39e|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.6582278481
+UniRef50_E6JNN2	12.6582278481
+UniRef50_E6JNN2|g__Staphylococcus.s__Staphylococcus_epidermidis	12.6582278481
+UniRef50_I6RQF7	12.6582278481
+UniRef50_I6RQF7|unclassified	12.6582278481
+UniRef50_Q5HLL7	12.6582278481
+UniRef50_Q5HLL7|g__Staphylococcus.s__Staphylococcus_epidermidis	12.6582278481
+UniRef50_U5MUF8	12.6582278481
+UniRef50_U5MUF8|g__Clostridium.s__Clostridium_beijerinckii	12.6582278481
+UniRef50_U9Y7F5	12.6582278481
+UniRef50_U9Y7F5|g__Escherichia.s__Escherichia_coli	12.6582278481
+UniRef50_UPI00046CA465: RNA methyltransferase	12.6582278481
+UniRef50_UPI00046CA465: RNA methyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	12.6582278481
+UniRef50_G2SM74: Fe-S-cluster oxidoreductase	12.6541487943
+UniRef50_G2SM74: Fe-S-cluster oxidoreductase|g__Streptococcus.s__Streptococcus_mutans	10.6581408103
+UniRef50_G2SM74: Fe-S-cluster oxidoreductase|g__Streptococcus.s__Streptococcus_agalactiae	1.9960079840
+UniRef50_P08371: Prepilin peptidase-dependent protein B	12.6535871456
+UniRef50_P08371: Prepilin peptidase-dependent protein B|g__Escherichia.s__Escherichia_coli	12.0302902063
+UniRef50_P08371: Prepilin peptidase-dependent protein B|unclassified	0.6232969392
+UniRef50_O30992: Cell division protein FtsZ	12.6528407191
+UniRef50_O30992: Cell division protein FtsZ|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.6528407191
+UniRef50_R9SKZ5: SAM-dependent methyltransferase UbiE family	12.6526950562
+UniRef50_R9SKZ5: SAM-dependent methyltransferase UbiE family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.6526950562
+UniRef50_C6UTD1: Modulator of Rnase II stability	12.6478819844
+UniRef50_C6UTD1: Modulator of Rnase II stability|g__Escherichia.s__Escherichia_coli	12.6478819844
+UniRef50_R5AM14: Transketolase	12.6451658918
+UniRef50_R5AM14: Transketolase|g__Clostridium.s__Clostridium_beijerinckii	12.6451658918
+UniRef50_B9JQX1: Methionyl-tRNA formyltransferase	12.6419530056
+UniRef50_B9JQX1: Methionyl-tRNA formyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.6419530056
+UniRef50_P76014: PTS-dependent dihydroxyacetone kinase, ADP-binding subunit DhaL	12.6384936815
+UniRef50_P76014: PTS-dependent dihydroxyacetone kinase, ADP-binding subunit DhaL|g__Escherichia.s__Escherichia_coli	11.3148513636
+UniRef50_P76014: PTS-dependent dihydroxyacetone kinase, ADP-binding subunit DhaL|unclassified	1.3236423179
+UniRef50_Q8DWB5	12.6299055541
+UniRef50_Q8DWB5|g__Streptococcus.s__Streptococcus_mutans	12.6299055541
+UniRef50_G8LI42	12.6255102663
+UniRef50_G8LI42|g__Escherichia.s__Escherichia_coli	12.6255102663
+UniRef50_B9ADB9: EF hand	12.6241078976
+UniRef50_B9ADB9: EF hand|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.6241078976
+UniRef50_UPI000287F8C3: 50S ribosomal protein L18	12.6233809279
+UniRef50_UPI000287F8C3: 50S ribosomal protein L18|unclassified	12.6233809279
+UniRef50_Q5H1D4: Methionine aminopeptidase	12.6210634190
+UniRef50_Q5H1D4: Methionine aminopeptidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.6210634190
+UniRef50_Q7UID0: Thymidylate synthase	12.6210047497
+UniRef50_Q7UID0: Thymidylate synthase|g__Escherichia.s__Escherichia_coli	10.9548297421
+UniRef50_Q7UID0: Thymidylate synthase|g__Neisseria.s__Neisseria_meningitidis	1.3793103448
+UniRef50_Q7UID0: Thymidylate synthase|unclassified	0.2868646628
+UniRef50_Q6LLQ5: Probable GTP-binding protein EngB	12.6200639000
+UniRef50_Q6LLQ5: Probable GTP-binding protein EngB|g__Escherichia.s__Escherichia_coli	12.6200639000
+UniRef50_K8B0J3: Acetyl-coenzyme A synthetase	12.6198621041
+UniRef50_K8B0J3: Acetyl-coenzyme A synthetase|g__Escherichia.s__Escherichia_coli	12.6198621041
+UniRef50_K6MT38	12.6194650885
+UniRef50_K6MT38|g__Acinetobacter.s__Acinetobacter_baumannii	12.6194650885
+UniRef50_U3SUQ8	12.6194267516
+UniRef50_U3SUQ8|g__Streptococcus.s__Streptococcus_mutans	12.6194267516
+UniRef50_H4XIK4	12.6193147345
+UniRef50_H4XIK4|g__Escherichia.s__Escherichia_coli	12.6193147345
+UniRef50_C5CWI4: ABC transporter related	12.6158229298
+UniRef50_C5CWI4: ABC transporter related|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.6158229298
+UniRef50_F4LVE5	12.6096387918
+UniRef50_F4LVE5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.6096387918
+UniRef50_H3V108	12.6087121644
+UniRef50_H3V108|g__Staphylococcus.s__Staphylococcus_epidermidis	12.6087121644
+UniRef50_A6LU01	12.6076276661
+UniRef50_A6LU01|g__Clostridium.s__Clostridium_beijerinckii	12.6076276661
+UniRef50_P0ABL3: Periplasmic nitrate reductase, electron transfer subunit	12.5971468253
+UniRef50_P0ABL3: Periplasmic nitrate reductase, electron transfer subunit|g__Escherichia.s__Escherichia_coli	12.5971468253
+UniRef50_S5YTM5: Acetamidase/formamidase	12.5961611715
+UniRef50_S5YTM5: Acetamidase/formamidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.5961611715
+UniRef50_B9KSC1	12.5948109185
+UniRef50_B9KSC1|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.7659702552
+UniRef50_B9KSC1|unclassified	4.8288406633
+UniRef50_V5SSD0: TRAP transporter	12.5888908186
+UniRef50_V5SSD0: TRAP transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.4015241724
+UniRef50_V5SSD0: TRAP transporter|unclassified	1.1873666462
+UniRef50_F6A9Z4: Auxin Efflux Carrier	12.5888872304
+UniRef50_F6A9Z4: Auxin Efflux Carrier|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.5888872304
+UniRef50_E3A4Z7	12.5883149493
+UniRef50_E3A4Z7|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.5883149493
+UniRef50_Q2IMJ3: LigA	12.5850324570
+UniRef50_Q2IMJ3: LigA|unclassified	12.5850324570
+UniRef50_T2DYR1: Tryptophan/tyrosine permease family protein	12.5847245062
+UniRef50_T2DYR1: Tryptophan/tyrosine permease family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.5847245062
+UniRef50_T8P6W0: Glutathione-regulated potassium-efflux system protein kefC	12.5829378138
+UniRef50_T8P6W0: Glutathione-regulated potassium-efflux system protein kefC|g__Escherichia.s__Escherichia_coli	12.5829378138
+UniRef50_Q46871: NADPH-dependent ferric-chelate reductase	12.5802454823
+UniRef50_Q46871: NADPH-dependent ferric-chelate reductase|g__Escherichia.s__Escherichia_coli	12.5802454823
+UniRef50_U0AT69: Metabolite transporter YdjK	12.5745895590
+UniRef50_U0AT69: Metabolite transporter YdjK|g__Escherichia.s__Escherichia_coli	12.5745895590
+UniRef50_B9DZC4	12.5740196062
+UniRef50_B9DZC4|g__Clostridium.s__Clostridium_beijerinckii	12.5479267669
+UniRef50_B9DZC4|unclassified	0.0260928393
+UniRef50_F2F5B1: Predicted acetamidase/formamidase	12.5732866288
+UniRef50_F2F5B1: Predicted acetamidase/formamidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.5732866288
+UniRef50_S9SME8	12.5726659092
+UniRef50_S9SME8|unclassified	12.5726659092
+UniRef50_A9BPL9: Alkylphosphonate utilization operon protein PhnA	12.5707102451
+UniRef50_A9BPL9: Alkylphosphonate utilization operon protein PhnA|g__Streptococcus.s__Streptococcus_agalactiae	6.7567567568
+UniRef50_A9BPL9: Alkylphosphonate utilization operon protein PhnA|g__Neisseria.s__Neisseria_meningitidis	5.8139534884
+UniRef50_R7PX40	12.5631695740
+UniRef50_R7PX40|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.5631695740
+UniRef50_Q8XWR3: Prolipoprotein diacylglyceryl transferase	12.5543785613
+UniRef50_Q8XWR3: Prolipoprotein diacylglyceryl transferase|g__Escherichia.s__Escherichia_coli	12.2648917181
+UniRef50_Q8XWR3: Prolipoprotein diacylglyceryl transferase|unclassified	0.2894868432
+UniRef50_Q5HRZ2	12.5533681908
+UniRef50_Q5HRZ2|g__Staphylococcus.s__Staphylococcus_epidermidis	8.3160800552
+UniRef50_Q5HRZ2|unclassified	4.2372881356
+UniRef50_P77288	12.5531651119
+UniRef50_P77288|g__Escherichia.s__Escherichia_coli	12.5531651119
+UniRef50_A5UKF2	12.5529908384
+UniRef50_A5UKF2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.5529908384
+UniRef50_D3NUN5: MoxR-like ATPase	12.5475355928
+UniRef50_D3NUN5: MoxR-like ATPase|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.5475355928
+UniRef50_Q8XE09: 2-keto-3-deoxy-L-rhamnonate aldolase	12.5459649805
+UniRef50_Q8XE09: 2-keto-3-deoxy-L-rhamnonate aldolase|g__Escherichia.s__Escherichia_coli	9.5302714285
+UniRef50_Q8XE09: 2-keto-3-deoxy-L-rhamnonate aldolase|unclassified	3.0156935520
+UniRef50_Q1QBI6: Aminoglycoside phosphotransferase	12.5424428003
+UniRef50_Q1QBI6: Aminoglycoside phosphotransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.6495856575
+UniRef50_Q1QBI6: Aminoglycoside phosphotransferase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8928571429
+UniRef50_C5N5V8	12.5422662578
+UniRef50_C5N5V8|g__Staphylococcus.s__Staphylococcus_aureus	12.5422662578
+UniRef50_I7EN44: Acetylornithine deacetylase ArgE	12.5398353187
+UniRef50_I7EN44: Acetylornithine deacetylase ArgE|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.5398353187
+UniRef50_T2ER45	12.5393081761
+UniRef50_T2ER45|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.5393081761
+UniRef50_Q6LI26: Glutathione peroxidase	12.5356103894
+UniRef50_Q6LI26: Glutathione peroxidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.5356103894
+UniRef50_T2E292: Bacterial regulatory s, luxR family protein	12.5304478069
+UniRef50_T2E292: Bacterial regulatory s, luxR family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.5304478069
+UniRef50_H3MMC9	12.5294811321
+UniRef50_H3MMC9|g__Escherichia.s__Escherichia_coli	12.5294811321
+UniRef50_F2A904	12.5283659151
+UniRef50_F2A904|unclassified	12.5283659151
+UniRef50_A9MRB3	12.5273352077
+UniRef50_A9MRB3|g__Escherichia.s__Escherichia_coli	12.5273352077
+UniRef50_Q6LRE4: Anhydro-N-acetylmuramic acid kinase	12.5270330244
+UniRef50_Q6LRE4: Anhydro-N-acetylmuramic acid kinase|g__Escherichia.s__Escherichia_coli	12.5270330244
+UniRef50_P64549	12.5227836704
+UniRef50_P64549|g__Escherichia.s__Escherichia_coli	12.5227836704
+UniRef50_V4RER5	12.5128066638
+UniRef50_V4RER5|g__Staphylococcus.s__Staphylococcus_aureus	9.8608311272
+UniRef50_V4RER5|unclassified	2.6519755366
+UniRef50_P00946: Mannose-6-phosphate isomerase	12.5048396843
+UniRef50_P00946: Mannose-6-phosphate isomerase|g__Escherichia.s__Escherichia_coli	12.5048396843
+UniRef50_A0A025XI46: Membrane protein (Fragment)	12.5010461410
+UniRef50_A0A025XI46: Membrane protein (Fragment)|g__Escherichia.s__Escherichia_coli	12.5010461410
+UniRef50_E2ZSC4	12.5000000000
+UniRef50_E2ZSC4|unclassified	12.5000000000
+UniRef50_H3UCQ6	12.5000000000
+UniRef50_H3UCQ6|g__Staphylococcus.s__Staphylococcus_epidermidis	12.5000000000
+UniRef50_J9V4R4	12.5000000000
+UniRef50_J9V4R4|g__Staphylococcus.s__Staphylococcus_aureus	12.5000000000
+UniRef50_R9DEA0	12.5000000000
+UniRef50_R9DEA0|unclassified	12.5000000000
+UniRef50_X6BZ54: HNH endonuclease	12.5000000000
+UniRef50_X6BZ54: HNH endonuclease|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.5000000000
+UniRef50_P23481: Hydrogenase-4 component A	12.4987407634
+UniRef50_P23481: Hydrogenase-4 component A|g__Escherichia.s__Escherichia_coli	12.4987407634
+UniRef50_Q9HUV8: Phosphoribosylamine--glycine ligase	12.4971803119
+UniRef50_Q9HUV8: Phosphoribosylamine--glycine ligase|g__Acinetobacter.s__Acinetobacter_baumannii	7.4437725563
+UniRef50_Q9HUV8: Phosphoribosylamine--glycine ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0349583688
+UniRef50_Q9HUV8: Phosphoribosylamine--glycine ligase|g__Neisseria.s__Neisseria_meningitidis	2.0184493869
+UniRef50_Q8ZNT5: Cellulose synthesis regulatory protein	12.4944955409
+UniRef50_Q8ZNT5: Cellulose synthesis regulatory protein|g__Escherichia.s__Escherichia_coli	12.4944955409
+UniRef50_I1ZJN7	12.4915305627
+UniRef50_I1ZJN7|g__Streptococcus.s__Streptococcus_mutans	12.3909818846
+UniRef50_I1ZJN7|unclassified	0.1005486781
+UniRef50_A5WGK5: Aspartate carbamoyltransferase	12.4889637406
+UniRef50_A5WGK5: Aspartate carbamoyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.6168448061
+UniRef50_A5WGK5: Aspartate carbamoyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	4.8721189345
+UniRef50_I6EPA8	12.4855503362
+UniRef50_I6EPA8|g__Escherichia.s__Escherichia_coli	8.9285714286
+UniRef50_I6EPA8|unclassified	3.5569789076
+UniRef50_A0A022NE52	12.4848882275
+UniRef50_A0A022NE52|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.6206896552
+UniRef50_A0A022NE52|unclassified	3.8641985723
+UniRef50_M9NUJ4	12.4794840679
+UniRef50_M9NUJ4|unclassified	12.4794840679
+UniRef50_P26496: Poly(3-hydroxyalkanoate) polymerase 2	12.4775616313
+UniRef50_P26496: Poly(3-hydroxyalkanoate) polymerase 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.4775616313
+UniRef50_D7YAA8: Poly-beta-1,6 N-acetyl-D-glucosamine export porin PgaA	12.4733923628
+UniRef50_D7YAA8: Poly-beta-1,6 N-acetyl-D-glucosamine export porin PgaA|g__Escherichia.s__Escherichia_coli	12.4733923628
+UniRef50_L2D926: Fimbrial-like adhesin protein	12.4701410896
+UniRef50_L2D926: Fimbrial-like adhesin protein|g__Escherichia.s__Escherichia_coli	12.4701410896
+UniRef50_I6SVK8: Thioredoxin	12.4661388878
+UniRef50_I6SVK8: Thioredoxin|g__Streptococcus.s__Streptococcus_mutans	12.4661388878
+UniRef50_P52613: Flagellar FliJ protein	12.4622933081
+UniRef50_P52613: Flagellar FliJ protein|g__Escherichia.s__Escherichia_coli	12.4622933081
+UniRef50_A8I308: D-hydantoinase	12.4582997541
+UniRef50_A8I308: D-hydantoinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.4582997541
+UniRef50_B5Z4H5	12.4574024991
+UniRef50_B5Z4H5|unclassified	7.1942446043
+UniRef50_B5Z4H5|g__Escherichia.s__Escherichia_coli	5.2631578947
+UniRef50_I0ZPZ0: Hydrogenase 1 large subunit	12.4561351514
+UniRef50_I0ZPZ0: Hydrogenase 1 large subunit|g__Escherichia.s__Escherichia_coli	12.4561351514
+UniRef50_A1B631: Phage-related minor tail protein-like protein	12.4554249917
+UniRef50_A1B631: Phage-related minor tail protein-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.4092983927
+UniRef50_A1B631: Phage-related minor tail protein-like protein|unclassified	1.0461265990
+UniRef50_H2A8Y2	12.4547101449
+UniRef50_H2A8Y2|g__Streptococcus.s__Streptococcus_mutans	12.4547101449
+UniRef50_A6VEM4	12.4413859062
+UniRef50_A6VEM4|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.7239137872
+UniRef50_A6VEM4|unclassified	3.7174721190
+UniRef50_P0C8Z9: Common pilus major fimbrillin subunit EcpA	12.4411140678
+UniRef50_P0C8Z9: Common pilus major fimbrillin subunit EcpA|g__Escherichia.s__Escherichia_coli	12.4411140678
+UniRef50_F2AE33	12.4399805900
+UniRef50_F2AE33|unclassified	12.4399805900
+UniRef50_V8N3A8	12.4371608110
+UniRef50_V8N3A8|unclassified	12.4371608110
+UniRef50_Q2NH37	12.4295782191
+UniRef50_Q2NH37|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.4295782191
+UniRef50_I7EZZ6	12.4255336290
+UniRef50_I7EZZ6|unclassified	12.4255336290
+UniRef50_K8E750	12.4247787611
+UniRef50_K8E750|g__Staphylococcus.s__Staphylococcus_aureus	12.4247787611
+UniRef50_I3X371	12.4219782923
+UniRef50_I3X371|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.4219782923
+UniRef50_Q51553: (R)-3-hydroxydecanoyl-ACP:CoA transacylase	12.4214962096
+UniRef50_Q51553: (R)-3-hydroxydecanoyl-ACP:CoA transacylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.6863537765
+UniRef50_Q51553: (R)-3-hydroxydecanoyl-ACP:CoA transacylase|unclassified	0.7351424331
+UniRef50_D3HNL5: Cytochrome c oxidase subunit 2	12.4212494365
+UniRef50_D3HNL5: Cytochrome c oxidase subunit 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.4212494365
+UniRef50_Q3J216: Putative class I holin	12.4193381928
+UniRef50_Q3J216: Putative class I holin|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.4193381928
+UniRef50_C3MCT2	12.4190492508
+UniRef50_C3MCT2|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.8512906956
+UniRef50_C3MCT2|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5677585552
+UniRef50_A9WVW5	12.4166925669
+UniRef50_A9WVW5|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.4166925669
+UniRef50_R8X1X2	12.4122409939
+UniRef50_R8X1X2|g__Escherichia.s__Escherichia_coli	12.1317744460
+UniRef50_R8X1X2|unclassified	0.2804665479
+UniRef50_W7VQA0	12.4115851604
+UniRef50_W7VQA0|unclassified	12.4115851604
+UniRef50_G3XD23: UDP-N-acetyl-2-amino-2-deoxy-D-glucuronate oxidase	12.4060174358
+UniRef50_G3XD23: UDP-N-acetyl-2-amino-2-deoxy-D-glucuronate oxidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.8601066722
+UniRef50_G3XD23: UDP-N-acetyl-2-amino-2-deoxy-D-glucuronate oxidase|g__Acinetobacter.s__Acinetobacter_baumannii	3.5459107635
+UniRef50_A0A024HD80: UPF0126 membrane protein	12.3994860875
+UniRef50_A0A024HD80: UPF0126 membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.2954465791
+UniRef50_A0A024HD80: UPF0126 membrane protein|unclassified	0.1040395084
+UniRef50_P77239: Cation efflux system protein CusB	12.3972437159
+UniRef50_P77239: Cation efflux system protein CusB|g__Escherichia.s__Escherichia_coli	12.3972437159
+UniRef50_I6TQL5: Transcriptional regulator	12.3964610238
+UniRef50_I6TQL5: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	12.3964610238
+UniRef50_Q9RZJ6	12.3953844435
+UniRef50_Q9RZJ6|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.3953844435
+UniRef50_Q4TIC7: Chromosome undetermined SCAF2249, whole genome shotgun sequence. (Fragment)	12.3945789271
+UniRef50_Q4TIC7: Chromosome undetermined SCAF2249, whole genome shotgun sequence. (Fragment)|unclassified	12.3945789271
+UniRef50_A5WEV0: Serine O-acetyltransferase	12.3914602000
+UniRef50_A5WEV0: Serine O-acetyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.3914602000
+UniRef50_P37168: Putative oxidoreductase YceM	12.3891735088
+UniRef50_P37168: Putative oxidoreductase YceM|g__Escherichia.s__Escherichia_coli	12.3891735088
+UniRef50_E5THR4	12.3849693252
+UniRef50_E5THR4|unclassified	12.3849693252
+UniRef50_K4SQW1: Cobalt-zinc-cadmium resistance protein CzcA Cation efflux system protein CusA	12.3841246334
+UniRef50_K4SQW1: Cobalt-zinc-cadmium resistance protein CzcA Cation efflux system protein CusA|g__Escherichia.s__Escherichia_coli	12.3841246334
+UniRef50_Q7CQY4: Chitoporin	12.3779969989
+UniRef50_Q7CQY4: Chitoporin|g__Escherichia.s__Escherichia_coli	12.3779969989
+UniRef50_Q8CW45: Outer-membrane lipoprotein LolB	12.3779493602
+UniRef50_Q8CW45: Outer-membrane lipoprotein LolB|g__Escherichia.s__Escherichia_coli	12.3779493602
+UniRef50_I4CSN5	12.3768472906
+UniRef50_I4CSN5|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.3768472906
+UniRef50_P55734: Inner membrane protein YgaP	12.3758999330
+UniRef50_P55734: Inner membrane protein YgaP|g__Escherichia.s__Escherichia_coli	12.3758999330
+UniRef50_A6VB56	12.3740334065
+UniRef50_A6VB56|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.8728291271
+UniRef50_A6VB56|unclassified	0.5012042794
+UniRef50_R7PZ24	12.3729242792
+UniRef50_R7PZ24|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.3729242792
+UniRef50_B9KU09	12.3647186147
+UniRef50_B9KU09|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.3647186147
+UniRef50_B9TC98: Xanthosine phosphorylase, putative	12.3645286620
+UniRef50_B9TC98: Xanthosine phosphorylase, putative|g__Escherichia.s__Escherichia_coli	12.3645286620
+UniRef50_R9ZEN7: HAD family hydrolase	12.3550164773
+UniRef50_R9ZEN7: HAD family hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.3550164773
+UniRef50_Q7VZ05: Tryptophan--tRNA ligase	12.3549700528
+UniRef50_Q7VZ05: Tryptophan--tRNA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.1444537125
+UniRef50_Q7VZ05: Tryptophan--tRNA ligase|unclassified	0.2105163403
+UniRef50_Y7NF18	12.3537327954
+UniRef50_Y7NF18|unclassified	12.3537327954
+UniRef50_R7PVV7: Conserved hypothetical membrane protein Msm_1770	12.3532289628
+UniRef50_R7PVV7: Conserved hypothetical membrane protein Msm_1770|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.3532289628
+UniRef50_W0YTU6: Aminoglycoside response regulator	12.3518627951
+UniRef50_W0YTU6: Aminoglycoside response regulator|unclassified	12.3518627951
+UniRef50_X5PNE7	12.3480230850
+UniRef50_X5PNE7|unclassified	12.3480230850
+UniRef50_A4WNG7	12.3478512754
+UniRef50_A4WNG7|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.3478512754
+UniRef50_B9NQ23	12.3456790123
+UniRef50_B9NQ23|unclassified	12.3456790123
+UniRef50_J0KRV4	12.3456790123
+UniRef50_J0KRV4|g__Staphylococcus.s__Staphylococcus_aureus	12.3456790123
+UniRef50_Q9RS69	12.3456790123
+UniRef50_Q9RS69|g__Deinococcus.s__Deinococcus_radiodurans	12.3456790123
+UniRef50_R8ZCP7: Glycerophosphodiester phosphodiesterase	12.3456790123
+UniRef50_R8ZCP7: Glycerophosphodiester phosphodiesterase|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.3456790123
+UniRef50_X7L674: Alpha,alpha-trehalose-phosphate synthase [UDP-forming]	12.3456790123
+UniRef50_X7L674: Alpha,alpha-trehalose-phosphate synthase [UDP-forming]|g__Escherichia.s__Escherichia_coli	12.3456790123
+UniRef50_Z2SVS2	12.3456790123
+UniRef50_Z2SVS2|unclassified	12.3456790123
+UniRef50_Z9D250	12.3456790123
+UniRef50_Z9D250|unclassified	12.3456790123
+UniRef50_Q83SQ3: Glutathione-regulated potassium-efflux system protein KefC	12.3429010117
+UniRef50_Q83SQ3: Glutathione-regulated potassium-efflux system protein KefC|g__Escherichia.s__Escherichia_coli	12.3429010117
+UniRef50_A4EN59	12.3419522068
+UniRef50_A4EN59|unclassified	12.3419522068
+UniRef50_X7ECS1: Transposase	12.3410262839
+UniRef50_X7ECS1: Transposase|unclassified	12.3410262839
+UniRef50_F8JE41	12.3395729971
+UniRef50_F8JE41|unclassified	12.3395729971
+UniRef50_I4XUK4: Outer membrane porin, OprD family	12.3363157680
+UniRef50_I4XUK4: Outer membrane porin, OprD family|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.3363157680
+UniRef50_B7UXX5	12.3274341665
+UniRef50_B7UXX5|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.3274341665
+UniRef50_U6AJ35: Pyocin protein	12.3256657848
+UniRef50_U6AJ35: Pyocin protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.3256657848
+UniRef50_P96676	12.3220167374
+UniRef50_P96676|g__Clostridium.s__Clostridium_beijerinckii	12.3220167374
+UniRef50_A9KV03: Two component transcriptional regulator, winged helix family	12.3207956552
+UniRef50_A9KV03: Two component transcriptional regulator, winged helix family|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.3207956552
+UniRef50_U5NN27: Antitoxin of type II toxin-antitoxin system	12.3097201265
+UniRef50_U5NN27: Antitoxin of type II toxin-antitoxin system|unclassified	12.3097201265
+UniRef50_C6A2X9: Protein TSIB_0916	12.3087696617
+UniRef50_C6A2X9: Protein TSIB_0916|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.3087696617
+UniRef50_B9KSK5	12.3085411174
+UniRef50_B9KSK5|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.6121772927
+UniRef50_B9KSK5|unclassified	1.6963638247
+UniRef50_Q9I3X4	12.3043651740
+UniRef50_Q9I3X4|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.3043651740
+UniRef50_P39332: RutC family protein YjgH	12.3033201636
+UniRef50_P39332: RutC family protein YjgH|g__Escherichia.s__Escherichia_coli	12.3033201636
+UniRef50_Q5PCT5: DNA-binding protein H-NS	12.3005524851
+UniRef50_Q5PCT5: DNA-binding protein H-NS|g__Escherichia.s__Escherichia_coli	12.3005524851
+UniRef50_P37174: Cys-tRNA(Pro)/Cys-tRNA(Cys) deacylase YbaK	12.2990420184
+UniRef50_P37174: Cys-tRNA(Pro)/Cys-tRNA(Cys) deacylase YbaK|g__Escherichia.s__Escherichia_coli	12.2990420184
+UniRef50_K0LKT0	12.2986990923
+UniRef50_K0LKT0|g__Staphylococcus.s__Staphylococcus_aureus	12.2986990923
+UniRef50_C6SU74	12.2934236306
+UniRef50_C6SU74|g__Streptococcus.s__Streptococcus_mutans	12.2934236306
+UniRef50_O26310: DNA polymerase PolB subunit 2	12.2883859466
+UniRef50_O26310: DNA polymerase PolB subunit 2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.2883859466
+UniRef50_O34206: Alginate biosynthesis sensor protein KinB	12.2869156400
+UniRef50_O34206: Alginate biosynthesis sensor protein KinB|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.4038689927
+UniRef50_O34206: Alginate biosynthesis sensor protein KinB|unclassified	0.8830466473
+UniRef50_A5UMB3	12.2868168871
+UniRef50_A5UMB3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.2868168871
+UniRef50_A3PND5: Saccharopine dehydrogenase (NAD+, L-lysine-forming)	12.2794093354
+UniRef50_A3PND5: Saccharopine dehydrogenase (NAD+, L-lysine-forming)|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.2794093354
+UniRef50_B9KSB3	12.2788550101
+UniRef50_B9KSB3|unclassified	12.2788550101
+UniRef50_A3PRN6	12.2730868188
+UniRef50_A3PRN6|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.2730868188
+UniRef50_A4WXX3: Transcriptional regulator, DeoR family	12.2695473110
+UniRef50_A4WXX3: Transcriptional regulator, DeoR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.2695473110
+UniRef50_P58224: Putative outer membrane protein YiaT	12.2661010967
+UniRef50_P58224: Putative outer membrane protein YiaT|g__Escherichia.s__Escherichia_coli	12.2661010967
+UniRef50_Q5HGS4	12.2563947221
+UniRef50_Q5HGS4|g__Staphylococcus.s__Staphylococcus_aureus	11.9047619048
+UniRef50_Q5HGS4|unclassified	0.3516328174
+UniRef50_H9UPU8: Ornithine decarboxylase	12.2563307962
+UniRef50_H9UPU8: Ornithine decarboxylase|g__Escherichia.s__Escherichia_coli	12.2563307962
+UniRef50_P0AFS7: UPF0118 inner membrane protein YdiK	12.2534939553
+UniRef50_P0AFS7: UPF0118 inner membrane protein YdiK|g__Escherichia.s__Escherichia_coli	12.2534939553
+UniRef50_P44726: UPF0701 protein HI_0467	12.2514644829
+UniRef50_P44726: UPF0701 protein HI_0467|g__Escherichia.s__Escherichia_coli	12.2514644829
+UniRef50_B2K308: UPF0502 protein YPTS_2082	12.2513774618
+UniRef50_B2K308: UPF0502 protein YPTS_2082|g__Escherichia.s__Escherichia_coli	12.1488738368
+UniRef50_B2K308: UPF0502 protein YPTS_2082|unclassified	0.1025036251
+UniRef50_Q2YYU0	12.2485265549
+UniRef50_Q2YYU0|g__Staphylococcus.s__Staphylococcus_aureus	12.2485265549
+UniRef50_A5UJV7: Predicted ATPase (AAA+ superfamily)	12.2433826878
+UniRef50_A5UJV7: Predicted ATPase (AAA+ superfamily)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.2433826878
+UniRef50_V6G3R8: ABC transporter, substrate-binding protein, family 5 domain protein	12.2384081829
+UniRef50_V6G3R8: ABC transporter, substrate-binding protein, family 5 domain protein|g__Escherichia.s__Escherichia_coli	12.2384081829
+UniRef50_Q05599: Bifunctional adenosylcobalamin biosynthesis protein CobU	12.2371766918
+UniRef50_Q05599: Bifunctional adenosylcobalamin biosynthesis protein CobU|g__Escherichia.s__Escherichia_coli	12.2371766918
+UniRef50_F9ZKH5	12.2353674810
+UniRef50_F9ZKH5|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.2353674810
+UniRef50_A5UP53: TPR repeat protein	12.2338490923
+UniRef50_A5UP53: TPR repeat protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.2338490923
+UniRef50_A5UK83	12.2328548644
+UniRef50_A5UK83|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.2328548644
+UniRef50_M9VFV0: HAD hydrolase, family IIB	12.2289323925
+UniRef50_M9VFV0: HAD hydrolase, family IIB|g__Propionibacterium.s__Propionibacterium_acnes	12.2289323925
+UniRef50_P22805: Adenosylmethionine-8-amino-7-oxononanoate aminotransferase	12.2278696125
+UniRef50_P22805: Adenosylmethionine-8-amino-7-oxononanoate aminotransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.2278696125
+UniRef50_O26931: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	12.2269022559
+UniRef50_O26931: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.7592157718
+UniRef50_O26931: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.4676864841
+UniRef50_Q07ML1	12.2203778239
+UniRef50_Q07ML1|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.2203778239
+UniRef50_Q9I700: Beta-alanine--pyruvate aminotransferase	12.2172612309
+UniRef50_Q9I700: Beta-alanine--pyruvate aminotransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.1606876663
+UniRef50_Q9I700: Beta-alanine--pyruvate aminotransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.8775862069
+UniRef50_Q9I700: Beta-alanine--pyruvate aminotransferase|unclassified	0.1789873576
+UniRef50_A3PKN1	12.2141307471
+UniRef50_A3PKN1|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.2141307471
+UniRef50_F2ADJ4	12.2135249238
+UniRef50_F2ADJ4|unclassified	12.2135249238
+UniRef50_P0AAB0: Zinc resistance-associated protein	12.2109258619
+UniRef50_P0AAB0: Zinc resistance-associated protein|g__Escherichia.s__Escherichia_coli	12.2109258619
+UniRef50_C4YTW9: Mitochondrial peroxiredoxin PRX1	12.2096400314
+UniRef50_C4YTW9: Mitochondrial peroxiredoxin PRX1|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.2096400314
+UniRef50_Q9HYT1	12.2084495783
+UniRef50_Q9HYT1|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.2084495783
+UniRef50_J7M2N5: Dipeptide-binding protein	12.2052622476
+UniRef50_J7M2N5: Dipeptide-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	12.2052622476
+UniRef50_P77721	12.2041355864
+UniRef50_P77721|g__Clostridium.s__Clostridium_beijerinckii	9.3843782756
+UniRef50_P77721|g__Escherichia.s__Escherichia_coli	2.8197573108
+UniRef50_Q3IX62	12.2041033846
+UniRef50_Q3IX62|unclassified	12.2041033846
+UniRef50_U4V0C7	12.1964468724
+UniRef50_U4V0C7|g__Escherichia.s__Escherichia_coli	12.1964468724
+UniRef50_B8ENG4: Leucyl aminopeptidase	12.1954693241
+UniRef50_B8ENG4: Leucyl aminopeptidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.1954693241
+UniRef50_A0A023YPZ1	12.1951219512
+UniRef50_A0A023YPZ1|g__Escherichia.s__Escherichia_coli	12.1951219512
+UniRef50_A6V320	12.1951219512
+UniRef50_A6V320|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.1951219512
+UniRef50_A8YYJ2	12.1951219512
+UniRef50_A8YYJ2|unclassified	12.1951219512
+UniRef50_J7ACP2: Nitrite extrusion protein	12.1951219512
+UniRef50_J7ACP2: Nitrite extrusion protein|unclassified	12.1951219512
+UniRef50_L0A753: PRPP-binding protein, adenine/guanine phosphoribosyltransferase	12.1951219512
+UniRef50_L0A753: PRPP-binding protein, adenine/guanine phosphoribosyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	12.1951219512
+UniRef50_M2K3R6	12.1951219512
+UniRef50_M2K3R6|g__Streptococcus.s__Streptococcus_mutans	12.1951219512
+UniRef50_Q52K39	12.1951219512
+UniRef50_Q52K39|unclassified	12.1951219512
+UniRef50_V5AK99	12.1951219512
+UniRef50_V5AK99|g__Streptococcus.s__Streptococcus_mutans	12.1951219512
+UniRef50_Q8VSZ9: AgrC (Fragment)	12.1856961493
+UniRef50_Q8VSZ9: AgrC (Fragment)|unclassified	12.1856961493
+UniRef50_P31549: Thiamine transport system permease protein ThiP	12.1855947338
+UniRef50_P31549: Thiamine transport system permease protein ThiP|g__Escherichia.s__Escherichia_coli	12.1855947338
+UniRef50_A5UMY2: ADP-ribose pyrophosphatase, NUDIX hydrolase family	12.1833839919
+UniRef50_A5UMY2: ADP-ribose pyrophosphatase, NUDIX hydrolase family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.1833839919
+UniRef50_L0DFT8: Arabinose efflux permease family protein	12.1829432802
+UniRef50_L0DFT8: Arabinose efflux permease family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.1829432802
+UniRef50_O27566	12.1829173971
+UniRef50_O27566|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.1829173971
+UniRef50_S7NES6: Teichoic acid ABC transporter permease (Fragment)	12.1649626292
+UniRef50_S7NES6: Teichoic acid ABC transporter permease (Fragment)|unclassified	12.1649626292
+UniRef50_A5UNV9	12.1638619272
+UniRef50_A5UNV9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.1638619272
+UniRef50_S5Z097	12.1618109067
+UniRef50_S5Z097|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.9152857673
+UniRef50_S5Z097|unclassified	0.2465251394
+UniRef50_Q8YBF1: Respiratory nitrate reductase 1 alpha chain	12.1570736604
+UniRef50_Q8YBF1: Respiratory nitrate reductase 1 alpha chain|g__Escherichia.s__Escherichia_coli	12.1570736604
+UniRef50_UPI0003B534E7: 50S ribosomal protein L33	12.1512469216
+UniRef50_UPI0003B534E7: 50S ribosomal protein L33|unclassified	12.1512469216
+UniRef50_Q5HXL7	12.1448780420
+UniRef50_Q5HXL7|unclassified	12.1448780420
+UniRef50_B3QG99: Transport system permease protein	12.1379758427
+UniRef50_B3QG99: Transport system permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.1379758427
+UniRef50_E3A4M7	12.1336377217
+UniRef50_E3A4M7|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.1336377217
+UniRef50_P55891: Motility protein A	12.1260653748
+UniRef50_P55891: Motility protein A|g__Escherichia.s__Escherichia_coli	12.1260653748
+UniRef50_A6LY82: Alpha/beta superfamily-like hydrolase	12.1243603926
+UniRef50_A6LY82: Alpha/beta superfamily-like hydrolase|g__Clostridium.s__Clostridium_beijerinckii	12.1243603926
+UniRef50_Q9G021: Phi ETA orf 24-like protein	12.1196569338
+UniRef50_Q9G021: Phi ETA orf 24-like protein|g__Staphylococcus.s__Staphylococcus_aureus	11.8213058419
+UniRef50_Q9G021: Phi ETA orf 24-like protein|unclassified	0.2983510918
+UniRef50_Q8FDB5: Antitoxin PrlF	12.1182899389
+UniRef50_Q8FDB5: Antitoxin PrlF|g__Escherichia.s__Escherichia_coli	12.1182899389
+UniRef50_P0AFE2: NADH-quinone oxidoreductase subunit J	12.1176723056
+UniRef50_P0AFE2: NADH-quinone oxidoreductase subunit J|g__Escherichia.s__Escherichia_coli	12.1176723056
+UniRef50_Q9I576: 4-hydroxyphenylpyruvate dioxygenase	12.1146050689
+UniRef50_Q9I576: 4-hydroxyphenylpyruvate dioxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.1146050689
+UniRef50_B9KNI1	12.1136934966
+UniRef50_B9KNI1|unclassified	12.1136934966
+UniRef50_F4A673: Hydrogenase maturation factor	12.1108294236
+UniRef50_F4A673: Hydrogenase maturation factor|g__Clostridium.s__Clostridium_beijerinckii	12.1108294236
+UniRef50_I0TTJ7	12.1060729171
+UniRef50_I0TTJ7|unclassified	12.1060729171
+UniRef50_P0A925: Phosphatidylglycerophosphatase B	12.1040588522
+UniRef50_P0A925: Phosphatidylglycerophosphatase B|g__Escherichia.s__Escherichia_coli	11.3661605580
+UniRef50_P0A925: Phosphatidylglycerophosphatase B|unclassified	0.7378982942
+UniRef50_F3U537	12.1027388724
+UniRef50_F3U537|unclassified	10.0535585445
+UniRef50_F3U537|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.0491803279
+UniRef50_A0A023KQS7: Formate dehydrogenase	12.0990622127
+UniRef50_A0A023KQS7: Formate dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.2164336191
+UniRef50_A0A023KQS7: Formate dehydrogenase|g__Escherichia.s__Escherichia_coli	3.8826285936
+UniRef50_A5IS46	12.0969053175
+UniRef50_A5IS46|g__Staphylococcus.s__Staphylococcus_aureus	12.0969053175
+UniRef50_Q6LWG7: Regulator of arsenical resistance	12.0950261389
+UniRef50_Q6LWG7: Regulator of arsenical resistance|g__Staphylococcus.s__Staphylococcus_epidermidis	12.0950261389
+UniRef50_U3SVJ7	12.0935158524
+UniRef50_U3SVJ7|g__Streptococcus.s__Streptococcus_mutans	12.0935158524
+UniRef50_W1ETK8: 2,3-diketo-L-gulonate TRAP transporter large permease protein yiaN	12.0886854065
+UniRef50_W1ETK8: 2,3-diketo-L-gulonate TRAP transporter large permease protein yiaN|unclassified	12.0886854065
+UniRef50_M5F9L4	12.0852443996
+UniRef50_M5F9L4|unclassified	12.0852443996
+UniRef50_O31716	12.0805611933
+UniRef50_O31716|g__Streptococcus.s__Streptococcus_agalactiae	9.8761181146
+UniRef50_O31716|g__Clostridium.s__Clostridium_beijerinckii	2.2044430786
+UniRef50_J9H507: Membrane protein	12.0749685206
+UniRef50_J9H507: Membrane protein|unclassified	12.0749685206
+UniRef50_A0A024L3K6: Fimbrial biogenesis outer membrane usher protein	12.0687060831
+UniRef50_A0A024L3K6: Fimbrial biogenesis outer membrane usher protein|g__Escherichia.s__Escherichia_coli	12.0687060831
+UniRef50_P55478: UPF0721 transmembrane protein y4hK	12.0686677350
+UniRef50_P55478: UPF0721 transmembrane protein y4hK|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.0686677350
+UniRef50_A1TT20: Cytochrome-c oxidase	12.0672849598
+UniRef50_A1TT20: Cytochrome-c oxidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.0672849598
+UniRef50_Q6D8D5: Outer membrane protein assembly factor BamA	12.0672798994
+UniRef50_Q6D8D5: Outer membrane protein assembly factor BamA|g__Escherichia.s__Escherichia_coli	12.0672798994
+UniRef50_A3PNG2: Hemolysin-type calcium-binding toxin	12.0656658297
+UniRef50_A3PNG2: Hemolysin-type calcium-binding toxin|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.0656658297
+UniRef50_F5M5U6	12.0611902609
+UniRef50_F5M5U6|unclassified	12.0611902609
+UniRef50_Q74RF8: Maltose transport system permease protein MalG	12.0600934293
+UniRef50_Q74RF8: Maltose transport system permease protein MalG|g__Escherichia.s__Escherichia_coli	12.0600934293
+UniRef50_A6VAS6	12.0590029789
+UniRef50_A6VAS6|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.0590029789
+UniRef50_UPI0003752C76: hypothetical protein	12.0528382905
+UniRef50_UPI0003752C76: hypothetical protein|unclassified	7.1747895100
+UniRef50_UPI0003752C76: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.8780487805
+UniRef50_V8G5A1: Cell wall-binding protein	12.0513673686
+UniRef50_V8G5A1: Cell wall-binding protein|g__Clostridium.s__Clostridium_beijerinckii	12.0513673686
+UniRef50_P76483: Protein YfbM	12.0486300127
+UniRef50_P76483: Protein YfbM|g__Escherichia.s__Escherichia_coli	12.0486300127
+UniRef50_A0A037LLD0	12.0481927711
+UniRef50_A0A037LLD0|g__Staphylococcus.s__Staphylococcus_aureus	12.0481927711
+UniRef50_A7X485: Truncated amidase	12.0481927711
+UniRef50_A7X485: Truncated amidase|g__Staphylococcus.s__Staphylococcus_aureus	12.0481927711
+UniRef50_A8Z210	12.0481927711
+UniRef50_A8Z210|g__Staphylococcus.s__Staphylococcus_aureus	12.0481927711
+UniRef50_E3A1V1	12.0481927711
+UniRef50_E3A1V1|unclassified	12.0481927711
+UniRef50_I0VWI2	12.0481927711
+UniRef50_I0VWI2|unclassified	12.0481927711
+UniRef50_J0ZEX0	12.0481927711
+UniRef50_J0ZEX0|g__Staphylococcus.s__Staphylococcus_epidermidis	12.0481927711
+UniRef50_Q46854: ORF_f51	12.0481927711
+UniRef50_Q46854: ORF_f51|g__Escherichia.s__Escherichia_coli	12.0481927711
+UniRef50_Q9I4Z4: Peptidoglycan-associated lipoprotein	12.0481927711
+UniRef50_Q9I4Z4: Peptidoglycan-associated lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.0481927711
+UniRef50_V6A7B4: Putative membrane protein	12.0481927711
+UniRef50_V6A7B4: Putative membrane protein|unclassified	12.0481927711
+UniRef50_Y0RC04	12.0481927711
+UniRef50_Y0RC04|unclassified	12.0481927711
+UniRef50_P76134: Anaerobic sulfatase-maturating enzyme homolog YdeM	12.0433287792
+UniRef50_P76134: Anaerobic sulfatase-maturating enzyme homolog YdeM|g__Escherichia.s__Escherichia_coli	12.0433287792
+UniRef50_E2ZUX0	12.0424485934
+UniRef50_E2ZUX0|g__Pseudomonas.s__Pseudomonas_aeruginosa	12.0424485934
+UniRef50_O27283: Fibrillarin-like rRNA/tRNA 2'-O-methyltransferase	12.0383100507
+UniRef50_O27283: Fibrillarin-like rRNA/tRNA 2'-O-methyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	12.0383100507
+UniRef50_B9E484	12.0371236562
+UniRef50_B9E484|g__Clostridium.s__Clostridium_beijerinckii	12.0371236562
+UniRef50_G4LCZ8: ABC transporter	12.0335184427
+UniRef50_G4LCZ8: ABC transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.7348280165
+UniRef50_G4LCZ8: ABC transporter|unclassified	0.2986904261
+UniRef50_F1ZL48	12.0249888039
+UniRef50_F1ZL48|g__Escherichia.s__Escherichia_coli	12.0249888039
+UniRef50_M1X9S4	12.0244345704
+UniRef50_M1X9S4|g__Staphylococcus.s__Staphylococcus_aureus	12.0244345704
+UniRef50_P0ACT8: HTH-type transcriptional regulator UidR	12.0165206029
+UniRef50_P0ACT8: HTH-type transcriptional regulator UidR|g__Escherichia.s__Escherichia_coli	12.0165206029
+UniRef50_R4YH39: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	12.0150397064
+UniRef50_R4YH39: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|g__Escherichia.s__Escherichia_coli	12.0150397064
+UniRef50_I7EPM1: Gamma-glutamyltranspeptidase Ggt	12.0111072646
+UniRef50_I7EPM1: Gamma-glutamyltranspeptidase Ggt|g__Rhodobacter.s__Rhodobacter_sphaeroides	12.0111072646
+UniRef50_Q9KDA5: DNA-binding protein HU-1	12.0015652981
+UniRef50_Q9KDA5: DNA-binding protein HU-1|g__Staphylococcus.s__Staphylococcus_epidermidis	8.2562469460
+UniRef50_Q9KDA5: DNA-binding protein HU-1|g__Staphylococcus.s__Staphylococcus_aureus	3.7453183521
+UniRef50_S2XRR2	11.9990966660
+UniRef50_S2XRR2|g__Staphylococcus.s__Staphylococcus_epidermidis	11.9990966660
+UniRef50_A1WQ49: Substrate-binding region of ABC-type glycine betaine transport system	11.9977966984
+UniRef50_A1WQ49: Substrate-binding region of ABC-type glycine betaine transport system|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.9977966984
+UniRef50_D3E112: Polysaccharide biosynthesis protein	11.9945255753
+UniRef50_D3E112: Polysaccharide biosynthesis protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.9945255753
+UniRef50_A0A058SUW3: Aminopeptidase N	11.9854814679
+UniRef50_A0A058SUW3: Aminopeptidase N|g__Escherichia.s__Escherichia_coli	11.9854814679
+UniRef50_Q8DSL0	11.9763119662
+UniRef50_Q8DSL0|g__Streptococcus.s__Streptococcus_mutans	11.9763119662
+UniRef50_Q9HTT0	11.9734495899
+UniRef50_Q9HTT0|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.9734495899
+UniRef50_Q1GMS0: Dihydroorotase	11.9690129689
+UniRef50_Q1GMS0: Dihydroorotase|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.9690129689
+UniRef50_A5W6U4: NAD kinase	11.9664136311
+UniRef50_A5W6U4: NAD kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.9664136311
+UniRef50_Q60BY8: Type 4 fimbrial biogenesis protein PilM	11.9650374715
+UniRef50_Q60BY8: Type 4 fimbrial biogenesis protein PilM|g__Acinetobacter.s__Acinetobacter_baumannii	8.4357063618
+UniRef50_Q60BY8: Type 4 fimbrial biogenesis protein PilM|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5293311097
+UniRef50_Q9RUX9	11.9647708327
+UniRef50_Q9RUX9|g__Deinococcus.s__Deinococcus_radiodurans	11.9647708327
+UniRef50_I6TNU2	11.9636770608
+UniRef50_I6TNU2|g__Streptococcus.s__Streptococcus_mutans	11.9636770608
+UniRef50_I0C1A6: Nitrogen regulation protein NIFR3	11.9628714801
+UniRef50_I0C1A6: Nitrogen regulation protein NIFR3|g__Staphylococcus.s__Staphylococcus_aureus	11.6279069767
+UniRef50_I0C1A6: Nitrogen regulation protein NIFR3|unclassified	0.3349645034
+UniRef50_A4WW68: Flagellar M-ring protein	11.9599054487
+UniRef50_A4WW68: Flagellar M-ring protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.9599054487
+UniRef50_UPI0004729707: hypothetical protein, partial	11.9596604542
+UniRef50_UPI0004729707: hypothetical protein, partial|unclassified	11.9596604542
+UniRef50_B9KLV3	11.9512564182
+UniRef50_B9KLV3|unclassified	11.9512564182
+UniRef50_U3SUF8	11.9443093568
+UniRef50_U3SUF8|g__Streptococcus.s__Streptococcus_mutans	11.9443093568
+UniRef50_P37745: dTDP-4-dehydrorhamnose 3,5-epimerase	11.9426531759
+UniRef50_P37745: dTDP-4-dehydrorhamnose 3,5-epimerase|g__Escherichia.s__Escherichia_coli	9.4865843698
+UniRef50_P37745: dTDP-4-dehydrorhamnose 3,5-epimerase|g__Neisseria.s__Neisseria_meningitidis	2.3584905660
+UniRef50_P37745: dTDP-4-dehydrorhamnose 3,5-epimerase|unclassified	0.0975782400
+UniRef50_F4DMB7: MOSC domain-containing protein	11.9388418998
+UniRef50_F4DMB7: MOSC domain-containing protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.9388418998
+UniRef50_P37005	11.9302984352
+UniRef50_P37005|g__Escherichia.s__Escherichia_coli	11.9302984352
+UniRef50_T8S6T3	11.9226760139
+UniRef50_T8S6T3|g__Escherichia.s__Escherichia_coli	11.8219035090
+UniRef50_T8S6T3|unclassified	0.1007725049
+UniRef50_A4WNG3: Histidine kinase	11.9215220759
+UniRef50_A4WNG3: Histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.9215220759
+UniRef50_F8G4X8: Citrate synthase	11.9200095598
+UniRef50_F8G4X8: Citrate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.9200095598
+UniRef50_A1ACG0	11.9145998863
+UniRef50_A1ACG0|g__Escherichia.s__Escherichia_coli	11.9145998863
+UniRef50_Q4KIS2: Adenine deaminase	11.9145862539
+UniRef50_Q4KIS2: Adenine deaminase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.9145862539
+UniRef50_C5N5E1	11.9108794323
+UniRef50_C5N5E1|g__Staphylococcus.s__Staphylococcus_epidermidis	6.0799260799
+UniRef50_C5N5E1|g__Staphylococcus.s__Staphylococcus_aureus	5.8309533524
+UniRef50_A4WGI4: Transcriptional regulator, MarR family	11.9078145518
+UniRef50_A4WGI4: Transcriptional regulator, MarR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.9078145518
+UniRef50_Q1R614	11.9057795239
+UniRef50_Q1R614|g__Escherichia.s__Escherichia_coli	11.9057795239
+UniRef50_D2N6G1	11.9047619048
+UniRef50_D2N6G1|unclassified	11.9047619048
+UniRef50_H0NVX4	11.9047619048
+UniRef50_H0NVX4|unclassified	11.9047619048
+UniRef50_Q5HK06	11.9047619048
+UniRef50_Q5HK06|g__Staphylococcus.s__Staphylococcus_epidermidis	11.9047619048
+UniRef50_V5T0G3: Cell envelope biogenesis protein OmpA	11.9047619048
+UniRef50_V5T0G3: Cell envelope biogenesis protein OmpA|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.9047619048
+UniRef50_W0Z1E7: Peptide n-acetyltransferase RimI	11.9047619048
+UniRef50_W0Z1E7: Peptide n-acetyltransferase RimI|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.9047619048
+UniRef50_Z8X136	11.9047619048
+UniRef50_Z8X136|unclassified	11.9047619048
+UniRef50_P67155: UPF0073 inner membrane protein YqfA	11.8962034678
+UniRef50_P67155: UPF0073 inner membrane protein YqfA|g__Escherichia.s__Escherichia_coli	11.8962034678
+UniRef50_B7J5S6: Ribose-5-phosphate isomerase A	11.8960404675
+UniRef50_B7J5S6: Ribose-5-phosphate isomerase A|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.8960404675
+UniRef50_Q3IUV6: Thioredoxin domain protein	11.8954893570
+UniRef50_Q3IUV6: Thioredoxin domain protein|unclassified	8.6487361102
+UniRef50_Q3IUV6: Thioredoxin domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.2467532468
+UniRef50_U4Q2X2	11.8950033474
+UniRef50_U4Q2X2|unclassified	11.8950033474
+UniRef50_Z0CP45	11.8824679516
+UniRef50_Z0CP45|g__Staphylococcus.s__Staphylococcus_aureus	11.8824679516
+UniRef50_P27128: Lipopolysaccharide 1,3-galactosyltransferase	11.8773191149
+UniRef50_P27128: Lipopolysaccharide 1,3-galactosyltransferase|g__Escherichia.s__Escherichia_coli	11.8773191149
+UniRef50_A5UP65: O-linked GlcNAc transferase	11.8772937771
+UniRef50_A5UP65: O-linked GlcNAc transferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.8772937771
+UniRef50_S1EVH2: Transcriptional regulator	11.8761293603
+UniRef50_S1EVH2: Transcriptional regulator|g__Escherichia.s__Escherichia_coli	11.4196997265
+UniRef50_S1EVH2: Transcriptional regulator|unclassified	0.4564296338
+UniRef50_L7WWZ3	11.8756264081
+UniRef50_L7WWZ3|g__Staphylococcus.s__Staphylococcus_epidermidis	10.2102102102
+UniRef50_L7WWZ3|unclassified	1.6654161979
+UniRef50_T1LB68	11.8748375016
+UniRef50_T1LB68|unclassified	11.8748375016
+UniRef50_Q6BF25: Small toxic polypeptide LdrD	11.8743774900
+UniRef50_Q6BF25: Small toxic polypeptide LdrD|g__Escherichia.s__Escherichia_coli	11.8743774900
+UniRef50_A3PJ91: RDD domain containing protein	11.8730680232
+UniRef50_A3PJ91: RDD domain containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.8730680232
+UniRef50_A0A031GP16	11.8689925966
+UniRef50_A0A031GP16|unclassified	11.8689925966
+UniRef50_E8KE21: TRAP transporter, DctM subunit	11.8686508720
+UniRef50_E8KE21: TRAP transporter, DctM subunit|unclassified	11.8686508720
+UniRef50_A3PGP7: Ferredoxin	11.8577452523
+UniRef50_A3PGP7: Ferredoxin|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.8577452523
+UniRef50_D5AT86	11.8525356650
+UniRef50_D5AT86|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.8525356650
+UniRef50_T5XQY7: Membrane protein	11.8523611999
+UniRef50_T5XQY7: Membrane protein|g__Escherichia.s__Escherichia_coli	11.8523611999
+UniRef50_Q4L3C2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	11.8506473554
+UniRef50_Q4L3C2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	7.7522866997
+UniRef50_Q4L3C2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	4.0983606557
+UniRef50_A5UNM2: SAM-dependent methyltransferase, FkbM family	11.8385308730
+UniRef50_A5UNM2: SAM-dependent methyltransferase, FkbM family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.8385308730
+UniRef50_B7A375: Aminobenzoyl-glutamate transport protein	11.8376567494
+UniRef50_B7A375: Aminobenzoyl-glutamate transport protein|g__Escherichia.s__Escherichia_coli	11.8376567494
+UniRef50_A5UP89	11.8352126317
+UniRef50_A5UP89|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.8352126317
+UniRef50_Q9CPL9: Probable uracil permease	11.8305413738
+UniRef50_Q9CPL9: Probable uracil permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.8305413738
+UniRef50_A1AZX4	11.8245130775
+UniRef50_A1AZX4|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.8245130775
+UniRef50_N4BUJ9: ATP-dependent helicase HrpA	11.8233580439
+UniRef50_N4BUJ9: ATP-dependent helicase HrpA|g__Escherichia.s__Escherichia_coli	11.8233580439
+UniRef50_A6V7V9	11.8185029028
+UniRef50_A6V7V9|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.8185029028
+UniRef50_M9RIV0: ATP12 chaperone protein	11.8161592860
+UniRef50_M9RIV0: ATP12 chaperone protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.8161592860
+UniRef50_S1HC38: Glutathione-regulated potassium-efflux system protein kefC	11.8147869628
+UniRef50_S1HC38: Glutathione-regulated potassium-efflux system protein kefC|g__Escherichia.s__Escherichia_coli	11.8147869628
+UniRef50_Q8YI99: Pyrazinamidase / nicotinamidase	11.8147300833
+UniRef50_Q8YI99: Pyrazinamidase / nicotinamidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.8147300833
+UniRef50_B7N578: Protein Ves	11.8139614461
+UniRef50_B7N578: Protein Ves|g__Escherichia.s__Escherichia_coli	11.1222847949
+UniRef50_B7N578: Protein Ves|unclassified	0.6916766513
+UniRef50_X8A0M6	11.8129714686
+UniRef50_X8A0M6|unclassified	11.8129714686
+UniRef50_T0M6U2: Electron transfer flavoprotein domain-containing protein	11.8083824004
+UniRef50_T0M6U2: Electron transfer flavoprotein domain-containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.8083824004
+UniRef50_P75973	11.8024947426
+UniRef50_P75973|g__Escherichia.s__Escherichia_coli	11.8024947426
+UniRef50_P76545	11.7993263910
+UniRef50_P76545|g__Escherichia.s__Escherichia_coli	11.7993263910
+UniRef50_F6IIV1: Flagellum-specific ATP synthase	11.7816737408
+UniRef50_F6IIV1: Flagellum-specific ATP synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.7816737408
+UniRef50_Q8FBT7	11.7796253047
+UniRef50_Q8FBT7|g__Escherichia.s__Escherichia_coli	11.2979987806
+UniRef50_Q8FBT7|unclassified	0.4816265241
+UniRef50_D2AAC8: Biotin sulfoxide reductase	11.7786013455
+UniRef50_D2AAC8: Biotin sulfoxide reductase|g__Escherichia.s__Escherichia_coli	11.7786013455
+UniRef50_C1DQZ5: Transcriptional regulator PsrA	11.7755610959
+UniRef50_C1DQZ5: Transcriptional regulator PsrA|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.7755610959
+UniRef50_G4LSM0	11.7704836412
+UniRef50_G4LSM0|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.4565827069
+UniRef50_G4LSM0|unclassified	0.3139009343
+UniRef50_Q8CRZ5	11.7680505395
+UniRef50_Q8CRZ5|g__Staphylococcus.s__Staphylococcus_epidermidis	11.7680505395
+UniRef50_A4XP48: Glutamate--putrescine ligase	11.7656057190
+UniRef50_A4XP48: Glutamate--putrescine ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.7656057190
+UniRef50_A0A012HX51	11.7647058824
+UniRef50_A0A012HX51|g__Staphylococcus.s__Staphylococcus_aureus	11.7647058824
+UniRef50_B7A362	11.7647058824
+UniRef50_B7A362|unclassified	11.7647058824
+UniRef50_C6STW8	11.7647058824
+UniRef50_C6STW8|g__Streptococcus.s__Streptococcus_mutans	11.7647058824
+UniRef50_L4ITT1	11.7647058824
+UniRef50_L4ITT1|g__Escherichia.s__Escherichia_coli	11.7647058824
+UniRef50_M2K7S3	11.7647058824
+UniRef50_M2K7S3|g__Streptococcus.s__Streptococcus_mutans	11.7647058824
+UniRef50_P37673: Protein YiaL	11.7647058824
+UniRef50_P37673: Protein YiaL|g__Escherichia.s__Escherichia_coli	11.7647058824
+UniRef50_P64489	11.7647058824
+UniRef50_P64489|g__Escherichia.s__Escherichia_coli	11.7647058824
+UniRef50_Q8CPB7: Probable tautomerase SE_1045	11.7647058824
+UniRef50_Q8CPB7: Probable tautomerase SE_1045|g__Staphylococcus.s__Staphylococcus_epidermidis	11.7647058824
+UniRef50_T1Y9D7	11.7647058824
+UniRef50_T1Y9D7|g__Staphylococcus.s__Staphylococcus_aureus	11.7647058824
+UniRef50_UPI0002CAE545: hypothetical protein	11.7647058824
+UniRef50_UPI0002CAE545: hypothetical protein|g__Escherichia.s__Escherichia_coli	11.7647058824
+UniRef50_W1YJL8	11.7647058824
+UniRef50_W1YJL8|unclassified	11.7647058824
+UniRef50_P0A130	11.7624117270
+UniRef50_P0A130|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.7624117270
+UniRef50_C1DKJ3: Phospholipid/glycerol acyltransferase	11.7607125457
+UniRef50_C1DKJ3: Phospholipid/glycerol acyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.7607125457
+UniRef50_M4RFA0	11.7600437758
+UniRef50_M4RFA0|unclassified	11.7600437758
+UniRef50_A7X1S6	11.7592346532
+UniRef50_A7X1S6|g__Staphylococcus.s__Staphylococcus_epidermidis	11.7592346532
+UniRef50_UPI0002D3C59D: hypothetical protein	11.7582123159
+UniRef50_UPI0002D3C59D: hypothetical protein|unclassified	11.7582123159
+UniRef50_B4S1N2: Thymidylate kinase	11.7557518682
+UniRef50_B4S1N2: Thymidylate kinase|g__Escherichia.s__Escherichia_coli	11.7557518682
+UniRef50_A5UJN9	11.7541746425
+UniRef50_A5UJN9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.7541746425
+UniRef50_A5UJF9	11.7524681222
+UniRef50_A5UJF9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.5972957084
+UniRef50_A5UJF9|unclassified	2.1551724138
+UniRef50_G7MBK8: Membrane protein insertase, YidC/Oxa1 family	11.7520520736
+UniRef50_G7MBK8: Membrane protein insertase, YidC/Oxa1 family|g__Clostridium.s__Clostridium_beijerinckii	11.7520520736
+UniRef50_A6VB08: Lipoprotein, putative	11.7479074616
+UniRef50_A6VB08: Lipoprotein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.7479074616
+UniRef50_Q02GV4	11.7426238630
+UniRef50_Q02GV4|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.7426238630
+UniRef50_D3P3A5: Transposase	11.7410014301
+UniRef50_D3P3A5: Transposase|unclassified	11.7410014301
+UniRef50_Q9XGI9: N-carbamoylputrescine amidase	11.7318445565
+UniRef50_Q9XGI9: N-carbamoylputrescine amidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.2304656163
+UniRef50_Q9XGI9: N-carbamoylputrescine amidase|g__Clostridium.s__Clostridium_beijerinckii	1.3586956522
+UniRef50_Q9XGI9: N-carbamoylputrescine amidase|unclassified	0.1426832880
+UniRef50_Q99U54: Extracellular matrix-binding protein EbhA	11.7304956048
+UniRef50_Q99U54: Extracellular matrix-binding protein EbhA|g__Staphylococcus.s__Staphylococcus_aureus	11.7304956048
+UniRef50_A4WYF3	11.7264526956
+UniRef50_A4WYF3|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.7264526956
+UniRef50_R5LLF3: Acetate CoA-transferase subunit alpha	11.7245119623
+UniRef50_R5LLF3: Acetate CoA-transferase subunit alpha|g__Clostridium.s__Clostridium_beijerinckii	11.7245119623
+UniRef50_P26319: Fimbriae Z protein	11.7217198476
+UniRef50_P26319: Fimbriae Z protein|g__Escherichia.s__Escherichia_coli	11.7217198476
+UniRef50_S5Y844: L-asparaginase II	11.7198428101
+UniRef50_S5Y844: L-asparaginase II|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.7198428101
+UniRef50_A5VPL4: 2-isopropylmalate synthase/homocitrate synthase family protein	11.7195862626
+UniRef50_A5VPL4: 2-isopropylmalate synthase/homocitrate synthase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.7195862626
+UniRef50_P31449	11.7192259392
+UniRef50_P31449|g__Escherichia.s__Escherichia_coli	11.7192259392
+UniRef50_N6S0H8	11.7128599693
+UniRef50_N6S0H8|g__Staphylococcus.s__Staphylococcus_aureus	8.1967213115
+UniRef50_N6S0H8|unclassified	3.5161386578
+UniRef50_B9KMZ6	11.7099209099
+UniRef50_B9KMZ6|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.9231850376
+UniRef50_B9KMZ6|unclassified	0.7867358723
+UniRef50_A4TIY8: Alkaline phosphatase	11.7081722545
+UniRef50_A4TIY8: Alkaline phosphatase|g__Escherichia.s__Escherichia_coli	11.7081722545
+UniRef50_UPI00037FEB36: hypothetical protein	11.7074763971
+UniRef50_UPI00037FEB36: hypothetical protein|unclassified	11.7074763971
+UniRef50_E8SFP7: Cell division protein YlmG/Ycf19, YggT family	11.7018455070
+UniRef50_E8SFP7: Cell division protein YlmG/Ycf19, YggT family|g__Staphylococcus.s__Staphylococcus_aureus	11.7018455070
+UniRef50_Q3IY01: Conserved hypoothetical protein	11.7016337090
+UniRef50_Q3IY01: Conserved hypoothetical protein|unclassified	8.7076217330
+UniRef50_Q3IY01: Conserved hypoothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.9940119760
+UniRef50_M4JLD0: DNA-binding transcriptional activator CadC	11.6932987483
+UniRef50_M4JLD0: DNA-binding transcriptional activator CadC|g__Escherichia.s__Escherichia_coli	11.6932987483
+UniRef50_B7V1B6	11.6906644922
+UniRef50_B7V1B6|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.6906644922
+UniRef50_F2AIM8	11.6881971637
+UniRef50_F2AIM8|unclassified	11.6881971637
+UniRef50_A3S860	11.6879452326
+UniRef50_A3S860|unclassified	11.6879452326
+UniRef50_P03825: Putative general secretion pathway protein B	11.6877199016
+UniRef50_P03825: Putative general secretion pathway protein B|g__Escherichia.s__Escherichia_coli	11.6877199016
+UniRef50_H6NQR9	11.6843191292
+UniRef50_H6NQR9|unclassified	11.6843191292
+UniRef50_I6T2I9: Type 4 fimbrial biogenesis protein PilW	11.6831372397
+UniRef50_I6T2I9: Type 4 fimbrial biogenesis protein PilW|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.6831372397
+UniRef50_D9QHK3: Inositol monophosphatase family protein	11.6828651311
+UniRef50_D9QHK3: Inositol monophosphatase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.6828651311
+UniRef50_UPI000255D523: putative ATPase	11.6824497798
+UniRef50_UPI000255D523: putative ATPase|unclassified	11.6824497798
+UniRef50_V5T4Y9: AraC family transcriptional regulator	11.6781738794
+UniRef50_V5T4Y9: AraC family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.6781738794
+UniRef50_Q9F7B2: Low molecular weight protein-tyrosine-phosphatase wzb	11.6744614512
+UniRef50_Q9F7B2: Low molecular weight protein-tyrosine-phosphatase wzb|g__Escherichia.s__Escherichia_coli	11.6744614512
+UniRef50_A5UJG6	11.6682298692
+UniRef50_A5UJG6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.6682298692
+UniRef50_B9KQG4: Flagellar hook-associated protein FlgK	11.6676334153
+UniRef50_B9KQG4: Flagellar hook-associated protein FlgK|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.6676334153
+UniRef50_A6VD75: Inner membrane protein YbcI	11.6628641885
+UniRef50_A6VD75: Inner membrane protein YbcI|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.4942528736
+UniRef50_A6VD75: Inner membrane protein YbcI|unclassified	0.1686113150
+UniRef50_L1KHU2	11.6584563383
+UniRef50_L1KHU2|unclassified	11.6584563383
+UniRef50_Q31YK5: Lipopolysaccharide core heptose(II)-phosphate phosphatase	11.6557306302
+UniRef50_Q31YK5: Lipopolysaccharide core heptose(II)-phosphate phosphatase|g__Escherichia.s__Escherichia_coli	11.6557306302
+UniRef50_A5UNY8	11.6551055386
+UniRef50_A5UNY8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.6551055386
+UniRef50_P0AB02: Envelope biogenesis factor ElyC	11.6541434978
+UniRef50_P0AB02: Envelope biogenesis factor ElyC|g__Escherichia.s__Escherichia_coli	11.6541434978
+UniRef50_A5UMH1: 30S ribosomal protein S15	11.6496520433
+UniRef50_A5UMH1: 30S ribosomal protein S15|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.6496520433
+UniRef50_P0A9F0: Regulatory protein YeiL	11.6468721608
+UniRef50_P0A9F0: Regulatory protein YeiL|g__Escherichia.s__Escherichia_coli	11.6468721608
+UniRef50_Q57772: Putative permease MJ0326	11.6448641658
+UniRef50_Q57772: Putative permease MJ0326|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9570667861
+UniRef50_Q57772: Putative permease MJ0326|g__Neisseria.s__Neisseria_meningitidis	3.6877973797
+UniRef50_Q3IVP4	11.6442702368
+UniRef50_Q3IVP4|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.8515417219
+UniRef50_Q3IVP4|unclassified	1.7927285149
+UniRef50_Q8TY87: 30S ribosomal protein S27e	11.6377414662
+UniRef50_Q8TY87: 30S ribosomal protein S27e|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.6377414662
+UniRef50_L1FQ99: AbgT transporter family protein	11.6295488039
+UniRef50_L1FQ99: AbgT transporter family protein|g__Escherichia.s__Escherichia_coli	11.6295488039
+UniRef50_A5UJA3	11.6279069767
+UniRef50_A5UJA3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.6279069767
+UniRef50_C1CVB0	11.6279069767
+UniRef50_C1CVB0|g__Deinococcus.s__Deinococcus_radiodurans	11.6279069767
+UniRef50_D6SI65	11.6279069767
+UniRef50_D6SI65|g__Staphylococcus.s__Staphylococcus_aureus	11.6279069767
+UniRef50_H4G7V0: Putative lipoprotein (Fragment)	11.6279069767
+UniRef50_H4G7V0: Putative lipoprotein (Fragment)|g__Staphylococcus.s__Staphylococcus_aureus	11.6279069767
+UniRef50_H4V7E7	11.6279069767
+UniRef50_H4V7E7|g__Escherichia.s__Escherichia_coli	11.6279069767
+UniRef50_I6SBM6	11.6279069767
+UniRef50_I6SBM6|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.6279069767
+UniRef50_I8HVI3	11.6279069767
+UniRef50_I8HVI3|g__Escherichia.s__Escherichia_coli	11.6279069767
+UniRef50_J2LI53	11.6279069767
+UniRef50_J2LI53|unclassified	11.6279069767
+UniRef50_M2HV71	11.6279069767
+UniRef50_M2HV71|unclassified	11.6279069767
+UniRef50_Q0A892: RNA polymerase-binding transcription factor DksA	11.6279069767
+UniRef50_Q0A892: RNA polymerase-binding transcription factor DksA|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.6279069767
+UniRef50_Q5HKS5	11.6279069767
+UniRef50_Q5HKS5|g__Staphylococcus.s__Staphylococcus_epidermidis	11.6279069767
+UniRef50_Q9RV37	11.6279069767
+UniRef50_Q9RV37|g__Deinococcus.s__Deinococcus_radiodurans	11.6279069767
+UniRef50_U9XWJ2	11.6279069767
+UniRef50_U9XWJ2|g__Escherichia.s__Escherichia_coli	11.6279069767
+UniRef50_V1BZT1	11.6279069767
+UniRef50_V1BZT1|unclassified	11.6279069767
+UniRef50_V6Q9Q8	11.6279069767
+UniRef50_V6Q9Q8|g__Staphylococcus.s__Staphylococcus_epidermidis	11.6279069767
+UniRef50_X5KBT4	11.6279069767
+UniRef50_X5KBT4|g__Streptococcus.s__Streptococcus_agalactiae	11.6279069767
+UniRef50_F2QGF8: Transcriptional regulator, Cro/CI family	11.6263563825
+UniRef50_F2QGF8: Transcriptional regulator, Cro/CI family|g__Streptococcus.s__Streptococcus_agalactiae	11.6263563825
+UniRef50_J7R7Q8	11.6122117947
+UniRef50_J7R7Q8|g__Escherichia.s__Escherichia_coli	11.6122117947
+UniRef50_Q03K84: Phosphoribosyl-ATP pyrophosphatase	11.6106154198
+UniRef50_Q03K84: Phosphoribosyl-ATP pyrophosphatase|g__Streptococcus.s__Streptococcus_mutans	11.6106154198
+UniRef50_R5CFG0	11.6034369020
+UniRef50_R5CFG0|g__Clostridium.s__Clostridium_beijerinckii	11.6034369020
+UniRef50_T7H4C9: Periplasmic endochitinase	11.5987935247
+UniRef50_T7H4C9: Periplasmic endochitinase|g__Escherichia.s__Escherichia_coli	11.5987935247
+UniRef50_P17410: HTH-type transcriptional regulator ChbR	11.5917337229
+UniRef50_P17410: HTH-type transcriptional regulator ChbR|g__Escherichia.s__Escherichia_coli	11.5917337229
+UniRef50_O27179: Pyruvate carboxylase subunit B	11.5917195531
+UniRef50_O27179: Pyruvate carboxylase subunit B|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.5917195531
+UniRef50_S5XST5: Apolipoprotein N-acyltransferase	11.5904469881
+UniRef50_S5XST5: Apolipoprotein N-acyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.5904469881
+UniRef50_G5MZ99	11.5895897540
+UniRef50_G5MZ99|unclassified	11.5895897540
+UniRef50_I6SXW9	11.5886515614
+UniRef50_I6SXW9|g__Streptococcus.s__Streptococcus_mutans	11.5886515614
+UniRef50_G2L4W2	11.5880490438
+UniRef50_G2L4W2|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.5880490438
+UniRef50_B7MFJ5: Phosphopantetheine adenylyltransferase	11.5833119690
+UniRef50_B7MFJ5: Phosphopantetheine adenylyltransferase|g__Escherichia.s__Escherichia_coli	10.7666966158
+UniRef50_B7MFJ5: Phosphopantetheine adenylyltransferase|unclassified	0.8166153533
+UniRef50_I2HA76: Mobilization protein A	11.5830477559
+UniRef50_I2HA76: Mobilization protein A|unclassified	11.5830477559
+UniRef50_D9PX81: FAD synthase	11.5739979148
+UniRef50_D9PX81: FAD synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.5739979148
+UniRef50_G4LL38	11.5734733478
+UniRef50_G4LL38|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.5734733478
+UniRef50_B7V608: Anthranilate phosphoribosyltransferase	11.5699507123
+UniRef50_B7V608: Anthranilate phosphoribosyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3101940287
+UniRef50_B7V608: Anthranilate phosphoribosyltransferase|unclassified	0.2597566836
+UniRef50_R9SK04: Beta-ribofuranosylaminobenzene 5'-phosphate synthase MptG2	11.5696028599
+UniRef50_R9SK04: Beta-ribofuranosylaminobenzene 5'-phosphate synthase MptG2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.5696028599
+UniRef50_F3U4H9	11.5675493994
+UniRef50_F3U4H9|unclassified	11.5675493994
+UniRef50_Q28VF6	11.5661687972
+UniRef50_Q28VF6|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.1470258137
+UniRef50_Q28VF6|unclassified	2.4191429835
+UniRef50_I0C492: Transposase	11.5655703171
+UniRef50_I0C492: Transposase|g__Staphylococcus.s__Staphylococcus_aureus	11.3112120990
+UniRef50_I0C492: Transposase|unclassified	0.2543582181
+UniRef50_R4Z9J6	11.5650133923
+UniRef50_R4Z9J6|g__Streptococcus.s__Streptococcus_agalactiae	11.5650133923
+UniRef50_Q8FCI7: HTH-type transcriptional regulator GadW	11.5620536664
+UniRef50_Q8FCI7: HTH-type transcriptional regulator GadW|g__Escherichia.s__Escherichia_coli	11.5620536664
+UniRef50_S5YZ32: Smr protein/MutS2	11.5612932447
+UniRef50_S5YZ32: Smr protein/MutS2|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.5612932447
+UniRef50_R4KG93: ATPase family protein associated with various cellular activities (AAA)	11.5584440078
+UniRef50_R4KG93: ATPase family protein associated with various cellular activities (AAA)|g__Clostridium.s__Clostridium_beijerinckii	11.5584440078
+UniRef50_Q97JJ9: Germination protease	11.5581950523
+UniRef50_Q97JJ9: Germination protease|g__Clostridium.s__Clostridium_beijerinckii	11.5581950523
+UniRef50_Q88FQ7: Enoyl-CoA hydratase/isomerase family protein	11.5557916395
+UniRef50_Q88FQ7: Enoyl-CoA hydratase/isomerase family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.5557916395
+UniRef50_U6AD01	11.5556103295
+UniRef50_U6AD01|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.5556103295
+UniRef50_I6SW55	11.5539364941
+UniRef50_I6SW55|g__Streptococcus.s__Streptococcus_mutans	11.5539364941
+UniRef50_A7ZN93: Sulfoxide reductase heme-binding subunit YedZ	11.5537220098
+UniRef50_A7ZN93: Sulfoxide reductase heme-binding subunit YedZ|g__Escherichia.s__Escherichia_coli	11.5537220098
+UniRef50_A0AI76: Ribonuclease HII	11.5503076389
+UniRef50_A0AI76: Ribonuclease HII|g__Streptococcus.s__Streptococcus_agalactiae	11.5503076389
+UniRef50_A5ULA2: Transcriptional regulator, AraC family	11.5498406525
+UniRef50_A5ULA2: Transcriptional regulator, AraC family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.5498406525
+UniRef50_V5WXJ4: Lytic transglycosylase	11.5491421969
+UniRef50_V5WXJ4: Lytic transglycosylase|g__Clostridium.s__Clostridium_beijerinckii	11.5491421969
+UniRef50_B1Z5H1: Secretion protein HlyD family protein	11.5452606977
+UniRef50_B1Z5H1: Secretion protein HlyD family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.5452606977
+UniRef50_K0RRH8	11.5412980669
+UniRef50_K0RRH8|unclassified	11.5412980669
+UniRef50_R9ZFL2	11.5401873043
+UniRef50_R9ZFL2|unclassified	7.0356827998
+UniRef50_R9ZFL2|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5045045045
+UniRef50_R5YRU3: dTDP-4-dehydrorhamnose reductase	11.5398972410
+UniRef50_R5YRU3: dTDP-4-dehydrorhamnose reductase|g__Clostridium.s__Clostridium_beijerinckii	11.5398972410
+UniRef50_Q1GI13: Sarcosine oxidase delta subunit heterotetrameric	11.5318632026
+UniRef50_Q1GI13: Sarcosine oxidase delta subunit heterotetrameric|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.5318632026
+UniRef50_Q88M14: Sensory box protein/GGDEF family protein	11.5285055390
+UniRef50_Q88M14: Sensory box protein/GGDEF family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.5285055390
+UniRef50_C7RV62: Lipopolysaccharide kinase	11.5231509509
+UniRef50_C7RV62: Lipopolysaccharide kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.5231509509
+UniRef50_I6TXF6	11.5225904405
+UniRef50_I6TXF6|g__Streptococcus.s__Streptococcus_mutans	11.5225904405
+UniRef50_Q2NFZ4: 30S ribosomal protein S4	11.5149679964
+UniRef50_Q2NFZ4: 30S ribosomal protein S4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.5149679964
+UniRef50_B9KMS1	11.5108630656
+UniRef50_B9KMS1|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.5108630656
+UniRef50_K0TNT9	11.5072049506
+UniRef50_K0TNT9|unclassified	11.5072049506
+UniRef50_L1GB63: Multidrug transporter MdfA domain protein	11.5062578310
+UniRef50_L1GB63: Multidrug transporter MdfA domain protein|g__Escherichia.s__Escherichia_coli	11.5062578310
+UniRef50_R5RD02	11.4967254649
+UniRef50_R5RD02|g__Clostridium.s__Clostridium_beijerinckii	11.4967254649
+UniRef50_C5WFX1: Ribosomal protein L21	11.4949446317
+UniRef50_C5WFX1: Ribosomal protein L21|g__Streptococcus.s__Streptococcus_mutans	11.4949446317
+UniRef50_P65291	11.4947722842
+UniRef50_P65291|g__Escherichia.s__Escherichia_coli	11.4947722842
+UniRef50_A6U0K6	11.4942528736
+UniRef50_A6U0K6|g__Staphylococcus.s__Staphylococcus_aureus	11.4942528736
+UniRef50_C3SD74: Membrane protein	11.4942528736
+UniRef50_C3SD74: Membrane protein|g__Escherichia.s__Escherichia_coli	11.4942528736
+UniRef50_D1AHU8	11.4942528736
+UniRef50_D1AHU8|g__Clostridium.s__Clostridium_beijerinckii	11.4942528736
+UniRef50_D2ZUL4	11.4942528736
+UniRef50_D2ZUL4|g__Neisseria.s__Neisseria_meningitidis	11.4942528736
+UniRef50_G8RFA0	11.4942528736
+UniRef50_G8RFA0|unclassified	11.4942528736
+UniRef50_H5IJ08: Putative phosphotransferase ydiA domain protein	11.4942528736
+UniRef50_H5IJ08: Putative phosphotransferase ydiA domain protein|g__Escherichia.s__Escherichia_coli	11.4942528736
+UniRef50_I6F810	11.4942528736
+UniRef50_I6F810|unclassified	11.4942528736
+UniRef50_Q5HM83	11.4942528736
+UniRef50_Q5HM83|unclassified	11.4942528736
+UniRef50_Q8CQN1	11.4942528736
+UniRef50_Q8CQN1|g__Staphylococcus.s__Staphylococcus_epidermidis	11.4942528736
+UniRef50_UPI0000379E2F: hypothetical protein	11.4837661520
+UniRef50_UPI0000379E2F: hypothetical protein|unclassified	11.4837661520
+UniRef50_Q8FCZ8	11.4824004476
+UniRef50_Q8FCZ8|g__Escherichia.s__Escherichia_coli	11.4824004476
+UniRef50_A5UNV3	11.4791324810
+UniRef50_A5UNV3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.4791324810
+UniRef50_W1Y712	11.4780273596
+UniRef50_W1Y712|unclassified	11.4780273596
+UniRef50_B9AGR4	11.4777646484
+UniRef50_B9AGR4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.3971250371
+UniRef50_B9AGR4|unclassified	0.0806396114
+UniRef50_B1ZBN6	11.4756182847
+UniRef50_B1ZBN6|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.4756182847
+UniRef50_Q5HLU5: SugE protein	11.4718614719
+UniRef50_Q5HLU5: SugE protein|g__Staphylococcus.s__Staphylococcus_epidermidis	11.4718614719
+UniRef50_G7LYD5	11.4615132095
+UniRef50_G7LYD5|g__Clostridium.s__Clostridium_beijerinckii	11.4615132095
+UniRef50_B9KJR5: Binding-protein-dependent transport systems inner membrane component	11.4579007841
+UniRef50_B9KJR5: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.4579007841
+UniRef50_V6F231	11.4576449481
+UniRef50_V6F231|unclassified	11.4576449481
+UniRef50_P75839: UPF0702 transmembrane protein YcaP	11.4572227554
+UniRef50_P75839: UPF0702 transmembrane protein YcaP|g__Escherichia.s__Escherichia_coli	11.4572227554
+UniRef50_Q9RV19	11.4522764279
+UniRef50_Q9RV19|g__Deinococcus.s__Deinococcus_radiodurans	11.4522764279
+UniRef50_Q2YS71: UPF0741 protein SAB0543	11.4517265680
+UniRef50_Q2YS71: UPF0741 protein SAB0543|g__Staphylococcus.s__Staphylococcus_epidermidis	11.4517265680
+UniRef50_A8AYU9	11.4511509732
+UniRef50_A8AYU9|g__Streptococcus.s__Streptococcus_mutans	11.4511509732
+UniRef50_U7I8Y0	11.4471829227
+UniRef50_U7I8Y0|unclassified	11.4471829227
+UniRef50_K4SRD4: Dipeptide transport system permease protein DppB (TC 3.A.1.5.2)	11.4462566298
+UniRef50_K4SRD4: Dipeptide transport system permease protein DppB (TC 3.A.1.5.2)|unclassified	11.4462566298
+UniRef50_Q3J0V4: Periplasmic sensor diguanylate cyclase (GGDEF)	11.4449135130
+UniRef50_Q3J0V4: Periplasmic sensor diguanylate cyclase (GGDEF)|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.4449135130
+UniRef50_Q0FP15: ABC peptide transporter, inner membrane subunit	11.4419931606
+UniRef50_Q0FP15: ABC peptide transporter, inner membrane subunit|unclassified	11.4419931606
+UniRef50_Q3SJE0: Succinyl-diaminopimelate desuccinylase	11.4410002898
+UniRef50_Q3SJE0: Succinyl-diaminopimelate desuccinylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.7935149798
+UniRef50_Q3SJE0: Succinyl-diaminopimelate desuccinylase|g__Acinetobacter.s__Acinetobacter_baumannii	2.6474853100
+UniRef50_A9HE84: Tryptophan synthase alpha chain	11.4398232440
+UniRef50_A9HE84: Tryptophan synthase alpha chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.2542398679
+UniRef50_A9HE84: Tryptophan synthase alpha chain|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0391803837
+UniRef50_A9HE84: Tryptophan synthase alpha chain|unclassified	0.1464029925
+UniRef50_B7V7J4: Recombination-associated protein RdgC	11.4388262989
+UniRef50_B7V7J4: Recombination-associated protein RdgC|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.4388262989
+UniRef50_H1Z0J9: NADPH-dependent FMN reductase	11.4386365955
+UniRef50_H1Z0J9: NADPH-dependent FMN reductase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.4386365955
+UniRef50_E4R955: Peptidase C26	11.4384711770
+UniRef50_E4R955: Peptidase C26|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.4384711770
+UniRef50_A6M3L5	11.4374514375
+UniRef50_A6M3L5|g__Clostridium.s__Clostridium_beijerinckii	11.4374514375
+UniRef50_A0JUR7	11.4366355910
+UniRef50_A0JUR7|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.3895140074
+UniRef50_A0JUR7|unclassified	0.0471215836
+UniRef50_K0F249	11.4365136274
+UniRef50_K0F249|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.4365136274
+UniRef50_P0AGD2: Superoxide dismutase [Cu-Zn]	11.4358779143
+UniRef50_P0AGD2: Superoxide dismutase [Cu-Zn]|g__Escherichia.s__Escherichia_coli	11.4358779143
+UniRef50_C6XRP6: Transcriptional regulator, XRE family	11.4341012902
+UniRef50_C6XRP6: Transcriptional regulator, XRE family|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.4341012902
+UniRef50_R9U1S9: RNA polymerase sigma factor	11.4338538324
+UniRef50_R9U1S9: RNA polymerase sigma factor|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.4338538324
+UniRef50_S5YT17: Transposase	11.4334086880
+UniRef50_S5YT17: Transposase|unclassified	11.4334086880
+UniRef50_H9UTM9	11.4332106522
+UniRef50_H9UTM9|g__Escherichia.s__Escherichia_coli	11.4332106522
+UniRef50_P77806: Methionine aminotransferase	11.4303731924
+UniRef50_P77806: Methionine aminotransferase|g__Escherichia.s__Escherichia_coli	8.0154957038
+UniRef50_P77806: Methionine aminotransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3103197216
+UniRef50_P77806: Methionine aminotransferase|unclassified	0.1045577671
+UniRef50_D1GN02: Phage protein	11.4275196628
+UniRef50_D1GN02: Phage protein|g__Staphylococcus.s__Staphylococcus_aureus	11.4275196628
+UniRef50_T6G328: Cellulose synthase operon protein C	11.4261443236
+UniRef50_T6G328: Cellulose synthase operon protein C|g__Escherichia.s__Escherichia_coli	11.4261443236
+UniRef50_B1JLB8	11.4204478142
+UniRef50_B1JLB8|g__Neisseria.s__Neisseria_meningitidis	11.4204478142
+UniRef50_Q881N5: TonB-dependent receptor, putative	11.4200338515
+UniRef50_Q881N5: TonB-dependent receptor, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.4200338515
+UniRef50_L0D7B2	11.4140597152
+UniRef50_L0D7B2|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.4140597152
+UniRef50_M5ANL0: Beta-lactamase co-inducer (Fragment)	11.4120056811
+UniRef50_M5ANL0: Beta-lactamase co-inducer (Fragment)|unclassified	11.4120056811
+UniRef50_H3V9W4	11.4115372971
+UniRef50_H3V9W4|unclassified	11.4115372971
+UniRef50_B9V9Y7: Nitrogenase alpha subunit (Fragment)	11.4077040596
+UniRef50_B9V9Y7: Nitrogenase alpha subunit (Fragment)|unclassified	11.4077040596
+UniRef50_Q0ADJ4: Nucleotidyl transferase	11.4076003146
+UniRef50_Q0ADJ4: Nucleotidyl transferase|g__Acinetobacter.s__Acinetobacter_baumannii	11.4076003146
+UniRef50_V9WLG4	11.4063488519
+UniRef50_V9WLG4|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.4063488519
+UniRef50_P80644: FMN reductase (NADPH)	11.4013085658
+UniRef50_P80644: FMN reductase (NADPH)|g__Escherichia.s__Escherichia_coli	11.4013085658
+UniRef50_P00894: Acetolactate synthase isozyme 3 small subunit	11.3936076471
+UniRef50_P00894: Acetolactate synthase isozyme 3 small subunit|g__Escherichia.s__Escherichia_coli	8.4792301379
+UniRef50_P00894: Acetolactate synthase isozyme 3 small subunit|g__Acinetobacter.s__Acinetobacter_baumannii	2.0449897751
+UniRef50_P00894: Acetolactate synthase isozyme 3 small subunit|unclassified	0.8693877341
+UniRef50_G3XD61: UDP-2,3-diacetamido-2,3-dideoxy-D-glucuronate 2-epimerase	11.3913912805
+UniRef50_G3XD61: UDP-2,3-diacetamido-2,3-dideoxy-D-glucuronate 2-epimerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3913912805
+UniRef50_Q46901: CRISPR system Cascade subunit CasA	11.3870358050
+UniRef50_Q46901: CRISPR system Cascade subunit CasA|g__Escherichia.s__Escherichia_coli	11.3870358050
+UniRef50_E3A1W9	11.3822390571
+UniRef50_E3A1W9|unclassified	11.3822390571
+UniRef50_H1XZH3: Aldo/keto reductase	11.3794875560
+UniRef50_H1XZH3: Aldo/keto reductase|g__Acinetobacter.s__Acinetobacter_baumannii	11.3794875560
+UniRef50_B2S7C0: Thromboxane receptor	11.3785594124
+UniRef50_B2S7C0: Thromboxane receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3785594124
+UniRef50_H0DRQ3	11.3735299186
+UniRef50_H0DRQ3|g__Staphylococcus.s__Staphylococcus_epidermidis	10.2040816327
+UniRef50_H0DRQ3|unclassified	1.1694482859
+UniRef50_D6SG34	11.3728150948
+UniRef50_D6SG34|g__Staphylococcus.s__Staphylococcus_aureus	11.3728150948
+UniRef50_B4F2G7: Prolipoprotein diacylglyceryl transferase	11.3696801989
+UniRef50_B4F2G7: Prolipoprotein diacylglyceryl transferase|g__Escherichia.s__Escherichia_coli	11.2095738155
+UniRef50_B4F2G7: Prolipoprotein diacylglyceryl transferase|unclassified	0.1601063834
+UniRef50_A6LZ09	11.3689143004
+UniRef50_A6LZ09|g__Clostridium.s__Clostridium_beijerinckii	10.4878570316
+UniRef50_A6LZ09|unclassified	0.8810572687
+UniRef50_A8FP16: 50S ribosomal protein L22	11.3636363636
+UniRef50_A8FP16: 50S ribosomal protein L22|g__Helicobacter.s__Helicobacter_pylori	11.3636363636
+UniRef50_H3TNN5	11.3636363636
+UniRef50_H3TNN5|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3636363636
+UniRef50_P64487: UPF0410 protein YeaQ	11.3636363636
+UniRef50_P64487: UPF0410 protein YeaQ|g__Escherichia.s__Escherichia_coli	11.3636363636
+UniRef50_Q1J3U3: Transcriptional regulator, MerR family	11.3636363636
+UniRef50_Q1J3U3: Transcriptional regulator, MerR family|g__Deinococcus.s__Deinococcus_radiodurans	11.3636363636
+UniRef50_Q9RY56	11.3636363636
+UniRef50_Q9RY56|g__Deinococcus.s__Deinococcus_radiodurans	11.3636363636
+UniRef50_R1BIN3	11.3636363636
+UniRef50_R1BIN3|unclassified	11.3636363636
+UniRef50_W1YUL3	11.3636363636
+UniRef50_W1YUL3|unclassified	11.3636363636
+UniRef50_Q8CQI0: Lipoprotein signal peptidase	11.3607862507
+UniRef50_Q8CQI0: Lipoprotein signal peptidase|g__Staphylococcus.s__Staphylococcus_epidermidis	11.3607862507
+UniRef50_I3V0G0	11.3562034013
+UniRef50_I3V0G0|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3562034013
+UniRef50_S3MLJ8: LysR family transcriptional regulator	11.3548167024
+UniRef50_S3MLJ8: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3548167024
+UniRef50_B0V7I3	11.3484868684
+UniRef50_B0V7I3|g__Acinetobacter.s__Acinetobacter_baumannii	11.3484868684
+UniRef50_Q9HW91: Methyl-accepting chemotaxis protein PctB	11.3456056881
+UniRef50_Q9HW91: Methyl-accepting chemotaxis protein PctB|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3456056881
+UniRef50_Q6GI58	11.3436400201
+UniRef50_Q6GI58|g__Staphylococcus.s__Staphylococcus_aureus	11.3436400201
+UniRef50_D3RCC5: Ethanolamine utilisation protein EutH	11.3426973178
+UniRef50_D3RCC5: Ethanolamine utilisation protein EutH|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3426973178
+UniRef50_A0A024HEL1	11.3399284925
+UniRef50_A0A024HEL1|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3399284925
+UniRef50_W1YHU0	11.3388153668
+UniRef50_W1YHU0|unclassified	11.3388153668
+UniRef50_P21517: Maltodextrin glucosidase	11.3379288228
+UniRef50_P21517: Maltodextrin glucosidase|g__Escherichia.s__Escherichia_coli	11.3379288228
+UniRef50_P75809: Flavin mononucleotide phosphatase YbjI	11.3371347948
+UniRef50_P75809: Flavin mononucleotide phosphatase YbjI|g__Escherichia.s__Escherichia_coli	11.1079486973
+UniRef50_P75809: Flavin mononucleotide phosphatase YbjI|unclassified	0.2291860974
+UniRef50_E2ZQD7	11.3357200560
+UniRef50_E2ZQD7|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3357200560
+UniRef50_G3W4Q5	11.3349147170
+UniRef50_G3W4Q5|unclassified	11.3349147170
+UniRef50_R9ZFU1: Ammonium transporter	11.3348379116
+UniRef50_R9ZFU1: Ammonium transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4995383121
+UniRef50_R9ZFU1: Ammonium transporter|g__Acinetobacter.s__Acinetobacter_baumannii	4.8352995996
+UniRef50_B9AFV8: Transcriptional regulator, MarR family	11.3346451655
+UniRef50_B9AFV8: Transcriptional regulator, MarR family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.4163715199
+UniRef50_B9AFV8: Transcriptional regulator, MarR family|unclassified	0.9182736455
+UniRef50_C4J7R9	11.3329979144
+UniRef50_C4J7R9|unclassified	11.3329979144
+UniRef50_A0A024E8U2: Mandelate racemase/muconate lactonizing enzyme family protein	11.3328141694
+UniRef50_A0A024E8U2: Mandelate racemase/muconate lactonizing enzyme family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3328141694
+UniRef50_K7RRN0: Integral membrane protein	11.3317118277
+UniRef50_K7RRN0: Integral membrane protein|g__Propionibacterium.s__Propionibacterium_acnes	11.3317118277
+UniRef50_E4R7C5: 2-dehydropantoate 2-reductase	11.3316097896
+UniRef50_E4R7C5: 2-dehydropantoate 2-reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3316097896
+UniRef50_Q96255: Phosphoserine aminotransferase, chloroplastic	11.3312724060
+UniRef50_Q96255: Phosphoserine aminotransferase, chloroplastic|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3312724060
+UniRef50_A4WSZ3	11.3288646849
+UniRef50_A4WSZ3|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.0456483851
+UniRef50_A4WSZ3|unclassified	4.2832162999
+UniRef50_D8MHK6: Mini-ribonuclease 3	11.3266529633
+UniRef50_D8MHK6: Mini-ribonuclease 3|g__Streptococcus.s__Streptococcus_agalactiae	8.9285714286
+UniRef50_D8MHK6: Mini-ribonuclease 3|g__Streptococcus.s__Streptococcus_mutans	2.3980815348
+UniRef50_M4XK82	11.3251012861
+UniRef50_M4XK82|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3251012861
+UniRef50_UPI00036F9D46: hypothetical protein	11.3249776583
+UniRef50_UPI00036F9D46: hypothetical protein|unclassified	11.3249776583
+UniRef50_U3QX72: GntR family transcriptional regulator	11.3202448675
+UniRef50_U3QX72: GntR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.9652313173
+UniRef50_U3QX72: GntR family transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	1.3550135501
+UniRef50_U3SWE7	11.3199286126
+UniRef50_U3SWE7|g__Streptococcus.s__Streptococcus_mutans	9.4558574418
+UniRef50_U3SWE7|unclassified	1.8640711708
+UniRef50_A5W8P2: Protein translocase subunit SecA	11.3195521863
+UniRef50_A5W8P2: Protein translocase subunit SecA|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3195521863
+UniRef50_A6V6A5	11.3182150065
+UniRef50_A6V6A5|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3182150065
+UniRef50_P0A0Y5: Phosphoheptose isomerase	11.3150689332
+UniRef50_P0A0Y5: Phosphoheptose isomerase|g__Neisseria.s__Neisseria_meningitidis	11.1460517121
+UniRef50_P0A0Y5: Phosphoheptose isomerase|unclassified	0.1690172211
+UniRef50_UPI0000379B07: hypothetical protein	11.3131378043
+UniRef50_UPI0000379B07: hypothetical protein|unclassified	11.3131378043
+UniRef50_D1YVK2	11.3129578493
+UniRef50_D1YVK2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.3129578493
+UniRef50_Q88VD5: 30S ribosomal protein S15	11.3069982171
+UniRef50_Q88VD5: 30S ribosomal protein S15|g__Streptococcus.s__Streptococcus_mutans	11.3069982171
+UniRef50_A8IJS1: Glutamate synthase	11.3051934117
+UniRef50_A8IJS1: Glutamate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.3051934117
+UniRef50_T0VGY2: Probably aromatic ring hydroxylating enzyme	11.2983424154
+UniRef50_T0VGY2: Probably aromatic ring hydroxylating enzyme|g__Streptococcus.s__Streptococcus_mutans	11.2983424154
+UniRef50_V4SYM4	11.2945086532
+UniRef50_V4SYM4|unclassified	11.2945086532
+UniRef50_Q8DUM4: Possible DNA-damage-inducible protein	11.2941041917
+UniRef50_Q8DUM4: Possible DNA-damage-inducible protein|g__Streptococcus.s__Streptococcus_mutans	11.2941041917
+UniRef50_F5M2C7: DeoR family transcriptional regulator	11.2891107474
+UniRef50_F5M2C7: DeoR family transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.2891107474
+UniRef50_B1K7T3: Two component transcriptional regulator, LuxR family	11.2851256313
+UniRef50_B1K7T3: Two component transcriptional regulator, LuxR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.2851256313
+UniRef50_G2KZ81	11.2826541855
+UniRef50_G2KZ81|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.2826541855
+UniRef50_R5VQG0: Transcriptional regulator LysR family	11.2810871759
+UniRef50_R5VQG0: Transcriptional regulator LysR family|g__Streptococcus.s__Streptococcus_agalactiae	11.2810871759
+UniRef50_B2IMY4	11.2661959618
+UniRef50_B2IMY4|unclassified	11.2661959618
+UniRef50_G2SWK3	11.2659098727
+UniRef50_G2SWK3|g__Clostridium.s__Clostridium_beijerinckii	11.2659098727
+UniRef50_Q9I2Y2: Phosphoserine phosphatase ThrH	11.2638462565
+UniRef50_Q9I2Y2: Phosphoserine phosphatase ThrH|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8740157480
+UniRef50_Q9I2Y2: Phosphoserine phosphatase ThrH|g__Acinetobacter.s__Acinetobacter_baumannii	3.3898305085
+UniRef50_A1WIH9: Transcriptional regulator, DeoR family	11.2627528613
+UniRef50_A1WIH9: Transcriptional regulator, DeoR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.2627528613
+UniRef50_L1G5S5: Binding--dependent transport system inner membrane component family protein (Fragment)	11.2612612613
+UniRef50_L1G5S5: Binding--dependent transport system inner membrane component family protein (Fragment)|g__Escherichia.s__Escherichia_coli	11.2612612613
+UniRef50_P52037	11.2612537348
+UniRef50_P52037|g__Escherichia.s__Escherichia_coli	11.2612537348
+UniRef50_P10540: Aspartate-semialdehyde dehydrogenase leader peptide	11.2578021565
+UniRef50_P10540: Aspartate-semialdehyde dehydrogenase leader peptide|unclassified	11.2578021565
+UniRef50_Q3Y3U3: Relaxase/mobilization nuclease domain	11.2574458544
+UniRef50_Q3Y3U3: Relaxase/mobilization nuclease domain|unclassified	11.2574458544
+UniRef50_B6IRJ0: ATP-dependent RNA helicase, DEAD	11.2574085809
+UniRef50_B6IRJ0: ATP-dependent RNA helicase, DEAD|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.2574085809
+UniRef50_M4WVE5: PhoP/Q and low Mg2+ inducible outer membrane protein H1	11.2568639414
+UniRef50_M4WVE5: PhoP/Q and low Mg2+ inducible outer membrane protein H1|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.2568639414
+UniRef50_U5MSL5: NADPH-dependent FMN reductase	11.2552156490
+UniRef50_U5MSL5: NADPH-dependent FMN reductase|g__Clostridium.s__Clostridium_beijerinckii	11.2552156490
+UniRef50_A5X3K4: Polyphenol oxidase	11.2536520453
+UniRef50_A5X3K4: Polyphenol oxidase|unclassified	11.2536520453
+UniRef50_D7ZHL1	11.2521461859
+UniRef50_D7ZHL1|g__Escherichia.s__Escherichia_coli	11.2521461859
+UniRef50_R9ZB11: LysR family transcriptional regulator	11.2514261545
+UniRef50_R9ZB11: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.2514261545
+UniRef50_P32166: 1,4-dihydroxy-2-naphthoate octaprenyltransferase	11.2487365268
+UniRef50_P32166: 1,4-dihydroxy-2-naphthoate octaprenyltransferase|g__Escherichia.s__Escherichia_coli	11.2487365268
+UniRef50_C6SU84	11.2484414810
+UniRef50_C6SU84|g__Streptococcus.s__Streptococcus_mutans	11.2484414810
+UniRef50_V5T4K9: Haloacid dehalogenase	11.2484022247
+UniRef50_V5T4K9: Haloacid dehalogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.2484022247
+UniRef50_Q5HL03	11.2462355546
+UniRef50_Q5HL03|g__Staphylococcus.s__Staphylococcus_epidermidis	11.2462355546
+UniRef50_V5SP73	11.2415315958
+UniRef50_V5SP73|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.2415315958
+UniRef50_P42257: Protein PilJ	11.2384197406
+UniRef50_P42257: Protein PilJ|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.1151222337
+UniRef50_P42257: Protein PilJ|unclassified	0.1232975069
+UniRef50_D3E404	11.2363096929
+UniRef50_D3E404|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.2363096929
+UniRef50_D6SCL9	11.2360887602
+UniRef50_D6SCL9|g__Staphylococcus.s__Staphylococcus_aureus	10.5542339978
+UniRef50_D6SCL9|unclassified	0.6818547624
+UniRef50_A4XU74: Elongation factor P	11.2359550562
+UniRef50_A4XU74: Elongation factor P|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.2359550562
+UniRef50_B2I798: Acyl carrier protein	11.2359550562
+UniRef50_B2I798: Acyl carrier protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.2359550562
+UniRef50_E2ZQJ9	11.2359550562
+UniRef50_E2ZQJ9|unclassified	11.2359550562
+UniRef50_F9KIZ8: Conserved domain protein	11.2359550562
+UniRef50_F9KIZ8: Conserved domain protein|unclassified	11.2359550562
+UniRef50_H3VV28: Glucose-6-phosphate dehydrogenase, C-terminal-like domain protein	11.2359550562
+UniRef50_H3VV28: Glucose-6-phosphate dehydrogenase, C-terminal-like domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	11.2359550562
+UniRef50_H4VDQ0	11.2359550562
+UniRef50_H4VDQ0|unclassified	11.2359550562
+UniRef50_M2EBN0	11.2359550562
+UniRef50_M2EBN0|g__Streptococcus.s__Streptococcus_mutans	11.2359550562
+UniRef50_UPI000375DC81: hypothetical protein	11.2359550562
+UniRef50_UPI000375DC81: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.2359550562
+UniRef50_Z9T5Q2	11.2359550562
+UniRef50_Z9T5Q2|g__Staphylococcus.s__Staphylococcus_aureus	11.2359550562
+UniRef50_Q8CNT2: Phage phi PVL amidase-like protein	11.2327780605
+UniRef50_Q8CNT2: Phage phi PVL amidase-like protein|g__Staphylococcus.s__Staphylococcus_epidermidis	11.2327780605
+UniRef50_K3Z133	11.2322718454
+UniRef50_K3Z133|unclassified	11.2322718454
+UniRef50_Q9RRV3	11.2260419390
+UniRef50_Q9RRV3|g__Deinococcus.s__Deinococcus_radiodurans	11.2260419390
+UniRef50_U3SV56	11.2254692833
+UniRef50_U3SV56|g__Streptococcus.s__Streptococcus_mutans	11.2254692833
+UniRef50_M8NQS3	11.2222006745
+UniRef50_M8NQS3|unclassified	11.2222006745
+UniRef50_UPI0004704F45: hypothetical protein, partial	11.2202464756
+UniRef50_UPI0004704F45: hypothetical protein, partial|unclassified	11.2202464756
+UniRef50_I7ENJ2	11.2189436006
+UniRef50_I7ENJ2|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.6029636316
+UniRef50_I7ENJ2|unclassified	0.6159799689
+UniRef50_G7U887	11.2184676796
+UniRef50_G7U887|g__Propionibacterium.s__Propionibacterium_acnes	11.2184676796
+UniRef50_A5UM06	11.2121212121
+UniRef50_A5UM06|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.2121212121
+UniRef50_A7ING9: Thioesterase superfamily protein	11.2105138638
+UniRef50_A7ING9: Thioesterase superfamily protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.2105138638
+UniRef50_E7I9A5: Sensor protein qseC domain protein	11.2068965517
+UniRef50_E7I9A5: Sensor protein qseC domain protein|g__Escherichia.s__Escherichia_coli	11.2068965517
+UniRef50_A6FBN9	11.1986857528
+UniRef50_A6FBN9|unclassified	11.1986857528
+UniRef50_P30138: Sulfur carrier protein ThiS adenylyltransferase	11.1962707913
+UniRef50_P30138: Sulfur carrier protein ThiS adenylyltransferase|g__Escherichia.s__Escherichia_coli	10.8285373492
+UniRef50_P30138: Sulfur carrier protein ThiS adenylyltransferase|unclassified	0.3677334421
+UniRef50_P39265: D-allose-binding periplasmic protein	11.1923007132
+UniRef50_P39265: D-allose-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	11.1923007132
+UniRef50_A3PLT6: Rhodanese domain protein	11.1914832778
+UniRef50_A3PLT6: Rhodanese domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.8802249997
+UniRef50_A3PLT6: Rhodanese domain protein|unclassified	3.3112582781
+UniRef50_A0A024HLC2: Peptidoglycan synthase FtsI	11.1897230193
+UniRef50_A0A024HLC2: Peptidoglycan synthase FtsI|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.1897230193
+UniRef50_Q28JK1: Flagellar basal-body rod protein FlgF	11.1795950505
+UniRef50_Q28JK1: Flagellar basal-body rod protein FlgF|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.1795950505
+UniRef50_P37182: Hydrogenase 2 maturation protease	11.1785917631
+UniRef50_P37182: Hydrogenase 2 maturation protease|g__Escherichia.s__Escherichia_coli	11.1785917631
+UniRef50_A8LNH2: UPF0246 protein Dshi_3333	11.1784804936
+UniRef50_A8LNH2: UPF0246 protein Dshi_3333|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.1784804936
+UniRef50_B1MLZ3: Ribonuclease PH	11.1761292019
+UniRef50_B1MLZ3: Ribonuclease PH|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.0420298927
+UniRef50_B1MLZ3: Ribonuclease PH|unclassified	0.1340993092
+UniRef50_Q0TD54: Glutamate-ammonia-ligase adenylyltransferase	11.1759266575
+UniRef50_Q0TD54: Glutamate-ammonia-ligase adenylyltransferase|g__Escherichia.s__Escherichia_coli	11.1759266575
+UniRef50_Q9SC75: L1332.3a protein	11.1756270138
+UniRef50_Q9SC75: L1332.3a protein|unclassified	11.1756270138
+UniRef50_P50600: Protein TolA	11.1752247721
+UniRef50_P50600: Protein TolA|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.1752247721
+UniRef50_D8GL55: 3-hydroxybutyryl-CoA dehydrogenase	11.1719418392
+UniRef50_D8GL55: 3-hydroxybutyryl-CoA dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	11.1719418392
+UniRef50_A5N248	11.1717468877
+UniRef50_A5N248|g__Clostridium.s__Clostridium_beijerinckii	11.1717468877
+UniRef50_C4LED9: Transcriptional regulator, LuxR family	11.1695598795
+UniRef50_C4LED9: Transcriptional regulator, LuxR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.1695598795
+UniRef50_R5DD38	11.1652655001
+UniRef50_R5DD38|g__Escherichia.s__Escherichia_coli	11.1652655001
+UniRef50_N6LZ63	11.1641626184
+UniRef50_N6LZ63|g__Staphylococcus.s__Staphylococcus_aureus	11.1641626184
+UniRef50_F8HC83: Regulatory protein spx	11.1628823622
+UniRef50_F8HC83: Regulatory protein spx|g__Streptococcus.s__Streptococcus_mutans	11.1628823622
+UniRef50_Q9I484: Amino acid ABC transporter periplasmic binding protein	11.1619924933
+UniRef50_Q9I484: Amino acid ABC transporter periplasmic binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.1619924933
+UniRef50_F2A8C7	11.1599820969
+UniRef50_F2A8C7|unclassified	11.1599820969
+UniRef50_D9SWT2: Peptidase S8 and S53 subtilisin kexin sedolisin	11.1598204754
+UniRef50_D9SWT2: Peptidase S8 and S53 subtilisin kexin sedolisin|g__Clostridium.s__Clostridium_beijerinckii	11.1598204754
+UniRef50_Q28RG9: Transcriptional regulator, AsnC family	11.1548485310
+UniRef50_Q28RG9: Transcriptional regulator, AsnC family|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.1548485310
+UniRef50_O30826: Superoxide dismutase [Mn]	11.1470581963
+UniRef50_O30826: Superoxide dismutase [Mn]|g__Streptococcus.s__Streptococcus_agalactiae	11.0561402374
+UniRef50_O30826: Superoxide dismutase [Mn]|unclassified	0.0909179590
+UniRef50_K0RNQ3	11.1464968153
+UniRef50_K0RNQ3|unclassified	11.1464968153
+UniRef50_D2J7P8: Replication initiator protein	11.1415098981
+UniRef50_D2J7P8: Replication initiator protein|g__Staphylococcus.s__Staphylococcus_aureus	9.8039215686
+UniRef50_D2J7P8: Replication initiator protein|unclassified	1.3375883294
+UniRef50_P76486	11.1370796825
+UniRef50_P76486|g__Escherichia.s__Escherichia_coli	11.1370796825
+UniRef50_P57134: DNA replication protein DnaC	11.1332373148
+UniRef50_P57134: DNA replication protein DnaC|g__Escherichia.s__Escherichia_coli	11.1332373148
+UniRef50_B7MDX7	11.1319139076
+UniRef50_B7MDX7|g__Escherichia.s__Escherichia_coli	11.1319139076
+UniRef50_V5T6V8: Death-on-curing family protein	11.1317930501
+UniRef50_V5T6V8: Death-on-curing family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.6837606838
+UniRef50_V5T6V8: Death-on-curing family protein|unclassified	0.4480323664
+UniRef50_UPI000344CCAD: hypothetical protein	11.1283122130
+UniRef50_UPI000344CCAD: hypothetical protein|unclassified	11.1283122130
+UniRef50_N2GZC1: Inner membrane transport protein YhjV	11.1264196383
+UniRef50_N2GZC1: Inner membrane transport protein YhjV|g__Escherichia.s__Escherichia_coli	11.1264196383
+UniRef50_C8YZ36: WejK	11.1238001904
+UniRef50_C8YZ36: WejK|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.1238001904
+UniRef50_D7ZSZ7: PAS domain S-box protein	11.1158455853
+UniRef50_D7ZSZ7: PAS domain S-box protein|g__Escherichia.s__Escherichia_coli	11.1158455853
+UniRef50_A5UNG0: Adhesin-like protein	11.1150676188
+UniRef50_A5UNG0: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.1150676188
+UniRef50_U6FZS1	11.1141983884
+UniRef50_U6FZS1|unclassified	11.1141983884
+UniRef50_A4WUT7: Phage SPO1 DNA polymerase-related protein	11.1132791304
+UniRef50_A4WUT7: Phage SPO1 DNA polymerase-related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.1132791304
+UniRef50_Q4L9V0: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	11.1115372119
+UniRef50_Q4L9V0: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	11.1115372119
+UniRef50_E0MPJ0	11.1114683932
+UniRef50_E0MPJ0|unclassified	11.1114683932
+UniRef50_A6V5A0	11.1111111111
+UniRef50_A6V5A0|unclassified	11.1111111111
+UniRef50_D3QGQ6	11.1111111111
+UniRef50_D3QGQ6|g__Staphylococcus.s__Staphylococcus_epidermidis	11.1111111111
+UniRef50_D5CGP5	11.1111111111
+UniRef50_D5CGP5|unclassified	11.1111111111
+UniRef50_F9P4E4: Glutamine-dependent NAD(+) synthetase domain protein	11.1111111111
+UniRef50_F9P4E4: Glutamine-dependent NAD(+) synthetase domain protein|unclassified	11.1111111111
+UniRef50_J0KY16	11.1111111111
+UniRef50_J0KY16|unclassified	11.1111111111
+UniRef50_J2FAC3	11.1111111111
+UniRef50_J2FAC3|unclassified	11.1111111111
+UniRef50_Q6FD73	11.1111111111
+UniRef50_Q6FD73|g__Acinetobacter.s__Acinetobacter_baumannii	11.1111111111
+UniRef50_R7PSA5	11.1111111111
+UniRef50_R7PSA5|unclassified	11.1111111111
+UniRef50_Q8E4P3	11.1054356015
+UniRef50_Q8E4P3|g__Streptococcus.s__Streptococcus_agalactiae	11.1054356015
+UniRef50_S4XRJ9	11.1037196065
+UniRef50_S4XRJ9|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.0000000000
+UniRef50_S4XRJ9|unclassified	1.1037196065
+UniRef50_B9KU56: Xanthine oxidase	11.1020205703
+UniRef50_B9KU56: Xanthine oxidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.1020205703
+UniRef50_P77795	11.1009997084
+UniRef50_P77795|g__Escherichia.s__Escherichia_coli	11.1009997084
+UniRef50_E2QQ87: Phage baseplate assembly protein	11.1006963717
+UniRef50_E2QQ87: Phage baseplate assembly protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.9109278722
+UniRef50_E2QQ87: Phage baseplate assembly protein|unclassified	0.1897684994
+UniRef50_D5AKL4: Ferrous iron transport protein A-2	11.1002385175
+UniRef50_D5AKL4: Ferrous iron transport protein A-2|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.1002385175
+UniRef50_A7ZJK9	11.0997717593
+UniRef50_A7ZJK9|g__Escherichia.s__Escherichia_coli	8.0000000000
+UniRef50_A7ZJK9|unclassified	3.0997717593
+UniRef50_U5NN08	11.0985069136
+UniRef50_U5NN08|unclassified	11.0985069136
+UniRef50_Q4FS24: Putative phosphoenolpyruvate synthase regulatory protein	11.0976265752
+UniRef50_Q4FS24: Putative phosphoenolpyruvate synthase regulatory protein|g__Acinetobacter.s__Acinetobacter_baumannii	10.8108392888
+UniRef50_Q4FS24: Putative phosphoenolpyruvate synthase regulatory protein|unclassified	0.2867872864
+UniRef50_Q3IVA8	11.0926117216
+UniRef50_Q3IVA8|unclassified	7.4694233158
+UniRef50_Q3IVA8|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.6231884058
+UniRef50_P76002: Inhibitor of g-type lysozyme	11.0870126891
+UniRef50_P76002: Inhibitor of g-type lysozyme|g__Escherichia.s__Escherichia_coli	11.0870126891
+UniRef50_A6LZB4: ApbE family lipoprotein	11.0827934227
+UniRef50_A6LZB4: ApbE family lipoprotein|g__Clostridium.s__Clostridium_beijerinckii	11.0827934227
+UniRef50_P00887: Phospho-2-dehydro-3-deoxyheptonate aldolase, Trp-sensitive	11.0813917543
+UniRef50_P00887: Phospho-2-dehydro-3-deoxyheptonate aldolase, Trp-sensitive|g__Escherichia.s__Escherichia_coli	10.3843939481
+UniRef50_P00887: Phospho-2-dehydro-3-deoxyheptonate aldolase, Trp-sensitive|unclassified	0.6969978062
+UniRef50_S0ZSN8: FhuE receptor	11.0804738562
+UniRef50_S0ZSN8: FhuE receptor|g__Escherichia.s__Escherichia_coli	11.0804738562
+UniRef50_B9KNX2: Transcriptional regulator, ArsR family	11.0804174340
+UniRef50_B9KNX2: Transcriptional regulator, ArsR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.0804174340
+UniRef50_Q5HMC1	11.0782216230
+UniRef50_Q5HMC1|g__Staphylococcus.s__Staphylococcus_epidermidis	11.0782216230
+UniRef50_U1ASZ8: Diguanylate cyclase domain protein	11.0776877175
+UniRef50_U1ASZ8: Diguanylate cyclase domain protein|g__Escherichia.s__Escherichia_coli	11.0776877175
+UniRef50_G2L441	11.0770055080
+UniRef50_G2L441|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.0770055080
+UniRef50_I0G0V1: Transcriptional regulatory protein TetR family	11.0696788477
+UniRef50_I0G0V1: Transcriptional regulatory protein TetR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.0696788477
+UniRef50_Q2RMW0: 3-dehydroquinate synthase	11.0656958392
+UniRef50_Q2RMW0: 3-dehydroquinate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.9996135152
+UniRef50_Q2RMW0: 3-dehydroquinate synthase|unclassified	0.0660823240
+UniRef50_R9ZF93	11.0566959138
+UniRef50_R9ZF93|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.0566959138
+UniRef50_X2NAF9: Glycerol-3-phosphate dehydrogenase	11.0563867624
+UniRef50_X2NAF9: Glycerol-3-phosphate dehydrogenase|g__Escherichia.s__Escherichia_coli	11.0563867624
+UniRef50_Y5PB14	11.0500610501
+UniRef50_Y5PB14|g__Staphylococcus.s__Staphylococcus_epidermidis	11.0500610501
+UniRef50_Q8XRC2: UPF0271 protein RSp0936	11.0491732811
+UniRef50_Q8XRC2: UPF0271 protein RSp0936|g__Acinetobacter.s__Acinetobacter_baumannii	11.0491732811
+UniRef50_Q8DSK9	11.0468735215
+UniRef50_Q8DSK9|g__Streptococcus.s__Streptococcus_mutans	11.0468735215
+UniRef50_C7NAK8: PP-loop domain protein	11.0440567026
+UniRef50_C7NAK8: PP-loop domain protein|g__Clostridium.s__Clostridium_beijerinckii	11.0440567026
+UniRef50_A0A023S0I7: Rod shape-determining protein MreD	11.0439816420
+UniRef50_A0A023S0I7: Rod shape-determining protein MreD|g__Acinetobacter.s__Acinetobacter_baumannii	11.0439816420
+UniRef50_B9KU76: Gas vesicle protein	11.0432330827
+UniRef50_B9KU76: Gas vesicle protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	11.0432330827
+UniRef50_P44842: IMPACT family member HI_0722	11.0421819412
+UniRef50_P44842: IMPACT family member HI_0722|g__Escherichia.s__Escherichia_coli	11.0421819412
+UniRef50_S1HVV1	11.0415246112
+UniRef50_S1HVV1|g__Escherichia.s__Escherichia_coli	11.0415246112
+UniRef50_N5MF41	11.0400345716
+UniRef50_N5MF41|g__Staphylococcus.s__Staphylococcus_aureus	8.4745762712
+UniRef50_N5MF41|unclassified	2.5654583004
+UniRef50_B1XZN1: Protease Do	11.0376215214
+UniRef50_B1XZN1: Protease Do|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.0376215214
+UniRef50_Q8DSG4: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit C	11.0368641183
+UniRef50_Q8DSG4: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit C|g__Streptococcus.s__Streptococcus_mutans	11.0368641183
+UniRef50_Q9HVX2: Putative GTP cyclohydrolase 1 type 2	11.0364422090
+UniRef50_Q9HVX2: Putative GTP cyclohydrolase 1 type 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.0364422090
+UniRef50_P58415: Sulfopyruvate decarboxylase subunit alpha	11.0361335272
+UniRef50_P58415: Sulfopyruvate decarboxylase subunit alpha|g__Methanobrevibacter.s__Methanobrevibacter_smithii	11.0361335272
+UniRef50_G8V940: MutT/Nudix family protein	11.0296663703
+UniRef50_G8V940: MutT/Nudix family protein|g__Propionibacterium.s__Propionibacterium_acnes	11.0296663703
+UniRef50_Q3J6L1	11.0255345619
+UniRef50_Q3J6L1|unclassified	6.3306988811
+UniRef50_Q3J6L1|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.6948356808
+UniRef50_UPI000464716F: hypothetical protein, partial	11.0253345841
+UniRef50_UPI000464716F: hypothetical protein, partial|unclassified	11.0253345841
+UniRef50_Q9RRA3	11.0192837466
+UniRef50_Q9RRA3|g__Deinococcus.s__Deinococcus_radiodurans	11.0192837466
+UniRef50_Q088F4: Drug resistance transporter, EmrB/QacA subfamily	11.0186379206
+UniRef50_Q088F4: Drug resistance transporter, EmrB/QacA subfamily|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.0186379206
+UniRef50_F2D6B6: Predicted protein	11.0164500567
+UniRef50_F2D6B6: Predicted protein|unclassified	11.0164500567
+UniRef50_Q08382: Molybdenum transport system permease protein ModB	11.0155222883
+UniRef50_Q08382: Molybdenum transport system permease protein ModB|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.0155222883
+UniRef50_U5UKL3	11.0077235706
+UniRef50_U5UKL3|g__Staphylococcus.s__Staphylococcus_epidermidis	7.3040198669
+UniRef50_U5UKL3|g__Staphylococcus.s__Staphylococcus_aureus	3.7037037037
+UniRef50_Q05098: Ferric enterobactin receptor	11.0067668995
+UniRef50_Q05098: Ferric enterobactin receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.0067668995
+UniRef50_L0DYV0: Magnesium and cobalt efflux protein CorC	11.0033889808
+UniRef50_L0DYV0: Magnesium and cobalt efflux protein CorC|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.0033889808
+UniRef50_M9J5S9: Molybdopterin-binding domain of aldehyde dehydrogenase family protein	11.0027876937
+UniRef50_M9J5S9: Molybdopterin-binding domain of aldehyde dehydrogenase family protein|g__Escherichia.s__Escherichia_coli	11.0027876937
+UniRef50_Q51366: GDP-mannose 4,6-dehydratase	11.0023623180
+UniRef50_Q51366: GDP-mannose 4,6-dehydratase|g__Pseudomonas.s__Pseudomonas_aeruginosa	11.0023623180
+UniRef50_G1ZE91: Outer membrane protein assembly complex, YaeT protein	11.0020576906
+UniRef50_G1ZE91: Outer membrane protein assembly complex, YaeT protein|g__Escherichia.s__Escherichia_coli	11.0020576906
+UniRef50_A1KWW5: Staphylococcus aureus E-1, EDINA plasmid DNA, complete sequence	10.9999248140
+UniRef50_A1KWW5: Staphylococcus aureus E-1, EDINA plasmid DNA, complete sequence|g__Staphylococcus.s__Staphylococcus_aureus	9.6153846154
+UniRef50_A1KWW5: Staphylococcus aureus E-1, EDINA plasmid DNA, complete sequence|unclassified	1.3845401986
+UniRef50_I7EUU9	10.9933292390
+UniRef50_I7EUU9|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.5837789661
+UniRef50_I7EUU9|unclassified	0.4095502728
+UniRef50_A0A023LAR6	10.9890109890
+UniRef50_A0A023LAR6|g__Escherichia.s__Escherichia_coli	10.9890109890
+UniRef50_E2ZP13	10.9890109890
+UniRef50_E2ZP13|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.9890109890
+UniRef50_F0D275	10.9890109890
+UniRef50_F0D275|unclassified	10.9890109890
+UniRef50_G3IRG3: P2 GpU family protein	10.9890109890
+UniRef50_G3IRG3: P2 GpU family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.9890109890
+UniRef50_G4PUX4	10.9890109890
+UniRef50_G4PUX4|g__Escherichia.s__Escherichia_coli	10.9890109890
+UniRef50_H3UIT4	10.9890109890
+UniRef50_H3UIT4|unclassified	10.9890109890
+UniRef50_H4E9B0	10.9890109890
+UniRef50_H4E9B0|g__Staphylococcus.s__Staphylococcus_aureus	10.9890109890
+UniRef50_Q8CSZ1	10.9890109890
+UniRef50_Q8CSZ1|g__Staphylococcus.s__Staphylococcus_epidermidis	10.9890109890
+UniRef50_R9DZP1	10.9890109890
+UniRef50_R9DZP1|g__Staphylococcus.s__Staphylococcus_aureus	10.9890109890
+UniRef50_W1Y9N7	10.9890109890
+UniRef50_W1Y9N7|unclassified	10.9890109890
+UniRef50_X6KU66	10.9890109890
+UniRef50_X6KU66|unclassified	10.9890109890
+UniRef50_Q6G726	10.9876147279
+UniRef50_Q6G726|g__Staphylococcus.s__Staphylococcus_aureus	10.9876147279
+UniRef50_A4WTM5	10.9853905215
+UniRef50_A4WTM5|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.9853905215
+UniRef50_F0YI67	10.9839170069
+UniRef50_F0YI67|unclassified	10.9839170069
+UniRef50_V8EVN4	10.9802767147
+UniRef50_V8EVN4|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.9802767147
+UniRef50_W5VLQ9: ABC transporter ATP-binding protein	10.9771957168
+UniRef50_W5VLQ9: ABC transporter ATP-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.9771957168
+UniRef50_Q8CNC0: SMR-type multidrug efflux transporter	10.9715668397
+UniRef50_Q8CNC0: SMR-type multidrug efflux transporter|g__Staphylococcus.s__Staphylococcus_epidermidis	10.9715668397
+UniRef50_P37751: Putative glycosyltransferase WbbK	10.9710740003
+UniRef50_P37751: Putative glycosyltransferase WbbK|g__Escherichia.s__Escherichia_coli	10.9710740003
+UniRef50_J0EVE3	10.9704401349
+UniRef50_J0EVE3|unclassified	10.9704401349
+UniRef50_G0EVT1: D-lactate dehydrogenase	10.9693750641
+UniRef50_G0EVT1: D-lactate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.9693750641
+UniRef50_D2ZQZ2	10.9669211196
+UniRef50_D2ZQZ2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.9669211196
+UniRef50_A7ZPF5	10.9645441672
+UniRef50_A7ZPF5|g__Escherichia.s__Escherichia_coli	10.9645441672
+UniRef50_T2EEM8: Maltose operon periplasmic family protein	10.9628783261
+UniRef50_T2EEM8: Maltose operon periplasmic family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.9628783261
+UniRef50_R6QI78: RpiR family Helix-turn-helix domain-containing protein	10.9611811285
+UniRef50_R6QI78: RpiR family Helix-turn-helix domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	10.9611811285
+UniRef50_A6WYZ9: Phage tail X family protein	10.9552432257
+UniRef50_A6WYZ9: Phage tail X family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.0000000000
+UniRef50_A6WYZ9: Phage tail X family protein|unclassified	0.9552432257
+UniRef50_P33362: Putative osmoprotectant uptake system substrate-binding protein OsmF	10.9490994936
+UniRef50_P33362: Putative osmoprotectant uptake system substrate-binding protein OsmF|g__Escherichia.s__Escherichia_coli	10.9490994936
+UniRef50_A4WX16	10.9458947989
+UniRef50_A4WX16|unclassified	10.9458947989
+UniRef50_B5QX27: Quinolinate synthase A	10.9457939009
+UniRef50_B5QX27: Quinolinate synthase A|g__Escherichia.s__Escherichia_coli	9.3316888940
+UniRef50_B5QX27: Quinolinate synthase A|unclassified	1.6141050069
+UniRef50_K5IX31	10.9441452007
+UniRef50_K5IX31|unclassified	10.9441452007
+UniRef50_Q6FFD0: D-alanyl-D-alanine endopeptidase, penicillin-binding protein 7 and penicillin-binding protein 8	10.9407218256
+UniRef50_Q6FFD0: D-alanyl-D-alanine endopeptidase, penicillin-binding protein 7 and penicillin-binding protein 8|g__Acinetobacter.s__Acinetobacter_baumannii	10.9407218256
+UniRef50_A3PJQ5: Phosphatidylglycerophosphatase A	10.9398802523
+UniRef50_A3PJQ5: Phosphatidylglycerophosphatase A|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.9398802523
+UniRef50_A5ULA6: UPF0173 metal-dependent hydrolase Msm_0779	10.9361065154
+UniRef50_A5ULA6: UPF0173 metal-dependent hydrolase Msm_0779|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.9361065154
+UniRef50_E5AMJ1: 5-methyltetrahydrofolate--homocysteine methyltransferase (EC 2.1.1.13) homocysteine-binding subunit	10.9355263971
+UniRef50_E5AMJ1: 5-methyltetrahydrofolate--homocysteine methyltransferase (EC 2.1.1.13) homocysteine-binding subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.9355263971
+UniRef50_P0AG19: N5-carboxyaminoimidazole ribonucleotide mutase	10.9354641524
+UniRef50_P0AG19: N5-carboxyaminoimidazole ribonucleotide mutase|g__Escherichia.s__Escherichia_coli	10.3017688130
+UniRef50_P0AG19: N5-carboxyaminoimidazole ribonucleotide mutase|unclassified	0.6336953394
+UniRef50_D2ZRY0	10.9330151216
+UniRef50_D2ZRY0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.9330151216
+UniRef50_K0Q5Z4	10.9303290559
+UniRef50_K0Q5Z4|unclassified	10.9303290559
+UniRef50_R7PXE1	10.9291802829
+UniRef50_R7PXE1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.9291802829
+UniRef50_D5BS88: Aerobic glycerol-3-phosphate dehydrogenase	10.9267585501
+UniRef50_D5BS88: Aerobic glycerol-3-phosphate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.9267585501
+UniRef50_A5UN27: Putative antimicrobial peptide ABC transporter, permease component	10.9258476505
+UniRef50_A5UN27: Putative antimicrobial peptide ABC transporter, permease component|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.9258476505
+UniRef50_I3GFM4	10.9221503158
+UniRef50_I3GFM4|g__Staphylococcus.s__Staphylococcus_aureus	10.9221503158
+UniRef50_A5UJ65	10.9173117117
+UniRef50_A5UJ65|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.9173117117
+UniRef50_Q160T4: Histidine--tRNA ligase	10.9151055006
+UniRef50_Q160T4: Histidine--tRNA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.7686957463
+UniRef50_Q160T4: Histidine--tRNA ligase|unclassified	1.1464097543
+UniRef50_A0A017Z9Z6	10.9121759991
+UniRef50_A0A017Z9Z6|g__Staphylococcus.s__Staphylococcus_aureus	10.9121759991
+UniRef50_Q8DSB1	10.9109116185
+UniRef50_Q8DSB1|g__Streptococcus.s__Streptococcus_mutans	10.9109116185
+UniRef50_O34814: Cell division ATP-binding protein FtsE	10.9107840682
+UniRef50_O34814: Cell division ATP-binding protein FtsE|g__Clostridium.s__Clostridium_beijerinckii	10.9107840682
+UniRef50_G7M6V2: Cof-like hydrolase	10.9103810180
+UniRef50_G7M6V2: Cof-like hydrolase|g__Clostridium.s__Clostridium_beijerinckii	10.9103810180
+UniRef50_C8S0X4	10.9080235701
+UniRef50_C8S0X4|unclassified	10.9080235701
+UniRef50_A5VZ70: Permease YjgP/YjgQ family protein	10.9049029971
+UniRef50_A5VZ70: Permease YjgP/YjgQ family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.9049029971
+UniRef50_A6VCM5: SsrA-binding protein	10.9042322559
+UniRef50_A6VCM5: SsrA-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.9042322559
+UniRef50_A5UKZ4	10.9027599395
+UniRef50_A5UKZ4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.9027599395
+UniRef50_K7Q7R6: Amino acid permease	10.9024294723
+UniRef50_K7Q7R6: Amino acid permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.9024294723
+UniRef50_I3KYK8	10.9016285920
+UniRef50_I3KYK8|unclassified	10.9016285920
+UniRef50_P46187: Protein RseC	10.8997716017
+UniRef50_P46187: Protein RseC|g__Escherichia.s__Escherichia_coli	10.8997716017
+UniRef50_D0IYI4: Response regulator receiver protein	10.8991825613
+UniRef50_D0IYI4: Response regulator receiver protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.8991825613
+UniRef50_F5YQ07: 4Fe-4S ferredoxin, iron-sulfur binding domain protein	10.8984347575
+UniRef50_F5YQ07: 4Fe-4S ferredoxin, iron-sulfur binding domain protein|g__Clostridium.s__Clostridium_beijerinckii	10.8984347575
+UniRef50_P77596	10.8983686241
+UniRef50_P77596|g__Escherichia.s__Escherichia_coli	10.8983686241
+UniRef50_B7V7M2: Cysteine synthase	10.8951390133
+UniRef50_B7V7M2: Cysteine synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.8951390133
+UniRef50_P0AC67: Glutaredoxin-like protein NrdH	10.8943136294
+UniRef50_P0AC67: Glutaredoxin-like protein NrdH|g__Escherichia.s__Escherichia_coli	10.8943136294
+UniRef50_Q88PE3: RND efflux membrane fusion protein-related protein	10.8918085650
+UniRef50_Q88PE3: RND efflux membrane fusion protein-related protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.8918085650
+UniRef50_Q8X5U4: 4'-phosphopantetheinyl transferase AcpT	10.8911940368
+UniRef50_Q8X5U4: 4'-phosphopantetheinyl transferase AcpT|g__Escherichia.s__Escherichia_coli	10.8911940368
+UniRef50_B1KWF3	10.8890193336
+UniRef50_B1KWF3|g__Clostridium.s__Clostridium_beijerinckii	10.8890193336
+UniRef50_A1KC01: Outer membrane protein	10.8879216562
+UniRef50_A1KC01: Outer membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.8879216562
+UniRef50_Q65Q81: 5'-nucleotidase SurE	10.8875371357
+UniRef50_Q65Q81: 5'-nucleotidase SurE|g__Escherichia.s__Escherichia_coli	10.8875371357
+UniRef50_P97089: Electron transfer flavoprotein subunit beta	10.8851286036
+UniRef50_P97089: Electron transfer flavoprotein subunit beta|g__Clostridium.s__Clostridium_beijerinckii	10.8851286036
+UniRef50_P27298: Oligopeptidase A	10.8837022191
+UniRef50_P27298: Oligopeptidase A|g__Escherichia.s__Escherichia_coli	10.7245990326
+UniRef50_P27298: Oligopeptidase A|unclassified	0.1591031866
+UniRef50_E7TI03	10.8831345102
+UniRef50_E7TI03|g__Escherichia.s__Escherichia_coli	10.8831345102
+UniRef50_UPI00046E29A5: dihydroxy-acid dehydratase, partial	10.8820379236
+UniRef50_UPI00046E29A5: dihydroxy-acid dehydratase, partial|unclassified	10.8820379236
+UniRef50_UPI0003B319A3: cytochrome C, partial	10.8788977318
+UniRef50_UPI0003B319A3: cytochrome C, partial|unclassified	10.8788977318
+UniRef50_F4DYP4: Adenylate cyclase	10.8774099840
+UniRef50_F4DYP4: Adenylate cyclase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.8774099840
+UniRef50_V9WDD5: Deacetylase	10.8721839960
+UniRef50_V9WDD5: Deacetylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.8721839960
+UniRef50_W8S7W9: tRNA:Cm32/Um32 methyltransferase	10.8699398272
+UniRef50_W8S7W9: tRNA:Cm32/Um32 methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.8699398272
+UniRef50_A0A023Z1J3	10.8695652174
+UniRef50_A0A023Z1J3|g__Escherichia.s__Escherichia_coli	10.8695652174
+UniRef50_A8YY53	10.8695652174
+UniRef50_A8YY53|unclassified	10.8695652174
+UniRef50_A8YYB8	10.8695652174
+UniRef50_A8YYB8|g__Staphylococcus.s__Staphylococcus_aureus	10.8695652174
+UniRef50_B4RK19	10.8695652174
+UniRef50_B4RK19|unclassified	10.8695652174
+UniRef50_E5ZTT6	10.8695652174
+UniRef50_E5ZTT6|g__Escherichia.s__Escherichia_coli	10.8695652174
+UniRef50_P69430: Sec-independent protein translocase protein TatA	10.8695652174
+UniRef50_P69430: Sec-independent protein translocase protein TatA|g__Escherichia.s__Escherichia_coli	10.8695652174
+UniRef50_Q8DTM3	10.8695652174
+UniRef50_Q8DTM3|g__Streptococcus.s__Streptococcus_mutans	10.8695652174
+UniRef50_R9YQW1	10.8695652174
+UniRef50_R9YQW1|g__Staphylococcus.s__Staphylococcus_aureus	10.8695652174
+UniRef50_W8SUJ3	10.8695652174
+UniRef50_W8SUJ3|g__Escherichia.s__Escherichia_coli	10.8695652174
+UniRef50_F6CST0: Peroxiredoxin	10.8682517841
+UniRef50_F6CST0: Peroxiredoxin|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.8682517841
+UniRef50_B1M611: 4-hydroxythreonine-4-phosphate dehydrogenase	10.8681064384
+UniRef50_B1M611: 4-hydroxythreonine-4-phosphate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.8681064384
+UniRef50_J7Q7F5	10.8646753802
+UniRef50_J7Q7F5|g__Escherichia.s__Escherichia_coli	10.8646753802
+UniRef50_W7WPQ3	10.8624263990
+UniRef50_W7WPQ3|unclassified	10.8624263990
+UniRef50_R6FYV1	10.8601244491
+UniRef50_R6FYV1|g__Clostridium.s__Clostridium_beijerinckii	10.8601244491
+UniRef50_A7HAH7	10.8590386507
+UniRef50_A7HAH7|unclassified	10.8590386507
+UniRef50_Q93U24: Major curlin subunit	10.8550142599
+UniRef50_Q93U24: Major curlin subunit|g__Escherichia.s__Escherichia_coli	10.8550142599
+UniRef50_M9R6L8	10.8507532221
+UniRef50_M9R6L8|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.8507532221
+UniRef50_H4G4F4: Biotin-requiring enzyme domain protein (Fragment)	10.8504987897
+UniRef50_H4G4F4: Biotin-requiring enzyme domain protein (Fragment)|g__Staphylococcus.s__Staphylococcus_aureus	9.8039215686
+UniRef50_H4G4F4: Biotin-requiring enzyme domain protein (Fragment)|unclassified	1.0465772211
+UniRef50_F6GB14: Multidrug efflux system transmembrane protein	10.8497967478
+UniRef50_F6GB14: Multidrug efflux system transmembrane protein|g__Escherichia.s__Escherichia_coli	10.8497967478
+UniRef50_W8STI1	10.8479532164
+UniRef50_W8STI1|g__Escherichia.s__Escherichia_coli	10.8479532164
+UniRef50_A5UNJ8	10.8441196943
+UniRef50_A5UNJ8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.8441196943
+UniRef50_L8UD09	10.8385421056
+UniRef50_L8UD09|unclassified	10.8385421056
+UniRef50_B7LP59: Bacteriophage N4 receptor, inner membrane subunit	10.8374772292
+UniRef50_B7LP59: Bacteriophage N4 receptor, inner membrane subunit|g__Escherichia.s__Escherichia_coli	10.8374772292
+UniRef50_W5DRR2	10.8370622306
+UniRef50_W5DRR2|unclassified	10.8370622306
+UniRef50_A0A034GSS9	10.8322570220
+UniRef50_A0A034GSS9|g__Staphylococcus.s__Staphylococcus_aureus	9.0090090090
+UniRef50_A0A034GSS9|unclassified	1.8232480130
+UniRef50_A0A037WRM5	10.8318086711
+UniRef50_A0A037WRM5|unclassified	10.8318086711
+UniRef50_F8JBM1: Glycine/betaine/proline transporter, membrane component of ABC transporter	10.8293116243
+UniRef50_F8JBM1: Glycine/betaine/proline transporter, membrane component of ABC transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.8293116243
+UniRef50_I4SXS6: Choline transport protein BetT	10.8225526113
+UniRef50_I4SXS6: Choline transport protein BetT|g__Escherichia.s__Escherichia_coli	10.8225526113
+UniRef50_A5UK05	10.8212809462
+UniRef50_A5UK05|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.8212809462
+UniRef50_A6M280: RelA/SpoT domain protein	10.8195069809
+UniRef50_A6M280: RelA/SpoT domain protein|g__Clostridium.s__Clostridium_beijerinckii	5.6833912478
+UniRef50_A6M280: RelA/SpoT domain protein|g__Streptococcus.s__Streptococcus_agalactiae	5.1361157330
+UniRef50_O27635: Protein archease	10.8180015558
+UniRef50_O27635: Protein archease|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.8180015558
+UniRef50_A5UND0: Glycosyltransferase, GT2 family	10.8158350448
+UniRef50_A5UND0: Glycosyltransferase, GT2 family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.8158350448
+UniRef50_A9CHT4	10.8131599536
+UniRef50_A9CHT4|unclassified	5.9587910216
+UniRef50_A9CHT4|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.8543689320
+UniRef50_E0WQQ5: Methionine import ATP-binding protein MetN	10.8104512236
+UniRef50_E0WQQ5: Methionine import ATP-binding protein MetN|g__Escherichia.s__Escherichia_coli	10.8104512236
+UniRef50_P0A8Z9: Esterase YqiA	10.8089934248
+UniRef50_P0A8Z9: Esterase YqiA|g__Escherichia.s__Escherichia_coli	10.8089934248
+UniRef50_P39636: Amino-acid permease RocC	10.8069869798
+UniRef50_P39636: Amino-acid permease RocC|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.8069869798
+UniRef50_N1TQ93	10.8063136497
+UniRef50_N1TQ93|unclassified	10.8063136497
+UniRef50_UPI00037C9F17: hypothetical protein	10.8058463625
+UniRef50_UPI00037C9F17: hypothetical protein|unclassified	10.8058463625
+UniRef50_M1MCZ5	10.8047648854
+UniRef50_M1MCZ5|g__Clostridium.s__Clostridium_beijerinckii	10.8047648854
+UniRef50_A4X058	10.8033187203
+UniRef50_A4X058|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.8033187203
+UniRef50_P37003	10.8001215724
+UniRef50_P37003|g__Escherichia.s__Escherichia_coli	10.8001215724
+UniRef50_B9TMG2	10.7947629030
+UniRef50_B9TMG2|unclassified	10.7947629030
+UniRef50_F2K1C2: Cytochrome b	10.7929829320
+UniRef50_F2K1C2: Cytochrome b|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.7929829320
+UniRef50_A4WTC1	10.7902339000
+UniRef50_A4WTC1|unclassified	10.7902339000
+UniRef50_Q60759: Glutaryl-CoA dehydrogenase, mitochondrial	10.7843239036
+UniRef50_Q60759: Glutaryl-CoA dehydrogenase, mitochondrial|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8515007305
+UniRef50_Q60759: Glutaryl-CoA dehydrogenase, mitochondrial|g__Deinococcus.s__Deinococcus_radiodurans	3.7173943041
+UniRef50_Q60759: Glutaryl-CoA dehydrogenase, mitochondrial|unclassified	0.2154288690
+UniRef50_C6SQE5	10.7843137255
+UniRef50_C6SQE5|g__Streptococcus.s__Streptococcus_mutans	10.7843137255
+UniRef50_B9KQA6: CheX protein	10.7793709921
+UniRef50_B9KQA6: CheX protein|unclassified	10.7793709921
+UniRef50_A5UJQ8: 3-dehydroquinate dehydratase	10.7782848991
+UniRef50_A5UJQ8: 3-dehydroquinate dehydratase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.7782848991
+UniRef50_B9AGQ2	10.7774793799
+UniRef50_B9AGQ2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.7774793799
+UniRef50_L3HWN4: Inner membrane protein ybhI	10.7739664339
+UniRef50_L3HWN4: Inner membrane protein ybhI|g__Escherichia.s__Escherichia_coli	10.7739664339
+UniRef50_J9GTY9	10.7734181658
+UniRef50_J9GTY9|g__Staphylococcus.s__Staphylococcus_aureus	10.3092783505
+UniRef50_J9GTY9|unclassified	0.4641398153
+UniRef50_O34125: ATP-dependent Clp protease proteolytic subunit 2	10.7692655027
+UniRef50_O34125: ATP-dependent Clp protease proteolytic subunit 2|g__Escherichia.s__Escherichia_coli	10.7692655027
+UniRef50_Q5HQP3	10.7690265908
+UniRef50_Q5HQP3|g__Staphylococcus.s__Staphylococcus_aureus	10.5410499845
+UniRef50_Q5HQP3|unclassified	0.2279766063
+UniRef50_P0A345: 10 kDa chaperonin	10.7671628987
+UniRef50_P0A345: 10 kDa chaperonin|g__Staphylococcus.s__Staphylococcus_epidermidis	7.1957343273
+UniRef50_P0A345: 10 kDa chaperonin|g__Staphylococcus.s__Staphylococcus_aureus	3.5714285714
+UniRef50_B7UZN8	10.7612383376
+UniRef50_B7UZN8|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.7612383376
+UniRef50_U5NZ17	10.7598038678
+UniRef50_U5NZ17|g__Staphylococcus.s__Staphylococcus_epidermidis	9.9269190560
+UniRef50_U5NZ17|unclassified	0.8328848118
+UniRef50_Q8U1E4: Translation initiation factor 5A	10.7588269890
+UniRef50_Q8U1E4: Translation initiation factor 5A|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.7588269890
+UniRef50_UPI000262AEEC: riboflavin biosynthesis protein RibD, partial	10.7563036470
+UniRef50_UPI000262AEEC: riboflavin biosynthesis protein RibD, partial|unclassified	10.7563036470
+UniRef50_Q8DZ15	10.7556828162
+UniRef50_Q8DZ15|g__Streptococcus.s__Streptococcus_agalactiae	10.7556828162
+UniRef50_C5N338	10.7527802643
+UniRef50_C5N338|g__Staphylococcus.s__Staphylococcus_aureus	10.7527802643
+UniRef50_F8YFA3	10.7526881720
+UniRef50_F8YFA3|g__Escherichia.s__Escherichia_coli	10.7526881720
+UniRef50_F9YZE2	10.7526881720
+UniRef50_F9YZE2|g__Propionibacterium.s__Propionibacterium_acnes	10.7526881720
+UniRef50_J5YCS8	10.7526881720
+UniRef50_J5YCS8|unclassified	10.7526881720
+UniRef50_Q4L6K7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	10.7526881720
+UniRef50_Q4L6K7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	10.7526881720
+UniRef50_X5E562	10.7526881720
+UniRef50_X5E562|g__Staphylococcus.s__Staphylococcus_aureus	10.7526881720
+UniRef50_P42403: Aryl-phospho-beta-D-glucosidase BglC	10.7506054586
+UniRef50_P42403: Aryl-phospho-beta-D-glucosidase BglC|g__Clostridium.s__Clostridium_beijerinckii	10.7181499181
+UniRef50_P42403: Aryl-phospho-beta-D-glucosidase BglC|unclassified	0.0324555405
+UniRef50_Q5PBQ8: Ribonuclease H	10.7506047832
+UniRef50_Q5PBQ8: Ribonuclease H|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.3092783505
+UniRef50_Q5PBQ8: Ribonuclease H|unclassified	0.4413264327
+UniRef50_B9KX61: Transposase, IS4 family protein	10.7495648574
+UniRef50_B9KX61: Transposase, IS4 family protein|unclassified	10.7495648574
+UniRef50_UPI00036390EE: hypothetical protein	10.7479805026
+UniRef50_UPI00036390EE: hypothetical protein|unclassified	10.7479805026
+UniRef50_G4LR38	10.7448193243
+UniRef50_G4LR38|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.1431641181
+UniRef50_G4LR38|unclassified	0.6016552063
+UniRef50_V8G0E6: Cell wall-binding protein	10.7437529155
+UniRef50_V8G0E6: Cell wall-binding protein|g__Clostridium.s__Clostridium_beijerinckii	10.7437529155
+UniRef50_Q9RU05	10.7432219899
+UniRef50_Q9RU05|g__Deinococcus.s__Deinococcus_radiodurans	10.7432219899
+UniRef50_UPI00036D10D1: hypothetical protein	10.7417754959
+UniRef50_UPI00036D10D1: hypothetical protein|unclassified	10.7417754959
+UniRef50_M1MMV7: Peptide deformylase	10.7410473583
+UniRef50_M1MMV7: Peptide deformylase|g__Clostridium.s__Clostridium_beijerinckii	10.7410473583
+UniRef50_P0AB42: Multiple stress resistance protein BhsA	10.7403656522
+UniRef50_P0AB42: Multiple stress resistance protein BhsA|g__Escherichia.s__Escherichia_coli	10.7403656522
+UniRef50_Q8FL97	10.7394579900
+UniRef50_Q8FL97|g__Escherichia.s__Escherichia_coli	10.7394579900
+UniRef50_Q3IWX5: Putative tape measure protein	10.7389186580
+UniRef50_Q3IWX5: Putative tape measure protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.7389186580
+UniRef50_A0A059F853: Acetylglutamate semialdehyde dehydrogenase	10.7372641110
+UniRef50_A0A059F853: Acetylglutamate semialdehyde dehydrogenase|unclassified	10.7372641110
+UniRef50_U3U8V5	10.7318924666
+UniRef50_U3U8V5|unclassified	6.3459275543
+UniRef50_U3U8V5|g__Staphylococcus.s__Staphylococcus_epidermidis	4.3859649123
+UniRef50_A3PKE4: Flagellar biosynthetic protein fliR	10.7259844829
+UniRef50_A3PKE4: Flagellar biosynthetic protein fliR|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.7259844829
+UniRef50_G7LZ27: Transcriptional regulator, TetR family	10.7248435649
+UniRef50_G7LZ27: Transcriptional regulator, TetR family|g__Clostridium.s__Clostridium_beijerinckii	10.7248435649
+UniRef50_A3PFV7: Oligopeptide/dipeptide ABC transporter, ATPase subunit	10.7231103122
+UniRef50_A3PFV7: Oligopeptide/dipeptide ABC transporter, ATPase subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.7231103122
+UniRef50_Q8CND6: FDHD protein	10.7194241085
+UniRef50_Q8CND6: FDHD protein|g__Staphylococcus.s__Staphylococcus_epidermidis	10.7194241085
+UniRef50_Q7VSF4: 3,4-dihydroxy-2-butanone 4-phosphate synthase	10.7183811467
+UniRef50_Q7VSF4: 3,4-dihydroxy-2-butanone 4-phosphate synthase|g__Escherichia.s__Escherichia_coli	10.7183811467
+UniRef50_F6F2F7: Sodium/hydrogen exchanger	10.7183090827
+UniRef50_F6F2F7: Sodium/hydrogen exchanger|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.7183090827
+UniRef50_T1Y9H0	10.7174447889
+UniRef50_T1Y9H0|g__Staphylococcus.s__Staphylococcus_aureus	10.7174447889
+UniRef50_K1V2Z1	10.7089239172
+UniRef50_K1V2Z1|unclassified	10.7089239172
+UniRef50_Q9HX91	10.7074005868
+UniRef50_Q9HX91|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.7074005868
+UniRef50_P69825: Mannitol-specific cryptic phosphotransferase enzyme IIA component	10.6973525341
+UniRef50_P69825: Mannitol-specific cryptic phosphotransferase enzyme IIA component|g__Escherichia.s__Escherichia_coli	10.6973525341
+UniRef50_C6XQ34: Prephenate dehydratase	10.6961439995
+UniRef50_C6XQ34: Prephenate dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.6961439995
+UniRef50_B0YLW6: Cysteine desulfurase, mitosomal	10.6916104165
+UniRef50_B0YLW6: Cysteine desulfurase, mitosomal|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.7561353054
+UniRef50_B0YLW6: Cysteine desulfurase, mitosomal|g__Neisseria.s__Neisseria_meningitidis	0.8992805755
+UniRef50_B0YLW6: Cysteine desulfurase, mitosomal|unclassified	0.0361945355
+UniRef50_G8VIN9	10.6912350916
+UniRef50_G8VIN9|g__Propionibacterium.s__Propionibacterium_acnes	10.6912350916
+UniRef50_A7MJM9: DNA gyrase inhibitor	10.6910781554
+UniRef50_A7MJM9: DNA gyrase inhibitor|g__Escherichia.s__Escherichia_coli	10.6910781554
+UniRef50_L2Z1P6: Evolved beta-galactosidase subunit alpha	10.6895608380
+UniRef50_L2Z1P6: Evolved beta-galactosidase subunit alpha|g__Escherichia.s__Escherichia_coli	10.6895608380
+UniRef50_J6J2T4	10.6867945790
+UniRef50_J6J2T4|unclassified	10.6867945790
+UniRef50_S4P4Q3: Titin (Fragment)	10.6814171543
+UniRef50_S4P4Q3: Titin (Fragment)|unclassified	10.6814171543
+UniRef50_B3PB28: Membrane protein, PerM family	10.6763472132
+UniRef50_B3PB28: Membrane protein, PerM family|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.6763472132
+UniRef50_UPI00036FC0D3: hypothetical protein	10.6749307890
+UniRef50_UPI00036FC0D3: hypothetical protein|unclassified	10.6749307890
+UniRef50_A1WPN7: Peptidase C39, bacteriocin processing	10.6735170965
+UniRef50_A1WPN7: Peptidase C39, bacteriocin processing|g__Neisseria.s__Neisseria_meningitidis	10.6735170965
+UniRef50_P45857: Acyl-CoA dehydrogenase	10.6726937273
+UniRef50_P45857: Acyl-CoA dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	10.5227310122
+UniRef50_P45857: Acyl-CoA dehydrogenase|unclassified	0.1499627151
+UniRef50_E1RTM0	10.6704028370
+UniRef50_E1RTM0|g__Escherichia.s__Escherichia_coli	9.9405366481
+UniRef50_E1RTM0|unclassified	0.7298661889
+UniRef50_Q3J9B9: 30S ribosomal protein S15	10.6703847029
+UniRef50_Q3J9B9: 30S ribosomal protein S15|g__Staphylococcus.s__Staphylococcus_epidermidis	10.6703847029
+UniRef50_A7ZI26: Probable fimbrial chaperone EcpB	10.6699354996
+UniRef50_A7ZI26: Probable fimbrial chaperone EcpB|g__Escherichia.s__Escherichia_coli	10.6699354996
+UniRef50_Q8ZAX7: tRNA-dihydrouridine synthase B	10.6693441480
+UniRef50_Q8ZAX7: tRNA-dihydrouridine synthase B|g__Escherichia.s__Escherichia_coli	9.7068802404
+UniRef50_Q8ZAX7: tRNA-dihydrouridine synthase B|g__Acinetobacter.s__Acinetobacter_baumannii	0.9624639076
+UniRef50_G2L2J8	10.6666666667
+UniRef50_G2L2J8|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.6666666667
+UniRef50_A6QFG9	10.6659135037
+UniRef50_A6QFG9|g__Staphylococcus.s__Staphylococcus_aureus	9.4884102913
+UniRef50_A6QFG9|unclassified	1.1775032124
+UniRef50_B7UVS6: Exoenzyme S	10.6657138419
+UniRef50_B7UVS6: Exoenzyme S|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.6657138419
+UniRef50_I6RTW0	10.6638331327
+UniRef50_I6RTW0|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.6638331327
+UniRef50_C3SFW7	10.6637710213
+UniRef50_C3SFW7|g__Escherichia.s__Escherichia_coli	10.6637710213
+UniRef50_E1TCG3: ABC transporter related protein	10.6634217265
+UniRef50_E1TCG3: ABC transporter related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.6634217265
+UniRef50_D2GMB8	10.6601723622
+UniRef50_D2GMB8|g__Staphylococcus.s__Staphylococcus_epidermidis	5.4875252764
+UniRef50_D2GMB8|g__Staphylococcus.s__Staphylococcus_aureus	2.6246719160
+UniRef50_D2GMB8|unclassified	2.5479751698
+UniRef50_P0ACY2: Putative NAD(P)H nitroreductase YdjA	10.6585318940
+UniRef50_P0ACY2: Putative NAD(P)H nitroreductase YdjA|g__Escherichia.s__Escherichia_coli	10.6585318940
+UniRef50_M1MS56: Stage II sporulation protein D	10.6583294343
+UniRef50_M1MS56: Stage II sporulation protein D|g__Clostridium.s__Clostridium_beijerinckii	10.6583294343
+UniRef50_P75995	10.6527484419
+UniRef50_P75995|g__Escherichia.s__Escherichia_coli	10.6527484419
+UniRef50_M4X5I0: Response regulator receiver modulated diguanylate cyclase/phosphodiesterase	10.6518689622
+UniRef50_M4X5I0: Response regulator receiver modulated diguanylate cyclase/phosphodiesterase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.6518689622
+UniRef50_Q9HXI2: Protein translocase subunit SecF	10.6484432927
+UniRef50_Q9HXI2: Protein translocase subunit SecF|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.6484432927
+UniRef50_L7U4Q2	10.6472166331
+UniRef50_L7U4Q2|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.6472166331
+UniRef50_P33347	10.6471676721
+UniRef50_P33347|g__Escherichia.s__Escherichia_coli	10.6471676721
+UniRef50_B7UZ76: TadG	10.6456273136
+UniRef50_B7UZ76: TadG|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.6456273136
+UniRef50_K9NJR2: Universal stress protein	10.6423759834
+UniRef50_K9NJR2: Universal stress protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.6423759834
+UniRef50_A0A024HKX9	10.6382978723
+UniRef50_A0A024HKX9|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.6382978723
+UniRef50_A5IVL0	10.6382978723
+UniRef50_A5IVL0|unclassified	10.6382978723
+UniRef50_A6UYQ5	10.6382978723
+UniRef50_A6UYQ5|unclassified	10.6382978723
+UniRef50_B5XYP0	10.6382978723
+UniRef50_B5XYP0|unclassified	10.6382978723
+UniRef50_L9C3K6: ATP-binding/permease CydD domain protein (Fragment)	10.6382978723
+UniRef50_L9C3K6: ATP-binding/permease CydD domain protein (Fragment)|g__Escherichia.s__Escherichia_coli	10.6382978723
+UniRef50_M2PHP8: Galactitol utilization operon repressor (Fragment)	10.6382978723
+UniRef50_M2PHP8: Galactitol utilization operon repressor (Fragment)|g__Escherichia.s__Escherichia_coli	10.6382978723
+UniRef50_Q8CT46	10.6382978723
+UniRef50_Q8CT46|g__Staphylococcus.s__Staphylococcus_epidermidis	10.6382978723
+UniRef50_V4YX28	10.6382978723
+UniRef50_V4YX28|unclassified	10.6382978723
+UniRef50_Q0T014: Ribosomal RNA small subunit methyltransferase B	10.6377011250
+UniRef50_Q0T014: Ribosomal RNA small subunit methyltransferase B|g__Escherichia.s__Escherichia_coli	10.3729907838
+UniRef50_Q0T014: Ribosomal RNA small subunit methyltransferase B|unclassified	0.2647103412
+UniRef50_P0ABQ5: Dihydrofolate reductase	10.6374607511
+UniRef50_P0ABQ5: Dihydrofolate reductase|g__Escherichia.s__Escherichia_coli	10.5263157895
+UniRef50_P0ABQ5: Dihydrofolate reductase|unclassified	0.1111449616
+UniRef50_P13512: Cobalt-zinc-cadmium resistance protein CzcD	10.6369292496
+UniRef50_P13512: Cobalt-zinc-cadmium resistance protein CzcD|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.6369292496
+UniRef50_P15032: Exodeoxyribonuclease 8	10.6337834263
+UniRef50_P15032: Exodeoxyribonuclease 8|g__Escherichia.s__Escherichia_coli	10.6337834263
+UniRef50_UPI00022CA5D5: PREDICTED: 1-deoxy-D-xylulose-5-phosphate synthase-like	10.6289991473
+UniRef50_UPI00022CA5D5: PREDICTED: 1-deoxy-D-xylulose-5-phosphate synthase-like|g__Escherichia.s__Escherichia_coli	10.5970029387
+UniRef50_UPI00022CA5D5: PREDICTED: 1-deoxy-D-xylulose-5-phosphate synthase-like|unclassified	0.0319962087
+UniRef50_Q3J215	10.6250386199
+UniRef50_Q3J215|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.3110665223
+UniRef50_Q3J215|unclassified	2.3139720976
+UniRef50_F2J6W6: Transcriptional regulator	10.6248405366
+UniRef50_F2J6W6: Transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.3306796891
+UniRef50_F2J6W6: Transcriptional regulator|unclassified	1.2941608475
+UniRef50_A5UKI4: Predicted phosphoesterase, YfcE	10.6202391167
+UniRef50_A5UKI4: Predicted phosphoesterase, YfcE|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.6202391167
+UniRef50_L1K6L8: Methyl accepting chemotaxis protein	10.6199566665
+UniRef50_L1K6L8: Methyl accepting chemotaxis protein|unclassified	6.3646375175
+UniRef50_L1K6L8: Methyl accepting chemotaxis protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.2553191489
+UniRef50_A5IP39	10.6191200496
+UniRef50_A5IP39|g__Staphylococcus.s__Staphylococcus_aureus	10.6191200496
+UniRef50_G7M3S1: Transcriptional regulator, TetR family	10.6183125051
+UniRef50_G7M3S1: Transcriptional regulator, TetR family|g__Clostridium.s__Clostridium_beijerinckii	10.6183125051
+UniRef50_P77402	10.6176177452
+UniRef50_P77402|g__Escherichia.s__Escherichia_coli	10.6176177452
+UniRef50_UPI0003772A98: hypothetical protein	10.6161297590
+UniRef50_UPI0003772A98: hypothetical protein|unclassified	10.6161297590
+UniRef50_B9KSS7	10.6159162616
+UniRef50_B9KSS7|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.6159162616
+UniRef50_B5R7J9: HTH-type transcriptional regulator MalT	10.6133781494
+UniRef50_B5R7J9: HTH-type transcriptional regulator MalT|g__Escherichia.s__Escherichia_coli	10.6133781494
+UniRef50_M4WXL8	10.6113609862
+UniRef50_M4WXL8|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.6113609862
+UniRef50_F7ZA52: Deoxyribodipyrimidine photo-lyase PhrB	10.6111148785
+UniRef50_F7ZA52: Deoxyribodipyrimidine photo-lyase PhrB|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.6111148785
+UniRef50_P77339	10.6084571497
+UniRef50_P77339|g__Escherichia.s__Escherichia_coli	10.6084571497
+UniRef50_C4W7M7	10.6003609765
+UniRef50_C4W7M7|g__Staphylococcus.s__Staphylococcus_epidermidis	10.6003609765
+UniRef50_W0YU10: Phosphatidylethanolamine:Kdo2-lipid A phosphoethanolamine transferase	10.5992440733
+UniRef50_W0YU10: Phosphatidylethanolamine:Kdo2-lipid A phosphoethanolamine transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.5992440733
+UniRef50_Q5LND3: Orotidine 5'-phosphate decarboxylase	10.5986058173
+UniRef50_Q5LND3: Orotidine 5'-phosphate decarboxylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.1473326740
+UniRef50_Q5LND3: Orotidine 5'-phosphate decarboxylase|unclassified	0.4512731433
+UniRef50_R9SKE6: Iron-dependent repressor	10.5970090630
+UniRef50_R9SKE6: Iron-dependent repressor|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.5970090630
+UniRef50_P38684: TorCAD operon transcriptional regulatory protein TorR	10.5967362234
+UniRef50_P38684: TorCAD operon transcriptional regulatory protein TorR|g__Escherichia.s__Escherichia_coli	10.5967362234
+UniRef50_Y5PEP3: Serine-aspartate repeat-containing protein I (Fragment)	10.5939811822
+UniRef50_Y5PEP3: Serine-aspartate repeat-containing protein I (Fragment)|g__Staphylococcus.s__Staphylococcus_epidermidis	10.5939811822
+UniRef50_B2UZH1: Cyanophycinase	10.5908045962
+UniRef50_B2UZH1: Cyanophycinase|g__Clostridium.s__Clostridium_beijerinckii	10.5908045962
+UniRef50_A6LWX6: RDD domain containing protein	10.5905196057
+UniRef50_A6LWX6: RDD domain containing protein|g__Clostridium.s__Clostridium_beijerinckii	10.5905196057
+UniRef50_A0A036SNN0	10.5895915679
+UniRef50_A0A036SNN0|g__Staphylococcus.s__Staphylococcus_aureus	10.5895915679
+UniRef50_J7R0X4: Tail collar domain protein	10.5879810016
+UniRef50_J7R0X4: Tail collar domain protein|g__Escherichia.s__Escherichia_coli	10.5879810016
+UniRef50_F8CFH1: Acetyl-CoA carboxylase carboxyltransferase	10.5865147176
+UniRef50_F8CFH1: Acetyl-CoA carboxylase carboxyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5169956204
+UniRef50_F8CFH1: Acetyl-CoA carboxylase carboxyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	5.0695190972
+UniRef50_G4LLK3	10.5834664633
+UniRef50_G4LLK3|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.5834664633
+UniRef50_P0A1J8: Flagella synthesis protein FlgN	10.5797101449
+UniRef50_P0A1J8: Flagella synthesis protein FlgN|g__Escherichia.s__Escherichia_coli	10.5797101449
+UniRef50_F0MTL8: Carbonate dehydratase	10.5766732389
+UniRef50_F0MTL8: Carbonate dehydratase|g__Neisseria.s__Neisseria_meningitidis	10.5766732389
+UniRef50_UPI00037B67C2: hypothetical protein	10.5683775214
+UniRef50_UPI00037B67C2: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.5683775214
+UniRef50_A3PHA5	10.5662300129
+UniRef50_A3PHA5|unclassified	10.5662300129
+UniRef50_A6VD85: Lipoprotein	10.5660874242
+UniRef50_A6VD85: Lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.1771985353
+UniRef50_A6VD85: Lipoprotein|unclassified	1.3888888889
+UniRef50_U0VR29: Transporter associated domain protein	10.5649343484
+UniRef50_U0VR29: Transporter associated domain protein|g__Escherichia.s__Escherichia_coli	10.5649343484
+UniRef50_Q6GCP8	10.5628532952
+UniRef50_Q6GCP8|g__Staphylococcus.s__Staphylococcus_aureus	9.6153846154
+UniRef50_Q6GCP8|unclassified	0.9474686798
+UniRef50_E6CDL3	10.5595644482
+UniRef50_E6CDL3|g__Propionibacterium.s__Propionibacterium_acnes	10.5595644482
+UniRef50_UPI00035F1E2E: MULTISPECIES: hypothetical protein	10.5593773074
+UniRef50_UPI00035F1E2E: MULTISPECIES: hypothetical protein|unclassified	10.5593773074
+UniRef50_A3SMD8	10.5579872086
+UniRef50_A3SMD8|unclassified	10.5579872086
+UniRef50_P0CF66: Transposase InsE for insertion sequence IS3A	10.5565990632
+UniRef50_P0CF66: Transposase InsE for insertion sequence IS3A|g__Escherichia.s__Escherichia_coli	10.5565990632
+UniRef50_Q8CTV4	10.5558325219
+UniRef50_Q8CTV4|g__Staphylococcus.s__Staphylococcus_epidermidis	7.9516658553
+UniRef50_Q8CTV4|unclassified	2.6041666667
+UniRef50_L0GSA8: Glycine/D-amino acid oxidase, deaminating	10.5553609453
+UniRef50_L0GSA8: Glycine/D-amino acid oxidase, deaminating|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.5553609453
+UniRef50_A7ACK1	10.5549338936
+UniRef50_A7ACK1|unclassified	10.5549338936
+UniRef50_D3SDU3	10.5509084614
+UniRef50_D3SDU3|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.4077265376
+UniRef50_D3SDU3|unclassified	0.1431819238
+UniRef50_UPI000289074C: chlorophyllide reductase subunit Z	10.5478779947
+UniRef50_UPI000289074C: chlorophyllide reductase subunit Z|unclassified	10.5478779947
+UniRef50_W1EYQ2: Rtn protein	10.5413312525
+UniRef50_W1EYQ2: Rtn protein|g__Escherichia.s__Escherichia_coli	10.5413312525
+UniRef50_Q3IGA3: UPF0176 protein PSHAa1433	10.5296261117
+UniRef50_Q3IGA3: UPF0176 protein PSHAa1433|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.5296261117
+UniRef50_A5UJF1: Geranylgeranylglyceryl phosphate synthase	10.5274575902
+UniRef50_A5UJF1: Geranylgeranylglyceryl phosphate synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.5274575902
+UniRef50_UPI0003B4CF71: 30S ribosomal protein S3	10.5264976409
+UniRef50_UPI0003B4CF71: 30S ribosomal protein S3|unclassified	10.5264976409
+UniRef50_C6UW63	10.5263157895
+UniRef50_C6UW63|g__Escherichia.s__Escherichia_coli	10.5263157895
+UniRef50_F7RB90	10.5263157895
+UniRef50_F7RB90|unclassified	10.5263157895
+UniRef50_G4PXG0	10.5263157895
+UniRef50_G4PXG0|g__Escherichia.s__Escherichia_coli	10.5263157895
+UniRef50_N2XBP0	10.5263157895
+UniRef50_N2XBP0|g__Escherichia.s__Escherichia_coli	10.5263157895
+UniRef50_V4Z0H7	10.5263157895
+UniRef50_V4Z0H7|unclassified	10.5263157895
+UniRef50_V6XSK5	10.5263157895
+UniRef50_V6XSK5|g__Staphylococcus.s__Staphylococcus_epidermidis	10.5263157895
+UniRef50_W9F1U2: Recombinase RecA	10.5263157895
+UniRef50_W9F1U2: Recombinase RecA|g__Staphylococcus.s__Staphylococcus_aureus	10.5263157895
+UniRef50_X5E314	10.5263157895
+UniRef50_X5E314|g__Staphylococcus.s__Staphylococcus_aureus	10.5263157895
+UniRef50_Q9HWU3: Chaperone CupB2	10.5227309260
+UniRef50_Q9HWU3: Chaperone CupB2|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.5227309260
+UniRef50_P76090: Inner membrane protein YnbA	10.5211534543
+UniRef50_P76090: Inner membrane protein YnbA|g__Escherichia.s__Escherichia_coli	10.5211534543
+UniRef50_A4W1K2	10.5145513869
+UniRef50_A4W1K2|g__Streptococcus.s__Streptococcus_agalactiae	10.5145513869
+UniRef50_W0ZZ47	10.5115589349
+UniRef50_W0ZZ47|unclassified	10.5115589349
+UniRef50_Q216W2: Transcriptional regulator, GntR family	10.5114141989
+UniRef50_Q216W2: Transcriptional regulator, GntR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.5114141989
+UniRef50_UPI00035D7ED2: hypothetical protein	10.5109993862
+UniRef50_UPI00035D7ED2: hypothetical protein|unclassified	10.5109993862
+UniRef50_Q9K3C5: B-type flagellar hook-associated protein 2	10.5066420578
+UniRef50_Q9K3C5: B-type flagellar hook-associated protein 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.5066420578
+UniRef50_A7X4P6: Antitoxin MazE	10.5028550127
+UniRef50_A7X4P6: Antitoxin MazE|unclassified	10.5028550127
+UniRef50_R9ZJZ3: TonB-denpendent receptor	10.5018684932
+UniRef50_R9ZJZ3: TonB-denpendent receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.5018684932
+UniRef50_A5UJ66	10.4997415063
+UniRef50_A5UJ66|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.4997415063
+UniRef50_A3PMC7: Molybdopterin-guanine dinucleotide biosynthesis protein B	10.4973117393
+UniRef50_A3PMC7: Molybdopterin-guanine dinucleotide biosynthesis protein B|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.4973117393
+UniRef50_E6CZE7: 4-phosphoerythronate dehydrogenase	10.4945746373
+UniRef50_E6CZE7: 4-phosphoerythronate dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	10.4945746373
+UniRef50_UPI0002B9D338: hypothetical protein, partial	10.4931305041
+UniRef50_UPI0002B9D338: hypothetical protein, partial|g__Escherichia.s__Escherichia_coli	10.4931305041
+UniRef50_Q3IY26	10.4918167952
+UniRef50_Q3IY26|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.4918167952
+UniRef50_UPI0003B777B8: hypothetical protein, partial	10.4886951356
+UniRef50_UPI0003B777B8: hypothetical protein, partial|unclassified	10.4886951356
+UniRef50_Q47157: mRNA interferase YafO	10.4852876592
+UniRef50_Q47157: mRNA interferase YafO|g__Escherichia.s__Escherichia_coli	10.4852876592
+UniRef50_B8F6Y2: L-fucose mutarotase	10.4849818055
+UniRef50_B8F6Y2: L-fucose mutarotase|g__Escherichia.s__Escherichia_coli	10.4849818055
+UniRef50_A6T7G7: UPF0227 protein KPN78578_10770	10.4800687870
+UniRef50_A6T7G7: UPF0227 protein KPN78578_10770|g__Escherichia.s__Escherichia_coli	10.0077145711
+UniRef50_A6T7G7: UPF0227 protein KPN78578_10770|unclassified	0.4723542159
+UniRef50_B9KU47	10.4788425958
+UniRef50_B9KU47|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.1942446043
+UniRef50_B9KU47|unclassified	3.2845979915
+UniRef50_S0AHH6: Membrane-bound lytic murein transglycosylase B	10.4767893951
+UniRef50_S0AHH6: Membrane-bound lytic murein transglycosylase B|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.4767893951
+UniRef50_A3PRQ7: Xanthine dehydrogenase, molybdenum binding subunit apoprotein	10.4750420342
+UniRef50_A3PRQ7: Xanthine dehydrogenase, molybdenum binding subunit apoprotein|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.4750420342
+UniRef50_P76505	10.4738504671
+UniRef50_P76505|g__Escherichia.s__Escherichia_coli	10.4738504671
+UniRef50_V6EI61: Lactose permease	10.4698302222
+UniRef50_V6EI61: Lactose permease|g__Escherichia.s__Escherichia_coli	10.4698302222
+UniRef50_G7M256: Sporulation protein YtaF	10.4676804995
+UniRef50_G7M256: Sporulation protein YtaF|g__Clostridium.s__Clostridium_beijerinckii	10.4676804995
+UniRef50_I7ER35: Signal transduction protein, FIST domain protein	10.4665088433
+UniRef50_I7ER35: Signal transduction protein, FIST domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.4053135735
+UniRef50_I7ER35: Signal transduction protein, FIST domain protein|unclassified	0.0611952698
+UniRef50_E7PX47	10.4655712050
+UniRef50_E7PX47|g__Streptococcus.s__Streptococcus_agalactiae	10.4655712050
+UniRef50_E4REV8: BirA	10.4642391187
+UniRef50_E4REV8: BirA|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.4642391187
+UniRef50_A1ADX2: GDP-mannose pyrophosphatase NudK	10.4631494160
+UniRef50_A1ADX2: GDP-mannose pyrophosphatase NudK|g__Escherichia.s__Escherichia_coli	10.4631494160
+UniRef50_UPI0003B2E548: cation:proton antiporter	10.4554155348
+UniRef50_UPI0003B2E548: cation:proton antiporter|unclassified	10.4554155348
+UniRef50_O85746: Tyrosine aminotransferase	10.4549433760
+UniRef50_O85746: Tyrosine aminotransferase|g__Escherichia.s__Escherichia_coli	10.4549433760
+UniRef50_Q5ZZI2: 2-nonaprenyl-3-methyl-6-methoxy-1,4-benzoquinol hydroxylase	10.4539341808
+UniRef50_Q5ZZI2: 2-nonaprenyl-3-methyl-6-methoxy-1,4-benzoquinol hydroxylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.4539341808
+UniRef50_A4VS30: Radical SAM domain protein	10.4486441619
+UniRef50_A4VS30: Radical SAM domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.8812460428
+UniRef50_A4VS30: Radical SAM domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5673981191
+UniRef50_Q9KPB3: GTPase Era	10.4424024495
+UniRef50_Q9KPB3: GTPase Era|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.4424024495
+UniRef50_UPI0003629ADB: hypothetical protein	10.4396052524
+UniRef50_UPI0003629ADB: hypothetical protein|unclassified	10.4396052524
+UniRef50_U3U068: D-galactonate transport protein	10.4372721041
+UniRef50_U3U068: D-galactonate transport protein|g__Escherichia.s__Escherichia_coli	10.4372721041
+UniRef50_M9RBW7: GTP cyclohydrolase II	10.4315414813
+UniRef50_M9RBW7: GTP cyclohydrolase II|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.4315414813
+UniRef50_A6VAS5	10.4262638769
+UniRef50_A6VAS5|unclassified	10.4262638769
+UniRef50_G4LM89	10.4260460574
+UniRef50_G4LM89|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.4260460574
+UniRef50_Q02ID7: 7-carboxy-7-deazaguanine synthase	10.4251012146
+UniRef50_Q02ID7: 7-carboxy-7-deazaguanine synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.4251012146
+UniRef50_N0Q208: Maltose/maltodextrin ABC transporter, permease protein MalF	10.4239103923
+UniRef50_N0Q208: Maltose/maltodextrin ABC transporter, permease protein MalF|g__Escherichia.s__Escherichia_coli	10.4239103923
+UniRef50_B7UYN1	10.4206220880
+UniRef50_B7UYN1|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.4206220880
+UniRef50_A0A024HKW1: Transcriptional regulator	10.4200510559
+UniRef50_A0A024HKW1: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.4200510559
+UniRef50_P76222	10.4190529573
+UniRef50_P76222|g__Escherichia.s__Escherichia_coli	10.4190529573
+UniRef50_UPI000469C857: hypothetical protein	10.4180343627
+UniRef50_UPI000469C857: hypothetical protein|unclassified	10.4180343627
+UniRef50_L1K6E3	10.4169876442
+UniRef50_L1K6E3|unclassified	10.4169876442
+UniRef50_D0CR35: Enoyl-CoA hydratase	10.4166666667
+UniRef50_D0CR35: Enoyl-CoA hydratase|unclassified	10.4166666667
+UniRef50_I0C461	10.4166666667
+UniRef50_I0C461|g__Staphylococcus.s__Staphylococcus_aureus	10.4166666667
+UniRef50_N3IIX2	10.4166666667
+UniRef50_N3IIX2|unclassified	10.4166666667
+UniRef50_S6AIW9	10.4166666667
+UniRef50_S6AIW9|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.4166666667
+UniRef50_T2ESQ2	10.4166666667
+UniRef50_T2ESQ2|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.4166666667
+UniRef50_V4R5M8	10.4166666667
+UniRef50_V4R5M8|unclassified	10.4166666667
+UniRef50_W1ET54	10.4166666667
+UniRef50_W1ET54|unclassified	10.4166666667
+UniRef50_Q9HVP3	10.4121984327
+UniRef50_Q9HVP3|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.4121984327
+UniRef50_I3TI51: Short-chain dehydrogenase/reductase SDR	10.4074359965
+UniRef50_I3TI51: Short-chain dehydrogenase/reductase SDR|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.4074359965
+UniRef50_UPI0002629810: hypothetical protein	10.4014177152
+UniRef50_UPI0002629810: hypothetical protein|unclassified	10.4014177152
+UniRef50_Q8CNT3: Integrase	10.4001182604
+UniRef50_Q8CNT3: Integrase|g__Staphylococcus.s__Staphylococcus_epidermidis	10.4001182604
+UniRef50_E7C368	10.3952910681
+UniRef50_E7C368|unclassified	10.3952910681
+UniRef50_H4WAD2: Phenylacetic acid catabolic family protein	10.3931139417
+UniRef50_H4WAD2: Phenylacetic acid catabolic family protein|g__Escherichia.s__Escherichia_coli	10.3931139417
+UniRef50_A0KXX9: Ion transport protein	10.3924562217
+UniRef50_A0KXX9: Ion transport protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.3924562217
+UniRef50_I6T8B1	10.3896804836
+UniRef50_I6T8B1|g__Streptococcus.s__Streptococcus_mutans	10.3896804836
+UniRef50_A0A023L4E6: Multidrug transporter membrane component/ATP-binding component	10.3895910426
+UniRef50_A0A023L4E6: Multidrug transporter membrane component/ATP-binding component|g__Escherichia.s__Escherichia_coli	10.3895910426
+UniRef50_A6LPZ0: Extracellular solute-binding protein, family 1	10.3886630638
+UniRef50_A6LPZ0: Extracellular solute-binding protein, family 1|g__Clostridium.s__Clostridium_beijerinckii	10.3886630638
+UniRef50_B9KWX6	10.3884913588
+UniRef50_B9KWX6|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.1614318856
+UniRef50_B9KWX6|unclassified	1.2270594732
+UniRef50_W1JNI9: 4-carboxymuconolactone decarboxylase (Fragment)	10.3883358274
+UniRef50_W1JNI9: 4-carboxymuconolactone decarboxylase (Fragment)|unclassified	10.3883358274
+UniRef50_E4PXS3	10.3842840261
+UniRef50_E4PXS3|unclassified	10.3842840261
+UniRef50_P0ADH6: Type 1 fimbriae regulatory protein FimB	10.3839948580
+UniRef50_P0ADH6: Type 1 fimbriae regulatory protein FimB|g__Escherichia.s__Escherichia_coli	10.3839948580
+UniRef50_UPI0004694BF6: hypothetical protein	10.3822104116
+UniRef50_UPI0004694BF6: hypothetical protein|unclassified	10.3822104116
+UniRef50_A4XNT2	10.3814363014
+UniRef50_A4XNT2|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.3814363014
+UniRef50_Q02UC6: Anaerobically-induced outer membrane porin OprE	10.3812940497
+UniRef50_Q02UC6: Anaerobically-induced outer membrane porin OprE|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.3812940497
+UniRef50_B1J8H6: Asparagine synthetase	10.3805267389
+UniRef50_B1J8H6: Asparagine synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.3805267389
+UniRef50_R9SIZ1	10.3786071157
+UniRef50_R9SIZ1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.3786071157
+UniRef50_F8UHZ1: Sulfide:quinone oxidoreductase (Fragment)	10.3689226194
+UniRef50_F8UHZ1: Sulfide:quinone oxidoreductase (Fragment)|unclassified	10.3689226194
+UniRef50_Q53091: Molybdopterin synthase catalytic subunit	10.3676282617
+UniRef50_Q53091: Molybdopterin synthase catalytic subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.1843693496
+UniRef50_Q53091: Molybdopterin synthase catalytic subunit|unclassified	0.1832589122
+UniRef50_A1U4R7: Enoyl-CoA hydratase/isomerase	10.3646012562
+UniRef50_A1U4R7: Enoyl-CoA hydratase/isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.3646012562
+UniRef50_Q897P8: D-alanine--D-alanine ligase A	10.3620688889
+UniRef50_Q897P8: D-alanine--D-alanine ligase A|g__Clostridium.s__Clostridium_beijerinckii	10.3620688889
+UniRef50_P46320: Probable 6-phospho-beta-glucosidase	10.3617756536
+UniRef50_P46320: Probable 6-phospho-beta-glucosidase|g__Clostridium.s__Clostridium_beijerinckii	10.3617756536
+UniRef50_Q8XCB3: Valine--tRNA ligase	10.3615172805
+UniRef50_Q8XCB3: Valine--tRNA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.2629122464
+UniRef50_Q8XCB3: Valine--tRNA ligase|g__Escherichia.s__Escherichia_coli	2.0496431148
+UniRef50_Q8XCB3: Valine--tRNA ligase|unclassified	0.0489619193
+UniRef50_W0RN37: DNA repair protein radA	10.3581474199
+UniRef50_W0RN37: DNA repair protein radA|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.3581474199
+UniRef50_E2QK28: DNA helicase	10.3568275416
+UniRef50_E2QK28: DNA helicase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.6353268201
+UniRef50_E2QK28: DNA helicase|g__Acinetobacter.s__Acinetobacter_baumannii	0.7215007215
+UniRef50_P72161: D-alanyl-D-alanine endopeptidase	10.3563528530
+UniRef50_P72161: D-alanyl-D-alanine endopeptidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.0558762149
+UniRef50_P72161: D-alanyl-D-alanine endopeptidase|unclassified	0.3004766381
+UniRef50_A6LSR7: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase	10.3513491489
+UniRef50_A6LSR7: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase|g__Clostridium.s__Clostridium_beijerinckii	10.3513491489
+UniRef50_B5Z1T7: Addiction module antidote protein, HigA family	10.3484969407
+UniRef50_B5Z1T7: Addiction module antidote protein, HigA family|g__Escherichia.s__Escherichia_coli	10.3484969407
+UniRef50_W9T9K1: Sulfate transporter	10.3473291900
+UniRef50_W9T9K1: Sulfate transporter|unclassified	10.3473291900
+UniRef50_Q5HKK3	10.3442745643
+UniRef50_Q5HKK3|g__Staphylococcus.s__Staphylococcus_epidermidis	10.3442745643
+UniRef50_K7RNR2: Succinate dehydrogenase subunit C	10.3415103415
+UniRef50_K7RNR2: Succinate dehydrogenase subunit C|g__Propionibacterium.s__Propionibacterium_acnes	10.3415103415
+UniRef50_F6D6V6: Cobalamin (Vitamin B12) biosynthesis CbiM protein	10.3412980825
+UniRef50_F6D6V6: Cobalamin (Vitamin B12) biosynthesis CbiM protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.3412980825
+UniRef50_C6SP93	10.3398756835
+UniRef50_C6SP93|g__Streptococcus.s__Streptococcus_mutans	10.3398756835
+UniRef50_M9RZ09	10.3398434064
+UniRef50_M9RZ09|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.3398434064
+UniRef50_B9KJS9: D-isomer specific 2-hydroxyacid dehydrogenase, NAD-binding	10.3390482348
+UniRef50_B9KJS9: D-isomer specific 2-hydroxyacid dehydrogenase, NAD-binding|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.3390482348
+UniRef50_U5MKH7: Short-chain dehydrogenase/reductase SDR	10.3388575497
+UniRef50_U5MKH7: Short-chain dehydrogenase/reductase SDR|g__Clostridium.s__Clostridium_beijerinckii	10.3388575497
+UniRef50_Q3IXZ2	10.3366499974
+UniRef50_Q3IXZ2|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.1349693252
+UniRef50_Q3IXZ2|unclassified	4.2016806723
+UniRef50_Q48KB4: Tat (Twin-arginine translocation) pathway signal sequence domain protein	10.3359494430
+UniRef50_Q48KB4: Tat (Twin-arginine translocation) pathway signal sequence domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.3359494430
+UniRef50_Q9HTB6: GDP-6-deoxy-D-mannose reductase	10.3328701515
+UniRef50_Q9HTB6: GDP-6-deoxy-D-mannose reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.3328701515
+UniRef50_Q6FEM6: Dual-specificity RNA methyltransferase RlmN	10.3318133543
+UniRef50_Q6FEM6: Dual-specificity RNA methyltransferase RlmN|g__Acinetobacter.s__Acinetobacter_baumannii	6.1495624836
+UniRef50_Q6FEM6: Dual-specificity RNA methyltransferase RlmN|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1313510920
+UniRef50_Q6FEM6: Dual-specificity RNA methyltransferase RlmN|unclassified	0.0508997787
+UniRef50_A5W9S9: GTPase HflX	10.3316492928
+UniRef50_A5W9S9: GTPase HflX|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.3316492928
+UniRef50_A6E305	10.3316071891
+UniRef50_A6E305|unclassified	10.3316071891
+UniRef50_UPI00036C1952: hypothetical protein, partial	10.3311114634
+UniRef50_UPI00036C1952: hypothetical protein, partial|unclassified	10.3311114634
+UniRef50_J0MX42: ISSep1, transposase family protein	10.3276851871
+UniRef50_J0MX42: ISSep1, transposase family protein|unclassified	10.3276851871
+UniRef50_F5M0N8	10.3235869777
+UniRef50_F5M0N8|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.2867608582
+UniRef50_F5M0N8|unclassified	3.0368261195
+UniRef50_F3MX50	10.3225806452
+UniRef50_F3MX50|unclassified	10.3225806452
+UniRef50_Q2NFW5: Ribonuclease P protein component 1	10.3221958803
+UniRef50_Q2NFW5: Ribonuclease P protein component 1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.0909090909
+UniRef50_Q2NFW5: Ribonuclease P protein component 1|unclassified	1.2312867894
+UniRef50_Z4XCQ6: Putative cross-wall-targeting lipoprotein signal (Fragment)	10.3202267361
+UniRef50_Z4XCQ6: Putative cross-wall-targeting lipoprotein signal (Fragment)|g__Streptococcus.s__Streptococcus_mutans	10.3202267361
+UniRef50_E1J4V6	10.3139070946
+UniRef50_E1J4V6|unclassified	10.3139070946
+UniRef50_Q2RRZ4: ABC transporter component	10.3098788058
+UniRef50_Q2RRZ4: ABC transporter component|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.3098788058
+UniRef50_D0ZQ11	10.3092783505
+UniRef50_D0ZQ11|unclassified	10.3092783505
+UniRef50_F3CRF8	10.3092783505
+UniRef50_F3CRF8|unclassified	10.3092783505
+UniRef50_G2DUQ1	10.3092783505
+UniRef50_G2DUQ1|unclassified	10.3092783505
+UniRef50_I6GHK2	10.3092783505
+UniRef50_I6GHK2|g__Escherichia.s__Escherichia_coli	10.3092783505
+UniRef50_Q0TKV8	10.3092783505
+UniRef50_Q0TKV8|g__Escherichia.s__Escherichia_coli	10.3092783505
+UniRef50_UPI000364E1C3: hypothetical protein	10.3092783505
+UniRef50_UPI000364E1C3: hypothetical protein|g__Streptococcus.s__Streptococcus_mutans	10.3092783505
+UniRef50_A6V5G6	10.3055437547
+UniRef50_A6V5G6|unclassified	10.3055437547
+UniRef50_B7UXP2	10.3043008703
+UniRef50_B7UXP2|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.4175084175
+UniRef50_B7UXP2|unclassified	1.8867924528
+UniRef50_R4W4T4	10.2924648095
+UniRef50_R4W4T4|g__Staphylococcus.s__Staphylococcus_epidermidis	10.2924648095
+UniRef50_Q6FDY0: Cell shape-determining protein MreC	10.2907725866
+UniRef50_Q6FDY0: Cell shape-determining protein MreC|g__Acinetobacter.s__Acinetobacter_baumannii	10.2907725866
+UniRef50_O53871: Putative acyltransferase Rv0859	10.2906785304
+UniRef50_O53871: Putative acyltransferase Rv0859|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5935372301
+UniRef50_O53871: Putative acyltransferase Rv0859|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.6971413003
+UniRef50_P42590: Inner membrane transporter YgjI	10.2897548335
+UniRef50_P42590: Inner membrane transporter YgjI|g__Escherichia.s__Escherichia_coli	10.2897548335
+UniRef50_P56453: Glycine--tRNA ligase alpha subunit	10.2884595217
+UniRef50_P56453: Glycine--tRNA ligase alpha subunit|g__Helicobacter.s__Helicobacter_pylori	10.1424080698
+UniRef50_P56453: Glycine--tRNA ligase alpha subunit|unclassified	0.1460514519
+UniRef50_A3SZC0	10.2848363067
+UniRef50_A3SZC0|unclassified	10.2848363067
+UniRef50_D8JNY1: Membrane-fusion protein	10.2847123371
+UniRef50_D8JNY1: Membrane-fusion protein|g__Acinetobacter.s__Acinetobacter_baumannii	10.2847123371
+UniRef50_A0A032EBF4	10.2833879666
+UniRef50_A0A032EBF4|unclassified	10.2833879666
+UniRef50_Q9YA67: 30S ribosomal protein S17e	10.2828443035
+UniRef50_Q9YA67: 30S ribosomal protein S17e|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.2828443035
+UniRef50_S5XQY4: Cytochrome b561	10.2814202086
+UniRef50_S5XQY4: Cytochrome b561|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.2814202086
+UniRef50_B7V416	10.2813210500
+UniRef50_B7V416|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.2813210500
+UniRef50_P0A4H3: Virulence factors putative positive transcription regulator BvgA	10.2798733947
+UniRef50_P0A4H3: Virulence factors putative positive transcription regulator BvgA|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.2798733947
+UniRef50_D7HY96: VacJ-like lipoprotein	10.2797777285
+UniRef50_D7HY96: VacJ-like lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.2797777285
+UniRef50_A6LU65: Methyl-accepting chemotaxis sensory transducer	10.2784975427
+UniRef50_A6LU65: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	10.2784975427
+UniRef50_A5W310: Major facilitator superfamily MFS_1	10.2757352152
+UniRef50_A5W310: Major facilitator superfamily MFS_1|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.6953854774
+UniRef50_A5W310: Major facilitator superfamily MFS_1|g__Clostridium.s__Clostridium_beijerinckii	2.5803497378
+UniRef50_R7PY44	10.2746286878
+UniRef50_R7PY44|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.2746286878
+UniRef50_L1KG05	10.2741149458
+UniRef50_L1KG05|unclassified	10.2741149458
+UniRef50_M4X169: GNAT family acetyltransferase	10.2726098480
+UniRef50_M4X169: GNAT family acetyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.2726098480
+UniRef50_L1K758	10.2698171772
+UniRef50_L1K758|unclassified	10.2698171772
+UniRef50_G8PSK7: Short-chain dehydrogenase/reductase SDR	10.2672867054
+UniRef50_G8PSK7: Short-chain dehydrogenase/reductase SDR|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.2672867054
+UniRef50_Q47319: DTW domain-containing protein YfiP	10.2649756174
+UniRef50_Q47319: DTW domain-containing protein YfiP|g__Escherichia.s__Escherichia_coli	9.9774848665
+UniRef50_Q47319: DTW domain-containing protein YfiP|unclassified	0.2874907509
+UniRef50_A5UJH6: Predicted acetylesterase	10.2623722606
+UniRef50_A5UJH6: Predicted acetylesterase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.2623722606
+UniRef50_Q4ZNV9: Histidinol dehydrogenase	10.2620434605
+UniRef50_Q4ZNV9: Histidinol dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	5.5526388769
+UniRef50_Q4ZNV9: Histidinol dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6777045931
+UniRef50_Q4ZNV9: Histidinol dehydrogenase|unclassified	0.0316999905
+UniRef50_E3GC98: Multidrug resistance protein MdtG	10.2611425113
+UniRef50_E3GC98: Multidrug resistance protein MdtG|g__Escherichia.s__Escherichia_coli	10.2611425113
+UniRef50_D3NW22: X-Pro aminopeptidase	10.2519805159
+UniRef50_D3NW22: X-Pro aminopeptidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.2519805159
+UniRef50_P17055: Spheroidene monooxygenase	10.2511195547
+UniRef50_P17055: Spheroidene monooxygenase|unclassified	10.2511195547
+UniRef50_L8N8P7: HflK protein	10.2490548492
+UniRef50_L8N8P7: HflK protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.2490548492
+UniRef50_Q3IWF1: AMP-binding enzyme	10.2395842165
+UniRef50_Q3IWF1: AMP-binding enzyme|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.2395842165
+UniRef50_Q32I01: Cytochrome c biogenesis ATP-binding export protein CcmA	10.2394681556
+UniRef50_Q32I01: Cytochrome c biogenesis ATP-binding export protein CcmA|g__Escherichia.s__Escherichia_coli	10.2394681556
+UniRef50_G7M799: Signal transduction histidine kinase, LytS	10.2370455073
+UniRef50_G7M799: Signal transduction histidine kinase, LytS|g__Clostridium.s__Clostridium_beijerinckii	10.2370455073
+UniRef50_S5YUZ3: Homoserine dehydrogenase	10.2365782087
+UniRef50_S5YUZ3: Homoserine dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.2365782087
+UniRef50_Q4K8U2: Thiopurine S-methyltransferase	10.2351853998
+UniRef50_Q4K8U2: Thiopurine S-methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.2351853998
+UniRef50_A4WV68	10.2348769013
+UniRef50_A4WV68|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.2348769013
+UniRef50_Q4L543: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	10.2331031198
+UniRef50_Q4L543: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	9.4805895040
+UniRef50_Q4L543: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.7525136159
+UniRef50_A0A024H9L1: Short-chain dehydrogenase	10.2306178571
+UniRef50_A0A024H9L1: Short-chain dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.2306178571
+UniRef50_G7R7B9	10.2297229077
+UniRef50_G7R7B9|g__Escherichia.s__Escherichia_coli	10.2297229077
+UniRef50_A7IJX5: Nitrilase/cyanide hydratase and apolipoprotein N-acyltransferase	10.2276569446
+UniRef50_A7IJX5: Nitrilase/cyanide hydratase and apolipoprotein N-acyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.2276569446
+UniRef50_L1KB94	10.2249423953
+UniRef50_L1KB94|unclassified	10.2249423953
+UniRef50_UPI000466F096: hypothetical protein	10.2238327906
+UniRef50_UPI000466F096: hypothetical protein|unclassified	10.2238327906
+UniRef50_P75793: Putative formate acetyltransferase 3	10.2233387857
+UniRef50_P75793: Putative formate acetyltransferase 3|g__Escherichia.s__Escherichia_coli	10.0354134594
+UniRef50_P75793: Putative formate acetyltransferase 3|unclassified	0.1879253264
+UniRef50_P32701: Putative cyclic-di-GMP phosphodiesterase YjcC	10.2192626334
+UniRef50_P32701: Putative cyclic-di-GMP phosphodiesterase YjcC|g__Escherichia.s__Escherichia_coli	10.2192626334
+UniRef50_S5SQS1: Oligopeptide ABC transporter ATP-binding protein	10.2191114066
+UniRef50_S5SQS1: Oligopeptide ABC transporter ATP-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.2191114066
+UniRef50_P14205: Putative esterase ComA2	10.2093210809
+UniRef50_P14205: Putative esterase ComA2|g__Staphylococcus.s__Staphylococcus_aureus	10.2093210809
+UniRef50_K2EDL1	10.2090509281
+UniRef50_K2EDL1|unclassified	10.2090509281
+UniRef50_F6AYC1: (2Fe-2S)-binding domain-containing protein	10.2075301226
+UniRef50_F6AYC1: (2Fe-2S)-binding domain-containing protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.2075301226
+UniRef50_A3M7P6: Ribosomal-protein-alanine acetyltransferase	10.2040816327
+UniRef50_A3M7P6: Ribosomal-protein-alanine acetyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	10.2040816327
+UniRef50_B9KKG4: Calcium-binding EF-hand domain protein	10.2040816327
+UniRef50_B9KKG4: Calcium-binding EF-hand domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.2040816327
+UniRef50_C5QSD7	10.2040816327
+UniRef50_C5QSD7|unclassified	10.2040816327
+UniRef50_E0P4H6	10.2040816327
+UniRef50_E0P4H6|g__Staphylococcus.s__Staphylococcus_aureus	10.2040816327
+UniRef50_H9UVW0: Terminase large subunit	10.2040816327
+UniRef50_H9UVW0: Terminase large subunit|unclassified	10.2040816327
+UniRef50_K3EYS1	10.2040816327
+UniRef50_K3EYS1|unclassified	10.2040816327
+UniRef50_Q67JS5: 50S ribosomal protein L33	10.2040816327
+UniRef50_Q67JS5: 50S ribosomal protein L33|g__Staphylococcus.s__Staphylococcus_epidermidis	10.2040816327
+UniRef50_W1G2V2	10.2040816327
+UniRef50_W1G2V2|unclassified	10.2040816327
+UniRef50_X0U0S8: Marine sediment metagenome DNA, contig: S01H1_L12675 (Fragment)	10.2040816327
+UniRef50_X0U0S8: Marine sediment metagenome DNA, contig: S01H1_L12675 (Fragment)|unclassified	10.2040816327
+UniRef50_A6LWI4	10.2031550457
+UniRef50_A6LWI4|g__Clostridium.s__Clostridium_beijerinckii	10.2031550457
+UniRef50_I0C181: PTS system, galactitol-specific IIB component	10.2021357742
+UniRef50_I0C181: PTS system, galactitol-specific IIB component|g__Staphylococcus.s__Staphylococcus_aureus	10.2021357742
+UniRef50_A6LS13: Sugar isomerase (SIS)	10.2015108002
+UniRef50_A6LS13: Sugar isomerase (SIS)|g__Clostridium.s__Clostridium_beijerinckii	10.2015108002
+UniRef50_C5N3I2	10.2008385859
+UniRef50_C5N3I2|g__Staphylococcus.s__Staphylococcus_aureus	10.0000000000
+UniRef50_C5N3I2|unclassified	0.2008385859
+UniRef50_C4J5J3	10.1938999014
+UniRef50_C4J5J3|unclassified	10.1938999014
+UniRef50_B7UVW2	10.1930137868
+UniRef50_B7UVW2|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.1930137868
+UniRef50_I3TH90: Putrescine transport ATP-binding protein PotG	10.1928719166
+UniRef50_I3TH90: Putrescine transport ATP-binding protein PotG|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.1928719166
+UniRef50_R5PFJ6: Polar amino acid transport system substrate-binding protein	10.1918728537
+UniRef50_R5PFJ6: Polar amino acid transport system substrate-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.1918728537
+UniRef50_A4WV26	10.1880815953
+UniRef50_A4WV26|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.1162079511
+UniRef50_A4WV26|unclassified	4.0718736443
+UniRef50_Q9I106: Thiol:disulfide interchange protein DsbG	10.1830194973
+UniRef50_Q9I106: Thiol:disulfide interchange protein DsbG|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.1830194973
+UniRef50_P48632: Ferripyoverdine receptor	10.1796274788
+UniRef50_P48632: Ferripyoverdine receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.1796274788
+UniRef50_Q59635: Catalase	10.1776808297
+UniRef50_Q59635: Catalase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2275480944
+UniRef50_Q59635: Catalase|g__Acinetobacter.s__Acinetobacter_baumannii	0.6756756757
+UniRef50_Q59635: Catalase|unclassified	0.2744570596
+UniRef50_Q03JI6: CRISPR-associated endonuclease Cas9 2	10.1757212473
+UniRef50_Q03JI6: CRISPR-associated endonuclease Cas9 2|g__Streptococcus.s__Streptococcus_mutans	10.1757212473
+UniRef50_W1WTC0	10.1711936388
+UniRef50_W1WTC0|g__Escherichia.s__Escherichia_coli	9.8382304391
+UniRef50_W1WTC0|unclassified	0.3329631997
+UniRef50_Q5XA93	10.1696076327
+UniRef50_Q5XA93|g__Streptococcus.s__Streptococcus_mutans	8.9431535925
+UniRef50_Q5XA93|unclassified	1.2264540403
+UniRef50_L3I414: 2,3-diketo-L-gulonate TRAP transporter large permease yiaN	10.1686525907
+UniRef50_L3I414: 2,3-diketo-L-gulonate TRAP transporter large permease yiaN|unclassified	6.6225532999
+UniRef50_L3I414: 2,3-diketo-L-gulonate TRAP transporter large permease yiaN|g__Escherichia.s__Escherichia_coli	3.5460992908
+UniRef50_P45795	10.1652771683
+UniRef50_P45795|g__Escherichia.s__Escherichia_coli	10.1652771683
+UniRef50_T1YBG6: Transcriptional regulator, MarR family protein	10.1636816457
+UniRef50_T1YBG6: Transcriptional regulator, MarR family protein|g__Staphylococcus.s__Staphylococcus_aureus	10.1636816457
+UniRef50_H5CYS5: Phage tail fiber repeat family protein	10.1623262343
+UniRef50_H5CYS5: Phage tail fiber repeat family protein|g__Escherichia.s__Escherichia_coli	10.1623262343
+UniRef50_L1KB37	10.1591118680
+UniRef50_L1KB37|unclassified	10.1591118680
+UniRef50_A4WPI1: Coenzyme PQQ synthesis D	10.1581944197
+UniRef50_A4WPI1: Coenzyme PQQ synthesis D|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.1581944197
+UniRef50_UPI000185144C: hypothetical protein, partial	10.1579108304
+UniRef50_UPI000185144C: hypothetical protein, partial|unclassified	10.1579108304
+UniRef50_Q0K7P2: ABC-type transporter, ATPase component	10.1531856088
+UniRef50_Q0K7P2: ABC-type transporter, ATPase component|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.1531856088
+UniRef50_UPI0003B5BB21: cytochrome C	10.1527689407
+UniRef50_UPI0003B5BB21: cytochrome C|unclassified	10.1527689407
+UniRef50_A7ZRN9: UPF0114 protein YqhA	10.1502833210
+UniRef50_A7ZRN9: UPF0114 protein YqhA|g__Escherichia.s__Escherichia_coli	10.1502833210
+UniRef50_Q1J886: UPF0298 protein MGAS10750_Spy0325	10.1461439716
+UniRef50_Q1J886: UPF0298 protein MGAS10750_Spy0325|g__Streptococcus.s__Streptococcus_mutans	10.1461439716
+UniRef50_O30853: Pyruvate kinase I (Fragment)	10.1440726695
+UniRef50_O30853: Pyruvate kinase I (Fragment)|g__Clostridium.s__Clostridium_beijerinckii	10.1440726695
+UniRef50_Q3IUY4: Major facilitator superfamily (MFS) transporter	10.1436568418
+UniRef50_Q3IUY4: Major facilitator superfamily (MFS) transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.1436568418
+UniRef50_B7NUS6	10.1435839186
+UniRef50_B7NUS6|g__Escherichia.s__Escherichia_coli	10.1435839186
+UniRef50_B9KWV1: Diguanylate cyclase	10.1433496721
+UniRef50_B9KWV1: Diguanylate cyclase|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.1433496721
+UniRef50_B2V1C0: Transcription elongation factor GreA	10.1428644059
+UniRef50_B2V1C0: Transcription elongation factor GreA|g__Clostridium.s__Clostridium_beijerinckii	10.1428644059
+UniRef50_G8RD50	10.1422574308
+UniRef50_G8RD50|g__Staphylococcus.s__Staphylococcus_aureus	9.9009900990
+UniRef50_G8RD50|unclassified	0.2412673318
+UniRef50_A4WPT6	10.1422387137
+UniRef50_A4WPT6|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.1422387137
+UniRef50_D0K5T8	10.1406286746
+UniRef50_D0K5T8|g__Staphylococcus.s__Staphylococcus_aureus	10.1406286746
+UniRef50_K4WN43	10.1401403274
+UniRef50_K4WN43|g__Escherichia.s__Escherichia_coli	5.3475935829
+UniRef50_K4WN43|unclassified	4.7925467445
+UniRef50_G0DVU1	10.1378146166
+UniRef50_G0DVU1|g__Propionibacterium.s__Propionibacterium_acnes	10.1378146166
+UniRef50_R9ZM17: Chemotaxis protein	10.1367507762
+UniRef50_R9ZM17: Chemotaxis protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.1367507762
+UniRef50_A8I0S8	10.1364430237
+UniRef50_A8I0S8|unclassified	10.1364430237
+UniRef50_A5UP26	10.1340103929
+UniRef50_A5UP26|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.1340103929
+UniRef50_G8PGZ1: Rubrerythrin	10.1321840220
+UniRef50_G8PGZ1: Rubrerythrin|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.1321840220
+UniRef50_P43334: Phenylalanine-4-hydroxylase	10.1294659458
+UniRef50_P43334: Phenylalanine-4-hydroxylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.1294659458
+UniRef50_Q9HZQ2: Protein CobW	10.1291492103
+UniRef50_Q9HZQ2: Protein CobW|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.0273567004
+UniRef50_Q9HZQ2: Protein CobW|unclassified	0.1017925100
+UniRef50_O27336: Holliday junction resolvase Hjc	10.1287102706
+UniRef50_O27336: Holliday junction resolvase Hjc|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.1287102706
+UniRef50_H0SZF6	10.1278283661
+UniRef50_H0SZF6|unclassified	10.1278283661
+UniRef50_A6QIK4	10.1259689922
+UniRef50_A6QIK4|g__Staphylococcus.s__Staphylococcus_aureus	10.1259689922
+UniRef50_K9ZKB4: SNARE associated Golgi family protein	10.1139484485
+UniRef50_K9ZKB4: SNARE associated Golgi family protein|g__Deinococcus.s__Deinococcus_radiodurans	10.1139484485
+UniRef50_B7RLJ4	10.1128220629
+UniRef50_B7RLJ4|unclassified	10.1128220629
+UniRef50_UPI00036F4349: hypothetical protein, partial	10.1047098372
+UniRef50_UPI00036F4349: hypothetical protein, partial|unclassified	10.1047098372
+UniRef50_W8T226	10.1016799293
+UniRef50_W8T226|g__Escherichia.s__Escherichia_coli	10.1016799293
+UniRef50_A0A023YLG9	10.1010101010
+UniRef50_A0A023YLG9|unclassified	10.1010101010
+UniRef50_A0A037YTF6	10.1010101010
+UniRef50_A0A037YTF6|unclassified	10.1010101010
+UniRef50_A7ZJK0	10.1010101010
+UniRef50_A7ZJK0|unclassified	10.1010101010
+UniRef50_A8A2B7	10.1010101010
+UniRef50_A8A2B7|g__Escherichia.s__Escherichia_coli	10.1010101010
+UniRef50_B9KRR9	10.1010101010
+UniRef50_B9KRR9|unclassified	10.1010101010
+UniRef50_E3A3S5	10.1010101010
+UniRef50_E3A3S5|unclassified	10.1010101010
+UniRef50_H4HJQ8	10.1010101010
+UniRef50_H4HJQ8|unclassified	10.1010101010
+UniRef50_Q2EES9: Response regulator inhibitor for tor operon	10.1010101010
+UniRef50_Q2EES9: Response regulator inhibitor for tor operon|g__Escherichia.s__Escherichia_coli	10.1010101010
+UniRef50_Q2NHH6: FwdG	10.1010101010
+UniRef50_Q2NHH6: FwdG|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.1010101010
+UniRef50_Q5HLL6	10.1010101010
+UniRef50_Q5HLL6|g__Staphylococcus.s__Staphylococcus_epidermidis	10.1010101010
+UniRef50_Q8GP30: Putative two-component sensor (Fragment)	10.1010101010
+UniRef50_Q8GP30: Putative two-component sensor (Fragment)|unclassified	10.1010101010
+UniRef50_W7MXS8	10.1010101010
+UniRef50_W7MXS8|unclassified	10.1010101010
+UniRef50_A6M390: Extracellular solute-binding protein, family 1	10.0995744276
+UniRef50_A6M390: Extracellular solute-binding protein, family 1|g__Clostridium.s__Clostridium_beijerinckii	10.0995744276
+UniRef50_G5JVU3: GBS Bsp-like repeat protein	10.0963406896
+UniRef50_G5JVU3: GBS Bsp-like repeat protein|g__Streptococcus.s__Streptococcus_mutans	10.0963406896
+UniRef50_C9R804: MazG nucleotide pyrophosphohydrolase	10.0945247013
+UniRef50_C9R804: MazG nucleotide pyrophosphohydrolase|g__Staphylococcus.s__Staphylococcus_epidermidis	10.0945247013
+UniRef50_Q5HMD5	10.0833079346
+UniRef50_Q5HMD5|g__Staphylococcus.s__Staphylococcus_epidermidis	10.0833079346
+UniRef50_X5F4A5	10.0779456771
+UniRef50_X5F4A5|unclassified	10.0779456771
+UniRef50_B9KKN4: Transcriptional regulator, GntR family	10.0734563188
+UniRef50_B9KKN4: Transcriptional regulator, GntR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.0734563188
+UniRef50_C6UNL0: Predicted periplasmic pilin chaperone	10.0730574481
+UniRef50_C6UNL0: Predicted periplasmic pilin chaperone|g__Escherichia.s__Escherichia_coli	10.0730574481
+UniRef50_I3V233: Peptidase	10.0720863264
+UniRef50_I3V233: Peptidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.0720863264
+UniRef50_P39310	10.0711082196
+UniRef50_P39310|g__Escherichia.s__Escherichia_coli	10.0711082196
+UniRef50_UPI0004752275: hypothetical protein	10.0690933430
+UniRef50_UPI0004752275: hypothetical protein|unclassified	10.0690933430
+UniRef50_G1XC43	10.0681596038
+UniRef50_G1XC43|unclassified	10.0681596038
+UniRef50_A5ITU2: Transcriptional regulator, ArsR family	10.0645625656
+UniRef50_A5ITU2: Transcriptional regulator, ArsR family|g__Staphylococcus.s__Staphylococcus_aureus	10.0645625656
+UniRef50_Q9Z3A0	10.0634000024
+UniRef50_Q9Z3A0|g__Escherichia.s__Escherichia_coli	10.0634000024
+UniRef50_Q76HT9: Ribulose-1,5-bisphosphate carboxylase/oxygenase small subunit (Fragment)	10.0575384773
+UniRef50_Q76HT9: Ribulose-1,5-bisphosphate carboxylase/oxygenase small subunit (Fragment)|unclassified	10.0575384773
+UniRef50_E7XT19	10.0547608071
+UniRef50_E7XT19|unclassified	10.0547608071
+UniRef50_Q2NHF2	10.0536327715
+UniRef50_Q2NHF2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.0536327715
+UniRef50_B7NHL2	10.0511695906
+UniRef50_B7NHL2|g__Escherichia.s__Escherichia_coli	10.0511695906
+UniRef50_A5UMR6: GtrA-like surface polysaccharide biosynthesis protein, GtrA	10.0495951201
+UniRef50_A5UMR6: GtrA-like surface polysaccharide biosynthesis protein, GtrA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.0495951201
+UniRef50_A6V3S1: Aminoglycoside response regulator	10.0481123431
+UniRef50_A6V3S1: Aminoglycoside response regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2946946798
+UniRef50_A6V3S1: Aminoglycoside response regulator|unclassified	0.7534176632
+UniRef50_Q8D954: sn-glycerol-3-phosphate import ATP-binding protein UgpC	10.0452149962
+UniRef50_Q8D954: sn-glycerol-3-phosphate import ATP-binding protein UgpC|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.0452149962
+UniRef50_P05804: Beta-glucuronidase	10.0445246526
+UniRef50_P05804: Beta-glucuronidase|g__Escherichia.s__Escherichia_coli	10.0445246526
+UniRef50_M2NE11: Tail assembly chaperone gp38	10.0439191329
+UniRef50_M2NE11: Tail assembly chaperone gp38|g__Escherichia.s__Escherichia_coli	7.5747833305
+UniRef50_M2NE11: Tail assembly chaperone gp38|unclassified	2.4691358025
+UniRef50_UPI0003AE2672: PREDICTED: basic proline-rich protein-like	10.0431748590
+UniRef50_UPI0003AE2672: PREDICTED: basic proline-rich protein-like|unclassified	10.0431748590
+UniRef50_F3ZLH7	10.0400373333
+UniRef50_F3ZLH7|unclassified	10.0400373333
+UniRef50_I0C6S9	10.0393072382
+UniRef50_I0C6S9|g__Staphylococcus.s__Staphylococcus_epidermidis	6.8747502762
+UniRef50_I0C6S9|g__Staphylococcus.s__Staphylococcus_aureus	3.1645569620
+UniRef50_P45736	10.0386642106
+UniRef50_P45736|g__Escherichia.s__Escherichia_coli	10.0386642106
+UniRef50_I2JDD6	10.0383538196
+UniRef50_I2JDD6|g__Staphylococcus.s__Staphylococcus_epidermidis	10.0383538196
+UniRef50_W6IPV9: Oligopeptide transport system permease protein oppC	10.0382344495
+UniRef50_W6IPV9: Oligopeptide transport system permease protein oppC|g__Acinetobacter.s__Acinetobacter_baumannii	10.0382344495
+UniRef50_Q0VN20: Aliphatic amidase	10.0374751151
+UniRef50_Q0VN20: Aliphatic amidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.9176542864
+UniRef50_Q0VN20: Aliphatic amidase|g__Helicobacter.s__Helicobacter_pylori	1.1198208287
+UniRef50_H5D8G3	10.0374707528
+UniRef50_H5D8G3|g__Escherichia.s__Escherichia_coli	10.0374707528
+UniRef50_A4XV16: TRAP dicarboxylate transporter, DctP subunit	10.0352482892
+UniRef50_A4XV16: TRAP dicarboxylate transporter, DctP subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.0352482892
+UniRef50_W0MN68: Peptidase P60	10.0325203252
+UniRef50_W0MN68: Peptidase P60|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.0325203252
+UniRef50_P77136	10.0284052544
+UniRef50_P77136|g__Escherichia.s__Escherichia_coli	10.0284052544
+UniRef50_R4K915	10.0261350536
+UniRef50_R4K915|g__Clostridium.s__Clostridium_beijerinckii	10.0261350536
+UniRef50_G8LD16: Cold-Shock Protein	10.0259476434
+UniRef50_G8LD16: Cold-Shock Protein|g__Escherichia.s__Escherichia_coli	9.1743119266
+UniRef50_G8LD16: Cold-Shock Protein|unclassified	0.8516357168
+UniRef50_P21863: Probable FKBP-type 16 kDa peptidyl-prolyl cis-trans isomerase	10.0256149654
+UniRef50_P21863: Probable FKBP-type 16 kDa peptidyl-prolyl cis-trans isomerase|unclassified	10.0256149654
+UniRef50_A6LPG6: Hydrolase, TatD family	10.0237948890
+UniRef50_A6LPG6: Hydrolase, TatD family|g__Clostridium.s__Clostridium_beijerinckii	10.0237948890
+UniRef50_Q5F9J0: ADP-L-glycero-D-manno-heptose-6-epimerase	10.0199694962
+UniRef50_Q5F9J0: ADP-L-glycero-D-manno-heptose-6-epimerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5416155065
+UniRef50_Q5F9J0: ADP-L-glycero-D-manno-heptose-6-epimerase|g__Neisseria.s__Neisseria_meningitidis	4.1537983747
+UniRef50_Q5F9J0: ADP-L-glycero-D-manno-heptose-6-epimerase|unclassified	0.3245556151
+UniRef50_Q0FWQ2	10.0170524301
+UniRef50_Q0FWQ2|unclassified	10.0170524301
+UniRef50_A5URF1: Spermidine/putrescine ABC transporter ATPase subunit	10.0165769861
+UniRef50_A5URF1: Spermidine/putrescine ABC transporter ATPase subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.0165769861
+UniRef50_L1K729	10.0128398034
+UniRef50_L1K729|unclassified	10.0128398034
+UniRef50_J3N2U1	10.0124506152
+UniRef50_J3N2U1|unclassified	10.0124506152
+UniRef50_UPI000469863D: transcriptional regulator	10.0109934949
+UniRef50_UPI000469863D: transcriptional regulator|unclassified	10.0109934949
+UniRef50_P29914: NADH-quinone oxidoreductase chain 2	10.0097284714
+UniRef50_P29914: NADH-quinone oxidoreductase chain 2|unclassified	10.0097284714
+UniRef50_A3NIS0: Proline-specific permease	10.0088374447
+UniRef50_A3NIS0: Proline-specific permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	10.0088374447
+UniRef50_R5K1D1	10.0084637585
+UniRef50_R5K1D1|g__Clostridium.s__Clostridium_beijerinckii	10.0084637585
+UniRef50_Q9RZR8	10.0051109774
+UniRef50_Q9RZR8|unclassified	10.0051109774
+UniRef50_A3M0R3: RND type efflux pump	10.0037504710
+UniRef50_A3M0R3: RND type efflux pump|g__Acinetobacter.s__Acinetobacter_baumannii	10.0037504710
+UniRef50_W5Y8Y3: Polyprenyl synthetase	10.0032974373
+UniRef50_W5Y8Y3: Polyprenyl synthetase|g__Rhodobacter.s__Rhodobacter_sphaeroides	10.0032974373
+UniRef50_A5UNT5	10.0000000000
+UniRef50_A5UNT5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	10.0000000000
+UniRef50_A8ADK5	10.0000000000
+UniRef50_A8ADK5|unclassified	10.0000000000
+UniRef50_D5D1V5	10.0000000000
+UniRef50_D5D1V5|g__Escherichia.s__Escherichia_coli	10.0000000000
+UniRef50_D8HE41	10.0000000000
+UniRef50_D8HE41|g__Staphylococcus.s__Staphylococcus_aureus	10.0000000000
+UniRef50_E1JD10	10.0000000000
+UniRef50_E1JD10|g__Escherichia.s__Escherichia_coli	10.0000000000
+UniRef50_H6VX72	10.0000000000
+UniRef50_H6VX72|g__Acinetobacter.s__Acinetobacter_baumannii	10.0000000000
+UniRef50_L1KEH3	10.0000000000
+UniRef50_L1KEH3|unclassified	10.0000000000
+UniRef50_Q1EQY7	10.0000000000
+UniRef50_Q1EQY7|unclassified	10.0000000000
+UniRef50_W1XJE9	10.0000000000
+UniRef50_W1XJE9|unclassified	10.0000000000
+UniRef50_UPI00047D2208: hypothetical protein	9.9997452730
+UniRef50_UPI00047D2208: hypothetical protein|unclassified	9.9997452730
+UniRef50_Q51559: Rhamnosyltransferase 1 subunit A	9.9991986711
+UniRef50_Q51559: Rhamnosyltransferase 1 subunit A|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.9991986711
+UniRef50_N2RQ17: Glutathione transport system permease protein gsiC	9.9970668984
+UniRef50_N2RQ17: Glutathione transport system permease protein gsiC|g__Escherichia.s__Escherichia_coli	9.9970668984
+UniRef50_E2ZSF7: SadB	9.9965364362
+UniRef50_E2ZSF7: SadB|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.9965364362
+UniRef50_A3PH42	9.9952114329
+UniRef50_A3PH42|unclassified	9.9952114329
+UniRef50_A1JK30: Fatty acid oxidation complex subunit alpha	9.9952097656
+UniRef50_A1JK30: Fatty acid oxidation complex subunit alpha|g__Escherichia.s__Escherichia_coli	9.9083680049
+UniRef50_A1JK30: Fatty acid oxidation complex subunit alpha|unclassified	0.0868417607
+UniRef50_S8MM47: Transcriptional regulator	9.9935807656
+UniRef50_S8MM47: Transcriptional regulator|g__Streptococcus.s__Streptococcus_agalactiae	9.9935807656
+UniRef50_C6DYM5: Anthranilate phosphoribosyltransferase	9.9910224674
+UniRef50_C6DYM5: Anthranilate phosphoribosyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.9417412800
+UniRef50_C6DYM5: Anthranilate phosphoribosyltransferase|unclassified	0.0492811875
+UniRef50_Q9I291: UTP--glucose-1-phosphate uridylyltransferase	9.9887831878
+UniRef50_Q9I291: UTP--glucose-1-phosphate uridylyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5103411740
+UniRef50_Q9I291: UTP--glucose-1-phosphate uridylyltransferase|unclassified	2.1451086805
+UniRef50_Q9I291: UTP--glucose-1-phosphate uridylyltransferase|g__Helicobacter.s__Helicobacter_pylori	1.3333333333
+UniRef50_Q4LAD9: Transposase for IS431	9.9869933158
+UniRef50_Q4LAD9: Transposase for IS431|g__Staphylococcus.s__Staphylococcus_epidermidis	7.6900369004
+UniRef50_Q4LAD9: Transposase for IS431|unclassified	2.2969564155
+UniRef50_UPI00038199B5: hypothetical protein	9.9840628167
+UniRef50_UPI00038199B5: hypothetical protein|unclassified	9.9840628167
+UniRef50_E1PCV1	9.9805885504
+UniRef50_E1PCV1|g__Escherichia.s__Escherichia_coli	8.0000000000
+UniRef50_E1PCV1|unclassified	1.9805885504
+UniRef50_A0A021DBD0: D-isomer specific 2-hydroxyacid dehydrogenase	9.9803343166
+UniRef50_A0A021DBD0: D-isomer specific 2-hydroxyacid dehydrogenase|g__Staphylococcus.s__Staphylococcus_epidermidis	9.9803343166
+UniRef50_Q5HS12: ABC transporter, ATP-binding protein, truncation	9.9720876971
+UniRef50_Q5HS12: ABC transporter, ATP-binding protein, truncation|g__Staphylococcus.s__Staphylococcus_epidermidis	9.9720876971
+UniRef50_Q04KY8: Initiation-control protein YabA	9.9705095613
+UniRef50_Q04KY8: Initiation-control protein YabA|g__Streptococcus.s__Streptococcus_mutans	6.7756213824
+UniRef50_Q04KY8: Initiation-control protein YabA|g__Streptococcus.s__Streptococcus_agalactiae	3.1948881789
+UniRef50_A4JKW7: Major facilitator superfamily MFS_1	9.9704216203
+UniRef50_A4JKW7: Major facilitator superfamily MFS_1|g__Clostridium.s__Clostridium_beijerinckii	9.9704216203
+UniRef50_P77589: 3-(3-hydroxy-phenyl)propionate transporter	9.9694902563
+UniRef50_P77589: 3-(3-hydroxy-phenyl)propionate transporter|g__Escherichia.s__Escherichia_coli	9.9694902563
+UniRef50_C3MFX0: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	9.9694039045
+UniRef50_C3MFX0: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.8340138130
+UniRef50_C3MFX0: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.1353900915
+UniRef50_W8RX73: Cytochrome C	9.9684582130
+UniRef50_W8RX73: Cytochrome C|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.9684582130
+UniRef50_D5AUU2: Phage major capsid protein, HK97 family	9.9681720011
+UniRef50_D5AUU2: Phage major capsid protein, HK97 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.5477211498
+UniRef50_D5AUU2: Phage major capsid protein, HK97 family|unclassified	0.4204508513
+UniRef50_D6ZZR1	9.9664220283
+UniRef50_D6ZZR1|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.9664220283
+UniRef50_Q47QB9	9.9644682290
+UniRef50_Q47QB9|g__Deinococcus.s__Deinococcus_radiodurans	9.9644682290
+UniRef50_P33883: Acyl-homoserine-lactone synthase	9.9644201596
+UniRef50_P33883: Acyl-homoserine-lactone synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.2131066745
+UniRef50_P33883: Acyl-homoserine-lactone synthase|unclassified	1.7513134851
+UniRef50_Q8TX94: 3-isopropylmalate dehydratase small subunit 1	9.9582692247
+UniRef50_Q8TX94: 3-isopropylmalate dehydratase small subunit 1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.9582692247
+UniRef50_S6D9T6	9.9549368049
+UniRef50_S6D9T6|unclassified	9.9549368049
+UniRef50_A3LIZ0	9.9539179517
+UniRef50_A3LIZ0|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.5989980539
+UniRef50_A3LIZ0|unclassified	1.3549198978
+UniRef50_C4LJY5: Ribonuclease PH	9.9531165760
+UniRef50_C4LJY5: Ribonuclease PH|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.8207555034
+UniRef50_C4LJY5: Ribonuclease PH|unclassified	0.1323610726
+UniRef50_A0A031ANR6: Paraquat-inducible protein B	9.9495913619
+UniRef50_A0A031ANR6: Paraquat-inducible protein B|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.9495913619
+UniRef50_A6LYE0	9.9492302653
+UniRef50_A6LYE0|g__Clostridium.s__Clostridium_beijerinckii	9.9492302653
+UniRef50_U5PDI4: Glycosyltransferase	9.9483776910
+UniRef50_U5PDI4: Glycosyltransferase|g__Streptococcus.s__Streptococcus_mutans	9.9483776910
+UniRef50_UPI0003690E4C: ATPase, partial	9.9482757566
+UniRef50_UPI0003690E4C: ATPase, partial|unclassified	9.9482757566
+UniRef50_H4XQD7: Hybrid sensory histidine kinase, in two-component regulatory system with UvrY domain protein	9.9451350788
+UniRef50_H4XQD7: Hybrid sensory histidine kinase, in two-component regulatory system with UvrY domain protein|g__Escherichia.s__Escherichia_coli	9.9451350788
+UniRef50_J3CV04	9.9400563831
+UniRef50_J3CV04|unclassified	9.9400563831
+UniRef50_Y0ZY08	9.9374935159
+UniRef50_Y0ZY08|g__Staphylococcus.s__Staphylococcus_aureus	9.9374935159
+UniRef50_B9PK33: Zn-containing alcohol dehydrogenase	9.9338464868
+UniRef50_B9PK33: Zn-containing alcohol dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.9338464868
+UniRef50_C4ZLQ8: Binding-protein-dependent transport systems inner membrane component	9.9287909201
+UniRef50_C4ZLQ8: Binding-protein-dependent transport systems inner membrane component|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.9287909201
+UniRef50_UPI00036C7381: hypothetical protein	9.9264686359
+UniRef50_UPI00036C7381: hypothetical protein|unclassified	9.9264686359
+UniRef50_A7ZVQ2: Primosomal protein 1	9.9206113912
+UniRef50_A7ZVQ2: Primosomal protein 1|g__Escherichia.s__Escherichia_coli	9.9206113912
+UniRef50_F3EB79: MerR family transcriptional regulator	9.9195077053
+UniRef50_F3EB79: MerR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.9195077053
+UniRef50_T2E1N6: Bacterial regulatory s, tetR family protein	9.9143260908
+UniRef50_T2E1N6: Bacterial regulatory s, tetR family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.9143260908
+UniRef50_P0AAF8: Arginine transport ATP-binding protein ArtP	9.9122861071
+UniRef50_P0AAF8: Arginine transport ATP-binding protein ArtP|g__Escherichia.s__Escherichia_coli	9.9122861071
+UniRef50_D4TC28: ISxac2 transposase	9.9120375854
+UniRef50_D4TC28: ISxac2 transposase|unclassified	9.9120375854
+UniRef50_P76084: Acyl-coenzyme A thioesterase PaaI	9.9114060567
+UniRef50_P76084: Acyl-coenzyme A thioesterase PaaI|g__Escherichia.s__Escherichia_coli	9.9114060567
+UniRef50_A5UKI1	9.9113366273
+UniRef50_A5UKI1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.9113366273
+UniRef50_F4A5L9: PIS system, IIC component	9.9101917627
+UniRef50_F4A5L9: PIS system, IIC component|g__Streptococcus.s__Streptococcus_agalactiae	9.9101917627
+UniRef50_V0V1S0	9.9094414188
+UniRef50_V0V1S0|g__Escherichia.s__Escherichia_coli	6.5789473684
+UniRef50_V0V1S0|unclassified	3.3304940504
+UniRef50_F9L0G2	9.9078123498
+UniRef50_F9L0G2|g__Staphylococcus.s__Staphylococcus_aureus	8.0000000000
+UniRef50_F9L0G2|unclassified	1.9078123498
+UniRef50_B2TTK8	9.9009900990
+UniRef50_B2TTK8|unclassified	9.9009900990
+UniRef50_B9KNT5	9.9009900990
+UniRef50_B9KNT5|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.9009900990
+UniRef50_D3EXZ8	9.9009900990
+UniRef50_D3EXZ8|g__Staphylococcus.s__Staphylococcus_aureus	9.9009900990
+UniRef50_E6U6T7: LemA family protein	9.9009900990
+UniRef50_E6U6T7: LemA family protein|g__Clostridium.s__Clostridium_beijerinckii	9.9009900990
+UniRef50_Q5HHC3	9.9009900990
+UniRef50_Q5HHC3|unclassified	9.9009900990
+UniRef50_Q6ABT4	9.9009900990
+UniRef50_Q6ABT4|g__Propionibacterium.s__Propionibacterium_acnes	9.9009900990
+UniRef50_E2XUN1: Iron-containing alcohol dehydrogenase	9.9008954149
+UniRef50_E2XUN1: Iron-containing alcohol dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.9008954149
+UniRef50_U6C8Z8: Transposase, truncated	9.8999070764
+UniRef50_U6C8Z8: Transposase, truncated|g__Escherichia.s__Escherichia_coli	9.8999070764
+UniRef50_A4Y9D9: Peptidyl-tRNA hydrolase	9.8993002219
+UniRef50_A4Y9D9: Peptidyl-tRNA hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.8993002219
+UniRef50_B8IT59: Glycosyl transferase group 1	9.8984884075
+UniRef50_B8IT59: Glycosyl transferase group 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.8984884075
+UniRef50_X2LU18: Alanine--tRNA ligase	9.8972154865
+UniRef50_X2LU18: Alanine--tRNA ligase|g__Escherichia.s__Escherichia_coli	9.8972154865
+UniRef50_G0AE82: Aldo-keto reductase	9.8969556061
+UniRef50_G0AE82: Aldo-keto reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.7408862419
+UniRef50_G0AE82: Aldo-keto reductase|g__Deinococcus.s__Deinococcus_radiodurans	1.1560693642
+UniRef50_UPI0003734C10: hypothetical protein	9.8925398689
+UniRef50_UPI0003734C10: hypothetical protein|unclassified	9.8925398689
+UniRef50_F4FX21: Transcriptional regulator, MerR family	9.8918794571
+UniRef50_F4FX21: Transcriptional regulator, MerR family|g__Staphylococcus.s__Staphylococcus_aureus	9.8918794571
+UniRef50_UPI0003B65275: transcriptional regulator, partial	9.8875729627
+UniRef50_UPI0003B65275: transcriptional regulator, partial|unclassified	9.8875729627
+UniRef50_K5GQ46	9.8870070161
+UniRef50_K5GQ46|g__Escherichia.s__Escherichia_coli	9.3903940887
+UniRef50_K5GQ46|unclassified	0.4966129274
+UniRef50_A7X2Y8: 30S ribosomal protein S20	9.8823529412
+UniRef50_A7X2Y8: 30S ribosomal protein S20|g__Staphylococcus.s__Staphylococcus_epidermidis	9.8823529412
+UniRef50_N8X4K5	9.8792750067
+UniRef50_N8X4K5|g__Acinetobacter.s__Acinetobacter_baumannii	9.8792750067
+UniRef50_D8MY32: Sucrose phosphorylase	9.8775480864
+UniRef50_D8MY32: Sucrose phosphorylase|g__Escherichia.s__Escherichia_coli	9.8775480864
+UniRef50_P0ADK2	9.8771615740
+UniRef50_P0ADK2|g__Escherichia.s__Escherichia_coli	9.5546277656
+UniRef50_P0ADK2|unclassified	0.3225338084
+UniRef50_T2EKK2: Type I restriction modification DNA specificity domain protein	9.8748391432
+UniRef50_T2EKK2: Type I restriction modification DNA specificity domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.8748391432
+UniRef50_A3PFK8	9.8716315213
+UniRef50_A3PFK8|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.4294968887
+UniRef50_A3PFK8|unclassified	0.4421346326
+UniRef50_A3PRR5	9.8710642600
+UniRef50_A3PRR5|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.0335433220
+UniRef50_A3PRR5|unclassified	0.8375209380
+UniRef50_A8A6H8: Inner membrane protein CbrB	9.8696951102
+UniRef50_A8A6H8: Inner membrane protein CbrB|g__Escherichia.s__Escherichia_coli	9.8696951102
+UniRef50_K4AQR7	9.8683749464
+UniRef50_K4AQR7|unclassified	9.8683749464
+UniRef50_S6B0N2	9.8660316941
+UniRef50_S6B0N2|g__Streptococcus.s__Streptococcus_mutans	9.8660316941
+UniRef50_O32119: Putative nitrogen fixation protein YutI	9.8636633076
+UniRef50_O32119: Putative nitrogen fixation protein YutI|g__Staphylococcus.s__Staphylococcus_aureus	9.8636633076
+UniRef50_A6QF34	9.8630864304
+UniRef50_A6QF34|g__Staphylococcus.s__Staphylococcus_aureus	7.5757575758
+UniRef50_A6QF34|unclassified	2.2873288546
+UniRef50_P39382	9.8621620199
+UniRef50_P39382|g__Escherichia.s__Escherichia_coli	9.8621620199
+UniRef50_Q3IVQ5	9.8582432590
+UniRef50_Q3IVQ5|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.7231121281
+UniRef50_Q3IVQ5|unclassified	2.1351311309
+UniRef50_P25888: ATP-dependent RNA helicase RhlE	9.8563651317
+UniRef50_P25888: ATP-dependent RNA helicase RhlE|g__Escherichia.s__Escherichia_coli	9.4575713169
+UniRef50_P25888: ATP-dependent RNA helicase RhlE|unclassified	0.3987938149
+UniRef50_I0ZSX5: Transporter, major facilitator family protein	9.8510491555
+UniRef50_I0ZSX5: Transporter, major facilitator family protein|g__Escherichia.s__Escherichia_coli	9.8510491555
+UniRef50_Q609F9: Glutamate racemase	9.8487894592
+UniRef50_Q609F9: Glutamate racemase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.8487894592
+UniRef50_Q48G15: Transcriptional regulator ArgR	9.8442187227
+UniRef50_Q48G15: Transcriptional regulator ArgR|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.8442187227
+UniRef50_M9VL85	9.8440648461
+UniRef50_M9VL85|g__Propionibacterium.s__Propionibacterium_acnes	9.8440648461
+UniRef50_UPI0004650975: hypothetical protein	9.8421875865
+UniRef50_UPI0004650975: hypothetical protein|unclassified	9.8421875865
+UniRef50_J7QU36: Hydrogenase 4 membrane subunit	9.8418277436
+UniRef50_J7QU36: Hydrogenase 4 membrane subunit|g__Escherichia.s__Escherichia_coli	9.8418277436
+UniRef50_Q3J2D1	9.8411461317
+UniRef50_Q3J2D1|unclassified	9.8411461317
+UniRef50_W8RRJ3: Flagellum-specific ATP synthase FliI	9.8365542517
+UniRef50_W8RRJ3: Flagellum-specific ATP synthase FliI|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.8365542517
+UniRef50_W4TMK3: Biotin synthase	9.8296851996
+UniRef50_W4TMK3: Biotin synthase|unclassified	9.8296851996
+UniRef50_UPI0002D9CCC2: hypothetical protein	9.8271540863
+UniRef50_UPI0002D9CCC2: hypothetical protein|unclassified	9.8271540863
+UniRef50_A5VZS9: Ribosomal protein S12 methylthiotransferase RimO	9.8261920128
+UniRef50_A5VZS9: Ribosomal protein S12 methylthiotransferase RimO|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.8261920128
+UniRef50_R4RCT3: Transcriptional regulator, IclR family	9.8247737490
+UniRef50_R4RCT3: Transcriptional regulator, IclR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.8247737490
+UniRef50_G2JG48: ABC transporter	9.8235901736
+UniRef50_G2JG48: ABC transporter|g__Acinetobacter.s__Acinetobacter_baumannii	9.8235901736
+UniRef50_P16670: Cytochrome b562	9.8173793156
+UniRef50_P16670: Cytochrome b562|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.8173793156
+UniRef50_E1VBD1: Nitrilase/cyanide hydratase and apolipoprotein N-acyltransferase	9.8140812213
+UniRef50_E1VBD1: Nitrilase/cyanide hydratase and apolipoprotein N-acyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.8140812213
+UniRef50_D4KGU1: Transcriptional regulator, LacI family	9.8129600228
+UniRef50_D4KGU1: Transcriptional regulator, LacI family|g__Clostridium.s__Clostridium_beijerinckii	9.8129600228
+UniRef50_A6TGU8: Chorismate pyruvate-lyase	9.8123182320
+UniRef50_A6TGU8: Chorismate pyruvate-lyase|g__Escherichia.s__Escherichia_coli	9.8123182320
+UniRef50_H8L2K5: Phage tail sheath protein FI	9.8120596678
+UniRef50_H8L2K5: Phage tail sheath protein FI|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.8120596678
+UniRef50_Q02H50	9.8113957152
+UniRef50_Q02H50|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.8113957152
+UniRef50_D3EVF6	9.8057645870
+UniRef50_D3EVF6|g__Staphylococcus.s__Staphylococcus_aureus	8.6206896552
+UniRef50_D3EVF6|unclassified	1.1850749319
+UniRef50_A6V3A5	9.8039215686
+UniRef50_A6V3A5|unclassified	9.8039215686
+UniRef50_E6BMR9	9.8039215686
+UniRef50_E6BMR9|g__Escherichia.s__Escherichia_coli	9.8039215686
+UniRef50_J9YRB6	9.8039215686
+UniRef50_J9YRB6|g__Streptococcus.s__Streptococcus_agalactiae	9.8039215686
+UniRef50_Z2RZJ8	9.8039215686
+UniRef50_Z2RZJ8|unclassified	9.8039215686
+UniRef50_UPI00036547B5: hypothetical protein	9.8021822965
+UniRef50_UPI00036547B5: hypothetical protein|unclassified	9.8021822965
+UniRef50_W8RWG3: DnaK suppressor protein	9.7993677491
+UniRef50_W8RWG3: DnaK suppressor protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.7993677491
+UniRef50_P44051: Short-chain fatty acids transporter	9.7989062838
+UniRef50_P44051: Short-chain fatty acids transporter|g__Escherichia.s__Escherichia_coli	7.6188885919
+UniRef50_P44051: Short-chain fatty acids transporter|g__Clostridium.s__Clostridium_beijerinckii	2.1800176919
+UniRef50_P75684	9.7976952360
+UniRef50_P75684|unclassified	4.9136248195
+UniRef50_P75684|g__Escherichia.s__Escherichia_coli	4.8840704165
+UniRef50_Q7VIJ8	9.7972827889
+UniRef50_Q7VIJ8|unclassified	9.7972827889
+UniRef50_A6W3N1: Phosphate ABC transporter, inner membrane subunit PstA	9.7963003151
+UniRef50_A6W3N1: Phosphate ABC transporter, inner membrane subunit PstA|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.7963003151
+UniRef50_G4LIC7	9.7961795452
+UniRef50_G4LIC7|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.7961795452
+UniRef50_Q1NBV4	9.7903150370
+UniRef50_Q1NBV4|unclassified	9.7903150370
+UniRef50_E6U6T5: Major facilitator superfamily MFS_1	9.7886471425
+UniRef50_E6U6T5: Major facilitator superfamily MFS_1|g__Clostridium.s__Clostridium_beijerinckii	9.7886471425
+UniRef50_Q8FFY2	9.7883280685
+UniRef50_Q8FFY2|g__Escherichia.s__Escherichia_coli	9.7883280685
+UniRef50_G7M433: Transglutaminase domain-containing protein	9.7863099007
+UniRef50_G7M433: Transglutaminase domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	9.7863099007
+UniRef50_E3A4K3	9.7855470486
+UniRef50_E3A4K3|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.7855470486
+UniRef50_M4ZMN9: Gas vesicle structural protein	9.7822074566
+UniRef50_M4ZMN9: Gas vesicle structural protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.7822074566
+UniRef50_C5BDM9: DNA mismatch repair protein MutL	9.7809072329
+UniRef50_C5BDM9: DNA mismatch repair protein MutL|g__Escherichia.s__Escherichia_coli	9.7809072329
+UniRef50_Q8CR18	9.7800095648
+UniRef50_Q8CR18|g__Staphylococcus.s__Staphylococcus_epidermidis	9.7800095648
+UniRef50_Q02EP8: tRNA sulfurtransferase	9.7760194983
+UniRef50_Q02EP8: tRNA sulfurtransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.7760194983
+UniRef50_R9SKE5	9.7757349650
+UniRef50_R9SKE5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.7757349650
+UniRef50_A5UKX6	9.7707690208
+UniRef50_A5UKX6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.7707690208
+UniRef50_X7ECM7	9.7655379992
+UniRef50_X7ECM7|unclassified	9.7655379992
+UniRef50_A9M3I8: dTDP-4-dehydrorhamnose reductase	9.7595895588
+UniRef50_A9M3I8: dTDP-4-dehydrorhamnose reductase|g__Neisseria.s__Neisseria_meningitidis	9.7595895588
+UniRef50_Q8ZQZ8: Nicotinate-nucleotide adenylyltransferase	9.7572549194
+UniRef50_Q8ZQZ8: Nicotinate-nucleotide adenylyltransferase|g__Escherichia.s__Escherichia_coli	9.7572549194
+UniRef50_A6V962	9.7538232003
+UniRef50_A6V962|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.7538232003
+UniRef50_Q3IW06	9.7535360364
+UniRef50_Q3IW06|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.7535360364
+UniRef50_Q2YV14	9.7534187294
+UniRef50_Q2YV14|g__Staphylococcus.s__Staphylococcus_aureus	8.6032202203
+UniRef50_Q2YV14|unclassified	1.1501985091
+UniRef50_UPI0003B748CE: hypothetical protein	9.7510173514
+UniRef50_UPI0003B748CE: hypothetical protein|unclassified	9.7510173514
+UniRef50_Q02U97: Putatitve transcriptional regulator	9.7465755108
+UniRef50_Q02U97: Putatitve transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.6607991807
+UniRef50_Q02U97: Putatitve transcriptional regulator|unclassified	1.0857763301
+UniRef50_Q984K6: Phosphoribosylformylglycinamidine cyclo-ligase	9.7457779355
+UniRef50_Q984K6: Phosphoribosylformylglycinamidine cyclo-ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.6812510854
+UniRef50_Q984K6: Phosphoribosylformylglycinamidine cyclo-ligase|unclassified	0.0645268500
+UniRef50_Q51468: Flagellar biosynthetic protein FliP	9.7457779312
+UniRef50_Q51468: Flagellar biosynthetic protein FliP|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.7457779312
+UniRef50_P0DC76: N utilization substance protein B homolog	9.7429546717
+UniRef50_P0DC76: N utilization substance protein B homolog|g__Streptococcus.s__Streptococcus_mutans	7.3506101741
+UniRef50_P0DC76: N utilization substance protein B homolog|g__Streptococcus.s__Streptococcus_agalactiae	2.3923444976
+UniRef50_A0A037YH66: UDP pyrophosphate phosphatase	9.7407407958
+UniRef50_A0A037YH66: UDP pyrophosphate phosphatase|g__Escherichia.s__Escherichia_coli	9.7407407958
+UniRef50_A4WSC8: OmpA/MotB domain protein	9.7397311935
+UniRef50_A4WSC8: OmpA/MotB domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.4061011853
+UniRef50_A4WSC8: OmpA/MotB domain protein|unclassified	0.3336300082
+UniRef50_M9R5B4: Aminotransferase	9.7387928432
+UniRef50_M9R5B4: Aminotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.7387928432
+UniRef50_G0XA87	9.7353288856
+UniRef50_G0XA87|g__Acinetobacter.s__Acinetobacter_baumannii	9.7353288856
+UniRef50_A6LR67: Accessory gene regulator B	9.7352304783
+UniRef50_A6LR67: Accessory gene regulator B|g__Clostridium.s__Clostridium_beijerinckii	9.7352304783
+UniRef50_Q4YEI4	9.7340590596
+UniRef50_Q4YEI4|unclassified	9.7340590596
+UniRef50_Q2NHD9: Translation initiation factor 2 subunit beta	9.7311594489
+UniRef50_Q2NHD9: Translation initiation factor 2 subunit beta|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.7311594489
+UniRef50_Q9I633	9.7241950933
+UniRef50_Q9I633|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.7241950933
+UniRef50_A8LQH3	9.7228381017
+UniRef50_A8LQH3|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.7228381017
+UniRef50_P29365: Homoserine dehydrogenase	9.7219714191
+UniRef50_P29365: Homoserine dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.6804067992
+UniRef50_P29365: Homoserine dehydrogenase|unclassified	0.0415646199
+UniRef50_P0AA65: Inner membrane protein YqjA	9.7217779076
+UniRef50_P0AA65: Inner membrane protein YqjA|g__Escherichia.s__Escherichia_coli	9.7217779076
+UniRef50_H5XUP2: Transcriptional regulator containing an amidase domain and an AraC-type DNA-binding HTH domain	9.7216406586
+UniRef50_H5XUP2: Transcriptional regulator containing an amidase domain and an AraC-type DNA-binding HTH domain|g__Clostridium.s__Clostridium_beijerinckii	9.7216406586
+UniRef50_A3PJ31: Cytochrome c553i	9.7211232330
+UniRef50_A3PJ31: Cytochrome c553i|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.7211232330
+UniRef50_W0WMZ7: tRNA pseudouridine synthase B	9.7208895147
+UniRef50_W0WMZ7: tRNA pseudouridine synthase B|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.7208895147
+UniRef50_R7EKE5	9.7185833681
+UniRef50_R7EKE5|unclassified	9.7185833681
+UniRef50_A6LY49: Transcriptional regulator, TetR family	9.7170288922
+UniRef50_A6LY49: Transcriptional regulator, TetR family|g__Clostridium.s__Clostridium_beijerinckii	9.7170288922
+UniRef50_P30012: Nicotinate-nucleotide pyrophosphorylase [carboxylating]	9.7161472701
+UniRef50_P30012: Nicotinate-nucleotide pyrophosphorylase [carboxylating]|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.7161472701
+UniRef50_B2N6Z5	9.7136731407
+UniRef50_B2N6Z5|g__Escherichia.s__Escherichia_coli	9.7136731407
+UniRef50_S0WAS7: HTH-type transcriptional regulator CynR	9.7125712991
+UniRef50_S0WAS7: HTH-type transcriptional regulator CynR|g__Escherichia.s__Escherichia_coli	9.7125712991
+UniRef50_E6MV57: IS1016 transposase	9.7095243228
+UniRef50_E6MV57: IS1016 transposase|g__Neisseria.s__Neisseria_meningitidis	9.7095243228
+UniRef50_A8GHR1: Putative multidrug resistance protein MdtD	9.7094535071
+UniRef50_A8GHR1: Putative multidrug resistance protein MdtD|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.7094535071
+UniRef50_A0A017HMF0	9.7091005862
+UniRef50_A0A017HMF0|unclassified	9.7091005862
+UniRef50_P69433: Biofilm PGA synthesis protein PgaD	9.7087950608
+UniRef50_P69433: Biofilm PGA synthesis protein PgaD|g__Escherichia.s__Escherichia_coli	9.7087950608
+UniRef50_U5UM94: GntR family transcriptional regulator	9.7087445439
+UniRef50_U5UM94: GntR family transcriptional regulator|g__Staphylococcus.s__Staphylococcus_aureus	9.7087445439
+UniRef50_A0A009NV73	9.7087378641
+UniRef50_A0A009NV73|unclassified	9.7087378641
+UniRef50_A7X049	9.7087378641
+UniRef50_A7X049|unclassified	9.7087378641
+UniRef50_C5MZW5	9.7087378641
+UniRef50_C5MZW5|g__Staphylococcus.s__Staphylococcus_aureus	9.7087378641
+UniRef50_D0K4R3	9.7087378641
+UniRef50_D0K4R3|g__Staphylococcus.s__Staphylococcus_aureus	9.7087378641
+UniRef50_Q5HPM6	9.7087378641
+UniRef50_Q5HPM6|g__Staphylococcus.s__Staphylococcus_epidermidis	9.7087378641
+UniRef50_Q6ABL2: DNA replication and repair protein RecF	9.7087378641
+UniRef50_Q6ABL2: DNA replication and repair protein RecF|g__Propionibacterium.s__Propionibacterium_acnes	9.7087378641
+UniRef50_Q8DV02	9.7087378641
+UniRef50_Q8DV02|g__Streptococcus.s__Streptococcus_mutans	9.7087378641
+UniRef50_X0VX13: Marine sediment metagenome DNA, contig: S01H1_S18394 (Fragment)	9.7081213828
+UniRef50_X0VX13: Marine sediment metagenome DNA, contig: S01H1_S18394 (Fragment)|unclassified	9.7081213828
+UniRef50_U3SSX9	9.7063875279
+UniRef50_U3SSX9|g__Streptococcus.s__Streptococcus_mutans	9.7063875279
+UniRef50_B7V8H0: Probable intracellular septation protein A	9.7056033230
+UniRef50_B7V8H0: Probable intracellular septation protein A|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.7056033230
+UniRef50_B9KX77	9.7016624660
+UniRef50_B9KX77|unclassified	9.7016624660
+UniRef50_Q4KFA5: Glycerophosphodiester phosphodiesterase family protein	9.6928336830
+UniRef50_Q4KFA5: Glycerophosphodiester phosphodiesterase family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.6928336830
+UniRef50_I4D1N3: 2-oxoacid:acceptor oxidoreductase, beta subunit, pyruvate/2-ketoisovalerate family	9.6906931299
+UniRef50_I4D1N3: 2-oxoacid:acceptor oxidoreductase, beta subunit, pyruvate/2-ketoisovalerate family|g__Clostridium.s__Clostridium_beijerinckii	9.6906931299
+UniRef50_U3SUT1	9.6897058465
+UniRef50_U3SUT1|g__Streptococcus.s__Streptococcus_mutans	9.6897058465
+UniRef50_Q88BC2: Phospholipase D family protein	9.6861869256
+UniRef50_Q88BC2: Phospholipase D family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.6861869256
+UniRef50_M2DZ17	9.6851085012
+UniRef50_M2DZ17|g__Streptococcus.s__Streptococcus_mutans	9.6851085012
+UniRef50_C6SQ57	9.6811790360
+UniRef50_C6SQ57|g__Streptococcus.s__Streptococcus_mutans	6.9930069930
+UniRef50_C6SQ57|unclassified	2.6881720430
+UniRef50_A5UNB5: Cobalt ABC transporter, permease component, CbiM	9.6792750848
+UniRef50_A5UNB5: Cobalt ABC transporter, permease component, CbiM|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.6792750848
+UniRef50_M1MEC2: Extracellular solute-binding protein, family 1	9.6792072161
+UniRef50_M1MEC2: Extracellular solute-binding protein, family 1|g__Clostridium.s__Clostridium_beijerinckii	9.6792072161
+UniRef50_UPI00040692FE: hypothetical protein	9.6773647622
+UniRef50_UPI00040692FE: hypothetical protein|unclassified	9.6773647622
+UniRef50_P37926: Fimbrial-like protein FimF	9.6746424570
+UniRef50_P37926: Fimbrial-like protein FimF|g__Escherichia.s__Escherichia_coli	9.6746424570
+UniRef50_M2HZ79: Putative transposase, IS150-like protein (Fragment)	9.6738511804
+UniRef50_M2HZ79: Putative transposase, IS150-like protein (Fragment)|unclassified	9.6738511804
+UniRef50_B7I751: NADH-quinone oxidoreductase subunit N	9.6717823954
+UniRef50_B7I751: NADH-quinone oxidoreductase subunit N|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.8439678258
+UniRef50_B7I751: NADH-quinone oxidoreductase subunit N|g__Acinetobacter.s__Acinetobacter_baumannii	0.8278145695
+UniRef50_UPI0003700606: hypothetical protein	9.6665102730
+UniRef50_UPI0003700606: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.2170338799
+UniRef50_UPI0003700606: hypothetical protein|unclassified	0.4494763931
+UniRef50_Q8XJK8: Guanylate kinase	9.6622254644
+UniRef50_Q8XJK8: Guanylate kinase|g__Clostridium.s__Clostridium_beijerinckii	9.5854122119
+UniRef50_Q8XJK8: Guanylate kinase|unclassified	0.0768132525
+UniRef50_F7Y3N0: Secretion protein HlyD family protein	9.6512902301
+UniRef50_F7Y3N0: Secretion protein HlyD family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.6512902301
+UniRef50_Q83J60: HTH-type transcriptional regulator DctR	9.6504463724
+UniRef50_Q83J60: HTH-type transcriptional regulator DctR|g__Escherichia.s__Escherichia_coli	9.6504463724
+UniRef50_Q9I684	9.6502229654
+UniRef50_Q9I684|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.6502229654
+UniRef50_S5XTG7: Transcriptional regulator, LacI family	9.6499993304
+UniRef50_S5XTG7: Transcriptional regulator, LacI family|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.6499993304
+UniRef50_C5XCJ2	9.6495434304
+UniRef50_C5XCJ2|unclassified	9.6495434304
+UniRef50_Q3IUV8: TrbC, sex pilus assembly and mating pair formation protein	9.6487427894
+UniRef50_Q3IUV8: TrbC, sex pilus assembly and mating pair formation protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.2383055539
+UniRef50_Q3IUV8: TrbC, sex pilus assembly and mating pair formation protein|unclassified	1.4104372355
+UniRef50_E4P2D2	9.6480215744
+UniRef50_E4P2D2|unclassified	9.6480215744
+UniRef50_M9S933: Transcriptional regulator	9.6477853606
+UniRef50_M9S933: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.6477853606
+UniRef50_A6M029: GCN5-related N-acetyltransferase	9.6473838337
+UniRef50_A6M029: GCN5-related N-acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	9.6473838337
+UniRef50_R4ZLY3: Mobile element protein	9.6470653934
+UniRef50_R4ZLY3: Mobile element protein|g__Streptococcus.s__Streptococcus_agalactiae	9.6470653934
+UniRef50_U5NRQ9	9.6470063674
+UniRef50_U5NRQ9|unclassified	5.1015518219
+UniRef50_U5NRQ9|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.5454545455
+UniRef50_A1VT74: Transposase, IS4 family	9.6446786332
+UniRef50_A1VT74: Transposase, IS4 family|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.1587204523
+UniRef50_A1VT74: Transposase, IS4 family|unclassified	0.4859581809
+UniRef50_U0EAS4: Adenine deaminase	9.6443146142
+UniRef50_U0EAS4: Adenine deaminase|g__Escherichia.s__Escherichia_coli	9.6443146142
+UniRef50_S5Y961: Phage terminase	9.6405336901
+UniRef50_S5Y961: Phage terminase|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.6405336901
+UniRef50_P67702: Antitoxin HigA	9.6386101821
+UniRef50_P67702: Antitoxin HigA|g__Escherichia.s__Escherichia_coli	9.6386101821
+UniRef50_N3GRF4: Type VII secretion system (T7SS), usher family protein	9.6342016001
+UniRef50_N3GRF4: Type VII secretion system (T7SS), usher family protein|g__Escherichia.s__Escherichia_coli	9.6342016001
+UniRef50_I1B3N6	9.6338029356
+UniRef50_I1B3N6|g__Escherichia.s__Escherichia_coli	9.6338029356
+UniRef50_R4K8M4: ABC-type nitrate/sulfonate/bicarbonate transport system, ATPase component	9.6335986053
+UniRef50_R4K8M4: ABC-type nitrate/sulfonate/bicarbonate transport system, ATPase component|g__Clostridium.s__Clostridium_beijerinckii	9.6335986053
+UniRef50_S5RLF1: MarR family transcriptional regulator	9.6313107183
+UniRef50_S5RLF1: MarR family transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	9.6313107183
+UniRef50_P45604: PTS system N-acetylglucosamine-specific EIICBA component	9.6291845568
+UniRef50_P45604: PTS system N-acetylglucosamine-specific EIICBA component|g__Escherichia.s__Escherichia_coli	9.6291845568
+UniRef50_Q1YEW0	9.6250485461
+UniRef50_Q1YEW0|unclassified	9.6250485461
+UniRef50_A7ZVR4	9.6243093072
+UniRef50_A7ZVR4|g__Escherichia.s__Escherichia_coli	9.6243093072
+UniRef50_Q3J1E3	9.6195887411
+UniRef50_Q3J1E3|unclassified	9.6195887411
+UniRef50_P05823: Transposon Tn2501 resolvase	9.6173852734
+UniRef50_P05823: Transposon Tn2501 resolvase|g__Escherichia.s__Escherichia_coli	9.6173852734
+UniRef50_A4WNS3	9.6165584145
+UniRef50_A4WNS3|unclassified	9.6165584145
+UniRef50_B9KUD4	9.6153846154
+UniRef50_B9KUD4|unclassified	9.6153846154
+UniRef50_Z7FRK8	9.6153846154
+UniRef50_Z7FRK8|unclassified	9.6153846154
+UniRef50_P0ABR3: DNA-damage-inducible protein I	9.6136322216
+UniRef50_P0ABR3: DNA-damage-inducible protein I|g__Escherichia.s__Escherichia_coli	9.6136322216
+UniRef50_B0KMS4: Permease for cytosine/purines uracil thiamine allantoin	9.6127213798
+UniRef50_B0KMS4: Permease for cytosine/purines uracil thiamine allantoin|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.6127213798
+UniRef50_Q3J5W8: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase	9.6089579666
+UniRef50_Q3J5W8: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.6089579666
+UniRef50_N4M678	9.6071915474
+UniRef50_N4M678|g__Escherichia.s__Escherichia_coli	9.6071915474
+UniRef50_P05447: ATP synthase subunits region ORF 4	9.6065415195
+UniRef50_P05447: ATP synthase subunits region ORF 4|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.6065415195
+UniRef50_G7Z253	9.6064364492
+UniRef50_G7Z253|unclassified	9.6064364492
+UniRef50_L1GDG6: Cytochrome C and Quinol oxidase polypeptide I family protein	9.6051198465
+UniRef50_L1GDG6: Cytochrome C and Quinol oxidase polypeptide I family protein|g__Escherichia.s__Escherichia_coli	9.6051198465
+UniRef50_A4VFG0: DNA replication and repair protein RecF	9.6036264983
+UniRef50_A4VFG0: DNA replication and repair protein RecF|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.6036264983
+UniRef50_U1EJY3	9.6024143213
+UniRef50_U1EJY3|unclassified	9.6024143213
+UniRef50_P32053: Prophage CP4-57 integrase	9.5989971723
+UniRef50_P32053: Prophage CP4-57 integrase|g__Escherichia.s__Escherichia_coli	9.5989971723
+UniRef50_Q5F569: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	9.5963326446
+UniRef50_Q5F569: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.4877128267
+UniRef50_Q5F569: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.1086198179
+UniRef50_Q89AP7: Acetolactate synthase large subunit	9.5948925226
+UniRef50_Q89AP7: Acetolactate synthase large subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.7322113304
+UniRef50_Q89AP7: Acetolactate synthase large subunit|g__Neisseria.s__Neisseria_meningitidis	0.7027406887
+UniRef50_Q89AP7: Acetolactate synthase large subunit|unclassified	0.1599405035
+UniRef50_A6M0Z1: Methyl-accepting chemotaxis sensory transducer	9.5915055733
+UniRef50_A6M0Z1: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	9.5915055733
+UniRef50_O27185: tRNA (cytidine(56)-2'-O)-methyltransferase	9.5914535142
+UniRef50_O27185: tRNA (cytidine(56)-2'-O)-methyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.5914535142
+UniRef50_N3K3R3: Oligopeptide/dipeptide ABC transporter, ATP-binding , C-terminal domain protein (Fragment)	9.5895585026
+UniRef50_N3K3R3: Oligopeptide/dipeptide ABC transporter, ATP-binding , C-terminal domain protein (Fragment)|g__Escherichia.s__Escherichia_coli	9.5895585026
+UniRef50_Q8AA27: Methionine aminopeptidase	9.5886482561
+UniRef50_Q8AA27: Methionine aminopeptidase|g__Clostridium.s__Clostridium_beijerinckii	9.5886482561
+UniRef50_H5MQG0: Putative transport domain protein	9.5876242211
+UniRef50_H5MQG0: Putative transport domain protein|g__Escherichia.s__Escherichia_coli	9.5876242211
+UniRef50_A4WR12: ABC transporter related	9.5854676385
+UniRef50_A4WR12: ABC transporter related|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.5854676385
+UniRef50_L8NEI8: Lipopolysaccharide kinase (Kdo/WaaP) family	9.5834995548
+UniRef50_L8NEI8: Lipopolysaccharide kinase (Kdo/WaaP) family|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.5834995548
+UniRef50_Q53100: ORF277 (Fragment)	9.5735004065
+UniRef50_Q53100: ORF277 (Fragment)|unclassified	9.5735004065
+UniRef50_D9SWY9: Phosphofructokinase	9.5733175909
+UniRef50_D9SWY9: Phosphofructokinase|g__Clostridium.s__Clostridium_beijerinckii	9.5733175909
+UniRef50_T2E0C1	9.5714298967
+UniRef50_T2E0C1|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.5714298967
+UniRef50_A9M0X9	9.5712861416
+UniRef50_A9M0X9|g__Neisseria.s__Neisseria_meningitidis	9.5712861416
+UniRef50_M1MQI8: Monosaccharide ABC transporter substrate-binding protein, CUT2 family	9.5709000984
+UniRef50_M1MQI8: Monosaccharide ABC transporter substrate-binding protein, CUT2 family|g__Clostridium.s__Clostridium_beijerinckii	9.5709000984
+UniRef50_A6LZS9	9.5701759971
+UniRef50_A6LZS9|g__Clostridium.s__Clostridium_beijerinckii	9.5701759971
+UniRef50_F6G9P6	9.5693779904
+UniRef50_F6G9P6|unclassified	9.5693779904
+UniRef50_Q161C9	9.5688058151
+UniRef50_Q161C9|unclassified	6.5926153389
+UniRef50_Q161C9|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.9761904762
+UniRef50_D3S8C7: Hypoxanthine/guanine phosphoribosyltransferase	9.5671745756
+UniRef50_D3S8C7: Hypoxanthine/guanine phosphoribosyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.5671745756
+UniRef50_F0Y2Z5: Expressed protein (Fragment)	9.5653053424
+UniRef50_F0Y2Z5: Expressed protein (Fragment)|unclassified	9.5653053424
+UniRef50_Y6TZE6	9.5640709690
+UniRef50_Y6TZE6|g__Staphylococcus.s__Staphylococcus_aureus	7.8125000000
+UniRef50_Y6TZE6|unclassified	1.7515709690
+UniRef50_T8LVX5: N-acetylneuraminate epimerase	9.5640380501
+UniRef50_T8LVX5: N-acetylneuraminate epimerase|g__Escherichia.s__Escherichia_coli	9.5640380501
+UniRef50_P76513	9.5632826958
+UniRef50_P76513|g__Escherichia.s__Escherichia_coli	9.5632826958
+UniRef50_H4VVH3: MpaA family protein	9.5623594716
+UniRef50_H4VVH3: MpaA family protein|g__Escherichia.s__Escherichia_coli	9.5623594716
+UniRef50_V6PTI9	9.5596266781
+UniRef50_V6PTI9|unclassified	9.5596266781
+UniRef50_K4PMZ8: Alpha-glycerophosphate oxidase	9.5588476283
+UniRef50_K4PMZ8: Alpha-glycerophosphate oxidase|g__Streptococcus.s__Streptococcus_agalactiae	9.5588476283
+UniRef50_H1FAF7	9.5584514131
+UniRef50_H1FAF7|g__Escherichia.s__Escherichia_coli	9.5584514131
+UniRef50_A3PRP7: Electron transport complex subunit RnfG	9.5583492660
+UniRef50_A3PRP7: Electron transport complex subunit RnfG|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.5583492660
+UniRef50_A9BLG8: Phage shock protein A, PspA	9.5571602578
+UniRef50_A9BLG8: Phage shock protein A, PspA|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.5571602578
+UniRef50_H3WJF6	9.5568478427
+UniRef50_H3WJF6|g__Staphylococcus.s__Staphylococcus_epidermidis	7.8125000000
+UniRef50_H3WJF6|unclassified	1.7443478427
+UniRef50_UPI00047DEE62: hypothetical protein	9.5554611520
+UniRef50_UPI00047DEE62: hypothetical protein|unclassified	9.5554611520
+UniRef50_A6LXF2: Electron transfer flavoprotein, alpha subunit-like protein	9.5524749572
+UniRef50_A6LXF2: Electron transfer flavoprotein, alpha subunit-like protein|g__Clostridium.s__Clostridium_beijerinckii	9.5524749572
+UniRef50_P44808	9.5507832259
+UniRef50_P44808|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1144564665
+UniRef50_P44808|g__Escherichia.s__Escherichia_coli	4.4363267593
+UniRef50_Q87F08: Anhydro-N-acetylmuramic acid kinase	9.5503407685
+UniRef50_Q87F08: Anhydro-N-acetylmuramic acid kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.5503407685
+UniRef50_Q8CRA3	9.5427838726
+UniRef50_Q8CRA3|g__Staphylococcus.s__Staphylococcus_epidermidis	7.9636490295
+UniRef50_Q8CRA3|unclassified	1.5791348431
+UniRef50_D4HEV8	9.5404994759
+UniRef50_D4HEV8|g__Propionibacterium.s__Propionibacterium_acnes	8.6224283985
+UniRef50_D4HEV8|unclassified	0.9180710773
+UniRef50_Q02H49	9.5380098096
+UniRef50_Q02H49|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.5380098096
+UniRef50_A3PHB8: Glycoside hydrolase, family 16	9.5371226607
+UniRef50_A3PHB8: Glycoside hydrolase, family 16|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.5371226607
+UniRef50_X2I3A5: Biotin--protein ligase	9.5357478792
+UniRef50_X2I3A5: Biotin--protein ligase|g__Helicobacter.s__Helicobacter_pylori	9.5357478792
+UniRef50_W1MTL3	9.5258871338
+UniRef50_W1MTL3|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.5258871338
+UniRef50_F4M4X4	9.5251122244
+UniRef50_F4M4X4|g__Escherichia.s__Escherichia_coli	9.5251122244
+UniRef50_B3AI74	9.5238095238
+UniRef50_B3AI74|unclassified	9.5238095238
+UniRef50_B7NUM7	9.5238095238
+UniRef50_B7NUM7|g__Escherichia.s__Escherichia_coli	9.5238095238
+UniRef50_D0ZSZ0	9.5238095238
+UniRef50_D0ZSZ0|g__Escherichia.s__Escherichia_coli	9.5238095238
+UniRef50_D9RCV7	9.5238095238
+UniRef50_D9RCV7|g__Staphylococcus.s__Staphylococcus_aureus	9.5238095238
+UniRef50_F4MBL7	9.5238095238
+UniRef50_F4MBL7|unclassified	9.5238095238
+UniRef50_G4PP48	9.5238095238
+UniRef50_G4PP48|unclassified	9.5238095238
+UniRef50_H3WVV9	9.5238095238
+UniRef50_H3WVV9|unclassified	9.5238095238
+UniRef50_Q6A8H6: Guanylate kinase	9.5238095238
+UniRef50_Q6A8H6: Guanylate kinase|g__Propionibacterium.s__Propionibacterium_acnes	9.5238095238
+UniRef50_F5LXA3: Glycosyl transferase family protein	9.5197708692
+UniRef50_F5LXA3: Glycosyl transferase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.5197708692
+UniRef50_E5QW86	9.5175708731
+UniRef50_E5QW86|g__Staphylococcus.s__Staphylococcus_aureus	7.3529411765
+UniRef50_E5QW86|unclassified	2.1646296967
+UniRef50_Q6D178: 23S rRNA (uracil(1939)-C(5))-methyltransferase RlmD	9.5143539613
+UniRef50_Q6D178: 23S rRNA (uracil(1939)-C(5))-methyltransferase RlmD|g__Escherichia.s__Escherichia_coli	9.5143539613
+UniRef50_Q54433: Probable phosphopantothenoylcysteine decarboxylase	9.5143458415
+UniRef50_Q54433: Probable phosphopantothenoylcysteine decarboxylase|g__Streptococcus.s__Streptococcus_mutans	7.4982168093
+UniRef50_Q54433: Probable phosphopantothenoylcysteine decarboxylase|g__Streptococcus.s__Streptococcus_agalactiae	2.0161290323
+UniRef50_H0PUC5: Two-component heavy metal response transcriptional regulator, winged helix family	9.5127346102
+UniRef50_H0PUC5: Two-component heavy metal response transcriptional regulator, winged helix family|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8309178744
+UniRef50_H0PUC5: Two-component heavy metal response transcriptional regulator, winged helix family|g__Acinetobacter.s__Acinetobacter_baumannii	4.6818167358
+UniRef50_A0A033LNC5: Plasmid recombination enzyme type 3 (Fragment)	9.5082802303
+UniRef50_A0A033LNC5: Plasmid recombination enzyme type 3 (Fragment)|unclassified	9.5082802303
+UniRef50_A3L8X2	9.5053550196
+UniRef50_A3L8X2|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.5053550196
+UniRef50_I6SZZ6: Glutathione synthase	9.5043272923
+UniRef50_I6SZZ6: Glutathione synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.5043272923
+UniRef50_P96704	9.4983738852
+UniRef50_P96704|g__Clostridium.s__Clostridium_beijerinckii	9.4983738852
+UniRef50_P33913	9.4980755066
+UniRef50_P33913|g__Escherichia.s__Escherichia_coli	9.4980755066
+UniRef50_A8J9D2: Predicted protein (Fragment)	9.4959625740
+UniRef50_A8J9D2: Predicted protein (Fragment)|unclassified	9.4959625740
+UniRef50_A0A024HFG1	9.4945979970
+UniRef50_A0A024HFG1|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.4945979970
+UniRef50_G4LLH9	9.4935176582
+UniRef50_G4LLH9|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.4935176582
+UniRef50_J2ERM5: Lipid A biosynthesis lauroyl acyltransferase, putative	9.4894084874
+UniRef50_J2ERM5: Lipid A biosynthesis lauroyl acyltransferase, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.4894084874
+UniRef50_UPI00016B0688: hypothetical protein	9.4818820875
+UniRef50_UPI00016B0688: hypothetical protein|unclassified	9.4818820875
+UniRef50_F2ABU0	9.4799710937
+UniRef50_F2ABU0|unclassified	9.4799710937
+UniRef50_R8A0V4	9.4788858940
+UniRef50_R8A0V4|g__Staphylococcus.s__Staphylococcus_epidermidis	9.4788858940
+UniRef50_V2I2I6: L-dehydroascorbate transporter large permease subunit	9.4781174911
+UniRef50_V2I2I6: L-dehydroascorbate transporter large permease subunit|unclassified	9.4781174911
+UniRef50_A5UNE2: Lipopolysaccharide cholinephosphotransferase, LicD family	9.4778464153
+UniRef50_A5UNE2: Lipopolysaccharide cholinephosphotransferase, LicD family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.4778464153
+UniRef50_P32155: Fructose-like phosphotransferase enzyme IIA component	9.4772100133
+UniRef50_P32155: Fructose-like phosphotransferase enzyme IIA component|g__Escherichia.s__Escherichia_coli	9.4772100133
+UniRef50_A1KAD0: GTPase Obg	9.4771335763
+UniRef50_A1KAD0: GTPase Obg|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.4771335763
+UniRef50_L1K929	9.4752285746
+UniRef50_L1K929|unclassified	9.4752285746
+UniRef50_P31448	9.4725628707
+UniRef50_P31448|g__Escherichia.s__Escherichia_coli	9.4725628707
+UniRef50_E2ZSY7: Putative transcriptional regulator	9.4712546739
+UniRef50_E2ZSY7: Putative transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.1265800780
+UniRef50_E2ZSY7: Putative transcriptional regulator|unclassified	0.3446745959
+UniRef50_J5L949: Carboxynorspermidine decarboxylase (Fragment)	9.4711998716
+UniRef50_J5L949: Carboxynorspermidine decarboxylase (Fragment)|unclassified	9.4711998716
+UniRef50_L9BSL0: Penicillin-binding protein activator LpoA	9.4705892083
+UniRef50_L9BSL0: Penicillin-binding protein activator LpoA|g__Escherichia.s__Escherichia_coli	9.4705892083
+UniRef50_A7GHG0: CBS domain protein	9.4685400343
+UniRef50_A7GHG0: CBS domain protein|g__Clostridium.s__Clostridium_beijerinckii	9.4685400343
+UniRef50_B7UZP4	9.4680561350
+UniRef50_B7UZP4|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.4680561350
+UniRef50_Q3HKJ4	9.4657195175
+UniRef50_Q3HKJ4|unclassified	9.4657195175
+UniRef50_G7LZT7	9.4645915594
+UniRef50_G7LZT7|g__Clostridium.s__Clostridium_beijerinckii	9.4645915594
+UniRef50_I6S279: Flagellar hook-associated protein FlgL	9.4611376741
+UniRef50_I6S279: Flagellar hook-associated protein FlgL|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.4611376741
+UniRef50_P20580: Anthranilate synthase component 1	9.4606047343
+UniRef50_P20580: Anthranilate synthase component 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.8869184734
+UniRef50_P20580: Anthranilate synthase component 1|unclassified	0.5736862609
+UniRef50_A0A024EDR3: Malonate decarboxylase, alpha subunit	9.4564128732
+UniRef50_A0A024EDR3: Malonate decarboxylase, alpha subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.4564128732
+UniRef50_P97056: Protein RnfH	9.4532074690
+UniRef50_P97056: Protein RnfH|unclassified	9.4532074690
+UniRef50_A3PPU7: ATPase associated with various cellular activities, AAA_5	9.4525266324
+UniRef50_A3PPU7: ATPase associated with various cellular activities, AAA_5|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.4525266324
+UniRef50_A3PIV4	9.4511722090
+UniRef50_A3PIV4|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.4511722090
+UniRef50_Q9CGS5: Single-stranded DNA-binding protein 1	9.4506891476
+UniRef50_Q9CGS5: Single-stranded DNA-binding protein 1|g__Staphylococcus.s__Staphylococcus_aureus	9.4506891476
+UniRef50_T9G0U0: General secretion pathway protein G	9.4493544345
+UniRef50_T9G0U0: General secretion pathway protein G|g__Escherichia.s__Escherichia_coli	9.4493544345
+UniRef50_F7IWE7	9.4490094490
+UniRef50_F7IWE7|g__Streptococcus.s__Streptococcus_agalactiae	9.4490094490
+UniRef50_S5VB68: Extracellular solute-binding protein family 1	9.4487799942
+UniRef50_S5VB68: Extracellular solute-binding protein family 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.4487799942
+UniRef50_B9KNT8	9.4442091734
+UniRef50_B9KNT8|unclassified	9.4442091734
+UniRef50_U5VKS0: 6-pyruvoyl-tetrahydropterin synthase	9.4418075904
+UniRef50_U5VKS0: 6-pyruvoyl-tetrahydropterin synthase|unclassified	9.4418075904
+UniRef50_K4VY87	9.4415248953
+UniRef50_K4VY87|g__Escherichia.s__Escherichia_coli	9.4415248953
+UniRef50_E1VH08: Exodeoxyribonuclease III	9.4366500027
+UniRef50_E1VH08: Exodeoxyribonuclease III|g__Neisseria.s__Neisseria_meningitidis	9.4366500027
+UniRef50_S4X6Z0	9.4358517859
+UniRef50_S4X6Z0|g__Staphylococcus.s__Staphylococcus_aureus	9.4358517859
+UniRef50_M9RZ40: Transport protein	9.4351643070
+UniRef50_M9RZ40: Transport protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.4351643070
+UniRef50_UPI0003696CB7: hypothetical protein	9.4344438585
+UniRef50_UPI0003696CB7: hypothetical protein|unclassified	9.4344438585
+UniRef50_A6LY09: RNA polymerase, sigma-24 subunit, ECF subfamily	9.4339622642
+UniRef50_A6LY09: RNA polymerase, sigma-24 subunit, ECF subfamily|g__Clostridium.s__Clostridium_beijerinckii	9.4339622642
+UniRef50_A9M410	9.4339622642
+UniRef50_A9M410|g__Neisseria.s__Neisseria_meningitidis	9.4339622642
+UniRef50_E6A0A1	9.4339622642
+UniRef50_E6A0A1|unclassified	9.4339622642
+UniRef50_H4N972: GlpQ domain protein	9.4339622642
+UniRef50_H4N972: GlpQ domain protein|unclassified	9.4339622642
+UniRef50_I0C3P7	9.4339622642
+UniRef50_I0C3P7|unclassified	9.4339622642
+UniRef50_Q8CLW0	9.4339622642
+UniRef50_Q8CLW0|unclassified	9.4339622642
+UniRef50_W1EXI9	9.4339622642
+UniRef50_W1EXI9|g__Escherichia.s__Escherichia_coli	9.4339622642
+UniRef50_Y2T1Y6	9.4339622642
+UniRef50_Y2T1Y6|unclassified	9.4339622642
+UniRef50_D6UDQ3: Tandem lipoprotein	9.4291589558
+UniRef50_D6UDQ3: Tandem lipoprotein|unclassified	9.4291589558
+UniRef50_B7V041: Glycine-glutamate dipeptide porin OpdP	9.4244961498
+UniRef50_B7V041: Glycine-glutamate dipeptide porin OpdP|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.4244961498
+UniRef50_P36566: Protein SmtA	9.4166751715
+UniRef50_P36566: Protein SmtA|g__Escherichia.s__Escherichia_coli	9.4166751715
+UniRef50_P33642: Probable D-amino acid oxidase PA4548	9.4149422194
+UniRef50_P33642: Probable D-amino acid oxidase PA4548|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.4149422194
+UniRef50_UPI00046B0A68: hypothetical protein	9.4135116315
+UniRef50_UPI00046B0A68: hypothetical protein|unclassified	9.4135116315
+UniRef50_D9PXM6: Predicted serine/threonine protein kinase	9.4118532104
+UniRef50_D9PXM6: Predicted serine/threonine protein kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.4118532104
+UniRef50_A6UAR8	9.4036041673
+UniRef50_A6UAR8|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.3831142120
+UniRef50_A6UAR8|unclassified	1.0204899553
+UniRef50_Q75SP7: (R)-stereoselective amidase	9.4034576654
+UniRef50_Q75SP7: (R)-stereoselective amidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.4034576654
+UniRef50_W1WM64	9.4002026359
+UniRef50_W1WM64|unclassified	9.4002026359
+UniRef50_R4R862: Sensor protein RstB	9.3996854234
+UniRef50_R4R862: Sensor protein RstB|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.3996854234
+UniRef50_M1MML8	9.3933660513
+UniRef50_M1MML8|g__Clostridium.s__Clostridium_beijerinckii	9.3933660513
+UniRef50_UPI00037DEAAC: hypothetical protein	9.3918283940
+UniRef50_UPI00037DEAAC: hypothetical protein|unclassified	9.3918283940
+UniRef50_J9ZMG3: Sulfatase	9.3898933932
+UniRef50_J9ZMG3: Sulfatase|g__Escherichia.s__Escherichia_coli	9.3898933932
+UniRef50_D4HEK1: Bacterial type II secretion system domain protein F	9.3877509990
+UniRef50_D4HEK1: Bacterial type II secretion system domain protein F|g__Propionibacterium.s__Propionibacterium_acnes	9.3877509990
+UniRef50_A3PQ02: Phage protein, HK97 gp10 family	9.3837715530
+UniRef50_A3PQ02: Phage protein, HK97 gp10 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.3837715530
+UniRef50_P27297: Protein bax	9.3832931526
+UniRef50_P27297: Protein bax|g__Escherichia.s__Escherichia_coli	9.3832931526
+UniRef50_F7ZII7	9.3821606373
+UniRef50_F7ZII7|unclassified	9.3821606373
+UniRef50_A3PMS2: Chromosome partition protein Smc	9.3820447550
+UniRef50_A3PMS2: Chromosome partition protein Smc|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.3820447550
+UniRef50_P76180: Inner membrane protein YdgK	9.3809606381
+UniRef50_P76180: Inner membrane protein YdgK|g__Escherichia.s__Escherichia_coli	9.3809606381
+UniRef50_Q2W3H7	9.3809195784
+UniRef50_Q2W3H7|unclassified	9.3809195784
+UniRef50_D7FSA3	9.3776811391
+UniRef50_D7FSA3|unclassified	9.3776811391
+UniRef50_A0K1X4: 30S ribosomal protein S14	9.3744709666
+UniRef50_A0K1X4: 30S ribosomal protein S14|g__Staphylococcus.s__Staphylococcus_aureus	5.5865921788
+UniRef50_A0K1X4: 30S ribosomal protein S14|g__Staphylococcus.s__Staphylococcus_epidermidis	3.7878787879
+UniRef50_F2D7Z8: Predicted protein	9.3728477417
+UniRef50_F2D7Z8: Predicted protein|unclassified	9.3728477417
+UniRef50_A5ULY1: Photosynthetic reaction centre cytoplasmic domain containing protein	9.3724326643
+UniRef50_A5ULY1: Photosynthetic reaction centre cytoplasmic domain containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.3724326643
+UniRef50_Q98P17: Mll9648 protein	9.3718468424
+UniRef50_Q98P17: Mll9648 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.3718468424
+UniRef50_P0AF42: Inner membrane protein YijD	9.3709838641
+UniRef50_P0AF42: Inner membrane protein YijD|g__Escherichia.s__Escherichia_coli	9.3709838641
+UniRef50_R7PTS8	9.3709066561
+UniRef50_R7PTS8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.3709066561
+UniRef50_Q6LP67: Putative reductase PBPRA2527	9.3697842314
+UniRef50_Q6LP67: Putative reductase PBPRA2527|g__Clostridium.s__Clostridium_beijerinckii	9.3697842314
+UniRef50_Q9RYR2: Extracellular solute-binding protein, family 5	9.3685388622
+UniRef50_Q9RYR2: Extracellular solute-binding protein, family 5|g__Deinococcus.s__Deinococcus_radiodurans	9.3685388622
+UniRef50_B5XNE4: 3-dehydroquinate dehydratase	9.3660652667
+UniRef50_B5XNE4: 3-dehydroquinate dehydratase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.3660652667
+UniRef50_Q8X9A9: Succinate dehydrogenase hydrophobic membrane anchor subunit	9.3653100293
+UniRef50_Q8X9A9: Succinate dehydrogenase hydrophobic membrane anchor subunit|g__Escherichia.s__Escherichia_coli	7.0062171210
+UniRef50_Q8X9A9: Succinate dehydrogenase hydrophobic membrane anchor subunit|unclassified	2.3590929083
+UniRef50_A6M1S5: Transcriptional regulator, AraC family	9.3651082434
+UniRef50_A6M1S5: Transcriptional regulator, AraC family|g__Clostridium.s__Clostridium_beijerinckii	9.3651082434
+UniRef50_M3XCX3	9.3645744610
+UniRef50_M3XCX3|unclassified	9.3645744610
+UniRef50_UPI00036F8D63: acriflavine resistance protein B, partial	9.3644838588
+UniRef50_UPI00036F8D63: acriflavine resistance protein B, partial|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7058613211
+UniRef50_UPI00036F8D63: acriflavine resistance protein B, partial|g__Escherichia.s__Escherichia_coli	3.6306496765
+UniRef50_UPI00036F8D63: acriflavine resistance protein B, partial|unclassified	0.0279728612
+UniRef50_L1FLT9: Putative permease perM (Fragment)	9.3636578399
+UniRef50_L1FLT9: Putative permease perM (Fragment)|g__Escherichia.s__Escherichia_coli	9.3636578399
+UniRef50_P40695: Phospholipase C accessory protein PlcR	9.3632958801
+UniRef50_P40695: Phospholipase C accessory protein PlcR|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.3632958801
+UniRef50_UPI00037740DE: hypothetical protein	9.3619352304
+UniRef50_UPI00037740DE: hypothetical protein|unclassified	9.3619352304
+UniRef50_Q6FDP2	9.3574163765
+UniRef50_Q6FDP2|g__Acinetobacter.s__Acinetobacter_baumannii	9.3574163765
+UniRef50_E4RAI6: Choline/carnitine/betaine transporter	9.3551289565
+UniRef50_E4RAI6: Choline/carnitine/betaine transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3277539926
+UniRef50_E4RAI6: Choline/carnitine/betaine transporter|g__Acinetobacter.s__Acinetobacter_baumannii	2.0273749639
+UniRef50_A5UJQ1	9.3502238499
+UniRef50_A5UJQ1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.3502238499
+UniRef50_D3E3M3: RNA-binding protein	9.3479340293
+UniRef50_D3E3M3: RNA-binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.3479340293
+UniRef50_J9UUZ1	9.3476144109
+UniRef50_J9UUZ1|g__Staphylococcus.s__Staphylococcus_aureus	9.3476144109
+UniRef50_A0A024L4D8: (Acyl-carrier-protein) S-malonyltransferase-like protein	9.3457943925
+UniRef50_A0A024L4D8: (Acyl-carrier-protein) S-malonyltransferase-like protein|g__Escherichia.s__Escherichia_coli	9.3457943925
+UniRef50_A5ISW1	9.3457943925
+UniRef50_A5ISW1|g__Staphylococcus.s__Staphylococcus_aureus	9.3457943925
+UniRef50_A8Z2N7	9.3457943925
+UniRef50_A8Z2N7|g__Staphylococcus.s__Staphylococcus_aureus	9.3457943925
+UniRef50_D7GDA9	9.3457943925
+UniRef50_D7GDA9|g__Propionibacterium.s__Propionibacterium_acnes	9.3457943925
+UniRef50_J9UCI2	9.3457943925
+UniRef50_J9UCI2|g__Staphylococcus.s__Staphylococcus_aureus	9.3457943925
+UniRef50_Q7M7C0: Biopolymer transport exbD transmembrane protein	9.3457943925
+UniRef50_Q7M7C0: Biopolymer transport exbD transmembrane protein|g__Acinetobacter.s__Acinetobacter_baumannii	9.3457943925
+UniRef50_Q9HVI1: Cyclic diguanosine monophosphate-binding protein PA4608	9.3457943925
+UniRef50_Q9HVI1: Cyclic diguanosine monophosphate-binding protein PA4608|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.3457943925
+UniRef50_T5XGM7	9.3457943925
+UniRef50_T5XGM7|unclassified	9.3457943925
+UniRef50_U5UT50	9.3457943925
+UniRef50_U5UT50|g__Staphylococcus.s__Staphylococcus_epidermidis	9.3457943925
+UniRef50_X5K1E3	9.3457943925
+UniRef50_X5K1E3|g__Streptococcus.s__Streptococcus_agalactiae	9.3457943925
+UniRef50_V6MSF0	9.3457407133
+UniRef50_V6MSF0|unclassified	9.3457407133
+UniRef50_R6G3H3: FAD binding domain protein	9.3444030711
+UniRef50_R6G3H3: FAD binding domain protein|g__Clostridium.s__Clostridium_beijerinckii	9.3444030711
+UniRef50_V5SW31: Protein AmbD	9.3431773590
+UniRef50_V5SW31: Protein AmbD|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.3431773590
+UniRef50_Q97L15: Permease	9.3403832163
+UniRef50_Q97L15: Permease|g__Clostridium.s__Clostridium_beijerinckii	9.3403832163
+UniRef50_P44874: Acetate CoA-transferase subunit beta	9.3385886347
+UniRef50_P44874: Acetate CoA-transferase subunit beta|g__Escherichia.s__Escherichia_coli	8.9894923005
+UniRef50_P44874: Acetate CoA-transferase subunit beta|unclassified	0.3490963343
+UniRef50_B6ZTT1: Outer membrane usher protein fimD homolog	9.3375603006
+UniRef50_B6ZTT1: Outer membrane usher protein fimD homolog|g__Escherichia.s__Escherichia_coli	9.3375603006
+UniRef50_I4K6K6: Glutamate/aspartate periplasmic-binding protein, GltI family	9.3323073637
+UniRef50_I4K6K6: Glutamate/aspartate periplasmic-binding protein, GltI family|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.3323073637
+UniRef50_C3MH15: FAD dependent oxidoreductase	9.3311822264
+UniRef50_C3MH15: FAD dependent oxidoreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.3311822264
+UniRef50_B9KWB3	9.3303986395
+UniRef50_B9KWB3|unclassified	9.3303986395
+UniRef50_E4RCX8: Crc	9.3258487192
+UniRef50_E4RCX8: Crc|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.3258487192
+UniRef50_I7CFF2: Methionine aminopeptidase	9.3256059512
+UniRef50_I7CFF2: Methionine aminopeptidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.3256059512
+UniRef50_T2DXA7	9.3251761216
+UniRef50_T2DXA7|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4516129032
+UniRef50_T2DXA7|unclassified	2.8735632184
+UniRef50_A3MAB2: Resolvase	9.3241902790
+UniRef50_A3MAB2: Resolvase|g__Acinetobacter.s__Acinetobacter_baumannii	9.3241902790
+UniRef50_Q5HP95	9.3196112064
+UniRef50_Q5HP95|g__Staphylococcus.s__Staphylococcus_epidermidis	9.3196112064
+UniRef50_A4WQC6	9.3193527539
+UniRef50_A4WQC6|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.5788114097
+UniRef50_A4WQC6|unclassified	3.7405413442
+UniRef50_J7M136: Competence protein	9.3172347473
+UniRef50_J7M136: Competence protein|g__Streptococcus.s__Streptococcus_mutans	9.3172347473
+UniRef50_UPI000373AEE1: hypothetical protein	9.3169424161
+UniRef50_UPI000373AEE1: hypothetical protein|g__Escherichia.s__Escherichia_coli	9.3169424161
+UniRef50_R9SIT6	9.3113877521
+UniRef50_R9SIT6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.3113877521
+UniRef50_Q3KF35: Glutamate--tRNA ligase	9.3092321788
+UniRef50_Q3KF35: Glutamate--tRNA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.6367372225
+UniRef50_Q3KF35: Glutamate--tRNA ligase|g__Acinetobacter.s__Acinetobacter_baumannii	0.6724949563
+UniRef50_I3UWF3: Rieske domain-containing protein	9.3056326383
+UniRef50_I3UWF3: Rieske domain-containing protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.3056326383
+UniRef50_Q87UP6: Polyphosphate kinase	9.3010593437
+UniRef50_Q87UP6: Polyphosphate kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1812628303
+UniRef50_Q87UP6: Polyphosphate kinase|g__Acinetobacter.s__Acinetobacter_baumannii	0.6172839506
+UniRef50_Q87UP6: Polyphosphate kinase|g__Neisseria.s__Neisseria_meningitidis	0.5025125628
+UniRef50_Q5HRW1	9.2991689770
+UniRef50_Q5HRW1|g__Staphylococcus.s__Staphylococcus_epidermidis	6.5359477124
+UniRef50_Q5HRW1|unclassified	2.7632212646
+UniRef50_Q8RQL9: Isocitrate dehydrogenase [NADP]	9.2957747394
+UniRef50_Q8RQL9: Isocitrate dehydrogenase [NADP]|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.9193864681
+UniRef50_Q8RQL9: Isocitrate dehydrogenase [NADP]|unclassified	0.3763882713
+UniRef50_UPI00016AA163: hypothetical protein	9.2955060876
+UniRef50_UPI00016AA163: hypothetical protein|unclassified	9.2955060876
+UniRef50_M9RRB9: Transglycosylase SLT-like protein	9.2949403599
+UniRef50_M9RRB9: Transglycosylase SLT-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.1040250982
+UniRef50_M9RRB9: Transglycosylase SLT-like protein|unclassified	0.1909152617
+UniRef50_C5BM48: Ethanolamine ammonia-lyase, large subunit	9.2917161882
+UniRef50_C5BM48: Ethanolamine ammonia-lyase, large subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2917161882
+UniRef50_P0AF81: UPF0719 inner membrane protein YjfL	9.2892214694
+UniRef50_P0AF81: UPF0719 inner membrane protein YjfL|g__Escherichia.s__Escherichia_coli	9.2892214694
+UniRef50_D1BKQ4: H+/gluconate symporter family protein	9.2890978250
+UniRef50_D1BKQ4: H+/gluconate symporter family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2890978250
+UniRef50_Q9RZE7: Probable chromosome 2-partitioning protein ParB	9.2872621923
+UniRef50_Q9RZE7: Probable chromosome 2-partitioning protein ParB|g__Deinococcus.s__Deinococcus_radiodurans	9.2872621923
+UniRef50_V5ST79	9.2868707334
+UniRef50_V5ST79|unclassified	6.0048331495
+UniRef50_V5ST79|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2820375839
+UniRef50_P23101: Toluate 1,2-dioxygenase electron transfer component	9.2864237650
+UniRef50_P23101: Toluate 1,2-dioxygenase electron transfer component|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.1089081647
+UniRef50_P23101: Toluate 1,2-dioxygenase electron transfer component|unclassified	0.1775156003
+UniRef50_Q9I6M4: 5-aminovalerate aminotransferase DavT	9.2857557220
+UniRef50_Q9I6M4: 5-aminovalerate aminotransferase DavT|g__Acinetobacter.s__Acinetobacter_baumannii	4.4951917977
+UniRef50_Q9I6M4: 5-aminovalerate aminotransferase DavT|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1570186039
+UniRef50_Q9I6M4: 5-aminovalerate aminotransferase DavT|unclassified	0.6335453204
+UniRef50_G7M9G8: Signal peptidase I	9.2841631303
+UniRef50_G7M9G8: Signal peptidase I|g__Clostridium.s__Clostridium_beijerinckii	9.2841631303
+UniRef50_P95646: Anthranilate synthase component 1	9.2818149517
+UniRef50_P95646: Anthranilate synthase component 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.7559893189
+UniRef50_P95646: Anthranilate synthase component 1|unclassified	0.5258256328
+UniRef50_S4X6I5: Bifunctional autolysin	9.2809740644
+UniRef50_S4X6I5: Bifunctional autolysin|g__Staphylococcus.s__Staphylococcus_aureus	9.2809740644
+UniRef50_R9SME8	9.2791476931
+UniRef50_R9SME8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.2791476931
+UniRef50_B9K4A6: Non-homologous end joining protein Ku	9.2772537197
+UniRef50_B9K4A6: Non-homologous end joining protein Ku|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.2772537197
+UniRef50_Q3J523	9.2771003794
+UniRef50_Q3J523|unclassified	9.2771003794
+UniRef50_G7SEB9	9.2755998008
+UniRef50_G7SEB9|g__Streptococcus.s__Streptococcus_agalactiae	9.2755998008
+UniRef50_F8LS47	9.2735441101
+UniRef50_F8LS47|g__Streptococcus.s__Streptococcus_mutans	9.2735441101
+UniRef50_H8L8P6: PTS system, mannose/fructose/sorbose-specific IID component	9.2722139800
+UniRef50_H8L8P6: PTS system, mannose/fructose/sorbose-specific IID component|g__Clostridium.s__Clostridium_beijerinckii	9.2722139800
+UniRef50_W9EH11	9.2690977652
+UniRef50_W9EH11|g__Staphylococcus.s__Staphylococcus_aureus	9.1743119266
+UniRef50_W9EH11|unclassified	0.0947858386
+UniRef50_U6A8L3: Sigma factor PvdS, controling pyoverdin biosynthesis	9.2686499887
+UniRef50_U6A8L3: Sigma factor PvdS, controling pyoverdin biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2686499887
+UniRef50_Q1CXY2	9.2685180066
+UniRef50_Q1CXY2|unclassified	9.2685180066
+UniRef50_Q48708: Glutaredoxin-like protein NrdH	9.2664092664
+UniRef50_Q48708: Glutaredoxin-like protein NrdH|g__Streptococcus.s__Streptococcus_mutans	4.7619047619
+UniRef50_Q48708: Glutaredoxin-like protein NrdH|g__Streptococcus.s__Streptococcus_agalactiae	4.5045045045
+UniRef50_UPI000374F5C0: hypothetical protein	9.2656110307
+UniRef50_UPI000374F5C0: hypothetical protein|unclassified	9.2656110307
+UniRef50_UPI000255867E: 2-oxoglutarate dehydrogenase E1 component, partial	9.2647164083
+UniRef50_UPI000255867E: 2-oxoglutarate dehydrogenase E1 component, partial|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2647164083
+UniRef50_I3UHD0: Spermidine/putrescine ABC transporter ATPase	9.2613845484
+UniRef50_I3UHD0: Spermidine/putrescine ABC transporter ATPase|unclassified	9.2613845484
+UniRef50_E2ZRQ9	9.2602399936
+UniRef50_E2ZRQ9|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2602399936
+UniRef50_A4EPP0	9.2596293537
+UniRef50_A4EPP0|unclassified	9.2596293537
+UniRef50_A7X475: Truncated map-w protein	9.2592592593
+UniRef50_A7X475: Truncated map-w protein|g__Staphylococcus.s__Staphylococcus_aureus	9.2592592593
+UniRef50_C5R0D9	9.2592592593
+UniRef50_C5R0D9|unclassified	9.2592592593
+UniRef50_D2JE17	9.2592592593
+UniRef50_D2JE17|unclassified	9.2592592593
+UniRef50_E2ZTP4	9.2592592593
+UniRef50_E2ZTP4|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2592592593
+UniRef50_G5PBY0	9.2592592593
+UniRef50_G5PBY0|unclassified	9.2592592593
+UniRef50_H3ZUW1: Pyridine nucleotide-disulfide oxidoreductase	9.2592592593
+UniRef50_H3ZUW1: Pyridine nucleotide-disulfide oxidoreductase|g__Staphylococcus.s__Staphylococcus_aureus	9.2592592593
+UniRef50_I0VM54	9.2592592593
+UniRef50_I0VM54|unclassified	9.2592592593
+UniRef50_Q8CQH1: Type I restriction enzyme R protein	9.2592592593
+UniRef50_Q8CQH1: Type I restriction enzyme R protein|g__Staphylococcus.s__Staphylococcus_epidermidis	9.2592592593
+UniRef50_U6A9U4: tRNA-specific adenosine deaminase	9.2592592593
+UniRef50_U6A9U4: tRNA-specific adenosine deaminase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2592592593
+UniRef50_K0KB39: Acyl-CoA dehydrogenase domain protein	9.2538598753
+UniRef50_K0KB39: Acyl-CoA dehydrogenase domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2538598753
+UniRef50_B9AGA9	9.2507105653
+UniRef50_B9AGA9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.7221799871
+UniRef50_B9AGA9|unclassified	3.5285305782
+UniRef50_A7INL3: Integration host factor subunit alpha	9.2504930966
+UniRef50_A7INL3: Integration host factor subunit alpha|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.2504930966
+UniRef50_T9KFG8: Phage protein	9.2496882213
+UniRef50_T9KFG8: Phage protein|g__Escherichia.s__Escherichia_coli	9.2496882213
+UniRef50_P37903: Universal stress protein F	9.2485919099
+UniRef50_P37903: Universal stress protein F|g__Escherichia.s__Escherichia_coli	9.2485919099
+UniRef50_F7ZEB4: TatD family deoxyribonuclease	9.2484522531
+UniRef50_F7ZEB4: TatD family deoxyribonuclease|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.2484522531
+UniRef50_UPI00047132A1: nitrogen regulatory protein P-II 1	9.2444014723
+UniRef50_UPI00047132A1: nitrogen regulatory protein P-II 1|unclassified	9.2444014723
+UniRef50_A6M0C5: Metallophosphoesterase	9.2428797523
+UniRef50_A6M0C5: Metallophosphoesterase|g__Clostridium.s__Clostridium_beijerinckii	9.2428797523
+UniRef50_C5AQC0: DNA helicase, ATP-dependent resolution of Holliday junctions, branch migration	9.2417238902
+UniRef50_C5AQC0: DNA helicase, ATP-dependent resolution of Holliday junctions, branch migration|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.2417238902
+UniRef50_F8H1K8: Chemotaxis transducer	9.2404635799
+UniRef50_F8H1K8: Chemotaxis transducer|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2404635799
+UniRef50_A7X5H4	9.2385268017
+UniRef50_A7X5H4|g__Staphylococcus.s__Staphylococcus_aureus	8.9285714286
+UniRef50_A7X5H4|unclassified	0.3099553731
+UniRef50_W8V3S7	9.2383221737
+UniRef50_W8V3S7|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2383221737
+UniRef50_D3E3R8: Carbohydrate kinase PfkB family	9.2371303294
+UniRef50_D3E3R8: Carbohydrate kinase PfkB family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.2371303294
+UniRef50_K1BX53: Iron-sulfur protein (Fragment)	9.2370262658
+UniRef50_K1BX53: Iron-sulfur protein (Fragment)|unclassified	9.2370262658
+UniRef50_W6M682	9.2369372807
+UniRef50_W6M682|unclassified	9.2369372807
+UniRef50_K9NRT8: GntR family transcriptional regulator	9.2364397183
+UniRef50_K9NRT8: GntR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2364397183
+UniRef50_D5BS31: Sigma54 specific transcriptional regulator, fis family	9.2362089007
+UniRef50_D5BS31: Sigma54 specific transcriptional regulator, fis family|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.2362089007
+UniRef50_A5ULP7	9.2350481339
+UniRef50_A5ULP7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.2350481339
+UniRef50_R4KE37	9.2297724771
+UniRef50_R4KE37|g__Clostridium.s__Clostridium_beijerinckii	9.2297724771
+UniRef50_Q9I656	9.2280140144
+UniRef50_Q9I656|unclassified	9.2280140144
+UniRef50_G7IR91	9.2247108591
+UniRef50_G7IR91|unclassified	9.2247108591
+UniRef50_M9KGL8: Alpha/beta hydrolase family protein	9.2234253529
+UniRef50_M9KGL8: Alpha/beta hydrolase family protein|g__Escherichia.s__Escherichia_coli	9.2234253529
+UniRef50_UPI000469E933: hypothetical protein	9.2164210252
+UniRef50_UPI000469E933: hypothetical protein|unclassified	9.2164210252
+UniRef50_Q893C4: Dipeptide transport ATP-binding protein dppD	9.2147842917
+UniRef50_Q893C4: Dipeptide transport ATP-binding protein dppD|g__Streptococcus.s__Streptococcus_agalactiae	9.2147842917
+UniRef50_A5IUJ0: SirA family protein	9.2147165238
+UniRef50_A5IUJ0: SirA family protein|g__Staphylococcus.s__Staphylococcus_aureus	6.9930069930
+UniRef50_A5IUJ0: SirA family protein|unclassified	2.2217095308
+UniRef50_Q18BQ3: UPF0271 protein CD630_13840	9.2134060963
+UniRef50_Q18BQ3: UPF0271 protein CD630_13840|g__Clostridium.s__Clostridium_beijerinckii	9.2134060963
+UniRef50_A5F9H5: Glutaminase	9.2121737875
+UniRef50_A5F9H5: Glutaminase|g__Escherichia.s__Escherichia_coli	9.2121737875
+UniRef50_P31049: Probable fatty acid methyltransferase	9.2047455827
+UniRef50_P31049: Probable fatty acid methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.2047455827
+UniRef50_W1XV86	9.2045776958
+UniRef50_W1XV86|unclassified	9.2045776958
+UniRef50_A6LWS8: TPR repeat-containing protein	9.2043358468
+UniRef50_A6LWS8: TPR repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	9.2043358468
+UniRef50_K7RW43: NifK (Fragment)	9.2020494724
+UniRef50_K7RW43: NifK (Fragment)|unclassified	9.2020494724
+UniRef50_A5UJA1	9.2010591026
+UniRef50_A5UJA1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.9334854064
+UniRef50_A5UJA1|unclassified	2.2675736961
+UniRef50_V3AA34: Inner membrane metabolite transporter ydjE	9.2004703116
+UniRef50_V3AA34: Inner membrane metabolite transporter ydjE|g__Escherichia.s__Escherichia_coli	9.2004703116
+UniRef50_A6LUC6: HIRAN	9.1996901002
+UniRef50_A6LUC6: HIRAN|g__Clostridium.s__Clostridium_beijerinckii	9.1996901002
+UniRef50_Q5GWV4: 50S ribosomal protein L15	9.1958396753
+UniRef50_Q5GWV4: 50S ribosomal protein L15|g__Escherichia.s__Escherichia_coli	9.1958396753
+UniRef50_UPI000255AEF1: 30S ribosomal protein S3, partial	9.1881841922
+UniRef50_UPI000255AEF1: 30S ribosomal protein S3, partial|unclassified	9.1881841922
+UniRef50_Q9RSL1: 30S ribosomal protein S5	9.1875965146
+UniRef50_Q9RSL1: 30S ribosomal protein S5|g__Deinococcus.s__Deinococcus_radiodurans	9.1875965146
+UniRef50_UPI0000164CD9: putative transposase	9.1843613077
+UniRef50_UPI0000164CD9: putative transposase|g__Deinococcus.s__Deinococcus_radiodurans	9.1843613077
+UniRef50_P44528: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase	9.1796449244
+UniRef50_P44528: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase|g__Escherichia.s__Escherichia_coli	9.0071716753
+UniRef50_P44528: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase|unclassified	0.1724732492
+UniRef50_G4LKP1: AraC family transcriptional regulator	9.1793644917
+UniRef50_G4LKP1: AraC family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.1793644917
+UniRef50_A4WYR0	9.1782053877
+UniRef50_A4WYR0|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.1782053877
+UniRef50_G7M904: Protein FdhD homolog	9.1780397015
+UniRef50_G7M904: Protein FdhD homolog|g__Clostridium.s__Clostridium_beijerinckii	9.1780397015
+UniRef50_Q8KA69: DNA-binding protein HU	9.1774017008
+UniRef50_Q8KA69: DNA-binding protein HU|g__Streptococcus.s__Streptococcus_mutans	9.1774017008
+UniRef50_D3RSC1: Channel protein, hemolysin III family	9.1760496685
+UniRef50_D3RSC1: Channel protein, hemolysin III family|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.1760496685
+UniRef50_A0A022NED0	9.1743119266
+UniRef50_A0A022NED0|unclassified	9.1743119266
+UniRef50_A1B9G9	9.1743119266
+UniRef50_A1B9G9|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.1743119266
+UniRef50_A4XZK1	9.1743119266
+UniRef50_A4XZK1|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.1743119266
+UniRef50_D4HEV4	9.1743119266
+UniRef50_D4HEV4|g__Propionibacterium.s__Propionibacterium_acnes	9.1743119266
+UniRef50_K5HVD5	9.1743119266
+UniRef50_K5HVD5|g__Escherichia.s__Escherichia_coli	9.1743119266
+UniRef50_K9IGA0: Putative secreted protein	9.1743119266
+UniRef50_K9IGA0: Putative secreted protein|unclassified	9.1743119266
+UniRef50_L1K6E2	9.1743119266
+UniRef50_L1K6E2|unclassified	9.1743119266
+UniRef50_Q0ZKJ6	9.1743119266
+UniRef50_Q0ZKJ6|unclassified	9.1743119266
+UniRef50_Q1LF99: Transcriptional regulator, BadM/Rrf2 family	9.1743119266
+UniRef50_Q1LF99: Transcriptional regulator, BadM/Rrf2 family|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.1743119266
+UniRef50_Q5GV64: SugE protein	9.1743119266
+UniRef50_Q5GV64: SugE protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.1743119266
+UniRef50_Q9RTF4	9.1743119266
+UniRef50_Q9RTF4|g__Deinococcus.s__Deinococcus_radiodurans	9.1743119266
+UniRef50_W9EVU2	9.1743119266
+UniRef50_W9EVU2|unclassified	9.1743119266
+UniRef50_J3JP50	9.1708186593
+UniRef50_J3JP50|g__Streptococcus.s__Streptococcus_mutans	9.1708186593
+UniRef50_P52125	9.1701232469
+UniRef50_P52125|g__Escherichia.s__Escherichia_coli	9.1701232469
+UniRef50_E4PKD1: Adenylate/guanylate cyclase	9.1686676531
+UniRef50_E4PKD1: Adenylate/guanylate cyclase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.1686676531
+UniRef50_M5FCM6	9.1680618233
+UniRef50_M5FCM6|unclassified	9.1680618233
+UniRef50_B7I2L4: Colicin V producing membrane protein	9.1673032850
+UniRef50_B7I2L4: Colicin V producing membrane protein|g__Acinetobacter.s__Acinetobacter_baumannii	9.1673032850
+UniRef50_H4UHR1: K(+)/H(+) antiporter NhaP2	9.1617016271
+UniRef50_H4UHR1: K(+)/H(+) antiporter NhaP2|g__Escherichia.s__Escherichia_coli	9.1617016271
+UniRef50_G7U731	9.1611656874
+UniRef50_G7U731|g__Propionibacterium.s__Propionibacterium_acnes	9.1611656874
+UniRef50_P0ABH6: Rod shape-determining protein MreD	9.1595122068
+UniRef50_P0ABH6: Rod shape-determining protein MreD|g__Escherichia.s__Escherichia_coli	9.1595122068
+UniRef50_M4QXM9: Tetraacyldisaccharide 4'-kinase	9.1589733598
+UniRef50_M4QXM9: Tetraacyldisaccharide 4'-kinase|g__Acinetobacter.s__Acinetobacter_baumannii	9.1589733598
+UniRef50_P0AAY2: Biofilm regulator BssR	9.1555938320
+UniRef50_P0AAY2: Biofilm regulator BssR|g__Escherichia.s__Escherichia_coli	9.1555938320
+UniRef50_U6FTM4	9.1527111220
+UniRef50_U6FTM4|unclassified	9.1527111220
+UniRef50_UPI000367F7CA: hypothetical protein	9.1519041052
+UniRef50_UPI000367F7CA: hypothetical protein|unclassified	9.1519041052
+UniRef50_P23862: Primosomal replication protein N''	9.1470906108
+UniRef50_P23862: Primosomal replication protein N''|g__Escherichia.s__Escherichia_coli	9.1470906108
+UniRef50_R4RP03	9.1462748194
+UniRef50_R4RP03|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.4259621011
+UniRef50_R4RP03|unclassified	0.7203127183
+UniRef50_Q887V6: Protein CysZ homolog	9.1445852659
+UniRef50_Q887V6: Protein CysZ homolog|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.1445852659
+UniRef50_E6YL73	9.1438033912
+UniRef50_E6YL73|unclassified	9.1438033912
+UniRef50_S1SCM6: Short-chain dehydrogenase/reductase SDR	9.1427195653
+UniRef50_S1SCM6: Short-chain dehydrogenase/reductase SDR|g__Acinetobacter.s__Acinetobacter_baumannii	9.1427195653
+UniRef50_E6W7Q1: Spore coat U domain protein	9.1419499681
+UniRef50_E6W7Q1: Spore coat U domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.1419499681
+UniRef50_P75770: Inner membrane protein YbhN	9.1374344686
+UniRef50_P75770: Inner membrane protein YbhN|g__Escherichia.s__Escherichia_coli	9.1374344686
+UniRef50_P76578	9.1345763186
+UniRef50_P76578|g__Escherichia.s__Escherichia_coli	9.1345763186
+UniRef50_P0ABV0: Protein TolQ	9.1331941721
+UniRef50_P0ABV0: Protein TolQ|g__Escherichia.s__Escherichia_coli	9.1331941721
+UniRef50_Q9HT80: DNA polymerase I	9.1311321477
+UniRef50_Q9HT80: DNA polymerase I|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.0001659820
+UniRef50_Q9HT80: DNA polymerase I|unclassified	0.1309661657
+UniRef50_B9KRP5	9.1282312545
+UniRef50_B9KRP5|unclassified	9.1282312545
+UniRef50_D9UDJ1: Predicted protein	9.1258373855
+UniRef50_D9UDJ1: Predicted protein|unclassified	9.1258373855
+UniRef50_Q2S8X6	9.1194219118
+UniRef50_Q2S8X6|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.1194219118
+UniRef50_S6AS38	9.1181784095
+UniRef50_S6AS38|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.1181784095
+UniRef50_B9KWD2: Quinol oxidase subunit II	9.1154702494
+UniRef50_B9KWD2: Quinol oxidase subunit II|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.1154702494
+UniRef50_S1K712: IS605 OrfB family transposase	9.1153027186
+UniRef50_S1K712: IS605 OrfB family transposase|g__Escherichia.s__Escherichia_coli	9.1153027186
+UniRef50_D6LVU4: Predicted protein	9.1115583443
+UniRef50_D6LVU4: Predicted protein|g__Staphylococcus.s__Staphylococcus_aureus	6.8027210884
+UniRef50_D6LVU4: Predicted protein|unclassified	2.3088372559
+UniRef50_Q8SDX0: Anti-repressor	9.1103262070
+UniRef50_Q8SDX0: Anti-repressor|g__Staphylococcus.s__Staphylococcus_aureus	9.1103262070
+UniRef50_A0A022NVZ1	9.1083359482
+UniRef50_A0A022NVZ1|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.0175855820
+UniRef50_A0A022NVZ1|unclassified	0.0907503662
+UniRef50_D2UWK2: Probable membrane protein	9.1064402568
+UniRef50_D2UWK2: Probable membrane protein|g__Staphylococcus.s__Staphylococcus_aureus	9.1064402568
+UniRef50_Q16DG2: Flagellar hook-basal body complex protein FliE	9.1022980856
+UniRef50_Q16DG2: Flagellar hook-basal body complex protein FliE|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.1022980856
+UniRef50_Q6FA84	9.1008445107
+UniRef50_Q6FA84|g__Acinetobacter.s__Acinetobacter_baumannii	9.1008445107
+UniRef50_A0A017LCS6: Radical SAM superfamily protein	9.0938532683
+UniRef50_A0A017LCS6: Radical SAM superfamily protein|g__Escherichia.s__Escherichia_coli	9.0938532683
+UniRef50_Q2NH93	9.0910506079
+UniRef50_Q2NH93|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.0910506079
+UniRef50_B2UVS5: Purine nucleoside phosphorylase	9.0909090909
+UniRef50_B2UVS5: Purine nucleoside phosphorylase|g__Helicobacter.s__Helicobacter_pylori	9.0909090909
+UniRef50_C1CKL8: Conjugative transposon membrane protein	9.0909090909
+UniRef50_C1CKL8: Conjugative transposon membrane protein|g__Streptococcus.s__Streptococcus_agalactiae	9.0909090909
+UniRef50_E2PIJ4	9.0909090909
+UniRef50_E2PIJ4|unclassified	9.0909090909
+UniRef50_F9LIP5: Conserved domain protein	9.0909090909
+UniRef50_F9LIP5: Conserved domain protein|unclassified	9.0909090909
+UniRef50_Q0SNB1: 50S ribosomal protein L33	9.0909090909
+UniRef50_Q0SNB1: 50S ribosomal protein L33|g__Staphylococcus.s__Staphylococcus_aureus	9.0909090909
+UniRef50_V0AJL5	9.0909090909
+UniRef50_V0AJL5|g__Escherichia.s__Escherichia_coli	9.0909090909
+UniRef50_Z8QPJ5	9.0909090909
+UniRef50_Z8QPJ5|unclassified	9.0909090909
+UniRef50_Q834F4: UPF0122 protein EF_1701	9.0909090909
+UniRef50_Q834F4: UPF0122 protein EF_1701|g__Streptococcus.s__Streptococcus_mutans	9.0909090909
+UniRef50_UPI0003C7C8AC: hypothetical protein	9.0882198429
+UniRef50_UPI0003C7C8AC: hypothetical protein|unclassified	9.0882198429
+UniRef50_R7PTW1	9.0860979670
+UniRef50_R7PTW1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.0860979670
+UniRef50_L7WZX4	9.0831397571
+UniRef50_L7WZX4|unclassified	9.0831397571
+UniRef50_E6Z1E3	9.0786724177
+UniRef50_E6Z1E3|unclassified	9.0786724177
+UniRef50_A0A018SUI5: Glutathione ABC transporter substrate-binding protein GsiB	9.0714706628
+UniRef50_A0A018SUI5: Glutathione ABC transporter substrate-binding protein GsiB|unclassified	9.0714706628
+UniRef50_A1WV96: 50S ribosomal protein L17	9.0693257360
+UniRef50_A1WV96: 50S ribosomal protein L17|g__Acinetobacter.s__Acinetobacter_baumannii	5.9829059829
+UniRef50_A1WV96: 50S ribosomal protein L17|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0864197531
+UniRef50_A6T4V9: H(+)/Cl(-) exchange transporter ClcA	9.0658796689
+UniRef50_A6T4V9: H(+)/Cl(-) exchange transporter ClcA|g__Escherichia.s__Escherichia_coli	9.0658796689
+UniRef50_P28905: DNA polymerase III subunit chi	9.0651645273
+UniRef50_P28905: DNA polymerase III subunit chi|g__Escherichia.s__Escherichia_coli	9.0651645273
+UniRef50_B2TKG9	9.0637788830
+UniRef50_B2TKG9|g__Clostridium.s__Clostridium_beijerinckii	9.0637788830
+UniRef50_UPI000468F174: hypothetical protein	9.0631408264
+UniRef50_UPI000468F174: hypothetical protein|unclassified	9.0631408264
+UniRef50_Q8XDS6: Leucine efflux protein	9.0618271082
+UniRef50_Q8XDS6: Leucine efflux protein|g__Escherichia.s__Escherichia_coli	9.0618271082
+UniRef50_Q1GI98: Glutamate-ammonia-ligase adenylyltransferase	9.0613796380
+UniRef50_Q1GI98: Glutamate-ammonia-ligase adenylyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.0613796380
+UniRef50_P0AC51: Zinc uptake regulation protein	9.0609042222
+UniRef50_P0AC51: Zinc uptake regulation protein|g__Escherichia.s__Escherichia_coli	9.0609042222
+UniRef50_R5J2P0: HTH-type transcriptional regulator GmuR	9.0603861415
+UniRef50_R5J2P0: HTH-type transcriptional regulator GmuR|g__Clostridium.s__Clostridium_beijerinckii	9.0603861415
+UniRef50_F6A8J6: Flagellar hook-basal body protein	9.0561299866
+UniRef50_F6A8J6: Flagellar hook-basal body protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.0561299866
+UniRef50_Q9HXH7	9.0552826748
+UniRef50_Q9HXH7|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.0552826748
+UniRef50_G7D6B1	9.0529746893
+UniRef50_G7D6B1|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.0172459819
+UniRef50_G7D6B1|unclassified	0.0357287074
+UniRef50_P0A6M3: Disulfide bond formation protein B	9.0510366826
+UniRef50_P0A6M3: Disulfide bond formation protein B|g__Escherichia.s__Escherichia_coli	9.0510366826
+UniRef50_Q57936	9.0494363293
+UniRef50_Q57936|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.0494363293
+UniRef50_X6J7G6	9.0486958428
+UniRef50_X6J7G6|unclassified	9.0486958428
+UniRef50_P0AEE1: Protein DcrB	9.0462519962
+UniRef50_P0AEE1: Protein DcrB|g__Escherichia.s__Escherichia_coli	9.0462519962
+UniRef50_U4Q8Z1: Endonuclease III	9.0410565362
+UniRef50_U4Q8Z1: Endonuclease III|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.0410565362
+UniRef50_UPI0000379465: hypothetical protein	9.0392490292
+UniRef50_UPI0000379465: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.7548505388
+UniRef50_UPI0000379465: hypothetical protein|unclassified	1.2843984904
+UniRef50_Q2KZM3: Integration host factor subunit alpha	9.0390486903
+UniRef50_Q2KZM3: Integration host factor subunit alpha|g__Escherichia.s__Escherichia_coli	9.0390486903
+UniRef50_K1CPP9	9.0388238057
+UniRef50_K1CPP9|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.0388238057
+UniRef50_E2ZT41	9.0381627964
+UniRef50_E2ZT41|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.0381627964
+UniRef50_F9KIP1: Conserved domain protein	9.0363236431
+UniRef50_F9KIP1: Conserved domain protein|g__Staphylococcus.s__Staphylococcus_aureus	9.0363236431
+UniRef50_R4Z9R0: Cell surface protein	9.0338585067
+UniRef50_R4Z9R0: Cell surface protein|g__Streptococcus.s__Streptococcus_agalactiae	9.0338585067
+UniRef50_I4Y2D8	9.0335096179
+UniRef50_I4Y2D8|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.0335096179
+UniRef50_K1YUS3	9.0316004077
+UniRef50_K1YUS3|unclassified	9.0316004077
+UniRef50_Q0SA63: Flavin binding monooxygenase	9.0314024412
+UniRef50_Q0SA63: Flavin binding monooxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.0314024412
+UniRef50_A4VMN5: Flagellar protein FliJ	9.0293453725
+UniRef50_A4VMN5: Flagellar protein FliJ|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.0293453725
+UniRef50_T2DYY9: Bacterial type II and III secretion system family protein	9.0256403819
+UniRef50_T2DYY9: Bacterial type II and III secretion system family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.0256403819
+UniRef50_UPI000037946D: hypothetical protein	9.0191878291
+UniRef50_UPI000037946D: hypothetical protein|unclassified	9.0191878291
+UniRef50_UPI00035EA225: hypothetical protein, partial	9.0181221891
+UniRef50_UPI00035EA225: hypothetical protein, partial|unclassified	9.0181221891
+UniRef50_F8EUQ1: Nitrogen fixation protein NifX	9.0168137056
+UniRef50_F8EUQ1: Nitrogen fixation protein NifX|g__Rhodobacter.s__Rhodobacter_sphaeroides	9.0168137056
+UniRef50_A5W7R4: Regulatory inactivation of DnaA Hda protein	9.0140971806
+UniRef50_A5W7R4: Regulatory inactivation of DnaA Hda protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	9.0140971806
+UniRef50_N9SZZ6: Lytic murein endotransglycosylase E (Fragment)	9.0138308678
+UniRef50_N9SZZ6: Lytic murein endotransglycosylase E (Fragment)|unclassified	9.0138308678
+UniRef50_K5VC32: DbpA RNA binding domain protein	9.0113943822
+UniRef50_K5VC32: DbpA RNA binding domain protein|unclassified	9.0113943822
+UniRef50_A7ZKE3	9.0091918106
+UniRef50_A7ZKE3|g__Escherichia.s__Escherichia_coli	9.0091918106
+UniRef50_D4FIK5	9.0090090090
+UniRef50_D4FIK5|unclassified	9.0090090090
+UniRef50_D6T204	9.0090090090
+UniRef50_D6T204|unclassified	9.0090090090
+UniRef50_F4M827	9.0090090090
+UniRef50_F4M827|g__Escherichia.s__Escherichia_coli	9.0090090090
+UniRef50_H4EIZ6	9.0090090090
+UniRef50_H4EIZ6|g__Staphylococcus.s__Staphylococcus_aureus	9.0090090090
+UniRef50_I0C7X1	9.0090090090
+UniRef50_I0C7X1|g__Staphylococcus.s__Staphylococcus_aureus	9.0090090090
+UniRef50_J9UZM4	9.0090090090
+UniRef50_J9UZM4|g__Staphylococcus.s__Staphylococcus_aureus	9.0090090090
+UniRef50_R9SMQ9: 4Fe-4S ferredoxin iron-sulfur binding domain-containing protein	9.0090090090
+UniRef50_R9SMQ9: 4Fe-4S ferredoxin iron-sulfur binding domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	9.0090090090
+UniRef50_V6E432	9.0090090090
+UniRef50_V6E432|unclassified	9.0090090090
+UniRef50_UPI000374D9EC: hypothetical protein	9.0090090090
+UniRef50_UPI000374D9EC: hypothetical protein|unclassified	9.0090090090
+UniRef50_G5Q502: Cytochrome c heme lyase subunit CcmF	9.0087807401
+UniRef50_G5Q502: Cytochrome c heme lyase subunit CcmF|g__Escherichia.s__Escherichia_coli	9.0087807401
+UniRef50_UPI000369E51E: hypothetical protein, partial	9.0062591991
+UniRef50_UPI000369E51E: hypothetical protein, partial|g__Staphylococcus.s__Staphylococcus_aureus	6.3291139241
+UniRef50_UPI000369E51E: hypothetical protein, partial|unclassified	2.6771452751
+UniRef50_UPI0003641125: hypothetical protein	9.0023303860
+UniRef50_UPI0003641125: hypothetical protein|unclassified	9.0023303860
+UniRef50_P75968	9.0011969604
+UniRef50_P75968|g__Escherichia.s__Escherichia_coli	9.0011969604
+UniRef50_G2LAK5: Short chain dehydrogenase	8.9997587336
+UniRef50_G2LAK5: Short chain dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.9997587336
+UniRef50_Q97EW9: Ribonuclease M5	8.9992870568
+UniRef50_Q97EW9: Ribonuclease M5|g__Clostridium.s__Clostridium_beijerinckii	8.9992870568
+UniRef50_H9K4S9	8.9990009990
+UniRef50_H9K4S9|unclassified	8.9990009990
+UniRef50_A6QK43	8.9986054136
+UniRef50_A6QK43|unclassified	8.9986054136
+UniRef50_X5E7Z5	8.9983688670
+UniRef50_X5E7Z5|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.9983688670
+UniRef50_A6LTZ1	8.9955714357
+UniRef50_A6LTZ1|g__Clostridium.s__Clostridium_beijerinckii	8.9955714357
+UniRef50_Q46890: Putative aldolase class 2 protein YgbL	8.9944838531
+UniRef50_Q46890: Putative aldolase class 2 protein YgbL|g__Escherichia.s__Escherichia_coli	8.9944838531
+UniRef50_Q0TQG4: Porphobilinogen deaminase	8.9930749049
+UniRef50_Q0TQG4: Porphobilinogen deaminase|g__Clostridium.s__Clostridium_beijerinckii	8.9930749049
+UniRef50_E3A1T0	8.9921561438
+UniRef50_E3A1T0|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.9921561438
+UniRef50_Q3AEQ2: 3-isopropylmalate dehydrogenase	8.9921169442
+UniRef50_Q3AEQ2: 3-isopropylmalate dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	5.2816397166
+UniRef50_Q3AEQ2: 3-isopropylmalate dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2009915391
+UniRef50_Q3AEQ2: 3-isopropylmalate dehydrogenase|unclassified	0.5094856885
+UniRef50_P63747: Ethanolamine utilization protein EutS	8.9910806329
+UniRef50_P63747: Ethanolamine utilization protein EutS|g__Escherichia.s__Escherichia_coli	8.9910806329
+UniRef50_A6LVF9: Response regulator receiver and SARP domain protein	8.9894061829
+UniRef50_A6LVF9: Response regulator receiver and SARP domain protein|g__Clostridium.s__Clostridium_beijerinckii	8.9894061829
+UniRef50_Q8NWI4	8.9891725921
+UniRef50_Q8NWI4|g__Staphylococcus.s__Staphylococcus_aureus	8.9891725921
+UniRef50_E8SJB9	8.9888094372
+UniRef50_E8SJB9|g__Staphylococcus.s__Staphylococcus_aureus	8.9888094372
+UniRef50_G3XN37	8.9832420238
+UniRef50_G3XN37|g__Propionibacterium.s__Propionibacterium_acnes	8.9832420238
+UniRef50_P71296	8.9823181214
+UniRef50_P71296|g__Escherichia.s__Escherichia_coli	8.9823181214
+UniRef50_Q9I0H4: Flavohemoprotein	8.9820045417
+UniRef50_Q9I0H4: Flavohemoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.9820045417
+UniRef50_D2JD00	8.9764077183
+UniRef50_D2JD00|unclassified	8.9764077183
+UniRef50_X5E2D7	8.9710421209
+UniRef50_X5E2D7|g__Staphylococcus.s__Staphylococcus_aureus	7.8125000000
+UniRef50_X5E2D7|unclassified	1.1585421209
+UniRef50_P20576: Anthranilate synthase component 2	8.9705265938
+UniRef50_P20576: Anthranilate synthase component 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.6688004894
+UniRef50_P20576: Anthranilate synthase component 2|unclassified	0.3017261044
+UniRef50_UPI00046C9E3D: acetyltransferase	8.9695595478
+UniRef50_UPI00046C9E3D: acetyltransferase|unclassified	8.9695595478
+UniRef50_P0AEL2: Formate dehydrogenase, cytochrome b556(fdo) subunit	8.9674087385
+UniRef50_P0AEL2: Formate dehydrogenase, cytochrome b556(fdo) subunit|g__Escherichia.s__Escherichia_coli	8.9674087385
+UniRef50_P0A2T5: Multiple antibiotic resistance protein MarR	8.9667277167
+UniRef50_P0A2T5: Multiple antibiotic resistance protein MarR|g__Escherichia.s__Escherichia_coli	8.9667277167
+UniRef50_A6LZA0	8.9656808673
+UniRef50_A6LZA0|g__Clostridium.s__Clostridium_beijerinckii	8.9656808673
+UniRef50_Q1GKC1: L-threonine aldolase	8.9655117637
+UniRef50_Q1GKC1: L-threonine aldolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.9655117637
+UniRef50_A5ZJT5	8.9614572227
+UniRef50_A5ZJT5|unclassified	8.9614572227
+UniRef50_F0Y525	8.9581690740
+UniRef50_F0Y525|unclassified	8.9581690740
+UniRef50_Q83EL0: Chaperone protein HtpG	8.9549529698
+UniRef50_Q83EL0: Chaperone protein HtpG|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.9549529698
+UniRef50_UPI0001BF5ACC: hypothetical protein SMAC_10820, partial	8.9548574233
+UniRef50_UPI0001BF5ACC: hypothetical protein SMAC_10820, partial|unclassified	8.9548574233
+UniRef50_Q6FF72	8.9484021366
+UniRef50_Q6FF72|g__Acinetobacter.s__Acinetobacter_baumannii	8.9484021366
+UniRef50_Q14K07: ATP synthase gamma chain	8.9467372201
+UniRef50_Q14K07: ATP synthase gamma chain|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.9467372201
+UniRef50_A6LYU1: Phage-related protein	8.9442587526
+UniRef50_A6LYU1: Phage-related protein|g__Clostridium.s__Clostridium_beijerinckii	8.9442587526
+UniRef50_I1P669	8.9434337903
+UniRef50_I1P669|unclassified	8.9434337903
+UniRef50_O83296: Protein Soj homolog	8.9425008621
+UniRef50_O83296: Protein Soj homolog|g__Clostridium.s__Clostridium_beijerinckii	8.9425008621
+UniRef50_Q8CUE5	8.9410483611
+UniRef50_Q8CUE5|unclassified	8.9410483611
+UniRef50_K0LUK3	8.9370126933
+UniRef50_K0LUK3|g__Staphylococcus.s__Staphylococcus_aureus	6.2500000000
+UniRef50_K0LUK3|unclassified	2.6870126933
+UniRef50_A6M2R3: Signal peptidase I	8.9355268614
+UniRef50_A6M2R3: Signal peptidase I|g__Clostridium.s__Clostridium_beijerinckii	8.9355268614
+UniRef50_UPI00030757DD: antibiotic biosynthesis monooxygenase	8.9310977683
+UniRef50_UPI00030757DD: antibiotic biosynthesis monooxygenase|unclassified	8.9310977683
+UniRef50_K0MYC6: N-acetylgalactosamine-specific phosphotransferase enzyme IIB component 2	8.9290720493
+UniRef50_K0MYC6: N-acetylgalactosamine-specific phosphotransferase enzyme IIB component 2|g__Streptococcus.s__Streptococcus_agalactiae	8.9290720493
+UniRef50_Q89GJ0: ABC transporter permease protein	8.9286115383
+UniRef50_Q89GJ0: ABC transporter permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.9286115383
+UniRef50_A5UMZ0: Preprotein translocase subunit SecG	8.9285714286
+UniRef50_A5UMZ0: Preprotein translocase subunit SecG|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.9285714286
+UniRef50_C4ZBU2: 50S ribosomal protein L36	8.9285714286
+UniRef50_C4ZBU2: 50S ribosomal protein L36|g__Staphylococcus.s__Staphylococcus_aureus	8.9285714286
+UniRef50_I1BDB7	8.9285714286
+UniRef50_I1BDB7|unclassified	8.9285714286
+UniRef50_J1AK75	8.9285714286
+UniRef50_J1AK75|g__Staphylococcus.s__Staphylococcus_epidermidis	8.9285714286
+UniRef50_M7DA69	8.9285714286
+UniRef50_M7DA69|g__Streptococcus.s__Streptococcus_mutans	8.9285714286
+UniRef50_Q8CU30	8.9285714286
+UniRef50_Q8CU30|unclassified	8.9285714286
+UniRef50_U4KCQ5: Isoleucine--tRNA ligase	8.9276086533
+UniRef50_U4KCQ5: Isoleucine--tRNA ligase|g__Escherichia.s__Escherichia_coli	8.9276086533
+UniRef50_A6V4W0	8.9273689274
+UniRef50_A6V4W0|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.9273689274
+UniRef50_S4X4D7	8.9261615577
+UniRef50_S4X4D7|g__Staphylococcus.s__Staphylococcus_aureus	8.9261615577
+UniRef50_UPI0003D32881: hypothetical protein	8.9204956892
+UniRef50_UPI0003D32881: hypothetical protein|unclassified	8.9204956892
+UniRef50_K0ELU4: ABC transporter-like protein	8.9198216395
+UniRef50_K0ELU4: ABC transporter-like protein|g__Streptococcus.s__Streptococcus_agalactiae	8.9198216395
+UniRef50_D0JET7: Sodium/serine (Threonine) transporter	8.9142702603
+UniRef50_D0JET7: Sodium/serine (Threonine) transporter|g__Escherichia.s__Escherichia_coli	8.9142702603
+UniRef50_UPI0001C396B6: Zn-ribbon protein, possibly nucleic acid-binding	8.9123737634
+UniRef50_UPI0001C396B6: Zn-ribbon protein, possibly nucleic acid-binding|unclassified	8.9123737634
+UniRef50_V5SSA5	8.9099600196
+UniRef50_V5SSA5|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7497076854
+UniRef50_V5SSA5|unclassified	1.1602523341
+UniRef50_M4TFL9: Protein lysine acetyltransferase	8.9085724784
+UniRef50_M4TFL9: Protein lysine acetyltransferase|g__Escherichia.s__Escherichia_coli	8.9085724784
+UniRef50_Q48EI9	8.9083319581
+UniRef50_Q48EI9|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.9083319581
+UniRef50_A6LQV8: Phosphomannomutase	8.9018193963
+UniRef50_A6LQV8: Phosphomannomutase|g__Clostridium.s__Clostridium_beijerinckii	8.9018193963
+UniRef50_A0A017HKI1	8.8992015451
+UniRef50_A0A017HKI1|unclassified	8.8992015451
+UniRef50_M4X5S3: Type 4 fimbrial biogenesis protein PilO	8.8963679568
+UniRef50_M4X5S3: Type 4 fimbrial biogenesis protein PilO|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.5810031260
+UniRef50_M4X5S3: Type 4 fimbrial biogenesis protein PilO|unclassified	0.3153648307
+UniRef50_D5AM34: Phosphohistidine phosphatase	8.8943048435
+UniRef50_D5AM34: Phosphohistidine phosphatase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.8943048435
+UniRef50_P22983: Pyruvate, phosphate dikinase	8.8931374247
+UniRef50_P22983: Pyruvate, phosphate dikinase|g__Clostridium.s__Clostridium_beijerinckii	5.9046589870
+UniRef50_P22983: Pyruvate, phosphate dikinase|g__Streptococcus.s__Streptococcus_agalactiae	2.0190851499
+UniRef50_P22983: Pyruvate, phosphate dikinase|g__Propionibacterium.s__Propionibacterium_acnes	0.9045170239
+UniRef50_P22983: Pyruvate, phosphate dikinase|unclassified	0.0648762639
+UniRef50_T1BQ81: ISRSO5-transposase protein (Fragment)	8.8909008834
+UniRef50_T1BQ81: ISRSO5-transposase protein (Fragment)|unclassified	8.8909008834
+UniRef50_T1ATE5	8.8908411050
+UniRef50_T1ATE5|unclassified	8.8908411050
+UniRef50_I6TYV1: Phage-associated cell wall hydrolase	8.8888888889
+UniRef50_I6TYV1: Phage-associated cell wall hydrolase|g__Streptococcus.s__Streptococcus_mutans	8.8888888889
+UniRef50_A3PG71: Multi-sensor hybrid histidine kinase	8.8869707605
+UniRef50_A3PG71: Multi-sensor hybrid histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.8869707605
+UniRef50_P76344: Metal-binding protein ZinT	8.8862189619
+UniRef50_P76344: Metal-binding protein ZinT|g__Escherichia.s__Escherichia_coli	8.8862189619
+UniRef50_A0RA50: Alcohol dehydrogenase, zinc-containing protein	8.8843912041
+UniRef50_A0RA50: Alcohol dehydrogenase, zinc-containing protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.8843912041
+UniRef50_P13794: Outer membrane porin F	8.8843482547
+UniRef50_P13794: Outer membrane porin F|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.8843482547
+UniRef50_UPI0001BF5D71: hypothetical protein SMAC_11478, partial	8.8790014569
+UniRef50_UPI0001BF5D71: hypothetical protein SMAC_11478, partial|unclassified	8.8790014569
+UniRef50_Q82S57: L-sorbosone dehydrogenase	8.8783447183
+UniRef50_Q82S57: L-sorbosone dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.8783447183
+UniRef50_A7GB27: Transcriptional regulator, AraC family	8.8753633072
+UniRef50_A7GB27: Transcriptional regulator, AraC family|g__Clostridium.s__Clostridium_beijerinckii	8.8753633072
+UniRef50_P04825: Aminopeptidase N	8.8752489083
+UniRef50_P04825: Aminopeptidase N|g__Escherichia.s__Escherichia_coli	8.8752489083
+UniRef50_J6CMF8: Sugar ABC transporter permease (Fragment)	8.8739121724
+UniRef50_J6CMF8: Sugar ABC transporter permease (Fragment)|unclassified	8.8739121724
+UniRef50_J3RWH0: WbhQ	8.8727285568
+UniRef50_J3RWH0: WbhQ|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.8727285568
+UniRef50_D5HFR4: Alpha-galactosidase	8.8718301793
+UniRef50_D5HFR4: Alpha-galactosidase|g__Clostridium.s__Clostridium_beijerinckii	8.8718301793
+UniRef50_Q2NYD7: Indole-3-glycerol phosphate synthase	8.8716778495
+UniRef50_Q2NYD7: Indole-3-glycerol phosphate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.6443061352
+UniRef50_Q2NYD7: Indole-3-glycerol phosphate synthase|unclassified	0.2273717143
+UniRef50_A4WPA8	8.8694109698
+UniRef50_A4WPA8|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.2706572260
+UniRef50_A4WPA8|unclassified	2.5987537438
+UniRef50_Q3J328	8.8682679766
+UniRef50_Q3J328|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.3746769325
+UniRef50_Q3J328|unclassified	0.4935910440
+UniRef50_I4KX43: Permease, YjgP/YjgQ family	8.8667217754
+UniRef50_I4KX43: Permease, YjgP/YjgQ family|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.8667217754
+UniRef50_W8H6K3	8.8655553747
+UniRef50_W8H6K3|unclassified	8.8655553747
+UniRef50_S9SJZ0	8.8649393189
+UniRef50_S9SJZ0|unclassified	8.8649393189
+UniRef50_A6M060: PfkB domain protein	8.8618285267
+UniRef50_A6M060: PfkB domain protein|g__Clostridium.s__Clostridium_beijerinckii	8.8618285267
+UniRef50_Q3J5Y2: Putative transcriptional regulator	8.8591191584
+UniRef50_Q3J5Y2: Putative transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.8591191584
+UniRef50_D5RMQ9	8.8583824672
+UniRef50_D5RMQ9|unclassified	8.8583824672
+UniRef50_Q8VYF5: N-carbamoylputrescine amidase	8.8578882063
+UniRef50_Q8VYF5: N-carbamoylputrescine amidase|g__Deinococcus.s__Deinococcus_radiodurans	8.7281912619
+UniRef50_Q8VYF5: N-carbamoylputrescine amidase|unclassified	0.1296969444
+UniRef50_Q82UZ9: RNA pyrophosphohydrolase	8.8534702152
+UniRef50_Q82UZ9: RNA pyrophosphohydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.8534702152
+UniRef50_A4WZ34	8.8524050417
+UniRef50_A4WZ34|unclassified	8.8524050417
+UniRef50_A6LWW1: GCN5-related N-acetyltransferase	8.8495575221
+UniRef50_A6LWW1: GCN5-related N-acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	8.8495575221
+UniRef50_A8YZJ6	8.8495575221
+UniRef50_A8YZJ6|g__Staphylococcus.s__Staphylococcus_aureus	8.8495575221
+UniRef50_D1QDJ9	8.8495575221
+UniRef50_D1QDJ9|g__Staphylococcus.s__Staphylococcus_aureus	8.8495575221
+UniRef50_D8C335	8.8495575221
+UniRef50_D8C335|unclassified	8.8495575221
+UniRef50_J0XYQ3	8.8495575221
+UniRef50_J0XYQ3|unclassified	8.8495575221
+UniRef50_P0AAM5: Hydrogenase isoenzymes formation protein HypC	8.8495575221
+UniRef50_P0AAM5: Hydrogenase isoenzymes formation protein HypC|g__Escherichia.s__Escherichia_coli	8.8495575221
+UniRef50_P36675: Alternative ribosome-rescue factor A	8.8495575221
+UniRef50_P36675: Alternative ribosome-rescue factor A|g__Escherichia.s__Escherichia_coli	8.8495575221
+UniRef50_R9DCR9	8.8495575221
+UniRef50_R9DCR9|unclassified	8.8495575221
+UniRef50_W8T2L5	8.8495575221
+UniRef50_W8T2L5|g__Escherichia.s__Escherichia_coli	8.8495575221
+UniRef50_UPI000350B839: PREDICTED: rRNA 2''''-O-methyltransferase fibrillarin-like	8.8491698968
+UniRef50_UPI000350B839: PREDICTED: rRNA 2''''-O-methyltransferase fibrillarin-like|unclassified	8.8491698968
+UniRef50_Q88NC4: GDP-mannose 6-dehydrogenase	8.8479080607
+UniRef50_Q88NC4: GDP-mannose 6-dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.8479080607
+UniRef50_A6LUJ9: DegV family protein	8.8450971886
+UniRef50_A6LUJ9: DegV family protein|g__Clostridium.s__Clostridium_beijerinckii	8.8450971886
+UniRef50_A5ULF4: Predicted metal-dependent hydrolase, cyclase family	8.8440898022
+UniRef50_A5ULF4: Predicted metal-dependent hydrolase, cyclase family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.8440898022
+UniRef50_M4X2C4: Vanillate porin OpdK	8.8436277856
+UniRef50_M4X2C4: Vanillate porin OpdK|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.8436277856
+UniRef50_Q9RR73	8.8373148661
+UniRef50_Q9RR73|g__Deinococcus.s__Deinococcus_radiodurans	8.8373148661
+UniRef50_C8UCL7	8.8367832170
+UniRef50_C8UCL7|g__Escherichia.s__Escherichia_coli	8.8367832170
+UniRef50_U5MW40: SpoIIIAH-like protein	8.8348971603
+UniRef50_U5MW40: SpoIIIAH-like protein|g__Clostridium.s__Clostridium_beijerinckii	8.8348971603
+UniRef50_Q3HKM1	8.8331061628
+UniRef50_Q3HKM1|unclassified	8.8331061628
+UniRef50_UPI00046D0275: hypothetical protein	8.8321726295
+UniRef50_UPI00046D0275: hypothetical protein|unclassified	8.8321726295
+UniRef50_A6LY79: Lysine exporter protein (LYSE/YGGA)	8.8315217391
+UniRef50_A6LY79: Lysine exporter protein (LYSE/YGGA)|g__Clostridium.s__Clostridium_beijerinckii	8.8315217391
+UniRef50_W8T2W2	8.8314971930
+UniRef50_W8T2W2|unclassified	8.8314971930
+UniRef50_Q9RUL2	8.8303871149
+UniRef50_Q9RUL2|g__Deinococcus.s__Deinococcus_radiodurans	8.8303871149
+UniRef50_A0A028ZLF9: Aspartyl/glutamyl-tRNA amidotransferase subunit C	8.8293324698
+UniRef50_A0A028ZLF9: Aspartyl/glutamyl-tRNA amidotransferase subunit C|g__Staphylococcus.s__Staphylococcus_epidermidis	8.8293324698
+UniRef50_UPI0003673956: cell division protein FtsL	8.8283114394
+UniRef50_UPI0003673956: cell division protein FtsL|g__Escherichia.s__Escherichia_coli	5.9910668913
+UniRef50_UPI0003673956: cell division protein FtsL|unclassified	2.8372445480
+UniRef50_P16552: Raffinose permease	8.8273963661
+UniRef50_P16552: Raffinose permease|g__Escherichia.s__Escherichia_coli	8.8273963661
+UniRef50_U6ALT5: Ferrichrome-iron receptor	8.8273396829
+UniRef50_U6ALT5: Ferrichrome-iron receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.8273396829
+UniRef50_Q57I24: Small heat shock protein IbpA	8.8251066090
+UniRef50_Q57I24: Small heat shock protein IbpA|g__Escherichia.s__Escherichia_coli	8.8251066090
+UniRef50_A5UJC2: Predicted phosphotransacetylase	8.8231254247
+UniRef50_A5UJC2: Predicted phosphotransacetylase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.8231254247
+UniRef50_A6M1B5	8.8228821435
+UniRef50_A6M1B5|g__Clostridium.s__Clostridium_beijerinckii	8.8228821435
+UniRef50_X2N7H7: Aspartate kinase	8.8205219319
+UniRef50_X2N7H7: Aspartate kinase|g__Escherichia.s__Escherichia_coli	8.8205219319
+UniRef50_A5WE51: Inner membrane peptidase, Serine peptidase, MEROPS family S49	8.8199335238
+UniRef50_A5WE51: Inner membrane peptidase, Serine peptidase, MEROPS family S49|g__Acinetobacter.s__Acinetobacter_baumannii	8.8199335238
+UniRef50_Q3J4Q5: Putative Transcriptional regulator	8.8198158051
+UniRef50_Q3J4Q5: Putative Transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.8198158051
+UniRef50_K0VPT5	8.8148572429
+UniRef50_K0VPT5|unclassified	8.8148572429
+UniRef50_E3A1L8	8.8105203899
+UniRef50_E3A1L8|unclassified	8.8105203899
+UniRef50_G0DTI5: Iron chelate uptake ABC transporter, FeCT family, permease protein	8.8100444546
+UniRef50_G0DTI5: Iron chelate uptake ABC transporter, FeCT family, permease protein|g__Propionibacterium.s__Propionibacterium_acnes	8.8100444546
+UniRef50_H3YRV9	8.8092916761
+UniRef50_H3YRV9|unclassified	8.8092916761
+UniRef50_UPI00037069EF: hypothetical protein	8.8078204747
+UniRef50_UPI00037069EF: hypothetical protein|unclassified	8.8078204747
+UniRef50_A3PQH7	8.8067106315
+UniRef50_A3PQH7|unclassified	8.8067106315
+UniRef50_Q0VN76: PhoH family protein	8.8060901411
+UniRef50_Q0VN76: PhoH family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.8060901411
+UniRef50_P39832: High-affinity zinc uptake system membrane protein ZnuB	8.8000721843
+UniRef50_P39832: High-affinity zinc uptake system membrane protein ZnuB|g__Escherichia.s__Escherichia_coli	8.8000721843
+UniRef50_C9WZF0	8.7968912551
+UniRef50_C9WZF0|g__Neisseria.s__Neisseria_meningitidis	8.7968912551
+UniRef50_B0UIS6: Glutathione S-transferase domain	8.7967368982
+UniRef50_B0UIS6: Glutathione S-transferase domain|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.7967368982
+UniRef50_T2E6Y0: Lysine-arginine-ornithine-binding periplasmic family protein	8.7961645597
+UniRef50_T2E6Y0: Lysine-arginine-ornithine-binding periplasmic family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.7961645597
+UniRef50_Z0M0A2	8.7956301840
+UniRef50_Z0M0A2|unclassified	8.7956301840
+UniRef50_V4R604	8.7952097977
+UniRef50_V4R604|unclassified	8.7952097977
+UniRef50_Q9HZ68: Histidinol-phosphate aminotransferase 2	8.7931526506
+UniRef50_Q9HZ68: Histidinol-phosphate aminotransferase 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.6709826633
+UniRef50_Q9HZ68: Histidinol-phosphate aminotransferase 2|unclassified	0.1221699873
+UniRef50_U2JRM5	8.7914807479
+UniRef50_U2JRM5|unclassified	8.7914807479
+UniRef50_Q9EUJ4: Salmonella enterica serovar Choleraesuis 50k virulence plasmid DNA, complete sequence	8.7895160801
+UniRef50_Q9EUJ4: Salmonella enterica serovar Choleraesuis 50k virulence plasmid DNA, complete sequence|unclassified	8.7895160801
+UniRef50_X8A316	8.7883401849
+UniRef50_X8A316|unclassified	8.7883401849
+UniRef50_Q57466: Flagellar basal-body rod protein FlgC	8.7865273248
+UniRef50_Q57466: Flagellar basal-body rod protein FlgC|g__Clostridium.s__Clostridium_beijerinckii	8.7865273248
+UniRef50_P27843: Inner membrane protein YigG	8.7858167847
+UniRef50_P27843: Inner membrane protein YigG|g__Escherichia.s__Escherichia_coli	8.7858167847
+UniRef50_V7ZGN1: ABC transport system permease protein	8.7839669404
+UniRef50_V7ZGN1: ABC transport system permease protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.7839669404
+UniRef50_A0KKZ8: Fumarate hydratase, class I	8.7804532501
+UniRef50_A0KKZ8: Fumarate hydratase, class I|g__Acinetobacter.s__Acinetobacter_baumannii	5.8125213611
+UniRef50_A0KKZ8: Fumarate hydratase, class I|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2686311897
+UniRef50_A0KKZ8: Fumarate hydratase, class I|g__Neisseria.s__Neisseria_meningitidis	0.6993006993
+UniRef50_S2TB06: Protein chain release factor B (Fragment)	8.7779773825
+UniRef50_S2TB06: Protein chain release factor B (Fragment)|unclassified	8.7779773825
+UniRef50_G8PQM8: FAD dependent oxidoreductase	8.7768357571
+UniRef50_G8PQM8: FAD dependent oxidoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.7768357571
+UniRef50_M2LUH8	8.7734487734
+UniRef50_M2LUH8|g__Streptococcus.s__Streptococcus_mutans	8.7734487734
+UniRef50_A0A019AH37	8.7719298246
+UniRef50_A0A019AH37|unclassified	8.7719298246
+UniRef50_B7LR30	8.7719298246
+UniRef50_B7LR30|unclassified	8.7719298246
+UniRef50_D2JGF5	8.7719298246
+UniRef50_D2JGF5|unclassified	8.7719298246
+UniRef50_G5KKL4	8.7719298246
+UniRef50_G5KKL4|g__Escherichia.s__Escherichia_coli	8.7719298246
+UniRef50_G8RF80	8.7719298246
+UniRef50_G8RF80|g__Staphylococcus.s__Staphylococcus_aureus	8.7719298246
+UniRef50_J9UEZ1	8.7719298246
+UniRef50_J9UEZ1|g__Staphylococcus.s__Staphylococcus_aureus	8.7719298246
+UniRef50_N3T8R5	8.7719298246
+UniRef50_N3T8R5|g__Escherichia.s__Escherichia_coli	8.7719298246
+UniRef50_U6FWH5	8.7719298246
+UniRef50_U6FWH5|unclassified	8.7719298246
+UniRef50_U6ZUB0	8.7719298246
+UniRef50_U6ZUB0|unclassified	8.7719298246
+UniRef50_V4QP84	8.7719298246
+UniRef50_V4QP84|unclassified	8.7719298246
+UniRef50_V9UAC0	8.7719298246
+UniRef50_V9UAC0|unclassified	8.7719298246
+UniRef50_W1XQB6	8.7719298246
+UniRef50_W1XQB6|unclassified	8.7719298246
+UniRef50_Y3BZE7	8.7719298246
+UniRef50_Y3BZE7|unclassified	8.7719298246
+UniRef50_V8RB85: ATP-dependent DNA helicase DinG	8.7719107337
+UniRef50_V8RB85: ATP-dependent DNA helicase DinG|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.7719107337
+UniRef50_B7GYQ7: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	8.7708174756
+UniRef50_B7GYQ7: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|g__Acinetobacter.s__Acinetobacter_baumannii	8.7708174756
+UniRef50_P23621: Phosphate regulon sensor protein PhoR	8.7699468438
+UniRef50_P23621: Phosphate regulon sensor protein PhoR|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.7699468438
+UniRef50_A6LVP9: Phage replisome organizer, putative	8.7698977776
+UniRef50_A6LVP9: Phage replisome organizer, putative|g__Clostridium.s__Clostridium_beijerinckii	8.7698977776
+UniRef50_Q9HT89	8.7696611161
+UniRef50_Q9HT89|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.7696611161
+UniRef50_UPI0003608B72: hypothetical protein	8.7671166550
+UniRef50_UPI0003608B72: hypothetical protein|unclassified	8.7671166550
+UniRef50_J0I8Y3	8.7663945978
+UniRef50_J0I8Y3|unclassified	8.7663945978
+UniRef50_B5XYC7: Isocitrate dehydrogenase kinase/phosphatase	8.7649521862
+UniRef50_B5XYC7: Isocitrate dehydrogenase kinase/phosphatase|g__Escherichia.s__Escherichia_coli	8.7649521862
+UniRef50_D5BQ57	8.7564620070
+UniRef50_D5BQ57|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.7564620070
+UniRef50_UPI00037AACAD: hypothetical protein	8.7562216707
+UniRef50_UPI00037AACAD: hypothetical protein|unclassified	8.7562216707
+UniRef50_O08385: ATP phosphoribosyltransferase	8.7539801918
+UniRef50_O08385: ATP phosphoribosyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.7539801918
+UniRef50_V5XTD8: Periplasmic ribose-binding protein	8.7510844659
+UniRef50_V5XTD8: Periplasmic ribose-binding protein|g__Clostridium.s__Clostridium_beijerinckii	8.7510844659
+UniRef50_Q3J5X4: Integrase/recombinase	8.7510664899
+UniRef50_Q3J5X4: Integrase/recombinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.7510664899
+UniRef50_UPI0001BF5AC8: hypothetical protein SMAC_11201	8.7481942981
+UniRef50_UPI0001BF5AC8: hypothetical protein SMAC_11201|unclassified	8.7481942981
+UniRef50_A6M156	8.7468482753
+UniRef50_A6M156|g__Clostridium.s__Clostridium_beijerinckii	8.7468482753
+UniRef50_Q47AY5: Oxidoreductase FAD/NAD(P)-binding:Oxidoreductase FAD-binding region	8.7457884316
+UniRef50_Q47AY5: Oxidoreductase FAD/NAD(P)-binding:Oxidoreductase FAD-binding region|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.7457884316
+UniRef50_N6U5R6	8.7445086915
+UniRef50_N6U5R6|unclassified	8.7445086915
+UniRef50_J0FRW1	8.7431832957
+UniRef50_J0FRW1|unclassified	8.7431832957
+UniRef50_B9KR70	8.7430605879
+UniRef50_B9KR70|unclassified	8.7430605879
+UniRef50_Q7VK48: GTP cyclohydrolase-2	8.7412358367
+UniRef50_Q7VK48: GTP cyclohydrolase-2|g__Helicobacter.s__Helicobacter_pylori	8.7412358367
+UniRef50_UPI000409C1DE: hypothetical protein	8.7382933952
+UniRef50_UPI000409C1DE: hypothetical protein|unclassified	8.7382933952
+UniRef50_I4WYC3: Aspartyl/asparaginyl beta-hydroxylase-like dioxygenase	8.7368528157
+UniRef50_I4WYC3: Aspartyl/asparaginyl beta-hydroxylase-like dioxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.7368528157
+UniRef50_E8U7S3	8.7252475248
+UniRef50_E8U7S3|g__Deinococcus.s__Deinococcus_radiodurans	8.7252475248
+UniRef50_P25906: Putative oxidoreductase YdbC	8.7248099780
+UniRef50_P25906: Putative oxidoreductase YdbC|g__Escherichia.s__Escherichia_coli	8.7248099780
+UniRef50_A7ZJJ2: Cyclic pyranopterin monophosphate synthase accessory protein	8.7242805365
+UniRef50_A7ZJJ2: Cyclic pyranopterin monophosphate synthase accessory protein|g__Escherichia.s__Escherichia_coli	6.4047735419
+UniRef50_A7ZJJ2: Cyclic pyranopterin monophosphate synthase accessory protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1739130435
+UniRef50_A7ZJJ2: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	0.1455939511
+UniRef50_B7V600	8.7234541448
+UniRef50_B7V600|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.7234541448
+UniRef50_A6UM37	8.7220976543
+UniRef50_A6UM37|unclassified	8.7220976543
+UniRef50_H3UN82	8.7198324674
+UniRef50_H3UN82|unclassified	8.7198324674
+UniRef50_UPI000370CAD4: 50S ribosomal protein L5	8.7189188037
+UniRef50_UPI000370CAD4: 50S ribosomal protein L5|unclassified	8.7189188037
+UniRef50_W8VWJ7	8.7160269706
+UniRef50_W8VWJ7|unclassified	8.7160269706
+UniRef50_Q4L7V6: Holo-[acyl-carrier-protein] synthase	8.7156502917
+UniRef50_Q4L7V6: Holo-[acyl-carrier-protein] synthase|g__Staphylococcus.s__Staphylococcus_epidermidis	8.7156502917
+UniRef50_UPI000371F98A: 50S ribosomal protein L13	8.7156295986
+UniRef50_UPI000371F98A: 50S ribosomal protein L13|unclassified	8.7156295986
+UniRef50_A4WRW6	8.7109997820
+UniRef50_A4WRW6|unclassified	8.7109997820
+UniRef50_A9M4C4: UPF0276 protein NMCC_2101	8.7106683121
+UniRef50_A9M4C4: UPF0276 protein NMCC_2101|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5220608743
+UniRef50_A9M4C4: UPF0276 protein NMCC_2101|g__Neisseria.s__Neisseria_meningitidis	2.1321961620
+UniRef50_A9M4C4: UPF0276 protein NMCC_2101|unclassified	0.0564112757
+UniRef50_Q9I158	8.7103068292
+UniRef50_Q9I158|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4052863436
+UniRef50_Q9I158|unclassified	4.3050204855
+UniRef50_A6LQ58	8.7097900307
+UniRef50_A6LQ58|g__Clostridium.s__Clostridium_beijerinckii	8.7097900307
+UniRef50_U5NRF0	8.7091073462
+UniRef50_U5NRF0|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.3191489362
+UniRef50_U5NRF0|unclassified	3.3899584100
+UniRef50_C1DK50	8.7088762882
+UniRef50_C1DK50|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.7088762882
+UniRef50_Q49UP7	8.7075322725
+UniRef50_Q49UP7|g__Staphylococcus.s__Staphylococcus_aureus	8.0000000000
+UniRef50_Q49UP7|unclassified	0.7075322725
+UniRef50_Q5PJI9: Arginine exporter protein ArgO	8.7050559664
+UniRef50_Q5PJI9: Arginine exporter protein ArgO|g__Escherichia.s__Escherichia_coli	8.7050559664
+UniRef50_H3TL67: Phenol hydroxylase	8.7038116130
+UniRef50_H3TL67: Phenol hydroxylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1094414600
+UniRef50_H3TL67: Phenol hydroxylase|unclassified	2.5943701530
+UniRef50_Q3IW22: L-alanine exporter AlaE	8.7034412685
+UniRef50_Q3IW22: L-alanine exporter AlaE|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.7034412685
+UniRef50_R6ND25: N-acetylmannosamine kinase	8.7009859242
+UniRef50_R6ND25: N-acetylmannosamine kinase|g__Clostridium.s__Clostridium_beijerinckii	8.7009859242
+UniRef50_A0A023K3H2: Transposase	8.6956521739
+UniRef50_A0A023K3H2: Transposase|g__Escherichia.s__Escherichia_coli	8.6956521739
+UniRef50_A0A023YPV7	8.6956521739
+UniRef50_A0A023YPV7|g__Escherichia.s__Escherichia_coli	8.6956521739
+UniRef50_B9KUC9	8.6956521739
+UniRef50_B9KUC9|unclassified	8.6956521739
+UniRef50_D6UAL1	8.6956521739
+UniRef50_D6UAL1|g__Staphylococcus.s__Staphylococcus_aureus	8.6956521739
+UniRef50_D7YLT0	8.6956521739
+UniRef50_D7YLT0|unclassified	8.6956521739
+UniRef50_E3ZJP3	8.6956521739
+UniRef50_E3ZJP3|unclassified	8.6956521739
+UniRef50_E7MUF5	8.6956521739
+UniRef50_E7MUF5|g__Staphylococcus.s__Staphylococcus_aureus	8.6956521739
+UniRef50_UPI00036DFD62: hypothetical protein	8.6956521739
+UniRef50_UPI00036DFD62: hypothetical protein|g__Streptococcus.s__Streptococcus_mutans	8.6956521739
+UniRef50_W1X512	8.6956521739
+UniRef50_W1X512|g__Escherichia.s__Escherichia_coli	8.6956521739
+UniRef50_R9SK97: Energy-converting hydrogenase A subunit L EhaL	8.6927492588
+UniRef50_R9SK97: Energy-converting hydrogenase A subunit L EhaL|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.6068376068
+UniRef50_R9SK97: Energy-converting hydrogenase A subunit L EhaL|unclassified	1.0859116519
+UniRef50_J9YQD4	8.6925964971
+UniRef50_J9YQD4|g__Streptococcus.s__Streptococcus_agalactiae	8.6925964971
+UniRef50_U5MUD4	8.6920102316
+UniRef50_U5MUD4|g__Clostridium.s__Clostridium_beijerinckii	8.6920102316
+UniRef50_A4WRV1: Transport-associated	8.6894563425
+UniRef50_A4WRV1: Transport-associated|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.6894563425
+UniRef50_I0E6L1	8.6872410387
+UniRef50_I0E6L1|g__Helicobacter.s__Helicobacter_pylori	8.6872410387
+UniRef50_A3JZB9	8.6860102795
+UniRef50_A3JZB9|unclassified	8.6860102795
+UniRef50_D5ARQ5: Methyltransferase small domain protein	8.6819122623
+UniRef50_D5ARQ5: Methyltransferase small domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.6819122623
+UniRef50_W5X5A5	8.6812616914
+UniRef50_W5X5A5|unclassified	8.6812616914
+UniRef50_A4WWK0	8.6803449860
+UniRef50_A4WWK0|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.5521062185
+UniRef50_A4WWK0|unclassified	1.1282387675
+UniRef50_I7E227: Uroporphyrinogen-III C-methyltransferase CobA	8.6782680659
+UniRef50_I7E227: Uroporphyrinogen-III C-methyltransferase CobA|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.6782680659
+UniRef50_A4SQR5: Short-chain dehydrogenase/reductase	8.6764200512
+UniRef50_A4SQR5: Short-chain dehydrogenase/reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.6764200512
+UniRef50_P26503: UDP-glucose 4-epimerase	8.6760797277
+UniRef50_P26503: UDP-glucose 4-epimerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.6760797277
+UniRef50_Q51700: Nitrite reductase	8.6751972768
+UniRef50_Q51700: Nitrite reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.6751972768
+UniRef50_A0A024DGP9: Transcriptional regulator	8.6741961742
+UniRef50_A0A024DGP9: Transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	8.6741961742
+UniRef50_A1TXZ0: Gluconolactonase	8.6675125425
+UniRef50_A1TXZ0: Gluconolactonase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.6675125425
+UniRef50_R4Z832: Acetyltransferase	8.6598217521
+UniRef50_R4Z832: Acetyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	8.6598217521
+UniRef50_M4X2L8: Type II secretion system protein	8.6591666833
+UniRef50_M4X2L8: Type II secretion system protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1967213115
+UniRef50_M4X2L8: Type II secretion system protein|unclassified	0.4624453718
+UniRef50_L7WZJ1	8.6577016210
+UniRef50_L7WZJ1|g__Staphylococcus.s__Staphylococcus_epidermidis	8.6577016210
+UniRef50_R0DU50	8.6568943968
+UniRef50_R0DU50|unclassified	8.6568943968
+UniRef50_A9KJX4: Two component transcriptional regulator, winged helix family	8.6543303299
+UniRef50_A9KJX4: Two component transcriptional regulator, winged helix family|g__Clostridium.s__Clostridium_beijerinckii	8.6543303299
+UniRef50_E3A6B1	8.6531664880
+UniRef50_E3A6B1|unclassified	8.6531664880
+UniRef50_Q3J4R2	8.6507455358
+UniRef50_Q3J4R2|unclassified	8.6507455358
+UniRef50_F3SBC7	8.6483989481
+UniRef50_F3SBC7|unclassified	8.6483989481
+UniRef50_L7VT93: Chemotaxis protein methyltransferase 2	8.6396770485
+UniRef50_L7VT93: Chemotaxis protein methyltransferase 2|g__Clostridium.s__Clostridium_beijerinckii	8.6396770485
+UniRef50_P0AAX7	8.6378737542
+UniRef50_P0AAX7|g__Escherichia.s__Escherichia_coli	8.6378737542
+UniRef50_V5SYK3	8.6372834580
+UniRef50_V5SYK3|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.6372834580
+UniRef50_A5UMP2	8.6367830522
+UniRef50_A5UMP2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.6367830522
+UniRef50_W8SNT6: Transcription elongation factor	8.6353853481
+UniRef50_W8SNT6: Transcription elongation factor|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.6353853481
+UniRef50_B9AG37	8.6352339314
+UniRef50_B9AG37|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.6352339314
+UniRef50_M5RGX7	8.6351254563
+UniRef50_M5RGX7|unclassified	8.6351254563
+UniRef50_UPI000363EBD2: hypothetical protein	8.6350667552
+UniRef50_UPI000363EBD2: hypothetical protein|unclassified	8.6350667552
+UniRef50_A0REF7: DNA-binding response regulator	8.6336716606
+UniRef50_A0REF7: DNA-binding response regulator|g__Clostridium.s__Clostridium_beijerinckii	8.6336716606
+UniRef50_Q3HKI0: Possible H(+)-transporting ATP synthase, subunit gamma	8.6328850891
+UniRef50_Q3HKI0: Possible H(+)-transporting ATP synthase, subunit gamma|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.6328850891
+UniRef50_F7VFJ4	8.6280753010
+UniRef50_F7VFJ4|unclassified	8.6280753010
+UniRef50_A5UMQ8: Sirohydrochlorin cobaltochelatase	8.6260218660
+UniRef50_A5UMQ8: Sirohydrochlorin cobaltochelatase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.6260218660
+UniRef50_P29337: Biotin carboxyl carrier protein	8.6242602996
+UniRef50_P29337: Biotin carboxyl carrier protein|g__Streptococcus.s__Streptococcus_mutans	8.6242602996
+UniRef50_R7PTU8: ATP-grasp domain protein	8.6237002306
+UniRef50_R7PTU8: ATP-grasp domain protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.6237002306
+UniRef50_X6AX71	8.6235971188
+UniRef50_X6AX71|unclassified	8.6235971188
+UniRef50_U5WK69	8.6226087656
+UniRef50_U5WK69|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.6226087656
+UniRef50_B1KVH1	8.6216552082
+UniRef50_B1KVH1|g__Clostridium.s__Clostridium_beijerinckii	8.6216552082
+UniRef50_P27241: Lipopolysaccharide core biosynthesis protein RfaZ	8.6214291843
+UniRef50_P27241: Lipopolysaccharide core biosynthesis protein RfaZ|g__Escherichia.s__Escherichia_coli	8.2892410848
+UniRef50_P27241: Lipopolysaccharide core biosynthesis protein RfaZ|unclassified	0.3321880996
+UniRef50_A6LV04	8.6208743125
+UniRef50_A6LV04|g__Clostridium.s__Clostridium_beijerinckii	8.6208743125
+UniRef50_A0A010DHJ2	8.6206896552
+UniRef50_A0A010DHJ2|unclassified	8.6206896552
+UniRef50_A0A023KWM2	8.6206896552
+UniRef50_A0A023KWM2|g__Escherichia.s__Escherichia_coli	8.6206896552
+UniRef50_A3PND0	8.6206896552
+UniRef50_A3PND0|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.6206896552
+UniRef50_A6LTA9	8.6206896552
+UniRef50_A6LTA9|g__Clostridium.s__Clostridium_beijerinckii	8.6206896552
+UniRef50_A6LZT7	8.6206896552
+UniRef50_A6LZT7|g__Clostridium.s__Clostridium_beijerinckii	8.6206896552
+UniRef50_B9KN96	8.6206896552
+UniRef50_B9KN96|unclassified	8.6206896552
+UniRef50_C5N269	8.6206896552
+UniRef50_C5N269|unclassified	8.6206896552
+UniRef50_E3A3B4	8.6206896552
+UniRef50_E3A3B4|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.6206896552
+UniRef50_M2ENJ4: Putative glutathione S-transferase	8.6206896552
+UniRef50_M2ENJ4: Putative glutathione S-transferase|g__Streptococcus.s__Streptococcus_mutans	8.6206896552
+UniRef50_Q5HDA2	8.6206896552
+UniRef50_Q5HDA2|g__Staphylococcus.s__Staphylococcus_aureus	8.6206896552
+UniRef50_U5MPT8: Bacteriohemerythrin	8.6206896552
+UniRef50_U5MPT8: Bacteriohemerythrin|g__Clostridium.s__Clostridium_beijerinckii	8.6206896552
+UniRef50_W1F3W2	8.6206896552
+UniRef50_W1F3W2|unclassified	8.6206896552
+UniRef50_T0VIT8: Malate Na(+) symporter	8.6198069513
+UniRef50_T0VIT8: Malate Na(+) symporter|g__Streptococcus.s__Streptococcus_agalactiae	8.6198069513
+UniRef50_B9ADV3: Putative methyl-coenzyme M reductase, alpha subunit	8.6170907666
+UniRef50_B9ADV3: Putative methyl-coenzyme M reductase, alpha subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.6170907666
+UniRef50_X5KFC5	8.6161066197
+UniRef50_X5KFC5|g__Streptococcus.s__Streptococcus_agalactiae	8.6161066197
+UniRef50_A1B8N7: ATP synthase subunit delta	8.6158751273
+UniRef50_A1B8N7: ATP synthase subunit delta|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.6158751273
+UniRef50_B9KMW1	8.6149279775
+UniRef50_B9KMW1|unclassified	8.6149279775
+UniRef50_B9KTM2: Membrane fusion protein, HlyD family	8.6142762353
+UniRef50_B9KTM2: Membrane fusion protein, HlyD family|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.6142762353
+UniRef50_V0SV41	8.6135001785
+UniRef50_V0SV41|unclassified	8.6135001785
+UniRef50_E2XRP0: DNA-binding response regulator, LuxR family	8.6133013991
+UniRef50_E2XRP0: DNA-binding response regulator, LuxR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.6133013991
+UniRef50_H6NSQ0: 2-deoxy-D-gluconate 3-dehydrogenase	8.6127943636
+UniRef50_H6NSQ0: 2-deoxy-D-gluconate 3-dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.6127943636
+UniRef50_M5DSQ3: Peptidyl-prolyl cis-trans isomerase	8.6110118902
+UniRef50_M5DSQ3: Peptidyl-prolyl cis-trans isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.6110118902
+UniRef50_U6AA53	8.6069670159
+UniRef50_U6AA53|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.6069670159
+UniRef50_B2TQB7: LicD family protein	8.6043661979
+UniRef50_B2TQB7: LicD family protein|g__Clostridium.s__Clostridium_beijerinckii	8.6043661979
+UniRef50_D9SMK5: 4Fe-4S ferredoxin iron-sulfur binding domain-containing protein	8.6033986136
+UniRef50_D9SMK5: 4Fe-4S ferredoxin iron-sulfur binding domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	8.6033986136
+UniRef50_A3PIF6	8.6027915443
+UniRef50_A3PIF6|unclassified	8.6027915443
+UniRef50_I4EB03	8.6025086025
+UniRef50_I4EB03|unclassified	8.6025086025
+UniRef50_S5CVC3: Permeases of the major facilitator superfamily	8.5981708302
+UniRef50_S5CVC3: Permeases of the major facilitator superfamily|g__Acinetobacter.s__Acinetobacter_baumannii	8.5981708302
+UniRef50_P0AD18: Inner membrane protein YohC	8.5972335013
+UniRef50_P0AD18: Inner membrane protein YohC|g__Escherichia.s__Escherichia_coli	8.5972335013
+UniRef50_I7A8M6	8.5963175723
+UniRef50_I7A8M6|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3504006625
+UniRef50_I7A8M6|unclassified	0.2459169097
+UniRef50_G5LGA8: D-serine dehydratase transcriptional activator	8.5942491090
+UniRef50_G5LGA8: D-serine dehydratase transcriptional activator|g__Escherichia.s__Escherichia_coli	8.5942491090
+UniRef50_M9M1D4	8.5927681550
+UniRef50_M9M1D4|unclassified	8.5927681550
+UniRef50_A4VRC8: Membrane protein, TIGR01666	8.5864273649
+UniRef50_A4VRC8: Membrane protein, TIGR01666|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.5864273649
+UniRef50_A6M384: CheC domain protein	8.5836909871
+UniRef50_A6M384: CheC domain protein|g__Clostridium.s__Clostridium_beijerinckii	8.5836909871
+UniRef50_S0U5T5: L-fucose-proton symporter	8.5829553845
+UniRef50_S0U5T5: L-fucose-proton symporter|g__Escherichia.s__Escherichia_coli	8.5829553845
+UniRef50_A6LQP6	8.5815082572
+UniRef50_A6LQP6|g__Clostridium.s__Clostridium_beijerinckii	8.5815082572
+UniRef50_B9KKZ2	8.5812772134
+UniRef50_B9KKZ2|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.8076923077
+UniRef50_B9KKZ2|unclassified	3.7735849057
+UniRef50_P39334: HTH-type transcriptional repressor BdcR	8.5809374875
+UniRef50_P39334: HTH-type transcriptional repressor BdcR|g__Escherichia.s__Escherichia_coli	8.5809374875
+UniRef50_B3G2P2	8.5700653307
+UniRef50_B3G2P2|unclassified	8.5700653307
+UniRef50_G7M679: D-galactose-binding protein	8.5665439574
+UniRef50_G7M679: D-galactose-binding protein|g__Clostridium.s__Clostridium_beijerinckii	8.5665439574
+UniRef50_U5NMY1	8.5662100457
+UniRef50_U5NMY1|unclassified	4.5662100457
+UniRef50_U5NMY1|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.0000000000
+UniRef50_V5T0G8	8.5659735592
+UniRef50_V5T0G8|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2074829932
+UniRef50_V5T0G8|unclassified	2.3584905660
+UniRef50_B0UHA6	8.5656926308
+UniRef50_B0UHA6|unclassified	8.5656926308
+UniRef50_S4P5G5: Minichromosome maintenance 3 (Fragment)	8.5588967639
+UniRef50_S4P5G5: Minichromosome maintenance 3 (Fragment)|unclassified	8.5588967639
+UniRef50_Q3J3B2: Glycosyltransferase, Succinoglycan biosynthesis protein exoL	8.5565505304
+UniRef50_Q3J3B2: Glycosyltransferase, Succinoglycan biosynthesis protein exoL|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.5565505304
+UniRef50_M5JVY0: P2-like prophage tail protein X	8.5517818567
+UniRef50_M5JVY0: P2-like prophage tail protein X|unclassified	8.5517818567
+UniRef50_R5A3J3	8.5512577786
+UniRef50_R5A3J3|g__Clostridium.s__Clostridium_beijerinckii	8.5512577786
+UniRef50_B3RB46: Acyl-CoA dehydrogenase	8.5506021497
+UniRef50_B3RB46: Acyl-CoA dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.5506021497
+UniRef50_K4PQW7	8.5502737907
+UniRef50_K4PQW7|g__Streptococcus.s__Streptococcus_mutans	4.5662100457
+UniRef50_K4PQW7|g__Streptococcus.s__Streptococcus_agalactiae	3.9840637450
+UniRef50_A7FFJ0: UPF0253 protein YpsIP31758_1034	8.5470085470
+UniRef50_A7FFJ0: UPF0253 protein YpsIP31758_1034|g__Escherichia.s__Escherichia_coli	8.5470085470
+UniRef50_D8KD63: Transposase	8.5470085470
+UniRef50_D8KD63: Transposase|g__Streptococcus.s__Streptococcus_agalactiae	8.5470085470
+UniRef50_E1HKI4	8.5470085470
+UniRef50_E1HKI4|g__Escherichia.s__Escherichia_coli	8.5470085470
+UniRef50_G5P0U2	8.5470085470
+UniRef50_G5P0U2|unclassified	8.5470085470
+UniRef50_L1KF69	8.5470085470
+UniRef50_L1KF69|unclassified	8.5470085470
+UniRef50_M2E3P8	8.5470085470
+UniRef50_M2E3P8|g__Streptococcus.s__Streptococcus_mutans	8.5470085470
+UniRef50_P66235: 50S ribosomal protein L33 3	8.5470085470
+UniRef50_P66235: 50S ribosomal protein L33 3|g__Streptococcus.s__Streptococcus_mutans	8.5470085470
+UniRef50_Q8CS05	8.5470085470
+UniRef50_Q8CS05|g__Staphylococcus.s__Staphylococcus_epidermidis	8.5470085470
+UniRef50_X8R1W3: Penicillinase repressor	8.5470085470
+UniRef50_X8R1W3: Penicillinase repressor|g__Escherichia.s__Escherichia_coli	8.5470085470
+UniRef50_A0A035VXH8	8.5441029020
+UniRef50_A0A035VXH8|unclassified	8.5441029020
+UniRef50_P35483: Alkaline phosphatase H	8.5416703006
+UniRef50_P35483: Alkaline phosphatase H|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.6858719901
+UniRef50_P35483: Alkaline phosphatase H|unclassified	0.8557983105
+UniRef50_Q9I2Q2: Methionine synthase	8.5414503885
+UniRef50_Q9I2Q2: Methionine synthase|g__Escherichia.s__Escherichia_coli	7.7947912251
+UniRef50_Q9I2Q2: Methionine synthase|g__Acinetobacter.s__Acinetobacter_baumannii	0.5439236466
+UniRef50_Q9I2Q2: Methionine synthase|unclassified	0.2027355168
+UniRef50_A6V5X2: Cyclic diguanylate phosphodiesterase (EAL) domain protein	8.5409518865
+UniRef50_A6V5X2: Cyclic diguanylate phosphodiesterase (EAL) domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.5409518865
+UniRef50_D4Z4T4: Aminomethyltransferase	8.5392535311
+UniRef50_D4Z4T4: Aminomethyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.5392535311
+UniRef50_I6FSM3	8.5353785741
+UniRef50_I6FSM3|unclassified	8.5353785741
+UniRef50_L1AYN6: Inner membrane protein ybjJ	8.5342943780
+UniRef50_L1AYN6: Inner membrane protein ybjJ|g__Escherichia.s__Escherichia_coli	8.5342943780
+UniRef50_K4XY40	8.5295182905
+UniRef50_K4XY40|g__Escherichia.s__Escherichia_coli	8.5295182905
+UniRef50_I9JSL3	8.5290142837
+UniRef50_I9JSL3|unclassified	8.5290142837
+UniRef50_G4LM62: Outer membrane OprD family porin	8.5288190535
+UniRef50_G4LM62: Outer membrane OprD family porin|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.5288190535
+UniRef50_F4DWN5: Alpha/beta hydrolase fold protein	8.5282159155
+UniRef50_F4DWN5: Alpha/beta hydrolase fold protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.5282159155
+UniRef50_U9HN69	8.5265167549
+UniRef50_U9HN69|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1296412981
+UniRef50_U9HN69|unclassified	1.3968754568
+UniRef50_A7WYE6	8.5251790165
+UniRef50_A7WYE6|unclassified	8.5251790165
+UniRef50_D8JTY5: Binding-protein-dependent transport systems inner membrane component	8.5241868578
+UniRef50_D8JTY5: Binding-protein-dependent transport systems inner membrane component|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.5241868578
+UniRef50_UPI0003745C94: hypothetical protein	8.5236868517
+UniRef50_UPI0003745C94: hypothetical protein|unclassified	8.5236868517
+UniRef50_F8G3F6: TetR family transcriptional regulator	8.5225848499
+UniRef50_F8G3F6: TetR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.5225848499
+UniRef50_A3PMD2: Aa3 type cytochrome c oxidase subunit IV	8.5212023618
+UniRef50_A3PMD2: Aa3 type cytochrome c oxidase subunit IV|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.4347826087
+UniRef50_A3PMD2: Aa3 type cytochrome c oxidase subunit IV|unclassified	3.0864197531
+UniRef50_UPI000474270C: hypothetical protein	8.5190382239
+UniRef50_UPI000474270C: hypothetical protein|unclassified	8.5190382239
+UniRef50_A6M2T4: Transcriptional regulator, RpiR family	8.5187256795
+UniRef50_A6M2T4: Transcriptional regulator, RpiR family|g__Clostridium.s__Clostridium_beijerinckii	8.5187256795
+UniRef50_C6D6V1: Extradiol ring-cleavage dioxygenase class III protein subunit B	8.5172325670
+UniRef50_C6D6V1: Extradiol ring-cleavage dioxygenase class III protein subunit B|g__Clostridium.s__Clostridium_beijerinckii	8.5172325670
+UniRef50_A5UND6	8.5170864166
+UniRef50_A5UND6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.5170864166
+UniRef50_Q8Z8H3: 2-keto-3-deoxygluconate permease 2	8.5152355802
+UniRef50_Q8Z8H3: 2-keto-3-deoxygluconate permease 2|g__Clostridium.s__Clostridium_beijerinckii	8.5152355802
+UniRef50_Q21VJ3: Short-chain dehydrogenase/reductase SDR	8.5145623607
+UniRef50_Q21VJ3: Short-chain dehydrogenase/reductase SDR|g__Deinococcus.s__Deinococcus_radiodurans	8.5145623607
+UniRef50_H8H2N8: DNA polymerase III, beta subunit	8.5098715041
+UniRef50_H8H2N8: DNA polymerase III, beta subunit|g__Deinococcus.s__Deinococcus_radiodurans	8.5098715041
+UniRef50_M1M9U7: Carbohydrate ABC transporter membrane protein 1, CUT1 family	8.5085987781
+UniRef50_M1M9U7: Carbohydrate ABC transporter membrane protein 1, CUT1 family|g__Clostridium.s__Clostridium_beijerinckii	8.5085987781
+UniRef50_A6LRB3: Uroporphyrinogen decarboxylase (URO-D)	8.5063842149
+UniRef50_A6LRB3: Uroporphyrinogen decarboxylase (URO-D)|g__Clostridium.s__Clostridium_beijerinckii	8.5063842149
+UniRef50_A6LX83	8.5057045845
+UniRef50_A6LX83|g__Clostridium.s__Clostridium_beijerinckii	8.5057045845
+UniRef50_Q8TVF7: Transcription factor homologous to NACalpha-BTF3 fused to metal-binding domain	8.5051431180
+UniRef50_Q8TVF7: Transcription factor homologous to NACalpha-BTF3 fused to metal-binding domain|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.5051431180
+UniRef50_A6LZ97	8.5035759504
+UniRef50_A6LZ97|g__Clostridium.s__Clostridium_beijerinckii	8.5035759504
+UniRef50_E8QVJ8: Molybdenum ABC transporter ModA	8.5031478136
+UniRef50_E8QVJ8: Molybdenum ABC transporter ModA|g__Helicobacter.s__Helicobacter_pylori	8.5031478136
+UniRef50_P0C652: Insertion element IS1 protein InsA	8.4990355190
+UniRef50_P0C652: Insertion element IS1 protein InsA|g__Escherichia.s__Escherichia_coli	6.1349693252
+UniRef50_P0C652: Insertion element IS1 protein InsA|g__Acinetobacter.s__Acinetobacter_baumannii	2.3640661939
+UniRef50_Q016E9: Glyoxalase/bleomycin resistance protein/dioxygenas (ISS)	8.4984719923
+UniRef50_Q016E9: Glyoxalase/bleomycin resistance protein/dioxygenas (ISS)|unclassified	8.4984719923
+UniRef50_A0A024HN09: Penicillin-binding protein 1B	8.4980038519
+UniRef50_A0A024HN09: Penicillin-binding protein 1B|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.4980038519
+UniRef50_M1N6P4	8.4930736443
+UniRef50_M1N6P4|g__Clostridium.s__Clostridium_beijerinckii	8.4930736443
+UniRef50_G7U8S0: CoA-transferase family III	8.4926687297
+UniRef50_G7U8S0: CoA-transferase family III|g__Propionibacterium.s__Propionibacterium_acnes	8.4926687297
+UniRef50_Q8DZR2	8.4925690021
+UniRef50_Q8DZR2|g__Streptococcus.s__Streptococcus_agalactiae	8.4925690021
+UniRef50_W5VCD5: Protein TadC	8.4920346439
+UniRef50_W5VCD5: Protein TadC|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.2662815424
+UniRef50_W5VCD5: Protein TadC|unclassified	0.2257531015
+UniRef50_A4STH4: Anaerobic nitric oxide reductase flavorubredoxin	8.4909101835
+UniRef50_A4STH4: Anaerobic nitric oxide reductase flavorubredoxin|g__Escherichia.s__Escherichia_coli	8.0615387947
+UniRef50_A4STH4: Anaerobic nitric oxide reductase flavorubredoxin|unclassified	0.4293713888
+UniRef50_A6LS61: 5'-nucleotidase SurE	8.4901606543
+UniRef50_A6LS61: 5'-nucleotidase SurE|g__Clostridium.s__Clostridium_beijerinckii	8.4901606543
+UniRef50_B9KTA6: D-aminopeptidase	8.4880992555
+UniRef50_B9KTA6: D-aminopeptidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.4880992555
+UniRef50_Q6M0B4: UDP-N-acetylglucosamine 2-epimerase homolog	8.4877236059
+UniRef50_Q6M0B4: UDP-N-acetylglucosamine 2-epimerase homolog|g__Clostridium.s__Clostridium_beijerinckii	8.4877236059
+UniRef50_Q59637: Pyruvate dehydrogenase E1 component	8.4825858791
+UniRef50_Q59637: Pyruvate dehydrogenase E1 component|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6013655162
+UniRef50_Q59637: Pyruvate dehydrogenase E1 component|g__Acinetobacter.s__Acinetobacter_baumannii	2.0861345792
+UniRef50_Q59637: Pyruvate dehydrogenase E1 component|g__Neisseria.s__Neisseria_meningitidis	0.7950857837
+UniRef50_F5M3T2: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase	8.4795321637
+UniRef50_F5M3T2: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.4795321637
+UniRef50_Q9HY09	8.4779055576
+UniRef50_Q9HY09|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.9475368527
+UniRef50_Q9HY09|unclassified	1.5303687049
+UniRef50_P24241: PTS system arbutin-, cellobiose-, and salicin-specific EIIBC component	8.4769249978
+UniRef50_P24241: PTS system arbutin-, cellobiose-, and salicin-specific EIIBC component|g__Escherichia.s__Escherichia_coli	5.1551593910
+UniRef50_P24241: PTS system arbutin-, cellobiose-, and salicin-specific EIIBC component|g__Clostridium.s__Clostridium_beijerinckii	3.3217656068
+UniRef50_Q8DX74: ABC transporter, ATP-binding protein	8.4767312005
+UniRef50_Q8DX74: ABC transporter, ATP-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	8.4767312005
+UniRef50_O34133: Putative regulator AldR	8.4767262742
+UniRef50_O34133: Putative regulator AldR|g__Streptococcus.s__Streptococcus_mutans	8.4767262742
+UniRef50_UPI0003774904: hypothetical protein	8.4766050570
+UniRef50_UPI0003774904: hypothetical protein|unclassified	8.4766050570
+UniRef50_P44992	8.4766004342
+UniRef50_P44992|g__Escherichia.s__Escherichia_coli	8.4766004342
+UniRef50_A5UJT1	8.4745762712
+UniRef50_A5UJT1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.4745762712
+UniRef50_A6LTQ7	8.4745762712
+UniRef50_A6LTQ7|g__Clostridium.s__Clostridium_beijerinckii	8.4745762712
+UniRef50_B5Z1G8	8.4745762712
+UniRef50_B5Z1G8|unclassified	8.4745762712
+UniRef50_E0NC31	8.4745762712
+UniRef50_E0NC31|unclassified	8.4745762712
+UniRef50_J7QCL8	8.4745762712
+UniRef50_J7QCL8|g__Escherichia.s__Escherichia_coli	8.4745762712
+UniRef50_P58037	8.4745762712
+UniRef50_P58037|unclassified	8.4745762712
+UniRef50_UPI0003713470: hypothetical protein	8.4745762712
+UniRef50_UPI0003713470: hypothetical protein|unclassified	8.4745762712
+UniRef50_UPI00037F1E57: hypothetical protein	8.4713646774
+UniRef50_UPI00037F1E57: hypothetical protein|unclassified	8.4713646774
+UniRef50_UPI0002192B4B: multidrug ABC transporter ATP-binding and permease, partial	8.4694666794
+UniRef50_UPI0002192B4B: multidrug ABC transporter ATP-binding and permease, partial|unclassified	8.4694666794
+UniRef50_U8LE05	8.4654556885
+UniRef50_U8LE05|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.4654556885
+UniRef50_Q9ZKU5: Acetate kinase	8.4620025737
+UniRef50_Q9ZKU5: Acetate kinase|g__Helicobacter.s__Helicobacter_pylori	8.2578688854
+UniRef50_Q9ZKU5: Acetate kinase|unclassified	0.2041336883
+UniRef50_Q010P3: Hemolysin, putative (ISS) (Fragment)	8.4588334813
+UniRef50_Q010P3: Hemolysin, putative (ISS) (Fragment)|unclassified	8.4588334813
+UniRef50_A4WTH1	8.4586393249
+UniRef50_A4WTH1|unclassified	8.4586393249
+UniRef50_V0VJX5	8.4568072764
+UniRef50_V0VJX5|g__Escherichia.s__Escherichia_coli	5.7471264368
+UniRef50_V0VJX5|unclassified	2.7096808397
+UniRef50_P12994: UPF0098 protein YbhB	8.4567734985
+UniRef50_P12994: UPF0098 protein YbhB|g__Escherichia.s__Escherichia_coli	8.4567734985
+UniRef50_P72158: N5-carboxyaminoimidazole ribonucleotide synthase	8.4559313614
+UniRef50_P72158: N5-carboxyaminoimidazole ribonucleotide synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3883834606
+UniRef50_P72158: N5-carboxyaminoimidazole ribonucleotide synthase|unclassified	0.0675479008
+UniRef50_A1B454	8.4518821073
+UniRef50_A1B454|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.0240963855
+UniRef50_A1B454|unclassified	2.4277857217
+UniRef50_B0VE30: Acetoacetyl-CoA transferase, beta subunit	8.4513827267
+UniRef50_B0VE30: Acetoacetyl-CoA transferase, beta subunit|g__Acinetobacter.s__Acinetobacter_baumannii	8.4513827267
+UniRef50_A0A037YUB1	8.4508447439
+UniRef50_A0A037YUB1|unclassified	8.4508447439
+UniRef50_O86564: L-serine dehydratase	8.4507437696
+UniRef50_O86564: L-serine dehydratase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3033933915
+UniRef50_O86564: L-serine dehydratase|unclassified	0.1473503782
+UniRef50_Q2YTX8	8.4507139777
+UniRef50_Q2YTX8|g__Staphylococcus.s__Staphylococcus_aureus	7.7519379845
+UniRef50_Q2YTX8|unclassified	0.6987759932
+UniRef50_B8EMG0	8.4499209976
+UniRef50_B8EMG0|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.4499209976
+UniRef50_T9LNI0	8.4460635680
+UniRef50_T9LNI0|g__Escherichia.s__Escherichia_coli	8.3133053161
+UniRef50_T9LNI0|unclassified	0.1327582519
+UniRef50_UPI0003807E5F: hypothetical protein, partial	8.4455610160
+UniRef50_UPI0003807E5F: hypothetical protein, partial|unclassified	8.4455610160
+UniRef50_UPI0002D2FE43: hypothetical protein	8.4403462819
+UniRef50_UPI0002D2FE43: hypothetical protein|unclassified	8.4403462819
+UniRef50_B6TP29	8.4388185654
+UniRef50_B6TP29|unclassified	8.4388185654
+UniRef50_A5UJ55: SAM-dependent methyltransferase	8.4368514345
+UniRef50_A5UJ55: SAM-dependent methyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.4368514345
+UniRef50_E6DRN3	8.4361145204
+UniRef50_E6DRN3|unclassified	8.4361145204
+UniRef50_K0WG76: Metal-dependent beta-lactamase	8.4351802009
+UniRef50_K0WG76: Metal-dependent beta-lactamase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.4351802009
+UniRef50_P26275: Positive alginate biosynthesis regulatory protein	8.4330708754
+UniRef50_P26275: Positive alginate biosynthesis regulatory protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8436197536
+UniRef50_P26275: Positive alginate biosynthesis regulatory protein|unclassified	0.5894511218
+UniRef50_Q8E796: UPF0291 protein gbs0261	8.4318528775
+UniRef50_Q8E796: UPF0291 protein gbs0261|g__Streptococcus.s__Streptococcus_mutans	4.3668122271
+UniRef50_Q8E796: UPF0291 protein gbs0261|g__Streptococcus.s__Streptococcus_agalactiae	4.0650406504
+UniRef50_R1D153	8.4315207412
+UniRef50_R1D153|unclassified	8.4315207412
+UniRef50_E7I7N1: Cryptic beta-glucoside bgl operon antiterminator	8.4312295250
+UniRef50_E7I7N1: Cryptic beta-glucoside bgl operon antiterminator|g__Escherichia.s__Escherichia_coli	8.4312295250
+UniRef50_A0A021P4Z0	8.4293660270
+UniRef50_A0A021P4Z0|unclassified	8.4293660270
+UniRef50_M4XJJ6	8.4292386518
+UniRef50_M4XJJ6|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4459469445
+UniRef50_M4XJJ6|unclassified	2.9832917073
+UniRef50_S0V4B4: ABC transporter ATP-binding protein	8.4289126236
+UniRef50_S0V4B4: ABC transporter ATP-binding protein|g__Escherichia.s__Escherichia_coli	8.4289126236
+UniRef50_F9SJR5: Putative sulfate permease (Fragment)	8.4284915747
+UniRef50_F9SJR5: Putative sulfate permease (Fragment)|unclassified	8.4284915747
+UniRef50_UPI00035E99F6: hypothetical protein, partial	8.4249418597
+UniRef50_UPI00035E99F6: hypothetical protein, partial|unclassified	8.4249418597
+UniRef50_E8Y3F7	8.4243960471
+UniRef50_E8Y3F7|unclassified	5.6466182694
+UniRef50_E8Y3F7|g__Escherichia.s__Escherichia_coli	2.7777777778
+UniRef50_G7MB29	8.4210899550
+UniRef50_G7MB29|g__Clostridium.s__Clostridium_beijerinckii	8.4210899550
+UniRef50_L0NH32	8.4203127543
+UniRef50_L0NH32|unclassified	8.4203127543
+UniRef50_UPI0003B3ED87: hypothetical protein	8.4165879722
+UniRef50_UPI0003B3ED87: hypothetical protein|unclassified	8.4165879722
+UniRef50_P64274: Transcription elongation factor GreB	8.4147980888
+UniRef50_P64274: Transcription elongation factor GreB|g__Escherichia.s__Escherichia_coli	8.4147980888
+UniRef50_Q87DC2: Fumarate hydratase class II	8.4102910092
+UniRef50_Q87DC2: Fumarate hydratase class II|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3483978958
+UniRef50_Q87DC2: Fumarate hydratase class II|unclassified	0.0618931134
+UniRef50_R7PVH8	8.4101144746
+UniRef50_R7PVH8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.4101144746
+UniRef50_F3U1Z6	8.4097176781
+UniRef50_F3U1Z6|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.4097176781
+UniRef50_UPI000380D081: hypothetical protein	8.4068107726
+UniRef50_UPI000380D081: hypothetical protein|unclassified	8.4068107726
+UniRef50_A4VYP5: 50S ribosomal protein L23	8.4057356785
+UniRef50_A4VYP5: 50S ribosomal protein L23|g__Streptococcus.s__Streptococcus_mutans	8.4057356785
+UniRef50_C5N3Z7	8.4033613445
+UniRef50_C5N3Z7|g__Staphylococcus.s__Staphylococcus_aureus	8.4033613445
+UniRef50_C5Q576	8.4033613445
+UniRef50_C5Q576|g__Staphylococcus.s__Staphylococcus_aureus	8.4033613445
+UniRef50_J0EPK6	8.4033613445
+UniRef50_J0EPK6|g__Staphylococcus.s__Staphylococcus_epidermidis	8.4033613445
+UniRef50_J0F5X0	8.4033613445
+UniRef50_J0F5X0|g__Staphylococcus.s__Staphylococcus_epidermidis	8.4033613445
+UniRef50_Q8CSW8	8.4033613445
+UniRef50_Q8CSW8|g__Staphylococcus.s__Staphylococcus_epidermidis	8.4033613445
+UniRef50_UPI00038206B4: hypothetical protein	8.4033613445
+UniRef50_UPI00038206B4: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.4033613445
+UniRef50_P00936: Adenylate cyclase	8.4005163086
+UniRef50_P00936: Adenylate cyclase|g__Escherichia.s__Escherichia_coli	8.4005163086
+UniRef50_P0ADA3: Murein hydrolase activator NlpD	8.3997828517
+UniRef50_P0ADA3: Murein hydrolase activator NlpD|g__Escherichia.s__Escherichia_coli	8.3997828517
+UniRef50_M1MIF0: Ankyrin repeat-containing protein	8.3951597562
+UniRef50_M1MIF0: Ankyrin repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	8.3951597562
+UniRef50_T6MH84: Flagellar P-ring protein	8.3914251529
+UniRef50_T6MH84: Flagellar P-ring protein|g__Escherichia.s__Escherichia_coli	8.3914251529
+UniRef50_E2XWM2: Amidotransferase	8.3871525818
+UniRef50_E2XWM2: Amidotransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3871525818
+UniRef50_A1S781: Response regulator receiver modulated CheW protein	8.3862923707
+UniRef50_A1S781: Response regulator receiver modulated CheW protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3862923707
+UniRef50_Q2RKD5: Flagellar biosynthetic protein FliP	8.3803449342
+UniRef50_Q2RKD5: Flagellar biosynthetic protein FliP|g__Clostridium.s__Clostridium_beijerinckii	8.3803449342
+UniRef50_Q2IIH7: PE-PGRS family protein	8.3802229313
+UniRef50_Q2IIH7: PE-PGRS family protein|unclassified	8.3802229313
+UniRef50_B9KUY4	8.3801942222
+UniRef50_B9KUY4|unclassified	8.3801942222
+UniRef50_I6TZ39	8.3800841515
+UniRef50_I6TZ39|g__Streptococcus.s__Streptococcus_mutans	4.3478260870
+UniRef50_I6TZ39|unclassified	4.0322580645
+UniRef50_S6BF09: ATP-dependent DNA helicase RecQ	8.3790103586
+UniRef50_S6BF09: ATP-dependent DNA helicase RecQ|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3790103586
+UniRef50_Q9HZK8: Na(+)-translocating NADH-quinone reductase subunit C	8.3780535161
+UniRef50_Q9HZK8: Na(+)-translocating NADH-quinone reductase subunit C|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3780535161
+UniRef50_Q24QJ3: Imidazole glycerol phosphate synthase subunit HisH	8.3765152133
+UniRef50_Q24QJ3: Imidazole glycerol phosphate synthase subunit HisH|g__Acinetobacter.s__Acinetobacter_baumannii	8.3167590869
+UniRef50_Q24QJ3: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.0597561264
+UniRef50_A9MD69	8.3749977692
+UniRef50_A9MD69|g__Acinetobacter.s__Acinetobacter_baumannii	7.2040375819
+UniRef50_A9MD69|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1709601874
+UniRef50_A0A023RUS2: Chemotaxis protein CheY	8.3739286370
+UniRef50_A0A023RUS2: Chemotaxis protein CheY|g__Acinetobacter.s__Acinetobacter_baumannii	8.3739286370
+UniRef50_R4YES8: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	8.3737679302
+UniRef50_R4YES8: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|g__Escherichia.s__Escherichia_coli	8.3737679302
+UniRef50_Q6FFQ0: Alpha-ketoglutaric semialdehyde dehydrogenase	8.3728880105
+UniRef50_Q6FFQ0: Alpha-ketoglutaric semialdehyde dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	6.8762272246
+UniRef50_Q6FFQ0: Alpha-ketoglutaric semialdehyde dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4966607859
+UniRef50_C7RN78	8.3720579342
+UniRef50_C7RN78|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3720579342
+UniRef50_Q28RP2: Short-chain dehydrogenase/reductase SDR	8.3712847840
+UniRef50_Q28RP2: Short-chain dehydrogenase/reductase SDR|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.3712847840
+UniRef50_K6ZAZ0	8.3708639855
+UniRef50_K6ZAZ0|unclassified	8.3708639855
+UniRef50_C2WHY8: Antisigma-factor antagonist, STAS	8.3653538807
+UniRef50_C2WHY8: Antisigma-factor antagonist, STAS|unclassified	8.3653538807
+UniRef50_P40876	8.3634709492
+UniRef50_P40876|g__Escherichia.s__Escherichia_coli	8.3634709492
+UniRef50_Q2NFX3: 50S ribosomal protein L6	8.3594832569
+UniRef50_Q2NFX3: 50S ribosomal protein L6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.3594832569
+UniRef50_P76639	8.3525607490
+UniRef50_P76639|g__Escherichia.s__Escherichia_coli	8.3525607490
+UniRef50_A6LUM6: Regulatory protein GntR, HTH	8.3520245544
+UniRef50_A6LUM6: Regulatory protein GntR, HTH|g__Clostridium.s__Clostridium_beijerinckii	8.3520245544
+UniRef50_A0A022NPL4: Short-chain dehydrogenase/reductase SDR	8.3471294168
+UniRef50_A0A022NPL4: Short-chain dehydrogenase/reductase SDR|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3471294168
+UniRef50_D9SU34: RNA polymerase, sigma-24 subunit, ECF subfamily	8.3396994458
+UniRef50_D9SU34: RNA polymerase, sigma-24 subunit, ECF subfamily|g__Clostridium.s__Clostridium_beijerinckii	8.3396994458
+UniRef50_Q2SKM8: ABC-type multidrug transport system, permease component	8.3396078750
+UniRef50_Q2SKM8: ABC-type multidrug transport system, permease component|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3396078750
+UniRef50_E2ZXX1: NalD	8.3349733094
+UniRef50_E2ZXX1: NalD|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3349733094
+UniRef50_F9JRF3: Conserved domain protein	8.3348455808
+UniRef50_F9JRF3: Conserved domain protein|unclassified	8.3348455808
+UniRef50_A3P9P2	8.3333333333
+UniRef50_A3P9P2|unclassified	8.3333333333
+UniRef50_C3SMS7: Repressor for mtl	8.3333333333
+UniRef50_C3SMS7: Repressor for mtl|g__Escherichia.s__Escherichia_coli	8.3333333333
+UniRef50_D8A052	8.3333333333
+UniRef50_D8A052|g__Escherichia.s__Escherichia_coli	8.3333333333
+UniRef50_E1J798	8.3333333333
+UniRef50_E1J798|g__Escherichia.s__Escherichia_coli	8.3333333333
+UniRef50_E2ZZ10: Peptide chain release factor 3	8.3333333333
+UniRef50_E2ZZ10: Peptide chain release factor 3|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3333333333
+UniRef50_F9QWP6	8.3333333333
+UniRef50_F9QWP6|g__Escherichia.s__Escherichia_coli	8.3333333333
+UniRef50_H5DXU4	8.3333333333
+UniRef50_H5DXU4|g__Escherichia.s__Escherichia_coli	8.3333333333
+UniRef50_J0YAZ5	8.3333333333
+UniRef50_J0YAZ5|g__Staphylococcus.s__Staphylococcus_epidermidis	8.3333333333
+UniRef50_Q5HPM0	8.3333333333
+UniRef50_Q5HPM0|g__Staphylococcus.s__Staphylococcus_epidermidis	8.3333333333
+UniRef50_Q5HQT3	8.3333333333
+UniRef50_Q5HQT3|g__Staphylococcus.s__Staphylococcus_epidermidis	8.3333333333
+UniRef50_Q8CTM2	8.3333333333
+UniRef50_Q8CTM2|unclassified	8.3333333333
+UniRef50_R6GFC4: Thiamine biosynthesis protein ThiS	8.3333333333
+UniRef50_R6GFC4: Thiamine biosynthesis protein ThiS|g__Clostridium.s__Clostridium_beijerinckii	8.3333333333
+UniRef50_T1Y500	8.3333333333
+UniRef50_T1Y500|unclassified	8.3333333333
+UniRef50_UPI0002BC6437: hypothetical protein	8.3333333333
+UniRef50_UPI0002BC6437: hypothetical protein|g__Acinetobacter.s__Acinetobacter_baumannii	8.3333333333
+UniRef50_V1AC24	8.3333333333
+UniRef50_V1AC24|unclassified	8.3333333333
+UniRef50_X6KS77	8.3333333333
+UniRef50_X6KS77|unclassified	8.3333333333
+UniRef50_A7C347: Cytochrome C assembly family protein	8.3323890463
+UniRef50_A7C347: Cytochrome C assembly family protein|unclassified	8.3323890463
+UniRef50_R6BDT2	8.3308459637
+UniRef50_R6BDT2|g__Clostridium.s__Clostridium_beijerinckii	8.3308459637
+UniRef50_A8IHJ3: Altronate oxidoreductase	8.3299166730
+UniRef50_A8IHJ3: Altronate oxidoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.3299166730
+UniRef50_T2G718: Oxalyl-CoA decarboxylase	8.3294002124
+UniRef50_T2G718: Oxalyl-CoA decarboxylase|g__Escherichia.s__Escherichia_coli	8.3294002124
+UniRef50_V5SSU9: Sodium:proton antiporter	8.3283198716
+UniRef50_V5SSU9: Sodium:proton antiporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3283198716
+UniRef50_A3MIQ6: Phosphoglucosamine mutase	8.3233390945
+UniRef50_A3MIQ6: Phosphoglucosamine mutase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7212561942
+UniRef50_A3MIQ6: Phosphoglucosamine mutase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6020829003
+UniRef50_Q6GFB8: Protein map	8.3215926747
+UniRef50_Q6GFB8: Protein map|g__Staphylococcus.s__Staphylococcus_aureus	8.3215926747
+UniRef50_Q04804: Sensor protein PfeS	8.3184949367
+UniRef50_Q04804: Sensor protein PfeS|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1219198152
+UniRef50_Q04804: Sensor protein PfeS|unclassified	1.1965751215
+UniRef50_Q4ZME8: Plasmid stabilization system	8.3184789067
+UniRef50_Q4ZME8: Plasmid stabilization system|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3184789067
+UniRef50_B2V5D3: UV damage endonuclease UvdE	8.3181262393
+UniRef50_B2V5D3: UV damage endonuclease UvdE|g__Clostridium.s__Clostridium_beijerinckii	8.3181262393
+UniRef50_H8FSH1	8.3180560743
+UniRef50_H8FSH1|unclassified	8.3180560743
+UniRef50_A5UP35	8.3177699384
+UniRef50_A5UP35|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.3177699384
+UniRef50_W5V0V9: Diguanylate cyclase	8.3169836497
+UniRef50_W5V0V9: Diguanylate cyclase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3169836497
+UniRef50_M4WZE8	8.3128154149
+UniRef50_M4WZE8|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3128154149
+UniRef50_E8ZPJ7: Flagellar motor rotation protein MotB	8.3118890628
+UniRef50_E8ZPJ7: Flagellar motor rotation protein MotB|g__Clostridium.s__Clostridium_beijerinckii	8.3118890628
+UniRef50_U5MQ20	8.3101184706
+UniRef50_U5MQ20|g__Clostridium.s__Clostridium_beijerinckii	8.3101184706
+UniRef50_S6ACQ5: Peptidase S16 family protein	8.3070537780
+UniRef50_S6ACQ5: Peptidase S16 family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3070537780
+UniRef50_G7LZT8: Beta-lactamase domain-containing protein	8.3066796467
+UniRef50_G7LZT8: Beta-lactamase domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	8.3066796467
+UniRef50_J0XW17	8.3062031769
+UniRef50_J0XW17|unclassified	8.3062031769
+UniRef50_A8IC01: Aminotransferase	8.3043762412
+UniRef50_A8IC01: Aminotransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.3043762412
+UniRef50_G7M9J3: Nitrilase/cyanide hydratase and apolipoprotein N-acyltransferase	8.3031117649
+UniRef50_G7M9J3: Nitrilase/cyanide hydratase and apolipoprotein N-acyltransferase|g__Clostridium.s__Clostridium_beijerinckii	8.3031117649
+UniRef50_A1B215: DSBA oxidoreductase	8.3030562353
+UniRef50_A1B215: DSBA oxidoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.3030562353
+UniRef50_X5K482: Hydrolase, haloacid dehalogenase-like family	8.2985800970
+UniRef50_X5K482: Hydrolase, haloacid dehalogenase-like family|g__Streptococcus.s__Streptococcus_agalactiae	8.2985800970
+UniRef50_Q4L4P7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	8.2975533292
+UniRef50_Q4L4P7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	4.5662100457
+UniRef50_Q4L4P7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	3.7313432836
+UniRef50_S9SLF7: Autoinducer binding domain protein	8.2945871582
+UniRef50_S9SLF7: Autoinducer binding domain protein|unclassified	8.2945871582
+UniRef50_P46450: Long-chain-fatty-acid--CoA ligase	8.2932930517
+UniRef50_P46450: Long-chain-fatty-acid--CoA ligase|g__Acinetobacter.s__Acinetobacter_baumannii	4.6448653733
+UniRef50_P46450: Long-chain-fatty-acid--CoA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6484276784
+UniRef50_B1ES29: Inner membrane protein YeaI	8.2928300962
+UniRef50_B1ES29: Inner membrane protein YeaI|g__Escherichia.s__Escherichia_coli	8.2928300962
+UniRef50_Q0T8K3: Ribosomal protein S6--L-glutamate ligase	8.2907571132
+UniRef50_Q0T8K3: Ribosomal protein S6--L-glutamate ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1632823224
+UniRef50_Q0T8K3: Ribosomal protein S6--L-glutamate ligase|unclassified	0.1274747908
+UniRef50_UPI0003822CF6: hypothetical protein	8.2902877610
+UniRef50_UPI0003822CF6: hypothetical protein|unclassified	8.2902877610
+UniRef50_Q1R7V2	8.2865863016
+UniRef50_Q1R7V2|g__Escherichia.s__Escherichia_coli	8.2865863016
+UniRef50_C5BKK1: ATP synthase subunit a	8.2852347006
+UniRef50_C5BKK1: ATP synthase subunit a|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.2852347006
+UniRef50_P33227: Putative protein StfE (Fragment)	8.2836821646
+UniRef50_P33227: Putative protein StfE (Fragment)|g__Escherichia.s__Escherichia_coli	8.2836821646
+UniRef50_T0TL42: Cell division protein DivIC (FtsB)	8.2815141124
+UniRef50_T0TL42: Cell division protein DivIC (FtsB)|g__Streptococcus.s__Streptococcus_mutans	8.2815141124
+UniRef50_C5WGK5	8.2806267134
+UniRef50_C5WGK5|g__Streptococcus.s__Streptococcus_mutans	8.2806267134
+UniRef50_A1S9I7: NAD(P) transhydrogenase subunit beta	8.2753594983
+UniRef50_A1S9I7: NAD(P) transhydrogenase subunit beta|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.2753594983
+UniRef50_M2IT76: Glucosyltransferase-S	8.2744597478
+UniRef50_M2IT76: Glucosyltransferase-S|g__Streptococcus.s__Streptococcus_mutans	8.2744597478
+UniRef50_U3T7W9	8.2705744977
+UniRef50_U3T7W9|g__Acinetobacter.s__Acinetobacter_baumannii	8.2705744977
+UniRef50_B9KQ53	8.2705302830
+UniRef50_B9KQ53|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.2705302830
+UniRef50_A0A031F6L1: Porin O	8.2671476983
+UniRef50_A0A031F6L1: Porin O|unclassified	8.2671476983
+UniRef50_Q0FWA2	8.2651470447
+UniRef50_Q0FWA2|unclassified	8.2651470447
+UniRef50_U7PJB3	8.2650273224
+UniRef50_U7PJB3|g__Staphylococcus.s__Staphylococcus_epidermidis	8.2650273224
+UniRef50_A5IR50	8.2644628099
+UniRef50_A5IR50|g__Staphylococcus.s__Staphylococcus_aureus	8.2644628099
+UniRef50_C5N1D9	8.2644628099
+UniRef50_C5N1D9|g__Staphylococcus.s__Staphylococcus_aureus	8.2644628099
+UniRef50_D1BH34	8.2644628099
+UniRef50_D1BH34|g__Propionibacterium.s__Propionibacterium_acnes	8.2644628099
+UniRef50_E1HUT7	8.2644628099
+UniRef50_E1HUT7|g__Escherichia.s__Escherichia_coli	8.2644628099
+UniRef50_P37415	8.2644628099
+UniRef50_P37415|g__Escherichia.s__Escherichia_coli	8.2644628099
+UniRef50_Q9HYZ2	8.2644628099
+UniRef50_Q9HYZ2|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.2644628099
+UniRef50_U9XP19	8.2644628099
+UniRef50_U9XP19|unclassified	8.2644628099
+UniRef50_V4YZY4	8.2644628099
+UniRef50_V4YZY4|g__Streptococcus.s__Streptococcus_mutans	8.2644628099
+UniRef50_V4Z1J1	8.2644628099
+UniRef50_V4Z1J1|g__Streptococcus.s__Streptococcus_mutans	8.2644628099
+UniRef50_F8G2I2: (P)ppGpp synthetase I, SpoT/RelA	8.2641957483
+UniRef50_F8G2I2: (P)ppGpp synthetase I, SpoT/RelA|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.2641957483
+UniRef50_P36667: Rhamnosyltransferase WbbL	8.2616454994
+UniRef50_P36667: Rhamnosyltransferase WbbL|g__Escherichia.s__Escherichia_coli	8.2616454994
+UniRef50_A5UL75: 50S ribosomal protein L5	8.2609438569
+UniRef50_A5UL75: 50S ribosomal protein L5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.2609438569
+UniRef50_I1E8F4	8.2590075349
+UniRef50_I1E8F4|unclassified	8.2590075349
+UniRef50_Q3JNU0: NAD(P) transhydrogenase subunit beta	8.2582216051
+UniRef50_Q3JNU0: NAD(P) transhydrogenase subunit beta|g__Acinetobacter.s__Acinetobacter_baumannii	8.2582216051
+UniRef50_A3PIG7	8.2577085639
+UniRef50_A3PIG7|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.3743661198
+UniRef50_A3PIG7|unclassified	3.8833424441
+UniRef50_W8RR26: Malonate transporter	8.2571394311
+UniRef50_W8RR26: Malonate transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.2571394311
+UniRef50_F6AVC1: Transcriptional regulator, LysR family	8.2539230477
+UniRef50_F6AVC1: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.2539230477
+UniRef50_Q9KUD9: Ribosomal RNA small subunit methyltransferase I	8.2538368999
+UniRef50_Q9KUD9: Ribosomal RNA small subunit methyltransferase I|g__Acinetobacter.s__Acinetobacter_baumannii	3.8622956784
+UniRef50_Q9KUD9: Ribosomal RNA small subunit methyltransferase I|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6806526807
+UniRef50_Q9KUD9: Ribosomal RNA small subunit methyltransferase I|g__Escherichia.s__Escherichia_coli	1.2531328321
+UniRef50_Q9KUD9: Ribosomal RNA small subunit methyltransferase I|unclassified	0.4577557088
+UniRef50_UPI000373F2CC: hypothetical protein	8.2531715935
+UniRef50_UPI000373F2CC: hypothetical protein|unclassified	8.2531715935
+UniRef50_Q92MJ1: Arginine biosynthesis bifunctional protein ArgJ	8.2467474679
+UniRef50_Q92MJ1: Arginine biosynthesis bifunctional protein ArgJ|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.9486843048
+UniRef50_Q92MJ1: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.2980631631
+UniRef50_E2QLT7	8.2463947888
+UniRef50_E2QLT7|g__Escherichia.s__Escherichia_coli	8.2463947888
+UniRef50_A6UBX6: Binding-protein-dependent transport systems inner membrane component	8.2463033907
+UniRef50_A6UBX6: Binding-protein-dependent transport systems inner membrane component|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.2463033907
+UniRef50_C4Z2C3	8.2404274785
+UniRef50_C4Z2C3|g__Clostridium.s__Clostridium_beijerinckii	8.2404274785
+UniRef50_UPI00046884E4: GntR family transcriptional regulator	8.2400071264
+UniRef50_UPI00046884E4: GntR family transcriptional regulator|unclassified	8.2400071264
+UniRef50_A8LMZ1: N-formylglutamate amidohydrolase	8.2385417918
+UniRef50_A8LMZ1: N-formylglutamate amidohydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.2385417918
+UniRef50_B4EPF8: LysR family regulatory protein	8.2358034012
+UniRef50_B4EPF8: LysR family regulatory protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.2358034012
+UniRef50_B5ZHY8: Sel1 domain protein repeat-containing protein	8.2352761063
+UniRef50_B5ZHY8: Sel1 domain protein repeat-containing protein|unclassified	8.2352761063
+UniRef50_C5WE22	8.2350520927
+UniRef50_C5WE22|g__Streptococcus.s__Streptococcus_agalactiae	8.2350520927
+UniRef50_A6M0N2: Signal transduction histidine kinase, LytS	8.2343300193
+UniRef50_A6M0N2: Signal transduction histidine kinase, LytS|g__Clostridium.s__Clostridium_beijerinckii	8.2343300193
+UniRef50_B3PGL6: Pyoverdine ABC transporter, permease/ATP-binding protein	8.2340744120
+UniRef50_B3PGL6: Pyoverdine ABC transporter, permease/ATP-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.2340744120
+UniRef50_B9KR03: Asparagine synthase	8.2330493755
+UniRef50_B9KR03: Asparagine synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.2330493755
+UniRef50_O68826	8.2275311576
+UniRef50_O68826|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.2275311576
+UniRef50_Q3JJE8: Oxidoreductase, short chain dehydrogenase/reductase family	8.2266312505
+UniRef50_Q3JJE8: Oxidoreductase, short chain dehydrogenase/reductase family|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6240671480
+UniRef50_Q3JJE8: Oxidoreductase, short chain dehydrogenase/reductase family|g__Acinetobacter.s__Acinetobacter_baumannii	1.6025641026
+UniRef50_G7MA72: Cys/Met metabolism pyridoxal-phosphate-dependent protein	8.2245600951
+UniRef50_G7MA72: Cys/Met metabolism pyridoxal-phosphate-dependent protein|g__Clostridium.s__Clostridium_beijerinckii	8.2245600951
+UniRef50_Q9I1X4	8.2237950792
+UniRef50_Q9I1X4|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.2237950792
+UniRef50_H0SRC2	8.2232483248
+UniRef50_H0SRC2|unclassified	8.2232483248
+UniRef50_P76498	8.2224247812
+UniRef50_P76498|g__Escherichia.s__Escherichia_coli	8.2224247812
+UniRef50_K4A3K7	8.2186794201
+UniRef50_K4A3K7|unclassified	8.2186794201
+UniRef50_UPI0003643AE6: hypothetical protein	8.2184835910
+UniRef50_UPI0003643AE6: hypothetical protein|unclassified	8.2184835910
+UniRef50_P48372: DNA gyrase subunit A	8.2174751601
+UniRef50_P48372: DNA gyrase subunit A|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2946870400
+UniRef50_P48372: DNA gyrase subunit A|g__Escherichia.s__Escherichia_coli	2.4641191369
+UniRef50_P48372: DNA gyrase subunit A|g__Neisseria.s__Neisseria_meningitidis	0.4004805767
+UniRef50_P48372: DNA gyrase subunit A|unclassified	0.0581884064
+UniRef50_L7DMI2	8.2170313527
+UniRef50_L7DMI2|unclassified	8.2170313527
+UniRef50_D7Y9J7: General secretory system II, protein E, N-terminal domain protein	8.2169363874
+UniRef50_D7Y9J7: General secretory system II, protein E, N-terminal domain protein|g__Escherichia.s__Escherichia_coli	8.2169363874
+UniRef50_A9I0E6: Homoserine O-acetyltransferase	8.2157346547
+UniRef50_A9I0E6: Homoserine O-acetyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1427009423
+UniRef50_A9I0E6: Homoserine O-acetyltransferase|unclassified	0.0730337124
+UniRef50_UPI00037585D1: hypothetical protein	8.2145189175
+UniRef50_UPI00037585D1: hypothetical protein|unclassified	8.2145189175
+UniRef50_A4WWP6: Ribosome-binding factor A	8.2101806240
+UniRef50_A4WWP6: Ribosome-binding factor A|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.2101806240
+UniRef50_L8NG89: SH3 domain protein	8.2078776865
+UniRef50_L8NG89: SH3 domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.2078776865
+UniRef50_P45871	8.2070067417
+UniRef50_P45871|g__Streptococcus.s__Streptococcus_mutans	8.2070067417
+UniRef50_UPI0003614BF9: hypothetical protein	8.2069175137
+UniRef50_UPI0003614BF9: hypothetical protein|unclassified	8.2069175137
+UniRef50_F6B016: Bile acid:sodium symporter	8.2030378310
+UniRef50_F6B016: Bile acid:sodium symporter|g__Acinetobacter.s__Acinetobacter_baumannii	8.2030378310
+UniRef50_B2FK26: UvrABC system protein C	8.2000423125
+UniRef50_B2FK26: UvrABC system protein C|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.2000423125
+UniRef50_X4Z0U6: Ferredoxin--NADP reductase	8.1990170679
+UniRef50_X4Z0U6: Ferredoxin--NADP reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1990170679
+UniRef50_D4U3B1	8.1967213115
+UniRef50_D4U3B1|unclassified	8.1967213115
+UniRef50_E7HNI9	8.1967213115
+UniRef50_E7HNI9|g__Escherichia.s__Escherichia_coli	8.1967213115
+UniRef50_H3UQH0	8.1967213115
+UniRef50_H3UQH0|unclassified	8.1967213115
+UniRef50_I0C7B1	8.1967213115
+UniRef50_I0C7B1|g__Staphylococcus.s__Staphylococcus_aureus	8.1967213115
+UniRef50_Q8XHR6: 50S ribosomal protein L10	8.1967213115
+UniRef50_Q8XHR6: 50S ribosomal protein L10|g__Clostridium.s__Clostridium_beijerinckii	8.1967213115
+UniRef50_U3SUU3	8.1936730248
+UniRef50_U3SUU3|g__Streptococcus.s__Streptococcus_mutans	8.1936730248
+UniRef50_A3PNQ6: Response regulator receiver protein	8.1934579875
+UniRef50_A3PNQ6: Response regulator receiver protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.1934579875
+UniRef50_V8MVT4: Transposase	8.1916653988
+UniRef50_V8MVT4: Transposase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.6818181818
+UniRef50_V8MVT4: Transposase|unclassified	2.5098472170
+UniRef50_A4WV08: Diguanylate cyclase	8.1896700538
+UniRef50_A4WV08: Diguanylate cyclase|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.0825101569
+UniRef50_A4WV08: Diguanylate cyclase|unclassified	1.1071598969
+UniRef50_W1AUZ6: Exonuclease SbcC	8.1879049781
+UniRef50_W1AUZ6: Exonuclease SbcC|g__Escherichia.s__Escherichia_coli	8.1879049781
+UniRef50_A7ZM51: Voltage-gated ClC-type chloride channel ClcB	8.1846123378
+UniRef50_A7ZM51: Voltage-gated ClC-type chloride channel ClcB|g__Escherichia.s__Escherichia_coli	8.1846123378
+UniRef50_A4WNN0: NnrU family protein	8.1840960002
+UniRef50_A4WNN0: NnrU family protein|unclassified	8.1840960002
+UniRef50_UPI000255E7F9: MerR family transcriptional regulator	8.1831886283
+UniRef50_UPI000255E7F9: MerR family transcriptional regulator|unclassified	8.1831886283
+UniRef50_Q3V7R9: 4-hydroxythreonine-4-phosphate dehydrogenase	8.1830034649
+UniRef50_Q3V7R9: 4-hydroxythreonine-4-phosphate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.1830034649
+UniRef50_E3A0D4	8.1809227488
+UniRef50_E3A0D4|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.4903834857
+UniRef50_E3A0D4|unclassified	0.6905392631
+UniRef50_V5UIB0: CoA transferase	8.1795627037
+UniRef50_V5UIB0: CoA transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1795627037
+UniRef50_A1A8T2	8.1789450309
+UniRef50_A1A8T2|unclassified	8.1789450309
+UniRef50_U5MKL2: DEAD/DEAH box helicase	8.1757750356
+UniRef50_U5MKL2: DEAD/DEAH box helicase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1757750356
+UniRef50_P76586	8.1757181395
+UniRef50_P76586|g__Escherichia.s__Escherichia_coli	7.8214989648
+UniRef50_P76586|unclassified	0.3542191747
+UniRef50_Q8XHH1: Prolipoprotein diacylglyceryl transferase 2	8.1747846911
+UniRef50_Q8XHH1: Prolipoprotein diacylglyceryl transferase 2|g__Clostridium.s__Clostridium_beijerinckii	8.1747846911
+UniRef50_P76150	8.1744236266
+UniRef50_P76150|g__Escherichia.s__Escherichia_coli	8.1744236266
+UniRef50_Q88PE8: Sensor histidine kinase	8.1738792083
+UniRef50_Q88PE8: Sensor histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1738792083
+UniRef50_A4WXA2: Sulfotransferase	8.1736956426
+UniRef50_A4WXA2: Sulfotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.1736956426
+UniRef50_T2K0T9	8.1720217772
+UniRef50_T2K0T9|unclassified	8.1720217772
+UniRef50_Q9HZP6: Electron transfer flavoprotein subunit beta	8.1714154187
+UniRef50_Q9HZP6: Electron transfer flavoprotein subunit beta|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1714154187
+UniRef50_Q5HLA5: Acetyltransferase, GNAT family	8.1713853540
+UniRef50_Q5HLA5: Acetyltransferase, GNAT family|g__Staphylococcus.s__Staphylococcus_epidermidis	8.1713853540
+UniRef50_D8JMF9	8.1643656469
+UniRef50_D8JMF9|g__Acinetobacter.s__Acinetobacter_baumannii	8.1643656469
+UniRef50_J5R8Q7	8.1632653061
+UniRef50_J5R8Q7|unclassified	8.1632653061
+UniRef50_I7EZE1	8.1616046465
+UniRef50_I7EZE1|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.1616046465
+UniRef50_V5SXS6: Multidrug transporter	8.1601203986
+UniRef50_V5SXS6: Multidrug transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1601203986
+UniRef50_T2HAA3: D-serine/D-alanine/glycine transporter	8.1576994864
+UniRef50_T2HAA3: D-serine/D-alanine/glycine transporter|g__Escherichia.s__Escherichia_coli	8.1576994864
+UniRef50_UPI0004545A7D: PREDICTED: zinc finger protein 775-like	8.1566068515
+UniRef50_UPI0004545A7D: PREDICTED: zinc finger protein 775-like|unclassified	8.1566068515
+UniRef50_Q9HUG6: Putative lipopolysaccharide biosynthesis protein PA4999	8.1563381692
+UniRef50_Q9HUG6: Putative lipopolysaccharide biosynthesis protein PA4999|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.6764044016
+UniRef50_Q9HUG6: Putative lipopolysaccharide biosynthesis protein PA4999|unclassified	0.4799337676
+UniRef50_P38102	8.1544206229
+UniRef50_P38102|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1544206229
+UniRef50_Q4KG00	8.1533231228
+UniRef50_Q4KG00|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1533231228
+UniRef50_R7HT16	8.1520101260
+UniRef50_R7HT16|g__Clostridium.s__Clostridium_beijerinckii	8.1520101260
+UniRef50_S5XRZ9	8.1506264786
+UniRef50_S5XRZ9|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.5185369786
+UniRef50_S5XRZ9|unclassified	2.6320895000
+UniRef50_U5MSS6: Single-stranded-DNA-specific exonuclease RecJ	8.1478588015
+UniRef50_U5MSS6: Single-stranded-DNA-specific exonuclease RecJ|g__Clostridium.s__Clostridium_beijerinckii	8.1478588015
+UniRef50_N6UYM2	8.1429593301
+UniRef50_N6UYM2|unclassified	8.1429593301
+UniRef50_V9R1X9: Acriflavine resistance protein B	8.1419542579
+UniRef50_V9R1X9: Acriflavine resistance protein B|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1419542579
+UniRef50_Q3JUG7: Xanthine/uracil permease family protein	8.1375376395
+UniRef50_Q3JUG7: Xanthine/uracil permease family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1375376395
+UniRef50_F8G483: Integral membrane protein TerC	8.1361950546
+UniRef50_F8G483: Integral membrane protein TerC|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1361950546
+UniRef50_P38946: Succinyl-CoA:coenzyme A transferase	8.1343474362
+UniRef50_P38946: Succinyl-CoA:coenzyme A transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2454585473
+UniRef50_P38946: Succinyl-CoA:coenzyme A transferase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8888888889
+UniRef50_W1JJC9: Twin-arginine translocation pathway signal (Fragment)	8.1340544318
+UniRef50_W1JJC9: Twin-arginine translocation pathway signal (Fragment)|unclassified	8.1340544318
+UniRef50_D8ULN7	8.1339877108
+UniRef50_D8ULN7|unclassified	8.1339877108
+UniRef50_Q9X4Q9: Flagellar motor switch protein FliG	8.1336606753
+UniRef50_Q9X4Q9: Flagellar motor switch protein FliG|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1336606753
+UniRef50_Q9HXP6	8.1333097173
+UniRef50_Q9HXP6|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1333097173
+UniRef50_D6CMF6: Sulfite reductase	8.1329302085
+UniRef50_D6CMF6: Sulfite reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1329302085
+UniRef50_Q2SVL7: Amino acid ABC transporter, permease protein	8.1312365795
+UniRef50_Q2SVL7: Amino acid ABC transporter, permease protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1312365795
+UniRef50_C2EHJ1	8.1303685782
+UniRef50_C2EHJ1|g__Escherichia.s__Escherichia_coli	7.1428571429
+UniRef50_C2EHJ1|unclassified	0.9875114353
+UniRef50_Q9RS49: Amino acid ABC transporter, periplasmic amino acid-binding protein	8.1303092097
+UniRef50_Q9RS49: Amino acid ABC transporter, periplasmic amino acid-binding protein|g__Deinococcus.s__Deinococcus_radiodurans	8.1303092097
+UniRef50_A6UYW5	8.1300813008
+UniRef50_A6UYW5|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1300813008
+UniRef50_A8Z2F6	8.1300813008
+UniRef50_A8Z2F6|g__Staphylococcus.s__Staphylococcus_aureus	8.1300813008
+UniRef50_E9YWN9	8.1300813008
+UniRef50_E9YWN9|unclassified	8.1300813008
+UniRef50_N6DQ16	8.1300813008
+UniRef50_N6DQ16|g__Staphylococcus.s__Staphylococcus_aureus	8.1300813008
+UniRef50_Q4L389: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	8.1300813008
+UniRef50_Q4L389: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_epidermidis	8.1300813008
+UniRef50_Q6G896	8.1300813008
+UniRef50_Q6G896|g__Staphylococcus.s__Staphylococcus_aureus	8.1300813008
+UniRef50_Q8FHS4	8.1300813008
+UniRef50_Q8FHS4|g__Escherichia.s__Escherichia_coli	8.1300813008
+UniRef50_R8ZFX9	8.1300813008
+UniRef50_R8ZFX9|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1300813008
+UniRef50_W8SPH4	8.1300813008
+UniRef50_W8SPH4|g__Escherichia.s__Escherichia_coli	8.1300813008
+UniRef50_Q5HQZ7	8.1286238975
+UniRef50_Q5HQZ7|g__Staphylococcus.s__Staphylococcus_epidermidis	7.9233086482
+UniRef50_Q5HQZ7|unclassified	0.2053152494
+UniRef50_P38105: Starvation-sensing protein RspB	8.1242684731
+UniRef50_P38105: Starvation-sensing protein RspB|g__Escherichia.s__Escherichia_coli	7.9453748477
+UniRef50_P38105: Starvation-sensing protein RspB|unclassified	0.1788936255
+UniRef50_S1I0D4	8.1234409607
+UniRef50_S1I0D4|g__Escherichia.s__Escherichia_coli	8.1234409607
+UniRef50_G7LZ49: Alpha/beta hydrolase fold protein	8.1225441727
+UniRef50_G7LZ49: Alpha/beta hydrolase fold protein|g__Clostridium.s__Clostridium_beijerinckii	8.1225441727
+UniRef50_UPI000476817E: Clp protease ClpS	8.1158194090
+UniRef50_UPI000476817E: Clp protease ClpS|unclassified	8.1158194090
+UniRef50_K0S6E2	8.1143535983
+UniRef50_K0S6E2|unclassified	8.1143535983
+UniRef50_O83217: Elongation factor Tu	8.1132457456
+UniRef50_O83217: Elongation factor Tu|g__Deinococcus.s__Deinococcus_radiodurans	5.0770435950
+UniRef50_O83217: Elongation factor Tu|g__Propionibacterium.s__Propionibacterium_acnes	2.1822311855
+UniRef50_O83217: Elongation factor Tu|g__Clostridium.s__Clostridium_beijerinckii	0.8539709650
+UniRef50_A8AZM1: 30S ribosomal protein S19	8.1121305791
+UniRef50_A8AZM1: 30S ribosomal protein S19|g__Streptococcus.s__Streptococcus_mutans	8.1121305791
+UniRef50_W0YTS0: Periplasmic tail-specific protease	8.1115745897
+UniRef50_W0YTS0: Periplasmic tail-specific protease|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1115745897
+UniRef50_B2SB84: Zinc-containing alcohol dehydrogenase superfamily	8.1110802327
+UniRef50_B2SB84: Zinc-containing alcohol dehydrogenase superfamily|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.1110802327
+UniRef50_B9KX78	8.1108323307
+UniRef50_B9KX78|unclassified	8.1108323307
+UniRef50_B9KQA0	8.1108234059
+UniRef50_B9KQA0|unclassified	4.4071197022
+UniRef50_B9KQA0|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.7037037037
+UniRef50_UPI00035D0365: hypothetical protein	8.1099965533
+UniRef50_UPI00035D0365: hypothetical protein|unclassified	8.1099965533
+UniRef50_E2ZST2	8.1057393521
+UniRef50_E2ZST2|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1057393521
+UniRef50_M4WUT5	8.1057350426
+UniRef50_M4WUT5|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.1057350426
+UniRef50_B9NM77	8.1049458373
+UniRef50_B9NM77|unclassified	8.1049458373
+UniRef50_A4WXC0: Aldose 1-epimerase	8.1034550829
+UniRef50_A4WXC0: Aldose 1-epimerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.1034550829
+UniRef50_Q2NGC9	8.1009767199
+UniRef50_Q2NGC9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.1009767199
+UniRef50_Q04BU0: Predicted membrane protein	8.1009316071
+UniRef50_Q04BU0: Predicted membrane protein|g__Streptococcus.s__Streptococcus_mutans	8.1009316071
+UniRef50_V4RDN2: Putative phage protein	8.1004853732
+UniRef50_V4RDN2: Putative phage protein|g__Staphylococcus.s__Staphylococcus_aureus	8.1004853732
+UniRef50_R4ZPM4: Cell wall surface anchor family protein	8.0994005893
+UniRef50_R4ZPM4: Cell wall surface anchor family protein|g__Streptococcus.s__Streptococcus_agalactiae	8.0994005893
+UniRef50_W8HDQ5	8.0971659919
+UniRef50_W8HDQ5|unclassified	8.0971659919
+UniRef50_F0JFM2: Preprotein translocase, YajC subunit	8.0963154493
+UniRef50_F0JFM2: Preprotein translocase, YajC subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.0963154493
+UniRef50_P32722: Porin D	8.0935347047
+UniRef50_P32722: Porin D|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7488270637
+UniRef50_P32722: Porin D|unclassified	0.3447076410
+UniRef50_W6BVV5: Short chain dehydrogenase family protein	8.0933574225
+UniRef50_W6BVV5: Short chain dehydrogenase family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0933574225
+UniRef50_O68562: Outer membrane protein assembly factor BamE	8.0920875226
+UniRef50_O68562: Outer membrane protein assembly factor BamE|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0920875226
+UniRef50_R9ZCM7: Amino acid APC transporter	8.0873036073
+UniRef50_R9ZCM7: Amino acid APC transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0873036073
+UniRef50_B2UZX1: Medium FAD-binding subunit of molybdenum enzyme	8.0849626565
+UniRef50_B2UZX1: Medium FAD-binding subunit of molybdenum enzyme|g__Clostridium.s__Clostridium_beijerinckii	8.0849626565
+UniRef50_L0VXB9: Putative transport system permease protein (Fragment)	8.0843482134
+UniRef50_L0VXB9: Putative transport system permease protein (Fragment)|unclassified	8.0843482134
+UniRef50_C5BF52: Adenine deaminase	8.0834398372
+UniRef50_C5BF52: Adenine deaminase|g__Escherichia.s__Escherichia_coli	7.9761325942
+UniRef50_C5BF52: Adenine deaminase|unclassified	0.1073072430
+UniRef50_X5KJM0: YitT family protein	8.0832525420
+UniRef50_X5KJM0: YitT family protein|g__Streptococcus.s__Streptococcus_agalactiae	8.0832525420
+UniRef50_P31909: Hydrogenase expression/formation protein HoxM	8.0827978675
+UniRef50_P31909: Hydrogenase expression/formation protein HoxM|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.0827978675
+UniRef50_D3E1R7: ZPR1 zinc-finger domain-containing protein	8.0814756425
+UniRef50_D3E1R7: ZPR1 zinc-finger domain-containing protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.0814756425
+UniRef50_L9XTJ8	8.0809536495
+UniRef50_L9XTJ8|unclassified	8.0809536495
+UniRef50_A0A023KTG8	8.0785209200
+UniRef50_A0A023KTG8|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0785209200
+UniRef50_Q2T0X3: Cholesterol oxidase	8.0780172188
+UniRef50_Q2T0X3: Cholesterol oxidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0780172188
+UniRef50_P10151: HTH-type transcriptional regulator LeuO	8.0764491041
+UniRef50_P10151: HTH-type transcriptional regulator LeuO|g__Escherichia.s__Escherichia_coli	8.0764491041
+UniRef50_A6VCY0: Oxaloacetate decarboxylase	8.0753147216
+UniRef50_A6VCY0: Oxaloacetate decarboxylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3008945986
+UniRef50_A6VCY0: Oxaloacetate decarboxylase|unclassified	0.7744201229
+UniRef50_UPI00004C2470: COG1166: Arginine decarboxylase (spermidine biosynthesis)	8.0683226552
+UniRef50_UPI00004C2470: COG1166: Arginine decarboxylase (spermidine biosynthesis)|unclassified	8.0683226552
+UniRef50_UPI00046D479A: hypothetical protein	8.0674919072
+UniRef50_UPI00046D479A: hypothetical protein|unclassified	8.0674919072
+UniRef50_A6QJF6	8.0661157025
+UniRef50_A6QJF6|unclassified	8.0661157025
+UniRef50_D2QKI4: AMP-dependent synthetase and ligase	8.0652594302
+UniRef50_D2QKI4: AMP-dependent synthetase and ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0652594302
+UniRef50_Q3IV24	8.0648897900
+UniRef50_Q3IV24|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.4636603706
+UniRef50_Q3IV24|unclassified	0.6012294193
+UniRef50_A0A009GFK1	8.0645161290
+UniRef50_A0A009GFK1|g__Acinetobacter.s__Acinetobacter_baumannii	8.0645161290
+UniRef50_A4VRU0: Translation elongation factor P (EF-P)	8.0645161290
+UniRef50_A4VRU0: Translation elongation factor P (EF-P)|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0645161290
+UniRef50_D3QGG4	8.0645161290
+UniRef50_D3QGG4|g__Staphylococcus.s__Staphylococcus_epidermidis	8.0645161290
+UniRef50_E2WRM5: Carboxylate-amine ligase ybdK	8.0645161290
+UniRef50_E2WRM5: Carboxylate-amine ligase ybdK|g__Escherichia.s__Escherichia_coli	8.0645161290
+UniRef50_G5Q319	8.0645161290
+UniRef50_G5Q319|unclassified	8.0645161290
+UniRef50_H1SSW9: Arginine repressor, DNA-binding domain protein (Fragment)	8.0645161290
+UniRef50_H1SSW9: Arginine repressor, DNA-binding domain protein (Fragment)|g__Staphylococcus.s__Staphylococcus_aureus	8.0645161290
+UniRef50_I0C683	8.0645161290
+UniRef50_I0C683|g__Staphylococcus.s__Staphylococcus_aureus	8.0645161290
+UniRef50_Q5HQS4	8.0645161290
+UniRef50_Q5HQS4|g__Staphylococcus.s__Staphylococcus_epidermidis	8.0645161290
+UniRef50_Q5LZ42	8.0645161290
+UniRef50_Q5LZ42|g__Streptococcus.s__Streptococcus_mutans	8.0645161290
+UniRef50_S8H842	8.0645161290
+UniRef50_S8H842|g__Streptococcus.s__Streptococcus_agalactiae	8.0645161290
+UniRef50_A6LUQ9	8.0595894248
+UniRef50_A6LUQ9|g__Clostridium.s__Clostridium_beijerinckii	8.0595894248
+UniRef50_P75916: Inner membrane protein YcdZ	8.0552122903
+UniRef50_P75916: Inner membrane protein YcdZ|g__Escherichia.s__Escherichia_coli	8.0552122903
+UniRef50_B9TAE6: Glycine betaine/L-proline transport system permease protein proW, putative	8.0545229534
+UniRef50_B9TAE6: Glycine betaine/L-proline transport system permease protein proW, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0545229534
+UniRef50_UPI0003628C82: hypothetical protein	8.0530830200
+UniRef50_UPI0003628C82: hypothetical protein|unclassified	8.0530830200
+UniRef50_UPI00037FCE78: hypothetical protein	8.0526422420
+UniRef50_UPI00037FCE78: hypothetical protein|unclassified	8.0526422420
+UniRef50_E3A6Z3	8.0489235616
+UniRef50_E3A6Z3|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8780487805
+UniRef50_E3A6Z3|unclassified	3.1708747811
+UniRef50_R9YT77: Acetyltransferase family protein	8.0464764480
+UniRef50_R9YT77: Acetyltransferase family protein|g__Staphylococcus.s__Staphylococcus_aureus	8.0464764480
+UniRef50_Q87QK9: Histidine biosynthesis bifunctional protein HisB	8.0462234498
+UniRef50_Q87QK9: Histidine biosynthesis bifunctional protein HisB|g__Escherichia.s__Escherichia_coli	7.3915124225
+UniRef50_Q87QK9: Histidine biosynthesis bifunctional protein HisB|unclassified	0.6547110273
+UniRef50_X5EXI6	8.0453967408
+UniRef50_X5EXI6|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0453967408
+UniRef50_S0X8L2: Toxin YhaV (Fragment)	8.0451619941
+UniRef50_S0X8L2: Toxin YhaV (Fragment)|g__Escherichia.s__Escherichia_coli	5.6179775281
+UniRef50_S0X8L2: Toxin YhaV (Fragment)|unclassified	2.4271844660
+UniRef50_O34607: Probable L-serine dehydratase, alpha chain	8.0449371892
+UniRef50_O34607: Probable L-serine dehydratase, alpha chain|g__Clostridium.s__Clostridium_beijerinckii	6.5187298159
+UniRef50_O34607: Probable L-serine dehydratase, alpha chain|g__Streptococcus.s__Streptococcus_agalactiae	1.3495276653
+UniRef50_O34607: Probable L-serine dehydratase, alpha chain|unclassified	0.1766797080
+UniRef50_A5W0Y9: Peptidase M19, renal dipeptidase	8.0435676597
+UniRef50_A5W0Y9: Peptidase M19, renal dipeptidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0435676597
+UniRef50_V7GTL1	8.0428070431
+UniRef50_V7GTL1|unclassified	8.0428070431
+UniRef50_A0A024HAE7: Glucose-6-phosphate 1-dehydrogenase	8.0397928305
+UniRef50_A0A024HAE7: Glucose-6-phosphate 1-dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0397928305
+UniRef50_A8I6E1: Lysyl-tRNA synthetase protein	8.0395831515
+UniRef50_A8I6E1: Lysyl-tRNA synthetase protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.0395831515
+UniRef50_P28305: Aminodeoxychorismate lyase	8.0383988077
+UniRef50_P28305: Aminodeoxychorismate lyase|g__Escherichia.s__Escherichia_coli	8.0383988077
+UniRef50_S5XVE4: Type VI secretion system ATPase	8.0362421648
+UniRef50_S5XVE4: Type VI secretion system ATPase|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.0362421648
+UniRef50_H1T7S2	8.0350159238
+UniRef50_H1T7S2|g__Staphylococcus.s__Staphylococcus_aureus	8.0350159238
+UniRef50_A5UJW2: UPF0179 protein Msm_0285	8.0338713800
+UniRef50_A5UJW2: UPF0179 protein Msm_0285|g__Methanobrevibacter.s__Methanobrevibacter_smithii	8.0338713800
+UniRef50_A3PIA7	8.0323077317
+UniRef50_A3PIA7|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.0871658607
+UniRef50_A3PIA7|unclassified	0.9451418710
+UniRef50_Q4ZNX1: Transcriptional regulator, AraC family with amidase-like domain protein	8.0315226854
+UniRef50_Q4ZNX1: Transcriptional regulator, AraC family with amidase-like domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0315226854
+UniRef50_P42603: Inner membrane protein YgjV	8.0292817668
+UniRef50_P42603: Inner membrane protein YgjV|g__Escherichia.s__Escherichia_coli	8.0292817668
+UniRef50_Q9RU90	8.0288402786
+UniRef50_Q9RU90|g__Deinococcus.s__Deinococcus_radiodurans	8.0288402786
+UniRef50_A6M3E3: PTS system, glucose subfamily, IIA subunit	8.0287116585
+UniRef50_A6M3E3: PTS system, glucose subfamily, IIA subunit|g__Clostridium.s__Clostridium_beijerinckii	8.0287116585
+UniRef50_U5SRV6: Integrase	8.0282394102
+UniRef50_U5SRV6: Integrase|g__Escherichia.s__Escherichia_coli	8.0282394102
+UniRef50_J0HWL6: Ornithine cyclodeaminase family protein	8.0281941727
+UniRef50_J0HWL6: Ornithine cyclodeaminase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	6.7381136630
+UniRef50_J0HWL6: Ornithine cyclodeaminase family protein|unclassified	1.2900805096
+UniRef50_A4WPX8: Cbb3-type cytochrome oxidase component	8.0243185682
+UniRef50_A4WPX8: Cbb3-type cytochrome oxidase component|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.2463768116
+UniRef50_A4WPX8: Cbb3-type cytochrome oxidase component|unclassified	0.7779417566
+UniRef50_Q8Y3B0: Peptide deformylase 1	8.0228605869
+UniRef50_Q8Y3B0: Peptide deformylase 1|g__Escherichia.s__Escherichia_coli	4.6971822281
+UniRef50_Q8Y3B0: Peptide deformylase 1|g__Acinetobacter.s__Acinetobacter_baumannii	2.7100271003
+UniRef50_Q8Y3B0: Peptide deformylase 1|unclassified	0.6156512585
+UniRef50_R4ZA72	8.0201337223
+UniRef50_R4ZA72|g__Streptococcus.s__Streptococcus_agalactiae	8.0201337223
+UniRef50_A4WVA6: Alcohol dehydrogenase GroES domain protein	8.0193309529
+UniRef50_A4WVA6: Alcohol dehydrogenase GroES domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.0193309529
+UniRef50_K0WEY0	8.0191050779
+UniRef50_K0WEY0|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0191050779
+UniRef50_B2JCI9: N-formylglutamate amidohydrolase	8.0149097195
+UniRef50_B2JCI9: N-formylglutamate amidohydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0149097195
+UniRef50_I7ABN6: Outer membrane protein assembly factor BamA	8.0147638901
+UniRef50_I7ABN6: Outer membrane protein assembly factor BamA|g__Pseudomonas.s__Pseudomonas_aeruginosa	8.0147638901
+UniRef50_D8JJP4: AraC-type DNA-binding domain-containing protein	8.0104715400
+UniRef50_D8JJP4: AraC-type DNA-binding domain-containing protein|g__Acinetobacter.s__Acinetobacter_baumannii	8.0104715400
+UniRef50_UPI0002557D47: DctM (C4-dicarboxylate permease, large subunit)	8.0095537651
+UniRef50_UPI0002557D47: DctM (C4-dicarboxylate permease, large subunit)|unclassified	8.0095537651
+UniRef50_C6B1R5	8.0073046283
+UniRef50_C6B1R5|unclassified	8.0073046283
+UniRef50_B2TQA9: Alkaline phosphatase synthesis transcriptional regulatory protein PhoP	8.0027274306
+UniRef50_B2TQA9: Alkaline phosphatase synthesis transcriptional regulatory protein PhoP|g__Clostridium.s__Clostridium_beijerinckii	8.0027274306
+UniRef50_C3ATQ4: Glycosyltransferase involved in cell wall biogenesis	8.0023109112
+UniRef50_C3ATQ4: Glycosyltransferase involved in cell wall biogenesis|g__Clostridium.s__Clostridium_beijerinckii	8.0023109112
+UniRef50_C4ZF78: Orotate phosphoribosyltransferase	8.0021651613
+UniRef50_C4ZF78: Orotate phosphoribosyltransferase|g__Clostridium.s__Clostridium_beijerinckii	8.0021651613
+UniRef50_Q8X852: Anaerobic nitric oxide reductase flavorubredoxin homolog	8.0003384147
+UniRef50_Q8X852: Anaerobic nitric oxide reductase flavorubredoxin homolog|g__Escherichia.s__Escherichia_coli	7.8851073468
+UniRef50_Q8X852: Anaerobic nitric oxide reductase flavorubredoxin homolog|unclassified	0.1152310679
+UniRef50_B1YFG3: Prevent-host-death family protein	8.0001280020
+UniRef50_B1YFG3: Prevent-host-death family protein|g__Staphylococcus.s__Staphylococcus_aureus	8.0001280020
+UniRef50_A0A019BIA4	8.0000000000
+UniRef50_A0A019BIA4|unclassified	8.0000000000
+UniRef50_B9KSF5	8.0000000000
+UniRef50_B9KSF5|g__Rhodobacter.s__Rhodobacter_sphaeroides	8.0000000000
+UniRef50_C6EHP9	8.0000000000
+UniRef50_C6EHP9|g__Escherichia.s__Escherichia_coli	8.0000000000
+UniRef50_D3QGG5	8.0000000000
+UniRef50_D3QGG5|g__Staphylococcus.s__Staphylococcus_epidermidis	8.0000000000
+UniRef50_D7XFZ2	8.0000000000
+UniRef50_D7XFZ2|g__Escherichia.s__Escherichia_coli	8.0000000000
+UniRef50_F8JHP4	8.0000000000
+UniRef50_F8JHP4|unclassified	8.0000000000
+UniRef50_H5D189	8.0000000000
+UniRef50_H5D189|g__Escherichia.s__Escherichia_coli	8.0000000000
+UniRef50_I0ZQ17	8.0000000000
+UniRef50_I0ZQ17|g__Escherichia.s__Escherichia_coli	8.0000000000
+UniRef50_Q5HLW5	8.0000000000
+UniRef50_Q5HLW5|g__Staphylococcus.s__Staphylococcus_epidermidis	8.0000000000
+UniRef50_Q895M3: Ribosome maturation factor RimM	8.0000000000
+UniRef50_Q895M3: Ribosome maturation factor RimM|g__Clostridium.s__Clostridium_beijerinckii	8.0000000000
+UniRef50_Q9X9H7	8.0000000000
+UniRef50_Q9X9H7|unclassified	8.0000000000
+UniRef50_W1YKW7	8.0000000000
+UniRef50_W1YKW7|unclassified	8.0000000000
+UniRef50_A6LYN9: D-galactose-binding periplasmic protein	7.9977323271
+UniRef50_A6LYN9: D-galactose-binding periplasmic protein|g__Clostridium.s__Clostridium_beijerinckii	7.9977323271
+UniRef50_B0V8Y0	7.9964375342
+UniRef50_B0V8Y0|g__Acinetobacter.s__Acinetobacter_baumannii	7.9964375342
+UniRef50_A5UJG8: Dephospho-CoA kinase, CoaE	7.9961618423
+UniRef50_A5UJG8: Dephospho-CoA kinase, CoaE|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.9961618423
+UniRef50_H4TYE9: Citrate synthase	7.9947881696
+UniRef50_H4TYE9: Citrate synthase|g__Escherichia.s__Escherichia_coli	7.9947881696
+UniRef50_B2UYR1: Surface protein PspC	7.9947551871
+UniRef50_B2UYR1: Surface protein PspC|g__Clostridium.s__Clostridium_beijerinckii	7.9947551871
+UniRef50_W8TSF6	7.9945469057
+UniRef50_W8TSF6|g__Staphylococcus.s__Staphylococcus_aureus	7.5757575758
+UniRef50_W8TSF6|unclassified	0.4187893300
+UniRef50_J7QZB4	7.9931518744
+UniRef50_J7QZB4|g__Escherichia.s__Escherichia_coli	7.0422535211
+UniRef50_J7QZB4|unclassified	0.9508983533
+UniRef50_M4WZ70: PpiC-type peptidyl-prolyl cis-trans isomerase	7.9930180551
+UniRef50_M4WZ70: PpiC-type peptidyl-prolyl cis-trans isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9930180551
+UniRef50_P75946	7.9929078014
+UniRef50_P75946|g__Escherichia.s__Escherichia_coli	7.9929078014
+UniRef50_D4J7S8: FAD/FMN-containing dehydrogenases	7.9916182841
+UniRef50_D4J7S8: FAD/FMN-containing dehydrogenases|g__Clostridium.s__Clostridium_beijerinckii	7.9916182841
+UniRef50_UPI000363409C: hypothetical protein	7.9912091676
+UniRef50_UPI000363409C: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.9843943641
+UniRef50_UPI000363409C: hypothetical protein|unclassified	0.0068148035
+UniRef50_E2XRI8: YcaO-like fatty acid binding protein	7.9881502387
+UniRef50_E2XRI8: YcaO-like fatty acid binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9881502387
+UniRef50_P30015: Probable ATP-dependent helicase lhr	7.9880342281
+UniRef50_P30015: Probable ATP-dependent helicase lhr|g__Escherichia.s__Escherichia_coli	7.9880342281
+UniRef50_U6BPG2: Sulfide:quinone oxidoreductase (Fragment)	7.9877860828
+UniRef50_U6BPG2: Sulfide:quinone oxidoreductase (Fragment)|unclassified	7.9877860828
+UniRef50_P45684: RNA polymerase sigma factor RpoS	7.9875354245
+UniRef50_P45684: RNA polymerase sigma factor RpoS|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9875354245
+UniRef50_W1XM18	7.9853131433
+UniRef50_W1XM18|unclassified	7.9853131433
+UniRef50_Q05026: UDP-glucose 4-epimerase	7.9845832799
+UniRef50_Q05026: UDP-glucose 4-epimerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8053379968
+UniRef50_Q05026: UDP-glucose 4-epimerase|g__Acinetobacter.s__Acinetobacter_baumannii	1.1792452830
+UniRef50_Q9I0K9: Adenylosuccinate lyase	7.9836916649
+UniRef50_Q9I0K9: Adenylosuccinate lyase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.9750856397
+UniRef50_Q9I0K9: Adenylosuccinate lyase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8539709650
+UniRef50_Q9I0K9: Adenylosuccinate lyase|unclassified	0.1546350602
+UniRef50_A0A017HPG3	7.9828638761
+UniRef50_A0A017HPG3|unclassified	7.9828638761
+UniRef50_M1MIQ5	7.9791830089
+UniRef50_M1MIQ5|g__Clostridium.s__Clostridium_beijerinckii	7.9791830089
+UniRef50_B4T534: Isopentenyl-diphosphate Delta-isomerase	7.9787234043
+UniRef50_B4T534: Isopentenyl-diphosphate Delta-isomerase|g__Escherichia.s__Escherichia_coli	7.9787234043
+UniRef50_B9KM28	7.9778907655
+UniRef50_B9KM28|unclassified	7.9778907655
+UniRef50_A0A038GJ20: Lipoprotein	7.9774622536
+UniRef50_A0A038GJ20: Lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9774622536
+UniRef50_P14295: L-2-hydroxyisocaproate dehydrogenase	7.9755418795
+UniRef50_P14295: L-2-hydroxyisocaproate dehydrogenase|g__Streptococcus.s__Streptococcus_agalactiae	7.9755418795
+UniRef50_A3PL40: Antifreeze protein, type I	7.9735242053
+UniRef50_A3PL40: Antifreeze protein, type I|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.9735242053
+UniRef50_B1ZSZ2: Phosphate transporter	7.9707644956
+UniRef50_B1ZSZ2: Phosphate transporter|g__Clostridium.s__Clostridium_beijerinckii	7.9707644956
+UniRef50_B9ADZ7	7.9670606165
+UniRef50_B9ADZ7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.9670606165
+UniRef50_E8TCM1: Inner-membrane translocator	7.9657843953
+UniRef50_E8TCM1: Inner-membrane translocator|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.9657843953
+UniRef50_M2JB66: Acetolactate synthase 3 regulatory subunit	7.9652115315
+UniRef50_M2JB66: Acetolactate synthase 3 regulatory subunit|g__Streptococcus.s__Streptococcus_mutans	7.9652115315
+UniRef50_P69972: Yop proteins translocation lipoprotein J	7.9636490295
+UniRef50_P69972: Yop proteins translocation lipoprotein J|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9636490295
+UniRef50_A3PP82	7.9614855407
+UniRef50_A3PP82|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.9557792492
+UniRef50_A3PP82|unclassified	1.0057062915
+UniRef50_P0AGA1: Protein-export membrane protein SecG	7.9584238287
+UniRef50_P0AGA1: Protein-export membrane protein SecG|g__Escherichia.s__Escherichia_coli	7.9584238287
+UniRef50_A0A023Y3W6: Radical SAM protein	7.9573934837
+UniRef50_A0A023Y3W6: Radical SAM protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9573934837
+UniRef50_Q2NF24: Predicted thioesterase	7.9549829944
+UniRef50_Q2NF24: Predicted thioesterase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.9549829944
+UniRef50_Q4KHN8	7.9545279657
+UniRef50_Q4KHN8|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9545279657
+UniRef50_S5RJR0	7.9528771579
+UniRef50_S5RJR0|g__Streptococcus.s__Streptococcus_agalactiae	7.9528771579
+UniRef50_N3DVV4	7.9519432665
+UniRef50_N3DVV4|unclassified	7.9519432665
+UniRef50_X2M3F4	7.9498842886
+UniRef50_X2M3F4|g__Escherichia.s__Escherichia_coli	7.9498842886
+UniRef50_A0A059A2S8	7.9485593093
+UniRef50_A0A059A2S8|unclassified	7.9485593093
+UniRef50_UPI0003B3F82C: mannitol ABC transporter permease, partial	7.9467181333
+UniRef50_UPI0003B3F82C: mannitol ABC transporter permease, partial|unclassified	7.9467181333
+UniRef50_S9TCU8	7.9447365588
+UniRef50_S9TCU8|unclassified	7.9447365588
+UniRef50_U5MMP4: Methyl-accepting chemotaxis protein	7.9446880107
+UniRef50_U5MMP4: Methyl-accepting chemotaxis protein|g__Clostridium.s__Clostridium_beijerinckii	7.9446880107
+UniRef50_H4NAZ8	7.9439726826
+UniRef50_H4NAZ8|unclassified	7.9439726826
+UniRef50_V5T106	7.9438853918
+UniRef50_V5T106|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9438853918
+UniRef50_X5Z4Q0	7.9431484010
+UniRef50_X5Z4Q0|unclassified	7.9431484010
+UniRef50_B7V7N6: Exodeoxyribonuclease III	7.9368994355
+UniRef50_B7V7N6: Exodeoxyribonuclease III|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9368994355
+UniRef50_A6LY96	7.9366262548
+UniRef50_A6LY96|g__Clostridium.s__Clostridium_beijerinckii	7.9366262548
+UniRef50_A6LQQ8	7.9365079365
+UniRef50_A6LQQ8|g__Clostridium.s__Clostridium_beijerinckii	7.9365079365
+UniRef50_B7M016	7.9365079365
+UniRef50_B7M016|unclassified	7.9365079365
+UniRef50_E1IL32	7.9365079365
+UniRef50_E1IL32|g__Escherichia.s__Escherichia_coli	7.9365079365
+UniRef50_E5QWI2	7.9365079365
+UniRef50_E5QWI2|g__Staphylococcus.s__Staphylococcus_epidermidis	7.9365079365
+UniRef50_E9TLK6	7.9365079365
+UniRef50_E9TLK6|g__Escherichia.s__Escherichia_coli	7.9365079365
+UniRef50_H3X666	7.9365079365
+UniRef50_H3X666|unclassified	7.9365079365
+UniRef50_H6MFF7	7.9365079365
+UniRef50_H6MFF7|g__Escherichia.s__Escherichia_coli	7.9365079365
+UniRef50_I0JFN1	7.9365079365
+UniRef50_I0JFN1|g__Staphylococcus.s__Staphylococcus_aureus	7.9365079365
+UniRef50_M2KNT5: Transposase	7.9365079365
+UniRef50_M2KNT5: Transposase|g__Streptococcus.s__Streptococcus_mutans	7.9365079365
+UniRef50_P0A0V1: LPP20 lipoprotein	7.9365079365
+UniRef50_P0A0V1: LPP20 lipoprotein|g__Helicobacter.s__Helicobacter_pylori	7.9365079365
+UniRef50_P77712: Long-chain acyl-CoA thioesterase FadM	7.9365079365
+UniRef50_P77712: Long-chain acyl-CoA thioesterase FadM|g__Escherichia.s__Escherichia_coli	7.9365079365
+UniRef50_Q3J1A3: Light-harvesting protein B-875 beta chain	7.9365079365
+UniRef50_Q3J1A3: Light-harvesting protein B-875 beta chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.9365079365
+UniRef50_V9U1T4	7.9365079365
+UniRef50_V9U1T4|unclassified	7.9365079365
+UniRef50_A9QNR9: TrbH	7.9338934423
+UniRef50_A9QNR9: TrbH|unclassified	7.9338934423
+UniRef50_U7DMJ8: Flagellar basal body rod modification protein FlgD	7.9330239559
+UniRef50_U7DMJ8: Flagellar basal body rod modification protein FlgD|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9330239559
+UniRef50_Q88EW8: ParA family protein	7.9309397690
+UniRef50_Q88EW8: ParA family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9309397690
+UniRef50_D5ALJ7	7.9294584853
+UniRef50_D5ALJ7|unclassified	7.9294584853
+UniRef50_P0AAN4: Hydrogenase isoenzymes nickel incorporation protein HypB	7.9277386171
+UniRef50_P0AAN4: Hydrogenase isoenzymes nickel incorporation protein HypB|g__Escherichia.s__Escherichia_coli	7.9277386171
+UniRef50_Q3IWN2: Transcriptional regulator, GntR family	7.9258283716
+UniRef50_Q3IWN2: Transcriptional regulator, GntR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.9258283716
+UniRef50_A9E7Y1	7.9194970443
+UniRef50_A9E7Y1|unclassified	7.9194970443
+UniRef50_B7VBB6	7.9189216374
+UniRef50_B7VBB6|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9189216374
+UniRef50_UPI000379038B: hypothetical protein	7.9168376936
+UniRef50_UPI000379038B: hypothetical protein|unclassified	7.9168376936
+UniRef50_Q02QX6: Phospholipase D	7.9159650340
+UniRef50_Q02QX6: Phospholipase D|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9159650340
+UniRef50_Q9I4X3: Anthranilate--CoA ligase	7.9153684311
+UniRef50_Q9I4X3: Anthranilate--CoA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0867290033
+UniRef50_Q9I4X3: Anthranilate--CoA ligase|unclassified	0.8286394278
+UniRef50_M4UDQ5: Quinone oxidoreductase	7.9134656253
+UniRef50_M4UDQ5: Quinone oxidoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.9134656253
+UniRef50_Q9I6H7: L-cysteine transporter of ABC system FliY	7.9126381386
+UniRef50_Q9I6H7: L-cysteine transporter of ABC system FliY|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9126381386
+UniRef50_B0U641: Lipoyl synthase	7.9097091362
+UniRef50_B0U641: Lipoyl synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.9097091362
+UniRef50_B0U641: Lipoyl synthase|g__Acinetobacter.s__Acinetobacter_baumannii	1.0000000000
+UniRef50_K5Q721	7.9082270568
+UniRef50_K5Q721|g__Acinetobacter.s__Acinetobacter_baumannii	7.9082270568
+UniRef50_E3D6K5	7.9051383399
+UniRef50_E3D6K5|g__Neisseria.s__Neisseria_meningitidis	7.9051383399
+UniRef50_P0AB34: Biofilm regulator BssS	7.9051383399
+UniRef50_P0AB34: Biofilm regulator BssS|g__Escherichia.s__Escherichia_coli	7.9051383399
+UniRef50_Q9I3V2	7.9024625441
+UniRef50_Q9I3V2|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9024625441
+UniRef50_G3XCV3: Pseudaminidase	7.9003388958
+UniRef50_G3XCV3: Pseudaminidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.9003388958
+UniRef50_F9Y7K9	7.8995151764
+UniRef50_F9Y7K9|unclassified	7.8995151764
+UniRef50_A4VYG8: Ribosomal RNA large subunit methyltransferase H	7.8970870206
+UniRef50_A4VYG8: Ribosomal RNA large subunit methyltransferase H|g__Streptococcus.s__Streptococcus_agalactiae	7.8970870206
+UniRef50_F2LQE5: PAS/PAC domain protein	7.8951975390
+UniRef50_F2LQE5: PAS/PAC domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8951975390
+UniRef50_Q7MNQ6: UPF0246 protein VV0659	7.8951034559
+UniRef50_Q7MNQ6: UPF0246 protein VV0659|g__Acinetobacter.s__Acinetobacter_baumannii	7.6686032017
+UniRef50_Q7MNQ6: UPF0246 protein VV0659|unclassified	0.2265002542
+UniRef50_Y8XRB2: Quinolone resistance protein norB	7.8939253777
+UniRef50_Y8XRB2: Quinolone resistance protein norB|g__Staphylococcus.s__Staphylococcus_epidermidis	7.8939253777
+UniRef50_Q4ZL95: Transcriptional regulator, LysR family	7.8935428097
+UniRef50_Q4ZL95: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8935428097
+UniRef50_S8RGE4	7.8927439997
+UniRef50_S8RGE4|g__Streptococcus.s__Streptococcus_agalactiae	7.8927439997
+UniRef50_J2YJ27: TonB-dependent outermembrane ferric citrate receptor	7.8914061058
+UniRef50_J2YJ27: TonB-dependent outermembrane ferric citrate receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8914061058
+UniRef50_L8DU85: Probable manganese-dependent inorganic pyrophosphatase	7.8887469358
+UniRef50_L8DU85: Probable manganese-dependent inorganic pyrophosphatase|unclassified	7.8887469358
+UniRef50_R9ZDX0: GntR family transcriptional regulator	7.8845580158
+UniRef50_R9ZDX0: GntR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8845580158
+UniRef50_F9YY04: N-acetylgalactosaminoglycan deacetylase	7.8818443804
+UniRef50_F9YY04: N-acetylgalactosaminoglycan deacetylase|g__Propionibacterium.s__Propionibacterium_acnes	7.8818443804
+UniRef50_Q5HQL5: Na(+)/H(+) antiporter subunit F1	7.8808705613
+UniRef50_Q5HQL5: Na(+)/H(+) antiporter subunit F1|g__Staphylococcus.s__Staphylococcus_epidermidis	4.4444444444
+UniRef50_Q5HQL5: Na(+)/H(+) antiporter subunit F1|g__Staphylococcus.s__Staphylococcus_aureus	3.4364261168
+UniRef50_H7E757: RHS repeat-associated core domain protein	7.8755606178
+UniRef50_H7E757: RHS repeat-associated core domain protein|g__Escherichia.s__Escherichia_coli	7.8755606178
+UniRef50_A0A037YC42	7.8740157480
+UniRef50_A0A037YC42|g__Escherichia.s__Escherichia_coli	7.8740157480
+UniRef50_A0A059MR78: Nitrogen fixation protein NifU	7.8740157480
+UniRef50_A0A059MR78: Nitrogen fixation protein NifU|g__Propionibacterium.s__Propionibacterium_acnes	7.8740157480
+UniRef50_A6LS46	7.8740157480
+UniRef50_A6LS46|g__Clostridium.s__Clostridium_beijerinckii	7.8740157480
+UniRef50_B0VB68: Phenylacetic acid degradation protein with thioesterase/thiol ester dehydrase-isomerase domain	7.8740157480
+UniRef50_B0VB68: Phenylacetic acid degradation protein with thioesterase/thiol ester dehydrase-isomerase domain|g__Acinetobacter.s__Acinetobacter_baumannii	7.8740157480
+UniRef50_B5YW84	7.8740157480
+UniRef50_B5YW84|unclassified	7.8740157480
+UniRef50_B7N1I6	7.8740157480
+UniRef50_B7N1I6|g__Escherichia.s__Escherichia_coli	7.8740157480
+UniRef50_D1Q6Q0	7.8740157480
+UniRef50_D1Q6Q0|unclassified	7.8740157480
+UniRef50_I4PER2	7.8740157480
+UniRef50_I4PER2|g__Escherichia.s__Escherichia_coli	7.8740157480
+UniRef50_J0EYL2	7.8740157480
+UniRef50_J0EYL2|g__Staphylococcus.s__Staphylococcus_epidermidis	7.8740157480
+UniRef50_N2KU52: Exonuclease family protein	7.8740157480
+UniRef50_N2KU52: Exonuclease family protein|g__Escherichia.s__Escherichia_coli	7.8740157480
+UniRef50_Q8CRT5	7.8740157480
+UniRef50_Q8CRT5|g__Staphylococcus.s__Staphylococcus_epidermidis	7.8740157480
+UniRef50_Q8FFR1	7.8740157480
+UniRef50_Q8FFR1|g__Escherichia.s__Escherichia_coli	7.8740157480
+UniRef50_U5BQN5	7.8740157480
+UniRef50_U5BQN5|g__Escherichia.s__Escherichia_coli	7.8740157480
+UniRef50_U5NRP8	7.8740157480
+UniRef50_U5NRP8|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.8740157480
+UniRef50_P58362: Trimethylamine-N-oxide reductase 2	7.8732575789
+UniRef50_P58362: Trimethylamine-N-oxide reductase 2|g__Escherichia.s__Escherichia_coli	7.8732575789
+UniRef50_A1K314: Holliday junction ATP-dependent DNA helicase RuvA	7.8698303202
+UniRef50_A1K314: Holliday junction ATP-dependent DNA helicase RuvA|g__Neisseria.s__Neisseria_meningitidis	7.8278186275
+UniRef50_A1K314: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.0420116927
+UniRef50_Q0TQK1: Trigger factor	7.8694492215
+UniRef50_Q0TQK1: Trigger factor|g__Clostridium.s__Clostridium_beijerinckii	7.8694492215
+UniRef50_F2NTN8: Addiction module toxin, RelE/StbE family	7.8690443192
+UniRef50_F2NTN8: Addiction module toxin, RelE/StbE family|g__Streptococcus.s__Streptococcus_mutans	7.8690443192
+UniRef50_P07767: Staphylocoagulase	7.8687389836
+UniRef50_P07767: Staphylocoagulase|g__Staphylococcus.s__Staphylococcus_aureus	7.8687389836
+UniRef50_F6WAH6: Protein 6330403L08Rik	7.8686131298
+UniRef50_F6WAH6: Protein 6330403L08Rik|unclassified	7.8686131298
+UniRef50_A6LTI2: Signal transduction histidine kinase regulating citrate/malate metabolism	7.8676853933
+UniRef50_A6LTI2: Signal transduction histidine kinase regulating citrate/malate metabolism|g__Clostridium.s__Clostridium_beijerinckii	7.8676853933
+UniRef50_Q8DV31	7.8673288044
+UniRef50_Q8DV31|g__Streptococcus.s__Streptococcus_mutans	7.8673288044
+UniRef50_M9SAW1	7.8662003902
+UniRef50_M9SAW1|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8662003902
+UniRef50_G2L1N4	7.8654174688
+UniRef50_G2L1N4|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8654174688
+UniRef50_Q9AL94: Rubredoxin	7.8648208896
+UniRef50_Q9AL94: Rubredoxin|unclassified	7.8648208896
+UniRef50_L0FE04: Diguanylate cyclase with PAS/PAC sensor	7.8633229667
+UniRef50_L0FE04: Diguanylate cyclase with PAS/PAC sensor|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8633229667
+UniRef50_M9S1D0	7.8556133374
+UniRef50_M9S1D0|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8556133374
+UniRef50_Q98BA9: Mll5655 protein	7.8554868942
+UniRef50_Q98BA9: Mll5655 protein|g__Acinetobacter.s__Acinetobacter_baumannii	6.1402210280
+UniRef50_Q98BA9: Mll5655 protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7152658662
+UniRef50_A6LYY5: Helix-turn-helix-domain containing protein, AraC type	7.8531483134
+UniRef50_A6LYY5: Helix-turn-helix-domain containing protein, AraC type|g__Clostridium.s__Clostridium_beijerinckii	7.8531483134
+UniRef50_U7DKX9: Glutathione S-transferase	7.8492935636
+UniRef50_U7DKX9: Glutathione S-transferase|g__Acinetobacter.s__Acinetobacter_baumannii	7.8492935636
+UniRef50_I6STV8	7.8483237258
+UniRef50_I6STV8|g__Streptococcus.s__Streptococcus_mutans	7.8483237258
+UniRef50_W8RVP4: Glutathione S-transferase	7.8469405749
+UniRef50_W8RVP4: Glutathione S-transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8469405749
+UniRef50_M9SEQ3	7.8464625233
+UniRef50_M9SEQ3|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8464625233
+UniRef50_Q896Z8: 2-hydroxyacid dehydrogenase	7.8433132686
+UniRef50_Q896Z8: 2-hydroxyacid dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	7.8433132686
+UniRef50_B9AGW4	7.8431087211
+UniRef50_B9AGW4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.8431087211
+UniRef50_W8SSW9: Membrane protein	7.8405616974
+UniRef50_W8SSW9: Membrane protein|unclassified	7.8405616974
+UniRef50_W7WC52	7.8384465673
+UniRef50_W7WC52|unclassified	7.8384465673
+UniRef50_P52046: 3-hydroxybutyryl-CoA dehydratase	7.8382657997
+UniRef50_P52046: 3-hydroxybutyryl-CoA dehydratase|g__Clostridium.s__Clostridium_beijerinckii	7.8382657997
+UniRef50_G3XD94: UDP-N-acetyl-D-glucosamine 6-dehydrogenase	7.8378402500
+UniRef50_G3XD94: UDP-N-acetyl-D-glucosamine 6-dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8378402500
+UniRef50_P43854: Amidophosphoribosyltransferase	7.8369996148
+UniRef50_P43854: Amidophosphoribosyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8369996148
+UniRef50_B9ADI3	7.8365574095
+UniRef50_B9ADI3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.8365574095
+UniRef50_A3PI48: Glucose-1-phosphate adenylyltransferase	7.8360659929
+UniRef50_A3PI48: Glucose-1-phosphate adenylyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.8360659929
+UniRef50_A3TWL6	7.8356905206
+UniRef50_A3TWL6|unclassified	7.8356905206
+UniRef50_Q1GFH6: Ppx/GppA phosphatase	7.8351566079
+UniRef50_Q1GFH6: Ppx/GppA phosphatase|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.8351566079
+UniRef50_D2NQQ7: ATP-dependent zinc metalloprotease FtsH	7.8336457679
+UniRef50_D2NQQ7: ATP-dependent zinc metalloprotease FtsH|g__Propionibacterium.s__Propionibacterium_acnes	7.8109214409
+UniRef50_D2NQQ7: ATP-dependent zinc metalloprotease FtsH|unclassified	0.0227243269
+UniRef50_W4RYA2: Bacterioferritin	7.8273869032
+UniRef50_W4RYA2: Bacterioferritin|unclassified	7.8273869032
+UniRef50_G3XD19: O-antigen translocase	7.8242801523
+UniRef50_G3XD19: O-antigen translocase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8242801523
+UniRef50_K5HC32	7.8236734307
+UniRef50_K5HC32|unclassified	7.8236734307
+UniRef50_K0RV65	7.8221527473
+UniRef50_K0RV65|unclassified	7.8221527473
+UniRef50_Q3J0Q0	7.8149960201
+UniRef50_Q3J0Q0|unclassified	7.8149960201
+UniRef50_Q2FC51: Beta-lactamase regulatory protein (Fragment)	7.8135785744
+UniRef50_Q2FC51: Beta-lactamase regulatory protein (Fragment)|unclassified	7.8135785744
+UniRef50_A5UL58: Putative DNA helicase II, UvrD	7.8133511417
+UniRef50_A5UL58: Putative DNA helicase II, UvrD|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.8133511417
+UniRef50_B2HYR6	7.8125000000
+UniRef50_B2HYR6|g__Acinetobacter.s__Acinetobacter_baumannii	7.8125000000
+UniRef50_B5YVH2	7.8125000000
+UniRef50_B5YVH2|g__Escherichia.s__Escherichia_coli	7.8125000000
+UniRef50_C5MZN7	7.8125000000
+UniRef50_C5MZN7|g__Staphylococcus.s__Staphylococcus_aureus	7.8125000000
+UniRef50_C7N981	7.8125000000
+UniRef50_C7N981|g__Clostridium.s__Clostridium_beijerinckii	7.8125000000
+UniRef50_H3V8P2	7.8125000000
+UniRef50_H3V8P2|g__Staphylococcus.s__Staphylococcus_epidermidis	7.8125000000
+UniRef50_I4ZMH3: Protein YbaO	7.8125000000
+UniRef50_I4ZMH3: Protein YbaO|g__Escherichia.s__Escherichia_coli	7.8125000000
+UniRef50_J1EVE5	7.8125000000
+UniRef50_J1EVE5|g__Staphylococcus.s__Staphylococcus_aureus	7.8125000000
+UniRef50_M8L6H8	7.8125000000
+UniRef50_M8L6H8|g__Escherichia.s__Escherichia_coli	7.8125000000
+UniRef50_S9YQX6	7.8125000000
+UniRef50_S9YQX6|g__Staphylococcus.s__Staphylococcus_aureus	7.8125000000
+UniRef50_A6LPZ2: Binding-protein-dependent transport systems inner membrane component	7.8092612028
+UniRef50_A6LPZ2: Binding-protein-dependent transport systems inner membrane component|g__Clostridium.s__Clostridium_beijerinckii	7.8092612028
+UniRef50_I4D0J0: DNA repair protein radA	7.8087287008
+UniRef50_I4D0J0: DNA repair protein radA|g__Clostridium.s__Clostridium_beijerinckii	7.8087287008
+UniRef50_A0A030WJZ6	7.8058825784
+UniRef50_A0A030WJZ6|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8058825784
+UniRef50_A6LUE7	7.8036818637
+UniRef50_A6LUE7|g__Clostridium.s__Clostridium_beijerinckii	7.8036818637
+UniRef50_E2XT92: Long-chain fatty acid transporter	7.8035434021
+UniRef50_E2XT92: Long-chain fatty acid transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.8035434021
+UniRef50_Q6FEM0: Outer membrane protein assembly factor BamB	7.7999069840
+UniRef50_Q6FEM0: Outer membrane protein assembly factor BamB|g__Acinetobacter.s__Acinetobacter_baumannii	7.7999069840
+UniRef50_R4RG77: Transcriptional regulator, LysR family	7.7949491975
+UniRef50_R4RG77: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7949491975
+UniRef50_A0A021PT36	7.7909030084
+UniRef50_A0A021PT36|unclassified	7.7909030084
+UniRef50_F0KEU9	7.7860694058
+UniRef50_F0KEU9|g__Acinetobacter.s__Acinetobacter_baumannii	7.7860694058
+UniRef50_D8GNL4: Dihydrodipicolinate synthase	7.7855097076
+UniRef50_D8GNL4: Dihydrodipicolinate synthase|g__Clostridium.s__Clostridium_beijerinckii	7.7855097076
+UniRef50_J9FSQ6	7.7821011673
+UniRef50_J9FSQ6|unclassified	7.7821011673
+UniRef50_G7M9T7	7.7808576486
+UniRef50_G7M9T7|g__Clostridium.s__Clostridium_beijerinckii	7.7808576486
+UniRef50_S9RTV0	7.7807159148
+UniRef50_S9RTV0|unclassified	7.7807159148
+UniRef50_B4F105: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	7.7797468705
+UniRef50_B4F105: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|g__Acinetobacter.s__Acinetobacter_baumannii	7.6337922436
+UniRef50_B4F105: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.1459546269
+UniRef50_A6TXN9	7.7788975952
+UniRef50_A6TXN9|unclassified	7.7788975952
+UniRef50_V9TEA7: Membrane protein	7.7780085899
+UniRef50_V9TEA7: Membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7780085899
+UniRef50_L8NI67	7.7723108685
+UniRef50_L8NI67|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7723108685
+UniRef50_A8LIG9: Lipolytic protein	7.7701866847
+UniRef50_A8LIG9: Lipolytic protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.7701866847
+UniRef50_A7ZI94: 3-(3-hydroxy-phenyl)propionate/3-hydroxycinnamic acid hydroxylase	7.7692627444
+UniRef50_A7ZI94: 3-(3-hydroxy-phenyl)propionate/3-hydroxycinnamic acid hydroxylase|g__Escherichia.s__Escherichia_coli	7.3214790918
+UniRef50_A7ZI94: 3-(3-hydroxy-phenyl)propionate/3-hydroxycinnamic acid hydroxylase|unclassified	0.4477836527
+UniRef50_K1C7V0: Ferredoxin	7.7684611917
+UniRef50_K1C7V0: Ferredoxin|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7684611917
+UniRef50_C3K475: Acetylglutamate kinase	7.7662334849
+UniRef50_C3K475: Acetylglutamate kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2281870837
+UniRef50_C3K475: Acetylglutamate kinase|unclassified	0.5380464012
+UniRef50_P76471	7.7655885988
+UniRef50_P76471|g__Escherichia.s__Escherichia_coli	7.7655885988
+UniRef50_E3I0H1: L-carnitine dehydratase/bile acid-inducible protein F	7.7642483377
+UniRef50_E3I0H1: L-carnitine dehydratase/bile acid-inducible protein F|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7642483377
+UniRef50_Q887Q2: Alginate production protein AlgE	7.7629741561
+UniRef50_Q887Q2: Alginate production protein AlgE|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7629741561
+UniRef50_C5CB84: Branched-chain amino acid uptake carrier	7.7611429267
+UniRef50_C5CB84: Branched-chain amino acid uptake carrier|g__Propionibacterium.s__Propionibacterium_acnes	7.7611429267
+UniRef50_I3USW1: Multi-sensor signal transduction histidine kinase	7.7599276375
+UniRef50_I3USW1: Multi-sensor signal transduction histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7599276375
+UniRef50_E6JNS6: Bacterial mobilization family protein	7.7584938668
+UniRef50_E6JNS6: Bacterial mobilization family protein|unclassified	7.7584938668
+UniRef50_B9KPC4	7.7549267591
+UniRef50_B9KPC4|unclassified	7.7549267591
+UniRef50_A3PLR4: Hly-III family protein	7.7545815076
+UniRef50_A3PLR4: Hly-III family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.7545815076
+UniRef50_Z8H5U8	7.7530110386
+UniRef50_Z8H5U8|unclassified	7.7530110386
+UniRef50_C0PW01	7.7519379845
+UniRef50_C0PW01|g__Escherichia.s__Escherichia_coli	7.7519379845
+UniRef50_L1DEU6	7.7519379845
+UniRef50_L1DEU6|g__Escherichia.s__Escherichia_coli	7.7519379845
+UniRef50_UPI00037EB6F6: hypothetical protein, partial	7.7519379845
+UniRef50_UPI00037EB6F6: hypothetical protein, partial|unclassified	7.7519379845
+UniRef50_X1CAQ7: Marine sediment metagenome DNA, contig: S01H4_S11941 (Fragment)	7.7519379845
+UniRef50_X1CAQ7: Marine sediment metagenome DNA, contig: S01H4_S11941 (Fragment)|unclassified	7.7519379845
+UniRef50_Q6A9M5: Dephospho-CoA kinase	7.7498202732
+UniRef50_Q6A9M5: Dephospho-CoA kinase|g__Propionibacterium.s__Propionibacterium_acnes	7.7498202732
+UniRef50_K0NAB4: Dehydrogenase	7.7497845405
+UniRef50_K0NAB4: Dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	7.7497845405
+UniRef50_U5MYJ1: Multidrug resistance protein MdtA	7.7485448894
+UniRef50_U5MYJ1: Multidrug resistance protein MdtA|g__Clostridium.s__Clostridium_beijerinckii	7.7485448894
+UniRef50_UPI000237E2DC: hypothetical protein	7.7473025362
+UniRef50_UPI000237E2DC: hypothetical protein|unclassified	7.7473025362
+UniRef50_A3PHK3: ComEC/Rec2-related protein	7.7468280197
+UniRef50_A3PHK3: ComEC/Rec2-related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.7468280197
+UniRef50_I1ARF4	7.7450504641
+UniRef50_I1ARF4|unclassified	7.7450504641
+UniRef50_F7Z2N3: Transcriptional activator, TenA family	7.7434079366
+UniRef50_F7Z2N3: Transcriptional activator, TenA family|g__Clostridium.s__Clostridium_beijerinckii	7.7434079366
+UniRef50_E2ZQZ9	7.7400371010
+UniRef50_E2ZQZ9|unclassified	7.7400371010
+UniRef50_Q4EQ49	7.7398861539
+UniRef50_Q4EQ49|unclassified	7.7398861539
+UniRef50_Q3BRW8: 1-deoxy-D-xylulose-5-phosphate synthase	7.7363187957
+UniRef50_Q3BRW8: 1-deoxy-D-xylulose-5-phosphate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1930759995
+UniRef50_Q3BRW8: 1-deoxy-D-xylulose-5-phosphate synthase|g__Neisseria.s__Neisseria_meningitidis	0.5238344683
+UniRef50_Q3BRW8: 1-deoxy-D-xylulose-5-phosphate synthase|unclassified	0.0194083279
+UniRef50_F3MX46	7.7351532080
+UniRef50_F3MX46|unclassified	7.7351532080
+UniRef50_D3E3Q6	7.7342458231
+UniRef50_D3E3Q6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.7342458231
+UniRef50_P0AER4: Glutamate/aspartate transport system permease protein GltJ	7.7338632502
+UniRef50_P0AER4: Glutamate/aspartate transport system permease protein GltJ|g__Escherichia.s__Escherichia_coli	4.3023837882
+UniRef50_P0AER4: Glutamate/aspartate transport system permease protein GltJ|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4314794620
+UniRef50_P64422: Probable hydrogenase nickel incorporation protein HybF	7.7336069840
+UniRef50_P64422: Probable hydrogenase nickel incorporation protein HybF|g__Escherichia.s__Escherichia_coli	7.7336069840
+UniRef50_UPI000469D137: hypothetical protein	7.7331646488
+UniRef50_UPI000469D137: hypothetical protein|unclassified	7.7331646488
+UniRef50_Q39LW7: Aliphatic sulfonates import ATP-binding protein SsuB 2	7.7314114789
+UniRef50_Q39LW7: Aliphatic sulfonates import ATP-binding protein SsuB 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7314114789
+UniRef50_T1C6H9: Acyl-CoA dehydrogenase domain-containing protein (Fragment)	7.7311549289
+UniRef50_T1C6H9: Acyl-CoA dehydrogenase domain-containing protein (Fragment)|unclassified	7.7311549289
+UniRef50_A8LL26: tRNA pseudouridine synthase B	7.7295463781
+UniRef50_A8LL26: tRNA pseudouridine synthase B|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.7295463781
+UniRef50_K2EFR1	7.7281558613
+UniRef50_K2EFR1|unclassified	7.7281558613
+UniRef50_E1VBF0: TRAP transporter substrate-binding protein	7.7264015197
+UniRef50_E1VBF0: TRAP transporter substrate-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7264015197
+UniRef50_Q07X28: Hydroxylamine reductase	7.7263414013
+UniRef50_Q07X28: Hydroxylamine reductase|g__Clostridium.s__Clostridium_beijerinckii	7.6663529698
+UniRef50_Q07X28: Hydroxylamine reductase|unclassified	0.0599884315
+UniRef50_B9KTP9: Diguanylate cyclase/phosphodiesterase with PAS/PAC sensor	7.7248982112
+UniRef50_B9KTP9: Diguanylate cyclase/phosphodiesterase with PAS/PAC sensor|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.7248982112
+UniRef50_UPI00047872F6: hypothetical protein	7.7220077220
+UniRef50_UPI00047872F6: hypothetical protein|unclassified	7.7220077220
+UniRef50_UPI00047E999B: hypothetical protein	7.7204916093
+UniRef50_UPI00047E999B: hypothetical protein|unclassified	7.7204916093
+UniRef50_A3KVE3	7.7147617494
+UniRef50_A3KVE3|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7147617494
+UniRef50_A5UJ70: Peptide methionine sulfoxide reductase, PMSR (Protein repair stress)	7.7139019013
+UniRef50_A5UJ70: Peptide methionine sulfoxide reductase, PMSR (Protein repair stress)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.7139019013
+UniRef50_R9ZG29: Chemotaxis protein CheY	7.7137932975
+UniRef50_R9ZG29: Chemotaxis protein CheY|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7137932975
+UniRef50_D3SBY0: Ribonuclease, Rne/Rng family	7.7133173758
+UniRef50_D3SBY0: Ribonuclease, Rne/Rng family|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7133173758
+UniRef50_M9RZD9: ABC transporter permease	7.7101137270
+UniRef50_M9RZD9: ABC transporter permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7101137270
+UniRef50_R5ZDB5	7.7086656034
+UniRef50_R5ZDB5|g__Clostridium.s__Clostridium_beijerinckii	7.7086656034
+UniRef50_Z7LWI4	7.7074327251
+UniRef50_Z7LWI4|unclassified	7.7074327251
+UniRef50_L1KDU4	7.7073946349
+UniRef50_L1KDU4|unclassified	7.7073946349
+UniRef50_UPI0003514416: PREDICTED: glycine-rich cell wall structural protein 1.0-like	7.7068751766
+UniRef50_UPI0003514416: PREDICTED: glycine-rich cell wall structural protein 1.0-like|unclassified	7.7068751766
+UniRef50_S6AEX2	7.7048012994
+UniRef50_S6AEX2|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.7048012994
+UniRef50_UPI0003809E92: hypothetical protein	7.7023597475
+UniRef50_UPI0003809E92: hypothetical protein|unclassified	7.7023597475
+UniRef50_N4L408	7.7021845090
+UniRef50_N4L408|unclassified	7.7021845090
+UniRef50_UPI0003C19995: PREDICTED: 50S ribosomal protein L6, chloroplastic-like	7.7012564739
+UniRef50_UPI0003C19995: PREDICTED: 50S ribosomal protein L6, chloroplastic-like|unclassified	7.7012564739
+UniRef50_A0A009EKL1	7.6923076923
+UniRef50_A0A009EKL1|unclassified	7.6923076923
+UniRef50_D3DZH3: UPF0146 protein mru_1801	7.6923076923
+UniRef50_D3DZH3: UPF0146 protein mru_1801|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.6923076923
+UniRef50_D3E362	7.6923076923
+UniRef50_D3E362|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.6923076923
+UniRef50_E4AS11	7.6923076923
+UniRef50_E4AS11|unclassified	7.6923076923
+UniRef50_F0DB83: Hyothetical protein	7.6923076923
+UniRef50_F0DB83: Hyothetical protein|unclassified	7.6923076923
+UniRef50_L7WY72	7.6923076923
+UniRef50_L7WY72|g__Staphylococcus.s__Staphylococcus_epidermidis	7.6923076923
+UniRef50_M7ZHB6	7.6923076923
+UniRef50_M7ZHB6|unclassified	7.6923076923
+UniRef50_Q9RVT2	7.6923076923
+UniRef50_Q9RVT2|g__Deinococcus.s__Deinococcus_radiodurans	7.6923076923
+UniRef50_X5DU16	7.6923076923
+UniRef50_X5DU16|g__Staphylococcus.s__Staphylococcus_aureus	7.6923076923
+UniRef50_A4VWG8: Transcriptional antiterminator	7.6901441925
+UniRef50_A4VWG8: Transcriptional antiterminator|g__Streptococcus.s__Streptococcus_agalactiae	7.6901441925
+UniRef50_W0WHZ7	7.6893837172
+UniRef50_W0WHZ7|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.6893837172
+UniRef50_A5UJZ1	7.6857498852
+UniRef50_A5UJZ1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.6857498852
+UniRef50_G7U4H3	7.6857260872
+UniRef50_G7U4H3|g__Propionibacterium.s__Propionibacterium_acnes	7.6857260872
+UniRef50_A8GCC2: UPF0145 protein Spro_1658	7.6850168579
+UniRef50_A8GCC2: UPF0145 protein Spro_1658|unclassified	3.9396985058
+UniRef50_A8GCC2: UPF0145 protein Spro_1658|g__Escherichia.s__Escherichia_coli	3.7453183521
+UniRef50_C3LNG5: Amino acid ABC transporter, permease protein	7.6848880034
+UniRef50_C3LNG5: Amino acid ABC transporter, permease protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.6848880034
+UniRef50_V9TWL2	7.6845075063
+UniRef50_V9TWL2|unclassified	7.6845075063
+UniRef50_Q3SSW6: 50S ribosomal protein L3	7.6827021691
+UniRef50_Q3SSW6: 50S ribosomal protein L3|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.6827021691
+UniRef50_P65399: Molybdopterin synthase catalytic subunit	7.6772724574
+UniRef50_P65399: Molybdopterin synthase catalytic subunit|g__Escherichia.s__Escherichia_coli	7.4624503696
+UniRef50_P65399: Molybdopterin synthase catalytic subunit|unclassified	0.2148220878
+UniRef50_R4ZWW3: PTS system, galactitol-specific IIC component	7.6752750537
+UniRef50_R4ZWW3: PTS system, galactitol-specific IIC component|g__Streptococcus.s__Streptococcus_agalactiae	7.6752750537
+UniRef50_P76361: Inner membrane protein YeeR	7.6730950235
+UniRef50_P76361: Inner membrane protein YeeR|g__Escherichia.s__Escherichia_coli	7.6730950235
+UniRef50_P0CF88: Transposase InsI for insertion sequence element IS30A	7.6686962210
+UniRef50_P0CF88: Transposase InsI for insertion sequence element IS30A|g__Escherichia.s__Escherichia_coli	7.6686962210
+UniRef50_Q189B8: Threonine--tRNA ligase	7.6679209036
+UniRef50_Q189B8: Threonine--tRNA ligase|g__Clostridium.s__Clostridium_beijerinckii	7.6679209036
+UniRef50_Q6NBT1: Sulfate/thiosulfate import ATP-binding protein CysA	7.6676620513
+UniRef50_Q6NBT1: Sulfate/thiosulfate import ATP-binding protein CysA|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.8301559209
+UniRef50_Q6NBT1: Sulfate/thiosulfate import ATP-binding protein CysA|unclassified	0.8375061305
+UniRef50_Q96YV9: 30S ribosomal protein S11	7.6661433804
+UniRef50_Q96YV9: 30S ribosomal protein S11|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.6661433804
+UniRef50_P18275: Arginine/ornithine antiporter	7.6631009148
+UniRef50_P18275: Arginine/ornithine antiporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.6631009148
+UniRef50_D5D972: Small heat shock protein	7.6628352490
+UniRef50_D5D972: Small heat shock protein|g__Staphylococcus.s__Staphylococcus_epidermidis	7.6628352490
+UniRef50_W1ETW9: Trimethylamine-N-oxide reductase	7.6620827524
+UniRef50_W1ETW9: Trimethylamine-N-oxide reductase|g__Escherichia.s__Escherichia_coli	7.6620827524
+UniRef50_A6LZ85: O-acetylhomoserine aminocarboxypropyltransferase	7.6603158058
+UniRef50_A6LZ85: O-acetylhomoserine aminocarboxypropyltransferase|g__Clostridium.s__Clostridium_beijerinckii	7.6603158058
+UniRef50_A0A024HBU5: Phage late control gene D protein	7.6599266412
+UniRef50_A0A024HBU5: Phage late control gene D protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.6230430773
+UniRef50_A0A024HBU5: Phage late control gene D protein|unclassified	0.0368835639
+UniRef50_P23325: Ankyrin repeat protein A	7.6577906751
+UniRef50_P23325: Ankyrin repeat protein A|g__Escherichia.s__Escherichia_coli	7.6577906751
+UniRef50_B8KKA8	7.6576596066
+UniRef50_B8KKA8|unclassified	7.6576596066
+UniRef50_M9H1Q6: Stage II sporulation family protein	7.6536469087
+UniRef50_M9H1Q6: Stage II sporulation family protein|g__Escherichia.s__Escherichia_coli	7.6536469087
+UniRef50_B6ZY61: sn-glycerol-3-phosphate dehydrogenase (Anaerobic), K-small subunit	7.6525348034
+UniRef50_B6ZY61: sn-glycerol-3-phosphate dehydrogenase (Anaerobic), K-small subunit|g__Escherichia.s__Escherichia_coli	7.6525348034
+UniRef50_P71239: Putative colanic acid biosynthesis glycosyl transferase WcaE	7.6522960352
+UniRef50_P71239: Putative colanic acid biosynthesis glycosyl transferase WcaE|g__Escherichia.s__Escherichia_coli	7.6522960352
+UniRef50_G5FKQ3	7.6503863862
+UniRef50_G5FKQ3|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.6503863862
+UniRef50_Q8E3B1: Probable transaldolase	7.6500768278
+UniRef50_Q8E3B1: Probable transaldolase|g__Streptococcus.s__Streptococcus_agalactiae	5.6327583590
+UniRef50_Q8E3B1: Probable transaldolase|unclassified	2.0173184688
+UniRef50_G0K3J8: Aspartate transaminase	7.6490303480
+UniRef50_G0K3J8: Aspartate transaminase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.6490303480
+UniRef50_A6QE51	7.6470674080
+UniRef50_A6QE51|g__Staphylococcus.s__Staphylococcus_aureus	7.6470674080
+UniRef50_K7S5J0: Transcriptional regulator, DeoR family	7.6462733884
+UniRef50_K7S5J0: Transcriptional regulator, DeoR family|g__Propionibacterium.s__Propionibacterium_acnes	7.5615724990
+UniRef50_K7S5J0: Transcriptional regulator, DeoR family|unclassified	0.0847008893
+UniRef50_K3J702	7.6459863791
+UniRef50_K3J702|unclassified	7.6459863791
+UniRef50_A0A032VS99	7.6456542484
+UniRef50_A0A032VS99|unclassified	7.6456542484
+UniRef50_T9PRX2	7.6452312213
+UniRef50_T9PRX2|g__Escherichia.s__Escherichia_coli	7.6452312213
+UniRef50_W1XST4: Protein phoH (Fragment)	7.6447474586
+UniRef50_W1XST4: Protein phoH (Fragment)|unclassified	7.6447474586
+UniRef50_P11865	7.6445624952
+UniRef50_P11865|g__Escherichia.s__Escherichia_coli	7.6445624952
+UniRef50_UPI000370CF4F: hypothetical protein	7.6412268874
+UniRef50_UPI000370CF4F: hypothetical protein|unclassified	7.6412268874
+UniRef50_Q1R4E5	7.6411420355
+UniRef50_Q1R4E5|unclassified	4.1716646530
+UniRef50_Q1R4E5|g__Escherichia.s__Escherichia_coli	3.4694773825
+UniRef50_Q096S9	7.6399332022
+UniRef50_Q096S9|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.6399332022
+UniRef50_M1MTD0	7.6389980581
+UniRef50_M1MTD0|g__Clostridium.s__Clostridium_beijerinckii	7.1805937199
+UniRef50_M1MTD0|unclassified	0.4584043382
+UniRef50_C5BT54: Cysteine synthase	7.6386337773
+UniRef50_C5BT54: Cysteine synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.6386337773
+UniRef50_I0EVS2: Cysteine-rich protein C	7.6382637645
+UniRef50_I0EVS2: Cysteine-rich protein C|g__Helicobacter.s__Helicobacter_pylori	7.6382637645
+UniRef50_A9B327: Cyclic pyranopterin monophosphate synthase accessory protein	7.6374537053
+UniRef50_A9B327: Cyclic pyranopterin monophosphate synthase accessory protein|g__Clostridium.s__Clostridium_beijerinckii	4.1666666667
+UniRef50_A9B327: Cyclic pyranopterin monophosphate synthase accessory protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.3222591362
+UniRef50_A9B327: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	0.1485279024
+UniRef50_G4LJE6: TonB-dependent receptor	7.6352193192
+UniRef50_G4LJE6: TonB-dependent receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.6352193192
+UniRef50_B1T5I2	7.6335877863
+UniRef50_B1T5I2|unclassified	7.6335877863
+UniRef50_C5N6S4	7.6335877863
+UniRef50_C5N6S4|g__Staphylococcus.s__Staphylococcus_aureus	7.6335877863
+UniRef50_C6SH38: Transposase, IS30 family	7.6335877863
+UniRef50_C6SH38: Transposase, IS30 family|g__Neisseria.s__Neisseria_meningitidis	7.6335877863
+UniRef50_C6STX7	7.6335877863
+UniRef50_C6STX7|g__Streptococcus.s__Streptococcus_mutans	7.6335877863
+UniRef50_D3EXB3	7.6335877863
+UniRef50_D3EXB3|g__Staphylococcus.s__Staphylococcus_aureus	7.6335877863
+UniRef50_H6MGY8	7.6335877863
+UniRef50_H6MGY8|unclassified	7.6335877863
+UniRef50_L1C6I4: H+ symporter family protein (Fragment)	7.6335877863
+UniRef50_L1C6I4: H+ symporter family protein (Fragment)|g__Escherichia.s__Escherichia_coli	7.6335877863
+UniRef50_Q8DVR6	7.6335877863
+UniRef50_Q8DVR6|g__Streptococcus.s__Streptococcus_mutans	7.6335877863
+UniRef50_UPI00028817B0: hypothetical protein, partial	7.6335877863
+UniRef50_UPI00028817B0: hypothetical protein, partial|unclassified	7.6335877863
+UniRef50_U5T5B4	7.6332348331
+UniRef50_U5T5B4|unclassified	7.6332348331
+UniRef50_C6UY55	7.6321640292
+UniRef50_C6UY55|unclassified	7.6321640292
+UniRef50_Q04JH1: Adenine phosphoribosyltransferase	7.6320413831
+UniRef50_Q04JH1: Adenine phosphoribosyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	7.3529411765
+UniRef50_Q04JH1: Adenine phosphoribosyltransferase|unclassified	0.2791002067
+UniRef50_I7EDR9: TonB-dependent receptor	7.6305289819
+UniRef50_I7EDR9: TonB-dependent receptor|g__Acinetobacter.s__Acinetobacter_baumannii	7.6305289819
+UniRef50_UPI0003605B2B: hydrogenase nickel incorporation protein HypA	7.6299444091
+UniRef50_UPI0003605B2B: hydrogenase nickel incorporation protein HypA|unclassified	7.6299444091
+UniRef50_A6M1R7: Methyl-accepting chemotaxis sensory transducer	7.6285551062
+UniRef50_A6M1R7: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	7.6285551062
+UniRef50_B9KV19	7.6269265219
+UniRef50_B9KV19|unclassified	7.6269265219
+UniRef50_UPI0003B6EABF: sodium:proton antiporter	7.6269102986
+UniRef50_UPI0003B6EABF: sodium:proton antiporter|unclassified	7.6269102986
+UniRef50_H8FT45	7.6257895368
+UniRef50_H8FT45|unclassified	7.6257895368
+UniRef50_Q3K192: UPF0223 protein SAK_1090	7.6239441764
+UniRef50_Q3K192: UPF0223 protein SAK_1090|g__Streptococcus.s__Streptococcus_mutans	7.3275804222
+UniRef50_Q3K192: UPF0223 protein SAK_1090|unclassified	0.2963637542
+UniRef50_A7ZMT0	7.6237595116
+UniRef50_A7ZMT0|g__Escherichia.s__Escherichia_coli	7.6237595116
+UniRef50_Q9I2W4: Uroporphyrinogen-III C-methyltransferase	7.6236524182
+UniRef50_Q9I2W4: Uroporphyrinogen-III C-methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2635156484
+UniRef50_Q9I2W4: Uroporphyrinogen-III C-methyltransferase|unclassified	0.3601367698
+UniRef50_Q57NA5: Zinc import ATP-binding protein ZnuC	7.6213051628
+UniRef50_Q57NA5: Zinc import ATP-binding protein ZnuC|g__Escherichia.s__Escherichia_coli	6.7955259531
+UniRef50_Q57NA5: Zinc import ATP-binding protein ZnuC|unclassified	0.8257792096
+UniRef50_V8B5L5	7.6209960230
+UniRef50_V8B5L5|g__Staphylococcus.s__Staphylococcus_aureus	7.6209960230
+UniRef50_P38942: 4-hydroxybutyrate coenzyme A transferase	7.6207284312
+UniRef50_P38942: 4-hydroxybutyrate coenzyme A transferase|g__Clostridium.s__Clostridium_beijerinckii	7.6207284312
+UniRef50_Q9RWM5	7.6177620898
+UniRef50_Q9RWM5|g__Deinococcus.s__Deinococcus_radiodurans	7.6177620898
+UniRef50_A0A022LHK8	7.6156829578
+UniRef50_A0A022LHK8|unclassified	7.6156829578
+UniRef50_V1VWE5: Multifunctional phosphoenolpyruvate-protein phosphotransferase subunit IIA	7.6150943673
+UniRef50_V1VWE5: Multifunctional phosphoenolpyruvate-protein phosphotransferase subunit IIA|g__Escherichia.s__Escherichia_coli	7.6150943673
+UniRef50_A6LZ95	7.6121991062
+UniRef50_A6LZ95|g__Clostridium.s__Clostridium_beijerinckii	7.6121991062
+UniRef50_A4WVV9	7.6119687809
+UniRef50_A4WVV9|unclassified	7.6119687809
+UniRef50_A6LU95: N-(5'-phosphoribosyl)anthranilate isomerase	7.6113496113
+UniRef50_A6LU95: N-(5'-phosphoribosyl)anthranilate isomerase|g__Clostridium.s__Clostridium_beijerinckii	7.6113496113
+UniRef50_B9KLL4: 4-hydroxybenzoyl-CoA thioesterase	7.6100695176
+UniRef50_B9KLL4: 4-hydroxybenzoyl-CoA thioesterase|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.6100695176
+UniRef50_UPI000381237A: hypothetical protein, partial	7.6067329858
+UniRef50_UPI000381237A: hypothetical protein, partial|unclassified	7.6067329858
+UniRef50_UPI0003654BED: hypothetical protein	7.6045627376
+UniRef50_UPI0003654BED: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.6045627376
+UniRef50_D2Q8M6: Sugar-binding lipoprotein of ABC transporter system	7.6037576952
+UniRef50_D2Q8M6: Sugar-binding lipoprotein of ABC transporter system|g__Propionibacterium.s__Propionibacterium_acnes	7.6037576952
+UniRef50_W1WRK3	7.6021079374
+UniRef50_W1WRK3|unclassified	7.6021079374
+UniRef50_V9T6E9: Sugar ABC transporter permease	7.6011032873
+UniRef50_V9T6E9: Sugar ABC transporter permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.6011032873
+UniRef50_B9AH81	7.5992859127
+UniRef50_B9AH81|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.8889820566
+UniRef50_B9AH81|unclassified	0.7103038561
+UniRef50_W5V1P4: Type II secretion system protein E	7.5982788946
+UniRef50_W5V1P4: Type II secretion system protein E|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5982788946
+UniRef50_R5KYF0	7.5970532642
+UniRef50_R5KYF0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.5970532642
+UniRef50_R6LJ53: Cell cycle protein FtsW	7.5967585382
+UniRef50_R6LJ53: Cell cycle protein FtsW|g__Clostridium.s__Clostridium_beijerinckii	7.5967585382
+UniRef50_A0A038GFP2: OmpA family protein	7.5960958248
+UniRef50_A0A038GFP2: OmpA family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5960958248
+UniRef50_L0GGI8: Lytic murein transglycosylase B	7.5940076972
+UniRef50_L0GGI8: Lytic murein transglycosylase B|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5940076972
+UniRef50_U4UXA0: Putative permease	7.5917148091
+UniRef50_U4UXA0: Putative permease|unclassified	7.5917148091
+UniRef50_P0C348: Peptide chain release factor 2	7.5886138920
+UniRef50_P0C348: Peptide chain release factor 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5886138920
+UniRef50_L1KGA0	7.5858121583
+UniRef50_L1KGA0|unclassified	7.5858121583
+UniRef50_D8JKL5: DNA polymerase III subunit beta	7.5852018096
+UniRef50_D8JKL5: DNA polymerase III subunit beta|g__Acinetobacter.s__Acinetobacter_baumannii	7.5852018096
+UniRef50_Q47329: UDP-glucose 6-dehydrogenase	7.5790433362
+UniRef50_Q47329: UDP-glucose 6-dehydrogenase|g__Escherichia.s__Escherichia_coli	7.5790433362
+UniRef50_P63770: 10 kDa chaperonin	7.5783573553
+UniRef50_P63770: 10 kDa chaperonin|g__Streptococcus.s__Streptococcus_mutans	7.5783573553
+UniRef50_E3A3X7: DhcB, dehydrocarnitine CoA transferase, subunit B	7.5759521145
+UniRef50_E3A3X7: DhcB, dehydrocarnitine CoA transferase, subunit B|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5759521145
+UniRef50_A0A012M8I6	7.5757575758
+UniRef50_A0A012M8I6|unclassified	7.5757575758
+UniRef50_A6U352	7.5757575758
+UniRef50_A6U352|g__Staphylococcus.s__Staphylococcus_aureus	7.5757575758
+UniRef50_C0MBU0: 50S ribosomal protein L11	7.5757575758
+UniRef50_C0MBU0: 50S ribosomal protein L11|g__Streptococcus.s__Streptococcus_mutans	7.5757575758
+UniRef50_F5WGR4	7.5757575758
+UniRef50_F5WGR4|g__Staphylococcus.s__Staphylococcus_aureus	7.5757575758
+UniRef50_P41039	7.5757575758
+UniRef50_P41039|g__Escherichia.s__Escherichia_coli	7.5757575758
+UniRef50_Q2YYI1	7.5757575758
+UniRef50_Q2YYI1|unclassified	7.5757575758
+UniRef50_Q5HHG7	7.5757575758
+UniRef50_Q5HHG7|g__Staphylococcus.s__Staphylococcus_aureus	7.5757575758
+UniRef50_Q5HQ20: Phenol soluble modulin beta 1	7.5757575758
+UniRef50_Q5HQ20: Phenol soluble modulin beta 1|g__Staphylococcus.s__Staphylococcus_epidermidis	7.5757575758
+UniRef50_Q8D1Q8: Arabinose 5-phosphate isomerase KdsD	7.5753859364
+UniRef50_Q8D1Q8: Arabinose 5-phosphate isomerase KdsD|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3836256682
+UniRef50_Q8D1Q8: Arabinose 5-phosphate isomerase KdsD|unclassified	0.1917602682
+UniRef50_A0NWH9	7.5739000905
+UniRef50_A0NWH9|unclassified	7.5739000905
+UniRef50_G5RJ21: GTP-binding protein Era	7.5738253548
+UniRef50_G5RJ21: GTP-binding protein Era|g__Escherichia.s__Escherichia_coli	7.5738253548
+UniRef50_C3C2K9	7.5735906159
+UniRef50_C3C2K9|g__Clostridium.s__Clostridium_beijerinckii	7.5735906159
+UniRef50_K0M739	7.5733587221
+UniRef50_K0M739|unclassified	7.5733587221
+UniRef50_B5G543: Sip	7.5722934487
+UniRef50_B5G543: Sip|g__Streptococcus.s__Streptococcus_agalactiae	7.5722934487
+UniRef50_A5WHZ8: OmpW family protein	7.5717477985
+UniRef50_A5WHZ8: OmpW family protein|g__Acinetobacter.s__Acinetobacter_baumannii	7.5717477985
+UniRef50_UPI0000E0F611: UTP--glucose-1-phosphate uridylyltransferase	7.5669148920
+UniRef50_UPI0000E0F611: UTP--glucose-1-phosphate uridylyltransferase|unclassified	7.5669148920
+UniRef50_F8JDA2	7.5666017535
+UniRef50_F8JDA2|unclassified	7.5666017535
+UniRef50_A0A009KXU9	7.5650011682
+UniRef50_A0A009KXU9|g__Acinetobacter.s__Acinetobacter_baumannii	7.5650011682
+UniRef50_Z3AQ68	7.5647075647
+UniRef50_Z3AQ68|g__Staphylococcus.s__Staphylococcus_aureus	7.5647075647
+UniRef50_Q4KIU4: Type II and III secretion system protein	7.5640708252
+UniRef50_Q4KIU4: Type II and III secretion system protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5640708252
+UniRef50_W1X1F9	7.5619942578
+UniRef50_W1X1F9|g__Escherichia.s__Escherichia_coli	7.1466784678
+UniRef50_W1X1F9|unclassified	0.4153157900
+UniRef50_P45761: Putative type II secretion system protein J	7.5617096241
+UniRef50_P45761: Putative type II secretion system protein J|g__Escherichia.s__Escherichia_coli	7.5617096241
+UniRef50_C5WG38	7.5608344025
+UniRef50_C5WG38|unclassified	7.5608344025
+UniRef50_F4DWK4: Triacylglycerol lipase	7.5597114754
+UniRef50_F4DWK4: Triacylglycerol lipase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5597114754
+UniRef50_Q9JYB8: ComE operon protein 1-related protein	7.5587188612
+UniRef50_Q9JYB8: ComE operon protein 1-related protein|g__Neisseria.s__Neisseria_meningitidis	7.5587188612
+UniRef50_N6U9Z2	7.5544095463
+UniRef50_N6U9Z2|unclassified	7.5544095463
+UniRef50_S4JHM6	7.5504986731
+UniRef50_S4JHM6|unclassified	7.5504986731
+UniRef50_X0Z5J9: Marine sediment metagenome DNA, contig: S01H4_C01216 (Fragment)	7.5493918699
+UniRef50_X0Z5J9: Marine sediment metagenome DNA, contig: S01H4_C01216 (Fragment)|unclassified	7.5493918699
+UniRef50_E8XYA4: HAD-superfamily subfamily IB hydrolase, TIGR01490	7.5493612079
+UniRef50_E8XYA4: HAD-superfamily subfamily IB hydrolase, TIGR01490|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5493612079
+UniRef50_P76062: Rac prophage repressor	7.5481371767
+UniRef50_P76062: Rac prophage repressor|g__Escherichia.s__Escherichia_coli	7.5481371767
+UniRef50_H5IZ71	7.5478587170
+UniRef50_H5IZ71|g__Escherichia.s__Escherichia_coli	7.5478587170
+UniRef50_V2Z2I4	7.5472772841
+UniRef50_V2Z2I4|g__Escherichia.s__Escherichia_coli	7.5472772841
+UniRef50_Q16DT4: Magnesium-chelatase 30 kDa subunit	7.5458352229
+UniRef50_Q16DT4: Magnesium-chelatase 30 kDa subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.5458352229
+UniRef50_Q1RJH2: ATP-dependent Clp protease proteolytic subunit	7.5449574906
+UniRef50_Q1RJH2: ATP-dependent Clp protease proteolytic subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.4570782914
+UniRef50_Q1RJH2: ATP-dependent Clp protease proteolytic subunit|unclassified	0.0878791991
+UniRef50_W0YWT0: ClpB protein	7.5445788984
+UniRef50_W0YWT0: ClpB protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5445788984
+UniRef50_T6N9U5	7.5408384554
+UniRef50_T6N9U5|g__Escherichia.s__Escherichia_coli	7.5408384554
+UniRef50_J9YRU2	7.5381967974
+UniRef50_J9YRU2|g__Streptococcus.s__Streptococcus_agalactiae	7.5381967974
+UniRef50_W1VVE0: 2-oxoglutarate dehydrogenase E1 component	7.5376733515
+UniRef50_W1VVE0: 2-oxoglutarate dehydrogenase E1 component|g__Staphylococcus.s__Staphylococcus_aureus	7.5376733515
+UniRef50_F8KKC8	7.5374744492
+UniRef50_F8KKC8|g__Staphylococcus.s__Staphylococcus_epidermidis	7.5374744492
+UniRef50_Q47706: Membrane-associated protein UidC	7.5373190938
+UniRef50_Q47706: Membrane-associated protein UidC|g__Escherichia.s__Escherichia_coli	7.5373190938
+UniRef50_R4RCN0: 3-ketoacyl-CoA thiolase FadA	7.5341525084
+UniRef50_R4RCN0: 3-ketoacyl-CoA thiolase FadA|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5341525084
+UniRef50_Q4UUD9: Flagellar biosynthesis switch protein	7.5318993792
+UniRef50_Q4UUD9: Flagellar biosynthesis switch protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5318993792
+UniRef50_P20582: PQB biosynthetic 3-oxoacyl-[acyl-carrier-protein] synthase III	7.5310344120
+UniRef50_P20582: PQB biosynthetic 3-oxoacyl-[acyl-carrier-protein] synthase III|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5310344120
+UniRef50_A1WQY3: Alanine racemase	7.5295045230
+UniRef50_A1WQY3: Alanine racemase|g__Escherichia.s__Escherichia_coli	7.5295045230
+UniRef50_UPI00029CB7E1: hypothetical protein, partial	7.5263184591
+UniRef50_UPI00029CB7E1: hypothetical protein, partial|unclassified	7.5263184591
+UniRef50_M4WY98: SAM-dependent methyltransferase	7.5228289514
+UniRef50_M4WY98: SAM-dependent methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5228289514
+UniRef50_C1D4B9: Recombination-associated protein RdgC	7.5223896898
+UniRef50_C1D4B9: Recombination-associated protein RdgC|g__Neisseria.s__Neisseria_meningitidis	7.5223896898
+UniRef50_E0T7X0: LysR family transcriptional regulator YnfL	7.5222511771
+UniRef50_E0T7X0: LysR family transcriptional regulator YnfL|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5222511771
+UniRef50_L1KB84	7.5204743597
+UniRef50_L1KB84|unclassified	7.5204743597
+UniRef50_A5UKR4	7.5187969925
+UniRef50_A5UKR4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.5187969925
+UniRef50_D3DZJ0: DNA-directed RNA polymerase subunit H	7.5187969925
+UniRef50_D3DZJ0: DNA-directed RNA polymerase subunit H|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.5187969925
+UniRef50_F0KC31	7.5187969925
+UniRef50_F0KC31|g__Clostridium.s__Clostridium_beijerinckii	7.5187969925
+UniRef50_Q2J514: Endoribonuclease L-PSP	7.5187969925
+UniRef50_Q2J514: Endoribonuclease L-PSP|g__Propionibacterium.s__Propionibacterium_acnes	7.5187969925
+UniRef50_R7B3R6	7.5187969925
+UniRef50_R7B3R6|g__Streptococcus.s__Streptococcus_mutans	7.5187969925
+UniRef50_UPI000255BC6C: PTS system galactitol-specific transporter subunit IIC, partial	7.5187969925
+UniRef50_UPI000255BC6C: PTS system galactitol-specific transporter subunit IIC, partial|unclassified	7.5187969925
+UniRef50_UPI0003C7B3F9: hypothetical protein	7.5187969925
+UniRef50_UPI0003C7B3F9: hypothetical protein|unclassified	7.5187969925
+UniRef50_W2DQG0	7.5187969925
+UniRef50_W2DQG0|unclassified	7.5187969925
+UniRef50_A0A023SGI9: CAAX protease	7.5170583784
+UniRef50_A0A023SGI9: CAAX protease|g__Streptococcus.s__Streptococcus_agalactiae	7.5170583784
+UniRef50_B1LKC4: Ureidoglycolate lyase	7.5120937136
+UniRef50_B1LKC4: Ureidoglycolate lyase|g__Escherichia.s__Escherichia_coli	7.4104859335
+UniRef50_B1LKC4: Ureidoglycolate lyase|unclassified	0.1016077801
+UniRef50_F0RM02: Metallophosphoesterase	7.5105540047
+UniRef50_F0RM02: Metallophosphoesterase|g__Deinococcus.s__Deinococcus_radiodurans	7.5105540047
+UniRef50_Q57048	7.5100112240
+UniRef50_Q57048|g__Escherichia.s__Escherichia_coli	7.5100112240
+UniRef50_Q10SW9: Transposon protein, putative, unclassified, expressed	7.5085238377
+UniRef50_Q10SW9: Transposon protein, putative, unclassified, expressed|unclassified	7.5085238377
+UniRef50_D2JCW2: Mobilization protein	7.5072423956
+UniRef50_D2JCW2: Mobilization protein|unclassified	7.5072423956
+UniRef50_I6RIK4: RNA polymerase ECF-subfamily sigma-70 factor	7.5066357001
+UniRef50_I6RIK4: RNA polymerase ECF-subfamily sigma-70 factor|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5066357001
+UniRef50_UPI00036C8B3C: AraC family transcriptional regulator	7.5057117322
+UniRef50_UPI00036C8B3C: AraC family transcriptional regulator|unclassified	7.5057117322
+UniRef50_A0LZ82: Aldose 1-epimerase	7.5056867487
+UniRef50_A0LZ82: Aldose 1-epimerase|g__Clostridium.s__Clostridium_beijerinckii	7.5056867487
+UniRef50_R5BWI2	7.5053179098
+UniRef50_R5BWI2|g__Clostridium.s__Clostridium_beijerinckii	7.5053179098
+UniRef50_B0VC75	7.5042256036
+UniRef50_B0VC75|g__Acinetobacter.s__Acinetobacter_baumannii	7.5042256036
+UniRef50_A0A024H9M2: HTH-type transcriptional regulator HexR	7.5034179246
+UniRef50_A0A024H9M2: HTH-type transcriptional regulator HexR|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5034179246
+UniRef50_F2MV72: C4 dicarboxylate binding protein	7.5031064883
+UniRef50_F2MV72: C4 dicarboxylate binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.5031064883
+UniRef50_F4A483: Diacylglycerol kinase	7.5003731529
+UniRef50_F4A483: Diacylglycerol kinase|g__Clostridium.s__Clostridium_beijerinckii	7.5003731529
+UniRef50_Q02U67	7.4997925745
+UniRef50_Q02U67|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.4997925745
+UniRef50_D8JHX6: HAD superfamily hydrolase	7.4987560974
+UniRef50_D8JHX6: HAD superfamily hydrolase|g__Acinetobacter.s__Acinetobacter_baumannii	7.4987560974
+UniRef50_V7ZI65: Transcriptional regulator	7.4985096014
+UniRef50_V7ZI65: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.4985096014
+UniRef50_D9RHA2	7.4964722760
+UniRef50_D9RHA2|g__Staphylococcus.s__Staphylococcus_aureus	5.6497175141
+UniRef50_D9RHA2|unclassified	1.8467547619
+UniRef50_P39283	7.4953586966
+UniRef50_P39283|g__Escherichia.s__Escherichia_coli	7.4953586966
+UniRef50_B5FHH0: Protein FixA	7.4937434738
+UniRef50_B5FHH0: Protein FixA|g__Escherichia.s__Escherichia_coli	6.4679745137
+UniRef50_B5FHH0: Protein FixA|unclassified	1.0257689601
+UniRef50_X5EKA8	7.4929971989
+UniRef50_X5EKA8|g__Staphylococcus.s__Staphylococcus_aureus	7.4929971989
+UniRef50_B2FQX2: tRNA-specific 2-thiouridylase MnmA	7.4926307516
+UniRef50_B2FQX2: tRNA-specific 2-thiouridylase MnmA|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.4497391068
+UniRef50_B2FQX2: tRNA-specific 2-thiouridylase MnmA|unclassified	0.0428916448
+UniRef50_W0YL09: von Willebrand factor A	7.4924553731
+UniRef50_W0YL09: von Willebrand factor A|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.4924553731
+UniRef50_A6LYT7	7.4897986047
+UniRef50_A6LYT7|g__Clostridium.s__Clostridium_beijerinckii	7.4897986047
+UniRef50_P24696	7.4887575618
+UniRef50_P24696|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2992700730
+UniRef50_P24696|unclassified	0.1894874888
+UniRef50_D8MEJ9: PTS lactose/cellobiose IIA component	7.4873831389
+UniRef50_D8MEJ9: PTS lactose/cellobiose IIA component|g__Streptococcus.s__Streptococcus_mutans	7.4873831389
+UniRef50_G7M5C3: Metal-dependent phosphohydrolase HD sub domain containing protein	7.4862413194
+UniRef50_G7M5C3: Metal-dependent phosphohydrolase HD sub domain containing protein|g__Clostridium.s__Clostridium_beijerinckii	7.4862413194
+UniRef50_UPI000361FC4E: hypothetical protein	7.4835235529
+UniRef50_UPI000361FC4E: hypothetical protein|unclassified	7.4835235529
+UniRef50_P43924: Pyruvate kinase	7.4827733120
+UniRef50_P43924: Pyruvate kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3801787803
+UniRef50_P43924: Pyruvate kinase|g__Neisseria.s__Neisseria_meningitidis	0.9442870633
+UniRef50_P43924: Pyruvate kinase|unclassified	0.1583074684
+UniRef50_W7NLU7	7.4822877080
+UniRef50_W7NLU7|g__Staphylococcus.s__Staphylococcus_aureus	6.2111801242
+UniRef50_W7NLU7|unclassified	1.2711075838
+UniRef50_UPI00029AF728: 30S ribosomal protein S3	7.4821851841
+UniRef50_UPI00029AF728: 30S ribosomal protein S3|unclassified	7.4821851841
+UniRef50_D3V7P3: Multidrug resistance protein MdtB	7.4810167988
+UniRef50_D3V7P3: Multidrug resistance protein MdtB|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1519611884
+UniRef50_D3V7P3: Multidrug resistance protein MdtB|g__Escherichia.s__Escherichia_coli	0.3290556104
+UniRef50_A4WXV7: Transcriptional regulator, GntR family	7.4786378421
+UniRef50_A4WXV7: Transcriptional regulator, GntR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.4786378421
+UniRef50_Q8Y1I2: 3-octaprenyl-4-hydroxybenzoate carboxy-lyase	7.4779232205
+UniRef50_Q8Y1I2: 3-octaprenyl-4-hydroxybenzoate carboxy-lyase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.4192135164
+UniRef50_Q8Y1I2: 3-octaprenyl-4-hydroxybenzoate carboxy-lyase|unclassified	0.0587097041
+UniRef50_I4Y3Z4	7.4772886094
+UniRef50_I4Y3Z4|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.4772886094
+UniRef50_Q5HLU0	7.4768706152
+UniRef50_Q5HLU0|g__Staphylococcus.s__Staphylococcus_epidermidis	7.4768706152
+UniRef50_O27653: 30S ribosomal protein S19e	7.4766100222
+UniRef50_O27653: 30S ribosomal protein S19e|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.4766100222
+UniRef50_B5YKP8: Phenylacrylic acid decarboxylase	7.4740621452
+UniRef50_B5YKP8: Phenylacrylic acid decarboxylase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.4740621452
+UniRef50_F0RR64	7.4732650977
+UniRef50_F0RR64|g__Deinococcus.s__Deinococcus_radiodurans	7.4732650977
+UniRef50_V4JV50	7.4704219784
+UniRef50_V4JV50|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.4704219784
+UniRef50_UPI0001912667: hypothetical protein	7.4701517724
+UniRef50_UPI0001912667: hypothetical protein|unclassified	7.4701517724
+UniRef50_B2V085: Pyruvate kinase	7.4700682394
+UniRef50_B2V085: Pyruvate kinase|g__Clostridium.s__Clostridium_beijerinckii	7.4700682394
+UniRef50_R5EIN3	7.4690872885
+UniRef50_R5EIN3|unclassified	7.4690872885
+UniRef50_P78285: Lysozyme RrrD	7.4676456974
+UniRef50_P78285: Lysozyme RrrD|g__Escherichia.s__Escherichia_coli	7.4676456974
+UniRef50_M1F9S3: Hydrogen peroxide-inducible genes activator	7.4671675618
+UniRef50_M1F9S3: Hydrogen peroxide-inducible genes activator|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.4671675618
+UniRef50_Q05619: Butyrate kinase	7.4646071265
+UniRef50_Q05619: Butyrate kinase|g__Clostridium.s__Clostridium_beijerinckii	7.4646071265
+UniRef50_B5Z3J6	7.4626865672
+UniRef50_B5Z3J6|unclassified	7.4626865672
+UniRef50_B7VAJ2	7.4626865672
+UniRef50_B7VAJ2|unclassified	7.4626865672
+UniRef50_C6SA75	7.4626865672
+UniRef50_C6SA75|unclassified	7.4626865672
+UniRef50_F1UIR5	7.4626865672
+UniRef50_F1UIR5|g__Propionibacterium.s__Propionibacterium_acnes	7.4626865672
+UniRef50_M5EHQ4	7.4626865672
+UniRef50_M5EHQ4|unclassified	7.4626865672
+UniRef50_M9EN20: Acyl-coenzyme A dehydrogenase domain protein	7.4626865672
+UniRef50_M9EN20: Acyl-coenzyme A dehydrogenase domain protein|g__Escherichia.s__Escherichia_coli	7.4626865672
+UniRef50_R4ZMN8	7.4626865672
+UniRef50_R4ZMN8|g__Streptococcus.s__Streptococcus_agalactiae	7.4626865672
+UniRef50_V0SLU0	7.4626865672
+UniRef50_V0SLU0|g__Escherichia.s__Escherichia_coli	7.4626865672
+UniRef50_W8SSL3: Sterol binding protein	7.4626865672
+UniRef50_W8SSL3: Sterol binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.4626865672
+UniRef50_H4W197: Phosphate transporter family protein	7.4612460537
+UniRef50_H4W197: Phosphate transporter family protein|g__Escherichia.s__Escherichia_coli	7.4612460537
+UniRef50_A0JUU8: tRNA pseudouridine synthase B	7.4605468813
+UniRef50_A0JUU8: tRNA pseudouridine synthase B|g__Propionibacterium.s__Propionibacterium_acnes	7.4605468813
+UniRef50_A6M1J6: PolyA polymerase related protein (HD hydrolase) and P-loop ATP-ase domain	7.4591814478
+UniRef50_A6M1J6: PolyA polymerase related protein (HD hydrolase) and P-loop ATP-ase domain|g__Clostridium.s__Clostridium_beijerinckii	7.4591814478
+UniRef50_Q5GVA4: Dehydrogenase	7.4581127086
+UniRef50_Q5GVA4: Dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	7.4581127086
+UniRef50_Q9HTD7: Aspartate ammonia-lyase	7.4578303783
+UniRef50_Q9HTD7: Aspartate ammonia-lyase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9421620064
+UniRef50_Q9HTD7: Aspartate ammonia-lyase|g__Helicobacter.s__Helicobacter_pylori	0.7692307692
+UniRef50_Q9HTD7: Aspartate ammonia-lyase|unclassified	0.7464376026
+UniRef50_A4VNQ6: Long-chain-fatty-acid--CoA ligase	7.4555824419
+UniRef50_A4VNQ6: Long-chain-fatty-acid--CoA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.4555824419
+UniRef50_UPI0003959D14: PREDICTED: basic salivary proline-rich protein 1-like	7.4550282151
+UniRef50_UPI0003959D14: PREDICTED: basic salivary proline-rich protein 1-like|unclassified	7.4550282151
+UniRef50_F4M9A1: Dimethyl sulfoxide reductase chain YnfE	7.4547699397
+UniRef50_F4M9A1: Dimethyl sulfoxide reductase chain YnfE|g__Escherichia.s__Escherichia_coli	7.4547699397
+UniRef50_A0A009ENE3	7.4525774427
+UniRef50_A0A009ENE3|unclassified	7.4525774427
+UniRef50_UPI0004628EFB: hypothetical protein	7.4512079027
+UniRef50_UPI0004628EFB: hypothetical protein|unclassified	7.4512079027
+UniRef50_A6LXR8: (NiFe) hydrogenase maturation protein HypF	7.4499176000
+UniRef50_A6LXR8: (NiFe) hydrogenase maturation protein HypF|g__Clostridium.s__Clostridium_beijerinckii	7.4499176000
+UniRef50_D3E4D9	7.4441992920
+UniRef50_D3E4D9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.4441992920
+UniRef50_Q3IV22	7.4429650202
+UniRef50_Q3IV22|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0000312502
+UniRef50_Q3IV22|unclassified	2.4429337700
+UniRef50_P0CF87: Putative arsenate reductase	7.4424163407
+UniRef50_P0CF87: Putative arsenate reductase|g__Escherichia.s__Escherichia_coli	7.4424163407
+UniRef50_P54019: 30S ribosomal protein S13	7.4354983968
+UniRef50_P54019: 30S ribosomal protein S13|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.4354983968
+UniRef50_Q9I048: tRNA-dihydrouridine synthase A	7.4347202516
+UniRef50_Q9I048: tRNA-dihydrouridine synthase A|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7210009812
+UniRef50_Q9I048: tRNA-dihydrouridine synthase A|unclassified	0.7137192704
+UniRef50_L1KE49	7.4322957616
+UniRef50_L1KE49|unclassified	7.4322957616
+UniRef50_A6LW01	7.4317281634
+UniRef50_A6LW01|g__Clostridium.s__Clostridium_beijerinckii	7.4317281634
+UniRef50_K2SHY0	7.4293506615
+UniRef50_K2SHY0|unclassified	7.4293506615
+UniRef50_P57067: Outer-membrane lipoprotein carrier protein	7.4277574278
+UniRef50_P57067: Outer-membrane lipoprotein carrier protein|g__Neisseria.s__Neisseria_meningitidis	7.4277574278
+UniRef50_I3THN3	7.4276390176
+UniRef50_I3THN3|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.4276390176
+UniRef50_S5Y434: Sulfolipid biosynthesis protein	7.4261127876
+UniRef50_S5Y434: Sulfolipid biosynthesis protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.4261127876
+UniRef50_A6M0M4: Respiratory-chain NADH dehydrogenase domain, 51 kDa subunit	7.4246956506
+UniRef50_A6M0M4: Respiratory-chain NADH dehydrogenase domain, 51 kDa subunit|g__Clostridium.s__Clostridium_beijerinckii	7.4246956506
+UniRef50_UPI00023751B8: 6-pyruvoyl-tetrahydropterin synthase	7.4242955366
+UniRef50_UPI00023751B8: 6-pyruvoyl-tetrahydropterin synthase|unclassified	7.4242955366
+UniRef50_U5PD17: ABC transporter permease	7.4177595150
+UniRef50_U5PD17: ABC transporter permease|g__Streptococcus.s__Streptococcus_agalactiae	7.4177595150
+UniRef50_R6GJ60: Capsular polysaccharide biosynthesis protein	7.4170527089
+UniRef50_R6GJ60: Capsular polysaccharide biosynthesis protein|g__Clostridium.s__Clostridium_beijerinckii	7.4170527089
+UniRef50_B1GZC3: Tryptophan synthase alpha chain	7.4168502766
+UniRef50_B1GZC3: Tryptophan synthase alpha chain|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.4168502766
+UniRef50_B0UKB7: Flagellar biosynthetic protein FliP	7.4166988798
+UniRef50_B0UKB7: Flagellar biosynthetic protein FliP|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.4166988798
+UniRef50_O27642: Probable deoxyuridine 5'-triphosphate nucleotidohydrolase	7.4165346477
+UniRef50_O27642: Probable deoxyuridine 5'-triphosphate nucleotidohydrolase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.4165346477
+UniRef50_B1Y4X6: Mg2 transporter protein CorA family protein	7.4161091686
+UniRef50_B1Y4X6: Mg2 transporter protein CorA family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.4161091686
+UniRef50_U5MNC9: PMT family glycosyltransferase, 4-amino-4-deoxy-L-arabinose transferase	7.4152768987
+UniRef50_U5MNC9: PMT family glycosyltransferase, 4-amino-4-deoxy-L-arabinose transferase|g__Clostridium.s__Clostridium_beijerinckii	7.4152768987
+UniRef50_A3PJZ1: PpiC-type peptidyl-prolyl cis-trans isomerase	7.4141017440
+UniRef50_A3PJZ1: PpiC-type peptidyl-prolyl cis-trans isomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.4141017440
+UniRef50_U1EEA4	7.4131188632
+UniRef50_U1EEA4|unclassified	7.4131188632
+UniRef50_A6U210	7.4074074074
+UniRef50_A6U210|g__Staphylococcus.s__Staphylococcus_aureus	7.4074074074
+UniRef50_D5D727	7.4074074074
+UniRef50_D5D727|g__Escherichia.s__Escherichia_coli	7.4074074074
+UniRef50_J1C5J4	7.4074074074
+UniRef50_J1C5J4|g__Staphylococcus.s__Staphylococcus_epidermidis	7.4074074074
+UniRef50_J8UZR3	7.4074074074
+UniRef50_J8UZR3|unclassified	7.4074074074
+UniRef50_J9UTL0	7.4074074074
+UniRef50_J9UTL0|g__Staphylococcus.s__Staphylococcus_aureus	7.4074074074
+UniRef50_M9VB01	7.4074074074
+UniRef50_M9VB01|g__Propionibacterium.s__Propionibacterium_acnes	7.4074074074
+UniRef50_O33589: AgrD	7.4074074074
+UniRef50_O33589: AgrD|g__Staphylococcus.s__Staphylococcus_aureus	7.4074074074
+UniRef50_Q2FWA3	7.4074074074
+UniRef50_Q2FWA3|unclassified	7.4074074074
+UniRef50_Q5HRK0	7.4074074074
+UniRef50_Q5HRK0|g__Staphylococcus.s__Staphylococcus_epidermidis	7.4074074074
+UniRef50_Q9XJJ6: Spanin, inner membrane subunit	7.4074074074
+UniRef50_Q9XJJ6: Spanin, inner membrane subunit|g__Escherichia.s__Escherichia_coli	7.4074074074
+UniRef50_T1ZU11	7.4074074074
+UniRef50_T1ZU11|g__Streptococcus.s__Streptococcus_mutans	7.4074074074
+UniRef50_X6PUR0	7.4074074074
+UniRef50_X6PUR0|unclassified	7.4074074074
+UniRef50_Q8E6C0	7.4058851289
+UniRef50_Q8E6C0|g__Streptococcus.s__Streptococcus_agalactiae	7.4058851289
+UniRef50_Q88FA1: Transcriptional regulator, GntR family	7.4054371434
+UniRef50_Q88FA1: Transcriptional regulator, GntR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.4054371434
+UniRef50_E2XUR6: Amino acid ABC transporter, permease protein	7.4037682334
+UniRef50_E2XUR6: Amino acid ABC transporter, permease protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.4037682334
+UniRef50_Q00517: Type II secretion system protein J	7.4022787297
+UniRef50_Q00517: Type II secretion system protein J|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.4022787297
+UniRef50_R4ZRH4: Sensor histidine kinase	7.4015897492
+UniRef50_R4ZRH4: Sensor histidine kinase|g__Streptococcus.s__Streptococcus_agalactiae	7.4015897492
+UniRef50_D4HE05	7.4013520566
+UniRef50_D4HE05|g__Propionibacterium.s__Propionibacterium_acnes	7.4013520566
+UniRef50_X4X4C7: DNA-binding protein	7.3996394936
+UniRef50_X4X4C7: DNA-binding protein|g__Escherichia.s__Escherichia_coli	7.3996394936
+UniRef50_M1N6B4: Ribonuclease E	7.3970208039
+UniRef50_M1N6B4: Ribonuclease E|g__Clostridium.s__Clostridium_beijerinckii	7.3970208039
+UniRef50_Q186R1: Thiazole synthase	7.3956683678
+UniRef50_Q186R1: Thiazole synthase|g__Clostridium.s__Clostridium_beijerinckii	7.3956683678
+UniRef50_X8ILE6: Transposase, IS4-like family protein	7.3937406041
+UniRef50_X8ILE6: Transposase, IS4-like family protein|g__Staphylococcus.s__Staphylococcus_aureus	7.3937406041
+UniRef50_X4ZS10: Bacterial regulatory s, gntR family protein	7.3921378115
+UniRef50_X4ZS10: Bacterial regulatory s, gntR family protein|g__Acinetobacter.s__Acinetobacter_baumannii	7.3921378115
+UniRef50_Q0TN75: Sulfatase	7.3895153731
+UniRef50_Q0TN75: Sulfatase|g__Clostridium.s__Clostridium_beijerinckii	7.3895153731
+UniRef50_A3PRG0	7.3885371001
+UniRef50_A3PRG0|unclassified	7.3885371001
+UniRef50_D3QHI9	7.3882679480
+UniRef50_D3QHI9|g__Staphylococcus.s__Staphylococcus_aureus	7.2055830812
+UniRef50_D3QHI9|unclassified	0.1826848669
+UniRef50_P0AA77: D-galactonate transporter	7.3864258871
+UniRef50_P0AA77: D-galactonate transporter|g__Escherichia.s__Escherichia_coli	7.3864258871
+UniRef50_A6LT02: RNA polymerase, sigma-24 subunit, ECF subfamily	7.3825869020
+UniRef50_A6LT02: RNA polymerase, sigma-24 subunit, ECF subfamily|g__Clostridium.s__Clostridium_beijerinckii	7.3825869020
+UniRef50_T9WCL0: Phage tail fiber assembly protein	7.3819726691
+UniRef50_T9WCL0: Phage tail fiber assembly protein|g__Escherichia.s__Escherichia_coli	7.3819726691
+UniRef50_Q9I4E3: N(G),N(G)-dimethylarginine dimethylaminohydrolase	7.3816833241
+UniRef50_Q9I4E3: N(G),N(G)-dimethylarginine dimethylaminohydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3972572505
+UniRef50_Q9I4E3: N(G),N(G)-dimethylarginine dimethylaminohydrolase|unclassified	0.9844260736
+UniRef50_Q08SF7	7.3816453787
+UniRef50_Q08SF7|unclassified	7.3816453787
+UniRef50_A5IR90: Holin, SPP1 family	7.3809783201
+UniRef50_A5IR90: Holin, SPP1 family|g__Staphylococcus.s__Staphylococcus_aureus	7.3809783201
+UniRef50_W1GMB1	7.3799525748
+UniRef50_W1GMB1|unclassified	7.3799525748
+UniRef50_J9YSA3: Lipoprotein	7.3788130087
+UniRef50_J9YSA3: Lipoprotein|g__Streptococcus.s__Streptococcus_agalactiae	7.3788130087
+UniRef50_A5UJC4: Mg-dependent DNase, TatD	7.3770762475
+UniRef50_A5UJC4: Mg-dependent DNase, TatD|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.3770762475
+UniRef50_B2TBH4: Major facilitator superfamily MFS_1	7.3743429397
+UniRef50_B2TBH4: Major facilitator superfamily MFS_1|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3743429397
+UniRef50_R7KQ82: ABC-type antimicrobial peptide transport system ATPase component	7.3741624843
+UniRef50_R7KQ82: ABC-type antimicrobial peptide transport system ATPase component|g__Clostridium.s__Clostridium_beijerinckii	7.3741624843
+UniRef50_V5UAN7: GNAT family acetyltransferase	7.3738655591
+UniRef50_V5UAN7: GNAT family acetyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3738655591
+UniRef50_A3LL40	7.3738494457
+UniRef50_A3LL40|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2375548293
+UniRef50_A3LL40|unclassified	1.1362946165
+UniRef50_A6M0G1: Extracellular solute-binding protein, family 5	7.3717013604
+UniRef50_A6M0G1: Extracellular solute-binding protein, family 5|g__Clostridium.s__Clostridium_beijerinckii	7.3717013604
+UniRef50_E0WIF5: CagZ protein	7.3715388311
+UniRef50_E0WIF5: CagZ protein|g__Helicobacter.s__Helicobacter_pylori	7.3715388311
+UniRef50_D4HCU3: Pyruvate kinase	7.3705315828
+UniRef50_D4HCU3: Pyruvate kinase|g__Propionibacterium.s__Propionibacterium_acnes	7.3705315828
+UniRef50_M4WSH4	7.3700581502
+UniRef50_M4WSH4|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3700581502
+UniRef50_S9Q9U8	7.3697383747
+UniRef50_S9Q9U8|unclassified	7.3697383747
+UniRef50_UPI0001E8ECCB: hypothetical protein, partial	7.3682109833
+UniRef50_UPI0001E8ECCB: hypothetical protein, partial|unclassified	7.3682109833
+UniRef50_T0TDK7: Chorismate mutase I	7.3667073667
+UniRef50_T0TDK7: Chorismate mutase I|g__Streptococcus.s__Streptococcus_mutans	7.3667073667
+UniRef50_R9SMQ4: Phosphate ABC transporter permease protein PstA	7.3665716076
+UniRef50_R9SMQ4: Phosphate ABC transporter permease protein PstA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.3665716076
+UniRef50_Q1QEI9: Ubiquinone biosynthesis O-methyltransferase	7.3665074886
+UniRef50_Q1QEI9: Ubiquinone biosynthesis O-methyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	7.3665074886
+UniRef50_Q6FEV8: 3-isopropylmalate dehydratase small subunit	7.3646392944
+UniRef50_Q6FEV8: 3-isopropylmalate dehydratase small subunit|g__Escherichia.s__Escherichia_coli	6.8039114964
+UniRef50_Q6FEV8: 3-isopropylmalate dehydratase small subunit|unclassified	0.5607277980
+UniRef50_A6T886: tRNA 2-thiocytidine biosynthesis protein TtcA	7.3637789680
+UniRef50_A6T886: tRNA 2-thiocytidine biosynthesis protein TtcA|g__Escherichia.s__Escherichia_coli	7.3637789680
+UniRef50_G2AN26: 4-alpha-L-fucosyltransferase family protein	7.3627234834
+UniRef50_G2AN26: 4-alpha-L-fucosyltransferase family protein|g__Escherichia.s__Escherichia_coli	7.3627234834
+UniRef50_Q9KPS2: Na(+)-translocating NADH-quinone reductase subunit B	7.3620460142
+UniRef50_Q9KPS2: Na(+)-translocating NADH-quinone reductase subunit B|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3620460142
+UniRef50_R4NT35: Bipolar DNA helicase	7.3613240167
+UniRef50_R4NT35: Bipolar DNA helicase|g__Streptococcus.s__Streptococcus_mutans	7.3613240167
+UniRef50_U5MQD6: TIGR03943 family protein	7.3596660175
+UniRef50_U5MQD6: TIGR03943 family protein|g__Clostridium.s__Clostridium_beijerinckii	7.3596660175
+UniRef50_UPI0003735C7E: hypothetical protein	7.3592440900
+UniRef50_UPI0003735C7E: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.7191636380
+UniRef50_UPI0003735C7E: hypothetical protein|unclassified	0.6400804520
+UniRef50_UPI000361DA3C: hypothetical protein	7.3592070415
+UniRef50_UPI000361DA3C: hypothetical protein|unclassified	7.3592070415
+UniRef50_P02921: Melibiose carrier protein	7.3586851038
+UniRef50_P02921: Melibiose carrier protein|g__Escherichia.s__Escherichia_coli	7.3586851038
+UniRef50_Q8NUV3	7.3577187856
+UniRef50_Q8NUV3|unclassified	4.0897449294
+UniRef50_Q8NUV3|g__Staphylococcus.s__Staphylococcus_aureus	3.2679738562
+UniRef50_B3X836: D-xylose ABC transporter, ATP-binding protein	7.3572468171
+UniRef50_B3X836: D-xylose ABC transporter, ATP-binding protein|g__Escherichia.s__Escherichia_coli	7.3572468171
+UniRef50_UPI0003B64AAF: hydrogenase nickel incorporation protein HypA	7.3562192449
+UniRef50_UPI0003B64AAF: hydrogenase nickel incorporation protein HypA|unclassified	7.3562192449
+UniRef50_A1AHR3	7.3551084617
+UniRef50_A1AHR3|g__Escherichia.s__Escherichia_coli	7.3551084617
+UniRef50_H7CRL6	7.3543689320
+UniRef50_H7CRL6|g__Clostridium.s__Clostridium_beijerinckii	7.3543689320
+UniRef50_Q8DXL1	7.3529411765
+UniRef50_Q8DXL1|g__Streptococcus.s__Streptococcus_agalactiae	7.3529411765
+UniRef50_B0VQI7	7.3529411765
+UniRef50_B0VQI7|g__Acinetobacter.s__Acinetobacter_baumannii	7.3529411765
+UniRef50_B4RQQ4: Adhesin component	7.3529411765
+UniRef50_B4RQQ4: Adhesin component|g__Neisseria.s__Neisseria_meningitidis	7.3529411765
+UniRef50_C6ST18	7.3529411765
+UniRef50_C6ST18|g__Streptococcus.s__Streptococcus_mutans	7.3529411765
+UniRef50_F8J591	7.3529411765
+UniRef50_F8J591|unclassified	7.3529411765
+UniRef50_F8XKI5	7.3529411765
+UniRef50_F8XKI5|g__Escherichia.s__Escherichia_coli	7.3529411765
+UniRef50_G7U4C3: Hypoxanthine phosphoribosyltransferase	7.3529411765
+UniRef50_G7U4C3: Hypoxanthine phosphoribosyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	7.3529411765
+UniRef50_S4XH57	7.3529411765
+UniRef50_S4XH57|g__Staphylococcus.s__Staphylococcus_aureus	7.3529411765
+UniRef50_V9TVN1	7.3529411765
+UniRef50_V9TVN1|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3529411765
+UniRef50_X2HH90	7.3529411765
+UniRef50_X2HH90|g__Streptococcus.s__Streptococcus_agalactiae	7.3529411765
+UniRef50_I2SHA0: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA domain protein	7.3519692440
+UniRef50_I2SHA0: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA domain protein|g__Escherichia.s__Escherichia_coli	7.3519692440
+UniRef50_S6NZ74: Glutamate synthase subunit alpha	7.3515922770
+UniRef50_S6NZ74: Glutamate synthase subunit alpha|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3515922770
+UniRef50_Q57501: 4-hydroxyphenylacetate 3-monooxygenase reductase component	7.3447225471
+UniRef50_Q57501: 4-hydroxyphenylacetate 3-monooxygenase reductase component|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8965517241
+UniRef50_Q57501: 4-hydroxyphenylacetate 3-monooxygenase reductase component|unclassified	0.4481708230
+UniRef50_Q9RV43	7.3446413571
+UniRef50_Q9RV43|g__Deinococcus.s__Deinococcus_radiodurans	7.3446413571
+UniRef50_UPI000467DD39: hypothetical protein	7.3444406640
+UniRef50_UPI000467DD39: hypothetical protein|unclassified	7.3444406640
+UniRef50_Q9I3X3	7.3434800620
+UniRef50_Q9I3X3|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3434800620
+UniRef50_K7RXC5: Transporter, small conductance mechanosensitive ion channel family protein	7.3431873049
+UniRef50_K7RXC5: Transporter, small conductance mechanosensitive ion channel family protein|g__Propionibacterium.s__Propionibacterium_acnes	7.3431873049
+UniRef50_V9TYA5: Beta-ketoadipate enol-lactone hydrolase	7.3428979947
+UniRef50_V9TYA5: Beta-ketoadipate enol-lactone hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3428979947
+UniRef50_Q8XJE0: Geranyltranstransferase	7.3428815822
+UniRef50_Q8XJE0: Geranyltranstransferase|g__Clostridium.s__Clostridium_beijerinckii	7.3428815822
+UniRef50_P77365	7.3362678405
+UniRef50_P77365|g__Escherichia.s__Escherichia_coli	7.3362678405
+UniRef50_Q4ZTL7: Fe/S biogenesis protein NfuA	7.3361905865
+UniRef50_Q4ZTL7: Fe/S biogenesis protein NfuA|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3361905865
+UniRef50_N2UGL3: VWA domain containing CoxE-like family protein	7.3339944539
+UniRef50_N2UGL3: VWA domain containing CoxE-like family protein|g__Escherichia.s__Escherichia_coli	7.3339944539
+UniRef50_UPI0003B31E01: oxidoreductase, partial	7.3334629950
+UniRef50_UPI0003B31E01: oxidoreductase, partial|unclassified	7.3334629950
+UniRef50_P20586: p-hydroxybenzoate hydroxylase	7.3301064007
+UniRef50_P20586: p-hydroxybenzoate hydroxylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3301064007
+UniRef50_J7IM71: Drug resistance transporter, EmrB/QacA subfamily	7.3298446154
+UniRef50_J7IM71: Drug resistance transporter, EmrB/QacA subfamily|g__Clostridium.s__Clostridium_beijerinckii	7.3298446154
+UniRef50_B9KQ22: Lysine exporter protein (LYSE/YGGA)	7.3279211210
+UniRef50_B9KQ22: Lysine exporter protein (LYSE/YGGA)|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.3279211210
+UniRef50_UPI0001745B7C: iron-sulfur cluster assembly accessory protein	7.3255289730
+UniRef50_UPI0001745B7C: iron-sulfur cluster assembly accessory protein|unclassified	7.3255289730
+UniRef50_UPI00047CA54F: chemotaxis protein CheY	7.3250089537
+UniRef50_UPI00047CA54F: chemotaxis protein CheY|unclassified	7.3250089537
+UniRef50_D2ZQ55	7.3242448543
+UniRef50_D2ZQ55|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.3242448543
+UniRef50_W8S551: Proline dehydrogenase (Proline oxidase) / Delta-1-pyrroline-5-carboxylate dehydrogenase	7.3240556871
+UniRef50_W8S551: Proline dehydrogenase (Proline oxidase) / Delta-1-pyrroline-5-carboxylate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.3240556871
+UniRef50_Q3J3X3: Phage head-tail adaptor, putative, SPP1 family	7.3228320381
+UniRef50_Q3J3X3: Phage head-tail adaptor, putative, SPP1 family|unclassified	7.3228320381
+UniRef50_S4X8J4: IS1272 transposase	7.3223696406
+UniRef50_S4X8J4: IS1272 transposase|g__Staphylococcus.s__Staphylococcus_aureus	7.3223696406
+UniRef50_Q3KK80: Carbonic anhydrase	7.3217659460
+UniRef50_Q3KK80: Carbonic anhydrase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3217659460
+UniRef50_Q2G5F9: Hemimethylated DNA-binding region protein	7.3214285714
+UniRef50_Q2G5F9: Hemimethylated DNA-binding region protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.3214285714
+UniRef50_P0A9Z3: Nitrogen regulatory protein P-II 1	7.3185162319
+UniRef50_P0A9Z3: Nitrogen regulatory protein P-II 1|g__Escherichia.s__Escherichia_coli	4.3859649123
+UniRef50_P0A9Z3: Nitrogen regulatory protein P-II 1|g__Streptococcus.s__Streptococcus_mutans	2.9325513196
+UniRef50_A3DJ91: Chemotaxis response regulator protein-glutamate methylesterase	7.3173370148
+UniRef50_A3DJ91: Chemotaxis response regulator protein-glutamate methylesterase|g__Clostridium.s__Clostridium_beijerinckii	7.3173370148
+UniRef50_P64543	7.3157629256
+UniRef50_P64543|g__Escherichia.s__Escherichia_coli	5.4644808743
+UniRef50_P64543|unclassified	1.8512820513
+UniRef50_D5DN80: 4-carboxymuconolactone decarboxylase	7.3134627929
+UniRef50_D5DN80: 4-carboxymuconolactone decarboxylase|g__Clostridium.s__Clostridium_beijerinckii	7.3134627929
+UniRef50_X5JZJ5: OsmC /Ohr family protein	7.3116031487
+UniRef50_X5JZJ5: OsmC /Ohr family protein|g__Streptococcus.s__Streptococcus_agalactiae	7.3116031487
+UniRef50_Q28KF2: Beta-lactamase-like protein	7.3112558394
+UniRef50_Q28KF2: Beta-lactamase-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.3112558394
+UniRef50_A4WV32	7.3095377553
+UniRef50_A4WV32|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.3095377553
+UniRef50_L0FIE0: Diguanylate cyclase	7.3086676518
+UniRef50_L0FIE0: Diguanylate cyclase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3086676518
+UniRef50_N2DBA0: 2',3'-cyclic-nucleotide 2'-phosphodiesterase	7.3086190024
+UniRef50_N2DBA0: 2',3'-cyclic-nucleotide 2'-phosphodiesterase|g__Escherichia.s__Escherichia_coli	7.3086190024
+UniRef50_A6M1H0	7.3079499257
+UniRef50_A6M1H0|g__Clostridium.s__Clostridium_beijerinckii	7.3079499257
+UniRef50_A0A058T3B4: Transcriptional regulator	7.3076166576
+UniRef50_A0A058T3B4: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.3076166576
+UniRef50_O27818: dTDP-4-dehydrorhamnose 3,5-epimerase	7.3075185080
+UniRef50_O27818: dTDP-4-dehydrorhamnose 3,5-epimerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2179647122
+UniRef50_O27818: dTDP-4-dehydrorhamnose 3,5-epimerase|unclassified	0.0895537959
+UniRef50_A3PIB1	7.3068531009
+UniRef50_A3PIB1|unclassified	5.0697166356
+UniRef50_A3PIB1|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.2371364653
+UniRef50_UPI0004766C33: NTP pyrophosphohydrolase	7.3066629579
+UniRef50_UPI0004766C33: NTP pyrophosphohydrolase|unclassified	7.3066629579
+UniRef50_M2DZM4	7.3060196064
+UniRef50_M2DZM4|unclassified	7.3060196064
+UniRef50_U5MUN0: Methyl-accepting chemotaxis protein	7.3050323898
+UniRef50_U5MUN0: Methyl-accepting chemotaxis protein|g__Clostridium.s__Clostridium_beijerinckii	7.3050323898
+UniRef50_E6YI43	7.3042456673
+UniRef50_E6YI43|unclassified	7.3042456673
+UniRef50_O26126: 30S ribosomal protein S8	7.3039517259
+UniRef50_O26126: 30S ribosomal protein S8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.3039517259
+UniRef50_A4WV88: 2-keto-3-deoxygluconate kinase	7.3026581924
+UniRef50_A4WV88: 2-keto-3-deoxygluconate kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.3026581924
+UniRef50_C3EUD3	7.3014465389
+UniRef50_C3EUD3|g__Clostridium.s__Clostridium_beijerinckii	7.3014465389
+UniRef50_N3TCH5: 4-aminobutyrate transaminase	7.3004474075
+UniRef50_N3TCH5: 4-aminobutyrate transaminase|g__Escherichia.s__Escherichia_coli	7.3004474075
+UniRef50_P76210	7.2995972846
+UniRef50_P76210|g__Escherichia.s__Escherichia_coli	7.2995972846
+UniRef50_F0K9T4: Ferric uptake regulation protein	7.2992700730
+UniRef50_F0K9T4: Ferric uptake regulation protein|g__Clostridium.s__Clostridium_beijerinckii	7.2992700730
+UniRef50_A5UN94	7.2992700730
+UniRef50_A5UN94|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.2992700730
+UniRef50_B4U2A3: Transcriptional Regulator Cro/CI family	7.2992700730
+UniRef50_B4U2A3: Transcriptional Regulator Cro/CI family|g__Staphylococcus.s__Staphylococcus_aureus	7.2992700730
+UniRef50_D6SEK4	7.2992700730
+UniRef50_D6SEK4|g__Staphylococcus.s__Staphylococcus_aureus	7.2992700730
+UniRef50_G0DX90: Phosphatidylglycerophosphate synthase	7.2992700730
+UniRef50_G0DX90: Phosphatidylglycerophosphate synthase|g__Propionibacterium.s__Propionibacterium_acnes	7.2992700730
+UniRef50_H0DPU7	7.2992700730
+UniRef50_H0DPU7|g__Staphylococcus.s__Staphylococcus_epidermidis	7.2992700730
+UniRef50_J0H8Z7	7.2992700730
+UniRef50_J0H8Z7|g__Staphylococcus.s__Staphylococcus_epidermidis	7.2992700730
+UniRef50_W0YZ32: FagA protein	7.2992700730
+UniRef50_W0YZ32: FagA protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2992700730
+UniRef50_J7Q7A9	7.2967700874
+UniRef50_J7Q7A9|g__Escherichia.s__Escherichia_coli	7.2967700874
+UniRef50_C5Q211	7.2965446000
+UniRef50_C5Q211|unclassified	7.2965446000
+UniRef50_P02982: Tetracycline resistance protein, class A	7.2960261634
+UniRef50_P02982: Tetracycline resistance protein, class A|g__Escherichia.s__Escherichia_coli	5.0499772421
+UniRef50_P02982: Tetracycline resistance protein, class A|g__Acinetobacter.s__Acinetobacter_baumannii	2.2460489212
+UniRef50_I3TXV0: Oxidoreductase, FAD-binding protein	7.2954623023
+UniRef50_I3TXV0: Oxidoreductase, FAD-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2954623023
+UniRef50_UPI0003624EE9: hypothetical protein	7.2945533452
+UniRef50_UPI0003624EE9: hypothetical protein|unclassified	7.2945533452
+UniRef50_Q15P08: Transcriptional regulator, DeoR family	7.2939446422
+UniRef50_Q15P08: Transcriptional regulator, DeoR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2939446422
+UniRef50_F3SV15	7.2936197137
+UniRef50_F3SV15|g__Staphylococcus.s__Staphylococcus_epidermidis	6.4516129032
+UniRef50_F3SV15|unclassified	0.8420068105
+UniRef50_P23034: Aspartate aminotransferase	7.2922973820
+UniRef50_P23034: Aspartate aminotransferase|g__Clostridium.s__Clostridium_beijerinckii	6.0895061799
+UniRef50_P23034: Aspartate aminotransferase|g__Helicobacter.s__Helicobacter_pylori	1.0881392818
+UniRef50_P23034: Aspartate aminotransferase|unclassified	0.1146519204
+UniRef50_R9V4R9: Pili assembly chaperone	7.2875886072
+UniRef50_R9V4R9: Pili assembly chaperone|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2875886072
+UniRef50_N0B1P0: Ribosomal RNA adenine dimethylase, phospholipid N-methyltransferase	7.2864086051
+UniRef50_N0B1P0: Ribosomal RNA adenine dimethylase, phospholipid N-methyltransferase|g__Clostridium.s__Clostridium_beijerinckii	7.2864086051
+UniRef50_D3QYK7: Transposase, IS4 family protein	7.2858345410
+UniRef50_D3QYK7: Transposase, IS4 family protein|g__Escherichia.s__Escherichia_coli	7.2858345410
+UniRef50_Q602P0: Non-canonical purine NTP pyrophosphatase	7.2845767535
+UniRef50_Q602P0: Non-canonical purine NTP pyrophosphatase|g__Escherichia.s__Escherichia_coli	6.8799560230
+UniRef50_Q602P0: Non-canonical purine NTP pyrophosphatase|unclassified	0.4046207305
+UniRef50_W7QIQ7	7.2789784022
+UniRef50_W7QIQ7|unclassified	7.2789784022
+UniRef50_A3PLF5	7.2777352523
+UniRef50_A3PLF5|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.3478260870
+UniRef50_A3PLF5|unclassified	2.9299091653
+UniRef50_V7EKV9	7.2766170145
+UniRef50_V7EKV9|unclassified	7.2766170145
+UniRef50_L3HWP0	7.2751377744
+UniRef50_L3HWP0|g__Escherichia.s__Escherichia_coli	7.2751377744
+UniRef50_Q4EGL3	7.2745982970
+UniRef50_Q4EGL3|unclassified	7.2745982970
+UniRef50_A4SWA9: Pyruvate dehydrogenase (Cytochrome)	7.2713335322
+UniRef50_A4SWA9: Pyruvate dehydrogenase (Cytochrome)|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2713335322
+UniRef50_F0KK42	7.2677630221
+UniRef50_F0KK42|g__Acinetobacter.s__Acinetobacter_baumannii	7.2677630221
+UniRef50_B7NN49	7.2669608838
+UniRef50_B7NN49|unclassified	7.2669608838
+UniRef50_A1A0Q3: ATP binding protein of ABC transporter for glutamate_aspartate	7.2664778545
+UniRef50_A1A0Q3: ATP binding protein of ABC transporter for glutamate_aspartate|g__Clostridium.s__Clostridium_beijerinckii	3.8759689922
+UniRef50_A1A0Q3: ATP binding protein of ABC transporter for glutamate_aspartate|g__Acinetobacter.s__Acinetobacter_baumannii	3.3905088622
+UniRef50_B7V1A6: Ketol-acid reductoisomerase	7.2651045653
+UniRef50_B7V1A6: Ketol-acid reductoisomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6736938206
+UniRef50_B7V1A6: Ketol-acid reductoisomerase|unclassified	0.5914107447
+UniRef50_U0D6A1: Outer membrane protein	7.2646286494
+UniRef50_U0D6A1: Outer membrane protein|g__Escherichia.s__Escherichia_coli	7.2646286494
+UniRef50_P0ABX0: Flagellar basal body rod protein FlgB	7.2640078987
+UniRef50_P0ABX0: Flagellar basal body rod protein FlgB|g__Escherichia.s__Escherichia_coli	7.2640078987
+UniRef50_P43262: Probable phospholipid-binding lipoprotein MlaA	7.2622453982
+UniRef50_P43262: Probable phospholipid-binding lipoprotein MlaA|g__Escherichia.s__Escherichia_coli	7.2622453982
+UniRef50_A6LRQ1: Ubiquitin-associated-domain-containing protein	7.2595520422
+UniRef50_A6LRQ1: Ubiquitin-associated-domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	7.2595520422
+UniRef50_B6EJ93: Imidazole glycerol phosphate synthase subunit HisF	7.2567239146
+UniRef50_B6EJ93: Imidazole glycerol phosphate synthase subunit HisF|g__Escherichia.s__Escherichia_coli	6.9444475049
+UniRef50_B6EJ93: Imidazole glycerol phosphate synthase subunit HisF|unclassified	0.3122764097
+UniRef50_F9YAM3	7.2564135958
+UniRef50_F9YAM3|unclassified	7.2564135958
+UniRef50_A0A011QAD7	7.2559898506
+UniRef50_A0A011QAD7|unclassified	7.2559898506
+UniRef50_B0CKZ1	7.2557505370
+UniRef50_B0CKZ1|unclassified	7.2557505370
+UniRef50_Q886P5: Bifunctional uridylyltransferase/uridylyl-removing enzyme	7.2528210190
+UniRef50_Q886P5: Bifunctional uridylyltransferase/uridylyl-removing enzyme|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2528210190
+UniRef50_B7I2S0: Exodeoxyribonuclease X, putative	7.2507061836
+UniRef50_B7I2S0: Exodeoxyribonuclease X, putative|g__Acinetobacter.s__Acinetobacter_baumannii	7.2507061836
+UniRef50_P75962: Inner membrane protein YmfA	7.2502167839
+UniRef50_P75962: Inner membrane protein YmfA|g__Escherichia.s__Escherichia_coli	7.2502167839
+UniRef50_E3A6F2: Transcriptional activator GpuR	7.2479342415
+UniRef50_E3A6F2: Transcriptional activator GpuR|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2479342415
+UniRef50_Q5F691: Dephospho-CoA kinase	7.2467166979
+UniRef50_Q5F691: Dephospho-CoA kinase|g__Neisseria.s__Neisseria_meningitidis	7.2467166979
+UniRef50_A0A017HVB1	7.2463768116
+UniRef50_A0A017HVB1|unclassified	7.2463768116
+UniRef50_B5YZ54	7.2463768116
+UniRef50_B5YZ54|g__Escherichia.s__Escherichia_coli	7.2463768116
+UniRef50_B7M4X2	7.2463768116
+UniRef50_B7M4X2|g__Escherichia.s__Escherichia_coli	7.2463768116
+UniRef50_M7YB68	7.2463768116
+UniRef50_M7YB68|g__Staphylococcus.s__Staphylococcus_aureus	7.2463768116
+UniRef50_P0A984: Cold shock-like protein CspH	7.2463768116
+UniRef50_P0A984: Cold shock-like protein CspH|g__Escherichia.s__Escherichia_coli	7.2463768116
+UniRef50_Q8CTY8	7.2463768116
+UniRef50_Q8CTY8|g__Staphylococcus.s__Staphylococcus_epidermidis	7.2463768116
+UniRef50_UPI00036CB770: hypothetical protein	7.2463768116
+UniRef50_UPI00036CB770: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.2463768116
+UniRef50_X5KCP0: DNA-binding response regulator VncR	7.2463768116
+UniRef50_X5KCP0: DNA-binding response regulator VncR|g__Streptococcus.s__Streptococcus_agalactiae	7.2463768116
+UniRef50_Q9X4A7: Aminopeptidase PepS	7.2444226372
+UniRef50_Q9X4A7: Aminopeptidase PepS|g__Streptococcus.s__Streptococcus_agalactiae	7.2444226372
+UniRef50_UPI00035F6D48: hypothetical protein	7.2433967225
+UniRef50_UPI00035F6D48: hypothetical protein|unclassified	7.2433967225
+UniRef50_P09546: Bifunctional protein PutA	7.2396872272
+UniRef50_P09546: Bifunctional protein PutA|g__Escherichia.s__Escherichia_coli	6.8919883916
+UniRef50_P09546: Bifunctional protein PutA|unclassified	0.3476988356
+UniRef50_R0DXB9: Xanthine dehydrogenase, molybdenum binding subunit apoprotein (Fragment)	7.2394432106
+UniRef50_R0DXB9: Xanthine dehydrogenase, molybdenum binding subunit apoprotein (Fragment)|unclassified	7.2394432106
+UniRef50_Q2G764: 2,4'-dihydroxyacetophenone dioxygenase	7.2385988795
+UniRef50_Q2G764: 2,4'-dihydroxyacetophenone dioxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2385988795
+UniRef50_K8D6Q9: Cell division protein FtsK	7.2366110858
+UniRef50_K8D6Q9: Cell division protein FtsK|g__Escherichia.s__Escherichia_coli	7.2366110858
+UniRef50_C6EE82: Rhs family protein-like protein	7.2351011516
+UniRef50_C6EE82: Rhs family protein-like protein|g__Escherichia.s__Escherichia_coli	7.2351011516
+UniRef50_UPI000466C5B8: hypothetical protein, partial	7.2345649573
+UniRef50_UPI000466C5B8: hypothetical protein, partial|unclassified	7.2345649573
+UniRef50_Q2CE09	7.2339971822
+UniRef50_Q2CE09|unclassified	7.2339971822
+UniRef50_S5N5Q9: Ribulose-phosphate 3-epimerase	7.2336000723
+UniRef50_S5N5Q9: Ribulose-phosphate 3-epimerase|g__Streptococcus.s__Streptococcus_agalactiae	7.2336000723
+UniRef50_H5BV23: D-arabinose 5-phosphate isomerase	7.2333084716
+UniRef50_H5BV23: D-arabinose 5-phosphate isomerase|g__Escherichia.s__Escherichia_coli	7.2333084716
+UniRef50_A1W6Z9: Lytic murein transglycosylase	7.2332288032
+UniRef50_A1W6Z9: Lytic murein transglycosylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2332288032
+UniRef50_R6RH73	7.2325150704
+UniRef50_R6RH73|unclassified	7.2325150704
+UniRef50_F3F217: Isoleucyl-tRNA synthetase	7.2324523226
+UniRef50_F3F217: Isoleucyl-tRNA synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2324523226
+UniRef50_P21367	7.2313030296
+UniRef50_P21367|g__Escherichia.s__Escherichia_coli	7.2313030296
+UniRef50_P29976: Phospho-2-dehydro-3-deoxyheptonate aldolase 1, chloroplastic	7.2305342007
+UniRef50_P29976: Phospho-2-dehydro-3-deoxyheptonate aldolase 1, chloroplastic|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4948786947
+UniRef50_P29976: Phospho-2-dehydro-3-deoxyheptonate aldolase 1, chloroplastic|unclassified	0.7356555059
+UniRef50_R9ZFL5: ABC transporter permease	7.2304927518
+UniRef50_R9ZFL5: ABC transporter permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5641741020
+UniRef50_R9ZFL5: ABC transporter permease|unclassified	1.6663186498
+UniRef50_D3JTG3: 3-hydroxylisobutyryl-CoA hydrolase	7.2276428457
+UniRef50_D3JTG3: 3-hydroxylisobutyryl-CoA hydrolase|g__Acinetobacter.s__Acinetobacter_baumannii	7.2276428457
+UniRef50_G8S2D3	7.2271177286
+UniRef50_G8S2D3|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.8326387366
+UniRef50_G8S2D3|unclassified	0.3944789921
+UniRef50_K0DH79: Alpha/beta hydrolase fold protein	7.2270489745
+UniRef50_K0DH79: Alpha/beta hydrolase fold protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2270489745
+UniRef50_E3DSX1: KdgR1	7.2264783802
+UniRef50_E3DSX1: KdgR1|g__Clostridium.s__Clostridium_beijerinckii	7.2264783802
+UniRef50_D3E3E5	7.2263327356
+UniRef50_D3E3E5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.2263327356
+UniRef50_P47203: Cell division protein FtsA	7.2224125828
+UniRef50_P47203: Cell division protein FtsA|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2224125828
+UniRef50_A5UJ67	7.2218382994
+UniRef50_A5UJ67|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.6900369004
+UniRef50_A5UJ67|unclassified	3.5318013991
+UniRef50_Q9RVY3	7.2217406716
+UniRef50_Q9RVY3|g__Deinococcus.s__Deinococcus_radiodurans	7.2217406716
+UniRef50_G7M658	7.2190167849
+UniRef50_G7M658|g__Clostridium.s__Clostridium_beijerinckii	7.2190167849
+UniRef50_Q8FHN1	7.2157331207
+UniRef50_Q8FHN1|g__Escherichia.s__Escherichia_coli	6.5359477124
+UniRef50_Q8FHN1|unclassified	0.6797854082
+UniRef50_M8YY20: Inner membrane symporter yihP	7.2156565965
+UniRef50_M8YY20: Inner membrane symporter yihP|g__Escherichia.s__Escherichia_coli	7.2156565965
+UniRef50_A3LIM1	7.2151791557
+UniRef50_A3LIM1|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2151791557
+UniRef50_A6LW23: L-asparaginase, type II	7.2135619263
+UniRef50_A6LW23: L-asparaginase, type II|g__Clostridium.s__Clostridium_beijerinckii	7.2135619263
+UniRef50_P76173: Anaerobic dimethyl sulfoxide reductase chain YnfH	7.2090110991
+UniRef50_P76173: Anaerobic dimethyl sulfoxide reductase chain YnfH|g__Escherichia.s__Escherichia_coli	7.2090110991
+UniRef50_Q6F7V8: UPF0761 membrane protein ACIAD3168	7.2081039700
+UniRef50_Q6F7V8: UPF0761 membrane protein ACIAD3168|g__Acinetobacter.s__Acinetobacter_baumannii	7.2081039700
+UniRef50_M9KL10: Outer membrane autotransporter barrel domain protein	7.2078780864
+UniRef50_M9KL10: Outer membrane autotransporter barrel domain protein|g__Escherichia.s__Escherichia_coli	7.2078780864
+UniRef50_Q4ZLD0: Transcriptional regulator, LysR family	7.2077450771
+UniRef50_Q4ZLD0: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.2077450771
+UniRef50_UPI0004752555: hypothetical protein, partial	7.2048154677
+UniRef50_UPI0004752555: hypothetical protein, partial|unclassified	7.2048154677
+UniRef50_K7SGE5: Glycosyltransferase, group 1 family protein	7.2039830795
+UniRef50_K7SGE5: Glycosyltransferase, group 1 family protein|g__Propionibacterium.s__Propionibacterium_acnes	7.2039830795
+UniRef50_F3RDV1: Amino acid ABC transporter permease	7.2005919854
+UniRef50_F3RDV1: Amino acid ABC transporter permease|g__Streptococcus.s__Streptococcus_agalactiae	7.2005919854
+UniRef50_Q8FCG2	7.2005219256
+UniRef50_Q8FCG2|g__Escherichia.s__Escherichia_coli	6.8655743809
+UniRef50_Q8FCG2|unclassified	0.3349475446
+UniRef50_UPI00035CB1C3: hypothetical protein	7.2004256494
+UniRef50_UPI00035CB1C3: hypothetical protein|unclassified	7.2004256494
+UniRef50_S5SX20: Amino acid ABC transporter ATP-binding protein	7.1998368887
+UniRef50_S5SX20: Amino acid ABC transporter ATP-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	7.1998368887
+UniRef50_X6CNL3	7.1981721120
+UniRef50_X6CNL3|unclassified	7.1981721120
+UniRef50_A0A037YIC8: Alpha-amylase	7.1970908443
+UniRef50_A0A037YIC8: Alpha-amylase|g__Escherichia.s__Escherichia_coli	7.1970908443
+UniRef50_A6CTN3: YitS	7.1942446043
+UniRef50_A6CTN3: YitS|unclassified	7.1942446043
+UniRef50_D8GUE2: Predicted transcriptional regulator, marR family	7.1942446043
+UniRef50_D8GUE2: Predicted transcriptional regulator, marR family|g__Clostridium.s__Clostridium_beijerinckii	7.1942446043
+UniRef50_H3Z714: Conserved domain protein	7.1942446043
+UniRef50_H3Z714: Conserved domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	7.1942446043
+UniRef50_H4RNY8	7.1942446043
+UniRef50_H4RNY8|g__Escherichia.s__Escherichia_coli	7.1942446043
+UniRef50_J2E8M8	7.1942446043
+UniRef50_J2E8M8|unclassified	7.1942446043
+UniRef50_P52003: Multidrug resistance operon repressor	7.1942446043
+UniRef50_P52003: Multidrug resistance operon repressor|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1942446043
+UniRef50_Q8CSW6	7.1942446043
+UniRef50_Q8CSW6|g__Staphylococcus.s__Staphylococcus_epidermidis	7.1942446043
+UniRef50_V4YP39	7.1942446043
+UniRef50_V4YP39|g__Streptococcus.s__Streptococcus_mutans	7.1942446043
+UniRef50_V8G2S0	7.1942446043
+UniRef50_V8G2S0|g__Clostridium.s__Clostridium_beijerinckii	7.1942446043
+UniRef50_W8TBW7	7.1942446043
+UniRef50_W8TBW7|unclassified	7.1942446043
+UniRef50_X1HUI3: Marine sediment metagenome DNA, contig: S03H2_S17566 (Fragment)	7.1942446043
+UniRef50_X1HUI3: Marine sediment metagenome DNA, contig: S03H2_S17566 (Fragment)|unclassified	7.1942446043
+UniRef50_Q17WK7	7.1940245642
+UniRef50_Q17WK7|g__Helicobacter.s__Helicobacter_pylori	7.1940245642
+UniRef50_M4X3Z5: Nitrous-oxide reductase	7.1939847051
+UniRef50_M4X3Z5: Nitrous-oxide reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1939847051
+UniRef50_N8JY23	7.1911811505
+UniRef50_N8JY23|unclassified	7.1911811505
+UniRef50_X0UWW1: Marine sediment metagenome DNA, contig: S01H1_S14591 (Fragment)	7.1909055319
+UniRef50_X0UWW1: Marine sediment metagenome DNA, contig: S01H1_S14591 (Fragment)|unclassified	7.1909055319
+UniRef50_UPI0003AA53E0: cation:proton antiporter	7.1893691159
+UniRef50_UPI0003AA53E0: cation:proton antiporter|unclassified	7.1893691159
+UniRef50_W8UDC1: Oligopeptidase A	7.1877923666
+UniRef50_W8UDC1: Oligopeptidase A|g__Escherichia.s__Escherichia_coli	7.1877923666
+UniRef50_I1ZM50: Cytosine-specific methyltransferase	7.1835589584
+UniRef50_I1ZM50: Cytosine-specific methyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	7.1835589584
+UniRef50_U9LDC5	7.1834665383
+UniRef50_U9LDC5|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5359477124
+UniRef50_U9LDC5|unclassified	0.6475188259
+UniRef50_A3MLT7: Histidine ammonia-lyase	7.1833477400
+UniRef50_A3MLT7: Histidine ammonia-lyase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.7492867221
+UniRef50_A3MLT7: Histidine ammonia-lyase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5321353878
+UniRef50_A3MLT7: Histidine ammonia-lyase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8764241893
+UniRef50_A3MLT7: Histidine ammonia-lyase|unclassified	0.0255014408
+UniRef50_X3EZY0	7.1831038011
+UniRef50_X3EZY0|g__Escherichia.s__Escherichia_coli	7.1831038011
+UniRef50_D9SXB9: RNA methyltransferase, TrmH family, group 3	7.1830825060
+UniRef50_D9SXB9: RNA methyltransferase, TrmH family, group 3|g__Clostridium.s__Clostridium_beijerinckii	7.1830825060
+UniRef50_H4WJP6	7.1813516928
+UniRef50_H4WJP6|g__Escherichia.s__Escherichia_coli	7.1813516928
+UniRef50_UPI00036ED21D: hypothetical protein	7.1801336525
+UniRef50_UPI00036ED21D: hypothetical protein|unclassified	7.1801336525
+UniRef50_U5NEG6: Type I restriction enzyme subunit M	7.1787963104
+UniRef50_U5NEG6: Type I restriction enzyme subunit M|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1787963104
+UniRef50_A6LZX0: Methyl-accepting chemotaxis sensory transducer	7.1739479321
+UniRef50_A6LZX0: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	7.1739479321
+UniRef50_Q8P1N3: Probable dipeptidase A	7.1727624729
+UniRef50_Q8P1N3: Probable dipeptidase A|g__Streptococcus.s__Streptococcus_agalactiae	7.1727624729
+UniRef50_P33668	7.1701878465
+UniRef50_P33668|g__Escherichia.s__Escherichia_coli	7.0422535211
+UniRef50_P33668|unclassified	0.1279343253
+UniRef50_Q6GDD7: Poly-beta-1,6-N-acetyl-D-glucosamine synthesis protein IcaD	7.1699758863
+UniRef50_Q6GDD7: Poly-beta-1,6-N-acetyl-D-glucosamine synthesis protein IcaD|g__Staphylococcus.s__Staphylococcus_aureus	7.1699758863
+UniRef50_Q75V35	7.1694864175
+UniRef50_Q75V35|g__Acinetobacter.s__Acinetobacter_baumannii	5.1913132026
+UniRef50_Q75V35|unclassified	1.9781732150
+UniRef50_B9KM31	7.1673855109
+UniRef50_B9KM31|unclassified	7.1673855109
+UniRef50_J9NXJ0	7.1647901740
+UniRef50_J9NXJ0|unclassified	7.1647901740
+UniRef50_A3PS43: RepA	7.1642633633
+UniRef50_A3PS43: RepA|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.1642633633
+UniRef50_M9RDL9: Penicillin-insensitive murein endopeptidase	7.1625903523
+UniRef50_M9RDL9: Penicillin-insensitive murein endopeptidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.1625903523
+UniRef50_J0EXW0	7.1624993253
+UniRef50_J0EXW0|unclassified	7.1624993253
+UniRef50_A4XY80: Aminopeptidase Y	7.1623411015
+UniRef50_A4XY80: Aminopeptidase Y|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1623411015
+UniRef50_A7IGG8: Coenzyme F390 synthetase	7.1615410041
+UniRef50_A7IGG8: Coenzyme F390 synthetase|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.1615410041
+UniRef50_V8G5F1: Cell wall-binding protein	7.1594341567
+UniRef50_V8G5F1: Cell wall-binding protein|g__Clostridium.s__Clostridium_beijerinckii	7.1594341567
+UniRef50_UPI00046278A4: hypothetical protein	7.1592796838
+UniRef50_UPI00046278A4: hypothetical protein|unclassified	7.1592796838
+UniRef50_Q9I1X8	7.1592629174
+UniRef50_Q9I1X8|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1592629174
+UniRef50_H8FXV9	7.1590238448
+UniRef50_H8FXV9|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.0975609756
+UniRef50_H8FXV9|unclassified	1.0614628692
+UniRef50_V5NWP2	7.1575695965
+UniRef50_V5NWP2|unclassified	7.1575695965
+UniRef50_Q3JYQ4: Deoxyribose-phosphate aldolase	7.1564390666
+UniRef50_Q3JYQ4: Deoxyribose-phosphate aldolase|g__Streptococcus.s__Streptococcus_agalactiae	5.6179775281
+UniRef50_Q3JYQ4: Deoxyribose-phosphate aldolase|unclassified	1.5384615385
+UniRef50_M4ZGM6: PTS system, 3-keto-L-gulonate specific IIB component	7.1556579621
+UniRef50_M4ZGM6: PTS system, 3-keto-L-gulonate specific IIB component|g__Streptococcus.s__Streptococcus_mutans	7.1556579621
+UniRef50_R4ZMF4: Phage Holliday junction resolvase	7.1552337017
+UniRef50_R4ZMF4: Phage Holliday junction resolvase|g__Streptococcus.s__Streptococcus_agalactiae	7.1552337017
+UniRef50_I6GBL6: Arginine/agmatine antiporter domain protein	7.1538698736
+UniRef50_I6GBL6: Arginine/agmatine antiporter domain protein|g__Escherichia.s__Escherichia_coli	7.1538698736
+UniRef50_B2TBY2: VRR-NUC domain protein	7.1530715695
+UniRef50_B2TBY2: VRR-NUC domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1530715695
+UniRef50_J7MB46: Quinolone resistance protein	7.1515323909
+UniRef50_J7MB46: Quinolone resistance protein|g__Streptococcus.s__Streptococcus_agalactiae	7.1515323909
+UniRef50_A4TIR4	7.1509880498
+UniRef50_A4TIR4|g__Escherichia.s__Escherichia_coli	6.8493150685
+UniRef50_A4TIR4|unclassified	0.3016729813
+UniRef50_R7QYT4: Methyltransferase type 12	7.1499989665
+UniRef50_R7QYT4: Methyltransferase type 12|g__Clostridium.s__Clostridium_beijerinckii	7.1499989665
+UniRef50_A5VXC5: Diguanylate cyclase/phosphodiesterase with PAS/PAC and GAF sensor(S)	7.1477423246
+UniRef50_A5VXC5: Diguanylate cyclase/phosphodiesterase with PAS/PAC and GAF sensor(S)|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1477423246
+UniRef50_UPI000470719A: hypothetical protein	7.1473362484
+UniRef50_UPI000470719A: hypothetical protein|unclassified	7.1473362484
+UniRef50_Q87VK8: UPF0313 protein PSPTO_4928	7.1447404077
+UniRef50_Q87VK8: UPF0313 protein PSPTO_4928|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1447404077
+UniRef50_A7WWM9	7.1428571429
+UniRef50_A7WWM9|g__Staphylococcus.s__Staphylococcus_epidermidis	7.1428571429
+UniRef50_B5YW58	7.1428571429
+UniRef50_B5YW58|unclassified	7.1428571429
+UniRef50_E6MYM9	7.1428571429
+UniRef50_E6MYM9|g__Neisseria.s__Neisseria_meningitidis	7.1428571429
+UniRef50_I9RNM3: Putative sialic acid transporter	7.1428571429
+UniRef50_I9RNM3: Putative sialic acid transporter|g__Escherichia.s__Escherichia_coli	7.1428571429
+UniRef50_J9UB48	7.1428571429
+UniRef50_J9UB48|unclassified	7.1428571429
+UniRef50_J9UTC5	7.1428571429
+UniRef50_J9UTC5|g__Staphylococcus.s__Staphylococcus_aureus	7.1428571429
+UniRef50_M8PN92	7.1428571429
+UniRef50_M8PN92|unclassified	7.1428571429
+UniRef50_Q1J0J9: DinB/YfiT family metal-binding protein	7.1428571429
+UniRef50_Q1J0J9: DinB/YfiT family metal-binding protein|g__Deinococcus.s__Deinococcus_radiodurans	7.1428571429
+UniRef50_Q1QEF7: Putative 3-methyladenine DNA glycosylase	7.1428571429
+UniRef50_Q1QEF7: Putative 3-methyladenine DNA glycosylase|g__Acinetobacter.s__Acinetobacter_baumannii	7.1428571429
+UniRef50_Q9RW76	7.1428571429
+UniRef50_Q9RW76|g__Deinococcus.s__Deinococcus_radiodurans	7.1428571429
+UniRef50_UPI0003694A26: hypothetical protein	7.1428571429
+UniRef50_UPI0003694A26: hypothetical protein|unclassified	7.1428571429
+UniRef50_I3US46: Major facilitator superfamily metabolite/H symporter	7.1419190542
+UniRef50_I3US46: Major facilitator superfamily metabolite/H symporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1419190542
+UniRef50_Q9I0J3: NADH-quinone oxidoreductase subunit J	7.1410245081
+UniRef50_Q9I0J3: NADH-quinone oxidoreductase subunit J|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0576102099
+UniRef50_Q9I0J3: NADH-quinone oxidoreductase subunit J|unclassified	1.0834142982
+UniRef50_I0TQ99	7.1408287394
+UniRef50_I0TQ99|unclassified	7.1408287394
+UniRef50_UPI0003B5FE88: RNA polymerase sigma factor RpoE	7.1386178350
+UniRef50_UPI0003B5FE88: RNA polymerase sigma factor RpoE|unclassified	7.1386178350
+UniRef50_UPI000471846E: hypothetical protein	7.1383127624
+UniRef50_UPI000471846E: hypothetical protein|unclassified	7.1383127624
+UniRef50_Q46MN5: Hydrophobe/amphiphile efflux-1 HAE1	7.1360664161
+UniRef50_Q46MN5: Hydrophobe/amphiphile efflux-1 HAE1|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1360664161
+UniRef50_A8LQW6	7.1355730771
+UniRef50_A8LQW6|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.8823529412
+UniRef50_A8LQW6|unclassified	1.2532201359
+UniRef50_R3N2B8	7.1338172055
+UniRef50_R3N2B8|unclassified	7.1338172055
+UniRef50_R8A2Q2: ABC transporter ATP-binding protein	7.1336344645
+UniRef50_R8A2Q2: ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	7.1336344645
+UniRef50_K8BCW1: 4-keto-6-deoxy-N-Acetyl-D-hexosaminyl-(Lipid carrier) aminotransferase	7.1325253130
+UniRef50_K8BCW1: 4-keto-6-deoxy-N-Acetyl-D-hexosaminyl-(Lipid carrier) aminotransferase|g__Escherichia.s__Escherichia_coli	7.1325253130
+UniRef50_P42308: Citrate transporter	7.1323176362
+UniRef50_P42308: Citrate transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1323176362
+UniRef50_B7V9P7: RNA binding protein, putative	7.1316156999
+UniRef50_B7V9P7: RNA binding protein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1316156999
+UniRef50_A0A020CZ32	7.1312799372
+UniRef50_A0A020CZ32|unclassified	7.1312799372
+UniRef50_A3PHB2	7.1302863941
+UniRef50_A3PHB2|unclassified	7.1302863941
+UniRef50_A0A037Y9B8: Transcription-repair coupling factor	7.1289035463
+UniRef50_A0A037Y9B8: Transcription-repair coupling factor|g__Escherichia.s__Escherichia_coli	7.1289035463
+UniRef50_UPI0003B5F7BE: hypothetical protein	7.1285641945
+UniRef50_UPI0003B5F7BE: hypothetical protein|unclassified	7.1285641945
+UniRef50_H9UY99	7.1269312434
+UniRef50_H9UY99|g__Escherichia.s__Escherichia_coli	7.0477776571
+UniRef50_H9UY99|unclassified	0.0791535863
+UniRef50_Z7MAU3	7.1238262859
+UniRef50_Z7MAU3|unclassified	7.1238262859
+UniRef50_A4WVC3	7.1233907536
+UniRef50_A4WVC3|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.1233907536
+UniRef50_Q8VVL8: ORF 5	7.1212211321
+UniRef50_Q8VVL8: ORF 5|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0429600762
+UniRef50_Q8VVL8: ORF 5|unclassified	0.0782610559
+UniRef50_V5SRZ3: Aminoglycoside phosphotransferase	7.1209444167
+UniRef50_V5SRZ3: Aminoglycoside phosphotransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1209444167
+UniRef50_G8QBV2: Hypoxanthine-guanine phosphoribosyltransferase	7.1202888738
+UniRef50_G8QBV2: Hypoxanthine-guanine phosphoribosyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1202888738
+UniRef50_M9VF28: Cobalt-precorrin-6x reductase	7.1183328512
+UniRef50_M9VF28: Cobalt-precorrin-6x reductase|g__Propionibacterium.s__Propionibacterium_acnes	7.1183328512
+UniRef50_UPI0000557712: hypothetical protein	7.1176348874
+UniRef50_UPI0000557712: hypothetical protein|unclassified	7.1176348874
+UniRef50_H4DL83: Transposase for IS1272	7.1125499757
+UniRef50_H4DL83: Transposase for IS1272|g__Staphylococcus.s__Staphylococcus_epidermidis	3.8610038610
+UniRef50_H4DL83: Transposase for IS1272|unclassified	3.2515461147
+UniRef50_Q01609	7.1123542740
+UniRef50_Q01609|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1123542740
+UniRef50_I2ZU82	7.1113251450
+UniRef50_I2ZU82|unclassified	7.1113251450
+UniRef50_W8RAH0: Chromosome partitioning protein ParA	7.1068891373
+UniRef50_W8RAH0: Chromosome partitioning protein ParA|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1068891373
+UniRef50_T2ESK7: Integrase core domain protein	7.1064985633
+UniRef50_T2ESK7: Integrase core domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1064985633
+UniRef50_UPI00037595E9: hypothetical protein	7.1056068369
+UniRef50_UPI00037595E9: hypothetical protein|unclassified	7.1056068369
+UniRef50_S0ZMG1: Outer membrane protein YejO	7.1041911796
+UniRef50_S0ZMG1: Outer membrane protein YejO|g__Escherichia.s__Escherichia_coli	7.1041911796
+UniRef50_P72151: B-type flagellin	7.1037778207
+UniRef50_P72151: B-type flagellin|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1037778207
+UniRef50_F5M5K5: Peptidoglycan-binding domain 1 protein	7.1008692455
+UniRef50_F5M5K5: Peptidoglycan-binding domain 1 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.9261624295
+UniRef50_F5M5K5: Peptidoglycan-binding domain 1 protein|unclassified	0.1747068159
+UniRef50_Q8PG33: RNA polymerase sigma factor RpoD	7.1003338604
+UniRef50_Q8PG33: RNA polymerase sigma factor RpoD|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.1003338604
+UniRef50_A6M0K8: Amino acid permease-associated region	7.0986428577
+UniRef50_A6M0K8: Amino acid permease-associated region|g__Clostridium.s__Clostridium_beijerinckii	7.0986428577
+UniRef50_I3YR32: Nitroreductase-like oxidoreductase	7.0979211491
+UniRef50_I3YR32: Nitroreductase-like oxidoreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0979211491
+UniRef50_UPI0002BAECEA: hypothetical protein	7.0974102491
+UniRef50_UPI0002BAECEA: hypothetical protein|unclassified	7.0974102491
+UniRef50_UPI00035EBE88: hypothetical protein	7.0961635669
+UniRef50_UPI00035EBE88: hypothetical protein|unclassified	7.0961635669
+UniRef50_Q1LDL8	7.0949117053
+UniRef50_Q1LDL8|g__Clostridium.s__Clostridium_beijerinckii	7.0949117053
+UniRef50_G7M0X3: Transcriptional regulator, AraC family	7.0938437286
+UniRef50_G7M0X3: Transcriptional regulator, AraC family|g__Clostridium.s__Clostridium_beijerinckii	7.0938437286
+UniRef50_X5X320	7.0926186859
+UniRef50_X5X320|unclassified	7.0926186859
+UniRef50_A7WYH3	7.0921985816
+UniRef50_A7WYH3|g__Staphylococcus.s__Staphylococcus_aureus	7.0921985816
+UniRef50_B7NRU0	7.0921985816
+UniRef50_B7NRU0|g__Escherichia.s__Escherichia_coli	7.0921985816
+UniRef50_J1D2D1	7.0921985816
+UniRef50_J1D2D1|g__Staphylococcus.s__Staphylococcus_epidermidis	7.0921985816
+UniRef50_J1EZP1	7.0921985816
+UniRef50_J1EZP1|g__Staphylococcus.s__Staphylococcus_aureus	7.0921985816
+UniRef50_W1WIS5	7.0921985816
+UniRef50_W1WIS5|unclassified	7.0921985816
+UniRef50_W1YLG1	7.0921985816
+UniRef50_W1YLG1|unclassified	7.0921985816
+UniRef50_W4TJK2	7.0921985816
+UniRef50_W4TJK2|unclassified	7.0921985816
+UniRef50_A0KPL2	7.0915725047
+UniRef50_A0KPL2|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0915725047
+UniRef50_U7DNX2: TonB-denpendent receptor	7.0908265159
+UniRef50_U7DNX2: TonB-denpendent receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0908265159
+UniRef50_H3V6W0: Ornithine cyclodeaminase domain protein	7.0858901881
+UniRef50_H3V6W0: Ornithine cyclodeaminase domain protein|unclassified	7.0858901881
+UniRef50_Q3IVA7: Phosphoglucomutase/phosphomannomutase	7.0845665100
+UniRef50_Q3IVA7: Phosphoglucomutase/phosphomannomutase|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.0845665100
+UniRef50_W1JR99: Arsenate reductase (Fragment)	7.0824661719
+UniRef50_W1JR99: Arsenate reductase (Fragment)|unclassified	7.0824661719
+UniRef50_Q83KI3: UPF0339 protein YegP	7.0818240921
+UniRef50_Q83KI3: UPF0339 protein YegP|g__Escherichia.s__Escherichia_coli	7.0818240921
+UniRef50_D5ARQ0: Cytochrome c oxidase, Cbb3-type, biogenesis protein CcoI	7.0816943257
+UniRef50_D5ARQ0: Cytochrome c oxidase, Cbb3-type, biogenesis protein CcoI|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.0816943257
+UniRef50_M1M0U2	7.0803749136
+UniRef50_M1M0U2|g__Clostridium.s__Clostridium_beijerinckii	7.0803749136
+UniRef50_R4ZPT0	7.0802846619
+UniRef50_R4ZPT0|g__Streptococcus.s__Streptococcus_agalactiae	6.7567567568
+UniRef50_R4ZPT0|unclassified	0.3235279051
+UniRef50_L4JWA2	7.0802005013
+UniRef50_L4JWA2|g__Escherichia.s__Escherichia_coli	7.0802005013
+UniRef50_V1A381: Diguanylate cyclase domain protein	7.0800293614
+UniRef50_V1A381: Diguanylate cyclase domain protein|g__Escherichia.s__Escherichia_coli	7.0800293614
+UniRef50_W8TR61	7.0793932002
+UniRef50_W8TR61|unclassified	7.0793932002
+UniRef50_Q02S28	7.0759729463
+UniRef50_Q02S28|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0759729463
+UniRef50_A3PRV7: Blue (Type 1) copper domain protein	7.0747965485
+UniRef50_A3PRV7: Blue (Type 1) copper domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.0747965485
+UniRef50_P69818: Fructose-like phosphotransferase enzyme IIB component 2	7.0731768169
+UniRef50_P69818: Fructose-like phosphotransferase enzyme IIB component 2|g__Escherichia.s__Escherichia_coli	7.0731768169
+UniRef50_D8JIG9: TetR family regulatory protein	7.0669042028
+UniRef50_D8JIG9: TetR family regulatory protein|g__Acinetobacter.s__Acinetobacter_baumannii	7.0669042028
+UniRef50_Q7NYS3	7.0663925819
+UniRef50_Q7NYS3|unclassified	7.0663925819
+UniRef50_F0K963	7.0656412609
+UniRef50_F0K963|g__Clostridium.s__Clostridium_beijerinckii	7.0656412609
+UniRef50_G4R209: Bacterial regulatory s, gntR family protein	7.0653084875
+UniRef50_G4R209: Bacterial regulatory s, gntR family protein|g__Streptococcus.s__Streptococcus_agalactiae	7.0653084875
+UniRef50_W1JYG5: Transcriptional regulator (Fragment)	7.0651754776
+UniRef50_W1JYG5: Transcriptional regulator (Fragment)|unclassified	7.0651754776
+UniRef50_E3G1U2: Alpha-L-rhamnosidase	7.0634518934
+UniRef50_E3G1U2: Alpha-L-rhamnosidase|g__Escherichia.s__Escherichia_coli	7.0634518934
+UniRef50_B2A326: PSP1 domain protein	7.0629526224
+UniRef50_B2A326: PSP1 domain protein|g__Clostridium.s__Clostridium_beijerinckii	7.0629526224
+UniRef50_V5T2L9: Sensor histidine kinase	7.0629204591
+UniRef50_V5T2L9: Sensor histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0629204591
+UniRef50_B7UXA3: Flagellar hook-associated protein 1 FlgK	7.0613916614
+UniRef50_B7UXA3: Flagellar hook-associated protein 1 FlgK|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0613916614
+UniRef50_W5V4L7: Membrane protein	7.0583073916
+UniRef50_W5V4L7: Membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5872923398
+UniRef50_W5V4L7: Membrane protein|unclassified	0.4710150518
+UniRef50_D0Z969: ATP-dependent DNA helicase Rep	7.0578028377
+UniRef50_D0Z969: ATP-dependent DNA helicase Rep|g__Escherichia.s__Escherichia_coli	7.0578028377
+UniRef50_A4WSV2: Pseudouridine synthase	7.0572601238
+UniRef50_A4WSV2: Pseudouridine synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.0572601238
+UniRef50_F4NMT0	7.0571101950
+UniRef50_F4NMT0|unclassified	7.0571101950
+UniRef50_D9X3G7: Integral membrane protein	7.0562524719
+UniRef50_D9X3G7: Integral membrane protein|unclassified	7.0562524719
+UniRef50_D8GNU7: Cell shape-determining protein MreC	7.0539593123
+UniRef50_D8GNU7: Cell shape-determining protein MreC|g__Clostridium.s__Clostridium_beijerinckii	7.0539593123
+UniRef50_X5KG11: Membrane protein, putative	7.0538713513
+UniRef50_X5KG11: Membrane protein, putative|g__Streptococcus.s__Streptococcus_agalactiae	7.0538713513
+UniRef50_A1JSC3: UvrABC system protein B	7.0505880529
+UniRef50_A1JSC3: UvrABC system protein B|g__Escherichia.s__Escherichia_coli	7.0505880529
+UniRef50_Q3SIT9: LexA repressor	7.0505050505
+UniRef50_Q3SIT9: LexA repressor|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0505050505
+UniRef50_W7WQX4	7.0482254708
+UniRef50_W7WQX4|unclassified	7.0482254708
+UniRef50_V4LC05	7.0476228912
+UniRef50_V4LC05|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6009847836
+UniRef50_V4LC05|g__Acinetobacter.s__Acinetobacter_baumannii	2.4466381077
+UniRef50_Q49VT5	7.0465344201
+UniRef50_Q49VT5|g__Staphylococcus.s__Staphylococcus_epidermidis	7.0465344201
+UniRef50_B7UXY2: UPF0761 membrane protein PLES_43641	7.0458057859
+UniRef50_B7UXY2: UPF0761 membrane protein PLES_43641|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0458057859
+UniRef50_A3M428	7.0457931678
+UniRef50_A3M428|g__Acinetobacter.s__Acinetobacter_baumannii	7.0457931678
+UniRef50_B7V4F8	7.0456844562
+UniRef50_B7V4F8|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0456844562
+UniRef50_A6LSU4: NLP/P60 protein	7.0452365805
+UniRef50_A6LSU4: NLP/P60 protein|g__Clostridium.s__Clostridium_beijerinckii	7.0452365805
+UniRef50_I0DBR2: IS1627s1-related, transposase	7.0444370031
+UniRef50_I0DBR2: IS1627s1-related, transposase|g__Streptococcus.s__Streptococcus_mutans	7.0444370031
+UniRef50_Q2T8R8: Pyoverdine chromophore biosynthetic protein PvcA	7.0443316414
+UniRef50_Q2T8R8: Pyoverdine chromophore biosynthetic protein PvcA|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7736008702
+UniRef50_Q2T8R8: Pyoverdine chromophore biosynthetic protein PvcA|unclassified	0.2707307713
+UniRef50_O05253	7.0432019131
+UniRef50_O05253|g__Clostridium.s__Clostridium_beijerinckii	7.0432019131
+UniRef50_M9RWZ9: RNA methyltransferase	7.0423198096
+UniRef50_M9RWZ9: RNA methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0423198096
+UniRef50_A6LZ80: RNA polymerase, sigma-24 subunit, ECF subfamily	7.0422535211
+UniRef50_A6LZ80: RNA polymerase, sigma-24 subunit, ECF subfamily|g__Clostridium.s__Clostridium_beijerinckii	7.0422535211
+UniRef50_B7UVP3	7.0422535211
+UniRef50_B7UVP3|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0422535211
+UniRef50_C6STX2	7.0422535211
+UniRef50_C6STX2|g__Streptococcus.s__Streptococcus_mutans	7.0422535211
+UniRef50_D3E092	7.0422535211
+UniRef50_D3E092|g__Methanobrevibacter.s__Methanobrevibacter_smithii	7.0422535211
+UniRef50_F9R4E1	7.0422535211
+UniRef50_F9R4E1|unclassified	7.0422535211
+UniRef50_G8VJM5	7.0422535211
+UniRef50_G8VJM5|g__Propionibacterium.s__Propionibacterium_acnes	7.0422535211
+UniRef50_I6SVA4: IS861, transposase OrfB	7.0422535211
+UniRef50_I6SVA4: IS861, transposase OrfB|g__Streptococcus.s__Streptococcus_mutans	7.0422535211
+UniRef50_J7R8Y0: Escherichia coli IMT2125 genomic chromosome, IMT2125	7.0422535211
+UniRef50_J7R8Y0: Escherichia coli IMT2125 genomic chromosome, IMT2125|g__Escherichia.s__Escherichia_coli	7.0422535211
+UniRef50_Q0TFV2	7.0422535211
+UniRef50_Q0TFV2|g__Escherichia.s__Escherichia_coli	7.0422535211
+UniRef50_Q1MPQ9: 30S ribosomal protein S19	7.0422535211
+UniRef50_Q1MPQ9: 30S ribosomal protein S19|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.0422535211
+UniRef50_Q5HS31	7.0422535211
+UniRef50_Q5HS31|g__Staphylococcus.s__Staphylococcus_epidermidis	7.0422535211
+UniRef50_V5VIA0	7.0422535211
+UniRef50_V5VIA0|g__Acinetobacter.s__Acinetobacter_baumannii	7.0422535211
+UniRef50_G7M6S3: Arginine decarboxylase	7.0416832240
+UniRef50_G7M6S3: Arginine decarboxylase|g__Clostridium.s__Clostridium_beijerinckii	7.0416832240
+UniRef50_A6LRK6: Dephospho-CoA kinase	7.0401000204
+UniRef50_A6LRK6: Dephospho-CoA kinase|g__Clostridium.s__Clostridium_beijerinckii	7.0401000204
+UniRef50_A6M074: Alcohol dehydrogenase GroES domain protein	7.0365506953
+UniRef50_A6M074: Alcohol dehydrogenase GroES domain protein|g__Clostridium.s__Clostridium_beijerinckii	7.0365506953
+UniRef50_F8H984: Two-component sensor	7.0351872125
+UniRef50_F8H984: Two-component sensor|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0351872125
+UniRef50_A6LY87	7.0341254418
+UniRef50_A6LY87|g__Clostridium.s__Clostridium_beijerinckii	7.0341254418
+UniRef50_A9M2L0: Transcriptional regulator, Fnr family	7.0321752862
+UniRef50_A9M2L0: Transcriptional regulator, Fnr family|g__Neisseria.s__Neisseria_meningitidis	7.0321752862
+UniRef50_U5MQ76: Cell wall hydrolase/autolysin	7.0305587264
+UniRef50_U5MQ76: Cell wall hydrolase/autolysin|g__Clostridium.s__Clostridium_beijerinckii	7.0305587264
+UniRef50_C7ZVQ0	7.0304198483
+UniRef50_C7ZVQ0|g__Staphylococcus.s__Staphylococcus_aureus	7.0304198483
+UniRef50_L0GHY6: Methylenetetrahydrofolate reductase	7.0282430568
+UniRef50_L0GHY6: Methylenetetrahydrofolate reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0282430568
+UniRef50_N6VFQ4: ATP-dependent DNA helicase DinG	7.0275384556
+UniRef50_N6VFQ4: ATP-dependent DNA helicase DinG|g__Escherichia.s__Escherichia_coli	7.0275384556
+UniRef50_Q11190: Electron transfer flavoprotein-ubiquinone oxidoreductase, mitochondrial	7.0264913761
+UniRef50_Q11190: Electron transfer flavoprotein-ubiquinone oxidoreductase, mitochondrial|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.9766620171
+UniRef50_Q11190: Electron transfer flavoprotein-ubiquinone oxidoreductase, mitochondrial|unclassified	0.0498293590
+UniRef50_D4H976: Dihydrofolate reductase	7.0257990445
+UniRef50_D4H976: Dihydrofolate reductase|g__Propionibacterium.s__Propionibacterium_acnes	7.0257990445
+UniRef50_Q3IWP7: Transcriptionalregulator, CopG family	7.0223759987
+UniRef50_Q3IWP7: Transcriptionalregulator, CopG family|g__Rhodobacter.s__Rhodobacter_sphaeroides	7.0223759987
+UniRef50_H9UZ27	7.0196161303
+UniRef50_H9UZ27|unclassified	7.0196161303
+UniRef50_A8LSJ7: Fe-S metabolism associated SufE	7.0183121946
+UniRef50_A8LSJ7: Fe-S metabolism associated SufE|unclassified	4.6542460008
+UniRef50_A8LSJ7: Fe-S metabolism associated SufE|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.3640661939
+UniRef50_K7SMY3: Phosphoglycerate mutase family protein	7.0175438596
+UniRef50_K7SMY3: Phosphoglycerate mutase family protein|g__Propionibacterium.s__Propionibacterium_acnes	7.0175438596
+UniRef50_H8HKL3: Acyl-CoA dehydrogenase FadE23	7.0173402994
+UniRef50_H8HKL3: Acyl-CoA dehydrogenase FadE23|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0173402994
+UniRef50_V6YHB9	7.0166913309
+UniRef50_V6YHB9|unclassified	7.0166913309
+UniRef50_U5UEE2: Putative transposase	7.0164177133
+UniRef50_U5UEE2: Putative transposase|unclassified	7.0164177133
+UniRef50_UPI0004762F78: hypothetical protein	7.0157783007
+UniRef50_UPI0004762F78: hypothetical protein|unclassified	7.0157783007
+UniRef50_M8HET6: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	7.0153061224
+UniRef50_M8HET6: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|g__Acinetobacter.s__Acinetobacter_baumannii	7.0153061224
+UniRef50_M9VA38: Anchored repeat-type ABC transporter, ATP-binding subunit	7.0148231322
+UniRef50_M9VA38: Anchored repeat-type ABC transporter, ATP-binding subunit|g__Propionibacterium.s__Propionibacterium_acnes	7.0148231322
+UniRef50_H6LJ16: UV damage endonuclease UvdE	7.0122477901
+UniRef50_H6LJ16: UV damage endonuclease UvdE|g__Clostridium.s__Clostridium_beijerinckii	7.0122477901
+UniRef50_E4PRH8: Peptidase C39, bacteriocin processing	7.0103233109
+UniRef50_E4PRH8: Peptidase C39, bacteriocin processing|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0103233109
+UniRef50_C5AJI0: Amino acid ABC transporter permease	7.0087546143
+UniRef50_C5AJI0: Amino acid ABC transporter permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0087546143
+UniRef50_W0Z222	7.0069457693
+UniRef50_W0Z222|unclassified	7.0069457693
+UniRef50_E5AMJ8: Dipeptide-binding protein	7.0055925035
+UniRef50_E5AMJ8: Dipeptide-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	7.0055925035
+UniRef50_S9SF90	7.0038669384
+UniRef50_S9SF90|unclassified	7.0038669384
+UniRef50_W8SRN2: Replication protein	7.0035700972
+UniRef50_W8SRN2: Replication protein|g__Escherichia.s__Escherichia_coli	7.0035700972
+UniRef50_M0WSU5	7.0027403524
+UniRef50_M0WSU5|unclassified	7.0027403524
+UniRef50_N6U8E6	7.0013646539
+UniRef50_N6U8E6|unclassified	7.0013646539
+UniRef50_UPI0003810867: hypothetical protein	7.0007642067
+UniRef50_UPI0003810867: hypothetical protein|unclassified	7.0007642067
+UniRef50_F0KG04	6.9976396949
+UniRef50_F0KG04|g__Acinetobacter.s__Acinetobacter_baumannii	6.9976396949
+UniRef50_A0A023KT22: DNA polymerase II	6.9969056816
+UniRef50_A0A023KT22: DNA polymerase II|g__Escherichia.s__Escherichia_coli	6.0652404562
+UniRef50_A0A023KT22: DNA polymerase II|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9316652254
+UniRef50_R2NGH3	6.9963369963
+UniRef50_R2NGH3|g__Staphylococcus.s__Staphylococcus_aureus	6.9963369963
+UniRef50_K7MLC2	6.9944374596
+UniRef50_K7MLC2|unclassified	6.9944374596
+UniRef50_J0JV07	6.9930069930
+UniRef50_J0JV07|g__Staphylococcus.s__Staphylococcus_epidermidis	6.9930069930
+UniRef50_P14949: Thioredoxin	6.9930069930
+UniRef50_P14949: Thioredoxin|g__Streptococcus.s__Streptococcus_mutans	6.9930069930
+UniRef50_P52645	6.9930069930
+UniRef50_P52645|g__Staphylococcus.s__Staphylococcus_aureus	6.9930069930
+UniRef50_P76163	6.9930069930
+UniRef50_P76163|g__Escherichia.s__Escherichia_coli	6.9930069930
+UniRef50_Q2YVN3	6.9930069930
+UniRef50_Q2YVN3|unclassified	6.9930069930
+UniRef50_Q8FJQ4	6.9930069930
+UniRef50_Q8FJQ4|unclassified	6.9930069930
+UniRef50_S6EXR7	6.9930069930
+UniRef50_S6EXR7|unclassified	6.9930069930
+UniRef50_T1YCX5	6.9930069930
+UniRef50_T1YCX5|g__Staphylococcus.s__Staphylococcus_aureus	6.9930069930
+UniRef50_UPI0002BB49A5: hypothetical protein, partial	6.9930069930
+UniRef50_UPI0002BB49A5: hypothetical protein, partial|g__Streptococcus.s__Streptococcus_agalactiae	6.9930069930
+UniRef50_Q161J2: Helix-turn-helix domain protein, putative	6.9914841431
+UniRef50_Q161J2: Helix-turn-helix domain protein, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.9914841431
+UniRef50_D4LM41: Nicotinate phosphoribosyltransferase	6.9883518019
+UniRef50_D4LM41: Nicotinate phosphoribosyltransferase|g__Clostridium.s__Clostridium_beijerinckii	6.9883518019
+UniRef50_Q87WZ6: MutT/nudix family protein	6.9880638903
+UniRef50_Q87WZ6: MutT/nudix family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.9880638903
+UniRef50_Q3J1U1: RNA polymerase sigma-54 factor	6.9879486093
+UniRef50_Q3J1U1: RNA polymerase sigma-54 factor|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.9879486093
+UniRef50_UPI0002FA5AD3: hypothetical protein	6.9873431097
+UniRef50_UPI0002FA5AD3: hypothetical protein|unclassified	6.9873431097
+UniRef50_D2ASS3	6.9867046833
+UniRef50_D2ASS3|unclassified	6.9867046833
+UniRef50_Q51478: MucA protein (Fragment)	6.9845566377
+UniRef50_Q51478: MucA protein (Fragment)|unclassified	6.9845566377
+UniRef50_Q3KDB9: Alanine racemase domain protein	6.9840095431
+UniRef50_Q3KDB9: Alanine racemase domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.9840095431
+UniRef50_A7ZKB3: Probable malonic semialdehyde reductase RutE	6.9824021984
+UniRef50_A7ZKB3: Probable malonic semialdehyde reductase RutE|g__Escherichia.s__Escherichia_coli	6.9282493781
+UniRef50_A7ZKB3: Probable malonic semialdehyde reductase RutE|unclassified	0.0541528203
+UniRef50_Q07806: Penicillin-binding protein 1A	6.9806949327
+UniRef50_Q07806: Penicillin-binding protein 1A|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.9806949327
+UniRef50_V9VZ32	6.9800262824
+UniRef50_V9VZ32|unclassified	6.9800262824
+UniRef50_A8IG29	6.9793593567
+UniRef50_A8IG29|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.9793593567
+UniRef50_L7U2C9: Acetyltransferase	6.9787825658
+UniRef50_L7U2C9: Acetyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	6.9787825658
+UniRef50_A4SQH0: Acyl-[acyl-carrier-protein]--UDP-N-acetylglucosamine O-acyltransferase	6.9784299508
+UniRef50_A4SQH0: Acyl-[acyl-carrier-protein]--UDP-N-acetylglucosamine O-acyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.9784299508
+UniRef50_G8RED1: Virulence-associated cell-wall-anchored protein SasG	6.9781758959
+UniRef50_G8RED1: Virulence-associated cell-wall-anchored protein SasG|g__Staphylococcus.s__Staphylococcus_epidermidis	6.9781758959
+UniRef50_D9PXI4: A1AO ATPase, subunit K	6.9757542567
+UniRef50_D9PXI4: A1AO ATPase, subunit K|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.9757542567
+UniRef50_G2TBP0: Nitrogenase	6.9753083563
+UniRef50_G2TBP0: Nitrogenase|g__Clostridium.s__Clostridium_beijerinckii	6.9753083563
+UniRef50_R4ZTG2	6.9747748864
+UniRef50_R4ZTG2|g__Streptococcus.s__Streptococcus_agalactiae	6.9747748864
+UniRef50_U3TMR9: Replication protein	6.9731085501
+UniRef50_U3TMR9: Replication protein|g__Streptococcus.s__Streptococcus_agalactiae	6.9731085501
+UniRef50_X5KFC2	6.9703756746
+UniRef50_X5KFC2|g__Streptococcus.s__Streptococcus_agalactiae	6.9703756746
+UniRef50_A1B637	6.9701950916
+UniRef50_A1B637|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.9701950916
+UniRef50_C9BIE5	6.9658025776
+UniRef50_C9BIE5|g__Streptococcus.s__Streptococcus_mutans	6.9658025776
+UniRef50_B9KJF9: Flagellar hook protein FlgE	6.9647217983
+UniRef50_B9KJF9: Flagellar hook protein FlgE|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.9647217983
+UniRef50_U3AFY8	6.9646805370
+UniRef50_U3AFY8|unclassified	6.9646805370
+UniRef50_M7KBH2	6.9645904151
+UniRef50_M7KBH2|unclassified	6.9645904151
+UniRef50_B7VAR6	6.9640807563
+UniRef50_B7VAR6|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9979173249
+UniRef50_B7VAR6|unclassified	0.9661634313
+UniRef50_UPI0000379B08: hypothetical protein	6.9632742138
+UniRef50_UPI0000379B08: hypothetical protein|unclassified	6.9632742138
+UniRef50_Q6K5E8	6.9603282629
+UniRef50_Q6K5E8|unclassified	6.9603282629
+UniRef50_A7I262: DedA family protein	6.9593616049
+UniRef50_A7I262: DedA family protein|g__Helicobacter.s__Helicobacter_pylori	6.9593616049
+UniRef50_R9ZJB4: Diguanylate cyclase	6.9589610715
+UniRef50_R9ZJB4: Diguanylate cyclase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.9589610715
+UniRef50_L8ND35: Sigma-54 dependent transcriptional regulator	6.9555400181
+UniRef50_L8ND35: Sigma-54 dependent transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.9555400181
+UniRef50_UPI00035C7086: hypothetical protein	6.9535138905
+UniRef50_UPI00035C7086: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.9535138905
+UniRef50_UPI00035FADFC: hypothetical protein	6.9492644015
+UniRef50_UPI00035FADFC: hypothetical protein|unclassified	6.9492644015
+UniRef50_P76394	6.9479720501
+UniRef50_P76394|g__Escherichia.s__Escherichia_coli	6.9479720501
+UniRef50_UPI000464CF8B: spermidine/putrescine ABC transporter	6.9474562648
+UniRef50_UPI000464CF8B: spermidine/putrescine ABC transporter|unclassified	6.9474562648
+UniRef50_N2RD63: EAL domain protein	6.9468190818
+UniRef50_N2RD63: EAL domain protein|g__Escherichia.s__Escherichia_coli	6.9468190818
+UniRef50_H0PXP7	6.9466347911
+UniRef50_H0PXP7|unclassified	6.9466347911
+UniRef50_B9KKA2	6.9444444444
+UniRef50_B9KKA2|unclassified	6.9444444444
+UniRef50_D7GGE9: Glyoxalase/bleomycin resistance protein/dioxygenase	6.9444444444
+UniRef50_D7GGE9: Glyoxalase/bleomycin resistance protein/dioxygenase|g__Deinococcus.s__Deinococcus_radiodurans	6.9444444444
+UniRef50_E1PAM7	6.9444444444
+UniRef50_E1PAM7|g__Escherichia.s__Escherichia_coli	6.9444444444
+UniRef50_H8L0H5: Plasmid stabilization system protein	6.9444444444
+UniRef50_H8L0H5: Plasmid stabilization system protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.9444444444
+UniRef50_J0QGW6	6.9444444444
+UniRef50_J0QGW6|unclassified	6.9444444444
+UniRef50_L1K4Y6	6.9444444444
+UniRef50_L1K4Y6|unclassified	6.9444444444
+UniRef50_Q49YX8	6.9444444444
+UniRef50_Q49YX8|g__Staphylococcus.s__Staphylococcus_epidermidis	6.9444444444
+UniRef50_R6SXB2: RNA-directed DNA polymerase	6.9444444444
+UniRef50_R6SXB2: RNA-directed DNA polymerase|g__Streptococcus.s__Streptococcus_mutans	6.9444444444
+UniRef50_R7PV23	6.9444444444
+UniRef50_R7PV23|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.9444444444
+UniRef50_W8T335	6.9444444444
+UniRef50_W8T335|g__Escherichia.s__Escherichia_coli	6.9444444444
+UniRef50_A4X048	6.9443851699
+UniRef50_A4X048|unclassified	6.9443851699
+UniRef50_B7V5S0	6.9430750406
+UniRef50_B7V5S0|unclassified	6.9430750406
+UniRef50_K7TAU7	6.9422847556
+UniRef50_K7TAU7|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0505050505
+UniRef50_K7TAU7|unclassified	1.8917797051
+UniRef50_UPI00037AE12F: hypothetical protein	6.9403588126
+UniRef50_UPI00037AE12F: hypothetical protein|unclassified	6.9403588126
+UniRef50_T7JW17	6.9401214962
+UniRef50_T7JW17|g__Escherichia.s__Escherichia_coli	6.9401214962
+UniRef50_Q5P6J3	6.9399922587
+UniRef50_Q5P6J3|unclassified	6.9399922587
+UniRef50_D4SQS2	6.9395089990
+UniRef50_D4SQS2|unclassified	6.9395089990
+UniRef50_K4L3Q5: D-serine/D-alanine/glycine transporter	6.9381534019
+UniRef50_K4L3Q5: D-serine/D-alanine/glycine transporter|g__Clostridium.s__Clostridium_beijerinckii	6.9381534019
+UniRef50_P33744: Aldehyde-alcohol dehydrogenase	6.9377262316
+UniRef50_P33744: Aldehyde-alcohol dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	6.9377262316
+UniRef50_F9R4E2	6.9376752092
+UniRef50_F9R4E2|unclassified	6.9376752092
+UniRef50_B0SXA7: Acetyl-CoA carboxylase, biotin carboxyl carrier protein	6.9375945288
+UniRef50_B0SXA7: Acetyl-CoA carboxylase, biotin carboxyl carrier protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.9375945288
+UniRef50_A7ZS88	6.9322857960
+UniRef50_A7ZS88|unclassified	6.9322857960
+UniRef50_P77495: Propionate--CoA ligase	6.9316270693
+UniRef50_P77495: Propionate--CoA ligase|g__Escherichia.s__Escherichia_coli	6.9316270693
+UniRef50_A6M1J9	6.9313047056
+UniRef50_A6M1J9|g__Clostridium.s__Clostridium_beijerinckii	6.9313047056
+UniRef50_G0VME5: Citrate transporter	6.9293723701
+UniRef50_G0VME5: Citrate transporter|g__Clostridium.s__Clostridium_beijerinckii	6.9293723701
+UniRef50_Q9X429: CylG	6.9290550939
+UniRef50_Q9X429: CylG|g__Streptococcus.s__Streptococcus_agalactiae	6.9290550939
+UniRef50_UPI00023764AD: putative aminotransferase, partial	6.9279602381
+UniRef50_UPI00023764AD: putative aminotransferase, partial|unclassified	6.9279602381
+UniRef50_G2JI07: Transcriptional regulator	6.9260413829
+UniRef50_G2JI07: Transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	6.9260413829
+UniRef50_M4RAV2: Phosphoglycerate mutase related protein	6.9260198153
+UniRef50_M4RAV2: Phosphoglycerate mutase related protein|g__Acinetobacter.s__Acinetobacter_baumannii	6.9260198153
+UniRef50_R5TNC8	6.9260185062
+UniRef50_R5TNC8|g__Clostridium.s__Clostridium_beijerinckii	6.9260185062
+UniRef50_D9SWT5: Peptidase S8 and S53 subtilisin kexin sedolisin	6.9242867246
+UniRef50_D9SWT5: Peptidase S8 and S53 subtilisin kexin sedolisin|g__Clostridium.s__Clostridium_beijerinckii	6.9242867246
+UniRef50_W1WM83	6.9208718959
+UniRef50_W1WM83|unclassified	6.9208718959
+UniRef50_A5N0V8: LivM	6.9194851991
+UniRef50_A5N0V8: LivM|g__Clostridium.s__Clostridium_beijerinckii	6.9194851991
+UniRef50_G0DV83: HAD hydrolase, family IIB	6.9164995781
+UniRef50_G0DV83: HAD hydrolase, family IIB|g__Propionibacterium.s__Propionibacterium_acnes	6.9164995781
+UniRef50_B7VAG6	6.9134261391
+UniRef50_B7VAG6|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.9134261391
+UniRef50_E0MU16: Putative replication protein A (Fragment)	6.9132874696
+UniRef50_E0MU16: Putative replication protein A (Fragment)|unclassified	6.9132874696
+UniRef50_Q02PS5: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	6.9120961772
+UniRef50_Q02PS5: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0518117981
+UniRef50_Q02PS5: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.8602843792
+UniRef50_M4XE09	6.9112438830
+UniRef50_M4XE09|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.9112438830
+UniRef50_R6XHZ3: Iron compound ABC transporter ATP-binding protein	6.9107842139
+UniRef50_R6XHZ3: Iron compound ABC transporter ATP-binding protein|g__Clostridium.s__Clostridium_beijerinckii	3.9452312484
+UniRef50_R6XHZ3: Iron compound ABC transporter ATP-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	2.9655529656
+UniRef50_P45018: ATP-dependent RNA helicase HrpA homolog	6.9106386125
+UniRef50_P45018: ATP-dependent RNA helicase HrpA homolog|g__Escherichia.s__Escherichia_coli	6.9106386125
+UniRef50_Q9HZ76: UDP-2-acetamido-2-deoxy-3-oxo-D-glucuronate aminotransferase	6.9104120743
+UniRef50_Q9HZ76: UDP-2-acetamido-2-deoxy-3-oxo-D-glucuronate aminotransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.9104120743
+UniRef50_W0H8V7: GGDEF domain/EAL domain protein	6.9099192724
+UniRef50_W0H8V7: GGDEF domain/EAL domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8854469654
+UniRef50_W0H8V7: GGDEF domain/EAL domain protein|unclassified	0.0244723070
+UniRef50_Q634K9	6.9086483391
+UniRef50_Q634K9|g__Staphylococcus.s__Staphylococcus_epidermidis	6.9086483391
+UniRef50_B9E249	6.9080305329
+UniRef50_B9E249|g__Clostridium.s__Clostridium_beijerinckii	6.9080305329
+UniRef50_C8YZ29: Wzm	6.9063409036
+UniRef50_C8YZ29: Wzm|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.9063409036
+UniRef50_V8A9V2	6.9055500606
+UniRef50_V8A9V2|unclassified	6.9055500606
+UniRef50_Q9A0C6: Carbamoyl-phosphate synthase large chain	6.9032010931
+UniRef50_Q9A0C6: Carbamoyl-phosphate synthase large chain|g__Clostridium.s__Clostridium_beijerinckii	3.6641512640
+UniRef50_Q9A0C6: Carbamoyl-phosphate synthase large chain|g__Streptococcus.s__Streptococcus_agalactiae	3.0604329241
+UniRef50_Q9A0C6: Carbamoyl-phosphate synthase large chain|unclassified	0.1786169051
+UniRef50_O67501: Inorganic pyrophosphatase	6.9022770398
+UniRef50_O67501: Inorganic pyrophosphatase|g__Helicobacter.s__Helicobacter_pylori	6.9022770398
+UniRef50_F5XRW0	6.9000686885
+UniRef50_F5XRW0|g__Propionibacterium.s__Propionibacterium_acnes	6.9000686885
+UniRef50_Q6FCV5: Lipoprotein	6.8989632284
+UniRef50_Q6FCV5: Lipoprotein|g__Acinetobacter.s__Acinetobacter_baumannii	6.8989632284
+UniRef50_A6VA35: Chain length determinant protein	6.8976509921
+UniRef50_A6VA35: Chain length determinant protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8976509921
+UniRef50_R1D4S7	6.8975990769
+UniRef50_R1D4S7|unclassified	6.8975990769
+UniRef50_UPI0004543709: PREDICTED: basic salivary proline-rich protein 1-like	6.8971650921
+UniRef50_UPI0004543709: PREDICTED: basic salivary proline-rich protein 1-like|unclassified	6.8971650921
+UniRef50_A3PKA4	6.8965517241
+UniRef50_A3PKA4|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.8965517241
+UniRef50_D8E115	6.8965517241
+UniRef50_D8E115|g__Escherichia.s__Escherichia_coli	6.8965517241
+UniRef50_F4VSV6: Putative ribosomal protein (Fragment)	6.8965517241
+UniRef50_F4VSV6: Putative ribosomal protein (Fragment)|g__Escherichia.s__Escherichia_coli	6.8965517241
+UniRef50_I0C6E4	6.8965517241
+UniRef50_I0C6E4|g__Staphylococcus.s__Staphylococcus_epidermidis	6.8965517241
+UniRef50_J5IRF9	6.8965517241
+UniRef50_J5IRF9|g__Acinetobacter.s__Acinetobacter_baumannii	6.8965517241
+UniRef50_J9UWJ3	6.8965517241
+UniRef50_J9UWJ3|g__Staphylococcus.s__Staphylococcus_aureus	6.8965517241
+UniRef50_R9ZDN3: GntR family transcriptional regulator	6.8941947345
+UniRef50_R9ZDN3: GntR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8941947345
+UniRef50_T9J874: CRISPR-associated endonuclease cas3-hd	6.8894956588
+UniRef50_T9J874: CRISPR-associated endonuclease cas3-hd|g__Escherichia.s__Escherichia_coli	6.8894956588
+UniRef50_K9NP10: L-glutamine synthetase	6.8886002754
+UniRef50_K9NP10: L-glutamine synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8886002754
+UniRef50_R4LIM7: CaiB/BaiF family protein	6.8851673068
+UniRef50_R4LIM7: CaiB/BaiF family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8851673068
+UniRef50_M1MFW2: Cobalamin biosynthesis protein CobD	6.8838086865
+UniRef50_M1MFW2: Cobalamin biosynthesis protein CobD|g__Clostridium.s__Clostridium_beijerinckii	6.8838086865
+UniRef50_Q9I1M2: 2-oxoisovalerate dehydrogenase subunit alpha	6.8837947139
+UniRef50_Q9I1M2: 2-oxoisovalerate dehydrogenase subunit alpha|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8837947139
+UniRef50_P21629: High-affinity branched-chain amino acid transport ATP-binding protein BraF	6.8837058633
+UniRef50_P21629: High-affinity branched-chain amino acid transport ATP-binding protein BraF|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8837058633
+UniRef50_UPI000225A94B: Hsp33-like chaperonin	6.8823426396
+UniRef50_UPI000225A94B: Hsp33-like chaperonin|unclassified	6.8823426396
+UniRef50_K0WK29	6.8811454636
+UniRef50_K0WK29|g__Acinetobacter.s__Acinetobacter_baumannii	6.8811454636
+UniRef50_Q4K6P3	6.8807339450
+UniRef50_Q4K6P3|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8807339450
+UniRef50_C5AJH9: Glycine betaine/choline/proline family ABC transporter periplasmic ligand binding protein	6.8792924925
+UniRef50_C5AJH9: Glycine betaine/choline/proline family ABC transporter periplasmic ligand binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8792924925
+UniRef50_M5HHC7	6.8791749678
+UniRef50_M5HHC7|g__Escherichia.s__Escherichia_coli	6.8791749678
+UniRef50_U9LZ47	6.8771988817
+UniRef50_U9LZ47|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9455292505
+UniRef50_U9LZ47|unclassified	1.9316696312
+UniRef50_A6LYQ9: MgtE intracellular region	6.8769302607
+UniRef50_A6LYQ9: MgtE intracellular region|g__Clostridium.s__Clostridium_beijerinckii	6.8769302607
+UniRef50_P0A966: Chemotaxis protein CheW	6.8769150379
+UniRef50_P0A966: Chemotaxis protein CheW|g__Escherichia.s__Escherichia_coli	6.8769150379
+UniRef50_D4MT97: Predicted Zn-dependent protease	6.8753734350
+UniRef50_D4MT97: Predicted Zn-dependent protease|g__Clostridium.s__Clostridium_beijerinckii	6.8753734350
+UniRef50_UPI0003B7A75E: 30S ribosomal protein S3	6.8753693075
+UniRef50_UPI0003B7A75E: 30S ribosomal protein S3|unclassified	6.8753693075
+UniRef50_S5CU75: Transposase-like protein	6.8746732354
+UniRef50_S5CU75: Transposase-like protein|g__Acinetobacter.s__Acinetobacter_baumannii	6.8746732354
+UniRef50_B7V778: Dihydroorotase	6.8744978066
+UniRef50_B7V778: Dihydroorotase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8744978066
+UniRef50_UPI00045EDEB6: 30S ribosomal protein S1	6.8740240491
+UniRef50_UPI00045EDEB6: 30S ribosomal protein S1|unclassified	6.8740240491
+UniRef50_I0ETM1: Bifunctional riboflavin kinase/FMN adenylyltransferase	6.8733295846
+UniRef50_I0ETM1: Bifunctional riboflavin kinase/FMN adenylyltransferase|g__Helicobacter.s__Helicobacter_pylori	6.8733295846
+UniRef50_A6M0I0: Ferredoxin hydrogenase	6.8702415049
+UniRef50_A6M0I0: Ferredoxin hydrogenase|g__Clostridium.s__Clostridium_beijerinckii	6.8702415049
+UniRef50_Q8XL57: ATP-dependent 6-phosphofructokinase 2	6.8678186492
+UniRef50_Q8XL57: ATP-dependent 6-phosphofructokinase 2|g__Clostridium.s__Clostridium_beijerinckii	6.7653259980
+UniRef50_Q8XL57: ATP-dependent 6-phosphofructokinase 2|unclassified	0.1024926513
+UniRef50_A6LT81: Histidine kinase internal region	6.8670237422
+UniRef50_A6LT81: Histidine kinase internal region|g__Clostridium.s__Clostridium_beijerinckii	6.8670237422
+UniRef50_D2BL68: Acetyltransferase, GNAT family	6.8665316748
+UniRef50_D2BL68: Acetyltransferase, GNAT family|g__Streptococcus.s__Streptococcus_agalactiae	6.8665316748
+UniRef50_N4VKC9: Phosphorylcholine phosphatase	6.8638849527
+UniRef50_N4VKC9: Phosphorylcholine phosphatase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8638849527
+UniRef50_B2V575: O-antigen polymerase family	6.8630187016
+UniRef50_B2V575: O-antigen polymerase family|g__Clostridium.s__Clostridium_beijerinckii	6.8630187016
+UniRef50_D7I005	6.8586935944
+UniRef50_D7I005|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5833136657
+UniRef50_D7I005|unclassified	0.2753799287
+UniRef50_I6S241	6.8577152227
+UniRef50_I6S241|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8577152227
+UniRef50_W1V4F4	6.8561181712
+UniRef50_W1V4F4|unclassified	6.8561181712
+UniRef50_P28911	6.8530838824
+UniRef50_P28911|g__Escherichia.s__Escherichia_coli	5.3575270745
+UniRef50_P28911|unclassified	1.4955568079
+UniRef50_Q9I4L1: Probable deoxyguanosinetriphosphate triphosphohydrolase	6.8510371361
+UniRef50_Q9I4L1: Probable deoxyguanosinetriphosphate triphosphohydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7742392315
+UniRef50_Q9I4L1: Probable deoxyguanosinetriphosphate triphosphohydrolase|unclassified	0.0767979046
+UniRef50_UPI00028A3C04: FAD linked oxidase-like protein, partial	6.8499827353
+UniRef50_UPI00028A3C04: FAD linked oxidase-like protein, partial|unclassified	6.8499827353
+UniRef50_M4K0X3	6.8496445112
+UniRef50_M4K0X3|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8496445112
+UniRef50_A0A011T8Q7	6.8493150685
+UniRef50_A0A011T8Q7|unclassified	6.8493150685
+UniRef50_A6LQ35: Cyclase family protein	6.8493150685
+UniRef50_A6LQ35: Cyclase family protein|g__Clostridium.s__Clostridium_beijerinckii	6.8493150685
+UniRef50_A9CR91	6.8493150685
+UniRef50_A9CR91|g__Staphylococcus.s__Staphylococcus_aureus	6.8493150685
+UniRef50_B3IFQ4	6.8493150685
+UniRef50_B3IFQ4|unclassified	6.8493150685
+UniRef50_B7V1M1: Nitrate-inducible formate dehydrogenase, gamma subunit	6.8493150685
+UniRef50_B7V1M1: Nitrate-inducible formate dehydrogenase, gamma subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8493150685
+UniRef50_C5N3Y4: XkdX family protein	6.8493150685
+UniRef50_C5N3Y4: XkdX family protein|g__Staphylococcus.s__Staphylococcus_aureus	6.8493150685
+UniRef50_E5CV30	6.8493150685
+UniRef50_E5CV30|unclassified	6.8493150685
+UniRef50_F5XQJ4	6.8493150685
+UniRef50_F5XQJ4|g__Propionibacterium.s__Propionibacterium_acnes	6.8493150685
+UniRef50_O52706: 50S ribosomal protein L12	6.8493150685
+UniRef50_O52706: 50S ribosomal protein L12|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.8493150685
+UniRef50_P0ADN4: UPF0438 protein YifE	6.8493150685
+UniRef50_P0ADN4: UPF0438 protein YifE|g__Escherichia.s__Escherichia_coli	6.8493150685
+UniRef50_P45751: Putative DNA utilization protein HofO	6.8493150685
+UniRef50_P45751: Putative DNA utilization protein HofO|g__Escherichia.s__Escherichia_coli	6.8493150685
+UniRef50_Q05626	6.8493150685
+UniRef50_Q05626|g__Clostridium.s__Clostridium_beijerinckii	6.8493150685
+UniRef50_R6M763	6.8493150685
+UniRef50_R6M763|g__Clostridium.s__Clostridium_beijerinckii	6.8493150685
+UniRef50_U5NMM1	6.8493150685
+UniRef50_U5NMM1|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.8493150685
+UniRef50_UPI00037F78ED: hypothetical protein	6.8493150685
+UniRef50_UPI00037F78ED: hypothetical protein|unclassified	6.8493150685
+UniRef50_V1BX79	6.8493150685
+UniRef50_V1BX79|unclassified	6.8493150685
+UniRef50_W4UBF2	6.8493150685
+UniRef50_W4UBF2|unclassified	6.8493150685
+UniRef50_A6M0U8: Aminotransferase, class IV	6.8486697256
+UniRef50_A6M0U8: Aminotransferase, class IV|g__Clostridium.s__Clostridium_beijerinckii	6.8486697256
+UniRef50_X5K121	6.8457720210
+UniRef50_X5K121|g__Streptococcus.s__Streptococcus_agalactiae	6.8457720210
+UniRef50_A6LTI9: Transcriptional regulator, XRE family	6.8456930311
+UniRef50_A6LTI9: Transcriptional regulator, XRE family|g__Clostridium.s__Clostridium_beijerinckii	6.8456930311
+UniRef50_T2EQP3: AAA ATPase domain protein	6.8454071933
+UniRef50_T2EQP3: AAA ATPase domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8454071933
+UniRef50_R5QE34	6.8432342054
+UniRef50_R5QE34|g__Clostridium.s__Clostridium_beijerinckii	6.8432342054
+UniRef50_G8B073	6.8381475479
+UniRef50_G8B073|unclassified	6.8381475479
+UniRef50_UPI000288DACB: nitrogen regulatory protein P-II	6.8349613313
+UniRef50_UPI000288DACB: nitrogen regulatory protein P-II|unclassified	6.8349613313
+UniRef50_P44640	6.8319005937
+UniRef50_P44640|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8319005937
+UniRef50_A9MUU3	6.8318098035
+UniRef50_A9MUU3|unclassified	6.8318098035
+UniRef50_Q8NUV0: Putative surface protein MW2416	6.8313657181
+UniRef50_Q8NUV0: Putative surface protein MW2416|g__Staphylococcus.s__Staphylococcus_epidermidis	6.8313657181
+UniRef50_P38067: Succinate-semialdehyde dehydrogenase [NADP(+)]	6.8302654952
+UniRef50_P38067: Succinate-semialdehyde dehydrogenase [NADP(+)]|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7978848079
+UniRef50_P38067: Succinate-semialdehyde dehydrogenase [NADP(+)]|unclassified	0.0323806872
+UniRef50_A6LQ19: Drug resistance transporter, EmrB/QacA subfamily	6.8278232702
+UniRef50_A6LQ19: Drug resistance transporter, EmrB/QacA subfamily|g__Clostridium.s__Clostridium_beijerinckii	6.8278232702
+UniRef50_A6LX89: Elongation factor G, domain IV	6.8276753604
+UniRef50_A6LX89: Elongation factor G, domain IV|g__Clostridium.s__Clostridium_beijerinckii	6.8276753604
+UniRef50_A1R6L8: Glucose-1-phosphate adenylyltransferase	6.8272325055
+UniRef50_A1R6L8: Glucose-1-phosphate adenylyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	6.7681049382
+UniRef50_A1R6L8: Glucose-1-phosphate adenylyltransferase|unclassified	0.0591275673
+UniRef50_S5URW9: Mg(2+) transport ATPase protein C	6.8242382111
+UniRef50_S5URW9: Mg(2+) transport ATPase protein C|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8242382111
+UniRef50_A6LZF1	6.8195404354
+UniRef50_A6LZF1|g__Clostridium.s__Clostridium_beijerinckii	6.8195404354
+UniRef50_A6LUP1: Peptidoglycan glycosyltransferase	6.8182855272
+UniRef50_A6LUP1: Peptidoglycan glycosyltransferase|g__Clostridium.s__Clostridium_beijerinckii	6.8182855272
+UniRef50_I0HNR0: Amino acid ABC transporter substrate binding protein	6.8155407303
+UniRef50_I0HNR0: Amino acid ABC transporter substrate binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8155407303
+UniRef50_A5UJC5	6.8138730902
+UniRef50_A5UJC5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.8138730902
+UniRef50_Q9RYC4: Methyltransferase, putative	6.8130211720
+UniRef50_Q9RYC4: Methyltransferase, putative|g__Deinococcus.s__Deinococcus_radiodurans	6.8130211720
+UniRef50_D3F1T9	6.8121419420
+UniRef50_D3F1T9|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6742645636
+UniRef50_D3F1T9|unclassified	0.1378773784
+UniRef50_B5Y0W4: UPF0234 protein KPK_4305	6.8115800022
+UniRef50_B5Y0W4: UPF0234 protein KPK_4305|g__Escherichia.s__Escherichia_coli	6.5450639872
+UniRef50_B5Y0W4: UPF0234 protein KPK_4305|unclassified	0.2665160150
+UniRef50_H3WII0	6.8098354872
+UniRef50_H3WII0|unclassified	6.8098354872
+UniRef50_B2JSF8: Major facilitator superfamily MFS_1	6.8081347031
+UniRef50_B2JSF8: Major facilitator superfamily MFS_1|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8081347031
+UniRef50_Q51391: Glycerol-3-phosphate regulon repressor	6.8079719782
+UniRef50_Q51391: Glycerol-3-phosphate regulon repressor|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8079719782
+UniRef50_A9BEV2: Protein RecA	6.8079498037
+UniRef50_A9BEV2: Protein RecA|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8079498037
+UniRef50_V6ACD4: Peptidase M14, carboxypeptidase A	6.8075984049
+UniRef50_V6ACD4: Peptidase M14, carboxypeptidase A|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.8075984049
+UniRef50_Q83JF8	6.8057753504
+UniRef50_Q83JF8|unclassified	6.8057753504
+UniRef50_Q2RNA5: Imidazole glycerol phosphate synthase subunit HisH	6.8052843718
+UniRef50_Q2RNA5: Imidazole glycerol phosphate synthase subunit HisH|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.8052843718
+UniRef50_D3E077	6.8027210884
+UniRef50_D3E077|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.8027210884
+UniRef50_E3A5S3	6.8027210884
+UniRef50_E3A5S3|unclassified	6.8027210884
+UniRef50_H3YV68	6.8027210884
+UniRef50_H3YV68|g__Staphylococcus.s__Staphylococcus_aureus	6.8027210884
+UniRef50_H5IPS8	6.8027210884
+UniRef50_H5IPS8|unclassified	6.8027210884
+UniRef50_M7DJJ7	6.8027210884
+UniRef50_M7DJJ7|g__Streptococcus.s__Streptococcus_mutans	6.8027210884
+UniRef50_Q8CS52	6.8027210884
+UniRef50_Q8CS52|g__Staphylococcus.s__Staphylococcus_epidermidis	6.8027210884
+UniRef50_Q9K1N7	6.8027210884
+UniRef50_Q9K1N7|g__Neisseria.s__Neisseria_meningitidis	6.8027210884
+UniRef50_T0AH84	6.8027210884
+UniRef50_T0AH84|g__Staphylococcus.s__Staphylococcus_aureus	6.8027210884
+UniRef50_T1Y916	6.8027210884
+UniRef50_T1Y916|g__Staphylococcus.s__Staphylococcus_aureus	6.8027210884
+UniRef50_X2M4D8	6.8027210884
+UniRef50_X2M4D8|unclassified	6.8027210884
+UniRef50_X5E1Z8: Resolvase, N terminal domain protein	6.8027210884
+UniRef50_X5E1Z8: Resolvase, N terminal domain protein|g__Staphylococcus.s__Staphylococcus_aureus	6.8027210884
+UniRef50_Y2PNE3	6.8027210884
+UniRef50_Y2PNE3|g__Staphylococcus.s__Staphylococcus_aureus	6.8027210884
+UniRef50_M9VG84: Class I glutamine amidotransferase	6.8023684636
+UniRef50_M9VG84: Class I glutamine amidotransferase|g__Propionibacterium.s__Propionibacterium_acnes	6.8023684636
+UniRef50_R5XL07	6.8023373869
+UniRef50_R5XL07|g__Clostridium.s__Clostridium_beijerinckii	6.8023373869
+UniRef50_G9W1F7	6.8018794098
+UniRef50_G9W1F7|unclassified	6.8018794098
+UniRef50_F8FUQ7: ApbE family lipoprotein	6.7996046046
+UniRef50_F8FUQ7: ApbE family lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7996046046
+UniRef50_M9VKX5	6.7990806490
+UniRef50_M9VKX5|g__Propionibacterium.s__Propionibacterium_acnes	6.7990806490
+UniRef50_G0I8I1	6.7990239574
+UniRef50_G0I8I1|g__Streptococcus.s__Streptococcus_agalactiae	6.7990239574
+UniRef50_O52982	6.7975908312
+UniRef50_O52982|g__Escherichia.s__Escherichia_coli	6.7975908312
+UniRef50_T2EIW6: Thioesterase superfamily protein	6.7975908312
+UniRef50_T2EIW6: Thioesterase superfamily protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7975908312
+UniRef50_A1AJH6: N-acetylneuraminate epimerase	6.7964267472
+UniRef50_A1AJH6: N-acetylneuraminate epimerase|g__Escherichia.s__Escherichia_coli	6.7964267472
+UniRef50_Q323Z6: Swarming motility protein YbiA	6.7962854541
+UniRef50_Q323Z6: Swarming motility protein YbiA|g__Escherichia.s__Escherichia_coli	6.7962854541
+UniRef50_D7B3H1: CDP-alcohol phosphatidyltransferase	6.7955134997
+UniRef50_D7B3H1: CDP-alcohol phosphatidyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	6.7955134997
+UniRef50_R4YE56: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	6.7954560070
+UniRef50_R4YE56: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|g__Escherichia.s__Escherichia_coli	6.5789473684
+UniRef50_R4YE56: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|unclassified	0.2165086386
+UniRef50_E6V0C3: Nicotinamidase	6.7953621705
+UniRef50_E6V0C3: Nicotinamidase|g__Acinetobacter.s__Acinetobacter_baumannii	6.7953621705
+UniRef50_U0D4D4: Membrane-associated protein uidC	6.7932960894
+UniRef50_U0D4D4: Membrane-associated protein uidC|g__Escherichia.s__Escherichia_coli	6.7932960894
+UniRef50_B9TME5	6.7928576544
+UniRef50_B9TME5|unclassified	6.7928576544
+UniRef50_L7VTP9: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifE	6.7918495036
+UniRef50_L7VTP9: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifE|g__Clostridium.s__Clostridium_beijerinckii	6.7918495036
+UniRef50_A8AQJ7	6.7892127344
+UniRef50_A8AQJ7|unclassified	3.6146095598
+UniRef50_A8AQJ7|g__Escherichia.s__Escherichia_coli	3.1746031746
+UniRef50_A4XZS6: GCN5-related N-acetyltransferase	6.7873996445
+UniRef50_A4XZS6: GCN5-related N-acetyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7873996445
+UniRef50_A3PJF5: tRNA dimethylallyltransferase	6.7872767698
+UniRef50_A3PJF5: tRNA dimethylallyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.3177498766
+UniRef50_A3PJF5: tRNA dimethylallyltransferase|unclassified	1.4695268933
+UniRef50_A3PRI0: Forkhead-associated protein	6.7868471618
+UniRef50_A3PRI0: Forkhead-associated protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.7868471618
+UniRef50_W1CHR3: Tripeptide aminopeptidase	6.7849321286
+UniRef50_W1CHR3: Tripeptide aminopeptidase|g__Escherichia.s__Escherichia_coli	6.7849321286
+UniRef50_A0A011GQD3	6.7835897103
+UniRef50_A0A011GQD3|g__Acinetobacter.s__Acinetobacter_baumannii	6.7835897103
+UniRef50_T7XDH6: Cytochrome bd-II oxidase subunit 2	6.7825350130
+UniRef50_T7XDH6: Cytochrome bd-II oxidase subunit 2|g__Escherichia.s__Escherichia_coli	6.7825350130
+UniRef50_G7M7Y7: Transcriptional regulator, TetR family	6.7806218103
+UniRef50_G7M7Y7: Transcriptional regulator, TetR family|g__Clostridium.s__Clostridium_beijerinckii	6.7806218103
+UniRef50_N2E2F5: 4Fe-4S binding domain protein (Fragment)	6.7781722769
+UniRef50_N2E2F5: 4Fe-4S binding domain protein (Fragment)|g__Escherichia.s__Escherichia_coli	6.7781722769
+UniRef50_A3VZ88: ISxac3 transposase	6.7776735662
+UniRef50_A3VZ88: ISxac3 transposase|unclassified	6.7776735662
+UniRef50_Q9HYQ2	6.7770755322
+UniRef50_Q9HYQ2|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7770755322
+UniRef50_F3H6D0: Acriflavin resistance protein (Fragment)	6.7760373488
+UniRef50_F3H6D0: Acriflavin resistance protein (Fragment)|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7760373488
+UniRef50_UPI00037288A1: hypothetical protein	6.7759092003
+UniRef50_UPI00037288A1: hypothetical protein|unclassified	6.7759092003
+UniRef50_L3U9S8: Protein hdeD	6.7720090293
+UniRef50_L3U9S8: Protein hdeD|g__Escherichia.s__Escherichia_coli	6.7720090293
+UniRef50_B9KZ43: GTPase Der	6.7690500910
+UniRef50_B9KZ43: GTPase Der|g__Clostridium.s__Clostridium_beijerinckii	6.7690500910
+UniRef50_B2TJ96: Nudix-family hydrolase	6.7689498612
+UniRef50_B2TJ96: Nudix-family hydrolase|g__Clostridium.s__Clostridium_beijerinckii	6.7689498612
+UniRef50_U6A8Z3	6.7682088869
+UniRef50_U6A8Z3|unclassified	3.3898305085
+UniRef50_U6A8Z3|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3783783784
+UniRef50_A4IQZ4: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase	6.7662112126
+UniRef50_A4IQZ4: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|g__Clostridium.s__Clostridium_beijerinckii	6.7416341497
+UniRef50_A4IQZ4: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|unclassified	0.0245770630
+UniRef50_A6UWG3: Flavodoxin	6.7631585322
+UniRef50_A6UWG3: Flavodoxin|g__Clostridium.s__Clostridium_beijerinckii	6.7631585322
+UniRef50_A0A024EBR0: LmbE-like protein	6.7604656187
+UniRef50_A0A024EBR0: LmbE-like protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7604656187
+UniRef50_O33730	6.7601279706
+UniRef50_O33730|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.7601279706
+UniRef50_V5WF15: Oligopeptide transport system permease protein OppB	6.7597764649
+UniRef50_V5WF15: Oligopeptide transport system permease protein OppB|g__Clostridium.s__Clostridium_beijerinckii	6.7597764649
+UniRef50_G5N7N0: Dihydrolipoamide acetyltransferase (Fragment)	6.7588325653
+UniRef50_G5N7N0: Dihydrolipoamide acetyltransferase (Fragment)|g__Escherichia.s__Escherichia_coli	6.7588325653
+UniRef50_P0ADD8	6.7583597262
+UniRef50_P0ADD8|g__Escherichia.s__Escherichia_coli	6.7583597262
+UniRef50_A3PGB8: Histidine kinase	6.7575842957
+UniRef50_A3PGB8: Histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.7575842957
+UniRef50_C4KRY7: Class II aldolase/adducin family protein	6.7574979596
+UniRef50_C4KRY7: Class II aldolase/adducin family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4655082955
+UniRef50_C4KRY7: Class II aldolase/adducin family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.2919896641
+UniRef50_E7SP21	6.7567567568
+UniRef50_E7SP21|unclassified	6.7567567568
+UniRef50_I0ZRH5	6.7567567568
+UniRef50_I0ZRH5|unclassified	6.7567567568
+UniRef50_L1FMR3: Respiratory-chain NADH dehydrogenase, 30 Kd subunit	6.7567567568
+UniRef50_L1FMR3: Respiratory-chain NADH dehydrogenase, 30 Kd subunit|g__Escherichia.s__Escherichia_coli	6.7567567568
+UniRef50_U5NRJ2	6.7567567568
+UniRef50_U5NRJ2|unclassified	6.7567567568
+UniRef50_UPI0002BA38E1: hypothetical protein, partial	6.7567567568
+UniRef50_UPI0002BA38E1: hypothetical protein, partial|g__Acinetobacter.s__Acinetobacter_baumannii	6.7567567568
+UniRef50_W1G3D5: Putative HTH-type transcriptional regulator YdjF	6.7567567568
+UniRef50_W1G3D5: Putative HTH-type transcriptional regulator YdjF|unclassified	6.7567567568
+UniRef50_UPI000255A195: Twin-arginine translocation pathway signal	6.7558671287
+UniRef50_UPI000255A195: Twin-arginine translocation pathway signal|unclassified	6.7558671287
+UniRef50_F8IRK1: Replication initiator A protein	6.7548005286
+UniRef50_F8IRK1: Replication initiator A protein|g__Streptococcus.s__Streptococcus_agalactiae	6.7548005286
+UniRef50_B6C3C1: Ribulose bisphosphate carboxylase, small subunit	6.7527433970
+UniRef50_B6C3C1: Ribulose bisphosphate carboxylase, small subunit|unclassified	6.7527433970
+UniRef50_P72146: WbpN	6.7524881963
+UniRef50_P72146: WbpN|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7524881963
+UniRef50_D6ENI5: Integral membrane protein (Fragment)	6.7498215879
+UniRef50_D6ENI5: Integral membrane protein (Fragment)|unclassified	6.7498215879
+UniRef50_B0RVC3: Two-component system response regulator	6.7482543676
+UniRef50_B0RVC3: Two-component system response regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.7482543676
+UniRef50_UPI000377D1B9: hypothetical protein	6.7452607812
+UniRef50_UPI000377D1B9: hypothetical protein|unclassified	6.7452607812
+UniRef50_Q47138	6.7450279253
+UniRef50_Q47138|g__Escherichia.s__Escherichia_coli	6.7450279253
+UniRef50_E8ZZT0: DNA translocase ftsK	6.7443523334
+UniRef50_E8ZZT0: DNA translocase ftsK|g__Escherichia.s__Escherichia_coli	6.7443523334
+UniRef50_UPI0001744E68: hypothetical protein	6.7429234692
+UniRef50_UPI0001744E68: hypothetical protein|unclassified	6.7429234692
+UniRef50_E9SHD5	6.7420488073
+UniRef50_E9SHD5|unclassified	6.7420488073
+UniRef50_V8FQ12: Chemotaxis protein CheW	6.7415730337
+UniRef50_V8FQ12: Chemotaxis protein CheW|g__Clostridium.s__Clostridium_beijerinckii	6.7415730337
+UniRef50_P26905: Dipeptide transport ATP-binding protein DppD	6.7389648296
+UniRef50_P26905: Dipeptide transport ATP-binding protein DppD|g__Clostridium.s__Clostridium_beijerinckii	6.7389648296
+UniRef50_R5VY03: Pseudouridine synthase	6.7387295690
+UniRef50_R5VY03: Pseudouridine synthase|g__Streptococcus.s__Streptococcus_agalactiae	6.7387295690
+UniRef50_A8AMK7	6.7343121138
+UniRef50_A8AMK7|unclassified	6.7343121138
+UniRef50_A3NT46: Oxygen-dependent coproporphyrinogen-III oxidase	6.7342790086
+UniRef50_A3NT46: Oxygen-dependent coproporphyrinogen-III oxidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5414955301
+UniRef50_A3NT46: Oxygen-dependent coproporphyrinogen-III oxidase|unclassified	0.1927834785
+UniRef50_B5SFG5: Amino-acid-binding periplasmic protein	6.7323330055
+UniRef50_B5SFG5: Amino-acid-binding periplasmic protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7323330055
+UniRef50_A4VHD7: Membrane fusion protein	6.7318985364
+UniRef50_A4VHD7: Membrane fusion protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7318985364
+UniRef50_A6M1L4: Putative cell wall binding repeat-containing protein	6.7313316624
+UniRef50_A6M1L4: Putative cell wall binding repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	6.7313316624
+UniRef50_B9DY53: Transcription-repair-coupling factor	6.7312728118
+UniRef50_B9DY53: Transcription-repair-coupling factor|g__Clostridium.s__Clostridium_beijerinckii	6.7312728118
+UniRef50_P34750: Fimbrial assembly protein PilQ	6.7305872173
+UniRef50_P34750: Fimbrial assembly protein PilQ|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7305872173
+UniRef50_P0ACU0	6.7292876042
+UniRef50_P0ACU0|g__Escherichia.s__Escherichia_coli	6.7292876042
+UniRef50_Q9I509: NAD(P)H dehydrogenase (quinone)	6.7274160561
+UniRef50_Q9I509: NAD(P)H dehydrogenase (quinone)|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4102564103
+UniRef50_Q9I509: NAD(P)H dehydrogenase (quinone)|unclassified	0.3171596459
+UniRef50_K9NK52: Putrescine-binding periplasmic protein	6.7268495714
+UniRef50_K9NK52: Putrescine-binding periplasmic protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7268495714
+UniRef50_C5IBJ2: RhsA	6.7232661765
+UniRef50_C5IBJ2: RhsA|g__Escherichia.s__Escherichia_coli	6.7232661765
+UniRef50_A6M2L8: Protein-tyrosine-phosphatase	6.7230325717
+UniRef50_A6M2L8: Protein-tyrosine-phosphatase|g__Clostridium.s__Clostridium_beijerinckii	6.7230325717
+UniRef50_G2NTW9: Short-chain dehydrogenase/reductase SDR	6.7218275921
+UniRef50_G2NTW9: Short-chain dehydrogenase/reductase SDR|g__Clostridium.s__Clostridium_beijerinckii	6.7218275921
+UniRef50_A6UXT4: Lipoprotein	6.7209548066
+UniRef50_A6UXT4: Lipoprotein|unclassified	6.7209548066
+UniRef50_C5N1M7	6.7202000122
+UniRef50_C5N1M7|g__Staphylococcus.s__Staphylococcus_aureus	5.1282051282
+UniRef50_C5N1M7|unclassified	1.5919948840
+UniRef50_R6FSB9: Peptidase M24	6.7200742220
+UniRef50_R6FSB9: Peptidase M24|g__Clostridium.s__Clostridium_beijerinckii	6.7200742220
+UniRef50_A3TWT0	6.7178578257
+UniRef50_A3TWT0|unclassified	6.7178578257
+UniRef50_G5JTG6: Transcriptional regulator, ArsR family	6.7114849724
+UniRef50_G5JTG6: Transcriptional regulator, ArsR family|g__Streptococcus.s__Streptococcus_mutans	6.7114849724
+UniRef50_D3QDX5	6.7114093960
+UniRef50_D3QDX5|g__Staphylococcus.s__Staphylococcus_epidermidis	6.7114093960
+UniRef50_G2BNK6	6.7114093960
+UniRef50_G2BNK6|unclassified	6.7114093960
+UniRef50_J7R6K9	6.7114093960
+UniRef50_J7R6K9|g__Escherichia.s__Escherichia_coli	6.7114093960
+UniRef50_Q6FA27	6.7114093960
+UniRef50_Q6FA27|g__Acinetobacter.s__Acinetobacter_baumannii	6.7114093960
+UniRef50_S1HMP3: Pyrimidine utilization protein D	6.7114093960
+UniRef50_S1HMP3: Pyrimidine utilization protein D|g__Escherichia.s__Escherichia_coli	6.7114093960
+UniRef50_W8TT27	6.7114093960
+UniRef50_W8TT27|unclassified	6.7114093960
+UniRef50_Z1TC60	6.7114093960
+UniRef50_Z1TC60|unclassified	6.7114093960
+UniRef50_E3A6H8	6.7105396363
+UniRef50_E3A6H8|unclassified	6.7105396363
+UniRef50_K0S542	6.7104793823
+UniRef50_K0S542|unclassified	6.7104793823
+UniRef50_S5XJR5: ABC-type proline/glycine betaine transporter, periplasmic component	6.7096817164
+UniRef50_S5XJR5: ABC-type proline/glycine betaine transporter, periplasmic component|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7096817164
+UniRef50_B9E3V1	6.7094719874
+UniRef50_B9E3V1|g__Clostridium.s__Clostridium_beijerinckii	6.7094719874
+UniRef50_UPI000360FDD5: hypothetical protein	6.7094152251
+UniRef50_UPI000360FDD5: hypothetical protein|unclassified	6.7094152251
+UniRef50_Q5I3J7: Aec68	6.7091938626
+UniRef50_Q5I3J7: Aec68|g__Escherichia.s__Escherichia_coli	6.7091938626
+UniRef50_Q6A9W5: Probable cytosol aminopeptidase	6.7091671754
+UniRef50_Q6A9W5: Probable cytosol aminopeptidase|g__Propionibacterium.s__Propionibacterium_acnes	6.7091671754
+UniRef50_M1MDU9: Permease	6.7078163340
+UniRef50_M1MDU9: Permease|g__Clostridium.s__Clostridium_beijerinckii	6.7078163340
+UniRef50_C9D087	6.7066914497
+UniRef50_C9D087|unclassified	6.7066914497
+UniRef50_A6LVP1: Sterol 3-beta-glucosyltransferase	6.7030581983
+UniRef50_A6LVP1: Sterol 3-beta-glucosyltransferase|g__Clostridium.s__Clostridium_beijerinckii	6.7030581983
+UniRef50_Q9HUL4: Epoxyqueuosine reductase	6.7029334454
+UniRef50_Q9HUL4: Epoxyqueuosine reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.7029334454
+UniRef50_W7TIW7	6.7024128686
+UniRef50_W7TIW7|unclassified	6.7024128686
+UniRef50_A6T1E5: 60 kDa chaperonin	6.6995286984
+UniRef50_A6T1E5: 60 kDa chaperonin|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6995286984
+UniRef50_B9J7R7: Biphenyl-2,3-diol 1,2-dioxygenase protein	6.6980286738
+UniRef50_B9J7R7: Biphenyl-2,3-diol 1,2-dioxygenase protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6980286738
+UniRef50_W1AYP4: Di/tripeptide permease YjdL	6.6979071163
+UniRef50_W1AYP4: Di/tripeptide permease YjdL|g__Escherichia.s__Escherichia_coli	6.6979071163
+UniRef50_F5WVJ2: CRISPR-associated endoribonuclease Cas2	6.6975615138
+UniRef50_F5WVJ2: CRISPR-associated endoribonuclease Cas2|g__Streptococcus.s__Streptococcus_mutans	6.6975615138
+UniRef50_A5WCY2: FAD linked oxidase domain protein	6.6969145909
+UniRef50_A5WCY2: FAD linked oxidase domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7372216926
+UniRef50_A5WCY2: FAD linked oxidase domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.9596928983
+UniRef50_O34512	6.6956342206
+UniRef50_O34512|g__Clostridium.s__Clostridium_beijerinckii	3.5376011849
+UniRef50_O34512|g__Streptococcus.s__Streptococcus_agalactiae	3.1580330358
+UniRef50_A6M053: Glycoside hydrolase, family 3 domain protein	6.6950052071
+UniRef50_A6M053: Glycoside hydrolase, family 3 domain protein|g__Clostridium.s__Clostridium_beijerinckii	6.6950052071
+UniRef50_Q2NFS1: CRISPR-associated endoribonuclease	6.6946300169
+UniRef50_Q2NFS1: CRISPR-associated endoribonuclease|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.6946300169
+UniRef50_D4GB36: FeS assembly ATPase SufC	6.6938650508
+UniRef50_D4GB36: FeS assembly ATPase SufC|g__Clostridium.s__Clostridium_beijerinckii	6.6938650508
+UniRef50_Q8K911: PTS system mannitol-specific EIICBA component	6.6922493058
+UniRef50_Q8K911: PTS system mannitol-specific EIICBA component|g__Escherichia.s__Escherichia_coli	6.6596533636
+UniRef50_Q8K911: PTS system mannitol-specific EIICBA component|unclassified	0.0325959422
+UniRef50_O50274: Bifunctional enzyme CysN/CysC	6.6907475628
+UniRef50_O50274: Bifunctional enzyme CysN/CysC|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6907475628
+UniRef50_T2E128	6.6907051282
+UniRef50_T2E128|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6907051282
+UniRef50_Q88N58	6.6893954544
+UniRef50_Q88N58|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6893954544
+UniRef50_M1LUI1: D-galactose-binding periplasmic protein MglB	6.6875925461
+UniRef50_M1LUI1: D-galactose-binding periplasmic protein MglB|g__Clostridium.s__Clostridium_beijerinckii	6.6875925461
+UniRef50_I1PTF2	6.6874325688
+UniRef50_I1PTF2|unclassified	6.6874325688
+UniRef50_I1PKM1	6.6861657836
+UniRef50_I1PKM1|unclassified	6.6861657836
+UniRef50_Q13V14: tRNA (guanine-N(7)-)-methyltransferase	6.6849632973
+UniRef50_Q13V14: tRNA (guanine-N(7)-)-methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8759689922
+UniRef50_Q13V14: tRNA (guanine-N(7)-)-methyltransferase|g__Neisseria.s__Neisseria_meningitidis	2.8089943051
+UniRef50_A5KHM2	6.6827060089
+UniRef50_A5KHM2|unclassified	6.6827060089
+UniRef50_A6LQP5: NLP/P60 protein	6.6822989667
+UniRef50_A6LQP5: NLP/P60 protein|g__Clostridium.s__Clostridium_beijerinckii	6.6822989667
+UniRef50_E1ZV58: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial	6.6822873527
+UniRef50_E1ZV58: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6822873527
+UniRef50_A7I616: Imidazole glycerol phosphate synthase subunit HisF	6.6811307594
+UniRef50_A7I616: Imidazole glycerol phosphate synthase subunit HisF|g__Clostridium.s__Clostridium_beijerinckii	3.4364261168
+UniRef50_A7I616: Imidazole glycerol phosphate synthase subunit HisF|g__Propionibacterium.s__Propionibacterium_acnes	3.0032257702
+UniRef50_A7I616: Imidazole glycerol phosphate synthase subunit HisF|unclassified	0.2414788724
+UniRef50_W1MWT9	6.6810472299
+UniRef50_W1MWT9|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6810472299
+UniRef50_W1MFG6: Sulfite reductase	6.6803048475
+UniRef50_W1MFG6: Sulfite reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6803048475
+UniRef50_UPI000476C7CF: antibiotic biosynthesis monooxygenase	6.6800461787
+UniRef50_UPI000476C7CF: antibiotic biosynthesis monooxygenase|unclassified	6.6800461787
+UniRef50_B0KJX0: DNA polymerase III, delta subunit	6.6795613829
+UniRef50_B0KJX0: DNA polymerase III, delta subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6795613829
+UniRef50_R6K577: Tagatose-6-phosphate kinase	6.6791679608
+UniRef50_R6K577: Tagatose-6-phosphate kinase|g__Clostridium.s__Clostridium_beijerinckii	6.6791679608
+UniRef50_I7ESZ9: Protein RpsU	6.6779638342
+UniRef50_I7ESZ9: Protein RpsU|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.6779638342
+UniRef50_A1TJ50: LemA family protein	6.6765420988
+UniRef50_A1TJ50: LemA family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4935064935
+UniRef50_A1TJ50: LemA family protein|unclassified	0.1830356053
+UniRef50_S5CLP0: Zn-dependent hydrolase, including glyoxylase	6.6760948057
+UniRef50_S5CLP0: Zn-dependent hydrolase, including glyoxylase|g__Acinetobacter.s__Acinetobacter_baumannii	6.6760948057
+UniRef50_H7QP44: Thioesterase superfamily protein	6.6741501773
+UniRef50_H7QP44: Thioesterase superfamily protein|unclassified	6.6741501773
+UniRef50_K5P8P3	6.6727156487
+UniRef50_K5P8P3|unclassified	6.6727156487
+UniRef50_V5BVX1	6.6717481101
+UniRef50_V5BVX1|unclassified	6.6717481101
+UniRef50_T2L9X7	6.6714046193
+UniRef50_T2L9X7|unclassified	6.6714046193
+UniRef50_L1FW84: Phage tail-collar fiber family protein (Fragment)	6.6708346354
+UniRef50_L1FW84: Phage tail-collar fiber family protein (Fragment)|unclassified	6.6708346354
+UniRef50_A6VEK9	6.6690067060
+UniRef50_A6VEK9|unclassified	6.6690067060
+UniRef50_R5IVN1	6.6671299273
+UniRef50_R5IVN1|unclassified	6.6671299273
+UniRef50_A0A023RS70	6.6666666667
+UniRef50_A0A023RS70|g__Acinetobacter.s__Acinetobacter_baumannii	6.6666666667
+UniRef50_A4WVX1: Hpt protein	6.6666666667
+UniRef50_A4WVX1: Hpt protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.6666666667
+UniRef50_B9KLH6	6.6666666667
+UniRef50_B9KLH6|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.6666666667
+UniRef50_D7ZQF1	6.6666666667
+UniRef50_D7ZQF1|g__Escherichia.s__Escherichia_coli	6.6666666667
+UniRef50_H0DYK0: Transporter, major facilitator family protein	6.6666666667
+UniRef50_H0DYK0: Transporter, major facilitator family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	6.6666666667
+UniRef50_I3F4U4	6.6666666667
+UniRef50_I3F4U4|g__Staphylococcus.s__Staphylococcus_aureus	6.6666666667
+UniRef50_M9S180	6.6666666667
+UniRef50_M9S180|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6666666667
+UniRef50_Q8DXI9: Prophage LambdaSa2, transcriptional regulator, Cro/CI family	6.6666666667
+UniRef50_Q8DXI9: Prophage LambdaSa2, transcriptional regulator, Cro/CI family|g__Streptococcus.s__Streptococcus_agalactiae	6.6666666667
+UniRef50_W1U742: Deoxyribonuclease Pyrimidine dimer	6.6666666667
+UniRef50_W1U742: Deoxyribonuclease Pyrimidine dimer|unclassified	6.6666666667
+UniRef50_W8KKK4	6.6666666667
+UniRef50_W8KKK4|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6666666667
+UniRef50_A0A023WVI0: Aldehyde dehydrogenase	6.6665802879
+UniRef50_A0A023WVI0: Aldehyde dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6665802879
+UniRef50_M5ACV5: Protein LemA	6.6665766007
+UniRef50_M5ACV5: Protein LemA|g__Streptococcus.s__Streptococcus_agalactiae	6.5573770492
+UniRef50_M5ACV5: Protein LemA|unclassified	0.1091995515
+UniRef50_G7M5H1	6.6664647726
+UniRef50_G7M5H1|g__Clostridium.s__Clostridium_beijerinckii	6.6664647726
+UniRef50_Q9ZJG8: Membrane protein insertase YidC	6.6658789145
+UniRef50_Q9ZJG8: Membrane protein insertase YidC|g__Helicobacter.s__Helicobacter_pylori	6.6658789145
+UniRef50_I7EDS2	6.6658270058
+UniRef50_I7EDS2|unclassified	6.6658270058
+UniRef50_F4T079: Exodeoxyribonuclease 8 (Exodeoxyribonuclease VIII) (EXOVIII)	6.6644556236
+UniRef50_F4T079: Exodeoxyribonuclease 8 (Exodeoxyribonuclease VIII) (EXOVIII)|g__Escherichia.s__Escherichia_coli	6.6644556236
+UniRef50_A5UP88	6.6643317183
+UniRef50_A5UP88|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.6643317183
+UniRef50_A0A023RVX8: Protein TniQ	6.6624307122
+UniRef50_A0A023RVX8: Protein TniQ|g__Acinetobacter.s__Acinetobacter_baumannii	6.6624307122
+UniRef50_P0A9A4: Ferritin-like protein 2	6.6618366480
+UniRef50_P0A9A4: Ferritin-like protein 2|g__Escherichia.s__Escherichia_coli	6.6618366480
+UniRef50_F4DU59: Protein-disulfide isomerase-like protein	6.6615450605
+UniRef50_F4DU59: Protein-disulfide isomerase-like protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6615450605
+UniRef50_M9S457: Siderophore receptor	6.6610445044
+UniRef50_M9S457: Siderophore receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6610445044
+UniRef50_G7LXK3: Methyl-accepting chemotaxis sensory transducer with Cache sensor	6.6608783663
+UniRef50_G7LXK3: Methyl-accepting chemotaxis sensory transducer with Cache sensor|g__Clostridium.s__Clostridium_beijerinckii	6.6608783663
+UniRef50_A6V2J2	6.6608504801
+UniRef50_A6V2J2|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5363456549
+UniRef50_A6V2J2|unclassified	0.1245048252
+UniRef50_Q932N6	6.6607924995
+UniRef50_Q932N6|unclassified	6.6607924995
+UniRef50_A6LYF9: HAD-superfamily hydrolase, subfamily IA, variant 1	6.6595744681
+UniRef50_A6LYF9: HAD-superfamily hydrolase, subfamily IA, variant 1|g__Clostridium.s__Clostridium_beijerinckii	6.6595744681
+UniRef50_A1U4C6: tRNA dimethylallyltransferase	6.6592777376
+UniRef50_A1U4C6: tRNA dimethylallyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6153525014
+UniRef50_A1U4C6: tRNA dimethylallyltransferase|unclassified	0.0439252362
+UniRef50_J7R5Q9	6.6534040672
+UniRef50_J7R5Q9|g__Escherichia.s__Escherichia_coli	6.6534040672
+UniRef50_V5SVZ8	6.6526554033
+UniRef50_V5SVZ8|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6526554033
+UniRef50_R9Z9R9	6.6501502661
+UniRef50_R9Z9R9|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2037049375
+UniRef50_R9Z9R9|unclassified	0.4464453286
+UniRef50_E2ZXQ3	6.6493222072
+UniRef50_E2ZXQ3|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6493222072
+UniRef50_E6C679	6.6490462734
+UniRef50_E6C679|g__Propionibacterium.s__Propionibacterium_acnes	6.4634019004
+UniRef50_E6C679|unclassified	0.1856443730
+UniRef50_W0HBF0	6.6480820912
+UniRef50_W0HBF0|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6480820912
+UniRef50_UPI0002BB164C: hypothetical protein, partial	6.6471418520
+UniRef50_UPI0002BB164C: hypothetical protein, partial|unclassified	6.6471418520
+UniRef50_Q2T3V8: Aminotransferase, class III	6.6466067871
+UniRef50_Q2T3V8: Aminotransferase, class III|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6466067871
+UniRef50_A7MHL5	6.6434340365
+UniRef50_A7MHL5|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6434340365
+UniRef50_UPI000474A2DB: MarR family transcriptional regulator	6.6428488799
+UniRef50_UPI000474A2DB: MarR family transcriptional regulator|unclassified	6.6428488799
+UniRef50_Q9I7A3	6.6428447636
+UniRef50_Q9I7A3|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6428447636
+UniRef50_K7RW82: Inositol monophosphatase family protein	6.6401462408
+UniRef50_K7RW82: Inositol monophosphatase family protein|g__Propionibacterium.s__Propionibacterium_acnes	6.6401462408
+UniRef50_M9RZW6: Glutathione S-transferase	6.6390178889
+UniRef50_M9RZW6: Glutathione S-transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6390178889
+UniRef50_UPI0004775C52: hypothetical protein	6.6383967595
+UniRef50_UPI0004775C52: hypothetical protein|unclassified	6.6383967595
+UniRef50_Q9HXC0	6.6373940397
+UniRef50_Q9HXC0|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6373940397
+UniRef50_E1VQ96	6.6339644249
+UniRef50_E1VQ96|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6339644249
+UniRef50_W4TT30	6.6336633663
+UniRef50_W4TT30|unclassified	6.6336633663
+UniRef50_F9YYP8: Pyridoxal kinase	6.6336460593
+UniRef50_F9YYP8: Pyridoxal kinase|g__Propionibacterium.s__Propionibacterium_acnes	6.6336460593
+UniRef50_O33948: Catechol 1,2-dioxygenase 1	6.6330675312
+UniRef50_O33948: Catechol 1,2-dioxygenase 1|g__Acinetobacter.s__Acinetobacter_baumannii	6.6330675312
+UniRef50_C3KCS9: Lipid II flippase FtsW	6.6327429396
+UniRef50_C3KCS9: Lipid II flippase FtsW|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6327429396
+UniRef50_UPI000465DC95: GCN5 family acetyltransferase	6.6321077074
+UniRef50_UPI000465DC95: GCN5 family acetyltransferase|unclassified	6.6321077074
+UniRef50_Q8Z9U9: DNA replication and repair protein RecF	6.6320315392
+UniRef50_Q8Z9U9: DNA replication and repair protein RecF|g__Escherichia.s__Escherichia_coli	6.6320315392
+UniRef50_W0H5K7: Serine/threonine protein kinase	6.6309497249
+UniRef50_W0H5K7: Serine/threonine protein kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6309497249
+UniRef50_P77802: Probable outer membrane usher protein EcpC	6.6302547519
+UniRef50_P77802: Probable outer membrane usher protein EcpC|g__Escherichia.s__Escherichia_coli	6.6302547519
+UniRef50_D4HA42	6.6299518119
+UniRef50_D4HA42|g__Propionibacterium.s__Propionibacterium_acnes	6.6299518119
+UniRef50_P0ABY0: Flagellar protein FliL	6.6287878788
+UniRef50_P0ABY0: Flagellar protein FliL|g__Escherichia.s__Escherichia_coli	6.6287878788
+UniRef50_A6LSR6: Ribosomal protein S12 methylthiotransferase RimO	6.6287685770
+UniRef50_A6LSR6: Ribosomal protein S12 methylthiotransferase RimO|g__Clostridium.s__Clostridium_beijerinckii	6.6287685770
+UniRef50_B2HWA5	6.6283992759
+UniRef50_B2HWA5|g__Acinetobacter.s__Acinetobacter_baumannii	6.6283992759
+UniRef50_UPI000262920F: ATP-dependent Clp protease adapter protein clpS	6.6272088052
+UniRef50_UPI000262920F: ATP-dependent Clp protease adapter protein clpS|unclassified	6.6272088052
+UniRef50_A6LPH0	6.6262487528
+UniRef50_A6LPH0|g__Clostridium.s__Clostridium_beijerinckii	6.6262487528
+UniRef50_A6VBN2	6.6257884652
+UniRef50_A6VBN2|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6257884652
+UniRef50_F0IYA9: Fis family transcriptional regulator	6.6257565602
+UniRef50_F0IYA9: Fis family transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.6257565602
+UniRef50_W0E372: Sensor histidine kinase	6.6255520032
+UniRef50_W0E372: Sensor histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6255520032
+UniRef50_F3U1Z7	6.6249286950
+UniRef50_F3U1Z7|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.0936430673
+UniRef50_F3U1Z7|unclassified	2.5312856277
+UniRef50_C8U5G9: FMN reductase (NADH) RutF	6.6247682725
+UniRef50_C8U5G9: FMN reductase (NADH) RutF|g__Escherichia.s__Escherichia_coli	5.4621496111
+UniRef50_C8U5G9: FMN reductase (NADH) RutF|unclassified	1.1626186613
+UniRef50_P40710: Lipoprotein NlpE	6.6247137139
+UniRef50_P40710: Lipoprotein NlpE|g__Escherichia.s__Escherichia_coli	6.6247137139
+UniRef50_F0RPV6: NLPA lipoprotein	6.6239864637
+UniRef50_F0RPV6: NLPA lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2347539117
+UniRef50_F0RPV6: NLPA lipoprotein|g__Deinococcus.s__Deinococcus_radiodurans	1.3351134846
+UniRef50_F0RPV6: NLPA lipoprotein|unclassified	0.0541190674
+UniRef50_Q52463: Glycosyltransferase alg8	6.6236926700
+UniRef50_Q52463: Glycosyltransferase alg8|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6236926700
+UniRef50_A0A032M153	6.6225165563
+UniRef50_A0A032M153|unclassified	6.6225165563
+UniRef50_C6SPQ1	6.6225165563
+UniRef50_C6SPQ1|g__Streptococcus.s__Streptococcus_mutans	6.6225165563
+UniRef50_E7UM91	6.6225165563
+UniRef50_E7UM91|g__Escherichia.s__Escherichia_coli	6.6225165563
+UniRef50_I0C5S1	6.6225165563
+UniRef50_I0C5S1|unclassified	6.6225165563
+UniRef50_P69976: Yop proteins translocation protein L	6.6225165563
+UniRef50_P69976: Yop proteins translocation protein L|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6225165563
+UniRef50_Q8X9H7	6.6225165563
+UniRef50_Q8X9H7|g__Escherichia.s__Escherichia_coli	6.6225165563
+UniRef50_UPI00037EFB09: hypothetical protein	6.6225165563
+UniRef50_UPI00037EFB09: hypothetical protein|g__Streptococcus.s__Streptococcus_mutans	6.6225165563
+UniRef50_V5SXZ0	6.6225165563
+UniRef50_V5SXZ0|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6225165563
+UniRef50_W1Y5W9: Dehydrogenase, myo-inositol 2-dehydrogenase (Fragment)	6.6225165563
+UniRef50_W1Y5W9: Dehydrogenase, myo-inositol 2-dehydrogenase (Fragment)|unclassified	6.6225165563
+UniRef50_M9R624: Cystathionine/methionine metabolism pyridoxal phosphate-dependent enzyme	6.6210927958
+UniRef50_M9R624: Cystathionine/methionine metabolism pyridoxal phosphate-dependent enzyme|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.6210927958
+UniRef50_Q9I0Q0: 2-heptyl-3-hydroxy-4(1H)-quinolone synthase	6.6199455372
+UniRef50_Q9I0Q0: 2-heptyl-3-hydroxy-4(1H)-quinolone synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6199455372
+UniRef50_C5XM13	6.6175294596
+UniRef50_C5XM13|unclassified	6.6175294596
+UniRef50_K7RLI9: Myo-inositol catabolism protein	6.6144278263
+UniRef50_K7RLI9: Myo-inositol catabolism protein|g__Propionibacterium.s__Propionibacterium_acnes	6.6144278263
+UniRef50_E6MX89	6.6134171901
+UniRef50_E6MX89|g__Neisseria.s__Neisseria_meningitidis	5.6497175141
+UniRef50_E6MX89|unclassified	0.9636996760
+UniRef50_A6LZF4: Virginiamycin B lyase	6.6110983397
+UniRef50_A6LZF4: Virginiamycin B lyase|g__Clostridium.s__Clostridium_beijerinckii	6.6110983397
+UniRef50_F5X4D0: GNAT family acetyltransferase	6.6110586268
+UniRef50_F5X4D0: GNAT family acetyltransferase|g__Streptococcus.s__Streptococcus_mutans	6.6110586268
+UniRef50_S1HD40: Inner membrane protein ybhI	6.6102580767
+UniRef50_S1HD40: Inner membrane protein ybhI|g__Escherichia.s__Escherichia_coli	6.6102580767
+UniRef50_UPI00036454A8: hypothetical protein	6.6092978027
+UniRef50_UPI00036454A8: hypothetical protein|unclassified	6.6092978027
+UniRef50_F8GY06: Endoribonuclease L-PSP	6.6076455294
+UniRef50_F8GY06: Endoribonuclease L-PSP|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.6076455294
+UniRef50_W0YWD4: Sensor/response regulator hybrid	6.6071268133
+UniRef50_W0YWD4: Sensor/response regulator hybrid|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6071268133
+UniRef50_F4GAH1: Transposase IS4 family protein	6.6068492599
+UniRef50_F4GAH1: Transposase IS4 family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.9703718907
+UniRef50_F4GAH1: Transposase IS4 family protein|unclassified	0.6364773692
+UniRef50_Q9HTE2	6.6061522235
+UniRef50_Q9HTE2|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6061522235
+UniRef50_Y1B2H8	6.6058147401
+UniRef50_Y1B2H8|unclassified	6.6058147401
+UniRef50_D7GCL3: Cation transport protein	6.6042821389
+UniRef50_D7GCL3: Cation transport protein|g__Propionibacterium.s__Propionibacterium_acnes	6.6042821389
+UniRef50_Q51392: Probable alginate O-acetylase AlgI	6.6038044976
+UniRef50_Q51392: Probable alginate O-acetylase AlgI|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.6038044976
+UniRef50_Q9HVK0	6.6036302116
+UniRef50_Q9HVK0|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4593711586
+UniRef50_Q9HVK0|unclassified	0.1442590530
+UniRef50_A0A029NFD4: Alcohol dehydrogenase, propanol-preferring	6.6023693503
+UniRef50_A0A029NFD4: Alcohol dehydrogenase, propanol-preferring|g__Escherichia.s__Escherichia_coli	6.6023693503
+UniRef50_A6M1Q7: D-galactose-binding periplasmic protein	6.6009002244
+UniRef50_A6M1Q7: D-galactose-binding periplasmic protein|g__Clostridium.s__Clostridium_beijerinckii	6.6009002244
+UniRef50_K7SLE8: Acyl-CoA thioester hydrolase, YbgC/YbaW family	6.6003664554
+UniRef50_K7SLE8: Acyl-CoA thioester hydrolase, YbgC/YbaW family|g__Propionibacterium.s__Propionibacterium_acnes	6.6003664554
+UniRef50_L1K5S4	6.5997122468
+UniRef50_L1K5S4|unclassified	6.5997122468
+UniRef50_U5NMM5	6.5990406807
+UniRef50_U5NMM5|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.8990130664
+UniRef50_U5NMM5|unclassified	0.7000276143
+UniRef50_Q9I596: Neutral ceramidase	6.5969784541
+UniRef50_Q9I596: Neutral ceramidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5969784541
+UniRef50_Q8DUL1	6.5968675519
+UniRef50_Q8DUL1|g__Streptococcus.s__Streptococcus_mutans	6.5968675519
+UniRef50_A1R3Q2: Oxidoreductase, short chain dehydrogenase/reductase family	6.5961836962
+UniRef50_A1R3Q2: Oxidoreductase, short chain dehydrogenase/reductase family|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.5961836962
+UniRef50_B2TMH9: Autolytic lysozyme	6.5927927348
+UniRef50_B2TMH9: Autolytic lysozyme|g__Clostridium.s__Clostridium_beijerinckii	6.5927927348
+UniRef50_G7M6S5: Peptidase M16 domain protein	6.5917723889
+UniRef50_G7M6S5: Peptidase M16 domain protein|g__Clostridium.s__Clostridium_beijerinckii	6.5917723889
+UniRef50_B2V3W1: Permease	6.5907211983
+UniRef50_B2V3W1: Permease|g__Clostridium.s__Clostridium_beijerinckii	6.5907211983
+UniRef50_T3IDK7: Pyridoxal-phosphate dependent enzyme family protein	6.5905562854
+UniRef50_T3IDK7: Pyridoxal-phosphate dependent enzyme family protein|g__Propionibacterium.s__Propionibacterium_acnes	6.5905562854
+UniRef50_L8ANA9	6.5895256177
+UniRef50_L8ANA9|unclassified	6.5895256177
+UniRef50_A1VES8: Xanthine phosphoribosyltransferase	6.5887569954
+UniRef50_A1VES8: Xanthine phosphoribosyltransferase|g__Escherichia.s__Escherichia_coli	6.5887569954
+UniRef50_K9WHG2	6.5874622497
+UniRef50_K9WHG2|unclassified	6.5874622497
+UniRef50_S9SJ05	6.5856562602
+UniRef50_S9SJ05|unclassified	6.5856562602
+UniRef50_K4PRQ0: Peptidoglycan GlcNAc deacetylase	6.5855117650
+UniRef50_K4PRQ0: Peptidoglycan GlcNAc deacetylase|g__Streptococcus.s__Streptococcus_agalactiae	6.5855117650
+UniRef50_UPI000469F81E: hypothetical protein	6.5830110158
+UniRef50_UPI000469F81E: hypothetical protein|unclassified	6.5830110158
+UniRef50_A6LT57	6.5819804871
+UniRef50_A6LT57|g__Clostridium.s__Clostridium_beijerinckii	6.5819804871
+UniRef50_A0A017JTF6: Autotransporter (AT) family porin	6.5789473684
+UniRef50_A0A017JTF6: Autotransporter (AT) family porin|g__Escherichia.s__Escherichia_coli	6.5789473684
+UniRef50_A0A023YQ57	6.5789473684
+UniRef50_A0A023YQ57|g__Escherichia.s__Escherichia_coli	6.5789473684
+UniRef50_B6ZNU0: DnaJ domain protein	6.5789473684
+UniRef50_B6ZNU0: DnaJ domain protein|g__Escherichia.s__Escherichia_coli	6.5789473684
+UniRef50_D8CA09	6.5789473684
+UniRef50_D8CA09|g__Escherichia.s__Escherichia_coli	6.5789473684
+UniRef50_K1XAY7	6.5789473684
+UniRef50_K1XAY7|unclassified	6.5789473684
+UniRef50_P0ABF5: Ethanolamine utilization protein EutM	6.5789473684
+UniRef50_P0ABF5: Ethanolamine utilization protein EutM|g__Escherichia.s__Escherichia_coli	6.5789473684
+UniRef50_P68648: Ferredoxin-like protein FixX	6.5789473684
+UniRef50_P68648: Ferredoxin-like protein FixX|g__Escherichia.s__Escherichia_coli	6.5789473684
+UniRef50_R8AI52	6.5789473684
+UniRef50_R8AI52|unclassified	6.5789473684
+UniRef50_W8U0I4	6.5789473684
+UniRef50_W8U0I4|g__Escherichia.s__Escherichia_coli	6.5789473684
+UniRef50_C6HWR1: DNA (Cytosine-5-)-methyltransferase	6.5789473684
+UniRef50_C6HWR1: DNA (Cytosine-5-)-methyltransferase|g__Escherichia.s__Escherichia_coli	6.5789473684
+UniRef50_A8BIH9	6.5788480733
+UniRef50_A8BIH9|unclassified	6.5788480733
+UniRef50_T4EWY4: DEAD/DEAH box helicase family protein	6.5783883127
+UniRef50_T4EWY4: DEAD/DEAH box helicase family protein|g__Clostridium.s__Clostridium_beijerinckii	6.5783883127
+UniRef50_F0MS68: Outer membrane protein OpcA	6.5765560104
+UniRef50_F0MS68: Outer membrane protein OpcA|g__Neisseria.s__Neisseria_meningitidis	6.5765560104
+UniRef50_W8QUX6: Transcriptional regulator PdhR	6.5760874105
+UniRef50_W8QUX6: Transcriptional regulator PdhR|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5760874105
+UniRef50_A7FMJ5: Autoinducer 2 kinase LsrK	6.5760223404
+UniRef50_A7FMJ5: Autoinducer 2 kinase LsrK|g__Escherichia.s__Escherichia_coli	6.4925886858
+UniRef50_A7FMJ5: Autoinducer 2 kinase LsrK|unclassified	0.0834336546
+UniRef50_A0A024L3Z4: N-acetylneuraminic acid outer membrane channel	6.5689933626
+UniRef50_A0A024L3Z4: N-acetylneuraminic acid outer membrane channel|g__Escherichia.s__Escherichia_coli	6.5689933626
+UniRef50_UPI0003EB4B0A: hypothetical protein	6.5678939588
+UniRef50_UPI0003EB4B0A: hypothetical protein|unclassified	6.5678939588
+UniRef50_B9KSU0	6.5672218830
+UniRef50_B9KSU0|unclassified	6.5672218830
+UniRef50_O68045: DNA polymerase III subunit epsilon-like protein	6.5647609084
+UniRef50_O68045: DNA polymerase III subunit epsilon-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.5647609084
+UniRef50_F0RPF2	6.5630917542
+UniRef50_F0RPF2|g__Deinococcus.s__Deinococcus_radiodurans	6.5630917542
+UniRef50_UPI00036591B1: amino acid ABC transporter permease	6.5626090347
+UniRef50_UPI00036591B1: amino acid ABC transporter permease|unclassified	6.5626090347
+UniRef50_R7PVT8	6.5625262805
+UniRef50_R7PVT8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.5625262805
+UniRef50_L0LQZ5	6.5610353976
+UniRef50_L0LQZ5|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5610353976
+UniRef50_F2AE05	6.5595801217
+UniRef50_F2AE05|unclassified	6.5595801217
+UniRef50_G0DS16: LacI family transcriptional regulator	6.5582391421
+UniRef50_G0DS16: LacI family transcriptional regulator|g__Propionibacterium.s__Propionibacterium_acnes	6.5582391421
+UniRef50_C1CXG7: 30S ribosomal protein S10	6.5574475404
+UniRef50_C1CXG7: 30S ribosomal protein S10|g__Streptococcus.s__Streptococcus_mutans	6.5574475404
+UniRef50_V9R1Z5: Chemotaxis protein CheY	6.5519747167
+UniRef50_V9R1Z5: Chemotaxis protein CheY|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5519747167
+UniRef50_A3PNU0: Transcriptional regulator, LacI family	6.5511057234
+UniRef50_A3PNU0: Transcriptional regulator, LacI family|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.5511057234
+UniRef50_M4K367: TetR family transcriptional regulator	6.5501232503
+UniRef50_M4K367: TetR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5501232503
+UniRef50_E5AQY1: N-SUCCINYL-L,L-DAP AMINOTRANSFERASE (EC 2.6.1.17)	6.5477461647
+UniRef50_E5AQY1: N-SUCCINYL-L,L-DAP AMINOTRANSFERASE (EC 2.6.1.17)|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5477461647
+UniRef50_I6DU93	6.5451550401
+UniRef50_I6DU93|unclassified	6.5451550401
+UniRef50_X4X2W1	6.5420161790
+UniRef50_X4X2W1|g__Escherichia.s__Escherichia_coli	6.5420161790
+UniRef50_T2HA74: Polysaccharide biosynthesis protein WbpM	6.5369362573
+UniRef50_T2HA74: Polysaccharide biosynthesis protein WbpM|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5369362573
+UniRef50_W6SQC5	6.5366592955
+UniRef50_W6SQC5|unclassified	6.5366592955
+UniRef50_A3PK49	6.5359477124
+UniRef50_A3PK49|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.5359477124
+UniRef50_A7X5D6: 50S ribosomal protein L30	6.5359477124
+UniRef50_A7X5D6: 50S ribosomal protein L30|g__Staphylococcus.s__Staphylococcus_epidermidis	6.5359477124
+UniRef50_B6IBL9	6.5359477124
+UniRef50_B6IBL9|g__Escherichia.s__Escherichia_coli	6.5359477124
+UniRef50_D0ZX68	6.5359477124
+UniRef50_D0ZX68|g__Escherichia.s__Escherichia_coli	6.5359477124
+UniRef50_D1R335	6.5359477124
+UniRef50_D1R335|g__Staphylococcus.s__Staphylococcus_aureus	6.5359477124
+UniRef50_D6SF04	6.5359477124
+UniRef50_D6SF04|g__Staphylococcus.s__Staphylococcus_aureus	6.5359477124
+UniRef50_J1A6N3	6.5359477124
+UniRef50_J1A6N3|unclassified	6.5359477124
+UniRef50_K0CAV2: Propeptide, PepSY amd peptidase M4	6.5359477124
+UniRef50_K0CAV2: Propeptide, PepSY amd peptidase M4|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5359477124
+UniRef50_K2G0Q2	6.5359477124
+UniRef50_K2G0Q2|unclassified	6.5359477124
+UniRef50_Q8DSW9	6.5359477124
+UniRef50_Q8DSW9|g__Streptococcus.s__Streptococcus_mutans	6.5359477124
+UniRef50_U5MRM3	6.5359477124
+UniRef50_U5MRM3|g__Clostridium.s__Clostridium_beijerinckii	6.5359477124
+UniRef50_A6TLS6: Phosphoribosylglycinamide formyltransferase	6.5346790890
+UniRef50_A6TLS6: Phosphoribosylglycinamide formyltransferase|g__Clostridium.s__Clostridium_beijerinckii	6.5346790890
+UniRef50_A9T869: Predicted protein	6.5307279295
+UniRef50_A9T869: Predicted protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5307279295
+UniRef50_J9YQ12: Surface antigen-like protein	6.5295552640
+UniRef50_J9YQ12: Surface antigen-like protein|g__Streptococcus.s__Streptococcus_agalactiae	6.5295552640
+UniRef50_F4A4S9: Transcriptional regulator, GntR family, putative	6.5290519878
+UniRef50_F4A4S9: Transcriptional regulator, GntR family, putative|g__Clostridium.s__Clostridium_beijerinckii	6.5290519878
+UniRef50_A4G3E6: Isoleucine--tRNA ligase	6.5289079171
+UniRef50_A4G3E6: Isoleucine--tRNA ligase|g__Escherichia.s__Escherichia_coli	6.5289079171
+UniRef50_U5MMF7: Penicillin amidase	6.5271460306
+UniRef50_U5MMF7: Penicillin amidase|g__Clostridium.s__Clostridium_beijerinckii	6.5271460306
+UniRef50_C6JSH1	6.5264574262
+UniRef50_C6JSH1|unclassified	6.5264574262
+UniRef50_Q3KHK6: GntR family transcriptional regulator	6.5240792051
+UniRef50_Q3KHK6: GntR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5240792051
+UniRef50_Q9ZMS7: Protein RecA	6.5238488900
+UniRef50_Q9ZMS7: Protein RecA|g__Helicobacter.s__Helicobacter_pylori	6.5238488900
+UniRef50_Q8XIQ9: Cobalt-dependent inorganic pyrophosphatase	6.5231529402
+UniRef50_Q8XIQ9: Cobalt-dependent inorganic pyrophosphatase|g__Clostridium.s__Clostridium_beijerinckii	6.5231529402
+UniRef50_B9KQH0: Surface presentation of antigens (SPOA) protein	6.5221813489
+UniRef50_B9KQH0: Surface presentation of antigens (SPOA) protein|unclassified	6.5221813489
+UniRef50_J9YRF9	6.5214590143
+UniRef50_J9YRF9|g__Streptococcus.s__Streptococcus_agalactiae	6.5214590143
+UniRef50_C8U5H2: Putative aminoacrylate peracid reductase RutC	6.5201738417
+UniRef50_C8U5H2: Putative aminoacrylate peracid reductase RutC|g__Escherichia.s__Escherichia_coli	4.0650406504
+UniRef50_C8U5H2: Putative aminoacrylate peracid reductase RutC|unclassified	2.4551331912
+UniRef50_P44700	6.5195465842
+UniRef50_P44700|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3627725142
+UniRef50_P44700|unclassified	0.1567740700
+UniRef50_A6VDM0	6.5193220577
+UniRef50_A6VDM0|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5193220577
+UniRef50_U5MLY8: Periplasmic metal-binding protein	6.5182321325
+UniRef50_U5MLY8: Periplasmic metal-binding protein|g__Clostridium.s__Clostridium_beijerinckii	6.5182321325
+UniRef50_W8UIH3: Stage V sporulation protein R	6.5182119461
+UniRef50_W8UIH3: Stage V sporulation protein R|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4565183727
+UniRef50_W8UIH3: Stage V sporulation protein R|unclassified	0.0616935734
+UniRef50_E7B1W7: Zinc ABC transporter, inner membrane permease protein ZnuB	6.5178761430
+UniRef50_E7B1W7: Zinc ABC transporter, inner membrane permease protein ZnuB|g__Neisseria.s__Neisseria_meningitidis	6.5178761430
+UniRef50_V5NK98	6.5169186818
+UniRef50_V5NK98|g__Helicobacter.s__Helicobacter_pylori	6.5169186818
+UniRef50_A7ZXP1: Apo-citrate lyase phosphoribosyl-dephospho-CoA transferase	6.5165504679
+UniRef50_A7ZXP1: Apo-citrate lyase phosphoribosyl-dephospho-CoA transferase|g__Escherichia.s__Escherichia_coli	6.5165504679
+UniRef50_U6EZC2: Transcriptional regulatory component of sensorytransduction system	6.5160642570
+UniRef50_U6EZC2: Transcriptional regulatory component of sensorytransduction system|g__Clostridium.s__Clostridium_beijerinckii	6.5160642570
+UniRef50_Q2YVA6	6.5149344793
+UniRef50_Q2YVA6|g__Staphylococcus.s__Staphylococcus_aureus	6.5149344793
+UniRef50_B9KU70: Periplasmic solute binding protein	6.5138040680
+UniRef50_B9KU70: Periplasmic solute binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.5138040680
+UniRef50_P44305: Ribosomal-protein-alanine acetyltransferase	6.5135928209
+UniRef50_P44305: Ribosomal-protein-alanine acetyltransferase|g__Escherichia.s__Escherichia_coli	4.9019607843
+UniRef50_P44305: Ribosomal-protein-alanine acetyltransferase|unclassified	1.6116320365
+UniRef50_A7X4A3	6.5129044291
+UniRef50_A7X4A3|g__Staphylococcus.s__Staphylococcus_aureus	6.5129044291
+UniRef50_Q9Z3U1: DNA translocase FtsK	6.5128153695
+UniRef50_Q9Z3U1: DNA translocase FtsK|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5128153695
+UniRef50_Q1QJ51: Plasmid pRiA4b ORF-3-like protein	6.5122392731
+UniRef50_Q1QJ51: Plasmid pRiA4b ORF-3-like protein|unclassified	6.5122392731
+UniRef50_V0U5W2: Cyclic diguanylate phosphodiesterase domain protein	6.5121814163
+UniRef50_V0U5W2: Cyclic diguanylate phosphodiesterase domain protein|g__Escherichia.s__Escherichia_coli	6.5121814163
+UniRef50_F0QNU4: 1-acyl-sn-glycerol-3-phosphate acyltransferase	6.5116397417
+UniRef50_F0QNU4: 1-acyl-sn-glycerol-3-phosphate acyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	6.5116397417
+UniRef50_F4DM00: Glutamate dehydrogenase	6.5112592681
+UniRef50_F4DM00: Glutamate dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5112592681
+UniRef50_A6LQ13: Peptidase U32	6.5109432709
+UniRef50_A6LQ13: Peptidase U32|g__Clostridium.s__Clostridium_beijerinckii	6.5109432709
+UniRef50_F0PD68: Fructokinase	6.5105447362
+UniRef50_F0PD68: Fructokinase|g__Clostridium.s__Clostridium_beijerinckii	6.5105447362
+UniRef50_Q8XYX1: tRNA-dihydrouridine synthase C	6.5103009704
+UniRef50_Q8XYX1: tRNA-dihydrouridine synthase C|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.5103009704
+UniRef50_A5EUU4: Na(+)-translocating NADH-quinone reductase subunit E	6.5088852620
+UniRef50_A5EUU4: Na(+)-translocating NADH-quinone reductase subunit E|g__Neisseria.s__Neisseria_meningitidis	5.7471264368
+UniRef50_A5EUU4: Na(+)-translocating NADH-quinone reductase subunit E|unclassified	0.7617588253
+UniRef50_K4HJS6: Bacterioferritin comigratory protein	6.5076535665
+UniRef50_K4HJS6: Bacterioferritin comigratory protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.5076535665
+UniRef50_W1JK21	6.5028826459
+UniRef50_W1JK21|unclassified	6.5028826459
+UniRef50_R4Z8E0: GntR family transcriptional regulator	6.5019888191
+UniRef50_R4Z8E0: GntR family transcriptional regulator|g__Streptococcus.s__Streptococcus_agalactiae	6.5019888191
+UniRef50_T2ERS5: ThiS family protein	6.4989273834
+UniRef50_T2ERS5: ThiS family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4989273834
+UniRef50_B7H3M8: MotA/TolQ/ExbB proton channel family protein	6.4965599640
+UniRef50_B7H3M8: MotA/TolQ/ExbB proton channel family protein|g__Acinetobacter.s__Acinetobacter_baumannii	6.4965599640
+UniRef50_C6B4G4	6.4965409568
+UniRef50_C6B4G4|unclassified	6.4965409568
+UniRef50_X2NAE3	6.4945818483
+UniRef50_X2NAE3|g__Escherichia.s__Escherichia_coli	6.4945818483
+UniRef50_D3QEH4	6.4935064935
+UniRef50_D3QEH4|g__Staphylococcus.s__Staphylococcus_epidermidis	6.4935064935
+UniRef50_D8HEF5	6.4935064935
+UniRef50_D8HEF5|unclassified	6.4935064935
+UniRef50_E1HT62	6.4935064935
+UniRef50_E1HT62|g__Escherichia.s__Escherichia_coli	6.4935064935
+UniRef50_N7UL49	6.4935064935
+UniRef50_N7UL49|unclassified	6.4935064935
+UniRef50_Q2G2J6	6.4935064935
+UniRef50_Q2G2J6|unclassified	6.4935064935
+UniRef50_Q4TE71: Chromosome undetermined SCAF5612, whole genome shotgun sequence. (Fragment)	6.4935064935
+UniRef50_Q4TE71: Chromosome undetermined SCAF5612, whole genome shotgun sequence. (Fragment)|unclassified	6.4935064935
+UniRef50_U5NMZ2	6.4935064935
+UniRef50_U5NMZ2|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.4935064935
+UniRef50_UPI00037D91A9: hypothetical protein	6.4935064935
+UniRef50_UPI00037D91A9: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.4935064935
+UniRef50_W1GG79: CFA/I fimbrial auxiliary subunit	6.4935064935
+UniRef50_W1GG79: CFA/I fimbrial auxiliary subunit|g__Escherichia.s__Escherichia_coli	6.4935064935
+UniRef50_Z7R9A3	6.4935064935
+UniRef50_Z7R9A3|unclassified	6.4935064935
+UniRef50_Q0FV17: Phenol hydroxylase, putative	6.4931424773
+UniRef50_Q0FV17: Phenol hydroxylase, putative|unclassified	6.4931424773
+UniRef50_Q1CS39: Uroporphyrinogen III cosynthase	6.4924378527
+UniRef50_Q1CS39: Uroporphyrinogen III cosynthase|g__Helicobacter.s__Helicobacter_pylori	6.4924378527
+UniRef50_A6M334: Glycogen synthase	6.4908756448
+UniRef50_A6M334: Glycogen synthase|g__Clostridium.s__Clostridium_beijerinckii	6.4908756448
+UniRef50_M1MGS7: Polysaccharide deacetylase	6.4906569993
+UniRef50_M1MGS7: Polysaccharide deacetylase|g__Clostridium.s__Clostridium_beijerinckii	6.4906569993
+UniRef50_L3HWG0: Type VI secretion system Vgr family protein	6.4900173747
+UniRef50_L3HWG0: Type VI secretion system Vgr family protein|g__Escherichia.s__Escherichia_coli	6.4900173747
+UniRef50_G7LXC7: Glycoside hydrolase family 25	6.4886640791
+UniRef50_G7LXC7: Glycoside hydrolase family 25|g__Clostridium.s__Clostridium_beijerinckii	6.4886640791
+UniRef50_L8BL56	6.4880713778
+UniRef50_L8BL56|unclassified	6.4880713778
+UniRef50_A4VJG6: Lipid A biosynthesis lauroyl acyltransferase	6.4879887900
+UniRef50_A4VJG6: Lipid A biosynthesis lauroyl acyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4879887900
+UniRef50_U0D3S4	6.4864206434
+UniRef50_U0D3S4|g__Escherichia.s__Escherichia_coli	6.4864206434
+UniRef50_E1R075: FAD dependent oxidoreductase	6.4859767756
+UniRef50_E1R075: FAD dependent oxidoreductase|g__Clostridium.s__Clostridium_beijerinckii	6.4859767756
+UniRef50_K2AFG9	6.4858694859
+UniRef50_K2AFG9|unclassified	6.4858694859
+UniRef50_A5IQ01	6.4839684405
+UniRef50_A5IQ01|unclassified	3.3783783784
+UniRef50_A5IQ01|g__Staphylococcus.s__Staphylococcus_aureus	3.1055900621
+UniRef50_UPI00035CFCFD: gas vesicle protein GvpK	6.4819545740
+UniRef50_UPI00035CFCFD: gas vesicle protein GvpK|unclassified	6.4819545740
+UniRef50_F4N1U2	6.4790419791
+UniRef50_F4N1U2|unclassified	6.4790419791
+UniRef50_Q88WV2: Transcriptional repressor NrdR	6.4776784001
+UniRef50_Q88WV2: Transcriptional repressor NrdR|g__Streptococcus.s__Streptococcus_agalactiae	6.4776784001
+UniRef50_Q9LHH7: Bifunctional protein FolD 2	6.4768325840
+UniRef50_Q9LHH7: Bifunctional protein FolD 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2906372724
+UniRef50_Q9LHH7: Bifunctional protein FolD 2|unclassified	0.1861953116
+UniRef50_A7FD15: Glutamate racemase	6.4759374684
+UniRef50_A7FD15: Glutamate racemase|g__Escherichia.s__Escherichia_coli	6.4759374684
+UniRef50_UPI00047A30AA: hypothetical protein	6.4755694847
+UniRef50_UPI00047A30AA: hypothetical protein|unclassified	6.4755694847
+UniRef50_Q48KY0: ABC transporter, periplasmic substrate-binding protein	6.4744320591
+UniRef50_Q48KY0: ABC transporter, periplasmic substrate-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4744320591
+UniRef50_A4W006: DNA polymerase III, alpha subunit	6.4722124490
+UniRef50_A4W006: DNA polymerase III, alpha subunit|g__Streptococcus.s__Streptococcus_agalactiae	6.4722124490
+UniRef50_Q9RSP7	6.4714020461
+UniRef50_Q9RSP7|g__Deinococcus.s__Deinococcus_radiodurans	6.4714020461
+UniRef50_B6JCL5	6.4699747310
+UniRef50_B6JCL5|unclassified	6.4699747310
+UniRef50_UPI0003799127: hypothetical protein	6.4694130362
+UniRef50_UPI0003799127: hypothetical protein|unclassified	6.4694130362
+UniRef50_Q51465: Flagellar motor switch protein FliM	6.4687680354
+UniRef50_Q51465: Flagellar motor switch protein FliM|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4687680354
+UniRef50_Q92Q22: Serine--tRNA ligase	6.4683529375
+UniRef50_Q92Q22: Serine--tRNA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4268909083
+UniRef50_Q92Q22: Serine--tRNA ligase|unclassified	0.0414620291
+UniRef50_F8FV37	6.4673450119
+UniRef50_F8FV37|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4673450119
+UniRef50_E9X900: PmbA protein	6.4667769506
+UniRef50_E9X900: PmbA protein|g__Escherichia.s__Escherichia_coli	6.4667769506
+UniRef50_A0A024H2L6	6.4653264130
+UniRef50_A0A024H2L6|g__Propionibacterium.s__Propionibacterium_acnes	6.4653264130
+UniRef50_Q07MI4: ETC complex I subunit conserved region	6.4620524063
+UniRef50_Q07MI4: ETC complex I subunit conserved region|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.4620524063
+UniRef50_A4WR89	6.4612947601
+UniRef50_A4WR89|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.4612947601
+UniRef50_Q1I7R1	6.4610690676
+UniRef50_Q1I7R1|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4610690676
+UniRef50_UPI0002BA7CDC: hypothetical protein, partial	6.4590767659
+UniRef50_UPI0002BA7CDC: hypothetical protein, partial|unclassified	6.4590767659
+UniRef50_A9GWZ1	6.4531289463
+UniRef50_A9GWZ1|unclassified	6.4531289463
+UniRef50_Q63JM0: Tryptophan synthase alpha chain	6.4526520080
+UniRef50_Q63JM0: Tryptophan synthase alpha chain|g__Acinetobacter.s__Acinetobacter_baumannii	6.3257007416
+UniRef50_Q63JM0: Tryptophan synthase alpha chain|unclassified	0.1269512664
+UniRef50_J0FJU8	6.4522271864
+UniRef50_J0FJU8|unclassified	6.4522271864
+UniRef50_A6U3F3	6.4516129032
+UniRef50_A6U3F3|unclassified	6.4516129032
+UniRef50_B5YPV8	6.4516129032
+UniRef50_B5YPV8|g__Escherichia.s__Escherichia_coli	6.4516129032
+UniRef50_E8ZN46: PTS system IIB component	6.4516129032
+UniRef50_E8ZN46: PTS system IIB component|g__Clostridium.s__Clostridium_beijerinckii	6.4516129032
+UniRef50_F3U3B8	6.4516129032
+UniRef50_F3U3B8|unclassified	6.4516129032
+UniRef50_I6U3N4	6.4516129032
+UniRef50_I6U3N4|g__Streptococcus.s__Streptococcus_mutans	6.4516129032
+UniRef50_U5NMW6	6.4516129032
+UniRef50_U5NMW6|unclassified	6.4516129032
+UniRef50_UPI00046EA911: hypothetical protein	6.4516129032
+UniRef50_UPI00046EA911: hypothetical protein|unclassified	6.4516129032
+UniRef50_UPI000478334E: hypothetical protein, partial	6.4516129032
+UniRef50_UPI000478334E: hypothetical protein, partial|unclassified	6.4516129032
+UniRef50_V0TSK5	6.4516129032
+UniRef50_V0TSK5|g__Escherichia.s__Escherichia_coli	6.4516129032
+UniRef50_Q7WDY0: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	6.4513485480
+UniRef50_Q7WDY0: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|g__Neisseria.s__Neisseria_meningitidis	6.2821372681
+UniRef50_Q7WDY0: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.1692112799
+UniRef50_Q2RXH9: S-methyl-5'-thioadenosine phosphorylase	6.4496148791
+UniRef50_Q2RXH9: S-methyl-5'-thioadenosine phosphorylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.0987702929
+UniRef50_Q2RXH9: S-methyl-5'-thioadenosine phosphorylase|unclassified	0.3508445862
+UniRef50_V5SZ20: Glycosyl transferase	6.4465811293
+UniRef50_V5SZ20: Glycosyl transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4465811293
+UniRef50_UPI0003815DEC: hypothetical protein	6.4463937615
+UniRef50_UPI0003815DEC: hypothetical protein|unclassified	6.4463937615
+UniRef50_A0A023LG84	6.4458630410
+UniRef50_A0A023LG84|g__Escherichia.s__Escherichia_coli	6.4458630410
+UniRef50_U2Z938: Initiation of plasmid replication	6.4456465263
+UniRef50_U2Z938: Initiation of plasmid replication|unclassified	6.4456465263
+UniRef50_I0ZLD5: Cation/acetate symporter ActP	6.4440161502
+UniRef50_I0ZLD5: Cation/acetate symporter ActP|g__Escherichia.s__Escherichia_coli	6.4440161502
+UniRef50_S4X730: Amidase	6.4430656855
+UniRef50_S4X730: Amidase|unclassified	6.4430656855
+UniRef50_W8T2N7	6.4403189912
+UniRef50_W8T2N7|unclassified	6.4403189912
+UniRef50_A6VEE0	6.4385776924
+UniRef50_A6VEE0|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4054448900
+UniRef50_A6VEE0|unclassified	1.0331328023
+UniRef50_F9Z2P0: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	6.4384890503
+UniRef50_F9Z2P0: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	6.4384890503
+UniRef50_B2SAB7: Aminotransferase, class-II	6.4372872922
+UniRef50_B2SAB7: Aminotransferase, class-II|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.4372872922
+UniRef50_Q02RK7	6.4348720208
+UniRef50_Q02RK7|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4348720208
+UniRef50_E2ZVK4	6.4340900087
+UniRef50_E2ZVK4|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2872503699
+UniRef50_E2ZVK4|unclassified	2.1468396388
+UniRef50_UPI00037DF186: hypothetical protein	6.4328584662
+UniRef50_UPI00037DF186: hypothetical protein|unclassified	6.4328584662
+UniRef50_C5AJP0: Lipoprotein	6.4286942459
+UniRef50_C5AJP0: Lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2252767580
+UniRef50_C5AJP0: Lipoprotein|unclassified	0.2034174878
+UniRef50_Q2S8W1: Glucose-6-phosphate isomerase	6.4251691692
+UniRef50_Q2S8W1: Glucose-6-phosphate isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4251691692
+UniRef50_B1LBM8: 50S ribosomal protein L5	6.4248954027
+UniRef50_B1LBM8: 50S ribosomal protein L5|g__Deinococcus.s__Deinococcus_radiodurans	4.0210492488
+UniRef50_B1LBM8: 50S ribosomal protein L5|g__Clostridium.s__Clostridium_beijerinckii	2.4038461538
+UniRef50_Q57851: Dihydroneopterin aldolase	6.4222773375
+UniRef50_Q57851: Dihydroneopterin aldolase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.4222773375
+UniRef50_M9SB21: ABC transporter permease	6.4218859523
+UniRef50_M9SB21: ABC transporter permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4218859523
+UniRef50_A5UKB3: V-type ATP synthase subunit F	6.4205622887
+UniRef50_A5UKB3: V-type ATP synthase subunit F|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.4205622887
+UniRef50_E2XJC4: N-acetyl-anhydromuramyl-L-alanine amidase	6.4188362648
+UniRef50_E2XJC4: N-acetyl-anhydromuramyl-L-alanine amidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4188362648
+UniRef50_T1Y7T3: Nitrogen regulation protein NIFR3	6.4158812705
+UniRef50_T1Y7T3: Nitrogen regulation protein NIFR3|g__Staphylococcus.s__Staphylococcus_aureus	6.0240963855
+UniRef50_T1Y7T3: Nitrogen regulation protein NIFR3|unclassified	0.3917848849
+UniRef50_B9KJK7	6.4158562077
+UniRef50_B9KJK7|unclassified	6.4158562077
+UniRef50_L0FSR8: TolC family type I secretion outer membrane protein	6.4142741258
+UniRef50_L0FSR8: TolC family type I secretion outer membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4142741258
+UniRef50_A0A024L5Z4: Glycyl-radical enzyme activating protein family	6.4120659757
+UniRef50_A0A024L5Z4: Glycyl-radical enzyme activating protein family|g__Escherichia.s__Escherichia_coli	6.4120659757
+UniRef50_P76569	6.4112287514
+UniRef50_P76569|g__Escherichia.s__Escherichia_coli	6.4112287514
+UniRef50_Q3IV45: Periplasmic nitrate reductase maturation protein NapF	6.4110630512
+UniRef50_Q3IV45: Periplasmic nitrate reductase maturation protein NapF|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.4110630512
+UniRef50_A0A023YXB9	6.4102564103
+UniRef50_A0A023YXB9|g__Escherichia.s__Escherichia_coli	6.4102564103
+UniRef50_B3EHY1: Rare lipoprotein A	6.4102564103
+UniRef50_B3EHY1: Rare lipoprotein A|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4102564103
+UniRef50_H1EA80	6.4102564103
+UniRef50_H1EA80|unclassified	6.4102564103
+UniRef50_I2YCG5	6.4102564103
+UniRef50_I2YCG5|g__Escherichia.s__Escherichia_coli	6.4102564103
+UniRef50_I6TWX3	6.4102564103
+UniRef50_I6TWX3|g__Streptococcus.s__Streptococcus_mutans	6.4102564103
+UniRef50_M1MK65: Acyl carrier protein	6.4102564103
+UniRef50_M1MK65: Acyl carrier protein|g__Streptococcus.s__Streptococcus_mutans	6.4102564103
+UniRef50_P24297: Rubredoxin	6.4102564103
+UniRef50_P24297: Rubredoxin|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.4102564103
+UniRef50_Q6FB59	6.4102564103
+UniRef50_Q6FB59|g__Acinetobacter.s__Acinetobacter_baumannii	6.4102564103
+UniRef50_Q9RSX3	6.4102564103
+UniRef50_Q9RSX3|g__Deinococcus.s__Deinococcus_radiodurans	6.4102564103
+UniRef50_R9E5L7	6.4102564103
+UniRef50_R9E5L7|unclassified	6.4102564103
+UniRef50_UPI00036AAC2D: hypothetical protein	6.4102564103
+UniRef50_UPI00036AAC2D: hypothetical protein|unclassified	6.4102564103
+UniRef50_V4TUU3	6.4102564103
+UniRef50_V4TUU3|g__Staphylococcus.s__Staphylococcus_aureus	6.4102564103
+UniRef50_F9YW81: Sugar ABC transporter permease	6.4084503435
+UniRef50_F9YW81: Sugar ABC transporter permease|g__Propionibacterium.s__Propionibacterium_acnes	6.4084503435
+UniRef50_B0V5G5	6.4081943189
+UniRef50_B0V5G5|g__Acinetobacter.s__Acinetobacter_baumannii	6.4081943189
+UniRef50_V1SNF4	6.4079693372
+UniRef50_V1SNF4|unclassified	6.4079693372
+UniRef50_Q9RSR0	6.4076145619
+UniRef50_Q9RSR0|g__Deinococcus.s__Deinococcus_radiodurans	6.4076145619
+UniRef50_R7PX82	6.4069812593
+UniRef50_R7PX82|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.4069812593
+UniRef50_W8UDH6: Transposase InsF for insertion sequence IS3	6.4067808863
+UniRef50_W8UDH6: Transposase InsF for insertion sequence IS3|g__Escherichia.s__Escherichia_coli	6.4067808863
+UniRef50_B7H204: Potassium uptake protein, TrkH family protein	6.4067664607
+UniRef50_B7H204: Potassium uptake protein, TrkH family protein|g__Acinetobacter.s__Acinetobacter_baumannii	6.4067664607
+UniRef50_Q53151: Flagellar M-ring protein	6.4059148245
+UniRef50_Q53151: Flagellar M-ring protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.4059148245
+UniRef50_U9XR35	6.4045704800
+UniRef50_U9XR35|unclassified	6.4045704800
+UniRef50_T3GII0: Zinc-binding dehydrogenase family protein	6.4038474177
+UniRef50_T3GII0: Zinc-binding dehydrogenase family protein|g__Clostridium.s__Clostridium_beijerinckii	6.4038474177
+UniRef50_A8LPN7	6.4033927759
+UniRef50_A8LPN7|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.7453183521
+UniRef50_A8LPN7|unclassified	2.6580744238
+UniRef50_C1DQ18: TonB-dependent siderophore receptor	6.4011612817
+UniRef50_C1DQ18: TonB-dependent siderophore receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4011612817
+UniRef50_C1DKJ6: Type III pantothenate kinase	6.4011426455
+UniRef50_C1DKJ6: Type III pantothenate kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.4011426455
+UniRef50_P0A209: Ethanolamine utilization protein EutP	6.4008756484
+UniRef50_P0A209: Ethanolamine utilization protein EutP|g__Escherichia.s__Escherichia_coli	6.4008756484
+UniRef50_F3SW08: Conserved domain protein	6.4002610056
+UniRef50_F3SW08: Conserved domain protein|unclassified	6.4002610056
+UniRef50_V9Z4G9: Replication protein	6.4000163840
+UniRef50_V9Z4G9: Replication protein|g__Staphylococcus.s__Staphylococcus_epidermidis	6.4000163840
+UniRef50_UPI0004713E7A: signal peptide protein	6.3977989130
+UniRef50_UPI0004713E7A: signal peptide protein|unclassified	6.3977989130
+UniRef50_A4XPP9: Pilus assembly protein, PilQ	6.3971320984
+UniRef50_A4XPP9: Pilus assembly protein, PilQ|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1349693252
+UniRef50_A4XPP9: Pilus assembly protein, PilQ|unclassified	0.2621627732
+UniRef50_G7M1N3	6.3966520424
+UniRef50_G7M1N3|g__Clostridium.s__Clostridium_beijerinckii	6.3966520424
+UniRef50_Q28VD6: DNA polymerase III, delta subunit	6.3959427117
+UniRef50_Q28VD6: DNA polymerase III, delta subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.3959427117
+UniRef50_Q0TPF2: Segregation and condensation protein B	6.3952252114
+UniRef50_Q0TPF2: Segregation and condensation protein B|g__Clostridium.s__Clostridium_beijerinckii	6.3952252114
+UniRef50_UPI000365E9A3: hypothetical protein	6.3933713903
+UniRef50_UPI000365E9A3: hypothetical protein|unclassified	6.3933713903
+UniRef50_K4TPI5: LysE-family efflux protein	6.3903810339
+UniRef50_K4TPI5: LysE-family efflux protein|unclassified	6.3903810339
+UniRef50_C6EBU6: Protein phosphatase CheZ	6.3881670064
+UniRef50_C6EBU6: Protein phosphatase CheZ|g__Escherichia.s__Escherichia_coli	6.3881670064
+UniRef50_Q5HPX7	6.3878774406
+UniRef50_Q5HPX7|g__Staphylococcus.s__Staphylococcus_epidermidis	5.7803468208
+UniRef50_Q5HPX7|unclassified	0.6075306197
+UniRef50_Q893Q5: 4-methyl-5(B-hydroxyethyl)-thiazole monophosphate biosynthesis enzyme	6.3877036704
+UniRef50_Q893Q5: 4-methyl-5(B-hydroxyethyl)-thiazole monophosphate biosynthesis enzyme|g__Clostridium.s__Clostridium_beijerinckii	6.3877036704
+UniRef50_E6YGE6	6.3874623770
+UniRef50_E6YGE6|unclassified	6.3874623770
+UniRef50_Q8FAG4: Peptide methionine sulfoxide reductase MsrA	6.3859001030
+UniRef50_Q8FAG4: Peptide methionine sulfoxide reductase MsrA|g__Escherichia.s__Escherichia_coli	5.7364296081
+UniRef50_Q8FAG4: Peptide methionine sulfoxide reductase MsrA|unclassified	0.6494704949
+UniRef50_Q4FQF7: ATP phosphoribosyltransferase	6.3847880657
+UniRef50_Q4FQF7: ATP phosphoribosyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1381708088
+UniRef50_Q4FQF7: ATP phosphoribosyltransferase|unclassified	0.2466172569
+UniRef50_M4YY13: Truncated major facilitator family protein	6.3841794647
+UniRef50_M4YY13: Truncated major facilitator family protein|g__Streptococcus.s__Streptococcus_agalactiae	6.3841794647
+UniRef50_Q2Y6A7: DedA	6.3821330847
+UniRef50_Q2Y6A7: DedA|g__Clostridium.s__Clostridium_beijerinckii	6.3821330847
+UniRef50_B9KWT1	6.3814934620
+UniRef50_B9KWT1|unclassified	6.3814934620
+UniRef50_Q9ZN70: Exopolyphosphatase	6.3786440887
+UniRef50_Q9ZN70: Exopolyphosphatase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2242658326
+UniRef50_Q9ZN70: Exopolyphosphatase|unclassified	0.1543782561
+UniRef50_I4PWM5	6.3746725171
+UniRef50_I4PWM5|unclassified	6.3746725171
+UniRef50_Q9KVF1	6.3738436491
+UniRef50_Q9KVF1|g__Escherichia.s__Escherichia_coli	6.3738436491
+UniRef50_B2TZF5	6.3714654140
+UniRef50_B2TZF5|g__Escherichia.s__Escherichia_coli	6.3714654140
+UniRef50_Q8E310: Phosphate-binding protein PstS 2	6.3695337530
+UniRef50_Q8E310: Phosphate-binding protein PstS 2|g__Streptococcus.s__Streptococcus_agalactiae	6.3695337530
+UniRef50_A3PNC9: Formate dehydrogenase delta subunit	6.3694267516
+UniRef50_A3PNC9: Formate dehydrogenase delta subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.3694267516
+UniRef50_D1C9U0: Cupin 2 conserved barrel domain protein	6.3694267516
+UniRef50_D1C9U0: Cupin 2 conserved barrel domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.3694267516
+UniRef50_F5M5T7	6.3694267516
+UniRef50_F5M5T7|unclassified	6.3694267516
+UniRef50_H4FX97	6.3694267516
+UniRef50_H4FX97|g__Staphylococcus.s__Staphylococcus_aureus	6.3694267516
+UniRef50_I0C7W3	6.3694267516
+UniRef50_I0C7W3|g__Staphylococcus.s__Staphylococcus_aureus	6.3694267516
+UniRef50_K2AW96	6.3694267516
+UniRef50_K2AW96|unclassified	6.3694267516
+UniRef50_M2J431	6.3694267516
+UniRef50_M2J431|unclassified	6.3694267516
+UniRef50_P0A230: Nitrite reductase (NADH) small subunit	6.3694267516
+UniRef50_P0A230: Nitrite reductase (NADH) small subunit|g__Escherichia.s__Escherichia_coli	6.3694267516
+UniRef50_P52228: Thioredoxin C-3	6.3694267516
+UniRef50_P52228: Thioredoxin C-3|g__Acinetobacter.s__Acinetobacter_baumannii	6.3694267516
+UniRef50_Q8CU12	6.3694267516
+UniRef50_Q8CU12|g__Staphylococcus.s__Staphylococcus_epidermidis	6.3694267516
+UniRef50_W8T5Z8	6.3694267516
+UniRef50_W8T5Z8|g__Escherichia.s__Escherichia_coli	6.3694267516
+UniRef50_V1BTZ7: Putative xanthine dehydrogenase accessory factor (Fragment)	6.3642622314
+UniRef50_V1BTZ7: Putative xanthine dehydrogenase accessory factor (Fragment)|g__Escherichia.s__Escherichia_coli	5.7264260664
+UniRef50_V1BTZ7: Putative xanthine dehydrogenase accessory factor (Fragment)|unclassified	0.6378361650
+UniRef50_Q53157: R.sphaeroides HISI protein	6.3628624787
+UniRef50_Q53157: R.sphaeroides HISI protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.8680941678
+UniRef50_Q53157: R.sphaeroides HISI protein|unclassified	1.4947683109
+UniRef50_B3Q6T2: NADH dehydrogenase (Ubiquinone) 24 kDa subunit	6.3604303861
+UniRef50_B3Q6T2: NADH dehydrogenase (Ubiquinone) 24 kDa subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.3604303861
+UniRef50_I3FPW3	6.3596518465
+UniRef50_I3FPW3|g__Staphylococcus.s__Staphylococcus_aureus	6.3596518465
+UniRef50_A4VMC4: Isocitrate dehydrogenase kinase/phosphatase	6.3585769228
+UniRef50_A4VMC4: Isocitrate dehydrogenase kinase/phosphatase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3585769228
+UniRef50_G7M098	6.3578837759
+UniRef50_G7M098|g__Clostridium.s__Clostridium_beijerinckii	6.3578837759
+UniRef50_A8A3U8	6.3551706399
+UniRef50_A8A3U8|unclassified	6.3551706399
+UniRef50_T2ERE8: Zinc-binding dehydrogenase family protein	6.3548900085
+UniRef50_T2ERE8: Zinc-binding dehydrogenase family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3548900085
+UniRef50_P30341: Mercuric reductase	6.3540300256
+UniRef50_P30341: Mercuric reductase|g__Streptococcus.s__Streptococcus_agalactiae	3.5873828257
+UniRef50_P30341: Mercuric reductase|g__Staphylococcus.s__Staphylococcus_epidermidis	2.7666471999
+UniRef50_V9U2A1: Thioesterase PvdG involved in non-ribosomal peptide biosynthesis	6.3539899253
+UniRef50_V9U2A1: Thioesterase PvdG involved in non-ribosomal peptide biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3539899253
+UniRef50_L4HJG0	6.3493792761
+UniRef50_L4HJG0|unclassified	6.3493792761
+UniRef50_M4R0W4: Metalloendopeptidase	6.3492418061
+UniRef50_M4R0W4: Metalloendopeptidase|g__Acinetobacter.s__Acinetobacter_baumannii	6.3492418061
+UniRef50_A5UJ47: Predicted O-linked GlnNAc transferase	6.3492063492
+UniRef50_A5UJ47: Predicted O-linked GlnNAc transferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.3492063492
+UniRef50_T1Y7K0: Extracellular fibrinogen-binding protein	6.3492063492
+UniRef50_T1Y7K0: Extracellular fibrinogen-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	6.3492063492
+UniRef50_A6LV85: Acyl-CoA reductase	6.3486095517
+UniRef50_A6LV85: Acyl-CoA reductase|g__Clostridium.s__Clostridium_beijerinckii	6.3486095517
+UniRef50_Q3IUY0	6.3483716575
+UniRef50_Q3IUY0|unclassified	6.3483716575
+UniRef50_A6LTZ8	6.3468265867
+UniRef50_A6LTZ8|g__Clostridium.s__Clostridium_beijerinckii	6.3468265867
+UniRef50_M2J923	6.3432981456
+UniRef50_M2J923|unclassified	6.3432981456
+UniRef50_D0W2S1	6.3428012785
+UniRef50_D0W2S1|unclassified	6.3428012785
+UniRef50_U6ANF3	6.3419005955
+UniRef50_U6ANF3|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3419005955
+UniRef50_F7QL87: ATPase	6.3405208891
+UniRef50_F7QL87: ATPase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5736497235
+UniRef50_F7QL87: ATPase|g__Acinetobacter.s__Acinetobacter_baumannii	0.7668711656
+UniRef50_L1K935	6.3399619343
+UniRef50_L1K935|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.7169811321
+UniRef50_L1K935|unclassified	1.6229808022
+UniRef50_M8YJZ4: Protein rarD	6.3393838040
+UniRef50_M8YJZ4: Protein rarD|g__Escherichia.s__Escherichia_coli	6.3393838040
+UniRef50_F5M415: Periplasmic binding protein	6.3388079590
+UniRef50_F5M415: Periplasmic binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.3388079590
+UniRef50_A4WTC5	6.3380860778
+UniRef50_A4WTC5|unclassified	3.9049960535
+UniRef50_A4WTC5|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.4330900243
+UniRef50_R5TNT7: NAD(FAD)-utilizing dehydrogenase	6.3375863866
+UniRef50_R5TNT7: NAD(FAD)-utilizing dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	6.3375863866
+UniRef50_O33407: Esterase EstA	6.3346730242
+UniRef50_O33407: Esterase EstA|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3346730242
+UniRef50_E2S811	6.3326543685
+UniRef50_E2S811|unclassified	6.3326543685
+UniRef50_A3T2U3: ATPase, ParA type	6.3312982631
+UniRef50_A3T2U3: ATPase, ParA type|unclassified	6.3312982631
+UniRef50_D5ANC5: Glutathione S-transferase family protein	6.3300140061
+UniRef50_D5ANC5: Glutathione S-transferase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.3300140061
+UniRef50_A3M4G7: Surface antigen	6.3291139241
+UniRef50_A3M4G7: Surface antigen|g__Acinetobacter.s__Acinetobacter_baumannii	6.3291139241
+UniRef50_A6V458: Lipoprotein, putative	6.3291139241
+UniRef50_A6V458: Lipoprotein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3291139241
+UniRef50_B5F127: ATP-dependent Clp protease adapter protein ClpS	6.3291139241
+UniRef50_B5F127: ATP-dependent Clp protease adapter protein ClpS|g__Escherichia.s__Escherichia_coli	6.3291139241
+UniRef50_P0ABM7: Heme exporter protein D	6.3291139241
+UniRef50_P0ABM7: Heme exporter protein D|g__Escherichia.s__Escherichia_coli	6.3291139241
+UniRef50_Q3J1X7: Anti-sigma-28 factor, FlgM family	6.3291139241
+UniRef50_Q3J1X7: Anti-sigma-28 factor, FlgM family|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.3291139241
+UniRef50_Q5HQU0	6.3291139241
+UniRef50_Q5HQU0|g__Staphylococcus.s__Staphylococcus_epidermidis	6.3291139241
+UniRef50_Q8DS01	6.3291139241
+UniRef50_Q8DS01|g__Streptococcus.s__Streptococcus_mutans	6.3291139241
+UniRef50_UPI000366EA21: hypothetical protein	6.3291139241
+UniRef50_UPI000366EA21: hypothetical protein|unclassified	6.3291139241
+UniRef50_UPI000470F872: hypothetical protein	6.3291139241
+UniRef50_UPI000470F872: hypothetical protein|unclassified	6.3291139241
+UniRef50_B7UQI7: HTH-type transcriptional repressor NsrR	6.3289873620
+UniRef50_B7UQI7: HTH-type transcriptional repressor NsrR|g__Escherichia.s__Escherichia_coli	6.3289873620
+UniRef50_M9S895: Glycosyl transferase	6.3287560755
+UniRef50_M9S895: Glycosyl transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3287560755
+UniRef50_V5T0I0	6.3284040285
+UniRef50_V5T0I0|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3284040285
+UniRef50_E6UL31: Endonuclease V	6.3274491466
+UniRef50_E6UL31: Endonuclease V|g__Clostridium.s__Clostridium_beijerinckii	6.3274491466
+UniRef50_V0XG75	6.3251569917
+UniRef50_V0XG75|unclassified	6.3251569917
+UniRef50_P71348: Glutamate-pyruvate aminotransferase AlaA	6.3250215639
+UniRef50_P71348: Glutamate-pyruvate aminotransferase AlaA|g__Neisseria.s__Neisseria_meningitidis	5.3994251503
+UniRef50_P71348: Glutamate-pyruvate aminotransferase AlaA|unclassified	0.9255964136
+UniRef50_A4WWD3	6.3227345819
+UniRef50_A4WWD3|unclassified	6.3227345819
+UniRef50_R4MI40	6.3210481281
+UniRef50_R4MI40|unclassified	6.3210481281
+UniRef50_A6LRS1	6.3208808645
+UniRef50_A6LRS1|g__Clostridium.s__Clostridium_beijerinckii	6.3208808645
+UniRef50_R4K219	6.3206137898
+UniRef50_R4K219|g__Clostridium.s__Clostridium_beijerinckii	6.3206137898
+UniRef50_J8VE04: Lipoprotein	6.3198881789
+UniRef50_J8VE04: Lipoprotein|unclassified	6.3198881789
+UniRef50_O87016: tRNA pseudouridine synthase A	6.3193827753
+UniRef50_O87016: tRNA pseudouridine synthase A|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2464822830
+UniRef50_O87016: tRNA pseudouridine synthase A|unclassified	0.0729004923
+UniRef50_C0M782: DNA-directed RNA polymerase subunit omega	6.3192572627
+UniRef50_C0M782: DNA-directed RNA polymerase subunit omega|g__Streptococcus.s__Streptococcus_mutans	6.3192572627
+UniRef50_B9KJF4: Flagellar protein FlgJ	6.3190911300
+UniRef50_B9KJF4: Flagellar protein FlgJ|unclassified	6.3190911300
+UniRef50_B7UVV3: Dihydroorotase	6.3189483897
+UniRef50_B7UVV3: Dihydroorotase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3189483897
+UniRef50_A7MI14	6.3175948973
+UniRef50_A7MI14|g__Escherichia.s__Escherichia_coli	6.3175948973
+UniRef50_F7ZMV0: ABC transporter ATP-binding protein	6.3171748190
+UniRef50_F7ZMV0: ABC transporter ATP-binding protein|g__Clostridium.s__Clostridium_beijerinckii	6.3171748190
+UniRef50_B1P7K7	6.3164698278
+UniRef50_B1P7K7|g__Escherichia.s__Escherichia_coli	6.3164698278
+UniRef50_UPI0004691CF3: hypothetical protein	6.3158244597
+UniRef50_UPI0004691CF3: hypothetical protein|unclassified	6.3158244597
+UniRef50_Q9PBX0: Ribose-5-phosphate isomerase A	6.3155812237
+UniRef50_Q9PBX0: Ribose-5-phosphate isomerase A|g__Acinetobacter.s__Acinetobacter_baumannii	6.3155812237
+UniRef50_A6UXC5: Membrane protein, putative	6.3147879221
+UniRef50_A6UXC5: Membrane protein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3147879221
+UniRef50_Q9ZIJ1: Gluconate permease	6.3141331988
+UniRef50_Q9ZIJ1: Gluconate permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3477590633
+UniRef50_Q9ZIJ1: Gluconate permease|g__Acinetobacter.s__Acinetobacter_baumannii	2.7604182990
+UniRef50_Q9ZIJ1: Gluconate permease|unclassified	0.2059558365
+UniRef50_E2QNX4: Nickel/cobalt efflux system rcnA	6.3138602521
+UniRef50_E2QNX4: Nickel/cobalt efflux system rcnA|g__Escherichia.s__Escherichia_coli	6.3138602521
+UniRef50_M9S6C0	6.3137164041
+UniRef50_M9S6C0|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3137164041
+UniRef50_V1BKN9	6.3135782153
+UniRef50_V1BKN9|g__Escherichia.s__Escherichia_coli	5.6818181818
+UniRef50_V1BKN9|unclassified	0.6317600335
+UniRef50_B2V042: Acetobutylicum phosphotransbutyrylase	6.3107500363
+UniRef50_B2V042: Acetobutylicum phosphotransbutyrylase|g__Clostridium.s__Clostridium_beijerinckii	6.3107500363
+UniRef50_J7QB56	6.3101529764
+UniRef50_J7QB56|g__Escherichia.s__Escherichia_coli	6.3101529764
+UniRef50_T2E4F3: Bacterial regulatory s, luxR family protein	6.3099115870
+UniRef50_T2E4F3: Bacterial regulatory s, luxR family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3099115870
+UniRef50_UPI000262D14F: electron transport complex RsxE subunit	6.3090500961
+UniRef50_UPI000262D14F: electron transport complex RsxE subunit|unclassified	6.3090500961
+UniRef50_K7V512	6.3089758032
+UniRef50_K7V512|unclassified	6.3089758032
+UniRef50_C0VYS2	6.3043989489
+UniRef50_C0VYS2|unclassified	6.3043989489
+UniRef50_N8IXC2	6.3043594836
+UniRef50_N8IXC2|unclassified	6.3043594836
+UniRef50_A4WZY2	6.3037306173
+UniRef50_A4WZY2|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.3037306173
+UniRef50_V5SZD4: Chemotaxis protein	6.3032654053
+UniRef50_V5SZD4: Chemotaxis protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3032654053
+UniRef50_A6QDZ2: Phage tape measure protein	6.3022828093
+UniRef50_A6QDZ2: Phage tape measure protein|g__Staphylococcus.s__Staphylococcus_aureus	6.3022828093
+UniRef50_G2KWZ9: ATP-dependent RNA helicase RhlB	6.3022393373
+UniRef50_G2KWZ9: ATP-dependent RNA helicase RhlB|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.3022393373
+UniRef50_K3YW20	6.3020120544
+UniRef50_K3YW20|unclassified	6.3020120544
+UniRef50_F0KNJ6	6.2999331175
+UniRef50_F0KNJ6|g__Acinetobacter.s__Acinetobacter_baumannii	6.2999331175
+UniRef50_Q49W89: Na(+)/H(+) antiporter subunit C1	6.2995546867
+UniRef50_Q49W89: Na(+)/H(+) antiporter subunit C1|g__Staphylococcus.s__Staphylococcus_epidermidis	6.2995546867
+UniRef50_A5UM11	6.2995329285
+UniRef50_A5UM11|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.5931550915
+UniRef50_A5UM11|unclassified	1.7063778370
+UniRef50_UPI0004747C9B: hypothetical protein	6.2994297516
+UniRef50_UPI0004747C9B: hypothetical protein|unclassified	6.2994297516
+UniRef50_R5K0I5: Succinylglutamate desuccinylase/aspartoacylase family protein	6.2963439345
+UniRef50_R5K0I5: Succinylglutamate desuccinylase/aspartoacylase family protein|g__Clostridium.s__Clostridium_beijerinckii	6.2963439345
+UniRef50_X2H5U3	6.2963387602
+UniRef50_X2H5U3|g__Neisseria.s__Neisseria_meningitidis	6.2963387602
+UniRef50_Q8SDT5: Phi ETA orf 55-like protein	6.2931334706
+UniRef50_Q8SDT5: Phi ETA orf 55-like protein|g__Staphylococcus.s__Staphylococcus_aureus	6.2931334706
+UniRef50_UPI00042410AD: 50S ribosomal protein L18	6.2931294192
+UniRef50_UPI00042410AD: 50S ribosomal protein L18|unclassified	6.2931294192
+UniRef50_K0I6Y3: Tricarballylate dehydrogenase	6.2930361416
+UniRef50_K0I6Y3: Tricarballylate dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	6.2930361416
+UniRef50_B7V4W8	6.2930106269
+UniRef50_B7V4W8|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2930106269
+UniRef50_Q92M99: Phosphoglucosamine mutase	6.2919656916
+UniRef50_Q92M99: Phosphoglucosamine mutase|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.2554716054
+UniRef50_Q92M99: Phosphoglucosamine mutase|unclassified	0.0364940862
+UniRef50_X6GHK4	6.2904244263
+UniRef50_X6GHK4|unclassified	6.2904244263
+UniRef50_L6YPP4: Autoinducer 2 aldolase	6.2902873348
+UniRef50_L6YPP4: Autoinducer 2 aldolase|g__Escherichia.s__Escherichia_coli	6.2902873348
+UniRef50_E2ZP04	6.2900408741
+UniRef50_E2ZP04|unclassified	6.2900408741
+UniRef50_C3P4I5: D-alanine--poly(phosphoribitol) ligase subunit 2	6.2893081761
+UniRef50_C3P4I5: D-alanine--poly(phosphoribitol) ligase subunit 2|g__Staphylococcus.s__Staphylococcus_aureus	6.2893081761
+UniRef50_C5N6Q5	6.2893081761
+UniRef50_C5N6Q5|g__Staphylococcus.s__Staphylococcus_aureus	6.2893081761
+UniRef50_C6STY1	6.2893081761
+UniRef50_C6STY1|g__Streptococcus.s__Streptococcus_mutans	6.2893081761
+UniRef50_E1VJT0: CheW-like protein	6.2893081761
+UniRef50_E1VJT0: CheW-like protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2893081761
+UniRef50_I9A798	6.2893081761
+UniRef50_I9A798|unclassified	6.2893081761
+UniRef50_M2J9R4	6.2893081761
+UniRef50_M2J9R4|g__Streptococcus.s__Streptococcus_mutans	6.2893081761
+UniRef50_P0AF51	6.2893081761
+UniRef50_P0AF51|g__Escherichia.s__Escherichia_coli	6.2893081761
+UniRef50_Q5HP30: Exodeoxyribonuclease 7 small subunit	6.2893081761
+UniRef50_Q5HP30: Exodeoxyribonuclease 7 small subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	6.2893081761
+UniRef50_Q6D9Z3: UPF0391 membrane protein ECA0470	6.2893081761
+UniRef50_Q6D9Z3: UPF0391 membrane protein ECA0470|g__Escherichia.s__Escherichia_coli	6.2893081761
+UniRef50_T1TGA2: Toxin	6.2893081761
+UniRef50_T1TGA2: Toxin|g__Staphylococcus.s__Staphylococcus_aureus	6.2893081761
+UniRef50_UPI00046421C6: hypothetical protein	6.2893081761
+UniRef50_UPI00046421C6: hypothetical protein|unclassified	6.2893081761
+UniRef50_W8T0X0: Putrescine/spermidine ABC transporter substrate-binding protein	6.2893081761
+UniRef50_W8T0X0: Putrescine/spermidine ABC transporter substrate-binding protein|g__Escherichia.s__Escherichia_coli	6.2893081761
+UniRef50_C3A4D2: Permease, probably tetracycline resistance protein	6.2886698748
+UniRef50_C3A4D2: Permease, probably tetracycline resistance protein|g__Clostridium.s__Clostridium_beijerinckii	6.2886698748
+UniRef50_D5WAU2: PTS system, N-acetylglucosamine-specific IIBC subunit	6.2886503169
+UniRef50_D5WAU2: PTS system, N-acetylglucosamine-specific IIBC subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2886503169
+UniRef50_A5VYM5: Outer membrane porin	6.2876730380
+UniRef50_A5VYM5: Outer membrane porin|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2876730380
+UniRef50_Q01602: Transcription regulatory protein OpdE	6.2867765707
+UniRef50_Q01602: Transcription regulatory protein OpdE|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2867765707
+UniRef50_A6TEB4	6.2844747751
+UniRef50_A6TEB4|g__Escherichia.s__Escherichia_coli	6.2844747751
+UniRef50_E8YFF3: Ribonucleoside-diphosphate reductase	6.2830483052
+UniRef50_E8YFF3: Ribonucleoside-diphosphate reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2830483052
+UniRef50_A5N5A2: Predicted methyl-accepting chemotaxis protein	6.2821880294
+UniRef50_A5N5A2: Predicted methyl-accepting chemotaxis protein|g__Clostridium.s__Clostridium_beijerinckii	6.2821880294
+UniRef50_T2E8G6: Amino ABC transporter, permease , 3-TM region, His/Glu/Gln/Arg/opine family domain protein	6.2815737554
+UniRef50_T2E8G6: Amino ABC transporter, permease , 3-TM region, His/Glu/Gln/Arg/opine family domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2815737554
+UniRef50_Z1D1L3: Serine-aspartate repeat-containing protein D	6.2813196985
+UniRef50_Z1D1L3: Serine-aspartate repeat-containing protein D|g__Staphylococcus.s__Staphylococcus_aureus	6.2813196985
+UniRef50_K4KM08: Phosphatidylserine/phosphatidylglycerophosphate/ cardiolipin synthase-like protein	6.2805932592
+UniRef50_K4KM08: Phosphatidylserine/phosphatidylglycerophosphate/ cardiolipin synthase-like protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2805932592
+UniRef50_B1Z9R3	6.2800591935
+UniRef50_B1Z9R3|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2800591935
+UniRef50_A6LYG5	6.2794348509
+UniRef50_A6LYG5|g__Clostridium.s__Clostridium_beijerinckii	6.2794348509
+UniRef50_Q7W4F7: Exported protein, conserved	6.2792360318
+UniRef50_Q7W4F7: Exported protein, conserved|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2792360318
+UniRef50_A4QB30	6.2792020110
+UniRef50_A4QB30|g__Propionibacterium.s__Propionibacterium_acnes	6.2792020110
+UniRef50_Q9RV70: Uricase	6.2780181125
+UniRef50_Q9RV70: Uricase|g__Deinococcus.s__Deinococcus_radiodurans	6.2780181125
+UniRef50_Q88FY7: Porin-like protein NicP	6.2776202864
+UniRef50_Q88FY7: Porin-like protein NicP|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2776202864
+UniRef50_A6LXY5: PAS/PAC sensor hybrid histidine kinase	6.2773308658
+UniRef50_A6LXY5: PAS/PAC sensor hybrid histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	6.2773308658
+UniRef50_P26281: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase	6.2762054507
+UniRef50_P26281: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase|g__Escherichia.s__Escherichia_coli	6.2762054507
+UniRef50_K0CGP1: TENA/THI-4 family	6.2739801112
+UniRef50_K0CGP1: TENA/THI-4 family|g__Acinetobacter.s__Acinetobacter_baumannii	6.2739801112
+UniRef50_P28722	6.2713069724
+UniRef50_P28722|g__Escherichia.s__Escherichia_coli	6.2713069724
+UniRef50_W1Y1A0: Threonine dehydratase operon activator protein (Fragment)	6.2711565930
+UniRef50_W1Y1A0: Threonine dehydratase operon activator protein (Fragment)|g__Escherichia.s__Escherichia_coli	6.2711565930
+UniRef50_I7B1F5: TRZ/ATZ atrazine degradation family enzyme	6.2692212885
+UniRef50_I7B1F5: TRZ/ATZ atrazine degradation family enzyme|g__Clostridium.s__Clostridium_beijerinckii	6.2692212885
+UniRef50_Q8P2Z1	6.2684633596
+UniRef50_Q8P2Z1|unclassified	6.2684633596
+UniRef50_X2HE44: DNA polymerase III delta prime subunit	6.2680639070
+UniRef50_X2HE44: DNA polymerase III delta prime subunit|g__Neisseria.s__Neisseria_meningitidis	6.2680639070
+UniRef50_F0MAK0: ABC-type spermidine/putrescine transport system, ATPase component	6.2670973477
+UniRef50_F0MAK0: ABC-type spermidine/putrescine transport system, ATPase component|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.2670973477
+UniRef50_A5UNY0	6.2664707132
+UniRef50_A5UNY0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.2664707132
+UniRef50_UPI00036A5335: CRISPR-associated protein Csd1, partial	6.2652003451
+UniRef50_UPI00036A5335: CRISPR-associated protein Csd1, partial|g__Streptococcus.s__Streptococcus_mutans	6.2652003451
+UniRef50_A9WM93: Uracil-DNA glycosylase	6.2637267368
+UniRef50_A9WM93: Uracil-DNA glycosylase|g__Propionibacterium.s__Propionibacterium_acnes	6.2637267368
+UniRef50_R6KIL0: YihY family protein	6.2630480167
+UniRef50_R6KIL0: YihY family protein|g__Clostridium.s__Clostridium_beijerinckii	6.2630480167
+UniRef50_W8RQ92: Membrane protein	6.2625632976
+UniRef50_W8RQ92: Membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2625632976
+UniRef50_Q5E715: Methionine import ATP-binding protein MetN	6.2624556485
+UniRef50_Q5E715: Methionine import ATP-binding protein MetN|g__Escherichia.s__Escherichia_coli	6.1141710090
+UniRef50_Q5E715: Methionine import ATP-binding protein MetN|unclassified	0.1482846396
+UniRef50_W8U7U4: ABC-type transport system involved in resistance to organic solvents, periplasmic component	6.2622177411
+UniRef50_W8U7U4: ABC-type transport system involved in resistance to organic solvents, periplasmic component|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2622177411
+UniRef50_Q87YY0: Xanthine dehydrogenase accessory factor XdhC, putative	6.2615963817
+UniRef50_Q87YY0: Xanthine dehydrogenase accessory factor XdhC, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2615963817
+UniRef50_Q9HXZ1: DNA polymerase III subunit alpha	6.2615615114
+UniRef50_Q9HXZ1: DNA polymerase III subunit alpha|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1680371902
+UniRef50_Q9HXZ1: DNA polymerase III subunit alpha|unclassified	0.0935243212
+UniRef50_S9QNZ3	6.2615114790
+UniRef50_S9QNZ3|unclassified	6.2615114790
+UniRef50_Q9HV71: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase	6.2601357931
+UniRef50_Q9HV71: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2601357931
+UniRef50_A0A024HE97: Lon protease 2	6.2599036342
+UniRef50_A0A024HE97: Lon protease 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2599036342
+UniRef50_G7ZPX0	6.2555881074
+UniRef50_G7ZPX0|unclassified	6.2555881074
+UniRef50_D9XH34: Predicted protein	6.2500000000
+UniRef50_D9XH34: Predicted protein|unclassified	6.2500000000
+UniRef50_F9IVR5	6.2500000000
+UniRef50_F9IVR5|g__Acinetobacter.s__Acinetobacter_baumannii	6.2500000000
+UniRef50_Q8PYQ4: 50S ribosomal protein L31e	6.2500000000
+UniRef50_Q8PYQ4: 50S ribosomal protein L31e|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.2500000000
+UniRef50_S1T170	6.2500000000
+UniRef50_S1T170|unclassified	6.2500000000
+UniRef50_V9ZEA0	6.2500000000
+UniRef50_V9ZEA0|g__Escherichia.s__Escherichia_coli	6.2500000000
+UniRef50_P0A5R7: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase	6.2490459037
+UniRef50_P0A5R7: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase|g__Propionibacterium.s__Propionibacterium_acnes	6.1167933782
+UniRef50_P0A5R7: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase|unclassified	0.1322525255
+UniRef50_D4HA59: Precorrin-6A synthase (Deacetylating)	6.2474961423
+UniRef50_D4HA59: Precorrin-6A synthase (Deacetylating)|g__Propionibacterium.s__Propionibacterium_acnes	6.2474961423
+UniRef50_UPI0003B47BD1: N-acetyltransferase	6.2461592999
+UniRef50_UPI0003B47BD1: N-acetyltransferase|unclassified	6.2461592999
+UniRef50_F5M104: ABC transporter related protein	6.2460684150
+UniRef50_F5M104: ABC transporter related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.2460684150
+UniRef50_A3IDC9	6.2458446137
+UniRef50_A3IDC9|unclassified	6.2458446137
+UniRef50_T0GNN5	6.2457011668
+UniRef50_T0GNN5|unclassified	6.2457011668
+UniRef50_U5MNN1: ABC transporter permease protein YtlD	6.2455669048
+UniRef50_U5MNN1: ABC transporter permease protein YtlD|g__Clostridium.s__Clostridium_beijerinckii	6.2455669048
+UniRef50_A4XW78: Methyltransferase type 12	6.2454073458
+UniRef50_A4XW78: Methyltransferase type 12|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2454073458
+UniRef50_B1TFY4: LigA	6.2450695970
+UniRef50_B1TFY4: LigA|unclassified	6.2450695970
+UniRef50_C5B1H6: Amidase, hydantoinase/carbamoylase	6.2448283449
+UniRef50_C5B1H6: Amidase, hydantoinase/carbamoylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.2448283449
+UniRef50_F2AIJ3	6.2424833688
+UniRef50_F2AIJ3|unclassified	6.2424833688
+UniRef50_I2XC44: GroES-like protein	6.2417542423
+UniRef50_I2XC44: GroES-like protein|g__Escherichia.s__Escherichia_coli	6.2417542423
+UniRef50_V9U4Y1	6.2416734818
+UniRef50_V9U4Y1|unclassified	6.2416734818
+UniRef50_A4WT68: NADH-quinone oxidoreductase subunit	6.2415065036
+UniRef50_A4WT68: NADH-quinone oxidoreductase subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.2415065036
+UniRef50_B4RR58: Pilin glycosyl transferase A	6.2395001553
+UniRef50_B4RR58: Pilin glycosyl transferase A|g__Neisseria.s__Neisseria_meningitidis	6.2395001553
+UniRef50_A6M0G0: Binding-protein-dependent transport systems inner membrane component	6.2376622758
+UniRef50_A6M0G0: Binding-protein-dependent transport systems inner membrane component|g__Clostridium.s__Clostridium_beijerinckii	6.2376622758
+UniRef50_M1LYE3: Flagellar basal body protein FliL	6.2372228082
+UniRef50_M1LYE3: Flagellar basal body protein FliL|g__Clostridium.s__Clostridium_beijerinckii	6.2372228082
+UniRef50_D9SQU6: Two component transcriptional regulator, AraC family	6.2366644269
+UniRef50_D9SQU6: Two component transcriptional regulator, AraC family|g__Clostridium.s__Clostridium_beijerinckii	6.2366644269
+UniRef50_A6LQ14: AMP-dependent synthetase and ligase	6.2354999992
+UniRef50_A6LQ14: AMP-dependent synthetase and ligase|g__Clostridium.s__Clostridium_beijerinckii	6.2354999992
+UniRef50_A3M2D6	6.2337826924
+UniRef50_A3M2D6|g__Acinetobacter.s__Acinetobacter_baumannii	6.2337826924
+UniRef50_L4V7A4	6.2336345134
+UniRef50_L4V7A4|unclassified	6.2336345134
+UniRef50_A9BPH5: Short-chain dehydrogenase/reductase SDR	6.2324628363
+UniRef50_A9BPH5: Short-chain dehydrogenase/reductase SDR|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2324628363
+UniRef50_Q9I1P5	6.2319726728
+UniRef50_Q9I1P5|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2319726728
+UniRef50_O27312: Conserved protein	6.2311709650
+UniRef50_O27312: Conserved protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.8314176245
+UniRef50_O27312: Conserved protein|unclassified	2.3997533405
+UniRef50_UPI00037B08AA: hypothetical protein	6.2305295950
+UniRef50_UPI00037B08AA: hypothetical protein|unclassified	6.2305295950
+UniRef50_F2JLA6: Transposase	6.2299110878
+UniRef50_F2JLA6: Transposase|g__Clostridium.s__Clostridium_beijerinckii	6.2299110878
+UniRef50_T2E9A2: Glycosyl transferases group 1 family protein	6.2293707261
+UniRef50_T2E9A2: Glycosyl transferases group 1 family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2293707261
+UniRef50_A6M2U7: Response regulator receiver sensor signal transduction histidine kinase	6.2284469507
+UniRef50_A6M2U7: Response regulator receiver sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	6.2284469507
+UniRef50_F2JM36: ABC-type transporter, periplasmic subunit family 3	6.2266631646
+UniRef50_F2JM36: ABC-type transporter, periplasmic subunit family 3|g__Clostridium.s__Clostridium_beijerinckii	6.2266631646
+UniRef50_E4PPH7: DNA repair protein RecN	6.2265321046
+UniRef50_E4PPH7: DNA repair protein RecN|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2265321046
+UniRef50_Q1D8I9: Triosephosphate isomerase	6.2261581733
+UniRef50_Q1D8I9: Triosephosphate isomerase|g__Clostridium.s__Clostridium_beijerinckii	6.0996754546
+UniRef50_Q1D8I9: Triosephosphate isomerase|unclassified	0.1264827187
+UniRef50_A6M233: HAD-superfamily hydrolase, subfamily IA, variant 3	6.2256984793
+UniRef50_A6M233: HAD-superfamily hydrolase, subfamily IA, variant 3|g__Clostridium.s__Clostridium_beijerinckii	6.2256984793
+UniRef50_L0GPC8: Acyl-CoA dehydrogenase	6.2229567526
+UniRef50_L0GPC8: Acyl-CoA dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2229567526
+UniRef50_K2AF52	6.2227606315
+UniRef50_K2AF52|unclassified	6.2227606315
+UniRef50_Q1J3T7: 5-carboxy-2-oxohept-3-enedioate decarboxylase HpaG2 subunit	6.2223818519
+UniRef50_Q1J3T7: 5-carboxy-2-oxohept-3-enedioate decarboxylase HpaG2 subunit|g__Deinococcus.s__Deinococcus_radiodurans	6.2223818519
+UniRef50_A4VYZ8	6.2208548596
+UniRef50_A4VYZ8|g__Streptococcus.s__Streptococcus_mutans	6.2208548596
+UniRef50_C0B199: Curved DNA-binding protein	6.2205910032
+UniRef50_C0B199: Curved DNA-binding protein|g__Escherichia.s__Escherichia_coli	6.2205910032
+UniRef50_V9WJP6: Phage prohead protease, HK97 family	6.2201683763
+UniRef50_V9WJP6: Phage prohead protease, HK97 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.2201683763
+UniRef50_P58208: Protein MioC	6.2201428661
+UniRef50_P58208: Protein MioC|g__Escherichia.s__Escherichia_coli	6.2201428661
+UniRef50_P58113: Pirin-like protein CC_1473	6.2187007925
+UniRef50_P58113: Pirin-like protein CC_1473|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2187007925
+UniRef50_H3F1H2	6.2171791303
+UniRef50_H3F1H2|unclassified	6.2171791303
+UniRef50_C5Q852	6.2151209665
+UniRef50_C5Q852|unclassified	6.2151209665
+UniRef50_Q2SHM4: Phosphonoacetaldehyde hydrolase	6.2143916652
+UniRef50_Q2SHM4: Phosphonoacetaldehyde hydrolase|g__Acinetobacter.s__Acinetobacter_baumannii	6.2143916652
+UniRef50_A6LTV3	6.2140897315
+UniRef50_A6LTV3|g__Clostridium.s__Clostridium_beijerinckii	6.2140897315
+UniRef50_S6U6J7: Segregation and condensation protein B (Fragment)	6.2132872617
+UniRef50_S6U6J7: Segregation and condensation protein B (Fragment)|unclassified	6.2132872617
+UniRef50_T1Y9Z4	6.2124364309
+UniRef50_T1Y9Z4|g__Staphylococcus.s__Staphylococcus_aureus	6.2124364309
+UniRef50_W7PZ43	6.2122149932
+UniRef50_W7PZ43|unclassified	6.2122149932
+UniRef50_A0Q3H7: Riboflavin biosynthesis protein RibBA	6.2116583330
+UniRef50_A0Q3H7: Riboflavin biosynthesis protein RibBA|g__Streptococcus.s__Streptococcus_agalactiae	3.3340352111
+UniRef50_A0Q3H7: Riboflavin biosynthesis protein RibBA|g__Clostridium.s__Clostridium_beijerinckii	2.8343989872
+UniRef50_A0Q3H7: Riboflavin biosynthesis protein RibBA|unclassified	0.0432241347
+UniRef50_A6LU78: RNA polymerase, sigma-24 subunit, ECF subfamily	6.2111801242
+UniRef50_A6LU78: RNA polymerase, sigma-24 subunit, ECF subfamily|g__Clostridium.s__Clostridium_beijerinckii	6.2111801242
+UniRef50_B9J779: Methionine--tRNA ligase protein	6.2111801242
+UniRef50_B9J779: Methionine--tRNA ligase protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.2111801242
+UniRef50_C6LQB4: Deoxyribose-phosphate aldolase	6.2111801242
+UniRef50_C6LQB4: Deoxyribose-phosphate aldolase|g__Clostridium.s__Clostridium_beijerinckii	6.2111801242
+UniRef50_F9YWG0	6.2111801242
+UniRef50_F9YWG0|g__Propionibacterium.s__Propionibacterium_acnes	6.2111801242
+UniRef50_H4AQB7: Acetyltransferase, GNAT family	6.2111801242
+UniRef50_H4AQB7: Acetyltransferase, GNAT family|g__Staphylococcus.s__Staphylococcus_aureus	6.2111801242
+UniRef50_I6X4E6	6.2111801242
+UniRef50_I6X4E6|g__Propionibacterium.s__Propionibacterium_acnes	6.2111801242
+UniRef50_J9UEN1	6.2111801242
+UniRef50_J9UEN1|g__Staphylococcus.s__Staphylococcus_aureus	6.2111801242
+UniRef50_L8UK30	6.2111801242
+UniRef50_L8UK30|unclassified	6.2111801242
+UniRef50_P0CF06: Insertion element IS1 protein InsA	6.2111801242
+UniRef50_P0CF06: Insertion element IS1 protein InsA|g__Escherichia.s__Escherichia_coli	6.2111801242
+UniRef50_Q2YXY6	6.2111801242
+UniRef50_Q2YXY6|g__Staphylococcus.s__Staphylococcus_aureus	6.2111801242
+UniRef50_Q5HM56: Heme-degrading monooxygenase	6.2111801242
+UniRef50_Q5HM56: Heme-degrading monooxygenase|g__Staphylococcus.s__Staphylococcus_epidermidis	6.2111801242
+UniRef50_W1GFN8: Inner membrane protein translocase component YidC, long form	6.2111801242
+UniRef50_W1GFN8: Inner membrane protein translocase component YidC, long form|g__Escherichia.s__Escherichia_coli	6.2111801242
+UniRef50_K3JJZ3	6.2103498719
+UniRef50_K3JJZ3|unclassified	6.2103498719
+UniRef50_B9E397	6.2101763920
+UniRef50_B9E397|g__Clostridium.s__Clostridium_beijerinckii	6.2101763920
+UniRef50_G3ZGB0	6.2099693134
+UniRef50_G3ZGB0|unclassified	6.2099693134
+UniRef50_N2I8V8: Autotransporter (AT) family porin	6.2049835455
+UniRef50_N2I8V8: Autotransporter (AT) family porin|g__Escherichia.s__Escherichia_coli	6.2049835455
+UniRef50_J1JZQ3	6.2048297897
+UniRef50_J1JZQ3|unclassified	6.2048297897
+UniRef50_Q3J3J9	6.2033605219
+UniRef50_Q3J3J9|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0000000000
+UniRef50_Q3J3J9|unclassified	1.2033605219
+UniRef50_A4VMJ3: Transcriptional regulator FleQ	6.2032997635
+UniRef50_A4VMJ3: Transcriptional regulator FleQ|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.2032997635
+UniRef50_UPI00047280DF: hypothetical protein, partial	6.2020012205
+UniRef50_UPI00047280DF: hypothetical protein, partial|unclassified	6.2020012205
+UniRef50_UPI00035DAB5C: transposase ISM1, partial	6.2019230769
+UniRef50_UPI00035DAB5C: transposase ISM1, partial|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.2019230769
+UniRef50_H9U2W8: Transposase	6.2009312193
+UniRef50_H9U2W8: Transposase|g__Acinetobacter.s__Acinetobacter_baumannii	6.2009312193
+UniRef50_U4PSZ5	6.1976557017
+UniRef50_U4PSZ5|unclassified	6.1976557017
+UniRef50_D7CVL6: Deoxynucleoside kinase	6.1975173421
+UniRef50_D7CVL6: Deoxynucleoside kinase|g__Deinococcus.s__Deinococcus_radiodurans	6.1975173421
+UniRef50_A5F8Z5: Oxidoreductase Tas, aldo/keto reductase family	6.1955702811
+UniRef50_A5F8Z5: Oxidoreductase Tas, aldo/keto reductase family|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1955702811
+UniRef50_J8VCI1	6.1954614274
+UniRef50_J8VCI1|unclassified	6.1954614274
+UniRef50_B5Y1Z5: Protein ApaG	6.1949235520
+UniRef50_B5Y1Z5: Protein ApaG|g__Escherichia.s__Escherichia_coli	6.1949235520
+UniRef50_R1FAU5	6.1942357532
+UniRef50_R1FAU5|unclassified	6.1942357532
+UniRef50_S6B4M0: Threonine dehydrogenase	6.1940462830
+UniRef50_S6B4M0: Threonine dehydrogenase|g__Streptococcus.s__Streptococcus_agalactiae	6.1940462830
+UniRef50_K4LCD0: Transposase	6.1939345508
+UniRef50_K4LCD0: Transposase|g__Clostridium.s__Clostridium_beijerinckii	6.1939345508
+UniRef50_F2JL25: DNA topoisomerase	6.1936392930
+UniRef50_F2JL25: DNA topoisomerase|g__Clostridium.s__Clostridium_beijerinckii	6.1936392930
+UniRef50_X5EFM7: Glycosyl transferase	6.1910241893
+UniRef50_X5EFM7: Glycosyl transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1910241893
+UniRef50_U5MQ33: ATP synthase subunit a	6.1910006293
+UniRef50_U5MQ33: ATP synthase subunit a|g__Clostridium.s__Clostridium_beijerinckii	6.1910006293
+UniRef50_Q9ZMZ4: Urease subunit alpha	6.1895522762
+UniRef50_Q9ZMZ4: Urease subunit alpha|g__Helicobacter.s__Helicobacter_pylori	6.1895522762
+UniRef50_Q1QVC8: UPF0042 nucleotide-binding protein Csal_2229	6.1889874663
+UniRef50_Q1QVC8: UPF0042 nucleotide-binding protein Csal_2229|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1889874663
+UniRef50_A6LV27: Sigma54 specific transcriptional regulator, Fis family	6.1874022625
+UniRef50_A6LV27: Sigma54 specific transcriptional regulator, Fis family|g__Clostridium.s__Clostridium_beijerinckii	6.1874022625
+UniRef50_P55717: Probable ATP synthase y4yI	6.1873674500
+UniRef50_P55717: Probable ATP synthase y4yI|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1873674500
+UniRef50_I6RKC9	6.1864315782
+UniRef50_I6RKC9|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1864315782
+UniRef50_A6VAA6	6.1864006627
+UniRef50_A6VAA6|unclassified	6.1864006627
+UniRef50_L0ILT4: ABC-type nitrate/sulfonate/bicarbonate transport system, permease component	6.1850848368
+UniRef50_L0ILT4: ABC-type nitrate/sulfonate/bicarbonate transport system, permease component|g__Clostridium.s__Clostridium_beijerinckii	6.1850848368
+UniRef50_R7C4X7: Metal dependent phosphohydrolase	6.1849877664
+UniRef50_R7C4X7: Metal dependent phosphohydrolase|g__Clostridium.s__Clostridium_beijerinckii	6.1849877664
+UniRef50_A0A014MJV1: Crp/Fnr family transcriptional regulator (Fragment)	6.1844614420
+UniRef50_A0A014MJV1: Crp/Fnr family transcriptional regulator (Fragment)|unclassified	6.1844614420
+UniRef50_D5BS30: Sigma-54 factor, interaction domain-containing protein	6.1841605999
+UniRef50_D5BS30: Sigma-54 factor, interaction domain-containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.1841605999
+UniRef50_A4VP76: Lipoprotein, putative	6.1839033014
+UniRef50_A4VP76: Lipoprotein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1839033014
+UniRef50_E6JQR4: ISSep1-like transposase	6.1836620240
+UniRef50_E6JQR4: ISSep1-like transposase|unclassified	6.1836620240
+UniRef50_A8Y5W5: Putative arsenate reductase ArsCb (Fragment)	6.1831285530
+UniRef50_A8Y5W5: Putative arsenate reductase ArsCb (Fragment)|unclassified	6.1831285530
+UniRef50_Q51383: 2Fe-2S ferredoxin	6.1827931340
+UniRef50_Q51383: 2Fe-2S ferredoxin|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1827931340
+UniRef50_A3SIS7	6.1820636578
+UniRef50_A3SIS7|unclassified	6.1820636578
+UniRef50_B8A1Z2	6.1819831774
+UniRef50_B8A1Z2|unclassified	6.1819831774
+UniRef50_F5M001	6.1804614173
+UniRef50_F5M001|unclassified	6.1804614173
+UniRef50_E8JET5	6.1796219897
+UniRef50_E8JET5|unclassified	6.1796219897
+UniRef50_V5VFY5: Transport protein (Permease)	6.1795171691
+UniRef50_V5VFY5: Transport protein (Permease)|g__Acinetobacter.s__Acinetobacter_baumannii	6.1795171691
+UniRef50_P33345: Putative molybdate metabolism regulator	6.1788134593
+UniRef50_P33345: Putative molybdate metabolism regulator|g__Escherichia.s__Escherichia_coli	6.1788134593
+UniRef50_R7B083	6.1757437405
+UniRef50_R7B083|g__Clostridium.s__Clostridium_beijerinckii	6.1757437405
+UniRef50_O27691	6.1747452918
+UniRef50_O27691|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.1747452918
+UniRef50_A6VBN7	6.1728395062
+UniRef50_A6VBN7|unclassified	6.1728395062
+UniRef50_C6SLG1	6.1728395062
+UniRef50_C6SLG1|unclassified	6.1728395062
+UniRef50_P76076	6.1728395062
+UniRef50_P76076|g__Escherichia.s__Escherichia_coli	6.1728395062
+UniRef50_Q1RCQ3	6.1728395062
+UniRef50_Q1RCQ3|g__Escherichia.s__Escherichia_coli	6.1728395062
+UniRef50_Q9V0E3: Ribosome biogenesis protein Nop10	6.1728395062
+UniRef50_Q9V0E3: Ribosome biogenesis protein Nop10|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.1728395062
+UniRef50_S5KD15	6.1728395062
+UniRef50_S5KD15|unclassified	6.1728395062
+UniRef50_UPI000225BC11: redox-sensing transcriptional repressor Rex	6.1728395062
+UniRef50_UPI000225BC11: redox-sensing transcriptional repressor Rex|unclassified	6.1728395062
+UniRef50_I1AWS6: Replication initiation protein RepC	6.1714099185
+UniRef50_I1AWS6: Replication initiation protein RepC|unclassified	6.1714099185
+UniRef50_C6BD53: MscS Mechanosensitive ion channel	6.1707160300
+UniRef50_C6BD53: MscS Mechanosensitive ion channel|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1707160300
+UniRef50_Z1LHY4	6.1688671850
+UniRef50_Z1LHY4|unclassified	6.1688671850
+UniRef50_A6M083	6.1677707504
+UniRef50_A6M083|g__Clostridium.s__Clostridium_beijerinckii	6.1677707504
+UniRef50_P0ABV4: Biopolymer transport protein ExbD	6.1642117335
+UniRef50_P0ABV4: Biopolymer transport protein ExbD|g__Escherichia.s__Escherichia_coli	6.1642117335
+UniRef50_W8T2N2: Mannitol-1-phosphate 5-dehydrogenase	6.1607135185
+UniRef50_W8T2N2: Mannitol-1-phosphate 5-dehydrogenase|unclassified	6.1607135185
+UniRef50_P76111: Inner membrane protein YdcZ	6.1587050928
+UniRef50_P76111: Inner membrane protein YdcZ|g__Escherichia.s__Escherichia_coli	6.1587050928
+UniRef50_UPI00036DADFE: hypothetical protein	6.1565907463
+UniRef50_UPI00036DADFE: hypothetical protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1565907463
+UniRef50_M1MN84: Transcriptional regulator, TetR family	6.1560426640
+UniRef50_M1MN84: Transcriptional regulator, TetR family|g__Clostridium.s__Clostridium_beijerinckii	6.1560426640
+UniRef50_A4WUU1	6.1552934972
+UniRef50_A4WUU1|unclassified	6.1552934972
+UniRef50_Q66FE1: Thiol:disulfide interchange protein DsbD	6.1544741253
+UniRef50_Q66FE1: Thiol:disulfide interchange protein DsbD|g__Escherichia.s__Escherichia_coli	6.1544741253
+UniRef50_K3KRS9: Sulfurtransferase	6.1543363300
+UniRef50_K3KRS9: Sulfurtransferase|g__Escherichia.s__Escherichia_coli	6.1543363300
+UniRef50_G7MBZ4: PTS system transcriptional activator	6.1522753469
+UniRef50_G7MBZ4: PTS system transcriptional activator|g__Clostridium.s__Clostridium_beijerinckii	6.1522753469
+UniRef50_A5UNK3	6.1520260278
+UniRef50_A5UNK3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.1520260278
+UniRef50_G9AFA8: Sugar ABC transporter, ATP-binding protein	6.1497714608
+UniRef50_G9AFA8: Sugar ABC transporter, ATP-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.1497714608
+UniRef50_S4MU14	6.1462515721
+UniRef50_S4MU14|unclassified	6.1462515721
+UniRef50_I0GCY5	6.1458645648
+UniRef50_I0GCY5|unclassified	6.1458645648
+UniRef50_A2RF77: UPF0342 protein SpyM51181	6.1447406863
+UniRef50_A2RF77: UPF0342 protein SpyM51181|unclassified	3.1948881789
+UniRef50_A2RF77: UPF0342 protein SpyM51181|g__Streptococcus.s__Streptococcus_mutans	2.9498525074
+UniRef50_I4XW05: Transcriptional regulator, TetR family	6.1433864653
+UniRef50_I4XW05: Transcriptional regulator, TetR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1433864653
+UniRef50_F0K4V5: Proline/glycine betaine ABC-type transport system, ATPase component	6.1430037515
+UniRef50_F0K4V5: Proline/glycine betaine ABC-type transport system, ATPase component|g__Clostridium.s__Clostridium_beijerinckii	6.1430037515
+UniRef50_Q5LWE9: Rhomboid family protein	6.1429918195
+UniRef50_Q5LWE9: Rhomboid family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.1429918195
+UniRef50_D8JKU2	6.1425613804
+UniRef50_D8JKU2|g__Acinetobacter.s__Acinetobacter_baumannii	5.3071394923
+UniRef50_D8JKU2|unclassified	0.8354218881
+UniRef50_Z6AYK2	6.1425135056
+UniRef50_Z6AYK2|unclassified	6.1425135056
+UniRef50_P37774	6.1398616509
+UniRef50_P37774|g__Escherichia.s__Escherichia_coli	6.1398616509
+UniRef50_E8SHY9: Metallo-beta-lactamase superfamily domain protein in prophage	6.1389590637
+UniRef50_E8SHY9: Metallo-beta-lactamase superfamily domain protein in prophage|unclassified	3.5944298016
+UniRef50_E8SHY9: Metallo-beta-lactamase superfamily domain protein in prophage|g__Staphylococcus.s__Staphylococcus_aureus	2.5445292621
+UniRef50_U4QJA4: Extracellular ligand-binding receptor	6.1388141644
+UniRef50_U4QJA4: Extracellular ligand-binding receptor|g__Clostridium.s__Clostridium_beijerinckii	6.1388141644
+UniRef50_B4U0E8: Transcriptional regulator AraC family	6.1361366457
+UniRef50_B4U0E8: Transcriptional regulator AraC family|g__Streptococcus.s__Streptococcus_agalactiae	6.1361366457
+UniRef50_H8LBN6: PTS system, mannose/fructose/sorbose-specific IID component	6.1353811324
+UniRef50_H8LBN6: PTS system, mannose/fructose/sorbose-specific IID component|g__Clostridium.s__Clostridium_beijerinckii	6.1353811324
+UniRef50_A4WWT8	6.1352966283
+UniRef50_A4WWT8|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.7878787879
+UniRef50_A4WWT8|unclassified	2.3474178404
+UniRef50_A5UJC7	6.1349693252
+UniRef50_A5UJC7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.1349693252
+UniRef50_F0KLI1: Phosphoribosyl-dephospho-CoA transferase	6.1349693252
+UniRef50_F0KLI1: Phosphoribosyl-dephospho-CoA transferase|g__Acinetobacter.s__Acinetobacter_baumannii	6.1349693252
+UniRef50_F9KMW3: Conserved domain protein	6.1349693252
+UniRef50_F9KMW3: Conserved domain protein|unclassified	6.1349693252
+UniRef50_D1CSG1: Putative cell rkpT2 protein (Fragment)	6.1339707724
+UniRef50_D1CSG1: Putative cell rkpT2 protein (Fragment)|unclassified	6.1339707724
+UniRef50_H3VHT7	6.1325981002
+UniRef50_H3VHT7|unclassified	6.1325981002
+UniRef50_B3T1S1	6.1323870189
+UniRef50_B3T1S1|unclassified	6.1323870189
+UniRef50_Q9RYT7: Glucan synthase 1-related protein	6.1321826028
+UniRef50_Q9RYT7: Glucan synthase 1-related protein|g__Deinococcus.s__Deinococcus_radiodurans	6.1321826028
+UniRef50_A1B623	6.1264924998
+UniRef50_A1B623|unclassified	6.1264924998
+UniRef50_X5K129	6.1264767169
+UniRef50_X5K129|g__Streptococcus.s__Streptococcus_agalactiae	6.1264767169
+UniRef50_M4NGZ8: ATP-dependent zinc metalloprotease FtsH	6.1263052343
+UniRef50_M4NGZ8: ATP-dependent zinc metalloprotease FtsH|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1263052343
+UniRef50_D4HBR1: Mannose-6-phosphate isomerase, class I	6.1224332876
+UniRef50_D4HBR1: Mannose-6-phosphate isomerase, class I|g__Propionibacterium.s__Propionibacterium_acnes	6.1224332876
+UniRef50_F5LPH3	6.1219139836
+UniRef50_F5LPH3|unclassified	6.1219139836
+UniRef50_W1YLD9	6.1214721948
+UniRef50_W1YLD9|unclassified	6.1214721948
+UniRef50_UPI0000379B1B: hypothetical protein	6.1200589077
+UniRef50_UPI0000379B1B: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.8309178744
+UniRef50_UPI0000379B1B: hypothetical protein|unclassified	1.2891410333
+UniRef50_Q9JSN0: Pimeloyl-[acyl-carrier protein] methyl ester esterase	6.1193708253
+UniRef50_Q9JSN0: Pimeloyl-[acyl-carrier protein] methyl ester esterase|g__Neisseria.s__Neisseria_meningitidis	6.1193708253
+UniRef50_I7BX60	6.1187453517
+UniRef50_I7BX60|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1187453517
+UniRef50_G2T7W7: Dienelactone hydrolase	6.1175482328
+UniRef50_G2T7W7: Dienelactone hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1175482328
+UniRef50_C4Z7U3: Glycoside Hydrolase Family 105-like unsaturated rhamnogalacturonyl hydrolase	6.1168601968
+UniRef50_C4Z7U3: Glycoside Hydrolase Family 105-like unsaturated rhamnogalacturonyl hydrolase|g__Clostridium.s__Clostridium_beijerinckii	6.1168601968
+UniRef50_P0ADQ9	6.1162079511
+UniRef50_P0ADQ9|g__Escherichia.s__Escherichia_coli	6.1162079511
+UniRef50_P39297: Lipoprotein BsmA	6.1162079511
+UniRef50_P39297: Lipoprotein BsmA|g__Escherichia.s__Escherichia_coli	6.1162079511
+UniRef50_H2JJL8: Anaerobic ribonucleoside-triphosphate reductase-activating protein	6.1156571115
+UniRef50_H2JJL8: Anaerobic ribonucleoside-triphosphate reductase-activating protein|g__Clostridium.s__Clostridium_beijerinckii	6.1156571115
+UniRef50_Q88MV0: Tyrosine recombinase XerD	6.1156113901
+UniRef50_Q88MV0: Tyrosine recombinase XerD|g__Acinetobacter.s__Acinetobacter_baumannii	6.1156113901
+UniRef50_B7V5F2: Alginate biosynthesis protein AlgZ/FimS	6.1150581903
+UniRef50_B7V5F2: Alginate biosynthesis protein AlgZ/FimS|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1150581903
+UniRef50_N2UC59: Sodium symporter family protein	6.1145020208
+UniRef50_N2UC59: Sodium symporter family protein|g__Escherichia.s__Escherichia_coli	6.1145020208
+UniRef50_F3IWE5: Glycyl-tRNA synthetase subunit beta (Fragment)	6.1142902273
+UniRef50_F3IWE5: Glycyl-tRNA synthetase subunit beta (Fragment)|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1142902273
+UniRef50_K2AWI3	6.1115294284
+UniRef50_K2AWI3|unclassified	6.1115294284
+UniRef50_E3H2R2: PTS system, mannose/fructose/sorbose family, IIC component	6.1109569282
+UniRef50_E3H2R2: PTS system, mannose/fructose/sorbose family, IIC component|g__Clostridium.s__Clostridium_beijerinckii	6.1109569282
+UniRef50_UPI000368C576: hypothetical protein	6.1099498417
+UniRef50_UPI000368C576: hypothetical protein|unclassified	6.1099498417
+UniRef50_U5MS83	6.1092289353
+UniRef50_U5MS83|g__Clostridium.s__Clostridium_beijerinckii	6.1092289353
+UniRef50_E7MRD5	6.1076508320
+UniRef50_E7MRD5|g__Staphylococcus.s__Staphylococcus_aureus	6.1076508320
+UniRef50_A4Y0B5: Lipopolysaccharide biosynthesis protein	6.1076491746
+UniRef50_A4Y0B5: Lipopolysaccharide biosynthesis protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.1076491746
+UniRef50_B8DCV0: Transcriptional regulator, GntR family	6.1054994388
+UniRef50_B8DCV0: Transcriptional regulator, GntR family|g__Clostridium.s__Clostridium_beijerinckii	6.1054994388
+UniRef50_A1B0E5: MOSC domain containing protein	6.1052727445
+UniRef50_A1B0E5: MOSC domain containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.1052727445
+UniRef50_Q9I526: Cysteine synthase B	6.1016853973
+UniRef50_Q9I526: Cysteine synthase B|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8911700784
+UniRef50_Q9I526: Cysteine synthase B|unclassified	0.2105153189
+UniRef50_A5W7U2: Protein SprT	6.0993975904
+UniRef50_A5W7U2: Protein SprT|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0993975904
+UniRef50_A1VMA0: 50S ribosomal protein L19	6.0989782352
+UniRef50_A1VMA0: 50S ribosomal protein L19|g__Streptococcus.s__Streptococcus_mutans	6.0989782352
+UniRef50_A5UJV5	6.0975609756
+UniRef50_A5UJV5|unclassified	6.0975609756
+UniRef50_K8C187: Aspartyl-tRNA synthetase	6.0975609756
+UniRef50_K8C187: Aspartyl-tRNA synthetase|g__Staphylococcus.s__Staphylococcus_epidermidis	6.0975609756
+UniRef50_P30192	6.0975609756
+UniRef50_P30192|g__Escherichia.s__Escherichia_coli	6.0975609756
+UniRef50_V0SWY0	6.0975609756
+UniRef50_V0SWY0|unclassified	6.0975609756
+UniRef50_X2M070	6.0975609756
+UniRef50_X2M070|g__Escherichia.s__Escherichia_coli	6.0975609756
+UniRef50_UPI0002657B20: PREDICTED: outer membrane efflux protein BepC-like, partial	6.0969766970
+UniRef50_UPI0002657B20: PREDICTED: outer membrane efflux protein BepC-like, partial|unclassified	6.0969766970
+UniRef50_Q3KA14: LysR family regulatory protein	6.0961698030
+UniRef50_Q3KA14: LysR family regulatory protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0961698030
+UniRef50_UPI00047CA81A: hypothetical protein	6.0955432251
+UniRef50_UPI00047CA81A: hypothetical protein|unclassified	6.0955432251
+UniRef50_V9T176: Phage tail length tape measure protein	6.0954155001
+UniRef50_V9T176: Phage tail length tape measure protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0211286107
+UniRef50_V9T176: Phage tail length tape measure protein|unclassified	0.0742868894
+UniRef50_U6AFS4: Integral membrane sensor hybrid histidine kinase	6.0929751459
+UniRef50_U6AFS4: Integral membrane sensor hybrid histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0929751459
+UniRef50_Q00518: Type II secretion system protein K	6.0925417949
+UniRef50_Q00518: Type II secretion system protein K|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0925417949
+UniRef50_P0AD55	6.0916901200
+UniRef50_P0AD55|g__Escherichia.s__Escherichia_coli	6.0916901200
+UniRef50_UPI0003B64F01: 30S ribosomal protein S21	6.0916565460
+UniRef50_UPI0003B64F01: 30S ribosomal protein S21|unclassified	6.0916565460
+UniRef50_F1B2S1	6.0897642428
+UniRef50_F1B2S1|unclassified	6.0897642428
+UniRef50_P13982: Carbamate kinase	6.0888704866
+UniRef50_P13982: Carbamate kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9313338470
+UniRef50_P13982: Carbamate kinase|unclassified	1.1575366396
+UniRef50_M4X227	6.0886778643
+UniRef50_M4X227|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8525159051
+UniRef50_M4X227|unclassified	1.2361619591
+UniRef50_C1D0K2	6.0868980361
+UniRef50_C1D0K2|g__Deinococcus.s__Deinococcus_radiodurans	3.9501458993
+UniRef50_C1D0K2|unclassified	2.1367521368
+UniRef50_W8U3V5: Group II intron-encoded protein LtrA	6.0867644571
+UniRef50_W8U3V5: Group II intron-encoded protein LtrA|g__Clostridium.s__Clostridium_beijerinckii	6.0867644571
+UniRef50_W8X1S4: Tricarboxylate transport membrane protein TctA	6.0853343581
+UniRef50_W8X1S4: Tricarboxylate transport membrane protein TctA|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0853343581
+UniRef50_D9SQP5: Metal dependent phosphohydrolase	6.0819896922
+UniRef50_D9SQP5: Metal dependent phosphohydrolase|g__Clostridium.s__Clostridium_beijerinckii	6.0819896922
+UniRef50_Q8E2K7: DNA replication and repair protein RecF	6.0808051685
+UniRef50_Q8E2K7: DNA replication and repair protein RecF|g__Streptococcus.s__Streptococcus_agalactiae	6.0808051685
+UniRef50_Q034G9: 6-phospho-alpha-glucosidase 2	6.0795080801
+UniRef50_Q034G9: 6-phospho-alpha-glucosidase 2|g__Escherichia.s__Escherichia_coli	4.5286008414
+UniRef50_Q034G9: 6-phospho-alpha-glucosidase 2|g__Clostridium.s__Clostridium_beijerinckii	1.5509072387
+UniRef50_A0A023LC15	6.0787778321
+UniRef50_A0A023LC15|g__Escherichia.s__Escherichia_coli	6.0787778321
+UniRef50_A3M2E8	6.0787126737
+UniRef50_A3M2E8|g__Acinetobacter.s__Acinetobacter_baumannii	6.0787126737
+UniRef50_Q7CH39: Outer membrane protein assembly factor BamE	6.0759727088
+UniRef50_Q7CH39: Outer membrane protein assembly factor BamE|g__Escherichia.s__Escherichia_coli	6.0759727088
+UniRef50_Q8CUB0	6.0756802937
+UniRef50_Q8CUB0|unclassified	6.0756802937
+UniRef50_F0Y880	6.0754963703
+UniRef50_F0Y880|unclassified	6.0754963703
+UniRef50_H0DII2	6.0736892174
+UniRef50_H0DII2|g__Staphylococcus.s__Staphylococcus_epidermidis	6.0736892174
+UniRef50_P71349: L-serine dehydratase	6.0733846568
+UniRef50_P71349: L-serine dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.2101821554
+UniRef50_P71349: L-serine dehydratase|g__Acinetobacter.s__Acinetobacter_baumannii	0.7739938080
+UniRef50_P71349: L-serine dehydratase|unclassified	0.0892086934
+UniRef50_Q5NGP7: Arabinose 5-phosphate isomerase KdsD	6.0733035932
+UniRef50_Q5NGP7: Arabinose 5-phosphate isomerase KdsD|g__Acinetobacter.s__Acinetobacter_baumannii	5.8762575892
+UniRef50_Q5NGP7: Arabinose 5-phosphate isomerase KdsD|unclassified	0.1970460040
+UniRef50_W9VL38: Diaminopimelate decarboxylase	6.0722685019
+UniRef50_W9VL38: Diaminopimelate decarboxylase|unclassified	6.0722685019
+UniRef50_I6RS84: Type 4 fimbrial biogenesis protein PilX	6.0712907415
+UniRef50_I6RS84: Type 4 fimbrial biogenesis protein PilX|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9350918791
+UniRef50_I6RS84: Type 4 fimbrial biogenesis protein PilX|unclassified	0.1361988624
+UniRef50_Q8PWQ2: UPF0107 protein MM_1524	6.0704131355
+UniRef50_Q8PWQ2: UPF0107 protein MM_1524|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.0704131355
+UniRef50_G0DSV1	6.0701521683
+UniRef50_G0DSV1|g__Propionibacterium.s__Propionibacterium_acnes	6.0701521683
+UniRef50_D4HCK8	6.0690943044
+UniRef50_D4HCK8|g__Propionibacterium.s__Propionibacterium_acnes	6.0690943044
+UniRef50_H4WUE8	6.0684513973
+UniRef50_H4WUE8|g__Escherichia.s__Escherichia_coli	6.0684513973
+UniRef50_P39587: Putative ribosomal RNA large subunit methyltransferase YwbD	6.0666345890
+UniRef50_P39587: Putative ribosomal RNA large subunit methyltransferase YwbD|g__Clostridium.s__Clostridium_beijerinckii	6.0666345890
+UniRef50_Q04B15: Predicted metal-dependent hydrolase of the TIM-barrel fold	6.0642841577
+UniRef50_Q04B15: Predicted metal-dependent hydrolase of the TIM-barrel fold|g__Streptococcus.s__Streptococcus_agalactiae	6.0642841577
+UniRef50_K9ZXW7: Undecaprenyl-phosphate galactose phosphotransferase, WbaP/exopolysaccharide biosynthesis polyprenyl glycosylphosphotransferase	6.0641804818
+UniRef50_K9ZXW7: Undecaprenyl-phosphate galactose phosphotransferase, WbaP/exopolysaccharide biosynthesis polyprenyl glycosylphosphotransferase|g__Deinococcus.s__Deinococcus_radiodurans	6.0641804818
+UniRef50_T2ELK1: Sulfotransferase family protein	6.0641604181
+UniRef50_T2ELK1: Sulfotransferase family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0641604181
+UniRef50_A7MNJ8	6.0637083647
+UniRef50_A7MNJ8|unclassified	6.0637083647
+UniRef50_Q87VL9: High-affinity branched-chain amino acid ABC transporter, permease protein BraE	6.0630980787
+UniRef50_Q87VL9: High-affinity branched-chain amino acid ABC transporter, permease protein BraE|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0630980787
+UniRef50_Q9I4U2: Acyl-homoserine lactone acylase QuiP	6.0630245404
+UniRef50_Q9I4U2: Acyl-homoserine lactone acylase QuiP|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0630245404
+UniRef50_A0A026FAT8: Sugar ABC transporter substrate-binding protein	6.0627333355
+UniRef50_A0A026FAT8: Sugar ABC transporter substrate-binding protein|g__Escherichia.s__Escherichia_coli	6.0627333355
+UniRef50_I1ALS6: Flp pilus assembly protein TadG	6.0615336364
+UniRef50_I1ALS6: Flp pilus assembly protein TadG|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4308230001
+UniRef50_I1ALS6: Flp pilus assembly protein TadG|unclassified	0.6307106363
+UniRef50_E2ZPB5	6.0611069785
+UniRef50_E2ZPB5|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0611069785
+UniRef50_Q9I5U8: Thiosulfate sulfurtransferase GlpE	6.0608286806
+UniRef50_Q9I5U8: Thiosulfate sulfurtransferase GlpE|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0608286806
+UniRef50_B7VB78	6.0606060606
+UniRef50_B7VB78|unclassified	6.0606060606
+UniRef50_C5N2N9	6.0606060606
+UniRef50_C5N2N9|g__Staphylococcus.s__Staphylococcus_aureus	6.0606060606
+UniRef50_C6SPT2: Predicted periplasmic or secreted lipoprotein	6.0606060606
+UniRef50_C6SPT2: Predicted periplasmic or secreted lipoprotein|g__Streptococcus.s__Streptococcus_mutans	6.0606060606
+UniRef50_D9PXD9: Predicted biotin biosynthesis protein	6.0606060606
+UniRef50_D9PXD9: Predicted biotin biosynthesis protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	6.0606060606
+UniRef50_P76406	6.0606060606
+UniRef50_P76406|g__Escherichia.s__Escherichia_coli	6.0606060606
+UniRef50_Q0FPA9	6.0606060606
+UniRef50_Q0FPA9|unclassified	6.0606060606
+UniRef50_Q5HRG9: Protein VraX	6.0606060606
+UniRef50_Q5HRG9: Protein VraX|g__Staphylococcus.s__Staphylococcus_epidermidis	6.0606060606
+UniRef50_Q9RVI9	6.0606060606
+UniRef50_Q9RVI9|g__Deinococcus.s__Deinococcus_radiodurans	6.0606060606
+UniRef50_U9Z3I5	6.0606060606
+UniRef50_U9Z3I5|unclassified	6.0606060606
+UniRef50_W0YM34: Protein YqjC	6.0606060606
+UniRef50_W0YM34: Protein YqjC|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0606060606
+UniRef50_UPI000364022E: hypothetical protein	6.0596987940
+UniRef50_UPI000364022E: hypothetical protein|unclassified	6.0596987940
+UniRef50_UPI00037D1824: hypothetical protein	6.0596515740
+UniRef50_UPI00037D1824: hypothetical protein|unclassified	6.0596515740
+UniRef50_I0KPE5: Outer membrane receptor for ferric coprogen and ferric-rhodotorulic acid	6.0586640272
+UniRef50_I0KPE5: Outer membrane receptor for ferric coprogen and ferric-rhodotorulic acid|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0586640272
+UniRef50_R5TGD1: Cobalt import ATP-binding protein CbiO 2	6.0573275177
+UniRef50_R5TGD1: Cobalt import ATP-binding protein CbiO 2|g__Clostridium.s__Clostridium_beijerinckii	6.0573275177
+UniRef50_Q46793	6.0573137152
+UniRef50_Q46793|g__Escherichia.s__Escherichia_coli	6.0573137152
+UniRef50_F4A619: GTPase HflX	6.0572797494
+UniRef50_F4A619: GTPase HflX|g__Clostridium.s__Clostridium_beijerinckii	6.0572797494
+UniRef50_V9QXD5: Peptidase P60	6.0569528347
+UniRef50_V9QXD5: Peptidase P60|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9925942484
+UniRef50_V9QXD5: Peptidase P60|unclassified	0.0643585863
+UniRef50_B0VS88: Putative acetyltransferase (Partial)	6.0567443084
+UniRef50_B0VS88: Putative acetyltransferase (Partial)|g__Acinetobacter.s__Acinetobacter_baumannii	6.0567443084
+UniRef50_X1KF22: Marine sediment metagenome DNA, contig: S03H2_S31543 (Fragment)	6.0557965224
+UniRef50_X1KF22: Marine sediment metagenome DNA, contig: S03H2_S31543 (Fragment)|unclassified	6.0557965224
+UniRef50_R6FNM8: DEAD/DEAH box helicase domain protein	6.0555061937
+UniRef50_R6FNM8: DEAD/DEAH box helicase domain protein|g__Clostridium.s__Clostridium_beijerinckii	6.0555061937
+UniRef50_A6M1G7: Thiamine pyrophosphate protein domain protein TPP-binding	6.0553710516
+UniRef50_A6M1G7: Thiamine pyrophosphate protein domain protein TPP-binding|g__Clostridium.s__Clostridium_beijerinckii	6.0553710516
+UniRef50_V5V9L8: Glycine cleavage T protein	6.0545920939
+UniRef50_V5V9L8: Glycine cleavage T protein|g__Acinetobacter.s__Acinetobacter_baumannii	6.0545920939
+UniRef50_A6LV94	6.0538737250
+UniRef50_A6LV94|g__Clostridium.s__Clostridium_beijerinckii	6.0538737250
+UniRef50_C1DRR2: 3-phosphoshikimate 1-carboxyvinyltransferase	6.0530449912
+UniRef50_C1DRR2: 3-phosphoshikimate 1-carboxyvinyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0530449912
+UniRef50_Q9I6Z0: 8-oxoguanine deaminase	6.0517904125
+UniRef50_Q9I6Z0: 8-oxoguanine deaminase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7983019103
+UniRef50_Q9I6Z0: 8-oxoguanine deaminase|unclassified	0.2534885022
+UniRef50_P77609: Protein FlxA	6.0514510666
+UniRef50_P77609: Protein FlxA|g__Escherichia.s__Escherichia_coli	6.0514510666
+UniRef50_D9QTB8: Oxidoreductase domain protein	6.0505264326
+UniRef50_D9QTB8: Oxidoreductase domain protein|g__Clostridium.s__Clostridium_beijerinckii	6.0505264326
+UniRef50_D9SMY3: RNA polymerase sigma factor	6.0470357788
+UniRef50_D9SMY3: RNA polymerase sigma factor|g__Clostridium.s__Clostridium_beijerinckii	6.0470357788
+UniRef50_Q48BL4: Cobalamin synthesis protein/P47K family protein	6.0461509230
+UniRef50_Q48BL4: Cobalamin synthesis protein/P47K family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0461509230
+UniRef50_C2BDZ1	6.0448243812
+UniRef50_C2BDZ1|unclassified	6.0448243812
+UniRef50_G7MCN9: Multi-copper polyphenol oxidoreductase, laccase	6.0430296614
+UniRef50_G7MCN9: Multi-copper polyphenol oxidoreductase, laccase|g__Clostridium.s__Clostridium_beijerinckii	6.0430296614
+UniRef50_Q9L883	6.0411719744
+UniRef50_Q9L883|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2643923241
+UniRef50_Q9L883|unclassified	1.7767796503
+UniRef50_D5WQ35: Restriction endonuclease	6.0407391497
+UniRef50_D5WQ35: Restriction endonuclease|g__Deinococcus.s__Deinococcus_radiodurans	6.0407391497
+UniRef50_G7U431	6.0400140304
+UniRef50_G7U431|g__Propionibacterium.s__Propionibacterium_acnes	6.0400140304
+UniRef50_E9JFX9: Dimethyl-sulfide monooxygenase	6.0397611095
+UniRef50_E9JFX9: Dimethyl-sulfide monooxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3535296108
+UniRef50_E9JFX9: Dimethyl-sulfide monooxygenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6862314988
+UniRef50_A3PIZ7: Peptidase M23B	6.0382524452
+UniRef50_A3PIZ7: Peptidase M23B|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.4775248556
+UniRef50_A3PIZ7: Peptidase M23B|unclassified	0.5607275896
+UniRef50_E2ZPK4	6.0341802187
+UniRef50_E2ZPK4|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0341802187
+UniRef50_A6LYS9: Conserved repeat domain	6.0327558373
+UniRef50_A6LYS9: Conserved repeat domain|g__Clostridium.s__Clostridium_beijerinckii	6.0327558373
+UniRef50_X5K2G6	6.0322869338
+UniRef50_X5K2G6|g__Streptococcus.s__Streptococcus_agalactiae	6.0322869338
+UniRef50_M4XAD4	6.0310531953
+UniRef50_M4XAD4|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9329310309
+UniRef50_M4XAD4|unclassified	0.0981221644
+UniRef50_A6UYG3	6.0306023339
+UniRef50_A6UYG3|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0306023339
+UniRef50_Z3WPG1: Quinolone resistance protein norA	6.0303756279
+UniRef50_Z3WPG1: Quinolone resistance protein norA|unclassified	6.0303756279
+UniRef50_UPI0002F8CAA4: flagellar biosynthesis protein FliQ	6.0303109069
+UniRef50_UPI0002F8CAA4: flagellar biosynthesis protein FliQ|unclassified	6.0303109069
+UniRef50_A6M351: PAS/PAC sensor signal transduction histidine kinase	6.0302461443
+UniRef50_A6M351: PAS/PAC sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	6.0302461443
+UniRef50_C4JA71	6.0290577629
+UniRef50_C4JA71|unclassified	6.0290577629
+UniRef50_P11864	6.0285592323
+UniRef50_P11864|g__Escherichia.s__Escherichia_coli	6.0285592323
+UniRef50_C5QMD6: CHAP domain protein	6.0257066617
+UniRef50_C5QMD6: CHAP domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	5.3211035107
+UniRef50_C5QMD6: CHAP domain protein|unclassified	0.7046031510
+UniRef50_A4VK63	6.0243150064
+UniRef50_A4VK63|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0243150064
+UniRef50_C8UF70	6.0240963855
+UniRef50_C8UF70|g__Escherichia.s__Escherichia_coli	6.0240963855
+UniRef50_G0DRL1: 3-isopropylmalate dehydrogenase	6.0240963855
+UniRef50_G0DRL1: 3-isopropylmalate dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	6.0240963855
+UniRef50_M2EWR7	6.0240963855
+UniRef50_M2EWR7|g__Streptococcus.s__Streptococcus_mutans	6.0240963855
+UniRef50_Q7UBV5	6.0240963855
+UniRef50_Q7UBV5|g__Escherichia.s__Escherichia_coli	6.0240963855
+UniRef50_U6ACI3	6.0240963855
+UniRef50_U6ACI3|unclassified	6.0240963855
+UniRef50_V7ICS9	6.0240963855
+UniRef50_V7ICS9|g__Neisseria.s__Neisseria_meningitidis	6.0240963855
+UniRef50_UPI00046A91B7: hypothetical protein	6.0239425000
+UniRef50_UPI00046A91B7: hypothetical protein|unclassified	6.0239425000
+UniRef50_A4VJJ6: RNA binding S1	6.0238423639
+UniRef50_A4VJJ6: RNA binding S1|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0238423639
+UniRef50_P32138: Alpha-glucosidase YihQ	6.0231843092
+UniRef50_P32138: Alpha-glucosidase YihQ|g__Escherichia.s__Escherichia_coli	6.0231843092
+UniRef50_A6M1G9: Nucleotidyl transferase	6.0213352346
+UniRef50_A6M1G9: Nucleotidyl transferase|g__Clostridium.s__Clostridium_beijerinckii	6.0213352346
+UniRef50_Q03282: Urease subunit gamma	6.0207509554
+UniRef50_Q03282: Urease subunit gamma|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.3475935829
+UniRef50_Q03282: Urease subunit gamma|unclassified	0.6731573725
+UniRef50_UPI00036819CA: hypothetical protein	6.0163820045
+UniRef50_UPI00036819CA: hypothetical protein|unclassified	6.0163820045
+UniRef50_D8JE10: Thioesterase superfamily protein	6.0160481606
+UniRef50_D8JE10: Thioesterase superfamily protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0160481606
+UniRef50_P15713: Non-hemolytic phospholipase C	6.0158154798
+UniRef50_P15713: Non-hemolytic phospholipase C|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9845111873
+UniRef50_P15713: Non-hemolytic phospholipase C|unclassified	0.0313042925
+UniRef50_F8G289: Cro/CI family transcriptional regulator	6.0149029784
+UniRef50_F8G289: Cro/CI family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0149029784
+UniRef50_R5IZV2: Rod shape-determining protein MreB	6.0134683821
+UniRef50_R5IZV2: Rod shape-determining protein MreB|g__Clostridium.s__Clostridium_beijerinckii	6.0134683821
+UniRef50_Q1GFF4: Transcriptional regulator, XRE family	6.0126504285
+UniRef50_Q1GFF4: Transcriptional regulator, XRE family|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.0126504285
+UniRef50_P76641: Guanine deaminase	6.0117614623
+UniRef50_P76641: Guanine deaminase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1351006715
+UniRef50_P76641: Guanine deaminase|g__Acinetobacter.s__Acinetobacter_baumannii	1.0309278351
+UniRef50_P76641: Guanine deaminase|unclassified	0.8457329558
+UniRef50_A4WWV9	6.0117460770
+UniRef50_A4WWV9|g__Rhodobacter.s__Rhodobacter_sphaeroides	6.0117460770
+UniRef50_I6SXG2	6.0103963613
+UniRef50_I6SXG2|g__Streptococcus.s__Streptococcus_mutans	6.0103963613
+UniRef50_D6A3X7: Predicted protein	6.0103180988
+UniRef50_D6A3X7: Predicted protein|unclassified	6.0103180988
+UniRef50_UPI000476B9E7: cytochrome C	6.0102608824
+UniRef50_UPI000476B9E7: cytochrome C|unclassified	6.0102608824
+UniRef50_G7VQW0: Transcriptional regulator	6.0099836009
+UniRef50_G7VQW0: Transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	6.0099836009
+UniRef50_A0A009E0F9	6.0086851260
+UniRef50_A0A009E0F9|unclassified	6.0086851260
+UniRef50_Q6Z5U8	6.0074034233
+UniRef50_Q6Z5U8|unclassified	6.0074034233
+UniRef50_UPI000465215C: multidrug ABC transporter permease, partial	6.0073748725
+UniRef50_UPI000465215C: multidrug ABC transporter permease, partial|unclassified	6.0073748725
+UniRef50_Q9HU72: Lactoylglutathione lyase	6.0072829331
+UniRef50_Q9HU72: Lactoylglutathione lyase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3065093181
+UniRef50_Q9HU72: Lactoylglutathione lyase|unclassified	0.7007736150
+UniRef50_Q9I3N5: Heme exporter protein C	6.0065895075
+UniRef50_Q9I3N5: Heme exporter protein C|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0065895075
+UniRef50_U4V680	6.0043944451
+UniRef50_U4V680|unclassified	6.0043944451
+UniRef50_H3DVW8	6.0036197421
+UniRef50_H3DVW8|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0036197421
+UniRef50_Q9HZ55: Ribosomal large subunit pseudouridine synthase B	6.0024009957
+UniRef50_Q9HZ55: Ribosomal large subunit pseudouridine synthase B|g__Pseudomonas.s__Pseudomonas_aeruginosa	6.0024009957
+UniRef50_A7ZV86	6.0015037526
+UniRef50_A7ZV86|g__Escherichia.s__Escherichia_coli	6.0015037526
+UniRef50_K7RUR3: ABC-2 type transporter	6.0008996851
+UniRef50_K7RUR3: ABC-2 type transporter|g__Propionibacterium.s__Propionibacterium_acnes	6.0008996851
+UniRef50_Q0B215: DEAD/DEAH box helicase domain protein	5.9982807378
+UniRef50_Q0B215: DEAD/DEAH box helicase domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9982807378
+UniRef50_C6CBJ2: Oligogalacturonide transporter	5.9976735975
+UniRef50_C6CBJ2: Oligogalacturonide transporter|g__Clostridium.s__Clostridium_beijerinckii	5.9976735975
+UniRef50_I4KPZ2: Choline ABC transporter, ATP-binding protein	5.9965206195
+UniRef50_I4KPZ2: Choline ABC transporter, ATP-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9965206195
+UniRef50_D2AI68	5.9962601115
+UniRef50_D2AI68|unclassified	5.9962601115
+UniRef50_B7VB85: Glutamine--tRNA ligase	5.9958183152
+UniRef50_B7VB85: Glutamine--tRNA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9497830801
+UniRef50_B7VB85: Glutamine--tRNA ligase|unclassified	0.0460352351
+UniRef50_P25132: 12.0 kDa protein	5.9954832234
+UniRef50_P25132: 12.0 kDa protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9954832234
+UniRef50_N4W5E7: C4-dicarboxylate transport protein	5.9942685488
+UniRef50_N4W5E7: C4-dicarboxylate transport protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9942685488
+UniRef50_P45792: Type IV pilus assembly protein TapB	5.9931940999
+UniRef50_P45792: Type IV pilus assembly protein TapB|g__Neisseria.s__Neisseria_meningitidis	3.9742410106
+UniRef50_P45792: Type IV pilus assembly protein TapB|g__Acinetobacter.s__Acinetobacter_baumannii	2.0189530893
+UniRef50_D3E3L9	5.9929163648
+UniRef50_D3E3L9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.9929163648
+UniRef50_D8JDR3: NADH:ubiquinone oxidoreductase, subunit RnfB	5.9911699779
+UniRef50_D8JDR3: NADH:ubiquinone oxidoreductase, subunit RnfB|g__Acinetobacter.s__Acinetobacter_baumannii	5.9911699779
+UniRef50_D6DGD0: Response regulators consisting of a CheY-like receiver domain and a winged-helix DNA-binding domain	5.9901852786
+UniRef50_D6DGD0: Response regulators consisting of a CheY-like receiver domain and a winged-helix DNA-binding domain|g__Clostridium.s__Clostridium_beijerinckii	5.9901852786
+UniRef50_P38097: Probable diguanylate cyclase YegE	5.9898025240
+UniRef50_P38097: Probable diguanylate cyclase YegE|g__Escherichia.s__Escherichia_coli	5.9898025240
+UniRef50_A6M0H1	5.9880239521
+UniRef50_A6M0H1|g__Clostridium.s__Clostridium_beijerinckii	5.9880239521
+UniRef50_A8H3L2: Thioesterase superfamily protein	5.9880239521
+UniRef50_A8H3L2: Thioesterase superfamily protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9880239521
+UniRef50_C8MNY2	5.9880239521
+UniRef50_C8MNY2|g__Staphylococcus.s__Staphylococcus_aureus	5.9880239521
+UniRef50_D6SEG9	5.9880239521
+UniRef50_D6SEG9|g__Staphylococcus.s__Staphylococcus_aureus	5.9880239521
+UniRef50_F0T9W8	5.9880239521
+UniRef50_F0T9W8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.9880239521
+UniRef50_P0AE65: Cation transport regulator ChaB	5.9880239521
+UniRef50_P0AE65: Cation transport regulator ChaB|g__Escherichia.s__Escherichia_coli	5.9880239521
+UniRef50_P65264: Lipoprotein signal peptidase	5.9880239521
+UniRef50_P65264: Lipoprotein signal peptidase|g__Neisseria.s__Neisseria_meningitidis	5.9880239521
+UniRef50_Q5HLD6	5.9880239521
+UniRef50_Q5HLD6|unclassified	5.9880239521
+UniRef50_Q5HLE3	5.9880239521
+UniRef50_Q5HLE3|g__Staphylococcus.s__Staphylococcus_epidermidis	5.9880239521
+UniRef50_R7PYQ3	5.9880239521
+UniRef50_R7PYQ3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.9880239521
+UniRef50_V6EBJ7	5.9880239521
+UniRef50_V6EBJ7|unclassified	5.9880239521
+UniRef50_W1WCF6: FNT family formate-nitrite transporter (Fragment)	5.9880239521
+UniRef50_W1WCF6: FNT family formate-nitrite transporter (Fragment)|unclassified	5.9880239521
+UniRef50_W4S288	5.9880239521
+UniRef50_W4S288|unclassified	5.9880239521
+UniRef50_W8SUE0	5.9880239521
+UniRef50_W8SUE0|g__Escherichia.s__Escherichia_coli	5.9880239521
+UniRef50_M9VDV1: ComE operon protein 1	5.9869102704
+UniRef50_M9VDV1: ComE operon protein 1|g__Propionibacterium.s__Propionibacterium_acnes	5.9869102704
+UniRef50_W8TFM7	5.9844943051
+UniRef50_W8TFM7|g__Escherichia.s__Escherichia_coli	5.9844943051
+UniRef50_M9RGW8: 23S rRNA [guanosine-2'-O-]-methyltransferase RlmB	5.9843772221
+UniRef50_M9RGW8: 23S rRNA [guanosine-2'-O-]-methyltransferase RlmB|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.9843772221
+UniRef50_A6LVN7	5.9833295360
+UniRef50_A6LVN7|g__Clostridium.s__Clostridium_beijerinckii	5.9833295360
+UniRef50_Q3J1F3: Phage major capsid protein, HK97 family	5.9830961559
+UniRef50_Q3J1F3: Phage major capsid protein, HK97 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.9830961559
+UniRef50_B9KW07	5.9826696523
+UniRef50_B9KW07|unclassified	5.9826696523
+UniRef50_A0A024KYL9: ATP-dependent Clp protease ATP-binding subunit	5.9815680560
+UniRef50_A0A024KYL9: ATP-dependent Clp protease ATP-binding subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9815680560
+UniRef50_A5I3R8: ABC transporter, permease protein	5.9807959685
+UniRef50_A5I3R8: ABC transporter, permease protein|g__Clostridium.s__Clostridium_beijerinckii	5.9807959685
+UniRef50_A0A023S0J1: Sodium:proton antiporter	5.9797737785
+UniRef50_A0A023S0J1: Sodium:proton antiporter|g__Acinetobacter.s__Acinetobacter_baumannii	5.9797737785
+UniRef50_B9KTA1: Two component transcriptional regulator, winged helix family	5.9795682662
+UniRef50_B9KTA1: Two component transcriptional regulator, winged helix family|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.9795682662
+UniRef50_V9T5G7: ATPase	5.9780676653
+UniRef50_V9T5G7: ATPase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9780676653
+UniRef50_A6LZ65: Citrate transporter	5.9780132762
+UniRef50_A6LZ65: Citrate transporter|g__Clostridium.s__Clostridium_beijerinckii	5.9780132762
+UniRef50_Q88J89: Ribose transport permease protein, putative	5.9777138434
+UniRef50_Q88J89: Ribose transport permease protein, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.9777138434
+UniRef50_Q168I1: Guanine deaminase	5.9775573454
+UniRef50_Q168I1: Guanine deaminase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.9775573454
+UniRef50_R9ZGV6: ABC transporter substrate-binding protein	5.9766110036
+UniRef50_R9ZGV6: ABC transporter substrate-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5234528617
+UniRef50_R9ZGV6: ABC transporter substrate-binding protein|unclassified	0.4531581419
+UniRef50_H8H0A6	5.9748969292
+UniRef50_H8H0A6|g__Deinococcus.s__Deinococcus_radiodurans	4.5662100457
+UniRef50_H8H0A6|unclassified	1.4086868835
+UniRef50_V4JBC6	5.9734980987
+UniRef50_V4JBC6|unclassified	5.9734980987
+UniRef50_Q899S7: DNA replication and repair protein RecF	5.9725354289
+UniRef50_Q899S7: DNA replication and repair protein RecF|g__Clostridium.s__Clostridium_beijerinckii	5.9725354289
+UniRef50_A5W3B8: Peptidase S14, ClpP	5.9724966300
+UniRef50_A5W3B8: Peptidase S14, ClpP|unclassified	4.0998374539
+UniRef50_A5W3B8: Peptidase S14, ClpP|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8726591760
+UniRef50_Q2P0Z5: Threonine--tRNA ligase	5.9722072699
+UniRef50_Q2P0Z5: Threonine--tRNA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8843135745
+UniRef50_Q2P0Z5: Threonine--tRNA ligase|unclassified	0.0878936954
+UniRef50_W7WGK1	5.9691890308
+UniRef50_W7WGK1|unclassified	5.9691890308
+UniRef50_P26899: Aspartate ammonia-lyase	5.9673118115
+UniRef50_P26899: Aspartate ammonia-lyase|g__Clostridium.s__Clostridium_beijerinckii	5.9141253432
+UniRef50_P26899: Aspartate ammonia-lyase|unclassified	0.0531864682
+UniRef50_UPI0001DCFDB5: 200 kDa antigen p200, putative	5.9671896337
+UniRef50_UPI0001DCFDB5: 200 kDa antigen p200, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7234812783
+UniRef50_UPI0001DCFDB5: 200 kDa antigen p200, putative|unclassified	0.2437083555
+UniRef50_P23747: Alginate biosynthesis transcriptional regulatory protein AlgB	5.9666214427
+UniRef50_P23747: Alginate biosynthesis transcriptional regulatory protein AlgB|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9666214427
+UniRef50_A5UN03: DNA-directed RNA polymerase subunit F	5.9628543500
+UniRef50_A5UN03: DNA-directed RNA polymerase subunit F|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.9628543500
+UniRef50_B7VBG5: ExsD	5.9622886133
+UniRef50_B7VBG5: ExsD|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9622886133
+UniRef50_A0A008S902	5.9622478265
+UniRef50_A0A008S902|g__Staphylococcus.s__Staphylococcus_aureus	4.3478260870
+UniRef50_A0A008S902|unclassified	1.6144217395
+UniRef50_UPI000365DDE9: hypothetical protein	5.9616016674
+UniRef50_UPI000365DDE9: hypothetical protein|unclassified	5.9616016674
+UniRef50_A3PPH2	5.9597543856
+UniRef50_A3PPH2|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.9597543856
+UniRef50_A4VR27	5.9583720531
+UniRef50_A4VR27|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9583720531
+UniRef50_C1DIN7: Response regulator, LuxR family	5.9580813747
+UniRef50_C1DIN7: Response regulator, LuxR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9580813747
+UniRef50_A1B462	5.9562606470
+UniRef50_A1B462|unclassified	5.9562606470
+UniRef50_X2MMA8	5.9551601110
+UniRef50_X2MMA8|g__Escherichia.s__Escherichia_coli	5.9551601110
+UniRef50_A4WX72	5.9546214912
+UniRef50_A4WX72|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.9546214912
+UniRef50_A0A029LEA3: Prepilin-type N-terminal cleavage/methylation domain protein	5.9523809524
+UniRef50_A0A029LEA3: Prepilin-type N-terminal cleavage/methylation domain protein|g__Escherichia.s__Escherichia_coli	5.9523809524
+UniRef50_B7UMD1	5.9523809524
+UniRef50_B7UMD1|unclassified	5.9523809524
+UniRef50_C5N087	5.9523809524
+UniRef50_C5N087|g__Staphylococcus.s__Staphylococcus_aureus	5.9523809524
+UniRef50_D3QIS4	5.9523809524
+UniRef50_D3QIS4|g__Staphylococcus.s__Staphylococcus_epidermidis	5.9523809524
+UniRef50_F0KPE9: Matrix metallopeptidase 24 (Membrane-inserted)	5.9523809524
+UniRef50_F0KPE9: Matrix metallopeptidase 24 (Membrane-inserted)|g__Acinetobacter.s__Acinetobacter_baumannii	5.9523809524
+UniRef50_Q2FHT6: Thioredoxin	5.9523809524
+UniRef50_Q2FHT6: Thioredoxin|g__Staphylococcus.s__Staphylococcus_aureus	5.9523809524
+UniRef50_Q9RYQ5: Resolvase, putative	5.9523809524
+UniRef50_Q9RYQ5: Resolvase, putative|g__Deinococcus.s__Deinococcus_radiodurans	5.9523809524
+UniRef50_W1GVH9: Colicin V production protein	5.9523809524
+UniRef50_W1GVH9: Colicin V production protein|unclassified	5.9523809524
+UniRef50_Q3J0U8	5.9501163368
+UniRef50_Q3J0U8|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.9501163368
+UniRef50_M9VD00	5.9500962305
+UniRef50_M9VD00|g__Propionibacterium.s__Propionibacterium_acnes	5.9500962305
+UniRef50_UPI00035FC337: general secretion pathway protein I, partial	5.9499397552
+UniRef50_UPI00035FC337: general secretion pathway protein I, partial|unclassified	5.9499397552
+UniRef50_E6UXA3: Phosphate transporter	5.9493846709
+UniRef50_E6UXA3: Phosphate transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5554106480
+UniRef50_E6UXA3: Phosphate transporter|g__Acinetobacter.s__Acinetobacter_baumannii	2.3939740230
+UniRef50_P72139: Putative imidazole glycerol phosphate synthase subunit hisF2	5.9488719981
+UniRef50_P72139: Putative imidazole glycerol phosphate synthase subunit hisF2|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9488719981
+UniRef50_B9L064: Glutamine synthetase	5.9485319724
+UniRef50_B9L064: Glutamine synthetase|g__Streptococcus.s__Streptococcus_agalactiae	5.9485319724
+UniRef50_P06770: FeMo cofactor biosynthesis protein NifB	5.9468077381
+UniRef50_P06770: FeMo cofactor biosynthesis protein NifB|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.9468077381
+UniRef50_B9TN19	5.9454677124
+UniRef50_B9TN19|unclassified	5.9454677124
+UniRef50_M4UHU9	5.9449100554
+UniRef50_M4UHU9|unclassified	5.9449100554
+UniRef50_Q9RWX1	5.9433740206
+UniRef50_Q9RWX1|g__Deinococcus.s__Deinococcus_radiodurans	5.9433740206
+UniRef50_A6TG52: D-ribose pyranase	5.9420676753
+UniRef50_A6TG52: D-ribose pyranase|g__Escherichia.s__Escherichia_coli	5.6767700594
+UniRef50_A6TG52: D-ribose pyranase|unclassified	0.2652976159
+UniRef50_W1GFB3: ABC peptide transporter, inner membrane subunit	5.9404649901
+UniRef50_W1GFB3: ABC peptide transporter, inner membrane subunit|unclassified	5.9404649901
+UniRef50_R8XI05: Taurine-binding periplasmic protein	5.9383158633
+UniRef50_R8XI05: Taurine-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	4.8076923077
+UniRef50_R8XI05: Taurine-binding periplasmic protein|unclassified	1.1306235556
+UniRef50_A6LTK4	5.9377539603
+UniRef50_A6LTK4|g__Clostridium.s__Clostridium_beijerinckii	5.9377539603
+UniRef50_H9UU02: Ribonucleoside diphosphage reductase 1, beta subunit, B2	5.9375992867
+UniRef50_H9UU02: Ribonucleoside diphosphage reductase 1, beta subunit, B2|unclassified	5.9375992867
+UniRef50_E3D490	5.9374073468
+UniRef50_E3D490|g__Neisseria.s__Neisseria_meningitidis	5.9374073468
+UniRef50_A6LZB7	5.9371308703
+UniRef50_A6LZB7|g__Clostridium.s__Clostridium_beijerinckii	5.9371308703
+UniRef50_Q1J276: Acyl-CoA dehydrogenase-like protein	5.9370897608
+UniRef50_Q1J276: Acyl-CoA dehydrogenase-like protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9370897608
+UniRef50_F3LQG5	5.9363928419
+UniRef50_F3LQG5|unclassified	5.9363928419
+UniRef50_X5E509: Choline sulfatase	5.9352004448
+UniRef50_X5E509: Choline sulfatase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9352004448
+UniRef50_N3WLA8: Uroporphyrinogen decarboxylase family protein (Fragment)	5.9347181009
+UniRef50_N3WLA8: Uroporphyrinogen decarboxylase family protein (Fragment)|g__Escherichia.s__Escherichia_coli	5.9347181009
+UniRef50_C1DMJ1: TonB-dependent siderophore receptor	5.9329024900
+UniRef50_C1DMJ1: TonB-dependent siderophore receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9329024900
+UniRef50_O26607: UPF0145 protein MTH_507	5.9312192889
+UniRef50_O26607: UPF0145 protein MTH_507|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.1055900621
+UniRef50_O26607: UPF0145 protein MTH_507|unclassified	2.8256292268
+UniRef50_Q898U9: Conserved protein	5.9311487236
+UniRef50_Q898U9: Conserved protein|g__Clostridium.s__Clostridium_beijerinckii	5.9311487236
+UniRef50_R4ZPZ7: Glycosyl transferase, family 8	5.9287138845
+UniRef50_R4ZPZ7: Glycosyl transferase, family 8|g__Streptococcus.s__Streptococcus_agalactiae	5.9287138845
+UniRef50_K0HYU5	5.9285106420
+UniRef50_K0HYU5|g__Propionibacterium.s__Propionibacterium_acnes	5.9285106420
+UniRef50_W7QDA9	5.9259259259
+UniRef50_W7QDA9|unclassified	5.9259259259
+UniRef50_B8NQM3: 3-demethylubiquinone-9 3-methyltransferase, putative	5.9255320973
+UniRef50_B8NQM3: 3-demethylubiquinone-9 3-methyltransferase, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9255320973
+UniRef50_UPI000380CA19: hypothetical protein	5.9227390185
+UniRef50_UPI000380CA19: hypothetical protein|unclassified	5.9227390185
+UniRef50_UPI00029D92E0	5.9225899792
+UniRef50_UPI00029D92E0|unclassified	5.9225899792
+UniRef50_A5UNE5: IS element (Transposase remnant)	5.9218559219
+UniRef50_A5UNE5: IS element (Transposase remnant)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.9218559219
+UniRef50_Q9LCJ9: FmtB	5.9215610652
+UniRef50_Q9LCJ9: FmtB|g__Staphylococcus.s__Staphylococcus_aureus	5.9215610652
+UniRef50_U5MQZ5	5.9185735011
+UniRef50_U5MQZ5|g__Clostridium.s__Clostridium_beijerinckii	5.9185735011
+UniRef50_R7NLL0: DNA gyrase subunit A	5.9183844869
+UniRef50_R7NLL0: DNA gyrase subunit A|g__Clostridium.s__Clostridium_beijerinckii	5.9183844869
+UniRef50_F5XMJ8: Oxygen-independent coproporphyrinogen III oxidase	5.9179662373
+UniRef50_F5XMJ8: Oxygen-independent coproporphyrinogen III oxidase|g__Propionibacterium.s__Propionibacterium_acnes	5.9179662373
+UniRef50_H0Q5F2: Short-chain dehydrogenase/reductase SDR	5.9176835291
+UniRef50_H0Q5F2: Short-chain dehydrogenase/reductase SDR|g__Acinetobacter.s__Acinetobacter_baumannii	5.9176835291
+UniRef50_S5XNE2: Metallophosphoesterase	5.9174325891
+UniRef50_S5XNE2: Metallophosphoesterase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.9174325891
+UniRef50_UPI00047C294C: hypoxanthine oxidase, partial	5.9173804847
+UniRef50_UPI00047C294C: hypoxanthine oxidase, partial|g__Escherichia.s__Escherichia_coli	5.9173804847
+UniRef50_A9MH95	5.9171597633
+UniRef50_A9MH95|unclassified	5.9171597633
+UniRef50_C8X890: Two component transcriptional regulator, LuxR family	5.9171597633
+UniRef50_C8X890: Two component transcriptional regulator, LuxR family|g__Propionibacterium.s__Propionibacterium_acnes	5.9171597633
+UniRef50_D0K433	5.9171597633
+UniRef50_D0K433|unclassified	5.9171597633
+UniRef50_D3QGE5: Transcriptional regulator, Cro/CI family	5.9171597633
+UniRef50_D3QGE5: Transcriptional regulator, Cro/CI family|g__Staphylococcus.s__Staphylococcus_epidermidis	5.9171597633
+UniRef50_I5C6B4: Acetolactate synthase	5.9171597633
+UniRef50_I5C6B4: Acetolactate synthase|unclassified	5.9171597633
+UniRef50_L8QIK5	5.9171597633
+UniRef50_L8QIK5|g__Staphylococcus.s__Staphylococcus_aureus	5.9171597633
+UniRef50_Q3J1E8	5.9171597633
+UniRef50_Q3J1E8|unclassified	5.9171597633
+UniRef50_U5S0M7: Pyridine nucleotide-disulfide oxidoreductase, FAD/NAD(P)-binding domain containing protein	5.9156145855
+UniRef50_U5S0M7: Pyridine nucleotide-disulfide oxidoreductase, FAD/NAD(P)-binding domain containing protein|g__Clostridium.s__Clostridium_beijerinckii	5.9156145855
+UniRef50_A6LQ09	5.9156070410
+UniRef50_A6LQ09|g__Clostridium.s__Clostridium_beijerinckii	5.9156070410
+UniRef50_D4HBL6	5.9145214597
+UniRef50_D4HBL6|g__Propionibacterium.s__Propionibacterium_acnes	5.9145214597
+UniRef50_I0GMV1: Electron transport complex subunit C	5.9137543781
+UniRef50_I0GMV1: Electron transport complex subunit C|g__Clostridium.s__Clostridium_beijerinckii	5.9137543781
+UniRef50_A6V7I7	5.9119860102
+UniRef50_A6V7I7|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9119860102
+UniRef50_A5W751	5.9108675023
+UniRef50_A5W751|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.9108675023
+UniRef50_L1KD27	5.9098134135
+UniRef50_L1KD27|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.5842293907
+UniRef50_L1KD27|unclassified	2.3255840228
+UniRef50_UPI00047CFDC7: hypothetical protein	5.9089973834
+UniRef50_UPI00047CFDC7: hypothetical protein|unclassified	5.9089973834
+UniRef50_Q4W6G1	5.9089941285
+UniRef50_Q4W6G1|unclassified	5.9089941285
+UniRef50_P00905: Bifunctional protein TrpGD	5.9085138321
+UniRef50_P00905: Bifunctional protein TrpGD|g__Escherichia.s__Escherichia_coli	5.9085138321
+UniRef50_D9SQ35: Integrase family protein	5.9069714274
+UniRef50_D9SQ35: Integrase family protein|g__Clostridium.s__Clostridium_beijerinckii	5.9069714274
+UniRef50_Q1IWJ1	5.8992927849
+UniRef50_Q1IWJ1|g__Deinococcus.s__Deinococcus_radiodurans	5.8992927849
+UniRef50_K0JXB7	5.8979625594
+UniRef50_K0JXB7|unclassified	5.8979625594
+UniRef50_P27238	5.8974358974
+UniRef50_P27238|g__Escherichia.s__Escherichia_coli	5.8974358974
+UniRef50_A1RLC1: AzlC family protein	5.8954085171
+UniRef50_A1RLC1: AzlC family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8954085171
+UniRef50_E3A2F4	5.8927797235
+UniRef50_E3A2F4|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8927797235
+UniRef50_Q1RB71	5.8924731183
+UniRef50_Q1RB71|g__Escherichia.s__Escherichia_coli	5.8924731183
+UniRef50_Q3IVN7	5.8910365389
+UniRef50_Q3IVN7|unclassified	5.8910365389
+UniRef50_A4VM39: Ribosomal RNA large subunit methyltransferase K/L	5.8905610325
+UniRef50_A4VM39: Ribosomal RNA large subunit methyltransferase K/L|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8905610325
+UniRef50_Q21WE1: Alcohol dehydrogenase, zinc-binding	5.8899323421
+UniRef50_Q21WE1: Alcohol dehydrogenase, zinc-binding|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8899323421
+UniRef50_UPI0001B434CE: glyoxalase I	5.8896400134
+UniRef50_UPI0001B434CE: glyoxalase I|unclassified	5.8896400134
+UniRef50_A6LTF1: YodP	5.8894611482
+UniRef50_A6LTF1: YodP|g__Clostridium.s__Clostridium_beijerinckii	5.8894611482
+UniRef50_B2TJJ8: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA	5.8891759308
+UniRef50_B2TJJ8: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA|g__Clostridium.s__Clostridium_beijerinckii	5.8891759308
+UniRef50_R5TC97	5.8886120634
+UniRef50_R5TC97|g__Clostridium.s__Clostridium_beijerinckii	5.8886120634
+UniRef50_A6LXH7: D-galactose-binding periplasmic protein	5.8880427018
+UniRef50_A6LXH7: D-galactose-binding periplasmic protein|g__Clostridium.s__Clostridium_beijerinckii	5.8880427018
+UniRef50_A4WSV4: Integral membrane sensor hybrid histidine kinase	5.8862758390
+UniRef50_A4WSV4: Integral membrane sensor hybrid histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.8862758390
+UniRef50_Q897B2: Phosphomethylpyrimidine synthase	5.8851542870
+UniRef50_Q897B2: Phosphomethylpyrimidine synthase|g__Clostridium.s__Clostridium_beijerinckii	5.8851542870
+UniRef50_D6XAF0: Transcriptional regulator (Fragment)	5.8837989781
+UniRef50_D6XAF0: Transcriptional regulator (Fragment)|unclassified	5.8837989781
+UniRef50_D6UC71	5.8836282487
+UniRef50_D6UC71|g__Staphylococcus.s__Staphylococcus_aureus	5.7803468208
+UniRef50_D6UC71|unclassified	0.1032814279
+UniRef50_M9S1E1: Transcriptional regulator	5.8824921956
+UniRef50_M9S1E1: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8824921956
+UniRef50_C4ZT30: Endoribonuclease SymE	5.8824038270
+UniRef50_C4ZT30: Endoribonuclease SymE|g__Escherichia.s__Escherichia_coli	5.8824038270
+UniRef50_A0A029P0S1	5.8823529412
+UniRef50_A0A029P0S1|unclassified	5.8823529412
+UniRef50_A7MKF0: UPF0181 protein ESA_01442	5.8823529412
+UniRef50_A7MKF0: UPF0181 protein ESA_01442|g__Escherichia.s__Escherichia_coli	5.8823529412
+UniRef50_C7ZTP1: Membrane protein	5.8823529412
+UniRef50_C7ZTP1: Membrane protein|g__Staphylococcus.s__Staphylococcus_aureus	5.8823529412
+UniRef50_E3A550	5.8823529412
+UniRef50_E3A550|unclassified	5.8823529412
+UniRef50_E5R757: NADP-dependent malic enzyme (NADP-ME). domain protein	5.8823529412
+UniRef50_E5R757: NADP-dependent malic enzyme (NADP-ME). domain protein|g__Staphylococcus.s__Staphylococcus_aureus	5.8823529412
+UniRef50_Q2TTT0: InsA	5.8823529412
+UniRef50_Q2TTT0: InsA|g__Escherichia.s__Escherichia_coli	5.8823529412
+UniRef50_Q8DSX0	5.8823529412
+UniRef50_Q8DSX0|unclassified	5.8823529412
+UniRef50_Q8DWF2	5.8823529412
+UniRef50_Q8DWF2|g__Streptococcus.s__Streptococcus_mutans	5.8823529412
+UniRef50_U3SRF9	5.8823529412
+UniRef50_U3SRF9|g__Streptococcus.s__Streptococcus_mutans	5.8823529412
+UniRef50_R7M1V7: DEAD/DEAH box helicase domain protein	5.8818527246
+UniRef50_R7M1V7: DEAD/DEAH box helicase domain protein|g__Clostridium.s__Clostridium_beijerinckii	5.8818527246
+UniRef50_N0AMT0: Bacterial regulatory helix-turn-helix, lysR family protein	5.8807163092
+UniRef50_N0AMT0: Bacterial regulatory helix-turn-helix, lysR family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8807163092
+UniRef50_Q9RS38: Guanylate kinase	5.8780844653
+UniRef50_Q9RS38: Guanylate kinase|g__Deinococcus.s__Deinococcus_radiodurans	5.8780844653
+UniRef50_D5AVS0: Sugar isomerase domain protein	5.8779402458
+UniRef50_D5AVS0: Sugar isomerase domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.8779402458
+UniRef50_A6VCD4	5.8778661887
+UniRef50_A6VCD4|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1661495988
+UniRef50_A6VCD4|unclassified	0.7117165899
+UniRef50_F9CRB3: Isoaspartyl dipeptidase	5.8759533150
+UniRef50_F9CRB3: Isoaspartyl dipeptidase|g__Escherichia.s__Escherichia_coli	5.8759533150
+UniRef50_M0E7L5: DRTGG domain protein	5.8748386640
+UniRef50_M0E7L5: DRTGG domain protein|unclassified	5.8748386640
+UniRef50_V9QXD6: Porin	5.8747557733
+UniRef50_V9QXD6: Porin|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8747557733
+UniRef50_A7FAV9	5.8740947283
+UniRef50_A7FAV9|g__Acinetobacter.s__Acinetobacter_baumannii	5.8740947283
+UniRef50_K7SJ66: von Willebrand factor type A domain-containing protein	5.8721681241
+UniRef50_K7SJ66: von Willebrand factor type A domain-containing protein|g__Propionibacterium.s__Propionibacterium_acnes	5.8721681241
+UniRef50_B9KPP5	5.8720326557
+UniRef50_B9KPP5|unclassified	5.8720326557
+UniRef50_Q1MA75: Glutamate 5-kinase	5.8716534234
+UniRef50_Q1MA75: Glutamate 5-kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.7299679210
+UniRef50_Q1MA75: Glutamate 5-kinase|unclassified	0.1416855025
+UniRef50_Q8FAL9	5.8671034781
+UniRef50_Q8FAL9|g__Escherichia.s__Escherichia_coli	5.8671034781
+UniRef50_J2PZW7	5.8657437148
+UniRef50_J2PZW7|unclassified	5.8657437148
+UniRef50_Q08386: Molybdenum-pterin-binding protein MopB	5.8653764536
+UniRef50_Q08386: Molybdenum-pterin-binding protein MopB|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.8653764536
+UniRef50_A7FAY1	5.8651530788
+UniRef50_A7FAY1|g__Acinetobacter.s__Acinetobacter_baumannii	5.8651530788
+UniRef50_A6M0L2: Beta-ketoacyl-acyl-carrier-protein synthase I	5.8635785233
+UniRef50_A6M0L2: Beta-ketoacyl-acyl-carrier-protein synthase I|g__Clostridium.s__Clostridium_beijerinckii	5.8635785233
+UniRef50_B7V8K4	5.8629096650
+UniRef50_B7V8K4|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8629096650
+UniRef50_X4RGC4: Serine kinase	5.8628325993
+UniRef50_X4RGC4: Serine kinase|g__Escherichia.s__Escherichia_coli	5.8628325993
+UniRef50_UPI000319862A: hypothetical protein	5.8626625939
+UniRef50_UPI000319862A: hypothetical protein|unclassified	5.8626625939
+UniRef50_Q2T4T2	5.8621421188
+UniRef50_Q2T4T2|unclassified	5.8621421188
+UniRef50_Q1R4V7	5.8608726735
+UniRef50_Q1R4V7|unclassified	5.8608726735
+UniRef50_A4WWJ4	5.8596438111
+UniRef50_A4WWJ4|unclassified	5.8596438111
+UniRef50_R9YNG5: Putative s4 domain-containing protein YlmH	5.8584346308
+UniRef50_R9YNG5: Putative s4 domain-containing protein YlmH|unclassified	5.8584346308
+UniRef50_M9S4A5	5.8569469432
+UniRef50_M9S4A5|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8569469432
+UniRef50_A6LWF4	5.8556296785
+UniRef50_A6LWF4|g__Clostridium.s__Clostridium_beijerinckii	5.8556296785
+UniRef50_F4M7Q8	5.8555548479
+UniRef50_F4M7Q8|unclassified	5.8555548479
+UniRef50_S5YT45: Uracil-xanthine permease	5.8547107731
+UniRef50_S5YT45: Uracil-xanthine permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8547107731
+UniRef50_I0EM06: Metalloendopeptidase related membrane protein	5.8546020774
+UniRef50_I0EM06: Metalloendopeptidase related membrane protein|g__Helicobacter.s__Helicobacter_pylori	5.8546020774
+UniRef50_A6LVZ4: Glycerol-1-phosphate dehydrogenase (NAD(P)(+))	5.8527455672
+UniRef50_A6LVZ4: Glycerol-1-phosphate dehydrogenase (NAD(P)(+))|g__Clostridium.s__Clostridium_beijerinckii	5.8527455672
+UniRef50_Q89XW5: Tyrosine recombinase XerD	5.8523038867
+UniRef50_Q89XW5: Tyrosine recombinase XerD|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.8523038867
+UniRef50_J2XC04	5.8499017826
+UniRef50_J2XC04|unclassified	5.8499017826
+UniRef50_A5UJL8	5.8479532164
+UniRef50_A5UJL8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.8479532164
+UniRef50_C6UTJ2	5.8479532164
+UniRef50_C6UTJ2|unclassified	5.8479532164
+UniRef50_E3Z1L7	5.8479532164
+UniRef50_E3Z1L7|unclassified	5.8479532164
+UniRef50_J5YR81	5.8479532164
+UniRef50_J5YR81|g__Staphylococcus.s__Staphylococcus_aureus	5.8479532164
+UniRef50_P77695: Protein GnsB	5.8479532164
+UniRef50_P77695: Protein GnsB|g__Escherichia.s__Escherichia_coli	5.8479532164
+UniRef50_Q8DSQ4: UPF0154 protein SMU_1719c	5.8479532164
+UniRef50_Q8DSQ4: UPF0154 protein SMU_1719c|g__Streptococcus.s__Streptococcus_mutans	5.8479532164
+UniRef50_A5UJN3: 50S ribosomal protein L7Ae	5.8473567908
+UniRef50_A5UJN3: 50S ribosomal protein L7Ae|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.8473567908
+UniRef50_F0RLU8: Alpha/beta hydrolase fold protein	5.8470764618
+UniRef50_F0RLU8: Alpha/beta hydrolase fold protein|g__Deinococcus.s__Deinococcus_radiodurans	5.8470764618
+UniRef50_Q79VG7: ATP synthase subunit alpha	5.8446698622
+UniRef50_Q79VG7: ATP synthase subunit alpha|g__Propionibacterium.s__Propionibacterium_acnes	5.8446698622
+UniRef50_UPI0003825772: 30S ribosomal protein S3, partial	5.8443735849
+UniRef50_UPI0003825772: 30S ribosomal protein S3, partial|unclassified	5.8443735849
+UniRef50_U9Z5G1: D-cysteine desulfhydrase domain protein	5.8399217048
+UniRef50_U9Z5G1: D-cysteine desulfhydrase domain protein|g__Escherichia.s__Escherichia_coli	5.8399217048
+UniRef50_F8H6P0	5.8398995107
+UniRef50_F8H6P0|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8398995107
+UniRef50_H3XK55: Immunoglobulin-binding protein sbi	5.8396585900
+UniRef50_H3XK55: Immunoglobulin-binding protein sbi|g__Staphylococcus.s__Staphylococcus_aureus	5.8396585900
+UniRef50_X2HBR6	5.8390102013
+UniRef50_X2HBR6|unclassified	5.8390102013
+UniRef50_S5XNV8	5.8388201128
+UniRef50_S5XNV8|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.4709658158
+UniRef50_S5XNV8|unclassified	0.3678542970
+UniRef50_D9S1W5	5.8382989767
+UniRef50_D9S1W5|g__Clostridium.s__Clostridium_beijerinckii	5.8382989767
+UniRef50_G7M706: Helix-turn-helix domain protein	5.8339197923
+UniRef50_G7M706: Helix-turn-helix domain protein|g__Clostridium.s__Clostridium_beijerinckii	5.8339197923
+UniRef50_UPI000367E627: hypothetical protein	5.8329979108
+UniRef50_UPI000367E627: hypothetical protein|unclassified	5.8329979108
+UniRef50_E7AA86: Iron-sulfur cluster binding protein	5.8325017195
+UniRef50_E7AA86: Iron-sulfur cluster binding protein|g__Helicobacter.s__Helicobacter_pylori	5.8325017195
+UniRef50_A7MEJ4: Spermidine export protein MdtJ	5.8303857024
+UniRef50_A7MEJ4: Spermidine export protein MdtJ|g__Escherichia.s__Escherichia_coli	3.1055900621
+UniRef50_A7MEJ4: Spermidine export protein MdtJ|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7247956403
+UniRef50_C4RDJ1	5.8292562673
+UniRef50_C4RDJ1|unclassified	5.8292562673
+UniRef50_P0ABK4: Cytochrome bd-I ubiquinol oxidase subunit 2	5.8291452818
+UniRef50_P0ABK4: Cytochrome bd-I ubiquinol oxidase subunit 2|g__Escherichia.s__Escherichia_coli	5.7572818895
+UniRef50_P0ABK4: Cytochrome bd-I ubiquinol oxidase subunit 2|unclassified	0.0718633923
+UniRef50_A9LZ58	5.8289353505
+UniRef50_A9LZ58|g__Neisseria.s__Neisseria_meningitidis	5.8289353505
+UniRef50_F5WYS0: ICESt1 ORFD ATP/GTP-binding protein	5.8284852006
+UniRef50_F5WYS0: ICESt1 ORFD ATP/GTP-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	5.8284852006
+UniRef50_Q0RDV0: Ribosomal protein S12 methylthiotransferase RimO	5.8283942755
+UniRef50_Q0RDV0: Ribosomal protein S12 methylthiotransferase RimO|g__Propionibacterium.s__Propionibacterium_acnes	5.8283942755
+UniRef50_Q6FDS1: Leucyl/phenylalanyl-tRNA--protein transferase	5.8262993046
+UniRef50_Q6FDS1: Leucyl/phenylalanyl-tRNA--protein transferase|g__Acinetobacter.s__Acinetobacter_baumannii	5.8262993046
+UniRef50_A6LPZ8	5.8259628924
+UniRef50_A6LPZ8|g__Clostridium.s__Clostridium_beijerinckii	5.8259628924
+UniRef50_I6SMW1: Two-component response regulator	5.8248350882
+UniRef50_I6SMW1: Two-component response regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8248350882
+UniRef50_D6ZIN1: ABC transporter, permease protein	5.8244137388
+UniRef50_D6ZIN1: ABC transporter, permease protein|g__Propionibacterium.s__Propionibacterium_acnes	5.8244137388
+UniRef50_A6M363: Amidohydrolase 3	5.8232412539
+UniRef50_A6M363: Amidohydrolase 3|g__Clostridium.s__Clostridium_beijerinckii	5.8232412539
+UniRef50_Q4QLD2: Glutaredoxin-4	5.8230208510
+UniRef50_Q4QLD2: Glutaredoxin-4|g__Escherichia.s__Escherichia_coli	5.8230208510
+UniRef50_UPI000475C45D: carboxymuconolactone decarboxylase	5.8219302928
+UniRef50_UPI000475C45D: carboxymuconolactone decarboxylase|unclassified	5.8219302928
+UniRef50_U5MTV6	5.8216729183
+UniRef50_U5MTV6|g__Clostridium.s__Clostridium_beijerinckii	5.8216729183
+UniRef50_Q9RTU9	5.8212274999
+UniRef50_Q9RTU9|g__Deinococcus.s__Deinococcus_radiodurans	5.6414843663
+UniRef50_Q9RTU9|unclassified	0.1797431336
+UniRef50_R5J6S8: Thioredoxin-disulfide reductase	5.8210553056
+UniRef50_R5J6S8: Thioredoxin-disulfide reductase|g__Clostridium.s__Clostridium_beijerinckii	5.8210553056
+UniRef50_G2TGN8: Two component transcriptional regulator	5.8209188457
+UniRef50_G2TGN8: Two component transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.8209188457
+UniRef50_A3DGC7: DNA integrity scanning protein DisA	5.8198643120
+UniRef50_A3DGC7: DNA integrity scanning protein DisA|g__Clostridium.s__Clostridium_beijerinckii	5.5039334203
+UniRef50_A3DGC7: DNA integrity scanning protein DisA|unclassified	0.3159308917
+UniRef50_P50598: Protein TolQ	5.8195666166
+UniRef50_P50598: Protein TolQ|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8195666166
+UniRef50_N3AK59: Glycosyl transferase 2 family protein	5.8187220820
+UniRef50_N3AK59: Glycosyl transferase 2 family protein|g__Escherichia.s__Escherichia_coli	5.8187220820
+UniRef50_A6LX70: MukB N-terminal domain/M protein repeat protein	5.8168436806
+UniRef50_A6LX70: MukB N-terminal domain/M protein repeat protein|g__Clostridium.s__Clostridium_beijerinckii	5.8168436806
+UniRef50_P55604	5.8162505690
+UniRef50_P55604|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.1572801948
+UniRef50_P55604|unclassified	2.6589703741
+UniRef50_C1DMW2: Apolipoprotein N-acyltransferase	5.8154731670
+UniRef50_C1DMW2: Apolipoprotein N-acyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8154731670
+UniRef50_F3U4Z2: Short-chain alcohol dehydrogenase	5.8150128738
+UniRef50_F3U4Z2: Short-chain alcohol dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.8150128738
+UniRef50_A9M2J7: Nicotinate-nucleotide pyrophosphorylase	5.8147718525
+UniRef50_A9M2J7: Nicotinate-nucleotide pyrophosphorylase|g__Neisseria.s__Neisseria_meningitidis	5.8147718525
+UniRef50_A5UK66	5.8139534884
+UniRef50_A5UK66|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.8139534884
+UniRef50_A5UNT6	5.8139534884
+UniRef50_A5UNT6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.8139534884
+UniRef50_A6UXD0: Radical SAM	5.8139534884
+UniRef50_A6UXD0: Radical SAM|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8139534884
+UniRef50_A7ZUE3: Cell division protein ZapB	5.8139534884
+UniRef50_A7ZUE3: Cell division protein ZapB|g__Escherichia.s__Escherichia_coli	5.8139534884
+UniRef50_D3GVK2	5.8139534884
+UniRef50_D3GVK2|unclassified	5.8139534884
+UniRef50_E9KNQ0: Truncated transposase	5.8139534884
+UniRef50_E9KNQ0: Truncated transposase|g__Staphylococcus.s__Staphylococcus_aureus	5.8139534884
+UniRef50_F3MQR9	5.8139534884
+UniRef50_F3MQR9|unclassified	5.8139534884
+UniRef50_J7QWV4	5.8139534884
+UniRef50_J7QWV4|g__Escherichia.s__Escherichia_coli	5.8139534884
+UniRef50_Q9HX29	5.8139534884
+UniRef50_Q9HX29|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8139534884
+UniRef50_Y7ZAG7: NAD-dependent deacetylase	5.8139534884
+UniRef50_Y7ZAG7: NAD-dependent deacetylase|g__Staphylococcus.s__Staphylococcus_aureus	5.8139534884
+UniRef50_U0DCI2: 3-hydroxyphenylpropionic transporter	5.8131011061
+UniRef50_U0DCI2: 3-hydroxyphenylpropionic transporter|g__Escherichia.s__Escherichia_coli	5.8131011061
+UniRef50_A0A024PW13	5.8124951205
+UniRef50_A0A024PW13|unclassified	5.8124951205
+UniRef50_N3MBX3	5.8121409064
+UniRef50_N3MBX3|unclassified	5.8121409064
+UniRef50_A0A031D1F0	5.8119913649
+UniRef50_A0A031D1F0|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9075977063
+UniRef50_A0A031D1F0|unclassified	2.9043936586
+UniRef50_R9DLJ9	5.8118947260
+UniRef50_R9DLJ9|unclassified	5.8118947260
+UniRef50_R7C015: ABC transporter permease protein	5.8113128076
+UniRef50_R7C015: ABC transporter permease protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8113128076
+UniRef50_C4S247: Hydrogenase nickel incorporation protein	5.8112086697
+UniRef50_C4S247: Hydrogenase nickel incorporation protein|unclassified	5.8112086697
+UniRef50_Q9Z4J7: Quinoprotein ethanol dehydrogenase	5.8110499846
+UniRef50_Q9Z4J7: Quinoprotein ethanol dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8110499846
+UniRef50_F5LZU0	5.8109184535
+UniRef50_F5LZU0|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.2718678651
+UniRef50_F5LZU0|unclassified	0.5390505884
+UniRef50_UPI000463C781: hypothetical protein	5.8102963090
+UniRef50_UPI000463C781: hypothetical protein|unclassified	5.8102963090
+UniRef50_Q9ZFE4: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI	5.8099895432
+UniRef50_Q9ZFE4: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6411817476
+UniRef50_Q9ZFE4: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI|unclassified	0.1688077955
+UniRef50_E8TEM3: 2-oxo-hepta-3-ene-1,7-dioic acid hydratase	5.8093579801
+UniRef50_E8TEM3: 2-oxo-hepta-3-ene-1,7-dioic acid hydratase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8093579801
+UniRef50_X3ENZ4	5.8091654198
+UniRef50_X3ENZ4|unclassified	5.8091654198
+UniRef50_G8VA00: Adhesion protein-associated protein	5.8090065470
+UniRef50_G8VA00: Adhesion protein-associated protein|g__Propionibacterium.s__Propionibacterium_acnes	5.7142857143
+UniRef50_G8VA00: Adhesion protein-associated protein|unclassified	0.0947208327
+UniRef50_B1FL99: RemN protein	5.8080178995
+UniRef50_B1FL99: RemN protein|unclassified	5.8080178995
+UniRef50_Q9HWR3: Bacteriophytochrome	5.8075525767
+UniRef50_Q9HWR3: Bacteriophytochrome|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7058706253
+UniRef50_Q9HWR3: Bacteriophytochrome|unclassified	1.1016819514
+UniRef50_B7V621	5.8073508156
+UniRef50_B7V621|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8073508156
+UniRef50_D3DZ67: Met-10+ like-protein	5.8057064962
+UniRef50_D3DZ67: Met-10+ like-protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.8057064962
+UniRef50_UPI0000164CFE: hypothetical protein DR_2417m	5.8055970140
+UniRef50_UPI0000164CFE: hypothetical protein DR_2417m|g__Deinococcus.s__Deinococcus_radiodurans	5.5860981020
+UniRef50_UPI0000164CFE: hypothetical protein DR_2417m|unclassified	0.2194989119
+UniRef50_D8JIA1: DMT family permease	5.8046048183
+UniRef50_D8JIA1: DMT family permease|g__Acinetobacter.s__Acinetobacter_baumannii	5.8046048183
+UniRef50_UPI00016C3888: hypothetical protein, partial	5.8040632672
+UniRef50_UPI00016C3888: hypothetical protein, partial|unclassified	5.8040632672
+UniRef50_E3A3J4: Fimbrial subunit CupA4	5.8036105877
+UniRef50_E3A3J4: Fimbrial subunit CupA4|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8036105877
+UniRef50_C3PFL3: Asparagine/glutamine permease	5.8029749279
+UniRef50_C3PFL3: Asparagine/glutamine permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.8029749279
+UniRef50_Q2CBI1: ISxac3 transposase	5.8012054534
+UniRef50_Q2CBI1: ISxac3 transposase|unclassified	5.8012054534
+UniRef50_N8YXS0	5.8003202901
+UniRef50_N8YXS0|g__Acinetobacter.s__Acinetobacter_baumannii	5.8003202901
+UniRef50_A6LQT4	5.7995336798
+UniRef50_A6LQT4|g__Clostridium.s__Clostridium_beijerinckii	5.7995336798
+UniRef50_A6LYV0: Response regulator receiver protein	5.7989258140
+UniRef50_A6LYV0: Response regulator receiver protein|g__Clostridium.s__Clostridium_beijerinckii	5.7989258140
+UniRef50_R4ZYF8: Lipopolysaccharide cholinephosphotransferase LicD1	5.7989247385
+UniRef50_R4ZYF8: Lipopolysaccharide cholinephosphotransferase LicD1|g__Streptococcus.s__Streptococcus_agalactiae	5.7989247385
+UniRef50_UPI00036A01D4: hypothetical protein	5.7985348829
+UniRef50_UPI00036A01D4: hypothetical protein|unclassified	5.7985348829
+UniRef50_G4LN90: Acyl-CoA synthetase	5.7960805664
+UniRef50_G4LN90: Acyl-CoA synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7960805664
+UniRef50_S7JY30	5.7930965599
+UniRef50_S7JY30|unclassified	5.7930965599
+UniRef50_R4RC10: Isopenicillin N epimerase CefD	5.7927974961
+UniRef50_R4RC10: Isopenicillin N epimerase CefD|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7927974961
+UniRef50_U3T6B1: Iron ABC transporter substrate-binding protein	5.7924363754
+UniRef50_U3T6B1: Iron ABC transporter substrate-binding protein|g__Acinetobacter.s__Acinetobacter_baumannii	5.7924363754
+UniRef50_M9S6A9: Two-component response regulator, PprB	5.7883787286
+UniRef50_M9S6A9: Two-component response regulator, PprB|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7883787286
+UniRef50_A0A023YMF0: Putative transport system permease protein	5.7883515957
+UniRef50_A0A023YMF0: Putative transport system permease protein|g__Escherichia.s__Escherichia_coli	5.7883515957
+UniRef50_A6VA52	5.7861950750
+UniRef50_A6VA52|unclassified	2.9850746269
+UniRef50_A6VA52|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8011204482
+UniRef50_H7CZ41	5.7861340419
+UniRef50_H7CZ41|g__Clostridium.s__Clostridium_beijerinckii	5.7861340419
+UniRef50_E2ZZI9	5.7857915917
+UniRef50_E2ZZI9|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3475935829
+UniRef50_E2ZZI9|unclassified	0.4381980088
+UniRef50_A7ZQ24: Autonomous glycyl radical cofactor	5.7855692320
+UniRef50_A7ZQ24: Autonomous glycyl radical cofactor|g__Escherichia.s__Escherichia_coli	5.7855692320
+UniRef50_Q8X6H3: Peptidoglycan-binding-like protein	5.7848759669
+UniRef50_Q8X6H3: Peptidoglycan-binding-like protein|g__Escherichia.s__Escherichia_coli	5.7848759669
+UniRef50_B2T8C3: Aliphatic sulfonates family ABC transporter, periplsmic ligand-binding protein	5.7838257403
+UniRef50_B2T8C3: Aliphatic sulfonates family ABC transporter, periplsmic ligand-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7838257403
+UniRef50_D9XFH8	5.7836874077
+UniRef50_D9XFH8|unclassified	5.7836874077
+UniRef50_S3FKB7: Major facilitator superfamily MFS_1 domain protein	5.7827631410
+UniRef50_S3FKB7: Major facilitator superfamily MFS_1 domain protein|unclassified	5.7827631410
+UniRef50_D2QC61: NAD-dependent epimerase/dehydratase	5.7827276022
+UniRef50_D2QC61: NAD-dependent epimerase/dehydratase|g__Clostridium.s__Clostridium_beijerinckii	5.7827276022
+UniRef50_G7MD19: Polysaccharide biosynthesis protein	5.7807665449
+UniRef50_G7MD19: Polysaccharide biosynthesis protein|g__Clostridium.s__Clostridium_beijerinckii	5.7807665449
+UniRef50_A3PKD8: Flagellar basal body-associated protein FliL	5.7803468208
+UniRef50_A3PKD8: Flagellar basal body-associated protein FliL|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.7803468208
+UniRef50_A5UNA9	5.7803468208
+UniRef50_A5UNA9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.7803468208
+UniRef50_A9N0J0	5.7803468208
+UniRef50_A9N0J0|unclassified	5.7803468208
+UniRef50_B0V8H4: Outer-membrane lipoprotein	5.7803468208
+UniRef50_B0V8H4: Outer-membrane lipoprotein|g__Acinetobacter.s__Acinetobacter_baumannii	5.7803468208
+UniRef50_D4HEY5	5.7803468208
+UniRef50_D4HEY5|g__Propionibacterium.s__Propionibacterium_acnes	5.7803468208
+UniRef50_F3G6H0	5.7803468208
+UniRef50_F3G6H0|unclassified	5.7803468208
+UniRef50_L9IFI2: Inner membrane transport RhmT domain protein	5.7803468208
+UniRef50_L9IFI2: Inner membrane transport RhmT domain protein|g__Escherichia.s__Escherichia_coli	5.7803468208
+UniRef50_N4PUG2: Putative acyl-CoA thioester hydrolase ybhC domain protein	5.7803468208
+UniRef50_N4PUG2: Putative acyl-CoA thioester hydrolase ybhC domain protein|g__Escherichia.s__Escherichia_coli	5.7803468208
+UniRef50_P64436	5.7803468208
+UniRef50_P64436|g__Escherichia.s__Escherichia_coli	5.7803468208
+UniRef50_Q3IV47	5.7803468208
+UniRef50_Q3IV47|unclassified	5.7803468208
+UniRef50_Q8DSD5	5.7803468208
+UniRef50_Q8DSD5|g__Streptococcus.s__Streptococcus_mutans	5.7803468208
+UniRef50_Q9HY42	5.7796561587
+UniRef50_Q9HY42|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7796561587
+UniRef50_A3PH04: Peptidoglycan-binding domain 1 protein	5.7794163715
+UniRef50_A3PH04: Peptidoglycan-binding domain 1 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.7794163715
+UniRef50_Q9C667: Chaperonin 60 subunit beta 4, chloroplastic	5.7788891016
+UniRef50_Q9C667: Chaperonin 60 subunit beta 4, chloroplastic|g__Streptococcus.s__Streptococcus_agalactiae	5.7788891016
+UniRef50_A7ZQU2: Bifunctional protein Aas	5.7779017274
+UniRef50_A7ZQU2: Bifunctional protein Aas|g__Escherichia.s__Escherichia_coli	5.7779017274
+UniRef50_R9VAP8: LysR family transcriptional regulator	5.7773473819
+UniRef50_R9VAP8: LysR family transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	5.7773473819
+UniRef50_G8MUZ6: Decarboxylase family protein Rossmann fold nucleotide-binding protein	5.7741127958
+UniRef50_G8MUZ6: Decarboxylase family protein Rossmann fold nucleotide-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	5.7741127958
+UniRef50_B2TL20: [Fe] hydrogenase	5.7734761070
+UniRef50_B2TL20: [Fe] hydrogenase|g__Clostridium.s__Clostridium_beijerinckii	5.7734761070
+UniRef50_A0A023S1G3: Transcriptional regulator	5.7727415689
+UniRef50_A0A023S1G3: Transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	5.7727415689
+UniRef50_A7FQL2: UPF0313 protein CLB_0243	5.7692764547
+UniRef50_A7FQL2: UPF0313 protein CLB_0243|g__Clostridium.s__Clostridium_beijerinckii	5.7692764547
+UniRef50_A6LTX3	5.7692307692
+UniRef50_A6LTX3|g__Clostridium.s__Clostridium_beijerinckii	5.7692307692
+UniRef50_Q1R6G9	5.7649030911
+UniRef50_Q1R6G9|g__Escherichia.s__Escherichia_coli	5.7649030911
+UniRef50_A5UNV2: Putative structural protein (Prophage psiM100)	5.7636887608
+UniRef50_A5UNV2: Putative structural protein (Prophage psiM100)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.7636887608
+UniRef50_G7M8Y2: Site-determining protein	5.7628909917
+UniRef50_G7M8Y2: Site-determining protein|g__Clostridium.s__Clostridium_beijerinckii	5.7628909917
+UniRef50_V9U2T3: General secretion pathway protein F / Type II secretory pathway, component PulF	5.7622744222
+UniRef50_V9U2T3: General secretion pathway protein F / Type II secretory pathway, component PulF|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7622744222
+UniRef50_M0Y9A2	5.7616897030
+UniRef50_M0Y9A2|unclassified	5.7616897030
+UniRef50_P0ADX7	5.7592357184
+UniRef50_P0ADX7|g__Escherichia.s__Escherichia_coli	4.5558322956
+UniRef50_P0ADX7|unclassified	1.2034034228
+UniRef50_W1V1X7: Partitioning protein (Fragment)	5.7575135705
+UniRef50_W1V1X7: Partitioning protein (Fragment)|unclassified	5.7575135705
+UniRef50_M4JQT7: Transcriptional regulator	5.7570576581
+UniRef50_M4JQT7: Transcriptional regulator|g__Escherichia.s__Escherichia_coli	5.7570576581
+UniRef50_A4WTQ0: Sarcosine oxidase, gamma subunit	5.7566027444
+UniRef50_A4WTQ0: Sarcosine oxidase, gamma subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.8278524616
+UniRef50_A4WTQ0: Sarcosine oxidase, gamma subunit|unclassified	1.9287502828
+UniRef50_U5YQY8	5.7548552612
+UniRef50_U5YQY8|unclassified	5.7548552612
+UniRef50_UPI000469DAE1: hypothetical protein	5.7524990935
+UniRef50_UPI000469DAE1: hypothetical protein|unclassified	5.7524990935
+UniRef50_A6LTL3	5.7518516108
+UniRef50_A6LTL3|g__Clostridium.s__Clostridium_beijerinckii	5.7518516108
+UniRef50_R9ZDM3: Cysteine dioxygenase	5.7510089225
+UniRef50_R9ZDM3: Cysteine dioxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7510089225
+UniRef50_J5III2	5.7488353652
+UniRef50_J5III2|unclassified	2.9239766082
+UniRef50_J5III2|g__Acinetobacter.s__Acinetobacter_baumannii	2.8248587571
+UniRef50_Q5LLN0: Maf-like protein SPO3892	5.7487557488
+UniRef50_Q5LLN0: Maf-like protein SPO3892|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.7487557488
+UniRef50_A0A026TYJ6	5.7471264368
+UniRef50_A0A026TYJ6|g__Escherichia.s__Escherichia_coli	5.7471264368
+UniRef50_A3JZY7	5.7471264368
+UniRef50_A3JZY7|unclassified	5.7471264368
+UniRef50_A6M2P6	5.7471264368
+UniRef50_A6M2P6|unclassified	5.7471264368
+UniRef50_A7FAU5	5.7471264368
+UniRef50_A7FAU5|g__Acinetobacter.s__Acinetobacter_baumannii	5.7471264368
+UniRef50_D4GGV4: Flagellar transcriptional regulator FlhD	5.7471264368
+UniRef50_D4GGV4: Flagellar transcriptional regulator FlhD|g__Escherichia.s__Escherichia_coli	5.7471264368
+UniRef50_G0DX44	5.7471264368
+UniRef50_G0DX44|g__Propionibacterium.s__Propionibacterium_acnes	5.7471264368
+UniRef50_P0A9V7	5.7471264368
+UniRef50_P0A9V7|g__Escherichia.s__Escherichia_coli	5.7471264368
+UniRef50_Q49YQ0	5.7471264368
+UniRef50_Q49YQ0|g__Staphylococcus.s__Staphylococcus_epidermidis	5.7471264368
+UniRef50_S1HG53	5.7471264368
+UniRef50_S1HG53|g__Escherichia.s__Escherichia_coli	5.7471264368
+UniRef50_S6RR98	5.7471264368
+UniRef50_S6RR98|unclassified	5.7471264368
+UniRef50_UPI0002F65D8A: hypothetical protein	5.7471264368
+UniRef50_UPI0002F65D8A: hypothetical protein|unclassified	5.7471264368
+UniRef50_UPI00046D4A81: hypothetical protein	5.7471264368
+UniRef50_UPI00046D4A81: hypothetical protein|unclassified	5.7471264368
+UniRef50_W9T8U6	5.7471264368
+UniRef50_W9T8U6|unclassified	5.7471264368
+UniRef50_M5AHK4: L-xylulose/3-keto-L-gulonate kinase	5.7465950301
+UniRef50_M5AHK4: L-xylulose/3-keto-L-gulonate kinase|g__Streptococcus.s__Streptococcus_agalactiae	5.7465950301
+UniRef50_R6FZP0: Flagellar M-ring protein	5.7460189100
+UniRef50_R6FZP0: Flagellar M-ring protein|g__Clostridium.s__Clostridium_beijerinckii	5.7460189100
+UniRef50_H0LJA1	5.7453751178
+UniRef50_H0LJA1|unclassified	5.7453751178
+UniRef50_A7ZR72: Putative Holliday junction resolvase	5.7448460730
+UniRef50_A7ZR72: Putative Holliday junction resolvase|g__Escherichia.s__Escherichia_coli	4.8309178744
+UniRef50_A7ZR72: Putative Holliday junction resolvase|unclassified	0.9139281986
+UniRef50_M1LPW4	5.7448259503
+UniRef50_M1LPW4|g__Clostridium.s__Clostridium_beijerinckii	5.7448259503
+UniRef50_A6LYT6: Baseplate J family protein	5.7430970979
+UniRef50_A6LYT6: Baseplate J family protein|g__Clostridium.s__Clostridium_beijerinckii	5.7430970979
+UniRef50_UPI000255D9DF: Fis family transcriptional regulator	5.7421421164
+UniRef50_UPI000255D9DF: Fis family transcriptional regulator|unclassified	5.7421421164
+UniRef50_F2N4W3	5.7413118817
+UniRef50_F2N4W3|unclassified	5.7413118817
+UniRef50_A0A024HQA8: Amino acid ABC transporter substrate-binding protein	5.7412744744
+UniRef50_A0A024HQA8: Amino acid ABC transporter substrate-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7412744744
+UniRef50_A9ALK8: FAD dependent oxidoreductase	5.7404313190
+UniRef50_A9ALK8: FAD dependent oxidoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.7404313190
+UniRef50_G3XD29: Na(+)/H(+) antiporter NhaP	5.7396476302
+UniRef50_G3XD29: Na(+)/H(+) antiporter NhaP|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7396476302
+UniRef50_Q8FDR3	5.7392230045
+UniRef50_Q8FDR3|g__Escherichia.s__Escherichia_coli	5.7392230045
+UniRef50_P0A701: Protein HypA	5.7388927313
+UniRef50_P0A701: Protein HypA|g__Escherichia.s__Escherichia_coli	5.7388927313
+UniRef50_Q04GM9: Ribosome-binding factor A	5.7388927313
+UniRef50_Q04GM9: Ribosome-binding factor A|g__Streptococcus.s__Streptococcus_mutans	5.7388927313
+UniRef50_S1EMA0: Inner membrane protein YiaH	5.7376741392
+UniRef50_S1EMA0: Inner membrane protein YiaH|g__Escherichia.s__Escherichia_coli	5.7376741392
+UniRef50_A5ULC7	5.7362670532
+UniRef50_A5ULC7|unclassified	5.7362670532
+UniRef50_A6M2J8: Glycerophosphoryl diester phosphodiesterase	5.7357577058
+UniRef50_A6M2J8: Glycerophosphoryl diester phosphodiesterase|g__Clostridium.s__Clostridium_beijerinckii	5.7357577058
+UniRef50_Z2DSZ2	5.7353276632
+UniRef50_Z2DSZ2|unclassified	5.7353276632
+UniRef50_C2BE46	5.7347510694
+UniRef50_C2BE46|unclassified	5.7347510694
+UniRef50_M4YY80: Ribose ABC transporter permease	5.7346292053
+UniRef50_M4YY80: Ribose ABC transporter permease|g__Streptococcus.s__Streptococcus_agalactiae	5.7346292053
+UniRef50_M9SGF5	5.7327939123
+UniRef50_M9SGF5|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7327939123
+UniRef50_C1DHH8: ATPase	5.7320608020
+UniRef50_C1DHH8: ATPase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7320608020
+UniRef50_A5UJK4	5.7307060755
+UniRef50_A5UJK4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.7307060755
+UniRef50_F4A9P0	5.7306590258
+UniRef50_F4A9P0|g__Clostridium.s__Clostridium_beijerinckii	5.7306590258
+UniRef50_UPI0003A493F1: osmotically inducible protein OsmC	5.7306590258
+UniRef50_UPI0003A493F1: osmotically inducible protein OsmC|unclassified	5.7306590258
+UniRef50_G7M0N1	5.7278331037
+UniRef50_G7M0N1|g__Clostridium.s__Clostridium_beijerinckii	5.7278331037
+UniRef50_M1FEG3: Sporulation initiation inhibitor protein soj	5.7266830924
+UniRef50_M1FEG3: Sporulation initiation inhibitor protein soj|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7266830924
+UniRef50_Q886I1: Peptide deformylase 2	5.7266640767
+UniRef50_Q886I1: Peptide deformylase 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6179775281
+UniRef50_Q886I1: Peptide deformylase 2|unclassified	0.1086865486
+UniRef50_U3U3E7: YaaA protein	5.7250331325
+UniRef50_U3U3E7: YaaA protein|g__Escherichia.s__Escherichia_coli	5.5501073068
+UniRef50_U3U3E7: YaaA protein|unclassified	0.1749258257
+UniRef50_E2BEN1: Methionine-R-sulfoxide reductase B1	5.7215461591
+UniRef50_E2BEN1: Methionine-R-sulfoxide reductase B1|g__Clostridium.s__Clostridium_beijerinckii	5.7215461591
+UniRef50_Q4KJ83: Chemotaxis protein MotB	5.7214291366
+UniRef50_Q4KJ83: Chemotaxis protein MotB|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7214291366
+UniRef50_A4VHU4: Exonuclease SbcD	5.7210147018
+UniRef50_A4VHU4: Exonuclease SbcD|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7210147018
+UniRef50_A0A024HIN5: Transcriptional regulator	5.7177047661
+UniRef50_A0A024HIN5: Transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	5.7177047661
+UniRef50_B7M3A5: Molecular chaperone Hsp31 and glyoxalase 3	5.7168148832
+UniRef50_B7M3A5: Molecular chaperone Hsp31 and glyoxalase 3|g__Escherichia.s__Escherichia_coli	5.7168148832
+UniRef50_D2J604: Regulatory protein	5.7157383662
+UniRef50_D2J604: Regulatory protein|g__Staphylococcus.s__Staphylococcus_aureus	5.7157383662
+UniRef50_UPI00035FA7D7: hypothetical protein, partial	5.7153441015
+UniRef50_UPI00035FA7D7: hypothetical protein, partial|unclassified	5.7153441015
+UniRef50_UPI00030E455E: hypothetical protein	5.7150321675
+UniRef50_UPI00030E455E: hypothetical protein|unclassified	5.7150321675
+UniRef50_UPI00036EA793: hypothetical protein	5.7143720745
+UniRef50_UPI00036EA793: hypothetical protein|unclassified	5.7143720745
+UniRef50_A0A035TCP2	5.7142857143
+UniRef50_A0A035TCP2|unclassified	5.7142857143
+UniRef50_A5UN08: Putative NADP-dependent alcohol dehydrogenase	5.7142857143
+UniRef50_A5UN08: Putative NADP-dependent alcohol dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.7142857143
+UniRef50_C6SRV1	5.7142857143
+UniRef50_C6SRV1|g__Streptococcus.s__Streptococcus_mutans	5.7142857143
+UniRef50_D9RHA3	5.7142857143
+UniRef50_D9RHA3|g__Staphylococcus.s__Staphylococcus_aureus	5.7142857143
+UniRef50_H4AFU4: Transcriptional regulator, AraC family	5.7142857143
+UniRef50_H4AFU4: Transcriptional regulator, AraC family|g__Staphylococcus.s__Staphylococcus_aureus	5.7142857143
+UniRef50_H5MB52: Hydrolase domain protein	5.7142857143
+UniRef50_H5MB52: Hydrolase domain protein|g__Escherichia.s__Escherichia_coli	5.7142857143
+UniRef50_J2LQV3	5.7142857143
+UniRef50_J2LQV3|unclassified	5.7142857143
+UniRef50_M7YPQ8	5.7142857143
+UniRef50_M7YPQ8|g__Staphylococcus.s__Staphylococcus_aureus	5.7142857143
+UniRef50_Q09677	5.7142857143
+UniRef50_Q09677|g__Escherichia.s__Escherichia_coli	5.7142857143
+UniRef50_Q7A5M8: UPF0346 protein SA1254	5.7142857143
+UniRef50_Q7A5M8: UPF0346 protein SA1254|g__Staphylococcus.s__Staphylococcus_epidermidis	5.7142857143
+UniRef50_W1XY42	5.7142857143
+UniRef50_W1XY42|unclassified	5.7142857143
+UniRef50_Q3J0T0	5.7132156668
+UniRef50_Q3J0T0|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.7132156668
+UniRef50_V4QCD9	5.7090584317
+UniRef50_V4QCD9|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7090584317
+UniRef50_P12054: Protein rlx	5.7088803439
+UniRef50_P12054: Protein rlx|unclassified	5.7088803439
+UniRef50_I3V3S8: Pyocin R2 PP, tail tube protein	5.7085020243
+UniRef50_I3V3S8: Pyocin R2 PP, tail tube protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.7085020243
+UniRef50_G7ZNE6: Protein msa	5.7080971924
+UniRef50_G7ZNE6: Protein msa|g__Staphylococcus.s__Staphylococcus_aureus	5.7080971924
+UniRef50_A6M2A6	5.7072443409
+UniRef50_A6M2A6|g__Clostridium.s__Clostridium_beijerinckii	5.7072443409
+UniRef50_G7U3Y8	5.7061042522
+UniRef50_G7U3Y8|g__Propionibacterium.s__Propionibacterium_acnes	5.7061042522
+UniRef50_J2X7R8	5.7054320882
+UniRef50_J2X7R8|unclassified	5.7054320882
+UniRef50_P44951: Diaminobutyrate--2-oxoglutarate aminotransferase	5.7050511286
+UniRef50_P44951: Diaminobutyrate--2-oxoglutarate aminotransferase|g__Acinetobacter.s__Acinetobacter_baumannii	5.7050511286
+UniRef50_A3PQ73: HpcH/HpaI aldolase	5.7033194528
+UniRef50_A3PQ73: HpcH/HpaI aldolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.7033194528
+UniRef50_Q6A8H1: Methionyl-tRNA formyltransferase	5.7022285408
+UniRef50_Q6A8H1: Methionyl-tRNA formyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	5.7022285408
+UniRef50_E8Q857	5.7009722494
+UniRef50_E8Q857|g__Streptococcus.s__Streptococcus_agalactiae	5.7009722494
+UniRef50_Q9I6Q3: 4-hydroxybenzoate transporter PcaK	5.7008854134
+UniRef50_Q9I6Q3: 4-hydroxybenzoate transporter PcaK|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7800751003
+UniRef50_Q9I6Q3: 4-hydroxybenzoate transporter PcaK|g__Acinetobacter.s__Acinetobacter_baumannii	0.9208103131
+UniRef50_J0BXE7: Plasmid pRiA4b ORF-3-like protein	5.7000456743
+UniRef50_J0BXE7: Plasmid pRiA4b ORF-3-like protein|unclassified	5.7000456743
+UniRef50_Q3IVT5: Agmatinase	5.6952286564
+UniRef50_Q3IVT5: Agmatinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.6952286564
+UniRef50_I3UM51	5.6934996826
+UniRef50_I3UM51|unclassified	5.6934996826
+UniRef50_Q0TP59: 33 kDa chaperonin	5.6934208807
+UniRef50_Q0TP59: 33 kDa chaperonin|g__Clostridium.s__Clostridium_beijerinckii	5.6934208807
+UniRef50_B3W763: Cellobiose PTS, EIIC	5.6932704444
+UniRef50_B3W763: Cellobiose PTS, EIIC|g__Clostridium.s__Clostridium_beijerinckii	5.6932704444
+UniRef50_G7DDU5	5.6907170361
+UniRef50_G7DDU5|unclassified	5.6907170361
+UniRef50_U3QUQ4: Chemotaxis protein CheA	5.6903182690
+UniRef50_U3QUQ4: Chemotaxis protein CheA|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6903182690
+UniRef50_F8H2S7: Long-chain fatty acid transporter, putative	5.6900189042
+UniRef50_F8H2S7: Long-chain fatty acid transporter, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6900189042
+UniRef50_C2W425: PTS system Galactitol-specific IIC component	5.6883230893
+UniRef50_C2W425: PTS system Galactitol-specific IIC component|g__Clostridium.s__Clostridium_beijerinckii	5.6883230893
+UniRef50_I2BMH0	5.6872617603
+UniRef50_I2BMH0|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6872617603
+UniRef50_H0Z2E2	5.6869815585
+UniRef50_H0Z2E2|unclassified	5.6869815585
+UniRef50_D7GI06: Proline-specific permease proY	5.6865996192
+UniRef50_D7GI06: Proline-specific permease proY|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7873651807
+UniRef50_D7GI06: Proline-specific permease proY|g__Propionibacterium.s__Propionibacterium_acnes	1.8992344385
+UniRef50_P59784: Glucitol/sorbitol-specific phosphotransferase enzyme IIA component	5.6862175765
+UniRef50_P59784: Glucitol/sorbitol-specific phosphotransferase enzyme IIA component|g__Escherichia.s__Escherichia_coli	5.6862175765
+UniRef50_Q3J2S6	5.6861310552
+UniRef50_Q3J2S6|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8490028490
+UniRef50_Q3J2S6|unclassified	2.8371282062
+UniRef50_Q9A0T3: Unsaturated chondroitin disaccharide hydrolase	5.6851430926
+UniRef50_Q9A0T3: Unsaturated chondroitin disaccharide hydrolase|g__Streptococcus.s__Streptococcus_agalactiae	5.6851430926
+UniRef50_Q7MUV7: Lysine--tRNA ligase	5.6829100845
+UniRef50_Q7MUV7: Lysine--tRNA ligase|g__Clostridium.s__Clostridium_beijerinckii	5.6174576619
+UniRef50_Q7MUV7: Lysine--tRNA ligase|unclassified	0.0654524226
+UniRef50_B2K821: NADH-quinone oxidoreductase subunit A	5.6825887007
+UniRef50_B2K821: NADH-quinone oxidoreductase subunit A|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8543975304
+UniRef50_B2K821: NADH-quinone oxidoreductase subunit A|unclassified	0.8281911703
+UniRef50_A6LYW0: Lysine exporter protein (LYSE/YGGA)	5.6818317690
+UniRef50_A6LYW0: Lysine exporter protein (LYSE/YGGA)|g__Clostridium.s__Clostridium_beijerinckii	5.6818317690
+UniRef50_A1B8V3: 30S ribosomal protein S16	5.6818181818
+UniRef50_A1B8V3: 30S ribosomal protein S16|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.6818181818
+UniRef50_B0T202: UPF0386 protein Caul_4643	5.6818181818
+UniRef50_B0T202: UPF0386 protein Caul_4643|g__Escherichia.s__Escherichia_coli	5.6818181818
+UniRef50_C6SRC9	5.6818181818
+UniRef50_C6SRC9|g__Streptococcus.s__Streptococcus_mutans	5.6818181818
+UniRef50_E5QWN9	5.6818181818
+UniRef50_E5QWN9|g__Staphylococcus.s__Staphylococcus_aureus	5.6818181818
+UniRef50_F8LQR9: Transcriptional regulator, XRE (Cro/CI) family	5.6818181818
+UniRef50_F8LQR9: Transcriptional regulator, XRE (Cro/CI) family|g__Streptococcus.s__Streptococcus_mutans	5.6818181818
+UniRef50_P0C885: Copper chaperone CopZ	5.6818181818
+UniRef50_P0C885: Copper chaperone CopZ|g__Staphylococcus.s__Staphylococcus_aureus	5.6818181818
+UniRef50_Q5HQQ4: UPF0337 protein SERP0494	5.6818181818
+UniRef50_Q5HQQ4: UPF0337 protein SERP0494|g__Staphylococcus.s__Staphylococcus_epidermidis	5.6818181818
+UniRef50_Y3BSI2	5.6818181818
+UniRef50_Y3BSI2|g__Staphylococcus.s__Staphylococcus_epidermidis	5.6818181818
+UniRef50_O83990: Uridine phosphorylase	5.6793126053
+UniRef50_O83990: Uridine phosphorylase|g__Clostridium.s__Clostridium_beijerinckii	5.6298711415
+UniRef50_O83990: Uridine phosphorylase|unclassified	0.0494414638
+UniRef50_A1A1W2: Tyrosine--tRNA ligase	5.6788274578
+UniRef50_A1A1W2: Tyrosine--tRNA ligase|g__Propionibacterium.s__Propionibacterium_acnes	5.4549054331
+UniRef50_A1A1W2: Tyrosine--tRNA ligase|unclassified	0.2239220247
+UniRef50_Q9HXI1: Protein translocase subunit SecD	5.6785985518
+UniRef50_Q9HXI1: Protein translocase subunit SecD|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1273306356
+UniRef50_Q9HXI1: Protein translocase subunit SecD|g__Acinetobacter.s__Acinetobacter_baumannii	0.5512679162
+UniRef50_P69986: Yop proteins translocation protein U	5.6774122029
+UniRef50_P69986: Yop proteins translocation protein U|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6774122029
+UniRef50_U3T564: Acyl coenzyme A dehydrogenase	5.6758803254
+UniRef50_U3T564: Acyl coenzyme A dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	5.6758803254
+UniRef50_Q9UT09: Phospho-2-dehydro-3-deoxyheptonate aldolase, tyrosine-inhibited	5.6757181465
+UniRef50_Q9UT09: Phospho-2-dehydro-3-deoxyheptonate aldolase, tyrosine-inhibited|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5791349407
+UniRef50_Q9UT09: Phospho-2-dehydro-3-deoxyheptonate aldolase, tyrosine-inhibited|unclassified	0.0965832057
+UniRef50_A3V382	5.6752792691
+UniRef50_A3V382|unclassified	5.6752792691
+UniRef50_Q89FG2: Coenzyme PQQ synthesis protein D	5.6750021239
+UniRef50_Q89FG2: Coenzyme PQQ synthesis protein D|unclassified	5.6750021239
+UniRef50_B7V6Q1	5.6739880877
+UniRef50_B7V6Q1|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8759689922
+UniRef50_B7V6Q1|unclassified	1.7980190955
+UniRef50_A6M1U7: Transcriptional regulator, GntR family	5.6737588652
+UniRef50_A6M1U7: Transcriptional regulator, GntR family|g__Clostridium.s__Clostridium_beijerinckii	5.6737588652
+UniRef50_Q3JVB5: Integral membrane protein MviN	5.6737183399
+UniRef50_Q3JVB5: Integral membrane protein MviN|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4780845010
+UniRef50_Q3JVB5: Integral membrane protein MviN|unclassified	0.1956338389
+UniRef50_R7IJT3: Efflux ABC transporter permease protein	5.6731317332
+UniRef50_R7IJT3: Efflux ABC transporter permease protein|g__Streptococcus.s__Streptococcus_agalactiae	5.6731317332
+UniRef50_UPI0003797246: cation:proton antiporter	5.6714776293
+UniRef50_UPI0003797246: cation:proton antiporter|unclassified	5.6714776293
+UniRef50_Q8CRA2	5.6713500585
+UniRef50_Q8CRA2|g__Staphylococcus.s__Staphylococcus_epidermidis	3.8910505837
+UniRef50_Q8CRA2|unclassified	1.7802994748
+UniRef50_A0A034SJE4: NIF3-like protein	5.6712293554
+UniRef50_A0A034SJE4: NIF3-like protein|g__Streptococcus.s__Streptococcus_agalactiae	5.6712293554
+UniRef50_I4KLQ2: Phosphate ABC transporter, permease protein	5.6696442481
+UniRef50_I4KLQ2: Phosphate ABC transporter, permease protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6696442481
+UniRef50_F5Z794: FMN-binding oxidoreductase	5.6695063675
+UniRef50_F5Z794: FMN-binding oxidoreductase|g__Acinetobacter.s__Acinetobacter_baumannii	5.6695063675
+UniRef50_A4XUQ2	5.6689147719
+UniRef50_A4XUQ2|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6689147719
+UniRef50_D5AR83: L-malyl-CoA/beta-methylmalyl-CoA lyase	5.6688643441
+UniRef50_D5AR83: L-malyl-CoA/beta-methylmalyl-CoA lyase|unclassified	5.6688643441
+UniRef50_Q03MZ6: Bifunctional purine biosynthesis protein PurH	5.6665960252
+UniRef50_Q03MZ6: Bifunctional purine biosynthesis protein PurH|g__Clostridium.s__Clostridium_beijerinckii	5.6342358587
+UniRef50_Q03MZ6: Bifunctional purine biosynthesis protein PurH|unclassified	0.0323601665
+UniRef50_B9DSE2: Nucleoside diphosphate kinase	5.6659042575
+UniRef50_B9DSE2: Nucleoside diphosphate kinase|g__Streptococcus.s__Streptococcus_agalactiae	5.6659042575
+UniRef50_R5HYZ8	5.6652854603
+UniRef50_R5HYZ8|g__Clostridium.s__Clostridium_beijerinckii	5.6652854603
+UniRef50_A6LX49: Nitroreductase	5.6638533773
+UniRef50_A6LX49: Nitroreductase|g__Clostridium.s__Clostridium_beijerinckii	5.6638533773
+UniRef50_H3UPM8	5.6628408070
+UniRef50_H3UPM8|unclassified	5.6628408070
+UniRef50_W5WS06: Amino acid permease	5.6623486378
+UniRef50_W5WS06: Amino acid permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6623486378
+UniRef50_V4QHB1	5.6609098175
+UniRef50_V4QHB1|unclassified	5.6609098175
+UniRef50_F2N7I9: 2-keto-3-deoxy-phosphogluconate aldolase	5.6585408374
+UniRef50_F2N7I9: 2-keto-3-deoxy-phosphogluconate aldolase|g__Clostridium.s__Clostridium_beijerinckii	5.6585408374
+UniRef50_R9CVV5	5.6584206076
+UniRef50_R9CVV5|unclassified	5.6584206076
+UniRef50_F7ZMZ2: LacI family transcription regulator	5.6578861095
+UniRef50_F7ZMZ2: LacI family transcription regulator|g__Clostridium.s__Clostridium_beijerinckii	5.6578861095
+UniRef50_Q97GY4: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase	5.6562668238
+UniRef50_Q97GY4: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase|g__Clostridium.s__Clostridium_beijerinckii	5.6562668238
+UniRef50_UPI000467B065: hypothetical protein	5.6557083722
+UniRef50_UPI000467B065: hypothetical protein|unclassified	5.6557083722
+UniRef50_M9VLK0: Endonuclease III	5.6540836296
+UniRef50_M9VLK0: Endonuclease III|g__Propionibacterium.s__Propionibacterium_acnes	5.6540836296
+UniRef50_A0A024L6D9	5.6534280631
+UniRef50_A0A024L6D9|unclassified	5.6534280631
+UniRef50_W1FLJ4: Glutathione synthetase	5.6518394164
+UniRef50_W1FLJ4: Glutathione synthetase|g__Escherichia.s__Escherichia_coli	5.6518394164
+UniRef50_A0A022KGA3: Alcohol dehydrogenase GroES-like domain protein	5.6497175141
+UniRef50_A0A022KGA3: Alcohol dehydrogenase GroES-like domain protein|g__Escherichia.s__Escherichia_coli	5.6497175141
+UniRef50_A6V0Y0	5.6497175141
+UniRef50_A6V0Y0|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6497175141
+UniRef50_A6V4P9	5.6497175141
+UniRef50_A6V4P9|unclassified	5.6497175141
+UniRef50_C1FT82: D-alanyl-D-alanine carboxypeptidase family protein	5.6497175141
+UniRef50_C1FT82: D-alanyl-D-alanine carboxypeptidase family protein|g__Clostridium.s__Clostridium_beijerinckii	5.6497175141
+UniRef50_C5WHZ2	5.6497175141
+UniRef50_C5WHZ2|g__Streptococcus.s__Streptococcus_mutans	5.6497175141
+UniRef50_E6MWB1	5.6497175141
+UniRef50_E6MWB1|g__Neisseria.s__Neisseria_meningitidis	5.6497175141
+UniRef50_F3NYH2	5.6497175141
+UniRef50_F3NYH2|g__Propionibacterium.s__Propionibacterium_acnes	5.6497175141
+UniRef50_G7H9I3	5.6497175141
+UniRef50_G7H9I3|unclassified	5.6497175141
+UniRef50_Q8CU82	5.6497175141
+UniRef50_Q8CU82|g__Staphylococcus.s__Staphylococcus_epidermidis	5.6497175141
+UniRef50_S1HS37	5.6497175141
+UniRef50_S1HS37|unclassified	5.6497175141
+UniRef50_U2RQ03	5.6497175141
+UniRef50_U2RQ03|unclassified	5.6497175141
+UniRef50_UPI00035E9221: hypothetical protein	5.6497175141
+UniRef50_UPI00035E9221: hypothetical protein|g__Streptococcus.s__Streptococcus_mutans	5.6497175141
+UniRef50_UPI000474CDDA: flagellar basal body rod protein FlgC	5.6497175141
+UniRef50_UPI000474CDDA: flagellar basal body rod protein FlgC|unclassified	5.6497175141
+UniRef50_L0LNW6	5.6487362235
+UniRef50_L0LNW6|unclassified	5.6487362235
+UniRef50_W8S4W8: Branched-chain amino acid ABC transporter, amino acid-binding protein	5.6467439153
+UniRef50_W8S4W8: Branched-chain amino acid ABC transporter, amino acid-binding protein|unclassified	5.6467439153
+UniRef50_A0A034N917	5.6461202057
+UniRef50_A0A034N917|g__Staphylococcus.s__Staphylococcus_aureus	4.6272081977
+UniRef50_A0A034N917|unclassified	1.0189120080
+UniRef50_F7X525: ABC transporter, periplasmic solute-binding protein	5.6412108398
+UniRef50_F7X525: ABC transporter, periplasmic solute-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6412108398
+UniRef50_A3M261	5.6411085798
+UniRef50_A3M261|g__Acinetobacter.s__Acinetobacter_baumannii	5.6411085798
+UniRef50_X6KWQ0	5.6395269512
+UniRef50_X6KWQ0|unclassified	5.6395269512
+UniRef50_K0P9U6	5.6392040426
+UniRef50_K0P9U6|unclassified	5.6392040426
+UniRef50_Q9KDS9: Biotin carboxylase	5.6352133432
+UniRef50_Q9KDS9: Biotin carboxylase|g__Streptococcus.s__Streptococcus_agalactiae	5.5838828672
+UniRef50_Q9KDS9: Biotin carboxylase|unclassified	0.0513304760
+UniRef50_A0A037X3F6: Sodium:solute symporter (Fragment)	5.6350337295
+UniRef50_A0A037X3F6: Sodium:solute symporter (Fragment)|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6350337295
+UniRef50_N2LGG9	5.6319058632
+UniRef50_N2LGG9|unclassified	5.6319058632
+UniRef50_I7B8G3: Poly	5.6269813639
+UniRef50_I7B8G3: Poly|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6269813639
+UniRef50_A0A018BBM3	5.6263635223
+UniRef50_A0A018BBM3|unclassified	5.6263635223
+UniRef50_G0DXU0	5.6260206387
+UniRef50_G0DXU0|g__Propionibacterium.s__Propionibacterium_acnes	5.6260206387
+UniRef50_A4WXW9	5.6254457749
+UniRef50_A4WXW9|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.6254457749
+UniRef50_P13511: Cobalt-zinc-cadmium resistance protein CzcA	5.6232814393
+UniRef50_P13511: Cobalt-zinc-cadmium resistance protein CzcA|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6012518924
+UniRef50_P13511: Cobalt-zinc-cadmium resistance protein CzcA|g__Acinetobacter.s__Acinetobacter_baumannii	1.0220295469
+UniRef50_UPI00035C0E02: hypothetical protein	5.6227492704
+UniRef50_UPI00035C0E02: hypothetical protein|unclassified	5.6227492704
+UniRef50_G3GXC2: Protein notum-like	5.6220547174
+UniRef50_G3GXC2: Protein notum-like|unclassified	5.6220547174
+UniRef50_A7HHV0	5.6213087137
+UniRef50_A7HHV0|unclassified	5.6213087137
+UniRef50_UPI0003792ECB: hypothetical protein	5.6212275479
+UniRef50_UPI0003792ECB: hypothetical protein|unclassified	5.6212275479
+UniRef50_D3E2G7	5.6211696903
+UniRef50_D3E2G7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.6211696903
+UniRef50_J0JZY1: Staphylococcal secretory antigen SsaA domain protein	5.6208159656
+UniRef50_J0JZY1: Staphylococcal secretory antigen SsaA domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	5.6208159656
+UniRef50_P27876: Triosephosphate isomerase	5.6203720640
+UniRef50_P27876: Triosephosphate isomerase|g__Streptococcus.s__Streptococcus_agalactiae	5.2182706894
+UniRef50_P27876: Triosephosphate isomerase|unclassified	0.4021013747
+UniRef50_A6LTW8	5.6200348263
+UniRef50_A6LTW8|g__Clostridium.s__Clostridium_beijerinckii	5.6200348263
+UniRef50_A0A011MKC7	5.6179775281
+UniRef50_A0A011MKC7|unclassified	5.6179775281
+UniRef50_B2TJL3	5.6179775281
+UniRef50_B2TJL3|g__Clostridium.s__Clostridium_beijerinckii	5.6179775281
+UniRef50_B9JUE9: UPF0434 protein Avi_4243	5.6179775281
+UniRef50_B9JUE9: UPF0434 protein Avi_4243|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.6179775281
+UniRef50_I6T5H5	5.6179775281
+UniRef50_I6T5H5|g__Streptococcus.s__Streptococcus_mutans	5.6179775281
+UniRef50_Q9RXL0	5.6179775281
+UniRef50_Q9RXL0|g__Deinococcus.s__Deinococcus_radiodurans	5.6179775281
+UniRef50_T2A2T5	5.6179775281
+UniRef50_T2A2T5|g__Neisseria.s__Neisseria_meningitidis	5.6179775281
+UniRef50_UPI00046CE40E: hypothetical protein	5.6179775281
+UniRef50_UPI00046CE40E: hypothetical protein|unclassified	5.6179775281
+UniRef50_V9XNN8	5.6179775281
+UniRef50_V9XNN8|unclassified	5.6179775281
+UniRef50_W4TJV2: Transcription termination protein NusB	5.6179775281
+UniRef50_W4TJV2: Transcription termination protein NusB|unclassified	5.6179775281
+UniRef50_U3TTP8: TonB-dependent siderophore receptor	5.6179775281
+UniRef50_U3TTP8: TonB-dependent siderophore receptor|g__Escherichia.s__Escherichia_coli	5.6179775281
+UniRef50_Q2FC63: Beta-lactamase regulatory protein (Fragment)	5.6166025334
+UniRef50_Q2FC63: Beta-lactamase regulatory protein (Fragment)|unclassified	5.6166025334
+UniRef50_D6K2W1	5.6161886458
+UniRef50_D6K2W1|unclassified	5.6161886458
+UniRef50_U6FW85	5.6161132170
+UniRef50_U6FW85|unclassified	5.6161132170
+UniRef50_C5ASM5: Enoyl-CoA hydratase	5.6154057436
+UniRef50_C5ASM5: Enoyl-CoA hydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.6154057436
+UniRef50_A6V8A2	5.6150550796
+UniRef50_A6V8A2|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6150550796
+UniRef50_A3NGW6: 2-aminoethylphosphonate--pyruvate transaminase	5.6147007571
+UniRef50_A3NGW6: 2-aminoethylphosphonate--pyruvate transaminase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5221955882
+UniRef50_A3NGW6: 2-aminoethylphosphonate--pyruvate transaminase|unclassified	0.0925051688
+UniRef50_A6M093	5.6135000466
+UniRef50_A6M093|g__Clostridium.s__Clostridium_beijerinckii	5.6135000466
+UniRef50_V7EPQ5	5.6110160107
+UniRef50_V7EPQ5|unclassified	5.6110160107
+UniRef50_Q0VQR4: Na(+)-translocating NADH-quinone reductase subunit E	5.6105920549
+UniRef50_Q0VQR4: Na(+)-translocating NADH-quinone reductase subunit E|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3551387819
+UniRef50_Q0VQR4: Na(+)-translocating NADH-quinone reductase subunit E|unclassified	1.2554532731
+UniRef50_Q51519: Anthranilate synthase, phenazine specific	5.6100750110
+UniRef50_Q51519: Anthranilate synthase, phenazine specific|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.6100750110
+UniRef50_M1N762: PAS domain S-box/diguanylate cyclase (GGDEF) domain-containing protein	5.6064701842
+UniRef50_M1N762: PAS domain S-box/diguanylate cyclase (GGDEF) domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	5.6064701842
+UniRef50_E0S112: Iron ABC transporter permease protein	5.6058840381
+UniRef50_E0S112: Iron ABC transporter permease protein|g__Clostridium.s__Clostridium_beijerinckii	5.6058840381
+UniRef50_B7I478: Transcriptional regulator, TetR family	5.6051915948
+UniRef50_B7I478: Transcriptional regulator, TetR family|g__Acinetobacter.s__Acinetobacter_baumannii	5.6051915948
+UniRef50_L7WSZ1	5.6051738836
+UniRef50_L7WSZ1|unclassified	5.6051738836
+UniRef50_B1Z181: Selenide, water dikinase	5.6028140592
+UniRef50_B1Z181: Selenide, water dikinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.5030631209
+UniRef50_B1Z181: Selenide, water dikinase|unclassified	0.0997509383
+UniRef50_Q1R311	5.6009070295
+UniRef50_Q1R311|g__Escherichia.s__Escherichia_coli	5.6009070295
+UniRef50_S8XW23	5.6005212708
+UniRef50_S8XW23|g__Streptococcus.s__Streptococcus_agalactiae	5.6005212708
+UniRef50_Q12NS9: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	5.5995904061
+UniRef50_Q12NS9: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|g__Escherichia.s__Escherichia_coli	5.5995904061
+UniRef50_W1BW20	5.5992956913
+UniRef50_W1BW20|unclassified	5.5992956913
+UniRef50_A4VUA6: Oxygen-sensitive ribonucleoside-triphosphate reductase	5.5983588587
+UniRef50_A4VUA6: Oxygen-sensitive ribonucleoside-triphosphate reductase|g__Streptococcus.s__Streptococcus_mutans	5.5983588587
+UniRef50_P09785: Anthranilate synthase component 1, pyocyanine specific	5.5970652581
+UniRef50_P09785: Anthranilate synthase component 1, pyocyanine specific|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4780967447
+UniRef50_P09785: Anthranilate synthase component 1, pyocyanine specific|unclassified	0.1189685134
+UniRef50_G5PNL0: Putative membrane protein	5.5969000338
+UniRef50_G5PNL0: Putative membrane protein|unclassified	5.5969000338
+UniRef50_G4LKC9: Large exoprotein	5.5936983336
+UniRef50_G4LKC9: Large exoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5936983336
+UniRef50_UPI00037E3D20: 50S ribosomal protein L13	5.5936219629
+UniRef50_UPI00037E3D20: 50S ribosomal protein L13|unclassified	5.5936219629
+UniRef50_K0RGS5	5.5922885994
+UniRef50_K0RGS5|unclassified	5.5922885994
+UniRef50_Q53075: UvrC protein (Fragment)	5.5913793121
+UniRef50_Q53075: UvrC protein (Fragment)|unclassified	5.5913793121
+UniRef50_A9U8B3: Predicted protein (Fragment)	5.5900793431
+UniRef50_A9U8B3: Predicted protein (Fragment)|unclassified	5.5900793431
+UniRef50_I2DV60: Transcriptional regulator, GntR family	5.5896559101
+UniRef50_I2DV60: Transcriptional regulator, GntR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5896559101
+UniRef50_Q9I3B6	5.5890907573
+UniRef50_Q9I3B6|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5890907573
+UniRef50_UPI0003715821: hypothetical protein	5.5888690703
+UniRef50_UPI0003715821: hypothetical protein|unclassified	5.5888690703
+UniRef50_R9ZKB9	5.5876582562
+UniRef50_R9ZKB9|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5876582562
+UniRef50_U9RLL1: Maltose/mannitol ABC transporter substrate-binding protein	5.5874030158
+UniRef50_U9RLL1: Maltose/mannitol ABC transporter substrate-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5874030158
+UniRef50_T7R7U1: Cardiolipin synthase 2	5.5873169480
+UniRef50_T7R7U1: Cardiolipin synthase 2|g__Escherichia.s__Escherichia_coli	5.5873169480
+UniRef50_B7UXB5	5.5865921788
+UniRef50_B7UXB5|unclassified	5.5865921788
+UniRef50_B9AEM8	5.5865921788
+UniRef50_B9AEM8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.5865921788
+UniRef50_S6AV50	5.5865921788
+UniRef50_S6AV50|g__Streptococcus.s__Streptococcus_mutans	5.5865921788
+UniRef50_UPI00037EE9BE: hypothetical protein	5.5865921788
+UniRef50_UPI00037EE9BE: hypothetical protein|unclassified	5.5865921788
+UniRef50_V0VVF5	5.5865921788
+UniRef50_V0VVF5|g__Escherichia.s__Escherichia_coli	5.5865921788
+UniRef50_UPI00016C05CE: glycogen/starch/alpha-glucan phosphorylase	5.5856460929
+UniRef50_UPI00016C05CE: glycogen/starch/alpha-glucan phosphorylase|g__Clostridium.s__Clostridium_beijerinckii	5.5709262621
+UniRef50_UPI00016C05CE: glycogen/starch/alpha-glucan phosphorylase|unclassified	0.0147198308
+UniRef50_D0LWP0: ABC transporter related protein	5.5855912002
+UniRef50_D0LWP0: ABC transporter related protein|g__Streptococcus.s__Streptococcus_agalactiae	5.5855912002
+UniRef50_H7CVL3: Beta-lactamase	5.5828295593
+UniRef50_H7CVL3: Beta-lactamase|g__Clostridium.s__Clostridium_beijerinckii	5.5828295593
+UniRef50_D0K652: Epidermin immunity protein F	5.5826035835
+UniRef50_D0K652: Epidermin immunity protein F|g__Staphylococcus.s__Staphylococcus_aureus	4.6948356808
+UniRef50_D0K652: Epidermin immunity protein F|unclassified	0.8877679027
+UniRef50_Q4ZY83: Two-component response regulator CbrB	5.5816222877
+UniRef50_Q4ZY83: Two-component response regulator CbrB|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5816222877
+UniRef50_A9HRE1: Malonyl CoA-acyl carrier protein transacylase	5.5816196927
+UniRef50_A9HRE1: Malonyl CoA-acyl carrier protein transacylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.5816196927
+UniRef50_G7ZEP8: Putative Type VI secretion protein IcmF-like	5.5811618791
+UniRef50_G7ZEP8: Putative Type VI secretion protein IcmF-like|unclassified	5.5811618791
+UniRef50_M9RUK4	5.5802373747
+UniRef50_M9RUK4|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5802373747
+UniRef50_C7BYC9	5.5788114097
+UniRef50_C7BYC9|g__Helicobacter.s__Helicobacter_pylori	5.5788114097
+UniRef50_D4UAW2	5.5783788773
+UniRef50_D4UAW2|unclassified	5.5783788773
+UniRef50_B2V236: Flagellar hook protein FlgE	5.5777163464
+UniRef50_B2V236: Flagellar hook protein FlgE|g__Clostridium.s__Clostridium_beijerinckii	5.5777163464
+UniRef50_A6LY63: Restriction modification system DNA specificity domain	5.5766232817
+UniRef50_A6LY63: Restriction modification system DNA specificity domain|g__Clostridium.s__Clostridium_beijerinckii	5.5766232817
+UniRef50_UPI0003B4D2F4: hypothetical protein	5.5763567818
+UniRef50_UPI0003B4D2F4: hypothetical protein|unclassified	5.5763567818
+UniRef50_I7AAC7	5.5761854576
+UniRef50_I7AAC7|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5761854576
+UniRef50_I4SXZ9: Choline transport protein BetT	5.5759406514
+UniRef50_I4SXZ9: Choline transport protein BetT|g__Escherichia.s__Escherichia_coli	5.5759406514
+UniRef50_F3U3B9	5.5748323602
+UniRef50_F3U3B9|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.2016806723
+UniRef50_F3U3B9|unclassified	1.3731516879
+UniRef50_E8PDG9: Malonyl CoA-acyl carrier protein transacylase	5.5741194573
+UniRef50_E8PDG9: Malonyl CoA-acyl carrier protein transacylase|g__Acinetobacter.s__Acinetobacter_baumannii	5.5741194573
+UniRef50_K9NR38: Peptidase M23B	5.5720710388
+UniRef50_K9NR38: Peptidase M23B|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5720710388
+UniRef50_Q979P0: 7-cyano-7-deazaguanine synthase	5.5705645313
+UniRef50_Q979P0: 7-cyano-7-deazaguanine synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5705645313
+UniRef50_W5WGU1	5.5691020196
+UniRef50_W5WGU1|g__Propionibacterium.s__Propionibacterium_acnes	5.5691020196
+UniRef50_B2TI69	5.5683568308
+UniRef50_B2TI69|g__Clostridium.s__Clostridium_beijerinckii	5.5683568308
+UniRef50_V8RAG2: Sodium:proton antiporter	5.5683097745
+UniRef50_V8RAG2: Sodium:proton antiporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5683097745
+UniRef50_F9LJN9: Conserved domain protein	5.5682584954
+UniRef50_F9LJN9: Conserved domain protein|unclassified	5.5682584954
+UniRef50_T2DX65: Serine acetyltransferase	5.5671618694
+UniRef50_T2DX65: Serine acetyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5671618694
+UniRef50_K2AD42	5.5670071634
+UniRef50_K2AD42|unclassified	5.5670071634
+UniRef50_R4K5C7: Arabinose efflux permease family protein	5.5662436744
+UniRef50_R4K5C7: Arabinose efflux permease family protein|g__Clostridium.s__Clostridium_beijerinckii	5.5662436744
+UniRef50_P37615	5.5652173913
+UniRef50_P37615|g__Escherichia.s__Escherichia_coli	5.5652173913
+UniRef50_UPI0002893D0F: integrase catalytic subunit	5.5636573324
+UniRef50_UPI0002893D0F: integrase catalytic subunit|unclassified	5.5636573324
+UniRef50_UPI00036605EC: hypothetical protein	5.5635082932
+UniRef50_UPI00036605EC: hypothetical protein|unclassified	5.5635082932
+UniRef50_R7GG89: Single-strand binding protein/Primosomal replication protein n	5.5635069177
+UniRef50_R7GG89: Single-strand binding protein/Primosomal replication protein n|g__Clostridium.s__Clostridium_beijerinckii	5.5635069177
+UniRef50_E1JED4	5.5630604586
+UniRef50_E1JED4|unclassified	5.5630604586
+UniRef50_A4WNN6	5.5619858697
+UniRef50_A4WNN6|unclassified	5.5619858697
+UniRef50_I1ZM56: Peptidoglycan hydrolase	5.5589541719
+UniRef50_I1ZM56: Peptidoglycan hydrolase|g__Streptococcus.s__Streptococcus_agalactiae	5.5589541719
+UniRef50_Q1J2H5: Pyruvate kinase	5.5578551034
+UniRef50_Q1J2H5: Pyruvate kinase|g__Deinococcus.s__Deinococcus_radiodurans	5.5578551034
+UniRef50_A6LTJ7: Glycosyl transferase	5.5562877327
+UniRef50_A6LTJ7: Glycosyl transferase|g__Clostridium.s__Clostridium_beijerinckii	5.5562877327
+UniRef50_UPI0001DD0904: hypothetical protein, partial	5.5556196441
+UniRef50_UPI0001DD0904: hypothetical protein, partial|unclassified	5.5556196441
+UniRef50_Q5HKS6	5.5555555556
+UniRef50_Q5HKS6|g__Staphylococcus.s__Staphylococcus_epidermidis	5.5555555556
+UniRef50_UPI00036BC565: CRISPR-associated protein, partial	5.5555555556
+UniRef50_UPI00036BC565: CRISPR-associated protein, partial|g__Streptococcus.s__Streptococcus_mutans	5.5555555556
+UniRef50_W4U293	5.5555555556
+UniRef50_W4U293|g__Propionibacterium.s__Propionibacterium_acnes	5.5555555556
+UniRef50_U5MSH8: Signal-transduction and transcriptional-control protein Stc	5.5532578260
+UniRef50_U5MSH8: Signal-transduction and transcriptional-control protein Stc|g__Clostridium.s__Clostridium_beijerinckii	5.5532578260
+UniRef50_A1U1T6: Peptidase S49	5.5530712122
+UniRef50_A1U1T6: Peptidase S49|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5530712122
+UniRef50_Q890T6: Conserved protein	5.5525459697
+UniRef50_Q890T6: Conserved protein|g__Clostridium.s__Clostridium_beijerinckii	5.5525459697
+UniRef50_Z2DPK1	5.5507666925
+UniRef50_Z2DPK1|unclassified	5.5507666925
+UniRef50_UPI00036F141B: hypothetical protein	5.5487147914
+UniRef50_UPI00036F141B: hypothetical protein|unclassified	5.5487147914
+UniRef50_R5HYR6	5.5486358577
+UniRef50_R5HYR6|g__Clostridium.s__Clostridium_beijerinckii	5.5486358577
+UniRef50_Q5XCA7: Dihydroneopterin aldolase	5.5478608803
+UniRef50_Q5XCA7: Dihydroneopterin aldolase|g__Streptococcus.s__Streptococcus_mutans	5.5478608803
+UniRef50_Q2W0I4	5.5469880662
+UniRef50_Q2W0I4|unclassified	5.5469880662
+UniRef50_S0TVB0	5.5453431373
+UniRef50_S0TVB0|g__Escherichia.s__Escherichia_coli	5.5453431373
+UniRef50_P0AAR8	5.5436117936
+UniRef50_P0AAR8|g__Escherichia.s__Escherichia_coli	5.5436117936
+UniRef50_M2DSI6	5.5405070662
+UniRef50_M2DSI6|unclassified	5.5405070662
+UniRef50_X5K530: Shikimate dehydrogenase	5.5402666956
+UniRef50_X5K530: Shikimate dehydrogenase|g__Streptococcus.s__Streptococcus_agalactiae	5.5402666956
+UniRef50_UPI00046608E5: hypothetical protein	5.5384335567
+UniRef50_UPI00046608E5: hypothetical protein|unclassified	5.5384335567
+UniRef50_R6NN79: Asparagine synthetase	5.5360655044
+UniRef50_R6NN79: Asparagine synthetase|g__Clostridium.s__Clostridium_beijerinckii	5.5360655044
+UniRef50_A5UL11	5.5360341511
+UniRef50_A5UL11|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.5360341511
+UniRef50_B9KQM1: Major facilitator superfamily MFS_1	5.5355471495
+UniRef50_B9KQM1: Major facilitator superfamily MFS_1|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.5355471495
+UniRef50_V9U4B2	5.5355441495
+UniRef50_V9U4B2|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7214871128
+UniRef50_V9U4B2|unclassified	0.8140570367
+UniRef50_Q9K005: Orotidine 5'-phosphate decarboxylase	5.5355423687
+UniRef50_Q9K005: Orotidine 5'-phosphate decarboxylase|g__Neisseria.s__Neisseria_meningitidis	5.3227042772
+UniRef50_Q9K005: Orotidine 5'-phosphate decarboxylase|unclassified	0.2128380915
+UniRef50_Q06951: Phosphomannomutase	5.5330562142
+UniRef50_Q06951: Phosphomannomutase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.5330562142
+UniRef50_Q97FT9: Lon protease	5.5329493949
+UniRef50_Q97FT9: Lon protease|g__Clostridium.s__Clostridium_beijerinckii	5.4857351746
+UniRef50_Q97FT9: Lon protease|unclassified	0.0472142203
+UniRef50_E3EY41	5.5324617610
+UniRef50_E3EY41|unclassified	5.5324617610
+UniRef50_E2ZP20: Alpha-1,6-rhamnosyltransferase MigA	5.5324289719
+UniRef50_E2ZP20: Alpha-1,6-rhamnosyltransferase MigA|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5324289719
+UniRef50_E0N9M8	5.5289601498
+UniRef50_E0N9M8|unclassified	5.5289601498
+UniRef50_T2EHJ1: Hpt domain protein	5.5288478310
+UniRef50_T2EHJ1: Hpt domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5288478310
+UniRef50_E4NJH8: Putative truncated transcriptional regulator	5.5274419352
+UniRef50_E4NJH8: Putative truncated transcriptional regulator|unclassified	5.5274419352
+UniRef50_Q9KQM0: 5'-deoxynucleotidase VC_1978	5.5270936004
+UniRef50_Q9KQM0: 5'-deoxynucleotidase VC_1978|g__Escherichia.s__Escherichia_coli	5.5270936004
+UniRef50_A6TF85	5.5248618785
+UniRef50_A6TF85|g__Escherichia.s__Escherichia_coli	5.5248618785
+UniRef50_D8E6H7	5.5248618785
+UniRef50_D8E6H7|g__Escherichia.s__Escherichia_coli	5.5248618785
+UniRef50_E0N7V9	5.5248618785
+UniRef50_E0N7V9|g__Neisseria.s__Neisseria_meningitidis	5.5248618785
+UniRef50_E6MUT9: Integral membrane protein	5.5248618785
+UniRef50_E6MUT9: Integral membrane protein|g__Neisseria.s__Neisseria_meningitidis	5.5248618785
+UniRef50_L3HXK2: Cryptic beta-glucoside bgl operon antiterminator	5.5248618785
+UniRef50_L3HXK2: Cryptic beta-glucoside bgl operon antiterminator|g__Escherichia.s__Escherichia_coli	5.5248618785
+UniRef50_Q5HPA6	5.5248618785
+UniRef50_Q5HPA6|g__Staphylococcus.s__Staphylococcus_epidermidis	5.5248618785
+UniRef50_Q6G8C0	5.5248618785
+UniRef50_Q6G8C0|g__Staphylococcus.s__Staphylococcus_aureus	5.5248618785
+UniRef50_U0CRT2: Melibiose carrier protein	5.5248618785
+UniRef50_U0CRT2: Melibiose carrier protein|g__Escherichia.s__Escherichia_coli	5.5248618785
+UniRef50_UPI0002486AD6: hypothetical protein, partial	5.5248618785
+UniRef50_UPI0002486AD6: hypothetical protein, partial|unclassified	5.5248618785
+UniRef50_UPI0004714D19: hypothetical protein	5.5248618785
+UniRef50_UPI0004714D19: hypothetical protein|unclassified	5.5248618785
+UniRef50_W8T534: Toxin RelE	5.5248618785
+UniRef50_W8T534: Toxin RelE|g__Escherichia.s__Escherichia_coli	5.5248618785
+UniRef50_I6SGU2	5.5247946814
+UniRef50_I6SGU2|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5247946814
+UniRef50_F5X6K5: ABC transport system ATP-binding protein	5.5240692839
+UniRef50_F5X6K5: ABC transport system ATP-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	5.5240692839
+UniRef50_K1JA26	5.5232185060
+UniRef50_K1JA26|unclassified	5.5232185060
+UniRef50_A9G928	5.5223472087
+UniRef50_A9G928|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.5223472087
+UniRef50_G2KYU1	5.5220129253
+UniRef50_G2KYU1|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5220129253
+UniRef50_V7Z9W4: Secreted protein	5.5207068888
+UniRef50_V7Z9W4: Secreted protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5207068888
+UniRef50_K4KGL9: Beta-ketoacyl synthase	5.5207011961
+UniRef50_K4KGL9: Beta-ketoacyl synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5207011961
+UniRef50_M4N5D5	5.5200103538
+UniRef50_M4N5D5|unclassified	5.5200103538
+UniRef50_T2EB50: AAA domain family protein	5.5195601370
+UniRef50_T2EB50: AAA domain family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5195601370
+UniRef50_Q88AZ5: 33 kDa chaperonin	5.5184574777
+UniRef50_Q88AZ5: 33 kDa chaperonin|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5184574777
+UniRef50_J2LA76	5.5177947094
+UniRef50_J2LA76|unclassified	5.5177947094
+UniRef50_Q9I340: Enolase-phosphatase E1	5.5175038052
+UniRef50_Q9I340: Enolase-phosphatase E1|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5175038052
+UniRef50_M1MSQ2: Methyl-accepting chemotaxis protein	5.5172327810
+UniRef50_M1MSQ2: Methyl-accepting chemotaxis protein|g__Clostridium.s__Clostridium_beijerinckii	5.5172327810
+UniRef50_I0C719	5.5169695870
+UniRef50_I0C719|unclassified	5.5169695870
+UniRef50_F5M463: 4-alpha-glucanotransferase	5.5163509951
+UniRef50_F5M463: 4-alpha-glucanotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.5163509951
+UniRef50_U5MVT4: Nodulation protein NolG	5.5163336359
+UniRef50_U5MVT4: Nodulation protein NolG|g__Clostridium.s__Clostridium_beijerinckii	5.5163336359
+UniRef50_A0A020VVQ6	5.5157486192
+UniRef50_A0A020VVQ6|g__Staphylococcus.s__Staphylococcus_aureus	5.5157486192
+UniRef50_A5W3L7: Short chain fatty acid transporter	5.5150158968
+UniRef50_A5W3L7: Short chain fatty acid transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7337658968
+UniRef50_A5W3L7: Short chain fatty acid transporter|g__Acinetobacter.s__Acinetobacter_baumannii	0.7812500000
+UniRef50_H2JJ51: ABC-type sugar transport system, periplasmic component	5.5138647048
+UniRef50_H2JJ51: ABC-type sugar transport system, periplasmic component|g__Clostridium.s__Clostridium_beijerinckii	5.5138647048
+UniRef50_E2ZZT1: Type I ferripyoverdine receptor, FpvB	5.5124177163
+UniRef50_E2ZZT1: Type I ferripyoverdine receptor, FpvB|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.5124177163
+UniRef50_B6ZVQ0: 4Fe-4S binding protein	5.5118883125
+UniRef50_B6ZVQ0: 4Fe-4S binding protein|g__Escherichia.s__Escherichia_coli	5.5118883125
+UniRef50_UPI00026252F7: ATP-dependent DNA helicase, RecQ family protein	5.5118428466
+UniRef50_UPI00026252F7: ATP-dependent DNA helicase, RecQ family protein|unclassified	5.5118428466
+UniRef50_R4Z8N5: NADH oxidase	5.5111857015
+UniRef50_R4Z8N5: NADH oxidase|g__Streptococcus.s__Streptococcus_agalactiae	5.5111857015
+UniRef50_K4PTK7: PTS system, IIC component	5.5110550697
+UniRef50_K4PTK7: PTS system, IIC component|g__Streptococcus.s__Streptococcus_agalactiae	5.5110550697
+UniRef50_S6VZ76: Inner-membrane translocator (Fragment)	5.5062262004
+UniRef50_S6VZ76: Inner-membrane translocator (Fragment)|unclassified	5.5062262004
+UniRef50_B1LE56: Cysteine desulfurase	5.5055654258
+UniRef50_B1LE56: Cysteine desulfurase|g__Escherichia.s__Escherichia_coli	5.5055654258
+UniRef50_D3FUC6: [Ni/Fe] hydrogenase, small subunit	5.5043814590
+UniRef50_D3FUC6: [Ni/Fe] hydrogenase, small subunit|g__Clostridium.s__Clostridium_beijerinckii	5.5043814590
+UniRef50_W4L9X6	5.5042663379
+UniRef50_W4L9X6|unclassified	5.5042663379
+UniRef50_U5MRW2: NADP-reducing hydrogenase subunit HndC	5.5040105213
+UniRef50_U5MRW2: NADP-reducing hydrogenase subunit HndC|g__Clostridium.s__Clostridium_beijerinckii	5.5040105213
+UniRef50_M4R3E4: MFS superfamily bicyclomycin/multidrug transportprotein	5.5033358263
+UniRef50_M4R3E4: MFS superfamily bicyclomycin/multidrug transportprotein|g__Acinetobacter.s__Acinetobacter_baumannii	5.5033358263
+UniRef50_R0TNR1	5.5012961958
+UniRef50_R0TNR1|unclassified	5.5012961958
+UniRef50_P80357: Arginine N-succinyltransferase subunit alpha	5.4999583814
+UniRef50_P80357: Arginine N-succinyltransferase subunit alpha|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3765296536
+UniRef50_P80357: Arginine N-succinyltransferase subunit alpha|unclassified	0.1234287278
+UniRef50_A3DHY6: Ribosomal RNA small subunit methyltransferase G	5.4976650721
+UniRef50_A3DHY6: Ribosomal RNA small subunit methyltransferase G|g__Clostridium.s__Clostridium_beijerinckii	5.4976650721
+UniRef50_Q4K5I5: Sel1 domain protein	5.4967033573
+UniRef50_Q4K5I5: Sel1 domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4967033573
+UniRef50_A0A023LDQ6	5.4960094006
+UniRef50_A0A023LDQ6|g__Escherichia.s__Escherichia_coli	5.4960094006
+UniRef50_N5S4K4	5.4958067399
+UniRef50_N5S4K4|g__Staphylococcus.s__Staphylococcus_aureus	5.3475935829
+UniRef50_N5S4K4|unclassified	0.1482131570
+UniRef50_Q9C0V7	5.4955824885
+UniRef50_Q9C0V7|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4955824885
+UniRef50_V8R9C6: Cytochrome C assembly protein	5.4952201613
+UniRef50_V8R9C6: Cytochrome C assembly protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4952201613
+UniRef50_A6M1L8: Putative cell wall binding repeat-containing protein	5.4947025605
+UniRef50_A6M1L8: Putative cell wall binding repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	5.4947025605
+UniRef50_Q92ID5: NADH-quinone oxidoreductase subunit A	5.4945469640
+UniRef50_Q92ID5: NADH-quinone oxidoreductase subunit A|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.4945469640
+UniRef50_A6TDP3: Isopentenyl-diphosphate Delta-isomerase	5.4945054945
+UniRef50_A6TDP3: Isopentenyl-diphosphate Delta-isomerase|g__Escherichia.s__Escherichia_coli	5.4945054945
+UniRef50_B2U0T1	5.4945054945
+UniRef50_B2U0T1|unclassified	5.4945054945
+UniRef50_B4TBG9: Probable 4-amino-4-deoxy-L-arabinose-phosphoundecaprenol flippase subunit ArnE	5.4945054945
+UniRef50_B4TBG9: Probable 4-amino-4-deoxy-L-arabinose-phosphoundecaprenol flippase subunit ArnE|g__Escherichia.s__Escherichia_coli	5.4945054945
+UniRef50_E2ZPN5	5.4945054945
+UniRef50_E2ZPN5|unclassified	5.4945054945
+UniRef50_F8LMK0: HTH-type transcriptional activator hxlR	5.4945054945
+UniRef50_F8LMK0: HTH-type transcriptional activator hxlR|g__Streptococcus.s__Streptococcus_mutans	5.4945054945
+UniRef50_J8VDI3	5.4945054945
+UniRef50_J8VDI3|unclassified	5.4945054945
+UniRef50_P54065: 30S ribosomal protein S28e	5.4945054945
+UniRef50_P54065: 30S ribosomal protein S28e|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.4945054945
+UniRef50_Q69TK6	5.4945054945
+UniRef50_Q69TK6|unclassified	5.4945054945
+UniRef50_R6LKT9: PTS system	5.4945054945
+UniRef50_R6LKT9: PTS system|g__Clostridium.s__Clostridium_beijerinckii	5.4945054945
+UniRef50_T0G7F2	5.4945054945
+UniRef50_T0G7F2|unclassified	5.4945054945
+UniRef50_S5XUW5: Transcriptional regulator, GntR family	5.4934289848
+UniRef50_S5XUW5: Transcriptional regulator, GntR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.4934289848
+UniRef50_A0A017HLL9	5.4923662909
+UniRef50_A0A017HLL9|unclassified	5.4923662909
+UniRef50_K0X9S8: Type VI secretion-associated protein	5.4917502856
+UniRef50_K0X9S8: Type VI secretion-associated protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4917502856
+UniRef50_P37641	5.4912652894
+UniRef50_P37641|g__Escherichia.s__Escherichia_coli	5.4912652894
+UniRef50_B9JUC8: 50S ribosomal protein L19	5.4906981999
+UniRef50_B9JUC8: 50S ribosomal protein L19|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.4906981999
+UniRef50_Q5LLN2: Dephospho-CoA kinase	5.4887921686
+UniRef50_Q5LLN2: Dephospho-CoA kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.4887921686
+UniRef50_O17953: Dihydrolipoyl dehydrogenase, mitochondrial	5.4884658453
+UniRef50_O17953: Dihydrolipoyl dehydrogenase, mitochondrial|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6249037515
+UniRef50_O17953: Dihydrolipoyl dehydrogenase, mitochondrial|g__Deinococcus.s__Deinococcus_radiodurans	0.7027406887
+UniRef50_O17953: Dihydrolipoyl dehydrogenase, mitochondrial|unclassified	0.1608214051
+UniRef50_UPI00046D5F2F: hypothetical protein	5.4875205788
+UniRef50_UPI00046D5F2F: hypothetical protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2998721228
+UniRef50_UPI00046D5F2F: hypothetical protein|unclassified	1.1876484561
+UniRef50_A7VKG5	5.4875205391
+UniRef50_A7VKG5|unclassified	5.4875205391
+UniRef50_UPI000364C709: hydrogenase	5.4861639519
+UniRef50_UPI000364C709: hydrogenase|g__Escherichia.s__Escherichia_coli	4.0024844267
+UniRef50_UPI000364C709: hydrogenase|unclassified	1.4836795252
+UniRef50_T0M6P4: Blastn match against entry EMBL	5.4857913800
+UniRef50_T0M6P4: Blastn match against entry EMBL|unclassified	5.4857913800
+UniRef50_N6UD17	5.4839167200
+UniRef50_N6UD17|unclassified	5.4839167200
+UniRef50_R9ZNN5: Potassium transporter	5.4834088787
+UniRef50_R9ZNN5: Potassium transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4834088787
+UniRef50_B7V3C6	5.4821784377
+UniRef50_B7V3C6|unclassified	3.3919856355
+UniRef50_B7V3C6|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0901928023
+UniRef50_X5E185	5.4777695211
+UniRef50_X5E185|g__Staphylococcus.s__Staphylococcus_aureus	5.4777695211
+UniRef50_A6LR19: Nitrogenase	5.4769002476
+UniRef50_A6LR19: Nitrogenase|g__Clostridium.s__Clostridium_beijerinckii	5.4769002476
+UniRef50_M1XJ95	5.4758681290
+UniRef50_M1XJ95|g__Clostridium.s__Clostridium_beijerinckii	5.4758681290
+UniRef50_C1FUR3: HTH domain protein	5.4757762135
+UniRef50_C1FUR3: HTH domain protein|g__Clostridium.s__Clostridium_beijerinckii	5.4757762135
+UniRef50_A9HD71	5.4755789523
+UniRef50_A9HD71|unclassified	5.4755789523
+UniRef50_B7GY06: 3-oxoadipate enol-lactonase 2(3-oxoadipate enol-lactonase II)	5.4751826420
+UniRef50_B7GY06: 3-oxoadipate enol-lactonase 2(3-oxoadipate enol-lactonase II)|g__Acinetobacter.s__Acinetobacter_baumannii	5.4751826420
+UniRef50_E2XNF0: Fatty acid oxidation complex subunit alpha	5.4745510955
+UniRef50_E2XNF0: Fatty acid oxidation complex subunit alpha|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4745510955
+UniRef50_K8AHY9: Gamma-D-Glutamyl-meso-Diaminopimelate Amidase	5.4736376698
+UniRef50_K8AHY9: Gamma-D-Glutamyl-meso-Diaminopimelate Amidase|unclassified	5.4736376698
+UniRef50_R4ZQ53: Negative transcriptional regulator-copper transport operon	5.4735629127
+UniRef50_R4ZQ53: Negative transcriptional regulator-copper transport operon|g__Streptococcus.s__Streptococcus_agalactiae	5.4735629127
+UniRef50_U9LX78: Transcriptional activator protein lasR	5.4731952238
+UniRef50_U9LX78: Transcriptional activator protein lasR|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4731952238
+UniRef50_D9XAG3: Predicted protein	5.4724514463
+UniRef50_D9XAG3: Predicted protein|unclassified	5.4724514463
+UniRef50_G2L4Q8	5.4715531563
+UniRef50_G2L4Q8|unclassified	5.4715531563
+UniRef50_P46859: Thermoresistant gluconokinase	5.4707847727
+UniRef50_P46859: Thermoresistant gluconokinase|g__Escherichia.s__Escherichia_coli	4.8105489282
+UniRef50_P46859: Thermoresistant gluconokinase|unclassified	0.6602358445
+UniRef50_P09184: Very short patch repair protein	5.4693055117
+UniRef50_P09184: Very short patch repair protein|unclassified	3.3371093497
+UniRef50_P09184: Very short patch repair protein|g__Escherichia.s__Escherichia_coli	2.1321961620
+UniRef50_UPI00036AD976: hypothetical protein	5.4688043097
+UniRef50_UPI00036AD976: hypothetical protein|unclassified	5.4688043097
+UniRef50_P37061: NADH oxidase	5.4678826356
+UniRef50_P37061: NADH oxidase|g__Clostridium.s__Clostridium_beijerinckii	5.4678826356
+UniRef50_M8HEB4: Bacteriophage replication gene A protein (GPA) (Fragment)	5.4678600029
+UniRef50_M8HEB4: Bacteriophage replication gene A protein (GPA) (Fragment)|unclassified	5.4678600029
+UniRef50_A0A023S2Y3	5.4644808743
+UniRef50_A0A023S2Y3|g__Acinetobacter.s__Acinetobacter_baumannii	5.4644808743
+UniRef50_A5UNE7: IS element (Transposase remnant)	5.4644808743
+UniRef50_A5UNE7: IS element (Transposase remnant)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.4644808743
+UniRef50_A7HM29: Translation initiation factor IF-1	5.4644808743
+UniRef50_A7HM29: Translation initiation factor IF-1|g__Streptococcus.s__Streptococcus_mutans	5.4644808743
+UniRef50_C5MZF6	5.4644808743
+UniRef50_C5MZF6|g__Staphylococcus.s__Staphylococcus_aureus	5.4644808743
+UniRef50_D3QGM3	5.4644808743
+UniRef50_D3QGM3|g__Staphylococcus.s__Staphylococcus_epidermidis	5.4644808743
+UniRef50_G5QK14: Putative transport protein	5.4644808743
+UniRef50_G5QK14: Putative transport protein|unclassified	5.4644808743
+UniRef50_G7R2J6	5.4644808743
+UniRef50_G7R2J6|unclassified	5.4644808743
+UniRef50_H5JQZ7	5.4644808743
+UniRef50_H5JQZ7|g__Escherichia.s__Escherichia_coli	5.4644808743
+UniRef50_P13402: Intrinsic membrane protein PufX	5.4644808743
+UniRef50_P13402: Intrinsic membrane protein PufX|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.4644808743
+UniRef50_P42616: Protein YqjC	5.4644808743
+UniRef50_P42616: Protein YqjC|g__Escherichia.s__Escherichia_coli	5.4644808743
+UniRef50_T1YBD3	5.4644808743
+UniRef50_T1YBD3|g__Staphylococcus.s__Staphylococcus_aureus	5.4644808743
+UniRef50_T2E1H2: Secretion SecE domain protein	5.4644808743
+UniRef50_T2E1H2: Secretion SecE domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4644808743
+UniRef50_U3SS12	5.4644808743
+UniRef50_U3SS12|g__Streptococcus.s__Streptococcus_mutans	5.4644808743
+UniRef50_UPI00026CA76F: BLUF domain-containing protein	5.4644808743
+UniRef50_UPI00026CA76F: BLUF domain-containing protein|unclassified	5.4644808743
+UniRef50_W8SU96	5.4644808743
+UniRef50_W8SU96|g__Escherichia.s__Escherichia_coli	5.4644808743
+UniRef50_T2E5I8: Aminotransferase	5.4643952328
+UniRef50_T2E5I8: Aminotransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4643952328
+UniRef50_D4LGP4: Tryptophanyl-tRNA synthetase	5.4643266822
+UniRef50_D4LGP4: Tryptophanyl-tRNA synthetase|g__Clostridium.s__Clostridium_beijerinckii	5.4643266822
+UniRef50_A3TUV5	5.4620917397
+UniRef50_A3TUV5|unclassified	5.4620917397
+UniRef50_Q2CDM2	5.4605907440
+UniRef50_Q2CDM2|unclassified	5.4605907440
+UniRef50_UPI0003697307: ATP-dependent Clp protease adaptor protein ClpS	5.4595996169
+UniRef50_UPI0003697307: ATP-dependent Clp protease adaptor protein ClpS|unclassified	5.4595996169
+UniRef50_H2JHD1: Integral membrane protein, TerC family	5.4555902444
+UniRef50_H2JHD1: Integral membrane protein, TerC family|g__Clostridium.s__Clostridium_beijerinckii	5.4555902444
+UniRef50_W1YNX5	5.4538812309
+UniRef50_W1YNX5|unclassified	5.4538812309
+UniRef50_E3H5N7: Polyphosphate kinase 2	5.4538384145
+UniRef50_E3H5N7: Polyphosphate kinase 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4538384145
+UniRef50_I4Y4G5: Methyltransferase family protein	5.4536610584
+UniRef50_I4Y4G5: Methyltransferase family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4536610584
+UniRef50_D4GE62: Fcy21	5.4531698162
+UniRef50_D4GE62: Fcy21|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4531698162
+UniRef50_R9ZJX7: Membrane protein	5.4509018099
+UniRef50_R9ZJX7: Membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4509018099
+UniRef50_A7G768: Xanthine/uracil permease family protein	5.4501865320
+UniRef50_A7G768: Xanthine/uracil permease family protein|g__Clostridium.s__Clostridium_beijerinckii	5.4501865320
+UniRef50_W8SPI6	5.4500193671
+UniRef50_W8SPI6|unclassified	5.4500193671
+UniRef50_UPI000288D813: hypothetical protein	5.4497607610
+UniRef50_UPI000288D813: hypothetical protein|unclassified	5.4497607610
+UniRef50_O34524	5.4495671736
+UniRef50_O34524|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1897450500
+UniRef50_O34524|g__Acinetobacter.s__Acinetobacter_baumannii	2.2598221235
+UniRef50_A0A024RXB9	5.4492719169
+UniRef50_A0A024RXB9|unclassified	5.4492719169
+UniRef50_Q46897: CRISPR system Cascade subunit CasE	5.4486267817
+UniRef50_Q46897: CRISPR system Cascade subunit CasE|g__Escherichia.s__Escherichia_coli	5.4486267817
+UniRef50_Q59102: Ribulose bisphosphate carboxylase small chain, plasmid	5.4481336231
+UniRef50_Q59102: Ribulose bisphosphate carboxylase small chain, plasmid|unclassified	5.4481336231
+UniRef50_W4VEN6: TRAP-type C4-dicarboxylate transport system	5.4475750149
+UniRef50_W4VEN6: TRAP-type C4-dicarboxylate transport system|unclassified	5.4475750149
+UniRef50_F5WYG2: Signal peptide containing protein	5.4465675751
+UniRef50_F5WYG2: Signal peptide containing protein|g__Streptococcus.s__Streptococcus_agalactiae	5.4465675751
+UniRef50_G7M109: Stage III sporulation protein AA	5.4464366945
+UniRef50_G7M109: Stage III sporulation protein AA|g__Clostridium.s__Clostridium_beijerinckii	5.4464366945
+UniRef50_A4WVP5: Ribonuclease 3	5.4452006686
+UniRef50_A4WVP5: Ribonuclease 3|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.9674592849
+UniRef50_A4WVP5: Ribonuclease 3|unclassified	0.4777413837
+UniRef50_C1DF02	5.4449474226
+UniRef50_C1DF02|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4449474226
+UniRef50_Q48E25: GAF domain/GGDEF domain/EAL domain protein	5.4431783350
+UniRef50_Q48E25: GAF domain/GGDEF domain/EAL domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4431783350
+UniRef50_E4BFD9	5.4422967968
+UniRef50_E4BFD9|unclassified	5.4422967968
+UniRef50_Q9RX88: 50S ribosomal protein L25	5.4416101348
+UniRef50_Q9RX88: 50S ribosomal protein L25|g__Deinococcus.s__Deinococcus_radiodurans	5.4416101348
+UniRef50_Q93QF8: Truncated transposase	5.4410892271
+UniRef50_Q93QF8: Truncated transposase|unclassified	5.4410892271
+UniRef50_G7MAE0	5.4369114408
+UniRef50_G7MAE0|g__Clostridium.s__Clostridium_beijerinckii	5.4369114408
+UniRef50_S6A3I5: Hemolysin	5.4354094445
+UniRef50_S6A3I5: Hemolysin|g__Clostridium.s__Clostridium_beijerinckii	5.4354094445
+UniRef50_A0A058WPW9	5.4347826087
+UniRef50_A0A058WPW9|unclassified	5.4347826087
+UniRef50_A6LU25	5.4347826087
+UniRef50_A6LU25|g__Clostridium.s__Clostridium_beijerinckii	5.4347826087
+UniRef50_B9KJD9: Flagellar switch protein	5.4347826087
+UniRef50_B9KJD9: Flagellar switch protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.4347826087
+UniRef50_B9MG23	5.4347826087
+UniRef50_B9MG23|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4347826087
+UniRef50_D5TKJ5	5.4347826087
+UniRef50_D5TKJ5|unclassified	5.4347826087
+UniRef50_D8ELB2	5.4347826087
+UniRef50_D8ELB2|g__Escherichia.s__Escherichia_coli	5.4347826087
+UniRef50_F9PAL0	5.4347826087
+UniRef50_F9PAL0|unclassified	5.4347826087
+UniRef50_K6NB87: NADP oxidoreductase coenzyme F420-dependent	5.4347826087
+UniRef50_K6NB87: NADP oxidoreductase coenzyme F420-dependent|g__Acinetobacter.s__Acinetobacter_baumannii	5.4347826087
+UniRef50_K7RL91	5.4347826087
+UniRef50_K7RL91|g__Propionibacterium.s__Propionibacterium_acnes	5.4347826087
+UniRef50_Q8CPR7: Recombinase Sin	5.4347826087
+UniRef50_Q8CPR7: Recombinase Sin|g__Staphylococcus.s__Staphylococcus_epidermidis	5.4347826087
+UniRef50_UPI000364F1B6: hypothetical protein	5.4347826087
+UniRef50_UPI000364F1B6: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.4347826087
+UniRef50_UPI0003EE4E67: hypothetical protein	5.4347826087
+UniRef50_UPI0003EE4E67: hypothetical protein|g__Escherichia.s__Escherichia_coli	5.4347826087
+UniRef50_UPI00047BB35D: hypothetical protein	5.4347826087
+UniRef50_UPI00047BB35D: hypothetical protein|unclassified	5.4347826087
+UniRef50_UPI00047BCD83: hypothetical protein	5.4347826087
+UniRef50_UPI00047BCD83: hypothetical protein|unclassified	5.4347826087
+UniRef50_V4QGG1	5.4347826087
+UniRef50_V4QGG1|unclassified	5.4347826087
+UniRef50_X5RWX0	5.4345133592
+UniRef50_X5RWX0|unclassified	5.4345133592
+UniRef50_H4BX99	5.4333097354
+UniRef50_H4BX99|unclassified	5.4333097354
+UniRef50_Q9HYH5: Putative aldolase class 2 protein PA3430	5.4332031240
+UniRef50_Q9HYH5: Putative aldolase class 2 protein PA3430|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4332031240
+UniRef50_A0A014CIJ3: CDP-alcohol phosphatidyltransferase family protein	5.4318895083
+UniRef50_A0A014CIJ3: CDP-alcohol phosphatidyltransferase family protein|g__Acinetobacter.s__Acinetobacter_baumannii	5.4318895083
+UniRef50_O33818: 4-hydroxybenzoyl-CoA reductase subunit gamma	5.4312721184
+UniRef50_O33818: 4-hydroxybenzoyl-CoA reductase subunit gamma|unclassified	5.4312721184
+UniRef50_G7M214: Pyruvate, water dikinase	5.4285039864
+UniRef50_G7M214: Pyruvate, water dikinase|g__Clostridium.s__Clostridium_beijerinckii	5.4285039864
+UniRef50_A3PQ79: Response regulator receiver protein	5.4273404681
+UniRef50_A3PQ79: Response regulator receiver protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.4273404681
+UniRef50_V9VP62: Esterase	5.4265729468
+UniRef50_V9VP62: Esterase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.1822088393
+UniRef50_V9VP62: Esterase|unclassified	0.2443641075
+UniRef50_B2V1J4: Oligoendopeptidase F	5.4240113246
+UniRef50_B2V1J4: Oligoendopeptidase F|g__Clostridium.s__Clostridium_beijerinckii	5.4240113246
+UniRef50_A8XU33: Protein CBG18769	5.4239084197
+UniRef50_A8XU33: Protein CBG18769|unclassified	5.4239084197
+UniRef50_UPI000466BB28: gas vesicle protein	5.4237192307
+UniRef50_UPI000466BB28: gas vesicle protein|unclassified	5.4237192307
+UniRef50_G7MAN7: Carboxyl-terminal protease	5.4232285057
+UniRef50_G7MAN7: Carboxyl-terminal protease|g__Clostridium.s__Clostridium_beijerinckii	5.4232285057
+UniRef50_A3PKK7	5.4231294902
+UniRef50_A3PKK7|unclassified	5.4231294902
+UniRef50_G7M9D3: Cell envelope-related transcriptional attenuator	5.4227467860
+UniRef50_G7M9D3: Cell envelope-related transcriptional attenuator|g__Clostridium.s__Clostridium_beijerinckii	5.4227467860
+UniRef50_P22996: Resolvase	5.4225340179
+UniRef50_P22996: Resolvase|g__Escherichia.s__Escherichia_coli	4.0160642570
+UniRef50_P22996: Resolvase|g__Acinetobacter.s__Acinetobacter_baumannii	1.4064697609
+UniRef50_Q21AL1	5.4223511346
+UniRef50_Q21AL1|unclassified	5.4223511346
+UniRef50_G7MCQ9: ABC-type transporter, integral membrane subunit	5.4217184834
+UniRef50_G7MCQ9: ABC-type transporter, integral membrane subunit|g__Clostridium.s__Clostridium_beijerinckii	5.4217184834
+UniRef50_P25438	5.4214876033
+UniRef50_P25438|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4214876033
+UniRef50_Q9RX22: Formamidopyrimidine-DNA glycosylase	5.4213862211
+UniRef50_Q9RX22: Formamidopyrimidine-DNA glycosylase|g__Deinococcus.s__Deinococcus_radiodurans	5.4213862211
+UniRef50_Q8KBK4: 50S ribosomal protein L13	5.4204048769
+UniRef50_Q8KBK4: 50S ribosomal protein L13|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1055900621
+UniRef50_Q8KBK4: 50S ribosomal protein L13|g__Clostridium.s__Clostridium_beijerinckii	2.3148148148
+UniRef50_Q6A5P9	5.4186512052
+UniRef50_Q6A5P9|g__Propionibacterium.s__Propionibacterium_acnes	5.4186512052
+UniRef50_W8N413: Lytic transglycosylase	5.4183069595
+UniRef50_W8N413: Lytic transglycosylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4183069595
+UniRef50_A1B9H5: 50S ribosomal protein L21	5.4180924805
+UniRef50_A1B9H5: 50S ribosomal protein L21|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.4180924805
+UniRef50_I1ZJW9: Hydrolase, haloacid dehalogenase-like family	5.4167797991
+UniRef50_I1ZJW9: Hydrolase, haloacid dehalogenase-like family|g__Streptococcus.s__Streptococcus_agalactiae	5.4167797991
+UniRef50_D5C7M7: 6-phospho-alpha-glucosidase	5.4165464715
+UniRef50_D5C7M7: 6-phospho-alpha-glucosidase|g__Clostridium.s__Clostridium_beijerinckii	5.4165464715
+UniRef50_F8JIF2: Recombination protein	5.4154361254
+UniRef50_F8JIF2: Recombination protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.4154361254
+UniRef50_M5Q933: Clumping factor	5.4141218370
+UniRef50_M5Q933: Clumping factor|g__Staphylococcus.s__Staphylococcus_epidermidis	5.2113068763
+UniRef50_M5Q933: Clumping factor|unclassified	0.2028149607
+UniRef50_D3NWH1: Simple sugar transport system ATP-binding protein	5.4137910184
+UniRef50_D3NWH1: Simple sugar transport system ATP-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.7246111425
+UniRef50_D3NWH1: Simple sugar transport system ATP-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6891798759
+UniRef50_M1N6Y0	5.4132246861
+UniRef50_M1N6Y0|g__Clostridium.s__Clostridium_beijerinckii	5.4132246861
+UniRef50_K2ACZ5: Sarcosine oxidase, alpha subunit family protein (Fragment)	5.4125755811
+UniRef50_K2ACZ5: Sarcosine oxidase, alpha subunit family protein (Fragment)|unclassified	5.4125755811
+UniRef50_A8A3K3	5.4124379566
+UniRef50_A8A3K3|unclassified	5.4124379566
+UniRef50_A7FBU7	5.4115067228
+UniRef50_A7FBU7|g__Acinetobacter.s__Acinetobacter_baumannii	5.4115067228
+UniRef50_Q59638: Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex	5.4113162510
+UniRef50_Q59638: Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4113162510
+UniRef50_UPI0003809C52: flagellar biosynthesis protein FlhA, partial	5.4096471356
+UniRef50_UPI0003809C52: flagellar biosynthesis protein FlhA, partial|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3552385411
+UniRef50_UPI0003809C52: flagellar biosynthesis protein FlhA, partial|unclassified	0.0544085945
+UniRef50_Q9I6C8: Probable coniferyl aldehyde dehydrogenase	5.4089211064
+UniRef50_Q9I6C8: Probable coniferyl aldehyde dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4089211064
+UniRef50_A4VWT1	5.4070969057
+UniRef50_A4VWT1|g__Streptococcus.s__Streptococcus_mutans	5.4070969057
+UniRef50_I0I649: Dihydroxyacetone kinase dihydroxyacetone-binding subunit DhaK	5.4054075128
+UniRef50_I0I649: Dihydroxyacetone kinase dihydroxyacetone-binding subunit DhaK|g__Clostridium.s__Clostridium_beijerinckii	5.4054075128
+UniRef50_B7LAH2	5.4054054054
+UniRef50_B7LAH2|unclassified	5.4054054054
+UniRef50_B9DW22	5.4054054054
+UniRef50_B9DW22|g__Clostridium.s__Clostridium_beijerinckii	5.4054054054
+UniRef50_Q5HKJ5	5.4054054054
+UniRef50_Q5HKJ5|g__Staphylococcus.s__Staphylococcus_epidermidis	5.4054054054
+UniRef50_UPI0003EFB271: hypothetical protein	5.4054054054
+UniRef50_UPI0003EFB271: hypothetical protein|unclassified	5.4054054054
+UniRef50_A6LZM7: ABC transporter related	5.4052230245
+UniRef50_A6LZM7: ABC transporter related|g__Clostridium.s__Clostridium_beijerinckii	5.4052230245
+UniRef50_M4YXX5: Glycosyl hydrolase, family 3	5.4048489145
+UniRef50_M4YXX5: Glycosyl hydrolase, family 3|g__Streptococcus.s__Streptococcus_agalactiae	5.4048489145
+UniRef50_G4LD57: AraC family transcriptional regulator	5.4045447378
+UniRef50_G4LD57: AraC family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4045447378
+UniRef50_B9KMF0	5.4039902741
+UniRef50_B9KMF0|unclassified	5.4039902741
+UniRef50_R4ZIX4: Amino acid ABC transporter, amino acid-binding protein	5.4039753482
+UniRef50_R4ZIX4: Amino acid ABC transporter, amino acid-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	5.4039753482
+UniRef50_P56861: Adenylyl-sulfate kinase	5.4035863050
+UniRef50_P56861: Adenylyl-sulfate kinase|g__Deinococcus.s__Deinococcus_radiodurans	5.4035863050
+UniRef50_W0BBW6: Acetyl-coenzyme A synthetase	5.4015794709
+UniRef50_W0BBW6: Acetyl-coenzyme A synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4015794709
+UniRef50_C3SIP7: PEP-protein phosphotransferase system enzyme I	5.4007481192
+UniRef50_C3SIP7: PEP-protein phosphotransferase system enzyme I|g__Escherichia.s__Escherichia_coli	5.4007481192
+UniRef50_F8I099	5.4007360681
+UniRef50_F8I099|g__Staphylococcus.s__Staphylococcus_aureus	5.4007360681
+UniRef50_Q9HYL3: Regulatory protein NosR	5.4006702240
+UniRef50_Q9HYL3: Regulatory protein NosR|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.4006702240
+UniRef50_J8RV54	5.4000370656
+UniRef50_J8RV54|unclassified	5.4000370656
+UniRef50_Q02R92: DNA mismatch repair protein MutS	5.3998700142
+UniRef50_Q02R92: DNA mismatch repair protein MutS|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3998700142
+UniRef50_U5NRM4	5.3986348671
+UniRef50_U5NRM4|unclassified	5.3986348671
+UniRef50_D2ARI1: tRNA/rRNA methyltransferase (SpoU)	5.3981204925
+UniRef50_D2ARI1: tRNA/rRNA methyltransferase (SpoU)|g__Propionibacterium.s__Propionibacterium_acnes	5.3981204925
+UniRef50_A6LVE6	5.3979498236
+UniRef50_A6LVE6|g__Clostridium.s__Clostridium_beijerinckii	5.3979498236
+UniRef50_Q1YIF1	5.3951086228
+UniRef50_Q1YIF1|unclassified	5.3951086228
+UniRef50_A6M2X6: RNA methyltransferase, TrmA family	5.3937752411
+UniRef50_A6M2X6: RNA methyltransferase, TrmA family|g__Clostridium.s__Clostridium_beijerinckii	5.3937752411
+UniRef50_Q87VB5: Potassium efflux system protein KefA, putative	5.3936122279
+UniRef50_Q87VB5: Potassium efflux system protein KefA, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3936122279
+UniRef50_B1KCA5: Transcriptional regulator, LysR family	5.3925928763
+UniRef50_B1KCA5: Transcriptional regulator, LysR family|g__Acinetobacter.s__Acinetobacter_baumannii	5.3925928763
+UniRef50_W8QW60: Lipoprotein	5.3922820537
+UniRef50_W8QW60: Lipoprotein|unclassified	5.3922820537
+UniRef50_Q9RTF6: Deoxyguanosinetriphosphate triphosphohydrolase-like protein 2	5.3907154504
+UniRef50_Q9RTF6: Deoxyguanosinetriphosphate triphosphohydrolase-like protein 2|g__Deinococcus.s__Deinococcus_radiodurans	5.3907154504
+UniRef50_Q1GD95	5.3898160305
+UniRef50_Q1GD95|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.3898160305
+UniRef50_UPI00036FB676: hypothetical protein	5.3894623065
+UniRef50_UPI00036FB676: hypothetical protein|unclassified	5.3894623065
+UniRef50_K2ADV1	5.3886616512
+UniRef50_K2ADV1|unclassified	5.3886616512
+UniRef50_D4KG00: Transcriptional regulator, LacI family	5.3886489044
+UniRef50_D4KG00: Transcriptional regulator, LacI family|g__Clostridium.s__Clostridium_beijerinckii	5.3886489044
+UniRef50_K7SJM7: PAC2 family protein	5.3880930206
+UniRef50_K7SJM7: PAC2 family protein|g__Propionibacterium.s__Propionibacterium_acnes	5.3880930206
+UniRef50_Q4ZA69: ORF110	5.3877091247
+UniRef50_Q4ZA69: ORF110|unclassified	5.3877091247
+UniRef50_J0HGY2	5.3875565564
+UniRef50_J0HGY2|unclassified	5.3875565564
+UniRef50_D7HYR3: D-alanyl-D-alanine carboxypeptidase	5.3850848193
+UniRef50_D7HYR3: D-alanyl-D-alanine carboxypeptidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3850848193
+UniRef50_V9WQS7: Acetyltransferase	5.3831610995
+UniRef50_V9WQS7: Acetyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3831610995
+UniRef50_B7V1N9: Arylamine N-acetyltransferase	5.3810039726
+UniRef50_B7V1N9: Arylamine N-acetyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3810039726
+UniRef50_P45682: Lipoprotein NlpD/LppB homolog	5.3791759818
+UniRef50_P45682: Lipoprotein NlpD/LppB homolog|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3791759818
+UniRef50_A1AYM7	5.3777295736
+UniRef50_A1AYM7|unclassified	5.3777295736
+UniRef50_I6TUC0: UDP glucose 6-dehydrogenase	5.3772492783
+UniRef50_I6TUC0: UDP glucose 6-dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	5.3772492783
+UniRef50_J1C1G1	5.3771563564
+UniRef50_J1C1G1|g__Staphylococcus.s__Staphylococcus_epidermidis	5.3771563564
+UniRef50_Q3HKJ1	5.3766937669
+UniRef50_Q3HKJ1|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.7100271003
+UniRef50_Q3HKJ1|unclassified	2.6666666667
+UniRef50_X1FK86: Marine sediment metagenome DNA, contig: S03H2_L02397	5.3764771164
+UniRef50_X1FK86: Marine sediment metagenome DNA, contig: S03H2_L02397|unclassified	5.3764771164
+UniRef50_A3PNR0	5.3763829372
+UniRef50_A3PNR0|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.3763829372
+UniRef50_A5UKG0	5.3763440860
+UniRef50_A5UKG0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.3763440860
+UniRef50_A6V479	5.3763440860
+UniRef50_A6V479|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3763440860
+UniRef50_C6STN9	5.3763440860
+UniRef50_C6STN9|g__Streptococcus.s__Streptococcus_mutans	5.3763440860
+UniRef50_E4B7L0	5.3763440860
+UniRef50_E4B7L0|unclassified	5.3763440860
+UniRef50_I1NXP9	5.3763440860
+UniRef50_I1NXP9|unclassified	5.3763440860
+UniRef50_M9S177: Oxidoreductase	5.3763440860
+UniRef50_M9S177: Oxidoreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3763440860
+UniRef50_Q5HQF6: Transposase, putative, truncation	5.3763440860
+UniRef50_Q5HQF6: Transposase, putative, truncation|unclassified	5.3763440860
+UniRef50_R8A5F3	5.3763440860
+UniRef50_R8A5F3|g__Staphylococcus.s__Staphylococcus_epidermidis	5.3763440860
+UniRef50_V4TX51	5.3763440860
+UniRef50_V4TX51|g__Staphylococcus.s__Staphylococcus_aureus	5.3763440860
+UniRef50_W0YPD8	5.3763440860
+UniRef50_W0YPD8|unclassified	5.3763440860
+UniRef50_T1M2G2	5.3743949516
+UniRef50_T1M2G2|unclassified	5.3743949516
+UniRef50_R4REL3: Peptidase family M48 family	5.3736760909
+UniRef50_R4REL3: Peptidase family M48 family|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3736760909
+UniRef50_A6LRQ4: Spore coat protein CotS	5.3731164960
+UniRef50_A6LRQ4: Spore coat protein CotS|g__Clostridium.s__Clostridium_beijerinckii	5.3731164960
+UniRef50_A6V286	5.3729655852
+UniRef50_A6V286|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0617657698
+UniRef50_A6V286|unclassified	0.3111998154
+UniRef50_A6M3G8: Extracellular ligand-binding receptor	5.3729590752
+UniRef50_A6M3G8: Extracellular ligand-binding receptor|g__Clostridium.s__Clostridium_beijerinckii	5.3729590752
+UniRef50_A6VBZ8	5.3720006621
+UniRef50_A6VBZ8|unclassified	5.3720006621
+UniRef50_F0RPF4: Protoporphyrinogen oxidase	5.3709216374
+UniRef50_F0RPF4: Protoporphyrinogen oxidase|g__Deinococcus.s__Deinococcus_radiodurans	5.3709216374
+UniRef50_Q5HNR8: GTP pyrophosphokinase	5.3707662927
+UniRef50_Q5HNR8: GTP pyrophosphokinase|g__Staphylococcus.s__Staphylococcus_epidermidis	5.2356020942
+UniRef50_Q5HNR8: GTP pyrophosphokinase|unclassified	0.1351641985
+UniRef50_V1RE13: Cyclic diguanylate phosphodiesterase domain-containing protein	5.3707628646
+UniRef50_V1RE13: Cyclic diguanylate phosphodiesterase domain-containing protein|g__Escherichia.s__Escherichia_coli	5.3707628646
+UniRef50_M1N724	5.3699602639
+UniRef50_M1N724|g__Clostridium.s__Clostridium_beijerinckii	5.3699602639
+UniRef50_D6S7R2	5.3691371905
+UniRef50_D6S7R2|g__Clostridium.s__Clostridium_beijerinckii	5.3691371905
+UniRef50_E1PIK6	5.3691371905
+UniRef50_E1PIK6|g__Escherichia.s__Escherichia_coli	5.3691371905
+UniRef50_J9YSX7	5.3691371905
+UniRef50_J9YSX7|g__Streptococcus.s__Streptococcus_mutans	5.3691371905
+UniRef50_P0AAR2: Hha toxicity modulator TomB	5.3691371905
+UniRef50_P0AAR2: Hha toxicity modulator TomB|g__Escherichia.s__Escherichia_coli	5.3691371905
+UniRef50_N0SZ54: Ribosomal RNA large subunit methyltransferase F	5.3691128080
+UniRef50_N0SZ54: Ribosomal RNA large subunit methyltransferase F|g__Escherichia.s__Escherichia_coli	5.3691128080
+UniRef50_M9V9X8: 6-phosphogluconolactonase	5.3691052963
+UniRef50_M9V9X8: 6-phosphogluconolactonase|g__Propionibacterium.s__Propionibacterium_acnes	5.3691052963
+UniRef50_C8TPJ1: Predicted inner membrane protein	5.3690935663
+UniRef50_C8TPJ1: Predicted inner membrane protein|g__Escherichia.s__Escherichia_coli	5.3690935663
+UniRef50_D2ZRP9: Conserved repeat protein (Fragment)	5.3667286592
+UniRef50_D2ZRP9: Conserved repeat protein (Fragment)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.3667286592
+UniRef50_A0A038GFU7	5.3666331912
+UniRef50_A0A038GFU7|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9382716049
+UniRef50_A0A038GFU7|unclassified	0.4283615862
+UniRef50_R8HTA1	5.3660699462
+UniRef50_R8HTA1|unclassified	5.3660699462
+UniRef50_M1LR29: Phage late control gene D protein GPD	5.3658358419
+UniRef50_M1LR29: Phage late control gene D protein GPD|g__Clostridium.s__Clostridium_beijerinckii	5.3658358419
+UniRef50_D4KWU8: N-methylhydantoinase A/acetone carboxylase, beta subunit	5.3656082154
+UniRef50_D4KWU8: N-methylhydantoinase A/acetone carboxylase, beta subunit|g__Clostridium.s__Clostridium_beijerinckii	5.3656082154
+UniRef50_A8MK30: RNA binding S1 domain protein	5.3652230123
+UniRef50_A8MK30: RNA binding S1 domain protein|g__Clostridium.s__Clostridium_beijerinckii	5.3652230123
+UniRef50_A8GIW3: Probable L-aspartate dehydrogenase	5.3644460426
+UniRef50_A8GIW3: Probable L-aspartate dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	5.3644460426
+UniRef50_A6LQE3: Spore coat protein CotS	5.3641693089
+UniRef50_A6LQE3: Spore coat protein CotS|g__Clostridium.s__Clostridium_beijerinckii	5.3641693089
+UniRef50_X3EN79	5.3634085213
+UniRef50_X3EN79|g__Escherichia.s__Escherichia_coli	5.3634085213
+UniRef50_Q8W6G3	5.3633621618
+UniRef50_Q8W6G3|unclassified	5.3633621618
+UniRef50_F6GSD7: Autotransporter	5.3628639661
+UniRef50_F6GSD7: Autotransporter|g__Escherichia.s__Escherichia_coli	5.3628639661
+UniRef50_F5M3A0	5.3621642894
+UniRef50_F5M3A0|unclassified	5.3621642894
+UniRef50_A3PGE8: Lysine exporter protein (LYSE/YGGA)	5.3621364653
+UniRef50_A3PGE8: Lysine exporter protein (LYSE/YGGA)|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.3621364653
+UniRef50_C3MFT1	5.3601888774
+UniRef50_C3MFT1|unclassified	5.3601888774
+UniRef50_M4K0R6: LacI family transcriptional regulator	5.3592744037
+UniRef50_M4K0R6: LacI family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3592744037
+UniRef50_B0KIU6: Transposase-like protein TnpA3	5.3589876033
+UniRef50_B0KIU6: Transposase-like protein TnpA3|g__Escherichia.s__Escherichia_coli	5.3589876033
+UniRef50_P43712: Malonyl CoA-acyl carrier protein transacylase	5.3575929768
+UniRef50_P43712: Malonyl CoA-acyl carrier protein transacylase|g__Escherichia.s__Escherichia_coli	5.2264441629
+UniRef50_P43712: Malonyl CoA-acyl carrier protein transacylase|unclassified	0.1311488139
+UniRef50_UPI00037569F6: hypothetical protein, partial	5.3553183079
+UniRef50_UPI00037569F6: hypothetical protein, partial|unclassified	5.3553183079
+UniRef50_K0CF00: Ferric-mycobactin receptor, FemA	5.3539465086
+UniRef50_K0CF00: Ferric-mycobactin receptor, FemA|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3539465086
+UniRef50_Q3K8D6	5.3528240148
+UniRef50_Q3K8D6|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3528240148
+UniRef50_R4R349	5.3526985631
+UniRef50_R4R349|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8470127412
+UniRef50_R4R349|unclassified	0.5056858219
+UniRef50_Q5WAN2: GntR family transcriptional regulator	5.3500414843
+UniRef50_Q5WAN2: GntR family transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	5.3500414843
+UniRef50_A3NCA4: Transporter, major facilitator family	5.3495192721
+UniRef50_A3NCA4: Transporter, major facilitator family|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3495192721
+UniRef50_R4ZW10	5.3490987845
+UniRef50_R4ZW10|unclassified	5.3490987845
+UniRef50_A0A021BU17	5.3475935829
+UniRef50_A0A021BU17|unclassified	5.3475935829
+UniRef50_B9KL12	5.3475935829
+UniRef50_B9KL12|unclassified	5.3475935829
+UniRef50_C5N3Z6	5.3475935829
+UniRef50_C5N3Z6|unclassified	5.3475935829
+UniRef50_D6DUS0	5.3475935829
+UniRef50_D6DUS0|unclassified	5.3475935829
+UniRef50_L2E2A4: Histidine-binding periplasmic protein	5.3475935829
+UniRef50_L2E2A4: Histidine-binding periplasmic protein|g__Escherichia.s__Escherichia_coli	5.3475935829
+UniRef50_L4VLN5	5.3475935829
+UniRef50_L4VLN5|g__Escherichia.s__Escherichia_coli	5.3475935829
+UniRef50_Q4EKV3	5.3475935829
+UniRef50_Q4EKV3|unclassified	5.3475935829
+UniRef50_Q4L5G2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	5.3475935829
+UniRef50_Q4L5G2: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|g__Staphylococcus.s__Staphylococcus_aureus	5.3475935829
+UniRef50_Q8DX15	5.3475935829
+UniRef50_Q8DX15|g__Streptococcus.s__Streptococcus_agalactiae	5.3475935829
+UniRef50_A0A037M7T8	5.3473778915
+UniRef50_A0A037M7T8|unclassified	5.3473778915
+UniRef50_T7V3S8: Diguanylate cyclase	5.3470466924
+UniRef50_T7V3S8: Diguanylate cyclase|g__Escherichia.s__Escherichia_coli	5.3470466924
+UniRef50_Q3K2I5	5.3451178451
+UniRef50_Q3K2I5|g__Streptococcus.s__Streptococcus_agalactiae	5.3451178451
+UniRef50_F7Z4K9: TnpA	5.3448782461
+UniRef50_F7Z4K9: TnpA|g__Streptococcus.s__Streptococcus_agalactiae	5.3448782461
+UniRef50_C5QYU7	5.3447958658
+UniRef50_C5QYU7|unclassified	5.3447958658
+UniRef50_P55792: 4-hydroxybutyryl-CoA dehydratase/vinylacetyl-CoA-Delta-isomerase	5.3433642450
+UniRef50_P55792: 4-hydroxybutyryl-CoA dehydratase/vinylacetyl-CoA-Delta-isomerase|g__Clostridium.s__Clostridium_beijerinckii	5.3433642450
+UniRef50_J7QJA6: SPFH domain / band 7 family protein	5.3413406870
+UniRef50_J7QJA6: SPFH domain / band 7 family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3413406870
+UniRef50_A3PRF6: D-amino acid dehydrogenase small subunit	5.3409774675
+UniRef50_A3PRF6: D-amino acid dehydrogenase small subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9124279546
+UniRef50_A3PRF6: D-amino acid dehydrogenase small subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.8873114463
+UniRef50_A3PRF6: D-amino acid dehydrogenase small subunit|unclassified	0.5412380665
+UniRef50_P50511: RNA polymerase sigma factor RpoH	5.3375751149
+UniRef50_P50511: RNA polymerase sigma factor RpoH|g__Acinetobacter.s__Acinetobacter_baumannii	2.8985507246
+UniRef50_P50511: RNA polymerase sigma factor RpoH|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4390243902
+UniRef50_A6LR77	5.3374411864
+UniRef50_A6LR77|g__Clostridium.s__Clostridium_beijerinckii	5.3374411864
+UniRef50_Q8CR78	5.3343175393
+UniRef50_Q8CR78|g__Staphylococcus.s__Staphylococcus_epidermidis	4.9261083744
+UniRef50_Q8CR78|unclassified	0.4082091650
+UniRef50_Q4FPV2: Na(+)-translocating NADH-quinone reductase subunit F	5.3335995665
+UniRef50_Q4FPV2: Na(+)-translocating NADH-quinone reductase subunit F|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6599547111
+UniRef50_Q4FPV2: Na(+)-translocating NADH-quinone reductase subunit F|g__Neisseria.s__Neisseria_meningitidis	1.6736448554
+UniRef50_Q2W939: FAD synthase	5.3331369873
+UniRef50_Q2W939: FAD synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.3331369873
+UniRef50_G7D8U7: Biopolymer transport protein	5.3314252443
+UniRef50_G7D8U7: Biopolymer transport protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.3314252443
+UniRef50_A5UME6	5.3313785084
+UniRef50_A5UME6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.2083333333
+UniRef50_A5UME6|unclassified	0.1230451750
+UniRef50_F6DQM1: FAD linked oxidase domain protein	5.3310501195
+UniRef50_F6DQM1: FAD linked oxidase domain protein|g__Clostridium.s__Clostridium_beijerinckii	5.3310501195
+UniRef50_Q9PNB4: Elongation factor Ts	5.3293578029
+UniRef50_Q9PNB4: Elongation factor Ts|g__Helicobacter.s__Helicobacter_pylori	5.3293578029
+UniRef50_I1JAZ8	5.3288978157
+UniRef50_I1JAZ8|unclassified	5.3288978157
+UniRef50_R0X4D2	5.3287256431
+UniRef50_R0X4D2|unclassified	5.3287256431
+UniRef50_R9ZEN0: Methyl-accepting chemotaxis protein	5.3281781984
+UniRef50_R9ZEN0: Methyl-accepting chemotaxis protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3281781984
+UniRef50_A0A024LBP2: Conserved domain protein	5.3263166853
+UniRef50_A0A024LBP2: Conserved domain protein|g__Escherichia.s__Escherichia_coli	5.3263166853
+UniRef50_A6LYI1	5.3262411348
+UniRef50_A6LYI1|g__Clostridium.s__Clostridium_beijerinckii	5.3262411348
+UniRef50_M9Y2Q0: TonB-dependent vitamin B12 receptor	5.3257627550
+UniRef50_M9Y2Q0: TonB-dependent vitamin B12 receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3257627550
+UniRef50_Q8Z3W5: UPF0149 protein YgfB	5.3237665259
+UniRef50_Q8Z3W5: UPF0149 protein YgfB|g__Escherichia.s__Escherichia_coli	5.3237665259
+UniRef50_U6GR89	5.3191489362
+UniRef50_U6GR89|unclassified	5.3191489362
+UniRef50_A0A036WRC0	5.3191489362
+UniRef50_A0A036WRC0|unclassified	5.3191489362
+UniRef50_A3W3P0	5.3191489362
+UniRef50_A3W3P0|unclassified	5.3191489362
+UniRef50_C6S5R7	5.3191489362
+UniRef50_C6S5R7|g__Neisseria.s__Neisseria_meningitidis	5.3191489362
+UniRef50_M2J773	5.3191489362
+UniRef50_M2J773|g__Streptococcus.s__Streptococcus_mutans	5.3191489362
+UniRef50_N1N082	5.3191489362
+UniRef50_N1N082|g__Staphylococcus.s__Staphylococcus_aureus	5.3191489362
+UniRef50_P55390: Probable cold shock protein y4cH	5.3191489362
+UniRef50_P55390: Probable cold shock protein y4cH|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.3191489362
+UniRef50_Q5YNL1	5.3191489362
+UniRef50_Q5YNL1|unclassified	5.3191489362
+UniRef50_K3Z9T8	5.3191023360
+UniRef50_K3Z9T8|unclassified	5.3191023360
+UniRef50_J7R430: Trna/rrna methyltransferase yfif	5.3159688151
+UniRef50_J7R430: Trna/rrna methyltransferase yfif|g__Escherichia.s__Escherichia_coli	5.3159688151
+UniRef50_A6LU93: Anthranilate phosphoribosyltransferase	5.3159595614
+UniRef50_A6LU93: Anthranilate phosphoribosyltransferase|g__Clostridium.s__Clostridium_beijerinckii	5.2740972241
+UniRef50_A6LU93: Anthranilate phosphoribosyltransferase|unclassified	0.0418623373
+UniRef50_UPI000369A9BC: hypothetical protein	5.3158867628
+UniRef50_UPI000369A9BC: hypothetical protein|unclassified	5.3158867628
+UniRef50_M1XHR6: Metallo-beta-lactamase family protein	5.3153101053
+UniRef50_M1XHR6: Metallo-beta-lactamase family protein|g__Staphylococcus.s__Staphylococcus_aureus	3.1964882777
+UniRef50_M1XHR6: Metallo-beta-lactamase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	2.1188218277
+UniRef50_B8HHC7: Formyltetrahydrofolate deformylase	5.3130208438
+UniRef50_B8HHC7: Formyltetrahydrofolate deformylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3130208438
+UniRef50_Q1MRB9: ATP synthase subunit alpha	5.3108470244
+UniRef50_Q1MRB9: ATP synthase subunit alpha|g__Clostridium.s__Clostridium_beijerinckii	5.2730145120
+UniRef50_Q1MRB9: ATP synthase subunit alpha|unclassified	0.0378325124
+UniRef50_U1JLF9	5.3092006963
+UniRef50_U1JLF9|g__Escherichia.s__Escherichia_coli	5.0251256281
+UniRef50_U1JLF9|unclassified	0.2840750681
+UniRef50_Q65I16: Glycerol-3-phosphate dehydrogenase [NAD(P)+]	5.3085915816
+UniRef50_Q65I16: Glycerol-3-phosphate dehydrogenase [NAD(P)+]|g__Clostridium.s__Clostridium_beijerinckii	5.1992178876
+UniRef50_Q65I16: Glycerol-3-phosphate dehydrogenase [NAD(P)+]|unclassified	0.1093736940
+UniRef50_F2K6P6	5.3075852371
+UniRef50_F2K6P6|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3075852371
+UniRef50_W0L7A3: AAT family amino acid transporter	5.3074612891
+UniRef50_W0L7A3: AAT family amino acid transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3074612891
+UniRef50_E6UYE2: Oxidoreductase FAD/NAD(P)-binding domain protein	5.3073900970
+UniRef50_E6UYE2: Oxidoreductase FAD/NAD(P)-binding domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3073900970
+UniRef50_Q3IZA2: Trehalose 6-phosphate phosphatase	5.3050002768
+UniRef50_Q3IZA2: Trehalose 6-phosphate phosphatase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.3050002768
+UniRef50_A1SS95: Prolipoprotein diacylglyceryl transferase	5.3033706009
+UniRef50_A1SS95: Prolipoprotein diacylglyceryl transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3033706009
+UniRef50_Q2NBQ3: Acyl carrier protein	5.3032837200
+UniRef50_Q2NBQ3: Acyl carrier protein|unclassified	5.3032837200
+UniRef50_B7V293: Aerotaxis transducer Aer2	5.3024740702
+UniRef50_B7V293: Aerotaxis transducer Aer2|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.3024740702
+UniRef50_Q75KD8	5.3016354111
+UniRef50_Q75KD8|unclassified	5.3016354111
+UniRef50_G8LZQ1: Molybdate ABC transporter, permease protein	5.2992873568
+UniRef50_G8LZQ1: Molybdate ABC transporter, permease protein|g__Clostridium.s__Clostridium_beijerinckii	5.2992873568
+UniRef50_A6LSC2: 3-oxoacyl-[acyl-carrier-protein] synthase 3	5.2991181939
+UniRef50_A6LSC2: 3-oxoacyl-[acyl-carrier-protein] synthase 3|g__Clostridium.s__Clostridium_beijerinckii	3.4572815070
+UniRef50_A6LSC2: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	1.8418366870
+UniRef50_X5K282: Glycosyl transferase, group 2 family protein	5.2977759585
+UniRef50_X5K282: Glycosyl transferase, group 2 family protein|g__Streptococcus.s__Streptococcus_agalactiae	5.2977759585
+UniRef50_N6V3L4	5.2974133598
+UniRef50_N6V3L4|unclassified	5.2974133598
+UniRef50_Q2NRT0	5.2954397998
+UniRef50_Q2NRT0|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2954397998
+UniRef50_Q97G69: Glycerol-3-phosphate acyltransferase	5.2944180171
+UniRef50_Q97G69: Glycerol-3-phosphate acyltransferase|g__Clostridium.s__Clostridium_beijerinckii	5.2944180171
+UniRef50_F8FTQ8: Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein	5.2940820440
+UniRef50_F8FTQ8: Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2940820440
+UniRef50_UPI00035C7334: hypothetical protein	5.2939184229
+UniRef50_UPI00035C7334: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.8837753841
+UniRef50_UPI00035C7334: hypothetical protein|unclassified	0.4101430388
+UniRef50_I1YGQ8	5.2937064131
+UniRef50_I1YGQ8|unclassified	5.2937064131
+UniRef50_V4SX70	5.2920669426
+UniRef50_V4SX70|unclassified	5.2920669426
+UniRef50_A8ARB7	5.2910052910
+UniRef50_A8ARB7|unclassified	5.2910052910
+UniRef50_D6PKJ1	5.2910052910
+UniRef50_D6PKJ1|unclassified	5.2910052910
+UniRef50_F9YXK4: Membrane spanning protein	5.2910052910
+UniRef50_F9YXK4: Membrane spanning protein|g__Propionibacterium.s__Propionibacterium_acnes	5.2910052910
+UniRef50_G0LU46	5.2910052910
+UniRef50_G0LU46|g__Staphylococcus.s__Staphylococcus_epidermidis	5.2910052910
+UniRef50_M3C2R7	5.2910052910
+UniRef50_M3C2R7|unclassified	5.2910052910
+UniRef50_M4WZV5: Dicarboxylate transporter	5.2910052910
+UniRef50_M4WZV5: Dicarboxylate transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2910052910
+UniRef50_S6APV5	5.2910052910
+UniRef50_S6APV5|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2910052910
+UniRef50_X7N855	5.2910052910
+UniRef50_X7N855|unclassified	5.2910052910
+UniRef50_Q329H4: Phosphonate metabolism	5.2902678768
+UniRef50_Q329H4: Phosphonate metabolism|g__Escherichia.s__Escherichia_coli	5.2902678768
+UniRef50_B9K5L2	5.2902183693
+UniRef50_B9K5L2|g__Clostridium.s__Clostridium_beijerinckii	5.2902183693
+UniRef50_Q9RXF1: D-alanine--D-alanine ligase	5.2901237705
+UniRef50_Q9RXF1: D-alanine--D-alanine ligase|g__Deinococcus.s__Deinococcus_radiodurans	5.2420703225
+UniRef50_Q9RXF1: D-alanine--D-alanine ligase|unclassified	0.0480534480
+UniRef50_UPI0004758B07: MarR family transcriptional regulator	5.2864269379
+UniRef50_UPI0004758B07: MarR family transcriptional regulator|unclassified	5.2864269379
+UniRef50_C4ZJG8: Nitrite reductase (NAD(P)H), large subunit	5.2857476091
+UniRef50_C4ZJG8: Nitrite reductase (NAD(P)H), large subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2857476091
+UniRef50_A6LYW2	5.2856322419
+UniRef50_A6LYW2|g__Clostridium.s__Clostridium_beijerinckii	5.2622638946
+UniRef50_A6LYW2|unclassified	0.0233683473
+UniRef50_B9E1W5: Arginine--tRNA ligase	5.2846748729
+UniRef50_B9E1W5: Arginine--tRNA ligase|g__Clostridium.s__Clostridium_beijerinckii	5.2340303940
+UniRef50_B9E1W5: Arginine--tRNA ligase|unclassified	0.0506444789
+UniRef50_G6DSX7: UDP-glucose 4-epimerase	5.2832010298
+UniRef50_G6DSX7: UDP-glucose 4-epimerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2832010298
+UniRef50_A0A035W161: Replication initiation protein (Fragment)	5.2820201254
+UniRef50_A0A035W161: Replication initiation protein (Fragment)|unclassified	5.2820201254
+UniRef50_B9DZV8	5.2816010924
+UniRef50_B9DZV8|g__Clostridium.s__Clostridium_beijerinckii	5.2816010924
+UniRef50_H1V892	5.2813253261
+UniRef50_H1V892|unclassified	5.2813253261
+UniRef50_P52477: Multidrug resistance protein MexA	5.2800637928
+UniRef50_P52477: Multidrug resistance protein MexA|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2800637928
+UniRef50_B2THH4: HDIG domain/HD domain protein	5.2791680801
+UniRef50_B2THH4: HDIG domain/HD domain protein|g__Clostridium.s__Clostridium_beijerinckii	5.2791680801
+UniRef50_A0A022LKS5	5.2788104790
+UniRef50_A0A022LKS5|unclassified	5.2788104790
+UniRef50_M4WYD7	5.2781917536
+UniRef50_M4WYD7|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2781917536
+UniRef50_S1PBS0: Blue light-and temperature-regulated antirepressor YcgF	5.2775452548
+UniRef50_S1PBS0: Blue light-and temperature-regulated antirepressor YcgF|g__Escherichia.s__Escherichia_coli	5.2775452548
+UniRef50_U3AK46: Hypotheical conserved protein	5.2774729910
+UniRef50_U3AK46: Hypotheical conserved protein|unclassified	5.2774729910
+UniRef50_N0C6M2: Integrase/recombinase, phage associated protein	5.2774722054
+UniRef50_N0C6M2: Integrase/recombinase, phage associated protein|g__Streptococcus.s__Streptococcus_agalactiae	5.2774722054
+UniRef50_W1YFT4	5.2749335958
+UniRef50_W1YFT4|unclassified	5.2749335958
+UniRef50_A8FQE6: Radical SAM domain protein	5.2729401814
+UniRef50_A8FQE6: Radical SAM domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2729401814
+UniRef50_U3T279: Amidohydrolase	5.2725513481
+UniRef50_U3T279: Amidohydrolase|g__Acinetobacter.s__Acinetobacter_baumannii	5.2725513481
+UniRef50_K0HED9: ABC transporter ATP-binding protein	5.2723398147
+UniRef50_K0HED9: ABC transporter ATP-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	5.2723398147
+UniRef50_B5XXZ2: 4-hydroxybenzoate octaprenyltransferase	5.2703755649
+UniRef50_B5XXZ2: 4-hydroxybenzoate octaprenyltransferase|g__Escherichia.s__Escherichia_coli	5.2703755649
+UniRef50_Q94IN5: Pyruvate dehydrogenase [NADP(+)], mitochondrial	5.2693500524
+UniRef50_Q94IN5: Pyruvate dehydrogenase [NADP(+)], mitochondrial|g__Clostridium.s__Clostridium_beijerinckii	5.2693500524
+UniRef50_S1F8T4: Autoinducer 2-binding protein lsrB	5.2687219087
+UniRef50_S1F8T4: Autoinducer 2-binding protein lsrB|g__Escherichia.s__Escherichia_coli	4.0801587236
+UniRef50_S1F8T4: Autoinducer 2-binding protein lsrB|unclassified	1.1885631851
+UniRef50_X6L0P1	5.2686257765
+UniRef50_X6L0P1|unclassified	5.2686257765
+UniRef50_A4VFK3	5.2664372649
+UniRef50_A4VFK3|unclassified	5.2664372649
+UniRef50_A3PHS3: Transport-associated	5.2661356805
+UniRef50_A3PHS3: Transport-associated|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.4512536478
+UniRef50_A3PHS3: Transport-associated|unclassified	1.8148820327
+UniRef50_D0ZSY9: ECF RNA polymerase sigma-E factor	5.2658256364
+UniRef50_D0ZSY9: ECF RNA polymerase sigma-E factor|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2658256364
+UniRef50_L8UAB9	5.2649761995
+UniRef50_L8UAB9|unclassified	5.2649761995
+UniRef50_A3PLZ5: ParB family protein	5.2639455355
+UniRef50_A3PLZ5: ParB family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.2639455355
+UniRef50_W7IQW7: Flagellar hook-length control protein FliK	5.2633818963
+UniRef50_W7IQW7: Flagellar hook-length control protein FliK|unclassified	5.2633818963
+UniRef50_D7ZX87	5.2631578947
+UniRef50_D7ZX87|g__Escherichia.s__Escherichia_coli	5.2631578947
+UniRef50_L2UZF5	5.2631578947
+UniRef50_L2UZF5|g__Escherichia.s__Escherichia_coli	5.2631578947
+UniRef50_M5I2R3	5.2631578947
+UniRef50_M5I2R3|g__Escherichia.s__Escherichia_coli	5.2631578947
+UniRef50_Q5XE79: Thioredoxin	5.2631578947
+UniRef50_Q5XE79: Thioredoxin|g__Streptococcus.s__Streptococcus_mutans	5.2631578947
+UniRef50_Q8DSJ1	5.2631578947
+UniRef50_Q8DSJ1|g__Streptococcus.s__Streptococcus_mutans	5.2631578947
+UniRef50_T2EFY2: Bacterial extracellular solute-binding s, 3 family protein	5.2631578947
+UniRef50_T2EFY2: Bacterial extracellular solute-binding s, 3 family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2631578947
+UniRef50_UPI00037AA2B4: hypothetical protein	5.2631578947
+UniRef50_UPI00037AA2B4: hypothetical protein|g__Streptococcus.s__Streptococcus_mutans	5.2631578947
+UniRef50_A8A033	5.2626064261
+UniRef50_A8A033|unclassified	5.2626064261
+UniRef50_T6XBE8	5.2611958417
+UniRef50_T6XBE8|unclassified	5.2611958417
+UniRef50_A8FY28: Ribonuclease HII	5.2610392406
+UniRef50_A8FY28: Ribonuclease HII|g__Escherichia.s__Escherichia_coli	5.0420452431
+UniRef50_A8FY28: Ribonuclease HII|unclassified	0.2189939976
+UniRef50_I4CXF8	5.2600854149
+UniRef50_I4CXF8|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2600854149
+UniRef50_B0K282: tRNA-dihydrouridine synthase	5.2600439308
+UniRef50_B0K282: tRNA-dihydrouridine synthase|g__Clostridium.s__Clostridium_beijerinckii	5.2600439308
+UniRef50_A4WPB0	5.2598724084
+UniRef50_A4WPB0|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.2255027813
+UniRef50_A4WPB0|unclassified	1.0343696271
+UniRef50_A4RQF1: Predicted protein	5.2598118078
+UniRef50_A4RQF1: Predicted protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2598118078
+UniRef50_O05508: 6-phospho-beta-glucosidase GmuD	5.2596517613
+UniRef50_O05508: 6-phospho-beta-glucosidase GmuD|g__Clostridium.s__Clostridium_beijerinckii	5.2596517613
+UniRef50_R5BW02	5.2584968596
+UniRef50_R5BW02|g__Clostridium.s__Clostridium_beijerinckii	5.2584968596
+UniRef50_E6UYF1: Short-chain dehydrogenase/reductase SDR	5.2574304564
+UniRef50_E6UYF1: Short-chain dehydrogenase/reductase SDR|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2574304564
+UniRef50_L2Z3I9	5.2564554150
+UniRef50_L2Z3I9|g__Escherichia.s__Escherichia_coli	5.2564554150
+UniRef50_Q58584: Riboflavin synthase	5.2562860066
+UniRef50_Q58584: Riboflavin synthase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.2562860066
+UniRef50_W8FIF9	5.2562148691
+UniRef50_W8FIF9|unclassified	5.2562148691
+UniRef50_Q0WM29: Methylmalonate-semialdehyde dehydrogenase [acylating], mitochondrial	5.2562012305
+UniRef50_Q0WM29: Methylmalonate-semialdehyde dehydrogenase [acylating], mitochondrial|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2045654349
+UniRef50_Q0WM29: Methylmalonate-semialdehyde dehydrogenase [acylating], mitochondrial|unclassified	0.0516357956
+UniRef50_UPI0003B6B470: hypothetical protein	5.2557761360
+UniRef50_UPI0003B6B470: hypothetical protein|unclassified	5.2557761360
+UniRef50_A3PPI8: Hemolysin-type calcium-binding region	5.2554970949
+UniRef50_A3PPI8: Hemolysin-type calcium-binding region|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.2554970949
+UniRef50_P0AGG6: Thioredoxin-2	5.2552243919
+UniRef50_P0AGG6: Thioredoxin-2|g__Escherichia.s__Escherichia_coli	5.2552243919
+UniRef50_M0YA73	5.2545580322
+UniRef50_M0YA73|unclassified	5.2545580322
+UniRef50_V0RK41	5.2543435308
+UniRef50_V0RK41|unclassified	5.2543435308
+UniRef50_R6EN42: Selenium-dependent molybdenum hydroxylase 1	5.2510247215
+UniRef50_R6EN42: Selenium-dependent molybdenum hydroxylase 1|g__Clostridium.s__Clostridium_beijerinckii	5.2510247215
+UniRef50_I6TBP2: Oligo-beta-mannoside permease IIC component	5.2474754947
+UniRef50_I6TBP2: Oligo-beta-mannoside permease IIC component|g__Clostridium.s__Clostridium_beijerinckii	5.2474754947
+UniRef50_F2N563	5.2462818938
+UniRef50_F2N563|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2462818938
+UniRef50_A6LRT6	5.2461397423
+UniRef50_A6LRT6|g__Clostridium.s__Clostridium_beijerinckii	5.2461397423
+UniRef50_R9ZEH0: Ring-hydroxylating dioxygenase subunit	5.2459299332
+UniRef50_R9ZEH0: Ring-hydroxylating dioxygenase subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2459299332
+UniRef50_G8RAA5	5.2448032512
+UniRef50_G8RAA5|g__Staphylococcus.s__Staphylococcus_aureus	5.2448032512
+UniRef50_X2H7M9: Carboxyl-terminal protease	5.2430300138
+UniRef50_X2H7M9: Carboxyl-terminal protease|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2430300138
+UniRef50_K5JXB3	5.2428461959
+UniRef50_K5JXB3|unclassified	5.2428461959
+UniRef50_B6I111	5.2420787884
+UniRef50_B6I111|g__Escherichia.s__Escherichia_coli	5.2420787884
+UniRef50_UPI00037B6D4D: hypothetical protein	5.2414235747
+UniRef50_UPI00037B6D4D: hypothetical protein|unclassified	5.2414235747
+UniRef50_A5N5C6: Redox-sensing transcriptional repressor Rex	5.2410593910
+UniRef50_A5N5C6: Redox-sensing transcriptional repressor Rex|g__Clostridium.s__Clostridium_beijerinckii	5.2410593910
+UniRef50_A6M0J9: CheA signal transduction histidine kinase	5.2409973545
+UniRef50_A6M0J9: CheA signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	5.2409973545
+UniRef50_Q9A8A3	5.2408527117
+UniRef50_Q9A8A3|unclassified	5.2408527117
+UniRef50_P42905: Putative N-acetylgalactosamine permease IIC component 2	5.2397260274
+UniRef50_P42905: Putative N-acetylgalactosamine permease IIC component 2|g__Escherichia.s__Escherichia_coli	5.2397260274
+UniRef50_G0EV06: Malonate decarboxylase gamma subunit	5.2390479914
+UniRef50_G0EV06: Malonate decarboxylase gamma subunit|g__Acinetobacter.s__Acinetobacter_baumannii	5.2390479914
+UniRef50_P27017: Aliphatic amidase expression-regulating protein	5.2383736482
+UniRef50_P27017: Aliphatic amidase expression-regulating protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2383736482
+UniRef50_P55222: Cyclic AMP receptor-like protein	5.2371464174
+UniRef50_P55222: Cyclic AMP receptor-like protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2371464174
+UniRef50_T1YBN9: Multidrug resistance protein B	5.2359250248
+UniRef50_T1YBN9: Multidrug resistance protein B|unclassified	5.2359250248
+UniRef50_Q2NGX7	5.2356379735
+UniRef50_Q2NGX7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.2356379735
+UniRef50_A6M1L3	5.2356020942
+UniRef50_A6M1L3|g__Clostridium.s__Clostridium_beijerinckii	5.2356020942
+UniRef50_B9KL32	5.2356020942
+UniRef50_B9KL32|unclassified	5.2356020942
+UniRef50_D3E443	5.2356020942
+UniRef50_D3E443|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.2356020942
+UniRef50_D4HC59: MazG family protein	5.2356020942
+UniRef50_D4HC59: MazG family protein|g__Propionibacterium.s__Propionibacterium_acnes	5.2356020942
+UniRef50_G7RE88: Outer membrane-specific lipoprotein transporter subunit LolC	5.2356020942
+UniRef50_G7RE88: Outer membrane-specific lipoprotein transporter subunit LolC|unclassified	5.2356020942
+UniRef50_L4ZT39	5.2356020942
+UniRef50_L4ZT39|unclassified	5.2356020942
+UniRef50_O30875: Major cold shock protein	5.2356020942
+UniRef50_O30875: Major cold shock protein|g__Staphylococcus.s__Staphylococcus_aureus	5.2356020942
+UniRef50_Q1RE42	5.2356020942
+UniRef50_Q1RE42|unclassified	5.2356020942
+UniRef50_Q1RFI5	5.2356020942
+UniRef50_Q1RFI5|g__Escherichia.s__Escherichia_coli	5.2356020942
+UniRef50_Q3EMK0	5.2356020942
+UniRef50_Q3EMK0|unclassified	5.2356020942
+UniRef50_Q9RTC1	5.2356020942
+UniRef50_Q9RTC1|g__Deinococcus.s__Deinococcus_radiodurans	5.2356020942
+UniRef50_T5YD38	5.2356020942
+UniRef50_T5YD38|g__Escherichia.s__Escherichia_coli	5.2356020942
+UniRef50_U9FGT0	5.2356020942
+UniRef50_U9FGT0|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2356020942
+UniRef50_E1QW23: Uracil-DNA glycosylase superfamily	5.2352807264
+UniRef50_E1QW23: Uracil-DNA glycosylase superfamily|g__Streptococcus.s__Streptococcus_agalactiae	5.2352807264
+UniRef50_B2T4I7: ABC transporter related	5.2349993228
+UniRef50_B2T4I7: ABC transporter related|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2349993228
+UniRef50_A0A023RWA6: Sugar kinase	5.2345545715
+UniRef50_A0A023RWA6: Sugar kinase|g__Acinetobacter.s__Acinetobacter_baumannii	5.2345545715
+UniRef50_U3U8M0	5.2325616749
+UniRef50_U3U8M0|g__Escherichia.s__Escherichia_coli	5.2325616749
+UniRef50_R6G969: Hypoxanthine phosphoribosyltransferase	5.2318773059
+UniRef50_R6G969: Hypoxanthine phosphoribosyltransferase|g__Clostridium.s__Clostridium_beijerinckii	5.2318773059
+UniRef50_UPI000366CD0F: hypothetical protein	5.2312504753
+UniRef50_UPI000366CD0F: hypothetical protein|unclassified	5.2312504753
+UniRef50_B0VRV3: Formamidopyrimidine-DNA glycosylase	5.2311282152
+UniRef50_B0VRV3: Formamidopyrimidine-DNA glycosylase|g__Acinetobacter.s__Acinetobacter_baumannii	5.1694201831
+UniRef50_B0VRV3: Formamidopyrimidine-DNA glycosylase|unclassified	0.0617080321
+UniRef50_D0DBX3: Integrase, catalytic region	5.2306169392
+UniRef50_D0DBX3: Integrase, catalytic region|unclassified	5.2306169392
+UniRef50_W8ULT8: Cationic amino acid transporter	5.2304328986
+UniRef50_W8ULT8: Cationic amino acid transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2304328986
+UniRef50_H0BZQ5: Cobalt chelatase subunit CobS	5.2295139350
+UniRef50_H0BZQ5: Cobalt chelatase subunit CobS|unclassified	5.2295139350
+UniRef50_P37460: Proline-specific permease ProY	5.2292547872
+UniRef50_P37460: Proline-specific permease ProY|g__Acinetobacter.s__Acinetobacter_baumannii	5.2292547872
+UniRef50_D6SGN7: Serine-aspartate repeat-containing protein D	5.2288643256
+UniRef50_D6SGN7: Serine-aspartate repeat-containing protein D|g__Staphylococcus.s__Staphylococcus_aureus	5.2288643256
+UniRef50_A6LZM5	5.2288385827
+UniRef50_A6LZM5|g__Clostridium.s__Clostridium_beijerinckii	5.2288385827
+UniRef50_P0AFA6: Bacteriophage N4 adsorption protein B	5.2274082353
+UniRef50_P0AFA6: Bacteriophage N4 adsorption protein B|g__Escherichia.s__Escherichia_coli	5.2274082353
+UniRef50_S6AEE6: Sulfate ABC transporter substrate-binding protein CysP	5.2271123066
+UniRef50_S6AEE6: Sulfate ABC transporter substrate-binding protein CysP|g__Acinetobacter.s__Acinetobacter_baumannii	5.2271123066
+UniRef50_A5N540: Predicted transport protein, ATPase and permease component	5.2269706555
+UniRef50_A5N540: Predicted transport protein, ATPase and permease component|g__Clostridium.s__Clostridium_beijerinckii	5.2269706555
+UniRef50_A6LZ86: 4Fe-4S ferredoxin, iron-sulfur binding domain protein	5.2267011970
+UniRef50_A6LZ86: 4Fe-4S ferredoxin, iron-sulfur binding domain protein|g__Clostridium.s__Clostridium_beijerinckii	5.2267011970
+UniRef50_A5W5N5: Fatty acid cistrans isomerase	5.2255877445
+UniRef50_A5W5N5: Fatty acid cistrans isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2255877445
+UniRef50_Q3IWQ9	5.2240328817
+UniRef50_Q3IWQ9|unclassified	5.2240328817
+UniRef50_B7GSK0	5.2231883622
+UniRef50_B7GSK0|g__Clostridium.s__Clostridium_beijerinckii	5.2231883622
+UniRef50_J0Y468	5.2228193582
+UniRef50_J0Y468|unclassified	5.2228193582
+UniRef50_F0K514: PTS cellobiose-specific component IIC	5.2225636873
+UniRef50_F0K514: PTS cellobiose-specific component IIC|g__Clostridium.s__Clostridium_beijerinckii	5.2225636873
+UniRef50_K8D0U8	5.2224991221
+UniRef50_K8D0U8|unclassified	5.2224991221
+UniRef50_R9ZG20: Chemotaxis protein	5.2218800802
+UniRef50_R9ZG20: Chemotaxis protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2218800802
+UniRef50_E6SM17: 3-deoxy-D-arabinoheptulosonate-7-phosphate synthase	5.2216911148
+UniRef50_E6SM17: 3-deoxy-D-arabinoheptulosonate-7-phosphate synthase|g__Clostridium.s__Clostridium_beijerinckii	5.2216911148
+UniRef50_UPI0003C1AD28	5.2213086527
+UniRef50_UPI0003C1AD28|unclassified	5.2213086527
+UniRef50_I3WYQ6	5.2191689882
+UniRef50_I3WYQ6|unclassified	5.2191689882
+UniRef50_Y2XLL7: Fibronectin binding protein B	5.2169911830
+UniRef50_Y2XLL7: Fibronectin binding protein B|g__Staphylococcus.s__Staphylococcus_aureus	5.2169911830
+UniRef50_T2HDG8: Peptidase M23 family protein	5.2167251348
+UniRef50_T2HDG8: Peptidase M23 family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2167251348
+UniRef50_A4WRE5	5.2160250989
+UniRef50_A4WRE5|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.2160250989
+UniRef50_UPI00026C734C: Lysine exporter protein	5.2159849493
+UniRef50_UPI00026C734C: Lysine exporter protein|unclassified	5.2159849493
+UniRef50_U5MT98	5.2141127582
+UniRef50_U5MT98|g__Clostridium.s__Clostridium_beijerinckii	3.8096183762
+UniRef50_U5MT98|unclassified	1.4044943820
+UniRef50_A0A011QYI3: Leucine-responsive regulatory protein	5.2130069681
+UniRef50_A0A011QYI3: Leucine-responsive regulatory protein|unclassified	5.2130069681
+UniRef50_UPI0003EF6AD2: hypothetical protein	5.2129942677
+UniRef50_UPI0003EF6AD2: hypothetical protein|unclassified	5.2129942677
+UniRef50_E0XQ80	5.2116803985
+UniRef50_E0XQ80|unclassified	5.2116803985
+UniRef50_UPI00046CA967: hypothetical protein	5.2101837146
+UniRef50_UPI00046CA967: hypothetical protein|unclassified	5.2101837146
+UniRef50_D3QDC1: Methicillin-resistant surface protein	5.2092165148
+UniRef50_D3QDC1: Methicillin-resistant surface protein|g__Staphylococcus.s__Staphylococcus_aureus	5.2092165148
+UniRef50_E4CZ61	5.2083333333
+UniRef50_E4CZ61|unclassified	5.2083333333
+UniRef50_I3UGL6: FAD dependent oxidoreductase	5.2083333333
+UniRef50_I3UGL6: FAD dependent oxidoreductase|unclassified	5.2083333333
+UniRef50_L5VNR4: Ybl54	5.2083333333
+UniRef50_L5VNR4: Ybl54|g__Escherichia.s__Escherichia_coli	5.2083333333
+UniRef50_M4IJC9: Transposase-like protein	5.2083333333
+UniRef50_M4IJC9: Transposase-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.2083333333
+UniRef50_P0AC64: Glutaredoxin-3	5.2083333333
+UniRef50_P0AC64: Glutaredoxin-3|g__Escherichia.s__Escherichia_coli	5.2083333333
+UniRef50_Q8DW60	5.2083333333
+UniRef50_Q8DW60|g__Streptococcus.s__Streptococcus_mutans	5.2083333333
+UniRef50_Q9KV02: Sulfurtransferase TusD homolog	5.2083333333
+UniRef50_Q9KV02: Sulfurtransferase TusD homolog|g__Escherichia.s__Escherichia_coli	5.2083333333
+UniRef50_R4Y9A4: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	5.2083333333
+UniRef50_R4Y9A4: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|g__Escherichia.s__Escherichia_coli	5.2083333333
+UniRef50_UPI00038F944B: MATE family multi antimicrobial extrusion protein	5.2083333333
+UniRef50_UPI00038F944B: MATE family multi antimicrobial extrusion protein|unclassified	5.2083333333
+UniRef50_X2HFM3: Integral membrane protein	5.2074996872
+UniRef50_X2HFM3: Integral membrane protein|g__Neisseria.s__Neisseria_meningitidis	5.2074996872
+UniRef50_A5UNK7	5.2056058232
+UniRef50_A5UNK7|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.2056058232
+UniRef50_F0E145: Hydrophobe/amphiphile efflux-1 (HAE1) family protein (Fragment)	5.2040919346
+UniRef50_F0E145: Hydrophobe/amphiphile efflux-1 (HAE1) family protein (Fragment)|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2040919346
+UniRef50_UPI0003B4E02A: HNH endonuclease	5.2036970656
+UniRef50_UPI0003B4E02A: HNH endonuclease|unclassified	5.2036970656
+UniRef50_P76001	5.2030474025
+UniRef50_P76001|g__Escherichia.s__Escherichia_coli	5.2030474025
+UniRef50_P74861: Aromatic-amino-acid aminotransferase	5.2011784430
+UniRef50_P74861: Aromatic-amino-acid aminotransferase|g__Escherichia.s__Escherichia_coli	5.2011784430
+UniRef50_A0A024HK35	5.2011093678
+UniRef50_A0A024HK35|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.2011093678
+UniRef50_E6WRK7: Inner-membrane translocator	5.2011072377
+UniRef50_E6WRK7: Inner-membrane translocator|g__Clostridium.s__Clostridium_beijerinckii	5.2011072377
+UniRef50_K2AHW0	5.1987210021
+UniRef50_K2AHW0|unclassified	5.1987210021
+UniRef50_Q6ABS5: Formate--tetrahydrofolate ligase	5.1985927168
+UniRef50_Q6ABS5: Formate--tetrahydrofolate ligase|g__Propionibacterium.s__Propionibacterium_acnes	4.9727325461
+UniRef50_Q6ABS5: Formate--tetrahydrofolate ligase|unclassified	0.2258601707
+UniRef50_Q4K5S5	5.1983648814
+UniRef50_Q4K5S5|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1983648814
+UniRef50_U5NN01	5.1980515336
+UniRef50_U5NN01|unclassified	5.1980515336
+UniRef50_UPI0002559A2B: hypothetical protein	5.1975607714
+UniRef50_UPI0002559A2B: hypothetical protein|unclassified	5.1975607714
+UniRef50_M4QZX1	5.1970772872
+UniRef50_M4QZX1|g__Acinetobacter.s__Acinetobacter_baumannii	5.1970772872
+UniRef50_UPI000383E572	5.1961903361
+UniRef50_UPI000383E572|unclassified	5.1961903361
+UniRef50_R9SM10: Energy-converting hydrogenase B subunit E EhbE	5.1948051948
+UniRef50_R9SM10: Energy-converting hydrogenase B subunit E EhbE|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.1948051948
+UniRef50_G0DRR1	5.1935571110
+UniRef50_G0DRR1|unclassified	5.1935571110
+UniRef50_M2HCU7: Putative histidine kinase	5.1933306341
+UniRef50_M2HCU7: Putative histidine kinase|g__Streptococcus.s__Streptococcus_mutans	5.1933306341
+UniRef50_A0A022P145	5.1932283219
+UniRef50_A0A022P145|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7037037037
+UniRef50_A0A022P145|unclassified	1.4895246182
+UniRef50_P05695: Porin P	5.1919611519
+UniRef50_P05695: Porin P|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1919611519
+UniRef50_Q1RBU3	5.1904162208
+UniRef50_Q1RBU3|unclassified	5.1904162208
+UniRef50_X2HFC0: Electron transport complex protein RnfB	5.1903370044
+UniRef50_X2HFC0: Electron transport complex protein RnfB|g__Neisseria.s__Neisseria_meningitidis	5.1903370044
+UniRef50_UPI0003A83545: hypothetical protein	5.1892776765
+UniRef50_UPI0003A83545: hypothetical protein|unclassified	5.1892776765
+UniRef50_A0A011UHJ8	5.1885923652
+UniRef50_A0A011UHJ8|unclassified	5.1885923652
+UniRef50_G7M7B2: Cell wall hydrolase/autolysin	5.1884695739
+UniRef50_G7M7B2: Cell wall hydrolase/autolysin|g__Clostridium.s__Clostridium_beijerinckii	5.1884695739
+UniRef50_F0SXK4: Cyclopropane-fatty-acyl-phospholipid synthase	5.1875513242
+UniRef50_F0SXK4: Cyclopropane-fatty-acyl-phospholipid synthase|g__Clostridium.s__Clostridium_beijerinckii	5.1875513242
+UniRef50_T8GQ95: Glyoxylate carboligase	5.1868230850
+UniRef50_T8GQ95: Glyoxylate carboligase|g__Escherichia.s__Escherichia_coli	5.1868230850
+UniRef50_A6LZ50: Type I phosphodiesterase/nucleotide pyrophosphatase	5.1844513445
+UniRef50_A6LZ50: Type I phosphodiesterase/nucleotide pyrophosphatase|g__Clostridium.s__Clostridium_beijerinckii	5.1844513445
+UniRef50_Q5L3T0: Type III pantothenate kinase	5.1843784714
+UniRef50_Q5L3T0: Type III pantothenate kinase|g__Clostridium.s__Clostridium_beijerinckii	5.1257733435
+UniRef50_Q5L3T0: Type III pantothenate kinase|unclassified	0.0586051280
+UniRef50_F5Y5K7: Candidate UDP-glucose 6-dehydrogenase (UDP-Glc dehydrogenase)	5.1843774569
+UniRef50_F5Y5K7: Candidate UDP-glucose 6-dehydrogenase (UDP-Glc dehydrogenase)|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1843774569
+UniRef50_B6FWG5	5.1841112638
+UniRef50_B6FWG5|g__Clostridium.s__Clostridium_beijerinckii	5.1841112638
+UniRef50_R4RDL8: Methyl-accepting chemotaxis transducer	5.1831971791
+UniRef50_R4RDL8: Methyl-accepting chemotaxis transducer|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1831971791
+UniRef50_S6BEN0	5.1817980973
+UniRef50_S6BEN0|g__Streptococcus.s__Streptococcus_agalactiae	5.1817980973
+UniRef50_A5UNU1	5.1813471503
+UniRef50_A5UNU1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.1813471503
+UniRef50_H3XPQ3	5.1813471503
+UniRef50_H3XPQ3|unclassified	5.1813471503
+UniRef50_R0YWX9	5.1813471503
+UniRef50_R0YWX9|unclassified	5.1813471503
+UniRef50_U5MTZ9	5.1813471503
+UniRef50_U5MTZ9|g__Clostridium.s__Clostridium_beijerinckii	5.1813471503
+UniRef50_B7V2U4	5.1812780365
+UniRef50_B7V2U4|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1812780365
+UniRef50_UPI0001BF6B48: hypothetical protein SMAC_10244, partial	5.1788136694
+UniRef50_UPI0001BF6B48: hypothetical protein SMAC_10244, partial|unclassified	5.1788136694
+UniRef50_A4WZX3	5.1778638565
+UniRef50_A4WZX3|unclassified	5.1778638565
+UniRef50_Q1DA63: NADPH-dependent FMN reductase	5.1769395295
+UniRef50_Q1DA63: NADPH-dependent FMN reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.1769395295
+UniRef50_G7M868: Aldehyde dehydrogenase	5.1755447942
+UniRef50_G7M868: Aldehyde dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	5.1755447942
+UniRef50_C6A0C0	5.1752291840
+UniRef50_C6A0C0|g__Clostridium.s__Clostridium_beijerinckii	5.1752291840
+UniRef50_Q9JY29	5.1745504403
+UniRef50_Q9JY29|g__Neisseria.s__Neisseria_meningitidis	5.1745504403
+UniRef50_UPI0003501D5B: PREDICTED: translation initiation factor IF-2-like	5.1743200018
+UniRef50_UPI0003501D5B: PREDICTED: translation initiation factor IF-2-like|unclassified	5.1743200018
+UniRef50_W8V4Q6	5.1735099927
+UniRef50_W8V4Q6|unclassified	5.1735099927
+UniRef50_A0A059IM01	5.1707076675
+UniRef50_A0A059IM01|unclassified	5.1707076675
+UniRef50_A6LQT2: Transcriptional antiterminator, BglG	5.1704832859
+UniRef50_A6LQT2: Transcriptional antiterminator, BglG|g__Clostridium.s__Clostridium_beijerinckii	5.1704832859
+UniRef50_P0AG29	5.1686519692
+UniRef50_P0AG29|g__Escherichia.s__Escherichia_coli	4.6565837264
+UniRef50_P0AG29|unclassified	0.5120682429
+UniRef50_M9VKU7: ABC transporter permease	5.1678016735
+UniRef50_M9VKU7: ABC transporter permease|g__Propionibacterium.s__Propionibacterium_acnes	5.1678016735
+UniRef50_H9UQR5	5.1674793301
+UniRef50_H9UQR5|g__Escherichia.s__Escherichia_coli	5.1674793301
+UniRef50_A0A035VZY3	5.1671345784
+UniRef50_A0A035VZY3|unclassified	5.1671345784
+UniRef50_M9VB96: Enoyl-CoA hydratase/isomerase family protein	5.1655515172
+UniRef50_M9VB96: Enoyl-CoA hydratase/isomerase family protein|g__Propionibacterium.s__Propionibacterium_acnes	5.1655515172
+UniRef50_X5K2Z6: Streptomycin resistance protein	5.1622085626
+UniRef50_X5K2Z6: Streptomycin resistance protein|g__Streptococcus.s__Streptococcus_agalactiae	5.1622085626
+UniRef50_Q0RS03: Glutamate-1-semialdehyde 2,1-aminomutase	5.1613908394
+UniRef50_Q0RS03: Glutamate-1-semialdehyde 2,1-aminomutase|g__Propionibacterium.s__Propionibacterium_acnes	5.0714187987
+UniRef50_Q0RS03: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0899720407
+UniRef50_A9QYJ6: Tellurium resistance protein	5.1612309704
+UniRef50_A9QYJ6: Tellurium resistance protein|g__Deinococcus.s__Deinococcus_radiodurans	5.1612309704
+UniRef50_Q9I0N3: Sulfurtransferase TusD homolog	5.1611708369
+UniRef50_Q9I0N3: Sulfurtransferase TusD homolog|unclassified	5.1611708369
+UniRef50_H0DRQ2	5.1596871161
+UniRef50_H0DRQ2|unclassified	5.1596871161
+UniRef50_X5KEG8	5.1594317203
+UniRef50_X5KEG8|g__Streptococcus.s__Streptococcus_agalactiae	5.1594317203
+UniRef50_A6LX64: ABC transporter related	5.1582909166
+UniRef50_A6LX64: ABC transporter related|g__Clostridium.s__Clostridium_beijerinckii	5.1582909166
+UniRef50_E6US82: TROVE domain-containing protein	5.1580852159
+UniRef50_E6US82: TROVE domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	5.1580852159
+UniRef50_A6LRW0: Phage Terminase	5.1579129477
+UniRef50_A6LRW0: Phage Terminase|g__Clostridium.s__Clostridium_beijerinckii	5.1579129477
+UniRef50_A6LTP4	5.1546391753
+UniRef50_A6LTP4|g__Clostridium.s__Clostridium_beijerinckii	5.1546391753
+UniRef50_B7MT07	5.1546391753
+UniRef50_B7MT07|g__Escherichia.s__Escherichia_coli	5.1546391753
+UniRef50_B9KJB5	5.1546391753
+UniRef50_B9KJB5|unclassified	5.1546391753
+UniRef50_C2ESZ2	5.1546391753
+UniRef50_C2ESZ2|unclassified	5.1546391753
+UniRef50_C5B8K6: Transposase, IS3/IS911 family protein	5.1546391753
+UniRef50_C5B8K6: Transposase, IS3/IS911 family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1546391753
+UniRef50_M2LA35	5.1546391753
+UniRef50_M2LA35|g__Streptococcus.s__Streptococcus_mutans	5.1546391753
+UniRef50_P52102	5.1546391753
+UniRef50_P52102|g__Escherichia.s__Escherichia_coli	5.1546391753
+UniRef50_D9RQN8	5.1546391753
+UniRef50_D9RQN8|unclassified	5.1546391753
+UniRef50_Q9I2Y1: Para-aminobenzoate synthase component I	5.1543659937
+UniRef50_Q9I2Y1: Para-aminobenzoate synthase component I|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1543659937
+UniRef50_Q8XHI3: Probable cytosol aminopeptidase	5.1539459936
+UniRef50_Q8XHI3: Probable cytosol aminopeptidase|g__Clostridium.s__Clostridium_beijerinckii	5.1152612134
+UniRef50_Q8XHI3: Probable cytosol aminopeptidase|unclassified	0.0386847802
+UniRef50_E6MYI6: Esterase family protein	5.1532551063
+UniRef50_E6MYI6: Esterase family protein|g__Neisseria.s__Neisseria_meningitidis	5.1532551063
+UniRef50_Q7VJN5: 3,4-dihydroxy-2-butanone 4-phosphate synthase	5.1507251175
+UniRef50_Q7VJN5: 3,4-dihydroxy-2-butanone 4-phosphate synthase|g__Helicobacter.s__Helicobacter_pylori	5.1507251175
+UniRef50_E3F4G7: DNA primase	5.1500471196
+UniRef50_E3F4G7: DNA primase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.1500471196
+UniRef50_X4ZPC5: Putative membrane domain protein	5.1488813524
+UniRef50_X4ZPC5: Putative membrane domain protein|unclassified	5.1488813524
+UniRef50_V8RAP1: Membrane protein	5.1486214251
+UniRef50_V8RAP1: Membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7846889952
+UniRef50_V8RAP1: Membrane protein|unclassified	0.3639324299
+UniRef50_G7MBQ3: PTS system transcriptional activator	5.1482583012
+UniRef50_G7MBQ3: PTS system transcriptional activator|g__Clostridium.s__Clostridium_beijerinckii	5.1482583012
+UniRef50_P44016: Putative oligopeptide transporter HI_0561	5.1459248714
+UniRef50_P44016: Putative oligopeptide transporter HI_0561|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1459248714
+UniRef50_W1VJK5	5.1447605385
+UniRef50_W1VJK5|unclassified	5.1447605385
+UniRef50_A3M5U8: Glu-tRNA amidotransferase	5.1445649837
+UniRef50_A3M5U8: Glu-tRNA amidotransferase|g__Acinetobacter.s__Acinetobacter_baumannii	5.1445649837
+UniRef50_F0LUE5: Predicted hydrolase of the HAD superfamily	5.1440589237
+UniRef50_F0LUE5: Predicted hydrolase of the HAD superfamily|g__Clostridium.s__Clostridium_beijerinckii	5.1440589237
+UniRef50_A7FAW0	5.1424256627
+UniRef50_A7FAW0|g__Acinetobacter.s__Acinetobacter_baumannii	5.1424256627
+UniRef50_UPI00029ABA73: flagellar biosynthetic protein FliQ	5.1420165009
+UniRef50_UPI00029ABA73: flagellar biosynthetic protein FliQ|unclassified	5.1420165009
+UniRef50_A1B4P8	5.1400360896
+UniRef50_A1B4P8|unclassified	5.1400360896
+UniRef50_A6LSP7: 1-deoxy-D-xylulose 5-phosphate reductoisomerase	5.1372683446
+UniRef50_A6LSP7: 1-deoxy-D-xylulose 5-phosphate reductoisomerase|g__Clostridium.s__Clostridium_beijerinckii	5.1372683446
+UniRef50_M1LNN1: Tex-like protein	5.1366291349
+UniRef50_M1LNN1: Tex-like protein|g__Clostridium.s__Clostridium_beijerinckii	5.1366291349
+UniRef50_N1M8P2	5.1350226309
+UniRef50_N1M8P2|unclassified	5.1350226309
+UniRef50_A6LXA4: 4Fe-4S ferredoxin, iron-sulfur binding domain protein	5.1338612784
+UniRef50_A6LXA4: 4Fe-4S ferredoxin, iron-sulfur binding domain protein|g__Clostridium.s__Clostridium_beijerinckii	5.1338612784
+UniRef50_UPI00036CDB6D: hypothetical protein	5.1326102800
+UniRef50_UPI00036CDB6D: hypothetical protein|unclassified	5.1326102800
+UniRef50_UPI00047696D1: hypothetical protein	5.1316518915
+UniRef50_UPI00047696D1: hypothetical protein|unclassified	5.1316518915
+UniRef50_H3ZXZ3	5.1313566534
+UniRef50_H3ZXZ3|unclassified	5.1313566534
+UniRef50_A6LZL2	5.1298771073
+UniRef50_A6LZL2|g__Clostridium.s__Clostridium_beijerinckii	5.1298771073
+UniRef50_R5IQ58: Collagenase and related proteases	5.1291367907
+UniRef50_R5IQ58: Collagenase and related proteases|g__Clostridium.s__Clostridium_beijerinckii	5.1291367907
+UniRef50_P54027: 50S ribosomal protein L44e	5.1282051282
+UniRef50_P54027: 50S ribosomal protein L44e|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.1282051282
+UniRef50_W8T550	5.1282051282
+UniRef50_W8T550|g__Escherichia.s__Escherichia_coli	5.1282051282
+UniRef50_U7XTH5	5.1271846636
+UniRef50_U7XTH5|unclassified	5.1271846636
+UniRef50_D2NLM2: Transcriptional regulator	5.1267199025
+UniRef50_D2NLM2: Transcriptional regulator|g__Escherichia.s__Escherichia_coli	5.1267199025
+UniRef50_I4XVU8: Toluene tolerance protein Ttg2F	5.1249212291
+UniRef50_I4XVU8: Toluene tolerance protein Ttg2F|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2918454936
+UniRef50_I4XVU8: Toluene tolerance protein Ttg2F|unclassified	0.8330757355
+UniRef50_M1MXV9: Methyl-accepting chemotaxis protein	5.1232968455
+UniRef50_M1MXV9: Methyl-accepting chemotaxis protein|g__Clostridium.s__Clostridium_beijerinckii	5.1232968455
+UniRef50_Q9RYI7: N-glycosidase F, putative	5.1232558065
+UniRef50_Q9RYI7: N-glycosidase F, putative|g__Deinococcus.s__Deinococcus_radiodurans	5.1232558065
+UniRef50_R5QT37	5.1226286553
+UniRef50_R5QT37|g__Streptococcus.s__Streptococcus_mutans	5.1226286553
+UniRef50_C6W3G1: Aminotransferase class I and II	5.1225235238
+UniRef50_C6W3G1: Aminotransferase class I and II|g__Streptococcus.s__Streptococcus_agalactiae	5.1225235238
+UniRef50_W1YK99: Integrase (Fragment)	5.1208188918
+UniRef50_W1YK99: Integrase (Fragment)|unclassified	5.1208188918
+UniRef50_A4VRL6: Predicted Zn-dependent peptidase	5.1191161817
+UniRef50_A4VRL6: Predicted Zn-dependent peptidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1191161817
+UniRef50_B7V176	5.1176237211
+UniRef50_B7V176|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2016806723
+UniRef50_B7V176|unclassified	0.9159430488
+UniRef50_Q06129: Anthranilate synthase component 2	5.1174077443
+UniRef50_Q06129: Anthranilate synthase component 2|g__Clostridium.s__Clostridium_beijerinckii	5.0366039622
+UniRef50_Q06129: Anthranilate synthase component 2|unclassified	0.0808037820
+UniRef50_T2EMC8	5.1158200347
+UniRef50_T2EMC8|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1158200347
+UniRef50_I6E4R3: Response regulator	5.1150895141
+UniRef50_I6E4R3: Response regulator|g__Escherichia.s__Escherichia_coli	5.1150895141
+UniRef50_U4VB44	5.1149619892
+UniRef50_U4VB44|unclassified	5.1149619892
+UniRef50_T1YBD5	5.1132231189
+UniRef50_T1YBD5|unclassified	5.1132231189
+UniRef50_C1FNN6: Xanthine/uracil permease family protein	5.1125527763
+UniRef50_C1FNN6: Xanthine/uracil permease family protein|g__Clostridium.s__Clostridium_beijerinckii	5.1125527763
+UniRef50_F1VLT2	5.1125251444
+UniRef50_F1VLT2|g__Propionibacterium.s__Propionibacterium_acnes	3.8167938931
+UniRef50_F1VLT2|unclassified	1.2957312513
+UniRef50_F9L947: Phage antirepressor protein	5.1124664658
+UniRef50_F9L947: Phage antirepressor protein|g__Staphylococcus.s__Staphylococcus_aureus	5.1124664658
+UniRef50_B9E4Q8	5.1124223022
+UniRef50_B9E4Q8|g__Clostridium.s__Clostridium_beijerinckii	5.1124223022
+UniRef50_J1A4S8	5.1108627859
+UniRef50_J1A4S8|unclassified	5.1108627859
+UniRef50_UPI0000379ED7: transposase IS66	5.1091830439
+UniRef50_UPI0000379ED7: transposase IS66|unclassified	5.1091830439
+UniRef50_A0A013KTK7	5.1078462119
+UniRef50_A0A013KTK7|unclassified	5.1078462119
+UniRef50_Q9KYS1: 1-deoxy-D-xylulose 5-phosphate reductoisomerase	5.1070978254
+UniRef50_Q9KYS1: 1-deoxy-D-xylulose 5-phosphate reductoisomerase|g__Propionibacterium.s__Propionibacterium_acnes	5.1070978254
+UniRef50_Q9I6V2: Chemotactic transducer for trichloroethylene [positive chemotaxis], CttP	5.1068124612
+UniRef50_Q9I6V2: Chemotactic transducer for trichloroethylene [positive chemotaxis], CttP|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1068124612
+UniRef50_UPI00045E771A: hypothetical protein	5.1051777794
+UniRef50_UPI00045E771A: hypothetical protein|unclassified	5.1051777794
+UniRef50_A3LE40: Glycerol kinase (Fragment)	5.1050093319
+UniRef50_A3LE40: Glycerol kinase (Fragment)|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1050093319
+UniRef50_D5WIA8: Acyl-CoA dehydrogenase domain protein	5.1045587702
+UniRef50_D5WIA8: Acyl-CoA dehydrogenase domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.0761612042
+UniRef50_D5WIA8: Acyl-CoA dehydrogenase domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.0283975659
+UniRef50_E6SL99: RNA polymerase sigma factor	5.1036349680
+UniRef50_E6SL99: RNA polymerase sigma factor|g__Clostridium.s__Clostridium_beijerinckii	5.1036349680
+UniRef50_P43502: Protein PilI	5.1035002861
+UniRef50_P43502: Protein PilI|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1035002861
+UniRef50_A0A011TZP2: Excisionase	5.1026992988
+UniRef50_A0A011TZP2: Excisionase|unclassified	5.1026992988
+UniRef50_V5SJE6	5.1022876252
+UniRef50_V5SJE6|unclassified	5.1022876252
+UniRef50_B2UZ33: Phosphodiesterase, family	5.1020408163
+UniRef50_B2UZ33: Phosphodiesterase, family|g__Clostridium.s__Clostridium_beijerinckii	5.1020408163
+UniRef50_D4HCU9: Cysteine-rich domain protein	5.1020408163
+UniRef50_D4HCU9: Cysteine-rich domain protein|g__Propionibacterium.s__Propionibacterium_acnes	5.1020408163
+UniRef50_F0KFG3: Modulator of drug activity	5.1020408163
+UniRef50_F0KFG3: Modulator of drug activity|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1020408163
+UniRef50_F6D853: Molybdenum-pterin binding protein	5.1020408163
+UniRef50_F6D853: Molybdenum-pterin binding protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.1020408163
+UniRef50_J2FLN3: Alcohol dehydrogenase Adh4	5.1020408163
+UniRef50_J2FLN3: Alcohol dehydrogenase Adh4|g__Acinetobacter.s__Acinetobacter_baumannii	5.1020408163
+UniRef50_M2L173	5.1020408163
+UniRef50_M2L173|g__Streptococcus.s__Streptococcus_mutans	5.1020408163
+UniRef50_Q8DW70	5.1020408163
+UniRef50_Q8DW70|g__Streptococcus.s__Streptococcus_mutans	5.1020408163
+UniRef50_V0KT64	5.1020408163
+UniRef50_V0KT64|unclassified	5.1020408163
+UniRef50_Z1X961	5.1020408163
+UniRef50_Z1X961|unclassified	5.1020408163
+UniRef50_A0A023AZR5: Malic enzyme	5.1019562767
+UniRef50_A0A023AZR5: Malic enzyme|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.1019562767
+UniRef50_Q46185: Diaminopimelate epimerase	5.1012551013
+UniRef50_Q46185: Diaminopimelate epimerase|g__Clostridium.s__Clostridium_beijerinckii	5.1012551013
+UniRef50_Q9HUK1: DNA topoisomerase 4 subunit A	5.1008299835
+UniRef50_Q9HUK1: DNA topoisomerase 4 subunit A|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7126678991
+UniRef50_Q9HUK1: DNA topoisomerase 4 subunit A|g__Acinetobacter.s__Acinetobacter_baumannii	1.3881620844
+UniRef50_UPI0002ED2583: hypothetical protein	5.1003207620
+UniRef50_UPI0002ED2583: hypothetical protein|unclassified	5.1003207620
+UniRef50_C9RQ15: Nitrogenase	5.1000391350
+UniRef50_C9RQ15: Nitrogenase|g__Clostridium.s__Clostridium_beijerinckii	5.1000391350
+UniRef50_W9T2S8: Guanosine-3,5-bis(Diphosphate) 3-pyrophosphohydrolase	5.0967245690
+UniRef50_W9T2S8: Guanosine-3,5-bis(Diphosphate) 3-pyrophosphohydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0967245690
+UniRef50_B8I2T4: UDP-N-acetylmuramoylalanine--D-glutamate ligase	5.0967018552
+UniRef50_B8I2T4: UDP-N-acetylmuramoylalanine--D-glutamate ligase|g__Clostridium.s__Clostridium_beijerinckii	5.0967018552
+UniRef50_A1YN33: Outer membrane protein N	5.0958785799
+UniRef50_A1YN33: Outer membrane protein N|g__Escherichia.s__Escherichia_coli	5.0958785799
+UniRef50_F3GPP4	5.0952440156
+UniRef50_F3GPP4|unclassified	5.0952440156
+UniRef50_J0GTK4	5.0949111505
+UniRef50_J0GTK4|unclassified	5.0949111505
+UniRef50_A8L3S1: Malate dehydrogenase (Oxaloacetate-decarboxylating)	5.0921265970
+UniRef50_A8L3S1: Malate dehydrogenase (Oxaloacetate-decarboxylating)|g__Streptococcus.s__Streptococcus_agalactiae	4.2366946039
+UniRef50_A8L3S1: Malate dehydrogenase (Oxaloacetate-decarboxylating)|g__Clostridium.s__Clostridium_beijerinckii	0.8554319932
+UniRef50_B9KRJ2: Transcriptional regulator, IclR family	5.0910463130
+UniRef50_B9KRJ2: Transcriptional regulator, IclR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0910463130
+UniRef50_M4X2Y3	5.0903211130
+UniRef50_M4X2Y3|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8417572759
+UniRef50_M4X2Y3|unclassified	0.2485638371
+UniRef50_G8VDH4	5.0898035792
+UniRef50_G8VDH4|unclassified	5.0898035792
+UniRef50_B3Q6T0: NADH-quinone oxidoreductase, chain G	5.0896189006
+UniRef50_B3Q6T0: NADH-quinone oxidoreductase, chain G|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0896189006
+UniRef50_D7ZG90	5.0888160912
+UniRef50_D7ZG90|unclassified	5.0888160912
+UniRef50_J2MSH5	5.0877953785
+UniRef50_J2MSH5|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9669959783
+UniRef50_J2MSH5|unclassified	0.1207994002
+UniRef50_G8PYJ4: ExbD2/TolR	5.0877622874
+UniRef50_G8PYJ4: ExbD2/TolR|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0877622874
+UniRef50_Q11K61: Binding-protein-dependent transport systems inner membrane component	5.0840877139
+UniRef50_Q11K61: Binding-protein-dependent transport systems inner membrane component|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0840877139
+UniRef50_I4KUA6: Iron ABC transporter, periplasmic iron-binding protein	5.0837404054
+UniRef50_I4KUA6: Iron ABC transporter, periplasmic iron-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0837404054
+UniRef50_W0YUC0: Protein QbdB	5.0823486508
+UniRef50_W0YUC0: Protein QbdB|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0823486508
+UniRef50_UPI000378BFDC: hypothetical protein	5.0818778858
+UniRef50_UPI000378BFDC: hypothetical protein|unclassified	5.0818778858
+UniRef50_Q03025: Alkaline protease secretion protein AprE	5.0816548480
+UniRef50_Q03025: Alkaline protease secretion protein AprE|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0816548480
+UniRef50_U9QLB8	5.0815269922
+UniRef50_U9QLB8|unclassified	5.0815269922
+UniRef50_A3VC61	5.0791584824
+UniRef50_A3VC61|unclassified	5.0791584824
+UniRef50_UPI00035DFFA6: hypothetical protein	5.0764527654
+UniRef50_UPI00035DFFA6: hypothetical protein|unclassified	5.0764527654
+UniRef50_A7ZTI8: 50S ribosomal protein L28	5.0761421320
+UniRef50_A7ZTI8: 50S ribosomal protein L28|g__Escherichia.s__Escherichia_coli	5.0761421320
+UniRef50_D5STD3	5.0761421320
+UniRef50_D5STD3|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0761421320
+UniRef50_G8V9R1: Permease	5.0761421320
+UniRef50_G8V9R1: Permease|g__Propionibacterium.s__Propionibacterium_acnes	5.0761421320
+UniRef50_I0GP22	5.0761421320
+UniRef50_I0GP22|g__Clostridium.s__Clostridium_beijerinckii	5.0761421320
+UniRef50_I6D427	5.0761421320
+UniRef50_I6D427|unclassified	5.0761421320
+UniRef50_Q3IW59	5.0761421320
+UniRef50_Q3IW59|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0761421320
+UniRef50_Q8VNS7: ST01 protein	5.0761421320
+UniRef50_Q8VNS7: ST01 protein|g__Escherichia.s__Escherichia_coli	5.0761421320
+UniRef50_T0TUM2: Glutamate transport substrate-binding protein	5.0761421320
+UniRef50_T0TUM2: Glutamate transport substrate-binding protein|unclassified	5.0761421320
+UniRef50_V6Q1M7: N-ethylmaleimide reductase (Fragment)	5.0761421320
+UniRef50_V6Q1M7: N-ethylmaleimide reductase (Fragment)|g__Escherichia.s__Escherichia_coli	5.0761421320
+UniRef50_W0AKH5: MqsR-controlled colanic acid and biofilm protein A	5.0761421320
+UniRef50_W0AKH5: MqsR-controlled colanic acid and biofilm protein A|g__Escherichia.s__Escherichia_coli	5.0761421320
+UniRef50_W1BGB5: Anaerobic dimethyl sulfoxide reductase chain A	5.0761421320
+UniRef50_W1BGB5: Anaerobic dimethyl sulfoxide reductase chain A|g__Escherichia.s__Escherichia_coli	5.0761421320
+UniRef50_G7LXR2: ABC-type transporter, periplasmic subunit	5.0750793146
+UniRef50_G7LXR2: ABC-type transporter, periplasmic subunit|g__Clostridium.s__Clostridium_beijerinckii	5.0750793146
+UniRef50_I5ARC3: Acetolactate synthase	5.0737350606
+UniRef50_I5ARC3: Acetolactate synthase|g__Clostridium.s__Clostridium_beijerinckii	5.0737350606
+UniRef50_A3JLR5: Possible transcriptional activator	5.0719095201
+UniRef50_A3JLR5: Possible transcriptional activator|unclassified	5.0719095201
+UniRef50_L1GW48: Glycosyl hydrolase 1 family protein	5.0715432858
+UniRef50_L1GW48: Glycosyl hydrolase 1 family protein|g__Escherichia.s__Escherichia_coli	5.0715432858
+UniRef50_T0TRQ8: IS1193, transposase, ISL3 family	5.0715415172
+UniRef50_T0TRQ8: IS1193, transposase, ISL3 family|g__Streptococcus.s__Streptococcus_mutans	5.0715415172
+UniRef50_Q9RRN1	5.0707147019
+UniRef50_Q9RRN1|g__Deinococcus.s__Deinococcus_radiodurans	5.0707147019
+UniRef50_P76165	5.0652296866
+UniRef50_P76165|g__Escherichia.s__Escherichia_coli	4.3290043290
+UniRef50_P76165|unclassified	0.7362253576
+UniRef50_A6M1U3: Response regulator receiver protein	5.0643327349
+UniRef50_A6M1U3: Response regulator receiver protein|g__Clostridium.s__Clostridium_beijerinckii	5.0643327349
+UniRef50_B5SHZ2: Segregation and condensation protein a	5.0637951091
+UniRef50_B5SHZ2: Segregation and condensation protein a|g__Neisseria.s__Neisseria_meningitidis	5.0637951091
+UniRef50_Q8G3W4: Permease of ABC transporter for sugars	5.0634528734
+UniRef50_Q8G3W4: Permease of ABC transporter for sugars|g__Propionibacterium.s__Propionibacterium_acnes	5.0634528734
+UniRef50_F9HWZ4	5.0632911392
+UniRef50_F9HWZ4|unclassified	5.0632911392
+UniRef50_A4WUA5	5.0592394930
+UniRef50_A4WUA5|unclassified	5.0592394930
+UniRef50_A5UMX3	5.0568980949
+UniRef50_A5UMX3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.0568980949
+UniRef50_P77759	5.0537944946
+UniRef50_P77759|g__Escherichia.s__Escherichia_coli	5.0537944946
+UniRef50_B9KLT4: Aa3-type cytochrome c oxidase subunit IV	5.0505050505
+UniRef50_B9KLT4: Aa3-type cytochrome c oxidase subunit IV|unclassified	5.0505050505
+UniRef50_B1I8K9: 50S ribosomal protein L24	5.0505050505
+UniRef50_B1I8K9: 50S ribosomal protein L24|g__Streptococcus.s__Streptococcus_mutans	5.0505050505
+UniRef50_E6B1F1: MltA-interacting MipA domain protein	5.0505050505
+UniRef50_E6B1F1: MltA-interacting MipA domain protein|unclassified	5.0505050505
+UniRef50_P32162: UPF0381 protein YiiS	5.0505050505
+UniRef50_P32162: UPF0381 protein YiiS|g__Escherichia.s__Escherichia_coli	5.0505050505
+UniRef50_Q3J5V3: Hpr(Ser) kinase/phosphatase	5.0505050505
+UniRef50_Q3J5V3: Hpr(Ser) kinase/phosphatase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0505050505
+UniRef50_Q9I1T3	5.0505050505
+UniRef50_Q9I1T3|unclassified	5.0505050505
+UniRef50_V8FW09: Cell wall-binding protein	5.0505050505
+UniRef50_V8FW09: Cell wall-binding protein|g__Clostridium.s__Clostridium_beijerinckii	5.0505050505
+UniRef50_W8SUL3	5.0505050505
+UniRef50_W8SUL3|g__Escherichia.s__Escherichia_coli	5.0505050505
+UniRef50_X3XYJ1	5.0505050505
+UniRef50_X3XYJ1|g__Escherichia.s__Escherichia_coli	5.0505050505
+UniRef50_A0A008QSP4	5.0500488683
+UniRef50_A0A008QSP4|g__Staphylococcus.s__Staphylococcus_aureus	5.0500488683
+UniRef50_UPI00047AE27E: DNA topoisomerase I	5.0492252259
+UniRef50_UPI00047AE27E: DNA topoisomerase I|g__Clostridium.s__Clostridium_beijerinckii	5.0157064992
+UniRef50_UPI00047AE27E: DNA topoisomerase I|unclassified	0.0335187267
+UniRef50_Q3K4E8	5.0491211857
+UniRef50_Q3K4E8|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2204980625
+UniRef50_Q3K4E8|unclassified	0.8286231232
+UniRef50_G9ADS7	5.0489424484
+UniRef50_G9ADS7|unclassified	5.0489424484
+UniRef50_Q03M45: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha	5.0476760321
+UniRef50_Q03M45: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|g__Streptococcus.s__Streptococcus_agalactiae	5.0476760321
+UniRef50_A7ADI0	5.0454343063
+UniRef50_A7ADI0|unclassified	5.0454343063
+UniRef50_UPI00047B39E8: hypothetical protein	5.0445182138
+UniRef50_UPI00047B39E8: hypothetical protein|unclassified	5.0445182138
+UniRef50_Q97EZ4: Galactose-1-phosphate uridylyltransferase	5.0444904534
+UniRef50_Q97EZ4: Galactose-1-phosphate uridylyltransferase|g__Clostridium.s__Clostridium_beijerinckii	5.0444904534
+UniRef50_F6ACH6: LPS-assembly lipoprotein LptE	5.0444851716
+UniRef50_F6ACH6: LPS-assembly lipoprotein LptE|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0444851716
+UniRef50_P80873: General stress protein 39	5.0442104873
+UniRef50_P80873: General stress protein 39|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0442104873
+UniRef50_W8EY88	5.0424695474
+UniRef50_W8EY88|unclassified	5.0424695474
+UniRef50_Q8TMA8	5.0423695331
+UniRef50_Q8TMA8|g__Clostridium.s__Clostridium_beijerinckii	5.0423695331
+UniRef50_W9T9W7: Lon protease	5.0397194132
+UniRef50_W9T9W7: Lon protease|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6150909631
+UniRef50_W9T9W7: Lon protease|g__Neisseria.s__Neisseria_meningitidis	0.4246284501
+UniRef50_G7M577: Polysaccharide biosynthesis protein	5.0389026561
+UniRef50_G7M577: Polysaccharide biosynthesis protein|g__Clostridium.s__Clostridium_beijerinckii	5.0389026561
+UniRef50_N4DH58: Pyridine nucleotide-disulfide oxidoreductase family protein	5.0387166820
+UniRef50_N4DH58: Pyridine nucleotide-disulfide oxidoreductase family protein|g__Escherichia.s__Escherichia_coli	5.0387166820
+UniRef50_O25830: Bifunctional dihydropteroate synthase/dihydropteroate reductase	5.0378052332
+UniRef50_O25830: Bifunctional dihydropteroate synthase/dihydropteroate reductase|g__Helicobacter.s__Helicobacter_pylori	5.0378052332
+UniRef50_P0AF00: Molybdenum cofactor biosynthesis protein B	5.0366852185
+UniRef50_P0AF00: Molybdenum cofactor biosynthesis protein B|g__Escherichia.s__Escherichia_coli	3.9177314762
+UniRef50_P0AF00: Molybdenum cofactor biosynthesis protein B|unclassified	1.1189537423
+UniRef50_Q4K4B5: Ribosomal RNA small subunit methyltransferase D	5.0335854356
+UniRef50_Q4K4B5: Ribosomal RNA small subunit methyltransferase D|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0335854356
+UniRef50_E2SCH3: Ribonucleoside-diphosphate reductase subunit beta	5.0335361779
+UniRef50_E2SCH3: Ribonucleoside-diphosphate reductase subunit beta|g__Propionibacterium.s__Propionibacterium_acnes	5.0335361779
+UniRef50_B7H290: Bacterial regulatory helix-turn-helix protein, AraC family protein	5.0327922818
+UniRef50_B7H290: Bacterial regulatory helix-turn-helix protein, AraC family protein|g__Acinetobacter.s__Acinetobacter_baumannii	5.0327922818
+UniRef50_A0A024E2H8	5.0327914405
+UniRef50_A0A024E2H8|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0327914405
+UniRef50_D4HCQ0	5.0323723357
+UniRef50_D4HCQ0|g__Propionibacterium.s__Propionibacterium_acnes	5.0323723357
+UniRef50_Q9HV34: Polyamine aminopropyl transferase 2	5.0319661170
+UniRef50_Q9HV34: Polyamine aminopropyl transferase 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0319661170
+UniRef50_UPI000365187A: chromosome partitioning protein ParA, partial	5.0319376474
+UniRef50_UPI000365187A: chromosome partitioning protein ParA, partial|unclassified	5.0319376474
+UniRef50_B1KTG4: Glutamate racemase	5.0301748944
+UniRef50_B1KTG4: Glutamate racemase|g__Clostridium.s__Clostridium_beijerinckii	5.0301748944
+UniRef50_U5MVR3: Methyl-accepting chemotaxis protein McpA	5.0286488165
+UniRef50_U5MVR3: Methyl-accepting chemotaxis protein McpA|g__Clostridium.s__Clostridium_beijerinckii	5.0286488165
+UniRef50_I3VIL5: Exodeoxyribonuclease V beta subunit	5.0282332086
+UniRef50_I3VIL5: Exodeoxyribonuclease V beta subunit|unclassified	5.0282332086
+UniRef50_Q2CCV7	5.0279102240
+UniRef50_Q2CCV7|unclassified	5.0279102240
+UniRef50_X2MU03: Glutamate-ammonia-ligase adenylyltransferase	5.0276749866
+UniRef50_X2MU03: Glutamate-ammonia-ligase adenylyltransferase|g__Escherichia.s__Escherichia_coli	5.0276749866
+UniRef50_A4J903: UPF0042 nucleotide-binding protein Dred_3054	5.0274599107
+UniRef50_A4J903: UPF0042 nucleotide-binding protein Dred_3054|g__Clostridium.s__Clostridium_beijerinckii	5.0274599107
+UniRef50_D8JGE0: Paraquat-inducible protein A	5.0270326471
+UniRef50_D8JGE0: Paraquat-inducible protein A|g__Acinetobacter.s__Acinetobacter_baumannii	5.0270326471
+UniRef50_M4XCN3: Chaperone CupA2	5.0268903967
+UniRef50_M4XCN3: Chaperone CupA2|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0268903967
+UniRef50_A0A022P693	5.0265968796
+UniRef50_A0A022P693|unclassified	5.0265968796
+UniRef50_A3M684: Molybdenum cofactor guanylyltransferase	5.0260417114
+UniRef50_A3M684: Molybdenum cofactor guanylyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	5.0260417114
+UniRef50_G7M1W4: Two component transcriptional regulator, winged helix family	5.0253781597
+UniRef50_G7M1W4: Two component transcriptional regulator, winged helix family|g__Clostridium.s__Clostridium_beijerinckii	5.0253781597
+UniRef50_Q4ZQB6: Transcriptional regulator, LysR family	5.0252891641
+UniRef50_Q4ZQB6: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0252891641
+UniRef50_R4ZUX7: Sensor protein basS/pmrB	5.0252236549
+UniRef50_R4ZUX7: Sensor protein basS/pmrB|g__Streptococcus.s__Streptococcus_agalactiae	5.0252236549
+UniRef50_C3KDN7: Ferrochelatase	5.0252035188
+UniRef50_C3KDN7: Ferrochelatase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8414858567
+UniRef50_C3KDN7: Ferrochelatase|unclassified	0.1837176622
+UniRef50_A4WWC8	5.0251256281
+UniRef50_A4WWC8|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0251256281
+UniRef50_C3TAX2	5.0251256281
+UniRef50_C3TAX2|g__Escherichia.s__Escherichia_coli	5.0251256281
+UniRef50_D4HCD1: L-fucose isomerase, first N-terminal domain protein	5.0251256281
+UniRef50_D4HCD1: L-fucose isomerase, first N-terminal domain protein|g__Propionibacterium.s__Propionibacterium_acnes	5.0251256281
+UniRef50_L7UHV8	5.0251256281
+UniRef50_L7UHV8|unclassified	5.0251256281
+UniRef50_P75991: Probable two-component-system connector protein YcgZ	5.0251256281
+UniRef50_P75991: Probable two-component-system connector protein YcgZ|g__Escherichia.s__Escherichia_coli	5.0251256281
+UniRef50_Q0BTC5: Maf-like protein GbCGDNIH1_1029	5.0251256281
+UniRef50_Q0BTC5: Maf-like protein GbCGDNIH1_1029|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0251256281
+UniRef50_Q9PAQ8: Integration host factor subunit beta	5.0251256281
+UniRef50_Q9PAQ8: Integration host factor subunit beta|g__Escherichia.s__Escherichia_coli	5.0251256281
+UniRef50_W8TC27	5.0251256281
+UniRef50_W8TC27|g__Escherichia.s__Escherichia_coli	5.0251256281
+UniRef50_X5K279: PAP2 family protein	5.0251256281
+UniRef50_X5K279: PAP2 family protein|g__Streptococcus.s__Streptococcus_agalactiae	5.0251256281
+UniRef50_W7W7I1	5.0249131745
+UniRef50_W7W7I1|unclassified	5.0249131745
+UniRef50_A6LZ60: ROK family protein	5.0238547242
+UniRef50_A6LZ60: ROK family protein|g__Clostridium.s__Clostridium_beijerinckii	5.0238547242
+UniRef50_G0AJ21: Glycosyltransferase	5.0234614891
+UniRef50_G0AJ21: Glycosyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0234614891
+UniRef50_U3SVU2	5.0227134152
+UniRef50_U3SVU2|g__Streptococcus.s__Streptococcus_mutans	5.0227134152
+UniRef50_X6DV46	5.0218353446
+UniRef50_X6DV46|unclassified	5.0218353446
+UniRef50_A0A023RY49: Amino acid transporter	5.0212818844
+UniRef50_A0A023RY49: Amino acid transporter|g__Acinetobacter.s__Acinetobacter_baumannii	5.0212818844
+UniRef50_B9KK74: Cellulose synthase	5.0210550399
+UniRef50_B9KK74: Cellulose synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0210550399
+UniRef50_M1E1G1: LOV protein	5.0189393939
+UniRef50_M1E1G1: LOV protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0189393939
+UniRef50_A6LQL7: Regulatory protein, IclR	5.0188375038
+UniRef50_A6LQL7: Regulatory protein, IclR|g__Clostridium.s__Clostridium_beijerinckii	5.0188375038
+UniRef50_C5AYY6: ABC family transporter, periplasmic protein	5.0188198426
+UniRef50_C5AYY6: ABC family transporter, periplasmic protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7640742676
+UniRef50_C5AYY6: ABC family transporter, periplasmic protein|unclassified	0.2547455750
+UniRef50_F7YPH9: ABC transporter ATP-binding protein	5.0183854032
+UniRef50_F7YPH9: ABC transporter ATP-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0183854032
+UniRef50_S5YTP5: Iron complex transport system, substrate-binding protein	5.0176366843
+UniRef50_S5YTP5: Iron complex transport system, substrate-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0176366843
+UniRef50_UPI00047B2607: pyrroloquinoline quinone biosynthesis protein PqqD	5.0170956913
+UniRef50_UPI00047B2607: pyrroloquinoline quinone biosynthesis protein PqqD|unclassified	5.0170956913
+UniRef50_B3G2P1	5.0169987882
+UniRef50_B3G2P1|unclassified	5.0169987882
+UniRef50_E2Q1G7: Transcriptional regulator, LysR family	5.0167224080
+UniRef50_E2Q1G7: Transcriptional regulator, LysR family|unclassified	5.0167224080
+UniRef50_U9IVG3	5.0167224080
+UniRef50_U9IVG3|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0167224080
+UniRef50_A4J4I2: Glucose-1-phosphate adenylyltransferase	5.0149745757
+UniRef50_A4J4I2: Glucose-1-phosphate adenylyltransferase|g__Clostridium.s__Clostridium_beijerinckii	4.9717917516
+UniRef50_A4J4I2: Glucose-1-phosphate adenylyltransferase|unclassified	0.0431828241
+UniRef50_D9ST52	5.0148328920
+UniRef50_D9ST52|g__Clostridium.s__Clostridium_beijerinckii	5.0148328920
+UniRef50_F5M4L1	5.0140745954
+UniRef50_F5M4L1|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0140745954
+UniRef50_T1DFR1	5.0125313283
+UniRef50_T1DFR1|unclassified	5.0125313283
+UniRef50_R5F4E6	5.0113809325
+UniRef50_R5F4E6|g__Clostridium.s__Clostridium_beijerinckii	5.0113809325
+UniRef50_G7M6N7: GTP-binding protein HSR1-related protein	5.0103806082
+UniRef50_G7M6N7: GTP-binding protein HSR1-related protein|g__Clostridium.s__Clostridium_beijerinckii	5.0103806082
+UniRef50_A6LR99: RNA-directed DNA polymerase	5.0102945263
+UniRef50_A6LR99: RNA-directed DNA polymerase|g__Clostridium.s__Clostridium_beijerinckii	5.0102945263
+UniRef50_R6R0W0: Electron transfer flavoprotein domain-containing protein	5.0095165886
+UniRef50_R6R0W0: Electron transfer flavoprotein domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	5.0095165886
+UniRef50_UPI0004754009: flagellar biosynthesis protein FliQ	5.0091329225
+UniRef50_UPI0004754009: flagellar biosynthesis protein FliQ|unclassified	5.0091329225
+UniRef50_D6M307: Transcriptional regulator, CdaR	5.0074774286
+UniRef50_D6M307: Transcriptional regulator, CdaR|unclassified	5.0074774286
+UniRef50_Q9HW69	5.0068977681
+UniRef50_Q9HW69|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2502998130
+UniRef50_Q9HW69|unclassified	0.7565979551
+UniRef50_I7DWM1: Peptide deformylase	5.0064538767
+UniRef50_I7DWM1: Peptide deformylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0064538767
+UniRef50_N6VDK8	5.0063144832
+UniRef50_N6VDK8|unclassified	5.0063144832
+UniRef50_M2L7K7: Putative type I restriction-modification system, specificity determinant	5.0061937967
+UniRef50_M2L7K7: Putative type I restriction-modification system, specificity determinant|g__Streptococcus.s__Streptococcus_mutans	5.0061937967
+UniRef50_B7UXU5: Homologous to beta-keto-acyl-acyl-carrier protein synthase	5.0059741578
+UniRef50_B7UXU5: Homologous to beta-keto-acyl-acyl-carrier protein synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0059741578
+UniRef50_H1C309: Cellulose synthase operon protein C	5.0047991224
+UniRef50_H1C309: Cellulose synthase operon protein C|g__Escherichia.s__Escherichia_coli	5.0047991224
+UniRef50_A8G2K7	5.0041357300
+UniRef50_A8G2K7|unclassified	5.0041357300
+UniRef50_Q9I1M1: 2-oxoisovalerate dehydrogenase subunit beta	5.0034947910
+UniRef50_Q9I1M1: 2-oxoisovalerate dehydrogenase subunit beta|g__Pseudomonas.s__Pseudomonas_aeruginosa	5.0034947910
+UniRef50_Q1GCF2	5.0026496736
+UniRef50_Q1GCF2|g__Rhodobacter.s__Rhodobacter_sphaeroides	5.0026496736
+UniRef50_D3E347	5.0000312502
+UniRef50_D3E347|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.0000312502
+UniRef50_J9FUL2	5.0000000000
+UniRef50_J9FUL2|unclassified	5.0000000000
+UniRef50_G7M103	5.0000000000
+UniRef50_G7M103|g__Clostridium.s__Clostridium_beijerinckii	5.0000000000
+UniRef50_N3B6I3: Pyridoxal-phosphate dependent enzyme family protein (Fragment)	5.0000000000
+UniRef50_N3B6I3: Pyridoxal-phosphate dependent enzyme family protein (Fragment)|g__Escherichia.s__Escherichia_coli	5.0000000000
+UniRef50_P64576	5.0000000000
+UniRef50_P64576|g__Escherichia.s__Escherichia_coli	5.0000000000
+UniRef50_Q5HQT0	5.0000000000
+UniRef50_Q5HQT0|g__Staphylococcus.s__Staphylococcus_epidermidis	5.0000000000
+UniRef50_Q9Y8I1: Archaeal histone A	5.0000000000
+UniRef50_Q9Y8I1: Archaeal histone A|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5.0000000000
+UniRef50_UPI00004C23AC	5.0000000000
+UniRef50_UPI00004C23AC|unclassified	5.0000000000
+UniRef50_Q1IXT2: Cysteine synthase	4.9991441360
+UniRef50_Q1IXT2: Cysteine synthase|g__Streptococcus.s__Streptococcus_agalactiae	4.9991441360
+UniRef50_G4LJ72	4.9990805488
+UniRef50_G4LJ72|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9990805488
+UniRef50_S5YDU0: Ribosomal RNA large subunit methyltransferase J	4.9990109870
+UniRef50_S5YDU0: Ribosomal RNA large subunit methyltransferase J|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.9990109870
+UniRef50_M4ZFW2: HAD superfamily hydrolase	4.9985487404
+UniRef50_M4ZFW2: HAD superfamily hydrolase|g__Streptococcus.s__Streptococcus_agalactiae	4.9985487404
+UniRef50_P11290	4.9973378022
+UniRef50_P11290|g__Escherichia.s__Escherichia_coli	4.9973378022
+UniRef50_G6Y6C6	4.9969428875
+UniRef50_G6Y6C6|unclassified	4.9969428875
+UniRef50_D4HDP4: Transcriptional regulator, MerR family	4.9964885193
+UniRef50_D4HDP4: Transcriptional regulator, MerR family|g__Propionibacterium.s__Propionibacterium_acnes	4.9964885193
+UniRef50_G8R7R2: Methyltransferase family protein	4.9930316398
+UniRef50_G8R7R2: Methyltransferase family protein|g__Clostridium.s__Clostridium_beijerinckii	4.9930316398
+UniRef50_W0Z0G1: NAD(P)H quinone oxidoreductase	4.9914857386
+UniRef50_W0Z0G1: NAD(P)H quinone oxidoreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9914857386
+UniRef50_A5VNQ2	4.9907576082
+UniRef50_A5VNQ2|unclassified	4.9907576082
+UniRef50_D3T5X9: Mannitol dehydrogenase domain protein	4.9907322680
+UniRef50_D3T5X9: Mannitol dehydrogenase domain protein|g__Clostridium.s__Clostridium_beijerinckii	4.9907322680
+UniRef50_P17058: Acyclic carotenoid 1,2-hydratase	4.9891107809
+UniRef50_P17058: Acyclic carotenoid 1,2-hydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.6221245192
+UniRef50_P17058: Acyclic carotenoid 1,2-hydratase|unclassified	0.3669862617
+UniRef50_W1F2P3: Phosphate starvation-inducible protein PhoH, predicted ATPase	4.9882888941
+UniRef50_W1F2P3: Phosphate starvation-inducible protein PhoH, predicted ATPase|unclassified	4.9882888941
+UniRef50_J9P4V8	4.9879746147
+UniRef50_J9P4V8|unclassified	4.9879746147
+UniRef50_F0C6U6	4.9875311721
+UniRef50_F0C6U6|unclassified	4.9875311721
+UniRef50_Q2L1W2: Phosphonoacetaldehyde hydrolase	4.9872588039
+UniRef50_Q2L1W2: Phosphonoacetaldehyde hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9872588039
+UniRef50_UPI00047C78E3: RNA polymerase sigma factor RpoE	4.9868358232
+UniRef50_UPI00047C78E3: RNA polymerase sigma factor RpoE|unclassified	4.9868358232
+UniRef50_A6M004: Signal transduction histidine kinase, nitrogen specific, NtrB	4.9851798232
+UniRef50_A6M004: Signal transduction histidine kinase, nitrogen specific, NtrB|g__Clostridium.s__Clostridium_beijerinckii	4.9851798232
+UniRef50_W8PG31: Ketosteroid isomerase	4.9851190476
+UniRef50_W8PG31: Ketosteroid isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9851190476
+UniRef50_I8ZZJ9: 3-hydroxyisobutyrate dehydrogenase	4.9849954860
+UniRef50_I8ZZJ9: 3-hydroxyisobutyrate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.9849954860
+UniRef50_T1VWL4: Oligopeptide/dipeptide ABC transporter ATPase subunit	4.9838854817
+UniRef50_T1VWL4: Oligopeptide/dipeptide ABC transporter ATPase subunit|g__Propionibacterium.s__Propionibacterium_acnes	4.9838854817
+UniRef50_S9SJJ5: TadE-like protein	4.9828349230
+UniRef50_S9SJJ5: TadE-like protein|unclassified	4.9828349230
+UniRef50_Q9HWK6: Lysyl endopeptidase	4.9827687034
+UniRef50_Q9HWK6: Lysyl endopeptidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9827687034
+UniRef50_L7KR72	4.9814536708
+UniRef50_L7KR72|unclassified	4.9814536708
+UniRef50_A3M3W1: Phage integrase	4.9788938017
+UniRef50_A3M3W1: Phage integrase|g__Acinetobacter.s__Acinetobacter_baumannii	4.9788938017
+UniRef50_C3K4R1: Glycerol-3-phosphate acyltransferase	4.9780177233
+UniRef50_C3K4R1: Glycerol-3-phosphate acyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9780177233
+UniRef50_B9KM82	4.9772908467
+UniRef50_B9KM82|unclassified	4.9772908467
+UniRef50_A6M301: Carbohydrate kinase, YjeF related protein	4.9761919946
+UniRef50_A6M301: Carbohydrate kinase, YjeF related protein|g__Clostridium.s__Clostridium_beijerinckii	4.9761919946
+UniRef50_A0A027YUT6	4.9751243781
+UniRef50_A0A027YUT6|unclassified	4.9751243781
+UniRef50_A6V7H6: Phosphohistidine phosphatase SixA	4.9751243781
+UniRef50_A6V7H6: Phosphohistidine phosphatase SixA|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9751243781
+UniRef50_C5QR32	4.9751243781
+UniRef50_C5QR32|unclassified	4.9751243781
+UniRef50_M2I9S9	4.9751243781
+UniRef50_M2I9S9|g__Streptococcus.s__Streptococcus_mutans	4.9751243781
+UniRef50_Q8DVY8	4.9751243781
+UniRef50_Q8DVY8|g__Streptococcus.s__Streptococcus_mutans	4.9751243781
+UniRef50_S6T2C2	4.9751243781
+UniRef50_S6T2C2|unclassified	4.9751243781
+UniRef50_X2LR26	4.9751243781
+UniRef50_X2LR26|unclassified	4.9751243781
+UniRef50_Q46909: Inner membrane metabolite transport protein YgcS	4.9743947434
+UniRef50_Q46909: Inner membrane metabolite transport protein YgcS|g__Escherichia.s__Escherichia_coli	4.9743947434
+UniRef50_S5UJA4	4.9738952161
+UniRef50_S5UJA4|g__Escherichia.s__Escherichia_coli	4.9738952161
+UniRef50_J0E2D5: Transposon DNA-invertase Bin3 domain protein	4.9734296241
+UniRef50_J0E2D5: Transposon DNA-invertase Bin3 domain protein|unclassified	4.9734296241
+UniRef50_Q8DGX5: Phosphoribosylformylglycinamidine synthase 1	4.9729866510
+UniRef50_Q8DGX5: Phosphoribosylformylglycinamidine synthase 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.8676339404
+UniRef50_Q8DGX5: Phosphoribosylformylglycinamidine synthase 1|unclassified	0.1053527106
+UniRef50_D8JE40: Soluble lytic transglycosylase fused to an ABC-type amino acid-binding protein	4.9729167036
+UniRef50_D8JE40: Soluble lytic transglycosylase fused to an ABC-type amino acid-binding protein|g__Acinetobacter.s__Acinetobacter_baumannii	4.9729167036
+UniRef50_J0XQQ2	4.9723729998
+UniRef50_J0XQQ2|unclassified	4.9723729998
+UniRef50_UPI00036E46FA: hypothetical protein	4.9720892334
+UniRef50_UPI00036E46FA: hypothetical protein|unclassified	4.9720892334
+UniRef50_UPI000441F8F0: PREDICTED: oxysterol-binding protein-related protein 10-like, partial	4.9720049504
+UniRef50_UPI000441F8F0: PREDICTED: oxysterol-binding protein-related protein 10-like, partial|unclassified	4.9720049504
+UniRef50_X5K4I6: Membrane protein, putative	4.9718688845
+UniRef50_X5K4I6: Membrane protein, putative|g__Streptococcus.s__Streptococcus_agalactiae	4.9718688845
+UniRef50_Q3KFI9: Methylthioribulose-1-phosphate dehydratase	4.9704978655
+UniRef50_Q3KFI9: Methylthioribulose-1-phosphate dehydratase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9704978655
+UniRef50_H3T6Q6: Zona occludens toxin (Fragment)	4.9700248863
+UniRef50_H3T6Q6: Zona occludens toxin (Fragment)|unclassified	4.9700248863
+UniRef50_W8RRR3: Type I secretion system ATPase	4.9684808962
+UniRef50_W8RRR3: Type I secretion system ATPase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.9684808962
+UniRef50_D5AU36: Peptidase, U32 family	4.9670763866
+UniRef50_D5AU36: Peptidase, U32 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.9670763866
+UniRef50_Q0VRV2: Acetyl-CoA C-acetyltransferase	4.9668246704
+UniRef50_Q0VRV2: Acetyl-CoA C-acetyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	2.7522451020
+UniRef50_Q0VRV2: Acetyl-CoA C-acetyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3495276653
+UniRef50_Q0VRV2: Acetyl-CoA C-acetyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.8650519031
+UniRef50_Q9RUK6: Peptide methionine sulfoxide reductase MsrB	4.9667425679
+UniRef50_Q9RUK6: Peptide methionine sulfoxide reductase MsrB|g__Deinococcus.s__Deinococcus_radiodurans	4.8861100836
+UniRef50_Q9RUK6: Peptide methionine sulfoxide reductase MsrB|unclassified	0.0806324842
+UniRef50_X6KZ77	4.9650103365
+UniRef50_X6KZ77|unclassified	4.9650103365
+UniRef50_J0W594: Putative enzyme involved in biosynthesis of extracellular polysaccharides	4.9643719600
+UniRef50_J0W594: Putative enzyme involved in biosynthesis of extracellular polysaccharides|unclassified	4.9643719600
+UniRef50_O85341: GDP-mannose mannosyl hydrolase WbdQ/WbhG	4.9639544325
+UniRef50_O85341: GDP-mannose mannosyl hydrolase WbdQ/WbhG|g__Escherichia.s__Escherichia_coli	4.9639544325
+UniRef50_B7H076: Glycosyl transferases group 1 family protein	4.9633946399
+UniRef50_B7H076: Glycosyl transferases group 1 family protein|g__Acinetobacter.s__Acinetobacter_baumannii	4.9633946399
+UniRef50_Q9RW17	4.9628097138
+UniRef50_Q9RW17|g__Deinococcus.s__Deinococcus_radiodurans	4.9628097138
+UniRef50_O26834: Putative nickel-responsive regulator 2	4.9621263109
+UniRef50_O26834: Putative nickel-responsive regulator 2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.9621263109
+UniRef50_E0Y2I8	4.9617383093
+UniRef50_E0Y2I8|unclassified	4.9617383093
+UniRef50_UPI000273CDF3	4.9614510383
+UniRef50_UPI000273CDF3|unclassified	4.9614510383
+UniRef50_V4HYY0	4.9614261966
+UniRef50_V4HYY0|unclassified	4.9614261966
+UniRef50_E6MWP3: Ribonuclease R	4.9612295228
+UniRef50_E6MWP3: Ribonuclease R|g__Neisseria.s__Neisseria_meningitidis	4.9612295228
+UniRef50_A3NNI6: S-(Hydroxymethyl)glutathione dehydrogenase	4.9600170471
+UniRef50_A3NNI6: S-(Hydroxymethyl)glutathione dehydrogenase|g__Deinococcus.s__Deinococcus_radiodurans	3.7208596741
+UniRef50_A3NNI6: S-(Hydroxymethyl)glutathione dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2391573730
+UniRef50_Q62JH0: Probable allantoicase 1	4.9595838299
+UniRef50_Q62JH0: Probable allantoicase 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9595838299
+UniRef50_UPI00027F4AD8	4.9573623248
+UniRef50_UPI00027F4AD8|unclassified	4.9573623248
+UniRef50_D5RTS2	4.9572121820
+UniRef50_D5RTS2|unclassified	4.9572121820
+UniRef50_M1MBM4	4.9570451177
+UniRef50_M1MBM4|g__Clostridium.s__Clostridium_beijerinckii	4.9570451177
+UniRef50_V9W0C4: ABC transporter permease	4.9549933271
+UniRef50_V9W0C4: ABC transporter permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9549933271
+UniRef50_S6D6U3	4.9548669599
+UniRef50_S6D6U3|unclassified	4.9548669599
+UniRef50_F0VUM0: Protease	4.9537561910
+UniRef50_F0VUM0: Protease|g__Streptococcus.s__Streptococcus_agalactiae	4.9537561910
+UniRef50_A6M039	4.9533634345
+UniRef50_A6M039|g__Clostridium.s__Clostridium_beijerinckii	4.9533634345
+UniRef50_A5UN12: Predicted acyltransferase	4.9529847183
+UniRef50_A5UN12: Predicted acyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.9529847183
+UniRef50_D7I534: Acyl-CoA thioesterase II	4.9519873391
+UniRef50_D7I534: Acyl-CoA thioesterase II|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9519873391
+UniRef50_Q6A9H6: Gamma-glutamyl phosphate reductase	4.9511128019
+UniRef50_Q6A9H6: Gamma-glutamyl phosphate reductase|g__Propionibacterium.s__Propionibacterium_acnes	4.9511128019
+UniRef50_G7M5I9	4.9504950495
+UniRef50_G7M5I9|g__Clostridium.s__Clostridium_beijerinckii	4.9504950495
+UniRef50_M2JN97	4.9504950495
+UniRef50_M2JN97|g__Streptococcus.s__Streptococcus_mutans	4.9504950495
+UniRef50_Q9RXS6: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase	4.9504950495
+UniRef50_Q9RXS6: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|g__Deinococcus.s__Deinococcus_radiodurans	4.9504950495
+UniRef50_M1LPD5: Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB	4.9498607201
+UniRef50_M1LPD5: Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB|g__Clostridium.s__Clostridium_beijerinckii	4.9498607201
+UniRef50_A6M2I5: Glycosyl transferase, family 2	4.9497055258
+UniRef50_A6M2I5: Glycosyl transferase, family 2|g__Clostridium.s__Clostridium_beijerinckii	4.9497055258
+UniRef50_UPI00047030B9: hypothetical protein	4.9483679821
+UniRef50_UPI00047030B9: hypothetical protein|unclassified	4.9483679821
+UniRef50_I6RSR0	4.9480123745
+UniRef50_I6RSR0|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9480123745
+UniRef50_G5SDS9	4.9458197129
+UniRef50_G5SDS9|unclassified	4.9458197129
+UniRef50_Q466U8: ABC transporter ATP-binding protein	4.9445423296
+UniRef50_Q466U8: ABC transporter ATP-binding protein|g__Clostridium.s__Clostridium_beijerinckii	4.9445423296
+UniRef50_F7ZCI7: YcjX-like protein	4.9444062823
+UniRef50_F7ZCI7: YcjX-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.8437421227
+UniRef50_F7ZCI7: YcjX-like protein|unclassified	0.1006641596
+UniRef50_F8FZW4	4.9443833272
+UniRef50_F8FZW4|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9443833272
+UniRef50_F1AXJ5: PP285	4.9443150766
+UniRef50_F1AXJ5: PP285|unclassified	4.9443150766
+UniRef50_O58650	4.9430499534
+UniRef50_O58650|unclassified	4.9430499534
+UniRef50_A3V3M8: MATE efflux family protein	4.9403823824
+UniRef50_A3V3M8: MATE efflux family protein|unclassified	4.9403823824
+UniRef50_A5UKI2	4.9382716049
+UniRef50_A5UKI2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.9382716049
+UniRef50_B7V770	4.9378755108
+UniRef50_B7V770|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7247956403
+UniRef50_B7V770|unclassified	2.2130798705
+UniRef50_B7UZ15	4.9368737597
+UniRef50_B7UZ15|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9368737597
+UniRef50_M9VJJ5: AP endonuclease, family 2	4.9367537534
+UniRef50_M9VJJ5: AP endonuclease, family 2|g__Propionibacterium.s__Propionibacterium_acnes	4.9367537534
+UniRef50_Q87U89	4.9360169534
+UniRef50_Q87U89|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9360169534
+UniRef50_P06864: Evolved beta-galactosidase subunit alpha	4.9357406705
+UniRef50_P06864: Evolved beta-galactosidase subunit alpha|g__Escherichia.s__Escherichia_coli	4.9357406705
+UniRef50_P24395: Ribulose bisphosphate carboxylase small chain	4.9349696725
+UniRef50_P24395: Ribulose bisphosphate carboxylase small chain|unclassified	4.9349696725
+UniRef50_A6LYF1	4.9342191969
+UniRef50_A6LYF1|g__Clostridium.s__Clostridium_beijerinckii	4.9342191969
+UniRef50_N1GZF1: Histidinol-phosphate aminotransferase	4.9339531190
+UniRef50_N1GZF1: Histidinol-phosphate aminotransferase|g__Escherichia.s__Escherichia_coli	4.9339531190
+UniRef50_Q11D29: Amino acid/amide ABC transporter ATP-binding protein 1, HAAT family	4.9328233580
+UniRef50_Q11D29: Amino acid/amide ABC transporter ATP-binding protein 1, HAAT family|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9328233580
+UniRef50_R4ZSV4: Cell division protein DivIB	4.9327105766
+UniRef50_R4ZSV4: Cell division protein DivIB|g__Streptococcus.s__Streptococcus_agalactiae	4.9327105766
+UniRef50_B7UX08	4.9326424233
+UniRef50_B7UX08|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9326424233
+UniRef50_UPI000470D6FC: hypothetical protein	4.9319669770
+UniRef50_UPI000470D6FC: hypothetical protein|unclassified	4.9319669770
+UniRef50_J1AMS7	4.9315612846
+UniRef50_J1AMS7|unclassified	4.9315612846
+UniRef50_P0ACJ7	4.9311641070
+UniRef50_P0ACJ7|g__Escherichia.s__Escherichia_coli	4.9311641070
+UniRef50_Q9ZPX5: Succinate dehydrogenase [ubiquinone] flavoprotein subunit 2, mitochondrial	4.9301934358
+UniRef50_Q9ZPX5: Succinate dehydrogenase [ubiquinone] flavoprotein subunit 2, mitochondrial|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9016229427
+UniRef50_Q9ZPX5: Succinate dehydrogenase [ubiquinone] flavoprotein subunit 2, mitochondrial|unclassified	0.0285704931
+UniRef50_UPI0001911753: hypothetical protein, partial	4.9294346595
+UniRef50_UPI0001911753: hypothetical protein, partial|unclassified	4.9294346595
+UniRef50_A3PSC4: Alkylhydroperoxidase like protein, AhpD family	4.9287339801
+UniRef50_A3PSC4: Alkylhydroperoxidase like protein, AhpD family|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.9287339801
+UniRef50_Q9KNG7: Probable chromosome-partitioning protein ParB	4.9285251344
+UniRef50_Q9KNG7: Probable chromosome-partitioning protein ParB|g__Acinetobacter.s__Acinetobacter_baumannii	4.9285251344
+UniRef50_D6LAV3: PTS system, mannose/fructose/sorbose family, IID component	4.9263773532
+UniRef50_D6LAV3: PTS system, mannose/fructose/sorbose family, IID component|g__Clostridium.s__Clostridium_beijerinckii	4.9263773532
+UniRef50_E2ZP88: Proline dehydrogenase PutA	4.9261546350
+UniRef50_E2ZP88: Proline dehydrogenase PutA|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9261546350
+UniRef50_B7V7H6	4.9261083744
+UniRef50_B7V7H6|unclassified	4.9261083744
+UniRef50_E5QWJ8	4.9261083744
+UniRef50_E5QWJ8|g__Staphylococcus.s__Staphylococcus_aureus	4.9261083744
+UniRef50_F7MMY8: Cobyric acid synthase	4.9261083744
+UniRef50_F7MMY8: Cobyric acid synthase|unclassified	4.9261083744
+UniRef50_P23873: Antitoxin HipB	4.9261083744
+UniRef50_P23873: Antitoxin HipB|g__Escherichia.s__Escherichia_coli	4.9261083744
+UniRef50_Q2EEQ8: Putative defective transposase YbfQ	4.9261083744
+UniRef50_Q2EEQ8: Putative defective transposase YbfQ|g__Escherichia.s__Escherichia_coli	4.9261083744
+UniRef50_Q6FCU8: O-methyl transferase	4.9261083744
+UniRef50_Q6FCU8: O-methyl transferase|g__Acinetobacter.s__Acinetobacter_baumannii	4.9261083744
+UniRef50_A6VBI2: Membrane protein, putative	4.9251106269
+UniRef50_A6VBI2: Membrane protein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9251106269
+UniRef50_A7NIM0: Methyltransferase type 12	4.9234069735
+UniRef50_A7NIM0: Methyltransferase type 12|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9234069735
+UniRef50_P0ACU3: HTH-type transcriptional regulator RutR	4.9215451873
+UniRef50_P0ACU3: HTH-type transcriptional regulator RutR|g__Escherichia.s__Escherichia_coli	4.9215451873
+UniRef50_B9TK47	4.9209091761
+UniRef50_B9TK47|unclassified	4.9209091761
+UniRef50_A0A024L372: Protein involved in detoxification of methylglyoxal	4.9203815031
+UniRef50_A0A024L372: Protein involved in detoxification of methylglyoxal|g__Escherichia.s__Escherichia_coli	4.8377095454
+UniRef50_A0A024L372: Protein involved in detoxification of methylglyoxal|unclassified	0.0826719577
+UniRef50_UPI0004423401: PREDICTED: translation factor GUF1 homolog, chloroplastic-like	4.9202291135
+UniRef50_UPI0004423401: PREDICTED: translation factor GUF1 homolog, chloroplastic-like|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7493870245
+UniRef50_UPI0004423401: PREDICTED: translation factor GUF1 homolog, chloroplastic-like|unclassified	0.1708420890
+UniRef50_F5LYA4: P4 family integrase	4.9200418052
+UniRef50_F5LYA4: P4 family integrase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.9200418052
+UniRef50_J7L244: Zinc-binding dehydrogenase family protein	4.9199996872
+UniRef50_J7L244: Zinc-binding dehydrogenase family protein|g__Propionibacterium.s__Propionibacterium_acnes	4.9199996872
+UniRef50_W8YHT8	4.9191795332
+UniRef50_W8YHT8|unclassified	4.9191795332
+UniRef50_U3T5D5	4.9183752649
+UniRef50_U3T5D5|g__Acinetobacter.s__Acinetobacter_baumannii	4.9183752649
+UniRef50_B2TK67: Sterol-regulatory element binding protein	4.9166428138
+UniRef50_B2TK67: Sterol-regulatory element binding protein|g__Clostridium.s__Clostridium_beijerinckii	4.9166428138
+UniRef50_Q8CSU5	4.9156632479
+UniRef50_Q8CSU5|unclassified	4.9156632479
+UniRef50_I6T2W9	4.9154589372
+UniRef50_I6T2W9|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9154589372
+UniRef50_Q87VD5: Glutamate-ammonia-ligase adenylyltransferase	4.9153782221
+UniRef50_Q87VD5: Glutamate-ammonia-ligase adenylyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9153782221
+UniRef50_B0VME8: Thiol:disulfide interchange protein	4.9146481505
+UniRef50_B0VME8: Thiol:disulfide interchange protein|g__Acinetobacter.s__Acinetobacter_baumannii	4.9146481505
+UniRef50_W1DT96	4.9132475254
+UniRef50_W1DT96|unclassified	4.9132475254
+UniRef50_M4MB15: Protein A variant	4.9131190386
+UniRef50_M4MB15: Protein A variant|g__Staphylococcus.s__Staphylococcus_aureus	4.9131190386
+UniRef50_D9XAX0: Predicted protein	4.9121418512
+UniRef50_D9XAX0: Predicted protein|unclassified	4.9121418512
+UniRef50_B9EWT6	4.9119335313
+UniRef50_B9EWT6|unclassified	4.9119335313
+UniRef50_UPI00035CC932: hypothetical protein	4.9114551607
+UniRef50_UPI00035CC932: hypothetical protein|unclassified	4.9114551607
+UniRef50_Z2D7Y6	4.9109768124
+UniRef50_Z2D7Y6|unclassified	4.9109768124
+UniRef50_W7WXT8	4.9106204617
+UniRef50_W7WXT8|unclassified	4.9106204617
+UniRef50_I3TNP2: Amino acid carrier protein	4.9099017906
+UniRef50_I3TNP2: Amino acid carrier protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9099017906
+UniRef50_Q5X9H5: DNA mismatch repair protein MutL	4.9093474439
+UniRef50_Q5X9H5: DNA mismatch repair protein MutL|g__Streptococcus.s__Streptococcus_agalactiae	4.9093474439
+UniRef50_E6Q8B0	4.9085630952
+UniRef50_E6Q8B0|unclassified	4.9085630952
+UniRef50_B2TER4: Lipid A ABC exporter family, fused ATPase and inner membrane subunits	4.9078162561
+UniRef50_B2TER4: Lipid A ABC exporter family, fused ATPase and inner membrane subunits|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9078162561
+UniRef50_V6QB21	4.9077319754
+UniRef50_V6QB21|unclassified	4.9077319754
+UniRef50_A6LU60: Prophage ps3 protein 01, putative	4.9074966717
+UniRef50_A6LU60: Prophage ps3 protein 01, putative|g__Clostridium.s__Clostridium_beijerinckii	4.9074966717
+UniRef50_UPI00046E5386: hypothetical protein	4.9072880070
+UniRef50_UPI00046E5386: hypothetical protein|unclassified	4.9072880070
+UniRef50_A5UN97	4.9071426855
+UniRef50_A5UN97|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.9071426855
+UniRef50_K2JKB1	4.9069086605
+UniRef50_K2JKB1|unclassified	4.9069086605
+UniRef50_A0RG68	4.9056563087
+UniRef50_A0RG68|g__Clostridium.s__Clostridium_beijerinckii	4.9056563087
+UniRef50_B2TNE9: Biotin-[acetyl-CoA-carboxylase] ligase	4.9052483260
+UniRef50_B2TNE9: Biotin-[acetyl-CoA-carboxylase] ligase|g__Clostridium.s__Clostridium_beijerinckii	4.9052483260
+UniRef50_UPI0001BF5AF2: hypothetical protein SMAC_10608, partial	4.9051629946
+UniRef50_UPI0001BF5AF2: hypothetical protein SMAC_10608, partial|unclassified	4.9051629946
+UniRef50_U5WTC2: Magnesium transporter	4.9047590448
+UniRef50_U5WTC2: Magnesium transporter|g__Propionibacterium.s__Propionibacterium_acnes	4.9047590448
+UniRef50_D4K8J4: Transposase and inactivated derivatives	4.9041593881
+UniRef50_D4K8J4: Transposase and inactivated derivatives|g__Staphylococcus.s__Staphylococcus_epidermidis	4.9041593881
+UniRef50_E0NCD7	4.9035143854
+UniRef50_E0NCD7|g__Neisseria.s__Neisseria_meningitidis	4.3859649123
+UniRef50_E0NCD7|unclassified	0.5175494732
+UniRef50_F9NSM8	4.9031434430
+UniRef50_F9NSM8|g__Propionibacterium.s__Propionibacterium_acnes	4.4247787611
+UniRef50_F9NSM8|unclassified	0.4783646820
+UniRef50_H3WHC1: Cadmium resistance transporter family protein	4.9029009830
+UniRef50_H3WHC1: Cadmium resistance transporter family protein|g__Staphylococcus.s__Staphylococcus_aureus	4.9029009830
+UniRef50_F4BS58: Ribokinase	4.9024251610
+UniRef50_F4BS58: Ribokinase|g__Streptococcus.s__Streptococcus_agalactiae	4.9024251610
+UniRef50_D7GDS1	4.9019695095
+UniRef50_D7GDS1|g__Propionibacterium.s__Propionibacterium_acnes	4.9019695095
+UniRef50_A5UNI0	4.9019607843
+UniRef50_A5UNI0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.9019607843
+UniRef50_B5XNC6: Protein Smg	4.9019607843
+UniRef50_B5XNC6: Protein Smg|g__Escherichia.s__Escherichia_coli	4.9019607843
+UniRef50_B7LSY4	4.9019607843
+UniRef50_B7LSY4|unclassified	4.9019607843
+UniRef50_F3J9Z2	4.9019607843
+UniRef50_F3J9Z2|unclassified	4.9019607843
+UniRef50_M1MC89: Cell wall hydrolase	4.9019607843
+UniRef50_M1MC89: Cell wall hydrolase|g__Clostridium.s__Clostridium_beijerinckii	4.9019607843
+UniRef50_N5H5I7: Fibronectin-binding protein A	4.9019607843
+UniRef50_N5H5I7: Fibronectin-binding protein A|g__Staphylococcus.s__Staphylococcus_aureus	4.9019607843
+UniRef50_O27155: CRISPR-associated endoribonuclease Cas2	4.9019607843
+UniRef50_O27155: CRISPR-associated endoribonuclease Cas2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.9019607843
+UniRef50_P64593: Inner membrane protein YhaI	4.9019607843
+UniRef50_P64593: Inner membrane protein YhaI|g__Escherichia.s__Escherichia_coli	4.9019607843
+UniRef50_Q6MDN1: Translation initiation factor IF-1	4.9019607843
+UniRef50_Q6MDN1: Translation initiation factor IF-1|g__Staphylococcus.s__Staphylococcus_aureus	4.9019607843
+UniRef50_Q8CWZ2	4.9019607843
+UniRef50_Q8CWZ2|g__Streptococcus.s__Streptococcus_mutans	4.9019607843
+UniRef50_R7H8U8: Nitroreductase	4.9019607843
+UniRef50_R7H8U8: Nitroreductase|g__Clostridium.s__Clostridium_beijerinckii	4.9019607843
+UniRef50_X5EPD5: Iron/ascorbate oxidoreductase	4.9014112031
+UniRef50_X5EPD5: Iron/ascorbate oxidoreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9014112031
+UniRef50_Q883J9	4.9006630922
+UniRef50_Q883J9|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.9006630922
+UniRef50_H4Z590	4.9004130411
+UniRef50_H4Z590|unclassified	4.9004130411
+UniRef50_A3PMZ7	4.8988244742
+UniRef50_A3PMZ7|unclassified	4.8988244742
+UniRef50_E5AMF6: Ammonium transporter / Methylammonium transporter	4.8985400813
+UniRef50_E5AMF6: Ammonium transporter / Methylammonium transporter|g__Acinetobacter.s__Acinetobacter_baumannii	4.1233462829
+UniRef50_E5AMF6: Ammonium transporter / Methylammonium transporter|g__Neisseria.s__Neisseria_meningitidis	0.7751937984
+UniRef50_I3UP25: HAD-superfamily hydrolase subfamily IB	4.8981236330
+UniRef50_I3UP25: HAD-superfamily hydrolase subfamily IB|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8981236330
+UniRef50_K4PS95: Streptococcal histidine triad family protein	4.8976252255
+UniRef50_K4PS95: Streptococcal histidine triad family protein|g__Streptococcus.s__Streptococcus_agalactiae	4.8976252255
+UniRef50_UPI0002E07778: hypothetical protein	4.8972857182
+UniRef50_UPI0002E07778: hypothetical protein|unclassified	4.8972857182
+UniRef50_O26735: Conserved protein	4.8961442115
+UniRef50_O26735: Conserved protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.8961442115
+UniRef50_Q0FWM7	4.8931546351
+UniRef50_Q0FWM7|unclassified	4.8931546351
+UniRef50_W7VDK3: Transposase IS861	4.8922558407
+UniRef50_W7VDK3: Transposase IS861|unclassified	4.8922558407
+UniRef50_Q46795	4.8900924813
+UniRef50_Q46795|g__Escherichia.s__Escherichia_coli	4.8900924813
+UniRef50_Q390S8: Drug resistance transporter EmrB/QacA subfamily	4.8891666799
+UniRef50_Q390S8: Drug resistance transporter EmrB/QacA subfamily|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8891666799
+UniRef50_U5MM11: Response regulator GtcR	4.8889250752
+UniRef50_U5MM11: Response regulator GtcR|g__Clostridium.s__Clostridium_beijerinckii	4.8889250752
+UniRef50_Q0STJ3: Sirohydrochlorin cobaltochelatase	4.8872035994
+UniRef50_Q0STJ3: Sirohydrochlorin cobaltochelatase|g__Clostridium.s__Clostridium_beijerinckii	4.8872035994
+UniRef50_A5I292	4.8864109712
+UniRef50_A5I292|g__Clostridium.s__Clostridium_beijerinckii	4.8864109712
+UniRef50_M9SAS9: Transcriptional regulator	4.8841812443
+UniRef50_M9SAS9: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8841812443
+UniRef50_I6G9X5: Na(+)/H(+) antiporter NhaB	4.8840785440
+UniRef50_I6G9X5: Na(+)/H(+) antiporter NhaB|g__Escherichia.s__Escherichia_coli	4.8840785440
+UniRef50_C8S226: Endoribonuclease L-PSP	4.8837575584
+UniRef50_C8S226: Endoribonuclease L-PSP|unclassified	4.8837575584
+UniRef50_A1JJF7: LPS-assembly protein LptD	4.8826723168
+UniRef50_A1JJF7: LPS-assembly protein LptD|g__Escherichia.s__Escherichia_coli	4.8826723168
+UniRef50_P30417: Probable FKBP-type 25 kDa peptidyl-prolyl cis-trans isomerase	4.8824683909
+UniRef50_P30417: Probable FKBP-type 25 kDa peptidyl-prolyl cis-trans isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8824683909
+UniRef50_Q9HWB8: Nuclease SbcCD subunit C	4.8806398053
+UniRef50_Q9HWB8: Nuclease SbcCD subunit C|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8806398053
+UniRef50_A3PLD5	4.8795054982
+UniRef50_A3PLD5|unclassified	4.8795054982
+UniRef50_P62177: RNA polymerase sigma-35 factor	4.8789283874
+UniRef50_P62177: RNA polymerase sigma-35 factor|g__Clostridium.s__Clostridium_beijerinckii	4.8789283874
+UniRef50_R5E350: Phospholipase patatin family	4.8787449050
+UniRef50_R5E350: Phospholipase patatin family|g__Streptococcus.s__Streptococcus_agalactiae	4.8787449050
+UniRef50_E2ZTL2: Type 4 fimbrial biogenesis protein PilV	4.8786616560
+UniRef50_E2ZTL2: Type 4 fimbrial biogenesis protein PilV|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5534960396
+UniRef50_E2ZTL2: Type 4 fimbrial biogenesis protein PilV|unclassified	0.3251656164
+UniRef50_A0A023LDA8	4.8780487805
+UniRef50_A0A023LDA8|g__Escherichia.s__Escherichia_coli	4.8780487805
+UniRef50_A5IPL7	4.8780487805
+UniRef50_A5IPL7|g__Staphylococcus.s__Staphylococcus_aureus	4.8780487805
+UniRef50_G0EVT0: Cob(I)yrinic acid a,c-diamide adenosyltransferase CobO	4.8780487805
+UniRef50_G0EVT0: Cob(I)yrinic acid a,c-diamide adenosyltransferase CobO|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8780487805
+UniRef50_Q2YTP8	4.8780487805
+UniRef50_Q2YTP8|g__Staphylococcus.s__Staphylococcus_aureus	4.8780487805
+UniRef50_Q46868	4.8780487805
+UniRef50_Q46868|g__Escherichia.s__Escherichia_coli	4.8780487805
+UniRef50_Q7WP11: 2-nonaprenyl-3-methyl-6-methoxy-1,4-benzoquinol hydroxylase	4.8780487805
+UniRef50_Q7WP11: 2-nonaprenyl-3-methyl-6-methoxy-1,4-benzoquinol hydroxylase|g__Acinetobacter.s__Acinetobacter_baumannii	4.8780487805
+UniRef50_U5MXP3	4.8777563411
+UniRef50_U5MXP3|g__Clostridium.s__Clostridium_beijerinckii	4.8777563411
+UniRef50_W0I1A1: Aspartate ammonia-lyase	4.8775689384
+UniRef50_W0I1A1: Aspartate ammonia-lyase|g__Acinetobacter.s__Acinetobacter_baumannii	4.8775689384
+UniRef50_D5V8H6: Phosphomethylpyrimidine kinase	4.8769116001
+UniRef50_D5V8H6: Phosphomethylpyrimidine kinase|g__Acinetobacter.s__Acinetobacter_baumannii	4.8769116001
+UniRef50_A6V155	4.8766290079
+UniRef50_A6V155|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8766290079
+UniRef50_Q930I4: Histidinol dehydrogenase 2	4.8749494734
+UniRef50_Q930I4: Histidinol dehydrogenase 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.8749494734
+UniRef50_W0H2V6: Hemolysin activator protein	4.8747184218
+UniRef50_W0H2V6: Hemolysin activator protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8747184218
+UniRef50_M9VKH9: Extracellular solute-binding protein	4.8746681058
+UniRef50_M9VKH9: Extracellular solute-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	4.8746681058
+UniRef50_M1XHT3: SCCmec staphylococcal cassette region, isolate CMFT503	4.8692763732
+UniRef50_M1XHT3: SCCmec staphylococcal cassette region, isolate CMFT503|g__Staphylococcus.s__Staphylococcus_epidermidis	4.7167203035
+UniRef50_M1XHT3: SCCmec staphylococcal cassette region, isolate CMFT503|unclassified	0.1525560698
+UniRef50_W7JHS5	4.8688718326
+UniRef50_W7JHS5|unclassified	4.8688718326
+UniRef50_A5W202: Peptidoglycan glycosyltransferase	4.8683995993
+UniRef50_A5W202: Peptidoglycan glycosyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8683995993
+UniRef50_X1WZZ9	4.8671234135
+UniRef50_X1WZZ9|unclassified	4.8671234135
+UniRef50_O85673: Anthranilate 1,2-dioxygenase large subunit	4.8669004212
+UniRef50_O85673: Anthranilate 1,2-dioxygenase large subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8669004212
+UniRef50_P15275: Transcriptional regulatory protein AlgQ	4.8669003410
+UniRef50_P15275: Transcriptional regulatory protein AlgQ|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8669003410
+UniRef50_P26994: Exoenzyme S synthesis protein B	4.8661800487
+UniRef50_P26994: Exoenzyme S synthesis protein B|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8661800487
+UniRef50_S6AR61	4.8661800487
+UniRef50_S6AR61|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8661800487
+UniRef50_Z2D8Y2: Amino acid ABC transporter substrate-binding protein	4.8660258301
+UniRef50_Z2D8Y2: Amino acid ABC transporter substrate-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8660258301
+UniRef50_UPI000476AB7B: membrane protein	4.8652590524
+UniRef50_UPI000476AB7B: membrane protein|unclassified	4.8652590524
+UniRef50_E8IF85	4.8649353471
+UniRef50_E8IF85|g__Escherichia.s__Escherichia_coli	4.6511627907
+UniRef50_E8IF85|unclassified	0.2137725564
+UniRef50_Q4FRK9: N-acetyl-gamma-glutamyl-phosphate reductase	4.8631871855
+UniRef50_Q4FRK9: N-acetyl-gamma-glutamyl-phosphate reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7299407940
+UniRef50_Q4FRK9: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.1332463915
+UniRef50_R5U1M5: Glycoside hydrolase family 3 domain-containing protein	4.8613927829
+UniRef50_R5U1M5: Glycoside hydrolase family 3 domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	4.8613927829
+UniRef50_J7RCB5	4.8594744295
+UniRef50_J7RCB5|g__Escherichia.s__Escherichia_coli	4.8594744295
+UniRef50_UPI00034595C5: hypothetical protein	4.8590472706
+UniRef50_UPI00034595C5: hypothetical protein|unclassified	4.8590472706
+UniRef50_A6LYQ4: Integral membrane sensor signal transduction histidine kinase	4.8588491137
+UniRef50_A6LYQ4: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	4.8588491137
+UniRef50_G7MD13: Cell wall binding repeat-containing protein	4.8557703933
+UniRef50_G7MD13: Cell wall binding repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	4.8557703933
+UniRef50_Q9RRP2	4.8551444121
+UniRef50_Q9RRP2|g__Deinococcus.s__Deinococcus_radiodurans	4.1234843866
+UniRef50_Q9RRP2|unclassified	0.7316600254
+UniRef50_P42314	4.8547020977
+UniRef50_P42314|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7504515780
+UniRef50_P42314|g__Acinetobacter.s__Acinetobacter_baumannii	2.1042505197
+UniRef50_A0A023S135: Ferrous iron transporter B	4.8543689320
+UniRef50_A0A023S135: Ferrous iron transporter B|g__Acinetobacter.s__Acinetobacter_baumannii	4.8543689320
+UniRef50_A6UX96	4.8543689320
+UniRef50_A6UX96|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8543689320
+UniRef50_C4XLM5	4.8543689320
+UniRef50_C4XLM5|unclassified	4.8543689320
+UniRef50_D2N6I7: Lipoprotein, putative	4.8543689320
+UniRef50_D2N6I7: Lipoprotein, putative|g__Staphylococcus.s__Staphylococcus_aureus	4.8543689320
+UniRef50_Q3J1C1	4.8543689320
+UniRef50_Q3J1C1|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.8543689320
+UniRef50_R5FLI5: Glutathione peroxidase	4.8543689320
+UniRef50_R5FLI5: Glutathione peroxidase|g__Clostridium.s__Clostridium_beijerinckii	4.8543689320
+UniRef50_UPI000467B474: integrase, partial	4.8543689320
+UniRef50_UPI000467B474: integrase, partial|unclassified	4.8543689320
+UniRef50_K6GMQ5	4.8518820530
+UniRef50_K6GMQ5|unclassified	4.8518820530
+UniRef50_P52627: Regulator of sigma S factor FliZ	4.8516757246
+UniRef50_P52627: Regulator of sigma S factor FliZ|g__Escherichia.s__Escherichia_coli	4.8516757246
+UniRef50_S3H5L3: PilT protein domain protein	4.8516255897
+UniRef50_S3H5L3: PilT protein domain protein|unclassified	4.8516255897
+UniRef50_I4SV72	4.8511506319
+UniRef50_I4SV72|unclassified	4.8511506319
+UniRef50_A5UJS3: Ribonuclease P protein component 2	4.8508893258
+UniRef50_A5UJS3: Ribonuclease P protein component 2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.5714285714
+UniRef50_A5UJS3: Ribonuclease P protein component 2|unclassified	1.2794607544
+UniRef50_P54517: 3-dehydroquinate dehydratase	4.8504906937
+UniRef50_P54517: 3-dehydroquinate dehydratase|g__Clostridium.s__Clostridium_beijerinckii	4.7636330642
+UniRef50_P54517: 3-dehydroquinate dehydratase|unclassified	0.0868576296
+UniRef50_Q9I1P2: HTH-type transcriptional regulator VqsM	4.8503946763
+UniRef50_Q9I1P2: HTH-type transcriptional regulator VqsM|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8503946763
+UniRef50_A6LRC8: Transposase IS116/IS110/IS902 family protein	4.8498612551
+UniRef50_A6LRC8: Transposase IS116/IS110/IS902 family protein|g__Clostridium.s__Clostridium_beijerinckii	4.8498612551
+UniRef50_D5WFZ7: Type VI secretion protein, EvpB/VC_A0108 family	4.8492290325
+UniRef50_D5WFZ7: Type VI secretion protein, EvpB/VC_A0108 family|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8174884230
+UniRef50_D5WFZ7: Type VI secretion protein, EvpB/VC_A0108 family|unclassified	0.0317406095
+UniRef50_A6M2E1	4.8490414419
+UniRef50_A6M2E1|g__Clostridium.s__Clostridium_beijerinckii	4.8490414419
+UniRef50_Q1BYF5: Undecaprenyl-diphosphatase 1	4.8487915782
+UniRef50_Q1BYF5: Undecaprenyl-diphosphatase 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4671031610
+UniRef50_Q1BYF5: Undecaprenyl-diphosphatase 1|unclassified	1.3816884171
+UniRef50_L9I8Z3: Aldehyde oxidase and xanthine dehydrogenase, a/b hammerhead domain protein	4.8486254495
+UniRef50_L9I8Z3: Aldehyde oxidase and xanthine dehydrogenase, a/b hammerhead domain protein|g__Escherichia.s__Escherichia_coli	4.8486254495
+UniRef50_P29369: Glycerol metabolism activator	4.8486254495
+UniRef50_P29369: Glycerol metabolism activator|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8486254495
+UniRef50_V5T1H0: Iron dicitrate transporter FecR	4.8475398882
+UniRef50_V5T1H0: Iron dicitrate transporter FecR|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8475398882
+UniRef50_Q9I4G8: Arachidonate 15-lipoxygenase	4.8465932189
+UniRef50_Q9I4G8: Arachidonate 15-lipoxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8465932189
+UniRef50_C1DMM9: Transcriptional regulator, LysR family	4.8463794574
+UniRef50_C1DMM9: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8463794574
+UniRef50_A0A014MKE4	4.8461989955
+UniRef50_A0A014MKE4|unclassified	4.8461989955
+UniRef50_Q9RSP4	4.8455993051
+UniRef50_Q9RSP4|g__Deinococcus.s__Deinococcus_radiodurans	4.8455993051
+UniRef50_UPI0003EB0F53: hypothetical protein	4.8443388916
+UniRef50_UPI0003EB0F53: hypothetical protein|unclassified	4.8443388916
+UniRef50_UPI000370D7A6: hypothetical protein	4.8436597032
+UniRef50_UPI000370D7A6: hypothetical protein|unclassified	4.8436597032
+UniRef50_K0RKY5	4.8428592334
+UniRef50_K0RKY5|unclassified	4.8428592334
+UniRef50_A4EL10	4.8427629059
+UniRef50_A4EL10|unclassified	4.8427629059
+UniRef50_S5V0B7	4.8422158573
+UniRef50_S5V0B7|unclassified	4.8422158573
+UniRef50_B7GX21: Aldehyde dehydrogenase	4.8417595855
+UniRef50_B7GX21: Aldehyde dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	4.8417595855
+UniRef50_Q9I2H0	4.8414149581
+UniRef50_Q9I2H0|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6455026455
+UniRef50_Q9I2H0|unclassified	2.1959123126
+UniRef50_F3U2F5: Acetamidase/Formamidase	4.8411687236
+UniRef50_F3U2F5: Acetamidase/Formamidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.8411687236
+UniRef50_E2ZUC7	4.8398801442
+UniRef50_E2ZUC7|unclassified	2.4813895782
+UniRef50_E2ZUC7|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3584905660
+UniRef50_M4QXD0: Transcriptional regulator, LysR family	4.8392887807
+UniRef50_M4QXD0: Transcriptional regulator, LysR family|g__Acinetobacter.s__Acinetobacter_baumannii	4.8392887807
+UniRef50_UPI0003C10252	4.8378574184
+UniRef50_UPI0003C10252|unclassified	4.8378574184
+UniRef50_F5Q2F1: Putrescine-ornithine antiporter	4.8377209495
+UniRef50_F5Q2F1: Putrescine-ornithine antiporter|g__Escherichia.s__Escherichia_coli	4.8377209495
+UniRef50_U4V0J5	4.8370168162
+UniRef50_U4V0J5|unclassified	4.8370168162
+UniRef50_Q9HTF1: Low specificity L-threonine aldolase	4.8366993554
+UniRef50_Q9HTF1: Low specificity L-threonine aldolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8429374829
+UniRef50_Q9HTF1: Low specificity L-threonine aldolase|unclassified	0.9937618725
+UniRef50_UPI00046ED940: hypothetical protein, partial	4.8358420720
+UniRef50_UPI00046ED940: hypothetical protein, partial|unclassified	4.8358420720
+UniRef50_A6LW35	4.8346880073
+UniRef50_A6LW35|g__Clostridium.s__Clostridium_beijerinckii	4.8346880073
+UniRef50_UPI0002BB9F78: hypothetical protein, partial	4.8345912564
+UniRef50_UPI0002BB9F78: hypothetical protein, partial|unclassified	4.8345912564
+UniRef50_F8G4J9: Major facilitator transporter	4.8339581211
+UniRef50_F8G4J9: Major facilitator transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8339581211
+UniRef50_D2JFR4	4.8337982152
+UniRef50_D2JFR4|unclassified	4.8337982152
+UniRef50_B8DKX1: 4Fe-4S ferredoxin iron-sulfur binding domain protein	4.8335212341
+UniRef50_B8DKX1: 4Fe-4S ferredoxin iron-sulfur binding domain protein|g__Clostridium.s__Clostridium_beijerinckii	4.8335212341
+UniRef50_G0A370: 20S proteasome, A and B subunits	4.8333174133
+UniRef50_G0A370: 20S proteasome, A and B subunits|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8333174133
+UniRef50_I7GKU7: Macaca fascicularis brain cDNA clone: QbsB-10319, similar to human reticulon 4 (RTN4), mRNA, RefSeq: NM_020532.3	4.8323832521
+UniRef50_I7GKU7: Macaca fascicularis brain cDNA clone: QbsB-10319, similar to human reticulon 4 (RTN4), mRNA, RefSeq: NM_020532.3|unclassified	4.8323832521
+UniRef50_C4RLU4: Feruloyl esterase (Fragment)	4.8321103126
+UniRef50_C4RLU4: Feruloyl esterase (Fragment)|unclassified	4.8321103126
+UniRef50_Q9I1W4: Alpha-1,4-glucan:maltose-1-phosphate maltosyltransferase	4.8314893010
+UniRef50_Q9I1W4: Alpha-1,4-glucan:maltose-1-phosphate maltosyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7198934302
+UniRef50_Q9I1W4: Alpha-1,4-glucan:maltose-1-phosphate maltosyltransferase|unclassified	0.1115958709
+UniRef50_U3T0Z6: dGTP-pyrophosphohydrolase/thiamine phosphate synthase	4.8314829577
+UniRef50_U3T0Z6: dGTP-pyrophosphohydrolase/thiamine phosphate synthase|g__Acinetobacter.s__Acinetobacter_baumannii	4.8314829577
+UniRef50_A6LQ18: Transcriptional regulator, TetR family	4.8309178744
+UniRef50_A6LQ18: Transcriptional regulator, TetR family|g__Clostridium.s__Clostridium_beijerinckii	4.8309178744
+UniRef50_A6LYZ5: Transposase (21)	4.8309178744
+UniRef50_A6LYZ5: Transposase (21)|g__Clostridium.s__Clostridium_beijerinckii	4.8309178744
+UniRef50_Q3IV80: Plasmid maintenance protein MvpT	4.8309178744
+UniRef50_Q3IV80: Plasmid maintenance protein MvpT|unclassified	4.8309178744
+UniRef50_Q75V32	4.8309178744
+UniRef50_Q75V32|unclassified	4.8309178744
+UniRef50_R4ZUQ8: DNA topology modulation protein	4.8309178744
+UniRef50_R4ZUQ8: DNA topology modulation protein|g__Streptococcus.s__Streptococcus_agalactiae	4.8309178744
+UniRef50_T8T1E8	4.8309178744
+UniRef50_T8T1E8|g__Escherichia.s__Escherichia_coli	4.8309178744
+UniRef50_U3TV34: PoxB protein	4.8309178744
+UniRef50_U3TV34: PoxB protein|g__Escherichia.s__Escherichia_coli	4.8309178744
+UniRef50_W1UIZ1	4.8309178744
+UniRef50_W1UIZ1|unclassified	4.8309178744
+UniRef50_W8SS00	4.8309178744
+UniRef50_W8SS00|g__Escherichia.s__Escherichia_coli	4.8309178744
+UniRef50_M1MMR2: O-antigen polymerase	4.8296762458
+UniRef50_M1MMR2: O-antigen polymerase|g__Clostridium.s__Clostridium_beijerinckii	4.8296762458
+UniRef50_Q97FC1: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--2,6-diaminopimelate ligase 2	4.8293948406
+UniRef50_Q97FC1: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--2,6-diaminopimelate ligase 2|g__Clostridium.s__Clostridium_beijerinckii	4.8293948406
+UniRef50_UPI0001C3962F: S1 RNA binding domain protein	4.8289120698
+UniRef50_UPI0001C3962F: S1 RNA binding domain protein|unclassified	4.8289120698
+UniRef50_A6LUB1: Diguanylate cyclase	4.8287943391
+UniRef50_A6LUB1: Diguanylate cyclase|g__Clostridium.s__Clostridium_beijerinckii	4.8287943391
+UniRef50_Q9RZC4: 1-pyrroline-5-carboxylate dehydrogenase, putative	4.8280723156
+UniRef50_Q9RZC4: 1-pyrroline-5-carboxylate dehydrogenase, putative|g__Deinococcus.s__Deinococcus_radiodurans	4.8280723156
+UniRef50_A6LWA9	4.8279352227
+UniRef50_A6LWA9|g__Clostridium.s__Clostridium_beijerinckii	4.8279352227
+UniRef50_S5XU40: Major facilitator transporter	4.8264050273
+UniRef50_S5XU40: Major facilitator transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.8264050273
+UniRef50_H8LWD1	4.8262929333
+UniRef50_H8LWD1|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8262929333
+UniRef50_C5A8E0: HlyD family secretion protein	4.8262035306
+UniRef50_C5A8E0: HlyD family secretion protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8262035306
+UniRef50_Q8DXL3: Prophage LambdaSa2, lysin, putative	4.8260297827
+UniRef50_Q8DXL3: Prophage LambdaSa2, lysin, putative|g__Streptococcus.s__Streptococcus_agalactiae	4.8260297827
+UniRef50_Q01244: Yop proteins translocation protein C	4.8257748821
+UniRef50_Q01244: Yop proteins translocation protein C|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8257748821
+UniRef50_E5U235	4.8244384605
+UniRef50_E5U235|unclassified	4.8244384605
+UniRef50_A6LXE2: Efflux transporter, RND family, MFP subunit	4.8243806769
+UniRef50_A6LXE2: Efflux transporter, RND family, MFP subunit|g__Clostridium.s__Clostridium_beijerinckii	4.8243806769
+UniRef50_V4QVG6	4.8236935959
+UniRef50_V4QVG6|unclassified	4.8236935959
+UniRef50_F3J3Y4: Arsenate reductase	4.8230852646
+UniRef50_F3J3Y4: Arsenate reductase|unclassified	4.8230852646
+UniRef50_I6HDV3	4.8230238306
+UniRef50_I6HDV3|unclassified	4.8230238306
+UniRef50_B0S039: Aspartate ammonia-lyase	4.8226098257
+UniRef50_B0S039: Aspartate ammonia-lyase|g__Clostridium.s__Clostridium_beijerinckii	4.8226098257
+UniRef50_U6AE90: Iron siderophore receptor protein	4.8225619776
+UniRef50_U6AE90: Iron siderophore receptor protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8225619776
+UniRef50_E2XQ21: Transcriptional regulator, GntR family	4.8215095110
+UniRef50_E2XQ21: Transcriptional regulator, GntR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3222591362
+UniRef50_E2XQ21: Transcriptional regulator, GntR family|g__Acinetobacter.s__Acinetobacter_baumannii	1.4992503748
+UniRef50_UPI000288A457: ectoine utilization protein EutE, partial	4.8200183960
+UniRef50_UPI000288A457: ectoine utilization protein EutE, partial|unclassified	4.8200183960
+UniRef50_A0A024HP52: Mig-14	4.8185645201
+UniRef50_A0A024HP52: Mig-14|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8185645201
+UniRef50_UPI0003B40579: pilus biosynthesis protein TadE	4.8163914098
+UniRef50_UPI0003B40579: pilus biosynthesis protein TadE|unclassified	4.8163914098
+UniRef50_D4M7N5: Monosaccharide ABC transporter membrane protein, CUT2 family (TC 3.A.1.2.-)	4.8153973481
+UniRef50_D4M7N5: Monosaccharide ABC transporter membrane protein, CUT2 family (TC 3.A.1.2.-)|g__Clostridium.s__Clostridium_beijerinckii	4.8153973481
+UniRef50_F2ABC9	4.8138231202
+UniRef50_F2ABC9|unclassified	4.8138231202
+UniRef50_L8P8G2: Putative proline iminopeptidase	4.8137357399
+UniRef50_L8P8G2: Putative proline iminopeptidase|unclassified	4.8137357399
+UniRef50_L8BHK8: FIGfam014588: Predicted regulator of CFA/I fimbriae	4.8134847081
+UniRef50_L8BHK8: FIGfam014588: Predicted regulator of CFA/I fimbriae|g__Escherichia.s__Escherichia_coli	4.8134847081
+UniRef50_M9RSL2	4.8108917184
+UniRef50_M9RSL2|unclassified	4.8108917184
+UniRef50_J8V557	4.8096594690
+UniRef50_J8V557|unclassified	4.8096594690
+UniRef50_B7LVR8: L-alanine exporter AlaE	4.8078305527
+UniRef50_B7LVR8: L-alanine exporter AlaE|g__Escherichia.s__Escherichia_coli	4.8078305527
+UniRef50_J0EKQ4	4.8076923077
+UniRef50_J0EKQ4|g__Staphylococcus.s__Staphylococcus_epidermidis	4.8076923077
+UniRef50_Q0VLT2: Transcriptional regulator, TetR-family	4.8076923077
+UniRef50_Q0VLT2: Transcriptional regulator, TetR-family|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.8076923077
+UniRef50_T1YAT3	4.8076923077
+UniRef50_T1YAT3|g__Staphylococcus.s__Staphylococcus_aureus	4.8076923077
+UniRef50_T1YBP3	4.8076923077
+UniRef50_T1YBP3|g__Staphylococcus.s__Staphylococcus_aureus	4.8076923077
+UniRef50_UPI000169AB3A: global DNA-binding transcriptional dual regulator H-NS, partial	4.8076923077
+UniRef50_UPI000169AB3A: global DNA-binding transcriptional dual regulator H-NS, partial|unclassified	4.8076923077
+UniRef50_UPI00030DEF9A: hypothetical protein	4.8075640838
+UniRef50_UPI00030DEF9A: hypothetical protein|unclassified	4.8075640838
+UniRef50_F5ZGJ9: DNA-binding protein	4.8059500114
+UniRef50_F5ZGJ9: DNA-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	4.8059500114
+UniRef50_J0ZX09	4.8019521544
+UniRef50_J0ZX09|unclassified	4.8019521544
+UniRef50_H5P3T9	4.8004325421
+UniRef50_H5P3T9|unclassified	4.8004325421
+UniRef50_F4TYB8	4.8001240869
+UniRef50_F4TYB8|unclassified	4.8001240869
+UniRef50_Q0STL9: UPF0313 protein CPR_1216	4.8000738871
+UniRef50_Q0STL9: UPF0313 protein CPR_1216|g__Clostridium.s__Clostridium_beijerinckii	4.8000738871
+UniRef50_N6Z631: Cytosine deaminase	4.7996144478
+UniRef50_N6Z631: Cytosine deaminase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6689023151
+UniRef50_N6Z631: Cytosine deaminase|unclassified	1.1307121327
+UniRef50_C6CHC5	4.7995939516
+UniRef50_C6CHC5|unclassified	4.7995939516
+UniRef50_G2SPG8: Primosomal protein n	4.7995214190
+UniRef50_G2SPG8: Primosomal protein n|g__Streptococcus.s__Streptococcus_agalactiae	4.7995214190
+UniRef50_Q9CGI3	4.7984806684
+UniRef50_Q9CGI3|g__Streptococcus.s__Streptococcus_agalactiae	4.7984806684
+UniRef50_C6B134: Class I peptide chain release factor	4.7979289515
+UniRef50_C6B134: Class I peptide chain release factor|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.7979289515
+UniRef50_J3MKM9	4.7974305996
+UniRef50_J3MKM9|unclassified	4.7974305996
+UniRef50_K8DRW2: Phosphoribosylformylglycinamidine synthase,synthetase subunit / Phosphoribosylformylglycinamidine synthase, glutamine amidotransferase subunit	4.7965135160
+UniRef50_K8DRW2: Phosphoribosylformylglycinamidine synthase,synthetase subunit / Phosphoribosylformylglycinamidine synthase, glutamine amidotransferase subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2408398674
+UniRef50_K8DRW2: Phosphoribosylformylglycinamidine synthase,synthetase subunit / Phosphoribosylformylglycinamidine synthase, glutamine amidotransferase subunit|g__Escherichia.s__Escherichia_coli	0.5556736486
+UniRef50_D6SCE5	4.7964502846
+UniRef50_D6SCE5|g__Staphylococcus.s__Staphylococcus_aureus	4.7964502846
+UniRef50_F4DNZ1: LysR family transcriptional regulator	4.7962733991
+UniRef50_F4DNZ1: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7962733991
+UniRef50_P77509	4.7958054738
+UniRef50_P77509|g__Escherichia.s__Escherichia_coli	4.7958054738
+UniRef50_K7RWW8: 3'-5' exonuclease	4.7950525499
+UniRef50_K7RWW8: 3'-5' exonuclease|g__Propionibacterium.s__Propionibacterium_acnes	4.7950525499
+UniRef50_A6LQT7: Ribulose-phosphate 3-epimerase	4.7945711705
+UniRef50_A6LQT7: Ribulose-phosphate 3-epimerase|g__Clostridium.s__Clostridium_beijerinckii	4.7945711705
+UniRef50_A8LKQ2: Sulfurtransferase	4.7938332546
+UniRef50_A8LKQ2: Sulfurtransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.7938332546
+UniRef50_H6NN00: MerR family transcriptional regulator	4.7934352009
+UniRef50_H6NN00: MerR family transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	4.7934352009
+UniRef50_G1Y260	4.7933243167
+UniRef50_G1Y260|unclassified	4.7933243167
+UniRef50_H4WFI1: Amino acid kinase family protein	4.7931728745
+UniRef50_H4WFI1: Amino acid kinase family protein|g__Escherichia.s__Escherichia_coli	4.7931728745
+UniRef50_UPI00016B21F0: TDP-GLUCOSE PYROPHOSPHORYLASE, partial	4.7926396364
+UniRef50_UPI00016B21F0: TDP-GLUCOSE PYROPHOSPHORYLASE, partial|unclassified	4.7926396364
+UniRef50_P76510	4.7914314182
+UniRef50_P76510|g__Escherichia.s__Escherichia_coli	3.3222591362
+UniRef50_P76510|unclassified	1.4691722820
+UniRef50_Q82XQ6: 30S ribosomal protein S6	4.7904260324
+UniRef50_Q82XQ6: 30S ribosomal protein S6|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7904260324
+UniRef50_A6LXB1	4.7903233182
+UniRef50_A6LXB1|g__Clostridium.s__Clostridium_beijerinckii	4.7903233182
+UniRef50_F5YFX0: Polar amino acid ABC transporter, inner membrane subunit	4.7902106185
+UniRef50_F5YFX0: Polar amino acid ABC transporter, inner membrane subunit|g__Clostridium.s__Clostridium_beijerinckii	4.7902106185
+UniRef50_X5K4H8	4.7888546300
+UniRef50_X5K4H8|g__Streptococcus.s__Streptococcus_agalactiae	4.7888546300
+UniRef50_A6LX73	4.7868217054
+UniRef50_A6LX73|g__Clostridium.s__Clostridium_beijerinckii	4.7868217054
+UniRef50_Q9HZS1: Histidine transport ATP-binding protein HisP	4.7862283053
+UniRef50_Q9HZS1: Histidine transport ATP-binding protein HisP|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7862283053
+UniRef50_D1AIW2: PTS system Galactitol-specific IIC component	4.7859753192
+UniRef50_D1AIW2: PTS system Galactitol-specific IIC component|g__Clostridium.s__Clostridium_beijerinckii	4.7859753192
+UniRef50_A6LYS3: PAS/PAC sensor signal transduction histidine kinase	4.7853352534
+UniRef50_A6LYS3: PAS/PAC sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	4.7853352534
+UniRef50_A3PQQ0: GCN5-related N-acetyltransferase	4.7852620772
+UniRef50_A3PQQ0: GCN5-related N-acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	4.7852620772
+UniRef50_A3PSD4: Transcriptional regulator, AsnC family	4.7846889952
+UniRef50_A3PSD4: Transcriptional regulator, AsnC family|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.7846889952
+UniRef50_D3EJM2: Peptidyl-prolyl cis-trans isomerase	4.7846889952
+UniRef50_D3EJM2: Peptidyl-prolyl cis-trans isomerase|g__Clostridium.s__Clostridium_beijerinckii	4.7846889952
+UniRef50_Q92QK8: Glutamyl-tRNA(Gln) amidotransferase subunit C	4.7846889952
+UniRef50_Q92QK8: Glutamyl-tRNA(Gln) amidotransferase subunit C|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.7846889952
+UniRef50_U3T4G5: Pseudouridine synthase	4.7846889952
+UniRef50_U3T4G5: Pseudouridine synthase|g__Acinetobacter.s__Acinetobacter_baumannii	4.7846889952
+UniRef50_F4TUJ1: NADH-quinone oxidoreductase subunit I	4.7842622419
+UniRef50_F4TUJ1: NADH-quinone oxidoreductase subunit I|unclassified	4.7842622419
+UniRef50_UPI00036F3576: hypothetical protein	4.7838056623
+UniRef50_UPI00036F3576: hypothetical protein|unclassified	4.7838056623
+UniRef50_G0DXI1	4.7830686395
+UniRef50_G0DXI1|g__Propionibacterium.s__Propionibacterium_acnes	4.7830686395
+UniRef50_B9KQU7	4.7826878297
+UniRef50_B9KQU7|unclassified	4.7826878297
+UniRef50_D2ZSG7	4.7805364045
+UniRef50_D2ZSG7|unclassified	4.7805364045
+UniRef50_F0YEB9	4.7801544202
+UniRef50_F0YEB9|unclassified	4.7801544202
+UniRef50_B2UX24: Histidinol-phosphate aminotransferase	4.7801317267
+UniRef50_B2UX24: Histidinol-phosphate aminotransferase|g__Clostridium.s__Clostridium_beijerinckii	4.7801317267
+UniRef50_W0YU01: ATP-dependent helicase HepA	4.7800131870
+UniRef50_W0YU01: ATP-dependent helicase HepA|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7800131870
+UniRef50_U5MNP4: Penicillin-binding protein 1A	4.7791266285
+UniRef50_U5MNP4: Penicillin-binding protein 1A|g__Clostridium.s__Clostridium_beijerinckii	4.7791266285
+UniRef50_V5U2H7	4.7790662434
+UniRef50_V5U2H7|g__Escherichia.s__Escherichia_coli	4.7790662434
+UniRef50_V9W0I7	4.7788997060
+UniRef50_V9W0I7|unclassified	4.7788997060
+UniRef50_M1MLW9	4.7788326451
+UniRef50_M1MLW9|g__Clostridium.s__Clostridium_beijerinckii	4.7788326451
+UniRef50_W4HIB0: Putative NAD-specific glutamate dehydrogenase	4.7763814288
+UniRef50_W4HIB0: Putative NAD-specific glutamate dehydrogenase|unclassified	4.7763814288
+UniRef50_V9TIA6: FAD-linked oxidoreductase	4.7758636847
+UniRef50_V9TIA6: FAD-linked oxidoreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7758636847
+UniRef50_B1IBC6: Fibronectin/fibrinogen binding protein	4.7757856133
+UniRef50_B1IBC6: Fibronectin/fibrinogen binding protein|g__Streptococcus.s__Streptococcus_agalactiae	4.7329544439
+UniRef50_B1IBC6: Fibronectin/fibrinogen binding protein|unclassified	0.0428311695
+UniRef50_T7IR01: Diguanylate cyclase	4.7751157531
+UniRef50_T7IR01: Diguanylate cyclase|g__Escherichia.s__Escherichia_coli	4.7751157531
+UniRef50_Z2DLM8	4.7751064980
+UniRef50_Z2DLM8|unclassified	4.7751064980
+UniRef50_S1CGR6	4.7750062530
+UniRef50_S1CGR6|g__Escherichia.s__Escherichia_coli	4.7750062530
+UniRef50_P76205: Putative ankyrin repeat protein B	4.7735148161
+UniRef50_P76205: Putative ankyrin repeat protein B|g__Escherichia.s__Escherichia_coli	4.7735148161
+UniRef50_A6LS09: PTS system fructose subfamily IIA component	4.7735144003
+UniRef50_A6LS09: PTS system fructose subfamily IIA component|g__Clostridium.s__Clostridium_beijerinckii	4.7735144003
+UniRef50_S5GEI0: Catecholate siderophore receptor CirA	4.7726766327
+UniRef50_S5GEI0: Catecholate siderophore receptor CirA|g__Escherichia.s__Escherichia_coli	4.7726766327
+UniRef50_Q88AR2: Amino-acid acetyltransferase	4.7722656141
+UniRef50_Q88AR2: Amino-acid acetyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7112046424
+UniRef50_Q88AR2: Amino-acid acetyltransferase|unclassified	0.0610609717
+UniRef50_B7UZJ9: Transcriptional regulator MraZ	4.7716080829
+UniRef50_B7UZJ9: Transcriptional regulator MraZ|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7716080829
+UniRef50_W8T6Y6: Mannitol-1-phosphate 5-dehydrogenase	4.7714032511
+UniRef50_W8T6Y6: Mannitol-1-phosphate 5-dehydrogenase|unclassified	4.7714032511
+UniRef50_UPI00036960CA: 50S ribosomal protein L28	4.7703939706
+UniRef50_UPI00036960CA: 50S ribosomal protein L28|unclassified	4.7703939706
+UniRef50_Q6A923: Endo-beta-N-acetylglucosaminidase H	4.7695386225
+UniRef50_Q6A923: Endo-beta-N-acetylglucosaminidase H|g__Propionibacterium.s__Propionibacterium_acnes	4.7695386225
+UniRef50_Q9RSI5	4.7688255064
+UniRef50_Q9RSI5|unclassified	2.4752475248
+UniRef50_Q9RSI5|g__Deinococcus.s__Deinococcus_radiodurans	2.2935779817
+UniRef50_G4LQV7: Short chain dehydrogenase	4.7682664138
+UniRef50_G4LQV7: Short chain dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7682664138
+UniRef50_W8RWR3: Isopropylmalate/homocitrate/citramalate synthase	4.7681718269
+UniRef50_W8RWR3: Isopropylmalate/homocitrate/citramalate synthase|unclassified	4.7681718269
+UniRef50_R5LUL7: Flagellar biosynthesis/type III secretory pathway ATPase FliI	4.7680510416
+UniRef50_R5LUL7: Flagellar biosynthesis/type III secretory pathway ATPase FliI|g__Clostridium.s__Clostridium_beijerinckii	4.7680510416
+UniRef50_Q2IEZ0: Aspartyl/Asparaginyl beta-hydroxylase	4.7677254696
+UniRef50_Q2IEZ0: Aspartyl/Asparaginyl beta-hydroxylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7677254696
+UniRef50_P52644: Heat shock protein HslJ	4.7676414097
+UniRef50_P52644: Heat shock protein HslJ|g__Escherichia.s__Escherichia_coli	4.7676414097
+UniRef50_E3A4Y7	4.7657952070
+UniRef50_E3A4Y7|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7657952070
+UniRef50_UPI0002FE6966: hypothetical protein	4.7654062921
+UniRef50_UPI0002FE6966: hypothetical protein|unclassified	4.7654062921
+UniRef50_Q9RYQ8: Acyl-CoA dehydrogenase, putative	4.7645772113
+UniRef50_Q9RYQ8: Acyl-CoA dehydrogenase, putative|g__Deinococcus.s__Deinococcus_radiodurans	4.7645772113
+UniRef50_C1P620	4.7634290592
+UniRef50_C1P620|unclassified	4.7634290592
+UniRef50_A0A023KKC9	4.7619047619
+UniRef50_A0A023KKC9|g__Escherichia.s__Escherichia_coli	4.7619047619
+UniRef50_D2PRN7: CutC family protein	4.7619047619
+UniRef50_D2PRN7: CutC family protein|g__Propionibacterium.s__Propionibacterium_acnes	4.7619047619
+UniRef50_K4NAR0	4.7619047619
+UniRef50_K4NAR0|g__Helicobacter.s__Helicobacter_pylori	4.7619047619
+UniRef50_L8F3B9	4.7619047619
+UniRef50_L8F3B9|unclassified	4.7619047619
+UniRef50_V8R373: Biopolymer transporter ExbB	4.7619047619
+UniRef50_V8R373: Biopolymer transporter ExbB|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7619047619
+UniRef50_K9NFY1: Glutamine synthetase	4.7608653069
+UniRef50_K9NFY1: Glutamine synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7608653069
+UniRef50_Q1M9M9	4.7591850409
+UniRef50_Q1M9M9|unclassified	4.7591850409
+UniRef50_V9U992	4.7588046607
+UniRef50_V9U992|unclassified	4.7588046607
+UniRef50_C7NA93	4.7577358850
+UniRef50_C7NA93|g__Clostridium.s__Clostridium_beijerinckii	4.7577358850
+UniRef50_D7WL32	4.7567873303
+UniRef50_D7WL32|unclassified	4.7567873303
+UniRef50_I1Y3Y4: Multidrug resistance efflux pump	4.7543335697
+UniRef50_I1Y3Y4: Multidrug resistance efflux pump|g__Acinetobacter.s__Acinetobacter_baumannii	4.7543335697
+UniRef50_D7CGA0	4.7539216621
+UniRef50_D7CGA0|unclassified	4.7539216621
+UniRef50_U6F043: Transposase YhgA family protein	4.7515622568
+UniRef50_U6F043: Transposase YhgA family protein|g__Clostridium.s__Clostridium_beijerinckii	4.7515622568
+UniRef50_E2ZX65	4.7515456457
+UniRef50_E2ZX65|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8879718674
+UniRef50_E2ZX65|unclassified	1.8635737783
+UniRef50_W8TB18	4.7510531919
+UniRef50_W8TB18|g__Escherichia.s__Escherichia_coli	3.5842293907
+UniRef50_W8TB18|unclassified	1.1668238012
+UniRef50_V5SVS2: Membrane protein	4.7509419162
+UniRef50_V5SVS2: Membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7509419162
+UniRef50_F3ZGR7: Putative integrase	4.7505938242
+UniRef50_F3ZGR7: Putative integrase|unclassified	4.7505938242
+UniRef50_G3XDA7: Cell division protein FtsQ	4.7498309669
+UniRef50_G3XDA7: Cell division protein FtsQ|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7498309669
+UniRef50_E6UA31: IstB domain protein ATP-binding protein	4.7492767599
+UniRef50_E6UA31: IstB domain protein ATP-binding protein|g__Clostridium.s__Clostridium_beijerinckii	4.7492767599
+UniRef50_X5KCY6	4.7489100123
+UniRef50_X5KCY6|g__Streptococcus.s__Streptococcus_agalactiae	4.7489100123
+UniRef50_M5ELV0	4.7488999805
+UniRef50_M5ELV0|unclassified	4.7488999805
+UniRef50_A6V3R0: Protease HtpX	4.7487868015
+UniRef50_A6V3R0: Protease HtpX|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7487868015
+UniRef50_R4ZW75: Transcriptional regulator, Cro/CI family	4.7475493212
+UniRef50_R4ZW75: Transcriptional regulator, Cro/CI family|g__Streptococcus.s__Streptococcus_agalactiae	4.7475493212
+UniRef50_K6KS82: Thiamine biosynthesis protein ThiH	4.7474721060
+UniRef50_K6KS82: Thiamine biosynthesis protein ThiH|unclassified	4.7474721060
+UniRef50_X5VBT9	4.7471490489
+UniRef50_X5VBT9|unclassified	4.7471490489
+UniRef50_C4Z0Q8: Galactose-6-phosphate isomerase	4.7451021964
+UniRef50_C4Z0Q8: Galactose-6-phosphate isomerase|g__Streptococcus.s__Streptococcus_agalactiae	4.7451021964
+UniRef50_A4WSW9	4.7449729654
+UniRef50_A4WSW9|unclassified	4.7449729654
+UniRef50_V4JEN2	4.7442320687
+UniRef50_V4JEN2|unclassified	4.7442320687
+UniRef50_A6LYL8: Integral membrane sensor signal transduction histidine kinase	4.7440477870
+UniRef50_A6LYL8: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	4.7440477870
+UniRef50_A5N458: DNA polymerase III subunit beta	4.7432239507
+UniRef50_A5N458: DNA polymerase III subunit beta|g__Clostridium.s__Clostridium_beijerinckii	4.7432239507
+UniRef50_F9Y4J6	4.7421317343
+UniRef50_F9Y4J6|unclassified	4.7421317343
+UniRef50_D5AQX3: PHP domain protein	4.7420076846
+UniRef50_D5AQX3: PHP domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.7420076846
+UniRef50_UPI0004786318: hypothetical protein	4.7412285762
+UniRef50_UPI0004786318: hypothetical protein|unclassified	4.7412285762
+UniRef50_B9KM18: Pyruvate kinase	4.7397581129
+UniRef50_B9KM18: Pyruvate kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.7397581129
+UniRef50_A5IR39	4.7393364929
+UniRef50_A5IR39|g__Staphylococcus.s__Staphylococcus_aureus	4.7393364929
+UniRef50_A8F986: 50S ribosomal protein L4	4.7393364929
+UniRef50_A8F986: 50S ribosomal protein L4|g__Clostridium.s__Clostridium_beijerinckii	4.7393364929
+UniRef50_D4HAP5: Transcriptional regulatory protein, C-terminal domain protein	4.7393364929
+UniRef50_D4HAP5: Transcriptional regulatory protein, C-terminal domain protein|g__Propionibacterium.s__Propionibacterium_acnes	4.7393364929
+UniRef50_G7VSI0	4.7393364929
+UniRef50_G7VSI0|g__Clostridium.s__Clostridium_beijerinckii	4.7393364929
+UniRef50_I0ELI9: DnaA initiator-associating factor for replication initiation HobA	4.7393364929
+UniRef50_I0ELI9: DnaA initiator-associating factor for replication initiation HobA|g__Helicobacter.s__Helicobacter_pylori	4.7393364929
+UniRef50_J9V068	4.7393364929
+UniRef50_J9V068|g__Staphylococcus.s__Staphylococcus_aureus	4.7393364929
+UniRef50_R4KAP5: Ribulose-phosphate 3-epimerase	4.7393364929
+UniRef50_R4KAP5: Ribulose-phosphate 3-epimerase|g__Clostridium.s__Clostridium_beijerinckii	4.7393364929
+UniRef50_S5NXX3	4.7393364929
+UniRef50_S5NXX3|g__Staphylococcus.s__Staphylococcus_aureus	4.7393364929
+UniRef50_Z4X970	4.7393364929
+UniRef50_Z4X970|unclassified	4.7393364929
+UniRef50_J2YES6: Outer membrane protein, OMP85 family	4.7390536570
+UniRef50_J2YES6: Outer membrane protein, OMP85 family|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7390536570
+UniRef50_R9ZDU5: Quinone oxidoreductase	4.7388705364
+UniRef50_R9ZDU5: Quinone oxidoreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7388705364
+UniRef50_A4VKN0: DNA ligase	4.7371942991
+UniRef50_A4VKN0: DNA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7206206541
+UniRef50_A4VKN0: DNA ligase|unclassified	0.0165736450
+UniRef50_V6JBA1	4.7369141933
+UniRef50_V6JBA1|unclassified	4.7369141933
+UniRef50_W1G8X2	4.7368227528
+UniRef50_W1G8X2|unclassified	4.7368227528
+UniRef50_V5T4F5: Toluene tolerance protein	4.7344156747
+UniRef50_V5T4F5: Toluene tolerance protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7344156747
+UniRef50_Q1IYN8	4.7340526852
+UniRef50_Q1IYN8|g__Deinococcus.s__Deinococcus_radiodurans	4.7340526852
+UniRef50_R9D4M6	4.7335094465
+UniRef50_R9D4M6|unclassified	4.7335094465
+UniRef50_Q9HXN1: Membrane-bound lytic murein transglycosylase F	4.7329780653
+UniRef50_Q9HXN1: Membrane-bound lytic murein transglycosylase F|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7329780653
+UniRef50_E0TNV6: Gp34	4.7323526702
+UniRef50_E0TNV6: Gp34|g__Streptococcus.s__Streptococcus_agalactiae	4.7323526702
+UniRef50_T2H287	4.7317711442
+UniRef50_T2H287|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6770488723
+UniRef50_T2H287|unclassified	0.0547222718
+UniRef50_A6M1D1: Phage replisome organizer, putative	4.7315980807
+UniRef50_A6M1D1: Phage replisome organizer, putative|g__Clostridium.s__Clostridium_beijerinckii	4.7315980807
+UniRef50_G7M4H0: GntR domain protein	4.7312205164
+UniRef50_G7M4H0: GntR domain protein|g__Clostridium.s__Clostridium_beijerinckii	4.7312205164
+UniRef50_K2R7H4	4.7296755934
+UniRef50_K2R7H4|unclassified	4.7296755934
+UniRef50_A6M0L7: UPF0249 protein Cbei_4037	4.7294637390
+UniRef50_A6M0L7: UPF0249 protein Cbei_4037|g__Clostridium.s__Clostridium_beijerinckii	4.7294637390
+UniRef50_Q1WVB2: Aspartate carbamoyltransferase	4.7288559104
+UniRef50_Q1WVB2: Aspartate carbamoyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	4.6131626612
+UniRef50_Q1WVB2: Aspartate carbamoyltransferase|unclassified	0.1156932492
+UniRef50_Q890U0: Butyrate kinase	4.7282139846
+UniRef50_Q890U0: Butyrate kinase|g__Clostridium.s__Clostridium_beijerinckii	4.7282139846
+UniRef50_UPI00037D2DA0: hypothetical protein	4.7273078127
+UniRef50_UPI00037D2DA0: hypothetical protein|unclassified	4.7273078127
+UniRef50_B5GM39	4.7249800111
+UniRef50_B5GM39|unclassified	4.7249800111
+UniRef50_E4BJ69: FeoA domain protein	4.7233468286
+UniRef50_E4BJ69: FeoA domain protein|g__Propionibacterium.s__Propionibacterium_acnes	4.7233468286
+UniRef50_Q7VTF7: Nicotinate phosphoribosyltransferase	4.7229957698
+UniRef50_Q7VTF7: Nicotinate phosphoribosyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	4.7229957698
+UniRef50_A0A059IPL7	4.7218989374
+UniRef50_A0A059IPL7|unclassified	4.7218989374
+UniRef50_F2A4F1	4.7216470922
+UniRef50_F2A4F1|unclassified	4.7216470922
+UniRef50_A6M2H1	4.7192616196
+UniRef50_A6M2H1|g__Clostridium.s__Clostridium_beijerinckii	4.7192616196
+UniRef50_A0A023YGU3	4.7187468151
+UniRef50_A0A023YGU3|g__Escherichia.s__Escherichia_coli	4.7187468151
+UniRef50_H5BQ61: Pertactin family protein	4.7186472108
+UniRef50_H5BQ61: Pertactin family protein|g__Escherichia.s__Escherichia_coli	4.7186472108
+UniRef50_A6V3M1	4.7185055769
+UniRef50_A6V3M1|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7185055769
+UniRef50_S6AM82	4.7178168675
+UniRef50_S6AM82|unclassified	4.7178168675
+UniRef50_A6LT56	4.7169811321
+UniRef50_A6LT56|g__Clostridium.s__Clostridium_beijerinckii	4.7169811321
+UniRef50_I8Z2E3	4.7169811321
+UniRef50_I8Z2E3|unclassified	4.7169811321
+UniRef50_O27344: Phosphoribosyl-ATP pyrophosphatase	4.7169811321
+UniRef50_O27344: Phosphoribosyl-ATP pyrophosphatase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.7169811321
+UniRef50_R4RIA6	4.7169811321
+UniRef50_R4RIA6|unclassified	4.7169811321
+UniRef50_T0JAM1	4.7169811321
+UniRef50_T0JAM1|unclassified	4.7169811321
+UniRef50_UPI00036E4B1C: hypothetical protein	4.7169811321
+UniRef50_UPI00036E4B1C: hypothetical protein|unclassified	4.7169811321
+UniRef50_UPI0001913E60: hypothetical protein, partial	4.7163137292
+UniRef50_UPI0001913E60: hypothetical protein, partial|unclassified	4.7163137292
+UniRef50_A8AY72: Glycosyl transferase, family 8 SP1766	4.7159494089
+UniRef50_A8AY72: Glycosyl transferase, family 8 SP1766|g__Streptococcus.s__Streptococcus_agalactiae	4.7159494089
+UniRef50_A6V801	4.7154981626
+UniRef50_A6V801|unclassified	4.7154981626
+UniRef50_F0K7T8: Helix-turn-helix-domain containing protein, AraC type	4.7147516036
+UniRef50_F0K7T8: Helix-turn-helix-domain containing protein, AraC type|g__Clostridium.s__Clostridium_beijerinckii	4.7147516036
+UniRef50_R0DUI7	4.7123190621
+UniRef50_R0DUI7|unclassified	4.7123190621
+UniRef50_Q87EJ9: Divalent metal cation transporter MntH	4.7110366941
+UniRef50_Q87EJ9: Divalent metal cation transporter MntH|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.7110366941
+UniRef50_B4RJX0: DNA polymerase III subunit delta	4.7085884158
+UniRef50_B4RJX0: DNA polymerase III subunit delta|g__Neisseria.s__Neisseria_meningitidis	4.7085884158
+UniRef50_Z4F1F8	4.7084756511
+UniRef50_Z4F1F8|unclassified	4.7084756511
+UniRef50_B9KQ76	4.7062917817
+UniRef50_B9KQ76|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.1250000000
+UniRef50_B9KQ76|unclassified	1.5812917817
+UniRef50_Q9RSF1	4.7056018528
+UniRef50_Q9RSF1|g__Deinococcus.s__Deinococcus_radiodurans	4.7056018528
+UniRef50_A3PN55: OmpA/MotB domain protein	4.7040738699
+UniRef50_A3PN55: OmpA/MotB domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.7040738699
+UniRef50_Q4EF29	4.7040024740
+UniRef50_Q4EF29|unclassified	4.7040024740
+UniRef50_M9VJS8: Cof family hydrolase	4.7034701616
+UniRef50_M9VJS8: Cof family hydrolase|g__Propionibacterium.s__Propionibacterium_acnes	4.7034701616
+UniRef50_W1FF26	4.7032280373
+UniRef50_W1FF26|g__Neisseria.s__Neisseria_meningitidis	2.9850746269
+UniRef50_W1FF26|unclassified	1.7181534104
+UniRef50_A0A021L5W9	4.7030606077
+UniRef50_A0A021L5W9|unclassified	4.7030606077
+UniRef50_B9DRS8: Glycogen synthase	4.7016001710
+UniRef50_B9DRS8: Glycogen synthase|g__Streptococcus.s__Streptococcus_agalactiae	4.7016001710
+UniRef50_D4BTI9: Cardiolipin synthetase	4.7004581498
+UniRef50_D4BTI9: Cardiolipin synthetase|g__Escherichia.s__Escherichia_coli	4.7004581498
+UniRef50_T6MUH9: Signal transduction histidine-protein kinase BarA	4.6976993044
+UniRef50_T6MUH9: Signal transduction histidine-protein kinase BarA|g__Escherichia.s__Escherichia_coli	4.6976993044
+UniRef50_E3I3E7: Enoyl-CoA hydratase/isomerase	4.6970607819
+UniRef50_E3I3E7: Enoyl-CoA hydratase/isomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.6970607819
+UniRef50_C5MZ24	4.6957715654
+UniRef50_C5MZ24|unclassified	4.6957715654
+UniRef50_A6LYM0: Antibiotic transport-associated permease SpaG/MutG	4.6954950543
+UniRef50_A6LYM0: Antibiotic transport-associated permease SpaG/MutG|g__Clostridium.s__Clostridium_beijerinckii	4.6954950543
+UniRef50_A3CK04	4.6948356808
+UniRef50_A3CK04|g__Streptococcus.s__Streptococcus_mutans	4.6948356808
+UniRef50_C7W7E1: Predicted protein	4.6948356808
+UniRef50_C7W7E1: Predicted protein|unclassified	4.6948356808
+UniRef50_M7DK27	4.6948356808
+UniRef50_M7DK27|g__Streptococcus.s__Streptococcus_mutans	4.6948356808
+UniRef50_P0ACH0: Heat shock protein 15	4.6948356808
+UniRef50_P0ACH0: Heat shock protein 15|g__Escherichia.s__Escherichia_coli	4.6948356808
+UniRef50_P64469: OriC-binding nucleoid-associated protein	4.6948356808
+UniRef50_P64469: OriC-binding nucleoid-associated protein|g__Escherichia.s__Escherichia_coli	4.6948356808
+UniRef50_R4XWC0	4.6948356808
+UniRef50_R4XWC0|unclassified	4.6948356808
+UniRef50_W1GN05: Cytochrome d ubiquinol oxidase subunit I	4.6948356808
+UniRef50_W1GN05: Cytochrome d ubiquinol oxidase subunit I|g__Escherichia.s__Escherichia_coli	4.6948356808
+UniRef50_UPI000473C32B: branched-chain amino acid aminotransferase, partial	4.6927569228
+UniRef50_UPI000473C32B: branched-chain amino acid aminotransferase, partial|unclassified	4.6927569228
+UniRef50_D3QTK9	4.6913494188
+UniRef50_D3QTK9|g__Escherichia.s__Escherichia_coli	4.5370384159
+UniRef50_D3QTK9|unclassified	0.1543110029
+UniRef50_UPI0003EF5726: hypothetical protein	4.6905229407
+UniRef50_UPI0003EF5726: hypothetical protein|unclassified	4.6905229407
+UniRef50_UPI000360D163: hypothetical protein	4.6904419179
+UniRef50_UPI000360D163: hypothetical protein|unclassified	4.6904419179
+UniRef50_C5D069	4.6902810703
+UniRef50_C5D069|unclassified	4.6902810703
+UniRef50_Q8XJ76: Phenylalanine--tRNA ligase beta subunit	4.6890916230
+UniRef50_Q8XJ76: Phenylalanine--tRNA ligase beta subunit|g__Clostridium.s__Clostridium_beijerinckii	4.6890916230
+UniRef50_Q47269	4.6888950969
+UniRef50_Q47269|g__Escherichia.s__Escherichia_coli	4.6888950969
+UniRef50_A8ML82: Probable endonuclease 4	4.6880890846
+UniRef50_A8ML82: Probable endonuclease 4|g__Clostridium.s__Clostridium_beijerinckii	4.6880890846
+UniRef50_Q97IA9: UPF0348 protein CA_C1741	4.6868909427
+UniRef50_Q97IA9: UPF0348 protein CA_C1741|g__Clostridium.s__Clostridium_beijerinckii	4.6868909427
+UniRef50_Q8DZB5: Membrane protein, putative	4.6864418243
+UniRef50_Q8DZB5: Membrane protein, putative|g__Streptococcus.s__Streptococcus_agalactiae	4.6208786535
+UniRef50_Q8DZB5: Membrane protein, putative|unclassified	0.0655631707
+UniRef50_A8ISU7: Predicted protein	4.6851824190
+UniRef50_A8ISU7: Predicted protein|unclassified	4.6851824190
+UniRef50_F8LHA2: Acetyltransferase, including N-acetylase of ribosomal protein	4.6844593316
+UniRef50_F8LHA2: Acetyltransferase, including N-acetylase of ribosomal protein|g__Streptococcus.s__Streptococcus_mutans	4.6844593316
+UniRef50_M9VG81: Glycosyl hydrolase family 20, catalytic domain protein	4.6841828700
+UniRef50_M9VG81: Glycosyl hydrolase family 20, catalytic domain protein|g__Propionibacterium.s__Propionibacterium_acnes	4.6841828700
+UniRef50_D2UPM2: SdrD protein (Fragment)	4.6840095338
+UniRef50_D2UPM2: SdrD protein (Fragment)|g__Staphylococcus.s__Staphylococcus_epidermidis	4.5050729066
+UniRef50_D2UPM2: SdrD protein (Fragment)|unclassified	0.1789366272
+UniRef50_P00561: Bifunctional aspartokinase/homoserine dehydrogenase 1	4.6828163215
+UniRef50_P00561: Bifunctional aspartokinase/homoserine dehydrogenase 1|g__Escherichia.s__Escherichia_coli	4.6828163215
+UniRef50_H0DPS9: Gram positive anchor	4.6820351857
+UniRef50_H0DPS9: Gram positive anchor|g__Staphylococcus.s__Staphylococcus_epidermidis	4.6820351857
+UniRef50_G5LKS8: Chaperone protein DnaK	4.6810192457
+UniRef50_G5LKS8: Chaperone protein DnaK|g__Escherichia.s__Escherichia_coli	4.6810192457
+UniRef50_G7M5A0	4.6809756673
+UniRef50_G7M5A0|g__Clostridium.s__Clostridium_beijerinckii	4.6809756673
+UniRef50_L1KBS6	4.6806310274
+UniRef50_L1KBS6|unclassified	4.6806310274
+UniRef50_R6W8A5	4.6795006031
+UniRef50_R6W8A5|unclassified	4.6795006031
+UniRef50_L5UXA6: Glycosyl transferase, group 2 family protein	4.6789643764
+UniRef50_L5UXA6: Glycosyl transferase, group 2 family protein|g__Neisseria.s__Neisseria_meningitidis	4.6789643764
+UniRef50_Q16BE2	4.6789566171
+UniRef50_Q16BE2|unclassified	4.6789566171
+UniRef50_Q8FB43	4.6784201714
+UniRef50_Q8FB43|g__Escherichia.s__Escherichia_coli	4.6784201714
+UniRef50_UPI000467C3AD: tRNA-binding protein	4.6768914961
+UniRef50_UPI000467C3AD: tRNA-binding protein|unclassified	4.6768914961
+UniRef50_G2PHT8	4.6767144241
+UniRef50_G2PHT8|unclassified	4.6767144241
+UniRef50_A9E741: Acyl carrier protein	4.6755069972
+UniRef50_A9E741: Acyl carrier protein|unclassified	4.6755069972
+UniRef50_C9U0N0: Acyl-CoA dehydrogenase	4.6754159461
+UniRef50_C9U0N0: Acyl-CoA dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6754159461
+UniRef50_Q9RSH0: Amino acid ABC transporter, periplasmic amino acid-binding protein	4.6740641015
+UniRef50_Q9RSH0: Amino acid ABC transporter, periplasmic amino acid-binding protein|g__Deinococcus.s__Deinococcus_radiodurans	4.6740641015
+UniRef50_E2QHF8: 2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase	4.6732867703
+UniRef50_E2QHF8: 2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase|g__Escherichia.s__Escherichia_coli	4.6732867703
+UniRef50_T2E7D0: Inner membrane transport protein RhmT	4.6731590487
+UniRef50_T2E7D0: Inner membrane transport protein RhmT|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6731590487
+UniRef50_A4WWD7	4.6728971963
+UniRef50_A4WWD7|unclassified	4.6728971963
+UniRef50_A6LSS2	4.6728971963
+UniRef50_A6LSS2|g__Clostridium.s__Clostridium_beijerinckii	4.6728971963
+UniRef50_A8AJI8: Citrate lyase acyl carrier protein	4.6728971963
+UniRef50_A8AJI8: Citrate lyase acyl carrier protein|g__Escherichia.s__Escherichia_coli	4.6728971963
+UniRef50_D3E2F9: Ribosomal protein L32e Rpl32e	4.6728971963
+UniRef50_D3E2F9: Ribosomal protein L32e Rpl32e|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.6728971963
+UniRef50_D5ALK4	4.6728971963
+UniRef50_D5ALK4|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.6728971963
+UniRef50_I6RX31	4.6728971963
+UniRef50_I6RX31|unclassified	4.6728971963
+UniRef50_Q6FER0: Sec-independent protein translocase protein TatB	4.6728971963
+UniRef50_Q6FER0: Sec-independent protein translocase protein TatB|g__Acinetobacter.s__Acinetobacter_baumannii	4.6728971963
+UniRef50_J2IFF4: Na+/H+ antiporter	4.6719564113
+UniRef50_J2IFF4: Na+/H+ antiporter|unclassified	4.6719564113
+UniRef50_D5RTW4	4.6681655799
+UniRef50_D5RTW4|unclassified	4.6681655799
+UniRef50_I4Y1C8: RNA polymerase sigma factor, sigma-70 family	4.6676786295
+UniRef50_I4Y1C8: RNA polymerase sigma factor, sigma-70 family|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6676786295
+UniRef50_A1WN39: Mg chelatase, subunit ChlI	4.6676761546
+UniRef50_A1WN39: Mg chelatase, subunit ChlI|g__Neisseria.s__Neisseria_meningitidis	4.6676761546
+UniRef50_V4R4P9: Amino acid ABC transporter substrate-binding protein	4.6676562475
+UniRef50_V4R4P9: Amino acid ABC transporter substrate-binding protein|unclassified	4.6676562475
+UniRef50_C2SNG9	4.6647492476
+UniRef50_C2SNG9|unclassified	4.6647492476
+UniRef50_V5A3C8	4.6641791045
+UniRef50_V5A3C8|unclassified	4.6641791045
+UniRef50_E4L4M2: SNF2 family protein	4.6638106595
+UniRef50_E4L4M2: SNF2 family protein|g__Streptococcus.s__Streptococcus_agalactiae	4.6638106595
+UniRef50_A4VMC0	4.6628530677
+UniRef50_A4VMC0|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9370078740
+UniRef50_A4VMC0|unclassified	0.7258451937
+UniRef50_A0K8T5: Transcriptional regulator, LysR family	4.6620300321
+UniRef50_A0K8T5: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6620300321
+UniRef50_A0RGP9: DNA mismatch repair protein	4.6592446224
+UniRef50_A0RGP9: DNA mismatch repair protein|g__Clostridium.s__Clostridium_beijerinckii	4.6592446224
+UniRef50_A6LSZ1: Lipase	4.6590220616
+UniRef50_A6LSZ1: Lipase|g__Clostridium.s__Clostridium_beijerinckii	4.6590220616
+UniRef50_A0A030TPT1	4.6568728507
+UniRef50_A0A030TPT1|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6568728507
+UniRef50_V5SUI3: Cobaltochelatase	4.6557446509
+UniRef50_V5SUI3: Cobaltochelatase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6557446509
+UniRef50_B9KYR9: Polyribonucleotide nucleotidyltransferase	4.6544045628
+UniRef50_B9KYR9: Polyribonucleotide nucleotidyltransferase|g__Clostridium.s__Clostridium_beijerinckii	4.6288142088
+UniRef50_B9KYR9: Polyribonucleotide nucleotidyltransferase|unclassified	0.0255903540
+UniRef50_N1YWU7	4.6532553437
+UniRef50_N1YWU7|g__Staphylococcus.s__Staphylococcus_aureus	4.4052863436
+UniRef50_N1YWU7|unclassified	0.2479690001
+UniRef50_Q3K9C8: Ribosomal RNA large subunit methyltransferase M	4.6530996186
+UniRef50_Q3K9C8: Ribosomal RNA large subunit methyltransferase M|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6077169079
+UniRef50_Q3K9C8: Ribosomal RNA large subunit methyltransferase M|unclassified	0.0453827107
+UniRef50_U5MVL7: Low specificity L-threonine aldolase LtaE	4.6523894381
+UniRef50_U5MVL7: Low specificity L-threonine aldolase LtaE|g__Clostridium.s__Clostridium_beijerinckii	4.6523894381
+UniRef50_B7UYR5	4.6522863641
+UniRef50_B7UYR5|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7160185955
+UniRef50_B7UYR5|unclassified	0.9362677686
+UniRef50_C8MJ83	4.6511627907
+UniRef50_C8MJ83|g__Staphylococcus.s__Staphylococcus_aureus	4.6511627907
+UniRef50_H6MFE3	4.6511627907
+UniRef50_H6MFE3|g__Escherichia.s__Escherichia_coli	4.6511627907
+UniRef50_M2IPD3	4.6511627907
+UniRef50_M2IPD3|g__Streptococcus.s__Streptococcus_mutans	4.6511627907
+UniRef50_M9F783	4.6511627907
+UniRef50_M9F783|g__Escherichia.s__Escherichia_coli	4.6511627907
+UniRef50_S4X274	4.6511627907
+UniRef50_S4X274|g__Staphylococcus.s__Staphylococcus_aureus	4.6511627907
+UniRef50_B9DZE4: UPF0229 protein CKR_0568	4.6500231471
+UniRef50_B9DZE4: UPF0229 protein CKR_0568|g__Clostridium.s__Clostridium_beijerinckii	4.6500231471
+UniRef50_A6LR18: ABC-type nitrate/sulfonate/bicarbonate transport systems periplasmic components-like protein	4.6497608545
+UniRef50_A6LR18: ABC-type nitrate/sulfonate/bicarbonate transport systems periplasmic components-like protein|g__Clostridium.s__Clostridium_beijerinckii	4.6497608545
+UniRef50_A6M0V7: Dihydroxy-acid dehydratase	4.6482130267
+UniRef50_A6M0V7: Dihydroxy-acid dehydratase|g__Clostridium.s__Clostridium_beijerinckii	4.6482130267
+UniRef50_A1U404: Type II secretion system protein E	4.6477107175
+UniRef50_A1U404: Type II secretion system protein E|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6477107175
+UniRef50_A6LYW5	4.6465545560
+UniRef50_A6LYW5|g__Clostridium.s__Clostridium_beijerinckii	4.6465545560
+UniRef50_N4K7E1: Intergenic-region domain protein	4.6465357933
+UniRef50_N4K7E1: Intergenic-region domain protein|g__Escherichia.s__Escherichia_coli	4.3859649123
+UniRef50_N4K7E1: Intergenic-region domain protein|unclassified	0.2605708810
+UniRef50_A1S9Z4: Oxidoreductase, GMC family	4.6461082349
+UniRef50_A1S9Z4: Oxidoreductase, GMC family|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6461082349
+UniRef50_Q2T0P1: Xylulokinase	4.6459241034
+UniRef50_Q2T0P1: Xylulokinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.6459241034
+UniRef50_U5MNB4: ComEC/Rec2-like protein	4.6453029332
+UniRef50_U5MNB4: ComEC/Rec2-like protein|g__Clostridium.s__Clostridium_beijerinckii	4.6453029332
+UniRef50_M1LR90: Pleiotropic regulatory protein DegT	4.6451110070
+UniRef50_M1LR90: Pleiotropic regulatory protein DegT|g__Clostridium.s__Clostridium_beijerinckii	4.6451110070
+UniRef50_A0A038FK84: Hydrogenase maturation protein	4.6441933101
+UniRef50_A0A038FK84: Hydrogenase maturation protein|unclassified	4.6441933101
+UniRef50_A6M2Q2: Phage replisome organizer, putative	4.6439177393
+UniRef50_A6M2Q2: Phage replisome organizer, putative|g__Clostridium.s__Clostridium_beijerinckii	4.6439177393
+UniRef50_C3MCY7: Formamidopyrimidine-DNA glycosylase	4.6434211192
+UniRef50_C3MCY7: Formamidopyrimidine-DNA glycosylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.6434211192
+UniRef50_Q72I44: Maltose/maltodextrin-binding protein	4.6429667899
+UniRef50_Q72I44: Maltose/maltodextrin-binding protein|g__Deinococcus.s__Deinococcus_radiodurans	4.6429667899
+UniRef50_G7MBY5: ABC transporter related protein	4.6419698099
+UniRef50_G7MBY5: ABC transporter related protein|g__Clostridium.s__Clostridium_beijerinckii	4.6419698099
+UniRef50_V6DNG5	4.6418640814
+UniRef50_V6DNG5|unclassified	4.6418640814
+UniRef50_B1QWY3	4.6414931940
+UniRef50_B1QWY3|g__Clostridium.s__Clostridium_beijerinckii	4.6414931940
+UniRef50_C9CRT7	4.6408035622
+UniRef50_C9CRT7|unclassified	4.6408035622
+UniRef50_D7GD43: Deoxyguanosinetriphosphate triphosphohydrolase (DGTPase)	4.6407586573
+UniRef50_D7GD43: Deoxyguanosinetriphosphate triphosphohydrolase (DGTPase)|g__Propionibacterium.s__Propionibacterium_acnes	4.6407586573
+UniRef50_M4WVA9	4.6403124387
+UniRef50_M4WVA9|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6403124387
+UniRef50_UPI0004678EBB: deoxyguanosinetriphosphate triphosphohydrolase	4.6402129609
+UniRef50_UPI0004678EBB: deoxyguanosinetriphosphate triphosphohydrolase|unclassified	4.6402129609
+UniRef50_Q54TC2: Alcohol dehydrogenase class-3	4.6401193348
+UniRef50_Q54TC2: Alcohol dehydrogenase class-3|g__Acinetobacter.s__Acinetobacter_baumannii	4.5812149285
+UniRef50_Q54TC2: Alcohol dehydrogenase class-3|unclassified	0.0589044062
+UniRef50_V9UBT6: Permease of the major facilitator superfamily	4.6378478437
+UniRef50_V9UBT6: Permease of the major facilitator superfamily|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6378478437
+UniRef50_Q7D3U7: ABC transporter, nucleotide binding/ATPase protein	4.6377745022
+UniRef50_Q7D3U7: ABC transporter, nucleotide binding/ATPase protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.6377745022
+UniRef50_W6EXE3: Raffinose transport system permease protein	4.6377403510
+UniRef50_W6EXE3: Raffinose transport system permease protein|g__Clostridium.s__Clostridium_beijerinckii	4.6377403510
+UniRef50_G0K1E8: Oxygen-independent coproporphyrinogen III oxidase	4.6366437402
+UniRef50_G0K1E8: Oxygen-independent coproporphyrinogen III oxidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1551622587
+UniRef50_G0K1E8: Oxygen-independent coproporphyrinogen III oxidase|g__Acinetobacter.s__Acinetobacter_baumannii	1.4814814815
+UniRef50_E8P9H9	4.6364322307
+UniRef50_E8P9H9|g__Acinetobacter.s__Acinetobacter_baumannii	4.6364322307
+UniRef50_UPI000474352D: glyoxalase I, partial	4.6361880797
+UniRef50_UPI000474352D: glyoxalase I, partial|unclassified	4.6361880797
+UniRef50_V6FRW4: Peptidase, S9A prolyl oligopeptidase family, N-terminal beta-propeller domain protein	4.6349571666
+UniRef50_V6FRW4: Peptidase, S9A prolyl oligopeptidase family, N-terminal beta-propeller domain protein|g__Escherichia.s__Escherichia_coli	4.6349571666
+UniRef50_UPI00018511B4: acetoin utilization protein AcuA	4.6347872449
+UniRef50_UPI00018511B4: acetoin utilization protein AcuA|unclassified	4.6347872449
+UniRef50_F6AEX6: Transposase	4.6345950942
+UniRef50_F6AEX6: Transposase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6345950942
+UniRef50_G7M7C0: Cell wall binding repeat-containing protein	4.6345006067
+UniRef50_G7M7C0: Cell wall binding repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	4.6345006067
+UniRef50_V9AYY5: Phosphomethylpyrimidine synthase	4.6342509394
+UniRef50_V9AYY5: Phosphomethylpyrimidine synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6342509394
+UniRef50_G5P4U0: Potassium efflux system KefA	4.6339687133
+UniRef50_G5P4U0: Potassium efflux system KefA|g__Escherichia.s__Escherichia_coli	4.6339687133
+UniRef50_C6XKW1: Cytochrome c-type biogenesis protein CcmB	4.6338272670
+UniRef50_C6XKW1: Cytochrome c-type biogenesis protein CcmB|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2519311560
+UniRef50_C6XKW1: Cytochrome c-type biogenesis protein CcmB|unclassified	0.3818961111
+UniRef50_E6MUI1: Transposase for insertion sequence element IS4351	4.6330565925
+UniRef50_E6MUI1: Transposase for insertion sequence element IS4351|g__Neisseria.s__Neisseria_meningitidis	4.6330565925
+UniRef50_A4VL61: CmaX protein	4.6316613615
+UniRef50_A4VL61: CmaX protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6316613615
+UniRef50_F5Y9N5: CoxE family protein	4.6316322616
+UniRef50_F5Y9N5: CoxE family protein|g__Clostridium.s__Clostridium_beijerinckii	4.6316322616
+UniRef50_Q39LA7: Acyl-CoA dehydrogenase-like protein	4.6308343500
+UniRef50_Q39LA7: Acyl-CoA dehydrogenase-like protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6308343500
+UniRef50_A3PS53: Hemolysin-type calcium-binding region	4.6307123255
+UniRef50_A3PS53: Hemolysin-type calcium-binding region|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.6307123255
+UniRef50_A1JMK2: Translation initiation factor IF-3	4.6296296296
+UniRef50_A1JMK2: Translation initiation factor IF-3|g__Escherichia.s__Escherichia_coli	4.6296296296
+UniRef50_A5IPK7	4.6296296296
+UniRef50_A5IPK7|g__Staphylococcus.s__Staphylococcus_aureus	4.6296296296
+UniRef50_K2BT75	4.6296296296
+UniRef50_K2BT75|unclassified	4.6296296296
+UniRef50_K6TZB8	4.6296296296
+UniRef50_K6TZB8|g__Clostridium.s__Clostridium_beijerinckii	4.6296296296
+UniRef50_P0C5W3: Transposase InsC for insertion element IS2A/D/F/H/I/K	4.6296296296
+UniRef50_P0C5W3: Transposase InsC for insertion element IS2A/D/F/H/I/K|g__Escherichia.s__Escherichia_coli	4.6296296296
+UniRef50_Q6GAC4: UPF0356 protein SAS1025	4.6296296296
+UniRef50_Q6GAC4: UPF0356 protein SAS1025|g__Staphylococcus.s__Staphylococcus_aureus	4.6296296296
+UniRef50_R5H1H3: Zinc finger protein	4.6296296296
+UniRef50_R5H1H3: Zinc finger protein|g__Clostridium.s__Clostridium_beijerinckii	4.6296296296
+UniRef50_W8SW86	4.6296296296
+UniRef50_W8SW86|g__Escherichia.s__Escherichia_coli	4.6296296296
+UniRef50_D8JG12: Copper resistance protein A	4.6292398156
+UniRef50_D8JG12: Copper resistance protein A|g__Acinetobacter.s__Acinetobacter_baumannii	4.6292398156
+UniRef50_UPI000225EED0: hypothetical protein	4.6287179436
+UniRef50_UPI000225EED0: hypothetical protein|unclassified	4.6287179436
+UniRef50_B2TIV3: Phospholipase, patatin family	4.6281433922
+UniRef50_B2TIV3: Phospholipase, patatin family|g__Clostridium.s__Clostridium_beijerinckii	4.6281433922
+UniRef50_A5UDU8	4.6273272431
+UniRef50_A5UDU8|g__Escherichia.s__Escherichia_coli	4.6273272431
+UniRef50_UPI00046310F9: pseudoazurin	4.6267082106
+UniRef50_UPI00046310F9: pseudoazurin|unclassified	4.6267082106
+UniRef50_R4ZBM2	4.6265979458
+UniRef50_R4ZBM2|g__Streptococcus.s__Streptococcus_agalactiae	4.6265979458
+UniRef50_D4HA31: D-alanyl-D-alanine carboxypeptidase/D-alanyl-D-alanine-endopeptidase	4.6260909864
+UniRef50_D4HA31: D-alanyl-D-alanine carboxypeptidase/D-alanyl-D-alanine-endopeptidase|g__Propionibacterium.s__Propionibacterium_acnes	4.6260909864
+UniRef50_G0HC44: Adenylosuccinate lyase	4.6259695907
+UniRef50_G0HC44: Adenylosuccinate lyase|g__Propionibacterium.s__Propionibacterium_acnes	4.6259695907
+UniRef50_UPI000377B861: hypothetical protein	4.6258976673
+UniRef50_UPI000377B861: hypothetical protein|unclassified	4.6258976673
+UniRef50_B7LMV8	4.6255264282
+UniRef50_B7LMV8|unclassified	4.6255264282
+UniRef50_UPI00030FA365: hypothetical protein	4.6254781421
+UniRef50_UPI00030FA365: hypothetical protein|unclassified	4.6254781421
+UniRef50_L0KY29	4.6250272200
+UniRef50_L0KY29|g__Streptococcus.s__Streptococcus_agalactiae	4.6250272200
+UniRef50_N4UTL9	4.6240902807
+UniRef50_N4UTL9|unclassified	4.6240902807
+UniRef50_Q12PV1: SsrA-binding protein	4.6214043993
+UniRef50_Q12PV1: SsrA-binding protein|g__Escherichia.s__Escherichia_coli	4.6214043993
+UniRef50_A4VFR5: Ribonucleoside-diphosphate reductase	4.6201792453
+UniRef50_A4VFR5: Ribonucleoside-diphosphate reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6201792453
+UniRef50_K0SLX3	4.6189376443
+UniRef50_K0SLX3|unclassified	4.6189376443
+UniRef50_X4ZHJ1: Methionine import ATP-binding protein MetN	4.6187646730
+UniRef50_X4ZHJ1: Methionine import ATP-binding protein MetN|g__Acinetobacter.s__Acinetobacter_baumannii	4.6187646730
+UniRef50_Q2CBA4	4.6185787563
+UniRef50_Q2CBA4|unclassified	4.6185787563
+UniRef50_UPI00047D33DB: hypothetical protein	4.6181221946
+UniRef50_UPI00047D33DB: hypothetical protein|unclassified	4.6181221946
+UniRef50_A0A021VTG9	4.6169521916
+UniRef50_A0A021VTG9|unclassified	4.6169521916
+UniRef50_S5XWD9	4.6160533007
+UniRef50_S5XWD9|unclassified	4.6160533007
+UniRef50_K1CTK9: Exoribonuclease RNase R (Fragment)	4.6154844674
+UniRef50_K1CTK9: Exoribonuclease RNase R (Fragment)|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6154844674
+UniRef50_T0ZIX4	4.6145491022
+UniRef50_T0ZIX4|unclassified	4.6145491022
+UniRef50_G8B031	4.6142040975
+UniRef50_G8B031|unclassified	4.6142040975
+UniRef50_B2TK25: Ribosomal-protein-alanine acetyltransferase	4.6141073538
+UniRef50_B2TK25: Ribosomal-protein-alanine acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	4.6141073538
+UniRef50_A6V6Y5	4.6137635965
+UniRef50_A6V6Y5|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6137635965
+UniRef50_A6LWB2: Integral membrane sensor signal transduction histidine kinase	4.6135966237
+UniRef50_A6LWB2: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	4.6135966237
+UniRef50_UPI000289E091: 6-pyruvoyl-tetrahydropterin synthase	4.6132496596
+UniRef50_UPI000289E091: 6-pyruvoyl-tetrahydropterin synthase|unclassified	4.6132496596
+UniRef50_I1ZNS6: Cation efflux protein	4.6132335346
+UniRef50_I1ZNS6: Cation efflux protein|g__Streptococcus.s__Streptococcus_agalactiae	4.6132335346
+UniRef50_A6V3Q5: Major facilitator superfamily MFS_1	4.6114294414
+UniRef50_A6V3Q5: Major facilitator superfamily MFS_1|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6114294414
+UniRef50_Q1J212: Peptide chain release factor 2	4.6113187122
+UniRef50_Q1J212: Peptide chain release factor 2|g__Deinococcus.s__Deinococcus_radiodurans	4.6113187122
+UniRef50_A6LUW0: Dihydropyrimidinase	4.6107949163
+UniRef50_A6LUW0: Dihydropyrimidinase|g__Clostridium.s__Clostridium_beijerinckii	4.6107949163
+UniRef50_A0A024ED89: AsnC family transcriptional regulator	4.6107044396
+UniRef50_A0A024ED89: AsnC family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6107044396
+UniRef50_F0YBW7: Expressed protein (Fragment)	4.6103982277
+UniRef50_F0YBW7: Expressed protein (Fragment)|unclassified	4.6103982277
+UniRef50_M0FQF4	4.6097279879
+UniRef50_M0FQF4|unclassified	4.6097279879
+UniRef50_A6U3Y7	4.6082949309
+UniRef50_A6U3Y7|g__Staphylococcus.s__Staphylococcus_aureus	4.6082949309
+UniRef50_B9DXD9	4.6082949309
+UniRef50_B9DXD9|g__Clostridium.s__Clostridium_beijerinckii	4.6082949309
+UniRef50_D6S8T9	4.6082949309
+UniRef50_D6S8T9|g__Escherichia.s__Escherichia_coli	4.6082949309
+UniRef50_E6M7L3	4.6082949309
+UniRef50_E6M7L3|unclassified	4.6082949309
+UniRef50_F0KC60	4.6082949309
+UniRef50_F0KC60|g__Clostridium.s__Clostridium_beijerinckii	4.6082949309
+UniRef50_M4JLR5	4.6082949309
+UniRef50_M4JLR5|g__Escherichia.s__Escherichia_coli	4.6082949309
+UniRef50_Q1R9C6	4.6082949309
+UniRef50_Q1R9C6|unclassified	4.6082949309
+UniRef50_Q57653	4.6082949309
+UniRef50_Q57653|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.6082949309
+UniRef50_T6Y5A2	4.6082949309
+UniRef50_T6Y5A2|g__Escherichia.s__Escherichia_coli	4.6082949309
+UniRef50_UPI0003648F04: hypothetical protein	4.6082949309
+UniRef50_UPI0003648F04: hypothetical protein|unclassified	4.6082949309
+UniRef50_V4QFN1	4.6082949309
+UniRef50_V4QFN1|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6082949309
+UniRef50_I2BNI4: DNA-binding response regulator, OmpR family	4.6081917438
+UniRef50_I2BNI4: DNA-binding response regulator, OmpR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6081917438
+UniRef50_E1VQ88: Transcriptional regulator	4.6080702927
+UniRef50_E1VQ88: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6080702927
+UniRef50_K2I9E3: NnrU family protein	4.6079169496
+UniRef50_K2I9E3: NnrU family protein|unclassified	4.6079169496
+UniRef50_Q9I2H6: Ribosomal-protein-alanine acetyltransferase	4.6064893257
+UniRef50_Q9I2H6: Ribosomal-protein-alanine acetyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6064893257
+UniRef50_F5RE08	4.6055735736
+UniRef50_F5RE08|unclassified	4.6055735736
+UniRef50_UPI0003C1A241: PREDICTED: RNA-binding protein with serine-rich domain 1-like isoform X3	4.6041424207
+UniRef50_UPI0003C1A241: PREDICTED: RNA-binding protein with serine-rich domain 1-like isoform X3|unclassified	4.6041424207
+UniRef50_Q9ZKX6: Putative	4.6041073391
+UniRef50_Q9ZKX6: Putative|g__Helicobacter.s__Helicobacter_pylori	4.6041073391
+UniRef50_U0CGA3: Terminase small subunit	4.6039030424
+UniRef50_U0CGA3: Terminase small subunit|g__Escherichia.s__Escherichia_coli	4.6039030424
+UniRef50_Q892S8: Deoxyguanosinetriphosphate triphosphohydrolase-like protein	4.6032336394
+UniRef50_Q892S8: Deoxyguanosinetriphosphate triphosphohydrolase-like protein|g__Clostridium.s__Clostridium_beijerinckii	4.6032336394
+UniRef50_B9KUT5	4.6023739834
+UniRef50_B9KUT5|unclassified	4.6023739834
+UniRef50_R5TH42	4.6021424308
+UniRef50_R5TH42|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.6021424308
+UniRef50_P08550: Colicin V production protein	4.6018111036
+UniRef50_P08550: Colicin V production protein|g__Escherichia.s__Escherichia_coli	4.6018111036
+UniRef50_A4VYI2: Transcription-repair-coupling factor	4.6012293659
+UniRef50_A4VYI2: Transcription-repair-coupling factor|g__Streptococcus.s__Streptococcus_agalactiae	4.6012293659
+UniRef50_U5RSM0	4.6012269939
+UniRef50_U5RSM0|g__Clostridium.s__Clostridium_beijerinckii	4.6012269939
+UniRef50_Q8E1E3	4.6010975095
+UniRef50_Q8E1E3|g__Streptococcus.s__Streptococcus_agalactiae	4.6010975095
+UniRef50_UPI0002E1067F: MULTISPECIES: hypothetical protein	4.6002611759
+UniRef50_UPI0002E1067F: MULTISPECIES: hypothetical protein|unclassified	4.6002611759
+UniRef50_G4LDB9: GGDEF domain-containing protein	4.5986276455
+UniRef50_G4LDB9: GGDEF domain-containing protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5986276455
+UniRef50_B2V232: Flagellar export protein FliJ	4.5977011494
+UniRef50_B2V232: Flagellar export protein FliJ|g__Clostridium.s__Clostridium_beijerinckii	4.5977011494
+UniRef50_Q9HVZ2	4.5973170135
+UniRef50_Q9HVZ2|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5973170135
+UniRef50_G5QVZ1	4.5953372045
+UniRef50_G5QVZ1|unclassified	4.5953372045
+UniRef50_A7ZPI9	4.5948717949
+UniRef50_A7ZPI9|unclassified	4.5948717949
+UniRef50_UPI000349AE8A: hypothetical protein	4.5942334143
+UniRef50_UPI000349AE8A: hypothetical protein|unclassified	4.5942334143
+UniRef50_B8CXG6: Probable transcriptional regulatory protein Hore_12350	4.5934489403
+UniRef50_B8CXG6: Probable transcriptional regulatory protein Hore_12350|g__Clostridium.s__Clostridium_beijerinckii	4.5934489403
+UniRef50_F4DRP3	4.5928527776
+UniRef50_F4DRP3|unclassified	4.5928527776
+UniRef50_M1MHF4: YibE/F family protein	4.5924145926
+UniRef50_M1MHF4: YibE/F family protein|g__Clostridium.s__Clostridium_beijerinckii	4.5924145926
+UniRef50_Q8K7S6: Ribonuclease J 2	4.5879997374
+UniRef50_Q8K7S6: Ribonuclease J 2|g__Streptococcus.s__Streptococcus_agalactiae	4.5879997374
+UniRef50_W5VD93	4.5878215392
+UniRef50_W5VD93|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3895130993
+UniRef50_W5VD93|unclassified	0.1983084398
+UniRef50_A3CP26	4.5871559633
+UniRef50_A3CP26|g__Streptococcus.s__Streptococcus_mutans	4.5871559633
+UniRef50_B9TKX9	4.5871559633
+UniRef50_B9TKX9|unclassified	4.5871559633
+UniRef50_C2Q309: MazG nucleotide pyrophosphohydrolase	4.5871559633
+UniRef50_C2Q309: MazG nucleotide pyrophosphohydrolase|g__Streptococcus.s__Streptococcus_agalactiae	4.5871559633
+UniRef50_C4NUT7	4.5871559633
+UniRef50_C4NUT7|g__Acinetobacter.s__Acinetobacter_baumannii	4.5871559633
+UniRef50_D8GTP4: Predicted methyl-accepting chemotaxis protein	4.5871559633
+UniRef50_D8GTP4: Predicted methyl-accepting chemotaxis protein|g__Clostridium.s__Clostridium_beijerinckii	4.5871559633
+UniRef50_Q5HRB4	4.5871559633
+UniRef50_Q5HRB4|g__Staphylococcus.s__Staphylococcus_epidermidis	4.5871559633
+UniRef50_Q5WBR2: A component PTS system diacetylchitobiose-specific enzyme II	4.5871559633
+UniRef50_Q5WBR2: A component PTS system diacetylchitobiose-specific enzyme II|g__Clostridium.s__Clostridium_beijerinckii	4.5871559633
+UniRef50_F0LSV1: Isopenicillin N synthase-like dioxygenase	4.5870160374
+UniRef50_F0LSV1: Isopenicillin N synthase-like dioxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5870160374
+UniRef50_A7X7A3	4.5863752496
+UniRef50_A7X7A3|unclassified	4.5863752496
+UniRef50_F9Z280	4.5863440421
+UniRef50_F9Z280|g__Propionibacterium.s__Propionibacterium_acnes	4.5863440421
+UniRef50_A4WP21	4.5859998260
+UniRef50_A4WP21|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.5859998260
+UniRef50_A3M3V3	4.5858780671
+UniRef50_A3M3V3|g__Acinetobacter.s__Acinetobacter_baumannii	4.5858780671
+UniRef50_A3PS83	4.5857531358
+UniRef50_A3PS83|unclassified	4.5857531358
+UniRef50_F2GSJ8: Oxidoreductase domain protein	4.5854249031
+UniRef50_F2GSJ8: Oxidoreductase domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.5854249031
+UniRef50_A0A023L0Z2: Tail assembly protein	4.5850336600
+UniRef50_A0A023L0Z2: Tail assembly protein|g__Escherichia.s__Escherichia_coli	4.5850336600
+UniRef50_B2V582: Purine nucleoside phosphorylase	4.5848654271
+UniRef50_B2V582: Purine nucleoside phosphorylase|g__Clostridium.s__Clostridium_beijerinckii	4.5848654271
+UniRef50_UPI000465EE27: transcriptional regulator	4.5836519024
+UniRef50_UPI000465EE27: transcriptional regulator|unclassified	4.5836519024
+UniRef50_Q9RUE8: Probable ABC transporter-binding protein DR_1438	4.5836094284
+UniRef50_Q9RUE8: Probable ABC transporter-binding protein DR_1438|g__Deinococcus.s__Deinococcus_radiodurans	4.5836094284
+UniRef50_M1Q601: LrgA-associated membrane protein LrgB	4.5818911409
+UniRef50_M1Q601: LrgA-associated membrane protein LrgB|g__Clostridium.s__Clostridium_beijerinckii	4.5818911409
+UniRef50_Q8R9G2: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--2,6-diaminopimelate ligase	4.5814704989
+UniRef50_Q8R9G2: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--2,6-diaminopimelate ligase|g__Clostridium.s__Clostridium_beijerinckii	4.5814704989
+UniRef50_UPI00037A6D2E: hypothetical protein	4.5811829402
+UniRef50_UPI00037A6D2E: hypothetical protein|unclassified	4.5811829402
+UniRef50_UPI0003B41A8E: MerR family transcriptional regulator	4.5811333598
+UniRef50_UPI0003B41A8E: MerR family transcriptional regulator|unclassified	4.5811333598
+UniRef50_UPI0003A86E6E: biopolymer transporter	4.5801937064
+UniRef50_UPI0003A86E6E: biopolymer transporter|unclassified	4.5801937064
+UniRef50_UPI00040C8409: hypothetical protein	4.5801842644
+UniRef50_UPI00040C8409: hypothetical protein|unclassified	4.5801842644
+UniRef50_A9MXW0	4.5797002415
+UniRef50_A9MXW0|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5797002415
+UniRef50_B2TJ36: Mg chelatase family protein	4.5795783839
+UniRef50_B2TJ36: Mg chelatase family protein|g__Clostridium.s__Clostridium_beijerinckii	4.5795783839
+UniRef50_P44941	4.5784418013
+UniRef50_P44941|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5784418013
+UniRef50_E0S0H5: Phosphoglucomutase/phosphomannomutase family protein	4.5784343089
+UniRef50_E0S0H5: Phosphoglucomutase/phosphomannomutase family protein|g__Clostridium.s__Clostridium_beijerinckii	4.5784343089
+UniRef50_R5T4K7: Basic membrane protein A immunodominant antigen P39	4.5778353547
+UniRef50_R5T4K7: Basic membrane protein A immunodominant antigen P39|g__Clostridium.s__Clostridium_beijerinckii	4.5778353547
+UniRef50_UPI000472D5FC: hypothetical protein	4.5776409718
+UniRef50_UPI000472D5FC: hypothetical protein|unclassified	4.5776409718
+UniRef50_A6LS17: PTS system fructose subfamily IIA component	4.5768747382
+UniRef50_A6LS17: PTS system fructose subfamily IIA component|g__Clostridium.s__Clostridium_beijerinckii	4.5768747382
+UniRef50_Q48C77: Imidazoleglycerol-phosphate dehydratase	4.5766822141
+UniRef50_Q48C77: Imidazoleglycerol-phosphate dehydratase|g__Acinetobacter.s__Acinetobacter_baumannii	2.0161290323
+UniRef50_Q48C77: Imidazoleglycerol-phosphate dehydratase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6891891892
+UniRef50_Q48C77: Imidazoleglycerol-phosphate dehydratase|unclassified	0.8713639927
+UniRef50_UPI0002BA331B: hypothetical protein	4.5760595828
+UniRef50_UPI0002BA331B: hypothetical protein|unclassified	4.5760595828
+UniRef50_U8B0J7	4.5757420874
+UniRef50_U8B0J7|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5757420874
+UniRef50_R7PW61: Type IV leader peptidase	4.5747189938
+UniRef50_R7PW61: Type IV leader peptidase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.5747189938
+UniRef50_W5YWE9	4.5746332431
+UniRef50_W5YWE9|unclassified	4.5746332431
+UniRef50_U5MW71: Cardiolipin synthase Cls	4.5744875667
+UniRef50_U5MW71: Cardiolipin synthase Cls|g__Clostridium.s__Clostridium_beijerinckii	4.5744875667
+UniRef50_A0A024GR22: Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_260_length_36763	4.5744866369
+UniRef50_A0A024GR22: Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_260_length_36763|unclassified	4.5744866369
+UniRef50_UPI0002559088: major facilitator transporter	4.5722011213
+UniRef50_UPI0002559088: major facilitator transporter|unclassified	4.5722011213
+UniRef50_G7U931: Anaerobic glycerol-3-phosphate dehydrogenase subunit B	4.5720388243
+UniRef50_G7U931: Anaerobic glycerol-3-phosphate dehydrogenase subunit B|g__Propionibacterium.s__Propionibacterium_acnes	4.5720388243
+UniRef50_Q3JXF7	4.5715778813
+UniRef50_Q3JXF7|unclassified	4.5715778813
+UniRef50_I7EMH2	4.5702517404
+UniRef50_I7EMH2|unclassified	4.5702517404
+UniRef50_G7MBG2: Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase	4.5699694539
+UniRef50_G7MBG2: Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	4.5699694539
+UniRef50_UPI0002486152: MerR family transcriptional regulator	4.5692929876
+UniRef50_UPI0002486152: MerR family transcriptional regulator|unclassified	4.5692929876
+UniRef50_UPI00045E9C11: hypothetical protein	4.5685169006
+UniRef50_UPI00045E9C11: hypothetical protein|unclassified	4.5685169006
+UniRef50_A3MI96: 30S ribosomal protein S15	4.5662100457
+UniRef50_A3MI96: 30S ribosomal protein S15|g__Escherichia.s__Escherichia_coli	4.5662100457
+UniRef50_A6LWP0	4.5662100457
+UniRef50_A6LWP0|g__Clostridium.s__Clostridium_beijerinckii	4.5662100457
+UniRef50_B2VDT9	4.5662100457
+UniRef50_B2VDT9|unclassified	4.5662100457
+UniRef50_B9KUI7	4.5662100457
+UniRef50_B9KUI7|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.5662100457
+UniRef50_D3HG30	4.5662100457
+UniRef50_D3HG30|unclassified	4.5662100457
+UniRef50_E3A6V4	4.5662100457
+UniRef50_E3A6V4|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5662100457
+UniRef50_I0C1H2	4.5662100457
+UniRef50_I0C1H2|g__Staphylococcus.s__Staphylococcus_aureus	4.5662100457
+UniRef50_I6U3U1	4.5662100457
+UniRef50_I6U3U1|g__Streptococcus.s__Streptococcus_mutans	4.5662100457
+UniRef50_M1YJY1	4.5662100457
+UniRef50_M1YJY1|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5662100457
+UniRef50_M9VHF6	4.5662100457
+UniRef50_M9VHF6|g__Propionibacterium.s__Propionibacterium_acnes	4.5662100457
+UniRef50_P40892: Putative acetyltransferase YJL218W	4.5662100457
+UniRef50_P40892: Putative acetyltransferase YJL218W|g__Clostridium.s__Clostridium_beijerinckii	4.5662100457
+UniRef50_P77714: Ferredoxin-like protein YdiT	4.5662100457
+UniRef50_P77714: Ferredoxin-like protein YdiT|g__Escherichia.s__Escherichia_coli	4.5662100457
+UniRef50_Q9RUV1	4.5662100457
+UniRef50_Q9RUV1|g__Deinococcus.s__Deinococcus_radiodurans	4.5662100457
+UniRef50_V9TUH5	4.5662100457
+UniRef50_V9TUH5|unclassified	4.5662100457
+UniRef50_F4A413: Transcriptional regulator	4.5656066271
+UniRef50_F4A413: Transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	4.5656066271
+UniRef50_T6VVX4: Galactitol-1-phosphate 5-dehydrogenase	4.5652173913
+UniRef50_T6VVX4: Galactitol-1-phosphate 5-dehydrogenase|g__Escherichia.s__Escherichia_coli	4.5652173913
+UniRef50_O29388: Probable amidophosphoribosyltransferase	4.5638093774
+UniRef50_O29388: Probable amidophosphoribosyltransferase|g__Clostridium.s__Clostridium_beijerinckii	4.5341772882
+UniRef50_O29388: Probable amidophosphoribosyltransferase|unclassified	0.0296320892
+UniRef50_Q6A8C8: ATP synthase epsilon chain	4.5610093508
+UniRef50_Q6A8C8: ATP synthase epsilon chain|g__Propionibacterium.s__Propionibacterium_acnes	4.5610093508
+UniRef50_Q1CV54	4.5607232774
+UniRef50_Q1CV54|g__Helicobacter.s__Helicobacter_pylori	4.5607232774
+UniRef50_B7V7C6: Fimbrial subunit CupB6	4.5597158464
+UniRef50_B7V7C6: Fimbrial subunit CupB6|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5597158464
+UniRef50_T8DH87	4.5594449651
+UniRef50_T8DH87|unclassified	4.5594449651
+UniRef50_A6M1X1: FMN-binding domain protein	4.5589315565
+UniRef50_A6M1X1: FMN-binding domain protein|g__Clostridium.s__Clostridium_beijerinckii	4.5589315565
+UniRef50_G7M7P0: Pseudouridine synthase	4.5586907075
+UniRef50_G7M7P0: Pseudouridine synthase|g__Clostridium.s__Clostridium_beijerinckii	4.5586907075
+UniRef50_P42305: ATP-dependent RNA helicase DbpA	4.5577613702
+UniRef50_P42305: ATP-dependent RNA helicase DbpA|g__Clostridium.s__Clostridium_beijerinckii	4.2519658918
+UniRef50_P42305: ATP-dependent RNA helicase DbpA|unclassified	0.3057954784
+UniRef50_Q9FI53: Fumarate hydratase 2, chloroplastic	4.5566005742
+UniRef50_Q9FI53: Fumarate hydratase 2, chloroplastic|g__Neisseria.s__Neisseria_meningitidis	4.4622097156
+UniRef50_Q9FI53: Fumarate hydratase 2, chloroplastic|unclassified	0.0943908586
+UniRef50_D8JKZ8: AFG1-like ATPase family protein	4.5564186451
+UniRef50_D8JKZ8: AFG1-like ATPase family protein|g__Acinetobacter.s__Acinetobacter_baumannii	4.5564186451
+UniRef50_P33639: Sensor protein PilS	4.5562445873
+UniRef50_P33639: Sensor protein PilS|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5562445873
+UniRef50_P0AF35	4.5558086560
+UniRef50_P0AF35|g__Escherichia.s__Escherichia_coli	4.5558086560
+UniRef50_A6LTD7: Regulatory protein, LacI	4.5552331967
+UniRef50_A6LTD7: Regulatory protein, LacI|g__Clostridium.s__Clostridium_beijerinckii	4.5552331967
+UniRef50_UPI0003775AE8: hypothetical protein	4.5552049814
+UniRef50_UPI0003775AE8: hypothetical protein|unclassified	4.5552049814
+UniRef50_Q6A662: Chaperone protein DnaJ 2	4.5543434692
+UniRef50_Q6A662: Chaperone protein DnaJ 2|g__Propionibacterium.s__Propionibacterium_acnes	4.5543434692
+UniRef50_L0F3J6: Phosphoenolpyruvate synthase/pyruvate phosphate dikinase	4.5538738597
+UniRef50_L0F3J6: Phosphoenolpyruvate synthase/pyruvate phosphate dikinase|g__Clostridium.s__Clostridium_beijerinckii	4.5538738597
+UniRef50_F4DR22	4.5531237122
+UniRef50_F4DR22|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5531237122
+UniRef50_Q02N70: Tryptophan 2,3-dioxygenase	4.5506316007
+UniRef50_Q02N70: Tryptophan 2,3-dioxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5506316007
+UniRef50_Q895G1: Cytidylate kinase	4.5502351628
+UniRef50_Q895G1: Cytidylate kinase|g__Clostridium.s__Clostridium_beijerinckii	4.4899734498
+UniRef50_Q895G1: Cytidylate kinase|unclassified	0.0602617130
+UniRef50_U5MVM4: Chaperone protein HtpG	4.5499221681
+UniRef50_U5MVM4: Chaperone protein HtpG|g__Clostridium.s__Clostridium_beijerinckii	4.5499221681
+UniRef50_V9RYR8: Transcriptional regulator, TetR family	4.5494388231
+UniRef50_V9RYR8: Transcriptional regulator, TetR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5494388231
+UniRef50_B1I1Y5: Phosphoglucosamine mutase	4.5483957344
+UniRef50_B1I1Y5: Phosphoglucosamine mutase|g__Clostridium.s__Clostridium_beijerinckii	4.5056901039
+UniRef50_B1I1Y5: Phosphoglucosamine mutase|unclassified	0.0427056305
+UniRef50_W0NGZ8: Membrane protein	4.5482509293
+UniRef50_W0NGZ8: Membrane protein|unclassified	4.5482509293
+UniRef50_V1D4R1	4.5480720525
+UniRef50_V1D4R1|unclassified	4.5480720525
+UniRef50_Q1IWY0: Thioredoxin	4.5478036176
+UniRef50_Q1IWY0: Thioredoxin|g__Deinococcus.s__Deinococcus_radiodurans	4.5478036176
+UniRef50_W5XG56: Transcriptional regulator	4.5473544736
+UniRef50_W5XG56: Transcriptional regulator|unclassified	4.5473544736
+UniRef50_Q3J5F5: Surf1 protein	4.5472696416
+UniRef50_Q3J5F5: Surf1 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.5472696416
+UniRef50_G7M6G8: Heavy metal transport/detoxification protein	4.5466164506
+UniRef50_G7M6G8: Heavy metal transport/detoxification protein|g__Clostridium.s__Clostridium_beijerinckii	4.5466164506
+UniRef50_R4RQD5: Exodeoxyribonuclease I	4.5461212214
+UniRef50_R4RQD5: Exodeoxyribonuclease I|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5461212214
+UniRef50_A4VUE5	4.5454545455
+UniRef50_A4VUE5|g__Streptococcus.s__Streptococcus_mutans	4.5454545455
+UniRef50_A6LYI6	4.5454545455
+UniRef50_A6LYI6|g__Clostridium.s__Clostridium_beijerinckii	4.5454545455
+UniRef50_C5D403: Anti-sigma F factor	4.5454545455
+UniRef50_C5D403: Anti-sigma F factor|g__Clostridium.s__Clostridium_beijerinckii	4.5454545455
+UniRef50_Q2W2T3: 50S ribosomal protein L31	4.5454545455
+UniRef50_Q2W2T3: 50S ribosomal protein L31|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.5454545455
+UniRef50_Q47156: Antitoxin YafN	4.5454545455
+UniRef50_Q47156: Antitoxin YafN|g__Escherichia.s__Escherichia_coli	4.5454545455
+UniRef50_Q6GIY3	4.5454545455
+UniRef50_Q6GIY3|unclassified	4.5454545455
+UniRef50_Q93IB4	4.5454545455
+UniRef50_Q93IB4|unclassified	4.5454545455
+UniRef50_UPI000364DBC5: hypothetical protein, partial	4.5454545455
+UniRef50_UPI000364DBC5: hypothetical protein, partial|unclassified	4.5454545455
+UniRef50_M5B2K9: Probable transposase	4.5454009652
+UniRef50_M5B2K9: Probable transposase|unclassified	4.5454009652
+UniRef50_Q1GN45	4.5439520068
+UniRef50_Q1GN45|unclassified	4.5439520068
+UniRef50_X6L243	4.5437509019
+UniRef50_X6L243|unclassified	4.5437509019
+UniRef50_V5SV57	4.5437441499
+UniRef50_V5SV57|unclassified	2.8516967726
+UniRef50_V5SV57|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6920473773
+UniRef50_R7CJA9: Binding-protein-dependent transport system inner membrane component	4.5432695245
+UniRef50_R7CJA9: Binding-protein-dependent transport system inner membrane component|g__Clostridium.s__Clostridium_beijerinckii	4.5432695245
+UniRef50_Q9AFH4: CpsVO	4.5428899212
+UniRef50_Q9AFH4: CpsVO|g__Streptococcus.s__Streptococcus_agalactiae	4.5428899212
+UniRef50_E0DCF6	4.5428061161
+UniRef50_E0DCF6|unclassified	4.5428061161
+UniRef50_J3NR99	4.5421585237
+UniRef50_J3NR99|unclassified	4.5421585237
+UniRef50_G2L7C3	4.5415585398
+UniRef50_G2L7C3|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5415585398
+UniRef50_A6M2F6: Binding-protein-dependent transport systems inner membrane component	4.5412839308
+UniRef50_A6M2F6: Binding-protein-dependent transport systems inner membrane component|g__Clostridium.s__Clostridium_beijerinckii	4.5412839308
+UniRef50_Q28VQ1	4.5403871491
+UniRef50_Q28VQ1|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.5403871491
+UniRef50_V4JCU2	4.5402207721
+UniRef50_V4JCU2|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5402207721
+UniRef50_R4Z928: Polysaccharide biosynthesis protein	4.5383148025
+UniRef50_R4Z928: Polysaccharide biosynthesis protein|g__Streptococcus.s__Streptococcus_agalactiae	4.5383148025
+UniRef50_Q6Y3D2: NifD (Fragment)	4.5381901937
+UniRef50_Q6Y3D2: NifD (Fragment)|unclassified	4.5381901937
+UniRef50_D3QFY2	4.5375122567
+UniRef50_D3QFY2|unclassified	4.5375122567
+UniRef50_E3A1I0: Putative transcriptional accessory protein	4.5363106992
+UniRef50_E3A1I0: Putative transcriptional accessory protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5363106992
+UniRef50_R6KW92: FHA domain-containing protein	4.5351473923
+UniRef50_R6KW92: FHA domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	4.5351473923
+UniRef50_K0SHL6	4.5349450188
+UniRef50_K0SHL6|unclassified	4.5349450188
+UniRef50_D4HF81	4.5339500918
+UniRef50_D4HF81|g__Propionibacterium.s__Propionibacterium_acnes	4.5339500918
+UniRef50_G0AJ20: Glycosyltransferase	4.5332050732
+UniRef50_G0AJ20: Glycosyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5332050732
+UniRef50_UPI0003B6E403: trans-acting regulatory protein hvrA	4.5331234162
+UniRef50_UPI0003B6E403: trans-acting regulatory protein hvrA|unclassified	4.5331234162
+UniRef50_V5T5N9: Fimbrial protein	4.5328606935
+UniRef50_V5T5N9: Fimbrial protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5328606935
+UniRef50_M0W755	4.5322290552
+UniRef50_M0W755|unclassified	4.5322290552
+UniRef50_M1MKU0	4.5321011246
+UniRef50_M1MKU0|g__Clostridium.s__Clostridium_beijerinckii	4.5321011246
+UniRef50_A6TFK8	4.5315728861
+UniRef50_A6TFK8|unclassified	4.5315728861
+UniRef50_Q1AWD7: Glyoxalase/bleomycin resistance protein/dioxygenase	4.5310745994
+UniRef50_Q1AWD7: Glyoxalase/bleomycin resistance protein/dioxygenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.5310745994
+UniRef50_B2GGG9: Serine--tRNA ligase	4.5299330501
+UniRef50_B2GGG9: Serine--tRNA ligase|g__Propionibacterium.s__Propionibacterium_acnes	4.5299330501
+UniRef50_W6S7D3: HAD-superfamily hydrolase	4.5283975659
+UniRef50_W6S7D3: HAD-superfamily hydrolase|g__Clostridium.s__Clostridium_beijerinckii	4.5283975659
+UniRef50_N6U151	4.5272418069
+UniRef50_N6U151|unclassified	4.5272418069
+UniRef50_Q9RPK7: CylE	4.5271443104
+UniRef50_Q9RPK7: CylE|g__Streptococcus.s__Streptococcus_agalactiae	4.5271443104
+UniRef50_G7M4L2: Thioredoxin-disulfide reductase	4.5264557804
+UniRef50_G7M4L2: Thioredoxin-disulfide reductase|g__Clostridium.s__Clostridium_beijerinckii	4.5264557804
+UniRef50_Q9RZ34	4.5264206514
+UniRef50_Q9RZ34|g__Deinococcus.s__Deinococcus_radiodurans	4.5264206514
+UniRef50_UPI0001C39734: geranylgeranyl pyrophosphate synthase	4.5254345740
+UniRef50_UPI0001C39734: geranylgeranyl pyrophosphate synthase|unclassified	4.5254345740
+UniRef50_D8Q3I5	4.5248868778
+UniRef50_D8Q3I5|unclassified	4.5248868778
+UniRef50_A6M140	4.5248868778
+UniRef50_A6M140|g__Clostridium.s__Clostridium_beijerinckii	4.5248868778
+UniRef50_A6V9M5: Hpt domain protein	4.5248868778
+UniRef50_A6V9M5: Hpt domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5248868778
+UniRef50_G8QCH1: VreI	4.5248868778
+UniRef50_G8QCH1: VreI|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5248868778
+UniRef50_Q6FE54	4.5248868778
+UniRef50_Q6FE54|g__Acinetobacter.s__Acinetobacter_baumannii	4.5248868778
+UniRef50_S9UK51	4.5248868778
+UniRef50_S9UK51|unclassified	4.5248868778
+UniRef50_UPI0002B8E61E: hypothetical protein	4.5248868778
+UniRef50_UPI0002B8E61E: hypothetical protein|unclassified	4.5248868778
+UniRef50_UPI000315A592: hypothetical protein	4.5248868778
+UniRef50_UPI000315A592: hypothetical protein|unclassified	4.5248868778
+UniRef50_J1B0Q7	4.5239543148
+UniRef50_J1B0Q7|unclassified	4.5239543148
+UniRef50_W1GIH7	4.5220970891
+UniRef50_W1GIH7|unclassified	4.5220970891
+UniRef50_D7GEU1: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase	4.5214254313
+UniRef50_D7GEU1: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase|g__Propionibacterium.s__Propionibacterium_acnes	4.5214254313
+UniRef50_A6M204: Glycoside hydrolase, family 1	4.5209690826
+UniRef50_A6M204: Glycoside hydrolase, family 1|g__Clostridium.s__Clostridium_beijerinckii	4.5209690826
+UniRef50_A0A024LBI2: Conserved outer membrane protein	4.5204140275
+UniRef50_A0A024LBI2: Conserved outer membrane protein|g__Escherichia.s__Escherichia_coli	3.8759689922
+UniRef50_A0A024LBI2: Conserved outer membrane protein|unclassified	0.6444450353
+UniRef50_UPI0004673C65: thioredoxin	4.5182039882
+UniRef50_UPI0004673C65: thioredoxin|unclassified	4.5182039882
+UniRef50_Q469F5: Lon protease	4.5174113776
+UniRef50_Q469F5: Lon protease|g__Clostridium.s__Clostridium_beijerinckii	4.5174113776
+UniRef50_B9KMK6: SOUL heme-binding protein	4.5170020464
+UniRef50_B9KMK6: SOUL heme-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.8268339352
+UniRef50_B9KMK6: SOUL heme-binding protein|unclassified	0.6901681113
+UniRef50_G5RNH3: Phosphoenolpyruvate carboxylase	4.5170020162
+UniRef50_G5RNH3: Phosphoenolpyruvate carboxylase|g__Escherichia.s__Escherichia_coli	4.5170020162
+UniRef50_F8HEJ4: Pts system, trehalose-specific iibc component	4.5163069053
+UniRef50_F8HEJ4: Pts system, trehalose-specific iibc component|g__Streptococcus.s__Streptococcus_agalactiae	4.5163069053
+UniRef50_Q48GV8: Soluble lytic murein transglycosylase, putative	4.5160226897
+UniRef50_Q48GV8: Soluble lytic murein transglycosylase, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5160226897
+UniRef50_A3PJ06	4.5157841842
+UniRef50_A3PJ06|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.6237235241
+UniRef50_A3PJ06|unclassified	0.8920606601
+UniRef50_D7UQD7: Nitrogenase reductase (Fragment)	4.5142824509
+UniRef50_D7UQD7: Nitrogenase reductase (Fragment)|unclassified	4.5142824509
+UniRef50_B7V4I1: LPS-assembly protein LptD	4.5141044768
+UniRef50_B7V4I1: LPS-assembly protein LptD|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5141044768
+UniRef50_Q89VR4: Acyl-CoA dehydrogenase	4.5140137623
+UniRef50_Q89VR4: Acyl-CoA dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1553181101
+UniRef50_Q89VR4: Acyl-CoA dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3586956522
+UniRef50_UPI0003725665: hypothetical protein, partial	4.5133905224
+UniRef50_UPI0003725665: hypothetical protein, partial|unclassified	4.5133905224
+UniRef50_P25084: Transcriptional activator protein LasR	4.5130353248
+UniRef50_P25084: Transcriptional activator protein LasR|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5130353248
+UniRef50_Q9I0J1: NADH-quinone oxidoreductase subunit L	4.5129303995
+UniRef50_Q9I0J1: NADH-quinone oxidoreductase subunit L|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1851477340
+UniRef50_Q9I0J1: NADH-quinone oxidoreductase subunit L|unclassified	0.3277826655
+UniRef50_L6YJA4: Glutamate/aspartate ABC transporter permease GltJ	4.5123915678
+UniRef50_L6YJA4: Glutamate/aspartate ABC transporter permease GltJ|unclassified	4.5123915678
+UniRef50_R4KAB8: High affinity sulfate transporter 1	4.5123390993
+UniRef50_R4KAB8: High affinity sulfate transporter 1|g__Clostridium.s__Clostridium_beijerinckii	4.5123390993
+UniRef50_UPI0003679BD5: hypothetical protein	4.5110083036
+UniRef50_UPI0003679BD5: hypothetical protein|unclassified	4.5110083036
+UniRef50_F8HE41	4.5108728819
+UniRef50_F8HE41|g__Streptococcus.s__Streptococcus_agalactiae	4.5108728819
+UniRef50_Q56232: Aspartate aminotransferase	4.5099761680
+UniRef50_Q56232: Aspartate aminotransferase|g__Deinococcus.s__Deinococcus_radiodurans	4.5099761680
+UniRef50_O98946: Ribulose bisphosphate carboxylase small chain	4.5096647810
+UniRef50_O98946: Ribulose bisphosphate carboxylase small chain|unclassified	4.5096647810
+UniRef50_B0V590	4.5096062065
+UniRef50_B0V590|g__Acinetobacter.s__Acinetobacter_baumannii	4.5096062065
+UniRef50_UPI000350E610: PREDICTED: formin-like protein 18-like	4.5090535478
+UniRef50_UPI000350E610: PREDICTED: formin-like protein 18-like|unclassified	4.5090535478
+UniRef50_Q89DX7: Arginine deiminase	4.5067958220
+UniRef50_Q89DX7: Arginine deiminase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5067958220
+UniRef50_I4KME6: DNA-binding response regulator	4.5061090322
+UniRef50_I4KME6: DNA-binding response regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.5061090322
+UniRef50_UPI0002E75369: hypothetical protein	4.5052913362
+UniRef50_UPI0002E75369: hypothetical protein|unclassified	4.5052913362
+UniRef50_A6TEH4: UPF0213 protein KPN78578_35340	4.5045045045
+UniRef50_A6TEH4: UPF0213 protein KPN78578_35340|g__Escherichia.s__Escherichia_coli	4.5045045045
+UniRef50_B8I4B5: 50S ribosomal protein L9	4.5045045045
+UniRef50_B8I4B5: 50S ribosomal protein L9|g__Clostridium.s__Clostridium_beijerinckii	4.5045045045
+UniRef50_D3Q457: Regulatory protein, FmdB family	4.5045045045
+UniRef50_D3Q457: Regulatory protein, FmdB family|g__Propionibacterium.s__Propionibacterium_acnes	4.5045045045
+UniRef50_D4KTF9: ABC-type antimicrobial peptide transport system, ATPase component	4.5045045045
+UniRef50_D4KTF9: ABC-type antimicrobial peptide transport system, ATPase component|g__Clostridium.s__Clostridium_beijerinckii	4.5045045045
+UniRef50_F4TU03: 5-hydroxyisourate hydrolase	4.5045045045
+UniRef50_F4TU03: 5-hydroxyisourate hydrolase|g__Escherichia.s__Escherichia_coli	4.5045045045
+UniRef50_H3Z0R2	4.5045045045
+UniRef50_H3Z0R2|g__Staphylococcus.s__Staphylococcus_aureus	4.5045045045
+UniRef50_J7R2D0	4.5045045045
+UniRef50_J7R2D0|g__Escherichia.s__Escherichia_coli	4.5045045045
+UniRef50_Q8DW74	4.5045045045
+UniRef50_Q8DW74|g__Streptococcus.s__Streptococcus_mutans	4.5045045045
+UniRef50_P37925: Protein FimH	4.5038064163
+UniRef50_P37925: Protein FimH|g__Escherichia.s__Escherichia_coli	4.5038064163
+UniRef50_O32978: O-acetylserine sulfhydrylase	4.5029681571
+UniRef50_O32978: O-acetylserine sulfhydrylase|g__Clostridium.s__Clostridium_beijerinckii	4.4583761880
+UniRef50_O32978: O-acetylserine sulfhydrylase|unclassified	0.0445919690
+UniRef50_K0WI88: Type VI secretion system protein	4.4994912593
+UniRef50_K0WI88: Type VI secretion system protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4994912593
+UniRef50_G7M5T5	4.4985504987
+UniRef50_G7M5T5|g__Clostridium.s__Clostridium_beijerinckii	4.4985504987
+UniRef50_K4UXN2	4.4985322885
+UniRef50_K4UXN2|unclassified	4.4985322885
+UniRef50_P43505: Membrane fusion protein MtrC	4.4971108179
+UniRef50_P43505: Membrane fusion protein MtrC|g__Neisseria.s__Neisseria_meningitidis	4.4971108179
+UniRef50_C0RG90: 3-phosphoshikimate 1-carboxyvinyltransferase	4.4964723916
+UniRef50_C0RG90: 3-phosphoshikimate 1-carboxyvinyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.4553968499
+UniRef50_C0RG90: 3-phosphoshikimate 1-carboxyvinyltransferase|unclassified	0.0410755417
+UniRef50_D4HBN4: Trypsin	4.4960621401
+UniRef50_D4HBN4: Trypsin|g__Propionibacterium.s__Propionibacterium_acnes	4.4960621401
+UniRef50_Q72HJ2	4.4953026172
+UniRef50_Q72HJ2|unclassified	4.4953026172
+UniRef50_B3PJZ1	4.4950823934
+UniRef50_B3PJZ1|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4950823934
+UniRef50_B9KKD9	4.4940710918
+UniRef50_B9KKD9|unclassified	4.4940710918
+UniRef50_C6DY30: Poly A polymerase family protein	4.4939425288
+UniRef50_C6DY30: Poly A polymerase family protein|g__Clostridium.s__Clostridium_beijerinckii	4.4939425288
+UniRef50_UPI0004745D0F: hypothetical protein	4.4930125095
+UniRef50_UPI0004745D0F: hypothetical protein|unclassified	4.4930125095
+UniRef50_A6LY56	4.4908848377
+UniRef50_A6LY56|g__Clostridium.s__Clostridium_beijerinckii	4.4908848377
+UniRef50_W8T739	4.4903239726
+UniRef50_W8T739|unclassified	4.4903239726
+UniRef50_L4UG82: Mannosyl-3-phosphoglycerate phosphatase	4.4893434776
+UniRef50_L4UG82: Mannosyl-3-phosphoglycerate phosphatase|g__Escherichia.s__Escherichia_coli	4.4893434776
+UniRef50_A4XNC3: Transcriptional regulator, LysR family	4.4892136791
+UniRef50_A4XNC3: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4892136791
+UniRef50_Q161C7: DNA-damage-inducible protein, putative	4.4890402200
+UniRef50_Q161C7: DNA-damage-inducible protein, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.4890402200
+UniRef50_A6LXC6: Diguanylate cyclase/phosphodiesterase with PAS/PAC and GAF sensor(S)	4.4889206815
+UniRef50_A6LXC6: Diguanylate cyclase/phosphodiesterase with PAS/PAC and GAF sensor(S)|g__Clostridium.s__Clostridium_beijerinckii	4.4889206815
+UniRef50_H0PW14: Transcriptional regulator, LuxR family	4.4858523119
+UniRef50_H0PW14: Transcriptional regulator, LuxR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4858523119
+UniRef50_A4WRR9	4.4843049327
+UniRef50_A4WRR9|unclassified	4.4843049327
+UniRef50_D4H9L5: Cyclic nucleotide-binding domain protein	4.4843049327
+UniRef50_D4H9L5: Cyclic nucleotide-binding domain protein|g__Propionibacterium.s__Propionibacterium_acnes	4.4843049327
+UniRef50_D7I398: 4-hydroxybenzoyl-CoA thioesterase	4.4843049327
+UniRef50_D7I398: 4-hydroxybenzoyl-CoA thioesterase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4843049327
+UniRef50_L8WGM0	4.4843049327
+UniRef50_L8WGM0|unclassified	4.4843049327
+UniRef50_Q9RW93: Shikimate kinase	4.4843049327
+UniRef50_Q9RW93: Shikimate kinase|g__Deinococcus.s__Deinococcus_radiodurans	4.4843049327
+UniRef50_R6TUR0: RNA-binding protein YhbY family	4.4843049327
+UniRef50_R6TUR0: RNA-binding protein YhbY family|g__Staphylococcus.s__Staphylococcus_aureus	4.4843049327
+UniRef50_UPI0003C11566: PREDICTED: 50S ribosomal protein L6, chloroplastic-like	4.4825387116
+UniRef50_UPI0003C11566: PREDICTED: 50S ribosomal protein L6, chloroplastic-like|unclassified	4.4825387116
+UniRef50_A9IQX3: Single-stranded-DNA-specific exonuclease	4.4816742694
+UniRef50_A9IQX3: Single-stranded-DNA-specific exonuclease|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8817942454
+UniRef50_A9IQX3: Single-stranded-DNA-specific exonuclease|g__Neisseria.s__Neisseria_meningitidis	0.5998800240
+UniRef50_Q9I702: Putative 3-oxopropanoate dehydrogenase	4.4813231734
+UniRef50_Q9I702: Putative 3-oxopropanoate dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3994636049
+UniRef50_Q9I702: Putative 3-oxopropanoate dehydrogenase|unclassified	0.0818595684
+UniRef50_A0A037XIK8	4.4799370398
+UniRef50_A0A037XIK8|unclassified	4.4799370398
+UniRef50_G8MLW9: Binding-protein-dependent transport systems inner membrane component	4.4789044951
+UniRef50_G8MLW9: Binding-protein-dependent transport systems inner membrane component|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4789044951
+UniRef50_E0R9G5: ABC-type multidrug transport system protein	4.4771983689
+UniRef50_E0R9G5: ABC-type multidrug transport system protein|g__Clostridium.s__Clostridium_beijerinckii	4.4771983689
+UniRef50_S5D4V1: Nucleotidyltransferase/DNA polymerase involved in DNA repair	4.4769572828
+UniRef50_S5D4V1: Nucleotidyltransferase/DNA polymerase involved in DNA repair|g__Acinetobacter.s__Acinetobacter_baumannii	4.4769572828
+UniRef50_G2L2S5: Usher CupC3	4.4764171595
+UniRef50_G2L2S5: Usher CupC3|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4764171595
+UniRef50_K2F5A0	4.4762319206
+UniRef50_K2F5A0|unclassified	4.4762319206
+UniRef50_J7QDU7	4.4756778309
+UniRef50_J7QDU7|g__Escherichia.s__Escherichia_coli	4.4756778309
+UniRef50_Q9I4U3: DNA recombination protein RmuC homolog	4.4753764867
+UniRef50_Q9I4U3: DNA recombination protein RmuC homolog|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4753764867
+UniRef50_B6SHE9: Insect intestinal mucin IIM22	4.4753016528
+UniRef50_B6SHE9: Insect intestinal mucin IIM22|unclassified	4.4753016528
+UniRef50_F4DU26	4.4742729306
+UniRef50_F4DU26|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4742729306
+UniRef50_P65368	4.4742729306
+UniRef50_P65368|g__Escherichia.s__Escherichia_coli	4.4742729306
+UniRef50_D2ZVP2	4.4735692442
+UniRef50_D2ZVP2|unclassified	4.4735692442
+UniRef50_UPI00029B17E0: 2-oxoglutarate dehydrogenase, E2 component, dihydrolipoamide succinyltransferase	4.4735269090
+UniRef50_UPI00029B17E0: 2-oxoglutarate dehydrogenase, E2 component, dihydrolipoamide succinyltransferase|unclassified	4.4735269090
+UniRef50_A8IJV0: BioY family protein	4.4731007515
+UniRef50_A8IJV0: BioY family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.4731007515
+UniRef50_G2L306: Two-component sensor EnvZ	4.4717161477
+UniRef50_G2L306: Two-component sensor EnvZ|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4717161477
+UniRef50_F9D1U7: Saccharopine dehydrogenase	4.4706417943
+UniRef50_F9D1U7: Saccharopine dehydrogenase|g__Helicobacter.s__Helicobacter_pylori	3.3225361686
+UniRef50_F9D1U7: Saccharopine dehydrogenase|g__Deinococcus.s__Deinococcus_radiodurans	1.1481056257
+UniRef50_G7M4H8: Secretion protein HlyD family protein	4.4701112285
+UniRef50_G7M4H8: Secretion protein HlyD family protein|g__Clostridium.s__Clostridium_beijerinckii	4.4701112285
+UniRef50_UPI0003B5C4DB: cell division protein MraZ	4.4699453083
+UniRef50_UPI0003B5C4DB: cell division protein MraZ|unclassified	4.4699453083
+UniRef50_I1B3F9	4.4697939704
+UniRef50_I1B3F9|g__Escherichia.s__Escherichia_coli	4.4697939704
+UniRef50_Q4FPU1: Imidazole glycerol phosphate synthase subunit HisH	4.4697648547
+UniRef50_Q4FPU1: Imidazole glycerol phosphate synthase subunit HisH|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3668122271
+UniRef50_Q4FPU1: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.1029526276
+UniRef50_F0YPY3: Expressed protein (Fragment)	4.4697325894
+UniRef50_F0YPY3: Expressed protein (Fragment)|unclassified	4.4697325894
+UniRef50_M3YYA0	4.4685083812
+UniRef50_M3YYA0|unclassified	4.4685083812
+UniRef50_P19669: Transaldolase	4.4681308078
+UniRef50_P19669: Transaldolase|unclassified	2.2508359076
+UniRef50_P19669: Transaldolase|g__Deinococcus.s__Deinococcus_radiodurans	2.2172949002
+UniRef50_W5VCW5: Bleomycin resistance protein	4.4672818792
+UniRef50_W5VCW5: Bleomycin resistance protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4672818792
+UniRef50_E6MV22: Factor H-binding protein	4.4671337419
+UniRef50_E6MV22: Factor H-binding protein|g__Neisseria.s__Neisseria_meningitidis	4.4671337419
+UniRef50_G0DVK6: ROK family transcriptional regulator	4.4661994537
+UniRef50_G0DVK6: ROK family transcriptional regulator|g__Propionibacterium.s__Propionibacterium_acnes	4.4661994537
+UniRef50_H9USG2	4.4648418619
+UniRef50_H9USG2|g__Escherichia.s__Escherichia_coli	4.4648418619
+UniRef50_V5SX49: Chemotaxis protein CheY	4.4647931375
+UniRef50_V5SX49: Chemotaxis protein CheY|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4647931375
+UniRef50_A5UKC1	4.4642857143
+UniRef50_A5UKC1|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.4642857143
+UniRef50_P76227	4.4642857143
+UniRef50_P76227|g__Escherichia.s__Escherichia_coli	4.4642857143
+UniRef50_Q1RDH8	4.4642857143
+UniRef50_Q1RDH8|g__Escherichia.s__Escherichia_coli	4.4642857143
+UniRef50_T2BF48: Ubiquinol-cytochrome c reductase iron-sulfur subunit	4.4642857143
+UniRef50_T2BF48: Ubiquinol-cytochrome c reductase iron-sulfur subunit|g__Helicobacter.s__Helicobacter_pylori	4.4642857143
+UniRef50_T6QMI0	4.4642857143
+UniRef50_T6QMI0|g__Escherichia.s__Escherichia_coli	4.4642857143
+UniRef50_X2P110	4.4642857143
+UniRef50_X2P110|g__Escherichia.s__Escherichia_coli	4.4642857143
+UniRef50_V9WMU6	4.4642393143
+UniRef50_V9WMU6|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.4642393143
+UniRef50_A6M0P7: Xanthine/uracil/vitamin C permease	4.4640600629
+UniRef50_A6M0P7: Xanthine/uracil/vitamin C permease|g__Clostridium.s__Clostridium_beijerinckii	4.4640600629
+UniRef50_UPI0004677BBA: hypothetical protein, partial	4.4634006087
+UniRef50_UPI0004677BBA: hypothetical protein, partial|unclassified	4.4634006087
+UniRef50_W4UBI3: Methionine aminopeptidase	4.4630266446
+UniRef50_W4UBI3: Methionine aminopeptidase|g__Propionibacterium.s__Propionibacterium_acnes	4.4630266446
+UniRef50_A4WXK9	4.4619919754
+UniRef50_A4WXK9|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.4619919754
+UniRef50_Q2T2J9: Cobalamin synthesis protein/P47K family protein	4.4617978759
+UniRef50_Q2T2J9: Cobalamin synthesis protein/P47K family protein|g__Acinetobacter.s__Acinetobacter_baumannii	4.4617978759
+UniRef50_V7N9Q7	4.4613234135
+UniRef50_V7N9Q7|unclassified	4.4613234135
+UniRef50_D6Z4R6: Phosphoenolpyruvate phosphomutase	4.4599920474
+UniRef50_D6Z4R6: Phosphoenolpyruvate phosphomutase|g__Clostridium.s__Clostridium_beijerinckii	4.4599920474
+UniRef50_D4HBM2: Transcriptional regulator, LacI family	4.4597852069
+UniRef50_D4HBM2: Transcriptional regulator, LacI family|g__Propionibacterium.s__Propionibacterium_acnes	4.4597852069
+UniRef50_R9ZDD7	4.4596229392
+UniRef50_R9ZDD7|unclassified	4.4596229392
+UniRef50_T4JEK7: N-6 DNA Methylase family protein	4.4592906479
+UniRef50_T4JEK7: N-6 DNA Methylase family protein|g__Clostridium.s__Clostridium_beijerinckii	4.4592906479
+UniRef50_D9SVI0: DEAD/DEAH box helicase domain protein	4.4583988526
+UniRef50_D9SVI0: DEAD/DEAH box helicase domain protein|g__Clostridium.s__Clostridium_beijerinckii	4.4583988526
+UniRef50_Q3IWK9	4.4566224785
+UniRef50_Q3IWK9|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.9239766082
+UniRef50_Q3IWK9|unclassified	1.5326458703
+UniRef50_L1VV55	4.4562752637
+UniRef50_L1VV55|g__Escherichia.s__Escherichia_coli	4.4562752637
+UniRef50_UPI00036C7A2E: hypothetical protein	4.4536765850
+UniRef50_UPI00036C7A2E: hypothetical protein|unclassified	4.4536765850
+UniRef50_A6LZI7: Isoprenylcysteine carboxyl methyltransferase	4.4530264817
+UniRef50_A6LZI7: Isoprenylcysteine carboxyl methyltransferase|g__Clostridium.s__Clostridium_beijerinckii	4.4530264817
+UniRef50_A6M071	4.4517774530
+UniRef50_A6M071|g__Clostridium.s__Clostridium_beijerinckii	4.4517774530
+UniRef50_V6ICR3: Peptidase	4.4511946366
+UniRef50_V6ICR3: Peptidase|g__Streptococcus.s__Streptococcus_agalactiae	4.4511946366
+UniRef50_Q66ED4: Sulfite reductase [NADPH] flavoprotein alpha-component	4.4506815864
+UniRef50_Q66ED4: Sulfite reductase [NADPH] flavoprotein alpha-component|g__Escherichia.s__Escherichia_coli	4.4506815864
+UniRef50_Q9RTI6: 3-isopropylmalate dehydratase large subunit 2	4.4506455965
+UniRef50_Q9RTI6: 3-isopropylmalate dehydratase large subunit 2|g__Deinococcus.s__Deinococcus_radiodurans	4.4506455965
+UniRef50_M9VAR2	4.4503068874
+UniRef50_M9VAR2|g__Propionibacterium.s__Propionibacterium_acnes	4.4503068874
+UniRef50_UPI00036D0132: hypothetical protein	4.4500962300
+UniRef50_UPI00036D0132: hypothetical protein|unclassified	4.4500962300
+UniRef50_A6LXN0: Polyprenyl synthetase	4.4500888522
+UniRef50_A6LXN0: Polyprenyl synthetase|g__Clostridium.s__Clostridium_beijerinckii	4.4500888522
+UniRef50_Q9CIV8: PTS-dependent dihydroxyacetone kinase, dihydroxyacetone-binding subunit DhaK	4.4494735820
+UniRef50_Q9CIV8: PTS-dependent dihydroxyacetone kinase, dihydroxyacetone-binding subunit DhaK|g__Streptococcus.s__Streptococcus_agalactiae	4.0899338459
+UniRef50_Q9CIV8: PTS-dependent dihydroxyacetone kinase, dihydroxyacetone-binding subunit DhaK|unclassified	0.3595397361
+UniRef50_R5TCX3: Sugar ABC transporter sugar-binding protein	4.4479974766
+UniRef50_R5TCX3: Sugar ABC transporter sugar-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	4.4479974766
+UniRef50_A3PIB0: OmpA/MotB domain protein	4.4479872192
+UniRef50_A3PIB0: OmpA/MotB domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.3877697696
+UniRef50_A3PIB0: OmpA/MotB domain protein|unclassified	0.0602174496
+UniRef50_Q1R031: Uridylate kinase	4.4479643820
+UniRef50_Q1R031: Uridylate kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4479643820
+UniRef50_Q0IAT1: Two-component response regulator	4.4455028975
+UniRef50_Q0IAT1: Two-component response regulator|g__Acinetobacter.s__Acinetobacter_baumannii	3.0959752322
+UniRef50_Q0IAT1: Two-component response regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3495276653
+UniRef50_Q8E120: Prophage LambdaSa1, site-specific recombinase, phage integrase family	4.4449222445
+UniRef50_Q8E120: Prophage LambdaSa1, site-specific recombinase, phage integrase family|g__Streptococcus.s__Streptococcus_agalactiae	4.4449222445
+UniRef50_E6UQ90: Radical SAM domain protein	4.4449087854
+UniRef50_E6UQ90: Radical SAM domain protein|g__Clostridium.s__Clostridium_beijerinckii	4.4449087854
+UniRef50_A5UNP0: Predicted UDP-glucose/GDP-mannose dehydrogenase	4.4444444444
+UniRef50_A5UNP0: Predicted UDP-glucose/GDP-mannose dehydrogenase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.4444444444
+UniRef50_E8U8Q1: Tellurite resistance TerB	4.4444444444
+UniRef50_E8U8Q1: Tellurite resistance TerB|g__Deinococcus.s__Deinococcus_radiodurans	4.4444444444
+UniRef50_P0AB32	4.4444444444
+UniRef50_P0AB32|g__Escherichia.s__Escherichia_coli	4.4444444444
+UniRef50_S6AGY7	4.4444444444
+UniRef50_S6AGY7|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4444444444
+UniRef50_S6AIU7	4.4444444444
+UniRef50_S6AIU7|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4444444444
+UniRef50_UPI0004627841: PREDICTED: COUP transcription factor 1-like, partial	4.4444444444
+UniRef50_UPI0004627841: PREDICTED: COUP transcription factor 1-like, partial|unclassified	4.4444444444
+UniRef50_UPI000466CE08: hypothetical protein, partial	4.4444444444
+UniRef50_UPI000466CE08: hypothetical protein, partial|unclassified	4.4444444444
+UniRef50_V5T139	4.4444444444
+UniRef50_V5T139|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4444444444
+UniRef50_X5EYJ3	4.4444444444
+UniRef50_X5EYJ3|unclassified	4.4444444444
+UniRef50_A6LV83: AMP-dependent synthetase and ligase	4.4441095360
+UniRef50_A6LV83: AMP-dependent synthetase and ligase|g__Clostridium.s__Clostridium_beijerinckii	4.4441095360
+UniRef50_A6VYP9: Oxidoreductase FAD-binding domain protein	4.4440751511
+UniRef50_A6VYP9: Oxidoreductase FAD-binding domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4440751511
+UniRef50_R5BVY8: Adenylylsulfate reductase	4.4439646229
+UniRef50_R5BVY8: Adenylylsulfate reductase|g__Clostridium.s__Clostridium_beijerinckii	4.4439646229
+UniRef50_S9RYT9	4.4429054411
+UniRef50_S9RYT9|unclassified	4.4429054411
+UniRef50_F3J1W5	4.4427175892
+UniRef50_F3J1W5|unclassified	4.4427175892
+UniRef50_Q895J2: Zinc protease	4.4419748079
+UniRef50_Q895J2: Zinc protease|g__Clostridium.s__Clostridium_beijerinckii	4.4419748079
+UniRef50_Q97KZ3: Putative ABC transporter ATP-binding protein CA_C0773	4.4409780780
+UniRef50_Q97KZ3: Putative ABC transporter ATP-binding protein CA_C0773|g__Clostridium.s__Clostridium_beijerinckii	4.4409780780
+UniRef50_UPI00036CEFA3: MULTISPECIES: hypothetical protein	4.4408301026
+UniRef50_UPI00036CEFA3: MULTISPECIES: hypothetical protein|unclassified	4.4408301026
+UniRef50_B2TK60: Probable septum site-determining protein MinC	4.4402832882
+UniRef50_B2TK60: Probable septum site-determining protein MinC|g__Clostridium.s__Clostridium_beijerinckii	4.4402832882
+UniRef50_A4VKS4: Lipoprotein, putative	4.4401381801
+UniRef50_A4VKS4: Lipoprotein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4401381801
+UniRef50_A6LWL8	4.4391263508
+UniRef50_A6LWL8|g__Clostridium.s__Clostridium_beijerinckii	4.4391263508
+UniRef50_A0A019D3V1	4.4387337321
+UniRef50_A0A019D3V1|unclassified	4.4387337321
+UniRef50_Q02Y94: Na+-driven multidrug efflux pump	4.4384532029
+UniRef50_Q02Y94: Na+-driven multidrug efflux pump|g__Clostridium.s__Clostridium_beijerinckii	4.4384532029
+UniRef50_UPI000262A595: membrane protein	4.4374040655
+UniRef50_UPI000262A595: membrane protein|unclassified	4.4374040655
+UniRef50_A6TP37: Ribosomal RNA adenine dimethylase	4.4370196476
+UniRef50_A6TP37: Ribosomal RNA adenine dimethylase|g__Clostridium.s__Clostridium_beijerinckii	4.4370196476
+UniRef50_A0A009VZS8: Penicillin-binding protein 2	4.4367154592
+UniRef50_A0A009VZS8: Penicillin-binding protein 2|g__Acinetobacter.s__Acinetobacter_baumannii	4.4367154592
+UniRef50_F6AH52: Acylglycerol lipase	4.4364417054
+UniRef50_F6AH52: Acylglycerol lipase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4364417054
+UniRef50_F0KEE0: Membrane flavodoxin oxidoreductase	4.4362622321
+UniRef50_F0KEE0: Membrane flavodoxin oxidoreductase|g__Clostridium.s__Clostridium_beijerinckii	4.4362622321
+UniRef50_F0KJU7: Siderophore-interacting protein	4.4354140924
+UniRef50_F0KJU7: Siderophore-interacting protein|g__Acinetobacter.s__Acinetobacter_baumannii	4.4354140924
+UniRef50_C9LYM2: ATP-dependent protease, Lon family	4.4344105161
+UniRef50_C9LYM2: ATP-dependent protease, Lon family|g__Clostridium.s__Clostridium_beijerinckii	4.4344105161
+UniRef50_O87388: Sarcosine oxidase subunit beta	4.4337346108
+UniRef50_O87388: Sarcosine oxidase subunit beta|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0693517620
+UniRef50_O87388: Sarcosine oxidase subunit beta|unclassified	1.3643828487
+UniRef50_Q9I5S3	4.4323583816
+UniRef50_Q9I5S3|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4323583816
+UniRef50_C1DF80: Lipolytic enzyme, G-D-S-L domain protein	4.4318043416
+UniRef50_C1DF80: Lipolytic enzyme, G-D-S-L domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4318043416
+UniRef50_P76057	4.4309047419
+UniRef50_P76057|unclassified	4.4309047419
+UniRef50_F2LAJ8	4.4300336562
+UniRef50_F2LAJ8|g__Acinetobacter.s__Acinetobacter_baumannii	4.4300336562
+UniRef50_UPI00036FDCA7: hypothetical protein	4.4297277410
+UniRef50_UPI00036FDCA7: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.4297277410
+UniRef50_J9CFW3	4.4296995644
+UniRef50_J9CFW3|unclassified	4.4296995644
+UniRef50_A6LVM3: Drug resistance transporter, EmrB/QacA subfamily	4.4286624775
+UniRef50_A6LVM3: Drug resistance transporter, EmrB/QacA subfamily|g__Clostridium.s__Clostridium_beijerinckii	4.4286624775
+UniRef50_Q6F6T5	4.4274383897
+UniRef50_Q6F6T5|g__Acinetobacter.s__Acinetobacter_baumannii	4.4274383897
+UniRef50_I4D272: Chemotaxis response regulator protein-glutamate methylesterase	4.4273196306
+UniRef50_I4D272: Chemotaxis response regulator protein-glutamate methylesterase|g__Clostridium.s__Clostridium_beijerinckii	4.4273196306
+UniRef50_F0RN90: Alpha/beta hydrolase fold protein	4.4268539068
+UniRef50_F0RN90: Alpha/beta hydrolase fold protein|g__Deinococcus.s__Deinococcus_radiodurans	4.4268539068
+UniRef50_U3TBQ8	4.4259686328
+UniRef50_U3TBQ8|g__Acinetobacter.s__Acinetobacter_baumannii	4.4259686328
+UniRef50_A4XNZ9: Lysine exporter protein (LYSE/YGGA)	4.4247787611
+UniRef50_A4XNZ9: Lysine exporter protein (LYSE/YGGA)|g__Acinetobacter.s__Acinetobacter_baumannii	4.4247787611
+UniRef50_A6LZH7: Transcriptional regulator, MarR family	4.4247787611
+UniRef50_A6LZH7: Transcriptional regulator, MarR family|g__Clostridium.s__Clostridium_beijerinckii	4.4247787611
+UniRef50_A6M0P5	4.4247787611
+UniRef50_A6M0P5|g__Clostridium.s__Clostridium_beijerinckii	4.4247787611
+UniRef50_D7GFE3: Regulatory protein, TetR	4.4247787611
+UniRef50_D7GFE3: Regulatory protein, TetR|g__Propionibacterium.s__Propionibacterium_acnes	4.4247787611
+UniRef50_F3NZG9	4.4247787611
+UniRef50_F3NZG9|g__Propionibacterium.s__Propionibacterium_acnes	4.4247787611
+UniRef50_J1AUY7	4.4247787611
+UniRef50_J1AUY7|g__Staphylococcus.s__Staphylococcus_epidermidis	4.4247787611
+UniRef50_J9YP11: TenA family transcriptional regulator	4.4247787611
+UniRef50_J9YP11: TenA family transcriptional regulator|g__Streptococcus.s__Streptococcus_agalactiae	4.4247787611
+UniRef50_Q6A8F5	4.4247787611
+UniRef50_Q6A8F5|g__Propionibacterium.s__Propionibacterium_acnes	4.4247787611
+UniRef50_R8D0Z6	4.4247787611
+UniRef50_R8D0Z6|unclassified	4.4247787611
+UniRef50_T7VHV2	4.4247787611
+UniRef50_T7VHV2|g__Escherichia.s__Escherichia_coli	4.4247787611
+UniRef50_A0A011UWD2	4.4234958082
+UniRef50_A0A011UWD2|unclassified	4.4234958082
+UniRef50_Q2FW88	4.4230957350
+UniRef50_Q2FW88|unclassified	4.4230957350
+UniRef50_H2ISY5: Multidrug resistance efflux pump	4.4229095830
+UniRef50_H2ISY5: Multidrug resistance efflux pump|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4229095830
+UniRef50_A6LTW3	4.4217499758
+UniRef50_A6LTW3|g__Clostridium.s__Clostridium_beijerinckii	4.4217499758
+UniRef50_Q1GJM0	4.4210090984
+UniRef50_Q1GJM0|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.4210090984
+UniRef50_P36949: D-ribose-binding protein	4.4200983954
+UniRef50_P36949: D-ribose-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	4.4200983954
+UniRef50_A3M2G1	4.4197819315
+UniRef50_A3M2G1|g__Acinetobacter.s__Acinetobacter_baumannii	4.4197819315
+UniRef50_B0S1E5: Translation initiation factor IF-2	4.4196753936
+UniRef50_B0S1E5: Translation initiation factor IF-2|g__Clostridium.s__Clostridium_beijerinckii	4.4196753936
+UniRef50_Q88NC9: Poly(beta-D-mannuronate) C5 epimerase	4.4186878793
+UniRef50_Q88NC9: Poly(beta-D-mannuronate) C5 epimerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4186878793
+UniRef50_C6CW93: Major facilitator superfamily MFS_1	4.4182914576
+UniRef50_C6CW93: Major facilitator superfamily MFS_1|g__Clostridium.s__Clostridium_beijerinckii	4.4182914576
+UniRef50_B7GVN4: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--2,6-diaminopimelate ligase	4.4181984961
+UniRef50_B7GVN4: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--2,6-diaminopimelate ligase|g__Acinetobacter.s__Acinetobacter_baumannii	4.4181984961
+UniRef50_I4EST6	4.4169745963
+UniRef50_I4EST6|unclassified	4.4169745963
+UniRef50_A6LPV8: Isoaspartyl dipeptidase	4.4169392007
+UniRef50_A6LPV8: Isoaspartyl dipeptidase|g__Clostridium.s__Clostridium_beijerinckii	4.4169392007
+UniRef50_E3YKE4	4.4167811528
+UniRef50_E3YKE4|unclassified	4.4167811528
+UniRef50_V9VZS0	4.4166705759
+UniRef50_V9VZS0|unclassified	4.4166705759
+UniRef50_U5MS35	4.4166183757
+UniRef50_U5MS35|g__Clostridium.s__Clostridium_beijerinckii	4.4166183757
+UniRef50_S6AZQ2	4.4156345995
+UniRef50_S6AZQ2|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2656892288
+UniRef50_S6AZQ2|unclassified	0.1499453707
+UniRef50_U5S306	4.4143796321
+UniRef50_U5S306|g__Clostridium.s__Clostridium_beijerinckii	4.4143796321
+UniRef50_S0U1N3	4.4137147424
+UniRef50_S0U1N3|g__Escherichia.s__Escherichia_coli	4.4137147424
+UniRef50_A6LU84: Small GTP-binding protein	4.4127598926
+UniRef50_A6LU84: Small GTP-binding protein|g__Clostridium.s__Clostridium_beijerinckii	4.4127598926
+UniRef50_Q9RWB6	4.4121146506
+UniRef50_Q9RWB6|g__Deinococcus.s__Deinococcus_radiodurans	4.4121146506
+UniRef50_Q0FUB4: Replication initiator RepC	4.4117748578
+UniRef50_Q0FUB4: Replication initiator RepC|unclassified	4.4117748578
+UniRef50_F0Y482: Expressed protein (Fragment)	4.4101341122
+UniRef50_F0Y482: Expressed protein (Fragment)|unclassified	4.4101341122
+UniRef50_M1PK17	4.4088808377
+UniRef50_M1PK17|unclassified	4.4088808377
+UniRef50_A4VLJ6: Outer membrane protein	4.4088175051
+UniRef50_A4VLJ6: Outer membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4088175051
+UniRef50_L1K7Z2	4.4075612396
+UniRef50_L1K7Z2|unclassified	4.4075612396
+UniRef50_UPI00023787D7: hypothetical protein	4.4071511746
+UniRef50_UPI00023787D7: hypothetical protein|unclassified	4.4071511746
+UniRef50_C7RQG5: Thioesterase superfamily protein	4.4056283358
+UniRef50_C7RQG5: Thioesterase superfamily protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.4056283358
+UniRef50_F7ZT52: ABC-type transporter, duplicate ATPase component	4.4054524428
+UniRef50_F7ZT52: ABC-type transporter, duplicate ATPase component|g__Clostridium.s__Clostridium_beijerinckii	4.4054524428
+UniRef50_F3U4X2	4.4052863436
+UniRef50_F3U4X2|unclassified	4.4052863436
+UniRef50_H9USA0: Prophage DLP12 integrase	4.4052863436
+UniRef50_H9USA0: Prophage DLP12 integrase|g__Escherichia.s__Escherichia_coli	4.4052863436
+UniRef50_Q3J4P2	4.4052863436
+UniRef50_Q3J4P2|unclassified	4.4052863436
+UniRef50_Q57902: Protein translation factor SUI1 homolog	4.4052863436
+UniRef50_Q57902: Protein translation factor SUI1 homolog|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.4052863436
+UniRef50_Q6F6V8	4.4052863436
+UniRef50_Q6F6V8|g__Acinetobacter.s__Acinetobacter_baumannii	4.4052863436
+UniRef50_W8TC86	4.4052863436
+UniRef50_W8TC86|g__Escherichia.s__Escherichia_coli	4.4052863436
+UniRef50_C1CSL1: Transposase	4.4051498476
+UniRef50_C1CSL1: Transposase|unclassified	4.4051498476
+UniRef50_UPI000465DFA0: hypothetical protein	4.4048094007
+UniRef50_UPI000465DFA0: hypothetical protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8926630305
+UniRef50_UPI000465DFA0: hypothetical protein|unclassified	0.5121463702
+UniRef50_Q9I0K4: Isocitrate lyase	4.4047538000
+UniRef50_Q9I0K4: Isocitrate lyase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2629977923
+UniRef50_Q9I0K4: Isocitrate lyase|g__Acinetobacter.s__Acinetobacter_baumannii	1.7081891958
+UniRef50_Q9I0K4: Isocitrate lyase|unclassified	0.4335668120
+UniRef50_E3GES0	4.4028233636
+UniRef50_E3GES0|g__Clostridium.s__Clostridium_beijerinckii	4.4028233636
+UniRef50_J2MU13: Rod shape-determining protein MreC	4.4025990696
+UniRef50_J2MU13: Rod shape-determining protein MreC|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.4025990696
+UniRef50_A1T630	4.4017158126
+UniRef50_A1T630|unclassified	4.4017158126
+UniRef50_UPI0001D2E559: AraC family transcriptional regulator	4.4011637803
+UniRef50_UPI0001D2E559: AraC family transcriptional regulator|unclassified	4.4011637803
+UniRef50_G7M0S1: Lysine--tRNA ligase	4.4006539772
+UniRef50_G7M0S1: Lysine--tRNA ligase|g__Clostridium.s__Clostridium_beijerinckii	4.4006539772
+UniRef50_M4YWG8: Sortase	4.4004453696
+UniRef50_M4YWG8: Sortase|g__Streptococcus.s__Streptococcus_agalactiae	4.4004453696
+UniRef50_I2BVX5	4.3996055922
+UniRef50_I2BVX5|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3996055922
+UniRef50_K0N7F3: PTS system beta-glucoside-specific EIIBCA component	4.3995359528
+UniRef50_K0N7F3: PTS system beta-glucoside-specific EIIBCA component|g__Clostridium.s__Clostridium_beijerinckii	4.3995359528
+UniRef50_Q9HVN8	4.3993193820
+UniRef50_Q9HVN8|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3993193820
+UniRef50_D8ACP8	4.3992550258
+UniRef50_D8ACP8|g__Escherichia.s__Escherichia_coli	3.0030030030
+UniRef50_D8ACP8|unclassified	1.3962520228
+UniRef50_B3TB38	4.3988052184
+UniRef50_B3TB38|unclassified	4.3988052184
+UniRef50_A4WQS7	4.3988024224
+UniRef50_A4WQS7|unclassified	4.3988024224
+UniRef50_F0KLN9: Alkanesulfonate monooxygenase	4.3981090855
+UniRef50_F0KLN9: Alkanesulfonate monooxygenase|g__Acinetobacter.s__Acinetobacter_baumannii	4.3981090855
+UniRef50_U7GP52	4.3977936394
+UniRef50_U7GP52|unclassified	4.3977936394
+UniRef50_T2EES2: 3-beta hydroxysteroid dehydrogenase/isomerase family protein	4.3977736068
+UniRef50_T2EES2: 3-beta hydroxysteroid dehydrogenase/isomerase family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3977736068
+UniRef50_UPI00045E76FE: hypothetical protein	4.3965675730
+UniRef50_UPI00045E76FE: hypothetical protein|unclassified	4.3965675730
+UniRef50_E2XNR6: Chemotaxis sensory transducer	4.3964438351
+UniRef50_E2XNR6: Chemotaxis sensory transducer|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3964438351
+UniRef50_Q834K3: ATP-dependent protease subunit HslV	4.3958019854
+UniRef50_Q834K3: ATP-dependent protease subunit HslV|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3958019854
+UniRef50_G7M3D6: GCN5-related N-acetyltransferase	4.3956043956
+UniRef50_G7M3D6: GCN5-related N-acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	4.3956043956
+UniRef50_Q3D415	4.3956043956
+UniRef50_Q3D415|unclassified	4.3956043956
+UniRef50_I7EE24	4.3940492349
+UniRef50_I7EE24|unclassified	4.3940492349
+UniRef50_UPI00035DE786: hypothetical protein	4.3937859427
+UniRef50_UPI00035DE786: hypothetical protein|unclassified	4.3937859427
+UniRef50_A6M1X4: Integral membrane sensor signal transduction histidine kinase	4.3934105219
+UniRef50_A6M1X4: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	4.3934105219
+UniRef50_S6AZU1: Acetyltransferases, including N-acetylases of ribosomal proteins	4.3920098499
+UniRef50_S6AZU1: Acetyltransferases, including N-acetylases of ribosomal proteins|g__Streptococcus.s__Streptococcus_agalactiae	4.3920098499
+UniRef50_B7UYW2: Proline utilization regulator	4.3910880381
+UniRef50_B7UYW2: Proline utilization regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3910880381
+UniRef50_B0KQA4: Lipoprotein	4.3902772672
+UniRef50_B0KQA4: Lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3902772672
+UniRef50_H8WF00: Conserved sORF	4.3899762210
+UniRef50_H8WF00: Conserved sORF|unclassified	4.3899762210
+UniRef50_G7M580	4.3898953685
+UniRef50_G7M580|g__Clostridium.s__Clostridium_beijerinckii	4.3898953685
+UniRef50_A6F174	4.3898070899
+UniRef50_A6F174|unclassified	4.3898070899
+UniRef50_S1H2Y6: Protein YibB	4.3886909670
+UniRef50_S1H2Y6: Protein YibB|g__Escherichia.s__Escherichia_coli	4.1809382154
+UniRef50_S1H2Y6: Protein YibB|unclassified	0.2077527516
+UniRef50_B9KW74: DMSO-membrane protein	4.3884471994
+UniRef50_B9KW74: DMSO-membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.3884471994
+UniRef50_A6LZZ5	4.3871780442
+UniRef50_A6LZZ5|g__Clostridium.s__Clostridium_beijerinckii	4.3871780442
+UniRef50_R7QFH8: Stackhouse genomic scaffold, scaffold_239	4.3871628982
+UniRef50_R7QFH8: Stackhouse genomic scaffold, scaffold_239|unclassified	4.3871628982
+UniRef50_Q2YY30: Truncated cell surface fibronectin-binding protein	4.3860223843
+UniRef50_Q2YY30: Truncated cell surface fibronectin-binding protein|unclassified	4.3860223843
+UniRef50_A6V829	4.3859649123
+UniRef50_A6V829|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3859649123
+UniRef50_A8YZD0	4.3859649123
+UniRef50_A8YZD0|g__Staphylococcus.s__Staphylococcus_aureus	4.3859649123
+UniRef50_P0ACH6: Multiple antibiotic resistance protein MarA	4.3859649123
+UniRef50_P0ACH6: Multiple antibiotic resistance protein MarA|g__Escherichia.s__Escherichia_coli	4.3859649123
+UniRef50_P0C467: 30S ribosomal protein S14, chloroplastic	4.3859649123
+UniRef50_P0C467: 30S ribosomal protein S14, chloroplastic|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.3859649123
+UniRef50_Q31V60	4.3859649123
+UniRef50_Q31V60|g__Escherichia.s__Escherichia_coli	4.3859649123
+UniRef50_Q601J1: 30S ribosomal protein S13	4.3859649123
+UniRef50_Q601J1: 30S ribosomal protein S13|g__Escherichia.s__Escherichia_coli	4.3859649123
+UniRef50_Q9RXZ8: 6,7-dimethyl-8-ribityllumazine synthase	4.3859649123
+UniRef50_Q9RXZ8: 6,7-dimethyl-8-ribityllumazine synthase|g__Deinococcus.s__Deinococcus_radiodurans	4.3859649123
+UniRef50_T0VCY6	4.3859649123
+UniRef50_T0VCY6|g__Streptococcus.s__Streptococcus_agalactiae	4.3859649123
+UniRef50_UPI0001A445E7: methyl-accepting chemotaxis protein	4.3859649123
+UniRef50_UPI0001A445E7: methyl-accepting chemotaxis protein|unclassified	4.3859649123
+UniRef50_G7M7C1: Cell wall binding repeat-containing protein	4.3858116201
+UniRef50_G7M7C1: Cell wall binding repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	4.3858116201
+UniRef50_UPI00034CFC4E: hypothetical protein	4.3841489378
+UniRef50_UPI00034CFC4E: hypothetical protein|unclassified	4.3841489378
+UniRef50_W8XUI1	4.3835714398
+UniRef50_W8XUI1|unclassified	4.3835714398
+UniRef50_A4WTS9	4.3823439060
+UniRef50_A4WTS9|unclassified	4.3823439060
+UniRef50_C9QWV1: Autotransporter (AT) family porin	4.3808259175
+UniRef50_C9QWV1: Autotransporter (AT) family porin|g__Escherichia.s__Escherichia_coli	4.3808259175
+UniRef50_Q9HZP7: Electron transfer flavoprotein subunit alpha	4.3806981143
+UniRef50_Q9HZP7: Electron transfer flavoprotein subunit alpha|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3806981143
+UniRef50_L3WXL8: Pseudouridine-5'-phosphate glycosidase	4.3801952261
+UniRef50_L3WXL8: Pseudouridine-5'-phosphate glycosidase|g__Escherichia.s__Escherichia_coli	4.3801952261
+UniRef50_K1C2I8	4.3795948437
+UniRef50_K1C2I8|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9643250039
+UniRef50_K1C2I8|unclassified	0.4152698397
+UniRef50_B2IFK7: Two component transcriptional regulator, winged helix family	4.3795873148
+UniRef50_B2IFK7: Two component transcriptional regulator, winged helix family|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.3795873148
+UniRef50_M1LZF7: Transcriptional antiterminator	4.3792267417
+UniRef50_M1LZF7: Transcriptional antiterminator|g__Clostridium.s__Clostridium_beijerinckii	4.3792267417
+UniRef50_V8HF01: Transposase IS5	4.3777082873
+UniRef50_V8HF01: Transposase IS5|unclassified	4.3777082873
+UniRef50_W0GX12	4.3774233225
+UniRef50_W0GX12|unclassified	4.3774233225
+UniRef50_Q46ZU2: ABC transporter, substrate-binding protein, aliphatic sulfonates	4.3765562153
+UniRef50_Q46ZU2: ABC transporter, substrate-binding protein, aliphatic sulfonates|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3765562153
+UniRef50_UPI0003B4E169: hypothetical protein, partial	4.3764148843
+UniRef50_UPI0003B4E169: hypothetical protein, partial|unclassified	4.3764148843
+UniRef50_W4JVP7	4.3763676149
+UniRef50_W4JVP7|unclassified	4.3763676149
+UniRef50_E8U6I4: Agmatine deiminase	4.3760862558
+UniRef50_E8U6I4: Agmatine deiminase|g__Deinococcus.s__Deinococcus_radiodurans	4.3760862558
+UniRef50_A5N2B2: Phage-related protein	4.3742650439
+UniRef50_A5N2B2: Phage-related protein|g__Clostridium.s__Clostridium_beijerinckii	4.3742650439
+UniRef50_E2WTE1	4.3735607111
+UniRef50_E2WTE1|unclassified	4.3735607111
+UniRef50_Q1J1L0: Mannose-6-phosphate isomerase, type 1	4.3727598566
+UniRef50_Q1J1L0: Mannose-6-phosphate isomerase, type 1|g__Deinococcus.s__Deinococcus_radiodurans	4.3727598566
+UniRef50_V7EFM9	4.3726853143
+UniRef50_V7EFM9|unclassified	4.3726853143
+UniRef50_X2HZR9: Glycosyltransferase 9 family protein	4.3715914985
+UniRef50_X2HZR9: Glycosyltransferase 9 family protein|g__Helicobacter.s__Helicobacter_pylori	4.3715914985
+UniRef50_I3X6F9	4.3714882867
+UniRef50_I3X6F9|unclassified	4.3714882867
+UniRef50_G5PYB8	4.3708867183
+UniRef50_G5PYB8|unclassified	4.3708867183
+UniRef50_A3CQK2	4.3705597453
+UniRef50_A3CQK2|g__Streptococcus.s__Streptococcus_agalactiae	4.3705597453
+UniRef50_Q9RTA5	4.3704419995
+UniRef50_Q9RTA5|unclassified	4.3704419995
+UniRef50_W0YNY5: Putrescine-binding periplasmic protein	4.3702347130
+UniRef50_W0YNY5: Putrescine-binding periplasmic protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3702347130
+UniRef50_K0MYD7: PTS system maltose-and glucose-specific EIICB component	4.3680239655
+UniRef50_K0MYD7: PTS system maltose-and glucose-specific EIICB component|g__Clostridium.s__Clostridium_beijerinckii	4.3680239655
+UniRef50_A6LPC3: ATP-dependent helicase/deoxyribonuclease subunit B	4.3671609253
+UniRef50_A6LPC3: ATP-dependent helicase/deoxyribonuclease subunit B|g__Clostridium.s__Clostridium_beijerinckii	4.3671609253
+UniRef50_Q8DER4: DNA mismatch repair protein MutH	4.3668122271
+UniRef50_Q8DER4: DNA mismatch repair protein MutH|g__Escherichia.s__Escherichia_coli	4.3668122271
+UniRef50_B5R7C5: RHS-family protein	4.3668122271
+UniRef50_B5R7C5: RHS-family protein|g__Escherichia.s__Escherichia_coli	4.3668122271
+UniRef50_L3X118: Inner membrane ABC transporter ATP-binding protein YddA	4.3668122271
+UniRef50_L3X118: Inner membrane ABC transporter ATP-binding protein YddA|g__Escherichia.s__Escherichia_coli	4.3668122271
+UniRef50_U3SUW6	4.3668122271
+UniRef50_U3SUW6|g__Streptococcus.s__Streptococcus_mutans	4.3668122271
+UniRef50_W9TR04	4.3668122271
+UniRef50_W9TR04|unclassified	4.3668122271
+UniRef50_T2E3D9: Cytochrome c oxidase accessory protein CcoG	4.3661300508
+UniRef50_T2E3D9: Cytochrome c oxidase accessory protein CcoG|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3661300508
+UniRef50_S9S862	4.3647689071
+UniRef50_S9S862|unclassified	4.3647689071
+UniRef50_UPI00034D7E89: hypothetical protein	4.3643559108
+UniRef50_UPI00034D7E89: hypothetical protein|unclassified	4.3643559108
+UniRef50_D4HB94: Precorrin-4 C(11)-methyltransferase	4.3637685279
+UniRef50_D4HB94: Precorrin-4 C(11)-methyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	4.3637685279
+UniRef50_E3A0M4	4.3636647142
+UniRef50_E3A0M4|unclassified	4.3636647142
+UniRef50_A6LT53	4.3636018683
+UniRef50_A6LT53|g__Clostridium.s__Clostridium_beijerinckii	4.3636018683
+UniRef50_A0A023SJD6	4.3615758581
+UniRef50_A0A023SJD6|g__Streptococcus.s__Streptococcus_agalactiae	4.3615758581
+UniRef50_V0WYS8	4.3607965342
+UniRef50_V0WYS8|unclassified	2.2421524664
+UniRef50_V0WYS8|g__Escherichia.s__Escherichia_coli	2.1186440678
+UniRef50_K0HMU2: Polysaccharide deacetylase	4.3607324712
+UniRef50_K0HMU2: Polysaccharide deacetylase|g__Propionibacterium.s__Propionibacterium_acnes	4.3607324712
+UniRef50_N4PRM8	4.3599426837
+UniRef50_N4PRM8|unclassified	4.3599426837
+UniRef50_Q47482: ORF114	4.3594434085
+UniRef50_Q47482: ORF114|unclassified	4.3594434085
+UniRef50_Q97K30: Probable M18 family aminopeptidase 1	4.3593627552
+UniRef50_Q97K30: Probable M18 family aminopeptidase 1|g__Clostridium.s__Clostridium_beijerinckii	4.3593627552
+UniRef50_K4PVN2: Glycosyl transferase, family 2	4.3588515291
+UniRef50_K4PVN2: Glycosyl transferase, family 2|g__Streptococcus.s__Streptococcus_agalactiae	4.3588515291
+UniRef50_F0MZ05	4.3587825684
+UniRef50_F0MZ05|g__Neisseria.s__Neisseria_meningitidis	4.3587825684
+UniRef50_D9SQP8: YhhN family protein	4.3586676824
+UniRef50_D9SQP8: YhhN family protein|g__Clostridium.s__Clostridium_beijerinckii	4.3586676824
+UniRef50_M3G6K7: Mg(2+) transport ATPase protein C	4.3575621860
+UniRef50_M3G6K7: Mg(2+) transport ATPase protein C|g__Acinetobacter.s__Acinetobacter_baumannii	4.3575621860
+UniRef50_Q1IEH7: GTPase Der	4.3573548649
+UniRef50_Q1IEH7: GTPase Der|g__Acinetobacter.s__Acinetobacter_baumannii	4.3573548649
+UniRef50_B5F445: Aspartate carbamoyltransferase regulatory chain	4.3572984749
+UniRef50_B5F445: Aspartate carbamoyltransferase regulatory chain|g__Escherichia.s__Escherichia_coli	4.3572984749
+UniRef50_W4TXL6: Iron ABC transporter	4.3572984749
+UniRef50_W4TXL6: Iron ABC transporter|g__Propionibacterium.s__Propionibacterium_acnes	4.3572984749
+UniRef50_W0AA74	4.3550286972
+UniRef50_W0AA74|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3550286972
+UniRef50_UPI0004210B91: thioredoxin	4.3549356721
+UniRef50_UPI0004210B91: thioredoxin|unclassified	4.3549356721
+UniRef50_E2XM14	4.3534983976
+UniRef50_E2XM14|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3534983976
+UniRef50_A4Y1A0: Membrane protein insertase YidC	4.3534394732
+UniRef50_A4Y1A0: Membrane protein insertase YidC|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3534394732
+UniRef50_V7EZM1	4.3532440435
+UniRef50_V7EZM1|unclassified	4.3532440435
+UniRef50_R9SJD6: Probable Brix domain-containing ribosomal biogenesis protein	4.3529746116
+UniRef50_R9SJD6: Probable Brix domain-containing ribosomal biogenesis protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.3529746116
+UniRef50_A8F961: Serine acetyltransferase	4.3524530956
+UniRef50_A8F961: Serine acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	4.2170634577
+UniRef50_A8F961: Serine acetyltransferase|unclassified	0.1353896379
+UniRef50_W8X9Y2	4.3520687887
+UniRef50_W8X9Y2|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1291416965
+UniRef50_W8X9Y2|unclassified	0.2229270922
+UniRef50_UPI00036E2F89: hypothetical protein	4.3511168670
+UniRef50_UPI00036E2F89: hypothetical protein|unclassified	4.3511168670
+UniRef50_U5NRI8	4.3510483471
+UniRef50_U5NRI8|unclassified	4.3510483471
+UniRef50_A0A023S0A3: LysR family transcriptional regulator	4.3501895058
+UniRef50_A0A023S0A3: LysR family transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	4.3501895058
+UniRef50_F9Y5J2	4.3493671258
+UniRef50_F9Y5J2|unclassified	4.3493671258
+UniRef50_A8MHC4: tRNA (guanine-N(1)-)-methyltransferase	4.3489654814
+UniRef50_A8MHC4: tRNA (guanine-N(1)-)-methyltransferase|g__Clostridium.s__Clostridium_beijerinckii	4.1802154598
+UniRef50_A8MHC4: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.1687500216
+UniRef50_A0NWG0	4.3487040290
+UniRef50_A0NWG0|unclassified	4.3487040290
+UniRef50_A5UJ91: UPF0305 protein Msm_0064	4.3481548699
+UniRef50_A5UJ91: UPF0305 protein Msm_0064|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.3481548699
+UniRef50_A0A024EKM0: Peptidyl-prolyl cis-trans isomerase, FkbP-type	4.3478260870
+UniRef50_A0A024EKM0: Peptidyl-prolyl cis-trans isomerase, FkbP-type|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3478260870
+UniRef50_A9B145: NAD(P)H dehydrogenase (Quinone)	4.3478260870
+UniRef50_A9B145: NAD(P)H dehydrogenase (Quinone)|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3478260870
+UniRef50_B0V429: Transcriptional repressor, antitoxin for RelE-like (RelB-like)	4.3478260870
+UniRef50_B0V429: Transcriptional repressor, antitoxin for RelE-like (RelB-like)|g__Acinetobacter.s__Acinetobacter_baumannii	4.3478260870
+UniRef50_B2HZE4: Cytidylate kinase	4.3478260870
+UniRef50_B2HZE4: Cytidylate kinase|g__Acinetobacter.s__Acinetobacter_baumannii	4.3478260870
+UniRef50_E4BBW7	4.3478260870
+UniRef50_E4BBW7|g__Propionibacterium.s__Propionibacterium_acnes	4.3478260870
+UniRef50_P29959: Cytochrome c biogenesis ATP-binding export protein CcmA	4.3478260870
+UniRef50_P29959: Cytochrome c biogenesis ATP-binding export protein CcmA|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.3478260870
+UniRef50_P36678: Putative type II secretion system protein M	4.3478260870
+UniRef50_P36678: Putative type II secretion system protein M|g__Escherichia.s__Escherichia_coli	4.3478260870
+UniRef50_Q2YT43	4.3478260870
+UniRef50_Q2YT43|g__Staphylococcus.s__Staphylococcus_aureus	4.3478260870
+UniRef50_Q5HQI7	4.3478260870
+UniRef50_Q5HQI7|g__Staphylococcus.s__Staphylococcus_aureus	4.3478260870
+UniRef50_F8JEF7	4.3474137353
+UniRef50_F8JEF7|unclassified	4.3474137353
+UniRef50_W1Y013	4.3467900311
+UniRef50_W1Y013|unclassified	4.3467900311
+UniRef50_A0A023RW94: Acyltransferase	4.3467681627
+UniRef50_A0A023RW94: Acyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	4.3467681627
+UniRef50_D0IT38: Sodium/D-alanine glycine symporter	4.3453332276
+UniRef50_D0IT38: Sodium/D-alanine glycine symporter|g__Helicobacter.s__Helicobacter_pylori	4.3453332276
+UniRef50_Q4ZMG7: Chaperone SurA	4.3452882651
+UniRef50_Q4ZMG7: Chaperone SurA|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2451099274
+UniRef50_Q4ZMG7: Chaperone SurA|unclassified	0.1001783377
+UniRef50_B9KS93	4.3452480606
+UniRef50_B9KS93|unclassified	4.3452480606
+UniRef50_R1FSG8	4.3448795997
+UniRef50_R1FSG8|unclassified	4.3448795997
+UniRef50_UPI000474C12F: glutathione ABC transporter permease, partial	4.3436576683
+UniRef50_UPI000474C12F: glutathione ABC transporter permease, partial|unclassified	4.3436576683
+UniRef50_Q9Z3Z9: Toluene tolerance protein ttg2D	4.3426175502
+UniRef50_Q9Z3Z9: Toluene tolerance protein ttg2D|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3426175502
+UniRef50_T9DD40: Hydrolase	4.3409665879
+UniRef50_T9DD40: Hydrolase|g__Escherichia.s__Escherichia_coli	4.3409665879
+UniRef50_B0UFJ0: RNA-binding S4 domain protein	4.3395610500
+UniRef50_B0UFJ0: RNA-binding S4 domain protein|unclassified	4.3395610500
+UniRef50_A1B2A8	4.3395198726
+UniRef50_A1B2A8|unclassified	4.3395198726
+UniRef50_J8HFC8	4.3393315139
+UniRef50_J8HFC8|unclassified	4.3393315139
+UniRef50_F3ZCX1	4.3379617434
+UniRef50_F3ZCX1|unclassified	4.3379617434
+UniRef50_Q9I5W0: DNA primase	4.3372099860
+UniRef50_Q9I5W0: DNA primase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2848535071
+UniRef50_Q9I5W0: DNA primase|unclassified	0.0523564788
+UniRef50_V8MVT8	4.3366788049
+UniRef50_V8MVT8|unclassified	4.3366788049
+UniRef50_Q4ZQC8: Response regulator receiver:ATP-binding region, ATPase-like:Histidine kinase A, N-terminal	4.3365616674
+UniRef50_Q4ZQC8: Response regulator receiver:ATP-binding region, ATPase-like:Histidine kinase A, N-terminal|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3365616674
+UniRef50_J8VH78: Coproporphyrinogen III oxidase (Fragment)	4.3363555802
+UniRef50_J8VH78: Coproporphyrinogen III oxidase (Fragment)|unclassified	4.3363555802
+UniRef50_A7HIP1: LigA	4.3359654211
+UniRef50_A7HIP1: LigA|unclassified	4.3359654211
+UniRef50_E7S6W5	4.3359548337
+UniRef50_E7S6W5|g__Streptococcus.s__Streptococcus_agalactiae	4.3359548337
+UniRef50_A3W226	4.3359532994
+UniRef50_A3W226|unclassified	4.3359532994
+UniRef50_B2EBN8	4.3356034414
+UniRef50_B2EBN8|unclassified	4.3356034414
+UniRef50_V5VD87: CsuC	4.3349248869
+UniRef50_V5VD87: CsuC|g__Acinetobacter.s__Acinetobacter_baumannii	4.3349248869
+UniRef50_R9ZL92	4.3348861284
+UniRef50_R9ZL92|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3348861284
+UniRef50_P07769: Benzoate 1,2-dioxygenase subunit alpha	4.3339226221
+UniRef50_P07769: Benzoate 1,2-dioxygenase subunit alpha|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5145194085
+UniRef50_P07769: Benzoate 1,2-dioxygenase subunit alpha|g__Acinetobacter.s__Acinetobacter_baumannii	1.8194032135
+UniRef50_UPI000477CEDC: competence protein ComL	4.3335803017
+UniRef50_UPI000477CEDC: competence protein ComL|unclassified	4.3335803017
+UniRef50_B1K4I6: Putative reductase Bcenmc03_4815	4.3330514593
+UniRef50_B1K4I6: Putative reductase Bcenmc03_4815|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3330514593
+UniRef50_UPI00035C70A1: hypothetical protein	4.3317200031
+UniRef50_UPI00035C70A1: hypothetical protein|unclassified	4.3317200031
+UniRef50_E7B3D1: Metallo-beta-lactamase superfamily protein PA0057	4.3303027463
+UniRef50_E7B3D1: Metallo-beta-lactamase superfamily protein PA0057|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3303027463
+UniRef50_Q9RYM8: Probable subtilase-type serine protease DR_A0283	4.3303003804
+UniRef50_Q9RYM8: Probable subtilase-type serine protease DR_A0283|g__Deinococcus.s__Deinococcus_radiodurans	4.0988188989
+UniRef50_Q9RYM8: Probable subtilase-type serine protease DR_A0283|unclassified	0.2314814815
+UniRef50_P52137: Putative arsenical pump membrane protein (Fragment)	4.3297044526
+UniRef50_P52137: Putative arsenical pump membrane protein (Fragment)|g__Escherichia.s__Escherichia_coli	4.3297044526
+UniRef50_A6LYB5: Nitroreductase	4.3290043290
+UniRef50_A6LYB5: Nitroreductase|g__Clostridium.s__Clostridium_beijerinckii	4.3290043290
+UniRef50_C2W5B8: Fis-type helix-turn-helix domain protein	4.3290043290
+UniRef50_C2W5B8: Fis-type helix-turn-helix domain protein|unclassified	4.3290043290
+UniRef50_C4K3W9: Orotate phosphoribosyltransferase	4.3290043290
+UniRef50_C4K3W9: Orotate phosphoribosyltransferase|g__Neisseria.s__Neisseria_meningitidis	4.3290043290
+UniRef50_D3QZQ0: Preprotein translocase, SecG subunit	4.3290043290
+UniRef50_D3QZQ0: Preprotein translocase, SecG subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	4.3290043290
+UniRef50_D4HAV0	4.3290043290
+UniRef50_D4HAV0|g__Propionibacterium.s__Propionibacterium_acnes	4.3290043290
+UniRef50_P16691: Protein PhnO	4.3290043290
+UniRef50_P16691: Protein PhnO|g__Escherichia.s__Escherichia_coli	4.3290043290
+UniRef50_Q8DT21	4.3290043290
+UniRef50_Q8DT21|g__Streptococcus.s__Streptococcus_mutans	4.3290043290
+UniRef50_R0MNI1: GBSi1, group II intron, maturase	4.3290043290
+UniRef50_R0MNI1: GBSi1, group II intron, maturase|g__Streptococcus.s__Streptococcus_mutans	4.3290043290
+UniRef50_S5RIC3	4.3290043290
+UniRef50_S5RIC3|g__Streptococcus.s__Streptococcus_mutans	4.3290043290
+UniRef50_UPI00038911D5: PREDICTED: transcription initiation factor TFIID subunit 4-like	4.3290043290
+UniRef50_UPI00038911D5: PREDICTED: transcription initiation factor TFIID subunit 4-like|unclassified	4.3290043290
+UniRef50_W7X2K9	4.3290043290
+UniRef50_W7X2K9|unclassified	4.3290043290
+UniRef50_W8T4J7	4.3290043290
+UniRef50_W8T4J7|g__Escherichia.s__Escherichia_coli	4.3290043290
+UniRef50_C1MS23: Predicted protein	4.3285120016
+UniRef50_C1MS23: Predicted protein|unclassified	4.3285120016
+UniRef50_H3T1L6: C4-dicarboxylate transporter (Fragment)	4.3282284765
+UniRef50_H3T1L6: C4-dicarboxylate transporter (Fragment)|unclassified	4.3282284765
+UniRef50_Q895P7: Phosphoprotein phosphatase 2C	4.3275163053
+UniRef50_Q895P7: Phosphoprotein phosphatase 2C|g__Clostridium.s__Clostridium_beijerinckii	4.3275163053
+UniRef50_A6M367: Extracellular solute-binding protein, family 1	4.3270276147
+UniRef50_A6M367: Extracellular solute-binding protein, family 1|g__Clostridium.s__Clostridium_beijerinckii	4.3270276147
+UniRef50_E2ZWD9: Putative two-component response regulator	4.3269915010
+UniRef50_E2ZWD9: Putative two-component response regulator|unclassified	4.3269915010
+UniRef50_D4HCC5: Transcriptional regulator, LacI family	4.3269777061
+UniRef50_D4HCC5: Transcriptional regulator, LacI family|g__Propionibacterium.s__Propionibacterium_acnes	4.3269777061
+UniRef50_A3PND2: Two component transcriptional regulator, winged helix family	4.3257019896
+UniRef50_A3PND2: Two component transcriptional regulator, winged helix family|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.3257019896
+UniRef50_H5NLA3	4.3246172997
+UniRef50_H5NLA3|unclassified	4.3246172997
+UniRef50_S1SZN3	4.3232104931
+UniRef50_S1SZN3|unclassified	4.3232104931
+UniRef50_A0A024HNH0	4.3230126862
+UniRef50_A0A024HNH0|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3230126862
+UniRef50_R4XQ21: Phage minor tail protein	4.3227665706
+UniRef50_R4XQ21: Phage minor tail protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3227665706
+UniRef50_UPI00036E2E8C: hypothetical protein, partial	4.3210204422
+UniRef50_UPI00036E2E8C: hypothetical protein, partial|unclassified	4.3210204422
+UniRef50_Q9KVL7: Diaminopimelate decarboxylase	4.3205941165
+UniRef50_Q9KVL7: Diaminopimelate decarboxylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2163618709
+UniRef50_Q9KVL7: Diaminopimelate decarboxylase|unclassified	0.1042322457
+UniRef50_M1VMH5	4.3203341574
+UniRef50_M1VMH5|unclassified	4.3203341574
+UniRef50_K4AQT9	4.3203262554
+UniRef50_K4AQT9|unclassified	4.3203262554
+UniRef50_Q46D36: 2-cys peroxiredoxin, subunit A	4.3196745783
+UniRef50_Q46D36: 2-cys peroxiredoxin, subunit A|g__Clostridium.s__Clostridium_beijerinckii	4.3196745783
+UniRef50_UPI00046F258D: bifunctional aconitate hydratase 2/2-methylisocitrate dehydratase, partial	4.3190982463
+UniRef50_UPI00046F258D: bifunctional aconitate hydratase 2/2-methylisocitrate dehydratase, partial|g__Escherichia.s__Escherichia_coli	3.4329682083
+UniRef50_UPI00046F258D: bifunctional aconitate hydratase 2/2-methylisocitrate dehydratase, partial|g__Acinetobacter.s__Acinetobacter_baumannii	0.8861300381
+UniRef50_Z7M6T4: Metallopeptidase M24 family protein	4.3185741066
+UniRef50_Z7M6T4: Metallopeptidase M24 family protein|unclassified	4.3185741066
+UniRef50_Q2IFN9	4.3173236256
+UniRef50_Q2IFN9|unclassified	4.3173236256
+UniRef50_Q9RWX8	4.3159952163
+UniRef50_Q9RWX8|g__Deinococcus.s__Deinococcus_radiodurans	4.3159952163
+UniRef50_R4K9X6: Histone acetyltransferase	4.3148462373
+UniRef50_R4K9X6: Histone acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	4.3148462373
+UniRef50_F2ZJ87: Xanthine dehydrogenase, molybdopterin binding subunit	4.3144523161
+UniRef50_F2ZJ87: Xanthine dehydrogenase, molybdopterin binding subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3144523161
+UniRef50_B0KLC8: Lipoprotein	4.3131777851
+UniRef50_B0KLC8: Lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3131777851
+UniRef50_B7UWA3: Flagellar biosynthetic protein fliR	4.3117721919
+UniRef50_B7UWA3: Flagellar biosynthetic protein fliR|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3117721919
+UniRef50_A0A023YK94	4.3116814710
+UniRef50_A0A023YK94|unclassified	4.3116814710
+UniRef50_P94427: Probable 4-aminobutyrate aminotransferase	4.3115732049
+UniRef50_P94427: Probable 4-aminobutyrate aminotransferase|g__Clostridium.s__Clostridium_beijerinckii	4.1265133068
+UniRef50_P94427: Probable 4-aminobutyrate aminotransferase|unclassified	0.1850598981
+UniRef50_R9ZKG9: Phosphate permease	4.3108530528
+UniRef50_R9ZKG9: Phosphate permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3108530528
+UniRef50_C6SAD9	4.3103734008
+UniRef50_C6SAD9|unclassified	4.3103734008
+UniRef50_B7KZ63	4.3103448276
+UniRef50_B7KZ63|unclassified	4.3103448276
+UniRef50_B7V0E8	4.3103448276
+UniRef50_B7V0E8|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3103448276
+UniRef50_B9ADD3	4.3103448276
+UniRef50_B9ADD3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.3103448276
+UniRef50_E1I5H5	4.3103448276
+UniRef50_E1I5H5|unclassified	4.3103448276
+UniRef50_L1KH20	4.3103448276
+UniRef50_L1KH20|unclassified	4.3103448276
+UniRef50_U0DBB7: Flagellar transcriptional activator flhC	4.3103448276
+UniRef50_U0DBB7: Flagellar transcriptional activator flhC|g__Escherichia.s__Escherichia_coli	4.3103448276
+UniRef50_A4XWI0	4.3090225800
+UniRef50_A4XWI0|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8022813688
+UniRef50_A4XWI0|unclassified	0.5067412112
+UniRef50_E3EIE7: Phospholipase/carboxylesterase family protein	4.3082174881
+UniRef50_E3EIE7: Phospholipase/carboxylesterase family protein|g__Clostridium.s__Clostridium_beijerinckii	4.3082174881
+UniRef50_Q46482: Phosphoribosylamine--glycine ligase	4.3081781093
+UniRef50_Q46482: Phosphoribosylamine--glycine ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.3081781093
+UniRef50_G4LH30: GNAT family acetyltransferase	4.3079063297
+UniRef50_G4LH30: GNAT family acetyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3079063297
+UniRef50_UPI00039C791B: chemotaxis protein CheY	4.3071834467
+UniRef50_UPI00039C791B: chemotaxis protein CheY|unclassified	4.3071834467
+UniRef50_A3PNG8: Type I secretion membrane fusion protein, HlyD family	4.3066276944
+UniRef50_A3PNG8: Type I secretion membrane fusion protein, HlyD family|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.3066276944
+UniRef50_B9UPK8: PI-2a ancillary protein 1	4.3063608278
+UniRef50_B9UPK8: PI-2a ancillary protein 1|g__Streptococcus.s__Streptococcus_agalactiae	4.3063608278
+UniRef50_A9AQ95: Major facilitator superfamily MFS_1	4.3061552051
+UniRef50_A9AQ95: Major facilitator superfamily MFS_1|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3061552051
+UniRef50_X2I2X2: Type I restriction enzyme, S subunit	4.3058599320
+UniRef50_X2I2X2: Type I restriction enzyme, S subunit|g__Helicobacter.s__Helicobacter_pylori	4.3058599320
+UniRef50_A0A023S1K2: ABC transporter substrate-binding protein	4.3055555556
+UniRef50_A0A023S1K2: ABC transporter substrate-binding protein|g__Acinetobacter.s__Acinetobacter_baumannii	4.3055555556
+UniRef50_Q9RZC3: Glucose-1-phosphate thymidylyltransferase, putative	4.3048011945
+UniRef50_Q9RZC3: Glucose-1-phosphate thymidylyltransferase, putative|g__Deinococcus.s__Deinococcus_radiodurans	4.3048011945
+UniRef50_S4YYU9: Enoyl-CoA hydratase	4.3044749018
+UniRef50_S4YYU9: Enoyl-CoA hydratase|g__Acinetobacter.s__Acinetobacter_baumannii	4.3044749018
+UniRef50_A6LXJ5: Na(+)/H(+) antiporter NhaA 2	4.3034694859
+UniRef50_A6LXJ5: Na(+)/H(+) antiporter NhaA 2|g__Clostridium.s__Clostridium_beijerinckii	4.3034694859
+UniRef50_E7MYR2	4.3029959502
+UniRef50_E7MYR2|unclassified	4.3029959502
+UniRef50_UPI00047CC989: magnesium transporter	4.3029635863
+UniRef50_UPI00047CC989: magnesium transporter|unclassified	4.3029635863
+UniRef50_A3CK29: Acetylxylan esterase, putative	4.3020881812
+UniRef50_A3CK29: Acetylxylan esterase, putative|g__Streptococcus.s__Streptococcus_agalactiae	4.3020881812
+UniRef50_R8ZAQ7: Sarcosine oxidase subunit alpha	4.3019771095
+UniRef50_R8ZAQ7: Sarcosine oxidase subunit alpha|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3019771095
+UniRef50_X0XJV9: Marine sediment metagenome DNA, contig: S01H1_S41744 (Fragment)	4.3014793115
+UniRef50_X0XJV9: Marine sediment metagenome DNA, contig: S01H1_S41744 (Fragment)|unclassified	4.3014793115
+UniRef50_A0A025E569: 2,3-dihydroxy-2,3-dihydrophenylpropionate dehydrogenase	4.3010752688
+UniRef50_A0A025E569: 2,3-dihydroxy-2,3-dihydrophenylpropionate dehydrogenase|g__Escherichia.s__Escherichia_coli	4.3010752688
+UniRef50_T2H9Z7	4.3010752688
+UniRef50_T2H9Z7|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.3010752688
+UniRef50_Q9RY66: GTPase Obg	4.3005716712
+UniRef50_Q9RY66: GTPase Obg|g__Deinococcus.s__Deinococcus_radiodurans	4.3005716712
+UniRef50_B1IMN8: Exodeoxyribonuclease 7 large subunit	4.2971555006
+UniRef50_B1IMN8: Exodeoxyribonuclease 7 large subunit|g__Clostridium.s__Clostridium_beijerinckii	4.2971555006
+UniRef50_E4RMK3: Molybdenum cofactor synthesis domain protein	4.2965793506
+UniRef50_E4RMK3: Molybdenum cofactor synthesis domain protein|g__Clostridium.s__Clostridium_beijerinckii	4.2965793506
+UniRef50_P0A906: Outer membrane lipoprotein SlyB	4.2964603812
+UniRef50_P0A906: Outer membrane lipoprotein SlyB|g__Escherichia.s__Escherichia_coli	4.2964603812
+UniRef50_R9E1N9	4.2955675256
+UniRef50_R9E1N9|unclassified	4.2955675256
+UniRef50_G2JJI4	4.2947141007
+UniRef50_G2JJI4|g__Acinetobacter.s__Acinetobacter_baumannii	4.2947141007
+UniRef50_W1MRY7: Type VI secretion protein ImpA	4.2946236160
+UniRef50_W1MRY7: Type VI secretion protein ImpA|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2946236160
+UniRef50_A6LZX3: Integral membrane sensor signal transduction histidine kinase	4.2944940735
+UniRef50_A6LZX3: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	4.2944940735
+UniRef50_R4ZQK9: Predicted arginine uptake transporter	4.2941153685
+UniRef50_R4ZQK9: Predicted arginine uptake transporter|g__Streptococcus.s__Streptococcus_agalactiae	4.2941153685
+UniRef50_W1WCM5: Abortive phage resistance protein (Fragment)	4.2939171986
+UniRef50_W1WCM5: Abortive phage resistance protein (Fragment)|unclassified	4.2939171986
+UniRef50_F9Z1W7: Acyl-CoA thioesterase 2	4.2934469653
+UniRef50_F9Z1W7: Acyl-CoA thioesterase 2|g__Propionibacterium.s__Propionibacterium_acnes	4.2934469653
+UniRef50_UPI000387BEAE	4.2933751357
+UniRef50_UPI000387BEAE|unclassified	4.2933751357
+UniRef50_G8VDJ6: Kinase, PfkB family protein	4.2928276247
+UniRef50_G8VDJ6: Kinase, PfkB family protein|g__Propionibacterium.s__Propionibacterium_acnes	4.2928276247
+UniRef50_UPI0003B4C8ED: 3''''-5'''' exonuclease, partial	4.2919833610
+UniRef50_UPI0003B4C8ED: 3''''-5'''' exonuclease, partial|unclassified	4.2919833610
+UniRef50_A5N6U5: Transcriptional regulator	4.2918454936
+UniRef50_A5N6U5: Transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	4.2918454936
+UniRef50_C7ZRQ6	4.2918454936
+UniRef50_C7ZRQ6|g__Staphylococcus.s__Staphylococcus_aureus	4.2918454936
+UniRef50_I2ZRW4: Maltose regulon activator MalT domain protein	4.2918454936
+UniRef50_I2ZRW4: Maltose regulon activator MalT domain protein|g__Escherichia.s__Escherichia_coli	4.2918454936
+UniRef50_Q02MT4	4.2918454936
+UniRef50_Q02MT4|unclassified	4.2918454936
+UniRef50_Q9RS22	4.2918454936
+UniRef50_Q9RS22|g__Deinococcus.s__Deinococcus_radiodurans	4.2918454936
+UniRef50_K0SPW9	4.2905879046
+UniRef50_K0SPW9|unclassified	4.2905879046
+UniRef50_F0C0C2: TRAP-type C4-dicarboxylate transport system, large permease component	4.2899170135
+UniRef50_F0C0C2: TRAP-type C4-dicarboxylate transport system, large permease component|unclassified	4.2899170135
+UniRef50_G7LXG1	4.2888469362
+UniRef50_G7LXG1|g__Clostridium.s__Clostridium_beijerinckii	4.2888469362
+UniRef50_S9SA65	4.2881562569
+UniRef50_S9SA65|unclassified	4.2881562569
+UniRef50_R0FPI7: Arsenate reductase	4.2874480369
+UniRef50_R0FPI7: Arsenate reductase|unclassified	4.2874480369
+UniRef50_F2A9W6	4.2871023040
+UniRef50_F2A9W6|unclassified	4.2871023040
+UniRef50_P42619: Inner membrane protein YqjF	4.2870781772
+UniRef50_P42619: Inner membrane protein YqjF|g__Escherichia.s__Escherichia_coli	4.2870781772
+UniRef50_V6KKX5	4.2862660464
+UniRef50_V6KKX5|unclassified	4.2862660464
+UniRef50_A0A017YMY8: Accessory regulator protein C	4.2849584235
+UniRef50_A0A017YMY8: Accessory regulator protein C|g__Staphylococcus.s__Staphylococcus_aureus	1.6528925620
+UniRef50_A0A017YMY8: Accessory regulator protein C|unclassified	1.3500145795
+UniRef50_A0A017YMY8: Accessory regulator protein C|g__Staphylococcus.s__Staphylococcus_epidermidis	1.2820512821
+UniRef50_A1TWP1: Anhydrase, family 3 protein	4.2836102607
+UniRef50_A1TWP1: Anhydrase, family 3 protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8613636279
+UniRef50_A1TWP1: Anhydrase, family 3 protein|unclassified	0.4222466328
+UniRef50_C5AB28	4.2827036658
+UniRef50_C5AB28|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2827036658
+UniRef50_G4STG9: Pyrophosphate--fructose 6-phosphate 1-phosphotransferase	4.2821691611
+UniRef50_G4STG9: Pyrophosphate--fructose 6-phosphate 1-phosphotransferase|g__Propionibacterium.s__Propionibacterium_acnes	4.2821691611
+UniRef50_P10046: C4-dicarboxylate transport transcriptional regulatory protein DctD	4.2805676651
+UniRef50_P10046: C4-dicarboxylate transport transcriptional regulatory protein DctD|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2805676651
+UniRef50_W7WXT6	4.2796180462
+UniRef50_W7WXT6|unclassified	4.2796180462
+UniRef50_M9VBT0: RpiR family transcriptional regulator	4.2784855878
+UniRef50_M9VBT0: RpiR family transcriptional regulator|g__Propionibacterium.s__Propionibacterium_acnes	4.2784855878
+UniRef50_C7MF62: Alpha-L-fucosidase	4.2778677188
+UniRef50_C7MF62: Alpha-L-fucosidase|g__Propionibacterium.s__Propionibacterium_acnes	4.2778677188
+UniRef50_UPI00047EABE6: C4-dicarboxylate ABC transporter	4.2774052336
+UniRef50_UPI00047EABE6: C4-dicarboxylate ABC transporter|unclassified	4.2774052336
+UniRef50_Q06584: Pyocin-S2	4.2767858109
+UniRef50_Q06584: Pyocin-S2|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2767858109
+UniRef50_Q9K7C3: L-arabinose transport ATP-binding protein AraG	4.2758647469
+UniRef50_Q9K7C3: L-arabinose transport ATP-binding protein AraG|g__Clostridium.s__Clostridium_beijerinckii	4.2491645275
+UniRef50_Q9K7C3: L-arabinose transport ATP-binding protein AraG|unclassified	0.0267002194
+UniRef50_R7KL80	4.2756992831
+UniRef50_R7KL80|g__Clostridium.s__Clostridium_beijerinckii	4.2756992831
+UniRef50_V0RE93	4.2752416244
+UniRef50_V0RE93|unclassified	4.2752416244
+UniRef50_A8KS94	4.2749871020
+UniRef50_A8KS94|unclassified	4.2749871020
+UniRef50_Q30Q90	4.2746020406
+UniRef50_Q30Q90|g__Helicobacter.s__Helicobacter_pylori	4.2746020406
+UniRef50_M5TX76: Cytochrome c oxidase, subunit II (Fragment)	4.2735042735
+UniRef50_M5TX76: Cytochrome c oxidase, subunit II (Fragment)|unclassified	4.2735042735
+UniRef50_UPI0004685D95: hypothetical protein	4.2735042735
+UniRef50_UPI0004685D95: hypothetical protein|unclassified	4.2735042735
+UniRef50_C7PE04: Short-chain dehydrogenase/reductase SDR	4.2735039490
+UniRef50_C7PE04: Short-chain dehydrogenase/reductase SDR|g__Clostridium.s__Clostridium_beijerinckii	4.2735039490
+UniRef50_Q099I3	4.2727190542
+UniRef50_Q099I3|unclassified	4.2727190542
+UniRef50_B5F808: UPF0231 protein YacL	4.2715047711
+UniRef50_B5F808: UPF0231 protein YacL|g__Escherichia.s__Escherichia_coli	3.7174721190
+UniRef50_B5F808: UPF0231 protein YacL|unclassified	0.5540326521
+UniRef50_L4A127: CsgBAC operon transcriptional regulatory protein	4.2711210345
+UniRef50_L4A127: CsgBAC operon transcriptional regulatory protein|g__Escherichia.s__Escherichia_coli	4.0650406504
+UniRef50_L4A127: CsgBAC operon transcriptional regulatory protein|unclassified	0.2060803840
+UniRef50_F8YC51: Pyridine nucleotide-disulfide oxidoreductase	4.2710912276
+UniRef50_F8YC51: Pyridine nucleotide-disulfide oxidoreductase|g__Escherichia.s__Escherichia_coli	4.2710912276
+UniRef50_L5SRM4	4.2694087777
+UniRef50_L5SRM4|g__Neisseria.s__Neisseria_meningitidis	4.2694087777
+UniRef50_V7HHQ1	4.2682208320
+UniRef50_V7HHQ1|unclassified	4.2682208320
+UniRef50_UPI00036FE39E: hypothetical protein, partial	4.2678518887
+UniRef50_UPI00036FE39E: hypothetical protein, partial|unclassified	4.2678518887
+UniRef50_P18390	4.2672119973
+UniRef50_P18390|g__Escherichia.s__Escherichia_coli	4.2672119973
+UniRef50_S9TF84	4.2643923241
+UniRef50_S9TF84|unclassified	4.2643923241
+UniRef50_I0C7T4: X-Pro dipeptidyl-peptidase (S15) family protein	4.2642658059
+UniRef50_I0C7T4: X-Pro dipeptidyl-peptidase (S15) family protein|g__Staphylococcus.s__Staphylococcus_aureus	4.2642658059
+UniRef50_I4XXI7: Malonate transporter, MadM subunit	4.2641092424
+UniRef50_I4XXI7: Malonate transporter, MadM subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2641092424
+UniRef50_H5P0F6	4.2633200435
+UniRef50_H5P0F6|g__Escherichia.s__Escherichia_coli	4.2633200435
+UniRef50_Q9RWX4	4.2626201948
+UniRef50_Q9RWX4|g__Deinococcus.s__Deinococcus_radiodurans	4.2626201948
+UniRef50_B1FAB2	4.2622234729
+UniRef50_B1FAB2|unclassified	4.2622234729
+UniRef50_A0A033P7W1	4.2612042571
+UniRef50_A0A033P7W1|unclassified	4.2612042571
+UniRef50_V1D3F0	4.2605251232
+UniRef50_V1D3F0|unclassified	4.2605251232
+UniRef50_UPI00037BC6DA: hypothetical protein, partial	4.2602931986
+UniRef50_UPI00037BC6DA: hypothetical protein, partial|unclassified	4.2602931986
+UniRef50_V5VGA0: Signal peptide protein	4.2595428002
+UniRef50_V5VGA0: Signal peptide protein|g__Acinetobacter.s__Acinetobacter_baumannii	4.2595428002
+UniRef50_M1MSX4: Phage infection protein Pip	4.2590126319
+UniRef50_M1MSX4: Phage infection protein Pip|g__Clostridium.s__Clostridium_beijerinckii	4.2590126319
+UniRef50_G2LAK2: Adhesive protein CupB5	4.2585086802
+UniRef50_G2LAK2: Adhesive protein CupB5|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2585086802
+UniRef50_Z1DXL5	4.2584444315
+UniRef50_Z1DXL5|unclassified	4.2584444315
+UniRef50_C1DMN0: TonB-dependent receptor	4.2582112867
+UniRef50_C1DMN0: TonB-dependent receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2582112867
+UniRef50_A7IM59: Pyridoxine 5'-phosphate synthase	4.2562602683
+UniRef50_A7IM59: Pyridoxine 5'-phosphate synthase|g__Acinetobacter.s__Acinetobacter_baumannii	4.2562602683
+UniRef50_B7H1L0: EpsC	4.2560586900
+UniRef50_B7H1L0: EpsC|g__Acinetobacter.s__Acinetobacter_baumannii	4.2560586900
+UniRef50_L1C6Y1	4.2560514712
+UniRef50_L1C6Y1|unclassified	4.2560514712
+UniRef50_M4JHY2	4.2559307099
+UniRef50_M4JHY2|unclassified	4.2559307099
+UniRef50_A4WVZ8: FxsA cytoplasmic membrane protein	4.2554925280
+UniRef50_A4WVZ8: FxsA cytoplasmic membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.2554925280
+UniRef50_G2L9Y5	4.2553384126
+UniRef50_G2L9Y5|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2553384126
+UniRef50_A0A023RXV6	4.2553191489
+UniRef50_A0A023RXV6|g__Acinetobacter.s__Acinetobacter_baumannii	4.2553191489
+UniRef50_A6CU00: Proline dehydrogenase (Fragment)	4.2553191489
+UniRef50_A6CU00: Proline dehydrogenase (Fragment)|unclassified	4.2553191489
+UniRef50_F2ESN5	4.2553191489
+UniRef50_F2ESN5|unclassified	4.2553191489
+UniRef50_H6PCH4: Acyl carrier protein	4.2553191489
+UniRef50_H6PCH4: Acyl carrier protein|g__Streptococcus.s__Streptococcus_mutans	4.2553191489
+UniRef50_L2YG78: Tat (Twin-arginine translocation) pathway signal sequence	4.2553191489
+UniRef50_L2YG78: Tat (Twin-arginine translocation) pathway signal sequence|g__Escherichia.s__Escherichia_coli	4.2553191489
+UniRef50_N3RWK2: Inner membrane yccS domain protein (Fragment)	4.2553191489
+UniRef50_N3RWK2: Inner membrane yccS domain protein (Fragment)|g__Escherichia.s__Escherichia_coli	4.2553191489
+UniRef50_Q28UC7: ATP synthase subunit c	4.2553191489
+UniRef50_Q28UC7: ATP synthase subunit c|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.2553191489
+UniRef50_Q8E0W3: Prophage LambdaSa1, lysin, putative	4.2553191489
+UniRef50_Q8E0W3: Prophage LambdaSa1, lysin, putative|g__Streptococcus.s__Streptococcus_agalactiae	4.2553191489
+UniRef50_U8KDA3	4.2553191489
+UniRef50_U8KDA3|unclassified	4.2553191489
+UniRef50_UPI0003678B44: hypothetical protein	4.2553191489
+UniRef50_UPI0003678B44: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.2553191489
+UniRef50_W1YQ44	4.2553191489
+UniRef50_W1YQ44|unclassified	4.2553191489
+UniRef50_S0TTC0	4.2550058441
+UniRef50_S0TTC0|g__Escherichia.s__Escherichia_coli	2.6041666667
+UniRef50_S0TTC0|unclassified	1.6508391774
+UniRef50_A0A017HMR2	4.2539064464
+UniRef50_A0A017HMR2|unclassified	4.2539064464
+UniRef50_R2NFJ2: Pyruvate-flavodoxin oxidoreductase	4.2531471640
+UniRef50_R2NFJ2: Pyruvate-flavodoxin oxidoreductase|g__Clostridium.s__Clostridium_beijerinckii	4.2531471640
+UniRef50_B9AH32	4.2525122097
+UniRef50_B9AH32|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.2429234080
+UniRef50_B9AH32|unclassified	0.0095888017
+UniRef50_D4GJ64: MocR	4.2524543347
+UniRef50_D4GJ64: MocR|g__Acinetobacter.s__Acinetobacter_baumannii	4.2524543347
+UniRef50_A4MXX5: Putative ABC-type nitrate/sulfonate/bicarbonate transport system, periplasmic component	4.2523237769
+UniRef50_A4MXX5: Putative ABC-type nitrate/sulfonate/bicarbonate transport system, periplasmic component|unclassified	4.2523237769
+UniRef50_UPI0002376558: ribose/galactose ABC transporterpermease, partial	4.2508925578
+UniRef50_UPI0002376558: ribose/galactose ABC transporterpermease, partial|unclassified	4.2508925578
+UniRef50_B9KKS1: Non-homologous end joining protein Ku	4.2500769941
+UniRef50_B9KKS1: Non-homologous end joining protein Ku|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.2500769941
+UniRef50_M5EV42	4.2498809893
+UniRef50_M5EV42|unclassified	4.2498809893
+UniRef50_V4Y678	4.2492975440
+UniRef50_V4Y678|unclassified	4.2492975440
+UniRef50_B2TLW3: Flagellar biosynthetic protein FliR/FlhB	4.2488928926
+UniRef50_B2TLW3: Flagellar biosynthetic protein FliR/FlhB|g__Clostridium.s__Clostridium_beijerinckii	4.2488928926
+UniRef50_K2AUH7	4.2477482205
+UniRef50_K2AUH7|unclassified	4.2477482205
+UniRef50_R9VB07	4.2475378814
+UniRef50_R9VB07|unclassified	4.2475378814
+UniRef50_Q9HI36: Major exported protein	4.2474533183
+UniRef50_Q9HI36: Major exported protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2474533183
+UniRef50_B2TIE4: Putative ATP:guanido phosphotransferase CLL_A0206	4.2471883661
+UniRef50_B2TIE4: Putative ATP:guanido phosphotransferase CLL_A0206|g__Clostridium.s__Clostridium_beijerinckii	4.2471883661
+UniRef50_T3G9C0: Modulator of DNA gyrase family protein	4.2470536776
+UniRef50_T3G9C0: Modulator of DNA gyrase family protein|g__Clostridium.s__Clostridium_beijerinckii	4.2470536776
+UniRef50_H5FVP6: Amidohydrolase family protein	4.2470396639
+UniRef50_H5FVP6: Amidohydrolase family protein|g__Escherichia.s__Escherichia_coli	4.2470396639
+UniRef50_K2AY46: NADH-ubiquinone oxidoreductase (Fragment)	4.2467309451
+UniRef50_K2AY46: NADH-ubiquinone oxidoreductase (Fragment)|unclassified	4.2467309451
+UniRef50_A0A029JWA5	4.2459184643
+UniRef50_A0A029JWA5|unclassified	4.2459184643
+UniRef50_Q3IWH8: Monosaccharide ABC transporter membrane protein, CUT2 family	4.2456803992
+UniRef50_Q3IWH8: Monosaccharide ABC transporter membrane protein, CUT2 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.2456803992
+UniRef50_UPI00046235B0: hypothetical protein TRAVEDRAFT_69016	4.2455148946
+UniRef50_UPI00046235B0: hypothetical protein TRAVEDRAFT_69016|unclassified	4.2455148946
+UniRef50_F6BNG0: Mov34/MPN/PAD-1 family protein	4.2454323479
+UniRef50_F6BNG0: Mov34/MPN/PAD-1 family protein|unclassified	4.2454323479
+UniRef50_A0A020D642	4.2442652606
+UniRef50_A0A020D642|unclassified	4.2442652606
+UniRef50_V8NXS0: RpsE (Fragment)	4.2436041714
+UniRef50_V8NXS0: RpsE (Fragment)|unclassified	4.2436041714
+UniRef50_I1ASL8	4.2434945375
+UniRef50_I1ASL8|unclassified	4.2434945375
+UniRef50_X2ME11: Glutathione ABC transporter permease	4.2428303195
+UniRef50_X2ME11: Glutathione ABC transporter permease|unclassified	4.2428303195
+UniRef50_Q0K9Q9: Cation/multidrug efflux pump	4.2427903364
+UniRef50_Q0K9Q9: Cation/multidrug efflux pump|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2427903364
+UniRef50_B7VAT1	4.2418622901
+UniRef50_B7VAT1|unclassified	4.2418622901
+UniRef50_A0A037Z329: Flagellar biosynthesis protein FlhA	4.2417632952
+UniRef50_A0A037Z329: Flagellar biosynthesis protein FlhA|g__Clostridium.s__Clostridium_beijerinckii	4.2417632952
+UniRef50_UPI00035EC4CB: hypothetical protein	4.2413043610
+UniRef50_UPI00035EC4CB: hypothetical protein|unclassified	4.2413043610
+UniRef50_W0HC37: Substrate-binding region of ABC-type glycine betaine transport system	4.2405049076
+UniRef50_W0HC37: Substrate-binding region of ABC-type glycine betaine transport system|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2405049076
+UniRef50_A7ZXE3	4.2392745124
+UniRef50_A7ZXE3|unclassified	4.2392745124
+UniRef50_F5YM75: ABC transporter, permease protein	4.2384620147
+UniRef50_F5YM75: ABC transporter, permease protein|g__Clostridium.s__Clostridium_beijerinckii	4.2384620147
+UniRef50_B2FRQ1	4.2375583359
+UniRef50_B2FRQ1|unclassified	4.2375583359
+UniRef50_C3L318: Precorrin-2 C(20)-methyltransferase	4.2372881356
+UniRef50_C3L318: Precorrin-2 C(20)-methyltransferase|g__Clostridium.s__Clostridium_beijerinckii	4.2372881356
+UniRef50_K4IKX0: 3-oxoacyl-(Acyl-carrier protein) reductase FabG	4.2372881356
+UniRef50_K4IKX0: 3-oxoacyl-(Acyl-carrier protein) reductase FabG|g__Streptococcus.s__Streptococcus_agalactiae	4.2372881356
+UniRef50_M2MDS8: Arginine repressor	4.2372881356
+UniRef50_M2MDS8: Arginine repressor|g__Streptococcus.s__Streptococcus_mutans	4.2372881356
+UniRef50_Q738S4	4.2372881356
+UniRef50_Q738S4|unclassified	4.2372881356
+UniRef50_R4ZKW9	4.2372881356
+UniRef50_R4ZKW9|g__Streptococcus.s__Streptococcus_agalactiae	4.2372881356
+UniRef50_S7SI01	4.2372881356
+UniRef50_S7SI01|unclassified	4.2372881356
+UniRef50_T0TKM9: Transcriptional regulator, MerR family	4.2372881356
+UniRef50_T0TKM9: Transcriptional regulator, MerR family|g__Streptococcus.s__Streptococcus_mutans	4.2372881356
+UniRef50_U9Y9T8	4.2372881356
+UniRef50_U9Y9T8|g__Escherichia.s__Escherichia_coli	4.2372881356
+UniRef50_UPI0003959D3B: PREDICTED: serine/arginine repetitive matrix protein 2-like, partial	4.2372881356
+UniRef50_UPI0003959D3B: PREDICTED: serine/arginine repetitive matrix protein 2-like, partial|unclassified	4.2372881356
+UniRef50_W4UBA6	4.2372881356
+UniRef50_W4UBA6|unclassified	4.2372881356
+UniRef50_R5NSU1	4.2363128570
+UniRef50_R5NSU1|g__Clostridium.s__Clostridium_beijerinckii	4.2363128570
+UniRef50_E1V915: Transcriptional regulator, XRE family	4.2361803478
+UniRef50_E1V915: Transcriptional regulator, XRE family|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2361803478
+UniRef50_Q82HL5: Imidazolonepropionase	4.2353634769
+UniRef50_Q82HL5: Imidazolonepropionase|g__Propionibacterium.s__Propionibacterium_acnes	4.2353634769
+UniRef50_Q828A3: Acetylornithine aminotransferase	4.2341973224
+UniRef50_Q828A3: Acetylornithine aminotransferase|g__Propionibacterium.s__Propionibacterium_acnes	4.2341973224
+UniRef50_Q1XG14: Recombinase Sin	4.2335358785
+UniRef50_Q1XG14: Recombinase Sin|g__Staphylococcus.s__Staphylococcus_aureus	4.2335358785
+UniRef50_E7UQG7: Core protein	4.2333656695
+UniRef50_E7UQG7: Core protein|g__Escherichia.s__Escherichia_coli	4.2333656695
+UniRef50_W1MVU5	4.2332508351
+UniRef50_W1MVU5|unclassified	4.2332508351
+UniRef50_Q0FIA1	4.2330379981
+UniRef50_Q0FIA1|unclassified	4.2330379981
+UniRef50_A6M262: ABC transporter related	4.2322588706
+UniRef50_A6M262: ABC transporter related|g__Clostridium.s__Clostridium_beijerinckii	4.2322588706
+UniRef50_A6M2W7: Helix-turn-helix-domain containing protein, AraC type	4.2319258111
+UniRef50_A6M2W7: Helix-turn-helix-domain containing protein, AraC type|g__Clostridium.s__Clostridium_beijerinckii	4.2319258111
+UniRef50_D7CSG3: ABC transporter related protein	4.2309632829
+UniRef50_D7CSG3: ABC transporter related protein|g__Deinococcus.s__Deinococcus_radiodurans	4.2309632829
+UniRef50_X4RBB0: 3-dehydroquinate synthase	4.2293937000
+UniRef50_X4RBB0: 3-dehydroquinate synthase|g__Propionibacterium.s__Propionibacterium_acnes	4.2293937000
+UniRef50_H5H2K1	4.2291756137
+UniRef50_H5H2K1|unclassified	4.2291756137
+UniRef50_Q9Y041: Homogentisate 1,2-dioxygenase	4.2283711766
+UniRef50_Q9Y041: Homogentisate 1,2-dioxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2283711766
+UniRef50_H8FT83	4.2282959645
+UniRef50_H8FT83|unclassified	4.2282959645
+UniRef50_A6M1U5: Methyl-accepting chemotaxis sensory transducer	4.2282391498
+UniRef50_A6M1U5: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	4.2282391498
+UniRef50_K7RYE1: Band 7 stomatin-like protein	4.2272709755
+UniRef50_K7RYE1: Band 7 stomatin-like protein|g__Propionibacterium.s__Propionibacterium_acnes	4.2272709755
+UniRef50_S9Q7X5: Alpha-glucosides-binding protein periplasmic protein AglE	4.2269559707
+UniRef50_S9Q7X5: Alpha-glucosides-binding protein periplasmic protein AglE|unclassified	4.2269559707
+UniRef50_G8VAV8: Cytochrome oxidase assembly protein	4.2269346698
+UniRef50_G8VAV8: Cytochrome oxidase assembly protein|g__Propionibacterium.s__Propionibacterium_acnes	4.2269346698
+UniRef50_A6M107: AzlC family protein	4.2265902762
+UniRef50_A6M107: AzlC family protein|g__Clostridium.s__Clostridium_beijerinckii	4.2265902762
+UniRef50_D3QYX7: Leucine--tRNA ligase	4.2265667409
+UniRef50_D3QYX7: Leucine--tRNA ligase|g__Clostridium.s__Clostridium_beijerinckii	4.2265667409
+UniRef50_O67221: Aspartokinase	4.2250044209
+UniRef50_O67221: Aspartokinase|g__Acinetobacter.s__Acinetobacter_baumannii	3.3561946903
+UniRef50_O67221: Aspartokinase|g__Helicobacter.s__Helicobacter_pylori	0.8688097307
+UniRef50_B9E056: DNA repair protein RecO	4.2244192433
+UniRef50_B9E056: DNA repair protein RecO|g__Clostridium.s__Clostridium_beijerinckii	4.2244192433
+UniRef50_Q5XB61: Phage terminase	4.2239000862
+UniRef50_Q5XB61: Phage terminase|g__Streptococcus.s__Streptococcus_agalactiae	4.2239000862
+UniRef50_B9KSF7: Entericidin EcnAB	4.2230276322
+UniRef50_B9KSF7: Entericidin EcnAB|unclassified	4.2230276322
+UniRef50_I3WXC9: Dissimilatory sulfite reductase (Fragment)	4.2223488086
+UniRef50_I3WXC9: Dissimilatory sulfite reductase (Fragment)|unclassified	4.2223488086
+UniRef50_W0YJW3: Putative inner membrane protein translocase component YidC	4.2223408720
+UniRef50_W0YJW3: Putative inner membrane protein translocase component YidC|unclassified	4.2223408720
+UniRef50_Q5L046: UPF0145 protein GK1405	4.2215831003
+UniRef50_Q5L046: UPF0145 protein GK1405|unclassified	4.2215831003
+UniRef50_Q6HLQ9: Spermidine/putrescine import ATP-binding protein PotA	4.2209636749
+UniRef50_Q6HLQ9: Spermidine/putrescine import ATP-binding protein PotA|g__Clostridium.s__Clostridium_beijerinckii	3.5973436945
+UniRef50_Q6HLQ9: Spermidine/putrescine import ATP-binding protein PotA|unclassified	0.6236199803
+UniRef50_M8JEG0	4.2207261831
+UniRef50_M8JEG0|unclassified	4.2207261831
+UniRef50_B9DSL9: Uronate isomerase	4.2204902687
+UniRef50_B9DSL9: Uronate isomerase|g__Streptococcus.s__Streptococcus_agalactiae	4.1866873794
+UniRef50_B9DSL9: Uronate isomerase|unclassified	0.0338028893
+UniRef50_F4DT19: Integral membrane sensor hybrid histidine kinase	4.2204276734
+UniRef50_F4DT19: Integral membrane sensor hybrid histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2204276734
+UniRef50_Q0TUR6: Beta-galactosidase Pbg	4.2203620879
+UniRef50_Q0TUR6: Beta-galactosidase Pbg|g__Clostridium.s__Clostridium_beijerinckii	4.2203620879
+UniRef50_C8WK91: Ribonucleoside-diphosphate reductase	4.2202721513
+UniRef50_C8WK91: Ribonucleoside-diphosphate reductase|g__Clostridium.s__Clostridium_beijerinckii	4.2202721513
+UniRef50_A5IUB2: SH3, type-5 domain protein	4.2197166687
+UniRef50_A5IUB2: SH3, type-5 domain protein|unclassified	4.2197166687
+UniRef50_A0A024STG0	4.2195671029
+UniRef50_A0A024STG0|unclassified	4.2195671029
+UniRef50_R4ZNC7: Duplicated ATPase component YkoD of energizing module of thiamin-regulated ECF transporter for HydroxyMethylPyrimidine	4.2195233742
+UniRef50_R4ZNC7: Duplicated ATPase component YkoD of energizing module of thiamin-regulated ECF transporter for HydroxyMethylPyrimidine|g__Streptococcus.s__Streptococcus_agalactiae	4.2195233742
+UniRef50_A3PS27: Transcriptional regulator, GntR family	4.2194593635
+UniRef50_A3PS27: Transcriptional regulator, GntR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.2194593635
+UniRef50_A5UM65	4.2194092827
+UniRef50_A5UM65|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.2194092827
+UniRef50_A6LQ67: GntR domain protein	4.2194092827
+UniRef50_A6LQ67: GntR domain protein|g__Clostridium.s__Clostridium_beijerinckii	4.2194092827
+UniRef50_A7X492	4.2194092827
+UniRef50_A7X492|g__Staphylococcus.s__Staphylococcus_aureus	4.2194092827
+UniRef50_E8WYZ5: Acyl carrier protein	4.2194092827
+UniRef50_E8WYZ5: Acyl carrier protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.2194092827
+UniRef50_M2FL68	4.2194092827
+UniRef50_M2FL68|g__Streptococcus.s__Streptococcus_mutans	4.2194092827
+UniRef50_Q0SR44: Cell division topological specificity factor	4.2194092827
+UniRef50_Q0SR44: Cell division topological specificity factor|g__Clostridium.s__Clostridium_beijerinckii	4.2194092827
+UniRef50_Q2YTY4	4.2194092827
+UniRef50_Q2YTY4|g__Staphylococcus.s__Staphylococcus_aureus	4.2194092827
+UniRef50_S9PF62	4.2194092827
+UniRef50_S9PF62|unclassified	4.2194092827
+UniRef50_UPI000477BF22: hypothetical protein	4.2194092827
+UniRef50_UPI000477BF22: hypothetical protein|unclassified	4.2194092827
+UniRef50_A8MM09: Diguanylate cyclase	4.2189691779
+UniRef50_A8MM09: Diguanylate cyclase|g__Clostridium.s__Clostridium_beijerinckii	4.2189691779
+UniRef50_A6M3C4: ATPase-like protein	4.2189186971
+UniRef50_A6M3C4: ATPase-like protein|g__Clostridium.s__Clostridium_beijerinckii	4.2189186971
+UniRef50_K0WGN5	4.2169203722
+UniRef50_K0WGN5|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2169203722
+UniRef50_G7M9U0: Flagellar hook-length control protein	4.2163549860
+UniRef50_G7M9U0: Flagellar hook-length control protein|g__Clostridium.s__Clostridium_beijerinckii	4.2163549860
+UniRef50_G8V949: ABC transporter, molybdenum transport system	4.2147815098
+UniRef50_G8V949: ABC transporter, molybdenum transport system|g__Propionibacterium.s__Propionibacterium_acnes	4.2147815098
+UniRef50_A3VLJ6	4.2138261111
+UniRef50_A3VLJ6|unclassified	4.2138261111
+UniRef50_E0RYK6	4.2126438233
+UniRef50_E0RYK6|g__Clostridium.s__Clostridium_beijerinckii	4.2126438233
+UniRef50_A3PQJ7: Thiamine monophosphate synthase	4.2117722274
+UniRef50_A3PQJ7: Thiamine monophosphate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.2117722274
+UniRef50_R6GNH1	4.2092983512
+UniRef50_R6GNH1|g__Clostridium.s__Clostridium_beijerinckii	4.2092983512
+UniRef50_A0A038G3C5	4.2092214062
+UniRef50_A0A038G3C5|unclassified	4.2092214062
+UniRef50_Q6F6Q1	4.2088134189
+UniRef50_Q6F6Q1|g__Acinetobacter.s__Acinetobacter_baumannii	4.2088134189
+UniRef50_U5MWW8: Glycosyltransferase EpsJ	4.2086925044
+UniRef50_U5MWW8: Glycosyltransferase EpsJ|g__Clostridium.s__Clostridium_beijerinckii	4.2086925044
+UniRef50_A9VZW7	4.2086579237
+UniRef50_A9VZW7|unclassified	4.2086579237
+UniRef50_UPI0003673946: hypothetical protein	4.2077138023
+UniRef50_UPI0003673946: hypothetical protein|unclassified	4.2077138023
+UniRef50_UPI00037B93F2: hypothetical protein	4.2075736325
+UniRef50_UPI00037B93F2: hypothetical protein|unclassified	4.2075736325
+UniRef50_Q2T4Z7	4.2064755839
+UniRef50_Q2T4Z7|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2064755839
+UniRef50_A0NLI7	4.2060663468
+UniRef50_A0NLI7|unclassified	4.2060663468
+UniRef50_UPI00047311ED: glutaredoxin, partial	4.2052544588
+UniRef50_UPI00047311ED: glutaredoxin, partial|unclassified	4.2052544588
+UniRef50_Q6F957	4.2049767850
+UniRef50_Q6F957|g__Acinetobacter.s__Acinetobacter_baumannii	4.2049767850
+UniRef50_F2AEH0	4.2049354971
+UniRef50_F2AEH0|unclassified	4.2049354971
+UniRef50_UPI0002F3C99C: hypothetical protein	4.2033779983
+UniRef50_UPI0002F3C99C: hypothetical protein|unclassified	4.2033779983
+UniRef50_Z8E4W9	4.2033597618
+UniRef50_Z8E4W9|unclassified	2.1372440594
+UniRef50_Z8E4W9|g__Staphylococcus.s__Staphylococcus_aureus	2.0661157025
+UniRef50_A6LYC9: ThiJ/PfpI domain protein	4.2031356864
+UniRef50_A6LYC9: ThiJ/PfpI domain protein|g__Clostridium.s__Clostridium_beijerinckii	4.2031356864
+UniRef50_UPI0003800615: hypothetical protein, partial	4.2022815133
+UniRef50_UPI0003800615: hypothetical protein, partial|unclassified	4.2022815133
+UniRef50_D9SN85: Glutathione peroxidase	4.2019774011
+UniRef50_D9SN85: Glutathione peroxidase|g__Clostridium.s__Clostridium_beijerinckii	4.2019774011
+UniRef50_A3PJJ4: Class I diheme cytochrome c4	4.2016806723
+UniRef50_A3PJJ4: Class I diheme cytochrome c4|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.2016806723
+UniRef50_F3U4G2	4.2016806723
+UniRef50_F3U4G2|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.2016806723
+UniRef50_L6RQB7: Disulfide isomerase/thiol-disulfide oxidase (Fragment)	4.2016806723
+UniRef50_L6RQB7: Disulfide isomerase/thiol-disulfide oxidase (Fragment)|g__Staphylococcus.s__Staphylococcus_aureus	4.2016806723
+UniRef50_N2R1G7	4.2016806723
+UniRef50_N2R1G7|g__Escherichia.s__Escherichia_coli	4.2016806723
+UniRef50_Q3J169	4.2016806723
+UniRef50_Q3J169|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.2016806723
+UniRef50_U6FX11	4.2016806723
+UniRef50_U6FX11|unclassified	4.2016806723
+UniRef50_B7H011: 3-methyl-2-oxobutanoate hydroxymethyltransferase	4.2016619614
+UniRef50_B7H011: 3-methyl-2-oxobutanoate hydroxymethyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	4.1355779686
+UniRef50_B7H011: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.0660839929
+UniRef50_A6LRA0: Guanine-specific ribonuclease N1 and T1	4.2014218843
+UniRef50_A6LRA0: Guanine-specific ribonuclease N1 and T1|g__Clostridium.s__Clostridium_beijerinckii	4.2014218843
+UniRef50_Q48PX1: Glutamate--cysteine ligase	4.2014074223
+UniRef50_Q48PX1: Glutamate--cysteine ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.2014074223
+UniRef50_Q08MC2	4.2013466113
+UniRef50_Q08MC2|unclassified	4.2013466113
+UniRef50_W1JHH6: Alanine dehydrogenase (Fragment)	4.2011635543
+UniRef50_W1JHH6: Alanine dehydrogenase (Fragment)|unclassified	4.2011635543
+UniRef50_Q0V605	4.2004271222
+UniRef50_Q0V605|unclassified	4.2004271222
+UniRef50_A6M1W5: Periplasmic binding protein/LacI transcriptional regulator	4.1977999802
+UniRef50_A6M1W5: Periplasmic binding protein/LacI transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	4.1977999802
+UniRef50_P25795: Aldehyde dehydrogenase family 7 member A1	4.1976947590
+UniRef50_P25795: Aldehyde dehydrogenase family 7 member A1|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.3221440962
+UniRef50_P25795: Aldehyde dehydrogenase family 7 member A1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8755506627
+UniRef50_F8IPY1: Membrane protein	4.1968568197
+UniRef50_F8IPY1: Membrane protein|g__Streptococcus.s__Streptococcus_agalactiae	4.1968568197
+UniRef50_W7WQK3	4.1957797973
+UniRef50_W7WQK3|unclassified	4.1957797973
+UniRef50_UPI00035E8FBB: hypothetical protein	4.1955728093
+UniRef50_UPI00035E8FBB: hypothetical protein|unclassified	4.1955728093
+UniRef50_Q8A295: UPF0145 protein BT_3410	4.1941625356
+UniRef50_Q8A295: UPF0145 protein BT_3410|unclassified	4.1941625356
+UniRef50_A6M215: ATPase, BadF/BadG/BcrA/BcrD type	4.1940518322
+UniRef50_A6M215: ATPase, BadF/BadG/BcrA/BcrD type|g__Clostridium.s__Clostridium_beijerinckii	4.1940518322
+UniRef50_F9Y4R9	4.1929641686
+UniRef50_F9Y4R9|unclassified	4.1929641686
+UniRef50_E3A1N3	4.1928721174
+UniRef50_E3A1N3|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1928721174
+UniRef50_I2BV46	4.1928721174
+UniRef50_I2BV46|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1928721174
+UniRef50_K9QPP2: Mannose-1-phosphate guanylyltransferase	4.1916873483
+UniRef50_K9QPP2: Mannose-1-phosphate guanylyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	4.1916873483
+UniRef50_UPI00034763C5: MerR family transcriptional regulator	4.1913690646
+UniRef50_UPI00034763C5: MerR family transcriptional regulator|unclassified	4.1913690646
+UniRef50_A6LRH2: Histidine kinase internal region	4.1889621680
+UniRef50_A6LRH2: Histidine kinase internal region|g__Clostridium.s__Clostridium_beijerinckii	4.1889621680
+UniRef50_A0A037YKV0: N-acetylglucosamine-6-phosphate deacetylase	4.1875230723
+UniRef50_A0A037YKV0: N-acetylglucosamine-6-phosphate deacetylase|g__Escherichia.s__Escherichia_coli	4.1875230723
+UniRef50_P0A2E4: RNA polymerase sigma factor RpoD	4.1874530668
+UniRef50_P0A2E4: RNA polymerase sigma factor RpoD|g__Escherichia.s__Escherichia_coli	4.1874530668
+UniRef50_Q03023: Serralysin	4.1872081879
+UniRef50_Q03023: Serralysin|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1872081879
+UniRef50_A6TKS3	4.1869647400
+UniRef50_A6TKS3|g__Clostridium.s__Clostridium_beijerinckii	4.1869647400
+UniRef50_D8CH93	4.1866424458
+UniRef50_D8CH93|unclassified	4.1866424458
+UniRef50_G7M087	4.1841004184
+UniRef50_G7M087|g__Clostridium.s__Clostridium_beijerinckii	4.1841004184
+UniRef50_P30540	4.1841004184
+UniRef50_P30540|g__Staphylococcus.s__Staphylococcus_aureus	4.1841004184
+UniRef50_Q8DWH8: UPF0237 protein SMU_72	4.1841004184
+UniRef50_Q8DWH8: UPF0237 protein SMU_72|g__Streptococcus.s__Streptococcus_mutans	4.1841004184
+UniRef50_V9QRF3	4.1841004184
+UniRef50_V9QRF3|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1841004184
+UniRef50_H2JB32: Terminase-like family	4.1838512504
+UniRef50_H2JB32: Terminase-like family|g__Clostridium.s__Clostridium_beijerinckii	4.1838512504
+UniRef50_C6SLX9	4.1836774185
+UniRef50_C6SLX9|unclassified	4.1836774185
+UniRef50_A0A059IK75	4.1831146839
+UniRef50_A0A059IK75|unclassified	4.1831146839
+UniRef50_A6LRU7	4.1803997160
+UniRef50_A6LRU7|g__Clostridium.s__Clostridium_beijerinckii	4.1803997160
+UniRef50_A6LQB8	4.1800833266
+UniRef50_A6LQB8|g__Clostridium.s__Clostridium_beijerinckii	4.1800833266
+UniRef50_S4XCV1: Surface protein G2	4.1794434309
+UniRef50_S4XCV1: Surface protein G2|g__Staphylococcus.s__Staphylococcus_epidermidis	4.1794434309
+UniRef50_R6MQQ2	4.1788588932
+UniRef50_R6MQQ2|unclassified	4.1788588932
+UniRef50_A6MZH1	4.1780242462
+UniRef50_A6MZH1|unclassified	4.1780242462
+UniRef50_P22610: Type 4 prepilin-like proteins leader peptide-processing enzyme	4.1776966026
+UniRef50_P22610: Type 4 prepilin-like proteins leader peptide-processing enzyme|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1776966026
+UniRef50_F9YXP6	4.1764282340
+UniRef50_F9YXP6|g__Propionibacterium.s__Propionibacterium_acnes	4.1764282340
+UniRef50_A4F866: Transcription elongation factor GreA	4.1750297596
+UniRef50_A4F866: Transcription elongation factor GreA|g__Propionibacterium.s__Propionibacterium_acnes	4.1750297596
+UniRef50_UPI000468443A: hemagglutination activity protein	4.1745328559
+UniRef50_UPI000468443A: hemagglutination activity protein|unclassified	4.1745328559
+UniRef50_UPI00046D31AE: hypothetical protein	4.1737609346
+UniRef50_UPI00046D31AE: hypothetical protein|unclassified	4.1737609346
+UniRef50_B6VK40: Type iii secretion component protein sctt	4.1735024609
+UniRef50_B6VK40: Type iii secretion component protein sctt|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1735024609
+UniRef50_D4L313: Retron-type reverse transcriptase	4.1732903216
+UniRef50_D4L313: Retron-type reverse transcriptase|g__Streptococcus.s__Streptococcus_agalactiae	4.1732903216
+UniRef50_W4UDN2: Maltose phosphorylase	4.1718234878
+UniRef50_W4UDN2: Maltose phosphorylase|g__Propionibacterium.s__Propionibacterium_acnes	4.1718234878
+UniRef50_G9MRN8	4.1699297330
+UniRef50_G9MRN8|unclassified	4.1699297330
+UniRef50_V7EDD4: TonB-denpendent receptor (Fragment)	4.1696008604
+UniRef50_V7EDD4: TonB-denpendent receptor (Fragment)|unclassified	4.1696008604
+UniRef50_UPI0003782025: hypothetical protein	4.1692671463
+UniRef50_UPI0003782025: hypothetical protein|unclassified	4.1692671463
+UniRef50_M4Y7D2: Partition protein	4.1689447786
+UniRef50_M4Y7D2: Partition protein|g__Clostridium.s__Clostridium_beijerinckii	4.1689447786
+UniRef50_F4EFW8: Sugar transporter	4.1673460441
+UniRef50_F4EFW8: Sugar transporter|g__Streptococcus.s__Streptococcus_agalactiae	4.1673460441
+UniRef50_W3E224	4.1668277904
+UniRef50_W3E224|g__Acinetobacter.s__Acinetobacter_baumannii	4.1152263374
+UniRef50_W3E224|unclassified	0.0516014530
+UniRef50_A3M7V6	4.1666666667
+UniRef50_A3M7V6|g__Acinetobacter.s__Acinetobacter_baumannii	4.1666666667
+UniRef50_B2N5X2: Signal transduction histidine-protein kinase AtoS	4.1666666667
+UniRef50_B2N5X2: Signal transduction histidine-protein kinase AtoS|g__Escherichia.s__Escherichia_coli	4.1666666667
+UniRef50_F0QJF6	4.1666666667
+UniRef50_F0QJF6|g__Acinetobacter.s__Acinetobacter_baumannii	4.1666666667
+UniRef50_M1MVG4: Transcriptional regulator, AraC family	4.1666666667
+UniRef50_M1MVG4: Transcriptional regulator, AraC family|g__Clostridium.s__Clostridium_beijerinckii	4.1666666667
+UniRef50_M9FY69	4.1666666667
+UniRef50_M9FY69|g__Escherichia.s__Escherichia_coli	4.1666666667
+UniRef50_P0AFV9: Phage shock protein D	4.1666666667
+UniRef50_P0AFV9: Phage shock protein D|g__Escherichia.s__Escherichia_coli	4.1666666667
+UniRef50_P37590: Signal transduction protein PmrD	4.1666666667
+UniRef50_P37590: Signal transduction protein PmrD|g__Escherichia.s__Escherichia_coli	4.1666666667
+UniRef50_Q3J2H1: Transcriptional regulator, TetR family	4.1666666667
+UniRef50_Q3J2H1: Transcriptional regulator, TetR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.1666666667
+UniRef50_Q890R5: tRNA pseudouridine synthase A 2	4.1666666667
+UniRef50_Q890R5: tRNA pseudouridine synthase A 2|g__Clostridium.s__Clostridium_beijerinckii	4.1666666667
+UniRef50_Q6F9X3: DNA polymerase III, delta prime subunit	4.1662132104
+UniRef50_Q6F9X3: DNA polymerase III, delta prime subunit|g__Acinetobacter.s__Acinetobacter_baumannii	4.1662132104
+UniRef50_Q8DWS9: Membrane protein, putative	4.1658135418
+UniRef50_Q8DWS9: Membrane protein, putative|g__Streptococcus.s__Streptococcus_agalactiae	4.1658135418
+UniRef50_C8C149: AmpC beta-lactamase	4.1653769246
+UniRef50_C8C149: AmpC beta-lactamase|unclassified	4.1653769246
+UniRef50_UPI0003760644: hypothetical protein	4.1652972491
+UniRef50_UPI0003760644: hypothetical protein|unclassified	4.1652972491
+UniRef50_F8J6S6: Dihydrodipicolinate synthase	4.1624387400
+UniRef50_F8J6S6: Dihydrodipicolinate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1624387400
+UniRef50_Q8DXX0	4.1623354123
+UniRef50_Q8DXX0|g__Streptococcus.s__Streptococcus_agalactiae	4.1623354123
+UniRef50_Q9HTU7: UPF0178 protein PA5247	4.1623354123
+UniRef50_Q9HTU7: UPF0178 protein PA5247|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1623354123
+UniRef50_Q7N3U5: Cysteine desulfurase	4.1622550982
+UniRef50_Q7N3U5: Cysteine desulfurase|g__Escherichia.s__Escherichia_coli	4.1622550982
+UniRef50_A6LQR9: GTPase Obg	4.1618585302
+UniRef50_A6LQR9: GTPase Obg|g__Clostridium.s__Clostridium_beijerinckii	4.1618585302
+UniRef50_P59927: Single-stranded DNA-binding protein	4.1615296433
+UniRef50_P59927: Single-stranded DNA-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1615296433
+UniRef50_E9VT65: Electron transfer flavoprotein FAD-binding protein	4.1611831798
+UniRef50_E9VT65: Electron transfer flavoprotein FAD-binding protein|g__Escherichia.s__Escherichia_coli	4.1611831798
+UniRef50_A4VS44	4.1608446468
+UniRef50_A4VS44|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1608446468
+UniRef50_O07137: Probable enoyl-CoA hydratase echA8	4.1605367512
+UniRef50_O07137: Probable enoyl-CoA hydratase echA8|g__Acinetobacter.s__Acinetobacter_baumannii	4.0363310525
+UniRef50_O07137: Probable enoyl-CoA hydratase echA8|unclassified	0.1242056988
+UniRef50_I3V3Q6	4.1601537036
+UniRef50_I3V3Q6|unclassified	4.1601537036
+UniRef50_A6LQ08: Oleoyl-(Acyl-carrier-protein) hydrolase	4.1600092721
+UniRef50_A6LQ08: Oleoyl-(Acyl-carrier-protein) hydrolase|g__Clostridium.s__Clostridium_beijerinckii	4.1600092721
+UniRef50_E2ZQ75: Transcriptional regulator MvfR	4.1597204544
+UniRef50_E2ZQ75: Transcriptional regulator MvfR|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1597204544
+UniRef50_G0DWZ2: RNA polymerase sigma factor	4.1591546799
+UniRef50_G0DWZ2: RNA polymerase sigma factor|g__Propionibacterium.s__Propionibacterium_acnes	4.1591546799
+UniRef50_A6LW68	4.1586512482
+UniRef50_A6LW68|g__Clostridium.s__Clostridium_beijerinckii	4.1586512482
+UniRef50_UPI0003AED3B9: PREDICTED: collagen alpha-1(I) chain-like	4.1584007710
+UniRef50_UPI0003AED3B9: PREDICTED: collagen alpha-1(I) chain-like|unclassified	4.1584007710
+UniRef50_D4KNQ5: G:T/U mismatch-specific DNA glycosylase	4.1580041580
+UniRef50_D4KNQ5: G:T/U mismatch-specific DNA glycosylase|g__Clostridium.s__Clostridium_beijerinckii	4.1580041580
+UniRef50_S5CRE9	4.1568024936
+UniRef50_S5CRE9|g__Acinetobacter.s__Acinetobacter_baumannii	4.1568024936
+UniRef50_V0PT94	4.1564142119
+UniRef50_V0PT94|unclassified	4.1564142119
+UniRef50_V9VRV3	4.1563104323
+UniRef50_V9VRV3|unclassified	4.1563104323
+UniRef50_D5AP19: Sterol-binding domain protein	4.1562315863
+UniRef50_D5AP19: Sterol-binding domain protein|unclassified	4.1562315863
+UniRef50_G4LCH4	4.1558818797
+UniRef50_G4LCH4|unclassified	4.1558818797
+UniRef50_UPI0003F6C3B5: family 2 glycosyl transferase	4.1557000019
+UniRef50_UPI0003F6C3B5: family 2 glycosyl transferase|unclassified	4.1557000019
+UniRef50_E2XXX9: Rhs-family protein	4.1549025583
+UniRef50_E2XXX9: Rhs-family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1549025583
+UniRef50_A8LPC9: Endoribonuclease L-PSP	4.1542837077
+UniRef50_A8LPC9: Endoribonuclease L-PSP|unclassified	4.1542837077
+UniRef50_G7M624: Aryl-alcohol dehydrogenase (NADP(+))	4.1542812198
+UniRef50_G7M624: Aryl-alcohol dehydrogenase (NADP(+))|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1542812198
+UniRef50_G9EUU6	4.1542742576
+UniRef50_G9EUU6|unclassified	4.1542742576
+UniRef50_A7GC03: Anaerobic sulfite reductase, subunit A	4.1533438049
+UniRef50_A7GC03: Anaerobic sulfite reductase, subunit A|g__Clostridium.s__Clostridium_beijerinckii	4.1533438049
+UniRef50_K7SGJ6: Tat (Twin-arginine translocation) pathway signal sequence	4.1531730818
+UniRef50_K7SGJ6: Tat (Twin-arginine translocation) pathway signal sequence|g__Propionibacterium.s__Propionibacterium_acnes	4.1531730818
+UniRef50_A3N6F9	4.1518084450
+UniRef50_A3N6F9|unclassified	4.1518084450
+UniRef50_D6L8R3	4.1504867972
+UniRef50_D6L8R3|unclassified	4.1504867972
+UniRef50_B7V703	4.1496797063
+UniRef50_B7V703|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7777777778
+UniRef50_B7V703|unclassified	1.3719019285
+UniRef50_B5HQS3: GntR family transcriptional regulator (Fragment)	4.1493775934
+UniRef50_B5HQS3: GntR family transcriptional regulator (Fragment)|unclassified	4.1493775934
+UniRef50_E5QT28	4.1493775934
+UniRef50_E5QT28|g__Staphylococcus.s__Staphylococcus_aureus	4.1493775934
+UniRef50_F4U7G8: N-methyl-L-tryptophan oxidase (MTOX)	4.1493775934
+UniRef50_F4U7G8: N-methyl-L-tryptophan oxidase (MTOX)|g__Escherichia.s__Escherichia_coli	4.1493775934
+UniRef50_M4WTA3: Lipoprotein	4.1493775934
+UniRef50_M4WTA3: Lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1493775934
+UniRef50_Q9HVP8: Dephospho-CoA kinase	4.1493775934
+UniRef50_Q9HVP8: Dephospho-CoA kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1493775934
+UniRef50_Q9I2K3	4.1493775934
+UniRef50_Q9I2K3|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1493775934
+UniRef50_F4A797: Transferase hexapeptide repeat containing protein	4.1486710321
+UniRef50_F4A797: Transferase hexapeptide repeat containing protein|g__Clostridium.s__Clostridium_beijerinckii	4.1486710321
+UniRef50_B9KRP0	4.1486518762
+UniRef50_B9KRP0|unclassified	4.1486518762
+UniRef50_Q2T0L2: UDP-N-acetylenolpyruvoylglucosamine reductase	4.1478164477
+UniRef50_Q2T0L2: UDP-N-acetylenolpyruvoylglucosamine reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1478164477
+UniRef50_A0PZ54: Mur ligase family protein	4.1475085055
+UniRef50_A0PZ54: Mur ligase family protein|g__Clostridium.s__Clostridium_beijerinckii	4.1475085055
+UniRef50_R4ZR73: Erythrocyte binding protein 2	4.1474632132
+UniRef50_R4ZR73: Erythrocyte binding protein 2|g__Streptococcus.s__Streptococcus_agalactiae	4.1474632132
+UniRef50_L1NZZ4	4.1462730942
+UniRef50_L1NZZ4|unclassified	4.1462730942
+UniRef50_Q6AB77: Na(+)/H(+) antiporter NhaA	4.1460090827
+UniRef50_Q6AB77: Na(+)/H(+) antiporter NhaA|g__Propionibacterium.s__Propionibacterium_acnes	4.1460090827
+UniRef50_V8R0S4: Peptidase M16	4.1457935417
+UniRef50_V8R0S4: Peptidase M16|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1457935417
+UniRef50_E3A4U6	4.1455768418
+UniRef50_E3A4U6|unclassified	4.1455768418
+UniRef50_B9UQG2: PI-1 backbone protein	4.1445749029
+UniRef50_B9UQG2: PI-1 backbone protein|g__Streptococcus.s__Streptococcus_agalactiae	4.1445749029
+UniRef50_B9KXC9: UPF0145 protein trd_0115	4.1422077570
+UniRef50_B9KXC9: UPF0145 protein trd_0115|unclassified	4.1422077570
+UniRef50_F6AYF9: ABC-type transporter, integral membrane subunit	4.1414462647
+UniRef50_F6AYF9: ABC-type transporter, integral membrane subunit|g__Acinetobacter.s__Acinetobacter_baumannii	4.1414462647
+UniRef50_X2N1A9	4.1407867495
+UniRef50_X2N1A9|g__Escherichia.s__Escherichia_coli	4.1407867495
+UniRef50_A3M2I8: Histidinol-phosphate aminotransferase	4.1401303497
+UniRef50_A3M2I8: Histidinol-phosphate aminotransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1267857275
+UniRef50_A3M2I8: Histidinol-phosphate aminotransferase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9276437848
+UniRef50_A3M2I8: Histidinol-phosphate aminotransferase|unclassified	0.0857008374
+UniRef50_S5CRU7: SAM-dependent methyltransferase	4.1399882594
+UniRef50_S5CRU7: SAM-dependent methyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	4.1399882594
+UniRef50_J0XNJ8	4.1392993979
+UniRef50_J0XNJ8|g__Staphylococcus.s__Staphylococcus_epidermidis	4.1392993979
+UniRef50_L9IFJ0: BFD-like [2Fe-2S] binding domain protein	4.1391507137
+UniRef50_L9IFJ0: BFD-like [2Fe-2S] binding domain protein|g__Escherichia.s__Escherichia_coli	3.3898305085
+UniRef50_L9IFJ0: BFD-like [2Fe-2S] binding domain protein|unclassified	0.7493202052
+UniRef50_A6LW63: PAS/PAC sensor signal transduction histidine kinase	4.1375759741
+UniRef50_A6LW63: PAS/PAC sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	4.1375759741
+UniRef50_V0UHK4	4.1375369182
+UniRef50_V0UHK4|unclassified	4.1375369182
+UniRef50_L1K4A8	4.1372380825
+UniRef50_L1K4A8|unclassified	4.1372380825
+UniRef50_Q9RT16	4.1364535632
+UniRef50_Q9RT16|g__Deinococcus.s__Deinococcus_radiodurans	4.1364535632
+UniRef50_UPI0003B2FFE0: hypothetical protein	4.1361706202
+UniRef50_UPI0003B2FFE0: hypothetical protein|unclassified	4.1361706202
+UniRef50_N6IY30	4.1353874301
+UniRef50_N6IY30|g__Staphylococcus.s__Staphylococcus_aureus	4.0816326531
+UniRef50_N6IY30|unclassified	0.0537547771
+UniRef50_UPI000225B6E8: flagellar biosynthesis protein FliQ	4.1352257522
+UniRef50_UPI000225B6E8: flagellar biosynthesis protein FliQ|unclassified	4.1352257522
+UniRef50_A6M1V7	4.1349568747
+UniRef50_A6M1V7|g__Clostridium.s__Clostridium_beijerinckii	4.1349568747
+UniRef50_B3PRW7: Elongation factor P	4.1341658136
+UniRef50_B3PRW7: Elongation factor P|unclassified	4.1341658136
+UniRef50_UPI0004760483: hypothetical protein	4.1336701065
+UniRef50_UPI0004760483: hypothetical protein|unclassified	4.1336701065
+UniRef50_F4DWP9: Methyl-accepting chemotaxis sensory transducer	4.1336228757
+UniRef50_F4DWP9: Methyl-accepting chemotaxis sensory transducer|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1336228757
+UniRef50_E0S0B7: HD domain-containing protein	4.1329695671
+UniRef50_E0S0B7: HD domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	4.1329695671
+UniRef50_A5UJI4: Predicted type I restriction-modification enzyme, subunit S	4.1322314050
+UniRef50_A5UJI4: Predicted type I restriction-modification enzyme, subunit S|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.1322314050
+UniRef50_A7X0X3	4.1322314050
+UniRef50_A7X0X3|g__Staphylococcus.s__Staphylococcus_aureus	4.1322314050
+UniRef50_B5GNF3: ABC transport system ATP-binding protein	4.1322314050
+UniRef50_B5GNF3: ABC transport system ATP-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	4.1322314050
+UniRef50_D8BSS8	4.1322314050
+UniRef50_D8BSS8|g__Escherichia.s__Escherichia_coli	4.1322314050
+UniRef50_Q8CWZ8: Transcriptional regulator, Crp/Fnr family	4.1322314050
+UniRef50_Q8CWZ8: Transcriptional regulator, Crp/Fnr family|g__Streptococcus.s__Streptococcus_agalactiae	4.1322314050
+UniRef50_UPI0003618ACF: hypothetical protein	4.1322314050
+UniRef50_UPI0003618ACF: hypothetical protein|unclassified	4.1322314050
+UniRef50_UPI0003798A30: hypothetical protein	4.1322314050
+UniRef50_UPI0003798A30: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.1322314050
+UniRef50_G7LZJ4	4.1310758593
+UniRef50_G7LZJ4|g__Clostridium.s__Clostridium_beijerinckii	4.1310758593
+UniRef50_I4CDV3: Thioredoxin reductase	4.1309585461
+UniRef50_I4CDV3: Thioredoxin reductase|g__Clostridium.s__Clostridium_beijerinckii	4.1309585461
+UniRef50_W5W167: Putative membrane protein	4.1306285941
+UniRef50_W5W167: Putative membrane protein|unclassified	4.1306285941
+UniRef50_Q2W402: Protein RnfH	4.1305546467
+UniRef50_Q2W402: Protein RnfH|unclassified	4.1305546467
+UniRef50_L0EAK7: O-glycosyl hydrolase	4.1298908781
+UniRef50_L0EAK7: O-glycosyl hydrolase|g__Clostridium.s__Clostridium_beijerinckii	4.1298908781
+UniRef50_A3M8T8: Phage integrase	4.1287175159
+UniRef50_A3M8T8: Phage integrase|g__Acinetobacter.s__Acinetobacter_baumannii	4.1287175159
+UniRef50_L3AZC3: Diguanylate cyclase YdeH	4.1280065435
+UniRef50_L3AZC3: Diguanylate cyclase YdeH|g__Escherichia.s__Escherichia_coli	4.1280065435
+UniRef50_X6L6D5	4.1269315109
+UniRef50_X6L6D5|unclassified	4.1269315109
+UniRef50_E1HSY9	4.1264205943
+UniRef50_E1HSY9|unclassified	4.1264205943
+UniRef50_W8TXF4: Arsenical pump modifier	4.1257447984
+UniRef50_W8TXF4: Arsenical pump modifier|unclassified	4.1257447984
+UniRef50_A4XY79	4.1254521686
+UniRef50_A4XY79|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1254521686
+UniRef50_J7Q977: Escherichia coli IMT2125 genomic chromosome, IMT2125	4.1254005699
+UniRef50_J7Q977: Escherichia coli IMT2125 genomic chromosome, IMT2125|unclassified	4.1254005699
+UniRef50_F0RNI2	4.1250798132
+UniRef50_F0RNI2|g__Deinococcus.s__Deinococcus_radiodurans	4.1250798132
+UniRef50_K8E2U7: ABC transporter, CydDC cysteine exporter (CydDC-E) family, permease/ATP-binding protein CydD	4.1247552726
+UniRef50_K8E2U7: ABC transporter, CydDC cysteine exporter (CydDC-E) family, permease/ATP-binding protein CydD|g__Streptococcus.s__Streptococcus_agalactiae	4.1247552726
+UniRef50_UPI0004682CAA: flagellar biosynthesis protein FliQ	4.1241167438
+UniRef50_UPI0004682CAA: flagellar biosynthesis protein FliQ|unclassified	4.1241167438
+UniRef50_H3WGZ6	4.1240810726
+UniRef50_H3WGZ6|unclassified	4.1240810726
+UniRef50_S9SIR5	4.1239918541
+UniRef50_S9SIR5|unclassified	4.1239918541
+UniRef50_C7JF85: Arsenate reductase	4.1234612815
+UniRef50_C7JF85: Arsenate reductase|unclassified	4.1234612815
+UniRef50_UPI0003815BE1: hypothetical protein	4.1228015418
+UniRef50_UPI0003815BE1: hypothetical protein|unclassified	4.1228015418
+UniRef50_H8FQH1	4.1225744189
+UniRef50_H8FQH1|unclassified	4.1225744189
+UniRef50_J8UUC7	4.1221970334
+UniRef50_J8UUC7|unclassified	4.1221970334
+UniRef50_A3QJF9: Ribosomal RNA large subunit methyltransferase F	4.1215739443
+UniRef50_A3QJF9: Ribosomal RNA large subunit methyltransferase F|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1215739443
+UniRef50_UPI0003692A3E: hypothetical protein	4.1205639285
+UniRef50_UPI0003692A3E: hypothetical protein|unclassified	4.1205639285
+UniRef50_Z2DRI2	4.1203710145
+UniRef50_Z2DRI2|unclassified	4.1203710145
+UniRef50_UPI0003B6456C: ATP-dependent Clp protease ClpS	4.1200760211
+UniRef50_UPI0003B6456C: ATP-dependent Clp protease ClpS|unclassified	4.1200760211
+UniRef50_B9FSG9	4.1197061801
+UniRef50_B9FSG9|unclassified	4.1197061801
+UniRef50_U5MLQ0: Y_Y_Y domain containing protein	4.1196794602
+UniRef50_U5MLQ0: Y_Y_Y domain containing protein|g__Clostridium.s__Clostridium_beijerinckii	4.1196794602
+UniRef50_UPI000366947C: hypothetical protein	4.1196401610
+UniRef50_UPI000366947C: hypothetical protein|unclassified	4.1196401610
+UniRef50_A5D1G8: Methylthioribose-1-phosphate isomerase	4.1193689920
+UniRef50_A5D1G8: Methylthioribose-1-phosphate isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1193689920
+UniRef50_W0YRC1: 5-methyltetrahydropteroyltriglutamate/homocysteine S-methyltransferase	4.1177613899
+UniRef50_W0YRC1: 5-methyltetrahydropteroyltriglutamate/homocysteine S-methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1177613899
+UniRef50_D3JTG7: AqsR	4.1171422094
+UniRef50_D3JTG7: AqsR|g__Acinetobacter.s__Acinetobacter_baumannii	4.1171422094
+UniRef50_F5Y7Q0	4.1158040141
+UniRef50_F5Y7Q0|g__Clostridium.s__Clostridium_beijerinckii	4.1158040141
+UniRef50_B4UZ28	4.1152263374
+UniRef50_B4UZ28|unclassified	4.1152263374
+UniRef50_B6ENA5: DNA-binding protein Fis	4.1152263374
+UniRef50_B6ENA5: DNA-binding protein Fis|g__Escherichia.s__Escherichia_coli	4.1152263374
+UniRef50_C5BD73: UPF0757 protein YmgG	4.1152263374
+UniRef50_C5BD73: UPF0757 protein YmgG|g__Escherichia.s__Escherichia_coli	4.1152263374
+UniRef50_D9SL26: Peptidase S49	4.1152263374
+UniRef50_D9SL26: Peptidase S49|g__Clostridium.s__Clostridium_beijerinckii	4.1152263374
+UniRef50_P0A2D4: Protein translocase subunit SecE	4.1152263374
+UniRef50_P0A2D4: Protein translocase subunit SecE|g__Escherichia.s__Escherichia_coli	4.1152263374
+UniRef50_P42913	4.1152263374
+UniRef50_P42913|g__Escherichia.s__Escherichia_coli	4.1152263374
+UniRef50_P75692	4.1152263374
+UniRef50_P75692|g__Escherichia.s__Escherichia_coli	4.1152263374
+UniRef50_Q0TGT5	4.1152263374
+UniRef50_Q0TGT5|g__Escherichia.s__Escherichia_coli	4.1152263374
+UniRef50_R8S8V8	4.1152263374
+UniRef50_R8S8V8|unclassified	4.1152263374
+UniRef50_C7ND01: Diphosphomevalonate decarboxylase	4.1143753347
+UniRef50_C7ND01: Diphosphomevalonate decarboxylase|g__Streptococcus.s__Streptococcus_agalactiae	4.1143753347
+UniRef50_Q8E0Y0: Prophage LambdaSa1, structural protein, putative	4.1138199033
+UniRef50_Q8E0Y0: Prophage LambdaSa1, structural protein, putative|g__Streptococcus.s__Streptococcus_agalactiae	4.1138199033
+UniRef50_G7JG09: 30S ribosomal protein S14	4.1137692754
+UniRef50_G7JG09: 30S ribosomal protein S14|unclassified	4.1137692754
+UniRef50_A6M3E8	4.1136961182
+UniRef50_A6M3E8|g__Clostridium.s__Clostridium_beijerinckii	4.1136961182
+UniRef50_A6VA30	4.1132995947
+UniRef50_A6VA30|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5889355742
+UniRef50_A6VA30|unclassified	0.5243640205
+UniRef50_G7MAG2: Integral membrane sensor signal transduction histidine kinase	4.1132921423
+UniRef50_G7MAG2: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	4.1132921423
+UniRef50_N6UCK5	4.1130949476
+UniRef50_N6UCK5|unclassified	4.1130949476
+UniRef50_V5VBQ5: Ribonuclease Z	4.1120607921
+UniRef50_V5VBQ5: Ribonuclease Z|g__Acinetobacter.s__Acinetobacter_baumannii	4.1120607921
+UniRef50_Q9HVL0: UPF0114 protein PA4574	4.1110012591
+UniRef50_Q9HVL0: UPF0114 protein PA4574|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1110012591
+UniRef50_UPI00046878E9: NADH dehydrogenase	4.1098454982
+UniRef50_UPI00046878E9: NADH dehydrogenase|unclassified	4.1098454982
+UniRef50_V9WCN5: Serine-pyruvate aminotransferase/archaeal aspartate aminotransferase	4.1096191397
+UniRef50_V9WCN5: Serine-pyruvate aminotransferase/archaeal aspartate aminotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.1096191397
+UniRef50_Q88M74: Acyltransferase	4.1073797613
+UniRef50_Q88M74: Acyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1073797613
+UniRef50_Q9UJ68: Mitochondrial peptide methionine sulfoxide reductase	4.1072327633
+UniRef50_Q9UJ68: Mitochondrial peptide methionine sulfoxide reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5587188612
+UniRef50_Q9UJ68: Mitochondrial peptide methionine sulfoxide reductase|unclassified	0.5485139021
+UniRef50_F1BZ81: Putative arsenate reductase (Fragment)	4.1063601486
+UniRef50_F1BZ81: Putative arsenate reductase (Fragment)|unclassified	4.1063601486
+UniRef50_F2JLI9: MATE efflux family protein	4.1046433802
+UniRef50_F2JLI9: MATE efflux family protein|g__Clostridium.s__Clostridium_beijerinckii	4.1046433802
+UniRef50_A4VM51: Nitrate-binding protein NasS	4.1042671591
+UniRef50_A4VM51: Nitrate-binding protein NasS|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1042671591
+UniRef50_K2DN50	4.1037009945
+UniRef50_K2DN50|unclassified	4.1037009945
+UniRef50_F4A6Q6: Homoserine dehydrogenase	4.1028354540
+UniRef50_F4A6Q6: Homoserine dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	4.1028354540
+UniRef50_U5RNQ9: Glucokinase	4.1023483958
+UniRef50_U5RNQ9: Glucokinase|g__Clostridium.s__Clostridium_beijerinckii	4.1023483958
+UniRef50_A0LD63: Phosphopantothenate-cysteine ligase	4.1022830010
+UniRef50_A0LD63: Phosphopantothenate-cysteine ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.1022830010
+UniRef50_V8EEL8	4.1011933982
+UniRef50_V8EEL8|unclassified	2.6086560847
+UniRef50_V8EEL8|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4925373134
+UniRef50_M9RFD9	4.1009336542
+UniRef50_M9RFD9|unclassified	4.1009336542
+UniRef50_P57041: Major outer membrane protein P.IA	4.1008925216
+UniRef50_P57041: Major outer membrane protein P.IA|g__Neisseria.s__Neisseria_meningitidis	4.1008925216
+UniRef50_P65337: 4-alpha-glucanotransferase	4.1007105816
+UniRef50_P65337: 4-alpha-glucanotransferase|g__Propionibacterium.s__Propionibacterium_acnes	4.1007105816
+UniRef50_Q4ZVS4: Glycosyl hydrolase, BNR repeat protein	4.1005548275
+UniRef50_Q4ZVS4: Glycosyl hydrolase, BNR repeat protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.1005548275
+UniRef50_UPI0002379350: heavy-metal-associated protein	4.1000497863
+UniRef50_UPI0002379350: heavy-metal-associated protein|unclassified	4.1000497863
+UniRef50_F0DEU6	4.0988598283
+UniRef50_F0DEU6|unclassified	4.0988598283
+UniRef50_B0KCX0: Phosphotransferase system, lactose/cellobiose-specific IIB subunit	4.0983606557
+UniRef50_B0KCX0: Phosphotransferase system, lactose/cellobiose-specific IIB subunit|g__Clostridium.s__Clostridium_beijerinckii	4.0983606557
+UniRef50_Q8DSM2	4.0983606557
+UniRef50_Q8DSM2|g__Streptococcus.s__Streptococcus_mutans	4.0983606557
+UniRef50_G7M6V3: Transcriptional regulator, RpiR family	4.0969941483
+UniRef50_G7M6V3: Transcriptional regulator, RpiR family|g__Clostridium.s__Clostridium_beijerinckii	4.0969941483
+UniRef50_Q6FF71	4.0961846254
+UniRef50_Q6FF71|g__Acinetobacter.s__Acinetobacter_baumannii	4.0961846254
+UniRef50_K9ZWQ8	4.0957513058
+UniRef50_K9ZWQ8|g__Deinococcus.s__Deinococcus_radiodurans	3.9682539683
+UniRef50_K9ZWQ8|unclassified	0.1274973375
+UniRef50_U5MR93: Sensor histidine kinase YvrG	4.0953200294
+UniRef50_U5MR93: Sensor histidine kinase YvrG|g__Clostridium.s__Clostridium_beijerinckii	4.0953200294
+UniRef50_W1HHP3: Ribose ABC transporter, periplasmic ribose-binding protein RbsB (TC 3.A.1.2.1)	4.0950785355
+UniRef50_W1HHP3: Ribose ABC transporter, periplasmic ribose-binding protein RbsB (TC 3.A.1.2.1)|unclassified	4.0950785355
+UniRef50_Q97K94: Quinolinate synthase A	4.0949591851
+UniRef50_Q97K94: Quinolinate synthase A|g__Clostridium.s__Clostridium_beijerinckii	4.0589546739
+UniRef50_Q97K94: Quinolinate synthase A|unclassified	0.0360045112
+UniRef50_K5XT53: Phenol hydroxylase	4.0946828618
+UniRef50_K5XT53: Phenol hydroxylase|unclassified	4.0946828618
+UniRef50_B5EPN2: CDP-diacylglycerol/glycerol-3-phosphate 3-phosphatidyltransferase	4.0909652701
+UniRef50_B5EPN2: CDP-diacylglycerol/glycerol-3-phosphate 3-phosphatidyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0909652701
+UniRef50_W1GGS3	4.0909107806
+UniRef50_W1GGS3|g__Escherichia.s__Escherichia_coli	4.0909107806
+UniRef50_UPI00037B9B7F: hypothetical protein	4.0901053163
+UniRef50_UPI00037B9B7F: hypothetical protein|unclassified	4.0901053163
+UniRef50_B9TKF4	4.0898765663
+UniRef50_B9TKF4|unclassified	4.0898765663
+UniRef50_T7NH17: L-fucose-proton symporter	4.0895045594
+UniRef50_T7NH17: L-fucose-proton symporter|g__Escherichia.s__Escherichia_coli	4.0895045594
+UniRef50_C1DN07: Polysaccharide biosynthesis protein	4.0894226945
+UniRef50_C1DN07: Polysaccharide biosynthesis protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0894226945
+UniRef50_Q87ZG4: Non-homologous end joining protein Ku	4.0893244919
+UniRef50_Q87ZG4: Non-homologous end joining protein Ku|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0893244919
+UniRef50_Q475Q2: 4-hydroxythreonine-4-phosphate dehydrogenase	4.0891211258
+UniRef50_Q475Q2: 4-hydroxythreonine-4-phosphate dehydrogenase|g__Neisseria.s__Neisseria_meningitidis	3.0571293817
+UniRef50_Q475Q2: 4-hydroxythreonine-4-phosphate dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0319917441
+UniRef50_H8YWZ8	4.0890447015
+UniRef50_H8YWZ8|unclassified	4.0890447015
+UniRef50_R4R6C5: HlyD family secretion protein domain protein	4.0888334762
+UniRef50_R4R6C5: HlyD family secretion protein domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0888334762
+UniRef50_A6LRX7: Baseplate J family protein	4.0882627482
+UniRef50_A6LRX7: Baseplate J family protein|g__Clostridium.s__Clostridium_beijerinckii	4.0882627482
+UniRef50_F3V8H4: Hca operon transcriptional activator	4.0880208923
+UniRef50_F3V8H4: Hca operon transcriptional activator|g__Escherichia.s__Escherichia_coli	4.0880208923
+UniRef50_I0B601	4.0874938549
+UniRef50_I0B601|g__Acinetobacter.s__Acinetobacter_baumannii	4.0874938549
+UniRef50_Q2FD76: DMT family permease	4.0872888524
+UniRef50_Q2FD76: DMT family permease|g__Acinetobacter.s__Acinetobacter_baumannii	4.0872888524
+UniRef50_UPI000369906D: hypothetical protein	4.0839669759
+UniRef50_UPI000369906D: hypothetical protein|unclassified	4.0839669759
+UniRef50_P77453: Hydrogenase-4 component J	4.0816496529
+UniRef50_P77453: Hydrogenase-4 component J|g__Escherichia.s__Escherichia_coli	4.0816496529
+UniRef50_Q3JYX2: Acetyltransferase, GNAT family	4.0816496529
+UniRef50_Q3JYX2: Acetyltransferase, GNAT family|g__Streptococcus.s__Streptococcus_agalactiae	4.0816496529
+UniRef50_A0A023VJQ3: Epimerase	4.0816326531
+UniRef50_A0A023VJQ3: Epimerase|g__Streptococcus.s__Streptococcus_agalactiae	4.0816326531
+UniRef50_H4EAB2	4.0816326531
+UniRef50_H4EAB2|g__Staphylococcus.s__Staphylococcus_aureus	4.0816326531
+UniRef50_M2P2H3	4.0816326531
+UniRef50_M2P2H3|unclassified	4.0816326531
+UniRef50_N5CCD3	4.0816326531
+UniRef50_N5CCD3|g__Staphylococcus.s__Staphylococcus_aureus	4.0816326531
+UniRef50_Q6A674	4.0816326531
+UniRef50_Q6A674|g__Propionibacterium.s__Propionibacterium_acnes	4.0816326531
+UniRef50_Q8DW79	4.0816326531
+UniRef50_Q8DW79|g__Streptococcus.s__Streptococcus_mutans	4.0816326531
+UniRef50_R8HFA5	4.0816326531
+UniRef50_R8HFA5|unclassified	4.0816326531
+UniRef50_I3Y8S8: Alkyl sulfatase-like hydrolase	4.0815292713
+UniRef50_I3Y8S8: Alkyl sulfatase-like hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0815292713
+UniRef50_Q73UK5	4.0795850693
+UniRef50_Q73UK5|unclassified	4.0795850693
+UniRef50_K0B2D2	4.0781081921
+UniRef50_K0B2D2|g__Clostridium.s__Clostridium_beijerinckii	4.0781081921
+UniRef50_A4EH59	4.0777307965
+UniRef50_A4EH59|unclassified	4.0777307965
+UniRef50_A0A018LP77	4.0757517259
+UniRef50_A0A018LP77|unclassified	4.0757517259
+UniRef50_Q2T312: Glutamate-1-semialdehyde aminotransferase	4.0756779688
+UniRef50_Q2T312: Glutamate-1-semialdehyde aminotransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2228835939
+UniRef50_Q2T312: Glutamate-1-semialdehyde aminotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.8527943749
+UniRef50_A6LYX7	4.0755269946
+UniRef50_A6LYX7|g__Clostridium.s__Clostridium_beijerinckii	4.0755269946
+UniRef50_F9Z1I9: 3-oxoacyl-[acyl-carrier-protein] synthase 1	4.0748568134
+UniRef50_F9Z1I9: 3-oxoacyl-[acyl-carrier-protein] synthase 1|g__Propionibacterium.s__Propionibacterium_acnes	4.0748568134
+UniRef50_D4HBY8: Alanine racemase domain protein	4.0741237160
+UniRef50_D4HBY8: Alanine racemase domain protein|g__Propionibacterium.s__Propionibacterium_acnes	4.0741237160
+UniRef50_Q99335: Transposase for insertion sequence element IS232	4.0740438238
+UniRef50_Q99335: Transposase for insertion sequence element IS232|g__Clostridium.s__Clostridium_beijerinckii	4.0740438238
+UniRef50_UPI0003F687BA: deoxyguanosinetriphosphate triphosphohydrolase	4.0735397505
+UniRef50_UPI0003F687BA: deoxyguanosinetriphosphate triphosphohydrolase|unclassified	4.0735397505
+UniRef50_Q016V1: WGS project CAID00000000 data, contig chromosome 06 (Fragment)	4.0733522335
+UniRef50_Q016V1: WGS project CAID00000000 data, contig chromosome 06 (Fragment)|unclassified	4.0733522335
+UniRef50_L7FBC9: Glutaredoxin-like protein	4.0733197556
+UniRef50_L7FBC9: Glutaredoxin-like protein|unclassified	4.0733197556
+UniRef50_Q8CQR7	4.0732127920
+UniRef50_Q8CQR7|unclassified	4.0732127920
+UniRef50_W0Z0M6: ABC transporter permease	4.0724433963
+UniRef50_W0Z0M6: ABC transporter permease|g__Acinetobacter.s__Acinetobacter_baumannii	2.5974025974
+UniRef50_W0Z0M6: ABC transporter permease|g__Neisseria.s__Neisseria_meningitidis	1.3623978202
+UniRef50_W0Z0M6: ABC transporter permease|unclassified	0.1126429787
+UniRef50_G8V4P8	4.0708604128
+UniRef50_G8V4P8|g__Staphylococcus.s__Staphylococcus_aureus	3.7878787879
+UniRef50_G8V4P8|unclassified	0.2829816250
+UniRef50_E0Q485	4.0707215410
+UniRef50_E0Q485|unclassified	4.0707215410
+UniRef50_V1XPG8	4.0697261254
+UniRef50_V1XPG8|unclassified	4.0697261254
+UniRef50_I0TKC6: PF10100 family protein	4.0689935365
+UniRef50_I0TKC6: PF10100 family protein|unclassified	4.0689935365
+UniRef50_UPI00005576C2: hypothetical protein	4.0679612763
+UniRef50_UPI00005576C2: hypothetical protein|unclassified	4.0679612763
+UniRef50_Q7P0S6: Agmatinase	4.0665254587
+UniRef50_Q7P0S6: Agmatinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.0665254587
+UniRef50_A7ZLH8	4.0660944495
+UniRef50_A7ZLH8|unclassified	4.0660944495
+UniRef50_UPI00047018EB: hypothetical protein	4.0654779547
+UniRef50_UPI00047018EB: hypothetical protein|unclassified	4.0654779547
+UniRef50_H8H0T4	4.0653408591
+UniRef50_H8H0T4|g__Deinococcus.s__Deinococcus_radiodurans	4.0653408591
+UniRef50_A0A023RUP9	4.0650406504
+UniRef50_A0A023RUP9|g__Acinetobacter.s__Acinetobacter_baumannii	4.0650406504
+UniRef50_A0A023Z3J5	4.0650406504
+UniRef50_A0A023Z3J5|unclassified	4.0650406504
+UniRef50_B0ULR0	4.0650406504
+UniRef50_B0ULR0|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.0650406504
+UniRef50_L8CIH0: Putative outer membrane lipoprotein YmcA	4.0650406504
+UniRef50_L8CIH0: Putative outer membrane lipoprotein YmcA|g__Escherichia.s__Escherichia_coli	4.0650406504
+UniRef50_P11289	4.0650406504
+UniRef50_P11289|g__Escherichia.s__Escherichia_coli	4.0650406504
+UniRef50_S1KTP6: UPF0759 protein yecE	4.0650406504
+UniRef50_S1KTP6: UPF0759 protein yecE|g__Escherichia.s__Escherichia_coli	4.0650406504
+UniRef50_T1XVB2: Antitoxin, putative	4.0650406504
+UniRef50_T1XVB2: Antitoxin, putative|g__Staphylococcus.s__Staphylococcus_aureus	4.0650406504
+UniRef50_W1MR87	4.0650406504
+UniRef50_W1MR87|unclassified	4.0650406504
+UniRef50_Q4K5I9: Sensor histidine kinase/response regulator	4.0645629309
+UniRef50_Q4K5I9: Sensor histidine kinase/response regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0645629309
+UniRef50_Q51463: Flagellar M-ring protein	4.0641253065
+UniRef50_Q51463: Flagellar M-ring protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0641253065
+UniRef50_UPI000360322F: hypothetical protein	4.0621865531
+UniRef50_UPI000360322F: hypothetical protein|unclassified	4.0621865531
+UniRef50_E2ZTU0	4.0616019000
+UniRef50_E2ZTU0|unclassified	4.0616019000
+UniRef50_Q87BI4: Segregation and condensation protein A	4.0613792313
+UniRef50_Q87BI4: Segregation and condensation protein A|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0613792313
+UniRef50_D5AV27: Secretion ATP-binding protein, HlyB family	4.0604621915
+UniRef50_D5AV27: Secretion ATP-binding protein, HlyB family|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.0604621915
+UniRef50_A6VCM9: Oxidoreductase, FAD-binding	4.0590465367
+UniRef50_A6VCM9: Oxidoreductase, FAD-binding|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0590465367
+UniRef50_S9Q6X1	4.0585457386
+UniRef50_S9Q6X1|unclassified	4.0585457386
+UniRef50_R4ZTI0	4.0584784828
+UniRef50_R4ZTI0|g__Streptococcus.s__Streptococcus_agalactiae	4.0584784828
+UniRef50_Q05335: XylDLEGF operon transcriptional activator 3	4.0572124564
+UniRef50_Q05335: XylDLEGF operon transcriptional activator 3|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0572124564
+UniRef50_H9UTJ9	4.0571033285
+UniRef50_H9UTJ9|unclassified	4.0571033285
+UniRef50_D7AQ31: Transcriptional regulator, DeoR family	4.0569211708
+UniRef50_D7AQ31: Transcriptional regulator, DeoR family|g__Clostridium.s__Clostridium_beijerinckii	4.0569211708
+UniRef50_A6M0R6: Methyl-accepting chemotaxis sensory transducer	4.0567580202
+UniRef50_A6M0R6: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	4.0567580202
+UniRef50_Q1YI24	4.0555618654
+UniRef50_Q1YI24|unclassified	4.0555618654
+UniRef50_B8FRY4: Periplasmic binding protein	4.0551468678
+UniRef50_B8FRY4: Periplasmic binding protein|g__Clostridium.s__Clostridium_beijerinckii	4.0551468678
+UniRef50_W1EX10: [NiFe] hydrogenase metallocenter assembly protein HypF	4.0539199715
+UniRef50_W1EX10: [NiFe] hydrogenase metallocenter assembly protein HypF|g__Escherichia.s__Escherichia_coli	4.0539199715
+UniRef50_J9YUJ8: Sensor histidine kinase	4.0536138763
+UniRef50_J9YUJ8: Sensor histidine kinase|g__Streptococcus.s__Streptococcus_agalactiae	4.0536138763
+UniRef50_A3PNN1	4.0534145812
+UniRef50_A3PNN1|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.8557453250
+UniRef50_A3PNN1|unclassified	0.1976692562
+UniRef50_I7DNF2	4.0533212835
+UniRef50_I7DNF2|unclassified	4.0533212835
+UniRef50_M1MAA9	4.0506915452
+UniRef50_M1MAA9|g__Clostridium.s__Clostridium_beijerinckii	4.0506915452
+UniRef50_P52336: Nitrogenase iron protein (Fragment)	4.0506777468
+UniRef50_P52336: Nitrogenase iron protein (Fragment)|unclassified	4.0506777468
+UniRef50_U4T2S3	4.0506668502
+UniRef50_U4T2S3|unclassified	4.0506668502
+UniRef50_A7ZJM7: DNA protection during starvation protein	4.0499272407
+UniRef50_A7ZJM7: DNA protection during starvation protein|g__Escherichia.s__Escherichia_coli	4.0499272407
+UniRef50_A0A032T432: Tetracycline resistance protein	4.0485829960
+UniRef50_A0A032T432: Tetracycline resistance protein|unclassified	4.0485829960
+UniRef50_A8AK39: 6,7-dimethyl-8-ribityllumazine synthase	4.0485829960
+UniRef50_A8AK39: 6,7-dimethyl-8-ribityllumazine synthase|g__Escherichia.s__Escherichia_coli	4.0485829960
+UniRef50_B7LTX8: DNA gyrase inhibitor	4.0485829960
+UniRef50_B7LTX8: DNA gyrase inhibitor|g__Escherichia.s__Escherichia_coli	4.0485829960
+UniRef50_H1ZDP7: Regulatory protein MerR	4.0485829960
+UniRef50_H1ZDP7: Regulatory protein MerR|g__Streptococcus.s__Streptococcus_mutans	4.0485829960
+UniRef50_I6SUA4	4.0485829960
+UniRef50_I6SUA4|g__Streptococcus.s__Streptococcus_mutans	4.0485829960
+UniRef50_J8V5Y8	4.0485829960
+UniRef50_J8V5Y8|unclassified	4.0485829960
+UniRef50_K5HQD7	4.0485829960
+UniRef50_K5HQD7|g__Escherichia.s__Escherichia_coli	4.0485829960
+UniRef50_T1Y7L4	4.0485829960
+UniRef50_T1Y7L4|g__Staphylococcus.s__Staphylococcus_aureus	4.0485829960
+UniRef50_V7HGF6	4.0485829960
+UniRef50_V7HGF6|unclassified	4.0485829960
+UniRef50_V8EL51	4.0485829960
+UniRef50_V8EL51|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0485829960
+UniRef50_X5F552	4.0485829960
+UniRef50_X5F552|g__Neisseria.s__Neisseria_meningitidis	4.0485829960
+UniRef50_U9YF50	4.0484745701
+UniRef50_U9YF50|unclassified	4.0484745701
+UniRef50_Q8DX75: Membrane protein, putative	4.0480271897
+UniRef50_Q8DX75: Membrane protein, putative|g__Streptococcus.s__Streptococcus_agalactiae	4.0480271897
+UniRef50_I6GY89: Putative membrane protein	4.0476092855
+UniRef50_I6GY89: Putative membrane protein|unclassified	4.0476092855
+UniRef50_UPI000367676A: hypothetical protein	4.0471176702
+UniRef50_UPI000367676A: hypothetical protein|unclassified	4.0471176702
+UniRef50_UPI000376CC75: hypothetical protein	4.0466929647
+UniRef50_UPI000376CC75: hypothetical protein|unclassified	4.0466929647
+UniRef50_M1N4C4	4.0466026860
+UniRef50_M1N4C4|g__Clostridium.s__Clostridium_beijerinckii	4.0466026860
+UniRef50_G7M5R9	4.0458826357
+UniRef50_G7M5R9|g__Clostridium.s__Clostridium_beijerinckii	4.0458826357
+UniRef50_M1MKH3: Xylose transport system permease protein XylH	4.0446639832
+UniRef50_M1MKH3: Xylose transport system permease protein XylH|g__Clostridium.s__Clostridium_beijerinckii	4.0446639832
+UniRef50_M1LW12: Sensor histidine kinase AruS	4.0444573638
+UniRef50_M1LW12: Sensor histidine kinase AruS|g__Clostridium.s__Clostridium_beijerinckii	4.0444573638
+UniRef50_G0VNS1: PTS family mannitol porter	4.0443690598
+UniRef50_G0VNS1: PTS family mannitol porter|g__Clostridium.s__Clostridium_beijerinckii	4.0443690598
+UniRef50_S5VIT0: Relaxase/mobilization nuclease domain protein	4.0427085150
+UniRef50_S5VIT0: Relaxase/mobilization nuclease domain protein|unclassified	4.0427085150
+UniRef50_I4KLM3: Aliphatic sulfonates family ABC transporter, periplasmic substrate-binding protein	4.0425299276
+UniRef50_I4KLM3: Aliphatic sulfonates family ABC transporter, periplasmic substrate-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0425299276
+UniRef50_Q492F5: 4-hydroxy-tetrahydrodipicolinate synthase	4.0424041005
+UniRef50_Q492F5: 4-hydroxy-tetrahydrodipicolinate synthase|g__Escherichia.s__Escherichia_coli	4.0234390381
+UniRef50_Q492F5: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0189650624
+UniRef50_Q9HXY5: Skp-like protein	4.0417401529
+UniRef50_Q9HXY5: Skp-like protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0417401529
+UniRef50_L4XF07: D-galactonate transporter	4.0417209909
+UniRef50_L4XF07: D-galactonate transporter|g__Escherichia.s__Escherichia_coli	4.0417209909
+UniRef50_D6M1S6: Peptide ABC transporter, permease (Fragment)	4.0416549511
+UniRef50_D6M1S6: Peptide ABC transporter, permease (Fragment)|unclassified	4.0416549511
+UniRef50_X1NF57: Marine sediment metagenome DNA, contig: S06H3_S04421 (Fragment)	4.0406683776
+UniRef50_X1NF57: Marine sediment metagenome DNA, contig: S06H3_S04421 (Fragment)|unclassified	4.0406683776
+UniRef50_UPI000362EFC5: hypothetical protein	4.0406246549
+UniRef50_UPI000362EFC5: hypothetical protein|unclassified	4.0406246549
+UniRef50_P33641: Outer membrane protein assembly factor BamD	4.0387592733
+UniRef50_P33641: Outer membrane protein assembly factor BamD|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0387592733
+UniRef50_X8LV27	4.0376386311
+UniRef50_X8LV27|unclassified	4.0376386311
+UniRef50_I6D4G4: Short chain dehydrogenase family protein	4.0363310525
+UniRef50_I6D4G4: Short chain dehydrogenase family protein|g__Escherichia.s__Escherichia_coli	4.0363310525
+UniRef50_H0G932	4.0362988178
+UniRef50_H0G932|unclassified	4.0362988178
+UniRef50_F8INR3: Hydrolase HAD family	4.0360987140
+UniRef50_F8INR3: Hydrolase HAD family|g__Streptococcus.s__Streptococcus_agalactiae	4.0360987140
+UniRef50_A9I3J3: TonB-dependent outer membrane receptor	4.0355048309
+UniRef50_A9I3J3: TonB-dependent outer membrane receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0355048309
+UniRef50_H4G9G3	4.0351946449
+UniRef50_H4G9G3|unclassified	4.0351946449
+UniRef50_UPI00020004A1: MULTISPECIES: hypothetical protein	4.0349392957
+UniRef50_UPI00020004A1: MULTISPECIES: hypothetical protein|unclassified	4.0349392957
+UniRef50_UPI0004758E9D: hypothetical protein, partial	4.0348144703
+UniRef50_UPI0004758E9D: hypothetical protein, partial|unclassified	4.0348144703
+UniRef50_B2TLQ4: Chemotaxis response regulator protein-glutamate methylesterase	4.0339760403
+UniRef50_B2TLQ4: Chemotaxis response regulator protein-glutamate methylesterase|g__Clostridium.s__Clostridium_beijerinckii	4.0339760403
+UniRef50_P58319: Low specificity L-threonine aldolase	4.0324868487
+UniRef50_P58319: Low specificity L-threonine aldolase|g__Escherichia.s__Escherichia_coli	3.9493177388
+UniRef50_P58319: Low specificity L-threonine aldolase|unclassified	0.0831691099
+UniRef50_UPI00036925F6: hypothetical protein	4.0323194238
+UniRef50_UPI00036925F6: hypothetical protein|unclassified	4.0323194238
+UniRef50_A5UKR1: Cobalt ABC transporter, permease component	4.0322580645
+UniRef50_A5UKR1: Cobalt ABC transporter, permease component|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4.0322580645
+UniRef50_A9MRN3: UPF0482 protein YnfB	4.0322580645
+UniRef50_A9MRN3: UPF0482 protein YnfB|g__Escherichia.s__Escherichia_coli	4.0322580645
+UniRef50_D4HCQ8: Methylenetetrahydrofolate reductase	4.0322580645
+UniRef50_D4HCQ8: Methylenetetrahydrofolate reductase|g__Propionibacterium.s__Propionibacterium_acnes	4.0322580645
+UniRef50_E3A0D5	4.0322580645
+UniRef50_E3A0D5|unclassified	4.0322580645
+UniRef50_Q6A8L2: Imidazole glycerol phosphate synthase subunit HisH	4.0322580645
+UniRef50_Q6A8L2: Imidazole glycerol phosphate synthase subunit HisH|g__Propionibacterium.s__Propionibacterium_acnes	4.0322580645
+UniRef50_R8ZNX1	4.0322580645
+UniRef50_R8ZNX1|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0322580645
+UniRef50_S0WC85	4.0322580645
+UniRef50_S0WC85|g__Escherichia.s__Escherichia_coli	4.0322580645
+UniRef50_T2A3R6	4.0322580645
+UniRef50_T2A3R6|g__Neisseria.s__Neisseria_meningitidis	4.0322580645
+UniRef50_V4YV07	4.0322580645
+UniRef50_V4YV07|g__Streptococcus.s__Streptococcus_mutans	4.0322580645
+UniRef50_W0YNG1	4.0322580645
+UniRef50_W0YNG1|unclassified	4.0322580645
+UniRef50_X2MZD5: (P)ppGpp synthetase	4.0322580645
+UniRef50_X2MZD5: (P)ppGpp synthetase|g__Escherichia.s__Escherichia_coli	4.0322580645
+UniRef50_F6IC38: Integrase catalytic subunit	4.0314486420
+UniRef50_F6IC38: Integrase catalytic subunit|unclassified	4.0314486420
+UniRef50_D4KNP6: Arginine decarboxylase	4.0313049733
+UniRef50_D4KNP6: Arginine decarboxylase|g__Clostridium.s__Clostridium_beijerinckii	4.0313049733
+UniRef50_UPI00035CA1F1: 50S ribosomal protein L28	4.0307532462
+UniRef50_UPI00035CA1F1: 50S ribosomal protein L28|unclassified	4.0307532462
+UniRef50_A0A034MVC8	4.0302207259
+UniRef50_A0A034MVC8|unclassified	4.0302207259
+UniRef50_A7FAX8	4.0301738063
+UniRef50_A7FAX8|g__Acinetobacter.s__Acinetobacter_baumannii	4.0301738063
+UniRef50_UPI00046E5504: hypothetical protein	4.0288812750
+UniRef50_UPI00046E5504: hypothetical protein|unclassified	4.0288812750
+UniRef50_R4XS45: Membrane proteins related to metalloendopeptidases	4.0283975659
+UniRef50_R4XS45: Membrane proteins related to metalloendopeptidases|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0283975659
+UniRef50_D9VNI8: Galactose oxidase (Fragment)	4.0279231077
+UniRef50_D9VNI8: Galactose oxidase (Fragment)|unclassified	4.0279231077
+UniRef50_Q3K742: UDP-N-acetylmuramoylalanine--D-glutamate ligase	4.0270999300
+UniRef50_Q3K742: UDP-N-acetylmuramoylalanine--D-glutamate ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0270999300
+UniRef50_F5I475: Acyl-CoA dehydrogenase, middle domain protein	4.0264191016
+UniRef50_F5I475: Acyl-CoA dehydrogenase, middle domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	4.0264191016
+UniRef50_A3PS03	4.0257479480
+UniRef50_A3PS03|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.0257479480
+UniRef50_UPI0001AF2B31: LysR family transcriptional regulator	4.0249397080
+UniRef50_UPI0001AF2B31: LysR family transcriptional regulator|unclassified	4.0249397080
+UniRef50_P26165: 2-vinyl bacteriochlorophyllide hydratase	4.0248868252
+UniRef50_P26165: 2-vinyl bacteriochlorophyllide hydratase|unclassified	4.0248868252
+UniRef50_A0A021W377	4.0232524057
+UniRef50_A0A021W377|unclassified	4.0232524057
+UniRef50_A3M5J5	4.0224837027
+UniRef50_A3M5J5|g__Acinetobacter.s__Acinetobacter_baumannii	4.0224837027
+UniRef50_UPI00036C24C5: hypothetical protein	4.0218020408
+UniRef50_UPI00036C24C5: hypothetical protein|unclassified	4.0218020408
+UniRef50_Q9I190: Macrolide export ATP-binding/permease protein MacB	4.0217571800
+UniRef50_Q9I190: Macrolide export ATP-binding/permease protein MacB|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7853560740
+UniRef50_Q9I190: Macrolide export ATP-binding/permease protein MacB|unclassified	0.2364011060
+UniRef50_E1V3V1: ABC-type transport system ATP-binding protein	4.0209775044
+UniRef50_E1V3V1: ABC-type transport system ATP-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0209775044
+UniRef50_U3T1Y1: Potassium uptake protein, TrkA	4.0208425788
+UniRef50_U3T1Y1: Potassium uptake protein, TrkA|g__Acinetobacter.s__Acinetobacter_baumannii	4.0208425788
+UniRef50_P57028: DNA primase	4.0208133220
+UniRef50_P57028: DNA primase|g__Neisseria.s__Neisseria_meningitidis	3.9975084039
+UniRef50_P57028: DNA primase|unclassified	0.0233049180
+UniRef50_Q1QYW1: NADH:flavin oxidoreductase/NADH oxidase	4.0199569277
+UniRef50_Q1QYW1: NADH:flavin oxidoreductase/NADH oxidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0199569277
+UniRef50_A6LS74	4.0191782533
+UniRef50_A6LS74|g__Clostridium.s__Clostridium_beijerinckii	4.0191782533
+UniRef50_N0AYA8: Two component system histidine kinase	4.0181996103
+UniRef50_N0AYA8: Two component system histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	4.0181996103
+UniRef50_H8H0D3	4.0174435322
+UniRef50_H8H0D3|g__Deinococcus.s__Deinococcus_radiodurans	4.0174435322
+UniRef50_Q28RH4	4.0168133352
+UniRef50_Q28RH4|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.9069767442
+UniRef50_Q28RH4|unclassified	1.1098365910
+UniRef50_A6LT03	4.0167549967
+UniRef50_A6LT03|g__Clostridium.s__Clostridium_beijerinckii	4.0167549967
+UniRef50_A0Q196: DNA gyrase, A subunit	4.0167355547
+UniRef50_A0Q196: DNA gyrase, A subunit|g__Clostridium.s__Clostridium_beijerinckii	4.0167355547
+UniRef50_T2E6P2: Outer membrane autotransporter barrel domain protein	4.0161282742
+UniRef50_T2E6P2: Outer membrane autotransporter barrel domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0161282742
+UniRef50_A6LZR8	4.0160804506
+UniRef50_A6LZR8|g__Clostridium.s__Clostridium_beijerinckii	4.0160804506
+UniRef50_D4HC08: Acetyltransferase, GNAT family	4.0160642570
+UniRef50_D4HC08: Acetyltransferase, GNAT family|g__Propionibacterium.s__Propionibacterium_acnes	4.0160642570
+UniRef50_H1W8A0	4.0160642570
+UniRef50_H1W8A0|unclassified	4.0160642570
+UniRef50_I3P687: Truncated glycolipid transfer protein isoform 2	4.0160642570
+UniRef50_I3P687: Truncated glycolipid transfer protein isoform 2|unclassified	4.0160642570
+UniRef50_Q2RHZ4: UPF0297 protein Moth_1643	4.0160642570
+UniRef50_Q2RHZ4: UPF0297 protein Moth_1643|g__Streptococcus.s__Streptococcus_mutans	4.0160642570
+UniRef50_Q8CMM8: Truncated Pre protein	4.0160642570
+UniRef50_Q8CMM8: Truncated Pre protein|g__Staphylococcus.s__Staphylococcus_epidermidis	4.0160642570
+UniRef50_A6DYV9	4.0153892469
+UniRef50_A6DYV9|unclassified	4.0153892469
+UniRef50_M9VHD2: Ion channel	4.0147216255
+UniRef50_M9VHD2: Ion channel|g__Propionibacterium.s__Propionibacterium_acnes	4.0147216255
+UniRef50_A0A026WQ11	4.0137553573
+UniRef50_A0A026WQ11|unclassified	4.0137553573
+UniRef50_P52027: DNA polymerase I	4.0126200742
+UniRef50_P52027: DNA polymerase I|g__Deinococcus.s__Deinococcus_radiodurans	3.9842155996
+UniRef50_P52027: DNA polymerase I|unclassified	0.0284044746
+UniRef50_UPI00046D1B1D: hypothetical protein	4.0124968864
+UniRef50_UPI00046D1B1D: hypothetical protein|unclassified	4.0124968864
+UniRef50_G7U5S7: HAD hydrolase, family IIA	4.0120401445
+UniRef50_G7U5S7: HAD hydrolase, family IIA|g__Propionibacterium.s__Propionibacterium_acnes	4.0120401445
+UniRef50_UPI0003621DA0: hypothetical protein	4.0116418751
+UniRef50_UPI0003621DA0: hypothetical protein|unclassified	4.0116418751
+UniRef50_Q8XP36: UPF0324 membrane protein CPE0129	4.0115066646
+UniRef50_Q8XP36: UPF0324 membrane protein CPE0129|g__Clostridium.s__Clostridium_beijerinckii	4.0115066646
+UniRef50_T8TFL3: Exonuclease VIII	4.0114774417
+UniRef50_T8TFL3: Exonuclease VIII|g__Escherichia.s__Escherichia_coli	4.0114774417
+UniRef50_UPI00037D5428: hypothetical protein	4.0112219957
+UniRef50_UPI00037D5428: hypothetical protein|unclassified	4.0112219957
+UniRef50_Q9RR46: Glycine betaine/carnitine transport ATP-binding protein GbuA	4.0111115230
+UniRef50_Q9RR46: Glycine betaine/carnitine transport ATP-binding protein GbuA|g__Propionibacterium.s__Propionibacterium_acnes	4.0111115230
+UniRef50_X7EJ73: Tail protein	4.0110343033
+UniRef50_X7EJ73: Tail protein|unclassified	4.0110343033
+UniRef50_Q8XKT3: DegV domain-containing protein CPE1310	4.0100049103
+UniRef50_Q8XKT3: DegV domain-containing protein CPE1310|g__Clostridium.s__Clostridium_beijerinckii	4.0100049103
+UniRef50_A0A017L9W9: Gram-negative pili assembly chaperone, C-terminal domain protein	4.0083758121
+UniRef50_A0A017L9W9: Gram-negative pili assembly chaperone, C-terminal domain protein|unclassified	4.0083758121
+UniRef50_D3R582: Glycosyltransferase	4.0069210888
+UniRef50_D3R582: Glycosyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	4.0069210888
+UniRef50_A3PK69: N-acetylmuramoyl-L-alanine amidase	4.0068713775
+UniRef50_A3PK69: N-acetylmuramoyl-L-alanine amidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	4.0068713775
+UniRef50_D4K7B0: dTDP-4-dehydrorhamnose reductase	4.0067174332
+UniRef50_D4K7B0: dTDP-4-dehydrorhamnose reductase|g__Clostridium.s__Clostridium_beijerinckii	4.0067174332
+UniRef50_I0C190: Nitrogen regulation protein NIFR3	4.0066003968
+UniRef50_I0C190: Nitrogen regulation protein NIFR3|unclassified	4.0066003968
+UniRef50_Q8GAI8: Succinate-semialdehyde dehydrogenase	4.0057989417
+UniRef50_Q8GAI8: Succinate-semialdehyde dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	3.9333907838
+UniRef50_Q8GAI8: Succinate-semialdehyde dehydrogenase|unclassified	0.0724081579
+UniRef50_A1KRZ2: Phosphate acyltransferase	4.0048006868
+UniRef50_A1KRZ2: Phosphate acyltransferase|g__Neisseria.s__Neisseria_meningitidis	4.0048006868
+UniRef50_Q88R84	4.0040401125
+UniRef50_Q88R84|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0040401125
+UniRef50_J9P3F6	4.0040040040
+UniRef50_J9P3F6|unclassified	4.0040040040
+UniRef50_Q9K0X8: Cell division protein FtsA	4.0039579344
+UniRef50_Q9K0X8: Cell division protein FtsA|g__Neisseria.s__Neisseria_meningitidis	4.0039579344
+UniRef50_F8GLJ2: Putrescine-binding periplasmic protein	4.0033622152
+UniRef50_F8GLJ2: Putrescine-binding periplasmic protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0033622152
+UniRef50_V9T452: Metabolite transporter	4.0029710296
+UniRef50_V9T452: Metabolite transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0029710296
+UniRef50_K0JC90: Mobilization protein A	4.0026403113
+UniRef50_K0JC90: Mobilization protein A|unclassified	4.0026403113
+UniRef50_E4ZD88: CobW-related protein	4.0022552096
+UniRef50_E4ZD88: CobW-related protein|g__Neisseria.s__Neisseria_meningitidis	4.0022552096
+UniRef50_A8HRG8: Glycine betaine/L-proline ABC transporter	4.0020543616
+UniRef50_A8HRG8: Glycine betaine/L-proline ABC transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0020543616
+UniRef50_Q57180	4.0004786464
+UniRef50_Q57180|g__Pseudomonas.s__Pseudomonas_aeruginosa	4.0004786464
+UniRef50_A6M3C8: Phage integrase family protein	4.0000000000
+UniRef50_A6M3C8: Phage integrase family protein|g__Clostridium.s__Clostridium_beijerinckii	4.0000000000
+UniRef50_B1M2H9	4.0000000000
+UniRef50_B1M2H9|unclassified	4.0000000000
+UniRef50_Q3J2N9	4.0000000000
+UniRef50_Q3J2N9|unclassified	4.0000000000
+UniRef50_V4JIY1	4.0000000000
+UniRef50_V4JIY1|unclassified	4.0000000000
+UniRef50_W8TCI4	4.0000000000
+UniRef50_W8TCI4|g__Escherichia.s__Escherichia_coli	4.0000000000
+UniRef50_Q99ZE5: Stress response regulator gls24 homolog	3.9989664699
+UniRef50_Q99ZE5: Stress response regulator gls24 homolog|g__Streptococcus.s__Streptococcus_agalactiae	3.9989664699
+UniRef50_R4RRJ5	3.9987424856
+UniRef50_R4RRJ5|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9987424856
+UniRef50_UPI00036DE10D: hypothetical protein	3.9986290558
+UniRef50_UPI00036DE10D: hypothetical protein|unclassified	3.9986290558
+UniRef50_B7V9G1	3.9985277736
+UniRef50_B7V9G1|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9985277736
+UniRef50_Q8E0E7: Conserved domain protein	3.9978221980
+UniRef50_Q8E0E7: Conserved domain protein|g__Streptococcus.s__Streptococcus_agalactiae	3.9978221980
+UniRef50_U5MSV8: DNA-binding protein, excisionase family	3.9973806132
+UniRef50_U5MSV8: DNA-binding protein, excisionase family|g__Clostridium.s__Clostridium_beijerinckii	3.9973806132
+UniRef50_A0A013GNM0: Penicillin binding transpeptidase domain protein	3.9972822535
+UniRef50_A0A013GNM0: Penicillin binding transpeptidase domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.9972822535
+UniRef50_L0IML0: ABC-type nitrate/sulfonate/bicarbonate transport system, periplasmic component	3.9962870336
+UniRef50_L0IML0: ABC-type nitrate/sulfonate/bicarbonate transport system, periplasmic component|g__Clostridium.s__Clostridium_beijerinckii	3.9962870336
+UniRef50_P21207: Low calcium response locus protein H	3.9961036991
+UniRef50_P21207: Low calcium response locus protein H|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9961036991
+UniRef50_UPI0003C4395A	3.9956314747
+UniRef50_UPI0003C4395A|unclassified	3.9956314747
+UniRef50_UPI0003B7160F: N-acetylglucosaminyltransferase	3.9950318803
+UniRef50_UPI0003B7160F: N-acetylglucosaminyltransferase|unclassified	3.9950318803
+UniRef50_R6LNJ5: Calcium-translocating P-type ATPase PMCA-type	3.9947732029
+UniRef50_R6LNJ5: Calcium-translocating P-type ATPase PMCA-type|g__Clostridium.s__Clostridium_beijerinckii	3.9947732029
+UniRef50_B2JHS5: Transcriptional regulator, LacI family	3.9947128319
+UniRef50_B2JHS5: Transcriptional regulator, LacI family|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9947128319
+UniRef50_I4CPJ8: C-type cytochrome	3.9933673982
+UniRef50_I4CPJ8: C-type cytochrome|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9933673982
+UniRef50_A9M1A6: Ribosomal RNA small subunit methyltransferase J	3.9929030796
+UniRef50_A9M1A6: Ribosomal RNA small subunit methyltransferase J|g__Neisseria.s__Neisseria_meningitidis	3.9929030796
+UniRef50_P35886: DNA gyrase subunit B	3.9915353840
+UniRef50_P35886: DNA gyrase subunit B|g__Propionibacterium.s__Propionibacterium_acnes	3.9250695325
+UniRef50_P35886: DNA gyrase subunit B|unclassified	0.0664658514
+UniRef50_Q3D4U8	3.9906996684
+UniRef50_Q3D4U8|unclassified	3.9906996684
+UniRef50_W1MN04: Ribose ABC transporter ATPase	3.9879066540
+UniRef50_W1MN04: Ribose ABC transporter ATPase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9879066540
+UniRef50_A6LW08: Signal transduction histidine kinase, LytS	3.9877729318
+UniRef50_A6LW08: Signal transduction histidine kinase, LytS|g__Clostridium.s__Clostridium_beijerinckii	3.9877729318
+UniRef50_E0IXG6	3.9876327890
+UniRef50_E0IXG6|g__Escherichia.s__Escherichia_coli	3.9876327890
+UniRef50_A0A019CB47	3.9866188705
+UniRef50_A0A019CB47|unclassified	3.9866188705
+UniRef50_A6FPM7: PhoH-like protein (Fragment)	3.9865809048
+UniRef50_A6FPM7: PhoH-like protein (Fragment)|unclassified	3.9865809048
+UniRef50_Q17ZN4: NADPH-dependent 7-cyano-7-deazaguanine reductase	3.9862642051
+UniRef50_Q17ZN4: NADPH-dependent 7-cyano-7-deazaguanine reductase|g__Helicobacter.s__Helicobacter_pylori	3.5211267606
+UniRef50_Q17ZN4: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.4651374445
+UniRef50_Q9K0Y9: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--2,6-diaminopimelate ligase	3.9860043549
+UniRef50_Q9K0Y9: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--2,6-diaminopimelate ligase|g__Neisseria.s__Neisseria_meningitidis	3.9860043549
+UniRef50_C7NGM8: Signal recognition particle receptor FtsY	3.9852987133
+UniRef50_C7NGM8: Signal recognition particle receptor FtsY|g__Propionibacterium.s__Propionibacterium_acnes	3.9852987133
+UniRef50_E7S591: Transcriptional regulator, TetR family	3.9840637450
+UniRef50_E7S591: Transcriptional regulator, TetR family|g__Streptococcus.s__Streptococcus_agalactiae	3.9840637450
+UniRef50_G2JKN3	3.9840637450
+UniRef50_G2JKN3|g__Acinetobacter.s__Acinetobacter_baumannii	3.9840637450
+UniRef50_P69830: N,N'-diacetylchitobiose-specific phosphotransferase enzyme IIB component	3.9840637450
+UniRef50_P69830: N,N'-diacetylchitobiose-specific phosphotransferase enzyme IIB component|g__Escherichia.s__Escherichia_coli	3.9840637450
+UniRef50_Q9I2J9: Phenazine biosynthesis protein PhzA 2	3.9840637450
+UniRef50_Q9I2J9: Phenazine biosynthesis protein PhzA 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9840637450
+UniRef50_U1HR10	3.9840637450
+UniRef50_U1HR10|g__Escherichia.s__Escherichia_coli	3.9840637450
+UniRef50_UPI00036C15FE: hypothetical protein	3.9840637450
+UniRef50_UPI00036C15FE: hypothetical protein|g__Streptococcus.s__Streptococcus_mutans	3.9840637450
+UniRef50_Q13IW9: ATP synthase subunit alpha 3	3.9839481671
+UniRef50_Q13IW9: ATP synthase subunit alpha 3|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.9839481671
+UniRef50_X0UZB7: Marine sediment metagenome DNA, contig: S01H1_S12011 (Fragment)	3.9817843042
+UniRef50_X0UZB7: Marine sediment metagenome DNA, contig: S01H1_S12011 (Fragment)|unclassified	3.9817843042
+UniRef50_A6M0V4: Methyl-accepting chemotaxis sensory transducer	3.9815772298
+UniRef50_A6M0V4: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	3.9815772298
+UniRef50_B9KL71: Inositol-phosphate phosphatase	3.9801034431
+UniRef50_B9KL71: Inositol-phosphate phosphatase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.9801034431
+UniRef50_V7WI05	3.9798093740
+UniRef50_V7WI05|unclassified	3.9798093740
+UniRef50_G7M9E2: Methyl-accepting chemotaxis sensory transducer with Cache sensor	3.9791406279
+UniRef50_G7M9E2: Methyl-accepting chemotaxis sensory transducer with Cache sensor|g__Clostridium.s__Clostridium_beijerinckii	3.9791406279
+UniRef50_H4WKP6: Conjugal transfer pilus assembly protein TraU	3.9772738429
+UniRef50_H4WKP6: Conjugal transfer pilus assembly protein TraU|unclassified	3.9772738429
+UniRef50_B8H4F1: 30S ribosomal protein S5	3.9771616284
+UniRef50_B8H4F1: 30S ribosomal protein S5|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1978021978
+UniRef50_B8H4F1: 30S ribosomal protein S5|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.7793594306
+UniRef50_M9VBD0: 2-dehydropantoate 2-reductase	3.9766313351
+UniRef50_M9VBD0: 2-dehydropantoate 2-reductase|g__Propionibacterium.s__Propionibacterium_acnes	3.9766313351
+UniRef50_UPI0004786393: sugar ABC transporter permease	3.9762974392
+UniRef50_UPI0004786393: sugar ABC transporter permease|unclassified	3.9762974392
+UniRef50_U9Y5X5: Transporter, SSS family	3.9749233089
+UniRef50_U9Y5X5: Transporter, SSS family|g__Escherichia.s__Escherichia_coli	3.9749233089
+UniRef50_A1A1X1: Acetylglutamate kinase	3.9742976345
+UniRef50_A1A1X1: Acetylglutamate kinase|g__Propionibacterium.s__Propionibacterium_acnes	3.6039367576
+UniRef50_A1A1X1: Acetylglutamate kinase|unclassified	0.3703608769
+UniRef50_A6VC45	3.9728567483
+UniRef50_A6VC45|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9728567483
+UniRef50_D8JPX8	3.9722132147
+UniRef50_D8JPX8|unclassified	3.9722132147
+UniRef50_M1MML4: Transcriptional regulator, TetR family	3.9716808651
+UniRef50_M1MML4: Transcriptional regulator, TetR family|g__Clostridium.s__Clostridium_beijerinckii	3.9716808651
+UniRef50_P37497	3.9712417143
+UniRef50_P37497|g__Clostridium.s__Clostridium_beijerinckii	3.9712417143
+UniRef50_M4JI97	3.9707141908
+UniRef50_M4JI97|unclassified	3.9707141908
+UniRef50_W5FXB3	3.9704357333
+UniRef50_W5FXB3|unclassified	3.9704357333
+UniRef50_Q8X583	3.9699571706
+UniRef50_Q8X583|g__Escherichia.s__Escherichia_coli	3.9699571706
+UniRef50_Q5GWS2	3.9695798365
+UniRef50_Q5GWS2|unclassified	3.9695798365
+UniRef50_V4JFT6	3.9694271137
+UniRef50_V4JFT6|unclassified	3.9694271137
+UniRef50_W1MHK1	3.9692951222
+UniRef50_W1MHK1|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9692951222
+UniRef50_UPI00036A093B: hypothetical protein	3.9691144217
+UniRef50_UPI00036A093B: hypothetical protein|unclassified	3.9691144217
+UniRef50_UPI00034B41D8: Fe-S cluster assembly protein HesB	3.9690107072
+UniRef50_UPI00034B41D8: Fe-S cluster assembly protein HesB|unclassified	3.9690107072
+UniRef50_A5N2L5: Orotidine 5'-phosphate decarboxylase	3.9688164422
+UniRef50_A5N2L5: Orotidine 5'-phosphate decarboxylase|g__Clostridium.s__Clostridium_beijerinckii	3.9688164422
+UniRef50_A6V7D9	3.9687010981
+UniRef50_A6V7D9|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1521058750
+UniRef50_A6V7D9|unclassified	0.8165952231
+UniRef50_K3U4V4: MOSC domain protein	3.9685846607
+UniRef50_K3U4V4: MOSC domain protein|unclassified	3.9685846607
+UniRef50_A3PKK5	3.9682539683
+UniRef50_A3PKK5|unclassified	3.9682539683
+UniRef50_G7U5D1	3.9682539683
+UniRef50_G7U5D1|g__Propionibacterium.s__Propionibacterium_acnes	3.9682539683
+UniRef50_M2IBY1	3.9682539683
+UniRef50_M2IBY1|unclassified	3.9682539683
+UniRef50_N5TKM1	3.9682539683
+UniRef50_N5TKM1|g__Staphylococcus.s__Staphylococcus_aureus	3.9682539683
+UniRef50_N8ENJ0	3.9682539683
+UniRef50_N8ENJ0|unclassified	3.9682539683
+UniRef50_P0ADB2: Osmotically-inducible lipoprotein E	3.9682539683
+UniRef50_P0ADB2: Osmotically-inducible lipoprotein E|g__Escherichia.s__Escherichia_coli	3.9682539683
+UniRef50_A1U1Z4: Glyceraldehyde-3-phosphate dehydrogenase, type I	3.9672772120
+UniRef50_A1U1Z4: Glyceraldehyde-3-phosphate dehydrogenase, type I|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0139883655
+UniRef50_A1U1Z4: Glyceraldehyde-3-phosphate dehydrogenase, type I|g__Acinetobacter.s__Acinetobacter_baumannii	0.9532888465
+UniRef50_I0I941: Long-chain-fatty-acid--CoA ligase	3.9669988927
+UniRef50_I0I941: Long-chain-fatty-acid--CoA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9669988927
+UniRef50_W1BA41: Chromosome partition protein MukF	3.9669613368
+UniRef50_W1BA41: Chromosome partition protein MukF|g__Escherichia.s__Escherichia_coli	3.9669613368
+UniRef50_Q3J3L4: Alanine racemase	3.9659296855
+UniRef50_Q3J3L4: Alanine racemase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.9659296855
+UniRef50_P56909: NADH-quinone oxidoreductase subunit E 1	3.9659241161
+UniRef50_P56909: NADH-quinone oxidoreductase subunit E 1|unclassified	3.9659241161
+UniRef50_C5WIU5	3.9655652446
+UniRef50_C5WIU5|unclassified	3.9655652446
+UniRef50_UPI00047789D2: hypothetical protein, partial	3.9649228906
+UniRef50_UPI00047789D2: hypothetical protein, partial|unclassified	3.9649228906
+UniRef50_B6YRL9: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit	3.9648785704
+UniRef50_B6YRL9: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit|g__Clostridium.s__Clostridium_beijerinckii	3.9164290751
+UniRef50_B6YRL9: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit|unclassified	0.0484494953
+UniRef50_G8VDA6	3.9639085563
+UniRef50_G8VDA6|g__Propionibacterium.s__Propionibacterium_acnes	3.9639085563
+UniRef50_Q97GM6: Endonuclease MutS2	3.9638329768
+UniRef50_Q97GM6: Endonuclease MutS2|g__Clostridium.s__Clostridium_beijerinckii	3.9435612506
+UniRef50_Q97GM6: Endonuclease MutS2|unclassified	0.0202717262
+UniRef50_R6JVY2: 4-hydroxy-tetrahydrodipicolinate synthase	3.9637772917
+UniRef50_R6JVY2: 4-hydroxy-tetrahydrodipicolinate synthase|g__Clostridium.s__Clostridium_beijerinckii	3.9637772917
+UniRef50_I3V4Z1: Xylose isomerase domain-containing protein	3.9630164295
+UniRef50_I3V4Z1: Xylose isomerase domain-containing protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9630164295
+UniRef50_D8HE09	3.9629022421
+UniRef50_D8HE09|unclassified	3.9629022421
+UniRef50_UPI0002377E25: binding-protein-dependent transport systems inner membrane component, partial	3.9626579997
+UniRef50_UPI0002377E25: binding-protein-dependent transport systems inner membrane component, partial|unclassified	3.9626579997
+UniRef50_V1GSR8: Siderophore-interacting protein	3.9618914837
+UniRef50_V1GSR8: Siderophore-interacting protein|g__Escherichia.s__Escherichia_coli	3.9618914837
+UniRef50_P67734: Coenzyme A biosynthesis bifunctional protein CoaBC	3.9613807336
+UniRef50_P67734: Coenzyme A biosynthesis bifunctional protein CoaBC|g__Propionibacterium.s__Propionibacterium_acnes	3.9613807336
+UniRef50_Q9HZ00: Putative quercetin 2,3-dioxygenase PA3240	3.9609138559
+UniRef50_Q9HZ00: Putative quercetin 2,3-dioxygenase PA3240|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9609138559
+UniRef50_X2H662: Phosphoserine phosphatase	3.9604689657
+UniRef50_X2H662: Phosphoserine phosphatase|g__Neisseria.s__Neisseria_meningitidis	3.9604689657
+UniRef50_F0RMA7: Polyphosphate:nucleotide phosphotransferase, PPK2 family	3.9604366741
+UniRef50_F0RMA7: Polyphosphate:nucleotide phosphotransferase, PPK2 family|g__Deinococcus.s__Deinococcus_radiodurans	3.9604366741
+UniRef50_D4KAL9: Carbohydrate ABC transporter membrane protein 2, CUT1 family (TC 3.A.1.1.-)	3.9597722579
+UniRef50_D4KAL9: Carbohydrate ABC transporter membrane protein 2, CUT1 family (TC 3.A.1.1.-)|g__Streptococcus.s__Streptococcus_agalactiae	3.9597722579
+UniRef50_A6LYL7: Methyl-accepting chemotaxis sensory transducer	3.9582381753
+UniRef50_A6LYL7: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	3.9582381753
+UniRef50_R6VS65	3.9578846127
+UniRef50_R6VS65|unclassified	3.9578846127
+UniRef50_D0D7K2	3.9576159199
+UniRef50_D0D7K2|unclassified	3.9576159199
+UniRef50_H9UP14: Mannitol-1-phosphate 5-dehydrogenase	3.9575693190
+UniRef50_H9UP14: Mannitol-1-phosphate 5-dehydrogenase|unclassified	3.9575693190
+UniRef50_U5MVQ9: D-galactose-binding periplasmic protein MglB	3.9575252828
+UniRef50_U5MVQ9: D-galactose-binding periplasmic protein MglB|g__Clostridium.s__Clostridium_beijerinckii	3.9575252828
+UniRef50_P12425: Glutamine synthetase	3.9575008376
+UniRef50_P12425: Glutamine synthetase|g__Clostridium.s__Clostridium_beijerinckii	3.8055186638
+UniRef50_P12425: Glutamine synthetase|unclassified	0.1519821738
+UniRef50_S6AU40	3.9568793619
+UniRef50_S6AU40|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9568793619
+UniRef50_Q2IIK2	3.9568770812
+UniRef50_Q2IIK2|unclassified	3.9568770812
+UniRef50_Q9I0J6: NADH-quinone oxidoreductase subunit G	3.9568177775
+UniRef50_Q9I0J6: NADH-quinone oxidoreductase subunit G|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6837896658
+UniRef50_Q9I0J6: NADH-quinone oxidoreductase subunit G|unclassified	0.2730281117
+UniRef50_Q15TS6: UPF0145 protein Patl_2194	3.9546286523
+UniRef50_Q15TS6: UPF0145 protein Patl_2194|unclassified	3.9546286523
+UniRef50_Q9I073	3.9538199519
+UniRef50_Q9I073|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9538199519
+UniRef50_Q5HMH3: Conserved domain protein	3.9535331301
+UniRef50_Q5HMH3: Conserved domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	3.2362459547
+UniRef50_Q5HMH3: Conserved domain protein|unclassified	0.7172871754
+UniRef50_A0Q197: DNA topoisomerase IV subunit B	3.9535174658
+UniRef50_A0Q197: DNA topoisomerase IV subunit B|g__Clostridium.s__Clostridium_beijerinckii	3.9535174658
+UniRef50_C4K578: UPF0145 protein HDEF_1024	3.9532843039
+UniRef50_C4K578: UPF0145 protein HDEF_1024|unclassified	3.9532843039
+UniRef50_A4F899	3.9531007280
+UniRef50_A4F899|unclassified	3.9531007280
+UniRef50_B0VNU5	3.9525691700
+UniRef50_B0VNU5|g__Acinetobacter.s__Acinetobacter_baumannii	3.9525691700
+UniRef50_B9KS12: Sulfate transporter/antisigma-factor antagonist	3.9525691700
+UniRef50_B9KS12: Sulfate transporter/antisigma-factor antagonist|unclassified	3.9525691700
+UniRef50_E3A2I9	3.9525691700
+UniRef50_E3A2I9|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9525691700
+UniRef50_Q6D6A3: UPF0312 protein ECA1782	3.9525691700
+UniRef50_Q6D6A3: UPF0312 protein ECA1782|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9525691700
+UniRef50_R0PPD5	3.9525691700
+UniRef50_R0PPD5|g__Neisseria.s__Neisseria_meningitidis	3.9525691700
+UniRef50_Q1JAC5: Copper-exporting ATPase	3.9502257640
+UniRef50_Q1JAC5: Copper-exporting ATPase|g__Streptococcus.s__Streptococcus_agalactiae	3.9502257640
+UniRef50_X4FKM9	3.9480760041
+UniRef50_X4FKM9|unclassified	3.9480760041
+UniRef50_A0A059IQL0	3.9458533451
+UniRef50_A0A059IQL0|unclassified	3.9458533451
+UniRef50_B2UFB1: Cyclohexanone monooxygenase	3.9450956825
+UniRef50_B2UFB1: Cyclohexanone monooxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9450956825
+UniRef50_M9VF54: 5-formyltetrahydrofolate cyclo-ligase	3.9447731755
+UniRef50_M9VF54: 5-formyltetrahydrofolate cyclo-ligase|g__Propionibacterium.s__Propionibacterium_acnes	3.9447731755
+UniRef50_X0ZTS5: Marine sediment metagenome DNA, contig: S01H4_C02551	3.9446851072
+UniRef50_X0ZTS5: Marine sediment metagenome DNA, contig: S01H4_C02551|unclassified	3.9446851072
+UniRef50_W8UPZ5: Oxygenase subunit of ring-hydroxylating dioxygenase	3.9440222082
+UniRef50_W8UPZ5: Oxygenase subunit of ring-hydroxylating dioxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2491069539
+UniRef50_W8UPZ5: Oxygenase subunit of ring-hydroxylating dioxygenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6949152542
+UniRef50_F7QFG7: Glycolate dehydrogenase	3.9438205321
+UniRef50_F7QFG7: Glycolate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.9438205321
+UniRef50_G7VQ62: Dehydrogenase	3.9417250245
+UniRef50_G7VQ62: Dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	3.9417250245
+UniRef50_U7DEQ6: 2-ketogluconate reductase	3.9416412195
+UniRef50_U7DEQ6: 2-ketogluconate reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9416412195
+UniRef50_U7DL84: TetR family transcriptional regulator	3.9413082891
+UniRef50_U7DL84: TetR family transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.9413082891
+UniRef50_G8VNQ8: L-lactate dehydrogenase	3.9406556871
+UniRef50_G8VNQ8: L-lactate dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	3.9406556871
+UniRef50_F5QBA7: Transposase	3.9397488235
+UniRef50_F5QBA7: Transposase|unclassified	3.9397488235
+UniRef50_D4FA45	3.9393153088
+UniRef50_D4FA45|unclassified	3.9393153088
+UniRef50_W5P358	3.9387972261
+UniRef50_W5P358|g__Clostridium.s__Clostridium_beijerinckii	3.9387972261
+UniRef50_Q7VIT0: 1-deoxy-D-xylulose 5-phosphate reductoisomerase	3.9379693555
+UniRef50_Q7VIT0: 1-deoxy-D-xylulose 5-phosphate reductoisomerase|g__Helicobacter.s__Helicobacter_pylori	3.9379693555
+UniRef50_I0EPZ1: L-lactate permease	3.9372688823
+UniRef50_I0EPZ1: L-lactate permease|g__Helicobacter.s__Helicobacter_pylori	3.9372688823
+UniRef50_A5UN43	3.9370078740
+UniRef50_A5UN43|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.9370078740
+UniRef50_A6LZI6	3.9370078740
+UniRef50_A6LZI6|g__Clostridium.s__Clostridium_beijerinckii	3.9370078740
+UniRef50_J1RBL1: Fic protein family domain protein	3.9370078740
+UniRef50_J1RBL1: Fic protein family domain protein|g__Streptococcus.s__Streptococcus_mutans	3.9370078740
+UniRef50_K0WVK1	3.9370078740
+UniRef50_K0WVK1|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9370078740
+UniRef50_P75971	3.9370078740
+UniRef50_P75971|g__Escherichia.s__Escherichia_coli	3.9370078740
+UniRef50_R6N102: Phosphoesterase	3.9370078740
+UniRef50_R6N102: Phosphoesterase|g__Clostridium.s__Clostridium_beijerinckii	3.9370078740
+UniRef50_W9EYD6: ATP-binding protein	3.9370078740
+UniRef50_W9EYD6: ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	3.9370078740
+UniRef50_D5P6E3	3.9357568737
+UniRef50_D5P6E3|unclassified	3.9357568737
+UniRef50_V6UQJ7: Membrane protein (Fragment)	3.9354521008
+UniRef50_V6UQJ7: Membrane protein (Fragment)|unclassified	3.9354521008
+UniRef50_H8GUK3: Peptidase M20D, amidohydrolase	3.9341462726
+UniRef50_H8GUK3: Peptidase M20D, amidohydrolase|g__Deinococcus.s__Deinococcus_radiodurans	3.9341462726
+UniRef50_Q21Y74: Penicillin amidase	3.9333686131
+UniRef50_Q21Y74: Penicillin amidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9333686131
+UniRef50_H8H091: Protein-tyrosine kinase	3.9329149808
+UniRef50_H8H091: Protein-tyrosine kinase|g__Deinococcus.s__Deinococcus_radiodurans	3.9329149808
+UniRef50_A6M0U5	3.9309231315
+UniRef50_A6M0U5|g__Clostridium.s__Clostridium_beijerinckii	3.9309231315
+UniRef50_UPI00016A2EB9: ABC transporter related protein, partial	3.9288969782
+UniRef50_UPI00016A2EB9: ABC transporter related protein, partial|unclassified	3.9288969782
+UniRef50_G0DV78: Periplasmic binding protein of proline/glycine betaine transport system	3.9286952610
+UniRef50_G0DV78: Periplasmic binding protein of proline/glycine betaine transport system|g__Propionibacterium.s__Propionibacterium_acnes	3.9286952610
+UniRef50_Q0E2B8: Os02g0253800 protein (Fragment)	3.9271348457
+UniRef50_Q0E2B8: Os02g0253800 protein (Fragment)|unclassified	3.9271348457
+UniRef50_H3UJ98: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA domain protein	3.9270209958
+UniRef50_H3UJ98: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA domain protein|unclassified	3.9270209958
+UniRef50_A6V0Z0: Membrane protein, putative	3.9268617500
+UniRef50_A6V0Z0: Membrane protein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9268617500
+UniRef50_S1CH85	3.9268535753
+UniRef50_S1CH85|unclassified	3.9268535753
+UniRef50_J9YPZ0	3.9246769708
+UniRef50_J9YPZ0|g__Streptococcus.s__Streptococcus_agalactiae	3.9246769708
+UniRef50_A6LYX8: ABC transporter related	3.9242777159
+UniRef50_A6LYX8: ABC transporter related|g__Clostridium.s__Clostridium_beijerinckii	3.9242777159
+UniRef50_A4XX36: Integral membrane sensor signal transduction histidine kinase	3.9241701860
+UniRef50_A4XX36: Integral membrane sensor signal transduction histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9241701860
+UniRef50_A3VEJ1	3.9241508520
+UniRef50_A3VEJ1|unclassified	3.9241508520
+UniRef50_A1SG46: Alpha amylase, catalytic region	3.9237493246
+UniRef50_A1SG46: Alpha amylase, catalytic region|g__Propionibacterium.s__Propionibacterium_acnes	3.9237493246
+UniRef50_R6FTR0: Sporulation integral membrane protein YlbJ	3.9217460115
+UniRef50_R6FTR0: Sporulation integral membrane protein YlbJ|g__Clostridium.s__Clostridium_beijerinckii	3.9217460115
+UniRef50_A0A025BQD1: Peptide ABC transporter permease	3.9215686275
+UniRef50_A0A025BQD1: Peptide ABC transporter permease|g__Escherichia.s__Escherichia_coli	3.9215686275
+UniRef50_A1B6K3	3.9215686275
+UniRef50_A1B6K3|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.9215686275
+UniRef50_E1J8V4	3.9215686275
+UniRef50_E1J8V4|unclassified	3.9215686275
+UniRef50_H4YIS4: Ethanolamine utilization EutK domain protein	3.9215686275
+UniRef50_H4YIS4: Ethanolamine utilization EutK domain protein|g__Escherichia.s__Escherichia_coli	3.9215686275
+UniRef50_R7PS35	3.9215686275
+UniRef50_R7PS35|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.9215686275
+UniRef50_V6PLY7: Putative lipoprotein (Fragment)	3.9215686275
+UniRef50_V6PLY7: Putative lipoprotein (Fragment)|g__Escherichia.s__Escherichia_coli	3.9215686275
+UniRef50_Q9I445: UPF0260 protein PA1299	3.9212562401
+UniRef50_Q9I445: UPF0260 protein PA1299|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4129692833
+UniRef50_Q9I445: UPF0260 protein PA1299|unclassified	0.5082869568
+UniRef50_I6SWE3: Acetyltransferase	3.9211049277
+UniRef50_I6SWE3: Acetyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9211049277
+UniRef50_D8JGA5	3.9208122354
+UniRef50_D8JGA5|g__Acinetobacter.s__Acinetobacter_baumannii	3.9208122354
+UniRef50_UPI00037C182A: hypothetical protein	3.9205564962
+UniRef50_UPI00037C182A: hypothetical protein|unclassified	3.9205564962
+UniRef50_E2XU95: Transcription factor jumonji	3.9202262667
+UniRef50_E2XU95: Transcription factor jumonji|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8414895411
+UniRef50_E2XU95: Transcription factor jumonji|unclassified	0.0787367255
+UniRef50_B9KQJ5	3.9198992320
+UniRef50_B9KQJ5|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.6555241224
+UniRef50_B9KQJ5|unclassified	1.2643751096
+UniRef50_J1CAV3	3.9195770696
+UniRef50_J1CAV3|unclassified	3.9195770696
+UniRef50_M9VES2	3.9191436957
+UniRef50_M9VES2|unclassified	2.0143817909
+UniRef50_M9VES2|g__Propionibacterium.s__Propionibacterium_acnes	1.9047619048
+UniRef50_B2TQI3: Undecaprenyl-phosphate glucose phosphotransferase	3.9188151018
+UniRef50_B2TQI3: Undecaprenyl-phosphate glucose phosphotransferase|g__Clostridium.s__Clostridium_beijerinckii	3.9188151018
+UniRef50_B5GPE9	3.9185990704
+UniRef50_B5GPE9|unclassified	3.9185990704
+UniRef50_B0VLK5: Lipoprotein	3.9177600003
+UniRef50_B0VLK5: Lipoprotein|g__Acinetobacter.s__Acinetobacter_baumannii	3.9177600003
+UniRef50_A6LWX4: Efflux transporter, RND family, MFP subunit	3.9171548494
+UniRef50_A6LWX4: Efflux transporter, RND family, MFP subunit|g__Clostridium.s__Clostridium_beijerinckii	3.9171548494
+UniRef50_J2EU28: Sulfate permease	3.9166783060
+UniRef50_J2EU28: Sulfate permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9166783060
+UniRef50_Q837G9: Probable potassium transport system protein kup	3.9165318648
+UniRef50_Q837G9: Probable potassium transport system protein kup|g__Clostridium.s__Clostridium_beijerinckii	3.9165318648
+UniRef50_P52215: Thioredoxin reductase	3.9149998505
+UniRef50_P52215: Thioredoxin reductase|g__Propionibacterium.s__Propionibacterium_acnes	3.1746473951
+UniRef50_P52215: Thioredoxin reductase|unclassified	0.7403524554
+UniRef50_Z1JID9	3.9148784447
+UniRef50_Z1JID9|unclassified	3.9148784447
+UniRef50_G4LRU0	3.9146676770
+UniRef50_G4LRU0|unclassified	3.9146676770
+UniRef50_A9W856: Integrase, catalytic region	3.9134998785
+UniRef50_A9W856: Integrase, catalytic region|unclassified	3.9134998785
+UniRef50_K2F5Y4	3.9132090980
+UniRef50_K2F5Y4|unclassified	3.9132090980
+UniRef50_Q5HPU8	3.9125641514
+UniRef50_Q5HPU8|unclassified	3.9125641514
+UniRef50_U5RUZ1: DNA polymerase III, subunits gamma and tau	3.9123215780
+UniRef50_U5RUZ1: DNA polymerase III, subunits gamma and tau|g__Clostridium.s__Clostridium_beijerinckii	3.9123215780
+UniRef50_R6GIU2: Anaerobic sulfite reductase subunit C	3.9116732030
+UniRef50_R6GIU2: Anaerobic sulfite reductase subunit C|g__Clostridium.s__Clostridium_beijerinckii	3.9116732030
+UniRef50_UPI000169A652: dihydroxy-acid dehydratase, partial	3.9112192953
+UniRef50_UPI000169A652: dihydroxy-acid dehydratase, partial|unclassified	3.9112192953
+UniRef50_B1J356: Bifunctional protein PyrR	3.9101020525
+UniRef50_B1J356: Bifunctional protein PyrR|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9101020525
+UniRef50_U5MRV9: Serine/threonine-protein kinase	3.9099343982
+UniRef50_U5MRV9: Serine/threonine-protein kinase|g__Clostridium.s__Clostridium_beijerinckii	3.9099343982
+UniRef50_J3M965	3.9097985613
+UniRef50_J3M965|unclassified	3.9097985613
+UniRef50_Q9HZM9: Ribosomal large subunit pseudouridine synthase C	3.9088565362
+UniRef50_Q9HZM9: Ribosomal large subunit pseudouridine synthase C|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9088565362
+UniRef50_W0YVT6: Rhamnosyltransferase chain B	3.9082586158
+UniRef50_W0YVT6: Rhamnosyltransferase chain B|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9082586158
+UniRef50_N2D199: KpLE2 phage-like element domain protein	3.9081813024
+UniRef50_N2D199: KpLE2 phage-like element domain protein|unclassified	3.9081813024
+UniRef50_Q0TMI0: tRNA(Ile)-lysidine synthase	3.9077916140
+UniRef50_Q0TMI0: tRNA(Ile)-lysidine synthase|g__Clostridium.s__Clostridium_beijerinckii	3.9077916140
+UniRef50_D7BLK7: Sugar transporter	3.9068355904
+UniRef50_D7BLK7: Sugar transporter|g__Propionibacterium.s__Propionibacterium_acnes	3.9068355904
+UniRef50_C4ZJC7: NADH-ubiquinone oxidoreductase chain 4L	3.9062500000
+UniRef50_C4ZJC7: NADH-ubiquinone oxidoreductase chain 4L|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.9062500000
+UniRef50_L9AC10: Cysteine desulfuration protein sufE (Fragment)	3.9062500000
+UniRef50_L9AC10: Cysteine desulfuration protein sufE (Fragment)|g__Escherichia.s__Escherichia_coli	3.9062500000
+UniRef50_M9GPF4: Putative inner membrane protein yafU	3.9062500000
+UniRef50_M9GPF4: Putative inner membrane protein yafU|g__Escherichia.s__Escherichia_coli	3.9062500000
+UniRef50_P64618	3.9062500000
+UniRef50_P64618|g__Escherichia.s__Escherichia_coli	3.9062500000
+UniRef50_Q4MM88	3.9062500000
+UniRef50_Q4MM88|unclassified	3.9062500000
+UniRef50_U3T764	3.9062500000
+UniRef50_U3T764|g__Acinetobacter.s__Acinetobacter_baumannii	3.9062500000
+UniRef50_Q2NUA4: Tetraacyldisaccharide 4'-kinase	3.9057301811
+UniRef50_Q2NUA4: Tetraacyldisaccharide 4'-kinase|g__Escherichia.s__Escherichia_coli	3.9057301811
+UniRef50_A5WHV0: Isochorismatase hydrolase	3.9039205882
+UniRef50_A5WHV0: Isochorismatase hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9039205882
+UniRef50_T1ZIN6	3.9038839398
+UniRef50_T1ZIN6|g__Staphylococcus.s__Staphylococcus_aureus	2.2935779817
+UniRef50_T1ZIN6|g__Streptococcus.s__Streptococcus_agalactiae	1.6103059581
+UniRef50_P33343	3.9034762963
+UniRef50_P33343|g__Escherichia.s__Escherichia_coli	3.9034762963
+UniRef50_F2N691: Methyltransferase PilK	3.9033919911
+UniRef50_F2N691: Methyltransferase PilK|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9033919911
+UniRef50_S5EE74: Autoinducer kinase	3.9019318941
+UniRef50_S5EE74: Autoinducer kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.9019318941
+UniRef50_Q4K4P3: Permease, cytosine/purine, uracil, thiamine, allantoin family	3.9012148287
+UniRef50_Q4K4P3: Permease, cytosine/purine, uracil, thiamine, allantoin family|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.9012148287
+UniRef50_G5QKB5	3.9003724377
+UniRef50_G5QKB5|unclassified	3.9003724377
+UniRef50_Q6HIL6: Aminoacyl-histidine dipeptidase	3.9002998599
+UniRef50_Q6HIL6: Aminoacyl-histidine dipeptidase|g__Clostridium.s__Clostridium_beijerinckii	3.9002998599
+UniRef50_L7WTQ2: Serine threonine rich antigen	3.8992784865
+UniRef50_L7WTQ2: Serine threonine rich antigen|g__Staphylococcus.s__Staphylococcus_epidermidis	3.8992784865
+UniRef50_A0A024HA76	3.8986354776
+UniRef50_A0A024HA76|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8986354776
+UniRef50_K7RRX2: Lipoprotein signal peptidase	3.8986354776
+UniRef50_K7RRX2: Lipoprotein signal peptidase|g__Propionibacterium.s__Propionibacterium_acnes	3.8986354776
+UniRef50_Q4KCW6: Putrescine-binding periplasmic protein	3.8970016219
+UniRef50_Q4KCW6: Putrescine-binding periplasmic protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8970016219
+UniRef50_W1BKU7: Core protein	3.8962946642
+UniRef50_W1BKU7: Core protein|g__Escherichia.s__Escherichia_coli	3.8962946642
+UniRef50_C4LJM5: Peptide chain release factor 1	3.8959108944
+UniRef50_C4LJM5: Peptide chain release factor 1|g__Propionibacterium.s__Propionibacterium_acnes	3.8959108944
+UniRef50_D5AP52	3.8944925030
+UniRef50_D5AP52|unclassified	3.8944925030
+UniRef50_G8VH89: ABC transporter, permease protein	3.8942213810
+UniRef50_G8VH89: ABC transporter, permease protein|g__Propionibacterium.s__Propionibacterium_acnes	3.8942213810
+UniRef50_Q6FEG4: Acyl-CoA dehydrogenase	3.8934945440
+UniRef50_Q6FEG4: Acyl-CoA dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8934945440
+UniRef50_A4WTR4: Phosphate-starvation-inducible E	3.8917061798
+UniRef50_A4WTR4: Phosphate-starvation-inducible E|unclassified	3.8917061798
+UniRef50_T2EI07	3.8913344057
+UniRef50_T2EI07|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6041666667
+UniRef50_T2EI07|unclassified	1.2871677391
+UniRef50_Q6AAD6: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	3.8910731440
+UniRef50_Q6AAD6: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|g__Propionibacterium.s__Propionibacterium_acnes	3.8910731440
+UniRef50_A1SSP3: Enoyl-CoA hydratase/isomerase	3.8910505837
+UniRef50_A1SSP3: Enoyl-CoA hydratase/isomerase|g__Acinetobacter.s__Acinetobacter_baumannii	3.8910505837
+UniRef50_A8LMQ8: Flagellar biosynthetic protein FliQ	3.8910505837
+UniRef50_A8LMQ8: Flagellar biosynthetic protein FliQ|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.8910505837
+UniRef50_H5F4L1: Aminotransferase class-III family protein	3.8910505837
+UniRef50_H5F4L1: Aminotransferase class-III family protein|g__Escherichia.s__Escherichia_coli	3.8910505837
+UniRef50_M2DJD9	3.8910505837
+UniRef50_M2DJD9|g__Streptococcus.s__Streptococcus_mutans	3.8910505837
+UniRef50_Q7N4I9: Complete genome; segment 8/17	3.8910505837
+UniRef50_Q7N4I9: Complete genome; segment 8/17|g__Acinetobacter.s__Acinetobacter_baumannii	3.8910505837
+UniRef50_Q9RUR7	3.8910505837
+UniRef50_Q9RUR7|g__Deinococcus.s__Deinococcus_radiodurans	3.8910505837
+UniRef50_U7IYF3	3.8910505837
+UniRef50_U7IYF3|unclassified	3.8910505837
+UniRef50_K0NK11: MaoC domain protein dehydratase	3.8909802848
+UniRef50_K0NK11: MaoC domain protein dehydratase|g__Clostridium.s__Clostridium_beijerinckii	3.6900369004
+UniRef50_K0NK11: MaoC domain protein dehydratase|unclassified	0.2009433844
+UniRef50_Q4K617	3.8905450622
+UniRef50_Q4K617|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8905450622
+UniRef50_UPI0003783EFF: hypothetical protein	3.8896448478
+UniRef50_UPI0003783EFF: hypothetical protein|unclassified	3.8896448478
+UniRef50_B7V938	3.8891789097
+UniRef50_B7V938|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8891789097
+UniRef50_D0K261: Cbb3-type cytochrome c oxidase subunit CcoP	3.8871406585
+UniRef50_D0K261: Cbb3-type cytochrome c oxidase subunit CcoP|g__Helicobacter.s__Helicobacter_pylori	3.8871406585
+UniRef50_G0AF95	3.8870481080
+UniRef50_G0AF95|unclassified	3.8870481080
+UniRef50_A3L1C1	3.8864897018
+UniRef50_A3L1C1|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8864897018
+UniRef50_A6M2I8	3.8855742777
+UniRef50_A6M2I8|g__Clostridium.s__Clostridium_beijerinckii	3.8855742777
+UniRef50_Q9RYT6: TDP-glucose-4,6-dehydratase-related protein	3.8854601565
+UniRef50_Q9RYT6: TDP-glucose-4,6-dehydratase-related protein|g__Deinococcus.s__Deinococcus_radiodurans	3.8854601565
+UniRef50_UPI00047A559B: hypothetical protein	3.8851235914
+UniRef50_UPI00047A559B: hypothetical protein|unclassified	3.8851235914
+UniRef50_Q8XJ36: Two-component response regulator	3.8846301832
+UniRef50_Q8XJ36: Two-component response regulator|g__Clostridium.s__Clostridium_beijerinckii	3.8846301832
+UniRef50_A0NUH2	3.8845832949
+UniRef50_A0NUH2|unclassified	3.8845832949
+UniRef50_E2ZS55	3.8843427990
+UniRef50_E2ZS55|unclassified	3.8843427990
+UniRef50_Q2YI45: Streptokinase-like protein	3.8838759622
+UniRef50_Q2YI45: Streptokinase-like protein|g__Streptococcus.s__Streptococcus_agalactiae	3.8838759622
+UniRef50_P49988: RNA polymerase sigma-54 factor	3.8836679693
+UniRef50_P49988: RNA polymerase sigma-54 factor|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8836679693
+UniRef50_E0T021	3.8833140804
+UniRef50_E0T021|g__Streptococcus.s__Streptococcus_agalactiae	3.8833140804
+UniRef50_E3A0E2	3.8822509957
+UniRef50_E3A0E2|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3121387283
+UniRef50_E3A0E2|unclassified	1.5701122673
+UniRef50_O34788: (R,R)-butanediol dehydrogenase	3.8806082894
+UniRef50_O34788: (R,R)-butanediol dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	3.8806082894
+UniRef50_I4KR35: von Willebrand factor type A domain protein	3.8797429483
+UniRef50_I4KR35: von Willebrand factor type A domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8797429483
+UniRef50_C1DHR0: Fimbrial assembly protein	3.8793716756
+UniRef50_C1DHR0: Fimbrial assembly protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5422377430
+UniRef50_C1DHR0: Fimbrial assembly protein|unclassified	0.3371339326
+UniRef50_J9YQC3	3.8791377114
+UniRef50_J9YQC3|g__Streptococcus.s__Streptococcus_agalactiae	3.8791377114
+UniRef50_Q2YTW8	3.8782288516
+UniRef50_Q2YTW8|unclassified	3.8782288516
+UniRef50_Q6A6Z5: Malate dehydrogenase	3.8782247410
+UniRef50_Q6A6Z5: Malate dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	3.8782247410
+UniRef50_A8LJU4	3.8776904377
+UniRef50_A8LJU4|unclassified	3.8776904377
+UniRef50_Q5M532: Prolipoprotein diacylglyceryl transferase	3.8776403890
+UniRef50_Q5M532: Prolipoprotein diacylglyceryl transferase|g__Streptococcus.s__Streptococcus_agalactiae	3.8776403890
+UniRef50_G2JIZ7: Methionine import ATP-binding protein MetN	3.8764104096
+UniRef50_G2JIZ7: Methionine import ATP-binding protein MetN|g__Acinetobacter.s__Acinetobacter_baumannii	3.8764104096
+UniRef50_A5UJ68	3.8759689922
+UniRef50_A5UJ68|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.8759689922
+UniRef50_A6LXZ3: TfoX, C-terminal domain protein	3.8759689922
+UniRef50_A6LXZ3: TfoX, C-terminal domain protein|g__Clostridium.s__Clostridium_beijerinckii	3.8759689922
+UniRef50_A6V8H1	3.8759689922
+UniRef50_A6V8H1|unclassified	3.8759689922
+UniRef50_C6SEB8	3.8759689922
+UniRef50_C6SEB8|unclassified	3.8759689922
+UniRef50_D3E1A3	3.8759689922
+UniRef50_D3E1A3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.8759689922
+UniRef50_L1K7U5	3.8759689922
+UniRef50_L1K7U5|unclassified	3.8759689922
+UniRef50_Q4L448: Putative antiporter subunit mnhF2	3.8759689922
+UniRef50_Q4L448: Putative antiporter subunit mnhF2|g__Staphylococcus.s__Staphylococcus_epidermidis	3.8759689922
+UniRef50_Q97MR5: Nucleoid-associated protein CA_C0126	3.8759689922
+UniRef50_Q97MR5: Nucleoid-associated protein CA_C0126|g__Clostridium.s__Clostridium_beijerinckii	3.8759689922
+UniRef50_Q9RU56: Osmotically inducible protein C	3.8759689922
+UniRef50_Q9RU56: Osmotically inducible protein C|g__Deinococcus.s__Deinococcus_radiodurans	3.8759689922
+UniRef50_R4ZXB5: Cation-transporting ATPase, E1-E2 family	3.8758989594
+UniRef50_R4ZXB5: Cation-transporting ATPase, E1-E2 family|g__Streptococcus.s__Streptococcus_agalactiae	3.8758989594
+UniRef50_F7ZQR5: S-adenosylmethionine-dependent methyltransferase	3.8756820386
+UniRef50_F7ZQR5: S-adenosylmethionine-dependent methyltransferase|g__Clostridium.s__Clostridium_beijerinckii	3.8756820386
+UniRef50_F7XC63	3.8753121843
+UniRef50_F7XC63|unclassified	3.8753121843
+UniRef50_X8AA54	3.8748190682
+UniRef50_X8AA54|unclassified	3.8748190682
+UniRef50_UPI000376E944: hypothetical protein	3.8745733076
+UniRef50_UPI000376E944: hypothetical protein|unclassified	3.8745733076
+UniRef50_UPI0003598686: PREDICTED: loricrin-like	3.8743586731
+UniRef50_UPI0003598686: PREDICTED: loricrin-like|unclassified	3.8743586731
+UniRef50_S6AYL1	3.8739866857
+UniRef50_S6AYL1|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8739866857
+UniRef50_I0JA55	3.8733072230
+UniRef50_I0JA55|g__Staphylococcus.s__Staphylococcus_aureus	2.7027027027
+UniRef50_I0JA55|unclassified	1.1706045203
+UniRef50_S3MQQ9: BASS family bile acid:Na+ symporter	3.8732155781
+UniRef50_S3MQQ9: BASS family bile acid:Na+ symporter|g__Acinetobacter.s__Acinetobacter_baumannii	3.8732155781
+UniRef50_D9SWT0: Glycoside hydrolase family 25	3.8731155733
+UniRef50_D9SWT0: Glycoside hydrolase family 25|g__Clostridium.s__Clostridium_beijerinckii	3.8731155733
+UniRef50_Y5NAA1	3.8730553957
+UniRef50_Y5NAA1|unclassified	3.8730553957
+UniRef50_Q2RLX7: SSU ribosomal protein S30P	3.8717311206
+UniRef50_Q2RLX7: SSU ribosomal protein S30P|g__Clostridium.s__Clostridium_beijerinckii	3.8717311206
+UniRef50_UPI0003B4AD44: cytochrome C550	3.8714631723
+UniRef50_UPI0003B4AD44: cytochrome C550|unclassified	3.8714631723
+UniRef50_B2UW91: Dihydroorotase	3.8707960537
+UniRef50_B2UW91: Dihydroorotase|g__Clostridium.s__Clostridium_beijerinckii	3.8707960537
+UniRef50_A0A023S0C8: Long-chain fatty acid transporter	3.8694338158
+UniRef50_A0A023S0C8: Long-chain fatty acid transporter|g__Acinetobacter.s__Acinetobacter_baumannii	3.8694338158
+UniRef50_A6LQ11: Erythronolide synthase., Aspartate racemase	3.8687141824
+UniRef50_A6LQ11: Erythronolide synthase., Aspartate racemase|g__Clostridium.s__Clostridium_beijerinckii	3.8687141824
+UniRef50_K1ZGG7	3.8686994940
+UniRef50_K1ZGG7|unclassified	3.8686994940
+UniRef50_Q51417: Putative transporter protein AmiS	3.8684719536
+UniRef50_Q51417: Putative transporter protein AmiS|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8684719536
+UniRef50_Q8E4H6: Ribosome maturation factor RimM	3.8684719536
+UniRef50_Q8E4H6: Ribosome maturation factor RimM|g__Streptococcus.s__Streptococcus_agalactiae	3.8684719536
+UniRef50_W4JYR7	3.8684609069
+UniRef50_W4JYR7|unclassified	3.8684609069
+UniRef50_E3NTU6	3.8683102515
+UniRef50_E3NTU6|unclassified	3.8683102515
+UniRef50_D2NAV1: Replication protein Rep	3.8681182314
+UniRef50_D2NAV1: Replication protein Rep|g__Staphylococcus.s__Staphylococcus_aureus	3.8681182314
+UniRef50_Q1IW96: Probable transcriptional regulatory protein Dgeo_2194	3.8678102539
+UniRef50_Q1IW96: Probable transcriptional regulatory protein Dgeo_2194|g__Deinococcus.s__Deinococcus_radiodurans	3.8678102539
+UniRef50_Q9AFH2: CpsK	3.8655787314
+UniRef50_Q9AFH2: CpsK|g__Streptococcus.s__Streptococcus_agalactiae	3.8655787314
+UniRef50_C8AT62	3.8648130273
+UniRef50_C8AT62|unclassified	3.8648130273
+UniRef50_Q9I504: Acylphosphatase	3.8645145746
+UniRef50_Q9I504: Acylphosphatase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6630036630
+UniRef50_Q9I504: Acylphosphatase|unclassified	0.2015109116
+UniRef50_Q1R605	3.8633688442
+UniRef50_Q1R605|unclassified	3.8633688442
+UniRef50_UPI00026276D2: inner-membrane translocator	3.8614990410
+UniRef50_UPI00026276D2: inner-membrane translocator|unclassified	3.8614990410
+UniRef50_B2UY66: Hydroxyethylthiazole kinase	3.8614478389
+UniRef50_B2UY66: Hydroxyethylthiazole kinase|g__Clostridium.s__Clostridium_beijerinckii	3.8614478389
+UniRef50_R9ZDS5: LysR family transcriptional regulator	3.8612054507
+UniRef50_R9ZDS5: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8612054507
+UniRef50_B2V461: Molecular chaperone, DnaJ family	3.8610038610
+UniRef50_B2V461: Molecular chaperone, DnaJ family|g__Clostridium.s__Clostridium_beijerinckii	3.8610038610
+UniRef50_D9RE82	3.8610038610
+UniRef50_D9RE82|g__Staphylococcus.s__Staphylococcus_aureus	3.8610038610
+UniRef50_E2ZQE3	3.8610038610
+UniRef50_E2ZQE3|unclassified	3.8610038610
+UniRef50_P65761: Ribulose-phosphate 3-epimerase	3.8610038610
+UniRef50_P65761: Ribulose-phosphate 3-epimerase|g__Propionibacterium.s__Propionibacterium_acnes	3.8610038610
+UniRef50_Q6FCZ3: Pseudouridine synthase	3.8610038610
+UniRef50_Q6FCZ3: Pseudouridine synthase|g__Acinetobacter.s__Acinetobacter_baumannii	3.8610038610
+UniRef50_Q9JYT7	3.8610038610
+UniRef50_Q9JYT7|g__Neisseria.s__Neisseria_meningitidis	3.8610038610
+UniRef50_A0A031J0C2	3.8606865075
+UniRef50_A0A031J0C2|unclassified	3.8606865075
+UniRef50_K7EAU2	3.8602741967
+UniRef50_K7EAU2|unclassified	3.8602741967
+UniRef50_UPI000374827E: hypothetical protein	3.8600498062
+UniRef50_UPI000374827E: hypothetical protein|unclassified	3.8600498062
+UniRef50_A6LQ30: Dipeptidyl aminopeptidase/acylaminoacyl-peptidase related protein	3.8597517120
+UniRef50_A6LQ30: Dipeptidyl aminopeptidase/acylaminoacyl-peptidase related protein|g__Clostridium.s__Clostridium_beijerinckii	3.8597517120
+UniRef50_A8LRK2	3.8592278179
+UniRef50_A8LRK2|unclassified	3.8592278179
+UniRef50_D6AYQ3	3.8591058331
+UniRef50_D6AYQ3|unclassified	3.8591058331
+UniRef50_P43703: DNA topoisomerase 4 subunit B	3.8589943975
+UniRef50_P43703: DNA topoisomerase 4 subunit B|g__Escherichia.s__Escherichia_coli	3.8589943975
+UniRef50_A0A024E7D7: Peptidase M42	3.8576058526
+UniRef50_A0A024E7D7: Peptidase M42|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8576058526
+UniRef50_R4YDZ3: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	3.8568348611
+UniRef50_R4YDZ3: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|g__Escherichia.s__Escherichia_coli	3.8568348611
+UniRef50_Q0SQN8: Mannose-1-phosphate guanylyltransferase	3.8564759227
+UniRef50_Q0SQN8: Mannose-1-phosphate guanylyltransferase|g__Clostridium.s__Clostridium_beijerinckii	3.8564759227
+UniRef50_J9YPU5	3.8559289696
+UniRef50_J9YPU5|g__Streptococcus.s__Streptococcus_agalactiae	3.8559289696
+UniRef50_UPI00036B1D26: hypothetical protein	3.8548126174
+UniRef50_UPI00036B1D26: hypothetical protein|unclassified	3.8548126174
+UniRef50_UPI00047CCE00: hypothetical protein	3.8545565518
+UniRef50_UPI00047CCE00: hypothetical protein|unclassified	3.8545565518
+UniRef50_B2UCS2: MJ0042 family finger-like protein	3.8537017702
+UniRef50_B2UCS2: MJ0042 family finger-like protein|unclassified	3.8537017702
+UniRef50_A6LW34	3.8535645472
+UniRef50_A6LW34|g__Clostridium.s__Clostridium_beijerinckii	3.8535645472
+UniRef50_V8G3J5	3.8527623579
+UniRef50_V8G3J5|g__Clostridium.s__Clostridium_beijerinckii	3.8527623579
+UniRef50_C6SFH9	3.8521344886
+UniRef50_C6SFH9|unclassified	3.8521344886
+UniRef50_Q9RVM4: Transcriptional regulator	3.8520858359
+UniRef50_Q9RVM4: Transcriptional regulator|g__Deinococcus.s__Deinococcus_radiodurans	3.8520858359
+UniRef50_F0RN24: Polyprenyl synthetase	3.8516333145
+UniRef50_F0RN24: Polyprenyl synthetase|g__Deinococcus.s__Deinococcus_radiodurans	3.8516333145
+UniRef50_F6F3K3: Transposase IS3/IS911 family protein	3.8512551940
+UniRef50_F6F3K3: Transposase IS3/IS911 family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.8512551940
+UniRef50_UPI000363D58E: protein meaA, partial	3.8511744539
+UniRef50_UPI000363D58E: protein meaA, partial|unclassified	3.8511744539
+UniRef50_K4PR52	3.8499761308
+UniRef50_K4PR52|g__Streptococcus.s__Streptococcus_agalactiae	3.8499761308
+UniRef50_G7M2T3: Polypeptide-transport-associated domain protein FtsQ-type	3.8488738984
+UniRef50_G7M2T3: Polypeptide-transport-associated domain protein FtsQ-type|g__Clostridium.s__Clostridium_beijerinckii	3.8488738984
+UniRef50_R9ZKQ2: Iron transporter	3.8477101078
+UniRef50_R9ZKQ2: Iron transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8477101078
+UniRef50_M9SEQ8: Transcriptional regulator	3.8474350433
+UniRef50_M9SEQ8: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8474350433
+UniRef50_F2JM65: Alcohol dehydrogenase	3.8473047837
+UniRef50_F2JM65: Alcohol dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	3.8473047837
+UniRef50_T2A0W0: Relaxase/mobilization nuclease family protein	3.8464722105
+UniRef50_T2A0W0: Relaxase/mobilization nuclease family protein|g__Streptococcus.s__Streptococcus_agalactiae	3.8464722105
+UniRef50_V7EGT0	3.8463245197
+UniRef50_V7EGT0|unclassified	3.8463245197
+UniRef50_A5UNT0	3.8461538462
+UniRef50_A5UNT0|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.8461538462
+UniRef50_A6LTD1	3.8461538462
+UniRef50_A6LTD1|g__Clostridium.s__Clostridium_beijerinckii	3.8461538462
+UniRef50_A6LXX5	3.8461538462
+UniRef50_A6LXX5|g__Clostridium.s__Clostridium_beijerinckii	3.8461538462
+UniRef50_B9DT54: RNA polymerase sigma factor protein	3.8461538462
+UniRef50_B9DT54: RNA polymerase sigma factor protein|g__Streptococcus.s__Streptococcus_agalactiae	3.8461538462
+UniRef50_K4QD24	3.8461538462
+UniRef50_K4QD24|g__Streptococcus.s__Streptococcus_agalactiae	3.8461538462
+UniRef50_Q1I8H8	3.8461538462
+UniRef50_Q1I8H8|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8461538462
+UniRef50_Q9I089	3.8461538462
+UniRef50_Q9I089|unclassified	3.8461538462
+UniRef50_H3UQK1	3.8455734323
+UniRef50_H3UQK1|unclassified	3.8455734323
+UniRef50_D5AQK7: Membrane protein, putative	3.8451588609
+UniRef50_D5AQK7: Membrane protein, putative|unclassified	3.8451588609
+UniRef50_B2TPI9	3.8450543168
+UniRef50_B2TPI9|g__Clostridium.s__Clostridium_beijerinckii	3.8450543168
+UniRef50_A6M3M5: tRNA modification GTPase MnmE	3.8449169911
+UniRef50_A6M3M5: tRNA modification GTPase MnmE|g__Clostridium.s__Clostridium_beijerinckii	3.8449169911
+UniRef50_Q9L880	3.8446765449
+UniRef50_Q9L880|unclassified	3.8446765449
+UniRef50_A6VDX0: Membrane protein, putative	3.8445657947
+UniRef50_A6VDX0: Membrane protein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8445657947
+UniRef50_C5WGD2: Na+/H+ antiporter	3.8434556458
+UniRef50_C5WGD2: Na+/H+ antiporter|g__Streptococcus.s__Streptococcus_agalactiae	3.8434556458
+UniRef50_J0QYX6	3.8432878203
+UniRef50_J0QYX6|unclassified	3.8432878203
+UniRef50_H8XGN8	3.8423057692
+UniRef50_H8XGN8|unclassified	3.8423057692
+UniRef50_B2GLQ7: Biotin synthase	3.8415341179
+UniRef50_B2GLQ7: Biotin synthase|g__Propionibacterium.s__Propionibacterium_acnes	3.8065789800
+UniRef50_B2GLQ7: Biotin synthase|unclassified	0.0349551379
+UniRef50_J2ZLN9	3.8410388782
+UniRef50_J2ZLN9|unclassified	3.8410388782
+UniRef50_E6UB19: Arginine biosynthesis bifunctional protein ArgJ	3.8409554817
+UniRef50_E6UB19: Arginine biosynthesis bifunctional protein ArgJ|g__Clostridium.s__Clostridium_beijerinckii	3.8409554817
+UniRef50_S5Y9R9: Acetoin transcriptional regulator, AcoR	3.8401523113
+UniRef50_S5Y9R9: Acetoin transcriptional regulator, AcoR|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.8401523113
+UniRef50_Q2P047: Phosphoribosylglycinamide formyltransferase 2	3.8399554011
+UniRef50_Q2P047: Phosphoribosylglycinamide formyltransferase 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8399554011
+UniRef50_W0EAD6: HAD family hydrolase	3.8398144637
+UniRef50_W0EAD6: HAD family hydrolase|g__Clostridium.s__Clostridium_beijerinckii	3.8398144637
+UniRef50_G2JGA5: Lipopolysaccharide ABC transporter periplasmic substrate-binding protein LptA	3.8387715931
+UniRef50_G2JGA5: Lipopolysaccharide ABC transporter periplasmic substrate-binding protein LptA|g__Acinetobacter.s__Acinetobacter_baumannii	3.8387715931
+UniRef50_Q9RRB7: Probable manganese-dependent inorganic pyrophosphatase	3.8379746072
+UniRef50_Q9RRB7: Probable manganese-dependent inorganic pyrophosphatase|unclassified	3.8379746072
+UniRef50_P45581	3.8370161305
+UniRef50_P45581|g__Escherichia.s__Escherichia_coli	3.8370161305
+UniRef50_A6LY84: RNA-directed DNA polymerase (Reverse transcriptase)	3.8358508015
+UniRef50_A6LY84: RNA-directed DNA polymerase (Reverse transcriptase)|g__Clostridium.s__Clostridium_beijerinckii	3.8358508015
+UniRef50_M9VFR5: D-alanine--D-alanine ligase	3.8339512463
+UniRef50_M9VFR5: D-alanine--D-alanine ligase|g__Propionibacterium.s__Propionibacterium_acnes	3.8339512463
+UniRef50_F0XZ32	3.8332170505
+UniRef50_F0XZ32|unclassified	3.8332170505
+UniRef50_G4LFN6	3.8329421077
+UniRef50_G4LFN6|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8329421077
+UniRef50_Q899J9: Methyl-accepting chemotaxis protein	3.8317026976
+UniRef50_Q899J9: Methyl-accepting chemotaxis protein|g__Clostridium.s__Clostridium_beijerinckii	3.8317026976
+UniRef50_A3PNF9: 30S ribosomal protein S15	3.8314176245
+UniRef50_A3PNF9: 30S ribosomal protein S15|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.8314176245
+UniRef50_J0H7C6	3.8314176245
+UniRef50_J0H7C6|g__Staphylococcus.s__Staphylococcus_epidermidis	3.8314176245
+UniRef50_N6EJL9	3.8314176245
+UniRef50_N6EJL9|g__Staphylococcus.s__Staphylococcus_aureus	3.8314176245
+UniRef50_O26271: UPF0062 protein MTH_169	3.8314176245
+UniRef50_O26271: UPF0062 protein MTH_169|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.8314176245
+UniRef50_C4ZAJ9: ABC transporter, substrate-binding protein	3.8312284498
+UniRef50_C4ZAJ9: ABC transporter, substrate-binding protein|g__Clostridium.s__Clostridium_beijerinckii	3.8312284498
+UniRef50_I9U000: Aquaporin Z	3.8311867870
+UniRef50_I9U000: Aquaporin Z|unclassified	3.8311867870
+UniRef50_Q9RZB7: Glycosyltransferase	3.8296921967
+UniRef50_Q9RZB7: Glycosyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	3.8296921967
+UniRef50_D7GHA6: Iron ABC transporter, permease protein	3.8295715111
+UniRef50_D7GHA6: Iron ABC transporter, permease protein|g__Propionibacterium.s__Propionibacterium_acnes	3.8295715111
+UniRef50_D1NZD3	3.8293172511
+UniRef50_D1NZD3|unclassified	3.8293172511
+UniRef50_B7V6M6: Homoprotocatechuate 2,3-dioxygenase	3.8288142540
+UniRef50_B7V6M6: Homoprotocatechuate 2,3-dioxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8288142540
+UniRef50_M9VI15	3.8277547014
+UniRef50_M9VI15|g__Propionibacterium.s__Propionibacterium_acnes	3.8277547014
+UniRef50_M9RU26	3.8276170869
+UniRef50_M9RU26|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8276170869
+UniRef50_A6LR24: Binding-protein-dependent transport systems inner membrane component	3.8275246731
+UniRef50_A6LR24: Binding-protein-dependent transport systems inner membrane component|g__Clostridium.s__Clostridium_beijerinckii	3.8275246731
+UniRef50_A6LV60: Extracellular solute-binding protein, family 3	3.8272538273
+UniRef50_A6LV60: Extracellular solute-binding protein, family 3|g__Clostridium.s__Clostridium_beijerinckii	3.8272538273
+UniRef50_R7AGH6: M42 glutamyl aminopeptidase	3.8271183985
+UniRef50_R7AGH6: M42 glutamyl aminopeptidase|g__Clostridium.s__Clostridium_beijerinckii	3.8271183985
+UniRef50_A6LR22: Binding-protein-dependent transport systems inner membrane component	3.8265347626
+UniRef50_A6LR22: Binding-protein-dependent transport systems inner membrane component|g__Clostridium.s__Clostridium_beijerinckii	3.8265347626
+UniRef50_T2EBD3: ATP-dependent helicase HrpA	3.8261951749
+UniRef50_T2EBD3: ATP-dependent helicase HrpA|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8261951749
+UniRef50_Q6A812: N-acetyl-gamma-glutamyl-phosphate reductase	3.8257050933
+UniRef50_Q6A812: N-acetyl-gamma-glutamyl-phosphate reductase|g__Propionibacterium.s__Propionibacterium_acnes	3.8257050933
+UniRef50_X3F156	3.8242802124
+UniRef50_X3F156|unclassified	3.8242802124
+UniRef50_B4G1R8	3.8240917782
+UniRef50_B4G1R8|unclassified	3.8240917782
+UniRef50_Q97FQ5: DNA ligase 2	3.8236373921
+UniRef50_Q97FQ5: DNA ligase 2|g__Clostridium.s__Clostridium_beijerinckii	3.8236373921
+UniRef50_D5USJ5: ABC transporter related protein	3.8233475208
+UniRef50_D5USJ5: ABC transporter related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.8233475208
+UniRef50_X6JHN5	3.8230997783
+UniRef50_X6JHN5|unclassified	3.8230997783
+UniRef50_G7M646: Nitroreductase	3.8220950319
+UniRef50_G7M646: Nitroreductase|g__Clostridium.s__Clostridium_beijerinckii	3.8220950319
+UniRef50_UPI000225F112: hypothetical protein	3.8195197965
+UniRef50_UPI000225F112: hypothetical protein|unclassified	3.8195197965
+UniRef50_F6AE19: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase	3.8191694565
+UniRef50_F6AE19: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8191694565
+UniRef50_UPI0003654549: hypothetical protein	3.8191281838
+UniRef50_UPI0003654549: hypothetical protein|unclassified	3.8191281838
+UniRef50_F3SUV9: Conserved domain protein	3.8184276263
+UniRef50_F3SUV9: Conserved domain protein|unclassified	3.8184276263
+UniRef50_A6LRJ1: Amino acid permease-associated region	3.8183752594
+UniRef50_A6LRJ1: Amino acid permease-associated region|g__Clostridium.s__Clostridium_beijerinckii	3.8183752594
+UniRef50_A1AA91: Regulatory protein AriR	3.8167938931
+UniRef50_A1AA91: Regulatory protein AriR|g__Escherichia.s__Escherichia_coli	3.8167938931
+UniRef50_A6LWW3: GCN5-related N-acetyltransferase	3.8167938931
+UniRef50_A6LWW3: GCN5-related N-acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	3.8167938931
+UniRef50_B2I0T9: Dehydrogenase with different specificities	3.8167938931
+UniRef50_B2I0T9: Dehydrogenase with different specificities|g__Acinetobacter.s__Acinetobacter_baumannii	3.8167938931
+UniRef50_B2ING0: 30S ribosomal protein S16	3.8167938931
+UniRef50_B2ING0: 30S ribosomal protein S16|g__Staphylococcus.s__Staphylococcus_epidermidis	3.8167938931
+UniRef50_D8GIE8: Predicted two-component response regulator	3.8167938931
+UniRef50_D8GIE8: Predicted two-component response regulator|g__Clostridium.s__Clostridium_beijerinckii	3.8167938931
+UniRef50_E5WAH0	3.8167938931
+UniRef50_E5WAH0|unclassified	3.8167938931
+UniRef50_Q8CSF3	3.8167938931
+UniRef50_Q8CSF3|g__Staphylococcus.s__Staphylococcus_epidermidis	3.8167938931
+UniRef50_Q9RTG8: Ribosome maturation factor RimP	3.8167938931
+UniRef50_Q9RTG8: Ribosome maturation factor RimP|g__Deinococcus.s__Deinococcus_radiodurans	3.8167938931
+UniRef50_W1YWQ9	3.8167938931
+UniRef50_W1YWQ9|unclassified	3.8167938931
+UniRef50_UPI0002D62563: hypothetical protein	3.8146302200
+UniRef50_UPI0002D62563: hypothetical protein|unclassified	3.8146302200
+UniRef50_W9G7S7: Transposase (Fragment)	3.8131048351
+UniRef50_W9G7S7: Transposase (Fragment)|unclassified	3.8131048351
+UniRef50_Q8DYL9: Glycosyl transferase, family 8	3.8126993606
+UniRef50_Q8DYL9: Glycosyl transferase, family 8|g__Streptococcus.s__Streptococcus_agalactiae	3.8126993606
+UniRef50_D0W115	3.8123535583
+UniRef50_D0W115|unclassified	3.8123535583
+UniRef50_Q9AL89	3.8122313169
+UniRef50_Q9AL89|unclassified	3.8122313169
+UniRef50_Q8RCX1: K(+)-insensitive pyrophosphate-energized proton pump	3.8112420188
+UniRef50_Q8RCX1: K(+)-insensitive pyrophosphate-energized proton pump|g__Clostridium.s__Clostridium_beijerinckii	3.8112420188
+UniRef50_A6LXR1	3.8107767049
+UniRef50_A6LXR1|g__Clostridium.s__Clostridium_beijerinckii	3.8107767049
+UniRef50_F2A9W7	3.8106757819
+UniRef50_F2A9W7|unclassified	3.8106757819
+UniRef50_D8BFH5	3.8101483422
+UniRef50_D8BFH5|unclassified	3.8101483422
+UniRef50_W4TIL7	3.8091568597
+UniRef50_W4TIL7|unclassified	3.8091568597
+UniRef50_A6LTU9: Resolvase, N-terminal domain	3.8087754631
+UniRef50_A6LTU9: Resolvase, N-terminal domain|g__Clostridium.s__Clostridium_beijerinckii	3.8087754631
+UniRef50_L1LUW6: ISPsy1 transposase	3.8084086970
+UniRef50_L1LUW6: ISPsy1 transposase|unclassified	3.8084086970
+UniRef50_M1X9B6: SCCmec staphylococcal cassette region, isolate CMFT181	3.8082742573
+UniRef50_M1X9B6: SCCmec staphylococcal cassette region, isolate CMFT181|g__Staphylococcus.s__Staphylococcus_epidermidis	3.5368286749
+UniRef50_M1X9B6: SCCmec staphylococcal cassette region, isolate CMFT181|unclassified	0.2714455824
+UniRef50_J0GHK1: Putative HTH-type transcriptional regulator SarR	3.8075983332
+UniRef50_J0GHK1: Putative HTH-type transcriptional regulator SarR|unclassified	3.8075983332
+UniRef50_A6LQ20: Efflux transporter, RND family, MFP subunit	3.8075935353
+UniRef50_A6LQ20: Efflux transporter, RND family, MFP subunit|g__Clostridium.s__Clostridium_beijerinckii	3.8075935353
+UniRef50_A6QHZ9: Lantibiotic ABC transporter protein	3.8074058068
+UniRef50_A6QHZ9: Lantibiotic ABC transporter protein|g__Staphylococcus.s__Staphylococcus_aureus	3.3712169582
+UniRef50_A6QHZ9: Lantibiotic ABC transporter protein|unclassified	0.4361888485
+UniRef50_U8AK64: tRNA 2-thiocytidine biosynthesis protein TtcA	3.8057057899
+UniRef50_U8AK64: tRNA 2-thiocytidine biosynthesis protein TtcA|unclassified	3.8057057899
+UniRef50_G7M6K8: Cof-like hydrolase	3.8053917741
+UniRef50_G7M6K8: Cof-like hydrolase|g__Clostridium.s__Clostridium_beijerinckii	3.8053917741
+UniRef50_R4K0Z8: L-serine dehydratase, iron-sulfur-dependent, beta subunit	3.8051277805
+UniRef50_R4K0Z8: L-serine dehydratase, iron-sulfur-dependent, beta subunit|g__Clostridium.s__Clostridium_beijerinckii	3.8051277805
+UniRef50_UPI0001BF7CE9: hypothetical protein SMAC_10228, partial	3.8048209807
+UniRef50_UPI0001BF7CE9: hypothetical protein SMAC_10228, partial|unclassified	3.8048209807
+UniRef50_Q3IX45	3.8046546394
+UniRef50_Q3IX45|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.8046546394
+UniRef50_Q1J7N1: UDP-N-acetylmuramoylpentapeptide-lysine N(6)-alanyltransferase / UDP-N-acetylmuramoylpentapeptide-lysine N(6)-seryltransferase	3.8033988994
+UniRef50_Q1J7N1: UDP-N-acetylmuramoylpentapeptide-lysine N(6)-alanyltransferase / UDP-N-acetylmuramoylpentapeptide-lysine N(6)-seryltransferase|g__Streptococcus.s__Streptococcus_agalactiae	3.8033988994
+UniRef50_I1AGF1: Putative ATP-dependent RNA helicase (Fragment)	3.8023064794
+UniRef50_I1AGF1: Putative ATP-dependent RNA helicase (Fragment)|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8023064794
+UniRef50_A0A011P8R8	3.8022813688
+UniRef50_A0A011P8R8|unclassified	3.8022813688
+UniRef50_A0A011PBV4	3.8022813688
+UniRef50_A0A011PBV4|unclassified	3.8022813688
+UniRef50_A6LT62	3.8022813688
+UniRef50_A6LT62|g__Clostridium.s__Clostridium_beijerinckii	3.8022813688
+UniRef50_B7H275: Aminoglycoside 2'-N-acetyltransferase(AAC(2')-Ib)	3.8022813688
+UniRef50_B7H275: Aminoglycoside 2'-N-acetyltransferase(AAC(2')-Ib)|g__Acinetobacter.s__Acinetobacter_baumannii	3.8022813688
+UniRef50_D5ZLM9: Predicted protein	3.8022813688
+UniRef50_D5ZLM9: Predicted protein|unclassified	3.8022813688
+UniRef50_M9S0M0: Histidine transport system permease	3.8022813688
+UniRef50_M9S0M0: Histidine transport system permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8022813688
+UniRef50_M9VK41: KHG/KDPG aldolase	3.8022813688
+UniRef50_M9VK41: KHG/KDPG aldolase|g__Propionibacterium.s__Propionibacterium_acnes	3.8022813688
+UniRef50_M1MDC6: Transcription termination factor Rho	3.8016966538
+UniRef50_M1MDC6: Transcription termination factor Rho|g__Clostridium.s__Clostridium_beijerinckii	3.8016966538
+UniRef50_A4SMY4: Serine/threonine protein kinase, RI01 family	3.8013273282
+UniRef50_A4SMY4: Serine/threonine protein kinase, RI01 family|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.8013273282
+UniRef50_S5HCS9	3.8010184032
+UniRef50_S5HCS9|unclassified	3.8010184032
+UniRef50_P46883: Primary amine oxidase	3.8010014566
+UniRef50_P46883: Primary amine oxidase|g__Acinetobacter.s__Acinetobacter_baumannii	3.8010014566
+UniRef50_UPI00029DB87B	3.8005266292
+UniRef50_UPI00029DB87B|unclassified	3.8005266292
+UniRef50_UPI00046F97B3: chemotaxis protein CheD	3.7995942814
+UniRef50_UPI00046F97B3: chemotaxis protein CheD|unclassified	3.7995942814
+UniRef50_A6LZ87: Aminoglycoside phosphotransferase	3.7993487826
+UniRef50_A6LZ87: Aminoglycoside phosphotransferase|g__Clostridium.s__Clostridium_beijerinckii	3.7993487826
+UniRef50_F0YS51: Expressed protein (Fragment)	3.7991267214
+UniRef50_F0YS51: Expressed protein (Fragment)|unclassified	3.7991267214
+UniRef50_K2G3J3	3.7988445563
+UniRef50_K2G3J3|unclassified	3.7988445563
+UniRef50_A8BPM5	3.7987561148
+UniRef50_A8BPM5|unclassified	3.7987561148
+UniRef50_T2EEA4: Binding--dependent transport system inner membrane component family protein	3.7977200424
+UniRef50_T2EEA4: Binding--dependent transport system inner membrane component family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7977200424
+UniRef50_R5XFF7: ABC transporter substrate-binding protein QAT family	3.7976426179
+UniRef50_R5XFF7: ABC transporter substrate-binding protein QAT family|g__Clostridium.s__Clostridium_beijerinckii	3.7976426179
+UniRef50_Q3JX83	3.7973263349
+UniRef50_Q3JX83|unclassified	3.7973263349
+UniRef50_E4RMY1: CoA-substrate-specific enzyme activase	3.7951893994
+UniRef50_E4RMY1: CoA-substrate-specific enzyme activase|g__Clostridium.s__Clostridium_beijerinckii	3.7951893994
+UniRef50_P64246: Probable glutamine synthetase 2	3.7951499248
+UniRef50_P64246: Probable glutamine synthetase 2|g__Propionibacterium.s__Propionibacterium_acnes	3.7951499248
+UniRef50_F9R3E1: DNA-binding transcriptional regulator AraC (Fragment)	3.7950664137
+UniRef50_F9R3E1: DNA-binding transcriptional regulator AraC (Fragment)|g__Escherichia.s__Escherichia_coli	3.7950664137
+UniRef50_A6LXH6: Na+/H+ antiporter	3.7945303890
+UniRef50_A6LXH6: Na+/H+ antiporter|g__Clostridium.s__Clostridium_beijerinckii	3.7945303890
+UniRef50_UPI00045DB756: PREDICTED: proline-rich protein HaeIII subfamily 1-like	3.7943880763
+UniRef50_UPI00045DB756: PREDICTED: proline-rich protein HaeIII subfamily 1-like|unclassified	3.7943880763
+UniRef50_M4WTW3	3.7943814370
+UniRef50_M4WTW3|unclassified	3.7943814370
+UniRef50_C8X9W2: Membrane protein-like protein	3.7942685709
+UniRef50_C8X9W2: Membrane protein-like protein|unclassified	3.7942685709
+UniRef50_UPI00037A88EA: hypothetical protein	3.7932966151
+UniRef50_UPI00037A88EA: hypothetical protein|unclassified	3.7932966151
+UniRef50_Q05069: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI	3.7915526776
+UniRef50_Q05069: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI|g__Acinetobacter.s__Acinetobacter_baumannii	3.6977463600
+UniRef50_Q05069: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI|unclassified	0.0938063176
+UniRef50_UPI0004641455: electron transporter RnfC	3.7914178120
+UniRef50_UPI0004641455: electron transporter RnfC|g__Escherichia.s__Escherichia_coli	3.5006685856
+UniRef50_UPI0004641455: electron transporter RnfC|unclassified	0.2907492264
+UniRef50_A6M0Z6	3.7897794968
+UniRef50_A6M0Z6|g__Clostridium.s__Clostridium_beijerinckii	3.7897794968
+UniRef50_R4MBW3	3.7889287939
+UniRef50_R4MBW3|unclassified	3.7889287939
+UniRef50_B4RQ53	3.7879477148
+UniRef50_B4RQ53|g__Neisseria.s__Neisseria_meningitidis	3.7879477148
+UniRef50_A0A023VL47	3.7878787879
+UniRef50_A0A023VL47|g__Streptococcus.s__Streptococcus_mutans	3.7878787879
+UniRef50_A1V1J5	3.7878787879
+UniRef50_A1V1J5|unclassified	3.7878787879
+UniRef50_A5A630	3.7878787879
+UniRef50_A5A630|g__Escherichia.s__Escherichia_coli	3.7878787879
+UniRef50_A8LN08	3.7878787879
+UniRef50_A8LN08|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.7878787879
+UniRef50_D3E2A8	3.7878787879
+UniRef50_D3E2A8|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.7878787879
+UniRef50_F3SZK3	3.7878787879
+UniRef50_F3SZK3|unclassified	3.7878787879
+UniRef50_I6T7T0: Transposase	3.7878787879
+UniRef50_I6T7T0: Transposase|g__Streptococcus.s__Streptococcus_mutans	3.7878787879
+UniRef50_J8RY92	3.7878787879
+UniRef50_J8RY92|unclassified	3.7878787879
+UniRef50_Q5HQ58	3.7878787879
+UniRef50_Q5HQ58|unclassified	3.7878787879
+UniRef50_Q6F8V9	3.7869828847
+UniRef50_Q6F8V9|g__Acinetobacter.s__Acinetobacter_baumannii	3.7869828847
+UniRef50_I3USA0: MscS mechanosensitive ion channel	3.7866753953
+UniRef50_I3USA0: MscS mechanosensitive ion channel|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7866753953
+UniRef50_X1C4Y0: Marine sediment metagenome DNA, contig: S01H4_S10433 (Fragment)	3.7862739546
+UniRef50_X1C4Y0: Marine sediment metagenome DNA, contig: S01H4_S10433 (Fragment)|unclassified	3.7862739546
+UniRef50_R6QY26: FAD dependent oxidoreductase	3.7859440494
+UniRef50_R6QY26: FAD dependent oxidoreductase|g__Clostridium.s__Clostridium_beijerinckii	3.7859440494
+UniRef50_A6LRZ8	3.7858716499
+UniRef50_A6LRZ8|g__Clostridium.s__Clostridium_beijerinckii	3.7858716499
+UniRef50_G7M922: GAF modulated sigma54 specific transcriptional regulator, Fis family	3.7857834596
+UniRef50_G7M922: GAF modulated sigma54 specific transcriptional regulator, Fis family|g__Clostridium.s__Clostridium_beijerinckii	3.7857834596
+UniRef50_I5EV13	3.7857258026
+UniRef50_I5EV13|unclassified	3.7857258026
+UniRef50_A3M4L9	3.7856059329
+UniRef50_A3M4L9|g__Acinetobacter.s__Acinetobacter_baumannii	3.7856059329
+UniRef50_E6WAB3: Thymidine phosphorylase	3.7839756441
+UniRef50_E6WAB3: Thymidine phosphorylase|g__Escherichia.s__Escherichia_coli	3.7839756441
+UniRef50_G4YC47	3.7833008191
+UniRef50_G4YC47|unclassified	3.7833008191
+UniRef50_Q1GEB3	3.7828356427
+UniRef50_Q1GEB3|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.7828356427
+UniRef50_A6LS16: Sigma-54 factor, interaction domain-containing protein	3.7826145586
+UniRef50_A6LS16: Sigma-54 factor, interaction domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	3.7826145586
+UniRef50_UPI0003689BA2: hypothetical protein	3.7824977736
+UniRef50_UPI0003689BA2: hypothetical protein|unclassified	3.7824977736
+UniRef50_A7IEL6: Binding-protein-dependent transport systems inner membrane component	3.7823814455
+UniRef50_A7IEL6: Binding-protein-dependent transport systems inner membrane component|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2271714922
+UniRef50_A7IEL6: Binding-protein-dependent transport systems inner membrane component|g__Acinetobacter.s__Acinetobacter_baumannii	1.5552099533
+UniRef50_Q9RUB4	3.7822002778
+UniRef50_Q9RUB4|g__Deinococcus.s__Deinococcus_radiodurans	3.7822002778
+UniRef50_A0A023RT67: Recombinase RecJ	3.7819553565
+UniRef50_A0A023RT67: Recombinase RecJ|g__Acinetobacter.s__Acinetobacter_baumannii	3.7819553565
+UniRef50_M1FGU0	3.7816368734
+UniRef50_M1FGU0|unclassified	3.7816368734
+UniRef50_B2TRN5: Bifunctional protein FolD	3.7798839302
+UniRef50_B2TRN5: Bifunctional protein FolD|g__Clostridium.s__Clostridium_beijerinckii	3.7798839302
+UniRef50_D5BU08: ABC transporter related protein	3.7789728968
+UniRef50_D5BU08: ABC transporter related protein|g__Streptococcus.s__Streptococcus_agalactiae	3.7789728968
+UniRef50_W9T4X8: Type II and III secretion system family protein	3.7777618820
+UniRef50_W9T4X8: Type II and III secretion system family protein|unclassified	3.7777618820
+UniRef50_A3PRI3	3.7777061598
+UniRef50_A3PRI3|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.7777061598
+UniRef50_A4T2G6	3.7759388597
+UniRef50_A4T2G6|unclassified	3.7759388597
+UniRef50_Q48KH7: Response regulator	3.7758786352
+UniRef50_Q48KH7: Response regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7758786352
+UniRef50_I5NWW7	3.7752523068
+UniRef50_I5NWW7|unclassified	3.7752523068
+UniRef50_A9V5N5: Predicted protein	3.7743465450
+UniRef50_A9V5N5: Predicted protein|unclassified	3.7743465450
+UniRef50_A3P9L6: : Mn-containing catalase	3.7741523143
+UniRef50_A3P9L6: : Mn-containing catalase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7741523143
+UniRef50_Q97EX0: Ribosomal RNA small subunit methyltransferase A	3.7740174506
+UniRef50_Q97EX0: Ribosomal RNA small subunit methyltransferase A|g__Clostridium.s__Clostridium_beijerinckii	3.5460992908
+UniRef50_Q97EX0: Ribosomal RNA small subunit methyltransferase A|unclassified	0.2279181598
+UniRef50_A6V1L7	3.7735983396
+UniRef50_A6V1L7|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7735983396
+UniRef50_A0A023Z7K7: Beta-lactamase	3.7735849057
+UniRef50_A0A023Z7K7: Beta-lactamase|g__Escherichia.s__Escherichia_coli	3.7735849057
+UniRef50_A6QHE2	3.7735849057
+UniRef50_A6QHE2|g__Staphylococcus.s__Staphylococcus_aureus	3.7735849057
+UniRef50_C3K7U6	3.7735849057
+UniRef50_C3K7U6|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7735849057
+UniRef50_J7M7N8: Regulatory protein	3.7735849057
+UniRef50_J7M7N8: Regulatory protein|g__Streptococcus.s__Streptococcus_agalactiae	3.7735849057
+UniRef50_L4PPW4	3.7735849057
+UniRef50_L4PPW4|g__Escherichia.s__Escherichia_coli	3.7735849057
+UniRef50_Q2G1C3	3.7735849057
+UniRef50_Q2G1C3|unclassified	3.7735849057
+UniRef50_Q6A5B0	3.7735849057
+UniRef50_Q6A5B0|g__Propionibacterium.s__Propionibacterium_acnes	3.7735849057
+UniRef50_UPI000376E071: hypothetical protein	3.7735849057
+UniRef50_UPI000376E071: hypothetical protein|unclassified	3.7735849057
+UniRef50_B7E9U4: cDNA clone:002-114-B09, full insert sequence	3.7735825599
+UniRef50_B7E9U4: cDNA clone:002-114-B09, full insert sequence|unclassified	3.7735825599
+UniRef50_F2I8T3: PTS system mannose/fructose/sorbose family IID component	3.7729167673
+UniRef50_F2I8T3: PTS system mannose/fructose/sorbose family IID component|g__Streptococcus.s__Streptococcus_agalactiae	3.7729167673
+UniRef50_U4K6F1: Methylmalonate semialdehyde dehydrogenase [acylating]	3.7726831809
+UniRef50_U4K6F1: Methylmalonate semialdehyde dehydrogenase [acylating]|g__Propionibacterium.s__Propionibacterium_acnes	3.7726831809
+UniRef50_A0A015A762: Aminopeptidase N (Fragment)	3.7720329142
+UniRef50_A0A015A762: Aminopeptidase N (Fragment)|g__Acinetobacter.s__Acinetobacter_baumannii	3.7720329142
+UniRef50_K2BIK6	3.7712726335
+UniRef50_K2BIK6|unclassified	3.7712726335
+UniRef50_T2FV18: Membrane protein	3.7706405898
+UniRef50_T2FV18: Membrane protein|g__Escherichia.s__Escherichia_coli	3.7706405898
+UniRef50_Q8VLE6: Staphylococcus aureus TY4, ETB plasmid DNA, complete sequence	3.7696228723
+UniRef50_Q8VLE6: Staphylococcus aureus TY4, ETB plasmid DNA, complete sequence|unclassified	3.7696228723
+UniRef50_D5ALH8: Lipoprotein, putative	3.7686031330
+UniRef50_D5ALH8: Lipoprotein, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.3640661939
+UniRef50_D5ALH8: Lipoprotein, putative|unclassified	1.4045369392
+UniRef50_G7U5R3	3.7683212503
+UniRef50_G7U5R3|g__Propionibacterium.s__Propionibacterium_acnes	3.7683212503
+UniRef50_V8G1A8: Membrane protein	3.7676386430
+UniRef50_V8G1A8: Membrane protein|g__Clostridium.s__Clostridium_beijerinckii	3.7676386430
+UniRef50_Z2DIA6	3.7672384689
+UniRef50_Z2DIA6|unclassified	3.7672384689
+UniRef50_Q6HBA8: UPF0145 protein BT9727_4859	3.7669676273
+UniRef50_Q6HBA8: UPF0145 protein BT9727_4859|unclassified	3.7669676273
+UniRef50_A5D130	3.7666942874
+UniRef50_A5D130|unclassified	3.7666942874
+UniRef50_A6LSZ3: Threonine synthase	3.7666182301
+UniRef50_A6LSZ3: Threonine synthase|g__Clostridium.s__Clostridium_beijerinckii	3.7666182301
+UniRef50_J9YPX2: N-acetylmuramoyl-L-alanine amidase	3.7664783427
+UniRef50_J9YPX2: N-acetylmuramoyl-L-alanine amidase|g__Streptococcus.s__Streptococcus_agalactiae	3.7664783427
+UniRef50_P53381: Protein mrp homolog	3.7660302171
+UniRef50_P53381: Protein mrp homolog|g__Clostridium.s__Clostridium_beijerinckii	3.7660302171
+UniRef50_G8NAB2: Replicative DNA helicase DnaB	3.7635772014
+UniRef50_G8NAB2: Replicative DNA helicase DnaB|g__Deinococcus.s__Deinococcus_radiodurans	3.7635772014
+UniRef50_UPI0003445A5C: PREDICTED: translation initiation factor IF-2-like	3.7629023853
+UniRef50_UPI0003445A5C: PREDICTED: translation initiation factor IF-2-like|unclassified	3.7629023853
+UniRef50_A4VQM5: Alanine racemase	3.7626818416
+UniRef50_A4VQM5: Alanine racemase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7626818416
+UniRef50_G4LNF0: Aldehyde dehydrogenase	3.7626544055
+UniRef50_G4LNF0: Aldehyde dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7626544055
+UniRef50_Q168F7	3.7622754221
+UniRef50_Q168F7|unclassified	3.7622754221
+UniRef50_J7QTH7: Thiamine pyrophosphate enzyme TPP binding domain protein	3.7618024506
+UniRef50_J7QTH7: Thiamine pyrophosphate enzyme TPP binding domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7618024506
+UniRef50_UPI0002B933E7: hypothetical protein, partial	3.7616286231
+UniRef50_UPI0002B933E7: hypothetical protein, partial|unclassified	3.7616286231
+UniRef50_E3HF39: Acyltransferase family protein 5	3.7611645198
+UniRef50_E3HF39: Acyltransferase family protein 5|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7611645198
+UniRef50_H6M883	3.7598721100
+UniRef50_H6M883|unclassified	3.7598721100
+UniRef50_A5UK21	3.7593984962
+UniRef50_A5UK21|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.7593984962
+UniRef50_F4ED07: Ribosomal protein L7Ae/L30e/S12e/Gadd45	3.7593984962
+UniRef50_F4ED07: Ribosomal protein L7Ae/L30e/S12e/Gadd45|g__Streptococcus.s__Streptococcus_mutans	3.7593984962
+UniRef50_W4T183	3.7593984962
+UniRef50_W4T183|unclassified	3.7593984962
+UniRef50_A6LZR2	3.7577940289
+UniRef50_A6LZR2|g__Clostridium.s__Clostridium_beijerinckii	3.7577940289
+UniRef50_W1FLR5: Transcriptional regulator CsgD for 2nd curli operon	3.7566137566
+UniRef50_W1FLR5: Transcriptional regulator CsgD for 2nd curli operon|g__Escherichia.s__Escherichia_coli	3.7566137566
+UniRef50_S9HDZ2	3.7562767683
+UniRef50_S9HDZ2|g__Streptococcus.s__Streptococcus_agalactiae	3.7562767683
+UniRef50_A6M324	3.7561757619
+UniRef50_A6M324|g__Clostridium.s__Clostridium_beijerinckii	3.7561757619
+UniRef50_W5TH20	3.7560798832
+UniRef50_W5TH20|unclassified	3.7560798832
+UniRef50_S6APH0: Peptidase M48 family protein	3.7560172783
+UniRef50_S6APH0: Peptidase M48 family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7560172783
+UniRef50_U3T490	3.7558718560
+UniRef50_U3T490|g__Acinetobacter.s__Acinetobacter_baumannii	3.7558718560
+UniRef50_UPI000471D449: serine kinase, partial	3.7556089495
+UniRef50_UPI000471D449: serine kinase, partial|unclassified	3.7556089495
+UniRef50_Q67QM2: Oligopeptide ABC transporter permease protein	3.7551177291
+UniRef50_Q67QM2: Oligopeptide ABC transporter permease protein|g__Clostridium.s__Clostridium_beijerinckii	3.7551177291
+UniRef50_J5A790	3.7548295237
+UniRef50_J5A790|g__Staphylococcus.s__Staphylococcus_aureus	3.3906866614
+UniRef50_J5A790|unclassified	0.3641428623
+UniRef50_E6MY39: Integral membrane protein, TerC family	3.7539079884
+UniRef50_E6MY39: Integral membrane protein, TerC family|g__Neisseria.s__Neisseria_meningitidis	3.7539079884
+UniRef50_A6M0E6: Signal transduction histidine kinase regulating citrate/malate metabolism	3.7533945978
+UniRef50_A6M0E6: Signal transduction histidine kinase regulating citrate/malate metabolism|g__Clostridium.s__Clostridium_beijerinckii	3.7533945978
+UniRef50_A4QEG9: Riboflavin biosynthesis protein RibBA	3.7531741859
+UniRef50_A4QEG9: Riboflavin biosynthesis protein RibBA|g__Propionibacterium.s__Propionibacterium_acnes	3.7531741859
+UniRef50_UPI000360AA50: hypothetical protein	3.7529855978
+UniRef50_UPI000360AA50: hypothetical protein|unclassified	3.7529855978
+UniRef50_R7CNB5	3.7514693320
+UniRef50_R7CNB5|g__Clostridium.s__Clostridium_beijerinckii	3.7514693320
+UniRef50_K7EE87	3.7513066677
+UniRef50_K7EE87|unclassified	3.7513066677
+UniRef50_O68827: Chloramphenicol-sensitive protein RarD	3.7504931806
+UniRef50_O68827: Chloramphenicol-sensitive protein RarD|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7504931806
+UniRef50_A6LSZ9	3.7499577159
+UniRef50_A6LSZ9|g__Clostridium.s__Clostridium_beijerinckii	3.7499577159
+UniRef50_F5LXU2	3.7490505463
+UniRef50_F5LXU2|unclassified	3.7490505463
+UniRef50_B9DXX3	3.7472106438
+UniRef50_B9DXX3|g__Clostridium.s__Clostridium_beijerinckii	3.7472106438
+UniRef50_A6LZ68: 4Fe-4S ferredoxin, iron-sulfur binding domain protein	3.7468944680
+UniRef50_A6LZ68: 4Fe-4S ferredoxin, iron-sulfur binding domain protein|g__Clostridium.s__Clostridium_beijerinckii	3.7468944680
+UniRef50_P37686: Probable alcohol dehydrogenase	3.7465904547
+UniRef50_P37686: Probable alcohol dehydrogenase|g__Escherichia.s__Escherichia_coli	3.7465904547
+UniRef50_Q57JH6	3.7463763532
+UniRef50_Q57JH6|unclassified	3.7463763532
+UniRef50_G7U9H2	3.7458167361
+UniRef50_G7U9H2|g__Propionibacterium.s__Propionibacterium_acnes	3.7458167361
+UniRef50_W7VQI0: Integral membrane protein	3.7454365643
+UniRef50_W7VQI0: Integral membrane protein|unclassified	3.7454365643
+UniRef50_A4WW11	3.7453183521
+UniRef50_A4WW11|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.7453183521
+UniRef50_A7X283: Acylphosphatase	3.7453183521
+UniRef50_A7X283: Acylphosphatase|g__Staphylococcus.s__Staphylococcus_epidermidis	3.7453183521
+UniRef50_A8AJ50	3.7453183521
+UniRef50_A8AJ50|unclassified	3.7453183521
+UniRef50_B7N743	3.7453183521
+UniRef50_B7N743|g__Escherichia.s__Escherichia_coli	3.7453183521
+UniRef50_C5MYP4	3.7453183521
+UniRef50_C5MYP4|g__Staphylococcus.s__Staphylococcus_aureus	3.7453183521
+UniRef50_C6SQ41	3.7453183521
+UniRef50_C6SQ41|g__Streptococcus.s__Streptococcus_mutans	3.7453183521
+UniRef50_F0VYF6	3.7453183521
+UniRef50_F0VYF6|g__Streptococcus.s__Streptococcus_mutans	3.7453183521
+UniRef50_L3KQX7	3.7453183521
+UniRef50_L3KQX7|g__Escherichia.s__Escherichia_coli	3.7453183521
+UniRef50_L7AZQ7	3.7453183521
+UniRef50_L7AZQ7|unclassified	3.7453183521
+UniRef50_P09162	3.7453183521
+UniRef50_P09162|g__Escherichia.s__Escherichia_coli	3.7453183521
+UniRef50_P95998: Orf c05009 protein	3.7453183521
+UniRef50_P95998: Orf c05009 protein|unclassified	3.7453183521
+UniRef50_G2L6W5: O-antigen chain length regulator	3.7444629014
+UniRef50_G2L6W5: O-antigen chain length regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7444629014
+UniRef50_A6LXF6: Extracellular solute-binding protein, family 3	3.7442809955
+UniRef50_A6LXF6: Extracellular solute-binding protein, family 3|g__Clostridium.s__Clostridium_beijerinckii	3.7442809955
+UniRef50_UPI0004672483: hypothetical protein	3.7427240935
+UniRef50_UPI0004672483: hypothetical protein|unclassified	3.7427240935
+UniRef50_Q1R8J2	3.7418398893
+UniRef50_Q1R8J2|g__Escherichia.s__Escherichia_coli	3.5714285714
+UniRef50_Q1R8J2|unclassified	0.1704113178
+UniRef50_UPI00036635D2: hypothetical protein	3.7408566678
+UniRef50_UPI00036635D2: hypothetical protein|unclassified	3.7408566678
+UniRef50_Q2JTQ1	3.7402723477
+UniRef50_Q2JTQ1|unclassified	3.7402723477
+UniRef50_C1D5X5: Protein-export membrane protein SecF	3.7396242901
+UniRef50_C1D5X5: Protein-export membrane protein SecF|g__Neisseria.s__Neisseria_meningitidis	3.7396242901
+UniRef50_P44468: Rod shape-determining protein RodA	3.7387705016
+UniRef50_P44468: Rod shape-determining protein RodA|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7387705016
+UniRef50_A6LY62	3.7386639256
+UniRef50_A6LY62|g__Clostridium.s__Clostridium_beijerinckii	3.7386639256
+UniRef50_R3W3Z9: Regulatory protein BlaR1	3.7386263401
+UniRef50_R3W3Z9: Regulatory protein BlaR1|unclassified	3.7386263401
+UniRef50_M1MG71: Methyl-accepting chemotaxis sensory transducer	3.7385714043
+UniRef50_M1MG71: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	3.7385714043
+UniRef50_X2MMA5	3.7384305738
+UniRef50_X2MMA5|unclassified	3.7384305738
+UniRef50_W9EQF6	3.7384044469
+UniRef50_W9EQF6|unclassified	3.7384044469
+UniRef50_H0AH53	3.7376095644
+UniRef50_H0AH53|unclassified	3.7376095644
+UniRef50_P00467: Nitrogenase molybdenum-iron protein alpha chain	3.7360462045
+UniRef50_P00467: Nitrogenase molybdenum-iron protein alpha chain|g__Clostridium.s__Clostridium_beijerinckii	3.5484040205
+UniRef50_P00467: Nitrogenase molybdenum-iron protein alpha chain|unclassified	0.1876421839
+UniRef50_O69762: Hydroxycinnamoyl-CoA hydratase-lyase	3.7354040766
+UniRef50_O69762: Hydroxycinnamoyl-CoA hydratase-lyase|g__Acinetobacter.s__Acinetobacter_baumannii	3.7354040766
+UniRef50_F9YYR4	3.7345224102
+UniRef50_F9YYR4|g__Propionibacterium.s__Propionibacterium_acnes	3.7345224102
+UniRef50_P22106: Asparagine synthetase B [glutamine-hydrolyzing]	3.7344790619
+UniRef50_P22106: Asparagine synthetase B [glutamine-hydrolyzing]|g__Escherichia.s__Escherichia_coli	3.7344790619
+UniRef50_Q5P4W2: Molybdenum import ATP-binding protein ModC	3.7327879925
+UniRef50_Q5P4W2: Molybdenum import ATP-binding protein ModC|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7327879925
+UniRef50_X1RXQ4: Marine sediment metagenome DNA, contig: S06H3_S29953 (Fragment)	3.7325662365
+UniRef50_X1RXQ4: Marine sediment metagenome DNA, contig: S06H3_S29953 (Fragment)|unclassified	3.7325662365
+UniRef50_Q97IG3: Alanine--tRNA ligase	3.7320336494
+UniRef50_Q97IG3: Alanine--tRNA ligase|g__Clostridium.s__Clostridium_beijerinckii	3.7320336494
+UniRef50_A0A011ZV36	3.7313432836
+UniRef50_A0A011ZV36|unclassified	3.7313432836
+UniRef50_A4WNE9: 30S ribosomal protein S20	3.7313432836
+UniRef50_A4WNE9: 30S ribosomal protein S20|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.7313432836
+UniRef50_G8V0K9	3.7313432836
+UniRef50_G8V0K9|g__Staphylococcus.s__Staphylococcus_aureus	3.7313432836
+UniRef50_J9UQ79	3.7313432836
+UniRef50_J9UQ79|g__Staphylococcus.s__Staphylococcus_aureus	3.7313432836
+UniRef50_P0ADQ1: Protein YihD	3.7313432836
+UniRef50_P0ADQ1: Protein YihD|g__Escherichia.s__Escherichia_coli	3.7313432836
+UniRef50_UPI0002B42FAD: PREDICTED: magnesium and cobalt efflux protein CorC-like	3.7313432836
+UniRef50_UPI0002B42FAD: PREDICTED: magnesium and cobalt efflux protein CorC-like|g__Escherichia.s__Escherichia_coli	3.7313432836
+UniRef50_W1WJ38	3.7313432836
+UniRef50_W1WJ38|unclassified	3.7313432836
+UniRef50_Q9RTB7: 1,4-alpha-glucan branching enzyme GlgB	3.7309139818
+UniRef50_Q9RTB7: 1,4-alpha-glucan branching enzyme GlgB|g__Deinococcus.s__Deinococcus_radiodurans	3.7309139818
+UniRef50_A6LS79	3.7307113162
+UniRef50_A6LS79|g__Clostridium.s__Clostridium_beijerinckii	3.7307113162
+UniRef50_D8GTF6	3.7299609734
+UniRef50_D8GTF6|g__Clostridium.s__Clostridium_beijerinckii	3.7299609734
+UniRef50_Q6A6L3	3.7281952706
+UniRef50_Q6A6L3|unclassified	3.7281952706
+UniRef50_A6LWU4: Non-specific serine/threonine protein kinase	3.7270108923
+UniRef50_A6LWU4: Non-specific serine/threonine protein kinase|g__Clostridium.s__Clostridium_beijerinckii	3.7270108923
+UniRef50_Q9RZ47	3.7264717695
+UniRef50_Q9RZ47|unclassified	3.7264717695
+UniRef50_UPI00037FD430: hypothetical protein	3.7264495438
+UniRef50_UPI00037FD430: hypothetical protein|unclassified	3.7264495438
+UniRef50_L7UG94	3.7256002931
+UniRef50_L7UG94|unclassified	3.7256002931
+UniRef50_R5TVL0	3.7244287414
+UniRef50_R5TVL0|unclassified	3.7244287414
+UniRef50_A6LX21: Molybdate metabolism regulator	3.7228599294
+UniRef50_A6LX21: Molybdate metabolism regulator|g__Clostridium.s__Clostridium_beijerinckii	3.7228599294
+UniRef50_A1B3H1	3.7226071054
+UniRef50_A1B3H1|unclassified	3.7226071054
+UniRef50_M9S589	3.7221014568
+UniRef50_M9S589|unclassified	3.7221014568
+UniRef50_UPI0003AE7594: PREDICTED: basic proline-rich protein-like	3.7220843672
+UniRef50_UPI0003AE7594: PREDICTED: basic proline-rich protein-like|unclassified	3.7220843672
+UniRef50_J9YME8: ABC superfamily ATP binding cassette transporter, membrane protein	3.7218612972
+UniRef50_J9YME8: ABC superfamily ATP binding cassette transporter, membrane protein|g__Streptococcus.s__Streptococcus_agalactiae	3.7218612972
+UniRef50_L8NKJ9	3.7209334524
+UniRef50_L8NKJ9|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7209334524
+UniRef50_H6P9U5: Membrane protein, putative	3.7207720432
+UniRef50_H6P9U5: Membrane protein, putative|g__Streptococcus.s__Streptococcus_agalactiae	3.7207720432
+UniRef50_UPI00047119F6: hypothetical protein, partial	3.7205129969
+UniRef50_UPI00047119F6: hypothetical protein, partial|unclassified	3.7205129969
+UniRef50_R7NVL6: AICARFT/IMPCHase bienzyme	3.7204137235
+UniRef50_R7NVL6: AICARFT/IMPCHase bienzyme|g__Clostridium.s__Clostridium_beijerinckii	3.7204137235
+UniRef50_A6V4P3: Trans-aconitate 2-methyltransferase	3.7198729359
+UniRef50_A6V4P3: Trans-aconitate 2-methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2569872995
+UniRef50_A6V4P3: Trans-aconitate 2-methyltransferase|unclassified	0.4628856364
+UniRef50_Q47EP3: Error-prone DNA polymerase	3.7197657439
+UniRef50_Q47EP3: Error-prone DNA polymerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7197657439
+UniRef50_U4WEY2	3.7193828643
+UniRef50_U4WEY2|unclassified	3.7193828643
+UniRef50_A6M2K0: Cell wall/surface repeat protein	3.7192029177
+UniRef50_A6M2K0: Cell wall/surface repeat protein|g__Clostridium.s__Clostridium_beijerinckii	3.7192029177
+UniRef50_Q8FK36: Cation efflux system protein CusA	3.7190521277
+UniRef50_Q8FK36: Cation efflux system protein CusA|g__Escherichia.s__Escherichia_coli	3.7190521277
+UniRef50_J9NVA3	3.7181449907
+UniRef50_J9NVA3|unclassified	3.7181449907
+UniRef50_A5UKK5: IS element (Transposase remnant)	3.7174721190
+UniRef50_A5UKK5: IS element (Transposase remnant)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.7174721190
+UniRef50_C1AFW3: Cob(I)yrinic acid a,c-diamide adenosyltransferase	3.7174721190
+UniRef50_C1AFW3: Cob(I)yrinic acid a,c-diamide adenosyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	3.7174721190
+UniRef50_D7BFI6	3.7174721190
+UniRef50_D7BFI6|g__Deinococcus.s__Deinococcus_radiodurans	3.7174721190
+UniRef50_Q5F7N5	3.7174721190
+UniRef50_Q5F7N5|unclassified	3.7174721190
+UniRef50_UPI00035EDE1F: hypothetical protein	3.7174721190
+UniRef50_UPI00035EDE1F: hypothetical protein|unclassified	3.7174721190
+UniRef50_N3W6G7: Putative glutamate Aspartate transport system permease protein GltJ	3.7173802265
+UniRef50_N3W6G7: Putative glutamate Aspartate transport system permease protein GltJ|unclassified	3.7173802265
+UniRef50_Q93615: Probable electron transfer flavoprotein subunit alpha, mitochondrial	3.7172816012
+UniRef50_Q93615: Probable electron transfer flavoprotein subunit alpha, mitochondrial|g__Acinetobacter.s__Acinetobacter_baumannii	3.7172816012
+UniRef50_A3SVY2	3.7166238911
+UniRef50_A3SVY2|unclassified	3.7166238911
+UniRef50_B0VT23: Erythronate-4-phosphate dehydrogenase	3.7162964409
+UniRef50_B0VT23: Erythronate-4-phosphate dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	3.7162964409
+UniRef50_A7HI44: LigA	3.7161725591
+UniRef50_A7HI44: LigA|unclassified	3.7161725591
+UniRef50_Q3EVF2: Penicillin-binding protein	3.7157311560
+UniRef50_Q3EVF2: Penicillin-binding protein|unclassified	3.7157311560
+UniRef50_A6LR61: Diguanylate cyclase	3.7153491409
+UniRef50_A6LR61: Diguanylate cyclase|g__Clostridium.s__Clostridium_beijerinckii	3.7153491409
+UniRef50_R4ZN50: Accessory secretory protein Asp1	3.7152558096
+UniRef50_R4ZN50: Accessory secretory protein Asp1|g__Streptococcus.s__Streptococcus_agalactiae	3.7152558096
+UniRef50_UPI00037022EA: hypothetical protein	3.7148905396
+UniRef50_UPI00037022EA: hypothetical protein|unclassified	3.7148905396
+UniRef50_U5MS98	3.7137881415
+UniRef50_U5MS98|g__Clostridium.s__Clostridium_beijerinckii	3.7137881415
+UniRef50_R6U3E2	3.7126282794
+UniRef50_R6U3E2|g__Clostridium.s__Clostridium_beijerinckii	3.7126282794
+UniRef50_UPI000424FB0D: 50S ribosomal protein L35	3.7107878197
+UniRef50_UPI000424FB0D: 50S ribosomal protein L35|unclassified	3.7107878197
+UniRef50_Q3K878	3.7105392141
+UniRef50_Q3K878|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7105392141
+UniRef50_A3PKX3: Kynureninase	3.7101564769
+UniRef50_A3PKX3: Kynureninase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.7101564769
+UniRef50_Q324N1	3.7098139769
+UniRef50_Q324N1|unclassified	3.7098139769
+UniRef50_X1GX36: Marine sediment metagenome DNA, contig: S03H2_S04035 (Fragment)	3.7089598147
+UniRef50_X1GX36: Marine sediment metagenome DNA, contig: S03H2_S04035 (Fragment)|unclassified	3.7089598147
+UniRef50_H0HMD4: Transcriptional regulator (Fragment)	3.7087690371
+UniRef50_H0HMD4: Transcriptional regulator (Fragment)|unclassified	3.7087690371
+UniRef50_A6LPC4: ATP-dependent helicase/nuclease subunit A	3.7086759692
+UniRef50_A6LPC4: ATP-dependent helicase/nuclease subunit A|g__Clostridium.s__Clostridium_beijerinckii	3.7086759692
+UniRef50_Y8HLD4	3.7083689548
+UniRef50_Y8HLD4|unclassified	3.7083689548
+UniRef50_U3T459	3.7082818294
+UniRef50_U3T459|g__Acinetobacter.s__Acinetobacter_baumannii	3.7082818294
+UniRef50_A4WWI0: Short-chain dehydrogenase/reductase SDR	3.7078563279
+UniRef50_A4WWI0: Short-chain dehydrogenase/reductase SDR|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.7078563279
+UniRef50_C7RB36: Acyl-CoA dehydrogenase domain protein	3.7074965997
+UniRef50_C7RB36: Acyl-CoA dehydrogenase domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.7074965997
+UniRef50_UPI000371A3CA: hypothetical protein, partial	3.7074743953
+UniRef50_UPI000371A3CA: hypothetical protein, partial|unclassified	3.7074743953
+UniRef50_A0A011MY44	3.7070804589
+UniRef50_A0A011MY44|unclassified	3.7070804589
+UniRef50_V9U3F4: Penicillin binding protein	3.7066929501
+UniRef50_V9U3F4: Penicillin binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7066929501
+UniRef50_A3K670: NADP-dependent isocitrate dehydrogenase protein	3.7061773663
+UniRef50_A3K670: NADP-dependent isocitrate dehydrogenase protein|unclassified	3.7061773663
+UniRef50_G8VCJ9: Thioredoxin	3.7054761288
+UniRef50_G8VCJ9: Thioredoxin|g__Propionibacterium.s__Propionibacterium_acnes	3.7054761288
+UniRef50_A6LTV5: Ion transport 2 domain protein	3.7053103218
+UniRef50_A6LTV5: Ion transport 2 domain protein|g__Clostridium.s__Clostridium_beijerinckii	3.7053103218
+UniRef50_A0A024HCK3	3.7052392828
+UniRef50_A0A024HCK3|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7052392828
+UniRef50_U0CZ53: Inner membrane protein yeeR	3.7041605844
+UniRef50_U0CZ53: Inner membrane protein yeeR|g__Escherichia.s__Escherichia_coli	3.7041605844
+UniRef50_B2TQB0: Amylovoran biosynthesis AmsK	3.7041546762
+UniRef50_B2TQB0: Amylovoran biosynthesis AmsK|g__Clostridium.s__Clostridium_beijerinckii	3.7041546762
+UniRef50_A3JZK5	3.7040703577
+UniRef50_A3JZK5|unclassified	3.7040703577
+UniRef50_A6LZG0: Transcriptional regulator, HxlR family	3.7037037037
+UniRef50_A6LZG0: Transcriptional regulator, HxlR family|g__Clostridium.s__Clostridium_beijerinckii	3.7037037037
+UniRef50_U5CWJ7	3.7037037037
+UniRef50_U5CWJ7|unclassified	3.7037037037
+UniRef50_A4IM35: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit	3.7035318153
+UniRef50_A4IM35: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit|g__Propionibacterium.s__Propionibacterium_acnes	3.6098555753
+UniRef50_A4IM35: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit|unclassified	0.0936762400
+UniRef50_A3X4W7	3.7034117787
+UniRef50_A3X4W7|unclassified	3.7034117787
+UniRef50_B7V8Y5: Transcriptional regulator MtlR	3.7024012915
+UniRef50_B7V8Y5: Transcriptional regulator MtlR|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7024012915
+UniRef50_Q9I3S1: Biofilm dispersion protein BdlA	3.7023732787
+UniRef50_Q9I3S1: Biofilm dispersion protein BdlA|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7023732787
+UniRef50_A0A031EI66	3.7023564884
+UniRef50_A0A031EI66|unclassified	3.7023564884
+UniRef50_F4M154: Fimbrial-like protein YraK	3.7022264823
+UniRef50_F4M154: Fimbrial-like protein YraK|g__Escherichia.s__Escherichia_coli	3.7022264823
+UniRef50_C9XUA3	3.7018634595
+UniRef50_C9XUA3|unclassified	3.7018634595
+UniRef50_UPI000467A336: glutamate synthase, partial	3.7017023350
+UniRef50_UPI000467A336: glutamate synthase, partial|g__Escherichia.s__Escherichia_coli	3.6881133298
+UniRef50_UPI000467A336: glutamate synthase, partial|unclassified	0.0135890052
+UniRef50_F6FZF8	3.7015854648
+UniRef50_F6FZF8|unclassified	3.7015854648
+UniRef50_P37024: ATP-dependent RNA helicase HrpB	3.7014283560
+UniRef50_P37024: ATP-dependent RNA helicase HrpB|g__Escherichia.s__Escherichia_coli	3.7014283560
+UniRef50_A6M011: ABC transporter permease protein	3.7012923598
+UniRef50_A6M011: ABC transporter permease protein|g__Clostridium.s__Clostridium_beijerinckii	3.7012923598
+UniRef50_N1NMR4	3.7010652481
+UniRef50_N1NMR4|unclassified	3.7010652481
+UniRef50_R9ZJ59: 3-beta hydroxysteroid dehydrogenase	3.7002806873
+UniRef50_R9ZJ59: 3-beta hydroxysteroid dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.7002806873
+UniRef50_D6IRM9: Amine ABC transporter	3.6996359022
+UniRef50_D6IRM9: Amine ABC transporter|unclassified	3.6996359022
+UniRef50_Q9RYX3: GGDEF family protein	3.6984348603
+UniRef50_Q9RYX3: GGDEF family protein|g__Deinococcus.s__Deinococcus_radiodurans	3.6984348603
+UniRef50_P29823: Lactose transport system permease protein LacF	3.6974587768
+UniRef50_P29823: Lactose transport system permease protein LacF|g__Clostridium.s__Clostridium_beijerinckii	3.6974587768
+UniRef50_U5MWL6: Pyruvate kinase	3.6972433333
+UniRef50_U5MWL6: Pyruvate kinase|g__Clostridium.s__Clostridium_beijerinckii	3.6972433333
+UniRef50_K8AK15: Putative threonine efflux protein	3.6962680849
+UniRef50_K8AK15: Putative threonine efflux protein|unclassified	3.6962680849
+UniRef50_A6M0I4: Transcriptional regulatory protein	3.6959830587
+UniRef50_A6M0I4: Transcriptional regulatory protein|g__Clostridium.s__Clostridium_beijerinckii	3.6959830587
+UniRef50_S3NFN5: Short chain dehydrogenase/reductase (SDR) family oxidoreductase	3.6959311340
+UniRef50_S3NFN5: Short chain dehydrogenase/reductase (SDR) family oxidoreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6959311340
+UniRef50_F0YGA0: Expressed protein (Fragment)	3.6950288005
+UniRef50_F0YGA0: Expressed protein (Fragment)|unclassified	3.6950288005
+UniRef50_W0YW03: Putative Tfp pilus assembly protein FimV	3.6938572163
+UniRef50_W0YW03: Putative Tfp pilus assembly protein FimV|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6938572163
+UniRef50_A9DDG2: Sulfate transporter (Fragment)	3.6937863000
+UniRef50_A9DDG2: Sulfate transporter (Fragment)|unclassified	3.6937863000
+UniRef50_A6LX98: Glycoside hydrolase, family 18	3.6935198886
+UniRef50_A6LX98: Glycoside hydrolase, family 18|g__Clostridium.s__Clostridium_beijerinckii	3.6935198886
+UniRef50_U3U3S9: Binding-protein-dependent transporter inner membrane component	3.6925267869
+UniRef50_U3U3S9: Binding-protein-dependent transporter inner membrane component|g__Escherichia.s__Escherichia_coli	3.6925267869
+UniRef50_UPI00037CC96D: hypothetical protein	3.6922990563
+UniRef50_UPI00037CC96D: hypothetical protein|unclassified	3.6922990563
+UniRef50_B8FYL8: Two component transcriptional regulator, winged helix family	3.6916490834
+UniRef50_B8FYL8: Two component transcriptional regulator, winged helix family|g__Clostridium.s__Clostridium_beijerinckii	3.6916490834
+UniRef50_B0K2T9: Tryptophan synthase beta chain	3.6911411173
+UniRef50_B0K2T9: Tryptophan synthase beta chain|g__Clostridium.s__Clostridium_beijerinckii	3.2482224924
+UniRef50_B0K2T9: Tryptophan synthase beta chain|unclassified	0.4429186249
+UniRef50_A6LZM1: Cell wall-associated hydrolase-like protein	3.6900369004
+UniRef50_A6LZM1: Cell wall-associated hydrolase-like protein|g__Clostridium.s__Clostridium_beijerinckii	3.6900369004
+UniRef50_B7NGN6	3.6900369004
+UniRef50_B7NGN6|g__Escherichia.s__Escherichia_coli	3.6900369004
+UniRef50_G7M6C4: Cof-like hydrolase	3.6900369004
+UniRef50_G7M6C4: Cof-like hydrolase|g__Clostridium.s__Clostridium_beijerinckii	3.6900369004
+UniRef50_M5HP27	3.6900369004
+UniRef50_M5HP27|g__Escherichia.s__Escherichia_coli	3.6900369004
+UniRef50_V8NUT9	3.6887705290
+UniRef50_V8NUT9|unclassified	3.6887705290
+UniRef50_W5XIY9	3.6885501313
+UniRef50_W5XIY9|unclassified	3.6885501313
+UniRef50_I6S3Y4	3.6882919417
+UniRef50_I6S3Y4|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6882919417
+UniRef50_Q01464: Septum site-determining protein MinD	3.6882311029
+UniRef50_Q01464: Septum site-determining protein MinD|g__Deinococcus.s__Deinococcus_radiodurans	3.6882311029
+UniRef50_M4Z4L3	3.6881999583
+UniRef50_M4Z4L3|unclassified	3.6881999583
+UniRef50_S5VEZ7: Alpha-galactosidase	3.6865587088
+UniRef50_S5VEZ7: Alpha-galactosidase|g__Clostridium.s__Clostridium_beijerinckii	3.6865587088
+UniRef50_G1XXP0: Transposase	3.6865551889
+UniRef50_G1XXP0: Transposase|unclassified	3.6865551889
+UniRef50_I7BXC4: tRNA 5-methylaminomethyl-2-thiouridine	3.6855036855
+UniRef50_I7BXC4: tRNA 5-methylaminomethyl-2-thiouridine|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6855036855
+UniRef50_A6UZE9	3.6848181131
+UniRef50_A6UZE9|unclassified	3.6848181131
+UniRef50_G7MBX9: Xylose isomerase domain-containing protein TIM barrel	3.6845958808
+UniRef50_G7MBX9: Xylose isomerase domain-containing protein TIM barrel|g__Clostridium.s__Clostridium_beijerinckii	3.6845958808
+UniRef50_V9XXU2	3.6830768509
+UniRef50_V9XXU2|unclassified	3.6830768509
+UniRef50_D7GFC8: Ppx/GppA phosphatase family	3.6826296938
+UniRef50_D7GFC8: Ppx/GppA phosphatase family|g__Propionibacterium.s__Propionibacterium_acnes	3.6826296938
+UniRef50_T2E942: Helix-turn-helix domain protein	3.6811402627
+UniRef50_T2E942: Helix-turn-helix domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6811402627
+UniRef50_I3UPT4: AMP-dependent synthetase and ligase	3.6796231715
+UniRef50_I3UPT4: AMP-dependent synthetase and ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3198732338
+UniRef50_I3UPT4: AMP-dependent synthetase and ligase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3597499378
+UniRef50_E3GP22: Metal-dependent hydrolases of the beta-lactamase superfamily III	3.6795626577
+UniRef50_E3GP22: Metal-dependent hydrolases of the beta-lactamase superfamily III|g__Clostridium.s__Clostridium_beijerinckii	3.6795626577
+UniRef50_S3NQR8: C4 dicarboxylate transport two-component sensor histidine kinase	3.6782746195
+UniRef50_S3NQR8: C4 dicarboxylate transport two-component sensor histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6782746195
+UniRef50_C1CWV4	3.6779056464
+UniRef50_C1CWV4|g__Deinococcus.s__Deinococcus_radiodurans	3.6779056464
+UniRef50_E0TN16	3.6776822265
+UniRef50_E0TN16|unclassified	3.6776822265
+UniRef50_V1IJP0: Anaerobic C4-dicarboxylate transporter	3.6769192952
+UniRef50_V1IJP0: Anaerobic C4-dicarboxylate transporter|g__Escherichia.s__Escherichia_coli	3.6769192952
+UniRef50_A1KR53: Truncated pilin	3.6764705882
+UniRef50_A1KR53: Truncated pilin|g__Neisseria.s__Neisseria_meningitidis	3.6764705882
+UniRef50_B2THC6: GCN5-related N-acetyltransferase	3.6764705882
+UniRef50_B2THC6: GCN5-related N-acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	3.6764705882
+UniRef50_B7UXK4	3.6764705882
+UniRef50_B7UXK4|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6764705882
+UniRef50_B9KNS8: Nuclease	3.6764705882
+UniRef50_B9KNS8: Nuclease|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.6764705882
+UniRef50_E3GYK6	3.6764705882
+UniRef50_E3GYK6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.6764705882
+UniRef50_K9Z9U6: Plasmid maintenance system killer	3.6764705882
+UniRef50_K9Z9U6: Plasmid maintenance system killer|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6764705882
+UniRef50_Q58947	3.6764705882
+UniRef50_Q58947|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.6764705882
+UniRef50_Q6AB62: Thymidylate kinase	3.6764705882
+UniRef50_Q6AB62: Thymidylate kinase|g__Propionibacterium.s__Propionibacterium_acnes	3.6764705882
+UniRef50_UPI00041A234E: hypothetical protein	3.6764705882
+UniRef50_UPI00041A234E: hypothetical protein|unclassified	3.6764705882
+UniRef50_W4TLW8: ABC-type multidrug transport system	3.6764705882
+UniRef50_W4TLW8: ABC-type multidrug transport system|unclassified	3.6764705882
+UniRef50_R5T8M0: Phosphotransferase system mannose/fructose/N-acetylgalactosamine-specific component IIC	3.6764021519
+UniRef50_R5T8M0: Phosphotransferase system mannose/fructose/N-acetylgalactosamine-specific component IIC|g__Clostridium.s__Clostridium_beijerinckii	3.6764021519
+UniRef50_G0DVD7: CBS domain protein	3.6762912744
+UniRef50_G0DVD7: CBS domain protein|g__Propionibacterium.s__Propionibacterium_acnes	3.6762912744
+UniRef50_UPI0003B3E98C: hypothetical protein	3.6755174448
+UniRef50_UPI0003B3E98C: hypothetical protein|unclassified	3.6755174448
+UniRef50_UPI000471EAE6: hypothetical protein	3.6751417646
+UniRef50_UPI000471EAE6: hypothetical protein|unclassified	3.6751417646
+UniRef50_V7EGL6	3.6740078910
+UniRef50_V7EGL6|unclassified	3.6740078910
+UniRef50_B7H056: Outer membrane protein oprM	3.6724777689
+UniRef50_B7H056: Outer membrane protein oprM|g__Acinetobacter.s__Acinetobacter_baumannii	3.6724777689
+UniRef50_A3PNF0: Heparinase II/III family protein	3.6715894955
+UniRef50_A3PNF0: Heparinase II/III family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.6715894955
+UniRef50_UPI00046FCD40: rubredoxin	3.6715016262
+UniRef50_UPI00046FCD40: rubredoxin|unclassified	3.6715016262
+UniRef50_J9YSG0: Phage infection protein	3.6708795484
+UniRef50_J9YSG0: Phage infection protein|g__Streptococcus.s__Streptococcus_agalactiae	3.6708795484
+UniRef50_B1XSD3: ATP synthase gamma chain	3.6705262609
+UniRef50_B1XSD3: ATP synthase gamma chain|g__Acinetobacter.s__Acinetobacter_baumannii	3.6705262609
+UniRef50_E2ZZ37	3.6703192399
+UniRef50_E2ZZ37|unclassified	3.6703192399
+UniRef50_H6RWI5: Metalloendopeptidase-like membrane protein (Modular protein)	3.6698160238
+UniRef50_H6RWI5: Metalloendopeptidase-like membrane protein (Modular protein)|unclassified	3.6698160238
+UniRef50_P0A5M3: Transcription termination/antitermination protein NusA	3.6683908662
+UniRef50_P0A5M3: Transcription termination/antitermination protein NusA|g__Propionibacterium.s__Propionibacterium_acnes	3.6683908662
+UniRef50_C0MDY5: Translation initiation factor IF-2	3.6682662831
+UniRef50_C0MDY5: Translation initiation factor IF-2|g__Streptococcus.s__Streptococcus_agalactiae	3.6682662831
+UniRef50_F5ZKP1: Membrane protein	3.6680182590
+UniRef50_F5ZKP1: Membrane protein|g__Streptococcus.s__Streptococcus_agalactiae	3.6680182590
+UniRef50_A6LSZ0	3.6674734436
+UniRef50_A6LSZ0|g__Clostridium.s__Clostridium_beijerinckii	3.6674734436
+UniRef50_Q8DX87	3.6664318540
+UniRef50_Q8DX87|g__Streptococcus.s__Streptococcus_agalactiae	3.6664318540
+UniRef50_V6UAJ9	3.6661489400
+UniRef50_V6UAJ9|unclassified	3.6661489400
+UniRef50_Q1IZH8: tRNA N6-adenosine threonylcarbamoyltransferase	3.6649939564
+UniRef50_Q1IZH8: tRNA N6-adenosine threonylcarbamoyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	3.6649939564
+UniRef50_UPI00037AC0F7: hypothetical protein	3.6647014003
+UniRef50_UPI00037AC0F7: hypothetical protein|unclassified	3.6647014003
+UniRef50_M4XCK4	3.6646311232
+UniRef50_M4XCK4|unclassified	3.6646311232
+UniRef50_P50361	3.6645496101
+UniRef50_P50361|unclassified	3.6645496101
+UniRef50_UPI0003330970	3.6644190284
+UniRef50_UPI0003330970|unclassified	3.6644190284
+UniRef50_UPI000374E1C2: decarboxylase, partial	3.6643770373
+UniRef50_UPI000374E1C2: decarboxylase, partial|unclassified	3.6643770373
+UniRef50_A9YX42: Putative IS element protein (Fragment)	3.6642641428
+UniRef50_A9YX42: Putative IS element protein (Fragment)|unclassified	3.6642641428
+UniRef50_A1B8K9: Integration host factor subunit beta	3.6630036630
+UniRef50_A1B8K9: Integration host factor subunit beta|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.6630036630
+UniRef50_A5UMY3: DNA-directed RNA polymerase subunit L	3.6630036630
+UniRef50_A5UMY3: DNA-directed RNA polymerase subunit L|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.6630036630
+UniRef50_M9RTF7: Methionine biosynthesis protein	3.6630036630
+UniRef50_M9RTF7: Methionine biosynthesis protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6630036630
+UniRef50_Q8DTR0	3.6630036630
+UniRef50_Q8DTR0|g__Streptococcus.s__Streptococcus_mutans	3.6630036630
+UniRef50_Q8DTR8	3.6630036630
+UniRef50_Q8DTR8|g__Streptococcus.s__Streptococcus_mutans	3.6630036630
+UniRef50_UPI00016B0849: hypothetical protein	3.6630036630
+UniRef50_UPI00016B0849: hypothetical protein|unclassified	3.6630036630
+UniRef50_UPI0003C75BDD: hypothetical protein	3.6630036630
+UniRef50_UPI0003C75BDD: hypothetical protein|unclassified	3.6630036630
+UniRef50_H1C5E9	3.6610944498
+UniRef50_H1C5E9|unclassified	3.6610944498
+UniRef50_Q4K681: Spermidine/putrescine import ATP-binding protein PotA	3.6609571775
+UniRef50_Q4K681: Spermidine/putrescine import ATP-binding protein PotA|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8575362894
+UniRef50_Q4K681: Spermidine/putrescine import ATP-binding protein PotA|unclassified	0.8034208881
+UniRef50_U7DPJ1: LysR family transcriptional regulator	3.6600288669
+UniRef50_U7DPJ1: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6600288669
+UniRef50_Q9RYB4: GTP cyclohydrolase 1	3.6592815657
+UniRef50_Q9RYB4: GTP cyclohydrolase 1|g__Deinococcus.s__Deinococcus_radiodurans	3.2396331738
+UniRef50_Q9RYB4: GTP cyclohydrolase 1|unclassified	0.4196483919
+UniRef50_B7V604	3.6586914336
+UniRef50_B7V604|unclassified	3.6586914336
+UniRef50_Q2FD92: RND family drug transporter	3.6584412702
+UniRef50_Q2FD92: RND family drug transporter|g__Acinetobacter.s__Acinetobacter_baumannii	3.6584412702
+UniRef50_S9S8V4	3.6580113009
+UniRef50_S9S8V4|unclassified	3.6580113009
+UniRef50_R6MIG6	3.6569954361
+UniRef50_R6MIG6|g__Clostridium.s__Clostridium_beijerinckii	3.6569954361
+UniRef50_S6E1Z6: Red-like rubisco-1,5-bisphosphate carboxylase/oxygenease form I (Fragment)	3.6568514643
+UniRef50_S6E1Z6: Red-like rubisco-1,5-bisphosphate carboxylase/oxygenease form I (Fragment)|unclassified	3.6568514643
+UniRef50_I7E9D6: Disulfide interchange protein tlpA-like protein	3.6565026588
+UniRef50_I7E9D6: Disulfide interchange protein tlpA-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.6565026588
+UniRef50_B9KQ85: Transglutaminase domain protein	3.6552212904
+UniRef50_B9KQ85: Transglutaminase domain protein|unclassified	2.0077748324
+UniRef50_B9KQ85: Transglutaminase domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6474464580
+UniRef50_Q3J7X3: Coenzyme PQQ synthesis protein B	3.6550045027
+UniRef50_Q3J7X3: Coenzyme PQQ synthesis protein B|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5076755876
+UniRef50_Q3J7X3: Coenzyme PQQ synthesis protein B|unclassified	0.1473289151
+UniRef50_G2J0I7	3.6543101428
+UniRef50_G2J0I7|unclassified	3.6543101428
+UniRef50_Q03S48: Bifunctional protein PyrR	3.6540773943
+UniRef50_Q03S48: Bifunctional protein PyrR|g__Streptococcus.s__Streptococcus_agalactiae	3.2051282051
+UniRef50_Q03S48: Bifunctional protein PyrR|unclassified	0.4489491891
+UniRef50_C6SJ34: Prephenate dehydrogenase	3.6537536538
+UniRef50_C6SJ34: Prephenate dehydrogenase|g__Neisseria.s__Neisseria_meningitidis	3.6537536538
+UniRef50_A6VC44	3.6529710831
+UniRef50_A6VC44|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6529710831
+UniRef50_T3JQ42	3.6519790662
+UniRef50_T3JQ42|unclassified	3.6519790662
+UniRef50_K2BF76	3.6515855492
+UniRef50_K2BF76|unclassified	3.6515855492
+UniRef50_D8JEW7	3.6515698273
+UniRef50_D8JEW7|g__Acinetobacter.s__Acinetobacter_baumannii	3.6515698273
+UniRef50_U3QYE8: Membrane protein	3.6514625734
+UniRef50_U3QYE8: Membrane protein|unclassified	3.6514625734
+UniRef50_A6M2V0: Methyl-accepting chemotaxis sensory transducer	3.6510303576
+UniRef50_A6M2V0: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	3.6510303576
+UniRef50_U3SSC5: Aspartate-semialdehyde dehydrogenase leader peptide	3.6505032740
+UniRef50_U3SSC5: Aspartate-semialdehyde dehydrogenase leader peptide|unclassified	3.6505032740
+UniRef50_A0A038FSE8	3.6502848309
+UniRef50_A0A038FSE8|unclassified	3.6502848309
+UniRef50_M7ECE4: NADH dehydrogenase subunit B	3.6500726018
+UniRef50_M7ECE4: NADH dehydrogenase subunit B|unclassified	3.6500726018
+UniRef50_A0A038GMN1	3.6496350365
+UniRef50_A0A038GMN1|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6496350365
+UniRef50_A5UL02	3.6496350365
+UniRef50_A5UL02|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.6496350365
+UniRef50_F0N6L8	3.6496350365
+UniRef50_F0N6L8|g__Neisseria.s__Neisseria_meningitidis	3.6496350365
+UniRef50_H5GQ93: Phage O protein	3.6496350365
+UniRef50_H5GQ93: Phage O protein|g__Escherichia.s__Escherichia_coli	3.6496350365
+UniRef50_K7RS07: Iojap-like protein	3.6496350365
+UniRef50_K7RS07: Iojap-like protein|g__Propionibacterium.s__Propionibacterium_acnes	3.6496350365
+UniRef50_Q38KY9: Putative seawater-induced protein 41-2 (Fragment)	3.6496350365
+UniRef50_Q38KY9: Putative seawater-induced protein 41-2 (Fragment)|unclassified	3.6496350365
+UniRef50_Q46PJ6	3.6496350365
+UniRef50_Q46PJ6|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6496350365
+UniRef50_UPI0003EE6AED: hypothetical protein	3.6496350365
+UniRef50_UPI0003EE6AED: hypothetical protein|unclassified	3.6496350365
+UniRef50_UPI0004719E41: hypothetical protein	3.6493429696
+UniRef50_UPI0004719E41: hypothetical protein|unclassified	3.6493429696
+UniRef50_A5WC68: Short-chain dehydrogenase/reductase SDR	3.6488351905
+UniRef50_A5WC68: Short-chain dehydrogenase/reductase SDR|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6488351905
+UniRef50_F0XXV7	3.6483495498
+UniRef50_F0XXV7|unclassified	3.6483495498
+UniRef50_B3QS41: Adenylate kinase	3.6481791347
+UniRef50_B3QS41: Adenylate kinase|g__Clostridium.s__Clostridium_beijerinckii	3.5587188612
+UniRef50_B3QS41: Adenylate kinase|unclassified	0.0894602735
+UniRef50_B0V6T3	3.6480204949
+UniRef50_B0V6T3|g__Acinetobacter.s__Acinetobacter_baumannii	3.6480204949
+UniRef50_M1MGY4: Drug resistance transporter, EmrB/QacA subfamily	3.6470588375
+UniRef50_M1MGY4: Drug resistance transporter, EmrB/QacA subfamily|g__Clostridium.s__Clostridium_beijerinckii	3.6470588375
+UniRef50_D7I575: Permease of the major facilitator superfamily	3.6466336753
+UniRef50_D7I575: Permease of the major facilitator superfamily|unclassified	3.6466336753
+UniRef50_M5KBZ8	3.6452298734
+UniRef50_M5KBZ8|unclassified	3.6452298734
+UniRef50_G8VGX4	3.6444844246
+UniRef50_G8VGX4|g__Propionibacterium.s__Propionibacterium_acnes	3.6444844246
+UniRef50_A9WMF4: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	3.6443863639
+UniRef50_A9WMF4: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|g__Propionibacterium.s__Propionibacterium_acnes	3.6443863639
+UniRef50_K4PRA9	3.6413086953
+UniRef50_K4PRA9|g__Streptococcus.s__Streptococcus_agalactiae	3.6413086953
+UniRef50_F5LZS7: Glycosyl transferase, group 1	3.6404490277
+UniRef50_F5LZS7: Glycosyl transferase, group 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.6404490277
+UniRef50_D8IV87: 1,4-alpha-glucan branching enzyme GlgB	3.6381943964
+UniRef50_D8IV87: 1,4-alpha-glucan branching enzyme GlgB|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6381943964
+UniRef50_M0NFH7	3.6377892302
+UniRef50_M0NFH7|unclassified	3.6377892302
+UniRef50_R5XTT8: AMP-binding enzyme	3.6371190479
+UniRef50_R5XTT8: AMP-binding enzyme|g__Clostridium.s__Clostridium_beijerinckii	3.6371190479
+UniRef50_G7M175: Regulatory protein MerR	3.6368867630
+UniRef50_G7M175: Regulatory protein MerR|g__Clostridium.s__Clostridium_beijerinckii	3.6368867630
+UniRef50_N3L5H8	3.6367600065
+UniRef50_N3L5H8|unclassified	3.6367600065
+UniRef50_E8Q9Z9	3.6363636364
+UniRef50_E8Q9Z9|g__Streptococcus.s__Streptococcus_agalactiae	3.6363636364
+UniRef50_H0Q501: Sarcosine oxidase gamma subunit family protein	3.6363636364
+UniRef50_H0Q501: Sarcosine oxidase gamma subunit family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6363636364
+UniRef50_P15033: Protein RacC	3.6363636364
+UniRef50_P15033: Protein RacC|g__Escherichia.s__Escherichia_coli	3.6363636364
+UniRef50_Q02KP6	3.6363636364
+UniRef50_Q02KP6|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6363636364
+UniRef50_Q8DZR9	3.6363636364
+UniRef50_Q8DZR9|g__Streptococcus.s__Streptococcus_agalactiae	3.6363636364
+UniRef50_C9D9L2: Universal stress protein	3.6361283644
+UniRef50_C9D9L2: Universal stress protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.6361283644
+UniRef50_A6W2Y6: PfkB domain protein	3.6361146077
+UniRef50_A6W2Y6: PfkB domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.6361146077
+UniRef50_Q9CKF3: UPF0145 protein PM1668	3.6352504007
+UniRef50_Q9CKF3: UPF0145 protein PM1668|unclassified	3.6352504007
+UniRef50_A0REB6: 3D-(3,5/4)-trihydroxycyclohexane-1,2-dione hydrolase	3.6322716090
+UniRef50_A0REB6: 3D-(3,5/4)-trihydroxycyclohexane-1,2-dione hydrolase|g__Clostridium.s__Clostridium_beijerinckii	3.6322716090
+UniRef50_Q83SY2	3.6318781262
+UniRef50_Q83SY2|unclassified	3.6318781262
+UniRef50_Q8E5U9: ATP synthase gamma chain	3.6314220138
+UniRef50_Q8E5U9: ATP synthase gamma chain|g__Streptococcus.s__Streptococcus_agalactiae	3.6314220138
+UniRef50_D8GPC7: Regulatory protein	3.6314189730
+UniRef50_D8GPC7: Regulatory protein|g__Clostridium.s__Clostridium_beijerinckii	3.6314189730
+UniRef50_F5XE95	3.6310843010
+UniRef50_F5XE95|g__Propionibacterium.s__Propionibacterium_acnes	3.6310843010
+UniRef50_P22609: Type 4 fimbrial assembly protein PilC	3.6310653491
+UniRef50_P22609: Type 4 fimbrial assembly protein PilC|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6310653491
+UniRef50_E3D3B9	3.6306751566
+UniRef50_E3D3B9|g__Neisseria.s__Neisseria_meningitidis	3.6306751566
+UniRef50_M5AMX6: Probable transposase	3.6294513911
+UniRef50_M5AMX6: Probable transposase|unclassified	3.6294513911
+UniRef50_W8KGC4: Flagellar biosynthesis protein FlhB	3.6293601311
+UniRef50_W8KGC4: Flagellar biosynthesis protein FlhB|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6293601311
+UniRef50_D7XME5	3.6287751311
+UniRef50_D7XME5|unclassified	3.6287751311
+UniRef50_Q53599: Protein map	3.6280366064
+UniRef50_Q53599: Protein map|g__Staphylococcus.s__Staphylococcus_aureus	3.6280366064
+UniRef50_C7J794: Os09g0130901 protein (Fragment)	3.6275746031
+UniRef50_C7J794: Os09g0130901 protein (Fragment)|unclassified	3.6275746031
+UniRef50_UPI0003626FD2: DNA-binding protein	3.6255306701
+UniRef50_UPI0003626FD2: DNA-binding protein|unclassified	3.6255306701
+UniRef50_R7RGB1	3.6254115620
+UniRef50_R7RGB1|unclassified	3.6254115620
+UniRef50_C1FKU5: Dipeptidase family protein	3.6249887692
+UniRef50_C1FKU5: Dipeptidase family protein|g__Clostridium.s__Clostridium_beijerinckii	3.6249887692
+UniRef50_B9ECE2	3.6247212401
+UniRef50_B9ECE2|unclassified	3.6247212401
+UniRef50_D5APE1: Polyhydroxyalkanoate synthesis repressor PhaR	3.6244582592
+UniRef50_D5APE1: Polyhydroxyalkanoate synthesis repressor PhaR|unclassified	3.6244582592
+UniRef50_F0Y270	3.6241749283
+UniRef50_F0Y270|unclassified	3.6241749283
+UniRef50_Q5M690: 33 kDa chaperonin	3.6241261489
+UniRef50_Q5M690: 33 kDa chaperonin|g__Streptococcus.s__Streptococcus_agalactiae	3.6241261489
+UniRef50_P69955: Low calcium response locus protein D	3.6235549964
+UniRef50_P69955: Low calcium response locus protein D|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6235549964
+UniRef50_Q8NZK5: Immunogenic secreted protein homologue	3.6232921563
+UniRef50_Q8NZK5: Immunogenic secreted protein homologue|g__Streptococcus.s__Streptococcus_agalactiae	3.6232921563
+UniRef50_A3PFT9	3.6231884058
+UniRef50_A3PFT9|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.6231884058
+UniRef50_A6LZA8: UBA/Ts-N domain protein	3.6231884058
+UniRef50_A6LZA8: UBA/Ts-N domain protein|g__Clostridium.s__Clostridium_beijerinckii	3.6231884058
+UniRef50_C3TCH2	3.6231884058
+UniRef50_C3TCH2|g__Escherichia.s__Escherichia_coli	3.6231884058
+UniRef50_E3H779: Transcriptional regulator, XRE family	3.6231884058
+UniRef50_E3H779: Transcriptional regulator, XRE family|g__Clostridium.s__Clostridium_beijerinckii	3.6231884058
+UniRef50_G0DVW8: GntR family transcriptional regulator	3.6231884058
+UniRef50_G0DVW8: GntR family transcriptional regulator|g__Propionibacterium.s__Propionibacterium_acnes	3.6231884058
+UniRef50_G8VAK1: ABC transporter	3.6231884058
+UniRef50_G8VAK1: ABC transporter|g__Propionibacterium.s__Propionibacterium_acnes	3.6231884058
+UniRef50_Q3J1F8	3.6231884058
+UniRef50_Q3J1F8|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.6231884058
+UniRef50_F8X9S0: Ribonucleoside diphosphage reductase 1, beta subunit, B2	3.6226142346
+UniRef50_F8X9S0: Ribonucleoside diphosphage reductase 1, beta subunit, B2|unclassified	3.6226142346
+UniRef50_D9W5N7: Modular polyketide synthase (Fragment)	3.6225623846
+UniRef50_D9W5N7: Modular polyketide synthase (Fragment)|unclassified	3.6225623846
+UniRef50_P38448: KHG/KDPG aldolase	3.6222768413
+UniRef50_P38448: KHG/KDPG aldolase|g__Neisseria.s__Neisseria_meningitidis	3.6222768413
+UniRef50_C7RP31	3.6217600639
+UniRef50_C7RP31|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6217600639
+UniRef50_Q02S26	3.6215642945
+UniRef50_Q02S26|unclassified	3.6215642945
+UniRef50_G3NU19	3.6212594589
+UniRef50_G3NU19|unclassified	3.6212594589
+UniRef50_M9VB10: LysR family transcriptional regulator	3.6197929247
+UniRef50_M9VB10: LysR family transcriptional regulator|g__Propionibacterium.s__Propionibacterium_acnes	3.6197929247
+UniRef50_O30723: Phosphoribosyl-ATP pyrophosphatase	3.6197860757
+UniRef50_O30723: Phosphoribosyl-ATP pyrophosphatase|unclassified	3.6197860757
+UniRef50_W7IM88: Basic proline-rich protein	3.6189621102
+UniRef50_W7IM88: Basic proline-rich protein|unclassified	3.6189621102
+UniRef50_A8A5Z1	3.6186363041
+UniRef50_A8A5Z1|g__Escherichia.s__Escherichia_coli	3.6186363041
+UniRef50_Q9RTR7: Glucose-1-phosphate adenylyltransferase	3.6175441243
+UniRef50_Q9RTR7: Glucose-1-phosphate adenylyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	3.5904644474
+UniRef50_Q9RTR7: Glucose-1-phosphate adenylyltransferase|unclassified	0.0270796770
+UniRef50_Q9XDP4: Nitrogenase subunit D (Fragment)	3.6174297000
+UniRef50_Q9XDP4: Nitrogenase subunit D (Fragment)|unclassified	3.6174297000
+UniRef50_W0AYX6	3.6170512670
+UniRef50_W0AYX6|unclassified	3.6170512670
+UniRef50_C4J1H3	3.6167218773
+UniRef50_C4J1H3|unclassified	3.6167218773
+UniRef50_M4VE07	3.6163344940
+UniRef50_M4VE07|unclassified	3.6163344940
+UniRef50_Q9I1Q5: 4-hydroxythreonine-4-phosphate dehydrogenase 2	3.6159503950
+UniRef50_Q9I1Q5: 4-hydroxythreonine-4-phosphate dehydrogenase 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6159503950
+UniRef50_O06456: N5-carboxyaminoimidazole ribonucleotide mutase	3.6156080551
+UniRef50_O06456: N5-carboxyaminoimidazole ribonucleotide mutase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8011204482
+UniRef50_O06456: N5-carboxyaminoimidazole ribonucleotide mutase|unclassified	0.8144876069
+UniRef50_B6ISK5: Acyl-CoA dehydrogenase, putative	3.6144182253
+UniRef50_B6ISK5: Acyl-CoA dehydrogenase, putative|g__Deinococcus.s__Deinococcus_radiodurans	3.6144182253
+UniRef50_Q9RX31	3.6141360072
+UniRef50_Q9RX31|g__Deinococcus.s__Deinococcus_radiodurans	3.6141360072
+UniRef50_Z1H5Y2	3.6137399679
+UniRef50_Z1H5Y2|g__Staphylococcus.s__Staphylococcus_epidermidis	3.1347962382
+UniRef50_Z1H5Y2|unclassified	0.4789437296
+UniRef50_A6LPV1: TPR repeat-containing protein	3.6134431837
+UniRef50_A6LPV1: TPR repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	3.6134431837
+UniRef50_A4WWH1: Glycosyl transferase, group 1	3.6133829387
+UniRef50_A4WWH1: Glycosyl transferase, group 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.6133829387
+UniRef50_L3UJQ1	3.6119745318
+UniRef50_L3UJQ1|g__Escherichia.s__Escherichia_coli	2.7328880270
+UniRef50_L3UJQ1|unclassified	0.8790865048
+UniRef50_U5NRI4	3.6117250578
+UniRef50_U5NRI4|unclassified	3.6117250578
+UniRef50_UPI0004633517: MULTISPECIES: hypothetical protein	3.6108487013
+UniRef50_UPI0004633517: MULTISPECIES: hypothetical protein|unclassified	3.6108487013
+UniRef50_G2LWG0	3.6105861631
+UniRef50_G2LWG0|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6105861631
+UniRef50_UPI000377074D: tail fiber protein, partial	3.6101812954
+UniRef50_UPI000377074D: tail fiber protein, partial|unclassified	3.6101812954
+UniRef50_A0A023RZ47: DNA-binding protein	3.6101083032
+UniRef50_A0A023RZ47: DNA-binding protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.6101083032
+UniRef50_A3M519: EsvK1	3.6101083032
+UniRef50_A3M519: EsvK1|g__Acinetobacter.s__Acinetobacter_baumannii	3.6101083032
+UniRef50_D3MK43: TIM-barrel signal transduction protein	3.6101083032
+UniRef50_D3MK43: TIM-barrel signal transduction protein|g__Propionibacterium.s__Propionibacterium_acnes	3.6101083032
+UniRef50_H9USN8	3.6101083032
+UniRef50_H9USN8|g__Escherichia.s__Escherichia_coli	3.6101083032
+UniRef50_Q6FDS2: Putative arginyl-tRNA--protein transferase	3.6101083032
+UniRef50_Q6FDS2: Putative arginyl-tRNA--protein transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6101083032
+UniRef50_W2SU39	3.6098064430
+UniRef50_W2SU39|unclassified	3.6098064430
+UniRef50_UPI00046F8D9E: hypothetical protein, partial	3.6097507108
+UniRef50_UPI00046F8D9E: hypothetical protein, partial|unclassified	3.6097507108
+UniRef50_UPI00031F6CF4: hypothetical protein	3.6095075907
+UniRef50_UPI00031F6CF4: hypothetical protein|unclassified	3.6095075907
+UniRef50_UPI00039CB03A: acyltransferase	3.6092967916
+UniRef50_UPI00039CB03A: acyltransferase|unclassified	3.6092967916
+UniRef50_Q45538: Protein CotJC	3.6084050784
+UniRef50_Q45538: Protein CotJC|g__Clostridium.s__Clostridium_beijerinckii	3.6084050784
+UniRef50_W1F681	3.6083076661
+UniRef50_W1F681|unclassified	3.6083076661
+UniRef50_UPI000417C86E: heme biosynthesis protein HemY	3.6074147955
+UniRef50_UPI000417C86E: heme biosynthesis protein HemY|unclassified	3.6074147955
+UniRef50_Q9RTN2: Putative phosphoenolpyruvate synthase regulatory protein	3.6072155883
+UniRef50_Q9RTN2: Putative phosphoenolpyruvate synthase regulatory protein|g__Deinococcus.s__Deinococcus_radiodurans	3.6072155883
+UniRef50_A3S801	3.6068264655
+UniRef50_A3S801|unclassified	3.6068264655
+UniRef50_V4QYY0: Transcriptional regulator	3.6062981045
+UniRef50_V4QYY0: Transcriptional regulator|unclassified	3.6062981045
+UniRef50_F0KJ61: Triacylglycerol lipase	3.6057983382
+UniRef50_F0KJ61: Triacylglycerol lipase|g__Acinetobacter.s__Acinetobacter_baumannii	3.6057983382
+UniRef50_Q3J2I9: Shikimate kinase	3.6052500644
+UniRef50_Q3J2I9: Shikimate kinase|unclassified	1.9330092617
+UniRef50_Q3J2I9: Shikimate kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6722408027
+UniRef50_UPI0004648F0C: mechanosensitive ion channel protein MscL	3.6044304049
+UniRef50_UPI0004648F0C: mechanosensitive ion channel protein MscL|unclassified	3.6044304049
+UniRef50_UPI0003D397E3: transposase and inactivated derivatives	3.6034675979
+UniRef50_UPI0003D397E3: transposase and inactivated derivatives|unclassified	3.6034675979
+UniRef50_M1MBM8: ATP-dependent DNA helicase, UvrD/REP family	3.6024269675
+UniRef50_M1MBM8: ATP-dependent DNA helicase, UvrD/REP family|g__Clostridium.s__Clostridium_beijerinckii	3.6024269675
+UniRef50_A6LXW2: FMN-binding domain protein	3.6023155305
+UniRef50_A6LXW2: FMN-binding domain protein|g__Clostridium.s__Clostridium_beijerinckii	3.6023155305
+UniRef50_E8SRI9	3.6020058708
+UniRef50_E8SRI9|g__Neisseria.s__Neisseria_meningitidis	3.6020058708
+UniRef50_B7VB38	3.6015561216
+UniRef50_B7VB38|unclassified	3.6015561216
+UniRef50_T7AJZ3: Nucleoside triphosphatase	3.6012032103
+UniRef50_T7AJZ3: Nucleoside triphosphatase|g__Escherichia.s__Escherichia_coli	3.6012032103
+UniRef50_Q9I1V0: Glycogen synthase	3.6004435380
+UniRef50_Q9I1V0: Glycogen synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.6004435380
+UniRef50_B2TIX9: FliB domain protein	3.6002395685
+UniRef50_B2TIX9: FliB domain protein|g__Clostridium.s__Clostridium_beijerinckii	3.6002395685
+UniRef50_A7FHL7: Anhydro-N-acetylmuramic acid kinase	3.5995697000
+UniRef50_A7FHL7: Anhydro-N-acetylmuramic acid kinase|g__Escherichia.s__Escherichia_coli	3.5995697000
+UniRef50_A0A017YAP9	3.5985407400
+UniRef50_A0A017YAP9|unclassified	3.5985407400
+UniRef50_A7A2K7	3.5982531186
+UniRef50_A7A2K7|unclassified	3.5982531186
+UniRef50_Q5GTU8: MFS transporter	3.5979358221
+UniRef50_Q5GTU8: MFS transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5979358221
+UniRef50_F1AX13: PP177	3.5975967544
+UniRef50_F1AX13: PP177|unclassified	3.5975967544
+UniRef50_A6LZF6: Transcriptional regulator, XRE family	3.5971223022
+UniRef50_A6LZF6: Transcriptional regulator, XRE family|g__Clostridium.s__Clostridium_beijerinckii	3.5971223022
+UniRef50_C3K4G3	3.5971223022
+UniRef50_C3K4G3|unclassified	3.5971223022
+UniRef50_J1DUQ4: Putative imidazole glycerol phosphate synthase, glutamine amidotransferase subunit	3.5971223022
+UniRef50_J1DUQ4: Putative imidazole glycerol phosphate synthase, glutamine amidotransferase subunit|g__Staphylococcus.s__Staphylococcus_epidermidis	3.5971223022
+UniRef50_P0ABC1: ATP synthase protein I	3.5971223022
+UniRef50_P0ABC1: ATP synthase protein I|g__Escherichia.s__Escherichia_coli	3.5971223022
+UniRef50_Q6A969: DNA repair protein RecO	3.5971223022
+UniRef50_Q6A969: DNA repair protein RecO|g__Propionibacterium.s__Propionibacterium_acnes	3.5971223022
+UniRef50_Q9RTU0: Potassium uptake protein KtrA	3.5971223022
+UniRef50_Q9RTU0: Potassium uptake protein KtrA|g__Deinococcus.s__Deinococcus_radiodurans	3.5971223022
+UniRef50_W8TG00: Type IV secretion protein Rhs	3.5971223022
+UniRef50_W8TG00: Type IV secretion protein Rhs|g__Escherichia.s__Escherichia_coli	3.5971223022
+UniRef50_E7AAE2: Peptidase M16 domain protein	3.5971170767
+UniRef50_E7AAE2: Peptidase M16 domain protein|g__Helicobacter.s__Helicobacter_pylori	3.5971170767
+UniRef50_Q03U06: Mannonate dehydratase	3.5969347277
+UniRef50_Q03U06: Mannonate dehydratase|g__Clostridium.s__Clostridium_beijerinckii	3.4888046454
+UniRef50_Q03U06: Mannonate dehydratase|unclassified	0.1081300823
+UniRef50_R8ZG28: Putative glucosyl transferase	3.5963941438
+UniRef50_R8ZG28: Putative glucosyl transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5963941438
+UniRef50_V9R2C2: Membrane protein	3.5955190619
+UniRef50_V9R2C2: Membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5955190619
+UniRef50_A6WVV0: AMP-dependent synthetase and ligase	3.5954446425
+UniRef50_A6WVV0: AMP-dependent synthetase and ligase|g__Acinetobacter.s__Acinetobacter_baumannii	3.5954446425
+UniRef50_Q9RZ42	3.5953937668
+UniRef50_Q9RZ42|g__Deinococcus.s__Deinococcus_radiodurans	3.5953937668
+UniRef50_U6EXA7: Primosome assembly protein PriA	3.5951697368
+UniRef50_U6EXA7: Primosome assembly protein PriA|g__Clostridium.s__Clostridium_beijerinckii	3.5951697368
+UniRef50_UPI00037AC352: hypothetical protein	3.5949892354
+UniRef50_UPI00037AC352: hypothetical protein|unclassified	3.5949892354
+UniRef50_UPI000362209B: hypothetical protein	3.5939164971
+UniRef50_UPI000362209B: hypothetical protein|unclassified	3.5939164971
+UniRef50_H6WNZ7	3.5937562219
+UniRef50_H6WNZ7|unclassified	3.5937562219
+UniRef50_I4ESD1	3.5932592726
+UniRef50_I4ESD1|unclassified	3.5932592726
+UniRef50_U6ADX9: Outer membrane component of tripartite multidrug resistance system	3.5931015289
+UniRef50_U6ADX9: Outer membrane component of tripartite multidrug resistance system|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5931015289
+UniRef50_Q67PL1	3.5928143713
+UniRef50_Q67PL1|unclassified	3.5928143713
+UniRef50_UPI00039DF310: hypothetical protein	3.5927734178
+UniRef50_UPI00039DF310: hypothetical protein|unclassified	3.5927734178
+UniRef50_E2ZXN4	3.5909979564
+UniRef50_E2ZXN4|unclassified	3.5909979564
+UniRef50_A6M2Q9: Helicase, putative	3.5909844145
+UniRef50_A6M2Q9: Helicase, putative|g__Clostridium.s__Clostridium_beijerinckii	3.5909844145
+UniRef50_V8FTX6: Hemerythrin	3.5906642729
+UniRef50_V8FTX6: Hemerythrin|g__Clostridium.s__Clostridium_beijerinckii	3.5906642729
+UniRef50_A5U0Z1: Succinyl-CoA ligase [ADP-forming] subunit beta	3.5905891177
+UniRef50_A5U0Z1: Succinyl-CoA ligase [ADP-forming] subunit beta|g__Propionibacterium.s__Propionibacterium_acnes	3.5905891177
+UniRef50_K5RU55	3.5896531782
+UniRef50_K5RU55|unclassified	3.5896531782
+UniRef50_E8XUV9: Lysozyme	3.5896156746
+UniRef50_E8XUV9: Lysozyme|g__Escherichia.s__Escherichia_coli	3.5896156746
+UniRef50_B1I7A4	3.5883937391
+UniRef50_B1I7A4|g__Streptococcus.s__Streptococcus_agalactiae	3.5883937391
+UniRef50_C3A9F0: Beta-glucosidase	3.5876513903
+UniRef50_C3A9F0: Beta-glucosidase|g__Clostridium.s__Clostridium_beijerinckii	3.5876513903
+UniRef50_D4JCQ5: NADPH-dependent glutamate synthase beta chain and related oxidoreductases	3.5874468318
+UniRef50_D4JCQ5: NADPH-dependent glutamate synthase beta chain and related oxidoreductases|g__Clostridium.s__Clostridium_beijerinckii	3.5874468318
+UniRef50_J9YSK0: Uracil permease	3.5871087696
+UniRef50_J9YSK0: Uracil permease|g__Streptococcus.s__Streptococcus_agalactiae	3.5871087696
+UniRef50_F1VLT5: Response regulator receiver domain protein	3.5868688741
+UniRef50_F1VLT5: Response regulator receiver domain protein|g__Propionibacterium.s__Propionibacterium_acnes	3.5868688741
+UniRef50_A3M2E6	3.5863985186
+UniRef50_A3M2E6|g__Acinetobacter.s__Acinetobacter_baumannii	3.5863985186
+UniRef50_UPI000367DB79: hypothetical protein	3.5862748095
+UniRef50_UPI000367DB79: hypothetical protein|unclassified	3.5862748095
+UniRef50_Q9RVP1: Extracellular solute binding protein, family 5	3.5861356049
+UniRef50_Q9RVP1: Extracellular solute binding protein, family 5|g__Deinococcus.s__Deinococcus_radiodurans	3.5861356049
+UniRef50_Q88K39: Glutaminase-asparaginase	3.5857326741
+UniRef50_Q88K39: Glutaminase-asparaginase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5857326741
+UniRef50_M2M915	3.5857287144
+UniRef50_M2M915|unclassified	3.5857287144
+UniRef50_Z2DM67	3.5853890113
+UniRef50_Z2DM67|unclassified	3.5853890113
+UniRef50_C5YML5	3.5845152076
+UniRef50_C5YML5|unclassified	3.5845152076
+UniRef50_B2UHG1: Carboxymuconolactone decarboxylase	3.5842293907
+UniRef50_B2UHG1: Carboxymuconolactone decarboxylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5842293907
+UniRef50_E6X1D4: Pyruvate/ketoisovalerate oxidoreductase, gamma subunit	3.5842293907
+UniRef50_E6X1D4: Pyruvate/ketoisovalerate oxidoreductase, gamma subunit|g__Helicobacter.s__Helicobacter_pylori	3.5842293907
+UniRef50_N5KJK9: Serine protease splF	3.5842293907
+UniRef50_N5KJK9: Serine protease splF|g__Staphylococcus.s__Staphylococcus_aureus	3.5842293907
+UniRef50_P23857: Thiosulfate sulfurtransferase PspE	3.5842293907
+UniRef50_P23857: Thiosulfate sulfurtransferase PspE|g__Escherichia.s__Escherichia_coli	3.5842293907
+UniRef50_Q3IYI4: Protein GrpE	3.5842293907
+UniRef50_Q3IYI4: Protein GrpE|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.5842293907
+UniRef50_Q9RXX4	3.5842293907
+UniRef50_Q9RXX4|unclassified	3.5842293907
+UniRef50_R7PV63: CRISPR-associated endoribonuclease Cas2	3.5842293907
+UniRef50_R7PV63: CRISPR-associated endoribonuclease Cas2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.5842293907
+UniRef50_V3PLC3	3.5842293907
+UniRef50_V3PLC3|unclassified	3.5842293907
+UniRef50_A0A038G353	3.5839620759
+UniRef50_A0A038G353|unclassified	3.5839620759
+UniRef50_UPI0004650B6E: MULTISPECIES: N-acetylmuramoyl-L-alanine amidase AmiC	3.5834633146
+UniRef50_UPI0004650B6E: MULTISPECIES: N-acetylmuramoyl-L-alanine amidase AmiC|unclassified	3.5834633146
+UniRef50_J7DEN9	3.5834359922
+UniRef50_J7DEN9|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5834359922
+UniRef50_UPI0003B6DC28: taurine--pyruvate aminotransferase, partial	3.5830804830
+UniRef50_UPI0003B6DC28: taurine--pyruvate aminotransferase, partial|unclassified	3.5830804830
+UniRef50_S5XWE5: Sarcosine oxidase	3.5830001567
+UniRef50_S5XWE5: Sarcosine oxidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.5830001567
+UniRef50_UPI0003730FD4: MULTISPECIES: hypothetical protein	3.5821037474
+UniRef50_UPI0003730FD4: MULTISPECIES: hypothetical protein|unclassified	3.5821037474
+UniRef50_F4T4M6	3.5818010225
+UniRef50_F4T4M6|g__Escherichia.s__Escherichia_coli	1.8018018018
+UniRef50_F4T4M6|unclassified	1.7799992207
+UniRef50_UPI000367BBBE: hypothetical protein	3.5812793433
+UniRef50_UPI000367BBBE: hypothetical protein|unclassified	3.5812793433
+UniRef50_Q9JWJ7: Ribosomal RNA small subunit methyltransferase I	3.5811928148
+UniRef50_Q9JWJ7: Ribosomal RNA small subunit methyltransferase I|g__Neisseria.s__Neisseria_meningitidis	3.4616038056
+UniRef50_Q9JWJ7: Ribosomal RNA small subunit methyltransferase I|unclassified	0.1195890091
+UniRef50_D4HBM5: Glycerate kinase	3.5810539166
+UniRef50_D4HBM5: Glycerate kinase|g__Propionibacterium.s__Propionibacterium_acnes	3.5810539166
+UniRef50_B2TS76: Oligopeptide ABC transporter, periplasmic oligopeptide-binding protein	3.5805171154
+UniRef50_B2TS76: Oligopeptide ABC transporter, periplasmic oligopeptide-binding protein|g__Clostridium.s__Clostridium_beijerinckii	3.5805171154
+UniRef50_R4RFT5: 3-oxoacyl-[acyl-carrier-protein] synthase 3	3.5800233951
+UniRef50_R4RFT5: 3-oxoacyl-[acyl-carrier-protein] synthase 3|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5800233951
+UniRef50_Q9RSC3: UDP-glucose 4-epimerase	3.5789822183
+UniRef50_Q9RSC3: UDP-glucose 4-epimerase|g__Deinococcus.s__Deinococcus_radiodurans	3.5789822183
+UniRef50_UPI000345BA64: hypothetical protein	3.5785378392
+UniRef50_UPI000345BA64: hypothetical protein|unclassified	3.5785378392
+UniRef50_Q1WSM8: 1,4-alpha-glucan branching enzyme GlgB	3.5785345808
+UniRef50_Q1WSM8: 1,4-alpha-glucan branching enzyme GlgB|g__Streptococcus.s__Streptococcus_agalactiae	3.5785345808
+UniRef50_A0A010D0D1: Ribonuclease R	3.5784103615
+UniRef50_A0A010D0D1: Ribonuclease R|g__Acinetobacter.s__Acinetobacter_baumannii	3.5784103615
+UniRef50_F9YXS7: Tyrosine recombinase XerC	3.5779956380
+UniRef50_F9YXS7: Tyrosine recombinase XerC|g__Propionibacterium.s__Propionibacterium_acnes	3.5779956380
+UniRef50_UPI0003AB99D7	3.5779682350
+UniRef50_UPI0003AB99D7|unclassified	3.5779682350
+UniRef50_UPI00037F3F52: hypothetical protein	3.5765945721
+UniRef50_UPI00037F3F52: hypothetical protein|unclassified	3.5765945721
+UniRef50_Q9ZKQ7	3.5761524518
+UniRef50_Q9ZKQ7|g__Helicobacter.s__Helicobacter_pylori	3.5761524518
+UniRef50_P0A3M5: Penicillin-binding protein 2B	3.5757095244
+UniRef50_P0A3M5: Penicillin-binding protein 2B|g__Streptococcus.s__Streptococcus_agalactiae	3.5757095244
+UniRef50_A3JTA0: Arsenate reductase	3.5755822043
+UniRef50_A3JTA0: Arsenate reductase|unclassified	3.5755822043
+UniRef50_Q166F4: Isoprenyl transferase	3.5735705718
+UniRef50_Q166F4: Isoprenyl transferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.5735705718
+UniRef50_M1MI36	3.5732253587
+UniRef50_M1MI36|g__Clostridium.s__Clostridium_beijerinckii	3.5732253587
+UniRef50_C1D094: GTPase Der	3.5728474942
+UniRef50_C1D094: GTPase Der|g__Deinococcus.s__Deinococcus_radiodurans	3.5728474942
+UniRef50_X5ET80: Enoyl-CoA hydratase	3.5725664427
+UniRef50_X5ET80: Enoyl-CoA hydratase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5725664427
+UniRef50_UPI0004701620: 50S ribosomal protein L10	3.5723468154
+UniRef50_UPI0004701620: 50S ribosomal protein L10|unclassified	3.5723468154
+UniRef50_F9KBT1	3.5714285714
+UniRef50_F9KBT1|unclassified	3.5714285714
+UniRef50_A4WQF9: SirA family protein	3.5714285714
+UniRef50_A4WQF9: SirA family protein|unclassified	3.5714285714
+UniRef50_I7A0G4: Two component transcriptional regulator	3.5714285714
+UniRef50_I7A0G4: Two component transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5714285714
+UniRef50_Q5HLB9	3.5714285714
+UniRef50_Q5HLB9|g__Staphylococcus.s__Staphylococcus_epidermidis	3.5714285714
+UniRef50_UPI00034867BA: hypothetical protein	3.5714285714
+UniRef50_UPI00034867BA: hypothetical protein|unclassified	3.5714285714
+UniRef50_D9STU2: Transcriptional antiterminator, BglG	3.5708309428
+UniRef50_D9STU2: Transcriptional antiterminator, BglG|g__Clostridium.s__Clostridium_beijerinckii	3.5708309428
+UniRef50_A6VVT1: Isochorismatase	3.5704993318
+UniRef50_A6VVT1: Isochorismatase|g__Acinetobacter.s__Acinetobacter_baumannii	3.5704993318
+UniRef50_J0ZL16: 5'-nucleotidase, lipoprotein e(P4) family	3.5691563812
+UniRef50_J0ZL16: 5'-nucleotidase, lipoprotein e(P4) family|g__Staphylococcus.s__Staphylococcus_epidermidis	3.5691563812
+UniRef50_V9T419: Glycosyl transferase family 1	3.5683146939
+UniRef50_V9T419: Glycosyl transferase family 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5683146939
+UniRef50_D8JN46: Ribosomal RNA large subunit methyltransferase J	3.5671819263
+UniRef50_D8JN46: Ribosomal RNA large subunit methyltransferase J|g__Acinetobacter.s__Acinetobacter_baumannii	3.5671819263
+UniRef50_D8AI56	3.5666869304
+UniRef50_D8AI56|unclassified	3.5666869304
+UniRef50_N1MA35	3.5653048920
+UniRef50_N1MA35|unclassified	3.5653048920
+UniRef50_A0A023YXN9: Type 1 fimbriae anchoring protein FimD	3.5644947687
+UniRef50_A0A023YXN9: Type 1 fimbriae anchoring protein FimD|g__Escherichia.s__Escherichia_coli	3.5644947687
+UniRef50_A6LTY9	3.5643589165
+UniRef50_A6LTY9|g__Clostridium.s__Clostridium_beijerinckii	3.5643589165
+UniRef50_Q8CQG7: Transposase	3.5640260856
+UniRef50_Q8CQG7: Transposase|g__Staphylococcus.s__Staphylococcus_aureus	3.5640260856
+UniRef50_UPI000363DE89: hypothetical protein	3.5639874011
+UniRef50_UPI000363DE89: hypothetical protein|unclassified	3.5639874011
+UniRef50_R7PTH2	3.5636372651
+UniRef50_R7PTH2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.5636372651
+UniRef50_Q9CG80: DNA topoisomerase 1	3.5635778072
+UniRef50_Q9CG80: DNA topoisomerase 1|g__Streptococcus.s__Streptococcus_agalactiae	3.2077953205
+UniRef50_Q9CG80: DNA topoisomerase 1|unclassified	0.3557824867
+UniRef50_D4HEA1: Hydrolase, NUDIX family	3.5633932009
+UniRef50_D4HEA1: Hydrolase, NUDIX family|g__Propionibacterium.s__Propionibacterium_acnes	3.5633932009
+UniRef50_X6E4H9	3.5614514446
+UniRef50_X6E4H9|unclassified	3.5614514446
+UniRef50_Q6FF14	3.5594174495
+UniRef50_Q6FF14|g__Acinetobacter.s__Acinetobacter_baumannii	3.5594174495
+UniRef50_D7A0Y7: Polar amino acid ABC transporter, inner membrane subunit	3.5587188612
+UniRef50_D7A0Y7: Polar amino acid ABC transporter, inner membrane subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5587188612
+UniRef50_I6T0G0	3.5587188612
+UniRef50_I6T0G0|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5587188612
+UniRef50_M9NSV0	3.5587188612
+UniRef50_M9NSV0|unclassified	3.5587188612
+UniRef50_P77828: 10 kDa chaperonin 1	3.5587188612
+UniRef50_P77828: 10 kDa chaperonin 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.5587188612
+UniRef50_X5KFH3: Type IV prepilin peptidase-related protein	3.5587188612
+UniRef50_X5KFH3: Type IV prepilin peptidase-related protein|g__Streptococcus.s__Streptococcus_agalactiae	3.5587188612
+UniRef50_M9SB66	3.5583364935
+UniRef50_M9SB66|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5583364935
+UniRef50_U5MWY6	3.5582810474
+UniRef50_U5MWY6|g__Clostridium.s__Clostridium_beijerinckii	3.5582810474
+UniRef50_Q3Z7J2: DNA methylase	3.5578687164
+UniRef50_Q3Z7J2: DNA methylase|g__Clostridium.s__Clostridium_beijerinckii	3.5578687164
+UniRef50_V9Y3L4	3.5576183999
+UniRef50_V9Y3L4|unclassified	3.5576183999
+UniRef50_Q08052: Ribulose bisphosphate carboxylase small chain	3.5568167774
+UniRef50_Q08052: Ribulose bisphosphate carboxylase small chain|unclassified	3.5568167774
+UniRef50_UPI0004787588: NAD-dependent dehydratase	3.5561426198
+UniRef50_UPI0004787588: NAD-dependent dehydratase|unclassified	3.5561426198
+UniRef50_D2NTC3: Threonine dehydrogenase	3.5556257901
+UniRef50_D2NTC3: Threonine dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	3.5556257901
+UniRef50_J9P312	3.5554797794
+UniRef50_J9P312|unclassified	3.5554797794
+UniRef50_D5H607: GTP-binding protein TypA	3.5551887119
+UniRef50_D5H607: GTP-binding protein TypA|g__Propionibacterium.s__Propionibacterium_acnes	3.5551887119
+UniRef50_U5MYV0: ATP-dependent Clp protease ATP-binding subunit ClpA	3.5549339503
+UniRef50_U5MYV0: ATP-dependent Clp protease ATP-binding subunit ClpA|g__Clostridium.s__Clostridium_beijerinckii	3.5549339503
+UniRef50_R5HWX2: Cys/Met metabolism PLP-dependent enzyme	3.5536082804
+UniRef50_R5HWX2: Cys/Met metabolism PLP-dependent enzyme|g__Clostridium.s__Clostridium_beijerinckii	3.5536082804
+UniRef50_A4VG13: D-lactate dehydrogenase (Fermentative)	3.5532264701
+UniRef50_A4VG13: D-lactate dehydrogenase (Fermentative)|g__Neisseria.s__Neisseria_meningitidis	3.5532264701
+UniRef50_Q3IWK6: Serine/threonine protein kinase	3.5530668245
+UniRef50_Q3IWK6: Serine/threonine protein kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.5530668245
+UniRef50_F2ZPI1	3.5529338199
+UniRef50_F2ZPI1|unclassified	3.5529338199
+UniRef50_D6SIN4: tRNA binding domain protein	3.5524426987
+UniRef50_D6SIN4: tRNA binding domain protein|g__Staphylococcus.s__Staphylococcus_aureus	3.5524426987
+UniRef50_W0E657: Transposase IS116	3.5521777937
+UniRef50_W0E657: Transposase IS116|g__Clostridium.s__Clostridium_beijerinckii	3.5521777937
+UniRef50_D6DES4: Amino acid transporters	3.5520037916
+UniRef50_D6DES4: Amino acid transporters|g__Clostridium.s__Clostridium_beijerinckii	3.5520037916
+UniRef50_A4XXL0: Diguanylate cyclase/phosphodiesterase	3.5519487071
+UniRef50_A4XXL0: Diguanylate cyclase/phosphodiesterase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5519487071
+UniRef50_Q9RS08	3.5518225736
+UniRef50_Q9RS08|g__Deinococcus.s__Deinococcus_radiodurans	3.5518225736
+UniRef50_F2AJ88	3.5514402132
+UniRef50_F2AJ88|unclassified	3.5514402132
+UniRef50_G2KZT3	3.5510224998
+UniRef50_G2KZT3|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5316455696
+UniRef50_G2KZT3|unclassified	1.0193769302
+UniRef50_Q28NN5: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase	3.5508277034
+UniRef50_Q28NN5: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.5508277034
+UniRef50_G0DWF8	3.5488889091
+UniRef50_G0DWF8|unclassified	3.5488889091
+UniRef50_A6V6J8	3.5487956938
+UniRef50_A6V6J8|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5487956938
+UniRef50_K2JVH5	3.5485071537
+UniRef50_K2JVH5|unclassified	3.5485071537
+UniRef50_A6V7A2	3.5475155076
+UniRef50_A6V7A2|unclassified	3.5475155076
+UniRef50_K7UQK0	3.5473535909
+UniRef50_K7UQK0|unclassified	3.5473535909
+UniRef50_A8LSF1: Cytidylate kinase	3.5468840094
+UniRef50_A8LSF1: Cytidylate kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.5468840094
+UniRef50_S6AKX0	3.5462585989
+UniRef50_S6AKX0|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5462585989
+UniRef50_Q9RYQ0: Catalase	3.5461882163
+UniRef50_Q9RYQ0: Catalase|g__Deinococcus.s__Deinococcus_radiodurans	3.5461882163
+UniRef50_B7LDX5	3.5460992908
+UniRef50_B7LDX5|g__Escherichia.s__Escherichia_coli	3.5460992908
+UniRef50_E2V850	3.5460992908
+UniRef50_E2V850|unclassified	3.5460992908
+UniRef50_F0KIU0: Sel1-like repeat protein	3.5460992908
+UniRef50_F0KIU0: Sel1-like repeat protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.5460992908
+UniRef50_L9DAS8: Molybdopterin dinucleotide binding domain protein	3.5460992908
+UniRef50_L9DAS8: Molybdopterin dinucleotide binding domain protein|g__Escherichia.s__Escherichia_coli	3.5460992908
+UniRef50_M2BGU5	3.5460992908
+UniRef50_M2BGU5|unclassified	3.5460992908
+UniRef50_R7PUV9	3.5460992908
+UniRef50_R7PUV9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.5460992908
+UniRef50_A3M2E9	3.5456758109
+UniRef50_A3M2E9|g__Acinetobacter.s__Acinetobacter_baumannii	3.5456758109
+UniRef50_G7MC40: Methyl-accepting chemotaxis sensory transducer with Cache sensor	3.5451755514
+UniRef50_G7MC40: Methyl-accepting chemotaxis sensory transducer with Cache sensor|g__Clostridium.s__Clostridium_beijerinckii	3.5451755514
+UniRef50_P44638: Lactoylglutathione lyase	3.5448693500
+UniRef50_P44638: Lactoylglutathione lyase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5839793282
+UniRef50_P44638: Lactoylglutathione lyase|unclassified	0.9608900219
+UniRef50_C6CIT8: ABC transporter related	3.5445945640
+UniRef50_C6CIT8: ABC transporter related|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.5445945640
+UniRef50_N6V5D4	3.5440166635
+UniRef50_N6V5D4|unclassified	3.5440166635
+UniRef50_Q8DXQ8: Sensor protein DltS	3.5438340334
+UniRef50_Q8DXQ8: Sensor protein DltS|g__Streptococcus.s__Streptococcus_agalactiae	3.5438340334
+UniRef50_B7V757	3.5437010561
+UniRef50_B7V757|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5437010561
+UniRef50_V9TV27	3.5430741588
+UniRef50_V9TV27|unclassified	3.5430741588
+UniRef50_A6LYD3	3.5422700489
+UniRef50_A6LYD3|g__Clostridium.s__Clostridium_beijerinckii	3.5422700489
+UniRef50_B2SK77: ISXoo6 transposase	3.5404849467
+UniRef50_B2SK77: ISXoo6 transposase|g__Escherichia.s__Escherichia_coli	3.5404849467
+UniRef50_E2NT02	3.5403914776
+UniRef50_E2NT02|unclassified	3.5403914776
+UniRef50_A0A059IQN5: Membrane protein	3.5402262670
+UniRef50_A0A059IQN5: Membrane protein|unclassified	3.5402262670
+UniRef50_V5T0B6	3.5394803233
+UniRef50_V5T0B6|unclassified	3.5394803233
+UniRef50_N2DXX0: Dihydrouridine synthase family protein	3.5392256434
+UniRef50_N2DXX0: Dihydrouridine synthase family protein|g__Escherichia.s__Escherichia_coli	3.5392256434
+UniRef50_A3PID1	3.5385631658
+UniRef50_A3PID1|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.5125628141
+UniRef50_A3PID1|unclassified	1.0260003517
+UniRef50_A2SFU4: Transport protein B	3.5384633914
+UniRef50_A2SFU4: Transport protein B|g__Acinetobacter.s__Acinetobacter_baumannii	3.5384633914
+UniRef50_F2AE31	3.5383318156
+UniRef50_F2AE31|unclassified	3.5383318156
+UniRef50_F8H2A8: Branched-chain amino acid ABC transporter, ATP-binding protein	3.5376219453
+UniRef50_F8H2A8: Branched-chain amino acid ABC transporter, ATP-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5376219453
+UniRef50_E6K2Y0: Carbohydrate kinase, FGGY family protein	3.5366430757
+UniRef50_E6K2Y0: Carbohydrate kinase, FGGY family protein|g__Clostridium.s__Clostridium_beijerinckii	3.5366430757
+UniRef50_H3YUR3	3.5363889147
+UniRef50_H3YUR3|unclassified	3.5363889147
+UniRef50_Q4K8A6	3.5360137463
+UniRef50_Q4K8A6|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5360137463
+UniRef50_V8DYY2	3.5351320600
+UniRef50_V8DYY2|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5351320600
+UniRef50_A5UEK8: Chromosome partition protein MukB	3.5343133001
+UniRef50_A5UEK8: Chromosome partition protein MukB|g__Escherichia.s__Escherichia_coli	3.5343133001
+UniRef50_A3CMZ0: Na+-driven multidrug efflux pump, putative	3.5339791368
+UniRef50_A3CMZ0: Na+-driven multidrug efflux pump, putative|g__Streptococcus.s__Streptococcus_agalactiae	3.5339791368
+UniRef50_A6LVU2: Cobalt-precorrin-5B C(1)-methyltransferase	3.5335786976
+UniRef50_A6LVU2: Cobalt-precorrin-5B C(1)-methyltransferase|g__Clostridium.s__Clostridium_beijerinckii	3.5335786976
+UniRef50_C5Q5Y7	3.5328982905
+UniRef50_C5Q5Y7|unclassified	3.5328982905
+UniRef50_A0A017HR01: STRUCTURAL ELEMENTS, Cell Exterior, surface polysaccharides/antigen	3.5321196557
+UniRef50_A0A017HR01: STRUCTURAL ELEMENTS, Cell Exterior, surface polysaccharides/antigen|unclassified	3.5321196557
+UniRef50_A6LR14: Heavy metal translocating P-type ATPase	3.5320010057
+UniRef50_A6LR14: Heavy metal translocating P-type ATPase|g__Clostridium.s__Clostridium_beijerinckii	3.5320010057
+UniRef50_G3ADN0: Molecular chaperone (Fragment)	3.5315163821
+UniRef50_G3ADN0: Molecular chaperone (Fragment)|unclassified	3.5315163821
+UniRef50_A6VC14	3.5313340813
+UniRef50_A6VC14|unclassified	3.5313340813
+UniRef50_Y5NJI5	3.5310658169
+UniRef50_Y5NJI5|unclassified	3.5310658169
+UniRef50_G8LJK4	3.5309015347
+UniRef50_G8LJK4|unclassified	3.5309015347
+UniRef50_A6M0Q7: Methyl-accepting chemotaxis sensory transducer	3.5306080605
+UniRef50_A6M0Q7: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	3.5306080605
+UniRef50_I9NHA6	3.5289236468
+UniRef50_I9NHA6|unclassified	3.5289236468
+UniRef50_U5MSB5: Stage V sporulation protein D	3.5287027671
+UniRef50_U5MSB5: Stage V sporulation protein D|g__Clostridium.s__Clostridium_beijerinckii	3.5287027671
+UniRef50_S5CQF3	3.5281955428
+UniRef50_S5CQF3|g__Acinetobacter.s__Acinetobacter_baumannii	3.5281955428
+UniRef50_V0ULY3	3.5279985768
+UniRef50_V0ULY3|unclassified	3.5279985768
+UniRef50_H3VE51	3.5278451483
+UniRef50_H3VE51|g__Staphylococcus.s__Staphylococcus_epidermidis	3.5278451483
+UniRef50_Q0KDL1: ABC-type transporter, ATPase component	3.5275330442
+UniRef50_Q0KDL1: ABC-type transporter, ATPase component|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5275330442
+UniRef50_B8GXN0: Magnesium chelatase subunit ChlI-like ATPase	3.5275143280
+UniRef50_B8GXN0: Magnesium chelatase subunit ChlI-like ATPase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.5275143280
+UniRef50_E6P5S3: Phosphonate/organophosphate ester transporter subunit, membrane component of ABC superfamily	3.5273368607
+UniRef50_E6P5S3: Phosphonate/organophosphate ester transporter subunit, membrane component of ABC superfamily|g__Escherichia.s__Escherichia_coli	3.5273368607
+UniRef50_G7M7B0: Cell wall binding repeat-containing protein	3.5259727288
+UniRef50_G7M7B0: Cell wall binding repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	3.5259727288
+UniRef50_A0A009W0R2: Valine--tRNA ligase	3.5259010225
+UniRef50_A0A009W0R2: Valine--tRNA ligase|g__Acinetobacter.s__Acinetobacter_baumannii	3.5259010225
+UniRef50_V6J2L6	3.5256881841
+UniRef50_V6J2L6|unclassified	3.5256881841
+UniRef50_A6LX23	3.5252872861
+UniRef50_A6LX23|g__Clostridium.s__Clostridium_beijerinckii	3.5252872861
+UniRef50_A6LX18	3.5249274688
+UniRef50_A6LX18|g__Clostridium.s__Clostridium_beijerinckii	3.5249274688
+UniRef50_C2ESX2	3.5241977229
+UniRef50_C2ESX2|unclassified	3.5241977229
+UniRef50_Q1J0Y6: DNA topoisomerase (ATP-hydrolyzing)	3.5240157478
+UniRef50_Q1J0Y6: DNA topoisomerase (ATP-hydrolyzing)|g__Deinococcus.s__Deinococcus_radiodurans	3.5240157478
+UniRef50_U5UCP9: Putative transposase	3.5235804632
+UniRef50_U5UCP9: Putative transposase|unclassified	3.5235804632
+UniRef50_M9S6K9: Formate/nitrate transporter	3.5226653737
+UniRef50_M9S6K9: Formate/nitrate transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5226653737
+UniRef50_D3A174	3.5222325918
+UniRef50_D3A174|unclassified	3.5222325918
+UniRef50_A0NYJ8	3.5219060795
+UniRef50_A0NYJ8|unclassified	3.5219060795
+UniRef50_F9YZR2	3.5214001573
+UniRef50_F9YZR2|unclassified	3.5214001573
+UniRef50_B0V917	3.5211267606
+UniRef50_B0V917|g__Acinetobacter.s__Acinetobacter_baumannii	3.5211267606
+UniRef50_D8GM15: Membrane associated dicarboxylate carrier protein	3.5211267606
+UniRef50_D8GM15: Membrane associated dicarboxylate carrier protein|g__Propionibacterium.s__Propionibacterium_acnes	3.5211267606
+UniRef50_D9XYR1	3.5211267606
+UniRef50_D9XYR1|unclassified	3.5211267606
+UniRef50_M9A4X1: Fructose-like permease IIC component 1 domain protein (Fragment)	3.5211267606
+UniRef50_M9A4X1: Fructose-like permease IIC component 1 domain protein (Fragment)|g__Escherichia.s__Escherichia_coli	3.5211267606
+UniRef50_Q5PCU0: Protein YcgL	3.5211267606
+UniRef50_Q5PCU0: Protein YcgL|g__Escherichia.s__Escherichia_coli	3.5211267606
+UniRef50_B7UUY0	3.5201001220
+UniRef50_B7UUY0|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5201001220
+UniRef50_R4U7U8: Phosphoribosylglycinamide formyltransferase	3.5197629309
+UniRef50_R4U7U8: Phosphoribosylglycinamide formyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	3.5197629309
+UniRef50_A2SKF9: Transaldolase	3.5197507829
+UniRef50_A2SKF9: Transaldolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5197507829
+UniRef50_Q5P119: Probable RNA methyltransferase AZOSEA28700	3.5191810804
+UniRef50_Q5P119: Probable RNA methyltransferase AZOSEA28700|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5191810804
+UniRef50_A6M003: Two component, sigma54 specific, transcriptional regulator, Fis family	3.5190208403
+UniRef50_A6M003: Two component, sigma54 specific, transcriptional regulator, Fis family|g__Clostridium.s__Clostridium_beijerinckii	3.5190208403
+UniRef50_Q4KEM3: Two-component sensor histidine kinase PedS1	3.5186375443
+UniRef50_Q4KEM3: Two-component sensor histidine kinase PedS1|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5186375443
+UniRef50_D7I1Z9: Dienelactone hydrolase	3.5185597770
+UniRef50_D7I1Z9: Dienelactone hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2885474769
+UniRef50_D7I1Z9: Dienelactone hydrolase|g__Acinetobacter.s__Acinetobacter_baumannii	1.2300123001
+UniRef50_UPI00016C3B5A: hypothetical protein	3.5179501249
+UniRef50_UPI00016C3B5A: hypothetical protein|unclassified	3.5179501249
+UniRef50_Q02F58: Phosphoserine phosphatase	3.5179263748
+UniRef50_Q02F58: Phosphoserine phosphatase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5179263748
+UniRef50_Q48QB2: Fatty acid desaturase	3.5172584102
+UniRef50_Q48QB2: Fatty acid desaturase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5172584102
+UniRef50_A6LRF1: Glycosyl hydrolase, BNR repeat-containing protein	3.5170358360
+UniRef50_A6LRF1: Glycosyl hydrolase, BNR repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	3.5170358360
+UniRef50_A4SPY8: Protoheme IX farnesyltransferase	3.5166880363
+UniRef50_A4SPY8: Protoheme IX farnesyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0661747874
+UniRef50_A4SPY8: Protoheme IX farnesyltransferase|unclassified	0.4505132489
+UniRef50_F9EIZ7	3.5166845698
+UniRef50_F9EIZ7|unclassified	3.5166845698
+UniRef50_A0A023KKL0	3.5162523652
+UniRef50_A0A023KKL0|unclassified	3.5162523652
+UniRef50_W1WKJ1	3.5142194161
+UniRef50_W1WKJ1|unclassified	3.5142194161
+UniRef50_UPI000476116B: 50S ribosomal protein L35	3.5137289093
+UniRef50_UPI000476116B: 50S ribosomal protein L35|unclassified	3.5137289093
+UniRef50_UPI0004630420: hypothetical protein	3.5137097884
+UniRef50_UPI0004630420: hypothetical protein|unclassified	3.5137097884
+UniRef50_UPI0003B4B6CF: sugar ABC transporter substrate-binding protein	3.5136316430
+UniRef50_UPI0003B4B6CF: sugar ABC transporter substrate-binding protein|unclassified	3.5136316430
+UniRef50_F4D5J0	3.5135916715
+UniRef50_F4D5J0|g__Helicobacter.s__Helicobacter_pylori	3.5135916715
+UniRef50_D3HBK9: Acid phosphatase	3.5135377175
+UniRef50_D3HBK9: Acid phosphatase|g__Streptococcus.s__Streptococcus_agalactiae	3.5135377175
+UniRef50_S9SGW1: NnrU family protein in cluster with Mesaconyl-CoA hydratase	3.5129035561
+UniRef50_S9SGW1: NnrU family protein in cluster with Mesaconyl-CoA hydratase|unclassified	3.5129035561
+UniRef50_Q4FPS9: Chaperone protein DnaK	3.5122676599
+UniRef50_Q4FPS9: Chaperone protein DnaK|g__Clostridium.s__Clostridium_beijerinckii	2.3879123155
+UniRef50_Q4FPS9: Chaperone protein DnaK|g__Helicobacter.s__Helicobacter_pylori	1.1243553443
+UniRef50_N6GTW5	3.5122062700
+UniRef50_N6GTW5|unclassified	3.5122062700
+UniRef50_A0A011QRG6: Ferredoxin I	3.5119494806
+UniRef50_A0A011QRG6: Ferredoxin I|unclassified	3.5119494806
+UniRef50_Q9I3N2: Cytochrome c-type biogenesis protein CcmF	3.5118257132
+UniRef50_Q9I3N2: Cytochrome c-type biogenesis protein CcmF|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5118257132
+UniRef50_A0A017IAD8	3.5105788600
+UniRef50_A0A017IAD8|unclassified	3.5105788600
+UniRef50_U5MT62: Nodulation protein NolG	3.5096028379
+UniRef50_U5MT62: Nodulation protein NolG|g__Clostridium.s__Clostridium_beijerinckii	3.5096028379
+UniRef50_U5SYK1: YeeE/YedE family protein	3.5095793077
+UniRef50_U5SYK1: YeeE/YedE family protein|g__Staphylococcus.s__Staphylococcus_aureus	3.0487804878
+UniRef50_U5SYK1: YeeE/YedE family protein|unclassified	0.4607988199
+UniRef50_A3LL65: Aflatoxin B1 aldehyde reductase member 1	3.5094345470
+UniRef50_A3LL65: Aflatoxin B1 aldehyde reductase member 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4827405018
+UniRef50_A3LL65: Aflatoxin B1 aldehyde reductase member 1|unclassified	1.0266940452
+UniRef50_P45301	3.5089447310
+UniRef50_P45301|g__Escherichia.s__Escherichia_coli	3.5089447310
+UniRef50_V8AR85	3.5088956068
+UniRef50_V8AR85|unclassified	3.5088956068
+UniRef50_A0A023X2K9: Nitroreductase family	3.5087719298
+UniRef50_A0A023X2K9: Nitroreductase family|g__Deinococcus.s__Deinococcus_radiodurans	3.5087719298
+UniRef50_E7SMJ6: Melibiose operon regulatory protein	3.5087719298
+UniRef50_E7SMJ6: Melibiose operon regulatory protein|g__Escherichia.s__Escherichia_coli	3.5087719298
+UniRef50_J1BB65	3.5087719298
+UniRef50_J1BB65|g__Staphylococcus.s__Staphylococcus_epidermidis	3.5087719298
+UniRef50_M0TPI4	3.5087719298
+UniRef50_M0TPI4|unclassified	3.5087719298
+UniRef50_Q1R7H9	3.5087719298
+UniRef50_Q1R7H9|g__Escherichia.s__Escherichia_coli	3.5087719298
+UniRef50_Q9RY24: Protein GrpE	3.5087719298
+UniRef50_Q9RY24: Protein GrpE|g__Deinococcus.s__Deinococcus_radiodurans	3.5087719298
+UniRef50_R7VSV2	3.5087719298
+UniRef50_R7VSV2|unclassified	3.5087719298
+UniRef50_T7W3B1: Inner membrane ABC transporter permease ycjO	3.5087719298
+UniRef50_T7W3B1: Inner membrane ABC transporter permease ycjO|g__Escherichia.s__Escherichia_coli	3.5087719298
+UniRef50_UPI000455D036: hypothetical protein CONPUDRAFT_154627	3.5087719298
+UniRef50_UPI000455D036: hypothetical protein CONPUDRAFT_154627|unclassified	3.5087719298
+UniRef50_B0RYF7: 2-methylcitrate hydratase	3.5079617717
+UniRef50_B0RYF7: 2-methylcitrate hydratase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1622484198
+UniRef50_B0RYF7: 2-methylcitrate hydratase|g__Neisseria.s__Neisseria_meningitidis	1.3457133519
+UniRef50_G7MCQ3	3.5071617387
+UniRef50_G7MCQ3|g__Clostridium.s__Clostridium_beijerinckii	3.5071617387
+UniRef50_UPI00036C9333: hypothetical protein	3.5069941346
+UniRef50_UPI00036C9333: hypothetical protein|unclassified	3.5069941346
+UniRef50_Q0SU50: Amino acid permease family protein	3.5067052978
+UniRef50_Q0SU50: Amino acid permease family protein|g__Clostridium.s__Clostridium_beijerinckii	3.5067052978
+UniRef50_Q51487: Outer membrane protein OprM	3.5066782164
+UniRef50_Q51487: Outer membrane protein OprM|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.5066782164
+UniRef50_M1M078: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase IspH	3.5057553206
+UniRef50_M1M078: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase IspH|g__Clostridium.s__Clostridium_beijerinckii	3.5057553206
+UniRef50_L5QQP7: Type I restriction modification DNA specificity domain protein	3.5054204403
+UniRef50_L5QQP7: Type I restriction modification DNA specificity domain protein|g__Neisseria.s__Neisseria_meningitidis	3.5054204403
+UniRef50_Q6A8N5: Prolipoprotein diacylglyceryl transferase	3.5052318665
+UniRef50_Q6A8N5: Prolipoprotein diacylglyceryl transferase|g__Propionibacterium.s__Propionibacterium_acnes	3.1250000000
+UniRef50_Q6A8N5: Prolipoprotein diacylglyceryl transferase|unclassified	0.3802318665
+UniRef50_UPI0004761E95: ligand-binding protein SH3	3.5051422095
+UniRef50_UPI0004761E95: ligand-binding protein SH3|unclassified	3.5051422095
+UniRef50_M4X5B0	3.5037404353
+UniRef50_M4X5B0|unclassified	1.8643961730
+UniRef50_M4X5B0|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6393442623
+UniRef50_A4W0M7: ATP-dependent helicase/nuclease subunit A	3.5033438633
+UniRef50_A4W0M7: ATP-dependent helicase/nuclease subunit A|g__Streptococcus.s__Streptococcus_agalactiae	3.4396134648
+UniRef50_A4W0M7: ATP-dependent helicase/nuclease subunit A|unclassified	0.0637303985
+UniRef50_J2FNR5	3.5031682784
+UniRef50_J2FNR5|unclassified	3.5031682784
+UniRef50_F0KCU7: S-adenosylmethionine-dependent methyltransferase	3.5026269702
+UniRef50_F0KCU7: S-adenosylmethionine-dependent methyltransferase|g__Clostridium.s__Clostridium_beijerinckii	3.5026269702
+UniRef50_Q729A6: 3-methyl-2-oxobutanoate hydroxymethyltransferase	3.5024550473
+UniRef50_Q729A6: 3-methyl-2-oxobutanoate hydroxymethyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	3.1552861514
+UniRef50_Q729A6: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.3471688959
+UniRef50_Q96NC1: HCG1984442	3.5003263737
+UniRef50_Q96NC1: HCG1984442|unclassified	3.5003263737
+UniRef50_N1UE46	3.4993292950
+UniRef50_N1UE46|unclassified	3.4993292950
+UniRef50_E2CN00: RNA-binding region RNP-1	3.4981048502
+UniRef50_E2CN00: RNA-binding region RNP-1|unclassified	3.4981048502
+UniRef50_C8TKV7	3.4970401709
+UniRef50_C8TKV7|unclassified	3.4970401709
+UniRef50_H8GU00: Peptidyl-prolyl cis-trans isomerase	3.4965034965
+UniRef50_H8GU00: Peptidyl-prolyl cis-trans isomerase|g__Deinococcus.s__Deinococcus_radiodurans	3.4965034965
+UniRef50_P76063	3.4965034965
+UniRef50_P76063|g__Escherichia.s__Escherichia_coli	3.4965034965
+UniRef50_Q2T0N2: Kynurenine formamidase	3.4965034965
+UniRef50_Q2T0N2: Kynurenine formamidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4965034965
+UniRef50_Q6A9W7: Octanoyltransferase	3.4965034965
+UniRef50_Q6A9W7: Octanoyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	3.4965034965
+UniRef50_R0VSS0: Tetrapyrrole (Corrin/Porphyrin) Methylases family protein (Fragment)	3.4965034965
+UniRef50_R0VSS0: Tetrapyrrole (Corrin/Porphyrin) Methylases family protein (Fragment)|g__Neisseria.s__Neisseria_meningitidis	3.4965034965
+UniRef50_W8SVU4	3.4965034965
+UniRef50_W8SVU4|g__Escherichia.s__Escherichia_coli	3.4965034965
+UniRef50_B5I0F4: Gas vesicle protein G	3.4953940636
+UniRef50_B5I0F4: Gas vesicle protein G|unclassified	3.4953940636
+UniRef50_G2SXD8: Aspartate aminotransferase	3.4946707875
+UniRef50_G2SXD8: Aspartate aminotransferase|g__Clostridium.s__Clostridium_beijerinckii	3.4946707875
+UniRef50_C6B8Q0: Pathogenesis-related protein	3.4944773477
+UniRef50_C6B8Q0: Pathogenesis-related protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4944773477
+UniRef50_Q02LX5: Putative glutamate--cysteine ligase 2	3.4941326056
+UniRef50_Q02LX5: Putative glutamate--cysteine ligase 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4718487663
+UniRef50_Q02LX5: Putative glutamate--cysteine ligase 2|unclassified	1.0222838393
+UniRef50_B4XWA1: Phosphate starvation-inducible protein (Fragment)	3.4928517436
+UniRef50_B4XWA1: Phosphate starvation-inducible protein (Fragment)|unclassified	3.4928517436
+UniRef50_I0G8T6	3.4923312881
+UniRef50_I0G8T6|unclassified	3.4923312881
+UniRef50_U5SG79: Rlx protein	3.4922547547
+UniRef50_U5SG79: Rlx protein|unclassified	3.4922547547
+UniRef50_P46861: Lysine--tRNA ligase	3.4921036214
+UniRef50_P46861: Lysine--tRNA ligase|g__Propionibacterium.s__Propionibacterium_acnes	3.4921036214
+UniRef50_UPI00036BF67A: hypothetical protein	3.4908439009
+UniRef50_UPI00036BF67A: hypothetical protein|unclassified	3.4908439009
+UniRef50_I4DRL0	3.4906753416
+UniRef50_I4DRL0|unclassified	3.4906753416
+UniRef50_F0MZR9: Division cluster competence associated protein Dca	3.4895381979
+UniRef50_F0MZR9: Division cluster competence associated protein Dca|g__Neisseria.s__Neisseria_meningitidis	3.4895381979
+UniRef50_A6M244: ROK family protein	3.4892257201
+UniRef50_A6M244: ROK family protein|g__Clostridium.s__Clostridium_beijerinckii	3.4892257201
+UniRef50_O34718: Major myo-inositol transporter IolT	3.4889090213
+UniRef50_O34718: Major myo-inositol transporter IolT|g__Clostridium.s__Clostridium_beijerinckii	3.4889090213
+UniRef50_Q92PH0: Glutaminase	3.4884874728
+UniRef50_Q92PH0: Glutaminase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4884874728
+UniRef50_A6LX65	3.4879382796
+UniRef50_A6LX65|g__Clostridium.s__Clostridium_beijerinckii	3.4879382796
+UniRef50_I6SDA8: Bacteriophage protein	3.4876498828
+UniRef50_I6SDA8: Bacteriophage protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4876498828
+UniRef50_J2LQ54: NADH dehydrogenase subunit I	3.4872748650
+UniRef50_J2LQ54: NADH dehydrogenase subunit I|unclassified	3.4872748650
+UniRef50_W1WD33	3.4869912840
+UniRef50_W1WD33|unclassified	3.4869912840
+UniRef50_P26276: Phosphomannomutase/phosphoglucomutase	3.4852023927
+UniRef50_P26276: Phosphomannomutase/phosphoglucomutase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4852023927
+UniRef50_E2PUY3	3.4849049395
+UniRef50_E2PUY3|unclassified	3.4849049395
+UniRef50_A5N555	3.4848034848
+UniRef50_A5N555|g__Clostridium.s__Clostridium_beijerinckii	3.4848034848
+UniRef50_D4HEU0: Transcriptional regulator, TetR family	3.4843205575
+UniRef50_D4HEU0: Transcriptional regulator, TetR family|g__Propionibacterium.s__Propionibacterium_acnes	3.4843205575
+UniRef50_I0E315	3.4843205575
+UniRef50_I0E315|g__Helicobacter.s__Helicobacter_pylori	3.4843205575
+UniRef50_J2MQX3: ISPsy24 transposase	3.4843205575
+UniRef50_J2MQX3: ISPsy24 transposase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4843205575
+UniRef50_P64535: Nickel/cobalt homeostasis protein RcnB	3.4843205575
+UniRef50_P64535: Nickel/cobalt homeostasis protein RcnB|g__Escherichia.s__Escherichia_coli	3.4843205575
+UniRef50_Q6ESN1	3.4843205575
+UniRef50_Q6ESN1|unclassified	3.4843205575
+UniRef50_Q9RVN4	3.4843205575
+UniRef50_Q9RVN4|g__Deinococcus.s__Deinococcus_radiodurans	3.4843205575
+UniRef50_D8JNP8: Xylanase/chitin deacetylase	3.4841620727
+UniRef50_D8JNP8: Xylanase/chitin deacetylase|g__Acinetobacter.s__Acinetobacter_baumannii	3.4841620727
+UniRef50_U1AM04: Ethanolamine utilization protein eutN	3.4833446610
+UniRef50_U1AM04: Ethanolamine utilization protein eutN|unclassified	3.4833446610
+UniRef50_R4YER9: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	3.4829863601
+UniRef50_R4YER9: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|unclassified	3.4829863601
+UniRef50_K5JB68: Bacterial extracellular solute-binding s, 3 family protein	3.4825915635
+UniRef50_K5JB68: Bacterial extracellular solute-binding s, 3 family protein|g__Escherichia.s__Escherichia_coli	3.4825915635
+UniRef50_I0TVV6	3.4821495129
+UniRef50_I0TVV6|unclassified	3.4821495129
+UniRef50_UPI00031DA7CD: hypothetical protein	3.4807133304
+UniRef50_UPI00031DA7CD: hypothetical protein|unclassified	3.4807133304
+UniRef50_J7M386: Mevalonate kinase	3.4807098133
+UniRef50_J7M386: Mevalonate kinase|g__Streptococcus.s__Streptococcus_agalactiae	3.4807098133
+UniRef50_UPI0004663EB9: hypothetical protein	3.4803461705
+UniRef50_UPI0004663EB9: hypothetical protein|unclassified	3.4803461705
+UniRef50_A9BPC4: NIPSNAP family containing protein	3.4783737433
+UniRef50_A9BPC4: NIPSNAP family containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.1645569620
+UniRef50_A9BPC4: NIPSNAP family containing protein|unclassified	0.3138167813
+UniRef50_O34384	3.4782608696
+UniRef50_O34384|g__Deinococcus.s__Deinococcus_radiodurans	3.4782608696
+UniRef50_V8FR31: Histidine kinase	3.4767721767
+UniRef50_V8FR31: Histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	3.4767721767
+UniRef50_A3C947	3.4752389227
+UniRef50_A3C947|unclassified	3.4752389227
+UniRef50_UPI00020D97D1: large conductance mechanosensitive channel protein MscL	3.4749817521
+UniRef50_UPI00020D97D1: large conductance mechanosensitive channel protein MscL|unclassified	3.4749817521
+UniRef50_V5SV83	3.4742326177
+UniRef50_V5SV83|unclassified	3.4742326177
+UniRef50_UPI0003C103D9: PREDICTED: unconventional myosin-XV	3.4737726576
+UniRef50_UPI0003C103D9: PREDICTED: unconventional myosin-XV|unclassified	3.4737726576
+UniRef50_C4LJK5: ABC-type transport system, ATP-binding protein	3.4735308511
+UniRef50_C4LJK5: ABC-type transport system, ATP-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	3.4735308511
+UniRef50_UPI00035C7733: hypothetical protein, partial	3.4735261546
+UniRef50_UPI00035C7733: hypothetical protein, partial|unclassified	3.4735261546
+UniRef50_K8AVJ7: UDP-N-acetylmuramoylalanine--D-glutamate ligase	3.4731296809
+UniRef50_K8AVJ7: UDP-N-acetylmuramoylalanine--D-glutamate ligase|g__Escherichia.s__Escherichia_coli	3.4731296809
+UniRef50_E2XTA7	3.4729408434
+UniRef50_E2XTA7|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4018178070
+UniRef50_E2XTA7|unclassified	0.0711230364
+UniRef50_B6I424: Glutamate-ammonia-ligase adenylyltransferase	3.4729050384
+UniRef50_B6I424: Glutamate-ammonia-ligase adenylyltransferase|g__Escherichia.s__Escherichia_coli	2.7604837440
+UniRef50_B6I424: Glutamate-ammonia-ligase adenylyltransferase|unclassified	0.7124212944
+UniRef50_S4IHG3	3.4722222222
+UniRef50_S4IHG3|unclassified	3.4722222222
+UniRef50_A6LRW6	3.4722222222
+UniRef50_A6LRW6|g__Clostridium.s__Clostridium_beijerinckii	3.4722222222
+UniRef50_A6TW03: Methyltransferase type 12	3.4722222222
+UniRef50_A6TW03: Methyltransferase type 12|g__Clostridium.s__Clostridium_beijerinckii	3.4722222222
+UniRef50_J8V4N8	3.4722222222
+UniRef50_J8V4N8|unclassified	3.4722222222
+UniRef50_M0ZEK0	3.4722222222
+UniRef50_M0ZEK0|unclassified	3.4722222222
+UniRef50_M9VCG5	3.4722222222
+UniRef50_M9VCG5|g__Propionibacterium.s__Propionibacterium_acnes	3.4722222222
+UniRef50_Q9I3N1: Thiol:disulfide interchange protein DsbE	3.4722222222
+UniRef50_Q9I3N1: Thiol:disulfide interchange protein DsbE|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4722222222
+UniRef50_R4Z8G7	3.4722222222
+UniRef50_R4Z8G7|g__Streptococcus.s__Streptococcus_agalactiae	3.4722222222
+UniRef50_U9A3G1	3.4722222222
+UniRef50_U9A3G1|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4722222222
+UniRef50_UPI0002E6822A: hypothetical protein	3.4722222222
+UniRef50_UPI0002E6822A: hypothetical protein|unclassified	3.4722222222
+UniRef50_E1W2A8: Deoxyribose-phosphate aldolase	3.4713339798
+UniRef50_E1W2A8: Deoxyribose-phosphate aldolase|g__Clostridium.s__Clostridium_beijerinckii	3.4713339798
+UniRef50_A6LR23: ABC-type nitrate/sulfonate/bicarbonate transport systems periplasmic components-like protein	3.4703420080
+UniRef50_A6LR23: ABC-type nitrate/sulfonate/bicarbonate transport systems periplasmic components-like protein|g__Clostridium.s__Clostridium_beijerinckii	3.4703420080
+UniRef50_P00106: Cytochrome c4	3.4699689956
+UniRef50_P00106: Cytochrome c4|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4699689956
+UniRef50_A0A028VSP1	3.4698373325
+UniRef50_A0A028VSP1|unclassified	3.4698373325
+UniRef50_D4HCJ3	3.4690709338
+UniRef50_D4HCJ3|g__Propionibacterium.s__Propionibacterium_acnes	3.4690709338
+UniRef50_Q9K3V7: Pyridoxine/pyridoxamine 5'-phosphate oxidase	3.4685038433
+UniRef50_Q9K3V7: Pyridoxine/pyridoxamine 5'-phosphate oxidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4685038433
+UniRef50_A0A022SAV9: Glucose / Sorbosone dehydrogenase family protein	3.4682173737
+UniRef50_A0A022SAV9: Glucose / Sorbosone dehydrogenase family protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.4682173737
+UniRef50_UPI000474C455: hypothetical protein, partial	3.4675108440
+UniRef50_UPI000474C455: hypothetical protein, partial|unclassified	3.4675108440
+UniRef50_Q5P533: UPF0125 protein rnfH	3.4670407128
+UniRef50_Q5P533: UPF0125 protein rnfH|unclassified	3.4670407128
+UniRef50_A0A023XXU1: Alanine dehydrogenase	3.4669735784
+UniRef50_A0A023XXU1: Alanine dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	3.4669735784
+UniRef50_V9C702: FMN-dependent NADH-azoreductase domain protein	3.4666503630
+UniRef50_V9C702: FMN-dependent NADH-azoreductase domain protein|unclassified	3.4666503630
+UniRef50_A0A037YZ56	3.4662263537
+UniRef50_A0A037YZ56|unclassified	3.4662263537
+UniRef50_A6LUN8: Mg2+ transporter protein, CorA family protein	3.4652438121
+UniRef50_A6LUN8: Mg2+ transporter protein, CorA family protein|g__Clostridium.s__Clostridium_beijerinckii	3.4652438121
+UniRef50_R5QME7: PfkB domain protein	3.4646759644
+UniRef50_R5QME7: PfkB domain protein|unclassified	3.4646759644
+UniRef50_G8VD48: ABC transporter, ATP-binding protein	3.4644179988
+UniRef50_G8VD48: ABC transporter, ATP-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	3.4644179988
+UniRef50_R7LLC2: Cation efflux protein	3.4635903724
+UniRef50_R7LLC2: Cation efflux protein|g__Clostridium.s__Clostridium_beijerinckii	3.4635903724
+UniRef50_D8JIS8	3.4635192009
+UniRef50_D8JIS8|g__Acinetobacter.s__Acinetobacter_baumannii	3.4635192009
+UniRef50_X5K1P9	3.4627685935
+UniRef50_X5K1P9|g__Streptococcus.s__Streptococcus_agalactiae	3.4627685935
+UniRef50_Q313L3: Protein translocase subunit SecA	3.4622198354
+UniRef50_Q313L3: Protein translocase subunit SecA|g__Clostridium.s__Clostridium_beijerinckii	3.4622198354
+UniRef50_Q898U2: BmrU protein	3.4617901044
+UniRef50_Q898U2: BmrU protein|g__Clostridium.s__Clostridium_beijerinckii	3.4617901044
+UniRef50_B0C3D3: 2-isopropylmalate synthase/homocitrate synthase family protein	3.4610729319
+UniRef50_B0C3D3: 2-isopropylmalate synthase/homocitrate synthase family protein|g__Clostridium.s__Clostridium_beijerinckii	3.4610729319
+UniRef50_M4X643: SAM-dependent methyltransferase	3.4610257458
+UniRef50_M4X643: SAM-dependent methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4610257458
+UniRef50_Q8Z8E5: Putative potassium-transporting ATPase B chain	3.4608776306
+UniRef50_Q8Z8E5: Putative potassium-transporting ATPase B chain|g__Escherichia.s__Escherichia_coli	3.3367872354
+UniRef50_Q8Z8E5: Putative potassium-transporting ATPase B chain|unclassified	0.1240903952
+UniRef50_A4J8U4: Putative sporulation transcription regulator WhiA	3.4607561618
+UniRef50_A4J8U4: Putative sporulation transcription regulator WhiA|g__Clostridium.s__Clostridium_beijerinckii	3.4607561618
+UniRef50_A0A023RZA2: Quaternary ammonium transporter	3.4602076125
+UniRef50_A0A023RZA2: Quaternary ammonium transporter|g__Acinetobacter.s__Acinetobacter_baumannii	3.4602076125
+UniRef50_A0A024HMN0	3.4602076125
+UniRef50_A0A024HMN0|unclassified	3.4602076125
+UniRef50_A7FBY0	3.4602076125
+UniRef50_A7FBY0|g__Acinetobacter.s__Acinetobacter_baumannii	3.4602076125
+UniRef50_E8QA00	3.4602076125
+UniRef50_E8QA00|g__Streptococcus.s__Streptococcus_agalactiae	3.4602076125
+UniRef50_P0ACZ1	3.4602076125
+UniRef50_P0ACZ1|g__Escherichia.s__Escherichia_coli	3.4602076125
+UniRef50_UPI0002B8EEE2: hypothetical protein, partial	3.4602076125
+UniRef50_UPI0002B8EEE2: hypothetical protein, partial|g__Escherichia.s__Escherichia_coli	3.4602076125
+UniRef50_UPI0003FF921B: hypothetical protein	3.4598497263
+UniRef50_UPI0003FF921B: hypothetical protein|unclassified	3.4598497263
+UniRef50_UPI0004736D80: oxidoreductase	3.4597261250
+UniRef50_UPI0004736D80: oxidoreductase|unclassified	3.4597261250
+UniRef50_Q6F6X6	3.4594615784
+UniRef50_Q6F6X6|g__Acinetobacter.s__Acinetobacter_baumannii	3.4594615784
+UniRef50_P00465: Nitrogenase molybdenum-iron protein alpha chain (Fragment)	3.4594369552
+UniRef50_P00465: Nitrogenase molybdenum-iron protein alpha chain (Fragment)|unclassified	3.4594369552
+UniRef50_E3E7X0: Formate dehydrogenase, alpha subunit	3.4592797931
+UniRef50_E3E7X0: Formate dehydrogenase, alpha subunit|g__Clostridium.s__Clostridium_beijerinckii	3.4592797931
+UniRef50_J7QAA8	3.4589027830
+UniRef50_J7QAA8|unclassified	3.4589027830
+UniRef50_G2JD06: Nitrate/nitrite transporter	3.4587320958
+UniRef50_G2JD06: Nitrate/nitrite transporter|g__Acinetobacter.s__Acinetobacter_baumannii	3.4587320958
+UniRef50_UPI000381F5B7: hypothetical protein	3.4586497635
+UniRef50_UPI000381F5B7: hypothetical protein|unclassified	3.4586497635
+UniRef50_K9NMX3: Amino acid transporter	3.4571712440
+UniRef50_K9NMX3: Amino acid transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4571712440
+UniRef50_Q1GX76: Transcriptional regulator, TetR family	3.4569359438
+UniRef50_Q1GX76: Transcriptional regulator, TetR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.4569359438
+UniRef50_M9VD49: Sua5/YciO/YrdC/YwlC family protein	3.4553880699
+UniRef50_M9VD49: Sua5/YciO/YrdC/YwlC family protein|g__Propionibacterium.s__Propionibacterium_acnes	3.4553880699
+UniRef50_R5DNX0	3.4545426549
+UniRef50_R5DNX0|unclassified	3.4545426549
+UniRef50_A6M1I3: Amino acid permease-associated region	3.4537644377
+UniRef50_A6M1I3: Amino acid permease-associated region|g__Clostridium.s__Clostridium_beijerinckii	3.4537644377
+UniRef50_W7K686	3.4537293798
+UniRef50_W7K686|unclassified	3.4537293798
+UniRef50_D5ZSF1	3.4518143338
+UniRef50_D5ZSF1|unclassified	3.4518143338
+UniRef50_D6SI32	3.4513393126
+UniRef50_D6SI32|g__Staphylococcus.s__Staphylococcus_aureus	2.8735632184
+UniRef50_D6SI32|unclassified	0.5777760942
+UniRef50_UPI00037FE503: hypothetical protein	3.4512771267
+UniRef50_UPI00037FE503: hypothetical protein|unclassified	3.4512771267
+UniRef50_UPI00036195B0: hypothetical protein	3.4505936302
+UniRef50_UPI00036195B0: hypothetical protein|unclassified	3.4505936302
+UniRef50_T9W1Q6: L-rhamnonate dehydratase	3.4495579608
+UniRef50_T9W1Q6: L-rhamnonate dehydratase|g__Escherichia.s__Escherichia_coli	3.4495579608
+UniRef50_Q1QZT8: Transcriptional regulator, LysR family	3.4494989802
+UniRef50_Q1QZT8: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4494989802
+UniRef50_A6LSX7: Adenine deaminase	3.4490463839
+UniRef50_A6LSX7: Adenine deaminase|g__Clostridium.s__Clostridium_beijerinckii	3.4490463839
+UniRef50_V0SFJ7	3.4488058699
+UniRef50_V0SFJ7|unclassified	3.4488058699
+UniRef50_A6LPV7: Tetratricopeptide TPR_2 repeat protein	3.4486752862
+UniRef50_A6LPV7: Tetratricopeptide TPR_2 repeat protein|g__Clostridium.s__Clostridium_beijerinckii	3.4486752862
+UniRef50_D4HCQ6	3.4482758621
+UniRef50_D4HCQ6|g__Propionibacterium.s__Propionibacterium_acnes	3.4482758621
+UniRef50_K4KNP7	3.4482758621
+UniRef50_K4KNP7|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4482758621
+UniRef50_Q1Q9B8: Single-stranded DNA-binding protein	3.4482758621
+UniRef50_Q1Q9B8: Single-stranded DNA-binding protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.4482758621
+UniRef50_S8XVA1	3.4482758621
+UniRef50_S8XVA1|g__Streptococcus.s__Streptococcus_agalactiae	3.4482758621
+UniRef50_G7M5U8: Type III restriction protein res subunit	3.4476814010
+UniRef50_G7M5U8: Type III restriction protein res subunit|g__Clostridium.s__Clostridium_beijerinckii	3.4476814010
+UniRef50_C6ALZ5: UPF0145 protein NT05HA_2352	3.4467316017
+UniRef50_C6ALZ5: UPF0145 protein NT05HA_2352|unclassified	3.4467316017
+UniRef50_UPI000371926E: hypothetical protein	3.4459054849
+UniRef50_UPI000371926E: hypothetical protein|unclassified	3.4459054849
+UniRef50_W4N2B7: UPF0176 protein X964_08780	3.4456078944
+UniRef50_W4N2B7: UPF0176 protein X964_08780|g__Acinetobacter.s__Acinetobacter_baumannii	3.4064452196
+UniRef50_W4N2B7: UPF0176 protein X964_08780|unclassified	0.0391626748
+UniRef50_B9KT83: Transport system permease protein	3.4447707213
+UniRef50_B9KT83: Transport system permease protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.4447707213
+UniRef50_U7DLP3: Glutathione S-transferase	3.4447583176
+UniRef50_U7DLP3: Glutathione S-transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4447583176
+UniRef50_A0A033BQM9	3.4440682199
+UniRef50_A0A033BQM9|unclassified	3.4440682199
+UniRef50_X5F517: Ribonuclease G	3.4440170342
+UniRef50_X5F517: Ribonuclease G|g__Neisseria.s__Neisseria_meningitidis	3.4440170342
+UniRef50_D3I9D0: Pyruvate formate-lyase 1-activating enzyme	3.4431473791
+UniRef50_D3I9D0: Pyruvate formate-lyase 1-activating enzyme|g__Streptococcus.s__Streptococcus_agalactiae	3.4431473791
+UniRef50_UPI000364A43A: hypothetical protein	3.4429457887
+UniRef50_UPI000364A43A: hypothetical protein|unclassified	3.4429457887
+UniRef50_R9ZG59: Oxidoreductase	3.4427284427
+UniRef50_R9ZG59: Oxidoreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4427284427
+UniRef50_P32160	3.4418263283
+UniRef50_P32160|g__Escherichia.s__Escherichia_coli	3.4418263283
+UniRef50_X0SNC4: Marine sediment metagenome DNA, contig: S01H1_L03829 (Fragment)	3.4414888506
+UniRef50_X0SNC4: Marine sediment metagenome DNA, contig: S01H1_L03829 (Fragment)|unclassified	3.4414888506
+UniRef50_J0PUR2	3.4411591791
+UniRef50_J0PUR2|unclassified	3.4411591791
+UniRef50_B2TI02: Ser/Thr protein phosphatase family protein	3.4409979476
+UniRef50_B2TI02: Ser/Thr protein phosphatase family protein|g__Clostridium.s__Clostridium_beijerinckii	3.4409979476
+UniRef50_F6BJB1: N-acetylglucosamine-6-phosphate deacetylase	3.4408474988
+UniRef50_F6BJB1: N-acetylglucosamine-6-phosphate deacetylase|g__Clostridium.s__Clostridium_beijerinckii	3.4408474988
+UniRef50_D6DJI1: PTS system N-acetylglucosamine-specific IIB component, Glc family (TC 4.A.1.1.2)/PTS system N-acetylglucosamine-specific IIC component, Glc family (TC 4.A.1.1.2)	3.4405150227
+UniRef50_D6DJI1: PTS system N-acetylglucosamine-specific IIB component, Glc family (TC 4.A.1.1.2)/PTS system N-acetylglucosamine-specific IIC component, Glc family (TC 4.A.1.1.2)|g__Clostridium.s__Clostridium_beijerinckii	3.4405150227
+UniRef50_UPI00036763CC: hypothetical protein	3.4397075718
+UniRef50_UPI00036763CC: hypothetical protein|unclassified	3.4397075718
+UniRef50_R4NK63: Valyl-tRNA synthetase	3.4392176865
+UniRef50_R4NK63: Valyl-tRNA synthetase|g__Streptococcus.s__Streptococcus_mutans	3.4392176865
+UniRef50_A4XQZ9	3.4367372741
+UniRef50_A4XQZ9|unclassified	3.4367372741
+UniRef50_B3PC71	3.4364261168
+UniRef50_B3PC71|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4364261168
+UniRef50_C6SS83	3.4364261168
+UniRef50_C6SS83|g__Streptococcus.s__Streptococcus_mutans	3.4364261168
+UniRef50_I3A047	3.4364261168
+UniRef50_I3A047|g__Escherichia.s__Escherichia_coli	3.4364261168
+UniRef50_K4FHC9: Transposase, IS200 family, truncated	3.4364261168
+UniRef50_K4FHC9: Transposase, IS200 family, truncated|g__Staphylococcus.s__Staphylococcus_epidermidis	3.4364261168
+UniRef50_P55768: Probable ribosomal protein in infB 5'region	3.4364261168
+UniRef50_P55768: Probable ribosomal protein in infB 5'region|g__Streptococcus.s__Streptococcus_agalactiae	3.4364261168
+UniRef50_P64579: mRNA interferase HigB	3.4364261168
+UniRef50_P64579: mRNA interferase HigB|g__Escherichia.s__Escherichia_coli	3.4364261168
+UniRef50_U1N4L7	3.4364261168
+UniRef50_U1N4L7|unclassified	3.4364261168
+UniRef50_W3SJV3	3.4364261168
+UniRef50_W3SJV3|g__Acinetobacter.s__Acinetobacter_baumannii	3.4364261168
+UniRef50_W8YQ25	3.4358360717
+UniRef50_W8YQ25|unclassified	3.4358360717
+UniRef50_Q5QV04: 50S ribosomal protein L25	3.4357887299
+UniRef50_Q5QV04: 50S ribosomal protein L25|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4357887299
+UniRef50_I1ASA3	3.4344567669
+UniRef50_I1ASA3|unclassified	3.4344567669
+UniRef50_G7M2Z2: Acriflavin resistance protein	3.4344475064
+UniRef50_G7M2Z2: Acriflavin resistance protein|g__Clostridium.s__Clostridium_beijerinckii	3.4344475064
+UniRef50_F0KNK5: Two-component system response regulator (Ntr family)	3.4342485255
+UniRef50_F0KNK5: Two-component system response regulator (Ntr family)|g__Acinetobacter.s__Acinetobacter_baumannii	3.4342485255
+UniRef50_Q8KTV8	3.4341073986
+UniRef50_Q8KTV8|unclassified	3.4341073986
+UniRef50_A6LXB6: Methyl-accepting chemotaxis sensory transducer	3.4338503231
+UniRef50_A6LXB6: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	3.4338503231
+UniRef50_W5YVW9	3.4338415463
+UniRef50_W5YVW9|unclassified	3.4338415463
+UniRef50_A0R696: Glycine/D-amino acid oxidase	3.4333481814
+UniRef50_A0R696: Glycine/D-amino acid oxidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.4333481814
+UniRef50_X5K5C2	3.4330577443
+UniRef50_X5K5C2|g__Streptococcus.s__Streptococcus_agalactiae	3.4330577443
+UniRef50_Q97LP2: Putative gluconeogenesis factor	3.4329106981
+UniRef50_Q97LP2: Putative gluconeogenesis factor|g__Clostridium.s__Clostridium_beijerinckii	3.4329106981
+UniRef50_V3BAW5: Anhydro-N-acetylmuramic acid kinase	3.4325345600
+UniRef50_V3BAW5: Anhydro-N-acetylmuramic acid kinase|g__Escherichia.s__Escherichia_coli	3.4325345600
+UniRef50_UPI000405BEEA: hypothetical protein	3.4323353958
+UniRef50_UPI000405BEEA: hypothetical protein|unclassified	3.4323353958
+UniRef50_A3W8X8: Universal stress protein family protein (Fragment)	3.4305317324
+UniRef50_A3W8X8: Universal stress protein family protein (Fragment)|unclassified	3.4305317324
+UniRef50_F0N020: ResB family protein	3.4294992481
+UniRef50_F0N020: ResB family protein|g__Neisseria.s__Neisseria_meningitidis	3.4294992481
+UniRef50_UPI00046556E8: MULTISPECIES: hypothetical protein	3.4286304005
+UniRef50_UPI00046556E8: MULTISPECIES: hypothetical protein|unclassified	3.4286304005
+UniRef50_H9V023: TRAP transporter, DctM subunit	3.4279294791
+UniRef50_H9V023: TRAP transporter, DctM subunit|unclassified	3.4279294791
+UniRef50_A6M360: Aminotransferase class-III	3.4275038433
+UniRef50_A6M360: Aminotransferase class-III|g__Clostridium.s__Clostridium_beijerinckii	3.4275038433
+UniRef50_P32444: MreB-like protein	3.4270156351
+UniRef50_P32444: MreB-like protein|g__Clostridium.s__Clostridium_beijerinckii	3.4270156351
+UniRef50_R4K8M3: 1,4-dihydroxy-2-naphthoate octaprenyltransferase	3.4263222477
+UniRef50_R4K8M3: 1,4-dihydroxy-2-naphthoate octaprenyltransferase|g__Clostridium.s__Clostridium_beijerinckii	3.4263222477
+UniRef50_W0YP07	3.4260608417
+UniRef50_W0YP07|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4260608417
+UniRef50_B2TKN9: Xanthine permease	3.4257408265
+UniRef50_B2TKN9: Xanthine permease|g__Clostridium.s__Clostridium_beijerinckii	3.4257408265
+UniRef50_W1DGA8	3.4257166345
+UniRef50_W1DGA8|unclassified	3.4257166345
+UniRef50_W1UDP7: Surface protective antigen SpaA	3.4252873940
+UniRef50_W1UDP7: Surface protective antigen SpaA|g__Clostridium.s__Clostridium_beijerinckii	3.4252873940
+UniRef50_R8ZFQ9: Putative transporter	3.4249574881
+UniRef50_R8ZFQ9: Putative transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4249574881
+UniRef50_H5R6P0	3.4246675756
+UniRef50_H5R6P0|g__Escherichia.s__Escherichia_coli	3.4246675756
+UniRef50_A4XX95: NAD(P)H dehydrogenase (Quinone)	3.4246575342
+UniRef50_A4XX95: NAD(P)H dehydrogenase (Quinone)|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4246575342
+UniRef50_F4A5J4: Conserved protein	3.4246575342
+UniRef50_F4A5J4: Conserved protein|g__Clostridium.s__Clostridium_beijerinckii	3.4246575342
+UniRef50_Q9RXG2	3.4246575342
+UniRef50_Q9RXG2|g__Deinococcus.s__Deinococcus_radiodurans	3.4246575342
+UniRef50_U6A5I3	3.4246575342
+UniRef50_U6A5I3|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4246575342
+UniRef50_W4MRW8: General stress protein 69	3.4246575342
+UniRef50_W4MRW8: General stress protein 69|g__Escherichia.s__Escherichia_coli	3.4246575342
+UniRef50_X5KBR5: D-alanyl-D-alanine carboxypeptidase	3.4237801988
+UniRef50_X5KBR5: D-alanyl-D-alanine carboxypeptidase|g__Streptococcus.s__Streptococcus_agalactiae	3.4237801988
+UniRef50_UPI00047720D7: mannitol ABC transporter permease	3.4233479108
+UniRef50_UPI00047720D7: mannitol ABC transporter permease|unclassified	3.4233479108
+UniRef50_UPI00047CBFD0: hypothetical protein	3.4220568561
+UniRef50_UPI00047CBFD0: hypothetical protein|unclassified	3.4220568561
+UniRef50_W0YLC7	3.4218506680
+UniRef50_W0YLC7|unclassified	3.4218506680
+UniRef50_UPI0004691DC1: mechanosensitive ion channel protein MscL	3.4209531964
+UniRef50_UPI0004691DC1: mechanosensitive ion channel protein MscL|unclassified	3.4209531964
+UniRef50_X5K0B8: Hydrolase, haloacid dehalogenase-like family	3.4209393700
+UniRef50_X5K0B8: Hydrolase, haloacid dehalogenase-like family|g__Streptococcus.s__Streptococcus_agalactiae	3.4209393700
+UniRef50_X7EHW6	3.4208134945
+UniRef50_X7EHW6|unclassified	3.4208134945
+UniRef50_A9XTE3: Jhp0563-like glycosyltransferase	3.4204925509
+UniRef50_A9XTE3: Jhp0563-like glycosyltransferase|g__Helicobacter.s__Helicobacter_pylori	3.4204925509
+UniRef50_A6M229: 5-dehydro-2-deoxygluconokinase	3.4204545455
+UniRef50_A6M229: 5-dehydro-2-deoxygluconokinase|g__Clostridium.s__Clostridium_beijerinckii	3.4204545455
+UniRef50_I6CXS0: Amidohydrolase family protein	3.4201024563
+UniRef50_I6CXS0: Amidohydrolase family protein|g__Escherichia.s__Escherichia_coli	3.4201024563
+UniRef50_M1LNT9: ABC-type metal ion transport system, periplasmic component/surface adhesin	3.4197516937
+UniRef50_M1LNT9: ABC-type metal ion transport system, periplasmic component/surface adhesin|g__Clostridium.s__Clostridium_beijerinckii	3.4197516937
+UniRef50_C7M9T6: Cation diffusion facilitator family transporter	3.4189354665
+UniRef50_C7M9T6: Cation diffusion facilitator family transporter|g__Propionibacterium.s__Propionibacterium_acnes	3.4189354665
+UniRef50_D2NP87: Serine/threonine protein phosphatase	3.4188034188
+UniRef50_D2NP87: Serine/threonine protein phosphatase|unclassified	3.4188034188
+UniRef50_U6A643: Nicotinamidase family protein YcaC	3.4188034188
+UniRef50_U6A643: Nicotinamidase family protein YcaC|g__Acinetobacter.s__Acinetobacter_baumannii	3.4188034188
+UniRef50_A0A024HB78: Rod shape-determining protein RodA	3.4181955235
+UniRef50_A0A024HB78: Rod shape-determining protein RodA|g__Acinetobacter.s__Acinetobacter_baumannii	3.4181955235
+UniRef50_V8G168	3.4181818182
+UniRef50_V8G168|g__Clostridium.s__Clostridium_beijerinckii	3.4181818182
+UniRef50_UPI0003EB3126: dimethyl sulfoxide reductase, partial	3.4177090116
+UniRef50_UPI0003EB3126: dimethyl sulfoxide reductase, partial|unclassified	3.4177090116
+UniRef50_G3XCW3: B-band O-antigen polymerase	3.4167405706
+UniRef50_G3XCW3: B-band O-antigen polymerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4167405706
+UniRef50_A0A023VMN5: DNA polymerase III subunit epsilon	3.4158863510
+UniRef50_A0A023VMN5: DNA polymerase III subunit epsilon|g__Streptococcus.s__Streptococcus_agalactiae	3.4158863510
+UniRef50_C5X332	3.4158256760
+UniRef50_C5X332|unclassified	3.4158256760
+UniRef50_W7WVT2	3.4156279604
+UniRef50_W7WVT2|unclassified	3.4156279604
+UniRef50_UPI000379D2A4: XRE family transcriptional regulator	3.4151127331
+UniRef50_UPI000379D2A4: XRE family transcriptional regulator|unclassified	3.4151127331
+UniRef50_B7RPE0	3.4144607734
+UniRef50_B7RPE0|unclassified	3.4144607734
+UniRef50_UPI0004782D1F: crotonyl-CoA reductase	3.4142735825
+UniRef50_UPI0004782D1F: crotonyl-CoA reductase|unclassified	3.4142735825
+UniRef50_A3PFT8: ABC transporter related	3.4141583055
+UniRef50_A3PFT8: ABC transporter related|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.4141583055
+UniRef50_I0TI30: Transcriptional regulator, TetR family	3.4140779823
+UniRef50_I0TI30: Transcriptional regulator, TetR family|unclassified	3.4140779823
+UniRef50_G3TAD7	3.4138066149
+UniRef50_G3TAD7|unclassified	3.4138066149
+UniRef50_U8AFA9	3.4136054897
+UniRef50_U8AFA9|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4136054897
+UniRef50_A5FXX0	3.4129692833
+UniRef50_A5FXX0|unclassified	3.4129692833
+UniRef50_B7I4D0: Transcriptional regulator, DeoR family	3.4129692833
+UniRef50_B7I4D0: Transcriptional regulator, DeoR family|g__Acinetobacter.s__Acinetobacter_baumannii	3.4129692833
+UniRef50_P0ABN3: Diacylglycerol kinase	3.4129692833
+UniRef50_P0ABN3: Diacylglycerol kinase|g__Escherichia.s__Escherichia_coli	3.4129692833
+UniRef50_Q6MRB4: Peptidyl-prolyl cis-trans isomerase	3.4129692833
+UniRef50_Q6MRB4: Peptidyl-prolyl cis-trans isomerase|g__Propionibacterium.s__Propionibacterium_acnes	3.4129692833
+UniRef50_Q59266: 4-alpha-glucanotransferase	3.4114503392
+UniRef50_Q59266: 4-alpha-glucanotransferase|g__Clostridium.s__Clostridium_beijerinckii	3.3732545846
+UniRef50_Q59266: 4-alpha-glucanotransferase|unclassified	0.0381957546
+UniRef50_R5A601: Recombination inhibitory protein MutS2	3.4114432602
+UniRef50_R5A601: Recombination inhibitory protein MutS2|g__Streptococcus.s__Streptococcus_agalactiae	3.4114432602
+UniRef50_Q3JHH6	3.4111456483
+UniRef50_Q3JHH6|unclassified	3.4111456483
+UniRef50_W7TJJ5	3.4109097827
+UniRef50_W7TJJ5|unclassified	3.4109097827
+UniRef50_Q9RZC7	3.4089034195
+UniRef50_Q9RZC7|g__Deinococcus.s__Deinococcus_radiodurans	3.4089034195
+UniRef50_Z4GUG2: Beta-lactamase	3.4088337440
+UniRef50_Z4GUG2: Beta-lactamase|unclassified	3.4088337440
+UniRef50_J2XCG5	3.4081017489
+UniRef50_J2XCG5|unclassified	3.4081017489
+UniRef50_Q9ZKP0: Glycerol-3-phosphate dehydrogenase [NAD(P)+]	3.4067363493
+UniRef50_Q9ZKP0: Glycerol-3-phosphate dehydrogenase [NAD(P)+]|g__Helicobacter.s__Helicobacter_pylori	3.4067363493
+UniRef50_UPI00036EA45A: hypothetical protein	3.4065564140
+UniRef50_UPI00036EA45A: hypothetical protein|unclassified	3.4065564140
+UniRef50_A6V686	3.4049029827
+UniRef50_A6V686|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4049029827
+UniRef50_Q3IVS8	3.4046297170
+UniRef50_Q3IVS8|unclassified	3.4046297170
+UniRef50_B1KW86	3.4045963492
+UniRef50_B1KW86|g__Clostridium.s__Clostridium_beijerinckii	3.4045963492
+UniRef50_E9Z346	3.4033787879
+UniRef50_E9Z346|unclassified	3.4033787879
+UniRef50_F4DWI2: Regulatory protein, LuxR	3.4031540258
+UniRef50_F4DWI2: Regulatory protein, LuxR|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4031540258
+UniRef50_U5MYI0: Chitinase A1	3.4024982411
+UniRef50_U5MYI0: Chitinase A1|g__Clostridium.s__Clostridium_beijerinckii	3.4024982411
+UniRef50_D7BIR4	3.4018951604
+UniRef50_D7BIR4|unclassified	3.4018951604
+UniRef50_H3XAF7: DoxX family protein	3.4017838079
+UniRef50_H3XAF7: DoxX family protein|unclassified	3.4017838079
+UniRef50_A0K5P1: Transcriptional regulator, AsnC family	3.4013605442
+UniRef50_A0K5P1: Transcriptional regulator, AsnC family|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4013605442
+UniRef50_D3E0S6	3.4013605442
+UniRef50_D3E0S6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.4013605442
+UniRef50_M4XIG4	3.4013605442
+UniRef50_M4XIG4|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.4013605442
+UniRef50_P19765: Insertion element IS1 protein InsB	3.4013605442
+UniRef50_P19765: Insertion element IS1 protein InsB|g__Escherichia.s__Escherichia_coli	3.4013605442
+UniRef50_Q8U194: Sulfide dehydrogenase subunit beta	3.4013605442
+UniRef50_Q8U194: Sulfide dehydrogenase subunit beta|g__Clostridium.s__Clostridium_beijerinckii	3.4013605442
+UniRef50_Q9RVK2: MutT/nudix family protein	3.4013605442
+UniRef50_Q9RVK2: MutT/nudix family protein|g__Deinococcus.s__Deinococcus_radiodurans	3.4013605442
+UniRef50_R4YI33: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	3.4013605442
+UniRef50_R4YI33: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|g__Escherichia.s__Escherichia_coli	3.4013605442
+UniRef50_W8GMX2: Antitoxin	3.4013605442
+UniRef50_W8GMX2: Antitoxin|g__Escherichia.s__Escherichia_coli	3.4013605442
+UniRef50_UPI00046425B2: coat protein A of bacteriophage Pf1, partial	3.4012793380
+UniRef50_UPI00046425B2: coat protein A of bacteriophage Pf1, partial|unclassified	3.4012793380
+UniRef50_B4RJU2	3.4011725148
+UniRef50_B4RJU2|unclassified	3.4011725148
+UniRef50_V9U275: Two-component hybrid sensor and regulator	3.3996558746
+UniRef50_V9U275: Two-component hybrid sensor and regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3996558746
+UniRef50_I4CRS0: Subtilisin-like serine protease	3.3990420255
+UniRef50_I4CRS0: Subtilisin-like serine protease|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3990420255
+UniRef50_UPI0003B3F1EE: transposase	3.3987326739
+UniRef50_UPI0003B3F1EE: transposase|unclassified	3.3987326739
+UniRef50_B7UXA6: Flagellar L-ring protein	3.3985931011
+UniRef50_B7UXA6: Flagellar L-ring protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3985931011
+UniRef50_D2NRM3: Protein containing TPR repeat	3.3978500200
+UniRef50_D2NRM3: Protein containing TPR repeat|unclassified	3.3978500200
+UniRef50_I2BMM3: SAM dependent methyltransferase	3.3976662840
+UniRef50_I2BMM3: SAM dependent methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3976662840
+UniRef50_A6THJ4: Inosose dehydratase	3.3972292727
+UniRef50_A6THJ4: Inosose dehydratase|g__Clostridium.s__Clostridium_beijerinckii	3.3972292727
+UniRef50_UPI00036D51E5: hypothetical protein	3.3972112771
+UniRef50_UPI00036D51E5: hypothetical protein|unclassified	3.3972112771
+UniRef50_UPI00029DC4AA: PREDICTED: fibrinogen C domain-containing protein 1	3.3970685053
+UniRef50_UPI00029DC4AA: PREDICTED: fibrinogen C domain-containing protein 1|unclassified	3.3970685053
+UniRef50_UPI0003B4DDC0: choline kinase, partial	3.3963086001
+UniRef50_UPI0003B4DDC0: choline kinase, partial|unclassified	3.3963086001
+UniRef50_Q9AS52	3.3953802732
+UniRef50_Q9AS52|unclassified	3.3953802732
+UniRef50_UPI0002DDE848: hypothetical protein	3.3942247355
+UniRef50_UPI0002DDE848: hypothetical protein|unclassified	3.3942247355
+UniRef50_R5XYV5: Aspartate--tRNA ligase	3.3935876430
+UniRef50_R5XYV5: Aspartate--tRNA ligase|g__Clostridium.s__Clostridium_beijerinckii	3.3935876430
+UniRef50_UPI0004765DAC: hypothetical protein	3.3934863187
+UniRef50_UPI0004765DAC: hypothetical protein|unclassified	3.3934863187
+UniRef50_A6LXY1: PAS/PAC sensor hybrid histidine kinase	3.3932581886
+UniRef50_A6LXY1: PAS/PAC sensor hybrid histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	3.3932581886
+UniRef50_UPI0004672B34: molecular chaperone	3.3929178376
+UniRef50_UPI0004672B34: molecular chaperone|unclassified	3.3929178376
+UniRef50_UPI00029AD7C0: ribosomal large subunit pseudouridine synthase A, partial	3.3925765817
+UniRef50_UPI00029AD7C0: ribosomal large subunit pseudouridine synthase A, partial|unclassified	3.3925765817
+UniRef50_A3KUK5	3.3919811885
+UniRef50_A3KUK5|unclassified	3.3919811885
+UniRef50_B0VAC9: Porin	3.3914077493
+UniRef50_B0VAC9: Porin|g__Acinetobacter.s__Acinetobacter_baumannii	3.3914077493
+UniRef50_C1DNK0	3.3907704496
+UniRef50_C1DNK0|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3907704496
+UniRef50_P27897: UTP--glucose-1-phosphate uridylyltransferase	3.3905960079
+UniRef50_P27897: UTP--glucose-1-phosphate uridylyltransferase|unclassified	3.3905960079
+UniRef50_UPI000413BC23: hypothetical protein	3.3898832685
+UniRef50_UPI000413BC23: hypothetical protein|unclassified	3.3898832685
+UniRef50_A4WA61: Acid shock protein	3.3898305085
+UniRef50_A4WA61: Acid shock protein|g__Escherichia.s__Escherichia_coli	3.3898305085
+UniRef50_E9XVL2: AraC family protein regulatory helix-turn-helix domain-containing protein	3.3898305085
+UniRef50_E9XVL2: AraC family protein regulatory helix-turn-helix domain-containing protein|g__Escherichia.s__Escherichia_coli	3.3898305085
+UniRef50_F5XVK9	3.3898305085
+UniRef50_F5XVK9|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3898305085
+UniRef50_L1P8J4	3.3898305085
+UniRef50_L1P8J4|unclassified	3.3898305085
+UniRef50_L5MH70	3.3898305085
+UniRef50_L5MH70|unclassified	3.3898305085
+UniRef50_P0ACN2	3.3898305085
+UniRef50_P0ACN2|g__Escherichia.s__Escherichia_coli	3.3898305085
+UniRef50_R5NMQ5	3.3898305085
+UniRef50_R5NMQ5|g__Clostridium.s__Clostridium_beijerinckii	3.3898305085
+UniRef50_UPI000370F3CE: hypothetical protein	3.3898305085
+UniRef50_UPI000370F3CE: hypothetical protein|g__Streptococcus.s__Streptococcus_mutans	3.3898305085
+UniRef50_W1UQQ5: Regulatory protein RecX (Fragment)	3.3890065283
+UniRef50_W1UQQ5: Regulatory protein RecX (Fragment)|unclassified	3.3890065283
+UniRef50_Q8DX62	3.3881414916
+UniRef50_Q8DX62|g__Streptococcus.s__Streptococcus_agalactiae	3.3881414916
+UniRef50_UPI00037FABCF: hypothetical protein	3.3879854891
+UniRef50_UPI00037FABCF: hypothetical protein|unclassified	3.3879854891
+UniRef50_UPI0003AEA53A: PREDICTED: wiskott-Aldrich syndrome protein homolog 1-like	3.3865670187
+UniRef50_UPI0003AEA53A: PREDICTED: wiskott-Aldrich syndrome protein homolog 1-like|unclassified	3.3865670187
+UniRef50_Q3JQS6: DNA mismatch repair protein MutS	3.3854266782
+UniRef50_Q3JQS6: DNA mismatch repair protein MutS|g__Neisseria.s__Neisseria_meningitidis	3.3854266782
+UniRef50_N8PPS0	3.3853133292
+UniRef50_N8PPS0|g__Acinetobacter.s__Acinetobacter_baumannii	3.3853133292
+UniRef50_F2A6D1	3.3845165825
+UniRef50_F2A6D1|unclassified	3.3845165825
+UniRef50_A3M418	3.3840947547
+UniRef50_A3M418|g__Acinetobacter.s__Acinetobacter_baumannii	3.3840947547
+UniRef50_E3GPG2: Phage prohead protease	3.3840947547
+UniRef50_E3GPG2: Phage prohead protease|g__Clostridium.s__Clostridium_beijerinckii	3.3840947547
+UniRef50_Q89FK3: Bll6696 protein	3.3840947547
+UniRef50_Q89FK3: Bll6696 protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.3840947547
+UniRef50_R5WE77	3.3840947547
+UniRef50_R5WE77|unclassified	3.3840947547
+UniRef50_A6LQF1: Cyanophycin synthetase	3.3838765902
+UniRef50_A6LQF1: Cyanophycin synthetase|g__Clostridium.s__Clostridium_beijerinckii	3.3838765902
+UniRef50_U1TXR6	3.3838708903
+UniRef50_U1TXR6|unclassified	3.3838708903
+UniRef50_A6LXV4: Methyl-accepting chemotaxis sensory transducer	3.3838601703
+UniRef50_A6LXV4: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	3.3838601703
+UniRef50_UPI0003EB198B: lactoylglutathione lyase, partial	3.3835141553
+UniRef50_UPI0003EB198B: lactoylglutathione lyase, partial|unclassified	3.3835141553
+UniRef50_A6M161	3.3832672695
+UniRef50_A6M161|g__Clostridium.s__Clostridium_beijerinckii	3.3832672695
+UniRef50_I3TU05: ABC branched chain amino acid transporter, ATPase subunit	3.3830762586
+UniRef50_I3TU05: ABC branched chain amino acid transporter, ATPase subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.3830762586
+UniRef50_D6M4Q5: Urease accessory protein UreF (Fragment)	3.3829921622
+UniRef50_D6M4Q5: Urease accessory protein UreF (Fragment)|unclassified	3.3829921622
+UniRef50_UPI0003B6C6DF: histidine kinase	3.3827874925
+UniRef50_UPI0003B6C6DF: histidine kinase|unclassified	3.3827874925
+UniRef50_S5XV84: Transcriptional regulator, GntR family	3.3822386764
+UniRef50_S5XV84: Transcriptional regulator, GntR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.3822386764
+UniRef50_B9KTR9	3.3803417632
+UniRef50_B9KTR9|unclassified	3.3803417632
+UniRef50_UPI00035EA533: hypothetical protein	3.3799896945
+UniRef50_UPI00035EA533: hypothetical protein|unclassified	3.3799896945
+UniRef50_UPI00026257A0: molybdenum cofactor biosynthesis protein B, partial	3.3791543929
+UniRef50_UPI00026257A0: molybdenum cofactor biosynthesis protein B, partial|unclassified	3.3791543929
+UniRef50_V9QYY3: TetR family transcriptional regulator	3.3786863576
+UniRef50_V9QYY3: TetR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3786863576
+UniRef50_Q82ZC9: Mannonate dehydratase	3.3786192808
+UniRef50_Q82ZC9: Mannonate dehydratase|g__Clostridium.s__Clostridium_beijerinckii	1.8786647192
+UniRef50_Q82ZC9: Mannonate dehydratase|g__Propionibacterium.s__Propionibacterium_acnes	1.4814814815
+UniRef50_Q82ZC9: Mannonate dehydratase|unclassified	0.0184730801
+UniRef50_S0EV96: Nucleoside-diphosphate-sugar epimerases	3.3784040846
+UniRef50_S0EV96: Nucleoside-diphosphate-sugar epimerases|g__Clostridium.s__Clostridium_beijerinckii	3.3784040846
+UniRef50_A5VFL8	3.3783783784
+UniRef50_A5VFL8|unclassified	3.3783783784
+UniRef50_D3E134: Dinitrogenase iron-molybdenum cofactor biosynthesis protein	3.3783783784
+UniRef50_D3E134: Dinitrogenase iron-molybdenum cofactor biosynthesis protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.3783783784
+UniRef50_Q30ST8: Two component transcriptional regulator, winged helix family	3.3783783784
+UniRef50_Q30ST8: Two component transcriptional regulator, winged helix family|g__Helicobacter.s__Helicobacter_pylori	3.3783783784
+UniRef50_U3T069: Nicotinamide-nucleotide adenylyltransferase	3.3783783784
+UniRef50_U3T069: Nicotinamide-nucleotide adenylyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	3.3783783784
+UniRef50_U3T3X0: O-methyltransferase	3.3783783784
+UniRef50_U3T3X0: O-methyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	3.3783783784
+UniRef50_UPI0001B439F7: hypothetical protein	3.3783783784
+UniRef50_UPI0001B439F7: hypothetical protein|unclassified	3.3783783784
+UniRef50_A5VRG1	3.3773373008
+UniRef50_A5VRG1|unclassified	3.3773373008
+UniRef50_P57178: Flagellum-specific ATP synthase	3.3773195735
+UniRef50_P57178: Flagellum-specific ATP synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3773195735
+UniRef50_G2RMW8: Acetylxylan esterase enzyme	3.3765652952
+UniRef50_G2RMW8: Acetylxylan esterase enzyme|g__Clostridium.s__Clostridium_beijerinckii	3.3765652952
+UniRef50_R9ZGA8: AraC family transcriptional regulator	3.3758477579
+UniRef50_R9ZGA8: AraC family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3758477579
+UniRef50_D8JKA9: Homoserine dehydrogenase	3.3752529443
+UniRef50_D8JKA9: Homoserine dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	3.3752529443
+UniRef50_O07347: Signal recognition particle protein	3.3746581156
+UniRef50_O07347: Signal recognition particle protein|g__Deinococcus.s__Deinococcus_radiodurans	3.3746581156
+UniRef50_Q9I4V0: Nitronate monooxygenase	3.3743388666
+UniRef50_Q9I4V0: Nitronate monooxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3743388666
+UniRef50_S5Y2G0: Alpha/beta fold family hydrolase	3.3738710297
+UniRef50_S5Y2G0: Alpha/beta fold family hydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.3738710297
+UniRef50_G7LXK1	3.3734483911
+UniRef50_G7LXK1|g__Clostridium.s__Clostridium_beijerinckii	3.3734483911
+UniRef50_A9M1B3: Potassium uptake protein	3.3728479283
+UniRef50_A9M1B3: Potassium uptake protein|g__Neisseria.s__Neisseria_meningitidis	3.3728479283
+UniRef50_V4FVJ2: IS3-Spn1, transposase	3.3724620751
+UniRef50_V4FVJ2: IS3-Spn1, transposase|unclassified	3.3724620751
+UniRef50_M5EG32	3.3723453880
+UniRef50_M5EG32|unclassified	3.3723453880
+UniRef50_J2X341	3.3721591603
+UniRef50_J2X341|unclassified	3.3721591603
+UniRef50_V0RCB6	3.3718334586
+UniRef50_V0RCB6|unclassified	3.3718334586
+UniRef50_Y5T851	3.3715438673
+UniRef50_Y5T851|unclassified	3.3715438673
+UniRef50_M1MME7: Diguanylate cyclase with GAF sensor	3.3706550839
+UniRef50_M1MME7: Diguanylate cyclase with GAF sensor|g__Clostridium.s__Clostridium_beijerinckii	3.3706550839
+UniRef50_V5SUH2: LysR family transcriptional regulator	3.3703987891
+UniRef50_V5SUH2: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3703987891
+UniRef50_W0YUW2: Phosphoketolase	3.3700975895
+UniRef50_W0YUW2: Phosphoketolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3700975895
+UniRef50_A3WB27	3.3691086811
+UniRef50_A3WB27|unclassified	3.3691086811
+UniRef50_D8JMP7	3.3681443373
+UniRef50_D8JMP7|g__Acinetobacter.s__Acinetobacter_baumannii	3.3681443373
+UniRef50_UPI000345F9C6: hypothetical protein	3.3678180530
+UniRef50_UPI000345F9C6: hypothetical protein|unclassified	3.3678180530
+UniRef50_B7MT09	3.3677051295
+UniRef50_B7MT09|unclassified	3.3677051295
+UniRef50_K3Z0I9	3.3673221671
+UniRef50_K3Z0I9|unclassified	3.3673221671
+UniRef50_B2UUZ0: RNA pyrophosphohydrolase	3.3670033670
+UniRef50_B2UUZ0: RNA pyrophosphohydrolase|g__Helicobacter.s__Helicobacter_pylori	3.3670033670
+UniRef50_B9MQS8: FMN-dependent NADH-azoreductase	3.3670033670
+UniRef50_B9MQS8: FMN-dependent NADH-azoreductase|g__Clostridium.s__Clostridium_beijerinckii	3.3670033670
+UniRef50_C5WIM7: Truncated tagatose 1,6-diphosphate aldolase	3.3670033670
+UniRef50_C5WIM7: Truncated tagatose 1,6-diphosphate aldolase|g__Staphylococcus.s__Staphylococcus_epidermidis	3.3670033670
+UniRef50_C7BXR1	3.3670033670
+UniRef50_C7BXR1|g__Helicobacter.s__Helicobacter_pylori	3.3670033670
+UniRef50_E8Q9Z4	3.3670033670
+UniRef50_E8Q9Z4|g__Streptococcus.s__Streptococcus_agalactiae	3.3670033670
+UniRef50_H2FYL4: Phosphoenolpyruvate carboxykinase	3.3670033670
+UniRef50_H2FYL4: Phosphoenolpyruvate carboxykinase|g__Escherichia.s__Escherichia_coli	3.3670033670
+UniRef50_P77295: Probable HTH-type transcriptional regulator YgaV	3.3670033670
+UniRef50_P77295: Probable HTH-type transcriptional regulator YgaV|g__Escherichia.s__Escherichia_coli	3.3670033670
+UniRef50_Q3J520: Restriction endonuclease	3.3670033670
+UniRef50_Q3J520: Restriction endonuclease|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.3670033670
+UniRef50_UPI000470D85E: hypothetical protein	3.3670033670
+UniRef50_UPI000470D85E: hypothetical protein|unclassified	3.3670033670
+UniRef50_Q9RS27: Alanine--tRNA ligase	3.3667203416
+UniRef50_Q9RS27: Alanine--tRNA ligase|g__Deinococcus.s__Deinococcus_radiodurans	3.3667203416
+UniRef50_C9XJX6: DeoR-family transcriptional regulator	3.3667033845
+UniRef50_C9XJX6: DeoR-family transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	3.3667033845
+UniRef50_K2M973	3.3666983366
+UniRef50_K2M973|unclassified	3.3666983366
+UniRef50_B9KUV4	3.3666377117
+UniRef50_B9KUV4|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.7805629131
+UniRef50_B9KUV4|unclassified	0.5860747985
+UniRef50_F2DNP9: Predicted protein (Fragment)	3.3663911315
+UniRef50_F2DNP9: Predicted protein (Fragment)|unclassified	3.3663911315
+UniRef50_E6DE63	3.3662643193
+UniRef50_E6DE63|unclassified	3.3662643193
+UniRef50_D9SLQ3	3.3662292835
+UniRef50_D9SLQ3|g__Clostridium.s__Clostridium_beijerinckii	3.3662292835
+UniRef50_G4LBK7: Two-component sensor	3.3659642564
+UniRef50_G4LBK7: Two-component sensor|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3659642564
+UniRef50_Q9RY69	3.3659619880
+UniRef50_Q9RY69|g__Deinococcus.s__Deinococcus_radiodurans	3.3659619880
+UniRef50_G8VLG4: ErfK/YbiS/YcfS/YnhG	3.3652453624
+UniRef50_G8VLG4: ErfK/YbiS/YcfS/YnhG|g__Propionibacterium.s__Propionibacterium_acnes	3.3652453624
+UniRef50_Q21RX2	3.3650425486
+UniRef50_Q21RX2|unclassified	3.3650425486
+UniRef50_P31129: Diguanylate cyclase YdeH	3.3648279200
+UniRef50_P31129: Diguanylate cyclase YdeH|g__Escherichia.s__Escherichia_coli	3.3648279200
+UniRef50_B8IWH2	3.3648142638
+UniRef50_B8IWH2|unclassified	3.3648142638
+UniRef50_Z4K4V4	3.3635899274
+UniRef50_Z4K4V4|unclassified	3.3635899274
+UniRef50_L8G2I1	3.3627759838
+UniRef50_L8G2I1|unclassified	3.3627759838
+UniRef50_UPI00040EADB4: hypothetical protein	3.3625880896
+UniRef50_UPI00040EADB4: hypothetical protein|unclassified	3.3625880896
+UniRef50_UPI00047C8194: PTS fructose transporter subunit IIC, partial	3.3621358282
+UniRef50_UPI00047C8194: PTS fructose transporter subunit IIC, partial|g__Clostridium.s__Clostridium_beijerinckii	3.2891981993
+UniRef50_UPI00047C8194: PTS fructose transporter subunit IIC, partial|unclassified	0.0729376290
+UniRef50_Q88F24: Cell division protein ZipA homolog	3.3617667481
+UniRef50_Q88F24: Cell division protein ZipA homolog|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3617667481
+UniRef50_UPI0003B580E0: NADH-quinone oxidoreductase subunit N	3.3615740974
+UniRef50_UPI0003B580E0: NADH-quinone oxidoreductase subunit N|unclassified	3.3615740974
+UniRef50_B0VTM3: Signal peptidase I	3.3612121015
+UniRef50_B0VTM3: Signal peptidase I|g__Acinetobacter.s__Acinetobacter_baumannii	3.3612121015
+UniRef50_P26171: Bacteriochlorophyll synthase 44.5 kDa chain	3.3611694753
+UniRef50_P26171: Bacteriochlorophyll synthase 44.5 kDa chain|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.3463365767
+UniRef50_P26171: Bacteriochlorophyll synthase 44.5 kDa chain|unclassified	0.0148328986
+UniRef50_O87406: UPF0070 protein NGO0425	3.3611125198
+UniRef50_O87406: UPF0070 protein NGO0425|g__Neisseria.s__Neisseria_meningitidis	3.3611125198
+UniRef50_B2TPA5: Cell division protein FtsA	3.3604889454
+UniRef50_B2TPA5: Cell division protein FtsA|g__Clostridium.s__Clostridium_beijerinckii	3.3604889454
+UniRef50_R4WNT0: 3-hydroxyacyl-CoA dehydrogenase NAD-binding protein	3.3604399527
+UniRef50_R4WNT0: 3-hydroxyacyl-CoA dehydrogenase NAD-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.3604399527
+UniRef50_R7E993: ABC transporter ATP-binding protein	3.3592238920
+UniRef50_R7E993: ABC transporter ATP-binding protein|g__Clostridium.s__Clostridium_beijerinckii	3.3592238920
+UniRef50_I6RIQ3: Two-component sensor	3.3591036426
+UniRef50_I6RIQ3: Two-component sensor|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3591036426
+UniRef50_P31450: Putative inactive 6-phospho-alpha-glucosidase	3.3590305269
+UniRef50_P31450: Putative inactive 6-phospho-alpha-glucosidase|g__Escherichia.s__Escherichia_coli	3.3590305269
+UniRef50_UPI0004799DC8: hypothetical protein	3.3588811179
+UniRef50_UPI0004799DC8: hypothetical protein|unclassified	3.3588811179
+UniRef50_A0A058ZLV2: Tim44 family protein	3.3587157230
+UniRef50_A0A058ZLV2: Tim44 family protein|unclassified	3.3587157230
+UniRef50_A4WX56: Lytic transglycosylase, catalytic	3.3585435595
+UniRef50_A4WX56: Lytic transglycosylase, catalytic|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.3585435595
+UniRef50_P23160: 34.2 kDa protein in rubredoxin operon	3.3570084886
+UniRef50_P23160: 34.2 kDa protein in rubredoxin operon|g__Clostridium.s__Clostridium_beijerinckii	3.2660267020
+UniRef50_P23160: 34.2 kDa protein in rubredoxin operon|unclassified	0.0909817867
+UniRef50_D6B3T3: Polyketide synthase (Fragment)	3.3570027964
+UniRef50_D6B3T3: Polyketide synthase (Fragment)|unclassified	3.3570027964
+UniRef50_A6LVD8	3.3557046980
+UniRef50_A6LVD8|g__Clostridium.s__Clostridium_beijerinckii	3.3557046980
+UniRef50_B7UXV5	3.3557046980
+UniRef50_B7UXV5|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3557046980
+UniRef50_E3XRQ7	3.3557046980
+UniRef50_E3XRQ7|unclassified	3.3557046980
+UniRef50_M4WYS0	3.3557046980
+UniRef50_M4WYS0|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3557046980
+UniRef50_M9BNZ7	3.3557046980
+UniRef50_M9BNZ7|g__Escherichia.s__Escherichia_coli	3.3557046980
+UniRef50_P76196	3.3557046980
+UniRef50_P76196|g__Escherichia.s__Escherichia_coli	3.3557046980
+UniRef50_Q6A5U6: 30S ribosomal protein S14	3.3557046980
+UniRef50_Q6A5U6: 30S ribosomal protein S14|g__Propionibacterium.s__Propionibacterium_acnes	3.3557046980
+UniRef50_Q8FKB1	3.3557046980
+UniRef50_Q8FKB1|g__Escherichia.s__Escherichia_coli	3.3557046980
+UniRef50_UPI00036C40FA: hypothetical protein	3.3557046980
+UniRef50_UPI00036C40FA: hypothetical protein|unclassified	3.3557046980
+UniRef50_UPI000255A9B5: polyhydroxyalkanoate depolymerase, intracellular	3.3556973925
+UniRef50_UPI000255A9B5: polyhydroxyalkanoate depolymerase, intracellular|unclassified	3.3556973925
+UniRef50_F2KZY9: Metal ion transporter, metal ion (Mn2+/Fe2+) transporter (Nramp) family	3.3555465833
+UniRef50_F2KZY9: Metal ion transporter, metal ion (Mn2+/Fe2+) transporter (Nramp) family|g__Clostridium.s__Clostridium_beijerinckii	3.3555465833
+UniRef50_D7YBI2	3.3535476330
+UniRef50_D7YBI2|unclassified	3.3535476330
+UniRef50_S5XSF5: Nitrilotriacetate monooxygenase family FMN-dependent	3.3530011187
+UniRef50_S5XSF5: Nitrilotriacetate monooxygenase family FMN-dependent|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3530011187
+UniRef50_X5KBI5	3.3520848937
+UniRef50_X5KBI5|g__Streptococcus.s__Streptococcus_agalactiae	3.3520848937
+UniRef50_W4TG87: Oligopeptide ABC transporter	3.3519587052
+UniRef50_W4TG87: Oligopeptide ABC transporter|unclassified	3.3519587052
+UniRef50_Q4EJM8	3.3518537532
+UniRef50_Q4EJM8|unclassified	3.3518537532
+UniRef50_Q00853: Homocitrate synthase subunit alpha	3.3512742295
+UniRef50_Q00853: Homocitrate synthase subunit alpha|g__Clostridium.s__Clostridium_beijerinckii	3.3512742295
+UniRef50_I1ZJ75: N-acetylneuraminate lyase	3.3508493492
+UniRef50_I1ZJ75: N-acetylneuraminate lyase|g__Streptococcus.s__Streptococcus_agalactiae	3.3508493492
+UniRef50_F2ABA7	3.3507494971
+UniRef50_F2ABA7|unclassified	3.3507494971
+UniRef50_UPI000376B804: hypothetical protein	3.3506680975
+UniRef50_UPI000376B804: hypothetical protein|unclassified	3.3506680975
+UniRef50_Q3A6U9: Flotillin band_7_stomatin-like domain protein	3.3506492057
+UniRef50_Q3A6U9: Flotillin band_7_stomatin-like domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.3506492057
+UniRef50_Q03CD2: Purine nucleoside phosphorylase DeoD-type	3.3501735831
+UniRef50_Q03CD2: Purine nucleoside phosphorylase DeoD-type|g__Streptococcus.s__Streptococcus_agalactiae	2.9807318563
+UniRef50_Q03CD2: Purine nucleoside phosphorylase DeoD-type|unclassified	0.3694417268
+UniRef50_L1K8Q0	3.3501235539
+UniRef50_L1K8Q0|unclassified	3.3501235539
+UniRef50_UPI00036E49BC: hypothetical protein	3.3499873964
+UniRef50_UPI00036E49BC: hypothetical protein|unclassified	3.3499873964
+UniRef50_UPI0002F27B8E: hypothetical protein	3.3497260031
+UniRef50_UPI0002F27B8E: hypothetical protein|unclassified	3.3497260031
+UniRef50_L8PB26: Putative Linear gramicidin synthetase LgrC	3.3484180660
+UniRef50_L8PB26: Putative Linear gramicidin synthetase LgrC|unclassified	3.3484180660
+UniRef50_M9RJL9	3.3478275112
+UniRef50_M9RJL9|unclassified	3.3478275112
+UniRef50_M1MYX8: Methyl-accepting chemotaxis protein	3.3478061935
+UniRef50_M1MYX8: Methyl-accepting chemotaxis protein|g__Clostridium.s__Clostridium_beijerinckii	3.3478061935
+UniRef50_E8PAF3: Glycerate kinase	3.3476780194
+UniRef50_E8PAF3: Glycerate kinase|g__Acinetobacter.s__Acinetobacter_baumannii	3.3476780194
+UniRef50_UPI0003601EED: hypothetical protein, partial	3.3468650929
+UniRef50_UPI0003601EED: hypothetical protein, partial|unclassified	3.3468650929
+UniRef50_F0K4Y1: 2,3-cyclic-nucleotide 2'phosphodiesterase (Duplication)	3.3452910972
+UniRef50_F0K4Y1: 2,3-cyclic-nucleotide 2'phosphodiesterase (Duplication)|g__Clostridium.s__Clostridium_beijerinckii	3.3452910972
+UniRef50_A0RVL4	3.3444816054
+UniRef50_A0RVL4|unclassified	3.3444816054
+UniRef50_I1ATU0: IS66 Orf2 family protein (Fragment)	3.3444816054
+UniRef50_I1ATU0: IS66 Orf2 family protein (Fragment)|unclassified	3.3444816054
+UniRef50_K2BIL7: Band 7 protein (Fragment)	3.3444816054
+UniRef50_K2BIL7: Band 7 protein (Fragment)|unclassified	3.3444816054
+UniRef50_M4YX01: RNA binding protein	3.3444816054
+UniRef50_M4YX01: RNA binding protein|g__Streptococcus.s__Streptococcus_mutans	3.3444816054
+UniRef50_P64438	3.3444816054
+UniRef50_P64438|g__Escherichia.s__Escherichia_coli	3.3444816054
+UniRef50_Q2RNS6: N-(5'-phosphoribosyl)anthranilate isomerase	3.3444816054
+UniRef50_Q2RNS6: N-(5'-phosphoribosyl)anthranilate isomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.3444816054
+UniRef50_Q8DUB6	3.3444816054
+UniRef50_Q8DUB6|g__Streptococcus.s__Streptococcus_mutans	3.3444816054
+UniRef50_Q9I1M3: Bkd operon transcriptional regulator	3.3444816054
+UniRef50_Q9I1M3: Bkd operon transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3444816054
+UniRef50_Q9RZK0	3.3444816054
+UniRef50_Q9RZK0|unclassified	3.3444816054
+UniRef50_UPI00037F9B79: hypothetical protein	3.3444106381
+UniRef50_UPI00037F9B79: hypothetical protein|unclassified	3.3444106381
+UniRef50_W7Q5K9	3.3439511983
+UniRef50_W7Q5K9|unclassified	3.3439511983
+UniRef50_Q2C9Y7	3.3435596498
+UniRef50_Q2C9Y7|unclassified	3.3435596498
+UniRef50_P15931: Peptidoglycan hydrolase FlgJ	3.3419350416
+UniRef50_P15931: Peptidoglycan hydrolase FlgJ|g__Escherichia.s__Escherichia_coli	3.3419350416
+UniRef50_A6LUK3: Glutathione biosynthesis bifunctional protein GshAB	3.3417824461
+UniRef50_A6LUK3: Glutathione biosynthesis bifunctional protein GshAB|g__Clostridium.s__Clostridium_beijerinckii	3.3417824461
+UniRef50_V5VD88	3.3415876019
+UniRef50_V5VD88|g__Acinetobacter.s__Acinetobacter_baumannii	3.3415876019
+UniRef50_A3RQ70	3.3411604488
+UniRef50_A3RQ70|unclassified	3.3411604488
+UniRef50_V9U122	3.3410924621
+UniRef50_V9U122|unclassified	3.3410924621
+UniRef50_A0A022G9Q8	3.3389156966
+UniRef50_A0A022G9Q8|unclassified	3.3389156966
+UniRef50_C1AA13: Twitching mobility protein	3.3381609120
+UniRef50_C1AA13: Twitching mobility protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.3381609120
+UniRef50_A6LY50: MATE efflux family protein	3.3377392096
+UniRef50_A6LY50: MATE efflux family protein|g__Clostridium.s__Clostridium_beijerinckii	3.3377392096
+UniRef50_A4ENK6	3.3373898245
+UniRef50_A4ENK6|unclassified	3.3373898245
+UniRef50_I6GZR0	3.3371914544
+UniRef50_I6GZR0|unclassified	3.3371914544
+UniRef50_C5QY33	3.3370637779
+UniRef50_C5QY33|unclassified	3.3370637779
+UniRef50_P42200: L-cystine transport system permease protein TcyB	3.3353915364
+UniRef50_P42200: L-cystine transport system permease protein TcyB|g__Neisseria.s__Neisseria_meningitidis	3.3353915364
+UniRef50_UPI00047ABAA6: hypothetical protein	3.3351017033
+UniRef50_UPI00047ABAA6: hypothetical protein|unclassified	3.3351017033
+UniRef50_S9QXJ6: CRISPR-associated helicase Cas3 (Fragment)	3.3348854956
+UniRef50_S9QXJ6: CRISPR-associated helicase Cas3 (Fragment)|unclassified	3.3348854956
+UniRef50_G7M1Q4: Tetratricopeptide TPR_1 repeat-containing protein	3.3342482792
+UniRef50_G7M1Q4: Tetratricopeptide TPR_1 repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	3.3342482792
+UniRef50_O34808: Uronate isomerase	3.3336595109
+UniRef50_O34808: Uronate isomerase|g__Clostridium.s__Clostridium_beijerinckii	3.2808809914
+UniRef50_O34808: Uronate isomerase|unclassified	0.0527785195
+UniRef50_K1KS04	3.3333333333
+UniRef50_K1KS04|unclassified	3.3333333333
+UniRef50_A6LYF7	3.3333333333
+UniRef50_A6LYF7|g__Clostridium.s__Clostridium_beijerinckii	3.3333333333
+UniRef50_C3BGD6: Transcriptional regulator, HxlR	3.3333333333
+UniRef50_C3BGD6: Transcriptional regulator, HxlR|g__Clostridium.s__Clostridium_beijerinckii	3.3333333333
+UniRef50_F8YFB2: Phenylacetate-CoA oxygenase subunit PaaB	3.3333333333
+UniRef50_F8YFB2: Phenylacetate-CoA oxygenase subunit PaaB|unclassified	3.3333333333
+UniRef50_J7R9F7	3.3333333333
+UniRef50_J7R9F7|g__Escherichia.s__Escherichia_coli	3.3333333333
+UniRef50_M9VHR6: Glycerophosphodiester phosphodiesterase family protein	3.3333333333
+UniRef50_M9VHR6: Glycerophosphodiester phosphodiesterase family protein|g__Propionibacterium.s__Propionibacterium_acnes	3.3333333333
+UniRef50_N3TQ95: Putative membrane protein	3.3333333333
+UniRef50_N3TQ95: Putative membrane protein|g__Escherichia.s__Escherichia_coli	3.3333333333
+UniRef50_Q1H4N6: 50S ribosomal protein L4	3.3333333333
+UniRef50_Q1H4N6: 50S ribosomal protein L4|g__Acinetobacter.s__Acinetobacter_baumannii	3.3333333333
+UniRef50_V7EJU8	3.3328948869
+UniRef50_V7EJU8|unclassified	3.3328948869
+UniRef50_Q02QL1: Phosphonate metabolism protein	3.3322975813
+UniRef50_Q02QL1: Phosphonate metabolism protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3322975813
+UniRef50_UPI00046F08AF: membrane protein	3.3322417135
+UniRef50_UPI00046F08AF: membrane protein|unclassified	3.3322417135
+UniRef50_U6AK94	3.3322320409
+UniRef50_U6AK94|unclassified	3.3322320409
+UniRef50_Q9RZD4	3.3320722112
+UniRef50_Q9RZD4|g__Deinococcus.s__Deinococcus_radiodurans	3.3320722112
+UniRef50_UPI0001913A97: hypothetical protein, partial	3.3317600776
+UniRef50_UPI0001913A97: hypothetical protein, partial|unclassified	3.3317600776
+UniRef50_A6M087: AraC-type transcriptional regulator domain protein	3.3314763540
+UniRef50_A6M087: AraC-type transcriptional regulator domain protein|g__Clostridium.s__Clostridium_beijerinckii	3.3314763540
+UniRef50_Z9PLW1: Phage protein	3.3313580809
+UniRef50_Z9PLW1: Phage protein|unclassified	3.3313580809
+UniRef50_A8LQS6	3.3298884548
+UniRef50_A8LQS6|unclassified	3.3298884548
+UniRef50_W8S5Z8: Dihydroneopterin aldolase / delta 1-pyrroline-5-carboxylate synthetase	3.3296419343
+UniRef50_W8S5Z8: Dihydroneopterin aldolase / delta 1-pyrroline-5-carboxylate synthetase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.3296419343
+UniRef50_A6LVE7: Multi-sensor hybrid histidine kinase	3.3291809636
+UniRef50_A6LVE7: Multi-sensor hybrid histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	3.3291809636
+UniRef50_A5VYK1: Beta-lactamase domain protein	3.3286136573
+UniRef50_A5VYK1: Beta-lactamase domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3286136573
+UniRef50_Q3J632: Transcriptional regulator, GntR family	3.3284032770
+UniRef50_Q3J632: Transcriptional regulator, GntR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.3284032770
+UniRef50_R0F7K2: Phage protein (Fragment)	3.3281402966
+UniRef50_R0F7K2: Phage protein (Fragment)|unclassified	3.3281402966
+UniRef50_K7ARY8	3.3280907784
+UniRef50_K7ARY8|unclassified	3.3280907784
+UniRef50_R6CBZ9	3.3278699417
+UniRef50_R6CBZ9|g__Clostridium.s__Clostridium_beijerinckii	3.3278699417
+UniRef50_Q6D4E2: Spermidine/putrescine import ATP-binding protein PotA	3.3263024539
+UniRef50_Q6D4E2: Spermidine/putrescine import ATP-binding protein PotA|g__Escherichia.s__Escherichia_coli	2.8132127043
+UniRef50_Q6D4E2: Spermidine/putrescine import ATP-binding protein PotA|unclassified	0.5130897496
+UniRef50_A8Y0M2: Protein CBG21728	3.3259797891
+UniRef50_A8Y0M2: Protein CBG21728|unclassified	3.3259797891
+UniRef50_A6LT68: Phage tail tape measure protein, TP901 family	3.3254118303
+UniRef50_A6LT68: Phage tail tape measure protein, TP901 family|g__Clostridium.s__Clostridium_beijerinckii	3.3254118303
+UniRef50_P18249: RNA polymerase principal sigma factor HrdD	3.3249152650
+UniRef50_P18249: RNA polymerase principal sigma factor HrdD|g__Propionibacterium.s__Propionibacterium_acnes	3.3249152650
+UniRef50_W8RY81: ATP phosphoribosyltransferase regulatory subunit	3.3248979296
+UniRef50_W8RY81: ATP phosphoribosyltransferase regulatory subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.3248979296
+UniRef50_A6LTC6: Methyl-accepting chemotaxis sensory transducer	3.3240487149
+UniRef50_A6LTC6: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	3.3240487149
+UniRef50_A0KMZ9: Glutamyl-tRNA reductase	3.3226208189
+UniRef50_A0KMZ9: Glutamyl-tRNA reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3226208189
+UniRef50_A1IRV5	3.3224058192
+UniRef50_A1IRV5|g__Neisseria.s__Neisseria_meningitidis	3.3224058192
+UniRef50_Q1IY18: RNA ligase of LigT family	3.3222591362
+UniRef50_Q1IY18: RNA ligase of LigT family|g__Deinococcus.s__Deinococcus_radiodurans	3.3222591362
+UniRef50_Q8ZBZ2: Na(+)-translocating NADH-quinone reductase subunit C	3.3222591362
+UniRef50_Q8ZBZ2: Na(+)-translocating NADH-quinone reductase subunit C|g__Neisseria.s__Neisseria_meningitidis	3.3222591362
+UniRef50_A0QSH2: Lysine exporter protein (LYSE/YGGA)	3.3220120485
+UniRef50_A0QSH2: Lysine exporter protein (LYSE/YGGA)|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3220120485
+UniRef50_I4AP74: O-acetylhomoserine sulfhydrylase	3.3216507215
+UniRef50_I4AP74: O-acetylhomoserine sulfhydrylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3216507215
+UniRef50_G8VJE3: BadF/BadG/BcrA/BcrD ATPase family protein	3.3211694926
+UniRef50_G8VJE3: BadF/BadG/BcrA/BcrD ATPase family protein|g__Propionibacterium.s__Propionibacterium_acnes	3.3211694926
+UniRef50_B9J3P1	3.3206533093
+UniRef50_B9J3P1|unclassified	3.3206533093
+UniRef50_UPI0001E88FDA: transcriptional regulator, ArsR family protein	3.3199150230
+UniRef50_UPI0001E88FDA: transcriptional regulator, ArsR family protein|unclassified	3.3199150230
+UniRef50_Q8ZBZ0: Na(+)-translocating NADH-quinone reductase subunit A	3.3183781559
+UniRef50_Q8ZBZ0: Na(+)-translocating NADH-quinone reductase subunit A|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0478635494
+UniRef50_Q8ZBZ0: Na(+)-translocating NADH-quinone reductase subunit A|unclassified	0.2705146065
+UniRef50_R9VQB8: Major facilitator transporter	3.3182079715
+UniRef50_R9VQB8: Major facilitator transporter|g__Clostridium.s__Clostridium_beijerinckii	3.3182079715
+UniRef50_C7ZSY3	3.3178578495
+UniRef50_C7ZSY3|g__Staphylococcus.s__Staphylococcus_aureus	2.3419203747
+UniRef50_C7ZSY3|unclassified	0.9759374748
+UniRef50_R6S4R3: NADH:flavin oxidoreductase/NADH oxidase	3.3177710693
+UniRef50_R6S4R3: NADH:flavin oxidoreductase/NADH oxidase|g__Clostridium.s__Clostridium_beijerinckii	3.3177710693
+UniRef50_UPI0003AD8E90: PREDICTED: collagen alpha-1(I) chain-like	3.3172435158
+UniRef50_UPI0003AD8E90: PREDICTED: collagen alpha-1(I) chain-like|unclassified	3.3172435158
+UniRef50_X6XYA2	3.3170818657
+UniRef50_X6XYA2|unclassified	3.3170818657
+UniRef50_A6M2U8: Methyl-accepting chemotaxis sensory transducer	3.3170379405
+UniRef50_A6M2U8: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	3.3170379405
+UniRef50_Q9RRP9	3.3167495854
+UniRef50_Q9RRP9|g__Deinococcus.s__Deinococcus_radiodurans	3.3167495854
+UniRef50_F0KFX3	3.3159089448
+UniRef50_F0KFX3|g__Acinetobacter.s__Acinetobacter_baumannii	3.3159089448
+UniRef50_UPI0003503BD0	3.3157217356
+UniRef50_UPI0003503BD0|unclassified	3.3157217356
+UniRef50_D4H949: YD repeat protein (3 repeats)	3.3155118890
+UniRef50_D4H949: YD repeat protein (3 repeats)|g__Propionibacterium.s__Propionibacterium_acnes	3.3155118890
+UniRef50_R5X801	3.3146097100
+UniRef50_R5X801|unclassified	3.3146097100
+UniRef50_UPI0003B7A139: NUDIX hydrolase	3.3132286287
+UniRef50_UPI0003B7A139: NUDIX hydrolase|unclassified	3.3132286287
+UniRef50_A6LWB4: SEC-C motif domain protein	3.3132274123
+UniRef50_A6LWB4: SEC-C motif domain protein|g__Clostridium.s__Clostridium_beijerinckii	3.3132274123
+UniRef50_W8RNU6: PhbF	3.3131264205
+UniRef50_W8RNU6: PhbF|unclassified	3.3131264205
+UniRef50_G9WG99: Alpha-glucosidase	3.3130982985
+UniRef50_G9WG99: Alpha-glucosidase|g__Clostridium.s__Clostridium_beijerinckii	3.3130982985
+UniRef50_U5MRX8: Sensor histidine kinase ResE	3.3130690724
+UniRef50_U5MRX8: Sensor histidine kinase ResE|g__Clostridium.s__Clostridium_beijerinckii	3.3130690724
+UniRef50_U3T7G4: Oligopeptide transport system permease protein	3.3118126885
+UniRef50_U3T7G4: Oligopeptide transport system permease protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.3118126885
+UniRef50_UPI0003615D0A: 30S ribosomal protein S15, partial	3.3115276153
+UniRef50_UPI0003615D0A: 30S ribosomal protein S15, partial|unclassified	3.3115276153
+UniRef50_I0EQ26: GDP-L-fucose synthase	3.3114414451
+UniRef50_I0EQ26: GDP-L-fucose synthase|g__Helicobacter.s__Helicobacter_pylori	3.3114414451
+UniRef50_B0VM39: Potassium-transporting ATPase C chain	3.3112673547
+UniRef50_B0VM39: Potassium-transporting ATPase C chain|g__Acinetobacter.s__Acinetobacter_baumannii	3.3112673547
+UniRef50_A0A023RUB5	3.3112582781
+UniRef50_A0A023RUB5|g__Acinetobacter.s__Acinetobacter_baumannii	3.3112582781
+UniRef50_D2ZMQ3	3.3112582781
+UniRef50_D2ZMQ3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.3112582781
+UniRef50_D9SKB5	3.3112582781
+UniRef50_D9SKB5|g__Clostridium.s__Clostridium_beijerinckii	3.3112582781
+UniRef50_E0XYC5	3.3112582781
+UniRef50_E0XYC5|unclassified	3.3112582781
+UniRef50_G0DRX2	3.3112582781
+UniRef50_G0DRX2|g__Propionibacterium.s__Propionibacterium_acnes	3.3112582781
+UniRef50_A6M2M8: ABC-2 type transporter	3.3111215034
+UniRef50_A6M2M8: ABC-2 type transporter|g__Clostridium.s__Clostridium_beijerinckii	3.3111215034
+UniRef50_G0JHK3	3.3101682244
+UniRef50_G0JHK3|unclassified	3.3101682244
+UniRef50_F0K5E7: Translation factor (SUA5)	3.3093918963
+UniRef50_F0K5E7: Translation factor (SUA5)|g__Clostridium.s__Clostridium_beijerinckii	3.3093918963
+UniRef50_X6C1Q7	3.3092593445
+UniRef50_X6C1Q7|unclassified	3.3092593445
+UniRef50_A0A011PL33	3.3074677954
+UniRef50_A0A011PL33|unclassified	3.3074677954
+UniRef50_S7IQP8	3.3065870317
+UniRef50_S7IQP8|unclassified	3.3065870317
+UniRef50_G7M7X4: Replisome organizer region-containing protein	3.3060238230
+UniRef50_G7M7X4: Replisome organizer region-containing protein|g__Clostridium.s__Clostridium_beijerinckii	3.3060238230
+UniRef50_B7H068: Histidine--tRNA ligase	3.3059863868
+UniRef50_B7H068: Histidine--tRNA ligase|g__Acinetobacter.s__Acinetobacter_baumannii	3.2589438269
+UniRef50_B7H068: Histidine--tRNA ligase|unclassified	0.0470425599
+UniRef50_P0AAT0	3.3059312625
+UniRef50_P0AAT0|unclassified	3.3059312625
+UniRef50_S5CXB4: Choline dehydrogenase-related flavoprotein	3.3056761177
+UniRef50_S5CXB4: Choline dehydrogenase-related flavoprotein|g__Acinetobacter.s__Acinetobacter_baumannii	3.3056761177
+UniRef50_UPI00039A83E2: NUDIX hydrolase	3.3051843651
+UniRef50_UPI00039A83E2: NUDIX hydrolase|unclassified	3.3051843651
+UniRef50_A0A024C6Z7: HrgA like protein	3.3050154597
+UniRef50_A0A024C6Z7: HrgA like protein|g__Helicobacter.s__Helicobacter_pylori	3.3050154597
+UniRef50_Q8DWW5: Transporter, putative	3.3042092775
+UniRef50_Q8DWW5: Transporter, putative|g__Streptococcus.s__Streptococcus_agalactiae	3.3042092775
+UniRef50_UPI0003654A4C: hypothetical protein	3.3038334131
+UniRef50_UPI0003654A4C: hypothetical protein|unclassified	3.3038334131
+UniRef50_E2XNC4: Oligopeptidase B	3.3036729977
+UniRef50_E2XNC4: Oligopeptidase B|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3036729977
+UniRef50_O48917: UDP-sulfoquinovose synthase, chloroplastic	3.3030365699
+UniRef50_O48917: UDP-sulfoquinovose synthase, chloroplastic|unclassified	3.3030365699
+UniRef50_Q3DD86: Delta subunit RNA polymerase	3.3028852769
+UniRef50_Q3DD86: Delta subunit RNA polymerase|unclassified	3.3028852769
+UniRef50_UPI0003B36C82: acetyltransferase, partial	3.3027175563
+UniRef50_UPI0003B36C82: acetyltransferase, partial|unclassified	3.3027175563
+UniRef50_UPI000248C060: NH(3)-dependent NAD+ synthetase	3.3023041656
+UniRef50_UPI000248C060: NH(3)-dependent NAD+ synthetase|unclassified	3.3023041656
+UniRef50_A7NI76: AAA ATPase central domain protein	3.3020047773
+UniRef50_A7NI76: AAA ATPase central domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.3020047773
+UniRef50_V4XDY8	3.3015509941
+UniRef50_V4XDY8|unclassified	3.3015509941
+UniRef50_T9J1J8	3.3013205696
+UniRef50_T9J1J8|unclassified	3.3013205696
+UniRef50_U5MQB3: BglP: PTS system beta-glucoside-specific EIIBCA component	3.3010541863
+UniRef50_U5MQB3: BglP: PTS system beta-glucoside-specific EIIBCA component|g__Clostridium.s__Clostridium_beijerinckii	3.3010541863
+UniRef50_S7N8D9	3.3003910535
+UniRef50_S7N8D9|unclassified	3.3003910535
+UniRef50_C8VZ79: Beta-lactamase domain protein	3.3003300330
+UniRef50_C8VZ79: Beta-lactamase domain protein|g__Clostridium.s__Clostridium_beijerinckii	3.3003300330
+UniRef50_H4STA4: Phosphatase	3.3003300330
+UniRef50_H4STA4: Phosphatase|g__Escherichia.s__Escherichia_coli	3.3003300330
+UniRef50_N5R5Q8	3.3003300330
+UniRef50_N5R5Q8|g__Staphylococcus.s__Staphylococcus_aureus	3.3003300330
+UniRef50_P75679: Transposase InsN for insertion sequence element IS911A	3.3003300330
+UniRef50_P75679: Transposase InsN for insertion sequence element IS911A|g__Escherichia.s__Escherichia_coli	3.3003300330
+UniRef50_P77214: Cation efflux system protein CusF	3.3003300330
+UniRef50_P77214: Cation efflux system protein CusF|g__Escherichia.s__Escherichia_coli	3.3003300330
+UniRef50_Q0SWM0: Probable RNA 2'-phosphotransferase	3.3003300330
+UniRef50_Q0SWM0: Probable RNA 2'-phosphotransferase|g__Clostridium.s__Clostridium_beijerinckii	3.3003300330
+UniRef50_G8QIK2: Cysteine synthase	3.2995916746
+UniRef50_G8QIK2: Cysteine synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2995916746
+UniRef50_U8S964	3.2992534945
+UniRef50_U8S964|unclassified	3.2992534945
+UniRef50_W6M578	3.2981650309
+UniRef50_W6M578|unclassified	3.2981650309
+UniRef50_A4WT49: Flagellar hook capping protein	3.2981410270
+UniRef50_A4WT49: Flagellar hook capping protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.1152647975
+UniRef50_A4WT49: Flagellar hook capping protein|unclassified	0.1828762295
+UniRef50_Q972W3: Urease accessory protein UreG	3.2978804389
+UniRef50_Q972W3: Urease accessory protein UreG|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2978804389
+UniRef50_UPI000467C7DA: hypothetical protein	3.2976288323
+UniRef50_UPI000467C7DA: hypothetical protein|unclassified	3.2976288323
+UniRef50_R9NNP7: Transcriptional regulator	3.2970675769
+UniRef50_R9NNP7: Transcriptional regulator|unclassified	3.2970675769
+UniRef50_Q57493	3.2967854143
+UniRef50_Q57493|g__Streptococcus.s__Streptococcus_agalactiae	3.2967854143
+UniRef50_J2EUP8	3.2967475956
+UniRef50_J2EUP8|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2371364653
+UniRef50_J2EUP8|unclassified	1.0596111303
+UniRef50_UPI0002376899: ABC transporter, partial	3.2965221575
+UniRef50_UPI0002376899: ABC transporter, partial|unclassified	3.2965221575
+UniRef50_A7FAW2	3.2964894928
+UniRef50_A7FAW2|g__Acinetobacter.s__Acinetobacter_baumannii	3.2964894928
+UniRef50_F0KM17: Lipid A biosynthesis lauroyl acyltransferase (Heat shock protein B)	3.2964448406
+UniRef50_F0KM17: Lipid A biosynthesis lauroyl acyltransferase (Heat shock protein B)|g__Acinetobacter.s__Acinetobacter_baumannii	3.2964448406
+UniRef50_A0A009WPV3: TonB dependent receptor family protein	3.2964049093
+UniRef50_A0A009WPV3: TonB dependent receptor family protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.2964049093
+UniRef50_A6LQW7: ExsB family protein	3.2955470912
+UniRef50_A6LQW7: ExsB family protein|g__Clostridium.s__Clostridium_beijerinckii	3.2955470912
+UniRef50_D8JIY9: AraC-type DNA-binding domain-containing protein	3.2955006883
+UniRef50_D8JIY9: AraC-type DNA-binding domain-containing protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.2955006883
+UniRef50_N1NJD8	3.2950572383
+UniRef50_N1NJD8|unclassified	3.2950572383
+UniRef50_Q8E023: Chloramphenicol acetyltransferase	3.2949018586
+UniRef50_Q8E023: Chloramphenicol acetyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	3.2949018586
+UniRef50_A0A038C8Y6: Cytochrome C (Fragment)	3.2944987587
+UniRef50_A0A038C8Y6: Cytochrome C (Fragment)|unclassified	3.2944987587
+UniRef50_Q6FED0: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	3.2938015596
+UniRef50_Q6FED0: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	3.0377455675
+UniRef50_Q6FED0: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.2560559921
+UniRef50_Q67FW7: DeoX	3.2928535018
+UniRef50_Q67FW7: DeoX|g__Propionibacterium.s__Propionibacterium_acnes	3.2928535018
+UniRef50_A3M7T3	3.2924704584
+UniRef50_A3M7T3|g__Acinetobacter.s__Acinetobacter_baumannii	3.2924704584
+UniRef50_T1DQ36: Putative pe-pgrs family protein (Fragment)	3.2924509384
+UniRef50_T1DQ36: Putative pe-pgrs family protein (Fragment)|unclassified	3.2924509384
+UniRef50_J9JHL4	3.2909968001
+UniRef50_J9JHL4|unclassified	3.2909968001
+UniRef50_Q46TV5: Amidase	3.2905244001
+UniRef50_Q46TV5: Amidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2905244001
+UniRef50_A6LZH5: Cation diffusion facilitator family transporter	3.2900929808
+UniRef50_A6LZH5: Cation diffusion facilitator family transporter|g__Clostridium.s__Clostridium_beijerinckii	3.2900929808
+UniRef50_D4HCN2	3.2894736842
+UniRef50_D4HCN2|g__Propionibacterium.s__Propionibacterium_acnes	3.2894736842
+UniRef50_F4EDD2	3.2894736842
+UniRef50_F4EDD2|g__Streptococcus.s__Streptococcus_mutans	3.2894736842
+UniRef50_P46474	3.2894736842
+UniRef50_P46474|g__Escherichia.s__Escherichia_coli	3.2894736842
+UniRef50_Q2K9B7: Alanyl-tRNA synthetase protein	3.2894736842
+UniRef50_Q2K9B7: Alanyl-tRNA synthetase protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.2894736842
+UniRef50_W6DYU4	3.2894736842
+UniRef50_W6DYU4|g__Staphylococcus.s__Staphylococcus_aureus	3.2894736842
+UniRef50_A5WF94: 3-ketoacyl-CoA thiolase	3.2891155158
+UniRef50_A5WF94: 3-ketoacyl-CoA thiolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2891155158
+UniRef50_R4K7H3: DNA repair protein RecN	3.2884944129
+UniRef50_R4K7H3: DNA repair protein RecN|g__Clostridium.s__Clostridium_beijerinckii	3.2884944129
+UniRef50_X0UXC4: Marine sediment metagenome DNA, contig: S01H1_S07257 (Fragment)	3.2879154027
+UniRef50_X0UXC4: Marine sediment metagenome DNA, contig: S01H1_S07257 (Fragment)|unclassified	3.2879154027
+UniRef50_K0HDE0: tRNA/rRNA cytosine-C5-methylase	3.2878312405
+UniRef50_K0HDE0: tRNA/rRNA cytosine-C5-methylase|g__Propionibacterium.s__Propionibacterium_acnes	3.2878312405
+UniRef50_A9KSS0: UvrABC system protein C	3.2871563015
+UniRef50_A9KSS0: UvrABC system protein C|g__Clostridium.s__Clostridium_beijerinckii	3.2871563015
+UniRef50_UPI000371FCD3: hypothetical protein	3.2862120865
+UniRef50_UPI000371FCD3: hypothetical protein|unclassified	3.2862120865
+UniRef50_G7LY34: ATP-dependent DNA helicase RecQ	3.2861771798
+UniRef50_G7LY34: ATP-dependent DNA helicase RecQ|g__Clostridium.s__Clostridium_beijerinckii	3.2861771798
+UniRef50_K2J4B0	3.2855335751
+UniRef50_K2J4B0|unclassified	3.2855335751
+UniRef50_Q4KED8: Phenazine biosynthesis protein, PhzF family	3.2852874627
+UniRef50_Q4KED8: Phenazine biosynthesis protein, PhzF family|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2852874627
+UniRef50_G0DVM2: ABC transporter ATP-binding protein	3.2848557813
+UniRef50_G0DVM2: ABC transporter ATP-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	3.2848557813
+UniRef50_UPI00016A5286: hypothetical protein	3.2847027613
+UniRef50_UPI00016A5286: hypothetical protein|unclassified	3.2847027613
+UniRef50_F4E2U8: Glycerol dehydrogenase	3.2842610950
+UniRef50_F4E2U8: Glycerol dehydrogenase|g__Streptococcus.s__Streptococcus_agalactiae	3.2842610950
+UniRef50_UPI00046C155A: PREDICTED: LON peptidase N-terminal domain and RING finger protein 2-like	3.2840811044
+UniRef50_UPI00046C155A: PREDICTED: LON peptidase N-terminal domain and RING finger protein 2-like|unclassified	3.2840811044
+UniRef50_UPI00046AB4F5: hypothetical protein	3.2835318240
+UniRef50_UPI00046AB4F5: hypothetical protein|unclassified	3.2835318240
+UniRef50_V9VVJ4	3.2830220376
+UniRef50_V9VVJ4|unclassified	3.2830220376
+UniRef50_G7LXS1: Prophage antirepressor	3.2829122340
+UniRef50_G7LXS1: Prophage antirepressor|g__Clostridium.s__Clostridium_beijerinckii	3.2829122340
+UniRef50_B2TQZ4: Ribosomal RNA small subunit methyltransferase I	3.2826756791
+UniRef50_B2TQZ4: Ribosomal RNA small subunit methyltransferase I|g__Clostridium.s__Clostridium_beijerinckii	3.2826756791
+UniRef50_W6RE07	3.2815190007
+UniRef50_W6RE07|unclassified	3.2815190007
+UniRef50_I2BZE4	3.2810525521
+UniRef50_I2BZE4|unclassified	3.2810525521
+UniRef50_M1MA52: D-alanyl-D-alanine carboxypeptidase	3.2807904526
+UniRef50_M1MA52: D-alanyl-D-alanine carboxypeptidase|g__Clostridium.s__Clostridium_beijerinckii	3.2807904526
+UniRef50_R7Q6I7: Stackhouse genomic scaffold, scaffold_117	3.2798674558
+UniRef50_R7Q6I7: Stackhouse genomic scaffold, scaffold_117|unclassified	3.2798674558
+UniRef50_F4DQW9: FAD dependent oxidoreductase	3.2791081392
+UniRef50_F4DQW9: FAD dependent oxidoreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2791081392
+UniRef50_D4HF95: Transcriptional regulator, DeoR family	3.2786885246
+UniRef50_D4HF95: Transcriptional regulator, DeoR family|g__Propionibacterium.s__Propionibacterium_acnes	3.2786885246
+UniRef50_F4A8L7	3.2786885246
+UniRef50_F4A8L7|g__Clostridium.s__Clostridium_beijerinckii	3.2786885246
+UniRef50_F8HFC0: Conserved domain protein	3.2786885246
+UniRef50_F8HFC0: Conserved domain protein|g__Streptococcus.s__Streptococcus_mutans	3.2786885246
+UniRef50_L7DNA7	3.2786885246
+UniRef50_L7DNA7|unclassified	3.2786885246
+UniRef50_Q3K3I8: HAD-superfamily hydrolase, subfamily IA, variant 3 family protein	3.2786885246
+UniRef50_Q3K3I8: HAD-superfamily hydrolase, subfamily IA, variant 3 family protein|g__Streptococcus.s__Streptococcus_agalactiae	3.2786885246
+UniRef50_UPI0003FD0385: hypothetical protein	3.2786885246
+UniRef50_UPI0003FD0385: hypothetical protein|unclassified	3.2786885246
+UniRef50_V5SST6: Transcriptional regulator	3.2786885246
+UniRef50_V5SST6: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2786885246
+UniRef50_B9KKJ8	3.2782242851
+UniRef50_B9KKJ8|unclassified	3.2782242851
+UniRef50_O65989: PTS system mannitol-specific EIICB component	3.2778904644
+UniRef50_O65989: PTS system mannitol-specific EIICB component|g__Clostridium.s__Clostridium_beijerinckii	3.2142127720
+UniRef50_O65989: PTS system mannitol-specific EIICB component|unclassified	0.0636776924
+UniRef50_T2ENK5	3.2775432887
+UniRef50_T2ENK5|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2775432887
+UniRef50_U5MZX2: Alpha/beta fold family hydrolase	3.2767992415
+UniRef50_U5MZX2: Alpha/beta fold family hydrolase|g__Clostridium.s__Clostridium_beijerinckii	3.2767992415
+UniRef50_Q9RTK1: tRNA-specific 2-thiouridylase MnmA	3.2762956092
+UniRef50_Q9RTK1: tRNA-specific 2-thiouridylase MnmA|g__Deinococcus.s__Deinococcus_radiodurans	3.2762956092
+UniRef50_Q122S9: Transcriptional regulator, LysR family	3.2759045568
+UniRef50_Q122S9: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2759045568
+UniRef50_UPI0003769FA7: Fis family transcriptional regulator	3.2759027421
+UniRef50_UPI0003769FA7: Fis family transcriptional regulator|unclassified	3.2759027421
+UniRef50_E6SIA9: 5-carboxymethyl-2-hydroxymuconate semialdehyde dehydrogenase	3.2758572044
+UniRef50_E6SIA9: 5-carboxymethyl-2-hydroxymuconate semialdehyde dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7089424130
+UniRef50_E6SIA9: 5-carboxymethyl-2-hydroxymuconate semialdehyde dehydrogenase|g__Deinococcus.s__Deinococcus_radiodurans	1.5669147914
+UniRef50_W9T8R7	3.2756604711
+UniRef50_W9T8R7|unclassified	3.2756604711
+UniRef50_L6RYU4: Outer membrane phosphoporin protein E	3.2756050907
+UniRef50_L6RYU4: Outer membrane phosphoporin protein E|g__Escherichia.s__Escherichia_coli	3.2756050907
+UniRef50_I4XNF9	3.2752346294
+UniRef50_I4XNF9|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2752346294
+UniRef50_P77607	3.2750169033
+UniRef50_P77607|g__Escherichia.s__Escherichia_coli	3.2750169033
+UniRef50_G7U4I0: Uroporphyrinogen-III synthase	3.2739466221
+UniRef50_G7U4I0: Uroporphyrinogen-III synthase|g__Propionibacterium.s__Propionibacterium_acnes	3.2739466221
+UniRef50_Q88KQ9: Membrane protein, putative	3.2739222926
+UniRef50_Q88KQ9: Membrane protein, putative|g__Acinetobacter.s__Acinetobacter_baumannii	3.2739222926
+UniRef50_U3T620: Long-chain-acyl-CoA synthetase	3.2732487309
+UniRef50_U3T620: Long-chain-acyl-CoA synthetase|g__Acinetobacter.s__Acinetobacter_baumannii	3.2732487309
+UniRef50_A6M0Q8: Periplasmic binding protein/LacI transcriptional regulator	3.2730444470
+UniRef50_A6M0Q8: Periplasmic binding protein/LacI transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	3.2730444470
+UniRef50_UPI00035047B5: PREDICTED: translation initiation factor IF-2-like, partial	3.2717350092
+UniRef50_UPI00035047B5: PREDICTED: translation initiation factor IF-2-like, partial|unclassified	3.2717350092
+UniRef50_J8VEE3: Plasmid pRiA4b ORF-3-like protein	3.2703887092
+UniRef50_J8VEE3: Plasmid pRiA4b ORF-3-like protein|unclassified	3.2703887092
+UniRef50_N5H245	3.2701877367
+UniRef50_N5H245|unclassified	3.2701877367
+UniRef50_E8JLX0	3.2701780518
+UniRef50_E8JLX0|unclassified	3.2701780518
+UniRef50_P07874: Alginate biosynthesis protein AlgA	3.2698764535
+UniRef50_P07874: Alginate biosynthesis protein AlgA|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0695864417
+UniRef50_P07874: Alginate biosynthesis protein AlgA|unclassified	0.2002900119
+UniRef50_M1MT32: Two component transcriptional regulator, AraC family	3.2691841774
+UniRef50_M1MT32: Two component transcriptional regulator, AraC family|g__Clostridium.s__Clostridium_beijerinckii	3.2691841774
+UniRef50_V5VG85: HAD superfamily hydrolase	3.2684813017
+UniRef50_V5VG85: HAD superfamily hydrolase|g__Acinetobacter.s__Acinetobacter_baumannii	3.2684813017
+UniRef50_A6M0T9: Pyridoxamine 5'-phosphate oxidase-related, FMN-binding	3.2679738562
+UniRef50_A6M0T9: Pyridoxamine 5'-phosphate oxidase-related, FMN-binding|g__Clostridium.s__Clostridium_beijerinckii	3.2679738562
+UniRef50_A9M1I6: Periplasmic thioredoxin	3.2679738562
+UniRef50_A9M1I6: Periplasmic thioredoxin|g__Neisseria.s__Neisseria_meningitidis	3.2679738562
+UniRef50_G7RAI1	3.2679738562
+UniRef50_G7RAI1|g__Escherichia.s__Escherichia_coli	3.2679738562
+UniRef50_J0ZPJ9	3.2679738562
+UniRef50_J0ZPJ9|g__Staphylococcus.s__Staphylococcus_epidermidis	3.2679738562
+UniRef50_Q8REW5: Precorrin-8X methylmutase	3.2679738562
+UniRef50_Q8REW5: Precorrin-8X methylmutase|g__Clostridium.s__Clostridium_beijerinckii	3.2679738562
+UniRef50_V8H7M9: (2Fe-2S)-binding protein	3.2679738562
+UniRef50_V8H7M9: (2Fe-2S)-binding protein|unclassified	3.2679738562
+UniRef50_X4Z2K1: Methylated-DNA-[]-cysteine S-methyltransferase family protein	3.2679738562
+UniRef50_X4Z2K1: Methylated-DNA-[]-cysteine S-methyltransferase family protein|g__Streptococcus.s__Streptococcus_agalactiae	3.2679738562
+UniRef50_Q3JQJ9	3.2678870832
+UniRef50_Q3JQJ9|unclassified	3.2678870832
+UniRef50_B7GPE3: Ribosomal RNA small subunit methyltransferase A	3.2678560702
+UniRef50_B7GPE3: Ribosomal RNA small subunit methyltransferase A|g__Propionibacterium.s__Propionibacterium_acnes	3.2678560702
+UniRef50_A7X198	3.2676142080
+UniRef50_A7X198|unclassified	3.2676142080
+UniRef50_K4PQ99: Clostridial hydrophobic W	3.2676138938
+UniRef50_K4PQ99: Clostridial hydrophobic W|g__Streptococcus.s__Streptococcus_agalactiae	3.2676138938
+UniRef50_U1Y543	3.2674272225
+UniRef50_U1Y543|unclassified	3.2674272225
+UniRef50_Q9RY17	3.2670409490
+UniRef50_Q9RY17|g__Deinococcus.s__Deinococcus_radiodurans	3.2670409490
+UniRef50_L1K7L5	3.2668505269
+UniRef50_L1K7L5|unclassified	3.2668505269
+UniRef50_R1DHJ6	3.2660796814
+UniRef50_R1DHJ6|unclassified	3.2660796814
+UniRef50_D8N320: Immunoglobulin-binding regulator (Part 1)	3.2659730559
+UniRef50_D8N320: Immunoglobulin-binding regulator (Part 1)|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2659730559
+UniRef50_UPI0002D7FEF9: hypothetical protein	3.2658671957
+UniRef50_UPI0002D7FEF9: hypothetical protein|unclassified	3.2658671957
+UniRef50_F3SAU0	3.2652963116
+UniRef50_F3SAU0|unclassified	3.2652963116
+UniRef50_Z6DAA9	3.2652807550
+UniRef50_Z6DAA9|unclassified	3.2652807550
+UniRef50_A6LWQ9	3.2646022110
+UniRef50_A6LWQ9|g__Clostridium.s__Clostridium_beijerinckii	3.2646022110
+UniRef50_A0A016QP53	3.2642407429
+UniRef50_A0A016QP53|unclassified	3.2642407429
+UniRef50_A6V1S7	3.2640604756
+UniRef50_A6V1S7|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2640604756
+UniRef50_W8MR27: ATPase	3.2630797942
+UniRef50_W8MR27: ATPase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2630797942
+UniRef50_Q6A964: Glycine--tRNA ligase	3.2624437886
+UniRef50_Q6A964: Glycine--tRNA ligase|g__Propionibacterium.s__Propionibacterium_acnes	3.2624437886
+UniRef50_K0EQ96: NADP-dependent isocitrate dehydrogenase	3.2623627045
+UniRef50_K0EQ96: NADP-dependent isocitrate dehydrogenase|unclassified	3.2623627045
+UniRef50_Q7VLS2: UPF0145 protein HD_1349	3.2610697825
+UniRef50_Q7VLS2: UPF0145 protein HD_1349|unclassified	3.2610697825
+UniRef50_A6M2M5	3.2608898812
+UniRef50_A6M2M5|g__Clostridium.s__Clostridium_beijerinckii	3.2608898812
+UniRef50_B2UX27: ATP phosphoribosyltransferase regulatory subunit	3.2607427352
+UniRef50_B2UX27: ATP phosphoribosyltransferase regulatory subunit|g__Clostridium.s__Clostridium_beijerinckii	3.2607427352
+UniRef50_G6C849: Acetyl-CoA carboxylase biotin carboxyl carrier protein subunit domain protein (Fragment)	3.2602162502
+UniRef50_G6C849: Acetyl-CoA carboxylase biotin carboxyl carrier protein subunit domain protein (Fragment)|unclassified	3.2602162502
+UniRef50_UPI0004698685: hypothetical protein	3.2590317315
+UniRef50_UPI0004698685: hypothetical protein|unclassified	3.2590317315
+UniRef50_Q5F8F6: tRNA(Ile)-lysidine synthase	3.2589146989
+UniRef50_Q5F8F6: tRNA(Ile)-lysidine synthase|g__Neisseria.s__Neisseria_meningitidis	3.2589146989
+UniRef50_Q1QE36: Pseudouridine synthase	3.2589113527
+UniRef50_Q1QE36: Pseudouridine synthase|g__Acinetobacter.s__Acinetobacter_baumannii	3.2589113527
+UniRef50_Q9RYE7: Chromosomal replication initiator protein DnaA	3.2583509898
+UniRef50_Q9RYE7: Chromosomal replication initiator protein DnaA|g__Deinococcus.s__Deinococcus_radiodurans	3.2583509898
+UniRef50_J9NS14	3.2582608005
+UniRef50_J9NS14|unclassified	3.2582608005
+UniRef50_A6LYX0: Phosphoglycerate mutase	3.2573289902
+UniRef50_A6LYX0: Phosphoglycerate mutase|g__Clostridium.s__Clostridium_beijerinckii	3.2573289902
+UniRef50_P45956: CRISPR-associated endoribonuclease Cas2	3.2573289902
+UniRef50_P45956: CRISPR-associated endoribonuclease Cas2|g__Escherichia.s__Escherichia_coli	3.2573289902
+UniRef50_Q893S7: Chemotaxis protein methyltransferase cheR	3.2573289902
+UniRef50_Q893S7: Chemotaxis protein methyltransferase cheR|g__Clostridium.s__Clostridium_beijerinckii	3.2573289902
+UniRef50_Q8DSB5	3.2573289902
+UniRef50_Q8DSB5|g__Streptococcus.s__Streptococcus_mutans	3.2573289902
+UniRef50_Q8DUC3: Citrate lyase acyl carrier protein	3.2573289902
+UniRef50_Q8DUC3: Citrate lyase acyl carrier protein|g__Streptococcus.s__Streptococcus_mutans	3.2573289902
+UniRef50_Q9RV33	3.2573289902
+UniRef50_Q9RV33|g__Deinococcus.s__Deinococcus_radiodurans	3.2573289902
+UniRef50_X5K323	3.2570422535
+UniRef50_X5K323|g__Streptococcus.s__Streptococcus_agalactiae	3.2570422535
+UniRef50_W8RXY9: Arsenate reductase-related protein	3.2570014281
+UniRef50_W8RXY9: Arsenate reductase-related protein|unclassified	3.2570014281
+UniRef50_M4WVK0	3.2567291706
+UniRef50_M4WVK0|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2567291706
+UniRef50_I3TTH3	3.2566026542
+UniRef50_I3TTH3|unclassified	3.2566026542
+UniRef50_Z7GGF4: Staphopain B	3.2562543663
+UniRef50_Z7GGF4: Staphopain B|unclassified	3.2562543663
+UniRef50_P23378: Glycine dehydrogenase (decarboxylating), mitochondrial	3.2553191427
+UniRef50_P23378: Glycine dehydrogenase (decarboxylating), mitochondrial|g__Neisseria.s__Neisseria_meningitidis	3.1909759351
+UniRef50_P23378: Glycine dehydrogenase (decarboxylating), mitochondrial|unclassified	0.0643432076
+UniRef50_I4SHI8: Rhs core protein with extension	3.2550402823
+UniRef50_I4SHI8: Rhs core protein with extension|g__Escherichia.s__Escherichia_coli	3.2550402823
+UniRef50_Q0J8P0: Os08g0101500 protein (Fragment)	3.2548080470
+UniRef50_Q0J8P0: Os08g0101500 protein (Fragment)|unclassified	3.2548080470
+UniRef50_Q8FB62	3.2520648942
+UniRef50_Q8FB62|unclassified	3.2520648942
+UniRef50_A9M0Z2: Transcriptional regulator, GntR family	3.2520411185
+UniRef50_A9M0Z2: Transcriptional regulator, GntR family|g__Neisseria.s__Neisseria_meningitidis	3.2520411185
+UniRef50_A9BFZ1: 30S ribosomal protein S4	3.2520325203
+UniRef50_A9BFZ1: 30S ribosomal protein S4|g__Deinococcus.s__Deinococcus_radiodurans	3.2520325203
+UniRef50_Q5PCT4: Thymidine kinase	3.2520325203
+UniRef50_Q5PCT4: Thymidine kinase|g__Escherichia.s__Escherichia_coli	3.2520325203
+UniRef50_W7W788	3.2502381392
+UniRef50_W7W788|unclassified	3.2502381392
+UniRef50_G4F8Z1: MFS family transporter (Fragment)	3.2499036685
+UniRef50_G4F8Z1: MFS family transporter (Fragment)|unclassified	3.2499036685
+UniRef50_I0Z6T2	3.2490426609
+UniRef50_I0Z6T2|unclassified	3.2490426609
+UniRef50_G0DTU8	3.2488649795
+UniRef50_G0DTU8|g__Propionibacterium.s__Propionibacterium_acnes	3.0257329068
+UniRef50_G0DTU8|unclassified	0.2231320727
+UniRef50_UPI000363DABC: hypothetical protein	3.2484852695
+UniRef50_UPI000363DABC: hypothetical protein|unclassified	3.2484852695
+UniRef50_A8T9I1: Carboxynorspermidine decarboxylase (Fragment)	3.2482052930
+UniRef50_A8T9I1: Carboxynorspermidine decarboxylase (Fragment)|unclassified	3.2482052930
+UniRef50_Q1GEI0: Uncharacterised conserved protein UCP028101	3.2471725614
+UniRef50_Q1GEI0: Uncharacterised conserved protein UCP028101|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.2471725614
+UniRef50_H3UL73	3.2467874725
+UniRef50_H3UL73|unclassified	3.2467874725
+UniRef50_A1AJA0	3.2467532468
+UniRef50_A1AJA0|unclassified	3.2467532468
+UniRef50_A4VV94	3.2467532468
+UniRef50_A4VV94|g__Streptococcus.s__Streptococcus_mutans	3.2467532468
+UniRef50_A9M1Y3	3.2467532468
+UniRef50_A9M1Y3|g__Neisseria.s__Neisseria_meningitidis	3.2467532468
+UniRef50_N2L427: CSS motif domain associated with EAL family protein	3.2467532468
+UniRef50_N2L427: CSS motif domain associated with EAL family protein|g__Escherichia.s__Escherichia_coli	3.2467532468
+UniRef50_P76548	3.2467532468
+UniRef50_P76548|g__Escherichia.s__Escherichia_coli	3.2467532468
+UniRef50_Q51531: ORF 4; putative (Fragment)	3.2467532468
+UniRef50_Q51531: ORF 4; putative (Fragment)|unclassified	3.2467532468
+UniRef50_R1BV43	3.2467532468
+UniRef50_R1BV43|unclassified	3.2467532468
+UniRef50_UPI0003B4DB67: hypothetical protein	3.2467532468
+UniRef50_UPI0003B4DB67: hypothetical protein|unclassified	3.2467532468
+UniRef50_Y7F8I8: High-affinity iron transporter	3.2467532468
+UniRef50_Y7F8I8: High-affinity iron transporter|g__Staphylococcus.s__Staphylococcus_aureus	3.2467532468
+UniRef50_A6M1B4	3.2465528861
+UniRef50_A6M1B4|g__Clostridium.s__Clostridium_beijerinckii	3.2465528861
+UniRef50_M2P5Z8	3.2458238729
+UniRef50_M2P5Z8|unclassified	3.2458238729
+UniRef50_A1VX22	3.2458105472
+UniRef50_A1VX22|unclassified	3.2458105472
+UniRef50_D5MJP7	3.2451109627
+UniRef50_D5MJP7|unclassified	3.2451109627
+UniRef50_Q9RWA8	3.2444132444
+UniRef50_Q9RWA8|g__Deinococcus.s__Deinococcus_radiodurans	3.2444132444
+UniRef50_Q97DA2: 3-oxoacyl-[acyl-carrier-protein] synthase 3	3.2443880100
+UniRef50_Q97DA2: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	3.2443880100
+UniRef50_V0SG76	3.2441749879
+UniRef50_V0SG76|unclassified	3.2441749879
+UniRef50_A6M0W1	3.2438036931
+UniRef50_A6M0W1|g__Clostridium.s__Clostridium_beijerinckii	3.2438036931
+UniRef50_A0A024HL97: Tfp pilus assembly protein FimV-like protein	3.2424858210
+UniRef50_A0A024HL97: Tfp pilus assembly protein FimV-like protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2424858210
+UniRef50_P35818: Type II secretion system protein D	3.2419333064
+UniRef50_P35818: Type II secretion system protein D|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2419333064
+UniRef50_L0GSA6: Type II secretory pathway, component ExeA (Predicted ATPase)	3.2416703953
+UniRef50_L0GSA6: Type II secretory pathway, component ExeA (Predicted ATPase)|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2416703953
+UniRef50_D4E309: Mannitol dehydrogenase domain protein	3.2413807549
+UniRef50_D4E309: Mannitol dehydrogenase domain protein|g__Escherichia.s__Escherichia_coli	3.2413807549
+UniRef50_C3JXG2	3.2410001603
+UniRef50_C3JXG2|unclassified	3.2410001603
+UniRef50_Q88PZ1: Membrane protein, putative	3.2403033380
+UniRef50_Q88PZ1: Membrane protein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2403033380
+UniRef50_Q3IVI9: Transcriptional regulator, LysR family	3.2399333411
+UniRef50_Q3IVI9: Transcriptional regulator, LysR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.2399333411
+UniRef50_B2V488: Metallo beta-lactamase family protein	3.2389255908
+UniRef50_B2V488: Metallo beta-lactamase family protein|g__Clostridium.s__Clostridium_beijerinckii	3.2389255908
+UniRef50_G8PGA5	3.2380599721
+UniRef50_G8PGA5|unclassified	3.2380599721
+UniRef50_UPI00047437FE: 30S ribosomal protein S15, partial	3.2379509089
+UniRef50_UPI00047437FE: 30S ribosomal protein S15, partial|unclassified	3.2379509089
+UniRef50_B9QYQ7	3.2375051076
+UniRef50_B9QYQ7|unclassified	3.2375051076
+UniRef50_A6UAA9: Response regulator receiver and ANTAR domain protein	3.2362459547
+UniRef50_A6UAA9: Response regulator receiver and ANTAR domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.2362459547
+UniRef50_D2NTN6: Signal transduction histidine kinase	3.2362459547
+UniRef50_D2NTN6: Signal transduction histidine kinase|g__Propionibacterium.s__Propionibacterium_acnes	3.2362459547
+UniRef50_P0AAW7: Inner membrane protein YbhQ	3.2362459547
+UniRef50_P0AAW7: Inner membrane protein YbhQ|g__Escherichia.s__Escherichia_coli	3.2362459547
+UniRef50_P76160	3.2362459547
+UniRef50_P76160|g__Escherichia.s__Escherichia_coli	3.2362459547
+UniRef50_Q8TT42: 30S ribosomal protein S9	3.2362459547
+UniRef50_Q8TT42: 30S ribosomal protein S9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.2362459547
+UniRef50_O25369: Outer membrane protein assembly factor BamA	3.2360621534
+UniRef50_O25369: Outer membrane protein assembly factor BamA|g__Helicobacter.s__Helicobacter_pylori	3.2360621534
+UniRef50_UPI0000164CF6: hypothetical protein DR_1761	3.2350975583
+UniRef50_UPI0000164CF6: hypothetical protein DR_1761|g__Deinococcus.s__Deinococcus_radiodurans	2.0703933747
+UniRef50_UPI0000164CF6: hypothetical protein DR_1761|unclassified	1.1647041835
+UniRef50_B9KJX5	3.2346669284
+UniRef50_B9KJX5|unclassified	3.2346669284
+UniRef50_UPI0003711349: hypothetical protein	3.2342997015
+UniRef50_UPI0003711349: hypothetical protein|unclassified	3.2342997015
+UniRef50_R4ZQ45: ABC transporter, permease protein EscB	3.2339869281
+UniRef50_R4ZQ45: ABC transporter, permease protein EscB|g__Streptococcus.s__Streptococcus_agalactiae	3.2339869281
+UniRef50_F7YLT2: Glucose-binding protein	3.2327854503
+UniRef50_F7YLT2: Glucose-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2327854503
+UniRef50_D5HI95: Beta-fructosidases (Levanase/invertase)	3.2327469303
+UniRef50_D5HI95: Beta-fructosidases (Levanase/invertase)|g__Clostridium.s__Clostridium_beijerinckii	3.2327469303
+UniRef50_A6LQ65: Methyl-accepting chemotaxis sensory transducer	3.2317473410
+UniRef50_A6LQ65: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	3.2317473410
+UniRef50_UPI0002BA0065: hypothetical protein, partial	3.2315484750
+UniRef50_UPI0002BA0065: hypothetical protein, partial|unclassified	3.2315484750
+UniRef50_B2V1Q0	3.2310515011
+UniRef50_B2V1Q0|g__Clostridium.s__Clostridium_beijerinckii	3.2310515011
+UniRef50_UPI000401A711: fimbrial protein	3.2309678228
+UniRef50_UPI000401A711: fimbrial protein|unclassified	3.2309678228
+UniRef50_P58579: Glutathione synthetase	3.2300388024
+UniRef50_P58579: Glutathione synthetase|g__Neisseria.s__Neisseria_meningitidis	2.0953384482
+UniRef50_P58579: Glutathione synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0764262648
+UniRef50_P58579: Glutathione synthetase|unclassified	0.0582740894
+UniRef50_UPI000376E9E0: hypothetical protein	3.2297453219
+UniRef50_UPI000376E9E0: hypothetical protein|unclassified	3.2297453219
+UniRef50_S6AIG4	3.2296676661
+UniRef50_S6AIG4|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4390243902
+UniRef50_S6AIG4|unclassified	0.7906432759
+UniRef50_M1MET0: Cell wall binding repeat-containing protein	3.2275381898
+UniRef50_M1MET0: Cell wall binding repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	3.2275381898
+UniRef50_A8LPA6: Double-strand break repair helicase AddA	3.2273827050
+UniRef50_A8LPA6: Double-strand break repair helicase AddA|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.2273827050
+UniRef50_A6LU81: UPF0246 protein Cbei_1739	3.2267579803
+UniRef50_A6LU81: UPF0246 protein Cbei_1739|g__Clostridium.s__Clostridium_beijerinckii	3.2267579803
+UniRef50_F8GU79	3.2264186668
+UniRef50_F8GU79|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2264186668
+UniRef50_X4QTW2: Excinuclease ABC subunit A	3.2261496289
+UniRef50_X4QTW2: Excinuclease ABC subunit A|g__Propionibacterium.s__Propionibacterium_acnes	3.2261496289
+UniRef50_UPI0002D78CFD: hypothetical protein	3.2258297680
+UniRef50_UPI0002D78CFD: hypothetical protein|unclassified	3.2258297680
+UniRef50_A0A028XY08: Putative lysophospholipase	3.2258064516
+UniRef50_A0A028XY08: Putative lysophospholipase|unclassified	3.2258064516
+UniRef50_A0A029KEZ2: Glycosyl transferase 2 family protein	3.2258064516
+UniRef50_A0A029KEZ2: Glycosyl transferase 2 family protein|g__Escherichia.s__Escherichia_coli	3.2258064516
+UniRef50_J8VDS1: PAP2 family protein (Fragment)	3.2258064516
+UniRef50_J8VDS1: PAP2 family protein (Fragment)|unclassified	3.2258064516
+UniRef50_R0PK11	3.2258064516
+UniRef50_R0PK11|g__Neisseria.s__Neisseria_meningitidis	3.2258064516
+UniRef50_S4PP99	3.2246673939
+UniRef50_S4PP99|unclassified	3.2246673939
+UniRef50_A7ZV46	3.2244895985
+UniRef50_A7ZV46|unclassified	3.2244895985
+UniRef50_Q44185: N-carbamoyl-D-amino acid hydrolase	3.2240767718
+UniRef50_Q44185: N-carbamoyl-D-amino acid hydrolase|unclassified	3.2240767718
+UniRef50_Q9RTV3	3.2233807778
+UniRef50_Q9RTV3|g__Deinococcus.s__Deinococcus_radiodurans	3.2233807778
+UniRef50_UPI000467FD4C: isopentenyl-diphosphate delta-isomerase	3.2229073973
+UniRef50_UPI000467FD4C: isopentenyl-diphosphate delta-isomerase|unclassified	3.2229073973
+UniRef50_W7WZS1	3.2226959396
+UniRef50_W7WZS1|unclassified	3.2226959396
+UniRef50_H0CAT0	3.2221986532
+UniRef50_H0CAT0|unclassified	3.2221986532
+UniRef50_H0TS96	3.2217960004
+UniRef50_H0TS96|unclassified	3.2217960004
+UniRef50_G0DVB4: LacI family transcription regulator	3.2216671604
+UniRef50_G0DVB4: LacI family transcription regulator|g__Propionibacterium.s__Propionibacterium_acnes	3.2216671604
+UniRef50_A1B5W1	3.2215186579
+UniRef50_A1B5W1|unclassified	3.2215186579
+UniRef50_B4U501: 50S ribosomal protein L4	3.2206119163
+UniRef50_B4U501: 50S ribosomal protein L4|g__Streptococcus.s__Streptococcus_agalactiae	3.2206119163
+UniRef50_UPI00034F86F8: PREDICTED: translation initiation factor IF-2-like, partial	3.2206119163
+UniRef50_UPI00034F86F8: PREDICTED: translation initiation factor IF-2-like, partial|unclassified	3.2206119163
+UniRef50_C5BEL3: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase	3.2199817135
+UniRef50_C5BEL3: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase|g__Clostridium.s__Clostridium_beijerinckii	3.1545741325
+UniRef50_C5BEL3: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase|unclassified	0.0654075810
+UniRef50_G3JJ51	3.2199443944
+UniRef50_G3JJ51|unclassified	3.2199443944
+UniRef50_A4VH00: Oxidoreductase, iron-sulfur-binding	3.2196352810
+UniRef50_A4VH00: Oxidoreductase, iron-sulfur-binding|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2196352810
+UniRef50_J9YQY9	3.2193295290
+UniRef50_J9YQY9|g__Streptococcus.s__Streptococcus_agalactiae	3.1606269036
+UniRef50_J9YQY9|unclassified	0.0587026254
+UniRef50_R9ZQM8	3.2187878427
+UniRef50_R9ZQM8|unclassified	3.2187878427
+UniRef50_A0A023YFJ4	3.2186529713
+UniRef50_A0A023YFJ4|unclassified	3.2186529713
+UniRef50_R9ZI41	3.2180229999
+UniRef50_R9ZI41|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2180229999
+UniRef50_UPI00045E6D39: hypothetical protein	3.2178515444
+UniRef50_UPI00045E6D39: hypothetical protein|unclassified	3.2178515444
+UniRef50_M1MI89: Sensor histidine kinase YesM	3.2175905701
+UniRef50_M1MI89: Sensor histidine kinase YesM|g__Clostridium.s__Clostridium_beijerinckii	3.2175905701
+UniRef50_U5PFI6: Competence protein ComFC	3.2175631356
+UniRef50_U5PFI6: Competence protein ComFC|g__Streptococcus.s__Streptococcus_agalactiae	3.2175631356
+UniRef50_Q77FU2: CI-like repressor	3.2172440148
+UniRef50_Q77FU2: CI-like repressor|g__Staphylococcus.s__Staphylococcus_aureus	3.2172440148
+UniRef50_Q6F925	3.2154506792
+UniRef50_Q6F925|g__Acinetobacter.s__Acinetobacter_baumannii	3.2154506792
+UniRef50_A4WZ03	3.2154340836
+UniRef50_A4WZ03|unclassified	3.2154340836
+UniRef50_D5VBA0: Ribosomal RNA small subunit methyltransferase E	3.2154340836
+UniRef50_D5VBA0: Ribosomal RNA small subunit methyltransferase E|g__Acinetobacter.s__Acinetobacter_baumannii	3.2154340836
+UniRef50_E1VM94	3.2154340836
+UniRef50_E1VM94|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2154340836
+UniRef50_E4ZBB9	3.2154340836
+UniRef50_E4ZBB9|g__Neisseria.s__Neisseria_meningitidis	3.2154340836
+UniRef50_L8FU45	3.2154340836
+UniRef50_L8FU45|unclassified	3.2154340836
+UniRef50_O66116: Protein ZMO0507	3.2154340836
+UniRef50_O66116: Protein ZMO0507|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2154340836
+UniRef50_UPI0003740304: hypothetical protein	3.2154340836
+UniRef50_UPI0003740304: hypothetical protein|unclassified	3.2154340836
+UniRef50_W6RZJ6: Amidase	3.2154340836
+UniRef50_W6RZJ6: Amidase|g__Clostridium.s__Clostridium_beijerinckii	3.2154340836
+UniRef50_U1ETH7	3.2146771203
+UniRef50_U1ETH7|unclassified	3.2146771203
+UniRef50_UPI00034BB6BF: hypothetical protein	3.2146440768
+UniRef50_UPI00034BB6BF: hypothetical protein|unclassified	3.2146440768
+UniRef50_Q169A7	3.2137281376
+UniRef50_Q169A7|unclassified	3.2137281376
+UniRef50_D4GDT5: YliJ	3.2128700607
+UniRef50_D4GDT5: YliJ|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6103059581
+UniRef50_D4GDT5: YliJ|g__Acinetobacter.s__Acinetobacter_baumannii	1.6025641026
+UniRef50_T3G5Y0: Ferrous iron transport protein B	3.2110689175
+UniRef50_T3G5Y0: Ferrous iron transport protein B|g__Clostridium.s__Clostridium_beijerinckii	3.2110689175
+UniRef50_W7WA58	3.2109250754
+UniRef50_W7WA58|unclassified	3.2109250754
+UniRef50_A6LZ14: Histidine kinase	3.2102960326
+UniRef50_A6LZ14: Histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	3.2102960326
+UniRef50_G8PMP6: Endoribonuclease L-PSP	3.2099475515
+UniRef50_G8PMP6: Endoribonuclease L-PSP|unclassified	3.2099475515
+UniRef50_X4Z3Q9	3.2095402748
+UniRef50_X4Z3Q9|unclassified	3.2095402748
+UniRef50_A6LYD5: Transposase, IS111A/IS1328/IS1533	3.2093937471
+UniRef50_A6LYD5: Transposase, IS111A/IS1328/IS1533|g__Clostridium.s__Clostridium_beijerinckii	3.2093937471
+UniRef50_UPI0003B4F316: ABC transporter ATP-binding protein	3.2085765388
+UniRef50_UPI0003B4F316: ABC transporter ATP-binding protein|unclassified	3.2085765388
+UniRef50_O25001: Beta-lactamase HcpA	3.2077204965
+UniRef50_O25001: Beta-lactamase HcpA|g__Helicobacter.s__Helicobacter_pylori	3.2077204965
+UniRef50_M1M1B9: Beta-fructofuranosidase	3.2075244993
+UniRef50_M1M1B9: Beta-fructofuranosidase|g__Clostridium.s__Clostridium_beijerinckii	3.2075244993
+UniRef50_UPI00031EC272: hypothetical protein	3.2073376522
+UniRef50_UPI00031EC272: hypothetical protein|unclassified	3.2073376522
+UniRef50_L7AGZ5	3.2070315563
+UniRef50_L7AGZ5|unclassified	3.2070315563
+UniRef50_UPI00046E9459: hypothetical protein	3.2063798678
+UniRef50_UPI00046E9459: hypothetical protein|unclassified	3.2063798678
+UniRef50_G3J8A9	3.2060651453
+UniRef50_G3J8A9|unclassified	3.2060651453
+UniRef50_Q9RWN1: ATP-dependent 6-phosphofructokinase	3.2052138588
+UniRef50_Q9RWN1: ATP-dependent 6-phosphofructokinase|g__Deinococcus.s__Deinococcus_radiodurans	3.1133658434
+UniRef50_Q9RWN1: ATP-dependent 6-phosphofructokinase|unclassified	0.0918480154
+UniRef50_A3M2G5: Transposition Helper	3.2051282051
+UniRef50_A3M2G5: Transposition Helper|g__Acinetobacter.s__Acinetobacter_baumannii	3.2051282051
+UniRef50_A6SU21: SugE-like protein	3.2051282051
+UniRef50_A6SU21: SugE-like protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2051282051
+UniRef50_D5BSQ1: Sarcosine oxidase delta subunit	3.2051282051
+UniRef50_D5BSQ1: Sarcosine oxidase delta subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.2051282051
+UniRef50_E4CH69	3.2051282051
+UniRef50_E4CH69|g__Propionibacterium.s__Propionibacterium_acnes	3.2051282051
+UniRef50_E8Z6F6	3.2051282051
+UniRef50_E8Z6F6|unclassified	3.2051282051
+UniRef50_F0T7W8: DNA-directed RNA polymerase subunit	3.2051282051
+UniRef50_F0T7W8: DNA-directed RNA polymerase subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.2051282051
+UniRef50_G7U9P9: Transcriptional regulator	3.2051282051
+UniRef50_G7U9P9: Transcriptional regulator|g__Propionibacterium.s__Propionibacterium_acnes	3.2051282051
+UniRef50_M1EGJ8: CAP-GLY domain containing linker protein 2 (Fragment)	3.2051282051
+UniRef50_M1EGJ8: CAP-GLY domain containing linker protein 2 (Fragment)|unclassified	3.2051282051
+UniRef50_UPI0003620C81: hypothetical protein	3.2051282051
+UniRef50_UPI0003620C81: hypothetical protein|unclassified	3.2051282051
+UniRef50_W4UB64: Menaquinone-specific isochorismate synthase	3.2051282051
+UniRef50_W4UB64: Menaquinone-specific isochorismate synthase|unclassified	3.2051282051
+UniRef50_G8V8Z7	3.2048391803
+UniRef50_G8V8Z7|unclassified	3.2048391803
+UniRef50_A6LRS6: Methyl-accepting chemotaxis sensory transducer	3.2046590753
+UniRef50_A6LRS6: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	3.2046590753
+UniRef50_UPI000367AB3B: hypothetical protein, partial	3.2039592903
+UniRef50_UPI000367AB3B: hypothetical protein, partial|unclassified	3.2039592903
+UniRef50_E3F5Q2: Asp/Glu racemase	3.2036484143
+UniRef50_E3F5Q2: Asp/Glu racemase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.2036484143
+UniRef50_B6IY38	3.2029468189
+UniRef50_B6IY38|unclassified	3.2029468189
+UniRef50_A6TVR2: Aspartate carbamoyltransferase	3.2023988879
+UniRef50_A6TVR2: Aspartate carbamoyltransferase|g__Clostridium.s__Clostridium_beijerinckii	3.2023988879
+UniRef50_UPI00016C5052: large conductance mechanosensitive channel protein MscL	3.2023185983
+UniRef50_UPI00016C5052: large conductance mechanosensitive channel protein MscL|unclassified	3.2023185983
+UniRef50_K8CE40: Alkylated DNA repair protein AlkB	3.2019399125
+UniRef50_K8CE40: Alkylated DNA repair protein AlkB|unclassified	3.2019399125
+UniRef50_N9BB91	3.2018925836
+UniRef50_N9BB91|g__Acinetobacter.s__Acinetobacter_baumannii	3.2018925836
+UniRef50_Q1C2Y8	3.2011405626
+UniRef50_Q1C2Y8|unclassified	3.2011405626
+UniRef50_UPI00016A7F61: DNA adenine methylase	3.2008574573
+UniRef50_UPI00016A7F61: DNA adenine methylase|unclassified	3.2008574573
+UniRef50_I0JKD6: PTS system subunit IIBC, sucrose-specific	3.1971282398
+UniRef50_I0JKD6: PTS system subunit IIBC, sucrose-specific|g__Clostridium.s__Clostridium_beijerinckii	3.1971282398
+UniRef50_Q3JQU1	3.1970363190
+UniRef50_Q3JQU1|unclassified	3.1970363190
+UniRef50_I2FJ48: Type II R-M system DNA modification enzyme	3.1969095008
+UniRef50_I2FJ48: Type II R-M system DNA modification enzyme|g__Helicobacter.s__Helicobacter_pylori	3.1969095008
+UniRef50_C5Q0A0	3.1962755516
+UniRef50_C5Q0A0|unclassified	3.1962755516
+UniRef50_D8ILH3: Farnesyl pyrophosphate synthetase / Geranyltranstransferase / Farnesyltransferase / Heptaprenyl diphosphate synthase component II	3.1953763175
+UniRef50_D8ILH3: Farnesyl pyrophosphate synthetase / Geranyltranstransferase / Farnesyltransferase / Heptaprenyl diphosphate synthase component II|g__Streptococcus.s__Streptococcus_agalactiae	3.1953763175
+UniRef50_A0A025SA88	3.1948881789
+UniRef50_A0A025SA88|unclassified	3.1948881789
+UniRef50_A5IR95	3.1948881789
+UniRef50_A5IR95|g__Staphylococcus.s__Staphylococcus_aureus	3.1948881789
+UniRef50_P0ACX1: Inner membrane protein YdgC	3.1948881789
+UniRef50_P0ACX1: Inner membrane protein YdgC|g__Escherichia.s__Escherichia_coli	3.1948881789
+UniRef50_P0AF54: Inner membrane protein YjcH	3.1948881789
+UniRef50_P0AF54: Inner membrane protein YjcH|g__Escherichia.s__Escherichia_coli	3.1948881789
+UniRef50_P39284: Inner membrane protein YjeO	3.1948881789
+UniRef50_P39284: Inner membrane protein YjeO|g__Escherichia.s__Escherichia_coli	3.1948881789
+UniRef50_Q8DXI7: Single-stranded DNA-binding protein 4	3.1948881789
+UniRef50_Q8DXI7: Single-stranded DNA-binding protein 4|g__Streptococcus.s__Streptococcus_agalactiae	3.1948881789
+UniRef50_A5ITY0	3.1944456897
+UniRef50_A5ITY0|g__Staphylococcus.s__Staphylococcus_aureus	1.9801980198
+UniRef50_A5ITY0|unclassified	1.2142476699
+UniRef50_D6M601: Xanthine dehydrogenase, large subunit molybdenum cofactor-binding domain-containing protein	3.1942172616
+UniRef50_D6M601: Xanthine dehydrogenase, large subunit molybdenum cofactor-binding domain-containing protein|unclassified	3.1942172616
+UniRef50_UPI00035D526E: hypothetical protein	3.1933131793
+UniRef50_UPI00035D526E: hypothetical protein|unclassified	3.1933131793
+UniRef50_G7M7A9: Transcriptional regulator, MarR family	3.1921906806
+UniRef50_G7M7A9: Transcriptional regulator, MarR family|g__Clostridium.s__Clostridium_beijerinckii	3.1921906806
+UniRef50_A8MIR6: Heavy metal translocating P-type ATPase	3.1920187391
+UniRef50_A8MIR6: Heavy metal translocating P-type ATPase|g__Clostridium.s__Clostridium_beijerinckii	3.1920187391
+UniRef50_B7HCF0	3.1918154464
+UniRef50_B7HCF0|unclassified	3.1918154464
+UniRef50_C5C1Y1: Tryptophanyl-tRNA synthetase	3.1917151868
+UniRef50_C5C1Y1: Tryptophanyl-tRNA synthetase|g__Propionibacterium.s__Propionibacterium_acnes	3.1917151868
+UniRef50_E6SII5: Endonuclease III	3.1916187080
+UniRef50_E6SII5: Endonuclease III|g__Clostridium.s__Clostridium_beijerinckii	1.7123287671
+UniRef50_E6SII5: Endonuclease III|g__Deinococcus.s__Deinococcus_radiodurans	1.4792899408
+UniRef50_R8ZA51	3.1909978245
+UniRef50_R8ZA51|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1909978245
+UniRef50_A6M1K6	3.1904287139
+UniRef50_A6M1K6|g__Clostridium.s__Clostridium_beijerinckii	3.1904287139
+UniRef50_E0Y0D2: Nuclease subunit of the excinuclease complex	3.1898126717
+UniRef50_E0Y0D2: Nuclease subunit of the excinuclease complex|unclassified	3.1898126717
+UniRef50_A6LYH8: Cation diffusion facilitator family transporter	3.1897926635
+UniRef50_A6LYH8: Cation diffusion facilitator family transporter|g__Clostridium.s__Clostridium_beijerinckii	3.1897926635
+UniRef50_A0A031H669	3.1896873926
+UniRef50_A0A031H669|unclassified	3.1896873926
+UniRef50_U5ACU4: ABC transporter	3.1894442217
+UniRef50_U5ACU4: ABC transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1894442217
+UniRef50_B0V531: Bifunctional protein	3.1882768476
+UniRef50_B0V531: Bifunctional protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.1882768476
+UniRef50_Q6G561: Phosphocarrier protein	3.1874759715
+UniRef50_Q6G561: Phosphocarrier protein|unclassified	3.1874759715
+UniRef50_L8QG78: PepSY domain protein	3.1872715756
+UniRef50_L8QG78: PepSY domain protein|unclassified	3.1872715756
+UniRef50_L8BJ03	3.1867645064
+UniRef50_L8BJ03|unclassified	3.1867645064
+UniRef50_A0A026Y9Z0: Fimbrial assembly protein	3.1851914277
+UniRef50_A0A026Y9Z0: Fimbrial assembly protein|unclassified	3.1851914277
+UniRef50_A5EY33: Recombination protein RecR	3.1847133758
+UniRef50_A5EY33: Recombination protein RecR|g__Acinetobacter.s__Acinetobacter_baumannii	3.1847133758
+UniRef50_R4UPV8	3.1847133758
+UniRef50_R4UPV8|g__Clostridium.s__Clostridium_beijerinckii	3.1847133758
+UniRef50_UPI00047D9022: hypothetical protein	3.1847133758
+UniRef50_UPI00047D9022: hypothetical protein|unclassified	3.1847133758
+UniRef50_C7ZWS9: ABC-2 type transporter	3.1844810629
+UniRef50_C7ZWS9: ABC-2 type transporter|g__Staphylococcus.s__Staphylococcus_aureus	3.1844810629
+UniRef50_K3WBA6: Amidophosphoribosyltransferase	3.1833513211
+UniRef50_K3WBA6: Amidophosphoribosyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	3.1833513211
+UniRef50_B9KT00: Transcriptional regulator, Crp-Fnr family	3.1825541388
+UniRef50_B9KT00: Transcriptional regulator, Crp-Fnr family|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.1825541388
+UniRef50_I6SDI3: Pyochelin biosynthesis protein PchD	3.1820664776
+UniRef50_I6SDI3: Pyochelin biosynthesis protein PchD|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1820664776
+UniRef50_A5EBB8	3.1818555247
+UniRef50_A5EBB8|unclassified	3.1818555247
+UniRef50_B9KTI2	3.1818298818
+UniRef50_B9KTI2|unclassified	3.1818298818
+UniRef50_Q6LUZ6: Glutamate-ammonia-ligase adenylyltransferase	3.1816344186
+UniRef50_Q6LUZ6: Glutamate-ammonia-ligase adenylyltransferase|g__Escherichia.s__Escherichia_coli	3.1816344186
+UniRef50_U3TUS4	3.1815204602
+UniRef50_U3TUS4|unclassified	3.1815204602
+UniRef50_E8ZNH1: Magnesium transporter	3.1814526725
+UniRef50_E8ZNH1: Magnesium transporter|g__Clostridium.s__Clostridium_beijerinckii	3.1814526725
+UniRef50_Q6F9W1: tRNA dimethylallyltransferase	3.1813361612
+UniRef50_Q6F9W1: tRNA dimethylallyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	3.1813361612
+UniRef50_C1DSN9: Universal stress protein family	3.1808448324
+UniRef50_C1DSN9: Universal stress protein family|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1808448324
+UniRef50_K5J1H9	3.1803973829
+UniRef50_K5J1H9|unclassified	3.1803973829
+UniRef50_Q4FQY1: Kef-type potassium/proton antiporter, CPA2 family	3.1796372584
+UniRef50_Q4FQY1: Kef-type potassium/proton antiporter, CPA2 family|g__Acinetobacter.s__Acinetobacter_baumannii	3.1796372584
+UniRef50_UPI00047939C9: Fis family transcriptional regulator	3.1795452271
+UniRef50_UPI00047939C9: Fis family transcriptional regulator|unclassified	3.1795452271
+UniRef50_M2JJ86: Aryl-alcohol dehydrogenase	3.1776861433
+UniRef50_M2JJ86: Aryl-alcohol dehydrogenase|unclassified	3.1776861433
+UniRef50_K2AD73: Membrane protein	3.1754650535
+UniRef50_K2AD73: Membrane protein|unclassified	3.1754650535
+UniRef50_UPI000466F1E5: hypothetical protein, partial	3.1753457090
+UniRef50_UPI000466F1E5: hypothetical protein, partial|unclassified	3.1753457090
+UniRef50_N6U3D2: Transposase	3.1752611920
+UniRef50_N6U3D2: Transposase|unclassified	3.1752611920
+UniRef50_Q9HZU3: Precorrin-2 C(20)-methyltransferase	3.1748542456
+UniRef50_Q9HZU3: Precorrin-2 C(20)-methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7201550359
+UniRef50_Q9HZU3: Precorrin-2 C(20)-methyltransferase|unclassified	0.4546992097
+UniRef50_R9ZA07: AraC family transcriptional regulator	3.1746587680
+UniRef50_R9ZA07: AraC family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1746587680
+UniRef50_A0A024L5K6: Amino acid ABC transporter permease	3.1746031746
+UniRef50_A0A024L5K6: Amino acid ABC transporter permease|g__Escherichia.s__Escherichia_coli	3.1746031746
+UniRef50_F3V9Y6: Acetyl-CoA hydrolase/transferase N-terminal domain protein	3.1746031746
+UniRef50_F3V9Y6: Acetyl-CoA hydrolase/transferase N-terminal domain protein|g__Escherichia.s__Escherichia_coli	3.1746031746
+UniRef50_I2BMK6	3.1746031746
+UniRef50_I2BMK6|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1746031746
+UniRef50_I9PDN2	3.1746031746
+UniRef50_I9PDN2|g__Helicobacter.s__Helicobacter_pylori	3.1746031746
+UniRef50_M8LWS9: Amidohydrolase family protein (Fragment)	3.1746031746
+UniRef50_M8LWS9: Amidohydrolase family protein (Fragment)|g__Escherichia.s__Escherichia_coli	3.1746031746
+UniRef50_Q1AXY2	3.1746031746
+UniRef50_Q1AXY2|unclassified	3.1746031746
+UniRef50_S5R5C5	3.1746031746
+UniRef50_S5R5C5|g__Streptococcus.s__Streptococcus_mutans	3.1746031746
+UniRef50_UPI000240B960	3.1746031746
+UniRef50_UPI000240B960|unclassified	3.1746031746
+UniRef50_G7M2K9	3.1743130204
+UniRef50_G7M2K9|g__Clostridium.s__Clostridium_beijerinckii	3.1743130204
+UniRef50_F9YZR4	3.1741030203
+UniRef50_F9YZR4|unclassified	3.1741030203
+UniRef50_A4XZF8	3.1737926025
+UniRef50_A4XZF8|unclassified	3.1737926025
+UniRef50_Q9RR77: Cytochrome c oxidase, subunit I	3.1736651389
+UniRef50_Q9RR77: Cytochrome c oxidase, subunit I|g__Deinococcus.s__Deinococcus_radiodurans	3.1736651389
+UniRef50_UPI0001B43C5C: hypothetical protein	3.1733659480
+UniRef50_UPI0001B43C5C: hypothetical protein|unclassified	3.1733659480
+UniRef50_Q9R9Y4: Cell division protein FtsX	3.1719754816
+UniRef50_Q9R9Y4: Cell division protein FtsX|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1719754816
+UniRef50_E4FBI4	3.1715032930
+UniRef50_E4FBI4|unclassified	3.1715032930
+UniRef50_C5N041: Putative surface protein G (Fragment)	3.1714567084
+UniRef50_C5N041: Putative surface protein G (Fragment)|unclassified	3.1714567084
+UniRef50_F2CYK8: Predicted protein (Fragment)	3.1714245293
+UniRef50_F2CYK8: Predicted protein (Fragment)|unclassified	3.1714245293
+UniRef50_Q8E4V6	3.1712701471
+UniRef50_Q8E4V6|g__Streptococcus.s__Streptococcus_agalactiae	3.1712701471
+UniRef50_Q6AAY0	3.1712032070
+UniRef50_Q6AAY0|g__Propionibacterium.s__Propionibacterium_acnes	3.1712032070
+UniRef50_Q6FB03	3.1702386291
+UniRef50_Q6FB03|g__Acinetobacter.s__Acinetobacter_baumannii	3.1702386291
+UniRef50_F8GT79: Major facilitator superfamily MFS	3.1701707132
+UniRef50_F8GT79: Major facilitator superfamily MFS|g__Acinetobacter.s__Acinetobacter_baumannii	3.1701707132
+UniRef50_Q1JDL9: Transcriptional regulator, RpiR family	3.1696976901
+UniRef50_Q1JDL9: Transcriptional regulator, RpiR family|g__Streptococcus.s__Streptococcus_agalactiae	3.1696976901
+UniRef50_UPI00031F7135: hypothetical protein	3.1694537676
+UniRef50_UPI00031F7135: hypothetical protein|unclassified	3.1694537676
+UniRef50_A0A013RJA0: Type I secretion C-terminal target domain protein	3.1690386729
+UniRef50_A0A013RJA0: Type I secretion C-terminal target domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.1690386729
+UniRef50_P09879: Protein B	3.1687062937
+UniRef50_P09879: Protein B|g__Streptococcus.s__Streptococcus_agalactiae	3.1687062937
+UniRef50_E3A720	3.1676235276
+UniRef50_E3A720|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1676235276
+UniRef50_UPI00035D12EA: hypothetical protein	3.1669363146
+UniRef50_UPI00035D12EA: hypothetical protein|unclassified	3.1669363146
+UniRef50_R7BPR1: D-amino-acid transaminase	3.1668153434
+UniRef50_R7BPR1: D-amino-acid transaminase|g__Clostridium.s__Clostridium_beijerinckii	3.1668153434
+UniRef50_E8U988: Acetylornithine/acetyl-lysine aminotransferase	3.1664441320
+UniRef50_E8U988: Acetylornithine/acetyl-lysine aminotransferase|g__Deinococcus.s__Deinococcus_radiodurans	3.1664441320
+UniRef50_A6LV76: ABC transporter related	3.1659518921
+UniRef50_A6LV76: ABC transporter related|g__Clostridium.s__Clostridium_beijerinckii	3.1659518921
+UniRef50_A3X4A6	3.1659090581
+UniRef50_A3X4A6|unclassified	3.1659090581
+UniRef50_A8LIR2: Chorismate mutase related enzyme	3.1645569620
+UniRef50_A8LIR2: Chorismate mutase related enzyme|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.1645569620
+UniRef50_B0VDU9	3.1645569620
+UniRef50_B0VDU9|g__Acinetobacter.s__Acinetobacter_baumannii	3.1645569620
+UniRef50_E2ZV08	3.1645569620
+UniRef50_E2ZV08|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1645569620
+UniRef50_F2GA52: Starvation protein B	3.1645569620
+UniRef50_F2GA52: Starvation protein B|g__Acinetobacter.s__Acinetobacter_baumannii	3.1645569620
+UniRef50_G3XWZ2	3.1645569620
+UniRef50_G3XWZ2|unclassified	3.1645569620
+UniRef50_N0GPT3: L-asparaginase I	3.1645569620
+UniRef50_N0GPT3: L-asparaginase I|g__Escherichia.s__Escherichia_coli	3.1645569620
+UniRef50_N2NPD7: Bacterial regulatory helix-turn-helix s, AraC family protein	3.1645569620
+UniRef50_N2NPD7: Bacterial regulatory helix-turn-helix s, AraC family protein|g__Escherichia.s__Escherichia_coli	3.1645569620
+UniRef50_UPI000371F7B9: hypothetical protein	3.1645569620
+UniRef50_UPI000371F7B9: hypothetical protein|unclassified	3.1645569620
+UniRef50_D3FXA1: Maltose-6'-phosphate glucosidase	3.1644790706
+UniRef50_D3FXA1: Maltose-6'-phosphate glucosidase|g__Clostridium.s__Clostridium_beijerinckii	3.1644790706
+UniRef50_F7R9R1: Putative excisionase	3.1638832958
+UniRef50_F7R9R1: Putative excisionase|unclassified	3.1638832958
+UniRef50_X5KGL8: ABC transporter, substrate-binding protein	3.1637123669
+UniRef50_X5KGL8: ABC transporter, substrate-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	3.1637123669
+UniRef50_J8UYS5	3.1633811538
+UniRef50_J8UYS5|unclassified	3.1633811538
+UniRef50_V7EK23	3.1633439515
+UniRef50_V7EK23|unclassified	3.1633439515
+UniRef50_Q6F7B6	3.1628852181
+UniRef50_Q6F7B6|g__Acinetobacter.s__Acinetobacter_baumannii	3.1628852181
+UniRef50_UPI000465CD33: MULTISPECIES: chorismate mutase	3.1620967149
+UniRef50_UPI000465CD33: MULTISPECIES: chorismate mutase|unclassified	3.1620967149
+UniRef50_UPI0002ADAB72	3.1605316703
+UniRef50_UPI0002ADAB72|unclassified	3.1605316703
+UniRef50_J9YSH6: RofA family transcriptional regulator	3.1603561559
+UniRef50_J9YSH6: RofA family transcriptional regulator|g__Streptococcus.s__Streptococcus_agalactiae	3.1603561559
+UniRef50_UPI00036BE038: hypothetical protein	3.1603463899
+UniRef50_UPI00036BE038: hypothetical protein|unclassified	3.1603463899
+UniRef50_B9KSK9: Mammalian cell entry related domain protein	3.1602668170
+UniRef50_B9KSK9: Mammalian cell entry related domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.1602668170
+UniRef50_W5X9Y1: 50S ribosomal protein L21	3.1600812141
+UniRef50_W5X9Y1: 50S ribosomal protein L21|unclassified	3.1600812141
+UniRef50_A6LWM4: Amine oxidase	3.1592807488
+UniRef50_A6LWM4: Amine oxidase|g__Clostridium.s__Clostridium_beijerinckii	3.1592807488
+UniRef50_Q7MW52: Fructose-1,6-bisphosphatase class 3	3.1590913451
+UniRef50_Q7MW52: Fructose-1,6-bisphosphatase class 3|g__Clostridium.s__Clostridium_beijerinckii	3.1590913451
+UniRef50_S4MC93	3.1590340761
+UniRef50_S4MC93|unclassified	3.1590340761
+UniRef50_D0K964	3.1582890383
+UniRef50_D0K964|unclassified	3.1582890383
+UniRef50_K0HCK8: ComE operon protein 3	3.1580324485
+UniRef50_K0HCK8: ComE operon protein 3|g__Propionibacterium.s__Propionibacterium_acnes	3.1580324485
+UniRef50_G2JI10: Major facilitator superfamily permease	3.1579673909
+UniRef50_G2JI10: Major facilitator superfamily permease|g__Acinetobacter.s__Acinetobacter_baumannii	3.1579673909
+UniRef50_C4Y1J5: Isocitrate dehydrogenase, mitochondrial	3.1570706120
+UniRef50_C4Y1J5: Isocitrate dehydrogenase, mitochondrial|unclassified	3.1570706120
+UniRef50_U5MW64: Diguanylate cyclase and metal dependent phosphohydrolase	3.1566426759
+UniRef50_U5MW64: Diguanylate cyclase and metal dependent phosphohydrolase|g__Clostridium.s__Clostridium_beijerinckii	3.1566426759
+UniRef50_A6LU00: Baseplate J family protein	3.1564414426
+UniRef50_A6LU00: Baseplate J family protein|g__Clostridium.s__Clostridium_beijerinckii	3.1564414426
+UniRef50_Q9RWI3	3.1559760025
+UniRef50_Q9RWI3|g__Deinococcus.s__Deinococcus_radiodurans	3.1559760025
+UniRef50_T2H468: AraC family transcriptional activator FeaR	3.1556810006
+UniRef50_T2H468: AraC family transcriptional activator FeaR|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1556810006
+UniRef50_A0A024HCV7	3.1545741325
+UniRef50_A0A024HCV7|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1545741325
+UniRef50_F0KH23: Leucine-responsive regulatory protein	3.1545741325
+UniRef50_F0KH23: Leucine-responsive regulatory protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.1545741325
+UniRef50_I3URK7	3.1545741325
+UniRef50_I3URK7|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1545741325
+UniRef50_Q1RFF5	3.1545741325
+UniRef50_Q1RFF5|g__Escherichia.s__Escherichia_coli	3.1545741325
+UniRef50_R0F559: Phenylacetic acid degradation-related protein	3.1535097042
+UniRef50_R0F559: Phenylacetic acid degradation-related protein|unclassified	3.1535097042
+UniRef50_M5A5P1: Geranyltranstransferase	3.1534981014
+UniRef50_M5A5P1: Geranyltranstransferase|g__Helicobacter.s__Helicobacter_pylori	3.1534981014
+UniRef50_UPI0004643586: hypothetical protein	3.1527330877
+UniRef50_UPI0004643586: hypothetical protein|unclassified	3.1527330877
+UniRef50_UPI0004670623: hypothetical protein	3.1525288779
+UniRef50_UPI0004670623: hypothetical protein|unclassified	3.1525288779
+UniRef50_I6E0B3: Gram-negative pili assembly chaperone, C-terminal domain protein	3.1520999992
+UniRef50_I6E0B3: Gram-negative pili assembly chaperone, C-terminal domain protein|unclassified	3.1520999992
+UniRef50_F7XZ93: Glycosyl transferase family 2	3.1518127263
+UniRef50_F7XZ93: Glycosyl transferase family 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.1518127263
+UniRef50_S4B4H2: Accessory colonization factor AcfD	3.1515465212
+UniRef50_S4B4H2: Accessory colonization factor AcfD|g__Escherichia.s__Escherichia_coli	3.1515465212
+UniRef50_G2KTX2	3.1515320479
+UniRef50_G2KTX2|unclassified	3.1515320479
+UniRef50_A6LZC1: AraC-type transcriptional regulator domain protein	3.1513046573
+UniRef50_A6LZC1: AraC-type transcriptional regulator domain protein|g__Clostridium.s__Clostridium_beijerinckii	3.1513046573
+UniRef50_F8IF10: ABC transporter related protein	3.1510163044
+UniRef50_F8IF10: ABC transporter related protein|g__Clostridium.s__Clostridium_beijerinckii	3.1510163044
+UniRef50_D2FRF2: Serine-aspartate repeat-containing protein F	3.1506253898
+UniRef50_D2FRF2: Serine-aspartate repeat-containing protein F|g__Staphylococcus.s__Staphylococcus_epidermidis	2.5773195876
+UniRef50_D2FRF2: Serine-aspartate repeat-containing protein F|unclassified	0.5733058021
+UniRef50_UPI0003B5372C: TetR family transcriptional regulator	3.1497597894
+UniRef50_UPI0003B5372C: TetR family transcriptional regulator|unclassified	3.1497597894
+UniRef50_B0VDS9	3.1497418244
+UniRef50_B0VDS9|g__Acinetobacter.s__Acinetobacter_baumannii	3.1497418244
+UniRef50_B0RZ23: Trans-2-enoyl-CoA reductase (NADPH)	3.1496062992
+UniRef50_B0RZ23: Trans-2-enoyl-CoA reductase (NADPH)|g__Acinetobacter.s__Acinetobacter_baumannii	3.1496062992
+UniRef50_Q5LNT3: Ribosomal protein L11 methyltransferase	3.1494833883
+UniRef50_Q5LNT3: Ribosomal protein L11 methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.1494833883
+UniRef50_N2E4F6	3.1493423980
+UniRef50_N2E4F6|unclassified	3.1493423980
+UniRef50_W1XN99	3.1491325506
+UniRef50_W1XN99|unclassified	3.1491325506
+UniRef50_I4CV16	3.1488785546
+UniRef50_I4CV16|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2222222222
+UniRef50_I4CV16|unclassified	0.9266563324
+UniRef50_I0TLB8: Cupin domain protein	3.1488772613
+UniRef50_I0TLB8: Cupin domain protein|unclassified	3.1488772613
+UniRef50_Q7NLS3: UPF0145 protein gll1048	3.1488053359
+UniRef50_Q7NLS3: UPF0145 protein gll1048|unclassified	3.1488053359
+UniRef50_A4VFV8: Sensor histidine kinase	3.1487811387
+UniRef50_A4VFV8: Sensor histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1487811387
+UniRef50_S5YAW9: Transcriptional regulator, LysR family	3.1484405843
+UniRef50_S5YAW9: Transcriptional regulator, LysR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.1484405843
+UniRef50_A5HXZ1: Anaerobic ribonucleoside-triphosphate reductase	3.1477736248
+UniRef50_A5HXZ1: Anaerobic ribonucleoside-triphosphate reductase|g__Clostridium.s__Clostridium_beijerinckii	3.1477736248
+UniRef50_F0YFQ2: Expressed protein (Fragment)	3.1476706487
+UniRef50_F0YFQ2: Expressed protein (Fragment)|unclassified	3.1476706487
+UniRef50_Q9I3P8: Flagellar biosynthesis protein FlhF	3.1474692855
+UniRef50_Q9I3P8: Flagellar biosynthesis protein FlhF|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1474692855
+UniRef50_M9RUN2: LysR family transcriptional regulator	3.1471017835
+UniRef50_M9RUN2: LysR family transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.1471017835
+UniRef50_M4UIL6	3.1468436059
+UniRef50_M4UIL6|unclassified	3.1468436059
+UniRef50_I0EI71: ATP-dependent helicase	3.1467161521
+UniRef50_I0EI71: ATP-dependent helicase|g__Helicobacter.s__Helicobacter_pylori	3.1467161521
+UniRef50_G7U413: Pyridine nucleotide-disulfide oxidoreductase	3.1466756894
+UniRef50_G7U413: Pyridine nucleotide-disulfide oxidoreductase|g__Propionibacterium.s__Propionibacterium_acnes	3.1466756894
+UniRef50_F3U4S3: Methyl accepting chemotaxis protein	3.1464438771
+UniRef50_F3U4S3: Methyl accepting chemotaxis protein|unclassified	3.1464438771
+UniRef50_UPI0003669E8B: hypothetical protein	3.1462651074
+UniRef50_UPI0003669E8B: hypothetical protein|unclassified	3.1462651074
+UniRef50_F2AHK1	3.1454097659
+UniRef50_F2AHK1|unclassified	3.1454097659
+UniRef50_K1ZYB3	3.1450412763
+UniRef50_K1ZYB3|unclassified	3.1450412763
+UniRef50_A0A023LCW0	3.1446540881
+UniRef50_A0A023LCW0|g__Escherichia.s__Escherichia_coli	3.1446540881
+UniRef50_A6LQL4: Methylated-DNA--protein-cysteine methyltransferase	3.1446540881
+UniRef50_A6LQL4: Methylated-DNA--protein-cysteine methyltransferase|g__Clostridium.s__Clostridium_beijerinckii	3.1446540881
+UniRef50_F2I7B4: ABC transporter, ATP-binding protein	3.1446540881
+UniRef50_F2I7B4: ABC transporter, ATP-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	3.1446540881
+UniRef50_H1W305	3.1446540881
+UniRef50_H1W305|unclassified	3.1446540881
+UniRef50_R9V6A4: Peptidyl-tRNA hydrolase	3.1446540881
+UniRef50_R9V6A4: Peptidyl-tRNA hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1446540881
+UniRef50_O52788: Tyrosine-protein kinase ptk	3.1428052157
+UniRef50_O52788: Tyrosine-protein kinase ptk|g__Acinetobacter.s__Acinetobacter_baumannii	2.9941298107
+UniRef50_O52788: Tyrosine-protein kinase ptk|unclassified	0.1486754050
+UniRef50_I1ETE2	3.1420488224
+UniRef50_I1ETE2|unclassified	3.1420488224
+UniRef50_B7GWT8: Ribosomal RNA small subunit methyltransferase C	3.1419722131
+UniRef50_B7GWT8: Ribosomal RNA small subunit methyltransferase C|g__Acinetobacter.s__Acinetobacter_baumannii	3.1419722131
+UniRef50_R2UQ16: Replication initiation protein	3.1413497052
+UniRef50_R2UQ16: Replication initiation protein|unclassified	3.1413497052
+UniRef50_I3YNX6: Glycerol-3-phosphate dehydrogenase	3.1412276310
+UniRef50_I3YNX6: Glycerol-3-phosphate dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	3.1412276310
+UniRef50_Q1LFE8: Transcriptional regulator, LysR family	3.1407883402
+UniRef50_Q1LFE8: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1407883402
+UniRef50_S6D596	3.1402065264
+UniRef50_S6D596|unclassified	3.1402065264
+UniRef50_F2ABZ8	3.1391792230
+UniRef50_F2ABZ8|unclassified	3.1391792230
+UniRef50_R8ZK04	3.1390620017
+UniRef50_R8ZK04|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1390620017
+UniRef50_A3M2J5: FilF	3.1387973668
+UniRef50_A3M2J5: FilF|g__Acinetobacter.s__Acinetobacter_baumannii	3.1387973668
+UniRef50_UPI000372888C: hypothetical protein	3.1382977099
+UniRef50_UPI000372888C: hypothetical protein|unclassified	3.1382977099
+UniRef50_A6VD60: N-acetylmuramoyl-L-alanine amidase	3.1381546974
+UniRef50_A6VD60: N-acetylmuramoyl-L-alanine amidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1381546974
+UniRef50_A6UB50: CreA family protein	3.1380498898
+UniRef50_A6UB50: CreA family protein|unclassified	3.1380498898
+UniRef50_A6LW27: Integral membrane sensor signal transduction histidine kinase	3.1379419475
+UniRef50_A6LW27: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	3.1379419475
+UniRef50_A6M234: Sigma-54 factor, interaction domain-containing protein	3.1375638295
+UniRef50_A6M234: Sigma-54 factor, interaction domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	3.1375638295
+UniRef50_UPI00035E553A: hypothetical protein	3.1367679539
+UniRef50_UPI00035E553A: hypothetical protein|unclassified	3.1367679539
+UniRef50_V5ST11: Cytochrome P450	3.1366256470
+UniRef50_V5ST11: Cytochrome P450|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1366256470
+UniRef50_C4I8A2: Hydrolase, isochorismatase family	3.1355736602
+UniRef50_C4I8A2: Hydrolase, isochorismatase family|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1355736602
+UniRef50_A4YBV8: DNA-directed RNA polymerase subunit alpha	3.1350074850
+UniRef50_A4YBV8: DNA-directed RNA polymerase subunit alpha|g__Acinetobacter.s__Acinetobacter_baumannii	2.7830364222
+UniRef50_A4YBV8: DNA-directed RNA polymerase subunit alpha|unclassified	0.3519710628
+UniRef50_C1DNP3: Short-chain dehydrogenase/reductase SDR	3.1347962382
+UniRef50_C1DNP3: Short-chain dehydrogenase/reductase SDR|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1347962382
+UniRef50_G4KTZ6: Serine acetyltransferase	3.1347962382
+UniRef50_G4KTZ6: Serine acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	3.1347962382
+UniRef50_Q1RCK1	3.1347962382
+UniRef50_Q1RCK1|g__Escherichia.s__Escherichia_coli	3.1347962382
+UniRef50_Q46864: Antitoxin MqsA	3.1347962382
+UniRef50_Q46864: Antitoxin MqsA|g__Escherichia.s__Escherichia_coli	3.1347962382
+UniRef50_Q4JV62: 4-hydroxy-tetrahydrodipicolinate reductase	3.1347962382
+UniRef50_Q4JV62: 4-hydroxy-tetrahydrodipicolinate reductase|g__Propionibacterium.s__Propionibacterium_acnes	3.1347962382
+UniRef50_Q9RY12	3.1347962382
+UniRef50_Q9RY12|g__Deinococcus.s__Deinococcus_radiodurans	3.1347962382
+UniRef50_UPI00037956D5: hypothetical protein	3.1347962382
+UniRef50_UPI00037956D5: hypothetical protein|unclassified	3.1347962382
+UniRef50_W0Z4U9	3.1344640910
+UniRef50_W0Z4U9|unclassified	3.1344640910
+UniRef50_B2TPC7: Homoserine kinase	3.1343729807
+UniRef50_B2TPC7: Homoserine kinase|g__Clostridium.s__Clostridium_beijerinckii	3.1343729807
+UniRef50_R4K1J7: Iron only hydrogenase large subunit	3.1334496471
+UniRef50_R4K1J7: Iron only hydrogenase large subunit|g__Clostridium.s__Clostridium_beijerinckii	3.1334496471
+UniRef50_R9D7F1	3.1331905309
+UniRef50_R9D7F1|unclassified	3.1331905309
+UniRef50_A0PZM2: 4-hydroxy-tetrahydrodipicolinate reductase	3.1330304069
+UniRef50_A0PZM2: 4-hydroxy-tetrahydrodipicolinate reductase|g__Clostridium.s__Clostridium_beijerinckii	3.0374262537
+UniRef50_A0PZM2: 4-hydroxy-tetrahydrodipicolinate reductase|unclassified	0.0956041532
+UniRef50_O69763: Vanillin dehydrogenase	3.1328215402
+UniRef50_O69763: Vanillin dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	3.1328215402
+UniRef50_UPI0003B3957E: 50S ribosomal protein L21	3.1325331191
+UniRef50_UPI0003B3957E: 50S ribosomal protein L21|unclassified	3.1325331191
+UniRef50_B0V969: Homoserine kinase	3.1324970196
+UniRef50_B0V969: Homoserine kinase|g__Acinetobacter.s__Acinetobacter_baumannii	3.1324970196
+UniRef50_W1XTS4: Rlx protein (Fragment)	3.1324958474
+UniRef50_W1XTS4: Rlx protein (Fragment)|unclassified	3.1324958474
+UniRef50_I4DYV1: Branched-chain amino acid ABC transporter permease protein	3.1322363303
+UniRef50_I4DYV1: Branched-chain amino acid ABC transporter permease protein|g__Clostridium.s__Clostridium_beijerinckii	3.1322363303
+UniRef50_B9KF16	3.1318297360
+UniRef50_B9KF16|unclassified	3.1318297360
+UniRef50_A0A038G2P2	3.1313867196
+UniRef50_A0A038G2P2|unclassified	3.1313867196
+UniRef50_A7GJ81: DNA-directed RNA polymerase subunit beta'	3.1312331551
+UniRef50_A7GJ81: DNA-directed RNA polymerase subunit beta'|g__Clostridium.s__Clostridium_beijerinckii	3.0936556150
+UniRef50_A7GJ81: DNA-directed RNA polymerase subunit beta'|unclassified	0.0375775402
+UniRef50_UPI00047E270B: ArsR family transcriptional regulator	3.1300622534
+UniRef50_UPI00047E270B: ArsR family transcriptional regulator|unclassified	3.1300622534
+UniRef50_I2BTA7: Response regulator/GGDEF domain protein	3.1292932395
+UniRef50_I2BTA7: Response regulator/GGDEF domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1292932395
+UniRef50_V5E630	3.1286626370
+UniRef50_V5E630|unclassified	3.1286626370
+UniRef50_K1YE78	3.1280049687
+UniRef50_K1YE78|unclassified	3.1280049687
+UniRef50_F0QIN2: Transcriptional regulator, TetR family	3.1275981807
+UniRef50_F0QIN2: Transcriptional regulator, TetR family|g__Acinetobacter.s__Acinetobacter_baumannii	3.1275981807
+UniRef50_M1MV61: ATP-dependent transcriptional regulator, MalT-like, LuxR family	3.1266727254
+UniRef50_M1MV61: ATP-dependent transcriptional regulator, MalT-like, LuxR family|g__Clostridium.s__Clostridium_beijerinckii	3.1266727254
+UniRef50_S9UYL7	3.1266563169
+UniRef50_S9UYL7|unclassified	3.1266563169
+UniRef50_M4S432: LysR family transcriptional regulator	3.1264198961
+UniRef50_M4S432: LysR family transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	3.1264198961
+UniRef50_Q48KB0: Acyl-homoserine lactone acylase PvdQ	3.1260447568
+UniRef50_Q48KB0: Acyl-homoserine lactone acylase PvdQ|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1260447568
+UniRef50_E6N053: O-succinylhomoserine sulfhydrylase	3.1259288652
+UniRef50_E6N053: O-succinylhomoserine sulfhydrylase|g__Neisseria.s__Neisseria_meningitidis	3.1259288652
+UniRef50_W8X1H1	3.1254989002
+UniRef50_W8X1H1|unclassified	3.1254989002
+UniRef50_A7FAZ2	3.1252779355
+UniRef50_A7FAZ2|g__Acinetobacter.s__Acinetobacter_baumannii	3.1252779355
+UniRef50_Q4JX51: Glucose-6-phosphate isomerase	3.1250637034
+UniRef50_Q4JX51: Glucose-6-phosphate isomerase|g__Propionibacterium.s__Propionibacterium_acnes	2.2361748146
+UniRef50_Q4JX51: Glucose-6-phosphate isomerase|g__Deinococcus.s__Deinococcus_radiodurans	0.8888888889
+UniRef50_A1AJP3	3.1250000000
+UniRef50_A1AJP3|unclassified	3.1250000000
+UniRef50_B7V0U7	3.1250000000
+UniRef50_B7V0U7|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1250000000
+UniRef50_E4FFC4	3.1250000000
+UniRef50_E4FFC4|g__Propionibacterium.s__Propionibacterium_acnes	3.1250000000
+UniRef50_H4A9F5	3.1250000000
+UniRef50_H4A9F5|g__Staphylococcus.s__Staphylococcus_aureus	3.1250000000
+UniRef50_P0ADU3: Probable quinol monooxygenase YgiN	3.1250000000
+UniRef50_P0ADU3: Probable quinol monooxygenase YgiN|g__Escherichia.s__Escherichia_coli	3.1250000000
+UniRef50_Q6N535: ATP-dependent Clp protease adapter protein ClpS 2	3.1250000000
+UniRef50_Q6N535: ATP-dependent Clp protease adapter protein ClpS 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.1250000000
+UniRef50_Q9RV68: Transcription elongation factor GreA	3.1250000000
+UniRef50_Q9RV68: Transcription elongation factor GreA|g__Deinococcus.s__Deinococcus_radiodurans	3.1250000000
+UniRef50_R4YEC6: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	3.1250000000
+UniRef50_R4YEC6: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|g__Escherichia.s__Escherichia_coli	3.1250000000
+UniRef50_UPI00029DBD0A	3.1250000000
+UniRef50_UPI00029DBD0A|unclassified	3.1250000000
+UniRef50_D1DJZ6: TspB-like protein	3.1245011919
+UniRef50_D1DJZ6: TspB-like protein|g__Neisseria.s__Neisseria_meningitidis	3.1245011919
+UniRef50_F0KJN4	3.1235894629
+UniRef50_F0KJN4|g__Acinetobacter.s__Acinetobacter_baumannii	3.1235894629
+UniRef50_UPI00036C8B47: hypothetical protein	3.1232734320
+UniRef50_UPI00036C8B47: hypothetical protein|unclassified	3.1232734320
+UniRef50_N6TVC0	3.1226821907
+UniRef50_N6TVC0|unclassified	3.1226821907
+UniRef50_V1TTX3: Outer membrane receptor FepA	3.1221679573
+UniRef50_V1TTX3: Outer membrane receptor FepA|g__Escherichia.s__Escherichia_coli	3.1221679573
+UniRef50_Q5SIN6	3.1216935092
+UniRef50_Q5SIN6|unclassified	3.1216935092
+UniRef50_B2V4S9: Elongation factor P	3.1213986847
+UniRef50_B2V4S9: Elongation factor P|g__Clostridium.s__Clostridium_beijerinckii	2.9673590504
+UniRef50_B2V4S9: Elongation factor P|unclassified	0.1540396343
+UniRef50_C8WIL3: 2-nitropropane dioxygenase NPD	3.1210630155
+UniRef50_C8WIL3: 2-nitropropane dioxygenase NPD|g__Clostridium.s__Clostridium_beijerinckii	3.1210630155
+UniRef50_H3ZZ23	3.1208935611
+UniRef50_H3ZZ23|unclassified	3.1208935611
+UniRef50_F0G430	3.1181067978
+UniRef50_F0G430|unclassified	3.1181067978
+UniRef50_K0SF68	3.1178419186
+UniRef50_K0SF68|unclassified	3.1178419186
+UniRef50_L3RWN4: Transcriptional regulator	3.1177402580
+UniRef50_L3RWN4: Transcriptional regulator|g__Escherichia.s__Escherichia_coli	3.1177402580
+UniRef50_J0SEV2: G5 domain protein (Fragment)	3.1165100667
+UniRef50_J0SEV2: G5 domain protein (Fragment)|g__Staphylococcus.s__Staphylococcus_epidermidis	3.1165100667
+UniRef50_A3M2F0	3.1163730053
+UniRef50_A3M2F0|g__Acinetobacter.s__Acinetobacter_baumannii	3.1163730053
+UniRef50_L1KAC7	3.1159067269
+UniRef50_L1KAC7|unclassified	3.1159067269
+UniRef50_UPI00047E563E: hypothetical protein	3.1159060069
+UniRef50_UPI00047E563E: hypothetical protein|unclassified	3.1159060069
+UniRef50_Q9I406: Gamma-glutamyltranspeptidase	3.1157475677
+UniRef50_Q9I406: Gamma-glutamyltranspeptidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1157475677
+UniRef50_A4WR31: Ferredoxin	3.1152647975
+UniRef50_A4WR31: Ferredoxin|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.1152647975
+UniRef50_B7NPA6	3.1152647975
+UniRef50_B7NPA6|g__Escherichia.s__Escherichia_coli	3.1152647975
+UniRef50_B9KMH9	3.1152647975
+UniRef50_B9KMH9|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.1152647975
+UniRef50_G5Q2Y7: Major facilitator superfamily	3.1152647975
+UniRef50_G5Q2Y7: Major facilitator superfamily|g__Escherichia.s__Escherichia_coli	3.1152647975
+UniRef50_M9VCW9: Proteasome subunit beta	3.1152647975
+UniRef50_M9VCW9: Proteasome subunit beta|g__Propionibacterium.s__Propionibacterium_acnes	3.1152647975
+UniRef50_P0ABE7: Soluble cytochrome b562	3.1152647975
+UniRef50_P0ABE7: Soluble cytochrome b562|g__Escherichia.s__Escherichia_coli	3.1152647975
+UniRef50_P0ADK5: Inner membrane protein YiaW	3.1152647975
+UniRef50_P0ADK5: Inner membrane protein YiaW|g__Escherichia.s__Escherichia_coli	3.1152647975
+UniRef50_P13977: DegV domain-containing 15.5 kDa protein	3.1152647975
+UniRef50_P13977: DegV domain-containing 15.5 kDa protein|g__Staphylococcus.s__Staphylococcus_aureus	3.1152647975
+UniRef50_Q71YD4: 30S ribosomal protein S14	3.1152647975
+UniRef50_Q71YD4: 30S ribosomal protein S14|g__Deinococcus.s__Deinococcus_radiodurans	3.1152647975
+UniRef50_T1ZWU5	3.1152647975
+UniRef50_T1ZWU5|g__Streptococcus.s__Streptococcus_agalactiae	3.1152647975
+UniRef50_T9D1R8: N,N'-diacetylchitobiose permease IIC component	3.1152647975
+UniRef50_T9D1R8: N,N'-diacetylchitobiose permease IIC component|g__Escherichia.s__Escherichia_coli	3.1152647975
+UniRef50_UPI000467CF8F: hypothetical protein, partial	3.1152647975
+UniRef50_UPI000467CF8F: hypothetical protein, partial|unclassified	3.1152647975
+UniRef50_UPI00047329E9: GntR family transcriptional regulator, partial	3.1152647975
+UniRef50_UPI00047329E9: GntR family transcriptional regulator, partial|unclassified	3.1152647975
+UniRef50_N6VD84	3.1146856350
+UniRef50_N6VD84|unclassified	3.1146856350
+UniRef50_B0T4C1: Probable chemoreceptor glutamine deamidase CheD	3.1146644225
+UniRef50_B0T4C1: Probable chemoreceptor glutamine deamidase CheD|unclassified	3.1146644225
+UniRef50_R9ZFQ9: LysR family transcriptional regulator	3.1145084916
+UniRef50_R9ZFQ9: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1145084916
+UniRef50_G8SKG7	3.1143712790
+UniRef50_G8SKG7|unclassified	3.1143712790
+UniRef50_A6LW07: Periplasmic binding protein/LacI transcriptional regulator	3.1134812598
+UniRef50_A6LW07: Periplasmic binding protein/LacI transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	3.1134812598
+UniRef50_P45422	3.1129131979
+UniRef50_P45422|g__Escherichia.s__Escherichia_coli	3.1129131979
+UniRef50_Q9I0I6: Methyl-accepting chemotaxis protein PA2652	3.1126169567
+UniRef50_Q9I0I6: Methyl-accepting chemotaxis protein PA2652|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1126169567
+UniRef50_S6BAJ6: Phosphoenolpyruvate--protein phosphotransferase	3.1124903868
+UniRef50_S6BAJ6: Phosphoenolpyruvate--protein phosphotransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1124903868
+UniRef50_F0MX64: Nickel-dependent hydrogenase, b-type cytochrome subunit	3.1113304688
+UniRef50_F0MX64: Nickel-dependent hydrogenase, b-type cytochrome subunit|g__Neisseria.s__Neisseria_meningitidis	3.1113304688
+UniRef50_A6M3B7: Phage minor structural protein	3.1103535020
+UniRef50_A6M3B7: Phage minor structural protein|g__Clostridium.s__Clostridium_beijerinckii	3.1103535020
+UniRef50_A1B792	3.1101399459
+UniRef50_A1B792|unclassified	3.1101399459
+UniRef50_B7V6Y7	3.1098487608
+UniRef50_B7V6Y7|unclassified	3.1098487608
+UniRef50_V8AMA6	3.1092323903
+UniRef50_V8AMA6|unclassified	3.1092323903
+UniRef50_Q8XHL9: Glycine--tRNA ligase	3.1091523948
+UniRef50_Q8XHL9: Glycine--tRNA ligase|g__Clostridium.s__Clostridium_beijerinckii	3.1091523948
+UniRef50_E6N0G1: Cell division protein ZipA	3.1087642584
+UniRef50_E6N0G1: Cell division protein ZipA|g__Neisseria.s__Neisseria_meningitidis	3.1087642584
+UniRef50_A6M165: Cellulose synthase subunit domain	3.1085604535
+UniRef50_A6M165: Cellulose synthase subunit domain|g__Clostridium.s__Clostridium_beijerinckii	3.1085604535
+UniRef50_UPI0003287F61: PREDICTED: translation initiation factor IF-2-like	3.1085526159
+UniRef50_UPI0003287F61: PREDICTED: translation initiation factor IF-2-like|unclassified	3.1085526159
+UniRef50_R5PZ37	3.1085147638
+UniRef50_R5PZ37|unclassified	3.1085147638
+UniRef50_D8JEK9: Phage-related protein (Phge_rel_HI1409) family protein	3.1084490922
+UniRef50_D8JEK9: Phage-related protein (Phge_rel_HI1409) family protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.1084490922
+UniRef50_U5MSD8	3.1079327167
+UniRef50_U5MSD8|g__Clostridium.s__Clostridium_beijerinckii	3.1079327167
+UniRef50_A3M2D9	3.1077980817
+UniRef50_A3M2D9|g__Acinetobacter.s__Acinetobacter_baumannii	3.1077980817
+UniRef50_UPI000363C3C6: hypothetical protein	3.1073855460
+UniRef50_UPI000363C3C6: hypothetical protein|unclassified	3.1073855460
+UniRef50_Q4MQ56	3.1068512319
+UniRef50_Q4MQ56|unclassified	3.1068512319
+UniRef50_A0P2P5	3.1059970585
+UniRef50_A0P2P5|unclassified	3.1059970585
+UniRef50_F4QP68: Con	3.1058526139
+UniRef50_F4QP68: Con|unclassified	3.1058526139
+UniRef50_Q983M5: Elongation factor P 2	3.1055901479
+UniRef50_Q983M5: Elongation factor P 2|unclassified	3.1055901479
+UniRef50_A6LSV2	3.1055900621
+UniRef50_A6LSV2|g__Clostridium.s__Clostridium_beijerinckii	3.1055900621
+UniRef50_C5Q832	3.1055900621
+UniRef50_C5Q832|g__Staphylococcus.s__Staphylococcus_epidermidis	3.1055900621
+UniRef50_R4ZAX1: Galactose-1-phosphate uridylyltransferase	3.1055900621
+UniRef50_R4ZAX1: Galactose-1-phosphate uridylyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	3.1055900621
+UniRef50_V5SRH8: Heme oxygenase	3.1055900621
+UniRef50_V5SRH8: Heme oxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1055900621
+UniRef50_A6M2G5: Phage infection protein, putative	3.1046678148
+UniRef50_A6M2G5: Phage infection protein, putative|g__Clostridium.s__Clostridium_beijerinckii	3.1046678148
+UniRef50_Q9I5U5: Ribosomal RNA small subunit methyltransferase A	3.1040580789
+UniRef50_Q9I5U5: Ribosomal RNA small subunit methyltransferase A|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1040580789
+UniRef50_Q0K4R1: NAD-dependent aldehyde dehydrogenase	3.1038185868
+UniRef50_Q0K4R1: NAD-dependent aldehyde dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.1038185868
+UniRef50_W2BNM9	3.1036651125
+UniRef50_W2BNM9|g__Streptococcus.s__Streptococcus_agalactiae	3.1036651125
+UniRef50_V8GU79: Transposase (Fragment)	3.1031515854
+UniRef50_V8GU79: Transposase (Fragment)|unclassified	3.1031515854
+UniRef50_A3PKU8	3.1022172247
+UniRef50_A3PKU8|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.1551724138
+UniRef50_A3PKU8|unclassified	0.9470448109
+UniRef50_V5VHC2	3.1009615385
+UniRef50_V5VHC2|g__Acinetobacter.s__Acinetobacter_baumannii	3.1009615385
+UniRef50_H4JD68: Dienelactone hydrolase family protein	3.1007751938
+UniRef50_H4JD68: Dienelactone hydrolase family protein|g__Escherichia.s__Escherichia_coli	3.1007751938
+UniRef50_A5W1Q0: Phosphoglycerate mutase	3.1007677978
+UniRef50_A5W1Q0: Phosphoglycerate mutase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.1007677978
+UniRef50_R1DNN2	3.1006088064
+UniRef50_R1DNN2|unclassified	3.1006088064
+UniRef50_UPI0002C575BD	3.1004984438
+UniRef50_UPI0002C575BD|unclassified	3.1004984438
+UniRef50_U5MW97: HD-GYP domain protein	3.1004745338
+UniRef50_U5MW97: HD-GYP domain protein|g__Clostridium.s__Clostridium_beijerinckii	3.1004745338
+UniRef50_A6LSC4: Malonyl CoA-acyl carrier protein transacylase	3.1002920598
+UniRef50_A6LSC4: Malonyl CoA-acyl carrier protein transacylase|g__Clostridium.s__Clostridium_beijerinckii	3.1002920598
+UniRef50_UPI0002194A67: aspartate kinase, partial	3.1001419500
+UniRef50_UPI0002194A67: aspartate kinase, partial|unclassified	3.1001419500
+UniRef50_E0XQ70	3.1001038999
+UniRef50_E0XQ70|unclassified	3.1001038999
+UniRef50_UPI000169B03B: FKBP-type peptidyl-prolyl cis-trans isomerase (rotamase)	3.0994406584
+UniRef50_UPI000169B03B: FKBP-type peptidyl-prolyl cis-trans isomerase (rotamase)|unclassified	3.0994406584
+UniRef50_Q4UZD0	3.0988820101
+UniRef50_Q4UZD0|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0988820101
+UniRef50_T6ITD7: DNA mismatch repair protein mutS	3.0981662260
+UniRef50_T6ITD7: DNA mismatch repair protein mutS|g__Escherichia.s__Escherichia_coli	3.0981662260
+UniRef50_Q6A9R8: Glycine dehydrogenase (decarboxylating)	3.0978529339
+UniRef50_Q6A9R8: Glycine dehydrogenase (decarboxylating)|g__Propionibacterium.s__Propionibacterium_acnes	3.0762325870
+UniRef50_Q6A9R8: Glycine dehydrogenase (decarboxylating)|unclassified	0.0216203469
+UniRef50_G4C4Q9	3.0976507349
+UniRef50_G4C4Q9|unclassified	3.0976507349
+UniRef50_Q0DGM2: Os05g0524100 protein (Fragment)	3.0975128212
+UniRef50_Q0DGM2: Os05g0524100 protein (Fragment)|unclassified	3.0975128212
+UniRef50_A6LYI5: Metal dependent phosphohydrolase	3.0974617760
+UniRef50_A6LYI5: Metal dependent phosphohydrolase|g__Clostridium.s__Clostridium_beijerinckii	3.0974617760
+UniRef50_UPI00036E600C: hypothetical protein	3.0966832662
+UniRef50_UPI00036E600C: hypothetical protein|unclassified	3.0966832662
+UniRef50_L0LL50: Small multidrug resistance (SMR) family efflux pump	3.0959752322
+UniRef50_L0LL50: Small multidrug resistance (SMR) family efflux pump|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.0959752322
+UniRef50_Q8FAW3	3.0959752322
+UniRef50_Q8FAW3|g__Escherichia.s__Escherichia_coli	3.0959752322
+UniRef50_Q9RV85	3.0959752322
+UniRef50_Q9RV85|g__Deinococcus.s__Deinococcus_radiodurans	3.0959752322
+UniRef50_Y2QX65: Glycosyl transferase, group 2 family protein	3.0959752322
+UniRef50_Y2QX65: Glycosyl transferase, group 2 family protein|g__Staphylococcus.s__Staphylococcus_aureus	3.0959752322
+UniRef50_UPI0003659DC3: hypothetical protein	3.0953113777
+UniRef50_UPI0003659DC3: hypothetical protein|unclassified	3.0953113777
+UniRef50_W7X8F4	3.0946457029
+UniRef50_W7X8F4|unclassified	3.0946457029
+UniRef50_H0DZJ4	3.0931831794
+UniRef50_H0DZJ4|unclassified	3.0931831794
+UniRef50_UPI0001E2C790: helix-turn-helix domain-containing protein	3.0931390766
+UniRef50_UPI0001E2C790: helix-turn-helix domain-containing protein|unclassified	3.0931390766
+UniRef50_G7M3I9: Copper amine oxidase-like domain-containing protein	3.0931202953
+UniRef50_G7M3I9: Copper amine oxidase-like domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	3.0931202953
+UniRef50_W5X7H9: Xylose isomerase domain-containing protein	3.0918366108
+UniRef50_W5X7H9: Xylose isomerase domain-containing protein|unclassified	3.0918366108
+UniRef50_T8JQ41	3.0914578036
+UniRef50_T8JQ41|unclassified	3.0914578036
+UniRef50_Q8CTH3	3.0910508969
+UniRef50_Q8CTH3|unclassified	3.0910508969
+UniRef50_B9KN09	3.0900210211
+UniRef50_B9KN09|unclassified	3.0900210211
+UniRef50_D4HEH1: Sugar-binding domain protein	3.0882629354
+UniRef50_D4HEH1: Sugar-binding domain protein|g__Propionibacterium.s__Propionibacterium_acnes	3.0882629354
+UniRef50_UPI0003630846: hypothetical protein	3.0878830879
+UniRef50_UPI0003630846: hypothetical protein|unclassified	3.0878830879
+UniRef50_G2JK97	3.0875894928
+UniRef50_G2JK97|unclassified	3.0875894928
+UniRef50_R4ZQR0: Two-component response regulator, malate	3.0875054667
+UniRef50_R4ZQR0: Two-component response regulator, malate|g__Streptococcus.s__Streptococcus_agalactiae	3.0875054667
+UniRef50_G8VLH6: Alanine racemase	3.0866817582
+UniRef50_G8VLH6: Alanine racemase|g__Propionibacterium.s__Propionibacterium_acnes	3.0866817582
+UniRef50_A4NW20	3.0866687278
+UniRef50_A4NW20|unclassified	3.0866687278
+UniRef50_U5MRI4: Ribose-5-phosphate isomerase A	3.0865373623
+UniRef50_U5MRI4: Ribose-5-phosphate isomerase A|g__Clostridium.s__Clostridium_beijerinckii	3.0865373623
+UniRef50_F0RM21: Serine/threonine protein kinase	3.0864705116
+UniRef50_F0RM21: Serine/threonine protein kinase|g__Deinococcus.s__Deinococcus_radiodurans	3.0864705116
+UniRef50_A5F4G9: Thiosulfate sulfurtransferase GlpE	3.0864197531
+UniRef50_A5F4G9: Thiosulfate sulfurtransferase GlpE|g__Escherichia.s__Escherichia_coli	3.0864197531
+UniRef50_B7LPC5	3.0864197531
+UniRef50_B7LPC5|g__Escherichia.s__Escherichia_coli	3.0864197531
+UniRef50_F3U376	3.0864197531
+UniRef50_F3U376|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.0864197531
+UniRef50_H7CWV1: Phage shock protein A	3.0864197531
+UniRef50_H7CWV1: Phage shock protein A|g__Clostridium.s__Clostridium_beijerinckii	3.0864197531
+UniRef50_L4JNM8	3.0864197531
+UniRef50_L4JNM8|g__Escherichia.s__Escherichia_coli	3.0864197531
+UniRef50_Q6Z534	3.0864197531
+UniRef50_Q6Z534|unclassified	3.0864197531
+UniRef50_UPI00034DF4E5: hypothetical protein	3.0864197531
+UniRef50_UPI00034DF4E5: hypothetical protein|unclassified	3.0864197531
+UniRef50_V9DWR3	3.0864197531
+UniRef50_V9DWR3|unclassified	3.0864197531
+UniRef50_A6LTP7: Multi-sensor signal transduction histidine kinase	3.0857952269
+UniRef50_A6LTP7: Multi-sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	3.0857952269
+UniRef50_A3VYM7	3.0853701031
+UniRef50_A3VYM7|unclassified	3.0853701031
+UniRef50_A4WPA7	3.0849744949
+UniRef50_A4WPA7|unclassified	3.0849744949
+UniRef50_M1LPJ1: Transcriptional regulator, RpiR family	3.0847929824
+UniRef50_M1LPJ1: Transcriptional regulator, RpiR family|g__Clostridium.s__Clostridium_beijerinckii	3.0847929824
+UniRef50_I7AEF9: Pseudouridine synthase	3.0843050427
+UniRef50_I7AEF9: Pseudouridine synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0843050427
+UniRef50_A6M3J2: Beta-lactamase domain protein	3.0835077265
+UniRef50_A6M3J2: Beta-lactamase domain protein|g__Clostridium.s__Clostridium_beijerinckii	3.0835077265
+UniRef50_Q5NYZ2: Nitrate/proton symporter	3.0824510919
+UniRef50_Q5NYZ2: Nitrate/proton symporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0824510919
+UniRef50_M4YVY9: Peptidyl-prolyl cis-trans isomerase	3.0823091556
+UniRef50_M4YVY9: Peptidyl-prolyl cis-trans isomerase|g__Streptococcus.s__Streptococcus_agalactiae	3.0823091556
+UniRef50_J2YBX6: Endonuclease/exonuclease/phosphatase family protein	3.0821324177
+UniRef50_J2YBX6: Endonuclease/exonuclease/phosphatase family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0821324177
+UniRef50_F3EXE4: Cation transporter (Fragment)	3.0819804958
+UniRef50_F3EXE4: Cation transporter (Fragment)|unclassified	3.0819804958
+UniRef50_R5FYT2: Riboflavin synthase alpha subunit	3.0816714150
+UniRef50_R5FYT2: Riboflavin synthase alpha subunit|g__Streptococcus.s__Streptococcus_agalactiae	3.0816714150
+UniRef50_U5MPM1: Methyl-accepting chemotaxis protein	3.0816624919
+UniRef50_U5MPM1: Methyl-accepting chemotaxis protein|g__Clostridium.s__Clostridium_beijerinckii	3.0816624919
+UniRef50_A0A023RU88: RND transporter	3.0816228429
+UniRef50_A0A023RU88: RND transporter|g__Acinetobacter.s__Acinetobacter_baumannii	3.0816228429
+UniRef50_K0C8T6: Oxidoreductase, short chain dehydrogenase/reductase family	3.0813860848
+UniRef50_K0C8T6: Oxidoreductase, short chain dehydrogenase/reductase family|g__Acinetobacter.s__Acinetobacter_baumannii	3.0813860848
+UniRef50_U5T367: UPF0125 protein SPICUR_05090	3.0808653213
+UniRef50_U5T367: UPF0125 protein SPICUR_05090|unclassified	3.0808653213
+UniRef50_UPI0004753A84: riboflavin transporter FmnP, partial	3.0808070430
+UniRef50_UPI0004753A84: riboflavin transporter FmnP, partial|unclassified	3.0808070430
+UniRef50_A1A9J0: YcaI	3.0807040417
+UniRef50_A1A9J0: YcaI|g__Escherichia.s__Escherichia_coli	3.0807040417
+UniRef50_F2K6Q0	3.0803732173
+UniRef50_F2K6Q0|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0803732173
+UniRef50_A1SHI2: Glycosyl transferase, family 4	3.0798389007
+UniRef50_A1SHI2: Glycosyl transferase, family 4|g__Propionibacterium.s__Propionibacterium_acnes	3.0798389007
+UniRef50_UPI0003730AC8: hypothetical protein	3.0794386787
+UniRef50_UPI0003730AC8: hypothetical protein|unclassified	3.0794386787
+UniRef50_C4Z2L9	3.0780780781
+UniRef50_C4Z2L9|g__Clostridium.s__Clostridium_beijerinckii	3.0780780781
+UniRef50_M4Z2N1: Putative gas vesicle synthesis protein, GvpG-like	3.0779182482
+UniRef50_M4Z2N1: Putative gas vesicle synthesis protein, GvpG-like|unclassified	3.0779182482
+UniRef50_A0A024HWS9	3.0771942025
+UniRef50_A0A024HWS9|unclassified	3.0771942025
+UniRef50_A4VSZ3: Predicted transcriptional regulator	3.0769230769
+UniRef50_A4VSZ3: Predicted transcriptional regulator|g__Streptococcus.s__Streptococcus_mutans	3.0769230769
+UniRef50_G2JIW3: Enoyl-CoA hydratase/carnithine racemase	3.0769230769
+UniRef50_G2JIW3: Enoyl-CoA hydratase/carnithine racemase|g__Acinetobacter.s__Acinetobacter_baumannii	3.0769230769
+UniRef50_J5IRB2	3.0769230769
+UniRef50_J5IRB2|g__Acinetobacter.s__Acinetobacter_baumannii	3.0769230769
+UniRef50_K7RSS9: Pseudouridine synthase	3.0769230769
+UniRef50_K7RSS9: Pseudouridine synthase|g__Propionibacterium.s__Propionibacterium_acnes	3.0769230769
+UniRef50_T9TJK4	3.0769230769
+UniRef50_T9TJK4|g__Escherichia.s__Escherichia_coli	3.0769230769
+UniRef50_UPI0003782584: hypothetical protein	3.0769230769
+UniRef50_UPI0003782584: hypothetical protein|unclassified	3.0769230769
+UniRef50_W1MNB3	3.0769230769
+UniRef50_W1MNB3|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0769230769
+UniRef50_S5YWR1: NnrU family protein	3.0769062413
+UniRef50_S5YWR1: NnrU family protein|unclassified	3.0769062413
+UniRef50_R9ZQI1	3.0768691291
+UniRef50_R9ZQI1|unclassified	3.0768691291
+UniRef50_UPI00036E7EE5: molybdopterin biosynthesis protein B, partial	3.0764294187
+UniRef50_UPI00036E7EE5: molybdopterin biosynthesis protein B, partial|unclassified	3.0764294187
+UniRef50_Q8RH06	3.0754354054
+UniRef50_Q8RH06|unclassified	3.0754354054
+UniRef50_W5WYX4: Alkaline phosphatase	3.0747972611
+UniRef50_W5WYX4: Alkaline phosphatase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0747972611
+UniRef50_G8VH52: Aminotransferase	3.0746994231
+UniRef50_G8VH52: Aminotransferase|g__Propionibacterium.s__Propionibacterium_acnes	3.0746994231
+UniRef50_UPI000366373C: hypothetical protein	3.0743291380
+UniRef50_UPI000366373C: hypothetical protein|unclassified	3.0743291380
+UniRef50_D3GXP3	3.0735340395
+UniRef50_D3GXP3|unclassified	3.0735340395
+UniRef50_D6XNE0: Molybdenum cofactor synthesis domain-containing protein	3.0732690552
+UniRef50_D6XNE0: Molybdenum cofactor synthesis domain-containing protein|g__Helicobacter.s__Helicobacter_pylori	3.0732690552
+UniRef50_T0MER8	3.0730144256
+UniRef50_T0MER8|unclassified	3.0730144256
+UniRef50_A0K2M1: Chromosome segregation ATPase	3.0727390042
+UniRef50_A0K2M1: Chromosome segregation ATPase|g__Propionibacterium.s__Propionibacterium_acnes	3.0727390042
+UniRef50_H0TRF6: PilL (Modular protein)	3.0727359486
+UniRef50_H0TRF6: PilL (Modular protein)|unclassified	3.0727359486
+UniRef50_G9AU18	3.0726652513
+UniRef50_G9AU18|unclassified	3.0726652513
+UniRef50_UPI00040F4463: MULTISPECIES: hypothetical protein	3.0722222354
+UniRef50_UPI00040F4463: MULTISPECIES: hypothetical protein|unclassified	3.0722222354
+UniRef50_A0A023S183: Alkaline phosphatase	3.0720050605
+UniRef50_A0A023S183: Alkaline phosphatase|g__Acinetobacter.s__Acinetobacter_baumannii	3.0720050605
+UniRef50_A6M2D9: Helix-turn-helix-domain containing protein, AraC type	3.0718325817
+UniRef50_A6M2D9: Helix-turn-helix-domain containing protein, AraC type|g__Clostridium.s__Clostridium_beijerinckii	3.0718325817
+UniRef50_B6B388: Integral membrane protein, putative	3.0715551062
+UniRef50_B6B388: Integral membrane protein, putative|unclassified	3.0715551062
+UniRef50_F0MMC4: Amine oxidase, flavin-containing	3.0713520649
+UniRef50_F0MMC4: Amine oxidase, flavin-containing|g__Neisseria.s__Neisseria_meningitidis	3.0713520649
+UniRef50_I6H8V8	3.0705427653
+UniRef50_I6H8V8|unclassified	3.0705427653
+UniRef50_I0ESN2: Outer membrane protein 33	3.0694578456
+UniRef50_I0ESN2: Outer membrane protein 33|g__Helicobacter.s__Helicobacter_pylori	3.0694578456
+UniRef50_Q2QCR7	3.0688564987
+UniRef50_Q2QCR7|unclassified	3.0688564987
+UniRef50_W8RQ15: Type IV secretion protein Rhs	3.0684300842
+UniRef50_W8RQ15: Type IV secretion protein Rhs|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0477298225
+UniRef50_W8RQ15: Type IV secretion protein Rhs|unclassified	0.0207002618
+UniRef50_F3TR00	3.0674846626
+UniRef50_F3TR00|unclassified	3.0674846626
+UniRef50_F4D682: Sel1 repeat protein	3.0674846626
+UniRef50_F4D682: Sel1 repeat protein|g__Helicobacter.s__Helicobacter_pylori	3.0674846626
+UniRef50_J7R9R5	3.0674846626
+UniRef50_J7R9R5|unclassified	3.0674846626
+UniRef50_Q1Q8C1: Sec-independent protein translocase protein TatC	3.0674846626
+UniRef50_Q1Q8C1: Sec-independent protein translocase protein TatC|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0674846626
+UniRef50_Q8DXK1	3.0674846626
+UniRef50_Q8DXK1|g__Streptococcus.s__Streptococcus_agalactiae	3.0674846626
+UniRef50_Q9RYE3: UPF0173 metal-dependent hydrolase DR_0006	3.0674846626
+UniRef50_Q9RYE3: UPF0173 metal-dependent hydrolase DR_0006|g__Deinococcus.s__Deinococcus_radiodurans	3.0674846626
+UniRef50_M1PXL5: Sensor histidine kinase	3.0672416828
+UniRef50_M1PXL5: Sensor histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	3.0672416828
+UniRef50_G2JI43	3.0666120118
+UniRef50_G2JI43|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.0666120118
+UniRef50_G7M5P7: Cell wall binding repeat-containing protein	3.0665481442
+UniRef50_G7M5P7: Cell wall binding repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	3.0665481442
+UniRef50_J0GSP0	3.0658865966
+UniRef50_J0GSP0|unclassified	3.0658865966
+UniRef50_X5K3C1: Phosphoglucomutase /phosphomannomutase family protein	3.0657123965
+UniRef50_X5K3C1: Phosphoglucomutase /phosphomannomutase family protein|g__Streptococcus.s__Streptococcus_agalactiae	3.0657123965
+UniRef50_F6FYU5: Had-superfamily subfamily ib, pspase-like protein	3.0651358994
+UniRef50_F6FYU5: Had-superfamily subfamily ib, pspase-like protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0651358994
+UniRef50_R6KNU0: Glycosyl transferase	3.0650799223
+UniRef50_R6KNU0: Glycosyl transferase|g__Clostridium.s__Clostridium_beijerinckii	3.0650799223
+UniRef50_F3Z6T0	3.0647875472
+UniRef50_F3Z6T0|unclassified	3.0647875472
+UniRef50_X7CDM2	3.0645831654
+UniRef50_X7CDM2|unclassified	3.0645831654
+UniRef50_Q28W04: Import inner membrane translocase subunit Tim44	3.0642902129
+UniRef50_Q28W04: Import inner membrane translocase subunit Tim44|unclassified	3.0642902129
+UniRef50_G8VFK8: Biotin carboxylase	3.0640104576
+UniRef50_G8VFK8: Biotin carboxylase|g__Propionibacterium.s__Propionibacterium_acnes	3.0640104576
+UniRef50_C5B3S3	3.0635324427
+UniRef50_C5B3S3|unclassified	3.0635324427
+UniRef50_A1B425	3.0632150981
+UniRef50_A1B425|unclassified	3.0632150981
+UniRef50_Q3JFE4	3.0631704351
+UniRef50_Q3JFE4|unclassified	3.0631704351
+UniRef50_I1AVQ6	3.0625154258
+UniRef50_I1AVQ6|unclassified	3.0625154258
+UniRef50_A4WVS1	3.0624404220
+UniRef50_A4WVS1|unclassified	3.0624404220
+UniRef50_G8VR36: Anchored repeat-type ABC transporter, permease subunit	3.0615684015
+UniRef50_G8VR36: Anchored repeat-type ABC transporter, permease subunit|g__Propionibacterium.s__Propionibacterium_acnes	3.0615684015
+UniRef50_I2HZV3	3.0614265720
+UniRef50_I2HZV3|unclassified	3.0614265720
+UniRef50_UPI0003B6D406: transcriptional regulator	3.0613477008
+UniRef50_UPI0003B6D406: transcriptional regulator|unclassified	3.0613477008
+UniRef50_V8X5Y2	3.0605057640
+UniRef50_V8X5Y2|unclassified	3.0605057640
+UniRef50_D9SWK1: MmpL domain-containing protein	3.0604004476
+UniRef50_D9SWK1: MmpL domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	3.0604004476
+UniRef50_Q01725: Lipase chaperone	3.0601418633
+UniRef50_Q01725: Lipase chaperone|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0601418633
+UniRef50_D5ARY8: Type A flavoprotein fprA	3.0599868971
+UniRef50_D5ARY8: Type A flavoprotein fprA|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.0599868971
+UniRef50_S1FZF0	3.0597913790
+UniRef50_S1FZF0|unclassified	3.0597913790
+UniRef50_V5V8K7: Thiamine-monophosphate kinase	3.0589445311
+UniRef50_V5V8K7: Thiamine-monophosphate kinase|g__Acinetobacter.s__Acinetobacter_baumannii	3.0589445311
+UniRef50_F8FB46: Iron ABC transporter permease	3.0586248087
+UniRef50_F8FB46: Iron ABC transporter permease|g__Clostridium.s__Clostridium_beijerinckii	3.0586248087
+UniRef50_A6LYR4: Cupin 2, conserved barrel domain protein	3.0581039755
+UniRef50_A6LYR4: Cupin 2, conserved barrel domain protein|g__Clostridium.s__Clostridium_beijerinckii	3.0581039755
+UniRef50_M8BK38	3.0581039755
+UniRef50_M8BK38|unclassified	3.0581039755
+UniRef50_P37538	3.0581039755
+UniRef50_P37538|g__Staphylococcus.s__Staphylococcus_epidermidis	3.0581039755
+UniRef50_Q46919	3.0581039755
+UniRef50_Q46919|g__Escherichia.s__Escherichia_coli	3.0581039755
+UniRef50_UPI00047809E9: hypothetical protein	3.0581039755
+UniRef50_UPI00047809E9: hypothetical protein|unclassified	3.0581039755
+UniRef50_M1N0K2: FeS cluster assembly protein SufD	3.0579417124
+UniRef50_M1N0K2: FeS cluster assembly protein SufD|g__Clostridium.s__Clostridium_beijerinckii	3.0579417124
+UniRef50_UPI0003698A7E: hypothetical protein	3.0568432545
+UniRef50_UPI0003698A7E: hypothetical protein|unclassified	3.0568432545
+UniRef50_P14789: Protease LasA	3.0567204609
+UniRef50_P14789: Protease LasA|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0567204609
+UniRef50_F3U4V1	3.0566949095
+UniRef50_F3U4V1|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.4938392072
+UniRef50_F3U4V1|unclassified	0.5628557023
+UniRef50_UPI0002E68AF4: hypothetical protein	3.0566084079
+UniRef50_UPI0002E68AF4: hypothetical protein|unclassified	3.0566084079
+UniRef50_W0YVH8	3.0565941150
+UniRef50_W0YVH8|unclassified	3.0565941150
+UniRef50_D4Z726: 3-oxoadipate CoA-transferase alpha subunit LinG	3.0564620348
+UniRef50_D4Z726: 3-oxoadipate CoA-transferase alpha subunit LinG|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6339869281
+UniRef50_D4Z726: 3-oxoadipate CoA-transferase alpha subunit LinG|g__Acinetobacter.s__Acinetobacter_baumannii	1.4224751067
+UniRef50_R6GNA7: Peptidoglycan-binding LysM	3.0562931747
+UniRef50_R6GNA7: Peptidoglycan-binding LysM|g__Clostridium.s__Clostridium_beijerinckii	3.0562931747
+UniRef50_J5W586: Autoinducer 2 ABC transporter, periplasmic substrate-binding protein LsrB domain protein	3.0560266891
+UniRef50_J5W586: Autoinducer 2 ABC transporter, periplasmic substrate-binding protein LsrB domain protein|unclassified	3.0560266891
+UniRef50_Q6A7P4: Riboflavin biosynthesis protein RibF (Riboflavin kinase)	3.0558551492
+UniRef50_Q6A7P4: Riboflavin biosynthesis protein RibF (Riboflavin kinase)|g__Propionibacterium.s__Propionibacterium_acnes	3.0558551492
+UniRef50_M4YYK2: Two-component response regulator	3.0556958538
+UniRef50_M4YYK2: Two-component response regulator|g__Streptococcus.s__Streptococcus_agalactiae	3.0556958538
+UniRef50_K2G0B8	3.0551689441
+UniRef50_K2G0B8|unclassified	3.0551689441
+UniRef50_S5XTY5	3.0543035070
+UniRef50_S5XTY5|unclassified	3.0543035070
+UniRef50_A3P4D6	3.0540825702
+UniRef50_A3P4D6|unclassified	3.0540825702
+UniRef50_A7FMV8: Iron-sulfur cluster repair protein YtfE	3.0538906800
+UniRef50_A7FMV8: Iron-sulfur cluster repair protein YtfE|g__Escherichia.s__Escherichia_coli	3.0538906800
+UniRef50_D5UF49: Zn-dependent hydrolase, glyoxylase	3.0534422317
+UniRef50_D5UF49: Zn-dependent hydrolase, glyoxylase|g__Propionibacterium.s__Propionibacterium_acnes	3.0534422317
+UniRef50_W8WRJ5: Ribulose-5-phosphate 3-epimerase	3.0534351145
+UniRef50_W8WRJ5: Ribulose-5-phosphate 3-epimerase|g__Clostridium.s__Clostridium_beijerinckii	3.0534351145
+UniRef50_V5SWF2	3.0525915950
+UniRef50_V5SWF2|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0525915950
+UniRef50_A6LWE1: Multi-sensor hybrid histidine kinase	3.0515810827
+UniRef50_A6LWE1: Multi-sensor hybrid histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	3.0515810827
+UniRef50_Q9ZMY3: RNA polymerase sigma factor RpoD	3.0508597080
+UniRef50_Q9ZMY3: RNA polymerase sigma factor RpoD|g__Helicobacter.s__Helicobacter_pylori	3.0508597080
+UniRef50_Z2Z0E5	3.0502123154
+UniRef50_Z2Z0E5|unclassified	3.0502123154
+UniRef50_M4RCI7: Fatty acid desaturase	3.0498980622
+UniRef50_M4RCI7: Fatty acid desaturase|g__Acinetobacter.s__Acinetobacter_baumannii	3.0498980622
+UniRef50_Q93K67: Arginine deiminase	3.0492255853
+UniRef50_Q93K67: Arginine deiminase|g__Streptococcus.s__Streptococcus_agalactiae	2.9560363602
+UniRef50_Q93K67: Arginine deiminase|unclassified	0.0931892250
+UniRef50_U9FP56	3.0489576144
+UniRef50_U9FP56|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0489576144
+UniRef50_F4BS97: PTS system, lactose/cellobiose family IIC subunit	3.0488884658
+UniRef50_F4BS97: PTS system, lactose/cellobiose family IIC subunit|g__Clostridium.s__Clostridium_beijerinckii	1.7684787347
+UniRef50_F4BS97: PTS system, lactose/cellobiose family IIC subunit|g__Propionibacterium.s__Propionibacterium_acnes	1.2804097311
+UniRef50_D8JPC9: NUDIX domain protein	3.0487804878
+UniRef50_D8JPC9: NUDIX domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.0487804878
+UniRef50_F0MK77: HAD hydrolase, IIB family	3.0487804878
+UniRef50_F0MK77: HAD hydrolase, IIB family|g__Neisseria.s__Neisseria_meningitidis	3.0487804878
+UniRef50_Q00514: Type II secretion system protein G	3.0487804878
+UniRef50_Q00514: Type II secretion system protein G|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0487804878
+UniRef50_R5Q1Z9	3.0487804878
+UniRef50_R5Q1Z9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.0487804878
+UniRef50_T2EEE7: Fimbrial family protein	3.0487804878
+UniRef50_T2EEE7: Fimbrial family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0487804878
+UniRef50_T9Q7C2	3.0487804878
+UniRef50_T9Q7C2|unclassified	3.0487804878
+UniRef50_UPI000372E0B6: hypothetical protein	3.0487804878
+UniRef50_UPI000372E0B6: hypothetical protein|unclassified	3.0487804878
+UniRef50_Q8NWR3: Truncated transposase	3.0487281613
+UniRef50_Q8NWR3: Truncated transposase|g__Staphylococcus.s__Staphylococcus_aureus	2.8653295129
+UniRef50_Q8NWR3: Truncated transposase|unclassified	0.1833986484
+UniRef50_B7QXU9	3.0485868177
+UniRef50_B7QXU9|unclassified	3.0485868177
+UniRef50_O94524: Glutathione S-transferase omega-like 2	3.0476334385
+UniRef50_O94524: Glutathione S-transferase omega-like 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9171963526
+UniRef50_O94524: Glutathione S-transferase omega-like 2|unclassified	0.1304370858
+UniRef50_A6M192: Flagellar hook capping protein	3.0475633420
+UniRef50_A6M192: Flagellar hook capping protein|g__Clostridium.s__Clostridium_beijerinckii	3.0475633420
+UniRef50_T2EKM2: Fic/DOC family protein	3.0472840314
+UniRef50_T2EKM2: Fic/DOC family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0472840314
+UniRef50_R9ZI95: Permease	3.0472072953
+UniRef50_R9ZI95: Permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0472072953
+UniRef50_Z7I5Q8	3.0470935296
+UniRef50_Z7I5Q8|unclassified	3.0470935296
+UniRef50_M1MD21: Lytic transglycosylase catalytic	3.0467536975
+UniRef50_M1MD21: Lytic transglycosylase catalytic|g__Clostridium.s__Clostridium_beijerinckii	3.0467536975
+UniRef50_A4W7D6: D-galactonate dehydratase family member Ent638_0932	3.0466523106
+UniRef50_A4W7D6: D-galactonate dehydratase family member Ent638_0932|g__Clostridium.s__Clostridium_beijerinckii	3.0466523106
+UniRef50_UPI000475C9D6: arsenate reductase	3.0464490915
+UniRef50_UPI000475C9D6: arsenate reductase|unclassified	3.0464490915
+UniRef50_I4F571	3.0463231589
+UniRef50_I4F571|unclassified	3.0463231589
+UniRef50_G7U922	3.0461616259
+UniRef50_G7U922|g__Propionibacterium.s__Propionibacterium_acnes	3.0461616259
+UniRef50_W6LT96	3.0457615897
+UniRef50_W6LT96|unclassified	3.0457615897
+UniRef50_R8ZEH6: Putative major facilitator superfamily transporter	3.0456913354
+UniRef50_R8ZEH6: Putative major facilitator superfamily transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0456913354
+UniRef50_G3VGY4	3.0454518605
+UniRef50_G3VGY4|unclassified	3.0454518605
+UniRef50_K0AWK4: Signal transduction response regulator	3.0451559078
+UniRef50_K0AWK4: Signal transduction response regulator|g__Streptococcus.s__Streptococcus_agalactiae	1.5503875969
+UniRef50_K0AWK4: Signal transduction response regulator|g__Clostridium.s__Clostridium_beijerinckii	1.4947683109
+UniRef50_H6LCQ4: Branched-chain amino acid ABC transport system permease protein LivM2	3.0448552944
+UniRef50_H6LCQ4: Branched-chain amino acid ABC transport system permease protein LivM2|g__Clostridium.s__Clostridium_beijerinckii	3.0448552944
+UniRef50_Q8E096	3.0448454289
+UniRef50_Q8E096|g__Streptococcus.s__Streptococcus_agalactiae	3.0448454289
+UniRef50_W1Y4E7	3.0447809689
+UniRef50_W1Y4E7|unclassified	3.0447809689
+UniRef50_A6M2T7: Abortive infection protein	3.0446985127
+UniRef50_A6M2T7: Abortive infection protein|g__Clostridium.s__Clostridium_beijerinckii	3.0446985127
+UniRef50_UPI00037460BA: hypothetical protein	3.0440278070
+UniRef50_UPI00037460BA: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.0440278070
+UniRef50_U5UPL8	3.0440251572
+UniRef50_U5UPL8|unclassified	3.0440251572
+UniRef50_F3SCX3	3.0435825091
+UniRef50_F3SCX3|unclassified	3.0435825091
+UniRef50_UPI0003946C17: PREDICTED: serine/arginine repetitive matrix protein 1-like	3.0425096802
+UniRef50_UPI0003946C17: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	3.0425096802
+UniRef50_D8JJQ0: Iron ABC transporter membrane protein	3.0424602514
+UniRef50_D8JJQ0: Iron ABC transporter membrane protein|g__Acinetobacter.s__Acinetobacter_baumannii	3.0424602514
+UniRef50_I6TW93: Transposase	3.0423794685
+UniRef50_I6TW93: Transposase|g__Streptococcus.s__Streptococcus_mutans	1.8518518519
+UniRef50_I6TW93: Transposase|unclassified	1.1905276167
+UniRef50_C5BFM6: Beta-hexosaminidase	3.0423459909
+UniRef50_C5BFM6: Beta-hexosaminidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6949152542
+UniRef50_C5BFM6: Beta-hexosaminidase|g__Acinetobacter.s__Acinetobacter_baumannii	1.1441647597
+UniRef50_C5BFM6: Beta-hexosaminidase|unclassified	0.2032659769
+UniRef50_Q72J47: Ribose-5-phosphate isomerase A	3.0423243728
+UniRef50_Q72J47: Ribose-5-phosphate isomerase A|g__Deinococcus.s__Deinococcus_radiodurans	3.0423243728
+UniRef50_Q899J0: PUR operon repressor	3.0416065030
+UniRef50_Q899J0: PUR operon repressor|g__Clostridium.s__Clostridium_beijerinckii	3.0416065030
+UniRef50_V6ET42	3.0399341408
+UniRef50_V6ET42|unclassified	3.0399341408
+UniRef50_A0A023NXY2: Phosphotyrosine protein phosphatase	3.0395136778
+UniRef50_A0A023NXY2: Phosphotyrosine protein phosphatase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0395136778
+UniRef50_A4WPH3	3.0395136778
+UniRef50_A4WPH3|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.0395136778
+UniRef50_A7ZNH9: UPF0265 protein YeeX	3.0395136778
+UniRef50_A7ZNH9: UPF0265 protein YeeX|g__Escherichia.s__Escherichia_coli	3.0395136778
+UniRef50_M9S738	3.0395136778
+UniRef50_M9S738|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0395136778
+UniRef50_UPI0002196687: hypothetical protein	3.0395136778
+UniRef50_UPI0002196687: hypothetical protein|unclassified	3.0395136778
+UniRef50_UPI000364D44C: hypothetical protein, partial	3.0395136778
+UniRef50_UPI000364D44C: hypothetical protein, partial|unclassified	3.0395136778
+UniRef50_V0X640: DnaJ domain protein	3.0395136778
+UniRef50_V0X640: DnaJ domain protein|g__Escherichia.s__Escherichia_coli	3.0395136778
+UniRef50_Q0KDG3: Methionine import ATP-binding protein MetN	3.0392929467
+UniRef50_Q0KDG3: Methionine import ATP-binding protein MetN|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9821132433
+UniRef50_Q0KDG3: Methionine import ATP-binding protein MetN|unclassified	0.0571797034
+UniRef50_A0A011PNK5	3.0390241673
+UniRef50_A0A011PNK5|unclassified	3.0390241673
+UniRef50_A0A038FVF0	3.0381304376
+UniRef50_A0A038FVF0|unclassified	3.0381304376
+UniRef50_A6M0K2: Glycoside hydrolase, family 3 domain protein	3.0367069015
+UniRef50_A6M0K2: Glycoside hydrolase, family 3 domain protein|g__Clostridium.s__Clostridium_beijerinckii	3.0367069015
+UniRef50_W0YS91	3.0365244276
+UniRef50_W0YS91|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7643322094
+UniRef50_W0YS91|unclassified	0.2721922182
+UniRef50_H8H8S2: ABC transport system permease	3.0351342560
+UniRef50_H8H8S2: ABC transport system permease|g__Streptococcus.s__Streptococcus_agalactiae	3.0351342560
+UniRef50_D9STR3	3.0350841239
+UniRef50_D9STR3|g__Clostridium.s__Clostridium_beijerinckii	3.0350841239
+UniRef50_A6LXY2: Diguanylate cyclase/phosphodiesterase with PAS/PAC sensor(S)	3.0343406216
+UniRef50_A6LXY2: Diguanylate cyclase/phosphodiesterase with PAS/PAC sensor(S)|g__Clostridium.s__Clostridium_beijerinckii	3.0343406216
+UniRef50_UPI000374C020: transcriptional regulator	3.0341271919
+UniRef50_UPI000374C020: transcriptional regulator|unclassified	3.0341271919
+UniRef50_K8NRJ0	3.0331682982
+UniRef50_K8NRJ0|unclassified	3.0331682982
+UniRef50_Q4SPJ4: Chromosome 16 SCAF14537, whole genome shotgun sequence. (Fragment)	3.0325735238
+UniRef50_Q4SPJ4: Chromosome 16 SCAF14537, whole genome shotgun sequence. (Fragment)|unclassified	3.0325735238
+UniRef50_I6SKM6	3.0319776542
+UniRef50_I6SKM6|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0319776542
+UniRef50_Q9RYE9	3.0318308022
+UniRef50_Q9RYE9|g__Deinococcus.s__Deinococcus_radiodurans	3.0318308022
+UniRef50_A6LX94: Beta and gamma crystallin	3.0316713980
+UniRef50_A6LX94: Beta and gamma crystallin|g__Clostridium.s__Clostridium_beijerinckii	3.0316713980
+UniRef50_S1MHH7	3.0312598170
+UniRef50_S1MHH7|unclassified	3.0312598170
+UniRef50_Q1LF13: Putrescine transporter subunit: membrane component of ABC superfamily binding-protein-dependent transport systems inner membrane component	3.0307314022
+UniRef50_Q1LF13: Putrescine transporter subunit: membrane component of ABC superfamily binding-protein-dependent transport systems inner membrane component|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0307314022
+UniRef50_A3W611: Succinyl-CoA ligase [ADP-forming] subunit alpha	3.0303030303
+UniRef50_A3W611: Succinyl-CoA ligase [ADP-forming] subunit alpha|g__Staphylococcus.s__Staphylococcus_aureus	3.0303030303
+UniRef50_B2UXE1	3.0303030303
+UniRef50_B2UXE1|g__Clostridium.s__Clostridium_beijerinckii	3.0303030303
+UniRef50_B9KU74: Gas vesicle K	3.0303030303
+UniRef50_B9KU74: Gas vesicle K|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.0303030303
+UniRef50_P15905: Arsenical resistance operon repressor	3.0303030303
+UniRef50_P15905: Arsenical resistance operon repressor|g__Escherichia.s__Escherichia_coli	3.0303030303
+UniRef50_Q1J275: Transcriptional regulator, Crp/Fnr family	3.0303030303
+UniRef50_Q1J275: Transcriptional regulator, Crp/Fnr family|g__Deinococcus.s__Deinococcus_radiodurans	3.0303030303
+UniRef50_Q1RFT2	3.0303030303
+UniRef50_Q1RFT2|unclassified	3.0303030303
+UniRef50_S9L949	3.0303030303
+UniRef50_S9L949|unclassified	3.0303030303
+UniRef50_T9B1J3: Sorbitol-6-phosphate 2-dehydrogenase	3.0303030303
+UniRef50_T9B1J3: Sorbitol-6-phosphate 2-dehydrogenase|g__Escherichia.s__Escherichia_coli	3.0303030303
+UniRef50_V0V0Z7	3.0303030303
+UniRef50_V0V0Z7|g__Escherichia.s__Escherichia_coli	3.0303030303
+UniRef50_E6K041: GTPase HflX	3.0302735819
+UniRef50_E6K041: GTPase HflX|g__Propionibacterium.s__Propionibacterium_acnes	3.0302735819
+UniRef50_W4UBC8	3.0297713352
+UniRef50_W4UBC8|g__Propionibacterium.s__Propionibacterium_acnes	2.8089887640
+UniRef50_W4UBC8|unclassified	0.2207825712
+UniRef50_S9E849: Neutral zinc metallopeptidase	3.0290976261
+UniRef50_S9E849: Neutral zinc metallopeptidase|g__Streptococcus.s__Streptococcus_agalactiae	3.0290976261
+UniRef50_G7M9S8: UvrD/REP helicase	3.0286394071
+UniRef50_G7M9S8: UvrD/REP helicase|g__Clostridium.s__Clostridium_beijerinckii	3.0286394071
+UniRef50_UPI00016A29CB: hypothetical protein	3.0284841442
+UniRef50_UPI00016A29CB: hypothetical protein|unclassified	3.0284841442
+UniRef50_A4XGW8	3.0280592540
+UniRef50_A4XGW8|g__Clostridium.s__Clostridium_beijerinckii	3.0280592540
+UniRef50_G3N5H8	3.0274374783
+UniRef50_G3N5H8|unclassified	3.0274374783
+UniRef50_K8RVP8	3.0265946050
+UniRef50_K8RVP8|unclassified	3.0265946050
+UniRef50_Q6AAY2	3.0264673660
+UniRef50_Q6AAY2|g__Propionibacterium.s__Propionibacterium_acnes	3.0264673660
+UniRef50_Q7WJI7: Argininosuccinate lyase	3.0254979143
+UniRef50_Q7WJI7: Argininosuccinate lyase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7719548184
+UniRef50_Q7WJI7: Argininosuccinate lyase|unclassified	0.2535430959
+UniRef50_A3PIZ2: ABC transporter related	3.0254579046
+UniRef50_A3PIZ2: ABC transporter related|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.0254579046
+UniRef50_UPI00036716A7: hypothetical protein	3.0253571553
+UniRef50_UPI00036716A7: hypothetical protein|unclassified	3.0253571553
+UniRef50_UPI0003D07E43: PREDICTED: tumor suppressor candidate gene 1 protein homolog	3.0253388627
+UniRef50_UPI0003D07E43: PREDICTED: tumor suppressor candidate gene 1 protein homolog|unclassified	3.0253388627
+UniRef50_Q8DXI0: Prophage LambdaSa2, DNA replication protein DnaC, putative	3.0247709049
+UniRef50_Q8DXI0: Prophage LambdaSa2, DNA replication protein DnaC, putative|g__Streptococcus.s__Streptococcus_agalactiae	3.0247709049
+UniRef50_A6M095: Pentapeptide repeat protein	3.0246176588
+UniRef50_A6M095: Pentapeptide repeat protein|g__Clostridium.s__Clostridium_beijerinckii	3.0246176588
+UniRef50_K0M3M3	3.0243593120
+UniRef50_K0M3M3|unclassified	3.0243593120
+UniRef50_R8TPL3	3.0242103259
+UniRef50_R8TPL3|unclassified	3.0242103259
+UniRef50_M3DK36	3.0236351069
+UniRef50_M3DK36|unclassified	3.0236351069
+UniRef50_A6M2W5: PTS system, glucose subfamily, IIA subunit	3.0227848966
+UniRef50_A6M2W5: PTS system, glucose subfamily, IIA subunit|g__Clostridium.s__Clostridium_beijerinckii	3.0227848966
+UniRef50_Q9RDF2: GTPase Era	3.0221977340
+UniRef50_Q9RDF2: GTPase Era|g__Propionibacterium.s__Propionibacterium_acnes	3.0221977340
+UniRef50_A6M0B1: PAS/PAC sensor signal transduction histidine kinase	3.0221407125
+UniRef50_A6M0B1: PAS/PAC sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	3.0221407125
+UniRef50_Q9F149: Hemolysin F	3.0220934703
+UniRef50_Q9F149: Hemolysin F|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0220934703
+UniRef50_A0Q0M8: tRNA dimethylallyltransferase	3.0218577733
+UniRef50_A0Q0M8: tRNA dimethylallyltransferase|g__Clostridium.s__Clostridium_beijerinckii	2.9753535688
+UniRef50_A0Q0M8: tRNA dimethylallyltransferase|unclassified	0.0465042046
+UniRef50_UPI000395686C: 30S ribosomal protein S15	3.0212671991
+UniRef50_UPI000395686C: 30S ribosomal protein S15|unclassified	3.0212671991
+UniRef50_A0A023VI21: GntR family transcriptional regulator	3.0211480363
+UniRef50_A0A023VI21: GntR family transcriptional regulator|g__Streptococcus.s__Streptococcus_agalactiae	3.0211480363
+UniRef50_A5UNZ0: Predicted regulatory protein, amino acid-binding ACT domain family	3.0211480363
+UniRef50_A5UNZ0: Predicted regulatory protein, amino acid-binding ACT domain family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.0211480363
+UniRef50_C1FK14: Transcriptional regulator, PadR family	3.0211480363
+UniRef50_C1FK14: Transcriptional regulator, PadR family|g__Clostridium.s__Clostridium_beijerinckii	3.0211480363
+UniRef50_C2RYP0	3.0211480363
+UniRef50_C2RYP0|unclassified	3.0211480363
+UniRef50_G7M9L8: RNA polymerase sigma factor, sigma-70 family	3.0211480363
+UniRef50_G7M9L8: RNA polymerase sigma factor, sigma-70 family|g__Clostridium.s__Clostridium_beijerinckii	3.0211480363
+UniRef50_T6QCZ1: Acetoacetate metabolism regulatory protein AtoC	3.0211480363
+UniRef50_T6QCZ1: Acetoacetate metabolism regulatory protein AtoC|g__Escherichia.s__Escherichia_coli	3.0211480363
+UniRef50_UPI00037F2486: hypothetical protein	3.0211480363
+UniRef50_UPI00037F2486: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3.0211480363
+UniRef50_UPI0003B4B4C0: flagellar biosynthesis protein FliS	3.0211480363
+UniRef50_UPI0003B4B4C0: flagellar biosynthesis protein FliS|unclassified	3.0211480363
+UniRef50_F9XKQ7	3.0205781356
+UniRef50_F9XKQ7|unclassified	3.0205781356
+UniRef50_W1GH32	3.0200541986
+UniRef50_W1GH32|unclassified	3.0200541986
+UniRef50_C5CNW9: Alkanesulfonate monooxygenase	3.0197843757
+UniRef50_C5CNW9: Alkanesulfonate monooxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7691871911
+UniRef50_C5CNW9: Alkanesulfonate monooxygenase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9708737864
+UniRef50_C5CNW9: Alkanesulfonate monooxygenase|unclassified	0.2797233982
+UniRef50_G4LG80	3.0196207028
+UniRef50_G4LG80|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0196207028
+UniRef50_Q9RYZ6: Phosphate-binding protein	3.0191545246
+UniRef50_Q9RYZ6: Phosphate-binding protein|g__Deinococcus.s__Deinococcus_radiodurans	3.0191545246
+UniRef50_X1SY05: Marine sediment metagenome DNA, contig: S12H4_L03439 (Fragment)	3.0186360686
+UniRef50_X1SY05: Marine sediment metagenome DNA, contig: S12H4_L03439 (Fragment)|unclassified	3.0186360686
+UniRef50_F8FYF1: Amino acid permease-associated region	3.0185197625
+UniRef50_F8FYF1: Amino acid permease-associated region|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0185197625
+UniRef50_J0Y820	3.0175604263
+UniRef50_J0Y820|unclassified	3.0175604263
+UniRef50_G5Q9B1: Glycyl-tRNA synthetase beta chain	3.0172654364
+UniRef50_G5Q9B1: Glycyl-tRNA synthetase beta chain|g__Escherichia.s__Escherichia_coli	3.0172654364
+UniRef50_I3X1B7	3.0169534008
+UniRef50_I3X1B7|unclassified	3.0169534008
+UniRef50_A3PXZ4: Uridylate kinase	3.0168041056
+UniRef50_A3PXZ4: Uridylate kinase|g__Propionibacterium.s__Propionibacterium_acnes	2.8313682742
+UniRef50_A3PXZ4: Uridylate kinase|unclassified	0.1854358314
+UniRef50_M4R5V1	3.0167287454
+UniRef50_M4R5V1|g__Acinetobacter.s__Acinetobacter_baumannii	3.0167287454
+UniRef50_K7S6T7: Glycosyltransferase, group 1 family protein	3.0166487581
+UniRef50_K7S6T7: Glycosyltransferase, group 1 family protein|g__Propionibacterium.s__Propionibacterium_acnes	3.0166487581
+UniRef50_A8DWS2: Predicted protein (Fragment)	3.0159261133
+UniRef50_A8DWS2: Predicted protein (Fragment)|unclassified	3.0159261133
+UniRef50_A8UAD3	3.0156344546
+UniRef50_A8UAD3|unclassified	3.0156344546
+UniRef50_UPI000478B1E4: hypothetical protein	3.0156185872
+UniRef50_UPI000478B1E4: hypothetical protein|unclassified	3.0156185872
+UniRef50_UPI0003A753CE: hypothetical protein	3.0155326057
+UniRef50_UPI0003A753CE: hypothetical protein|unclassified	3.0155326057
+UniRef50_B7MPQ7	3.0153630846
+UniRef50_B7MPQ7|unclassified	3.0153630846
+UniRef50_I6Q147: IS861, transposase OrfB	3.0142779432
+UniRef50_I6Q147: IS861, transposase OrfB|unclassified	3.0142779432
+UniRef50_B2TS40: Protein MurJ homolog	3.0141623292
+UniRef50_B2TS40: Protein MurJ homolog|g__Clostridium.s__Clostridium_beijerinckii	3.0141623292
+UniRef50_UPI0003B59089: hypothetical protein	3.0132952101
+UniRef50_UPI0003B59089: hypothetical protein|unclassified	3.0132952101
+UniRef50_C6S6X2: Gamma-glutamyltranspeptidase	3.0125243562
+UniRef50_C6S6X2: Gamma-glutamyltranspeptidase|g__Neisseria.s__Neisseria_meningitidis	3.0125243562
+UniRef50_UPI0003489D92: hypothetical protein	3.0123345779
+UniRef50_UPI0003489D92: hypothetical protein|unclassified	3.0123345779
+UniRef50_W1G914: Transcriptional regulator CsgD for 2nd curli operon	3.0120481928
+UniRef50_W1G914: Transcriptional regulator CsgD for 2nd curli operon|g__Escherichia.s__Escherichia_coli	3.0120481928
+UniRef50_UPI00035EBF42: hypothetical protein	3.0115601481
+UniRef50_UPI00035EBF42: hypothetical protein|unclassified	3.0115601481
+UniRef50_A3M6B2	3.0103487217
+UniRef50_A3M6B2|g__Acinetobacter.s__Acinetobacter_baumannii	3.0103487217
+UniRef50_J9PAX2	3.0099157208
+UniRef50_J9PAX2|unclassified	3.0099157208
+UniRef50_P52642: UDP-N-acetylglucosamine 2-epimerase	3.0090702950
+UniRef50_P52642: UDP-N-acetylglucosamine 2-epimerase|g__Acinetobacter.s__Acinetobacter_baumannii	2.9591424431
+UniRef50_P52642: UDP-N-acetylglucosamine 2-epimerase|unclassified	0.0499278519
+UniRef50_W4TSQ5	3.0089991099
+UniRef50_W4TSQ5|g__Propionibacterium.s__Propionibacterium_acnes	3.0089991099
+UniRef50_V9UW22	3.0088824936
+UniRef50_V9UW22|unclassified	3.0088824936
+UniRef50_G2M640	3.0086495021
+UniRef50_G2M640|g__Helicobacter.s__Helicobacter_pylori	3.0086495021
+UniRef50_O26091: RlpA-like lipoprotein	3.0083752094
+UniRef50_O26091: RlpA-like lipoprotein|g__Helicobacter.s__Helicobacter_pylori	3.0083752094
+UniRef50_M1MQF5: Response regulator receiver protein	3.0082677569
+UniRef50_M1MQF5: Response regulator receiver protein|g__Clostridium.s__Clostridium_beijerinckii	3.0082677569
+UniRef50_Q94GJ4	3.0077357737
+UniRef50_Q94GJ4|unclassified	3.0077357737
+UniRef50_A7IIB6: Dihydrodipicolinate synthetase	3.0077329558
+UniRef50_A7IIB6: Dihydrodipicolinate synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0077329558
+UniRef50_G7MCG2: 7TM receptor with intracellular metal dependent phosphohydrolase	3.0077168055
+UniRef50_G7MCG2: 7TM receptor with intracellular metal dependent phosphohydrolase|g__Clostridium.s__Clostridium_beijerinckii	3.0077168055
+UniRef50_G4E2Y7: ATP-dependent chaperone ClpB	3.0073760110
+UniRef50_G4E2Y7: ATP-dependent chaperone ClpB|g__Acinetobacter.s__Acinetobacter_baumannii	2.1382730418
+UniRef50_G4E2Y7: ATP-dependent chaperone ClpB|g__Neisseria.s__Neisseria_meningitidis	0.8691029692
+UniRef50_B5SHS9: Fad dependent oxidoreductase protein	3.0069498870
+UniRef50_B5SHS9: Fad dependent oxidoreductase protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0069498870
+UniRef50_U1XA26: Transcriptional regulator, GntR family	3.0067099384
+UniRef50_U1XA26: Transcriptional regulator, GntR family|g__Clostridium.s__Clostridium_beijerinckii	3.0067099384
+UniRef50_D4HD90	3.0066321272
+UniRef50_D4HD90|g__Propionibacterium.s__Propionibacterium_acnes	3.0066321272
+UniRef50_F7IHT3	3.0063384641
+UniRef50_F7IHT3|unclassified	3.0063384641
+UniRef50_M1M081: DNA mismatch repair protein MutS	3.0062840885
+UniRef50_M1M081: DNA mismatch repair protein MutS|g__Clostridium.s__Clostridium_beijerinckii	3.0062840885
+UniRef50_A3PWR0: Nitric oxide reductase, NorZ apoprotein	3.0062214834
+UniRef50_A3PWR0: Nitric oxide reductase, NorZ apoprotein|g__Propionibacterium.s__Propionibacterium_acnes	3.0062214834
+UniRef50_UPI000371B471: hypothetical protein	3.0061490087
+UniRef50_UPI000371B471: hypothetical protein|unclassified	3.0061490087
+UniRef50_A6LWF3: Diguanylate cyclase/phosphodiesterase	3.0058800484
+UniRef50_A6LWF3: Diguanylate cyclase/phosphodiesterase|g__Clostridium.s__Clostridium_beijerinckii	3.0058800484
+UniRef50_UPI0003B5C4DC: 30S ribosomal protein S3	3.0051594580
+UniRef50_UPI0003B5C4DC: 30S ribosomal protein S3|unclassified	3.0051594580
+UniRef50_Q3J1W8: Chemotaxis histidine protein kinase, CheA3	3.0051411255
+UniRef50_Q3J1W8: Chemotaxis histidine protein kinase, CheA3|g__Rhodobacter.s__Rhodobacter_sphaeroides	3.0051411255
+UniRef50_E3A4B0	3.0050090627
+UniRef50_E3A4B0|g__Pseudomonas.s__Pseudomonas_aeruginosa	3.0050090627
+UniRef50_N8EHW1	3.0047436583
+UniRef50_N8EHW1|unclassified	3.0047436583
+UniRef50_R5YAM0: Glycogen debranching enzyme GlgX	3.0046290820
+UniRef50_R5YAM0: Glycogen debranching enzyme GlgX|g__Clostridium.s__Clostridium_beijerinckii	3.0046290820
+UniRef50_UPI0003775FC4: hypothetical protein	3.0043762392
+UniRef50_UPI0003775FC4: hypothetical protein|unclassified	3.0043762392
+UniRef50_V8FYN5: CoA activase	3.0030484924
+UniRef50_V8FYN5: CoA activase|g__Clostridium.s__Clostridium_beijerinckii	3.0030484924
+UniRef50_G7MC17: Universal protein YeaZ	3.0030030030
+UniRef50_G7MC17: Universal protein YeaZ|g__Clostridium.s__Clostridium_beijerinckii	3.0030030030
+UniRef50_P00632: 3-oxoadipate enol-lactonase 2	3.0030030030
+UniRef50_P00632: 3-oxoadipate enol-lactonase 2|g__Acinetobacter.s__Acinetobacter_baumannii	3.0030030030
+UniRef50_V8G2V2: MerR family transcriptional regulator	3.0030030030
+UniRef50_V8G2V2: MerR family transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	3.0030030030
+UniRef50_G7MCB5: PTS system, lactose/cellobiose family IIC subunit	3.0028629763
+UniRef50_G7MCB5: PTS system, lactose/cellobiose family IIC subunit|g__Clostridium.s__Clostridium_beijerinckii	3.0028629763
+UniRef50_M4YX25: Potassium uptake protein	3.0023273183
+UniRef50_M4YX25: Potassium uptake protein|g__Streptococcus.s__Streptococcus_agalactiae	3.0023273183
+UniRef50_UPI000476981A: hypothetical protein, partial	3.0021618523
+UniRef50_UPI000476981A: hypothetical protein, partial|unclassified	3.0021618523
+UniRef50_F7S8I9: Integral membrane protein MviN (Fragment)	3.0018900178
+UniRef50_F7S8I9: Integral membrane protein MviN (Fragment)|unclassified	3.0018900178
+UniRef50_M0WPK2	3.0008496555
+UniRef50_M0WPK2|unclassified	3.0008496555
+UniRef50_A5VGR7: Type-F conjugative transfer system protein TraW	2.9999383740
+UniRef50_A5VGR7: Type-F conjugative transfer system protein TraW|unclassified	2.9999383740
+UniRef50_W4TUN4: Sugar binding protein	2.9996648300
+UniRef50_W4TUN4: Sugar binding protein|unclassified	2.9996648300
+UniRef50_W0Z408	2.9996315023
+UniRef50_W0Z408|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0000000000
+UniRef50_W0Z408|unclassified	0.9996315023
+UniRef50_UPI000289A85F: hypothetical protein	2.9987892255
+UniRef50_UPI000289A85F: hypothetical protein|unclassified	2.9987892255
+UniRef50_B7V4R0: 3-oxoacyl-[acyl-carrier-protein] synthase 3	2.9987853022
+UniRef50_B7V4R0: 3-oxoacyl-[acyl-carrier-protein] synthase 3|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9987853022
+UniRef50_G7M6W8: NADH dehydrogenase (Quinone)	2.9983629750
+UniRef50_G7M6W8: NADH dehydrogenase (Quinone)|g__Clostridium.s__Clostridium_beijerinckii	2.9983629750
+UniRef50_UPI000226002C: hypothetical protein	2.9980321300
+UniRef50_UPI000226002C: hypothetical protein|unclassified	2.9980321300
+UniRef50_UPI000380D395: hypothetical protein, partial	2.9980282221
+UniRef50_UPI000380D395: hypothetical protein, partial|unclassified	2.9980282221
+UniRef50_B2UUB5	2.9978856998
+UniRef50_B2UUB5|g__Helicobacter.s__Helicobacter_pylori	2.9978856998
+UniRef50_UPI00030DA7F9: thioredoxin	2.9977228249
+UniRef50_UPI00030DA7F9: thioredoxin|unclassified	2.9977228249
+UniRef50_W0NHP5: Transposase	2.9971576766
+UniRef50_W0NHP5: Transposase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8490028490
+UniRef50_W0NHP5: Transposase|unclassified	0.1481548276
+UniRef50_D4Z2Y4	2.9967418799
+UniRef50_D4Z2Y4|unclassified	2.9967418799
+UniRef50_K0X1N1	2.9963738694
+UniRef50_K0X1N1|unclassified	2.9963738694
+UniRef50_J9NV26	2.9960428034
+UniRef50_J9NV26|unclassified	2.9960428034
+UniRef50_Q8GWW7: Agmatine deiminase	2.9959695477
+UniRef50_Q8GWW7: Agmatine deiminase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9959695477
+UniRef50_Q9HYT3	2.9947234606
+UniRef50_Q9HYT3|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9947234606
+UniRef50_UPI0003EDC1E0: hypothetical protein	2.9947174493
+UniRef50_UPI0003EDC1E0: hypothetical protein|unclassified	2.9947174493
+UniRef50_D3GTU6	2.9944978306
+UniRef50_D3GTU6|unclassified	2.9944978306
+UniRef50_I6RUM0	2.9943642347
+UniRef50_I6RUM0|unclassified	2.9943642347
+UniRef50_B2TL50: CoA-transferase, A subunit	2.9940119760
+UniRef50_B2TL50: CoA-transferase, A subunit|g__Clostridium.s__Clostridium_beijerinckii	2.9940119760
+UniRef50_P0AE71: mRNA interferase MazF	2.9940119760
+UniRef50_P0AE71: mRNA interferase MazF|g__Escherichia.s__Escherichia_coli	2.9940119760
+UniRef50_Q8FEA5: Transposase	2.9940119760
+UniRef50_Q8FEA5: Transposase|g__Staphylococcus.s__Staphylococcus_epidermidis	2.9940119760
+UniRef50_UPI00031D053D: hypothetical protein	2.9940119760
+UniRef50_UPI00031D053D: hypothetical protein|g__Streptococcus.s__Streptococcus_agalactiae	2.9940119760
+UniRef50_W4MP42	2.9926086712
+UniRef50_W4MP42|unclassified	2.9926086712
+UniRef50_V5WXJ2: Alpha/beta hydrolase	2.9920339201
+UniRef50_V5WXJ2: Alpha/beta hydrolase|g__Clostridium.s__Clostridium_beijerinckii	2.9920339201
+UniRef50_U6AC49: Phenazine-specific methyltransferase PhzM	2.9920219382
+UniRef50_U6AC49: Phenazine-specific methyltransferase PhzM|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9920219382
+UniRef50_E6U1U1: Cys/Met metabolism pyridoxal-phosphate-dependent protein	2.9919815599
+UniRef50_E6U1U1: Cys/Met metabolism pyridoxal-phosphate-dependent protein|g__Clostridium.s__Clostridium_beijerinckii	2.9919815599
+UniRef50_H0JSG1	2.9908378418
+UniRef50_H0JSG1|unclassified	2.9908378418
+UniRef50_F0YCD9	2.9900917606
+UniRef50_F0YCD9|unclassified	2.9900917606
+UniRef50_D7GA93: Glyceraldehyde 3-phosphate dehydrogenase (Fragment)	2.9898395035
+UniRef50_D7GA93: Glyceraldehyde 3-phosphate dehydrogenase (Fragment)|unclassified	2.9898395035
+UniRef50_D7I331: Phenylalanine hydroxylase transcriptional activator PhhR	2.9883229738
+UniRef50_D7I331: Phenylalanine hydroxylase transcriptional activator PhhR|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9883229738
+UniRef50_W0W629	2.9881620267
+UniRef50_W0W629|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9881620267
+UniRef50_B7V147: Tetraacyldisaccharide 4'-kinase	2.9880396494
+UniRef50_B7V147: Tetraacyldisaccharide 4'-kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9880396494
+UniRef50_U5MW43: Methyl-accepting chemotaxis protein signaling domain protein	2.9875843829
+UniRef50_U5MW43: Methyl-accepting chemotaxis protein signaling domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.9875843829
+UniRef50_V5SZP2	2.9875746560
+UniRef50_V5SZP2|unclassified	2.9875746560
+UniRef50_Q9RYV9	2.9868795747
+UniRef50_Q9RYV9|unclassified	2.9868795747
+UniRef50_UPI0004749BC5: hypothetical protein	2.9861804867
+UniRef50_UPI0004749BC5: hypothetical protein|unclassified	2.9861804867
+UniRef50_D4HC17: TOBE domain protein	2.9850746269
+UniRef50_D4HC17: TOBE domain protein|g__Propionibacterium.s__Propionibacterium_acnes	2.9850746269
+UniRef50_F9YWF9	2.9850746269
+UniRef50_F9YWF9|g__Propionibacterium.s__Propionibacterium_acnes	2.9850746269
+UniRef50_L5R254: Replication initiation factor domain protein (Fragment)	2.9850746269
+UniRef50_L5R254: Replication initiation factor domain protein (Fragment)|g__Neisseria.s__Neisseria_meningitidis	2.9850746269
+UniRef50_M4R3U4: Metal-dependent hydrolase	2.9850746269
+UniRef50_M4R3U4: Metal-dependent hydrolase|g__Acinetobacter.s__Acinetobacter_baumannii	2.9850746269
+UniRef50_S5Y8U0: Glyoxalase/bleomycin resistance protein/dioxygenase	2.9850746269
+UniRef50_S5Y8U0: Glyoxalase/bleomycin resistance protein/dioxygenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.9850746269
+UniRef50_UPI0002B8E40E: hypothetical protein, partial	2.9850746269
+UniRef50_UPI0002B8E40E: hypothetical protein, partial|g__Escherichia.s__Escherichia_coli	2.9850746269
+UniRef50_UPI0002FE096E: hypothetical protein	2.9850746269
+UniRef50_UPI0002FE096E: hypothetical protein|unclassified	2.9850746269
+UniRef50_E3A0X6	2.9850692455
+UniRef50_E3A0X6|unclassified	2.9850692455
+UniRef50_C0RHG6: Acyl carrier protein	2.9846810176
+UniRef50_C0RHG6: Acyl carrier protein|unclassified	2.9846810176
+UniRef50_D4HCV0: FAD linked oxidase, C-terminal domain protein	2.9842181964
+UniRef50_D4HCV0: FAD linked oxidase, C-terminal domain protein|g__Propionibacterium.s__Propionibacterium_acnes	2.9842181964
+UniRef50_P54388: NADP-specific glutamate dehydrogenase	2.9838388962
+UniRef50_P54388: NADP-specific glutamate dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	2.8551034975
+UniRef50_P54388: NADP-specific glutamate dehydrogenase|unclassified	0.1287353987
+UniRef50_B4EEY8: ATP synthase gamma chain	2.9837106664
+UniRef50_B4EEY8: ATP synthase gamma chain|g__Neisseria.s__Neisseria_meningitidis	2.9837106664
+UniRef50_R5A014: Muramoyltetrapeptide carboxypeptidase	2.9834520075
+UniRef50_R5A014: Muramoyltetrapeptide carboxypeptidase|g__Streptococcus.s__Streptococcus_agalactiae	2.9834520075
+UniRef50_G9F1Y9: 2-enoate reductase FldZ	2.9833279460
+UniRef50_G9F1Y9: 2-enoate reductase FldZ|g__Clostridium.s__Clostridium_beijerinckii	2.9833279460
+UniRef50_A0A023RXS3: Magnesium transporter	2.9832679706
+UniRef50_A0A023RXS3: Magnesium transporter|g__Acinetobacter.s__Acinetobacter_baumannii	2.9832679706
+UniRef50_Q17WZ6: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	2.9823825637
+UniRef50_Q17WZ6: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|g__Helicobacter.s__Helicobacter_pylori	2.9360453050
+UniRef50_Q17WZ6: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0463372586
+UniRef50_G9AF02: Plasmid pSfHH103e complete sequence	2.9823216329
+UniRef50_G9AF02: Plasmid pSfHH103e complete sequence|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.9823216329
+UniRef50_A9ACF0: Secretion protein HlyD family protein	2.9822300253
+UniRef50_A9ACF0: Secretion protein HlyD family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9822300253
+UniRef50_Y7FHG4	2.9819084563
+UniRef50_Y7FHG4|unclassified	2.9819084563
+UniRef50_L1K4Q0	2.9817797329
+UniRef50_L1K4Q0|unclassified	2.9817797329
+UniRef50_UPI0004639771: acetamidase	2.9816850757
+UniRef50_UPI0004639771: acetamidase|unclassified	2.9816850757
+UniRef50_R4PRA1: Cytochrome D ubiquinol oxidase, subunit II	2.9814683234
+UniRef50_R4PRA1: Cytochrome D ubiquinol oxidase, subunit II|g__Streptococcus.s__Streptococcus_agalactiae	2.9814683234
+UniRef50_UPI00046F326D: hypothetical protein	2.9814337810
+UniRef50_UPI00046F326D: hypothetical protein|unclassified	2.9814337810
+UniRef50_S0AE89: Allophanate hydrolase AtzF	2.9812313222
+UniRef50_S0AE89: Allophanate hydrolase AtzF|g__Acinetobacter.s__Acinetobacter_baumannii	2.9812313222
+UniRef50_B9KUE0	2.9810071555
+UniRef50_B9KUE0|unclassified	2.9810071555
+UniRef50_D5AT40: Transcriptional regulator, AraC family	2.9809203342
+UniRef50_D5AT40: Transcriptional regulator, AraC family|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.9809203342
+UniRef50_A0A009UCL1: Phenylalanine--tRNA ligase beta subunit	2.9807843632
+UniRef50_A0A009UCL1: Phenylalanine--tRNA ligase beta subunit|g__Acinetobacter.s__Acinetobacter_baumannii	2.9807843632
+UniRef50_M1MJB2	2.9803390551
+UniRef50_M1MJB2|g__Clostridium.s__Clostridium_beijerinckii	2.9803390551
+UniRef50_C6D021: Uronate isomerase	2.9798891793
+UniRef50_C6D021: Uronate isomerase|g__Clostridium.s__Clostridium_beijerinckii	2.9798891793
+UniRef50_UPI000469C76D: sulfonate ABC transporter ATP-binding protein, partial	2.9798431252
+UniRef50_UPI000469C76D: sulfonate ABC transporter ATP-binding protein, partial|unclassified	2.9798431252
+UniRef50_N1MJ05	2.9789961746
+UniRef50_N1MJ05|unclassified	2.9789961746
+UniRef50_G5NQB0	2.9786340735
+UniRef50_G5NQB0|unclassified	2.9786340735
+UniRef50_Q0VQQ9: Acetyltransferase, GNAT family, putative	2.9784874695
+UniRef50_Q0VQQ9: Acetyltransferase, GNAT family, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9784874695
+UniRef50_J9U6I9: Serine-aspartate repeat-containing protein D	2.9780858202
+UniRef50_J9U6I9: Serine-aspartate repeat-containing protein D|g__Staphylococcus.s__Staphylococcus_aureus	2.9780858202
+UniRef50_F5HTK1: Alcaligin biosynthesis enzyme family protein	2.9777119806
+UniRef50_F5HTK1: Alcaligin biosynthesis enzyme family protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.9777119806
+UniRef50_C7J2E1: Os05g0463800 protein (Fragment)	2.9772546208
+UniRef50_C7J2E1: Os05g0463800 protein (Fragment)|unclassified	2.9772546208
+UniRef50_Q6FAM5: Bifunctional uridylyltransferase/uridylyl-removing enzyme	2.9770887741
+UniRef50_Q6FAM5: Bifunctional uridylyltransferase/uridylyl-removing enzyme|g__Acinetobacter.s__Acinetobacter_baumannii	2.9770887741
+UniRef50_B5UZ18	2.9770768080
+UniRef50_B5UZ18|unclassified	2.9770768080
+UniRef50_F2N901: Oxidoreductase domain protein	2.9766664534
+UniRef50_F2N901: Oxidoreductase domain protein|g__Streptococcus.s__Streptococcus_agalactiae	2.9766664534
+UniRef50_K7TKJ1	2.9762376358
+UniRef50_K7TKJ1|unclassified	2.9762376358
+UniRef50_J7PTP3: Similar to transcriptional regulator, DeoR family, C-terminal part	2.9762107850
+UniRef50_J7PTP3: Similar to transcriptional regulator, DeoR family, C-terminal part|unclassified	2.9762107850
+UniRef50_E4HVL3: YD repeat protein (3 repeats)	2.9761904762
+UniRef50_E4HVL3: YD repeat protein (3 repeats)|g__Propionibacterium.s__Propionibacterium_acnes	2.9761904762
+UniRef50_F6D6D0: Peptidyl-tRNA hydrolase	2.9761904762
+UniRef50_F6D6D0: Peptidyl-tRNA hydrolase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.9761904762
+UniRef50_K4PTK0: Thioredoxin-like fold protein	2.9761904762
+UniRef50_K4PTK0: Thioredoxin-like fold protein|g__Streptococcus.s__Streptococcus_agalactiae	2.9761904762
+UniRef50_P75977	2.9761904762
+UniRef50_P75977|g__Escherichia.s__Escherichia_coli	2.9761904762
+UniRef50_Q02IM9	2.9761904762
+UniRef50_Q02IM9|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9761904762
+UniRef50_Q9ZLT4: CAG pathogenicity island protein 23	2.9749252644
+UniRef50_Q9ZLT4: CAG pathogenicity island protein 23|g__Helicobacter.s__Helicobacter_pylori	2.9749252644
+UniRef50_A4SRG0: ABC-type antimicrobial peptide transporter, permease component	2.9743727298
+UniRef50_A4SRG0: ABC-type antimicrobial peptide transporter, permease component|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9743727298
+UniRef50_Q9RRI3: Medium-chain fatty acid--CoA ligase	2.9741070649
+UniRef50_Q9RRI3: Medium-chain fatty acid--CoA ligase|g__Deinococcus.s__Deinococcus_radiodurans	2.9741070649
+UniRef50_UPI0002D9142D: hypothetical protein	2.9731747910
+UniRef50_UPI0002D9142D: hypothetical protein|unclassified	2.9731747910
+UniRef50_UPI0002D844FC: hypothetical protein	2.9727385688
+UniRef50_UPI0002D844FC: hypothetical protein|unclassified	2.9727385688
+UniRef50_G7M047: Enoyl-CoA hydratase/isomerase	2.9727037783
+UniRef50_G7M047: Enoyl-CoA hydratase/isomerase|g__Clostridium.s__Clostridium_beijerinckii	2.9727037783
+UniRef50_B9KQJ4: Chemotactic signal-response protein CheL	2.9725499007
+UniRef50_B9KQJ4: Chemotactic signal-response protein CheL|unclassified	2.9725499007
+UniRef50_V5S959: Dihydroorotate dehydrogenase	2.9725376890
+UniRef50_V5S959: Dihydroorotate dehydrogenase|unclassified	2.9725376890
+UniRef50_K1ZZR2	2.9724148742
+UniRef50_K1ZZR2|unclassified	2.9724148742
+UniRef50_Q81WF1: Carbamoyl-phosphate synthase small chain	2.9718039440
+UniRef50_Q81WF1: Carbamoyl-phosphate synthase small chain|g__Clostridium.s__Clostridium_beijerinckii	2.9718039440
+UniRef50_J8UZ97: Anti-sigma-factor antagonist	2.9711208424
+UniRef50_J8UZ97: Anti-sigma-factor antagonist|unclassified	2.9711208424
+UniRef50_U5MSM7: Metallophosphoesterase	2.9710107078
+UniRef50_U5MSM7: Metallophosphoesterase|g__Clostridium.s__Clostridium_beijerinckii	2.9710107078
+UniRef50_UPI0003F19155: hypothetical protein	2.9705262184
+UniRef50_UPI0003F19155: hypothetical protein|unclassified	2.9705262184
+UniRef50_C7J1W2: Os04g0548500 protein (Fragment)	2.9698690686
+UniRef50_C7J1W2: Os04g0548500 protein (Fragment)|unclassified	2.9698690686
+UniRef50_G0HG32: Short chain dehydrogenase	2.9697600381
+UniRef50_G0HG32: Short chain dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	2.9697600381
+UniRef50_F7V1W3	2.9696337680
+UniRef50_F7V1W3|unclassified	2.9696337680
+UniRef50_A0A023NXT8: Glyoxalase	2.9693968760
+UniRef50_A0A023NXT8: Glyoxalase|unclassified	2.9693968760
+UniRef50_W0YP88: Acetylpolyamine aminohydrolase	2.9691961962
+UniRef50_W0YP88: Acetylpolyamine aminohydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9691961962
+UniRef50_UPI0003A51EC3: hypothetical protein	2.9690818872
+UniRef50_UPI0003A51EC3: hypothetical protein|unclassified	2.9690818872
+UniRef50_F5XM79	2.9686843211
+UniRef50_F5XM79|g__Propionibacterium.s__Propionibacterium_acnes	2.9686843211
+UniRef50_D5CAF9	2.9684979587
+UniRef50_D5CAF9|unclassified	2.9684979587
+UniRef50_Q9HZK1: S-methyl-5'-thioinosine phosphorylase	2.9682612595
+UniRef50_Q9HZK1: S-methyl-5'-thioinosine phosphorylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9682612595
+UniRef50_UPI00036AE0E8: hypothetical protein, partial	2.9682130070
+UniRef50_UPI00036AE0E8: hypothetical protein, partial|unclassified	2.9682130070
+UniRef50_Y6EQN4: Serine-rich adhesin for platelets	2.9681260998
+UniRef50_Y6EQN4: Serine-rich adhesin for platelets|g__Staphylococcus.s__Staphylococcus_epidermidis	2.9681260998
+UniRef50_H1Y7F7: NAD-dependent protein deacylase	2.9674178402
+UniRef50_H1Y7F7: NAD-dependent protein deacylase|g__Acinetobacter.s__Acinetobacter_baumannii	2.9674178402
+UniRef50_A0K5A8	2.9673590504
+UniRef50_A0K5A8|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9673590504
+UniRef50_K8DMU1: Maltose phosphorylase / Trehalose phosphorylase	2.9673590504
+UniRef50_K8DMU1: Maltose phosphorylase / Trehalose phosphorylase|g__Escherichia.s__Escherichia_coli	2.9673590504
+UniRef50_P0ADP3	2.9673590504
+UniRef50_P0ADP3|g__Escherichia.s__Escherichia_coli	2.9673590504
+UniRef50_R4ZTB7: Polysaccharide deacetylase	2.9673590504
+UniRef50_R4ZTB7: Polysaccharide deacetylase|g__Streptococcus.s__Streptococcus_agalactiae	2.9673590504
+UniRef50_R9NUS0: RNA-binding protein YhbY	2.9673590504
+UniRef50_R9NUS0: RNA-binding protein YhbY|g__Escherichia.s__Escherichia_coli	2.9673590504
+UniRef50_D2AA76: Putative alpha-mannosidase	2.9672486578
+UniRef50_D2AA76: Putative alpha-mannosidase|unclassified	2.9672486578
+UniRef50_Q3IVF5	2.9670865141
+UniRef50_Q3IVF5|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.9670865141
+UniRef50_Q897S6: S1 RNA binding domain	2.9662451286
+UniRef50_Q897S6: S1 RNA binding domain|g__Clostridium.s__Clostridium_beijerinckii	2.9662451286
+UniRef50_O26010: Phosphopantetheine adenylyltransferase	2.9652057753
+UniRef50_O26010: Phosphopantetheine adenylyltransferase|g__Helicobacter.s__Helicobacter_pylori	2.5125628141
+UniRef50_O26010: Phosphopantetheine adenylyltransferase|unclassified	0.4526429612
+UniRef50_K7S0H1: ABC transporter, ATP-binding protein	2.9650847042
+UniRef50_K7S0H1: ABC transporter, ATP-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	2.9650847042
+UniRef50_G0DSM5: Phosphotransferase enzyme family protein	2.9647435897
+UniRef50_G0DSM5: Phosphotransferase enzyme family protein|g__Propionibacterium.s__Propionibacterium_acnes	2.9647435897
+UniRef50_UPI00047D9051: hypothetical protein	2.9642601950
+UniRef50_UPI00047D9051: hypothetical protein|unclassified	2.9642601950
+UniRef50_F2D993: Predicted protein (Fragment)	2.9640074907
+UniRef50_F2D993: Predicted protein (Fragment)|unclassified	2.9640074907
+UniRef50_Q1IZL3: LmbE-like protein protein	2.9637722173
+UniRef50_Q1IZL3: LmbE-like protein protein|g__Deinococcus.s__Deinococcus_radiodurans	2.9637722173
+UniRef50_UPI0004653BA0: hypothetical protein	2.9637591273
+UniRef50_UPI0004653BA0: hypothetical protein|unclassified	2.9637591273
+UniRef50_S4XY12	2.9636397992
+UniRef50_S4XY12|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9636397992
+UniRef50_B8ET52: Major facilitator superfamily MFS_1	2.9635056421
+UniRef50_B8ET52: Major facilitator superfamily MFS_1|g__Acinetobacter.s__Acinetobacter_baumannii	2.9635056421
+UniRef50_G8VEM4: Glycosyl transferase	2.9629845823
+UniRef50_G8VEM4: Glycosyl transferase|g__Propionibacterium.s__Propionibacterium_acnes	2.9629845823
+UniRef50_G2AIF5: Ulp1 protease family, C-terminal catalytic domain protein	2.9623587030
+UniRef50_G2AIF5: Ulp1 protease family, C-terminal catalytic domain protein|g__Escherichia.s__Escherichia_coli	2.9623587030
+UniRef50_U5WUM2: Zinc-binding dehydrogenase	2.9622844258
+UniRef50_U5WUM2: Zinc-binding dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	2.9622844258
+UniRef50_A6V846: Membrane protein, putative	2.9616800455
+UniRef50_A6V846: Membrane protein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9616800455
+UniRef50_Q9RZM6	2.9616057409
+UniRef50_Q9RZM6|unclassified	2.9616057409
+UniRef50_B4EH82: Catalase-related peroxidase	2.9614853460
+UniRef50_B4EH82: Catalase-related peroxidase|g__Acinetobacter.s__Acinetobacter_baumannii	2.9614853460
+UniRef50_C9LYG0: Lipoprotein	2.9605166984
+UniRef50_C9LYG0: Lipoprotein|g__Clostridium.s__Clostridium_beijerinckii	2.4755546636
+UniRef50_C9LYG0: Lipoprotein|unclassified	0.4849620348
+UniRef50_E2Q3I4: Flavoprotein disulfide reductase	2.9604717077
+UniRef50_E2Q3I4: Flavoprotein disulfide reductase|g__Propionibacterium.s__Propionibacterium_acnes	2.9604717077
+UniRef50_A1SJC3: Oligopeptide/dipeptide ABC transporter, ATPase subunit	2.9603854877
+UniRef50_A1SJC3: Oligopeptide/dipeptide ABC transporter, ATPase subunit|g__Propionibacterium.s__Propionibacterium_acnes	2.9603854877
+UniRef50_J0KVR5	2.9599321798
+UniRef50_J0KVR5|unclassified	2.9599321798
+UniRef50_A9M1Y8: UPF0761 membrane protein NMCC_0461	2.9596869809
+UniRef50_A9M1Y8: UPF0761 membrane protein NMCC_0461|g__Neisseria.s__Neisseria_meningitidis	2.9596869809
+UniRef50_A0JXX3: D-alanine--D-alanine ligase	2.9596249434
+UniRef50_A0JXX3: D-alanine--D-alanine ligase|g__Propionibacterium.s__Propionibacterium_acnes	2.9056763030
+UniRef50_A0JXX3: D-alanine--D-alanine ligase|unclassified	0.0539486404
+UniRef50_W0YRT6: Putative phosphatase	2.9596130802
+UniRef50_W0YRT6: Putative phosphatase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9596130802
+UniRef50_Q166G1: Oligopeptide ABC transporter, permease protein, putative	2.9596055119
+UniRef50_Q166G1: Oligopeptide ABC transporter, permease protein, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.9596055119
+UniRef50_H6NGS7: Glutamine ABC transporter substrate binding protein	2.9594101039
+UniRef50_H6NGS7: Glutamine ABC transporter substrate binding protein|g__Clostridium.s__Clostridium_beijerinckii	2.9594101039
+UniRef50_X6XZ89	2.9589942921
+UniRef50_X6XZ89|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9589942921
+UniRef50_A0A029NJF0: ABC transporter family protein	2.9585798817
+UniRef50_A0A029NJF0: ABC transporter family protein|g__Escherichia.s__Escherichia_coli	2.9585798817
+UniRef50_A7ZT19: Nickel-responsive regulator	2.9585798817
+UniRef50_A7ZT19: Nickel-responsive regulator|g__Escherichia.s__Escherichia_coli	2.9585798817
+UniRef50_B2V019	2.9585798817
+UniRef50_B2V019|g__Clostridium.s__Clostridium_beijerinckii	2.9585798817
+UniRef50_B7UV48: Bacteriohemerythrin	2.9585798817
+UniRef50_B7UV48: Bacteriohemerythrin|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9585798817
+UniRef50_F8LGC3: Phosphoribosylglycinamide (GAR) formyltransferase	2.9585798817
+UniRef50_F8LGC3: Phosphoribosylglycinamide (GAR) formyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	2.9585798817
+UniRef50_H0YRE6	2.9585798817
+UniRef50_H0YRE6|unclassified	2.9585798817
+UniRef50_X5K1G4: CylZ protein	2.9585798817
+UniRef50_X5K1G4: CylZ protein|g__Streptococcus.s__Streptococcus_agalactiae	2.9585798817
+UniRef50_A9BPF6: Thiolase	2.9581529582
+UniRef50_A9BPF6: Thiolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9581529582
+UniRef50_B7UWC5	2.9562348867
+UniRef50_B7UWC5|unclassified	2.9562348867
+UniRef50_C5Y6L8	2.9559889399
+UniRef50_C5Y6L8|unclassified	2.9559889399
+UniRef50_S8B904	2.9550829025
+UniRef50_S8B904|unclassified	2.9550829025
+UniRef50_P0A0S5: Cell division protein FtsZ	2.9549898736
+UniRef50_P0A0S5: Cell division protein FtsZ|g__Neisseria.s__Neisseria_meningitidis	2.9549898736
+UniRef50_B9JSW9: Altronate oxidoreductase	2.9543846359
+UniRef50_B9JSW9: Altronate oxidoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.9543846359
+UniRef50_D8JJE0	2.9543610981
+UniRef50_D8JJE0|g__Acinetobacter.s__Acinetobacter_baumannii	2.9543610981
+UniRef50_A6LQ12: Male sterility C-terminal domain	2.9543407580
+UniRef50_A6LQ12: Male sterility C-terminal domain|g__Clostridium.s__Clostridium_beijerinckii	2.9543407580
+UniRef50_D8GIQ6	2.9542161945
+UniRef50_D8GIQ6|g__Clostridium.s__Clostridium_beijerinckii	2.9542161945
+UniRef50_Q11H35	2.9541798420
+UniRef50_Q11H35|unclassified	2.9541798420
+UniRef50_M9VIA8: DNA topoisomerase IV subunit B	2.9540622456
+UniRef50_M9VIA8: DNA topoisomerase IV subunit B|g__Propionibacterium.s__Propionibacterium_acnes	2.9540622456
+UniRef50_K0C8G2: Alpha-L-glutamate ligase-like protein	2.9536039686
+UniRef50_K0C8G2: Alpha-L-glutamate ligase-like protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9536039686
+UniRef50_Q255E7	2.9535850126
+UniRef50_Q255E7|unclassified	2.9535850126
+UniRef50_A6M2T3: Phosphotransferase system, EIIC	2.9534018036
+UniRef50_A6M2T3: Phosphotransferase system, EIIC|g__Clostridium.s__Clostridium_beijerinckii	2.9534018036
+UniRef50_Q97M68: Prolipoprotein diacylglyceryl transferase	2.9527888358
+UniRef50_Q97M68: Prolipoprotein diacylglyceryl transferase|g__Clostridium.s__Clostridium_beijerinckii	2.8712117949
+UniRef50_Q97M68: Prolipoprotein diacylglyceryl transferase|unclassified	0.0815770409
+UniRef50_P65931: Uridylate kinase	2.9523698414
+UniRef50_P65931: Uridylate kinase|g__Neisseria.s__Neisseria_meningitidis	2.7835782443
+UniRef50_P65931: Uridylate kinase|unclassified	0.1687915971
+UniRef50_I6RHA7	2.9514136854
+UniRef50_I6RHA7|unclassified	2.9514136854
+UniRef50_UPI0003B619C0: S-adenosylmethionine-binding protein	2.9513232704
+UniRef50_UPI0003B619C0: S-adenosylmethionine-binding protein|unclassified	2.9513232704
+UniRef50_A0A038GEF1	2.9513168864
+UniRef50_A0A038GEF1|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9513168864
+UniRef50_UPI0004643DB1: hypothetical protein	2.9504242625
+UniRef50_UPI0004643DB1: hypothetical protein|unclassified	2.9504242625
+UniRef50_D7HWN3: TorCAD operon transcriptional regulatory protein torR	2.9503189680
+UniRef50_D7HWN3: TorCAD operon transcriptional regulatory protein torR|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9503189680
+UniRef50_L8DV59: Pyrimidine-nucleoside phosphorylase	2.9498525074
+UniRef50_L8DV59: Pyrimidine-nucleoside phosphorylase|g__Staphylococcus.s__Staphylococcus_aureus	2.9498525074
+UniRef50_Q8D5H0: GlpM protein	2.9498525074
+UniRef50_Q8D5H0: GlpM protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.9498525074
+UniRef50_Q9RY41: Putative GTP cyclohydrolase 1 type 2	2.9498525074
+UniRef50_Q9RY41: Putative GTP cyclohydrolase 1 type 2|g__Deinococcus.s__Deinococcus_radiodurans	2.9498525074
+UniRef50_S1JWY6: Antitoxin PrlF	2.9498525074
+UniRef50_S1JWY6: Antitoxin PrlF|g__Escherichia.s__Escherichia_coli	2.9498525074
+UniRef50_W1T644: Fructoselysine transporter	2.9498525074
+UniRef50_W1T644: Fructoselysine transporter|g__Escherichia.s__Escherichia_coli	2.9498525074
+UniRef50_G4R689	2.9497956958
+UniRef50_G4R689|unclassified	2.9497956958
+UniRef50_P32014: Capsule polysaccharide export inner-membrane protein CtrB	2.9496409133
+UniRef50_P32014: Capsule polysaccharide export inner-membrane protein CtrB|g__Neisseria.s__Neisseria_meningitidis	2.9496409133
+UniRef50_P45499: Cell division protein FtsZ	2.9496108923
+UniRef50_P45499: Cell division protein FtsZ|g__Propionibacterium.s__Propionibacterium_acnes	2.9496108923
+UniRef50_A4WRH7	2.9487326931
+UniRef50_A4WRH7|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.6455026455
+UniRef50_A4WRH7|unclassified	0.3032300476
+UniRef50_G7LZX2	2.9485276888
+UniRef50_G7LZX2|g__Clostridium.s__Clostridium_beijerinckii	2.9485276888
+UniRef50_U5MM75: Penicillin-binding protein 2	2.9485142855
+UniRef50_U5MM75: Penicillin-binding protein 2|g__Clostridium.s__Clostridium_beijerinckii	2.9485142855
+UniRef50_A4XID9: Type II secretion system protein E	2.9470857029
+UniRef50_A4XID9: Type II secretion system protein E|g__Clostridium.s__Clostridium_beijerinckii	2.9470857029
+UniRef50_UPI00047D3BA3: hypothetical protein	2.9470131876
+UniRef50_UPI00047D3BA3: hypothetical protein|unclassified	2.9470131876
+UniRef50_Q1JFT3: Transcriptional regulator, AraC family	2.9468020594
+UniRef50_Q1JFT3: Transcriptional regulator, AraC family|g__Streptococcus.s__Streptococcus_agalactiae	2.9468020594
+UniRef50_R1DUS4	2.9465948790
+UniRef50_R1DUS4|unclassified	2.9465948790
+UniRef50_F4GHR3: Glutamate synthase (NADPH)	2.9465663990
+UniRef50_F4GHR3: Glutamate synthase (NADPH)|g__Clostridium.s__Clostridium_beijerinckii	2.9465663990
+UniRef50_UPI0003490FD2: hypothetical protein	2.9452268787
+UniRef50_UPI0003490FD2: hypothetical protein|unclassified	2.9452268787
+UniRef50_W6RN06	2.9449867034
+UniRef50_W6RN06|unclassified	2.9449867034
+UniRef50_N9CHK2	2.9448316318
+UniRef50_N9CHK2|unclassified	2.9448316318
+UniRef50_Y4VDJ3	2.9444466935
+UniRef50_Y4VDJ3|unclassified	2.9444466935
+UniRef50_T3GIH5: AAA domain family protein	2.9435454949
+UniRef50_T3GIH5: AAA domain family protein|g__Clostridium.s__Clostridium_beijerinckii	2.9435454949
+UniRef50_B9NXF6: Plasmid partitioning protein RepA	2.9432302842
+UniRef50_B9NXF6: Plasmid partitioning protein RepA|unclassified	2.9432302842
+UniRef50_G9W9E3: Diaminopimelate decarboxylase	2.9431892513
+UniRef50_G9W9E3: Diaminopimelate decarboxylase|unclassified	2.9431892513
+UniRef50_R9YLQ5: LXG domain of WXG superfamily protein	2.9429978877
+UniRef50_R9YLQ5: LXG domain of WXG superfamily protein|g__Staphylococcus.s__Staphylococcus_aureus	2.9429978877
+UniRef50_F0YPX2	2.9426336128
+UniRef50_F0YPX2|unclassified	2.9426336128
+UniRef50_A0A023LEN6	2.9420944023
+UniRef50_A0A023LEN6|g__Escherichia.s__Escherichia_coli	2.2371364653
+UniRef50_A0A023LEN6|unclassified	0.7049579370
+UniRef50_H1QEQ5: Phosphoribosylaminoimidazole-succinocarboxamide synthase (Fragment)	2.9418743127
+UniRef50_H1QEQ5: Phosphoribosylaminoimidazole-succinocarboxamide synthase (Fragment)|unclassified	2.9418743127
+UniRef50_N1SEI4: EamA-like transporter family protein	2.9411764706
+UniRef50_N1SEI4: EamA-like transporter family protein|g__Escherichia.s__Escherichia_coli	2.9411764706
+UniRef50_Q3J224: Phage-related protein, putative DNA packing	2.9411764706
+UniRef50_Q3J224: Phage-related protein, putative DNA packing|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.9411764706
+UniRef50_U5MPA0	2.9411764706
+UniRef50_U5MPA0|g__Clostridium.s__Clostridium_beijerinckii	2.9411764706
+UniRef50_E6MXZ6: Exonuclease, DNA polymerase III, epsilon subunit	2.9410181440
+UniRef50_E6MXZ6: Exonuclease, DNA polymerase III, epsilon subunit|g__Neisseria.s__Neisseria_meningitidis	2.9410181440
+UniRef50_W0MF84	2.9407052243
+UniRef50_W0MF84|unclassified	2.9407052243
+UniRef50_A0A012GK72: DegV domain-containing protein	2.9406925567
+UniRef50_A0A012GK72: DegV domain-containing protein|unclassified	2.9406925567
+UniRef50_UPI00024882AC: dihydrodipicolinate synthetase, partial	2.9406758844
+UniRef50_UPI00024882AC: dihydrodipicolinate synthetase, partial|unclassified	2.9406758844
+UniRef50_B3RC83: Mannose-1-phosphate guanyltransferase, colanic acid synthesis	2.9405543977
+UniRef50_B3RC83: Mannose-1-phosphate guanyltransferase, colanic acid synthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9405543977
+UniRef50_W1W856: Molybdenum cofactor biosynthesis protein B	2.9400192950
+UniRef50_W1W856: Molybdenum cofactor biosynthesis protein B|unclassified	2.9400192950
+UniRef50_Q2YUD3	2.9395613539
+UniRef50_Q2YUD3|unclassified	2.9395613539
+UniRef50_F8FZ21: Acyl-CoA synthetase	2.9386913001
+UniRef50_F8FZ21: Acyl-CoA synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9386913001
+UniRef50_A6V0F0	2.9372694164
+UniRef50_A6V0F0|unclassified	2.9372694164
+UniRef50_W1U1C3	2.9370593445
+UniRef50_W1U1C3|unclassified	2.9370593445
+UniRef50_A6LU83: 1-acyl-sn-glycerol-3-phosphate acyltransferase	2.9368638951
+UniRef50_A6LU83: 1-acyl-sn-glycerol-3-phosphate acyltransferase|g__Clostridium.s__Clostridium_beijerinckii	2.9368638951
+UniRef50_I2BZM7: Transcriptional regulator, AraC family	2.9363611235
+UniRef50_I2BZM7: Transcriptional regulator, AraC family|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9363611235
+UniRef50_R8A3B5	2.9362060528
+UniRef50_R8A3B5|unclassified	2.9362060528
+UniRef50_G8VLT1: Tryptophanase/L-cysteine desulfhydrase, PLP-dependent	2.9355725172
+UniRef50_G8VLT1: Tryptophanase/L-cysteine desulfhydrase, PLP-dependent|g__Propionibacterium.s__Propionibacterium_acnes	2.9355725172
+UniRef50_UPI00039AD4F5: hypothetical protein	2.9355704156
+UniRef50_UPI00039AD4F5: hypothetical protein|unclassified	2.9355704156
+UniRef50_W0AXN8	2.9355595697
+UniRef50_W0AXN8|unclassified	2.9355595697
+UniRef50_A6LUC8: 40-residue YVTN family beta-propeller repeat protein	2.9354166316
+UniRef50_A6LUC8: 40-residue YVTN family beta-propeller repeat protein|g__Clostridium.s__Clostridium_beijerinckii	2.9354166316
+UniRef50_K6ZC97	2.9347364568
+UniRef50_K6ZC97|unclassified	2.9347364568
+UniRef50_D5AMB2: ArsC family protein	2.9346118665
+UniRef50_D5AMB2: ArsC family protein|unclassified	2.9346118665
+UniRef50_Q88A72: Fic family protein	2.9343313519
+UniRef50_Q88A72: Fic family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9343313519
+UniRef50_UPI00046D164D: PREDICTED: aconitate hydratase, cytoplasmic-like	2.9337893431
+UniRef50_UPI00046D164D: PREDICTED: aconitate hydratase, cytoplasmic-like|unclassified	2.9337893431
+UniRef50_Q1GJ62: Sterol-binding	2.9330160037
+UniRef50_Q1GJ62: Sterol-binding|unclassified	2.9330160037
+UniRef50_K7RRT6: Kinase domain-containing protein	2.9329524315
+UniRef50_K7RRT6: Kinase domain-containing protein|g__Propionibacterium.s__Propionibacterium_acnes	2.9329524315
+UniRef50_F8JVM5: LigA	2.9329332072
+UniRef50_F8JVM5: LigA|unclassified	2.9329332072
+UniRef50_UPI00040A2517: hypothetical protein	2.9328922624
+UniRef50_UPI00040A2517: hypothetical protein|unclassified	2.9328922624
+UniRef50_I6D957: Autoinducer 2-binding lsrB domain protein	2.9327465946
+UniRef50_I6D957: Autoinducer 2-binding lsrB domain protein|unclassified	2.9327465946
+UniRef50_V9RTB4: C4-dicarboxylate transport transcriptional regulatory protein dctD	2.9326028199
+UniRef50_V9RTB4: C4-dicarboxylate transport transcriptional regulatory protein dctD|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9326028199
+UniRef50_K0HAG9	2.9325576245
+UniRef50_K0HAG9|g__Acinetobacter.s__Acinetobacter_baumannii	2.9325576245
+UniRef50_G8V8M1: Membrane spanning protein	2.9325513196
+UniRef50_G8V8M1: Membrane spanning protein|g__Propionibacterium.s__Propionibacterium_acnes	2.9325513196
+UniRef50_A8LJS1	2.9325253803
+UniRef50_A8LJS1|unclassified	2.9325253803
+UniRef50_A5MYM8	2.9324932881
+UniRef50_A5MYM8|g__Clostridium.s__Clostridium_beijerinckii	2.9324932881
+UniRef50_Q8GFD7: MobA	2.9324463922
+UniRef50_Q8GFD7: MobA|unclassified	2.9324463922
+UniRef50_Q0TM34: Pyridine nucleotide-disulphide oxidoreductase	2.9323133579
+UniRef50_Q0TM34: Pyridine nucleotide-disulphide oxidoreductase|g__Clostridium.s__Clostridium_beijerinckii	2.9323133579
+UniRef50_A6LR96: Radical SAM domain protein	2.9319384000
+UniRef50_A6LR96: Radical SAM domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.9319384000
+UniRef50_F6BYP3: Soluble epoxide hydrolase	2.9318778399
+UniRef50_F6BYP3: Soluble epoxide hydrolase|g__Clostridium.s__Clostridium_beijerinckii	2.9318778399
+UniRef50_A6LSG6: Penicillin-binding protein, transpeptidase	2.9306419117
+UniRef50_A6LSG6: Penicillin-binding protein, transpeptidase|g__Clostridium.s__Clostridium_beijerinckii	2.9306419117
+UniRef50_G7M1F6: Multi-sensor signal transduction histidine kinase	2.9303302924
+UniRef50_G7M1F6: Multi-sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	2.9303302924
+UniRef50_W4KSI3: PcsB protein	2.9301393642
+UniRef50_W4KSI3: PcsB protein|g__Streptococcus.s__Streptococcus_agalactiae	2.9301393642
+UniRef50_Q8DX40: Transcriptional regulator, Cro/CI family	2.9292935510
+UniRef50_Q8DX40: Transcriptional regulator, Cro/CI family|g__Streptococcus.s__Streptococcus_agalactiae	2.9292935510
+UniRef50_O83349: Serine hydroxymethyltransferase	2.9291519648
+UniRef50_O83349: Serine hydroxymethyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	2.9004637259
+UniRef50_O83349: Serine hydroxymethyltransferase|unclassified	0.0286882389
+UniRef50_P0AEK2: 3-oxoacyl-[acyl-carrier-protein] reductase FabG	2.9281350990
+UniRef50_P0AEK2: 3-oxoacyl-[acyl-carrier-protein] reductase FabG|g__Escherichia.s__Escherichia_coli	2.8490028490
+UniRef50_P0AEK2: 3-oxoacyl-[acyl-carrier-protein] reductase FabG|unclassified	0.0791322500
+UniRef50_D7I453: Stringent starvation protein A	2.9280228044
+UniRef50_D7I453: Stringent starvation protein A|unclassified	2.9280228044
+UniRef50_G8N5W7: Inner-membrane translocator	2.9278523490
+UniRef50_G8N5W7: Inner-membrane translocator|g__Deinococcus.s__Deinococcus_radiodurans	2.9278523490
+UniRef50_A0A023RYQ0	2.9277946013
+UniRef50_A0A023RYQ0|g__Acinetobacter.s__Acinetobacter_baumannii	2.9277946013
+UniRef50_A3QBC5: (Acyl-carrier-protein) S-malonyltransferase	2.9272393150
+UniRef50_A3QBC5: (Acyl-carrier-protein) S-malonyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.9272393150
+UniRef50_A4WQF1: Homocysteine S-methyltransferase	2.9267564802
+UniRef50_A4WQF1: Homocysteine S-methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.9267564802
+UniRef50_L1KFP0	2.9264578872
+UniRef50_L1KFP0|unclassified	2.9264578872
+UniRef50_V0YY60	2.9263115809
+UniRef50_V0YY60|unclassified	2.9263115809
+UniRef50_X5E9L1: Sensor/response regulator hybrid	2.9261758308
+UniRef50_X5E9L1: Sensor/response regulator hybrid|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9261758308
+UniRef50_Q3JB01	2.9261616962
+UniRef50_Q3JB01|unclassified	2.9261616962
+UniRef50_UPI000474435D: Phyllosphere-induced regulator PhyR	2.9261171474
+UniRef50_UPI000474435D: Phyllosphere-induced regulator PhyR|unclassified	2.9261171474
+UniRef50_A5HY11: Spore coat protein	2.9260714003
+UniRef50_A5HY11: Spore coat protein|g__Clostridium.s__Clostridium_beijerinckii	2.9260714003
+UniRef50_M9S4J7	2.9249355527
+UniRef50_M9S4J7|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0428813982
+UniRef50_M9S4J7|unclassified	0.8820541545
+UniRef50_S5CP44: Kef-type K+ transport systems, predicted NAD-binding component	2.9246664497
+UniRef50_S5CP44: Kef-type K+ transport systems, predicted NAD-binding component|g__Acinetobacter.s__Acinetobacter_baumannii	2.9246664497
+UniRef50_V6USS0: Leucyl-tRNA synthetase (Fragment)	2.9244706402
+UniRef50_V6USS0: Leucyl-tRNA synthetase (Fragment)|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9244706402
+UniRef50_B0VLI0	2.9239766082
+UniRef50_B0VLI0|g__Acinetobacter.s__Acinetobacter_baumannii	2.9239766082
+UniRef50_C2V3W1: Flavodoxin	2.9239766082
+UniRef50_C2V3W1: Flavodoxin|g__Clostridium.s__Clostridium_beijerinckii	2.9239766082
+UniRef50_D5TJE8	2.9239766082
+UniRef50_D5TJE8|unclassified	2.9239766082
+UniRef50_P0AD22	2.9239766082
+UniRef50_P0AD22|g__Escherichia.s__Escherichia_coli	2.9239766082
+UniRef50_Q9RV93	2.9239766082
+UniRef50_Q9RV93|g__Deinococcus.s__Deinococcus_radiodurans	2.9239766082
+UniRef50_Q9RWK1	2.9239766082
+UniRef50_Q9RWK1|g__Deinococcus.s__Deinococcus_radiodurans	2.9239766082
+UniRef50_R4K612: EamA-like transporter family	2.9239766082
+UniRef50_R4K612: EamA-like transporter family|g__Clostridium.s__Clostridium_beijerinckii	2.9239766082
+UniRef50_R5WJ16: Phenylacetate-CoA oxygenase/reductase PaaK subunit	2.9239766082
+UniRef50_R5WJ16: Phenylacetate-CoA oxygenase/reductase PaaK subunit|g__Escherichia.s__Escherichia_coli	2.9239766082
+UniRef50_UPI00037794A5: hypothetical protein	2.9239766082
+UniRef50_UPI00037794A5: hypothetical protein|unclassified	2.9239766082
+UniRef50_W0H1T2	2.9239766082
+UniRef50_W0H1T2|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9239766082
+UniRef50_U7IPA8	2.9237334106
+UniRef50_U7IPA8|g__Propionibacterium.s__Propionibacterium_acnes	2.2675736961
+UniRef50_U7IPA8|unclassified	0.6561597145
+UniRef50_Q6FEG1: Kinase sensor component of a two component signal transduction system	2.9235951024
+UniRef50_Q6FEG1: Kinase sensor component of a two component signal transduction system|g__Acinetobacter.s__Acinetobacter_baumannii	2.9235951024
+UniRef50_A4Y0B0	2.9234252554
+UniRef50_A4Y0B0|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6296711902
+UniRef50_A4Y0B0|unclassified	0.2937540652
+UniRef50_Q0AQH3: Ribosomal RNA large subunit methyltransferase E	2.9226896320
+UniRef50_Q0AQH3: Ribosomal RNA large subunit methyltransferase E|unclassified	2.9226896320
+UniRef50_V4J514	2.9226519354
+UniRef50_V4J514|unclassified	2.9226519354
+UniRef50_UPI00047A5C79: hypothetical protein	2.9218525062
+UniRef50_UPI00047A5C79: hypothetical protein|unclassified	2.9218525062
+UniRef50_Q2J728: Translation initiation factor IF-2	2.9212649685
+UniRef50_Q2J728: Translation initiation factor IF-2|g__Propionibacterium.s__Propionibacterium_acnes	2.9212649685
+UniRef50_A4WS74	2.9205597416
+UniRef50_A4WS74|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.9205597416
+UniRef50_A6LYB4	2.9203101798
+UniRef50_A6LYB4|g__Clostridium.s__Clostridium_beijerinckii	2.9203101798
+UniRef50_D5ALB3	2.9201175597
+UniRef50_D5ALB3|unclassified	2.9201175597
+UniRef50_M4WY87	2.9199783322
+UniRef50_M4WY87|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8405090139
+UniRef50_M4WY87|unclassified	0.0794693183
+UniRef50_W1XM67	2.9190016393
+UniRef50_W1XM67|unclassified	2.9190016393
+UniRef50_F9YXY3: Phosphate-binding protein PstS	2.9187180599
+UniRef50_F9YXY3: Phosphate-binding protein PstS|g__Propionibacterium.s__Propionibacterium_acnes	2.9187180599
+UniRef50_F7ZDR3: Epoxyqueuosine reductase	2.9179157871
+UniRef50_F7ZDR3: Epoxyqueuosine reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8362079859
+UniRef50_F7ZDR3: Epoxyqueuosine reductase|unclassified	0.0817078012
+UniRef50_W7W7X2	2.9175923798
+UniRef50_W7W7X2|unclassified	2.9175923798
+UniRef50_Q9RT21: Trigger factor	2.9172246191
+UniRef50_Q9RT21: Trigger factor|g__Deinococcus.s__Deinococcus_radiodurans	2.9172246191
+UniRef50_UPI0004674193: hypothetical protein	2.9170052483
+UniRef50_UPI0004674193: hypothetical protein|unclassified	2.9170052483
+UniRef50_R4RK93	2.9161368689
+UniRef50_R4RK93|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9161368689
+UniRef50_A6UZC7	2.9154518950
+UniRef50_A6UZC7|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9154518950
+UniRef50_M4RDX0: Lipopolysaccharide core biosynthesis glycosyl transferase LpsC	2.9154518950
+UniRef50_M4RDX0: Lipopolysaccharide core biosynthesis glycosyl transferase LpsC|g__Acinetobacter.s__Acinetobacter_baumannii	2.9154518950
+UniRef50_M9VF55	2.9154518950
+UniRef50_M9VF55|g__Propionibacterium.s__Propionibacterium_acnes	2.9154518950
+UniRef50_M9VQH6: MarR family transcriptional regulator	2.9154518950
+UniRef50_M9VQH6: MarR family transcriptional regulator|g__Propionibacterium.s__Propionibacterium_acnes	2.9154518950
+UniRef50_Q8PQ32: Iron-sulfur cluster insertion protein ErpA	2.9154518950
+UniRef50_Q8PQ32: Iron-sulfur cluster insertion protein ErpA|g__Escherichia.s__Escherichia_coli	2.9154518950
+UniRef50_U5MZT7	2.9154518950
+UniRef50_U5MZT7|g__Clostridium.s__Clostridium_beijerinckii	2.9154518950
+UniRef50_W0YTN7: Mosc domain-containing protein	2.9154518950
+UniRef50_W0YTN7: Mosc domain-containing protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9154518950
+UniRef50_W0Z234	2.9154518950
+UniRef50_W0Z234|unclassified	2.9154518950
+UniRef50_W7WKV2	2.9149847350
+UniRef50_W7WKV2|unclassified	2.9149847350
+UniRef50_UPI000364FC3A: hypothetical protein	2.9144593792
+UniRef50_UPI000364FC3A: hypothetical protein|unclassified	2.9144593792
+UniRef50_W2UWD6	2.9139480292
+UniRef50_W2UWD6|unclassified	2.9139480292
+UniRef50_C5ZYT0: Flagellar biosynthetic protein fliR	2.9132931393
+UniRef50_C5ZYT0: Flagellar biosynthetic protein fliR|g__Helicobacter.s__Helicobacter_pylori	2.9132931393
+UniRef50_A3PJR1: Cobalamin biosynthesis protein CobW	2.9128940706
+UniRef50_A3PJR1: Cobalamin biosynthesis protein CobW|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.9128940706
+UniRef50_V5LMT9	2.9123457879
+UniRef50_V5LMT9|unclassified	2.9123457879
+UniRef50_E1T4H0: RND efflux system, outer membrane lipoprotein, NodT family	2.9112639801
+UniRef50_E1T4H0: RND efflux system, outer membrane lipoprotein, NodT family|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9112639801
+UniRef50_A5I0L6: Cyclic nucleotide-binding domain protein	2.9112081514
+UniRef50_A5I0L6: Cyclic nucleotide-binding domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.9112081514
+UniRef50_P0A4V1: N-acylneuraminate cytidylyltransferase	2.9106509762
+UniRef50_P0A4V1: N-acylneuraminate cytidylyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	2.8186558886
+UniRef50_P0A4V1: N-acylneuraminate cytidylyltransferase|unclassified	0.0919950875
+UniRef50_A6LY61: AAA ATPase	2.9106203996
+UniRef50_A6LY61: AAA ATPase|g__Clostridium.s__Clostridium_beijerinckii	2.9106203996
+UniRef50_H4K0X6: Tat (Twin-arginine translocation) pathway signal sequence domain protein	2.9106012336
+UniRef50_H4K0X6: Tat (Twin-arginine translocation) pathway signal sequence domain protein|unclassified	2.9106012336
+UniRef50_B0V6C9: Extracellular serine proteinase	2.9105768262
+UniRef50_B0V6C9: Extracellular serine proteinase|g__Acinetobacter.s__Acinetobacter_baumannii	2.9105768262
+UniRef50_I5ATZ1: Glycerate kinase	2.9105703448
+UniRef50_I5ATZ1: Glycerate kinase|g__Streptococcus.s__Streptococcus_agalactiae	2.9105703448
+UniRef50_Q6YPY6: Lysine--tRNA ligase	2.9101680427
+UniRef50_Q6YPY6: Lysine--tRNA ligase|g__Streptococcus.s__Streptococcus_agalactiae	2.8806168970
+UniRef50_Q6YPY6: Lysine--tRNA ligase|unclassified	0.0295511457
+UniRef50_A6LSY8: Glutamate-1-semialdehyde 2,1-aminomutase	2.9094343849
+UniRef50_A6LSY8: Glutamate-1-semialdehyde 2,1-aminomutase|g__Clostridium.s__Clostridium_beijerinckii	2.8783148879
+UniRef50_A6LSY8: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0311194970
+UniRef50_UPI00036A682A: hypothetical protein, partial	2.9077867357
+UniRef50_UPI00036A682A: hypothetical protein, partial|unclassified	2.9077867357
+UniRef50_W0Z1I7	2.9076544981
+UniRef50_W0Z1I7|unclassified	2.9076544981
+UniRef50_M1MIH5: Methionine--tRNA ligase MetG	2.9075739500
+UniRef50_M1MIH5: Methionine--tRNA ligase MetG|g__Clostridium.s__Clostridium_beijerinckii	2.9075739500
+UniRef50_K7S0W1: Short chain dehydrogenase	2.9069767442
+UniRef50_K7S0W1: Short chain dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	2.9069767442
+UniRef50_M9SCU9	2.9069767442
+UniRef50_M9SCU9|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9069767442
+UniRef50_P0ADI8	2.9069767442
+UniRef50_P0ADI8|g__Escherichia.s__Escherichia_coli	2.9069767442
+UniRef50_Q2NEP1: Translation initiation factor 1A	2.9069767442
+UniRef50_Q2NEP1: Translation initiation factor 1A|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.9069767442
+UniRef50_V4V1N3	2.9069767442
+UniRef50_V4V1N3|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9069767442
+UniRef50_Z2D9V0: AraC family transcriptional regulator	2.9069767442
+UniRef50_Z2D9V0: AraC family transcriptional regulator|unclassified	2.9069767442
+UniRef50_Q3SNR2	2.9067975935
+UniRef50_Q3SNR2|unclassified	2.9067975935
+UniRef50_B8ANI5	2.9054698385
+UniRef50_B8ANI5|unclassified	2.9054698385
+UniRef50_I6EPJ5	2.9053093895
+UniRef50_I6EPJ5|unclassified	2.9053093895
+UniRef50_UPI0003B5BFE2: glycerophosphoryl diester phosphodiesterase	2.9048794380
+UniRef50_UPI0003B5BFE2: glycerophosphoryl diester phosphodiesterase|unclassified	2.9048794380
+UniRef50_A5VY78: Membrane protein-like protein	2.9048671820
+UniRef50_A5VY78: Membrane protein-like protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.9048671820
+UniRef50_D3HZA9	2.9039696043
+UniRef50_D3HZA9|unclassified	2.9039696043
+UniRef50_Q609Q1: Sulfate/thiosulfate import ATP-binding protein CysA	2.9014531748
+UniRef50_Q609Q1: Sulfate/thiosulfate import ATP-binding protein CysA|unclassified	2.9014531748
+UniRef50_R9WF85: Oxidoreductase	2.9006998486
+UniRef50_R9WF85: Oxidoreductase|g__Streptococcus.s__Streptococcus_agalactiae	2.9006998486
+UniRef50_K9ZXB7: CBS domain-containing protein	2.9004672467
+UniRef50_K9ZXB7: CBS domain-containing protein|g__Deinococcus.s__Deinococcus_radiodurans	2.9004672467
+UniRef50_W4KYJ2: Transposase IS861	2.8999932903
+UniRef50_W4KYJ2: Transposase IS861|unclassified	2.8999932903
+UniRef50_P71103: Phosphate acetyltransferase	2.8987163318
+UniRef50_P71103: Phosphate acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	2.8123973117
+UniRef50_P71103: Phosphate acetyltransferase|unclassified	0.0863190201
+UniRef50_A5UNR9	2.8985507246
+UniRef50_A5UNR9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.8985507246
+UniRef50_B7V2X6: Fucose-binding lectin PA-IIL	2.8985507246
+UniRef50_B7V2X6: Fucose-binding lectin PA-IIL|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8985507246
+UniRef50_B8D9T1: 50S ribosomal protein L18	2.8985507246
+UniRef50_B8D9T1: 50S ribosomal protein L18|g__Escherichia.s__Escherichia_coli	2.8985507246
+UniRef50_H3CIZ8	2.8985507246
+UniRef50_H3CIZ8|unclassified	2.8985507246
+UniRef50_J7R2A2	2.8985507246
+UniRef50_J7R2A2|g__Escherichia.s__Escherichia_coli	2.8985507246
+UniRef50_Q3V7G7: Alanine racemase	2.8985507246
+UniRef50_Q3V7G7: Alanine racemase|g__Acinetobacter.s__Acinetobacter_baumannii	2.8985507246
+UniRef50_Q6A6F2: Ubiquinone/menaquinone biosynthesis methyltransferase UbiE	2.8985507246
+UniRef50_Q6A6F2: Ubiquinone/menaquinone biosynthesis methyltransferase UbiE|g__Propionibacterium.s__Propionibacterium_acnes	2.8985507246
+UniRef50_W0WCB8	2.8985507246
+UniRef50_W0WCB8|unclassified	2.8985507246
+UniRef50_I1EYN0	2.8977048974
+UniRef50_I1EYN0|unclassified	2.8977048974
+UniRef50_A4WW42: Inner-membrane translocator	2.8974622500
+UniRef50_A4WW42: Inner-membrane translocator|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8974622500
+UniRef50_U5MTY5: Alanine racemase	2.8973409376
+UniRef50_U5MTY5: Alanine racemase|g__Clostridium.s__Clostridium_beijerinckii	2.8973409376
+UniRef50_K2J3T1	2.8973114074
+UniRef50_K2J3T1|unclassified	2.8973114074
+UniRef50_W1BZ14	2.8971920268
+UniRef50_W1BZ14|unclassified	2.8971920268
+UniRef50_I0ETN8	2.8965147014
+UniRef50_I0ETN8|g__Helicobacter.s__Helicobacter_pylori	2.8965147014
+UniRef50_F0XYW3	2.8964518465
+UniRef50_F0XYW3|unclassified	2.8964518465
+UniRef50_W0YJM1: Putative TonB-dependent receptor	2.8964259762
+UniRef50_W0YJM1: Putative TonB-dependent receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8964259762
+UniRef50_X0XNE1: Marine sediment metagenome DNA, contig: S01H1_S33698 (Fragment)	2.8957896192
+UniRef50_X0XNE1: Marine sediment metagenome DNA, contig: S01H1_S33698 (Fragment)|unclassified	2.8957896192
+UniRef50_UPI0003EB5866: hypothetical protein	2.8956914037
+UniRef50_UPI0003EB5866: hypothetical protein|unclassified	2.8956914037
+UniRef50_UPI00035E14F7: hypothetical protein	2.8953779648
+UniRef50_UPI00035E14F7: hypothetical protein|unclassified	2.8953779648
+UniRef50_UPI0003B6CE98: gas vesicle protein	2.8950252977
+UniRef50_UPI0003B6CE98: gas vesicle protein|unclassified	2.8950252977
+UniRef50_D5AU54: Ribosomal RNA small subunit methyltransferase B-2	2.8941064636
+UniRef50_D5AU54: Ribosomal RNA small subunit methyltransferase B-2|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8941064636
+UniRef50_D7FGF4: Type I restriction enzyme, R subunit	2.8940216326
+UniRef50_D7FGF4: Type I restriction enzyme, R subunit|g__Helicobacter.s__Helicobacter_pylori	2.8940216326
+UniRef50_UPI00037991D0: hypothetical protein	2.8936089113
+UniRef50_UPI00037991D0: hypothetical protein|unclassified	2.8936089113
+UniRef50_Q9RX33: B-cell receptor associated protein-related protein	2.8931935866
+UniRef50_Q9RX33: B-cell receptor associated protein-related protein|g__Deinococcus.s__Deinococcus_radiodurans	2.8931935866
+UniRef50_B9KTQ4: D-isomer specific 2-hydroxyacid dehydrogenase, NAD-binding	2.8930634435
+UniRef50_B9KTQ4: D-isomer specific 2-hydroxyacid dehydrogenase, NAD-binding|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8930634435
+UniRef50_H2JCD9	2.8929665013
+UniRef50_H2JCD9|g__Clostridium.s__Clostridium_beijerinckii	2.8929665013
+UniRef50_Q83LD5	2.8928173263
+UniRef50_Q83LD5|unclassified	2.8928173263
+UniRef50_UPI0003513E0C: PREDICTED: glutenin, high molecular weight subunit PW212-like	2.8924859474
+UniRef50_UPI0003513E0C: PREDICTED: glutenin, high molecular weight subunit PW212-like|unclassified	2.8924859474
+UniRef50_C4RCM2: Polyketide synthase (Fragment)	2.8924660344
+UniRef50_C4RCM2: Polyketide synthase (Fragment)|unclassified	2.8924660344
+UniRef50_R9D364	2.8918487981
+UniRef50_R9D364|unclassified	2.8918487981
+UniRef50_A6LZK9: Methyl-accepting chemotaxis sensory transducer	2.8917746962
+UniRef50_A6LZK9: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	2.8917746962
+UniRef50_Q9RVF4	2.8910656476
+UniRef50_Q9RVF4|g__Deinococcus.s__Deinococcus_radiodurans	2.8910656476
+UniRef50_UPI000300EAB7: hypothetical protein	2.8907199924
+UniRef50_UPI000300EAB7: hypothetical protein|unclassified	2.8907199924
+UniRef50_W8STC7	2.8906292173
+UniRef50_W8STC7|unclassified	2.8906292173
+UniRef50_A6LVZ7: Ribose-5-phosphate isomerase A	2.8904691791
+UniRef50_A6LVZ7: Ribose-5-phosphate isomerase A|g__Clostridium.s__Clostridium_beijerinckii	2.8904691791
+UniRef50_C5B8V8: UDP-2,3-diacylglucosamine hydrolase	2.8903784831
+UniRef50_C5B8V8: UDP-2,3-diacylglucosamine hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8903784831
+UniRef50_R1DFS4	2.8903592269
+UniRef50_R1DFS4|unclassified	2.8903592269
+UniRef50_B2TRK3	2.8902408675
+UniRef50_B2TRK3|g__Clostridium.s__Clostridium_beijerinckii	2.8902408675
+UniRef50_A0A024HAD1	2.8901734104
+UniRef50_A0A024HAD1|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8901734104
+UniRef50_B2TQK8: Amino acid ABC transporter, amino acid-binding/permease protein	2.8901734104
+UniRef50_B2TQK8: Amino acid ABC transporter, amino acid-binding/permease protein|g__Clostridium.s__Clostridium_beijerinckii	2.8901734104
+UniRef50_E4D6N2	2.8901734104
+UniRef50_E4D6N2|unclassified	2.8901734104
+UniRef50_I1B6E2	2.8901734104
+UniRef50_I1B6E2|g__Escherichia.s__Escherichia_coli	2.8901734104
+UniRef50_Q9I3E9	2.8901734104
+UniRef50_Q9I3E9|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8901734104
+UniRef50_X5K3G7: Chaperonin, 33 kDa	2.8901734104
+UniRef50_X5K3G7: Chaperonin, 33 kDa|g__Streptococcus.s__Streptococcus_agalactiae	2.8901734104
+UniRef50_Q6YTQ3	2.8896449048
+UniRef50_Q6YTQ3|unclassified	2.8896449048
+UniRef50_I2FD14: UDP-glucose 4-epimerase	2.8895629957
+UniRef50_I2FD14: UDP-glucose 4-epimerase|g__Helicobacter.s__Helicobacter_pylori	2.8895629957
+UniRef50_I4B854: Pirin domain protein	2.8887583235
+UniRef50_I4B854: Pirin domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.8887583235
+UniRef50_D1DJP5: Phage repressor protein	2.8887507665
+UniRef50_D1DJP5: Phage repressor protein|g__Neisseria.s__Neisseria_meningitidis	2.8887507665
+UniRef50_UPI000376439F: hypothetical protein	2.8886741115
+UniRef50_UPI000376439F: hypothetical protein|unclassified	2.8886741115
+UniRef50_Q48P72: Acyl-CoA dehydrogenase family protein	2.8884261936
+UniRef50_Q48P72: Acyl-CoA dehydrogenase family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8884261936
+UniRef50_V8EDP8	2.8882525421
+UniRef50_V8EDP8|unclassified	1.7048205894
+UniRef50_V8EDP8|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1834319527
+UniRef50_A1UG51: Spermidine/putrescine import ATP-binding protein PotA	2.8878096348
+UniRef50_A1UG51: Spermidine/putrescine import ATP-binding protein PotA|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.8814692097
+UniRef50_A1UG51: Spermidine/putrescine import ATP-binding protein PotA|unclassified	1.0063404251
+UniRef50_UPI00026C71CA: TetR family transcriptional regulator	2.8862463748
+UniRef50_UPI00026C71CA: TetR family transcriptional regulator|unclassified	2.8862463748
+UniRef50_J9RZM4	2.8860834907
+UniRef50_J9RZM4|unclassified	2.8860834907
+UniRef50_Q08T14	2.8853443181
+UniRef50_Q08T14|unclassified	2.8853443181
+UniRef50_A8AQC2	2.8852397825
+UniRef50_A8AQC2|unclassified	2.8852397825
+UniRef50_E1HHZ5	2.8852252195
+UniRef50_E1HHZ5|unclassified	2.8852252195
+UniRef50_X7EDA9	2.8849081074
+UniRef50_X7EDA9|unclassified	2.8849081074
+UniRef50_E8P9C7	2.8846170072
+UniRef50_E8P9C7|g__Acinetobacter.s__Acinetobacter_baumannii	2.8846170072
+UniRef50_P9WGZ8: Ribonuclease J	2.8842275690
+UniRef50_P9WGZ8: Ribonuclease J|g__Propionibacterium.s__Propionibacterium_acnes	2.8842275690
+UniRef50_U6AND4: Transcriptional regulator, LysR family	2.8842150571
+UniRef50_U6AND4: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8842150571
+UniRef50_A0A059ILS6	2.8836044278
+UniRef50_A0A059ILS6|unclassified	2.8836044278
+UniRef50_K2J1R8: Protein NnrU	2.8833066631
+UniRef50_K2J1R8: Protein NnrU|unclassified	2.8833066631
+UniRef50_Q9HVG0	2.8819847697
+UniRef50_Q9HVG0|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8819847697
+UniRef50_O06997	2.8819364857
+UniRef50_O06997|g__Clostridium.s__Clostridium_beijerinckii	2.8819364857
+UniRef50_A7ZJG7: Crossover junction endodeoxyribonuclease RusA	2.8818443804
+UniRef50_A7ZJG7: Crossover junction endodeoxyribonuclease RusA|g__Escherichia.s__Escherichia_coli	2.8818443804
+UniRef50_P0AB47	2.8818443804
+UniRef50_P0AB47|g__Escherichia.s__Escherichia_coli	2.8818443804
+UniRef50_Q88YG1: Uracil-DNA glycosylase	2.8818443804
+UniRef50_Q88YG1: Uracil-DNA glycosylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8818443804
+UniRef50_X9NDC6	2.8818443804
+UniRef50_X9NDC6|unclassified	2.8818443804
+UniRef50_A3X5U7	2.8816684151
+UniRef50_A3X5U7|unclassified	2.8816684151
+UniRef50_P50487: Putative purine permease CPE0397	2.8814772739
+UniRef50_P50487: Putative purine permease CPE0397|g__Clostridium.s__Clostridium_beijerinckii	2.8814772739
+UniRef50_A7MHJ0: Multidrug resistance protein MdtC	2.8809363912
+UniRef50_A7MHJ0: Multidrug resistance protein MdtC|g__Escherichia.s__Escherichia_coli	2.8809363912
+UniRef50_A7HVE6: Pyrroline-5-carboxylate reductase	2.8804747022
+UniRef50_A7HVE6: Pyrroline-5-carboxylate reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8804747022
+UniRef50_UPI0004739302: urea ABC transporter ATP-binding protein, partial	2.8800248253
+UniRef50_UPI0004739302: urea ABC transporter ATP-binding protein, partial|unclassified	2.8800248253
+UniRef50_A3V1W1	2.8800000000
+UniRef50_A3V1W1|unclassified	2.8800000000
+UniRef50_B2U2F6	2.8795576718
+UniRef50_B2U2F6|unclassified	2.8795576718
+UniRef50_M1MJ06: Diguanylate cyclase (GGDEF) domain-containing protein	2.8794954718
+UniRef50_M1MJ06: Diguanylate cyclase (GGDEF) domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	2.8794954718
+UniRef50_UPI00047BD281: hypothetical protein	2.8790302730
+UniRef50_UPI00047BD281: hypothetical protein|unclassified	2.8790302730
+UniRef50_P56344: Probable sulfate/thiosulfate import ATP-binding protein CysA	2.8788179991
+UniRef50_P56344: Probable sulfate/thiosulfate import ATP-binding protein CysA|unclassified	1.4543165746
+UniRef50_P56344: Probable sulfate/thiosulfate import ATP-binding protein CysA|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4245014245
+UniRef50_J0HAV8	2.8782347219
+UniRef50_J0HAV8|unclassified	2.8782347219
+UniRef50_E3A1Y4	2.8779661415
+UniRef50_E3A1Y4|unclassified	2.8779661415
+UniRef50_H8GJC1: UPF0125 protein Metal_1313	2.8779546531
+UniRef50_H8GJC1: UPF0125 protein Metal_1313|unclassified	2.8779546531
+UniRef50_J3MIV8	2.8776304368
+UniRef50_J3MIV8|unclassified	2.8776304368
+UniRef50_M9S778: Two-component sensor	2.8774528012
+UniRef50_M9S778: Two-component sensor|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8774528012
+UniRef50_Q3JUL3	2.8769172300
+UniRef50_Q3JUL3|unclassified	2.8769172300
+UniRef50_V4JBM7	2.8766534667
+UniRef50_V4JBM7|unclassified	2.8766534667
+UniRef50_F9PC75: Conserved domain protein	2.8764853931
+UniRef50_F9PC75: Conserved domain protein|unclassified	2.8764853931
+UniRef50_A6LRW3: Phage major capsid protein, HK97 family	2.8762084485
+UniRef50_A6LRW3: Phage major capsid protein, HK97 family|g__Clostridium.s__Clostridium_beijerinckii	2.8762084485
+UniRef50_W1TYY5	2.8746554170
+UniRef50_W1TYY5|unclassified	2.8746554170
+UniRef50_F0Y8S9	2.8746542552
+UniRef50_F0Y8S9|unclassified	2.8746542552
+UniRef50_A6V436: FOG: TPR repeat-containing protein	2.8737849904
+UniRef50_A6V436: FOG: TPR repeat-containing protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7263212977
+UniRef50_A6V436: FOG: TPR repeat-containing protein|unclassified	0.1474636926
+UniRef50_A2SLW6	2.8735632184
+UniRef50_A2SLW6|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8735632184
+UniRef50_A6LV09: Bacterocin transport accessory protein	2.8735632184
+UniRef50_A6LV09: Bacterocin transport accessory protein|g__Clostridium.s__Clostridium_beijerinckii	2.8735632184
+UniRef50_C6SQ52	2.8735632184
+UniRef50_C6SQ52|g__Streptococcus.s__Streptococcus_mutans	2.8735632184
+UniRef50_D4HCV7: ABC transporter, ATP-binding protein	2.8735632184
+UniRef50_D4HCV7: ABC transporter, ATP-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	2.8735632184
+UniRef50_I7A5B6	2.8735632184
+UniRef50_I7A5B6|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8735632184
+UniRef50_O34947	2.8735632184
+UniRef50_O34947|g__Clostridium.s__Clostridium_beijerinckii	2.8735632184
+UniRef50_UPI0003AD9966: PREDICTED: zyxin-like	2.8735632184
+UniRef50_UPI0003AD9966: PREDICTED: zyxin-like|unclassified	2.8735632184
+UniRef50_W1F0X0: DNA repair protein RadC	2.8735632184
+UniRef50_W1F0X0: DNA repair protein RadC|g__Escherichia.s__Escherichia_coli	2.8735632184
+UniRef50_N1NLW0	2.8735306668
+UniRef50_N1NLW0|unclassified	2.8735306668
+UniRef50_UPI0004636D1A: hypothetical protein	2.8734342307
+UniRef50_UPI0004636D1A: hypothetical protein|unclassified	2.8734342307
+UniRef50_J2E9X6	2.8721717096
+UniRef50_J2E9X6|unclassified	2.8721717096
+UniRef50_F0YQI4	2.8717552140
+UniRef50_F0YQI4|unclassified	2.8717552140
+UniRef50_UPI00034F6D79: PREDICTED: leucine-rich repeat-containing protein 37B-like	2.8708133971
+UniRef50_UPI00034F6D79: PREDICTED: leucine-rich repeat-containing protein 37B-like|unclassified	2.8708133971
+UniRef50_H8GZE1	2.8706447491
+UniRef50_H8GZE1|unclassified	2.8706447491
+UniRef50_S4Y6P1	2.8705969349
+UniRef50_S4Y6P1|unclassified	2.8705969349
+UniRef50_W4U7U7: YidE/YbjL duplication	2.8705654320
+UniRef50_W4U7U7: YidE/YbjL duplication|unclassified	2.8705654320
+UniRef50_I7EYE9	2.8701349713
+UniRef50_I7EYE9|unclassified	2.8701349713
+UniRef50_UPI000375E2EF: hypothetical protein	2.8698103561
+UniRef50_UPI000375E2EF: hypothetical protein|unclassified	2.8698103561
+UniRef50_A8AL69	2.8692502156
+UniRef50_A8AL69|unclassified	2.8692502156
+UniRef50_R5J6V4	2.8692108304
+UniRef50_R5J6V4|g__Clostridium.s__Clostridium_beijerinckii	2.8692108304
+UniRef50_M9VNY9: Trehalose 6-phosphate phosphatase	2.8685897436
+UniRef50_M9VNY9: Trehalose 6-phosphate phosphatase|g__Propionibacterium.s__Propionibacterium_acnes	2.8685897436
+UniRef50_UPI000378A2EB: MULTISPECIES: hypothetical protein	2.8679391319
+UniRef50_UPI000378A2EB: MULTISPECIES: hypothetical protein|unclassified	2.8679391319
+UniRef50_Q28LX6	2.8676804326
+UniRef50_Q28LX6|unclassified	2.8676804326
+UniRef50_A4VR08: PAP2 family protein/DedA family protein	2.8672675343
+UniRef50_A4VR08: PAP2 family protein/DedA family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8672675343
+UniRef50_N2SNS0	2.8670131063
+UniRef50_N2SNS0|unclassified	2.8670131063
+UniRef50_U6ZV82	2.8669120523
+UniRef50_U6ZV82|unclassified	2.8669120523
+UniRef50_M1MYZ3: Methyl-accepting chemotaxis protein TlpC	2.8667679340
+UniRef50_M1MYZ3: Methyl-accepting chemotaxis protein TlpC|g__Clostridium.s__Clostridium_beijerinckii	2.8667679340
+UniRef50_Q2JEW7: Peptide chain release factor 2	2.8658220856
+UniRef50_Q2JEW7: Peptide chain release factor 2|g__Propionibacterium.s__Propionibacterium_acnes	2.8658220856
+UniRef50_P0AB53: Protein YchN	2.8653295129
+UniRef50_P0AB53: Protein YchN|g__Escherichia.s__Escherichia_coli	2.8653295129
+UniRef50_Q3J2R1	2.8653295129
+UniRef50_Q3J2R1|unclassified	2.8653295129
+UniRef50_Q6H441: Os09g0279800 protein	2.8653295129
+UniRef50_Q6H441: Os09g0279800 protein|unclassified	2.8653295129
+UniRef50_Q7MXJ4: Isoprenyl transferase	2.8653295129
+UniRef50_Q7MXJ4: Isoprenyl transferase|g__Clostridium.s__Clostridium_beijerinckii	2.8653295129
+UniRef50_W6RVE8	2.8653295129
+UniRef50_W6RVE8|g__Clostridium.s__Clostridium_beijerinckii	2.8653295129
+UniRef50_Q3K022: GTPase Era	2.8651957850
+UniRef50_Q3K022: GTPase Era|g__Streptococcus.s__Streptococcus_agalactiae	2.8651957850
+UniRef50_W7VQI3: Basic proline-rich protein	2.8650858837
+UniRef50_W7VQI3: Basic proline-rich protein|unclassified	2.8650858837
+UniRef50_B0VUD5: High frequency lysogenization protein HflD homolog	2.8649950441
+UniRef50_B0VUD5: High frequency lysogenization protein HflD homolog|g__Acinetobacter.s__Acinetobacter_baumannii	2.8649950441
+UniRef50_G8VB53: Amino acid permease	2.8649788220
+UniRef50_G8VB53: Amino acid permease|g__Propionibacterium.s__Propionibacterium_acnes	2.8649788220
+UniRef50_G8LP59: YdiK	2.8646983470
+UniRef50_G8LP59: YdiK|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8646983470
+UniRef50_D4HCC8: ABC transporter, permease protein	2.8644990025
+UniRef50_D4HCC8: ABC transporter, permease protein|g__Propionibacterium.s__Propionibacterium_acnes	2.8644990025
+UniRef50_B8I813: Energy-coupling factor transporter transmembrane protein EcfT	2.8641104769
+UniRef50_B8I813: Energy-coupling factor transporter transmembrane protein EcfT|g__Clostridium.s__Clostridium_beijerinckii	2.8641104769
+UniRef50_A0A059IR82: Chromosome partitioning protein ParA (Fragment)	2.8638916439
+UniRef50_A0A059IR82: Chromosome partitioning protein ParA (Fragment)|unclassified	2.8638916439
+UniRef50_U5MMX2: Type IV pilus assembly protein PilO	2.8636607694
+UniRef50_U5MMX2: Type IV pilus assembly protein PilO|g__Clostridium.s__Clostridium_beijerinckii	2.8636607694
+UniRef50_A6LSE2	2.8631888031
+UniRef50_A6LSE2|g__Clostridium.s__Clostridium_beijerinckii	2.8631888031
+UniRef50_M9R109: Octaprenyl-diphosphate synthase IspB	2.8628604100
+UniRef50_M9R109: Octaprenyl-diphosphate synthase IspB|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8628604100
+UniRef50_M5ABV3: Beta-glucuronidase	2.8621958617
+UniRef50_M5ABV3: Beta-glucuronidase|g__Streptococcus.s__Streptococcus_agalactiae	2.8621958617
+UniRef50_J9D1K7	2.8621653049
+UniRef50_J9D1K7|unclassified	2.8621653049
+UniRef50_B6B1M9	2.8620861761
+UniRef50_B6B1M9|unclassified	2.8620861761
+UniRef50_G7U900: Iron chelate uptake ABC transporter, FeCT family, permease protein	2.8617101178
+UniRef50_G7U900: Iron chelate uptake ABC transporter, FeCT family, permease protein|g__Propionibacterium.s__Propionibacterium_acnes	2.8617101178
+UniRef50_R0ESP5: Replication initiation protein RepC (Fragment)	2.8615533528
+UniRef50_R0ESP5: Replication initiation protein RepC (Fragment)|unclassified	2.8615533528
+UniRef50_UPI00020D97AB: excinuclease ABC subunit B	2.8611894565
+UniRef50_UPI00020D97AB: excinuclease ABC subunit B|unclassified	2.8611894565
+UniRef50_E8NJT6	2.8609817829
+UniRef50_E8NJT6|unclassified	2.8609817829
+UniRef50_R6SI27: MATE family multi antimicrobial extrusion protein	2.8609371986
+UniRef50_R6SI27: MATE family multi antimicrobial extrusion protein|g__Clostridium.s__Clostridium_beijerinckii	2.8609371986
+UniRef50_UPI0003B6CE6C: gas vesicle protein GvpS	2.8603437454
+UniRef50_UPI0003B6CE6C: gas vesicle protein GvpS|unclassified	2.8603437454
+UniRef50_Q7MN70: Phosphoribosylformylglycinamidine synthase	2.8602547023
+UniRef50_Q7MN70: Phosphoribosylformylglycinamidine synthase|g__Acinetobacter.s__Acinetobacter_baumannii	1.7083749348
+UniRef50_Q7MN70: Phosphoribosylformylglycinamidine synthase|g__Escherichia.s__Escherichia_coli	1.0616326928
+UniRef50_Q7MN70: Phosphoribosylformylglycinamidine synthase|unclassified	0.0902470747
+UniRef50_B0VCR0	2.8593665962
+UniRef50_B0VCR0|g__Acinetobacter.s__Acinetobacter_baumannii	2.8593665962
+UniRef50_F2J364: ABC-type cobalt transport system permease component CbiQ and related transporter-like protein	2.8591982800
+UniRef50_F2J364: ABC-type cobalt transport system permease component CbiQ and related transporter-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8591982800
+UniRef50_UPI00035EA9B7: hypothetical protein	2.8588805603
+UniRef50_UPI00035EA9B7: hypothetical protein|unclassified	2.8588805603
+UniRef50_I4XWS9: MFS transporter, aromatic acid:H+ symporter family	2.8586038002
+UniRef50_I4XWS9: MFS transporter, aromatic acid:H+ symporter family|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8586038002
+UniRef50_B3T3L8	2.8584555535
+UniRef50_B3T3L8|unclassified	2.8584555535
+UniRef50_D5ANE3	2.8581544811
+UniRef50_D5ANE3|unclassified	2.8581544811
+UniRef50_UPI0003B62D20: acyltransferase	2.8580891485
+UniRef50_UPI0003B62D20: acyltransferase|unclassified	2.8580891485
+UniRef50_R5UAJ8	2.8574155601
+UniRef50_R5UAJ8|g__Clostridium.s__Clostridium_beijerinckii	2.8574155601
+UniRef50_A6LWQ1	2.8571428571
+UniRef50_A6LWQ1|unclassified	2.8571428571
+UniRef50_A6VE46	2.8571428571
+UniRef50_A6VE46|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8571428571
+UniRef50_Q62A87	2.8571428571
+UniRef50_Q62A87|unclassified	2.8571428571
+UniRef50_T7QYR2: Multiphosphoryl transfer protein	2.8571428571
+UniRef50_T7QYR2: Multiphosphoryl transfer protein|g__Escherichia.s__Escherichia_coli	2.8571428571
+UniRef50_W4MSH8	2.8571428571
+UniRef50_W4MSH8|unclassified	2.8571428571
+UniRef50_A1V623	2.8570999975
+UniRef50_A1V623|unclassified	2.8570999975
+UniRef50_K9RNI0	2.8569388924
+UniRef50_K9RNI0|unclassified	2.8569388924
+UniRef50_F7ZSI9: Serine protein kinase , prkA protein	2.8568755194
+UniRef50_F7ZSI9: Serine protein kinase , prkA protein|g__Clostridium.s__Clostridium_beijerinckii	2.8568755194
+UniRef50_D0WDC3	2.8566008813
+UniRef50_D0WDC3|unclassified	2.8566008813
+UniRef50_A6LPJ7: PpiC-type peptidyl-prolyl cis-trans isomerase	2.8562814070
+UniRef50_A6LPJ7: PpiC-type peptidyl-prolyl cis-trans isomerase|g__Clostridium.s__Clostridium_beijerinckii	2.8562814070
+UniRef50_X5K2Q9	2.8559845951
+UniRef50_X5K2Q9|g__Streptococcus.s__Streptococcus_agalactiae	2.8559845951
+UniRef50_UPI0003B3ECAB: large mechanosensitive ion channel protein MscL	2.8556768737
+UniRef50_UPI0003B3ECAB: large mechanosensitive ion channel protein MscL|unclassified	2.8556768737
+UniRef50_Q8VSZ3: AgrC (Fragment)	2.8546505250
+UniRef50_Q8VSZ3: AgrC (Fragment)|unclassified	2.8546505250
+UniRef50_H3W5C9	2.8543655661
+UniRef50_H3W5C9|unclassified	2.8543655661
+UniRef50_A6UZZ9	2.8537402118
+UniRef50_A6UZZ9|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8537402118
+UniRef50_J7QCD5	2.8535848555
+UniRef50_J7QCD5|unclassified	1.6370398434
+UniRef50_J7QCD5|g__Escherichia.s__Escherichia_coli	1.2165450122
+UniRef50_F0KI93	2.8533710140
+UniRef50_F0KI93|g__Acinetobacter.s__Acinetobacter_baumannii	2.8533710140
+UniRef50_E0RHV7: Predicted transcriptional regulator	2.8531950059
+UniRef50_E0RHV7: Predicted transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	2.8531950059
+UniRef50_N6U547	2.8531648580
+UniRef50_N6U547|unclassified	2.8531648580
+UniRef50_T0GPL5	2.8531207710
+UniRef50_T0GPL5|unclassified	2.8531207710
+UniRef50_R7N4H0: Pyridine nucleotide-disulfide oxidoreductase	2.8531126177
+UniRef50_R7N4H0: Pyridine nucleotide-disulfide oxidoreductase|g__Clostridium.s__Clostridium_beijerinckii	2.8531126177
+UniRef50_N3KAN6: Multidrug transporter MdfA domain protein	2.8524546029
+UniRef50_N3KAN6: Multidrug transporter MdfA domain protein|unclassified	2.8524546029
+UniRef50_UPI0001746B76: phosphoesterase	2.8522789516
+UniRef50_UPI0001746B76: phosphoesterase|unclassified	2.8522789516
+UniRef50_Q8DYP3: Ammonium transporter family protein	2.8522219699
+UniRef50_Q8DYP3: Ammonium transporter family protein|g__Streptococcus.s__Streptococcus_agalactiae	2.8522219699
+UniRef50_W8RSD6: LysR family transcriptional regulator	2.8515611480
+UniRef50_W8RSD6: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8515611480
+UniRef50_UPI00036AD007: hypothetical protein	2.8514719804
+UniRef50_UPI00036AD007: hypothetical protein|unclassified	2.8514719804
+UniRef50_J8V820	2.8513725703
+UniRef50_J8V820|unclassified	2.8513725703
+UniRef50_A6LXP7: Proton-translocating NADH-quinone oxidoreductase, chain L	2.8512503509
+UniRef50_A6LXP7: Proton-translocating NADH-quinone oxidoreductase, chain L|g__Clostridium.s__Clostridium_beijerinckii	2.8512503509
+UniRef50_C4J1Q1	2.8509234313
+UniRef50_C4J1Q1|unclassified	2.8509234313
+UniRef50_D0D1V0: ISSpo9, transposase	2.8509035950
+UniRef50_D0D1V0: ISSpo9, transposase|unclassified	2.8509035950
+UniRef50_R6FZX0: Helicase domain protein	2.8505718248
+UniRef50_R6FZX0: Helicase domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.8505718248
+UniRef50_H4G6P7	2.8503181581
+UniRef50_H4G6P7|unclassified	2.8503181581
+UniRef50_Q9K107: L-aspartate oxidase	2.8498578669
+UniRef50_Q9K107: L-aspartate oxidase|g__Neisseria.s__Neisseria_meningitidis	2.8164535426
+UniRef50_Q9K107: L-aspartate oxidase|unclassified	0.0334043242
+UniRef50_R5WDX8: FAD dependent oxidoreductase	2.8496697467
+UniRef50_R5WDX8: FAD dependent oxidoreductase|unclassified	2.8496697467
+UniRef50_A6LYT5	2.8490028490
+UniRef50_A6LYT5|g__Clostridium.s__Clostridium_beijerinckii	2.8490028490
+UniRef50_B9KPB5: Response regulator receiver and SARP domain protein	2.8490028490
+UniRef50_B9KPB5: Response regulator receiver and SARP domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8490028490
+UniRef50_B9KWR4	2.8490028490
+UniRef50_B9KWR4|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8490028490
+UniRef50_G0DUV4	2.8490028490
+UniRef50_G0DUV4|g__Propionibacterium.s__Propionibacterium_acnes	2.8490028490
+UniRef50_H4VHT7: Integrase core domain protein	2.8490028490
+UniRef50_H4VHT7: Integrase core domain protein|g__Escherichia.s__Escherichia_coli	2.8490028490
+UniRef50_H9UUF2: Ecotin	2.8490028490
+UniRef50_H9UUF2: Ecotin|g__Escherichia.s__Escherichia_coli	2.8490028490
+UniRef50_I6TRJ5: Arsenate reductase	2.8490028490
+UniRef50_I6TRJ5: Arsenate reductase|g__Streptococcus.s__Streptococcus_mutans	2.8490028490
+UniRef50_O76561: Protein F13C5.2	2.8490028490
+UniRef50_O76561: Protein F13C5.2|unclassified	2.8490028490
+UniRef50_P57021: Bactoprenol-linked glucose translocase	2.8490028490
+UniRef50_P57021: Bactoprenol-linked glucose translocase|g__Escherichia.s__Escherichia_coli	2.8490028490
+UniRef50_E0SZL8: Transposase-like protein, IS1381 ISSpn7	2.8488538160
+UniRef50_E0SZL8: Transposase-like protein, IS1381 ISSpn7|g__Streptococcus.s__Streptococcus_agalactiae	2.5773195876
+UniRef50_E0SZL8: Transposase-like protein, IS1381 ISSpn7|unclassified	0.2715342284
+UniRef50_A3M532	2.8481612262
+UniRef50_A3M532|g__Acinetobacter.s__Acinetobacter_baumannii	2.8481612262
+UniRef50_A6LW15: ROK family protein	2.8480215918
+UniRef50_A6LW15: ROK family protein|g__Clostridium.s__Clostridium_beijerinckii	2.8480215918
+UniRef50_Q6A7E7: Trigger factor	2.8478622022
+UniRef50_Q6A7E7: Trigger factor|g__Propionibacterium.s__Propionibacterium_acnes	2.8478622022
+UniRef50_C6DKA6: Phosphonate metabolism protein PhnP	2.8477391260
+UniRef50_C6DKA6: Phosphonate metabolism protein PhnP|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8477391260
+UniRef50_V6U6B5	2.8468169127
+UniRef50_V6U6B5|unclassified	2.8468169127
+UniRef50_F7X4C7: Delta-aminolevulinic acid dehydratase	2.8467398632
+UniRef50_F7X4C7: Delta-aminolevulinic acid dehydratase|g__Clostridium.s__Clostridium_beijerinckii	2.8467398632
+UniRef50_D3R7P0: Queuine tRNA-ribosyltransferase	2.8465898536
+UniRef50_D3R7P0: Queuine tRNA-ribosyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	2.8465898536
+UniRef50_S9JY72	2.8463377692
+UniRef50_S9JY72|g__Streptococcus.s__Streptococcus_agalactiae	2.8463377692
+UniRef50_B5YZZ5: Ethanolamine utilization cobalamin adenosyltransferase	2.8449502134
+UniRef50_B5YZZ5: Ethanolamine utilization cobalamin adenosyltransferase|g__Escherichia.s__Escherichia_coli	2.8449502134
+UniRef50_UPI0003606154: hypothetical protein	2.8448866316
+UniRef50_UPI0003606154: hypothetical protein|unclassified	2.8448866316
+UniRef50_C4TE51: Non-ribosomal peptide synthetase (Fragment)	2.8447971219
+UniRef50_C4TE51: Non-ribosomal peptide synthetase (Fragment)|unclassified	2.8447971219
+UniRef50_A8LT41: Sodium/hydrogen exchanger family	2.8445872845
+UniRef50_A8LT41: Sodium/hydrogen exchanger family|unclassified	2.8445872845
+UniRef50_UPI0003624207: hypothetical protein, partial	2.8443748993
+UniRef50_UPI0003624207: hypothetical protein, partial|unclassified	2.8443748993
+UniRef50_Q9RZB4: First mannosyl transferase	2.8442796561
+UniRef50_Q9RZB4: First mannosyl transferase|g__Deinococcus.s__Deinococcus_radiodurans	2.8442796561
+UniRef50_UPI0003B3192E: chemotaxis protein CheY	2.8442467485
+UniRef50_UPI0003B3192E: chemotaxis protein CheY|unclassified	2.8442467485
+UniRef50_W1Y2D2	2.8439485983
+UniRef50_W1Y2D2|unclassified	2.8439485983
+UniRef50_Q92S04: Probable chemoreceptor glutamine deamidase CheD	2.8435865569
+UniRef50_Q92S04: Probable chemoreceptor glutamine deamidase CheD|unclassified	2.8435865569
+UniRef50_U9LAR1: ABC transporter substrate-binding protein	2.8435374150
+UniRef50_U9LAR1: ABC transporter substrate-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8435374150
+UniRef50_A6M1A3: MotA/TolQ/ExbB proton channel	2.8423772610
+UniRef50_A6M1A3: MotA/TolQ/ExbB proton channel|g__Clostridium.s__Clostridium_beijerinckii	2.8423772610
+UniRef50_F0YFY9: Expressed protein (Fragment)	2.8418637764
+UniRef50_F0YFY9: Expressed protein (Fragment)|unclassified	2.8418637764
+UniRef50_U2YW33: CRISPR-associated protein, Cas5h family	2.8417485237
+UniRef50_U2YW33: CRISPR-associated protein, Cas5h family|unclassified	2.8417485237
+UniRef50_G7UA75: Periplasmic solute binding family protein	2.8415403446
+UniRef50_G7UA75: Periplasmic solute binding family protein|g__Propionibacterium.s__Propionibacterium_acnes	2.8415403446
+UniRef50_Q6FEE9	2.8410694842
+UniRef50_Q6FEE9|g__Acinetobacter.s__Acinetobacter_baumannii	2.8410694842
+UniRef50_UPI000317A305: hypothetical protein	2.8410540714
+UniRef50_UPI000317A305: hypothetical protein|unclassified	2.8410540714
+UniRef50_UPI0003A56F69: hypothetical protein	2.8410426827
+UniRef50_UPI0003A56F69: hypothetical protein|unclassified	2.8410426827
+UniRef50_I7DG40: Glutaredoxin-like protein	2.8409670799
+UniRef50_I7DG40: Glutaredoxin-like protein|unclassified	2.8409670799
+UniRef50_B1Y7Y2: Lipoprotein	2.8409090909
+UniRef50_B1Y7Y2: Lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8409090909
+UniRef50_H1V980	2.8409090909
+UniRef50_H1V980|unclassified	2.8409090909
+UniRef50_M8Y530: 3-deoxy-7-phosphoheptulonate synthase (Fragment)	2.8409090909
+UniRef50_M8Y530: 3-deoxy-7-phosphoheptulonate synthase (Fragment)|g__Escherichia.s__Escherichia_coli	2.8409090909
+UniRef50_N2RQ37	2.8409090909
+UniRef50_N2RQ37|g__Escherichia.s__Escherichia_coli	2.8409090909
+UniRef50_P03038: Tetracycline repressor protein class A from transposon 1721	2.8409090909
+UniRef50_P03038: Tetracycline repressor protein class A from transposon 1721|g__Acinetobacter.s__Acinetobacter_baumannii	2.8409090909
+UniRef50_Q9I5Z5	2.8409090909
+UniRef50_Q9I5Z5|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8409090909
+UniRef50_W8XR75	2.8409090909
+UniRef50_W8XR75|unclassified	2.8409090909
+UniRef50_J9YRW0	2.8408976512
+UniRef50_J9YRW0|g__Streptococcus.s__Streptococcus_agalactiae	2.8408976512
+UniRef50_Q1YHY0	2.8406153867
+UniRef50_Q1YHY0|unclassified	2.8406153867
+UniRef50_UPI0003B66E26: UTP--glucose-1-phosphate uridylyltransferase	2.8405032554
+UniRef50_UPI0003B66E26: UTP--glucose-1-phosphate uridylyltransferase|unclassified	2.8405032554
+UniRef50_S6HNF1: Carbohydrate ABC transporter-2 (CUT2) family, permease protein	2.8401310565
+UniRef50_S6HNF1: Carbohydrate ABC transporter-2 (CUT2) family, permease protein|unclassified	2.8401310565
+UniRef50_E2Y0C6	2.8400552980
+UniRef50_E2Y0C6|unclassified	2.8400552980
+UniRef50_P45867: Acyl-CoA dehydrogenase	2.8398618568
+UniRef50_P45867: Acyl-CoA dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	2.6455026455
+UniRef50_P45867: Acyl-CoA dehydrogenase|unclassified	0.1943592113
+UniRef50_A3M2F6: TraB protein	2.8397343303
+UniRef50_A3M2F6: TraB protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.8397343303
+UniRef50_A6LZ07: Abortive infection protein	2.8392246748
+UniRef50_A6LZ07: Abortive infection protein|g__Clostridium.s__Clostridium_beijerinckii	2.8392246748
+UniRef50_Q6FFH7	2.8389285815
+UniRef50_Q6FFH7|g__Acinetobacter.s__Acinetobacter_baumannii	2.8389285815
+UniRef50_G7M906: Molybdenum cofactor synthesis domain protein	2.8389019370
+UniRef50_G7M906: Molybdenum cofactor synthesis domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.8389019370
+UniRef50_D4HEQ0: Phosphofructokinase	2.8384492652
+UniRef50_D4HEQ0: Phosphofructokinase|g__Propionibacterium.s__Propionibacterium_acnes	2.8384492652
+UniRef50_F0FD43	2.8382523864
+UniRef50_F0FD43|unclassified	2.8382523864
+UniRef50_UPI00046A7522: hypothetical protein, partial	2.8378677128
+UniRef50_UPI00046A7522: hypothetical protein, partial|unclassified	2.8378677128
+UniRef50_Q1J6F0: Octanoyl-[GcvH]:protein N-octanoyltransferase	2.8377266852
+UniRef50_Q1J6F0: Octanoyl-[GcvH]:protein N-octanoyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	2.8377266852
+UniRef50_A3JD10: Choline-glycine betaine transporter	2.8368184328
+UniRef50_A3JD10: Choline-glycine betaine transporter|unclassified	2.8368184328
+UniRef50_A1KD90: Clumping factor B (Fragment)	2.8361592448
+UniRef50_A1KD90: Clumping factor B (Fragment)|g__Staphylococcus.s__Staphylococcus_epidermidis	2.2222222222
+UniRef50_A1KD90: Clumping factor B (Fragment)|unclassified	0.6139370226
+UniRef50_A0A026RF42: Diguanylate cyclase	2.8360301186
+UniRef50_A0A026RF42: Diguanylate cyclase|g__Escherichia.s__Escherichia_coli	2.8360301186
+UniRef50_UPI000362C162: hypothetical protein	2.8353326094
+UniRef50_UPI000362C162: hypothetical protein|unclassified	2.8353326094
+UniRef50_X5KFX0: Riboflavin biosynthesis protein RibD	2.8350770710
+UniRef50_X5KFX0: Riboflavin biosynthesis protein RibD|g__Streptococcus.s__Streptococcus_agalactiae	2.8350770710
+UniRef50_E1VHP1: Ribosomal RNA small subunit methyltransferase E	2.8348703112
+UniRef50_E1VHP1: Ribosomal RNA small subunit methyltransferase E|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8348703112
+UniRef50_V5T2Q4: Diguanylate cyclase	2.8347964784
+UniRef50_V5T2Q4: Diguanylate cyclase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8347964784
+UniRef50_Q8P6H9: Phage-related tail protein	2.8346407448
+UniRef50_Q8P6H9: Phage-related tail protein|unclassified	2.8346407448
+UniRef50_UPI00037A187F: DNA invertase	2.8343713035
+UniRef50_UPI00037A187F: DNA invertase|unclassified	2.8343713035
+UniRef50_B4RJU8: Tpc	2.8341381337
+UniRef50_B4RJU8: Tpc|g__Neisseria.s__Neisseria_meningitidis	2.8341381337
+UniRef50_E2X4D1	2.8337287959
+UniRef50_E2X4D1|unclassified	2.8337287959
+UniRef50_B2TRH5: Stage 0 sporulation protein J	2.8334841541
+UniRef50_B2TRH5: Stage 0 sporulation protein J|g__Clostridium.s__Clostridium_beijerinckii	2.8334841541
+UniRef50_C5XDN5	2.8331680022
+UniRef50_C5XDN5|unclassified	2.8331680022
+UniRef50_A4X0F8	2.8328611898
+UniRef50_A4X0F8|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8328611898
+UniRef50_A6M1V6: Transposase and inactivated derivatives	2.8328611898
+UniRef50_A6M1V6: Transposase and inactivated derivatives|g__Clostridium.s__Clostridium_beijerinckii	2.8328611898
+UniRef50_A6QJK0: Truncated transposase for IS1272	2.8328611898
+UniRef50_A6QJK0: Truncated transposase for IS1272|g__Staphylococcus.s__Staphylococcus_aureus	2.8328611898
+UniRef50_D8JEL1	2.8328611898
+UniRef50_D8JEL1|g__Acinetobacter.s__Acinetobacter_baumannii	2.8328611898
+UniRef50_F9Q1V5: Oxidoreductase, short chain dehydrogenase/reductase family protein	2.8328611898
+UniRef50_F9Q1V5: Oxidoreductase, short chain dehydrogenase/reductase family protein|unclassified	2.8328611898
+UniRef50_A1B4T6	2.8327991079
+UniRef50_A1B4T6|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.9342359768
+UniRef50_A1B4T6|unclassified	0.8985631311
+UniRef50_V9X5Q7	2.8317758657
+UniRef50_V9X5Q7|unclassified	2.8317758657
+UniRef50_B9KUJ5	2.8316044344
+UniRef50_B9KUJ5|unclassified	2.8316044344
+UniRef50_E2ZRH0	2.8312013867
+UniRef50_E2ZRH0|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8312013867
+UniRef50_D6M2H8: Fatty oxidation complex, alpha subunit (Fragment)	2.8311219858
+UniRef50_D6M2H8: Fatty oxidation complex, alpha subunit (Fragment)|unclassified	2.8311219858
+UniRef50_G1LUW2	2.8309220323
+UniRef50_G1LUW2|unclassified	2.8309220323
+UniRef50_V5CX68: Dipeptide ABC superfamily ATP binding cassette transporter, binding protein	2.8300141870
+UniRef50_V5CX68: Dipeptide ABC superfamily ATP binding cassette transporter, binding protein|unclassified	2.8300141870
+UniRef50_J7MBF6	2.8298328524
+UniRef50_J7MBF6|g__Streptococcus.s__Streptococcus_agalactiae	2.8298328524
+UniRef50_F4NHW2	2.8293954469
+UniRef50_F4NHW2|unclassified	2.8293954469
+UniRef50_M9V9W9	2.8288543140
+UniRef50_M9V9W9|g__Propionibacterium.s__Propionibacterium_acnes	2.8288543140
+UniRef50_H8WC65	2.8288441498
+UniRef50_H8WC65|unclassified	2.8288441498
+UniRef50_A6LV05: Exonuclease, RNase T and DNA polymerase III	2.8284706498
+UniRef50_A6LV05: Exonuclease, RNase T and DNA polymerase III|g__Clostridium.s__Clostridium_beijerinckii	2.8284706498
+UniRef50_Y7D100	2.8279676812
+UniRef50_Y7D100|unclassified	2.8279676812
+UniRef50_Q28RW2	2.8276842035
+UniRef50_Q28RW2|unclassified	2.8276842035
+UniRef50_E4DG75: Helicase C-terminal domain protein	2.8274482924
+UniRef50_E4DG75: Helicase C-terminal domain protein|g__Propionibacterium.s__Propionibacterium_acnes	2.8274482924
+UniRef50_H8H074: Phosphoglucomutase/phosphomannomutase alpha/beta/alpha domain I	2.8268394522
+UniRef50_H8H074: Phosphoglucomutase/phosphomannomutase alpha/beta/alpha domain I|g__Deinococcus.s__Deinococcus_radiodurans	2.8268394522
+UniRef50_W1F9V4	2.8266187698
+UniRef50_W1F9V4|unclassified	2.8266187698
+UniRef50_G7U623: Major facilitator superfamily permease	2.8262352052
+UniRef50_G7U623: Major facilitator superfamily permease|g__Propionibacterium.s__Propionibacterium_acnes	2.8262352052
+UniRef50_N8LBF3	2.8261120913
+UniRef50_N8LBF3|unclassified	2.8261120913
+UniRef50_UPI00047C083D: serine kinase	2.8251301851
+UniRef50_UPI00047C083D: serine kinase|unclassified	2.8251301851
+UniRef50_B2TMC8	2.8248587571
+UniRef50_B2TMC8|g__Clostridium.s__Clostridium_beijerinckii	2.8248587571
+UniRef50_B5F3L0: Protein YebF	2.8248587571
+UniRef50_B5F3L0: Protein YebF|g__Escherichia.s__Escherichia_coli	2.8248587571
+UniRef50_B9KNU0: Helicase	2.8248587571
+UniRef50_B9KNU0: Helicase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8248587571
+UniRef50_F6G6F1: Arsenate reductase with thioredoxin-like domain	2.8248587571
+UniRef50_F6G6F1: Arsenate reductase with thioredoxin-like domain|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8248587571
+UniRef50_I2RF96	2.8248587571
+UniRef50_I2RF96|unclassified	2.8248587571
+UniRef50_L4K168: Antigen 43	2.8248587571
+UniRef50_L4K168: Antigen 43|g__Escherichia.s__Escherichia_coli	2.8248587571
+UniRef50_Q9RVR0	2.8248587571
+UniRef50_Q9RVR0|g__Deinococcus.s__Deinococcus_radiodurans	2.8248587571
+UniRef50_W1YRD4	2.8236656029
+UniRef50_W1YRD4|unclassified	2.8236656029
+UniRef50_UPI000370C63A: hypothetical protein	2.8229813792
+UniRef50_UPI000370C63A: hypothetical protein|unclassified	2.8229813792
+UniRef50_UPI00036C8218: hypothetical protein	2.8226590173
+UniRef50_UPI00036C8218: hypothetical protein|unclassified	2.8226590173
+UniRef50_P32929: Cystathionine gamma-lyase	2.8218719727
+UniRef50_P32929: Cystathionine gamma-lyase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5429762995
+UniRef50_P32929: Cystathionine gamma-lyase|unclassified	0.2788956732
+UniRef50_M1MPB4: ABC-2 family transporter protein	2.8214357487
+UniRef50_M1MPB4: ABC-2 family transporter protein|g__Clostridium.s__Clostridium_beijerinckii	2.8214357487
+UniRef50_X5K073: Sugar-binding transcriptional regulator, LacI family	2.8214342975
+UniRef50_X5K073: Sugar-binding transcriptional regulator, LacI family|g__Streptococcus.s__Streptococcus_agalactiae	2.8214342975
+UniRef50_A3M531	2.8211910843
+UniRef50_A3M531|g__Acinetobacter.s__Acinetobacter_baumannii	2.8211910843
+UniRef50_K0HTN3	2.8210525556
+UniRef50_K0HTN3|g__Propionibacterium.s__Propionibacterium_acnes	2.8210525556
+UniRef50_G7U8F4	2.8210147695
+UniRef50_G7U8F4|g__Propionibacterium.s__Propionibacterium_acnes	2.8210147695
+UniRef50_A6LSN4: Ribonuclease HII	2.8208744711
+UniRef50_A6LSN4: Ribonuclease HII|g__Clostridium.s__Clostridium_beijerinckii	2.8208744711
+UniRef50_UPI0003B64A52: hypothetical protein	2.8204770044
+UniRef50_UPI0003B64A52: hypothetical protein|unclassified	2.8204770044
+UniRef50_Q1GFL7: Cytochrome P450	2.8204337848
+UniRef50_Q1GFL7: Cytochrome P450|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8204337848
+UniRef50_Q9RTU8	2.8203059109
+UniRef50_Q9RTU8|g__Deinococcus.s__Deinococcus_radiodurans	2.1127328969
+UniRef50_Q9RTU8|unclassified	0.7075730140
+UniRef50_M9VDE6	2.8192564519
+UniRef50_M9VDE6|g__Propionibacterium.s__Propionibacterium_acnes	2.8192564519
+UniRef50_C8S1S6: Plasmid partitioning protein RepA	2.8192294025
+UniRef50_C8S1S6: Plasmid partitioning protein RepA|unclassified	2.8192294025
+UniRef50_W8RSR9: Type II/IV secretion system ATPase TadZ/CpaE, associated with Flp pilus assembly	2.8190469654
+UniRef50_W8RSR9: Type II/IV secretion system ATPase TadZ/CpaE, associated with Flp pilus assembly|unclassified	2.8190469654
+UniRef50_Q9RYR4	2.8190297935
+UniRef50_Q9RYR4|g__Deinococcus.s__Deinococcus_radiodurans	2.8190297935
+UniRef50_UPI000367A973: hypothetical protein	2.8183330397
+UniRef50_UPI000367A973: hypothetical protein|unclassified	2.8183330397
+UniRef50_B8JAU2: Peptide chain release factor 1	2.8179494808
+UniRef50_B8JAU2: Peptide chain release factor 1|g__Streptococcus.s__Streptococcus_agalactiae	2.8179494808
+UniRef50_UPI000225BB06: NADH-ubiquinone oxidoreductase subunit	2.8178710327
+UniRef50_UPI000225BB06: NADH-ubiquinone oxidoreductase subunit|unclassified	2.8178710327
+UniRef50_Q53591: Hyaluronate lyase	2.8175952736
+UniRef50_Q53591: Hyaluronate lyase|g__Streptococcus.s__Streptococcus_agalactiae	2.6420950981
+UniRef50_Q53591: Hyaluronate lyase|unclassified	0.1755001755
+UniRef50_A4YXJ9: Cobyric acid synthase	2.8174483099
+UniRef50_A4YXJ9: Cobyric acid synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8174483099
+UniRef50_A5UMA3: Predicted transcriptional regulator, ArsR family	2.8169014085
+UniRef50_A5UMA3: Predicted transcriptional regulator, ArsR family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.8169014085
+UniRef50_E4RH84	2.8169014085
+UniRef50_E4RH84|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8169014085
+UniRef50_K0JJB0	2.8169014085
+UniRef50_K0JJB0|g__Streptococcus.s__Streptococcus_agalactiae	2.8169014085
+UniRef50_M1GCT3: Peptidyl-prolyl cis-trans isomerase	2.8169014085
+UniRef50_M1GCT3: Peptidyl-prolyl cis-trans isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8169014085
+UniRef50_M1N1R7	2.8169014085
+UniRef50_M1N1R7|g__Clostridium.s__Clostridium_beijerinckii	2.8169014085
+UniRef50_P24162: Probable enoyl-CoA hydratase	2.8169014085
+UniRef50_P24162: Probable enoyl-CoA hydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.8169014085
+UniRef50_U2B9V5	2.8169014085
+UniRef50_U2B9V5|unclassified	2.8169014085
+UniRef50_D5EG65: ABC transporter related protein	2.8166400859
+UniRef50_D5EG65: ABC transporter related protein|g__Streptococcus.s__Streptococcus_agalactiae	2.8166400859
+UniRef50_Q2T517: Phenylacetaldehyde dehydrogenase	2.8164556421
+UniRef50_Q2T517: Phenylacetaldehyde dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7233280942
+UniRef50_Q2T517: Phenylacetaldehyde dehydrogenase|unclassified	0.0931275480
+UniRef50_A6VBZ1	2.8162376684
+UniRef50_A6VBZ1|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7690655816
+UniRef50_A6VBZ1|unclassified	0.0471720868
+UniRef50_V5VE92: MFS transporter	2.8157671015
+UniRef50_V5VE92: MFS transporter|g__Acinetobacter.s__Acinetobacter_baumannii	2.8157671015
+UniRef50_A4WY82	2.8150588180
+UniRef50_A4WY82|unclassified	2.8150588180
+UniRef50_UPI0002FF6BF8: hypothetical protein	2.8148775831
+UniRef50_UPI0002FF6BF8: hypothetical protein|unclassified	2.8148775831
+UniRef50_L0IJZ9: Beta-glucosidase-like glycosyl hydrolase	2.8148523655
+UniRef50_L0IJZ9: Beta-glucosidase-like glycosyl hydrolase|g__Clostridium.s__Clostridium_beijerinckii	2.8148523655
+UniRef50_A6LWT3	2.8147128245
+UniRef50_A6LWT3|g__Clostridium.s__Clostridium_beijerinckii	2.8147128245
+UniRef50_I7BVU0	2.8145371007
+UniRef50_I7BVU0|unclassified	2.8145371007
+UniRef50_C5N061	2.8143753759
+UniRef50_C5N061|unclassified	2.8143753759
+UniRef50_Q3K1I5: ATP-dependent helicase/deoxyribonuclease subunit B	2.8142456289
+UniRef50_Q3K1I5: ATP-dependent helicase/deoxyribonuclease subunit B|g__Streptococcus.s__Streptococcus_agalactiae	2.6713351620
+UniRef50_Q3K1I5: ATP-dependent helicase/deoxyribonuclease subunit B|unclassified	0.1429104669
+UniRef50_D9SVX2: Ion transport 2 domain protein	2.8138308267
+UniRef50_D9SVX2: Ion transport 2 domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.8138308267
+UniRef50_H0JGT1	2.8137766300
+UniRef50_H0JGT1|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8137766300
+UniRef50_Q5E4V6: Ribose import ATP-binding protein RbsA	2.8136049427
+UniRef50_Q5E4V6: Ribose import ATP-binding protein RbsA|g__Clostridium.s__Clostridium_beijerinckii	2.8136049427
+UniRef50_F5YLA3: Ferric enterobactin transport ATP-binding protein FepC	2.8134667593
+UniRef50_F5YLA3: Ferric enterobactin transport ATP-binding protein FepC|g__Clostridium.s__Clostridium_beijerinckii	2.8134667593
+UniRef50_R5RTQ1: MIP family channel protein	2.8129395218
+UniRef50_R5RTQ1: MIP family channel protein|g__Clostridium.s__Clostridium_beijerinckii	2.8129395218
+UniRef50_V8KXW0: Integrase	2.8129395218
+UniRef50_V8KXW0: Integrase|g__Escherichia.s__Escherichia_coli	2.8129395218
+UniRef50_B0VB20	2.8128095569
+UniRef50_B0VB20|g__Acinetobacter.s__Acinetobacter_baumannii	2.8128095569
+UniRef50_Q48K66: Branched-chain amino acid transport system II carrier protein	2.8126619363
+UniRef50_Q48K66: Branched-chain amino acid transport system II carrier protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.8126619363
+UniRef50_UPI0003EF182E: hypothetical protein	2.8125790771
+UniRef50_UPI0003EF182E: hypothetical protein|unclassified	2.8125790771
+UniRef50_UPI000345D912: hypothetical protein	2.8119211274
+UniRef50_UPI000345D912: hypothetical protein|unclassified	2.8119211274
+UniRef50_W7QLC2	2.8104551499
+UniRef50_W7QLC2|unclassified	2.8104551499
+UniRef50_W6RRV7: Magnesium transporter, CorA family	2.8102249672
+UniRef50_W6RRV7: Magnesium transporter, CorA family|g__Clostridium.s__Clostridium_beijerinckii	2.8102249672
+UniRef50_X5Q8M2	2.8101737576
+UniRef50_X5Q8M2|unclassified	2.8101737576
+UniRef50_H0YAA0	2.8093753858
+UniRef50_H0YAA0|unclassified	2.8093753858
+UniRef50_G5N518: Fatty acid oxidation complex subunit alpha	2.8091873445
+UniRef50_G5N518: Fatty acid oxidation complex subunit alpha|g__Escherichia.s__Escherichia_coli	2.8091873445
+UniRef50_C7BZT5: Cytoplasmic pump proteins of the hefABC efflux system	2.8090292586
+UniRef50_C7BZT5: Cytoplasmic pump proteins of the hefABC efflux system|g__Helicobacter.s__Helicobacter_pylori	2.8090292586
+UniRef50_A6LTL9: CBS domain containing protein	2.8089887640
+UniRef50_A6LTL9: CBS domain containing protein|g__Clostridium.s__Clostridium_beijerinckii	2.8089887640
+UniRef50_A6LZF2: PhnB protein	2.8089887640
+UniRef50_A6LZF2: PhnB protein|g__Clostridium.s__Clostridium_beijerinckii	2.8089887640
+UniRef50_D3H4R6	2.8089887640
+UniRef50_D3H4R6|g__Escherichia.s__Escherichia_coli	2.8089887640
+UniRef50_G7M4Y7	2.8089887640
+UniRef50_G7M4Y7|g__Clostridium.s__Clostridium_beijerinckii	2.8089887640
+UniRef50_Q5DY13: Lateral flagellar rod protein (FlgG-like)	2.8089887640
+UniRef50_Q5DY13: Lateral flagellar rod protein (FlgG-like)|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8089887640
+UniRef50_R0FR27: Transposase	2.8089887640
+UniRef50_R0FR27: Transposase|g__Escherichia.s__Escherichia_coli	2.8089887640
+UniRef50_G2JGS2: ABC-type dipeptide transport system, periplasmic component	2.8086847038
+UniRef50_G2JGS2: ABC-type dipeptide transport system, periplasmic component|g__Acinetobacter.s__Acinetobacter_baumannii	2.8086847038
+UniRef50_R8A831: Secretory antigen SsaA-like protein	2.8082760994
+UniRef50_R8A831: Secretory antigen SsaA-like protein|unclassified	2.8082760994
+UniRef50_V6FEQ6	2.8081352461
+UniRef50_V6FEQ6|unclassified	2.8081352461
+UniRef50_UPI0003EB11F8: hypothetical protein	2.8075813255
+UniRef50_UPI0003EB11F8: hypothetical protein|unclassified	2.8075813255
+UniRef50_E0D539: Transposase, putative	2.8075092128
+UniRef50_E0D539: Transposase, putative|g__Staphylococcus.s__Staphylococcus_epidermidis	2.5839793282
+UniRef50_E0D539: Transposase, putative|unclassified	0.2235298847
+UniRef50_B9DX48	2.8073551919
+UniRef50_B9DX48|g__Clostridium.s__Clostridium_beijerinckii	2.8073551919
+UniRef50_UPI00036A417A: hypothetical protein	2.8073060400
+UniRef50_UPI00036A417A: hypothetical protein|unclassified	2.8073060400
+UniRef50_G2JDJ5: Metal-dependent hydrolase	2.8069851634
+UniRef50_G2JDJ5: Metal-dependent hydrolase|g__Acinetobacter.s__Acinetobacter_baumannii	2.8069851634
+UniRef50_A6LSJ0	2.8068949453
+UniRef50_A6LSJ0|g__Clostridium.s__Clostridium_beijerinckii	2.8068949453
+UniRef50_H6CFC9: Fosmidomycin resistance protein (Fragment)	2.8066824873
+UniRef50_H6CFC9: Fosmidomycin resistance protein (Fragment)|unclassified	2.8066824873
+UniRef50_J8UUP8	2.8066117650
+UniRef50_J8UUP8|unclassified	2.8066117650
+UniRef50_W9TVT0: Component of chemotactic signal transduction system	2.8049882377
+UniRef50_W9TVT0: Component of chemotactic signal transduction system|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8049882377
+UniRef50_U5MKI7: Subtilisin-like serine protease	2.8048025497
+UniRef50_U5MKI7: Subtilisin-like serine protease|g__Clostridium.s__Clostridium_beijerinckii	2.8048025497
+UniRef50_J9NVM5	2.8046551221
+UniRef50_J9NVM5|unclassified	2.8046551221
+UniRef50_S5RI26: Bacitracin export permease protein BceB	2.8040739600
+UniRef50_S5RI26: Bacitracin export permease protein BceB|g__Streptococcus.s__Streptococcus_agalactiae	2.8040739600
+UniRef50_M4REW2	2.8037383178
+UniRef50_M4REW2|unclassified	2.8037383178
+UniRef50_Q9HZ67: P-protein	2.8037082720
+UniRef50_Q9HZ67: P-protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5270859136
+UniRef50_Q9HZ67: P-protein|unclassified	0.2766223584
+UniRef50_Q3JZG9: DNA polymerase IV	2.8031948957
+UniRef50_Q3JZG9: DNA polymerase IV|g__Streptococcus.s__Streptococcus_agalactiae	2.8031948957
+UniRef50_UPI00024868FB: hypothetical protein	2.8021215451
+UniRef50_UPI00024868FB: hypothetical protein|unclassified	2.8021215451
+UniRef50_B9KJN1	2.8019375057
+UniRef50_B9KJN1|unclassified	2.8019375057
+UniRef50_K2G431	2.8017997883
+UniRef50_K2G431|unclassified	2.8017997883
+UniRef50_D2JL91: Beta-lactamase regulatory sensor-transducer BlaR1	2.8017053951
+UniRef50_D2JL91: Beta-lactamase regulatory sensor-transducer BlaR1|unclassified	2.8017053951
+UniRef50_UPI00037DF183: hypothetical protein	2.8016799918
+UniRef50_UPI00037DF183: hypothetical protein|unclassified	2.8016799918
+UniRef50_K8DSJ2: Membrane-bound lytic murein transglycosylase A	2.8016730666
+UniRef50_K8DSJ2: Membrane-bound lytic murein transglycosylase A|unclassified	2.8016730666
+UniRef50_A3M517	2.8011204482
+UniRef50_A3M517|g__Acinetobacter.s__Acinetobacter_baumannii	2.8011204482
+UniRef50_J7RAK2	2.8011204482
+UniRef50_J7RAK2|g__Escherichia.s__Escherichia_coli	2.8011204482
+UniRef50_P76297: Flagellar protein FlhE	2.8011204482
+UniRef50_P76297: Flagellar protein FlhE|g__Escherichia.s__Escherichia_coli	2.8011204482
+UniRef50_R6FT63: Superoxide dismutase	2.8011204482
+UniRef50_R6FT63: Superoxide dismutase|g__Clostridium.s__Clostridium_beijerinckii	2.8011204482
+UniRef50_V5SQN8: 2-deoxy-D-gluconate 3-dehydrogenase	2.8011204482
+UniRef50_V5SQN8: 2-deoxy-D-gluconate 3-dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.8011204482
+UniRef50_B2TN34	2.8004294972
+UniRef50_B2TN34|g__Clostridium.s__Clostridium_beijerinckii	2.8004294972
+UniRef50_UPI000225AEA4: integration host factor subunit alpha	2.8004216296
+UniRef50_UPI000225AEA4: integration host factor subunit alpha|unclassified	2.8004216296
+UniRef50_P96963: DNA repair protein RadA homolog	2.7998307178
+UniRef50_P96963: DNA repair protein RadA homolog|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7998307178
+UniRef50_U3H984	2.7998072431
+UniRef50_U3H984|unclassified	2.7998072431
+UniRef50_D8EPZ7	2.7997384737
+UniRef50_D8EPZ7|unclassified	2.7997384737
+UniRef50_M9VFB1: ABC transporter	2.7997270587
+UniRef50_M9VFB1: ABC transporter|g__Propionibacterium.s__Propionibacterium_acnes	2.7997270587
+UniRef50_UPI00027441D8	2.7996402762
+UniRef50_UPI00027441D8|unclassified	2.7996402762
+UniRef50_B1IMR9: Integrase	2.7995037514
+UniRef50_B1IMR9: Integrase|g__Clostridium.s__Clostridium_beijerinckii	2.7995037514
+UniRef50_K0HTP9: Sulfate ABC transporter periplasmic sulfate-binding protein	2.7993482007
+UniRef50_K0HTP9: Sulfate ABC transporter periplasmic sulfate-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7993482007
+UniRef50_U5MY29: DnaD-like protein	2.7993261244
+UniRef50_U5MY29: DnaD-like protein|g__Clostridium.s__Clostridium_beijerinckii	2.7993261244
+UniRef50_F5M5S8	2.7986247784
+UniRef50_F5M5S8|unclassified	2.7986247784
+UniRef50_B0V1R4: Novel protein	2.7985917361
+UniRef50_B0V1R4: Novel protein|unclassified	2.7985917361
+UniRef50_UPI000375778F: hypothetical protein, partial	2.7984563865
+UniRef50_UPI000375778F: hypothetical protein, partial|unclassified	2.7984563865
+UniRef50_UPI0003EF9C6D: hypothetical protein, partial	2.7979399604
+UniRef50_UPI0003EF9C6D: hypothetical protein, partial|unclassified	2.7979399604
+UniRef50_D8P408	2.7977133506
+UniRef50_D8P408|unclassified	2.7977133506
+UniRef50_K7S7B0: Peptidase dimerization domain-containing protein	2.7967973276
+UniRef50_K7S7B0: Peptidase dimerization domain-containing protein|g__Propionibacterium.s__Propionibacterium_acnes	2.7967973276
+UniRef50_P29922: NADH-quinone oxidoreductase chain 10	2.7967529721
+UniRef50_P29922: NADH-quinone oxidoreductase chain 10|unclassified	2.7967529721
+UniRef50_C2YAH9: Oligopeptide transport system permease protein oppC	2.7962703701
+UniRef50_C2YAH9: Oligopeptide transport system permease protein oppC|unclassified	2.7962703701
+UniRef50_S8MSD7	2.7962347867
+UniRef50_S8MSD7|g__Streptococcus.s__Streptococcus_agalactiae	2.7962347867
+UniRef50_Q3K8E9: 23S rRNA (uracil(1939)-C(5))-methyltransferase RlmD	2.7962099848
+UniRef50_Q3K8E9: 23S rRNA (uracil(1939)-C(5))-methyltransferase RlmD|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7962099848
+UniRef50_F0RNA5: ATPase AAA-2 domain protein	2.7962008680
+UniRef50_F0RNA5: ATPase AAA-2 domain protein|g__Deinococcus.s__Deinococcus_radiodurans	2.7962008680
+UniRef50_A4VJG8: Lipoprotein	2.7960866494
+UniRef50_A4VJG8: Lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7960866494
+UniRef50_F7XFJ7	2.7956693610
+UniRef50_F7XFJ7|unclassified	2.7956693610
+UniRef50_W9A0W7: PyrBI operon leader peptide	2.7956418378
+UniRef50_W9A0W7: PyrBI operon leader peptide|unclassified	2.7956418378
+UniRef50_X5EFN3: ATP-binding component of ABC transporter	2.7956195932
+UniRef50_X5EFN3: ATP-binding component of ABC transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7956195932
+UniRef50_B1IK08: Argininosuccinate synthase	2.7953776348
+UniRef50_B1IK08: Argininosuccinate synthase|g__Clostridium.s__Clostridium_beijerinckii	2.7497377776
+UniRef50_B1IK08: Argininosuccinate synthase|unclassified	0.0456398572
+UniRef50_A6LRF3: Transcriptional regulator, RpiR family	2.7948747726
+UniRef50_A6LRF3: Transcriptional regulator, RpiR family|g__Clostridium.s__Clostridium_beijerinckii	2.7948747726
+UniRef50_R0VLK8	2.7948287205
+UniRef50_R0VLK8|unclassified	2.7948287205
+UniRef50_B9KTS0	2.7939880388
+UniRef50_B9KTS0|unclassified	2.7939880388
+UniRef50_F8HG32: 3-oxoacyl-[acyl-carrier-protein] synthase 2	2.7938405599
+UniRef50_F8HG32: 3-oxoacyl-[acyl-carrier-protein] synthase 2|g__Streptococcus.s__Streptococcus_agalactiae	2.7938405599
+UniRef50_S1G9Q1	2.7938216690
+UniRef50_S1G9Q1|unclassified	2.7938216690
+UniRef50_O31019: Carbamate kinase	2.7935346491
+UniRef50_O31019: Carbamate kinase|g__Propionibacterium.s__Propionibacterium_acnes	1.5337423313
+UniRef50_O31019: Carbamate kinase|unclassified	1.2597923178
+UniRef50_A0A059AH24	2.7932960894
+UniRef50_A0A059AH24|unclassified	2.7932960894
+UniRef50_M4RDW5: Glycosyltransferase	2.7932960894
+UniRef50_M4RDW5: Glycosyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	2.7932960894
+UniRef50_P56259	2.7932960894
+UniRef50_P56259|g__Escherichia.s__Escherichia_coli	2.7932960894
+UniRef50_Q6FAE6	2.7932960894
+UniRef50_Q6FAE6|g__Acinetobacter.s__Acinetobacter_baumannii	2.7932960894
+UniRef50_Q8Z292: Cellulose biosynthesis protein BcsQ	2.7932960894
+UniRef50_Q8Z292: Cellulose biosynthesis protein BcsQ|g__Escherichia.s__Escherichia_coli	2.7932960894
+UniRef50_UPI0003D0F080	2.7932960894
+UniRef50_UPI0003D0F080|unclassified	2.7932960894
+UniRef50_J9UPT8	2.7932383625
+UniRef50_J9UPT8|unclassified	2.7932383625
+UniRef50_F4DL94: Beta-lactamase domain-containing protein	2.7923856516
+UniRef50_F4DL94: Beta-lactamase domain-containing protein|unclassified	2.7923856516
+UniRef50_A6LR15: Heavy metal transport/detoxification protein	2.7919881472
+UniRef50_A6LR15: Heavy metal transport/detoxification protein|g__Clostridium.s__Clostridium_beijerinckii	2.7919881472
+UniRef50_B0KKU6	2.7916608632
+UniRef50_B0KKU6|unclassified	2.7916608632
+UniRef50_A7WYF2	2.7912343450
+UniRef50_A7WYF2|unclassified	2.7912343450
+UniRef50_A0A023RZV0	2.7912126447
+UniRef50_A0A023RZV0|g__Acinetobacter.s__Acinetobacter_baumannii	2.7912126447
+UniRef50_UPI0003739253: hypothetical protein, partial	2.7911731468
+UniRef50_UPI0003739253: hypothetical protein, partial|unclassified	2.7911731468
+UniRef50_A0A059ITS1: Transcriptional regulator	2.7910036949
+UniRef50_A0A059ITS1: Transcriptional regulator|unclassified	2.7910036949
+UniRef50_D4M1S2: RNA-splicing ligase RtcB	2.7909030595
+UniRef50_D4M1S2: RNA-splicing ligase RtcB|g__Clostridium.s__Clostridium_beijerinckii	2.7909030595
+UniRef50_UPI00036FD615: hypothetical protein	2.7907978203
+UniRef50_UPI00036FD615: hypothetical protein|unclassified	2.7907978203
+UniRef50_Q8DX72: Transcriptional regulator, Cro/CI family	2.7906976744
+UniRef50_Q8DX72: Transcriptional regulator, Cro/CI family|g__Streptococcus.s__Streptococcus_agalactiae	2.7906976744
+UniRef50_Q1GRL4	2.7905846881
+UniRef50_Q1GRL4|unclassified	2.7905846881
+UniRef50_E0SN31: Oxidoreductase	2.7901847055
+UniRef50_E0SN31: Oxidoreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7901847055
+UniRef50_O25130: UDP-4-amino-4,6-dideoxy-N-acetyl-beta-L-altrosamine transaminase	2.7898440117
+UniRef50_O25130: UDP-4-amino-4,6-dideoxy-N-acetyl-beta-L-altrosamine transaminase|g__Helicobacter.s__Helicobacter_pylori	2.7898440117
+UniRef50_M1NX79	2.7896905664
+UniRef50_M1NX79|unclassified	2.7896905664
+UniRef50_UPI00016C4574: Catalase, partial	2.7878994250
+UniRef50_UPI00016C4574: Catalase, partial|unclassified	2.7878994250
+UniRef50_K8R3V6: 6-pyruvoyl-tetrahydropterin synthase	2.7876981204
+UniRef50_K8R3V6: 6-pyruvoyl-tetrahydropterin synthase|unclassified	2.7876981204
+UniRef50_B0VKB6: Type II secretion system protein L	2.7876852305
+UniRef50_B0VKB6: Type II secretion system protein L|g__Acinetobacter.s__Acinetobacter_baumannii	2.7876852305
+UniRef50_G7M8E1: Methyl-accepting chemotaxis sensory transducer	2.7872708676
+UniRef50_G7M8E1: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	2.7872708676
+UniRef50_A0A023S035: Tail fiber protein	2.7862742181
+UniRef50_A0A023S035: Tail fiber protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.7862742181
+UniRef50_Q167V2: Oxidoreductase, putative	2.7862544353
+UniRef50_Q167V2: Oxidoreductase, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.7862544353
+UniRef50_A6M049: Alcohol dehydrogenase GroES domain protein	2.7857471959
+UniRef50_A6M049: Alcohol dehydrogenase GroES domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.7857471959
+UniRef50_P0AC17: Dihydroneopterin aldolase	2.7855153203
+UniRef50_P0AC17: Dihydroneopterin aldolase|g__Escherichia.s__Escherichia_coli	2.7855153203
+UniRef50_T0U8G3: ABC transporter membrane-spanning permease,Pepexport, Vex3	2.7845551263
+UniRef50_T0U8G3: ABC transporter membrane-spanning permease,Pepexport, Vex3|g__Streptococcus.s__Streptococcus_agalactiae	2.7845551263
+UniRef50_G8N3T6: Cadmium-transporting ATPase	2.7843754308
+UniRef50_G8N3T6: Cadmium-transporting ATPase|g__Streptococcus.s__Streptococcus_agalactiae	2.7843754308
+UniRef50_W8RSZ5	2.7843562423
+UniRef50_W8RSZ5|unclassified	2.7843562423
+UniRef50_UPI00040FB0FE: ATPase AAA	2.7839167944
+UniRef50_UPI00040FB0FE: ATPase AAA|g__Streptococcus.s__Streptococcus_agalactiae	2.7839167944
+UniRef50_A9WS85: Leucine--tRNA ligase	2.7835391602
+UniRef50_A9WS85: Leucine--tRNA ligase|g__Propionibacterium.s__Propionibacterium_acnes	2.7835391602
+UniRef50_K4WYQ0	2.7828580308
+UniRef50_K4WYQ0|unclassified	2.7828580308
+UniRef50_G4Q931	2.7827072858
+UniRef50_G4Q931|g__Clostridium.s__Clostridium_beijerinckii	2.7827072858
+UniRef50_R4ZHQ3: Membrane protein, putative	2.7821282449
+UniRef50_R4ZHQ3: Membrane protein, putative|g__Streptococcus.s__Streptococcus_agalactiae	2.7821282449
+UniRef50_A0A020HGX4	2.7821147064
+UniRef50_A0A020HGX4|unclassified	2.7821147064
+UniRef50_UPI0004643AF3: hypothetical protein	2.7814042848
+UniRef50_UPI0004643AF3: hypothetical protein|unclassified	2.7814042848
+UniRef50_Q87VF3: Lipid A export ATP-binding/permease protein MsbA	2.7813589753
+UniRef50_Q87VF3: Lipid A export ATP-binding/permease protein MsbA|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7572539514
+UniRef50_Q87VF3: Lipid A export ATP-binding/permease protein MsbA|unclassified	0.0241050239
+UniRef50_A3SUY5	2.7810789158
+UniRef50_A3SUY5|unclassified	2.7810789158
+UniRef50_G7M8J1: Methyl-accepting chemotaxis sensory transducer	2.7810106977
+UniRef50_G7M8J1: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	2.7810106977
+UniRef50_O24840: Vanillate O-demethylase oxidoreductase	2.7805050115
+UniRef50_O24840: Vanillate O-demethylase oxidoreductase|g__Acinetobacter.s__Acinetobacter_baumannii	2.7322404372
+UniRef50_O24840: Vanillate O-demethylase oxidoreductase|unclassified	0.0482645743
+UniRef50_F0YBU9: Expressed protein (Fragment)	2.7801343201
+UniRef50_F0YBU9: Expressed protein (Fragment)|unclassified	2.7801343201
+UniRef50_Q9RU25: Peptide ABC transporter, permease protein	2.7799929116
+UniRef50_Q9RU25: Peptide ABC transporter, permease protein|g__Deinococcus.s__Deinococcus_radiodurans	2.7799929116
+UniRef50_F6AGQ7: HemY domain protein	2.7797214472
+UniRef50_F6AGQ7: HemY domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7797214472
+UniRef50_F7ZTM8: Riboflavin biosynthesis protein RibD	2.7787716674
+UniRef50_F7ZTM8: Riboflavin biosynthesis protein RibD|g__Clostridium.s__Clostridium_beijerinckii	2.7787716674
+UniRef50_G8AMM6	2.7786687137
+UniRef50_G8AMM6|unclassified	2.7786687137
+UniRef50_A0A023RTE9: AsnC family transcriptional regulator	2.7777777778
+UniRef50_A0A023RTE9: AsnC family transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	2.7777777778
+UniRef50_B0V5R2: Ribonuclease P protein component	2.7777777778
+UniRef50_B0V5R2: Ribonuclease P protein component|unclassified	2.7777777778
+UniRef50_D9R059	2.7777777778
+UniRef50_D9R059|g__Clostridium.s__Clostridium_beijerinckii	2.7777777778
+UniRef50_G5KQJ1: Aminotransferase	2.7777777778
+UniRef50_G5KQJ1: Aminotransferase|g__Escherichia.s__Escherichia_coli	2.7777777778
+UniRef50_Q04JY7: Homoserine kinase	2.7777777778
+UniRef50_Q04JY7: Homoserine kinase|g__Streptococcus.s__Streptococcus_agalactiae	2.7777777778
+UniRef50_Q28RU3: Ferric uptake regulator, Fur family	2.7777777778
+UniRef50_Q28RU3: Ferric uptake regulator, Fur family|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.7777777778
+UniRef50_W8T950	2.7777777778
+UniRef50_W8T950|g__Escherichia.s__Escherichia_coli	2.7777777778
+UniRef50_P24582: Modification methylase NlaIII	2.7768396563
+UniRef50_P24582: Modification methylase NlaIII|g__Helicobacter.s__Helicobacter_pylori	2.7768396563
+UniRef50_J9YRR4	2.7767439764
+UniRef50_J9YRR4|g__Streptococcus.s__Streptococcus_agalactiae	2.7767439764
+UniRef50_UPI000472BEAB: hypothetical protein	2.7762127725
+UniRef50_UPI000472BEAB: hypothetical protein|unclassified	2.7762127725
+UniRef50_F0YQI9	2.7761157307
+UniRef50_F0YQI9|unclassified	2.7761157307
+UniRef50_G7MCB1: Transcriptional regulator, TrmB	2.7756123530
+UniRef50_G7MCB1: Transcriptional regulator, TrmB|g__Clostridium.s__Clostridium_beijerinckii	2.7756123530
+UniRef50_Q6A8F8: Prephenate dehydrogenase	2.7752490042
+UniRef50_Q6A8F8: Prephenate dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	2.7752490042
+UniRef50_W1EXQ4: Phosphonate ABC transporter phosphate-binding periplasmic component (TC 3.A.1.9.1)	2.7744308397
+UniRef50_W1EXQ4: Phosphonate ABC transporter phosphate-binding periplasmic component (TC 3.A.1.9.1)|unclassified	2.7744308397
+UniRef50_UPI000237A5E8: acetyltransferase	2.7743971137
+UniRef50_UPI000237A5E8: acetyltransferase|unclassified	2.7743971137
+UniRef50_Q3IUU9	2.7738232560
+UniRef50_Q3IUU9|unclassified	2.7738232560
+UniRef50_C1N4B3: Predicted protein	2.7737672509
+UniRef50_C1N4B3: Predicted protein|unclassified	2.7737672509
+UniRef50_K1V508	2.7734325596
+UniRef50_K1V508|unclassified	2.7734325596
+UniRef50_B6AX96	2.7717108479
+UniRef50_B6AX96|unclassified	2.7717108479
+UniRef50_A4JLG5	2.7710079431
+UniRef50_A4JLG5|unclassified	2.7710079431
+UniRef50_UPI000454A9D6: PREDICTED: putative protein TPRXL, partial	2.7709050163
+UniRef50_UPI000454A9D6: PREDICTED: putative protein TPRXL, partial|unclassified	2.7709050163
+UniRef50_J9YTG3	2.7700831025
+UniRef50_J9YTG3|g__Streptococcus.s__Streptococcus_agalactiae	2.7700831025
+UniRef50_P0ADL0	2.7700831025
+UniRef50_P0ADL0|g__Escherichia.s__Escherichia_coli	2.7700831025
+UniRef50_Q8FJS4	2.7700831025
+UniRef50_Q8FJS4|g__Escherichia.s__Escherichia_coli	2.7700831025
+UniRef50_Q9RTJ0	2.7700831025
+UniRef50_Q9RTJ0|g__Deinococcus.s__Deinococcus_radiodurans	2.7700831025
+UniRef50_R4HZ48: 23S rRNA (guanosine-2'-O-)-methyltransferase RlmB	2.7700831025
+UniRef50_R4HZ48: 23S rRNA (guanosine-2'-O-)-methyltransferase RlmB|g__Escherichia.s__Escherichia_coli	2.7700831025
+UniRef50_UPI0002000344: hypothetical protein	2.7700831025
+UniRef50_UPI0002000344: hypothetical protein|unclassified	2.7700831025
+UniRef50_UPI0003AB94F3	2.7700831025
+UniRef50_UPI0003AB94F3|unclassified	2.7700831025
+UniRef50_V7GRQ2	2.7695731323
+UniRef50_V7GRQ2|unclassified	2.7695731323
+UniRef50_UPI0003AE6C47: PREDICTED: high mobility group nucleosome-binding domain-containing protein 4-like isoform X1	2.7690314841
+UniRef50_UPI0003AE6C47: PREDICTED: high mobility group nucleosome-binding domain-containing protein 4-like isoform X1|unclassified	2.7690314841
+UniRef50_U5RYU5: Major facilitator superfamily MFS_1	2.7683108167
+UniRef50_U5RYU5: Major facilitator superfamily MFS_1|g__Clostridium.s__Clostridium_beijerinckii	2.7683108167
+UniRef50_W8U6I9: AAA domain-containing protein YrvN	2.7679078223
+UniRef50_W8U6I9: AAA domain-containing protein YrvN|g__Clostridium.s__Clostridium_beijerinckii	2.7679078223
+UniRef50_UPI0004720360: 30S ribosomal protein S3	2.7668201962
+UniRef50_UPI0004720360: 30S ribosomal protein S3|unclassified	2.7668201962
+UniRef50_M4YYZ9: N-acetylmannosamine kinase	2.7667810244
+UniRef50_M4YYZ9: N-acetylmannosamine kinase|g__Streptococcus.s__Streptococcus_agalactiae	2.7667810244
+UniRef50_F3U2K9: Peptidase C14, caspase catalytic subunit p20	2.7661498240
+UniRef50_F3U2K9: Peptidase C14, caspase catalytic subunit p20|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.7661498240
+UniRef50_D3P5L7: 2,4-dienoyl-CoA reductase (NADPH2)	2.7659674820
+UniRef50_D3P5L7: 2,4-dienoyl-CoA reductase (NADPH2)|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7659674820
+UniRef50_X5HG80: Long-chain fatty acid ABC transporter	2.7659020718
+UniRef50_X5HG80: Long-chain fatty acid ABC transporter|g__Acinetobacter.s__Acinetobacter_baumannii	2.7659020718
+UniRef50_G0DX35: Beta-D-glucuronidase	2.7658019875
+UniRef50_G0DX35: Beta-D-glucuronidase|g__Propionibacterium.s__Propionibacterium_acnes	2.7658019875
+UniRef50_A6LYV1: Response regulator receiver sensor signal transduction histidine kinase	2.7651425883
+UniRef50_A6LYV1: Response regulator receiver sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	2.7651425883
+UniRef50_U3T6X9	2.7649922183
+UniRef50_U3T6X9|g__Acinetobacter.s__Acinetobacter_baumannii	2.7649922183
+UniRef50_UPI000473E94E: MULTISPECIES: hypothetical protein	2.7644376797
+UniRef50_UPI000473E94E: MULTISPECIES: hypothetical protein|unclassified	2.7644376797
+UniRef50_Q2SFK9: Fatty acid desaturase	2.7643738827
+UniRef50_Q2SFK9: Fatty acid desaturase|g__Acinetobacter.s__Acinetobacter_baumannii	2.7643738827
+UniRef50_F8H8U4: Molybdopterin oxidoreductase, alpha subunit	2.7629313244
+UniRef50_F8H8U4: Molybdopterin oxidoreductase, alpha subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7629313244
+UniRef50_P25136: 8.6 kDa protein	2.7625570706
+UniRef50_P25136: 8.6 kDa protein|unclassified	2.7625570706
+UniRef50_UPI0003640CCC: hypothetical protein	2.7625456685
+UniRef50_UPI0003640CCC: hypothetical protein|unclassified	2.7625456685
+UniRef50_A6LY45	2.7624309392
+UniRef50_A6LY45|g__Clostridium.s__Clostridium_beijerinckii	2.7624309392
+UniRef50_B7I7I0	2.7624309392
+UniRef50_B7I7I0|g__Acinetobacter.s__Acinetobacter_baumannii	2.7624309392
+UniRef50_B7P7Z1	2.7624309392
+UniRef50_B7P7Z1|unclassified	2.7624309392
+UniRef50_P0AAU8	2.7624309392
+UniRef50_P0AAU8|g__Escherichia.s__Escherichia_coli	2.7624309392
+UniRef50_Q8PC99: Release factor glutamine methyltransferase	2.7624309392
+UniRef50_Q8PC99: Release factor glutamine methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7624309392
+UniRef50_Q9HZP9: Precorrin-4 C(11)-methyltransferase	2.7624309392
+UniRef50_Q9HZP9: Precorrin-4 C(11)-methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7624309392
+UniRef50_U8S1P7: Alkane 1-monooxygenase 2	2.7624309392
+UniRef50_U8S1P7: Alkane 1-monooxygenase 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7624309392
+UniRef50_Q8RA66: Tyrosine recombinase XerC	2.7619570438
+UniRef50_Q8RA66: Tyrosine recombinase XerC|g__Clostridium.s__Clostridium_beijerinckii	2.7619570438
+UniRef50_B7UY15	2.7612776692
+UniRef50_B7UY15|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7612776692
+UniRef50_K8R9K6: Dipeptide transport protein	2.7612567156
+UniRef50_K8R9K6: Dipeptide transport protein|unclassified	2.7612567156
+UniRef50_G7LZV6: Xenobiotic-transporting ATPase	2.7609848277
+UniRef50_G7LZV6: Xenobiotic-transporting ATPase|g__Clostridium.s__Clostridium_beijerinckii	2.7609848277
+UniRef50_V4ITY3: Sodium:solute symporter	2.7609191274
+UniRef50_V4ITY3: Sodium:solute symporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7609191274
+UniRef50_B7M415	2.7606863282
+UniRef50_B7M415|unclassified	2.7606863282
+UniRef50_P22033: Methylmalonyl-CoA mutase, mitochondrial	2.7605721734
+UniRef50_P22033: Methylmalonyl-CoA mutase, mitochondrial|g__Propionibacterium.s__Propionibacterium_acnes	2.1244483464
+UniRef50_P22033: Methylmalonyl-CoA mutase, mitochondrial|unclassified	0.6361238270
+UniRef50_A3W7C0	2.7605048467
+UniRef50_A3W7C0|unclassified	2.7605048467
+UniRef50_W7VUT6: Alanine dehydrogenase	2.7603911529
+UniRef50_W7VUT6: Alanine dehydrogenase|unclassified	2.7603911529
+UniRef50_B2K1F3	2.7599251546
+UniRef50_B2K1F3|g__Clostridium.s__Clostridium_beijerinckii	2.7599251546
+UniRef50_G6Y736: Family 5 extracellular solute-binding protein (Fragment)	2.7594582617
+UniRef50_G6Y736: Family 5 extracellular solute-binding protein (Fragment)|unclassified	2.7594582617
+UniRef50_A6LZ35: Major facilitator superfamily MFS_1	2.7591583404
+UniRef50_A6LZ35: Major facilitator superfamily MFS_1|g__Clostridium.s__Clostridium_beijerinckii	2.7591583404
+UniRef50_S9X632	2.7591467014
+UniRef50_S9X632|unclassified	2.7591467014
+UniRef50_U9QRW9	2.7587671731
+UniRef50_U9QRW9|unclassified	2.7587671731
+UniRef50_Q9RYT4: Homoprotocatechuate 2,3-dioxygenase, putative	2.7585921978
+UniRef50_Q9RYT4: Homoprotocatechuate 2,3-dioxygenase, putative|g__Deinococcus.s__Deinococcus_radiodurans	2.7585921978
+UniRef50_E1VLU5: Short-chain dehydrogenase/reductase SDR	2.7585683524
+UniRef50_E1VLU5: Short-chain dehydrogenase/reductase SDR|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7585683524
+UniRef50_B0V7N3	2.7585172091
+UniRef50_B0V7N3|g__Acinetobacter.s__Acinetobacter_baumannii	2.7585172091
+UniRef50_W7WRB6	2.7584758288
+UniRef50_W7WRB6|unclassified	2.7584758288
+UniRef50_C5CV27	2.7577067164
+UniRef50_C5CV27|unclassified	2.7577067164
+UniRef50_C1DR24: Ribonuclease E	2.7575787192
+UniRef50_C1DR24: Ribonuclease E|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7575787192
+UniRef50_U5MSB6: Actin-like ATPase involved in cell division	2.7573996471
+UniRef50_U5MSB6: Actin-like ATPase involved in cell division|g__Clostridium.s__Clostridium_beijerinckii	2.7573996471
+UniRef50_K2GPE6: Two-component response regulator	2.7567866059
+UniRef50_K2GPE6: Two-component response regulator|unclassified	2.7567866059
+UniRef50_A0A017YA65	2.7567139266
+UniRef50_A0A017YA65|unclassified	2.7567139266
+UniRef50_P33696: UTP--glucose-1-phosphate uridylyltransferase	2.7566718608
+UniRef50_P33696: UTP--glucose-1-phosphate uridylyltransferase|unclassified	2.7566718608
+UniRef50_D4HAW2: ATPase/histidine kinase/DNA gyrase B/HSP90 domain protein	2.7564534551
+UniRef50_D4HAW2: ATPase/histidine kinase/DNA gyrase B/HSP90 domain protein|g__Propionibacterium.s__Propionibacterium_acnes	2.7564534551
+UniRef50_A3JNX5	2.7563206387
+UniRef50_A3JNX5|unclassified	2.7563206387
+UniRef50_F0L3S0: Biopolymer transport protein	2.7557045171
+UniRef50_F0L3S0: Biopolymer transport protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.7557045171
+UniRef50_UPI00046C8886: peptidase S24	2.7554404413
+UniRef50_UPI00046C8886: peptidase S24|unclassified	2.7554404413
+UniRef50_V7EFD9: Pilus biosynthesis protein TadE	2.7553009172
+UniRef50_V7EFD9: Pilus biosynthesis protein TadE|unclassified	2.7553009172
+UniRef50_Q9X581: NatC	2.7551843736
+UniRef50_Q9X581: NatC|g__Neisseria.s__Neisseria_meningitidis	2.7551843736
+UniRef50_A0A024DD00: PTS sorbitol transporter subunit IIA	2.7548209366
+UniRef50_A0A024DD00: PTS sorbitol transporter subunit IIA|g__Streptococcus.s__Streptococcus_mutans	2.7548209366
+UniRef50_A5UL38: Ribonuclease P protein component 4	2.7548209366
+UniRef50_A5UL38: Ribonuclease P protein component 4|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.7548209366
+UniRef50_A6LXK4	2.7548209366
+UniRef50_A6LXK4|g__Clostridium.s__Clostridium_beijerinckii	2.7548209366
+UniRef50_A6UYR5: Amino acid ABC transporter, periplasmic amino acid-binding protein	2.7548209366
+UniRef50_A6UYR5: Amino acid ABC transporter, periplasmic amino acid-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7548209366
+UniRef50_B7H2D5	2.7548209366
+UniRef50_B7H2D5|g__Acinetobacter.s__Acinetobacter_baumannii	2.7548209366
+UniRef50_D2N3Z8	2.7548209366
+UniRef50_D2N3Z8|g__Staphylococcus.s__Staphylococcus_aureus	2.7548209366
+UniRef50_D7G7F0	2.7548209366
+UniRef50_D7G7F0|unclassified	2.7548209366
+UniRef50_G7M265: Precorrin-2 dehydrogenase	2.7548209366
+UniRef50_G7M265: Precorrin-2 dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	2.7548209366
+UniRef50_J3QJL4	2.7548209366
+UniRef50_J3QJL4|unclassified	2.7548209366
+UniRef50_K6E6X2	2.7548209366
+UniRef50_K6E6X2|unclassified	2.7548209366
+UniRef50_M1N6G4: Signal peptidase I	2.7548209366
+UniRef50_M1N6G4: Signal peptidase I|g__Clostridium.s__Clostridium_beijerinckii	2.7548209366
+UniRef50_Q3IX01	2.7548209366
+UniRef50_Q3IX01|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.7548209366
+UniRef50_X1WW26	2.7548209366
+UniRef50_X1WW26|g__Escherichia.s__Escherichia_coli	2.7548209366
+UniRef50_F4NWK8	2.7540769828
+UniRef50_F4NWK8|unclassified	2.7540769828
+UniRef50_Q54800: UTP--glucose-1-phosphate uridylyltransferase	2.7538527380
+UniRef50_Q54800: UTP--glucose-1-phosphate uridylyltransferase|unclassified	2.7538527380
+UniRef50_UPI00039E5957: hypothetical protein	2.7538488209
+UniRef50_UPI00039E5957: hypothetical protein|unclassified	2.7538488209
+UniRef50_G2JE23: Pilus assembly protein tip-associated adhesin PilY1	2.7521013959
+UniRef50_G2JE23: Pilus assembly protein tip-associated adhesin PilY1|g__Acinetobacter.s__Acinetobacter_baumannii	2.7521013959
+UniRef50_UPI0004419EC6: PREDICTED: homeobox protein engrailed-1-like	2.7518876143
+UniRef50_UPI0004419EC6: PREDICTED: homeobox protein engrailed-1-like|unclassified	2.7518876143
+UniRef50_W8S0E0	2.7514112921
+UniRef50_W8S0E0|unclassified	2.7514112921
+UniRef50_E3G5L3	2.7513566246
+UniRef50_E3G5L3|unclassified	2.7513566246
+UniRef50_M1WNQ8	2.7507567259
+UniRef50_M1WNQ8|unclassified	2.7507567259
+UniRef50_A6FKI6	2.7503999775
+UniRef50_A6FKI6|unclassified	2.7503999775
+UniRef50_C5Y3C0	2.7503920296
+UniRef50_C5Y3C0|unclassified	2.7503920296
+UniRef50_Q7VID0	2.7488331121
+UniRef50_Q7VID0|g__Helicobacter.s__Helicobacter_pylori	2.7488331121
+UniRef50_A0A023K6M6	2.7484441401
+UniRef50_A0A023K6M6|unclassified	2.7484441401
+UniRef50_D4HC81	2.7479891381
+UniRef50_D4HC81|g__Propionibacterium.s__Propionibacterium_acnes	2.7479891381
+UniRef50_B2SZE6: ABC transporter related	2.7472527473
+UniRef50_B2SZE6: ABC transporter related|g__Streptococcus.s__Streptococcus_agalactiae	2.7472527473
+UniRef50_Q9RYG6	2.7472527473
+UniRef50_Q9RYG6|g__Deinococcus.s__Deinococcus_radiodurans	2.7472527473
+UniRef50_V8R541: Restriction endonuclease	2.7472527473
+UniRef50_V8R541: Restriction endonuclease|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7472527473
+UniRef50_G7LYR7: Oligopeptide/dipeptide ABC transporter, ATPase subunit	2.7468315140
+UniRef50_G7LYR7: Oligopeptide/dipeptide ABC transporter, ATPase subunit|g__Clostridium.s__Clostridium_beijerinckii	2.7468315140
+UniRef50_V8GXF7	2.7465052359
+UniRef50_V8GXF7|unclassified	2.7465052359
+UniRef50_M1N619	2.7456192753
+UniRef50_M1N619|g__Clostridium.s__Clostridium_beijerinckii	2.7456192753
+UniRef50_A7FAX1	2.7453490999
+UniRef50_A7FAX1|g__Acinetobacter.s__Acinetobacter_baumannii	2.7453490999
+UniRef50_Z2DMS1	2.7451481538
+UniRef50_Z2DMS1|unclassified	2.7451481538
+UniRef50_UPI0002F0E531: phenazine biosynthesis protein	2.7449561089
+UniRef50_UPI0002F0E531: phenazine biosynthesis protein|unclassified	2.7449561089
+UniRef50_U8XD19	2.7436565941
+UniRef50_U8XD19|unclassified	2.7436565941
+UniRef50_UPI00045E7F8E: serine kinase	2.7435515925
+UniRef50_UPI00045E7F8E: serine kinase|unclassified	2.7435515925
+UniRef50_W6RWI6: Accessory gene regulator A	2.7434893873
+UniRef50_W6RWI6: Accessory gene regulator A|g__Clostridium.s__Clostridium_beijerinckii	2.7434893873
+UniRef50_I6Q293	2.7417879429
+UniRef50_I6Q293|unclassified	2.7417879429
+UniRef50_T2HSQ7: Integrase core domain	2.7416051262
+UniRef50_T2HSQ7: Integrase core domain|g__Escherichia.s__Escherichia_coli	2.7416051262
+UniRef50_Q3IXT7: ABC peptide/opine transporter, ATPase subunit	2.7405516051
+UniRef50_Q3IXT7: ABC peptide/opine transporter, ATPase subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.7405516051
+UniRef50_A5UP37	2.7397260274
+UniRef50_A5UP37|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.7397260274
+UniRef50_B0VAR2	2.7397260274
+UniRef50_B0VAR2|g__Acinetobacter.s__Acinetobacter_baumannii	2.7397260274
+UniRef50_J8V0I0	2.7397260274
+UniRef50_J8V0I0|unclassified	2.7397260274
+UniRef50_Q2RG70: Hydro-lyase, Fe-S type, tartrate/fumarate subfamily, beta region	2.7397260274
+UniRef50_Q2RG70: Hydro-lyase, Fe-S type, tartrate/fumarate subfamily, beta region|g__Clostridium.s__Clostridium_beijerinckii	2.7397260274
+UniRef50_Q8E6D9	2.7397260274
+UniRef50_Q8E6D9|g__Streptococcus.s__Streptococcus_agalactiae	2.7397260274
+UniRef50_UPI0004431997: PREDICTED: LOW QUALITY PROTEIN: proline rich 24	2.7397260274
+UniRef50_UPI0004431997: PREDICTED: LOW QUALITY PROTEIN: proline rich 24|unclassified	2.7397260274
+UniRef50_W4TUZ9: Mg/Co/Ni transporter MgtE	2.7397260274
+UniRef50_W4TUZ9: Mg/Co/Ni transporter MgtE|unclassified	2.7397260274
+UniRef50_Z3LH92	2.7397260274
+UniRef50_Z3LH92|unclassified	2.7397260274
+UniRef50_V9Z8P2	2.7396384780
+UniRef50_V9Z8P2|unclassified	2.7396384780
+UniRef50_P55573	2.7391881875
+UniRef50_P55573|g__Acinetobacter.s__Acinetobacter_baumannii	2.7391881875
+UniRef50_J1BAY2	2.7390550215
+UniRef50_J1BAY2|unclassified	2.7390550215
+UniRef50_D4HBB1: Cell envelope-like function transcriptional attenuator common domain protein	2.7388954091
+UniRef50_D4HBB1: Cell envelope-like function transcriptional attenuator common domain protein|g__Propionibacterium.s__Propionibacterium_acnes	2.7388954091
+UniRef50_L7MB57: Putative vegetative cell wall protein gp1 (Fragment)	2.7387320451
+UniRef50_L7MB57: Putative vegetative cell wall protein gp1 (Fragment)|unclassified	2.7387320451
+UniRef50_X6C2W9	2.7384310236
+UniRef50_X6C2W9|unclassified	2.7384310236
+UniRef50_C5Y751	2.7381952056
+UniRef50_C5Y751|unclassified	2.7381952056
+UniRef50_S9RM14: Esterase, putative	2.7380903405
+UniRef50_S9RM14: Esterase, putative|unclassified	2.7380903405
+UniRef50_C1DAI5: Glucose-6-phosphate isomerase	2.7379812507
+UniRef50_C1DAI5: Glucose-6-phosphate isomerase|g__Helicobacter.s__Helicobacter_pylori	2.7379812507
+UniRef50_U3T289	2.7379079788
+UniRef50_U3T289|g__Acinetobacter.s__Acinetobacter_baumannii	2.7379079788
+UniRef50_X6L2P2	2.7369133410
+UniRef50_X6L2P2|unclassified	2.7369133410
+UniRef50_UPI000441EF2C	2.7364475121
+UniRef50_UPI000441EF2C|unclassified	2.7364475121
+UniRef50_B7VBB1	2.7361490717
+UniRef50_B7VBB1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8621973929
+UniRef50_B7VBB1|unclassified	0.8739516787
+UniRef50_Q6A5R4: Sodium:solute symporter	2.7356019816
+UniRef50_Q6A5R4: Sodium:solute symporter|g__Propionibacterium.s__Propionibacterium_acnes	2.7356019816
+UniRef50_H5VFC5: GTP-binding protein TypA/BipA	2.7350682869
+UniRef50_H5VFC5: GTP-binding protein TypA/BipA|g__Helicobacter.s__Helicobacter_pylori	2.7350682869
+UniRef50_P14532: Cytochrome c551 peroxidase	2.7347781218
+UniRef50_P14532: Cytochrome c551 peroxidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7347781218
+UniRef50_A6M0R7: ABC transporter, periplasmic substrate-binding protein	2.7346301667
+UniRef50_A6M0R7: ABC transporter, periplasmic substrate-binding protein|g__Clostridium.s__Clostridium_beijerinckii	2.7346301667
+UniRef50_A3PPA7	2.7344969708
+UniRef50_A3PPA7|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.7344969708
+UniRef50_D2U2M6: UPF0042 nucleotide-binding protein ARN_28520	2.7342272365
+UniRef50_D2U2M6: UPF0042 nucleotide-binding protein ARN_28520|g__Escherichia.s__Escherichia_coli	2.7342272365
+UniRef50_UPI0004771768: hypothetical protein	2.7335268301
+UniRef50_UPI0004771768: hypothetical protein|unclassified	2.7335268301
+UniRef50_A0A023NX12: Potassium transporter KefB	2.7333220546
+UniRef50_A0A023NX12: Potassium transporter KefB|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7333220546
+UniRef50_Z7FL85	2.7329565440
+UniRef50_Z7FL85|unclassified	2.7329565440
+UniRef50_M0X074	2.7327032618
+UniRef50_M0X074|unclassified	2.7327032618
+UniRef50_P13656: Probable bifunctional chitinase/lysozyme	2.7322772186
+UniRef50_P13656: Probable bifunctional chitinase/lysozyme|g__Escherichia.s__Escherichia_coli	2.7322772186
+UniRef50_A0A027RPI9	2.7322404372
+UniRef50_A0A027RPI9|g__Escherichia.s__Escherichia_coli	2.7322404372
+UniRef50_A4TJD9: Phage tail assembly protein	2.7322404372
+UniRef50_A4TJD9: Phage tail assembly protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7322404372
+UniRef50_A6LQC9	2.7322404372
+UniRef50_A6LQC9|g__Clostridium.s__Clostridium_beijerinckii	2.7322404372
+UniRef50_C6SRI2	2.7322404372
+UniRef50_C6SRI2|g__Streptococcus.s__Streptococcus_mutans	2.7322404372
+UniRef50_I2DEZ6	2.7322404372
+UniRef50_I2DEZ6|g__Helicobacter.s__Helicobacter_pylori	2.7322404372
+UniRef50_P36677	2.7322404372
+UniRef50_P36677|g__Escherichia.s__Escherichia_coli	2.7322404372
+UniRef50_P64591: Inner membrane protein YhaH	2.7322404372
+UniRef50_P64591: Inner membrane protein YhaH|g__Escherichia.s__Escherichia_coli	2.7322404372
+UniRef50_Q9RRE8	2.7322404372
+UniRef50_Q9RRE8|g__Deinococcus.s__Deinococcus_radiodurans	2.7322404372
+UniRef50_V6PC60: Cytochrome D ubiquinol oxidase subunit I (Fragment)	2.7322404372
+UniRef50_V6PC60: Cytochrome D ubiquinol oxidase subunit I (Fragment)|g__Escherichia.s__Escherichia_coli	2.7322404372
+UniRef50_W6I678: ThiJ/PfpI family protein	2.7322404372
+UniRef50_W6I678: ThiJ/PfpI family protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.7322404372
+UniRef50_F2EXR6	2.7321069019
+UniRef50_F2EXR6|unclassified	2.7321069019
+UniRef50_A3U1Q1	2.7316042365
+UniRef50_A3U1Q1|unclassified	2.7316042365
+UniRef50_R4ZCK5: Aminodeoxychorismate lyase	2.7311640807
+UniRef50_R4ZCK5: Aminodeoxychorismate lyase|g__Streptococcus.s__Streptococcus_agalactiae	2.7311640807
+UniRef50_F3SFL5	2.7309630097
+UniRef50_F3SFL5|unclassified	2.7309630097
+UniRef50_A6SWN8	2.7309295321
+UniRef50_A6SWN8|unclassified	2.7309295321
+UniRef50_D6SC47	2.7308730807
+UniRef50_D6SC47|unclassified	2.7308730807
+UniRef50_W0YKM5	2.7306102589
+UniRef50_W0YKM5|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7306102589
+UniRef50_Q8PAV7: Ditrans,polycis-undecaprenyl-diphosphate synthase ((2E,6E)-farnesyl-diphosphate specific)	2.7305457925
+UniRef50_Q8PAV7: Ditrans,polycis-undecaprenyl-diphosphate synthase ((2E,6E)-farnesyl-diphosphate specific)|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7305457925
+UniRef50_Q4FQ57: tRNA-dihydrouridine synthase	2.7300207130
+UniRef50_Q4FQ57: tRNA-dihydrouridine synthase|g__Acinetobacter.s__Acinetobacter_baumannii	2.7300207130
+UniRef50_UPI00046E2F9B: hypothetical protein, partial	2.7299374023
+UniRef50_UPI00046E2F9B: hypothetical protein, partial|unclassified	2.7299374023
+UniRef50_Q9RRB6: S-layer protein, putative	2.7288919307
+UniRef50_Q9RRB6: S-layer protein, putative|g__Deinococcus.s__Deinococcus_radiodurans	2.7288919307
+UniRef50_A6M0E8: TPR repeat-containing protein	2.7287905874
+UniRef50_A6M0E8: TPR repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	2.7287905874
+UniRef50_A3M893: Putative hemagglutinin/hemolysin-related protein	2.7287618197
+UniRef50_A3M893: Putative hemagglutinin/hemolysin-related protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.7287618197
+UniRef50_A9MUI0	2.7277821258
+UniRef50_A9MUI0|unclassified	2.7277821258
+UniRef50_A9BPD7	2.7273086817
+UniRef50_A9BPD7|unclassified	2.7273086817
+UniRef50_L0WHQ4: Short-chain dehydrogenase/reductase SDR	2.7272118860
+UniRef50_L0WHQ4: Short-chain dehydrogenase/reductase SDR|g__Acinetobacter.s__Acinetobacter_baumannii	2.7272118860
+UniRef50_A1B1W2	2.7261822539
+UniRef50_A1B1W2|unclassified	2.7261822539
+UniRef50_A4WTQ5: Cytochrome c biogenesis factor-like protein	2.7255626642
+UniRef50_A4WTQ5: Cytochrome c biogenesis factor-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.7255626642
+UniRef50_F4LPV2: Oligo-1,6-glucosidase	2.7253687172
+UniRef50_F4LPV2: Oligo-1,6-glucosidase|g__Clostridium.s__Clostridium_beijerinckii	2.7253687172
+UniRef50_A6LX91	2.7252595066
+UniRef50_A6LX91|g__Clostridium.s__Clostridium_beijerinckii	2.7252595066
+UniRef50_E3A0N8: Protease subunit HflC	2.7247956403
+UniRef50_E3A0N8: Protease subunit HflC|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7247956403
+UniRef50_F9Z292	2.7247956403
+UniRef50_F9Z292|g__Propionibacterium.s__Propionibacterium_acnes	2.7247956403
+UniRef50_K2XX98: Tryptophanase	2.7247956403
+UniRef50_K2XX98: Tryptophanase|g__Escherichia.s__Escherichia_coli	2.7247956403
+UniRef50_L1FGZ9: Serine dehydratase alpha chain family protein	2.7247956403
+UniRef50_L1FGZ9: Serine dehydratase alpha chain family protein|g__Escherichia.s__Escherichia_coli	2.7247956403
+UniRef50_Q6ZD75	2.7247956403
+UniRef50_Q6ZD75|unclassified	2.7247956403
+UniRef50_U3U3I5	2.7247956403
+UniRef50_U3U3I5|g__Escherichia.s__Escherichia_coli	2.7247956403
+UniRef50_I1HGI6	2.7245875116
+UniRef50_I1HGI6|unclassified	2.7245875116
+UniRef50_I7BLG8	2.7244304656
+UniRef50_I7BLG8|unclassified	2.7244304656
+UniRef50_B2JNG5: Response regulator receiver modulated diguanylate cyclase	2.7243180697
+UniRef50_B2JNG5: Response regulator receiver modulated diguanylate cyclase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7243180697
+UniRef50_K2J0W9: Cupin	2.7242926490
+UniRef50_K2J0W9: Cupin|unclassified	2.7242926490
+UniRef50_R9E1N5	2.7239262440
+UniRef50_R9E1N5|unclassified	2.7239262440
+UniRef50_E4D2L6	2.7231318054
+UniRef50_E4D2L6|unclassified	2.7231318054
+UniRef50_V9U3V3: Type IIA topoisomerase (DNA gyrase/topo II, topoisomerase IV), A subunit	2.7229420379
+UniRef50_V9U3V3: Type IIA topoisomerase (DNA gyrase/topo II, topoisomerase IV), A subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7229420379
+UniRef50_N6V6H2	2.7228488161
+UniRef50_N6V6H2|unclassified	2.7228488161
+UniRef50_E2XBE1	2.7224055886
+UniRef50_E2XBE1|unclassified	2.7224055886
+UniRef50_G6DMD6	2.7220301592
+UniRef50_G6DMD6|unclassified	2.7220301592
+UniRef50_UPI0002FC4D7F: hypothetical protein	2.7218771845
+UniRef50_UPI0002FC4D7F: hypothetical protein|unclassified	2.7218771845
+UniRef50_J9YU53: rRNA (Guanine-N1-) methyltransferase (Mycinamicin-resistance protein)	2.7200476008
+UniRef50_J9YU53: rRNA (Guanine-N1-) methyltransferase (Mycinamicin-resistance protein)|g__Streptococcus.s__Streptococcus_agalactiae	2.7200476008
+UniRef50_Q0FD62	2.7198222344
+UniRef50_Q0FD62|unclassified	2.7198222344
+UniRef50_K0AYA8: Bifunctional chorismate mutase/prephenate dehydratase	2.7193917962
+UniRef50_K0AYA8: Bifunctional chorismate mutase/prephenate dehydratase|g__Clostridium.s__Clostridium_beijerinckii	2.7193917962
+UniRef50_Q0SPS1: DHH family protein	2.7188304402
+UniRef50_Q0SPS1: DHH family protein|g__Clostridium.s__Clostridium_beijerinckii	2.7188304402
+UniRef50_M3J666	2.7183958123
+UniRef50_M3J666|unclassified	2.7183958123
+UniRef50_Q5XCQ0: Putative 2-dehydropantoate 2-reductase	2.7178756015
+UniRef50_Q5XCQ0: Putative 2-dehydropantoate 2-reductase|g__Streptococcus.s__Streptococcus_agalactiae	2.7178756015
+UniRef50_P11347: Nitrogenase molybdenum-iron protein beta chain	2.7178484778
+UniRef50_P11347: Nitrogenase molybdenum-iron protein beta chain|g__Clostridium.s__Clostridium_beijerinckii	2.5923153678
+UniRef50_P11347: Nitrogenase molybdenum-iron protein beta chain|unclassified	0.1255331100
+UniRef50_UPI000328E03F: PREDICTED: vegetative cell wall protein gp1-like	2.7174387057
+UniRef50_UPI000328E03F: PREDICTED: vegetative cell wall protein gp1-like|unclassified	2.7174387057
+UniRef50_A6VDK4	2.7173913043
+UniRef50_A6VDK4|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7173913043
+UniRef50_O07134: Probable 1,4-dihydroxy-2-naphthoate octaprenyltransferase	2.7173913043
+UniRef50_O07134: Probable 1,4-dihydroxy-2-naphthoate octaprenyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	2.7173913043
+UniRef50_A0A032JMH6	2.7172238088
+UniRef50_A0A032JMH6|unclassified	2.7172238088
+UniRef50_V8G5H9: GntR family transcriptional regulator	2.7169792871
+UniRef50_V8G5H9: GntR family transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	2.7169792871
+UniRef50_A0A024HJZ5	2.7164584752
+UniRef50_A0A024HJZ5|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7164584752
+UniRef50_Q9ZMV7: DNA topoisomerase 1	2.7164148130
+UniRef50_Q9ZMV7: DNA topoisomerase 1|g__Helicobacter.s__Helicobacter_pylori	2.7164148130
+UniRef50_T1AFX9: BolA-like protein (Fragment)	2.7153809050
+UniRef50_T1AFX9: BolA-like protein (Fragment)|unclassified	2.7153809050
+UniRef50_W8RY01	2.7146388683
+UniRef50_W8RY01|unclassified	2.7146388683
+UniRef50_P0A603: RNA polymerase sigma factor SigA	2.7143967886
+UniRef50_P0A603: RNA polymerase sigma factor SigA|g__Propionibacterium.s__Propionibacterium_acnes	2.7143967886
+UniRef50_Q3C148: DNA repair and recombination protein (Fragment)	2.7141837392
+UniRef50_Q3C148: DNA repair and recombination protein (Fragment)|unclassified	2.7141837392
+UniRef50_Q0HT75: Lipid-A-disaccharide synthase	2.7139651285
+UniRef50_Q0HT75: Lipid-A-disaccharide synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7139651285
+UniRef50_UPI00025588CA: phage terminase, partial	2.7136553788
+UniRef50_UPI00025588CA: phage terminase, partial|unclassified	2.7136553788
+UniRef50_UPI000476595B: hypothetical protein	2.7135386913
+UniRef50_UPI000476595B: hypothetical protein|unclassified	2.7135386913
+UniRef50_UPI0003EE5086: hypothetical protein	2.7130310593
+UniRef50_UPI0003EE5086: hypothetical protein|unclassified	2.7130310593
+UniRef50_J9NU01	2.7130292269
+UniRef50_J9NU01|unclassified	2.7130292269
+UniRef50_B9KT30: Transporter, DME family, DMT superfamily	2.7126618454
+UniRef50_B9KT30: Transporter, DME family, DMT superfamily|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.7126618454
+UniRef50_G7M6U6: Integral membrane sensor signal transduction histidine kinase	2.7121701577
+UniRef50_G7M6U6: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	2.7121701577
+UniRef50_M4XJN9: Acyl-CoA dehydrogenase	2.7118656533
+UniRef50_M4XJN9: Acyl-CoA dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7118656533
+UniRef50_UPI000470E435: hypothetical protein	2.7108150728
+UniRef50_UPI000470E435: hypothetical protein|unclassified	2.7108150728
+UniRef50_UPI000473748C: RNA polymerase sigma factor RpoE, partial	2.7102872497
+UniRef50_UPI000473748C: RNA polymerase sigma factor RpoE, partial|unclassified	2.7102872497
+UniRef50_C3P9Q0: 30S ribosomal protein S12	2.7100271003
+UniRef50_C3P9Q0: 30S ribosomal protein S12|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7100271003
+UniRef50_G2B9M8: Electron transport complex protein rnfC domain protein	2.7100271003
+UniRef50_G2B9M8: Electron transport complex protein rnfC domain protein|g__Escherichia.s__Escherichia_coli	2.7100271003
+UniRef50_I3U7X5: DNA-binding protein	2.7100271003
+UniRef50_I3U7X5: DNA-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7100271003
+UniRef50_V1CD68	2.7100271003
+UniRef50_V1CD68|g__Escherichia.s__Escherichia_coli	2.7100271003
+UniRef50_V5T3U2: Iron dicitrate transporter FecR	2.7098260341
+UniRef50_V5T3U2: Iron dicitrate transporter FecR|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7098260341
+UniRef50_UPI0003D31A3C: ABC-type dipeptide/oligopeptide/nickel transport systems	2.7095135722
+UniRef50_UPI0003D31A3C: ABC-type dipeptide/oligopeptide/nickel transport systems|unclassified	2.7095135722
+UniRef50_A1B0S4: Transposase, IS5 family	2.7094860796
+UniRef50_A1B0S4: Transposase, IS5 family|unclassified	2.7094860796
+UniRef50_K9SGS9: ATPase associated with various cellular activities AAA_5	2.7093858114
+UniRef50_K9SGS9: ATPase associated with various cellular activities AAA_5|g__Clostridium.s__Clostridium_beijerinckii	2.7093858114
+UniRef50_Q51576	2.7087549489
+UniRef50_Q51576|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5974025974
+UniRef50_Q51576|unclassified	0.1113523515
+UniRef50_O07599	2.7081996398
+UniRef50_O07599|g__Clostridium.s__Clostridium_beijerinckii	2.7081996398
+UniRef50_R0F7X0: Integral membrane protein MviN (Fragment)	2.7076550230
+UniRef50_R0F7X0: Integral membrane protein MviN (Fragment)|unclassified	2.7076550230
+UniRef50_A0A017I1E7	2.7075208605
+UniRef50_A0A017I1E7|unclassified	2.7075208605
+UniRef50_Q9I733	2.7070280216
+UniRef50_Q9I733|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7070280216
+UniRef50_A3M6B3	2.7070191477
+UniRef50_A3M6B3|g__Acinetobacter.s__Acinetobacter_baumannii	2.7070191477
+UniRef50_B2TR74: P-type ATPase-metal cation transport	2.7068590590
+UniRef50_B2TR74: P-type ATPase-metal cation transport|g__Clostridium.s__Clostridium_beijerinckii	2.7068590590
+UniRef50_F0KHC4: Cell division protein ftsA	2.7068010727
+UniRef50_F0KHC4: Cell division protein ftsA|g__Acinetobacter.s__Acinetobacter_baumannii	2.7068010727
+UniRef50_F0QHU9: Lipid A phosphoethanolamine transferase, associated with polymyxin resistance	2.7064161802
+UniRef50_F0QHU9: Lipid A phosphoethanolamine transferase, associated with polymyxin resistance|g__Acinetobacter.s__Acinetobacter_baumannii	2.7064161802
+UniRef50_T0YQ07: UDP-N-acetylglucosamine pyrophosphorylase	2.7063599459
+UniRef50_T0YQ07: UDP-N-acetylglucosamine pyrophosphorylase|unclassified	2.7063599459
+UniRef50_Q6A9Z4: Glutamate-ammonia-ligase adenylyltransferase	2.7063064482
+UniRef50_Q6A9Z4: Glutamate-ammonia-ligase adenylyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	2.3539456307
+UniRef50_Q6A9Z4: Glutamate-ammonia-ligase adenylyltransferase|unclassified	0.3523608175
+UniRef50_B0VPR5	2.7062237657
+UniRef50_B0VPR5|g__Acinetobacter.s__Acinetobacter_baumannii	2.7062237657
+UniRef50_UPI0001913D33: ribonucleoside-triphosphate reductase	2.7057729841
+UniRef50_UPI0001913D33: ribonucleoside-triphosphate reductase|unclassified	2.7057729841
+UniRef50_N1PMQ8	2.7056365934
+UniRef50_N1PMQ8|unclassified	2.7056365934
+UniRef50_Q1GFR6: Molybdopterin binding domain	2.7048874518
+UniRef50_Q1GFR6: Molybdopterin binding domain|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.7048874518
+UniRef50_UPI00025589BA: organic solvent tolerance protein	2.7047133556
+UniRef50_UPI00025589BA: organic solvent tolerance protein|unclassified	2.7047133556
+UniRef50_U5A6L9	2.7045571276
+UniRef50_U5A6L9|unclassified	2.7045571276
+UniRef50_N0B6U2	2.7042992360
+UniRef50_N0B6U2|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.5000000000
+UniRef50_N0B6U2|unclassified	0.2042992360
+UniRef50_Q0JC62: Os04g0490000 protein	2.7042166769
+UniRef50_Q0JC62: Os04g0490000 protein|unclassified	2.7042166769
+UniRef50_A5UJK6	2.7037153128
+UniRef50_A5UJK6|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.5575447570
+UniRef50_A5UJK6|unclassified	0.1461705558
+UniRef50_UPI00036BBFFE: hypothetical protein	2.7027308725
+UniRef50_UPI00036BBFFE: hypothetical protein|unclassified	2.7027308725
+UniRef50_C3BBY3	2.7027027027
+UniRef50_C3BBY3|g__Clostridium.s__Clostridium_beijerinckii	2.7027027027
+UniRef50_H6PBJ5: ThiW protein	2.7027027027
+UniRef50_H6PBJ5: ThiW protein|g__Streptococcus.s__Streptococcus_agalactiae	2.7027027027
+UniRef50_N3H987: NAD(P)-binding Rossmann-like domain protein (Fragment)	2.7027027027
+UniRef50_N3H987: NAD(P)-binding Rossmann-like domain protein (Fragment)|g__Escherichia.s__Escherichia_coli	2.7027027027
+UniRef50_UPI00037773B7: hypothetical protein	2.7027027027
+UniRef50_UPI00037773B7: hypothetical protein|unclassified	2.7027027027
+UniRef50_V7ZGN6: Phosphatidylserine synthase	2.7027027027
+UniRef50_V7ZGN6: Phosphatidylserine synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.7027027027
+UniRef50_C5XYX3	2.7025937254
+UniRef50_C5XYX3|unclassified	2.7025937254
+UniRef50_Q4L8N2: Efem/EfeO family lipoprotein	2.7023870782
+UniRef50_Q4L8N2: Efem/EfeO family lipoprotein|g__Staphylococcus.s__Staphylococcus_aureus	2.7023870782
+UniRef50_E4Z9V1: SUN-family protein	2.7019137796
+UniRef50_E4Z9V1: SUN-family protein|g__Neisseria.s__Neisseria_meningitidis	2.7019137796
+UniRef50_Z7UB24	2.7006985139
+UniRef50_Z7UB24|unclassified	2.7006985139
+UniRef50_E6SIK1: Xanthine/uracil/vitamin C permease	2.7004597587
+UniRef50_E6SIK1: Xanthine/uracil/vitamin C permease|g__Acinetobacter.s__Acinetobacter_baumannii	1.7543859649
+UniRef50_E6SIK1: Xanthine/uracil/vitamin C permease|g__Deinococcus.s__Deinococcus_radiodurans	0.9460737938
+UniRef50_B3XQI2	2.7004409386
+UniRef50_B3XQI2|unclassified	2.7004409386
+UniRef50_A6M139: von Willebrand factor, type A	2.7003896333
+UniRef50_A6M139: von Willebrand factor, type A|g__Clostridium.s__Clostridium_beijerinckii	2.7003896333
+UniRef50_UPI0004709A96: hypothetical protein	2.6997656406
+UniRef50_UPI0004709A96: hypothetical protein|unclassified	2.6997656406
+UniRef50_R6FSH7: Oxidoreductase	2.6993699649
+UniRef50_R6FSH7: Oxidoreductase|g__Clostridium.s__Clostridium_beijerinckii	2.6993699649
+UniRef50_Q57251: Putative L-lactate permease	2.6991774453
+UniRef50_Q57251: Putative L-lactate permease|g__Neisseria.s__Neisseria_meningitidis	2.6991774453
+UniRef50_W0YKE6: Protein PqqC	2.6990894638
+UniRef50_W0YKE6: Protein PqqC|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4705882353
+UniRef50_W0YKE6: Protein PqqC|unclassified	1.2285012285
+UniRef50_Q8BHV0	2.6988578033
+UniRef50_Q8BHV0|unclassified	2.6988578033
+UniRef50_P26973: DNA topoisomerase 4 subunit A	2.6981110201
+UniRef50_P26973: DNA topoisomerase 4 subunit A|g__Escherichia.s__Escherichia_coli	2.6981110201
+UniRef50_F5M1U3	2.6977764222
+UniRef50_F5M1U3|unclassified	2.6977764222
+UniRef50_G7M113: Stage III sporulation protein AE	2.6966866243
+UniRef50_G7M113: Stage III sporulation protein AE|g__Clostridium.s__Clostridium_beijerinckii	2.6966866243
+UniRef50_A6LYY8: 4Fe-4S ferredoxin, iron-sulfur binding domain protein	2.6965378541
+UniRef50_A6LYY8: 4Fe-4S ferredoxin, iron-sulfur binding domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.6965378541
+UniRef50_S8QT68: Helicase	2.6964912281
+UniRef50_S8QT68: Helicase|g__Streptococcus.s__Streptococcus_agalactiae	2.6964912281
+UniRef50_M9S1K0: Type III secretion protein PcrV	2.6961856050
+UniRef50_M9S1K0: Type III secretion protein PcrV|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6961856050
+UniRef50_UPI000190CC5B: ATPase, AFG1 family protein	2.6956009507
+UniRef50_UPI000190CC5B: ATPase, AFG1 family protein|unclassified	2.6956009507
+UniRef50_A5N275: FolC	2.6954426579
+UniRef50_A5N275: FolC|g__Clostridium.s__Clostridium_beijerinckii	2.6954426579
+UniRef50_Q03SY7: Dipeptide/tripeptide permease	2.6954212500
+UniRef50_Q03SY7: Dipeptide/tripeptide permease|g__Streptococcus.s__Streptococcus_agalactiae	2.6954212500
+UniRef50_Q17ZB6: 30S ribosomal protein S11	2.6954177898
+UniRef50_Q17ZB6: 30S ribosomal protein S11|g__Helicobacter.s__Helicobacter_pylori	2.6954177898
+UniRef50_U6EDN2: Peptidase S26B, signal peptidase	2.6954177898
+UniRef50_U6EDN2: Peptidase S26B, signal peptidase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.6954177898
+UniRef50_P26512: Aspartokinase	2.6951274498
+UniRef50_P26512: Aspartokinase|g__Propionibacterium.s__Propionibacterium_acnes	2.6951274498
+UniRef50_Q6FF15: Exonuclease V, alpha subunit	2.6945310229
+UniRef50_Q6FF15: Exonuclease V, alpha subunit|g__Acinetobacter.s__Acinetobacter_baumannii	2.6945310229
+UniRef50_G7M9J1: Amidohydrolase	2.6944409261
+UniRef50_G7M9J1: Amidohydrolase|g__Clostridium.s__Clostridium_beijerinckii	2.6944409261
+UniRef50_W1YDB0	2.6944055604
+UniRef50_W1YDB0|unclassified	2.6944055604
+UniRef50_Q52520: Tetraheme (Fragment)	2.6941062964
+UniRef50_Q52520: Tetraheme (Fragment)|unclassified	2.6941062964
+UniRef50_UPI00047A8CC8: hypothetical protein	2.6940429870
+UniRef50_UPI00047A8CC8: hypothetical protein|unclassified	2.6940429870
+UniRef50_J9YRE4: Permease	2.6936649059
+UniRef50_J9YRE4: Permease|g__Streptococcus.s__Streptococcus_agalactiae	2.6936649059
+UniRef50_M4UF53: Putative 4-hydroxybenzoyl-CoA thioesterase	2.6936577597
+UniRef50_M4UF53: Putative 4-hydroxybenzoyl-CoA thioesterase|unclassified	2.6936577597
+UniRef50_M9RZM0	2.6935642897
+UniRef50_M9RZM0|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6935642897
+UniRef50_D5AU56	2.6934607061
+UniRef50_D5AU56|unclassified	2.6934607061
+UniRef50_J2XDF8	2.6931322930
+UniRef50_J2XDF8|unclassified	2.6931322930
+UniRef50_K4A2U8	2.6929982047
+UniRef50_K4A2U8|unclassified	2.6929982047
+UniRef50_Q1GEZ2: Phosphoribosyl-ATP pyrophosphatase	2.6926684890
+UniRef50_Q1GEZ2: Phosphoribosyl-ATP pyrophosphatase|unclassified	2.6926684890
+UniRef50_Q9RZ48	2.6919335590
+UniRef50_Q9RZ48|g__Deinococcus.s__Deinococcus_radiodurans	2.4875621891
+UniRef50_Q9RZ48|unclassified	0.2043713699
+UniRef50_G8LI76	2.6916867036
+UniRef50_G8LI76|unclassified	2.6916867036
+UniRef50_S9P164	2.6915276308
+UniRef50_S9P164|unclassified	2.6915276308
+UniRef50_C3DEF5: NADH dehydrogenase	2.6906894589
+UniRef50_C3DEF5: NADH dehydrogenase|unclassified	2.6906894589
+UniRef50_B8FP12: Lipoprotein	2.6900994361
+UniRef50_B8FP12: Lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5575447570
+UniRef50_B8FP12: Lipoprotein|unclassified	0.1325546791
+UniRef50_A6LXY6: PAS/PAC sensor hybrid histidine kinase	2.6896741768
+UniRef50_A6LXY6: PAS/PAC sensor hybrid histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	2.6896741768
+UniRef50_U5R3V9: D-alanine--poly(Phosphoribitol) ligase, subunit 1	2.6892019968
+UniRef50_U5R3V9: D-alanine--poly(Phosphoribitol) ligase, subunit 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6892019968
+UniRef50_A0A010JG94: MATE efflux family protein	2.6889926466
+UniRef50_A0A010JG94: MATE efflux family protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.6889926466
+UniRef50_Q8CQQ2	2.6886050871
+UniRef50_Q8CQQ2|unclassified	2.6886050871
+UniRef50_A3PI56: Transcriptional regulator, MarR family	2.6881720430
+UniRef50_A3PI56: Transcriptional regulator, MarR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.6881720430
+UniRef50_B1IMR8: Transposase C for	2.6881720430
+UniRef50_B1IMR8: Transposase C for|g__Clostridium.s__Clostridium_beijerinckii	2.6881720430
+UniRef50_E0RV96: Rhamnulose-1-phosphate aldolase	2.6881720430
+UniRef50_E0RV96: Rhamnulose-1-phosphate aldolase|g__Clostridium.s__Clostridium_beijerinckii	2.6881720430
+UniRef50_I6S3C3: General secretion pathway protein I	2.6881720430
+UniRef50_I6S3C3: General secretion pathway protein I|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6881720430
+UniRef50_K8DLJ7: Inner membrane transport protein yeaN	2.6881720430
+UniRef50_K8DLJ7: Inner membrane transport protein yeaN|g__Escherichia.s__Escherichia_coli	2.6881720430
+UniRef50_Q0E830: W0075	2.6881720430
+UniRef50_Q0E830: W0075|g__Escherichia.s__Escherichia_coli	2.6881720430
+UniRef50_Q6A9G3: Conjugal transfer protein (TraA-like protein)	2.6881720430
+UniRef50_Q6A9G3: Conjugal transfer protein (TraA-like protein)|g__Propionibacterium.s__Propionibacterium_acnes	2.6881720430
+UniRef50_R5EMC4: High affinity branched-chain amino acid ABC transporter permease protein	2.6881720430
+UniRef50_R5EMC4: High affinity branched-chain amino acid ABC transporter permease protein|g__Clostridium.s__Clostridium_beijerinckii	2.6881720430
+UniRef50_V9UME2: Peptidase	2.6881720430
+UniRef50_V9UME2: Peptidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6881720430
+UniRef50_E2ZR66	2.6877795345
+UniRef50_E2ZR66|unclassified	2.6877795345
+UniRef50_A3P661: Oxidoreductase, FAD-binding	2.6869458447
+UniRef50_A3P661: Oxidoreductase, FAD-binding|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.6869458447
+UniRef50_A4IP74: Mannonate dehydratase	2.6866298191
+UniRef50_A4IP74: Mannonate dehydratase|g__Streptococcus.s__Streptococcus_agalactiae	2.5286670335
+UniRef50_A4IP74: Mannonate dehydratase|unclassified	0.1579627857
+UniRef50_UPI000344160C	2.6861089793
+UniRef50_UPI000344160C|unclassified	2.6861089793
+UniRef50_A3PJ07	2.6853389098
+UniRef50_A3PJ07|unclassified	2.6853389098
+UniRef50_UPI000472CF0E: ArsR family transcriptional regulator	2.6847068804
+UniRef50_UPI000472CF0E: ArsR family transcriptional regulator|unclassified	2.6847068804
+UniRef50_A6LQR1: S-layer domain protein domain	2.6834104128
+UniRef50_A6LQR1: S-layer domain protein domain|g__Clostridium.s__Clostridium_beijerinckii	2.6834104128
+UniRef50_Q9I3E5	2.6831989634
+UniRef50_Q9I3E5|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6831989634
+UniRef50_P11460: Ferric anguibactin-binding protein	2.6828904282
+UniRef50_P11460: Ferric anguibactin-binding protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.6828904282
+UniRef50_Q9RAJ5: Bifunctional purine biosynthesis protein PurH	2.6828338876
+UniRef50_Q9RAJ5: Bifunctional purine biosynthesis protein PurH|g__Propionibacterium.s__Propionibacterium_acnes	2.6828338876
+UniRef50_B2HYZ7: tRNA/tmRNA (uracil-C(5))-methyltransferase	2.6819824692
+UniRef50_B2HYZ7: tRNA/tmRNA (uracil-C(5))-methyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	2.6819824692
+UniRef50_M9VIC2: L-xylulose 5-phosphate 3-epimerase	2.6819096923
+UniRef50_M9VIC2: L-xylulose 5-phosphate 3-epimerase|g__Propionibacterium.s__Propionibacterium_acnes	2.6819096923
+UniRef50_O59829: Probable nitrilase C965.09	2.6810659789
+UniRef50_O59829: Probable nitrilase C965.09|g__Clostridium.s__Clostridium_beijerinckii	2.6810659789
+UniRef50_A6M050: Transcriptional regulator, LysR family	2.6809651475
+UniRef50_A6M050: Transcriptional regulator, LysR family|g__Clostridium.s__Clostridium_beijerinckii	2.6809651475
+UniRef50_D3E087: Transcriptional regulator AsnC family	2.6809651475
+UniRef50_D3E087: Transcriptional regulator AsnC family|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.6809651475
+UniRef50_F0MEW1	2.6809651475
+UniRef50_F0MEW1|g__Neisseria.s__Neisseria_meningitidis	2.6809651475
+UniRef50_Q6FE82	2.6809651475
+UniRef50_Q6FE82|g__Acinetobacter.s__Acinetobacter_baumannii	2.6809651475
+UniRef50_UPI0003505C5C: PREDICTED: translation initiation factor IF-2-like	2.6809651475
+UniRef50_UPI0003505C5C: PREDICTED: translation initiation factor IF-2-like|unclassified	2.6809651475
+UniRef50_A7FWJ9: Cysteine desulfurase IscS	2.6798079513
+UniRef50_A7FWJ9: Cysteine desulfurase IscS|g__Clostridium.s__Clostridium_beijerinckii	2.6035075661
+UniRef50_A7FWJ9: Cysteine desulfurase IscS|unclassified	0.0763003852
+UniRef50_J9P3T3	2.6794663417
+UniRef50_J9P3T3|unclassified	2.6794663417
+UniRef50_Q9RYF4: Oxidoreductase, short-chain dehydrogenase/reductase family	2.6788570062
+UniRef50_Q9RYF4: Oxidoreductase, short-chain dehydrogenase/reductase family|g__Deinococcus.s__Deinococcus_radiodurans	2.6788570062
+UniRef50_UPI0003753C85: hypothetical protein	2.6786013850
+UniRef50_UPI0003753C85: hypothetical protein|unclassified	2.6786013850
+UniRef50_U8CNV5	2.6785935250
+UniRef50_U8CNV5|unclassified	2.6785935250
+UniRef50_R6GQC1: Peptidase U32	2.6783812303
+UniRef50_R6GQC1: Peptidase U32|g__Clostridium.s__Clostridium_beijerinckii	2.6783812303
+UniRef50_H1UU45: Dehydrogenase	2.6783011138
+UniRef50_H1UU45: Dehydrogenase|unclassified	2.6783011138
+UniRef50_A6LQS5: Transcriptional regulator, LysR family	2.6779311189
+UniRef50_A6LQS5: Transcriptional regulator, LysR family|g__Clostridium.s__Clostridium_beijerinckii	2.6779311189
+UniRef50_H1SDN8	2.6770876170
+UniRef50_H1SDN8|unclassified	2.6770876170
+UniRef50_Q4UU98: Probable chemoreceptor glutamine deamidase CheD	2.6767108452
+UniRef50_Q4UU98: Probable chemoreceptor glutamine deamidase CheD|unclassified	2.6767108452
+UniRef50_R9ZHA8: Histidine kinase	2.6763380459
+UniRef50_R9ZHA8: Histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6763380459
+UniRef50_D7GFL4: Permease	2.6757539496
+UniRef50_D7GFL4: Permease|g__Propionibacterium.s__Propionibacterium_acnes	2.6757539496
+UniRef50_W0A6T6: Peroxidase	2.6757266905
+UniRef50_W0A6T6: Peroxidase|g__Deinococcus.s__Deinococcus_radiodurans	2.6757266905
+UniRef50_F3T921: DoxX family protein	2.6755003127
+UniRef50_F3T921: DoxX family protein|unclassified	2.6755003127
+UniRef50_B7V1I5: S-adenosylmethionine decarboxylase proenzyme	2.6754975549
+UniRef50_B7V1I5: S-adenosylmethionine decarboxylase proenzyme|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1186440678
+UniRef50_B7V1I5: S-adenosylmethionine decarboxylase proenzyme|unclassified	0.5568534872
+UniRef50_UPI00029A1476: large conductance mechanosensitive channel protein MscL	2.6753183627
+UniRef50_UPI00029A1476: large conductance mechanosensitive channel protein MscL|unclassified	2.6753183627
+UniRef50_E6TTW0: Cyclic nucleotide-binding protein	2.6750207421
+UniRef50_E6TTW0: Cyclic nucleotide-binding protein|g__Clostridium.s__Clostridium_beijerinckii	2.6750207421
+UniRef50_UPI0003B2ED70: hypothetical protein	2.6744681562
+UniRef50_UPI0003B2ED70: hypothetical protein|unclassified	2.6744681562
+UniRef50_A3M3F4: Urease accessory protein UreF	2.6737967914
+UniRef50_A3M3F4: Urease accessory protein UreF|g__Acinetobacter.s__Acinetobacter_baumannii	2.6737967914
+UniRef50_A6LRK0: UspA domain protein	2.6737967914
+UniRef50_A6LRK0: UspA domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.6737967914
+UniRef50_A6M178	2.6737967914
+UniRef50_A6M178|g__Clostridium.s__Clostridium_beijerinckii	2.6737967914
+UniRef50_D8GSG1: Predicted transcriptional regulator, AraC family	2.6737967914
+UniRef50_D8GSG1: Predicted transcriptional regulator, AraC family|g__Clostridium.s__Clostridium_beijerinckii	2.6737967914
+UniRef50_M9VHY4: DeoR family transcriptional regulator	2.6737967914
+UniRef50_M9VHY4: DeoR family transcriptional regulator|g__Propionibacterium.s__Propionibacterium_acnes	2.6737967914
+UniRef50_Q5LW04: Membrane protein, putative	2.6737967914
+UniRef50_Q5LW04: Membrane protein, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.6737967914
+UniRef50_Q9JZ56: Aspartate 1-decarboxylase	2.6737967914
+UniRef50_Q9JZ56: Aspartate 1-decarboxylase|g__Neisseria.s__Neisseria_meningitidis	2.6737967914
+UniRef50_R0RZA1: Sterol O-acyltransferase 2 domain protein	2.6737967914
+UniRef50_R0RZA1: Sterol O-acyltransferase 2 domain protein|g__Neisseria.s__Neisseria_meningitidis	2.6737967914
+UniRef50_R4REY9: Pyrazinamidase/nicotinamidase PncA	2.6737967914
+UniRef50_R4REY9: Pyrazinamidase/nicotinamidase PncA|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6737967914
+UniRef50_X0YW51: Marine sediment metagenome DNA, contig: S01H4_C03719 (Fragment)	2.6737967914
+UniRef50_X0YW51: Marine sediment metagenome DNA, contig: S01H4_C03719 (Fragment)|unclassified	2.6737967914
+UniRef50_J7QKH1	2.6728000140
+UniRef50_J7QKH1|unclassified	2.6728000140
+UniRef50_UPI00031DDDF2: hypothetical protein	2.6724402183
+UniRef50_UPI00031DDDF2: hypothetical protein|unclassified	2.6724402183
+UniRef50_P76129: Oxygen sensor protein DosP	2.6719396999
+UniRef50_P76129: Oxygen sensor protein DosP|g__Escherichia.s__Escherichia_coli	2.6719396999
+UniRef50_K9H521: Protoporphyrinogen IX oxidase	2.6718493525
+UniRef50_K9H521: Protoporphyrinogen IX oxidase|unclassified	2.6718493525
+UniRef50_W7Q2S0	2.6714209454
+UniRef50_W7Q2S0|unclassified	2.6714209454
+UniRef50_E9CMU3	2.6712928121
+UniRef50_E9CMU3|unclassified	2.6712928121
+UniRef50_S6TM20	2.6707209148
+UniRef50_S6TM20|unclassified	2.6707209148
+UniRef50_L6WWY8	2.6702712057
+UniRef50_L6WWY8|unclassified	2.6702712057
+UniRef50_I7JU61	2.6702037969
+UniRef50_I7JU61|unclassified	2.6702037969
+UniRef50_UPI00036005C8: Cro/Cl family transcriptional regulator	2.6698820285
+UniRef50_UPI00036005C8: Cro/Cl family transcriptional regulator|unclassified	2.6698820285
+UniRef50_C1DN19: Oxidoreductase protein	2.6698752634
+UniRef50_C1DN19: Oxidoreductase protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6698752634
+UniRef50_UPI0003B755F7: integrase, partial	2.6694194691
+UniRef50_UPI0003B755F7: integrase, partial|unclassified	2.6694194691
+UniRef50_Q0BEA7: Fumarate reductase/succinate dehydrogenase flavoprotein domain protein	2.6690862833
+UniRef50_Q0BEA7: Fumarate reductase/succinate dehydrogenase flavoprotein domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6690862833
+UniRef50_I4Y1U6	2.6689727485
+UniRef50_I4Y1U6|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1682346208
+UniRef50_I4Y1U6|unclassified	0.5007381277
+UniRef50_G7M347: ABC transporter related protein	2.6685593784
+UniRef50_G7M347: ABC transporter related protein|g__Clostridium.s__Clostridium_beijerinckii	2.6685593784
+UniRef50_A0A011NIA5	2.6682830453
+UniRef50_A0A011NIA5|unclassified	2.6682830453
+UniRef50_W8S6L2	2.6681264949
+UniRef50_W8S6L2|unclassified	2.6681264949
+UniRef50_O34645: Alpha-galactosidase	2.6678129656
+UniRef50_O34645: Alpha-galactosidase|g__Clostridium.s__Clostridium_beijerinckii	2.6678129656
+UniRef50_S5R644: Ferrichrome ABC transporter, ferrichrome-binding protein	2.6672960752
+UniRef50_S5R644: Ferrichrome ABC transporter, ferrichrome-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	2.6672960752
+UniRef50_M2F7K0: Putative transposase (Fragment)	2.6672879317
+UniRef50_M2F7K0: Putative transposase (Fragment)|unclassified	2.6672879317
+UniRef50_UPI00035F62EF: hypothetical protein	2.6672450945
+UniRef50_UPI00035F62EF: hypothetical protein|unclassified	2.6672450945
+UniRef50_D7BLM0: Extracellular solute-binding protein family 5	2.6669742038
+UniRef50_D7BLM0: Extracellular solute-binding protein family 5|g__Propionibacterium.s__Propionibacterium_acnes	2.6669742038
+UniRef50_E9TLN2	2.6667889291
+UniRef50_E9TLN2|unclassified	2.6667889291
+UniRef50_A0A023RUE3	2.6666666667
+UniRef50_A0A023RUE3|g__Acinetobacter.s__Acinetobacter_baumannii	2.6666666667
+UniRef50_A4WQ46: Response regulator receiver protein	2.6666666667
+UniRef50_A4WQ46: Response regulator receiver protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.6666666667
+UniRef50_A5UJD5: Probable hydrogenase nickel incorporation protein HypA	2.6666666667
+UniRef50_A5UJD5: Probable hydrogenase nickel incorporation protein HypA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.6666666667
+UniRef50_A6LTH3: Phosphotransferase system PTS, lactose/cellobiose-specific IIA subunit	2.6666666667
+UniRef50_A6LTH3: Phosphotransferase system PTS, lactose/cellobiose-specific IIA subunit|g__Clostridium.s__Clostridium_beijerinckii	2.6666666667
+UniRef50_A9M366	2.6666666667
+UniRef50_A9M366|g__Neisseria.s__Neisseria_meningitidis	2.6666666667
+UniRef50_B4UHS9: Succinate dehydrogenase/fumarate reductase iron-sulfur subunit	2.6666666667
+UniRef50_B4UHS9: Succinate dehydrogenase/fumarate reductase iron-sulfur subunit|g__Propionibacterium.s__Propionibacterium_acnes	2.6666666667
+UniRef50_B7UVJ2	2.6666666667
+UniRef50_B7UVJ2|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6666666667
+UniRef50_D2PY67: ABC transporter related protein	2.6666666667
+UniRef50_D2PY67: ABC transporter related protein|g__Propionibacterium.s__Propionibacterium_acnes	2.6666666667
+UniRef50_E8QFC4	2.6666666667
+UniRef50_E8QFC4|g__Helicobacter.s__Helicobacter_pylori	2.6666666667
+UniRef50_M4WZZ1: Type VI secretion protein DotU	2.6666666667
+UniRef50_M4WZZ1: Type VI secretion protein DotU|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6666666667
+UniRef50_M4ZG23: Transcriptional regulator, MarR family	2.6666666667
+UniRef50_M4ZG23: Transcriptional regulator, MarR family|g__Streptococcus.s__Streptococcus_mutans	2.6666666667
+UniRef50_Q60AW7: DNA polymerase III, epsilon subunit	2.6666666667
+UniRef50_Q60AW7: DNA polymerase III, epsilon subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6666666667
+UniRef50_T1Y5J1	2.6666666667
+UniRef50_T1Y5J1|g__Staphylococcus.s__Staphylococcus_aureus	2.6666666667
+UniRef50_Q82X69: DNA-directed RNA polymerase subunit alpha	2.6665057989
+UniRef50_Q82X69: DNA-directed RNA polymerase subunit alpha|g__Neisseria.s__Neisseria_meningitidis	2.5904582922
+UniRef50_Q82X69: DNA-directed RNA polymerase subunit alpha|unclassified	0.0760475067
+UniRef50_UPI0003780D5B: hypothetical protein, partial	2.6664021812
+UniRef50_UPI0003780D5B: hypothetical protein, partial|unclassified	2.6664021812
+UniRef50_B2TQB8: Minor teichoic acid biosynthesis protein GgaB	2.6662462336
+UniRef50_B2TQB8: Minor teichoic acid biosynthesis protein GgaB|g__Clostridium.s__Clostridium_beijerinckii	2.6662462336
+UniRef50_D5E389: Relaxase/mobilization nuclease domain protein	2.6660779770
+UniRef50_D5E389: Relaxase/mobilization nuclease domain protein|unclassified	2.6660779770
+UniRef50_C4B488: Short-chain dehydrogenase/reductase SDR (Fragment)	2.6651538009
+UniRef50_C4B488: Short-chain dehydrogenase/reductase SDR (Fragment)|unclassified	2.6651538009
+UniRef50_R5A2K0: Candidate zinc-binding lipoprotein ZinT	2.6651387488
+UniRef50_R5A2K0: Candidate zinc-binding lipoprotein ZinT|g__Streptococcus.s__Streptococcus_agalactiae	2.6651387488
+UniRef50_K7ZRM3	2.6636534367
+UniRef50_K7ZRM3|unclassified	2.6636534367
+UniRef50_U9YFW5	2.6632357057
+UniRef50_U9YFW5|unclassified	2.6632357057
+UniRef50_U5MVV7: HTH-type transcriptional regulator YybE	2.6630300370
+UniRef50_U5MVV7: HTH-type transcriptional regulator YybE|g__Clostridium.s__Clostridium_beijerinckii	2.6630300370
+UniRef50_Q8FII1	2.6627046772
+UniRef50_Q8FII1|unclassified	2.6627046772
+UniRef50_Q9RZD6: Ferredoxin-nitrite reductase	2.6616569732
+UniRef50_Q9RZD6: Ferredoxin-nitrite reductase|g__Deinococcus.s__Deinococcus_radiodurans	2.6616569732
+UniRef50_UPI00036700D3: hypothetical protein	2.6605656494
+UniRef50_UPI00036700D3: hypothetical protein|unclassified	2.6605656494
+UniRef50_X6FV75	2.6602124621
+UniRef50_X6FV75|unclassified	2.6602124621
+UniRef50_T0SXL1: ABC transporter multidrug efflux pump	2.6601655100
+UniRef50_T0SXL1: ABC transporter multidrug efflux pump|g__Acinetobacter.s__Acinetobacter_baumannii	2.6601655100
+UniRef50_A0A023RVI8: Magnesium transporter	2.6595744681
+UniRef50_A0A023RVI8: Magnesium transporter|g__Acinetobacter.s__Acinetobacter_baumannii	2.6595744681
+UniRef50_K4QB48	2.6595744681
+UniRef50_K4QB48|g__Streptococcus.s__Streptococcus_agalactiae	2.6595744681
+UniRef50_Q2GNY4	2.6595744681
+UniRef50_Q2GNY4|unclassified	2.6595744681
+UniRef50_S5D395: Enoyl-CoA hydratase/carnithine racemase	2.6595744681
+UniRef50_S5D395: Enoyl-CoA hydratase/carnithine racemase|g__Acinetobacter.s__Acinetobacter_baumannii	2.6595744681
+UniRef50_W1FCR9	2.6593528338
+UniRef50_W1FCR9|unclassified	2.6593528338
+UniRef50_A4ESQ5	2.6592398367
+UniRef50_A4ESQ5|unclassified	2.6592398367
+UniRef50_Q1IWN0: Carbamoyl-phosphate synthase small chain	2.6589822888
+UniRef50_Q1IWN0: Carbamoyl-phosphate synthase small chain|g__Deinococcus.s__Deinococcus_radiodurans	2.5380710660
+UniRef50_Q1IWN0: Carbamoyl-phosphate synthase small chain|unclassified	0.1209112228
+UniRef50_UPI000376C688: MULTISPECIES: hypothetical protein	2.6583108004
+UniRef50_UPI000376C688: MULTISPECIES: hypothetical protein|unclassified	2.6583108004
+UniRef50_W1A598	2.6582637379
+UniRef50_W1A598|unclassified	2.6582637379
+UniRef50_UPI000383CF03: PREDICTED: atherin-like	2.6575448480
+UniRef50_UPI000383CF03: PREDICTED: atherin-like|unclassified	2.6575448480
+UniRef50_U7DIY7: Copper oxidase	2.6573942898
+UniRef50_U7DIY7: Copper oxidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6573942898
+UniRef50_Q92ID9: NADH-quinone oxidoreductase subunit E	2.6571063012
+UniRef50_Q92ID9: NADH-quinone oxidoreductase subunit E|unclassified	2.6571063012
+UniRef50_L8MIC1	2.6563104050
+UniRef50_L8MIC1|unclassified	2.6563104050
+UniRef50_H6LJB5: Chemotaxis protein methyltransferase CheR2	2.6560634787
+UniRef50_H6LJB5: Chemotaxis protein methyltransferase CheR2|g__Clostridium.s__Clostridium_beijerinckii	2.6560634787
+UniRef50_N6A660	2.6559215796
+UniRef50_N6A660|unclassified	2.6559215796
+UniRef50_UPI00016A3FDC: Biopolymer transport protein ExbD/TolR	2.6556778113
+UniRef50_UPI00016A3FDC: Biopolymer transport protein ExbD/TolR|unclassified	2.6556778113
+UniRef50_J7QYV2: Conserved domain protein	2.6551839694
+UniRef50_J7QYV2: Conserved domain protein|g__Escherichia.s__Escherichia_coli	2.3696682464
+UniRef50_J7QYV2: Conserved domain protein|unclassified	0.2855157230
+UniRef50_A6LQJ4: Integral membrane sensor signal transduction histidine kinase	2.6551268326
+UniRef50_A6LQJ4: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	2.6551268326
+UniRef50_Q04945: NADH-dependent butanol dehydrogenase B	2.6549149992
+UniRef50_Q04945: NADH-dependent butanol dehydrogenase B|g__Clostridium.s__Clostridium_beijerinckii	2.5702165056
+UniRef50_Q04945: NADH-dependent butanol dehydrogenase B|unclassified	0.0846984936
+UniRef50_Q8KE45: UPF0324 membrane protein CT0845	2.6548965700
+UniRef50_Q8KE45: UPF0324 membrane protein CT0845|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.6548965700
+UniRef50_S5CLC3	2.6547878455
+UniRef50_S5CLC3|g__Acinetobacter.s__Acinetobacter_baumannii	2.6547878455
+UniRef50_D9RIX1	2.6535441174
+UniRef50_D9RIX1|unclassified	2.6535441174
+UniRef50_B9E4P1	2.6531579567
+UniRef50_B9E4P1|g__Clostridium.s__Clostridium_beijerinckii	2.6531579567
+UniRef50_UPI00014D324F: ABC transporter permease	2.6531042180
+UniRef50_UPI00014D324F: ABC transporter permease|unclassified	2.6531042180
+UniRef50_A4WNP6	2.6525198939
+UniRef50_A4WNP6|unclassified	2.6525198939
+UniRef50_A8GLA8: Triosephosphate isomerase	2.6525198939
+UniRef50_A8GLA8: Triosephosphate isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6525198939
+UniRef50_A9M1X9	2.6525198939
+UniRef50_A9M1X9|g__Neisseria.s__Neisseria_meningitidis	2.6525198939
+UniRef50_B9AGH5: DGC domain protein	2.6525198939
+UniRef50_B9AGH5: DGC domain protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.6525198939
+UniRef50_C5BT52	2.6525198939
+UniRef50_C5BT52|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6525198939
+UniRef50_J9YRZ3	2.6525198939
+UniRef50_J9YRZ3|g__Streptococcus.s__Streptococcus_agalactiae	2.6525198939
+UniRef50_Q5P5S0	2.6525198939
+UniRef50_Q5P5S0|unclassified	2.6525198939
+UniRef50_Q7N0W9: Complete genome; segment 13/17	2.6525198939
+UniRef50_Q7N0W9: Complete genome; segment 13/17|unclassified	2.6525198939
+UniRef50_W0A553	2.6525198939
+UniRef50_W0A553|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.6525198939
+UniRef50_R5A083: Transcriptional regulator, RofA	2.6524686742
+UniRef50_R5A083: Transcriptional regulator, RofA|g__Streptococcus.s__Streptococcus_agalactiae	2.6524686742
+UniRef50_B2IJK8: Exodeoxyribonuclease 7 large subunit	2.6524285366
+UniRef50_B2IJK8: Exodeoxyribonuclease 7 large subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.6037012178
+UniRef50_B2IJK8: Exodeoxyribonuclease 7 large subunit|unclassified	0.0487273188
+UniRef50_M5RG91: Glutamate binding periplasmic protein	2.6518321391
+UniRef50_M5RG91: Glutamate binding periplasmic protein|unclassified	2.6518321391
+UniRef50_G7U6T9: Bacterial extracellular solute-binding protein, family 5	2.6510366907
+UniRef50_G7U6T9: Bacterial extracellular solute-binding protein, family 5|g__Propionibacterium.s__Propionibacterium_acnes	2.6510366907
+UniRef50_H5PBU8: Putative membrane protein	2.6507632582
+UniRef50_H5PBU8: Putative membrane protein|g__Escherichia.s__Escherichia_coli	2.6507632582
+UniRef50_UPI000380EA9D: MULTISPECIES: hypothetical protein	2.6507419556
+UniRef50_UPI000380EA9D: MULTISPECIES: hypothetical protein|unclassified	2.6507419556
+UniRef50_A6M0D8	2.6501968342
+UniRef50_A6M0D8|g__Clostridium.s__Clostridium_beijerinckii	2.6501968342
+UniRef50_Q14GX0: Chaperone protein DnaJ	2.6500143853
+UniRef50_Q14GX0: Chaperone protein DnaJ|g__Acinetobacter.s__Acinetobacter_baumannii	1.4749262537
+UniRef50_Q14GX0: Chaperone protein DnaJ|g__Neisseria.s__Neisseria_meningitidis	1.1750881316
+UniRef50_W6LYV4: Putative dinitrogenase iron-molybdenum cofactor biosynthesis protein	2.6499970510
+UniRef50_W6LYV4: Putative dinitrogenase iron-molybdenum cofactor biosynthesis protein|unclassified	2.6499970510
+UniRef50_B0VLQ7: General secretion pathway protein F	2.6496526712
+UniRef50_B0VLQ7: General secretion pathway protein F|g__Acinetobacter.s__Acinetobacter_baumannii	2.6496526712
+UniRef50_UPI000364F717: hypothetical protein	2.6490592676
+UniRef50_UPI000364F717: hypothetical protein|unclassified	2.6490592676
+UniRef50_E0NA78	2.6490070421
+UniRef50_E0NA78|unclassified	2.6490070421
+UniRef50_E7C7F2	2.6489617043
+UniRef50_E7C7F2|unclassified	2.6489617043
+UniRef50_A3W182: Membrane protein, putative	2.6485437407
+UniRef50_A3W182: Membrane protein, putative|unclassified	2.6485437407
+UniRef50_D3F440	2.6482504066
+UniRef50_D3F440|unclassified	2.6482504066
+UniRef50_UPI0001911F20: hypothetical protein, partial	2.6481683469
+UniRef50_UPI0001911F20: hypothetical protein, partial|unclassified	2.6481683469
+UniRef50_C5QR19	2.6473662813
+UniRef50_C5QR19|unclassified	2.6473662813
+UniRef50_B9KJK5	2.6455950240
+UniRef50_B9KJK5|unclassified	2.6455950240
+UniRef50_A1V7U0: Flagellar basal-body rod protein FlgG	2.6455026455
+UniRef50_A1V7U0: Flagellar basal-body rod protein FlgG|g__Escherichia.s__Escherichia_coli	2.6455026455
+UniRef50_A4WT07: Flagellin-specific chaperone FliS-like protein	2.6455026455
+UniRef50_A4WT07: Flagellin-specific chaperone FliS-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.6455026455
+UniRef50_A7MGP9	2.6455026455
+UniRef50_A7MGP9|g__Escherichia.s__Escherichia_coli	2.6455026455
+UniRef50_B2TPF9: Precorrin-6x reductase	2.6455026455
+UniRef50_B2TPF9: Precorrin-6x reductase|g__Clostridium.s__Clostridium_beijerinckii	2.6455026455
+UniRef50_B2V2R9	2.6455026455
+UniRef50_B2V2R9|g__Clostridium.s__Clostridium_beijerinckii	2.6455026455
+UniRef50_F0RPF3	2.6455026455
+UniRef50_F0RPF3|g__Deinococcus.s__Deinococcus_radiodurans	2.6455026455
+UniRef50_Q3IVE1: Short chain dehydrogenase	2.6455026455
+UniRef50_Q3IVE1: Short chain dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.6455026455
+UniRef50_Q9I4N6: B-type flagellar protein FliS	2.6455026455
+UniRef50_Q9I4N6: B-type flagellar protein FliS|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6455026455
+UniRef50_Q9I626: UPF0271 protein PA0492	2.6455026455
+UniRef50_Q9I626: UPF0271 protein PA0492|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6455026455
+UniRef50_R5GD40: BMC domain protein	2.6455026455
+UniRef50_R5GD40: BMC domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.6455026455
+UniRef50_B0UBE5: NAD-dependent epimerase/dehydratase	2.6453804796
+UniRef50_B0UBE5: NAD-dependent epimerase/dehydratase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.6453804796
+UniRef50_M1MTG9: Tetratricopeptide TPR_2 repeat-containing protein	2.6452532094
+UniRef50_M1MTG9: Tetratricopeptide TPR_2 repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	2.6452532094
+UniRef50_UPI00046A5502: sugar ABC transporter permease	2.6450909911
+UniRef50_UPI00046A5502: sugar ABC transporter permease|unclassified	2.6450909911
+UniRef50_Q9LA00	2.6447274837
+UniRef50_Q9LA00|unclassified	2.6447274837
+UniRef50_UPI000464A0A1: hypothetical protein	2.6446428225
+UniRef50_UPI000464A0A1: hypothetical protein|unclassified	2.6446428225
+UniRef50_UPI0003B2FB00: hypothetical protein	2.6446313900
+UniRef50_UPI0003B2FB00: hypothetical protein|unclassified	2.6446313900
+UniRef50_B4RQC6: Lipid II flippase FtsW	2.6443487748
+UniRef50_B4RQC6: Lipid II flippase FtsW|g__Neisseria.s__Neisseria_meningitidis	2.6443487748
+UniRef50_Q26HR0	2.6440700426
+UniRef50_Q26HR0|unclassified	2.6440700426
+UniRef50_UPI0004713629: hypothetical protein	2.6439890923
+UniRef50_UPI0004713629: hypothetical protein|unclassified	2.6439890923
+UniRef50_W9VLN3	2.6438950339
+UniRef50_W9VLN3|unclassified	2.6438950339
+UniRef50_D4GMR6	2.6437830036
+UniRef50_D4GMR6|unclassified	2.6437830036
+UniRef50_R5PZK9: Aldo/keto reductase	2.6435521274
+UniRef50_R5PZK9: Aldo/keto reductase|g__Clostridium.s__Clostridium_beijerinckii	2.6435521274
+UniRef50_Q28W37: Light-independent protochlorophyllide reductase iron-sulfur ATP-binding protein	2.6433171837
+UniRef50_Q28W37: Light-independent protochlorophyllide reductase iron-sulfur ATP-binding protein|unclassified	2.6433171837
+UniRef50_C1F6N7: Conserved domain protein	2.6423446695
+UniRef50_C1F6N7: Conserved domain protein|unclassified	2.6423446695
+UniRef50_UPI0003463399: hypothetical protein	2.6420800712
+UniRef50_UPI0003463399: hypothetical protein|unclassified	2.6420800712
+UniRef50_UPI00035D9D03: hypothetical protein	2.6417571217
+UniRef50_UPI00035D9D03: hypothetical protein|unclassified	2.6417571217
+UniRef50_UPI00039D1855: cytochrome C	2.6411755302
+UniRef50_UPI00039D1855: cytochrome C|unclassified	2.6411755302
+UniRef50_Q5DQH5	2.6402692658
+UniRef50_Q5DQH5|unclassified	2.6402692658
+UniRef50_UPI0002260A82: AraC family transcriptional regulator	2.6400830040
+UniRef50_UPI0002260A82: AraC family transcriptional regulator|unclassified	2.6400830040
+UniRef50_R9CU66	2.6393930207
+UniRef50_R9CU66|unclassified	2.6393930207
+UniRef50_G7MD43: Major facilitator superfamily MFS_1	2.6392823042
+UniRef50_G7MD43: Major facilitator superfamily MFS_1|g__Clostridium.s__Clostridium_beijerinckii	2.6392823042
+UniRef50_A6LQW6: UPF0272 protein Cbei_0559	2.6392576872
+UniRef50_A6LQW6: UPF0272 protein Cbei_0559|g__Clostridium.s__Clostridium_beijerinckii	2.6392576872
+UniRef50_P0AF49: UPF0047 protein YjbQ	2.6386628094
+UniRef50_P0AF49: UPF0047 protein YjbQ|g__Escherichia.s__Escherichia_coli	2.4630541872
+UniRef50_P0AF49: UPF0047 protein YjbQ|unclassified	0.1756086222
+UniRef50_C3K789	2.6385224274
+UniRef50_C3K789|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6385224274
+UniRef50_D3E3X3	2.6385224274
+UniRef50_D3E3X3|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.6385224274
+UniRef50_L4JRF0	2.6385224274
+UniRef50_L4JRF0|g__Escherichia.s__Escherichia_coli	2.6385224274
+UniRef50_P21640: Precorrin-3B C(17)-methyltransferase	2.6385224274
+UniRef50_P21640: Precorrin-3B C(17)-methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.6385224274
+UniRef50_Q0RCK1: N-acetylglucosamine-6-phosphate deacetylase	2.6385224274
+UniRef50_Q0RCK1: N-acetylglucosamine-6-phosphate deacetylase|g__Propionibacterium.s__Propionibacterium_acnes	2.6385224274
+UniRef50_Q74CZ6: 5'-nucleotidase SurE	2.6385224274
+UniRef50_Q74CZ6: 5'-nucleotidase SurE|g__Acinetobacter.s__Acinetobacter_baumannii	2.6385224274
+UniRef50_W1P6J2	2.6385224274
+UniRef50_W1P6J2|unclassified	2.6385224274
+UniRef50_K1X086	2.6381347274
+UniRef50_K1X086|unclassified	2.6381347274
+UniRef50_D4JIJ4: Saccharopine dehydrogenase and related proteins	2.6380624723
+UniRef50_D4JIJ4: Saccharopine dehydrogenase and related proteins|g__Clostridium.s__Clostridium_beijerinckii	2.6380624723
+UniRef50_UPI000379F62F: hypothetical protein	2.6373302043
+UniRef50_UPI000379F62F: hypothetical protein|unclassified	2.6373302043
+UniRef50_U6AE16: Methyl-accepting chemotaxis protein	2.6370120120
+UniRef50_U6AE16: Methyl-accepting chemotaxis protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6370120120
+UniRef50_D0ZFU6	2.6368921152
+UniRef50_D0ZFU6|unclassified	2.6368921152
+UniRef50_F3GFY4	2.6364450539
+UniRef50_F3GFY4|unclassified	2.6364450539
+UniRef50_UPI0003B79537: ArsR family transcriptional regulator	2.6360376605
+UniRef50_UPI0003B79537: ArsR family transcriptional regulator|unclassified	2.6360376605
+UniRef50_D8JH13	2.6358656886
+UniRef50_D8JH13|g__Acinetobacter.s__Acinetobacter_baumannii	2.6358656886
+UniRef50_N6VCG0	2.6358130610
+UniRef50_N6VCG0|unclassified	2.6358130610
+UniRef50_B5JYG3: Phage tail protein E	2.6355970852
+UniRef50_B5JYG3: Phage tail protein E|unclassified	2.6355970852
+UniRef50_UPI00036572C3: hypothetical protein	2.6352698473
+UniRef50_UPI00036572C3: hypothetical protein|unclassified	2.6352698473
+UniRef50_T2G7A2	2.6351315567
+UniRef50_T2G7A2|unclassified	2.6351315567
+UniRef50_C7J371: Os06g0492800 protein	2.6350461133
+UniRef50_C7J371: Os06g0492800 protein|unclassified	2.6350461133
+UniRef50_UPI00046F47C7: hypothetical protein, partial	2.6347090908
+UniRef50_UPI00046F47C7: hypothetical protein, partial|unclassified	2.6347090908
+UniRef50_I0EUL3: N5-glutamine S-adenosyl-L-methionine-dependent methyltransferase	2.6346624512
+UniRef50_I0EUL3: N5-glutamine S-adenosyl-L-methionine-dependent methyltransferase|g__Helicobacter.s__Helicobacter_pylori	2.6346624512
+UniRef50_X1MW22: Marine sediment metagenome DNA, contig: S06H3_L05914 (Fragment)	2.6346000789
+UniRef50_X1MW22: Marine sediment metagenome DNA, contig: S06H3_L05914 (Fragment)|unclassified	2.6346000789
+UniRef50_R5G6A1: Cyclopropane-fatty-acyl-phospholipid synthase	2.6343515533
+UniRef50_R5G6A1: Cyclopropane-fatty-acyl-phospholipid synthase|g__Clostridium.s__Clostridium_beijerinckii	2.6343515533
+UniRef50_H8NBD5: Succinyl-diaminopimelate desuccinylase	2.6342928523
+UniRef50_H8NBD5: Succinyl-diaminopimelate desuccinylase|unclassified	2.6342928523
+UniRef50_A0A023B8B3: Mannitol-1-phosphate 5-dehydrogenase	2.6339151470
+UniRef50_A0A023B8B3: Mannitol-1-phosphate 5-dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	2.6339151470
+UniRef50_D8JKH6: Acyl-CoA dehydrogenase	2.6338504543
+UniRef50_D8JKH6: Acyl-CoA dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	2.6338504543
+UniRef50_UPI0003B37751: translation initiation factor IF-3	2.6338295234
+UniRef50_UPI0003B37751: translation initiation factor IF-3|unclassified	2.6338295234
+UniRef50_W8A5G1	2.6336586323
+UniRef50_W8A5G1|unclassified	2.6336586323
+UniRef50_N1MJG8: Mobile element protein	2.6324231840
+UniRef50_N1MJG8: Mobile element protein|unclassified	2.6324231840
+UniRef50_E1M9W6	2.6319571472
+UniRef50_E1M9W6|unclassified	2.6319571472
+UniRef50_B2TKY4	2.6315789474
+UniRef50_B2TKY4|g__Clostridium.s__Clostridium_beijerinckii	2.6315789474
+UniRef50_L5GDC6	2.6315789474
+UniRef50_L5GDC6|g__Escherichia.s__Escherichia_coli	2.6315789474
+UniRef50_N6SI78: Tandem five-TM protein (Fragment)	2.6315789474
+UniRef50_N6SI78: Tandem five-TM protein (Fragment)|g__Staphylococcus.s__Staphylococcus_aureus	2.6315789474
+UniRef50_Q6F803	2.6315789474
+UniRef50_Q6F803|g__Acinetobacter.s__Acinetobacter_baumannii	2.6315789474
+UniRef50_Q8FEA4	2.6315789474
+UniRef50_Q8FEA4|g__Escherichia.s__Escherichia_coli	2.6315789474
+UniRef50_Q9RZ68	2.6315789474
+UniRef50_Q9RZ68|g__Deinococcus.s__Deinococcus_radiodurans	2.6315789474
+UniRef50_UPI0002DCBF22: hypothetical protein	2.6315789474
+UniRef50_UPI0002DCBF22: hypothetical protein|unclassified	2.6315789474
+UniRef50_V6QBN8	2.6315789474
+UniRef50_V6QBN8|g__Staphylococcus.s__Staphylococcus_epidermidis	2.6315789474
+UniRef50_Q97FA7	2.6307440341
+UniRef50_Q97FA7|g__Clostridium.s__Clostridium_beijerinckii	2.6307440341
+UniRef50_UPI00036EAACB: hypothetical protein	2.6306326093
+UniRef50_UPI00036EAACB: hypothetical protein|unclassified	2.6306326093
+UniRef50_G5RJ22	2.6301779322
+UniRef50_G5RJ22|unclassified	2.6301779322
+UniRef50_UPI0001FFF28B: gas vesicle protein, partial	2.6298886608
+UniRef50_UPI0001FFF28B: gas vesicle protein, partial|unclassified	2.6298886608
+UniRef50_V4NZE7	2.6298226022
+UniRef50_V4NZE7|unclassified	2.6298226022
+UniRef50_UPI00006CF872: ribosomal protein L33 containing protein	2.6296961403
+UniRef50_UPI00006CF872: ribosomal protein L33 containing protein|unclassified	2.6296961403
+UniRef50_Q1IZT5: Oligopeptidase A	2.6294360069
+UniRef50_Q1IZT5: Oligopeptidase A|g__Deinococcus.s__Deinococcus_radiodurans	2.6294360069
+UniRef50_UPI00037600AD: hypothetical protein	2.6294025798
+UniRef50_UPI00037600AD: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	1.7574692443
+UniRef50_UPI00037600AD: hypothetical protein|unclassified	0.8719333355
+UniRef50_UPI0001910274: transposase for insertion sequence element IS200, partial	2.6294002753
+UniRef50_UPI0001910274: transposase for insertion sequence element IS200, partial|unclassified	2.6294002753
+UniRef50_UPI00036B391E: hypothetical protein	2.6293969219
+UniRef50_UPI00036B391E: hypothetical protein|unclassified	2.6293969219
+UniRef50_Q6F9I9: Coenzyme PQQ synthesis protein E	2.6290884090
+UniRef50_Q6F9I9: Coenzyme PQQ synthesis protein E|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5313935681
+UniRef50_Q6F9I9: Coenzyme PQQ synthesis protein E|g__Acinetobacter.s__Acinetobacter_baumannii	1.0976948408
+UniRef50_P56904: Hydroxymethylpyrimidine/phosphomethylpyrimidine kinase	2.6290684504
+UniRef50_P56904: Hydroxymethylpyrimidine/phosphomethylpyrimidine kinase|g__Clostridium.s__Clostridium_beijerinckii	2.5684776247
+UniRef50_P56904: Hydroxymethylpyrimidine/phosphomethylpyrimidine kinase|unclassified	0.0605908257
+UniRef50_A0Z9H8: NnrU	2.6284134038
+UniRef50_A0Z9H8: NnrU|unclassified	2.6284134038
+UniRef50_E6NXX1	2.6272363348
+UniRef50_E6NXX1|unclassified	2.6272363348
+UniRef50_A9MPH1	2.6270862942
+UniRef50_A9MPH1|g__Escherichia.s__Escherichia_coli	2.6270862942
+UniRef50_B2UYP0: WblI protein	2.6265391714
+UniRef50_B2UYP0: WblI protein|g__Clostridium.s__Clostridium_beijerinckii	2.6265391714
+UniRef50_UPI0001D2E55C: hypothetical protein	2.6265008268
+UniRef50_UPI0001D2E55C: hypothetical protein|unclassified	2.6265008268
+UniRef50_M9VJN7: Isochorismate synthetase, enterochelin	2.6263195033
+UniRef50_M9VJN7: Isochorismate synthetase, enterochelin|g__Propionibacterium.s__Propionibacterium_acnes	2.6263195033
+UniRef50_A4WNP3	2.6261366951
+UniRef50_A4WNP3|unclassified	2.6261366951
+UniRef50_UPI000419642D: MULTISPECIES: glutathione ABC transporter permease	2.6252460385
+UniRef50_UPI000419642D: MULTISPECIES: glutathione ABC transporter permease|unclassified	2.6252460385
+UniRef50_A4WPU2	2.6250589901
+UniRef50_A4WPU2|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.6250589901
+UniRef50_K7VA29	2.6248125111
+UniRef50_K7VA29|unclassified	2.6248125111
+UniRef50_A0A011Q516	2.6246719160
+UniRef50_A0A011Q516|unclassified	2.6246719160
+UniRef50_J3MP67	2.6246719160
+UniRef50_J3MP67|unclassified	2.6246719160
+UniRef50_P37613	2.6246719160
+UniRef50_P37613|g__Escherichia.s__Escherichia_coli	2.6246719160
+UniRef50_Q2NQP8: 50S ribosomal protein L17	2.6246719160
+UniRef50_Q2NQP8: 50S ribosomal protein L17|g__Escherichia.s__Escherichia_coli	2.6246719160
+UniRef50_Q9HTJ9	2.6246719160
+UniRef50_Q9HTJ9|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6246719160
+UniRef50_Q9L0Q7: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase	2.6246719160
+UniRef50_Q9L0Q7: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|g__Propionibacterium.s__Propionibacterium_acnes	2.6246719160
+UniRef50_Q9RXI0	2.6246719160
+UniRef50_Q9RXI0|g__Deinococcus.s__Deinococcus_radiodurans	2.6246719160
+UniRef50_R5M9K2: Cupin domain protein	2.6246719160
+UniRef50_R5M9K2: Cupin domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.6246719160
+UniRef50_U3SSB7: Preprotein translocase subunit YajC	2.6246719160
+UniRef50_U3SSB7: Preprotein translocase subunit YajC|g__Streptococcus.s__Streptococcus_mutans	2.6246719160
+UniRef50_UPI0003EAF6A3: PREDICTED: collagen alpha-1(II) chain-like	2.6246719160
+UniRef50_UPI0003EAF6A3: PREDICTED: collagen alpha-1(II) chain-like|unclassified	2.6246719160
+UniRef50_P09852: Exotoxin A regulatory protein	2.6240351294
+UniRef50_P09852: Exotoxin A regulatory protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6240351294
+UniRef50_F0L964: Aldo/keto reductase	2.6239451477
+UniRef50_F0L964: Aldo/keto reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.6239451477
+UniRef50_B7L7C8	2.6239269307
+UniRef50_B7L7C8|unclassified	2.6239269307
+UniRef50_UPI000255C31D: oligopeptide ABC transporter, ATP-binding protein, partial	2.6235078726
+UniRef50_UPI000255C31D: oligopeptide ABC transporter, ATP-binding protein, partial|unclassified	2.6235078726
+UniRef50_D5V8P7: 23S ribosomal RNA G745 methyltransferase	2.6234318681
+UniRef50_D5V8P7: 23S ribosomal RNA G745 methyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	2.6234318681
+UniRef50_V9Y4Q6	2.6231552583
+UniRef50_V9Y4Q6|unclassified	2.6231552583
+UniRef50_U6F3A2: Elongation factor G	2.6229386326
+UniRef50_U6F3A2: Elongation factor G|g__Clostridium.s__Clostridium_beijerinckii	2.6229386326
+UniRef50_V4N2T0	2.6225822311
+UniRef50_V4N2T0|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0773746801
+UniRef50_V4N2T0|unclassified	0.5452075510
+UniRef50_V6J5F5	2.6225614135
+UniRef50_V6J5F5|unclassified	2.6225614135
+UniRef50_H5HII5: Protein traU	2.6222740887
+UniRef50_H5HII5: Protein traU|unclassified	2.6222740887
+UniRef50_A6VAN5: Membrane protein, putative	2.6221557778
+UniRef50_A6VAN5: Membrane protein, putative|unclassified	2.6221557778
+UniRef50_W1GG81	2.6218992154
+UniRef50_W1GG81|unclassified	2.6218992154
+UniRef50_G4LPB8: ATP-binding/permease fusion ABC transporter	2.6209843497
+UniRef50_G4LPB8: ATP-binding/permease fusion ABC transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6209843497
+UniRef50_A9C1P3: Tail E family protein	2.6207197173
+UniRef50_A9C1P3: Tail E family protein|unclassified	2.6207197173
+UniRef50_UPI000378EFFC: hypothetical protein	2.6197983483
+UniRef50_UPI000378EFFC: hypothetical protein|unclassified	2.6197983483
+UniRef50_M4QZK0: Alpha/beta hydrolase family protein	2.6196277035
+UniRef50_M4QZK0: Alpha/beta hydrolase family protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.6196277035
+UniRef50_F5M4B6	2.6196270783
+UniRef50_F5M4B6|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.6196270783
+UniRef50_L7VWI6	2.6183953591
+UniRef50_L7VWI6|g__Streptococcus.s__Streptococcus_agalactiae	2.6183953591
+UniRef50_D8JFV1	2.6178010471
+UniRef50_D8JFV1|g__Acinetobacter.s__Acinetobacter_baumannii	2.6178010471
+UniRef50_I4XVX2	2.6178010471
+UniRef50_I4XVX2|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6178010471
+UniRef50_P69980: Yop proteins translocation protein R	2.6178010471
+UniRef50_P69980: Yop proteins translocation protein R|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6178010471
+UniRef50_Q3K3J8	2.6178010471
+UniRef50_Q3K3J8|g__Streptococcus.s__Streptococcus_agalactiae	2.6178010471
+UniRef50_Q9RST5	2.6178010471
+UniRef50_Q9RST5|g__Deinococcus.s__Deinococcus_radiodurans	2.6178010471
+UniRef50_V9TWX8: Hydroxyacylglutathione hydrolase	2.6178010471
+UniRef50_V9TWX8: Hydroxyacylglutathione hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6178010471
+UniRef50_Q8H2Q4	2.6178010471
+UniRef50_Q8H2Q4|unclassified	2.6178010471
+UniRef50_A6M054: Glycosyl hydrolase family 32, N terminal domain protein	2.6167434944
+UniRef50_A6M054: Glycosyl hydrolase family 32, N terminal domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.6167434944
+UniRef50_A6V452	2.6166075436
+UniRef50_A6V452|unclassified	2.6166075436
+UniRef50_W8T2J9: Mannitol-1-phosphate 5-dehydrogenase	2.6156097752
+UniRef50_W8T2J9: Mannitol-1-phosphate 5-dehydrogenase|unclassified	2.6156097752
+UniRef50_Q0JLZ3: Os01g0555400 protein	2.6151095228
+UniRef50_Q0JLZ3: Os01g0555400 protein|unclassified	2.6151095228
+UniRef50_A6M113: CheA signal transduction histidine kinase	2.6150730880
+UniRef50_A6M113: CheA signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	2.6150730880
+UniRef50_W6QX96	2.6146480366
+UniRef50_W6QX96|unclassified	2.6146480366
+UniRef50_M4NGT3: Arsenical resistance protein ArsH	2.6143790850
+UniRef50_M4NGT3: Arsenical resistance protein ArsH|g__Acinetobacter.s__Acinetobacter_baumannii	2.6143790850
+UniRef50_A4VM88: Glucose ABC transporter, ATP-binding protein	2.6139370525
+UniRef50_A4VM88: Glucose ABC transporter, ATP-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6139370525
+UniRef50_U3HEJ8	2.6139250780
+UniRef50_U3HEJ8|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6139250780
+UniRef50_D4HCS1	2.6135044115
+UniRef50_D4HCS1|g__Propionibacterium.s__Propionibacterium_acnes	2.6135044115
+UniRef50_UPI0001DCF72B: 63 kDa protein	2.6132119646
+UniRef50_UPI0001DCF72B: 63 kDa protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2976425792
+UniRef50_UPI0001DCF72B: 63 kDa protein|unclassified	0.3155693854
+UniRef50_C5Y0V4	2.6130085460
+UniRef50_C5Y0V4|unclassified	2.6130085460
+UniRef50_D9PKM6: ABC transporter, ATP binding protein	2.6129743414
+UniRef50_D9PKM6: ABC transporter, ATP binding protein|unclassified	2.6129743414
+UniRef50_A0A031GDT2	2.6121057118
+UniRef50_A0A031GDT2|unclassified	2.6121057118
+UniRef50_K7RQC1: Amino acid or sugar ABC transport system, permease protein	2.6121055719
+UniRef50_K7RQC1: Amino acid or sugar ABC transport system, permease protein|g__Propionibacterium.s__Propionibacterium_acnes	2.6121055719
+UniRef50_T6QMM7	2.6120372457
+UniRef50_T6QMM7|unclassified	2.6120372457
+UniRef50_Y7ZG77: Capsular polysaccharide biosynthesis protein CapA	2.6117505964
+UniRef50_Y7ZG77: Capsular polysaccharide biosynthesis protein CapA|unclassified	2.6117505964
+UniRef50_X5PED3	2.6112755723
+UniRef50_X5PED3|unclassified	2.6112755723
+UniRef50_UPI0003B5CBF4: thioredoxin	2.6110898828
+UniRef50_UPI0003B5CBF4: thioredoxin|unclassified	2.6110898828
+UniRef50_S6NA62: Membrane protein (Fragment)	2.6110203806
+UniRef50_S6NA62: Membrane protein (Fragment)|unclassified	2.6110203806
+UniRef50_A6LWR6: MgtC/SapB transporter	2.6109660574
+UniRef50_A6LWR6: MgtC/SapB transporter|g__Clostridium.s__Clostridium_beijerinckii	2.6109660574
+UniRef50_B4RJZ9	2.6109660574
+UniRef50_B4RJZ9|g__Neisseria.s__Neisseria_meningitidis	2.6109660574
+UniRef50_K0RLE0	2.6109660574
+UniRef50_K0RLE0|unclassified	2.6109660574
+UniRef50_T8MXY0: L-asparaginase 1	2.6109660574
+UniRef50_T8MXY0: L-asparaginase 1|g__Escherichia.s__Escherichia_coli	2.6109660574
+UniRef50_Q0DT29: Os03g0271800 protein	2.6101430311
+UniRef50_Q0DT29: Os03g0271800 protein|unclassified	2.6101430311
+UniRef50_U5MQB0: DNA polymerase III epsilon subunit-like 3'-5' exonuclease	2.6099849352
+UniRef50_U5MQB0: DNA polymerase III epsilon subunit-like 3'-5' exonuclease|g__Clostridium.s__Clostridium_beijerinckii	2.6099849352
+UniRef50_A7FBL3	2.6096637568
+UniRef50_A7FBL3|g__Acinetobacter.s__Acinetobacter_baumannii	2.6096637568
+UniRef50_U5MKU3: ABC-type transport system, involved in lipoprotein release, permease component	2.6096377324
+UniRef50_U5MKU3: ABC-type transport system, involved in lipoprotein release, permease component|g__Clostridium.s__Clostridium_beijerinckii	2.6096377324
+UniRef50_W1Y144	2.6094163248
+UniRef50_W1Y144|unclassified	2.6094163248
+UniRef50_A9HY93	2.6093934737
+UniRef50_A9HY93|unclassified	2.6093934737
+UniRef50_C6SKJ8	2.6093528192
+UniRef50_C6SKJ8|g__Neisseria.s__Neisseria_meningitidis	2.6093528192
+UniRef50_F0Q2N4: Xanthine dehydrogenase	2.6091055108
+UniRef50_F0Q2N4: Xanthine dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6091055108
+UniRef50_UPI0002557A7E: high-affinity branched-chain amino acid ABC transporterATP binding protein, partial	2.6090804144
+UniRef50_UPI0002557A7E: high-affinity branched-chain amino acid ABC transporterATP binding protein, partial|unclassified	2.6090804144
+UniRef50_B9KJE5	2.6088400219
+UniRef50_B9KJE5|unclassified	2.6088400219
+UniRef50_W1WH97	2.6088222188
+UniRef50_W1WH97|unclassified	2.6088222188
+UniRef50_Z5YCW7	2.6084685913
+UniRef50_Z5YCW7|unclassified	2.6084685913
+UniRef50_F0YDY4	2.6084529259
+UniRef50_F0YDY4|unclassified	2.6084529259
+UniRef50_H0PS39: Chaperon protein, Hsp70 class	2.6084309795
+UniRef50_H0PS39: Chaperon protein, Hsp70 class|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6084309795
+UniRef50_UPI00038FAC1F: Putative amino-acid transporter YisU	2.6082880454
+UniRef50_UPI00038FAC1F: Putative amino-acid transporter YisU|unclassified	2.6082880454
+UniRef50_UPI00046F396F: hypothetical protein	2.6081020529
+UniRef50_UPI00046F396F: hypothetical protein|unclassified	2.6081020529
+UniRef50_UPI000360EF9F: hypothetical protein	2.6072462103
+UniRef50_UPI000360EF9F: hypothetical protein|unclassified	2.6072462103
+UniRef50_UPI000262EE20: dihydrodipicolinate synthase	2.6068597272
+UniRef50_UPI000262EE20: dihydrodipicolinate synthase|unclassified	2.6068597272
+UniRef50_U3SZE2	2.6064738772
+UniRef50_U3SZE2|g__Acinetobacter.s__Acinetobacter_baumannii	2.6064738772
+UniRef50_Q1RJJ1: NADH-quinone oxidoreductase subunit E	2.6050721269
+UniRef50_Q1RJJ1: NADH-quinone oxidoreductase subunit E|unclassified	2.6050721269
+UniRef50_A7ICR7	2.6046397415
+UniRef50_A7ICR7|unclassified	2.6046397415
+UniRef50_A6LR82: Transposase	2.6041666667
+UniRef50_A6LR82: Transposase|g__Clostridium.s__Clostridium_beijerinckii	2.6041666667
+UniRef50_A6LWR4	2.6041666667
+UniRef50_A6LWR4|g__Clostridium.s__Clostridium_beijerinckii	2.6041666667
+UniRef50_B7V6Y1	2.6041666667
+UniRef50_B7V6Y1|unclassified	2.6041666667
+UniRef50_D2J620: ABC transporter ATP-binding protein	2.6041666667
+UniRef50_D2J620: ABC transporter ATP-binding protein|g__Staphylococcus.s__Staphylococcus_aureus	2.6041666667
+UniRef50_D5X8K2: NADH-quinone oxidoreductase subunit I	2.6041666667
+UniRef50_D5X8K2: NADH-quinone oxidoreductase subunit I|g__Clostridium.s__Clostridium_beijerinckii	2.6041666667
+UniRef50_D7GIE6: Thiamine-phosphate synthase	2.6041666667
+UniRef50_D7GIE6: Thiamine-phosphate synthase|g__Propionibacterium.s__Propionibacterium_acnes	2.6041666667
+UniRef50_K8CWH0: Phosphoribosylamine--glycine ligase	2.6041666667
+UniRef50_K8CWH0: Phosphoribosylamine--glycine ligase|g__Escherichia.s__Escherichia_coli	2.6041666667
+UniRef50_L2XUN0	2.6041666667
+UniRef50_L2XUN0|g__Escherichia.s__Escherichia_coli	2.6041666667
+UniRef50_P0A201: Curli production assembly/transport component CsgE	2.6041666667
+UniRef50_P0A201: Curli production assembly/transport component CsgE|g__Escherichia.s__Escherichia_coli	2.6041666667
+UniRef50_Q59087: Catabolic 3-dehydroquinate dehydratase	2.6041666667
+UniRef50_Q59087: Catabolic 3-dehydroquinate dehydratase|g__Acinetobacter.s__Acinetobacter_baumannii	2.6041666667
+UniRef50_Q6AAE4: Thiazole synthase	2.6041666667
+UniRef50_Q6AAE4: Thiazole synthase|g__Propionibacterium.s__Propionibacterium_acnes	2.6041666667
+UniRef50_Q6F885	2.6041666667
+UniRef50_Q6F885|g__Acinetobacter.s__Acinetobacter_baumannii	2.6041666667
+UniRef50_J9GSS6: Mobilization accessory protein MobC	2.6040449760
+UniRef50_J9GSS6: Mobilization accessory protein MobC|unclassified	2.6040449760
+UniRef50_A0A027F887	2.6038197502
+UniRef50_A0A027F887|unclassified	2.6038197502
+UniRef50_X1ENU3: Marine sediment metagenome DNA, contig: S01H4_S23935 (Fragment)	2.6036204976
+UniRef50_X1ENU3: Marine sediment metagenome DNA, contig: S01H4_S23935 (Fragment)|unclassified	2.6036204976
+UniRef50_I2ZAR1	2.6021385251
+UniRef50_I2ZAR1|unclassified	2.6021385251
+UniRef50_F9K9S6: Glyoxylate reductase	2.6021276021
+UniRef50_F9K9S6: Glyoxylate reductase|g__Staphylococcus.s__Staphylococcus_aureus	2.6021276021
+UniRef50_Q9RRP0: Transcriptional regulator, MerR family	2.6021276021
+UniRef50_Q9RRP0: Transcriptional regulator, MerR family|g__Deinococcus.s__Deinococcus_radiodurans	2.6021276021
+UniRef50_U6ABV2: Major facilitator family transporter	2.6019704329
+UniRef50_U6ABV2: Major facilitator family transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6019704329
+UniRef50_A6UYZ9	2.6016260163
+UniRef50_A6UYZ9|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.6016260163
+UniRef50_Q9F5M2: PucC (Fragment)	2.6015069630
+UniRef50_Q9F5M2: PucC (Fragment)|unclassified	2.6015069630
+UniRef50_A6LT75: Ig domain protein, group 2 domain protein	2.6010010010
+UniRef50_A6LT75: Ig domain protein, group 2 domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.6010010010
+UniRef50_S8MRP6	2.6009208182
+UniRef50_S8MRP6|g__Streptococcus.s__Streptococcus_agalactiae	2.6009208182
+UniRef50_UPI0003793D88: hypothetical protein	2.6008226578
+UniRef50_UPI0003793D88: hypothetical protein|unclassified	2.6008226578
+UniRef50_A8LHU6	2.6007402635
+UniRef50_A8LHU6|unclassified	2.6007402635
+UniRef50_Q02GV0	2.5998705025
+UniRef50_Q02GV0|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5998705025
+UniRef50_Q9RR63: Tyrosine--tRNA ligase	2.5993904413
+UniRef50_Q9RR63: Tyrosine--tRNA ligase|g__Deinococcus.s__Deinococcus_radiodurans	2.5993904413
+UniRef50_A5W1N9	2.5992757833
+UniRef50_A5W1N9|g__Acinetobacter.s__Acinetobacter_baumannii	2.5992757833
+UniRef50_L9MQV1: FAD dependent oxidoreductase TIGR03364/2-aminoethylphosphonate--pyruvate transaminase multi-domain protein	2.5992757833
+UniRef50_L9MQV1: FAD dependent oxidoreductase TIGR03364/2-aminoethylphosphonate--pyruvate transaminase multi-domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.5992757833
+UniRef50_D9SRN1: Cation diffusion facilitator family transporter	2.5991230842
+UniRef50_D9SRN1: Cation diffusion facilitator family transporter|g__Clostridium.s__Clostridium_beijerinckii	2.5991230842
+UniRef50_Q8H3H1	2.5990299262
+UniRef50_Q8H3H1|unclassified	2.5990299262
+UniRef50_W1DQR9: Acidic protein msyB	2.5989956479
+UniRef50_W1DQR9: Acidic protein msyB|unclassified	2.5989956479
+UniRef50_Q169C1	2.5982539712
+UniRef50_Q169C1|unclassified	2.5982539712
+UniRef50_D4H9H0	2.5981582626
+UniRef50_D4H9H0|g__Propionibacterium.s__Propionibacterium_acnes	2.5981582626
+UniRef50_V4PLC4	2.5979926906
+UniRef50_V4PLC4|unclassified	2.5979926906
+UniRef50_Q3DDY2	2.5978013919
+UniRef50_Q3DDY2|g__Streptococcus.s__Streptococcus_agalactiae	1.9047619048
+UniRef50_Q3DDY2|unclassified	0.6930394872
+UniRef50_F8KRB8: Cell division protein FtsI [Peptidoglycan synthetase]	2.5975315067
+UniRef50_F8KRB8: Cell division protein FtsI [Peptidoglycan synthetase]|g__Helicobacter.s__Helicobacter_pylori	2.5975315067
+UniRef50_E3A232	2.5974569266
+UniRef50_E3A232|unclassified	2.5974569266
+UniRef50_U5MWZ3: HTH-type transcriptional regulator GlvR	2.5974201209
+UniRef50_U5MWZ3: HTH-type transcriptional regulator GlvR|g__Clostridium.s__Clostridium_beijerinckii	2.5974201209
+UniRef50_B7UYR3: Universal stress protein	2.5974025974
+UniRef50_B7UYR3: Universal stress protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5974025974
+UniRef50_G8V7W6: Myo-inositol catabolism protein	2.5974025974
+UniRef50_G8V7W6: Myo-inositol catabolism protein|g__Propionibacterium.s__Propionibacterium_acnes	2.5974025974
+UniRef50_L5RDB7: Putative gluconolactonase domain protein	2.5974025974
+UniRef50_L5RDB7: Putative gluconolactonase domain protein|g__Neisseria.s__Neisseria_meningitidis	2.5974025974
+UniRef50_M9TV63	2.5974025974
+UniRef50_M9TV63|unclassified	2.5974025974
+UniRef50_N3YND1: Multidrug transporter MdfA domain protein (Fragment)	2.5974025974
+UniRef50_N3YND1: Multidrug transporter MdfA domain protein (Fragment)|g__Escherichia.s__Escherichia_coli	2.5974025974
+UniRef50_A0A038G1M9	2.5972175898
+UniRef50_A0A038G1M9|unclassified	2.5972175898
+UniRef50_UPI0003A59C42: RNA polymerase sigma-70 factor	2.5971240720
+UniRef50_UPI0003A59C42: RNA polymerase sigma-70 factor|unclassified	2.5971240720
+UniRef50_U7DNG8: Peptidase M19	2.5965436974
+UniRef50_U7DNG8: Peptidase M19|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5965436974
+UniRef50_W0Z3B1: Pesticin domain-containing protein	2.5962056454
+UniRef50_W0Z3B1: Pesticin domain-containing protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5962056454
+UniRef50_UPI000466C085: hypothetical protein, partial	2.5954762892
+UniRef50_UPI000466C085: hypothetical protein, partial|unclassified	2.5954762892
+UniRef50_T9WYD0: Glutaminase	2.5948332324
+UniRef50_T9WYD0: Glutaminase|g__Escherichia.s__Escherichia_coli	2.5948332324
+UniRef50_UPI0003B5627F: RNA polymerase subunit sigma-24	2.5947825226
+UniRef50_UPI0003B5627F: RNA polymerase subunit sigma-24|unclassified	2.5947825226
+UniRef50_Q0FWM3	2.5947636839
+UniRef50_Q0FWM3|unclassified	2.5947636839
+UniRef50_M1VHC0: 2-desacetyl-2-hydroxyethyl bacteriochlorophyllide a dehydrogenase (Fragment)	2.5944838254
+UniRef50_M1VHC0: 2-desacetyl-2-hydroxyethyl bacteriochlorophyllide a dehydrogenase (Fragment)|unclassified	2.5944838254
+UniRef50_G0DU60: Triacylglycerol lipase	2.5940729974
+UniRef50_G0DU60: Triacylglycerol lipase|g__Propionibacterium.s__Propionibacterium_acnes	2.5940729974
+UniRef50_UPI000475ACA6: hypothetical protein	2.5937290318
+UniRef50_UPI000475ACA6: hypothetical protein|unclassified	2.5937290318
+UniRef50_UPI0003B3846E: alpha/beta hydrolase	2.5935861747
+UniRef50_UPI0003B3846E: alpha/beta hydrolase|unclassified	2.5935861747
+UniRef50_N1LQL5: Glyoxalase family protein	2.5932655440
+UniRef50_N1LQL5: Glyoxalase family protein|unclassified	2.5932655440
+UniRef50_K4PRL4: Xylulose-5-phosphate/fructose-6-phosphate phosphoketolase	2.5928405201
+UniRef50_K4PRL4: Xylulose-5-phosphate/fructose-6-phosphate phosphoketolase|g__Streptococcus.s__Streptococcus_agalactiae	2.5928405201
+UniRef50_J5N5M4	2.5916073438
+UniRef50_J5N5M4|unclassified	2.5916073438
+UniRef50_U5RWM1: Succinate dehydrogenase	2.5911867606
+UniRef50_U5RWM1: Succinate dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	2.5911867606
+UniRef50_L9EWA6: Membrane-bound lysozyme inhibitor of C-type lysozyme	2.5907780470
+UniRef50_L9EWA6: Membrane-bound lysozyme inhibitor of C-type lysozyme|unclassified	2.5907780470
+UniRef50_D8JIL7: Chromosome partitioning protein parA	2.5906735751
+UniRef50_D8JIL7: Chromosome partitioning protein parA|g__Acinetobacter.s__Acinetobacter_baumannii	2.5906735751
+UniRef50_E6CY06	2.5906735751
+UniRef50_E6CY06|g__Propionibacterium.s__Propionibacterium_acnes	2.5906735751
+UniRef50_K0H8G2: Metalloendopeptidase-like membrane protein	2.5906735751
+UniRef50_K0H8G2: Metalloendopeptidase-like membrane protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.5906735751
+UniRef50_K0HFH6	2.5906735751
+UniRef50_K0HFH6|g__Propionibacterium.s__Propionibacterium_acnes	2.5906735751
+UniRef50_M1ZKX2	2.5906735751
+UniRef50_M1ZKX2|unclassified	2.5906735751
+UniRef50_Q68S88: Mutant cytolysin A	2.5906735751
+UniRef50_Q68S88: Mutant cytolysin A|g__Escherichia.s__Escherichia_coli	2.5906735751
+UniRef50_V9R0I4: Heat shock protein IbpA	2.5906152044
+UniRef50_V9R0I4: Heat shock protein IbpA|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2371364653
+UniRef50_V9R0I4: Heat shock protein IbpA|unclassified	0.3534787390
+UniRef50_UPI0002485AE7: MULTISPECIES: sarcosine oxidase subunit delta	2.5904263947
+UniRef50_UPI0002485AE7: MULTISPECIES: sarcosine oxidase subunit delta|unclassified	2.5904263947
+UniRef50_P56431: Thioredoxin reductase	2.5904090640
+UniRef50_P56431: Thioredoxin reductase|g__Helicobacter.s__Helicobacter_pylori	2.5904090640
+UniRef50_S9A701: Membrane protein	2.5902570050
+UniRef50_S9A701: Membrane protein|unclassified	2.5902570050
+UniRef50_H0DT55: MutS family protein	2.5899836753
+UniRef50_H0DT55: MutS family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	1.8214936248
+UniRef50_H0DT55: MutS family protein|unclassified	0.7684900505
+UniRef50_M4YP28: Chemotaxis protein	2.5895313405
+UniRef50_M4YP28: Chemotaxis protein|g__Clostridium.s__Clostridium_beijerinckii	2.5895313405
+UniRef50_B7V5R0: Phosphate ABC transporter, periplasmic phosphate-binding protein, PstS	2.5892140646
+UniRef50_B7V5R0: Phosphate ABC transporter, periplasmic phosphate-binding protein, PstS|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5892140646
+UniRef50_A6M044: Pyruvate phosphate dikinase, PEP/pyruvate-binding	2.5891079717
+UniRef50_A6M044: Pyruvate phosphate dikinase, PEP/pyruvate-binding|g__Clostridium.s__Clostridium_beijerinckii	2.5891079717
+UniRef50_H0GA27: L-fuculose-phosphate aldolase (Fragment)	2.5888233228
+UniRef50_H0GA27: L-fuculose-phosphate aldolase (Fragment)|unclassified	2.5888233228
+UniRef50_F2DTP4: Predicted protein (Fragment)	2.5887970145
+UniRef50_F2DTP4: Predicted protein (Fragment)|unclassified	2.5887970145
+UniRef50_UPI000372E378: hypothetical protein	2.5882006844
+UniRef50_UPI000372E378: hypothetical protein|unclassified	2.5882006844
+UniRef50_V9TVW8: Signal transduction histidine kinase CheA	2.5881779302
+UniRef50_V9TVW8: Signal transduction histidine kinase CheA|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5881779302
+UniRef50_T0ZSP4: Transketolase, central region	2.5873221216
+UniRef50_T0ZSP4: Transketolase, central region|unclassified	2.5873221216
+UniRef50_O52058: Biotin carboxylase	2.5866322120
+UniRef50_O52058: Biotin carboxylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4837008254
+UniRef50_O52058: Biotin carboxylase|unclassified	0.1029313867
+UniRef50_UPI0003B44F1F: transcriptional regulator	2.5864928374
+UniRef50_UPI0003B44F1F: transcriptional regulator|unclassified	2.5864928374
+UniRef50_M4R3K2	2.5859912034
+UniRef50_M4R3K2|g__Acinetobacter.s__Acinetobacter_baumannii	2.5859912034
+UniRef50_P10996: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifE	2.5858645000
+UniRef50_P10996: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifE|g__Clostridium.s__Clostridium_beijerinckii	2.5858645000
+UniRef50_A6M1W3: Multi-sensor signal transduction histidine kinase	2.5857439697
+UniRef50_A6M1W3: Multi-sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	2.5857439697
+UniRef50_A6LST0: Regulatory protein, LacI	2.5857086868
+UniRef50_A6LST0: Regulatory protein, LacI|g__Clostridium.s__Clostridium_beijerinckii	2.5857086868
+UniRef50_UPI00047E3019: GntR family transcriptional regulator	2.5852611570
+UniRef50_UPI00047E3019: GntR family transcriptional regulator|unclassified	2.5852611570
+UniRef50_B9KLM0	2.5848355198
+UniRef50_B9KLM0|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.4100870406
+UniRef50_B9KLM0|unclassified	0.1747484792
+UniRef50_K2AWY0	2.5840483424
+UniRef50_K2AWY0|unclassified	2.5840483424
+UniRef50_G7MAV9	2.5839965814
+UniRef50_G7MAV9|g__Clostridium.s__Clostridium_beijerinckii	2.5839965814
+UniRef50_A0A037WK85	2.5839793282
+UniRef50_A0A037WK85|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5839793282
+UniRef50_E3D421: CinA-related protein	2.5839793282
+UniRef50_E3D421: CinA-related protein|g__Neisseria.s__Neisseria_meningitidis	2.5839793282
+UniRef50_K4PS33: NADPH-dependent FMN reductase domain protein	2.5839793282
+UniRef50_K4PS33: NADPH-dependent FMN reductase domain protein|g__Streptococcus.s__Streptococcus_agalactiae	2.5839793282
+UniRef50_M9VI34: ATP-dependent dethiobiotin synthetase BioD	2.5839793282
+UniRef50_M9VI34: ATP-dependent dethiobiotin synthetase BioD|g__Propionibacterium.s__Propionibacterium_acnes	2.5839793282
+UniRef50_Q6FDD7	2.5839793282
+UniRef50_Q6FDD7|g__Acinetobacter.s__Acinetobacter_baumannii	2.5839793282
+UniRef50_R5SMM9: Ribose 5-phosphate isomerase B	2.5839793282
+UniRef50_R5SMM9: Ribose 5-phosphate isomerase B|g__Clostridium.s__Clostridium_beijerinckii	2.5839793282
+UniRef50_S1CT08: Chromate reductase, Class I, flavoprotein	2.5839793282
+UniRef50_S1CT08: Chromate reductase, Class I, flavoprotein|g__Escherichia.s__Escherichia_coli	2.5839793282
+UniRef50_W8TN29: ACT domain-containing protein	2.5839793282
+UniRef50_W8TN29: ACT domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	2.5839793282
+UniRef50_S9RWJ1	2.5831283707
+UniRef50_S9RWJ1|unclassified	2.5831283707
+UniRef50_Q890R3: Energy-coupling factor transporter ATP-binding protein EcfA2	2.5830984933
+UniRef50_Q890R3: Energy-coupling factor transporter ATP-binding protein EcfA2|g__Clostridium.s__Clostridium_beijerinckii	2.5430853300
+UniRef50_Q890R3: Energy-coupling factor transporter ATP-binding protein EcfA2|unclassified	0.0400131633
+UniRef50_S4GRW5: Polyphosphate kinase (Fragment)	2.5829839885
+UniRef50_S4GRW5: Polyphosphate kinase (Fragment)|g__Deinococcus.s__Deinococcus_radiodurans	2.5829839885
+UniRef50_UPI000469CC07: transcriptional regulator PhoU, partial	2.5826650659
+UniRef50_UPI000469CC07: transcriptional regulator PhoU, partial|unclassified	2.5826650659
+UniRef50_Q0H8X2: Probable intron-encoded endonuclease bI1	2.5825125467
+UniRef50_Q0H8X2: Probable intron-encoded endonuclease bI1|unclassified	2.5825125467
+UniRef50_B6IV44	2.5812060739
+UniRef50_B6IV44|unclassified	2.5812060739
+UniRef50_A4WYR6: Alcohol dehydrogenase, zinc-binding domain protein	2.5806032214
+UniRef50_A4WYR6: Alcohol dehydrogenase, zinc-binding domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.5806032214
+UniRef50_G4LIE7	2.5804989804
+UniRef50_G4LIE7|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5804989804
+UniRef50_B5SF50: Xanthine permease protein	2.5797969158
+UniRef50_B5SF50: Xanthine permease protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5797969158
+UniRef50_UPI000370761B: hypothetical protein	2.5783671233
+UniRef50_UPI000370761B: hypothetical protein|unclassified	2.5783671233
+UniRef50_E8Q9V7: ABC transporter permease	2.5780842051
+UniRef50_E8Q9V7: ABC transporter permease|g__Streptococcus.s__Streptococcus_agalactiae	2.5780842051
+UniRef50_A9AQ58: Aldehyde Dehydrogenase	2.5775283247
+UniRef50_A9AQ58: Aldehyde Dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	2.5775283247
+UniRef50_M4JVD5	2.5774676933
+UniRef50_M4JVD5|unclassified	2.5774676933
+UniRef50_UPI000328F9A1: PREDICTED: translation initiation factor IF-2-like	2.5773629988
+UniRef50_UPI000328F9A1: PREDICTED: translation initiation factor IF-2-like|unclassified	2.5773629988
+UniRef50_A3M7M4	2.5773195876
+UniRef50_A3M7M4|g__Acinetobacter.s__Acinetobacter_baumannii	2.5773195876
+UniRef50_A6M077: Transcriptional regulator, MarR family	2.5773195876
+UniRef50_A6M077: Transcriptional regulator, MarR family|g__Clostridium.s__Clostridium_beijerinckii	2.5773195876
+UniRef50_Q18CI7: 30S ribosomal protein S11	2.5773195876
+UniRef50_Q18CI7: 30S ribosomal protein S11|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.5773195876
+UniRef50_Q9RZ78	2.5773195876
+UniRef50_Q9RZ78|g__Deinococcus.s__Deinococcus_radiodurans	2.5773195876
+UniRef50_UPI0001850CBB: hydrolase	2.5773195876
+UniRef50_UPI0001850CBB: hydrolase|unclassified	2.5773195876
+UniRef50_UPI000368D785: 50S ribosomal protein L18	2.5771277109
+UniRef50_UPI000368D785: 50S ribosomal protein L18|unclassified	2.5771277109
+UniRef50_A0A026JNT9: Fimbrial protein	2.5770552643
+UniRef50_A0A026JNT9: Fimbrial protein|unclassified	2.5770552643
+UniRef50_B9DYP5	2.5768685729
+UniRef50_B9DYP5|g__Clostridium.s__Clostridium_beijerinckii	2.5768685729
+UniRef50_Q3J1W1: Chemotaxis histidine protein kinase, CheA4	2.5764606990
+UniRef50_Q3J1W1: Chemotaxis histidine protein kinase, CheA4|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.5764606990
+UniRef50_X7FDP3	2.5761817237
+UniRef50_X7FDP3|unclassified	2.5761817237
+UniRef50_B2IFJ7	2.5757906901
+UniRef50_B2IFJ7|unclassified	2.5757906901
+UniRef50_B8IVK0	2.5757704362
+UniRef50_B8IVK0|unclassified	2.5757704362
+UniRef50_P14756: Pseudolysin	2.5757508939
+UniRef50_P14756: Pseudolysin|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5757508939
+UniRef50_G2IIM5	2.5754619101
+UniRef50_G2IIM5|unclassified	2.5754619101
+UniRef50_I0HTT1: Transcriptional regulator, GntR family with aminotransferase domain	2.5751807171
+UniRef50_I0HTT1: Transcriptional regulator, GntR family with aminotransferase domain|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5751807171
+UniRef50_UPI0001BF5A9F: hypothetical protein SMAC_11746, partial	2.5750348290
+UniRef50_UPI0001BF5A9F: hypothetical protein SMAC_11746, partial|unclassified	2.5750348290
+UniRef50_F0Y6Y0: Expressed protein (Fragment)	2.5747186354
+UniRef50_F0Y6Y0: Expressed protein (Fragment)|unclassified	2.5747186354
+UniRef50_A1VJH7	2.5743227928
+UniRef50_A1VJH7|unclassified	2.5743227928
+UniRef50_B4RL88	2.5740025740
+UniRef50_B4RL88|g__Neisseria.s__Neisseria_meningitidis	2.5740025740
+UniRef50_UPI0004781602: hypothetical protein	2.5739279038
+UniRef50_UPI0004781602: hypothetical protein|unclassified	2.5739279038
+UniRef50_D4BDJ9	2.5737718785
+UniRef50_D4BDJ9|unclassified	2.5737718785
+UniRef50_Q2K7T8: NADP-dependent isocitrate dehydrogenase protein	2.5736597094
+UniRef50_Q2K7T8: NADP-dependent isocitrate dehydrogenase protein|unclassified	2.5736597094
+UniRef50_B7UXM6: Deoxyguanosinetriphosphate triphosphohydrolase-like protein	2.5734267954
+UniRef50_B7UXM6: Deoxyguanosinetriphosphate triphosphohydrolase-like protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5734267954
+UniRef50_M9RJL2	2.5730675376
+UniRef50_M9RJL2|unclassified	2.5730675376
+UniRef50_UPI000361F456: hypothetical protein	2.5718619515
+UniRef50_UPI000361F456: hypothetical protein|unclassified	2.5718619515
+UniRef50_UPI0002DBA9D3: 50S ribosomal protein L25	2.5709554321
+UniRef50_UPI0002DBA9D3: 50S ribosomal protein L25|unclassified	2.5709554321
+UniRef50_F3U3M4	2.5706940874
+UniRef50_F3U3M4|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.5706940874
+UniRef50_G4H7P0	2.5706940874
+UniRef50_G4H7P0|unclassified	2.5706940874
+UniRef50_M1MHX3: Transcriptional regulator	2.5706940874
+UniRef50_M1MHX3: Transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	2.5706940874
+UniRef50_R0NVZ1	2.5706940874
+UniRef50_R0NVZ1|g__Neisseria.s__Neisseria_meningitidis	2.5706940874
+UniRef50_R9ZP34: GntR family transcriptional regulator	2.5706940874
+UniRef50_R9ZP34: GntR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5706940874
+UniRef50_V5VD21	2.5706940874
+UniRef50_V5VD21|g__Acinetobacter.s__Acinetobacter_baumannii	2.5706940874
+UniRef50_K1ZWF0: Dihydroorotate dehydrogenase (Fragment)	2.5704314279
+UniRef50_K1ZWF0: Dihydroorotate dehydrogenase (Fragment)|unclassified	2.5704314279
+UniRef50_Q8CM57: Degenerate transposase (Orf2)	2.5704010421
+UniRef50_Q8CM57: Degenerate transposase (Orf2)|unclassified	2.5704010421
+UniRef50_S6SUU4: Peptide ABC transporter permease (Fragment)	2.5701522074
+UniRef50_S6SUU4: Peptide ABC transporter permease (Fragment)|unclassified	2.5701522074
+UniRef50_G6Y004	2.5699767108
+UniRef50_G6Y004|unclassified	2.5699767108
+UniRef50_W7QF52	2.5699684843
+UniRef50_W7QF52|unclassified	2.5699684843
+UniRef50_UPI0004283D87: hypothetical protein	2.5690630938
+UniRef50_UPI0004283D87: hypothetical protein|unclassified	2.5690630938
+UniRef50_UPI0003C1AE3D: PREDICTED: 50S ribosomal protein L5, chloroplastic-like	2.5688702289
+UniRef50_UPI0003C1AE3D: PREDICTED: 50S ribosomal protein L5, chloroplastic-like|unclassified	2.5688702289
+UniRef50_UPI0004687562: MerR family transcriptional regulator	2.5685811033
+UniRef50_UPI0004687562: MerR family transcriptional regulator|unclassified	2.5685811033
+UniRef50_E1IJ03	2.5680550094
+UniRef50_E1IJ03|unclassified	2.5680550094
+UniRef50_H2K8K5	2.5671425003
+UniRef50_H2K8K5|unclassified	2.5671425003
+UniRef50_X6DP53	2.5670330844
+UniRef50_X6DP53|unclassified	2.5670330844
+UniRef50_B0V9D5: 3-deoxy-D-manno-2-octulosonate transferase	2.5661517635
+UniRef50_B0V9D5: 3-deoxy-D-manno-2-octulosonate transferase|g__Acinetobacter.s__Acinetobacter_baumannii	2.5661517635
+UniRef50_A6LW46: Ppx/GppA phosphatase	2.5660766275
+UniRef50_A6LW46: Ppx/GppA phosphatase|g__Clostridium.s__Clostridium_beijerinckii	2.5660766275
+UniRef50_E2XPH3	2.5657894737
+UniRef50_E2XPH3|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5657894737
+UniRef50_D4HD50	2.5650723902
+UniRef50_D4HD50|unclassified	2.5650723902
+UniRef50_A6LU07: Ig domain protein, group 2 domain protein	2.5649940831
+UniRef50_A6LU07: Ig domain protein, group 2 domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.5649940831
+UniRef50_B4SQ46: Drug resistance transporter, EmrB/QacA subfamily	2.5647245849
+UniRef50_B4SQ46: Drug resistance transporter, EmrB/QacA subfamily|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5647245849
+UniRef50_A6LUU6	2.5641025641
+UniRef50_A6LUU6|g__Clostridium.s__Clostridium_beijerinckii	2.5641025641
+UniRef50_A6LVF3	2.5641025641
+UniRef50_A6LVF3|g__Clostridium.s__Clostridium_beijerinckii	2.5641025641
+UniRef50_B9EBW5: Peptide methionine sulfoxide reductase MsrA	2.5641025641
+UniRef50_B9EBW5: Peptide methionine sulfoxide reductase MsrA|g__Staphylococcus.s__Staphylococcus_aureus	2.5641025641
+UniRef50_L8DWY4: Cytochrome d ubiquinol oxidase subunit 1	2.5641025641
+UniRef50_L8DWY4: Cytochrome d ubiquinol oxidase subunit 1|g__Escherichia.s__Escherichia_coli	2.5641025641
+UniRef50_Q4K8K3: Oxidoreductase, short chain dehydrogenase/reductase family	2.5641025641
+UniRef50_Q4K8K3: Oxidoreductase, short chain dehydrogenase/reductase family|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5641025641
+UniRef50_R4R2N5	2.5641025641
+UniRef50_R4R2N5|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5641025641
+UniRef50_R9IEQ8	2.5641025641
+UniRef50_R9IEQ8|g__Clostridium.s__Clostridium_beijerinckii	2.5641025641
+UniRef50_V6U7I5	2.5641025641
+UniRef50_V6U7I5|unclassified	2.5641025641
+UniRef50_W0YVV5: Adenylosuccinate lyase	2.5635630137
+UniRef50_W0YVV5: Adenylosuccinate lyase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5635630137
+UniRef50_A6X7L5: Cobyrinic acid ac-diamide synthase	2.5635005784
+UniRef50_A6X7L5: Cobyrinic acid ac-diamide synthase|unclassified	2.5635005784
+UniRef50_UPI00039E6440: hypothetical protein	2.5630399503
+UniRef50_UPI00039E6440: hypothetical protein|unclassified	2.5630399503
+UniRef50_M9VCQ3: UvrD/REP helicase	2.5627507381
+UniRef50_M9VCQ3: UvrD/REP helicase|g__Propionibacterium.s__Propionibacterium_acnes	2.5627507381
+UniRef50_A7FAU8	2.5624862519
+UniRef50_A7FAU8|g__Acinetobacter.s__Acinetobacter_baumannii	2.5624862519
+UniRef50_H6LL43	2.5624362059
+UniRef50_H6LL43|unclassified	2.5624362059
+UniRef50_B1ZAH8: Binding-protein-dependent transport systems inner membrane component	2.5624051410
+UniRef50_B1ZAH8: Binding-protein-dependent transport systems inner membrane component|g__Acinetobacter.s__Acinetobacter_baumannii	2.5624051410
+UniRef50_Q97FJ7: Histidine--tRNA ligase	2.5611024661
+UniRef50_Q97FJ7: Histidine--tRNA ligase|g__Clostridium.s__Clostridium_beijerinckii	2.5611024661
+UniRef50_Q04L26: Xaa-Pro dipeptidyl-peptidase	2.5610454223
+UniRef50_Q04L26: Xaa-Pro dipeptidyl-peptidase|g__Streptococcus.s__Streptococcus_agalactiae	2.5610454223
+UniRef50_P23669: Threonine synthase	2.5610019069
+UniRef50_P23669: Threonine synthase|g__Deinococcus.s__Deinococcus_radiodurans	1.8363642257
+UniRef50_P23669: Threonine synthase|g__Neisseria.s__Neisseria_meningitidis	0.7246376812
+UniRef50_Q28U80: NnrU	2.5600187644
+UniRef50_Q28U80: NnrU|unclassified	2.5600187644
+UniRef50_A6LQA8: Methyl-accepting chemotaxis sensory transducer	2.5599699660
+UniRef50_A6LQA8: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	2.5599699660
+UniRef50_UPI00046CD0D4: ABC transporter permease	2.5594929215
+UniRef50_UPI00046CD0D4: ABC transporter permease|unclassified	2.5594929215
+UniRef50_A0A037ZGQ6	2.5591373080
+UniRef50_A0A037ZGQ6|unclassified	2.5591373080
+UniRef50_H3UN50	2.5589121083
+UniRef50_H3UN50|unclassified	2.5589121083
+UniRef50_U5R0R0	2.5584302873
+UniRef50_U5R0R0|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5584302873
+UniRef50_Q2NBI6	2.5583835109
+UniRef50_Q2NBI6|unclassified	2.5583835109
+UniRef50_W5BYP5	2.5581615005
+UniRef50_W5BYP5|unclassified	2.5581615005
+UniRef50_A1A025: Response regulator of two-component system	2.5575447570
+UniRef50_A1A025: Response regulator of two-component system|g__Propionibacterium.s__Propionibacterium_acnes	2.5575447570
+UniRef50_A6LS03: Glycoside hydrolase, family 46	2.5575447570
+UniRef50_A6LS03: Glycoside hydrolase, family 46|g__Clostridium.s__Clostridium_beijerinckii	2.5575447570
+UniRef50_B7Q935	2.5575447570
+UniRef50_B7Q935|unclassified	2.5575447570
+UniRef50_B9DX64: ATP synthase subunit delta	2.5575447570
+UniRef50_B9DX64: ATP synthase subunit delta|g__Clostridium.s__Clostridium_beijerinckii	2.5575447570
+UniRef50_J9YNN7: DNA-entry nuclease	2.5575447570
+UniRef50_J9YNN7: DNA-entry nuclease|g__Streptococcus.s__Streptococcus_agalactiae	2.5575447570
+UniRef50_Q4K5W7	2.5575447570
+UniRef50_Q4K5W7|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5575447570
+UniRef50_Q8XB75: 5-hydroxyisourate hydrolase	2.5575447570
+UniRef50_Q8XB75: 5-hydroxyisourate hydrolase|g__Escherichia.s__Escherichia_coli	2.5575447570
+UniRef50_Q9RUE5	2.5575447570
+UniRef50_Q9RUE5|g__Deinococcus.s__Deinococcus_radiodurans	2.5575447570
+UniRef50_T8DWJ2: HTH-type transcriptional regulator AcrR	2.5575447570
+UniRef50_T8DWJ2: HTH-type transcriptional regulator AcrR|g__Escherichia.s__Escherichia_coli	2.5575447570
+UniRef50_W1H5X7: Iron-sulfur cluster assembly ATPase protein SufC	2.5575447570
+UniRef50_W1H5X7: Iron-sulfur cluster assembly ATPase protein SufC|g__Escherichia.s__Escherichia_coli	2.5575447570
+UniRef50_A0A022KYK2	2.5570530054
+UniRef50_A0A022KYK2|unclassified	2.5570530054
+UniRef50_C4RE96: Diguanylate cyclase with GAF sensor	2.5566843666
+UniRef50_C4RE96: Diguanylate cyclase with GAF sensor|unclassified	2.5566843666
+UniRef50_Q46BI1: Acetate kinase	2.5565762357
+UniRef50_Q46BI1: Acetate kinase|g__Clostridium.s__Clostridium_beijerinckii	2.5565762357
+UniRef50_A6LS15: PHP C-terminal domain protein	2.5562873234
+UniRef50_A6LS15: PHP C-terminal domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.5562873234
+UniRef50_O69754: Trans-2,3-dihydro-3-hydroxyanthranilate isomerase	2.5559616785
+UniRef50_O69754: Trans-2,3-dihydro-3-hydroxyanthranilate isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5559616785
+UniRef50_A3M0Z0: D-amino acid dehydrogenase small subunit	2.5557519997
+UniRef50_A3M0Z0: D-amino acid dehydrogenase small subunit|g__Neisseria.s__Neisseria_meningitidis	1.2500000000
+UniRef50_A3M0Z0: D-amino acid dehydrogenase small subunit|g__Acinetobacter.s__Acinetobacter_baumannii	1.0582010582
+UniRef50_A3M0Z0: D-amino acid dehydrogenase small subunit|unclassified	0.2475509415
+UniRef50_E1V7W0: N-alpha-acetyl-L-2,4-diaminobutyric acid deacetylase	2.5552155437
+UniRef50_E1V7W0: N-alpha-acetyl-L-2,4-diaminobutyric acid deacetylase|unclassified	2.5552155437
+UniRef50_A6V2D8	2.5549342635
+UniRef50_A6V2D8|unclassified	2.5549342635
+UniRef50_B1XUJ9: NADH-quinone oxidoreductase subunit B	2.5547680423
+UniRef50_B1XUJ9: NADH-quinone oxidoreductase subunit B|g__Helicobacter.s__Helicobacter_pylori	2.1231422505
+UniRef50_B1XUJ9: NADH-quinone oxidoreductase subunit B|unclassified	0.4316257917
+UniRef50_F3EJZ8: Nitrate reductase	2.5545272454
+UniRef50_F3EJZ8: Nitrate reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5545272454
+UniRef50_B2THX3: 3D/G5 domain protein	2.5543818885
+UniRef50_B2THX3: 3D/G5 domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.5543818885
+UniRef50_X5KFN0: Sensor histidine kinase VncS	2.5536578994
+UniRef50_X5KFN0: Sensor histidine kinase VncS|g__Streptococcus.s__Streptococcus_agalactiae	2.5536578994
+UniRef50_D4H9Z1	2.5533284290
+UniRef50_D4H9Z1|unclassified	2.5533284290
+UniRef50_H1QKQ9: Nitrite and sulphite reductase 4Fe-4S domain protein (Fragment)	2.5533242923
+UniRef50_H1QKQ9: Nitrite and sulphite reductase 4Fe-4S domain protein (Fragment)|unclassified	2.5533242923
+UniRef50_Q2NXB3	2.5532646660
+UniRef50_Q2NXB3|unclassified	2.5532646660
+UniRef50_A3PMH9	2.5527433126
+UniRef50_A3PMH9|unclassified	2.5527433126
+UniRef50_Q18C09: Methionine import ATP-binding protein MetN	2.5524101952
+UniRef50_Q18C09: Methionine import ATP-binding protein MetN|g__Clostridium.s__Clostridium_beijerinckii	2.2819591302
+UniRef50_Q18C09: Methionine import ATP-binding protein MetN|unclassified	0.2704510651
+UniRef50_A6LS70	2.5522890268
+UniRef50_A6LS70|g__Clostridium.s__Clostridium_beijerinckii	2.5522890268
+UniRef50_V5SR70: Nitrate ABC transporter substrate-binding protein	2.5518017314
+UniRef50_V5SR70: Nitrate ABC transporter substrate-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5518017314
+UniRef50_H7F672: Cyclase family protein (Fragment)	2.5515099993
+UniRef50_H7F672: Cyclase family protein (Fragment)|unclassified	2.5515099993
+UniRef50_UPI00041293AC: membrane protein	2.5514006706
+UniRef50_UPI00041293AC: membrane protein|unclassified	2.5514006706
+UniRef50_U5ACW9	2.5512703648
+UniRef50_U5ACW9|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6949152542
+UniRef50_U5ACW9|unclassified	0.8563551106
+UniRef50_V8G4T0: Sugar ABC transporter substrate-binding protein	2.5511832129
+UniRef50_V8G4T0: Sugar ABC transporter substrate-binding protein|g__Clostridium.s__Clostridium_beijerinckii	2.5511832129
+UniRef50_E4SRK6: Mannose-specific phosphotransferase system component IIC low	2.5510868150
+UniRef50_E4SRK6: Mannose-specific phosphotransferase system component IIC low|g__Streptococcus.s__Streptococcus_agalactiae	2.5510868150
+UniRef50_M1X905	2.5510204082
+UniRef50_M1X905|unclassified	2.5510204082
+UniRef50_B5Z355	2.5510204082
+UniRef50_B5Z355|g__Escherichia.s__Escherichia_coli	2.5510204082
+UniRef50_J2YBM3: Flagellar assembly protein FliH	2.5510204082
+UniRef50_J2YBM3: Flagellar assembly protein FliH|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5510204082
+UniRef50_P71297	2.5510204082
+UniRef50_P71297|g__Escherichia.s__Escherichia_coli	2.5510204082
+UniRef50_R4Y6B2: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	2.5510204082
+UniRef50_R4Y6B2: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|g__Escherichia.s__Escherichia_coli	2.5510204082
+UniRef50_R5VTD5: ABC transporter permease protein	2.5510204082
+UniRef50_R5VTD5: ABC transporter permease protein|g__Clostridium.s__Clostridium_beijerinckii	2.5510204082
+UniRef50_S2YJ79	2.5503517982
+UniRef50_S2YJ79|unclassified	2.5503517982
+UniRef50_J3NQ90	2.5501400282
+UniRef50_J3NQ90|unclassified	2.5501400282
+UniRef50_UPI00047D1C2C: sugar ABC transporter permease	2.5499121481
+UniRef50_UPI00047D1C2C: sugar ABC transporter permease|unclassified	2.5499121481
+UniRef50_G2A114: Protein ves	2.5493797964
+UniRef50_G2A114: Protein ves|unclassified	2.5493797964
+UniRef50_J9P129	2.5492788693
+UniRef50_J9P129|unclassified	2.5492788693
+UniRef50_M9VE12: Transglutaminase	2.5490677184
+UniRef50_M9VE12: Transglutaminase|g__Propionibacterium.s__Propionibacterium_acnes	2.5490677184
+UniRef50_L0GY09: AAA+ family ATPase	2.5483067628
+UniRef50_L0GY09: AAA+ family ATPase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5483067628
+UniRef50_M1MFG9: Spermidine/putrescine transport system permease protein PotC	2.5482710711
+UniRef50_M1MFG9: Spermidine/putrescine transport system permease protein PotC|g__Clostridium.s__Clostridium_beijerinckii	2.5482710711
+UniRef50_W9BQH2: Curved DNA-binding protein	2.5479932964
+UniRef50_W9BQH2: Curved DNA-binding protein|g__Escherichia.s__Escherichia_coli	2.5479932964
+UniRef50_G7TCM8: ParB family protein	2.5476526115
+UniRef50_G7TCM8: ParB family protein|unclassified	2.5476526115
+UniRef50_G7GUQ9	2.5473108763
+UniRef50_G7GUQ9|unclassified	2.5473108763
+UniRef50_A3K7K9	2.5470093552
+UniRef50_A3K7K9|unclassified	2.5470093552
+UniRef50_V7FPL1: Competence protein	2.5468389589
+UniRef50_V7FPL1: Competence protein|unclassified	2.5468389589
+UniRef50_A0A059LBF3	2.5467214990
+UniRef50_A0A059LBF3|unclassified	2.5467214990
+UniRef50_P54905: Phytoene synthase	2.5462793143
+UniRef50_P54905: Phytoene synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.5462793143
+UniRef50_UPI00029B4158: ribonucleotide-diphosphate reductase subunit beta, partial	2.5461072358
+UniRef50_UPI00029B4158: ribonucleotide-diphosphate reductase subunit beta, partial|unclassified	2.5461072358
+UniRef50_W0YNP0: AMP-binding protein	2.5459161958
+UniRef50_W0YNP0: AMP-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5459161958
+UniRef50_E3A0Q4	2.5458350336
+UniRef50_E3A0Q4|unclassified	2.5458350336
+UniRef50_F0KEU3	2.5456967483
+UniRef50_F0KEU3|g__Acinetobacter.s__Acinetobacter_baumannii	2.5456967483
+UniRef50_B7UZF1	2.5449599607
+UniRef50_B7UZF1|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5449599607
+UniRef50_UPI000364FFFE: hypothetical protein, partial	2.5447940307
+UniRef50_UPI000364FFFE: hypothetical protein, partial|unclassified	2.5447940307
+UniRef50_S9QJ95: Glycine/D-amino acid oxidase (Deaminating)	2.5445982430
+UniRef50_S9QJ95: Glycine/D-amino acid oxidase (Deaminating)|unclassified	2.5445982430
+UniRef50_Q6AB05: Porphobilinogen deaminase	2.5445960531
+UniRef50_Q6AB05: Porphobilinogen deaminase|g__Propionibacterium.s__Propionibacterium_acnes	2.5445960531
+UniRef50_A0A017I5Y6: Phosphate transporter family protein	2.5445292621
+UniRef50_A0A017I5Y6: Phosphate transporter family protein|g__Escherichia.s__Escherichia_coli	2.5445292621
+UniRef50_A6LT48	2.5445292621
+UniRef50_A6LT48|g__Clostridium.s__Clostridium_beijerinckii	2.5445292621
+UniRef50_E3F446: Nickel import ATP-binding protein NikD, putative	2.5445292621
+UniRef50_E3F446: Nickel import ATP-binding protein NikD, putative|g__Escherichia.s__Escherichia_coli	2.5445292621
+UniRef50_R8ZMV6	2.5445292621
+UniRef50_R8ZMV6|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5445292621
+UniRef50_R9U595: Truncated RpoS	2.5445292621
+UniRef50_R9U595: Truncated RpoS|g__Escherichia.s__Escherichia_coli	2.5445292621
+UniRef50_T0MUP8	2.5445292621
+UniRef50_T0MUP8|g__Escherichia.s__Escherichia_coli	2.5445292621
+UniRef50_T0U9A1: Transcriptional regulator	2.5445292621
+UniRef50_T0U9A1: Transcriptional regulator|g__Streptococcus.s__Streptococcus_agalactiae	2.5445292621
+UniRef50_U3SZ43: Acyl-CoA thioesterase	2.5445292621
+UniRef50_U3SZ43: Acyl-CoA thioesterase|g__Acinetobacter.s__Acinetobacter_baumannii	2.5445292621
+UniRef50_Q02I54	2.5439063201
+UniRef50_Q02I54|unclassified	2.5439063201
+UniRef50_S1FKD9	2.5437052658
+UniRef50_S1FKD9|g__Escherichia.s__Escherichia_coli	2.1786492375
+UniRef50_S1FKD9|unclassified	0.3650560283
+UniRef50_Q97K95: L-aspartate oxidase	2.5435558944
+UniRef50_Q97K95: L-aspartate oxidase|g__Clostridium.s__Clostridium_beijerinckii	2.5435558944
+UniRef50_I6FBJ8	2.5432851135
+UniRef50_I6FBJ8|unclassified	2.5432851135
+UniRef50_B2IG21: Arsenate reductase and related	2.5430331229
+UniRef50_B2IG21: Arsenate reductase and related|unclassified	2.5430331229
+UniRef50_UPI000374BAFA: hypothetical protein	2.5427899282
+UniRef50_UPI000374BAFA: hypothetical protein|unclassified	2.5427899282
+UniRef50_Q8FSA6	2.5413422394
+UniRef50_Q8FSA6|unclassified	2.5413422394
+UniRef50_U1F4B9: Acyltransferase domain protein	2.5412699066
+UniRef50_U1F4B9: Acyltransferase domain protein|g__Staphylococcus.s__Staphylococcus_aureus	2.5412699066
+UniRef50_I2DWY9: MotA/TolQ/ExbB proton channel family protein	2.5409926758
+UniRef50_I2DWY9: MotA/TolQ/ExbB proton channel family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5409926758
+UniRef50_N5NSD3	2.5409867819
+UniRef50_N5NSD3|unclassified	2.5409867819
+UniRef50_D6AVU9: Ribosome-associated heat shock protein	2.5399334626
+UniRef50_D6AVU9: Ribosome-associated heat shock protein|unclassified	2.5399334626
+UniRef50_Q63QK7: Arginine biosynthesis bifunctional protein ArgJ	2.5395008816
+UniRef50_Q63QK7: Arginine biosynthesis bifunctional protein ArgJ|g__Acinetobacter.s__Acinetobacter_baumannii	2.0751994568
+UniRef50_Q63QK7: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.4643014248
+UniRef50_C7D8D6: Conserved domain protein	2.5390552586
+UniRef50_C7D8D6: Conserved domain protein|unclassified	2.5390552586
+UniRef50_V6FKH0: AsmA domain protein	2.5388432527
+UniRef50_V6FKH0: AsmA domain protein|g__Escherichia.s__Escherichia_coli	2.5388432527
+UniRef50_UPI0004723870: hypothetical protein	2.5386133374
+UniRef50_UPI0004723870: hypothetical protein|unclassified	2.5386133374
+UniRef50_A6LRW1: Phage portal protein	2.5382182223
+UniRef50_A6LRW1: Phage portal protein|g__Clostridium.s__Clostridium_beijerinckii	2.5382182223
+UniRef50_K2CIP8	2.5381434628
+UniRef50_K2CIP8|unclassified	2.5381434628
+UniRef50_A0LT91: (Acyl-carrier-protein) S-malonyltransferase-like protein	2.5380710660
+UniRef50_A0LT91: (Acyl-carrier-protein) S-malonyltransferase-like protein|g__Propionibacterium.s__Propionibacterium_acnes	2.5380710660
+UniRef50_A3PPH1: OmpA/MotB domain protein	2.5380710660
+UniRef50_A3PPH1: OmpA/MotB domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.5380710660
+UniRef50_Q9RZR2	2.5380710660
+UniRef50_Q9RZR2|unclassified	2.5380710660
+UniRef50_UPI000364AAF0: hypothetical protein	2.5380710660
+UniRef50_UPI000364AAF0: hypothetical protein|unclassified	2.5380710660
+UniRef50_UPI00037DD74B: hypothetical protein, partial	2.5380710660
+UniRef50_UPI00037DD74B: hypothetical protein, partial|unclassified	2.5380710660
+UniRef50_A0A035VZJ1	2.5378497898
+UniRef50_A0A035VZJ1|unclassified	2.5378497898
+UniRef50_A0A024KDL9	2.5374484645
+UniRef50_A0A024KDL9|unclassified	2.5374484645
+UniRef50_I2DHK5	2.5372880103
+UniRef50_I2DHK5|g__Helicobacter.s__Helicobacter_pylori	2.5372880103
+UniRef50_A4WQW5	2.5356474038
+UniRef50_A4WQW5|unclassified	2.5356474038
+UniRef50_U4YDG2	2.5354027326
+UniRef50_U4YDG2|unclassified	2.5354027326
+UniRef50_A0A023RX60: Membrane protein insertase	2.5351728785
+UniRef50_A0A023RX60: Membrane protein insertase|g__Acinetobacter.s__Acinetobacter_baumannii	2.5351728785
+UniRef50_D7HYK9: Acyl-CoA thioesterase II, putative	2.5349560479
+UniRef50_D7HYK9: Acyl-CoA thioesterase II, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5349560479
+UniRef50_J5HE89: Adenylosuccinate lyase	2.5347641068
+UniRef50_J5HE89: Adenylosuccinate lyase|g__Streptococcus.s__Streptococcus_agalactiae	2.5347641068
+UniRef50_W5VEC3	2.5346721631
+UniRef50_W5VEC3|unclassified	2.5346721631
+UniRef50_Q5QVL6: D-erythrose-4-phosphate dehydrogenase	2.5344924459
+UniRef50_Q5QVL6: D-erythrose-4-phosphate dehydrogenase|unclassified	2.5344924459
+UniRef50_Q75AN4: ADL112Wp	2.5343902610
+UniRef50_Q75AN4: ADL112Wp|unclassified	2.5343902610
+UniRef50_F8H8V6: Helicase	2.5342765233
+UniRef50_F8H8V6: Helicase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5342765233
+UniRef50_G7M6P0	2.5342665479
+UniRef50_G7M6P0|g__Clostridium.s__Clostridium_beijerinckii	2.5342665479
+UniRef50_W5XBC0: 30S ribosomal protein S3	2.5341347622
+UniRef50_W5XBC0: 30S ribosomal protein S3|unclassified	2.5341347622
+UniRef50_T0LIK9	2.5339944019
+UniRef50_T0LIK9|unclassified	2.5339944019
+UniRef50_Q17XQ8: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha	2.5326221701
+UniRef50_Q17XQ8: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|g__Helicobacter.s__Helicobacter_pylori	2.3980815348
+UniRef50_Q17XQ8: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|unclassified	0.1345406354
+UniRef50_UPI00030C918D: hypothetical protein	2.5325626302
+UniRef50_UPI00030C918D: hypothetical protein|unclassified	2.5325626302
+UniRef50_W8G3Q0: RNA helicase	2.5317429888
+UniRef50_W8G3Q0: RNA helicase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5317429888
+UniRef50_A6LYP0: PTS system, mannose/fructose/sorbose family, IIA subunit	2.5316455696
+UniRef50_A6LYP0: PTS system, mannose/fructose/sorbose family, IIA subunit|g__Clostridium.s__Clostridium_beijerinckii	2.5316455696
+UniRef50_B2UDG7: Transcriptional regulator, MerR family	2.5316455696
+UniRef50_B2UDG7: Transcriptional regulator, MerR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5316455696
+UniRef50_C0P653	2.5316455696
+UniRef50_C0P653|unclassified	2.5316455696
+UniRef50_Q6ZN04-3: Isoform 2 of RNA-binding protein MEX3B	2.5316455696
+UniRef50_Q6ZN04-3: Isoform 2 of RNA-binding protein MEX3B|unclassified	2.5316455696
+UniRef50_S6D4X2	2.5316229203
+UniRef50_S6D4X2|unclassified	2.5316229203
+UniRef50_E4ZD91	2.5310692093
+UniRef50_E4ZD91|g__Neisseria.s__Neisseria_meningitidis	2.5310692093
+UniRef50_UPI000237EFA3: transposase IS3 family protein	2.5308175090
+UniRef50_UPI000237EFA3: transposase IS3 family protein|unclassified	2.5308175090
+UniRef50_Q4K5N7: TonB-dependent outermembrane heme receptor HasR	2.5307559780
+UniRef50_Q4K5N7: TonB-dependent outermembrane heme receptor HasR|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5307559780
+UniRef50_Q0DU63: Os03g0204900 protein (Fragment)	2.5306053626
+UniRef50_Q0DU63: Os03g0204900 protein (Fragment)|unclassified	2.5306053626
+UniRef50_K5VLJ3	2.5303891608
+UniRef50_K5VLJ3|unclassified	2.5303891608
+UniRef50_X8AZC4: ArsC family protein	2.5300747204
+UniRef50_X8AZC4: ArsC family protein|unclassified	2.5300747204
+UniRef50_W1YK15	2.5294320009
+UniRef50_W1YK15|unclassified	2.5294320009
+UniRef50_G4LCG2: Type III export protein	2.5292451782
+UniRef50_G4LCG2: Type III export protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5292451782
+UniRef50_W5IWM3	2.5291400638
+UniRef50_W5IWM3|unclassified	2.5291400638
+UniRef50_F8IS60: Isertion sequence IS861 transposase	2.5286427861
+UniRef50_F8IS60: Isertion sequence IS861 transposase|g__Streptococcus.s__Streptococcus_agalactiae	2.5286427861
+UniRef50_E2XT98: Alcohol dehydrogenase	2.5280836072
+UniRef50_E2XT98: Alcohol dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	2.5280836072
+UniRef50_S5Y909	2.5278598768
+UniRef50_S5Y909|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.4436483057
+UniRef50_S5Y909|unclassified	0.0842115711
+UniRef50_A7FAW9	2.5277340008
+UniRef50_A7FAW9|g__Acinetobacter.s__Acinetobacter_baumannii	2.5277340008
+UniRef50_D8IDT0: GCN5-related N-acetyltransferase	2.5274053612
+UniRef50_D8IDT0: GCN5-related N-acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	2.5274053612
+UniRef50_UPI000382652B: hypothetical protein	2.5271828770
+UniRef50_UPI000382652B: hypothetical protein|unclassified	2.5271828770
+UniRef50_F9YAC9	2.5269929586
+UniRef50_F9YAC9|unclassified	2.5269929586
+UniRef50_U7PU52	2.5260233014
+UniRef50_U7PU52|unclassified	2.5260233014
+UniRef50_U1DNW1	2.5259470543
+UniRef50_U1DNW1|unclassified	2.5259470543
+UniRef50_A6M1A4: Flagellin domain protein	2.5252525253
+UniRef50_A6M1A4: Flagellin domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.5252525253
+UniRef50_D3VIS7: Regulator of ribonuclease activity B	2.5252525253
+UniRef50_D3VIS7: Regulator of ribonuclease activity B|g__Escherichia.s__Escherichia_coli	2.5252525253
+UniRef50_E8PF29: CzcI	2.5252525253
+UniRef50_E8PF29: CzcI|g__Acinetobacter.s__Acinetobacter_baumannii	2.5252525253
+UniRef50_I4L7Y2: Transcriptional regulator I2	2.5252525253
+UniRef50_I4L7Y2: Transcriptional regulator I2|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5252525253
+UniRef50_S0VVA9: Fimbrial-like adhesin protein	2.5252525253
+UniRef50_S0VVA9: Fimbrial-like adhesin protein|g__Escherichia.s__Escherichia_coli	2.5252525253
+UniRef50_UPI00042C7E6A: PREDICTED: zinc finger protein 311-like, partial	2.5252525253
+UniRef50_UPI00042C7E6A: PREDICTED: zinc finger protein 311-like, partial|unclassified	2.5252525253
+UniRef50_W0WAK7	2.5252525253
+UniRef50_W0WAK7|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5252525253
+UniRef50_X5KFS4: Secreted protein, putative	2.5252525253
+UniRef50_X5KFS4: Secreted protein, putative|g__Streptococcus.s__Streptococcus_agalactiae	2.5252525253
+UniRef50_UPI00025599A0: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase, partial	2.5252177938
+UniRef50_UPI00025599A0: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase, partial|unclassified	2.5252177938
+UniRef50_E6DXU7: ABC transporter, solute-binding protein	2.5247051274
+UniRef50_E6DXU7: ABC transporter, solute-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	2.5247051274
+UniRef50_A5F3A7: Aldehyde dehydrogenase	2.5245859849
+UniRef50_A5F3A7: Aldehyde dehydrogenase|g__Escherichia.s__Escherichia_coli	2.4607815309
+UniRef50_A5F3A7: Aldehyde dehydrogenase|unclassified	0.0638044540
+UniRef50_A6V477	2.5237996267
+UniRef50_A6V477|unclassified	2.5237996267
+UniRef50_L1K787	2.5234024078
+UniRef50_L1K787|unclassified	2.5234024078
+UniRef50_Q17Y79: ATP synthase gamma chain	2.5232315148
+UniRef50_Q17Y79: ATP synthase gamma chain|g__Helicobacter.s__Helicobacter_pylori	2.5232315148
+UniRef50_UPI000225EA40: HPr kinase	2.5230306352
+UniRef50_UPI000225EA40: HPr kinase|unclassified	2.5230306352
+UniRef50_E3EMN0: Oxidoreductase, aldo/keto reductase family	2.5229897110
+UniRef50_E3EMN0: Oxidoreductase, aldo/keto reductase family|g__Propionibacterium.s__Propionibacterium_acnes	2.5229897110
+UniRef50_E3D1E7	2.5224321958
+UniRef50_E3D1E7|g__Neisseria.s__Neisseria_meningitidis	2.5224321958
+UniRef50_U1GSZ3: MFS transporter, FSR family, fosmidomycin resistance protein	2.5221466521
+UniRef50_U1GSZ3: MFS transporter, FSR family, fosmidomycin resistance protein|unclassified	2.5221466521
+UniRef50_E6M7M9	2.5220286474
+UniRef50_E6M7M9|unclassified	2.5220286474
+UniRef50_Q6FFG0	2.5219884564
+UniRef50_Q6FFG0|g__Acinetobacter.s__Acinetobacter_baumannii	2.5219884564
+UniRef50_A6LWG3	2.5216767513
+UniRef50_A6LWG3|g__Clostridium.s__Clostridium_beijerinckii	2.5216767513
+UniRef50_C5D4L1: Transcriptional regulator, RpiR family	2.5213531050
+UniRef50_C5D4L1: Transcriptional regulator, RpiR family|g__Clostridium.s__Clostridium_beijerinckii	2.5213531050
+UniRef50_B3N1U6: GF19607	2.5213323699
+UniRef50_B3N1U6: GF19607|unclassified	2.5213323699
+UniRef50_M1MIG9: Methyl-accepting chemotaxis protein	2.5213266184
+UniRef50_M1MIG9: Methyl-accepting chemotaxis protein|g__Clostridium.s__Clostridium_beijerinckii	2.5213266184
+UniRef50_B0VE73	2.5207077803
+UniRef50_B0VE73|g__Acinetobacter.s__Acinetobacter_baumannii	2.5207077803
+UniRef50_UPI0003B603D1: hypothetical protein	2.5206267384
+UniRef50_UPI0003B603D1: hypothetical protein|unclassified	2.5206267384
+UniRef50_W8YLR0	2.5198412920
+UniRef50_W8YLR0|unclassified	2.5198412920
+UniRef50_I2BSA8: Oxidoreductase, short chain dehydrogenase/reductase family	2.5188916877
+UniRef50_I2BSA8: Oxidoreductase, short chain dehydrogenase/reductase family|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5188916877
+UniRef50_K2GIA5	2.5188916877
+UniRef50_K2GIA5|unclassified	2.5188916877
+UniRef50_M9JHU6: LysM domain protein	2.5188916877
+UniRef50_M9JHU6: LysM domain protein|g__Escherichia.s__Escherichia_coli	2.5188916877
+UniRef50_T0TFQ9: Ribonuclease BN	2.5188916877
+UniRef50_T0TFQ9: Ribonuclease BN|g__Streptococcus.s__Streptococcus_agalactiae	2.5188916877
+UniRef50_UPI00036F0D64: hypothetical protein	2.5188916877
+UniRef50_UPI00036F0D64: hypothetical protein|unclassified	2.5188916877
+UniRef50_K2FJE0: Response regulator receiver protein	2.5180848439
+UniRef50_K2FJE0: Response regulator receiver protein|unclassified	2.5180848439
+UniRef50_C8UDI8	2.5176780161
+UniRef50_C8UDI8|g__Escherichia.s__Escherichia_coli	1.9646365422
+UniRef50_C8UDI8|unclassified	0.5530414739
+UniRef50_UPI000463D3E1: hypothetical protein, partial	2.5176267435
+UniRef50_UPI000463D3E1: hypothetical protein, partial|unclassified	2.5176267435
+UniRef50_UPI0003B75B95: 50S ribosomal protein L5	2.5173532923
+UniRef50_UPI0003B75B95: 50S ribosomal protein L5|unclassified	2.5173532923
+UniRef50_A6LZQ4: Methyltransferase type 11	2.5173074790
+UniRef50_A6LZQ4: Methyltransferase type 11|g__Clostridium.s__Clostridium_beijerinckii	2.5173074790
+UniRef50_S0I0B3	2.5171610223
+UniRef50_S0I0B3|unclassified	2.5171610223
+UniRef50_B3PH50: Probable protein kinase UbiB	2.5161725541
+UniRef50_B3PH50: Probable protein kinase UbiB|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5357803972
+UniRef50_B3PH50: Probable protein kinase UbiB|g__Neisseria.s__Neisseria_meningitidis	0.9803921569
+UniRef50_UPI0003B611E4: hypothetical protein	2.5160231640
+UniRef50_UPI0003B611E4: hypothetical protein|unclassified	2.5160231640
+UniRef50_A6LQ39	2.5157232704
+UniRef50_A6LQ39|g__Clostridium.s__Clostridium_beijerinckii	2.5157232704
+UniRef50_K7S070: ABC transporter, ATP-binding protein	2.5157232704
+UniRef50_K7S070: ABC transporter, ATP-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	2.5157232704
+UniRef50_U7GEP4	2.5155755072
+UniRef50_U7GEP4|unclassified	2.5155755072
+UniRef50_D0T5H1: ATP-dependent helicase HrpA	2.5152627928
+UniRef50_D0T5H1: ATP-dependent helicase HrpA|g__Acinetobacter.s__Acinetobacter_baumannii	2.5152627928
+UniRef50_UPI000467D29B: translation initiation factor IF-3	2.5143189915
+UniRef50_UPI000467D29B: translation initiation factor IF-3|unclassified	2.5143189915
+UniRef50_A4IQK7: NADPH dehydrogenase	2.5143170800
+UniRef50_A4IQK7: NADPH dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	1.5313935681
+UniRef50_A4IQK7: NADPH dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9066183137
+UniRef50_A4IQK7: NADPH dehydrogenase|unclassified	0.0763051982
+UniRef50_J2DIA2	2.5142448467
+UniRef50_J2DIA2|unclassified	2.5142448467
+UniRef50_Y6NMC4: Transcriptional regulator	2.5141226044
+UniRef50_Y6NMC4: Transcriptional regulator|unclassified	2.5141226044
+UniRef50_Q796Q6	2.5138012083
+UniRef50_Q796Q6|g__Clostridium.s__Clostridium_beijerinckii	2.5138012083
+UniRef50_M4HVK3: Degenerate transposase (Orf2)	2.5132732328
+UniRef50_M4HVK3: Degenerate transposase (Orf2)|unclassified	2.5132732328
+UniRef50_UPI0000164CD8: hypothetical protein DR_0251	2.5131021258
+UniRef50_UPI0000164CD8: hypothetical protein DR_0251|unclassified	2.5131021258
+UniRef50_A9LZP7	2.5125628141
+UniRef50_A9LZP7|g__Neisseria.s__Neisseria_meningitidis	2.5125628141
+UniRef50_B7UY99: Peptidyl-prolyl cis-trans isomerase	2.5125628141
+UniRef50_B7UY99: Peptidyl-prolyl cis-trans isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5125628141
+UniRef50_I1ZNG1	2.5125628141
+UniRef50_I1ZNG1|g__Streptococcus.s__Streptococcus_agalactiae	2.5125628141
+UniRef50_K0RQZ1	2.5125628141
+UniRef50_K0RQZ1|unclassified	2.5125628141
+UniRef50_A6LVH3: Methyl-accepting chemotaxis sensory transducer	2.5122935441
+UniRef50_A6LVH3: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	2.5122935441
+UniRef50_Q43922: 3-dehydroshikimate dehydratase	2.5114658873
+UniRef50_Q43922: 3-dehydroshikimate dehydratase|g__Acinetobacter.s__Acinetobacter_baumannii	2.5114658873
+UniRef50_G8LV00: Transposase	2.5114155251
+UniRef50_G8LV00: Transposase|g__Clostridium.s__Clostridium_beijerinckii	2.5114155251
+UniRef50_A1B0C6: Pyridoxine/pyridoxamine 5'-phosphate oxidase	2.5101541126
+UniRef50_A1B0C6: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	2.5101541126
+UniRef50_D4GDN3: Catalase	2.5099703553
+UniRef50_D4GDN3: Catalase|g__Escherichia.s__Escherichia_coli	2.5099703553
+UniRef50_UPI0003642424: hypothetical protein	2.5096056465
+UniRef50_UPI0003642424: hypothetical protein|unclassified	2.5096056465
+UniRef50_W4LDT2: Glyoxalase	2.5095218047
+UniRef50_W4LDT2: Glyoxalase|unclassified	2.5095218047
+UniRef50_W0YSY8: Ribonuclease E	2.5090641693
+UniRef50_W0YSY8: Ribonuclease E|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5090641693
+UniRef50_W8XGY1	2.5089786752
+UniRef50_W8XGY1|unclassified	2.5089786752
+UniRef50_Q6A9F2	2.5088539702
+UniRef50_Q6A9F2|g__Propionibacterium.s__Propionibacterium_acnes	2.5088539702
+UniRef50_A4XSJ5	2.5079770927
+UniRef50_A4XSJ5|unclassified	2.5079770927
+UniRef50_G7M9Q4: SSS sodium solute transporter superfamily	2.5079724358
+UniRef50_G7M9Q4: SSS sodium solute transporter superfamily|g__Clostridium.s__Clostridium_beijerinckii	2.5079724358
+UniRef50_X7ATG0	2.5078725833
+UniRef50_X7ATG0|unclassified	2.5078725833
+UniRef50_Q9RXG4: Lon protease	2.5078682157
+UniRef50_Q9RXG4: Lon protease|g__Deinococcus.s__Deinococcus_radiodurans	2.5078682157
+UniRef50_B3WBW4: Phosphotransferase system sugar-specific EII component	2.5068940261
+UniRef50_B3WBW4: Phosphotransferase system sugar-specific EII component|g__Streptococcus.s__Streptococcus_agalactiae	2.5068940261
+UniRef50_UPI000366F960: hypothetical protein	2.5068007190
+UniRef50_UPI000366F960: hypothetical protein|unclassified	2.5068007190
+UniRef50_A6LTH9	2.5062656642
+UniRef50_A6LTH9|g__Clostridium.s__Clostridium_beijerinckii	2.5062656642
+UniRef50_A6TVZ6: Metal dependent phosphohydrolase	2.5062656642
+UniRef50_A6TVZ6: Metal dependent phosphohydrolase|g__Clostridium.s__Clostridium_beijerinckii	2.5062656642
+UniRef50_A7FBG6	2.5062656642
+UniRef50_A7FBG6|g__Acinetobacter.s__Acinetobacter_baumannii	2.5062656642
+UniRef50_M9S617: ABC transporter permease	2.5062656642
+UniRef50_M9S617: ABC transporter permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5062656642
+UniRef50_Q6ME50: 30S ribosomal protein S8	2.5062656642
+UniRef50_Q6ME50: 30S ribosomal protein S8|g__Deinococcus.s__Deinococcus_radiodurans	2.5062656642
+UniRef50_Q9HYR3	2.5062656642
+UniRef50_Q9HYR3|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5062656642
+UniRef50_T5C0H6	2.5062656642
+UniRef50_T5C0H6|unclassified	2.5062656642
+UniRef50_W8ELK9	2.5062656642
+UniRef50_W8ELK9|g__Acinetobacter.s__Acinetobacter_baumannii	2.5062656642
+UniRef50_D7CUB2: RNA binding S1 domain protein	2.5060289673
+UniRef50_D7CUB2: RNA binding S1 domain protein|g__Deinococcus.s__Deinococcus_radiodurans	2.5060289673
+UniRef50_Q87VJ2: DNA mismatch repair protein MutL	2.5059662617
+UniRef50_Q87VJ2: DNA mismatch repair protein MutL|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.5059662617
+UniRef50_M9VEF8: Glucoamylase S1/S2	2.5057703670
+UniRef50_M9VEF8: Glucoamylase S1/S2|unclassified	2.5057703670
+UniRef50_Q05825: ATP synthase subunit beta, mitochondrial	2.5045657719
+UniRef50_Q05825: ATP synthase subunit beta, mitochondrial|g__Propionibacterium.s__Propionibacterium_acnes	2.2873544994
+UniRef50_Q05825: ATP synthase subunit beta, mitochondrial|unclassified	0.2172112725
+UniRef50_UPI0002559F0A: NnrU family protein	2.5045622933
+UniRef50_UPI0002559F0A: NnrU family protein|unclassified	2.5045622933
+UniRef50_UPI00035CEE62: hypothetical protein, partial	2.5042753572
+UniRef50_UPI00035CEE62: hypothetical protein, partial|unclassified	2.5042753572
+UniRef50_Q4EE14	2.5033933819
+UniRef50_Q4EE14|unclassified	2.5033933819
+UniRef50_O83079: Probable metal transport system membrane protein TP_0036	2.5031289111
+UniRef50_O83079: Probable metal transport system membrane protein TP_0036|g__Clostridium.s__Clostridium_beijerinckii	2.5031289111
+UniRef50_U8TR15	2.5024125551
+UniRef50_U8TR15|unclassified	2.5024125551
+UniRef50_B9DZY6	2.5020122778
+UniRef50_B9DZY6|g__Clostridium.s__Clostridium_beijerinckii	2.4554950935
+UniRef50_B9DZY6|unclassified	0.0465171843
+UniRef50_A3M465: TPR domain protein	2.5019746282
+UniRef50_A3M465: TPR domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.5019746282
+UniRef50_A6LY67: Helix-turn-helix-domain containing protein, AraC type	2.5017301685
+UniRef50_A6LY67: Helix-turn-helix-domain containing protein, AraC type|g__Clostridium.s__Clostridium_beijerinckii	2.5017301685
+UniRef50_A0A037ZMW4	2.5008472937
+UniRef50_A0A037ZMW4|unclassified	2.5008472937
+UniRef50_K0SGI4	2.5004877892
+UniRef50_K0SGI4|unclassified	2.5004877892
+UniRef50_V9Y8D2: Citrate synthase family protein	2.5003525197
+UniRef50_V9Y8D2: Citrate synthase family protein|unclassified	2.5003525197
+UniRef50_W4TF65: Glycosyltransferase	2.5002530188
+UniRef50_W4TF65: Glycosyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	2.5002530188
+UniRef50_A6LY74: Resolvase helix-turn-helix domain protein	2.5000000000
+UniRef50_A6LY74: Resolvase helix-turn-helix domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.5000000000
+UniRef50_H4PZ48: Glutamine methyltransferase	2.5000000000
+UniRef50_H4PZ48: Glutamine methyltransferase|g__Escherichia.s__Escherichia_coli	2.5000000000
+UniRef50_R9ZF14: Amino acid permease	2.4998640906
+UniRef50_R9ZF14: Amino acid permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4998640906
+UniRef50_V4HTY9	2.4995353682
+UniRef50_V4HTY9|unclassified	2.4995353682
+UniRef50_Q886D0: Autotransporter, putative	2.4991184368
+UniRef50_Q886D0: Autotransporter, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4991184368
+UniRef50_G9ZBL9	2.4986998761
+UniRef50_G9ZBL9|unclassified	2.4986998761
+UniRef50_R4ZVE6: ABC transporter permease protein	2.4986829320
+UniRef50_R4ZVE6: ABC transporter permease protein|g__Streptococcus.s__Streptococcus_agalactiae	2.4712987921
+UniRef50_R4ZVE6: ABC transporter permease protein|unclassified	0.0273841399
+UniRef50_D9S0U1: Amine oxidase	2.4985494682
+UniRef50_D9S0U1: Amine oxidase|g__Clostridium.s__Clostridium_beijerinckii	2.4985494682
+UniRef50_F0KN05: Multiple inositol polyphosphate histidine phosphatase	2.4981667067
+UniRef50_F0KN05: Multiple inositol polyphosphate histidine phosphatase|g__Acinetobacter.s__Acinetobacter_baumannii	2.4981667067
+UniRef50_R7QBK2: Stackhouse genomic scaffold, scaffold_21	2.4973470289
+UniRef50_R7QBK2: Stackhouse genomic scaffold, scaffold_21|unclassified	2.4973470289
+UniRef50_S5CTA0: AraC-type DNA-binding domain-containing protein	2.4971941639
+UniRef50_S5CTA0: AraC-type DNA-binding domain-containing protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.4971941639
+UniRef50_A6LXI3: Integral membrane sensor signal transduction histidine kinase	2.4968387118
+UniRef50_A6LXI3: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	2.4968387118
+UniRef50_Q9ZB62: Ornithine carbamoyltransferase	2.4960754269
+UniRef50_Q9ZB62: Ornithine carbamoyltransferase|g__Clostridium.s__Clostridium_beijerinckii	2.4570024570
+UniRef50_Q9ZB62: Ornithine carbamoyltransferase|unclassified	0.0390729699
+UniRef50_W0HD99	2.4957846386
+UniRef50_W0HD99|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4957846386
+UniRef50_A2WSH1	2.4949102439
+UniRef50_A2WSH1|unclassified	2.4949102439
+UniRef50_J0J1A9	2.4943642248
+UniRef50_J0J1A9|unclassified	2.4943642248
+UniRef50_A9KMQ0: L-lactate dehydrogenase	2.4943240133
+UniRef50_A9KMQ0: L-lactate dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	2.4943240133
+UniRef50_M5DN32: Signal transduction protein	2.4939775594
+UniRef50_M5DN32: Signal transduction protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3952130162
+UniRef50_M5DN32: Signal transduction protein|unclassified	0.0987645432
+UniRef50_J9YRE9: Acetyltransferase	2.4937655860
+UniRef50_J9YRE9: Acetyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	2.4937655860
+UniRef50_Q9I644: Putative esterase PA0474	2.4937655860
+UniRef50_Q9I644: Putative esterase PA0474|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4937655860
+UniRef50_Q9RTI8: MutT/nudix family protein	2.4937655860
+UniRef50_Q9RTI8: MutT/nudix family protein|g__Deinococcus.s__Deinococcus_radiodurans	2.4937655860
+UniRef50_UPI000369843A: nucleoid-associated protein	2.4937655860
+UniRef50_UPI000369843A: nucleoid-associated protein|unclassified	2.4937655860
+UniRef50_G4KZ65: ATP-dependent zinc metalloprotease FtsH	2.4936011112
+UniRef50_G4KZ65: ATP-dependent zinc metalloprotease FtsH|g__Clostridium.s__Clostridium_beijerinckii	2.4936011112
+UniRef50_A8GID3: Lipid-A-disaccharide synthase	2.4934391323
+UniRef50_A8GID3: Lipid-A-disaccharide synthase|g__Escherichia.s__Escherichia_coli	2.2664237067
+UniRef50_A8GID3: Lipid-A-disaccharide synthase|unclassified	0.2270154256
+UniRef50_A5WCE7: (P)ppGpp synthetase I, SpoT/RelA	2.4922420258
+UniRef50_A5WCE7: (P)ppGpp synthetase I, SpoT/RelA|g__Acinetobacter.s__Acinetobacter_baumannii	2.4922420258
+UniRef50_B9E104: 1-deoxy-D-xylulose-5-phosphate synthase	2.4920070581
+UniRef50_B9E104: 1-deoxy-D-xylulose-5-phosphate synthase|g__Clostridium.s__Clostridium_beijerinckii	2.4920070581
+UniRef50_F8JI17	2.4916718851
+UniRef50_F8JI17|unclassified	2.4916718851
+UniRef50_A4VPA5	2.4913046472
+UniRef50_A4VPA5|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1551724138
+UniRef50_A4VPA5|unclassified	0.3361322335
+UniRef50_UPI00035C5DE1: hypothetical protein	2.4902977947
+UniRef50_UPI00035C5DE1: hypothetical protein|unclassified	2.4902977947
+UniRef50_F2N0L2	2.4896048073
+UniRef50_F2N0L2|unclassified	2.4896048073
+UniRef50_A5G222: Probable chemoreceptor glutamine deamidase CheD	2.4895377305
+UniRef50_A5G222: Probable chemoreceptor glutamine deamidase CheD|unclassified	2.4895377305
+UniRef50_UPI0003B2E7EB: glutamine amidotransferase	2.4892828972
+UniRef50_UPI0003B2E7EB: glutamine amidotransferase|unclassified	2.4892828972
+UniRef50_Q8YH38: Muconate cycloisomerase i	2.4887521630
+UniRef50_Q8YH38: Muconate cycloisomerase i|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.4887521630
+UniRef50_A3DEM3: 4-hydroxy-tetrahydrodipicolinate reductase	2.4875621891
+UniRef50_A3DEM3: 4-hydroxy-tetrahydrodipicolinate reductase|g__Clostridium.s__Clostridium_beijerinckii	2.4875621891
+UniRef50_A5ULJ0: Pyridoxamine-phosphate oxidase (FMN-binding)	2.4875621891
+UniRef50_A5ULJ0: Pyridoxamine-phosphate oxidase (FMN-binding)|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.4875621891
+UniRef50_C1CXG1: 50S ribosomal protein L22	2.4875621891
+UniRef50_C1CXG1: 50S ribosomal protein L22|g__Deinococcus.s__Deinococcus_radiodurans	2.4875621891
+UniRef50_F4DXM1: Short chain dehydrogenase	2.4875621891
+UniRef50_F4DXM1: Short chain dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4875621891
+UniRef50_G4L0D5	2.4875621891
+UniRef50_G4L0D5|g__Clostridium.s__Clostridium_beijerinckii	2.4875621891
+UniRef50_W6QWZ0: Putative acyl-CoA thioester hydrolase	2.4875621891
+UniRef50_W6QWZ0: Putative acyl-CoA thioester hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4875621891
+UniRef50_S1SGR9	2.4873213288
+UniRef50_S1SGR9|unclassified	2.4873213288
+UniRef50_A6M3F7: Sigma-54 factor, interaction domain-containing protein	2.4871677501
+UniRef50_A6M3F7: Sigma-54 factor, interaction domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	2.4871677501
+UniRef50_G2G9I6	2.4871043101
+UniRef50_G2G9I6|unclassified	2.4871043101
+UniRef50_I0C4K0	2.4864402618
+UniRef50_I0C4K0|g__Staphylococcus.s__Staphylococcus_aureus	2.4665992532
+UniRef50_I0C4K0|unclassified	0.0198410086
+UniRef50_A6LXV6: Xylan 1,4-beta-xylosidase	2.4858674144
+UniRef50_A6LXV6: Xylan 1,4-beta-xylosidase|g__Clostridium.s__Clostridium_beijerinckii	2.4858674144
+UniRef50_E0T031: Phage-related minor tail protein	2.4853761349
+UniRef50_E0T031: Phage-related minor tail protein|g__Streptococcus.s__Streptococcus_agalactiae	2.4853761349
+UniRef50_UPI0004694578: 30S ribosomal protein S15	2.4850055903
+UniRef50_UPI0004694578: 30S ribosomal protein S15|unclassified	2.4850055903
+UniRef50_D6Z602: Glutamine synthetase catalytic region	2.4849425491
+UniRef50_D6Z602: Glutamine synthetase catalytic region|g__Clostridium.s__Clostridium_beijerinckii	2.4849425491
+UniRef50_W5B0U3	2.4847766056
+UniRef50_W5B0U3|unclassified	2.4847766056
+UniRef50_U5MKN8: FAD dependent oxidoreductase	2.4847026390
+UniRef50_U5MKN8: FAD dependent oxidoreductase|g__Clostridium.s__Clostridium_beijerinckii	2.4847026390
+UniRef50_G6YFS1: Twin-arginine translocation pathway signal (Fragment)	2.4838084993
+UniRef50_G6YFS1: Twin-arginine translocation pathway signal (Fragment)|unclassified	2.4838084993
+UniRef50_B0CVB5: Predicted protein	2.4837350961
+UniRef50_B0CVB5: Predicted protein|unclassified	2.4837350961
+UniRef50_E5U2A7	2.4828157279
+UniRef50_E5U2A7|unclassified	2.4828157279
+UniRef50_F2EPT9: Transporting ATPase YfcM	2.4827833523
+UniRef50_F2EPT9: Transporting ATPase YfcM|unclassified	2.4827833523
+UniRef50_G7UAA4: Arginine/ornithine antiporter ArcD	2.4825918038
+UniRef50_G7UAA4: Arginine/ornithine antiporter ArcD|g__Propionibacterium.s__Propionibacterium_acnes	2.4825918038
+UniRef50_UPI0003706282: hypothetical protein	2.4821901966
+UniRef50_UPI0003706282: hypothetical protein|unclassified	2.4821901966
+UniRef50_A5W6Z8: Secretion protein HlyD family protein	2.4818936584
+UniRef50_A5W6Z8: Secretion protein HlyD family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4818936584
+UniRef50_B9KRZ0: AMP-dependent synthetase and ligase	2.4817837668
+UniRef50_B9KRZ0: AMP-dependent synthetase and ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.4817837668
+UniRef50_UPI0001744EBE: organic solvent ABC transporter ATP-binding protein	2.4817439609
+UniRef50_UPI0001744EBE: organic solvent ABC transporter ATP-binding protein|unclassified	2.4817439609
+UniRef50_UPI000169712B: hypothetical protein	2.4816664283
+UniRef50_UPI000169712B: hypothetical protein|unclassified	2.4816664283
+UniRef50_F1BCI2	2.4816141721
+UniRef50_F1BCI2|unclassified	2.4816141721
+UniRef50_B9EBL2	2.4813895782
+UniRef50_B9EBL2|g__Staphylococcus.s__Staphylococcus_aureus	2.4813895782
+UniRef50_D3E453	2.4813895782
+UniRef50_D3E453|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.4813895782
+UniRef50_E7IBL3: Protein gmr domain protein	2.4813895782
+UniRef50_E7IBL3: Protein gmr domain protein|g__Escherichia.s__Escherichia_coli	2.4813895782
+UniRef50_K7RZE6: Transcription termination/antitermination protein NusG	2.4813895782
+UniRef50_K7RZE6: Transcription termination/antitermination protein NusG|g__Propionibacterium.s__Propionibacterium_acnes	2.4813895782
+UniRef50_M4R188: Alpha/beta hydrolase	2.4813895782
+UniRef50_M4R188: Alpha/beta hydrolase|g__Acinetobacter.s__Acinetobacter_baumannii	2.4813895782
+UniRef50_P75988	2.4813895782
+UniRef50_P75988|g__Escherichia.s__Escherichia_coli	2.4813895782
+UniRef50_Q6A6A0: Putative N-acetylmannosamine-6-phosphate 2-epimerase	2.4813895782
+UniRef50_Q6A6A0: Putative N-acetylmannosamine-6-phosphate 2-epimerase|g__Propionibacterium.s__Propionibacterium_acnes	2.4813895782
+UniRef50_UPI000299D256: hypothetical protein	2.4813895782
+UniRef50_UPI000299D256: hypothetical protein|unclassified	2.4813895782
+UniRef50_Z2DML4: Protein BatD	2.4813895782
+UniRef50_Z2DML4: Protein BatD|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4813895782
+UniRef50_Q8ESX1: Rhamnulokinase	2.4812794193
+UniRef50_Q8ESX1: Rhamnulokinase|g__Clostridium.s__Clostridium_beijerinckii	2.4812794193
+UniRef50_U5N033	2.4812355016
+UniRef50_U5N033|g__Clostridium.s__Clostridium_beijerinckii	2.4812355016
+UniRef50_Q97DP6: Phospho-alpha-glucosidase PagL	2.4811665724
+UniRef50_Q97DP6: Phospho-alpha-glucosidase PagL|g__Clostridium.s__Clostridium_beijerinckii	2.4811665724
+UniRef50_B7H0C7: AraC-like ligand binding domain protein	2.4807675153
+UniRef50_B7H0C7: AraC-like ligand binding domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.4807675153
+UniRef50_A3PQ83: Xylose isomerase domain protein TIM barrel	2.4805602571
+UniRef50_A3PQ83: Xylose isomerase domain protein TIM barrel|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.4805602571
+UniRef50_M9VK36: Cobaltochelatase subunit	2.4803477052
+UniRef50_M9VK36: Cobaltochelatase subunit|g__Propionibacterium.s__Propionibacterium_acnes	2.4803477052
+UniRef50_Q9RWI0	2.4800868629
+UniRef50_Q9RWI0|g__Deinococcus.s__Deinococcus_radiodurans	2.4800868629
+UniRef50_K9SJV6: Amino acid/amide ABC transporter substrate-binding protein, HAAT family	2.4798161250
+UniRef50_K9SJV6: Amino acid/amide ABC transporter substrate-binding protein, HAAT family|g__Deinococcus.s__Deinococcus_radiodurans	2.4798161250
+UniRef50_UPI000463660C: enolase	2.4796761146
+UniRef50_UPI000463660C: enolase|g__Escherichia.s__Escherichia_coli	2.4469896607
+UniRef50_UPI000463660C: enolase|unclassified	0.0326864539
+UniRef50_UPI000479651A: DNA methyltransferase	2.4796258467
+UniRef50_UPI000479651A: DNA methyltransferase|unclassified	2.4796258467
+UniRef50_A3PKF9	2.4795405874
+UniRef50_A3PKF9|unclassified	2.4795405874
+UniRef50_Q9XAD5: Probable cysteine desulfurase	2.4793388430
+UniRef50_Q9XAD5: Probable cysteine desulfurase|g__Propionibacterium.s__Propionibacterium_acnes	2.4793388430
+UniRef50_UPI0003B39C34: sugar ABC transporter permease	2.4789065934
+UniRef50_UPI0003B39C34: sugar ABC transporter permease|unclassified	2.4789065934
+UniRef50_C6UPN2: Conserved protein	2.4788953160
+UniRef50_C6UPN2: Conserved protein|unclassified	2.4788953160
+UniRef50_A6LTV6: SEC-C motif domain protein	2.4787396623
+UniRef50_A6LTV6: SEC-C motif domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.4787396623
+UniRef50_F5TUF3	2.4783820165
+UniRef50_F5TUF3|unclassified	2.4783820165
+UniRef50_O24850	2.4783147460
+UniRef50_O24850|g__Acinetobacter.s__Acinetobacter_baumannii	2.4783147460
+UniRef50_Q01856	2.4780613606
+UniRef50_Q01856|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.4780613606
+UniRef50_A3PH59	2.4776475145
+UniRef50_A3PH59|unclassified	2.4776475145
+UniRef50_S3MI44: Major facilitator superfamily (MFS) transporter	2.4763396035
+UniRef50_S3MI44: Major facilitator superfamily (MFS) transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4763396035
+UniRef50_D3FUC5: [Ni/Fe] hydrogenase, large subunit	2.4761238354
+UniRef50_D3FUC5: [Ni/Fe] hydrogenase, large subunit|g__Clostridium.s__Clostridium_beijerinckii	2.4761238354
+UniRef50_UPI00046ADCCD: hypothetical protein	2.4760042984
+UniRef50_UPI00046ADCCD: hypothetical protein|unclassified	2.4760042984
+UniRef50_Q1XG21	2.4759419176
+UniRef50_Q1XG21|unclassified	2.4759419176
+UniRef50_I1HS37	2.4752475248
+UniRef50_I1HS37|unclassified	2.4752475248
+UniRef50_Q97H93: Cell division protein SepF	2.4752475248
+UniRef50_Q97H93: Cell division protein SepF|g__Clostridium.s__Clostridium_beijerinckii	2.4752475248
+UniRef50_Q9RZH1	2.4752475248
+UniRef50_Q9RZH1|unclassified	2.4752475248
+UniRef50_Q4FTT8: 2-octaprenylphenol hydroxylase	2.4751837030
+UniRef50_Q4FTT8: 2-octaprenylphenol hydroxylase|g__Acinetobacter.s__Acinetobacter_baumannii	2.4751837030
+UniRef50_F8A5M8: Alpha amylase catalytic region	2.4747603434
+UniRef50_F8A5M8: Alpha amylase catalytic region|g__Propionibacterium.s__Propionibacterium_acnes	2.4747603434
+UniRef50_T0BL71	2.4746560707
+UniRef50_T0BL71|unclassified	2.4746560707
+UniRef50_P39438: Undecaprenyl-diphosphatase (Fragment)	2.4746135373
+UniRef50_P39438: Undecaprenyl-diphosphatase (Fragment)|unclassified	2.4746135373
+UniRef50_X5EXM8: Glycosyl transferase	2.4746130336
+UniRef50_X5EXM8: Glycosyl transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4746130336
+UniRef50_W1YHK6	2.4745010247
+UniRef50_W1YHK6|unclassified	2.4745010247
+UniRef50_A6LSK1: Probable dual-specificity RNA methyltransferase RlmN	2.4743314231
+UniRef50_A6LSK1: Probable dual-specificity RNA methyltransferase RlmN|g__Clostridium.s__Clostridium_beijerinckii	2.4743314231
+UniRef50_B2HQA4: Imidazoleglycerol-phosphate dehydratase	2.4742985537
+UniRef50_B2HQA4: Imidazoleglycerol-phosphate dehydratase|unclassified	2.4742985537
+UniRef50_P22520: Colicin V secretion/processing ATP-binding protein CvaB	2.4735228540
+UniRef50_P22520: Colicin V secretion/processing ATP-binding protein CvaB|g__Escherichia.s__Escherichia_coli	2.4735228540
+UniRef50_UPI00037FE3E7: hypothetical protein, partial	2.4734878781
+UniRef50_UPI00037FE3E7: hypothetical protein, partial|unclassified	2.4734878781
+UniRef50_Q2NEP0: Predicted permease	2.4723988461
+UniRef50_Q2NEP0: Predicted permease|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.4723988461
+UniRef50_F3HVB8	2.4723652854
+UniRef50_F3HVB8|unclassified	2.4723652854
+UniRef50_D6B3Y8: FscRII (Fragment)	2.4723410435
+UniRef50_D6B3Y8: FscRII (Fragment)|unclassified	2.4723410435
+UniRef50_UPI00030456EA: insertion element IS407 domain protein	2.4722600590
+UniRef50_UPI00030456EA: insertion element IS407 domain protein|unclassified	2.4722600590
+UniRef50_F3U2R3	2.4718038323
+UniRef50_F3U2R3|unclassified	2.4718038323
+UniRef50_A6LR40: Ribonuclease R	2.4711808624
+UniRef50_A6LR40: Ribonuclease R|g__Clostridium.s__Clostridium_beijerinckii	2.4711808624
+UniRef50_Q1RF65	2.4709567723
+UniRef50_Q1RF65|unclassified	2.4709567723
+UniRef50_Q51281: SiaD protein	2.4704386429
+UniRef50_Q51281: SiaD protein|g__Neisseria.s__Neisseria_meningitidis	2.4704386429
+UniRef50_A4WQH5: Transposase IS66	2.4700995190
+UniRef50_A4WQH5: Transposase IS66|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.8935904885
+UniRef50_A4WQH5: Transposase IS66|unclassified	0.5765090306
+UniRef50_A3PKC2: Response regulator receiver protein	2.4691358025
+UniRef50_A3PKC2: Response regulator receiver protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.4691358025
+UniRef50_A6V958	2.4691358025
+UniRef50_A6V958|unclassified	2.4691358025
+UniRef50_E0R9L7	2.4691358025
+UniRef50_E0R9L7|g__Clostridium.s__Clostridium_beijerinckii	2.4691358025
+UniRef50_G0DXL2	2.4691358025
+UniRef50_G0DXL2|g__Propionibacterium.s__Propionibacterium_acnes	2.4691358025
+UniRef50_G7M2R9: ABC-type transporter, periplasmic subunit family 3	2.4691358025
+UniRef50_G7M2R9: ABC-type transporter, periplasmic subunit family 3|g__Clostridium.s__Clostridium_beijerinckii	2.4691358025
+UniRef50_G8VRC7: Electron transfer flavoprotein FAD-binding domain protein	2.4691358025
+UniRef50_G8VRC7: Electron transfer flavoprotein FAD-binding domain protein|g__Propionibacterium.s__Propionibacterium_acnes	2.4691358025
+UniRef50_M4WYW1	2.4691358025
+UniRef50_M4WYW1|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4691358025
+UniRef50_Q88MC6	2.4691358025
+UniRef50_Q88MC6|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4691358025
+UniRef50_Q9RSP5	2.4691358025
+UniRef50_Q9RSP5|g__Deinococcus.s__Deinococcus_radiodurans	2.4691358025
+UniRef50_R4R8F1: Transcriptional regulator, LysR family	2.4691358025
+UniRef50_R4R8F1: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4691358025
+UniRef50_R5VLQ7: Predicted acyltransferase	2.4691358025
+UniRef50_R5VLQ7: Predicted acyltransferase|g__Clostridium.s__Clostridium_beijerinckii	2.4691358025
+UniRef50_UPI00000D3C44: single-stranded DNA-binding protein	2.4691358025
+UniRef50_UPI00000D3C44: single-stranded DNA-binding protein|g__Deinococcus.s__Deinococcus_radiodurans	2.4691358025
+UniRef50_UPI0002DA7C5C: hypothetical protein	2.4691358025
+UniRef50_UPI0002DA7C5C: hypothetical protein|unclassified	2.4691358025
+UniRef50_A6M142	2.4686725748
+UniRef50_A6M142|g__Clostridium.s__Clostridium_beijerinckii	2.4686725748
+UniRef50_H3RG96	2.4686221390
+UniRef50_H3RG96|unclassified	2.4686221390
+UniRef50_UPI00035CD59F: DNA-binding protein	2.4681217131
+UniRef50_UPI00035CD59F: DNA-binding protein|unclassified	2.4681217131
+UniRef50_J9YQH5: PTS system transporter subunit IIBC	2.4679443626
+UniRef50_J9YQH5: PTS system transporter subunit IIBC|g__Streptococcus.s__Streptococcus_agalactiae	2.4679443626
+UniRef50_D7AQD0: NADH:flavin oxidoreductase/NADH oxidase	2.4677182773
+UniRef50_D7AQD0: NADH:flavin oxidoreductase/NADH oxidase|g__Clostridium.s__Clostridium_beijerinckii	2.4677182773
+UniRef50_N0ATL3: Amidase	2.4676210367
+UniRef50_N0ATL3: Amidase|g__Clostridium.s__Clostridium_beijerinckii	2.4676210367
+UniRef50_P32051	2.4667275174
+UniRef50_P32051|g__Escherichia.s__Escherichia_coli	2.4667275174
+UniRef50_A0R5R7: Putative aminotransferase MSMEG_6286/MSMEI_6121	2.4661249909
+UniRef50_A0R5R7: Putative aminotransferase MSMEG_6286/MSMEI_6121|g__Propionibacterium.s__Propionibacterium_acnes	2.4661249909
+UniRef50_A6M385: Response regulator receiver protein	2.4658141681
+UniRef50_A6M385: Response regulator receiver protein|g__Clostridium.s__Clostridium_beijerinckii	2.4658141681
+UniRef50_Q8YI77	2.4656885675
+UniRef50_Q8YI77|unclassified	2.4656885675
+UniRef50_X5KJK2: Immunodominant antigen A	2.4656681540
+UniRef50_X5KJK2: Immunodominant antigen A|g__Streptococcus.s__Streptococcus_agalactiae	1.7271157168
+UniRef50_X5KJK2: Immunodominant antigen A|unclassified	0.7385524372
+UniRef50_A0A011Q261	2.4656652684
+UniRef50_A0A011Q261|unclassified	2.4656652684
+UniRef50_UPI000362454E: hypothetical protein, partial	2.4653902009
+UniRef50_UPI000362454E: hypothetical protein, partial|unclassified	2.4653902009
+UniRef50_F8G053: Inosine/uridine-preferring nucleoside hydrolase	2.4652999593
+UniRef50_F8G053: Inosine/uridine-preferring nucleoside hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4652999593
+UniRef50_UPI000363A648: hypothetical protein	2.4650598699
+UniRef50_UPI000363A648: hypothetical protein|unclassified	2.4650598699
+UniRef50_A6LT52	2.4649619226
+UniRef50_A6LT52|g__Clostridium.s__Clostridium_beijerinckii	2.4649619226
+UniRef50_P77923: Delta-aminolevulinic acid dehydratase	2.4645424732
+UniRef50_P77923: Delta-aminolevulinic acid dehydratase|g__Propionibacterium.s__Propionibacterium_acnes	2.2321428571
+UniRef50_P77923: Delta-aminolevulinic acid dehydratase|unclassified	0.2323996161
+UniRef50_A4G266: Phosphate starvation-inducible protein	2.4635925915
+UniRef50_A4G266: Phosphate starvation-inducible protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4635925915
+UniRef50_UPI0003B4C435: F0F1 ATP synthase subunit delta	2.4635625821
+UniRef50_UPI0003B4C435: F0F1 ATP synthase subunit delta|unclassified	2.4635625821
+UniRef50_A6LQ88: Type II secretory pathway pseudopilin PulG-like protein	2.4630541872
+UniRef50_A6LQ88: Type II secretory pathway pseudopilin PulG-like protein|g__Clostridium.s__Clostridium_beijerinckii	2.4630541872
+UniRef50_R6X9T8: HAD hydrolase family IIA	2.4630541872
+UniRef50_R6X9T8: HAD hydrolase family IIA|g__Clostridium.s__Clostridium_beijerinckii	2.4630541872
+UniRef50_UPI0001660066: hypothetical protein p21_00100	2.4630541872
+UniRef50_UPI0001660066: hypothetical protein p21_00100|unclassified	2.4630541872
+UniRef50_Q98QK7	2.4628902184
+UniRef50_Q98QK7|unclassified	2.4628902184
+UniRef50_C2L1L8	2.4614332379
+UniRef50_C2L1L8|unclassified	2.4614332379
+UniRef50_Q08NT1	2.4606970132
+UniRef50_Q08NT1|unclassified	2.4606970132
+UniRef50_UPI0001D2EE73: RNA polymerase, sigma-24 subunit, ECF subfamily	2.4606713183
+UniRef50_UPI0001D2EE73: RNA polymerase, sigma-24 subunit, ECF subfamily|unclassified	2.4606713183
+UniRef50_UPI000315AE23: hypothetical protein	2.4603751178
+UniRef50_UPI000315AE23: hypothetical protein|unclassified	2.4603751178
+UniRef50_F7ZHD8	2.4603295864
+UniRef50_F7ZHD8|unclassified	2.4603295864
+UniRef50_S9BT59: Dihydroorotase	2.4593882232
+UniRef50_S9BT59: Dihydroorotase|g__Streptococcus.s__Streptococcus_agalactiae	2.4593882232
+UniRef50_B0VBG2	2.4592328514
+UniRef50_B0VBG2|g__Acinetobacter.s__Acinetobacter_baumannii	2.4592328514
+UniRef50_F3U4V4: ATPase, ParA type	2.4587532183
+UniRef50_F3U4V4: ATPase, ParA type|unclassified	2.4587532183
+UniRef50_G7M1G9: Calcium-transporting ATPase	2.4586182460
+UniRef50_G7M1G9: Calcium-transporting ATPase|g__Clostridium.s__Clostridium_beijerinckii	2.4586182460
+UniRef50_R5D9D5	2.4581203336
+UniRef50_R5D9D5|unclassified	2.4581203336
+UniRef50_A6M2Q1: M18 family aminopeptidase	2.4577549177
+UniRef50_A6M2Q1: M18 family aminopeptidase|g__Clostridium.s__Clostridium_beijerinckii	2.4577549177
+UniRef50_D2S3Z6: SSS sodium solute transporter superfamily	2.4577324198
+UniRef50_D2S3Z6: SSS sodium solute transporter superfamily|g__Deinococcus.s__Deinococcus_radiodurans	2.4577324198
+UniRef50_Q6A9R0: Ribosomal RNA small subunit methyltransferase H	2.4574224816
+UniRef50_Q6A9R0: Ribosomal RNA small subunit methyltransferase H|g__Propionibacterium.s__Propionibacterium_acnes	2.4024856972
+UniRef50_Q6A9R0: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0549367844
+UniRef50_U5RXJ0: ApbE family lipoprotein	2.4572324542
+UniRef50_U5RXJ0: ApbE family lipoprotein|g__Clostridium.s__Clostridium_beijerinckii	2.4572324542
+UniRef50_R4ZU58: Lipoprotein involved in the synthesis of group B streptococcal carboyhdrate antigen	2.4570801225
+UniRef50_R4ZU58: Lipoprotein involved in the synthesis of group B streptococcal carboyhdrate antigen|g__Streptococcus.s__Streptococcus_agalactiae	2.4570801225
+UniRef50_J2X3D5	2.4570061652
+UniRef50_J2X3D5|unclassified	2.4570061652
+UniRef50_A6VCN3	2.4570024570
+UniRef50_A6VCN3|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4570024570
+UniRef50_D7GEE3: rRNA methylase	2.4570024570
+UniRef50_D7GEE3: rRNA methylase|g__Propionibacterium.s__Propionibacterium_acnes	2.4570024570
+UniRef50_K0RCA8	2.4570024570
+UniRef50_K0RCA8|unclassified	2.4570024570
+UniRef50_Q2RWN6: Transcriptional regulator, AsnC family	2.4570024570
+UniRef50_Q2RWN6: Transcriptional regulator, AsnC family|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.4570024570
+UniRef50_Q9RZL8: Protein NrdI	2.4570024570
+UniRef50_Q9RZL8: Protein NrdI|unclassified	2.4570024570
+UniRef50_UPI0003AF0B92: PREDICTED: collagen alpha-1(XXIV) chain	2.4570024570
+UniRef50_UPI0003AF0B92: PREDICTED: collagen alpha-1(XXIV) chain|unclassified	2.4570024570
+UniRef50_UPI000468C8D2: hypothetical protein	2.4570024570
+UniRef50_UPI000468C8D2: hypothetical protein|unclassified	2.4570024570
+UniRef50_V8G1N6: Transcriptional regulator	2.4570024570
+UniRef50_V8G1N6: Transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	2.4570024570
+UniRef50_E4RJQ9: Cysteine desulfurase, SufS subfamily	2.4569175896
+UniRef50_E4RJQ9: Cysteine desulfurase, SufS subfamily|g__Clostridium.s__Clostridium_beijerinckii	2.4569175896
+UniRef50_F6ASP3: Sulfonate ABC transporter periplasmic sulfonate-binding protein	2.4567192244
+UniRef50_F6ASP3: Sulfonate ABC transporter periplasmic sulfonate-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4567192244
+UniRef50_UPI0004646ABC: MULTISPECIES: hypothetical protein	2.4553528952
+UniRef50_UPI0004646ABC: MULTISPECIES: hypothetical protein|unclassified	2.4553528952
+UniRef50_H6LBB1: Electron transfer flavoprotein alpha subunit EtfA	2.4551283928
+UniRef50_H6LBB1: Electron transfer flavoprotein alpha subunit EtfA|g__Clostridium.s__Clostridium_beijerinckii	2.4551283928
+UniRef50_B7RG87: Major capsid protein, HK97 family	2.4542969286
+UniRef50_B7RG87: Major capsid protein, HK97 family|unclassified	2.4542969286
+UniRef50_Q899C3: Isoleucine--tRNA ligase	2.4537412366
+UniRef50_Q899C3: Isoleucine--tRNA ligase|g__Clostridium.s__Clostridium_beijerinckii	2.4178728306
+UniRef50_Q899C3: Isoleucine--tRNA ligase|unclassified	0.0358684059
+UniRef50_A3V6T8	2.4531832261
+UniRef50_A3V6T8|unclassified	2.4531832261
+UniRef50_A0A022NSH9	2.4513365857
+UniRef50_A0A022NSH9|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4181969256
+UniRef50_A0A022NSH9|unclassified	0.0331396601
+UniRef50_W7X3Q1: Fasciclin domain protein	2.4511033787
+UniRef50_W7X3Q1: Fasciclin domain protein|unclassified	2.4511033787
+UniRef50_C5VT76: LicC protein	2.4509803922
+UniRef50_C5VT76: LicC protein|g__Clostridium.s__Clostridium_beijerinckii	2.4509803922
+UniRef50_M9SB45: Flp prepilin peptidase A, FppA	2.4509803922
+UniRef50_M9SB45: Flp prepilin peptidase A, FppA|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4509803922
+UniRef50_V1XBG2: Cell filamentation protein Fic	2.4509803922
+UniRef50_V1XBG2: Cell filamentation protein Fic|g__Escherichia.s__Escherichia_coli	2.4509803922
+UniRef50_V4QMN6: Glutamyl-tRNA amidotransferase subunit A	2.4500537121
+UniRef50_V4QMN6: Glutamyl-tRNA amidotransferase subunit A|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4500537121
+UniRef50_G5RK09: Membrane-bound lytic murein transglycosylase A	2.4498603249
+UniRef50_G5RK09: Membrane-bound lytic murein transglycosylase A|unclassified	2.4498603249
+UniRef50_P45793: Type IV pilus assembly protein TapC	2.4494804042
+UniRef50_P45793: Type IV pilus assembly protein TapC|g__Acinetobacter.s__Acinetobacter_baumannii	2.4494804042
+UniRef50_A4Q814	2.4491887552
+UniRef50_A4Q814|unclassified	2.4491887552
+UniRef50_A6M2M1	2.4484513287
+UniRef50_A6M2M1|g__Clostridium.s__Clostridium_beijerinckii	2.4484513287
+UniRef50_A2S732	2.4482166547
+UniRef50_A2S732|unclassified	2.4482166547
+UniRef50_W5FL81	2.4479840836
+UniRef50_W5FL81|unclassified	2.4479840836
+UniRef50_Q5H336: Hsp90xo protein	2.4478011196
+UniRef50_Q5H336: Hsp90xo protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4478011196
+UniRef50_L8DY64: Ig-like virion protein	2.4475025484
+UniRef50_L8DY64: Ig-like virion protein|unclassified	2.4475025484
+UniRef50_K0IHJ1: Ammonium transporter NrgA	2.4471300891
+UniRef50_K0IHJ1: Ammonium transporter NrgA|g__Clostridium.s__Clostridium_beijerinckii	2.4471300891
+UniRef50_Q6FFB2: Argininosuccinate lyase	2.4459105391
+UniRef50_Q6FFB2: Argininosuccinate lyase|g__Acinetobacter.s__Acinetobacter_baumannii	2.1168440555
+UniRef50_Q6FFB2: Argininosuccinate lyase|unclassified	0.3290664836
+UniRef50_UPI000413C1BE: hypothetical protein	2.4456157099
+UniRef50_UPI000413C1BE: hypothetical protein|unclassified	2.4456157099
+UniRef50_G2L860	2.4449913849
+UniRef50_G2L860|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4449913849
+UniRef50_B2UTG2: UPF0763 protein HPSH_03535	2.4449877751
+UniRef50_B2UTG2: UPF0763 protein HPSH_03535|g__Helicobacter.s__Helicobacter_pylori	2.4449877751
+UniRef50_V8G0E8	2.4446959374
+UniRef50_V8G0E8|g__Clostridium.s__Clostridium_beijerinckii	2.4446959374
+UniRef50_B7UZY5: AlgW protein	2.4444891437
+UniRef50_B7UZY5: AlgW protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4444891437
+UniRef50_J9A415	2.4442255096
+UniRef50_J9A415|unclassified	2.4442255096
+UniRef50_F0QGI7	2.4441012556
+UniRef50_F0QGI7|g__Acinetobacter.s__Acinetobacter_baumannii	2.4441012556
+UniRef50_G2BB96	2.4440234238
+UniRef50_G2BB96|unclassified	2.4440234238
+UniRef50_T5RWF8	2.4440017408
+UniRef50_T5RWF8|unclassified	2.4440017408
+UniRef50_R7R1P9: Cobalamin biosynthesis protein CbiM	2.4435334780
+UniRef50_R7R1P9: Cobalamin biosynthesis protein CbiM|g__Clostridium.s__Clostridium_beijerinckii	2.4435334780
+UniRef50_J9YQD3	2.4426288013
+UniRef50_J9YQD3|g__Streptococcus.s__Streptococcus_agalactiae	2.4426288013
+UniRef50_C4XN46	2.4425818483
+UniRef50_C4XN46|unclassified	2.4425818483
+UniRef50_Q02S34	2.4425131867
+UniRef50_Q02S34|unclassified	2.4425131867
+UniRef50_B9E3J2	2.4423949932
+UniRef50_B9E3J2|g__Clostridium.s__Clostridium_beijerinckii	2.4423949932
+UniRef50_A4WVG7	2.4417788267
+UniRef50_A4WVG7|unclassified	2.4417788267
+UniRef50_Q030J8: 3-oxoacyl-[acyl-carrier-protein] synthase 3	2.4410164809
+UniRef50_Q030J8: 3-oxoacyl-[acyl-carrier-protein] synthase 3|g__Streptococcus.s__Streptococcus_agalactiae	2.1597189685
+UniRef50_Q030J8: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	0.2812975125
+UniRef50_B9JCC6: Acyl carrier protein	2.4396779037
+UniRef50_B9JCC6: Acyl carrier protein|unclassified	2.4396779037
+UniRef50_R9ZLH4: (Fe-S)-binding protein	2.4395739484
+UniRef50_R9ZLH4: (Fe-S)-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4395739484
+UniRef50_K4PTP2: CAAX amino terminal protease	2.4391549815
+UniRef50_K4PTP2: CAAX amino terminal protease|g__Streptococcus.s__Streptococcus_agalactiae	2.4391549815
+UniRef50_A5A605	2.4390243902
+UniRef50_A5A605|g__Escherichia.s__Escherichia_coli	2.4390243902
+UniRef50_D5CDT8: Ferritin Dps family protein	2.4390243902
+UniRef50_D5CDT8: Ferritin Dps family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4390243902
+UniRef50_G7M1N2	2.4390243902
+UniRef50_G7M1N2|g__Clostridium.s__Clostridium_beijerinckii	2.4390243902
+UniRef50_Q1C762: Cysteine desulfuration protein SufE	2.4390243902
+UniRef50_Q1C762: Cysteine desulfuration protein SufE|g__Escherichia.s__Escherichia_coli	2.4390243902
+UniRef50_S9BP95	2.4390243902
+UniRef50_S9BP95|g__Streptococcus.s__Streptococcus_agalactiae	2.4390243902
+UniRef50_S9L773	2.4390243902
+UniRef50_S9L773|g__Streptococcus.s__Streptococcus_agalactiae	2.4390243902
+UniRef50_UPI000359AF1A: PREDICTED: serine/threonine-protein phosphatase 4 regulatory subunit 2-like	2.4390243902
+UniRef50_UPI000359AF1A: PREDICTED: serine/threonine-protein phosphatase 4 regulatory subunit 2-like|unclassified	2.4390243902
+UniRef50_F9KWT2: Conserved domain protein	2.4390243902
+UniRef50_F9KWT2: Conserved domain protein|unclassified	2.4390243902
+UniRef50_A6LSX6: Metal dependent phosphohydrolase	2.4380170201
+UniRef50_A6LSX6: Metal dependent phosphohydrolase|g__Clostridium.s__Clostridium_beijerinckii	2.4380170201
+UniRef50_UPI000382C675: hypothetical protein, partial	2.4379665663
+UniRef50_UPI000382C675: hypothetical protein, partial|unclassified	2.4379665663
+UniRef50_F2D112: Predicted protein (Fragment)	2.4377971466
+UniRef50_F2D112: Predicted protein (Fragment)|unclassified	2.4377971466
+UniRef50_A6LR74: Methyl-accepting chemotaxis sensory transducer	2.4361630618
+UniRef50_A6LR74: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	2.4361630618
+UniRef50_D9SLD8: Fibronectin-binding A domain protein	2.4354897773
+UniRef50_D9SLD8: Fibronectin-binding A domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.4354897773
+UniRef50_Q5P6J7: Magnesium transporter	2.4351786125
+UniRef50_Q5P6J7: Magnesium transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4351786125
+UniRef50_Q9I602	2.4349686996
+UniRef50_Q9I602|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4349686996
+UniRef50_M9VDI6	2.4341007346
+UniRef50_M9VDI6|unclassified	2.4341007346
+UniRef50_Q7U836: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	2.4335513524
+UniRef50_Q7U836: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|g__Streptococcus.s__Streptococcus_agalactiae	2.2909507446
+UniRef50_Q7U836: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.1426006078
+UniRef50_M1LZD3	2.4334752818
+UniRef50_M1LZD3|g__Clostridium.s__Clostridium_beijerinckii	2.4334752818
+UniRef50_A6VAG1	2.4330900243
+UniRef50_A6VAG1|unclassified	2.4330900243
+UniRef50_A5UJK5	2.4330900243
+UniRef50_A5UJK5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.4330900243
+UniRef50_A6LTW4	2.4330900243
+UniRef50_A6LTW4|g__Clostridium.s__Clostridium_beijerinckii	2.4330900243
+UniRef50_D7YQY2: 3-phenylpropionate/cinnamic acid dioxygenase subunit alpha	2.4330900243
+UniRef50_D7YQY2: 3-phenylpropionate/cinnamic acid dioxygenase subunit alpha|g__Escherichia.s__Escherichia_coli	2.4330900243
+UniRef50_K9NNF0: LysR family transcriptional regulator	2.4330900243
+UniRef50_K9NNF0: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4330900243
+UniRef50_L5JBS3	2.4330900243
+UniRef50_L5JBS3|unclassified	2.4330900243
+UniRef50_M9VFE8: Low molecular weight phosphotyrosine protein phosphatase	2.4330900243
+UniRef50_M9VFE8: Low molecular weight phosphotyrosine protein phosphatase|g__Propionibacterium.s__Propionibacterium_acnes	2.4330900243
+UniRef50_P31063	2.4330900243
+UniRef50_P31063|g__Escherichia.s__Escherichia_coli	2.4330900243
+UniRef50_Q46577: UvrABC system protein A	2.4328875949
+UniRef50_Q46577: UvrABC system protein A|g__Deinococcus.s__Deinococcus_radiodurans	2.4328875949
+UniRef50_I6ET60: Nucleo/polynucleotide-associated enzyme domain protein	2.4328336438
+UniRef50_I6ET60: Nucleo/polynucleotide-associated enzyme domain protein|unclassified	2.4328336438
+UniRef50_F0J5L6: L-sorbosone dehydrogenase	2.4327361761
+UniRef50_F0J5L6: L-sorbosone dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.4327361761
+UniRef50_P19843: Copper-binding periplasmic protein	2.4327122153
+UniRef50_P19843: Copper-binding periplasmic protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4327122153
+UniRef50_S5XTF2	2.4322172975
+UniRef50_S5XTF2|unclassified	2.4322172975
+UniRef50_J0LGW4	2.4320000877
+UniRef50_J0LGW4|unclassified	2.4320000877
+UniRef50_B8RD42: Cell wall surface anchor family protein,putative	2.4314744291
+UniRef50_B8RD42: Cell wall surface anchor family protein,putative|g__Streptococcus.s__Streptococcus_agalactiae	2.4314744291
+UniRef50_B2TPY0: Vancomycin B-type resistance protein VanW	2.4312441578
+UniRef50_B2TPY0: Vancomycin B-type resistance protein VanW|g__Clostridium.s__Clostridium_beijerinckii	2.4312441578
+UniRef50_Q9RT45: Exonuclease SbcD, putative	2.4301659481
+UniRef50_Q9RT45: Exonuclease SbcD, putative|g__Deinococcus.s__Deinococcus_radiodurans	2.4301659481
+UniRef50_UPI00016A626E: Rh-like protein/ammonium transporter, partial	2.4301516872
+UniRef50_UPI00016A626E: Rh-like protein/ammonium transporter, partial|unclassified	2.4301516872
+UniRef50_X2IBS7: Membrane protein	2.4301139824
+UniRef50_X2IBS7: Membrane protein|g__Helicobacter.s__Helicobacter_pylori	2.4301139824
+UniRef50_D4H9R3: YjeF domain protein	2.4300647455
+UniRef50_D4H9R3: YjeF domain protein|g__Propionibacterium.s__Propionibacterium_acnes	2.4300647455
+UniRef50_X1S582: Marine sediment metagenome DNA, contig: S12H4_S08236	2.4295013458
+UniRef50_X1S582: Marine sediment metagenome DNA, contig: S12H4_S08236|unclassified	2.4295013458
+UniRef50_B0D259: Predicted protein (Fragment)	2.4294101456
+UniRef50_B0D259: Predicted protein (Fragment)|unclassified	2.4294101456
+UniRef50_I4CT20: Outer membrane protein OprN	2.4289399256
+UniRef50_I4CT20: Outer membrane protein OprN|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4289399256
+UniRef50_A0A024EII1	2.4287600700
+UniRef50_A0A024EII1|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0833333333
+UniRef50_A0A024EII1|unclassified	0.3454267367
+UniRef50_V4UXH0	2.4287020379
+UniRef50_V4UXH0|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4287020379
+UniRef50_J0GTS0	2.4282574907
+UniRef50_J0GTS0|unclassified	2.4282574907
+UniRef50_Q97TN5: Divalent metal cation transporter MntH	2.4279385584
+UniRef50_Q97TN5: Divalent metal cation transporter MntH|g__Clostridium.s__Clostridium_beijerinckii	2.4279385584
+UniRef50_B1XYD2: ATPase associated with various cellular activities AAA_3	2.4271844660
+UniRef50_B1XYD2: ATPase associated with various cellular activities AAA_3|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4271844660
+UniRef50_R6MEG5: Acyl-CoA thioester hydrolase YbgC/YbaW family	2.4271844660
+UniRef50_R6MEG5: Acyl-CoA thioester hydrolase YbgC/YbaW family|g__Clostridium.s__Clostridium_beijerinckii	2.4271844660
+UniRef50_UPI00036F07BD: hypothetical protein, partial	2.4271844660
+UniRef50_UPI00036F07BD: hypothetical protein, partial|g__Streptococcus.s__Streptococcus_agalactiae	2.4271844660
+UniRef50_W6S1I7	2.4271844660
+UniRef50_W6S1I7|g__Clostridium.s__Clostridium_beijerinckii	2.4271844660
+UniRef50_Q3XYJ4	2.4267145343
+UniRef50_Q3XYJ4|unclassified	2.4267145343
+UniRef50_UPI0001851150: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	2.4266485311
+UniRef50_UPI0001851150: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	2.4266485311
+UniRef50_B6IVA8	2.4264601147
+UniRef50_B6IVA8|unclassified	2.4264601147
+UniRef50_Q3DBP8	2.4260923905
+UniRef50_Q3DBP8|unclassified	2.4260923905
+UniRef50_J9YPM1: FemAB family protein	2.4257562652
+UniRef50_J9YPM1: FemAB family protein|g__Streptococcus.s__Streptococcus_agalactiae	2.4257562652
+UniRef50_A4WZR2	2.4252209908
+UniRef50_A4WZR2|unclassified	2.4252209908
+UniRef50_D8JJA0: Flavodoxin reductase (Ferredoxin-NADPH reductase) family protein 1	2.4245662569
+UniRef50_D8JJA0: Flavodoxin reductase (Ferredoxin-NADPH reductase) family protein 1|g__Acinetobacter.s__Acinetobacter_baumannii	2.4245662569
+UniRef50_UPI00036FBBFE: hypothetical protein	2.4237190200
+UniRef50_UPI00036FBBFE: hypothetical protein|unclassified	2.4237190200
+UniRef50_UPI00037C2898: hypothetical protein	2.4231582825
+UniRef50_UPI00037C2898: hypothetical protein|unclassified	2.4231582825
+UniRef50_G2L6P6	2.4228460737
+UniRef50_G2L6P6|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4228460737
+UniRef50_D0IU34: Transcriptional regulator of hydrogenase activity	2.4227187833
+UniRef50_D0IU34: Transcriptional regulator of hydrogenase activity|g__Helicobacter.s__Helicobacter_pylori	2.4227187833
+UniRef50_C5QMF5	2.4225683806
+UniRef50_C5QMF5|unclassified	2.4225683806
+UniRef50_UPI00035E506E: hypothetical protein	2.4223840562
+UniRef50_UPI00035E506E: hypothetical protein|unclassified	2.4223840562
+UniRef50_UPI0001BF786C: hypothetical protein SMAC_11506, partial	2.4217266404
+UniRef50_UPI0001BF786C: hypothetical protein SMAC_11506, partial|unclassified	2.4217266404
+UniRef50_A0Q2Z5: ATP synthase gamma chain	2.4213075061
+UniRef50_A0Q2Z5: ATP synthase gamma chain|g__Clostridium.s__Clostridium_beijerinckii	2.4213075061
+UniRef50_Q51466: Flagellar motor switch protein FliN	2.4213075061
+UniRef50_Q51466: Flagellar motor switch protein FliN|g__Escherichia.s__Escherichia_coli	2.4213075061
+UniRef50_Q5FQ01	2.4213075061
+UniRef50_Q5FQ01|unclassified	2.4213075061
+UniRef50_Q9RY78	2.4213075061
+UniRef50_Q9RY78|g__Deinococcus.s__Deinococcus_radiodurans	2.4213075061
+UniRef50_UPI00036BE9BD: hypothetical protein	2.4213075061
+UniRef50_UPI00036BE9BD: hypothetical protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.4213075061
+UniRef50_K9ZW90: ABC-type dipeptide transport system, periplasmic component	2.4207886681
+UniRef50_K9ZW90: ABC-type dipeptide transport system, periplasmic component|g__Deinococcus.s__Deinococcus_radiodurans	2.4207886681
+UniRef50_UPI0003696E91: hypothetical protein	2.4206271110
+UniRef50_UPI0003696E91: hypothetical protein|unclassified	2.4206271110
+UniRef50_A6M2G0: Methyl-accepting chemotaxis sensory transducer	2.4201791343
+UniRef50_A6M2G0: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	2.4201791343
+UniRef50_J0HA95	2.4201624569
+UniRef50_J0HA95|g__Staphylococcus.s__Staphylococcus_epidermidis	2.4201624569
+UniRef50_A6UYT5	2.4199400721
+UniRef50_A6UYT5|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4199400721
+UniRef50_K6X7D8	2.4193340278
+UniRef50_K6X7D8|unclassified	2.4193340278
+UniRef50_Q9EXU9: Coenzyme PQQ synthesis protein D	2.4193022766
+UniRef50_Q9EXU9: Coenzyme PQQ synthesis protein D|unclassified	2.4193022766
+UniRef50_B3N1I3: GF19274	2.4192467201
+UniRef50_B3N1I3: GF19274|unclassified	2.4192467201
+UniRef50_K2HT96	2.4191892370
+UniRef50_K2HT96|unclassified	2.4191892370
+UniRef50_UPI00025579A4: glyoxalase/bleomycin resistance protein/dioxygenase, partial	2.4191104493
+UniRef50_UPI00025579A4: glyoxalase/bleomycin resistance protein/dioxygenase, partial|unclassified	2.4191104493
+UniRef50_A8AQX6	2.4188132579
+UniRef50_A8AQX6|unclassified	2.4188132579
+UniRef50_R4XZT5: FIG002261: Cytochrome c family protein	2.4187365665
+UniRef50_R4XZT5: FIG002261: Cytochrome c family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1097046414
+UniRef50_R4XZT5: FIG002261: Cytochrome c family protein|unclassified	0.3090319252
+UniRef50_B3DNU3: UPF0145 protein BLD_1357	2.4186356026
+UniRef50_B3DNU3: UPF0145 protein BLD_1357|unclassified	2.4186356026
+UniRef50_W7J474: Basic proline-rich protein	2.4185631960
+UniRef50_W7J474: Basic proline-rich protein|unclassified	2.4185631960
+UniRef50_G8QQ16: Aminoacyl-histidine dipeptidase	2.4183924347
+UniRef50_G8QQ16: Aminoacyl-histidine dipeptidase|g__Acinetobacter.s__Acinetobacter_baumannii	2.4183924347
+UniRef50_UPI00036856CA: hypothetical protein	2.4183231808
+UniRef50_UPI00036856CA: hypothetical protein|unclassified	2.4183231808
+UniRef50_UPI000200085E: iron-sulfur protein, partial	2.4183025672
+UniRef50_UPI000200085E: iron-sulfur protein, partial|unclassified	2.4183025672
+UniRef50_F6BHL2: PTS system transcriptional activator	2.4178893593
+UniRef50_F6BHL2: PTS system transcriptional activator|g__Clostridium.s__Clostridium_beijerinckii	2.4178893593
+UniRef50_UPI0003611421: NiFe hydrogenase	2.4170856797
+UniRef50_UPI0003611421: NiFe hydrogenase|unclassified	2.4170856797
+UniRef50_UPI00023785BE: ABC transporter-like protein	2.4167371510
+UniRef50_UPI00023785BE: ABC transporter-like protein|unclassified	2.4167371510
+UniRef50_U5MLW0: Methyl-accepting chemotaxis protein McpC	2.4165417156
+UniRef50_U5MLW0: Methyl-accepting chemotaxis protein McpC|g__Clostridium.s__Clostridium_beijerinckii	2.4165417156
+UniRef50_UPI00045734F2: PREDICTED: gamma-gliadin-like, partial	2.4163978623
+UniRef50_UPI00045734F2: PREDICTED: gamma-gliadin-like, partial|unclassified	2.4163978623
+UniRef50_P59872: Acetyl-coenzyme A synthetase	2.4160990617
+UniRef50_P59872: Acetyl-coenzyme A synthetase|g__Deinococcus.s__Deinococcus_radiodurans	2.3036634034
+UniRef50_P59872: Acetyl-coenzyme A synthetase|unclassified	0.1124356583
+UniRef50_A6LZC7	2.4154589372
+UniRef50_A6LZC7|g__Clostridium.s__Clostridium_beijerinckii	2.4154589372
+UniRef50_B5I6I0: 3-oxoacyl-[acyl-carrier-protein] reductase	2.4154589372
+UniRef50_B5I6I0: 3-oxoacyl-[acyl-carrier-protein] reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4154589372
+UniRef50_C6HSR4	2.4154589372
+UniRef50_C6HSR4|unclassified	2.4154589372
+UniRef50_P60480: Isoprenyl transferase 1	2.4154589372
+UniRef50_P60480: Isoprenyl transferase 1|g__Propionibacterium.s__Propionibacterium_acnes	2.4154589372
+UniRef50_T2BJL4: ISSoc3 transposase	2.4154589372
+UniRef50_T2BJL4: ISSoc3 transposase|g__Helicobacter.s__Helicobacter_pylori	2.4154589372
+UniRef50_V0AGL2: Sugar efflux transporter C domain protein	2.4154589372
+UniRef50_V0AGL2: Sugar efflux transporter C domain protein|g__Escherichia.s__Escherichia_coli	2.4154589372
+UniRef50_R4ZTZ8: Erythrocyte binding protein 2	2.4148558087
+UniRef50_R4ZTZ8: Erythrocyte binding protein 2|g__Streptococcus.s__Streptococcus_agalactiae	2.4148558087
+UniRef50_UPI000288DE5F: cation:proton antiporter	2.4145798080
+UniRef50_UPI000288DE5F: cation:proton antiporter|unclassified	2.4145798080
+UniRef50_A5ELV4	2.4142006910
+UniRef50_A5ELV4|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0964360587
+UniRef50_A5ELV4|unclassified	0.3177646323
+UniRef50_H7G9Y3	2.4135887507
+UniRef50_H7G9Y3|unclassified	2.4135887507
+UniRef50_UPI000288F47D: AraC family transcriptional regulator	2.4135549082
+UniRef50_UPI000288F47D: AraC family transcriptional regulator|unclassified	2.4135549082
+UniRef50_D6GTM4: Rubredoxin	2.4135046558
+UniRef50_D6GTM4: Rubredoxin|g__Clostridium.s__Clostridium_beijerinckii	2.4135046558
+UniRef50_Q2CAF3: Transposase orfA IS5 family element	2.4133387760
+UniRef50_Q2CAF3: Transposase orfA IS5 family element|unclassified	2.4133387760
+UniRef50_P50097: Inosine-5'-monophosphate dehydrogenase	2.4132132374
+UniRef50_P50097: Inosine-5'-monophosphate dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	2.4132132374
+UniRef50_UPI0003B65B0E: hypothetical protein	2.4130890059
+UniRef50_UPI0003B65B0E: hypothetical protein|unclassified	2.4130890059
+UniRef50_W9EL39	2.4122407517
+UniRef50_W9EL39|unclassified	2.4122407517
+UniRef50_A6LX93: NERD domain protein	2.4116579424
+UniRef50_A6LX93: NERD domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.4116579424
+UniRef50_E5A7Q6	2.4107531454
+UniRef50_E5A7Q6|unclassified	2.4107531454
+UniRef50_D1CT73: Replication protein RepA (Fragment)	2.4104033026
+UniRef50_D1CT73: Replication protein RepA (Fragment)|unclassified	2.4104033026
+UniRef50_Q53046: Pyruvate-flavodoxin oxidoreductase	2.4102309752
+UniRef50_Q53046: Pyruvate-flavodoxin oxidoreductase|g__Escherichia.s__Escherichia_coli	2.4102309752
+UniRef50_UPI000472A722: hypothetical protein	2.4099838338
+UniRef50_UPI000472A722: hypothetical protein|unclassified	2.4099838338
+UniRef50_R5TME3: Xylulokinase	2.4099307178
+UniRef50_R5TME3: Xylulokinase|g__Clostridium.s__Clostridium_beijerinckii	2.4099307178
+UniRef50_G9A7G5: High-affinity zinc uptake system membrane protein znuB	2.4096385542
+UniRef50_G9A7G5: High-affinity zinc uptake system membrane protein znuB|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.4096385542
+UniRef50_H2PGB5	2.4096385542
+UniRef50_H2PGB5|unclassified	2.4096385542
+UniRef50_I7L4T0: Phosphate import ATP-binding protein pstB	2.4096385542
+UniRef50_I7L4T0: Phosphate import ATP-binding protein pstB|g__Streptococcus.s__Streptococcus_agalactiae	2.4096385542
+UniRef50_R0VZS5	2.4096385542
+UniRef50_R0VZS5|g__Neisseria.s__Neisseria_meningitidis	2.4096385542
+UniRef50_UPI000362CB13: hypothetical protein	2.4090196676
+UniRef50_UPI000362CB13: hypothetical protein|unclassified	2.4090196676
+UniRef50_I6DGN7: Putative membrane protein	2.4084494110
+UniRef50_I6DGN7: Putative membrane protein|unclassified	2.4084494110
+UniRef50_Q04KA9: Uridine kinase	2.4083430226
+UniRef50_Q04KA9: Uridine kinase|g__Deinococcus.s__Deinococcus_radiodurans	2.2675736961
+UniRef50_Q04KA9: Uridine kinase|unclassified	0.1407693265
+UniRef50_M9VGZ5	2.4081956945
+UniRef50_M9VGZ5|g__Propionibacterium.s__Propionibacterium_acnes	2.4081956945
+UniRef50_V6PWB3: Putative hydroxylase	2.4079603651
+UniRef50_V6PWB3: Putative hydroxylase|unclassified	2.4079603651
+UniRef50_A6LWE6: MATE efflux family protein	2.4074923098
+UniRef50_A6LWE6: MATE efflux family protein|g__Clostridium.s__Clostridium_beijerinckii	2.4074923098
+UniRef50_S6WIX2: Fosmidomycin resistance protein (Fragment)	2.4074723592
+UniRef50_S6WIX2: Fosmidomycin resistance protein (Fragment)|unclassified	2.4074723592
+UniRef50_Q1REU7	2.4072238243
+UniRef50_Q1REU7|g__Escherichia.s__Escherichia_coli	2.4072238243
+UniRef50_X4UYI0: Spermidine dehydrogenase	2.4071249515
+UniRef50_X4UYI0: Spermidine dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4071249515
+UniRef50_UPI000255D367: 30S ribosomal protein S3	2.4068742195
+UniRef50_UPI000255D367: 30S ribosomal protein S3|unclassified	2.4068742195
+UniRef50_E3L8S8	2.4067388688
+UniRef50_E3L8S8|unclassified	2.4067388688
+UniRef50_K2IIU5	2.4064590345
+UniRef50_K2IIU5|unclassified	2.4064590345
+UniRef50_T8PH03: ATP-independent RNA helicase dbpA	2.4063305439
+UniRef50_T8PH03: ATP-independent RNA helicase dbpA|g__Escherichia.s__Escherichia_coli	2.4063305439
+UniRef50_I0EV03: Cytosine-specific methyltransferase	2.4062177355
+UniRef50_I0EV03: Cytosine-specific methyltransferase|g__Helicobacter.s__Helicobacter_pylori	2.4062177355
+UniRef50_UPI00037BC758: dihydropyrimidine dehydrogenase subunit B, partial	2.4061422424
+UniRef50_UPI00037BC758: dihydropyrimidine dehydrogenase subunit B, partial|unclassified	2.4061422424
+UniRef50_E6JZ36: Citrate transporter	2.4060379055
+UniRef50_E6JZ36: Citrate transporter|g__Clostridium.s__Clostridium_beijerinckii	2.4060379055
+UniRef50_UPI0004779FA5: iron transporter FeoA	2.4055617528
+UniRef50_UPI0004779FA5: iron transporter FeoA|unclassified	2.4055617528
+UniRef50_E3D438	2.4054386346
+UniRef50_E3D438|g__Neisseria.s__Neisseria_meningitidis	2.4054386346
+UniRef50_A3KBE5	2.4049326025
+UniRef50_A3KBE5|unclassified	2.4049326025
+UniRef50_W0YV34	2.4044483255
+UniRef50_W0YV34|unclassified	2.4044483255
+UniRef50_T5YMK1: Putrescine aminotransferase	2.4043125547
+UniRef50_T5YMK1: Putrescine aminotransferase|g__Escherichia.s__Escherichia_coli	2.4043125547
+UniRef50_A5UNE9	2.4038461538
+UniRef50_A5UNE9|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.4038461538
+UniRef50_B0KFB1: Rhomboid family protein	2.4038461538
+UniRef50_B0KFB1: Rhomboid family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4038461538
+UniRef50_D4HE60: Release factor glutamine methyltransferase	2.4038461538
+UniRef50_D4HE60: Release factor glutamine methyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	2.4038461538
+UniRef50_S6AZR4	2.4038461538
+UniRef50_S6AZR4|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4038461538
+UniRef50_UPI00016B0FEC: hypothetical protein	2.4038461538
+UniRef50_UPI00016B0FEC: hypothetical protein|unclassified	2.4038461538
+UniRef50_F2CWF4: Predicted protein	2.4037091969
+UniRef50_F2CWF4: Predicted protein|unclassified	2.4037091969
+UniRef50_Q5WD38	2.4032829787
+UniRef50_Q5WD38|unclassified	2.4032829787
+UniRef50_D6J5V7: Predicted protein	2.4031700616
+UniRef50_D6J5V7: Predicted protein|unclassified	2.4031700616
+UniRef50_F9WGY0: WGS project CAEQ00000000 data, annotated contig 569	2.4028826398
+UniRef50_F9WGY0: WGS project CAEQ00000000 data, annotated contig 569|unclassified	2.4028826398
+UniRef50_UPI0003958C53: PREDICTED: basic proline-rich protein-like	2.4024102018
+UniRef50_UPI0003958C53: PREDICTED: basic proline-rich protein-like|unclassified	2.4024102018
+UniRef50_UPI0003B49C22: MarR family transcriptional regulator	2.4021966447
+UniRef50_UPI0003B49C22: MarR family transcriptional regulator|unclassified	2.4021966447
+UniRef50_A4J5C2: Methylenetetrahydrofolate reductase	2.4019654266
+UniRef50_A4J5C2: Methylenetetrahydrofolate reductase|g__Clostridium.s__Clostridium_beijerinckii	2.4019654266
+UniRef50_UPI000344EADE: thioredoxin	2.4016919342
+UniRef50_UPI000344EADE: thioredoxin|unclassified	2.4016919342
+UniRef50_E3F357: Membrane protein-like protein	2.4008226150
+UniRef50_E3F357: Membrane protein-like protein|unclassified	2.4008226150
+UniRef50_A4VGY1: Uroporphyrin-III C-methyltransferase, putative	2.4001707504
+UniRef50_A4VGY1: Uroporphyrin-III C-methyltransferase, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.4001707504
+UniRef50_A5WGE7: 1-deoxy-D-xylulose 5-phosphate reductoisomerase	2.3999009519
+UniRef50_A5WGE7: 1-deoxy-D-xylulose 5-phosphate reductoisomerase|g__Acinetobacter.s__Acinetobacter_baumannii	2.3999009519
+UniRef50_Q8DXG6: Prophage LambdaSa2, site-specific recombinase, phage integrase family	2.3998864749
+UniRef50_Q8DXG6: Prophage LambdaSa2, site-specific recombinase, phage integrase family|g__Streptococcus.s__Streptococcus_agalactiae	2.3998864749
+UniRef50_X5E242	2.3996009222
+UniRef50_X5E242|unclassified	2.3996009222
+UniRef50_J0HAC0	2.3993939376
+UniRef50_J0HAC0|unclassified	2.3993939376
+UniRef50_UPI0003B45CE9: hypothetical protein, partial	2.3993691598
+UniRef50_UPI0003B45CE9: hypothetical protein, partial|unclassified	2.3993691598
+UniRef50_C1CX80: Bifunctional protein PyrR	2.3987581502
+UniRef50_C1CX80: Bifunctional protein PyrR|g__Deinococcus.s__Deinococcus_radiodurans	1.8115942029
+UniRef50_C1CX80: Bifunctional protein PyrR|unclassified	0.5871639473
+UniRef50_B7UWL8: Dihydroorotate dehydrogenase (quinone)	2.3986379086
+UniRef50_B7UWL8: Dihydroorotate dehydrogenase (quinone)|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2099875931
+UniRef50_B7UWL8: Dihydroorotate dehydrogenase (quinone)|unclassified	0.1886503155
+UniRef50_F4DLN9	2.3980815348
+UniRef50_F4DLN9|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3980815348
+UniRef50_H4AYY9	2.3980815348
+UniRef50_H4AYY9|g__Staphylococcus.s__Staphylococcus_aureus	2.3980815348
+UniRef50_Q9RT77	2.3980815348
+UniRef50_Q9RT77|g__Deinococcus.s__Deinococcus_radiodurans	2.3980815348
+UniRef50_S1FIF8	2.3980815348
+UniRef50_S1FIF8|g__Escherichia.s__Escherichia_coli	2.3980815348
+UniRef50_T2E052	2.3980815348
+UniRef50_T2E052|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3980815348
+UniRef50_U5MUQ9: Phage XkdN-like protein	2.3980815348
+UniRef50_U5MUQ9: Phage XkdN-like protein|g__Clostridium.s__Clostridium_beijerinckii	2.3980815348
+UniRef50_G8MFZ3: Type VI secretion protein	2.3976719480
+UniRef50_G8MFZ3: Type VI secretion protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3976719480
+UniRef50_Q9JV28: UDP-N-acetylenolpyruvoylglucosamine reductase	2.3971873002
+UniRef50_Q9JV28: UDP-N-acetylenolpyruvoylglucosamine reductase|g__Neisseria.s__Neisseria_meningitidis	2.3971873002
+UniRef50_A3A7G5	2.3970982543
+UniRef50_A3A7G5|unclassified	2.3970982543
+UniRef50_N6V1G3	2.3970005209
+UniRef50_N6V1G3|unclassified	2.3970005209
+UniRef50_D5AUJ5	2.3964761446
+UniRef50_D5AUJ5|unclassified	2.3964761446
+UniRef50_N5PST4: Serine protease splD	2.3959443164
+UniRef50_N5PST4: Serine protease splD|g__Staphylococcus.s__Staphylococcus_aureus	2.3959443164
+UniRef50_A6M075: Aminotransferase class-III	2.3957765073
+UniRef50_A6M075: Aminotransferase class-III|g__Clostridium.s__Clostridium_beijerinckii	2.3957765073
+UniRef50_P39879	2.3957011405
+UniRef50_P39879|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3957011405
+UniRef50_H3XA74	2.3953955784
+UniRef50_H3XA74|unclassified	2.3953955784
+UniRef50_A3TY58	2.3949481596
+UniRef50_A3TY58|unclassified	2.3949481596
+UniRef50_A6LS08: Sigma-54 factor, interaction domain-containing protein	2.3947774018
+UniRef50_A6LS08: Sigma-54 factor, interaction domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	2.3947774018
+UniRef50_B7LAL3	2.3945522590
+UniRef50_B7LAL3|unclassified	2.3945522590
+UniRef50_UPI00046CEC40: hypothetical protein	2.3945432850
+UniRef50_UPI00046CEC40: hypothetical protein|unclassified	2.3945432850
+UniRef50_UPI0003650D17: hypothetical protein	2.3940482017
+UniRef50_UPI0003650D17: hypothetical protein|unclassified	2.3940482017
+UniRef50_R4K9U0: DNA-binding domain-containing protein, AraC-type	2.3937976145
+UniRef50_R4K9U0: DNA-binding domain-containing protein, AraC-type|g__Clostridium.s__Clostridium_beijerinckii	2.3937976145
+UniRef50_UPI00037705F9: hypothetical protein	2.3927777371
+UniRef50_UPI00037705F9: hypothetical protein|unclassified	2.3927777371
+UniRef50_A0A036YNF3	2.3923444976
+UniRef50_A0A036YNF3|unclassified	2.3923444976
+UniRef50_A0A023RSC6: D-Ala-D-Ala carboxypeptidase	2.3923444976
+UniRef50_A0A023RSC6: D-Ala-D-Ala carboxypeptidase|g__Acinetobacter.s__Acinetobacter_baumannii	2.3923444976
+UniRef50_A5UP86	2.3923444976
+UniRef50_A5UP86|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.3923444976
+UniRef50_F0KK38	2.3923444976
+UniRef50_F0KK38|g__Acinetobacter.s__Acinetobacter_baumannii	2.3923444976
+UniRef50_Q6A7C7: Conserved phage-related protein	2.3923444976
+UniRef50_Q6A7C7: Conserved phage-related protein|g__Propionibacterium.s__Propionibacterium_acnes	2.3923444976
+UniRef50_Q9I6F3	2.3923444976
+UniRef50_Q9I6F3|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3923444976
+UniRef50_Q9JTW6: Co-chaperone protein HscB homolog	2.3923444976
+UniRef50_Q9JTW6: Co-chaperone protein HscB homolog|g__Neisseria.s__Neisseria_meningitidis	2.3923444976
+UniRef50_I4VIY8	2.3920392499
+UniRef50_I4VIY8|unclassified	2.3920392499
+UniRef50_UPI0003FBF4EF: hydrolase	2.3915767831
+UniRef50_UPI0003FBF4EF: hydrolase|unclassified	2.3915767831
+UniRef50_UPI0001BF5FA9: hypothetical protein SMAC_11727, partial	2.3913559548
+UniRef50_UPI0001BF5FA9: hypothetical protein SMAC_11727, partial|unclassified	2.3913559548
+UniRef50_K2HRS4	2.3913196948
+UniRef50_K2HRS4|unclassified	2.3913196948
+UniRef50_J7LFW2	2.3900606973
+UniRef50_J7LFW2|unclassified	2.3900606973
+UniRef50_A0A025A6U1	2.3899000143
+UniRef50_A0A025A6U1|g__Escherichia.s__Escherichia_coli	2.1276595745
+UniRef50_A0A025A6U1|unclassified	0.2622404398
+UniRef50_Q1QYW0	2.3898089460
+UniRef50_Q1QYW0|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3898089460
+UniRef50_UPI00038F98DC: Putative arabinogalactan oligomer transport system permease protein GanQ	2.3897531552
+UniRef50_UPI00038F98DC: Putative arabinogalactan oligomer transport system permease protein GanQ|unclassified	2.3897531552
+UniRef50_UPI0003656647: hypothetical protein	2.3893350894
+UniRef50_UPI0003656647: hypothetical protein|unclassified	2.3893350894
+UniRef50_UPI0004776671: heat shock protein Hsp33	2.3892959988
+UniRef50_UPI0004776671: heat shock protein Hsp33|unclassified	2.3892959988
+UniRef50_UPI00034B27B9: FAD-binding molybdopterin dehydrogenase	2.3891006400
+UniRef50_UPI00034B27B9: FAD-binding molybdopterin dehydrogenase|unclassified	2.3891006400
+UniRef50_Q3IYC6: Phosphoglycolate phosphatase	2.3881228738
+UniRef50_Q3IYC6: Phosphoglycolate phosphatase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.1691973970
+UniRef50_Q3IYC6: Phosphoglycolate phosphatase|unclassified	0.2189254769
+UniRef50_L8E0K9: Imidazole glycerol phosphate synthase subunit HisH	2.3873841201
+UniRef50_L8E0K9: Imidazole glycerol phosphate synthase subunit HisH|unclassified	2.3873841201
+UniRef50_F0Y015	2.3873088572
+UniRef50_F0Y015|unclassified	2.3873088572
+UniRef50_G7LZX4	2.3870490497
+UniRef50_G7LZX4|g__Clostridium.s__Clostridium_beijerinckii	2.3870490497
+UniRef50_A0A034WPU8	2.3866348449
+UniRef50_A0A034WPU8|unclassified	2.3866348449
+UniRef50_A8LJD0	2.3866348449
+UniRef50_A8LJD0|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.3866348449
+UniRef50_F4DTC3: MerR family transcriptional regulator	2.3866348449
+UniRef50_F4DTC3: MerR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3866348449
+UniRef50_G8V752	2.3866348449
+UniRef50_G8V752|g__Propionibacterium.s__Propionibacterium_acnes	2.3866348449
+UniRef50_Q6F9L9	2.3866348449
+UniRef50_Q6F9L9|g__Acinetobacter.s__Acinetobacter_baumannii	2.3866348449
+UniRef50_A4WTC2	2.3859485839
+UniRef50_A4WTC2|unclassified	2.3859485839
+UniRef50_I4XTJ0	2.3859063867
+UniRef50_I4XTJ0|unclassified	2.3859063867
+UniRef50_B0CGA0	2.3850806688
+UniRef50_B0CGA0|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3094688222
+UniRef50_B0CGA0|unclassified	0.0756118467
+UniRef50_C0ERG4	2.3849368174
+UniRef50_C0ERG4|unclassified	2.3849368174
+UniRef50_Q1BIG3: Amidase, hydantoinase/carbamoylase	2.3848879401
+UniRef50_Q1BIG3: Amidase, hydantoinase/carbamoylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3848879401
+UniRef50_S6L427: AraC family transcriptional regulator	2.3845051370
+UniRef50_S6L427: AraC family transcriptional regulator|unclassified	2.3845051370
+UniRef50_Q1IYH9: Sulfate adenylyltransferase	2.3844854566
+UniRef50_Q1IYH9: Sulfate adenylyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	1.7855408605
+UniRef50_Q1IYH9: Sulfate adenylyltransferase|unclassified	0.5989445961
+UniRef50_UPI0003B717F4: hypothetical protein	2.3843105397
+UniRef50_UPI0003B717F4: hypothetical protein|unclassified	2.3843105397
+UniRef50_S6T1V4: Dihydrolipoamide acetyltransferase	2.3839920198
+UniRef50_S6T1V4: Dihydrolipoamide acetyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3839920198
+UniRef50_A4WQR7	2.3837317746
+UniRef50_A4WQR7|unclassified	2.3837317746
+UniRef50_J6CL35: NapC	2.3835873569
+UniRef50_J6CL35: NapC|unclassified	2.3835873569
+UniRef50_W7IX75	2.3835693151
+UniRef50_W7IX75|unclassified	2.3835693151
+UniRef50_I0EKM3: DNA transfer protein ComE	2.3834525977
+UniRef50_I0EKM3: DNA transfer protein ComE|g__Helicobacter.s__Helicobacter_pylori	2.3834525977
+UniRef50_R7YD27	2.3832474407
+UniRef50_R7YD27|unclassified	2.3832474407
+UniRef50_B7V1V1: Acyl-CoA delta-9-desaturase, DesB	2.3828510671
+UniRef50_B7V1V1: Acyl-CoA delta-9-desaturase, DesB|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3828510671
+UniRef50_UPI000471E89E: pseudoazurin	2.3825808896
+UniRef50_UPI000471E89E: pseudoazurin|unclassified	2.3825808896
+UniRef50_Q9ZDH5: NADH-quinone oxidoreductase subunit E	2.3825789836
+UniRef50_Q9ZDH5: NADH-quinone oxidoreductase subunit E|unclassified	2.3825789836
+UniRef50_U6AJY0	2.3825646728
+UniRef50_U6AJY0|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9493177388
+UniRef50_U6AJY0|unclassified	0.4332469340
+UniRef50_U7A535	2.3819259746
+UniRef50_U7A535|unclassified	2.3819259746
+UniRef50_U7FQ69: UPF0125 protein Q666_15650	2.3816028782
+UniRef50_U7FQ69: UPF0125 protein Q666_15650|unclassified	2.3816028782
+UniRef50_Q8W390: Putative chitinase	2.3814630016
+UniRef50_Q8W390: Putative chitinase|unclassified	2.3814630016
+UniRef50_UPI00035E7836: 50S ribosomal protein L13, partial	2.3813192980
+UniRef50_UPI00035E7836: 50S ribosomal protein L13, partial|unclassified	2.3813192980
+UniRef50_A6M2X4: Transcriptional regulator, RpiR family	2.3809523810
+UniRef50_A6M2X4: Transcriptional regulator, RpiR family|g__Clostridium.s__Clostridium_beijerinckii	2.3809523810
+UniRef50_B2TRH1: LysE type translocator superfamily	2.3809523810
+UniRef50_B2TRH1: LysE type translocator superfamily|g__Clostridium.s__Clostridium_beijerinckii	2.3809523810
+UniRef50_E8NPX2: Putative cold-shock protein	2.3809523810
+UniRef50_E8NPX2: Putative cold-shock protein|g__Escherichia.s__Escherichia_coli	2.3809523810
+UniRef50_H9UYD8	2.3809523810
+UniRef50_H9UYD8|g__Escherichia.s__Escherichia_coli	2.3809523810
+UniRef50_M4WVE9: Acetyltransferase	2.3809523810
+UniRef50_M4WVE9: Acetyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3809523810
+UniRef50_Q6A5B4	2.3809523810
+UniRef50_Q6A5B4|g__Propionibacterium.s__Propionibacterium_acnes	2.3809523810
+UniRef50_S5Y0M6: Transcriptional regulator, TetR family	2.3809523810
+UniRef50_S5Y0M6: Transcriptional regulator, TetR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.3809523810
+UniRef50_UPI00034F8544: PREDICTED: protein enabled homolog	2.3809523810
+UniRef50_UPI00034F8544: PREDICTED: protein enabled homolog|unclassified	2.3809523810
+UniRef50_J0MDM2	2.3809416837
+UniRef50_J0MDM2|unclassified	2.3809416837
+UniRef50_M5EIH7	2.3806390086
+UniRef50_M5EIH7|unclassified	2.3806390086
+UniRef50_M5RF68: Glutamate binding periplasmic protein	2.3803739581
+UniRef50_M5RF68: Glutamate binding periplasmic protein|unclassified	2.3803739581
+UniRef50_F9YYL3: Ferrous iron transport protein B	2.3802171664
+UniRef50_F9YYL3: Ferrous iron transport protein B|g__Propionibacterium.s__Propionibacterium_acnes	2.3802171664
+UniRef50_B7UZV2	2.3800636728
+UniRef50_B7UZV2|unclassified	2.3800636728
+UniRef50_F0XZC7	2.3799575772
+UniRef50_F0XZC7|unclassified	2.3799575772
+UniRef50_B2IQF0	2.3799444754
+UniRef50_B2IQF0|g__Staphylococcus.s__Staphylococcus_aureus	2.3799444754
+UniRef50_H5WT01: Activator of osmoprotectant transporter ProP	2.3797187024
+UniRef50_H5WT01: Activator of osmoprotectant transporter ProP|unclassified	2.3797187024
+UniRef50_UPI00036250D8: hypothetical protein	2.3791239036
+UniRef50_UPI00036250D8: hypothetical protein|unclassified	2.3791239036
+UniRef50_U7XP25	2.3790212740
+UniRef50_U7XP25|unclassified	2.3790212740
+UniRef50_Q9I3P1	2.3790037598
+UniRef50_Q9I3P1|unclassified	2.3790037598
+UniRef50_W7WWN9	2.3789617111
+UniRef50_W7WWN9|unclassified	2.3789617111
+UniRef50_J3FT71: Cbb3-type cytochrome oxidase, cytochrome c subunit (Fragment)	2.3788110353
+UniRef50_J3FT71: Cbb3-type cytochrome oxidase, cytochrome c subunit (Fragment)|unclassified	2.3788110353
+UniRef50_M1N514	2.3785343464
+UniRef50_M1N514|g__Clostridium.s__Clostridium_beijerinckii	2.3785343464
+UniRef50_F8DFL1: DHHA1 domain protein	2.3783022410
+UniRef50_F8DFL1: DHHA1 domain protein|g__Streptococcus.s__Streptococcus_agalactiae	2.3783022410
+UniRef50_W8YTI3	2.3780666221
+UniRef50_W8YTI3|unclassified	2.3780666221
+UniRef50_UPI000374A30D: hypothetical protein	2.3780047324
+UniRef50_UPI000374A30D: hypothetical protein|unclassified	2.3780047324
+UniRef50_UPI000317B1B3: hypothetical protein	2.3779753714
+UniRef50_UPI000317B1B3: hypothetical protein|unclassified	2.3779753714
+UniRef50_K1UC05: Protein containing DUF939, bacterial (Fragment)	2.3779293780
+UniRef50_K1UC05: Protein containing DUF939, bacterial (Fragment)|unclassified	2.3779293780
+UniRef50_U2BCG3	2.3777901011
+UniRef50_U2BCG3|unclassified	2.3777901011
+UniRef50_UPI0003B5B5D6: 5,10-methylenetetrahydrofolate reductase, partial	2.3777299531
+UniRef50_UPI0003B5B5D6: 5,10-methylenetetrahydrofolate reductase, partial|unclassified	2.3777299531
+UniRef50_S4XFR3	2.3776582496
+UniRef50_S4XFR3|g__Propionibacterium.s__Propionibacterium_acnes	2.3776582496
+UniRef50_M9VF07	2.3771582441
+UniRef50_M9VF07|g__Propionibacterium.s__Propionibacterium_acnes	2.3771582441
+UniRef50_E2QGJ0: Inner membrane transport permease yhhJ	2.3771251446
+UniRef50_E2QGJ0: Inner membrane transport permease yhhJ|g__Escherichia.s__Escherichia_coli	2.3771251446
+UniRef50_V6FBT0	2.3769108811
+UniRef50_V6FBT0|unclassified	2.3769108811
+UniRef50_UPI000379741D: hypothetical protein	2.3767222143
+UniRef50_UPI000379741D: hypothetical protein|unclassified	2.3767222143
+UniRef50_S6ADJ2	2.3767090981
+UniRef50_S6ADJ2|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3767090981
+UniRef50_A0A010PG87: Ribonuclease E	2.3766504566
+UniRef50_A0A010PG87: Ribonuclease E|g__Acinetobacter.s__Acinetobacter_baumannii	2.3766504566
+UniRef50_F5M175	2.3764242271
+UniRef50_F5M175|unclassified	2.3764242271
+UniRef50_H8GKW4	2.3759644917
+UniRef50_H8GKW4|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1551724138
+UniRef50_H8GKW4|unclassified	0.2207920779
+UniRef50_H5Y5I7: ABC-type multidrug transport system, ATPase and permease component	2.3758987738
+UniRef50_H5Y5I7: ABC-type multidrug transport system, ATPase and permease component|g__Clostridium.s__Clostridium_beijerinckii	2.3758987738
+UniRef50_D4HD89: ABC transporter, ATP-binding protein	2.3756163156
+UniRef50_D4HD89: ABC transporter, ATP-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	2.3756163156
+UniRef50_A6LS21: Sugar isomerase (SIS)	2.3755690461
+UniRef50_A6LS21: Sugar isomerase (SIS)|g__Clostridium.s__Clostridium_beijerinckii	2.3755690461
+UniRef50_UPI00029B3A28: hypothetical protein	2.3754953116
+UniRef50_UPI00029B3A28: hypothetical protein|unclassified	2.3754953116
+UniRef50_K3X5U2	2.3753040208
+UniRef50_K3X5U2|unclassified	2.3753040208
+UniRef50_A1B605	2.3752969121
+UniRef50_A1B605|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.3752969121
+UniRef50_A6LVT4: Cell wall hydrolase/autolysin	2.3752969121
+UniRef50_A6LVT4: Cell wall hydrolase/autolysin|g__Clostridium.s__Clostridium_beijerinckii	2.3752969121
+UniRef50_B6TJX5: Grx_I1-glutaredoxin subgroup III	2.3752969121
+UniRef50_B6TJX5: Grx_I1-glutaredoxin subgroup III|unclassified	2.3752969121
+UniRef50_C3KUZ6	2.3752969121
+UniRef50_C3KUZ6|g__Streptococcus.s__Streptococcus_agalactiae	2.3752969121
+UniRef50_C6D8U7	2.3752969121
+UniRef50_C6D8U7|g__Clostridium.s__Clostridium_beijerinckii	2.3752969121
+UniRef50_Q9RV78: 3-hydroxybutyryl-CoA dehydratase	2.3752969121
+UniRef50_Q9RV78: 3-hydroxybutyryl-CoA dehydratase|g__Deinococcus.s__Deinococcus_radiodurans	2.3752969121
+UniRef50_UPI0003AE34B9: PREDICTED: atherin-like	2.3752969121
+UniRef50_UPI0003AE34B9: PREDICTED: atherin-like|unclassified	2.3752969121
+UniRef50_UPI0003F1B132: PREDICTED: trafficking protein particle complex subunit 6A isoform X3	2.3752969121
+UniRef50_UPI0003F1B132: PREDICTED: trafficking protein particle complex subunit 6A isoform X3|unclassified	2.3752969121
+UniRef50_UPI00046FDD28: hypothetical protein	2.3752969121
+UniRef50_UPI00046FDD28: hypothetical protein|unclassified	2.3752969121
+UniRef50_UPI00035D9A23: hypothetical protein	2.3746301655
+UniRef50_UPI00035D9A23: hypothetical protein|unclassified	2.3746301655
+UniRef50_J9C0N2	2.3740541743
+UniRef50_J9C0N2|unclassified	2.3740541743
+UniRef50_W0Z2F6: Putative major facilitator superfamily transporter	2.3733600050
+UniRef50_W0Z2F6: Putative major facilitator superfamily transporter|unclassified	2.3733600050
+UniRef50_A8FKX4: Elongation factor P	2.3731070909
+UniRef50_A8FKX4: Elongation factor P|g__Helicobacter.s__Helicobacter_pylori	2.2727272727
+UniRef50_A8FKX4: Elongation factor P|unclassified	0.1003798182
+UniRef50_UPI000418ED4A: protein-L-isoaspartate O-methyltransferase	2.3720826685
+UniRef50_UPI000418ED4A: protein-L-isoaspartate O-methyltransferase|unclassified	2.3720826685
+UniRef50_UPI0003A7C1AD: 30S ribosomal protein S15	2.3720214224
+UniRef50_UPI0003A7C1AD: 30S ribosomal protein S15|unclassified	2.3720214224
+UniRef50_UPI000174440A: regulatory protein ArsR	2.3717646079
+UniRef50_UPI000174440A: regulatory protein ArsR|unclassified	2.3717646079
+UniRef50_V4V933: Fis family transcriptional regulator	2.3717620176
+UniRef50_V4V933: Fis family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3717620176
+UniRef50_UPI0003688AA7: hypothetical protein	2.3712325921
+UniRef50_UPI0003688AA7: hypothetical protein|unclassified	2.3712325921
+UniRef50_A6LRD1: Aldehyde dehydrogenase	2.3711777436
+UniRef50_A6LRD1: Aldehyde dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	2.3711777436
+UniRef50_O64174: Ribonucleoside-diphosphate reductase subunit beta	2.3702071601
+UniRef50_O64174: Ribonucleoside-diphosphate reductase subunit beta|unclassified	2.3702071601
+UniRef50_Q882G0: 3,4-dihydroxy-2-butanone 4-phosphate synthase	2.3699782346
+UniRef50_Q882G0: 3,4-dihydroxy-2-butanone 4-phosphate synthase|g__Acinetobacter.s__Acinetobacter_baumannii	1.2970168612
+UniRef50_Q882G0: 3,4-dihydroxy-2-butanone 4-phosphate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0729613734
+UniRef50_A6M1Y0: Helix-turn-helix-domain containing protein, AraC type	2.3696682464
+UniRef50_A6M1Y0: Helix-turn-helix-domain containing protein, AraC type|g__Clostridium.s__Clostridium_beijerinckii	2.3696682464
+UniRef50_A6M239: PTS system fructose subfamily IIA component	2.3696682464
+UniRef50_A6M239: PTS system fructose subfamily IIA component|g__Clostridium.s__Clostridium_beijerinckii	2.3696682464
+UniRef50_B0VB06	2.3696682464
+UniRef50_B0VB06|g__Acinetobacter.s__Acinetobacter_baumannii	2.3696682464
+UniRef50_D8HZX5	2.3696682464
+UniRef50_D8HZX5|unclassified	2.3696682464
+UniRef50_F0RKW9: Biopolymer transport protein ExbD/TolR	2.3696682464
+UniRef50_F0RKW9: Biopolymer transport protein ExbD/TolR|g__Deinococcus.s__Deinococcus_radiodurans	2.3696682464
+UniRef50_L4FU88	2.3696682464
+UniRef50_L4FU88|g__Escherichia.s__Escherichia_coli	2.3696682464
+UniRef50_Q034X6: 30S ribosomal protein S12	2.3696682464
+UniRef50_Q034X6: 30S ribosomal protein S12|g__Propionibacterium.s__Propionibacterium_acnes	2.3696682464
+UniRef50_U5ML33: Lipolytic protein, G-D-S-L family	2.3696682464
+UniRef50_U5ML33: Lipolytic protein, G-D-S-L family|g__Clostridium.s__Clostridium_beijerinckii	2.3696682464
+UniRef50_UPI0003B443A7: membrane protein	2.3693658588
+UniRef50_UPI0003B443A7: membrane protein|unclassified	2.3693658588
+UniRef50_I9L186: Transposase	2.3687651950
+UniRef50_I9L186: Transposase|unclassified	2.3687651950
+UniRef50_R4K9K7	2.3684520504
+UniRef50_R4K9K7|g__Clostridium.s__Clostridium_beijerinckii	2.3684520504
+UniRef50_K1Y1K5	2.3682768997
+UniRef50_K1Y1K5|unclassified	2.3682768997
+UniRef50_Q9JZ77: 3,4-dihydroxy-2-butanone 4-phosphate synthase	2.3682145497
+UniRef50_Q9JZ77: 3,4-dihydroxy-2-butanone 4-phosphate synthase|g__Neisseria.s__Neisseria_meningitidis	2.3682145497
+UniRef50_F3GLY7: Periplasmic binding protein/LacI transcriptional regulator (Fragment)	2.3680906102
+UniRef50_F3GLY7: Periplasmic binding protein/LacI transcriptional regulator (Fragment)|unclassified	2.3680906102
+UniRef50_B2TJ76: Tetratricopeptide repeat domain protein	2.3674229458
+UniRef50_B2TJ76: Tetratricopeptide repeat domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.3674229458
+UniRef50_I4YTY9: TIGR00370 family protein	2.3672991888
+UniRef50_I4YTY9: TIGR00370 family protein|unclassified	2.3672991888
+UniRef50_UPI00037C95EF: hypothetical protein, partial	2.3672715524
+UniRef50_UPI00037C95EF: hypothetical protein, partial|unclassified	2.3672715524
+UniRef50_UPI0003D0659C: 50S ribosomal protein L6	2.3668203584
+UniRef50_UPI0003D0659C: 50S ribosomal protein L6|unclassified	2.3668203584
+UniRef50_T9UBD7	2.3666267388
+UniRef50_T9UBD7|unclassified	2.3666267388
+UniRef50_UPI00035C6898: hypothetical protein, partial	2.3660039829
+UniRef50_UPI00035C6898: hypothetical protein, partial|unclassified	2.3660039829
+UniRef50_UPI000368CDC8: hypothetical protein, partial	2.3656425468
+UniRef50_UPI000368CDC8: hypothetical protein, partial|unclassified	2.3656425468
+UniRef50_UPI000475015E: hypothetical protein	2.3651176561
+UniRef50_UPI000475015E: hypothetical protein|unclassified	2.3651176561
+UniRef50_V6DLJ7: Putative phage protein	2.3641466086
+UniRef50_V6DLJ7: Putative phage protein|unclassified	2.3641466086
+UniRef50_A3M617	2.3640661939
+UniRef50_A3M617|g__Acinetobacter.s__Acinetobacter_baumannii	2.3640661939
+UniRef50_A5UK39: Coenzyme F420-reducing hydrogenase (Ni,Fe-hydrogenase maturation protease), delta subunit	2.3640661939
+UniRef50_A5UK39: Coenzyme F420-reducing hydrogenase (Ni,Fe-hydrogenase maturation protease), delta subunit|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.3640661939
+UniRef50_A5UNX6: Predicted universal stress protein, UspA	2.3640661939
+UniRef50_A5UNX6: Predicted universal stress protein, UspA|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.3640661939
+UniRef50_C1DGT5: Aldo/keto reductase family protein	2.3640661939
+UniRef50_C1DGT5: Aldo/keto reductase family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3640661939
+UniRef50_E1TAG1	2.3640661939
+UniRef50_E1TAG1|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3640661939
+UniRef50_P56580: Glucitol/sorbitol-specific phosphotransferase enzyme IIB component	2.3640661939
+UniRef50_P56580: Glucitol/sorbitol-specific phosphotransferase enzyme IIB component|g__Escherichia.s__Escherichia_coli	2.3640661939
+UniRef50_Q6LKZ5: ATP synthase epsilon chain 2	2.3640661939
+UniRef50_Q6LKZ5: ATP synthase epsilon chain 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3640661939
+UniRef50_Q9HZ17: FMN-dependent NADH-azoreductase 3	2.3640661939
+UniRef50_Q9HZ17: FMN-dependent NADH-azoreductase 3|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3640661939
+UniRef50_R4ZAI2: Accessory Sec system protein Asp3	2.3640661939
+UniRef50_R4ZAI2: Accessory Sec system protein Asp3|g__Streptococcus.s__Streptococcus_agalactiae	2.3640661939
+UniRef50_T2G6P0	2.3640661939
+UniRef50_T2G6P0|g__Escherichia.s__Escherichia_coli	2.3640661939
+UniRef50_F0YFM2: Expressed protein (Fragment)	2.3627176505
+UniRef50_F0YFM2: Expressed protein (Fragment)|unclassified	2.3627176505
+UniRef50_UPI0003C116D2	2.3616458176
+UniRef50_UPI0003C116D2|unclassified	2.3616458176
+UniRef50_Q9JY85	2.3615093594
+UniRef50_Q9JY85|g__Neisseria.s__Neisseria_meningitidis	2.2045279845
+UniRef50_Q9JY85|unclassified	0.1569813749
+UniRef50_UPI0004724C7E: 30S ribosomal protein S15, partial	2.3609774926
+UniRef50_UPI0004724C7E: 30S ribosomal protein S15, partial|unclassified	2.3609774926
+UniRef50_G0DVY4: Cell division protein FtsW	2.3604039129
+UniRef50_G0DVY4: Cell division protein FtsW|g__Propionibacterium.s__Propionibacterium_acnes	2.3604039129
+UniRef50_X0VEL2: Marine sediment metagenome DNA, contig: S01H1_S07192	2.3601706513
+UniRef50_X0VEL2: Marine sediment metagenome DNA, contig: S01H1_S07192|unclassified	2.3601706513
+UniRef50_Q9RRA6: Iron ABC transporter, periplasmic substrate-binding protein, putative	2.3601572142
+UniRef50_Q9RRA6: Iron ABC transporter, periplasmic substrate-binding protein, putative|g__Deinococcus.s__Deinococcus_radiodurans	2.3601572142
+UniRef50_E0J171: Ig domain protein group 1 domain protein	2.3596059905
+UniRef50_E0J171: Ig domain protein group 1 domain protein|g__Escherichia.s__Escherichia_coli	2.3596059905
+UniRef50_UPI00046FE0D7: hypothetical protein	2.3595274641
+UniRef50_UPI00046FE0D7: hypothetical protein|unclassified	2.3595274641
+UniRef50_A0PY95: Alanine racemase	2.3591665748
+UniRef50_A0PY95: Alanine racemase|g__Clostridium.s__Clostridium_beijerinckii	2.3591665748
+UniRef50_Q9RSD6: Aminopeptidase	2.3590207528
+UniRef50_Q9RSD6: Aminopeptidase|g__Deinococcus.s__Deinococcus_radiodurans	2.3590207528
+UniRef50_D9UQ66: Predicted protein	2.3588960891
+UniRef50_D9UQ66: Predicted protein|unclassified	2.3588960891
+UniRef50_Q89M20: Blr4373 protein	2.3586503687
+UniRef50_Q89M20: Blr4373 protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3586503687
+UniRef50_I2BWH8: CheW-like domain protein	2.3584905660
+UniRef50_I2BWH8: CheW-like domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3584905660
+UniRef50_P36647: Prepilin peptidase-dependent protein D	2.3584905660
+UniRef50_P36647: Prepilin peptidase-dependent protein D|g__Escherichia.s__Escherichia_coli	2.3584905660
+UniRef50_R7ACY8: Dyp-type peroxidase	2.3584905660
+UniRef50_R7ACY8: Dyp-type peroxidase|g__Acinetobacter.s__Acinetobacter_baumannii	2.3584905660
+UniRef50_V6E9C1: Putative membrane protein	2.3581427295
+UniRef50_V6E9C1: Putative membrane protein|unclassified	2.3581427295
+UniRef50_Q6FCW7: Phosphate import ATP-binding protein PstB	2.3581147621
+UniRef50_Q6FCW7: Phosphate import ATP-binding protein PstB|g__Acinetobacter.s__Acinetobacter_baumannii	2.2321428571
+UniRef50_Q6FCW7: Phosphate import ATP-binding protein PstB|unclassified	0.1259719049
+UniRef50_E0P6F9: Capsular polysaccharide biosynthesis protein CapD family protein	2.3575691973
+UniRef50_E0P6F9: Capsular polysaccharide biosynthesis protein CapD family protein|unclassified	2.3575691973
+UniRef50_UPI0003699B1F: hypothetical protein	2.3575430418
+UniRef50_UPI0003699B1F: hypothetical protein|unclassified	2.3575430418
+UniRef50_B0UTM0: Phage tail E family protein	2.3568354767
+UniRef50_B0UTM0: Phage tail E family protein|unclassified	2.3568354767
+UniRef50_W0RMS6: Nitrilase/cyanide hydratase and apolipoprotein N-acyltransferase	2.3566193401
+UniRef50_W0RMS6: Nitrilase/cyanide hydratase and apolipoprotein N-acyltransferase|g__Helicobacter.s__Helicobacter_pylori	2.3566193401
+UniRef50_UPI0001816B19: putative nadp-dependent oxidoreductase oxidoreductase protein, partial	2.3566160275
+UniRef50_UPI0001816B19: putative nadp-dependent oxidoreductase oxidoreductase protein, partial|unclassified	2.3566160275
+UniRef50_UPI00046942B7: hydrogenase nickel incorporation protein HypA	2.3563534565
+UniRef50_UPI00046942B7: hydrogenase nickel incorporation protein HypA|unclassified	2.3563534565
+UniRef50_Q48QI5: Oxidoreductase alpha (Molybdopterin) subunit, fusion	2.3562801135
+UniRef50_Q48QI5: Oxidoreductase alpha (Molybdopterin) subunit, fusion|g__Escherichia.s__Escherichia_coli	2.3562801135
+UniRef50_A5MZF0: Predicted signal transduction protein	2.3560960383
+UniRef50_A5MZF0: Predicted signal transduction protein|g__Clostridium.s__Clostridium_beijerinckii	2.3560960383
+UniRef50_UPI000347F8B1: hypothetical protein	2.3560868532
+UniRef50_UPI000347F8B1: hypothetical protein|unclassified	2.3560868532
+UniRef50_G7M452: Integral membrane sensor signal transduction histidine kinase	2.3558138342
+UniRef50_G7M452: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	2.3558138342
+UniRef50_M9VAV5	2.3554432163
+UniRef50_M9VAV5|g__Propionibacterium.s__Propionibacterium_acnes	2.3554432163
+UniRef50_U3AGN5: Coenzyme PQQ synthesis protein B	2.3554001547
+UniRef50_U3AGN5: Coenzyme PQQ synthesis protein B|unclassified	2.3554001547
+UniRef50_M2E7S5	2.3553981774
+UniRef50_M2E7S5|g__Streptococcus.s__Streptococcus_mutans	2.3553981774
+UniRef50_B2ILL9: Acetyl-CoA carboxylase, biotin carboxylase	2.3553070226
+UniRef50_B2ILL9: Acetyl-CoA carboxylase, biotin carboxylase|g__Acinetobacter.s__Acinetobacter_baumannii	2.3553070226
+UniRef50_R5PKA2: Polyphosphate kinase 2	2.3550262816
+UniRef50_R5PKA2: Polyphosphate kinase 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3550262816
+UniRef50_V4REG9	2.3546558872
+UniRef50_V4REG9|unclassified	2.3546558872
+UniRef50_I6B4P2	2.3544915082
+UniRef50_I6B4P2|unclassified	2.3544915082
+UniRef50_C1CXQ2	2.3541174206
+UniRef50_C1CXQ2|g__Deinococcus.s__Deinococcus_radiodurans	2.3541174206
+UniRef50_Q3JHM0	2.3537241267
+UniRef50_Q3JHM0|unclassified	2.3537241267
+UniRef50_C0WRC5	2.3535995769
+UniRef50_C0WRC5|unclassified	2.3535995769
+UniRef50_K1YDE1	2.3534888407
+UniRef50_K1YDE1|unclassified	2.3534888407
+UniRef50_M4QZL0	2.3532633117
+UniRef50_M4QZL0|g__Acinetobacter.s__Acinetobacter_baumannii	2.3532633117
+UniRef50_UPI00046934E1: hypothetical protein	2.3532521754
+UniRef50_UPI00046934E1: hypothetical protein|unclassified	2.3532521754
+UniRef50_A3PJU3	2.3529411765
+UniRef50_A3PJU3|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.3529411765
+UniRef50_J0ENG7: LPXTG-motif cell wall anchor domain protein (Fragment)	2.3529411765
+UniRef50_J0ENG7: LPXTG-motif cell wall anchor domain protein (Fragment)|g__Staphylococcus.s__Staphylococcus_epidermidis	2.3529411765
+UniRef50_X5EI43	2.3529411765
+UniRef50_X5EI43|g__Neisseria.s__Neisseria_meningitidis	2.3529411765
+UniRef50_A0A014LMK6: Acetate--CoA ligase	2.3527263708
+UniRef50_A0A014LMK6: Acetate--CoA ligase|g__Acinetobacter.s__Acinetobacter_baumannii	2.3527263708
+UniRef50_G5QPS2	2.3523815051
+UniRef50_G5QPS2|unclassified	2.3523815051
+UniRef50_A6V857	2.3516138856
+UniRef50_A6V857|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9481426961
+UniRef50_A6V857|unclassified	0.4034711895
+UniRef50_Q3K2H5: Prophage LambdaSa03, tail component, putative	2.3514852559
+UniRef50_Q3K2H5: Prophage LambdaSa03, tail component, putative|g__Streptococcus.s__Streptococcus_agalactiae	2.3514852559
+UniRef50_H3USC1	2.3510971787
+UniRef50_H3USC1|unclassified	2.3510971787
+UniRef50_UPI000440590F: PREDICTED: dermokine	2.3510971787
+UniRef50_UPI000440590F: PREDICTED: dermokine|unclassified	2.3510971787
+UniRef50_U3T2L8: Pirin-like protein	2.3508850506
+UniRef50_U3T2L8: Pirin-like protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.2975309131
+UniRef50_U3T2L8: Pirin-like protein|unclassified	0.0533541375
+UniRef50_F1XKP7	2.3508276729
+UniRef50_F1XKP7|g__Escherichia.s__Escherichia_coli	2.3508276729
+UniRef50_A7X759	2.3504998425
+UniRef50_A7X759|unclassified	2.3504998425
+UniRef50_D5APC1: NnrU family protein	2.3504450652
+UniRef50_D5APC1: NnrU family protein|unclassified	2.3504450652
+UniRef50_G7MBG6: Glucokinase	2.3502946494
+UniRef50_G7MBG6: Glucokinase|g__Clostridium.s__Clostridium_beijerinckii	2.3502946494
+UniRef50_L8P608	2.3501762632
+UniRef50_L8P608|unclassified	2.3501762632
+UniRef50_B9KW90	2.3496316657
+UniRef50_B9KW90|unclassified	2.3496316657
+UniRef50_UPI000428CAD9: hypothetical protein	2.3494688051
+UniRef50_UPI000428CAD9: hypothetical protein|unclassified	2.3494688051
+UniRef50_C7JHV1: Transposase	2.3494438862
+UniRef50_C7JHV1: Transposase|unclassified	2.3494438862
+UniRef50_A0A022PER4: Phage tail tube protein FII	2.3491260969
+UniRef50_A0A022PER4: Phage tail tube protein FII|unclassified	2.3491260969
+UniRef50_Q891D3: Tyrosine--tRNA ligase	2.3490510628
+UniRef50_Q891D3: Tyrosine--tRNA ligase|g__Clostridium.s__Clostridium_beijerinckii	2.0782211363
+UniRef50_Q891D3: Tyrosine--tRNA ligase|unclassified	0.2708299265
+UniRef50_V4D7X7: UPF0082 protein yeeN	2.3488429397
+UniRef50_V4D7X7: UPF0082 protein yeeN|unclassified	2.3488429397
+UniRef50_D4H934: DNA-binding helix-turn-helix protein	2.3484290720
+UniRef50_D4H934: DNA-binding helix-turn-helix protein|g__Propionibacterium.s__Propionibacterium_acnes	2.3484290720
+UniRef50_F4CS06: Plasmid pRiA4b ORF-3 family protein	2.3483580124
+UniRef50_F4CS06: Plasmid pRiA4b ORF-3 family protein|unclassified	2.3483580124
+UniRef50_D4LBR4	2.3483178080
+UniRef50_D4LBR4|unclassified	2.3483178080
+UniRef50_UPI000475CBA9: hypothetical protein, partial	2.3480254075
+UniRef50_UPI000475CBA9: hypothetical protein, partial|unclassified	2.3480254075
+UniRef50_H9UPI6: Porin thermoregulatory protein envY	2.3476753104
+UniRef50_H9UPI6: Porin thermoregulatory protein envY|g__Escherichia.s__Escherichia_coli	2.1141649049
+UniRef50_H9UPI6: Porin thermoregulatory protein envY|unclassified	0.2335104056
+UniRef50_A4WP16: Esterase/lipase-like protein	2.3474178404
+UniRef50_A4WP16: Esterase/lipase-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.3474178404
+UniRef50_C6UCF5	2.3474178404
+UniRef50_C6UCF5|g__Escherichia.s__Escherichia_coli	2.3474178404
+UniRef50_F0RLX6	2.3474178404
+UniRef50_F0RLX6|g__Deinococcus.s__Deinococcus_radiodurans	2.3474178404
+UniRef50_F2MPN2: 2-dehydro-3-deoxyphosphogluconate aldolase/4-hydroxy-2-oxoglutarate aldolase	2.3474178404
+UniRef50_F2MPN2: 2-dehydro-3-deoxyphosphogluconate aldolase/4-hydroxy-2-oxoglutarate aldolase|g__Clostridium.s__Clostridium_beijerinckii	2.3474178404
+UniRef50_G2JIJ8	2.3474178404
+UniRef50_G2JIJ8|g__Acinetobacter.s__Acinetobacter_baumannii	2.3474178404
+UniRef50_H8GYE9	2.3474178404
+UniRef50_H8GYE9|unclassified	2.3474178404
+UniRef50_Q6A6J6: UPF0336 protein PPA1896	2.3474178404
+UniRef50_Q6A6J6: UPF0336 protein PPA1896|g__Propionibacterium.s__Propionibacterium_acnes	2.3474178404
+UniRef50_A8LKU0	2.3473108774
+UniRef50_A8LKU0|unclassified	2.3473108774
+UniRef50_A6LRG0: ErfK/YbiS/YcfS/YnhG family protein	2.3468060557
+UniRef50_A6LRG0: ErfK/YbiS/YcfS/YnhG family protein|g__Clostridium.s__Clostridium_beijerinckii	2.3468060557
+UniRef50_R9SJS9: UPF0145 protein Abm4_0453	2.3460513528
+UniRef50_R9SJS9: UPF0145 protein Abm4_0453|unclassified	2.3460513528
+UniRef50_P45260: Acetolactate synthase small subunit	2.3453961273
+UniRef50_P45260: Acetolactate synthase small subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0325203252
+UniRef50_P45260: Acetolactate synthase small subunit|unclassified	0.3128758021
+UniRef50_V9VVM5: Component of SufBCD complex	2.3437365218
+UniRef50_V9VVM5: Component of SufBCD complex|unclassified	2.3437365218
+UniRef50_Q17XN9: Aspartate carbamoyltransferase	2.3437350002
+UniRef50_Q17XN9: Aspartate carbamoyltransferase|g__Helicobacter.s__Helicobacter_pylori	2.3437350002
+UniRef50_UPI00036E8C31: hypothetical protein	2.3434802858
+UniRef50_UPI00036E8C31: hypothetical protein|unclassified	2.3434802858
+UniRef50_UPI00037D2EC7: hypothetical protein	2.3434755624
+UniRef50_UPI00037D2EC7: hypothetical protein|unclassified	2.3434755624
+UniRef50_B2V995: Protease HtpX homolog	2.3432931299
+UniRef50_B2V995: Protease HtpX homolog|g__Clostridium.s__Clostridium_beijerinckii	2.3432931299
+UniRef50_UPI00037BD53F: hypothetical protein	2.3428738398
+UniRef50_UPI00037BD53F: hypothetical protein|unclassified	2.3428738398
+UniRef50_F0Y5D8: Expressed protein (Fragment)	2.3427661778
+UniRef50_F0Y5D8: Expressed protein (Fragment)|unclassified	2.3427661778
+UniRef50_H6NZB1	2.3419203747
+UniRef50_H6NZB1|g__Escherichia.s__Escherichia_coli	2.3419203747
+UniRef50_Q9HTX6: Glycine cleavage system H protein 2	2.3419203747
+UniRef50_Q9HTX6: Glycine cleavage system H protein 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3419203747
+UniRef50_R1EQU5	2.3419203747
+UniRef50_R1EQU5|unclassified	2.3419203747
+UniRef50_R9SHN1: Ribosomal-protein-alanine acetyltransferase RimI	2.3419203747
+UniRef50_R9SHN1: Ribosomal-protein-alanine acetyltransferase RimI|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.3419203747
+UniRef50_W0V3Q1	2.3413507022
+UniRef50_W0V3Q1|unclassified	2.3413507022
+UniRef50_Q7WQL9: Glutamate 5-kinase	2.3408289234
+UniRef50_Q7WQL9: Glutamate 5-kinase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3280212483
+UniRef50_Q7WQL9: Glutamate 5-kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9746588694
+UniRef50_Q7WQL9: Glutamate 5-kinase|unclassified	0.0381488056
+UniRef50_M1MT01: Oxygen-independent coproporphyrinogen-III oxidase 1	2.3407667837
+UniRef50_M1MT01: Oxygen-independent coproporphyrinogen-III oxidase 1|g__Clostridium.s__Clostridium_beijerinckii	2.3407667837
+UniRef50_Q32EJ7	2.3405926462
+UniRef50_Q32EJ7|g__Escherichia.s__Escherichia_coli	1.6920473773
+UniRef50_Q32EJ7|unclassified	0.6485452689
+UniRef50_Q0TNA9: Protein-(Glutamine-N5) methyltransferase, release factor-specific	2.3402437328
+UniRef50_Q0TNA9: Protein-(Glutamine-N5) methyltransferase, release factor-specific|g__Clostridium.s__Clostridium_beijerinckii	2.3402437328
+UniRef50_H0A168	2.3392400349
+UniRef50_H0A168|unclassified	2.3392400349
+UniRef50_R5B4R5: Inner-membrane translocator	2.3391940861
+UniRef50_R5B4R5: Inner-membrane translocator|g__Clostridium.s__Clostridium_beijerinckii	2.3391940861
+UniRef50_Q1J0G9: Aminotransferase, class V	2.3391812865
+UniRef50_Q1J0G9: Aminotransferase, class V|g__Deinococcus.s__Deinococcus_radiodurans	2.3391812865
+UniRef50_E8PGH1	2.3389240593
+UniRef50_E8PGH1|g__Acinetobacter.s__Acinetobacter_baumannii	2.3389240593
+UniRef50_A0QSU4	2.3389024037
+UniRef50_A0QSU4|g__Propionibacterium.s__Propionibacterium_acnes	2.3389024037
+UniRef50_D8JJB8: Riboflavin biosynthesis protein RibF	2.3378993967
+UniRef50_D8JJB8: Riboflavin biosynthesis protein RibF|g__Acinetobacter.s__Acinetobacter_baumannii	2.3378993967
+UniRef50_Z2DR35	2.3378927398
+UniRef50_Z2DR35|unclassified	2.3378927398
+UniRef50_Q6FBV7: 3-hydroxyisobutyrate dehydrogenase	2.3376002731
+UniRef50_Q6FBV7: 3-hydroxyisobutyrate dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	2.3376002731
+UniRef50_B5EY83: Small heat shock protein IbpB	2.3364485981
+UniRef50_B5EY83: Small heat shock protein IbpB|g__Escherichia.s__Escherichia_coli	2.3364485981
+UniRef50_D5SHW6: Thiazole biosynthesis/tRNA modification protein ThiI	2.3364485981
+UniRef50_D5SHW6: Thiazole biosynthesis/tRNA modification protein ThiI|unclassified	2.3364485981
+UniRef50_P44270	2.3364485981
+UniRef50_P44270|g__Neisseria.s__Neisseria_meningitidis	2.3364485981
+UniRef50_Q6A7G2: Conserved membrane protein	2.3364485981
+UniRef50_Q6A7G2: Conserved membrane protein|g__Propionibacterium.s__Propionibacterium_acnes	2.3364485981
+UniRef50_Q6A8B2: Homoserine kinase	2.3364485981
+UniRef50_Q6A8B2: Homoserine kinase|g__Propionibacterium.s__Propionibacterium_acnes	2.3364485981
+UniRef50_Q9JZS9	2.3364485981
+UniRef50_Q9JZS9|g__Neisseria.s__Neisseria_meningitidis	2.3364485981
+UniRef50_D0D906: Tripartite ATP-independent periplasmic transporter, DctQ component	2.3362071887
+UniRef50_D0D906: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	2.3362071887
+UniRef50_M3XNN6	2.3360406417
+UniRef50_M3XNN6|unclassified	2.3360406417
+UniRef50_B4RI59: Putative ChaX protein	2.3357391912
+UniRef50_B4RI59: Putative ChaX protein|unclassified	2.3357391912
+UniRef50_U7DDI3: Tail fiber protein	2.3357255442
+UniRef50_U7DDI3: Tail fiber protein|unclassified	2.3357255442
+UniRef50_L8Q7M1	2.3352234830
+UniRef50_L8Q7M1|unclassified	2.3352234830
+UniRef50_X6KM88	2.3351033857
+UniRef50_X6KM88|unclassified	2.3351033857
+UniRef50_U5MP56: ATP-dependent DNA helicase PcrA	2.3348026008
+UniRef50_U5MP56: ATP-dependent DNA helicase PcrA|g__Clostridium.s__Clostridium_beijerinckii	2.3348026008
+UniRef50_UPI0004765C33: translation initiation factor IF-3	2.3347353739
+UniRef50_UPI0004765C33: translation initiation factor IF-3|unclassified	2.3347353739
+UniRef50_C4J517	2.3346366505
+UniRef50_C4J517|unclassified	2.3346366505
+UniRef50_G7W6N5: NADH:flavin oxidoreductase	2.3345669499
+UniRef50_G7W6N5: NADH:flavin oxidoreductase|g__Clostridium.s__Clostridium_beijerinckii	2.3345669499
+UniRef50_U9K588	2.3344997681
+UniRef50_U9K588|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3344997681
+UniRef50_Q02MJ3: Pyoverdine synthetase D	2.3337407547
+UniRef50_Q02MJ3: Pyoverdine synthetase D|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3337407547
+UniRef50_M9VKV2: Efflux ABC transporter permease	2.3333211568
+UniRef50_M9VKV2: Efflux ABC transporter permease|g__Propionibacterium.s__Propionibacterium_acnes	2.3333211568
+UniRef50_B2TMR9	2.3333033037
+UniRef50_B2TMR9|g__Clostridium.s__Clostridium_beijerinckii	2.3333033037
+UniRef50_O52674: DsORF-g1	2.3327675848
+UniRef50_O52674: DsORF-g1|g__Escherichia.s__Escherichia_coli	2.3327675848
+UniRef50_F2D0D3: Predicted protein	2.3326625769
+UniRef50_F2D0D3: Predicted protein|unclassified	2.3326625769
+UniRef50_C3FDC0	2.3323961540
+UniRef50_C3FDC0|g__Clostridium.s__Clostridium_beijerinckii	2.3323961540
+UniRef50_A0A021WYQ6: Plasmid partitioning protein RepA	2.3318843347
+UniRef50_A0A021WYQ6: Plasmid partitioning protein RepA|unclassified	2.3318843347
+UniRef50_U3SYS1: Gamma-aminobutyrate permease	2.3318785459
+UniRef50_U3SYS1: Gamma-aminobutyrate permease|g__Acinetobacter.s__Acinetobacter_baumannii	2.3318785459
+UniRef50_UPI000369C449: aminotransferase, partial	2.3314310991
+UniRef50_UPI000369C449: aminotransferase, partial|unclassified	2.3314310991
+UniRef50_K7S0T6: 5'-Nucleotidase domain-containing protein	2.3314061382
+UniRef50_K7S0T6: 5'-Nucleotidase domain-containing protein|g__Propionibacterium.s__Propionibacterium_acnes	2.3314061382
+UniRef50_T0Z5R5: TISRso5 ISRSO5-transposase protein (Fragment)	2.3310314576
+UniRef50_T0Z5R5: TISRso5 ISRSO5-transposase protein (Fragment)|unclassified	2.3310314576
+UniRef50_B3T6I6	2.3310023310
+UniRef50_B3T6I6|unclassified	2.3310023310
+UniRef50_B6IS55: Oxidoreductase, short chain dehydrogenase	2.3310023310
+UniRef50_B6IS55: Oxidoreductase, short chain dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	2.3310023310
+UniRef50_E8QSX5	2.3310023310
+UniRef50_E8QSX5|g__Helicobacter.s__Helicobacter_pylori	2.3310023310
+UniRef50_F2LSI9: Metal dependent phosphohydrolase, HD region	2.3310023310
+UniRef50_F2LSI9: Metal dependent phosphohydrolase, HD region|g__Clostridium.s__Clostridium_beijerinckii	2.3310023310
+UniRef50_I6WWP7: Cell division protein FtsX	2.3310023310
+UniRef50_I6WWP7: Cell division protein FtsX|g__Propionibacterium.s__Propionibacterium_acnes	2.3310023310
+UniRef50_M9V8F1	2.3310023310
+UniRef50_M9V8F1|g__Propionibacterium.s__Propionibacterium_acnes	2.3310023310
+UniRef50_N1QQD7	2.3310023310
+UniRef50_N1QQD7|unclassified	2.3310023310
+UniRef50_A0A017HNF4: Type cbb3 cytochrome oxidase biogenesis protein CcoS, involved in heme b insertion	2.3306424702
+UniRef50_A0A017HNF4: Type cbb3 cytochrome oxidase biogenesis protein CcoS, involved in heme b insertion|unclassified	2.3306424702
+UniRef50_P35881: Transposase for insertion sequence element IS905	2.3304334632
+UniRef50_P35881: Transposase for insertion sequence element IS905|g__Streptococcus.s__Streptococcus_agalactiae	2.3304334632
+UniRef50_A2WHS9	2.3300163322
+UniRef50_A2WHS9|unclassified	2.3300163322
+UniRef50_D2NHM2	2.3298639613
+UniRef50_D2NHM2|unclassified	2.3298639613
+UniRef50_Q5LI72: Lipoprotein-releasing system ATP-binding protein LolD	2.3291499677
+UniRef50_Q5LI72: Lipoprotein-releasing system ATP-binding protein LolD|unclassified	2.3291499677
+UniRef50_A1KVW4: Multidrug resistance translocase	2.3286248662
+UniRef50_A1KVW4: Multidrug resistance translocase|g__Neisseria.s__Neisseria_meningitidis	2.3286248662
+UniRef50_UPI00047805D0: ABC transporter ATP-binding protein	2.3283690715
+UniRef50_UPI00047805D0: ABC transporter ATP-binding protein|unclassified	2.3283690715
+UniRef50_UPI00036A9D7D: hypothetical protein	2.3281495733
+UniRef50_UPI00036A9D7D: hypothetical protein|unclassified	2.3281495733
+UniRef50_A6LZ46: Response regulator receiver protein	2.3279888295
+UniRef50_A6LZ46: Response regulator receiver protein|g__Clostridium.s__Clostridium_beijerinckii	2.3279888295
+UniRef50_UPI0003A61BAB: glutaredoxin	2.3276208962
+UniRef50_UPI0003A61BAB: glutaredoxin|unclassified	2.3276208962
+UniRef50_L8ZTM2: Putative outer membrane usher protein FimD (Fragment)	2.3269675055
+UniRef50_L8ZTM2: Putative outer membrane usher protein FimD (Fragment)|unclassified	2.3269675055
+UniRef50_B9TL13	2.3267127899
+UniRef50_B9TL13|unclassified	2.3267127899
+UniRef50_A0A017HRC2	2.3264210241
+UniRef50_A0A017HRC2|unclassified	2.3264210241
+UniRef50_L1KAU9	2.3260173567
+UniRef50_L1KAU9|unclassified	2.3260173567
+UniRef50_C2ZY26	2.3259647241
+UniRef50_C2ZY26|unclassified	2.3259647241
+UniRef50_A1ISE9: SpoU methylase family protein	2.3255813953
+UniRef50_A1ISE9: SpoU methylase family protein|g__Neisseria.s__Neisseria_meningitidis	2.3255813953
+UniRef50_G2JD62: Ferric acinetobactin transport system ATP-binding protein	2.3255813953
+UniRef50_G2JD62: Ferric acinetobactin transport system ATP-binding protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.3255813953
+UniRef50_Q9A2S6: NAD-dependent protein deacylase	2.3255813953
+UniRef50_Q9A2S6: NAD-dependent protein deacylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.3255813953
+UniRef50_Q9RSM5	2.3255813953
+UniRef50_Q9RSM5|g__Deinococcus.s__Deinococcus_radiodurans	2.3255813953
+UniRef50_UPI0001757EB7: PREDICTED: hypothetical protein isoform 1	2.3255813953
+UniRef50_UPI0001757EB7: PREDICTED: hypothetical protein isoform 1|unclassified	2.3255813953
+UniRef50_UPI00035D2F67: hypothetical protein, partial	2.3255813953
+UniRef50_UPI00035D2F67: hypothetical protein, partial|unclassified	2.3255813953
+UniRef50_A9N4N9	2.3254579250
+UniRef50_A9N4N9|unclassified	2.3254579250
+UniRef50_C1A7X4: Acyl-CoA dehydrogenase	2.3254023254
+UniRef50_C1A7X4: Acyl-CoA dehydrogenase|g__Deinococcus.s__Deinococcus_radiodurans	2.3254023254
+UniRef50_W7Q1J6	2.3251392808
+UniRef50_W7Q1J6|unclassified	2.3251392808
+UniRef50_M3C600: Outer membrane usher protein, FimD	2.3250384947
+UniRef50_M3C600: Outer membrane usher protein, FimD|g__Escherichia.s__Escherichia_coli	2.3250384947
+UniRef50_UPI00047C7D0A: riboflavin transporter RibU	2.3249749476
+UniRef50_UPI00047C7D0A: riboflavin transporter RibU|unclassified	2.3249749476
+UniRef50_UPI000373D0A7: Cro/Cl family transcriptional regulator	2.3248031357
+UniRef50_UPI000373D0A7: Cro/Cl family transcriptional regulator|unclassified	2.3248031357
+UniRef50_A6M085: GCN5-related N-acetyltransferase	2.3242497171
+UniRef50_A6M085: GCN5-related N-acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	2.3242497171
+UniRef50_W7J7H8: Basic proline-rich protein	2.3236592249
+UniRef50_W7J7H8: Basic proline-rich protein|unclassified	2.3236592249
+UniRef50_K8CBH4: Fe-S protein, homolog of lactate dehydrogenase SO1521	2.3236310138
+UniRef50_K8CBH4: Fe-S protein, homolog of lactate dehydrogenase SO1521|g__Escherichia.s__Escherichia_coli	2.3236310138
+UniRef50_Q3IZI5: Ribosomal RNA large subunit methyltransferase H	2.3232156792
+UniRef50_Q3IZI5: Ribosomal RNA large subunit methyltransferase H|unclassified	2.3232156792
+UniRef50_UPI0003593C55: PREDICTED: protein IWS1 homolog	2.3230629439
+UniRef50_UPI0003593C55: PREDICTED: protein IWS1 homolog|unclassified	2.3230629439
+UniRef50_K7RTT6: O-antigen polymerase	2.3221024259
+UniRef50_K7RTT6: O-antigen polymerase|g__Propionibacterium.s__Propionibacterium_acnes	2.3221024259
+UniRef50_E3F3G1: Sterol carrier family protein	2.3218793244
+UniRef50_E3F3G1: Sterol carrier family protein|unclassified	2.3218793244
+UniRef50_O34399: Glutamate synthase [NADPH] small chain	2.3212773252
+UniRef50_O34399: Glutamate synthase [NADPH] small chain|g__Clostridium.s__Clostridium_beijerinckii	2.3212773252
+UniRef50_UPI000378450B: hypothetical protein, partial	2.3204669796
+UniRef50_UPI000378450B: hypothetical protein, partial|unclassified	2.3204669796
+UniRef50_P43948: UDP-N-acetylmuramate:L-alanyl-gamma-D-glutamyl-meso-diaminopimelate ligase	2.3203703849
+UniRef50_P43948: UDP-N-acetylmuramate:L-alanyl-gamma-D-glutamyl-meso-diaminopimelate ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4993523225
+UniRef50_P43948: UDP-N-acetylmuramate:L-alanyl-gamma-D-glutamyl-meso-diaminopimelate ligase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8210180624
+UniRef50_E4D4Y2	2.3201856148
+UniRef50_E4D4Y2|g__Propionibacterium.s__Propionibacterium_acnes	2.3201856148
+UniRef50_A6M0Z8: Integral membrane sensor signal transduction histidine kinase	2.3189069175
+UniRef50_A6M0Z8: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	2.3189069175
+UniRef50_UPI000376AE97: hypothetical protein	2.3174327885
+UniRef50_UPI000376AE97: hypothetical protein|unclassified	2.3174327885
+UniRef50_V6ADW5	2.3173367659
+UniRef50_V6ADW5|unclassified	2.3173367659
+UniRef50_Q5SHZ8: 8-amino-7-oxononanoate synthase/2-amino-3-ketobutyrate coenzyme A ligase	2.3170655476
+UniRef50_Q5SHZ8: 8-amino-7-oxononanoate synthase/2-amino-3-ketobutyrate coenzyme A ligase|g__Deinococcus.s__Deinococcus_radiodurans	1.9685338603
+UniRef50_Q5SHZ8: 8-amino-7-oxononanoate synthase/2-amino-3-ketobutyrate coenzyme A ligase|unclassified	0.3485316873
+UniRef50_C3DVK6: Phage integrase	2.3170215530
+UniRef50_C3DVK6: Phage integrase|unclassified	2.3170215530
+UniRef50_UPI000379410F: hypothetical protein	2.3165803527
+UniRef50_UPI000379410F: hypothetical protein|unclassified	2.3165803527
+UniRef50_A6LZQ9	2.3148148148
+UniRef50_A6LZQ9|g__Clostridium.s__Clostridium_beijerinckii	2.3148148148
+UniRef50_A6M3F8: Metal dependent phosphohydrolase	2.3148148148
+UniRef50_A6M3F8: Metal dependent phosphohydrolase|g__Clostridium.s__Clostridium_beijerinckii	2.3148148148
+UniRef50_B9KMA7	2.3148148148
+UniRef50_B9KMA7|unclassified	2.3148148148
+UniRef50_D8GLI1	2.3148148148
+UniRef50_D8GLI1|g__Clostridium.s__Clostridium_beijerinckii	2.3148148148
+UniRef50_M3V7J0	2.3148148148
+UniRef50_M3V7J0|unclassified	2.3148148148
+UniRef50_M4WZN7: General secretion pathway protein G	2.3148148148
+UniRef50_M4WZN7: General secretion pathway protein G|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3148148148
+UniRef50_R6FIZ1	2.3148148148
+UniRef50_R6FIZ1|g__Clostridium.s__Clostridium_beijerinckii	2.3148148148
+UniRef50_UPI0003AE25D0: PREDICTED: torsin-3A	2.3148148148
+UniRef50_UPI0003AE25D0: PREDICTED: torsin-3A|unclassified	2.3148148148
+UniRef50_UPI000471CCCD: 2''-5'' RNA ligase	2.3148148148
+UniRef50_UPI000471CCCD: 2''-5'' RNA ligase|unclassified	2.3148148148
+UniRef50_W8UYM6: S-formylglutathione hydrolase	2.3148148148
+UniRef50_W8UYM6: S-formylglutathione hydrolase|g__Escherichia.s__Escherichia_coli	2.3148148148
+UniRef50_Y5CR82: Multidrug resistance efflux pump sepA	2.3148148148
+UniRef50_Y5CR82: Multidrug resistance efflux pump sepA|unclassified	2.3148148148
+UniRef50_A3MR63: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase	2.3142978418
+UniRef50_A3MR63: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase|g__Neisseria.s__Neisseria_meningitidis	2.3142978418
+UniRef50_A0A017XMV8	2.3142733259
+UniRef50_A0A017XMV8|unclassified	2.3142733259
+UniRef50_M9VH17	2.3142277054
+UniRef50_M9VH17|g__Propionibacterium.s__Propionibacterium_acnes	2.3142277054
+UniRef50_UPI00035D49FD: hypothetical protein	2.3134050690
+UniRef50_UPI00035D49FD: hypothetical protein|unclassified	2.3134050690
+UniRef50_T0VH81: ThiJ/PfpI family protein	2.3131568743
+UniRef50_T0VH81: ThiJ/PfpI family protein|unclassified	2.3131568743
+UniRef50_G8M3K1	2.3126896832
+UniRef50_G8M3K1|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3126896832
+UniRef50_A1B6N6: HupE/UreJ protein	2.3122820911
+UniRef50_A1B6N6: HupE/UreJ protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.7452006981
+UniRef50_A1B6N6: HupE/UreJ protein|unclassified	0.5670813930
+UniRef50_D4HCR0	2.3122389892
+UniRef50_D4HCR0|g__Propionibacterium.s__Propionibacterium_acnes	2.3122389892
+UniRef50_UPI0002ADB756	2.3121387283
+UniRef50_UPI0002ADB756|unclassified	2.3121387283
+UniRef50_H3UQ65: MepB domain protein	2.3116697379
+UniRef50_H3UQ65: MepB domain protein|unclassified	2.3116697379
+UniRef50_M4QYT8: Nitrite reductase small subunit	2.3113236760
+UniRef50_M4QYT8: Nitrite reductase small subunit|g__Acinetobacter.s__Acinetobacter_baumannii	2.3113236760
+UniRef50_A3PKV8: Drug resistance transporter, EmrB/QacA subfamily	2.3111456979
+UniRef50_A3PKV8: Drug resistance transporter, EmrB/QacA subfamily|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.3111456979
+UniRef50_A6E1L3: 2-hydroxyacid dehydrogenase	2.3100933939
+UniRef50_A6E1L3: 2-hydroxyacid dehydrogenase|unclassified	2.3100933939
+UniRef50_L0BJA1	2.3098853219
+UniRef50_L0BJA1|g__Clostridium.s__Clostridium_beijerinckii	2.3098853219
+UniRef50_D4DQT5	2.3096007528
+UniRef50_D4DQT5|unclassified	2.3096007528
+UniRef50_A0A023RXV8	2.3094688222
+UniRef50_A0A023RXV8|g__Acinetobacter.s__Acinetobacter_baumannii	2.3094688222
+UniRef50_A6LRH1: Response regulator receiver protein	2.3094688222
+UniRef50_A6LRH1: Response regulator receiver protein|g__Clostridium.s__Clostridium_beijerinckii	2.3094688222
+UniRef50_A6LSN9: GTP-sensing transcriptional pleiotropic repressor CodY	2.3094688222
+UniRef50_A6LSN9: GTP-sensing transcriptional pleiotropic repressor CodY|g__Clostridium.s__Clostridium_beijerinckii	2.3094688222
+UniRef50_B9J7U7	2.3094688222
+UniRef50_B9J7U7|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.3094688222
+UniRef50_E7T3N9: IS150 orfB	2.3094688222
+UniRef50_E7T3N9: IS150 orfB|g__Escherichia.s__Escherichia_coli	2.3094688222
+UniRef50_F8INQ8: 2-dehydro-3-deoxy-6-phosphogalactonate aldolase	2.3094688222
+UniRef50_F8INQ8: 2-dehydro-3-deoxy-6-phosphogalactonate aldolase|g__Streptococcus.s__Streptococcus_agalactiae	2.3094688222
+UniRef50_P0AED2: Universal stress protein A	2.3094688222
+UniRef50_P0AED2: Universal stress protein A|g__Escherichia.s__Escherichia_coli	2.3094688222
+UniRef50_UPI00035F5F6D: hypothetical protein	2.3094226687
+UniRef50_UPI00035F5F6D: hypothetical protein|unclassified	2.3094226687
+UniRef50_R5UKS9	2.3088084500
+UniRef50_R5UKS9|g__Clostridium.s__Clostridium_beijerinckii	2.3088084500
+UniRef50_K0HJZ6: HTH domain protein	2.3086879770
+UniRef50_K0HJZ6: HTH domain protein|g__Propionibacterium.s__Propionibacterium_acnes	2.3086879770
+UniRef50_Q28LZ6	2.3071973202
+UniRef50_Q28LZ6|unclassified	2.3071973202
+UniRef50_G7U3Z0	2.3069155581
+UniRef50_G7U3Z0|g__Propionibacterium.s__Propionibacterium_acnes	2.3069155581
+UniRef50_A6LTI5: Pentapeptide repeat protein	2.3068233315
+UniRef50_A6LTI5: Pentapeptide repeat protein|g__Clostridium.s__Clostridium_beijerinckii	2.3068233315
+UniRef50_V7ZPF8	2.3066073673
+UniRef50_V7ZPF8|unclassified	2.3066073673
+UniRef50_G9ENL6	2.3063725965
+UniRef50_G9ENL6|unclassified	2.3063725965
+UniRef50_E9CGB4: Acyl-CoA dehydrogenase	2.3063098511
+UniRef50_E9CGB4: Acyl-CoA dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	2.3063098511
+UniRef50_B0V8W4	2.3057644110
+UniRef50_B0V8W4|g__Acinetobacter.s__Acinetobacter_baumannii	2.3057644110
+UniRef50_UPI00035FD10F: hypothetical protein	2.3056236416
+UniRef50_UPI00035FD10F: hypothetical protein|unclassified	2.3056236416
+UniRef50_X6C038: Capsid protein	2.3055366663
+UniRef50_X6C038: Capsid protein|unclassified	2.3055366663
+UniRef50_A6YPV7: Recombination protein A (Fragment)	2.3054576915
+UniRef50_A6YPV7: Recombination protein A (Fragment)|unclassified	2.3054576915
+UniRef50_G4KST8: Aminopeptidase	2.3052885252
+UniRef50_G4KST8: Aminopeptidase|g__Clostridium.s__Clostridium_beijerinckii	2.3052885252
+UniRef50_S5NNX6	2.3051316283
+UniRef50_S5NNX6|unclassified	2.3051316283
+UniRef50_F5XRT1: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--2,6-diaminopimelate ligase	2.3049048249
+UniRef50_F5XRT1: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--2,6-diaminopimelate ligase|g__Propionibacterium.s__Propionibacterium_acnes	2.3049048249
+UniRef50_M1YTR4	2.3047972553
+UniRef50_M1YTR4|unclassified	2.3047972553
+UniRef50_M4YXS3: RNA polymerase sigma factor	2.3047194017
+UniRef50_M4YXS3: RNA polymerase sigma factor|g__Streptococcus.s__Streptococcus_agalactiae	2.3047194017
+UniRef50_A3VF16	2.3043219299
+UniRef50_A3VF16|unclassified	2.3043219299
+UniRef50_A4WX23	2.3042848380
+UniRef50_A4WX23|unclassified	2.3042848380
+UniRef50_A6LUL9	2.3041474654
+UniRef50_A6LUL9|g__Clostridium.s__Clostridium_beijerinckii	2.3041474654
+UniRef50_J8V2B7: Extracellular solute-binding protein	2.3034827475
+UniRef50_J8V2B7: Extracellular solute-binding protein|unclassified	2.3034827475
+UniRef50_R6PR03: Glycosyl transferase family 2	2.3028134319
+UniRef50_R6PR03: Glycosyl transferase family 2|g__Clostridium.s__Clostridium_beijerinckii	2.3028134319
+UniRef50_Q9S358: Anthranilate synthase component 1	2.3028011347
+UniRef50_Q9S358: Anthranilate synthase component 1|g__Acinetobacter.s__Acinetobacter_baumannii	2.0742332973
+UniRef50_Q9S358: Anthranilate synthase component 1|unclassified	0.2285678374
+UniRef50_UPI00047E2083: DNA methyltransferase	2.3026800931
+UniRef50_UPI00047E2083: DNA methyltransferase|unclassified	2.3026800931
+UniRef50_UPI000302F742: hypothetical protein	2.3023499238
+UniRef50_UPI000302F742: hypothetical protein|unclassified	2.3023499238
+UniRef50_A6LZR6	2.3023110490
+UniRef50_A6LZR6|g__Clostridium.s__Clostridium_beijerinckii	2.3023110490
+UniRef50_E3PS54: Chemotaxis protein cheV	2.3019349233
+UniRef50_E3PS54: Chemotaxis protein cheV|g__Clostridium.s__Clostridium_beijerinckii	2.3019349233
+UniRef50_M9RUX7: TonB domain-containing protein	2.3018007817
+UniRef50_M9RUX7: TonB domain-containing protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3018007817
+UniRef50_F4VEV6	2.3017454161
+UniRef50_F4VEV6|unclassified	2.3017454161
+UniRef50_E4BG02: Dinuclear metal center protein, YbgI family	2.3014241622
+UniRef50_E4BG02: Dinuclear metal center protein, YbgI family|g__Propionibacterium.s__Propionibacterium_acnes	2.3014241622
+UniRef50_W0YR49: Acetoacetyl-CoA synthetase	2.3011939335
+UniRef50_W0YR49: Acetoacetyl-CoA synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.3011939335
+UniRef50_W3V2S0	2.3010068535
+UniRef50_W3V2S0|unclassified	2.3010068535
+UniRef50_J0KYV6	2.3009353169
+UniRef50_J0KYV6|unclassified	2.3009353169
+UniRef50_UPI00036E9BD8: hypothetical protein	2.3004472078
+UniRef50_UPI00036E9BD8: hypothetical protein|unclassified	2.3004472078
+UniRef50_A6LRY0	2.3000204197
+UniRef50_A6LRY0|g__Clostridium.s__Clostridium_beijerinckii	2.3000204197
+UniRef50_UPI000474E879: permease IIC component	2.2997255545
+UniRef50_UPI000474E879: permease IIC component|unclassified	2.2997255545
+UniRef50_A6LX69	2.2996340957
+UniRef50_A6LX69|g__Clostridium.s__Clostridium_beijerinckii	2.2996340957
+UniRef50_A0A023XYH0: Chromosome partitioning protein ParB	2.2988505747
+UniRef50_A0A023XYH0: Chromosome partitioning protein ParB|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2988505747
+UniRef50_I2YPJ9: N-acetylgalactosamine permease IIC component 1 domain protein	2.2988505747
+UniRef50_I2YPJ9: N-acetylgalactosamine permease IIC component 1 domain protein|g__Escherichia.s__Escherichia_coli	2.2988505747
+UniRef50_P56793: 50S ribosomal protein L16, chloroplastic	2.2988505747
+UniRef50_P56793: 50S ribosomal protein L16, chloroplastic|g__Clostridium.s__Clostridium_beijerinckii	2.2988505747
+UniRef50_P83221: Peptidyl-prolyl cis-trans isomerase cyp18	2.2988505747
+UniRef50_P83221: Peptidyl-prolyl cis-trans isomerase cyp18|g__Neisseria.s__Neisseria_meningitidis	2.2988505747
+UniRef50_Q1CP27: Transcriptional regulator, Cro/CI family	2.2988505747
+UniRef50_Q1CP27: Transcriptional regulator, Cro/CI family|g__Streptococcus.s__Streptococcus_agalactiae	2.2988505747
+UniRef50_Q1DDE5: D-tyrosyl-tRNA(Tyr) deacylase	2.2988505747
+UniRef50_Q1DDE5: D-tyrosyl-tRNA(Tyr) deacylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2988505747
+UniRef50_R3CWE8: NCS1 nucleoside transporter	2.2988505747
+UniRef50_R3CWE8: NCS1 nucleoside transporter|g__Escherichia.s__Escherichia_coli	2.2988505747
+UniRef50_T1LBI5	2.2988505747
+UniRef50_T1LBI5|unclassified	2.2988505747
+UniRef50_U9H2X5	2.2988505747
+UniRef50_U9H2X5|unclassified	2.2988505747
+UniRef50_A6LX99: Carbohydrate-binding family V/XII	2.2984904473
+UniRef50_A6LX99: Carbohydrate-binding family V/XII|g__Clostridium.s__Clostridium_beijerinckii	2.2984904473
+UniRef50_A0A011T5F4: Endoribonuclease L-PSP	2.2983204851
+UniRef50_A0A011T5F4: Endoribonuclease L-PSP|unclassified	2.2983204851
+UniRef50_Q2J713: Probable dual-specificity RNA methyltransferase RlmN	2.2981214036
+UniRef50_Q2J713: Probable dual-specificity RNA methyltransferase RlmN|g__Propionibacterium.s__Propionibacterium_acnes	2.1409539007
+UniRef50_Q2J713: Probable dual-specificity RNA methyltransferase RlmN|unclassified	0.1571675030
+UniRef50_P43741: DNA polymerase I	2.2975353965
+UniRef50_P43741: DNA polymerase I|g__Neisseria.s__Neisseria_meningitidis	2.2511197838
+UniRef50_P43741: DNA polymerase I|unclassified	0.0464156127
+UniRef50_UPI00042B9F0C	2.2973849687
+UniRef50_UPI00042B9F0C|unclassified	2.2973849687
+UniRef50_R9ZF26: TonB-denpendent receptor	2.2972005460
+UniRef50_R9ZF26: TonB-denpendent receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2972005460
+UniRef50_B9TID4	2.2971917719
+UniRef50_B9TID4|unclassified	2.2971917719
+UniRef50_B9KX51: DSBA oxidoreductase	2.2971391863
+UniRef50_B9KX51: DSBA oxidoreductase|unclassified	2.2971391863
+UniRef50_A3LGV5	2.2967095642
+UniRef50_A3LGV5|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6949152542
+UniRef50_A3LGV5|unclassified	0.6017943100
+UniRef50_UPI0003627344: hypothetical protein	2.2966007923
+UniRef50_UPI0003627344: hypothetical protein|unclassified	2.2966007923
+UniRef50_Q0UJZ9	2.2965563446
+UniRef50_Q0UJZ9|unclassified	2.2965563446
+UniRef50_A8ARE5	2.2962529687
+UniRef50_A8ARE5|unclassified	2.2962529687
+UniRef50_UPI00047B668F: hypothetical protein	2.2961902294
+UniRef50_UPI00047B668F: hypothetical protein|unclassified	2.2961902294
+UniRef50_Q2G6B8	2.2961769165
+UniRef50_Q2G6B8|unclassified	2.2961769165
+UniRef50_Q2S6J2: Uridylate kinase	2.2955416033
+UniRef50_Q2S6J2: Uridylate kinase|g__Clostridium.s__Clostridium_beijerinckii	2.2172949002
+UniRef50_Q2S6J2: Uridylate kinase|unclassified	0.0782467031
+UniRef50_A6LT79: Periplasmic binding protein/LacI transcriptional regulator	2.2955293151
+UniRef50_A6LT79: Periplasmic binding protein/LacI transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	2.2955293151
+UniRef50_Q1DDZ9: UPF0061 protein MXAN_0863	2.2953287549
+UniRef50_Q1DDZ9: UPF0061 protein MXAN_0863|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2953287549
+UniRef50_G6EFH5: Phage tail protein E	2.2953232619
+UniRef50_G6EFH5: Phage tail protein E|unclassified	2.2953232619
+UniRef50_W1V573	2.2953076611
+UniRef50_W1V573|unclassified	2.2953076611
+UniRef50_G7M7S7: Ketopantoate reductase ApbA/PanE domain protein	2.2945556930
+UniRef50_G7M7S7: Ketopantoate reductase ApbA/PanE domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.2945556930
+UniRef50_E3EX58: Inner membrane protein	2.2942093041
+UniRef50_E3EX58: Inner membrane protein|unclassified	2.2942093041
+UniRef50_E3GZR7: C4-dicarboxylate transporter/malic acid transport protein	2.2938431463
+UniRef50_E3GZR7: C4-dicarboxylate transporter/malic acid transport protein|g__Neisseria.s__Neisseria_meningitidis	2.2938431463
+UniRef50_UPI0002378188: extracellular solute-binding protein, partial	2.2937102298
+UniRef50_UPI0002378188: extracellular solute-binding protein, partial|unclassified	2.2937102298
+UniRef50_A1TWV9	2.2935779817
+UniRef50_A1TWV9|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2935779817
+UniRef50_B0VBA7: Transcriptional regulator (IclR family)	2.2935779817
+UniRef50_B0VBA7: Transcriptional regulator (IclR family)|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2935779817
+UniRef50_S5SVI2	2.2935779817
+UniRef50_S5SVI2|unclassified	2.2935779817
+UniRef50_UPI0002BB5277: hypothetical protein	2.2935779817
+UniRef50_UPI0002BB5277: hypothetical protein|unclassified	2.2935779817
+UniRef50_UPI00046386D9: aldehyde-activating protein	2.2934826567
+UniRef50_UPI00046386D9: aldehyde-activating protein|unclassified	2.2934826567
+UniRef50_Q9I3W3	2.2928090369
+UniRef50_Q9I3W3|unclassified	2.2928090369
+UniRef50_C2N394	2.2923245879
+UniRef50_C2N394|unclassified	2.2923245879
+UniRef50_Q46HN8: 3-oxoacyl-[acyl-carrier-protein] synthase 3	2.2919754722
+UniRef50_Q46HN8: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	2.2919754722
+UniRef50_N6K5H0	2.2919220056
+UniRef50_N6K5H0|unclassified	2.2919220056
+UniRef50_V4TA24	2.2914505823
+UniRef50_V4TA24|unclassified	2.2914505823
+UniRef50_V6V4N6	2.2911942555
+UniRef50_V6V4N6|unclassified	2.2911942555
+UniRef50_B7H087: Acetate kinase	2.2910592809
+UniRef50_B7H087: Acetate kinase|g__Acinetobacter.s__Acinetobacter_baumannii	2.2910592809
+UniRef50_UPI00036E7B4E: hypothetical protein	2.2908883943
+UniRef50_UPI00036E7B4E: hypothetical protein|unclassified	2.2908883943
+UniRef50_A0A023S0A7: DcaP-like protein	2.2906805470
+UniRef50_A0A023S0A7: DcaP-like protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.2906805470
+UniRef50_U8XP57: Chemotactic transducer PctC	2.2906107386
+UniRef50_U8XP57: Chemotactic transducer PctC|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2906107386
+UniRef50_UPI0003B791AF: hypothetical protein, partial	2.2903324694
+UniRef50_UPI0003B791AF: hypothetical protein, partial|unclassified	2.2903324694
+UniRef50_UPI00047B502D: membrane protein	2.2901693067
+UniRef50_UPI00047B502D: membrane protein|unclassified	2.2901693067
+UniRef50_Q0VMD9: Putative ribosome biogenesis GTPase RsgA	2.2900160223
+UniRef50_Q0VMD9: Putative ribosome biogenesis GTPase RsgA|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2900160223
+UniRef50_S9UN15	2.2899574978
+UniRef50_S9UN15|unclassified	2.2899574978
+UniRef50_H9A0L4	2.2897470008
+UniRef50_H9A0L4|unclassified	2.2897470008
+UniRef50_UPI000360231B: hypothetical protein	2.2895899382
+UniRef50_UPI000360231B: hypothetical protein|unclassified	2.2895899382
+UniRef50_UPI000328C952: PREDICTED: basic proline-rich protein-like, partial	2.2895828488
+UniRef50_UPI000328C952: PREDICTED: basic proline-rich protein-like, partial|unclassified	2.2895828488
+UniRef50_I6XSN2: Peptidase, M50 family	2.2894528090
+UniRef50_I6XSN2: Peptidase, M50 family|g__Propionibacterium.s__Propionibacterium_acnes	2.2894528090
+UniRef50_Q8D0W8: Sulfate/thiosulfate import ATP-binding protein CysA	2.2893702694
+UniRef50_Q8D0W8: Sulfate/thiosulfate import ATP-binding protein CysA|unclassified	1.2367386904
+UniRef50_Q8D0W8: Sulfate/thiosulfate import ATP-binding protein CysA|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0526315789
+UniRef50_X5ZEE6	2.2892621102
+UniRef50_X5ZEE6|unclassified	2.2892621102
+UniRef50_D8JAP3: ABC transporter	2.2884028127
+UniRef50_D8JAP3: ABC transporter|unclassified	2.2884028127
+UniRef50_B0V8T9	2.2883295195
+UniRef50_B0V8T9|g__Acinetobacter.s__Acinetobacter_baumannii	2.2883295195
+UniRef50_C3AWX8	2.2883295195
+UniRef50_C3AWX8|g__Clostridium.s__Clostridium_beijerinckii	2.2883295195
+UniRef50_G8VQJ8	2.2883295195
+UniRef50_G8VQJ8|g__Propionibacterium.s__Propionibacterium_acnes	2.2883295195
+UniRef50_J9DM15	2.2883295195
+UniRef50_J9DM15|unclassified	2.2883295195
+UniRef50_P39156: Putative sugar phosphate isomerase YwlF	2.2883295195
+UniRef50_P39156: Putative sugar phosphate isomerase YwlF|g__Clostridium.s__Clostridium_beijerinckii	2.2883295195
+UniRef50_R7PVB2	2.2883295195
+UniRef50_R7PVB2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.2883295195
+UniRef50_V5V9H0: SAM-dependent methyltransferase	2.2883295195
+UniRef50_V5V9H0: SAM-dependent methyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	2.2883295195
+UniRef50_B7V5U6	2.2873771315
+UniRef50_B7V5U6|unclassified	2.2873771315
+UniRef50_G6QY59: Regulatory protein RecX	2.2871991427
+UniRef50_G6QY59: Regulatory protein RecX|unclassified	2.2871991427
+UniRef50_F5HTJ7: Phosphopantetheine attachment domain protein	2.2871657562
+UniRef50_F5HTJ7: Phosphopantetheine attachment domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.2871657562
+UniRef50_A4EQX8: Immunogenic protein	2.2869614151
+UniRef50_A4EQX8: Immunogenic protein|unclassified	2.2869614151
+UniRef50_N8WA96	2.2867747811
+UniRef50_N8WA96|g__Acinetobacter.s__Acinetobacter_baumannii	2.2867747811
+UniRef50_Q9JYY8: Ribosomal RNA large subunit methyltransferase K	2.2859355831
+UniRef50_Q9JYY8: Ribosomal RNA large subunit methyltransferase K|g__Neisseria.s__Neisseria_meningitidis	2.2859355831
+UniRef50_UPI0003781C90: hypothetical protein	2.2857674163
+UniRef50_UPI0003781C90: hypothetical protein|unclassified	2.2857674163
+UniRef50_Q9RX12	2.2847475118
+UniRef50_Q9RX12|g__Deinococcus.s__Deinococcus_radiodurans	2.2847475118
+UniRef50_Q7VL09: 8-amino-7-oxononanoate synthase	2.2844328864
+UniRef50_Q7VL09: 8-amino-7-oxononanoate synthase|g__Acinetobacter.s__Acinetobacter_baumannii	1.4064697609
+UniRef50_Q7VL09: 8-amino-7-oxononanoate synthase|g__Neisseria.s__Neisseria_meningitidis	0.8779631255
+UniRef50_UPI000376E080: hypothetical protein, partial	2.2837160741
+UniRef50_UPI000376E080: hypothetical protein, partial|unclassified	2.2837160741
+UniRef50_G8AHE6	2.2836921808
+UniRef50_G8AHE6|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.7953321364
+UniRef50_G8AHE6|unclassified	0.4883600443
+UniRef50_B6IRS5: 50S ribosomal protein L15	2.2831050228
+UniRef50_B6IRS5: 50S ribosomal protein L15|g__Streptococcus.s__Streptococcus_agalactiae	2.2831050228
+UniRef50_L3WM85	2.2831050228
+UniRef50_L3WM85|unclassified	2.2831050228
+UniRef50_N2FEN7: Sugar (Glycoside-Pentoside-Hexuronide) transporter domain protein	2.2831050228
+UniRef50_N2FEN7: Sugar (Glycoside-Pentoside-Hexuronide) transporter domain protein|g__Escherichia.s__Escherichia_coli	2.2831050228
+UniRef50_P36881: Putative phosphotransferase enzyme IIA component YadI	2.2831050228
+UniRef50_P36881: Putative phosphotransferase enzyme IIA component YadI|g__Escherichia.s__Escherichia_coli	2.2831050228
+UniRef50_P37664	2.2831050228
+UniRef50_P37664|g__Escherichia.s__Escherichia_coli	2.2831050228
+UniRef50_Q9RXY1: 50S ribosomal protein L13	2.2831050228
+UniRef50_Q9RXY1: 50S ribosomal protein L13|g__Deinococcus.s__Deinococcus_radiodurans	2.2831050228
+UniRef50_R4RDM8	2.2831050228
+UniRef50_R4RDM8|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2831050228
+UniRef50_T0XBW7	2.2831050228
+UniRef50_T0XBW7|g__Neisseria.s__Neisseria_meningitidis	2.2831050228
+UniRef50_I7B469: Glycosyl transferase, group 1	2.2829807832
+UniRef50_I7B469: Glycosyl transferase, group 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2829807832
+UniRef50_H3USC2	2.2828334095
+UniRef50_H3USC2|unclassified	2.2828334095
+UniRef50_Q8RCZ3	2.2826955791
+UniRef50_Q8RCZ3|g__Clostridium.s__Clostridium_beijerinckii	2.2826955791
+UniRef50_UPI0003B53166: hypothetical protein	2.2823772428
+UniRef50_UPI0003B53166: hypothetical protein|unclassified	2.2823772428
+UniRef50_Q3DCS0	2.2822153437
+UniRef50_Q3DCS0|unclassified	2.2822153437
+UniRef50_A0A023S256: LysR family transcriptional regulator	2.2822034889
+UniRef50_A0A023S256: LysR family transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	2.2822034889
+UniRef50_Q9FCD1: Urease subunit gamma	2.2820223085
+UniRef50_Q9FCD1: Urease subunit gamma|unclassified	2.2820223085
+UniRef50_F3NI62	2.2818461259
+UniRef50_F3NI62|unclassified	2.2818461259
+UniRef50_G9PNM2	2.2813511078
+UniRef50_G9PNM2|unclassified	2.2813511078
+UniRef50_F4LXR7: PTS system transcriptional activator	2.2812762574
+UniRef50_F4LXR7: PTS system transcriptional activator|g__Clostridium.s__Clostridium_beijerinckii	2.2812762574
+UniRef50_UPI0001AF3B52: hypothetical protein, partial	2.2812328905
+UniRef50_UPI0001AF3B52: hypothetical protein, partial|unclassified	2.2812328905
+UniRef50_M0SZR5	2.2807651377
+UniRef50_M0SZR5|unclassified	2.2807651377
+UniRef50_Q6VRN6: Cag17	2.2805017104
+UniRef50_Q6VRN6: Cag17|g__Helicobacter.s__Helicobacter_pylori	2.2805017104
+UniRef50_UPI000225B96A: conjugal transfer protein TraW	2.2800608205
+UniRef50_UPI000225B96A: conjugal transfer protein TraW|unclassified	2.2800608205
+UniRef50_A1AZI3	2.2797781340
+UniRef50_A1AZI3|unclassified	2.2797781340
+UniRef50_W4L2B7: Acetyl-CoA carboxylase biotin carboxyl carrier protein subunit	2.2795867605
+UniRef50_W4L2B7: Acetyl-CoA carboxylase biotin carboxyl carrier protein subunit|unclassified	2.2795867605
+UniRef50_J8VGX4	2.2793643642
+UniRef50_J8VGX4|unclassified	2.2793643642
+UniRef50_UPI00047E508E: light-independent protochlorophyllide reductase subunit B	2.2793534346
+UniRef50_UPI00047E508E: light-independent protochlorophyllide reductase subunit B|unclassified	2.2793534346
+UniRef50_UPI0003711131: hypothetical protein	2.2790979649
+UniRef50_UPI0003711131: hypothetical protein|unclassified	2.2790979649
+UniRef50_H6VX70: Tyrosine recombinase XerC	2.2786382516
+UniRef50_H6VX70: Tyrosine recombinase XerC|g__Acinetobacter.s__Acinetobacter_baumannii	2.2786382516
+UniRef50_Q8XV10: Elongation factor G 1	2.2785689453
+UniRef50_Q8XV10: Elongation factor G 1|g__Helicobacter.s__Helicobacter_pylori	1.0696989436
+UniRef50_Q8XV10: Elongation factor G 1|g__Neisseria.s__Neisseria_meningitidis	0.6361323155
+UniRef50_Q8XV10: Elongation factor G 1|g__Acinetobacter.s__Acinetobacter_baumannii	0.5727376861
+UniRef50_B8IRY9	2.2784470360
+UniRef50_B8IRY9|unclassified	2.2784470360
+UniRef50_A6LTZ5	2.2779043280
+UniRef50_A6LTZ5|g__Clostridium.s__Clostridium_beijerinckii	2.2779043280
+UniRef50_H4MXR1: GadE transcriptional activator	2.2779043280
+UniRef50_H4MXR1: GadE transcriptional activator|g__Escherichia.s__Escherichia_coli	2.2779043280
+UniRef50_M9VCC8	2.2779043280
+UniRef50_M9VCC8|g__Propionibacterium.s__Propionibacterium_acnes	2.2779043280
+UniRef50_Q02HV7	2.2779043280
+UniRef50_Q02HV7|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2779043280
+UniRef50_Q8U0Z8: Probable membrane-bound hydrogenase subunit mbhJ	2.2779043280
+UniRef50_Q8U0Z8: Probable membrane-bound hydrogenase subunit mbhJ|unclassified	2.2779043280
+UniRef50_U5MWY2	2.2779043280
+UniRef50_U5MWY2|g__Clostridium.s__Clostridium_beijerinckii	2.2779043280
+UniRef50_B5XJ20: Bifunctional purine biosynthesis protein PurH	2.2778176185
+UniRef50_B5XJ20: Bifunctional purine biosynthesis protein PurH|g__Streptococcus.s__Streptococcus_agalactiae	2.2406694682
+UniRef50_B5XJ20: Bifunctional purine biosynthesis protein PurH|unclassified	0.0371481503
+UniRef50_Q87Y83: D-isomer specific 2-hydroxyacid dehydrogenase family protein	2.2777302981
+UniRef50_Q87Y83: D-isomer specific 2-hydroxyacid dehydrogenase family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2777302981
+UniRef50_X2XEE8	2.2776104709
+UniRef50_X2XEE8|unclassified	2.2776104709
+UniRef50_UPI0003B576F5: hypothetical protein	2.2773396922
+UniRef50_UPI0003B576F5: hypothetical protein|unclassified	2.2773396922
+UniRef50_B2UZY6: Penicillin-binding protein	2.2772734760
+UniRef50_B2UZY6: Penicillin-binding protein|g__Clostridium.s__Clostridium_beijerinckii	2.2772734760
+UniRef50_Q3JN62: Colicin V processing peptidase	2.2771912769
+UniRef50_Q3JN62: Colicin V processing peptidase|g__Acinetobacter.s__Acinetobacter_baumannii	2.2771912769
+UniRef50_X0Y200: Marine sediment metagenome DNA, contig: S01H1_S28920 (Fragment)	2.2771039430
+UniRef50_X0Y200: Marine sediment metagenome DNA, contig: S01H1_S28920 (Fragment)|unclassified	2.2771039430
+UniRef50_F2A6H7	2.2769151055
+UniRef50_F2A6H7|unclassified	2.2769151055
+UniRef50_C7D7W3	2.2766686759
+UniRef50_C7D7W3|unclassified	2.2766686759
+UniRef50_G7M4Z3: Transglutaminase domain-containing protein	2.2762806953
+UniRef50_G7M4Z3: Transglutaminase domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	2.2762806953
+UniRef50_T1ZWS9: Site-specific recombinase, phage integrase family	2.2761534494
+UniRef50_T1ZWS9: Site-specific recombinase, phage integrase family|g__Streptococcus.s__Streptococcus_agalactiae	2.2761534494
+UniRef50_R9ABJ3	2.2753405449
+UniRef50_R9ABJ3|unclassified	2.2753405449
+UniRef50_UPI0004722DE4: hypothetical protein	2.2753339045
+UniRef50_UPI0004722DE4: hypothetical protein|unclassified	2.2753339045
+UniRef50_B0VC22: Alpha-ketoglutarate-dependent taurine dioxygenase (2-aminoethanesulfonate dioxygenase) (Sulfate starvation-induced protein 3) (SSI3)	2.2753128555
+UniRef50_B0VC22: Alpha-ketoglutarate-dependent taurine dioxygenase (2-aminoethanesulfonate dioxygenase) (Sulfate starvation-induced protein 3) (SSI3)|g__Acinetobacter.s__Acinetobacter_baumannii	2.2753128555
+UniRef50_Q9RUZ9	2.2751034047
+UniRef50_Q9RUZ9|g__Deinococcus.s__Deinococcus_radiodurans	2.2751034047
+UniRef50_A0A024C3E3: Chemotaxis protein	2.2739357513
+UniRef50_A0A024C3E3: Chemotaxis protein|g__Helicobacter.s__Helicobacter_pylori	2.2739357513
+UniRef50_Q9RS47: Uracil permease	2.2737577408
+UniRef50_Q9RS47: Uracil permease|g__Deinococcus.s__Deinococcus_radiodurans	2.2737577408
+UniRef50_V4R4Y9: AraC family transcriptional regulator	2.2730444213
+UniRef50_V4R4Y9: AraC family transcriptional regulator|unclassified	2.2730444213
+UniRef50_M9VE40: DNA polymerase III subunit beta	2.2728332176
+UniRef50_M9VE40: DNA polymerase III subunit beta|g__Propionibacterium.s__Propionibacterium_acnes	2.2728332176
+UniRef50_B7KZA9: Transcriptional regulator, HxlR family	2.2727272727
+UniRef50_B7KZA9: Transcriptional regulator, HxlR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2727272727
+UniRef50_C1DQE7: KHG/KDPG aldolase	2.2727272727
+UniRef50_C1DQE7: KHG/KDPG aldolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2727272727
+UniRef50_I0ET87	2.2727272727
+UniRef50_I0ET87|g__Helicobacter.s__Helicobacter_pylori	2.2727272727
+UniRef50_K7SJ58: Cof-like hydrolase	2.2727272727
+UniRef50_K7SJ58: Cof-like hydrolase|g__Propionibacterium.s__Propionibacterium_acnes	2.2727272727
+UniRef50_Q0RE55	2.2727272727
+UniRef50_Q0RE55|unclassified	2.2727272727
+UniRef50_T0W257	2.2727272727
+UniRef50_T0W257|g__Neisseria.s__Neisseria_meningitidis	2.2727272727
+UniRef50_W0W9C8: Ribosomal RNA small subunit methyltransferase J	2.2727272727
+UniRef50_W0W9C8: Ribosomal RNA small subunit methyltransferase J|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2727272727
+UniRef50_D6B6K5: Deaminase	2.2724163708
+UniRef50_D6B6K5: Deaminase|unclassified	2.2724163708
+UniRef50_U7PB07	2.2721736782
+UniRef50_U7PB07|unclassified	2.2721736782
+UniRef50_UPI00031C1838: hypothetical protein	2.2716221864
+UniRef50_UPI00031C1838: hypothetical protein|unclassified	2.2716221864
+UniRef50_D9UK32	2.2715945404
+UniRef50_D9UK32|unclassified	2.2715945404
+UniRef50_D0D9J4	2.2715496626
+UniRef50_D0D9J4|unclassified	2.2715496626
+UniRef50_A4WTZ5	2.2708533548
+UniRef50_A4WTZ5|unclassified	2.2708533548
+UniRef50_R5NV67: tRNA-dihydrouridine synthase	2.2707119169
+UniRef50_R5NV67: tRNA-dihydrouridine synthase|g__Clostridium.s__Clostridium_beijerinckii	2.2707119169
+UniRef50_Z8TV59	2.2707073822
+UniRef50_Z8TV59|unclassified	2.2707073822
+UniRef50_S0EYL5: Sugar phosphate isomerases/epimerases	2.2700852080
+UniRef50_S0EYL5: Sugar phosphate isomerases/epimerases|g__Clostridium.s__Clostridium_beijerinckii	2.2700852080
+UniRef50_A6M0J7: Methyl-accepting chemotaxis sensory transducer	2.2697139164
+UniRef50_A6M0J7: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	2.2697139164
+UniRef50_UPI00037E8A3A: hypothetical protein, partial	2.2694271538
+UniRef50_UPI00037E8A3A: hypothetical protein, partial|unclassified	2.2694271538
+UniRef50_W1U3S2	2.2683291032
+UniRef50_W1U3S2|unclassified	2.2683291032
+UniRef50_I2RF87	2.2682959888
+UniRef50_I2RF87|unclassified	2.2682959888
+UniRef50_A6UY58	2.2679228818
+UniRef50_A6UY58|unclassified	2.2679228818
+UniRef50_A1B581: Transcriptional regulator, MarR family	2.2675736961
+UniRef50_A1B581: Transcriptional regulator, MarR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.2675736961
+UniRef50_A6LU62	2.2675736961
+UniRef50_A6LU62|g__Clostridium.s__Clostridium_beijerinckii	2.2675736961
+UniRef50_A6LVV3: GCN5-related N-acetyltransferase	2.2675736961
+UniRef50_A6LVV3: GCN5-related N-acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	2.2675736961
+UniRef50_C5AUW6	2.2675736961
+UniRef50_C5AUW6|unclassified	2.2675736961
+UniRef50_D8JGQ3: Acetyltransferase (GNAT) family protein	2.2675736961
+UniRef50_D8JGQ3: Acetyltransferase (GNAT) family protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.2675736961
+UniRef50_F0RMH9: Thioredoxin reductase	2.2675736961
+UniRef50_F0RMH9: Thioredoxin reductase|g__Deinococcus.s__Deinococcus_radiodurans	2.2675736961
+UniRef50_G0DXM7	2.2675736961
+UniRef50_G0DXM7|g__Propionibacterium.s__Propionibacterium_acnes	2.2675736961
+UniRef50_Q2T831: Transcriptional regulator, MarR family	2.2675736961
+UniRef50_Q2T831: Transcriptional regulator, MarR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2675736961
+UniRef50_Q32FA3	2.2675736961
+UniRef50_Q32FA3|g__Escherichia.s__Escherichia_coli	2.2675736961
+UniRef50_Q9ZLB9: Probable L-asparaginase	2.2675736961
+UniRef50_Q9ZLB9: Probable L-asparaginase|g__Helicobacter.s__Helicobacter_pylori	2.2675736961
+UniRef50_R4R9J2: Protein MoaF	2.2675736961
+UniRef50_R4R9J2: Protein MoaF|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2675736961
+UniRef50_S9MC23	2.2675736961
+UniRef50_S9MC23|g__Streptococcus.s__Streptococcus_agalactiae	2.2675736961
+UniRef50_U3T2N9	2.2675736961
+UniRef50_U3T2N9|g__Acinetobacter.s__Acinetobacter_baumannii	2.2675736961
+UniRef50_W4MMJ9	2.2675736961
+UniRef50_W4MMJ9|unclassified	2.2675736961
+UniRef50_UPI000474A99F: porin	2.2672254738
+UniRef50_UPI000474A99F: porin|unclassified	2.2672254738
+UniRef50_M9SEQ2	2.2666661701
+UniRef50_M9SEQ2|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2666661701
+UniRef50_UPI0004752009: sorbosone dehydrogenase	2.2662442103
+UniRef50_UPI0004752009: sorbosone dehydrogenase|unclassified	2.2662442103
+UniRef50_S0AB89: FAD-dependent pyridine nucleotide-disulfide oxidoreductase	2.2661712218
+UniRef50_S0AB89: FAD-dependent pyridine nucleotide-disulfide oxidoreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2661712218
+UniRef50_O86793: tRNA N6-adenosine threonylcarbamoyltransferase	2.2649775738
+UniRef50_O86793: tRNA N6-adenosine threonylcarbamoyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	2.0899759773
+UniRef50_O86793: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.1750015965
+UniRef50_F4TTA9: Regulatory protein, GntR family (Fragment)	2.2649041553
+UniRef50_F4TTA9: Regulatory protein, GntR family (Fragment)|unclassified	2.2649041553
+UniRef50_Q21TR5: Putative ribose/galactose/methyl galactoside import ATP-binding protein	2.2647122734
+UniRef50_Q21TR5: Putative ribose/galactose/methyl galactoside import ATP-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	1.8111848031
+UniRef50_Q21TR5: Putative ribose/galactose/methyl galactoside import ATP-binding protein|unclassified	0.4535274704
+UniRef50_Q1GMD1: Probable chemoreceptor glutamine deamidase CheD 1	2.2647040081
+UniRef50_Q1GMD1: Probable chemoreceptor glutamine deamidase CheD 1|unclassified	2.2647040081
+UniRef50_Z9FA98	2.2643039313
+UniRef50_Z9FA98|unclassified	2.2643039313
+UniRef50_K8NJB2	2.2642739815
+UniRef50_K8NJB2|unclassified	2.2642739815
+UniRef50_E8U679: S-layer-like protein array-related protein	2.2640983238
+UniRef50_E8U679: S-layer-like protein array-related protein|g__Deinococcus.s__Deinococcus_radiodurans	2.2640983238
+UniRef50_P22036: Magnesium-transporting ATPase, P-type 1	2.2639865164
+UniRef50_P22036: Magnesium-transporting ATPase, P-type 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0993394393
+UniRef50_P22036: Magnesium-transporting ATPase, P-type 1|unclassified	0.1646470771
+UniRef50_W7CSZ6: Peptide chain release factor 2	2.2637812385
+UniRef50_W7CSZ6: Peptide chain release factor 2|unclassified	2.2637812385
+UniRef50_A6M1I0: Extracellular solute-binding protein, family 3	2.2637245507
+UniRef50_A6M1I0: Extracellular solute-binding protein, family 3|g__Clostridium.s__Clostridium_beijerinckii	2.2637245507
+UniRef50_UPI000464345D: hypothetical protein	2.2636414520
+UniRef50_UPI000464345D: hypothetical protein|unclassified	2.2636414520
+UniRef50_H7CSE8: GntR family transcriptional regulator	2.2636212754
+UniRef50_H7CSE8: GntR family transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	2.2636212754
+UniRef50_F8LV80: IS861, transposase OrfB	2.2636103477
+UniRef50_F8LV80: IS861, transposase OrfB|unclassified	2.2636103477
+UniRef50_U5MV88: Protein-tyrosine phosphatase	2.2631165039
+UniRef50_U5MV88: Protein-tyrosine phosphatase|g__Clostridium.s__Clostridium_beijerinckii	2.2631165039
+UniRef50_X9XTH5	2.2629681194
+UniRef50_X9XTH5|unclassified	2.2629681194
+UniRef50_B8EQA1: Alkanesulfonate monooxygenase	2.2629588760
+UniRef50_B8EQA1: Alkanesulfonate monooxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2629588760
+UniRef50_E8U932: UvrD/REP helicase	2.2629166258
+UniRef50_E8U932: UvrD/REP helicase|g__Deinococcus.s__Deinococcus_radiodurans	2.2629166258
+UniRef50_E2CI08: Membrane-bound lytic murein transglycosylase A	2.2626066723
+UniRef50_E2CI08: Membrane-bound lytic murein transglycosylase A|unclassified	2.2626066723
+UniRef50_Q9RZE6: Succinate-semialdehyde dehydrogenase	2.2626031513
+UniRef50_Q9RZE6: Succinate-semialdehyde dehydrogenase|g__Deinococcus.s__Deinococcus_radiodurans	2.2626031513
+UniRef50_V4IZ77: UPF0125 protein N838_22245	2.2624675992
+UniRef50_V4IZ77: UPF0125 protein N838_22245|unclassified	2.2624675992
+UniRef50_C5VTT8: tRNA-specific adenosine deaminase	2.2624434389
+UniRef50_C5VTT8: tRNA-specific adenosine deaminase|g__Clostridium.s__Clostridium_beijerinckii	2.2624434389
+UniRef50_D8GJE1: Predicted transcriptional regulator, marR family	2.2624434389
+UniRef50_D8GJE1: Predicted transcriptional regulator, marR family|g__Clostridium.s__Clostridium_beijerinckii	2.2624434389
+UniRef50_F0JTZ1: DNA-binding transcriptional activator, co-regulator with RcsB	2.2624434389
+UniRef50_F0JTZ1: DNA-binding transcriptional activator, co-regulator with RcsB|g__Escherichia.s__Escherichia_coli	2.2624434389
+UniRef50_F4AEJ0: NifU-like protein	2.2624434389
+UniRef50_F4AEJ0: NifU-like protein|g__Streptococcus.s__Streptococcus_agalactiae	2.2624434389
+UniRef50_G4LM52	2.2624434389
+UniRef50_G4LM52|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2624434389
+UniRef50_G7M4G4: GCN5-related N-acetyltransferase	2.2624434389
+UniRef50_G7M4G4: GCN5-related N-acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	2.2624434389
+UniRef50_G7U4K0: Hydrolase, NUDIX family protein	2.2624434389
+UniRef50_G7U4K0: Hydrolase, NUDIX family protein|g__Propionibacterium.s__Propionibacterium_acnes	2.2624434389
+UniRef50_Q6FCN6: tRNA (guanine-N(7)-)-methyltransferase	2.2624434389
+UniRef50_Q6FCN6: tRNA (guanine-N(7)-)-methyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	2.2624434389
+UniRef50_U3TAS5	2.2624434389
+UniRef50_U3TAS5|g__Acinetobacter.s__Acinetobacter_baumannii	2.2624434389
+UniRef50_Q4FQM5: Possible acyl-CoA dehydrogenase	2.2622011800
+UniRef50_Q4FQM5: Possible acyl-CoA dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	2.2622011800
+UniRef50_UPI000382E998: hypothetical protein	2.2610196843
+UniRef50_UPI000382E998: hypothetical protein|unclassified	2.2610196843
+UniRef50_B2TIC3: DNA mismatch repair protein MutS	2.2606532694
+UniRef50_B2TIC3: DNA mismatch repair protein MutS|g__Clostridium.s__Clostridium_beijerinckii	2.2606532694
+UniRef50_UPI00037EE754: hypothetical protein	2.2606085997
+UniRef50_UPI00037EE754: hypothetical protein|unclassified	2.2606085997
+UniRef50_Q07QX1: NADH dehydrogenase (Quinone)	2.2600701375
+UniRef50_Q07QX1: NADH dehydrogenase (Quinone)|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.2600701375
+UniRef50_R1CA35	2.2599138953
+UniRef50_R1CA35|unclassified	2.2599138953
+UniRef50_A6LU63: Metallophosphoesterase	2.2598415796
+UniRef50_A6LU63: Metallophosphoesterase|g__Clostridium.s__Clostridium_beijerinckii	2.2598415796
+UniRef50_F0KPZ6: Oligopeptidase A	2.2596521921
+UniRef50_F0KPZ6: Oligopeptidase A|g__Acinetobacter.s__Acinetobacter_baumannii	2.2596521921
+UniRef50_A3M3L5: Dichlorophenol hydroxylase	2.2589215983
+UniRef50_A3M3L5: Dichlorophenol hydroxylase|g__Acinetobacter.s__Acinetobacter_baumannii	2.2589215983
+UniRef50_G6EQ26: SSU ribosomal protein S1P	2.2583749132
+UniRef50_G6EQ26: SSU ribosomal protein S1P|g__Streptococcus.s__Streptococcus_mutans	2.2583749132
+UniRef50_D0D4M8: Transposase, IS4 family protein	2.2581941888
+UniRef50_D0D4M8: Transposase, IS4 family protein|unclassified	2.2581941888
+UniRef50_UPI00038219EB: hypothetical protein	2.2579001019
+UniRef50_UPI00038219EB: hypothetical protein|unclassified	2.2579001019
+UniRef50_E8PH61: AdeT, RND type efflux pump	2.2576006729
+UniRef50_E8PH61: AdeT, RND type efflux pump|g__Acinetobacter.s__Acinetobacter_baumannii	2.2576006729
+UniRef50_A7FAZ1	2.2573363431
+UniRef50_A7FAZ1|g__Acinetobacter.s__Acinetobacter_baumannii	2.2573363431
+UniRef50_F2EY33: Vitamin B12 binding protein BtuF	2.2573363431
+UniRef50_F2EY33: Vitamin B12 binding protein BtuF|g__Escherichia.s__Escherichia_coli	2.2573363431
+UniRef50_Q09067: Urease accessory protein UreH	2.2573363431
+UniRef50_Q09067: Urease accessory protein UreH|g__Helicobacter.s__Helicobacter_pylori	2.2573363431
+UniRef50_C7NCF6: 2-nitropropane dioxygenase NPD	2.2570499842
+UniRef50_C7NCF6: 2-nitropropane dioxygenase NPD|g__Helicobacter.s__Helicobacter_pylori	2.2570499842
+UniRef50_A4VZ41: ATP-dependent exoDNAse (Exonuclease V), alpha subunit-helicase superfamily I member	2.2569622687
+UniRef50_A4VZ41: ATP-dependent exoDNAse (Exonuclease V), alpha subunit-helicase superfamily I member|g__Streptococcus.s__Streptococcus_agalactiae	2.2569622687
+UniRef50_A0A011PY56: Putative acetyltransferase	2.2567874165
+UniRef50_A0A011PY56: Putative acetyltransferase|unclassified	2.2567874165
+UniRef50_K2GDX3	2.2564421311
+UniRef50_K2GDX3|unclassified	2.2564421311
+UniRef50_F3U4A0: RND family efflux transporter MFP subunit	2.2560265822
+UniRef50_F3U4A0: RND family efflux transporter MFP subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.2560265822
+UniRef50_U5MXH4: DNA helicase, Rad3	2.2553320229
+UniRef50_U5MXH4: DNA helicase, Rad3|g__Clostridium.s__Clostridium_beijerinckii	2.2553320229
+UniRef50_UPI00046744B6: ABC transporter permease, partial	2.2552188819
+UniRef50_UPI00046744B6: ABC transporter permease, partial|unclassified	2.2552188819
+UniRef50_D3EXZ1: Truncated amidase, phage associated	2.2551738131
+UniRef50_D3EXZ1: Truncated amidase, phage associated|unclassified	2.2551738131
+UniRef50_E7SW38	2.2551464264
+UniRef50_E7SW38|unclassified	2.2551464264
+UniRef50_C1N9N9: Predicted protein	2.2551440345
+UniRef50_C1N9N9: Predicted protein|unclassified	2.2551440345
+UniRef50_U5MZ96: Sulfate adenylyltransferase subunit 1	2.2551040064
+UniRef50_U5MZ96: Sulfate adenylyltransferase subunit 1|g__Clostridium.s__Clostridium_beijerinckii	2.2551040064
+UniRef50_UPI0004666BD4: hypothetical protein	2.2538776683
+UniRef50_UPI0004666BD4: hypothetical protein|unclassified	2.2538776683
+UniRef50_A0A024L6L4: Conserved domain protein	2.2534574429
+UniRef50_A0A024L6L4: Conserved domain protein|unclassified	2.2534574429
+UniRef50_A6LX32	2.2526044576
+UniRef50_A6LX32|g__Clostridium.s__Clostridium_beijerinckii	2.2526044576
+UniRef50_Q9XAS7: BPS protein	2.2525636241
+UniRef50_Q9XAS7: BPS protein|g__Streptococcus.s__Streptococcus_agalactiae	2.2525636241
+UniRef50_A0K257: GCN5-related N-acetyltransferase	2.2522522523
+UniRef50_A0K257: GCN5-related N-acetyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.2522522523
+UniRef50_D4GIG3	2.2522522523
+UniRef50_D4GIG3|g__Escherichia.s__Escherichia_coli	2.2522522523
+UniRef50_Q5F507	2.2522522523
+UniRef50_Q5F507|g__Neisseria.s__Neisseria_meningitidis	2.2522522523
+UniRef50_Q6A8C6: ATP synthase gamma chain	2.2522522523
+UniRef50_Q6A8C6: ATP synthase gamma chain|g__Propionibacterium.s__Propionibacterium_acnes	2.2522522523
+UniRef50_R9NQT1: Mannitol repressor protein	2.2522522523
+UniRef50_R9NQT1: Mannitol repressor protein|g__Escherichia.s__Escherichia_coli	2.2522522523
+UniRef50_W7DGX3: Bleomycin resistance protein	2.2510991596
+UniRef50_W7DGX3: Bleomycin resistance protein|unclassified	2.2510991596
+UniRef50_UPI0003B67F78: large conductance mechanosensitive channel protein MscL	2.2503034664
+UniRef50_UPI0003B67F78: large conductance mechanosensitive channel protein MscL|unclassified	2.2503034664
+UniRef50_UPI000375AE50: hypothetical protein	2.2501444071
+UniRef50_UPI000375AE50: hypothetical protein|unclassified	2.2501444071
+UniRef50_A6M0N3: Iron-containing alcohol dehydrogenase	2.2500409595
+UniRef50_A6M0N3: Iron-containing alcohol dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	2.2500409595
+UniRef50_A1B687	2.2500265679
+UniRef50_A1B687|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.2500265679
+UniRef50_C2DNC2	2.2498418089
+UniRef50_C2DNC2|unclassified	2.2498418089
+UniRef50_L6QYD6: MR-MLE family protein	2.2493949685
+UniRef50_L6QYD6: MR-MLE family protein|unclassified	2.2493949685
+UniRef50_UPI00039BF8F5: hypothetical protein	2.2490402961
+UniRef50_UPI00039BF8F5: hypothetical protein|unclassified	2.2490402961
+UniRef50_Q2RWR9: Light-independent protochlorophyllide reductase subunit B	2.2478567812
+UniRef50_Q2RWR9: Light-independent protochlorophyllide reductase subunit B|unclassified	2.2478567812
+UniRef50_F9FAZ9: ATP-dependent Clp protease proteolytic subunit	2.2471910112
+UniRef50_F9FAZ9: ATP-dependent Clp protease proteolytic subunit|g__Clostridium.s__Clostridium_beijerinckii	2.2471910112
+UniRef50_Q9RVC9: UPF0176 protein DR_1100	2.2471910112
+UniRef50_Q9RVC9: UPF0176 protein DR_1100|g__Deinococcus.s__Deinococcus_radiodurans	2.2471910112
+UniRef50_T0V279: Phage integrase	2.2471910112
+UniRef50_T0V279: Phage integrase|g__Streptococcus.s__Streptococcus_agalactiae	2.2471910112
+UniRef50_V5SU68: Hydrolase	2.2471910112
+UniRef50_V5SU68: Hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2471910112
+UniRef50_UPI00046AC30D: histidine kinase	2.2465545483
+UniRef50_UPI00046AC30D: histidine kinase|unclassified	2.2465545483
+UniRef50_UPI0004296A6B: hypothetical protein	2.2465279094
+UniRef50_UPI0004296A6B: hypothetical protein|unclassified	2.2465279094
+UniRef50_A0A059LAV6	2.2461094407
+UniRef50_A0A059LAV6|unclassified	2.2461094407
+UniRef50_E5U188	2.2459694557
+UniRef50_E5U188|unclassified	2.2459694557
+UniRef50_G8V9S2: Protease	2.2458628842
+UniRef50_G8V9S2: Protease|g__Propionibacterium.s__Propionibacterium_acnes	2.2458628842
+UniRef50_UPI0003699F3D: hypothetical protein	2.2457904864
+UniRef50_UPI0003699F3D: hypothetical protein|unclassified	2.2457904864
+UniRef50_D5AUB5: Membrane protein, putative	2.2457300909
+UniRef50_D5AUB5: Membrane protein, putative|unclassified	2.2457300909
+UniRef50_Q8E0W8: Prophage LambdaSa1, minor structural protein, putative	2.2456173496
+UniRef50_Q8E0W8: Prophage LambdaSa1, minor structural protein, putative|g__Streptococcus.s__Streptococcus_agalactiae	2.2456173496
+UniRef50_UPI0003626300: DNA-binding protein, partial	2.2456056430
+UniRef50_UPI0003626300: DNA-binding protein, partial|unclassified	2.2456056430
+UniRef50_UPI0002491D69: glycine/betaine/carnitine ABC transporter, ATP-binding subunit(ProV)	2.2448140198
+UniRef50_UPI0002491D69: glycine/betaine/carnitine ABC transporter, ATP-binding subunit(ProV)|unclassified	2.2448140198
+UniRef50_A6LZX4	2.2447141517
+UniRef50_A6LZX4|g__Clostridium.s__Clostridium_beijerinckii	2.2447141517
+UniRef50_C8X7N2	2.2444611686
+UniRef50_C8X7N2|unclassified	2.2444611686
+UniRef50_B9TJP3	2.2444328737
+UniRef50_B9TJP3|unclassified	2.2444328737
+UniRef50_N6VEV1	2.2442973285
+UniRef50_N6VEV1|unclassified	2.2442973285
+UniRef50_D9R0R8: Flavodoxin/nitric oxide synthase	2.2442753859
+UniRef50_D9R0R8: Flavodoxin/nitric oxide synthase|g__Clostridium.s__Clostridium_beijerinckii	2.2442753859
+UniRef50_A0ZZN9: Aspartate-semialdehyde dehydrogenase	2.2437064474
+UniRef50_A0ZZN9: Aspartate-semialdehyde dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	2.2437064474
+UniRef50_A6LZ67: Methyl-accepting chemotaxis sensory transducer	2.2432296723
+UniRef50_A6LZ67: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	2.2432296723
+UniRef50_Q79BD2	2.2431631656
+UniRef50_Q79BD2|unclassified	2.2431631656
+UniRef50_UPI0001DD0925: bile acid:sodium symporter, partial	2.2427073344
+UniRef50_UPI0001DD0925: bile acid:sodium symporter, partial|unclassified	2.2427073344
+UniRef50_D7GE62: ATP-dependent helicase	2.2426677022
+UniRef50_D7GE62: ATP-dependent helicase|g__Propionibacterium.s__Propionibacterium_acnes	2.2426677022
+UniRef50_A3K289	2.2426455468
+UniRef50_A3K289|unclassified	2.2426455468
+UniRef50_B7ITF9: NADPH dehydrogenase	2.2426447259
+UniRef50_B7ITF9: NADPH dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	2.1023380648
+UniRef50_B7ITF9: NADPH dehydrogenase|unclassified	0.1403066611
+UniRef50_F0D4F8	2.2425459081
+UniRef50_F0D4F8|unclassified	2.2425459081
+UniRef50_A1B316: Pseudouridine-5'-phosphate glycosidase	2.2421524664
+UniRef50_A1B316: Pseudouridine-5'-phosphate glycosidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.2421524664
+UniRef50_A3MA53	2.2421524664
+UniRef50_A3MA53|g__Acinetobacter.s__Acinetobacter_baumannii	2.2421524664
+UniRef50_D9PUC8	2.2421524664
+UniRef50_D9PUC8|unclassified	2.2421524664
+UniRef50_J0H1Z5: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase family protein	2.2421524664
+UniRef50_J0H1Z5: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	2.2421524664
+UniRef50_J4G1L0	2.2421524664
+UniRef50_J4G1L0|unclassified	2.2421524664
+UniRef50_Q9ZJ81: NAD kinase	2.2421524664
+UniRef50_Q9ZJ81: NAD kinase|g__Helicobacter.s__Helicobacter_pylori	2.2421524664
+UniRef50_UPI00045473C2: PREDICTED: glycoprotein Xg	2.2421524664
+UniRef50_UPI00045473C2: PREDICTED: glycoprotein Xg|unclassified	2.2421524664
+UniRef50_Z7FAV7	2.2419987799
+UniRef50_Z7FAV7|unclassified	2.2419987799
+UniRef50_A6LYV3: Putative cell wall binding repeat-containing protein	2.2419255134
+UniRef50_A6LYV3: Putative cell wall binding repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	2.2419255134
+UniRef50_R6FXN6: Pseudouridine synthase	2.2414879964
+UniRef50_R6FXN6: Pseudouridine synthase|g__Clostridium.s__Clostridium_beijerinckii	2.2414879964
+UniRef50_M9RJY6	2.2414411181
+UniRef50_M9RJY6|unclassified	2.2414411181
+UniRef50_W6LYR5	2.2411128622
+UniRef50_W6LYR5|unclassified	2.2411128622
+UniRef50_UPI00041CCB11: sugar ABC transporter permease	2.2408129055
+UniRef50_UPI00041CCB11: sugar ABC transporter permease|unclassified	2.2408129055
+UniRef50_UPI0003C12083: PREDICTED: NADH-ubiquinone oxidoreductase chain 6-like	2.2407780135
+UniRef50_UPI0003C12083: PREDICTED: NADH-ubiquinone oxidoreductase chain 6-like|unclassified	2.2407780135
+UniRef50_A3PMH2: Chromosomal replication initiator, DnaA	2.2402034277
+UniRef50_A3PMH2: Chromosomal replication initiator, DnaA|unclassified	2.2402034277
+UniRef50_UPI00041516F3: chemotaxis protein CheW	2.2396134471
+UniRef50_UPI00041516F3: chemotaxis protein CheW|unclassified	2.2396134471
+UniRef50_UPI00047D9A66: Crp/Fnr family transcriptional regulator	2.2390776433
+UniRef50_UPI00047D9A66: Crp/Fnr family transcriptional regulator|unclassified	2.2390776433
+UniRef50_B0VV20: p-aminobenzoate synthetase	2.2390421127
+UniRef50_B0VV20: p-aminobenzoate synthetase|g__Acinetobacter.s__Acinetobacter_baumannii	2.2390421127
+UniRef50_UPI0003C7E202: hypothetical protein	2.2390099217
+UniRef50_UPI0003C7E202: hypothetical protein|unclassified	2.2390099217
+UniRef50_UPI00016C4C1E: ATP-dependent Clp protease adaptor protein ClpS	2.2388011027
+UniRef50_UPI00016C4C1E: ATP-dependent Clp protease adaptor protein ClpS|unclassified	2.2388011027
+UniRef50_S5YDU3	2.2382172722
+UniRef50_S5YDU3|unclassified	2.2382172722
+UniRef50_A4VT34: ABC-type amino acid transport/signal transduction system, periplasmic component/domain	2.2371364653
+UniRef50_A4VT34: ABC-type amino acid transport/signal transduction system, periplasmic component/domain|g__Streptococcus.s__Streptococcus_agalactiae	2.2371364653
+UniRef50_B1R255: Cell wall binding repeat domain protein	2.2371364653
+UniRef50_B1R255: Cell wall binding repeat domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.2371364653
+UniRef50_D3HLH2	2.2371364653
+UniRef50_D3HLH2|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2371364653
+UniRef50_F0KHF7	2.2371364653
+UniRef50_F0KHF7|g__Acinetobacter.s__Acinetobacter_baumannii	2.2371364653
+UniRef50_F0LCV8: Transcriptional regulator, AsnC family	2.2371364653
+UniRef50_F0LCV8: Transcriptional regulator, AsnC family|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.2371364653
+UniRef50_F8IRJ3: TraG/TraD family protein	2.2371364653
+UniRef50_F8IRJ3: TraG/TraD family protein|g__Streptococcus.s__Streptococcus_agalactiae	2.2371364653
+UniRef50_X5K322	2.2371364653
+UniRef50_X5K322|g__Streptococcus.s__Streptococcus_agalactiae	2.2371364653
+UniRef50_Q9RWY0	2.2370941728
+UniRef50_Q9RWY0|g__Deinococcus.s__Deinococcus_radiodurans	2.2370941728
+UniRef50_R9ZBX3: Peptidase	2.2368568293
+UniRef50_R9ZBX3: Peptidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2368568293
+UniRef50_D2YBW7: Diheme cytochrome c napB	2.2364598382
+UniRef50_D2YBW7: Diheme cytochrome c napB|unclassified	2.2364598382
+UniRef50_Q1GD82	2.2364131862
+UniRef50_Q1GD82|unclassified	2.2364131862
+UniRef50_B4VB07: Type I PKS	2.2363620302
+UniRef50_B4VB07: Type I PKS|unclassified	2.2363620302
+UniRef50_W5VAG4	2.2362083740
+UniRef50_W5VAG4|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2362083740
+UniRef50_Z9JRW6	2.2362010465
+UniRef50_Z9JRW6|unclassified	2.2362010465
+UniRef50_J7QKX2: Transposase domain protein	2.2361949659
+UniRef50_J7QKX2: Transposase domain protein|unclassified	2.2361949659
+UniRef50_A0A032PLK8	2.2360468024
+UniRef50_A0A032PLK8|unclassified	2.2360468024
+UniRef50_G8VQH1: ATP-dependent helicase	2.2355718956
+UniRef50_G8VQH1: ATP-dependent helicase|g__Propionibacterium.s__Propionibacterium_acnes	2.2355718956
+UniRef50_B3PWI5: Imidazoleglycerol-phosphate dehydratase	2.2348079043
+UniRef50_B3PWI5: Imidazoleglycerol-phosphate dehydratase|unclassified	2.2348079043
+UniRef50_C1KYE1: UPF0145 protein Lm4b_00206	2.2338732401
+UniRef50_C1KYE1: UPF0145 protein Lm4b_00206|unclassified	2.2338732401
+UniRef50_C1DKH4: Tartrate transporter	2.2337455126
+UniRef50_C1DKH4: Tartrate transporter|g__Acinetobacter.s__Acinetobacter_baumannii	2.2337455126
+UniRef50_A0A022P2T6	2.2336022549
+UniRef50_A0A022P2T6|unclassified	2.2336022549
+UniRef50_P71285	2.2335066225
+UniRef50_P71285|unclassified	2.2335066225
+UniRef50_UPI0002D36C87: hypothetical protein	2.2329653122
+UniRef50_UPI0002D36C87: hypothetical protein|unclassified	2.2329653122
+UniRef50_Q7MAB8: GLYCERALDEHYDE 3-PHOSPHATE DEHYDROGENASE	2.2327686206
+UniRef50_Q7MAB8: GLYCERALDEHYDE 3-PHOSPHATE DEHYDROGENASE|g__Helicobacter.s__Helicobacter_pylori	2.2327686206
+UniRef50_UPI0003B50602: GntR family transcriptional regulator	2.2325636790
+UniRef50_UPI0003B50602: GntR family transcriptional regulator|unclassified	2.2325636790
+UniRef50_A0A023LBM1	2.2321428571
+UniRef50_A0A023LBM1|g__Escherichia.s__Escherichia_coli	2.2321428571
+UniRef50_I4CYH2: Epoxide hydrolase	2.2321428571
+UniRef50_I4CYH2: Epoxide hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2321428571
+UniRef50_K0BT25: DNA-binding transcriptional activator	2.2321428571
+UniRef50_K0BT25: DNA-binding transcriptional activator|g__Escherichia.s__Escherichia_coli	2.2321428571
+UniRef50_M1M9P2: Stage V sporulation protein AC	2.2321428571
+UniRef50_M1M9P2: Stage V sporulation protein AC|g__Clostridium.s__Clostridium_beijerinckii	2.2321428571
+UniRef50_Q6AAL7: Phosphotransferase system protein, mannitol/fructose-specific IIA subunit	2.2321428571
+UniRef50_Q6AAL7: Phosphotransferase system protein, mannitol/fructose-specific IIA subunit|g__Propionibacterium.s__Propionibacterium_acnes	2.2321428571
+UniRef50_Q9I4L7	2.2321428571
+UniRef50_Q9I4L7|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2321428571
+UniRef50_U6EYS7: Chemotaxis protein CheW	2.2321428571
+UniRef50_U6EYS7: Chemotaxis protein CheW|g__Clostridium.s__Clostridium_beijerinckii	2.2321428571
+UniRef50_V5VD99	2.2321428571
+UniRef50_V5VD99|g__Acinetobacter.s__Acinetobacter_baumannii	2.2321428571
+UniRef50_A4VWF3: ATPase component of ABC transporters with duplicated ATPase domains	2.2320874295
+UniRef50_A4VWF3: ATPase component of ABC transporters with duplicated ATPase domains|g__Streptococcus.s__Streptococcus_agalactiae	2.2320874295
+UniRef50_V8R7W8: Membrane protein	2.2316346127
+UniRef50_V8R7W8: Membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2316346127
+UniRef50_V9TTT7: Putative integral membrane protein	2.2313678004
+UniRef50_V9TTT7: Putative integral membrane protein|unclassified	2.2313678004
+UniRef50_D4MWH4: Lysophospholipase	2.2312040040
+UniRef50_D4MWH4: Lysophospholipase|g__Clostridium.s__Clostridium_beijerinckii	2.2312040040
+UniRef50_UPI0003B67DBA: hypothetical protein	2.2298773158
+UniRef50_UPI0003B67DBA: hypothetical protein|unclassified	2.2298773158
+UniRef50_Q6F755	2.2296544036
+UniRef50_Q6F755|g__Acinetobacter.s__Acinetobacter_baumannii	2.2296544036
+UniRef50_R6FXK3	2.2295291568
+UniRef50_R6FXK3|g__Clostridium.s__Clostridium_beijerinckii	2.2295291568
+UniRef50_G8VHB7	2.2287634582
+UniRef50_G8VHB7|g__Propionibacterium.s__Propionibacterium_acnes	2.2287634582
+UniRef50_Q5F528	2.2285632837
+UniRef50_Q5F528|unclassified	2.2285632837
+UniRef50_A8I5W8: Predicted protein	2.2284850284
+UniRef50_A8I5W8: Predicted protein|unclassified	2.2284850284
+UniRef50_Q5P3R9	2.2283711902
+UniRef50_Q5P3R9|unclassified	2.2283711902
+UniRef50_J1LSW8	2.2283334217
+UniRef50_J1LSW8|g__Acinetobacter.s__Acinetobacter_baumannii	2.2283334217
+UniRef50_Q035Y9: 60 kDa chaperonin	2.2282318730
+UniRef50_Q035Y9: 60 kDa chaperonin|g__Propionibacterium.s__Propionibacterium_acnes	2.2282318730
+UniRef50_H3W4L8	2.2281786501
+UniRef50_H3W4L8|unclassified	2.2281786501
+UniRef50_UPI00046C5540: hypothetical protein	2.2280582416
+UniRef50_UPI00046C5540: hypothetical protein|unclassified	2.2280582416
+UniRef50_Q28WH8: DNA replication and repair protein RecF	2.2280339018
+UniRef50_Q28WH8: DNA replication and repair protein RecF|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.2280339018
+UniRef50_E7P2Z0: ABC transporter, periplasmic substrate-binding protein, putative	2.2275178720
+UniRef50_E7P2Z0: ABC transporter, periplasmic substrate-binding protein, putative|unclassified	2.2275178720
+UniRef50_A7ZH94	2.2271714922
+UniRef50_A7ZH94|g__Escherichia.s__Escherichia_coli	2.2271714922
+UniRef50_C2VC63: Fructose-bisphosphate aldolase, class II	2.2271714922
+UniRef50_C2VC63: Fructose-bisphosphate aldolase, class II|g__Clostridium.s__Clostridium_beijerinckii	2.2271714922
+UniRef50_U4VHY1	2.2268552216
+UniRef50_U4VHY1|unclassified	2.2268552216
+UniRef50_UPI000361B03D: hypothetical protein, partial	2.2263872601
+UniRef50_UPI000361B03D: hypothetical protein, partial|unclassified	2.2263872601
+UniRef50_V9VJ25	2.2263350585
+UniRef50_V9VJ25|g__Acinetobacter.s__Acinetobacter_baumannii	2.2025775087
+UniRef50_V9VJ25|unclassified	0.0237575497
+UniRef50_B9FJC4	2.2260156254
+UniRef50_B9FJC4|unclassified	2.2260156254
+UniRef50_E6N0K4	2.2257988730
+UniRef50_E6N0K4|unclassified	2.2257988730
+UniRef50_V7I2N1	2.2256920855
+UniRef50_V7I2N1|unclassified	2.2256920855
+UniRef50_E5CQ05: Replication initiation protein	2.2254449030
+UniRef50_E5CQ05: Replication initiation protein|unclassified	2.2254449030
+UniRef50_UPI0001FFEE83: carbohydrate kinase, FGGY	2.2251754153
+UniRef50_UPI0001FFEE83: carbohydrate kinase, FGGY|unclassified	2.2251754153
+UniRef50_UPI0002E69744: hypothetical protein	2.2247244947
+UniRef50_UPI0002E69744: hypothetical protein|unclassified	2.2247244947
+UniRef50_V0U3X7: DNA gyrase inhibitory domain protein	2.2244776795
+UniRef50_V0U3X7: DNA gyrase inhibitory domain protein|unclassified	2.2244776795
+UniRef50_Q869Z4: Phosphoenolpyruvate carboxykinase [GTP], mitochondrial	2.2244390059
+UniRef50_Q869Z4: Phosphoenolpyruvate carboxykinase [GTP], mitochondrial|g__Acinetobacter.s__Acinetobacter_baumannii	2.2244390059
+UniRef50_J9YTR5: Sensor histidine kinase CsrS	2.2242114937
+UniRef50_J9YTR5: Sensor histidine kinase CsrS|g__Streptococcus.s__Streptococcus_agalactiae	2.2242114937
+UniRef50_Q97L63: Spore photoproduct lyase	2.2234663878
+UniRef50_Q97L63: Spore photoproduct lyase|g__Clostridium.s__Clostridium_beijerinckii	2.2234663878
+UniRef50_W4TSQ7	2.2230825560
+UniRef50_W4TSQ7|unclassified	2.2230825560
+UniRef50_U5MRK8: Secretion protein HlyD family protein	2.2230798093
+UniRef50_U5MRK8: Secretion protein HlyD family protein|g__Clostridium.s__Clostridium_beijerinckii	2.2230798093
+UniRef50_G0A952: Inner-membrane translocator	2.2230766197
+UniRef50_G0A952: Inner-membrane translocator|g__Clostridium.s__Clostridium_beijerinckii	2.2230766197
+UniRef50_A6FV27	2.2230286393
+UniRef50_A6FV27|unclassified	2.2230286393
+UniRef50_C3K6C6	2.2229928727
+UniRef50_C3K6C6|unclassified	2.2229928727
+UniRef50_A0A058T6Z9	2.2228333459
+UniRef50_A0A058T6Z9|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1583826375
+UniRef50_A0A058T6Z9|unclassified	0.0644507084
+UniRef50_UPI000237619D: redoxin domain-containing protein, partial	2.2225845089
+UniRef50_UPI000237619D: redoxin domain-containing protein, partial|unclassified	2.2225845089
+UniRef50_F2AEG7	2.2223578877
+UniRef50_F2AEG7|unclassified	2.2223578877
+UniRef50_S9R1I4	2.2222583374
+UniRef50_S9R1I4|unclassified	2.2222583374
+UniRef50_M9SF47	2.2222222222
+UniRef50_M9SF47|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2222222222
+UniRef50_Q5L287: ABC transporter (ATP-binding protein)	2.2222222222
+UniRef50_Q5L287: ABC transporter (ATP-binding protein)|g__Streptococcus.s__Streptococcus_agalactiae	2.2222222222
+UniRef50_Q9RZA5: Response regulator	2.2222222222
+UniRef50_Q9RZA5: Response regulator|g__Deinococcus.s__Deinococcus_radiodurans	2.2222222222
+UniRef50_X0NIS7	2.2222222222
+UniRef50_X0NIS7|unclassified	2.2222222222
+UniRef50_Q6A9R6: Aminomethyltransferase	2.2219565642
+UniRef50_Q6A9R6: Aminomethyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	1.7543859649
+UniRef50_Q6A9R6: Aminomethyltransferase|unclassified	0.4675705993
+UniRef50_J0RJU8	2.2218294277
+UniRef50_J0RJU8|unclassified	2.2218294277
+UniRef50_C7ZYT2: SirA-like protein	2.2217095308
+UniRef50_C7ZYT2: SirA-like protein|unclassified	2.2217095308
+UniRef50_K7RQ56: Cell cycle protein, FtsW/RodA/SpoVE family	2.2211862442
+UniRef50_K7RQ56: Cell cycle protein, FtsW/RodA/SpoVE family|g__Propionibacterium.s__Propionibacterium_acnes	2.2211862442
+UniRef50_Q9ZLF9: Ribonucleoside-diphosphate reductase subunit alpha	2.2210831079
+UniRef50_Q9ZLF9: Ribonucleoside-diphosphate reductase subunit alpha|g__Helicobacter.s__Helicobacter_pylori	2.2210831079
+UniRef50_Q1QDN1: Aminotransferase	2.2207668492
+UniRef50_Q1QDN1: Aminotransferase|g__Acinetobacter.s__Acinetobacter_baumannii	2.2207668492
+UniRef50_P81242: Non-hemolytic enterotoxin 105 kDa component (Fragment)	2.2197147925
+UniRef50_P81242: Non-hemolytic enterotoxin 105 kDa component (Fragment)|unclassified	2.2197147925
+UniRef50_U3T2I1	2.2196971374
+UniRef50_U3T2I1|g__Acinetobacter.s__Acinetobacter_baumannii	2.2196971374
+UniRef50_D8GPT5: Predicted aminoacid permease	2.2195387733
+UniRef50_D8GPT5: Predicted aminoacid permease|g__Clostridium.s__Clostridium_beijerinckii	2.2195387733
+UniRef50_W7W844	2.2195278030
+UniRef50_W7W844|unclassified	2.2195278030
+UniRef50_UPI0004713BE1: hypothetical protein, partial	2.2195237110
+UniRef50_UPI0004713BE1: hypothetical protein, partial|unclassified	2.2195237110
+UniRef50_UPI0003C16A5C: PREDICTED: solute carrier family 26 member 6-like	2.2194022119
+UniRef50_UPI0003C16A5C: PREDICTED: solute carrier family 26 member 6-like|unclassified	2.2194022119
+UniRef50_UPI00037F85FD: hypothetical protein	2.2188258404
+UniRef50_UPI00037F85FD: hypothetical protein|unclassified	2.2188258404
+UniRef50_F2JJH8: MATE efflux family protein	2.2187219276
+UniRef50_F2JJH8: MATE efflux family protein|g__Clostridium.s__Clostridium_beijerinckii	2.2187219276
+UniRef50_F5VP49	2.2185979167
+UniRef50_F5VP49|unclassified	2.2185979167
+UniRef50_UPI0003B3A97F: UTP--glucose-1-phosphate uridylyltransferase	2.2185236354
+UniRef50_UPI0003B3A97F: UTP--glucose-1-phosphate uridylyltransferase|unclassified	2.2185236354
+UniRef50_L0K706	2.2181180778
+UniRef50_L0K706|unclassified	2.2181180778
+UniRef50_V9QQ22	2.2173630342
+UniRef50_V9QQ22|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2173630342
+UniRef50_A6LYI7: Polysaccharide deacetylase	2.2172949002
+UniRef50_A6LYI7: Polysaccharide deacetylase|g__Clostridium.s__Clostridium_beijerinckii	2.2172949002
+UniRef50_E7HP23: Acyl-CoA dehydrogenase, N-terminal domain protein	2.2172949002
+UniRef50_E7HP23: Acyl-CoA dehydrogenase, N-terminal domain protein|g__Escherichia.s__Escherichia_coli	2.2172949002
+UniRef50_H6A3K8: ORF-X	2.2172949002
+UniRef50_H6A3K8: ORF-X|unclassified	2.2172949002
+UniRef50_I1XZ29	2.2172949002
+UniRef50_I1XZ29|g__Acinetobacter.s__Acinetobacter_baumannii	2.2172949002
+UniRef50_J9ZQJ4	2.2172949002
+UniRef50_J9ZQJ4|g__Escherichia.s__Escherichia_coli	2.2172949002
+UniRef50_Q8DXI3	2.2172949002
+UniRef50_Q8DXI3|g__Streptococcus.s__Streptococcus_agalactiae	2.2172949002
+UniRef50_S8J979	2.2172949002
+UniRef50_S8J979|g__Streptococcus.s__Streptococcus_agalactiae	2.2172949002
+UniRef50_V8DNF3	2.2172949002
+UniRef50_V8DNF3|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2172949002
+UniRef50_A6QES9	2.2172577788
+UniRef50_A6QES9|unclassified	2.2172577788
+UniRef50_W1F5L4: Cytochrome c-type protein TorC	2.2166426039
+UniRef50_W1F5L4: Cytochrome c-type protein TorC|unclassified	2.2166426039
+UniRef50_M1MAL1: Glycosyltransferase	2.2161790869
+UniRef50_M1MAL1: Glycosyltransferase|g__Clostridium.s__Clostridium_beijerinckii	2.2161790869
+UniRef50_I0THL6: Branched-chain amino acid transport protein AzlD	2.2156945247
+UniRef50_I0THL6: Branched-chain amino acid transport protein AzlD|unclassified	2.2156945247
+UniRef50_A6LU03	2.2153976852
+UniRef50_A6LU03|g__Clostridium.s__Clostridium_beijerinckii	2.2153976852
+UniRef50_F6AD99: Transcriptional regulator, LysR family	2.2142704224
+UniRef50_F6AD99: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2142704224
+UniRef50_K0R9N5	2.2140703487
+UniRef50_K0R9N5|unclassified	2.2140703487
+UniRef50_UPI00040DA60C: succinate dehydrogenase	2.2139977032
+UniRef50_UPI00040DA60C: succinate dehydrogenase|unclassified	2.2139977032
+UniRef50_B9DT77: 6-phospho-beta-glucosidase 1	2.2137501323
+UniRef50_B9DT77: 6-phospho-beta-glucosidase 1|g__Streptococcus.s__Streptococcus_agalactiae	2.2137501323
+UniRef50_Q9PMT4: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	2.2133067398
+UniRef50_Q9PMT4: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|g__Helicobacter.s__Helicobacter_pylori	2.0006449529
+UniRef50_Q9PMT4: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|unclassified	0.2126617870
+UniRef50_V9WLP2	2.2130661892
+UniRef50_V9WLP2|unclassified	2.2130661892
+UniRef50_M1MG21	2.2125626566
+UniRef50_M1MG21|g__Clostridium.s__Clostridium_beijerinckii	2.2125626566
+UniRef50_D2AE28: Recombinase regulator for fimA	2.2123893805
+UniRef50_D2AE28: Recombinase regulator for fimA|g__Escherichia.s__Escherichia_coli	2.2123893805
+UniRef50_H1DWM1: Transaldolase	2.2123893805
+UniRef50_H1DWM1: Transaldolase|g__Escherichia.s__Escherichia_coli	2.2123893805
+UniRef50_N8WPF6	2.2123893805
+UniRef50_N8WPF6|g__Acinetobacter.s__Acinetobacter_baumannii	2.2123893805
+UniRef50_Q3JGP3: V4R domain protein	2.2123893805
+UniRef50_Q3JGP3: V4R domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2123893805
+UniRef50_R4ZBL9: Cro/Cl family transcriptional regulator	2.2123893805
+UniRef50_R4ZBL9: Cro/Cl family transcriptional regulator|g__Streptococcus.s__Streptococcus_agalactiae	2.2123893805
+UniRef50_R7PG96	2.2123893805
+UniRef50_R7PG96|g__Clostridium.s__Clostridium_beijerinckii	2.2123893805
+UniRef50_UPI0001D2E49B: Fur family transcriptional regulator	2.2123893805
+UniRef50_UPI0001D2E49B: Fur family transcriptional regulator|unclassified	2.2123893805
+UniRef50_UPI0003ACCEB1: PREDICTED: 5E5 antigen-like	2.2123893805
+UniRef50_UPI0003ACCEB1: PREDICTED: 5E5 antigen-like|unclassified	2.2123893805
+UniRef50_Y7ZCF6: NAD-dependent deacetylase	2.2123893805
+UniRef50_Y7ZCF6: NAD-dependent deacetylase|g__Staphylococcus.s__Staphylococcus_aureus	2.2123893805
+UniRef50_A1B541	2.2123728403
+UniRef50_A1B541|unclassified	2.2123728403
+UniRef50_C1N8W6: Predicted protein	2.2121554515
+UniRef50_C1N8W6: Predicted protein|unclassified	2.2121554515
+UniRef50_U5P200: ABC transporter ATP-binding protein	2.2119944144
+UniRef50_U5P200: ABC transporter ATP-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	2.2119944144
+UniRef50_V9U7J8: Membrane-bound lytic murein transglycosylase B	2.2119365493
+UniRef50_V9U7J8: Membrane-bound lytic murein transglycosylase B|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2119365493
+UniRef50_A0A009QE54: TonB-dependent siderophore receptor family protein	2.2116517185
+UniRef50_A0A009QE54: TonB-dependent siderophore receptor family protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.2116517185
+UniRef50_Q9RZV7	2.2114825782
+UniRef50_Q9RZV7|unclassified	2.2114825782
+UniRef50_Q08ZN5: Catalase	2.2112977432
+UniRef50_Q08ZN5: Catalase|g__Deinococcus.s__Deinococcus_radiodurans	2.2112977432
+UniRef50_F8BLY0	2.2109966067
+UniRef50_F8BLY0|unclassified	2.2109966067
+UniRef50_M7A812	2.2108824029
+UniRef50_M7A812|unclassified	2.2108824029
+UniRef50_Q9WXB7: Light-independent protochlorophyllide reductase iron-sulfur ATP-binding protein (Fragment)	2.2101498806
+UniRef50_Q9WXB7: Light-independent protochlorophyllide reductase iron-sulfur ATP-binding protein (Fragment)|unclassified	2.2101498806
+UniRef50_N7PIW9	2.2101407844
+UniRef50_N7PIW9|unclassified	2.2101407844
+UniRef50_B9KS34: Transporter, DME family, DMT superfamily	2.2100769742
+UniRef50_B9KS34: Transporter, DME family, DMT superfamily|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.2100769742
+UniRef50_UPI0004769DD4: hypothetical protein, partial	2.2097155856
+UniRef50_UPI0004769DD4: hypothetical protein, partial|unclassified	2.2097155856
+UniRef50_Q899I0: Stage V sporulation protein B	2.2093763288
+UniRef50_Q899I0: Stage V sporulation protein B|g__Clostridium.s__Clostridium_beijerinckii	2.2093763288
+UniRef50_A6M2U1: Multi-sensor hybrid histidine kinase	2.2088862450
+UniRef50_A6M2U1: Multi-sensor hybrid histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	2.2088862450
+UniRef50_Q8CT43	2.2088155962
+UniRef50_Q8CT43|unclassified	2.2088155962
+UniRef50_Q9JX72: Glutamate-ammonia-ligase adenylyltransferase	2.2086460243
+UniRef50_Q9JX72: Glutamate-ammonia-ligase adenylyltransferase|g__Neisseria.s__Neisseria_meningitidis	2.2086460243
+UniRef50_V5C516	2.2080600375
+UniRef50_V5C516|unclassified	2.2080600375
+UniRef50_K2EX49	2.2078244334
+UniRef50_K2EX49|unclassified	2.2078244334
+UniRef50_M1LWV2: Response regulator receiver protein	2.2077058005
+UniRef50_M1LWV2: Response regulator receiver protein|g__Clostridium.s__Clostridium_beijerinckii	2.2077058005
+UniRef50_Q9RUR8	2.2077058005
+UniRef50_Q9RUR8|g__Deinococcus.s__Deinococcus_radiodurans	2.2077058005
+UniRef50_B1WUS6: Glutathione S-transferase	2.2075055188
+UniRef50_B1WUS6: Glutathione S-transferase|g__Acinetobacter.s__Acinetobacter_baumannii	2.2075055188
+UniRef50_B7H075: PAP2 superfamily protein	2.2075055188
+UniRef50_B7H075: PAP2 superfamily protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.2075055188
+UniRef50_B9AG33	2.2075055188
+UniRef50_B9AG33|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.2075055188
+UniRef50_D4HAH8: GDSL-like protein	2.2075055188
+UniRef50_D4HAH8: GDSL-like protein|g__Propionibacterium.s__Propionibacterium_acnes	2.2075055188
+UniRef50_M3ID57: E1-E2 ATPase	2.2075055188
+UniRef50_M3ID57: E1-E2 ATPase|g__Escherichia.s__Escherichia_coli	2.2075055188
+UniRef50_P20356: Regulatory protein RepA	2.2075055188
+UniRef50_P20356: Regulatory protein RepA|g__Acinetobacter.s__Acinetobacter_baumannii	2.2075055188
+UniRef50_Q896J4: HPr kinase/phosphorylase	2.2075055188
+UniRef50_Q896J4: HPr kinase/phosphorylase|g__Clostridium.s__Clostridium_beijerinckii	2.2075055188
+UniRef50_E6T4R0: Tail E family protein	2.2069301307
+UniRef50_E6T4R0: Tail E family protein|unclassified	2.2069301307
+UniRef50_UPI00036B3249: hypothetical protein	2.2065776880
+UniRef50_UPI00036B3249: hypothetical protein|unclassified	2.2065776880
+UniRef50_R5WWI1: Sugar efflux transporter	2.2064013630
+UniRef50_R5WWI1: Sugar efflux transporter|g__Escherichia.s__Escherichia_coli	2.2064013630
+UniRef50_Q6F985: Protein TolB	2.2063084792
+UniRef50_Q6F985: Protein TolB|g__Acinetobacter.s__Acinetobacter_baumannii	2.2063084792
+UniRef50_B7G9B5: L-threonine ammonia-lyase	2.2061482207
+UniRef50_B7G9B5: L-threonine ammonia-lyase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2061482207
+UniRef50_UPI000421C8B5: cation:proton antiporter	2.2059726234
+UniRef50_UPI000421C8B5: cation:proton antiporter|unclassified	2.2059726234
+UniRef50_Q5JN18	2.2059584796
+UniRef50_Q5JN18|unclassified	2.2059584796
+UniRef50_T1UA86	2.2055457219
+UniRef50_T1UA86|unclassified	2.2055457219
+UniRef50_T9P4G2: Sulfoxide reductase heme-binding subunit yedZ	2.2051661425
+UniRef50_T9P4G2: Sulfoxide reductase heme-binding subunit yedZ|unclassified	2.2051661425
+UniRef50_A0A024HWT9	2.2048254213
+UniRef50_A0A024HWT9|unclassified	2.2048254213
+UniRef50_UPI00036DBE20: hypothetical protein	2.2045771640
+UniRef50_UPI00036DBE20: hypothetical protein|unclassified	2.2045771640
+UniRef50_UPI00037026C1: membrane protein	2.2045608591
+UniRef50_UPI00037026C1: membrane protein|unclassified	2.2045608591
+UniRef50_A6LX78	2.2043848531
+UniRef50_A6LX78|g__Clostridium.s__Clostridium_beijerinckii	2.2043848531
+UniRef50_B9KVA2	2.2040542246
+UniRef50_B9KVA2|unclassified	2.2040542246
+UniRef50_U6LHY4	2.2038399557
+UniRef50_U6LHY4|unclassified	2.2038399557
+UniRef50_A6LZS6: Metallophosphoesterase	2.2038329521
+UniRef50_A6LZS6: Metallophosphoesterase|g__Clostridium.s__Clostridium_beijerinckii	2.2038329521
+UniRef50_UPI00035EDFBE: hypothetical protein	2.2038240442
+UniRef50_UPI00035EDFBE: hypothetical protein|unclassified	2.2038240442
+UniRef50_J2X1F4	2.2031908626
+UniRef50_J2X1F4|unclassified	2.2031908626
+UniRef50_UPI00046839D6: MFS transporter	2.2029110205
+UniRef50_UPI00046839D6: MFS transporter|unclassified	2.2029110205
+UniRef50_UPI00025564DF: thioredoxin	2.2028523792
+UniRef50_UPI00025564DF: thioredoxin|unclassified	2.2028523792
+UniRef50_V7ENR3: Branched-chain amino acid transporter AzlC	2.2028282812
+UniRef50_V7ENR3: Branched-chain amino acid transporter AzlC|unclassified	2.2028282812
+UniRef50_H2Y9T6	2.2026431718
+UniRef50_H2Y9T6|unclassified	2.2026431718
+UniRef50_M4WTT8	2.2026431718
+UniRef50_M4WTT8|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.2026431718
+UniRef50_Q896N2: Phosphoserine phosphatase	2.2026431718
+UniRef50_Q896N2: Phosphoserine phosphatase|g__Clostridium.s__Clostridium_beijerinckii	2.2026431718
+UniRef50_U3T6T2: Polyhydroxyalkanoate granule-associated protein	2.2026431718
+UniRef50_U3T6T2: Polyhydroxyalkanoate granule-associated protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.2026431718
+UniRef50_UPI000369109A: hypothetical protein	2.2026431718
+UniRef50_UPI000369109A: hypothetical protein|unclassified	2.2026431718
+UniRef50_X5KG73: GtrA family protein	2.2026431718
+UniRef50_X5KG73: GtrA family protein|g__Streptococcus.s__Streptococcus_agalactiae	2.2026431718
+UniRef50_UPI000365F4CD: hypothetical protein	2.2020434838
+UniRef50_UPI000365F4CD: hypothetical protein|unclassified	2.2020434838
+UniRef50_B9UQU3: PI-2a backbone protein	2.2012295837
+UniRef50_B9UQU3: PI-2a backbone protein|g__Streptococcus.s__Streptococcus_agalactiae	2.2012295837
+UniRef50_U3AS30: ABC transporter, binding protein	2.2010700323
+UniRef50_U3AS30: ABC transporter, binding protein|unclassified	2.2010700323
+UniRef50_A0A035L641	2.2008232724
+UniRef50_A0A035L641|unclassified	2.2008232724
+UniRef50_D3EXZ2: Truncated amidase	2.2007734578
+UniRef50_D3EXZ2: Truncated amidase|unclassified	2.2007734578
+UniRef50_D8BLB0	2.2004455872
+UniRef50_D8BLB0|unclassified	2.2004455872
+UniRef50_Q88FX9: Nicotinate dehydrogenase subunit A	2.1995133755
+UniRef50_Q88FX9: Nicotinate dehydrogenase subunit A|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0746887967
+UniRef50_Q88FX9: Nicotinate dehydrogenase subunit A|unclassified	0.1248245788
+UniRef50_E1IG29: Beta-lactamase domain-containing protein	2.1992779226
+UniRef50_E1IG29: Beta-lactamase domain-containing protein|unclassified	2.1992779226
+UniRef50_C2Q427	2.1990377571
+UniRef50_C2Q427|unclassified	2.1990377571
+UniRef50_UPI00037029E1: hypothetical protein	2.1987229460
+UniRef50_UPI00037029E1: hypothetical protein|unclassified	2.1987229460
+UniRef50_B0V742	2.1986054881
+UniRef50_B0V742|g__Acinetobacter.s__Acinetobacter_baumannii	2.1986054881
+UniRef50_Q492J8: Methionine--tRNA ligase	2.1981139054
+UniRef50_Q492J8: Methionine--tRNA ligase|g__Escherichia.s__Escherichia_coli	2.1981139054
+UniRef50_A0A024YXF2: Transcriptional regulator	2.1978021978
+UniRef50_A0A024YXF2: Transcriptional regulator|unclassified	2.1978021978
+UniRef50_A6LRX4	2.1978021978
+UniRef50_A6LRX4|g__Clostridium.s__Clostridium_beijerinckii	2.1978021978
+UniRef50_B9KRD8: Anti-sigma regulatory kinase	2.1978021978
+UniRef50_B9KRD8: Anti-sigma regulatory kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.1978021978
+UniRef50_Q9R3J8: Transposase, putative	2.1978021978
+UniRef50_Q9R3J8: Transposase, putative|g__Deinococcus.s__Deinococcus_radiodurans	2.1978021978
+UniRef50_A6LZP3: LuxR family transcriptional regulator	2.1967443308
+UniRef50_A6LZP3: LuxR family transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	2.1967443308
+UniRef50_G2I013: Transposase	2.1963297144
+UniRef50_G2I013: Transposase|unclassified	2.1963297144
+UniRef50_B2V326: Mate efflux family protein	2.1961956172
+UniRef50_B2V326: Mate efflux family protein|g__Clostridium.s__Clostridium_beijerinckii	2.1961956172
+UniRef50_D5UV60: Acyl-CoA dehydrogenase domain protein	2.1960253029
+UniRef50_D5UV60: Acyl-CoA dehydrogenase domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1960253029
+UniRef50_B2JYC2: HesB/YadR/YfhF-family protein	2.1956795151
+UniRef50_B2JYC2: HesB/YadR/YfhF-family protein|unclassified	2.1956795151
+UniRef50_Q2JFL7: NADH-quinone oxidoreductase subunit D	2.1955048846
+UniRef50_Q2JFL7: NADH-quinone oxidoreductase subunit D|g__Deinococcus.s__Deinococcus_radiodurans	1.2594458438
+UniRef50_Q2JFL7: NADH-quinone oxidoreductase subunit D|g__Propionibacterium.s__Propionibacterium_acnes	0.7794232268
+UniRef50_Q2JFL7: NADH-quinone oxidoreductase subunit D|unclassified	0.1566358140
+UniRef50_UPI0002EE9847: hypothetical protein	2.1955006283
+UniRef50_UPI0002EE9847: hypothetical protein|unclassified	2.1955006283
+UniRef50_F0YAY5	2.1953945805
+UniRef50_F0YAY5|unclassified	2.1953945805
+UniRef50_E1V3L9	2.1950345525
+UniRef50_E1V3L9|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1217327918
+UniRef50_E1V3L9|unclassified	0.0733017607
+UniRef50_L7AAB0: Membrane protein FdrA	2.1947624945
+UniRef50_L7AAB0: Membrane protein FdrA|unclassified	2.1947624945
+UniRef50_UPI000255F0AC: hypothetical protein	2.1946741445
+UniRef50_UPI000255F0AC: hypothetical protein|unclassified	2.1946741445
+UniRef50_W0H3E7	2.1946423106
+UniRef50_W0H3E7|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1946423106
+UniRef50_P57000: Glutamine--tRNA ligase	2.1944250263
+UniRef50_P57000: Glutamine--tRNA ligase|g__Neisseria.s__Neisseria_meningitidis	2.1503885308
+UniRef50_P57000: Glutamine--tRNA ligase|unclassified	0.0440364954
+UniRef50_B2TLB0: Diguanylate cyclase/phosphodiesterase domain 2	2.1942874414
+UniRef50_B2TLB0: Diguanylate cyclase/phosphodiesterase domain 2|g__Clostridium.s__Clostridium_beijerinckii	2.1942874414
+UniRef50_Q6F9W4: LPS-assembly protein LptD	2.1942301005
+UniRef50_Q6F9W4: LPS-assembly protein LptD|g__Acinetobacter.s__Acinetobacter_baumannii	2.1942301005
+UniRef50_G7M273	2.1941860689
+UniRef50_G7M273|g__Clostridium.s__Clostridium_beijerinckii	2.1941860689
+UniRef50_UPI00029CCAB1: hypothetical protein, partial	2.1937445162
+UniRef50_UPI00029CCAB1: hypothetical protein, partial|unclassified	2.1937445162
+UniRef50_A6LR78	2.1929824561
+UniRef50_A6LR78|g__Clostridium.s__Clostridium_beijerinckii	2.1929824561
+UniRef50_A7FBS8	2.1929824561
+UniRef50_A7FBS8|g__Acinetobacter.s__Acinetobacter_baumannii	2.1929824561
+UniRef50_B3DRA9: Deoxyuridine 5'-triphosphate nucleotidohydrolase	2.1929824561
+UniRef50_B3DRA9: Deoxyuridine 5'-triphosphate nucleotidohydrolase|g__Propionibacterium.s__Propionibacterium_acnes	2.1929824561
+UniRef50_G0AH50: Thiol peroxidase, Bcp-type	2.1929824561
+UniRef50_G0AH50: Thiol peroxidase, Bcp-type|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1929824561
+UniRef50_G7M254	2.1929824561
+UniRef50_G7M254|g__Clostridium.s__Clostridium_beijerinckii	2.1929824561
+UniRef50_I2BS77: Transcriptional regulator, LysR family	2.1929824561
+UniRef50_I2BS77: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1929824561
+UniRef50_K7A9D1: Inner membrane transport permease	2.1929824561
+UniRef50_K7A9D1: Inner membrane transport permease|g__Acinetobacter.s__Acinetobacter_baumannii	2.1929824561
+UniRef50_M1K494	2.1929824561
+UniRef50_M1K494|unclassified	2.1929824561
+UniRef50_M9VF88: NADH:ubiquinone oxidoreductase subunit J	2.1929824561
+UniRef50_M9VF88: NADH:ubiquinone oxidoreductase subunit J|g__Propionibacterium.s__Propionibacterium_acnes	2.1929824561
+UniRef50_Q1IZ80: Potassium/proton antiporter regulatory subunit, CPA2 family	2.1929824561
+UniRef50_Q1IZ80: Potassium/proton antiporter regulatory subunit, CPA2 family|g__Deinococcus.s__Deinococcus_radiodurans	2.1929824561
+UniRef50_W7JJV3	2.1929824561
+UniRef50_W7JJV3|unclassified	2.1929824561
+UniRef50_A0A018D403	2.1927994205
+UniRef50_A0A018D403|unclassified	2.1927994205
+UniRef50_K1ZE81: Rod shape-determining protein MreB (Fragment)	2.1923175641
+UniRef50_K1ZE81: Rod shape-determining protein MreB (Fragment)|unclassified	2.1923175641
+UniRef50_A0A011PGA8: Hydrogenase 2 maturation protease	2.1921921672
+UniRef50_A0A011PGA8: Hydrogenase 2 maturation protease|unclassified	2.1921921672
+UniRef50_U7Q105	2.1916504911
+UniRef50_U7Q105|unclassified	2.1916504911
+UniRef50_A0A059IUF5: Contractile tail tube protein	2.1914725057
+UniRef50_A0A059IUF5: Contractile tail tube protein|unclassified	2.1914725057
+UniRef50_UPI000376D6A5: hypothetical protein	2.1911994807
+UniRef50_UPI000376D6A5: hypothetical protein|unclassified	2.1911994807
+UniRef50_E2ZWR8	2.1909186982
+UniRef50_E2ZWR8|unclassified	2.1909186982
+UniRef50_F0Y4U2	2.1907221475
+UniRef50_F0Y4U2|unclassified	2.1907221475
+UniRef50_Z2DM94	2.1900065849
+UniRef50_Z2DM94|unclassified	2.1900065849
+UniRef50_X6KV53	2.1896908045
+UniRef50_X6KV53|unclassified	2.1896908045
+UniRef50_J9YSZ8: Transcriptional regulator RofA	2.1894368483
+UniRef50_J9YSZ8: Transcriptional regulator RofA|g__Streptococcus.s__Streptococcus_agalactiae	2.1894368483
+UniRef50_UPI00036C7365: hypothetical protein	2.1885116295
+UniRef50_UPI00036C7365: hypothetical protein|unclassified	2.1885116295
+UniRef50_X5K1L0	2.1884457725
+UniRef50_X5K1L0|g__Streptococcus.s__Streptococcus_agalactiae	2.1884457725
+UniRef50_B9KLX6: Chromosomal replication initiator, DnaA	2.1884105969
+UniRef50_B9KLX6: Chromosomal replication initiator, DnaA|unclassified	2.1884105969
+UniRef50_F9Z2A5	2.1882540348
+UniRef50_F9Z2A5|unclassified	2.1882540348
+UniRef50_N6TVN3	2.1881869118
+UniRef50_N6TVN3|unclassified	2.1881869118
+UniRef50_A6M1X0: ThiW protein	2.1881838074
+UniRef50_A6M1X0: ThiW protein|g__Clostridium.s__Clostridium_beijerinckii	2.1881838074
+UniRef50_A6V309: Lipoprotein, putative	2.1881838074
+UniRef50_A6V309: Lipoprotein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1881838074
+UniRef50_A7ZMU2: UPF0266 membrane protein YobD	2.1881838074
+UniRef50_A7ZMU2: UPF0266 membrane protein YobD|g__Escherichia.s__Escherichia_coli	2.1881838074
+UniRef50_B9B5D5	2.1881838074
+UniRef50_B9B5D5|unclassified	2.1881838074
+UniRef50_K0WZB8	2.1881838074
+UniRef50_K0WZB8|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1881838074
+UniRef50_Q7AGV1: Allantoinase	2.1881838074
+UniRef50_Q7AGV1: Allantoinase|g__Escherichia.s__Escherichia_coli	2.1881838074
+UniRef50_Q890M8: Tetracycline resistance protein	2.1881838074
+UniRef50_Q890M8: Tetracycline resistance protein|g__Clostridium.s__Clostridium_beijerinckii	2.1881838074
+UniRef50_Q9JV11: UPF0307 protein NMA1049	2.1881838074
+UniRef50_Q9JV11: UPF0307 protein NMA1049|g__Neisseria.s__Neisseria_meningitidis	2.1881838074
+UniRef50_Q9JY91: L-asparaginase I	2.1881838074
+UniRef50_Q9JY91: L-asparaginase I|g__Neisseria.s__Neisseria_meningitidis	2.1881838074
+UniRef50_Q9K9X4: Transposase related protein (20)	2.1881838074
+UniRef50_Q9K9X4: Transposase related protein (20)|g__Clostridium.s__Clostridium_beijerinckii	2.1881838074
+UniRef50_W4TIG8: Cytoplasmic axial filament protein CafA and Ribonuclease G	2.1881838074
+UniRef50_W4TIG8: Cytoplasmic axial filament protein CafA and Ribonuclease G|unclassified	2.1881838074
+UniRef50_X2H7D0	2.1881838074
+UniRef50_X2H7D0|g__Neisseria.s__Neisseria_meningitidis	2.1881838074
+UniRef50_X5ETW2: Peptidase, M50 family	2.1881838074
+UniRef50_X5ETW2: Peptidase, M50 family|g__Neisseria.s__Neisseria_meningitidis	2.1881838074
+UniRef50_UPI000476A6C7: antitermination protein NusB	2.1881538131
+UniRef50_UPI000476A6C7: antitermination protein NusB|unclassified	2.1881538131
+UniRef50_S9RBB4: Plasmid replication protein RepA	2.1880640162
+UniRef50_S9RBB4: Plasmid replication protein RepA|unclassified	2.1880640162
+UniRef50_UPI000410414C: hypothetical protein	2.1875538906
+UniRef50_UPI000410414C: hypothetical protein|unclassified	2.1875538906
+UniRef50_A7ZR32	2.1867518853
+UniRef50_A7ZR32|unclassified	2.1867518853
+UniRef50_B7GVD0: LysR substrate binding domain protein	2.1867352401
+UniRef50_B7GVD0: LysR substrate binding domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.1867352401
+UniRef50_UPI000328D943: PREDICTED: basic proline-rich protein-like	2.1864754029
+UniRef50_UPI000328D943: PREDICTED: basic proline-rich protein-like|unclassified	2.1864754029
+UniRef50_A0A017HMU3	2.1863853293
+UniRef50_A0A017HMU3|unclassified	2.1863853293
+UniRef50_C5QU14	2.1859773537
+UniRef50_C5QU14|unclassified	2.1859773537
+UniRef50_P69829: Nitrogen regulatory protein	2.1856484418
+UniRef50_P69829: Nitrogen regulatory protein|g__Escherichia.s__Escherichia_coli	2.0790020790
+UniRef50_P69829: Nitrogen regulatory protein|unclassified	0.1066463628
+UniRef50_UPI0003A0AD2C: 30S ribosomal protein S7	2.1853525806
+UniRef50_UPI0003A0AD2C: 30S ribosomal protein S7|unclassified	2.1853525806
+UniRef50_E1IL23	2.1853254913
+UniRef50_E1IL23|unclassified	2.1853254913
+UniRef50_C8NMF6	2.1853139656
+UniRef50_C8NMF6|unclassified	2.1853139656
+UniRef50_A5N5L0	2.1850820417
+UniRef50_A5N5L0|g__Clostridium.s__Clostridium_beijerinckii	2.1850820417
+UniRef50_M9R942	2.1847379407
+UniRef50_M9R942|unclassified	2.1847379407
+UniRef50_F9NUL2: ABC transporter, permease protein	2.1845992316
+UniRef50_F9NUL2: ABC transporter, permease protein|g__Propionibacterium.s__Propionibacterium_acnes	2.1845992316
+UniRef50_UPI0003B56D5B: 50S ribosomal protein L25	2.1843254484
+UniRef50_UPI0003B56D5B: 50S ribosomal protein L25|unclassified	2.1843254484
+UniRef50_E0NNQ0	2.1835216528
+UniRef50_E0NNQ0|g__Clostridium.s__Clostridium_beijerinckii	2.1835216528
+UniRef50_B9TIU1	2.1834061135
+UniRef50_B9TIU1|unclassified	2.1834061135
+UniRef50_N2HA01: Ferrichrome-iron receptor domain protein	2.1833740877
+UniRef50_N2HA01: Ferrichrome-iron receptor domain protein|unclassified	2.1833740877
+UniRef50_B4RL74	2.1833216991
+UniRef50_B4RL74|unclassified	2.1833216991
+UniRef50_UPI0004654176: 3-methyl-2-oxobutanoate hydroxymethyltransferase	2.1832513476
+UniRef50_UPI0004654176: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	2.1832513476
+UniRef50_Q9KKE8: CylI	2.1830485541
+UniRef50_Q9KKE8: CylI|g__Streptococcus.s__Streptococcus_agalactiae	2.1830485541
+UniRef50_Q9ZL53: Cadmium, zinc and cobalt-transporting ATPase	2.1824971922
+UniRef50_Q9ZL53: Cadmium, zinc and cobalt-transporting ATPase|g__Helicobacter.s__Helicobacter_pylori	2.1824971922
+UniRef50_A6LZV7: Transcriptional antiterminator, BglG	2.1824154010
+UniRef50_A6LZV7: Transcriptional antiterminator, BglG|g__Clostridium.s__Clostridium_beijerinckii	2.1824154010
+UniRef50_V8UNT0	2.1820083655
+UniRef50_V8UNT0|unclassified	2.1820083655
+UniRef50_W1JLJ8	2.1817725440
+UniRef50_W1JLJ8|unclassified	2.1817725440
+UniRef50_E7B190: Methyl viologen resistance protein smvA	2.1815814977
+UniRef50_E7B190: Methyl viologen resistance protein smvA|g__Acinetobacter.s__Acinetobacter_baumannii	2.1815814977
+UniRef50_P43010: NAD(P) transhydrogenase subunit beta	2.1813291207
+UniRef50_P43010: NAD(P) transhydrogenase subunit beta|g__Propionibacterium.s__Propionibacterium_acnes	1.5529883951
+UniRef50_P43010: NAD(P) transhydrogenase subunit beta|unclassified	0.6283407256
+UniRef50_B9KX97: Glycosyl transferase, family 2	2.1812844840
+UniRef50_B9KX97: Glycosyl transferase, family 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.1812844840
+UniRef50_K0TK24	2.1807657570
+UniRef50_K0TK24|unclassified	2.1807657570
+UniRef50_W0E0J7: UPF0125 protein MARPU_11520	2.1804928798
+UniRef50_W0E0J7: UPF0125 protein MARPU_11520|unclassified	2.1804928798
+UniRef50_A6WUZ5: ROK family protein	2.1795022678
+UniRef50_A6WUZ5: ROK family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.1795022678
+UniRef50_A0A017HQ86: Inner membrane protein	2.1789030797
+UniRef50_A0A017HQ86: Inner membrane protein|unclassified	2.1789030797
+UniRef50_UPI00038F41D3: Putative cytochrome bd menaquinol oxidase subunit II	2.1787759219
+UniRef50_UPI00038F41D3: Putative cytochrome bd menaquinol oxidase subunit II|unclassified	2.1787759219
+UniRef50_D5RU16	2.1786492375
+UniRef50_D5RU16|unclassified	2.1786492375
+UniRef50_M9VAU8	2.1786492375
+UniRef50_M9VAU8|g__Propionibacterium.s__Propionibacterium_acnes	2.1786492375
+UniRef50_Q67JS9: 50S ribosomal protein L1	2.1786492375
+UniRef50_Q67JS9: 50S ribosomal protein L1|g__Clostridium.s__Clostridium_beijerinckii	2.1786492375
+UniRef50_Q9RT82	2.1786492375
+UniRef50_Q9RT82|g__Deinococcus.s__Deinococcus_radiodurans	2.1786492375
+UniRef50_UPI0004785FB9: alkylhydroperoxidase	2.1784937113
+UniRef50_UPI0004785FB9: alkylhydroperoxidase|unclassified	2.1784937113
+UniRef50_UPI00038074A9: hypothetical protein	2.1780222393
+UniRef50_UPI00038074A9: hypothetical protein|unclassified	2.1780222393
+UniRef50_M9V9M5	2.1778018138
+UniRef50_M9V9M5|g__Propionibacterium.s__Propionibacterium_acnes	2.1778018138
+UniRef50_UPI000465E725: prephenate dehydratase, partial	2.1775768897
+UniRef50_UPI000465E725: prephenate dehydratase, partial|unclassified	2.1775768897
+UniRef50_K0N9E8: Arsenite efflux pump (Fragment)	2.1775762576
+UniRef50_K0N9E8: Arsenite efflux pump (Fragment)|unclassified	2.1775762576
+UniRef50_Q9I132	2.1773902420
+UniRef50_Q9I132|unclassified	2.1773902420
+UniRef50_Q2J4N0: Phosphoribosylformylglycinamidine synthase 1	2.1773266199
+UniRef50_Q2J4N0: Phosphoribosylformylglycinamidine synthase 1|g__Propionibacterium.s__Propionibacterium_acnes	2.0746887967
+UniRef50_Q2J4N0: Phosphoribosylformylglycinamidine synthase 1|unclassified	0.1026378232
+UniRef50_UPI0003A5EC9D: hypothetical protein	2.1766271263
+UniRef50_UPI0003A5EC9D: hypothetical protein|unclassified	2.1766271263
+UniRef50_G4LPE8: C4-dicarboxylate transporter	2.1764705882
+UniRef50_G4LPE8: C4-dicarboxylate transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1764705882
+UniRef50_A6M1C8: Flagellar hook-associated protein FlgK	2.1761620582
+UniRef50_A6M1C8: Flagellar hook-associated protein FlgK|g__Clostridium.s__Clostridium_beijerinckii	2.1761620582
+UniRef50_R8M4U8	2.1761464130
+UniRef50_R8M4U8|unclassified	2.1761464130
+UniRef50_D7X8Q2	2.1760839552
+UniRef50_D7X8Q2|unclassified	2.1760839552
+UniRef50_Q98IL7: Mlr2347 protein	2.1751729848
+UniRef50_Q98IL7: Mlr2347 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.1751729848
+UniRef50_A4WY58: CobB/CobQ domain protein glutamine amidotransferase	2.1750958036
+UniRef50_A4WY58: CobB/CobQ domain protein glutamine amidotransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.1750958036
+UniRef50_UPI0004664D96: XRE family transcriptional regulator	2.1748300298
+UniRef50_UPI0004664D96: XRE family transcriptional regulator|unclassified	2.1748300298
+UniRef50_G7UAA9: Transporter, major facilitator family protein	2.1747907796
+UniRef50_G7UAA9: Transporter, major facilitator family protein|g__Propionibacterium.s__Propionibacterium_acnes	2.1747907796
+UniRef50_J2PFI4	2.1745360762
+UniRef50_J2PFI4|unclassified	2.1745360762
+UniRef50_E6KSM2	2.1744208848
+UniRef50_E6KSM2|unclassified	2.1744208848
+UniRef50_F4LTT4: DNA methylase N-4/N-6 domain protein	2.1743966188
+UniRef50_F4LTT4: DNA methylase N-4/N-6 domain protein|g__Propionibacterium.s__Propionibacterium_acnes	2.1743966188
+UniRef50_UPI0003A88012: hypothetical protein	2.1741638385
+UniRef50_UPI0003A88012: hypothetical protein|unclassified	2.1741638385
+UniRef50_A5V4L9	2.1739130435
+UniRef50_A5V4L9|unclassified	2.1739130435
+UniRef50_A6LT46	2.1739130435
+UniRef50_A6LT46|g__Clostridium.s__Clostridium_beijerinckii	2.1739130435
+UniRef50_C5C3V4: Dihydrodipicolinate synthetase	2.1739130435
+UniRef50_C5C3V4: Dihydrodipicolinate synthetase|g__Propionibacterium.s__Propionibacterium_acnes	2.1739130435
+UniRef50_E8U5H6	2.1739130435
+UniRef50_E8U5H6|g__Deinococcus.s__Deinococcus_radiodurans	2.1739130435
+UniRef50_F7Y3H5: Enoyl-CoA hydratase	2.1739130435
+UniRef50_F7Y3H5: Enoyl-CoA hydratase|g__Deinococcus.s__Deinococcus_radiodurans	2.1739130435
+UniRef50_N2KJE9: Lipopolysaccharide core biosynthesis rfaS domain protein	2.1739130435
+UniRef50_N2KJE9: Lipopolysaccharide core biosynthesis rfaS domain protein|unclassified	2.1739130435
+UniRef50_Q49890: Tyrosine recombinase XerD	2.1739130435
+UniRef50_Q49890: Tyrosine recombinase XerD|g__Propionibacterium.s__Propionibacterium_acnes	2.1739130435
+UniRef50_Q9HUB0: UPF0158 protein PA5073	2.1739130435
+UniRef50_Q9HUB0: UPF0158 protein PA5073|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1739130435
+UniRef50_R4X352: Major facilitator superfamily (MFS) metabolite/H+ symporter	2.1737848389
+UniRef50_R4X352: Major facilitator superfamily (MFS) metabolite/H+ symporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1737848389
+UniRef50_A0A059E2E8	2.1737061666
+UniRef50_A0A059E2E8|unclassified	2.1737061666
+UniRef50_I3YAK9: Proline iminopeptidase	2.1735442555
+UniRef50_I3YAK9: Proline iminopeptidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1735442555
+UniRef50_A6LWE8: Ribonucleoside-triphosphate reductase, adenosylcobalamin-dependent	2.1734629263
+UniRef50_A6LWE8: Ribonucleoside-triphosphate reductase, adenosylcobalamin-dependent|g__Clostridium.s__Clostridium_beijerinckii	2.1734629263
+UniRef50_A6LZ49: Transcriptional regulator, LysR family	2.1734305494
+UniRef50_A6LZ49: Transcriptional regulator, LysR family|g__Clostridium.s__Clostridium_beijerinckii	2.1734305494
+UniRef50_UPI0004746084: hypothetical protein	2.1730849308
+UniRef50_UPI0004746084: hypothetical protein|unclassified	2.1730849308
+UniRef50_J6LK34	2.1730458151
+UniRef50_J6LK34|unclassified	2.1730458151
+UniRef50_H7CZX2: DNA replication protein DnaC	2.1730282600
+UniRef50_H7CZX2: DNA replication protein DnaC|g__Clostridium.s__Clostridium_beijerinckii	2.1730282600
+UniRef50_UPI00035CA936: hypothetical protein	2.1725122074
+UniRef50_UPI00035CA936: hypothetical protein|unclassified	2.1725122074
+UniRef50_Z5X4G2	2.1715319679
+UniRef50_Z5X4G2|unclassified	2.1715319679
+UniRef50_D8JHE9: Nitrate transport ATP-binding protein nrtC	2.1713087751
+UniRef50_D8JHE9: Nitrate transport ATP-binding protein nrtC|g__Acinetobacter.s__Acinetobacter_baumannii	2.1713087751
+UniRef50_A0A021VWB2	2.1710926452
+UniRef50_A0A021VWB2|unclassified	2.1710926452
+UniRef50_G8VFU9	2.1700984369
+UniRef50_G8VFU9|g__Propionibacterium.s__Propionibacterium_acnes	2.1700984369
+UniRef50_Q2YYB5	2.1699785586
+UniRef50_Q2YYB5|unclassified	2.1699785586
+UniRef50_U8LY22	2.1699778520
+UniRef50_U8LY22|unclassified	2.1699778520
+UniRef50_V5WU09: Transcriptional regulator	2.1693121693
+UniRef50_V5WU09: Transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	2.1693121693
+UniRef50_Q9RU52: Propionyl-CoA carboxylase, beta subunit, putative	2.1692682228
+UniRef50_Q9RU52: Propionyl-CoA carboxylase, beta subunit, putative|g__Deinococcus.s__Deinococcus_radiodurans	2.1692682228
+UniRef50_C5YKF3	2.1691973970
+UniRef50_C5YKF3|unclassified	2.1691973970
+UniRef50_I5Q788: Putative ATP-binding component of a transport system	2.1691973970
+UniRef50_I5Q788: Putative ATP-binding component of a transport system|g__Escherichia.s__Escherichia_coli	2.1691973970
+UniRef50_R5WIV5: MFS transporter AraJ	2.1691973970
+UniRef50_R5WIV5: MFS transporter AraJ|g__Escherichia.s__Escherichia_coli	2.1691973970
+UniRef50_S3CIA8	2.1691973970
+UniRef50_S3CIA8|unclassified	2.1691973970
+UniRef50_W9B7R7: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	2.1691969381
+UniRef50_W9B7R7: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome|unclassified	2.1691969381
+UniRef50_W4STC6	2.1683025893
+UniRef50_W4STC6|unclassified	2.1683025893
+UniRef50_UPI00037510F3: hypothetical protein, partial	2.1680231527
+UniRef50_UPI00037510F3: hypothetical protein, partial|unclassified	2.1680231527
+UniRef50_A0A023XPD5	2.1673761495
+UniRef50_A0A023XPD5|unclassified	2.1673761495
+UniRef50_A0A031Z188: Replication initiation protein (Fragment)	2.1673243508
+UniRef50_A0A031Z188: Replication initiation protein (Fragment)|unclassified	2.1673243508
+UniRef50_W0NGN9	2.1672936057
+UniRef50_W0NGN9|unclassified	2.1672936057
+UniRef50_A9BP26: Amidase	2.1672798148
+UniRef50_A9BP26: Amidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1672798148
+UniRef50_Q3IF99: Twitching motility protein PilU (Type IV pili)	2.1672194229
+UniRef50_Q3IF99: Twitching motility protein PilU (Type IV pili)|g__Acinetobacter.s__Acinetobacter_baumannii	2.1672194229
+UniRef50_G7M2M8: G3E family GTPase-like protein	2.1668497807
+UniRef50_G7M2M8: G3E family GTPase-like protein|g__Clostridium.s__Clostridium_beijerinckii	2.1668497807
+UniRef50_B7UWT5	2.1667639338
+UniRef50_B7UWT5|unclassified	2.1667639338
+UniRef50_M9RU12	2.1664121925
+UniRef50_M9RU12|unclassified	2.1664121925
+UniRef50_UPI00046E7125: hypothetical protein	2.1661730214
+UniRef50_UPI00046E7125: hypothetical protein|unclassified	2.1661730214
+UniRef50_R1BXE4	2.1659603989
+UniRef50_R1BXE4|unclassified	2.1659603989
+UniRef50_Y4MH80	2.1658459333
+UniRef50_Y4MH80|g__Staphylococcus.s__Staphylococcus_aureus	2.1658459333
+UniRef50_G5JGD1	2.1656519951
+UniRef50_G5JGD1|unclassified	2.1656519951
+UniRef50_C7IYC6: Os02g0235900 protein (Fragment)	2.1653661053
+UniRef50_C7IYC6: Os02g0235900 protein (Fragment)|unclassified	2.1653661053
+UniRef50_U5MNS8: Permease	2.1652473699
+UniRef50_U5MNS8: Permease|g__Clostridium.s__Clostridium_beijerinckii	2.1652473699
+UniRef50_M9VFD9: Osmosensitive K+ channel histidine kinase KdpD	2.1650429039
+UniRef50_M9VFD9: Osmosensitive K+ channel histidine kinase KdpD|g__Propionibacterium.s__Propionibacterium_acnes	2.1650429039
+UniRef50_Q67KN9: NADH-quinone oxidoreductase subunit D 2	2.1649092068
+UniRef50_Q67KN9: NADH-quinone oxidoreductase subunit D 2|g__Clostridium.s__Clostridium_beijerinckii	2.1649092068
+UniRef50_G8VCT1: Lysophospholipase	2.1648118136
+UniRef50_G8VCT1: Lysophospholipase|g__Propionibacterium.s__Propionibacterium_acnes	1.6260162602
+UniRef50_G8VCT1: Lysophospholipase|unclassified	0.5387955534
+UniRef50_O25916: Replicative DNA helicase	2.1647309789
+UniRef50_O25916: Replicative DNA helicase|g__Helicobacter.s__Helicobacter_pylori	2.1647309789
+UniRef50_C1CYZ3	2.1645021645
+UniRef50_C1CYZ3|g__Deinococcus.s__Deinococcus_radiodurans	2.1645021645
+UniRef50_D5AUU5	2.1645021645
+UniRef50_D5AUU5|unclassified	2.1645021645
+UniRef50_F4L8W0	2.1645021645
+UniRef50_F4L8W0|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1645021645
+UniRef50_G2TPA3: PfkB domain protein	2.1645021645
+UniRef50_G2TPA3: PfkB domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.1645021645
+UniRef50_K0B2S0	2.1645021645
+UniRef50_K0B2S0|g__Acinetobacter.s__Acinetobacter_baumannii	2.1645021645
+UniRef50_L1FHD3	2.1645021645
+UniRef50_L1FHD3|g__Escherichia.s__Escherichia_coli	2.1645021645
+UniRef50_Q3J584: Tetratricopeptide repeat protein	2.1645021645
+UniRef50_Q3J584: Tetratricopeptide repeat protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.1645021645
+UniRef50_Q9RXB7	2.1645021645
+UniRef50_Q9RXB7|g__Deinococcus.s__Deinococcus_radiodurans	2.1645021645
+UniRef50_D3QDQ1	2.1645021645
+UniRef50_D3QDQ1|unclassified	2.1645021645
+UniRef50_UPI00037F48E7: hypothetical protein	2.1644641464
+UniRef50_UPI00037F48E7: hypothetical protein|unclassified	2.1644641464
+UniRef50_Q9RSR9: Oligoendopeptidase F, putative	2.1644388546
+UniRef50_Q9RSR9: Oligoendopeptidase F, putative|g__Deinococcus.s__Deinococcus_radiodurans	2.1644388546
+UniRef50_X6K2H2	2.1641747325
+UniRef50_X6K2H2|unclassified	2.1641747325
+UniRef50_UPI000470BCA6: RNA polymerase sigma-70 factor, partial	2.1641565966
+UniRef50_UPI000470BCA6: RNA polymerase sigma-70 factor, partial|unclassified	2.1641565966
+UniRef50_M9VL79	2.1640331148
+UniRef50_M9VL79|unclassified	2.1640331148
+UniRef50_N6UCU8	2.1638160641
+UniRef50_N6UCU8|unclassified	2.1638160641
+UniRef50_V9VQ31: UPF0260 protein METH_04835	2.1637814873
+UniRef50_V9VQ31: UPF0260 protein METH_04835|unclassified	2.1637814873
+UniRef50_UPI0004658FC6: hypothetical protein	2.1633612851
+UniRef50_UPI0004658FC6: hypothetical protein|unclassified	2.1633612851
+UniRef50_S9RYR7: Putative signal-transduction protein	2.1633606973
+UniRef50_S9RYR7: Putative signal-transduction protein|unclassified	2.1633606973
+UniRef50_A0A023YLW8	2.1632917075
+UniRef50_A0A023YLW8|unclassified	2.1632917075
+UniRef50_B5YSZ2	2.1632917075
+UniRef50_B5YSZ2|unclassified	2.1632917075
+UniRef50_A0A018M2I1	2.1632152236
+UniRef50_A0A018M2I1|unclassified	2.1632152236
+UniRef50_M1N3H4: Exopolysaccharide biosynthesis protein	2.1631018345
+UniRef50_M1N3H4: Exopolysaccharide biosynthesis protein|g__Clostridium.s__Clostridium_beijerinckii	2.1631018345
+UniRef50_Q73WQ0	2.1625657721
+UniRef50_Q73WQ0|unclassified	2.1625657721
+UniRef50_D6SDK6	2.1621913251
+UniRef50_D6SDK6|unclassified	2.1621913251
+UniRef50_Q56998: UvrABC system protein B	2.1615832692
+UniRef50_Q56998: UvrABC system protein B|g__Neisseria.s__Neisseria_meningitidis	2.1615832692
+UniRef50_A0A017IJ86	2.1615745459
+UniRef50_A0A017IJ86|unclassified	2.1615745459
+UniRef50_A7BEJ6: LPXTG-motif cell wall anchor domain protein	2.1615662531
+UniRef50_A7BEJ6: LPXTG-motif cell wall anchor domain protein|unclassified	2.1615662531
+UniRef50_I6T197: Chitin-binding protein CbpD	2.1615587579
+UniRef50_I6T197: Chitin-binding protein CbpD|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1615587579
+UniRef50_UPI0003496332: hypothetical protein	2.1612709872
+UniRef50_UPI0003496332: hypothetical protein|unclassified	2.1612709872
+UniRef50_G8ARC9	2.1608066034
+UniRef50_G8ARC9|unclassified	2.1608066034
+UniRef50_UPI00036664BA: hypothetical protein	2.1607605233
+UniRef50_UPI00036664BA: hypothetical protein|unclassified	2.1607605233
+UniRef50_UPI0004573A86: PREDICTED: peroxiredoxin-5, mitochondrial-like, partial	2.1603398602
+UniRef50_UPI0004573A86: PREDICTED: peroxiredoxin-5, mitochondrial-like, partial|unclassified	2.1603398602
+UniRef50_A0A058ZPQ9: ATPase	2.1600196758
+UniRef50_A0A058ZPQ9: ATPase|unclassified	2.1600196758
+UniRef50_B1FPK0	2.1600158353
+UniRef50_B1FPK0|unclassified	2.1600158353
+UniRef50_C6XRQ8	2.1598272138
+UniRef50_C6XRQ8|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1598272138
+UniRef50_G9WDQ0: Arginine/agmatine antiporter	2.1598272138
+UniRef50_G9WDQ0: Arginine/agmatine antiporter|g__Escherichia.s__Escherichia_coli	2.1598272138
+UniRef50_F0RLA6	2.1595760774
+UniRef50_F0RLA6|g__Deinococcus.s__Deinococcus_radiodurans	2.1595760774
+UniRef50_C8RX76: Flagellar protein FlgJ, putative	2.1594965944
+UniRef50_C8RX76: Flagellar protein FlgJ, putative|unclassified	2.1594965944
+UniRef50_V9T6F2: Type II secretion system protein	2.1594083834
+UniRef50_V9T6F2: Type II secretion system protein|unclassified	2.1594083834
+UniRef50_UPI00037ADC39: 2-dehydropantoate 2-reductase, partial	2.1589711610
+UniRef50_UPI00037ADC39: 2-dehydropantoate 2-reductase, partial|unclassified	2.1589711610
+UniRef50_U5MMQ6: Stage II sporulation P	2.1587718171
+UniRef50_U5MMQ6: Stage II sporulation P|g__Clostridium.s__Clostridium_beijerinckii	2.1587718171
+UniRef50_N6V8V2	2.1571937305
+UniRef50_N6V8V2|unclassified	2.1571937305
+UniRef50_A6LWU2: ABC transporter related	2.1569366151
+UniRef50_A6LWU2: ABC transporter related|g__Clostridium.s__Clostridium_beijerinckii	2.1569366151
+UniRef50_E1HW74	2.1568993773
+UniRef50_E1HW74|unclassified	2.1568993773
+UniRef50_UPI00041AFFF6: 50S ribosomal protein L35	2.1568672132
+UniRef50_UPI00041AFFF6: 50S ribosomal protein L35|unclassified	2.1568672132
+UniRef50_M7M6N5: Transposase domain protein	2.1567563005
+UniRef50_M7M6N5: Transposase domain protein|unclassified	2.1567563005
+UniRef50_A0A011RY97	2.1556087979
+UniRef50_A0A011RY97|unclassified	2.1556087979
+UniRef50_A9MP20	2.1555872497
+UniRef50_A9MP20|g__Escherichia.s__Escherichia_coli	2.1555872497
+UniRef50_V5SY76: ATPase AAA	2.1555860384
+UniRef50_V5SY76: ATPase AAA|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1555860384
+UniRef50_G2CHD9: Oxygen-insensitive NADPH nitroreductase	2.1551724138
+UniRef50_G2CHD9: Oxygen-insensitive NADPH nitroreductase|g__Escherichia.s__Escherichia_coli	2.1551724138
+UniRef50_J7QB47: Escherichia coli IMT2125 genomic chromosome, IMT2125	2.1551724138
+UniRef50_J7QB47: Escherichia coli IMT2125 genomic chromosome, IMT2125|g__Escherichia.s__Escherichia_coli	2.1551724138
+UniRef50_K9ZYD2: Exodeoxyribonuclease III	2.1551724138
+UniRef50_K9ZYD2: Exodeoxyribonuclease III|g__Deinococcus.s__Deinococcus_radiodurans	2.1551724138
+UniRef50_Q9X2I3: Septum site-determining protein MinD	2.1551724138
+UniRef50_Q9X2I3: Septum site-determining protein MinD|g__Clostridium.s__Clostridium_beijerinckii	2.1551724138
+UniRef50_V8G0X5: Cell wall-binding protein	2.1551724138
+UniRef50_V8G0X5: Cell wall-binding protein|g__Clostridium.s__Clostridium_beijerinckii	2.1551724138
+UniRef50_V9WZR6: Molybdate ABC transporter substrate-binding protein	2.1551724138
+UniRef50_V9WZR6: Molybdate ABC transporter substrate-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1551724138
+UniRef50_E5AKN9: Phage protein	2.1550738478
+UniRef50_E5AKN9: Phage protein|unclassified	2.1550738478
+UniRef50_G8SMI0	2.1544855401
+UniRef50_G8SMI0|unclassified	2.1544855401
+UniRef50_B4SJH6: NADH-quinone oxidoreductase subunit D 1	2.1535329997
+UniRef50_B4SJH6: NADH-quinone oxidoreductase subunit D 1|g__Neisseria.s__Neisseria_meningitidis	1.9560357675
+UniRef50_B4SJH6: NADH-quinone oxidoreductase subunit D 1|unclassified	0.1974972322
+UniRef50_S9QDY9	2.1533014931
+UniRef50_S9QDY9|unclassified	2.1533014931
+UniRef50_R6Z559	2.1527887446
+UniRef50_R6Z559|unclassified	2.1527887446
+UniRef50_J7DB05	2.1526699869
+UniRef50_J7DB05|unclassified	2.1526699869
+UniRef50_E7T1C8	2.1525631686
+UniRef50_E7T1C8|unclassified	2.1525631686
+UniRef50_C7IZX5: Os03g0359100 protein	2.1516782294
+UniRef50_C7IZX5: Os03g0359100 protein|unclassified	2.1516782294
+UniRef50_M1MXQ5: Amylopullulanase AmyB	2.1515756134
+UniRef50_M1MXQ5: Amylopullulanase AmyB|g__Clostridium.s__Clostridium_beijerinckii	2.1515756134
+UniRef50_G7M911: Major facilitator superfamily MFS_1	2.1514539468
+UniRef50_G7M911: Major facilitator superfamily MFS_1|g__Clostridium.s__Clostridium_beijerinckii	2.1514539468
+UniRef50_UPI0004673990: histidinol dehydrogenase	2.1506951588
+UniRef50_UPI0004673990: histidinol dehydrogenase|unclassified	2.1506951588
+UniRef50_A5ULZ5: Methyl-coenzyme M reductase, D subunit, McrD	2.1505376344
+UniRef50_A5ULZ5: Methyl-coenzyme M reductase, D subunit, McrD|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.1505376344
+UniRef50_F0QNA7	2.1505376344
+UniRef50_F0QNA7|g__Acinetobacter.s__Acinetobacter_baumannii	2.1505376344
+UniRef50_F9YYE2: Cobalt transport protein CbiQ	2.1505376344
+UniRef50_F9YYE2: Cobalt transport protein CbiQ|g__Propionibacterium.s__Propionibacterium_acnes	2.1505376344
+UniRef50_K2AG36: Alpha-2-macroglobulin protein (Fragment)	2.1505376344
+UniRef50_K2AG36: Alpha-2-macroglobulin protein (Fragment)|unclassified	2.1505376344
+UniRef50_Q1QWQ5: 6-phosphogluconate dehydrogenase, NAD-binding protein	2.1505376344
+UniRef50_Q1QWQ5: 6-phosphogluconate dehydrogenase, NAD-binding protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.1505376344
+UniRef50_Q9RZL3	2.1505376344
+UniRef50_Q9RZL3|unclassified	2.1505376344
+UniRef50_R5JK63: Hypoxanthine phosphoribosyltransferase	2.1505376344
+UniRef50_R5JK63: Hypoxanthine phosphoribosyltransferase|g__Clostridium.s__Clostridium_beijerinckii	2.1505376344
+UniRef50_T1UA89: Neuraminyllactose-binding hemagglutinin family protein	2.1505376344
+UniRef50_T1UA89: Neuraminyllactose-binding hemagglutinin family protein|g__Helicobacter.s__Helicobacter_pylori	2.1505376344
+UniRef50_K2HGL3	2.1501206281
+UniRef50_K2HGL3|unclassified	2.1501206281
+UniRef50_UPI00036E7AD0: glutathione S-transferase	2.1499926318
+UniRef50_UPI00036E7AD0: glutathione S-transferase|unclassified	2.1499926318
+UniRef50_D4KTJ1: ABC-type Fe3+-hydroxamate transport system, periplasmic component	2.1498345748
+UniRef50_D4KTJ1: ABC-type Fe3+-hydroxamate transport system, periplasmic component|g__Clostridium.s__Clostridium_beijerinckii	2.1498345748
+UniRef50_Q46VJ2: Twin-arginine translocation pathway signal:ABC transporter, substrate-binding protein, aliphatic sulfonates	2.1494124631
+UniRef50_Q46VJ2: Twin-arginine translocation pathway signal:ABC transporter, substrate-binding protein, aliphatic sulfonates|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1494124631
+UniRef50_F9YWL1: ABC transporter	2.1490531741
+UniRef50_F9YWL1: ABC transporter|g__Propionibacterium.s__Propionibacterium_acnes	2.1490531741
+UniRef50_D3QIK0	2.1480952211
+UniRef50_D3QIK0|unclassified	2.1480952211
+UniRef50_D7WB79: Succinate dehydrogenase flavoprotein subunit	2.1476773962
+UniRef50_D7WB79: Succinate dehydrogenase flavoprotein subunit|g__Propionibacterium.s__Propionibacterium_acnes	2.1476773962
+UniRef50_B8G0S1: Glycosyl transferase family 4	2.1475949933
+UniRef50_B8G0S1: Glycosyl transferase family 4|g__Clostridium.s__Clostridium_beijerinckii	2.1475949933
+UniRef50_A4WRB9	2.1471927327
+UniRef50_A4WRB9|unclassified	2.1471927327
+UniRef50_W7U7T7	2.1469943780
+UniRef50_W7U7T7|unclassified	2.1469943780
+UniRef50_D1BK43	2.1469532079
+UniRef50_D1BK43|g__Propionibacterium.s__Propionibacterium_acnes	2.1469532079
+UniRef50_K6ZEG6	2.1468354853
+UniRef50_K6ZEG6|unclassified	2.1468354853
+UniRef50_Q03027: Alkaline protease secretion protein AprF	2.1467146835
+UniRef50_Q03027: Alkaline protease secretion protein AprF|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1467146835
+UniRef50_UPI0003B66FA9: FAD-dependent pyridine nucleotide-disulfide oxidoreductase, partial	2.1466808920
+UniRef50_UPI0003B66FA9: FAD-dependent pyridine nucleotide-disulfide oxidoreductase, partial|unclassified	2.1466808920
+UniRef50_G7U7D4: Sugar-binding periplasmic protein	2.1464994332
+UniRef50_G7U7D4: Sugar-binding periplasmic protein|g__Propionibacterium.s__Propionibacterium_acnes	2.1464994332
+UniRef50_UPI00029A6D85: thioredoxin	2.1463534582
+UniRef50_UPI00029A6D85: thioredoxin|unclassified	2.1463534582
+UniRef50_U3AG04	2.1462327950
+UniRef50_U3AG04|unclassified	2.1462327950
+UniRef50_D7CXV9: Electron transfer flavoprotein alpha/beta-subunit	2.1459227468
+UniRef50_D7CXV9: Electron transfer flavoprotein alpha/beta-subunit|g__Deinococcus.s__Deinococcus_radiodurans	2.1459227468
+UniRef50_E1I6F8	2.1459227468
+UniRef50_E1I6F8|g__Escherichia.s__Escherichia_coli	2.1459227468
+UniRef50_G2JMU8	2.1459227468
+UniRef50_G2JMU8|g__Acinetobacter.s__Acinetobacter_baumannii	2.1459227468
+UniRef50_G7U769: Translocase subunit	2.1459227468
+UniRef50_G7U769: Translocase subunit|g__Propionibacterium.s__Propionibacterium_acnes	2.1459227468
+UniRef50_Q0C4R4	2.1459227468
+UniRef50_Q0C4R4|unclassified	2.1459227468
+UniRef50_Q9RW85: MutT/nudix family protein	2.1459227468
+UniRef50_Q9RW85: MutT/nudix family protein|g__Deinococcus.s__Deinococcus_radiodurans	2.1459227468
+UniRef50_V6F9W2	2.1459227468
+UniRef50_V6F9W2|g__Escherichia.s__Escherichia_coli	2.1459227468
+UniRef50_A6LX56: PAS/PAC sensor signal transduction histidine kinase	2.1454873495
+UniRef50_A6LX56: PAS/PAC sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	2.1454873495
+UniRef50_Q21M93: DNA-directed RNA polymerase subunit beta	2.1446467599
+UniRef50_Q21M93: DNA-directed RNA polymerase subunit beta|g__Acinetobacter.s__Acinetobacter_baumannii	2.0756059272
+UniRef50_Q21M93: DNA-directed RNA polymerase subunit beta|unclassified	0.0690408327
+UniRef50_U9MRK7: Choline transporter	2.1445658389
+UniRef50_U9MRK7: Choline transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1445658389
+UniRef50_A5W0U8: Adenine phosphoribosyltransferase	2.1434734986
+UniRef50_A5W0U8: Adenine phosphoribosyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8248175182
+UniRef50_A5W0U8: Adenine phosphoribosyltransferase|unclassified	0.3186559804
+UniRef50_W1MRE5: General secretion pathway protein D	2.1429177118
+UniRef50_W1MRE5: General secretion pathway protein D|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1429177118
+UniRef50_A0JSX3: Carbohydrate ABC transporter membrane protein 1, CUT1 family	2.1428837769
+UniRef50_A0JSX3: Carbohydrate ABC transporter membrane protein 1, CUT1 family|g__Propionibacterium.s__Propionibacterium_acnes	2.1428837769
+UniRef50_UPI0003660926: Cro/Cl family transcriptional regulator	2.1428412022
+UniRef50_UPI0003660926: Cro/Cl family transcriptional regulator|unclassified	2.1428412022
+UniRef50_X7EE68	2.1428024658
+UniRef50_X7EE68|unclassified	2.1428024658
+UniRef50_UPI00035005CE: PREDICTED: epstein-Barr nuclear antigen 1-like	2.1427684525
+UniRef50_UPI00035005CE: PREDICTED: epstein-Barr nuclear antigen 1-like|unclassified	2.1427684525
+UniRef50_K4AA43	2.1424012624
+UniRef50_K4AA43|unclassified	2.1424012624
+UniRef50_M1MRV5: Neutral endopeptidase PepO	2.1423418455
+UniRef50_M1MRV5: Neutral endopeptidase PepO|g__Clostridium.s__Clostridium_beijerinckii	2.1423418455
+UniRef50_A4WWK4	2.1416376508
+UniRef50_A4WWK4|unclassified	2.1416376508
+UniRef50_E0Q484	2.1415457761
+UniRef50_E0Q484|unclassified	2.1415457761
+UniRef50_M1MLW2: dTDP-glucose 4,6-dehydratase 2	2.1414847322
+UniRef50_M1MLW2: dTDP-glucose 4,6-dehydratase 2|g__Clostridium.s__Clostridium_beijerinckii	2.1414847322
+UniRef50_E3GEX1: Glyoxalase	2.1413276231
+UniRef50_E3GEX1: Glyoxalase|g__Clostridium.s__Clostridium_beijerinckii	2.1413276231
+UniRef50_F5LYC0	2.1413276231
+UniRef50_F5LYC0|unclassified	2.1413276231
+UniRef50_UPI000301D150: hypothetical protein	2.1413276231
+UniRef50_UPI000301D150: hypothetical protein|unclassified	2.1413276231
+UniRef50_W1MT85: Sulfite reductase	2.1413276231
+UniRef50_W1MT85: Sulfite reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1413276231
+UniRef50_X8AIW7	2.1413276231
+UniRef50_X8AIW7|unclassified	2.1413276231
+UniRef50_I6H2Z2: Ferritin-like protein	2.1410830440
+UniRef50_I6H2Z2: Ferritin-like protein|unclassified	2.1410830440
+UniRef50_UPI0003664B75: hypothetical protein	2.1409329022
+UniRef50_UPI0003664B75: hypothetical protein|unclassified	2.1409329022
+UniRef50_A5UP61	2.1406454312
+UniRef50_A5UP61|unclassified	2.1406454312
+UniRef50_A6V7C6	2.1402436078
+UniRef50_A6V7C6|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1402436078
+UniRef50_Q4KEY4: Chitinase	2.1402425711
+UniRef50_Q4KEY4: Chitinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1402425711
+UniRef50_UPI000370DECD: hypothetical protein	2.1401790726
+UniRef50_UPI000370DECD: hypothetical protein|unclassified	2.1401790726
+UniRef50_U2YHL2: ArsC family protein	2.1395200682
+UniRef50_U2YHL2: ArsC family protein|unclassified	2.1395200682
+UniRef50_R5VPY7: Phosphorylase	2.1388301584
+UniRef50_R5VPY7: Phosphorylase|g__Clostridium.s__Clostridium_beijerinckii	2.1388301584
+UniRef50_L7VT83: Chemotaxis protein	2.1377513128
+UniRef50_L7VT83: Chemotaxis protein|g__Clostridium.s__Clostridium_beijerinckii	2.1377513128
+UniRef50_F3ZDF6	2.1374238670
+UniRef50_F3ZDF6|unclassified	2.1374238670
+UniRef50_Q1J1R8: Tfp pilus assembly pathway, ATPase PilB	2.1372724024
+UniRef50_Q1J1R8: Tfp pilus assembly pathway, ATPase PilB|g__Deinococcus.s__Deinococcus_radiodurans	2.1372724024
+UniRef50_Q1QCP2: tRNA 2-thiocytidine biosynthesis protein TtcA	2.1372302774
+UniRef50_Q1QCP2: tRNA 2-thiocytidine biosynthesis protein TtcA|g__Neisseria.s__Neisseria_meningitidis	2.1372302774
+UniRef50_V0V7E3	2.1369253843
+UniRef50_V0V7E3|unclassified	2.1369253843
+UniRef50_L0GKZ5: Asparagine synthetase	2.1367806261
+UniRef50_L0GKZ5: Asparagine synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1367806261
+UniRef50_B4CYJ0: Alcohol dehydrogenase GroES domain protein	2.1367521368
+UniRef50_B4CYJ0: Alcohol dehydrogenase GroES domain protein|g__Escherichia.s__Escherichia_coli	2.1367521368
+UniRef50_F0VS49: Pseudouridine synthase	2.1367521368
+UniRef50_F0VS49: Pseudouridine synthase|g__Streptococcus.s__Streptococcus_agalactiae	2.1367521368
+UniRef50_K0CI74	2.1367521368
+UniRef50_K0CI74|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1367521368
+UniRef50_R4VR51: YcbB domain protein	2.1367521368
+UniRef50_R4VR51: YcbB domain protein|g__Streptococcus.s__Streptococcus_agalactiae	2.1367521368
+UniRef50_R5K3N6	2.1367521368
+UniRef50_R5K3N6|g__Clostridium.s__Clostridium_beijerinckii	2.1367521368
+UniRef50_UPI00029DAAA6	2.1367513896
+UniRef50_UPI00029DAAA6|unclassified	2.1367513896
+UniRef50_U6LX81	2.1365974068
+UniRef50_U6LX81|unclassified	2.1365974068
+UniRef50_B2JHN6: Integral membrane sensor signal transduction histidine kinase	2.1362368536
+UniRef50_B2JHN6: Integral membrane sensor signal transduction histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1362368536
+UniRef50_R4ZIA7: Cell surface protein	2.1360983557
+UniRef50_R4ZIA7: Cell surface protein|g__Streptococcus.s__Streptococcus_agalactiae	2.1360983557
+UniRef50_E3EXD3: Flagellar protein, putative	2.1360843494
+UniRef50_E3EXD3: Flagellar protein, putative|unclassified	2.1360843494
+UniRef50_UPI0003792FEF: thioredoxin, partial	2.1360393201
+UniRef50_UPI0003792FEF: thioredoxin, partial|unclassified	2.1360393201
+UniRef50_UPI00036C8E2B: hypothetical protein	2.1357189416
+UniRef50_UPI00036C8E2B: hypothetical protein|unclassified	2.1357189416
+UniRef50_X6G717: Transposase	2.1357090208
+UniRef50_X6G717: Transposase|unclassified	2.1357090208
+UniRef50_Q2FD95: AdeI	2.1356899567
+UniRef50_Q2FD95: AdeI|g__Acinetobacter.s__Acinetobacter_baumannii	2.1356899567
+UniRef50_UPI0002BAB8F5: hypothetical protein, partial	2.1352994952
+UniRef50_UPI0002BAB8F5: hypothetical protein, partial|unclassified	2.1352994952
+UniRef50_D8GMQ7: Predicted acyl-CoA thioesterase 1	2.1351705290
+UniRef50_D8GMQ7: Predicted acyl-CoA thioesterase 1|g__Clostridium.s__Clostridium_beijerinckii	2.1351705290
+UniRef50_UPI0004797761: hypothetical protein	2.1349490057
+UniRef50_UPI0004797761: hypothetical protein|unclassified	2.1349490057
+UniRef50_U5MQI3: Thiamine biosynthesis lipoprotein ApbE	2.1344741494
+UniRef50_U5MQI3: Thiamine biosynthesis lipoprotein ApbE|g__Clostridium.s__Clostridium_beijerinckii	2.1344741494
+UniRef50_A5W887	2.1343440157
+UniRef50_A5W887|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7958132996
+UniRef50_A5W887|unclassified	0.3385307161
+UniRef50_G7M469: Drug resistance transporter, EmrB/QacA subfamily	2.1343259634
+UniRef50_G7M469: Drug resistance transporter, EmrB/QacA subfamily|g__Clostridium.s__Clostridium_beijerinckii	2.1343259634
+UniRef50_D9UIH8: Predicted protein	2.1333657935
+UniRef50_D9UIH8: Predicted protein|unclassified	2.1333657935
+UniRef50_UPI000345870C: hypothetical protein	2.1332475062
+UniRef50_UPI000345870C: hypothetical protein|unclassified	2.1332475062
+UniRef50_A0A011Q6K2	2.1331269779
+UniRef50_A0A011Q6K2|unclassified	2.1331269779
+UniRef50_UPI000049D95F: hypothetical protein SPOA0411	2.1330178227
+UniRef50_UPI000049D95F: hypothetical protein SPOA0411|unclassified	2.1330178227
+UniRef50_H2A7K3: COG4478, integral membrane protein	2.1322894054
+UniRef50_H2A7K3: COG4478, integral membrane protein|g__Streptococcus.s__Streptococcus_agalactiae	1.8975332068
+UniRef50_H2A7K3: COG4478, integral membrane protein|unclassified	0.2347561985
+UniRef50_A4WY70	2.1321961620
+UniRef50_A4WY70|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.1321961620
+UniRef50_A5WCM3: Peptidoglycan-binding LysM	2.1321961620
+UniRef50_A5WCM3: Peptidoglycan-binding LysM|g__Acinetobacter.s__Acinetobacter_baumannii	2.1321961620
+UniRef50_D4HFA9	2.1321961620
+UniRef50_D4HFA9|g__Propionibacterium.s__Propionibacterium_acnes	2.1321961620
+UniRef50_D8JHR5	2.1321961620
+UniRef50_D8JHR5|g__Acinetobacter.s__Acinetobacter_baumannii	2.1321961620
+UniRef50_H9ULF7	2.1321961620
+UniRef50_H9ULF7|unclassified	2.1321961620
+UniRef50_O27714: Transcription elongation factor Spt5	2.1321961620
+UniRef50_O27714: Transcription elongation factor Spt5|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.1321961620
+UniRef50_P0AEW0: Hydrogenase 3 maturation protease	2.1321961620
+UniRef50_P0AEW0: Hydrogenase 3 maturation protease|g__Escherichia.s__Escherichia_coli	2.1321961620
+UniRef50_Q9HZJ8: Cell division inhibitor SulA	2.1321961620
+UniRef50_Q9HZJ8: Cell division inhibitor SulA|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1321961620
+UniRef50_R1ALN2	2.1321961620
+UniRef50_R1ALN2|g__Neisseria.s__Neisseria_meningitidis	2.1321961620
+UniRef50_S4YYU3: GntR family transcriptional regulator	2.1321961620
+UniRef50_S4YYU3: GntR family transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	2.1321961620
+UniRef50_S8H2S9: Glucokinase	2.1321961620
+UniRef50_S8H2S9: Glucokinase|g__Streptococcus.s__Streptococcus_agalactiae	2.1321961620
+UniRef50_U5MPS5: Acetyltransferase	2.1321961620
+UniRef50_U5MPS5: Acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	2.1321961620
+UniRef50_UPI00036EAE67: hypothetical protein	2.1320946768
+UniRef50_UPI00036EAE67: hypothetical protein|unclassified	2.1320946768
+UniRef50_R8ZLH3: Putative tetratricopeptide repeat domain protein	2.1318314288
+UniRef50_R8ZLH3: Putative tetratricopeptide repeat domain protein|unclassified	2.1318314288
+UniRef50_A0A014FPC4	2.1317597109
+UniRef50_A0A014FPC4|g__Acinetobacter.s__Acinetobacter_baumannii	2.1317597109
+UniRef50_V0VCV5	2.1317341404
+UniRef50_V0VCV5|unclassified	2.1317341404
+UniRef50_UPI0003EF10EB: hypothetical protein	2.1312293880
+UniRef50_UPI0003EF10EB: hypothetical protein|unclassified	2.1312293880
+UniRef50_X7TXC3: PE family protein	2.1310439403
+UniRef50_X7TXC3: PE family protein|unclassified	2.1310439403
+UniRef50_A0A059IJ51: Membrane protein	2.1308547523
+UniRef50_A0A059IJ51: Membrane protein|unclassified	2.1308547523
+UniRef50_UPI00037BF563: hypothetical protein	2.1306518634
+UniRef50_UPI00037BF563: hypothetical protein|unclassified	2.1306518634
+UniRef50_C5Y4M7	2.1305475988
+UniRef50_C5Y4M7|unclassified	2.1305475988
+UniRef50_F9YY95	2.1304468046
+UniRef50_F9YY95|g__Propionibacterium.s__Propionibacterium_acnes	2.1304468046
+UniRef50_A4VN57: Oxidoreductase, molybdopterin-binding	2.1304005534
+UniRef50_A4VN57: Oxidoreductase, molybdopterin-binding|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1304005534
+UniRef50_A6M335: 1,4-alpha-glucan branching enzyme	2.1303979268
+UniRef50_A6M335: 1,4-alpha-glucan branching enzyme|g__Clostridium.s__Clostridium_beijerinckii	2.1303979268
+UniRef50_C2MXB2: General stress protein	2.1302691547
+UniRef50_C2MXB2: General stress protein|unclassified	2.1302691547
+UniRef50_N6YVV1: Dehydrogenase	2.1301915941
+UniRef50_N6YVV1: Dehydrogenase|unclassified	2.1301915941
+UniRef50_UPI00047071A5: hypothetical protein, partial	2.1289883613
+UniRef50_UPI00047071A5: hypothetical protein, partial|unclassified	2.1289883613
+UniRef50_V5PNN3: Hydrogenase expression protein HypA	2.1289483649
+UniRef50_V5PNN3: Hydrogenase expression protein HypA|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1289483649
+UniRef50_R4RHG4	2.1289048081
+UniRef50_R4RHG4|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1289048081
+UniRef50_A6M260: ABC transporter related	2.1284126021
+UniRef50_A6M260: ABC transporter related|g__Clostridium.s__Clostridium_beijerinckii	2.1284126021
+UniRef50_UPI00037204D3: hypothetical protein, partial	2.1282377983
+UniRef50_UPI00037204D3: hypothetical protein, partial|unclassified	2.1282377983
+UniRef50_E1JGJ7: Cytochrome c oxidase, cbb3-type, CcoQ subunit	2.1281410917
+UniRef50_E1JGJ7: Cytochrome c oxidase, cbb3-type, CcoQ subunit|unclassified	2.1281410917
+UniRef50_A6LSX8	2.1281068907
+UniRef50_A6LSX8|g__Clostridium.s__Clostridium_beijerinckii	2.1281068907
+UniRef50_A6VDI3: Polyhydroxyalkanoate synthesis protein PhaF	2.1280063750
+UniRef50_A6VDI3: Polyhydroxyalkanoate synthesis protein PhaF|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1280063750
+UniRef50_D4HBC2: Transporter, CPA2 family	2.1276784988
+UniRef50_D4HBC2: Transporter, CPA2 family|g__Propionibacterium.s__Propionibacterium_acnes	2.1276784988
+UniRef50_A3M6B4	2.1276595745
+UniRef50_A3M6B4|g__Acinetobacter.s__Acinetobacter_baumannii	2.1276595745
+UniRef50_E9F9G9	2.1276595745
+UniRef50_E9F9G9|unclassified	2.1276595745
+UniRef50_G4LLE1	2.1276595745
+UniRef50_G4LLE1|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1276595745
+UniRef50_G7ZRL4: Transposase	2.1276595745
+UniRef50_G7ZRL4: Transposase|g__Staphylococcus.s__Staphylococcus_aureus	2.1276595745
+UniRef50_H3VMS8	2.1276595745
+UniRef50_H3VMS8|g__Staphylococcus.s__Staphylococcus_epidermidis	2.1276595745
+UniRef50_J9YRQ7: ABC transporter ATP-binding protein	2.1276595745
+UniRef50_J9YRQ7: ABC transporter ATP-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	2.1276595745
+UniRef50_Q8DZS0	2.1276595745
+UniRef50_Q8DZS0|g__Streptococcus.s__Streptococcus_agalactiae	2.1276595745
+UniRef50_N8UCZ7: Magnesium-translocating P-type ATPase	2.1273337058
+UniRef50_N8UCZ7: Magnesium-translocating P-type ATPase|g__Acinetobacter.s__Acinetobacter_baumannii	2.1273337058
+UniRef50_M9VHU4: DNA gyrase/topoisomerase IV, A subunit	2.1264452455
+UniRef50_M9VHU4: DNA gyrase/topoisomerase IV, A subunit|g__Propionibacterium.s__Propionibacterium_acnes	2.1264452455
+UniRef50_D8K701: UPF0125 protein Nwat_1827	2.1262469974
+UniRef50_D8K701: UPF0125 protein Nwat_1827|unclassified	2.1262469974
+UniRef50_I6SY16	2.1259967478
+UniRef50_I6SY16|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1259967478
+UniRef50_UPI0004714D3A: NADH dehydrogenase	2.1257500875
+UniRef50_UPI0004714D3A: NADH dehydrogenase|unclassified	2.1257500875
+UniRef50_Q9HU63	2.1252002911
+UniRef50_Q9HU63|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1252002911
+UniRef50_G0DV19: Efflux ABC transporter, permease protein	2.1251907304
+UniRef50_G0DV19: Efflux ABC transporter, permease protein|g__Propionibacterium.s__Propionibacterium_acnes	2.1251907304
+UniRef50_C7C6J2	2.1249814010
+UniRef50_C7C6J2|unclassified	2.1249814010
+UniRef50_I1EV25	2.1249126286
+UniRef50_I1EV25|unclassified	2.1249126286
+UniRef50_Q1RIA5: Ubiquinol-cytochrome c reductase iron-sulfur subunit	2.1248382478
+UniRef50_Q1RIA5: Ubiquinol-cytochrome c reductase iron-sulfur subunit|unclassified	2.1248382478
+UniRef50_Q9RS79: Dipeptidyl peptidase IV-related protein	2.1248259985
+UniRef50_Q9RS79: Dipeptidyl peptidase IV-related protein|g__Deinococcus.s__Deinococcus_radiodurans	2.1248259985
+UniRef50_W1DV17: FIG001826: putative inner membrane protein	2.1247856333
+UniRef50_W1DV17: FIG001826: putative inner membrane protein|unclassified	2.1247856333
+UniRef50_X2HD61: Phosphopantothenoylcysteine decarboxylase / Phosphopantothenoylcysteine synthetase	2.1247609080
+UniRef50_X2HD61: Phosphopantothenoylcysteine decarboxylase / Phosphopantothenoylcysteine synthetase|g__Neisseria.s__Neisseria_meningitidis	2.1247609080
+UniRef50_UPI0003709E94: hypothetical protein, partial	2.1244314815
+UniRef50_UPI0003709E94: hypothetical protein, partial|unclassified	2.1244314815
+UniRef50_S0R913: Mobilization protein C	2.1243759079
+UniRef50_S0R913: Mobilization protein C|unclassified	2.1243759079
+UniRef50_UPI00047CBDF2: hypothetical protein	2.1243692583
+UniRef50_UPI00047CBDF2: hypothetical protein|unclassified	2.1243692583
+UniRef50_A7ZIS2	2.1243528518
+UniRef50_A7ZIS2|unclassified	2.1243528518
+UniRef50_Q9I1L9: Dihydrolipoyl dehydrogenase	2.1243492705
+UniRef50_Q9I1L9: Dihydrolipoyl dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7828075343
+UniRef50_Q9I1L9: Dihydrolipoyl dehydrogenase|unclassified	0.3415417362
+UniRef50_UPI00046F77EB: hypothetical protein, partial	2.1243397313
+UniRef50_UPI00046F77EB: hypothetical protein, partial|unclassified	2.1243397313
+UniRef50_UPI000361B549: hypothetical protein	2.1239130970
+UniRef50_UPI000361B549: hypothetical protein|unclassified	2.1239130970
+UniRef50_N0AUD5	2.1238490262
+UniRef50_N0AUD5|unclassified	2.1238490262
+UniRef50_W1XSC1	2.1237495133
+UniRef50_W1XSC1|unclassified	2.1237495133
+UniRef50_B2V9F3: Gamma-glutamyl phosphate reductase	2.1236673493
+UniRef50_B2V9F3: Gamma-glutamyl phosphate reductase|g__Acinetobacter.s__Acinetobacter_baumannii	2.1236673493
+UniRef50_A0A010YSV0: Bifunctional uridylyltransferase/uridylyl-removing enzyme	2.1234754951
+UniRef50_A0A010YSV0: Bifunctional uridylyltransferase/uridylyl-removing enzyme|g__Acinetobacter.s__Acinetobacter_baumannii	2.1234754951
+UniRef50_UPI00041C3C00: 50S ribosomal protein L25	2.1233652491
+UniRef50_UPI00041C3C00: 50S ribosomal protein L25|unclassified	2.1233652491
+UniRef50_F9Y004: UPF0145 protein Bbr_0086	2.1232016991
+UniRef50_F9Y004: UPF0145 protein Bbr_0086|unclassified	2.1232016991
+UniRef50_B2TLC2: Integral membrane protein	2.1231422505
+UniRef50_B2TLC2: Integral membrane protein|g__Clostridium.s__Clostridium_beijerinckii	2.1231422505
+UniRef50_B2TMR7	2.1231422505
+UniRef50_B2TMR7|g__Clostridium.s__Clostridium_beijerinckii	2.1231422505
+UniRef50_E4SGC1: ABC transporter related protein	2.1231422505
+UniRef50_E4SGC1: ABC transporter related protein|g__Clostridium.s__Clostridium_beijerinckii	2.1231422505
+UniRef50_F0KMH7: Acridine efflux pump (RND family)	2.1231422505
+UniRef50_F0KMH7: Acridine efflux pump (RND family)|g__Escherichia.s__Escherichia_coli	2.1231422505
+UniRef50_F8FY64: AsnC family transcriptional regulator	2.1231422505
+UniRef50_F8FY64: AsnC family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1231422505
+UniRef50_G8RCU4: Tagatose-6-phosphate kinase	2.1231422505
+UniRef50_G8RCU4: Tagatose-6-phosphate kinase|g__Staphylococcus.s__Staphylococcus_aureus	2.1231422505
+UniRef50_P20925: Frd operon probable iron-sulfur subunit A (Fragment)	2.1231422505
+UniRef50_P20925: Frd operon probable iron-sulfur subunit A (Fragment)|g__Escherichia.s__Escherichia_coli	2.1231422505
+UniRef50_U5MNE1: Transcriptional regulator, MarR family	2.1231422505
+UniRef50_U5MNE1: Transcriptional regulator, MarR family|g__Clostridium.s__Clostridium_beijerinckii	2.1231422505
+UniRef50_W0Z1B4: Hypoxanthine-guanine phosphoribosyltransferase	2.1231422505
+UniRef50_W0Z1B4: Hypoxanthine-guanine phosphoribosyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1231422505
+UniRef50_Q07NP9	2.1230576974
+UniRef50_Q07NP9|unclassified	2.1230576974
+UniRef50_UPI0003ADB1CF: PREDICTED: artemin-like	2.1229964263
+UniRef50_UPI0003ADB1CF: PREDICTED: artemin-like|unclassified	2.1229964263
+UniRef50_A3JZH8	2.1223768884
+UniRef50_A3JZH8|unclassified	2.1223768884
+UniRef50_UPI00047C2C2F: selenate reductase subunit YgfK, partial	2.1221539703
+UniRef50_UPI00047C2C2F: selenate reductase subunit YgfK, partial|g__Escherichia.s__Escherichia_coli	2.0977229060
+UniRef50_UPI00047C2C2F: selenate reductase subunit YgfK, partial|unclassified	0.0244310642
+UniRef50_D9UFT2	2.1218882962
+UniRef50_D9UFT2|unclassified	2.1218882962
+UniRef50_E4HYL2	2.1217271849
+UniRef50_E4HYL2|unclassified	2.1217271849
+UniRef50_M1LU43: ABC-type multidrug transport system, permease component	2.1216562763
+UniRef50_M1LU43: ABC-type multidrug transport system, permease component|g__Clostridium.s__Clostridium_beijerinckii	2.1216562763
+UniRef50_S9SBN7	2.1211699301
+UniRef50_S9SBN7|unclassified	2.1211699301
+UniRef50_Q04939: Sucrose operon repressor	2.1210434274
+UniRef50_Q04939: Sucrose operon repressor|g__Streptococcus.s__Streptococcus_agalactiae	2.1210434274
+UniRef50_U5MMN5: Sensor protein GtcS	2.1204913306
+UniRef50_U5MMN5: Sensor protein GtcS|g__Clostridium.s__Clostridium_beijerinckii	2.1204913306
+UniRef50_A0A038J8M7	2.1199096111
+UniRef50_A0A038J8M7|unclassified	2.1199096111
+UniRef50_A0A013LFH7	2.1197721835
+UniRef50_A0A013LFH7|g__Acinetobacter.s__Acinetobacter_baumannii	2.1197721835
+UniRef50_UPI000426582A: hypothetical protein	2.1197011189
+UniRef50_UPI000426582A: hypothetical protein|unclassified	2.1197011189
+UniRef50_X1KHN3: Marine sediment metagenome DNA, contig: S03H2_S28983	2.1196302746
+UniRef50_X1KHN3: Marine sediment metagenome DNA, contig: S03H2_S28983|unclassified	2.1196302746
+UniRef50_A9MK50	2.1193902145
+UniRef50_A9MK50|unclassified	2.1193902145
+UniRef50_X1AGG1: Marine sediment metagenome DNA, contig: S01H4_S01254 (Fragment)	2.1193683976
+UniRef50_X1AGG1: Marine sediment metagenome DNA, contig: S01H4_S01254 (Fragment)|unclassified	2.1193683976
+UniRef50_W0YVM5	2.1192528736
+UniRef50_W0YVM5|unclassified	2.1192528736
+UniRef50_A6V6D0	2.1188281755
+UniRef50_A6V6D0|unclassified	2.1188281755
+UniRef50_A4VGZ3	2.1186440678
+UniRef50_A4VGZ3|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1186440678
+UniRef50_B4RNQ7: Autotransporter A	2.1186440678
+UniRef50_B4RNQ7: Autotransporter A|g__Neisseria.s__Neisseria_meningitidis	2.1186440678
+UniRef50_D6JZT9	2.1186440678
+UniRef50_D6JZT9|unclassified	2.1186440678
+UniRef50_J7IXF3: Response regulator with CheY-like receiver domain and winged-helix DNA-binding domain	2.1186440678
+UniRef50_J7IXF3: Response regulator with CheY-like receiver domain and winged-helix DNA-binding domain|g__Clostridium.s__Clostridium_beijerinckii	2.1186440678
+UniRef50_L7VNU0	2.1186440678
+UniRef50_L7VNU0|g__Streptococcus.s__Streptococcus_agalactiae	2.1186440678
+UniRef50_M1MJY9: Transcriptional regulator, MarR family	2.1186440678
+UniRef50_M1MJY9: Transcriptional regulator, MarR family|g__Clostridium.s__Clostridium_beijerinckii	2.1186440678
+UniRef50_UPI0004421DAE	2.1180353608
+UniRef50_UPI0004421DAE|unclassified	2.1180353608
+UniRef50_UPI00023768FE: monosaccharide-transporting ATPase, partial	2.1177817639
+UniRef50_UPI00023768FE: monosaccharide-transporting ATPase, partial|unclassified	2.1177817639
+UniRef50_U6AHF5: Secreted protein Hcp	2.1177561466
+UniRef50_U6AHF5: Secreted protein Hcp|unclassified	2.1177561466
+UniRef50_UPI0003787FA8: hypothetical protein	2.1175326332
+UniRef50_UPI0003787FA8: hypothetical protein|unclassified	2.1175326332
+UniRef50_UPI000381376E: hypothetical protein	2.1172345423
+UniRef50_UPI000381376E: hypothetical protein|unclassified	2.1172345423
+UniRef50_L1ENB1: 4Fe-4S binding domain protein	2.1165500235
+UniRef50_L1ENB1: 4Fe-4S binding domain protein|g__Escherichia.s__Escherichia_coli	2.1165500235
+UniRef50_U5MPW8: Lysophospholipase L2	2.1163938870
+UniRef50_U5MPW8: Lysophospholipase L2|g__Clostridium.s__Clostridium_beijerinckii	2.1163938870
+UniRef50_UPI0003B5954D: TetR family transcriptional regulator	2.1163249501
+UniRef50_UPI0003B5954D: TetR family transcriptional regulator|unclassified	2.1163249501
+UniRef50_N7TQJ5	2.1161627819
+UniRef50_N7TQJ5|unclassified	2.1161627819
+UniRef50_B9KL56	2.1159272402
+UniRef50_B9KL56|unclassified	2.1159272402
+UniRef50_A4YPV8	2.1158309862
+UniRef50_A4YPV8|unclassified	2.1158309862
+UniRef50_E3FF38	2.1156953576
+UniRef50_E3FF38|unclassified	2.1156953576
+UniRef50_W8TSS8	2.1154575474
+UniRef50_W8TSS8|unclassified	2.1154575474
+UniRef50_UPI0003752FD7: hypothetical protein, partial	2.1151813428
+UniRef50_UPI0003752FD7: hypothetical protein, partial|unclassified	2.1151813428
+UniRef50_UPI0003786C39: hypothetical protein	2.1151780393
+UniRef50_UPI0003786C39: hypothetical protein|unclassified	2.1151780393
+UniRef50_D2JFR0	2.1149314768
+UniRef50_D2JFR0|unclassified	2.1149314768
+UniRef50_A9GTV7	2.1148331090
+UniRef50_A9GTV7|unclassified	2.1148331090
+UniRef50_UPI000370E248: hypothetical protein	2.1147500375
+UniRef50_UPI000370E248: hypothetical protein|unclassified	2.1147500375
+UniRef50_B3TB79	2.1141649049
+UniRef50_B3TB79|unclassified	2.1141649049
+UniRef50_B7M996	2.1141649049
+UniRef50_B7M996|g__Escherichia.s__Escherichia_coli	2.1141649049
+UniRef50_G8VJJ1: Poly(3-hydroxyalkanoate) depolymerase	2.1141649049
+UniRef50_G8VJJ1: Poly(3-hydroxyalkanoate) depolymerase|g__Propionibacterium.s__Propionibacterium_acnes	2.1141649049
+UniRef50_N0APD9	2.1141649049
+UniRef50_N0APD9|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1141649049
+UniRef50_X6GW42	2.1141551871
+UniRef50_X6GW42|unclassified	2.1141551871
+UniRef50_Q48K36: Potassium-transporting ATPase B chain	2.1137249079
+UniRef50_Q48K36: Potassium-transporting ATPase B chain|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1137249079
+UniRef50_UPI00046CF004: hypothetical protein	2.1128579747
+UniRef50_UPI00046CF004: hypothetical protein|unclassified	2.1128579747
+UniRef50_UPI000469790A: hypothetical protein	2.1126741790
+UniRef50_UPI000469790A: hypothetical protein|unclassified	2.1126741790
+UniRef50_V9WQL8: Plasmid partitioning protein ParA	2.1111001298
+UniRef50_V9WQL8: Plasmid partitioning protein ParA|unclassified	2.1111001298
+UniRef50_K4R1X2	2.1109433121
+UniRef50_K4R1X2|unclassified	2.1109433121
+UniRef50_Q9RWY1: Serine/threonine protein kinase-related protein	2.1108388513
+UniRef50_Q9RWY1: Serine/threonine protein kinase-related protein|g__Deinococcus.s__Deinococcus_radiodurans	2.1108388513
+UniRef50_UPI000370F24D: hypothetical protein	2.1107082046
+UniRef50_UPI000370F24D: hypothetical protein|unclassified	2.1107082046
+UniRef50_G8VFL4: Cystathionine beta-synthase	2.1106341694
+UniRef50_G8VFL4: Cystathionine beta-synthase|g__Propionibacterium.s__Propionibacterium_acnes	2.1106341694
+UniRef50_K4TU82: Putative membrane protein (Fragment)	2.1104463518
+UniRef50_K4TU82: Putative membrane protein (Fragment)|unclassified	2.1104463518
+UniRef50_A0A058ZPF4	2.1103854784
+UniRef50_A0A058ZPF4|unclassified	2.1103854784
+UniRef50_K7T243	2.1102208848
+UniRef50_K7T243|unclassified	2.1102208848
+UniRef50_A4W401: Polyribonucleotide nucleotidyltransferase	2.1101449444
+UniRef50_A4W401: Polyribonucleotide nucleotidyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	2.1101449444
+UniRef50_X3RDX0	2.1097046414
+UniRef50_X3RDX0|unclassified	2.1097046414
+UniRef50_A6M080: Transcriptional regulator, PadR-like family	2.1097046414
+UniRef50_A6M080: Transcriptional regulator, PadR-like family|g__Clostridium.s__Clostridium_beijerinckii	2.1097046414
+UniRef50_A6M1M4	2.1097046414
+UniRef50_A6M1M4|g__Clostridium.s__Clostridium_beijerinckii	2.1097046414
+UniRef50_G2TQW7: Phosphotransferase system PTS sorbose-specific IIC subunit	2.1097046414
+UniRef50_G2TQW7: Phosphotransferase system PTS sorbose-specific IIC subunit|g__Clostridium.s__Clostridium_beijerinckii	2.1097046414
+UniRef50_Q9RU29	2.1097046414
+UniRef50_Q9RU29|g__Deinococcus.s__Deinococcus_radiodurans	2.1097046414
+UniRef50_Q9RUC1: SsrA-binding protein	2.1097046414
+UniRef50_Q9RUC1: SsrA-binding protein|g__Deinococcus.s__Deinococcus_radiodurans	2.1097046414
+UniRef50_V5SXH1: Membrane protein	2.1097046414
+UniRef50_V5SXH1: Membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1097046414
+UniRef50_W6QZB6: 6,7-dimethyl-8-ribityllumazine synthase	2.1097046414
+UniRef50_W6QZB6: 6,7-dimethyl-8-ribityllumazine synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1097046414
+UniRef50_F0MZJ7: Lipopolysaccharide N-acetylglucosaminyltransferase	2.1091917466
+UniRef50_F0MZJ7: Lipopolysaccharide N-acetylglucosaminyltransferase|g__Neisseria.s__Neisseria_meningitidis	2.1091917466
+UniRef50_B5HTP9	2.1091007794
+UniRef50_B5HTP9|unclassified	2.1091007794
+UniRef50_I5C147	2.1089408929
+UniRef50_I5C147|unclassified	2.1089408929
+UniRef50_UPI000376E365: hypothetical protein	2.1085839100
+UniRef50_UPI000376E365: hypothetical protein|unclassified	2.1085839100
+UniRef50_W5Z0A8	2.1082654941
+UniRef50_W5Z0A8|unclassified	2.1082654941
+UniRef50_T1G9F6	2.1081151975
+UniRef50_T1G9F6|unclassified	2.1081151975
+UniRef50_A6LRT4	2.1080082343
+UniRef50_A6LRT4|g__Clostridium.s__Clostridium_beijerinckii	2.1080082343
+UniRef50_K9VMS4: UDP-galactopyranose mutase	2.1074926191
+UniRef50_K9VMS4: UDP-galactopyranose mutase|g__Deinococcus.s__Deinococcus_radiodurans	2.1074926191
+UniRef50_A5N7Z4: Predicted kinase	2.1074721435
+UniRef50_A5N7Z4: Predicted kinase|g__Clostridium.s__Clostridium_beijerinckii	2.1074721435
+UniRef50_G2GJX8	2.1071751013
+UniRef50_G2GJX8|unclassified	2.1071751013
+UniRef50_A0A013Y7Z1: His Kinase A domain protein	2.1071583709
+UniRef50_A0A013Y7Z1: His Kinase A domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.1071583709
+UniRef50_A9CRC0	2.1071207105
+UniRef50_A9CRC0|unclassified	2.1071207105
+UniRef50_X2N7S0	2.1069529764
+UniRef50_X2N7S0|unclassified	2.1069529764
+UniRef50_A0A014PAW3	2.1069165997
+UniRef50_A0A014PAW3|unclassified	2.1069165997
+UniRef50_D1WL88: Oligopeptide ABC transporter, permease protein	2.1066797101
+UniRef50_D1WL88: Oligopeptide ABC transporter, permease protein|unclassified	2.1066797101
+UniRef50_UPI00038FDE67: hypothetical protein	2.1066555137
+UniRef50_UPI00038FDE67: hypothetical protein|unclassified	2.1066555137
+UniRef50_B5HQA9	2.1059684492
+UniRef50_B5HQA9|unclassified	2.1059684492
+UniRef50_F0KMR7: 3-oxoacyl-(Acyl carrier protein) synthase I	2.1058386180
+UniRef50_F0KMR7: 3-oxoacyl-(Acyl carrier protein) synthase I|g__Acinetobacter.s__Acinetobacter_baumannii	2.1058386180
+UniRef50_C3EFE9	2.1052631579
+UniRef50_C3EFE9|unclassified	2.1052631579
+UniRef50_E4BHA0: 4-phosphoerythronate dehydrogenase	2.1052631579
+UniRef50_E4BHA0: 4-phosphoerythronate dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	2.1052631579
+UniRef50_I6SK88	2.1052631579
+UniRef50_I6SK88|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1052631579
+UniRef50_M4WZP2	2.1052631579
+UniRef50_M4WZP2|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1052631579
+UniRef50_P21482: Disulfide bond formation protein B 1	2.1052631579
+UniRef50_P21482: Disulfide bond formation protein B 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1052631579
+UniRef50_V9U0L1: Transcriptional regulator	2.1050416911
+UniRef50_V9U0L1: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.1050416911
+UniRef50_UPI00046CC220: DNA-binding protein	2.1048073236
+UniRef50_UPI00046CC220: DNA-binding protein|unclassified	2.1048073236
+UniRef50_K0R9H0	2.1047548598
+UniRef50_K0R9H0|unclassified	2.1047548598
+UniRef50_Z4CKX6	2.1040761086
+UniRef50_Z4CKX6|unclassified	2.1040761086
+UniRef50_A3PRZ3	2.1039656417
+UniRef50_A3PRZ3|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.1039656417
+UniRef50_UPI00037C40B9: hypothetical protein	2.1027761432
+UniRef50_UPI00037C40B9: hypothetical protein|unclassified	2.1027761432
+UniRef50_D8JFF2: Major Facilitator Superfamily protein	2.1027150183
+UniRef50_D8JFF2: Major Facilitator Superfamily protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.1027150183
+UniRef50_UPI0003652D82: hypothetical protein	2.1026482721
+UniRef50_UPI0003652D82: hypothetical protein|unclassified	2.1026482721
+UniRef50_A4LEH1	2.1021713543
+UniRef50_A4LEH1|unclassified	2.1021713543
+UniRef50_UPI000364F832: hypothetical protein	2.1021398325
+UniRef50_UPI000364F832: hypothetical protein|unclassified	2.1021398325
+UniRef50_E1J3L2	2.1021297022
+UniRef50_E1J3L2|unclassified	2.1021297022
+UniRef50_J2K9E2: Transposase	2.1015414312
+UniRef50_J2K9E2: Transposase|unclassified	2.1015414312
+UniRef50_UPI00046A628C: PAS sensor protein	2.1014603661
+UniRef50_UPI00046A628C: PAS sensor protein|unclassified	2.1014603661
+UniRef50_I0EKX8	2.1013929902
+UniRef50_I0EKX8|g__Helicobacter.s__Helicobacter_pylori	2.1013929902
+UniRef50_A0A011F836: TonB-dependent Receptor Plug domain protein	2.1012947684
+UniRef50_A0A011F836: TonB-dependent Receptor Plug domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.1012947684
+UniRef50_G0RWQ1: Predicted protein	2.1011263862
+UniRef50_G0RWQ1: Predicted protein|unclassified	2.1011263862
+UniRef50_A2S1E2	2.1008403361
+UniRef50_A2S1E2|unclassified	2.1008403361
+UniRef50_Q1D5H7: Mutator mutT protein	2.1008403361
+UniRef50_Q1D5H7: Mutator mutT protein|g__Propionibacterium.s__Propionibacterium_acnes	2.1008403361
+UniRef50_Q5X183	2.1008403361
+UniRef50_Q5X183|g__Acinetobacter.s__Acinetobacter_baumannii	2.1008403361
+UniRef50_UPI0003B73A04: AsnC family transcriptional regulator	2.0997919572
+UniRef50_UPI0003B73A04: AsnC family transcriptional regulator|unclassified	2.0997919572
+UniRef50_X1HMK8: Marine sediment metagenome DNA, contig: S03H2_S13384 (Fragment)	2.0993367395
+UniRef50_X1HMK8: Marine sediment metagenome DNA, contig: S03H2_S13384 (Fragment)|unclassified	2.0993367395
+UniRef50_UPI00041CB2A5: MerR family transcriptional regulator	2.0981773334
+UniRef50_UPI00041CB2A5: MerR family transcriptional regulator|unclassified	2.0981773334
+UniRef50_UPI0002886C73: serine hydroxymethyltransferase	2.0981597324
+UniRef50_UPI0002886C73: serine hydroxymethyltransferase|unclassified	2.0981597324
+UniRef50_H8H715	2.0980740942
+UniRef50_H8H715|g__Helicobacter.s__Helicobacter_pylori	1.5384615385
+UniRef50_H8H715|unclassified	0.5596125557
+UniRef50_F9VK25: Stage IV sporulation protein B	2.0980322488
+UniRef50_F9VK25: Stage IV sporulation protein B|g__Clostridium.s__Clostridium_beijerinckii	2.0980322488
+UniRef50_G8RCD3: ATP synthase protein I	2.0973176971
+UniRef50_G8RCD3: ATP synthase protein I|unclassified	2.0973176971
+UniRef50_D5ANH9: RNA polymerase sigma-54 factor	2.0972076049
+UniRef50_D5ANH9: RNA polymerase sigma-54 factor|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.0972076049
+UniRef50_UPI0003B46C21: alcohol dehydrogenase	2.0971590990
+UniRef50_UPI0003B46C21: alcohol dehydrogenase|unclassified	2.0971590990
+UniRef50_F3WJN5: Cytochrome c-type protein torY domain protein	2.0966651837
+UniRef50_F3WJN5: Cytochrome c-type protein torY domain protein|unclassified	2.0966651837
+UniRef50_UPI0003941221: PREDICTED: formin-like protein 5-like	2.0965137451
+UniRef50_UPI0003941221: PREDICTED: formin-like protein 5-like|unclassified	2.0965137451
+UniRef50_A9EDR0	2.0964779286
+UniRef50_A9EDR0|unclassified	2.0964779286
+UniRef50_U5MNN3: Glycerate dehydrogenase HprA	2.0964567902
+UniRef50_U5MNN3: Glycerate dehydrogenase HprA|g__Clostridium.s__Clostridium_beijerinckii	2.0964567902
+UniRef50_A3CPS6: Acetyltransferase, putative	2.0964360587
+UniRef50_A3CPS6: Acetyltransferase, putative|g__Streptococcus.s__Streptococcus_agalactiae	2.0964360587
+UniRef50_A3DJH8: 30S ribosomal protein S3	2.0964360587
+UniRef50_A3DJH8: 30S ribosomal protein S3|g__Clostridium.s__Clostridium_beijerinckii	2.0964360587
+UniRef50_D8JKV6	2.0964360587
+UniRef50_D8JKV6|g__Acinetobacter.s__Acinetobacter_baumannii	2.0964360587
+UniRef50_D9SR21	2.0964360587
+UniRef50_D9SR21|g__Clostridium.s__Clostridium_beijerinckii	2.0964360587
+UniRef50_D9XXK0	2.0964360587
+UniRef50_D9XXK0|unclassified	2.0964360587
+UniRef50_J9YRJ0	2.0964360587
+UniRef50_J9YRJ0|g__Streptococcus.s__Streptococcus_agalactiae	2.0964360587
+UniRef50_R4RNJ0: RNA polymerase sigma-70 factor, ECF subfamily	2.0964360587
+UniRef50_R4RNJ0: RNA polymerase sigma-70 factor, ECF subfamily|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0964360587
+UniRef50_UPI0002BAE276: hypothetical protein	2.0964360587
+UniRef50_UPI0002BAE276: hypothetical protein|g__Escherichia.s__Escherichia_coli	2.0964360587
+UniRef50_A0A038H2N3	2.0961839264
+UniRef50_A0A038H2N3|unclassified	2.0961839264
+UniRef50_D4DM85: DNA gyrase, B subunit, C-terminal domain protein	2.0960665567
+UniRef50_D4DM85: DNA gyrase, B subunit, C-terminal domain protein|g__Neisseria.s__Neisseria_meningitidis	2.0960665567
+UniRef50_U6A8S2: Benzoate-specific porin	2.0960526532
+UniRef50_U6A8S2: Benzoate-specific porin|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0960526532
+UniRef50_F2LP18	2.0958547488
+UniRef50_F2LP18|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0958547488
+UniRef50_A6W862: D-isomer specific 2-hydroxyacid dehydrogenase NAD-binding	2.0957480375
+UniRef50_A6W862: D-isomer specific 2-hydroxyacid dehydrogenase NAD-binding|g__Propionibacterium.s__Propionibacterium_acnes	2.0957480375
+UniRef50_L9LRB5: Phage-like baseplate assembly protein	2.0957351026
+UniRef50_L9LRB5: Phage-like baseplate assembly protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.0957351026
+UniRef50_A4WZI6: Molybdenum cofactor sulfurylase	2.0956985276
+UniRef50_A4WZI6: Molybdenum cofactor sulfurylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.9493177388
+UniRef50_A4WZI6: Molybdenum cofactor sulfurylase|unclassified	0.1463807888
+UniRef50_G9HH23: Tetracycline resistance protein class M (Fragment)	2.0956441852
+UniRef50_G9HH23: Tetracycline resistance protein class M (Fragment)|unclassified	2.0956441852
+UniRef50_A0A008MRB3: Staphopain B	2.0956311992
+UniRef50_A0A008MRB3: Staphopain B|unclassified	2.0956311992
+UniRef50_A6LT50	2.0953384482
+UniRef50_A6LT50|g__Clostridium.s__Clostridium_beijerinckii	2.0953384482
+UniRef50_L0GZM4: UPF0125 protein Thimo_2543	2.0949672437
+UniRef50_L0GZM4: UPF0125 protein Thimo_2543|unclassified	2.0949672437
+UniRef50_UPI00038210EB: hypothetical protein	2.0946547923
+UniRef50_UPI00038210EB: hypothetical protein|unclassified	2.0946547923
+UniRef50_F7ZA98: Cytochrome c oxidase maturation protein RdxS	2.0944964884
+UniRef50_F7ZA98: Cytochrome c oxidase maturation protein RdxS|unclassified	2.0944964884
+UniRef50_G7M8Q2: Methyl-accepting chemotaxis sensory transducer	2.0943181551
+UniRef50_G7M8Q2: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	2.0943181551
+UniRef50_Q98M95: Glutamyl-tRNA(Gln) amidotransferase subunit A	2.0940974438
+UniRef50_Q98M95: Glutamyl-tRNA(Gln) amidotransferase subunit A|g__Neisseria.s__Neisseria_meningitidis	1.7131882220
+UniRef50_Q98M95: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.3809092217
+UniRef50_UPI000464FB5D: hypothetical protein	2.0939644098
+UniRef50_UPI000464FB5D: hypothetical protein|unclassified	2.0939644098
+UniRef50_UPI000292A56C	2.0937565144
+UniRef50_UPI000292A56C|unclassified	2.0937565144
+UniRef50_A0A059IL14	2.0934778392
+UniRef50_A0A059IL14|unclassified	2.0934778392
+UniRef50_A6LXY0: D-galactose-binding periplasmic protein	2.0933406830
+UniRef50_A6LXY0: D-galactose-binding periplasmic protein|g__Clostridium.s__Clostridium_beijerinckii	2.0933406830
+UniRef50_UPI0004763C22: CREA protein	2.0932966937
+UniRef50_UPI0004763C22: CREA protein|unclassified	2.0932966937
+UniRef50_UPI0004786466: ABC transporter permease	2.0929850696
+UniRef50_UPI0004786466: ABC transporter permease|unclassified	2.0929850696
+UniRef50_A6KYS6: S-ribosylhomocysteine lyase	2.0920502092
+UniRef50_A6KYS6: S-ribosylhomocysteine lyase|g__Clostridium.s__Clostridium_beijerinckii	2.0920502092
+UniRef50_B7H3X0: Bacterial regulatory helix-turn-helix protein, AraC family protein	2.0920502092
+UniRef50_B7H3X0: Bacterial regulatory helix-turn-helix protein, AraC family protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.0920502092
+UniRef50_E8ZZL4: EtfB protein	2.0920502092
+UniRef50_E8ZZL4: EtfB protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.0920502092
+UniRef50_M9V971: NADH-quinone oxidoreductase subunit C	2.0920502092
+UniRef50_M9V971: NADH-quinone oxidoreductase subunit C|g__Propionibacterium.s__Propionibacterium_acnes	2.0920502092
+UniRef50_Q39F94: Polysaccharide deacetylase	2.0920502092
+UniRef50_Q39F94: Polysaccharide deacetylase|g__Acinetobacter.s__Acinetobacter_baumannii	2.0920502092
+UniRef50_Z0G600	2.0920502092
+UniRef50_Z0G600|unclassified	2.0920502092
+UniRef50_J9UZS4	2.0920502092
+UniRef50_J9UZS4|unclassified	2.0920502092
+UniRef50_A5VZZ2: Cyclic pyranopterin monophosphate synthase	2.0920096404
+UniRef50_A5VZZ2: Cyclic pyranopterin monophosphate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0411755088
+UniRef50_A5VZZ2: Cyclic pyranopterin monophosphate synthase|unclassified	0.0508341316
+UniRef50_A6LYZ3	2.0916660929
+UniRef50_A6LYZ3|g__Clostridium.s__Clostridium_beijerinckii	2.0916660929
+UniRef50_UPI00036ABB4D: hypothetical protein	2.0916542771
+UniRef50_UPI00036ABB4D: hypothetical protein|unclassified	2.0916542771
+UniRef50_K0EEM7: Arsenical resistance protein ArsH	2.0913318193
+UniRef50_K0EEM7: Arsenical resistance protein ArsH|unclassified	2.0913318193
+UniRef50_Q16B12	2.0909749900
+UniRef50_Q16B12|unclassified	2.0909749900
+UniRef50_R7FPS5: DEAD/DEAH box helicase	2.0905897424
+UniRef50_R7FPS5: DEAD/DEAH box helicase|g__Clostridium.s__Clostridium_beijerinckii	2.0905897424
+UniRef50_B9KP52	2.0905384080
+UniRef50_B9KP52|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.0905384080
+UniRef50_G8VD13	2.0903420017
+UniRef50_G8VD13|g__Propionibacterium.s__Propionibacterium_acnes	2.0903420017
+UniRef50_A3X988	2.0903175369
+UniRef50_A3X988|unclassified	2.0903175369
+UniRef50_V7ERI4: Photosystem reaction center subunit H	2.0903030720
+UniRef50_V7ERI4: Photosystem reaction center subunit H|unclassified	2.0903030720
+UniRef50_UPI0002DE5CBD: hypothetical protein	2.0892790075
+UniRef50_UPI0002DE5CBD: hypothetical protein|unclassified	2.0892790075
+UniRef50_B4RL22: Arginine--tRNA ligase	2.0892311822
+UniRef50_B4RL22: Arginine--tRNA ligase|g__Neisseria.s__Neisseria_meningitidis	2.0892311822
+UniRef50_UPI00046426C0: hypothetical protein, partial	2.0891359745
+UniRef50_UPI00046426C0: hypothetical protein, partial|unclassified	2.0891359745
+UniRef50_K0SEA3	2.0890688976
+UniRef50_K0SEA3|unclassified	2.0890688976
+UniRef50_C3DTJ7: Carbon starvation protein A	2.0889144914
+UniRef50_C3DTJ7: Carbon starvation protein A|g__Neisseria.s__Neisseria_meningitidis	1.6067544143
+UniRef50_C3DTJ7: Carbon starvation protein A|g__Acinetobacter.s__Acinetobacter_baumannii	0.4821600771
+UniRef50_Q52742	2.0885842230
+UniRef50_Q52742|unclassified	2.0885842230
+UniRef50_D3V423	2.0885263022
+UniRef50_D3V423|unclassified	2.0885263022
+UniRef50_UPI000474CD31: LamB/YcsF family protein	2.0883059312
+UniRef50_UPI000474CD31: LamB/YcsF family protein|unclassified	2.0883059312
+UniRef50_W8YNY7	2.0882587416
+UniRef50_W8YNY7|unclassified	2.0882587416
+UniRef50_UPI0003820F14: hypothetical protein	2.0881076206
+UniRef50_UPI0003820F14: hypothetical protein|unclassified	2.0881076206
+UniRef50_F0YHA3	2.0877295822
+UniRef50_F0YHA3|unclassified	2.0877295822
+UniRef50_D1APR3: Deoxyribose-phosphate aldolase	2.0876826722
+UniRef50_D1APR3: Deoxyribose-phosphate aldolase|g__Clostridium.s__Clostridium_beijerinckii	2.0876826722
+UniRef50_U5MVJ3: Isochorismatase hydrolase	2.0876826722
+UniRef50_U5MVJ3: Isochorismatase hydrolase|g__Clostridium.s__Clostridium_beijerinckii	2.0876826722
+UniRef50_L5IBW3: Tat (Twin-arginine translocation) pathway signal sequence	2.0876778190
+UniRef50_L5IBW3: Tat (Twin-arginine translocation) pathway signal sequence|unclassified	2.0876778190
+UniRef50_B6IPB9	2.0876003374
+UniRef50_B6IPB9|unclassified	2.0876003374
+UniRef50_A3JNX6	2.0865776838
+UniRef50_A3JNX6|unclassified	2.0865776838
+UniRef50_U5MNP0	2.0864279419
+UniRef50_U5MNP0|g__Clostridium.s__Clostridium_beijerinckii	2.0864279419
+UniRef50_M4IFW7	2.0863513404
+UniRef50_M4IFW7|unclassified	2.0863513404
+UniRef50_U3T2J2: S8/S53 family peptidase	2.0857801557
+UniRef50_U3T2J2: S8/S53 family peptidase|g__Acinetobacter.s__Acinetobacter_baumannii	2.0857801557
+UniRef50_UPI00047B6884: photosystem reaction center subunit H	2.0857757903
+UniRef50_UPI00047B6884: photosystem reaction center subunit H|unclassified	2.0857757903
+UniRef50_I4WFW7: IS1477 transposase	2.0854848991
+UniRef50_I4WFW7: IS1477 transposase|unclassified	2.0854848991
+UniRef50_UPI000225F75F: hypothetical protein	2.0851446242
+UniRef50_UPI000225F75F: hypothetical protein|unclassified	2.0851446242
+UniRef50_G6FFZ7	2.0850631260
+UniRef50_G6FFZ7|unclassified	2.0850631260
+UniRef50_UPI0003A1CB4E: hypothetical protein	2.0848629427
+UniRef50_UPI0003A1CB4E: hypothetical protein|unclassified	2.0848629427
+UniRef50_Q7WCS7: Integral membrane component of multidrug efflux system	2.0841273478
+UniRef50_Q7WCS7: Integral membrane component of multidrug efflux system|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0841273478
+UniRef50_S5YP26: Adenylate cyclase (Fragment)	2.0841029260
+UniRef50_S5YP26: Adenylate cyclase (Fragment)|unclassified	2.0841029260
+UniRef50_UPI00047C631B: hypothetical protein	2.0837383907
+UniRef50_UPI00047C631B: hypothetical protein|unclassified	2.0837383907
+UniRef50_B2TQ47: Shikimate kinase	2.0833333333
+UniRef50_B2TQ47: Shikimate kinase|g__Clostridium.s__Clostridium_beijerinckii	2.0833333333
+UniRef50_G5S8G4: N-acetylglucosamine-regulated outer membrane porin	2.0833333333
+UniRef50_G5S8G4: N-acetylglucosamine-regulated outer membrane porin|g__Escherichia.s__Escherichia_coli	2.0833333333
+UniRef50_K4QAU1	2.0833333333
+UniRef50_K4QAU1|g__Streptococcus.s__Streptococcus_agalactiae	2.0833333333
+UniRef50_K8CD77: Outer Membrane Siderophore Receptor IroN	2.0833333333
+UniRef50_K8CD77: Outer Membrane Siderophore Receptor IroN|g__Escherichia.s__Escherichia_coli	2.0833333333
+UniRef50_P77219	2.0833333333
+UniRef50_P77219|g__Escherichia.s__Escherichia_coli	2.0833333333
+UniRef50_S1T6T5: Glutathione peroxidase	2.0833333333
+UniRef50_S1T6T5: Glutathione peroxidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0833333333
+UniRef50_F7Y7I2	2.0833022230
+UniRef50_F7Y7I2|unclassified	2.0833022230
+UniRef50_S4YUV8: ABC transporter	2.0826845220
+UniRef50_S4YUV8: ABC transporter|g__Acinetobacter.s__Acinetobacter_baumannii	2.0826845220
+UniRef50_W9B9V7: Klebsiella pneumoniae str. Kp52.145, plasmid II, complete genome	2.0824321350
+UniRef50_W9B9V7: Klebsiella pneumoniae str. Kp52.145, plasmid II, complete genome|unclassified	2.0824321350
+UniRef50_UPI0003B76791: chemotaxis protein CheY	2.0824141235
+UniRef50_UPI0003B76791: chemotaxis protein CheY|unclassified	2.0824141235
+UniRef50_C9X377: Transferrin-binding protein-like lipoprotein (Lipoprotein GNA2132)	2.0819398320
+UniRef50_C9X377: Transferrin-binding protein-like lipoprotein (Lipoprotein GNA2132)|g__Neisseria.s__Neisseria_meningitidis	2.0819398320
+UniRef50_Q51548: L-ornithine 5-monooxygenase	2.0813480031
+UniRef50_Q51548: L-ornithine 5-monooxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0813480031
+UniRef50_Q981X2: D-amino acid dehydrogenase 3 small subunit	2.0812068314
+UniRef50_Q981X2: D-amino acid dehydrogenase 3 small subunit|g__Acinetobacter.s__Acinetobacter_baumannii	2.0254361781
+UniRef50_Q981X2: D-amino acid dehydrogenase 3 small subunit|unclassified	0.0557706532
+UniRef50_V8QUK9	2.0811233283
+UniRef50_V8QUK9|unclassified	2.0811233283
+UniRef50_X1G2K5: Marine sediment metagenome DNA, contig: S03H2_S08250	2.0810855051
+UniRef50_X1G2K5: Marine sediment metagenome DNA, contig: S03H2_S08250|unclassified	2.0810855051
+UniRef50_A0AZ30: Extracellular solute-binding protein, family 1	2.0807724936
+UniRef50_A0AZ30: Extracellular solute-binding protein, family 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0807724936
+UniRef50_Q9RZB9: O-antigen transporter RfbX, putative	2.0806969976
+UniRef50_Q9RZB9: O-antigen transporter RfbX, putative|g__Deinococcus.s__Deinococcus_radiodurans	2.0806969976
+UniRef50_D6SEP1	2.0798552265
+UniRef50_D6SEP1|unclassified	2.0798552265
+UniRef50_Q28MI3	2.0797720960
+UniRef50_Q28MI3|unclassified	2.0797720960
+UniRef50_O87014: USG-1 protein homolog	2.0790043255
+UniRef50_O87014: USG-1 protein homolog|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0790043255
+UniRef50_A4VN67	2.0790020790
+UniRef50_A4VN67|unclassified	2.0790020790
+UniRef50_A6LX14: GCN5-related N-acetyltransferase	2.0790020790
+UniRef50_A6LX14: GCN5-related N-acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	2.0790020790
+UniRef50_D3E438: Transcriptional regulator	2.0790020790
+UniRef50_D3E438: Transcriptional regulator|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2.0790020790
+UniRef50_E6SLV1	2.0790020790
+UniRef50_E6SLV1|unclassified	2.0790020790
+UniRef50_G0DU47: Myo-inositol catabolism IolH protein	2.0790020790
+UniRef50_G0DU47: Myo-inositol catabolism IolH protein|g__Propionibacterium.s__Propionibacterium_acnes	2.0790020790
+UniRef50_N2GFP3	2.0790020790
+UniRef50_N2GFP3|g__Escherichia.s__Escherichia_coli	2.0790020790
+UniRef50_Q9RWT4	2.0790020790
+UniRef50_Q9RWT4|g__Deinococcus.s__Deinococcus_radiodurans	2.0790020790
+UniRef50_UPI0002F9F056: hypothetical protein	2.0783499541
+UniRef50_UPI0002F9F056: hypothetical protein|unclassified	2.0783499541
+UniRef50_L1NZC1: Peptidase, M61 family	2.0782983318
+UniRef50_L1NZC1: Peptidase, M61 family|g__Neisseria.s__Neisseria_meningitidis	2.0782983318
+UniRef50_UPI000315B4BF: hypothetical protein	2.0778938385
+UniRef50_UPI000315B4BF: hypothetical protein|unclassified	2.0778938385
+UniRef50_G2PAE6: Oligopeptide/dipeptide ABC transporter, ATPase subunit	2.0777393850
+UniRef50_G2PAE6: Oligopeptide/dipeptide ABC transporter, ATPase subunit|g__Clostridium.s__Clostridium_beijerinckii	2.0777393850
+UniRef50_C5N439	2.0777113196
+UniRef50_C5N439|unclassified	2.0777113196
+UniRef50_W4UK26	2.0770970173
+UniRef50_W4UK26|g__Propionibacterium.s__Propionibacterium_acnes	2.0770970173
+UniRef50_P56910: NADH-quinone oxidoreductase subunit E 2	2.0770002974
+UniRef50_P56910: NADH-quinone oxidoreductase subunit E 2|unclassified	2.0770002974
+UniRef50_D2JBV0: Beta-lactamase regulatory sensor-transducer BlaR1	2.0769924684
+UniRef50_D2JBV0: Beta-lactamase regulatory sensor-transducer BlaR1|unclassified	2.0769924684
+UniRef50_A6M1Q8: Periplasmic binding protein/LacI transcriptional regulator	2.0768431983
+UniRef50_A6M1Q8: Periplasmic binding protein/LacI transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	2.0768431983
+UniRef50_UPI00047AC8D4: hypothetical protein, partial	2.0766117835
+UniRef50_UPI00047AC8D4: hypothetical protein, partial|unclassified	2.0766117835
+UniRef50_Q8P013	2.0763937697
+UniRef50_Q8P013|unclassified	2.0763937697
+UniRef50_K2DH41	2.0761200414
+UniRef50_K2DH41|unclassified	2.0761200414
+UniRef50_F8JIF8	2.0760880968
+UniRef50_F8JIF8|unclassified	2.0760880968
+UniRef50_M1MR71: PGA biosynthesis protein CapA	2.0758947965
+UniRef50_M1MR71: PGA biosynthesis protein CapA|g__Clostridium.s__Clostridium_beijerinckii	2.0758947965
+UniRef50_J4KJZ5: TonB-dependent siderophore receptor	2.0758839109
+UniRef50_J4KJZ5: TonB-dependent siderophore receptor|g__Acinetobacter.s__Acinetobacter_baumannii	2.0758839109
+UniRef50_UPI00036DB284: hypothetical protein, partial	2.0753909298
+UniRef50_UPI00036DB284: hypothetical protein, partial|unclassified	2.0753909298
+UniRef50_UPI0004638938: hypothetical protein, partial	2.0750979784
+UniRef50_UPI0004638938: hypothetical protein, partial|unclassified	2.0750979784
+UniRef50_D1AIE5: Selenate reductase YgfK	2.0750643478
+UniRef50_D1AIE5: Selenate reductase YgfK|g__Clostridium.s__Clostridium_beijerinckii	2.0750643478
+UniRef50_K5HXV8: Periplasmic pilus chaperone family domain protein	2.0748765547
+UniRef50_K5HXV8: Periplasmic pilus chaperone family domain protein|unclassified	2.0748765547
+UniRef50_G4PSQ8	2.0748084804
+UniRef50_G4PSQ8|unclassified	2.0748084804
+UniRef50_D8UAZ0	2.0747063840
+UniRef50_D8UAZ0|unclassified	2.0747063840
+UniRef50_B7GXG8: Short chain dehydrogenase family protein	2.0746887967
+UniRef50_B7GXG8: Short chain dehydrogenase family protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.0746887967
+UniRef50_C0ZTQ3	2.0746887967
+UniRef50_C0ZTQ3|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0746887967
+UniRef50_P07771: Benzoate 1,2-dioxygenase electron transfer component	2.0746887967
+UniRef50_P07771: Benzoate 1,2-dioxygenase electron transfer component|g__Acinetobacter.s__Acinetobacter_baumannii	2.0746887967
+UniRef50_P52039: Electron transfer flavoprotein subunit alpha	2.0746887967
+UniRef50_P52039: Electron transfer flavoprotein subunit alpha|g__Clostridium.s__Clostridium_beijerinckii	2.0746887967
+UniRef50_Q9RRG5	2.0746887967
+UniRef50_Q9RRG5|g__Deinococcus.s__Deinococcus_radiodurans	2.0746887967
+UniRef50_Q9RT80	2.0746887967
+UniRef50_Q9RT80|unclassified	2.0746887967
+UniRef50_I7EZ28	2.0745833353
+UniRef50_I7EZ28|unclassified	2.0745833353
+UniRef50_Q9ZN89: OrfL protein (Fragment)	2.0745094914
+UniRef50_Q9ZN89: OrfL protein (Fragment)|unclassified	2.0745094914
+UniRef50_UPI0002B444EC	2.0742270242
+UniRef50_UPI0002B444EC|unclassified	2.0742270242
+UniRef50_K1SJP3	2.0740499577
+UniRef50_K1SJP3|unclassified	2.0740499577
+UniRef50_A3PNY7	2.0739158371
+UniRef50_A3PNY7|unclassified	2.0739158371
+UniRef50_Q57KU8	2.0738904164
+UniRef50_Q57KU8|unclassified	2.0738904164
+UniRef50_A1B6P1: HupH hydrogenase expression protein	2.0736325006
+UniRef50_A1B6P1: HupH hydrogenase expression protein|unclassified	2.0736325006
+UniRef50_A4VK02: Isoleucyl-tRNA synthetase	2.0729220999
+UniRef50_A4VK02: Isoleucyl-tRNA synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0729220999
+UniRef50_UPI0004290F91: hypothetical protein	2.0728671390
+UniRef50_UPI0004290F91: hypothetical protein|unclassified	2.0728671390
+UniRef50_UPI0002F2D647: hypothetical protein	2.0718098466
+UniRef50_UPI0002F2D647: hypothetical protein|unclassified	2.0718098466
+UniRef50_I6FVQ2	2.0718035092
+UniRef50_I6FVQ2|unclassified	2.0718035092
+UniRef50_P12635: Uptake hydrogenase small subunit	2.0717104591
+UniRef50_P12635: Uptake hydrogenase small subunit|unclassified	2.0717104591
+UniRef50_R9BBW4: HAE1 family hydrophobic/amphiphilic exporter-1 (Mainly G-bacteria)	2.0715739769
+UniRef50_R9BBW4: HAE1 family hydrophobic/amphiphilic exporter-1 (Mainly G-bacteria)|g__Acinetobacter.s__Acinetobacter_baumannii	2.0715739769
+UniRef50_Q1IYN7: Amidase	2.0715334592
+UniRef50_Q1IYN7: Amidase|g__Deinococcus.s__Deinococcus_radiodurans	2.0715334592
+UniRef50_E3EWW2	2.0711346024
+UniRef50_E3EWW2|unclassified	2.0711346024
+UniRef50_J8V0C4: Tol-pal system-associated acyl-CoA thioesterase	2.0710546607
+UniRef50_J8V0C4: Tol-pal system-associated acyl-CoA thioesterase|unclassified	2.0710546607
+UniRef50_E1S3E1: Membrane-bound lytic murein transglycosylase D	2.0709127716
+UniRef50_E1S3E1: Membrane-bound lytic murein transglycosylase D|unclassified	2.0709127716
+UniRef50_A3PNP5	2.0708477238
+UniRef50_A3PNP5|unclassified	2.0708477238
+UniRef50_D2NRP6: Coenzyme F420-reducing hydrogenase, beta subunit	2.0707532719
+UniRef50_D2NRP6: Coenzyme F420-reducing hydrogenase, beta subunit|unclassified	2.0707532719
+UniRef50_U5NRD5	2.0706965143
+UniRef50_U5NRD5|unclassified	2.0706965143
+UniRef50_W1Y793: Maltose regulon regulatory protein malI (Fragment)	2.0704974468
+UniRef50_W1Y793: Maltose regulon regulatory protein malI (Fragment)|unclassified	2.0704974468
+UniRef50_B7VAX6: Quorum-sensing control repressor	2.0703933747
+UniRef50_B7VAX6: Quorum-sensing control repressor|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0703933747
+UniRef50_B8CXX9: Predicted nucleotide kinase	2.0703933747
+UniRef50_B8CXX9: Predicted nucleotide kinase|g__Clostridium.s__Clostridium_beijerinckii	2.0703933747
+UniRef50_D4HA77	2.0703933747
+UniRef50_D4HA77|g__Propionibacterium.s__Propionibacterium_acnes	2.0703933747
+UniRef50_F0N3E0: Cytoplasmic membrane protein fxsA	2.0703933747
+UniRef50_F0N3E0: Cytoplasmic membrane protein fxsA|g__Neisseria.s__Neisseria_meningitidis	2.0703933747
+UniRef50_G7MCL8: PRC-barrel domain protein	2.0703933747
+UniRef50_G7MCL8: PRC-barrel domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.0703933747
+UniRef50_G8VAR6: Sugar transport protein	2.0703933747
+UniRef50_G8VAR6: Sugar transport protein|g__Propionibacterium.s__Propionibacterium_acnes	2.0703933747
+UniRef50_K0I0A4: CheW protein	2.0703933747
+UniRef50_K0I0A4: CheW protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0703933747
+UniRef50_Q62EC6	2.0703933747
+UniRef50_Q62EC6|unclassified	2.0703933747
+UniRef50_W6ELT6: Glutathionylspermidine synthetase	2.0703933747
+UniRef50_W6ELT6: Glutathionylspermidine synthetase|g__Helicobacter.s__Helicobacter_pylori	2.0703933747
+UniRef50_H7CVA1: Iron chelate ABC transporter permease protein	2.0702007646
+UniRef50_H7CVA1: Iron chelate ABC transporter permease protein|g__Clostridium.s__Clostridium_beijerinckii	2.0702007646
+UniRef50_UPI00035D47CC: hypothetical protein, partial	2.0699857999
+UniRef50_UPI00035D47CC: hypothetical protein, partial|unclassified	2.0699857999
+UniRef50_A0YH35	2.0698727700
+UniRef50_A0YH35|unclassified	2.0698727700
+UniRef50_F2CUB3: Predicted protein (Fragment)	2.0698195032
+UniRef50_F2CUB3: Predicted protein (Fragment)|unclassified	2.0698195032
+UniRef50_T3I3Z9: Homocitrate synthase	2.0695049254
+UniRef50_T3I3Z9: Homocitrate synthase|g__Clostridium.s__Clostridium_beijerinckii	2.0695049254
+UniRef50_H8FXB4	2.0693686453
+UniRef50_H8FXB4|unclassified	2.0693686453
+UniRef50_A0A030STE3	2.0693581896
+UniRef50_A0A030STE3|unclassified	2.0693581896
+UniRef50_E3YUW5	2.0685150362
+UniRef50_E3YUW5|unclassified	2.0685150362
+UniRef50_Q9X806: Ubiquinol-cytochrome c reductase cytochrome b subunit	2.0679469640
+UniRef50_Q9X806: Ubiquinol-cytochrome c reductase cytochrome b subunit|g__Propionibacterium.s__Propionibacterium_acnes	2.0679469640
+UniRef50_A0A016T6S8	2.0679179181
+UniRef50_A0A016T6S8|unclassified	2.0679179181
+UniRef50_F2AC19	2.0675365205
+UniRef50_F2AC19|unclassified	2.0675365205
+UniRef50_E0T020: Phage terminase-like protein, large subunit	2.0674023819
+UniRef50_E0T020: Phage terminase-like protein, large subunit|g__Streptococcus.s__Streptococcus_agalactiae	2.0674023819
+UniRef50_Q9HXY3: Putative zinc metalloprotease PA3649	2.0673650145
+UniRef50_Q9HXY3: Putative zinc metalloprotease PA3649|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0673650145
+UniRef50_UPI0004045AF9: hypothetical protein	2.0673206766
+UniRef50_UPI0004045AF9: hypothetical protein|unclassified	2.0673206766
+UniRef50_A5IR60	2.0670775312
+UniRef50_A5IR60|unclassified	2.0670775312
+UniRef50_A3SGP6	2.0669408372
+UniRef50_A3SGP6|unclassified	2.0669408372
+UniRef50_Q9FNM5: Translation factor GUF1 homolog, chloroplastic	2.0667548315
+UniRef50_Q9FNM5: Translation factor GUF1 homolog, chloroplastic|g__Streptococcus.s__Streptococcus_agalactiae	1.4647078719
+UniRef50_Q9FNM5: Translation factor GUF1 homolog, chloroplastic|g__Escherichia.s__Escherichia_coli	0.6020469597
+UniRef50_G8PUF5: Cytochrome oxidase maturation protein cbb3-type	2.0666253475
+UniRef50_G8PUF5: Cytochrome oxidase maturation protein cbb3-type|unclassified	2.0666253475
+UniRef50_UPI0003A8126D: LuxAB-like protein (oxygenase)	2.0663816716
+UniRef50_UPI0003A8126D: LuxAB-like protein (oxygenase)|unclassified	2.0663816716
+UniRef50_A6LX97: RNA polymerase, sigma 28 subunit, FliA/WhiG family	2.0661157025
+UniRef50_A6LX97: RNA polymerase, sigma 28 subunit, FliA/WhiG family|g__Clostridium.s__Clostridium_beijerinckii	2.0661157025
+UniRef50_E8JKN0	2.0661157025
+UniRef50_E8JKN0|unclassified	2.0661157025
+UniRef50_F5ZIL6	2.0661157025
+UniRef50_F5ZIL6|g__Streptococcus.s__Streptococcus_agalactiae	2.0661157025
+UniRef50_H2JCZ5: Glycopeptide antibiotics resistance protein	2.0661157025
+UniRef50_H2JCZ5: Glycopeptide antibiotics resistance protein|g__Clostridium.s__Clostridium_beijerinckii	2.0661157025
+UniRef50_Q9JWE5: Homoserine kinase	2.0661157025
+UniRef50_Q9JWE5: Homoserine kinase|g__Neisseria.s__Neisseria_meningitidis	2.0661157025
+UniRef50_W9GLM8	2.0661157025
+UniRef50_W9GLM8|unclassified	2.0661157025
+UniRef50_G8LKH2	2.0660980810
+UniRef50_G8LKH2|unclassified	2.0660980810
+UniRef50_V4PEP2	2.0655657111
+UniRef50_V4PEP2|unclassified	2.0655657111
+UniRef50_N6V3N6: Sulfate transporter	2.0651408588
+UniRef50_N6V3N6: Sulfate transporter|unclassified	2.0651408588
+UniRef50_P42455: 2-isopropylmalate synthase	2.0643454378
+UniRef50_P42455: 2-isopropylmalate synthase|g__Propionibacterium.s__Propionibacterium_acnes	2.0224332535
+UniRef50_P42455: 2-isopropylmalate synthase|unclassified	0.0419121843
+UniRef50_Q0VM47: Type II secretion system protein, putative	2.0638155573
+UniRef50_Q0VM47: Type II secretion system protein, putative|g__Acinetobacter.s__Acinetobacter_baumannii	2.0638155573
+UniRef50_F0YS40	2.0635131724
+UniRef50_F0YS40|unclassified	2.0635131724
+UniRef50_A3K4X2: Transposase orfA IS5 family element	2.0632879925
+UniRef50_A3K4X2: Transposase orfA IS5 family element|unclassified	2.0632879925
+UniRef50_E1M6K4: Aldehyde-alcohol dehydrogenase 2	2.0632541799
+UniRef50_E1M6K4: Aldehyde-alcohol dehydrogenase 2|g__Streptococcus.s__Streptococcus_agalactiae	2.0632541799
+UniRef50_X5A2G4: Epoxide hydrolase domain-containing protein	2.0632045089
+UniRef50_X5A2G4: Epoxide hydrolase domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	2.0632045089
+UniRef50_Q48S90: Membrane protein	2.0629452596
+UniRef50_Q48S90: Membrane protein|g__Streptococcus.s__Streptococcus_agalactiae	2.0629452596
+UniRef50_L0EBD3: Lipoprotein, YaeC family	2.0628075624
+UniRef50_L0EBD3: Lipoprotein, YaeC family|g__Clostridium.s__Clostridium_beijerinckii	1.7857142857
+UniRef50_L0EBD3: Lipoprotein, YaeC family|unclassified	0.2770932767
+UniRef50_Q5HQ23: Non-canonical purine NTP pyrophosphatase	2.0622895153
+UniRef50_Q5HQ23: Non-canonical purine NTP pyrophosphatase|g__Staphylococcus.s__Staphylococcus_epidermidis	1.7985611511
+UniRef50_Q5HQ23: Non-canonical purine NTP pyrophosphatase|unclassified	0.2637283643
+UniRef50_B6JBF3	2.0622291428
+UniRef50_B6JBF3|unclassified	2.0622291428
+UniRef50_D7ZI85	2.0621217379
+UniRef50_D7ZI85|unclassified	2.0621217379
+UniRef50_O34162: Oxygen-independent coproporphyrinogen-III oxidase	2.0620872647
+UniRef50_O34162: Oxygen-independent coproporphyrinogen-III oxidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0620872647
+UniRef50_E6PNR1	2.0618557335
+UniRef50_E6PNR1|unclassified	2.0618557335
+UniRef50_A0A030XYN1	2.0618556701
+UniRef50_A0A030XYN1|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0618556701
+UniRef50_A6M0A3	2.0618556701
+UniRef50_A6M0A3|g__Clostridium.s__Clostridium_beijerinckii	2.0618556701
+UniRef50_B9KWM0: Positive regulator of sigma E, RseC/MucC	2.0618556701
+UniRef50_B9KWM0: Positive regulator of sigma E, RseC/MucC|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.0618556701
+UniRef50_G8AUJ0	2.0618556701
+UniRef50_G8AUJ0|unclassified	2.0618556701
+UniRef50_U3TMG0: ATP-dependent transcriptional regulator, MalT-like, LuxR family	2.0610669227
+UniRef50_U3TMG0: ATP-dependent transcriptional regulator, MalT-like, LuxR family|g__Escherichia.s__Escherichia_coli	2.0610669227
+UniRef50_UPI00037A1CDA: hypothetical protein	2.0603087839
+UniRef50_UPI00037A1CDA: hypothetical protein|unclassified	2.0603087839
+UniRef50_UPI000289AAFA: glutamine amidotransferase	2.0602613400
+UniRef50_UPI000289AAFA: glutamine amidotransferase|unclassified	2.0602613400
+UniRef50_Q2KBF3: Tetracycline efflux transporter protein	2.0602143509
+UniRef50_Q2KBF3: Tetracycline efflux transporter protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.0602143509
+UniRef50_J3E7G9: Pyrroloquinoline quinone (Coenzyme PQQ) biosynthesis protein C	2.0601994573
+UniRef50_J3E7G9: Pyrroloquinoline quinone (Coenzyme PQQ) biosynthesis protein C|unclassified	2.0601994573
+UniRef50_UPI0002DC6DF0: hypothetical protein	2.0600918888
+UniRef50_UPI0002DC6DF0: hypothetical protein|unclassified	2.0600918888
+UniRef50_UPI0004708F1B: hypothetical protein, partial	2.0598378697
+UniRef50_UPI0004708F1B: hypothetical protein, partial|unclassified	2.0598378697
+UniRef50_UPI000390127B: Transcriptional regulatory protein LiaR	2.0597322348
+UniRef50_UPI000390127B: Transcriptional regulatory protein LiaR|unclassified	2.0597322348
+UniRef50_UPI0003732D63: hypothetical protein	2.0593556736
+UniRef50_UPI0003732D63: hypothetical protein|unclassified	2.0593556736
+UniRef50_U9YGE0	2.0592251953
+UniRef50_U9YGE0|unclassified	2.0592251953
+UniRef50_A6QBY0: 3-oxoacyl-[acyl-carrier-protein] synthase 3	2.0586505024
+UniRef50_A6QBY0: 3-oxoacyl-[acyl-carrier-protein] synthase 3|g__Helicobacter.s__Helicobacter_pylori	1.1299435028
+UniRef50_A6QBY0: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	0.9287069996
+UniRef50_B3Q2V2: Nitrogenase protein, iron-molybdenum alpha chain NifD	2.0584417604
+UniRef50_B3Q2V2: Nitrogenase protein, iron-molybdenum alpha chain NifD|unclassified	2.0584417604
+UniRef50_A0A038FYY7	2.0582806866
+UniRef50_A0A038FYY7|unclassified	2.0582806866
+UniRef50_L0F2G6: ABC-type dipeptide/oligopeptide/nickel transport system, permease component	2.0579812940
+UniRef50_L0F2G6: ABC-type dipeptide/oligopeptide/nickel transport system, permease component|g__Helicobacter.s__Helicobacter_pylori	2.0579812940
+UniRef50_G8VJV8: Allantoate amidohydrolase	2.0579783638
+UniRef50_G8VJV8: Allantoate amidohydrolase|g__Propionibacterium.s__Propionibacterium_acnes	2.0579783638
+UniRef50_A6V9R6: Nucleoid-associated protein PSPA7_4451	2.0576131687
+UniRef50_A6V9R6: Nucleoid-associated protein PSPA7_4451|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0576131687
+UniRef50_B2UX09	2.0576131687
+UniRef50_B2UX09|g__Clostridium.s__Clostridium_beijerinckii	2.0576131687
+UniRef50_E3D189: Adhesin MafB2	2.0576131687
+UniRef50_E3D189: Adhesin MafB2|g__Neisseria.s__Neisseria_meningitidis	2.0576131687
+UniRef50_G7M515	2.0576131687
+UniRef50_G7M515|g__Clostridium.s__Clostridium_beijerinckii	2.0576131687
+UniRef50_G7M8F7	2.0576131687
+UniRef50_G7M8F7|g__Clostridium.s__Clostridium_beijerinckii	2.0576131687
+UniRef50_I7EUJ1: Acetyltransferase domain-containing protein	2.0576131687
+UniRef50_I7EUJ1: Acetyltransferase domain-containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.0576131687
+UniRef50_K0I5D9: Protease	2.0576131687
+UniRef50_K0I5D9: Protease|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0576131687
+UniRef50_M7YM30	2.0576131687
+UniRef50_M7YM30|unclassified	2.0576131687
+UniRef50_N1MXW8	2.0576131687
+UniRef50_N1MXW8|unclassified	2.0576131687
+UniRef50_Q5FPX3: tRNA pseudouridine synthase A	2.0576131687
+UniRef50_Q5FPX3: tRNA pseudouridine synthase A|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.0576131687
+UniRef50_X3EGM7	2.0576131687
+UniRef50_X3EGM7|g__Escherichia.s__Escherichia_coli	2.0576131687
+UniRef50_Z9HN44	2.0576131687
+UniRef50_Z9HN44|unclassified	2.0576131687
+UniRef50_UPI0002192600: putative ATP-dependent DNA helicase	2.0573327246
+UniRef50_UPI0002192600: putative ATP-dependent DNA helicase|unclassified	2.0573327246
+UniRef50_O05325: ORF 238 protein (Fragment)	2.0570268226
+UniRef50_O05325: ORF 238 protein (Fragment)|unclassified	2.0570268226
+UniRef50_Q72KJ4: Pili assembly protein pilC	2.0567158067
+UniRef50_Q72KJ4: Pili assembly protein pilC|g__Deinococcus.s__Deinococcus_radiodurans	2.0567158067
+UniRef50_B7UZ10	2.0566463251
+UniRef50_B7UZ10|unclassified	2.0566463251
+UniRef50_P57011: Signal recognition particle receptor FtsY	2.0565558136
+UniRef50_P57011: Signal recognition particle receptor FtsY|g__Neisseria.s__Neisseria_meningitidis	2.0565558136
+UniRef50_P36439: Light-independent protochlorophyllide reductase iron-sulfur ATP-binding protein (Fragment)	2.0563913953
+UniRef50_P36439: Light-independent protochlorophyllide reductase iron-sulfur ATP-binding protein (Fragment)|unclassified	2.0563913953
+UniRef50_A3JSR1	2.0561505816
+UniRef50_A3JSR1|unclassified	2.0561505816
+UniRef50_K2QWY5: ABC transporter substrate-binding protein	2.0561399199
+UniRef50_K2QWY5: ABC transporter substrate-binding protein|unclassified	2.0561399199
+UniRef50_V5SYQ9: Protein tyeA	2.0556975567
+UniRef50_V5SYQ9: Protein tyeA|unclassified	2.0556975567
+UniRef50_V4QZN6: Mobile element protein	2.0555775446
+UniRef50_V4QZN6: Mobile element protein|unclassified	2.0555775446
+UniRef50_UPI000364E301: hypothetical protein, partial	2.0549887525
+UniRef50_UPI000364E301: hypothetical protein, partial|unclassified	2.0549887525
+UniRef50_F7SVK8: Tail E family protein	2.0548447079
+UniRef50_F7SVK8: Tail E family protein|unclassified	2.0548447079
+UniRef50_A6LY03: ABC transporter related	2.0541669644
+UniRef50_A6LY03: ABC transporter related|g__Clostridium.s__Clostridium_beijerinckii	2.0541669644
+UniRef50_V8UF34	2.0539370294
+UniRef50_V8UF34|unclassified	2.0539370294
+UniRef50_A7GYI2: Lipoprotein, nlpa family	2.0537354324
+UniRef50_A7GYI2: Lipoprotein, nlpa family|g__Helicobacter.s__Helicobacter_pylori	2.0537354324
+UniRef50_UPI0004793211: peptidase	2.0536564819
+UniRef50_UPI0004793211: peptidase|unclassified	2.0536564819
+UniRef50_Z2DML6	2.0535089936
+UniRef50_Z2DML6|unclassified	2.0535089936
+UniRef50_A9C285: Hydrolase, TatD family	2.0533880903
+UniRef50_A9C285: Hydrolase, TatD family|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0533880903
+UniRef50_F9NW45: Trehalose utilization	2.0533880903
+UniRef50_F9NW45: Trehalose utilization|g__Propionibacterium.s__Propionibacterium_acnes	2.0533880903
+UniRef50_Q12GA5: Dyp-type peroxidase	2.0533880903
+UniRef50_Q12GA5: Dyp-type peroxidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0533880903
+UniRef50_UPI00038EBB86: PREDICTED: collagen alpha-2(I) chain-like isoform X1	2.0533880903
+UniRef50_UPI00038EBB86: PREDICTED: collagen alpha-2(I) chain-like isoform X1|unclassified	2.0533880903
+UniRef50_V4D8C9: Transcriptional regulator	2.0533880903
+UniRef50_V4D8C9: Transcriptional regulator|g__Escherichia.s__Escherichia_coli	2.0533880903
+UniRef50_T4ZWD9: Membrane protein	2.0532889601
+UniRef50_T4ZWD9: Membrane protein|g__Helicobacter.s__Helicobacter_pylori	2.0532889601
+UniRef50_UPI0002FE42C7: hypothetical protein	2.0529810943
+UniRef50_UPI0002FE42C7: hypothetical protein|unclassified	2.0529810943
+UniRef50_I4L4Y8: ISPa7-like transposase	2.0528095120
+UniRef50_I4L4Y8: ISPa7-like transposase|unclassified	2.0528095120
+UniRef50_A9EDB3: Putative transposase	2.0525181817
+UniRef50_A9EDB3: Putative transposase|unclassified	2.0525181817
+UniRef50_S1I040	2.0515004407
+UniRef50_S1I040|unclassified	2.0515004407
+UniRef50_UPI000255BD2E: membrane protein	2.0513677803
+UniRef50_UPI000255BD2E: membrane protein|unclassified	2.0513677803
+UniRef50_D8JKE9: Outer membrane porin protein	2.0512724737
+UniRef50_D8JKE9: Outer membrane porin protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.0512724737
+UniRef50_UPI00046835E4: hypothetical protein	2.0508905264
+UniRef50_UPI00046835E4: hypothetical protein|unclassified	2.0508905264
+UniRef50_W1WAB8: Accessory regulator R	2.0507960836
+UniRef50_W1WAB8: Accessory regulator R|unclassified	2.0507960836
+UniRef50_UPI00016A34C2: riboflavin biosynthesis protein RibD, partial	2.0507925166
+UniRef50_UPI00016A34C2: riboflavin biosynthesis protein RibD, partial|unclassified	2.0507925166
+UniRef50_Q5NQ43: Adenylate kinase	2.0501337909
+UniRef50_Q5NQ43: Adenylate kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.9646365422
+UniRef50_Q5NQ43: Adenylate kinase|unclassified	0.0854972486
+UniRef50_A6LTV0: Fibronectin, type III domain protein	2.0495889173
+UniRef50_A6LTV0: Fibronectin, type III domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.0495889173
+UniRef50_A3VH30	2.0491803279
+UniRef50_A3VH30|unclassified	2.0491803279
+UniRef50_A4XDU7: Aromatic-ring-hydroxylating dioxygenase, beta subunit	2.0491803279
+UniRef50_A4XDU7: Aromatic-ring-hydroxylating dioxygenase, beta subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0491803279
+UniRef50_B4U552: Zinc-binding lipoprotein LraI, laminin-binding protein	2.0491803279
+UniRef50_B4U552: Zinc-binding lipoprotein LraI, laminin-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	2.0491803279
+UniRef50_D7BLM1: Binding-protein-dependent transport systems inner membrane component	2.0491803279
+UniRef50_D7BLM1: Binding-protein-dependent transport systems inner membrane component|g__Propionibacterium.s__Propionibacterium_acnes	2.0491803279
+UniRef50_F3U3A1: TRAP-T family transporter small inner membrane subunit	2.0491803279
+UniRef50_F3U3A1: TRAP-T family transporter small inner membrane subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.0491803279
+UniRef50_Q8XI79: Putative pyruvate, phosphate dikinase regulatory protein	2.0491803279
+UniRef50_Q8XI79: Putative pyruvate, phosphate dikinase regulatory protein|g__Clostridium.s__Clostridium_beijerinckii	2.0491803279
+UniRef50_Q9RSZ4	2.0491803279
+UniRef50_Q9RSZ4|g__Deinococcus.s__Deinococcus_radiodurans	2.0491803279
+UniRef50_UPI00041DC25F: hypothetical protein	2.0491135704
+UniRef50_UPI00041DC25F: hypothetical protein|unclassified	2.0491135704
+UniRef50_I2W5Q8: PF09831 domain protein	2.0490669255
+UniRef50_I2W5Q8: PF09831 domain protein|unclassified	2.0490669255
+UniRef50_W5HTP6	2.0489229514
+UniRef50_W5HTP6|unclassified	2.0489229514
+UniRef50_M5JV17: Phosphate ABC transporter substrate-binding protein (Fragment)	2.0485528047
+UniRef50_M5JV17: Phosphate ABC transporter substrate-binding protein (Fragment)|unclassified	2.0485528047
+UniRef50_R7YLT4	2.0484749697
+UniRef50_R7YLT4|unclassified	2.0484749697
+UniRef50_W5GGY4	2.0481967691
+UniRef50_W5GGY4|unclassified	2.0481967691
+UniRef50_UPI000467229A: ArsR family transcriptional regulator	2.0479567446
+UniRef50_UPI000467229A: ArsR family transcriptional regulator|unclassified	2.0479567446
+UniRef50_H3TMN5: Hemagglutinin	2.0478204656
+UniRef50_H3TMN5: Hemagglutinin|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0478204656
+UniRef50_UPI0000557635: COG1494: Fructose-1,6-bisphosphatase/sedoheptulose 1,7-bisphosphatase and related proteins	2.0472782767
+UniRef50_UPI0000557635: COG1494: Fructose-1,6-bisphosphatase/sedoheptulose 1,7-bisphosphatase and related proteins|unclassified	2.0472782767
+UniRef50_Q3JUL5: Benzoate transport protein	2.0466169299
+UniRef50_Q3JUL5: Benzoate transport protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0466169299
+UniRef50_D5SMQ9	2.0465894928
+UniRef50_D5SMQ9|unclassified	2.0465894928
+UniRef50_G8LNB8	2.0463958705
+UniRef50_G8LNB8|unclassified	2.0463958705
+UniRef50_A3RSV8: Hypothetical membrane spanning protein	2.0462426214
+UniRef50_A3RSV8: Hypothetical membrane spanning protein|unclassified	2.0462426214
+UniRef50_I6C8I4: HTH-type transcriptional regulator yjdC domain protein	2.0461624662
+UniRef50_I6C8I4: HTH-type transcriptional regulator yjdC domain protein|unclassified	2.0461624662
+UniRef50_A6LWX5: Acriflavin resistance protein	2.0459187244
+UniRef50_A6LWX5: Acriflavin resistance protein|g__Clostridium.s__Clostridium_beijerinckii	2.0459187244
+UniRef50_K7S8U6: CvpA family protein	2.0451374340
+UniRef50_K7S8U6: CvpA family protein|g__Propionibacterium.s__Propionibacterium_acnes	2.0451374340
+UniRef50_D4HD87: Histidine kinase	2.0450461488
+UniRef50_D4HD87: Histidine kinase|g__Propionibacterium.s__Propionibacterium_acnes	2.0450461488
+UniRef50_A6LXY4: Transcriptional regulator, TetR family	2.0449897751
+UniRef50_A6LXY4: Transcriptional regulator, TetR family|g__Clostridium.s__Clostridium_beijerinckii	2.0449897751
+UniRef50_B5XIZ5	2.0449897751
+UniRef50_B5XIZ5|g__Streptococcus.s__Streptococcus_agalactiae	2.0449897751
+UniRef50_B7A454: Sensory box-containing diguanylate cyclase	2.0449897751
+UniRef50_B7A454: Sensory box-containing diguanylate cyclase|g__Escherichia.s__Escherichia_coli	2.0449897751
+UniRef50_D5HEW0: Carbohydrate ABC transporter membrane protein 1, CUT1 family (TC 3.A.1.1.-)	2.0449897751
+UniRef50_D5HEW0: Carbohydrate ABC transporter membrane protein 1, CUT1 family (TC 3.A.1.1.-)|g__Clostridium.s__Clostridium_beijerinckii	2.0449897751
+UniRef50_G2JHQ9: Histone acetyltransferase HPA2	2.0449897751
+UniRef50_G2JHQ9: Histone acetyltransferase HPA2|g__Acinetobacter.s__Acinetobacter_baumannii	2.0449897751
+UniRef50_K4NFJ8	2.0449897751
+UniRef50_K4NFJ8|g__Helicobacter.s__Helicobacter_pylori	2.0449897751
+UniRef50_M0SU46	2.0449897751
+UniRef50_M0SU46|unclassified	2.0449897751
+UniRef50_R4K681: Dihydrofolate reductase	2.0449897751
+UniRef50_R4K681: Dihydrofolate reductase|g__Clostridium.s__Clostridium_beijerinckii	2.0449897751
+UniRef50_Q5NRL6: Ribonuclease PH	2.0447059662
+UniRef50_Q5NRL6: Ribonuclease PH|g__Neisseria.s__Neisseria_meningitidis	1.5552099533
+UniRef50_Q5NRL6: Ribonuclease PH|unclassified	0.4894960129
+UniRef50_I0DZ31: Major facilitator transporter	2.0446681346
+UniRef50_I0DZ31: Major facilitator transporter|g__Acinetobacter.s__Acinetobacter_baumannii	2.0446681346
+UniRef50_G2JIT2: ABC-type spermidine/putrescine transport system, ATPase component	2.0444578165
+UniRef50_G2JIT2: ABC-type spermidine/putrescine transport system, ATPase component|g__Acinetobacter.s__Acinetobacter_baumannii	2.0444578165
+UniRef50_A4VGJ3: Two-component sensor PhoQ	2.0442492836
+UniRef50_A4VGJ3: Two-component sensor PhoQ|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0442492836
+UniRef50_W4HLH4	2.0439924405
+UniRef50_W4HLH4|unclassified	2.0439924405
+UniRef50_B9TIG4	2.0438995977
+UniRef50_B9TIG4|unclassified	2.0438995977
+UniRef50_UPI0002656184	2.0437982547
+UniRef50_UPI0002656184|unclassified	2.0437982547
+UniRef50_B9TH35	2.0434166792
+UniRef50_B9TH35|unclassified	2.0434166792
+UniRef50_V1CA60	2.0432788073
+UniRef50_V1CA60|unclassified	2.0432788073
+UniRef50_UPI0002493305: amino acid ABC transporter ATP-binding protein	2.0423063629
+UniRef50_UPI0002493305: amino acid ABC transporter ATP-binding protein|unclassified	2.0423063629
+UniRef50_W5MN69	2.0422716294
+UniRef50_W5MN69|unclassified	2.0422716294
+UniRef50_F0Y296	2.0417583550
+UniRef50_F0Y296|unclassified	2.0417583550
+UniRef50_UPI00031AE090: hypothetical protein	2.0416881421
+UniRef50_UPI00031AE090: hypothetical protein|unclassified	2.0416881421
+UniRef50_UPI0004644337: hypothetical protein, partial	2.0415267019
+UniRef50_UPI0004644337: hypothetical protein, partial|unclassified	2.0415267019
+UniRef50_UPI000415693F: hypothetical protein	2.0413900684
+UniRef50_UPI000415693F: hypothetical protein|unclassified	2.0413900684
+UniRef50_J9FJB0: Saccharopine dehydrogenase (Fragment)	2.0411705742
+UniRef50_J9FJB0: Saccharopine dehydrogenase (Fragment)|unclassified	2.0411705742
+UniRef50_E3F1H1: Ribosomal silencing factor RsfS	2.0408163265
+UniRef50_E3F1H1: Ribosomal silencing factor RsfS|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.0408163265
+UniRef50_F9YZR8: Iron transport system substrate-binding protein	2.0408163265
+UniRef50_F9YZR8: Iron transport system substrate-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	2.0408163265
+UniRef50_K0M3L5: Hemolysin	2.0408163265
+UniRef50_K0M3L5: Hemolysin|g__Staphylococcus.s__Staphylococcus_epidermidis	2.0408163265
+UniRef50_Q8RUD8	2.0408163265
+UniRef50_Q8RUD8|unclassified	2.0408163265
+UniRef50_R6G0X7: Rubrerythrin	2.0408163265
+UniRef50_R6G0X7: Rubrerythrin|g__Clostridium.s__Clostridium_beijerinckii	2.0408163265
+UniRef50_S9R2W6	2.0407947032
+UniRef50_S9R2W6|unclassified	2.0407947032
+UniRef50_UPI00038EBF07: PREDICTED: laforin, isoform 9-like isoform X1	2.0401678773
+UniRef50_UPI00038EBF07: PREDICTED: laforin, isoform 9-like isoform X1|unclassified	2.0401678773
+UniRef50_I5QRE7: Transcriptional regulator, LysR family	2.0400849015
+UniRef50_I5QRE7: Transcriptional regulator, LysR family|unclassified	2.0400849015
+UniRef50_P40740: Aryl-phospho-beta-D-glucosidase BglH	2.0400561936
+UniRef50_P40740: Aryl-phospho-beta-D-glucosidase BglH|g__Clostridium.s__Clostridium_beijerinckii	1.6395644685
+UniRef50_P40740: Aryl-phospho-beta-D-glucosidase BglH|unclassified	0.4004917251
+UniRef50_R8ZKN1	2.0385855393
+UniRef50_R8ZKN1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8441768881
+UniRef50_R8ZKN1|unclassified	0.1944086512
+UniRef50_L1KFD8: Large exoprotein	2.0384596486
+UniRef50_L1KFD8: Large exoprotein|unclassified	2.0384596486
+UniRef50_X1NEY9: Marine sediment metagenome DNA, contig: S06H3_C04316	2.0381507227
+UniRef50_X1NEY9: Marine sediment metagenome DNA, contig: S06H3_C04316|unclassified	2.0381507227
+UniRef50_F6BYQ8	2.0380740354
+UniRef50_F6BYQ8|unclassified	2.0380740354
+UniRef50_B9TEB7	2.0371013907
+UniRef50_B9TEB7|unclassified	2.0371013907
+UniRef50_UPI0004636F1F: hypothetical protein	2.0369775440
+UniRef50_UPI0004636F1F: hypothetical protein|unclassified	2.0369775440
+UniRef50_A6LVW2: 3D domain protein	2.0366598778
+UniRef50_A6LVW2: 3D domain protein|g__Clostridium.s__Clostridium_beijerinckii	2.0366598778
+UniRef50_B6JMC7: Phosphotransacetylase	2.0366598778
+UniRef50_B6JMC7: Phosphotransacetylase|g__Helicobacter.s__Helicobacter_pylori	2.0366598778
+UniRef50_C6EIP4	2.0366598778
+UniRef50_C6EIP4|g__Escherichia.s__Escherichia_coli	2.0366598778
+UniRef50_D9UII6: Predicted protein	2.0366598778
+UniRef50_D9UII6: Predicted protein|unclassified	2.0366598778
+UniRef50_E8Q9Y2: Abortive infection protein AbiGI	2.0366598778
+UniRef50_E8Q9Y2: Abortive infection protein AbiGI|g__Streptococcus.s__Streptococcus_agalactiae	2.0366598778
+UniRef50_UPI0003628DE8: hypothetical protein	2.0363836058
+UniRef50_UPI0003628DE8: hypothetical protein|unclassified	2.0363836058
+UniRef50_G7M1N6: Phage tail tape measure protein, TP901 family	2.0361520381
+UniRef50_G7M1N6: Phage tail tape measure protein, TP901 family|g__Clostridium.s__Clostridium_beijerinckii	2.0361520381
+UniRef50_F8KPC2: Arginase	2.0361301714
+UniRef50_F8KPC2: Arginase|g__Helicobacter.s__Helicobacter_pylori	2.0361301714
+UniRef50_W6KDZ6	2.0359085654
+UniRef50_W6KDZ6|unclassified	2.0359085654
+UniRef50_K1ZPS1	2.0358156236
+UniRef50_K1ZPS1|unclassified	2.0358156236
+UniRef50_M7A685	2.0357710004
+UniRef50_M7A685|unclassified	2.0357710004
+UniRef50_X9W7G0	2.0351911317
+UniRef50_X9W7G0|unclassified	2.0351911317
+UniRef50_F3SY45	2.0350393714
+UniRef50_F3SY45|unclassified	2.0350393714
+UniRef50_A3VLI2: Replication initiator RepC	2.0349833097
+UniRef50_A3VLI2: Replication initiator RepC|unclassified	2.0349833097
+UniRef50_UPI000365A688: hypothetical protein	2.0346415872
+UniRef50_UPI000365A688: hypothetical protein|unclassified	2.0346415872
+UniRef50_Q3B1T5	2.0343866369
+UniRef50_Q3B1T5|unclassified	2.0343866369
+UniRef50_UPI00036EFF59: hypothetical protein	2.0342581729
+UniRef50_UPI00036EFF59: hypothetical protein|unclassified	2.0342581729
+UniRef50_K0RPN5	2.0341100618
+UniRef50_K0RPN5|unclassified	2.0341100618
+UniRef50_UPI0002FCA31A: hypothetical protein	2.0334063822
+UniRef50_UPI0002FCA31A: hypothetical protein|unclassified	2.0334063822
+UniRef50_UPI000465BF2B: hypothetical protein	2.0333563535
+UniRef50_UPI000465BF2B: hypothetical protein|unclassified	2.0333563535
+UniRef50_S9S2T2	2.0333116352
+UniRef50_S9S2T2|unclassified	2.0333116352
+UniRef50_E8P9Z6: DNA repair protein RecN	2.0332902826
+UniRef50_E8P9Z6: DNA repair protein RecN|g__Acinetobacter.s__Acinetobacter_baumannii	2.0332902826
+UniRef50_M0RKR1	2.0332135274
+UniRef50_M0RKR1|unclassified	2.0332135274
+UniRef50_B2HZ46	2.0329318431
+UniRef50_B2HZ46|g__Acinetobacter.s__Acinetobacter_baumannii	2.0329318431
+UniRef50_W4MCA9	2.0327018258
+UniRef50_W4MCA9|unclassified	2.0327018258
+UniRef50_M9RCP3	2.0326473866
+UniRef50_M9RCP3|unclassified	2.0326473866
+UniRef50_E6VPP7: NADH-ubiquinone/plastoquinone oxidoreductase chain 6	2.0325203252
+UniRef50_E6VPP7: NADH-ubiquinone/plastoquinone oxidoreductase chain 6|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.0325203252
+UniRef50_E9WKH8: Kelch domain-containing protein	2.0325203252
+UniRef50_E9WKH8: Kelch domain-containing protein|g__Escherichia.s__Escherichia_coli	2.0325203252
+UniRef50_F9V7A7: Mannose-specific PTS system IID component	2.0325203252
+UniRef50_F9V7A7: Mannose-specific PTS system IID component|g__Streptococcus.s__Streptococcus_agalactiae	2.0325203252
+UniRef50_I4SK17: Cytochrome C peroxidase	2.0325203252
+UniRef50_I4SK17: Cytochrome C peroxidase|g__Escherichia.s__Escherichia_coli	2.0325203252
+UniRef50_P75737	2.0325203252
+UniRef50_P75737|g__Escherichia.s__Escherichia_coli	2.0325203252
+UniRef50_Q6A6S0	2.0325203252
+UniRef50_Q6A6S0|g__Propionibacterium.s__Propionibacterium_acnes	2.0325203252
+UniRef50_UPI0004661F75: hypothetical protein	2.0325203252
+UniRef50_UPI0004661F75: hypothetical protein|unclassified	2.0325203252
+UniRef50_G3VFK2	2.0317881564
+UniRef50_G3VFK2|unclassified	2.0317881564
+UniRef50_Q3IVH9: Phosphotransacetylase	2.0317652934
+UniRef50_Q3IVH9: Phosphotransacetylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.0317652934
+UniRef50_G5M6M8	2.0315959007
+UniRef50_G5M6M8|unclassified	2.0315959007
+UniRef50_Q9RX39	2.0313759915
+UniRef50_Q9RX39|unclassified	2.0313759915
+UniRef50_Q57118: Nitrogenase molybdenum-iron protein beta chain	2.0312622521
+UniRef50_Q57118: Nitrogenase molybdenum-iron protein beta chain|unclassified	2.0312622521
+UniRef50_B9KWI3: Thiamine pyrophosphate enzyme TPP binding domain protein	2.0312344849
+UniRef50_B9KWI3: Thiamine pyrophosphate enzyme TPP binding domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.0312344849
+UniRef50_UPI00046F8DC7: XRE family transcriptional regulator	2.0309631343
+UniRef50_UPI00046F8DC7: XRE family transcriptional regulator|unclassified	2.0309631343
+UniRef50_V4JMR5	2.0303626884
+UniRef50_V4JMR5|unclassified	2.0303626884
+UniRef50_H3UP09	2.0299131703
+UniRef50_H3UP09|unclassified	2.0299131703
+UniRef50_UPI000185D783: hypothetical protein, conserved	2.0298644686
+UniRef50_UPI000185D783: hypothetical protein, conserved|unclassified	2.0298644686
+UniRef50_F0KNV9: Acyl-CoA dehydrogenase	2.0295193864
+UniRef50_F0KNV9: Acyl-CoA dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	2.0295193864
+UniRef50_Q6AAJ1: DNA or RNA helicase of superfamily II	2.0291690734
+UniRef50_Q6AAJ1: DNA or RNA helicase of superfamily II|g__Propionibacterium.s__Propionibacterium_acnes	2.0291690734
+UniRef50_X1SCN4: Marine sediment metagenome DNA, contig: S12H4_S05973 (Fragment)	2.0290972914
+UniRef50_X1SCN4: Marine sediment metagenome DNA, contig: S12H4_S05973 (Fragment)|unclassified	2.0290972914
+UniRef50_G8V0K4: Surface protein G	2.0284726794
+UniRef50_G8V0K4: Surface protein G|g__Staphylococcus.s__Staphylococcus_epidermidis	2.0284726794
+UniRef50_A0A024E8N7: LysR family transcriptional regulator	2.0283975659
+UniRef50_A0A024E8N7: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0283975659
+UniRef50_A6LWW9	2.0283975659
+UniRef50_A6LWW9|g__Clostridium.s__Clostridium_beijerinckii	2.0283975659
+UniRef50_A6LXB8: SCP-like extracellular	2.0283975659
+UniRef50_A6LXB8: SCP-like extracellular|g__Clostridium.s__Clostridium_beijerinckii	2.0283975659
+UniRef50_K0RL16	2.0283975659
+UniRef50_K0RL16|unclassified	2.0283975659
+UniRef50_Q9RY97	2.0283975659
+UniRef50_Q9RY97|g__Deinococcus.s__Deinococcus_radiodurans	2.0283975659
+UniRef50_V1HWG0: Acyl-CoA dehydrogenase	2.0283347137
+UniRef50_V1HWG0: Acyl-CoA dehydrogenase|unclassified	2.0283347137
+UniRef50_W6BIT8: ParB-like nuclease domain protein	2.0282433401
+UniRef50_W6BIT8: ParB-like nuclease domain protein|unclassified	2.0282433401
+UniRef50_P0CZ01: Hyaluronate lyase	2.0281432822
+UniRef50_P0CZ01: Hyaluronate lyase|g__Propionibacterium.s__Propionibacterium_acnes	2.0281432822
+UniRef50_K7JKT8	2.0278760081
+UniRef50_K7JKT8|unclassified	2.0278760081
+UniRef50_UPI000372055F: 50S ribosomal protein L6, partial	2.0278598088
+UniRef50_UPI000372055F: 50S ribosomal protein L6, partial|unclassified	2.0278598088
+UniRef50_A6M2B6: PTS system, lactose/cellobiose family IIC subunit	2.0276869085
+UniRef50_A6M2B6: PTS system, lactose/cellobiose family IIC subunit|g__Clostridium.s__Clostridium_beijerinckii	2.0276869085
+UniRef50_S1DEW3: Inner membrane transporter ycaM	2.0276285962
+UniRef50_S1DEW3: Inner membrane transporter ycaM|unclassified	2.0276285962
+UniRef50_F0Y7I6	2.0275594789
+UniRef50_F0Y7I6|unclassified	2.0275594789
+UniRef50_A1AEN6	2.0275478398
+UniRef50_A1AEN6|unclassified	2.0275478398
+UniRef50_S5YFS5	2.0273172521
+UniRef50_S5YFS5|unclassified	2.0273172521
+UniRef50_X7UMV2	2.0271548144
+UniRef50_X7UMV2|unclassified	2.0271548144
+UniRef50_Q9ZMH8: Putative zinc metalloprotease jhp_0242	2.0264443806
+UniRef50_Q9ZMH8: Putative zinc metalloprotease jhp_0242|g__Helicobacter.s__Helicobacter_pylori	2.0264443806
+UniRef50_B7UY33: Succinylglutamate desuccinylase	2.0264173373
+UniRef50_B7UY33: Succinylglutamate desuccinylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0264173373
+UniRef50_A9N458	2.0263038749
+UniRef50_A9N458|unclassified	2.0263038749
+UniRef50_UPI000474A020: hypothetical protein	2.0259024018
+UniRef50_UPI000474A020: hypothetical protein|unclassified	2.0259024018
+UniRef50_UPI00036D65BC: hypothetical protein, partial	2.0255952934
+UniRef50_UPI00036D65BC: hypothetical protein, partial|unclassified	2.0255952934
+UniRef50_Q1D2V0	2.0245404026
+UniRef50_Q1D2V0|unclassified	2.0245404026
+UniRef50_A6LY24: Amino acid permease-associated region	2.0244185066
+UniRef50_A6LY24: Amino acid permease-associated region|g__Clostridium.s__Clostridium_beijerinckii	2.0244185066
+UniRef50_B4S0J5: Phosphatidylserine decarboxylase proenzyme	2.0242914980
+UniRef50_B4S0J5: Phosphatidylserine decarboxylase proenzyme|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0242914980
+UniRef50_E1RTE5: Peptidase T	2.0242914980
+UniRef50_E1RTE5: Peptidase T|g__Escherichia.s__Escherichia_coli	2.0242914980
+UniRef50_M9VHP6: Membrane associated protein	2.0242914980
+UniRef50_M9VHP6: Membrane associated protein|g__Propionibacterium.s__Propionibacterium_acnes	2.0242914980
+UniRef50_P53652: Superoxide dismutase [Mn]	2.0242914980
+UniRef50_P53652: Superoxide dismutase [Mn]|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0242914980
+UniRef50_Q2T753: Alpha-ketoglutarate-dependent taurine dioxygenase	2.0242914980
+UniRef50_Q2T753: Alpha-ketoglutarate-dependent taurine dioxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0242914980
+UniRef50_S9TIV9	2.0239894994
+UniRef50_S9TIV9|unclassified	2.0239894994
+UniRef50_Q4MN38	2.0235878447
+UniRef50_Q4MN38|unclassified	2.0235878447
+UniRef50_P39065: Acetoin utilization protein AcuA	2.0234713772
+UniRef50_P39065: Acetoin utilization protein AcuA|unclassified	2.0234713772
+UniRef50_A5IPN7	2.0233122441
+UniRef50_A5IPN7|unclassified	2.0233122441
+UniRef50_S5RIW0	2.0229009974
+UniRef50_S5RIW0|g__Helicobacter.s__Helicobacter_pylori	2.0229009974
+UniRef50_U5MKZ1	2.0226909957
+UniRef50_U5MKZ1|g__Clostridium.s__Clostridium_beijerinckii	2.0226909957
+UniRef50_UPI00037F4511: hypothetical protein, partial	2.0223937245
+UniRef50_UPI00037F4511: hypothetical protein, partial|unclassified	2.0223937245
+UniRef50_V6VNG0: HTH-like domain protein	2.0220606374
+UniRef50_V6VNG0: HTH-like domain protein|unclassified	2.0220606374
+UniRef50_I1VJZ3: PhoH	2.0216058489
+UniRef50_I1VJZ3: PhoH|g__Acinetobacter.s__Acinetobacter_baumannii	2.0216058489
+UniRef50_U9YP10	2.0215684183
+UniRef50_U9YP10|unclassified	2.0215684183
+UniRef50_UPI0002E661AB: hypothetical protein	2.0214436617
+UniRef50_UPI0002E661AB: hypothetical protein|unclassified	2.0214436617
+UniRef50_B2N1J1	2.0213463741
+UniRef50_B2N1J1|unclassified	2.0213463741
+UniRef50_I6FBB3: N,n'-diacetylchitobiose permease iic component	2.0211213941
+UniRef50_I6FBB3: N,n'-diacetylchitobiose permease iic component|unclassified	2.0211213941
+UniRef50_B9JR02	2.0209902897
+UniRef50_B9JR02|unclassified	2.0209902897
+UniRef50_G0AIR4: Phage tail E family protein	2.0208145746
+UniRef50_G0AIR4: Phage tail E family protein|unclassified	2.0208145746
+UniRef50_W8YLC5	2.0205792910
+UniRef50_W8YLC5|unclassified	2.0205792910
+UniRef50_D4HAW3	2.0202020202
+UniRef50_D4HAW3|g__Propionibacterium.s__Propionibacterium_acnes	2.0202020202
+UniRef50_D7B4P4	2.0202020202
+UniRef50_D7B4P4|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0202020202
+UniRef50_G8VA48: Lactate/malate dehydrogenase, NAD binding domain protein	2.0202020202
+UniRef50_G8VA48: Lactate/malate dehydrogenase, NAD binding domain protein|g__Propionibacterium.s__Propionibacterium_acnes	2.0202020202
+UniRef50_K4PQM7: Glycosyl transferase, group 2 family protein	2.0202020202
+UniRef50_K4PQM7: Glycosyl transferase, group 2 family protein|g__Streptococcus.s__Streptococcus_agalactiae	2.0202020202
+UniRef50_L8FGN6: Preprotein translocase, SecA subunit (Fragment)	2.0202020202
+UniRef50_L8FGN6: Preprotein translocase, SecA subunit (Fragment)|unclassified	2.0202020202
+UniRef50_M9VHZ8	2.0202020202
+UniRef50_M9VHZ8|g__Propionibacterium.s__Propionibacterium_acnes	2.0202020202
+UniRef50_Q6F8Q1: Protease HtpX	2.0202020202
+UniRef50_Q6F8Q1: Protease HtpX|g__Acinetobacter.s__Acinetobacter_baumannii	2.0202020202
+UniRef50_P75030: Urease subunit gamma	2.0201666823
+UniRef50_P75030: Urease subunit gamma|unclassified	2.0201666823
+UniRef50_A7FAV5	2.0197811753
+UniRef50_A7FAV5|g__Acinetobacter.s__Acinetobacter_baumannii	2.0197811753
+UniRef50_R4Z8S0: Conserved domain protein	2.0196626695
+UniRef50_R4Z8S0: Conserved domain protein|g__Streptococcus.s__Streptococcus_agalactiae	2.0196626695
+UniRef50_D9QZA2: ABC transporter related protein	2.0196360575
+UniRef50_D9QZA2: ABC transporter related protein|g__Clostridium.s__Clostridium_beijerinckii	2.0196360575
+UniRef50_N0C372: LytR family transcriptional regulator	2.0195523540
+UniRef50_N0C372: LytR family transcriptional regulator|g__Streptococcus.s__Streptococcus_agalactiae	2.0195523540
+UniRef50_W7QFU8	2.0195443756
+UniRef50_W7QFU8|unclassified	2.0195443756
+UniRef50_X0WV57: Marine sediment metagenome DNA, contig: S01H1_S26906 (Fragment)	2.0191377007
+UniRef50_X0WV57: Marine sediment metagenome DNA, contig: S01H1_S26906 (Fragment)|unclassified	2.0191377007
+UniRef50_UPI00046D7227: ABC transporter permease	2.0189454267
+UniRef50_UPI00046D7227: ABC transporter permease|unclassified	2.0189454267
+UniRef50_C5AMM3	2.0188718230
+UniRef50_C5AMM3|unclassified	2.0188718230
+UniRef50_W5WHE0	2.0188615239
+UniRef50_W5WHE0|unclassified	2.0188615239
+UniRef50_A0A024C0E9: LPS biosynthesis protein	2.0186926485
+UniRef50_A0A024C0E9: LPS biosynthesis protein|g__Helicobacter.s__Helicobacter_pylori	2.0186926485
+UniRef50_UPI00047217DF: hypothetical protein	2.0186473865
+UniRef50_UPI00047217DF: hypothetical protein|unclassified	2.0186473865
+UniRef50_A5IUE3	2.0186063928
+UniRef50_A5IUE3|unclassified	2.0186063928
+UniRef50_Q9I399	2.0183470686
+UniRef50_Q9I399|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7889087657
+UniRef50_Q9I399|unclassified	0.2294383029
+UniRef50_J3HVJ5	2.0183174042
+UniRef50_J3HVJ5|unclassified	2.0183174042
+UniRef50_B7LAA9	2.0179715377
+UniRef50_B7LAA9|g__Escherichia.s__Escherichia_coli	2.0179715377
+UniRef50_H5N713: Multidrug translocase MdfA	2.0177411732
+UniRef50_H5N713: Multidrug translocase MdfA|unclassified	2.0177411732
+UniRef50_G0DRS5: Sugar-binding protein	2.0175073116
+UniRef50_G0DRS5: Sugar-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	2.0175073116
+UniRef50_G8VKL1: Aminopeptidase	2.0172400037
+UniRef50_G8VKL1: Aminopeptidase|g__Propionibacterium.s__Propionibacterium_acnes	2.0172400037
+UniRef50_F8FZJ8: Major facilitator transporter	2.0169415027
+UniRef50_F8FZJ8: Major facilitator transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0169415027
+UniRef50_K0HMC2	2.0166521590
+UniRef50_K0HMC2|g__Propionibacterium.s__Propionibacterium_acnes	2.0166521590
+UniRef50_B2TJ37: DNA uptake protein	2.0164444345
+UniRef50_B2TJ37: DNA uptake protein|g__Clostridium.s__Clostridium_beijerinckii	2.0164444345
+UniRef50_A6VE97: Transcriptional regulator, LysR family	2.0161290323
+UniRef50_A6VE97: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0161290323
+UniRef50_A7BZI5	2.0161290323
+UniRef50_A7BZI5|unclassified	2.0161290323
+UniRef50_F3BY18	2.0161290323
+UniRef50_F3BY18|g__Propionibacterium.s__Propionibacterium_acnes	2.0161290323
+UniRef50_K6UZ95: Benzoate transport porin BenP	2.0161290323
+UniRef50_K6UZ95: Benzoate transport porin BenP|g__Acinetobacter.s__Acinetobacter_baumannii	2.0161290323
+UniRef50_K8BL74: Cellulose synthase operon protein C	2.0161290323
+UniRef50_K8BL74: Cellulose synthase operon protein C|g__Escherichia.s__Escherichia_coli	2.0161290323
+UniRef50_M4QZ02: Ribosomal RNA small subunit methyltransferase D	2.0161290323
+UniRef50_M4QZ02: Ribosomal RNA small subunit methyltransferase D|g__Acinetobacter.s__Acinetobacter_baumannii	2.0161290323
+UniRef50_Q4MTU5	2.0161290323
+UniRef50_Q4MTU5|unclassified	2.0161290323
+UniRef50_Q896W6: Conserved protein	2.0161290323
+UniRef50_Q896W6: Conserved protein|g__Clostridium.s__Clostridium_beijerinckii	2.0161290323
+UniRef50_W1MPP0	2.0160200736
+UniRef50_W1MPP0|unclassified	2.0160200736
+UniRef50_W1Y270: Alpha-D-glucose-1-phosphate phosphatase YihX (Fragment)	2.0160075785
+UniRef50_W1Y270: Alpha-D-glucose-1-phosphate phosphatase YihX (Fragment)|unclassified	2.0160075785
+UniRef50_A0A017TDI9	2.0159908052
+UniRef50_A0A017TDI9|unclassified	2.0159908052
+UniRef50_Q98E39: Msr4423 protein	2.0156225307
+UniRef50_Q98E39: Msr4423 protein|unclassified	2.0156225307
+UniRef50_UPI0002196CAA: Putative ribose uptake protein RbsU, GRP transporter family	2.0153237124
+UniRef50_UPI0002196CAA: Putative ribose uptake protein RbsU, GRP transporter family|unclassified	2.0153237124
+UniRef50_A4WR60: von Willebrand factor, type A	2.0151266141
+UniRef50_A4WR60: von Willebrand factor, type A|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.0151266141
+UniRef50_C0P8E9	2.0151253890
+UniRef50_C0P8E9|unclassified	2.0151253890
+UniRef50_W1DUY3: Fosmidomycin resistance protein	2.0150202667
+UniRef50_W1DUY3: Fosmidomycin resistance protein|unclassified	2.0150202667
+UniRef50_G2L4X9: Asparagine synthetase	2.0149807389
+UniRef50_G2L4X9: Asparagine synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0149807389
+UniRef50_A6M1S0: Glycoside hydrolase, clan GH-D	2.0148949341
+UniRef50_A6M1S0: Glycoside hydrolase, clan GH-D|g__Clostridium.s__Clostridium_beijerinckii	2.0148949341
+UniRef50_A6LX09: Transcriptional antiterminator, BglG	2.0147548897
+UniRef50_A6LX09: Transcriptional antiterminator, BglG|g__Clostridium.s__Clostridium_beijerinckii	2.0147548897
+UniRef50_K7YBZ8	2.0146894409
+UniRef50_K7YBZ8|g__Helicobacter.s__Helicobacter_pylori	2.0146894409
+UniRef50_R0TGF0	2.0145607886
+UniRef50_R0TGF0|unclassified	2.0145607886
+UniRef50_A6LTV8	2.0138771589
+UniRef50_A6LTV8|g__Clostridium.s__Clostridium_beijerinckii	2.0138771589
+UniRef50_E7SQV9	2.0137683328
+UniRef50_E7SQV9|unclassified	2.0137683328
+UniRef50_D4HFG5: ABC transporter, solute-binding protein	2.0136248257
+UniRef50_D4HFG5: ABC transporter, solute-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	2.0136248257
+UniRef50_A4EDG0	2.0135557546
+UniRef50_A4EDG0|unclassified	2.0135557546
+UniRef50_UPI000428F92B: chemotaxis protein CheR	2.0134596647
+UniRef50_UPI000428F92B: chemotaxis protein CheR|unclassified	2.0134596647
+UniRef50_B9KKM3	2.0134519183
+UniRef50_B9KKM3|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.0134519183
+UniRef50_Q9RSH5: Membrane protein insertase YidC	2.0131629888
+UniRef50_Q9RSH5: Membrane protein insertase YidC|g__Deinococcus.s__Deinococcus_radiodurans	2.0131629888
+UniRef50_A8LR81	2.0131183848
+UniRef50_A8LR81|unclassified	2.0131183848
+UniRef50_A0A024LLW8	2.0129510290
+UniRef50_A0A024LLW8|unclassified	2.0129510290
+UniRef50_A6LXN5: Methyl-accepting chemotaxis sensory transducer	2.0128351316
+UniRef50_A6LXN5: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	2.0128351316
+UniRef50_A0A059LAL0	2.0128195775
+UniRef50_A0A059LAL0|unclassified	2.0128195775
+UniRef50_A6V967	2.0120724346
+UniRef50_A6V967|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0120724346
+UniRef50_A8IE40: Chromate transport protein	2.0120724346
+UniRef50_A8IE40: Chromate transport protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.0120724346
+UniRef50_Q8KED5: Probable thiol peroxidase	2.0120724346
+UniRef50_Q8KED5: Probable thiol peroxidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0120724346
+UniRef50_UPI00030600C0: cyclopropane-fatty-acyl-phospholipid synthase	2.0120724346
+UniRef50_UPI00030600C0: cyclopropane-fatty-acyl-phospholipid synthase|g__Streptococcus.s__Streptococcus_agalactiae	2.0120724346
+UniRef50_UPI000370964C: hypothetical protein	2.0120571652
+UniRef50_UPI000370964C: hypothetical protein|unclassified	2.0120571652
+UniRef50_D4HV65: UPF0380 protein yafZ	2.0116348867
+UniRef50_D4HV65: UPF0380 protein yafZ|unclassified	2.0116348867
+UniRef50_S8M5I9: Potassium transporter Kup	2.0104586550
+UniRef50_S8M5I9: Potassium transporter Kup|g__Streptococcus.s__Streptococcus_agalactiae	2.0104586550
+UniRef50_P18190: Uptake hydrogenase small subunit	2.0104293651
+UniRef50_P18190: Uptake hydrogenase small subunit|unclassified	2.0104293651
+UniRef50_Q68XA0: Ubiquinol-cytochrome c reductase iron-sulfur subunit	2.0102915885
+UniRef50_Q68XA0: Ubiquinol-cytochrome c reductase iron-sulfur subunit|unclassified	2.0102915885
+UniRef50_E2XSQ7: Transcriptional regulator, AraC family	2.0102582743
+UniRef50_E2XSQ7: Transcriptional regulator, AraC family|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0102582743
+UniRef50_UPI0003B52617: transporter	2.0098205987
+UniRef50_UPI0003B52617: transporter|unclassified	2.0098205987
+UniRef50_Q9RYV3: Oxidoreductase, putative	2.0097359195
+UniRef50_Q9RYV3: Oxidoreductase, putative|g__Deinococcus.s__Deinococcus_radiodurans	2.0097359195
+UniRef50_S5N397: p6.9	2.0096030314
+UniRef50_S5N397: p6.9|unclassified	2.0096030314
+UniRef50_UPI00028825F3: multidrug ABC transporter permease	2.0088822598
+UniRef50_UPI00028825F3: multidrug ABC transporter permease|unclassified	2.0088822598
+UniRef50_Q51688	2.0088277561
+UniRef50_Q51688|unclassified	2.0088277561
+UniRef50_X2HYV0: Membrane protein	2.0084094423
+UniRef50_X2HYV0: Membrane protein|g__Helicobacter.s__Helicobacter_pylori	2.0084094423
+UniRef50_Q1QMX7	2.0082873985
+UniRef50_Q1QMX7|unclassified	2.0082873985
+UniRef50_A0A023RQK0	2.0080321285
+UniRef50_A0A023RQK0|g__Acinetobacter.s__Acinetobacter_baumannii	2.0080321285
+UniRef50_A0LK05: 2-dehydro-3-deoxyphosphooctonate aldolase	2.0080321285
+UniRef50_A0LK05: 2-dehydro-3-deoxyphosphooctonate aldolase|g__Helicobacter.s__Helicobacter_pylori	2.0080321285
+UniRef50_B2TRU1	2.0080321285
+UniRef50_B2TRU1|g__Clostridium.s__Clostridium_beijerinckii	2.0080321285
+UniRef50_B9E5C1	2.0080321285
+UniRef50_B9E5C1|g__Clostridium.s__Clostridium_beijerinckii	2.0080321285
+UniRef50_E8U7F9: Response regulator receiver protein	2.0080321285
+UniRef50_E8U7F9: Response regulator receiver protein|g__Deinococcus.s__Deinococcus_radiodurans	2.0080321285
+UniRef50_K0LRB0: Ferrous iron transport protein B	2.0080321285
+UniRef50_K0LRB0: Ferrous iron transport protein B|g__Staphylococcus.s__Staphylococcus_aureus	2.0080321285
+UniRef50_M9VAJ1	2.0080321285
+UniRef50_M9VAJ1|g__Propionibacterium.s__Propionibacterium_acnes	2.0080321285
+UniRef50_Q02N09	2.0080321285
+UniRef50_Q02N09|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0080321285
+UniRef50_Q03PY9: 50S ribosomal protein L13	2.0080321285
+UniRef50_Q03PY9: 50S ribosomal protein L13|g__Streptococcus.s__Streptococcus_agalactiae	2.0080321285
+UniRef50_R4K347: Nitroreductase	2.0080321285
+UniRef50_R4K347: Nitroreductase|g__Clostridium.s__Clostridium_beijerinckii	2.0080321285
+UniRef50_U5MLA9	2.0080321285
+UniRef50_U5MLA9|g__Clostridium.s__Clostridium_beijerinckii	2.0080321285
+UniRef50_E8QKL2	2.0077414166
+UniRef50_E8QKL2|g__Helicobacter.s__Helicobacter_pylori	2.0077414166
+UniRef50_N8PWN0: DNA ligase	2.0076741288
+UniRef50_N8PWN0: DNA ligase|g__Acinetobacter.s__Acinetobacter_baumannii	2.0076741288
+UniRef50_F5B5B4: RNA polymerase beta subunit (Fragment)	2.0073942356
+UniRef50_F5B5B4: RNA polymerase beta subunit (Fragment)|unclassified	2.0073942356
+UniRef50_UPI00046A7A2B: hypothetical protein, partial	2.0070323584
+UniRef50_UPI00046A7A2B: hypothetical protein, partial|unclassified	2.0070323584
+UniRef50_Q164V5	2.0066718383
+UniRef50_Q164V5|unclassified	2.0066718383
+UniRef50_D9CJB4: Mobilization protein (Fragment)	2.0066044022
+UniRef50_D9CJB4: Mobilization protein (Fragment)|unclassified	2.0066044022
+UniRef50_Q896N6: Thymidylate kinase	2.0064939159
+UniRef50_Q896N6: Thymidylate kinase|g__Clostridium.s__Clostridium_beijerinckii	2.0064939159
+UniRef50_UPI000169D0F2: hypothetical protein	2.0063283923
+UniRef50_UPI000169D0F2: hypothetical protein|unclassified	2.0063283923
+UniRef50_Q00UL4: WGS project CAID00000000 data, contig chromosome 16	2.0061777250
+UniRef50_Q00UL4: WGS project CAID00000000 data, contig chromosome 16|unclassified	2.0061777250
+UniRef50_J1AY66	2.0056512035
+UniRef50_J1AY66|g__Acinetobacter.s__Acinetobacter_baumannii	2.0056512035
+UniRef50_UPI0003474DF5: carbon monoxide dehydrogenase	2.0056235180
+UniRef50_UPI0003474DF5: carbon monoxide dehydrogenase|unclassified	2.0056235180
+UniRef50_UPI0000557F47: hypothetical protein	2.0050662825
+UniRef50_UPI0000557F47: hypothetical protein|unclassified	2.0050662825
+UniRef50_Q3JM24: Potassium-efflux system protein	2.0050336844
+UniRef50_Q3JM24: Potassium-efflux system protein|g__Acinetobacter.s__Acinetobacter_baumannii	2.0050336844
+UniRef50_Q62C32	2.0047069558
+UniRef50_Q62C32|unclassified	2.0047069558
+UniRef50_A4W7Y2	2.0041070847
+UniRef50_A4W7Y2|unclassified	2.0041070847
+UniRef50_M1EQP5: Death inducer-obliterator 1 (Fragment)	2.0040080160
+UniRef50_M1EQP5: Death inducer-obliterator 1 (Fragment)|unclassified	2.0040080160
+UniRef50_S5YF75	2.0040080160
+UniRef50_S5YF75|g__Rhodobacter.s__Rhodobacter_sphaeroides	2.0040080160
+UniRef50_U3TT47: Heme exporter protein B1	2.0040080160
+UniRef50_U3TT47: Heme exporter protein B1|g__Escherichia.s__Escherichia_coli	2.0040080160
+UniRef50_UPI000395A130: PREDICTED: myosin IC heavy chain-like	2.0040080160
+UniRef50_UPI000395A130: PREDICTED: myosin IC heavy chain-like|unclassified	2.0040080160
+UniRef50_UPI0003653436: hypothetical protein	2.0038480432
+UniRef50_UPI0003653436: hypothetical protein|unclassified	2.0038480432
+UniRef50_UPI000382677B: hypothetical protein	2.0038344573
+UniRef50_UPI000382677B: hypothetical protein|unclassified	2.0038344573
+UniRef50_B4RQI7: Anhydro-N-acetylmuramic acid kinase	2.0034872919
+UniRef50_B4RQI7: Anhydro-N-acetylmuramic acid kinase|g__Neisseria.s__Neisseria_meningitidis	2.0034872919
+UniRef50_O25722: DNA translocase FtsK	2.0033540731
+UniRef50_O25722: DNA translocase FtsK|g__Helicobacter.s__Helicobacter_pylori	2.0033540731
+UniRef50_UPI000367AC93: precorrin-2 C20-methyltransferase, partial	2.0032730466
+UniRef50_UPI000367AC93: precorrin-2 C20-methyltransferase, partial|unclassified	2.0032730466
+UniRef50_I6RV19: Adenylosuccinate lyase	2.0030090271
+UniRef50_I6RV19: Adenylosuccinate lyase|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0030090271
+UniRef50_I1QUN8	2.0029347499
+UniRef50_I1QUN8|unclassified	2.0029347499
+UniRef50_F0Y346	2.0028482882
+UniRef50_F0Y346|unclassified	2.0028482882
+UniRef50_UPI0002194A0B: hydroxymethylglutaryl-CoA synthase	2.0025181061
+UniRef50_UPI0002194A0B: hydroxymethylglutaryl-CoA synthase|unclassified	2.0025181061
+UniRef50_C2EM62	2.0022442675
+UniRef50_C2EM62|unclassified	2.0022442675
+UniRef50_A0A059INM1	2.0022002362
+UniRef50_A0A059INM1|unclassified	2.0022002362
+UniRef50_D3MIV3: Peptidase, M16 family	2.0020020020
+UniRef50_D3MIV3: Peptidase, M16 family|g__Propionibacterium.s__Propionibacterium_acnes	2.0020020020
+UniRef50_L9TLC3: Efflux ABC transporter permease (Fragment)	2.0019547551
+UniRef50_L9TLC3: Efflux ABC transporter permease (Fragment)|unclassified	2.0019547551
+UniRef50_D8H559	2.0019082049
+UniRef50_D8H559|unclassified	2.0019082049
+UniRef50_N9PED4: Ferrous iron transporter B	2.0016655171
+UniRef50_N9PED4: Ferrous iron transporter B|g__Acinetobacter.s__Acinetobacter_baumannii	2.0016655171
+UniRef50_A4SZM1: Glutamine--tRNA ligase	2.0015668999
+UniRef50_A4SZM1: Glutamine--tRNA ligase|g__Clostridium.s__Clostridium_beijerinckii	1.9624708614
+UniRef50_A4SZM1: Glutamine--tRNA ligase|unclassified	0.0390960386
+UniRef50_UPI0003D342BD: hypothetical protein	2.0014978088
+UniRef50_UPI0003D342BD: hypothetical protein|unclassified	2.0014978088
+UniRef50_Q8FAS4	2.0014578460
+UniRef50_Q8FAS4|unclassified	2.0014578460
+UniRef50_W0MUC7: RND transporter	2.0014207493
+UniRef50_W0MUC7: RND transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	2.0014207493
+UniRef50_Q17WK3	2.0011923272
+UniRef50_Q17WK3|g__Helicobacter.s__Helicobacter_pylori	2.0011923272
+UniRef50_Q52K22	2.0010903806
+UniRef50_Q52K22|unclassified	2.0010903806
+UniRef50_V4JIJ6	2.0006453928
+UniRef50_V4JIJ6|unclassified	2.0006453928
+UniRef50_A6LX22	2.0000000000
+UniRef50_A6LX22|g__Clostridium.s__Clostridium_beijerinckii	2.0000000000
+UniRef50_A6M010: GCN5-related N-acetyltransferase	2.0000000000
+UniRef50_A6M010: GCN5-related N-acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	2.0000000000
+UniRef50_C8WV62: Transcriptional regulator, MarR family	2.0000000000
+UniRef50_C8WV62: Transcriptional regulator, MarR family|g__Clostridium.s__Clostridium_beijerinckii	2.0000000000
+UniRef50_F1UR15: BNR/Asp-box repeat protein	2.0000000000
+UniRef50_F1UR15: BNR/Asp-box repeat protein|g__Propionibacterium.s__Propionibacterium_acnes	2.0000000000
+UniRef50_I1QJ28	2.0000000000
+UniRef50_I1QJ28|unclassified	2.0000000000
+UniRef50_K7TV80	2.0000000000
+UniRef50_K7TV80|unclassified	2.0000000000
+UniRef50_U6GIX9	2.0000000000
+UniRef50_U6GIX9|unclassified	2.0000000000
+UniRef50_H6BTT7	1.9998652018
+UniRef50_H6BTT7|unclassified	1.9998652018
+UniRef50_A8LTJ9	1.9998480294
+UniRef50_A8LTJ9|unclassified	1.9998480294
+UniRef50_A6LQR2	1.9997479914
+UniRef50_A6LQR2|g__Clostridium.s__Clostridium_beijerinckii	1.9997479914
+UniRef50_H8GZA7	1.9996122691
+UniRef50_H8GZA7|g__Deinococcus.s__Deinococcus_radiodurans	1.9996122691
+UniRef50_S6N190: ISPsy25, transposase (Fragment)	1.9994376787
+UniRef50_S6N190: ISPsy25, transposase (Fragment)|unclassified	1.9994376787
+UniRef50_F3TY85	1.9993851503
+UniRef50_F3TY85|unclassified	1.9993851503
+UniRef50_I4JA46	1.9993545229
+UniRef50_I4JA46|unclassified	1.9993545229
+UniRef50_Q892X8: Oligoendopeptidase F	1.9992322004
+UniRef50_Q892X8: Oligoendopeptidase F|g__Clostridium.s__Clostridium_beijerinckii	1.9992322004
+UniRef50_U8IGT1	1.9991698342
+UniRef50_U8IGT1|unclassified	1.9991698342
+UniRef50_UPI00036EC85D: hypothetical protein	1.9991078552
+UniRef50_UPI00036EC85D: hypothetical protein|unclassified	1.9991078552
+UniRef50_UPI0003665B1C: hypothetical protein	1.9987629355
+UniRef50_UPI0003665B1C: hypothetical protein|unclassified	1.9987629355
+UniRef50_M1MQ23: Pseudaminic acid biosynthesis-associated protein PseG	1.9985113435
+UniRef50_M1MQ23: Pseudaminic acid biosynthesis-associated protein PseG|g__Clostridium.s__Clostridium_beijerinckii	1.9985113435
+UniRef50_A0A023S2A4: Anhydratase	1.9984808139
+UniRef50_A0A023S2A4: Anhydratase|g__Acinetobacter.s__Acinetobacter_baumannii	1.8832391714
+UniRef50_A0A023S2A4: Anhydratase|unclassified	0.1152416426
+UniRef50_J2F940: Multidrug efflux RND transporter, membrane fusion protein MexE	1.9982485471
+UniRef50_J2F940: Multidrug efflux RND transporter, membrane fusion protein MexE|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9982485471
+UniRef50_A0A028XDJ1: Ornithine cyclodeaminase/mu-crystallin domain protein	1.9979750947
+UniRef50_A0A028XDJ1: Ornithine cyclodeaminase/mu-crystallin domain protein|unclassified	1.9979750947
+UniRef50_B9E1D0	1.9977781229
+UniRef50_B9E1D0|g__Clostridium.s__Clostridium_beijerinckii	1.9977781229
+UniRef50_B9TAY0	1.9977115022
+UniRef50_B9TAY0|unclassified	1.9977115022
+UniRef50_G0DS62: Multifunctional hydroxymethylpyrimidine phosphokinase/4-amino-5-aminomethyl-2-methylpyrimidine hydrolase	1.9974418576
+UniRef50_G0DS62: Multifunctional hydroxymethylpyrimidine phosphokinase/4-amino-5-aminomethyl-2-methylpyrimidine hydrolase|g__Propionibacterium.s__Propionibacterium_acnes	1.9974418576
+UniRef50_A0A011MM36	1.9972960309
+UniRef50_A0A011MM36|unclassified	1.9972960309
+UniRef50_C5XLB4	1.9970990791
+UniRef50_C5XLB4|unclassified	1.9970990791
+UniRef50_A0A029LM09	1.9968492665
+UniRef50_A0A029LM09|unclassified	1.9968492665
+UniRef50_P76192	1.9967838210
+UniRef50_P76192|g__Escherichia.s__Escherichia_coli	1.9967838210
+UniRef50_I0C1Q8: Membrane lipoprotein	1.9965881195
+UniRef50_I0C1Q8: Membrane lipoprotein|unclassified	1.9965881195
+UniRef50_A7FAX3	1.9962547043
+UniRef50_A7FAX3|g__Acinetobacter.s__Acinetobacter_baumannii	1.9962547043
+UniRef50_F3QDC8	1.9962072696
+UniRef50_F3QDC8|unclassified	1.9962072696
+UniRef50_A6X351: Iron-containing alcohol dehydrogenase	1.9960179194
+UniRef50_A6X351: Iron-containing alcohol dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.9960179194
+UniRef50_D2X5X7: Putative electron transfer flavoprotein beta subunit	1.9960079840
+UniRef50_D2X5X7: Putative electron transfer flavoprotein beta subunit|unclassified	1.9960079840
+UniRef50_I3UXJ0: Homocysteine S-methyltransferase	1.9960079840
+UniRef50_I3UXJ0: Homocysteine S-methyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.9960079840
+UniRef50_I4JZP0	1.9960079840
+UniRef50_I4JZP0|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9960079840
+UniRef50_I6RK04: Tryptophan repressor binding protein	1.9960079840
+UniRef50_I6RK04: Tryptophan repressor binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9960079840
+UniRef50_P68398: tRNA-specific adenosine deaminase	1.9960079840
+UniRef50_P68398: tRNA-specific adenosine deaminase|g__Escherichia.s__Escherichia_coli	1.9960079840
+UniRef50_Q9RXT9: Thiosulfate sulfurtransferase	1.9960079840
+UniRef50_Q9RXT9: Thiosulfate sulfurtransferase|g__Deinococcus.s__Deinococcus_radiodurans	1.9960079840
+UniRef50_UPI0002BA87F0: hypothetical protein	1.9960079840
+UniRef50_UPI0002BA87F0: hypothetical protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.9960079840
+UniRef50_B2TLC0: Aminotransferase, class V	1.9959395319
+UniRef50_B2TLC0: Aminotransferase, class V|g__Clostridium.s__Clostridium_beijerinckii	1.9959395319
+UniRef50_V7ZFZ6	1.9955025130
+UniRef50_V7ZFZ6|unclassified	1.9955025130
+UniRef50_UPI0004702B05: integrase, partial	1.9947572348
+UniRef50_UPI0004702B05: integrase, partial|unclassified	1.9947572348
+UniRef50_E0XTA9	1.9937663336
+UniRef50_E0XTA9|unclassified	1.9937663336
+UniRef50_E4RHP3: NCS1 nucleoside transporter	1.9924801091
+UniRef50_E4RHP3: NCS1 nucleoside transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9924801091
+UniRef50_A4BQV7	1.9921441637
+UniRef50_A4BQV7|unclassified	1.9921441637
+UniRef50_A0A023RVY2: Peroxidase	1.9920318725
+UniRef50_A0A023RVY2: Peroxidase|g__Acinetobacter.s__Acinetobacter_baumannii	1.9920318725
+UniRef50_M9VHV5: Transcriptional regulator	1.9920318725
+UniRef50_M9VHV5: Transcriptional regulator|g__Propionibacterium.s__Propionibacterium_acnes	1.9920318725
+UniRef50_Q0SRF8: Endoribonuclease YbeY	1.9920318725
+UniRef50_Q0SRF8: Endoribonuclease YbeY|g__Clostridium.s__Clostridium_beijerinckii	1.9920318725
+UniRef50_Q3IL08: Deoxycytidine triphosphate deaminase	1.9920318725
+UniRef50_Q3IL08: Deoxycytidine triphosphate deaminase|g__Escherichia.s__Escherichia_coli	1.9920318725
+UniRef50_Q6FEF0	1.9920318725
+UniRef50_Q6FEF0|g__Acinetobacter.s__Acinetobacter_baumannii	1.9920318725
+UniRef50_T2DY30: Bacterial regulatory helix-turn-helix , lysR family protein	1.9920318725
+UniRef50_T2DY30: Bacterial regulatory helix-turn-helix , lysR family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9920318725
+UniRef50_U5ZX61: Rrf2 family transcriptional regulator	1.9920318725
+UniRef50_U5ZX61: Rrf2 family transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	1.9920318725
+UniRef50_A8HWS0	1.9920221628
+UniRef50_A8HWS0|unclassified	1.9920221628
+UniRef50_UPI0004656F44: FAD-binding molybdopterin dehydrogenase	1.9918319753
+UniRef50_UPI0004656F44: FAD-binding molybdopterin dehydrogenase|unclassified	1.9918319753
+UniRef50_J9P6G9	1.9917073152
+UniRef50_J9P6G9|unclassified	1.9917073152
+UniRef50_K7RTE7: UvrD/REP helicase	1.9914391538
+UniRef50_K7RTE7: UvrD/REP helicase|g__Propionibacterium.s__Propionibacterium_acnes	1.9914391538
+UniRef50_A6LV36: Integral membrane sensor signal transduction histidine kinase	1.9911513196
+UniRef50_A6LV36: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	1.9911513196
+UniRef50_U6IHI4: Iron sulfur cluster assembly 2	1.9904353212
+UniRef50_U6IHI4: Iron sulfur cluster assembly 2|unclassified	1.9904353212
+UniRef50_Q6FBR2	1.9900321065
+UniRef50_Q6FBR2|g__Acinetobacter.s__Acinetobacter_baumannii	1.9900321065
+UniRef50_Q9FKK7: Xylose isomerase	1.9898444626
+UniRef50_Q9FKK7: Xylose isomerase|g__Clostridium.s__Clostridium_beijerinckii	1.8895908378
+UniRef50_Q9FKK7: Xylose isomerase|unclassified	0.1002536248
+UniRef50_G3IZ98: UPF0125 protein Mettu_3401	1.9896772385
+UniRef50_G3IZ98: UPF0125 protein Mettu_3401|unclassified	1.9896772385
+UniRef50_UPI000472566B: thioredoxin	1.9896393601
+UniRef50_UPI000472566B: thioredoxin|unclassified	1.9896393601
+UniRef50_P0A5S1: PhoH-like protein	1.9893203864
+UniRef50_P0A5S1: PhoH-like protein|g__Propionibacterium.s__Propionibacterium_acnes	1.9893203864
+UniRef50_UPI0003F0DFFF: PREDICTED: collagen alpha-1(I) chain-like	1.9892538242
+UniRef50_UPI0003F0DFFF: PREDICTED: collagen alpha-1(I) chain-like|unclassified	1.9892538242
+UniRef50_B7PC56	1.9891714878
+UniRef50_B7PC56|unclassified	1.9891714878
+UniRef50_F5LYA1	1.9890606609
+UniRef50_F5LYA1|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.9890606609
+UniRef50_J9YR23: AMP-binding protein	1.9887048452
+UniRef50_J9YR23: AMP-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	1.9887048452
+UniRef50_UPI0003773005: hypothetical protein	1.9882881896
+UniRef50_UPI0003773005: hypothetical protein|unclassified	1.9882881896
+UniRef50_B2TJK8: Spore coat protein, CotS family	1.9881678322
+UniRef50_B2TJK8: Spore coat protein, CotS family|g__Clostridium.s__Clostridium_beijerinckii	1.9881678322
+UniRef50_A0A023RZ85: Acyltransferase	1.9880715706
+UniRef50_A0A023RZ85: Acyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.9880715706
+UniRef50_A5UNY3: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase	1.9880715706
+UniRef50_A5UNY3: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	1.9880715706
+UniRef50_C1DF31: Transcriptional regulator, AraC family	1.9880715706
+UniRef50_C1DF31: Transcriptional regulator, AraC family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9880715706
+UniRef50_D5ARH0: Biotin transport ATP-binding protein BioM	1.9880715706
+UniRef50_D5ARH0: Biotin transport ATP-binding protein BioM|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.9880715706
+UniRef50_Q5F4W9: Maf-like protein NGO2175	1.9880715706
+UniRef50_Q5F4W9: Maf-like protein NGO2175|g__Neisseria.s__Neisseria_meningitidis	1.9880715706
+UniRef50_R6HE72	1.9880715706
+UniRef50_R6HE72|g__Clostridium.s__Clostridium_beijerinckii	1.9880715706
+UniRef50_R9ZDW6: Cro/Cl family transcriptional regulator	1.9880715706
+UniRef50_R9ZDW6: Cro/Cl family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9880715706
+UniRef50_S3ZTJ7	1.9880715706
+UniRef50_S3ZTJ7|unclassified	1.9880715706
+UniRef50_T9AQ51	1.9880715706
+UniRef50_T9AQ51|g__Escherichia.s__Escherichia_coli	1.9880715706
+UniRef50_U5MN80	1.9880715706
+UniRef50_U5MN80|g__Clostridium.s__Clostridium_beijerinckii	1.9880715706
+UniRef50_F9YWS1	1.9876605427
+UniRef50_F9YWS1|unclassified	1.9876605427
+UniRef50_D0DDW6: Replication protein C	1.9875722049
+UniRef50_D0DDW6: Replication protein C|unclassified	1.9875722049
+UniRef50_Q9X6V6: RlpA-like lipoprotein	1.9873904862
+UniRef50_Q9X6V6: RlpA-like lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9873904862
+UniRef50_P32016: Capsule polysaccharide export ATP-binding protein CtrD	1.9869789690
+UniRef50_P32016: Capsule polysaccharide export ATP-binding protein CtrD|g__Neisseria.s__Neisseria_meningitidis	1.8083182640
+UniRef50_P32016: Capsule polysaccharide export ATP-binding protein CtrD|unclassified	0.1786607050
+UniRef50_UPI000475A333: PA-phosphatase	1.9861801771
+UniRef50_UPI000475A333: PA-phosphatase|unclassified	1.9861801771
+UniRef50_D6UAR9	1.9860478427
+UniRef50_D6UAR9|unclassified	1.9860478427
+UniRef50_UPI00037AC517: Negative modulator of initiation of replication, partial	1.9856489637
+UniRef50_UPI00037AC517: Negative modulator of initiation of replication, partial|unclassified	1.9856489637
+UniRef50_U3T1P2: Sulfate permease	1.9854441403
+UniRef50_U3T1P2: Sulfate permease|g__Acinetobacter.s__Acinetobacter_baumannii	1.9854441403
+UniRef50_UPI000255DA26: glycosyltransferase, partial	1.9852516618
+UniRef50_UPI000255DA26: glycosyltransferase, partial|unclassified	1.9852516618
+UniRef50_A8ADJ9	1.9848901099
+UniRef50_A8ADJ9|unclassified	1.9848901099
+UniRef50_X8AG71	1.9846343400
+UniRef50_X8AG71|unclassified	1.9846343400
+UniRef50_UPI0002FDF659: hypothetical protein	1.9844989996
+UniRef50_UPI0002FDF659: hypothetical protein|unclassified	1.9844989996
+UniRef50_F0N1J6: Sensor histidine kinase	1.9843470760
+UniRef50_F0N1J6: Sensor histidine kinase|g__Neisseria.s__Neisseria_meningitidis	1.9843470760
+UniRef50_F3FP63: ABC transporter permease (Fragment)	1.9843457171
+UniRef50_F3FP63: ABC transporter permease (Fragment)|unclassified	1.9843457171
+UniRef50_A6VAP8	1.9841562469
+UniRef50_A6VAP8|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9841562469
+UniRef50_A0A024JQQ2: Plasmid pSG, complete sequence	1.9841269841
+UniRef50_A0A024JQQ2: Plasmid pSG, complete sequence|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9841269841
+UniRef50_B7GXS6: 5-formyltetrahydrofolate cyclo-ligase	1.9841269841
+UniRef50_B7GXS6: 5-formyltetrahydrofolate cyclo-ligase|g__Acinetobacter.s__Acinetobacter_baumannii	1.9841269841
+UniRef50_C9XLF6: NUDIX-family protein	1.9841269841
+UniRef50_C9XLF6: NUDIX-family protein|g__Clostridium.s__Clostridium_beijerinckii	1.9841269841
+UniRef50_D5HIW6: Phosphate ABC transporter membrane protein 2, PhoT family (TC 3.A.1.7.1)	1.9841269841
+UniRef50_D5HIW6: Phosphate ABC transporter membrane protein 2, PhoT family (TC 3.A.1.7.1)|g__Streptococcus.s__Streptococcus_agalactiae	1.9841269841
+UniRef50_F0RMK3: Peptidase S54, rhomboid domain protein	1.9841269841
+UniRef50_F0RMK3: Peptidase S54, rhomboid domain protein|g__Deinococcus.s__Deinococcus_radiodurans	1.9841269841
+UniRef50_N4GJN2: MFS/sugar transport family protein	1.9841269841
+UniRef50_N4GJN2: MFS/sugar transport family protein|g__Escherichia.s__Escherichia_coli	1.9841269841
+UniRef50_Q62MT4: Methionyl-tRNA formyltransferase	1.9841269841
+UniRef50_Q62MT4: Methionyl-tRNA formyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.9841269841
+UniRef50_U5MY05: SH3, type 3 domain protein	1.9841269841
+UniRef50_U5MY05: SH3, type 3 domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.9841269841
+UniRef50_A0A037F2E9	1.9838459262
+UniRef50_A0A037F2E9|unclassified	1.9838459262
+UniRef50_UPI00047AB418: flagellar basal body rod protein FlgC	1.9834665930
+UniRef50_UPI00047AB418: flagellar basal body rod protein FlgC|unclassified	1.9834665930
+UniRef50_UPI0004673993: MULTISPECIES: UDP pyrophosphate phosphatase	1.9831835678
+UniRef50_UPI0004673993: MULTISPECIES: UDP pyrophosphate phosphatase|unclassified	1.9831835678
+UniRef50_A0A009IP40: SnoaL-like domain protein	1.9829593584
+UniRef50_A0A009IP40: SnoaL-like domain protein|unclassified	1.9829593584
+UniRef50_F0YAA2	1.9827694665
+UniRef50_F0YAA2|unclassified	1.9827694665
+UniRef50_K8D0R8: Tyrosine-specific transport protein	1.9826512095
+UniRef50_K8D0R8: Tyrosine-specific transport protein|unclassified	1.9826512095
+UniRef50_K1ST89: Heat shock protein 70	1.9822771050
+UniRef50_K1ST89: Heat shock protein 70|unclassified	1.9822771050
+UniRef50_H9JIZ2	1.9821099213
+UniRef50_H9JIZ2|unclassified	1.9821099213
+UniRef50_N0B4L4: 40-residue YVTN family beta-propeller repeat protein	1.9820170582
+UniRef50_N0B4L4: 40-residue YVTN family beta-propeller repeat protein|unclassified	1.9820170582
+UniRef50_B9E3T3	1.9819274757
+UniRef50_B9E3T3|g__Clostridium.s__Clostridium_beijerinckii	1.9819274757
+UniRef50_H0G6N9: Aldo/keto reductase family oxidoreductase	1.9812299802
+UniRef50_H0G6N9: Aldo/keto reductase family oxidoreductase|unclassified	1.9812299802
+UniRef50_D9R3W0: PTS system, lactose/cellobiose family IIC subunit	1.9811366857
+UniRef50_D9R3W0: PTS system, lactose/cellobiose family IIC subunit|g__Clostridium.s__Clostridium_beijerinckii	1.9811366857
+UniRef50_V8G2G6: Peptidase M56	1.9809729017
+UniRef50_V8G2G6: Peptidase M56|g__Clostridium.s__Clostridium_beijerinckii	1.9809729017
+UniRef50_A6LWP7	1.9801980198
+UniRef50_A6LWP7|g__Clostridium.s__Clostridium_beijerinckii	1.9801980198
+UniRef50_A6LZI3: Transcriptional regulator, TetR family	1.9801980198
+UniRef50_A6LZI3: Transcriptional regulator, TetR family|g__Clostridium.s__Clostridium_beijerinckii	1.9801980198
+UniRef50_D4HAX6: ROK family protein	1.9801980198
+UniRef50_D4HAX6: ROK family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.9801980198
+UniRef50_P96662	1.9801980198
+UniRef50_P96662|g__Clostridium.s__Clostridium_beijerinckii	1.9801980198
+UniRef50_Q58321: Magnesium-chelatase subunit ChlI homolog	1.9801980198
+UniRef50_Q58321: Magnesium-chelatase subunit ChlI homolog|g__Propionibacterium.s__Propionibacterium_acnes	1.9801980198
+UniRef50_U3T5M8: Acetyltransferase	1.9801980198
+UniRef50_U3T5M8: Acetyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.9801980198
+UniRef50_W7X105	1.9801980198
+UniRef50_W7X105|unclassified	1.9801980198
+UniRef50_F3ZJM5: Putative alpha-ribazole phosphatase	1.9800119369
+UniRef50_F3ZJM5: Putative alpha-ribazole phosphatase|unclassified	1.9800119369
+UniRef50_UPI00036EF17A: hypothetical protein, partial	1.9798156432
+UniRef50_UPI00036EF17A: hypothetical protein, partial|unclassified	1.9798156432
+UniRef50_U2TV37	1.9797351975
+UniRef50_U2TV37|unclassified	1.9797351975
+UniRef50_A6M2L1	1.9796495525
+UniRef50_A6M2L1|g__Clostridium.s__Clostridium_beijerinckii	1.9796495525
+UniRef50_UPI000350AA75: PREDICTED: protein IQ-DOMAIN 14-like	1.9790770540
+UniRef50_UPI000350AA75: PREDICTED: protein IQ-DOMAIN 14-like|unclassified	1.9790770540
+UniRef50_G8VKU4: Oxidoreductase	1.9787602704
+UniRef50_G8VKU4: Oxidoreductase|g__Propionibacterium.s__Propionibacterium_acnes	1.9787602704
+UniRef50_A3PI69	1.9786930789
+UniRef50_A3PI69|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4792899408
+UniRef50_A3PI69|unclassified	0.4994031380
+UniRef50_R6LR95: Hydrogenase Fe-only	1.9785635444
+UniRef50_R6LR95: Hydrogenase Fe-only|g__Clostridium.s__Clostridium_beijerinckii	1.9785635444
+UniRef50_UPI00046D5E9E: hypothetical protein	1.9785286299
+UniRef50_UPI00046D5E9E: hypothetical protein|unclassified	1.9785286299
+UniRef50_UPI00029AC63E: lipoprotein (VslE)	1.9782404405
+UniRef50_UPI00029AC63E: lipoprotein (VslE)|unclassified	1.9782404405
+UniRef50_M9VBX6	1.9780342718
+UniRef50_M9VBX6|g__Propionibacterium.s__Propionibacterium_acnes	1.9780342718
+UniRef50_UPI00035FE7E0: hypothetical protein	1.9777655626
+UniRef50_UPI00035FE7E0: hypothetical protein|unclassified	1.9777655626
+UniRef50_K2ADM0	1.9777047273
+UniRef50_K2ADM0|unclassified	1.9777047273
+UniRef50_P57037: Capsule polysaccharide modification protein LipA	1.9776857968
+UniRef50_P57037: Capsule polysaccharide modification protein LipA|g__Neisseria.s__Neisseria_meningitidis	1.9776857968
+UniRef50_A4XE82	1.9775937633
+UniRef50_A4XE82|unclassified	1.9775937633
+UniRef50_H0HWX8	1.9775239993
+UniRef50_H0HWX8|unclassified	1.9775239993
+UniRef50_Q28NF0: Probable chemoreceptor glutamine deamidase CheD	1.9772845216
+UniRef50_Q28NF0: Probable chemoreceptor glutamine deamidase CheD|unclassified	1.9772845216
+UniRef50_UPI0004678721: hypothetical protein	1.9769434500
+UniRef50_UPI0004678721: hypothetical protein|unclassified	1.9769434500
+UniRef50_N6LHR3	1.9762845850
+UniRef50_N6LHR3|unclassified	1.9762845850
+UniRef50_A0A023XN60: Spermidine/putrescine transport system permease protein potC	1.9762845850
+UniRef50_A0A023XN60: Spermidine/putrescine transport system permease protein potC|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9762845850
+UniRef50_B9GC52	1.9762845850
+UniRef50_B9GC52|unclassified	1.9762845850
+UniRef50_P63229: D-glycero-beta-D-manno-heptose-1,7-bisphosphate 7-phosphatase	1.9762845850
+UniRef50_P63229: D-glycero-beta-D-manno-heptose-1,7-bisphosphate 7-phosphatase|g__Escherichia.s__Escherichia_coli	1.9762845850
+UniRef50_Q6FFA8: Uroporphyrinogen-III synthase (UROS) (Uroporphyrinogen-III cosynthetase) (Hydroxymethylbilane hydrolyase [cyclizing])	1.9762845850
+UniRef50_Q6FFA8: Uroporphyrinogen-III synthase (UROS) (Uroporphyrinogen-III cosynthetase) (Hydroxymethylbilane hydrolyase [cyclizing])|g__Acinetobacter.s__Acinetobacter_baumannii	1.9762845850
+UniRef50_V5VE79: AdaA	1.9762845850
+UniRef50_V5VE79: AdaA|g__Acinetobacter.s__Acinetobacter_baumannii	1.9762845850
+UniRef50_G5MQF2	1.9761678977
+UniRef50_G5MQF2|unclassified	1.9761678977
+UniRef50_P45946: Arsenite resistance protein ArsB	1.9760667688
+UniRef50_P45946: Arsenite resistance protein ArsB|g__Clostridium.s__Clostridium_beijerinckii	1.9760667688
+UniRef50_M8ZKF1: TraU family protein	1.9760139502
+UniRef50_M8ZKF1: TraU family protein|unclassified	1.9760139502
+UniRef50_S4XZ90	1.9758509039
+UniRef50_S4XZ90|unclassified	1.9758509039
+UniRef50_K8YM74: Putative membrane protein	1.9755267050
+UniRef50_K8YM74: Putative membrane protein|unclassified	1.9755267050
+UniRef50_UPI000225A9BC: bacteriophage replication gene A protein (GPA)	1.9755084915
+UniRef50_UPI000225A9BC: bacteriophage replication gene A protein (GPA)|unclassified	1.9755084915
+UniRef50_UPI000468778B: sugar ABC transporter permease, partial	1.9754535934
+UniRef50_UPI000468778B: sugar ABC transporter permease, partial|unclassified	1.9754535934
+UniRef50_B7MGB3: D-galactonate dehydratase	1.9751985766
+UniRef50_B7MGB3: D-galactonate dehydratase|g__Escherichia.s__Escherichia_coli	1.9751985766
+UniRef50_F8IMM6: Glycosyl transferase	1.9751605061
+UniRef50_F8IMM6: Glycosyl transferase|g__Streptococcus.s__Streptococcus_agalactiae	1.9751605061
+UniRef50_T1ZXB1: Plasmid recombination protein	1.9750642113
+UniRef50_T1ZXB1: Plasmid recombination protein|g__Streptococcus.s__Streptococcus_agalactiae	1.9750642113
+UniRef50_A3M2D5	1.9748988614
+UniRef50_A3M2D5|g__Acinetobacter.s__Acinetobacter_baumannii	1.9748988614
+UniRef50_C7LD35	1.9744407421
+UniRef50_C7LD35|unclassified	1.9744407421
+UniRef50_UPI0003B712C5: DNA invertase	1.9742723267
+UniRef50_UPI0003B712C5: DNA invertase|unclassified	1.9742723267
+UniRef50_UPI0002897978: GntR family transcriptional regulator	1.9742457099
+UniRef50_UPI0002897978: GntR family transcriptional regulator|unclassified	1.9742457099
+UniRef50_G8V7N9	1.9741214084
+UniRef50_G8V7N9|g__Propionibacterium.s__Propionibacterium_acnes	1.9741214084
+UniRef50_B6IXK3	1.9731445242
+UniRef50_B6IXK3|unclassified	1.9731445242
+UniRef50_UPI00016A5EE0: hypothetical protein	1.9728232644
+UniRef50_UPI00016A5EE0: hypothetical protein|unclassified	1.9728232644
+UniRef50_S5YFU3: SMP-30/Gluconolaconase/LRE domain protein	1.9727064469
+UniRef50_S5YFU3: SMP-30/Gluconolaconase/LRE domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6556291391
+UniRef50_S5YFU3: SMP-30/Gluconolaconase/LRE domain protein|unclassified	0.3170773079
+UniRef50_V9ZQ34	1.9725672909
+UniRef50_V9ZQ34|unclassified	1.9725672909
+UniRef50_B3PEP4: Transcriptional regulator, AsnC family	1.9723865878
+UniRef50_B3PEP4: Transcriptional regulator, AsnC family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9723865878
+UniRef50_G7M8Y1: Type IV pilus assembly PilZ	1.9723865878
+UniRef50_G7M8Y1: Type IV pilus assembly PilZ|g__Clostridium.s__Clostridium_beijerinckii	1.9723865878
+UniRef50_Q11K56: Cupin 2, conserved barrel	1.9723865878
+UniRef50_Q11K56: Cupin 2, conserved barrel|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9723865878
+UniRef50_Q1RAU0	1.9723865878
+UniRef50_Q1RAU0|g__Escherichia.s__Escherichia_coli	1.9723865878
+UniRef50_Q9RZC9	1.9723865878
+UniRef50_Q9RZC9|g__Deinococcus.s__Deinococcus_radiodurans	1.9723865878
+UniRef50_Q9HZQ3: Aerobic cobaltochelatase subunit CobN	1.9719794754
+UniRef50_Q9HZQ3: Aerobic cobaltochelatase subunit CobN|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9719794754
+UniRef50_A6LVT2	1.9718992248
+UniRef50_A6LVT2|g__Clostridium.s__Clostridium_beijerinckii	1.9718992248
+UniRef50_A3V7A8	1.9715630573
+UniRef50_A3V7A8|unclassified	1.9715630573
+UniRef50_Q6AAR3: L-threonine 3-dehydrogenase	1.9715402763
+UniRef50_Q6AAR3: L-threonine 3-dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	1.7211703959
+UniRef50_Q6AAR3: L-threonine 3-dehydrogenase|unclassified	0.2503698805
+UniRef50_A0A059IJL8	1.9713453601
+UniRef50_A0A059IJL8|unclassified	1.9713453601
+UniRef50_C4UNL0: CBS/transporter associated domain protein	1.9712941387
+UniRef50_C4UNL0: CBS/transporter associated domain protein|unclassified	1.9712941387
+UniRef50_C6M2N2: RND transporter, HAE1 family	1.9711933891
+UniRef50_C6M2N2: RND transporter, HAE1 family|g__Neisseria.s__Neisseria_meningitidis	1.9711933891
+UniRef50_U2Z0N3	1.9711296251
+UniRef50_U2Z0N3|unclassified	1.9711296251
+UniRef50_F5WYH1: Phage integrase family recombinase	1.9710944848
+UniRef50_F5WYH1: Phage integrase family recombinase|g__Streptococcus.s__Streptococcus_agalactiae	1.9710944848
+UniRef50_UPI0004654A5D: general stress protein	1.9709767808
+UniRef50_UPI0004654A5D: general stress protein|unclassified	1.9709767808
+UniRef50_UPI00037851B2: Cro/Cl family transcriptional regulator	1.9706613889
+UniRef50_UPI00037851B2: Cro/Cl family transcriptional regulator|unclassified	1.9706613889
+UniRef50_K0RTQ8	1.9704682677
+UniRef50_K0RTQ8|unclassified	1.9704682677
+UniRef50_K0WJ22: Uracil-xanthine permease/xanthine permease	1.9704452624
+UniRef50_K0WJ22: Uracil-xanthine permease/xanthine permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9704452624
+UniRef50_UPI000380DC6B: 50S ribosomal protein L6	1.9701491520
+UniRef50_UPI000380DC6B: 50S ribosomal protein L6|unclassified	1.9701491520
+UniRef50_W5BG06	1.9695149635
+UniRef50_W5BG06|unclassified	1.9695149635
+UniRef50_P33983: RNA polymerase sigma-54 factor	1.9690356082
+UniRef50_P33983: RNA polymerase sigma-54 factor|g__Acinetobacter.s__Acinetobacter_baumannii	1.9690356082
+UniRef50_P65098: Isocitrate dehydrogenase [NADP]	1.9685682389
+UniRef50_P65098: Isocitrate dehydrogenase [NADP]|g__Clostridium.s__Clostridium_beijerinckii	1.9685682389
+UniRef50_B7GVA1: Isochorismatase family protein	1.9685039370
+UniRef50_B7GVA1: Isochorismatase family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.9685039370
+UniRef50_C6S7Y9	1.9685039370
+UniRef50_C6S7Y9|g__Neisseria.s__Neisseria_meningitidis	1.9685039370
+UniRef50_E8PJ04: BasH	1.9685039370
+UniRef50_E8PJ04: BasH|g__Acinetobacter.s__Acinetobacter_baumannii	1.9685039370
+UniRef50_Q6AB49: tRNA(Ile)-lysidine synthase	1.9685039370
+UniRef50_Q6AB49: tRNA(Ile)-lysidine synthase|g__Propionibacterium.s__Propionibacterium_acnes	1.9685039370
+UniRef50_R5ELP6: Haloacid dehalogenase-like hydrolase	1.9685039370
+UniRef50_R5ELP6: Haloacid dehalogenase-like hydrolase|g__Streptococcus.s__Streptococcus_mutans	1.9685039370
+UniRef50_E3D2G5: Histone deacetylase family protein	1.9684430948
+UniRef50_E3D2G5: Histone deacetylase family protein|g__Neisseria.s__Neisseria_meningitidis	1.9684430948
+UniRef50_R9D7B6: Putative monovalent cation/H+ antiporter subunit F	1.9682523085
+UniRef50_R9D7B6: Putative monovalent cation/H+ antiporter subunit F|unclassified	1.9682523085
+UniRef50_D3RW29	1.9681311421
+UniRef50_D3RW29|unclassified	1.9681311421
+UniRef50_A0A023UVB3: MFS transporter	1.9679932471
+UniRef50_A0A023UVB3: MFS transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9679932471
+UniRef50_UPI00045EA373: protein-L-isoaspartate O-methyltransferase	1.9679742914
+UniRef50_UPI00045EA373: protein-L-isoaspartate O-methyltransferase|unclassified	1.9679742914
+UniRef50_M4XIN2	1.9678990553
+UniRef50_M4XIN2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9678990553
+UniRef50_UPI000288951C: hypothetical protein	1.9678473185
+UniRef50_UPI000288951C: hypothetical protein|unclassified	1.9678473185
+UniRef50_C7J0C8: Os03g0395801 protein	1.9669089554
+UniRef50_C7J0C8: Os03g0395801 protein|unclassified	1.9669089554
+UniRef50_UPI00039579EB: PREDICTED: serine/arginine repetitive matrix protein 3-like	1.9668769725
+UniRef50_UPI00039579EB: PREDICTED: serine/arginine repetitive matrix protein 3-like|unclassified	1.9668769725
+UniRef50_P51973: Competence protein ComA	1.9667565150
+UniRef50_P51973: Competence protein ComA|g__Neisseria.s__Neisseria_meningitidis	1.9667565150
+UniRef50_Q8VR58: Intergenic-region protein	1.9663637059
+UniRef50_Q8VR58: Intergenic-region protein|unclassified	1.9663637059
+UniRef50_F0RN28: Carboxyl-terminal protease	1.9660689730
+UniRef50_F0RN28: Carboxyl-terminal protease|g__Deinococcus.s__Deinococcus_radiodurans	1.9660689730
+UniRef50_UPI0002BA7B11: hypothetical protein	1.9657257096
+UniRef50_UPI0002BA7B11: hypothetical protein|unclassified	1.9657257096
+UniRef50_F0YA24	1.9654261452
+UniRef50_F0YA24|unclassified	1.9654261452
+UniRef50_A0A022LJU5	1.9653562962
+UniRef50_A0A022LJU5|unclassified	1.9653562962
+UniRef50_UPI0003B6276B: heme oxygenase	1.9649515371
+UniRef50_UPI0003B6276B: heme oxygenase|unclassified	1.9649515371
+UniRef50_R9ZBV1: Membrane protein	1.9648952809
+UniRef50_R9ZBV1: Membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9648952809
+UniRef50_A6LZC0: Membrane protein CF-9 family	1.9646365422
+UniRef50_A6LZC0: Membrane protein CF-9 family|g__Clostridium.s__Clostridium_beijerinckii	1.9646365422
+UniRef50_B2TQ13: Thiamine-phosphate synthase	1.9646365422
+UniRef50_B2TQ13: Thiamine-phosphate synthase|g__Clostridium.s__Clostridium_beijerinckii	1.9646365422
+UniRef50_D9SVV0: Phosphoribosyltransferase	1.9646365422
+UniRef50_D9SVV0: Phosphoribosyltransferase|g__Clostridium.s__Clostridium_beijerinckii	1.9646365422
+UniRef50_Q1IZI7: Elongation factor Ts	1.9646365422
+UniRef50_Q1IZI7: Elongation factor Ts|g__Deinococcus.s__Deinococcus_radiodurans	1.9646365422
+UniRef50_Q8E5V1: ATP synthase subunit delta	1.9646365422
+UniRef50_Q8E5V1: ATP synthase subunit delta|g__Streptococcus.s__Streptococcus_agalactiae	1.9646365422
+UniRef50_R5XIL5: Lactate dehydrogenase and related dehydrogenases	1.9646365422
+UniRef50_R5XIL5: Lactate dehydrogenase and related dehydrogenases|g__Clostridium.s__Clostridium_beijerinckii	1.9646365422
+UniRef50_H1S3I8	1.9644059523
+UniRef50_H1S3I8|unclassified	1.9644059523
+UniRef50_A6V1V4	1.9642897861
+UniRef50_A6V1V4|unclassified	1.9642897861
+UniRef50_B7H4N1	1.9642459674
+UniRef50_B7H4N1|g__Acinetobacter.s__Acinetobacter_baumannii	1.9642459674
+UniRef50_F7YB26	1.9635883724
+UniRef50_F7YB26|unclassified	1.9635883724
+UniRef50_B0VBT1	1.9631684749
+UniRef50_B0VBT1|g__Acinetobacter.s__Acinetobacter_baumannii	1.9631684749
+UniRef50_UPI00037E7ACC: hypothetical protein	1.9620273630
+UniRef50_UPI00037E7ACC: hypothetical protein|unclassified	1.9620273630
+UniRef50_C6S5H1: Protein-disulfide isomerase	1.9607843137
+UniRef50_C6S5H1: Protein-disulfide isomerase|g__Neisseria.s__Neisseria_meningitidis	1.9607843137
+UniRef50_F4FM10: Tra8 protein	1.9607843137
+UniRef50_F4FM10: Tra8 protein|unclassified	1.9607843137
+UniRef50_G7LXY6: Signal peptidase I	1.9607843137
+UniRef50_G7LXY6: Signal peptidase I|g__Clostridium.s__Clostridium_beijerinckii	1.9607843137
+UniRef50_J7QHS4	1.9607843137
+UniRef50_J7QHS4|g__Escherichia.s__Escherichia_coli	1.9607843137
+UniRef50_J9JHU2	1.9607843137
+UniRef50_J9JHU2|unclassified	1.9607843137
+UniRef50_Q4FU03: Pseudouridine synthase	1.9607843137
+UniRef50_Q4FU03: Pseudouridine synthase|g__Acinetobacter.s__Acinetobacter_baumannii	1.9607843137
+UniRef50_R4ZWD2: Peptidase, M23/M37 family	1.9607843137
+UniRef50_R4ZWD2: Peptidase, M23/M37 family|g__Streptococcus.s__Streptococcus_agalactiae	1.9607843137
+UniRef50_R4ZZS5: Glucan-binding protein B	1.9607843137
+UniRef50_R4ZZS5: Glucan-binding protein B|g__Streptococcus.s__Streptococcus_agalactiae	1.9607843137
+UniRef50_Q57MZ8	1.9606272446
+UniRef50_Q57MZ8|unclassified	1.9606272446
+UniRef50_D7CU09: ABC transporter related protein	1.9599629765
+UniRef50_D7CU09: ABC transporter related protein|g__Deinococcus.s__Deinococcus_radiodurans	1.9599629765
+UniRef50_F2JYD9: Phenylalanine racemase (ATP-hydrolyzing)	1.9598230550
+UniRef50_F2JYD9: Phenylalanine racemase (ATP-hydrolyzing)|g__Acinetobacter.s__Acinetobacter_baumannii	1.9598230550
+UniRef50_UPI0003713C67: hypothetical protein	1.9595385060
+UniRef50_UPI0003713C67: hypothetical protein|unclassified	1.9595385060
+UniRef50_UPI00046D0E88: amidase	1.9593743898
+UniRef50_UPI00046D0E88: amidase|g__Streptococcus.s__Streptococcus_agalactiae	1.9593743898
+UniRef50_A0A024HPN1	1.9592541705
+UniRef50_A0A024HPN1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9592541705
+UniRef50_R5XJM4	1.9590581766
+UniRef50_R5XJM4|unclassified	1.9590581766
+UniRef50_O86810: DNA translocase FtsK	1.9589315168
+UniRef50_O86810: DNA translocase FtsK|g__Propionibacterium.s__Propionibacterium_acnes	1.9589315168
+UniRef50_J7QJP1	1.9585497700
+UniRef50_J7QJP1|unclassified	1.9585497700
+UniRef50_L2FJJ5	1.9584914396
+UniRef50_L2FJJ5|unclassified	1.9584914396
+UniRef50_W1FU82: Cell division protein FtsK	1.9580794934
+UniRef50_W1FU82: Cell division protein FtsK|g__Escherichia.s__Escherichia_coli	1.9580794934
+UniRef50_E8TPX5: Type VI secretion protein, VC_A0110 family	1.9580672244
+UniRef50_E8TPX5: Type VI secretion protein, VC_A0110 family|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.9000691640
+UniRef50_E8TPX5: Type VI secretion protein, VC_A0110 family|unclassified	0.0579980604
+UniRef50_R9YQM6	1.9580662500
+UniRef50_R9YQM6|unclassified	1.9580662500
+UniRef50_Q44472: Putative hydroxypyruvate reductase	1.9578941924
+UniRef50_Q44472: Putative hydroxypyruvate reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9578941924
+UniRef50_Q9I1N2: PslG	1.9578313253
+UniRef50_Q9I1N2: PslG|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9578313253
+UniRef50_R4QLQ3	1.9577598481
+UniRef50_R4QLQ3|g__Helicobacter.s__Helicobacter_pylori	1.9577598481
+UniRef50_UPI0001FFE9A7: binding-protein-dependent transport systems inner membrane component	1.9574469806
+UniRef50_UPI0001FFE9A7: binding-protein-dependent transport systems inner membrane component|unclassified	1.9574469806
+UniRef50_E5API3: Transposase	1.9573299412
+UniRef50_E5API3: Transposase|unclassified	1.9573299412
+UniRef50_J9P9Z0	1.9569471624
+UniRef50_J9P9Z0|unclassified	1.9569471624
+UniRef50_UPI0002899A1F: Crp/Fnr family transcription regulator	1.9569471624
+UniRef50_UPI0002899A1F: Crp/Fnr family transcription regulator|unclassified	1.9569471624
+UniRef50_U5MRD6: Glycosyl transferases group 1	1.9566725009
+UniRef50_U5MRD6: Glycosyl transferases group 1|g__Clostridium.s__Clostridium_beijerinckii	1.9566725009
+UniRef50_Q9RS17	1.9566271166
+UniRef50_Q9RS17|g__Deinococcus.s__Deinococcus_radiodurans	1.9566271166
+UniRef50_A9APP3: Rieske (2Fe-2S) domain protein	1.9553905810
+UniRef50_A9APP3: Rieske (2Fe-2S) domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.9553905810
+UniRef50_A6M0B9: D-galactose-binding periplasmic protein	1.9553899795
+UniRef50_A6M0B9: D-galactose-binding periplasmic protein|g__Clostridium.s__Clostridium_beijerinckii	1.9553899795
+UniRef50_UPI0003B52634: GntR family transcriptional regulator	1.9553775878
+UniRef50_UPI0003B52634: GntR family transcriptional regulator|unclassified	1.9553775878
+UniRef50_B7GX48: Dihydroorotase	1.9551855419
+UniRef50_B7GX48: Dihydroorotase|g__Acinetobacter.s__Acinetobacter_baumannii	1.9551855419
+UniRef50_A0A024PBW4: Lysine transporter	1.9549882008
+UniRef50_A0A024PBW4: Lysine transporter|unclassified	1.9549882008
+UniRef50_C3LGA0: Drug resistance transporter, EmrB/QacA family	1.9538122515
+UniRef50_C3LGA0: Drug resistance transporter, EmrB/QacA family|unclassified	1.9538122515
+UniRef50_Q44051: Transposon Mu dl-R insertion site. (Fragment)	1.9537506390
+UniRef50_Q44051: Transposon Mu dl-R insertion site. (Fragment)|unclassified	1.9537506390
+UniRef50_X5A6R4: NMT1/THI5 like domain-containing protein	1.9534972365
+UniRef50_X5A6R4: NMT1/THI5 like domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	1.9534972365
+UniRef50_V4QUR0: Histidine phosphotransfer domain-containing protein	1.9534791753
+UniRef50_V4QUR0: Histidine phosphotransfer domain-containing protein|unclassified	1.9534791753
+UniRef50_B3BAN9	1.9531459629
+UniRef50_B3BAN9|unclassified	1.9531459629
+UniRef50_A8BFB5	1.9531250000
+UniRef50_A8BFB5|unclassified	1.9531250000
+UniRef50_B2TQ92: Ser/Thr protein phosphatase family protein	1.9531250000
+UniRef50_B2TQ92: Ser/Thr protein phosphatase family protein|g__Clostridium.s__Clostridium_beijerinckii	1.9531250000
+UniRef50_I4QAR1: Flagellar basal body L-ring protein	1.9531250000
+UniRef50_I4QAR1: Flagellar basal body L-ring protein|g__Escherichia.s__Escherichia_coli	1.9531250000
+UniRef50_X5F2Q7: Pili assembly chaperone	1.9531250000
+UniRef50_X5F2Q7: Pili assembly chaperone|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9531250000
+UniRef50_M4ZKD5: ADP-heptose-lps heptosyltransferase II	1.9527415577
+UniRef50_M4ZKD5: ADP-heptose-lps heptosyltransferase II|g__Helicobacter.s__Helicobacter_pylori	1.9527415577
+UniRef50_I1ZM42: TraG/TraD family protein	1.9526905331
+UniRef50_I1ZM42: TraG/TraD family protein|g__Streptococcus.s__Streptococcus_agalactiae	1.9526905331
+UniRef50_E8TGI4	1.9526690638
+UniRef50_E8TGI4|unclassified	1.9526690638
+UniRef50_U2FHG3	1.9525759848
+UniRef50_U2FHG3|unclassified	1.9525759848
+UniRef50_P43735: Chaperone protein DnaJ	1.9525493663
+UniRef50_P43735: Chaperone protein DnaJ|g__Clostridium.s__Clostridium_beijerinckii	1.9525493663
+UniRef50_A3LGX1	1.9524250850
+UniRef50_A3LGX1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9524250850
+UniRef50_C5YKS4	1.9517265855
+UniRef50_C5YKS4|unclassified	1.9517265855
+UniRef50_Q3JXL4	1.9517108819
+UniRef50_Q3JXL4|unclassified	1.9517108819
+UniRef50_A6WWJ1	1.9515906383
+UniRef50_A6WWJ1|unclassified	1.9515906383
+UniRef50_F4DEI1: Phage P2 GpE-like tail protein	1.9515428232
+UniRef50_F4DEI1: Phage P2 GpE-like tail protein|unclassified	1.9515428232
+UniRef50_I3BSR5: PEGA domain protein	1.9514174536
+UniRef50_I3BSR5: PEGA domain protein|unclassified	1.9514174536
+UniRef50_UPI00046F4BB9: transcriptional regulator	1.9513478380
+UniRef50_UPI00046F4BB9: transcriptional regulator|unclassified	1.9513478380
+UniRef50_UPI0003AAB873: blue-light sensor BLUF	1.9510812623
+UniRef50_UPI0003AAB873: blue-light sensor BLUF|unclassified	1.9510812623
+UniRef50_W6LPC6: UPF0125 protein rnfH	1.9509647547
+UniRef50_W6LPC6: UPF0125 protein rnfH|unclassified	1.9509647547
+UniRef50_L7LVI6: Putative mucin-5ac	1.9509599850
+UniRef50_L7LVI6: Putative mucin-5ac|unclassified	1.9509599850
+UniRef50_Z9WHX3	1.9506589571
+UniRef50_Z9WHX3|unclassified	1.9506589571
+UniRef50_UPI000255AA05: 3-hydroxybutyrate dehydrogenase, partial	1.9505958260
+UniRef50_UPI000255AA05: 3-hydroxybutyrate dehydrogenase, partial|unclassified	1.9505958260
+UniRef50_UPI0003811298: hypothetical protein	1.9500845819
+UniRef50_UPI0003811298: hypothetical protein|unclassified	1.9500845819
+UniRef50_B8I741: ABC transporter transmembrane region	1.9493960745
+UniRef50_B8I741: ABC transporter transmembrane region|g__Clostridium.s__Clostridium_beijerinckii	1.9493960745
+UniRef50_A0A024HK83: DNA polymerase III subunit epsilon	1.9493177388
+UniRef50_A0A024HK83: DNA polymerase III subunit epsilon|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9493177388
+UniRef50_A6LQN9	1.9493177388
+UniRef50_A6LQN9|g__Clostridium.s__Clostridium_beijerinckii	1.9493177388
+UniRef50_A7FBG3	1.9493177388
+UniRef50_A7FBG3|g__Acinetobacter.s__Acinetobacter_baumannii	1.9493177388
+UniRef50_D9REL6	1.9493177388
+UniRef50_D9REL6|g__Staphylococcus.s__Staphylococcus_aureus	1.9493177388
+UniRef50_E0TPJ9: Histidine kinase	1.9493177388
+UniRef50_E0TPJ9: Histidine kinase|g__Streptococcus.s__Streptococcus_agalactiae	1.9493177388
+UniRef50_F5WH27	1.9493177388
+UniRef50_F5WH27|g__Staphylococcus.s__Staphylococcus_aureus	1.9493177388
+UniRef50_K1BY65	1.9493177388
+UniRef50_K1BY65|unclassified	1.9493177388
+UniRef50_Q9RSL3: 50S ribosomal protein L6	1.9493177388
+UniRef50_Q9RSL3: 50S ribosomal protein L6|g__Deinococcus.s__Deinococcus_radiodurans	1.9493177388
+UniRef50_Q9RVG7: FemA-related protein	1.9493177388
+UniRef50_Q9RVG7: FemA-related protein|g__Deinococcus.s__Deinococcus_radiodurans	1.9493177388
+UniRef50_S1DY96	1.9493177388
+UniRef50_S1DY96|g__Escherichia.s__Escherichia_coli	1.9493177388
+UniRef50_W1MFW3: 30S ribosomal protein S3	1.9493177388
+UniRef50_W1MFW3: 30S ribosomal protein S3|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9493177388
+UniRef50_X2HX12: Membrane protein	1.9493177388
+UniRef50_X2HX12: Membrane protein|g__Helicobacter.s__Helicobacter_pylori	1.9493177388
+UniRef50_Q795M6: Putative aminotransferase YugH	1.9487982885
+UniRef50_Q795M6: Putative aminotransferase YugH|g__Clostridium.s__Clostridium_beijerinckii	1.9487982885
+UniRef50_I4F0A8	1.9476685673
+UniRef50_I4F0A8|unclassified	1.9476685673
+UniRef50_W0IC27	1.9475674496
+UniRef50_W0IC27|unclassified	1.9475674496
+UniRef50_UPI00040938D6: hypothetical protein	1.9469368867
+UniRef50_UPI00040938D6: hypothetical protein|unclassified	1.9469368867
+UniRef50_I4EWU6	1.9465335650
+UniRef50_I4EWU6|unclassified	1.9465335650
+UniRef50_F0RNV8: NurA domain-containing protein	1.9464835425
+UniRef50_F0RNV8: NurA domain-containing protein|g__Deinococcus.s__Deinococcus_radiodurans	1.9464835425
+UniRef50_J9YTB8: Glycosyl transferase family protein	1.9463754092
+UniRef50_J9YTB8: Glycosyl transferase family protein|g__Streptococcus.s__Streptococcus_agalactiae	1.9463754092
+UniRef50_A6LWY3: Transcriptional antiterminator, BglG	1.9457816280
+UniRef50_A6LWY3: Transcriptional antiterminator, BglG|g__Clostridium.s__Clostridium_beijerinckii	1.9457816280
+UniRef50_A7MKS2	1.9456903361
+UniRef50_A7MKS2|unclassified	1.9456903361
+UniRef50_Q4THH6: Chromosome undetermined SCAF2934, whole genome shotgun sequence. (Fragment)	1.9456076452
+UniRef50_Q4THH6: Chromosome undetermined SCAF2934, whole genome shotgun sequence. (Fragment)|unclassified	1.9456076452
+UniRef50_A4WZB9	1.9455252918
+UniRef50_A4WZB9|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.9455252918
+UniRef50_A6LSC7: Acetyl-CoA carboxylase, biotin carboxyl carrier protein	1.9455252918
+UniRef50_A6LSC7: Acetyl-CoA carboxylase, biotin carboxyl carrier protein|g__Clostridium.s__Clostridium_beijerinckii	1.9455252918
+UniRef50_A6V8H7: Acetyltransferase, GNAT family	1.9455252918
+UniRef50_A6V8H7: Acetyltransferase, GNAT family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9455252918
+UniRef50_B0V541	1.9455252918
+UniRef50_B0V541|g__Acinetobacter.s__Acinetobacter_baumannii	1.9455252918
+UniRef50_D3SEM2: Phosphoribosylglycinamide formyltransferase	1.9455252918
+UniRef50_D3SEM2: Phosphoribosylglycinamide formyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.9455252918
+UniRef50_Q4ZM96: Amino acid-binding ACT	1.9455252918
+UniRef50_Q4ZM96: Amino acid-binding ACT|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9455252918
+UniRef50_UPI0003D34C26: transposase and inactivated derivatives	1.9452710291
+UniRef50_UPI0003D34C26: transposase and inactivated derivatives|unclassified	1.9452710291
+UniRef50_A9MWX7	1.9451013316
+UniRef50_A9MWX7|unclassified	1.9451013316
+UniRef50_X2HYB2: Sodium:calcium antiporter	1.9450790159
+UniRef50_X2HYB2: Sodium:calcium antiporter|g__Helicobacter.s__Helicobacter_pylori	1.9450790159
+UniRef50_G2E6V5	1.9449351213
+UniRef50_G2E6V5|unclassified	1.9449351213
+UniRef50_E3HWF4	1.9446020042
+UniRef50_E3HWF4|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9446020042
+UniRef50_A4XP60: Acetylornithine deacetylase	1.9441373334
+UniRef50_A4XP60: Acetylornithine deacetylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9441373334
+UniRef50_R8ZDY1	1.9436345967
+UniRef50_R8ZDY1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9436345967
+UniRef50_Q8E4G9	1.9430006757
+UniRef50_Q8E4G9|g__Streptococcus.s__Streptococcus_agalactiae	1.9430006757
+UniRef50_E8U7B0: Cytochrome P450	1.9429258519
+UniRef50_E8U7B0: Cytochrome P450|g__Deinococcus.s__Deinococcus_radiodurans	1.9429258519
+UniRef50_Q1I694: Putative pyocin R2_PP, tail length determination protein	1.9426906265
+UniRef50_Q1I694: Putative pyocin R2_PP, tail length determination protein|unclassified	1.9426906265
+UniRef50_Q28RF2: Anhydro-N-acetylmuramic acid kinase 1	1.9424783196
+UniRef50_Q28RF2: Anhydro-N-acetylmuramic acid kinase 1|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.8463398952
+UniRef50_Q28RF2: Anhydro-N-acetylmuramic acid kinase 1|unclassified	0.0961384244
+UniRef50_T1A3B5: Ribulose-1,5-bisphosphate carboxylase/oxygenase small subunit (Fragment)	1.9422993914
+UniRef50_T1A3B5: Ribulose-1,5-bisphosphate carboxylase/oxygenase small subunit (Fragment)|unclassified	1.9422993914
+UniRef50_A6LTB9	1.9419306184
+UniRef50_A6LTB9|g__Clostridium.s__Clostridium_beijerinckii	1.9419306184
+UniRef50_A0A059DR32	1.9418671170
+UniRef50_A0A059DR32|unclassified	1.9418671170
+UniRef50_V6LYC7	1.9417512539
+UniRef50_V6LYC7|unclassified	1.9417512539
+UniRef50_F9Z138	1.9417475728
+UniRef50_F9Z138|g__Propionibacterium.s__Propionibacterium_acnes	1.9417475728
+UniRef50_I0EKZ4	1.9417475728
+UniRef50_I0EKZ4|g__Helicobacter.s__Helicobacter_pylori	1.9417475728
+UniRef50_J0PVL0	1.9417475728
+UniRef50_J0PVL0|g__Staphylococcus.s__Staphylococcus_epidermidis	1.9417475728
+UniRef50_K7RWS7: UTP--hexose-1-phosphate uridylyltransferase	1.9417475728
+UniRef50_K7RWS7: UTP--hexose-1-phosphate uridylyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	1.9417475728
+UniRef50_X5KFY0: Integral membrane protein	1.9417475728
+UniRef50_X5KFY0: Integral membrane protein|g__Streptococcus.s__Streptococcus_agalactiae	1.9417475728
+UniRef50_B3FTP2: Putative membrane protein (Fragment)	1.9416431308
+UniRef50_B3FTP2: Putative membrane protein (Fragment)|unclassified	1.9416431308
+UniRef50_S9RXH0	1.9414305565
+UniRef50_S9RXH0|unclassified	1.9414305565
+UniRef50_A0A059DRC5	1.9413276018
+UniRef50_A0A059DRC5|unclassified	1.9413276018
+UniRef50_A0A037UUK8	1.9407680599
+UniRef50_A0A037UUK8|unclassified	1.9407680599
+UniRef50_V8R957	1.9407606925
+UniRef50_V8R957|unclassified	1.9407606925
+UniRef50_G7M2T0: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase	1.9407270772
+UniRef50_G7M2T0: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase|g__Clostridium.s__Clostridium_beijerinckii	1.9407270772
+UniRef50_UPI00036F9198: DNA invertase, partial	1.9399222151
+UniRef50_UPI00036F9198: DNA invertase, partial|unclassified	1.9399222151
+UniRef50_Q63NI4: Methionine import ATP-binding protein MetN 2	1.9392159118
+UniRef50_Q63NI4: Methionine import ATP-binding protein MetN 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8181818182
+UniRef50_Q63NI4: Methionine import ATP-binding protein MetN 2|unclassified	0.1210340936
+UniRef50_K0XNX0	1.9390797601
+UniRef50_K0XNX0|unclassified	1.9390797601
+UniRef50_A0A030RGA6: Phage protein (Fragment)	1.9389460967
+UniRef50_A0A030RGA6: Phage protein (Fragment)|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9389460967
+UniRef50_UPI00036A2EAB: hypothetical protein	1.9385344563
+UniRef50_UPI00036A2EAB: hypothetical protein|unclassified	1.9385344563
+UniRef50_UPI00040DA4F1: hypothetical protein	1.9383362331
+UniRef50_UPI00040DA4F1: hypothetical protein|unclassified	1.9383362331
+UniRef50_UPI00046EE716: formyltetrahydrofolate deformylase, partial	1.9380660681
+UniRef50_UPI00046EE716: formyltetrahydrofolate deformylase, partial|unclassified	1.9380660681
+UniRef50_A6V052: Phosphatidylglycerophosphatase A	1.9379844961
+UniRef50_A6V052: Phosphatidylglycerophosphatase A|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9379844961
+UniRef50_P45470: Protein YhbO	1.9379844961
+UniRef50_P45470: Protein YhbO|g__Escherichia.s__Escherichia_coli	1.9379844961
+UniRef50_Q6ZK45	1.9379844961
+UniRef50_Q6ZK45|unclassified	1.9379844961
+UniRef50_U5MVZ4: Sensor histidine kinase YclK	1.9379844961
+UniRef50_U5MVZ4: Sensor histidine kinase YclK|g__Clostridium.s__Clostridium_beijerinckii	1.9379844961
+UniRef50_A0A033Q5U8	1.9379844961
+UniRef50_A0A033Q5U8|unclassified	1.9379844961
+UniRef50_J2JCG0: Integral membrane protein MviN (Fragment)	1.9379463390
+UniRef50_J2JCG0: Integral membrane protein MviN (Fragment)|unclassified	1.9379463390
+UniRef50_V6V889: MFS transporter (Fragment)	1.9378397334
+UniRef50_V6V889: MFS transporter (Fragment)|unclassified	1.9378397334
+UniRef50_UPI000191383D: hypothetical protein, partial	1.9373194566
+UniRef50_UPI000191383D: hypothetical protein, partial|unclassified	1.9373194566
+UniRef50_G8V8I0: Regulator of sorbitol operon	1.9370710748
+UniRef50_G8V8I0: Regulator of sorbitol operon|g__Propionibacterium.s__Propionibacterium_acnes	1.9370710748
+UniRef50_X6L226	1.9369998943
+UniRef50_X6L226|unclassified	1.9369998943
+UniRef50_UPI000472BDAD: hypothetical protein, partial	1.9359050753
+UniRef50_UPI000472BDAD: hypothetical protein, partial|unclassified	1.9359050753
+UniRef50_A0A009JWB2: NMT1-like family protein	1.9357366024
+UniRef50_A0A009JWB2: NMT1-like family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.7451736997
+UniRef50_A0A009JWB2: NMT1-like family protein|unclassified	0.1905629028
+UniRef50_J7K7T3	1.9351072154
+UniRef50_J7K7T3|unclassified	1.9351072154
+UniRef50_A3L8X4	1.9350000796
+UniRef50_A3L8X4|unclassified	1.9350000796
+UniRef50_UPI00030D5D10: hypothetical protein	1.9347705133
+UniRef50_UPI00030D5D10: hypothetical protein|unclassified	1.9347705133
+UniRef50_M2KRN4	1.9347647223
+UniRef50_M2KRN4|unclassified	1.9347647223
+UniRef50_D7GCK3: Mannose-1-phosphate guanylyltransferase	1.9344765039
+UniRef50_D7GCK3: Mannose-1-phosphate guanylyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	1.9344765039
+UniRef50_H4H433: Membrane CapA1 domain protein	1.9343178462
+UniRef50_H4H433: Membrane CapA1 domain protein|unclassified	1.9343178462
+UniRef50_A6LST7: Response regulator receiver protein	1.9342359768
+UniRef50_A6LST7: Response regulator receiver protein|g__Clostridium.s__Clostridium_beijerinckii	1.9342359768
+UniRef50_A8LWQ1: Oxidoreductase domain protein	1.9342359768
+UniRef50_A8LWQ1: Oxidoreductase domain protein|g__Propionibacterium.s__Propionibacterium_acnes	1.9342359768
+UniRef50_C7MAW1: Ferritin-like protein	1.9342359768
+UniRef50_C7MAW1: Ferritin-like protein|g__Propionibacterium.s__Propionibacterium_acnes	1.9342359768
+UniRef50_G7M575: Glycosyl transferase family 2	1.9342359768
+UniRef50_G7M575: Glycosyl transferase family 2|g__Clostridium.s__Clostridium_beijerinckii	1.9342359768
+UniRef50_M1LWW7: GCN5-related N-acetyltransferase	1.9342359768
+UniRef50_M1LWW7: GCN5-related N-acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	1.9342359768
+UniRef50_M8Z1I4: ABC transporter transmembrane region 2 family protein	1.9342359768
+UniRef50_M8Z1I4: ABC transporter transmembrane region 2 family protein|g__Escherichia.s__Escherichia_coli	1.9342359768
+UniRef50_Q6FDX8: Maf-like protein ACIAD0829	1.9342359768
+UniRef50_Q6FDX8: Maf-like protein ACIAD0829|g__Acinetobacter.s__Acinetobacter_baumannii	1.9342359768
+UniRef50_Q9RZ61	1.9342359768
+UniRef50_Q9RZ61|g__Deinococcus.s__Deinococcus_radiodurans	1.9342359768
+UniRef50_U8ZUR2: Mg chelatase-like protein	1.9342359768
+UniRef50_U8ZUR2: Mg chelatase-like protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9342359768
+UniRef50_V4Z2G5	1.9342359768
+UniRef50_V4Z2G5|g__Streptococcus.s__Streptococcus_mutans	1.9342359768
+UniRef50_U0B3S9	1.9341564837
+UniRef50_U0B3S9|g__Escherichia.s__Escherichia_coli	1.9341564837
+UniRef50_UPI00039C4089: thioredoxin	1.9339640478
+UniRef50_UPI00039C4089: thioredoxin|unclassified	1.9339640478
+UniRef50_A3PQA7: Acetylornithine deacetylase ArgE. Metallo peptidase. MEROPS family M20A / acetylornithine deacetylase	1.9333376940
+UniRef50_A3PQA7: Acetylornithine deacetylase ArgE. Metallo peptidase. MEROPS family M20A / acetylornithine deacetylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.9333376940
+UniRef50_J0W6L9	1.9327103785
+UniRef50_J0W6L9|unclassified	1.9327103785
+UniRef50_A3U241	1.9323086255
+UniRef50_A3U241|unclassified	1.9323086255
+UniRef50_UPI0002654825: PREDICTED: 5''''-nucleotidase-like, partial	1.9318979908
+UniRef50_UPI0002654825: PREDICTED: 5''''-nucleotidase-like, partial|unclassified	1.9318979908
+UniRef50_A6UXP0	1.9313849884
+UniRef50_A6UXP0|unclassified	1.9313849884
+UniRef50_W4K6C3	1.9312498246
+UniRef50_W4K6C3|unclassified	1.9312498246
+UniRef50_A3M472: Putative VGR-related protein	1.9310848745
+UniRef50_A3M472: Putative VGR-related protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.9310848745
+UniRef50_A0A059LAB7	1.9305019305
+UniRef50_A0A059LAB7|unclassified	1.9305019305
+UniRef50_E6DXQ9	1.9305019305
+UniRef50_E6DXQ9|g__Propionibacterium.s__Propionibacterium_acnes	1.9305019305
+UniRef50_K0HWI3: NADPH-dependent FMN reductase	1.9305019305
+UniRef50_K0HWI3: NADPH-dependent FMN reductase|g__Acinetobacter.s__Acinetobacter_baumannii	1.9305019305
+UniRef50_UPI00037CD49A: hypothetical protein	1.9305019305
+UniRef50_UPI00037CD49A: hypothetical protein|unclassified	1.9305019305
+UniRef50_P0CS91: Heat shock protein SSC1, mitochondrial	1.9300975205
+UniRef50_P0CS91: Heat shock protein SSC1, mitochondrial|g__Neisseria.s__Neisseria_meningitidis	1.9300975205
+UniRef50_Q9RU95: NADH-quinone oxidoreductase subunit I	1.9299327700
+UniRef50_Q9RU95: NADH-quinone oxidoreductase subunit I|g__Deinococcus.s__Deinococcus_radiodurans	1.8726591760
+UniRef50_Q9RU95: NADH-quinone oxidoreductase subunit I|unclassified	0.0572735939
+UniRef50_F4A3Y5: Peptidase, M24 family protein	1.9290418886
+UniRef50_F4A3Y5: Peptidase, M24 family protein|g__Clostridium.s__Clostridium_beijerinckii	1.9290418886
+UniRef50_D8LTU3	1.9288846016
+UniRef50_D8LTU3|unclassified	1.9288846016
+UniRef50_U3T560	1.9286630465
+UniRef50_U3T560|g__Acinetobacter.s__Acinetobacter_baumannii	1.9286630465
+UniRef50_UPI00046FB65C: hypothetical protein	1.9286501222
+UniRef50_UPI00046FB65C: hypothetical protein|unclassified	1.9286501222
+UniRef50_M9VM96: Methylaspartate mutase	1.9286474825
+UniRef50_M9VM96: Methylaspartate mutase|g__Propionibacterium.s__Propionibacterium_acnes	1.9286474825
+UniRef50_S9SAD7	1.9285942998
+UniRef50_S9SAD7|unclassified	1.9285942998
+UniRef50_I6XPP6: Methylmalonyl-CoA carboxyltransferase 5S subunit	1.9283129990
+UniRef50_I6XPP6: Methylmalonyl-CoA carboxyltransferase 5S subunit|g__Propionibacterium.s__Propionibacterium_acnes	1.9283129990
+UniRef50_UPI00038F620A: hypothetical protein	1.9279186328
+UniRef50_UPI00038F620A: hypothetical protein|unclassified	1.9279186328
+UniRef50_Q83JZ2	1.9274758243
+UniRef50_Q83JZ2|unclassified	1.9274758243
+UniRef50_UPI000473B5E4: translation initiation factor IF-3, partial	1.9273292966
+UniRef50_UPI000473B5E4: translation initiation factor IF-3, partial|unclassified	1.9273292966
+UniRef50_E1S9J4: Signal transduction histidine kinase	1.9269351866
+UniRef50_E1S9J4: Signal transduction histidine kinase|g__Helicobacter.s__Helicobacter_pylori	1.9269351866
+UniRef50_Q4SXX9: Chromosome undetermined SCAF12296, whole genome shotgun sequence. (Fragment)	1.9268666105
+UniRef50_Q4SXX9: Chromosome undetermined SCAF12296, whole genome shotgun sequence. (Fragment)|unclassified	1.9268666105
+UniRef50_A6LYR9: Peptidoglycan-binding domain 1 protein	1.9267822736
+UniRef50_A6LYR9: Peptidoglycan-binding domain 1 protein|g__Clostridium.s__Clostridium_beijerinckii	1.9267822736
+UniRef50_C1CVP1: Ribosome-recycling factor	1.9267822736
+UniRef50_C1CVP1: Ribosome-recycling factor|g__Deinococcus.s__Deinococcus_radiodurans	1.9267822736
+UniRef50_C7DQE0: Dof-type zinc finger protein 09 (Fragment)	1.9267822736
+UniRef50_C7DQE0: Dof-type zinc finger protein 09 (Fragment)|unclassified	1.9267822736
+UniRef50_G8P8V7: Transcriptional regulator, TetR family	1.9267822736
+UniRef50_G8P8V7: Transcriptional regulator, TetR family|g__Clostridium.s__Clostridium_beijerinckii	1.9267822736
+UniRef50_R7W7Q2	1.9267822736
+UniRef50_R7W7Q2|unclassified	1.9267822736
+UniRef50_UPI0003B536D0: hypothetical protein	1.9267822736
+UniRef50_UPI0003B536D0: hypothetical protein|unclassified	1.9267822736
+UniRef50_K2TFM1	1.9267361842
+UniRef50_K2TFM1|unclassified	1.9267361842
+UniRef50_W5NQR6	1.9266897345
+UniRef50_W5NQR6|unclassified	1.9266897345
+UniRef50_W1WIU3	1.9266686950
+UniRef50_W1WIU3|unclassified	1.9266686950
+UniRef50_C7RGN8: NusA antitermination factor	1.9264167457
+UniRef50_C7RGN8: NusA antitermination factor|g__Clostridium.s__Clostridium_beijerinckii	1.9264167457
+UniRef50_J9NYR7	1.9264145638
+UniRef50_J9NYR7|unclassified	1.9264145638
+UniRef50_U2SBT0	1.9260686564
+UniRef50_U2SBT0|unclassified	1.9260686564
+UniRef50_G2KZU3	1.9257722932
+UniRef50_G2KZU3|unclassified	1.9257722932
+UniRef50_K7S318: Proline dehydrogenase/aldehyde dehydrogenase (NAD) family protein	1.9249664553
+UniRef50_K7S318: Proline dehydrogenase/aldehyde dehydrogenase (NAD) family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.9249664553
+UniRef50_M9R1P7	1.9249572460
+UniRef50_M9R1P7|unclassified	1.9249572460
+UniRef50_Q8XLH3: 3-oxoacyl-[acyl-carrier-protein] synthase 3	1.9248329721
+UniRef50_Q8XLH3: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	1.9248329721
+UniRef50_M9VK56: Membrane associated protein	1.9237507042
+UniRef50_M9VK56: Membrane associated protein|g__Propionibacterium.s__Propionibacterium_acnes	1.9237507042
+UniRef50_E6U991: Cys/Met metabolism pyridoxal-phosphate-dependent protein	1.9236743375
+UniRef50_E6U991: Cys/Met metabolism pyridoxal-phosphate-dependent protein|g__Clostridium.s__Clostridium_beijerinckii	1.9236743375
+UniRef50_A6V8G8	1.9230769231
+UniRef50_A6V8G8|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9230769231
+UniRef50_B7UWI0: Co-chaperone protein HscB homolog	1.9230769231
+UniRef50_B7UWI0: Co-chaperone protein HscB homolog|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9230769231
+UniRef50_E2ZYI5	1.9230769231
+UniRef50_E2ZYI5|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9230769231
+UniRef50_Q48CJ9: Protease PfpI	1.9230769231
+UniRef50_Q48CJ9: Protease PfpI|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9230769231
+UniRef50_Q69X41	1.9230769231
+UniRef50_Q69X41|unclassified	1.9230769231
+UniRef50_Q9ZL73: Flagellar biosynthetic protein FlhB	1.9228281559
+UniRef50_Q9ZL73: Flagellar biosynthetic protein FlhB|g__Helicobacter.s__Helicobacter_pylori	1.9228281559
+UniRef50_Y6JBS8	1.9227798000
+UniRef50_Y6JBS8|unclassified	1.9227798000
+UniRef50_O52733: D-xylose-proton symporter	1.9226362938
+UniRef50_O52733: D-xylose-proton symporter|g__Clostridium.s__Clostridium_beijerinckii	1.9226362938
+UniRef50_UPI00047EC9C0: hypothetical protein	1.9222394090
+UniRef50_UPI00047EC9C0: hypothetical protein|unclassified	1.9222394090
+UniRef50_UPI000427AC9A: porin	1.9217978476
+UniRef50_UPI000427AC9A: porin|unclassified	1.9217978476
+UniRef50_A4C2E9	1.9217568673
+UniRef50_A4C2E9|unclassified	1.9217568673
+UniRef50_P47691: UTP--glucose-1-phosphate uridylyltransferase	1.9215516305
+UniRef50_P47691: UTP--glucose-1-phosphate uridylyltransferase|unclassified	1.9215516305
+UniRef50_E9V1P4: PE-PGRS family protein (Fragment)	1.9213301321
+UniRef50_E9V1P4: PE-PGRS family protein (Fragment)|unclassified	1.9213301321
+UniRef50_UPI00029B4277: thioredoxin	1.9212979271
+UniRef50_UPI00029B4277: thioredoxin|unclassified	1.9212979271
+UniRef50_E0TTE0: Alpha,alpha-phosphotrehalase	1.9212414277
+UniRef50_E0TTE0: Alpha,alpha-phosphotrehalase|g__Streptococcus.s__Streptococcus_agalactiae	1.9212414277
+UniRef50_P23136: Ubiquinol-cytochrome c reductase iron-sulfur subunit	1.9210812632
+UniRef50_P23136: Ubiquinol-cytochrome c reductase iron-sulfur subunit|unclassified	1.9210812632
+UniRef50_K1VMV2	1.9200245186
+UniRef50_K1VMV2|unclassified	1.9200245186
+UniRef50_B2E956: NADP-dependent isocitrate dehydrogenase protein	1.9199267211
+UniRef50_B2E956: NADP-dependent isocitrate dehydrogenase protein|unclassified	1.9199267211
+UniRef50_Q87X69	1.9198257497
+UniRef50_Q87X69|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9198257497
+UniRef50_P37030: Cysteine desulfurase	1.9198167239
+UniRef50_P37030: Cysteine desulfurase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.9198167239
+UniRef50_A6LTS1	1.9193857965
+UniRef50_A6LTS1|g__Clostridium.s__Clostridium_beijerinckii	1.9193857965
+UniRef50_B9KP24	1.9193857965
+UniRef50_B9KP24|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.9193857965
+UniRef50_H8KAY8: Succinyl-diaminopimelate desuccinylase	1.9193070211
+UniRef50_H8KAY8: Succinyl-diaminopimelate desuccinylase|unclassified	1.9193070211
+UniRef50_UPI000478AE11: hypothetical protein	1.9192341869
+UniRef50_UPI000478AE11: hypothetical protein|unclassified	1.9192341869
+UniRef50_UPI000361C4AD: hypothetical protein	1.9191700310
+UniRef50_UPI000361C4AD: hypothetical protein|unclassified	1.9191700310
+UniRef50_UPI000423B5F5: sarcosine oxidase subunit delta	1.9188372747
+UniRef50_UPI000423B5F5: sarcosine oxidase subunit delta|unclassified	1.9188372747
+UniRef50_UPI000237A821: endonuclease DDE	1.9188010670
+UniRef50_UPI000237A821: endonuclease DDE|unclassified	1.9188010670
+UniRef50_D4H9P2: Amine oxidase (Flavin-containing)	1.9185423751
+UniRef50_D4H9P2: Amine oxidase (Flavin-containing)|g__Propionibacterium.s__Propionibacterium_acnes	1.9185423751
+UniRef50_A6QDZ6	1.9180270850
+UniRef50_A6QDZ6|g__Staphylococcus.s__Staphylococcus_aureus	1.9180270850
+UniRef50_R1EJH8	1.9180085276
+UniRef50_R1EJH8|unclassified	1.9180085276
+UniRef50_A0Q1U2: Fe-S oxidoreductase, putative	1.9177697269
+UniRef50_A0Q1U2: Fe-S oxidoreductase, putative|g__Clostridium.s__Clostridium_beijerinckii	1.9177697269
+UniRef50_Q9HW54	1.9175473044
+UniRef50_Q9HW54|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9175473044
+UniRef50_A6M0L8	1.9169492704
+UniRef50_A6M0L8|g__Clostridium.s__Clostridium_beijerinckii	1.9169492704
+UniRef50_I6XZ21: NADP-dependent oxidoreductase domain protein	1.9169480304
+UniRef50_I6XZ21: NADP-dependent oxidoreductase domain protein|unclassified	1.9169480304
+UniRef50_A1KTV6: 2-isopropylmalate synthase	1.9168843398
+UniRef50_A1KTV6: 2-isopropylmalate synthase|g__Neisseria.s__Neisseria_meningitidis	1.8545322127
+UniRef50_A1KTV6: 2-isopropylmalate synthase|unclassified	0.0623521271
+UniRef50_UPI00016A3FE0: spermidine/putrescine ABC transporter ATPase subunit, partial	1.9167248079
+UniRef50_UPI00016A3FE0: spermidine/putrescine ABC transporter ATPase subunit, partial|unclassified	1.9167248079
+UniRef50_A5WBZ4: Transporter, NhaC family	1.9166250299
+UniRef50_A5WBZ4: Transporter, NhaC family|g__Neisseria.s__Neisseria_meningitidis	1.9166250299
+UniRef50_UPI00035C1E4A: hypothetical protein, partial	1.9164970129
+UniRef50_UPI00035C1E4A: hypothetical protein, partial|unclassified	1.9164970129
+UniRef50_Q3IYP6	1.9162351694
+UniRef50_Q3IYP6|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6339869281
+UniRef50_Q3IYP6|unclassified	0.2822482413
+UniRef50_A0A023Z2Q0	1.9161091885
+UniRef50_A0A023Z2Q0|unclassified	1.9161091885
+UniRef50_J9GTB9	1.9160803912
+UniRef50_J9GTB9|unclassified	1.9160803912
+UniRef50_Y2FN24	1.9158177604
+UniRef50_Y2FN24|unclassified	1.9158177604
+UniRef50_Q2CDA9	1.9157091371
+UniRef50_Q2CDA9|unclassified	1.9157091371
+UniRef50_A6LZB6	1.9157088123
+UniRef50_A6LZB6|g__Clostridium.s__Clostridium_beijerinckii	1.9157088123
+UniRef50_B0V786	1.9157088123
+UniRef50_B0V786|g__Acinetobacter.s__Acinetobacter_baumannii	1.9157088123
+UniRef50_B9DXT5	1.9157088123
+UniRef50_B9DXT5|g__Clostridium.s__Clostridium_beijerinckii	1.9157088123
+UniRef50_B9TJW8	1.9157088123
+UniRef50_B9TJW8|unclassified	1.9157088123
+UniRef50_F9Z2J9	1.9157088123
+UniRef50_F9Z2J9|g__Propionibacterium.s__Propionibacterium_acnes	1.9157088123
+UniRef50_J9HV03: Sigma-70 factor, ECF subfamily	1.9157088123
+UniRef50_J9HV03: Sigma-70 factor, ECF subfamily|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9157088123
+UniRef50_P9WPZ0: Probable GTPase MT1543	1.9157088123
+UniRef50_P9WPZ0: Probable GTPase MT1543|g__Propionibacterium.s__Propionibacterium_acnes	1.9157088123
+UniRef50_Q04803: Transcriptional activator protein PfeR	1.9157088123
+UniRef50_Q04803: Transcriptional activator protein PfeR|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9157088123
+UniRef50_Q6FAU5	1.9157088123
+UniRef50_Q6FAU5|g__Acinetobacter.s__Acinetobacter_baumannii	1.9157088123
+UniRef50_Q9RTK3	1.9157088123
+UniRef50_Q9RTK3|g__Deinococcus.s__Deinococcus_radiodurans	1.9157088123
+UniRef50_V9VWW7: Phosphodiesterase	1.9157088123
+UniRef50_V9VWW7: Phosphodiesterase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.9157088123
+UniRef50_W4TPM5: Phosphoglycerate mutase family protein	1.9157088123
+UniRef50_W4TPM5: Phosphoglycerate mutase family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.9157088123
+UniRef50_K9BV07	1.9143455172
+UniRef50_K9BV07|g__Acinetobacter.s__Acinetobacter_baumannii	1.9143455172
+UniRef50_UPI00036A2930: hypothetical protein	1.9143001303
+UniRef50_UPI00036A2930: hypothetical protein|unclassified	1.9143001303
+UniRef50_UPI0002EB2D0F: hypothetical protein	1.9142755974
+UniRef50_UPI0002EB2D0F: hypothetical protein|unclassified	1.9142755974
+UniRef50_S5TYA6	1.9141891519
+UniRef50_S5TYA6|unclassified	1.9141891519
+UniRef50_Q6A5X8: Arginine--tRNA ligase	1.9132813405
+UniRef50_Q6A5X8: Arginine--tRNA ligase|g__Propionibacterium.s__Propionibacterium_acnes	1.9132813405
+UniRef50_UPI0002624D8C: ISBmu8 transposase, partial	1.9128486921
+UniRef50_UPI0002624D8C: ISBmu8 transposase, partial|unclassified	1.9128486921
+UniRef50_A0A037XEA8	1.9128478847
+UniRef50_A0A037XEA8|unclassified	1.9128478847
+UniRef50_E6PW02	1.9125904442
+UniRef50_E6PW02|unclassified	1.9125904442
+UniRef50_H1W4P8	1.9124020200
+UniRef50_H1W4P8|unclassified	1.9124020200
+UniRef50_U5MZL4: Alpha-amylase	1.9123081797
+UniRef50_U5MZL4: Alpha-amylase|g__Clostridium.s__Clostridium_beijerinckii	1.9123081797
+UniRef50_Q9RWF7: UDP-glucose 4-epimerase, putative	1.9120458891
+UniRef50_Q9RWF7: UDP-glucose 4-epimerase, putative|g__Deinococcus.s__Deinococcus_radiodurans	1.9120458891
+UniRef50_W4FBH9	1.9120458891
+UniRef50_W4FBH9|unclassified	1.9120458891
+UniRef50_Q4A4A3	1.9118929372
+UniRef50_Q4A4A3|unclassified	1.9118929372
+UniRef50_UPI00026CA133: hypothetical protein	1.9118752350
+UniRef50_UPI00026CA133: hypothetical protein|unclassified	1.9118752350
+UniRef50_UPI00036176A4: hypothetical protein	1.9118260475
+UniRef50_UPI00036176A4: hypothetical protein|unclassified	1.9118260475
+UniRef50_V9W010	1.9116640938
+UniRef50_V9W010|unclassified	1.9116640938
+UniRef50_R1F809	1.9116368073
+UniRef50_R1F809|unclassified	1.9116368073
+UniRef50_UPI000474F5DC: hypothetical protein, partial	1.9114852315
+UniRef50_UPI000474F5DC: hypothetical protein, partial|unclassified	1.9114852315
+UniRef50_UPI0003B39369: hypothetical protein	1.9113785838
+UniRef50_UPI0003B39369: hypothetical protein|unclassified	1.9113785838
+UniRef50_UPI0003676D26: hypothetical protein	1.9108898933
+UniRef50_UPI0003676D26: hypothetical protein|unclassified	1.9108898933
+UniRef50_B2TKG7	1.9108824709
+UniRef50_B2TKG7|g__Clostridium.s__Clostridium_beijerinckii	1.9108824709
+UniRef50_V4UI35: RNA polymerase subunit sigma-24	1.9104732792
+UniRef50_V4UI35: RNA polymerase subunit sigma-24|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9104732792
+UniRef50_K4PRE7: PTS system beta-glucoside-specific EIIBCA component	1.9104579371
+UniRef50_K4PRE7: PTS system beta-glucoside-specific EIIBCA component|g__Streptococcus.s__Streptococcus_agalactiae	1.9104579371
+UniRef50_A5V3C2	1.9103732641
+UniRef50_A5V3C2|unclassified	1.9103732641
+UniRef50_F2AAA0	1.9102625773
+UniRef50_F2AAA0|unclassified	1.9102625773
+UniRef50_A6M141	1.9099853766
+UniRef50_A6M141|g__Clostridium.s__Clostridium_beijerinckii	1.9099853766
+UniRef50_A3JWM2	1.9096752906
+UniRef50_A3JWM2|unclassified	1.9096752906
+UniRef50_A8LSE3: Endoribonuclease YbeY	1.9095681137
+UniRef50_A8LSE3: Endoribonuclease YbeY|unclassified	1.9095681137
+UniRef50_A5I6S3	1.9093539230
+UniRef50_A5I6S3|g__Clostridium.s__Clostridium_beijerinckii	1.9093539230
+UniRef50_R9E5U8	1.9093537301
+UniRef50_R9E5U8|unclassified	1.9093537301
+UniRef50_U5MS66: Glycerol-1-phosphate dehydrogenase	1.9093291920
+UniRef50_U5MS66: Glycerol-1-phosphate dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	1.9093291920
+UniRef50_U5MNZ4: Beta-glucanase BglA	1.9091893844
+UniRef50_U5MNZ4: Beta-glucanase BglA|g__Clostridium.s__Clostridium_beijerinckii	1.9091893844
+UniRef50_R7Q6F6: Stackhouse genomic scaffold, scaffold_158	1.9088459283
+UniRef50_R7Q6F6: Stackhouse genomic scaffold, scaffold_158|unclassified	1.9088459283
+UniRef50_H5JT53: Gram-negative pili assembly chaperone, N-terminal domain protein	1.9083969466
+UniRef50_H5JT53: Gram-negative pili assembly chaperone, N-terminal domain protein|g__Escherichia.s__Escherichia_coli	1.9083969466
+UniRef50_J9YRJ4	1.9083969466
+UniRef50_J9YRJ4|g__Streptococcus.s__Streptococcus_agalactiae	1.9083969466
+UniRef50_Q1QUQ7: Transcriptional regulator, LysR family	1.9083969466
+UniRef50_Q1QUQ7: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9083969466
+UniRef50_Q6FAA9: Elongation factor P	1.9083969466
+UniRef50_Q6FAA9: Elongation factor P|g__Acinetobacter.s__Acinetobacter_baumannii	1.9083969466
+UniRef50_Q8GS42: EBNA-1 nuclear protein-like	1.9083969466
+UniRef50_Q8GS42: EBNA-1 nuclear protein-like|unclassified	1.9083969466
+UniRef50_Q9RSU4	1.9083969466
+UniRef50_Q9RSU4|g__Deinococcus.s__Deinococcus_radiodurans	1.9083969466
+UniRef50_Q9RUK2: Transcriptional regulator, TetR family	1.9083969466
+UniRef50_Q9RUK2: Transcriptional regulator, TetR family|g__Deinococcus.s__Deinococcus_radiodurans	1.9083969466
+UniRef50_Q7M922: Na(+)/H(+) antiporter NhaA	1.9083623112
+UniRef50_Q7M922: Na(+)/H(+) antiporter NhaA|g__Helicobacter.s__Helicobacter_pylori	1.9083623112
+UniRef50_A0A009R5V4: TetR family transcriptional regulator domain protein (Fragment)	1.9074845145
+UniRef50_A0A009R5V4: TetR family transcriptional regulator domain protein (Fragment)|unclassified	1.9074845145
+UniRef50_UPI00035F0BE8: hypothetical protein	1.9074285134
+UniRef50_UPI00035F0BE8: hypothetical protein|unclassified	1.9074285134
+UniRef50_V8H1F5	1.9073628923
+UniRef50_V8H1F5|unclassified	1.9073628923
+UniRef50_G9PG01	1.9072163850
+UniRef50_G9PG01|unclassified	1.9072163850
+UniRef50_UPI000479BB48: MerR family transcriptional regulator	1.9071840112
+UniRef50_UPI000479BB48: MerR family transcriptional regulator|unclassified	1.9071840112
+UniRef50_U0WAR4	1.9067333326
+UniRef50_U0WAR4|unclassified	1.9067333326
+UniRef50_Q603I8: Protein RnfH	1.9066471852
+UniRef50_Q603I8: Protein RnfH|unclassified	1.9066471852
+UniRef50_I1F1X0	1.9061077439
+UniRef50_I1F1X0|unclassified	1.9061077439
+UniRef50_S6ASW9	1.9058681610
+UniRef50_S6ASW9|unclassified	1.9058681610
+UniRef50_UPI00036A911D: hypothetical protein	1.9057587408
+UniRef50_UPI00036A911D: hypothetical protein|unclassified	1.9057587408
+UniRef50_F3WRP9: NAD(P)H:quinone oxidoreductase domain protein	1.9056313534
+UniRef50_F3WRP9: NAD(P)H:quinone oxidoreductase domain protein|unclassified	1.9056313534
+UniRef50_Q833W9: Tagatose-6-phosphate kinase	1.9054255375
+UniRef50_Q833W9: Tagatose-6-phosphate kinase|g__Streptococcus.s__Streptococcus_agalactiae	1.8552875696
+UniRef50_Q833W9: Tagatose-6-phosphate kinase|unclassified	0.0501379679
+UniRef50_UPI00035F5A7F: MULTISPECIES: hypothetical protein	1.9049569547
+UniRef50_UPI00035F5A7F: MULTISPECIES: hypothetical protein|unclassified	1.9049569547
+UniRef50_A6LSD9	1.9047619048
+UniRef50_A6LSD9|g__Clostridium.s__Clostridium_beijerinckii	1.9047619048
+UniRef50_A6M235: Sugar isomerase (SIS)	1.9047619048
+UniRef50_A6M235: Sugar isomerase (SIS)|g__Clostridium.s__Clostridium_beijerinckii	1.9047619048
+UniRef50_A6W0A1: Inorganic pyrophosphatase	1.9047619048
+UniRef50_A6W0A1: Inorganic pyrophosphatase|g__Acinetobacter.s__Acinetobacter_baumannii	1.9047619048
+UniRef50_B0UA98	1.9047619048
+UniRef50_B0UA98|unclassified	1.9047619048
+UniRef50_B7MKP4	1.9047619048
+UniRef50_B7MKP4|g__Clostridium.s__Clostridium_beijerinckii	1.9047619048
+UniRef50_C1DQ55: LPS transport protein LptA	1.9047619048
+UniRef50_C1DQ55: LPS transport protein LptA|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9047619048
+UniRef50_D0K172	1.9047619048
+UniRef50_D0K172|g__Helicobacter.s__Helicobacter_pylori	1.9047619048
+UniRef50_M9VAR4: Response regulator MprA	1.9047619048
+UniRef50_M9VAR4: Response regulator MprA|g__Propionibacterium.s__Propionibacterium_acnes	1.9047619048
+UniRef50_Q6AA51: L-fucose isomerase	1.9047619048
+UniRef50_Q6AA51: L-fucose isomerase|g__Propionibacterium.s__Propionibacterium_acnes	1.9047619048
+UniRef50_K4FFQ5: Lysine decarboxylase	1.9038661148
+UniRef50_K4FFQ5: Lysine decarboxylase|g__Acinetobacter.s__Acinetobacter_baumannii	1.8484288355
+UniRef50_K4FFQ5: Lysine decarboxylase|unclassified	0.0554372793
+UniRef50_UPI0004742BB7: glucose-1-phosphate thymidylyltransferase	1.9038444312
+UniRef50_UPI0004742BB7: glucose-1-phosphate thymidylyltransferase|unclassified	1.9038444312
+UniRef50_A6M2K2: Methyl-accepting chemotaxis sensory transducer	1.9037979564
+UniRef50_A6M2K2: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	1.9037979564
+UniRef50_Q03PU9: DNA-directed RNA polymerase subunit beta	1.9032021223
+UniRef50_Q03PU9: DNA-directed RNA polymerase subunit beta|g__Streptococcus.s__Streptococcus_agalactiae	1.8263835660
+UniRef50_Q03PU9: DNA-directed RNA polymerase subunit beta|unclassified	0.0768185563
+UniRef50_M9VFM2	1.9031580472
+UniRef50_M9VFM2|g__Propionibacterium.s__Propionibacterium_acnes	1.9031580472
+UniRef50_G0DVB5: Beta-glucanase	1.9029478653
+UniRef50_G0DVB5: Beta-glucanase|g__Propionibacterium.s__Propionibacterium_acnes	1.9029478653
+UniRef50_D5ASN5: Membrane protein, putative	1.9026566003
+UniRef50_D5ASN5: Membrane protein, putative|unclassified	1.9026566003
+UniRef50_UPI000252B25E: PREDICTED: 50S ribosomal protein L6-like	1.9018427348
+UniRef50_UPI000252B25E: PREDICTED: 50S ribosomal protein L6-like|unclassified	1.9018427348
+UniRef50_Q6NCF3: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase	1.9017537527
+UniRef50_Q6NCF3: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|g__Deinococcus.s__Deinococcus_radiodurans	1.8593887765
+UniRef50_Q6NCF3: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|unclassified	0.0423649762
+UniRef50_B7RN53	1.9015749000
+UniRef50_B7RN53|unclassified	1.9015749000
+UniRef50_A6LW40: NUDIX hydrolase	1.9011406844
+UniRef50_A6LW40: NUDIX hydrolase|g__Clostridium.s__Clostridium_beijerinckii	1.9011406844
+UniRef50_V4G2Y6: Oxidoreductase	1.9011406844
+UniRef50_V4G2Y6: Oxidoreductase|g__Escherichia.s__Escherichia_coli	1.9011406844
+UniRef50_X7T756	1.9011406844
+UniRef50_X7T756|unclassified	1.9011406844
+UniRef50_M8W9J3: Glycosyl hydrolase family 65 central catalytic domain protein	1.9010956495
+UniRef50_M8W9J3: Glycosyl hydrolase family 65 central catalytic domain protein|g__Escherichia.s__Escherichia_coli	1.9010956495
+UniRef50_G4LCX9: Transcriptional regulator	1.9000266695
+UniRef50_G4LCX9: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.9000266695
+UniRef50_V9BNZ4: TRAP transporter, DctM-like membrane protein	1.8998351067
+UniRef50_V9BNZ4: TRAP transporter, DctM-like membrane protein|unclassified	1.8998351067
+UniRef50_E6MU88: DNA-binding response regulator, Fis family	1.8995416113
+UniRef50_E6MU88: DNA-binding response regulator, Fis family|g__Neisseria.s__Neisseria_meningitidis	1.8995416113
+UniRef50_Q8FTK5: GTPase Der	1.8991677227
+UniRef50_Q8FTK5: GTPase Der|g__Propionibacterium.s__Propionibacterium_acnes	1.8991677227
+UniRef50_F2ECI9: Predicted protein	1.8989847351
+UniRef50_F2ECI9: Predicted protein|unclassified	1.8989847351
+UniRef50_E8ZM45: Glycosyl transferase	1.8987455843
+UniRef50_E8ZM45: Glycosyl transferase|g__Clostridium.s__Clostridium_beijerinckii	1.8987455843
+UniRef50_Q1IYS1: Carboxynorspermidine decarboxylase	1.8985573847
+UniRef50_Q1IYS1: Carboxynorspermidine decarboxylase|g__Clostridium.s__Clostridium_beijerinckii	1.8985573847
+UniRef50_W8WVR8: Dihydrolipoyl dehydrogenase	1.8985421908
+UniRef50_W8WVR8: Dihydrolipoyl dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.8985421908
+UniRef50_R6ZZM1: Transcriptional regulator HxlR family	1.8978964657
+UniRef50_R6ZZM1: Transcriptional regulator HxlR family|unclassified	1.8978964657
+UniRef50_A3M3T0: Merops peptidase family S24	1.8975332068
+UniRef50_A3M3T0: Merops peptidase family S24|g__Acinetobacter.s__Acinetobacter_baumannii	1.8975332068
+UniRef50_G7M2K6: Phosphoesterase, HXTX	1.8975332068
+UniRef50_G7M2K6: Phosphoesterase, HXTX|g__Clostridium.s__Clostridium_beijerinckii	1.8975332068
+UniRef50_K0C6E0: Sulfurtransferase	1.8975332068
+UniRef50_K0C6E0: Sulfurtransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8975332068
+UniRef50_Q0TRI9: MTA/SAH nucleosidase	1.8975332068
+UniRef50_Q0TRI9: MTA/SAH nucleosidase|g__Clostridium.s__Clostridium_beijerinckii	1.8975332068
+UniRef50_R4K2V5: Phosphatidate cytidylyltransferase	1.8975332068
+UniRef50_R4K2V5: Phosphatidate cytidylyltransferase|g__Clostridium.s__Clostridium_beijerinckii	1.8975332068
+UniRef50_Q9X3Y6: DNA gyrase subunit B	1.8974917851
+UniRef50_Q9X3Y6: DNA gyrase subunit B|g__Clostridium.s__Clostridium_beijerinckii	1.7643505040
+UniRef50_Q9X3Y6: DNA gyrase subunit B|unclassified	0.1331412811
+UniRef50_A6V0G0	1.8971812780
+UniRef50_A6V0G0|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7935708986
+UniRef50_A6V0G0|unclassified	0.1036103794
+UniRef50_F0YFT4: Expressed protein (Fragment)	1.8962664345
+UniRef50_F0YFT4: Expressed protein (Fragment)|unclassified	1.8962664345
+UniRef50_I4MVU8: Membrane protein	1.8957948076
+UniRef50_I4MVU8: Membrane protein|unclassified	1.8957948076
+UniRef50_UPI000374B781: hypothetical protein, partial	1.8957856574
+UniRef50_UPI000374B781: hypothetical protein, partial|unclassified	1.8957856574
+UniRef50_V8H036	1.8952189611
+UniRef50_V8H036|unclassified	1.8952189611
+UniRef50_I0E927	1.8944956192
+UniRef50_I0E927|g__Helicobacter.s__Helicobacter_pylori	1.8944956192
+UniRef50_H1SKR8: Site-specific recombinase, phage integrase family	1.8940309815
+UniRef50_H1SKR8: Site-specific recombinase, phage integrase family|g__Staphylococcus.s__Staphylococcus_epidermidis	1.8940309815
+UniRef50_M9VJF8: Phosphate transport system permease protein PstA	1.8939393939
+UniRef50_M9VJF8: Phosphate transport system permease protein PstA|g__Propionibacterium.s__Propionibacterium_acnes	1.8939393939
+UniRef50_W5ASR4	1.8939393939
+UniRef50_W5ASR4|unclassified	1.8939393939
+UniRef50_UPI0003B3686E: XRE family transcriptional regulator	1.8939195334
+UniRef50_UPI0003B3686E: XRE family transcriptional regulator|unclassified	1.8939195334
+UniRef50_UPI0004737BA1: hypothetical protein, partial	1.8935689442
+UniRef50_UPI0004737BA1: hypothetical protein, partial|unclassified	1.8935689442
+UniRef50_UPI00042CC54C: PREDICTED: basic salivary proline-rich protein 2-like isoform X1	1.8934541258
+UniRef50_UPI00042CC54C: PREDICTED: basic salivary proline-rich protein 2-like isoform X1|unclassified	1.8934541258
+UniRef50_L7ZNE5: ABC transporter ATP-binding protein	1.8929993019
+UniRef50_L7ZNE5: ABC transporter ATP-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7915570668
+UniRef50_L7ZNE5: ABC transporter ATP-binding protein|unclassified	0.1014422351
+UniRef50_Q2NYD6: Anthranilate phosphoribosyltransferase	1.8912567602
+UniRef50_Q2NYD6: Anthranilate phosphoribosyltransferase|g__Neisseria.s__Neisseria_meningitidis	1.8912567602
+UniRef50_U3R8S9: Putative minor silk ampullate protein	1.8909667955
+UniRef50_U3R8S9: Putative minor silk ampullate protein|unclassified	1.8909667955
+UniRef50_A0A011DVL1: Bacterial regulatory s, tetR family protein	1.8903591682
+UniRef50_A0A011DVL1: Bacterial regulatory s, tetR family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.8903591682
+UniRef50_C4S8U7	1.8903591682
+UniRef50_C4S8U7|g__Escherichia.s__Escherichia_coli	1.8903591682
+UniRef50_F2RAT0: UDP-galactose-lipid carrier transferase	1.8903591682
+UniRef50_F2RAT0: UDP-galactose-lipid carrier transferase|g__Propionibacterium.s__Propionibacterium_acnes	1.8903591682
+UniRef50_M3YKL0	1.8903591682
+UniRef50_M3YKL0|unclassified	1.8903591682
+UniRef50_R4K4U3: Acetyltransferase	1.8903591682
+UniRef50_R4K4U3: Acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	1.8903591682
+UniRef50_E0MSL9: Thymocyte nuclear protein 1	1.8900428082
+UniRef50_E0MSL9: Thymocyte nuclear protein 1|unclassified	1.8900428082
+UniRef50_A8TZF0: Putative translation initiation inhibitor	1.8900260736
+UniRef50_A8TZF0: Putative translation initiation inhibitor|unclassified	1.8900260736
+UniRef50_A3I3T9	1.8900006318
+UniRef50_A3I3T9|unclassified	1.8900006318
+UniRef50_E3HGU2: Oxidoreductase FAD-binding domain protein 3	1.8899017320
+UniRef50_E3HGU2: Oxidoreductase FAD-binding domain protein 3|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8899017320
+UniRef50_UPI000471C680: hypothetical protein	1.8898864759
+UniRef50_UPI000471C680: hypothetical protein|unclassified	1.8898864759
+UniRef50_X4XF16	1.8898364801
+UniRef50_X4XF16|unclassified	1.8898364801
+UniRef50_Q8NNF6: Pyruvate dehydrogenase E1 component	1.8893660503
+UniRef50_Q8NNF6: Pyruvate dehydrogenase E1 component|g__Propionibacterium.s__Propionibacterium_acnes	1.8893660503
+UniRef50_UPI0004702907: ABC transporter ATP-binding protein	1.8884079551
+UniRef50_UPI0004702907: ABC transporter ATP-binding protein|unclassified	1.8884079551
+UniRef50_UPI00046E7A1E: TonB-dependent receptor	1.8883081439
+UniRef50_UPI00046E7A1E: TonB-dependent receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8883081439
+UniRef50_UPI00037D890F: hypothetical protein	1.8882843193
+UniRef50_UPI00037D890F: hypothetical protein|unclassified	1.8882843193
+UniRef50_T4P8K3: DisA bacterial checkpoint controller nucleotide-binding family protein	1.8882236489
+UniRef50_T4P8K3: DisA bacterial checkpoint controller nucleotide-binding family protein|unclassified	1.8882236489
+UniRef50_Q9RX79: Cytochrome B6	1.8880158344
+UniRef50_Q9RX79: Cytochrome B6|g__Deinococcus.s__Deinococcus_radiodurans	1.8880158344
+UniRef50_A1A9T0	1.8878458157
+UniRef50_A1A9T0|unclassified	1.8878458157
+UniRef50_E2ZZ63	1.8874435389
+UniRef50_E2ZZ63|unclassified	1.8874435389
+UniRef50_Q92UB9	1.8869549949
+UniRef50_Q92UB9|unclassified	1.8869549949
+UniRef50_A0A021X8G2	1.8868535740
+UniRef50_A0A021X8G2|unclassified	1.8868535740
+UniRef50_B7GXR8	1.8867924528
+UniRef50_B7GXR8|g__Acinetobacter.s__Acinetobacter_baumannii	1.8867924528
+UniRef50_B7UW90: MotD	1.8867924528
+UniRef50_B7UW90: MotD|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8867924528
+UniRef50_E2XTQ0: Ribose ABC transporter, permease protein	1.8867924528
+UniRef50_E2XTQ0: Ribose ABC transporter, permease protein|g__Propionibacterium.s__Propionibacterium_acnes	1.8867924528
+UniRef50_G7M7Z8	1.8867924528
+UniRef50_G7M7Z8|g__Clostridium.s__Clostridium_beijerinckii	1.8867924528
+UniRef50_UPI00036BD0E4: hypothetical protein	1.8867924528
+UniRef50_UPI00036BD0E4: hypothetical protein|unclassified	1.8867924528
+UniRef50_V5VFP2: OsmC family protein	1.8867924528
+UniRef50_V5VFP2: OsmC family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.8867924528
+UniRef50_X5K2I7: Transcriptional regulator, TetR family, putative	1.8867924528
+UniRef50_X5K2I7: Transcriptional regulator, TetR family, putative|g__Streptococcus.s__Streptococcus_agalactiae	1.8867924528
+UniRef50_Q7F759: P0044F08.26 protein	1.8866856256
+UniRef50_Q7F759: P0044F08.26 protein|unclassified	1.8866856256
+UniRef50_W4PJR5: Anaerobic glycerol-3-phosphate dehydrogenase subunit B	1.8863819236
+UniRef50_W4PJR5: Anaerobic glycerol-3-phosphate dehydrogenase subunit B|unclassified	1.8863819236
+UniRef50_D4HAH0: ATPase/histidine kinase/DNA gyrase B/HSP90 domain protein	1.8863001721
+UniRef50_D4HAH0: ATPase/histidine kinase/DNA gyrase B/HSP90 domain protein|g__Propionibacterium.s__Propionibacterium_acnes	1.8863001721
+UniRef50_UPI00036AA250: hypothetical protein	1.8861466504
+UniRef50_UPI00036AA250: hypothetical protein|unclassified	1.8861466504
+UniRef50_UPI0004668B02: hypothetical protein	1.8858841262
+UniRef50_UPI0004668B02: hypothetical protein|unclassified	1.8858841262
+UniRef50_W8UI03	1.8851468518
+UniRef50_W8UI03|unclassified	1.8851468518
+UniRef50_B5VJJ5	1.8850332137
+UniRef50_B5VJJ5|unclassified	1.8850332137
+UniRef50_F1ZJE7: Inner membrane protein yeiU domain protein	1.8848923257
+UniRef50_F1ZJE7: Inner membrane protein yeiU domain protein|unclassified	1.8848923257
+UniRef50_UPI00036D6D03: hypothetical protein	1.8846093157
+UniRef50_UPI00036D6D03: hypothetical protein|unclassified	1.8846093157
+UniRef50_J9NUS4	1.8842200763
+UniRef50_J9NUS4|unclassified	1.8842200763
+UniRef50_S9QQX6	1.8841323375
+UniRef50_S9QQX6|unclassified	1.8841323375
+UniRef50_C6ELP8	1.8839551945
+UniRef50_C6ELP8|unclassified	1.8839551945
+UniRef50_I5BSE9: Twitching motility protein PilT	1.8836049817
+UniRef50_I5BSE9: Twitching motility protein PilT|unclassified	1.8836049817
+UniRef50_UPI00034FE8B4: PREDICTED: basic proline-rich protein-like	1.8835724058
+UniRef50_UPI00034FE8B4: PREDICTED: basic proline-rich protein-like|unclassified	1.8835724058
+UniRef50_F6AYF6: TonB-dependent siderophore receptor	1.8835516201
+UniRef50_F6AYF6: TonB-dependent siderophore receptor|g__Acinetobacter.s__Acinetobacter_baumannii	1.8835516201
+UniRef50_A6LTD8: Extracellular solute-binding protein, family 1	1.8835339525
+UniRef50_A6LTD8: Extracellular solute-binding protein, family 1|g__Clostridium.s__Clostridium_beijerinckii	1.8835339525
+UniRef50_A3M105: Acyl-CoA synthetase/AMP-acid ligases II	1.8835282022
+UniRef50_A3M105: Acyl-CoA synthetase/AMP-acid ligases II|g__Acinetobacter.s__Acinetobacter_baumannii	1.8835282022
+UniRef50_B9TFT7	1.8835011145
+UniRef50_B9TFT7|unclassified	1.8835011145
+UniRef50_A0A023RUU7: Amino acid transporter LysE	1.8832391714
+UniRef50_A0A023RUU7: Amino acid transporter LysE|g__Acinetobacter.s__Acinetobacter_baumannii	1.8832391714
+UniRef50_A1SJB1: Adenine phosphoribosyltransferase	1.8832391714
+UniRef50_A1SJB1: Adenine phosphoribosyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	1.8832391714
+UniRef50_B7I6U8	1.8832391714
+UniRef50_B7I6U8|g__Acinetobacter.s__Acinetobacter_baumannii	1.8832391714
+UniRef50_K4Q8I8	1.8832391714
+UniRef50_K4Q8I8|g__Streptococcus.s__Streptococcus_agalactiae	1.8832391714
+UniRef50_P65671: Sulfate adenylyltransferase subunit 2	1.8832391714
+UniRef50_P65671: Sulfate adenylyltransferase subunit 2|g__Neisseria.s__Neisseria_meningitidis	1.8832391714
+UniRef50_R7CLA1	1.8832391714
+UniRef50_R7CLA1|g__Clostridium.s__Clostridium_beijerinckii	1.8832391714
+UniRef50_W0Z356: Endoribonuclease L-PSP	1.8832391714
+UniRef50_W0Z356: Endoribonuclease L-PSP|unclassified	1.8832391714
+UniRef50_UPI00046BD5B8: PREDICTED: 4-hydroxy-2-oxoglutarate aldolase, mitochondrial-like, partial	1.8828948264
+UniRef50_UPI00046BD5B8: PREDICTED: 4-hydroxy-2-oxoglutarate aldolase, mitochondrial-like, partial|unclassified	1.8828948264
+UniRef50_A0A008EJX2	1.8825887583
+UniRef50_A0A008EJX2|unclassified	1.8825887583
+UniRef50_UPI00036BE173: hypothetical protein	1.8825780965
+UniRef50_UPI00036BE173: hypothetical protein|unclassified	1.8825780965
+UniRef50_V9U4W0: Mobile element protein	1.8824870918
+UniRef50_V9U4W0: Mobile element protein|unclassified	1.8824870918
+UniRef50_P71310	1.8823154619
+UniRef50_P71310|unclassified	1.8823154619
+UniRef50_UPI000474A10A: HNH endonuclease	1.8822967972
+UniRef50_UPI000474A10A: HNH endonuclease|unclassified	1.8822967972
+UniRef50_B9KHD2	1.8820784055
+UniRef50_B9KHD2|unclassified	1.8820784055
+UniRef50_UPI0003D2D096: helicase subunit of the DNA excision repair complex	1.8814669340
+UniRef50_UPI0003D2D096: helicase subunit of the DNA excision repair complex|unclassified	1.8814669340
+UniRef50_C6ELI9	1.8814545851
+UniRef50_C6ELI9|unclassified	1.8814545851
+UniRef50_W1Y671: Protein AraJ (Fragment)	1.8814453919
+UniRef50_W1Y671: Protein AraJ (Fragment)|unclassified	1.8814453919
+UniRef50_UPI00037B865B: hypothetical protein	1.8811900377
+UniRef50_UPI00037B865B: hypothetical protein|unclassified	1.8811900377
+UniRef50_D4HFJ2: Helicase C-terminal domain protein	1.8810115186
+UniRef50_D4HFJ2: Helicase C-terminal domain protein|g__Propionibacterium.s__Propionibacterium_acnes	1.8810115186
+UniRef50_F8XI63	1.8805033046
+UniRef50_F8XI63|unclassified	1.8805033046
+UniRef50_UPI0003EB471A: hypothetical protein	1.8803026480
+UniRef50_UPI0003EB471A: hypothetical protein|unclassified	1.8803026480
+UniRef50_UPI000471570A: hypothetical protein	1.8801565868
+UniRef50_UPI000471570A: hypothetical protein|unclassified	1.8801565868
+UniRef50_Q8YYY4: All0708 protein	1.8798531518
+UniRef50_Q8YYY4: All0708 protein|unclassified	1.8798531518
+UniRef50_F9YX60: Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase	1.8796992481
+UniRef50_F9YX60: Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	1.8796992481
+UniRef50_UPI000476EC95: TetR family transcriptional regulator	1.8796992481
+UniRef50_UPI000476EC95: TetR family transcriptional regulator|unclassified	1.8796992481
+UniRef50_W0IE40	1.8796691131
+UniRef50_W0IE40|unclassified	1.8796691131
+UniRef50_W5GCK4	1.8794786132
+UniRef50_W5GCK4|unclassified	1.8794786132
+UniRef50_UPI0003671A9B: hypothetical protein	1.8790631791
+UniRef50_UPI0003671A9B: hypothetical protein|unclassified	1.8790631791
+UniRef50_A4WPZ1	1.8788263822
+UniRef50_A4WPZ1|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6611295681
+UniRef50_A4WPZ1|unclassified	0.2176968140
+UniRef50_Q1C8A9: N-succinylglutamate 5-semialdehyde dehydrogenase	1.8783523878
+UniRef50_Q1C8A9: N-succinylglutamate 5-semialdehyde dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8579605015
+UniRef50_Q1C8A9: N-succinylglutamate 5-semialdehyde dehydrogenase|unclassified	0.0203918864
+UniRef50_UPI000478EDC7: hypothetical protein	1.8781090673
+UniRef50_UPI000478EDC7: hypothetical protein|unclassified	1.8781090673
+UniRef50_A0A023RYG5: Hydrolase	1.8779822768
+UniRef50_A0A023RYG5: Hydrolase|g__Acinetobacter.s__Acinetobacter_baumannii	1.8779822768
+UniRef50_C6DJK8: Transglutaminase domain protein	1.8773302307
+UniRef50_C6DJK8: Transglutaminase domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7605633803
+UniRef50_C6DJK8: Transglutaminase domain protein|unclassified	0.1167668505
+UniRef50_W1G431: Putative transport protein	1.8769919764
+UniRef50_W1G431: Putative transport protein|unclassified	1.8769919764
+UniRef50_UPI00016A61F3: ABC transporter related protein	1.8769422793
+UniRef50_UPI00016A61F3: ABC transporter related protein|unclassified	1.8769422793
+UniRef50_E2ZTH3: Putative membrane protein	1.8767080946
+UniRef50_E2ZTH3: Putative membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8767080946
+UniRef50_Q9PD69: Proline iminopeptidase	1.8766295482
+UniRef50_Q9PD69: Proline iminopeptidase|g__Propionibacterium.s__Propionibacterium_acnes	1.8018018018
+UniRef50_Q9PD69: Proline iminopeptidase|unclassified	0.0748277464
+UniRef50_U5MVL1	1.8765861135
+UniRef50_U5MVL1|unclassified	1.8765861135
+UniRef50_D6A4A5	1.8764941731
+UniRef50_D6A4A5|unclassified	1.8764941731
+UniRef50_A0A017SU62	1.8764249112
+UniRef50_A0A017SU62|unclassified	1.8764249112
+UniRef50_A3PMC6: GCN5-related N-acetyltransferase	1.8761726079
+UniRef50_A3PMC6: GCN5-related N-acetyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.8761726079
+UniRef50_E8PEL6	1.8761726079
+UniRef50_E8PEL6|g__Acinetobacter.s__Acinetobacter_baumannii	1.8761726079
+UniRef50_M9RZI0	1.8761726079
+UniRef50_M9RZI0|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8761726079
+UniRef50_Q5H5C1: Phosphinothricin acetyltransferase	1.8761726079
+UniRef50_Q5H5C1: Phosphinothricin acetyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.8761726079
+UniRef50_UPI0000379EE0: hypothetical protein	1.8761608898
+UniRef50_UPI0000379EE0: hypothetical protein|unclassified	1.8761608898
+UniRef50_U0M6X9	1.8759990357
+UniRef50_U0M6X9|unclassified	1.8759990357
+UniRef50_H1QFU3: Putative oxygen-independent coproporphyrinogen III oxidase (Fragment)	1.8757707702
+UniRef50_H1QFU3: Putative oxygen-independent coproporphyrinogen III oxidase (Fragment)|unclassified	1.8757707702
+UniRef50_A6LX07: Na+/H+ antiporter	1.8756912775
+UniRef50_A6LX07: Na+/H+ antiporter|g__Clostridium.s__Clostridium_beijerinckii	1.8756912775
+UniRef50_U3T6E5: Penicillin acylase	1.8755455580
+UniRef50_U3T6E5: Penicillin acylase|g__Acinetobacter.s__Acinetobacter_baumannii	1.8755455580
+UniRef50_UPI0003C48D73: PREDICTED: GRAM domain-containing protein 1C, partial	1.8752350663
+UniRef50_UPI0003C48D73: PREDICTED: GRAM domain-containing protein 1C, partial|unclassified	1.8752350663
+UniRef50_Q9ZKE4: Primosomal protein N'	1.8751168615
+UniRef50_Q9ZKE4: Primosomal protein N'|g__Helicobacter.s__Helicobacter_pylori	1.8751168615
+UniRef50_D4M2Z0: Carbon dioxide concentrating mechanism/carboxysome shell protein	1.8750829005
+UniRef50_D4M2Z0: Carbon dioxide concentrating mechanism/carboxysome shell protein|unclassified	1.8750829005
+UniRef50_A8LAR7: Pyrimidine-nucleoside phosphorylase	1.8750469409
+UniRef50_A8LAR7: Pyrimidine-nucleoside phosphorylase|g__Propionibacterium.s__Propionibacterium_acnes	1.8750469409
+UniRef50_UPI00046F30F3: hypothetical protein	1.8750390182
+UniRef50_UPI00046F30F3: hypothetical protein|unclassified	1.8750390182
+UniRef50_UPI00046D88F2: chemotaxis protein CheY	1.8749467763
+UniRef50_UPI00046D88F2: chemotaxis protein CheY|unclassified	1.8749467763
+UniRef50_N6TXQ9	1.8749361471
+UniRef50_N6TXQ9|unclassified	1.8749361471
+UniRef50_F4MC03: Lysophospholipid transporter LplT	1.8746059815
+UniRef50_F4MC03: Lysophospholipid transporter LplT|g__Escherichia.s__Escherichia_coli	1.8746059815
+UniRef50_P0C7I7: Succinyl-CoA:3-ketoacid coenzyme A transferase subunit A	1.8742602214
+UniRef50_P0C7I7: Succinyl-CoA:3-ketoacid coenzyme A transferase subunit A|unclassified	1.8742602214
+UniRef50_UPI0002191AAA: replication initiation protein	1.8742426351
+UniRef50_UPI0002191AAA: replication initiation protein|unclassified	1.8742426351
+UniRef50_T5L946	1.8737666330
+UniRef50_T5L946|unclassified	1.8737666330
+UniRef50_D6LSD1	1.8736683045
+UniRef50_D6LSD1|unclassified	1.8736683045
+UniRef50_V9TVS6	1.8734472071
+UniRef50_V9TVS6|unclassified	1.8734472071
+UniRef50_U3SU89	1.8730260933
+UniRef50_U3SU89|unclassified	1.8730260933
+UniRef50_U8AFT2	1.8726739522
+UniRef50_U8AFT2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8726739522
+UniRef50_A3M5V1: Porin for benzoate transport (BenP)	1.8726591760
+UniRef50_A3M5V1: Porin for benzoate transport (BenP)|g__Acinetobacter.s__Acinetobacter_baumannii	1.8726591760
+UniRef50_B5YJV0: GTP cyclohydrolase 1	1.8726591760
+UniRef50_B5YJV0: GTP cyclohydrolase 1|g__Streptococcus.s__Streptococcus_agalactiae	1.8726591760
+UniRef50_G4LGF1: RNA polymerase sigma factor	1.8726591760
+UniRef50_G4LGF1: RNA polymerase sigma factor|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8726591760
+UniRef50_P64634: Putative DNA utilization protein HofN	1.8726591760
+UniRef50_P64634: Putative DNA utilization protein HofN|g__Escherichia.s__Escherichia_coli	1.8726591760
+UniRef50_P76208	1.8726591760
+UniRef50_P76208|g__Escherichia.s__Escherichia_coli	1.8726591760
+UniRef50_Q0A4M5: ATP synthase subunit delta	1.8726591760
+UniRef50_Q0A4M5: ATP synthase subunit delta|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8726591760
+UniRef50_Q6A6B1: BadF/BadG/BcrA/BcrD ATPase family protein	1.8726591760
+UniRef50_Q6A6B1: BadF/BadG/BcrA/BcrD ATPase family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.8726591760
+UniRef50_Q2Y865: Pyridoxine 5'-phosphate synthase	1.8721858893
+UniRef50_Q2Y865: Pyridoxine 5'-phosphate synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.7482517483
+UniRef50_Q2Y865: Pyridoxine 5'-phosphate synthase|unclassified	0.1239341410
+UniRef50_G9P654	1.8719691479
+UniRef50_G9P654|unclassified	1.8719691479
+UniRef50_H8FTA1	1.8716862141
+UniRef50_H8FTA1|unclassified	1.8716862141
+UniRef50_N9IGS7	1.8713664374
+UniRef50_N9IGS7|g__Acinetobacter.s__Acinetobacter_baumannii	1.8713664374
+UniRef50_UPI00035DB90E: hypothetical protein, partial	1.8712290647
+UniRef50_UPI00035DB90E: hypothetical protein, partial|unclassified	1.8712290647
+UniRef50_Q7TYA6: Aspartate--tRNA(Asp/Asn) ligase	1.8711200341
+UniRef50_Q7TYA6: Aspartate--tRNA(Asp/Asn) ligase|g__Propionibacterium.s__Propionibacterium_acnes	1.8711200341
+UniRef50_A5N1N7: Acyl-protein synthetase-related protein	1.8710964153
+UniRef50_A5N1N7: Acyl-protein synthetase-related protein|g__Clostridium.s__Clostridium_beijerinckii	1.8710964153
+UniRef50_Q8G7Y6: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase	1.8709596902
+UniRef50_Q8G7Y6: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|g__Propionibacterium.s__Propionibacterium_acnes	1.8142526640
+UniRef50_Q8G7Y6: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|unclassified	0.0567070263
+UniRef50_T2ESE9: DNA/RNA non-specific endonuclease family protein	1.8709124956
+UniRef50_T2ESE9: DNA/RNA non-specific endonuclease family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8709124956
+UniRef50_Q989X5: Msl6246 protein	1.8708903919
+UniRef50_Q989X5: Msl6246 protein|unclassified	1.8708903919
+UniRef50_W0YTR9	1.8704587618
+UniRef50_W0YTR9|unclassified	1.8704587618
+UniRef50_Q9RZ97: TerF-related protein	1.8703884375
+UniRef50_Q9RZ97: TerF-related protein|g__Deinococcus.s__Deinococcus_radiodurans	1.8703884375
+UniRef50_D5ATD7: Flagellar FlaF family protein	1.8700900142
+UniRef50_D5ATD7: Flagellar FlaF family protein|unclassified	1.8700900142
+UniRef50_D8M8V8: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_6	1.8698089918
+UniRef50_D8M8V8: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_6|g__Clostridium.s__Clostridium_beijerinckii	1.8698089918
+UniRef50_UPI00041BE873: glutamine synthetase	1.8697812262
+UniRef50_UPI00041BE873: glutamine synthetase|unclassified	1.8697812262
+UniRef50_G8AU12	1.8697768388
+UniRef50_G8AU12|unclassified	1.8697768388
+UniRef50_A0A023RSC8: Diaminohydroxyphosphoribosylaminopyrimidine deaminase	1.8696064857
+UniRef50_A0A023RSC8: Diaminohydroxyphosphoribosylaminopyrimidine deaminase|g__Acinetobacter.s__Acinetobacter_baumannii	1.8696064857
+UniRef50_E4RBH8: FolC	1.8695499927
+UniRef50_E4RBH8: FolC|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8695499927
+UniRef50_UPI0002557E64: C4-dicarboxylate transport transcriptional regulatory protein DctD, partial	1.8691588785
+UniRef50_UPI0002557E64: C4-dicarboxylate transport transcriptional regulatory protein DctD, partial|unclassified	1.8691588785
+UniRef50_B0V636: tRNA 5-methylaminomethyl-2-thiouridine biosynthesis bifunctional protein MnmC	1.8685547862
+UniRef50_B0V636: tRNA 5-methylaminomethyl-2-thiouridine biosynthesis bifunctional protein MnmC|g__Acinetobacter.s__Acinetobacter_baumannii	1.8685547862
+UniRef50_B8CN82: Membrane protein, putative	1.8677800100
+UniRef50_B8CN82: Membrane protein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8677800100
+UniRef50_P50923: Fructose-bisphosphate aldolase 2 (Fragment)	1.8669909263
+UniRef50_P50923: Fructose-bisphosphate aldolase 2 (Fragment)|unclassified	1.8669909263
+UniRef50_H5G9U8	1.8666860813
+UniRef50_H5G9U8|unclassified	1.8666860813
+UniRef50_B5ZPH5	1.8661300114
+UniRef50_B5ZPH5|unclassified	1.8661300114
+UniRef50_R9D6I8	1.8659259216
+UniRef50_R9D6I8|unclassified	1.8659259216
+UniRef50_UPI000348926B: hypothetical protein	1.8657520860
+UniRef50_UPI000348926B: hypothetical protein|unclassified	1.8657520860
+UniRef50_F5M404: 2'-5' RNA ligase	1.8656716418
+UniRef50_F5M404: 2'-5' RNA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.8656716418
+UniRef50_Q9RWU7: Purine/pyrimidine phosphoribosyltransferase-related protein	1.8656716418
+UniRef50_Q9RWU7: Purine/pyrimidine phosphoribosyltransferase-related protein|g__Deinococcus.s__Deinococcus_radiodurans	1.8656716418
+UniRef50_UPI00046FEBC7: hypothetical protein, partial	1.8651307348
+UniRef50_UPI00046FEBC7: hypothetical protein, partial|unclassified	1.8651307348
+UniRef50_UPI0004702F9D: hypothetical protein, partial	1.8650149254
+UniRef50_UPI0004702F9D: hypothetical protein, partial|unclassified	1.8650149254
+UniRef50_F3U4T8: Aldehyde dehydrogenase EutE	1.8646209859
+UniRef50_F3U4T8: Aldehyde dehydrogenase EutE|g__Propionibacterium.s__Propionibacterium_acnes	1.1574074074
+UniRef50_F3U4T8: Aldehyde dehydrogenase EutE|g__Clostridium.s__Clostridium_beijerinckii	0.7072135785
+UniRef50_A6M169: Transmembrane protein	1.8639789749
+UniRef50_A6M169: Transmembrane protein|g__Clostridium.s__Clostridium_beijerinckii	1.8639789749
+UniRef50_F0RMF0: Aminomethyltransferase	1.8637732930
+UniRef50_F0RMF0: Aminomethyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	1.8637732930
+UniRef50_UPI0002558297: phosphotransferase system, HPr, partial	1.8632026091
+UniRef50_UPI0002558297: phosphotransferase system, HPr, partial|unclassified	1.8632026091
+UniRef50_UPI000237970F: flagellar hook protein FlgE, partial	1.8628442072
+UniRef50_UPI000237970F: flagellar hook protein FlgE, partial|unclassified	1.8628442072
+UniRef50_A1B8N0	1.8621973929
+UniRef50_A1B8N0|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.8621973929
+UniRef50_A4WR48	1.8621973929
+UniRef50_A4WR48|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.8621973929
+UniRef50_A5WFS0: NADPH-dependent FMN reductase	1.8621973929
+UniRef50_A5WFS0: NADPH-dependent FMN reductase|g__Acinetobacter.s__Acinetobacter_baumannii	1.8621973929
+UniRef50_Q9RRU7: Lipoprotein signal peptidase	1.8621973929
+UniRef50_Q9RRU7: Lipoprotein signal peptidase|unclassified	1.8621973929
+UniRef50_U2J8V1	1.8621973929
+UniRef50_U2J8V1|unclassified	1.8621973929
+UniRef50_U5MRU9	1.8621973929
+UniRef50_U5MRU9|g__Clostridium.s__Clostridium_beijerinckii	1.8621973929
+UniRef50_Q4ZUG2: Phenylalanine--tRNA ligase beta subunit	1.8620931079
+UniRef50_Q4ZUG2: Phenylalanine--tRNA ligase beta subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8620931079
+UniRef50_A0A023SKR1	1.8619913950
+UniRef50_A0A023SKR1|unclassified	1.8619913950
+UniRef50_A6LVF8: Signal transduction histidine kinase, LytS	1.8619322963
+UniRef50_A6LVF8: Signal transduction histidine kinase, LytS|g__Clostridium.s__Clostridium_beijerinckii	1.8619322963
+UniRef50_R6Q2D0: Iron-only hydrogenase maturation protein HydF	1.8618492359
+UniRef50_R6Q2D0: Iron-only hydrogenase maturation protein HydF|g__Clostridium.s__Clostridium_beijerinckii	1.8618492359
+UniRef50_W8YU17	1.8617642252
+UniRef50_W8YU17|unclassified	1.8617642252
+UniRef50_A0A023V3P0	1.8617291078
+UniRef50_A0A023V3P0|unclassified	1.8617291078
+UniRef50_U5MPM6: Anti-sigma factor N-terminus	1.8614494256
+UniRef50_U5MPM6: Anti-sigma factor N-terminus|g__Clostridium.s__Clostridium_beijerinckii	1.8614494256
+UniRef50_Q9RXH9: Lipase, putative	1.8612998467
+UniRef50_Q9RXH9: Lipase, putative|g__Deinococcus.s__Deinococcus_radiodurans	1.8612998467
+UniRef50_I0EIM7: Fucosyltransferase	1.8610629137
+UniRef50_I0EIM7: Fucosyltransferase|g__Helicobacter.s__Helicobacter_pylori	1.8610629137
+UniRef50_Q9RW70: Glucose-fructose oxidoreductase	1.8603615371
+UniRef50_Q9RW70: Glucose-fructose oxidoreductase|g__Deinococcus.s__Deinococcus_radiodurans	1.8603615371
+UniRef50_Q8K9C8: GTP-binding protein TypA/BipA homolog	1.8600656592
+UniRef50_Q8K9C8: GTP-binding protein TypA/BipA homolog|g__Clostridium.s__Clostridium_beijerinckii	1.1053486781
+UniRef50_Q8K9C8: GTP-binding protein TypA/BipA homolog|g__Neisseria.s__Neisseria_meningitidis	0.7547169811
+UniRef50_A8LS46	1.8599051907
+UniRef50_A8LS46|unclassified	1.8599051907
+UniRef50_H8W492	1.8597248952
+UniRef50_H8W492|unclassified	1.8597248952
+UniRef50_UPI000467903E: hypothetical protein	1.8593195251
+UniRef50_UPI000467903E: hypothetical protein|unclassified	1.8593195251
+UniRef50_Q9I3D2: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex	1.8591964769
+UniRef50_Q9I3D2: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7361424947
+UniRef50_Q9I3D2: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|unclassified	0.1230539821
+UniRef50_A0A058ZKH3: HupH hydrogenase expression protein	1.8587738319
+UniRef50_A0A058ZKH3: HupH hydrogenase expression protein|unclassified	1.8587738319
+UniRef50_A0RKD1: Possible membrane protein	1.8587360595
+UniRef50_A0RKD1: Possible membrane protein|g__Clostridium.s__Clostridium_beijerinckii	1.8587360595
+UniRef50_A6LQD1: Transcriptional regulator	1.8587360595
+UniRef50_A6LQD1: Transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	1.8587360595
+UniRef50_A6M115: Metal dependent phosphohydrolase	1.8587360595
+UniRef50_A6M115: Metal dependent phosphohydrolase|g__Clostridium.s__Clostridium_beijerinckii	1.8587360595
+UniRef50_E3A6S8	1.8587360595
+UniRef50_E3A6S8|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8587360595
+UniRef50_Q160S0	1.8587360595
+UniRef50_Q160S0|unclassified	1.8587360595
+UniRef50_R6X3C2	1.8587360595
+UniRef50_R6X3C2|unclassified	1.8587360595
+UniRef50_UPI00037372E4: hypothetical protein	1.8587360595
+UniRef50_UPI00037372E4: hypothetical protein|unclassified	1.8587360595
+UniRef50_Q0C2R3	1.8583733977
+UniRef50_Q0C2R3|unclassified	1.8583733977
+UniRef50_P56176: Bifunctional NAD(P)H-hydrate repair enzyme Nnr	1.8575262357
+UniRef50_P56176: Bifunctional NAD(P)H-hydrate repair enzyme Nnr|g__Helicobacter.s__Helicobacter_pylori	1.8575262357
+UniRef50_F2JM58: Transcriptional regulator, PucR family	1.8571752390
+UniRef50_F2JM58: Transcriptional regulator, PucR family|g__Clostridium.s__Clostridium_beijerinckii	1.8571752390
+UniRef50_UPI00037CF366: hypothetical protein, partial	1.8570102136
+UniRef50_UPI00037CF366: hypothetical protein, partial|unclassified	1.8570102136
+UniRef50_X5RU17	1.8569849021
+UniRef50_X5RU17|unclassified	1.8569849021
+UniRef50_UPI000367D417: hypothetical protein	1.8566717519
+UniRef50_UPI000367D417: hypothetical protein|unclassified	1.8566717519
+UniRef50_E1W4Y6	1.8561739015
+UniRef50_E1W4Y6|unclassified	1.8561739015
+UniRef50_U8A527	1.8554580516
+UniRef50_U8A527|unclassified	1.8554580516
+UniRef50_Q6D201: Sulfate/thiosulfate import ATP-binding protein CysA	1.8553524637
+UniRef50_Q6D201: Sulfate/thiosulfate import ATP-binding protein CysA|unclassified	1.8553524637
+UniRef50_A6LWL7: Glycosyl transferase, family 2	1.8552894617
+UniRef50_A6LWL7: Glycosyl transferase, family 2|g__Clostridium.s__Clostridium_beijerinckii	1.8552894617
+UniRef50_Q6GEZ8: Potassium-transporting ATPase C chain	1.8552875696
+UniRef50_Q6GEZ8: Potassium-transporting ATPase C chain|unclassified	1.8552875696
+UniRef50_B4FC57	1.8552875696
+UniRef50_B4FC57|unclassified	1.8552875696
+UniRef50_I1P5E8	1.8552875696
+UniRef50_I1P5E8|unclassified	1.8552875696
+UniRef50_I4CQS2: Beta-ketoadipate enol-lactone hydrolase	1.8552875696
+UniRef50_I4CQS2: Beta-ketoadipate enol-lactone hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8552875696
+UniRef50_Q1J230: TatD-related deoxyribonuclease	1.8552875696
+UniRef50_Q1J230: TatD-related deoxyribonuclease|g__Deinococcus.s__Deinococcus_radiodurans	1.8552875696
+UniRef50_R5X6Z2	1.8552875696
+UniRef50_R5X6Z2|g__Clostridium.s__Clostridium_beijerinckii	1.8552875696
+UniRef50_W8T306	1.8552875696
+UniRef50_W8T306|g__Escherichia.s__Escherichia_coli	1.8552875696
+UniRef50_A3KA49	1.8546796759
+UniRef50_A3KA49|unclassified	1.8546796759
+UniRef50_G7MCP1: Multi-sensor signal transduction histidine kinase	1.8543950924
+UniRef50_G7MCP1: Multi-sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	1.8543950924
+UniRef50_K5J8E6: Regulator of RNA terminal phosphate cyclase family protein	1.8541926617
+UniRef50_K5J8E6: Regulator of RNA terminal phosphate cyclase family protein|unclassified	1.8541926617
+UniRef50_UPI00037ACEC3: hypothetical protein	1.8539538785
+UniRef50_UPI00037ACEC3: hypothetical protein|unclassified	1.8539538785
+UniRef50_D7GDI2: Glycogen debranching enzyme GlgX Isoamylase	1.8537450345
+UniRef50_D7GDI2: Glycogen debranching enzyme GlgX Isoamylase|g__Propionibacterium.s__Propionibacterium_acnes	1.8537450345
+UniRef50_X8DN89: Putative transposase	1.8537204676
+UniRef50_X8DN89: Putative transposase|unclassified	1.8537204676
+UniRef50_Q9JSZ8: UDP-N-acetylmuramate--L-alanine ligase	1.8534951196
+UniRef50_Q9JSZ8: UDP-N-acetylmuramate--L-alanine ligase|g__Neisseria.s__Neisseria_meningitidis	1.7872918524
+UniRef50_Q9JSZ8: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.0662032673
+UniRef50_E3A272: Pilin biosynthetic protein	1.8529062871
+UniRef50_E3A272: Pilin biosynthetic protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8529062871
+UniRef50_Q28MD3: Adenine phosphoribosyltransferase	1.8526730424
+UniRef50_Q28MD3: Adenine phosphoribosyltransferase|unclassified	1.8526730424
+UniRef50_W1B2S7: ABC transporter, ATP-binding protein	1.8526219682
+UniRef50_W1B2S7: ABC transporter, ATP-binding protein|g__Escherichia.s__Escherichia_coli	1.8526219682
+UniRef50_Q0KDL6: Alcohol dehydrogenase	1.8524283988
+UniRef50_Q0KDL6: Alcohol dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5455950541
+UniRef50_Q0KDL6: Alcohol dehydrogenase|unclassified	0.3068333447
+UniRef50_K6Y8F3	1.8522284906
+UniRef50_K6Y8F3|unclassified	1.8522284906
+UniRef50_Q9A210	1.8520206057
+UniRef50_Q9A210|unclassified	1.8520206057
+UniRef50_C3DX25	1.8520083500
+UniRef50_C3DX25|unclassified	1.8520083500
+UniRef50_UPI000472F1A4: AsnC family transcriptional regulator, partial	1.8519123976
+UniRef50_UPI000472F1A4: AsnC family transcriptional regulator, partial|unclassified	1.8519123976
+UniRef50_L0WM00: NAD+ synthetase	1.8518815595
+UniRef50_L0WM00: NAD+ synthetase|g__Acinetobacter.s__Acinetobacter_baumannii	1.8518815595
+UniRef50_A4XRT9	1.8518518519
+UniRef50_A4XRT9|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8518518519
+UniRef50_B0VSH7: Outer-membrane lipoproteins carrier protein	1.8518518519
+UniRef50_B0VSH7: Outer-membrane lipoproteins carrier protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.8518518519
+UniRef50_E3YS83: LysR family transcriptional regulator (Fragment)	1.8518518519
+UniRef50_E3YS83: LysR family transcriptional regulator (Fragment)|unclassified	1.8518518519
+UniRef50_E8UEX4: Tricarboxylate transport protein TctC	1.8518518519
+UniRef50_E8UEX4: Tricarboxylate transport protein TctC|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8518518519
+UniRef50_G2UHU1	1.8518518519
+UniRef50_G2UHU1|unclassified	1.8518518519
+UniRef50_Q6A5N5: Undecaprenyl-diphosphatase	1.8518518519
+UniRef50_Q6A5N5: Undecaprenyl-diphosphatase|g__Propionibacterium.s__Propionibacterium_acnes	1.8518518519
+UniRef50_UPI0003B69687: TetR family transcriptional regulator	1.8518518519
+UniRef50_UPI0003B69687: TetR family transcriptional regulator|unclassified	1.8518518519
+UniRef50_UPI00047BAD43: hypothetical protein	1.8518242438
+UniRef50_UPI00047BAD43: hypothetical protein|unclassified	1.8518242438
+UniRef50_A0Q0N0: 5-methyltetrahydrofolate--homocysteine methyltransferase, putative	1.8517428696
+UniRef50_A0Q0N0: 5-methyltetrahydrofolate--homocysteine methyltransferase, putative|g__Clostridium.s__Clostridium_beijerinckii	1.8517428696
+UniRef50_E7TEE2: Osmoprotectant ABC transporter permease protein YehY	1.8517174678
+UniRef50_E7TEE2: Osmoprotectant ABC transporter permease protein YehY|unclassified	1.8517174678
+UniRef50_B4RR70: Acyl-CoA dehydrogenase, C-terminal	1.8514447906
+UniRef50_B4RR70: Acyl-CoA dehydrogenase, C-terminal|unclassified	1.8514447906
+UniRef50_Q6BA79	1.8514322809
+UniRef50_Q6BA79|unclassified	1.8514322809
+UniRef50_A0A031JAP0: Plasmid stabilization system	1.8509784332
+UniRef50_A0A031JAP0: Plasmid stabilization system|unclassified	1.8509784332
+UniRef50_UPI00037E9D58: hypothetical protein	1.8505860629
+UniRef50_UPI00037E9D58: hypothetical protein|unclassified	1.8505860629
+UniRef50_X4QTL9	1.8505371372
+UniRef50_X4QTL9|unclassified	1.8505371372
+UniRef50_A6U6I4: FAD-dependent pyridine nucleotide-disulphide oxidoreductase	1.8502001688
+UniRef50_A6U6I4: FAD-dependent pyridine nucleotide-disulphide oxidoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.8502001688
+UniRef50_R6XPV2	1.8501596975
+UniRef50_R6XPV2|unclassified	1.8501596975
+UniRef50_Q9RXC5	1.8499234798
+UniRef50_Q9RXC5|g__Deinococcus.s__Deinococcus_radiodurans	1.8499234798
+UniRef50_C1N027: Predicted protein	1.8499148601
+UniRef50_C1N027: Predicted protein|unclassified	1.8499148601
+UniRef50_V7ZBK5: ABC transporter sugar-binding protein	1.8493669338
+UniRef50_V7ZBK5: ABC transporter sugar-binding protein|unclassified	1.8493669338
+UniRef50_UPI00025577F3: hydrogenase nickel insertion protein HypA	1.8493664857
+UniRef50_UPI00025577F3: hydrogenase nickel insertion protein HypA|unclassified	1.8493664857
+UniRef50_UPI00036DBC6E: hypothetical protein	1.8493663045
+UniRef50_UPI00036DBC6E: hypothetical protein|unclassified	1.8493663045
+UniRef50_F9EHV6: Integral membrane transport protein	1.8493309130
+UniRef50_F9EHV6: Integral membrane transport protein|unclassified	1.8493309130
+UniRef50_UPI000444A68E: hypothetical protein STEHIDRAFT_65793	1.8491914498
+UniRef50_UPI000444A68E: hypothetical protein STEHIDRAFT_65793|unclassified	1.8491914498
+UniRef50_UPI0004636ECE: hypothetical protein	1.8489578882
+UniRef50_UPI0004636ECE: hypothetical protein|unclassified	1.8489578882
+UniRef50_A6VDF4	1.8489002406
+UniRef50_A6VDF4|unclassified	1.8489002406
+UniRef50_H2JC94: Drug resistance transporter, EmrB/QacA subfamily	1.8488566124
+UniRef50_H2JC94: Drug resistance transporter, EmrB/QacA subfamily|g__Clostridium.s__Clostridium_beijerinckii	1.8488566124
+UniRef50_I3UM32	1.8488107708
+UniRef50_I3UM32|unclassified	1.8488107708
+UniRef50_V2IBC1: Cytochrome c biogenesis protein CcmA (Fragment)	1.8487915712
+UniRef50_V2IBC1: Cytochrome c biogenesis protein CcmA (Fragment)|unclassified	1.8487915712
+UniRef50_A5KZA1	1.8487787852
+UniRef50_A5KZA1|unclassified	1.8487787852
+UniRef50_B9L9J4	1.8484288355
+UniRef50_B9L9J4|g__Helicobacter.s__Helicobacter_pylori	1.8484288355
+UniRef50_F2MXH3: Hydrolase	1.8484288355
+UniRef50_F2MXH3: Hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8484288355
+UniRef50_I0EQF7	1.8484288355
+UniRef50_I0EQF7|g__Helicobacter.s__Helicobacter_pylori	1.8484288355
+UniRef50_K0JMF7	1.8484288355
+UniRef50_K0JMF7|g__Streptococcus.s__Streptococcus_agalactiae	1.8484288355
+UniRef50_Q9RRQ3: Methionyl-tRNA formyltransferase	1.8484288355
+UniRef50_Q9RRQ3: Methionyl-tRNA formyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	1.8484288355
+UniRef50_S5CUQ4: Folate-dependent phosphoribosylglycinamide formyltransferase PurN	1.8484288355
+UniRef50_S5CUQ4: Folate-dependent phosphoribosylglycinamide formyltransferase PurN|g__Acinetobacter.s__Acinetobacter_baumannii	1.8484288355
+UniRef50_U5MLL1: 3-methylornithine synthase PylB	1.8484288355
+UniRef50_U5MLL1: 3-methylornithine synthase PylB|g__Clostridium.s__Clostridium_beijerinckii	1.8484288355
+UniRef50_UPI00035E9F31: 50S ribosomal protein L10	1.8484288355
+UniRef50_UPI00035E9F31: 50S ribosomal protein L10|unclassified	1.8484288355
+UniRef50_W0D858	1.8479276231
+UniRef50_W0D858|unclassified	1.8479276231
+UniRef50_Q53CQ0: JM170	1.8476987978
+UniRef50_Q53CQ0: JM170|unclassified	1.8476987978
+UniRef50_UPI000288C078: aminotransferase	1.8475379081
+UniRef50_UPI000288C078: aminotransferase|unclassified	1.8475379081
+UniRef50_F0K6G2: Integral membrane protein	1.8474740409
+UniRef50_F0K6G2: Integral membrane protein|g__Clostridium.s__Clostridium_beijerinckii	1.8474740409
+UniRef50_A6V6R4	1.8473383985
+UniRef50_A6V6R4|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7777083422
+UniRef50_A6V6R4|unclassified	0.0696300563
+UniRef50_P18655: Superoxide dismutase [Fe]	1.8471510401
+UniRef50_P18655: Superoxide dismutase [Fe]|g__Neisseria.s__Neisseria_meningitidis	1.7152658662
+UniRef50_P18655: Superoxide dismutase [Fe]|unclassified	0.1318851739
+UniRef50_Q1QKG7	1.8470043220
+UniRef50_Q1QKG7|unclassified	1.8470043220
+UniRef50_C1D6E7	1.8466912187
+UniRef50_C1D6E7|unclassified	1.8466912187
+UniRef50_U7GB94	1.8464331630
+UniRef50_U7GB94|unclassified	1.8464331630
+UniRef50_W0YL35: Putative serine phosphatase	1.8463412708
+UniRef50_W0YL35: Putative serine phosphatase|unclassified	1.8463412708
+UniRef50_A6M1E5: Transposase, IS4 family protein	1.8462476954
+UniRef50_A6M1E5: Transposase, IS4 family protein|g__Clostridium.s__Clostridium_beijerinckii	1.8462476954
+UniRef50_B8DEF0	1.8462132134
+UniRef50_B8DEF0|unclassified	1.8462132134
+UniRef50_H3XAL5	1.8455065448
+UniRef50_H3XAL5|unclassified	1.8455065448
+UniRef50_E8JNG4	1.8453788245
+UniRef50_E8JNG4|unclassified	1.8453788245
+UniRef50_R8I8C2	1.8453403983
+UniRef50_R8I8C2|unclassified	1.8453403983
+UniRef50_A4WUV2: ErfK/YbiS/YcfS/YnhG family protein	1.8450184502
+UniRef50_A4WUV2: ErfK/YbiS/YcfS/YnhG family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.8450184502
+UniRef50_A6LQI1: Peptidase M23B	1.8450184502
+UniRef50_A6LQI1: Peptidase M23B|g__Clostridium.s__Clostridium_beijerinckii	1.8450184502
+UniRef50_D3PKE0: PepSY-associated TM helix domain protein	1.8450184502
+UniRef50_D3PKE0: PepSY-associated TM helix domain protein|g__Deinococcus.s__Deinococcus_radiodurans	1.8450184502
+UniRef50_D8GQL0	1.8450184502
+UniRef50_D8GQL0|g__Clostridium.s__Clostridium_beijerinckii	1.8450184502
+UniRef50_F5WFQ6: B domain protein	1.8450184502
+UniRef50_F5WFQ6: B domain protein|g__Staphylococcus.s__Staphylococcus_aureus	1.8450184502
+UniRef50_N1MH33	1.8450184502
+UniRef50_N1MH33|unclassified	1.8450184502
+UniRef50_T2KAI1	1.8450184502
+UniRef50_T2KAI1|g__Escherichia.s__Escherichia_coli	1.8450184502
+UniRef50_L8P6V5: Putative Non-ribosomal peptide synthetase	1.8448977584
+UniRef50_L8P6V5: Putative Non-ribosomal peptide synthetase|unclassified	1.8448977584
+UniRef50_F0YGY7	1.8447481799
+UniRef50_F0YGY7|unclassified	1.8447481799
+UniRef50_I2SNT7	1.8444270521
+UniRef50_I2SNT7|unclassified	1.8444270521
+UniRef50_UPI00035CDE03: hypothetical protein	1.8440303868
+UniRef50_UPI00035CDE03: hypothetical protein|unclassified	1.8440303868
+UniRef50_W1MN24	1.8433412043
+UniRef50_W1MN24|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8433412043
+UniRef50_M4MLZ6	1.8432012093
+UniRef50_M4MLZ6|unclassified	1.8432012093
+UniRef50_S9RX05: Enoyl-[acyl-carrier-protein] reductase (NADH)	1.8431553784
+UniRef50_S9RX05: Enoyl-[acyl-carrier-protein] reductase (NADH)|unclassified	1.8431553784
+UniRef50_UPI00041A7C16: hypothetical protein	1.8427973565
+UniRef50_UPI00041A7C16: hypothetical protein|unclassified	1.8427973565
+UniRef50_UPI000262B86E: response regulator receiver protein	1.8427169245
+UniRef50_UPI000262B86E: response regulator receiver protein|unclassified	1.8427169245
+UniRef50_O22711: Peroxiredoxin-2D	1.8424753708
+UniRef50_O22711: Peroxiredoxin-2D|unclassified	1.8424753708
+UniRef50_G2AUL8	1.8421483354
+UniRef50_G2AUL8|g__Escherichia.s__Escherichia_coli	1.8421483354
+UniRef50_B7H202: Peptidase M16C associated family protein	1.8420894141
+UniRef50_B7H202: Peptidase M16C associated family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.8420894141
+UniRef50_I0ENV0: Outer membrane protein HofB	1.8420239941
+UniRef50_I0ENV0: Outer membrane protein HofB|g__Helicobacter.s__Helicobacter_pylori	1.8420239941
+UniRef50_G7R843	1.8419490608
+UniRef50_G7R843|unclassified	1.8419490608
+UniRef50_W8RUY9: Carbonic anhydrase, family 3	1.8417171052
+UniRef50_W8RUY9: Carbonic anhydrase, family 3|unclassified	1.8417171052
+UniRef50_E5TF09	1.8416206262
+UniRef50_E5TF09|g__Staphylococcus.s__Staphylococcus_aureus	1.8416206262
+UniRef50_Q6A7E9: ATP-dependent Clp protease proteolytic subunit 2	1.8416206262
+UniRef50_Q6A7E9: ATP-dependent Clp protease proteolytic subunit 2|g__Propionibacterium.s__Propionibacterium_acnes	1.8416206262
+UniRef50_Q898F3: DNA-binding protein iolR	1.8416206262
+UniRef50_Q898F3: DNA-binding protein iolR|g__Clostridium.s__Clostridium_beijerinckii	1.8416206262
+UniRef50_X6GT76	1.8414778732
+UniRef50_X6GT76|unclassified	1.8414778732
+UniRef50_UPI00038C076E: PREDICTED: serine/arginine repetitive matrix protein 1-like, partial	1.8414573137
+UniRef50_UPI00038C076E: PREDICTED: serine/arginine repetitive matrix protein 1-like, partial|unclassified	1.8414573137
+UniRef50_J9YQ10: Thiolase	1.8408608418
+UniRef50_J9YQ10: Thiolase|g__Streptococcus.s__Streptococcus_agalactiae	1.8408608418
+UniRef50_A6UZ12	1.8400449389
+UniRef50_A6UZ12|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9652509653
+UniRef50_A6UZ12|unclassified	0.8747939737
+UniRef50_UPI0002FE9685: transcriptional regulator	1.8396906299
+UniRef50_UPI0002FE9685: transcriptional regulator|unclassified	1.8396906299
+UniRef50_Q16AA8	1.8395881390
+UniRef50_Q16AA8|unclassified	1.8395881390
+UniRef50_B4RKT2	1.8382352941
+UniRef50_B4RKT2|g__Neisseria.s__Neisseria_meningitidis	1.8382352941
+UniRef50_I4AI93	1.8382352941
+UniRef50_I4AI93|g__Acinetobacter.s__Acinetobacter_baumannii	1.8382352941
+UniRef50_M7PBX7: Transferase	1.8382352941
+UniRef50_M7PBX7: Transferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.8382352941
+UniRef50_V9W180: Transposase	1.8382352941
+UniRef50_V9W180: Transposase|g__Acinetobacter.s__Acinetobacter_baumannii	1.8382352941
+UniRef50_R9ZPE1	1.8380372424
+UniRef50_R9ZPE1|unclassified	1.8380372424
+UniRef50_UPI00031E60AD: tail fiber protein	1.8375990672
+UniRef50_UPI00031E60AD: tail fiber protein|unclassified	1.8375990672
+UniRef50_Q62EE6	1.8372278159
+UniRef50_Q62EE6|unclassified	1.8372278159
+UniRef50_UPI0003B62A8A: hypothetical protein	1.8371222968
+UniRef50_UPI0003B62A8A: hypothetical protein|unclassified	1.8371222968
+UniRef50_UPI00047B85B2: hypothetical protein, partial	1.8369166090
+UniRef50_UPI00047B85B2: hypothetical protein, partial|unclassified	1.8369166090
+UniRef50_A6M167	1.8365649304
+UniRef50_A6M167|g__Clostridium.s__Clostridium_beijerinckii	1.8365649304
+UniRef50_X1DB00: Marine sediment metagenome DNA, contig: S01H4_S16666 (Fragment)	1.8362848459
+UniRef50_X1DB00: Marine sediment metagenome DNA, contig: S01H4_S16666 (Fragment)|unclassified	1.8362848459
+UniRef50_F9YXR7	1.8357048382
+UniRef50_F9YXR7|g__Propionibacterium.s__Propionibacterium_acnes	1.8357048382
+UniRef50_M9R8U0	1.8353614648
+UniRef50_M9R8U0|unclassified	1.8353614648
+UniRef50_UPI0003610FAC: hypothetical protein, partial	1.8348740968
+UniRef50_UPI0003610FAC: hypothetical protein, partial|g__Methanobrevibacter.s__Methanobrevibacter_smithii	1.3646698949
+UniRef50_UPI0003610FAC: hypothetical protein, partial|unclassified	0.4702042019
+UniRef50_F9YWL9	1.8348623853
+UniRef50_F9YWL9|g__Propionibacterium.s__Propionibacterium_acnes	1.8348623853
+UniRef50_Q1IXV7: UDP-N-acetylenolpyruvoylglucosamine reductase	1.8348623853
+UniRef50_Q1IXV7: UDP-N-acetylenolpyruvoylglucosamine reductase|g__Deinococcus.s__Deinococcus_radiodurans	1.8348623853
+UniRef50_A4VN48: Lipoprotein, putative	1.8347612556
+UniRef50_A4VN48: Lipoprotein, putative|unclassified	1.8347612556
+UniRef50_D9WJL5	1.8342583479
+UniRef50_D9WJL5|unclassified	1.8342583479
+UniRef50_UPI000476ECF5: hypothetical protein	1.8341812625
+UniRef50_UPI000476ECF5: hypothetical protein|unclassified	1.8341812625
+UniRef50_C6UUG6	1.8341163948
+UniRef50_C6UUG6|unclassified	1.8341163948
+UniRef50_D5AP78: Demethylspheroidene O-methyltransferase	1.8341078466
+UniRef50_D5AP78: Demethylspheroidene O-methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.8341078466
+UniRef50_Z9ATD6	1.8339629801
+UniRef50_Z9ATD6|unclassified	1.8339629801
+UniRef50_UPI0003EE7A41: hypothetical protein	1.8338066915
+UniRef50_UPI0003EE7A41: hypothetical protein|unclassified	1.8338066915
+UniRef50_A7C736: Cell shape determining protein	1.8333677364
+UniRef50_A7C736: Cell shape determining protein|unclassified	1.8333677364
+UniRef50_Q6A824	1.8332716047
+UniRef50_Q6A824|unclassified	1.8332716047
+UniRef50_E6MVK2	1.8331821084
+UniRef50_E6MVK2|g__Neisseria.s__Neisseria_meningitidis	1.8331821084
+UniRef50_G7U923: Copper-exporting ATPase	1.8326971395
+UniRef50_G7U923: Copper-exporting ATPase|g__Propionibacterium.s__Propionibacterium_acnes	1.8326971395
+UniRef50_K5NMC7: Chaperone-usher secretion system usher protein	1.8326193746
+UniRef50_K5NMC7: Chaperone-usher secretion system usher protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.8326193746
+UniRef50_T2WDF3: Excinuclease ABC subunit A domain protein	1.8325075904
+UniRef50_T2WDF3: Excinuclease ABC subunit A domain protein|unclassified	1.8325075904
+UniRef50_Q9RYB1	1.8322008675
+UniRef50_Q9RYB1|g__Deinococcus.s__Deinococcus_radiodurans	1.8322008675
+UniRef50_UPI0001D36E44	1.8320281378
+UniRef50_UPI0001D36E44|unclassified	1.8320281378
+UniRef50_Q883F3: Urease subunit gamma/beta	1.8320098991
+UniRef50_Q883F3: Urease subunit gamma/beta|g__Deinococcus.s__Deinococcus_radiodurans	1.4619883041
+UniRef50_Q883F3: Urease subunit gamma/beta|unclassified	0.3700215950
+UniRef50_L1KLU3	1.8317085686
+UniRef50_L1KLU3|unclassified	1.8317085686
+UniRef50_U7P1A4: Tail fiber protein	1.8316989243
+UniRef50_U7P1A4: Tail fiber protein|unclassified	1.8316989243
+UniRef50_Q8EED7: Phosphomethylpyrimidine synthase	1.8315420564
+UniRef50_Q8EED7: Phosphomethylpyrimidine synthase|g__Neisseria.s__Neisseria_meningitidis	1.8104389927
+UniRef50_Q8EED7: Phosphomethylpyrimidine synthase|unclassified	0.0211030637
+UniRef50_A6LWA6: Transcriptional regulator, TetR family	1.8315018315
+UniRef50_A6LWA6: Transcriptional regulator, TetR family|g__Clostridium.s__Clostridium_beijerinckii	1.8315018315
+UniRef50_B8HEC3: Transketolase central region	1.8315018315
+UniRef50_B8HEC3: Transketolase central region|g__Propionibacterium.s__Propionibacterium_acnes	1.8315018315
+UniRef50_J7IUM0: Response regulator containing a CheY-like receiver domain and an HTH DNA-binding domain	1.8315018315
+UniRef50_J7IUM0: Response regulator containing a CheY-like receiver domain and an HTH DNA-binding domain|g__Clostridium.s__Clostridium_beijerinckii	1.8315018315
+UniRef50_Q96MM2: cDNA FLJ32165 fis, clone PLACE6000424	1.8315018315
+UniRef50_Q96MM2: cDNA FLJ32165 fis, clone PLACE6000424|unclassified	1.8315018315
+UniRef50_UPI0003EAF15C: PREDICTED: small nuclear ribonucleoprotein-associated protein B''''-like	1.8315018315
+UniRef50_UPI0003EAF15C: PREDICTED: small nuclear ribonucleoprotein-associated protein B''''-like|unclassified	1.8315018315
+UniRef50_Q0FGF7: Fe-S metabolism associated family protein	1.8314855575
+UniRef50_Q0FGF7: Fe-S metabolism associated family protein|unclassified	1.8314855575
+UniRef50_M1P9T3	1.8309992106
+UniRef50_M1P9T3|unclassified	1.8309992106
+UniRef50_A0A011P103	1.8309928105
+UniRef50_A0A011P103|unclassified	1.8309928105
+UniRef50_G4B2B2: Protein YbjQ	1.8309027120
+UniRef50_G4B2B2: Protein YbjQ|unclassified	1.8309027120
+UniRef50_UPI000225C207: hypothetical protein	1.8306804593
+UniRef50_UPI000225C207: hypothetical protein|unclassified	1.8306804593
+UniRef50_Q0AKE1	1.8306542779
+UniRef50_Q0AKE1|unclassified	1.8306542779
+UniRef50_K2D4D6	1.8304956001
+UniRef50_K2D4D6|unclassified	1.8304956001
+UniRef50_Q8XMU3: Diaminopimelate decarboxylase	1.8301544424
+UniRef50_Q8XMU3: Diaminopimelate decarboxylase|g__Clostridium.s__Clostridium_beijerinckii	1.8301544424
+UniRef50_G2IJY0: Putative transposase	1.8299256319
+UniRef50_G2IJY0: Putative transposase|unclassified	1.8299256319
+UniRef50_L8DS84	1.8296439000
+UniRef50_L8DS84|unclassified	1.8296439000
+UniRef50_G2LBA7	1.8290623584
+UniRef50_G2LBA7|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8290623584
+UniRef50_A0A023RX61: Metal-binding protein	1.8281535649
+UniRef50_A0A023RX61: Metal-binding protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.8281535649
+UniRef50_A1B304: Heat shock protein DnaJ domain protein	1.8281535649
+UniRef50_A1B304: Heat shock protein DnaJ domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.8281535649
+UniRef50_E4TDW5: DNA methylase N-4/N-6 domain protein	1.8281535649
+UniRef50_E4TDW5: DNA methylase N-4/N-6 domain protein|g__Helicobacter.s__Helicobacter_pylori	1.8281535649
+UniRef50_F6AFI4: Patatin	1.8281535649
+UniRef50_F6AFI4: Patatin|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8281535649
+UniRef50_Q3IXC5: Electron transport complex subunit RnfB	1.8281535649
+UniRef50_Q3IXC5: Electron transport complex subunit RnfB|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.8281535649
+UniRef50_U5VH91: Extracellular solute-binding protein	1.8281535649
+UniRef50_U5VH91: Extracellular solute-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8281535649
+UniRef50_U7DJB4: Heme oxygenase	1.8281535649
+UniRef50_U7DJB4: Heme oxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8281535649
+UniRef50_W6LC40: Genomic scaffold, scaffold_10	1.8281535649
+UniRef50_W6LC40: Genomic scaffold, scaffold_10|unclassified	1.8281535649
+UniRef50_E2QLJ8: Transposase insG for insertion sequence element IS4	1.8280637349
+UniRef50_E2QLJ8: Transposase insG for insertion sequence element IS4|g__Escherichia.s__Escherichia_coli	1.8280637349
+UniRef50_S9QUL1	1.8279737752
+UniRef50_S9QUL1|unclassified	1.8279737752
+UniRef50_A9LZP5	1.8276795374
+UniRef50_A9LZP5|unclassified	1.8276795374
+UniRef50_UPI00047241B7: hypothetical protein	1.8273612573
+UniRef50_UPI00047241B7: hypothetical protein|unclassified	1.8273612573
+UniRef50_Q6F6W5: Two-component sensor	1.8271485165
+UniRef50_Q6F6W5: Two-component sensor|g__Acinetobacter.s__Acinetobacter_baumannii	1.8271485165
+UniRef50_K2ADQ8	1.8265317386
+UniRef50_K2ADQ8|unclassified	1.8265317386
+UniRef50_U5MQT2: Diguanylate cyclase	1.8256192824
+UniRef50_U5MQT2: Diguanylate cyclase|g__Clostridium.s__Clostridium_beijerinckii	1.8256192824
+UniRef50_UPI00005EFD3B: hypothetical protein	1.8251693504
+UniRef50_UPI00005EFD3B: hypothetical protein|unclassified	1.8251693504
+UniRef50_D3V593	1.8251457816
+UniRef50_D3V593|unclassified	1.8251457816
+UniRef50_D7UNV1	1.8249958689
+UniRef50_D7UNV1|unclassified	1.8249958689
+UniRef50_L1ITB2	1.8248714379
+UniRef50_L1ITB2|unclassified	1.8248714379
+UniRef50_Q4ZXL0: Alginate lyase	1.8248418248
+UniRef50_Q4ZXL0: Alginate lyase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8248418248
+UniRef50_B0V7L4	1.8248175182
+UniRef50_B0V7L4|g__Acinetobacter.s__Acinetobacter_baumannii	1.8248175182
+UniRef50_B2TMF1: Site-specific recombinase	1.8248175182
+UniRef50_B2TMF1: Site-specific recombinase|g__Clostridium.s__Clostridium_beijerinckii	1.8248175182
+UniRef50_G7M244: Mannosyl-glycoprotein endo-beta-N-acetylglucosamidase	1.8248175182
+UniRef50_G7M244: Mannosyl-glycoprotein endo-beta-N-acetylglucosamidase|g__Clostridium.s__Clostridium_beijerinckii	1.8248175182
+UniRef50_H8GWD9	1.8248175182
+UniRef50_H8GWD9|g__Deinococcus.s__Deinococcus_radiodurans	1.8248175182
+UniRef50_Q02LE1	1.8248175182
+UniRef50_Q02LE1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8248175182
+UniRef50_Q5XCG7: Probable dTDP-4-dehydrorhamnose 3,5-epimerase	1.8248175182
+UniRef50_Q5XCG7: Probable dTDP-4-dehydrorhamnose 3,5-epimerase|g__Streptococcus.s__Streptococcus_agalactiae	1.8248175182
+UniRef50_Q69MP9	1.8248175182
+UniRef50_Q69MP9|unclassified	1.8248175182
+UniRef50_Q9I4X6: Chaperone CupC2	1.8248175182
+UniRef50_Q9I4X6: Chaperone CupC2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8248175182
+UniRef50_W1MX56: Methionine ABC transporter ATP-binding protein	1.8248175182
+UniRef50_W1MX56: Methionine ABC transporter ATP-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8248175182
+UniRef50_X5K377: Membrane protein, putative	1.8248175182
+UniRef50_X5K377: Membrane protein, putative|g__Streptococcus.s__Streptococcus_agalactiae	1.8248175182
+UniRef50_Q8G3N6: Inosine-5'-monophosphate dehydrogenase	1.8237257552
+UniRef50_Q8G3N6: Inosine-5'-monophosphate dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	1.5399363327
+UniRef50_Q8G3N6: Inosine-5'-monophosphate dehydrogenase|unclassified	0.2837894225
+UniRef50_C6SHK2: Nitric oxide reductase	1.8233210357
+UniRef50_C6SHK2: Nitric oxide reductase|g__Neisseria.s__Neisseria_meningitidis	1.8233210357
+UniRef50_D6LUR0: Predicted protein	1.8233029104
+UniRef50_D6LUR0: Predicted protein|unclassified	1.8233029104
+UniRef50_X0QQN7: Coenzyme PQQ synthesis protein C	1.8229587980
+UniRef50_X0QQN7: Coenzyme PQQ synthesis protein C|unclassified	1.8229587980
+UniRef50_M1ZE43	1.8228297455
+UniRef50_M1ZE43|unclassified	1.8228297455
+UniRef50_D3F7I1: Cupin 2 conserved barrel domain protein	1.8222531045
+UniRef50_D3F7I1: Cupin 2 conserved barrel domain protein|unclassified	1.8222531045
+UniRef50_A6LV33: AAA ATPase	1.8221258264
+UniRef50_A6LV33: AAA ATPase|g__Clostridium.s__Clostridium_beijerinckii	1.8221258264
+UniRef50_UPI0002737491: hypothetical protein	1.8220863445
+UniRef50_UPI0002737491: hypothetical protein|unclassified	1.8220863445
+UniRef50_D1PMY9: MaoC-like protein	1.8220203942
+UniRef50_D1PMY9: MaoC-like protein|unclassified	1.8220203942
+UniRef50_W4HLY6	1.8216600843
+UniRef50_W4HLY6|unclassified	1.8216600843
+UniRef50_K2M7A1	1.8215397110
+UniRef50_K2M7A1|unclassified	1.8215397110
+UniRef50_A0A010AWY9: CSLREA domain protein	1.8214936248
+UniRef50_A0A010AWY9: CSLREA domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.8214936248
+UniRef50_A6LVW3: RelA/SpoT domain protein	1.8214936248
+UniRef50_A6LVW3: RelA/SpoT domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.8214936248
+UniRef50_D0IRH3	1.8214936248
+UniRef50_D0IRH3|g__Helicobacter.s__Helicobacter_pylori	1.8214936248
+UniRef50_F4GXS4: DNA-3-methyladenine glycosidase I	1.8214936248
+UniRef50_F4GXS4: DNA-3-methyladenine glycosidase I|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8214936248
+UniRef50_F9YXA3: Succinate dehydrogenase (Or fumarate reductase) cytochrome b subunit, b558 family	1.8214936248
+UniRef50_F9YXA3: Succinate dehydrogenase (Or fumarate reductase) cytochrome b subunit, b558 family|g__Propionibacterium.s__Propionibacterium_acnes	1.8214936248
+UniRef50_G7M6K7: Phosphoglycerate mutase	1.8214936248
+UniRef50_G7M6K7: Phosphoglycerate mutase|g__Clostridium.s__Clostridium_beijerinckii	1.8214936248
+UniRef50_Q322R9: Sulfoxide reductase heme-binding subunit YedZ	1.8214936248
+UniRef50_Q322R9: Sulfoxide reductase heme-binding subunit YedZ|g__Escherichia.s__Escherichia_coli	1.8214936248
+UniRef50_Q6AAZ9: DNA integrity scanning protein DisA	1.8214936248
+UniRef50_Q6AAZ9: DNA integrity scanning protein DisA|g__Propionibacterium.s__Propionibacterium_acnes	1.8214936248
+UniRef50_F0XFM1: Endoribonuclease l-psp	1.8212016069
+UniRef50_F0XFM1: Endoribonuclease l-psp|unclassified	1.8212016069
+UniRef50_UPI00034AC849: chemotaxis protein CheY	1.8211754345
+UniRef50_UPI00034AC849: chemotaxis protein CheY|unclassified	1.8211754345
+UniRef50_C0ZES6: LexA repressor	1.8210888943
+UniRef50_C0ZES6: LexA repressor|unclassified	1.8210888943
+UniRef50_K0T1C7	1.8202104506
+UniRef50_K0T1C7|unclassified	1.8202104506
+UniRef50_R4ZLT2: Chloride channel protein	1.8199684896
+UniRef50_R4ZLT2: Chloride channel protein|g__Streptococcus.s__Streptococcus_agalactiae	1.8199684896
+UniRef50_UPI0003760E73: hypothetical protein	1.8197894352
+UniRef50_UPI0003760E73: hypothetical protein|unclassified	1.8197894352
+UniRef50_UPI000379A93B: hypothetical protein	1.8195110623
+UniRef50_UPI000379A93B: hypothetical protein|unclassified	1.8195110623
+UniRef50_UPI00037DB710: hypothetical protein, partial	1.8194472297
+UniRef50_UPI00037DB710: hypothetical protein, partial|unclassified	1.8194472297
+UniRef50_A8AMM4	1.8191530117
+UniRef50_A8AMM4|unclassified	1.8191530117
+UniRef50_Q58094: Putative transketolase N-terminal section	1.8191048246
+UniRef50_Q58094: Putative transketolase N-terminal section|g__Clostridium.s__Clostridium_beijerinckii	1.7452006981
+UniRef50_Q58094: Putative transketolase N-terminal section|unclassified	0.0739041265
+UniRef50_F3ZY36: MATE efflux family protein	1.8190596761
+UniRef50_F3ZY36: MATE efflux family protein|g__Clostridium.s__Clostridium_beijerinckii	1.8190596761
+UniRef50_UPI0004743B0B: hypothetical protein	1.8189076255
+UniRef50_UPI0004743B0B: hypothetical protein|unclassified	1.8189076255
+UniRef50_A1V5P8: Nitrite extrusion protein	1.8185823870
+UniRef50_A1V5P8: Nitrite extrusion protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8185823870
+UniRef50_UPI00036B41DB: hypothetical protein	1.8185546412
+UniRef50_UPI00036B41DB: hypothetical protein|unclassified	1.8185546412
+UniRef50_UPI0003736A85: hypothetical protein	1.8184232142
+UniRef50_UPI0003736A85: hypothetical protein|unclassified	1.8184232142
+UniRef50_A0A031C6N4	1.8181818182
+UniRef50_A0A031C6N4|unclassified	1.8181818182
+UniRef50_A3M1W3	1.8181818182
+UniRef50_A3M1W3|g__Acinetobacter.s__Acinetobacter_baumannii	1.8181818182
+UniRef50_A3PQI5: Putative phage integrase family protein	1.8181818182
+UniRef50_A3PQI5: Putative phage integrase family protein|unclassified	1.8181818182
+UniRef50_B0V727	1.8181818182
+UniRef50_B0V727|g__Acinetobacter.s__Acinetobacter_baumannii	1.8181818182
+UniRef50_E8PCN1: FilB	1.8181818182
+UniRef50_E8PCN1: FilB|g__Acinetobacter.s__Acinetobacter_baumannii	1.8181818182
+UniRef50_K5WST6	1.8181818182
+UniRef50_K5WST6|unclassified	1.8181818182
+UniRef50_V9W0X5: Membrane protein	1.8181818182
+UniRef50_V9W0X5: Membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.8181818182
+UniRef50_F0MM24: Site-specific recombinase	1.8181250925
+UniRef50_F0MM24: Site-specific recombinase|g__Neisseria.s__Neisseria_meningitidis	1.8181250925
+UniRef50_O25046: Adenosine deaminase	1.8178793001
+UniRef50_O25046: Adenosine deaminase|g__Helicobacter.s__Helicobacter_pylori	1.8178793001
+UniRef50_UPI000303FFC3: hypothetical protein	1.8172456265
+UniRef50_UPI000303FFC3: hypothetical protein|unclassified	1.8172456265
+UniRef50_UPI00036E0818: hypothetical protein	1.8172024244
+UniRef50_UPI00036E0818: hypothetical protein|unclassified	1.8172024244
+UniRef50_X5EZC6	1.8169317405
+UniRef50_X5EZC6|unclassified	1.8169317405
+UniRef50_V6MN14	1.8166576651
+UniRef50_V6MN14|unclassified	1.8166576651
+UniRef50_S3ASG0	1.8162140914
+UniRef50_S3ASG0|unclassified	1.8162140914
+UniRef50_F8IS38: Xaa-His dipeptidase	1.8162099290
+UniRef50_F8IS38: Xaa-His dipeptidase|g__Streptococcus.s__Streptococcus_agalactiae	1.8162099290
+UniRef50_D6AF37	1.8160819774
+UniRef50_D6AF37|unclassified	1.8160819774
+UniRef50_U6ZY01	1.8158854062
+UniRef50_U6ZY01|unclassified	1.8158854062
+UniRef50_UPI00037CA30F: hypothetical protein	1.8158030564
+UniRef50_UPI00037CA30F: hypothetical protein|unclassified	1.8158030564
+UniRef50_A6LTW2	1.8157704893
+UniRef50_A6LTW2|unclassified	1.8157704893
+UniRef50_UPI0002000A30: amino acid decarboxylase, partial	1.8157031707
+UniRef50_UPI0002000A30: amino acid decarboxylase, partial|unclassified	1.8157031707
+UniRef50_M4X2Y6	1.8155837934
+UniRef50_M4X2Y6|unclassified	1.8155837934
+UniRef50_H7CVU9: FliB family protein	1.8155410312
+UniRef50_H7CVU9: FliB family protein|g__Clostridium.s__Clostridium_beijerinckii	1.8155410312
+UniRef50_F2HSU2	1.8155259448
+UniRef50_F2HSU2|unclassified	1.8155259448
+UniRef50_UPI000262970F: alpha-L-arabinofuranosidase	1.8154015396
+UniRef50_UPI000262970F: alpha-L-arabinofuranosidase|unclassified	1.8154015396
+UniRef50_Q7G4I2: Expressed protein	1.8150931656
+UniRef50_Q7G4I2: Expressed protein|unclassified	1.8150931656
+UniRef50_G8AI93	1.8148820327
+UniRef50_G8AI93|unclassified	1.8148820327
+UniRef50_W6RFV5	1.8146841215
+UniRef50_W6RFV5|unclassified	1.8146841215
+UniRef50_G7M0B3: Subtilisin	1.8144090712
+UniRef50_G7M0B3: Subtilisin|g__Clostridium.s__Clostridium_beijerinckii	1.8144090712
+UniRef50_Q16DB7	1.8141387925
+UniRef50_Q16DB7|unclassified	1.8141387925
+UniRef50_R5VGS1	1.8140167813
+UniRef50_R5VGS1|unclassified	1.8140167813
+UniRef50_Q1KL82: NnrU	1.8137266824
+UniRef50_Q1KL82: NnrU|unclassified	1.8137266824
+UniRef50_UPI0003825004: hypothetical protein	1.8128961020
+UniRef50_UPI0003825004: hypothetical protein|unclassified	1.8128961020
+UniRef50_Q9RRU0: Na+/H+ antiporter, putative	1.8124007363
+UniRef50_Q9RRU0: Na+/H+ antiporter, putative|g__Deinococcus.s__Deinococcus_radiodurans	1.8124007363
+UniRef50_UPI00020D96A7: XRE family transcriptional regulator	1.8117948563
+UniRef50_UPI00020D96A7: XRE family transcriptional regulator|unclassified	1.8117948563
+UniRef50_UPI0003B79D68: peptide ABC transporter permease	1.8117784006
+UniRef50_UPI0003B79D68: peptide ABC transporter permease|unclassified	1.8117784006
+UniRef50_A6LXJ6: Diguanylate cyclase	1.8115942029
+UniRef50_A6LXJ6: Diguanylate cyclase|g__Clostridium.s__Clostridium_beijerinckii	1.8115942029
+UniRef50_D4DVF9	1.8115942029
+UniRef50_D4DVF9|unclassified	1.8115942029
+UniRef50_F0MSR5	1.8115942029
+UniRef50_F0MSR5|g__Neisseria.s__Neisseria_meningitidis	1.8115942029
+UniRef50_F9NYD0: Cobalt transport protein	1.8115942029
+UniRef50_F9NYD0: Cobalt transport protein|g__Propionibacterium.s__Propionibacterium_acnes	1.8115942029
+UniRef50_G7U580: Pyridine nucleotide-disulfide oxidoreductase	1.8115942029
+UniRef50_G7U580: Pyridine nucleotide-disulfide oxidoreductase|g__Propionibacterium.s__Propionibacterium_acnes	1.8115942029
+UniRef50_J0Y4M7	1.8115942029
+UniRef50_J0Y4M7|g__Staphylococcus.s__Staphylococcus_aureus	1.8115942029
+UniRef50_L3WMR3	1.8115942029
+UniRef50_L3WMR3|g__Escherichia.s__Escherichia_coli	1.8115942029
+UniRef50_Q1CT84: Outer-membrane lipoprotein carrier protein	1.8115942029
+UniRef50_Q1CT84: Outer-membrane lipoprotein carrier protein|g__Helicobacter.s__Helicobacter_pylori	1.8115942029
+UniRef50_Q6A889	1.8115942029
+UniRef50_Q6A889|g__Propionibacterium.s__Propionibacterium_acnes	1.8115942029
+UniRef50_W1GU77: D-mannonate oxidoreductase	1.8115942029
+UniRef50_W1GU77: D-mannonate oxidoreductase|g__Escherichia.s__Escherichia_coli	1.8115942029
+UniRef50_Q8DJL3: Tlr1209 protein	1.8106453954
+UniRef50_Q8DJL3: Tlr1209 protein|unclassified	1.8106453954
+UniRef50_UPI0003819001: hypothetical protein	1.8099272671
+UniRef50_UPI0003819001: hypothetical protein|unclassified	1.8099272671
+UniRef50_UPI000373F66D: hypothetical protein	1.8093882405
+UniRef50_UPI000373F66D: hypothetical protein|unclassified	1.8093882405
+UniRef50_UPI0003304489: 50S ribosomal protein L21	1.8092306059
+UniRef50_UPI0003304489: 50S ribosomal protein L21|unclassified	1.8092306059
+UniRef50_P45335	1.8087277266
+UniRef50_P45335|g__Neisseria.s__Neisseria_meningitidis	1.8087277266
+UniRef50_A6V8P3	1.8085587659
+UniRef50_A6V8P3|unclassified	1.8085587659
+UniRef50_K0J7J2: Transcriptional regulator (Fragment)	1.8085129920
+UniRef50_K0J7J2: Transcriptional regulator (Fragment)|unclassified	1.8085129920
+UniRef50_C7CIU9	1.8083512718
+UniRef50_C7CIU9|unclassified	1.8083512718
+UniRef50_F0KGP8: LysR family transcriptional regulatory protein	1.8083182640
+UniRef50_F0KGP8: LysR family transcriptional regulatory protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.8083182640
+UniRef50_U5VFI8: Transcriptional regulator	1.8083182640
+UniRef50_U5VFI8: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8083182640
+UniRef50_J0IAJ8	1.8080736599
+UniRef50_J0IAJ8|unclassified	1.8080736599
+UniRef50_R0DMK0: DNA translocase FtsK (Fragment)	1.8076558872
+UniRef50_R0DMK0: DNA translocase FtsK (Fragment)|unclassified	1.8076558872
+UniRef50_A3W4P1	1.8074195897
+UniRef50_A3W4P1|unclassified	1.8074195897
+UniRef50_F0D062	1.8074113841
+UniRef50_F0D062|unclassified	1.8074113841
+UniRef50_Q9ZL20: Homoserine dehydrogenase	1.8072391864
+UniRef50_Q9ZL20: Homoserine dehydrogenase|g__Helicobacter.s__Helicobacter_pylori	1.8072391864
+UniRef50_R7N6I4: Amino acid transporters/Alcohol dehydrogenase class IV	1.8071109080
+UniRef50_R7N6I4: Amino acid transporters/Alcohol dehydrogenase class IV|g__Clostridium.s__Clostridium_beijerinckii	1.8071109080
+UniRef50_A5E8I8: Non-canonical purine NTP pyrophosphatase	1.8067417475
+UniRef50_A5E8I8: Non-canonical purine NTP pyrophosphatase|unclassified	1.8067417475
+UniRef50_Q09CY9: Glycerophosphoryl diester phosphodiesterase family protein	1.8066847335
+UniRef50_Q09CY9: Glycerophosphoryl diester phosphodiesterase family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.8066847335
+UniRef50_F5M193	1.8066784531
+UniRef50_F5M193|unclassified	1.8066784531
+UniRef50_C7ZU01	1.8066132739
+UniRef50_C7ZU01|unclassified	1.8066132739
+UniRef50_O06745: Bifunctional homocysteine S-methyltransferase/5,10-methylenetetrahydrofolate reductase	1.8065097902
+UniRef50_O06745: Bifunctional homocysteine S-methyltransferase/5,10-methylenetetrahydrofolate reductase|g__Streptococcus.s__Streptococcus_agalactiae	1.2486266649
+UniRef50_O06745: Bifunctional homocysteine S-methyltransferase/5,10-methylenetetrahydrofolate reductase|unclassified	0.5578831254
+UniRef50_E2MM69	1.8063380132
+UniRef50_E2MM69|unclassified	1.8063380132
+UniRef50_F0Y304: Expressed protein (Fragment)	1.8056101028
+UniRef50_F0Y304: Expressed protein (Fragment)|unclassified	1.8056101028
+UniRef50_UPI000050FDBC: transcriptional regulator, ArsR family protein	1.8054152216
+UniRef50_UPI000050FDBC: transcriptional regulator, ArsR family protein|unclassified	1.8054152216
+UniRef50_Q0TMX8: Threonine--tRNA ligase	1.8053785203
+UniRef50_Q0TMX8: Threonine--tRNA ligase|g__Clostridium.s__Clostridium_beijerinckii	1.8053785203
+UniRef50_UPI0002B9D075: hypothetical protein	1.8051069855
+UniRef50_UPI0002B9D075: hypothetical protein|unclassified	1.8051069855
+UniRef50_A0A059LCT4	1.8050541516
+UniRef50_A0A059LCT4|unclassified	1.8050541516
+UniRef50_D5APE8: Thiamine pyrophosphokinase	1.8050541516
+UniRef50_D5APE8: Thiamine pyrophosphokinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.8050541516
+UniRef50_U7DPL1: LysR family transcriptional regulator	1.8050541516
+UniRef50_U7DPL1: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8050541516
+UniRef50_W7J7L0: Signal transduction protein TRAP	1.8050541516
+UniRef50_W7J7L0: Signal transduction protein TRAP|unclassified	1.8050541516
+UniRef50_H9KM06	1.8044167935
+UniRef50_H9KM06|unclassified	1.8044167935
+UniRef50_E3EYC8	1.8041849697
+UniRef50_E3EYC8|unclassified	1.8041849697
+UniRef50_UPI0002653244: PREDICTED: adenylate kinase domain-containing protein 1-like	1.8041237113
+UniRef50_UPI0002653244: PREDICTED: adenylate kinase domain-containing protein 1-like|unclassified	1.8041237113
+UniRef50_Q8RBK3: Aspartate ammonia-lyase	1.8039555254
+UniRef50_Q8RBK3: Aspartate ammonia-lyase|g__Clostridium.s__Clostridium_beijerinckii	1.8039555254
+UniRef50_E3A3P5	1.8038139957
+UniRef50_E3A3P5|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8038139957
+UniRef50_T6JGD5: Acetyl-CoA acetyltransferase	1.8038029776
+UniRef50_T6JGD5: Acetyl-CoA acetyltransferase|g__Escherichia.s__Escherichia_coli	1.8038029776
+UniRef50_B2ICL0: Imidazole glycerol phosphate synthase subunit HisF	1.8032624815
+UniRef50_B2ICL0: Imidazole glycerol phosphate synthase subunit HisF|g__Deinococcus.s__Deinococcus_radiodurans	1.2562814070
+UniRef50_B2ICL0: Imidazole glycerol phosphate synthase subunit HisF|unclassified	0.5469810744
+UniRef50_Q59337: Catalase	1.8028269773
+UniRef50_Q59337: Catalase|g__Deinococcus.s__Deinococcus_radiodurans	1.5322614380
+UniRef50_Q59337: Catalase|unclassified	0.2705655393
+UniRef50_UPI0003777C1D: hypothetical protein	1.8022652999
+UniRef50_UPI0003777C1D: hypothetical protein|unclassified	1.8022652999
+UniRef50_H4F9I1	1.8022025780
+UniRef50_H4F9I1|unclassified	1.8022025780
+UniRef50_E0SGG3: Sensor protein	1.8019914498
+UniRef50_E0SGG3: Sensor protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8019914498
+UniRef50_A9LZ37: Tail fibre protein, putative	1.8018704241
+UniRef50_A9LZ37: Tail fibre protein, putative|g__Neisseria.s__Neisseria_meningitidis	1.8018704241
+UniRef50_I6ZW32: Rhs element Vgr protein	1.8018695197
+UniRef50_I6ZW32: Rhs element Vgr protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7792795919
+UniRef50_I6ZW32: Rhs element Vgr protein|unclassified	0.0225899278
+UniRef50_D3NTM9: Transcriptional regulator	1.8018018018
+UniRef50_D3NTM9: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8018018018
+UniRef50_G8VKT7	1.8018018018
+UniRef50_G8VKT7|g__Propionibacterium.s__Propionibacterium_acnes	1.8018018018
+UniRef50_J9YT00	1.8018018018
+UniRef50_J9YT00|g__Streptococcus.s__Streptococcus_agalactiae	1.8018018018
+UniRef50_T5LEH9	1.8018018018
+UniRef50_T5LEH9|unclassified	1.8018018018
+UniRef50_W5VEH7	1.8018018018
+UniRef50_W5VEH7|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.8018018018
+UniRef50_UPI00030F8EEE: hypothetical protein	1.8013068555
+UniRef50_UPI00030F8EEE: hypothetical protein|unclassified	1.8013068555
+UniRef50_A4WUI7: Pyrrolo-quinoline quinone	1.8011223563
+UniRef50_A4WUI7: Pyrrolo-quinoline quinone|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.8011223563
+UniRef50_G9W9B6: Lytic murein transglycosylase A	1.8009701185
+UniRef50_G9W9B6: Lytic murein transglycosylase A|unclassified	1.8009701185
+UniRef50_X1PWX6: Marine sediment metagenome DNA, contig: S06H3_S09493 (Fragment)	1.8009371063
+UniRef50_X1PWX6: Marine sediment metagenome DNA, contig: S06H3_S09493 (Fragment)|unclassified	1.8009371063
+UniRef50_G5PHU3: Carbamoyl-phosphate synthase small chain	1.8008899159
+UniRef50_G5PHU3: Carbamoyl-phosphate synthase small chain|g__Escherichia.s__Escherichia_coli	1.4880952381
+UniRef50_G5PHU3: Carbamoyl-phosphate synthase small chain|unclassified	0.3127946778
+UniRef50_D9SL48: Extracellular solute-binding protein family 1	1.8008196556
+UniRef50_D9SL48: Extracellular solute-binding protein family 1|g__Clostridium.s__Clostridium_beijerinckii	1.8008196556
+UniRef50_Q8DXK8: Prophage LambdaSa2, PblB, putative	1.8004199897
+UniRef50_Q8DXK8: Prophage LambdaSa2, PblB, putative|g__Streptococcus.s__Streptococcus_agalactiae	1.8004199897
+UniRef50_M5FLG6: TonB family protein (Modular protein)	1.8002113614
+UniRef50_M5FLG6: TonB family protein (Modular protein)|unclassified	1.8002113614
+UniRef50_B2S9G5: 3-hydroxydecanoyl-[acyl-carrier-protein] dehydratase	1.7996612157
+UniRef50_B2S9G5: 3-hydroxydecanoyl-[acyl-carrier-protein] dehydratase|unclassified	1.7996612157
+UniRef50_C8RWL5	1.7996584586
+UniRef50_C8RWL5|unclassified	1.7996584586
+UniRef50_B8DQC5: Major facilitator superfamily MFS_1	1.7995070109
+UniRef50_B8DQC5: Major facilitator superfamily MFS_1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7995070109
+UniRef50_Q0TIK5	1.7992720360
+UniRef50_Q0TIK5|unclassified	1.7992720360
+UniRef50_Q28SN4: N-acetylglucosamine-6-phosphate deacetylase	1.7992028172
+UniRef50_Q28SN4: N-acetylglucosamine-6-phosphate deacetylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.7992028172
+UniRef50_A0A023HVK8: HesB/YadR/YfhF	1.7990793991
+UniRef50_A0A023HVK8: HesB/YadR/YfhF|unclassified	1.7990793991
+UniRef50_M9VHT5: Primosome assembly protein PriA	1.7988753703
+UniRef50_M9VHT5: Primosome assembly protein PriA|g__Propionibacterium.s__Propionibacterium_acnes	1.7988753703
+UniRef50_E4BBY5	1.7985611511
+UniRef50_E4BBY5|g__Propionibacterium.s__Propionibacterium_acnes	1.7985611511
+UniRef50_G2SXT9: NUDIX hydrolase	1.7985611511
+UniRef50_G2SXT9: NUDIX hydrolase|g__Clostridium.s__Clostridium_beijerinckii	1.7985611511
+UniRef50_G7UA10	1.7985611511
+UniRef50_G7UA10|g__Propionibacterium.s__Propionibacterium_acnes	1.7985611511
+UniRef50_J0KVM1	1.7985611511
+UniRef50_J0KVM1|g__Helicobacter.s__Helicobacter_pylori	1.7985611511
+UniRef50_L5P9E1: Rhodanese-like domain protein	1.7985611511
+UniRef50_L5P9E1: Rhodanese-like domain protein|unclassified	1.7985611511
+UniRef50_UPI0003AB88AE: PREDICTED: atherin-like	1.7985611511
+UniRef50_UPI0003AB88AE: PREDICTED: atherin-like|unclassified	1.7985611511
+UniRef50_A4WQ92	1.7983757087
+UniRef50_A4WQ92|unclassified	1.7983757087
+UniRef50_T2E5I9	1.7983374703
+UniRef50_T2E5I9|unclassified	1.7983374703
+UniRef50_UPI0003806FFB: hypothetical protein	1.7982743619
+UniRef50_UPI0003806FFB: hypothetical protein|unclassified	1.7982743619
+UniRef50_UPI0002559B83: glutamine amidotransferase	1.7982067205
+UniRef50_UPI0002559B83: glutamine amidotransferase|unclassified	1.7982067205
+UniRef50_A0A031E5H2	1.7980190955
+UniRef50_A0A031E5H2|unclassified	1.7980190955
+UniRef50_U2BEX3	1.7979873740
+UniRef50_U2BEX3|unclassified	1.7979873740
+UniRef50_H4GLK1: Pyroglutamyl peptidase family protein	1.7978248657
+UniRef50_H4GLK1: Pyroglutamyl peptidase family protein|unclassified	1.7978248657
+UniRef50_B5PNA7	1.7974027625
+UniRef50_B5PNA7|unclassified	1.7974027625
+UniRef50_UPI00035D967A: hypothetical protein	1.7971164696
+UniRef50_UPI00035D967A: hypothetical protein|unclassified	1.7971164696
+UniRef50_C3BMY1: C4-dicarboxylate transporter DctA	1.7969881834
+UniRef50_C3BMY1: C4-dicarboxylate transporter DctA|unclassified	1.7969881834
+UniRef50_A6LXY3: Diguanylate cyclase	1.7969451932
+UniRef50_A6LXY3: Diguanylate cyclase|g__Clostridium.s__Clostridium_beijerinckii	1.7969451932
+UniRef50_J3PBY2	1.7966356910
+UniRef50_J3PBY2|unclassified	1.7966356910
+UniRef50_UPI00004C2718: hypothetical protein	1.7964070369
+UniRef50_UPI00004C2718: hypothetical protein|unclassified	1.7964070369
+UniRef50_A0A058WL46: Biotin-requiring enzyme	1.7963739410
+UniRef50_A0A058WL46: Biotin-requiring enzyme|unclassified	1.7963739410
+UniRef50_UPI0002D2C86E: hypothetical protein	1.7962636139
+UniRef50_UPI0002D2C86E: hypothetical protein|unclassified	1.7962636139
+UniRef50_G7M6V5: Drug resistance transporter, EmrB/QacA subfamily	1.7960590936
+UniRef50_G7M6V5: Drug resistance transporter, EmrB/QacA subfamily|g__Clostridium.s__Clostridium_beijerinckii	1.7960590936
+UniRef50_R1D5P4	1.7958272415
+UniRef50_R1D5P4|unclassified	1.7958272415
+UniRef50_R1E6W9	1.7956221688
+UniRef50_R1E6W9|unclassified	1.7956221688
+UniRef50_B8I1I9: TrkA-C domain protein	1.7953321364
+UniRef50_B8I1I9: TrkA-C domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.7953321364
+UniRef50_G5NF09: Putative RND efflux membrane fusion protein (Fragment)	1.7953321364
+UniRef50_G5NF09: Putative RND efflux membrane fusion protein (Fragment)|unclassified	1.7953321364
+UniRef50_K4N462: Sensory box protein	1.7953321364
+UniRef50_K4N462: Sensory box protein|g__Streptococcus.s__Streptococcus_agalactiae	1.7953321364
+UniRef50_Q7WYU3: Putative AgrB-like protein	1.7953321364
+UniRef50_Q7WYU3: Putative AgrB-like protein|g__Clostridium.s__Clostridium_beijerinckii	1.7953321364
+UniRef50_Q9ZL74: Molybdenum cofactor guanylyltransferase	1.7953321364
+UniRef50_Q9ZL74: Molybdenum cofactor guanylyltransferase|g__Helicobacter.s__Helicobacter_pylori	1.7953321364
+UniRef50_W0AGF9	1.7953321364
+UniRef50_W0AGF9|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.7953321364
+UniRef50_Q8DYM7: Protein translocase subunit SecA 2	1.7952868303
+UniRef50_Q8DYM7: Protein translocase subunit SecA 2|g__Streptococcus.s__Streptococcus_agalactiae	1.7952868303
+UniRef50_UPI0004710F14: monovalent cation/H+ antiporter subunit A	1.7951437509
+UniRef50_UPI0004710F14: monovalent cation/H+ antiporter subunit A|unclassified	1.7951437509
+UniRef50_F0KP29: Amidohydrolase	1.7950645092
+UniRef50_F0KP29: Amidohydrolase|g__Acinetobacter.s__Acinetobacter_baumannii	1.7950645092
+UniRef50_H0SRD3	1.7948858680
+UniRef50_H0SRD3|unclassified	1.7948858680
+UniRef50_S9QZA3	1.7946378260
+UniRef50_S9QZA3|unclassified	1.7946378260
+UniRef50_Q5NRF0: Probable chemoreceptor glutamine deamidase CheD	1.7941679436
+UniRef50_Q5NRF0: Probable chemoreceptor glutamine deamidase CheD|unclassified	1.7941679436
+UniRef50_G0FNR8	1.7941225155
+UniRef50_G0FNR8|unclassified	1.7941225155
+UniRef50_U5MQS6	1.7939559209
+UniRef50_U5MQS6|g__Clostridium.s__Clostridium_beijerinckii	1.7939559209
+UniRef50_F9YXR6: 6-aminohexanoate-dimer hydrolase	1.7939220288
+UniRef50_F9YXR6: 6-aminohexanoate-dimer hydrolase|g__Propionibacterium.s__Propionibacterium_acnes	1.7939220288
+UniRef50_UPI000287DA49: benzoate membrane transport protein	1.7933108486
+UniRef50_UPI000287DA49: benzoate membrane transport protein|unclassified	1.7933108486
+UniRef50_C6SA54	1.7930475874
+UniRef50_C6SA54|unclassified	1.7930475874
+UniRef50_D9RCI9	1.7924678354
+UniRef50_D9RCI9|unclassified	1.7924678354
+UniRef50_A6LWP5	1.7921146953
+UniRef50_A6LWP5|g__Clostridium.s__Clostridium_beijerinckii	1.7921146953
+UniRef50_A6V9M7	1.7921146953
+UniRef50_A6V9M7|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7921146953
+UniRef50_A8EWD3: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	1.7921146953
+UniRef50_A8EWD3: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|g__Helicobacter.s__Helicobacter_pylori	1.7921146953
+UniRef50_B1KQY9: Protein GrpE	1.7921146953
+UniRef50_B1KQY9: Protein GrpE|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7921146953
+UniRef50_E4SRM2	1.7921146953
+UniRef50_E4SRM2|g__Streptococcus.s__Streptococcus_agalactiae	1.7921146953
+UniRef50_F0KF01	1.7921146953
+UniRef50_F0KF01|g__Acinetobacter.s__Acinetobacter_baumannii	1.7921146953
+UniRef50_I3FSN5	1.7921146953
+UniRef50_I3FSN5|g__Staphylococcus.s__Staphylococcus_aureus	1.7921146953
+UniRef50_N9HZ93	1.7921146953
+UniRef50_N9HZ93|g__Acinetobacter.s__Acinetobacter_baumannii	1.7921146953
+UniRef50_P56032: 50S ribosomal protein L4	1.7921146953
+UniRef50_P56032: 50S ribosomal protein L4|g__Helicobacter.s__Helicobacter_pylori	1.7921146953
+UniRef50_Q1LS55: RegA, response regulator containing a Fis-type DNA-binding domain	1.7921146953
+UniRef50_Q1LS55: RegA, response regulator containing a Fis-type DNA-binding domain|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7921146953
+UniRef50_Y6BJ98: Multidrug resistance efflux pump sepA	1.7921146953
+UniRef50_Y6BJ98: Multidrug resistance efflux pump sepA|unclassified	1.7921146953
+UniRef50_Q9RWX7	1.7920493982
+UniRef50_Q9RWX7|g__Deinococcus.s__Deinococcus_radiodurans	1.7920493982
+UniRef50_W9TUR8	1.7917582857
+UniRef50_W9TUR8|unclassified	1.7917582857
+UniRef50_UPI00035CE6C9: hypothetical protein	1.7913918662
+UniRef50_UPI00035CE6C9: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	1.7913918662
+UniRef50_C1E811: Predicted protein	1.7908612373
+UniRef50_C1E811: Predicted protein|unclassified	1.7908612373
+UniRef50_UPI00047C4E72: chemotaxis protein CheD	1.7904704569
+UniRef50_UPI00047C4E72: chemotaxis protein CheD|unclassified	1.7904704569
+UniRef50_UPI0003771A81: hypothetical protein, partial	1.7904362099
+UniRef50_UPI0003771A81: hypothetical protein, partial|unclassified	1.7904362099
+UniRef50_C0PKS5	1.7902813299
+UniRef50_C0PKS5|unclassified	1.7902813299
+UniRef50_A6TRD7	1.7900176792
+UniRef50_A6TRD7|unclassified	1.7900176792
+UniRef50_J8ADU9	1.7896594606
+UniRef50_J8ADU9|unclassified	1.7896594606
+UniRef50_UPI0003783FB9: hypothetical protein, partial	1.7895701819
+UniRef50_UPI0003783FB9: hypothetical protein, partial|unclassified	1.7895701819
+UniRef50_N9Z7F0: YhgE/Pip domain-containing protein	1.7892704629
+UniRef50_N9Z7F0: YhgE/Pip domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	1.7892704629
+UniRef50_Q3JNQ1	1.7892293201
+UniRef50_Q3JNQ1|unclassified	1.7892293201
+UniRef50_W0N4N9	1.7890711095
+UniRef50_W0N4N9|unclassified	1.7890711095
+UniRef50_U5MTT7: Cobalamin (Vitamin B12) biosynthesis CbiG protein	1.7889445467
+UniRef50_U5MTT7: Cobalamin (Vitamin B12) biosynthesis CbiG protein|g__Clostridium.s__Clostridium_beijerinckii	1.7889445467
+UniRef50_A0ZZF7: L-asparaginase I	1.7889087657
+UniRef50_A0ZZF7: L-asparaginase I|g__Propionibacterium.s__Propionibacterium_acnes	1.7889087657
+UniRef50_A6LSS4	1.7889087657
+UniRef50_A6LSS4|g__Clostridium.s__Clostridium_beijerinckii	1.7889087657
+UniRef50_K0K215: Luciferase-like monooxygenase	1.7889087657
+UniRef50_K0K215: Luciferase-like monooxygenase|g__Deinococcus.s__Deinococcus_radiodurans	1.7889087657
+UniRef50_K5IJJ4: Type VII secretion system (T7SS), usher family protein	1.7889087657
+UniRef50_K5IJJ4: Type VII secretion system (T7SS), usher family protein|g__Escherichia.s__Escherichia_coli	1.7889087657
+UniRef50_M8I708: Signal transduction histidine kinase	1.7889087657
+UniRef50_M8I708: Signal transduction histidine kinase|g__Acinetobacter.s__Acinetobacter_baumannii	1.7889087657
+UniRef50_O31038: FMN reductase (NADPH)	1.7889087657
+UniRef50_O31038: FMN reductase (NADPH)|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7889087657
+UniRef50_Q1LL93: Glycerophosphoryl diester phosphodiesterase family protein	1.7889087657
+UniRef50_Q1LL93: Glycerophosphoryl diester phosphodiesterase family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7889087657
+UniRef50_Q3K8I4	1.7889087657
+UniRef50_Q3K8I4|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7889087657
+UniRef50_R8ZJJ2	1.7889087657
+UniRef50_R8ZJJ2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7889087657
+UniRef50_W1MH92: Branched-chain alpha-keto acid dehydrogenase subunit E2	1.7889087657
+UniRef50_W1MH92: Branched-chain alpha-keto acid dehydrogenase subunit E2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7889087657
+UniRef50_UPI00035D3D1B: hypothetical protein	1.7882827069
+UniRef50_UPI00035D3D1B: hypothetical protein|unclassified	1.7882827069
+UniRef50_M0G4L4: Putative phosphate ABC transporter permease	1.7882022374
+UniRef50_M0G4L4: Putative phosphate ABC transporter permease|unclassified	1.7882022374
+UniRef50_K0G349: Oligopeptide transporter, periplasmic-binding protein	1.7878376210
+UniRef50_K0G349: Oligopeptide transporter, periplasmic-binding protein|unclassified	1.7878376210
+UniRef50_N6YKC6: ISPsy6, transposase	1.7877324322
+UniRef50_N6YKC6: ISPsy6, transposase|unclassified	1.7877324322
+UniRef50_J9UPV6	1.7875897016
+UniRef50_J9UPV6|unclassified	1.7875897016
+UniRef50_UPI0003647B3B: 50S ribosomal protein L5	1.7875679166
+UniRef50_UPI0003647B3B: 50S ribosomal protein L5|unclassified	1.7875679166
+UniRef50_V9VPV4: ABC transporter permease	1.7871700962
+UniRef50_V9VPV4: ABC transporter permease|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.7871700962
+UniRef50_A6LWC3: Sigma-54 factor, interaction domain-containing protein	1.7867777387
+UniRef50_A6LWC3: Sigma-54 factor, interaction domain-containing protein|g__Clostridium.s__Clostridium_beijerinckii	1.7867777387
+UniRef50_G7WBX4: Arabinose efflux permease family protein	1.7864203357
+UniRef50_G7WBX4: Arabinose efflux permease family protein|g__Clostridium.s__Clostridium_beijerinckii	1.7864203357
+UniRef50_G9AA42	1.7863872703
+UniRef50_G9AA42|unclassified	1.7863872703
+UniRef50_F0E3S6: Flagellar motor switch protein (Fragment)	1.7863840731
+UniRef50_F0E3S6: Flagellar motor switch protein (Fragment)|unclassified	1.7863840731
+UniRef50_B7IB09: Endonuclease/exonuclease/phosphatase	1.7862445741
+UniRef50_B7IB09: Endonuclease/exonuclease/phosphatase|g__Acinetobacter.s__Acinetobacter_baumannii	1.7862445741
+UniRef50_H0BFK4	1.7859062786
+UniRef50_H0BFK4|unclassified	1.7859062786
+UniRef50_A5N6G6: Phosphate propanoyltransferase	1.7857142857
+UniRef50_A5N6G6: Phosphate propanoyltransferase|g__Clostridium.s__Clostridium_beijerinckii	1.7857142857
+UniRef50_G7M6Z9: Nitroreductase	1.7857142857
+UniRef50_G7M6Z9: Nitroreductase|g__Clostridium.s__Clostridium_beijerinckii	1.7857142857
+UniRef50_G7U9N4: Sugar kinase	1.7857142857
+UniRef50_G7U9N4: Sugar kinase|g__Propionibacterium.s__Propionibacterium_acnes	1.7857142857
+UniRef50_H8GYV6	1.7857142857
+UniRef50_H8GYV6|g__Deinococcus.s__Deinococcus_radiodurans	1.7857142857
+UniRef50_R9D2K9: EssC protein	1.7856368891
+UniRef50_R9D2K9: EssC protein|unclassified	1.7856368891
+UniRef50_UPI0003705056: MULTISPECIES: hypothetical protein	1.7850474719
+UniRef50_UPI0003705056: MULTISPECIES: hypothetical protein|unclassified	1.7850474719
+UniRef50_W8S8L4	1.7850309428
+UniRef50_W8S8L4|unclassified	1.7850309428
+UniRef50_Q1JA93: Biotin carboxyl carrier protein of acetyl-CoA carboxylase	1.7847841898
+UniRef50_Q1JA93: Biotin carboxyl carrier protein of acetyl-CoA carboxylase|unclassified	1.7847841898
+UniRef50_F0RNI0: DEAD/DEAH box helicase domain protein	1.7846519929
+UniRef50_F0RNI0: DEAD/DEAH box helicase domain protein|g__Deinococcus.s__Deinococcus_radiodurans	1.7846519929
+UniRef50_UPI00041AB026: hypothetical protein	1.7832072483
+UniRef50_UPI00041AB026: hypothetical protein|unclassified	1.7832072483
+UniRef50_B3WL34	1.7831539060
+UniRef50_B3WL34|unclassified	1.7831539060
+UniRef50_G7D6S7	1.7831339761
+UniRef50_G7D6S7|unclassified	1.7831339761
+UniRef50_E2EIN3: Isocitrate dehydrogenase (Fragment)	1.7827440099
+UniRef50_E2EIN3: Isocitrate dehydrogenase (Fragment)|unclassified	1.7827440099
+UniRef50_A0A038GJX3: Cation efflux family protein	1.7825311943
+UniRef50_A0A038GJX3: Cation efflux family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7825311943
+UniRef50_A3PS34: Methyltransferase type 11	1.7825311943
+UniRef50_A3PS34: Methyltransferase type 11|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.7825311943
+UniRef50_F3G4W6: Coenzyme PQQ synthesis protein E	1.7825311943
+UniRef50_F3G4W6: Coenzyme PQQ synthesis protein E|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7825311943
+UniRef50_Q9RWG3	1.7825311943
+UniRef50_Q9RWG3|g__Deinococcus.s__Deinococcus_radiodurans	1.7825311943
+UniRef50_T2E439: Bacterial regulatory helix-turn-helix , lysR family protein	1.7825311943
+UniRef50_T2E439: Bacterial regulatory helix-turn-helix , lysR family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7825311943
+UniRef50_R5AL16	1.7821213201
+UniRef50_R5AL16|unclassified	1.7821213201
+UniRef50_Q9FW53: Putative protoporphyrinogen oxidase	1.7819949453
+UniRef50_Q9FW53: Putative protoporphyrinogen oxidase|unclassified	1.7819949453
+UniRef50_Q1YN63	1.7817652822
+UniRef50_Q1YN63|unclassified	1.7817652822
+UniRef50_Q1CTZ0: Cag pathogenicity island protein I	1.7817545163
+UniRef50_Q1CTZ0: Cag pathogenicity island protein I|g__Helicobacter.s__Helicobacter_pylori	1.7817545163
+UniRef50_Q9RVK7: ATP-dependent zinc metalloprotease FtsH	1.7815682196
+UniRef50_Q9RVK7: ATP-dependent zinc metalloprotease FtsH|g__Deinococcus.s__Deinococcus_radiodurans	1.7815682196
+UniRef50_E8SMB8	1.7814893455
+UniRef50_E8SMB8|unclassified	1.7814893455
+UniRef50_U2YT78	1.7814487582
+UniRef50_U2YT78|unclassified	1.7814487582
+UniRef50_Q9XAR5: NADH-quinone oxidoreductase subunit L	1.7810912608
+UniRef50_Q9XAR5: NADH-quinone oxidoreductase subunit L|g__Propionibacterium.s__Propionibacterium_acnes	1.7810912608
+UniRef50_Q28K54	1.7810590740
+UniRef50_Q28K54|unclassified	1.7810590740
+UniRef50_Q1YIY5	1.7809815077
+UniRef50_Q1YIY5|unclassified	1.7809815077
+UniRef50_UPI0003648ECD: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase	1.7808997684
+UniRef50_UPI0003648ECD: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase|unclassified	1.7808997684
+UniRef50_T1A241: Peptidase, M20/M25/M40 family protein (Fragment)	1.7807435155
+UniRef50_T1A241: Peptidase, M20/M25/M40 family protein (Fragment)|unclassified	1.7807435155
+UniRef50_UPI000381F9EF: hypothetical protein	1.7806589489
+UniRef50_UPI000381F9EF: hypothetical protein|unclassified	1.7806589489
+UniRef50_A5CXF1: Acetylglutamate kinase	1.7802704792
+UniRef50_A5CXF1: Acetylglutamate kinase|g__Neisseria.s__Neisseria_meningitidis	1.3908205841
+UniRef50_A5CXF1: Acetylglutamate kinase|unclassified	0.3894498951
+UniRef50_G2U6X6	1.7802291489
+UniRef50_G2U6X6|unclassified	1.7802291489
+UniRef50_UPI0003EDC259: PREDICTED: putative RNA-binding protein 15B-like	1.7796439578
+UniRef50_UPI0003EDC259: PREDICTED: putative RNA-binding protein 15B-like|unclassified	1.7796439578
+UniRef50_R5SPQ8: Chaperone protein DnaK 1	1.7795960807
+UniRef50_R5SPQ8: Chaperone protein DnaK 1|unclassified	1.7795960807
+UniRef50_B2HTD1: Transcriptional regulator	1.7793594306
+UniRef50_B2HTD1: Transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	1.7793594306
+UniRef50_G0DVP7: Triacylglycerol lipase	1.7793594306
+UniRef50_G0DVP7: Triacylglycerol lipase|g__Propionibacterium.s__Propionibacterium_acnes	1.7793594306
+UniRef50_UPI0003D6E0C5	1.7793594306
+UniRef50_UPI0003D6E0C5|unclassified	1.7793594306
+UniRef50_X5K082: 2-dehydro-3-deoxyphosphogluconate aldolase /4-hydroxy-2-oxoglutarate aldolase	1.7793594306
+UniRef50_X5K082: 2-dehydro-3-deoxyphosphogluconate aldolase /4-hydroxy-2-oxoglutarate aldolase|g__Streptococcus.s__Streptococcus_agalactiae	1.7793594306
+UniRef50_I7QXE3: Arsenate reductase	1.7792498408
+UniRef50_I7QXE3: Arsenate reductase|unclassified	1.7792498408
+UniRef50_F2ETD0	1.7792405945
+UniRef50_F2ETD0|unclassified	1.7792405945
+UniRef50_Q9RVH4: Aspartate--tRNA(Asp/Asn) ligase	1.7790497707
+UniRef50_Q9RVH4: Aspartate--tRNA(Asp/Asn) ligase|g__Deinococcus.s__Deinococcus_radiodurans	1.7790497707
+UniRef50_UPI00031DE77D: hypothetical protein	1.7790358961
+UniRef50_UPI00031DE77D: hypothetical protein|unclassified	1.7790358961
+UniRef50_UPI0002629D2B: phenol hydroxylase	1.7789265892
+UniRef50_UPI0002629D2B: phenol hydroxylase|unclassified	1.7789265892
+UniRef50_Q9RZH0	1.7789062376
+UniRef50_Q9RZH0|unclassified	1.7789062376
+UniRef50_Q47QV2	1.7788260620
+UniRef50_Q47QV2|unclassified	1.7788260620
+UniRef50_E1TE96: Type VI secretion protein, VC_A0114 family	1.7788181162
+UniRef50_E1TE96: Type VI secretion protein, VC_A0114 family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7580392547
+UniRef50_E1TE96: Type VI secretion protein, VC_A0114 family|unclassified	0.0207788616
+UniRef50_Q9RVV9: DNA-directed RNA polymerase subunit beta	1.7786763594
+UniRef50_Q9RVV9: DNA-directed RNA polymerase subunit beta|g__Deinococcus.s__Deinococcus_radiodurans	1.7786763594
+UniRef50_H3T2Q4	1.7785025093
+UniRef50_H3T2Q4|unclassified	1.7785025093
+UniRef50_D7G0G3	1.7781830343
+UniRef50_D7G0G3|unclassified	1.7781830343
+UniRef50_UPI0003637DC2: hypothetical protein	1.7778982065
+UniRef50_UPI0003637DC2: hypothetical protein|unclassified	1.7778982065
+UniRef50_Q79VD7: Cytochrome c oxidase subunit 1	1.7778670537
+UniRef50_Q79VD7: Cytochrome c oxidase subunit 1|g__Propionibacterium.s__Propionibacterium_acnes	1.4700320070
+UniRef50_Q79VD7: Cytochrome c oxidase subunit 1|unclassified	0.3078350467
+UniRef50_UPI000365D0DF: hypothetical protein	1.7775931304
+UniRef50_UPI000365D0DF: hypothetical protein|unclassified	1.7775931304
+UniRef50_UPI00032B1CCB: PREDICTED: translation initiation factor IF-2-like	1.7774039675
+UniRef50_UPI00032B1CCB: PREDICTED: translation initiation factor IF-2-like|unclassified	1.7774039675
+UniRef50_UPI000364064B: hypothetical protein, partial	1.7773425257
+UniRef50_UPI000364064B: hypothetical protein, partial|unclassified	1.7773425257
+UniRef50_Q2RSB2: NAD(P) transhydrogenase subunit alpha part 1	1.7769883560
+UniRef50_Q2RSB2: NAD(P) transhydrogenase subunit alpha part 1|g__Acinetobacter.s__Acinetobacter_baumannii	1.7769883560
+UniRef50_A3NIF7	1.7769436577
+UniRef50_A3NIF7|unclassified	1.7769436577
+UniRef50_Q9G015: ORF30	1.7766980108
+UniRef50_Q9G015: ORF30|unclassified	1.7766980108
+UniRef50_L7VYH4	1.7766400470
+UniRef50_L7VYH4|unclassified	1.7766400470
+UniRef50_V4YKS4: DNA-directed RNA polymerase	1.7765753658
+UniRef50_V4YKS4: DNA-directed RNA polymerase|g__Acinetobacter.s__Acinetobacter_baumannii	1.7765753658
+UniRef50_V5SVN0: Cytochrome P450	1.7763917764
+UniRef50_V5SVN0: Cytochrome P450|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7763917764
+UniRef50_A6LSK6: Thiamine pyrophosphokinase	1.7761989343
+UniRef50_A6LSK6: Thiamine pyrophosphokinase|g__Clostridium.s__Clostridium_beijerinckii	1.7761989343
+UniRef50_D4HAD9: Transcriptional regulator, GntR family	1.7761989343
+UniRef50_D4HAD9: Transcriptional regulator, GntR family|g__Propionibacterium.s__Propionibacterium_acnes	1.7761989343
+UniRef50_E1VQY8: Transcriptional regulator, ArsR family	1.7761989343
+UniRef50_E1VQY8: Transcriptional regulator, ArsR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7761989343
+UniRef50_F0MG01	1.7761989343
+UniRef50_F0MG01|g__Neisseria.s__Neisseria_meningitidis	1.7761989343
+UniRef50_Q2R9C2: Expressed protein	1.7761989343
+UniRef50_Q2R9C2: Expressed protein|unclassified	1.7761989343
+UniRef50_R9ZCI4: LysR family transcriptional regulator	1.7761989343
+UniRef50_R9ZCI4: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7761989343
+UniRef50_UPI0002625F65: thioredoxin	1.7760087362
+UniRef50_UPI0002625F65: thioredoxin|unclassified	1.7760087362
+UniRef50_UPI0003779D5B: hypothetical protein	1.7758726765
+UniRef50_UPI0003779D5B: hypothetical protein|unclassified	1.7758726765
+UniRef50_W0YJW9	1.7755015472
+UniRef50_W0YJW9|unclassified	1.7755015472
+UniRef50_I0EQA8: Paralysed flagella protein	1.7745174001
+UniRef50_I0EQA8: Paralysed flagella protein|g__Helicobacter.s__Helicobacter_pylori	1.7745174001
+UniRef50_D4HAB8: Aminodeoxychorismate synthase, component I	1.7744545668
+UniRef50_D4HAB8: Aminodeoxychorismate synthase, component I|g__Propionibacterium.s__Propionibacterium_acnes	1.7744545668
+UniRef50_UPI00047BBDF7: membrane protein	1.7743332047
+UniRef50_UPI00047BBDF7: membrane protein|unclassified	1.7743332047
+UniRef50_UPI00037249D5: hypothetical protein	1.7742970978
+UniRef50_UPI00037249D5: hypothetical protein|unclassified	1.7742970978
+UniRef50_A1B5E9: ATP-dependent DNA helicase RecQ	1.7741272419
+UniRef50_A1B5E9: ATP-dependent DNA helicase RecQ|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.7741272419
+UniRef50_UPI00036884C8: hypothetical protein	1.7738770340
+UniRef50_UPI00036884C8: hypothetical protein|unclassified	1.7738770340
+UniRef50_UPI0003696809: hypothetical protein	1.7735828896
+UniRef50_UPI0003696809: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	1.6323006486
+UniRef50_UPI0003696809: hypothetical protein|unclassified	0.1412822410
+UniRef50_UPI000476EDB0: hemolysin	1.7735602462
+UniRef50_UPI000476EDB0: hemolysin|unclassified	1.7735602462
+UniRef50_A9M0F2: Phopholipase D-family protein	1.7733171166
+UniRef50_A9M0F2: Phopholipase D-family protein|g__Neisseria.s__Neisseria_meningitidis	1.7733171166
+UniRef50_Q9RWA3	1.7730736333
+UniRef50_Q9RWA3|g__Deinococcus.s__Deinococcus_radiodurans	1.7730736333
+UniRef50_A3M3E9: Urease accessory protein UreD	1.7730496454
+UniRef50_A3M3E9: Urease accessory protein UreD|g__Acinetobacter.s__Acinetobacter_baumannii	1.7730496454
+UniRef50_D3P3S9	1.7730496454
+UniRef50_D3P3S9|unclassified	1.7730496454
+UniRef50_D8JJL0: OmpW family protein	1.7730496454
+UniRef50_D8JJL0: OmpW family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.7730496454
+UniRef50_K0HVG4: Magnesium chelatase subunit ChlI	1.7730496454
+UniRef50_K0HVG4: Magnesium chelatase subunit ChlI|g__Propionibacterium.s__Propionibacterium_acnes	1.7730496454
+UniRef50_Q6F7U5	1.7730496454
+UniRef50_Q6F7U5|g__Acinetobacter.s__Acinetobacter_baumannii	1.7730496454
+UniRef50_Q9RWR2: Acetyltransferase, putative	1.7730496454
+UniRef50_Q9RWR2: Acetyltransferase, putative|g__Deinococcus.s__Deinococcus_radiodurans	1.7730496454
+UniRef50_UPI0003AEE558: PREDICTED: serine/arginine repetitive matrix protein 3-like	1.7730496454
+UniRef50_UPI0003AEE558: PREDICTED: serine/arginine repetitive matrix protein 3-like|unclassified	1.7730496454
+UniRef50_A6LY57	1.7729197612
+UniRef50_A6LY57|g__Clostridium.s__Clostridium_beijerinckii	1.7729197612
+UniRef50_W0YYF5	1.7727980174
+UniRef50_W0YYF5|unclassified	1.7727980174
+UniRef50_U5ULW6	1.7726778038
+UniRef50_U5ULW6|unclassified	1.7726778038
+UniRef50_F9YY68	1.7722878625
+UniRef50_F9YY68|g__Propionibacterium.s__Propionibacterium_acnes	1.7722878625
+UniRef50_R4R715: Putrescine importer PuuP	1.7722566148
+UniRef50_R4R715: Putrescine importer PuuP|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7722566148
+UniRef50_UPI0003B76E7C: peroxiredoxin	1.7720208934
+UniRef50_UPI0003B76E7C: peroxiredoxin|unclassified	1.7720208934
+UniRef50_V7F1W5	1.7719824944
+UniRef50_V7F1W5|unclassified	1.7719824944
+UniRef50_L0NCJ2	1.7718093812
+UniRef50_L0NCJ2|unclassified	1.7718093812
+UniRef50_Q7NSL8	1.7708466860
+UniRef50_Q7NSL8|unclassified	1.7708466860
+UniRef50_S5K087	1.7706340109
+UniRef50_S5K087|unclassified	1.7706340109
+UniRef50_UPI0000EBCCAB: PREDICTED: basic proline-rich protein-like	1.7705211693
+UniRef50_UPI0000EBCCAB: PREDICTED: basic proline-rich protein-like|unclassified	1.7705211693
+UniRef50_G7U9F5	1.7701574242
+UniRef50_G7U9F5|g__Propionibacterium.s__Propionibacterium_acnes	1.7701574242
+UniRef50_Q9K0K9: Iron-regulated protein FrpA	1.7701253926
+UniRef50_Q9K0K9: Iron-regulated protein FrpA|g__Neisseria.s__Neisseria_meningitidis	1.7701253926
+UniRef50_UPI0004684CB5: ABC transporter permease	1.7699650422
+UniRef50_UPI0004684CB5: ABC transporter permease|unclassified	1.7699650422
+UniRef50_UPI0003D7123B: PREDICTED: zinc finger protein 844-like	1.7699128905
+UniRef50_UPI0003D7123B: PREDICTED: zinc finger protein 844-like|unclassified	1.7699128905
+UniRef50_A6UZP9	1.7699115044
+UniRef50_A6UZP9|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7699115044
+UniRef50_B2HWV5: Periplasmic serine protease (ClpP class)	1.7699115044
+UniRef50_B2HWV5: Periplasmic serine protease (ClpP class)|g__Acinetobacter.s__Acinetobacter_baumannii	1.7699115044
+UniRef50_I4Y2U3: DJ-1/PfpI family protein	1.7699115044
+UniRef50_I4Y2U3: DJ-1/PfpI family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.7699115044
+UniRef50_UPI00027F5833	1.7699115044
+UniRef50_UPI00027F5833|unclassified	1.7699115044
+UniRef50_B9T9T8	1.7697464501
+UniRef50_B9T9T8|unclassified	1.7697464501
+UniRef50_W7WKJ7	1.7697180650
+UniRef50_W7WKJ7|unclassified	1.7697180650
+UniRef50_C3KNX2	1.7695686959
+UniRef50_C3KNX2|unclassified	1.7695686959
+UniRef50_F0MXQ2: Type IV pilus assembly protein PilC	1.7689198715
+UniRef50_F0MXQ2: Type IV pilus assembly protein PilC|g__Neisseria.s__Neisseria_meningitidis	1.7689198715
+UniRef50_UPI000362E0E9: Fis family transcriptional regulator	1.7685639572
+UniRef50_UPI000362E0E9: Fis family transcriptional regulator|unclassified	1.7685639572
+UniRef50_D8JJ99: Fatty acid desaturase	1.7684585796
+UniRef50_D8JJ99: Fatty acid desaturase|g__Acinetobacter.s__Acinetobacter_baumannii	1.7684585796
+UniRef50_D4HAZ8	1.7683332902
+UniRef50_D4HAZ8|g__Propionibacterium.s__Propionibacterium_acnes	1.4044943820
+UniRef50_D4HAZ8|unclassified	0.3638389081
+UniRef50_Q6A780: Error-prone DNA polymerase	1.7681778119
+UniRef50_Q6A780: Error-prone DNA polymerase|g__Propionibacterium.s__Propionibacterium_acnes	1.7681778119
+UniRef50_Q0DJT3: Os05g0230700 protein (Fragment)	1.7681004311
+UniRef50_Q0DJT3: Os05g0230700 protein (Fragment)|unclassified	1.7681004311
+UniRef50_UPI0003698FB7: hypothetical protein	1.7680073464
+UniRef50_UPI0003698FB7: hypothetical protein|unclassified	1.7680073464
+UniRef50_M1LMT5	1.7676942883
+UniRef50_M1LMT5|g__Clostridium.s__Clostridium_beijerinckii	1.7676942883
+UniRef50_UPI000471FEB2: XRE family transcriptional regulator	1.7674689962
+UniRef50_UPI000471FEB2: XRE family transcriptional regulator|unclassified	1.7674689962
+UniRef50_UPI000289D6F0: cation:proton antiporter	1.7674354465
+UniRef50_UPI000289D6F0: cation:proton antiporter|unclassified	1.7674354465
+UniRef50_Q1R421	1.7671160614
+UniRef50_Q1R421|unclassified	1.7671160614
+UniRef50_UPI000416673B: hypothetical protein	1.7670815381
+UniRef50_UPI000416673B: hypothetical protein|unclassified	1.7670815381
+UniRef50_D3UKX6: Lipoprotein, putative	1.7668628191
+UniRef50_D3UKX6: Lipoprotein, putative|unclassified	1.7668628191
+UniRef50_A0A011D9G9	1.7667844523
+UniRef50_A0A011D9G9|g__Acinetobacter.s__Acinetobacter_baumannii	1.7667844523
+UniRef50_M9VH28: Actinobacterial surface-anchored protein domain protein	1.7667844523
+UniRef50_M9VH28: Actinobacterial surface-anchored protein domain protein|g__Propionibacterium.s__Propionibacterium_acnes	1.7667844523
+UniRef50_V5VIG2: Tellurite resistance protein	1.7667844523
+UniRef50_V5VIG2: Tellurite resistance protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.7667844523
+UniRef50_A6LX04	1.7666554843
+UniRef50_A6LX04|g__Clostridium.s__Clostridium_beijerinckii	1.7666554843
+UniRef50_UPI00034B9695: hypothetical protein	1.7666540846
+UniRef50_UPI00034B9695: hypothetical protein|unclassified	1.7666540846
+UniRef50_UPI00037437AC: hypothetical protein	1.7665863706
+UniRef50_UPI00037437AC: hypothetical protein|unclassified	1.7665863706
+UniRef50_X2N0W1	1.7664866115
+UniRef50_X2N0W1|unclassified	1.7664866115
+UniRef50_UPI0004077644: hypothetical protein	1.7664129617
+UniRef50_UPI0004077644: hypothetical protein|unclassified	1.7664129617
+UniRef50_A9GZY1: Imidazoleglycerol-phosphate dehydratase	1.7662988338
+UniRef50_A9GZY1: Imidazoleglycerol-phosphate dehydratase|unclassified	1.7662988338
+UniRef50_Q28LQ3	1.7653341464
+UniRef50_Q28LQ3|unclassified	1.7653341464
+UniRef50_UPI0002B461E9: PREDICTED: DNA repair protein recA homolog 2, mitochondrial-like	1.7651842667
+UniRef50_UPI0002B461E9: PREDICTED: DNA repair protein recA homolog 2, mitochondrial-like|unclassified	1.7651842667
+UniRef50_U9QXM0	1.7650179926
+UniRef50_U9QXM0|unclassified	1.7650179926
+UniRef50_M4MNK1: Cytochrome c binding protein	1.7646460567
+UniRef50_M4MNK1: Cytochrome c binding protein|unclassified	1.7646460567
+UniRef50_E8QRB2: Outer membrane protein HopZ	1.7645340240
+UniRef50_E8QRB2: Outer membrane protein HopZ|g__Helicobacter.s__Helicobacter_pylori	1.7645340240
+UniRef50_W1AZE4: Membrane-bound lysozyme inhibitor of c-type lysozyme	1.7642436485
+UniRef50_W1AZE4: Membrane-bound lysozyme inhibitor of c-type lysozyme|unclassified	1.7642436485
+UniRef50_F0YKH0	1.7637186872
+UniRef50_F0YKH0|unclassified	1.7637186872
+UniRef50_UPI000373BD8F: hypothetical protein	1.7636903389
+UniRef50_UPI000373BD8F: hypothetical protein|unclassified	1.7636903389
+UniRef50_A6V2C1	1.7636684303
+UniRef50_A6V2C1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7636684303
+UniRef50_C5J508: DNA replication protein	1.7636684303
+UniRef50_C5J508: DNA replication protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.7636684303
+UniRef50_C6M8K8	1.7636684303
+UniRef50_C6M8K8|unclassified	1.7636684303
+UniRef50_Q2P8R3: Putative manganese efflux pump MntP	1.7636684303
+UniRef50_Q2P8R3: Putative manganese efflux pump MntP|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7636684303
+UniRef50_UPI0003B70C3E: peptidase S54	1.7636684303
+UniRef50_UPI0003B70C3E: peptidase S54|unclassified	1.7636684303
+UniRef50_Q1GK79: N-(5'-phosphoribosyl)anthranilate isomerase	1.7634300798
+UniRef50_Q1GK79: N-(5'-phosphoribosyl)anthranilate isomerase|unclassified	1.7634300798
+UniRef50_UPI00025588ED: cell division protein MraZ	1.7633986281
+UniRef50_UPI00025588ED: cell division protein MraZ|unclassified	1.7633986281
+UniRef50_P31884: Quinone-reactive Ni/Fe-hydrogenase small chain	1.7630814224
+UniRef50_P31884: Quinone-reactive Ni/Fe-hydrogenase small chain|g__Helicobacter.s__Helicobacter_pylori	1.1806375443
+UniRef50_P31884: Quinone-reactive Ni/Fe-hydrogenase small chain|unclassified	0.5824438782
+UniRef50_UPI00031064D1: hypothetical protein	1.7628040444
+UniRef50_UPI00031064D1: hypothetical protein|unclassified	1.7628040444
+UniRef50_Q21PB1	1.7627939774
+UniRef50_Q21PB1|unclassified	1.7627939774
+UniRef50_Q8K9F4: tRNA (guanine-N(1)-)-methyltransferase	1.7626416987
+UniRef50_Q8K9F4: tRNA (guanine-N(1)-)-methyltransferase|g__Escherichia.s__Escherichia_coli	1.6835016835
+UniRef50_Q8K9F4: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0791400152
+UniRef50_P31186: Ribulose bisphosphate carboxylase large chain (Fragment)	1.7626341727
+UniRef50_P31186: Ribulose bisphosphate carboxylase large chain (Fragment)|unclassified	1.7626341727
+UniRef50_I1ELJ8	1.7625594964
+UniRef50_I1ELJ8|unclassified	1.7625594964
+UniRef50_G2KYA9	1.7625505547
+UniRef50_G2KYA9|unclassified	1.7625505547
+UniRef50_S4JQD2	1.7625417133
+UniRef50_S4JQD2|unclassified	1.7625417133
+UniRef50_M9VFH2: ABC transporter associated permease	1.7621555021
+UniRef50_M9VFH2: ABC transporter associated permease|g__Propionibacterium.s__Propionibacterium_acnes	1.7621555021
+UniRef50_A0A009MS46	1.7619784298
+UniRef50_A0A009MS46|unclassified	1.7619784298
+UniRef50_U6ZIP0	1.7619498522
+UniRef50_U6ZIP0|unclassified	1.7619498522
+UniRef50_A6M1G6: 2-aminoethylphosphonate--pyruvate transaminase	1.7616058281
+UniRef50_A6M1G6: 2-aminoethylphosphonate--pyruvate transaminase|g__Clostridium.s__Clostridium_beijerinckii	1.7616058281
+UniRef50_A6LV74: Integral membrane sensor signal transduction histidine kinase	1.7614367431
+UniRef50_A6LV74: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	1.7614367431
+UniRef50_R6KR67: ABC transporter solute-binding protein	1.7612819980
+UniRef50_R6KR67: ABC transporter solute-binding protein|unclassified	1.7612819980
+UniRef50_UPI0001B44150: hypothetical protein	1.7611601075
+UniRef50_UPI0001B44150: hypothetical protein|unclassified	1.7611601075
+UniRef50_E6MBZ3	1.7611529427
+UniRef50_E6MBZ3|unclassified	1.7611529427
+UniRef50_UPI000359C4BA: PREDICTED: collagen alpha-2(I) chain-like	1.7610103542
+UniRef50_UPI000359C4BA: PREDICTED: collagen alpha-2(I) chain-like|unclassified	1.7610103542
+UniRef50_Q9RY14	1.7608752345
+UniRef50_Q9RY14|unclassified	1.7608752345
+UniRef50_F9YXC7	1.7606124948
+UniRef50_F9YXC7|g__Propionibacterium.s__Propionibacterium_acnes	1.7606124948
+UniRef50_G7LXC6: Lytic transglycosylase catalytic	1.7605847847
+UniRef50_G7LXC6: Lytic transglycosylase catalytic|g__Clostridium.s__Clostridium_beijerinckii	1.7605847847
+UniRef50_A6M132: Abortive infection protein	1.7605633803
+UniRef50_A6M132: Abortive infection protein|g__Clostridium.s__Clostridium_beijerinckii	1.7605633803
+UniRef50_P37508	1.7605633803
+UniRef50_P37508|g__Clostridium.s__Clostridium_beijerinckii	1.7605633803
+UniRef50_Q1QD84: Oxidoreductase FAD/NAD(P)-binding protein	1.7605633803
+UniRef50_Q1QD84: Oxidoreductase FAD/NAD(P)-binding protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.7605633803
+UniRef50_Q9RZG4	1.7605633803
+UniRef50_Q9RZG4|unclassified	1.7605633803
+UniRef50_UPI00046685FF: hypothetical protein, partial	1.7605131037
+UniRef50_UPI00046685FF: hypothetical protein, partial|unclassified	1.7605131037
+UniRef50_Q48EZ4: Sensor histidine kinase	1.7599801517
+UniRef50_Q48EZ4: Sensor histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7599801517
+UniRef50_UPI0004239CF3: serine kinase	1.7595566850
+UniRef50_UPI0004239CF3: serine kinase|unclassified	1.7595566850
+UniRef50_F7UGZ9	1.7594333562
+UniRef50_F7UGZ9|unclassified	1.7594333562
+UniRef50_Q5SJ70: Acetyl-Coenzyme A dehydrogenase, medium chain	1.7592297727
+UniRef50_Q5SJ70: Acetyl-Coenzyme A dehydrogenase, medium chain|g__Deinococcus.s__Deinococcus_radiodurans	1.7592297727
+UniRef50_A7HCL8: Cobalamin biosynthesis protein CbiD	1.7585696839
+UniRef50_A7HCL8: Cobalamin biosynthesis protein CbiD|unclassified	1.7585696839
+UniRef50_E0TG63	1.7585149067
+UniRef50_E0TG63|unclassified	1.7585149067
+UniRef50_UPI000472C820: hypothetical protein	1.7583816891
+UniRef50_UPI000472C820: hypothetical protein|unclassified	1.7583816891
+UniRef50_B2THL1: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	1.7578265969
+UniRef50_B2THL1: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|g__Clostridium.s__Clostridium_beijerinckii	1.6000000000
+UniRef50_B2THL1: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.1578265969
+UniRef50_D1DHF6: Oxidoreductase	1.7577302808
+UniRef50_D1DHF6: Oxidoreductase|g__Neisseria.s__Neisseria_meningitidis	1.7577302808
+UniRef50_J7TT99: Transport protein SgaT, putative	1.7576780559
+UniRef50_J7TT99: Transport protein SgaT, putative|g__Clostridium.s__Clostridium_beijerinckii	1.7576780559
+UniRef50_UPI00047A0DA3: cation:proton antiporter	1.7576756931
+UniRef50_UPI00047A0DA3: cation:proton antiporter|unclassified	1.7576756931
+UniRef50_G8LHE2	1.7576418468
+UniRef50_G8LHE2|unclassified	1.7576418468
+UniRef50_Q9FS88: 2-methylacyl-CoA dehydrogenase, mitochondrial	1.7576334655
+UniRef50_Q9FS88: 2-methylacyl-CoA dehydrogenase, mitochondrial|g__Acinetobacter.s__Acinetobacter_baumannii	1.7576334655
+UniRef50_T2EAI6	1.7576334655
+UniRef50_T2EAI6|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7576334655
+UniRef50_M1MMU8	1.7576247067
+UniRef50_M1MMU8|g__Clostridium.s__Clostridium_beijerinckii	1.7576247067
+UniRef50_G7U7H1: Glutamate synthase small subunit	1.7574864480
+UniRef50_G7U7H1: Glutamate synthase small subunit|g__Propionibacterium.s__Propionibacterium_acnes	1.7574864480
+UniRef50_A6LZD7: Flavin reductase domain protein, FMN-binding	1.7574692443
+UniRef50_A6LZD7: Flavin reductase domain protein, FMN-binding|g__Clostridium.s__Clostridium_beijerinckii	1.7574692443
+UniRef50_E3E7X3: Oxidoreductase Fe-S binding subunit	1.7574692443
+UniRef50_E3E7X3: Oxidoreductase Fe-S binding subunit|g__Clostridium.s__Clostridium_beijerinckii	1.7574692443
+UniRef50_K0H1B5	1.7574692443
+UniRef50_K0H1B5|g__Acinetobacter.s__Acinetobacter_baumannii	1.7574692443
+UniRef50_L0GNQ8: NTP pyrophosphohydrolase	1.7574692443
+UniRef50_L0GNQ8: NTP pyrophosphohydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7574692443
+UniRef50_UPI000328A511	1.7574692443
+UniRef50_UPI000328A511|unclassified	1.7574692443
+UniRef50_UPI00035D8D70: hypothetical protein	1.7574019085
+UniRef50_UPI00035D8D70: hypothetical protein|unclassified	1.7574019085
+UniRef50_UPI00047BCF38: AsnC family transcriptional regulator	1.7572506322
+UniRef50_UPI00047BCF38: AsnC family transcriptional regulator|unclassified	1.7572506322
+UniRef50_P57109: Maleylacetoacetate isomerase	1.7564818492
+UniRef50_P57109: Maleylacetoacetate isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5723270440
+UniRef50_P57109: Maleylacetoacetate isomerase|unclassified	0.1841548051
+UniRef50_UPI000463EC33: hypothetical protein	1.7564607683
+UniRef50_UPI000463EC33: hypothetical protein|unclassified	1.7564607683
+UniRef50_Q9HWS2: UPF0276 protein PA4106	1.7562312512
+UniRef50_Q9HWS2: UPF0276 protein PA4106|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4836795252
+UniRef50_Q9HWS2: UPF0276 protein PA4106|unclassified	0.2725517260
+UniRef50_A6E7D3	1.7552666787
+UniRef50_A6E7D3|unclassified	1.7552666787
+UniRef50_UPI0003790A6F: hypothetical protein	1.7552423590
+UniRef50_UPI0003790A6F: hypothetical protein|unclassified	1.7552423590
+UniRef50_UPI0003607215: hypothetical protein, partial	1.7552012946
+UniRef50_UPI0003607215: hypothetical protein, partial|unclassified	1.7552012946
+UniRef50_M1MXD6: Xylose transport system permease protein XylH	1.7551638769
+UniRef50_M1MXD6: Xylose transport system permease protein XylH|g__Clostridium.s__Clostridium_beijerinckii	1.7551638769
+UniRef50_E3A496	1.7550925308
+UniRef50_E3A496|unclassified	1.7550925308
+UniRef50_W1EYJ0: Ferredoxin-like protein YgcO	1.7548068188
+UniRef50_W1EYJ0: Ferredoxin-like protein YgcO|unclassified	1.7548068188
+UniRef50_UPI000255A9DA: hypothetical protein	1.7547616821
+UniRef50_UPI000255A9DA: hypothetical protein|unclassified	1.7547616821
+UniRef50_A6M2Z6: Transketolase, central region	1.7543859649
+UniRef50_A6M2Z6: Transketolase, central region|g__Clostridium.s__Clostridium_beijerinckii	1.7543859649
+UniRef50_B2TI10: Peptidyl-tRNA hydrolase	1.7543859649
+UniRef50_B2TI10: Peptidyl-tRNA hydrolase|g__Clostridium.s__Clostridium_beijerinckii	1.7543859649
+UniRef50_H1FI32: Imidazole glycerol phosphate synthase subunit hisF	1.7543859649
+UniRef50_H1FI32: Imidazole glycerol phosphate synthase subunit hisF|g__Escherichia.s__Escherichia_coli	1.7543859649
+UniRef50_P0AET6: Protein HdeD	1.7543859649
+UniRef50_P0AET6: Protein HdeD|g__Escherichia.s__Escherichia_coli	1.7543859649
+UniRef50_Q03MR7: Protein GrpE	1.7543859649
+UniRef50_Q03MR7: Protein GrpE|g__Streptococcus.s__Streptococcus_agalactiae	1.7543859649
+UniRef50_UPI00036A2FF2: hypothetical protein	1.7539660179
+UniRef50_UPI00036A2FF2: hypothetical protein|unclassified	1.7539660179
+UniRef50_F0RLL3: DEAD/DEAH box helicase domain protein	1.7533209665
+UniRef50_F0RLL3: DEAD/DEAH box helicase domain protein|g__Deinococcus.s__Deinococcus_radiodurans	1.7533209665
+UniRef50_I5BPV0	1.7531085532
+UniRef50_I5BPV0|unclassified	1.7531085532
+UniRef50_W5X7H6: Potassium-transporting ATPase C chain KDPC (Potassium-translocating ATPase C chain)	1.7530932839
+UniRef50_W5X7H6: Potassium-transporting ATPase C chain KDPC (Potassium-translocating ATPase C chain)|unclassified	1.7530932839
+UniRef50_UPI000467EBFF: hypothetical protein	1.7528723310
+UniRef50_UPI000467EBFF: hypothetical protein|unclassified	1.7528723310
+UniRef50_D3H2W2	1.7526207565
+UniRef50_D3H2W2|unclassified	1.7526207565
+UniRef50_W4UBQ2: Glucoamylase S1/S2	1.7523135643
+UniRef50_W4UBQ2: Glucoamylase S1/S2|unclassified	1.7523135643
+UniRef50_V9TW60	1.7521475922
+UniRef50_V9TW60|unclassified	1.7521475922
+UniRef50_A3VY81	1.7513871222
+UniRef50_A3VY81|unclassified	1.7513871222
+UniRef50_D4DV70	1.7513134851
+UniRef50_D4DV70|unclassified	1.7513134851
+UniRef50_H3F275	1.7513134851
+UniRef50_H3F275|g__Escherichia.s__Escherichia_coli	1.7513134851
+UniRef50_L7DFJ3: TetR family transcriptional regulator	1.7513134851
+UniRef50_L7DFJ3: TetR family transcriptional regulator|unclassified	1.7513134851
+UniRef50_Q9K0S5	1.7513134851
+UniRef50_Q9K0S5|g__Neisseria.s__Neisseria_meningitidis	1.7513134851
+UniRef50_UPI00036C600E: hypothetical protein, partial	1.7513134851
+UniRef50_UPI00036C600E: hypothetical protein, partial|unclassified	1.7513134851
+UniRef50_UPI0003B333D6: AsnC family transcriptional regulator, partial	1.7510521369
+UniRef50_UPI0003B333D6: AsnC family transcriptional regulator, partial|unclassified	1.7510521369
+UniRef50_D4HFL5: AMP-binding enzyme	1.7505220839
+UniRef50_D4HFL5: AMP-binding enzyme|g__Propionibacterium.s__Propionibacterium_acnes	1.7505220839
+UniRef50_G7QF23: Peptide chain release factor 3	1.7504908936
+UniRef50_G7QF23: Peptide chain release factor 3|g__Deinococcus.s__Deinococcus_radiodurans	1.7504908936
+UniRef50_F7XAZ8	1.7504378638
+UniRef50_F7XAZ8|unclassified	1.7504378638
+UniRef50_C5ABI0: Major facilitator superfamily MFS_1	1.7501637492
+UniRef50_C5ABI0: Major facilitator superfamily MFS_1|g__Acinetobacter.s__Acinetobacter_baumannii	1.7501637492
+UniRef50_A6QE92	1.7501483113
+UniRef50_A6QE92|unclassified	1.7501483113
+UniRef50_UPI0002000D3D: DeoR family transcriptional regulator	1.7497414730
+UniRef50_UPI0002000D3D: DeoR family transcriptional regulator|unclassified	1.7497414730
+UniRef50_S1SX02	1.7497119732
+UniRef50_S1SX02|unclassified	1.7497119732
+UniRef50_A0A024KA53: Auxin-binding protein, putative	1.7496436727
+UniRef50_A0A024KA53: Auxin-binding protein, putative|unclassified	1.7496436727
+UniRef50_Q0TR80: Amidohydrolase family protein	1.7492974509
+UniRef50_Q0TR80: Amidohydrolase family protein|g__Clostridium.s__Clostridium_beijerinckii	1.7492974509
+UniRef50_Q6A7A7: Lysyl-tRNA synthetase	1.7492023192
+UniRef50_Q6A7A7: Lysyl-tRNA synthetase|g__Propionibacterium.s__Propionibacterium_acnes	1.7492023192
+UniRef50_A4WUP2: PAS/PAC sensor hybrid histidine kinase	1.7488876864
+UniRef50_A4WUP2: PAS/PAC sensor hybrid histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.7488876864
+UniRef50_UPI00030B9AA1: hypothetical protein	1.7486702696
+UniRef50_UPI00030B9AA1: hypothetical protein|unclassified	1.7486702696
+UniRef50_UPI00047EB8E0: hypothetical protein	1.7485499374
+UniRef50_UPI00047EB8E0: hypothetical protein|unclassified	1.7485499374
+UniRef50_UPI000465878F: hypothetical protein	1.7483100921
+UniRef50_UPI000465878F: hypothetical protein|unclassified	1.7483100921
+UniRef50_B5Y8S3: Transcription termination factor Rho	1.7482517483
+UniRef50_B5Y8S3: Transcription termination factor Rho|g__Propionibacterium.s__Propionibacterium_acnes	1.7482517483
+UniRef50_T1XQN9	1.7482517483
+UniRef50_T1XQN9|g__Staphylococcus.s__Staphylococcus_aureus	1.7482517483
+UniRef50_UPI00034442F6: PREDICTED: translation initiation factor IF-2-like	1.7482517483
+UniRef50_UPI00034442F6: PREDICTED: translation initiation factor IF-2-like|unclassified	1.7482517483
+UniRef50_W0PBR3: Histidine transport system permease protein HisM	1.7482517483
+UniRef50_W0PBR3: Histidine transport system permease protein HisM|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7482517483
+UniRef50_L7F3W2	1.7476407852
+UniRef50_L7F3W2|unclassified	1.7476407852
+UniRef50_D4H9Y2: Biotin biosynthesis bifunctional protein BioWF	1.7471432350
+UniRef50_D4H9Y2: Biotin biosynthesis bifunctional protein BioWF|g__Propionibacterium.s__Propionibacterium_acnes	1.7471432350
+UniRef50_I0C2U4: Nitrogen regulation protein NIFR3	1.7470239339
+UniRef50_I0C2U4: Nitrogen regulation protein NIFR3|unclassified	1.7470239339
+UniRef50_W4U3A3: Valyl-tRNA synthetase	1.7467091083
+UniRef50_W4U3A3: Valyl-tRNA synthetase|g__Propionibacterium.s__Propionibacterium_acnes	1.7467091083
+UniRef50_Q8D385: Zinc import ATP-binding protein ZnuC	1.7467018100
+UniRef50_Q8D385: Zinc import ATP-binding protein ZnuC|unclassified	1.7467018100
+UniRef50_Q6PWX8: AmpC (Fragment)	1.7466546061
+UniRef50_Q6PWX8: AmpC (Fragment)|unclassified	1.7466546061
+UniRef50_L9HLK0: Putative glc operon transcriptional activator	1.7464886462
+UniRef50_L9HLK0: Putative glc operon transcriptional activator|unclassified	1.7464886462
+UniRef50_E7C271: MoxR-like ATPases	1.7464858906
+UniRef50_E7C271: MoxR-like ATPases|unclassified	1.7464858906
+UniRef50_UPI0002F99B32: hypothetical protein	1.7462228508
+UniRef50_UPI0002F99B32: hypothetical protein|unclassified	1.7462228508
+UniRef50_A1T8W3: Imidazoleglycerol-phosphate dehydratase	1.7460165932
+UniRef50_A1T8W3: Imidazoleglycerol-phosphate dehydratase|unclassified	1.7460165932
+UniRef50_A3JZS3	1.7454104839
+UniRef50_A3JZS3|unclassified	1.7454104839
+UniRef50_N9GSG0	1.7453622932
+UniRef50_N9GSG0|unclassified	1.7453622932
+UniRef50_Q58730: Putative UTP--glucose-1-phosphate uridylyltransferase	1.7453255521
+UniRef50_Q58730: Putative UTP--glucose-1-phosphate uridylyltransferase|unclassified	1.7453255521
+UniRef50_C1DQ56	1.7452006981
+UniRef50_C1DQ56|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7452006981
+UniRef50_C3PHK6: Lipoyl synthase	1.7452006981
+UniRef50_C3PHK6: Lipoyl synthase|g__Propionibacterium.s__Propionibacterium_acnes	1.7452006981
+UniRef50_F2AHJ8	1.7452006981
+UniRef50_F2AHJ8|unclassified	1.7452006981
+UniRef50_I0ZSX7: Putative transporter	1.7452006981
+UniRef50_I0ZSX7: Putative transporter|g__Escherichia.s__Escherichia_coli	1.7452006981
+UniRef50_I6UMD2: Acetyltransferase	1.7452006981
+UniRef50_I6UMD2: Acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	1.7452006981
+UniRef50_F4D464: Heavy metal translocating P-type ATPase	1.7450633110
+UniRef50_F4D464: Heavy metal translocating P-type ATPase|g__Helicobacter.s__Helicobacter_pylori	1.7450633110
+UniRef50_V6XCN4	1.7449154777
+UniRef50_V6XCN4|unclassified	1.7449154777
+UniRef50_X2XA75	1.7447536596
+UniRef50_X2XA75|unclassified	1.7447536596
+UniRef50_P56072: L-serine dehydratase	1.7446626856
+UniRef50_P56072: L-serine dehydratase|g__Helicobacter.s__Helicobacter_pylori	1.6616550002
+UniRef50_P56072: L-serine dehydratase|unclassified	0.0830076854
+UniRef50_X1DLQ6: Marine sediment metagenome DNA, contig: S01H4_S04748	1.7444708776
+UniRef50_X1DLQ6: Marine sediment metagenome DNA, contig: S01H4_S04748|unclassified	1.7444708776
+UniRef50_UPI0002653EEB: PREDICTED: peroxiredoxin-5, mitochondrial-like	1.7439991525
+UniRef50_UPI0002653EEB: PREDICTED: peroxiredoxin-5, mitochondrial-like|unclassified	1.7439991525
+UniRef50_M9VKY5: Mannose-6-phosphate isomerase	1.7439718655
+UniRef50_M9VKY5: Mannose-6-phosphate isomerase|g__Propionibacterium.s__Propionibacterium_acnes	1.7439718655
+UniRef50_A0A017HEB8: Flp pilus assembly protein TadG	1.7439675241
+UniRef50_A0A017HEB8: Flp pilus assembly protein TadG|unclassified	1.7439675241
+UniRef50_N2E2W4: Putative gp57	1.7436614795
+UniRef50_N2E2W4: Putative gp57|unclassified	1.7436614795
+UniRef50_X5H3W9	1.7436567421
+UniRef50_X5H3W9|unclassified	1.7436567421
+UniRef50_W9R7E8	1.7436472541
+UniRef50_W9R7E8|unclassified	1.7436472541
+UniRef50_H4PTT9	1.7435688161
+UniRef50_H4PTT9|unclassified	1.7435688161
+UniRef50_Q167I1	1.7430884860
+UniRef50_Q167I1|unclassified	1.7430884860
+UniRef50_UPI0003675C39: hypothetical protein	1.7428948159
+UniRef50_UPI0003675C39: hypothetical protein|unclassified	1.7428948159
+UniRef50_A4WW20	1.7428869198
+UniRef50_A4WW20|unclassified	1.7428869198
+UniRef50_Q1PED5: Glycine-rich protein	1.7428444925
+UniRef50_Q1PED5: Glycine-rich protein|unclassified	1.7428444925
+UniRef50_D3P3K9: Transposase	1.7424893846
+UniRef50_D3P3K9: Transposase|unclassified	1.7424893846
+UniRef50_T1BF52: Protein containing DUF955 (Fragment)	1.7424843376
+UniRef50_T1BF52: Protein containing DUF955 (Fragment)|unclassified	1.7424843376
+UniRef50_UPI00035F36BD: hypothetical protein	1.7423395492
+UniRef50_UPI00035F36BD: hypothetical protein|unclassified	1.7423395492
+UniRef50_UPI000262CB46: DNA-binding histone-like nucleoid-structuring protein H-NS, partial	1.7422871731
+UniRef50_UPI000262CB46: DNA-binding histone-like nucleoid-structuring protein H-NS, partial|unclassified	1.7422871731
+UniRef50_S1SCM4: LigA	1.7420058477
+UniRef50_S1SCM4: LigA|unclassified	1.7420058477
+UniRef50_L4KBP0: UPF0380 protein yfjQ	1.7419862651
+UniRef50_L4KBP0: UPF0380 protein yfjQ|unclassified	1.7419862651
+UniRef50_UPI000474B21F: porin	1.7418269984
+UniRef50_UPI000474B21F: porin|unclassified	1.7418269984
+UniRef50_G7U7F2: Pyridine nucleotide-disulfide oxidoreductase	1.7415985468
+UniRef50_G7U7F2: Pyridine nucleotide-disulfide oxidoreductase|g__Propionibacterium.s__Propionibacterium_acnes	1.7415985468
+UniRef50_UPI0003771110: hypothetical protein	1.7414787269
+UniRef50_UPI0003771110: hypothetical protein|unclassified	1.7414787269
+UniRef50_U5RY54	1.7414180010
+UniRef50_U5RY54|g__Clostridium.s__Clostridium_beijerinckii	1.7414180010
+UniRef50_UPI0003C19C73: PREDICTED: tryptophan synthase beta chain 1, chloroplastic-like	1.7413916214
+UniRef50_UPI0003C19C73: PREDICTED: tryptophan synthase beta chain 1, chloroplastic-like|unclassified	1.7413916214
+UniRef50_Q6F8V1: 2,3-dihydroxybenzoate-AMP ligase	1.7413428546
+UniRef50_Q6F8V1: 2,3-dihydroxybenzoate-AMP ligase|g__Acinetobacter.s__Acinetobacter_baumannii	1.7413428546
+UniRef50_P9WH42: 30S ribosomal protein S1	1.7413065402
+UniRef50_P9WH42: 30S ribosomal protein S1|g__Propionibacterium.s__Propionibacterium_acnes	1.7413065402
+UniRef50_G7LWI4: DNA polymerase	1.7410142465
+UniRef50_G7LWI4: DNA polymerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2201809132
+UniRef50_G7LWI4: DNA polymerase|g__Escherichia.s__Escherichia_coli	0.5208333333
+UniRef50_UPI00036DEBF7: hypothetical protein, partial	1.7406088385
+UniRef50_UPI00036DEBF7: hypothetical protein, partial|unclassified	1.7406088385
+UniRef50_UPI0003753EFA: ArsR family transcriptional regulator	1.7405209208
+UniRef50_UPI0003753EFA: ArsR family transcriptional regulator|unclassified	1.7405209208
+UniRef50_UPI00037AF8F5: 50S ribosomal protein L10	1.7402783246
+UniRef50_UPI00037AF8F5: 50S ribosomal protein L10|unclassified	1.7402783246
+UniRef50_A6LVB6: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B	1.7402201662
+UniRef50_A6LVB6: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B|g__Clostridium.s__Clostridium_beijerinckii	1.7402201662
+UniRef50_G5S116: Ni/Fe-hydrogenase 2 B-type cytochrome subunit	1.7402159537
+UniRef50_G5S116: Ni/Fe-hydrogenase 2 B-type cytochrome subunit|unclassified	1.7402159537
+UniRef50_Q0FDY6	1.7400684668
+UniRef50_Q0FDY6|unclassified	1.7400684668
+UniRef50_K0CDY8	1.7395960697
+UniRef50_K0CDY8|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5948963317
+UniRef50_K0CDY8|unclassified	0.1446997380
+UniRef50_J2LVD6	1.7392195571
+UniRef50_J2LVD6|unclassified	1.7392195571
+UniRef50_B6IW38	1.7391769803
+UniRef50_B6IW38|unclassified	1.7391769803
+UniRef50_A3MA07	1.7391304348
+UniRef50_A3MA07|g__Acinetobacter.s__Acinetobacter_baumannii	1.7391304348
+UniRef50_A6M043: Transcriptional regulator, TetR family	1.7391304348
+UniRef50_A6M043: Transcriptional regulator, TetR family|g__Clostridium.s__Clostridium_beijerinckii	1.7391304348
+UniRef50_A9AH86: Glutamine amidotransferase class-II	1.7391304348
+UniRef50_A9AH86: Glutamine amidotransferase class-II|g__Acinetobacter.s__Acinetobacter_baumannii	1.7391304348
+UniRef50_G7M622: Transcriptional regulator, LuxR family	1.7391304348
+UniRef50_G7M622: Transcriptional regulator, LuxR family|g__Clostridium.s__Clostridium_beijerinckii	1.7391304348
+UniRef50_K9NBL7: Formate dehydrogenase family accessory protein FdhD	1.7391304348
+UniRef50_K9NBL7: Formate dehydrogenase family accessory protein FdhD|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7391304348
+UniRef50_M1FE06: Cobalamin (Vitamin B12) biosynthesis CbiM protein	1.7391304348
+UniRef50_M1FE06: Cobalamin (Vitamin B12) biosynthesis CbiM protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.7391304348
+UniRef50_Q3K2Q5: Biotin synthase	1.7391304348
+UniRef50_Q3K2Q5: Biotin synthase|g__Streptococcus.s__Streptococcus_agalactiae	1.7391304348
+UniRef50_S5NIJ4: 6-pyruvoyl tetrahydropterin synthase family protein	1.7391304348
+UniRef50_S5NIJ4: 6-pyruvoyl tetrahydropterin synthase family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.7391304348
+UniRef50_J3LJU9	1.7391224095
+UniRef50_J3LJU9|unclassified	1.7391224095
+UniRef50_W8RV97	1.7390522379
+UniRef50_W8RV97|unclassified	1.7390522379
+UniRef50_Q0DIE6: Os05g0395400 protein	1.7389545388
+UniRef50_Q0DIE6: Os05g0395400 protein|unclassified	1.7389545388
+UniRef50_UPI00029CC079: transcriptional regulator, partial	1.7381834329
+UniRef50_UPI00029CC079: transcriptional regulator, partial|unclassified	1.7381834329
+UniRef50_N6U9L0	1.7381107645
+UniRef50_N6U9L0|unclassified	1.7381107645
+UniRef50_UPI00046FDA71: acyl transferase	1.7377794366
+UniRef50_UPI00046FDA71: acyl transferase|unclassified	1.7377794366
+UniRef50_A7IBU8: LigA	1.7377565195
+UniRef50_A7IBU8: LigA|unclassified	1.7377565195
+UniRef50_UPI0003AA87E8: hypothetical protein	1.7377426254
+UniRef50_UPI0003AA87E8: hypothetical protein|unclassified	1.7377426254
+UniRef50_UPI0004701E92: prephenate dehydratase	1.7376928537
+UniRef50_UPI0004701E92: prephenate dehydratase|unclassified	1.7376928537
+UniRef50_X2M9R8	1.7376884349
+UniRef50_X2M9R8|unclassified	1.7376884349
+UniRef50_UPI000466D01F: hypothetical protein	1.7376583102
+UniRef50_UPI000466D01F: hypothetical protein|unclassified	1.7376583102
+UniRef50_N6UH87	1.7376075258
+UniRef50_N6UH87|unclassified	1.7376075258
+UniRef50_U8BRR9	1.7374205955
+UniRef50_U8BRR9|unclassified	1.7374205955
+UniRef50_Q9CH32: Multidrug resistance protein	1.7371651192
+UniRef50_Q9CH32: Multidrug resistance protein|g__Streptococcus.s__Streptococcus_agalactiae	1.7371651192
+UniRef50_R4ZXU9: Lysyl aminopeptidase	1.7370257802
+UniRef50_R4ZXU9: Lysyl aminopeptidase|g__Streptococcus.s__Streptococcus_agalactiae	1.7370257802
+UniRef50_G5JYM2: PspC domain protein	1.7368925390
+UniRef50_G5JYM2: PspC domain protein|unclassified	1.7368925390
+UniRef50_Q3JXV9	1.7368167269
+UniRef50_Q3JXV9|unclassified	1.7368167269
+UniRef50_Z2DM54	1.7367746427
+UniRef50_Z2DM54|unclassified	1.7367746427
+UniRef50_A0A023RWV4: Histidine kinase	1.7366757001
+UniRef50_A0A023RWV4: Histidine kinase|g__Acinetobacter.s__Acinetobacter_baumannii	1.7366757001
+UniRef50_A0A023XLY7	1.7366205983
+UniRef50_A0A023XLY7|unclassified	1.7366205983
+UniRef50_A6V8R6: Ribonuclease D	1.7364956388
+UniRef50_A6V8R6: Ribonuclease D|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7364956388
+UniRef50_M4MNB9: ABC transporter,ATP-binding protein	1.7364915491
+UniRef50_M4MNB9: ABC transporter,ATP-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.7364915491
+UniRef50_V9XEY4: Glutaminase	1.7362424480
+UniRef50_V9XEY4: Glutaminase|g__Acinetobacter.s__Acinetobacter_baumannii	1.7362424480
+UniRef50_C8NS74: Formamidopyrimidine-DNA glycosylase H2TH domain protein	1.7361111111
+UniRef50_C8NS74: Formamidopyrimidine-DNA glycosylase H2TH domain protein|g__Propionibacterium.s__Propionibacterium_acnes	1.7361111111
+UniRef50_E0THF9: Amino acid permease-associated region protein	1.7360824488
+UniRef50_E0THF9: Amino acid permease-associated region protein|unclassified	1.7360824488
+UniRef50_K2H9R9	1.7360438390
+UniRef50_K2H9R9|unclassified	1.7360438390
+UniRef50_D7G2W5	1.7355364726
+UniRef50_D7G2W5|unclassified	1.7355364726
+UniRef50_UPI000219386F: multidrug resistance protein SMR	1.7354837051
+UniRef50_UPI000219386F: multidrug resistance protein SMR|unclassified	1.7354837051
+UniRef50_E6MUY1: Amino acid carrier family protein	1.7351278966
+UniRef50_E6MUY1: Amino acid carrier family protein|g__Neisseria.s__Neisseria_meningitidis	1.7351278966
+UniRef50_A6UYI4: 6-aminohexanoate-dimer hydrolase	1.7347114944
+UniRef50_A6UYI4: 6-aminohexanoate-dimer hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7347114944
+UniRef50_H4INC9	1.7344135985
+UniRef50_H4INC9|unclassified	1.7344135985
+UniRef50_W4JVY5	1.7342482405
+UniRef50_W4JVY5|unclassified	1.7342482405
+UniRef50_N6URM0	1.7341326528
+UniRef50_N6URM0|unclassified	1.7341326528
+UniRef50_E1J1Y2	1.7340631214
+UniRef50_E1J1Y2|unclassified	1.7340631214
+UniRef50_UPI000475841F: hypothetical protein, partial	1.7338744128
+UniRef50_UPI000475841F: hypothetical protein, partial|unclassified	1.7338744128
+UniRef50_Z2DNU7	1.7337416281
+UniRef50_Z2DNU7|unclassified	1.7337416281
+UniRef50_V1C0H9	1.7336165665
+UniRef50_V1C0H9|unclassified	1.7336165665
+UniRef50_UPI00036EFCB4: alpha-L-Rha alpha-1,3-L-rhamnosyltransferase, partial	1.7335336904
+UniRef50_UPI00036EFCB4: alpha-L-Rha alpha-1,3-L-rhamnosyltransferase, partial|g__Streptococcus.s__Streptococcus_mutans	1.7335336904
+UniRef50_P03880: Intron-encoded DNA endonuclease I-AniI	1.7334188699
+UniRef50_P03880: Intron-encoded DNA endonuclease I-AniI|unclassified	1.7334188699
+UniRef50_A6X6Y3	1.7332870430
+UniRef50_A6X6Y3|unclassified	1.7332870430
+UniRef50_I0VLP3	1.7332546596
+UniRef50_I0VLP3|unclassified	1.7332546596
+UniRef50_A0A011PNQ0	1.7331022530
+UniRef50_A0A011PNQ0|unclassified	1.7331022530
+UniRef50_A0A023WNU6: TetR family transcriptional regulator	1.7331022530
+UniRef50_A0A023WNU6: TetR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7331022530
+UniRef50_A6LZY6: Molybdopterin-guanine dinucleotide biosynthesis protein B	1.7331022530
+UniRef50_A6LZY6: Molybdopterin-guanine dinucleotide biosynthesis protein B|g__Clostridium.s__Clostridium_beijerinckii	1.7331022530
+UniRef50_B2UYL5	1.7331022530
+UniRef50_B2UYL5|g__Clostridium.s__Clostridium_beijerinckii	1.7331022530
+UniRef50_Q9RR67: Thymidylate synthase	1.7331022530
+UniRef50_Q9RR67: Thymidylate synthase|g__Deinococcus.s__Deinococcus_radiodurans	1.7331022530
+UniRef50_UPI00037FDD54: hypothetical protein	1.7329776699
+UniRef50_UPI00037FDD54: hypothetical protein|unclassified	1.7329776699
+UniRef50_A6WIX4: SMC domain protein	1.7327765475
+UniRef50_A6WIX4: SMC domain protein|unclassified	1.7327765475
+UniRef50_UPI0003647523: hypothetical protein, partial	1.7324992191
+UniRef50_UPI0003647523: hypothetical protein, partial|unclassified	1.7324992191
+UniRef50_Q3HKE7: ABC cobalamin/Fe3+-siderophore transporter, periplasmic ligand binding protein	1.7322859632
+UniRef50_Q3HKE7: ABC cobalamin/Fe3+-siderophore transporter, periplasmic ligand binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.2562814070
+UniRef50_Q3HKE7: ABC cobalamin/Fe3+-siderophore transporter, periplasmic ligand binding protein|unclassified	0.4760045562
+UniRef50_M0BHI2: Nucleolar protein-like protein	1.7322698162
+UniRef50_M0BHI2: Nucleolar protein-like protein|unclassified	1.7322698162
+UniRef50_L5KY59	1.7321087683
+UniRef50_L5KY59|unclassified	1.7321087683
+UniRef50_K0RK72	1.7320054834
+UniRef50_K0RK72|unclassified	1.7320054834
+UniRef50_D8GR57: D-alanyl-D-alanine carboxypeptidase	1.7315148433
+UniRef50_D8GR57: D-alanyl-D-alanine carboxypeptidase|g__Clostridium.s__Clostridium_beijerinckii	1.7315148433
+UniRef50_X2H2G3: RND efflux system, outer membrane lipoprotein CmeC	1.7310647504
+UniRef50_X2H2G3: RND efflux system, outer membrane lipoprotein CmeC|g__Neisseria.s__Neisseria_meningitidis	1.7310647504
+UniRef50_T5BFF8	1.7309626403
+UniRef50_T5BFF8|unclassified	1.7309626403
+UniRef50_K0NIK4	1.7309242791
+UniRef50_K0NIK4|unclassified	1.7309242791
+UniRef50_K2JKX1	1.7308776077
+UniRef50_K2JKX1|unclassified	1.7308776077
+UniRef50_Q3JY71	1.7305486797
+UniRef50_Q3JY71|unclassified	1.7305486797
+UniRef50_G0DSU9: S-adenosylmethionine synthase	1.7303226318
+UniRef50_G0DSU9: S-adenosylmethionine synthase|g__Propionibacterium.s__Propionibacterium_acnes	1.7303226318
+UniRef50_N6YR38: Proline/glycine betaine ABC transporter periplasmic protein	1.7302168768
+UniRef50_N6YR38: Proline/glycine betaine ABC transporter periplasmic protein|unclassified	1.7302168768
+UniRef50_F9YXK7: Two-component sensor histidine kinase	1.7301361734
+UniRef50_F9YXK7: Two-component sensor histidine kinase|g__Propionibacterium.s__Propionibacterium_acnes	1.7301361734
+UniRef50_A6V979	1.7301038062
+UniRef50_A6V979|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7301038062
+UniRef50_F5M6R3	1.7301038062
+UniRef50_F5M6R3|g__Escherichia.s__Escherichia_coli	1.7301038062
+UniRef50_J7TAV9	1.7301038062
+UniRef50_J7TAV9|g__Clostridium.s__Clostridium_beijerinckii	1.7301038062
+UniRef50_A3XE35	1.7298685492
+UniRef50_A3XE35|unclassified	1.7298685492
+UniRef50_Q3JUT4	1.7296520344
+UniRef50_Q3JUT4|unclassified	1.7296520344
+UniRef50_B1H0H4: NAD-dependent Fe-hydrogenase 51kDa NADH dehydrogenase component	1.7293837868
+UniRef50_B1H0H4: NAD-dependent Fe-hydrogenase 51kDa NADH dehydrogenase component|g__Clostridium.s__Clostridium_beijerinckii	1.7293837868
+UniRef50_N0CAR1: Integrase core subunit	1.7290070372
+UniRef50_N0CAR1: Integrase core subunit|unclassified	1.7290070372
+UniRef50_Z5QLE0	1.7289955213
+UniRef50_Z5QLE0|unclassified	1.7289955213
+UniRef50_UPI00035948EC: PREDICTED: skin secretory protein xP2-like	1.7289411227
+UniRef50_UPI00035948EC: PREDICTED: skin secretory protein xP2-like|unclassified	1.7289411227
+UniRef50_Q8DWT2: Membrane protein, putative	1.7289027385
+UniRef50_Q8DWT2: Membrane protein, putative|g__Streptococcus.s__Streptococcus_agalactiae	1.7148124236
+UniRef50_Q8DWT2: Membrane protein, putative|unclassified	0.0140903148
+UniRef50_UPI0003811168: hypothetical protein	1.7285596082
+UniRef50_UPI0003811168: hypothetical protein|unclassified	1.7285596082
+UniRef50_UPI0004700E9C: hypothetical protein	1.7285583944
+UniRef50_UPI0004700E9C: hypothetical protein|unclassified	1.7285583944
+UniRef50_UPI00036731E7: hypothetical protein	1.7284717515
+UniRef50_UPI00036731E7: hypothetical protein|unclassified	1.7284717515
+UniRef50_C6XJS1: Cytochrome oxidase maturation protein, cbb3-type	1.7284434466
+UniRef50_C6XJS1: Cytochrome oxidase maturation protein, cbb3-type|unclassified	1.7284434466
+UniRef50_F3ZHB3: Putative transcriptional regulator, TetR family protein	1.7283835844
+UniRef50_F3ZHB3: Putative transcriptional regulator, TetR family protein|unclassified	1.7283835844
+UniRef50_X5PRY3	1.7281708532
+UniRef50_X5PRY3|unclassified	1.7281708532
+UniRef50_UPI000368E829: hypothetical protein	1.7280090209
+UniRef50_UPI000368E829: hypothetical protein|unclassified	1.7280090209
+UniRef50_UPI00036ACC32: hypothetical protein	1.7278913752
+UniRef50_UPI00036ACC32: hypothetical protein|unclassified	1.7278913752
+UniRef50_F9WFP8: WGS project CAEQ00000000 data, annotated contig 414	1.7278906241
+UniRef50_F9WFP8: WGS project CAEQ00000000 data, annotated contig 414|unclassified	1.7278906241
+UniRef50_UPI0003A53D2C: hypothetical protein	1.7277187245
+UniRef50_UPI0003A53D2C: hypothetical protein|unclassified	1.7277187245
+UniRef50_A4WWM0: Amidase	1.7275113975
+UniRef50_A4WWM0: Amidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.7275113975
+UniRef50_UPI00034A1F63: hypothetical protein	1.7273800612
+UniRef50_UPI00034A1F63: hypothetical protein|unclassified	1.7273800612
+UniRef50_H1UL22: Dehydrogenase	1.7273143741
+UniRef50_H1UL22: Dehydrogenase|unclassified	1.7273143741
+UniRef50_A7BEA1	1.7271157168
+UniRef50_A7BEA1|unclassified	1.7271157168
+UniRef50_H3ZVN7: Gram-positive signal peptide protein, YSIRK family	1.7271157168
+UniRef50_H3ZVN7: Gram-positive signal peptide protein, YSIRK family|g__Staphylococcus.s__Staphylococcus_aureus	1.7271157168
+UniRef50_P57024: Outer-membrane lipoprotein LolB	1.7271157168
+UniRef50_P57024: Outer-membrane lipoprotein LolB|g__Neisseria.s__Neisseria_meningitidis	1.7271157168
+UniRef50_Q9RWP2	1.7271157168
+UniRef50_Q9RWP2|g__Deinococcus.s__Deinococcus_radiodurans	1.7271157168
+UniRef50_V9U8I4	1.7271157168
+UniRef50_V9U8I4|unclassified	1.7271157168
+UniRef50_A6LU68	1.7267859974
+UniRef50_A6LU68|g__Clostridium.s__Clostridium_beijerinckii	1.7267859974
+UniRef50_F2JKB2: MATE efflux family protein	1.7266947297
+UniRef50_F2JKB2: MATE efflux family protein|g__Clostridium.s__Clostridium_beijerinckii	1.7266947297
+UniRef50_C5WGZ9	1.7256561153
+UniRef50_C5WGZ9|unclassified	1.7256561153
+UniRef50_J8USS0	1.7256163067
+UniRef50_J8USS0|unclassified	1.7256163067
+UniRef50_UPI000381C6B2: MULTISPECIES: hypothetical protein	1.7252428906
+UniRef50_UPI000381C6B2: MULTISPECIES: hypothetical protein|unclassified	1.7252428906
+UniRef50_G2IS79: Hypothetical membrane protein	1.7249583671
+UniRef50_G2IS79: Hypothetical membrane protein|unclassified	1.7249583671
+UniRef50_UPI00046AE964: hypothetical protein	1.7247216111
+UniRef50_UPI00046AE964: hypothetical protein|unclassified	1.7247216111
+UniRef50_UPI00037A685C: hypothetical protein	1.7245635221
+UniRef50_UPI00037A685C: hypothetical protein|unclassified	1.7245635221
+UniRef50_A6M0W0: Methyltransferase type 11	1.7243891054
+UniRef50_A6M0W0: Methyltransferase type 11|g__Clostridium.s__Clostridium_beijerinckii	1.7243891054
+UniRef50_X1ADC2: Marine sediment metagenome DNA, contig: S01H4_L03656	1.7242119000
+UniRef50_X1ADC2: Marine sediment metagenome DNA, contig: S01H4_L03656|unclassified	1.7242119000
+UniRef50_A7FAX6	1.7241379310
+UniRef50_A7FAX6|g__Acinetobacter.s__Acinetobacter_baumannii	1.7241379310
+UniRef50_T1U7S9: TrbL/VirB6 plasmid conjugal transfer family protein	1.7241379310
+UniRef50_T1U7S9: TrbL/VirB6 plasmid conjugal transfer family protein|g__Helicobacter.s__Helicobacter_pylori	1.7241379310
+UniRef50_V9C7N3	1.7241379310
+UniRef50_V9C7N3|unclassified	1.7241379310
+UniRef50_A6VC18: Haemagglutination activity domain protein	1.7239659533
+UniRef50_A6VC18: Haemagglutination activity domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7239659533
+UniRef50_UPI0003A2CEFA: transposase	1.7239337161
+UniRef50_UPI0003A2CEFA: transposase|unclassified	1.7239337161
+UniRef50_X5K2Y0	1.7238719172
+UniRef50_X5K2Y0|g__Streptococcus.s__Streptococcus_agalactiae	1.7238719172
+UniRef50_I2JTV6	1.7233950883
+UniRef50_I2JTV6|unclassified	1.7233950883
+UniRef50_A7ILS7	1.7230783505
+UniRef50_A7ILS7|unclassified	1.7230783505
+UniRef50_UPI00023787C6: hypothetical protein	1.7228241581
+UniRef50_UPI00023787C6: hypothetical protein|unclassified	1.7228241581
+UniRef50_E8NHR5: WGS CADB00000000 data, contig 91 (Fragment)	1.7226604657
+UniRef50_E8NHR5: WGS CADB00000000 data, contig 91 (Fragment)|unclassified	1.7226604657
+UniRef50_C1H0U0	1.7226528854
+UniRef50_C1H0U0|unclassified	1.7226528854
+UniRef50_A6LQ92: Transcriptional antiterminator, BglG	1.7224193557
+UniRef50_A6LQ92: Transcriptional antiterminator, BglG|g__Clostridium.s__Clostridium_beijerinckii	1.7224193557
+UniRef50_C1N4B4: Predicted protein	1.7221929372
+UniRef50_C1N4B4: Predicted protein|unclassified	1.7221929372
+UniRef50_I7DNB9	1.7217784558
+UniRef50_I7DNB9|unclassified	1.7217784558
+UniRef50_Q9RWG0	1.7214422847
+UniRef50_Q9RWG0|g__Deinococcus.s__Deinococcus_radiodurans	1.7214422847
+UniRef50_T2BZI8	1.7214168810
+UniRef50_T2BZI8|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.7214168810
+UniRef50_A6LWP9	1.7211703959
+UniRef50_A6LWP9|g__Clostridium.s__Clostridium_beijerinckii	1.7211703959
+UniRef50_B9DZW5	1.7211703959
+UniRef50_B9DZW5|g__Clostridium.s__Clostridium_beijerinckii	1.7211703959
+UniRef50_Q8E4U5	1.7211703959
+UniRef50_Q8E4U5|g__Streptococcus.s__Streptococcus_agalactiae	1.7211703959
+UniRef50_Q88JX6: Porin-like protein GalP	1.7210761536
+UniRef50_Q88JX6: Porin-like protein GalP|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7210761536
+UniRef50_H0AP88	1.7206969863
+UniRef50_H0AP88|unclassified	1.7206969863
+UniRef50_UPI0003F5117A: hypothetical protein	1.7204485994
+UniRef50_UPI0003F5117A: hypothetical protein|unclassified	1.7204485994
+UniRef50_UPI0004675919: hypothetical protein	1.7198737064
+UniRef50_UPI0004675919: hypothetical protein|unclassified	1.7198737064
+UniRef50_A0A025Y0X3	1.7198375328
+UniRef50_A0A025Y0X3|unclassified	1.7198375328
+UniRef50_R7FWE0	1.7195717494
+UniRef50_R7FWE0|unclassified	1.7195717494
+UniRef50_C2LYX6	1.7195022015
+UniRef50_C2LYX6|unclassified	1.7195022015
+UniRef50_E1ZTU1	1.7187583611
+UniRef50_E1ZTU1|unclassified	1.7187583611
+UniRef50_A5CPE6: Thymidine kinase	1.7182130584
+UniRef50_A5CPE6: Thymidine kinase|g__Clostridium.s__Clostridium_beijerinckii	1.7182130584
+UniRef50_F4H6S8: Binding-protein-dependent transport systems inner membrane component	1.7182130584
+UniRef50_F4H6S8: Binding-protein-dependent transport systems inner membrane component|g__Clostridium.s__Clostridium_beijerinckii	1.7182130584
+UniRef50_M8L412: Bacterial regulatory helix-turn-helix , lysR family protein	1.7182130584
+UniRef50_M8L412: Bacterial regulatory helix-turn-helix , lysR family protein|g__Escherichia.s__Escherichia_coli	1.7182130584
+UniRef50_Q46941	1.7182130584
+UniRef50_Q46941|g__Escherichia.s__Escherichia_coli	1.7182130584
+UniRef50_Q9AGG3: Rubrerythrin	1.7182130584
+UniRef50_Q9AGG3: Rubrerythrin|g__Clostridium.s__Clostridium_beijerinckii	1.7182130584
+UniRef50_T7PSP7: 5'-deoxynucleotidase YfbR	1.7182130584
+UniRef50_T7PSP7: 5'-deoxynucleotidase YfbR|g__Escherichia.s__Escherichia_coli	1.7182130584
+UniRef50_C1HFM3	1.7182130584
+UniRef50_C1HFM3|unclassified	1.7182130584
+UniRef50_A8HQK2: Fe-S metabolism associated SufE protein	1.7181237617
+UniRef50_A8HQK2: Fe-S metabolism associated SufE protein|unclassified	1.7181237617
+UniRef50_M9S4L7: Transcriptional regulator	1.7179771112
+UniRef50_M9S4L7: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7179771112
+UniRef50_V8G079	1.7179128751
+UniRef50_V8G079|g__Clostridium.s__Clostridium_beijerinckii	1.7179128751
+UniRef50_B8A0L8	1.7178818553
+UniRef50_B8A0L8|unclassified	1.7178818553
+UniRef50_A0A024KCD9	1.7177206823
+UniRef50_A0A024KCD9|unclassified	1.7177206823
+UniRef50_UPI0003B5FC66: ABC transporter ATP-binding protein	1.7176581346
+UniRef50_UPI0003B5FC66: ABC transporter ATP-binding protein|unclassified	1.7176581346
+UniRef50_H7F9V5: Transcriptional regulator (Fragment)	1.7174964781
+UniRef50_H7F9V5: Transcriptional regulator (Fragment)|unclassified	1.7174964781
+UniRef50_B9KN34	1.7172924060
+UniRef50_B9KN34|unclassified	1.7172924060
+UniRef50_F4NR55	1.7171832002
+UniRef50_F4NR55|unclassified	1.7171832002
+UniRef50_UPI00037918CD: hypothetical protein	1.7170331440
+UniRef50_UPI00037918CD: hypothetical protein|unclassified	1.7170331440
+UniRef50_UPI0003B5810B: transposase	1.7168365989
+UniRef50_UPI0003B5810B: transposase|unclassified	1.7168365989
+UniRef50_K7S7U2: Helicase/secretion neighborhood ATPase	1.7167381974
+UniRef50_K7S7U2: Helicase/secretion neighborhood ATPase|g__Propionibacterium.s__Propionibacterium_acnes	1.7167381974
+UniRef50_UPI000429DAEA: LamB/YcsF family protein	1.7166920579
+UniRef50_UPI000429DAEA: LamB/YcsF family protein|unclassified	1.7166920579
+UniRef50_C1E4C6: Predicted protein	1.7166841666
+UniRef50_C1E4C6: Predicted protein|unclassified	1.7166841666
+UniRef50_Q7P7C9: Electron transport complex protein rnfC	1.7159823806
+UniRef50_Q7P7C9: Electron transport complex protein rnfC|unclassified	1.7159823806
+UniRef50_T2E1R9: Peptidase M16 inactive domain protein	1.7156818648
+UniRef50_T2E1R9: Peptidase M16 inactive domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7156818648
+UniRef50_R6KR64: Major facilitator superfamily MFS_1	1.7154724452
+UniRef50_R6KR64: Major facilitator superfamily MFS_1|g__Clostridium.s__Clostridium_beijerinckii	1.7154724452
+UniRef50_UPI0003C7FEAE: cation:proton antiporter	1.7154059900
+UniRef50_UPI0003C7FEAE: cation:proton antiporter|unclassified	1.7154059900
+UniRef50_A0A022H1X1: Mannosyltransferase	1.7153497879
+UniRef50_A0A022H1X1: Mannosyltransferase|unclassified	1.7153497879
+UniRef50_A0A024HC94: LysR family transcriptional regulator	1.7152658662
+UniRef50_A0A024HC94: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7152658662
+UniRef50_B2TNA6: D-galactose-binding periplasmic protein	1.7152658662
+UniRef50_B2TNA6: D-galactose-binding periplasmic protein|g__Clostridium.s__Clostridium_beijerinckii	1.7152658662
+UniRef50_Q6K4U0	1.7152658662
+UniRef50_Q6K4U0|unclassified	1.7152658662
+UniRef50_R9ZCZ8: Sensor histidine kinase	1.7152195642
+UniRef50_R9ZCZ8: Sensor histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7152195642
+UniRef50_UPI0003A1834B: MULTISPECIES: 30S ribosomal protein S13	1.7148043564
+UniRef50_UPI0003A1834B: MULTISPECIES: 30S ribosomal protein S13|unclassified	1.7148043564
+UniRef50_A1B2Y2	1.7145507195
+UniRef50_A1B2Y2|unclassified	1.7145507195
+UniRef50_F8LW56	1.7138823499
+UniRef50_F8LW56|unclassified	1.7138823499
+UniRef50_F0J6U0	1.7134064000
+UniRef50_F0J6U0|unclassified	1.7134064000
+UniRef50_K2AV81	1.7131727634
+UniRef50_K2AV81|unclassified	1.7131727634
+UniRef50_Q72M00: Ketol-acid reductoisomerase	1.7129970025
+UniRef50_Q72M00: Ketol-acid reductoisomerase|g__Propionibacterium.s__Propionibacterium_acnes	1.5313935681
+UniRef50_Q72M00: Ketol-acid reductoisomerase|unclassified	0.1816034343
+UniRef50_J9P031	1.7125774316
+UniRef50_J9P031|unclassified	1.7125774316
+UniRef50_A6V983	1.7125045539
+UniRef50_A6V983|unclassified	1.7125045539
+UniRef50_A6M1H1	1.7123287671
+UniRef50_A6M1H1|g__Clostridium.s__Clostridium_beijerinckii	1.7123287671
+UniRef50_D9SLZ7: Methyltransferase type 11	1.7123287671
+UniRef50_D9SLZ7: Methyltransferase type 11|g__Clostridium.s__Clostridium_beijerinckii	1.7123287671
+UniRef50_I4KLW2: Type VI secretion protein TssG1	1.7123287671
+UniRef50_I4KLW2: Type VI secretion protein TssG1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7123287671
+UniRef50_K6VNV0	1.7123287671
+UniRef50_K6VNV0|unclassified	1.7123287671
+UniRef50_V2VFK5: Methionine biosynthesis protein MetW	1.7123287671
+UniRef50_V2VFK5: Methionine biosynthesis protein MetW|g__Propionibacterium.s__Propionibacterium_acnes	1.7123287671
+UniRef50_UPI00037201DB: hypothetical protein	1.7121070285
+UniRef50_UPI00037201DB: hypothetical protein|unclassified	1.7121070285
+UniRef50_A6LV69: Adenylosuccinate synthetase	1.7111932341
+UniRef50_A6LV69: Adenylosuccinate synthetase|g__Clostridium.s__Clostridium_beijerinckii	1.7111932341
+UniRef50_C7IYB6: Os02g0122500 protein	1.7111463183
+UniRef50_C7IYB6: Os02g0122500 protein|unclassified	1.7111463183
+UniRef50_UPI0003C8A23D: PREDICTED: homeobox protein engrailed-2-like	1.7108639863
+UniRef50_UPI0003C8A23D: PREDICTED: homeobox protein engrailed-2-like|unclassified	1.7108639863
+UniRef50_J3GT66	1.7108423935
+UniRef50_J3GT66|unclassified	1.7108423935
+UniRef50_A0A024HPT5	1.7101328479
+UniRef50_A0A024HPT5|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7101328479
+UniRef50_Q9RVX3	1.7094216895
+UniRef50_Q9RVX3|g__Deinococcus.s__Deinococcus_radiodurans	1.7094216895
+UniRef50_F5ZKP5: Phospholipase/carboxylesterase	1.7094017094
+UniRef50_F5ZKP5: Phospholipase/carboxylesterase|g__Staphylococcus.s__Staphylococcus_aureus	1.7094017094
+UniRef50_Q6F1W4: Energy-coupling factor transporter ATP-binding protein EcfA2	1.7094017094
+UniRef50_Q6F1W4: Energy-coupling factor transporter ATP-binding protein EcfA2|g__Streptococcus.s__Streptococcus_agalactiae	1.7094017094
+UniRef50_Q8UC79: Protein FdhD homolog	1.7094017094
+UniRef50_Q8UC79: Protein FdhD homolog|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.7094017094
+UniRef50_UPI000443C802: PREDICTED: cyclin-dependent kinase inhibitor 1C	1.7094017094
+UniRef50_UPI000443C802: PREDICTED: cyclin-dependent kinase inhibitor 1C|unclassified	1.7094017094
+UniRef50_L8FTV0	1.7093176120
+UniRef50_L8FTV0|unclassified	1.7093176120
+UniRef50_X2M1B9	1.7092714265
+UniRef50_X2M1B9|unclassified	1.7092714265
+UniRef50_UPI0003B50FC9: hypothetical protein	1.7085627775
+UniRef50_UPI0003B50FC9: hypothetical protein|unclassified	1.7085627775
+UniRef50_UPI00037D5D4D: hypothetical protein	1.7083031524
+UniRef50_UPI00037D5D4D: hypothetical protein|unclassified	1.7083031524
+UniRef50_F0Y457	1.7080736564
+UniRef50_F0Y457|unclassified	1.7080736564
+UniRef50_Q3IXK1	1.7079746442
+UniRef50_Q3IXK1|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.7079746442
+UniRef50_W1H556	1.7077076776
+UniRef50_W1H556|unclassified	1.7077076776
+UniRef50_UPI0003EB6107: hypothetical protein	1.7076645505
+UniRef50_UPI0003EB6107: hypothetical protein|unclassified	1.7076645505
+UniRef50_UPI0001FFE6F9: thiamine pyrophosphate protein	1.7076578705
+UniRef50_UPI0001FFE6F9: thiamine pyrophosphate protein|unclassified	1.7076578705
+UniRef50_B0VAL5: Ribosomal RNA large subunit methyltransferase K/L	1.7074148376
+UniRef50_B0VAL5: Ribosomal RNA large subunit methyltransferase K/L|g__Acinetobacter.s__Acinetobacter_baumannii	1.7074148376
+UniRef50_C3KNV3: MFS permease	1.7072829499
+UniRef50_C3KNV3: MFS permease|g__Acinetobacter.s__Acinetobacter_baumannii	1.7072829499
+UniRef50_UPI000262C05A: hypothetical protein	1.7070030299
+UniRef50_UPI000262C05A: hypothetical protein|unclassified	1.7070030299
+UniRef50_H4YCY4	1.7064846416
+UniRef50_H4YCY4|g__Escherichia.s__Escherichia_coli	1.7064846416
+UniRef50_O07344: Signal peptidase I	1.7064846416
+UniRef50_O07344: Signal peptidase I|g__Streptococcus.s__Streptococcus_agalactiae	1.7064846416
+UniRef50_Q9RXL7: Hydrolase, haloacid dehalogenase-like family	1.7064846416
+UniRef50_Q9RXL7: Hydrolase, haloacid dehalogenase-like family|g__Deinococcus.s__Deinococcus_radiodurans	1.7064846416
+UniRef50_W8EP13: Lysyl-tRNA synthetase	1.7064846416
+UniRef50_W8EP13: Lysyl-tRNA synthetase|g__Acinetobacter.s__Acinetobacter_baumannii	1.7064846416
+UniRef50_F0N4Z5: Exodeoxyribonuclease V, gamma subunit	1.7059678499
+UniRef50_F0N4Z5: Exodeoxyribonuclease V, gamma subunit|g__Neisseria.s__Neisseria_meningitidis	1.7059678499
+UniRef50_E6YJH1	1.7058264555
+UniRef50_E6YJH1|unclassified	1.7058264555
+UniRef50_P31153: S-adenosylmethionine synthase isoform type-2	1.7058218024
+UniRef50_P31153: S-adenosylmethionine synthase isoform type-2|g__Deinococcus.s__Deinococcus_radiodurans	1.2578616352
+UniRef50_P31153: S-adenosylmethionine synthase isoform type-2|unclassified	0.4479601672
+UniRef50_S4NIZ2	1.7057914785
+UniRef50_S4NIZ2|unclassified	1.7057914785
+UniRef50_Q9I696: Component of chemotactic signal transduction system	1.7048617834
+UniRef50_Q9I696: Component of chemotactic signal transduction system|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7048617834
+UniRef50_Q3JMV0	1.7048013269
+UniRef50_Q3JMV0|unclassified	1.7048013269
+UniRef50_U0B6Q8	1.7046706655
+UniRef50_U0B6Q8|unclassified	1.7046706655
+UniRef50_UPI00026286B7: ABC transporter permease	1.7044847911
+UniRef50_UPI00026286B7: ABC transporter permease|unclassified	1.7044847911
+UniRef50_F6AX81: Efflux transporter, RND family, MFP subunit	1.7043036754
+UniRef50_F6AX81: Efflux transporter, RND family, MFP subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7043036754
+UniRef50_J9YPP3: Aromatic amino acid aminotransferase	1.7043036754
+UniRef50_J9YPP3: Aromatic amino acid aminotransferase|g__Streptococcus.s__Streptococcus_agalactiae	1.7043036754
+UniRef50_B7V9N9: Paraquat-inducible protein A	1.7035775128
+UniRef50_B7V9N9: Paraquat-inducible protein A|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7035775128
+UniRef50_F0JV11: DNA adenine methylase	1.7035775128
+UniRef50_F0JV11: DNA adenine methylase|g__Escherichia.s__Escherichia_coli	1.7035775128
+UniRef50_N1K138: FtsK/SpoIIIE family protein	1.7033461937
+UniRef50_N1K138: FtsK/SpoIIIE family protein|g__Streptococcus.s__Streptococcus_agalactiae	1.7033461937
+UniRef50_UPI00046ED2B4: hypothetical protein	1.7029301411
+UniRef50_UPI00046ED2B4: hypothetical protein|unclassified	1.7029301411
+UniRef50_UPI00037388B9: hypothetical protein, partial	1.7029242184
+UniRef50_UPI00037388B9: hypothetical protein, partial|unclassified	1.7029242184
+UniRef50_UPI0004771E82: organic solvent tolerance protein	1.7028845497
+UniRef50_UPI0004771E82: organic solvent tolerance protein|unclassified	1.7028845497
+UniRef50_Q606N7: ATP phosphoribosyltransferase regulatory subunit	1.7028599929
+UniRef50_Q606N7: ATP phosphoribosyltransferase regulatory subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7028599929
+UniRef50_X2HDH4: Prolyl endopeptidase	1.7027658066
+UniRef50_X2HDH4: Prolyl endopeptidase|g__Neisseria.s__Neisseria_meningitidis	1.7027658066
+UniRef50_D7CV09: ATP-dependent zinc metalloprotease FtsH	1.7022744016
+UniRef50_D7CV09: ATP-dependent zinc metalloprotease FtsH|g__Deinococcus.s__Deinococcus_radiodurans	1.7022744016
+UniRef50_UPI00020D92F9: hypothetical protein	1.7021951542
+UniRef50_UPI00020D92F9: hypothetical protein|unclassified	1.7021951542
+UniRef50_X6HG54	1.7017304529
+UniRef50_X6HG54|unclassified	1.7017304529
+UniRef50_Q9K1B0: NADH-quinone oxidoreductase subunit L	1.7008449182
+UniRef50_Q9K1B0: NADH-quinone oxidoreductase subunit L|g__Neisseria.s__Neisseria_meningitidis	1.7008449182
+UniRef50_P57702: Adenylyl-sulfate kinase	1.7006802721
+UniRef50_P57702: Adenylyl-sulfate kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7006802721
+UniRef50_Q1CUW5: UDP-3-O-acylglucosamine N-acyltransferase	1.7006802721
+UniRef50_Q1CUW5: UDP-3-O-acylglucosamine N-acyltransferase|g__Helicobacter.s__Helicobacter_pylori	1.7006802721
+UniRef50_Q8TLM8: Phosphoglycerate mutase family protein	1.7006802721
+UniRef50_Q8TLM8: Phosphoglycerate mutase family protein|g__Clostridium.s__Clostridium_beijerinckii	1.7006802721
+UniRef50_UPI00046EC5CC: hypothetical protein	1.7006802721
+UniRef50_UPI00046EC5CC: hypothetical protein|unclassified	1.7006802721
+UniRef50_V9T2K7: Pilus assembly protein	1.7006802721
+UniRef50_V9T2K7: Pilus assembly protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.7006802721
+UniRef50_B6G870: UPF0145 protein COLSTE_00261	1.7005055582
+UniRef50_B6G870: UPF0145 protein COLSTE_00261|unclassified	1.7005055582
+UniRef50_Q88GV8	1.7004885016
+UniRef50_Q88GV8|unclassified	1.7004885016
+UniRef50_A3M8U4: Heavy metal RND efflux membrane fusion protein CzcB family protein	1.7002597639
+UniRef50_A3M8U4: Heavy metal RND efflux membrane fusion protein CzcB family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.7002597639
+UniRef50_UPI0003A40543: hypothetical protein	1.7001332499
+UniRef50_UPI0003A40543: hypothetical protein|unclassified	1.7001332499
+UniRef50_W6M0A7	1.6990893197
+UniRef50_W6M0A7|unclassified	1.6990893197
+UniRef50_D0DB88: ABC transporter, permease protein	1.6985841690
+UniRef50_D0DB88: ABC transporter, permease protein|unclassified	1.6985841690
+UniRef50_S5CTU5	1.6985760019
+UniRef50_S5CTU5|g__Acinetobacter.s__Acinetobacter_baumannii	1.6985760019
+UniRef50_R1GXI1	1.6983964230
+UniRef50_R1GXI1|unclassified	1.6983964230
+UniRef50_E3EZG0: Oxidoreductase, short chain dehydrogenase/reductase family	1.6977928693
+UniRef50_E3EZG0: Oxidoreductase, short chain dehydrogenase/reductase family|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6977928693
+UniRef50_G7U4Y3	1.6977928693
+UniRef50_G7U4Y3|g__Propionibacterium.s__Propionibacterium_acnes	1.6977928693
+UniRef50_M9VD34: Tat (Twin-arginine translocation) pathway signal sequence	1.6977928693
+UniRef50_M9VD34: Tat (Twin-arginine translocation) pathway signal sequence|g__Propionibacterium.s__Propionibacterium_acnes	1.6977928693
+UniRef50_M9VDN7: DeoR family transcriptional regulator	1.6977928693
+UniRef50_M9VDN7: DeoR family transcriptional regulator|g__Propionibacterium.s__Propionibacterium_acnes	1.6977928693
+UniRef50_Q6A917: Aspartate carbamoyltransferase	1.6977928693
+UniRef50_Q6A917: Aspartate carbamoyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	1.6977928693
+UniRef50_P55023: Tyrosinase	1.6973623941
+UniRef50_P55023: Tyrosinase|unclassified	1.6973623941
+UniRef50_F8XI55	1.6972225660
+UniRef50_F8XI55|unclassified	1.6972225660
+UniRef50_M9RHS9	1.6969152990
+UniRef50_M9RHS9|unclassified	1.6969152990
+UniRef50_G4LBR0: MFS family transporter	1.6963528414
+UniRef50_G4LBR0: MFS family transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6963528414
+UniRef50_D4HAK8: Protoporphyrinogen oxidase	1.6962778076
+UniRef50_D4HAK8: Protoporphyrinogen oxidase|g__Propionibacterium.s__Propionibacterium_acnes	1.6962778076
+UniRef50_A8F1A5: UDP-glucose 4-epimerase	1.6956160151
+UniRef50_A8F1A5: UDP-glucose 4-epimerase|unclassified	1.6956160151
+UniRef50_UPI000471138D: hypothetical protein	1.6954875205
+UniRef50_UPI000471138D: hypothetical protein|unclassified	1.6954875205
+UniRef50_W4TJY2	1.6952204989
+UniRef50_W4TJY2|unclassified	1.6952204989
+UniRef50_A9M194: AraC-family transcriptional regulator	1.6949152542
+UniRef50_A9M194: AraC-family transcriptional regulator|g__Neisseria.s__Neisseria_meningitidis	1.6949152542
+UniRef50_M4R0D2: Glycosyltransferase	1.6949152542
+UniRef50_M4R0D2: Glycosyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6949152542
+UniRef50_W4UBJ6: Sodium-dependent galactose transporter	1.6949152542
+UniRef50_W4UBJ6: Sodium-dependent galactose transporter|unclassified	1.6949152542
+UniRef50_A3M2D7: DNA primase	1.6948366211
+UniRef50_A3M2D7: DNA primase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6948366211
+UniRef50_A3V6I2	1.6942590970
+UniRef50_A3V6I2|unclassified	1.6942590970
+UniRef50_F8DZR5: Pyruvate:quinone oxidoreductase	1.6941061107
+UniRef50_F8DZR5: Pyruvate:quinone oxidoreductase|g__Propionibacterium.s__Propionibacterium_acnes	1.6941061107
+UniRef50_W7N0Q7	1.6939714771
+UniRef50_W7N0Q7|unclassified	1.6939714771
+UniRef50_X1M4K5: Marine sediment metagenome DNA, contig: S06H3_L04487 (Fragment)	1.6938368651
+UniRef50_X1M4K5: Marine sediment metagenome DNA, contig: S06H3_L04487 (Fragment)|unclassified	1.6938368651
+UniRef50_S8ZG58: Amidase	1.6937833124
+UniRef50_S8ZG58: Amidase|g__Streptococcus.s__Streptococcus_agalactiae	1.6937833124
+UniRef50_D8JKX1	1.6937088883
+UniRef50_D8JKX1|g__Acinetobacter.s__Acinetobacter_baumannii	1.6937088883
+UniRef50_D8LRQ2: Beta-ketoacyl synthase	1.6934333770
+UniRef50_D8LRQ2: Beta-ketoacyl synthase|g__Clostridium.s__Clostridium_beijerinckii	1.6934333770
+UniRef50_Q5HW32: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	1.6928831582
+UniRef50_Q5HW32: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|g__Helicobacter.s__Helicobacter_pylori	1.6364472474
+UniRef50_Q5HW32: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|unclassified	0.0564359108
+UniRef50_M7XLY0: Dipeptide ABC transporter periplasmic substrate-binding protein DppA	1.6927991964
+UniRef50_M7XLY0: Dipeptide ABC transporter periplasmic substrate-binding protein DppA|unclassified	1.6927991964
+UniRef50_J3LXD1	1.6927930670
+UniRef50_J3LXD1|unclassified	1.6927930670
+UniRef50_Q9WYD1: Transaldolase	1.6924691707
+UniRef50_Q9WYD1: Transaldolase|unclassified	1.6924691707
+UniRef50_A6LPD2	1.6920473773
+UniRef50_A6LPD2|g__Clostridium.s__Clostridium_beijerinckii	1.6920473773
+UniRef50_E7BDJ1: ISNme1 transposase (Contains a 35 aa insertion)	1.6920473773
+UniRef50_E7BDJ1: ISNme1 transposase (Contains a 35 aa insertion)|g__Neisseria.s__Neisseria_meningitidis	1.6920473773
+UniRef50_F8EW39: Heat shock protein DnaJ domain protein	1.6920473773
+UniRef50_F8EW39: Heat shock protein DnaJ domain protein|unclassified	1.6920473773
+UniRef50_F3GLX4: 4Fe-4S ferredoxin (Fragment)	1.6920000896
+UniRef50_F3GLX4: 4Fe-4S ferredoxin (Fragment)|unclassified	1.6920000896
+UniRef50_A8GE31: PTS system, maltose and glucose-specific IIAbc component	1.6919132632
+UniRef50_A8GE31: PTS system, maltose and glucose-specific IIAbc component|unclassified	1.6919132632
+UniRef50_UPI000476165E: hypothetical protein	1.6918165806
+UniRef50_UPI000476165E: hypothetical protein|unclassified	1.6918165806
+UniRef50_I6FFI0	1.6917542453
+UniRef50_I6FFI0|unclassified	1.6917542453
+UniRef50_UPI0003289E07: PREDICTED: basic proline-rich protein-like	1.6916299699
+UniRef50_UPI0003289E07: PREDICTED: basic proline-rich protein-like|unclassified	1.6916299699
+UniRef50_D2JDZ0: Antiadhesin Pls, binding to squamous nasal epithelial cells	1.6916012668
+UniRef50_D2JDZ0: Antiadhesin Pls, binding to squamous nasal epithelial cells|g__Staphylococcus.s__Staphylococcus_aureus	1.6916012668
+UniRef50_D5ATD3: Flagellar basal-body rod protein FlgB	1.6915362486
+UniRef50_D5ATD3: Flagellar basal-body rod protein FlgB|unclassified	1.6915362486
+UniRef50_Q5FA21: Imidazole glycerol phosphate synthase subunit HisH	1.6914244743
+UniRef50_Q5FA21: Imidazole glycerol phosphate synthase subunit HisH|g__Neisseria.s__Neisseria_meningitidis	1.5873015873
+UniRef50_Q5FA21: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.1041228870
+UniRef50_G7LZU7: GerA spore germination protein	1.6910465691
+UniRef50_G7LZU7: GerA spore germination protein|g__Clostridium.s__Clostridium_beijerinckii	1.6910465691
+UniRef50_UPI0003A592DF: transcriptional regulator	1.6908232057
+UniRef50_UPI0003A592DF: transcriptional regulator|unclassified	1.6908232057
+UniRef50_N2MUV2	1.6903732378
+UniRef50_N2MUV2|unclassified	1.6903732378
+UniRef50_UPI000475B51F: hypothetical protein	1.6898994439
+UniRef50_UPI000475B51F: hypothetical protein|unclassified	1.6898994439
+UniRef50_A6LSY3: Glutamyl-tRNA reductase	1.6892193139
+UniRef50_A6LSY3: Glutamyl-tRNA reductase|g__Clostridium.s__Clostridium_beijerinckii	1.6892193139
+UniRef50_A6LUF8	1.6891891892
+UniRef50_A6LUF8|g__Clostridium.s__Clostridium_beijerinckii	1.6891891892
+UniRef50_E1RDK3: (NiFe)-hydrogenase-3-type complex Eha, membrane protein EhaH, predicted	1.6891891892
+UniRef50_E1RDK3: (NiFe)-hydrogenase-3-type complex Eha, membrane protein EhaH, predicted|unclassified	1.6891891892
+UniRef50_E1SD75: 3-isopropylmalate dehydratase small subunit	1.6891891892
+UniRef50_E1SD75: 3-isopropylmalate dehydratase small subunit|g__Escherichia.s__Escherichia_coli	1.6891891892
+UniRef50_F6AS06: Precorrin-6A synthase (Deacetylating)	1.6891891892
+UniRef50_F6AS06: Precorrin-6A synthase (Deacetylating)|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6891891892
+UniRef50_R5G6K3: Histidinol phosphate phosphatase HisJ family	1.6891891892
+UniRef50_R5G6K3: Histidinol phosphate phosphatase HisJ family|g__Clostridium.s__Clostridium_beijerinckii	1.6891891892
+UniRef50_R5UIW1: Ribose-phosphate diphosphokinase	1.6891891892
+UniRef50_R5UIW1: Ribose-phosphate diphosphokinase|g__Clostridium.s__Clostridium_beijerinckii	1.6891891892
+UniRef50_UPI0004686D6B: hypothetical protein	1.6891060283
+UniRef50_UPI0004686D6B: hypothetical protein|unclassified	1.6891060283
+UniRef50_K1ZZG0	1.6887103315
+UniRef50_K1ZZG0|unclassified	1.6887103315
+UniRef50_R9ZE56: Type VI secretion system protein ImpL	1.6885725247
+UniRef50_R9ZE56: Type VI secretion system protein ImpL|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6885725247
+UniRef50_Q08YP9	1.6884823421
+UniRef50_Q08YP9|unclassified	1.6884823421
+UniRef50_A3M202: Carboxy-terminal protease	1.6880516944
+UniRef50_A3M202: Carboxy-terminal protease|g__Acinetobacter.s__Acinetobacter_baumannii	1.6880516944
+UniRef50_T8SDK9	1.6875330960
+UniRef50_T8SDK9|unclassified	1.6875330960
+UniRef50_O66976: Histidinol dehydrogenase	1.6874931486
+UniRef50_O66976: Histidinol dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	1.6524429774
+UniRef50_O66976: Histidinol dehydrogenase|unclassified	0.0350501712
+UniRef50_Q9HXX3: Probable cysteine desulfurase	1.6870851566
+UniRef50_Q9HXX3: Probable cysteine desulfurase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3495276653
+UniRef50_Q9HXX3: Probable cysteine desulfurase|unclassified	0.3375574912
+UniRef50_V0AZQ8: Cysteine desulfurase activator complex subunit SufB	1.6866393494
+UniRef50_V0AZQ8: Cysteine desulfurase activator complex subunit SufB|unclassified	1.6866393494
+UniRef50_G3J5C9	1.6863458323
+UniRef50_G3J5C9|unclassified	1.6863458323
+UniRef50_A6LWQ8	1.6863406408
+UniRef50_A6LWQ8|g__Clostridium.s__Clostridium_beijerinckii	1.6863406408
+UniRef50_A6M205: Transcriptional regulator, GntR family	1.6863406408
+UniRef50_A6M205: Transcriptional regulator, GntR family|g__Clostridium.s__Clostridium_beijerinckii	1.6863406408
+UniRef50_D5ZNQ6: Transposase IS204 family protein (Fragment)	1.6863406408
+UniRef50_D5ZNQ6: Transposase IS204 family protein (Fragment)|unclassified	1.6863406408
+UniRef50_D8JDE7: Patatin-like phospholipase family protein	1.6863406408
+UniRef50_D8JDE7: Patatin-like phospholipase family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.6863406408
+UniRef50_H3YEU6: Toxin, OB domain protein (Fragment)	1.6863406408
+UniRef50_H3YEU6: Toxin, OB domain protein (Fragment)|g__Staphylococcus.s__Staphylococcus_aureus	1.6863406408
+UniRef50_I7EI43	1.6863406408
+UniRef50_I7EI43|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6863406408
+UniRef50_J9YND3	1.6863406408
+UniRef50_J9YND3|g__Streptococcus.s__Streptococcus_agalactiae	1.6863406408
+UniRef50_M9VBP8	1.6863406408
+UniRef50_M9VBP8|g__Propionibacterium.s__Propionibacterium_acnes	1.6863406408
+UniRef50_Q2T3A1: Transcriptional regulator, LysR family	1.6863406408
+UniRef50_Q2T3A1: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6863406408
+UniRef50_U8PKI0	1.6863406408
+UniRef50_U8PKI0|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6863406408
+UniRef50_A4XVQ4	1.6860699655
+UniRef50_A4XVQ4|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6860699655
+UniRef50_UPI00047DB1F7: hypothetical protein	1.6854915471
+UniRef50_UPI00047DB1F7: hypothetical protein|unclassified	1.6854915471
+UniRef50_G7GUP2: Sarcosine oxidase beta subunit (Fragment)	1.6854680140
+UniRef50_G7GUP2: Sarcosine oxidase beta subunit (Fragment)|unclassified	1.6854680140
+UniRef50_A3WPC3	1.6852687258
+UniRef50_A3WPC3|unclassified	1.6852687258
+UniRef50_UPI00030EEC63: hypothetical protein	1.6852057834
+UniRef50_UPI00030EEC63: hypothetical protein|unclassified	1.6852057834
+UniRef50_K0HZ43: Transporter, major facilitator family protein	1.6851502791
+UniRef50_K0HZ43: Transporter, major facilitator family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.6851502791
+UniRef50_F3U4M4: GntR family transcriptional regulator	1.6851482315
+UniRef50_F3U4M4: GntR family transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6851482315
+UniRef50_UPI0003AE9AA0: PREDICTED: basic proline-rich protein-like	1.6850918011
+UniRef50_UPI0003AE9AA0: PREDICTED: basic proline-rich protein-like|unclassified	1.6850918011
+UniRef50_UPI00046673FB: hypothetical protein	1.6850096747
+UniRef50_UPI00046673FB: hypothetical protein|unclassified	1.6850096747
+UniRef50_Q9RW75: Acetylornithine/acetyl-lysine aminotransferase	1.6850081075
+UniRef50_Q9RW75: Acetylornithine/acetyl-lysine aminotransferase|g__Deinococcus.s__Deinococcus_radiodurans	1.6518327590
+UniRef50_Q9RW75: Acetylornithine/acetyl-lysine aminotransferase|unclassified	0.0331753485
+UniRef50_T2HRY4: Transposase DDE domain protein	1.6849277361
+UniRef50_T2HRY4: Transposase DDE domain protein|g__Escherichia.s__Escherichia_coli	1.6849277361
+UniRef50_Q9RRW1: Ribonucleoside-diphosphate reductase	1.6847793023
+UniRef50_Q9RRW1: Ribonucleoside-diphosphate reductase|g__Deinococcus.s__Deinococcus_radiodurans	1.6847793023
+UniRef50_Q8Y213: Glycine--tRNA ligase beta subunit	1.6847604109
+UniRef50_Q8Y213: Glycine--tRNA ligase beta subunit|g__Neisseria.s__Neisseria_meningitidis	1.6847604109
+UniRef50_E6MXZ0: TonB dependent receptor family protein	1.6842179910
+UniRef50_E6MXZ0: TonB dependent receptor family protein|g__Neisseria.s__Neisseria_meningitidis	1.6842179910
+UniRef50_Q9HTQ5	1.6840936621
+UniRef50_Q9HTQ5|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6840936621
+UniRef50_Q2JTU3: Phosphate import ATP-binding protein PstB 2	1.6839064178
+UniRef50_Q2JTU3: Phosphate import ATP-binding protein PstB 2|g__Streptococcus.s__Streptococcus_agalactiae	1.4771048744
+UniRef50_Q2JTU3: Phosphate import ATP-binding protein PstB 2|unclassified	0.2068015433
+UniRef50_K2JZV8	1.6838939276
+UniRef50_K2JZV8|unclassified	1.6838939276
+UniRef50_A3M4F0: Transporter LysE family	1.6835016835
+UniRef50_A3M4F0: Transporter LysE family|g__Acinetobacter.s__Acinetobacter_baumannii	1.6835016835
+UniRef50_F9YXK8	1.6835016835
+UniRef50_F9YXK8|g__Propionibacterium.s__Propionibacterium_acnes	1.6835016835
+UniRef50_J3P8W6	1.6835016835
+UniRef50_J3P8W6|unclassified	1.6835016835
+UniRef50_J7R7N7: DNA-damage-inducible protein	1.6835016835
+UniRef50_J7R7N7: DNA-damage-inducible protein|g__Escherichia.s__Escherichia_coli	1.6835016835
+UniRef50_M7AAC3: Anthranilate synthase component II domain protein	1.6835016835
+UniRef50_M7AAC3: Anthranilate synthase component II domain protein|unclassified	1.6835016835
+UniRef50_Q9RVU1	1.6835016835
+UniRef50_Q9RVU1|g__Deinococcus.s__Deinococcus_radiodurans	1.6835016835
+UniRef50_R9JUE8	1.6835016835
+UniRef50_R9JUE8|unclassified	1.6835016835
+UniRef50_F7X313	1.6833033123
+UniRef50_F7X313|unclassified	1.6833033123
+UniRef50_A0A017HKQ1: Mobile element protein	1.6829387255
+UniRef50_A0A017HKQ1: Mobile element protein|unclassified	1.6829387255
+UniRef50_F9EIW4	1.6828934128
+UniRef50_F9EIW4|unclassified	1.6828934128
+UniRef50_B9TM50	1.6828598738
+UniRef50_B9TM50|unclassified	1.6828598738
+UniRef50_A0A023RSV7: Reverse transcriptase	1.6827961176
+UniRef50_A0A023RSV7: Reverse transcriptase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6827961176
+UniRef50_D4C552	1.6827691074
+UniRef50_D4C552|unclassified	1.6827691074
+UniRef50_D2PWU8: ResB family protein	1.6823876445
+UniRef50_D2PWU8: ResB family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.6823876445
+UniRef50_F3NAG6	1.6823424667
+UniRef50_F3NAG6|unclassified	1.6823424667
+UniRef50_D3P6N7: Peptide/nickel transport system ATP-binding protein	1.6816032603
+UniRef50_D3P6N7: Peptide/nickel transport system ATP-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6816032603
+UniRef50_A0A023RZA8: Membrane protein	1.6815953314
+UniRef50_A0A023RZA8: Membrane protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.6815953314
+UniRef50_UPI00036454F7: hypothetical protein, partial	1.6815787858
+UniRef50_UPI00036454F7: hypothetical protein, partial|unclassified	1.6815787858
+UniRef50_W1ECF1: Acidic protein msyB	1.6814394476
+UniRef50_W1ECF1: Acidic protein msyB|unclassified	1.6814394476
+UniRef50_UPI00046E9F29: hypothetical protein, partial	1.6814021075
+UniRef50_UPI00046E9F29: hypothetical protein, partial|unclassified	1.6814021075
+UniRef50_UPI000370C159: hypothetical protein	1.6812083519
+UniRef50_UPI000370C159: hypothetical protein|unclassified	1.6812083519
+UniRef50_B7GVN1: Ribosomal RNA small subunit methyltransferase H	1.6808446423
+UniRef50_B7GVN1: Ribosomal RNA small subunit methyltransferase H|g__Acinetobacter.s__Acinetobacter_baumannii	1.4880952381
+UniRef50_B7GVN1: Ribosomal RNA small subunit methyltransferase H|unclassified	0.1927494042
+UniRef50_W1EHD6	1.6807529220
+UniRef50_W1EHD6|unclassified	1.6807529220
+UniRef50_J3BE74: Metallo-beta-lactamase superfamily enzyme	1.6807249071
+UniRef50_J3BE74: Metallo-beta-lactamase superfamily enzyme|unclassified	1.6807249071
+UniRef50_A6LT71	1.6806722689
+UniRef50_A6LT71|g__Clostridium.s__Clostridium_beijerinckii	1.6806722689
+UniRef50_UPI00047DA76B: UTP--glucose-1-phosphate uridylyltransferase	1.6805904905
+UniRef50_UPI00047DA76B: UTP--glucose-1-phosphate uridylyltransferase|unclassified	1.6805904905
+UniRef50_UPI000368F594: polyphosphate kinase	1.6803575906
+UniRef50_UPI000368F594: polyphosphate kinase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	1.6803575906
+UniRef50_Q2Q1G9: Blr	1.6803543640
+UniRef50_Q2Q1G9: Blr|g__Streptococcus.s__Streptococcus_agalactiae	1.6803543640
+UniRef50_Q01671: Hydroxyneurosporene desaturase	1.6802729993
+UniRef50_Q01671: Hydroxyneurosporene desaturase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6802729993
+UniRef50_K4RS80: Potassium efflux system KefA protein / Small-conductance mechanosensitive channel	1.6801944713
+UniRef50_K4RS80: Potassium efflux system KefA protein / Small-conductance mechanosensitive channel|g__Escherichia.s__Escherichia_coli	1.6801944713
+UniRef50_E6MAB1	1.6798921901
+UniRef50_E6MAB1|unclassified	1.6798921901
+UniRef50_UPI0002B8DA75: hypothetical protein	1.6794877300
+UniRef50_UPI0002B8DA75: hypothetical protein|unclassified	1.6794877300
+UniRef50_A0A013KTF4: RND transporter, hydrophobe/amphiphile efflux-1 family protein	1.6791390243
+UniRef50_A0A013KTF4: RND transporter, hydrophobe/amphiphile efflux-1 family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.6791390243
+UniRef50_I1WQJ3	1.6789935597
+UniRef50_I1WQJ3|unclassified	1.6789935597
+UniRef50_Q0FDZ3: Transporter, Tim44 family protein	1.6787552231
+UniRef50_Q0FDZ3: Transporter, Tim44 family protein|unclassified	1.6787552231
+UniRef50_V8ELU3	1.6787377175
+UniRef50_V8ELU3|unclassified	1.6787377175
+UniRef50_A3W953	1.6785220645
+UniRef50_A3W953|unclassified	1.6785220645
+UniRef50_K1RTS5: Carboxynorspermidine decarboxylase	1.6782325680
+UniRef50_K1RTS5: Carboxynorspermidine decarboxylase|unclassified	1.6782325680
+UniRef50_UPI00047624DC: hypothetical protein	1.6779254037
+UniRef50_UPI00047624DC: hypothetical protein|unclassified	1.6779254037
+UniRef50_G2TGT9: Cobalt transport protein	1.6778523490
+UniRef50_G2TGT9: Cobalt transport protein|g__Deinococcus.s__Deinococcus_radiodurans	1.6778523490
+UniRef50_M1N642: Transcriptional regulator, TetR family	1.6778523490
+UniRef50_M1N642: Transcriptional regulator, TetR family|g__Clostridium.s__Clostridium_beijerinckii	1.6778523490
+UniRef50_R5JES1: YheO domain protein	1.6778523490
+UniRef50_R5JES1: YheO domain protein|unclassified	1.6778523490
+UniRef50_U9DEZ5	1.6778523490
+UniRef50_U9DEZ5|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6778523490
+UniRef50_UPI00037E5E31: hypothetical protein	1.6778523490
+UniRef50_UPI00037E5E31: hypothetical protein|unclassified	1.6778523490
+UniRef50_A0A059AZD4	1.6778364667
+UniRef50_A0A059AZD4|unclassified	1.6778364667
+UniRef50_UPI000479C5D4: hypothetical protein	1.6777579972
+UniRef50_UPI000479C5D4: hypothetical protein|unclassified	1.6777579972
+UniRef50_U7GLM8	1.6777422675
+UniRef50_U7GLM8|unclassified	1.6777422675
+UniRef50_Q932Q4: Orf513	1.6777401570
+UniRef50_Q932Q4: Orf513|g__Escherichia.s__Escherichia_coli	1.0070493454
+UniRef50_Q932Q4: Orf513|g__Acinetobacter.s__Acinetobacter_baumannii	0.6706908115
+UniRef50_W6JZG7	1.6774425282
+UniRef50_W6JZG7|unclassified	1.6774425282
+UniRef50_U3TRN4: Major facilitator superfamily protein	1.6774230842
+UniRef50_U3TRN4: Major facilitator superfamily protein|unclassified	1.6774230842
+UniRef50_T5Z979: 3-isopropylmalate dehydratase large subunit	1.6769455770
+UniRef50_T5Z979: 3-isopropylmalate dehydratase large subunit|unclassified	1.6769455770
+UniRef50_UPI0004782043: AsnC family transcriptional regulator	1.6767098505
+UniRef50_UPI0004782043: AsnC family transcriptional regulator|unclassified	1.6767098505
+UniRef50_G7U6J5: Transporter, major facilitator family protein	1.6763054228
+UniRef50_G7U6J5: Transporter, major facilitator family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.6763054228
+UniRef50_M5R129: Bacteriophage replication	1.6760868803
+UniRef50_M5R129: Bacteriophage replication|unclassified	1.6760868803
+UniRef50_W4TX83	1.6759094481
+UniRef50_W4TX83|g__Propionibacterium.s__Propionibacterium_acnes	1.6759094481
+UniRef50_F2AG83	1.6757495670
+UniRef50_F2AG83|unclassified	1.6757495670
+UniRef50_F2E1G1: Predicted protein (Fragment)	1.6756277884
+UniRef50_F2E1G1: Predicted protein (Fragment)|unclassified	1.6756277884
+UniRef50_UPI000395C119: PREDICTED: 72 kDa type IV collagenase-like	1.6755226070
+UniRef50_UPI000395C119: PREDICTED: 72 kDa type IV collagenase-like|unclassified	1.6755226070
+UniRef50_UPI000237E1F7: glutathione S-transferase domain-containing protein	1.6752936931
+UniRef50_UPI000237E1F7: glutathione S-transferase domain-containing protein|unclassified	1.6752936931
+UniRef50_H3RCL8: Oxidoreductase domain protein	1.6751611266
+UniRef50_H3RCL8: Oxidoreductase domain protein|unclassified	1.6751611266
+UniRef50_Q9RYX6: Xanthine dehydrogenase, C-terminal subunit	1.6751102804
+UniRef50_Q9RYX6: Xanthine dehydrogenase, C-terminal subunit|g__Deinococcus.s__Deinococcus_radiodurans	1.6751102804
+UniRef50_D8B9N6: 2-succinyl-6-hydroxy-2, 4-cyclohexadiene-1-carboxylate synthase (Fragment)	1.6750418760
+UniRef50_D8B9N6: 2-succinyl-6-hydroxy-2, 4-cyclohexadiene-1-carboxylate synthase (Fragment)|g__Escherichia.s__Escherichia_coli	1.6750418760
+UniRef50_E2XKU2: Amino acid ABC transporter, permease protein	1.6750418760
+UniRef50_E2XKU2: Amino acid ABC transporter, permease protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6750418760
+UniRef50_F5ZGN4: Membrane protein	1.6750418760
+UniRef50_F5ZGN4: Membrane protein|g__Streptococcus.s__Streptococcus_agalactiae	1.6750418760
+UniRef50_G7MAA3	1.6750418760
+UniRef50_G7MAA3|g__Clostridium.s__Clostridium_beijerinckii	1.6750418760
+UniRef50_H9USG0: IS30 transposase	1.6750418760
+UniRef50_H9USG0: IS30 transposase|g__Escherichia.s__Escherichia_coli	1.6750418760
+UniRef50_M9S656: Short chain dehydrogenase	1.6750418760
+UniRef50_M9S656: Short chain dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6750418760
+UniRef50_Q892B0: Hydroxyacylglutathione hydrolase	1.6750418760
+UniRef50_Q892B0: Hydroxyacylglutathione hydrolase|g__Clostridium.s__Clostridium_beijerinckii	1.6750418760
+UniRef50_S9QL66	1.6750418760
+UniRef50_S9QL66|unclassified	1.6750418760
+UniRef50_UPI00047D6083: hypothetical protein	1.6750418760
+UniRef50_UPI00047D6083: hypothetical protein|unclassified	1.6750418760
+UniRef50_A3M7V0: Putative non-ribosomal peptide synthetase	1.6750288806
+UniRef50_A3M7V0: Putative non-ribosomal peptide synthetase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6750288806
+UniRef50_K5DHJ7	1.6749488593
+UniRef50_K5DHJ7|unclassified	1.6749488593
+UniRef50_A0A027G7Z7	1.6748623545
+UniRef50_A0A027G7Z7|g__Escherichia.s__Escherichia_coli	1.6748623545
+UniRef50_A0A032Z5G2: Transposase for insertion sequence-like element IS431mec	1.6748407161
+UniRef50_A0A032Z5G2: Transposase for insertion sequence-like element IS431mec|unclassified	1.6748407161
+UniRef50_B9T9L5	1.6747657253
+UniRef50_B9T9L5|unclassified	1.6747657253
+UniRef50_UPI000329212D: PREDICTED: formin-like protein 20-like, partial	1.6747629381
+UniRef50_UPI000329212D: PREDICTED: formin-like protein 20-like, partial|unclassified	1.6747629381
+UniRef50_X6L5I1	1.6746849818
+UniRef50_X6L5I1|unclassified	1.6746849818
+UniRef50_UPI00047DC367: hypothetical protein	1.6744340612
+UniRef50_UPI00047DC367: hypothetical protein|unclassified	1.6744340612
+UniRef50_UPI0004777FFA: hypothetical protein	1.6743040044
+UniRef50_UPI0004777FFA: hypothetical protein|unclassified	1.6743040044
+UniRef50_R5X293	1.6742331918
+UniRef50_R5X293|unclassified	1.6742331918
+UniRef50_B7ICE8: TonB-dependent receptor protein	1.6734944961
+UniRef50_B7ICE8: TonB-dependent receptor protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.6734944961
+UniRef50_D9VU00: Dihydrodipicolinate reductase	1.6734886108
+UniRef50_D9VU00: Dihydrodipicolinate reductase|unclassified	1.6734886108
+UniRef50_I1ES83	1.6731060297
+UniRef50_I1ES83|unclassified	1.6731060297
+UniRef50_Q1G0V5	1.6730760501
+UniRef50_Q1G0V5|unclassified	1.6730760501
+UniRef50_UPI0004634C4E: hypothetical protein	1.6729849680
+UniRef50_UPI0004634C4E: hypothetical protein|unclassified	1.6729849680
+UniRef50_X7B4T7	1.6728866392
+UniRef50_X7B4T7|unclassified	1.6728866392
+UniRef50_A0A023S1I9: TetR family transcriptional regulator	1.6722408027
+UniRef50_A0A023S1I9: TetR family transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	1.6722408027
+UniRef50_A6LTA2	1.6722408027
+UniRef50_A6LTA2|g__Clostridium.s__Clostridium_beijerinckii	1.6722408027
+UniRef50_B2TL84: Cyclic nucleotide-binding domain protein	1.6722408027
+UniRef50_B2TL84: Cyclic nucleotide-binding domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.6722408027
+UniRef50_G7M114: Stage III sporulation protein AF	1.6722408027
+UniRef50_G7M114: Stage III sporulation protein AF|g__Clostridium.s__Clostridium_beijerinckii	1.6722408027
+UniRef50_U5MJY8: Helix-turn-helix domain protein	1.6722408027
+UniRef50_U5MJY8: Helix-turn-helix domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.6722408027
+UniRef50_V8DPK1	1.6722408027
+UniRef50_V8DPK1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6722408027
+UniRef50_X7Z837: LipolpqB domain protein	1.6722408027
+UniRef50_X7Z837: LipolpqB domain protein|unclassified	1.6722408027
+UniRef50_UPI000373FF71: hypothetical protein, partial	1.6720362329
+UniRef50_UPI000373FF71: hypothetical protein, partial|unclassified	1.6720362329
+UniRef50_E0RLL7	1.6719138128
+UniRef50_E0RLL7|g__Clostridium.s__Clostridium_beijerinckii	1.6719138128
+UniRef50_F9YBP0: PRC-barrel domain protein	1.6719073698
+UniRef50_F9YBP0: PRC-barrel domain protein|unclassified	1.6719073698
+UniRef50_N6V5W9	1.6718599354
+UniRef50_N6V5W9|unclassified	1.6718599354
+UniRef50_UPI000381AE83: hypothetical protein	1.6704097272
+UniRef50_UPI000381AE83: hypothetical protein|unclassified	1.6704097272
+UniRef50_D3PYT6: LigA	1.6699560788
+UniRef50_D3PYT6: LigA|unclassified	1.6699560788
+UniRef50_G5KTY6: Oligopeptidase A	1.6699484377
+UniRef50_G5KTY6: Oligopeptidase A|unclassified	1.6699484377
+UniRef50_F0KFI6: Succinate-semialdehyde dehydrogenase (NAD(P)(+))	1.6698085970
+UniRef50_F0KFI6: Succinate-semialdehyde dehydrogenase (NAD(P)(+))|g__Acinetobacter.s__Acinetobacter_baumannii	1.6698085970
+UniRef50_Q0ARN2	1.6698066033
+UniRef50_Q0ARN2|unclassified	1.6698066033
+UniRef50_UPI000225ED80: DNA damage repair protein MutT	1.6695878274
+UniRef50_UPI000225ED80: DNA damage repair protein MutT|unclassified	1.6695878274
+UniRef50_B1KX53: Putative ribosome biogenesis GTPase RsgA	1.6694490818
+UniRef50_B1KX53: Putative ribosome biogenesis GTPase RsgA|g__Clostridium.s__Clostridium_beijerinckii	1.6694490818
+UniRef50_B7H3X7: RNA methyltransferase, TrmH family, group 1 family protein	1.6694490818
+UniRef50_B7H3X7: RNA methyltransferase, TrmH family, group 1 family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.6694490818
+UniRef50_G7MCM7: Aminodeoxychorismate lyase	1.6694490818
+UniRef50_G7MCM7: Aminodeoxychorismate lyase|g__Clostridium.s__Clostridium_beijerinckii	1.6694490818
+UniRef50_M2LP75	1.6694490818
+UniRef50_M2LP75|unclassified	1.6694490818
+UniRef50_X5F9F0	1.6694490818
+UniRef50_X5F9F0|g__Neisseria.s__Neisseria_meningitidis	1.6694490818
+UniRef50_G0DW29: Penicillin-binding protein (Transglycosylase/transpeptidase)	1.6694480633
+UniRef50_G0DW29: Penicillin-binding protein (Transglycosylase/transpeptidase)|g__Propionibacterium.s__Propionibacterium_acnes	1.6694480633
+UniRef50_UPI0003B7B255: hypothetical protein	1.6691782354
+UniRef50_UPI0003B7B255: hypothetical protein|unclassified	1.6691782354
+UniRef50_T1DQZ2	1.6691474962
+UniRef50_T1DQZ2|unclassified	1.6691474962
+UniRef50_H6CMH0	1.6689633103
+UniRef50_H6CMH0|unclassified	1.6689633103
+UniRef50_UPI000476BCFC: hypothetical protein	1.6687361255
+UniRef50_UPI000476BCFC: hypothetical protein|unclassified	1.6687361255
+UniRef50_U9YB57	1.6685569359
+UniRef50_U9YB57|unclassified	1.6685569359
+UniRef50_F7SBB5: Transposase (Fragment)	1.6681927497
+UniRef50_F7SBB5: Transposase (Fragment)|unclassified	1.6681927497
+UniRef50_K1UTW6	1.6681713951
+UniRef50_K1UTW6|unclassified	1.6681713951
+UniRef50_B9IYP4: Formate--tetrahydrofolate ligase	1.6675097773
+UniRef50_B9IYP4: Formate--tetrahydrofolate ligase|unclassified	1.6675097773
+UniRef50_Q1J1Q7: Cobalamin (Vitamin B12) biosynthesis CbiX protein	1.6673981004
+UniRef50_Q1J1Q7: Cobalamin (Vitamin B12) biosynthesis CbiX protein|g__Deinococcus.s__Deinococcus_radiodurans	1.6673981004
+UniRef50_F0QG73: SAM-dependent methyltransferase	1.6672791602
+UniRef50_F0QG73: SAM-dependent methyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6672791602
+UniRef50_S8MPX0	1.6671929277
+UniRef50_S8MPX0|unclassified	1.6671929277
+UniRef50_UPI00046E6C82: hypothetical protein	1.6668326129
+UniRef50_UPI00046E6C82: hypothetical protein|unclassified	1.6668326129
+UniRef50_A6LXM0: Alkyl hydroperoxide reductase/ Thiol specific antioxidant/ Mal allergen	1.6666666667
+UniRef50_A6LXM0: Alkyl hydroperoxide reductase/ Thiol specific antioxidant/ Mal allergen|g__Clostridium.s__Clostridium_beijerinckii	1.6666666667
+UniRef50_B7V9S9	1.6666666667
+UniRef50_B7V9S9|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6666666667
+UniRef50_C1D104	1.6666666667
+UniRef50_C1D104|g__Deinococcus.s__Deinococcus_radiodurans	1.6666666667
+UniRef50_F8KQA4: Phospholipid-binding protein	1.6666666667
+UniRef50_F8KQA4: Phospholipid-binding protein|g__Helicobacter.s__Helicobacter_pylori	1.6666666667
+UniRef50_J7TB42: Oxygen-insensitive NAD(P)H nitroreductase	1.6666666667
+UniRef50_J7TB42: Oxygen-insensitive NAD(P)H nitroreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6666666667
+UniRef50_Q9RTM5	1.6666666667
+UniRef50_Q9RTM5|g__Deinococcus.s__Deinococcus_radiodurans	1.6666666667
+UniRef50_S6AW99	1.6666666667
+UniRef50_S6AW99|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6666666667
+UniRef50_U5MSZ1	1.6666666667
+UniRef50_U5MSZ1|g__Clostridium.s__Clostridium_beijerinckii	1.6666666667
+UniRef50_UPI0003802981: 30S ribosomal protein S13	1.6661811948
+UniRef50_UPI0003802981: 30S ribosomal protein S13|unclassified	1.6661811948
+UniRef50_Q9RX17: Virulence factor-related protein	1.6659751124
+UniRef50_Q9RX17: Virulence factor-related protein|g__Deinococcus.s__Deinococcus_radiodurans	1.6659751124
+UniRef50_UPI00016A2E47: alpha/beta hydrolase, partial	1.6657041508
+UniRef50_UPI00016A2E47: alpha/beta hydrolase, partial|unclassified	1.6657041508
+UniRef50_UPI0003B50DDF: transposase	1.6655240709
+UniRef50_UPI0003B50DDF: transposase|unclassified	1.6655240709
+UniRef50_A4WQ24: Lytic transglycosylase, catalytic	1.6649312627
+UniRef50_A4WQ24: Lytic transglycosylase, catalytic|unclassified	1.6649312627
+UniRef50_I3TSH3	1.6647967868
+UniRef50_I3TSH3|unclassified	1.6647967868
+UniRef50_R7FRD0	1.6642674617
+UniRef50_R7FRD0|unclassified	1.6642674617
+UniRef50_A6LZ43: Binding-protein-dependent transport systems inner membrane component	1.6638935108
+UniRef50_A6LZ43: Binding-protein-dependent transport systems inner membrane component|g__Clostridium.s__Clostridium_beijerinckii	1.6638935108
+UniRef50_F2EH56: Predicted protein (Fragment)	1.6632465078
+UniRef50_F2EH56: Predicted protein (Fragment)|unclassified	1.6632465078
+UniRef50_K7RKE8: Pyridine nucleotide-disulfide oxidoreductase family protein associated with PFOR	1.6629817272
+UniRef50_K7RKE8: Pyridine nucleotide-disulfide oxidoreductase family protein associated with PFOR|g__Propionibacterium.s__Propionibacterium_acnes	1.6629817272
+UniRef50_Q0FWP1	1.6629730168
+UniRef50_Q0FWP1|unclassified	1.6629730168
+UniRef50_A0JW97: 4-hydroxyphenylacetate 3-monooxygenase oxygenase component	1.6628239211
+UniRef50_A0JW97: 4-hydroxyphenylacetate 3-monooxygenase oxygenase component|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6628239211
+UniRef50_S5CIR4: EAL domain protein	1.6623864003
+UniRef50_S5CIR4: EAL domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.6623864003
+UniRef50_B0V8D4	1.6620346058
+UniRef50_B0V8D4|g__Acinetobacter.s__Acinetobacter_baumannii	1.6620346058
+UniRef50_W9BYI7: Permease	1.6618407504
+UniRef50_W9BYI7: Permease|unclassified	1.6618407504
+UniRef50_R6H7C0	1.6615662693
+UniRef50_R6H7C0|unclassified	1.6615662693
+UniRef50_A8LNJ7	1.6613825927
+UniRef50_A8LNJ7|unclassified	1.6613825927
+UniRef50_C3ZSQ3	1.6611416912
+UniRef50_C3ZSQ3|unclassified	1.6611416912
+UniRef50_C3HNM4: ABC-2 type transport system permease protein	1.6611295681
+UniRef50_C3HNM4: ABC-2 type transport system permease protein|unclassified	1.6611295681
+UniRef50_D4H9Q4: Hydrolase, P-loop family	1.6611295681
+UniRef50_D4H9Q4: Hydrolase, P-loop family|g__Propionibacterium.s__Propionibacterium_acnes	1.6611295681
+UniRef50_D7GHW6: Cytochrome d ubiquinol oxidase, subunit II	1.6611295681
+UniRef50_D7GHW6: Cytochrome d ubiquinol oxidase, subunit II|g__Propionibacterium.s__Propionibacterium_acnes	1.6611295681
+UniRef50_Q8E6C2	1.6611295681
+UniRef50_Q8E6C2|g__Streptococcus.s__Streptococcus_agalactiae	1.6611295681
+UniRef50_Q9RSF0: Leucine--tRNA ligase	1.6607807061
+UniRef50_Q9RSF0: Leucine--tRNA ligase|g__Deinococcus.s__Deinococcus_radiodurans	1.6607807061
+UniRef50_F5XYC9	1.6607296123
+UniRef50_F5XYC9|unclassified	1.6607296123
+UniRef50_UPI00034B532F: hypothetical protein	1.6606854534
+UniRef50_UPI00034B532F: hypothetical protein|unclassified	1.6606854534
+UniRef50_B9KT44	1.6605055436
+UniRef50_B9KT44|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.2658227848
+UniRef50_B9KT44|unclassified	0.3946827588
+UniRef50_UPI00045450D8: PREDICTED: POU domain, class 4, transcription factor 1-like, partial	1.6603893435
+UniRef50_UPI00045450D8: PREDICTED: POU domain, class 4, transcription factor 1-like, partial|unclassified	1.6603893435
+UniRef50_Q9AAI4: Nitrate transporter, NarK/NasA family	1.6597693265
+UniRef50_Q9AAI4: Nitrate transporter, NarK/NasA family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6597693265
+UniRef50_W6RG63	1.6596032498
+UniRef50_W6RG63|unclassified	1.6596032498
+UniRef50_UPI00035F2BFB: hypothetical protein	1.6593464882
+UniRef50_UPI00035F2BFB: hypothetical protein|unclassified	1.6593464882
+UniRef50_UPI00036D02DA: hypothetical protein, partial	1.6593269836
+UniRef50_UPI00036D02DA: hypothetical protein, partial|unclassified	1.6593269836
+UniRef50_A6LV61: Histidine kinase	1.6590683260
+UniRef50_A6LV61: Histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	1.6590683260
+UniRef50_T2DYU2: Drug resistance transporter, Bcr/CflA subfamily protein	1.6590629150
+UniRef50_T2DYU2: Drug resistance transporter, Bcr/CflA subfamily protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6590629150
+UniRef50_A0A010Q7Z2	1.6584457576
+UniRef50_A0A010Q7Z2|unclassified	1.6584457576
+UniRef50_A6LWQ2	1.6583747927
+UniRef50_A6LWQ2|g__Clostridium.s__Clostridium_beijerinckii	1.6583747927
+UniRef50_A6LYA1: Phage replisome organizer, putative	1.6583747927
+UniRef50_A6LYA1: Phage replisome organizer, putative|g__Clostridium.s__Clostridium_beijerinckii	1.6583747927
+UniRef50_E6X978: NADP-dependent oxidoreductase domain protein	1.6583747927
+UniRef50_E6X978: NADP-dependent oxidoreductase domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.6583747927
+UniRef50_K9BU68: Molybdopterin-binding domain of aldehyde dehydrogenase protein	1.6583747927
+UniRef50_K9BU68: Molybdopterin-binding domain of aldehyde dehydrogenase protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.6583747927
+UniRef50_M5F528	1.6583747927
+UniRef50_M5F528|unclassified	1.6583747927
+UniRef50_Q6F7X4	1.6583747927
+UniRef50_Q6F7X4|g__Acinetobacter.s__Acinetobacter_baumannii	1.6583747927
+UniRef50_UPI00036E42DA: hypothetical protein	1.6581898453
+UniRef50_UPI00036E42DA: hypothetical protein|unclassified	1.6581898453
+UniRef50_A6LVD4: Sigma54 specific transcriptional regulator, Fis family	1.6576177335
+UniRef50_A6LVD4: Sigma54 specific transcriptional regulator, Fis family|g__Clostridium.s__Clostridium_beijerinckii	1.6576177335
+UniRef50_UPI000441CA6F: PREDICTED: methionine aminopeptidase 1-like	1.6575038012
+UniRef50_UPI000441CA6F: PREDICTED: methionine aminopeptidase 1-like|unclassified	1.6575038012
+UniRef50_X6F4J3	1.6570614568
+UniRef50_X6F4J3|unclassified	1.6570614568
+UniRef50_S5CX29: Tfp pilus assembly protein PilN	1.6567824117
+UniRef50_S5CX29: Tfp pilus assembly protein PilN|g__Acinetobacter.s__Acinetobacter_baumannii	1.5649452269
+UniRef50_S5CX29: Tfp pilus assembly protein PilN|unclassified	0.0918371848
+UniRef50_H4EIK8	1.6567508569
+UniRef50_H4EIK8|unclassified	1.6567508569
+UniRef50_UPI000477CFFE: hypothetical protein, partial	1.6565595796
+UniRef50_UPI000477CFFE: hypothetical protein, partial|unclassified	1.6565595796
+UniRef50_S3NMU2	1.6563217997
+UniRef50_S3NMU2|g__Acinetobacter.s__Acinetobacter_baumannii	1.6563217997
+UniRef50_O31248: Peptidyl-prolyl cis-trans isomerase (PPIase) (Rotamase)	1.6557450864
+UniRef50_O31248: Peptidyl-prolyl cis-trans isomerase (PPIase) (Rotamase)|g__Acinetobacter.s__Acinetobacter_baumannii	1.6557450864
+UniRef50_J9P4P6	1.6556736303
+UniRef50_J9P4P6|unclassified	1.6556736303
+UniRef50_L6YR76: Guanosine 5'-monophosphate oxidoreductase	1.6556291391
+UniRef50_L6YR76: Guanosine 5'-monophosphate oxidoreductase|g__Escherichia.s__Escherichia_coli	1.6556291391
+UniRef50_UPI0000164CF9: ferredoxin, putative, partial	1.6556291391
+UniRef50_UPI0000164CF9: ferredoxin, putative, partial|g__Deinococcus.s__Deinococcus_radiodurans	1.6556291391
+UniRef50_UPI000468284E: hypothetical protein	1.6556291391
+UniRef50_UPI000468284E: hypothetical protein|unclassified	1.6556291391
+UniRef50_V4QIN3	1.6556291391
+UniRef50_V4QIN3|unclassified	1.6556291391
+UniRef50_X6KYJ4: Hydrolase	1.6556291391
+UniRef50_X6KYJ4: Hydrolase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6556291391
+UniRef50_Q0BQG5: Nucleoside diphosphate kinase	1.6555436522
+UniRef50_Q0BQG5: Nucleoside diphosphate kinase|unclassified	1.6555436522
+UniRef50_Q9RWW8	1.6555009876
+UniRef50_Q9RWW8|g__Deinococcus.s__Deinococcus_radiodurans	1.6555009876
+UniRef50_UPI00037D55D5: hypothetical protein	1.6548769483
+UniRef50_UPI00037D55D5: hypothetical protein|unclassified	1.6548769483
+UniRef50_W4UKK8: DNA-binding protein	1.6546575122
+UniRef50_W4UKK8: DNA-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	1.6546575122
+UniRef50_M3D8S8: Integral membrane protein	1.6541090412
+UniRef50_M3D8S8: Integral membrane protein|unclassified	1.6541090412
+UniRef50_K9ZE84	1.6540937664
+UniRef50_K9ZE84|unclassified	1.6540937664
+UniRef50_W4UIW2: AsnC-family transcriptional regulatory protein	1.6535208640
+UniRef50_W4UIW2: AsnC-family transcriptional regulatory protein|unclassified	1.6535208640
+UniRef50_A8ACU9	1.6532757487
+UniRef50_A8ACU9|unclassified	1.6532757487
+UniRef50_UPI00036D4C12: phosphoenolpyruvate carboxykinase, partial	1.6531372237
+UniRef50_UPI00036D4C12: phosphoenolpyruvate carboxykinase, partial|unclassified	1.6531372237
+UniRef50_A0B4T1: Short-chain dehydrogenase/reductase SDR	1.6528925620
+UniRef50_A0B4T1: Short-chain dehydrogenase/reductase SDR|g__Acinetobacter.s__Acinetobacter_baumannii	1.6528925620
+UniRef50_B0VBV4	1.6528925620
+UniRef50_B0VBV4|g__Acinetobacter.s__Acinetobacter_baumannii	1.6528925620
+UniRef50_K8AXM7: NADH-ubiquinone oxidoreductase chain G	1.6528925620
+UniRef50_K8AXM7: NADH-ubiquinone oxidoreductase chain G|g__Escherichia.s__Escherichia_coli	1.6528925620
+UniRef50_N9IVN2	1.6528925620
+UniRef50_N9IVN2|g__Acinetobacter.s__Acinetobacter_baumannii	1.6528925620
+UniRef50_A3M8H3: Chemotactic signal transduction system component	1.6528512838
+UniRef50_A3M8H3: Chemotactic signal transduction system component|g__Acinetobacter.s__Acinetobacter_baumannii	1.6528512838
+UniRef50_K7S7L1: Drug resistance MFS transporter, drug:H+ antiporter-2 (14 Spanner) (DHA2) family protein	1.6528326029
+UniRef50_K7S7L1: Drug resistance MFS transporter, drug:H+ antiporter-2 (14 Spanner) (DHA2) family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.6528326029
+UniRef50_UPI0003B3BF67: XRE family transcriptional regulator	1.6525707659
+UniRef50_UPI0003B3BF67: XRE family transcriptional regulator|unclassified	1.6525707659
+UniRef50_S5YQ58	1.6518392061
+UniRef50_S5YQ58|unclassified	1.6518392061
+UniRef50_Q9RR86: BrkB protein, putative	1.6518105888
+UniRef50_Q9RR86: BrkB protein, putative|g__Deinococcus.s__Deinococcus_radiodurans	1.6518105888
+UniRef50_UPI0002BC4B60: hypothetical protein	1.6517874146
+UniRef50_UPI0002BC4B60: hypothetical protein|unclassified	1.6517874146
+UniRef50_UPI000226030C: arsenate reductase	1.6516806803
+UniRef50_UPI000226030C: arsenate reductase|unclassified	1.6516806803
+UniRef50_L0EBV0	1.6516232035
+UniRef50_L0EBV0|unclassified	1.6516232035
+UniRef50_Q2FD99: Multidrug efflux transport protein	1.6515276631
+UniRef50_Q2FD99: Multidrug efflux transport protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.6515276631
+UniRef50_A1WDW4: 3-methyl-2-oxobutanoate hydroxymethyltransferase	1.6508782886
+UniRef50_A1WDW4: 3-methyl-2-oxobutanoate hydroxymethyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2515644556
+UniRef50_A1WDW4: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.3993138330
+UniRef50_A1B642	1.6504568229
+UniRef50_A1B642|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6504568229
+UniRef50_UPI00046D8786: CopG family transcriptional regulator	1.6503623835
+UniRef50_UPI00046D8786: CopG family transcriptional regulator|unclassified	1.6503623835
+UniRef50_A6LXC3	1.6501650165
+UniRef50_A6LXC3|g__Clostridium.s__Clostridium_beijerinckii	1.6501650165
+UniRef50_A6SYV8: Glucosyl transferase	1.6501650165
+UniRef50_A6SYV8: Glucosyl transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6501650165
+UniRef50_H9UXV0: Glycerol-3-phosphate regulon repressor	1.6501650165
+UniRef50_H9UXV0: Glycerol-3-phosphate regulon repressor|g__Escherichia.s__Escherichia_coli	1.6501650165
+UniRef50_Q9I2E2: FMN-dependent NADH-azoreductase 2	1.6501650165
+UniRef50_Q9I2E2: FMN-dependent NADH-azoreductase 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6501650165
+UniRef50_UPI0003B44831: signal peptidase	1.6501650165
+UniRef50_UPI0003B44831: signal peptidase|unclassified	1.6501650165
+UniRef50_H7CZP9: ABC transporter, ATP-binding protein	1.6501442914
+UniRef50_H7CZP9: ABC transporter, ATP-binding protein|g__Clostridium.s__Clostridium_beijerinckii	1.6501442914
+UniRef50_A0A058V0Y9	1.6498664965
+UniRef50_A0A058V0Y9|unclassified	1.6498664965
+UniRef50_R4ZPC4: Streptococcal histidine triad protein	1.6497546460
+UniRef50_R4ZPC4: Streptococcal histidine triad protein|g__Streptococcus.s__Streptococcus_agalactiae	1.6497546460
+UniRef50_A9M186: Imidazoleglycerol-phosphate dehydratase	1.6496809017
+UniRef50_A9M186: Imidazoleglycerol-phosphate dehydratase|g__Neisseria.s__Neisseria_meningitidis	1.1235955056
+UniRef50_A9M186: Imidazoleglycerol-phosphate dehydratase|unclassified	0.5260853961
+UniRef50_C4J3V7	1.6495120634
+UniRef50_C4J3V7|unclassified	1.6495120634
+UniRef50_K0S5Y4	1.6492622982
+UniRef50_K0S5Y4|unclassified	1.6492622982
+UniRef50_I0E580	1.6490983712
+UniRef50_I0E580|g__Helicobacter.s__Helicobacter_pylori	1.6490983712
+UniRef50_A6M1J5	1.6488090990
+UniRef50_A6M1J5|g__Clostridium.s__Clostridium_beijerinckii	1.6488090990
+UniRef50_C2DXW1	1.6486630992
+UniRef50_C2DXW1|unclassified	1.6486630992
+UniRef50_A3M6U7: CsuD	1.6486363672
+UniRef50_A3M6U7: CsuD|g__Acinetobacter.s__Acinetobacter_baumannii	1.6486363672
+UniRef50_W1DPU9: Sulfate permease	1.6477048382
+UniRef50_W1DPU9: Sulfate permease|unclassified	1.6477048382
+UniRef50_A6LT54	1.6474464580
+UniRef50_A6LT54|g__Clostridium.s__Clostridium_beijerinckii	1.6474464580
+UniRef50_B0VQL7	1.6474464580
+UniRef50_B0VQL7|g__Acinetobacter.s__Acinetobacter_baumannii	1.6474464580
+UniRef50_M9VDC9: Trk system potassium uptake protein TrkA	1.6474464580
+UniRef50_M9VDC9: Trk system potassium uptake protein TrkA|g__Propionibacterium.s__Propionibacterium_acnes	1.6474464580
+UniRef50_Q9I3D8	1.6474464580
+UniRef50_Q9I3D8|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6474464580
+UniRef50_A0A016XHR3	1.6473446919
+UniRef50_A0A016XHR3|unclassified	1.6473446919
+UniRef50_X2MB83: Cytochrome C	1.6471932925
+UniRef50_X2MB83: Cytochrome C|unclassified	1.6471932925
+UniRef50_S1SS99	1.6465903647
+UniRef50_S1SS99|unclassified	1.6465903647
+UniRef50_UPI00046D5342: hypothetical protein	1.6464736930
+UniRef50_UPI00046D5342: hypothetical protein|unclassified	1.6464736930
+UniRef50_I5C7U6: Carbon-monoxide dehydrogenase large subunit, coxL-like protein	1.6461465193
+UniRef50_I5C7U6: Carbon-monoxide dehydrogenase large subunit, coxL-like protein|unclassified	1.6461465193
+UniRef50_C4K9M3: NADH:flavin oxidoreductase/NADH oxidase	1.6460977385
+UniRef50_C4K9M3: NADH:flavin oxidoreductase/NADH oxidase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6460977385
+UniRef50_E8YMA7: Xanthine dehydrogenase, small subunit	1.6460579942
+UniRef50_E8YMA7: Xanthine dehydrogenase, small subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6460579942
+UniRef50_J9NWV5	1.6456934249
+UniRef50_J9NWV5|unclassified	1.6456934249
+UniRef50_T2DYB6: Major Facilitator Superfamily protein	1.6455607091
+UniRef50_T2DYB6: Major Facilitator Superfamily protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6455607091
+UniRef50_A4VFI9: Na+/proline symporter	1.6455329896
+UniRef50_A4VFI9: Na+/proline symporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6455329896
+UniRef50_UPI00035F2BFA: hypothetical protein	1.6454936530
+UniRef50_UPI00035F2BFA: hypothetical protein|unclassified	1.6454936530
+UniRef50_X5EI34	1.6453407170
+UniRef50_X5EI34|unclassified	1.6453407170
+UniRef50_U3HTG2	1.6452584213
+UniRef50_U3HTG2|unclassified	1.6452584213
+UniRef50_UPI00047014CA: hypothetical protein	1.6451581326
+UniRef50_UPI00047014CA: hypothetical protein|unclassified	1.6451581326
+UniRef50_Q0EXK5: UPF0125 protein SPV1_03358	1.6450991300
+UniRef50_Q0EXK5: UPF0125 protein SPV1_03358|unclassified	1.6450991300
+UniRef50_UPI00036D2449: hypothetical protein	1.6449852624
+UniRef50_UPI00036D2449: hypothetical protein|unclassified	1.6449852624
+UniRef50_A3SRG4	1.6449372385
+UniRef50_A3SRG4|unclassified	1.6449372385
+UniRef50_V8SK07	1.6447887145
+UniRef50_V8SK07|unclassified	1.6447887145
+UniRef50_J2R0B4	1.6442281377
+UniRef50_J2R0B4|unclassified	1.6442281377
+UniRef50_V9TY41: Aldehyde dehydrogenase	1.6438221293
+UniRef50_V9TY41: Aldehyde dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6438221293
+UniRef50_I2X947	1.6438054425
+UniRef50_I2X947|unclassified	1.6438054425
+UniRef50_Q0TTK8: ATP-dependent zinc metalloprotease FtsH	1.6435279527
+UniRef50_Q0TTK8: ATP-dependent zinc metalloprotease FtsH|g__Clostridium.s__Clostridium_beijerinckii	1.6435279527
+UniRef50_A4X8H4	1.6433066053
+UniRef50_A4X8H4|unclassified	1.6433066053
+UniRef50_A4XS92: Multisubunit potassium/proton antiporter, PhaD subunit	1.6431664984
+UniRef50_A4XS92: Multisubunit potassium/proton antiporter, PhaD subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6431664984
+UniRef50_P42810: TPR repeat-containing protein PA4667	1.6431172740
+UniRef50_P42810: TPR repeat-containing protein PA4667|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3811220666
+UniRef50_P42810: TPR repeat-containing protein PA4667|unclassified	0.2619952074
+UniRef50_A5ENX4: Cysteine desulfuration protein SufE	1.6422896709
+UniRef50_A5ENX4: Cysteine desulfuration protein SufE|unclassified	1.6422896709
+UniRef50_UPI000380FF19: chemotaxis protein CheY, partial	1.6421619518
+UniRef50_UPI000380FF19: chemotaxis protein CheY, partial|unclassified	1.6421619518
+UniRef50_A6LUF1	1.6420361248
+UniRef50_A6LUF1|g__Clostridium.s__Clostridium_beijerinckii	1.6420361248
+UniRef50_F4AJ46: Peptidase M24	1.6420361248
+UniRef50_F4AJ46: Peptidase M24|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6420361248
+UniRef50_N0A600	1.6420361248
+UniRef50_N0A600|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6420361248
+UniRef50_Q8E5X0: Hydroxyethylthiazole kinase	1.6420361248
+UniRef50_Q8E5X0: Hydroxyethylthiazole kinase|g__Streptococcus.s__Streptococcus_agalactiae	1.6420361248
+UniRef50_Q9RVA0	1.6420361248
+UniRef50_Q9RVA0|g__Deinococcus.s__Deinococcus_radiodurans	1.6420361248
+UniRef50_Q9RW71: Acetyltransferase, putative	1.6420361248
+UniRef50_Q9RW71: Acetyltransferase, putative|g__Deinococcus.s__Deinococcus_radiodurans	1.6420361248
+UniRef50_U5MX08: Phosphoglycerate mutase	1.6420361248
+UniRef50_U5MX08: Phosphoglycerate mutase|g__Clostridium.s__Clostridium_beijerinckii	1.6420361248
+UniRef50_V5WWK4: Glycine/betaine ABC transporter permease	1.6420361248
+UniRef50_V5WWK4: Glycine/betaine ABC transporter permease|g__Clostridium.s__Clostridium_beijerinckii	1.6420361248
+UniRef50_V4UGZ7	1.6419164878
+UniRef50_V4UGZ7|unclassified	1.6419164878
+UniRef50_D9W2E7: BldA-regulated nucleotide binding protein (Fragment)	1.6417259201
+UniRef50_D9W2E7: BldA-regulated nucleotide binding protein (Fragment)|unclassified	1.6417259201
+UniRef50_K7WGH8	1.6414375152
+UniRef50_K7WGH8|unclassified	1.6414375152
+UniRef50_Q9RVG1: Probable 3-hydroxybutyryl-CoA dehydrogenase	1.6412818008
+UniRef50_Q9RVG1: Probable 3-hydroxybutyryl-CoA dehydrogenase|g__Deinococcus.s__Deinococcus_radiodurans	1.4534883721
+UniRef50_Q9RVG1: Probable 3-hydroxybutyryl-CoA dehydrogenase|unclassified	0.1877934287
+UniRef50_V7ZHE5: Potassium-transporting ATPase A chain	1.6410082441
+UniRef50_V7ZHE5: Potassium-transporting ATPase A chain|g__Acinetobacter.s__Acinetobacter_baumannii	1.6410082441
+UniRef50_X0MND3: Chaplin	1.6407223065
+UniRef50_X0MND3: Chaplin|unclassified	1.6407223065
+UniRef50_A0A017BYI2: DEAD/DEAH box helicase family protein	1.6406845304
+UniRef50_A0A017BYI2: DEAD/DEAH box helicase family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.6406845304
+UniRef50_UPI0003682E3B: hypothetical protein	1.6403952835
+UniRef50_UPI0003682E3B: hypothetical protein|unclassified	1.6403952835
+UniRef50_A0A021VU42	1.6401716663
+UniRef50_A0A021VU42|unclassified	1.6401716663
+UniRef50_S5CIT2: Non-ribosomal peptide synthetase modules-related protein	1.6399335912
+UniRef50_S5CIT2: Non-ribosomal peptide synthetase modules-related protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.6399335912
+UniRef50_Q02IQ8	1.6399163459
+UniRef50_Q02IQ8|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6399163459
+UniRef50_UPI00046602AF: formate dehydrogenase	1.6396199700
+UniRef50_UPI00046602AF: formate dehydrogenase|unclassified	1.6396199700
+UniRef50_UPI0002BC6EFA: hypothetical protein	1.6393442623
+UniRef50_UPI0002BC6EFA: hypothetical protein|unclassified	1.6393442623
+UniRef50_F0N5W3: Rhodanese domain protein	1.6393442623
+UniRef50_F0N5W3: Rhodanese domain protein|unclassified	1.6393442623
+UniRef50_I0EL02	1.6393442623
+UniRef50_I0EL02|g__Helicobacter.s__Helicobacter_pylori	1.6393442623
+UniRef50_W0Z3E8: Cation efflux system protein	1.6393442623
+UniRef50_W0Z3E8: Cation efflux system protein|unclassified	1.6393442623
+UniRef50_X2N4S2: Maltose transporter membrane protein	1.6393442623
+UniRef50_X2N4S2: Maltose transporter membrane protein|g__Escherichia.s__Escherichia_coli	1.6393442623
+UniRef50_N1ZJ21	1.6391405082
+UniRef50_N1ZJ21|unclassified	1.6391405082
+UniRef50_V4QWZ4	1.6386230115
+UniRef50_V4QWZ4|unclassified	1.6386230115
+UniRef50_G8V7H1: ABC transporter ATP-binding protein	1.6382846905
+UniRef50_G8V7H1: ABC transporter ATP-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	1.6382846905
+UniRef50_B0VT73	1.6381521216
+UniRef50_B0VT73|g__Acinetobacter.s__Acinetobacter_baumannii	1.6381521216
+UniRef50_G8V328: Pyridine nucleotide-disulfide oxidoreductase family protein	1.6380295015
+UniRef50_G8V328: Pyridine nucleotide-disulfide oxidoreductase family protein|unclassified	1.6380295015
+UniRef50_UPI000382B2B6: hypothetical protein	1.6380016380
+UniRef50_UPI000382B2B6: hypothetical protein|unclassified	1.6380016380
+UniRef50_D5VDZ2	1.6374597524
+UniRef50_D5VDZ2|unclassified	1.6374597524
+UniRef50_UPI000470A8CC: hypothetical protein, partial	1.6372588724
+UniRef50_UPI000470A8CC: hypothetical protein, partial|unclassified	1.6372588724
+UniRef50_J8V9V9	1.6372053366
+UniRef50_J8V9V9|unclassified	1.6372053366
+UniRef50_G2JE53: MFS family transporter	1.6371446964
+UniRef50_G2JE53: MFS family transporter|g__Acinetobacter.s__Acinetobacter_baumannii	1.6371446964
+UniRef50_J8VB53	1.6369916817
+UniRef50_J8VB53|unclassified	1.6369916817
+UniRef50_Q0VKZ2: Rubredoxin-2	1.6369267277
+UniRef50_Q0VKZ2: Rubredoxin-2|unclassified	1.6369267277
+UniRef50_D6AIG0	1.6368257211
+UniRef50_D6AIG0|unclassified	1.6368257211
+UniRef50_A6LWG5: 7-carboxy-7-deazaguanine synthase	1.6366612111
+UniRef50_A6LWG5: 7-carboxy-7-deazaguanine synthase|g__Clostridium.s__Clostridium_beijerinckii	1.6366612111
+UniRef50_R5NRV6: Pseudouridine synthase	1.6366612111
+UniRef50_R5NRV6: Pseudouridine synthase|g__Clostridium.s__Clostridium_beijerinckii	1.6366612111
+UniRef50_R9V210: Allophanate hydrolase	1.6366612111
+UniRef50_R9V210: Allophanate hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6366612111
+UniRef50_C0Y0T7: Outer membrane efflux protein OprC	1.6365559572
+UniRef50_C0Y0T7: Outer membrane efflux protein OprC|g__Acinetobacter.s__Acinetobacter_baumannii	1.6365559572
+UniRef50_X6FJR8	1.6363433370
+UniRef50_X6FJR8|unclassified	1.6363433370
+UniRef50_Q4X9A7	1.6363017013
+UniRef50_Q4X9A7|unclassified	1.6363017013
+UniRef50_F3W0V1	1.6354834760
+UniRef50_F3W0V1|unclassified	1.6354834760
+UniRef50_Q6A9Q4: UDP-N-acetylmuramoylalanine--D-glutamate ligase	1.6353929090
+UniRef50_Q6A9Q4: UDP-N-acetylmuramoylalanine--D-glutamate ligase|g__Propionibacterium.s__Propionibacterium_acnes	1.6353929090
+UniRef50_U6MMN4	1.6353884941
+UniRef50_U6MMN4|unclassified	1.6353884941
+UniRef50_Q9ZMF0: Putative methylthiotransferase jhp_0270	1.6353240696
+UniRef50_Q9ZMF0: Putative methylthiotransferase jhp_0270|g__Helicobacter.s__Helicobacter_pylori	1.6353240696
+UniRef50_N5HG80	1.6350778494
+UniRef50_N5HG80|unclassified	1.6350778494
+UniRef50_UPI0002558CFD: HD superfamily hydrolase-like protein, partial	1.6350556797
+UniRef50_UPI0002558CFD: HD superfamily hydrolase-like protein, partial|unclassified	1.6350556797
+UniRef50_A6LZ84: Binding-protein-dependent transport systems inner membrane component	1.6339869281
+UniRef50_A6LZ84: Binding-protein-dependent transport systems inner membrane component|g__Clostridium.s__Clostridium_beijerinckii	1.6339869281
+UniRef50_I0ECM2: Flagellar motor switch protein FliY	1.6339869281
+UniRef50_I0ECM2: Flagellar motor switch protein FliY|g__Helicobacter.s__Helicobacter_pylori	1.6339869281
+UniRef50_M1JGK6: Ammonium transporter	1.6339869281
+UniRef50_M1JGK6: Ammonium transporter|unclassified	1.6339869281
+UniRef50_O32216: UPF0126 membrane protein YvgT	1.6339869281
+UniRef50_O32216: UPF0126 membrane protein YvgT|g__Streptococcus.s__Streptococcus_agalactiae	1.6339869281
+UniRef50_Q02LX8: Adenylate cyclase ExoY	1.6339869281
+UniRef50_Q02LX8: Adenylate cyclase ExoY|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6339869281
+UniRef50_X2H8Z5	1.6339869281
+UniRef50_X2H8Z5|g__Neisseria.s__Neisseria_meningitidis	1.6339869281
+UniRef50_A3SP93	1.6339202627
+UniRef50_A3SP93|unclassified	1.6339202627
+UniRef50_Q52967	1.6337052282
+UniRef50_Q52967|unclassified	1.6337052282
+UniRef50_Q30SK1: Polysaccharide deacetylase	1.6336581034
+UniRef50_Q30SK1: Polysaccharide deacetylase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6336581034
+UniRef50_E7DWP7: WdaG	1.6336177728
+UniRef50_E7DWP7: WdaG|unclassified	1.6336177728
+UniRef50_H4F9Z4	1.6329419463
+UniRef50_H4F9Z4|unclassified	1.6329419463
+UniRef50_Q0HNC2: L-threonine ammonia-lyase	1.6328286525
+UniRef50_Q0HNC2: L-threonine ammonia-lyase|g__Neisseria.s__Neisseria_meningitidis	1.6328286525
+UniRef50_UPI0003798946: hypothetical protein	1.6326829418
+UniRef50_UPI0003798946: hypothetical protein|unclassified	1.6326829418
+UniRef50_Q46UT4	1.6323795016
+UniRef50_Q46UT4|unclassified	1.6323795016
+UniRef50_I0LAZ1	1.6323200966
+UniRef50_I0LAZ1|unclassified	1.6323200966
+UniRef50_I7ENL7	1.6320388996
+UniRef50_I7ENL7|unclassified	1.6320388996
+UniRef50_J7TVX7: Integral membrane protein	1.6317663770
+UniRef50_J7TVX7: Integral membrane protein|unclassified	1.6317663770
+UniRef50_UPI00047247D7: hypothetical protein	1.6316802273
+UniRef50_UPI00047247D7: hypothetical protein|unclassified	1.6316802273
+UniRef50_X2NCH2	1.6315387894
+UniRef50_X2NCH2|unclassified	1.6315387894
+UniRef50_A6LV78: NMT1/THI5-like protein	1.6313213703
+UniRef50_A6LV78: NMT1/THI5-like protein|g__Clostridium.s__Clostridium_beijerinckii	1.6313213703
+UniRef50_C6CW74: Sulfate ABC transporter, ATPase subunit	1.6313213703
+UniRef50_C6CW74: Sulfate ABC transporter, ATPase subunit|g__Clostridium.s__Clostridium_beijerinckii	1.6313213703
+UniRef50_Q1QAV9	1.6313213703
+UniRef50_Q1QAV9|g__Acinetobacter.s__Acinetobacter_baumannii	1.6313213703
+UniRef50_Q6A7W9: NAD kinase	1.6313213703
+UniRef50_Q6A7W9: NAD kinase|g__Propionibacterium.s__Propionibacterium_acnes	1.6313213703
+UniRef50_Q7N4Q1: Complete genome; segment 8/17	1.6313213703
+UniRef50_Q7N4Q1: Complete genome; segment 8/17|g__Acinetobacter.s__Acinetobacter_baumannii	1.6313213703
+UniRef50_Q9RSA9	1.6313213703
+UniRef50_Q9RSA9|g__Deinococcus.s__Deinococcus_radiodurans	1.6313213703
+UniRef50_R6G2T1: Dihydroxyacetone kinase L subunit	1.6313213703
+UniRef50_R6G2T1: Dihydroxyacetone kinase L subunit|g__Clostridium.s__Clostridium_beijerinckii	1.6313213703
+UniRef50_R7ENT3: Folylpolyglutamate synthase	1.6313213703
+UniRef50_R7ENT3: Folylpolyglutamate synthase|unclassified	1.6313213703
+UniRef50_S9WSQ2: Cytochrome c	1.6313213703
+UniRef50_S9WSQ2: Cytochrome c|unclassified	1.6313213703
+UniRef50_UPI0003EDF9DD: zinc resistance protein	1.6313213703
+UniRef50_UPI0003EDF9DD: zinc resistance protein|unclassified	1.6313213703
+UniRef50_W4KGM2	1.6306482007
+UniRef50_W4KGM2|unclassified	1.6306482007
+UniRef50_S8ZWN6: Phosphate ABC transporter substrate-binding protein (Fragment)	1.6306450881
+UniRef50_S8ZWN6: Phosphate ABC transporter substrate-binding protein (Fragment)|unclassified	1.6306450881
+UniRef50_S5XZH4: Replication protein C	1.6304556251
+UniRef50_S5XZH4: Replication protein C|unclassified	1.6304556251
+UniRef50_UPI0004771B3E: hypothetical protein	1.6304394789
+UniRef50_UPI0004771B3E: hypothetical protein|unclassified	1.6304394789
+UniRef50_UPI00045E7C5F: translation initiation factor 2	1.6303384004
+UniRef50_UPI00045E7C5F: translation initiation factor 2|unclassified	1.6303384004
+UniRef50_N6UZ26	1.6301677387
+UniRef50_N6UZ26|unclassified	1.6301677387
+UniRef50_Q8YDS8: Cation-transporting p-type atpase b	1.6301405857
+UniRef50_Q8YDS8: Cation-transporting p-type atpase b|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6301405857
+UniRef50_A5N4G1: Predicted exonuclease, sbcD related	1.6299918500
+UniRef50_A5N4G1: Predicted exonuclease, sbcD related|g__Clostridium.s__Clostridium_beijerinckii	1.6299918500
+UniRef50_Q6AAL4: S-ribosylhomocysteine lyase	1.6299717439
+UniRef50_Q6AAL4: S-ribosylhomocysteine lyase|unclassified	1.6299717439
+UniRef50_Q88F11	1.6297824655
+UniRef50_Q88F11|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6297824655
+UniRef50_A0A017HBN8: Polyhydroxyalkanoate depolymerase, intracellular	1.6295399508
+UniRef50_A0A017HBN8: Polyhydroxyalkanoate depolymerase, intracellular|unclassified	1.6295399508
+UniRef50_H8GRZ1	1.6295356672
+UniRef50_H8GRZ1|unclassified	1.6295356672
+UniRef50_D1DII4: Ferredoxin	1.6294460784
+UniRef50_D1DII4: Ferredoxin|g__Neisseria.s__Neisseria_meningitidis	1.6294460784
+UniRef50_Z9RTQ3	1.6286967292
+UniRef50_Z9RTQ3|unclassified	1.6286967292
+UniRef50_D4HBJ9: Adenosine deaminase	1.6286644951
+UniRef50_D4HBJ9: Adenosine deaminase|g__Propionibacterium.s__Propionibacterium_acnes	1.6286644951
+UniRef50_E8PGL4: Endonuclease III	1.6286644951
+UniRef50_E8PGL4: Endonuclease III|g__Acinetobacter.s__Acinetobacter_baumannii	1.6286644951
+UniRef50_G0DU58: Triacylglycerol lipase	1.6286644951
+UniRef50_G0DU58: Triacylglycerol lipase|g__Propionibacterium.s__Propionibacterium_acnes	1.6286644951
+UniRef50_Q51368: Protein TonB	1.6286644951
+UniRef50_Q51368: Protein TonB|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6286644951
+UniRef50_Q8E7L9: Adapter protein MecA	1.6286644951
+UniRef50_Q8E7L9: Adapter protein MecA|g__Streptococcus.s__Streptococcus_agalactiae	1.6286644951
+UniRef50_Q9HWJ9	1.6286644951
+UniRef50_Q9HWJ9|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6286644951
+UniRef50_UPI000367A8A7: hypothetical protein	1.6286644951
+UniRef50_UPI000367A8A7: hypothetical protein|unclassified	1.6286644951
+UniRef50_UPI0003B4F1E6: hypothetical protein	1.6286644951
+UniRef50_UPI0003B4F1E6: hypothetical protein|unclassified	1.6286644951
+UniRef50_W6I515: Transcriptional regulator, LysR family protein	1.6286644951
+UniRef50_W6I515: Transcriptional regulator, LysR family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6286644951
+UniRef50_UPI000225EDDB: Prephenate dehydratase	1.6285768359
+UniRef50_UPI000225EDDB: Prephenate dehydratase|unclassified	1.6285768359
+UniRef50_Q5N7E4	1.6284479894
+UniRef50_Q5N7E4|unclassified	1.6284479894
+UniRef50_UPI00028A201E: LuxR family transcriptional regulator	1.6283901994
+UniRef50_UPI00028A201E: LuxR family transcriptional regulator|unclassified	1.6283901994
+UniRef50_P29969	1.6282707079
+UniRef50_P29969|unclassified	1.6282707079
+UniRef50_F7Y006	1.6279663504
+UniRef50_F7Y006|unclassified	1.6279663504
+UniRef50_L1P369	1.6274387859
+UniRef50_L1P369|unclassified	1.6274387859
+UniRef50_UPI00029DCC9C	1.6273849949
+UniRef50_UPI00029DCC9C|unclassified	1.6273849949
+UniRef50_Q0E4C7: Os02g0125700 protein (Fragment)	1.6273811626
+UniRef50_Q0E4C7: Os02g0125700 protein (Fragment)|unclassified	1.6273811626
+UniRef50_W4HL11	1.6272949166
+UniRef50_W4HL11|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6057333066
+UniRef50_W4HL11|unclassified	0.0215616101
+UniRef50_A0A059LAL7	1.6272606759
+UniRef50_A0A059LAL7|unclassified	1.6272606759
+UniRef50_U5MXQ9: Neutral endopeptidase PepO	1.6272391334
+UniRef50_U5MXQ9: Neutral endopeptidase PepO|g__Clostridium.s__Clostridium_beijerinckii	1.6272391334
+UniRef50_W8XZ85	1.6270973451
+UniRef50_W8XZ85|unclassified	1.6270973451
+UniRef50_T8XWN9	1.6269622189
+UniRef50_T8XWN9|unclassified	1.6269622189
+UniRef50_Q02HV4	1.6269039147
+UniRef50_Q02HV4|unclassified	1.6269039147
+UniRef50_UPI00036AD3A4: hypothetical protein	1.6264184790
+UniRef50_UPI00036AD3A4: hypothetical protein|unclassified	1.6264184790
+UniRef50_A0A017HLZ7	1.6263490265
+UniRef50_A0A017HLZ7|unclassified	1.6263490265
+UniRef50_A0A011P794	1.6261178016
+UniRef50_A0A011P794|unclassified	1.6261178016
+UniRef50_UPI00016A4C3D: hypothetical protein	1.6260563224
+UniRef50_UPI00016A4C3D: hypothetical protein|unclassified	1.6260563224
+UniRef50_A0A023RRK9: Threonine transporter	1.6260162602
+UniRef50_A0A023RRK9: Threonine transporter|g__Acinetobacter.s__Acinetobacter_baumannii	1.6260162602
+UniRef50_B7V115: Heme acquisition protein HasAp	1.6260162602
+UniRef50_B7V115: Heme acquisition protein HasAp|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6260162602
+UniRef50_D5W932: Sua5/YciO/YrdC/YwlC family protein	1.6260162602
+UniRef50_D5W932: Sua5/YciO/YrdC/YwlC family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.6260162602
+UniRef50_M1E6A4: 1-deoxy-D-xylulose-5-phosphate synthase	1.6260162602
+UniRef50_M1E6A4: 1-deoxy-D-xylulose-5-phosphate synthase|g__Clostridium.s__Clostridium_beijerinckii	1.6260162602
+UniRef50_Q605Q8: Beta-lactamase	1.6260162602
+UniRef50_Q605Q8: Beta-lactamase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6260162602
+UniRef50_X5ENZ1	1.6260162602
+UniRef50_X5ENZ1|g__Neisseria.s__Neisseria_meningitidis	1.6260162602
+UniRef50_Q1NB30	1.6257091546
+UniRef50_Q1NB30|unclassified	1.6257091546
+UniRef50_Q9ZM46: Translation initiation factor IF-2	1.6255376997
+UniRef50_Q9ZM46: Translation initiation factor IF-2|g__Helicobacter.s__Helicobacter_pylori	1.6255376997
+UniRef50_UPI0004641C50: hypothetical protein	1.6247203816
+UniRef50_UPI0004641C50: hypothetical protein|unclassified	1.6247203816
+UniRef50_B6B3C7: Iole protein	1.6246904420
+UniRef50_B6B3C7: Iole protein|unclassified	1.6246904420
+UniRef50_S6STB0	1.6246310592
+UniRef50_S6STB0|unclassified	1.6246310592
+UniRef50_UPI00036B457B: hypothetical protein	1.6244490320
+UniRef50_UPI00036B457B: hypothetical protein|unclassified	1.6244490320
+UniRef50_D3P474: 4-hydroxyphenylpyruvate dioxygenase	1.6243405757
+UniRef50_D3P474: 4-hydroxyphenylpyruvate dioxygenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6243405757
+UniRef50_F6BT14	1.6240378145
+UniRef50_F6BT14|unclassified	1.6240378145
+UniRef50_UPI0003C922CF: PREDICTED: serine/arginine repetitive matrix protein 2-like	1.6240058194
+UniRef50_UPI0003C922CF: PREDICTED: serine/arginine repetitive matrix protein 2-like|unclassified	1.6240058194
+UniRef50_A3M2C8: DNA mismatch repair enzyme	1.6236826788
+UniRef50_A3M2C8: DNA mismatch repair enzyme|g__Acinetobacter.s__Acinetobacter_baumannii	1.6236826788
+UniRef50_S5SYZ0: Mobilization protein MobC	1.6234845261
+UniRef50_S5SYZ0: Mobilization protein MobC|unclassified	1.6234845261
+UniRef50_A6LZ25: Methyltransferase type 11	1.6233766234
+UniRef50_A6LZ25: Methyltransferase type 11|g__Clostridium.s__Clostridium_beijerinckii	1.6233766234
+UniRef50_A6M046: Transcriptional regulator, TetR family	1.6233766234
+UniRef50_A6M046: Transcriptional regulator, TetR family|g__Clostridium.s__Clostridium_beijerinckii	1.6233766234
+UniRef50_X1YKP1	1.6233766234
+UniRef50_X1YKP1|unclassified	1.6233766234
+UniRef50_F1K0Y5: DNA-directed RNA polymerase (Fragment)	1.6230614965
+UniRef50_F1K0Y5: DNA-directed RNA polymerase (Fragment)|g__Streptococcus.s__Streptococcus_agalactiae	1.6230614965
+UniRef50_UPI000262CB34: arsenate reductase	1.6228326945
+UniRef50_UPI000262CB34: arsenate reductase|unclassified	1.6228326945
+UniRef50_R4XZE6: Integral membrane protein	1.6224277821
+UniRef50_R4XZE6: Integral membrane protein|unclassified	1.6224277821
+UniRef50_G9W1T5	1.6223077913
+UniRef50_G9W1T5|unclassified	1.6223077913
+UniRef50_UPI00046C792F: hypothetical protein	1.6218914520
+UniRef50_UPI00046C792F: hypothetical protein|unclassified	1.6218914520
+UniRef50_V5SHR9: Photosystem reaction center subunit H	1.6218349123
+UniRef50_V5SHR9: Photosystem reaction center subunit H|unclassified	1.6218349123
+UniRef50_F0YC37	1.6215469219
+UniRef50_F0YC37|unclassified	1.6215469219
+UniRef50_V5VGM0: Flavoprotein	1.6213212447
+UniRef50_V5VGM0: Flavoprotein|g__Acinetobacter.s__Acinetobacter_baumannii	1.6213212447
+UniRef50_UPI00034CCF3B: hypothetical protein	1.6211565611
+UniRef50_UPI00034CCF3B: hypothetical protein|unclassified	1.6211565611
+UniRef50_Q1G0V6	1.6208774332
+UniRef50_Q1G0V6|unclassified	1.6208774332
+UniRef50_W8ERS2: Histidine kinase	1.6208528321
+UniRef50_W8ERS2: Histidine kinase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6208528321
+UniRef50_Q9RZE8: Chromosome partitioning ATPase, putative, ParA family	1.6208171122
+UniRef50_Q9RZE8: Chromosome partitioning ATPase, putative, ParA family|g__Deinococcus.s__Deinococcus_radiodurans	1.4471780029
+UniRef50_Q9RZE8: Chromosome partitioning ATPase, putative, ParA family|unclassified	0.1736391093
+UniRef50_UPI00047BB63F: ABC transporter ATP-binding protein	1.6207691729
+UniRef50_UPI00047BB63F: ABC transporter ATP-binding protein|unclassified	1.6207691729
+UniRef50_A9LZI0: ABC transporter ATP-binding protein	1.6207455429
+UniRef50_A9LZI0: ABC transporter ATP-binding protein|g__Neisseria.s__Neisseria_meningitidis	1.6207455429
+UniRef50_M4UMY3: Transcriptional regulator, Crp/Fnr family	1.6207455429
+UniRef50_M4UMY3: Transcriptional regulator, Crp/Fnr family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6207455429
+UniRef50_W0YUD0: Secretion protein HlyD	1.6207455429
+UniRef50_W0YUD0: Secretion protein HlyD|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6207455429
+UniRef50_UPI0003C15BA3	1.6206499389
+UniRef50_UPI0003C15BA3|unclassified	1.6206499389
+UniRef50_UPI000463CA0D: hypothetical protein	1.6205336400
+UniRef50_UPI000463CA0D: hypothetical protein|unclassified	1.6205336400
+UniRef50_UPI00047184AF: hypothetical protein	1.6202922030
+UniRef50_UPI00047184AF: hypothetical protein|unclassified	1.6202922030
+UniRef50_W7VJ75: Fatty acid binding protein (Fragment)	1.6201992364
+UniRef50_W7VJ75: Fatty acid binding protein (Fragment)|unclassified	1.6201992364
+UniRef50_UPI00045603C5: hypothetical protein PFL1_04924	1.6201887254
+UniRef50_UPI00045603C5: hypothetical protein PFL1_04924|unclassified	1.6201887254
+UniRef50_UPI00044349DC: PREDICTED: formin-like protein 20-like	1.6201749519
+UniRef50_UPI00044349DC: PREDICTED: formin-like protein 20-like|unclassified	1.6201749519
+UniRef50_UPI0003B43FE1: 50S ribosomal protein L32	1.6201111004
+UniRef50_UPI0003B43FE1: 50S ribosomal protein L32|unclassified	1.6201111004
+UniRef50_E3YU53: ABC transporter, permease protein (Fragment)	1.6199420736
+UniRef50_E3YU53: ABC transporter, permease protein (Fragment)|unclassified	1.6199420736
+UniRef50_X6APU4	1.6198956365
+UniRef50_X6APU4|unclassified	1.6198956365
+UniRef50_B9T9W6	1.6196469974
+UniRef50_B9T9W6|unclassified	1.6196469974
+UniRef50_R2ZFJ6: Regulatory protein BlaR1	1.6196229284
+UniRef50_R2ZFJ6: Regulatory protein BlaR1|unclassified	1.6196229284
+UniRef50_Q21CV9	1.6195933175
+UniRef50_Q21CV9|unclassified	1.6195933175
+UniRef50_F4DXK6	1.6194342601
+UniRef50_F4DXK6|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6194342601
+UniRef50_F6BZ68	1.6191985112
+UniRef50_F6BZ68|unclassified	1.6191985112
+UniRef50_UPI0003EE3706: hypothetical protein	1.6190280306
+UniRef50_UPI0003EE3706: hypothetical protein|unclassified	1.6190280306
+UniRef50_S6DCW1	1.6188426513
+UniRef50_S6DCW1|unclassified	1.6188426513
+UniRef50_UPI0003D31B1E: phosphoribosylformylglycinamidine (fgam) synthase	1.6186367892
+UniRef50_UPI0003D31B1E: phosphoribosylformylglycinamidine (fgam) synthase|unclassified	1.6186367892
+UniRef50_UPI00038209BB: transcriptional regulator	1.6186042044
+UniRef50_UPI00038209BB: transcriptional regulator|unclassified	1.6186042044
+UniRef50_UPI00037E9910: hypothetical protein, partial	1.6181995791
+UniRef50_UPI00037E9910: hypothetical protein, partial|unclassified	1.6181995791
+UniRef50_B7IBN3: Thiol:disulfide interchange protein	1.6181229773
+UniRef50_B7IBN3: Thiol:disulfide interchange protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.6181229773
+UniRef50_C5E0T6: ZYRO0G15466p	1.6181229773
+UniRef50_C5E0T6: ZYRO0G15466p|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6181229773
+UniRef50_D3GMR2	1.6181229773
+UniRef50_D3GMR2|unclassified	1.6181229773
+UniRef50_D7GH22: Sugar (Xylose) phosphate isomerase/epimerase	1.6181229773
+UniRef50_D7GH22: Sugar (Xylose) phosphate isomerase/epimerase|g__Propionibacterium.s__Propionibacterium_acnes	1.6181229773
+UniRef50_K4PRF9	1.6181229773
+UniRef50_K4PRF9|g__Streptococcus.s__Streptococcus_agalactiae	1.6181229773
+UniRef50_O05103: HTH-type transcriptional regulator MalR	1.6181229773
+UniRef50_O05103: HTH-type transcriptional regulator MalR|g__Clostridium.s__Clostridium_beijerinckii	1.6181229773
+UniRef50_S5D154: RNA 3'-terminal phosphate cyclase	1.6181229773
+UniRef50_S5D154: RNA 3'-terminal phosphate cyclase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6181229773
+UniRef50_W8ZGJ2	1.6181229773
+UniRef50_W8ZGJ2|unclassified	1.6181229773
+UniRef50_J2DZU1	1.6179968265
+UniRef50_J2DZU1|unclassified	1.6179968265
+UniRef50_UPI000373BE23: glyceraldehyde-3-phosphate dehydrogenase, partial	1.6179190860
+UniRef50_UPI000373BE23: glyceraldehyde-3-phosphate dehydrogenase, partial|unclassified	1.6179190860
+UniRef50_UPI0003619783: hypothetical protein	1.6178076028
+UniRef50_UPI0003619783: hypothetical protein|unclassified	1.6178076028
+UniRef50_E7Y4A2: Crotonobetainyl-CoA dehydrogenase	1.6175858021
+UniRef50_E7Y4A2: Crotonobetainyl-CoA dehydrogenase|unclassified	1.6175858021
+UniRef50_I4BZ47: TRAP transporter, DctM subunit	1.6171971544
+UniRef50_I4BZ47: TRAP transporter, DctM subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6171971544
+UniRef50_F0QDW1: Adenylate/guanylate cyclase	1.6171303941
+UniRef50_F0QDW1: Adenylate/guanylate cyclase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6171303941
+UniRef50_UPI00034978EE: MULTISPECIES: hypothetical protein	1.6170786132
+UniRef50_UPI00034978EE: MULTISPECIES: hypothetical protein|unclassified	1.6170786132
+UniRef50_P56074: Delta-aminolevulinic acid dehydratase	1.6167189976
+UniRef50_P56074: Delta-aminolevulinic acid dehydratase|g__Helicobacter.s__Helicobacter_pylori	1.5174506829
+UniRef50_P56074: Delta-aminolevulinic acid dehydratase|unclassified	0.0992683148
+UniRef50_G5NIA7	1.6166045651
+UniRef50_G5NIA7|unclassified	1.6166045651
+UniRef50_E8P8N2: Major facilitator superfamily permease	1.6165516166
+UniRef50_E8P8N2: Major facilitator superfamily permease|g__Acinetobacter.s__Acinetobacter_baumannii	1.6165516166
+UniRef50_A5WHX2: Superfamily I DNA and RNA helicase-like protein	1.6165217637
+UniRef50_A5WHX2: Superfamily I DNA and RNA helicase-like protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.6165217637
+UniRef50_F0XVM8: Expressed protein (Fragment)	1.6162673126
+UniRef50_F0XVM8: Expressed protein (Fragment)|unclassified	1.6162673126
+UniRef50_X1BTL4: Marine sediment metagenome DNA, contig: S01H4_S04836 (Fragment)	1.6160672654
+UniRef50_X1BTL4: Marine sediment metagenome DNA, contig: S01H4_S04836 (Fragment)|unclassified	1.6160672654
+UniRef50_K1YAD2: DctM, TRAP-type C4-dicarboxylate transport system protein (Fragment)	1.6160279907
+UniRef50_K1YAD2: DctM, TRAP-type C4-dicarboxylate transport system protein (Fragment)|unclassified	1.6160279907
+UniRef50_UPI00026CDD90: putative esterase	1.6158900590
+UniRef50_UPI00026CDD90: putative esterase|unclassified	1.6158900590
+UniRef50_B7V438	1.6155088853
+UniRef50_B7V438|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6155088853
+UniRef50_C3KLK5: Peroxiredoxin 6	1.6155088853
+UniRef50_C3KLK5: Peroxiredoxin 6|g__Acinetobacter.s__Acinetobacter_baumannii	1.6155088853
+UniRef50_I2FE21: Riboflavin synthase subunit alpha	1.6155088853
+UniRef50_I2FE21: Riboflavin synthase subunit alpha|g__Helicobacter.s__Helicobacter_pylori	1.6155088853
+UniRef50_L1NJN4	1.6155088853
+UniRef50_L1NJN4|unclassified	1.6155088853
+UniRef50_M9REM3	1.6155088853
+UniRef50_M9REM3|g__Acinetobacter.s__Acinetobacter_baumannii	1.6155088853
+UniRef50_N6DJM0	1.6155088853
+UniRef50_N6DJM0|g__Staphylococcus.s__Staphylococcus_aureus	1.6155088853
+UniRef50_Q5XDL5: CutC-like protein M6_Spy0363	1.6155088853
+UniRef50_Q5XDL5: CutC-like protein M6_Spy0363|g__Streptococcus.s__Streptococcus_agalactiae	1.6155088853
+UniRef50_Q9RUS8: Spermidine/putrescine ABC transporter, permease protein	1.6155088853
+UniRef50_Q9RUS8: Spermidine/putrescine ABC transporter, permease protein|g__Deinococcus.s__Deinococcus_radiodurans	1.6155088853
+UniRef50_Q2Y639: UDP-N-acetylmuramate--L-alanine ligase	1.6153900733
+UniRef50_Q2Y639: UDP-N-acetylmuramate--L-alanine ligase|g__Acinetobacter.s__Acinetobacter_baumannii	1.5864234895
+UniRef50_Q2Y639: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.0289665838
+UniRef50_H3YKG2	1.6153548902
+UniRef50_H3YKG2|unclassified	1.6153548902
+UniRef50_R8A8K0	1.6151726206
+UniRef50_R8A8K0|unclassified	1.6151726206
+UniRef50_UPI000463941A: hypothetical protein	1.6150437949
+UniRef50_UPI000463941A: hypothetical protein|unclassified	1.6150437949
+UniRef50_A3DIP6: UDP-N-acetylmuramate--L-alanine ligase	1.6149453781
+UniRef50_A3DIP6: UDP-N-acetylmuramate--L-alanine ligase|g__Clostridium.s__Clostridium_beijerinckii	1.5896463838
+UniRef50_A3DIP6: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.0252989944
+UniRef50_UPI00036B9069: hypothetical protein	1.6147273674
+UniRef50_UPI00036B9069: hypothetical protein|unclassified	1.6147273674
+UniRef50_UPI0003605ABA: hypothetical protein	1.6145106637
+UniRef50_UPI0003605ABA: hypothetical protein|unclassified	1.6145106637
+UniRef50_Q9X6X7: Regulator RcsB (Fragment)	1.6144947012
+UniRef50_Q9X6X7: Regulator RcsB (Fragment)|unclassified	1.6144947012
+UniRef50_Q6A6S6: ABC transporter-associated permease	1.6144111276
+UniRef50_Q6A6S6: ABC transporter-associated permease|g__Propionibacterium.s__Propionibacterium_acnes	1.6144111276
+UniRef50_Q47RU5: Polyribonucleotide nucleotidyltransferase	1.6139053180
+UniRef50_Q47RU5: Polyribonucleotide nucleotidyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	1.5934961826
+UniRef50_Q47RU5: Polyribonucleotide nucleotidyltransferase|unclassified	0.0204091354
+UniRef50_UPI00046FDF3F: carboxynorspermidine decarboxylase, partial	1.6138007544
+UniRef50_UPI00046FDF3F: carboxynorspermidine decarboxylase, partial|unclassified	1.6138007544
+UniRef50_H4AKE7	1.6136283941
+UniRef50_H4AKE7|unclassified	1.6136283941
+UniRef50_UPI00037FB8F9: hypothetical protein	1.6135997050
+UniRef50_UPI00037FB8F9: hypothetical protein|unclassified	1.6135997050
+UniRef50_H9KRI1	1.6131964049
+UniRef50_H9KRI1|unclassified	1.6131964049
+UniRef50_UPI000287C5C0: TetR family transcriptional regulator	1.6131192556
+UniRef50_UPI000287C5C0: TetR family transcriptional regulator|unclassified	1.6131192556
+UniRef50_A5VBC0: Aldehyde dehydrogenase	1.6130805220
+UniRef50_A5VBC0: Aldehyde dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6130805220
+UniRef50_A5FY40: Nucleoside diphosphate kinase	1.6130526286
+UniRef50_A5FY40: Nucleoside diphosphate kinase|unclassified	1.6130526286
+UniRef50_B5GG78: Serine/arginine repetitive matrix protein 1	1.6129032258
+UniRef50_B5GG78: Serine/arginine repetitive matrix protein 1|unclassified	1.6129032258
+UniRef50_R7G9U3: Phosphosugar isomerase transcriptional regulator	1.6129032258
+UniRef50_R7G9U3: Phosphosugar isomerase transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	1.6129032258
+UniRef50_U1PV92	1.6129032258
+UniRef50_U1PV92|unclassified	1.6129032258
+UniRef50_U5MPP2: 5'-nucleotidase	1.6129032258
+UniRef50_U5MPP2: 5'-nucleotidase|g__Clostridium.s__Clostridium_beijerinckii	1.6129032258
+UniRef50_V6EUN6: 3-oxoacyl-[acyl-carrier-protein] synthase, KASI	1.6129032258
+UniRef50_V6EUN6: 3-oxoacyl-[acyl-carrier-protein] synthase, KASI|g__Escherichia.s__Escherichia_coli	1.6129032258
+UniRef50_M0SYM1	1.6127055916
+UniRef50_M0SYM1|unclassified	1.6127055916
+UniRef50_UPI0004560782: hypothetical protein PFL1_02967	1.6126525142
+UniRef50_UPI0004560782: hypothetical protein PFL1_02967|unclassified	1.6126525142
+UniRef50_W7WXB1	1.6124714538
+UniRef50_W7WXB1|unclassified	1.6124714538
+UniRef50_T9QA68: Adhesin/invasin	1.6123758001
+UniRef50_T9QA68: Adhesin/invasin|g__Escherichia.s__Escherichia_coli	1.6123758001
+UniRef50_Q9K1M2: Putative outer membrane protein NMB0088	1.6122848175
+UniRef50_Q9K1M2: Putative outer membrane protein NMB0088|g__Neisseria.s__Neisseria_meningitidis	1.6122848175
+UniRef50_D4DRQ8	1.6122297364
+UniRef50_D4DRQ8|unclassified	1.6122297364
+UniRef50_A0A034KLY2	1.6121946845
+UniRef50_A0A034KLY2|unclassified	1.6121946845
+UniRef50_UPI0003794EB4: hypothetical protein	1.6120893958
+UniRef50_UPI0003794EB4: hypothetical protein|unclassified	1.6120893958
+UniRef50_UPI000474F6A9: hypothetical protein, partial	1.6119306347
+UniRef50_UPI000474F6A9: hypothetical protein, partial|unclassified	1.6119306347
+UniRef50_UPI0003B33000: ABC transporter ATP-binding protein, partial	1.6116043595
+UniRef50_UPI0003B33000: ABC transporter ATP-binding protein, partial|unclassified	1.6116043595
+UniRef50_D3FAE3: Plectin	1.6115616457
+UniRef50_D3FAE3: Plectin|unclassified	1.6115616457
+UniRef50_E1UYR3: Gyrase B subunit (Fragment)	1.6115384615
+UniRef50_E1UYR3: Gyrase B subunit (Fragment)|unclassified	1.6115384615
+UniRef50_F2E8D4: Predicted protein (Fragment)	1.6112762779
+UniRef50_F2E8D4: Predicted protein (Fragment)|unclassified	1.6112762779
+UniRef50_J9FKP1: Carboxynorspermidine decarboxylase (Fragment)	1.6109225608
+UniRef50_J9FKP1: Carboxynorspermidine decarboxylase (Fragment)|unclassified	1.6109225608
+UniRef50_UPI00046C2950: cytochrome b (mitochondrion)	1.6108438226
+UniRef50_UPI00046C2950: cytochrome b (mitochondrion)|unclassified	1.6108438226
+UniRef50_B9E1A4	1.6103059581
+UniRef50_B9E1A4|g__Clostridium.s__Clostridium_beijerinckii	1.6103059581
+UniRef50_F0KG78: HTH-type transcriptional regulator BetI	1.6103059581
+UniRef50_F0KG78: HTH-type transcriptional regulator BetI|g__Acinetobacter.s__Acinetobacter_baumannii	1.6103059581
+UniRef50_O25042	1.6103059581
+UniRef50_O25042|g__Helicobacter.s__Helicobacter_pylori	1.6103059581
+UniRef50_P0DMD0: Transcriptional regulatory protein RcsA	1.6103059581
+UniRef50_P0DMD0: Transcriptional regulatory protein RcsA|g__Escherichia.s__Escherichia_coli	1.6103059581
+UniRef50_R6XE72	1.6103059581
+UniRef50_R6XE72|g__Clostridium.s__Clostridium_beijerinckii	1.6103059581
+UniRef50_S9QVQ6: Mobile element protein	1.6103059581
+UniRef50_S9QVQ6: Mobile element protein|unclassified	1.6103059581
+UniRef50_W4KX88	1.6103059581
+UniRef50_W4KX88|g__Streptococcus.s__Streptococcus_agalactiae	1.6103059581
+UniRef50_B3Q2X2: Precursor of a membrane (Nitrogen fixation) protein coupled to cation pump	1.6102123597
+UniRef50_B3Q2X2: Precursor of a membrane (Nitrogen fixation) protein coupled to cation pump|unclassified	1.6102123597
+UniRef50_UPI0001BF5AE1: hypothetical protein SMAC_10035	1.6101466124
+UniRef50_UPI0001BF5AE1: hypothetical protein SMAC_10035|unclassified	1.6101466124
+UniRef50_F3ZLD3	1.6096763600
+UniRef50_F3ZLD3|unclassified	1.6096763600
+UniRef50_Q5P001	1.6091512420
+UniRef50_Q5P001|unclassified	1.6091512420
+UniRef50_UPI0002DED034: hypothetical protein	1.6091100574
+UniRef50_UPI0002DED034: hypothetical protein|unclassified	1.6091100574
+UniRef50_C5AVJ7	1.6091007868
+UniRef50_C5AVJ7|unclassified	1.6091007868
+UniRef50_UPI00037020AB: hypothetical protein	1.6086622410
+UniRef50_UPI00037020AB: hypothetical protein|unclassified	1.6086622410
+UniRef50_J3BFJ9	1.6084830422
+UniRef50_J3BFJ9|unclassified	1.6084830422
+UniRef50_R4Q3N6: Membrane protein	1.6082166066
+UniRef50_R4Q3N6: Membrane protein|g__Helicobacter.s__Helicobacter_pylori	1.6082166066
+UniRef50_UPI0003B508F0: GntR family transcriptional regulator	1.6081291161
+UniRef50_UPI0003B508F0: GntR family transcriptional regulator|unclassified	1.6081291161
+UniRef50_A3SMY0	1.6078169925
+UniRef50_A3SMY0|unclassified	1.6078169925
+UniRef50_A6V044: Lipoprotein, putative	1.6077170418
+UniRef50_A6V044: Lipoprotein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6077170418
+UniRef50_B3PJX0: Sigma54-dependent transcriptional regulator	1.6077170418
+UniRef50_B3PJX0: Sigma54-dependent transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6077170418
+UniRef50_N8EH61	1.6076629418
+UniRef50_N8EH61|unclassified	1.6076629418
+UniRef50_G8VEZ7: Long-chain-fatty-acid--CoA ligase/synthetase	1.6076014960
+UniRef50_G8VEZ7: Long-chain-fatty-acid--CoA ligase/synthetase|g__Propionibacterium.s__Propionibacterium_acnes	1.6076014960
+UniRef50_B9L9V6: Inner membrane protein YjcH	1.6075642309
+UniRef50_B9L9V6: Inner membrane protein YjcH|unclassified	1.6075642309
+UniRef50_UPI0002375063: methionine synthase, partial	1.6072827559
+UniRef50_UPI0002375063: methionine synthase, partial|unclassified	1.6072827559
+UniRef50_D9URC1	1.6071612965
+UniRef50_D9URC1|unclassified	1.6071612965
+UniRef50_UPI000287BC3E: dehydrogenase	1.6068370622
+UniRef50_UPI000287BC3E: dehydrogenase|unclassified	1.6068370622
+UniRef50_UPI0003B3F883: hypothetical protein, partial	1.6064280579
+UniRef50_UPI0003B3F883: hypothetical protein, partial|unclassified	1.6064280579
+UniRef50_F2N2X0	1.6063361795
+UniRef50_F2N2X0|unclassified	1.6063361795
+UniRef50_P54533: Dihydrolipoyl dehydrogenase	1.6063338424
+UniRef50_P54533: Dihydrolipoyl dehydrogenase|unclassified	1.6063338424
+UniRef50_T0CJ48	1.6057334712
+UniRef50_T0CJ48|unclassified	1.6057334712
+UniRef50_C3DST0	1.6056690894
+UniRef50_C3DST0|unclassified	1.6056690894
+UniRef50_U7A4L8	1.6054787093
+UniRef50_U7A4L8|unclassified	1.6054787093
+UniRef50_Y1QPC3	1.6053757465
+UniRef50_Y1QPC3|unclassified	1.6053757465
+UniRef50_UPI000379A03B: (3S)-malyl-CoA thiolesterase	1.6052878605
+UniRef50_UPI000379A03B: (3S)-malyl-CoA thiolesterase|unclassified	1.6052878605
+UniRef50_Q9RZD1	1.6052300248
+UniRef50_Q9RZD1|g__Deinococcus.s__Deinococcus_radiodurans	1.6052300248
+UniRef50_A8LL44	1.6051534227
+UniRef50_A8LL44|unclassified	1.6051534227
+UniRef50_A0A023RVE4: Pseudouridine synthase	1.6051364366
+UniRef50_A0A023RVE4: Pseudouridine synthase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6051364366
+UniRef50_A2RFC7: ATP synthase subunit a	1.6051364366
+UniRef50_A2RFC7: ATP synthase subunit a|g__Streptococcus.s__Streptococcus_agalactiae	1.6051364366
+UniRef50_C5XC48	1.6051364366
+UniRef50_C5XC48|unclassified	1.6051364366
+UniRef50_D6B3U1: Short chain dehydrogenase	1.6051364366
+UniRef50_D6B3U1: Short chain dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6051364366
+UniRef50_D9SU99: Glycosyl transferase group 1	1.6051364366
+UniRef50_D9SU99: Glycosyl transferase group 1|g__Clostridium.s__Clostridium_beijerinckii	1.6051364366
+UniRef50_E6E9X3	1.6051364366
+UniRef50_E6E9X3|g__Propionibacterium.s__Propionibacterium_acnes	1.6051364366
+UniRef50_F5ZKR4: Oxidoreductase	1.6051364366
+UniRef50_F5ZKR4: Oxidoreductase|g__Streptococcus.s__Streptococcus_agalactiae	1.6051364366
+UniRef50_L4FI59: Sensor protein torS	1.6050752831
+UniRef50_L4FI59: Sensor protein torS|g__Escherichia.s__Escherichia_coli	1.6050752831
+UniRef50_A6M0E2: Peptidase S8 and S53, subtilisin, kexin, sedolisin	1.6050513450
+UniRef50_A6M0E2: Peptidase S8 and S53, subtilisin, kexin, sedolisin|g__Clostridium.s__Clostridium_beijerinckii	1.6050513450
+UniRef50_F3SZY1: Conserved domain protein	1.6048764041
+UniRef50_F3SZY1: Conserved domain protein|unclassified	1.6048764041
+UniRef50_F0Y3L5	1.6046971890
+UniRef50_F0Y3L5|unclassified	1.6046971890
+UniRef50_UPI000475DCB4: ATPase, partial	1.6043017730
+UniRef50_UPI000475DCB4: ATPase, partial|g__Deinococcus.s__Deinococcus_radiodurans	1.5391906805
+UniRef50_UPI000475DCB4: ATPase, partial|unclassified	0.0651110925
+UniRef50_X2MTV9: ABC transporter ATP-binding protein	1.6042278115
+UniRef50_X2MTV9: ABC transporter ATP-binding protein|g__Escherichia.s__Escherichia_coli	1.6042278115
+UniRef50_UPI00047B5F70: iron ABC transporter ATP-binding protein	1.6041602952
+UniRef50_UPI00047B5F70: iron ABC transporter ATP-binding protein|unclassified	1.6041602952
+UniRef50_A8TYU1	1.6040705584
+UniRef50_A8TYU1|unclassified	1.6040705584
+UniRef50_UPI0003792352: hypothetical protein	1.6039889492
+UniRef50_UPI0003792352: hypothetical protein|unclassified	1.6039889492
+UniRef50_K0S670	1.6037977916
+UniRef50_K0S670|unclassified	1.6037977916
+UniRef50_D0IRT5: Arginine permease	1.6036525305
+UniRef50_D0IRT5: Arginine permease|g__Helicobacter.s__Helicobacter_pylori	1.6036525305
+UniRef50_UPI000361CF9B: hypothetical protein	1.6035150106
+UniRef50_UPI000361CF9B: hypothetical protein|unclassified	1.6035150106
+UniRef50_H8FTS1	1.6034214286
+UniRef50_H8FTS1|unclassified	1.6034214286
+UniRef50_UPI00035D1A94: hypothetical protein	1.6032309028
+UniRef50_UPI00035D1A94: hypothetical protein|unclassified	1.6032309028
+UniRef50_UPI0004768A1D: membrane protein	1.6030465461
+UniRef50_UPI0004768A1D: membrane protein|unclassified	1.6030465461
+UniRef50_C2MTH9	1.6029586233
+UniRef50_C2MTH9|unclassified	1.6029586233
+UniRef50_A1BA17: GTP cyclohydrolase FolE2	1.6029255222
+UniRef50_A1BA17: GTP cyclohydrolase FolE2|unclassified	1.6029255222
+UniRef50_W8ZCI6	1.6027687066
+UniRef50_W8ZCI6|unclassified	1.6027687066
+UniRef50_H3YQ41: PF10100 domain protein (Fragment)	1.6026078941
+UniRef50_H3YQ41: PF10100 domain protein (Fragment)|unclassified	1.6026078941
+UniRef50_G2BKV7	1.6025877132
+UniRef50_G2BKV7|unclassified	1.6025877132
+UniRef50_A6M300	1.6025641026
+UniRef50_A6M300|g__Clostridium.s__Clostridium_beijerinckii	1.6025641026
+UniRef50_B2HZE1: Enoyl-CoA hydratase/carnithine racemase	1.6025641026
+UniRef50_B2HZE1: Enoyl-CoA hydratase/carnithine racemase|g__Acinetobacter.s__Acinetobacter_baumannii	1.6025641026
+UniRef50_B9FMP5	1.6025641026
+UniRef50_B9FMP5|unclassified	1.6025641026
+UniRef50_Q28PJ5: Acyl-[acyl-carrier-protein]--UDP-N-acetylglucosamine O-acyltransferase	1.6025641026
+UniRef50_Q28PJ5: Acyl-[acyl-carrier-protein]--UDP-N-acetylglucosamine O-acyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6025641026
+UniRef50_UPI0002BAE2AB: hypothetical protein	1.6025641026
+UniRef50_UPI0002BAE2AB: hypothetical protein|g__Escherichia.s__Escherichia_coli	1.6025641026
+UniRef50_X5DQJ7: ABC-type glycine betaine/L-proline transporter, substrate-binding lipoprotein	1.6025641026
+UniRef50_X5DQJ7: ABC-type glycine betaine/L-proline transporter, substrate-binding lipoprotein|g__Propionibacterium.s__Propionibacterium_acnes	1.6025641026
+UniRef50_D4DMS4	1.6025562545
+UniRef50_D4DMS4|unclassified	1.6025562545
+UniRef50_Q1M6P6	1.6023386881
+UniRef50_Q1M6P6|unclassified	1.6023386881
+UniRef50_F0RML5: Peptidoglycan glycosyltransferase	1.6018171854
+UniRef50_F0RML5: Peptidoglycan glycosyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	1.6018171854
+UniRef50_S9FAF7	1.6016858383
+UniRef50_S9FAF7|g__Streptococcus.s__Streptococcus_agalactiae	1.6016858383
+UniRef50_V9VVH8: Flagellar protein FlgJ	1.6015281001
+UniRef50_V9VVH8: Flagellar protein FlgJ|unclassified	1.6015281001
+UniRef50_F0Y8N4: Expressed protein (Fragment)	1.6013680206
+UniRef50_F0Y8N4: Expressed protein (Fragment)|unclassified	1.6013680206
+UniRef50_UPI00016B2503: excinuclease ABC, B subunit, partial	1.6012351262
+UniRef50_UPI00016B2503: excinuclease ABC, B subunit, partial|unclassified	1.6012351262
+UniRef50_C6EHP0	1.6008698187
+UniRef50_C6EHP0|unclassified	1.6008698187
+UniRef50_Q9RSF5: Drug transport protein	1.6008004643
+UniRef50_Q9RSF5: Drug transport protein|g__Deinococcus.s__Deinococcus_radiodurans	1.6008004643
+UniRef50_F6B6L3: Biotin and thiamin synthesis associated	1.6007776480
+UniRef50_F6B6L3: Biotin and thiamin synthesis associated|g__Clostridium.s__Clostridium_beijerinckii	1.6007776480
+UniRef50_UPI00047CBCB4: C4-dicarboxylate ABC transporter substrate-binding protein	1.6003834309
+UniRef50_UPI00047CBCB4: C4-dicarboxylate ABC transporter substrate-binding protein|unclassified	1.6003834309
+UniRef50_UPI00032914BE: PREDICTED: basic proline-rich protein-like	1.6002490181
+UniRef50_UPI00032914BE: PREDICTED: basic proline-rich protein-like|unclassified	1.6002490181
+UniRef50_Q3B4Y6: Imidazoleglycerol-phosphate dehydratase	1.6002323644
+UniRef50_Q3B4Y6: Imidazoleglycerol-phosphate dehydratase|unclassified	1.6002323644
+UniRef50_UPI000476FAE3: hypothetical protein	1.6001877104
+UniRef50_UPI000476FAE3: hypothetical protein|unclassified	1.6001877104
+UniRef50_B9KLW3: Methyltransferase type 11	1.6000000000
+UniRef50_B9KLW3: Methyltransferase type 11|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.6000000000
+UniRef50_D3V3H0: ATP-dependent Clp protease proteolytic subunit	1.6000000000
+UniRef50_D3V3H0: ATP-dependent Clp protease proteolytic subunit|g__Escherichia.s__Escherichia_coli	1.6000000000
+UniRef50_L1GDP4: Export membrane protein SecD	1.6000000000
+UniRef50_L1GDP4: Export membrane protein SecD|g__Escherichia.s__Escherichia_coli	1.6000000000
+UniRef50_Q3J4R0	1.6000000000
+UniRef50_Q3J4R0|unclassified	1.6000000000
+UniRef50_Q9RX92: Single-stranded DNA-binding protein DdrA	1.6000000000
+UniRef50_Q9RX92: Single-stranded DNA-binding protein DdrA|g__Deinococcus.s__Deinococcus_radiodurans	1.6000000000
+UniRef50_W0Z0A9: Protein YicC	1.6000000000
+UniRef50_W0Z0A9: Protein YicC|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.6000000000
+UniRef50_Q9RZ60	1.5998990745
+UniRef50_Q9RZ60|g__Deinococcus.s__Deinococcus_radiodurans	1.5998990745
+UniRef50_A8LQC8: Nitrogen fixation protein fixS	1.5998815374
+UniRef50_A8LQC8: Nitrogen fixation protein fixS|unclassified	1.5998815374
+UniRef50_H2A536: Aquaporin Z	1.5997505199
+UniRef50_H2A536: Aquaporin Z|unclassified	1.5997505199
+UniRef50_UPI00040A1583: tRNA-binding protein	1.5997125832
+UniRef50_UPI00040A1583: tRNA-binding protein|unclassified	1.5997125832
+UniRef50_A0A023X8X0	1.5996135098
+UniRef50_A0A023X8X0|unclassified	1.5996135098
+UniRef50_W8T9K1	1.5996103198
+UniRef50_W8T9K1|unclassified	1.5996103198
+UniRef50_UPI00037BC05D: hypothetical protein	1.5992700029
+UniRef50_UPI00037BC05D: hypothetical protein|unclassified	1.5992700029
+UniRef50_G1XX87	1.5985139536
+UniRef50_G1XX87|unclassified	1.5985139536
+UniRef50_T2L9X3	1.5979330006
+UniRef50_T2L9X3|unclassified	1.5979330006
+UniRef50_UPI0002625F09: monosaccharide-transporting ATPase	1.5978167970
+UniRef50_UPI0002625F09: monosaccharide-transporting ATPase|unclassified	1.5978167970
+UniRef50_UPI000378BA4C: hypothetical protein	1.5977883402
+UniRef50_UPI000378BA4C: hypothetical protein|unclassified	1.5977883402
+UniRef50_A6LRT5	1.5974440895
+UniRef50_A6LRT5|g__Clostridium.s__Clostridium_beijerinckii	1.5974440895
+UniRef50_D4HDK7	1.5974440895
+UniRef50_D4HDK7|g__Propionibacterium.s__Propionibacterium_acnes	1.5974440895
+UniRef50_F0KA12: Phosphoserine phosphatase family enzyme	1.5974440895
+UniRef50_F0KA12: Phosphoserine phosphatase family enzyme|g__Clostridium.s__Clostridium_beijerinckii	1.5974440895
+UniRef50_W8TBX4: Hydrogenase	1.5974440895
+UniRef50_W8TBX4: Hydrogenase|g__Escherichia.s__Escherichia_coli	1.5974440895
+UniRef50_W9BPP7: SdiA protein	1.5974440895
+UniRef50_W9BPP7: SdiA protein|g__Escherichia.s__Escherichia_coli	1.5974440895
+UniRef50_UPI00037DEF2C: hypothetical protein	1.5973113957
+UniRef50_UPI00037DEF2C: hypothetical protein|unclassified	1.5973113957
+UniRef50_UPI00039591E2: PREDICTED: serine/arginine repetitive matrix protein 1-like	1.5970202862
+UniRef50_UPI00039591E2: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	1.5970202862
+UniRef50_C4LL84: Sialic acid transporter	1.5968852844
+UniRef50_C4LL84: Sialic acid transporter|g__Propionibacterium.s__Propionibacterium_acnes	1.5968852844
+UniRef50_X5W5P1: Cupin	1.5962608343
+UniRef50_X5W5P1: Cupin|unclassified	1.5962608343
+UniRef50_P94367: ATP-binding/permease protein CydD	1.5960925314
+UniRef50_P94367: ATP-binding/permease protein CydD|g__Streptococcus.s__Streptococcus_agalactiae	1.5960925314
+UniRef50_U9FN76	1.5956332345
+UniRef50_U9FN76|unclassified	1.5956332345
+UniRef50_F8JDV2	1.5956136071
+UniRef50_F8JDV2|unclassified	1.5956136071
+UniRef50_UPI0003B6F142: hypothetical protein	1.5954637396
+UniRef50_UPI0003B6F142: hypothetical protein|unclassified	1.5954637396
+UniRef50_A6UZN0: Fe(III)-pyochelin receptor	1.5953807893
+UniRef50_A6UZN0: Fe(III)-pyochelin receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5953807893
+UniRef50_Q8VSK5: Invasion plasmid gene product	1.5953715799
+UniRef50_Q8VSK5: Invasion plasmid gene product|g__Streptococcus.s__Streptococcus_agalactiae	1.5953715799
+UniRef50_A0A011M2M8	1.5951703696
+UniRef50_A0A011M2M8|unclassified	1.5951703696
+UniRef50_R5T303	1.5950838482
+UniRef50_R5T303|unclassified	1.5950838482
+UniRef50_A3M9B5	1.5948963317
+UniRef50_A3M9B5|g__Acinetobacter.s__Acinetobacter_baumannii	1.5948963317
+UniRef50_A9BLG4: (2Fe-2S)-binding domain protein	1.5948963317
+UniRef50_A9BLG4: (2Fe-2S)-binding domain protein|g__Deinococcus.s__Deinococcus_radiodurans	1.5948963317
+UniRef50_F6G330: NADPH:quinone reductase, zeta-crystallin-like oxidoreductase protein	1.5948963317
+UniRef50_F6G330: NADPH:quinone reductase, zeta-crystallin-like oxidoreductase protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5948963317
+UniRef50_Q2SW19: Pyridine nucleotide-disulphide oxidoreductase, class II	1.5948963317
+UniRef50_Q2SW19: Pyridine nucleotide-disulphide oxidoreductase, class II|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5948963317
+UniRef50_Q8E6A7	1.5948963317
+UniRef50_Q8E6A7|g__Streptococcus.s__Streptococcus_agalactiae	1.5948963317
+UniRef50_UPI000363D45D: hypothetical protein	1.5948963317
+UniRef50_UPI000363D45D: hypothetical protein|unclassified	1.5948963317
+UniRef50_X2M1Y3	1.5948963317
+UniRef50_X2M1Y3|g__Escherichia.s__Escherichia_coli	1.5948963317
+UniRef50_UPI0003B7B681: nickel ABC transporter permease	1.5947951383
+UniRef50_UPI0003B7B681: nickel ABC transporter permease|unclassified	1.5947951383
+UniRef50_D6K6B4: Membrane protein	1.5947364980
+UniRef50_D6K6B4: Membrane protein|unclassified	1.5947364980
+UniRef50_A0A011NK72	1.5947283432
+UniRef50_A0A011NK72|unclassified	1.5947283432
+UniRef50_K2JHW1	1.5946897167
+UniRef50_K2JHW1|unclassified	1.5946897167
+UniRef50_B1LUR5: PRC-barrel domain protein	1.5946378392
+UniRef50_B1LUR5: PRC-barrel domain protein|unclassified	1.5946378392
+UniRef50_UPI00047229B1: hypothetical protein	1.5943889941
+UniRef50_UPI00047229B1: hypothetical protein|unclassified	1.5943889941
+UniRef50_F7X315	1.5939023464
+UniRef50_F7X315|unclassified	1.5939023464
+UniRef50_X6FMB7: Chromosome partitioning protein ParA	1.5938239674
+UniRef50_X6FMB7: Chromosome partitioning protein ParA|unclassified	1.5938239674
+UniRef50_UPI00030F326B: sulfate transporter	1.5937910449
+UniRef50_UPI00030F326B: sulfate transporter|unclassified	1.5937910449
+UniRef50_R4MC14: Poly(A) polymerase	1.5937578232
+UniRef50_R4MC14: Poly(A) polymerase|g__Propionibacterium.s__Propionibacterium_acnes	1.5937578232
+UniRef50_F2A5P1: IS66 family insertion sequence transposase protein	1.5936377121
+UniRef50_F2A5P1: IS66 family insertion sequence transposase protein|unclassified	1.5936377121
+UniRef50_F5XE67: UTP--glucose-1-phosphate uridylyltransferase	1.5933209198
+UniRef50_F5XE67: UTP--glucose-1-phosphate uridylyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	1.5933209198
+UniRef50_I5BTC0: Bmp family protein	1.5932390834
+UniRef50_I5BTC0: Bmp family protein|unclassified	1.5932390834
+UniRef50_B8GTL2: Chromosome partition protein Smc	1.5926224040
+UniRef50_B8GTL2: Chromosome partition protein Smc|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5926224040
+UniRef50_F0L781: Permeases of the major facilitator superfamily	1.5924403318
+UniRef50_F0L781: Permeases of the major facilitator superfamily|unclassified	1.5924403318
+UniRef50_D4HEB6: Ribosomal subunit interface protein	1.5923566879
+UniRef50_D4HEB6: Ribosomal subunit interface protein|g__Propionibacterium.s__Propionibacterium_acnes	1.5923566879
+UniRef50_F7V2B8: Serine-pyruvate aminotransferase	1.5923566879
+UniRef50_F7V2B8: Serine-pyruvate aminotransferase|g__Clostridium.s__Clostridium_beijerinckii	1.5923566879
+UniRef50_G2AG81: Protein ydeP domain protein	1.5923566879
+UniRef50_G2AG81: Protein ydeP domain protein|g__Escherichia.s__Escherichia_coli	1.5923566879
+UniRef50_P20371: Protocatechuate 3,4-dioxygenase alpha chain	1.5923566879
+UniRef50_P20371: Protocatechuate 3,4-dioxygenase alpha chain|g__Acinetobacter.s__Acinetobacter_baumannii	1.5923566879
+UniRef50_Q17X82	1.5923566879
+UniRef50_Q17X82|g__Helicobacter.s__Helicobacter_pylori	1.5923566879
+UniRef50_R9ZBF0	1.5923566879
+UniRef50_R9ZBF0|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5923566879
+UniRef50_U3T9B5	1.5923566879
+UniRef50_U3T9B5|g__Acinetobacter.s__Acinetobacter_baumannii	1.5923566879
+UniRef50_UPI00037228DC: hypothetical protein	1.5923566879
+UniRef50_UPI00037228DC: hypothetical protein|unclassified	1.5923566879
+UniRef50_UPI000299D232: arginyl-tRNA ligase	1.5921666653
+UniRef50_UPI000299D232: arginyl-tRNA ligase|unclassified	1.5921666653
+UniRef50_L6YFV0: Membrane protein YebN	1.5915786848
+UniRef50_L6YFV0: Membrane protein YebN|unclassified	1.5915786848
+UniRef50_F0Y553: Expressed protein (Fragment)	1.5915700314
+UniRef50_F0Y553: Expressed protein (Fragment)|unclassified	1.5915700314
+UniRef50_UPI000369F682: hypothetical protein	1.5912724320
+UniRef50_UPI000369F682: hypothetical protein|unclassified	1.5912724320
+UniRef50_T0TSW6: 5'-nucleotidase	1.5911218180
+UniRef50_T0TSW6: 5'-nucleotidase|g__Streptococcus.s__Streptococcus_agalactiae	1.5911218180
+UniRef50_B4RE78	1.5907086329
+UniRef50_B4RE78|unclassified	1.5907086329
+UniRef50_F7U951	1.5900114123
+UniRef50_F7U951|unclassified	1.5900114123
+UniRef50_W8S3E2	1.5899887706
+UniRef50_W8S3E2|unclassified	1.5899887706
+UniRef50_A6LZ55: 2,5-didehydrogluconate reductase	1.5898251192
+UniRef50_A6LZ55: 2,5-didehydrogluconate reductase|g__Clostridium.s__Clostridium_beijerinckii	1.5898251192
+UniRef50_A6LZS4: NADPH-dependent FMN reductase	1.5898251192
+UniRef50_A6LZS4: NADPH-dependent FMN reductase|g__Clostridium.s__Clostridium_beijerinckii	1.5898251192
+UniRef50_B0VU19	1.5898251192
+UniRef50_B0VU19|g__Acinetobacter.s__Acinetobacter_baumannii	1.5898251192
+UniRef50_E5U5C0	1.5898251192
+UniRef50_E5U5C0|unclassified	1.5898251192
+UniRef50_L9NPU9: Pirin family protein	1.5898251192
+UniRef50_L9NPU9: Pirin family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.5898251192
+UniRef50_Q4KAE2	1.5898251192
+UniRef50_Q4KAE2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5898251192
+UniRef50_Q9K0Y0: D-alanine--D-alanine ligase	1.5898251192
+UniRef50_Q9K0Y0: D-alanine--D-alanine ligase|g__Neisseria.s__Neisseria_meningitidis	1.5898251192
+UniRef50_W4UBB6: Succinate dehydrogenase flavoprotein subunit	1.5890621091
+UniRef50_W4UBB6: Succinate dehydrogenase flavoprotein subunit|unclassified	1.5890621091
+UniRef50_UPI0002BA379B: hypothetical protein, partial	1.5889146912
+UniRef50_UPI0002BA379B: hypothetical protein, partial|unclassified	1.5889146912
+UniRef50_A3CN89: Orotidine 5'-phosphate decarboxylase	1.5888753076
+UniRef50_A3CN89: Orotidine 5'-phosphate decarboxylase|unclassified	1.5888753076
+UniRef50_E1S075: Adenylosuccinate synthetase	1.5886715113
+UniRef50_E1S075: Adenylosuccinate synthetase|g__Escherichia.s__Escherichia_coli	1.5886715113
+UniRef50_A0A024EA09	1.5886559228
+UniRef50_A0A024EA09|unclassified	1.5886559228
+UniRef50_M7ALH9: Putative permease domain protein	1.5885623511
+UniRef50_M7ALH9: Putative permease domain protein|unclassified	1.5885623511
+UniRef50_UPI00020009E9: hypothetical protein, partial	1.5884087959
+UniRef50_UPI00020009E9: hypothetical protein, partial|unclassified	1.5884087959
+UniRef50_H0PS77	1.5876756440
+UniRef50_H0PS77|unclassified	1.5876756440
+UniRef50_E8QKJ5	1.5873015873
+UniRef50_E8QKJ5|g__Helicobacter.s__Helicobacter_pylori	1.5873015873
+UniRef50_G2J2T3: Ribosomal RNA small subunit methyltransferase E	1.5873015873
+UniRef50_G2J2T3: Ribosomal RNA small subunit methyltransferase E|g__Neisseria.s__Neisseria_meningitidis	1.5873015873
+UniRef50_K7YE63	1.5873015873
+UniRef50_K7YE63|g__Helicobacter.s__Helicobacter_pylori	1.5873015873
+UniRef50_L7Z9S4	1.5873015873
+UniRef50_L7Z9S4|g__Escherichia.s__Escherichia_coli	1.5873015873
+UniRef50_M9VH79: Transcriptional regulator	1.5873015873
+UniRef50_M9VH79: Transcriptional regulator|g__Propionibacterium.s__Propionibacterium_acnes	1.5873015873
+UniRef50_Q9I0U0	1.5873015873
+UniRef50_Q9I0U0|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5873015873
+UniRef50_UPI0003940AB8: PREDICTED: basic proline-rich protein-like	1.5873015873
+UniRef50_UPI0003940AB8: PREDICTED: basic proline-rich protein-like|unclassified	1.5873015873
+UniRef50_V2TE51: Electron transfer flavoprotein, FAD-binding	1.5873015873
+UniRef50_V2TE51: Electron transfer flavoprotein, FAD-binding|g__Escherichia.s__Escherichia_coli	1.5873015873
+UniRef50_UPI00037E7D3D: hypothetical protein, partial	1.5868412277
+UniRef50_UPI00037E7D3D: hypothetical protein, partial|unclassified	1.5868412277
+UniRef50_Q9E865: ICP4 protein (Fragment)	1.5866476182
+UniRef50_Q9E865: ICP4 protein (Fragment)|unclassified	1.5866476182
+UniRef50_A2XAN5	1.5865407681
+UniRef50_A2XAN5|unclassified	1.5865407681
+UniRef50_H4IHW3: Lipopolysaccharide core biosynthesis domain protein	1.5865008925
+UniRef50_H4IHW3: Lipopolysaccharide core biosynthesis domain protein|unclassified	1.5865008925
+UniRef50_Q0AQ30: Cupin 2, conserved barrel domain protein	1.5864132887
+UniRef50_Q0AQ30: Cupin 2, conserved barrel domain protein|unclassified	1.5864132887
+UniRef50_UPI0003618544: MULTISPECIES: 50S ribosomal protein L6	1.5863271656
+UniRef50_UPI0003618544: MULTISPECIES: 50S ribosomal protein L6|unclassified	1.5863271656
+UniRef50_F9HUZ5	1.5861027631
+UniRef50_F9HUZ5|unclassified	1.5861027631
+UniRef50_A0A037ZMN0	1.5857919696
+UniRef50_A0A037ZMN0|unclassified	1.5857919696
+UniRef50_W1XU06	1.5857724304
+UniRef50_W1XU06|unclassified	1.5857724304
+UniRef50_A3M7N4: Chaperone protein	1.5854164310
+UniRef50_A3M7N4: Chaperone protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.5854164310
+UniRef50_UPI0002627721: prolipoprotein diacylglyceryl transferase	1.5849869379
+UniRef50_UPI0002627721: prolipoprotein diacylglyceryl transferase|unclassified	1.5849869379
+UniRef50_Q5XL59: Hypothetical 18.9 kDa protein	1.5848373018
+UniRef50_Q5XL59: Hypothetical 18.9 kDa protein|unclassified	1.5848373018
+UniRef50_Q9RU50: Acyl-CoA dehydrogenase	1.5847950095
+UniRef50_Q9RU50: Acyl-CoA dehydrogenase|g__Deinococcus.s__Deinococcus_radiodurans	1.5847950095
+UniRef50_F0KKV9	1.5847860539
+UniRef50_F0KKV9|g__Acinetobacter.s__Acinetobacter_baumannii	1.5847860539
+UniRef50_Q07RH6: Transaldolase	1.5847860539
+UniRef50_Q07RH6: Transaldolase|g__Clostridium.s__Clostridium_beijerinckii	1.5847860539
+UniRef50_UPI0002627BB0: 50S ribosomal protein L15, partial	1.5846629710
+UniRef50_UPI0002627BB0: 50S ribosomal protein L15, partial|unclassified	1.5846629710
+UniRef50_Q8G6D6: Phosphoglycerate kinase	1.5845224313
+UniRef50_Q8G6D6: Phosphoglycerate kinase|g__Propionibacterium.s__Propionibacterium_acnes	1.4204545455
+UniRef50_Q8G6D6: Phosphoglycerate kinase|unclassified	0.1640678859
+UniRef50_V7GIL0	1.5842360295
+UniRef50_V7GIL0|unclassified	1.5842360295
+UniRef50_D6X5L6: Predicted protein	1.5836314628
+UniRef50_D6X5L6: Predicted protein|unclassified	1.5836314628
+UniRef50_Z2DBM9: Oxoglutarate dehydrogenase (Succinyl-transferring), E1 component	1.5834716801
+UniRef50_Z2DBM9: Oxoglutarate dehydrogenase (Succinyl-transferring), E1 component|g__Escherichia.s__Escherichia_coli	1.5834716801
+UniRef50_UPI00035D3F59: hypothetical protein	1.5832021476
+UniRef50_UPI00035D3F59: hypothetical protein|unclassified	1.5832021476
+UniRef50_UPI00046CF8F3: hypothetical protein, partial	1.5831418672
+UniRef50_UPI00046CF8F3: hypothetical protein, partial|unclassified	1.5831418672
+UniRef50_Q8XZ19: DNA polymerase IV	1.5822956259
+UniRef50_Q8XZ19: DNA polymerase IV|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5479876161
+UniRef50_Q8XZ19: DNA polymerase IV|unclassified	0.0343080098
+UniRef50_R7FBH2	1.5822941795
+UniRef50_R7FBH2|unclassified	1.5822941795
+UniRef50_C1CJ99: Peptidase, M42	1.5822784810
+UniRef50_C1CJ99: Peptidase, M42|g__Streptococcus.s__Streptococcus_agalactiae	1.5822784810
+UniRef50_C6BH49: Coproporphyrinogen-III oxidase	1.5822784810
+UniRef50_C6BH49: Coproporphyrinogen-III oxidase|g__Neisseria.s__Neisseria_meningitidis	1.5822784810
+UniRef50_F0RKF5: Riboflavin synthase, alpha subunit	1.5822784810
+UniRef50_F0RKF5: Riboflavin synthase, alpha subunit|g__Deinococcus.s__Deinococcus_radiodurans	1.5822784810
+UniRef50_F4U9N7: PTS system maltose-and glucose-specific EIICB component	1.5821938580
+UniRef50_F4U9N7: PTS system maltose-and glucose-specific EIICB component|unclassified	1.5821938580
+UniRef50_D4HFJ4	1.5817351829
+UniRef50_D4HFJ4|g__Propionibacterium.s__Propionibacterium_acnes	1.5817351829
+UniRef50_Q84ZJ6	1.5815528968
+UniRef50_Q84ZJ6|unclassified	1.5815528968
+UniRef50_UPI0003B35C64: MerR family transcriptional regulator	1.5814710331
+UniRef50_UPI0003B35C64: MerR family transcriptional regulator|unclassified	1.5814710331
+UniRef50_G8VD08: Amino acid carrier protein	1.5808964819
+UniRef50_G8VD08: Amino acid carrier protein|g__Propionibacterium.s__Propionibacterium_acnes	1.5808964819
+UniRef50_UPI000255CC5F: cation:proton antiporter	1.5807561516
+UniRef50_UPI000255CC5F: cation:proton antiporter|unclassified	1.5807561516
+UniRef50_UPI0004031A98: transcriptional regulator	1.5807313037
+UniRef50_UPI0004031A98: transcriptional regulator|unclassified	1.5807313037
+UniRef50_A0R6E0: Trehalose synthase/amylase TreS	1.5807178941
+UniRef50_A0R6E0: Trehalose synthase/amylase TreS|g__Propionibacterium.s__Propionibacterium_acnes	0.7710100231
+UniRef50_A0R6E0: Trehalose synthase/amylase TreS|g__Deinococcus.s__Deinococcus_radiodurans	0.7412898443
+UniRef50_A0R6E0: Trehalose synthase/amylase TreS|unclassified	0.0684180266
+UniRef50_I6CGA0	1.5805980452
+UniRef50_I6CGA0|unclassified	1.5805980452
+UniRef50_U6ECP8	1.5804760431
+UniRef50_U6ECP8|unclassified	1.5804760431
+UniRef50_Q6H7D8	1.5803300293
+UniRef50_Q6H7D8|unclassified	1.5803300293
+UniRef50_K0CMU9: Arsenical resistance protein ArsH	1.5800987590
+UniRef50_K0CMU9: Arsenical resistance protein ArsH|unclassified	1.5800987590
+UniRef50_O32176: Probable acyl-CoA dehydrogenase	1.5798324435
+UniRef50_O32176: Probable acyl-CoA dehydrogenase|unclassified	1.5798324435
+UniRef50_L0A4U7: Haloacid dehalogenase superfamily protein, subfamily IA, variant 3 with third motif having DD or ED	1.5797788310
+UniRef50_L0A4U7: Haloacid dehalogenase superfamily protein, subfamily IA, variant 3 with third motif having DD or ED|g__Deinococcus.s__Deinococcus_radiodurans	1.5797788310
+UniRef50_O52376: Thiol:disulfide interchange protein DsbA	1.5797788310
+UniRef50_O52376: Thiol:disulfide interchange protein DsbA|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5797788310
+UniRef50_Q6A5B2: Ribosomal RNA small subunit methyltransferase G	1.5797788310
+UniRef50_Q6A5B2: Ribosomal RNA small subunit methyltransferase G|g__Propionibacterium.s__Propionibacterium_acnes	1.5797788310
+UniRef50_Q9RZL0	1.5797788310
+UniRef50_Q9RZL0|unclassified	1.5797788310
+UniRef50_UPI00038EF6B3: PREDICTED: collagen alpha-1(VII) chain-like	1.5797788310
+UniRef50_UPI00038EF6B3: PREDICTED: collagen alpha-1(VII) chain-like|unclassified	1.5797788310
+UniRef50_V8ELC4	1.5797788310
+UniRef50_V8ELC4|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5797788310
+UniRef50_Q98AP1: Mlr5912 protein	1.5795162218
+UniRef50_Q98AP1: Mlr5912 protein|unclassified	1.5795162218
+UniRef50_UPI000360F750: hypothetical protein	1.5794941554
+UniRef50_UPI000360F750: hypothetical protein|unclassified	1.5794941554
+UniRef50_A0A014MPU5	1.5794792421
+UniRef50_A0A014MPU5|unclassified	1.5794792421
+UniRef50_E6PX09	1.5790490753
+UniRef50_E6PX09|unclassified	1.5790490753
+UniRef50_W0YS94	1.5789844700
+UniRef50_W0YS94|unclassified	1.5789844700
+UniRef50_Q6F9J2: Coenzyme PQQ synthesis protein B	1.5786639990
+UniRef50_Q6F9J2: Coenzyme PQQ synthesis protein B|g__Acinetobacter.s__Acinetobacter_baumannii	1.1750881316
+UniRef50_Q6F9J2: Coenzyme PQQ synthesis protein B|unclassified	0.4035758674
+UniRef50_UPI000472C07B: hypothetical protein, partial	1.5778684060
+UniRef50_UPI000472C07B: hypothetical protein, partial|unclassified	1.5778684060
+UniRef50_UPI00035E8F3F: hypothetical protein	1.5778489732
+UniRef50_UPI00035E8F3F: hypothetical protein|unclassified	1.5778489732
+UniRef50_D6EFB5: Regulatory protein	1.5776889953
+UniRef50_D6EFB5: Regulatory protein|unclassified	1.5776889953
+UniRef50_E8RRB9: Fe-S metabolism associated SufE	1.5776753097
+UniRef50_E8RRB9: Fe-S metabolism associated SufE|unclassified	1.5776753097
+UniRef50_T2EL78	1.5773540800
+UniRef50_T2EL78|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5773540800
+UniRef50_W2ERD1	1.5772870662
+UniRef50_W2ERD1|unclassified	1.5772870662
+UniRef50_A0A023S2F8: Type I deoxyribonuclease HsdR	1.5772870662
+UniRef50_A0A023S2F8: Type I deoxyribonuclease HsdR|g__Acinetobacter.s__Acinetobacter_baumannii	1.5772870662
+UniRef50_A6LY51: Type IV pilus assembly PilZ	1.5772870662
+UniRef50_A6LY51: Type IV pilus assembly PilZ|g__Clostridium.s__Clostridium_beijerinckii	1.5772870662
+UniRef50_G7M7W5: Heat shock protein DnaJ domain protein	1.5772870662
+UniRef50_G7M7W5: Heat shock protein DnaJ domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.5772870662
+UniRef50_A3TXU1	1.5772475227
+UniRef50_A3TXU1|unclassified	1.5772475227
+UniRef50_Q3IWB5: Zinc import ATP-binding protein ZnuC	1.5772242126
+UniRef50_Q3IWB5: Zinc import ATP-binding protein ZnuC|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.3831258645
+UniRef50_Q3IWB5: Zinc import ATP-binding protein ZnuC|unclassified	0.1940983482
+UniRef50_W8Z324	1.5770696646
+UniRef50_W8Z324|unclassified	1.5770696646
+UniRef50_A3M783: Putative TonB-dependent receptor	1.5766465064
+UniRef50_A3M783: Putative TonB-dependent receptor|g__Acinetobacter.s__Acinetobacter_baumannii	1.5766465064
+UniRef50_A6M1M3	1.5764048114
+UniRef50_A6M1M3|g__Clostridium.s__Clostridium_beijerinckii	1.5764048114
+UniRef50_UPI0002BB16E1: hypothetical protein	1.5763502835
+UniRef50_UPI0002BB16E1: hypothetical protein|unclassified	1.5763502835
+UniRef50_UPI0003673AF3: nitric oxide reductase	1.5761413759
+UniRef50_UPI0003673AF3: nitric oxide reductase|unclassified	1.5761413759
+UniRef50_UPI00036FEA3E: hypothetical protein, partial	1.5760750376
+UniRef50_UPI00036FEA3E: hypothetical protein, partial|unclassified	1.5760750376
+UniRef50_A0A022MWJ0	1.5759325828
+UniRef50_A0A022MWJ0|unclassified	1.5759325828
+UniRef50_C4SYH4	1.5749470789
+UniRef50_C4SYH4|unclassified	1.5749470789
+UniRef50_I0ESR9: Outer membrane protein	1.5748031496
+UniRef50_I0ESR9: Outer membrane protein|g__Helicobacter.s__Helicobacter_pylori	1.5748031496
+UniRef50_K2AHW9	1.5748031496
+UniRef50_K2AHW9|unclassified	1.5748031496
+UniRef50_K4KJS3: Acyl-[acyl-carrier-protein]--UDP-N-acetylglucosamine O-acyltransferase	1.5748031496
+UniRef50_K4KJS3: Acyl-[acyl-carrier-protein]--UDP-N-acetylglucosamine O-acyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.5748031496
+UniRef50_O05389	1.5748031496
+UniRef50_O05389|g__Clostridium.s__Clostridium_beijerinckii	1.5748031496
+UniRef50_L0R6A6: Phage major tail tube protein	1.5743847181
+UniRef50_L0R6A6: Phage major tail tube protein|unclassified	1.5743847181
+UniRef50_Q4JVG0: Chorismate synthase	1.5743536542
+UniRef50_Q4JVG0: Chorismate synthase|g__Propionibacterium.s__Propionibacterium_acnes	1.4662756598
+UniRef50_Q4JVG0: Chorismate synthase|unclassified	0.1080779944
+UniRef50_Q2C9N3	1.5742543883
+UniRef50_Q2C9N3|unclassified	1.5742543883
+UniRef50_I6EIT7: Inner membrane YnjF domain protein	1.5737206779
+UniRef50_I6EIT7: Inner membrane YnjF domain protein|unclassified	1.5737206779
+UniRef50_A0A059E3P7	1.5736343430
+UniRef50_A0A059E3P7|unclassified	1.5736343430
+UniRef50_Q04664: Galactosyl transferase CpsE	1.5736305103
+UniRef50_Q04664: Galactosyl transferase CpsE|g__Streptococcus.s__Streptococcus_agalactiae	1.5736305103
+UniRef50_UPI00026276D0: aryldialkylphosphatase	1.5735053543
+UniRef50_UPI00026276D0: aryldialkylphosphatase|unclassified	1.5735053543
+UniRef50_A4WYB5	1.5730883564
+UniRef50_A4WYB5|unclassified	1.5730883564
+UniRef50_A4G9I7: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	1.5730085948
+UniRef50_A4G9I7: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.3986013986
+UniRef50_A4G9I7: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.1744071962
+UniRef50_Q3K2F6: Fructose-1,6-bisphosphatase class 3	1.5729246893
+UniRef50_Q3K2F6: Fructose-1,6-bisphosphatase class 3|g__Streptococcus.s__Streptococcus_agalactiae	1.5729246893
+UniRef50_H4AW56: Putative transposase (Fragment)	1.5729020568
+UniRef50_H4AW56: Putative transposase (Fragment)|unclassified	1.5729020568
+UniRef50_UPI0004706BF7: hypothetical protein	1.5727261912
+UniRef50_UPI0004706BF7: hypothetical protein|unclassified	1.5727261912
+UniRef50_G7MB49: Integral membrane sensor signal transduction histidine kinase	1.5726629562
+UniRef50_G7MB49: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	1.5726629562
+UniRef50_Q0TPM3: ATP-dependent DNA helicase RecG	1.5725686422
+UniRef50_Q0TPM3: ATP-dependent DNA helicase RecG|g__Clostridium.s__Clostridium_beijerinckii	1.5725686422
+UniRef50_G7M4A2	1.5723270440
+UniRef50_G7M4A2|g__Clostridium.s__Clostridium_beijerinckii	1.5723270440
+UniRef50_UPI00047C1596: hypothetical protein	1.5723270440
+UniRef50_UPI00047C1596: hypothetical protein|unclassified	1.5723270440
+UniRef50_W7X4H8	1.5723270440
+UniRef50_W7X4H8|unclassified	1.5723270440
+UniRef50_Q1GDJ7: Cytochrome oxidase maturation protein cbb3-type	1.5722560014
+UniRef50_Q1GDJ7: Cytochrome oxidase maturation protein cbb3-type|unclassified	1.5722560014
+UniRef50_UPI0002F13DE3: hypothetical protein	1.5721981276
+UniRef50_UPI0002F13DE3: hypothetical protein|unclassified	1.5721981276
+UniRef50_W0XK35	1.5718544617
+UniRef50_W0XK35|unclassified	1.5718544617
+UniRef50_K0DUB4: Guanine deaminase	1.5717385961
+UniRef50_K0DUB4: Guanine deaminase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5717385961
+UniRef50_UPI000465AF35: aldehyde oxidoreductase	1.5716153264
+UniRef50_UPI000465AF35: aldehyde oxidoreductase|unclassified	1.5716153264
+UniRef50_K2F9K7	1.5715634106
+UniRef50_K2F9K7|unclassified	1.5715634106
+UniRef50_D4GIJ6: YyaJ	1.5711183935
+UniRef50_D4GIJ6: YyaJ|g__Acinetobacter.s__Acinetobacter_baumannii	1.5711183935
+UniRef50_A0A024RXJ7	1.5710054556
+UniRef50_A0A024RXJ7|unclassified	1.5710054556
+UniRef50_H8FWZ7	1.5701762187
+UniRef50_H8FWZ7|unclassified	1.5701762187
+UniRef50_J3H4T2: Transposase	1.5701402122
+UniRef50_J3H4T2: Transposase|unclassified	1.5701402122
+UniRef50_A0A059E9X7	1.5700595629
+UniRef50_A0A059E9X7|unclassified	1.5700595629
+UniRef50_UPI0003B79B45: branched-chain amino acid aminotransferase	1.5699367889
+UniRef50_UPI0003B79B45: branched-chain amino acid aminotransferase|unclassified	1.5699367889
+UniRef50_A5W827: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	1.5698587127
+UniRef50_A5W827: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5698587127
+UniRef50_A6LQ40	1.5698587127
+UniRef50_A6LQ40|g__Clostridium.s__Clostridium_beijerinckii	1.5698587127
+UniRef50_B0V512	1.5698587127
+UniRef50_B0V512|g__Acinetobacter.s__Acinetobacter_baumannii	1.5698587127
+UniRef50_B7GJX4: Predicted dithiol-disulfide isomerase involved in polyketide biosynthesis	1.5698587127
+UniRef50_B7GJX4: Predicted dithiol-disulfide isomerase involved in polyketide biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	1.5698587127
+UniRef50_E4ZDG9	1.5698587127
+UniRef50_E4ZDG9|g__Neisseria.s__Neisseria_meningitidis	1.5698587127
+UniRef50_H6R2B9	1.5698587127
+UniRef50_H6R2B9|unclassified	1.5698587127
+UniRef50_W0WE05	1.5698587127
+UniRef50_W0WE05|unclassified	1.5698587127
+UniRef50_S3ZQ20	1.5695069096
+UniRef50_S3ZQ20|unclassified	1.5695069096
+UniRef50_F5J5S5	1.5693782111
+UniRef50_F5J5S5|unclassified	1.5693782111
+UniRef50_E8QJ87	1.5690946201
+UniRef50_E8QJ87|g__Helicobacter.s__Helicobacter_pylori	1.5690946201
+UniRef50_Q97J66: Protein CA_C1420	1.5687773369
+UniRef50_Q97J66: Protein CA_C1420|g__Clostridium.s__Clostridium_beijerinckii	1.5687773369
+UniRef50_UPI0003776EC3: hypothetical protein	1.5683605888
+UniRef50_UPI0003776EC3: hypothetical protein|unclassified	1.5683605888
+UniRef50_A9IFD3	1.5673981191
+UniRef50_A9IFD3|unclassified	1.5673981191
+UniRef50_C9X0B4: Cystathionine beta-lyase (CBL beta-cystathionase cysteine lyase)	1.5673981191
+UniRef50_C9X0B4: Cystathionine beta-lyase (CBL beta-cystathionase cysteine lyase)|g__Neisseria.s__Neisseria_meningitidis	1.5673981191
+UniRef50_M1LU25: Ferredoxin--NADP+ reductase	1.5673981191
+UniRef50_M1LU25: Ferredoxin--NADP+ reductase|g__Acinetobacter.s__Acinetobacter_baumannii	1.5673981191
+UniRef50_UPI00016C5A10: hypothetical protein, partial	1.5670936179
+UniRef50_UPI00016C5A10: hypothetical protein, partial|unclassified	1.5670936179
+UniRef50_Q890U2: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	1.5668299309
+UniRef50_Q890U2: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|g__Clostridium.s__Clostridium_beijerinckii	1.3274404086
+UniRef50_Q890U2: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|unclassified	0.2393895223
+UniRef50_A9U7F0: Predicted protein (Fragment)	1.5668013901
+UniRef50_A9U7F0: Predicted protein (Fragment)|unclassified	1.5668013901
+UniRef50_UPI000289FF7D: transporter	1.5666358981
+UniRef50_UPI000289FF7D: transporter|unclassified	1.5666358981
+UniRef50_D2TWU4	1.5661902867
+UniRef50_D2TWU4|unclassified	1.5661902867
+UniRef50_F0MEQ3: Ferripyoverdine receptor	1.5661002199
+UniRef50_F0MEQ3: Ferripyoverdine receptor|g__Neisseria.s__Neisseria_meningitidis	1.5661002199
+UniRef50_U9FRQ4	1.5660931715
+UniRef50_U9FRQ4|unclassified	1.5660931715
+UniRef50_H6PBG3: Two-component sensor histidine kinase	1.5660012847
+UniRef50_H6PBG3: Two-component sensor histidine kinase|g__Streptococcus.s__Streptococcus_agalactiae	1.5660012847
+UniRef50_C4U885: Autoinducer 2-binding protein lsrB	1.5657882928
+UniRef50_C4U885: Autoinducer 2-binding protein lsrB|unclassified	1.5657882928
+UniRef50_A6LZA1: Transcriptional regulator-like protein	1.5652911987
+UniRef50_A6LZA1: Transcriptional regulator-like protein|g__Clostridium.s__Clostridium_beijerinckii	1.5652911987
+UniRef50_A0A011PVU6	1.5650136667
+UniRef50_A0A011PVU6|unclassified	1.5650136667
+UniRef50_A0A024HM95	1.5649452269
+UniRef50_A0A024HM95|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5649452269
+UniRef50_A6TUT9: Membrane spanning protein	1.5649452269
+UniRef50_A6TUT9: Membrane spanning protein|g__Clostridium.s__Clostridium_beijerinckii	1.5649452269
+UniRef50_A6V627: Membrane protein, putative	1.5649452269
+UniRef50_A6V627: Membrane protein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5649452269
+UniRef50_C5ZXL6: Hydrogenase expression/formation protein HypE	1.5649452269
+UniRef50_C5ZXL6: Hydrogenase expression/formation protein HypE|g__Helicobacter.s__Helicobacter_pylori	1.5649452269
+UniRef50_Q84NM0	1.5649452269
+UniRef50_Q84NM0|unclassified	1.5649452269
+UniRef50_Q9RXQ6	1.5649452269
+UniRef50_Q9RXQ6|g__Deinococcus.s__Deinococcus_radiodurans	1.5649452269
+UniRef50_UPI00031164B1: hypothetical protein	1.5649452269
+UniRef50_UPI00031164B1: hypothetical protein|unclassified	1.5649452269
+UniRef50_V9T136: TetR family transcriptional regulator	1.5649452269
+UniRef50_V9T136: TetR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5649452269
+UniRef50_M5ABJ7: Glucuronide carrier protein	1.5648096542
+UniRef50_M5ABJ7: Glucuronide carrier protein|g__Propionibacterium.s__Propionibacterium_acnes	1.5648096542
+UniRef50_G7M9K8: Methyl-accepting chemotaxis sensory transducer	1.5646211124
+UniRef50_G7M9K8: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	1.5646211124
+UniRef50_C6M427	1.5642337149
+UniRef50_C6M427|unclassified	1.5642337149
+UniRef50_UPI0004786C74: CopG family transcriptional regulator	1.5641979648
+UniRef50_UPI0004786C74: CopG family transcriptional regulator|unclassified	1.5641979648
+UniRef50_E1Q026: Iron-regulated outer membrane protein	1.5641337594
+UniRef50_E1Q026: Iron-regulated outer membrane protein|g__Helicobacter.s__Helicobacter_pylori	1.5641337594
+UniRef50_UPI000378D30F: hypothetical protein	1.5640311258
+UniRef50_UPI000378D30F: hypothetical protein|unclassified	1.5640311258
+UniRef50_L0WLU4: Apolipoprotein N-acyltransferase	1.5636918383
+UniRef50_L0WLU4: Apolipoprotein N-acyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.5636918383
+UniRef50_UPI0003638F6E: hypothetical protein	1.5635158603
+UniRef50_UPI0003638F6E: hypothetical protein|unclassified	1.5635158603
+UniRef50_UPI0003F5C642: hypothetical protein	1.5634111232
+UniRef50_UPI0003F5C642: hypothetical protein|unclassified	1.5634111232
+UniRef50_D1GN41	1.5634009947
+UniRef50_D1GN41|unclassified	1.5634009947
+UniRef50_UPI000465B0E4: hypothetical protein	1.5633685381
+UniRef50_UPI000465B0E4: hypothetical protein|unclassified	1.5633685381
+UniRef50_G0A8R2: Amino acid adenylation	1.5630414809
+UniRef50_G0A8R2: Amino acid adenylation|g__Acinetobacter.s__Acinetobacter_baumannii	1.5630414809
+UniRef50_A6LW94: Transcriptional regulator, DeoR family	1.5625000000
+UniRef50_A6LW94: Transcriptional regulator, DeoR family|g__Clostridium.s__Clostridium_beijerinckii	1.5625000000
+UniRef50_A6V4I6: Transcriptional regulator, LuxR family	1.5625000000
+UniRef50_A6V4I6: Transcriptional regulator, LuxR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5625000000
+UniRef50_B2UX29: Probable tRNA sulfurtransferase	1.5625000000
+UniRef50_B2UX29: Probable tRNA sulfurtransferase|g__Clostridium.s__Clostridium_beijerinckii	1.5625000000
+UniRef50_C6AA47: N-acetylmuramoyl-L-alanine amidase	1.5625000000
+UniRef50_C6AA47: N-acetylmuramoyl-L-alanine amidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5625000000
+UniRef50_M9VIE6	1.5625000000
+UniRef50_M9VIE6|g__Propionibacterium.s__Propionibacterium_acnes	1.5625000000
+UniRef50_Q49776: ATP phosphoribosyltransferase	1.5625000000
+UniRef50_Q49776: ATP phosphoribosyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	1.5625000000
+UniRef50_Q6F9B4	1.5625000000
+UniRef50_Q6F9B4|g__Acinetobacter.s__Acinetobacter_baumannii	1.5625000000
+UniRef50_A6LZW0: Sucrose-6-phosphate hydrolase	1.5624466378
+UniRef50_A6LZW0: Sucrose-6-phosphate hydrolase|g__Clostridium.s__Clostridium_beijerinckii	1.5624466378
+UniRef50_UPI0003B360FE: MerR family transcriptional regulator	1.5623612332
+UniRef50_UPI0003B360FE: MerR family transcriptional regulator|unclassified	1.5623612332
+UniRef50_X2I9U8: Histidine kinase	1.5620808234
+UniRef50_X2I9U8: Histidine kinase|g__Helicobacter.s__Helicobacter_pylori	1.5620808234
+UniRef50_A8AQY5	1.5616571772
+UniRef50_A8AQY5|unclassified	1.5616571772
+UniRef50_F0MX83	1.5615995972
+UniRef50_F0MX83|unclassified	1.5615995972
+UniRef50_UPI00036008AF: hypothetical protein	1.5615817549
+UniRef50_UPI00036008AF: hypothetical protein|unclassified	1.5615817549
+UniRef50_A6UXS2	1.5615613234
+UniRef50_A6UXS2|unclassified	1.5615613234
+UniRef50_A0A017HLN3: mRNA 3-end processing factor	1.5615004222
+UniRef50_A0A017HLN3: mRNA 3-end processing factor|unclassified	1.5615004222
+UniRef50_E4R7D6: Lytic transglycosylase, catalytic	1.5613614443
+UniRef50_E4R7D6: Lytic transglycosylase, catalytic|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5613614443
+UniRef50_D4KM36: Dihydroxyacid dehydratase/phosphogluconate dehydratase	1.5613040362
+UniRef50_D4KM36: Dihydroxyacid dehydratase/phosphogluconate dehydratase|g__Clostridium.s__Clostridium_beijerinckii	1.5613040362
+UniRef50_K1ER07: Major facilitator transporter	1.5609267719
+UniRef50_K1ER07: Major facilitator transporter|unclassified	1.5609267719
+UniRef50_F3YSD9: Glyoxalase/bleomycin resistance protein	1.5605795365
+UniRef50_F3YSD9: Glyoxalase/bleomycin resistance protein|unclassified	1.5605795365
+UniRef50_C6XQ62: Pyridine nucleotide-disulphide oxidoreductase dimerisation region	1.5600633440
+UniRef50_C6XQ62: Pyridine nucleotide-disulphide oxidoreductase dimerisation region|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.5600633440
+UniRef50_A6QAR3: Probable transcriptional regulatory protein SUN_1622	1.5600624025
+UniRef50_A6QAR3: Probable transcriptional regulatory protein SUN_1622|g__Helicobacter.s__Helicobacter_pylori	1.5600624025
+UniRef50_G2JM22: Phosphoserine phosphatase	1.5600624025
+UniRef50_G2JM22: Phosphoserine phosphatase|g__Acinetobacter.s__Acinetobacter_baumannii	1.5600624025
+UniRef50_R5GIU2: ABC transporter permease protein	1.5600624025
+UniRef50_R5GIU2: ABC transporter permease protein|g__Clostridium.s__Clostridium_beijerinckii	1.5600624025
+UniRef50_UPI000466BF95: hypothetical protein, partial	1.5599384938
+UniRef50_UPI000466BF95: hypothetical protein, partial|unclassified	1.5599384938
+UniRef50_Q32G84: Putative protein Ves	1.5598900211
+UniRef50_Q32G84: Putative protein Ves|unclassified	1.5598900211
+UniRef50_UPI0003805278: hypothetical protein	1.5598154425
+UniRef50_UPI0003805278: hypothetical protein|unclassified	1.5598154425
+UniRef50_U6MJL8	1.5597384171
+UniRef50_U6MJL8|unclassified	1.5597384171
+UniRef50_A0A010YS39	1.5590162109
+UniRef50_A0A010YS39|unclassified	1.5590162109
+UniRef50_R9DQ56	1.5586339914
+UniRef50_R9DQ56|unclassified	1.5586339914
+UniRef50_B9JG24: Shikimate dehydrogenase	1.5586164750
+UniRef50_B9JG24: Shikimate dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1947431302
+UniRef50_B9JG24: Shikimate dehydrogenase|unclassified	0.3638733448
+UniRef50_M0U2N9	1.5585558231
+UniRef50_M0U2N9|unclassified	1.5585558231
+UniRef50_I3X0I9	1.5577215652
+UniRef50_I3X0I9|unclassified	1.5577215652
+UniRef50_P15493: Lipase	1.5576323988
+UniRef50_P15493: Lipase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5576323988
+UniRef50_Q1J5J9: Xaa-Pro dipeptidase	1.5576323988
+UniRef50_Q1J5J9: Xaa-Pro dipeptidase|g__Streptococcus.s__Streptococcus_agalactiae	1.5576323988
+UniRef50_Q9RXI9: Serine cycle enzyme, putative	1.5576323988
+UniRef50_Q9RXI9: Serine cycle enzyme, putative|g__Deinococcus.s__Deinococcus_radiodurans	1.5576323988
+UniRef50_A0A011P1A0	1.5573010761
+UniRef50_A0A011P1A0|unclassified	1.5573010761
+UniRef50_Q7UX42: Glutamine--tRNA ligase	1.5572124156
+UniRef50_Q7UX42: Glutamine--tRNA ligase|g__Propionibacterium.s__Propionibacterium_acnes	1.5136100138
+UniRef50_Q7UX42: Glutamine--tRNA ligase|unclassified	0.0436024019
+UniRef50_UPI000365FAD5: molybdopterin biosynthesis protein B	1.5571694077
+UniRef50_UPI000365FAD5: molybdopterin biosynthesis protein B|unclassified	1.5571694077
+UniRef50_UPI00035CAFE7: hypothetical protein	1.5569661020
+UniRef50_UPI00035CAFE7: hypothetical protein|unclassified	1.5569661020
+UniRef50_I1EL11	1.5568742952
+UniRef50_I1EL11|unclassified	1.5568742952
+UniRef50_Q88NS8: Hydrolase, putative	1.5566285903
+UniRef50_Q88NS8: Hydrolase, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5566285903
+UniRef50_Q9HTQ9	1.5564805613
+UniRef50_Q9HTQ9|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5564805613
+UniRef50_A3PKP0	1.5563680571
+UniRef50_A3PKP0|unclassified	1.5563680571
+UniRef50_UPI00046E6362: hypothetical protein, partial	1.5563633531
+UniRef50_UPI00046E6362: hypothetical protein, partial|unclassified	1.5563633531
+UniRef50_V5VE78	1.5561369066
+UniRef50_V5VE78|g__Acinetobacter.s__Acinetobacter_baumannii	1.5561369066
+UniRef50_K1UR30: Electron transport complex, RnfABCDGE type, C subunit	1.5559366560
+UniRef50_K1UR30: Electron transport complex, RnfABCDGE type, C subunit|unclassified	1.5559366560
+UniRef50_Q1GER4	1.5556480346
+UniRef50_Q1GER4|unclassified	1.5556480346
+UniRef50_UPI0003B32E66: hypothetical protein	1.5553406107
+UniRef50_UPI0003B32E66: hypothetical protein|unclassified	1.5553406107
+UniRef50_D5WB27: Histidine ammonia-lyase	1.5552435468
+UniRef50_D5WB27: Histidine ammonia-lyase|g__Acinetobacter.s__Acinetobacter_baumannii	1.5552435468
+UniRef50_A6LT40: Phage integrase family protein	1.5552099533
+UniRef50_A6LT40: Phage integrase family protein|g__Clostridium.s__Clostridium_beijerinckii	1.5552099533
+UniRef50_D4HCR1: Hydrolase, alpha/beta domain protein	1.5552099533
+UniRef50_D4HCR1: Hydrolase, alpha/beta domain protein|g__Propionibacterium.s__Propionibacterium_acnes	1.5552099533
+UniRef50_E4QDT6	1.5552099533
+UniRef50_E4QDT6|g__Clostridium.s__Clostridium_beijerinckii	1.5552099533
+UniRef50_H1ST37: Polysaccharide biosynthesis protein	1.5552099533
+UniRef50_H1ST37: Polysaccharide biosynthesis protein|g__Staphylococcus.s__Staphylococcus_aureus	1.5552099533
+UniRef50_Q9RUB7: Phage shock protein A homolog	1.5552099533
+UniRef50_Q9RUB7: Phage shock protein A homolog|g__Deinococcus.s__Deinococcus_radiodurans	1.5552099533
+UniRef50_S5EBY8	1.5552099533
+UniRef50_S5EBY8|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5552099533
+UniRef50_X2HGW8: Alkaline protease secretion protein AprE	1.5548478927
+UniRef50_X2HGW8: Alkaline protease secretion protein AprE|g__Neisseria.s__Neisseria_meningitidis	1.5548478927
+UniRef50_Q03CA4: Ribose import ATP-binding protein RbsA	1.5546087135
+UniRef50_Q03CA4: Ribose import ATP-binding protein RbsA|g__Streptococcus.s__Streptococcus_agalactiae	0.8865248227
+UniRef50_Q03CA4: Ribose import ATP-binding protein RbsA|unclassified	0.6680838908
+UniRef50_W8WCZ2	1.5542768353
+UniRef50_W8WCZ2|unclassified	1.5542768353
+UniRef50_Q9RRD7: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B	1.5540976394
+UniRef50_Q9RRD7: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B|g__Deinococcus.s__Deinococcus_radiodurans	1.5540976394
+UniRef50_U3NIT1: Pyridine nucleotide-disulfide oxidoreductase protein	1.5540475270
+UniRef50_U3NIT1: Pyridine nucleotide-disulfide oxidoreductase protein|g__Staphylococcus.s__Staphylococcus_aureus	1.5540475270
+UniRef50_UPI000472C988: hypothetical protein, partial	1.5539661908
+UniRef50_UPI000472C988: hypothetical protein, partial|unclassified	1.5539661908
+UniRef50_A0A036W4K8	1.5539027992
+UniRef50_A0A036W4K8|unclassified	1.5539027992
+UniRef50_Q5GWU5	1.5538568786
+UniRef50_Q5GWU5|unclassified	1.5538568786
+UniRef50_UPI00046F781F: hypothetical protein	1.5536791546
+UniRef50_UPI00046F781F: hypothetical protein|unclassified	1.5536791546
+UniRef50_R0NKC6: ABC transporter substrate-binding protein	1.5532775743
+UniRef50_R0NKC6: ABC transporter substrate-binding protein|unclassified	1.5532775743
+UniRef50_UPI00035F17E5: hypothetical protein	1.5532292843
+UniRef50_UPI00035F17E5: hypothetical protein|unclassified	1.5532292843
+UniRef50_B1N6N5	1.5531079642
+UniRef50_B1N6N5|unclassified	1.5531079642
+UniRef50_UPI00047B888D: hypothetical protein	1.5530034646
+UniRef50_UPI00047B888D: hypothetical protein|unclassified	1.5530034646
+UniRef50_B6AXQ5	1.5527953136
+UniRef50_B6AXQ5|unclassified	1.5527953136
+UniRef50_A0A022KFC8: FCD domain protein	1.5527950311
+UniRef50_A0A022KFC8: FCD domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.5527950311
+UniRef50_E3D2E3	1.5527950311
+UniRef50_E3D2E3|g__Neisseria.s__Neisseria_meningitidis	1.5527950311
+UniRef50_Q9RTL4	1.5527950311
+UniRef50_Q9RTL4|g__Deinococcus.s__Deinococcus_radiodurans	1.5527950311
+UniRef50_W8EUK6: Iron ABC transporter	1.5527950311
+UniRef50_W8EUK6: Iron ABC transporter|g__Acinetobacter.s__Acinetobacter_baumannii	1.5527950311
+UniRef50_D8LTS8	1.5527248743
+UniRef50_D8LTS8|unclassified	1.5527248743
+UniRef50_V7F7P6	1.5524612130
+UniRef50_V7F7P6|unclassified	1.5524612130
+UniRef50_A6QGQ2	1.5522409679
+UniRef50_A6QGQ2|unclassified	1.5522409679
+UniRef50_S3BD43	1.5521700144
+UniRef50_S3BD43|unclassified	1.5521700144
+UniRef50_A0A033ZCU2	1.5521501457
+UniRef50_A0A033ZCU2|unclassified	1.5521501457
+UniRef50_UPI0002198415: LysR family transcriptional regulator	1.5518004419
+UniRef50_UPI0002198415: LysR family transcriptional regulator|unclassified	1.5518004419
+UniRef50_A6QDD1	1.5515976050
+UniRef50_A6QDD1|unclassified	1.5515976050
+UniRef50_M4WWU8: CheA signal transduction histidine kinase	1.5514038018
+UniRef50_M4WWU8: CheA signal transduction histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5514038018
+UniRef50_U2RRG8	1.5511055690
+UniRef50_U2RRG8|unclassified	1.5511055690
+UniRef50_P00272: Rubredoxin-2	1.5510772255
+UniRef50_P00272: Rubredoxin-2|unclassified	1.5510772255
+UniRef50_B5GZT8	1.5509554184
+UniRef50_B5GZT8|unclassified	1.5509554184
+UniRef50_G0DUX4: Phosphoesterase family protein	1.5508961164
+UniRef50_G0DUX4: Phosphoesterase family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.5508961164
+UniRef50_Q182W3: Stage IV sporulation protein A	1.5506568955
+UniRef50_Q182W3: Stage IV sporulation protein A|g__Clostridium.s__Clostridium_beijerinckii	1.5506568955
+UniRef50_Q6A7A2: DNA ligase	1.5506164015
+UniRef50_Q6A7A2: DNA ligase|g__Propionibacterium.s__Propionibacterium_acnes	1.5506164015
+UniRef50_A0A034HF74	1.5503875969
+UniRef50_A0A034HF74|g__Staphylococcus.s__Staphylococcus_aureus	1.5503875969
+UniRef50_A6LXR2: 4Fe-4S ferredoxin, iron-sulfur binding domain protein	1.5503875969
+UniRef50_A6LXR2: 4Fe-4S ferredoxin, iron-sulfur binding domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.5503875969
+UniRef50_Q9RTF9	1.5503875969
+UniRef50_Q9RTF9|g__Deinococcus.s__Deinococcus_radiodurans	1.5503875969
+UniRef50_V8G2Y5: Crp/Fnr family transcription regulator	1.5503875969
+UniRef50_V8G2Y5: Crp/Fnr family transcription regulator|g__Clostridium.s__Clostridium_beijerinckii	1.5503875969
+UniRef50_W4HNW2	1.5501511413
+UniRef50_W4HNW2|unclassified	1.5501511413
+UniRef50_D3F180: Regulator of chromosome condensation RCC1	1.5497923252
+UniRef50_D3F180: Regulator of chromosome condensation RCC1|unclassified	1.5497923252
+UniRef50_A0A022H0F6: GntR family transcriptional regulator	1.5495331307
+UniRef50_A0A022H0F6: GntR family transcriptional regulator|unclassified	1.5495331307
+UniRef50_UPI000369077C: hypothetical protein	1.5491843149
+UniRef50_UPI000369077C: hypothetical protein|unclassified	1.5491843149
+UniRef50_UPI0003705A0C: hypothetical protein	1.5491387706
+UniRef50_UPI0003705A0C: hypothetical protein|unclassified	1.5491387706
+UniRef50_D8JGS8: Acyl-coenzyme A synthetases/AMP-(Fatty) acid ligase	1.5489659470
+UniRef50_D8JGS8: Acyl-coenzyme A synthetases/AMP-(Fatty) acid ligase|g__Acinetobacter.s__Acinetobacter_baumannii	1.5489659470
+UniRef50_N1HD11: Propionate catabolism operon regulatory protein PrpR	1.5489624461
+UniRef50_N1HD11: Propionate catabolism operon regulatory protein PrpR|g__Escherichia.s__Escherichia_coli	1.5489624461
+UniRef50_Q9I4D3: Putative quercetin 2,3-dioxygenase PA1205	1.5487950881
+UniRef50_Q9I4D3: Putative quercetin 2,3-dioxygenase PA1205|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1325028313
+UniRef50_Q9I4D3: Putative quercetin 2,3-dioxygenase PA1205|unclassified	0.4162922569
+UniRef50_W8RWA1: Bacterioferritin-associated ferredoxin	1.5486922448
+UniRef50_W8RWA1: Bacterioferritin-associated ferredoxin|unclassified	1.5486922448
+UniRef50_E2XBA1: Hydrogenase-1 operon hyaF domain protein	1.5486795551
+UniRef50_E2XBA1: Hydrogenase-1 operon hyaF domain protein|unclassified	1.5486795551
+UniRef50_M3X368	1.5485726784
+UniRef50_M3X368|unclassified	1.5485726784
+UniRef50_Q9ZKV9: IS606 TRANSPOSASE	1.5482250534
+UniRef50_Q9ZKV9: IS606 TRANSPOSASE|g__Helicobacter.s__Helicobacter_pylori	1.5482250534
+UniRef50_B9KTV0: Tripartite ATP-independent periplasmic transporter, DctQ component	1.5481695117
+UniRef50_B9KTV0: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	1.5481695117
+UniRef50_A6M3B4	1.5479876161
+UniRef50_A6M3B4|g__Clostridium.s__Clostridium_beijerinckii	1.5479876161
+UniRef50_B2HX69: Predicted hydrolase (HAD superfamily)	1.5479876161
+UniRef50_B2HX69: Predicted hydrolase (HAD superfamily)|g__Acinetobacter.s__Acinetobacter_baumannii	1.5479876161
+UniRef50_C3I9I9	1.5479876161
+UniRef50_C3I9I9|g__Clostridium.s__Clostridium_beijerinckii	1.5479876161
+UniRef50_U9GGY0: Transcriptional regulator	1.5479876161
+UniRef50_U9GGY0: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5479876161
+UniRef50_UPI0003D787C4	1.5479876161
+UniRef50_UPI0003D787C4|unclassified	1.5479876161
+UniRef50_M9TX56	1.5475944923
+UniRef50_M9TX56|unclassified	1.5475944923
+UniRef50_UPI00047E325C: AsnC family transcriptional regulator	1.5475568688
+UniRef50_UPI00047E325C: AsnC family transcriptional regulator|unclassified	1.5475568688
+UniRef50_F0K7S4: RNA polymerase factor sigma-54	1.5474700775
+UniRef50_F0K7S4: RNA polymerase factor sigma-54|g__Clostridium.s__Clostridium_beijerinckii	1.5474700775
+UniRef50_UPI00027F5271	1.5473385813
+UniRef50_UPI00027F5271|unclassified	1.5473385813
+UniRef50_G1LNR6	1.5472163476
+UniRef50_G1LNR6|unclassified	1.5472163476
+UniRef50_Q47SC0: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B	1.5469694595
+UniRef50_Q47SC0: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B|g__Propionibacterium.s__Propionibacterium_acnes	1.5469694595
+UniRef50_V6F8B3	1.5469391588
+UniRef50_V6F8B3|unclassified	1.5469391588
+UniRef50_B9KWA6	1.5464446660
+UniRef50_B9KWA6|unclassified	1.5464446660
+UniRef50_UPI00037FF5FB: hypothetical protein	1.5458105008
+UniRef50_UPI00037FF5FB: hypothetical protein|unclassified	1.5458105008
+UniRef50_X2H969: D-2-hydroxyglutarate dehydrogenase	1.5457067517
+UniRef50_X2H969: D-2-hydroxyglutarate dehydrogenase|g__Neisseria.s__Neisseria_meningitidis	1.5457067517
+UniRef50_C3GUE0: Alcohol dehydrogenase GroES domain protein	1.5455950541
+UniRef50_C3GUE0: Alcohol dehydrogenase GroES domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.5455950541
+UniRef50_G7M4N9: Transcriptional antiterminator, BglG	1.5455950541
+UniRef50_G7M4N9: Transcriptional antiterminator, BglG|g__Clostridium.s__Clostridium_beijerinckii	1.5455950541
+UniRef50_J3M9R4	1.5455950541
+UniRef50_J3M9R4|unclassified	1.5455950541
+UniRef50_N9JGK4	1.5455950541
+UniRef50_N9JGK4|g__Acinetobacter.s__Acinetobacter_baumannii	1.5455950541
+UniRef50_P72131: HTH-type transcriptional regulator PtxR	1.5455950541
+UniRef50_P72131: HTH-type transcriptional regulator PtxR|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5455950541
+UniRef50_Q1CUH3: Tetraacyldisaccharide 4'-kinase	1.5455950541
+UniRef50_Q1CUH3: Tetraacyldisaccharide 4'-kinase|g__Helicobacter.s__Helicobacter_pylori	1.5455950541
+UniRef50_Q87AR8: Laccase domain protein PD_1754	1.5455950541
+UniRef50_Q87AR8: Laccase domain protein PD_1754|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5455950541
+UniRef50_B9C262	1.5455043862
+UniRef50_B9C262|unclassified	1.5455043862
+UniRef50_UPI00037AC159: hypothetical protein	1.5454403311
+UniRef50_UPI00037AC159: hypothetical protein|unclassified	1.5454403311
+UniRef50_P52560: GTP pyrophosphokinase	1.5453222236
+UniRef50_P52560: GTP pyrophosphokinase|g__Propionibacterium.s__Propionibacterium_acnes	1.5047829662
+UniRef50_P52560: GTP pyrophosphokinase|unclassified	0.0405392574
+UniRef50_UPI000380F48F: hypothetical protein, partial	1.5451723220
+UniRef50_UPI000380F48F: hypothetical protein, partial|unclassified	1.5451723220
+UniRef50_Q0SHI1	1.5451557700
+UniRef50_Q0SHI1|unclassified	1.5451557700
+UniRef50_F3GL52	1.5451396209
+UniRef50_F3GL52|unclassified	1.5451396209
+UniRef50_A0A009R342: SIR2-like domain protein	1.5447317217
+UniRef50_A0A009R342: SIR2-like domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.5447317217
+UniRef50_Q45223: 3-hydroxybutyryl-CoA dehydrogenase	1.5447239357
+UniRef50_Q45223: 3-hydroxybutyryl-CoA dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	1.3280212483
+UniRef50_Q45223: 3-hydroxybutyryl-CoA dehydrogenase|unclassified	0.2167026873
+UniRef50_Q9Z3B5: Mobilization protein	1.5437226040
+UniRef50_Q9Z3B5: Mobilization protein|unclassified	1.5437226040
+UniRef50_X7U6C1: PPE family protein	1.5436219962
+UniRef50_X7U6C1: PPE family protein|unclassified	1.5436219962
+UniRef50_R6NSD0	1.5434683221
+UniRef50_R6NSD0|unclassified	1.5434683221
+UniRef50_UPI00036800B9: hypothetical protein	1.5434627969
+UniRef50_UPI00036800B9: hypothetical protein|unclassified	1.5434627969
+UniRef50_T1JMG7	1.5434342531
+UniRef50_T1JMG7|unclassified	1.5434342531
+UniRef50_UPI0003738D5A: hypothetical protein	1.5433248101
+UniRef50_UPI0003738D5A: hypothetical protein|unclassified	1.5433248101
+UniRef50_A4WW43	1.5432098765
+UniRef50_A4WW43|unclassified	1.5432098765
+UniRef50_A6LZQ3	1.5432098765
+UniRef50_A6LZQ3|g__Clostridium.s__Clostridium_beijerinckii	1.5432098765
+UniRef50_M9VBK7: Protein translocase subunit SecE	1.5432098765
+UniRef50_M9VBK7: Protein translocase subunit SecE|g__Propionibacterium.s__Propionibacterium_acnes	1.5432098765
+UniRef50_N9KV58	1.5432098765
+UniRef50_N9KV58|g__Acinetobacter.s__Acinetobacter_baumannii	1.5432098765
+UniRef50_Q1CRS3: tRNA-specific 2-thiouridylase MnmA	1.5432098765
+UniRef50_Q1CRS3: tRNA-specific 2-thiouridylase MnmA|g__Helicobacter.s__Helicobacter_pylori	1.5432098765
+UniRef50_R6QEM9: Oxidoreductase short chain dehydrogenase/reductase family protein	1.5432098765
+UniRef50_R6QEM9: Oxidoreductase short chain dehydrogenase/reductase family protein|g__Clostridium.s__Clostridium_beijerinckii	1.5432098765
+UniRef50_UPI000426E6CD: hypothetical protein	1.5432098765
+UniRef50_UPI000426E6CD: hypothetical protein|unclassified	1.5432098765
+UniRef50_UPI00039CC563: hypothetical protein	1.5431722312
+UniRef50_UPI00039CC563: hypothetical protein|unclassified	1.5431722312
+UniRef50_U5UTH9	1.5427121430
+UniRef50_U5UTH9|unclassified	1.5427121430
+UniRef50_Q1IKB4: Imidazoleglycerol-phosphate dehydratase	1.5425770883
+UniRef50_Q1IKB4: Imidazoleglycerol-phosphate dehydratase|unclassified	1.5425770883
+UniRef50_UPI00036A03C0: hypothetical protein	1.5425540929
+UniRef50_UPI00036A03C0: hypothetical protein|unclassified	1.5425540929
+UniRef50_J3A4K5	1.5422082713
+UniRef50_J3A4K5|unclassified	1.5422082713
+UniRef50_A4VLC1: Rad3-related DNA helicase	1.5419727321
+UniRef50_A4VLC1: Rad3-related DNA helicase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5419727321
+UniRef50_E4MYY1	1.5413895222
+UniRef50_E4MYY1|unclassified	1.5413895222
+UniRef50_Q9RZS7	1.5409660470
+UniRef50_Q9RZS7|unclassified	1.5409660470
+UniRef50_B1TBD8	1.5409295634
+UniRef50_B1TBD8|unclassified	1.5409295634
+UniRef50_A6M276	1.5408320493
+UniRef50_A6M276|g__Clostridium.s__Clostridium_beijerinckii	1.5408320493
+UniRef50_H0DTH9: Peptidase, S54 family	1.5408320493
+UniRef50_H0DTH9: Peptidase, S54 family|g__Staphylococcus.s__Staphylococcus_epidermidis	1.5408320493
+UniRef50_J9YQW9: Rhomboid family protein	1.5408320493
+UniRef50_J9YQW9: Rhomboid family protein|g__Streptococcus.s__Streptococcus_agalactiae	1.5408320493
+UniRef50_Q6F9W5	1.5408320493
+UniRef50_Q6F9W5|g__Acinetobacter.s__Acinetobacter_baumannii	1.5408320493
+UniRef50_UPI000372A004: 30S ribosomal protein S11	1.5404873130
+UniRef50_UPI000372A004: 30S ribosomal protein S11|unclassified	1.5404873130
+UniRef50_A6M2F4: Response regulator receiver protein	1.5402828593
+UniRef50_A6M2F4: Response regulator receiver protein|g__Clostridium.s__Clostridium_beijerinckii	1.5402828593
+UniRef50_J2X5A4	1.5402330359
+UniRef50_J2X5A4|unclassified	1.5402330359
+UniRef50_C6CQD0: Histidine ammonia-lyase	1.5401085698
+UniRef50_C6CQD0: Histidine ammonia-lyase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5401085698
+UniRef50_UPI0004010090: NUDIX hydrolase	1.5399885786
+UniRef50_UPI0004010090: NUDIX hydrolase|unclassified	1.5399885786
+UniRef50_A3JMR3	1.5399262846
+UniRef50_A3JMR3|unclassified	1.5399262846
+UniRef50_F7ZF48	1.5398903696
+UniRef50_F7ZF48|unclassified	1.5398903696
+UniRef50_UPI0001CE18D6: PREDICTED: hypothetical protein	1.5396744061
+UniRef50_UPI0001CE18D6: PREDICTED: hypothetical protein|unclassified	1.5396744061
+UniRef50_Q0FEY0: UPF0260 protein OM2255_06755	1.5390747622
+UniRef50_Q0FEY0: UPF0260 protein OM2255_06755|unclassified	1.5390747622
+UniRef50_UPI00047CFFA2: hypothetical protein	1.5389377835
+UniRef50_UPI00047CFFA2: hypothetical protein|unclassified	1.5389377835
+UniRef50_X0QIR7: Coenzyme PQQ synthesis protein B	1.5388905383
+UniRef50_X0QIR7: Coenzyme PQQ synthesis protein B|unclassified	1.5388905383
+UniRef50_C1E8Z2: Succinic semialdehyde dehydrogenase	1.5388828137
+UniRef50_C1E8Z2: Succinic semialdehyde dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.5388828137
+UniRef50_Q2KCH9: Probable chemotaxis protein methyltransferase	1.5388710077
+UniRef50_Q2KCH9: Probable chemotaxis protein methyltransferase|unclassified	1.5388710077
+UniRef50_X0X8Y7: Marine sediment metagenome DNA, contig: S01H1_S25425 (Fragment)	1.5387499592
+UniRef50_X0X8Y7: Marine sediment metagenome DNA, contig: S01H1_S25425 (Fragment)|unclassified	1.5387499592
+UniRef50_A4WSD1: Haemin-degrading family protein	1.5384615385
+UniRef50_A4WSD1: Haemin-degrading family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.5384615385
+UniRef50_B2I366: AraC-type DNA-binding domain-containing protein	1.5384615385
+UniRef50_B2I366: AraC-type DNA-binding domain-containing protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.5384615385
+UniRef50_Q5LY30: Glycoprotein endopeptidase	1.5384615385
+UniRef50_Q5LY30: Glycoprotein endopeptidase|g__Streptococcus.s__Streptococcus_agalactiae	1.5384615385
+UniRef50_W1Y8J9	1.5382458953
+UniRef50_W1Y8J9|unclassified	1.5382458953
+UniRef50_E3F495: Conserved domain protein	1.5379962229
+UniRef50_E3F495: Conserved domain protein|unclassified	1.5379962229
+UniRef50_UPI0004268641: 50S ribosomal protein L21	1.5379844237
+UniRef50_UPI0004268641: 50S ribosomal protein L21|unclassified	1.5379844237
+UniRef50_UPI0003F95CA7: 50S ribosomal protein L25	1.5378931765
+UniRef50_UPI0003F95CA7: 50S ribosomal protein L25|unclassified	1.5378931765
+UniRef50_L8FTT7	1.5376352674
+UniRef50_L8FTT7|unclassified	1.5376352674
+UniRef50_W9EKH4: Recombinase	1.5376339029
+UniRef50_W9EKH4: Recombinase|unclassified	1.5376339029
+UniRef50_Q9RZ06: Histidine ammonia-lyase	1.5374144629
+UniRef50_Q9RZ06: Histidine ammonia-lyase|g__Deinococcus.s__Deinococcus_radiodurans	1.5374144629
+UniRef50_V9C4R9: PF12266 family protein	1.5373620705
+UniRef50_V9C4R9: PF12266 family protein|unclassified	1.5373620705
+UniRef50_UPI0003B5B654: membrane protein	1.5368230578
+UniRef50_UPI0003B5B654: membrane protein|unclassified	1.5368230578
+UniRef50_W6LTU7	1.5367813223
+UniRef50_W6LTU7|unclassified	1.5367813223
+UniRef50_C1HGQ9	1.5367267168
+UniRef50_C1HGQ9|unclassified	1.5367267168
+UniRef50_W1VWR0	1.5366424989
+UniRef50_W1VWR0|unclassified	1.5366424989
+UniRef50_W4L1M8: Transposase	1.5366063175
+UniRef50_W4L1M8: Transposase|unclassified	1.5366063175
+UniRef50_W1D3Y1: Cell volume regulation protein A	1.5365075718
+UniRef50_W1D3Y1: Cell volume regulation protein A|unclassified	1.5365075718
+UniRef50_W7W322	1.5365057325
+UniRef50_W7W322|unclassified	1.5365057325
+UniRef50_S4X5W3	1.5364533580
+UniRef50_S4X5W3|unclassified	1.5364533580
+UniRef50_UPI00035F8CE7: hypothetical protein	1.5363624062
+UniRef50_UPI00035F8CE7: hypothetical protein|unclassified	1.5363624062
+UniRef50_UPI0003656F04: hypothetical protein	1.5361086174
+UniRef50_UPI0003656F04: hypothetical protein|unclassified	1.5361086174
+UniRef50_D4L1E0: ABC-type Fe3+-siderophore transport system, permease component	1.5360983103
+UniRef50_D4L1E0: ABC-type Fe3+-siderophore transport system, permease component|g__Clostridium.s__Clostridium_beijerinckii	1.5360983103
+UniRef50_I1B7Q6	1.5360983103
+UniRef50_I1B7Q6|g__Escherichia.s__Escherichia_coli	1.5360983103
+UniRef50_M9VMX1	1.5360983103
+UniRef50_M9VMX1|g__Propionibacterium.s__Propionibacterium_acnes	1.5360983103
+UniRef50_Q83FR2: Hexulose-6-phosphate synthase	1.5360983103
+UniRef50_Q83FR2: Hexulose-6-phosphate synthase|g__Propionibacterium.s__Propionibacterium_acnes	1.5360983103
+UniRef50_U3AB85: ABC transporter, ATP-binding protein	1.5360983103
+UniRef50_U3AB85: ABC transporter, ATP-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5360983103
+UniRef50_A0A024E0Y0	1.5360735651
+UniRef50_A0A024E0Y0|unclassified	1.5360735651
+UniRef50_UPI0003613834: hypothetical protein	1.5360431041
+UniRef50_UPI0003613834: hypothetical protein|unclassified	1.5360431041
+UniRef50_N9R8V9	1.5360117371
+UniRef50_N9R8V9|unclassified	1.5360117371
+UniRef50_A0A038G8N7: ATP-dependent RNA helicase, DEAD box family protein	1.5358457318
+UniRef50_A0A038G8N7: ATP-dependent RNA helicase, DEAD box family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5358457318
+UniRef50_J1ZYH4	1.5355958000
+UniRef50_J1ZYH4|unclassified	1.5355958000
+UniRef50_UPI000248503D: Mn2+ ABC transporter periplasmic binding protein	1.5354170765
+UniRef50_UPI000248503D: Mn2+ ABC transporter periplasmic binding protein|unclassified	1.5354170765
+UniRef50_UPI0003C16777	1.5354015858
+UniRef50_UPI0003C16777|unclassified	1.5354015858
+UniRef50_Q9I783	1.5353571060
+UniRef50_Q9I783|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5353571060
+UniRef50_I7G9L2: Macaca fascicularis brain cDNA, clone: QorA-12251	1.5351405239
+UniRef50_I7G9L2: Macaca fascicularis brain cDNA, clone: QorA-12251|unclassified	1.5351405239
+UniRef50_Q4ZX12: Exodeoxyribonuclease 7 large subunit	1.5349194167
+UniRef50_Q4ZX12: Exodeoxyribonuclease 7 large subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5349194167
+UniRef50_D0WAX6	1.5349029668
+UniRef50_D0WAX6|unclassified	1.5349029668
+UniRef50_R4ZTL3: Amino acid permease	1.5347252177
+UniRef50_R4ZTL3: Amino acid permease|g__Streptococcus.s__Streptococcus_agalactiae	1.5347252177
+UniRef50_Q6FFD2: Sensor protein	1.5344250409
+UniRef50_Q6FFD2: Sensor protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.5344250409
+UniRef50_B3DTC2: Phosphoglucosamine mutase	1.5339773453
+UniRef50_B3DTC2: Phosphoglucosamine mutase|g__Propionibacterium.s__Propionibacterium_acnes	1.4892561204
+UniRef50_B3DTC2: Phosphoglucosamine mutase|unclassified	0.0447212249
+UniRef50_G2JE35: Lipid A core-O-antigen ligase	1.5338820539
+UniRef50_G2JE35: Lipid A core-O-antigen ligase|g__Acinetobacter.s__Acinetobacter_baumannii	1.5338820539
+UniRef50_T1AFM8	1.5338639964
+UniRef50_T1AFM8|unclassified	1.5338639964
+UniRef50_D7GF04: Methyltransferase	1.5337423313
+UniRef50_D7GF04: Methyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	1.5337423313
+UniRef50_E4GGL7: HTH-type pyridoxine biosynthesis transcriptional regulator PdxR family protein	1.5337423313
+UniRef50_E4GGL7: HTH-type pyridoxine biosynthesis transcriptional regulator PdxR family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.5337423313
+UniRef50_E8SMG2: PetC	1.5337423313
+UniRef50_E8SMG2: PetC|g__Neisseria.s__Neisseria_meningitidis	1.5337423313
+UniRef50_I0ETC3	1.5337423313
+UniRef50_I0ETC3|g__Helicobacter.s__Helicobacter_pylori	1.5337423313
+UniRef50_Q0BTM6: 3-oxoacyl-[acyl-carrier protein] reductase	1.5337423313
+UniRef50_Q0BTM6: 3-oxoacyl-[acyl-carrier protein] reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5337423313
+UniRef50_Q6A651: Putative pyruvate, phosphate dikinase regulatory protein	1.5337423313
+UniRef50_Q6A651: Putative pyruvate, phosphate dikinase regulatory protein|g__Propionibacterium.s__Propionibacterium_acnes	1.5337423313
+UniRef50_Q9Z515: Sporulation transcription regulator WhiA	1.5337423313
+UniRef50_Q9Z515: Sporulation transcription regulator WhiA|g__Propionibacterium.s__Propionibacterium_acnes	1.5337423313
+UniRef50_UPI0003ADCA7F: PREDICTED: basic proline-rich protein-like	1.5337423313
+UniRef50_UPI0003ADCA7F: PREDICTED: basic proline-rich protein-like|unclassified	1.5337423313
+UniRef50_UPI0003B617A2: hypothetical protein	1.5337423313
+UniRef50_UPI0003B617A2: hypothetical protein|unclassified	1.5337423313
+UniRef50_UPI00046FD9F8: hypothetical protein	1.5337423313
+UniRef50_UPI00046FD9F8: hypothetical protein|unclassified	1.5337423313
+UniRef50_UPI0004778203: ABC transporter	1.5336391700
+UniRef50_UPI0004778203: ABC transporter|unclassified	1.5336391700
+UniRef50_UPI00046D205E: hypothetical protein	1.5333407544
+UniRef50_UPI00046D205E: hypothetical protein|unclassified	1.5333407544
+UniRef50_UPI000464F389: fimbrial protein	1.5326156127
+UniRef50_UPI000464F389: fimbrial protein|unclassified	1.5326156127
+UniRef50_A0A023YBQ0	1.5325697728
+UniRef50_A0A023YBQ0|unclassified	1.5325697728
+UniRef50_F3SWD4: Putative fibrinogen-binding protein	1.5325569332
+UniRef50_F3SWD4: Putative fibrinogen-binding protein|g__Staphylococcus.s__Staphylococcus_epidermidis	0.8960573477
+UniRef50_F3SWD4: Putative fibrinogen-binding protein|unclassified	0.6364995856
+UniRef50_F8JM98	1.5324695936
+UniRef50_F8JM98|unclassified	1.5324695936
+UniRef50_D0W9Q2: Translation initiation factor IF-2	1.5321335295
+UniRef50_D0W9Q2: Translation initiation factor IF-2|g__Neisseria.s__Neisseria_meningitidis	1.5321335295
+UniRef50_Q4KKS1: CHASE domain/sensory box histidine kinase	1.5318577876
+UniRef50_Q4KKS1: CHASE domain/sensory box histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5318577876
+UniRef50_X1FD15: Marine sediment metagenome DNA, contig: S03H2_L08906 (Fragment)	1.5318105475
+UniRef50_X1FD15: Marine sediment metagenome DNA, contig: S03H2_L08906 (Fragment)|unclassified	1.5318105475
+UniRef50_W9TM84: Rod shape-determining protein MreC	1.5316884219
+UniRef50_W9TM84: Rod shape-determining protein MreC|unclassified	1.5316884219
+UniRef50_F8JV08	1.5314760453
+UniRef50_F8JV08|unclassified	1.5314760453
+UniRef50_I7EKZ4	1.5313935681
+UniRef50_I7EKZ4|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.5313935681
+UniRef50_Q1H2B5: Dihydroxyacetone kinase DhaK subunit	1.5313935681
+UniRef50_Q1H2B5: Dihydroxyacetone kinase DhaK subunit|g__Propionibacterium.s__Propionibacterium_acnes	1.5313935681
+UniRef50_Q8PMG5: Phospholipase	1.5313935681
+UniRef50_Q8PMG5: Phospholipase|g__Acinetobacter.s__Acinetobacter_baumannii	1.5313935681
+UniRef50_R4ZWS4: ABC transporter ATP-binding protein YvcR	1.5313935681
+UniRef50_R4ZWS4: ABC transporter ATP-binding protein YvcR|g__Streptococcus.s__Streptococcus_agalactiae	1.5313935681
+UniRef50_UPI00037263C4: transposase, partial	1.5313642291
+UniRef50_UPI00037263C4: transposase, partial|unclassified	1.5313642291
+UniRef50_K1EXL1: Phospholipase C, phosphocholine-specific	1.5310907827
+UniRef50_K1EXL1: Phospholipase C, phosphocholine-specific|g__Acinetobacter.s__Acinetobacter_baumannii	1.5310907827
+UniRef50_A6M258: Sensor histidine kinase-like protein	1.5308095188
+UniRef50_A6M258: Sensor histidine kinase-like protein|g__Clostridium.s__Clostridium_beijerinckii	1.5308095188
+UniRef50_UPI0003503D61: PREDICTED: basic proline-rich protein-like	1.5307459081
+UniRef50_UPI0003503D61: PREDICTED: basic proline-rich protein-like|unclassified	1.5307459081
+UniRef50_UPI0004785843: AraC family transcriptional regulator	1.5303877215
+UniRef50_UPI0004785843: AraC family transcriptional regulator|unclassified	1.5303877215
+UniRef50_B7UWX0	1.5300768964
+UniRef50_B7UWX0|unclassified	1.5300768964
+UniRef50_A3NZS2	1.5298051345
+UniRef50_A3NZS2|unclassified	1.5298051345
+UniRef50_UPI0000EBCE17	1.5296240029
+UniRef50_UPI0000EBCE17|unclassified	1.5296240029
+UniRef50_UPI000262CE8B: multidrug ABC transporter permease	1.5296060039
+UniRef50_UPI000262CE8B: multidrug ABC transporter permease|unclassified	1.5296060039
+UniRef50_B6I993	1.5292872076
+UniRef50_B6I993|unclassified	1.5292872076
+UniRef50_Q1RFU3	1.5290998173
+UniRef50_Q1RFU3|unclassified	1.5290998173
+UniRef50_G7M887: Histidine kinase	1.5290957818
+UniRef50_G7M887: Histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	1.5290957818
+UniRef50_A0A023K2K8: Oxidoreductase	1.5290519878
+UniRef50_A0A023K2K8: Oxidoreductase|g__Escherichia.s__Escherichia_coli	1.5290519878
+UniRef50_A0A023RSS6: rRNA methyltransferase	1.5290519878
+UniRef50_A0A023RSS6: rRNA methyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.5290519878
+UniRef50_A6LWF9: NLP/P60 protein	1.5290519878
+UniRef50_A6LWF9: NLP/P60 protein|g__Clostridium.s__Clostridium_beijerinckii	1.5290519878
+UniRef50_B6JMQ6: tRNA (cmo5U34)-methyltransferase	1.5290519878
+UniRef50_B6JMQ6: tRNA (cmo5U34)-methyltransferase|g__Helicobacter.s__Helicobacter_pylori	1.5290519878
+UniRef50_F0KI43: Transcriptional regulator, LysR family	1.5290519878
+UniRef50_F0KI43: Transcriptional regulator, LysR family|g__Acinetobacter.s__Acinetobacter_baumannii	1.5290519878
+UniRef50_F8EJQ6: 3-oxoacyl-(Acyl-carrier-protein) reductase	1.5290519878
+UniRef50_F8EJQ6: 3-oxoacyl-(Acyl-carrier-protein) reductase|g__Propionibacterium.s__Propionibacterium_acnes	1.5290519878
+UniRef50_G7U4F0: Transcriptional regulator, LuxR family protein	1.5290519878
+UniRef50_G7U4F0: Transcriptional regulator, LuxR family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.5290519878
+UniRef50_J2X3N4	1.5290519878
+UniRef50_J2X3N4|unclassified	1.5290519878
+UniRef50_J9YUB2	1.5290519878
+UniRef50_J9YUB2|g__Streptococcus.s__Streptococcus_agalactiae	1.5290519878
+UniRef50_K7RJS3: Transcriptional regulator, LacI family	1.5290519878
+UniRef50_K7RJS3: Transcriptional regulator, LacI family|g__Propionibacterium.s__Propionibacterium_acnes	1.5290519878
+UniRef50_L0ZBR4: Autoinducer 2 kinase LsrK domain protein	1.5290519878
+UniRef50_L0ZBR4: Autoinducer 2 kinase LsrK domain protein|g__Escherichia.s__Escherichia_coli	1.5290519878
+UniRef50_M1MNN2	1.5290519878
+UniRef50_M1MNN2|g__Clostridium.s__Clostridium_beijerinckii	1.5290519878
+UniRef50_Q9RS18	1.5290519878
+UniRef50_Q9RS18|g__Deinococcus.s__Deinococcus_radiodurans	1.5290519878
+UniRef50_UPI000455D42C: hypothetical protein CONPUDRAFT_157987	1.5290519878
+UniRef50_UPI000455D42C: hypothetical protein CONPUDRAFT_157987|unclassified	1.5290519878
+UniRef50_X5K025	1.5290519878
+UniRef50_X5K025|g__Streptococcus.s__Streptococcus_agalactiae	1.5290519878
+UniRef50_A7B8C4	1.5287715274
+UniRef50_A7B8C4|unclassified	1.5287715274
+UniRef50_W0NQ86	1.5287612360
+UniRef50_W0NQ86|unclassified	1.5287612360
+UniRef50_F3ZAY0: Putative transcriptional regulator	1.5279925445
+UniRef50_F3ZAY0: Putative transcriptional regulator|unclassified	1.5279925445
+UniRef50_R6P752	1.5276654236
+UniRef50_R6P752|unclassified	1.5276654236
+UniRef50_UPI000473CF45: magnesium transporter	1.5275720712
+UniRef50_UPI000473CF45: magnesium transporter|unclassified	1.5275720712
+UniRef50_K0SCQ6	1.5274580892
+UniRef50_K0SCQ6|unclassified	1.5274580892
+UniRef50_UPI0003B566EA: glycine/betaine ABC transporter ATP-binding protein	1.5272275593
+UniRef50_UPI0003B566EA: glycine/betaine ABC transporter ATP-binding protein|unclassified	1.5272275593
+UniRef50_Q9I351: GTP cyclohydrolase 1 2	1.5270189462
+UniRef50_Q9I351: GTP cyclohydrolase 1 2|unclassified	1.5270189462
+UniRef50_A6LQP1	1.5267175573
+UniRef50_A6LQP1|g__Clostridium.s__Clostridium_beijerinckii	1.5267175573
+UniRef50_C5X0U9	1.5267175573
+UniRef50_C5X0U9|unclassified	1.5267175573
+UniRef50_P45031	1.5267175573
+UniRef50_P45031|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5267175573
+UniRef50_Q3K3Q5: Sensor histidine kinase	1.5267175573
+UniRef50_Q3K3Q5: Sensor histidine kinase|g__Streptococcus.s__Streptococcus_agalactiae	1.5267175573
+UniRef50_E3F454	1.5265438463
+UniRef50_E3F454|unclassified	1.5265438463
+UniRef50_S6GDL3	1.5265147140
+UniRef50_S6GDL3|unclassified	1.5265147140
+UniRef50_Y2D9R9: Chaperone ClpB	1.5264866749
+UniRef50_Y2D9R9: Chaperone ClpB|unclassified	1.5264866749
+UniRef50_UPI0004726B91: succinylglutamate desuccinylase	1.5259444675
+UniRef50_UPI0004726B91: succinylglutamate desuccinylase|unclassified	1.5259444675
+UniRef50_Z2DRP8	1.5258739789
+UniRef50_Z2DRP8|unclassified	1.5258739789
+UniRef50_UPI00046465E7: hypothetical protein	1.5258581945
+UniRef50_UPI00046465E7: hypothetical protein|unclassified	1.5258581945
+UniRef50_UPI0000397A57: COG0494: NTP pyrophosphohydrolases including oxidative damage repair enzymes	1.5257714036
+UniRef50_UPI0000397A57: COG0494: NTP pyrophosphohydrolases including oxidative damage repair enzymes|unclassified	1.5257714036
+UniRef50_Q9HZQ1	1.5256060375
+UniRef50_Q9HZQ1|unclassified	1.5256060375
+UniRef50_J2HK46	1.5254387815
+UniRef50_J2HK46|unclassified	1.5254387815
+UniRef50_B0RNQ5: Nicotinamide phosphoribosyltransferase	1.5251796890
+UniRef50_B0RNQ5: Nicotinamide phosphoribosyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	1.5251796890
+UniRef50_G2JJD3: Tartrate ABC transporter permease	1.5250413177
+UniRef50_G2JJD3: Tartrate ABC transporter permease|g__Acinetobacter.s__Acinetobacter_baumannii	1.5250413177
+UniRef50_C3M9I7	1.5249116671
+UniRef50_C3M9I7|unclassified	1.5249116671
+UniRef50_Q6F916	1.5249005095
+UniRef50_Q6F916|g__Acinetobacter.s__Acinetobacter_baumannii	1.5249005095
+UniRef50_K0S555	1.5247713063
+UniRef50_K0S555|unclassified	1.5247713063
+UniRef50_D1WIU1	1.5246891916
+UniRef50_D1WIU1|unclassified	1.5246891916
+UniRef50_D7GFP5: Iron-sulfur protein	1.5246543737
+UniRef50_D7GFP5: Iron-sulfur protein|g__Propionibacterium.s__Propionibacterium_acnes	1.5246543737
+UniRef50_H8FVT2: CRISPR-associated helicase Cas3	1.5245839369
+UniRef50_H8FVT2: CRISPR-associated helicase Cas3|unclassified	1.5245839369
+UniRef50_Q6ZBE2	1.5244829842
+UniRef50_Q6ZBE2|unclassified	1.5244829842
+UniRef50_UPI00016A7F76: branched-chain amino acid ABC transporter, ATP-binding protein, putative, partial	1.5244218754
+UniRef50_UPI00016A7F76: branched-chain amino acid ABC transporter, ATP-binding protein, putative, partial|unclassified	1.5244218754
+UniRef50_B0VUU2	1.5244067142
+UniRef50_B0VUU2|g__Acinetobacter.s__Acinetobacter_baumannii	1.5244067142
+UniRef50_A0EVL6: Conjugal transfer/entry exclusion protein	1.5243902439
+UniRef50_A0EVL6: Conjugal transfer/entry exclusion protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.5243902439
+UniRef50_K0STI8	1.5240061885
+UniRef50_K0STI8|unclassified	1.5240061885
+UniRef50_G2P974	1.5237975443
+UniRef50_G2P974|unclassified	1.5237975443
+UniRef50_UPI0002491A6A: glutamyl-tRNA amidotransferase subunit C	1.5236236914
+UniRef50_UPI0002491A6A: glutamyl-tRNA amidotransferase subunit C|unclassified	1.5236236914
+UniRef50_F2A963	1.5232327802
+UniRef50_F2A963|unclassified	1.5232327802
+UniRef50_G5FKI8	1.5231246029
+UniRef50_G5FKI8|unclassified	1.5231246029
+UniRef50_UPI000472C257: beta-lactamase	1.5230580697
+UniRef50_UPI000472C257: beta-lactamase|unclassified	1.5230580697
+UniRef50_V9TIQ4: Glycosyltransferase	1.5230243471
+UniRef50_V9TIQ4: Glycosyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5230243471
+UniRef50_Q20719: Probable NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial	1.5229122982
+UniRef50_Q20719: Probable NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial|unclassified	1.5229122982
+UniRef50_UPI0003823C05: hypothetical protein	1.5225004491
+UniRef50_UPI0003823C05: hypothetical protein|unclassified	1.5225004491
+UniRef50_UPI0001B469EF: DNA recombination protein RecA, partial	1.5224126161
+UniRef50_UPI0001B469EF: DNA recombination protein RecA, partial|unclassified	1.5224126161
+UniRef50_P37006	1.5223663481
+UniRef50_P37006|unclassified	1.5223663481
+UniRef50_B7GYT0: Ribonuclease 3	1.5222936972
+UniRef50_B7GYT0: Ribonuclease 3|g__Acinetobacter.s__Acinetobacter_baumannii	1.4727540501
+UniRef50_B7GYT0: Ribonuclease 3|unclassified	0.0495396471
+UniRef50_R7H8U6: Adenosylmethionine-8-amino-7-oxononanoate aminotransferase	1.5221264361
+UniRef50_R7H8U6: Adenosylmethionine-8-amino-7-oxononanoate aminotransferase|g__Clostridium.s__Clostridium_beijerinckii	1.5221264361
+UniRef50_V5PI53: Glyoxalase family protein	1.5221260886
+UniRef50_V5PI53: Glyoxalase family protein|unclassified	1.5221260886
+UniRef50_W1DKM0	1.5221199541
+UniRef50_W1DKM0|unclassified	1.5221199541
+UniRef50_A6LQD4: Endodeoxyribonuclease RusA	1.5220700152
+UniRef50_A6LQD4: Endodeoxyribonuclease RusA|g__Clostridium.s__Clostridium_beijerinckii	1.5220700152
+UniRef50_F0QJX2	1.5220700152
+UniRef50_F0QJX2|g__Acinetobacter.s__Acinetobacter_baumannii	1.5220700152
+UniRef50_G7M542: Two component transcriptional regulator, winged helix family	1.5220700152
+UniRef50_G7M542: Two component transcriptional regulator, winged helix family|g__Clostridium.s__Clostridium_beijerinckii	1.5220700152
+UniRef50_J2YH36: 4-hydroxyphenylacetate degradation isomerase/decarboxylase domain protein	1.5220700152
+UniRef50_J2YH36: 4-hydroxyphenylacetate degradation isomerase/decarboxylase domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5220700152
+UniRef50_M1MRW4: Haloacid dehalogenase superfamily enzyme, subfamily IA	1.5220700152
+UniRef50_M1MRW4: Haloacid dehalogenase superfamily enzyme, subfamily IA|g__Clostridium.s__Clostridium_beijerinckii	1.5220700152
+UniRef50_Q5F5Y6: Lipid-A-disaccharide synthase	1.5220700152
+UniRef50_Q5F5Y6: Lipid-A-disaccharide synthase|g__Neisseria.s__Neisseria_meningitidis	1.5220700152
+UniRef50_Q5XA41: Transcription regulator, crp family	1.5220700152
+UniRef50_Q5XA41: Transcription regulator, crp family|g__Streptococcus.s__Streptococcus_agalactiae	1.5220700152
+UniRef50_Q9RW97	1.5220700152
+UniRef50_Q9RW97|g__Deinococcus.s__Deinococcus_radiodurans	1.5220700152
+UniRef50_UPI0004270B42: hypothetical protein	1.5218017906
+UniRef50_UPI0004270B42: hypothetical protein|unclassified	1.5218017906
+UniRef50_Q0B341	1.5217735382
+UniRef50_Q0B341|unclassified	1.5217735382
+UniRef50_UPI00037F2711: hypothetical protein, partial	1.5217105697
+UniRef50_UPI00037F2711: hypothetical protein, partial|unclassified	1.5217105697
+UniRef50_UPI00041A51D0: hypothetical protein	1.5211836860
+UniRef50_UPI00041A51D0: hypothetical protein|unclassified	1.5211836860
+UniRef50_B6IPZ1	1.5211715935
+UniRef50_B6IPZ1|unclassified	1.5211715935
+UniRef50_F9ZUX9: Succinate dehydrogenase subunit A-like protein	1.5209392190
+UniRef50_F9ZUX9: Succinate dehydrogenase subunit A-like protein|unclassified	1.5209392190
+UniRef50_P55980: Cytotoxicity-associated immunodominant antigen	1.5205984428
+UniRef50_P55980: Cytotoxicity-associated immunodominant antigen|g__Helicobacter.s__Helicobacter_pylori	1.5205984428
+UniRef50_F0XYT4	1.5204846617
+UniRef50_F0XYT4|unclassified	1.5204846617
+UniRef50_Q3JSI8: Ribose import ATP-binding protein RbsA 1	1.5203796775
+UniRef50_Q3JSI8: Ribose import ATP-binding protein RbsA 1|unclassified	1.5203796775
+UniRef50_V8F2Q2	1.5203399050
+UniRef50_V8F2Q2|unclassified	1.5203399050
+UniRef50_H1SB32	1.5199010620
+UniRef50_H1SB32|unclassified	1.5199010620
+UniRef50_A6LY73: Accessory gene regulator B	1.5197568389
+UniRef50_A6LY73: Accessory gene regulator B|g__Clostridium.s__Clostridium_beijerinckii	1.5197568389
+UniRef50_G2P8N7: Antigen penicillin-binding protein	1.5197568389
+UniRef50_G2P8N7: Antigen penicillin-binding protein|unclassified	1.5197568389
+UniRef50_Q0D831: Os07g0187900 protein (Fragment)	1.5194199112
+UniRef50_Q0D831: Os07g0187900 protein (Fragment)|unclassified	1.5194199112
+UniRef50_UPI00047C4DA7: hypothetical protein	1.5193552511
+UniRef50_UPI00047C4DA7: hypothetical protein|unclassified	1.5193552511
+UniRef50_F5YEL5: Nitrogenase	1.5191851213
+UniRef50_F5YEL5: Nitrogenase|g__Clostridium.s__Clostridium_beijerinckii	1.5191851213
+UniRef50_UPI0003795D58: hypothetical protein	1.5187871791
+UniRef50_UPI0003795D58: hypothetical protein|unclassified	1.5187871791
+UniRef50_G3ESW1: Beta lactamse cmy-2 (Fragment)	1.5183367652
+UniRef50_G3ESW1: Beta lactamse cmy-2 (Fragment)|unclassified	1.5183367652
+UniRef50_D3V6J7	1.5180039113
+UniRef50_D3V6J7|unclassified	1.5180039113
+UniRef50_F2R736: Putative secreted protein	1.5179450262
+UniRef50_F2R736: Putative secreted protein|unclassified	1.5179450262
+UniRef50_G1RN76	1.5178039681
+UniRef50_G1RN76|unclassified	1.5178039681
+UniRef50_E0RBR7: Periplasmic [Fe] hydrogenase large subunit (Fe hydrogenlyase)	1.5174725217
+UniRef50_E0RBR7: Periplasmic [Fe] hydrogenase large subunit (Fe hydrogenlyase)|g__Clostridium.s__Clostridium_beijerinckii	1.5174725217
+UniRef50_UPI000466DA55: hypothetical protein	1.5174604670
+UniRef50_UPI000466DA55: hypothetical protein|unclassified	1.5174604670
+UniRef50_A3L8Z6	1.5174506829
+UniRef50_A3L8Z6|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5174506829
+UniRef50_G0HE81: Alcohol dehydrogenase	1.5174506829
+UniRef50_G0HE81: Alcohol dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	1.5174506829
+UniRef50_I3UZP7	1.5174506829
+UniRef50_I3UZP7|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5174506829
+UniRef50_Q9RXP2	1.5174506829
+UniRef50_Q9RXP2|g__Deinococcus.s__Deinococcus_radiodurans	1.5174506829
+UniRef50_U3TXZ2: Endonuclease III	1.5174506829
+UniRef50_U3TXZ2: Endonuclease III|g__Escherichia.s__Escherichia_coli	1.5174506829
+UniRef50_V8EN35: Pyrroloquinoline quinone biosynthesis protein PqqE	1.5174506829
+UniRef50_V8EN35: Pyrroloquinoline quinone biosynthesis protein PqqE|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5174506829
+UniRef50_P21864: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase (Fragment)	1.5172205489
+UniRef50_P21864: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase (Fragment)|unclassified	1.5172205489
+UniRef50_B0SW92	1.5170485884
+UniRef50_B0SW92|unclassified	1.5170485884
+UniRef50_W1MCV7	1.5170003123
+UniRef50_W1MCV7|unclassified	1.5170003123
+UniRef50_G1E697: ABC transporter permease component (Fragment)	1.5169600867
+UniRef50_G1E697: ABC transporter permease component (Fragment)|unclassified	1.5169600867
+UniRef50_R4YWZ2	1.5166262339
+UniRef50_R4YWZ2|unclassified	1.5166262339
+UniRef50_K1E414	1.5163805090
+UniRef50_K1E414|unclassified	1.5163805090
+UniRef50_B0VLA1	1.5162793262
+UniRef50_B0VLA1|g__Acinetobacter.s__Acinetobacter_baumannii	1.5162793262
+UniRef50_R4QCF3: Membrane protein	1.5162052901
+UniRef50_R4QCF3: Membrane protein|g__Helicobacter.s__Helicobacter_pylori	1.5162052901
+UniRef50_E7C340	1.5160809502
+UniRef50_E7C340|unclassified	1.5160809502
+UniRef50_M9RFZ2	1.5160572635
+UniRef50_M9RFZ2|unclassified	1.5160572635
+UniRef50_D2SAY9: ATPase involved in chromosome partitioning-like protein	1.5159625925
+UniRef50_D2SAY9: ATPase involved in chromosome partitioning-like protein|unclassified	1.5159625925
+UniRef50_K2DSX4	1.5159038780
+UniRef50_K2DSX4|unclassified	1.5159038780
+UniRef50_UPI00037FE990: DNA-binding protein	1.5156152310
+UniRef50_UPI00037FE990: DNA-binding protein|unclassified	1.5156152310
+UniRef50_C1MVJ6: Predicted protein	1.5155117275
+UniRef50_C1MVJ6: Predicted protein|unclassified	1.5155117275
+UniRef50_Q9RYX4: Probable guanine deaminase	1.5154577985
+UniRef50_Q9RYX4: Probable guanine deaminase|g__Deinococcus.s__Deinococcus_radiodurans	1.0000000000
+UniRef50_Q9RYX4: Probable guanine deaminase|unclassified	0.5154577985
+UniRef50_A1KVH9: DNA repair protein RecO	1.5151515152
+UniRef50_A1KVH9: DNA repair protein RecO|g__Neisseria.s__Neisseria_meningitidis	1.5151515152
+UniRef50_A6LZS8: HAD-superfamily hydrolase, subfamily IA, variant 1	1.5151515152
+UniRef50_A6LZS8: HAD-superfamily hydrolase, subfamily IA, variant 1|g__Clostridium.s__Clostridium_beijerinckii	1.5151515152
+UniRef50_F9HR41	1.5151515152
+UniRef50_F9HR41|unclassified	1.5151515152
+UniRef50_G7MD42: PHP domain protein	1.5151515152
+UniRef50_G7MD42: PHP domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.5151515152
+UniRef50_J9YQP7: DNA-binding response regulator	1.5151515152
+UniRef50_J9YQP7: DNA-binding response regulator|g__Streptococcus.s__Streptococcus_agalactiae	1.5151515152
+UniRef50_J9YRD9: Endopeptidase O, putative	1.5151515152
+UniRef50_J9YRD9: Endopeptidase O, putative|g__Streptococcus.s__Streptococcus_agalactiae	1.5151515152
+UniRef50_N2JRT8: ABC transporter transmembrane region 2 family protein	1.5151515152
+UniRef50_N2JRT8: ABC transporter transmembrane region 2 family protein|g__Escherichia.s__Escherichia_coli	1.5151515152
+UniRef50_Q2T4E0: DNA-binding response regulator	1.5151515152
+UniRef50_Q2T4E0: DNA-binding response regulator|g__Acinetobacter.s__Acinetobacter_baumannii	1.5151515152
+UniRef50_Q594Q7: PvpA (Fragment)	1.5151515152
+UniRef50_Q594Q7: PvpA (Fragment)|unclassified	1.5151515152
+UniRef50_Q8DWZ8: Glycosyl transferase, family 8	1.5151515152
+UniRef50_Q8DWZ8: Glycosyl transferase, family 8|g__Streptococcus.s__Streptococcus_agalactiae	1.5151515152
+UniRef50_Q9RVJ3: Branched-chain amino acid ABC transporter, ATP-binding protein	1.5151515152
+UniRef50_Q9RVJ3: Branched-chain amino acid ABC transporter, ATP-binding protein|g__Deinococcus.s__Deinococcus_radiodurans	1.5151515152
+UniRef50_U5MT37	1.5151515152
+UniRef50_U5MT37|g__Clostridium.s__Clostridium_beijerinckii	1.5151515152
+UniRef50_W0GJH7	1.5151515152
+UniRef50_W0GJH7|g__Streptococcus.s__Streptococcus_agalactiae	1.5151515152
+UniRef50_UPI0003B3DECF: hypothetical protein	1.5151515152
+UniRef50_UPI0003B3DECF: hypothetical protein|unclassified	1.5151515152
+UniRef50_Q6QF51: Fumarate reductase subunit D (Fragment)	1.5150699124
+UniRef50_Q6QF51: Fumarate reductase subunit D (Fragment)|unclassified	1.5150699124
+UniRef50_A3SLT2: Glutamate dehydrogenase	1.5150042729
+UniRef50_A3SLT2: Glutamate dehydrogenase|unclassified	1.5150042729
+UniRef50_UPI000363754F: hypothetical protein	1.5147126501
+UniRef50_UPI000363754F: hypothetical protein|unclassified	1.5147126501
+UniRef50_UPI000362123D: hypothetical protein	1.5146914258
+UniRef50_UPI000362123D: hypothetical protein|unclassified	1.5146914258
+UniRef50_Q4MN04	1.5146477781
+UniRef50_Q4MN04|unclassified	1.5146477781
+UniRef50_B3VUJ3	1.5146160936
+UniRef50_B3VUJ3|unclassified	1.5146160936
+UniRef50_F3GAC2	1.5143570277
+UniRef50_F3GAC2|unclassified	1.5143570277
+UniRef50_A3X2R1	1.5140761500
+UniRef50_A3X2R1|unclassified	1.5140761500
+UniRef50_B4W755	1.5140244145
+UniRef50_B4W755|unclassified	1.5140244145
+UniRef50_Q9HYB8: Electron transport complex subunit C	1.5140075665
+UniRef50_Q9HYB8: Electron transport complex subunit C|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5140075665
+UniRef50_UPI0001B42901: hypothetical protein	1.5136557501
+UniRef50_UPI0001B42901: hypothetical protein|unclassified	1.5136557501
+UniRef50_Q9RXU7: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO	1.5135590260
+UniRef50_Q9RXU7: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|g__Deinococcus.s__Deinococcus_radiodurans	1.4116125806
+UniRef50_Q9RXU7: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|unclassified	0.1019464454
+UniRef50_F2FNL1	1.5133915350
+UniRef50_F2FNL1|unclassified	1.5133915350
+UniRef50_V8PQC8	1.5132459272
+UniRef50_V8PQC8|unclassified	1.5132459272
+UniRef50_E3Z0Y0: Ion transport protein, putative (Fragment)	1.5131617940
+UniRef50_E3Z0Y0: Ion transport protein, putative (Fragment)|unclassified	1.5131617940
+UniRef50_W9UW01	1.5130781104
+UniRef50_W9UW01|unclassified	1.5130781104
+UniRef50_Q1BSH6: FAD dependent oxidoreductase	1.5129077081
+UniRef50_Q1BSH6: FAD dependent oxidoreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5129077081
+UniRef50_A6LTQ4: HAD-superfamily hydrolase, subfamily IA, variant 3	1.5128593041
+UniRef50_A6LTQ4: HAD-superfamily hydrolase, subfamily IA, variant 3|g__Clostridium.s__Clostridium_beijerinckii	1.5128593041
+UniRef50_T3G6D1: Bacterial regulatory s, gntR family protein	1.5128593041
+UniRef50_T3G6D1: Bacterial regulatory s, gntR family protein|g__Clostridium.s__Clostridium_beijerinckii	1.5128593041
+UniRef50_W5CPX0	1.5128593041
+UniRef50_W5CPX0|unclassified	1.5128593041
+UniRef50_UPI0001FFDAEB: transcriptional regulator	1.5127809414
+UniRef50_UPI0001FFDAEB: transcriptional regulator|unclassified	1.5127809414
+UniRef50_UPI0003499649: hypothetical protein	1.5126587939
+UniRef50_UPI0003499649: hypothetical protein|unclassified	1.5126587939
+UniRef50_Q9RWR5: DNA primase	1.5126458449
+UniRef50_Q9RWR5: DNA primase|g__Deinococcus.s__Deinococcus_radiodurans	1.5126458449
+UniRef50_K0F4G6: Gyrase subunit B (Fragment)	1.5125526886
+UniRef50_K0F4G6: Gyrase subunit B (Fragment)|unclassified	1.5125526886
+UniRef50_Q7F0L8	1.5123283713
+UniRef50_Q7F0L8|unclassified	1.5123283713
+UniRef50_U1T6A5	1.5121132959
+UniRef50_U1T6A5|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5121132959
+UniRef50_UPI000362980C: tail fiber protein, partial	1.5120152046
+UniRef50_UPI000362980C: tail fiber protein, partial|unclassified	1.5120152046
+UniRef50_UPI00047CF4D9: hypothetical protein	1.5117549842
+UniRef50_UPI00047CF4D9: hypothetical protein|unclassified	1.5117549842
+UniRef50_UPI000380A70F: hypothetical protein	1.5114749450
+UniRef50_UPI000380A70F: hypothetical protein|unclassified	1.5114749450
+UniRef50_V2AFN3: Ferritin	1.5114529257
+UniRef50_V2AFN3: Ferritin|unclassified	1.5114529257
+UniRef50_M4MR97: Ribonuclease J	1.5114007650
+UniRef50_M4MR97: Ribonuclease J|unclassified	1.5114007650
+UniRef50_E1SA68: LPS-assembly protein LptD	1.5112420955
+UniRef50_E1SA68: LPS-assembly protein LptD|g__Helicobacter.s__Helicobacter_pylori	1.5112420955
+UniRef50_UPI0003627506: Cro/Cl family transcriptional regulator	1.5111925994
+UniRef50_UPI0003627506: Cro/Cl family transcriptional regulator|unclassified	1.5111925994
+UniRef50_F5VNR2: Enterobactin synthase subunit E	1.5106641936
+UniRef50_F5VNR2: Enterobactin synthase subunit E|unclassified	1.5106641936
+UniRef50_A6LUH2: Alanine racemase	1.5105740181
+UniRef50_A6LUH2: Alanine racemase|g__Clostridium.s__Clostridium_beijerinckii	1.5105740181
+UniRef50_F5XF11: Two-component histidine kinase SenX3	1.5105740181
+UniRef50_F5XF11: Two-component histidine kinase SenX3|g__Propionibacterium.s__Propionibacterium_acnes	1.5105740181
+UniRef50_G7U530: ABC transporter, ATP-binding protein	1.5105740181
+UniRef50_G7U530: ABC transporter, ATP-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	1.5105740181
+UniRef50_Q6F806	1.5105740181
+UniRef50_Q6F806|g__Acinetobacter.s__Acinetobacter_baumannii	1.5105740181
+UniRef50_F0L271	1.5104520972
+UniRef50_F0L271|unclassified	1.5104520972
+UniRef50_X2H5V8: Glutamate--cysteine ligase , divergent, of Alpha-and Beta-proteobacteria type	1.5104396525
+UniRef50_X2H5V8: Glutamate--cysteine ligase , divergent, of Alpha-and Beta-proteobacteria type|g__Neisseria.s__Neisseria_meningitidis	1.5104396525
+UniRef50_R6RWM5: Prophage LambdaSa04 DNA polymerase	1.5103514738
+UniRef50_R6RWM5: Prophage LambdaSa04 DNA polymerase|g__Propionibacterium.s__Propionibacterium_acnes	1.5103514738
+UniRef50_A6LS24: Peptidase M56, BlaR1	1.5101693741
+UniRef50_A6LS24: Peptidase M56, BlaR1|g__Clostridium.s__Clostridium_beijerinckii	1.5101693741
+UniRef50_UPI00045603DB: hypothetical protein PFL1_00982	1.5101541178
+UniRef50_UPI00045603DB: hypothetical protein PFL1_00982|unclassified	1.5101541178
+UniRef50_Q1IYR1: NH(3)-dependent NAD(+) synthetase	1.5097144342
+UniRef50_Q1IYR1: NH(3)-dependent NAD(+) synthetase|g__Deinococcus.s__Deinococcus_radiodurans	1.4619883041
+UniRef50_Q1IYR1: NH(3)-dependent NAD(+) synthetase|unclassified	0.0477261301
+UniRef50_Q3AZ12	1.5096014059
+UniRef50_Q3AZ12|unclassified	1.5096014059
+UniRef50_A1WI30: Endoribonuclease L-PSP	1.5094252064
+UniRef50_A1WI30: Endoribonuclease L-PSP|unclassified	1.5094252064
+UniRef50_UPI0003619428: Cro/Cl family transcriptional regulator	1.5090287261
+UniRef50_UPI0003619428: Cro/Cl family transcriptional regulator|unclassified	1.5090287261
+UniRef50_A6LRT2: Resolvase, N-terminal domain	1.5088779520
+UniRef50_A6LRT2: Resolvase, N-terminal domain|g__Clostridium.s__Clostridium_beijerinckii	1.5088779520
+UniRef50_T1AR23	1.5086146242
+UniRef50_T1AR23|unclassified	1.5086146242
+UniRef50_A3MAB3	1.5083026096
+UniRef50_A3MAB3|unclassified	1.5083026096
+UniRef50_A7FAY9	1.5082956259
+UniRef50_A7FAY9|g__Acinetobacter.s__Acinetobacter_baumannii	1.5082956259
+UniRef50_C5C0W1: Ribosome-binding ATPase YchF	1.5082956259
+UniRef50_C5C0W1: Ribosome-binding ATPase YchF|g__Propionibacterium.s__Propionibacterium_acnes	1.5082956259
+UniRef50_G7U4S9	1.5082956259
+UniRef50_G7U4S9|g__Propionibacterium.s__Propionibacterium_acnes	1.5082956259
+UniRef50_U5MW69	1.5082956259
+UniRef50_U5MW69|g__Clostridium.s__Clostridium_beijerinckii	1.5082956259
+UniRef50_V5VGK2: Universal bacterial protein YeaZ	1.5082956259
+UniRef50_V5VGK2: Universal bacterial protein YeaZ|g__Acinetobacter.s__Acinetobacter_baumannii	1.5082956259
+UniRef50_W8WYT5: Staphylolytic protease preproenzyme LasA	1.5082956259
+UniRef50_W8WYT5: Staphylolytic protease preproenzyme LasA|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5082956259
+UniRef50_X0S157: Marine sediment metagenome DNA, contig: S01H1_L07627 (Fragment)	1.5082423907
+UniRef50_X0S157: Marine sediment metagenome DNA, contig: S01H1_L07627 (Fragment)|unclassified	1.5082423907
+UniRef50_D0IUG7: Type III R-M system restriction enzyme	1.5078315747
+UniRef50_D0IUG7: Type III R-M system restriction enzyme|g__Helicobacter.s__Helicobacter_pylori	1.5078315747
+UniRef50_Q46WX7: AMP-dependent synthetase and ligase	1.5077753011
+UniRef50_Q46WX7: AMP-dependent synthetase and ligase|g__Deinococcus.s__Deinococcus_radiodurans	1.5077753011
+UniRef50_A7HS58: Undecaprenyl-diphosphatase	1.5077615718
+UniRef50_A7HS58: Undecaprenyl-diphosphatase|unclassified	1.5077615718
+UniRef50_F0KGI1: DNA-directed DNA polymerase	1.5077273156
+UniRef50_F0KGI1: DNA-directed DNA polymerase|g__Acinetobacter.s__Acinetobacter_baumannii	1.5077273156
+UniRef50_A0A037ZJL2	1.5075333950
+UniRef50_A0A037ZJL2|unclassified	1.5075333950
+UniRef50_W9T200	1.5075185003
+UniRef50_W9T200|unclassified	1.5075185003
+UniRef50_A3JVF7	1.5074911473
+UniRef50_A3JVF7|unclassified	1.5074911473
+UniRef50_I0C2K0: Nitrogen regulation protein NIFR3	1.5073484465
+UniRef50_I0C2K0: Nitrogen regulation protein NIFR3|unclassified	1.5073484465
+UniRef50_G4PUV9: Fused predicted PTS enzymes: Hpr component/enzyme I component/enzyme IIA component	1.5073309828
+UniRef50_G4PUV9: Fused predicted PTS enzymes: Hpr component/enzyme I component/enzyme IIA component|g__Escherichia.s__Escherichia_coli	1.5073309828
+UniRef50_D1DKC6	1.5072502283
+UniRef50_D1DKC6|g__Neisseria.s__Neisseria_meningitidis	1.5072502283
+UniRef50_W1YTI2	1.5068978727
+UniRef50_W1YTI2|unclassified	1.5068978727
+UniRef50_UPI0002492BA5: hypothetical protein	1.5066523789
+UniRef50_UPI0002492BA5: hypothetical protein|unclassified	1.5066523789
+UniRef50_A0A018X9Y7	1.5060891404
+UniRef50_A0A018X9Y7|unclassified	1.5060891404
+UniRef50_R5AXK8	1.5060366848
+UniRef50_R5AXK8|unclassified	1.5060366848
+UniRef50_E4ZAN9: NADH dehydrogenase I chain J	1.5060240964
+UniRef50_E4ZAN9: NADH dehydrogenase I chain J|g__Neisseria.s__Neisseria_meningitidis	1.5060240964
+UniRef50_I4SUQ0	1.5060240964
+UniRef50_I4SUQ0|unclassified	1.5060240964
+UniRef50_K4NAI3	1.5060240964
+UniRef50_K4NAI3|g__Helicobacter.s__Helicobacter_pylori	1.5060240964
+UniRef50_T5ME54: Cysteine and O-acetyl-L-serine efflux system protein	1.5060240964
+UniRef50_T5ME54: Cysteine and O-acetyl-L-serine efflux system protein|g__Escherichia.s__Escherichia_coli	1.5060240964
+UniRef50_W1MRC1	1.5060240964
+UniRef50_W1MRC1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5060240964
+UniRef50_A0A037YWB5	1.5058109923
+UniRef50_A0A037YWB5|unclassified	1.5058109923
+UniRef50_F0YD72	1.5053219615
+UniRef50_F0YD72|unclassified	1.5053219615
+UniRef50_UPI000420B770: porin	1.5052819321
+UniRef50_UPI000420B770: porin|unclassified	1.5052819321
+UniRef50_N6VAB0	1.5047771540
+UniRef50_N6VAB0|unclassified	1.5047771540
+UniRef50_V6UPC5	1.5047126252
+UniRef50_V6UPC5|unclassified	1.5047126252
+UniRef50_K1QDX5	1.5044037775
+UniRef50_K1QDX5|unclassified	1.5044037775
+UniRef50_V7ERL0: RNA polymerase sigma-70 factor	1.5043894671
+UniRef50_V7ERL0: RNA polymerase sigma-70 factor|unclassified	1.5043894671
+UniRef50_UPI0003F6E1DB: 50S ribosomal protein L32	1.5042720928
+UniRef50_UPI0003F6E1DB: 50S ribosomal protein L32|unclassified	1.5042720928
+UniRef50_A6M277	1.5037627989
+UniRef50_A6M277|g__Clostridium.s__Clostridium_beijerinckii	1.5037627989
+UniRef50_A0A024ECE2: Short chain dehydrogenase	1.5037593985
+UniRef50_A0A024ECE2: Short chain dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5037593985
+UniRef50_A1SM04: 5-carboxymethyl-2-hydroxymuconate delta-isomerase	1.5037593985
+UniRef50_A1SM04: 5-carboxymethyl-2-hydroxymuconate delta-isomerase|g__Propionibacterium.s__Propionibacterium_acnes	1.5037593985
+UniRef50_G8B183: dTDP-4-dehydrorhamnose reductase	1.5037593985
+UniRef50_G8B183: dTDP-4-dehydrorhamnose reductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.5037593985
+UniRef50_K7RW71: TadB domain-containing protein	1.5037593985
+UniRef50_K7RW71: TadB domain-containing protein|g__Propionibacterium.s__Propionibacterium_acnes	1.5037593985
+UniRef50_Q9RSR2: WD-repeat family protein	1.5037593985
+UniRef50_Q9RSR2: WD-repeat family protein|g__Deinococcus.s__Deinococcus_radiodurans	1.5037593985
+UniRef50_UPI0002F65379: hypothetical protein	1.5037593985
+UniRef50_UPI0002F65379: hypothetical protein|unclassified	1.5037593985
+UniRef50_V5VAL8: Flavodoxin reductase 1	1.5037593985
+UniRef50_V5VAL8: Flavodoxin reductase 1|g__Acinetobacter.s__Acinetobacter_baumannii	1.5037593985
+UniRef50_Q2JDH3	1.5036401825
+UniRef50_Q2JDH3|unclassified	1.5036401825
+UniRef50_M9VI11: Phosphoenolpyruvate sugar phosphotransferase	1.5035130367
+UniRef50_M9VI11: Phosphoenolpyruvate sugar phosphotransferase|g__Propionibacterium.s__Propionibacterium_acnes	1.5035130367
+UniRef50_D4UF66	1.5033798100
+UniRef50_D4UF66|unclassified	1.5033798100
+UniRef50_E8SP74: TnaB	1.5033156414
+UniRef50_E8SP74: TnaB|g__Neisseria.s__Neisseria_meningitidis	1.3315579228
+UniRef50_E8SP74: TnaB|unclassified	0.1717577186
+UniRef50_K4QBP0: K12555 penicillin-binding protein 2A	1.5032603882
+UniRef50_K4QBP0: K12555 penicillin-binding protein 2A|g__Streptococcus.s__Streptococcus_agalactiae	1.5032603882
+UniRef50_X2H6U2: Two component system histidine kinase	1.5032032007
+UniRef50_X2H6U2: Two component system histidine kinase|g__Neisseria.s__Neisseria_meningitidis	1.5032032007
+UniRef50_UPI0003B6DCC1: hydrolase	1.5031099269
+UniRef50_UPI0003B6DCC1: hydrolase|unclassified	1.5031099269
+UniRef50_Q7DDB6: Probable TonB-dependent receptor NMB1497	1.5030437393
+UniRef50_Q7DDB6: Probable TonB-dependent receptor NMB1497|g__Neisseria.s__Neisseria_meningitidis	1.5030437393
+UniRef50_Q9EUJ5: Salmonella enterica serovar Choleraesuis 50k virulence plasmid DNA, complete sequence	1.5030198412
+UniRef50_Q9EUJ5: Salmonella enterica serovar Choleraesuis 50k virulence plasmid DNA, complete sequence|unclassified	1.5030198412
+UniRef50_UPI000470B75A: cupin, partial	1.5028957257
+UniRef50_UPI000470B75A: cupin, partial|unclassified	1.5028957257
+UniRef50_K0S1B2	1.5024756345
+UniRef50_K0S1B2|unclassified	1.5024756345
+UniRef50_R6IZ50	1.5020557831
+UniRef50_R6IZ50|unclassified	1.5020557831
+UniRef50_A3JVB5: SN-glycerol-3-phophate ABC transporter, periplasmic SN-glycerol-3-phosphate-binding protein (Fragment)	1.5015063960
+UniRef50_A3JVB5: SN-glycerol-3-phophate ABC transporter, periplasmic SN-glycerol-3-phosphate-binding protein (Fragment)|unclassified	1.5015063960
+UniRef50_A6M2L9: Capsular exopolysaccharide family	1.5015015015
+UniRef50_A6M2L9: Capsular exopolysaccharide family|g__Clostridium.s__Clostridium_beijerinckii	1.5015015015
+UniRef50_F8FUI8: RND family efflux transporter, MFP subunit	1.5015015015
+UniRef50_F8FUI8: RND family efflux transporter, MFP subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5015015015
+UniRef50_J3IXG8	1.5015015015
+UniRef50_J3IXG8|unclassified	1.5015015015
+UniRef50_Q9RUW7	1.5015015015
+UniRef50_Q9RUW7|g__Deinococcus.s__Deinococcus_radiodurans	1.5015015015
+UniRef50_UPI000350368A: PREDICTED: translation initiation factor IF-2-like	1.5015015015
+UniRef50_UPI000350368A: PREDICTED: translation initiation factor IF-2-like|unclassified	1.5015015015
+UniRef50_M0DCT7: ABC transporter	1.5011751298
+UniRef50_M0DCT7: ABC transporter|unclassified	1.5011751298
+UniRef50_UPI000472972A: transcriptional repressor NrdR	1.5011592729
+UniRef50_UPI000472972A: transcriptional repressor NrdR|unclassified	1.5011592729
+UniRef50_I4N9F9: Lipoprotein	1.5010040394
+UniRef50_I4N9F9: Lipoprotein|unclassified	1.5010040394
+UniRef50_G7ZFF7: L-sorbosone dehydrogenase	1.5009382976
+UniRef50_G7ZFF7: L-sorbosone dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.5009382976
+UniRef50_UPI0003488777: hypothetical protein	1.5009111927
+UniRef50_UPI0003488777: hypothetical protein|unclassified	1.5009111927
+UniRef50_F2QGL0: Competence protein	1.5004864772
+UniRef50_F2QGL0: Competence protein|g__Streptococcus.s__Streptococcus_agalactiae	1.2658227848
+UniRef50_F2QGL0: Competence protein|unclassified	0.2346636924
+UniRef50_M1Z168	1.5003890102
+UniRef50_M1Z168|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.5003890102
+UniRef50_UPI00031BB0A3: multidrug DMT transporter	1.5003163828
+UniRef50_UPI00031BB0A3: multidrug DMT transporter|unclassified	1.5003163828
+UniRef50_C8RYS3	1.5001792229
+UniRef50_C8RYS3|unclassified	1.5001792229
+UniRef50_H6SJD1: Cysteine desulfuration protein SufE	1.4998333794
+UniRef50_H6SJD1: Cysteine desulfuration protein SufE|unclassified	1.4998333794
+UniRef50_K0ZHQ2	1.4998062082
+UniRef50_K0ZHQ2|unclassified	1.4998062082
+UniRef50_UPI00035C6B06: hypothetical protein, partial	1.4997016136
+UniRef50_UPI00035C6B06: hypothetical protein, partial|unclassified	1.4997016136
+UniRef50_UPI00036FA2E0: hypothetical protein	1.4997000600
+UniRef50_UPI00036FA2E0: hypothetical protein|unclassified	1.4997000600
+UniRef50_U4PT12: ABC transporter, permease protein	1.4994441865
+UniRef50_U4PT12: ABC transporter, permease protein|unclassified	1.4994441865
+UniRef50_A6LZ64	1.4992503748
+UniRef50_A6LZ64|g__Clostridium.s__Clostridium_beijerinckii	1.4992503748
+UniRef50_B6JM63: Polyamine aminopropyl transferase	1.4992503748
+UniRef50_B6JM63: Polyamine aminopropyl transferase|g__Helicobacter.s__Helicobacter_pylori	1.4992503748
+UniRef50_K0HHI0	1.4992503748
+UniRef50_K0HHI0|g__Propionibacterium.s__Propionibacterium_acnes	1.4992503748
+UniRef50_K7SIM7: Phosphoglycerate mutase family protein	1.4992503748
+UniRef50_K7SIM7: Phosphoglycerate mutase family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.4992503748
+UniRef50_Q6A5H2: Alanine racemase	1.4992503748
+UniRef50_Q6A5H2: Alanine racemase|g__Propionibacterium.s__Propionibacterium_acnes	1.4992503748
+UniRef50_W8TZQ2: Amino acid ABC transporter ATP-binding protein	1.4992503748
+UniRef50_W8TZQ2: Amino acid ABC transporter ATP-binding protein|g__Escherichia.s__Escherichia_coli	1.4992503748
+UniRef50_V9ZQ21	1.4992427429
+UniRef50_V9ZQ21|unclassified	1.4992427429
+UniRef50_D4HF88: Amino acid/peptide transporter	1.4991181658
+UniRef50_D4HF88: Amino acid/peptide transporter|g__Propionibacterium.s__Propionibacterium_acnes	1.4991181658
+UniRef50_R5WGC0	1.4976487432
+UniRef50_R5WGC0|unclassified	1.4976487432
+UniRef50_A0A010WN13: Phospholipase C, phosphocholine-specific	1.4974540259
+UniRef50_A0A010WN13: Phospholipase C, phosphocholine-specific|g__Acinetobacter.s__Acinetobacter_baumannii	1.4974540259
+UniRef50_UPI0004440D8B: PREDICTED: basic proline-rich protein-like	1.4973879961
+UniRef50_UPI0004440D8B: PREDICTED: basic proline-rich protein-like|unclassified	1.4973879961
+UniRef50_Q5LW93: Probable nicotinate-nucleotide adenylyltransferase	1.4973352975
+UniRef50_Q5LW93: Probable nicotinate-nucleotide adenylyltransferase|unclassified	1.4973352975
+UniRef50_X7TVE6	1.4972888988
+UniRef50_X7TVE6|unclassified	1.4972888988
+UniRef50_F0MJV4: Fic family protein	1.4972484138
+UniRef50_F0MJV4: Fic family protein|g__Neisseria.s__Neisseria_meningitidis	1.4972484138
+UniRef50_A1T8W5: Phosphoribosyl isomerase A	1.4970059880
+UniRef50_A1T8W5: Phosphoribosyl isomerase A|g__Propionibacterium.s__Propionibacterium_acnes	1.4970059880
+UniRef50_E2Q073: Bifunctional DNA primase/polymerase	1.4970059880
+UniRef50_E2Q073: Bifunctional DNA primase/polymerase|unclassified	1.4970059880
+UniRef50_K3YVC5	1.4970059880
+UniRef50_K3YVC5|unclassified	1.4970059880
+UniRef50_Q9RSK3: Branched-chain amino acid ABC transporter, permease protein	1.4970059880
+UniRef50_Q9RSK3: Branched-chain amino acid ABC transporter, permease protein|g__Deinococcus.s__Deinococcus_radiodurans	1.4970059880
+UniRef50_UPI00045D70E9: PREDICTED: basic proline-rich protein-like	1.4970059880
+UniRef50_UPI00045D70E9: PREDICTED: basic proline-rich protein-like|unclassified	1.4970059880
+UniRef50_F0Y4U6: Expressed protein (Fragment)	1.4964793027
+UniRef50_F0Y4U6: Expressed protein (Fragment)|unclassified	1.4964793027
+UniRef50_UPI000379C48D: hypothetical protein	1.4963993427
+UniRef50_UPI000379C48D: hypothetical protein|unclassified	1.4963993427
+UniRef50_E1RTG3	1.4960069072
+UniRef50_E1RTG3|unclassified	1.4960069072
+UniRef50_UPI000366029E: hypothetical protein	1.4959182018
+UniRef50_UPI000366029E: hypothetical protein|unclassified	1.4959182018
+UniRef50_G7U8X0: Drug resistance MFS transporter, drug:H+ antiporter-2 (14 Spanner) (DHA2) family protein	1.4954192652
+UniRef50_G7U8X0: Drug resistance MFS transporter, drug:H+ antiporter-2 (14 Spanner) (DHA2) family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.4954192652
+UniRef50_Q9RWN6: Cell division protein FtsA	1.4952149819
+UniRef50_Q9RWN6: Cell division protein FtsA|g__Deinococcus.s__Deinococcus_radiodurans	1.4952149819
+UniRef50_E6S2D5	1.4949624157
+UniRef50_E6S2D5|g__Helicobacter.s__Helicobacter_pylori	1.4949624157
+UniRef50_UPI0003EB4BF9: hypothetical protein	1.4948023668
+UniRef50_UPI0003EB4BF9: hypothetical protein|unclassified	1.4948023668
+UniRef50_UPI00046CF7C8: MerR family transcriptional regulator	1.4947943691
+UniRef50_UPI00046CF7C8: MerR family transcriptional regulator|unclassified	1.4947943691
+UniRef50_C7NCS1: Binding-protein-dependent transport systems inner membrane component	1.4947683109
+UniRef50_C7NCS1: Binding-protein-dependent transport systems inner membrane component|g__Streptococcus.s__Streptococcus_agalactiae	1.4947683109
+UniRef50_D8JKW7: TetR family regulatory protein	1.4947683109
+UniRef50_D8JKW7: TetR family regulatory protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.4947683109
+UniRef50_E6U512: Binding-protein-dependent transport systems inner membrane component	1.4947683109
+UniRef50_E6U512: Binding-protein-dependent transport systems inner membrane component|g__Clostridium.s__Clostridium_beijerinckii	1.4947683109
+UniRef50_F9Y6I8: Membrane protein	1.4947683109
+UniRef50_F9Y6I8: Membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4947683109
+UniRef50_O05405	1.4947683109
+UniRef50_O05405|g__Clostridium.s__Clostridium_beijerinckii	1.4947683109
+UniRef50_Q9RZ80	1.4947683109
+UniRef50_Q9RZ80|g__Deinococcus.s__Deinococcus_radiodurans	1.4947683109
+UniRef50_R1DNY4	1.4947683109
+UniRef50_R1DNY4|unclassified	1.4947683109
+UniRef50_R4RR83: Transcriptional activator protein CzcR	1.4947683109
+UniRef50_R4RR83: Transcriptional activator protein CzcR|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4947683109
+UniRef50_S5XV70: Cysteine desulfurase	1.4947683109
+UniRef50_S5XV70: Cysteine desulfurase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4947683109
+UniRef50_U3PCK7: Transposase, undefined	1.4947683109
+UniRef50_U3PCK7: Transposase, undefined|g__Propionibacterium.s__Propionibacterium_acnes	1.4947683109
+UniRef50_U5MUC9: Cyclic di-GMP phosphodiesterase response regulator RpfG	1.4947683109
+UniRef50_U5MUC9: Cyclic di-GMP phosphodiesterase response regulator RpfG|g__Clostridium.s__Clostridium_beijerinckii	1.4947683109
+UniRef50_U6LA32	1.4947683109
+UniRef50_U6LA32|unclassified	1.4947683109
+UniRef50_UPI000382B712: hypothetical protein	1.4947619504
+UniRef50_UPI000382B712: hypothetical protein|unclassified	1.4947619504
+UniRef50_UPI00034415F3: PREDICTED: endoplasmic reticulum metallopeptidase 1	1.4940991611
+UniRef50_UPI00034415F3: PREDICTED: endoplasmic reticulum metallopeptidase 1|unclassified	1.4940991611
+UniRef50_V4QWK3	1.4940385649
+UniRef50_V4QWK3|unclassified	1.4940385649
+UniRef50_W4U4R2	1.4939207006
+UniRef50_W4U4R2|unclassified	1.4939207006
+UniRef50_A0A024HEM4	1.4937665036
+UniRef50_A0A024HEM4|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4937665036
+UniRef50_X0V5G6: Marine sediment metagenome DNA, contig: S01H1_S06254 (Fragment)	1.4937282410
+UniRef50_X0V5G6: Marine sediment metagenome DNA, contig: S01H1_S06254 (Fragment)|unclassified	1.4937282410
+UniRef50_UPI000464946C: hypothetical protein	1.4935471839
+UniRef50_UPI000464946C: hypothetical protein|unclassified	1.4935471839
+UniRef50_W4HRP1: Cytosine deaminase	1.4933785936
+UniRef50_W4HRP1: Cytosine deaminase|unclassified	1.4933785936
+UniRef50_G5JGR1	1.4932120067
+UniRef50_G5JGR1|unclassified	1.4932120067
+UniRef50_UPI000310AFFC: hypothetical protein	1.4931109738
+UniRef50_UPI000310AFFC: hypothetical protein|unclassified	1.4931109738
+UniRef50_UPI00037D470D: hypothetical protein	1.4929434222
+UniRef50_UPI00037D470D: hypothetical protein|unclassified	1.4929434222
+UniRef50_W1G297	1.4928722361
+UniRef50_W1G297|unclassified	1.4928722361
+UniRef50_M0HKI8	1.4926714844
+UniRef50_M0HKI8|unclassified	1.4926714844
+UniRef50_T2ECR6: MOSC domain protein	1.4925373134
+UniRef50_T2ECR6: MOSC domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4925373134
+UniRef50_UPI00031FA16A: hypothetical protein	1.4925373134
+UniRef50_UPI00031FA16A: hypothetical protein|unclassified	1.4925373134
+UniRef50_J9ZJI7	1.4924265181
+UniRef50_J9ZJI7|unclassified	1.4924265181
+UniRef50_D8PFQ4	1.4922963228
+UniRef50_D8PFQ4|unclassified	1.4922963228
+UniRef50_U4KGU9: Toluene tolerance protein Ttg2B	1.4916580207
+UniRef50_U4KGU9: Toluene tolerance protein Ttg2B|g__Escherichia.s__Escherichia_coli	1.3210039630
+UniRef50_U4KGU9: Toluene tolerance protein Ttg2B|unclassified	0.1706540577
+UniRef50_A4XQA6	1.4914633043
+UniRef50_A4XQA6|unclassified	1.4914633043
+UniRef50_A0A023RVS9: Diguanylate cyclase	1.4913821398
+UniRef50_A0A023RVS9: Diguanylate cyclase|g__Acinetobacter.s__Acinetobacter_baumannii	1.4913821398
+UniRef50_H9US90: Putative cold-shock protein	1.4905173770
+UniRef50_H9US90: Putative cold-shock protein|unclassified	1.4905173770
+UniRef50_F5M2G8: Glyoxalase/bleomycin resistance protein/dioxygenase	1.4903129657
+UniRef50_F5M2G8: Glyoxalase/bleomycin resistance protein/dioxygenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4903129657
+UniRef50_UPI00046CE315: hypothetical protein	1.4903129657
+UniRef50_UPI00046CE315: hypothetical protein|unclassified	1.4903129657
+UniRef50_W8ESZ0: MFS transporter	1.4903129657
+UniRef50_W8ESZ0: MFS transporter|g__Acinetobacter.s__Acinetobacter_baumannii	1.4903129657
+UniRef50_UPI000473FA3F: hypothetical protein, partial	1.4900623032
+UniRef50_UPI000473FA3F: hypothetical protein, partial|unclassified	1.4900623032
+UniRef50_Q7VFL0: Lysine--tRNA ligase	1.4899579650
+UniRef50_Q7VFL0: Lysine--tRNA ligase|g__Helicobacter.s__Helicobacter_pylori	1.4593747352
+UniRef50_Q7VFL0: Lysine--tRNA ligase|unclassified	0.0305832298
+UniRef50_UPI00047753FE: hypothetical protein	1.4896973089
+UniRef50_UPI00047753FE: hypothetical protein|unclassified	1.4896973089
+UniRef50_C2THV2	1.4895859917
+UniRef50_C2THV2|unclassified	1.4895859917
+UniRef50_R9ZK82	1.4892574691
+UniRef50_R9ZK82|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4892574691
+UniRef50_K5X9D6	1.4891232625
+UniRef50_K5X9D6|unclassified	1.4891232625
+UniRef50_A8I278	1.4889370534
+UniRef50_A8I278|unclassified	1.4889370534
+UniRef50_A5MZ45: CheA2	1.4888637685
+UniRef50_A5MZ45: CheA2|g__Clostridium.s__Clostridium_beijerinckii	1.4888637685
+UniRef50_A3V3H5	1.4888345701
+UniRef50_A3V3H5|unclassified	1.4888345701
+UniRef50_UPI0003B4B681: AsnC family transcriptional regulator	1.4887912804
+UniRef50_UPI0003B4B681: AsnC family transcriptional regulator|unclassified	1.4887912804
+UniRef50_X1YMT4	1.4884293602
+UniRef50_X1YMT4|unclassified	1.4884293602
+UniRef50_T2ELD5	1.4883812863
+UniRef50_T2ELD5|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4883812863
+UniRef50_G7ZE72	1.4883743158
+UniRef50_G7ZE72|unclassified	1.4883743158
+UniRef50_A3V624	1.4882541014
+UniRef50_A3V624|unclassified	1.4882541014
+UniRef50_A1KU02	1.4880952381
+UniRef50_A1KU02|unclassified	1.4880952381
+UniRef50_J9YPI1	1.4880952381
+UniRef50_J9YPI1|g__Streptococcus.s__Streptococcus_agalactiae	1.4880952381
+UniRef50_Q1CQ18: Phage single-strand DNA binding protein	1.4880952381
+UniRef50_Q1CQ18: Phage single-strand DNA binding protein|g__Streptococcus.s__Streptococcus_agalactiae	1.4880952381
+UniRef50_Q2SCI6: Predicted Hydrolase or acyltransferase (Alpha/beta hydrolase superfamily)	1.4880952381
+UniRef50_Q2SCI6: Predicted Hydrolase or acyltransferase (Alpha/beta hydrolase superfamily)|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4880952381
+UniRef50_Q47456: Transcriptional regulatory protein PcoR	1.4880952381
+UniRef50_Q47456: Transcriptional regulatory protein PcoR|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4880952381
+UniRef50_Q9RZN0: GGDEF family protein	1.4878270826
+UniRef50_Q9RZN0: GGDEF family protein|unclassified	1.4878270826
+UniRef50_Q2K4W8: Putative 3-methyladenine DNA glycosylase	1.4877620229
+UniRef50_Q2K4W8: Putative 3-methyladenine DNA glycosylase|unclassified	1.4877620229
+UniRef50_E8RML3	1.4875120613
+UniRef50_E8RML3|unclassified	1.4875120613
+UniRef50_UPI00036257FA: hypothetical protein	1.4869751603
+UniRef50_UPI00036257FA: hypothetical protein|unclassified	1.4869751603
+UniRef50_I3TI18: Cysteine desulfuration protein SufE	1.4865757583
+UniRef50_I3TI18: Cysteine desulfuration protein SufE|unclassified	1.4865757583
+UniRef50_X5ENN1	1.4865245193
+UniRef50_X5ENN1|unclassified	1.4865245193
+UniRef50_UPI00035F4A59: hypothetical protein	1.4859485410
+UniRef50_UPI00035F4A59: hypothetical protein|unclassified	1.4859485410
+UniRef50_B0V8K7: Pilin like competence factor	1.4858841010
+UniRef50_B0V8K7: Pilin like competence factor|g__Acinetobacter.s__Acinetobacter_baumannii	1.4858841010
+UniRef50_L3QDS2	1.4858841010
+UniRef50_L3QDS2|g__Escherichia.s__Escherichia_coli	1.4858841010
+UniRef50_Q893F0: Transcriptional regulatory protein	1.4858841010
+UniRef50_Q893F0: Transcriptional regulatory protein|g__Clostridium.s__Clostridium_beijerinckii	1.4858841010
+UniRef50_R0PW25	1.4858841010
+UniRef50_R0PW25|g__Neisseria.s__Neisseria_meningitidis	1.4858841010
+UniRef50_G6YMC5: Putative transposase for insertion sequence NGRIS-9	1.4857075416
+UniRef50_G6YMC5: Putative transposase for insertion sequence NGRIS-9|unclassified	1.4857075416
+UniRef50_B3E5B6: Carbon starvation protein CstA	1.4855832776
+UniRef50_B3E5B6: Carbon starvation protein CstA|g__Clostridium.s__Clostridium_beijerinckii	1.4855832776
+UniRef50_C7THV6	1.4855275151
+UniRef50_C7THV6|unclassified	1.4855275151
+UniRef50_UPI000364A2F3: hypothetical protein	1.4853647881
+UniRef50_UPI000364A2F3: hypothetical protein|unclassified	1.4853647881
+UniRef50_U8T208	1.4852454273
+UniRef50_U8T208|unclassified	1.4852454273
+UniRef50_Q1GGL7	1.4851940075
+UniRef50_Q1GGL7|unclassified	1.4851940075
+UniRef50_UPI0002B4270F: PREDICTED: LOW QUALITY PROTEIN: zinc transporter 2	1.4850806055
+UniRef50_UPI0002B4270F: PREDICTED: LOW QUALITY PROTEIN: zinc transporter 2|unclassified	1.4850806055
+UniRef50_UPI0002002F71: hypothetical protein	1.4849092194
+UniRef50_UPI0002002F71: hypothetical protein|unclassified	1.4849092194
+UniRef50_Q88F38: Cation-transporting P-type ATPase	1.4848716279
+UniRef50_Q88F38: Cation-transporting P-type ATPase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4848716279
+UniRef50_A6LVT5	1.4846019026
+UniRef50_A6LVT5|g__Clostridium.s__Clostridium_beijerinckii	1.4846019026
+UniRef50_UPI0003B46BA7: hypothetical protein	1.4842278211
+UniRef50_UPI0003B46BA7: hypothetical protein|unclassified	1.4842278211
+UniRef50_K8BVY4	1.4840637404
+UniRef50_K8BVY4|unclassified	1.4840637404
+UniRef50_G7M5B9: Type II secretion system protein E	1.4836795252
+UniRef50_G7M5B9: Type II secretion system protein E|g__Clostridium.s__Clostridium_beijerinckii	1.4836795252
+UniRef50_Q8XMI8: Shikimate dehydrogenase	1.4836795252
+UniRef50_Q8XMI8: Shikimate dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	1.4836795252
+UniRef50_R5TC44: Nicotinate-nucleotide diphosphorylase (Carboxylating)	1.4836795252
+UniRef50_R5TC44: Nicotinate-nucleotide diphosphorylase (Carboxylating)|g__Clostridium.s__Clostridium_beijerinckii	1.4836795252
+UniRef50_B1IVE2: YD repeat protein	1.4833220876
+UniRef50_B1IVE2: YD repeat protein|g__Escherichia.s__Escherichia_coli	1.4833220876
+UniRef50_Q9RYR1: Drug transport protein, putative	1.4832743115
+UniRef50_Q9RYR1: Drug transport protein, putative|g__Deinococcus.s__Deinococcus_radiodurans	1.4832743115
+UniRef50_S5MWD7: Putative bacteriophage protein	1.4831860429
+UniRef50_S5MWD7: Putative bacteriophage protein|unclassified	1.4831860429
+UniRef50_T9BKY3: Xanthine dehydrogenase accessory factor	1.4831063244
+UniRef50_T9BKY3: Xanthine dehydrogenase accessory factor|unclassified	1.4831063244
+UniRef50_X2N6B6	1.4830420064
+UniRef50_X2N6B6|unclassified	1.4830420064
+UniRef50_W9F1B9	1.4828314661
+UniRef50_W9F1B9|unclassified	1.4828314661
+UniRef50_UPI00039CE1C8: hypothetical protein	1.4817181412
+UniRef50_UPI00039CE1C8: hypothetical protein|unclassified	1.4817181412
+UniRef50_B4U0G0: S-adenosylmethionine-dependent methyltransferase	1.4814814815
+UniRef50_B4U0G0: S-adenosylmethionine-dependent methyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	1.4814814815
+UniRef50_B5HHN6: Regulatory protein	1.4814814815
+UniRef50_B5HHN6: Regulatory protein|g__Propionibacterium.s__Propionibacterium_acnes	1.4814814815
+UniRef50_B7GV54: Probable allantoicase	1.4814814815
+UniRef50_B7GV54: Probable allantoicase|g__Acinetobacter.s__Acinetobacter_baumannii	1.4814814815
+UniRef50_K7RUT9	1.4814814815
+UniRef50_K7RUT9|g__Propionibacterium.s__Propionibacterium_acnes	1.4814814815
+UniRef50_Q03AI1: Uracil-DNA glycosylase	1.4814814815
+UniRef50_Q03AI1: Uracil-DNA glycosylase|g__Clostridium.s__Clostridium_beijerinckii	1.4814814815
+UniRef50_R4K891: rRNA methylase	1.4814814815
+UniRef50_R4K891: rRNA methylase|g__Clostridium.s__Clostridium_beijerinckii	1.4814814815
+UniRef50_U5MWI4: Flagellar basal-body rod protein FlgG	1.4814814815
+UniRef50_U5MWI4: Flagellar basal-body rod protein FlgG|g__Clostridium.s__Clostridium_beijerinckii	1.4814814815
+UniRef50_A2BXS2	1.4814052043
+UniRef50_A2BXS2|unclassified	1.4814052043
+UniRef50_V0VDR9	1.4813167263
+UniRef50_V0VDR9|unclassified	1.4813167263
+UniRef50_F0NB13: Transporter, gluconate:H+ symporter family	1.4811280921
+UniRef50_F0NB13: Transporter, gluconate:H+ symporter family|g__Neisseria.s__Neisseria_meningitidis	1.4811280921
+UniRef50_Q1IYB4: ATPase AAA-2	1.4811262646
+UniRef50_Q1IYB4: ATPase AAA-2|g__Deinococcus.s__Deinococcus_radiodurans	1.4811262646
+UniRef50_B3ZX35: Protein rlx	1.4809267521
+UniRef50_B3ZX35: Protein rlx|unclassified	1.4809267521
+UniRef50_T2N0B3	1.4808849696
+UniRef50_T2N0B3|unclassified	1.4808849696
+UniRef50_P56145: Phenylalanine--tRNA ligase beta subunit	1.4808040639
+UniRef50_P56145: Phenylalanine--tRNA ligase beta subunit|g__Helicobacter.s__Helicobacter_pylori	1.4808040639
+UniRef50_A6LX16: Zinc finger, SWIM domain protein	1.4807810577
+UniRef50_A6LX16: Zinc finger, SWIM domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.4807810577
+UniRef50_Z6PI41	1.4802426474
+UniRef50_Z6PI41|unclassified	1.4802426474
+UniRef50_W7YIS6: Glyoxalase family protein	1.4800078774
+UniRef50_W7YIS6: Glyoxalase family protein|unclassified	1.4800078774
+UniRef50_F4M1C9	1.4798357097
+UniRef50_F4M1C9|g__Escherichia.s__Escherichia_coli	1.4798357097
+UniRef50_F0YJ43	1.4795170300
+UniRef50_F0YJ43|unclassified	1.4795170300
+UniRef50_R7D4E7	1.4793474976
+UniRef50_R7D4E7|unclassified	1.4793474976
+UniRef50_L0A3G2: ABC-type metal ion transport system, periplasmic component/surface adhesin	1.4792899408
+UniRef50_L0A3G2: ABC-type metal ion transport system, periplasmic component/surface adhesin|g__Deinococcus.s__Deinococcus_radiodurans	1.4792899408
+UniRef50_G8VRV9: Dipeptide ABC superfamily ATP binding cassette transporter, binding protein	1.4791859137
+UniRef50_G8VRV9: Dipeptide ABC superfamily ATP binding cassette transporter, binding protein|unclassified	1.4791859137
+UniRef50_UPI000363377B: preprotein translocase subunit TatA	1.4790854477
+UniRef50_UPI000363377B: preprotein translocase subunit TatA|unclassified	1.4790854477
+UniRef50_C2DT30	1.4789593761
+UniRef50_C2DT30|unclassified	1.4789593761
+UniRef50_UPI00046AFC14: transcriptional regulator	1.4789270548
+UniRef50_UPI00046AFC14: transcriptional regulator|unclassified	1.4789270548
+UniRef50_UPI00044342F0: PREDICTED: spidroin-2-like	1.4788317779
+UniRef50_UPI00044342F0: PREDICTED: spidroin-2-like|unclassified	1.4788317779
+UniRef50_T2EPG2	1.4788160287
+UniRef50_T2EPG2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4788160287
+UniRef50_Q9I2Y8	1.4786695421
+UniRef50_Q9I2Y8|unclassified	1.4786695421
+UniRef50_P44555	1.4782396589
+UniRef50_P44555|g__Acinetobacter.s__Acinetobacter_baumannii	1.4782396589
+UniRef50_B0V4J6: Methylenetetrahydrofolate reductase	1.4781966001
+UniRef50_B0V4J6: Methylenetetrahydrofolate reductase|g__Acinetobacter.s__Acinetobacter_baumannii	1.4781966001
+UniRef50_UPI00037CE74D: hypothetical protein	1.4780250133
+UniRef50_UPI00037CE74D: hypothetical protein|unclassified	1.4780250133
+UniRef50_G6EK09: Monovalent cation/proton antiporter, MnhG/PhaG subunit	1.4777087629
+UniRef50_G6EK09: Monovalent cation/proton antiporter, MnhG/PhaG subunit|unclassified	1.4777087629
+UniRef50_B6AY70	1.4775016607
+UniRef50_B6AY70|unclassified	1.4775016607
+UniRef50_C8RX73: Flagellar FlaF family protein	1.4774798131
+UniRef50_C8RX73: Flagellar FlaF family protein|unclassified	1.4774798131
+UniRef50_F0XXW5	1.4771292030
+UniRef50_F0XXW5|unclassified	1.4771292030
+UniRef50_D0DAU8: Phage integrase	1.4771048744
+UniRef50_D0DAU8: Phage integrase|unclassified	1.4771048744
+UniRef50_E4BAZ7	1.4771048744
+UniRef50_E4BAZ7|g__Propionibacterium.s__Propionibacterium_acnes	1.4771048744
+UniRef50_G0DY22	1.4771048744
+UniRef50_G0DY22|g__Propionibacterium.s__Propionibacterium_acnes	1.4771048744
+UniRef50_M0LYY5	1.4771048744
+UniRef50_M0LYY5|unclassified	1.4771048744
+UniRef50_Q4KGB9: Transcriptional regulator, AraC family	1.4771048744
+UniRef50_Q4KGB9: Transcriptional regulator, AraC family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4771048744
+UniRef50_Q9HW09: Probable 2-dehydropantoate 2-reductase	1.4771048744
+UniRef50_Q9HW09: Probable 2-dehydropantoate 2-reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4771048744
+UniRef50_Q9RV98: Ferrochelatase	1.4771048744
+UniRef50_Q9RV98: Ferrochelatase|g__Deinococcus.s__Deinococcus_radiodurans	1.4771048744
+UniRef50_UPI000380411C: hypothetical protein	1.4771048744
+UniRef50_UPI000380411C: hypothetical protein|unclassified	1.4771048744
+UniRef50_W1MRN2: Cytochrome B561	1.4771048744
+UniRef50_W1MRN2: Cytochrome B561|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4771048744
+UniRef50_I1AS06	1.4768578164
+UniRef50_I1AS06|unclassified	1.4768578164
+UniRef50_UPI00037EBED1: hypothetical protein	1.4766952781
+UniRef50_UPI00037EBED1: hypothetical protein|unclassified	1.4766952781
+UniRef50_H3WL47	1.4766585005
+UniRef50_H3WL47|unclassified	1.4766585005
+UniRef50_Q08WZ7	1.4765344149
+UniRef50_Q08WZ7|unclassified	1.4765344149
+UniRef50_A0A037J8C0	1.4762584967
+UniRef50_A0A037J8C0|unclassified	1.4762584967
+UniRef50_Z5FSE4: UPF0380 protein yfjQ	1.4760597801
+UniRef50_Z5FSE4: UPF0380 protein yfjQ|unclassified	1.4760597801
+UniRef50_V7HDV4	1.4757866477
+UniRef50_V7HDV4|unclassified	1.4757866477
+UniRef50_B9T9S3	1.4757464992
+UniRef50_B9T9S3|unclassified	1.4757464992
+UniRef50_B0UA59	1.4754866466
+UniRef50_B0UA59|unclassified	1.4754866466
+UniRef50_I9C3Y6	1.4754587884
+UniRef50_I9C3Y6|unclassified	1.4754587884
+UniRef50_Q899P3: 3-oxoacyl-[acyl-carrier-protein] synthase 3	1.4754342581
+UniRef50_Q899P3: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	1.4754342581
+UniRef50_A4WWS4: RecB family exonuclease-like protein	1.4753707428
+UniRef50_A4WWS4: RecB family exonuclease-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4753707428
+UniRef50_A0A023RTX7: 3-oxoacyl-ACP reductase	1.4749262537
+UniRef50_A0A023RTX7: 3-oxoacyl-ACP reductase|g__Acinetobacter.s__Acinetobacter_baumannii	1.4749262537
+UniRef50_A3PQ95: Response regulator receiver protein	1.4749262537
+UniRef50_A3PQ95: Response regulator receiver protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4749262537
+UniRef50_B1IIB8: Sensor histidine kinase	1.4749262537
+UniRef50_B1IIB8: Sensor histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	1.4749262537
+UniRef50_B2HW18	1.4749262537
+UniRef50_B2HW18|g__Acinetobacter.s__Acinetobacter_baumannii	1.4749262537
+UniRef50_M1MPJ0	1.4749262537
+UniRef50_M1MPJ0|g__Clostridium.s__Clostridium_beijerinckii	1.4749262537
+UniRef50_S9RY45	1.4749211585
+UniRef50_S9RY45|unclassified	1.4749211585
+UniRef50_UPI000379E27A: hypothetical protein	1.4748843068
+UniRef50_UPI000379E27A: hypothetical protein|unclassified	1.4748843068
+UniRef50_P76485	1.4747358893
+UniRef50_P76485|unclassified	1.4747358893
+UniRef50_E3F0T9: Protein-export membrane protein secF	1.4745935991
+UniRef50_E3F0T9: Protein-export membrane protein secF|unclassified	1.4745935991
+UniRef50_E8LIN9	1.4744232274
+UniRef50_E8LIN9|unclassified	1.4744232274
+UniRef50_R5D7P7: ABC transporter permease protein	1.4740798656
+UniRef50_R5D7P7: ABC transporter permease protein|unclassified	1.4740798656
+UniRef50_UPI00034916BB: hypothetical protein	1.4739578262
+UniRef50_UPI00034916BB: hypothetical protein|unclassified	1.4739578262
+UniRef50_Q9RUE6	1.4739430656
+UniRef50_Q9RUE6|unclassified	1.4739430656
+UniRef50_Q6UB95: RepA	1.4737518048
+UniRef50_Q6UB95: RepA|g__Staphylococcus.s__Staphylococcus_epidermidis	1.1148272018
+UniRef50_Q6UB95: RepA|unclassified	0.3589246030
+UniRef50_T0M8C3: Rep (Fragment)	1.4736849460
+UniRef50_T0M8C3: Rep (Fragment)|unclassified	1.4736849460
+UniRef50_J9P4X2	1.4734896340
+UniRef50_J9P4X2|unclassified	1.4734896340
+UniRef50_T0H7I4	1.4731160521
+UniRef50_T0H7I4|unclassified	1.4731160521
+UniRef50_A6V061	1.4730324308
+UniRef50_A6V061|unclassified	1.4730324308
+UniRef50_A3M7U1: Phosphopantetheinyl transferase component of siderophore synthetase	1.4727540501
+UniRef50_A3M7U1: Phosphopantetheinyl transferase component of siderophore synthetase|g__Acinetobacter.s__Acinetobacter_baumannii	1.4727540501
+UniRef50_A6LQ26: Two component transcriptional regulator, LytTR family	1.4727540501
+UniRef50_A6LQ26: Two component transcriptional regulator, LytTR family|g__Clostridium.s__Clostridium_beijerinckii	1.4727540501
+UniRef50_A6LTK9: Transcriptional regulator, GntR family	1.4727540501
+UniRef50_A6LTK9: Transcriptional regulator, GntR family|g__Clostridium.s__Clostridium_beijerinckii	1.4727540501
+UniRef50_C6CTD5: Glycosyl transferase family 2	1.4727540501
+UniRef50_C6CTD5: Glycosyl transferase family 2|g__Clostridium.s__Clostridium_beijerinckii	1.4727540501
+UniRef50_D5WC99: Enoyl-CoA hydratase/isomerase	1.4727540501
+UniRef50_D5WC99: Enoyl-CoA hydratase/isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4727540501
+UniRef50_J9YTI3: Peptide ABC transporter ATP-binding protein	1.4727540501
+UniRef50_J9YTI3: Peptide ABC transporter ATP-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	1.4727540501
+UniRef50_P9WK18: Methionine aminopeptidase 2	1.4727540501
+UniRef50_P9WK18: Methionine aminopeptidase 2|g__Propionibacterium.s__Propionibacterium_acnes	1.4727540501
+UniRef50_Q1I3T3: Polyhydroxyalkanoate synthesis protein PhaF	1.4727540501
+UniRef50_Q1I3T3: Polyhydroxyalkanoate synthesis protein PhaF|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4727540501
+UniRef50_Q97FS6: Dihydroorotate dehydrogenase B (NAD(+)), electron transfer subunit	1.4727540501
+UniRef50_Q97FS6: Dihydroorotate dehydrogenase B (NAD(+)), electron transfer subunit|g__Clostridium.s__Clostridium_beijerinckii	1.4727540501
+UniRef50_R4QAT2: Membrane protein required for colicin V production	1.4727540501
+UniRef50_R4QAT2: Membrane protein required for colicin V production|g__Helicobacter.s__Helicobacter_pylori	1.4727540501
+UniRef50_W0IWC1: Peptidase	1.4727540501
+UniRef50_W0IWC1: Peptidase|unclassified	1.4727540501
+UniRef50_Q887Q4: Alginate biosynthesis protein AlgX	1.4726783261
+UniRef50_Q887Q4: Alginate biosynthesis protein AlgX|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4726783261
+UniRef50_I0VJT3	1.4726278876
+UniRef50_I0VJT3|unclassified	1.4726278876
+UniRef50_U1QKK6	1.4726272158
+UniRef50_U1QKK6|unclassified	1.4726272158
+UniRef50_F8IEU8	1.4726105590
+UniRef50_F8IEU8|unclassified	1.4726105590
+UniRef50_B0S0R4: Transcriptional regulator PadR family	1.4721207344
+UniRef50_B0S0R4: Transcriptional regulator PadR family|unclassified	1.4721207344
+UniRef50_G8LPU7	1.4719704140
+UniRef50_G8LPU7|unclassified	1.4719704140
+UniRef50_R8ZDD2	1.4718196457
+UniRef50_R8ZDD2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4718196457
+UniRef50_UPI00016AA13E: hypothetical protein	1.4718169527
+UniRef50_UPI00016AA13E: hypothetical protein|unclassified	1.4718169527
+UniRef50_UPI0003C14FAA	1.4716714841
+UniRef50_UPI0003C14FAA|unclassified	1.4716714841
+UniRef50_UPI0003B622F4: transcriptional regulator	1.4716609631
+UniRef50_UPI0003B622F4: transcriptional regulator|unclassified	1.4716609631
+UniRef50_F9PFT8: Amino acid permease family protein	1.4716302652
+UniRef50_F9PFT8: Amino acid permease family protein|unclassified	1.4716302652
+UniRef50_Q47663: ORF 4; putative	1.4713507656
+UniRef50_Q47663: ORF 4; putative|unclassified	1.4713507656
+UniRef50_A3S8X4	1.4713206710
+UniRef50_A3S8X4|unclassified	1.4713206710
+UniRef50_UPI000366C569: hypothetical protein	1.4708629772
+UniRef50_UPI000366C569: hypothetical protein|unclassified	1.4708629772
+UniRef50_UPI00037AF76B: hypothetical protein, partial	1.4706432341
+UniRef50_UPI00037AF76B: hypothetical protein, partial|unclassified	1.4706432341
+UniRef50_A5WHU9	1.4705882353
+UniRef50_A5WHU9|g__Acinetobacter.s__Acinetobacter_baumannii	1.4705882353
+UniRef50_B5SMJ4: Ribose abc transporter, permease protein	1.4705882353
+UniRef50_B5SMJ4: Ribose abc transporter, permease protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4705882353
+UniRef50_H8GUV3: GTPase, G3E family	1.4705882353
+UniRef50_H8GUV3: GTPase, G3E family|g__Deinococcus.s__Deinococcus_radiodurans	1.4705882353
+UniRef50_L8NGT0: Membrane-bound lytic murein transglycosylase	1.4705882353
+UniRef50_L8NGT0: Membrane-bound lytic murein transglycosylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4705882353
+UniRef50_R1G4D1	1.4705882353
+UniRef50_R1G4D1|unclassified	1.4705882353
+UniRef50_V5VAB4: Bacterial SH3 domain-containing protein	1.4705882353
+UniRef50_V5VAB4: Bacterial SH3 domain-containing protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.4705882353
+UniRef50_C5T261	1.4703464021
+UniRef50_C5T261|unclassified	1.4703464021
+UniRef50_F0L4W9	1.4703252864
+UniRef50_F0L4W9|unclassified	1.4703252864
+UniRef50_K0TGS3	1.4703115672
+UniRef50_K0TGS3|unclassified	1.4703115672
+UniRef50_Q7VI99: Arginine--tRNA ligase	1.4697988696
+UniRef50_Q7VI99: Arginine--tRNA ligase|g__Helicobacter.s__Helicobacter_pylori	1.4697988696
+UniRef50_D6K6K4	1.4697076919
+UniRef50_D6K6K4|unclassified	1.4697076919
+UniRef50_J3KW02	1.4696493270
+UniRef50_J3KW02|unclassified	1.4696493270
+UniRef50_B9KLG8: PTS system, fructose subfamily, IIC subunit	1.4693787271
+UniRef50_B9KLG8: PTS system, fructose subfamily, IIC subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4693787271
+UniRef50_Q4W573: Bis(5`-nucleosyl)-tetraphosphatase, symmetrical/Trk system potassium uptake protein TrkG, fusion	1.4693340455
+UniRef50_Q4W573: Bis(5`-nucleosyl)-tetraphosphatase, symmetrical/Trk system potassium uptake protein TrkG, fusion|g__Neisseria.s__Neisseria_meningitidis	1.4693340455
+UniRef50_W7Y3S8	1.4692472155
+UniRef50_W7Y3S8|unclassified	1.4692472155
+UniRef50_D0KZ58	1.4692026212
+UniRef50_D0KZ58|unclassified	1.4692026212
+UniRef50_I1QUS0	1.4690330746
+UniRef50_I1QUS0|unclassified	1.4690330746
+UniRef50_UPI00037317AF: hypothetical protein	1.4689784465
+UniRef50_UPI00037317AF: hypothetical protein|unclassified	1.4689784465
+UniRef50_R9PHP0: Membrane protein related to purine degradation	1.4689664352
+UniRef50_R9PHP0: Membrane protein related to purine degradation|unclassified	1.4689664352
+UniRef50_A0A029LLM4: FAD-NAD(P)-binding family protein	1.4689035616
+UniRef50_A0A029LLM4: FAD-NAD(P)-binding family protein|unclassified	1.4689035616
+UniRef50_UPI00046CBCB9: hypothetical protein	1.4687366317
+UniRef50_UPI00046CBCB9: hypothetical protein|unclassified	1.4687366317
+UniRef50_M9VJY1: Transporter, lactate permease (LctP) family protein	1.4686314703
+UniRef50_M9VJY1: Transporter, lactate permease (LctP) family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.4686314703
+UniRef50_D3FDJ3	1.4684287812
+UniRef50_D3FDJ3|unclassified	1.4684287812
+UniRef50_E0RLY4: Short-chain type dehydrogenase/reductase	1.4684287812
+UniRef50_E0RLY4: Short-chain type dehydrogenase/reductase|g__Clostridium.s__Clostridium_beijerinckii	1.4684287812
+UniRef50_E9WE17: LysR family bacterial regulatory helix-turn-helix protein	1.4684287812
+UniRef50_E9WE17: LysR family bacterial regulatory helix-turn-helix protein|g__Escherichia.s__Escherichia_coli	1.4684287812
+UniRef50_Q1J1I0: O-antigen polymerase	1.4684287812
+UniRef50_Q1J1I0: O-antigen polymerase|g__Deinococcus.s__Deinococcus_radiodurans	1.4684287812
+UniRef50_S0V1D3: Protein sbmA	1.4684287812
+UniRef50_S0V1D3: Protein sbmA|g__Escherichia.s__Escherichia_coli	1.4684287812
+UniRef50_UPI00038EBC18: PREDICTED: putative protein TPRXL-like, partial	1.4684287812
+UniRef50_UPI00038EBC18: PREDICTED: putative protein TPRXL-like, partial|unclassified	1.4684287812
+UniRef50_UPI00047114FF: sarcosine oxidase subunit delta	1.4683302757
+UniRef50_UPI00047114FF: sarcosine oxidase subunit delta|unclassified	1.4683302757
+UniRef50_A1A3H5	1.4674234111
+UniRef50_A1A3H5|unclassified	1.4674234111
+UniRef50_UPI0003657F9C: hypothetical protein	1.4672893629
+UniRef50_UPI0003657F9C: hypothetical protein|unclassified	1.4672893629
+UniRef50_B7VB24	1.4672316776
+UniRef50_B7VB24|unclassified	1.4672316776
+UniRef50_Q161I1	1.4668699697
+UniRef50_Q161I1|unclassified	1.4668699697
+UniRef50_UPI00030260F1: cation:proton antiporter	1.4665747409
+UniRef50_UPI00030260F1: cation:proton antiporter|unclassified	1.4665747409
+UniRef50_UPI00047B87C7: resolvase	1.4665686755
+UniRef50_UPI00047B87C7: resolvase|unclassified	1.4665686755
+UniRef50_A4WSR0	1.4662929162
+UniRef50_A4WSR0|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4662929162
+UniRef50_B9KJG8: HAD-superfamily hydrolase, subfamily IA, variant 3	1.4662756598
+UniRef50_B9KJG8: HAD-superfamily hydrolase, subfamily IA, variant 3|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4662756598
+UniRef50_G7M1X8	1.4662756598
+UniRef50_G7M1X8|g__Clostridium.s__Clostridium_beijerinckii	1.4662756598
+UniRef50_S1SWX2: Serine phosphatase RsbU, regulator of sigma subunit	1.4658938637
+UniRef50_S1SWX2: Serine phosphatase RsbU, regulator of sigma subunit|unclassified	1.4658938637
+UniRef50_S9Q9Z7: Mobile element protein	1.4651554522
+UniRef50_S9Q9Z7: Mobile element protein|unclassified	1.4651554522
+UniRef50_A0A020UAF8	1.4649434744
+UniRef50_A0A020UAF8|unclassified	1.4649434744
+UniRef50_A6LYE4: Peptidoglycan-binding domain 1 protein	1.4649416583
+UniRef50_A6LYE4: Peptidoglycan-binding domain 1 protein|g__Clostridium.s__Clostridium_beijerinckii	1.4649416583
+UniRef50_UPI0003AB1459: hypothetical protein	1.4647030102
+UniRef50_UPI0003AB1459: hypothetical protein|unclassified	1.4647030102
+UniRef50_UPI00034AD29E: glutamate 5-kinase	1.4646884778
+UniRef50_UPI00034AD29E: glutamate 5-kinase|unclassified	1.4646884778
+UniRef50_M5ABW2	1.4644214705
+UniRef50_M5ABW2|g__Clostridium.s__Clostridium_beijerinckii	1.4644214705
+UniRef50_UPI0002D9EB50: hypothetical protein	1.4642832823
+UniRef50_UPI0002D9EB50: hypothetical protein|unclassified	1.4642832823
+UniRef50_Q8FE39	1.4641942397
+UniRef50_Q8FE39|unclassified	1.4641942397
+UniRef50_UPI0003C73AEA: oxidoreductase	1.4641434779
+UniRef50_UPI0003C73AEA: oxidoreductase|unclassified	1.4641434779
+UniRef50_A0A023RW48	1.4641288433
+UniRef50_A0A023RW48|g__Acinetobacter.s__Acinetobacter_baumannii	1.4641288433
+UniRef50_N6V5L5	1.4640950466
+UniRef50_N6V5L5|unclassified	1.4640950466
+UniRef50_UPI00036D28EF: hypothetical protein	1.4633414860
+UniRef50_UPI00036D28EF: hypothetical protein|unclassified	1.4633414860
+UniRef50_X3ECG1: Transporter	1.4633028047
+UniRef50_X3ECG1: Transporter|unclassified	1.4633028047
+UniRef50_A6V1I4	1.4632638791
+UniRef50_A6V1I4|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3966480447
+UniRef50_A6V1I4|unclassified	0.0666158344
+UniRef50_R5PT01: 6-pyruvoyl-tetrahydropterin synthase	1.4632156036
+UniRef50_R5PT01: 6-pyruvoyl-tetrahydropterin synthase|unclassified	1.4632156036
+UniRef50_A6LRB4: Histidine kinase	1.4631820056
+UniRef50_A6LRB4: Histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	1.4631820056
+UniRef50_UPI000248DC75: coenzyme PQQ synthesis D	1.4629886489
+UniRef50_UPI000248DC75: coenzyme PQQ synthesis D|unclassified	1.4629886489
+UniRef50_E0TH65: Flagellar biosynthesis protein FlhA	1.4627613624
+UniRef50_E0TH65: Flagellar biosynthesis protein FlhA|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4627613624
+UniRef50_C8VZF1	1.4627309128
+UniRef50_C8VZF1|g__Clostridium.s__Clostridium_beijerinckii	1.4627309128
+UniRef50_B7V7B7	1.4622111065
+UniRef50_B7V7B7|unclassified	1.4622111065
+UniRef50_G2U6V6: Probable non-ribosomal peptide synthetase	1.4620015076
+UniRef50_G2U6V6: Probable non-ribosomal peptide synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4620015076
+UniRef50_A1KSK9: Sec-independent protein translocase protein TatB	1.4619883041
+UniRef50_A1KSK9: Sec-independent protein translocase protein TatB|g__Neisseria.s__Neisseria_meningitidis	1.4619883041
+UniRef50_E2ZSI9	1.4619883041
+UniRef50_E2ZSI9|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4619883041
+UniRef50_F9Z004: Menaquinone-specific isochorismate synthase	1.4619883041
+UniRef50_F9Z004: Menaquinone-specific isochorismate synthase|g__Propionibacterium.s__Propionibacterium_acnes	1.4619883041
+UniRef50_Q28UK4: FAD linked oxidase-like protein	1.4619883041
+UniRef50_Q28UK4: FAD linked oxidase-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4619883041
+UniRef50_Q83K97	1.4619883041
+UniRef50_Q83K97|g__Escherichia.s__Escherichia_coli	1.4619883041
+UniRef50_R5ZJK5: Pyruvate dehydrogenase complex repressor	1.4619883041
+UniRef50_R5ZJK5: Pyruvate dehydrogenase complex repressor|g__Clostridium.s__Clostridium_beijerinckii	1.4619883041
+UniRef50_UPI0003041FF9: hypothetical protein	1.4619561965
+UniRef50_UPI0003041FF9: hypothetical protein|unclassified	1.4619561965
+UniRef50_K0HKR5: Cobyrinic acid a,c-diamide synthase	1.4619538729
+UniRef50_K0HKR5: Cobyrinic acid a,c-diamide synthase|g__Propionibacterium.s__Propionibacterium_acnes	1.4619538729
+UniRef50_S1S637	1.4618676100
+UniRef50_S1S637|unclassified	1.4618676100
+UniRef50_M9R962	1.4618655389
+UniRef50_M9R962|unclassified	1.4618655389
+UniRef50_UPI000470A8B4: hypothetical protein, partial	1.4617208859
+UniRef50_UPI000470A8B4: hypothetical protein, partial|unclassified	1.4617208859
+UniRef50_E0XQM6	1.4605759672
+UniRef50_E0XQM6|unclassified	1.4605759672
+UniRef50_O85309: Excision nuclease UvrA (Fragment)	1.4605141102
+UniRef50_O85309: Excision nuclease UvrA (Fragment)|unclassified	1.4605141102
+UniRef50_I3TL38: UDP-2,3-diacylglucosamine hydrolase	1.4598540146
+UniRef50_I3TL38: UDP-2,3-diacylglucosamine hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4598540146
+UniRef50_Q9K0V4: Ribosomal RNA large subunit methyltransferase L	1.4598540146
+UniRef50_Q9K0V4: Ribosomal RNA large subunit methyltransferase L|g__Neisseria.s__Neisseria_meningitidis	1.4598540146
+UniRef50_L0KEH9	1.4598364690
+UniRef50_L0KEH9|unclassified	1.4598364690
+UniRef50_U4GBY1: Putative signal peptide protein	1.4596182854
+UniRef50_U4GBY1: Putative signal peptide protein|unclassified	1.4596182854
+UniRef50_Q03GN4: Pyridine nucleotide-disulfide oxidoreductase	1.4596023126
+UniRef50_Q03GN4: Pyridine nucleotide-disulfide oxidoreductase|g__Clostridium.s__Clostridium_beijerinckii	1.4596023126
+UniRef50_UPI0004791861: chemotaxis protein CheW	1.4595679097
+UniRef50_UPI0004791861: chemotaxis protein CheW|unclassified	1.4595679097
+UniRef50_UPI000470B5F1: hypothetical protein, partial	1.4590052702
+UniRef50_UPI000470B5F1: hypothetical protein, partial|unclassified	1.4590052702
+UniRef50_R0F7I9	1.4585968338
+UniRef50_R0F7I9|unclassified	1.4585968338
+UniRef50_W2UVV3	1.4585802447
+UniRef50_W2UVV3|unclassified	1.4585802447
+UniRef50_A6LVK7: MATE efflux family protein	1.4584684752
+UniRef50_A6LVK7: MATE efflux family protein|g__Clostridium.s__Clostridium_beijerinckii	1.4584684752
+UniRef50_UPI000470B9A7: hypothetical protein	1.4582955820
+UniRef50_UPI000470B9A7: hypothetical protein|unclassified	1.4582955820
+UniRef50_V8F9C0	1.4582308287
+UniRef50_V8F9C0|unclassified	1.4582308287
+UniRef50_D2YK48: Phosphoribosylformylglycinamidine synthase	1.4581024884
+UniRef50_D2YK48: Phosphoribosylformylglycinamidine synthase|unclassified	1.4581024884
+UniRef50_F4S3R3	1.4580363803
+UniRef50_F4S3R3|unclassified	1.4580363803
+UniRef50_K9AD18: Putative relaxase	1.4580344668
+UniRef50_K9AD18: Putative relaxase|unclassified	1.4580344668
+UniRef50_L2TYE3: Putative transposase	1.4579789075
+UniRef50_L2TYE3: Putative transposase|unclassified	1.4579789075
+UniRef50_A6M0I9	1.4577259475
+UniRef50_A6M0I9|g__Clostridium.s__Clostridium_beijerinckii	1.4577259475
+UniRef50_F5ZJK9: Methyltransferase	1.4577259475
+UniRef50_F5ZJK9: Methyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	1.4577259475
+UniRef50_M1MSH2	1.4577259475
+UniRef50_M1MSH2|g__Clostridium.s__Clostridium_beijerinckii	1.4577259475
+UniRef50_Q1C825: Copper homeostasis protein CutC	1.4577259475
+UniRef50_Q1C825: Copper homeostasis protein CutC|g__Escherichia.s__Escherichia_coli	1.4577259475
+UniRef50_R9DPB9: Na+/H+ antiporter NhaC	1.4577259475
+UniRef50_R9DPB9: Na+/H+ antiporter NhaC|g__Staphylococcus.s__Staphylococcus_aureus	1.4577259475
+UniRef50_V4VCN9	1.4577259475
+UniRef50_V4VCN9|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4577259475
+UniRef50_UPI0003B387E8: hypothetical protein, partial	1.4576951781
+UniRef50_UPI0003B387E8: hypothetical protein, partial|unclassified	1.4576951781
+UniRef50_L0HHM1	1.4574734752
+UniRef50_L0HHM1|unclassified	1.4574734752
+UniRef50_UPI0004573F1D: PREDICTED: collagen alpha-1(XXII) chain	1.4573759032
+UniRef50_UPI0004573F1D: PREDICTED: collagen alpha-1(XXII) chain|unclassified	1.4573759032
+UniRef50_UPI0003C75CB7: hypothetical protein	1.4572119330
+UniRef50_UPI0003C75CB7: hypothetical protein|unclassified	1.4572119330
+UniRef50_M1Y549	1.4571106698
+UniRef50_M1Y549|unclassified	1.4571106698
+UniRef50_E3ZDN2: PadR family transcriptional regulator	1.4570903236
+UniRef50_E3ZDN2: PadR family transcriptional regulator|unclassified	1.4570903236
+UniRef50_V4Q726	1.4567667468
+UniRef50_V4Q726|unclassified	1.4567667468
+UniRef50_V6LB35	1.4567266708
+UniRef50_V6LB35|unclassified	1.4567266708
+UniRef50_A6LTV7	1.4566673298
+UniRef50_A6LTV7|g__Clostridium.s__Clostridium_beijerinckii	1.4566673298
+UniRef50_B7I864: TonB-dependent receptor	1.4565613209
+UniRef50_B7I864: TonB-dependent receptor|g__Acinetobacter.s__Acinetobacter_baumannii	1.4565613209
+UniRef50_V6YDN4: Teichoic acid ABC transporter permease (Fragment)	1.4562659855
+UniRef50_V6YDN4: Teichoic acid ABC transporter permease (Fragment)|unclassified	1.4562659855
+UniRef50_X6L1X8	1.4559153847
+UniRef50_X6L1X8|unclassified	1.4559153847
+UniRef50_A0NZT5	1.4558614725
+UniRef50_A0NZT5|unclassified	1.4558614725
+UniRef50_UPI000473A39B: 30S ribosomal protein S15, partial	1.4557022244
+UniRef50_UPI000473A39B: 30S ribosomal protein S15, partial|unclassified	1.4557022244
+UniRef50_A4XVS8	1.4556106388
+UniRef50_A4XVS8|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4556106388
+UniRef50_K0HWR7: LysR family transcriptional regulator	1.4556040757
+UniRef50_K0HWR7: LysR family transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	1.4556040757
+UniRef50_Q2J3G4: ABC transporter related	1.4556040757
+UniRef50_Q2J3G4: ABC transporter related|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4556040757
+UniRef50_S5Y3E4: Glycine cleavage T-protein	1.4556040757
+UniRef50_S5Y3E4: Glycine cleavage T-protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4556040757
+UniRef50_V0VWL0	1.4554242489
+UniRef50_V0VWL0|unclassified	1.4554242489
+UniRef50_T0HSR7	1.4553560589
+UniRef50_T0HSR7|unclassified	1.4553560589
+UniRef50_Q8E4E4	1.4553455979
+UniRef50_Q8E4E4|unclassified	1.4553455979
+UniRef50_H0DGT4	1.4549257669
+UniRef50_H0DGT4|unclassified	1.4549257669
+UniRef50_A1B5M1: 5'-nucleotidase SurE	1.4548085723
+UniRef50_A1B5M1: 5'-nucleotidase SurE|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.2787723785
+UniRef50_A1B5M1: 5'-nucleotidase SurE|unclassified	0.1760361937
+UniRef50_C9XDV8	1.4544830763
+UniRef50_C9XDV8|unclassified	1.4544830763
+UniRef50_UPI0003771410: hypothetical protein	1.4544701133
+UniRef50_UPI0003771410: hypothetical protein|unclassified	1.4544701133
+UniRef50_UPI00046325CB: membrane protein	1.4543076560
+UniRef50_UPI00046325CB: membrane protein|unclassified	1.4543076560
+UniRef50_E2XD47	1.4542667181
+UniRef50_E2XD47|unclassified	1.4542667181
+UniRef50_UPI00047E4FB4: hypothetical protein	1.4542509295
+UniRef50_UPI00047E4FB4: hypothetical protein|unclassified	1.4542509295
+UniRef50_Q4FS54: Dihydroxy-acid dehydratase	1.4542335727
+UniRef50_Q4FS54: Dihydroxy-acid dehydratase|unclassified	1.4542335727
+UniRef50_UPI00030D7518: hypothetical protein	1.4542186197
+UniRef50_UPI00030D7518: hypothetical protein|unclassified	1.4542186197
+UniRef50_UPI00036712C2: hypothetical protein, partial	1.4542163702
+UniRef50_UPI00036712C2: hypothetical protein, partial|unclassified	1.4542163702
+UniRef50_UPI0003B50756: ABC transporter permease	1.4541423257
+UniRef50_UPI0003B50756: ABC transporter permease|unclassified	1.4541423257
+UniRef50_UPI0003F6DA76: hypothetical protein	1.4536378750
+UniRef50_UPI0003F6DA76: hypothetical protein|unclassified	1.4536378750
+UniRef50_A0A010V7A5	1.4534883721
+UniRef50_A0A010V7A5|g__Acinetobacter.s__Acinetobacter_baumannii	1.4534883721
+UniRef50_A6LXH8: MORN repeat-containing protein	1.4534883721
+UniRef50_A6LXH8: MORN repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	1.4534883721
+UniRef50_M3Z1L5	1.4534883721
+UniRef50_M3Z1L5|unclassified	1.4534883721
+UniRef50_W7WKM8	1.4534883721
+UniRef50_W7WKM8|unclassified	1.4534883721
+UniRef50_A0A028W1W7: Membrane domain protein	1.4534883721
+UniRef50_A0A028W1W7: Membrane domain protein|unclassified	1.4534883721
+UniRef50_UPI00035D67F3: hypothetical protein	1.4534436001
+UniRef50_UPI00035D67F3: hypothetical protein|unclassified	1.4534436001
+UniRef50_UPI0003500E4B	1.4533363250
+UniRef50_UPI0003500E4B|unclassified	1.4533363250
+UniRef50_H8FVE2	1.4530690906
+UniRef50_H8FVE2|unclassified	1.4530690906
+UniRef50_UPI00037C2972: hypothetical protein	1.4527364220
+UniRef50_UPI00037C2972: hypothetical protein|unclassified	1.4527364220
+UniRef50_UPI00037DE21F: multidrug transporter	1.4526029189
+UniRef50_UPI00037DE21F: multidrug transporter|unclassified	1.4526029189
+UniRef50_W1XW72	1.4523176682
+UniRef50_W1XW72|unclassified	1.4523176682
+UniRef50_UPI00032919D4: PREDICTED: proline-rich protein 2-like	1.4519757914
+UniRef50_UPI00032919D4: PREDICTED: proline-rich protein 2-like|unclassified	1.4519757914
+UniRef50_D2CL14: MORN repeat protein	1.4519112502
+UniRef50_D2CL14: MORN repeat protein|unclassified	1.4519112502
+UniRef50_UPI0003A9ADDB: hypothetical protein	1.4517368325
+UniRef50_UPI0003A9ADDB: hypothetical protein|unclassified	1.4517368325
+UniRef50_M4S4L0: ParB family protein	1.4517301885
+UniRef50_M4S4L0: ParB family protein|unclassified	1.4517301885
+UniRef50_UPI00047EAEF8: transposase	1.4515122102
+UniRef50_UPI00047EAEF8: transposase|unclassified	1.4515122102
+UniRef50_UPI0004679659: hypothetical protein	1.4515087619
+UniRef50_UPI0004679659: hypothetical protein|unclassified	1.4515087619
+UniRef50_UPI00034B0A61: hypothetical protein	1.4514265878
+UniRef50_UPI00034B0A61: hypothetical protein|unclassified	1.4514265878
+UniRef50_UPI0004441A79: PREDICTED: acetylcholinesterase collagenic tail peptide-like	1.4513788099
+UniRef50_UPI0004441A79: PREDICTED: acetylcholinesterase collagenic tail peptide-like|unclassified	1.4513788099
+UniRef50_A3WH30	1.4511210294
+UniRef50_A3WH30|unclassified	1.4511210294
+UniRef50_W1BDM8: Chaperone protein HscA	1.4510310485
+UniRef50_W1BDM8: Chaperone protein HscA|unclassified	1.4510310485
+UniRef50_UPI00047EE901: hypothetical protein	1.4509072449
+UniRef50_UPI00047EE901: hypothetical protein|unclassified	1.4509072449
+UniRef50_K1D2U8	1.4506131848
+UniRef50_K1D2U8|unclassified	1.4506131848
+UniRef50_A4WSH1: Beta-lactamase domain protein	1.4504613336
+UniRef50_A4WSH1: Beta-lactamase domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1001100110
+UniRef50_A4WSH1: Beta-lactamase domain protein|unclassified	0.3503513226
+UniRef50_E6MWT7: Peptidyl-prolyl cis-trans isomerase	1.4501528994
+UniRef50_E6MWT7: Peptidyl-prolyl cis-trans isomerase|g__Neisseria.s__Neisseria_meningitidis	1.4501528994
+UniRef50_V9VQ76	1.4500308438
+UniRef50_V9VQ76|unclassified	1.4500308438
+UniRef50_T0U4L8	1.4499201474
+UniRef50_T0U4L8|unclassified	1.4499201474
+UniRef50_O85227: Hydrogen cyanide synthase subunit HcnB	1.4498099850
+UniRef50_O85227: Hydrogen cyanide synthase subunit HcnB|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4498099850
+UniRef50_A6LWU3	1.4496899094
+UniRef50_A6LWU3|g__Clostridium.s__Clostridium_beijerinckii	1.4496899094
+UniRef50_UPI0004750CFE: alkylhydroperoxidase	1.4495664846
+UniRef50_UPI0004750CFE: alkylhydroperoxidase|unclassified	1.4495664846
+UniRef50_A4WW75: 3-deoxy-manno-octulosonate cytidylyltransferase	1.4492753623
+UniRef50_A4WW75: 3-deoxy-manno-octulosonate cytidylyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4492753623
+UniRef50_B1Y7H6: 50S ribosomal protein L1	1.4492753623
+UniRef50_B1Y7H6: 50S ribosomal protein L1|g__Acinetobacter.s__Acinetobacter_baumannii	1.4492753623
+UniRef50_B9KR18	1.4492753623
+UniRef50_B9KR18|unclassified	1.4492753623
+UniRef50_M9S3X7: Lyase	1.4492753623
+UniRef50_M9S3X7: Lyase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4492753623
+UniRef50_A5EP16: Glutathione-dependent formaldehyde-activating enzyme	1.4490034062
+UniRef50_A5EP16: Glutathione-dependent formaldehyde-activating enzyme|unclassified	1.4490034062
+UniRef50_M1FDB6	1.4489053899
+UniRef50_M1FDB6|unclassified	1.4489053899
+UniRef50_U3AME1	1.4487914832
+UniRef50_U3AME1|unclassified	1.4487914832
+UniRef50_UPI0003315DC2: PREDICTED: collagen alpha-1(I) chain-like	1.4486721800
+UniRef50_UPI0003315DC2: PREDICTED: collagen alpha-1(I) chain-like|unclassified	1.4486721800
+UniRef50_Q8DX93: Sensor histidine kinase	1.4484454122
+UniRef50_Q8DX93: Sensor histidine kinase|g__Streptococcus.s__Streptococcus_agalactiae	1.4484454122
+UniRef50_A0A038J3C7	1.4481357725
+UniRef50_A0A038J3C7|unclassified	1.4481357725
+UniRef50_Q0RRL9: 60 kDa chaperonin 1	1.4480909352
+UniRef50_Q0RRL9: 60 kDa chaperonin 1|g__Propionibacterium.s__Propionibacterium_acnes	1.4480909352
+UniRef50_W1FXV5: Iron-uptake factor PiuC	1.4478498815
+UniRef50_W1FXV5: Iron-uptake factor PiuC|unclassified	1.4478498815
+UniRef50_S4NPA3	1.4473341171
+UniRef50_S4NPA3|unclassified	1.4473341171
+UniRef50_A9WSL6: 3-ketoacyl-CoA thiolase	1.4471780029
+UniRef50_A9WSL6: 3-ketoacyl-CoA thiolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4471780029
+UniRef50_F3ZY48: Carbohydrate ABC transporter membrane protein 2, CUT1 family	1.4471780029
+UniRef50_F3ZY48: Carbohydrate ABC transporter membrane protein 2, CUT1 family|g__Clostridium.s__Clostridium_beijerinckii	1.4471780029
+UniRef50_G8V9G8: Luciferase family oxidoreductase, group 1	1.4471780029
+UniRef50_G8V9G8: Luciferase family oxidoreductase, group 1|g__Propionibacterium.s__Propionibacterium_acnes	1.4471780029
+UniRef50_Q9RY70: Ornithine carbamoyltransferase	1.4471780029
+UniRef50_Q9RY70: Ornithine carbamoyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	1.4471780029
+UniRef50_S2EM50	1.4471780029
+UniRef50_S2EM50|unclassified	1.4471780029
+UniRef50_V6JSM6: UDP-N-acetylglucosamine 2-epimerase	1.4471780029
+UniRef50_V6JSM6: UDP-N-acetylglucosamine 2-epimerase|g__Propionibacterium.s__Propionibacterium_acnes	1.4471780029
+UniRef50_W6ICD8	1.4471780029
+UniRef50_W6ICD8|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4471780029
+UniRef50_K2FH80	1.4469526599
+UniRef50_K2FH80|unclassified	1.4469526599
+UniRef50_UPI00034D05EE: hypothetical protein	1.4467057590
+UniRef50_UPI00034D05EE: hypothetical protein|unclassified	1.4467057590
+UniRef50_B9KTR7	1.4466682571
+UniRef50_B9KTR7|unclassified	1.4466682571
+UniRef50_UPI00035EA741: hypothetical protein, partial	1.4465032968
+UniRef50_UPI00035EA741: hypothetical protein, partial|unclassified	1.4465032968
+UniRef50_UPI0003B69B45: blue-light sensor BLUF	1.4464581355
+UniRef50_UPI0003B69B45: blue-light sensor BLUF|unclassified	1.4464581355
+UniRef50_A0A033SW92	1.4462900883
+UniRef50_A0A033SW92|unclassified	1.4462900883
+UniRef50_UPI0003667B7C: hypothetical protein	1.4462704131
+UniRef50_UPI0003667B7C: hypothetical protein|unclassified	1.4462704131
+UniRef50_Z2DNH5	1.4462598235
+UniRef50_Z2DNH5|unclassified	1.4462598235
+UniRef50_G6Y3Q8: Transposase IS66	1.4461778806
+UniRef50_G6Y3Q8: Transposase IS66|unclassified	1.4461778806
+UniRef50_Q6A948: Pyridoxal biosynthesis lyase PdxS	1.4460882593
+UniRef50_Q6A948: Pyridoxal biosynthesis lyase PdxS|g__Propionibacterium.s__Propionibacterium_acnes	1.2820512821
+UniRef50_Q6A948: Pyridoxal biosynthesis lyase PdxS|unclassified	0.1640369773
+UniRef50_A0A059IMG8	1.4458163927
+UniRef50_A0A059IMG8|unclassified	1.4458163927
+UniRef50_E9UN53	1.4456770839
+UniRef50_E9UN53|unclassified	1.4456770839
+UniRef50_E8U9D7: Nicotinate phosphoribosyltransferase	1.4456253779
+UniRef50_E8U9D7: Nicotinate phosphoribosyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	1.4456253779
+UniRef50_Q5F8Z9: Formamidopyrimidine-DNA glycosylase	1.4452704771
+UniRef50_Q5F8Z9: Formamidopyrimidine-DNA glycosylase|g__Neisseria.s__Neisseria_meningitidis	1.2106537530
+UniRef50_Q5F8Z9: Formamidopyrimidine-DNA glycosylase|unclassified	0.2346167241
+UniRef50_C6KU66: Plasmid partitioning protein ParA	1.4452180787
+UniRef50_C6KU66: Plasmid partitioning protein ParA|unclassified	1.4452180787
+UniRef50_D9RC05	1.4450867052
+UniRef50_D9RC05|g__Staphylococcus.s__Staphylococcus_aureus	1.4450867052
+UniRef50_F6BNK0: ABC-type transporter, integral membrane subunit	1.4450867052
+UniRef50_F6BNK0: ABC-type transporter, integral membrane subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4450867052
+UniRef50_G5JHY6	1.4450867052
+UniRef50_G5JHY6|unclassified	1.4450867052
+UniRef50_G8VGA8: Protease	1.4450867052
+UniRef50_G8VGA8: Protease|g__Propionibacterium.s__Propionibacterium_acnes	1.4450867052
+UniRef50_P95649: Protein CbbY	1.4450867052
+UniRef50_P95649: Protein CbbY|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4450867052
+UniRef50_V5CIF7	1.4450867052
+UniRef50_V5CIF7|g__Propionibacterium.s__Propionibacterium_acnes	1.4450867052
+UniRef50_A3T0X3	1.4449174039
+UniRef50_A3T0X3|unclassified	1.4449174039
+UniRef50_R6XC37: Oxidoreductase NAD-binding domain protein	1.4446435414
+UniRef50_R6XC37: Oxidoreductase NAD-binding domain protein|unclassified	1.4446435414
+UniRef50_UPI0004195053: hypothetical protein	1.4443532195
+UniRef50_UPI0004195053: hypothetical protein|unclassified	1.4443532195
+UniRef50_V0SM04	1.4442849851
+UniRef50_V0SM04|unclassified	1.4442849851
+UniRef50_UPI000360685D: hypothetical protein, partial	1.4440953011
+UniRef50_UPI000360685D: hypothetical protein, partial|unclassified	1.4440953011
+UniRef50_UPI0004704D11: translation initiation factor IF-3	1.4440650383
+UniRef50_UPI0004704D11: translation initiation factor IF-3|unclassified	1.4440650383
+UniRef50_J2DGW2	1.4437262686
+UniRef50_J2DGW2|unclassified	1.4437262686
+UniRef50_Q9RZA4: Bacteriophytochrome	1.4437185613
+UniRef50_Q9RZA4: Bacteriophytochrome|g__Deinococcus.s__Deinococcus_radiodurans	1.0962803978
+UniRef50_Q9RZA4: Bacteriophytochrome|unclassified	0.3474381635
+UniRef50_A3K5I7	1.4435717217
+UniRef50_A3K5I7|unclassified	1.4435717217
+UniRef50_K2CR97	1.4435695703
+UniRef50_K2CR97|unclassified	1.4435695703
+UniRef50_A0A023S2E8: Peptidase M23	1.4430014430
+UniRef50_A0A023S2E8: Peptidase M23|g__Acinetobacter.s__Acinetobacter_baumannii	1.4430014430
+UniRef50_B3PI58: Undecaprenyl-diphosphatase	1.4430014430
+UniRef50_B3PI58: Undecaprenyl-diphosphatase|g__Acinetobacter.s__Acinetobacter_baumannii	1.4430014430
+UniRef50_E8U946: Methylenetetrahydrofolate reductase	1.4430014430
+UniRef50_E8U946: Methylenetetrahydrofolate reductase|g__Deinococcus.s__Deinococcus_radiodurans	1.4430014430
+UniRef50_G3PTB8	1.4430014430
+UniRef50_G3PTB8|unclassified	1.4430014430
+UniRef50_K7RSJ8: Exonuclease SbcCD, D subunit	1.4430014430
+UniRef50_K7RSJ8: Exonuclease SbcCD, D subunit|g__Propionibacterium.s__Propionibacterium_acnes	1.4430014430
+UniRef50_R6TGL0	1.4430014430
+UniRef50_R6TGL0|unclassified	1.4430014430
+UniRef50_W9CXZ4	1.4430014430
+UniRef50_W9CXZ4|unclassified	1.4430014430
+UniRef50_U5VMK8: NAD-specific glutamate dehydrogenase	1.4424962624
+UniRef50_U5VMK8: NAD-specific glutamate dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4424962624
+UniRef50_Q07GL5: Pirin protein, putative	1.4421553410
+UniRef50_Q07GL5: Pirin protein, putative|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.3495276653
+UniRef50_Q07GL5: Pirin protein, putative|unclassified	0.0926276757
+UniRef50_S5XJ53	1.4420796200
+UniRef50_S5XJ53|unclassified	1.4420796200
+UniRef50_Q81MY9: Probable transaldolase 2	1.4419752561
+UniRef50_Q81MY9: Probable transaldolase 2|unclassified	1.4419752561
+UniRef50_Q0SF17	1.4419610671
+UniRef50_Q0SF17|unclassified	1.4419610671
+UniRef50_UPI00047D6EFE: hypothetical protein	1.4418996753
+UniRef50_UPI00047D6EFE: hypothetical protein|unclassified	1.4418996753
+UniRef50_R1EVW7	1.4418726407
+UniRef50_R1EVW7|unclassified	1.4418726407
+UniRef50_D9UU07: Radical SAM domain-containing protein	1.4414771444
+UniRef50_D9UU07: Radical SAM domain-containing protein|unclassified	1.4414771444
+UniRef50_UPI00035FFD13: hypothetical protein	1.4414425951
+UniRef50_UPI00035FFD13: hypothetical protein|unclassified	1.4414425951
+UniRef50_G7H903	1.4410705552
+UniRef50_G7H903|unclassified	1.4410705552
+UniRef50_UPI00029AD5DC: sugar acetyltransferase	1.4410443576
+UniRef50_UPI00029AD5DC: sugar acetyltransferase|unclassified	1.4410443576
+UniRef50_A6M2G9: Polysaccharide biosynthesis protein	1.4410208528
+UniRef50_A6M2G9: Polysaccharide biosynthesis protein|g__Clostridium.s__Clostridium_beijerinckii	1.4410208528
+UniRef50_UPI000477ABC3: acetamidase	1.4407311466
+UniRef50_UPI000477ABC3: acetamidase|unclassified	1.4407311466
+UniRef50_W4U0B3	1.4406122980
+UniRef50_W4U0B3|unclassified	1.4406122980
+UniRef50_UPI00046F1979: hypothetical protein	1.4404823916
+UniRef50_UPI00046F1979: hypothetical protein|unclassified	1.4404823916
+UniRef50_UPI000441EE37	1.4403496301
+UniRef50_UPI000441EE37|unclassified	1.4403496301
+UniRef50_K7SJY0: CoA-substrate-specific enzyme activase	1.4403095681
+UniRef50_K7SJY0: CoA-substrate-specific enzyme activase|g__Propionibacterium.s__Propionibacterium_acnes	1.4305373817
+UniRef50_K7SJY0: CoA-substrate-specific enzyme activase|unclassified	0.0097721864
+UniRef50_UPI00041879E9: LamB/YcsF family protein	1.4402473015
+UniRef50_UPI00041879E9: LamB/YcsF family protein|unclassified	1.4402473015
+UniRef50_A0A011Q4U2: 50S ribosomal protein L15	1.4400157634
+UniRef50_A0A011Q4U2: 50S ribosomal protein L15|unclassified	1.4400157634
+UniRef50_Y2NJV6	1.4395776532
+UniRef50_Y2NJV6|unclassified	1.4395776532
+UniRef50_A7ZP69: Nucleoside triphosphatase NudI	1.4395422807
+UniRef50_A7ZP69: Nucleoside triphosphatase NudI|unclassified	1.4395422807
+UniRef50_M9VGE0: Anchored repeat ABC transporter, substrate-binding protein	1.4393467652
+UniRef50_M9VGE0: Anchored repeat ABC transporter, substrate-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	1.4393467652
+UniRef50_B1J449: Peptidase M23B	1.4388489209
+UniRef50_B1J449: Peptidase M23B|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4388489209
+UniRef50_R4RNK2	1.4388489209
+UniRef50_R4RNK2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4388489209
+UniRef50_W0YL85	1.4388489209
+UniRef50_W0YL85|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4388489209
+UniRef50_A0A011PVV2	1.4388027450
+UniRef50_A0A011PVV2|unclassified	1.4388027450
+UniRef50_P29931: Bifunctional adenosylcobalamin biosynthesis protein CobP	1.4387536475
+UniRef50_P29931: Bifunctional adenosylcobalamin biosynthesis protein CobP|unclassified	1.4387536475
+UniRef50_C6WWS0	1.4386856244
+UniRef50_C6WWS0|unclassified	1.4386856244
+UniRef50_W1FBQ5	1.4385809213
+UniRef50_W1FBQ5|unclassified	1.4385809213
+UniRef50_C9WLW1: Soluble diheme cytochrome c (Fragment)	1.4384844047
+UniRef50_C9WLW1: Soluble diheme cytochrome c (Fragment)|unclassified	1.4384844047
+UniRef50_Q9RSR1: Polyribonucleotide nucleotidyltransferase	1.4382473142
+UniRef50_Q9RSR1: Polyribonucleotide nucleotidyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	1.4382473142
+UniRef50_W1FJU6: Coenzyme PQQ synthesis protein C	1.4380165434
+UniRef50_W1FJU6: Coenzyme PQQ synthesis protein C|unclassified	1.4380165434
+UniRef50_W7INN8	1.4380044617
+UniRef50_W7INN8|unclassified	1.4380044617
+UniRef50_B6TFA1: Glycine-rich cell wall structural protein 2	1.4377549104
+UniRef50_B6TFA1: Glycine-rich cell wall structural protein 2|unclassified	1.4377549104
+UniRef50_A0A011NHA3	1.4376189657
+UniRef50_A0A011NHA3|unclassified	1.4376189657
+UniRef50_G4SV55	1.4374730149
+UniRef50_G4SV55|unclassified	1.4374730149
+UniRef50_A0A023LIT9	1.4372484876
+UniRef50_A0A023LIT9|unclassified	1.4372484876
+UniRef50_UPI0002DD1873: multidrug transporter	1.4371431915
+UniRef50_UPI0002DD1873: multidrug transporter|unclassified	1.4371431915
+UniRef50_D5AMX5	1.4370799994
+UniRef50_D5AMX5|unclassified	1.4370799994
+UniRef50_J8V3X8	1.4370267428
+UniRef50_J8V3X8|unclassified	1.4370267428
+UniRef50_I4DYY6: 3-ketoacyl-(Acyl carrier protein) reductase	1.4367816092
+UniRef50_I4DYY6: 3-ketoacyl-(Acyl carrier protein) reductase|g__Streptococcus.s__Streptococcus_agalactiae	1.4367816092
+UniRef50_Q3K2I8	1.4367816092
+UniRef50_Q3K2I8|g__Streptococcus.s__Streptococcus_agalactiae	1.4367816092
+UniRef50_Q4K8R5: ErfK/YbiS/YcfS/YnhG family protein	1.4367816092
+UniRef50_Q4K8R5: ErfK/YbiS/YcfS/YnhG family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4367816092
+UniRef50_V2VF38	1.4366837443
+UniRef50_V2VF38|unclassified	1.4366837443
+UniRef50_Q8C3X4: Translation factor Guf1, mitochondrial	1.4366060209
+UniRef50_Q8C3X4: Translation factor Guf1, mitochondrial|g__Propionibacterium.s__Propionibacterium_acnes	1.4366060209
+UniRef50_Q2PB80: Surface protein	1.4365775446
+UniRef50_Q2PB80: Surface protein|g__Streptococcus.s__Streptococcus_agalactiae	1.4365775446
+UniRef50_P75783: Moderate conductance mechanosensitive channel YbiO	1.4364978172
+UniRef50_P75783: Moderate conductance mechanosensitive channel YbiO|g__Escherichia.s__Escherichia_coli	1.4364978172
+UniRef50_J9V1X9	1.4364816300
+UniRef50_J9V1X9|unclassified	1.4364816300
+UniRef50_UPI00037026C5: hypothetical protein	1.4359566867
+UniRef50_UPI00037026C5: hypothetical protein|unclassified	1.4359566867
+UniRef50_E3YG33: DNA translocase FtsK (Fragment)	1.4352030919
+UniRef50_E3YG33: DNA translocase FtsK (Fragment)|unclassified	1.4352030919
+UniRef50_UPI0001BF6FAE: hypothetical protein SMAC_11638, partial	1.4350292351
+UniRef50_UPI0001BF6FAE: hypothetical protein SMAC_11638, partial|unclassified	1.4350292351
+UniRef50_P28822: Dihydropteroate synthase	1.4348132480
+UniRef50_P28822: Dihydropteroate synthase|g__Clostridium.s__Clostridium_beijerinckii	1.2903225806
+UniRef50_P28822: Dihydropteroate synthase|unclassified	0.1444906674
+UniRef50_A0A023NMX1: Peptidoglycan transglycosylase	1.4347202296
+UniRef50_A0A023NMX1: Peptidoglycan transglycosylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4347202296
+UniRef50_A2RG42: 5'-methylthioadenosine/S-adenosylhomocysteine nucleosidase	1.4347202296
+UniRef50_A2RG42: 5'-methylthioadenosine/S-adenosylhomocysteine nucleosidase|g__Streptococcus.s__Streptococcus_mutans	1.4347202296
+UniRef50_G7M9V8: Acylneuraminate cytidylyltransferase	1.4347202296
+UniRef50_G7M9V8: Acylneuraminate cytidylyltransferase|g__Clostridium.s__Clostridium_beijerinckii	1.4347202296
+UniRef50_U3QXL3: NAD(P)H dehydrogenase	1.4347202296
+UniRef50_U3QXL3: NAD(P)H dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.4347202296
+UniRef50_V5VI78: Thiol:disulfide interchange protein	1.4347202296
+UniRef50_V5VI78: Thiol:disulfide interchange protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.4347202296
+UniRef50_W0Z4Y7: Integrase catalytic subunit	1.4347202296
+UniRef50_W0Z4Y7: Integrase catalytic subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4347202296
+UniRef50_W8SSE7: Molybdopterin biosynthesis protein MoeA	1.4347202296
+UniRef50_W8SSE7: Molybdopterin biosynthesis protein MoeA|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4347202296
+UniRef50_UPI0002490C4B: DeoR faimly transcriptional regulator	1.4347091298
+UniRef50_UPI0002490C4B: DeoR faimly transcriptional regulator|unclassified	1.4347091298
+UniRef50_UPI0004661833: hypothetical protein, partial	1.4345280607
+UniRef50_UPI0004661833: hypothetical protein, partial|unclassified	1.4345280607
+UniRef50_UPI00039FFF6C: NrdR family transcriptional regulator	1.4343867131
+UniRef50_UPI00039FFF6C: NrdR family transcriptional regulator|unclassified	1.4343867131
+UniRef50_B9KV70	1.4341486127
+UniRef50_B9KV70|unclassified	1.4341486127
+UniRef50_W0YRX5: Pyoverdine biosynthesis protein PvcA	1.4339945175
+UniRef50_W0YRX5: Pyoverdine biosynthesis protein PvcA|unclassified	1.4339945175
+UniRef50_C1MIL9: Predicted protein (Fragment)	1.4339706935
+UniRef50_C1MIL9: Predicted protein (Fragment)|unclassified	1.4339706935
+UniRef50_UPI0001C37452: ArsR family transcriptional regulator	1.4339201263
+UniRef50_UPI0001C37452: ArsR family transcriptional regulator|unclassified	1.4339201263
+UniRef50_X2LRN1	1.4338598779
+UniRef50_X2LRN1|unclassified	1.4338598779
+UniRef50_J9YYN1	1.4338162355
+UniRef50_J9YYN1|unclassified	1.4338162355
+UniRef50_UPI00031039A1: DNA invertase	1.4334914308
+UniRef50_UPI00031039A1: DNA invertase|unclassified	1.4334914308
+UniRef50_A4W9X4: Adenosine deaminase	1.4332645507
+UniRef50_A4W9X4: Adenosine deaminase|unclassified	1.4332645507
+UniRef50_B0VCQ6: Deoxyribodipyrimidine photolyase (Photoreactivation), FAD-binding	1.4332413431
+UniRef50_B0VCQ6: Deoxyribodipyrimidine photolyase (Photoreactivation), FAD-binding|g__Acinetobacter.s__Acinetobacter_baumannii	0.7309941520
+UniRef50_B0VCQ6: Deoxyribodipyrimidine photolyase (Photoreactivation), FAD-binding|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7022471910
+UniRef50_UPI00037DE16C: hypothetical protein	1.4332179640
+UniRef50_UPI00037DE16C: hypothetical protein|unclassified	1.4332179640
+UniRef50_B7I5R6	1.4329973785
+UniRef50_B7I5R6|g__Acinetobacter.s__Acinetobacter_baumannii	1.4329973785
+UniRef50_Q5QYY0: 3-hydroxydecanoyl-[acyl-carrier-protein] dehydratase	1.4328467303
+UniRef50_Q5QYY0: 3-hydroxydecanoyl-[acyl-carrier-protein] dehydratase|unclassified	1.4328467303
+UniRef50_S4N206	1.4328247889
+UniRef50_S4N206|unclassified	1.4328247889
+UniRef50_UPI0003C7D07B: hypothetical protein	1.4327233460
+UniRef50_UPI0003C7D07B: hypothetical protein|unclassified	1.4327233460
+UniRef50_UPI000400635E: DNA mismatch repair protein MutT	1.4327027185
+UniRef50_UPI000400635E: DNA mismatch repair protein MutT|unclassified	1.4327027185
+UniRef50_H9UNS0	1.4326647564
+UniRef50_H9UNS0|g__Escherichia.s__Escherichia_coli	1.4326647564
+UniRef50_UPI000467A4A6: hypothetical protein	1.4326647564
+UniRef50_UPI000467A4A6: hypothetical protein|unclassified	1.4326647564
+UniRef50_D2B0E6	1.4324002909
+UniRef50_D2B0E6|unclassified	1.4324002909
+UniRef50_UPI0003823B5A: hypothetical protein	1.4323568204
+UniRef50_UPI0003823B5A: hypothetical protein|unclassified	1.4323568204
+UniRef50_UPI0001B42DB2: 3-methyl-2-oxobutanoate hydroxymethyltransferase, partial	1.4323085133
+UniRef50_UPI0001B42DB2: 3-methyl-2-oxobutanoate hydroxymethyltransferase, partial|unclassified	1.4323085133
+UniRef50_B4RMH2	1.4322927964
+UniRef50_B4RMH2|unclassified	1.4322927964
+UniRef50_UPI0003C14327: PREDICTED: sulfate/thiosulfate import ATP-binding protein cysA-like	1.4320922209
+UniRef50_UPI0003C14327: PREDICTED: sulfate/thiosulfate import ATP-binding protein cysA-like|unclassified	1.4320922209
+UniRef50_J8C2V6	1.4320515502
+UniRef50_J8C2V6|unclassified	1.4320515502
+UniRef50_H7BW27	1.4318198204
+UniRef50_H7BW27|unclassified	1.4318198204
+UniRef50_M4JWD8: Peptidase, M48 family protein	1.4317632108
+UniRef50_M4JWD8: Peptidase, M48 family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4317632108
+UniRef50_UPI000475C90A: DDE endonuclease, partial	1.4315257523
+UniRef50_UPI000475C90A: DDE endonuclease, partial|unclassified	1.4315257523
+UniRef50_F6II99: YVTN beta-propeller repeat-containing protein	1.4314546970
+UniRef50_F6II99: YVTN beta-propeller repeat-containing protein|unclassified	1.4314546970
+UniRef50_A0A010U7S7: Glutamine--tRNA ligase	1.4311431143
+UniRef50_A0A010U7S7: Glutamine--tRNA ligase|g__Acinetobacter.s__Acinetobacter_baumannii	1.4311431143
+UniRef50_A0A016QUC8: UvrABC system protein B	1.4309616171
+UniRef50_A0A016QUC8: UvrABC system protein B|g__Deinococcus.s__Deinococcus_radiodurans	1.4309616171
+UniRef50_F0XXV4: Expressed protein (Fragment)	1.4309451853
+UniRef50_F0XXV4: Expressed protein (Fragment)|unclassified	1.4309451853
+UniRef50_U1SII9	1.4308652527
+UniRef50_U1SII9|unclassified	1.4308652527
+UniRef50_E0TD47	1.4308152391
+UniRef50_E0TD47|unclassified	1.4308152391
+UniRef50_A7HSG7: Phosphoribosyl-ATP pyrophosphatase	1.4307236921
+UniRef50_A7HSG7: Phosphoribosyl-ATP pyrophosphatase|unclassified	1.4307236921
+UniRef50_F7TDB7: Sugar phosphate antiporter	1.4306827611
+UniRef50_F7TDB7: Sugar phosphate antiporter|unclassified	1.4306827611
+UniRef50_M8NTW6	1.4306456747
+UniRef50_M8NTW6|unclassified	1.4306456747
+UniRef50_G7SNL0: PfkB family carbohydrate kinase	1.4306151645
+UniRef50_G7SNL0: PfkB family carbohydrate kinase|g__Streptococcus.s__Streptococcus_agalactiae	1.4306151645
+UniRef50_M1N659: Diguanylate phosphodiesterase	1.4306151645
+UniRef50_M1N659: Diguanylate phosphodiesterase|g__Clostridium.s__Clostridium_beijerinckii	1.4306151645
+UniRef50_Q1IVX0: 4-hydroxybenzoate polyprenyltransferase, putative	1.4306151645
+UniRef50_Q1IVX0: 4-hydroxybenzoate polyprenyltransferase, putative|g__Deinococcus.s__Deinococcus_radiodurans	1.4306151645
+UniRef50_Q21UM5: Enoyl-CoA hydratase/isomerase	1.4306151645
+UniRef50_Q21UM5: Enoyl-CoA hydratase/isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4306151645
+UniRef50_UPI00038EB9C0	1.4306151645
+UniRef50_UPI00038EB9C0|unclassified	1.4306151645
+UniRef50_UPI0003C7F072: DNA-binding protein	1.4305757324
+UniRef50_UPI0003C7F072: DNA-binding protein|unclassified	1.4305757324
+UniRef50_UPI0003EF1558: hypothetical protein	1.4304771491
+UniRef50_UPI0003EF1558: hypothetical protein|unclassified	1.4304771491
+UniRef50_A6M1F1: Single-stranded-DNA-specific exonuclease RecJ	1.4304249369
+UniRef50_A6M1F1: Single-stranded-DNA-specific exonuclease RecJ|g__Clostridium.s__Clostridium_beijerinckii	1.4304249369
+UniRef50_P26340: Mannose-1-phosphate guanylyltransferase ManC	1.4303514504
+UniRef50_P26340: Mannose-1-phosphate guanylyltransferase ManC|g__Escherichia.s__Escherichia_coli	1.3333333333
+UniRef50_P26340: Mannose-1-phosphate guanylyltransferase ManC|unclassified	0.0970181170
+UniRef50_UPI00047633B9: transcriptional regulator	1.4300759386
+UniRef50_UPI00047633B9: transcriptional regulator|unclassified	1.4300759386
+UniRef50_Q9RTT6: Cysteine--tRNA ligase	1.4296641655
+UniRef50_Q9RTT6: Cysteine--tRNA ligase|g__Deinococcus.s__Deinococcus_radiodurans	1.4296641655
+UniRef50_H4VTW8	1.4295914142
+UniRef50_H4VTW8|unclassified	1.4295914142
+UniRef50_UPI0002E26765: hypothetical protein	1.4294621328
+UniRef50_UPI0002E26765: hypothetical protein|unclassified	1.4294621328
+UniRef50_UPI0003B67204: aspartyl/glutamyl-tRNA amidotransferase subunit C	1.4291095647
+UniRef50_UPI0003B67204: aspartyl/glutamyl-tRNA amidotransferase subunit C|unclassified	1.4291095647
+UniRef50_R9NL61: AsnC family transcriptional regulator	1.4286518975
+UniRef50_R9NL61: AsnC family transcriptional regulator|unclassified	1.4286518975
+UniRef50_UPI00016AF855: hypothetical protein, partial	1.4285714286
+UniRef50_UPI00016AF855: hypothetical protein, partial|unclassified	1.4285714286
+UniRef50_D7I1Z5: Protein involved in meta-pathway of phenol degradation	1.4285714286
+UniRef50_D7I1Z5: Protein involved in meta-pathway of phenol degradation|g__Acinetobacter.s__Acinetobacter_baumannii	1.4285714286
+UniRef50_Q9RSX2	1.4285714286
+UniRef50_Q9RSX2|g__Deinococcus.s__Deinococcus_radiodurans	1.4285714286
+UniRef50_U5MRF4: Nitrite and sulphite reductase 4Fe-4S region	1.4285714286
+UniRef50_U5MRF4: Nitrite and sulphite reductase 4Fe-4S region|g__Clostridium.s__Clostridium_beijerinckii	1.4285714286
+UniRef50_UPI00036D0EB4: hypothetical protein	1.4285714286
+UniRef50_UPI00036D0EB4: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	1.4285714286
+UniRef50_A0NUF3	1.4284479198
+UniRef50_A0NUF3|unclassified	1.4284479198
+UniRef50_J0Q493	1.4283441646
+UniRef50_J0Q493|unclassified	1.4283441646
+UniRef50_D5G1U6: Clumping factor B (Fragment)	1.4282384085
+UniRef50_D5G1U6: Clumping factor B (Fragment)|unclassified	1.4282384085
+UniRef50_T5D7P0: 1-pyrroline-5-carboxylate dehydrogenase (Fragment)	1.4281933577
+UniRef50_T5D7P0: 1-pyrroline-5-carboxylate dehydrogenase (Fragment)|g__Helicobacter.s__Helicobacter_pylori	1.4281933577
+UniRef50_Y8DMX3	1.4281325473
+UniRef50_Y8DMX3|unclassified	1.4281325473
+UniRef50_UPI00037724B0: ABC transporter	1.4275746929
+UniRef50_UPI00037724B0: ABC transporter|unclassified	1.4275746929
+UniRef50_UPI000476B251: hypothetical protein	1.4273225357
+UniRef50_UPI000476B251: hypothetical protein|unclassified	1.4273225357
+UniRef50_K0RCD0	1.4272397205
+UniRef50_K0RCD0|unclassified	1.4272397205
+UniRef50_U6N2T5	1.4266289172
+UniRef50_U6N2T5|unclassified	1.4266289172
+UniRef50_A6LR97: Acyl-ACP thioesterase	1.4265335235
+UniRef50_A6LR97: Acyl-ACP thioesterase|g__Clostridium.s__Clostridium_beijerinckii	1.4265335235
+UniRef50_A6VAG5: Haloacid dehalogenase, type II	1.4265335235
+UniRef50_A6VAG5: Haloacid dehalogenase, type II|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4265335235
+UniRef50_A9M3Z6: Periplasmic protein	1.4265335235
+UniRef50_A9M3Z6: Periplasmic protein|g__Neisseria.s__Neisseria_meningitidis	1.4265335235
+UniRef50_E6MWK1: SbmA/BacA-like family protein	1.4265335235
+UniRef50_E6MWK1: SbmA/BacA-like family protein|g__Neisseria.s__Neisseria_meningitidis	1.4265335235
+UniRef50_L0DXM3: ADP-heptose--lipooligosaccharide heptosyltransferase II	1.4265335235
+UniRef50_L0DXM3: ADP-heptose--lipooligosaccharide heptosyltransferase II|g__Neisseria.s__Neisseria_meningitidis	1.4265335235
+UniRef50_Q1IYQ4: Prephenate dehydratase	1.4265335235
+UniRef50_Q1IYQ4: Prephenate dehydratase|g__Deinococcus.s__Deinococcus_radiodurans	1.4265335235
+UniRef50_U6ITW6	1.4265335235
+UniRef50_U6ITW6|unclassified	1.4265335235
+UniRef50_UPI00030C5BC0: HNH endonuclease	1.4265335235
+UniRef50_UPI00030C5BC0: HNH endonuclease|unclassified	1.4265335235
+UniRef50_UPI0003332CD8	1.4265335235
+UniRef50_UPI0003332CD8|unclassified	1.4265335235
+UniRef50_V7FBY6	1.4262163140
+UniRef50_V7FBY6|unclassified	1.4262163140
+UniRef50_A0A059IKZ4	1.4258541307
+UniRef50_A0A059IKZ4|unclassified	1.4258541307
+UniRef50_F9JRR2: Cupin domain protein	1.4253848886
+UniRef50_F9JRR2: Cupin domain protein|unclassified	1.4253848886
+UniRef50_Q0FH14	1.4250827838
+UniRef50_Q0FH14|unclassified	1.4250827838
+UniRef50_UPI00026C78C7: 30S ribosomal protein S14	1.4247545454
+UniRef50_UPI00026C78C7: 30S ribosomal protein S14|unclassified	1.4247545454
+UniRef50_A6LSR5: Cell divisionFtsK/SpoIIIE	1.4246568874
+UniRef50_A6LSR5: Cell divisionFtsK/SpoIIIE|g__Clostridium.s__Clostridium_beijerinckii	1.4246568874
+UniRef50_B2TG00: Alpha/beta hydrolase fold	1.4245014245
+UniRef50_B2TG00: Alpha/beta hydrolase fold|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4245014245
+UniRef50_B8DLQ2: ABC transporter related	1.4245014245
+UniRef50_B8DLQ2: ABC transporter related|g__Clostridium.s__Clostridium_beijerinckii	1.4245014245
+UniRef50_D8JM33: Transcriptional regulator	1.4245014245
+UniRef50_D8JM33: Transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	1.4245014245
+UniRef50_UPI00047292C6: dihydropyrimidine dehydrogenase, partial	1.4245014245
+UniRef50_UPI00047292C6: dihydropyrimidine dehydrogenase, partial|unclassified	1.4245014245
+UniRef50_D5ZRU0: Predicted protein	1.4244340227
+UniRef50_D5ZRU0: Predicted protein|unclassified	1.4244340227
+UniRef50_A1Z1V6: RepA (Fragment)	1.4243832609
+UniRef50_A1Z1V6: RepA (Fragment)|unclassified	1.4243832609
+UniRef50_L8M8T9	1.4239961757
+UniRef50_L8M8T9|unclassified	1.4239961757
+UniRef50_I1YEL1: UPF0125 protein Q7C_173	1.4239780489
+UniRef50_I1YEL1: UPF0125 protein Q7C_173|unclassified	1.4239780489
+UniRef50_UPI0003AB78DA: PREDICTED: myosin-K heavy chain-like isoform X1	1.4238578183
+UniRef50_UPI0003AB78DA: PREDICTED: myosin-K heavy chain-like isoform X1|unclassified	1.4238578183
+UniRef50_UPI00036638B7: hypothetical protein	1.4237417041
+UniRef50_UPI00036638B7: hypothetical protein|unclassified	1.4237417041
+UniRef50_UPI00046660B8: cobinamide adenolsyltransferase	1.4237208082
+UniRef50_UPI00046660B8: cobinamide adenolsyltransferase|unclassified	1.4237208082
+UniRef50_UPI00035CF27E: hypothetical protein	1.4231815608
+UniRef50_UPI00035CF27E: hypothetical protein|unclassified	1.4231815608
+UniRef50_Q4L3Y6: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	1.4227121991
+UniRef50_Q4L3Y6: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	1.4227121991
+UniRef50_R4K2P7: Demethylmenaquinone methyltransferase	1.4224751067
+UniRef50_R4K2P7: Demethylmenaquinone methyltransferase|g__Clostridium.s__Clostridium_beijerinckii	1.4224751067
+UniRef50_A6FW55	1.4224351263
+UniRef50_A6FW55|unclassified	1.4224351263
+UniRef50_I6HBG2: HTH-type transcriptional regulator yjdC	1.4224222837
+UniRef50_I6HBG2: HTH-type transcriptional regulator yjdC|unclassified	1.4224222837
+UniRef50_R1CK19	1.4223257933
+UniRef50_R1CK19|unclassified	1.4223257933
+UniRef50_T0YWI9: Molecular chaperone DnaK (Fragment)	1.4221618085
+UniRef50_T0YWI9: Molecular chaperone DnaK (Fragment)|unclassified	1.4221618085
+UniRef50_UPI00047CD6DA: hypothetical protein	1.4220223416
+UniRef50_UPI00047CD6DA: hypothetical protein|unclassified	1.4220223416
+UniRef50_F0Y6N7: Expressed protein (Fragment)	1.4215409321
+UniRef50_F0Y6N7: Expressed protein (Fragment)|unclassified	1.4215409321
+UniRef50_UPI00036DD1D9: hypothetical protein	1.4211912619
+UniRef50_UPI00036DD1D9: hypothetical protein|unclassified	1.4211912619
+UniRef50_UPI0003B52B73: cytochrome B561	1.4210111336
+UniRef50_UPI0003B52B73: cytochrome B561|unclassified	1.4210111336
+UniRef50_UPI0004404464: PREDICTED: transmembrane protein 255B isoform X3	1.4204545455
+UniRef50_UPI0004404464: PREDICTED: transmembrane protein 255B isoform X3|unclassified	1.4204545455
+UniRef50_I6F4S0: Oxidoreductase, pyridine nucleotide-disulfide family	1.4200268881
+UniRef50_I6F4S0: Oxidoreductase, pyridine nucleotide-disulfide family|g__Escherichia.s__Escherichia_coli	1.4200268881
+UniRef50_J3L6D3	1.4199583630
+UniRef50_J3L6D3|unclassified	1.4199583630
+UniRef50_UPI000475B0A4: hypothetical protein	1.4198566126
+UniRef50_UPI000475B0A4: hypothetical protein|unclassified	1.4198566126
+UniRef50_B8IQJ9: PRC-barrel domain protein	1.4195547064
+UniRef50_B8IQJ9: PRC-barrel domain protein|unclassified	1.4195547064
+UniRef50_V6P024: Putative transport protein	1.4192594918
+UniRef50_V6P024: Putative transport protein|unclassified	1.4192594918
+UniRef50_A1B3V8: Flagellar basal-body rod protein FlgB	1.4192189235
+UniRef50_A1B3V8: Flagellar basal-body rod protein FlgB|unclassified	1.4192189235
+UniRef50_UPI0003B5C125: acetyltransferase	1.4191854128
+UniRef50_UPI0003B5C125: acetyltransferase|unclassified	1.4191854128
+UniRef50_A8LU90: WGR domain protein	1.4191058342
+UniRef50_A8LU90: WGR domain protein|unclassified	1.4191058342
+UniRef50_E9YWN4	1.4190632096
+UniRef50_E9YWN4|unclassified	1.4190632096
+UniRef50_X6D6D4	1.4189258825
+UniRef50_X6D6D4|unclassified	1.4189258825
+UniRef50_C5BMG6: Probable cytosol aminopeptidase	1.4187371881
+UniRef50_C5BMG6: Probable cytosol aminopeptidase|g__Acinetobacter.s__Acinetobacter_baumannii	1.4187371881
+UniRef50_E9YFY1: Antibiotic transport system permease	1.4186744566
+UniRef50_E9YFY1: Antibiotic transport system permease|unclassified	1.4186744566
+UniRef50_R6N0L8: Transcriptional regulator PadR family	1.4186633762
+UniRef50_R6N0L8: Transcriptional regulator PadR family|unclassified	1.4186633762
+UniRef50_B7RZE8: NnrU protein	1.4185643803
+UniRef50_B7RZE8: NnrU protein|unclassified	1.4185643803
+UniRef50_E3YXM3	1.4184616479
+UniRef50_E3YXM3|unclassified	1.4184616479
+UniRef50_UPI00036BC009: hypothetical protein	1.4184522964
+UniRef50_UPI00036BC009: hypothetical protein|unclassified	1.4184522964
+UniRef50_A6LT04	1.4184397163
+UniRef50_A6LT04|g__Clostridium.s__Clostridium_beijerinckii	1.4184397163
+UniRef50_F4DTG1: TetR family transcriptional regulator	1.4184397163
+UniRef50_F4DTG1: TetR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4184397163
+UniRef50_G7U546: TENA/THI-4 family protein	1.4184397163
+UniRef50_G7U546: TENA/THI-4 family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.4184397163
+UniRef50_T8P1G7: Multidrug resistance protein MdtO	1.4184397163
+UniRef50_T8P1G7: Multidrug resistance protein MdtO|g__Escherichia.s__Escherichia_coli	1.4184397163
+UniRef50_W8YZG7	1.4175652604
+UniRef50_W8YZG7|unclassified	1.4175652604
+UniRef50_P0AEJ9: Ethanolamine utilization protein EutN	1.4171782461
+UniRef50_P0AEJ9: Ethanolamine utilization protein EutN|unclassified	1.4171782461
+UniRef50_G5SIY2	1.4170468077
+UniRef50_G5SIY2|unclassified	1.4170468077
+UniRef50_F0Y3C6: Expressed protein (Fragment)	1.4168263439
+UniRef50_F0Y3C6: Expressed protein (Fragment)|unclassified	1.4168263439
+UniRef50_UPI000255CD3D: glutamate synthase (NADH) small subunit	1.4166618309
+UniRef50_UPI000255CD3D: glutamate synthase (NADH) small subunit|unclassified	1.4166618309
+UniRef50_L0NF86	1.4165895436
+UniRef50_L0NF86|unclassified	1.4165895436
+UniRef50_A3M193: Transposition Helper	1.4164305949
+UniRef50_A3M193: Transposition Helper|g__Acinetobacter.s__Acinetobacter_baumannii	1.4164305949
+UniRef50_K7S1A1: Membrane-associated protein	1.4164305949
+UniRef50_K7S1A1: Membrane-associated protein|g__Propionibacterium.s__Propionibacterium_acnes	1.4164305949
+UniRef50_P20372: Protocatechuate 3,4-dioxygenase beta chain	1.4164305949
+UniRef50_P20372: Protocatechuate 3,4-dioxygenase beta chain|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4164305949
+UniRef50_P37454: Exodeoxyribonuclease	1.4164305949
+UniRef50_P37454: Exodeoxyribonuclease|g__Helicobacter.s__Helicobacter_pylori	1.4164305949
+UniRef50_UPI00030979D4: hypothetical protein	1.4162987306
+UniRef50_UPI00030979D4: hypothetical protein|unclassified	1.4162987306
+UniRef50_UPI0002BA8A64: hypothetical protein, partial	1.4151746176
+UniRef50_UPI0002BA8A64: hypothetical protein, partial|unclassified	1.4151746176
+UniRef50_UPI00036FCE04: 50S ribosomal protein L13	1.4150935438
+UniRef50_UPI00036FCE04: 50S ribosomal protein L13|unclassified	1.4150935438
+UniRef50_UPI0003712EA8: 50S ribosomal protein L15	1.4149268216
+UniRef50_UPI0003712EA8: 50S ribosomal protein L15|unclassified	1.4149268216
+UniRef50_Q1JUQ1: L-arabonate dehydratase	1.4147024834
+UniRef50_Q1JUQ1: L-arabonate dehydratase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8291873964
+UniRef50_Q1JUQ1: L-arabonate dehydratase|unclassified	0.5855150871
+UniRef50_UPI00037E79C2: hypothetical protein, partial	1.4145798219
+UniRef50_UPI00037E79C2: hypothetical protein, partial|unclassified	1.4145798219
+UniRef50_UPI0003D0CC0C	1.4144546790
+UniRef50_UPI0003D0CC0C|unclassified	1.4144546790
+UniRef50_A1UWS5: Hemin ABC transporter, permease protein	1.4144271570
+UniRef50_A1UWS5: Hemin ABC transporter, permease protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4144271570
+UniRef50_B3PGS4: Flagellar basal-body rod protein FlgF	1.4144271570
+UniRef50_B3PGS4: Flagellar basal-body rod protein FlgF|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4144271570
+UniRef50_D2T8K9: Aromatic-amino-acid transaminase	1.4144271570
+UniRef50_D2T8K9: Aromatic-amino-acid transaminase|g__Neisseria.s__Neisseria_meningitidis	1.4144271570
+UniRef50_H2V0D9	1.4144271570
+UniRef50_H2V0D9|unclassified	1.4144271570
+UniRef50_Q5F5X5	1.4144271570
+UniRef50_Q5F5X5|g__Neisseria.s__Neisseria_meningitidis	1.4144271570
+UniRef50_U5MX92: Sensory transduction protein LytT	1.4144271570
+UniRef50_U5MX92: Sensory transduction protein LytT|g__Clostridium.s__Clostridium_beijerinckii	1.4144271570
+UniRef50_UPI00021A56D7: PREDICTED: lipoprotein-releasing system ATP-binding protein LolD-like	1.4143163541
+UniRef50_UPI00021A56D7: PREDICTED: lipoprotein-releasing system ATP-binding protein LolD-like|unclassified	1.4143163541
+UniRef50_M9VL55	1.4142242263
+UniRef50_M9VL55|g__Propionibacterium.s__Propionibacterium_acnes	1.4142242263
+UniRef50_S3FNI8: Transcriptional regulator PadR-like family protein	1.4139221570
+UniRef50_S3FNI8: Transcriptional regulator PadR-like family protein|unclassified	1.4139221570
+UniRef50_UPI0002555D97: glutamine ABC transporter ATP-binding protein	1.4137187814
+UniRef50_UPI0002555D97: glutamine ABC transporter ATP-binding protein|unclassified	1.4137187814
+UniRef50_A4ILI2: UDP-N-acetylenolpyruvoylglucosamine reductase	1.4136904176
+UniRef50_A4ILI2: UDP-N-acetylenolpyruvoylglucosamine reductase|g__Clostridium.s__Clostridium_beijerinckii	1.2269938650
+UniRef50_A4ILI2: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.1866965525
+UniRef50_S1NKD4: Inner membrane protein yiaV	1.4134705208
+UniRef50_S1NKD4: Inner membrane protein yiaV|unclassified	1.4134705208
+UniRef50_UPI0002556112: hypothetical protein	1.4133764656
+UniRef50_UPI0002556112: hypothetical protein|unclassified	1.4133764656
+UniRef50_X3EZX1	1.4133620492
+UniRef50_X3EZX1|unclassified	1.4133620492
+UniRef50_V9WPU7	1.4133422872
+UniRef50_V9WPU7|unclassified	1.4133422872
+UniRef50_P56117	1.4130765737
+UniRef50_P56117|g__Helicobacter.s__Helicobacter_pylori	1.4130765737
+UniRef50_X5E4K7	1.4129211572
+UniRef50_X5E4K7|unclassified	1.4129211572
+UniRef50_I4NBK9	1.4126383563
+UniRef50_I4NBK9|unclassified	1.4126383563
+UniRef50_F9YZQ4: Endoglycoceramidase	1.4126329893
+UniRef50_F9YZQ4: Endoglycoceramidase|g__Propionibacterium.s__Propionibacterium_acnes	1.4126329893
+UniRef50_A1B420: Peptidase M48, Ste24p	1.4124293785
+UniRef50_A1B420: Peptidase M48, Ste24p|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4124293785
+UniRef50_A6M0K3: Cell wall hydrolase/autolysin	1.4124293785
+UniRef50_A6M0K3: Cell wall hydrolase/autolysin|g__Clostridium.s__Clostridium_beijerinckii	1.4124293785
+UniRef50_F4D3L6	1.4124293785
+UniRef50_F4D3L6|g__Helicobacter.s__Helicobacter_pylori	1.4124293785
+UniRef50_K4L2S2: Flagellar motor rotation protein MotA	1.4124293785
+UniRef50_K4L2S2: Flagellar motor rotation protein MotA|g__Clostridium.s__Clostridium_beijerinckii	1.4124293785
+UniRef50_Q5F4W7	1.4124293785
+UniRef50_Q5F4W7|g__Neisseria.s__Neisseria_meningitidis	1.4124293785
+UniRef50_F0YJ58	1.4119236079
+UniRef50_F0YJ58|unclassified	1.4119236079
+UniRef50_A3JX48	1.4119142996
+UniRef50_A3JX48|unclassified	1.4119142996
+UniRef50_L0KY24	1.4118766498
+UniRef50_L0KY24|unclassified	1.4118766498
+UniRef50_UPI0003B6FCF3: sulfate permease, partial	1.4114913235
+UniRef50_UPI0003B6FCF3: sulfate permease, partial|unclassified	1.4114913235
+UniRef50_K8C2D4: Alpha-xylosidase	1.4114347036
+UniRef50_K8C2D4: Alpha-xylosidase|g__Escherichia.s__Escherichia_coli	1.4114347036
+UniRef50_B9KX65	1.4113122421
+UniRef50_B9KX65|unclassified	1.4113122421
+UniRef50_A6LR80: NAD-dependent aldehyde dehydrogenase-like protein	1.4111498258
+UniRef50_A6LR80: NAD-dependent aldehyde dehydrogenase-like protein|g__Clostridium.s__Clostridium_beijerinckii	1.4111498258
+UniRef50_S6W1U3: Rod shape-determining protein MreC (Fragment)	1.4108045916
+UniRef50_S6W1U3: Rod shape-determining protein MreC (Fragment)|unclassified	1.4108045916
+UniRef50_A0A017YI79: Phage protein	1.4107194491
+UniRef50_A0A017YI79: Phage protein|unclassified	1.4107194491
+UniRef50_F8F839: Acetolactate synthase large subunit	1.4107158250
+UniRef50_F8F839: Acetolactate synthase large subunit|g__Clostridium.s__Clostridium_beijerinckii	1.4107158250
+UniRef50_N5AME8: Phage tail tape measure protein, TP901 family, core region	1.4105176616
+UniRef50_N5AME8: Phage tail tape measure protein, TP901 family, core region|g__Staphylococcus.s__Staphylococcus_aureus	1.4105176616
+UniRef50_A1U4H5: D-3-phosphoglycerate dehydrogenase	1.4104372355
+UniRef50_A1U4H5: D-3-phosphoglycerate dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.4104372355
+UniRef50_A6LUS8: ABC transporter related	1.4104372355
+UniRef50_A6LUS8: ABC transporter related|g__Clostridium.s__Clostridium_beijerinckii	1.4104372355
+UniRef50_K7S768: GHMP kinase, N-terminal domain-containing protein	1.4104372355
+UniRef50_K7S768: GHMP kinase, N-terminal domain-containing protein|g__Propionibacterium.s__Propionibacterium_acnes	1.4104372355
+UniRef50_Q3JGL0	1.4104372355
+UniRef50_Q3JGL0|unclassified	1.4104372355
+UniRef50_B7V7I4	1.4104001642
+UniRef50_B7V7I4|unclassified	1.4104001642
+UniRef50_E9YGX1: ROK family protein	1.4102084913
+UniRef50_E9YGX1: ROK family protein|unclassified	1.4102084913
+UniRef50_B5HEJ3	1.4099556068
+UniRef50_B5HEJ3|unclassified	1.4099556068
+UniRef50_UPI0002E59390: hypothetical protein	1.4097772798
+UniRef50_UPI0002E59390: hypothetical protein|unclassified	1.4097772798
+UniRef50_Q11GZ2: MaoC-like dehydratase	1.4097116947
+UniRef50_Q11GZ2: MaoC-like dehydratase|unclassified	1.4097116947
+UniRef50_H8GVP7: Alpha-amylase	1.4096409710
+UniRef50_H8GVP7: Alpha-amylase|g__Deinococcus.s__Deinococcus_radiodurans	1.4096409710
+UniRef50_U4Q234	1.4093773299
+UniRef50_U4Q234|unclassified	1.4093773299
+UniRef50_UPI00047334A0: transcriptional repressor NrdR, partial	1.4093701633
+UniRef50_UPI00047334A0: transcriptional repressor NrdR, partial|unclassified	1.4093701633
+UniRef50_C3ISU2: Transcriptional regulator, PadR	1.4091371987
+UniRef50_C3ISU2: Transcriptional regulator, PadR|unclassified	1.4091371987
+UniRef50_A0A023HW32: Membrane protein	1.4090163993
+UniRef50_A0A023HW32: Membrane protein|unclassified	1.4090163993
+UniRef50_UPI0002D91428: hypothetical protein	1.4088156884
+UniRef50_UPI0002D91428: hypothetical protein|unclassified	1.4088156884
+UniRef50_Z6JPS1: 4,4'-diaponeurosporene oxidase	1.4087820939
+UniRef50_Z6JPS1: 4,4'-diaponeurosporene oxidase|unclassified	1.4087820939
+UniRef50_UPI0003AD882C: PREDICTED: basic salivary proline-rich protein 2-like	1.4087802457
+UniRef50_UPI0003AD882C: PREDICTED: basic salivary proline-rich protein 2-like|unclassified	1.4087802457
+UniRef50_A0A023RT23: LysR family transcriptional regulator	1.4084507042
+UniRef50_A0A023RT23: LysR family transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	1.4084507042
+UniRef50_F2EIF0: Predicted protein (Fragment)	1.4084507042
+UniRef50_F2EIF0: Predicted protein (Fragment)|unclassified	1.4084507042
+UniRef50_K2AE13	1.4084507042
+UniRef50_K2AE13|unclassified	1.4084507042
+UniRef50_O25657: 4-hydroxy-tetrahydrodipicolinate synthase	1.4084507042
+UniRef50_O25657: 4-hydroxy-tetrahydrodipicolinate synthase|g__Helicobacter.s__Helicobacter_pylori	1.4084507042
+UniRef50_R5I1Z2	1.4084507042
+UniRef50_R5I1Z2|g__Clostridium.s__Clostridium_beijerinckii	1.4084507042
+UniRef50_S5DC92	1.4084507042
+UniRef50_S5DC92|g__Acinetobacter.s__Acinetobacter_baumannii	1.4084507042
+UniRef50_F8XJD7	1.4084395765
+UniRef50_F8XJD7|unclassified	1.4084395765
+UniRef50_Q7VFA9: ATP-dependent RNA helicase DeaD	1.4082657622
+UniRef50_Q7VFA9: ATP-dependent RNA helicase DeaD|g__Helicobacter.s__Helicobacter_pylori	1.3531799729
+UniRef50_Q7VFA9: ATP-dependent RNA helicase DeaD|unclassified	0.0550857893
+UniRef50_Q8D5U6	1.4078632358
+UniRef50_Q8D5U6|unclassified	1.4078632358
+UniRef50_Q9RVW0: DNA-directed RNA polymerase subunit beta'	1.4077994385
+UniRef50_Q9RVW0: DNA-directed RNA polymerase subunit beta'|g__Deinococcus.s__Deinococcus_radiodurans	1.4077994385
+UniRef50_UPI00034B192C: ATP-binding protein	1.4074887626
+UniRef50_UPI00034B192C: ATP-binding protein|unclassified	1.4074887626
+UniRef50_UPI00037465BE: hypothetical protein	1.4070465743
+UniRef50_UPI00037465BE: hypothetical protein|unclassified	1.4070465743
+UniRef50_F0MRE3: Di-/tripeptide transporter	1.4069046169
+UniRef50_F0MRE3: Di-/tripeptide transporter|g__Neisseria.s__Neisseria_meningitidis	1.4069046169
+UniRef50_X0RIT7: Marine sediment metagenome DNA, contig: S01H1_L05905 (Fragment)	1.4069008747
+UniRef50_X0RIT7: Marine sediment metagenome DNA, contig: S01H1_L05905 (Fragment)|unclassified	1.4069008747
+UniRef50_A0A023S292: Lysozyme	1.4064697609
+UniRef50_A0A023S292: Lysozyme|g__Acinetobacter.s__Acinetobacter_baumannii	1.4064697609
+UniRef50_A6LU85	1.4064697609
+UniRef50_A6LU85|g__Clostridium.s__Clostridium_beijerinckii	1.4064697609
+UniRef50_C6S5N2: Putrescine transport system permease protein	1.4064697609
+UniRef50_C6S5N2: Putrescine transport system permease protein|g__Neisseria.s__Neisseria_meningitidis	1.4064697609
+UniRef50_G0DVY7: Cell division protein FtsQ	1.4064697609
+UniRef50_G0DVY7: Cell division protein FtsQ|g__Propionibacterium.s__Propionibacterium_acnes	1.4064697609
+UniRef50_M1MNB9: Transcriptional regulator, RpiR family	1.4064697609
+UniRef50_M1MNB9: Transcriptional regulator, RpiR family|g__Clostridium.s__Clostridium_beijerinckii	1.4064697609
+UniRef50_Q8DY40: Glycerol uptake facilitator protein	1.4064697609
+UniRef50_Q8DY40: Glycerol uptake facilitator protein|g__Streptococcus.s__Streptococcus_agalactiae	1.4064697609
+UniRef50_Q9RTE5	1.4064697609
+UniRef50_Q9RTE5|g__Deinococcus.s__Deinococcus_radiodurans	1.4064697609
+UniRef50_E4BE72	1.4064107517
+UniRef50_E4BE72|unclassified	1.4064107517
+UniRef50_V8DSA2	1.4063853169
+UniRef50_V8DSA2|unclassified	1.4063853169
+UniRef50_Q896L1: Magnesium-protoporphyrin IX monomethyl ester oxidative cyclase	1.4063272368
+UniRef50_Q896L1: Magnesium-protoporphyrin IX monomethyl ester oxidative cyclase|g__Clostridium.s__Clostridium_beijerinckii	1.4063272368
+UniRef50_UPI00016B0021: alkaline phosphatase family protein	1.4062791133
+UniRef50_UPI00016B0021: alkaline phosphatase family protein|unclassified	1.4062791133
+UniRef50_I0E539: Integral membrane protein	1.4062135984
+UniRef50_I0E539: Integral membrane protein|g__Helicobacter.s__Helicobacter_pylori	1.4062135984
+UniRef50_S4KJ73	1.4061355863
+UniRef50_S4KJ73|unclassified	1.4061355863
+UniRef50_B1VR69	1.4059110694
+UniRef50_B1VR69|unclassified	1.4059110694
+UniRef50_G8LGZ5	1.4058676755
+UniRef50_G8LGZ5|unclassified	1.4058676755
+UniRef50_C1CVF4: DNA gyrase subunit A	1.4057081586
+UniRef50_C1CVF4: DNA gyrase subunit A|g__Deinococcus.s__Deinococcus_radiodurans	1.3858615634
+UniRef50_C1CVF4: DNA gyrase subunit A|unclassified	0.0198465952
+UniRef50_V6UVV6	1.4056000429
+UniRef50_V6UVV6|unclassified	1.4056000429
+UniRef50_UPI0003B33E9B: chromophore lyase	1.4054226437
+UniRef50_UPI0003B33E9B: chromophore lyase|unclassified	1.4054226437
+UniRef50_M9VA45	1.4052497439
+UniRef50_M9VA45|g__Propionibacterium.s__Propionibacterium_acnes	1.4052497439
+UniRef50_K0K0K9	1.4050902980
+UniRef50_K0K0K9|unclassified	1.4050902980
+UniRef50_D5AV47	1.4050209282
+UniRef50_D5AV47|unclassified	1.4050209282
+UniRef50_UPI0003B6655B: hypothetical protein	1.4048216100
+UniRef50_UPI0003B6655B: hypothetical protein|unclassified	1.4048216100
+UniRef50_UPI00036DB78E: hypothetical protein	1.4048137239
+UniRef50_UPI00036DB78E: hypothetical protein|unclassified	1.4048137239
+UniRef50_A0A011MUR4: Inner membrane protein YjcH	1.4045994686
+UniRef50_A0A011MUR4: Inner membrane protein YjcH|unclassified	1.4045994686
+UniRef50_B9MFW6: 5'-nucleotidase SurE	1.4044943820
+UniRef50_B9MFW6: 5'-nucleotidase SurE|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4044943820
+UniRef50_C6AVN9: Alpha/beta hydrolase fold protein	1.4044943820
+UniRef50_C6AVN9: Alpha/beta hydrolase fold protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.4044943820
+UniRef50_F0J3V7: Spermidine/putrescine ABC transporter ATP-binding protein	1.4044943820
+UniRef50_F0J3V7: Spermidine/putrescine ABC transporter ATP-binding protein|g__Deinococcus.s__Deinococcus_radiodurans	1.4044943820
+UniRef50_Q7WJ90: Isoprenyl transferase	1.4044943820
+UniRef50_Q7WJ90: Isoprenyl transferase|g__Neisseria.s__Neisseria_meningitidis	1.4044943820
+UniRef50_A4X0R2	1.4041177574
+UniRef50_A4X0R2|unclassified	1.4041177574
+UniRef50_A5N1Z0	1.4040029608
+UniRef50_A5N1Z0|g__Clostridium.s__Clostridium_beijerinckii	1.4040029608
+UniRef50_F5NRF7: Glutamate uptake regulatory protein	1.4037871597
+UniRef50_F5NRF7: Glutamate uptake regulatory protein|unclassified	1.4037871597
+UniRef50_T5L7M9: Major tail subunit (Fragment)	1.4035651230
+UniRef50_T5L7M9: Major tail subunit (Fragment)|unclassified	1.4035651230
+UniRef50_A7UVH7: AGAP011639-PA (Fragment)	1.4034428843
+UniRef50_A7UVH7: AGAP011639-PA (Fragment)|unclassified	1.4034428843
+UniRef50_UPI000464A259: hypothetical protein	1.4033168492
+UniRef50_UPI000464A259: hypothetical protein|unclassified	1.4033168492
+UniRef50_J8VUX1	1.4032058692
+UniRef50_J8VUX1|unclassified	1.4032058692
+UniRef50_Q3IUZ5: SpoVT/AbrB-like cell growth regulatory protein	1.4030519064
+UniRef50_Q3IUZ5: SpoVT/AbrB-like cell growth regulatory protein|unclassified	1.4030519064
+UniRef50_S9QSJ4: Flagellar protein FlgJ, putative	1.4029654277
+UniRef50_S9QSJ4: Flagellar protein FlgJ, putative|unclassified	1.4029654277
+UniRef50_UPI000311B923: hypothetical protein	1.4029313852
+UniRef50_UPI000311B923: hypothetical protein|unclassified	1.4029313852
+UniRef50_G6G0I0: Proteophosphoglycan ppg4 (Fragment)	1.4027090073
+UniRef50_G6G0I0: Proteophosphoglycan ppg4 (Fragment)|unclassified	1.4027090073
+UniRef50_B6TG94: Seed specific protein Bn15D17A	1.4026909968
+UniRef50_B6TG94: Seed specific protein Bn15D17A|unclassified	1.4026909968
+UniRef50_UPI0004663B30: membrane protein	1.4025500690
+UniRef50_UPI0004663B30: membrane protein|unclassified	1.4025500690
+UniRef50_UPI0002B8E386: hypothetical protein	1.4025277839
+UniRef50_UPI0002B8E386: hypothetical protein|unclassified	1.4025277839
+UniRef50_B9KPA3: Lipid A biosynthesis acyltransferase	1.4025245442
+UniRef50_B9KPA3: Lipid A biosynthesis acyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.4025245442
+UniRef50_O83046: Pca operon regulatory protein	1.4025245442
+UniRef50_O83046: Pca operon regulatory protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.4025245442
+UniRef50_Q9ZKM0: Putative	1.4025245442
+UniRef50_Q9ZKM0: Putative|g__Helicobacter.s__Helicobacter_pylori	1.4025245442
+UniRef50_R5BPH7	1.4025245442
+UniRef50_R5BPH7|g__Clostridium.s__Clostridium_beijerinckii	1.4025245442
+UniRef50_C5C1A7: Ribulokinase	1.4023204949
+UniRef50_C5C1A7: Ribulokinase|g__Propionibacterium.s__Propionibacterium_acnes	1.4023204949
+UniRef50_UPI000462E754: glycosyl transferase	1.4022250552
+UniRef50_UPI000462E754: glycosyl transferase|unclassified	1.4022250552
+UniRef50_UPI00036D9D83: hypothetical protein	1.4020585356
+UniRef50_UPI00036D9D83: hypothetical protein|unclassified	1.4020585356
+UniRef50_J6CKR7: Transketolase (Fragment)	1.4020171398
+UniRef50_J6CKR7: Transketolase (Fragment)|unclassified	1.4020171398
+UniRef50_X2GNK8: Arsenic transporter ATPase	1.4019459106
+UniRef50_X2GNK8: Arsenic transporter ATPase|g__Clostridium.s__Clostridium_beijerinckii	1.4019459106
+UniRef50_R6J261	1.4017645687
+UniRef50_R6J261|unclassified	1.4017645687
+UniRef50_UPI00037011A0: hypothetical protein	1.4014990111
+UniRef50_UPI00037011A0: hypothetical protein|unclassified	1.4014990111
+UniRef50_UPI0004193DB1: chemotaxis protein CheY	1.4013877406
+UniRef50_UPI0004193DB1: chemotaxis protein CheY|unclassified	1.4013877406
+UniRef50_T5L924	1.4013005417
+UniRef50_T5L924|unclassified	1.4013005417
+UniRef50_H3VX90: PF11867 domain protein	1.4012763271
+UniRef50_H3VX90: PF11867 domain protein|unclassified	1.4012763271
+UniRef50_G7U5P8: Uracil-xanthine permease	1.4012379975
+UniRef50_G7U5P8: Uracil-xanthine permease|g__Propionibacterium.s__Propionibacterium_acnes	1.4012379975
+UniRef50_O04983: Biotin carboxylase, chloroplastic	1.4009139520
+UniRef50_O04983: Biotin carboxylase, chloroplastic|g__Deinococcus.s__Deinococcus_radiodurans	1.1587485516
+UniRef50_O04983: Biotin carboxylase, chloroplastic|unclassified	0.2421654004
+UniRef50_G0DTN7	1.4005602241
+UniRef50_G0DTN7|g__Propionibacterium.s__Propionibacterium_acnes	1.4005602241
+UniRef50_K0FX78: BRO domain-containing protein	1.4005602241
+UniRef50_K0FX78: BRO domain-containing protein|g__Staphylococcus.s__Staphylococcus_aureus	1.4005602241
+UniRef50_Q04661: Tyrosine-protein phosphatase CpsB	1.4005602241
+UniRef50_Q04661: Tyrosine-protein phosphatase CpsB|g__Streptococcus.s__Streptococcus_agalactiae	1.4005602241
+UniRef50_R6KLR0: Polysaccharide deacetylase	1.4005602241
+UniRef50_R6KLR0: Polysaccharide deacetylase|g__Clostridium.s__Clostridium_beijerinckii	1.4005602241
+UniRef50_T8UIN6: Inner membrane protein ytfF	1.4005602241
+UniRef50_T8UIN6: Inner membrane protein ytfF|unclassified	1.4005602241
+UniRef50_X6ZDD4	1.4001154686
+UniRef50_X6ZDD4|unclassified	1.4001154686
+UniRef50_M4C5X0	1.4000883362
+UniRef50_M4C5X0|unclassified	1.4000883362
+UniRef50_X0UP29: Marine sediment metagenome DNA, contig: S01H1_S10951 (Fragment)	1.3999658378
+UniRef50_X0UP29: Marine sediment metagenome DNA, contig: S01H1_S10951 (Fragment)|unclassified	1.3999658378
+UniRef50_B5UZ36	1.3997609393
+UniRef50_B5UZ36|unclassified	1.3997609393
+UniRef50_J7RBB7: Fdhd protein	1.3996349839
+UniRef50_J7RBB7: Fdhd protein|unclassified	1.3996349839
+UniRef50_G9G2D7: ABC transporter related protein	1.3995801260
+UniRef50_G9G2D7: ABC transporter related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.3995801260
+UniRef50_UPI0003628988: hypothetical protein	1.3995785781
+UniRef50_UPI0003628988: hypothetical protein|unclassified	1.3995785781
+UniRef50_Q47216: E. coli fhuB gene involved in transport of ferrichrome	1.3994068845
+UniRef50_Q47216: E. coli fhuB gene involved in transport of ferrichrome|unclassified	1.3994068845
+UniRef50_UPI00047CBC3F: cytochrome C	1.3993688137
+UniRef50_UPI00047CBC3F: cytochrome C|unclassified	1.3993688137
+UniRef50_X7ELL2: Transcriptional regulator	1.3993608783
+UniRef50_X7ELL2: Transcriptional regulator|unclassified	1.3993608783
+UniRef50_W4UF17: Beta-mannosidase	1.3992219708
+UniRef50_W4UF17: Beta-mannosidase|g__Propionibacterium.s__Propionibacterium_acnes	1.3992219708
+UniRef50_D8ICU4: Pyridine nucleotide-disulfide oxidoreductase family protein	1.3989418755
+UniRef50_D8ICU4: Pyridine nucleotide-disulfide oxidoreductase family protein|g__Clostridium.s__Clostridium_beijerinckii	1.3989418755
+UniRef50_F2AIB1: Molecular chaperone small heat shock protein	1.3986850845
+UniRef50_F2AIB1: Molecular chaperone small heat shock protein|unclassified	1.3986850845
+UniRef50_K6U2B0: ABC-type sugar transport system, periplasmic component	1.3986013986
+UniRef50_K6U2B0: ABC-type sugar transport system, periplasmic component|g__Clostridium.s__Clostridium_beijerinckii	1.3986013986
+UniRef50_Q5ZT84: 4-hydroxyphenylpyruvate dioxygenase	1.3986013986
+UniRef50_Q5ZT84: 4-hydroxyphenylpyruvate dioxygenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3986013986
+UniRef50_I8QJJ6	1.3982688110
+UniRef50_I8QJJ6|unclassified	1.3982688110
+UniRef50_Q8FIS1	1.3982206367
+UniRef50_Q8FIS1|unclassified	1.3982206367
+UniRef50_X5WZY9	1.3979653049
+UniRef50_X5WZY9|unclassified	1.3979653049
+UniRef50_F0KJQ4	1.3979253299
+UniRef50_F0KJQ4|g__Acinetobacter.s__Acinetobacter_baumannii	1.3979253299
+UniRef50_U6KIV8	1.3977203802
+UniRef50_U6KIV8|unclassified	1.3977203802
+UniRef50_Q9RWT8: Sensor histidine kinase	1.3970055131
+UniRef50_Q9RWT8: Sensor histidine kinase|g__Deinococcus.s__Deinococcus_radiodurans	1.3970055131
+UniRef50_U8RNG4	1.3969479530
+UniRef50_U8RNG4|unclassified	1.3969479530
+UniRef50_UPI00042A98EF	1.3968885804
+UniRef50_UPI00042A98EF|unclassified	1.3968885804
+UniRef50_A6WZ44	1.3966517098
+UniRef50_A6WZ44|unclassified	1.3966517098
+UniRef50_A6LUF3: Histidinol-phosphate aminotransferase	1.3966480447
+UniRef50_A6LUF3: Histidinol-phosphate aminotransferase|g__Clostridium.s__Clostridium_beijerinckii	1.3966480447
+UniRef50_C6S4K8: Purine-cytosine transport protein	1.3966480447
+UniRef50_C6S4K8: Purine-cytosine transport protein|g__Neisseria.s__Neisseria_meningitidis	1.3966480447
+UniRef50_C7C0M5	1.3966480447
+UniRef50_C7C0M5|g__Helicobacter.s__Helicobacter_pylori	1.3966480447
+UniRef50_G2L9N3: Short chain dehydrogenase	1.3966480447
+UniRef50_G2L9N3: Short chain dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3966480447
+UniRef50_Q24UB9: NADH-quinone oxidoreductase subunit H	1.3966480447
+UniRef50_Q24UB9: NADH-quinone oxidoreductase subunit H|g__Clostridium.s__Clostridium_beijerinckii	1.3966480447
+UniRef50_UPI00046226A0: histidine kinase, partial	1.3966480447
+UniRef50_UPI00046226A0: histidine kinase, partial|unclassified	1.3966480447
+UniRef50_A4WTJ0	1.3966390336
+UniRef50_A4WTJ0|unclassified	1.3966390336
+UniRef50_S5CP54	1.3965781161
+UniRef50_S5CP54|g__Acinetobacter.s__Acinetobacter_baumannii	1.3965781161
+UniRef50_UPI0003643826: hypothetical protein	1.3964264647
+UniRef50_UPI0003643826: hypothetical protein|unclassified	1.3964264647
+UniRef50_A3K027	1.3963835881
+UniRef50_A3K027|unclassified	1.3963835881
+UniRef50_I4CVC3	1.3962224354
+UniRef50_I4CVC3|unclassified	1.3962224354
+UniRef50_UPI0002F2CBB8: hypothetical protein	1.3961920385
+UniRef50_UPI0002F2CBB8: hypothetical protein|unclassified	1.3961920385
+UniRef50_M1YUE3	1.3961179884
+UniRef50_M1YUE3|unclassified	1.3961179884
+UniRef50_G2L2K0: Penicillin-binding protein 3A	1.3958029055
+UniRef50_G2L2K0: Penicillin-binding protein 3A|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3958029055
+UniRef50_B8GNB7: UPF0260 protein Tgr7_0887	1.3956581714
+UniRef50_B8GNB7: UPF0260 protein Tgr7_0887|unclassified	1.3956581714
+UniRef50_W0Z2H6: ISSod1 transposase	1.3955177143
+UniRef50_W0Z2H6: ISSod1 transposase|unclassified	1.3955177143
+UniRef50_D0K339	1.3953151098
+UniRef50_D0K339|unclassified	1.3953151098
+UniRef50_D7FIK0: WD repeat membrane protein	1.3951883703
+UniRef50_D7FIK0: WD repeat membrane protein|unclassified	1.3951883703
+UniRef50_V0X0Y8	1.3951147081
+UniRef50_V0X0Y8|unclassified	1.3951147081
+UniRef50_Q81IU8	1.3950073421
+UniRef50_Q81IU8|unclassified	1.3950073421
+UniRef50_UPI000273FAB3: PREDICTED: methionine aminopeptidase 2	1.3947285455
+UniRef50_UPI000273FAB3: PREDICTED: methionine aminopeptidase 2|unclassified	1.3947285455
+UniRef50_K2G5P2	1.3947249949
+UniRef50_K2G5P2|unclassified	1.3947249949
+UniRef50_C3L0X3: Proton/sodium-glutamate symporter	1.3947001395
+UniRef50_C3L0X3: Proton/sodium-glutamate symporter|g__Clostridium.s__Clostridium_beijerinckii	1.3947001395
+UniRef50_R5XB78	1.3947001395
+UniRef50_R5XB78|g__Clostridium.s__Clostridium_beijerinckii	1.3947001395
+UniRef50_Z3SAK2	1.3946552798
+UniRef50_Z3SAK2|unclassified	1.3946552798
+UniRef50_E2XIM3: Cytochrome c-type torY domain protein	1.3945912048
+UniRef50_E2XIM3: Cytochrome c-type torY domain protein|unclassified	1.3945912048
+UniRef50_UPI00047891B3: hypothetical protein	1.3945324170
+UniRef50_UPI00047891B3: hypothetical protein|unclassified	1.3945324170
+UniRef50_Q8R9V7: 3-oxoacyl-[acyl-carrier-protein] synthase 3	1.3944385999
+UniRef50_Q8R9V7: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	1.3944385999
+UniRef50_UPI000366A542: hypothetical protein	1.3942779777
+UniRef50_UPI000366A542: hypothetical protein|unclassified	1.3942779777
+UniRef50_W8YR06	1.3942621933
+UniRef50_W8YR06|unclassified	1.3942621933
+UniRef50_T0ESX6: 2Fe-2S iron-sulfur cluster-binding domain protein	1.3942402407
+UniRef50_T0ESX6: 2Fe-2S iron-sulfur cluster-binding domain protein|unclassified	1.3942402407
+UniRef50_UPI0002628324: arginine ABC transporter ATP-binding protein	1.3941792728
+UniRef50_UPI0002628324: arginine ABC transporter ATP-binding protein|unclassified	1.3941792728
+UniRef50_C1DEB1	1.3936237914
+UniRef50_C1DEB1|unclassified	1.3936237914
+UniRef50_UPI000471156C: MULTISPECIES: hypothetical protein	1.3935908809
+UniRef50_UPI000471156C: MULTISPECIES: hypothetical protein|unclassified	1.3935908809
+UniRef50_UPI00030D778A: hypothetical protein	1.3931662998
+UniRef50_UPI00030D778A: hypothetical protein|unclassified	1.3931662998
+UniRef50_N0BBG7	1.3931185801
+UniRef50_N0BBG7|unclassified	1.3931185801
+UniRef50_UPI000365634D: hypothetical protein	1.3930199210
+UniRef50_UPI000365634D: hypothetical protein|unclassified	1.3930199210
+UniRef50_F3JPU1: Transposase, putative	1.3928941317
+UniRef50_F3JPU1: Transposase, putative|unclassified	1.3928941317
+UniRef50_Q2LRC2: UDP-N-acetylglucosamine pyrophosphorylase	1.3927576602
+UniRef50_Q2LRC2: UDP-N-acetylglucosamine pyrophosphorylase|g__Propionibacterium.s__Propionibacterium_acnes	1.3927576602
+UniRef50_B9J5U3	1.3927195983
+UniRef50_B9J5U3|unclassified	1.3927195983
+UniRef50_W4RLM9: Transketolase	1.3926169460
+UniRef50_W4RLM9: Transketolase|unclassified	1.3926169460
+UniRef50_UPI000468F1F3: hypothetical protein, partial	1.3924591429
+UniRef50_UPI000468F1F3: hypothetical protein, partial|unclassified	1.3924591429
+UniRef50_S4NY73: Arginine/serine-rich coiled-coil protein 2 (Fragment)	1.3924283684
+UniRef50_S4NY73: Arginine/serine-rich coiled-coil protein 2 (Fragment)|unclassified	1.3924283684
+UniRef50_H6VX66	1.3918855109
+UniRef50_H6VX66|g__Acinetobacter.s__Acinetobacter_baumannii	1.3918855109
+UniRef50_Q9JZG4: DNA translocase FtsK 2	1.3915951471
+UniRef50_Q9JZG4: DNA translocase FtsK 2|g__Neisseria.s__Neisseria_meningitidis	1.3915951471
+UniRef50_W0Z0L6	1.3915758183
+UniRef50_W0Z0L6|unclassified	1.3915758183
+UniRef50_E9YBE4: GyfbJ	1.3913415964
+UniRef50_E9YBE4: GyfbJ|unclassified	1.3913415964
+UniRef50_A0JTB2: Homodimeric dihydroxyacetone kinase	1.3912899472
+UniRef50_A0JTB2: Homodimeric dihydroxyacetone kinase|g__Propionibacterium.s__Propionibacterium_acnes	1.3912899472
+UniRef50_A0A019IPH8	1.3912751128
+UniRef50_A0A019IPH8|unclassified	1.3912751128
+UniRef50_E3NV91: Aldehyde dehydrogenase	1.3908313457
+UniRef50_E3NV91: Aldehyde dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3908313457
+UniRef50_A7GYD5: Queuine tRNA-ribosyltransferase	1.3908205841
+UniRef50_A7GYD5: Queuine tRNA-ribosyltransferase|g__Helicobacter.s__Helicobacter_pylori	1.3908205841
+UniRef50_D4HAN6: ABC transporter, ATP-binding protein	1.3908205841
+UniRef50_D4HAN6: ABC transporter, ATP-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	1.3908205841
+UniRef50_D8GPH6: Conserved protein with a HD domain	1.3908205841
+UniRef50_D8GPH6: Conserved protein with a HD domain|g__Clostridium.s__Clostridium_beijerinckii	1.3908205841
+UniRef50_F8XHG2	1.3907949233
+UniRef50_F8XHG2|unclassified	1.3907949233
+UniRef50_UPI00042B1BC9: Translation initiation factor 3 protein isoform 3	1.3906939714
+UniRef50_UPI00042B1BC9: Translation initiation factor 3 protein isoform 3|unclassified	1.3906939714
+UniRef50_M9VD27: Hydrolase, alpha/beta domain protein	1.3904900161
+UniRef50_M9VD27: Hydrolase, alpha/beta domain protein|g__Propionibacterium.s__Propionibacterium_acnes	1.3904900161
+UniRef50_K2DIA2	1.3903732281
+UniRef50_K2DIA2|unclassified	1.3903732281
+UniRef50_V6QC91	1.3902633817
+UniRef50_V6QC91|unclassified	1.3902633817
+UniRef50_C7J2J8: Os05g0512400 protein (Fragment)	1.3901654983
+UniRef50_C7J2J8: Os05g0512400 protein (Fragment)|unclassified	1.3901654983
+UniRef50_F0QP46: Flavoprotein	1.3898782287
+UniRef50_F0QP46: Flavoprotein|g__Acinetobacter.s__Acinetobacter_baumannii	1.3898782287
+UniRef50_UPI0002558FB1: sorbosone dehydrogenase	1.3897186225
+UniRef50_UPI0002558FB1: sorbosone dehydrogenase|unclassified	1.3897186225
+UniRef50_UPI0003648088: hypothetical protein, partial	1.3896375866
+UniRef50_UPI0003648088: hypothetical protein, partial|unclassified	1.3896375866
+UniRef50_X7FC77: Flagellar protein FlgJ	1.3896237991
+UniRef50_X7FC77: Flagellar protein FlgJ|unclassified	1.3896237991
+UniRef50_X6G9Z7	1.3895602313
+UniRef50_X6G9Z7|unclassified	1.3895602313
+UniRef50_A0A023RXY1: Helicase	1.3892864474
+UniRef50_A0A023RXY1: Helicase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3892864474
+UniRef50_X8A848	1.3892742715
+UniRef50_X8A848|unclassified	1.3892742715
+UniRef50_B7V9E6: AMP nucleosidase	1.3891138987
+UniRef50_B7V9E6: AMP nucleosidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3891138987
+UniRef50_F0F3L2	1.3889477015
+UniRef50_F0F3L2|unclassified	1.3889477015
+UniRef50_A5WCX2: 30S ribosomal protein S2	1.3888888889
+UniRef50_A5WCX2: 30S ribosomal protein S2|g__Acinetobacter.s__Acinetobacter_baumannii	1.3888888889
+UniRef50_A6LYK1	1.3888888889
+UniRef50_A6LYK1|g__Clostridium.s__Clostridium_beijerinckii	1.3888888889
+UniRef50_E6S2L0: Transporter, major facilitator family protein	1.3888888889
+UniRef50_E6S2L0: Transporter, major facilitator family protein|g__Helicobacter.s__Helicobacter_pylori	1.3888888889
+UniRef50_G7U7J9: Haloacid dehalogenase-like hydrolase	1.3888888889
+UniRef50_G7U7J9: Haloacid dehalogenase-like hydrolase|g__Propionibacterium.s__Propionibacterium_acnes	1.3888888889
+UniRef50_S3MGS8: Gamma-carboxygeranoyl-CoA hydratase	1.3888888889
+UniRef50_S3MGS8: Gamma-carboxygeranoyl-CoA hydratase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3888888889
+UniRef50_S6BCA1	1.3888888889
+UniRef50_S6BCA1|g__Streptococcus.s__Streptococcus_agalactiae	1.3888888889
+UniRef50_UPI000378EE65: hypothetical protein	1.3885863630
+UniRef50_UPI000378EE65: hypothetical protein|unclassified	1.3885863630
+UniRef50_UPI000382C6BB: hypothetical protein	1.3884147701
+UniRef50_UPI000382C6BB: hypothetical protein|unclassified	1.3884147701
+UniRef50_G2L9P8: Transcriptional regulator AcoR	1.3881924646
+UniRef50_G2L9P8: Transcriptional regulator AcoR|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3881924646
+UniRef50_W0YWB4: Putative ABC transporter component	1.3881551295
+UniRef50_W0YWB4: Putative ABC transporter component|unclassified	1.3881551295
+UniRef50_B9E466	1.3877640954
+UniRef50_B9E466|g__Clostridium.s__Clostridium_beijerinckii	1.3877640954
+UniRef50_M1MXN6: ABC-type multidrug transport system, ATPase and permease component	1.3876975772
+UniRef50_M1MXN6: ABC-type multidrug transport system, ATPase and permease component|g__Clostridium.s__Clostridium_beijerinckii	1.3876975772
+UniRef50_UPI0003633584: hypothetical protein	1.3876786607
+UniRef50_UPI0003633584: hypothetical protein|unclassified	1.3876786607
+UniRef50_UPI000363E420: hypothetical protein	1.3876690622
+UniRef50_UPI000363E420: hypothetical protein|unclassified	1.3876690622
+UniRef50_N6UU61	1.3874049198
+UniRef50_N6UU61|unclassified	1.3874049198
+UniRef50_J0ZKB4	1.3873024225
+UniRef50_J0ZKB4|unclassified	1.3873024225
+UniRef50_I7STP3: Binding--dependent transport system inner membrane component family protein (Fragment)	1.3872763041
+UniRef50_I7STP3: Binding--dependent transport system inner membrane component family protein (Fragment)|unclassified	1.3872763041
+UniRef50_Q0A5H2: Binding-protein-dependent transport systems inner membrane component	1.3869632142
+UniRef50_Q0A5H2: Binding-protein-dependent transport systems inner membrane component|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3869632142
+UniRef50_A6LXW3: ApbE family lipoprotein	1.3869625520
+UniRef50_A6LXW3: ApbE family lipoprotein|g__Clostridium.s__Clostridium_beijerinckii	1.3869625520
+UniRef50_V9ZPI5: GntR family transcriptional regulator	1.3869625520
+UniRef50_V9ZPI5: GntR family transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	1.3869625520
+UniRef50_UPI0004798C74: hypothetical protein, partial	1.3866402108
+UniRef50_UPI0004798C74: hypothetical protein, partial|unclassified	1.3866402108
+UniRef50_UPI00035ECED9: hypothetical protein	1.3865472823
+UniRef50_UPI00035ECED9: hypothetical protein|unclassified	1.3865472823
+UniRef50_Q7RNT6	1.3863706658
+UniRef50_Q7RNT6|unclassified	1.3863706658
+UniRef50_UPI000476806A: ArsR family transcriptional regulator	1.3861747657
+UniRef50_UPI000476806A: ArsR family transcriptional regulator|unclassified	1.3861747657
+UniRef50_E3I2G3: HupH hydrogenase expression protein	1.3859826541
+UniRef50_E3I2G3: HupH hydrogenase expression protein|unclassified	1.3859826541
+UniRef50_E4GYP5: Phenylalanine--tRNA ligase beta subunit	1.3859790056
+UniRef50_E4GYP5: Phenylalanine--tRNA ligase beta subunit|g__Propionibacterium.s__Propionibacterium_acnes	1.3859790056
+UniRef50_UPI000429916D: auxin-binding protein	1.3858871513
+UniRef50_UPI000429916D: auxin-binding protein|unclassified	1.3858871513
+UniRef50_UPI0003B6F611: aldehyde-activating protein	1.3856597751
+UniRef50_UPI0003B6F611: aldehyde-activating protein|unclassified	1.3856597751
+UniRef50_UPI00047946DB: hypothetical protein	1.3856120721
+UniRef50_UPI00047946DB: hypothetical protein|unclassified	1.3856120721
+UniRef50_Q0TPV7: Stage V sporulation protein B	1.3855294479
+UniRef50_Q0TPV7: Stage V sporulation protein B|g__Clostridium.s__Clostridium_beijerinckii	1.3855294479
+UniRef50_V7FAC2	1.3853421165
+UniRef50_V7FAC2|unclassified	1.3853421165
+UniRef50_Q9RS28: GGDEF family protein	1.3852260582
+UniRef50_Q9RS28: GGDEF family protein|g__Deinococcus.s__Deinococcus_radiodurans	1.3852260582
+UniRef50_UPI000289CC96: branched-chain amino acid aminotransferase, partial	1.3851723813
+UniRef50_UPI000289CC96: branched-chain amino acid aminotransferase, partial|unclassified	1.3851723813
+UniRef50_UPI000411EE89: hypothetical protein	1.3851123847
+UniRef50_UPI000411EE89: hypothetical protein|unclassified	1.3851123847
+UniRef50_B7H1Y2: LysR substrate binding domain protein	1.3850415512
+UniRef50_B7H1Y2: LysR substrate binding domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.3850415512
+UniRef50_F0KMP6	1.3850415512
+UniRef50_F0KMP6|g__Acinetobacter.s__Acinetobacter_baumannii	1.3850415512
+UniRef50_F5RE86	1.3850415512
+UniRef50_F5RE86|unclassified	1.3850415512
+UniRef50_L9BMS0: Amino ABC transporter, permease , 3-TM region, His/Glu/Gln/Arg/opine family domain protein (Fragment)	1.3850415512
+UniRef50_L9BMS0: Amino ABC transporter, permease , 3-TM region, His/Glu/Gln/Arg/opine family domain protein (Fragment)|g__Escherichia.s__Escherichia_coli	1.3850415512
+UniRef50_P38055: Inner membrane metabolite transport protein YdjE	1.3850415512
+UniRef50_P38055: Inner membrane metabolite transport protein YdjE|g__Escherichia.s__Escherichia_coli	1.3850415512
+UniRef50_Q031D5: Phosphoserine aminotransferase	1.3850415512
+UniRef50_Q031D5: Phosphoserine aminotransferase|g__Streptococcus.s__Streptococcus_agalactiae	1.3850415512
+UniRef50_Q9RRM5: Transport protein, putative	1.3850415512
+UniRef50_Q9RRM5: Transport protein, putative|g__Deinococcus.s__Deinococcus_radiodurans	1.3850415512
+UniRef50_UPI00039BE1AE: response regulator	1.3847717390
+UniRef50_UPI00039BE1AE: response regulator|unclassified	1.3847717390
+UniRef50_E8TEX7: Sterol-binding domain protein	1.3845978857
+UniRef50_E8TEX7: Sterol-binding domain protein|unclassified	1.3845978857
+UniRef50_Q98H94: Mlr2969 protein	1.3845978857
+UniRef50_Q98H94: Mlr2969 protein|unclassified	1.3845978857
+UniRef50_K5HUS9	1.3841783380
+UniRef50_K5HUS9|unclassified	1.3841783380
+UniRef50_UPI0004799757: aminotransferase	1.3839461940
+UniRef50_UPI0004799757: aminotransferase|unclassified	1.3839461940
+UniRef50_F0XZT5	1.3838914615
+UniRef50_F0XZT5|unclassified	1.3838914615
+UniRef50_D3SCE5: Proteophosphoglycan ppg4	1.3833474687
+UniRef50_D3SCE5: Proteophosphoglycan ppg4|unclassified	1.3833474687
+UniRef50_I4EDU8	1.3832051852
+UniRef50_I4EDU8|unclassified	1.3832051852
+UniRef50_Q4FLF9	1.3831980066
+UniRef50_Q4FLF9|unclassified	1.3831980066
+UniRef50_UPI00047AAEAD: transcriptional regulator	1.3831657374
+UniRef50_UPI00047AAEAD: transcriptional regulator|unclassified	1.3831657374
+UniRef50_B9UQA9: PI-1 ancillary protein 2	1.3831258645
+UniRef50_B9UQA9: PI-1 ancillary protein 2|g__Streptococcus.s__Streptococcus_agalactiae	1.3831258645
+UniRef50_K8Z5Y4	1.3829327437
+UniRef50_K8Z5Y4|unclassified	1.3829327437
+UniRef50_E1W2I6	1.3827249659
+UniRef50_E1W2I6|unclassified	1.3827249659
+UniRef50_UPI00046A9523: hypothetical protein	1.3824786434
+UniRef50_UPI00046A9523: hypothetical protein|unclassified	1.3824786434
+UniRef50_E2XEQ4: DNA gyrase inhibitory domain protein	1.3824526022
+UniRef50_E2XEQ4: DNA gyrase inhibitory domain protein|unclassified	1.3824526022
+UniRef50_UPI0003813026: hypothetical protein	1.3823660310
+UniRef50_UPI0003813026: hypothetical protein|unclassified	1.3823660310
+UniRef50_UPI00046A3349: hypothetical protein	1.3823260544
+UniRef50_UPI00046A3349: hypothetical protein|unclassified	1.3823260544
+UniRef50_C4J2K7	1.3819675489
+UniRef50_C4J2K7|unclassified	1.3819675489
+UniRef50_A0A023RWB5: Metal-binding protein	1.3812154696
+UniRef50_A0A023RWB5: Metal-binding protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.3812154696
+UniRef50_A6LV77: Binding-protein-dependent transport systems inner membrane component	1.3812154696
+UniRef50_A6LV77: Binding-protein-dependent transport systems inner membrane component|g__Clostridium.s__Clostridium_beijerinckii	1.3812154696
+UniRef50_C1E2L9: Serine-pyruvate aminotransferase and/or alanine glyoxylate transaminase	1.3812154696
+UniRef50_C1E2L9: Serine-pyruvate aminotransferase and/or alanine glyoxylate transaminase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.3812154696
+UniRef50_Q7N2E0: Transcriptional regulator LsrR	1.3812154696
+UniRef50_Q7N2E0: Transcriptional regulator LsrR|g__Escherichia.s__Escherichia_coli	1.3812154696
+UniRef50_P48924: NADH-ubiquinone oxidoreductase chain 6	1.3810254763
+UniRef50_P48924: NADH-ubiquinone oxidoreductase chain 6|unclassified	1.3810254763
+UniRef50_F2I9T6: Endoribonuclease L-PSP	1.3808499821
+UniRef50_F2I9T6: Endoribonuclease L-PSP|unclassified	1.3808499821
+UniRef50_X1L2W8: Marine sediment metagenome DNA, contig: S06H3_C05311	1.3804880696
+UniRef50_X1L2W8: Marine sediment metagenome DNA, contig: S06H3_C05311|unclassified	1.3804880696
+UniRef50_L5N847	1.3796728511
+UniRef50_L5N847|unclassified	1.3796728511
+UniRef50_A0A023S217	1.3793103448
+UniRef50_A0A023S217|g__Acinetobacter.s__Acinetobacter_baumannii	1.3793103448
+UniRef50_A6LV67	1.3793103448
+UniRef50_A6LV67|g__Clostridium.s__Clostridium_beijerinckii	1.3793103448
+UniRef50_UPI000289B1AB: serine/threonine protein phosphatase	1.3793103448
+UniRef50_UPI000289B1AB: serine/threonine protein phosphatase|unclassified	1.3793103448
+UniRef50_UPI0003735D4D: hypothetical protein, partial	1.3793103448
+UniRef50_UPI0003735D4D: hypothetical protein, partial|unclassified	1.3793103448
+UniRef50_M0SK00	1.3789211540
+UniRef50_M0SK00|unclassified	1.3789211540
+UniRef50_C3LEF0	1.3789159148
+UniRef50_C3LEF0|unclassified	1.3789159148
+UniRef50_UPI0002377DFD: flagellar basal-body rod protein FlgC, partial	1.3786743144
+UniRef50_UPI0002377DFD: flagellar basal-body rod protein FlgC, partial|unclassified	1.3786743144
+UniRef50_G8AML8	1.3783626188
+UniRef50_G8AML8|unclassified	1.3783626188
+UniRef50_Q9I6K2: Guanidinopropionase	1.3781911453
+UniRef50_Q9I6K2: Guanidinopropionase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0471204188
+UniRef50_Q9I6K2: Guanidinopropionase|unclassified	0.3310707264
+UniRef50_UPI00046A3121: hypothetical protein	1.3778509325
+UniRef50_UPI00046A3121: hypothetical protein|unclassified	1.3778509325
+UniRef50_K0HLL2: Peptidase, M24 family protein	1.3777561647
+UniRef50_K0HLL2: Peptidase, M24 family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.3777561647
+UniRef50_L6QIK6: Alcohol dehydrogenase (Fragment)	1.3774675246
+UniRef50_L6QIK6: Alcohol dehydrogenase (Fragment)|unclassified	1.3774675246
+UniRef50_A0A032PTC2	1.3774104683
+UniRef50_A0A032PTC2|unclassified	1.3774104683
+UniRef50_F3Y8Y9: Altronate oxidoreductase	1.3774104683
+UniRef50_F3Y8Y9: Altronate oxidoreductase|g__Clostridium.s__Clostridium_beijerinckii	1.3774104683
+UniRef50_F9YZU0: Transcriptional regulator, GntR family	1.3774104683
+UniRef50_F9YZU0: Transcriptional regulator, GntR family|g__Propionibacterium.s__Propionibacterium_acnes	1.3774104683
+UniRef50_Q5F6M1: Cell division protein FtsQ	1.3774104683
+UniRef50_Q5F6M1: Cell division protein FtsQ|g__Neisseria.s__Neisseria_meningitidis	1.3774104683
+UniRef50_V0VD14	1.3771051299
+UniRef50_V0VD14|unclassified	1.3771051299
+UniRef50_UPI000262F232: cytochrome c oxidase subunit I, partial	1.3769260346
+UniRef50_UPI000262F232: cytochrome c oxidase subunit I, partial|unclassified	1.3769260346
+UniRef50_UPI00046D33BA: hypothetical protein	1.3768686005
+UniRef50_UPI00046D33BA: hypothetical protein|unclassified	1.3768686005
+UniRef50_X4VB27	1.3767598969
+UniRef50_X4VB27|unclassified	1.3767598969
+UniRef50_UPI00035FBE6B: hypothetical protein	1.3765954416
+UniRef50_UPI00035FBE6B: hypothetical protein|unclassified	1.3765954416
+UniRef50_UPI00047C5145: hypothetical protein	1.3765868384
+UniRef50_UPI00047C5145: hypothetical protein|unclassified	1.3765868384
+UniRef50_Q09AM4	1.3765147336
+UniRef50_Q09AM4|unclassified	1.3765147336
+UniRef50_Q7EYD1: Os07g0226200 protein	1.3764411333
+UniRef50_Q7EYD1: Os07g0226200 protein|unclassified	1.3764411333
+UniRef50_F4CKZ8: PE-PGRS family protein	1.3764119509
+UniRef50_F4CKZ8: PE-PGRS family protein|unclassified	1.3764119509
+UniRef50_G8XCT4: ISCR15b transposase	1.3763251489
+UniRef50_G8XCT4: ISCR15b transposase|unclassified	1.3763251489
+UniRef50_UPI00036C9642: hypothetical protein	1.3760717381
+UniRef50_UPI00036C9642: hypothetical protein|unclassified	1.3760717381
+UniRef50_W8T4A8	1.3757442342
+UniRef50_W8T4A8|unclassified	1.3757442342
+UniRef50_A0A011NNA2	1.3756543960
+UniRef50_A0A011NNA2|unclassified	1.3756543960
+UniRef50_A0A016V6H6	1.3755158184
+UniRef50_A0A016V6H6|unclassified	1.3755158184
+UniRef50_A4VNN0: Carboxypeptidase G2	1.3755158184
+UniRef50_A4VNN0: Carboxypeptidase G2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3755158184
+UniRef50_A6LUR8	1.3755158184
+UniRef50_A6LUR8|g__Clostridium.s__Clostridium_beijerinckii	1.3755158184
+UniRef50_Q6FDQ7	1.3755158184
+UniRef50_Q6FDQ7|g__Acinetobacter.s__Acinetobacter_baumannii	1.3755158184
+UniRef50_Q6ZG70	1.3755158184
+UniRef50_Q6ZG70|unclassified	1.3755158184
+UniRef50_UPI00037837B5: hypothetical protein	1.3755158184
+UniRef50_UPI00037837B5: hypothetical protein|unclassified	1.3755158184
+UniRef50_V9QT07: Membrane protein	1.3755158184
+UniRef50_V9QT07: Membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3755158184
+UniRef50_K6X1R4	1.3755103580
+UniRef50_K6X1R4|unclassified	1.3755103580
+UniRef50_R7TKR2	1.3754816891
+UniRef50_R7TKR2|unclassified	1.3754816891
+UniRef50_UPI0003B45A6F: MULTISPECIES: UTP--glucose-1-phosphate uridylyltransferase	1.3749345839
+UniRef50_UPI0003B45A6F: MULTISPECIES: UTP--glucose-1-phosphate uridylyltransferase|unclassified	1.3749345839
+UniRef50_V5SCJ1	1.3749262368
+UniRef50_V5SCJ1|unclassified	1.3749262368
+UniRef50_UPI0003C1A0D8: PREDICTED: NADH-ubiquinone oxidoreductase chain 6-like	1.3745572756
+UniRef50_UPI0003C1A0D8: PREDICTED: NADH-ubiquinone oxidoreductase chain 6-like|unclassified	1.3745572756
+UniRef50_UPI00037D31F2: hypothetical protein	1.3744427708
+UniRef50_UPI00037D31F2: hypothetical protein|unclassified	1.3744427708
+UniRef50_P03860	1.3743841427
+UniRef50_P03860|unclassified	1.3743841427
+UniRef50_R6HU53	1.3743565483
+UniRef50_R6HU53|unclassified	1.3743565483
+UniRef50_UPI00037FC343: hypothetical protein	1.3743296806
+UniRef50_UPI00037FC343: hypothetical protein|unclassified	1.3743296806
+UniRef50_UPI00046692A2: ArsR family transcriptional regulator	1.3740875592
+UniRef50_UPI00046692A2: ArsR family transcriptional regulator|unclassified	1.3740875592
+UniRef50_UPI0003B500DC: hypothetical protein, partial	1.3740330971
+UniRef50_UPI0003B500DC: hypothetical protein, partial|unclassified	1.3740330971
+UniRef50_UPI000473154A: hypothetical protein, partial	1.3736821354
+UniRef50_UPI000473154A: hypothetical protein, partial|unclassified	1.3736821354
+UniRef50_Q5LUP8: Endoribonuclease L-PSP family protein	1.3736265399
+UniRef50_Q5LUP8: Endoribonuclease L-PSP family protein|unclassified	1.3736265399
+UniRef50_A0A030Z1U3	1.3736263736
+UniRef50_A0A030Z1U3|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3736263736
+UniRef50_A3M7V2: 23-dihydro-2,3-dihydroxybenzoate dehydrogenase	1.3736263736
+UniRef50_A3M7V2: 23-dihydro-2,3-dihydroxybenzoate dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3736263736
+UniRef50_A6LQ54	1.3736263736
+UniRef50_A6LQ54|g__Clostridium.s__Clostridium_beijerinckii	1.3736263736
+UniRef50_J2X6M2	1.3736263736
+UniRef50_J2X6M2|unclassified	1.3736263736
+UniRef50_M3V9R2	1.3736263736
+UniRef50_M3V9R2|unclassified	1.3736263736
+UniRef50_UPI00036F62E6: hypothetical protein, partial	1.3736263736
+UniRef50_UPI00036F62E6: hypothetical protein, partial|unclassified	1.3736263736
+UniRef50_UPI00035FDAE3: hypothetical protein	1.3734730885
+UniRef50_UPI00035FDAE3: hypothetical protein|unclassified	1.3734730885
+UniRef50_J5Q2U8	1.3734363105
+UniRef50_J5Q2U8|unclassified	1.3734363105
+UniRef50_UPI000471E116: TetR family transcriptional regulator	1.3731753577
+UniRef50_UPI000471E116: TetR family transcriptional regulator|unclassified	1.3731753577
+UniRef50_R0F414: Phage major capsid protein, HK97 (Fragment)	1.3730704106
+UniRef50_R0F414: Phage major capsid protein, HK97 (Fragment)|unclassified	1.3730704106
+UniRef50_Q16DP8: Chemotactic signal-response protein, putative	1.3729699646
+UniRef50_Q16DP8: Chemotactic signal-response protein, putative|unclassified	1.3729699646
+UniRef50_G2LB76	1.3729626959
+UniRef50_G2LB76|unclassified	1.3729626959
+UniRef50_D0K0C5	1.3729232792
+UniRef50_D0K0C5|g__Helicobacter.s__Helicobacter_pylori	1.3729232792
+UniRef50_D2AF80	1.3727962662
+UniRef50_D2AF80|unclassified	1.3727962662
+UniRef50_X0XE73: Marine sediment metagenome DNA, contig: S01H1_S28115 (Fragment)	1.3727944455
+UniRef50_X0XE73: Marine sediment metagenome DNA, contig: S01H1_S28115 (Fragment)|unclassified	1.3727944455
+UniRef50_D0D8F2: Tripartite ATP-independent periplasmic transporter, DctQ component	1.3726781701
+UniRef50_D0D8F2: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	1.3726781701
+UniRef50_A0A059IIH2	1.3726125056
+UniRef50_A0A059IIH2|unclassified	1.3726125056
+UniRef50_N6V947	1.3725301748
+UniRef50_N6V947|unclassified	1.3725301748
+UniRef50_A0A011QZG0: Respiratory nitrate reductase 2 beta chain	1.3721701693
+UniRef50_A0A011QZG0: Respiratory nitrate reductase 2 beta chain|unclassified	1.3721701693
+UniRef50_A3LGR5: Hypothetical (Fragment)	1.3720623550
+UniRef50_A3LGR5: Hypothetical (Fragment)|unclassified	1.3720623550
+UniRef50_P26850: NADH-ubiquinone oxidoreductase chain 6	1.3719231662
+UniRef50_P26850: NADH-ubiquinone oxidoreductase chain 6|unclassified	1.3719231662
+UniRef50_V6API5: Transcriptional regulatory protein AlgP	1.3719095204
+UniRef50_V6API5: Transcriptional regulatory protein AlgP|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2019230769
+UniRef50_V6API5: Transcriptional regulatory protein AlgP|unclassified	0.1699864435
+UniRef50_A3PGY9	1.3717421125
+UniRef50_A3PGY9|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.3717421125
+UniRef50_A6LR93: 4'-phosphopantetheinyl transferase	1.3717421125
+UniRef50_A6LR93: 4'-phosphopantetheinyl transferase|g__Clostridium.s__Clostridium_beijerinckii	1.3717421125
+UniRef50_A7FRF2: SPFH domain/Band 7 family protein	1.3717421125
+UniRef50_A7FRF2: SPFH domain/Band 7 family protein|g__Clostridium.s__Clostridium_beijerinckii	1.3717421125
+UniRef50_M4ZP55: 7-carboxy-7-deazaguanine synthase	1.3717421125
+UniRef50_M4ZP55: 7-carboxy-7-deazaguanine synthase|g__Helicobacter.s__Helicobacter_pylori	1.3717421125
+UniRef50_Q31WQ9	1.3717421125
+UniRef50_Q31WQ9|g__Escherichia.s__Escherichia_coli	1.3717421125
+UniRef50_W5TY44	1.3717421125
+UniRef50_W5TY44|unclassified	1.3717421125
+UniRef50_UPI000363345A: hypothetical protein	1.3716232799
+UniRef50_UPI000363345A: hypothetical protein|unclassified	1.3716232799
+UniRef50_U9N986	1.3713717475
+UniRef50_U9N986|unclassified	1.3713717475
+UniRef50_UPI00046D8A91: hypothetical protein, partial	1.3712961215
+UniRef50_UPI00046D8A91: hypothetical protein, partial|unclassified	1.3712961215
+UniRef50_Q6ARX8: NADPH-dependent 7-cyano-7-deazaguanine reductase	1.3711933248
+UniRef50_Q6ARX8: NADPH-dependent 7-cyano-7-deazaguanine reductase|g__Acinetobacter.s__Acinetobacter_baumannii	1.2345679012
+UniRef50_Q6ARX8: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.1366254236
+UniRef50_A0A024Q9E9: Multidrug efflux pump VmrA	1.3709986213
+UniRef50_A0A024Q9E9: Multidrug efflux pump VmrA|unclassified	1.3709986213
+UniRef50_C1DWC2: Membrane protein	1.3708988900
+UniRef50_C1DWC2: Membrane protein|unclassified	1.3708988900
+UniRef50_UPI0004150C64: transcriptional regulator	1.3708866797
+UniRef50_UPI0004150C64: transcriptional regulator|unclassified	1.3708866797
+UniRef50_R0FCI2: Primosome assembly protein PriA (Fragment)	1.3706134300
+UniRef50_R0FCI2: Primosome assembly protein PriA (Fragment)|unclassified	1.3706134300
+UniRef50_UPI000372E329: hypothetical protein	1.3703468922
+UniRef50_UPI000372E329: hypothetical protein|unclassified	1.3703468922
+UniRef50_A0A024IS11: Plasmid partitioning protein	1.3701319684
+UniRef50_A0A024IS11: Plasmid partitioning protein|unclassified	1.3701319684
+UniRef50_F9Y3X8	1.3700763181
+UniRef50_F9Y3X8|unclassified	1.3700763181
+UniRef50_A6M2J9: Cell wall/surface repeat protein	1.3698630137
+UniRef50_A6M2J9: Cell wall/surface repeat protein|g__Clostridium.s__Clostridium_beijerinckii	1.3698630137
+UniRef50_B7V6W0: Cobalt-precorrin-5B C(1)-methyltransferase	1.3698630137
+UniRef50_B7V6W0: Cobalt-precorrin-5B C(1)-methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3698630137
+UniRef50_M1IRD2: Dehydrogenase	1.3698630137
+UniRef50_M1IRD2: Dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3698630137
+UniRef50_R1DA63	1.3698630137
+UniRef50_R1DA63|unclassified	1.3698630137
+UniRef50_UPI0003714F08: hypothetical protein	1.3698630137
+UniRef50_UPI0003714F08: hypothetical protein|unclassified	1.3698630137
+UniRef50_UPI0004670DD1: tetrathionate reductase	1.3698630137
+UniRef50_UPI0004670DD1: tetrathionate reductase|unclassified	1.3698630137
+UniRef50_UPI0004673F99: transposase, partial	1.3697848410
+UniRef50_UPI0004673F99: transposase, partial|unclassified	1.3697848410
+UniRef50_Q8FP97: Proline--tRNA ligase	1.3697556306
+UniRef50_Q8FP97: Proline--tRNA ligase|g__Propionibacterium.s__Propionibacterium_acnes	1.3697556306
+UniRef50_F0RPB8: Lon protease	1.3693054320
+UniRef50_F0RPB8: Lon protease|g__Deinococcus.s__Deinococcus_radiodurans	1.3693054320
+UniRef50_E8TFY3: Amidohydrolase 3	1.3690838691
+UniRef50_E8TFY3: Amidohydrolase 3|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.3690838691
+UniRef50_UPI00047200C5: hypothetical protein	1.3689995075
+UniRef50_UPI00047200C5: hypothetical protein|unclassified	1.3689995075
+UniRef50_S8FMA1	1.3688331147
+UniRef50_S8FMA1|unclassified	1.3688331147
+UniRef50_F0P513: Replication initiation protein, truncated	1.3688310782
+UniRef50_F0P513: Replication initiation protein, truncated|unclassified	1.3688310782
+UniRef50_A0RQU5: TonB-dependent receptor protein	1.3688145771
+UniRef50_A0RQU5: TonB-dependent receptor protein|g__Neisseria.s__Neisseria_meningitidis	1.3688145771
+UniRef50_K0FGY1: YkkA	1.3686237820
+UniRef50_K0FGY1: YkkA|unclassified	1.3686237820
+UniRef50_K4KVK1: Drug resistance ABC transporter,ATP-binding protein	1.3686110026
+UniRef50_K4KVK1: Drug resistance ABC transporter,ATP-binding protein|g__Clostridium.s__Clostridium_beijerinckii	1.3686110026
+UniRef50_Q9RRG4	1.3684585062
+UniRef50_Q9RRG4|g__Deinococcus.s__Deinococcus_radiodurans	1.3684585062
+UniRef50_UPI0004774B8C: hypothetical protein	1.3684190821
+UniRef50_UPI0004774B8C: hypothetical protein|unclassified	1.3684190821
+UniRef50_E4AYJ6	1.3681706374
+UniRef50_E4AYJ6|g__Propionibacterium.s__Propionibacterium_acnes	1.3681706374
+UniRef50_K4JSU1	1.3680780001
+UniRef50_K4JSU1|unclassified	1.3680780001
+UniRef50_A4X062	1.3679890561
+UniRef50_A4X062|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.3679890561
+UniRef50_A9KSY6: Sulfate ABC transporter, inner membrane subunit	1.3679890561
+UniRef50_A9KSY6: Sulfate ABC transporter, inner membrane subunit|g__Clostridium.s__Clostridium_beijerinckii	1.3679890561
+UniRef50_M4QX58	1.3679890561
+UniRef50_M4QX58|g__Acinetobacter.s__Acinetobacter_baumannii	1.3679890561
+UniRef50_N2IS47: CRISPR-associated protein CasA/Cse1	1.3679890561
+UniRef50_N2IS47: CRISPR-associated protein CasA/Cse1|g__Escherichia.s__Escherichia_coli	1.3679890561
+UniRef50_Q9RVT7: Phosphatase, putative	1.3679890561
+UniRef50_Q9RVT7: Phosphatase, putative|g__Deinococcus.s__Deinococcus_radiodurans	1.3679890561
+UniRef50_H3WY71	1.3678158666
+UniRef50_H3WY71|unclassified	1.3678158666
+UniRef50_B9THG9	1.3677716974
+UniRef50_B9THG9|unclassified	1.3677716974
+UniRef50_K5CF22	1.3677192308
+UniRef50_K5CF22|unclassified	1.3677192308
+UniRef50_D6AP01	1.3677157713
+UniRef50_D6AP01|unclassified	1.3677157713
+UniRef50_F1YEG7	1.3676432973
+UniRef50_F1YEG7|unclassified	1.3676432973
+UniRef50_UPI00038BC4CE: PREDICTED: formin-like protein 1-like	1.3672787107
+UniRef50_UPI00038BC4CE: PREDICTED: formin-like protein 1-like|unclassified	1.3672787107
+UniRef50_H3WL52	1.3672110135
+UniRef50_H3WL52|unclassified	1.3672110135
+UniRef50_A4VI45	1.3670926068
+UniRef50_A4VI45|unclassified	1.3670926068
+UniRef50_D6ZZT0	1.3669580497
+UniRef50_D6ZZT0|unclassified	1.3669580497
+UniRef50_UPI0002F262C3: hypothetical protein	1.3666705895
+UniRef50_UPI0002F262C3: hypothetical protein|unclassified	1.3666705895
+UniRef50_UPI00016C51C4: hypothetical protein	1.3664883900
+UniRef50_UPI00016C51C4: hypothetical protein|unclassified	1.3664883900
+UniRef50_UPI0002559755: ABC transporter oligopeptide/dipeptide ATP-binding protein	1.3662839334
+UniRef50_UPI0002559755: ABC transporter oligopeptide/dipeptide ATP-binding protein|unclassified	1.3662839334
+UniRef50_A0A024DQN0	1.3662258944
+UniRef50_A0A024DQN0|unclassified	1.3662258944
+UniRef50_A6LZT6: Transcriptional regulator, XRE family	1.3661202186
+UniRef50_A6LZT6: Transcriptional regulator, XRE family|g__Clostridium.s__Clostridium_beijerinckii	1.3661202186
+UniRef50_B9K441	1.3661202186
+UniRef50_B9K441|unclassified	1.3661202186
+UniRef50_K7Y9Y7: Outer membrane protein	1.3661202186
+UniRef50_K7Y9Y7: Outer membrane protein|g__Helicobacter.s__Helicobacter_pylori	1.3661202186
+UniRef50_M1FED4: Bis(5'-nucleosyl)-tetraphosphatase prpE [asymmetrical]	1.3661202186
+UniRef50_M1FED4: Bis(5'-nucleosyl)-tetraphosphatase prpE [asymmetrical]|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3661202186
+UniRef50_UPI0003616C00: hypothetical protein	1.3661202186
+UniRef50_UPI0003616C00: hypothetical protein|g__Streptococcus.s__Streptococcus_mutans	1.3661202186
+UniRef50_A0A024R8N7: HCG1776376, isoform CRA_a	1.3657557693
+UniRef50_A0A024R8N7: HCG1776376, isoform CRA_a|unclassified	1.3657557693
+UniRef50_I5CJV7: Transposase domain-containing protein (Fragment)	1.3653552067
+UniRef50_I5CJV7: Transposase domain-containing protein (Fragment)|unclassified	1.3653552067
+UniRef50_UPI0002FFACA2: hypothetical protein	1.3650909095
+UniRef50_UPI0002FFACA2: hypothetical protein|unclassified	1.3650909095
+UniRef50_UPI000476CF1F: pyridine nucleotide-disulfide oxidoreductase	1.3649734039
+UniRef50_UPI000476CF1F: pyridine nucleotide-disulfide oxidoreductase|unclassified	1.3649734039
+UniRef50_I2DEY3: Flagellar hook-associated protein FlgL	1.3649198775
+UniRef50_I2DEY3: Flagellar hook-associated protein FlgL|g__Helicobacter.s__Helicobacter_pylori	1.3649198775
+UniRef50_UPI000387077C: PREDICTED: serine/threonine-protein phosphatase 1 regulatory subunit 10-like, partial	1.3644108708
+UniRef50_UPI000387077C: PREDICTED: serine/threonine-protein phosphatase 1 regulatory subunit 10-like, partial|unclassified	1.3644108708
+UniRef50_A7FX06: Aminotransferase, class IV	1.3642564802
+UniRef50_A7FX06: Aminotransferase, class IV|g__Clostridium.s__Clostridium_beijerinckii	1.3642564802
+UniRef50_G4LNW7	1.3642564802
+UniRef50_G4LNW7|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3642564802
+UniRef50_K0FRL5: Metallophosphoesterase	1.3642564802
+UniRef50_K0FRL5: Metallophosphoesterase|unclassified	1.3642564802
+UniRef50_Q887Q0: Alginate biosynthesis protein Alg44	1.3642564802
+UniRef50_Q887Q0: Alginate biosynthesis protein Alg44|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3642564802
+UniRef50_T5MN46: Inner membrane amino-acid ABC transporter permease yhdY	1.3642564802
+UniRef50_T5MN46: Inner membrane amino-acid ABC transporter permease yhdY|g__Escherichia.s__Escherichia_coli	1.3642564802
+UniRef50_UPI00037DB293: glutaredoxin, partial	1.3642021220
+UniRef50_UPI00037DB293: glutaredoxin, partial|unclassified	1.3642021220
+UniRef50_UPI0004712CD5: hypothetical protein	1.3641431089
+UniRef50_UPI0004712CD5: hypothetical protein|unclassified	1.3641431089
+UniRef50_UPI00039A3B03: hypothetical protein	1.3640795174
+UniRef50_UPI00039A3B03: hypothetical protein|unclassified	1.3640795174
+UniRef50_D4BW21	1.3638336216
+UniRef50_D4BW21|unclassified	1.3638336216
+UniRef50_Q8R7Y4: Energy-coupling factor transporter ATP-binding protein EcfA1	1.3637427708
+UniRef50_Q8R7Y4: Energy-coupling factor transporter ATP-binding protein EcfA1|g__Clostridium.s__Clostridium_beijerinckii	1.1862396204
+UniRef50_Q8R7Y4: Energy-coupling factor transporter ATP-binding protein EcfA1|unclassified	0.1775031504
+UniRef50_UPI000477A19D: ribose ABC transporter permease	1.3635905760
+UniRef50_UPI000477A19D: ribose ABC transporter permease|unclassified	1.3635905760
+UniRef50_UPI0003776FEB: hypothetical protein	1.3634319321
+UniRef50_UPI0003776FEB: hypothetical protein|unclassified	1.3634319321
+UniRef50_B2UY31: Two-component sensor kinase	1.3634031733
+UniRef50_B2UY31: Two-component sensor kinase|g__Clostridium.s__Clostridium_beijerinckii	1.3634031733
+UniRef50_M9S1Z6: Transcriptional regulator MexT	1.3632288282
+UniRef50_M9S1Z6: Transcriptional regulator MexT|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1074197121
+UniRef50_M9S1Z6: Transcriptional regulator MexT|unclassified	0.2558091162
+UniRef50_U3G504: Inner membrane ABC transporter permease ytfT	1.3626758853
+UniRef50_U3G504: Inner membrane ABC transporter permease ytfT|unclassified	1.3626758853
+UniRef50_B2JLW6: ABC transporter related	1.3623978202
+UniRef50_B2JLW6: ABC transporter related|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3623978202
+UniRef50_F9Z273: Glycerol-3-phosphate dehydrogenase	1.3623978202
+UniRef50_F9Z273: Glycerol-3-phosphate dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	1.3623978202
+UniRef50_UPI00027F5392	1.3623978202
+UniRef50_UPI00027F5392|unclassified	1.3623978202
+UniRef50_UPI0004418ACF	1.3622718787
+UniRef50_UPI0004418ACF|unclassified	1.3622718787
+UniRef50_A5LX88: HAD superfamily protein (Subfamily IIIA) phosphatase	1.3620226983
+UniRef50_A5LX88: HAD superfamily protein (Subfamily IIIA) phosphatase|unclassified	1.3620226983
+UniRef50_UPI0004767DD3: hypothetical protein, partial	1.3620187961
+UniRef50_UPI0004767DD3: hypothetical protein, partial|unclassified	1.3620187961
+UniRef50_UPI000375E527: hypothetical protein, partial	1.3619990919
+UniRef50_UPI000375E527: hypothetical protein, partial|unclassified	1.3619990919
+UniRef50_UPI000475237F: hypothetical protein	1.3614117203
+UniRef50_UPI000475237F: hypothetical protein|unclassified	1.3614117203
+UniRef50_M5EKG8	1.3613237599
+UniRef50_M5EKG8|unclassified	1.3613237599
+UniRef50_A1B0E7: Acetylglutamate kinase	1.3612435353
+UniRef50_A1B0E7: Acetylglutamate kinase|unclassified	1.3612435353
+UniRef50_Y5QGC6: Protein essC	1.3612410101
+UniRef50_Y5QGC6: Protein essC|unclassified	1.3612410101
+UniRef50_UPI000371189D: hypothetical protein	1.3609470788
+UniRef50_UPI000371189D: hypothetical protein|unclassified	1.3609470788
+UniRef50_Q9I0K2	1.3607222281
+UniRef50_Q9I0K2|unclassified	1.3607222281
+UniRef50_F9YXU6	1.3606781723
+UniRef50_F9YXU6|unclassified	1.3606781723
+UniRef50_C1DJ65	1.3606763143
+UniRef50_C1DJ65|unclassified	1.3606763143
+UniRef50_C7MAG4: Phosphate/sulfate permease	1.3606730390
+UniRef50_C7MAG4: Phosphate/sulfate permease|g__Neisseria.s__Neisseria_meningitidis	1.3606730390
+UniRef50_A1VBP9: Binding-protein-dependent transport systems inner membrane component	1.3605442177
+UniRef50_A1VBP9: Binding-protein-dependent transport systems inner membrane component|g__Acinetobacter.s__Acinetobacter_baumannii	1.3605442177
+UniRef50_B2HZL6: Cobalamin synthase	1.3605442177
+UniRef50_B2HZL6: Cobalamin synthase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3605442177
+UniRef50_C7MCQ3: Pseudouridine synthase	1.3605442177
+UniRef50_C7MCQ3: Pseudouridine synthase|g__Propionibacterium.s__Propionibacterium_acnes	1.3605442177
+UniRef50_D8JND0: Universal stress family protein	1.3605442177
+UniRef50_D8JND0: Universal stress family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.3605442177
+UniRef50_G7M0U9: Short-chain dehydrogenase/reductase SDR	1.3605442177
+UniRef50_G7M0U9: Short-chain dehydrogenase/reductase SDR|g__Clostridium.s__Clostridium_beijerinckii	1.3605442177
+UniRef50_I3V422: LysR family transcriptional regulator	1.3605442177
+UniRef50_I3V422: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3605442177
+UniRef50_Q9RY02	1.3605442177
+UniRef50_Q9RY02|g__Deinococcus.s__Deinococcus_radiodurans	1.3605442177
+UniRef50_F0RM84: Long-chain-fatty-acid--CoA ligase	1.3605049403
+UniRef50_F0RM84: Long-chain-fatty-acid--CoA ligase|g__Deinococcus.s__Deinococcus_radiodurans	1.3605049403
+UniRef50_A4X088	1.3603864147
+UniRef50_A4X088|unclassified	1.3603864147
+UniRef50_UPI0003B33C48: hypothetical protein	1.3600074540
+UniRef50_UPI0003B33C48: hypothetical protein|unclassified	1.3600074540
+UniRef50_F0J7L0	1.3599791774
+UniRef50_F0J7L0|unclassified	1.3599791774
+UniRef50_S9SA88	1.3599763683
+UniRef50_S9SA88|unclassified	1.3599763683
+UniRef50_A0A010VN47: FCD domain protein	1.3598161668
+UniRef50_A0A010VN47: FCD domain protein|unclassified	1.3598161668
+UniRef50_UPI0003B52F5E: FAD-dependent oxidoreductase	1.3596112488
+UniRef50_UPI0003B52F5E: FAD-dependent oxidoreductase|unclassified	1.3596112488
+UniRef50_UPI00033189EB	1.3595929200
+UniRef50_UPI00033189EB|unclassified	1.3595929200
+UniRef50_B0RS88	1.3595783465
+UniRef50_B0RS88|unclassified	1.3595783465
+UniRef50_UPI00046602D2: hypothetical protein	1.3595475104
+UniRef50_UPI00046602D2: hypothetical protein|unclassified	1.3595475104
+UniRef50_UPI0003C1816B	1.3594821080
+UniRef50_UPI0003C1816B|unclassified	1.3594821080
+UniRef50_UPI0001FFF9AA: integral membrane protein	1.3592565337
+UniRef50_UPI0001FFF9AA: integral membrane protein|unclassified	1.3592565337
+UniRef50_I1ZK66: Oligoendopeptidase F	1.3592403403
+UniRef50_I1ZK66: Oligoendopeptidase F|g__Streptococcus.s__Streptococcus_agalactiae	1.3592403403
+UniRef50_W6LVB0	1.3590086177
+UniRef50_W6LVB0|unclassified	1.3590086177
+UniRef50_D5RKR4	1.3589348937
+UniRef50_D5RKR4|unclassified	1.3589348937
+UniRef50_E6V7H7: PRC-barrel domain protein	1.3589200607
+UniRef50_E6V7H7: PRC-barrel domain protein|unclassified	1.3589200607
+UniRef50_C2X6L3: Alpha-glucosidase	1.3589007308
+UniRef50_C2X6L3: Alpha-glucosidase|g__Clostridium.s__Clostridium_beijerinckii	1.3589007308
+UniRef50_Q9RPT1: Rhamnolipids biosynthesis 3-oxoacyl-[acyl-carrier-protein] reductase	1.3586956522
+UniRef50_Q9RPT1: Rhamnolipids biosynthesis 3-oxoacyl-[acyl-carrier-protein] reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3586956522
+UniRef50_T9IBZ3: Protein icc	1.3586956522
+UniRef50_T9IBZ3: Protein icc|g__Escherichia.s__Escherichia_coli	1.3586956522
+UniRef50_U8YTJ0	1.3586956522
+UniRef50_U8YTJ0|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3586956522
+UniRef50_UPI0003F072DB: PREDICTED: circumsporozoite protein-like	1.3586956522
+UniRef50_UPI0003F072DB: PREDICTED: circumsporozoite protein-like|unclassified	1.3586956522
+UniRef50_UPI000476C1B0: ATP-dependent DNA helicase RecG, partial	1.3586276799
+UniRef50_UPI000476C1B0: ATP-dependent DNA helicase RecG, partial|unclassified	1.3586276799
+UniRef50_UPI00036DD6AB: hypothetical protein	1.3586023768
+UniRef50_UPI00036DD6AB: hypothetical protein|unclassified	1.3586023768
+UniRef50_B8FRJ8: Proton-translocating NADH-quinone oxidoreductase, chain M	1.3582330439
+UniRef50_B8FRJ8: Proton-translocating NADH-quinone oxidoreductase, chain M|g__Clostridium.s__Clostridium_beijerinckii	1.3582330439
+UniRef50_UPI00034BE6B7: hypothetical protein	1.3579353391
+UniRef50_UPI00034BE6B7: hypothetical protein|unclassified	1.3579353391
+UniRef50_G2U5K3	1.3578940362
+UniRef50_G2U5K3|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2062726176
+UniRef50_G2U5K3|unclassified	0.1516214186
+UniRef50_A0A009HBV1: Ferrous iron transport protein B	1.3578316657
+UniRef50_A0A009HBV1: Ferrous iron transport protein B|g__Acinetobacter.s__Acinetobacter_baumannii	1.3578316657
+UniRef50_Q6AA35: NAD(P) transhydrogenase subunit alpha	1.3577888965
+UniRef50_Q6AA35: NAD(P) transhydrogenase subunit alpha|g__Propionibacterium.s__Propionibacterium_acnes	1.3577888965
+UniRef50_R7QQF1: Stackhouse genomic scaffold, scaffold_590	1.3575296353
+UniRef50_R7QQF1: Stackhouse genomic scaffold, scaffold_590|unclassified	1.3575296353
+UniRef50_D9UQS5: Predicted protein	1.3572683753
+UniRef50_D9UQS5: Predicted protein|unclassified	1.3572683753
+UniRef50_Q40548: Pistil extensin like protein, only (Fragment)	1.3571857439
+UniRef50_Q40548: Pistil extensin like protein, only (Fragment)|unclassified	1.3571857439
+UniRef50_C2ZFP3: Acetyl-CoA acetyltransferase	1.3568521031
+UniRef50_C2ZFP3: Acetyl-CoA acetyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	1.3568521031
+UniRef50_D1BYT2: Succinyl-diaminopimelate desuccinylase	1.3568521031
+UniRef50_D1BYT2: Succinyl-diaminopimelate desuccinylase|g__Propionibacterium.s__Propionibacterium_acnes	1.3568521031
+UniRef50_UPI00036B6DD4: hypothetical protein	1.3568476702
+UniRef50_UPI00036B6DD4: hypothetical protein|unclassified	1.3568476702
+UniRef50_Q168A5	1.3566155112
+UniRef50_Q168A5|unclassified	1.3566155112
+UniRef50_T6JAF7: UPF0194 membrane protein ybhG	1.3562822042
+UniRef50_T6JAF7: UPF0194 membrane protein ybhG|unclassified	1.3562822042
+UniRef50_D9VIL0: Predicted protein	1.3561087135
+UniRef50_D9VIL0: Predicted protein|unclassified	1.3561087135
+UniRef50_L9M9S7: Prokaryotic JAB domain-like protein (Fragment)	1.3558199114
+UniRef50_L9M9S7: Prokaryotic JAB domain-like protein (Fragment)|unclassified	1.3558199114
+UniRef50_UPI0003687602: hypothetical protein	1.3551136137
+UniRef50_UPI0003687602: hypothetical protein|unclassified	1.3551136137
+UniRef50_F8KP37: Phospholipase A1	1.3550135501
+UniRef50_F8KP37: Phospholipase A1|g__Helicobacter.s__Helicobacter_pylori	1.3550135501
+UniRef50_I3XDQ4: TOP1E: DNA topoisomerase 1B	1.3550135501
+UniRef50_I3XDQ4: TOP1E: DNA topoisomerase 1B|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.3550135501
+UniRef50_J5R730	1.3550135501
+UniRef50_J5R730|unclassified	1.3550135501
+UniRef50_O62585: Serine hydroxymethyltransferase, cytosolic	1.3547475698
+UniRef50_O62585: Serine hydroxymethyltransferase, cytosolic|unclassified	1.3547475698
+UniRef50_A0A059LCA1	1.3546696971
+UniRef50_A0A059LCA1|unclassified	1.3546696971
+UniRef50_UPI00036853DF: hypothetical protein	1.3544802431
+UniRef50_UPI00036853DF: hypothetical protein|unclassified	1.3544802431
+UniRef50_UPI0003C11576: PREDICTED: ALK tyrosine kinase receptor-like	1.3543455045
+UniRef50_UPI0003C11576: PREDICTED: ALK tyrosine kinase receptor-like|unclassified	1.3543455045
+UniRef50_UPI00036E857F: MULTISPECIES: hypothetical protein	1.3541968857
+UniRef50_UPI00036E857F: MULTISPECIES: hypothetical protein|unclassified	1.3541968857
+UniRef50_S9SHH9: Cytochrome oxidase maturation protein, cbb3-type	1.3541804423
+UniRef50_S9SHH9: Cytochrome oxidase maturation protein, cbb3-type|unclassified	1.3541804423
+UniRef50_UPI000474E23F: methyl-viologen-reducing hydrogenase subunit delta	1.3541284621
+UniRef50_UPI000474E23F: methyl-viologen-reducing hydrogenase subunit delta|unclassified	1.3541284621
+UniRef50_R4YD99: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	1.3539830556
+UniRef50_R4YD99: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|unclassified	1.3539830556
+UniRef50_R8ZAJ2	1.3531799729
+UniRef50_R8ZAJ2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3531799729
+UniRef50_P77930: Bacterioferritin	1.3530538295
+UniRef50_P77930: Bacterioferritin|unclassified	1.3530538295
+UniRef50_UPI00036A03D0: hypothetical protein, partial	1.3529444253
+UniRef50_UPI00036A03D0: hypothetical protein, partial|unclassified	1.3529444253
+UniRef50_D3LR53	1.3527257522
+UniRef50_D3LR53|unclassified	1.3527257522
+UniRef50_C2PA49: Ankyrin repeat domain protein	1.3527201940
+UniRef50_C2PA49: Ankyrin repeat domain protein|unclassified	1.3527201940
+UniRef50_M2QQT8	1.3524482790
+UniRef50_M2QQT8|unclassified	1.3524482790
+UniRef50_F0Y0N8: Expressed protein (Fragment)	1.3522782184
+UniRef50_F0Y0N8: Expressed protein (Fragment)|unclassified	1.3522782184
+UniRef50_UPI00047811D4: leucine/isoleucine/valine transporter ATP-binding subunit	1.3522609777
+UniRef50_UPI00047811D4: leucine/isoleucine/valine transporter ATP-binding subunit|unclassified	1.3522609777
+UniRef50_I8G444: QmcA domain protein	1.3522417239
+UniRef50_I8G444: QmcA domain protein|unclassified	1.3522417239
+UniRef50_UPI00035D30E0: hypothetical protein	1.3520067863
+UniRef50_UPI00035D30E0: hypothetical protein|unclassified	1.3520067863
+UniRef50_Q2CHF8: Probable replication protein C	1.3518478681
+UniRef50_Q2CHF8: Probable replication protein C|unclassified	1.3518478681
+UniRef50_UPI000469DB47: hypothetical protein	1.3517964474
+UniRef50_UPI000469DB47: hypothetical protein|unclassified	1.3517964474
+UniRef50_W4HMY5	1.3513886465
+UniRef50_W4HMY5|unclassified	1.3513886465
+UniRef50_F9JXI9: Conserved domain protein	1.3513513514
+UniRef50_F9JXI9: Conserved domain protein|unclassified	1.3513513514
+UniRef50_G7U8S7: Siderophore-interacting protein	1.3513513514
+UniRef50_G7U8S7: Siderophore-interacting protein|g__Propionibacterium.s__Propionibacterium_acnes	1.3513513514
+UniRef50_H4B3Q7: ATPase associated with various cellular activities family protein	1.3513513514
+UniRef50_H4B3Q7: ATPase associated with various cellular activities family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	1.3513513514
+UniRef50_H8G706	1.3513513514
+UniRef50_H8G706|unclassified	1.3513513514
+UniRef50_Q9JZR3: 23S rRNA (guanosine-2'-O-)-methyltransferase RlmB	1.3513513514
+UniRef50_Q9JZR3: 23S rRNA (guanosine-2'-O-)-methyltransferase RlmB|g__Neisseria.s__Neisseria_meningitidis	1.3513513514
+UniRef50_R4ZW64: NAD-dependent oxidoreductase	1.3513513514
+UniRef50_R4ZW64: NAD-dependent oxidoreductase|g__Streptococcus.s__Streptococcus_agalactiae	1.3513513514
+UniRef50_UPI000370DDB8: hypothetical protein	1.3513513514
+UniRef50_UPI000370DDB8: hypothetical protein|unclassified	1.3513513514
+UniRef50_R1CIV3	1.3513416294
+UniRef50_R1CIV3|unclassified	1.3513416294
+UniRef50_Q08UF6	1.3512168277
+UniRef50_Q08UF6|unclassified	1.3512168277
+UniRef50_UPI000466C516: flagellar biosynthesis protein FlhB	1.3507002875
+UniRef50_UPI000466C516: flagellar biosynthesis protein FlhB|unclassified	1.3507002875
+UniRef50_Q6A6Z0	1.3505936102
+UniRef50_Q6A6Z0|g__Propionibacterium.s__Propionibacterium_acnes	1.3505936102
+UniRef50_C5C7X4: Chromosomal replication initiator protein DnaA	1.3505275584
+UniRef50_C5C7X4: Chromosomal replication initiator protein DnaA|g__Propionibacterium.s__Propionibacterium_acnes	1.3505275584
+UniRef50_U2Z113	1.3504291396
+UniRef50_U2Z113|unclassified	1.3504291396
+UniRef50_UPI0004765EFE: hypothetical protein	1.3498293067
+UniRef50_UPI0004765EFE: hypothetical protein|unclassified	1.3498293067
+UniRef50_A4WWW6: TonB family protein	1.3495276653
+UniRef50_A4WWW6: TonB family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.3495276653
+UniRef50_G4LPP5: Basic amino acid, basic peptide and imipenem outer membrane porin	1.3495276653
+UniRef50_G4LPP5: Basic amino acid, basic peptide and imipenem outer membrane porin|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3495276653
+UniRef50_G8VIZ2: Dicarboxylate transport protein / alpha-ketoglutarate permease	1.3495276653
+UniRef50_G8VIZ2: Dicarboxylate transport protein / alpha-ketoglutarate permease|g__Propionibacterium.s__Propionibacterium_acnes	1.3495276653
+UniRef50_V8GI62: Aldo/keto reductase (Fragment)	1.3494952007
+UniRef50_V8GI62: Aldo/keto reductase (Fragment)|unclassified	1.3494952007
+UniRef50_UPI000420FE75: sterol-binding protein	1.3494890281
+UniRef50_UPI000420FE75: sterol-binding protein|unclassified	1.3494890281
+UniRef50_UPI000299D11C: flagellar biosynthesis protein FliQ	1.3492457777
+UniRef50_UPI000299D11C: flagellar biosynthesis protein FliQ|unclassified	1.3492457777
+UniRef50_UPI00037D3C0C: transcriptional regulator	1.3490639590
+UniRef50_UPI00037D3C0C: transcriptional regulator|unclassified	1.3490639590
+UniRef50_Q8FDG2	1.3490221605
+UniRef50_Q8FDG2|unclassified	1.3490221605
+UniRef50_P27175: Quinoprotein glucose dehydrogenase	1.3489215539
+UniRef50_P27175: Quinoprotein glucose dehydrogenase|g__Escherichia.s__Escherichia_coli	1.3489215539
+UniRef50_E0XR78	1.3489087996
+UniRef50_E0XR78|unclassified	1.3489087996
+UniRef50_UPI000237503F: monosaccharide-transporting ATPase, partial	1.3487075769
+UniRef50_UPI000237503F: monosaccharide-transporting ATPase, partial|unclassified	1.3487075769
+UniRef50_UPI00041C45D1: hypothetical protein	1.3487057112
+UniRef50_UPI00041C45D1: hypothetical protein|unclassified	1.3487057112
+UniRef50_A0A017T0Y3	1.3486753220
+UniRef50_A0A017T0Y3|unclassified	1.3486753220
+UniRef50_Q67WC5	1.3486174508
+UniRef50_Q67WC5|unclassified	1.3486174508
+UniRef50_A3PLX6: Probable nicotinate-nucleotide adenylyltransferase	1.3484921129
+UniRef50_A3PLX6: Probable nicotinate-nucleotide adenylyltransferase|unclassified	1.3484921129
+UniRef50_UPI000262887B: hypothetical protein	1.3483780242
+UniRef50_UPI000262887B: hypothetical protein|unclassified	1.3483780242
+UniRef50_U4V2Y5: Anti-anti-sigma regulatory factor (Antagonist of anti-sigma factor)	1.3483138218
+UniRef50_U4V2Y5: Anti-anti-sigma regulatory factor (Antagonist of anti-sigma factor)|unclassified	1.3483138218
+UniRef50_UPI00034512D5: hypothetical protein	1.3479079026
+UniRef50_UPI00034512D5: hypothetical protein|unclassified	1.3479079026
+UniRef50_B7I3B2: 2-aminoethylphosphonate ABC transport system, 1-aminoethylphosphonate-binding protein component	1.3477088949
+UniRef50_B7I3B2: 2-aminoethylphosphonate ABC transport system, 1-aminoethylphosphonate-binding protein component|g__Acinetobacter.s__Acinetobacter_baumannii	1.3477088949
+UniRef50_F1UED2	1.3477088949
+UniRef50_F1UED2|g__Propionibacterium.s__Propionibacterium_acnes	1.3477088949
+UniRef50_Q9RXY2	1.3477088949
+UniRef50_Q9RXY2|g__Deinococcus.s__Deinococcus_radiodurans	1.3477088949
+UniRef50_V5VAK2	1.3476746717
+UniRef50_V5VAK2|g__Acinetobacter.s__Acinetobacter_baumannii	1.3476746717
+UniRef50_T1VWC8: ABC transporter ATP-binding protein/permease	1.3476014867
+UniRef50_T1VWC8: ABC transporter ATP-binding protein/permease|g__Acinetobacter.s__Acinetobacter_baumannii	1.3476014867
+UniRef50_V8HE29: Transposase	1.3468458107
+UniRef50_V8HE29: Transposase|unclassified	1.3468458107
+UniRef50_D8JKK4: Glutathione import ATP-binding protein gsiA	1.3467355240
+UniRef50_D8JKK4: Glutathione import ATP-binding protein gsiA|g__Acinetobacter.s__Acinetobacter_baumannii	1.3467355240
+UniRef50_Q42682: Delta-aminolevulinic acid dehydratase, chloroplastic	1.3467186008
+UniRef50_Q42682: Delta-aminolevulinic acid dehydratase, chloroplastic|g__Neisseria.s__Neisseria_meningitidis	1.2330456227
+UniRef50_Q42682: Delta-aminolevulinic acid dehydratase, chloroplastic|unclassified	0.1136729781
+UniRef50_C7T103: BibA	1.3466795835
+UniRef50_C7T103: BibA|g__Streptococcus.s__Streptococcus_agalactiae	1.3466795835
+UniRef50_UPI000411C2A5: hypothetical protein	1.3465004929
+UniRef50_UPI000411C2A5: hypothetical protein|unclassified	1.3465004929
+UniRef50_X0XSV7: Marine sediment metagenome DNA, contig: S01H1_S38078 (Fragment)	1.3462979423
+UniRef50_X0XSV7: Marine sediment metagenome DNA, contig: S01H1_S38078 (Fragment)|unclassified	1.3462979423
+UniRef50_V5VG42	1.3462442588
+UniRef50_V5VG42|g__Acinetobacter.s__Acinetobacter_baumannii	1.3462442588
+UniRef50_G1Y0V7	1.3459047485
+UniRef50_G1Y0V7|unclassified	1.3459047485
+UniRef50_A6LTI6	1.3458950202
+UniRef50_A6LTI6|g__Clostridium.s__Clostridium_beijerinckii	1.3458950202
+UniRef50_B7VS71: Phosphomethylpyrimidine kinase	1.3458950202
+UniRef50_B7VS71: Phosphomethylpyrimidine kinase|g__Deinococcus.s__Deinococcus_radiodurans	1.3458950202
+UniRef50_C4J019	1.3458950202
+UniRef50_C4J019|unclassified	1.3458950202
+UniRef50_I1PF78	1.3458950202
+UniRef50_I1PF78|unclassified	1.3458950202
+UniRef50_O86062: NADH pyrophosphatase	1.3458950202
+UniRef50_O86062: NADH pyrophosphatase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3458950202
+UniRef50_Q9RRK5	1.3458950202
+UniRef50_Q9RRK5|unclassified	1.3458950202
+UniRef50_P56111: Phosphogluconate dehydratase	1.3458469806
+UniRef50_P56111: Phosphogluconate dehydratase|g__Helicobacter.s__Helicobacter_pylori	1.2531328321
+UniRef50_P56111: Phosphogluconate dehydratase|unclassified	0.0927141485
+UniRef50_X1KP36: Marine sediment metagenome DNA, contig: S06H3_L03065 (Fragment)	1.3458031301
+UniRef50_X1KP36: Marine sediment metagenome DNA, contig: S06H3_L03065 (Fragment)|unclassified	1.3458031301
+UniRef50_Q02R79: Spermidine/putrescine import ATP-binding protein PotA	1.3456738405
+UniRef50_Q02R79: Spermidine/putrescine import ATP-binding protein PotA|unclassified	1.3456738405
+UniRef50_B3RBC2	1.3456478036
+UniRef50_B3RBC2|unclassified	1.3456478036
+UniRef50_UPI000225ABFA: cytochrome c-type biogenesis protein CcmE	1.3455990696
+UniRef50_UPI000225ABFA: cytochrome c-type biogenesis protein CcmE|unclassified	1.3455990696
+UniRef50_F3LPE7: Outer membrane autotransporter (Fragment)	1.3455067855
+UniRef50_F3LPE7: Outer membrane autotransporter (Fragment)|unclassified	1.3455067855
+UniRef50_UPI000465F72B: RNA polymerase sigma factor RpoE	1.3453839191
+UniRef50_UPI000465F72B: RNA polymerase sigma factor RpoE|unclassified	1.3453839191
+UniRef50_A5W974: 3-methyl-2-oxobutanoate hydroxymethyltransferase	1.3453288470
+UniRef50_A5W974: 3-methyl-2-oxobutanoate hydroxymethyltransferase|g__Neisseria.s__Neisseria_meningitidis	1.2658227848
+UniRef50_A5W974: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.0795060622
+UniRef50_C5Q6U5	1.3453063454
+UniRef50_C5Q6U5|unclassified	1.3453063454
+UniRef50_UPI00036BDEFD: hypothetical protein	1.3451867663
+UniRef50_UPI00036BDEFD: hypothetical protein|unclassified	1.3451867663
+UniRef50_Z5IFV0	1.3450829816
+UniRef50_Z5IFV0|unclassified	1.3450829816
+UniRef50_E5U2B9	1.3450437509
+UniRef50_E5U2B9|unclassified	1.3450437509
+UniRef50_I6ELA8	1.3449750262
+UniRef50_I6ELA8|unclassified	1.3449750262
+UniRef50_M1FCM2	1.3448960093
+UniRef50_M1FCM2|unclassified	1.3448960093
+UniRef50_A0A023Y3Z5	1.3448504620
+UniRef50_A0A023Y3Z5|unclassified	1.3448504620
+UniRef50_A0A015AL57: AcrB/AcrD/AcrF family protein	1.3448229567
+UniRef50_A0A015AL57: AcrB/AcrD/AcrF family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.3448229567
+UniRef50_D2JDJ5: Replication initiator protein	1.3448037191
+UniRef50_D2JDJ5: Replication initiator protein|unclassified	1.3448037191
+UniRef50_I0P5Q6: Resuscitation-promoting factor RpfA	1.3446863752
+UniRef50_I0P5Q6: Resuscitation-promoting factor RpfA|unclassified	1.3446863752
+UniRef50_U5DLE3	1.3446550931
+UniRef50_U5DLE3|unclassified	1.3446550931
+UniRef50_B1BJN1: Oxidoreductase, NAD-binding	1.3444327788
+UniRef50_B1BJN1: Oxidoreductase, NAD-binding|unclassified	1.3444327788
+UniRef50_R6U4B5: Transposase	1.3443734463
+UniRef50_R6U4B5: Transposase|unclassified	1.3443734463
+UniRef50_T1W827	1.3442736337
+UniRef50_T1W827|unclassified	1.3442736337
+UniRef50_W1WZR0	1.3441022923
+UniRef50_W1WZR0|unclassified	1.3441022923
+UniRef50_A6LTN2: Protein translocase subunit SecD	1.3440860215
+UniRef50_A6LTN2: Protein translocase subunit SecD|g__Clostridium.s__Clostridium_beijerinckii	1.3440860215
+UniRef50_A8AXK2: Pyridoxal-phosphate dependent aminotransferase	1.3440860215
+UniRef50_A8AXK2: Pyridoxal-phosphate dependent aminotransferase|g__Streptococcus.s__Streptococcus_agalactiae	1.3440860215
+UniRef50_K4S1D1	1.3440860215
+UniRef50_K4S1D1|unclassified	1.3440860215
+UniRef50_Q9RS94	1.3440860215
+UniRef50_Q9RS94|g__Deinococcus.s__Deinococcus_radiodurans	1.3440860215
+UniRef50_R1DWQ7	1.3440860215
+UniRef50_R1DWQ7|unclassified	1.3440860215
+UniRef50_W0YMJ4: ABC transporter substrate-binding protein	1.3440860215
+UniRef50_W0YMJ4: ABC transporter substrate-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3440860215
+UniRef50_UPI0003799FCE: hypothetical protein	1.3436790555
+UniRef50_UPI0003799FCE: hypothetical protein|unclassified	1.3436790555
+UniRef50_A8J087: Vasa intronic gene	1.3434632015
+UniRef50_A8J087: Vasa intronic gene|unclassified	1.3434632015
+UniRef50_V5SZB0: Dienelactone hydrolase	1.3433640234
+UniRef50_V5SZB0: Dienelactone hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3433640234
+UniRef50_B0K6Q8	1.3433535060
+UniRef50_B0K6Q8|unclassified	1.3433535060
+UniRef50_B9KU45	1.3430730760
+UniRef50_B9KU45|unclassified	1.3430730760
+UniRef50_E2NSL6	1.3429924804
+UniRef50_E2NSL6|unclassified	1.3429924804
+UniRef50_M0Y3F8	1.3427518292
+UniRef50_M0Y3F8|unclassified	1.3427518292
+UniRef50_A0A024DFI1: Cell division protein FtsK	1.3423710792
+UniRef50_A0A024DFI1: Cell division protein FtsK|g__Streptococcus.s__Streptococcus_agalactiae	1.3423710792
+UniRef50_B8F444	1.3422818792
+UniRef50_B8F444|g__Acinetobacter.s__Acinetobacter_baumannii	1.3422818792
+UniRef50_D3PTH4	1.3422818792
+UniRef50_D3PTH4|unclassified	1.3422818792
+UniRef50_D8JGK5: RDD family protein	1.3422818792
+UniRef50_D8JGK5: RDD family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.3422818792
+UniRef50_Q9RX93: Trans-aconitate 2-methyltransferase	1.3422818792
+UniRef50_Q9RX93: Trans-aconitate 2-methyltransferase|unclassified	1.3422818792
+UniRef50_G2TDX5	1.3420544473
+UniRef50_G2TDX5|unclassified	1.3420544473
+UniRef50_Q3JHV1	1.3419628789
+UniRef50_Q3JHV1|unclassified	1.3419628789
+UniRef50_T8SRU6	1.3417392051
+UniRef50_T8SRU6|unclassified	1.3417392051
+UniRef50_UPI00036CF521: hypothetical protein	1.3416584206
+UniRef50_UPI00036CF521: hypothetical protein|unclassified	1.3416584206
+UniRef50_G8AL99	1.3414616500
+UniRef50_G8AL99|unclassified	1.3414616500
+UniRef50_S3P9S1	1.3413926885
+UniRef50_S3P9S1|g__Acinetobacter.s__Acinetobacter_baumannii	1.3413926885
+UniRef50_C0PC97	1.3413293975
+UniRef50_C0PC97|unclassified	1.3413293975
+UniRef50_X7FDX5	1.3413234587
+UniRef50_X7FDX5|unclassified	1.3413234587
+UniRef50_A1YZ52: PdmP3	1.3411416176
+UniRef50_A1YZ52: PdmP3|unclassified	1.3411416176
+UniRef50_F5NXT7: Periplasmic pilus chaperone family domain protein	1.3410429342
+UniRef50_F5NXT7: Periplasmic pilus chaperone family domain protein|unclassified	1.3410429342
+UniRef50_UPI00040EF117: hypothetical protein	1.3409824498
+UniRef50_UPI00040EF117: hypothetical protein|unclassified	1.3409824498
+UniRef50_F0Y846	1.3409216404
+UniRef50_F0Y846|unclassified	1.3409216404
+UniRef50_UPI0003182F0E: amino acid ABC transporter ATP-binding protein	1.3408782531
+UniRef50_UPI0003182F0E: amino acid ABC transporter ATP-binding protein|unclassified	1.3408782531
+UniRef50_F6G1Z6: Fused ATP-binding subunit of ABC superfamily protein involved in precise excision of transposons	1.3408507132
+UniRef50_F6G1Z6: Fused ATP-binding subunit of ABC superfamily protein involved in precise excision of transposons|g__Neisseria.s__Neisseria_meningitidis	1.3408507132
+UniRef50_A6M3H8	1.3404825737
+UniRef50_A6M3H8|g__Clostridium.s__Clostridium_beijerinckii	1.3404825737
+UniRef50_B0VRG1	1.3404825737
+UniRef50_B0VRG1|g__Acinetobacter.s__Acinetobacter_baumannii	1.3404825737
+UniRef50_I6ZZT5: Forkhead box C2 (Fragment)	1.3404825737
+UniRef50_I6ZZT5: Forkhead box C2 (Fragment)|unclassified	1.3404825737
+UniRef50_Q6F9M2	1.3404825737
+UniRef50_Q6F9M2|g__Acinetobacter.s__Acinetobacter_baumannii	1.3404825737
+UniRef50_U3TMY9: Integrase	1.3404825737
+UniRef50_U3TMY9: Integrase|g__Streptococcus.s__Streptococcus_agalactiae	1.3404825737
+UniRef50_V5SVE5: Aminotransferase	1.3404825737
+UniRef50_V5SVE5: Aminotransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3404825737
+UniRef50_N6VE85	1.3404062259
+UniRef50_N6VE85|unclassified	1.3404062259
+UniRef50_V0Q1A2: Ferritin	1.3403712492
+UniRef50_V0Q1A2: Ferritin|unclassified	1.3403712492
+UniRef50_UPI0003FC0AD6: hypothetical protein	1.3403433807
+UniRef50_UPI0003FC0AD6: hypothetical protein|unclassified	1.3403433807
+UniRef50_K2AG05	1.3402010312
+UniRef50_K2AG05|unclassified	1.3402010312
+UniRef50_Q831N0: tRNA N6-adenosine threonylcarbamoyltransferase	1.3400224008
+UniRef50_Q831N0: tRNA N6-adenosine threonylcarbamoyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	1.2004801921
+UniRef50_Q831N0: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.1395422087
+UniRef50_A8LQE4	1.3399647091
+UniRef50_A8LQE4|unclassified	1.3399647091
+UniRef50_Q08WT9	1.3399603535
+UniRef50_Q08WT9|unclassified	1.3399603535
+UniRef50_UPI0003717A52: hypothetical protein	1.3395625786
+UniRef50_UPI0003717A52: hypothetical protein|unclassified	1.3395625786
+UniRef50_UPI0002D97452: hypothetical protein	1.3391407149
+UniRef50_UPI0002D97452: hypothetical protein|unclassified	1.3391407149
+UniRef50_W1S564: Cupin	1.3390502810
+UniRef50_W1S564: Cupin|unclassified	1.3390502810
+UniRef50_UPI0002625B7F: glutaredoxin	1.3390269825
+UniRef50_UPI0002625B7F: glutaredoxin|unclassified	1.3390269825
+UniRef50_P50657: Cytochrome c oxidase subunit 3 (Fragment)	1.3389877425
+UniRef50_P50657: Cytochrome c oxidase subunit 3 (Fragment)|unclassified	1.3389877425
+UniRef50_C7RCC8: Serine O-acetyltransferase	1.3386880857
+UniRef50_C7RCC8: Serine O-acetyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3386880857
+UniRef50_E6S5F6: Flagellar biosynthesis sigma factor	1.3386880857
+UniRef50_E6S5F6: Flagellar biosynthesis sigma factor|g__Helicobacter.s__Helicobacter_pylori	1.3386880857
+UniRef50_G7U705: Efflux ABC transporter, permease protein	1.3386880857
+UniRef50_G7U705: Efflux ABC transporter, permease protein|g__Propionibacterium.s__Propionibacterium_acnes	1.3386880857
+UniRef50_Q1QEV4: FAD linked oxidase-like protein	1.3386276945
+UniRef50_Q1QEV4: FAD linked oxidase-like protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3386276945
+UniRef50_B7IAM2	1.3383152026
+UniRef50_B7IAM2|g__Acinetobacter.s__Acinetobacter_baumannii	1.3383152026
+UniRef50_D4HDS2: Alpha-1,4-glucan:maltose-1-phosphate maltosyltransferase	1.3376821116
+UniRef50_D4HDS2: Alpha-1,4-glucan:maltose-1-phosphate maltosyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	1.3376821116
+UniRef50_UPI000262B349: TonB-like protein	1.3376648240
+UniRef50_UPI000262B349: TonB-like protein|unclassified	1.3376648240
+UniRef50_G7ZT87	1.3376155813
+UniRef50_G7ZT87|unclassified	1.3376155813
+UniRef50_G0DWF3	1.3370597806
+UniRef50_G0DWF3|g__Propionibacterium.s__Propionibacterium_acnes	1.3370597806
+UniRef50_Q2IMR8	1.3370491117
+UniRef50_Q2IMR8|unclassified	1.3370491117
+UniRef50_A6LSW5: Cobalamin synthase	1.3368983957
+UniRef50_A6LSW5: Cobalamin synthase|g__Clostridium.s__Clostridium_beijerinckii	1.3368983957
+UniRef50_A6LX48: Beta-lactamase domain protein	1.3368983957
+UniRef50_A6LX48: Beta-lactamase domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.3368983957
+UniRef50_D7GDB8: Permease protein of oligopeptide ABC transporter	1.3368983957
+UniRef50_D7GDB8: Permease protein of oligopeptide ABC transporter|g__Propionibacterium.s__Propionibacterium_acnes	1.3368983957
+UniRef50_K7RNA7: SAM-dependent methyltransferase related to tRNA	1.3368983957
+UniRef50_K7RNA7: SAM-dependent methyltransferase related to tRNA|g__Propionibacterium.s__Propionibacterium_acnes	1.3368983957
+UniRef50_M4ZJ25: Integrase/recombinase	1.3368983957
+UniRef50_M4ZJ25: Integrase/recombinase|g__Helicobacter.s__Helicobacter_pylori	1.3368983957
+UniRef50_Q5LSU1: Lipid-A-disaccharide synthase	1.3368983957
+UniRef50_Q5LSU1: Lipid-A-disaccharide synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.3368983957
+UniRef50_Q9RU03	1.3368983957
+UniRef50_Q9RU03|g__Deinococcus.s__Deinococcus_radiodurans	1.3368983957
+UniRef50_Q9RXJ6: 30S ribosomal protein S3	1.3368983957
+UniRef50_Q9RXJ6: 30S ribosomal protein S3|g__Deinococcus.s__Deinococcus_radiodurans	1.3368983957
+UniRef50_C1CY21	1.3368582133
+UniRef50_C1CY21|unclassified	1.3368582133
+UniRef50_N6W8Z6: Putative oxidoreductase	1.3367675903
+UniRef50_N6W8Z6: Putative oxidoreductase|unclassified	1.3367675903
+UniRef50_S6AW69	1.3364039379
+UniRef50_S6AW69|unclassified	1.3364039379
+UniRef50_UPI00035F8901: hypothetical protein	1.3363869672
+UniRef50_UPI00035F8901: hypothetical protein|unclassified	1.3363869672
+UniRef50_UPI00047C856E: arsenate reductase	1.3362270806
+UniRef50_UPI00047C856E: arsenate reductase|unclassified	1.3362270806
+UniRef50_S7U387: Dipicolinate synthase, A chain	1.3361904596
+UniRef50_S7U387: Dipicolinate synthase, A chain|unclassified	1.3361904596
+UniRef50_K1E0S0: RND superfamily drug exporter	1.3360407509
+UniRef50_K1E0S0: RND superfamily drug exporter|unclassified	1.3360407509
+UniRef50_UPI00015FC63D: hypothetical protein	1.3358749506
+UniRef50_UPI00015FC63D: hypothetical protein|unclassified	1.3358749506
+UniRef50_UPI0003B645FE: protein pucC, partial	1.3355665117
+UniRef50_UPI0003B645FE: protein pucC, partial|unclassified	1.3355665117
+UniRef50_Q6A7D5: Conserved protein	1.3353705974
+UniRef50_Q6A7D5: Conserved protein|g__Propionibacterium.s__Propionibacterium_acnes	1.3353705974
+UniRef50_UPI0004665B31: hypothetical protein	1.3352753215
+UniRef50_UPI0004665B31: hypothetical protein|unclassified	1.3352753215
+UniRef50_Q8LHL2	1.3352199640
+UniRef50_Q8LHL2|unclassified	1.3352199640
+UniRef50_A4W4B6	1.3351134846
+UniRef50_A4W4B6|unclassified	1.3351134846
+UniRef50_I6RPX2: Iron-containing alcohol dehydrogenase	1.3351134846
+UniRef50_I6RPX2: Iron-containing alcohol dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3351134846
+UniRef50_I6ZCK2: Acyl-CoA dehydrogenase	1.3351134846
+UniRef50_I6ZCK2: Acyl-CoA dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3351134846
+UniRef50_X5K2R7	1.3351134846
+UniRef50_X5K2R7|g__Streptococcus.s__Streptococcus_agalactiae	1.3351134846
+UniRef50_M5QZV9	1.3350471368
+UniRef50_M5QZV9|unclassified	1.3350471368
+UniRef50_D0L5P3	1.3350361947
+UniRef50_D0L5P3|g__Acinetobacter.s__Acinetobacter_baumannii	1.3350361947
+UniRef50_UPI000370CB23: hypothetical protein	1.3348634912
+UniRef50_UPI000370CB23: hypothetical protein|unclassified	1.3348634912
+UniRef50_J9P994	1.3345166743
+UniRef50_J9P994|unclassified	1.3345166743
+UniRef50_X2MXZ7	1.3344003659
+UniRef50_X2MXZ7|unclassified	1.3344003659
+UniRef50_A3ZQR3	1.3343581894
+UniRef50_A3ZQR3|unclassified	1.3343581894
+UniRef50_Q67LT7	1.3340815613
+UniRef50_Q67LT7|unclassified	1.3340815613
+UniRef50_F0YF93	1.3340724510
+UniRef50_F0YF93|unclassified	1.3340724510
+UniRef50_W6MCY0: Multidrug resistance secretion protein	1.3337003988
+UniRef50_W6MCY0: Multidrug resistance secretion protein|unclassified	1.3337003988
+UniRef50_UPI00045E9BEE: hypothetical protein	1.3334728775
+UniRef50_UPI00045E9BEE: hypothetical protein|unclassified	1.3334728775
+UniRef50_F4DVS4: Periplasmic binding protein	1.3333333333
+UniRef50_F4DVS4: Periplasmic binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3333333333
+UniRef50_X3JEA6	1.3332518991
+UniRef50_X3JEA6|unclassified	1.3332518991
+UniRef50_UPI00036F5C26: hypothetical protein, partial	1.3330494257
+UniRef50_UPI00036F5C26: hypothetical protein, partial|unclassified	1.3330494257
+UniRef50_G5ML36: Permease protein HisM	1.3328515603
+UniRef50_G5ML36: Permease protein HisM|unclassified	1.3328515603
+UniRef50_G5NRR8: Flagellar basal-body rod modification protein FlgD	1.3328114728
+UniRef50_G5NRR8: Flagellar basal-body rod modification protein FlgD|unclassified	1.3328114728
+UniRef50_E6PZA5	1.3328098375
+UniRef50_E6PZA5|unclassified	1.3328098375
+UniRef50_F1SH72	1.3325645369
+UniRef50_F1SH72|unclassified	1.3325645369
+UniRef50_Q6MCV4: Spermidine/putrescine import ATP-binding protein PotA	1.3325470595
+UniRef50_Q6MCV4: Spermidine/putrescine import ATP-binding protein PotA|unclassified	1.3325470595
+UniRef50_UPI0004774A77: hypothetical protein	1.3318915010
+UniRef50_UPI0004774A77: hypothetical protein|unclassified	1.3318915010
+UniRef50_Q7NFY0: Glr3394 protein	1.3318905539
+UniRef50_Q7NFY0: Glr3394 protein|unclassified	1.3318905539
+UniRef50_F7YA53	1.3318797209
+UniRef50_F7YA53|unclassified	1.3318797209
+UniRef50_A1V9U1: Adenylosuccinate synthetase	1.3316969656
+UniRef50_A1V9U1: Adenylosuccinate synthetase|g__Propionibacterium.s__Propionibacterium_acnes	1.1655011655
+UniRef50_A1V9U1: Adenylosuccinate synthetase|unclassified	0.1661958001
+UniRef50_B0V5K4: Copper resistance protein A	1.3316629218
+UniRef50_B0V5K4: Copper resistance protein A|g__Acinetobacter.s__Acinetobacter_baumannii	1.3316629218
+UniRef50_UPI00029AB7CB: integrase catalytic subunit	1.3316097647
+UniRef50_UPI00029AB7CB: integrase catalytic subunit|unclassified	1.3316097647
+UniRef50_UPI00036AB422: hypothetical protein	1.3315916524
+UniRef50_UPI00036AB422: hypothetical protein|unclassified	1.3315916524
+UniRef50_Q11CZ9	1.3313473963
+UniRef50_Q11CZ9|unclassified	1.3313473963
+UniRef50_UPI00041D4C0B: hypothetical protein	1.3310872637
+UniRef50_UPI00041D4C0B: hypothetical protein|unclassified	1.3310872637
+UniRef50_UPI000370E83B: hypothetical protein	1.3309242647
+UniRef50_UPI000370E83B: hypothetical protein|unclassified	1.3309242647
+UniRef50_Q9HUN5	1.3306725784
+UniRef50_Q9HUN5|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3306725784
+UniRef50_UPI0002B9550C: regulator for metE and MetH	1.3303745153
+UniRef50_UPI0002B9550C: regulator for metE and MetH|unclassified	1.3303745153
+UniRef50_Q28TP6	1.3303476193
+UniRef50_Q28TP6|unclassified	1.3303476193
+UniRef50_A5ZX27	1.3300627852
+UniRef50_A5ZX27|unclassified	1.3300627852
+UniRef50_N0B552: HupH hydrogenase expression protein	1.3298511915
+UniRef50_N0B552: HupH hydrogenase expression protein|unclassified	1.3298511915
+UniRef50_A6LTI4	1.3297872340
+UniRef50_A6LTI4|g__Clostridium.s__Clostridium_beijerinckii	1.3297872340
+UniRef50_A6LWI0: GCN5-related N-acetyltransferase	1.3297872340
+UniRef50_A6LWI0: GCN5-related N-acetyltransferase|g__Clostridium.s__Clostridium_beijerinckii	1.3297872340
+UniRef50_C1EIJ1: Predicted protein	1.3296079042
+UniRef50_C1EIJ1: Predicted protein|unclassified	1.3296079042
+UniRef50_UPI0004669176: ABC transporter permease	1.3295466905
+UniRef50_UPI0004669176: ABC transporter permease|unclassified	1.3295466905
+UniRef50_UPI00037ECA28: hypothetical protein, partial	1.3294768651
+UniRef50_UPI00037ECA28: hypothetical protein, partial|unclassified	1.3294768651
+UniRef50_F4FLL0	1.3294404136
+UniRef50_F4FLL0|unclassified	1.3294404136
+UniRef50_W1HW39	1.3294101378
+UniRef50_W1HW39|unclassified	1.3294101378
+UniRef50_Q9XAR0: NADH-quinone oxidoreductase subunit G	1.3294039179
+UniRef50_Q9XAR0: NADH-quinone oxidoreductase subunit G|g__Propionibacterium.s__Propionibacterium_acnes	1.3294039179
+UniRef50_UPI000467F4BE: hypothetical protein	1.3293414854
+UniRef50_UPI000467F4BE: hypothetical protein|unclassified	1.3293414854
+UniRef50_H1KW22	1.3290867489
+UniRef50_H1KW22|unclassified	1.3290867489
+UniRef50_D5UDM9	1.3289917284
+UniRef50_D5UDM9|unclassified	1.3289917284
+UniRef50_UPI0003EB111D: hypothetical protein	1.3289915146
+UniRef50_UPI0003EB111D: hypothetical protein|unclassified	1.3289915146
+UniRef50_UPI0003775D90: hypothetical protein	1.3288991572
+UniRef50_UPI0003775D90: hypothetical protein|unclassified	1.3288991572
+UniRef50_W1GCC1	1.3288240367
+UniRef50_W1GCC1|unclassified	1.3288240367
+UniRef50_C5QU67: Putative quinolinate synthetase A (Fragment)	1.3286304070
+UniRef50_C5QU67: Putative quinolinate synthetase A (Fragment)|unclassified	1.3286304070
+UniRef50_L9CVM1: CO dehydrogenase flavoC-terminal domain protein	1.3286048169
+UniRef50_L9CVM1: CO dehydrogenase flavoC-terminal domain protein|unclassified	1.3286048169
+UniRef50_UPI000185E032: ATP-dependent heat shock protein, putative	1.3284852189
+UniRef50_UPI000185E032: ATP-dependent heat shock protein, putative|unclassified	1.3284852189
+UniRef50_T2GRR2	1.3284455917
+UniRef50_T2GRR2|unclassified	1.3284455917
+UniRef50_X5PR54	1.3280903239
+UniRef50_X5PR54|unclassified	1.3280903239
+UniRef50_A0A023KNT6	1.3280440580
+UniRef50_A0A023KNT6|unclassified	1.3280440580
+UniRef50_B2V5F8: ABC transporter, permease protein	1.3280212483
+UniRef50_B2V5F8: ABC transporter, permease protein|g__Clostridium.s__Clostridium_beijerinckii	1.3280212483
+UniRef50_E1PY57: Riboflavin biosynthesis protein (RibG)	1.3280212483
+UniRef50_E1PY57: Riboflavin biosynthesis protein (RibG)|g__Helicobacter.s__Helicobacter_pylori	1.3280212483
+UniRef50_Q1GCT8: Butyryl-CoA dehydrogenase	1.3280212483
+UniRef50_Q1GCT8: Butyryl-CoA dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3280212483
+UniRef50_Q5L1U1: 3-oxoacyl-[acyl-carrier-protein] synthase 3	1.3279583453
+UniRef50_Q5L1U1: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	1.3279583453
+UniRef50_UPI000465ED68: N-acetylmuramoyl-L-alanine amidase AmiC	1.3277683133
+UniRef50_UPI000465ED68: N-acetylmuramoyl-L-alanine amidase AmiC|unclassified	1.3277683133
+UniRef50_B0VLP6	1.3274153094
+UniRef50_B0VLP6|g__Acinetobacter.s__Acinetobacter_baumannii	1.3274153094
+UniRef50_Q5H233: Pyrroloquinoline-quinone synthase	1.3273818239
+UniRef50_Q5H233: Pyrroloquinoline-quinone synthase|unclassified	1.3273818239
+UniRef50_K7RQY3	1.3269772699
+UniRef50_K7RQY3|g__Propionibacterium.s__Propionibacterium_acnes	1.3269772699
+UniRef50_UPI00035C09C2: hypothetical protein	1.3269132469
+UniRef50_UPI00035C09C2: hypothetical protein|unclassified	1.3269132469
+UniRef50_UPI000383BFF5: PREDICTED: collagen alpha-1(II) chain-like	1.3268910676
+UniRef50_UPI000383BFF5: PREDICTED: collagen alpha-1(II) chain-like|unclassified	1.3268910676
+UniRef50_G8W262	1.3268299317
+UniRef50_G8W262|unclassified	1.3268299317
+UniRef50_F7Y073: Cytochrome oxidase maturation protein, cbb3-type	1.3266475553
+UniRef50_F7Y073: Cytochrome oxidase maturation protein, cbb3-type|unclassified	1.3266475553
+UniRef50_UPI00037A37E9: hypothetical protein	1.3265231992
+UniRef50_UPI00037A37E9: hypothetical protein|unclassified	1.3265231992
+UniRef50_I4XRK3	1.3263326054
+UniRef50_I4XRK3|unclassified	1.3263326054
+UniRef50_Q69TY4: Peroxiredoxin-2E-1, chloroplastic	1.3262908936
+UniRef50_Q69TY4: Peroxiredoxin-2E-1, chloroplastic|unclassified	1.3262908936
+UniRef50_A0A023S0B1: Glutathione S-transferase	1.3262599469
+UniRef50_A0A023S0B1: Glutathione S-transferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3262599469
+UniRef50_D4HAA4: NlpC/P60 family protein	1.3262599469
+UniRef50_D4HAA4: NlpC/P60 family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.3262599469
+UniRef50_L7F9Q6: Linear gramicidin synthetase LgrC family protein	1.3262599469
+UniRef50_L7F9Q6: Linear gramicidin synthetase LgrC family protein|unclassified	1.3262599469
+UniRef50_UPI0003B6D83A: ABC transporter	1.3262599469
+UniRef50_UPI0003B6D83A: ABC transporter|unclassified	1.3262599469
+UniRef50_X6K4S1: Head-tail adaptor protein	1.3260688221
+UniRef50_X6K4S1: Head-tail adaptor protein|unclassified	1.3260688221
+UniRef50_A6L4U5: Altronate oxidoreductase	1.3259339917
+UniRef50_A6L4U5: Altronate oxidoreductase|g__Clostridium.s__Clostridium_beijerinckii	1.2594458438
+UniRef50_A6L4U5: Altronate oxidoreductase|unclassified	0.0664881479
+UniRef50_Q977V1: Cobalt-precorrin-6A reductase	1.3259304436
+UniRef50_Q977V1: Cobalt-precorrin-6A reductase|unclassified	1.3259304436
+UniRef50_V9DF32	1.3257704774
+UniRef50_V9DF32|unclassified	1.3257704774
+UniRef50_E1VFK2	1.3253121311
+UniRef50_E1VFK2|unclassified	1.3253121311
+UniRef50_Q8K9Y4: NADH-quinone oxidoreductase subunit E	1.3249527331
+UniRef50_Q8K9Y4: NADH-quinone oxidoreductase subunit E|unclassified	1.3249527331
+UniRef50_Q5HRC8	1.3246596604
+UniRef50_Q5HRC8|unclassified	1.3246596604
+UniRef50_A6LZB3: FMN-binding domain protein	1.3245033113
+UniRef50_A6LZB3: FMN-binding domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.3245033113
+UniRef50_A6UZF9: Oxidoreductase, short chain dehydrogenase/reductase family	1.3245033113
+UniRef50_A6UZF9: Oxidoreductase, short chain dehydrogenase/reductase family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3245033113
+UniRef50_G2QV25	1.3245033113
+UniRef50_G2QV25|unclassified	1.3245033113
+UniRef50_I1J2H7	1.3245033113
+UniRef50_I1J2H7|unclassified	1.3245033113
+UniRef50_Q6F9S8: Molybdopterin biosynthesis protein (MoeB) OR thiamin-thiazole moiety synthesis (ThiF)	1.3245033113
+UniRef50_Q6F9S8: Molybdopterin biosynthesis protein (MoeB) OR thiamin-thiazole moiety synthesis (ThiF)|g__Acinetobacter.s__Acinetobacter_baumannii	1.3245033113
+UniRef50_R5MWE1	1.3245033113
+UniRef50_R5MWE1|unclassified	1.3245033113
+UniRef50_X1N7Q0: Marine sediment metagenome DNA, contig: S06H3_S11798 (Fragment)	1.3245033113
+UniRef50_X1N7Q0: Marine sediment metagenome DNA, contig: S06H3_S11798 (Fragment)|unclassified	1.3245033113
+UniRef50_UPI000470CB59: inosine-5-monophosphate dehydrogenase	1.3244565118
+UniRef50_UPI000470CB59: inosine-5-monophosphate dehydrogenase|unclassified	1.3244565118
+UniRef50_B9NP44	1.3241857383
+UniRef50_B9NP44|unclassified	1.3241857383
+UniRef50_D4BD23	1.3241846499
+UniRef50_D4BD23|unclassified	1.3241846499
+UniRef50_D5ATD5: Flagellar protein, putative	1.3241695363
+UniRef50_D5ATD5: Flagellar protein, putative|unclassified	1.3241695363
+UniRef50_UPI00039D0E79: heterodisulfide reductase subunit MvhD	1.3241664087
+UniRef50_UPI00039D0E79: heterodisulfide reductase subunit MvhD|unclassified	1.3241664087
+UniRef50_UPI000365C798: Cro/Cl family transcriptional regulator	1.3241188983
+UniRef50_UPI000365C798: Cro/Cl family transcriptional regulator|unclassified	1.3241188983
+UniRef50_UPI0004685071: MerR family transcriptional regulator	1.3239935339
+UniRef50_UPI0004685071: MerR family transcriptional regulator|unclassified	1.3239935339
+UniRef50_F2CTX8: Predicted protein (Fragment)	1.3239587165
+UniRef50_F2CTX8: Predicted protein (Fragment)|unclassified	1.3239587165
+UniRef50_UPI00046596AE: hypothetical protein	1.3237916235
+UniRef50_UPI00046596AE: hypothetical protein|unclassified	1.3237916235
+UniRef50_UPI00037F5062: hypothetical protein	1.3236279316
+UniRef50_UPI00037F5062: hypothetical protein|unclassified	1.3236279316
+UniRef50_A0A037YDE5	1.3236248445
+UniRef50_A0A037YDE5|unclassified	1.3236248445
+UniRef50_E2NST4	1.3233282241
+UniRef50_E2NST4|unclassified	1.3233282241
+UniRef50_Q2JFY8	1.3232286694
+UniRef50_Q2JFY8|unclassified	1.3232286694
+UniRef50_B1Y7P3: Glycine--tRNA ligase alpha subunit	1.3231571788
+UniRef50_B1Y7P3: Glycine--tRNA ligase alpha subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1415525114
+UniRef50_B1Y7P3: Glycine--tRNA ligase alpha subunit|unclassified	0.1816046674
+UniRef50_UPI00047E9930: ABC transporter permease	1.3229643674
+UniRef50_UPI00047E9930: ABC transporter permease|unclassified	1.3229643674
+UniRef50_A9M2X4	1.3227513228
+UniRef50_A9M2X4|g__Neisseria.s__Neisseria_meningitidis	1.3227513228
+UniRef50_C5ZSV0: Transcriptional regulator, LuxR family	1.3227513228
+UniRef50_C5ZSV0: Transcriptional regulator, LuxR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3227513228
+UniRef50_E0SHR7: FMN oxidoreductase	1.3227513228
+UniRef50_E0SHR7: FMN oxidoreductase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3227513228
+UniRef50_R5GFP8	1.3227513228
+UniRef50_R5GFP8|g__Clostridium.s__Clostridium_beijerinckii	1.3227513228
+UniRef50_U9L4M7: Hydrolase	1.3227513228
+UniRef50_U9L4M7: Hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3227513228
+UniRef50_UPI0004681B46: ABC transporter ATP-binding protein	1.3227397009
+UniRef50_UPI0004681B46: ABC transporter ATP-binding protein|unclassified	1.3227397009
+UniRef50_J9P866	1.3224357285
+UniRef50_J9P866|unclassified	1.3224357285
+UniRef50_UPI00047479E9: hypothetical protein	1.3223023414
+UniRef50_UPI00047479E9: hypothetical protein|unclassified	1.3223023414
+UniRef50_UPI000371A422: hypothetical protein	1.3221611343
+UniRef50_UPI000371A422: hypothetical protein|unclassified	1.3221611343
+UniRef50_B7NVE7	1.3220952786
+UniRef50_B7NVE7|unclassified	1.3220952786
+UniRef50_A5VZL4: Beta-lactamase	1.3220452054
+UniRef50_A5VZL4: Beta-lactamase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2547051443
+UniRef50_A5VZL4: Beta-lactamase|unclassified	0.0673400611
+UniRef50_UPI0002BA0B17: TetR family transcriptional regulator	1.3219521358
+UniRef50_UPI0002BA0B17: TetR family transcriptional regulator|unclassified	1.3219521358
+UniRef50_S9TGH7: PE-PGRS family protein	1.3218064386
+UniRef50_S9TGH7: PE-PGRS family protein|unclassified	1.3218064386
+UniRef50_V5SXK1: Histidine kinase	1.3216430028
+UniRef50_V5SXK1: Histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3216430028
+UniRef50_Q6FA05	1.3214520519
+UniRef50_Q6FA05|g__Acinetobacter.s__Acinetobacter_baumannii	1.3214520519
+UniRef50_C7QHR1	1.3213561317
+UniRef50_C7QHR1|unclassified	1.3213561317
+UniRef50_P31196: Ribulose bisphosphate carboxylase large chain (Fragment)	1.3213508784
+UniRef50_P31196: Ribulose bisphosphate carboxylase large chain (Fragment)|unclassified	1.3213508784
+UniRef50_K7YQ94	1.3211579465
+UniRef50_K7YQ94|g__Helicobacter.s__Helicobacter_pylori	1.3211579465
+UniRef50_UPI00036F3039: hypothetical protein	1.3210925446
+UniRef50_UPI00036F3039: hypothetical protein|unclassified	1.3210925446
+UniRef50_G8RED2: Virulence-associated cell-wall-anchored protein SasG	1.3210039630
+UniRef50_G8RED2: Virulence-associated cell-wall-anchored protein SasG|g__Staphylococcus.s__Staphylococcus_epidermidis	1.3210039630
+UniRef50_O25890: Chaperone protein DnaJ	1.3210039630
+UniRef50_O25890: Chaperone protein DnaJ|g__Helicobacter.s__Helicobacter_pylori	1.3210039630
+UniRef50_P35755: Iron-utilization periplasmic protein	1.3210039630
+UniRef50_P35755: Iron-utilization periplasmic protein|g__Neisseria.s__Neisseria_meningitidis	1.3210039630
+UniRef50_Q39FJ3: Hydroxypyruvate isomerase	1.3210039630
+UniRef50_Q39FJ3: Hydroxypyruvate isomerase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3210039630
+UniRef50_S4Y064	1.3209531587
+UniRef50_S4Y064|unclassified	1.3209531587
+UniRef50_K4RMU3	1.3209466135
+UniRef50_K4RMU3|unclassified	1.3209466135
+UniRef50_I7CAJ0	1.3206759385
+UniRef50_I7CAJ0|unclassified	1.3206759385
+UniRef50_UPI0002DF004E: hypothetical protein	1.3205938944
+UniRef50_UPI0002DF004E: hypothetical protein|unclassified	1.3205938944
+UniRef50_UPI0001911A83: hypothetical protein, partial	1.3205551955
+UniRef50_UPI0001911A83: hypothetical protein, partial|unclassified	1.3205551955
+UniRef50_Q31H63: Argininosuccinate synthase	1.3203411269
+UniRef50_Q31H63: Argininosuccinate synthase|g__Deinococcus.s__Deinococcus_radiodurans	1.2771392082
+UniRef50_Q31H63: Argininosuccinate synthase|unclassified	0.0432019187
+UniRef50_S8UV07	1.3201446979
+UniRef50_S8UV07|g__Streptococcus.s__Streptococcus_agalactiae	1.3201446979
+UniRef50_F9KEG1	1.3200128017
+UniRef50_F9KEG1|unclassified	1.3200128017
+UniRef50_J7Q728: Escherichia coli IMT2125 genomic chromosome, IMT2125	1.3199255209
+UniRef50_J7Q728: Escherichia coli IMT2125 genomic chromosome, IMT2125|unclassified	1.3199255209
+UniRef50_X7E7Z7	1.3194483645
+UniRef50_X7E7Z7|unclassified	1.3194483645
+UniRef50_A1IQ80: Riboflavin biosynthesis protein RibD	1.3192612137
+UniRef50_A1IQ80: Riboflavin biosynthesis protein RibD|g__Neisseria.s__Neisseria_meningitidis	1.3192612137
+UniRef50_Q5F8G9: ADP-dependent (S)-NAD(P)H-hydrate dehydratase	1.3192612137
+UniRef50_Q5F8G9: ADP-dependent (S)-NAD(P)H-hydrate dehydratase|g__Neisseria.s__Neisseria_meningitidis	1.3192612137
+UniRef50_J2X5C4	1.3189129089
+UniRef50_J2X5C4|unclassified	1.3189129089
+UniRef50_UPI0003C73FC0: phosphonate ABC transporter	1.3180069880
+UniRef50_UPI0003C73FC0: phosphonate ABC transporter|unclassified	1.3180069880
+UniRef50_K4AG43	1.3179692685
+UniRef50_K4AG43|unclassified	1.3179692685
+UniRef50_H8FXB7	1.3177877456
+UniRef50_H8FXB7|unclassified	1.3177877456
+UniRef50_A3JNE7	1.3177506440
+UniRef50_A3JNE7|unclassified	1.3177506440
+UniRef50_A6LR21: Binding-protein-dependent transport systems inner membrane component	1.3175230567
+UniRef50_A6LR21: Binding-protein-dependent transport systems inner membrane component|g__Clostridium.s__Clostridium_beijerinckii	1.3175230567
+UniRef50_A6LXE4	1.3175230567
+UniRef50_A6LXE4|g__Clostridium.s__Clostridium_beijerinckii	1.3175230567
+UniRef50_B4RNI0	1.3175230567
+UniRef50_B4RNI0|g__Neisseria.s__Neisseria_meningitidis	1.3175230567
+UniRef50_F9Y8Y0: Oxidoreductase, aldo/keto reductase family protein	1.3175230567
+UniRef50_F9Y8Y0: Oxidoreductase, aldo/keto reductase family protein|g__Streptococcus.s__Streptococcus_agalactiae	1.3175230567
+UniRef50_Q00513: Type II secretion system protein F	1.3175230567
+UniRef50_Q00513: Type II secretion system protein F|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3175230567
+UniRef50_Q1RAX2	1.3175230567
+UniRef50_Q1RAX2|g__Escherichia.s__Escherichia_coli	1.3175230567
+UniRef50_Q9SIB9: Aconitate hydratase 2, mitochondrial	1.3175123698
+UniRef50_Q9SIB9: Aconitate hydratase 2, mitochondrial|g__Deinococcus.s__Deinococcus_radiodurans	1.2609823699
+UniRef50_Q9SIB9: Aconitate hydratase 2, mitochondrial|unclassified	0.0565299999
+UniRef50_W5XCC5: Putative ferric uptake regulator	1.3172983830
+UniRef50_W5XCC5: Putative ferric uptake regulator|unclassified	1.3172983830
+UniRef50_A0A020X5X5	1.3172321113
+UniRef50_A0A020X5X5|unclassified	1.3172321113
+UniRef50_D2SFI0: SAF domain protein	1.3171844386
+UniRef50_D2SFI0: SAF domain protein|unclassified	1.3171844386
+UniRef50_UPI000360C3D4: cytochrome C transmembrane protein	1.3170007500
+UniRef50_UPI000360C3D4: cytochrome C transmembrane protein|unclassified	1.3170007500
+UniRef50_UPI0004651951: chemotaxis protein CheY	1.3168680114
+UniRef50_UPI0004651951: chemotaxis protein CheY|unclassified	1.3168680114
+UniRef50_D3DZS5	1.3168607928
+UniRef50_D3DZS5|unclassified	1.3168607928
+UniRef50_UPI000479479D: family 2 glycosyl transferase	1.3163648858
+UniRef50_UPI000479479D: family 2 glycosyl transferase|unclassified	1.3163648858
+UniRef50_Q166C2: Acyl carrier protein	1.3160942569
+UniRef50_Q166C2: Acyl carrier protein|unclassified	1.3160942569
+UniRef50_E3D657: Glutathione-regulated potassium-efflux system protein	1.3160592093
+UniRef50_E3D657: Glutathione-regulated potassium-efflux system protein|g__Neisseria.s__Neisseria_meningitidis	1.3160592093
+UniRef50_K2AGU5: Chemotactic signal-response protein CheL	1.3159924519
+UniRef50_K2AGU5: Chemotactic signal-response protein CheL|unclassified	1.3159924519
+UniRef50_M4XCW5	1.3159834232
+UniRef50_M4XCW5|unclassified	1.3159834232
+UniRef50_UPI00035D6807: hypothetical protein	1.3158826089
+UniRef50_UPI00035D6807: hypothetical protein|unclassified	1.3158826089
+UniRef50_A6LX27: Urea amidolyase related protein	1.3157894737
+UniRef50_A6LX27: Urea amidolyase related protein|g__Clostridium.s__Clostridium_beijerinckii	1.3157894737
+UniRef50_A6UXY4	1.3157894737
+UniRef50_A6UXY4|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3157894737
+UniRef50_G2YLC8	1.3157894737
+UniRef50_G2YLC8|unclassified	1.3157894737
+UniRef50_J3PMF7	1.3157894737
+UniRef50_J3PMF7|unclassified	1.3157894737
+UniRef50_M3BD66	1.3157894737
+UniRef50_M3BD66|unclassified	1.3157894737
+UniRef50_Q9RUZ6	1.3157894737
+UniRef50_Q9RUZ6|g__Deinococcus.s__Deinococcus_radiodurans	1.3157894737
+UniRef50_R7NQ15: Gluconate 5-dehydrogenase	1.3157894737
+UniRef50_R7NQ15: Gluconate 5-dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	1.3157894737
+UniRef50_UPI000225F22A: ABC transporter permease	1.3157894737
+UniRef50_UPI000225F22A: ABC transporter permease|unclassified	1.3157894737
+UniRef50_J9PBG5	1.3156540251
+UniRef50_J9PBG5|unclassified	1.3156540251
+UniRef50_UPI000373A1DA: hypothetical protein	1.3152741847
+UniRef50_UPI000373A1DA: hypothetical protein|unclassified	1.3152741847
+UniRef50_V4YM04: Sporulation inhibitor KipI	1.3151525033
+UniRef50_V4YM04: Sporulation inhibitor KipI|unclassified	1.3151525033
+UniRef50_C6XB32: Malto-oligosyltrehalose trehalohydrolase	1.3150807287
+UniRef50_C6XB32: Malto-oligosyltrehalose trehalohydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3150807287
+UniRef50_UPI0003F08AB5: PREDICTED: sterile alpha motif domain-containing protein 10	1.3150457444
+UniRef50_UPI0003F08AB5: PREDICTED: sterile alpha motif domain-containing protein 10|unclassified	1.3150457444
+UniRef50_UPI000377F1D1: hypothetical protein	1.3148793513
+UniRef50_UPI000377F1D1: hypothetical protein|unclassified	1.3148793513
+UniRef50_Q9RWM7	1.3148507507
+UniRef50_Q9RWM7|unclassified	1.3148507507
+UniRef50_A1AZ65	1.3148382961
+UniRef50_A1AZ65|unclassified	1.3148382961
+UniRef50_UPI00047AABBE: fucose isomerase	1.3146005050
+UniRef50_UPI00047AABBE: fucose isomerase|unclassified	1.3146005050
+UniRef50_UPI0003B69658: branched-chain amino acid ABC transporter permease	1.3144820592
+UniRef50_UPI0003B69658: branched-chain amino acid ABC transporter permease|unclassified	1.3144820592
+UniRef50_W5XGC5: Cation exchanger, putative	1.3144633637
+UniRef50_W5XGC5: Cation exchanger, putative|unclassified	1.3144633637
+UniRef50_UPI0003B3ACCD: ABC transporter permease	1.3142853555
+UniRef50_UPI0003B3ACCD: ABC transporter permease|unclassified	1.3142853555
+UniRef50_UPI0003B616D9: Fe-S metabolism protein SufE	1.3141680385
+UniRef50_UPI0003B616D9: Fe-S metabolism protein SufE|unclassified	1.3141680385
+UniRef50_A2VX52	1.3140604468
+UniRef50_A2VX52|unclassified	1.3140604468
+UniRef50_A9M185: Histidinol-phosphate aminotransferase	1.3140604468
+UniRef50_A9M185: Histidinol-phosphate aminotransferase|g__Neisseria.s__Neisseria_meningitidis	1.3140604468
+UniRef50_E3HN93: Bacterial regulatory helix-turn-helix protein, LysR family protein 40	1.3140604468
+UniRef50_E3HN93: Bacterial regulatory helix-turn-helix protein, LysR family protein 40|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3140604468
+UniRef50_G7M701: NAD-dependent epimerase/dehydratase	1.3140604468
+UniRef50_G7M701: NAD-dependent epimerase/dehydratase|g__Clostridium.s__Clostridium_beijerinckii	1.3140604468
+UniRef50_Q0SRR9: Polysaccharide deacetylase family protein	1.3140604468
+UniRef50_Q0SRR9: Polysaccharide deacetylase family protein|g__Clostridium.s__Clostridium_beijerinckii	1.3140604468
+UniRef50_Q4FRE8	1.3140604468
+UniRef50_Q4FRE8|g__Acinetobacter.s__Acinetobacter_baumannii	1.3140604468
+UniRef50_Q6AEX4: ABC-type glycine betaine transport, ATP-binding protein	1.3140604468
+UniRef50_Q6AEX4: ABC-type glycine betaine transport, ATP-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	1.3140604468
+UniRef50_UPI00047CB44D: transporter	1.3138266470
+UniRef50_UPI00047CB44D: transporter|unclassified	1.3138266470
+UniRef50_UPI00046FF946: hypothetical protein	1.3135432587
+UniRef50_UPI00046FF946: hypothetical protein|unclassified	1.3135432587
+UniRef50_UPI0001E897EE: Arsenical pump membrane protein	1.3134846539
+UniRef50_UPI0001E897EE: Arsenical pump membrane protein|unclassified	1.3134846539
+UniRef50_UPI000466D49C: MerR family transcriptional regulator, partial	1.3132762367
+UniRef50_UPI000466D49C: MerR family transcriptional regulator, partial|unclassified	1.3132762367
+UniRef50_F2EP13	1.3132336420
+UniRef50_F2EP13|unclassified	1.3132336420
+UniRef50_UPI00047E793D: hypothetical protein	1.3132022196
+UniRef50_UPI00047E793D: hypothetical protein|unclassified	1.3132022196
+UniRef50_A0A011Q9T7	1.3131289531
+UniRef50_A0A011Q9T7|unclassified	1.3131289531
+UniRef50_Q9I472: Cob(I)yrinic acid a,c-diamide adenosyltransferase	1.3127263635
+UniRef50_Q9I472: Cob(I)yrinic acid a,c-diamide adenosyltransferase|unclassified	1.3127263635
+UniRef50_UPI00046821B5: carbon-phosphorus lyase complex subunit PhnI	1.3126252358
+UniRef50_UPI00046821B5: carbon-phosphorus lyase complex subunit PhnI|unclassified	1.3126252358
+UniRef50_G2SIS1: Gamma-glutamyltransferase	1.3125922581
+UniRef50_G2SIS1: Gamma-glutamyltransferase|g__Helicobacter.s__Helicobacter_pylori	1.3125922581
+UniRef50_A9AM61	1.3125669017
+UniRef50_A9AM61|unclassified	1.3125669017
+UniRef50_A6X8A8: Endoribonuclease L-PSP	1.3125610539
+UniRef50_A6X8A8: Endoribonuclease L-PSP|unclassified	1.3125610539
+UniRef50_C0W3M9	1.3125008751
+UniRef50_C0W3M9|unclassified	1.3125008751
+UniRef50_Q9RXI3	1.3123562996
+UniRef50_Q9RXI3|unclassified	0.6587615283
+UniRef50_Q9RXI3|g__Deinococcus.s__Deinococcus_radiodurans	0.6535947712
+UniRef50_A6V3K7: Membrane protein, putative	1.3123359580
+UniRef50_A6V3K7: Membrane protein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3123359580
+UniRef50_D4J5A0: Diaminopropionate ammonia-lyase	1.3123359580
+UniRef50_D4J5A0: Diaminopropionate ammonia-lyase|g__Clostridium.s__Clostridium_beijerinckii	1.3123359580
+UniRef50_G7U596: Metal binding protein	1.3123359580
+UniRef50_G7U596: Metal binding protein|g__Propionibacterium.s__Propionibacterium_acnes	1.3123359580
+UniRef50_H8GTG2: Putative serine protease	1.3123359580
+UniRef50_H8GTG2: Putative serine protease|g__Deinococcus.s__Deinococcus_radiodurans	1.3123359580
+UniRef50_M0FDG2	1.3123359580
+UniRef50_M0FDG2|unclassified	1.3123359580
+UniRef50_R4Z3D7	1.3123359580
+UniRef50_R4Z3D7|unclassified	1.3123359580
+UniRef50_T2G2V5	1.3123359580
+UniRef50_T2G2V5|g__Escherichia.s__Escherichia_coli	1.3123359580
+UniRef50_UPI0000F2F50C: glutamyl-Q tRNA(Asp) ligase	1.3123359580
+UniRef50_UPI0000F2F50C: glutamyl-Q tRNA(Asp) ligase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3123359580
+UniRef50_UPI00045D8A1F: PREDICTED: transcription initiation factor TFIID subunit 4-like, partial	1.3123359580
+UniRef50_UPI00045D8A1F: PREDICTED: transcription initiation factor TFIID subunit 4-like, partial|unclassified	1.3123359580
+UniRef50_UPI000288FF6B: alpha/beta hydrolase fold protein	1.3120775955
+UniRef50_UPI000288FF6B: alpha/beta hydrolase fold protein|unclassified	1.3120775955
+UniRef50_UPI0001BC9D17: ABC-transport protein, inner membrane component, partial	1.3119733677
+UniRef50_UPI0001BC9D17: ABC-transport protein, inner membrane component, partial|unclassified	1.3119733677
+UniRef50_F4LYB7	1.3118996336
+UniRef50_F4LYB7|unclassified	1.3118996336
+UniRef50_N2I2Y0	1.3118996336
+UniRef50_N2I2Y0|unclassified	1.3118996336
+UniRef50_M7A473	1.3117395314
+UniRef50_M7A473|unclassified	1.3117395314
+UniRef50_W8YH03	1.3113360110
+UniRef50_W8YH03|unclassified	1.3113360110
+UniRef50_UPI000479CD53: AsnC family transcriptional regulator	1.3112751183
+UniRef50_UPI000479CD53: AsnC family transcriptional regulator|unclassified	1.3112751183
+UniRef50_UPI00036338D8: hypothetical protein	1.3108798685
+UniRef50_UPI00036338D8: hypothetical protein|unclassified	1.3108798685
+UniRef50_UPI000472B2F5: hypothetical protein	1.3106879440
+UniRef50_UPI000472B2F5: hypothetical protein|unclassified	1.3106879440
+UniRef50_M4WUF5	1.3106616005
+UniRef50_M4WUF5|unclassified	1.3106616005
+UniRef50_A7FAW6	1.3106159895
+UniRef50_A7FAW6|g__Acinetobacter.s__Acinetobacter_baumannii	1.3106159895
+UniRef50_B9KQ28: Short-chain dehydrogenase/reductase SDR	1.3106159895
+UniRef50_B9KQ28: Short-chain dehydrogenase/reductase SDR|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.3106159895
+UniRef50_E6MZ19: Periplasmic protein	1.3106159895
+UniRef50_E6MZ19: Periplasmic protein|g__Neisseria.s__Neisseria_meningitidis	1.3106159895
+UniRef50_G0P3Q3	1.3106159895
+UniRef50_G0P3Q3|unclassified	1.3106159895
+UniRef50_M5FFA0	1.3106159895
+UniRef50_M5FFA0|unclassified	1.3106159895
+UniRef50_Q3JS21: EutG protein	1.3106159895
+UniRef50_Q3JS21: EutG protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.3106159895
+UniRef50_Q7ML43	1.3106159895
+UniRef50_Q7ML43|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3106159895
+UniRef50_Q9RU53	1.3106159895
+UniRef50_Q9RU53|g__Deinococcus.s__Deinococcus_radiodurans	1.3106159895
+UniRef50_UPI00037152ED: hypothetical protein	1.3106159895
+UniRef50_UPI00037152ED: hypothetical protein|unclassified	1.3106159895
+UniRef50_UPI00037CCCC7: hypothetical protein	1.3103654718
+UniRef50_UPI00037CCCC7: hypothetical protein|unclassified	1.3103654718
+UniRef50_UPI0003688491: hypothetical protein	1.3103641646
+UniRef50_UPI0003688491: hypothetical protein|unclassified	1.3103641646
+UniRef50_K1YN95	1.3102032026
+UniRef50_K1YN95|unclassified	1.3102032026
+UniRef50_X4ZEG6	1.3099238492
+UniRef50_X4ZEG6|unclassified	1.3099238492
+UniRef50_B2AGC3	1.3098044683
+UniRef50_B2AGC3|unclassified	1.3098044683
+UniRef50_W1Y865	1.3096394637
+UniRef50_W1Y865|unclassified	1.3096394637
+UniRef50_U2YVN6	1.3094357904
+UniRef50_U2YVN6|unclassified	1.3094357904
+UniRef50_A7BMW3	1.3094351983
+UniRef50_A7BMW3|unclassified	1.3094351983
+UniRef50_UPI0003ADC7E4: PREDICTED: collagen alpha-1(III) chain-like	1.3092655469
+UniRef50_UPI0003ADC7E4: PREDICTED: collagen alpha-1(III) chain-like|unclassified	1.3092655469
+UniRef50_D5T2X9	1.3089084795
+UniRef50_D5T2X9|unclassified	1.3089084795
+UniRef50_E1V472: 2-octaprenyl-6-methoxyphenyl hydroxylase	1.3089005236
+UniRef50_E1V472: 2-octaprenyl-6-methoxyphenyl hydroxylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3089005236
+UniRef50_L0A7F9	1.3089005236
+UniRef50_L0A7F9|g__Deinococcus.s__Deinococcus_radiodurans	1.3089005236
+UniRef50_M1V095: A/G-specific adenine glycosylase	1.3089005236
+UniRef50_M1V095: A/G-specific adenine glycosylase|g__Propionibacterium.s__Propionibacterium_acnes	1.3089005236
+UniRef50_R1FQ49	1.3089005236
+UniRef50_R1FQ49|unclassified	1.3089005236
+UniRef50_UPI0003C10094: PREDICTED: 3-methyl-2-oxobutanoate hydroxymethyltransferase-like	1.3087311363
+UniRef50_UPI0003C10094: PREDICTED: 3-methyl-2-oxobutanoate hydroxymethyltransferase-like|unclassified	1.3087311363
+UniRef50_W7X754	1.3084390901
+UniRef50_W7X754|unclassified	1.3084390901
+UniRef50_Q2W825: Predicted transcriptional regulator	1.3084287971
+UniRef50_Q2W825: Predicted transcriptional regulator|unclassified	1.3084287971
+UniRef50_Q39BJ9	1.3083915366
+UniRef50_Q39BJ9|unclassified	1.3083915366
+UniRef50_W0Y326	1.3080961334
+UniRef50_W0Y326|unclassified	1.3080961334
+UniRef50_UPI000476562D: butanol dehydrogenase	1.3080846546
+UniRef50_UPI000476562D: butanol dehydrogenase|unclassified	1.3080846546
+UniRef50_J7QMF3	1.3074304836
+UniRef50_J7QMF3|unclassified	1.3074304836
+UniRef50_B9EAZ6	1.3073349132
+UniRef50_B9EAZ6|unclassified	1.3073349132
+UniRef50_A3PLT7: Sporulation domain protein	1.3071895425
+UniRef50_A3PLT7: Sporulation domain protein|unclassified	1.3071895425
+UniRef50_G7M4A9: Exonuclease RNase T and DNA polymerase III	1.3071895425
+UniRef50_G7M4A9: Exonuclease RNase T and DNA polymerase III|g__Clostridium.s__Clostridium_beijerinckii	1.3071895425
+UniRef50_Q8E0Z8: Prophage LambdaSa1, reverse transcriptase/maturase family protein	1.3071895425
+UniRef50_Q8E0Z8: Prophage LambdaSa1, reverse transcriptase/maturase family protein|g__Streptococcus.s__Streptococcus_agalactiae	1.3071895425
+UniRef50_Q9ZMN9: Fumarate reductase cytochrome b subunit	1.3071895425
+UniRef50_Q9ZMN9: Fumarate reductase cytochrome b subunit|g__Helicobacter.s__Helicobacter_pylori	1.3071895425
+UniRef50_U2Z407	1.3070563147
+UniRef50_U2Z407|unclassified	1.3070563147
+UniRef50_I4Z0I0	1.3069650394
+UniRef50_I4Z0I0|unclassified	1.3069650394
+UniRef50_UPI00035D56E3: hypothetical protein, partial	1.3068647059
+UniRef50_UPI00035D56E3: hypothetical protein, partial|unclassified	1.3068647059
+UniRef50_L7WEC7: ATG13 multi-domain protein	1.3066628454
+UniRef50_L7WEC7: ATG13 multi-domain protein|unclassified	1.3066628454
+UniRef50_W5XHV0: Glycosyltransferase 36	1.3064799649
+UniRef50_W5XHV0: Glycosyltransferase 36|unclassified	1.3064799649
+UniRef50_K2ADN8: Putative insertion sequence transposase protein	1.3057585685
+UniRef50_K2ADN8: Putative insertion sequence transposase protein|unclassified	1.3057585685
+UniRef50_UPI00047958EB: ABC transporter permease	1.3055918618
+UniRef50_UPI00047958EB: ABC transporter permease|unclassified	1.3055918618
+UniRef50_R7PR91	1.3054830287
+UniRef50_R7PR91|unclassified	1.3054830287
+UniRef50_A6LUT7: Zn-dependent hydrolase of the beta-lactamase fold-like protein	1.3054830287
+UniRef50_A6LUT7: Zn-dependent hydrolase of the beta-lactamase fold-like protein|g__Clostridium.s__Clostridium_beijerinckii	1.3054830287
+UniRef50_A7FAY2	1.3054830287
+UniRef50_A7FAY2|g__Acinetobacter.s__Acinetobacter_baumannii	1.3054830287
+UniRef50_Q6FDU5	1.3054830287
+UniRef50_Q6FDU5|g__Acinetobacter.s__Acinetobacter_baumannii	1.3054830287
+UniRef50_Q8XMJ3: 3-dehydroquinate synthase	1.3054830287
+UniRef50_Q8XMJ3: 3-dehydroquinate synthase|g__Clostridium.s__Clostridium_beijerinckii	1.3054830287
+UniRef50_Q9RUC2: Oxidoreductase, short-chain dehydrogenase/reductase family	1.3054830287
+UniRef50_Q9RUC2: Oxidoreductase, short-chain dehydrogenase/reductase family|g__Deinococcus.s__Deinococcus_radiodurans	1.3054830287
+UniRef50_T2E4B1: Glycosyl transferases group 1 family protein	1.3054830287
+UniRef50_T2E4B1: Glycosyl transferases group 1 family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3054830287
+UniRef50_UPI00036F2A19: hypothetical protein	1.3054551197
+UniRef50_UPI00036F2A19: hypothetical protein|unclassified	1.3054551197
+UniRef50_D4H950: YD repeat protein (3 repeats)	1.3054175466
+UniRef50_D4H950: YD repeat protein (3 repeats)|g__Propionibacterium.s__Propionibacterium_acnes	1.3054175466
+UniRef50_B7VAG5: Possible glyoxalase	1.3053492369
+UniRef50_B7VAG5: Possible glyoxalase|unclassified	1.3053492369
+UniRef50_Q1GTB2: PRC-barrel	1.3050946997
+UniRef50_Q1GTB2: PRC-barrel|unclassified	1.3050946997
+UniRef50_A0A023Z2T1	1.3050822760
+UniRef50_A0A023Z2T1|unclassified	1.3050822760
+UniRef50_E0N8V7	1.3048227661
+UniRef50_E0N8V7|unclassified	1.3048227661
+UniRef50_A7HTB1: Cytochrome oxidase maturation protein, cbb3-type	1.3048211426
+UniRef50_A7HTB1: Cytochrome oxidase maturation protein, cbb3-type|unclassified	1.3048211426
+UniRef50_J7L9U9	1.3045822734
+UniRef50_J7L9U9|unclassified	1.3045822734
+UniRef50_W1EG67: Oligopeptide transport system permease protein OppC (TC 3.A.1.5.1)	1.3045751785
+UniRef50_W1EG67: Oligopeptide transport system permease protein OppC (TC 3.A.1.5.1)|unclassified	1.3045751785
+UniRef50_W4TVZ8: Heme ABC transporter	1.3042319373
+UniRef50_W4TVZ8: Heme ABC transporter|unclassified	1.3042319373
+UniRef50_S8GQJ7	1.3041921765
+UniRef50_S8GQJ7|g__Streptococcus.s__Streptococcus_agalactiae	1.3041921765
+UniRef50_M9VKR8	1.3040499081
+UniRef50_M9VKR8|g__Propionibacterium.s__Propionibacterium_acnes	1.3040499081
+UniRef50_A0A023RZK1: Transglutaminase	1.3037809648
+UniRef50_A0A023RZK1: Transglutaminase|g__Acinetobacter.s__Acinetobacter_baumannii	1.3037809648
+UniRef50_A6LRR4: Transglutaminase domain protein	1.3037809648
+UniRef50_A6LRR4: Transglutaminase domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.3037809648
+UniRef50_A6M378: Thymidylate synthase	1.3037809648
+UniRef50_A6M378: Thymidylate synthase|g__Clostridium.s__Clostridium_beijerinckii	1.3037809648
+UniRef50_I0BK74: Transcriptional regulator	1.3037809648
+UniRef50_I0BK74: Transcriptional regulator|g__Clostridium.s__Clostridium_beijerinckii	1.3037809648
+UniRef50_K7S2B2: Sirohydrochlorin cobaltochelatase	1.3037809648
+UniRef50_K7S2B2: Sirohydrochlorin cobaltochelatase|g__Propionibacterium.s__Propionibacterium_acnes	1.3037809648
+UniRef50_X5PRE3	1.3035769687
+UniRef50_X5PRE3|unclassified	1.3035769687
+UniRef50_UPI0003B3F253: amino acid ABC transporter permease, partial	1.3033608142
+UniRef50_UPI0003B3F253: amino acid ABC transporter permease, partial|unclassified	1.3033608142
+UniRef50_X1A8H4: Marine sediment metagenome DNA, contig: S01H4_L03564 (Fragment)	1.3033498020
+UniRef50_X1A8H4: Marine sediment metagenome DNA, contig: S01H4_L03564 (Fragment)|unclassified	1.3033498020
+UniRef50_X8B6Q4: Putative conserved alanine and proline rich protein	1.3032227987
+UniRef50_X8B6Q4: Putative conserved alanine and proline rich protein|unclassified	1.3032227987
+UniRef50_UPI0003630FC3: hypothetical protein	1.3031495076
+UniRef50_UPI0003630FC3: hypothetical protein|unclassified	1.3031495076
+UniRef50_UPI0003457696: UDP pyrophosphate phosphatase	1.3031295402
+UniRef50_UPI0003457696: UDP pyrophosphate phosphatase|unclassified	1.3031295402
+UniRef50_V8PPF3	1.3029785341
+UniRef50_V8PPF3|unclassified	1.3029785341
+UniRef50_A5JHQ0: Alg8	1.3028625625
+UniRef50_A5JHQ0: Alg8|unclassified	1.3028625625
+UniRef50_V0Y0Z5	1.3026043525
+UniRef50_V0Y0Z5|unclassified	1.3026043525
+UniRef50_UPI00020002D3: putative PucR family transcriptional regulator	1.3025728610
+UniRef50_UPI00020002D3: putative PucR family transcriptional regulator|unclassified	1.3025728610
+UniRef50_F0L6J1: Phage head-tail adaptor, putative	1.3024253802
+UniRef50_F0L6J1: Phage head-tail adaptor, putative|unclassified	1.3024253802
+UniRef50_B7QL01	1.3023936108
+UniRef50_B7QL01|unclassified	1.3023936108
+UniRef50_UPI000373FD0E: transcriptional regulator	1.3023410153
+UniRef50_UPI000373FD0E: transcriptional regulator|unclassified	1.3023410153
+UniRef50_G7LY81: Multi-sensor signal transduction histidine kinase	1.3022668814
+UniRef50_G7LY81: Multi-sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	1.3022668814
+UniRef50_UPI00047A693B: chemotaxis protein CheY	1.3020944000
+UniRef50_UPI00047A693B: chemotaxis protein CheY|unclassified	1.3020944000
+UniRef50_E4REK4: Regulatory protein, IclR	1.3020833333
+UniRef50_E4REK4: Regulatory protein, IclR|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.3020833333
+UniRef50_H0C795	1.3020833333
+UniRef50_H0C795|unclassified	1.3020833333
+UniRef50_Q9RRX1: Acyl-CoA dehydrogenase, putative	1.3019902028
+UniRef50_Q9RRX1: Acyl-CoA dehydrogenase, putative|g__Deinococcus.s__Deinococcus_radiodurans	1.3019902028
+UniRef50_D3NQ24	1.3016969009
+UniRef50_D3NQ24|unclassified	1.3016969009
+UniRef50_F7T941: Major facilitator transporter	1.3014294797
+UniRef50_F7T941: Major facilitator transporter|unclassified	1.3014294797
+UniRef50_K1UQX5: Thiazole biosynthesis protein ThiH (Fragment)	1.3013493982
+UniRef50_K1UQX5: Thiazole biosynthesis protein ThiH (Fragment)|unclassified	1.3013493982
+UniRef50_J8VBL0	1.3012920895
+UniRef50_J8VBL0|unclassified	1.3012920895
+UniRef50_Q9I163: Putative quercetin 2,3-dioxygenase PA2418	1.3010979196
+UniRef50_Q9I163: Putative quercetin 2,3-dioxygenase PA2418|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1655011655
+UniRef50_Q9I163: Putative quercetin 2,3-dioxygenase PA2418|unclassified	0.1355967541
+UniRef50_N1M5F6	1.3010974641
+UniRef50_N1M5F6|unclassified	1.3010974641
+UniRef50_UPI0002F61CB0: hypothetical protein	1.3010406628
+UniRef50_UPI0002F61CB0: hypothetical protein|unclassified	1.3010406628
+UniRef50_V0YPG9: 5-methylcytosine-specific restriction enzyme B domain protein	1.3009760847
+UniRef50_V0YPG9: 5-methylcytosine-specific restriction enzyme B domain protein|unclassified	1.3009760847
+UniRef50_E2ZVK0	1.3008029736
+UniRef50_E2ZVK0|unclassified	1.3008029736
+UniRef50_G5LW35: 2-haloalkanoic acid dehalogenase (Fragment)	1.3007917510
+UniRef50_G5LW35: 2-haloalkanoic acid dehalogenase (Fragment)|unclassified	1.3007917510
+UniRef50_A1JS05: Transposase for insertion sequence element IS1665	1.3003901170
+UniRef50_A1JS05: Transposase for insertion sequence element IS1665|g__Escherichia.s__Escherichia_coli	1.3003901170
+UniRef50_B2VIL6: Ubiquinone biosynthesis O-methyltransferase	1.3003901170
+UniRef50_B2VIL6: Ubiquinone biosynthesis O-methyltransferase|g__Escherichia.s__Escherichia_coli	1.3003901170
+UniRef50_A7A485	1.3003470773
+UniRef50_A7A485|unclassified	1.3003470773
+UniRef50_B8DT48: Methionine--tRNA ligase	1.3000248571
+UniRef50_B8DT48: Methionine--tRNA ligase|g__Propionibacterium.s__Propionibacterium_acnes	1.3000248571
+UniRef50_B6B233: PucC protein	1.2999594213
+UniRef50_B6B233: PucC protein|unclassified	1.2999594213
+UniRef50_V2Y8C8	1.2998874385
+UniRef50_V2Y8C8|unclassified	1.2998874385
+UniRef50_UPI0003738950: hypothetical protein	1.2998659075
+UniRef50_UPI0003738950: hypothetical protein|unclassified	1.2998659075
+UniRef50_C4J7R0	1.2998505132
+UniRef50_C4J7R0|unclassified	1.2998505132
+UniRef50_Q28PX2	1.2997244061
+UniRef50_Q28PX2|unclassified	1.2997244061
+UniRef50_P22869: Methane monooxygenase component A alpha chain	1.2995451592
+UniRef50_P22869: Methane monooxygenase component A alpha chain|unclassified	1.2995451592
+UniRef50_F4MUN4: DnaK suppressor protein	1.2992458275
+UniRef50_F4MUN4: DnaK suppressor protein|unclassified	1.2992458275
+UniRef50_C3BHR2: Phosphoglycerate mutase	1.2992384170
+UniRef50_C3BHR2: Phosphoglycerate mutase|unclassified	1.2992384170
+UniRef50_UPI00035F0102: hypothetical protein	1.2991674986
+UniRef50_UPI00035F0102: hypothetical protein|unclassified	1.2991674986
+UniRef50_UPI0001CC03EE: IS1404 transposase, partial	1.2991339470
+UniRef50_UPI0001CC03EE: IS1404 transposase, partial|unclassified	1.2991339470
+UniRef50_X7XPI4	1.2991042712
+UniRef50_X7XPI4|unclassified	1.2991042712
+UniRef50_W1XNW1	1.2988927147
+UniRef50_W1XNW1|unclassified	1.2988927147
+UniRef50_S1SMM7	1.2988384216
+UniRef50_S1SMM7|unclassified	1.2988384216
+UniRef50_Q12GA2: Glycerol kinase	1.2988023044
+UniRef50_Q12GA2: Glycerol kinase|g__Propionibacterium.s__Propionibacterium_acnes	0.9199632015
+UniRef50_Q12GA2: Glycerol kinase|unclassified	0.3788391029
+UniRef50_I6FM36	1.2987375590
+UniRef50_I6FM36|unclassified	1.2987375590
+UniRef50_A0A023S0D0: LysR family transcriptional regulator	1.2987012987
+UniRef50_A0A023S0D0: LysR family transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	1.2987012987
+UniRef50_E6SHK8	1.2987012987
+UniRef50_E6SHK8|unclassified	1.2987012987
+UniRef50_I4Y4D8: Thioesterase family protein	1.2987012987
+UniRef50_I4Y4D8: Thioesterase family protein|unclassified	1.2987012987
+UniRef50_K9ZX43	1.2987012987
+UniRef50_K9ZX43|g__Deinococcus.s__Deinococcus_radiodurans	1.2987012987
+UniRef50_M4RA06	1.2987012987
+UniRef50_M4RA06|g__Acinetobacter.s__Acinetobacter_baumannii	1.2987012987
+UniRef50_Q8G4N5: Glucosamine-6-phosphate deaminase	1.2987012987
+UniRef50_Q8G4N5: Glucosamine-6-phosphate deaminase|g__Propionibacterium.s__Propionibacterium_acnes	1.2987012987
+UniRef50_Q5GWI0: Phenol hydroxylase	1.2986382032
+UniRef50_Q5GWI0: Phenol hydroxylase|unclassified	1.2986382032
+UniRef50_UPI000237B627: large ATP-binding protein	1.2982953925
+UniRef50_UPI000237B627: large ATP-binding protein|unclassified	1.2982953925
+UniRef50_E9UCT1	1.2982896527
+UniRef50_E9UCT1|unclassified	1.2982896527
+UniRef50_A9HNW8: PRC-barrel protein	1.2982366315
+UniRef50_A9HNW8: PRC-barrel protein|unclassified	1.2982366315
+UniRef50_K2BI07	1.2981368274
+UniRef50_K2BI07|unclassified	1.2981368274
+UniRef50_A0A028W3C5: Transcriptional regulator, GntR family	1.2977172331
+UniRef50_A0A028W3C5: Transcriptional regulator, GntR family|unclassified	1.2977172331
+UniRef50_F9W695: WGS project CAEQ00000000 data, annotated contig 143 (Fragment)	1.2976973115
+UniRef50_F9W695: WGS project CAEQ00000000 data, annotated contig 143 (Fragment)|unclassified	1.2976973115
+UniRef50_C5N6H6	1.2974374614
+UniRef50_C5N6H6|unclassified	1.2974374614
+UniRef50_F0YCT2: Expressed protein (Fragment)	1.2973383078
+UniRef50_F0YCT2: Expressed protein (Fragment)|unclassified	1.2973383078
+UniRef50_Q05627	1.2973150160
+UniRef50_Q05627|g__Clostridium.s__Clostridium_beijerinckii	1.2973150160
+UniRef50_A6LQ15: BAAT/Acyl-CoA thioester hydrolase-like protein	1.2970168612
+UniRef50_A6LQ15: BAAT/Acyl-CoA thioester hydrolase-like protein|g__Clostridium.s__Clostridium_beijerinckii	1.2970168612
+UniRef50_A6LR25: Binding-protein-dependent transport systems inner membrane component	1.2970168612
+UniRef50_A6LR25: Binding-protein-dependent transport systems inner membrane component|g__Clostridium.s__Clostridium_beijerinckii	1.2970168612
+UniRef50_H5JVU8: Diguanylate cyclase domain protein	1.2970168612
+UniRef50_H5JVU8: Diguanylate cyclase domain protein|g__Escherichia.s__Escherichia_coli	1.2970168612
+UniRef50_Q9RYN5: Cytochrome C6, putative	1.2970168612
+UniRef50_Q9RYN5: Cytochrome C6, putative|g__Deinococcus.s__Deinococcus_radiodurans	1.2970168612
+UniRef50_UPI0004571709: PREDICTED: chitin-binding lectin 1-like	1.2968596038
+UniRef50_UPI0004571709: PREDICTED: chitin-binding lectin 1-like|unclassified	1.2968596038
+UniRef50_M4BT40	1.2968114150
+UniRef50_M4BT40|unclassified	1.2968114150
+UniRef50_B4G025	1.2966597031
+UniRef50_B4G025|unclassified	1.2966597031
+UniRef50_UPI0003645F2C: transcriptional regulator	1.2966475722
+UniRef50_UPI0003645F2C: transcriptional regulator|unclassified	1.2966475722
+UniRef50_G4B724: Transporting ATPase	1.2958523104
+UniRef50_G4B724: Transporting ATPase|unclassified	1.2958523104
+UniRef50_Q6A900: Ribonuclease Y	1.2958163643
+UniRef50_Q6A900: Ribonuclease Y|g__Propionibacterium.s__Propionibacterium_acnes	1.2958163643
+UniRef50_K7UIK1	1.2954246891
+UniRef50_K7UIK1|unclassified	1.2954246891
+UniRef50_E6MXC7: Chorismate mutase	1.2953367876
+UniRef50_E6MXC7: Chorismate mutase|g__Neisseria.s__Neisseria_meningitidis	1.2953367876
+UniRef50_M1MCE4: Diguanylate cyclase	1.2953367876
+UniRef50_M1MCE4: Diguanylate cyclase|g__Clostridium.s__Clostridium_beijerinckii	1.2953367876
+UniRef50_UPI000454C1C6: PREDICTED: zinc finger protein 239-like	1.2953367876
+UniRef50_UPI000454C1C6: PREDICTED: zinc finger protein 239-like|unclassified	1.2953367876
+UniRef50_UPI00035057EC: PREDICTED: translation initiation factor IF-2-like	1.2952679272
+UniRef50_UPI00035057EC: PREDICTED: translation initiation factor IF-2-like|unclassified	1.2952679272
+UniRef50_UPI00036EF03D: hypothetical protein, partial	1.2951720970
+UniRef50_UPI00036EF03D: hypothetical protein, partial|unclassified	1.2951720970
+UniRef50_UPI000465949E: HIT family hydrolase	1.2949985192
+UniRef50_UPI000465949E: HIT family hydrolase|unclassified	1.2949985192
+UniRef50_R4ZPC0: Sialidase	1.2948999377
+UniRef50_R4ZPC0: Sialidase|g__Streptococcus.s__Streptococcus_agalactiae	1.2948999377
+UniRef50_J8V5E0	1.2948964075
+UniRef50_J8V5E0|unclassified	1.2948964075
+UniRef50_UPI000255897E: carboxypeptidase Taq, partial	1.2948113205
+UniRef50_UPI000255897E: carboxypeptidase Taq, partial|unclassified	1.2948113205
+UniRef50_K0TM54	1.2948105328
+UniRef50_K0TM54|unclassified	1.2948105328
+UniRef50_J9NWV1	1.2946975564
+UniRef50_J9NWV1|unclassified	1.2946975564
+UniRef50_Q4LC37: TraU protein	1.2946968954
+UniRef50_Q4LC37: TraU protein|unclassified	1.2946968954
+UniRef50_K8B8X7	1.2946481962
+UniRef50_K8B8X7|unclassified	1.2946481962
+UniRef50_Q5TKQ7	1.2944983819
+UniRef50_Q5TKQ7|unclassified	1.2944983819
+UniRef50_UPI0002EF1560: hypothetical protein	1.2943487115
+UniRef50_UPI0002EF1560: hypothetical protein|unclassified	1.2943487115
+UniRef50_Q650K4: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase	1.2942731837
+UniRef50_Q650K4: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase|g__Clostridium.s__Clostridium_beijerinckii	1.2330456227
+UniRef50_Q650K4: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase|unclassified	0.0612275610
+UniRef50_T1Y610	1.2940448000
+UniRef50_T1Y610|g__Acinetobacter.s__Acinetobacter_baumannii	1.2940448000
+UniRef50_T6VTE2	1.2937145425
+UniRef50_T6VTE2|unclassified	1.2937145425
+UniRef50_A0A017HKW3: GTA tail tape measure	1.2936921462
+UniRef50_A0A017HKW3: GTA tail tape measure|unclassified	1.2936921462
+UniRef50_D8JK92: LysR family transcriptional regulator	1.2936610608
+UniRef50_D8JK92: LysR family transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	1.2936610608
+UniRef50_W0AMQ6: Cell envelope integrity inner membrane protein TolA	1.2936610608
+UniRef50_W0AMQ6: Cell envelope integrity inner membrane protein TolA|g__Escherichia.s__Escherichia_coli	1.2936610608
+UniRef50_W0YQ91	1.2936610608
+UniRef50_W0YQ91|unclassified	1.2936610608
+UniRef50_W5WZ80: N-succinyldiaminopimelate aminotransferase	1.2936610608
+UniRef50_W5WZ80: N-succinyldiaminopimelate aminotransferase|g__Propionibacterium.s__Propionibacterium_acnes	1.2936610608
+UniRef50_W8V540: Acetoin utilization acuC protein	1.2936610608
+UniRef50_W8V540: Acetoin utilization acuC protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.2936610608
+UniRef50_W7VMD9: Peptidase M23 (Fragment)	1.2934850376
+UniRef50_W7VMD9: Peptidase M23 (Fragment)|unclassified	1.2934850376
+UniRef50_V5VCJ0: Protease	1.2932569102
+UniRef50_V5VCJ0: Protease|g__Acinetobacter.s__Acinetobacter_baumannii	1.2932569102
+UniRef50_Q1GK93: Endoribonuclease YbeY	1.2930701004
+UniRef50_Q1GK93: Endoribonuclease YbeY|unclassified	1.2930701004
+UniRef50_I3TNK1: GNAT-family acetyltransferase TIGR03103	1.2928663688
+UniRef50_I3TNK1: GNAT-family acetyltransferase TIGR03103|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2928663688
+UniRef50_S6QJ91: Aryldialkylphosphatase (Fragment)	1.2928556057
+UniRef50_S6QJ91: Aryldialkylphosphatase (Fragment)|unclassified	1.2928556057
+UniRef50_UPI000470E876: hypothetical protein	1.2928544667
+UniRef50_UPI000470E876: hypothetical protein|unclassified	1.2928544667
+UniRef50_N5FB74: Phage protein	1.2927735801
+UniRef50_N5FB74: Phage protein|unclassified	1.2927735801
+UniRef50_E8U3M5	1.2925083578
+UniRef50_E8U3M5|unclassified	1.2925083578
+UniRef50_UPI00037982A9: hypothetical protein	1.2921799021
+UniRef50_UPI00037982A9: hypothetical protein|unclassified	1.2921799021
+UniRef50_UPI0003B715FE: branched-chain amino acid aminotransferase	1.2920310187
+UniRef50_UPI0003B715FE: branched-chain amino acid aminotransferase|unclassified	1.2920310187
+UniRef50_A0A023S045: Metallophosphatase	1.2919896641
+UniRef50_A0A023S045: Metallophosphatase|g__Acinetobacter.s__Acinetobacter_baumannii	1.2919896641
+UniRef50_A4WP12: Ribosomal RNA small subunit methyltransferase E	1.2919896641
+UniRef50_A4WP12: Ribosomal RNA small subunit methyltransferase E|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.2919896641
+UniRef50_A6LYF6: Rubrerythrin	1.2919896641
+UniRef50_A6LYF6: Rubrerythrin|g__Clostridium.s__Clostridium_beijerinckii	1.2919896641
+UniRef50_D4HEJ4: Phospholipase, patatin family	1.2919896641
+UniRef50_D4HEJ4: Phospholipase, patatin family|g__Propionibacterium.s__Propionibacterium_acnes	1.2919896641
+UniRef50_E2X6L5: HTH-type transcriptional regulator MurR	1.2919896641
+UniRef50_E2X6L5: HTH-type transcriptional regulator MurR|g__Escherichia.s__Escherichia_coli	1.2919896641
+UniRef50_P19940: RNA polymerase sigma-G factor	1.2919896641
+UniRef50_P19940: RNA polymerase sigma-G factor|g__Clostridium.s__Clostridium_beijerinckii	1.2919896641
+UniRef50_Q5LFB0	1.2919896641
+UniRef50_Q5LFB0|unclassified	1.2919896641
+UniRef50_UPI00045E1A56: PREDICTED: chromosome transmission fidelity protein 8 homolog isoform 2-like	1.2919896641
+UniRef50_UPI00045E1A56: PREDICTED: chromosome transmission fidelity protein 8 homolog isoform 2-like|unclassified	1.2919896641
+UniRef50_Q96EG4: LOC646903 protein (Fragment)	1.2919572753
+UniRef50_Q96EG4: LOC646903 protein (Fragment)|unclassified	1.2919572753
+UniRef50_UPI000367C756: hypothetical protein	1.2918045760
+UniRef50_UPI000367C756: hypothetical protein|unclassified	1.2918045760
+UniRef50_UPI000262ABDC: Resolvase domain protein	1.2917643932
+UniRef50_UPI000262ABDC: Resolvase domain protein|unclassified	1.2917643932
+UniRef50_W1K3B0: ABC transporter permease (Fragment)	1.2916651158
+UniRef50_W1K3B0: ABC transporter permease (Fragment)|unclassified	1.2916651158
+UniRef50_Q0A8V6: UPF0260 protein Mlg_1382	1.2915098937
+UniRef50_Q0A8V6: UPF0260 protein Mlg_1382|unclassified	1.2915098937
+UniRef50_UPI00035FB310: hypothetical protein	1.2914829195
+UniRef50_UPI00035FB310: hypothetical protein|unclassified	1.2914829195
+UniRef50_H3UFB5: TIGR00730-like family protein	1.2914173142
+UniRef50_H3UFB5: TIGR00730-like family protein|unclassified	1.2914173142
+UniRef50_A0A038CJW0	1.2914006876
+UniRef50_A0A038CJW0|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2914006876
+UniRef50_UPI00034B06AD: hypothetical protein	1.2911345408
+UniRef50_UPI00034B06AD: hypothetical protein|unclassified	1.2911345408
+UniRef50_J2LQD7	1.2911315377
+UniRef50_J2LQD7|unclassified	1.2911315377
+UniRef50_UPI0003B6B1CE: ABC transporter substrate-binding protein, partial	1.2909160891
+UniRef50_UPI0003B6B1CE: ABC transporter substrate-binding protein, partial|unclassified	1.2909160891
+UniRef50_T4J8J8: RnfC Barrel sandwich hybrid domain protein (Fragment)	1.2908568346
+UniRef50_T4J8J8: RnfC Barrel sandwich hybrid domain protein (Fragment)|unclassified	1.2908568346
+UniRef50_UPI0002487593: citrate lyase, partial	1.2908258680
+UniRef50_UPI0002487593: citrate lyase, partial|unclassified	1.2908258680
+UniRef50_K2SUC7: Transcriptional regulator, AraC family	1.2907771240
+UniRef50_K2SUC7: Transcriptional regulator, AraC family|unclassified	1.2907771240
+UniRef50_C0AXN4	1.2905647961
+UniRef50_C0AXN4|unclassified	1.2905647961
+UniRef50_E0RTP7	1.2905276585
+UniRef50_E0RTP7|unclassified	1.2905276585
+UniRef50_A3M3L2: Transcription regulator LysR family	1.2903225806
+UniRef50_A3M3L2: Transcription regulator LysR family|g__Acinetobacter.s__Acinetobacter_baumannii	1.2903225806
+UniRef50_A6LQC6: Polysaccharide deacetylase	1.2903225806
+UniRef50_A6LQC6: Polysaccharide deacetylase|g__Clostridium.s__Clostridium_beijerinckii	1.2903225806
+UniRef50_A6LUR0: Transcriptional regulator, RpiR family	1.2903225806
+UniRef50_A6LUR0: Transcriptional regulator, RpiR family|g__Clostridium.s__Clostridium_beijerinckii	1.2903225806
+UniRef50_E8QKR2: Zinc-dependent alcohol dehydrogenase	1.2903225806
+UniRef50_E8QKR2: Zinc-dependent alcohol dehydrogenase|g__Helicobacter.s__Helicobacter_pylori	1.2903225806
+UniRef50_G7U653	1.2903225806
+UniRef50_G7U653|g__Propionibacterium.s__Propionibacterium_acnes	1.2903225806
+UniRef50_UPI0004431932: PREDICTED: brevican core protein-like	1.2903225806
+UniRef50_UPI0004431932: PREDICTED: brevican core protein-like|unclassified	1.2903225806
+UniRef50_R5A8C5	1.2901837734
+UniRef50_R5A8C5|unclassified	1.2901837734
+UniRef50_UPI0003B46743: hypothetical protein	1.2901615917
+UniRef50_UPI0003B46743: hypothetical protein|unclassified	1.2901615917
+UniRef50_A6LVS2: Restriction endonuclease	1.2898962390
+UniRef50_A6LVS2: Restriction endonuclease|g__Clostridium.s__Clostridium_beijerinckii	1.2898962390
+UniRef50_J2X394: Autoinducer 2-degrading protein lsrG	1.2895983659
+UniRef50_J2X394: Autoinducer 2-degrading protein lsrG|unclassified	1.2895983659
+UniRef50_E0TAZ2: Plasma membrane H+-transporting two-sector ATPase, C subunit	1.2892944749
+UniRef50_E0TAZ2: Plasma membrane H+-transporting two-sector ATPase, C subunit|unclassified	1.2892944749
+UniRef50_A0A022GVC0: Transcriptional regulator	1.2890448716
+UniRef50_A0A022GVC0: Transcriptional regulator|unclassified	1.2890448716
+UniRef50_E6MZX2	1.2890253768
+UniRef50_E6MZX2|g__Neisseria.s__Neisseria_meningitidis	1.2890253768
+UniRef50_UPI0003AE3085: PREDICTED: transcription initiation factor TFIID subunit 4-like	1.2889594885
+UniRef50_UPI0003AE3085: PREDICTED: transcription initiation factor TFIID subunit 4-like|unclassified	1.2889594885
+UniRef50_U6ZXX9	1.2887258893
+UniRef50_U6ZXX9|unclassified	1.2887258893
+UniRef50_A6M079: NADPH-dependent FMN reductase	1.2886597938
+UniRef50_A6M079: NADPH-dependent FMN reductase|g__Clostridium.s__Clostridium_beijerinckii	1.2886597938
+UniRef50_D8JE80: Tyrosine recombinase XerC	1.2886597938
+UniRef50_D8JE80: Tyrosine recombinase XerC|g__Acinetobacter.s__Acinetobacter_baumannii	1.2886597938
+UniRef50_F2J418: Major facilitator superfamily (MFS) transporter	1.2886597938
+UniRef50_F2J418: Major facilitator superfamily (MFS) transporter|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.2886597938
+UniRef50_Q97WN9: NH(3)-dependent NAD(+) synthetase	1.2886597938
+UniRef50_Q97WN9: NH(3)-dependent NAD(+) synthetase|unclassified	1.2886597938
+UniRef50_M9RKI3	1.2885506196
+UniRef50_M9RKI3|unclassified	1.2885506196
+UniRef50_UPI000185E93D: 30S ribosomal protein S14, putative	1.2881943265
+UniRef50_UPI000185E93D: 30S ribosomal protein S14, putative|unclassified	1.2881943265
+UniRef50_A0A028XXS7	1.2880320482
+UniRef50_A0A028XXS7|unclassified	1.2880320482
+UniRef50_G9W1I6: Protein FdrA	1.2879731034
+UniRef50_G9W1I6: Protein FdrA|unclassified	1.2879731034
+UniRef50_H2JMH7	1.2875983815
+UniRef50_H2JMH7|unclassified	1.2875983815
+UniRef50_UPI00046666C3: hypothetical protein	1.2873284746
+UniRef50_UPI00046666C3: hypothetical protein|unclassified	1.2873284746
+UniRef50_UPI000375CFC4: hypothetical protein	1.2870035402
+UniRef50_UPI000375CFC4: hypothetical protein|unclassified	1.2870035402
+UniRef50_U9XSC3	1.2870033714
+UniRef50_U9XSC3|unclassified	1.2870033714
+UniRef50_B0V5M9	1.2870012870
+UniRef50_B0V5M9|g__Acinetobacter.s__Acinetobacter_baumannii	1.2870012870
+UniRef50_C1DDR4	1.2870012870
+UniRef50_C1DDR4|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2870012870
+UniRef50_E8QA07	1.2870012870
+UniRef50_E8QA07|g__Streptococcus.s__Streptococcus_agalactiae	1.2870012870
+UniRef50_J7J208: Peptidylarginine deiminase-like enzyme	1.2870012870
+UniRef50_J7J208: Peptidylarginine deiminase-like enzyme|g__Clostridium.s__Clostridium_beijerinckii	1.2870012870
+UniRef50_R4QZ95: 3'(2'),5'-bisphosphate nucleotidase CysQ	1.2870012870
+UniRef50_R4QZ95: 3'(2'),5'-bisphosphate nucleotidase CysQ|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2870012870
+UniRef50_A0A009FMX4: BCCT transporter family protein	1.2869055409
+UniRef50_A0A009FMX4: BCCT transporter family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.2869055409
+UniRef50_UPI00047A3E0B: MarR family transcriptional regulator	1.2868699610
+UniRef50_UPI00047A3E0B: MarR family transcriptional regulator|unclassified	1.2868699610
+UniRef50_Q92G97: NADH-quinone oxidoreductase subunit L	1.2866404415
+UniRef50_Q92G97: NADH-quinone oxidoreductase subunit L|unclassified	1.2866404415
+UniRef50_A0A022M0E6: TonB-dependent receptor (Fragment)	1.2865670773
+UniRef50_A0A022M0E6: TonB-dependent receptor (Fragment)|unclassified	1.2865670773
+UniRef50_V6YC02	1.2862685441
+UniRef50_V6YC02|unclassified	1.2862685441
+UniRef50_A6M2J1: Glycosyl transferase, group 1	1.2859791313
+UniRef50_A6M2J1: Glycosyl transferase, group 1|g__Clostridium.s__Clostridium_beijerinckii	1.2859791313
+UniRef50_UPI0003817ED0: hypothetical protein	1.2857219119
+UniRef50_UPI0003817ED0: hypothetical protein|unclassified	1.2857219119
+UniRef50_U1YI17	1.2853565595
+UniRef50_U1YI17|unclassified	1.2853565595
+UniRef50_A6LVI5	1.2853470437
+UniRef50_A6LVI5|g__Clostridium.s__Clostridium_beijerinckii	1.2853470437
+UniRef50_P26993: Exoenzyme S synthesis regulatory protein ExsA	1.2853470437
+UniRef50_P26993: Exoenzyme S synthesis regulatory protein ExsA|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2853470437
+UniRef50_Q2VYZ0: Phenylalanyl-tRNA synthetase alpha subunit	1.2853470437
+UniRef50_Q2VYZ0: Phenylalanyl-tRNA synthetase alpha subunit|g__Streptococcus.s__Streptococcus_mutans	1.2853470437
+UniRef50_Q9I3P5	1.2853470437
+UniRef50_Q9I3P5|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2853470437
+UniRef50_UPI0003D6D893: hypothetical protein	1.2849184034
+UniRef50_UPI0003D6D893: hypothetical protein|unclassified	1.2849184034
+UniRef50_S3UPJ8: Phosphocarrier, HPr family	1.2845206583
+UniRef50_S3UPJ8: Phosphocarrier, HPr family|unclassified	1.2845206583
+UniRef50_Q3DI58	1.2843166994
+UniRef50_Q3DI58|unclassified	1.2843166994
+UniRef50_UPI000381A7C9: NrdR family transcriptional regulator	1.2839902626
+UniRef50_UPI000381A7C9: NrdR family transcriptional regulator|unclassified	1.2839902626
+UniRef50_A5N391	1.2839615437
+UniRef50_A5N391|g__Clostridium.s__Clostridium_beijerinckii	1.2839615437
+UniRef50_F5LXB4	1.2838022349
+UniRef50_F5LXB4|unclassified	1.2838022349
+UniRef50_A0A023RTZ1: LysR family transcriptional regulator	1.2836970475
+UniRef50_A0A023RTZ1: LysR family transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	1.2836970475
+UniRef50_B6JNM2	1.2836970475
+UniRef50_B6JNM2|g__Helicobacter.s__Helicobacter_pylori	1.2836970475
+UniRef50_O25963: UDP-N-acetylenolpyruvoylglucosamine reductase	1.2836970475
+UniRef50_O25963: UDP-N-acetylenolpyruvoylglucosamine reductase|g__Helicobacter.s__Helicobacter_pylori	1.2836970475
+UniRef50_X1HNX9: Marine sediment metagenome DNA, contig: S03H2_S17330 (Fragment)	1.2835623445
+UniRef50_X1HNX9: Marine sediment metagenome DNA, contig: S03H2_S17330 (Fragment)|unclassified	1.2835623445
+UniRef50_Q1JBZ8: Two-component sensor kinase yesM	1.2834861411
+UniRef50_Q1JBZ8: Two-component sensor kinase yesM|g__Streptococcus.s__Streptococcus_agalactiae	1.2834861411
+UniRef50_F2AEC2	1.2834594853
+UniRef50_F2AEC2|unclassified	1.2834594853
+UniRef50_G4B2K6: Rhamnose ABC transporter, rhamnose-binding protein	1.2829711919
+UniRef50_G4B2K6: Rhamnose ABC transporter, rhamnose-binding protein|unclassified	1.2829711919
+UniRef50_J1SZC4	1.2827867073
+UniRef50_J1SZC4|unclassified	1.2827867073
+UniRef50_UPI0003B6EE3B: diguanylate cyclase, partial	1.2826725506
+UniRef50_UPI0003B6EE3B: diguanylate cyclase, partial|unclassified	1.2826725506
+UniRef50_A3AS75	1.2825210120
+UniRef50_A3AS75|unclassified	1.2825210120
+UniRef50_T1B6U2	1.2824140183
+UniRef50_T1B6U2|unclassified	1.2824140183
+UniRef50_K2JGL6	1.2823595838
+UniRef50_K2JGL6|unclassified	1.2823595838
+UniRef50_D8JGI7: MJ0042 family finger-like domain protein	1.2820512821
+UniRef50_D8JGI7: MJ0042 family finger-like domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.2820512821
+UniRef50_E6VA72: ABC transporter related protein	1.2820512821
+UniRef50_E6VA72: ABC transporter related protein|g__Clostridium.s__Clostridium_beijerinckii	1.2820512821
+UniRef50_M1N022: Histidinol-phosphatase HisK	1.2820512821
+UniRef50_M1N022: Histidinol-phosphatase HisK|g__Clostridium.s__Clostridium_beijerinckii	1.2820512821
+UniRef50_Q5XD38: PTS system, N-acetylgalactosamine-specific IID component	1.2820512821
+UniRef50_Q5XD38: PTS system, N-acetylgalactosamine-specific IID component|g__Streptococcus.s__Streptococcus_agalactiae	1.2820512821
+UniRef50_T9UYG2	1.2820512821
+UniRef50_T9UYG2|g__Escherichia.s__Escherichia_coli	1.2820512821
+UniRef50_UPI0004712276: hypothetical protein	1.2817096078
+UniRef50_UPI0004712276: hypothetical protein|unclassified	1.2817096078
+UniRef50_UPI0003B70C34: transporter	1.2808742263
+UniRef50_UPI0003B70C34: transporter|unclassified	1.2808742263
+UniRef50_UPI0003B301D2: DNA-binding protein	1.2804888848
+UniRef50_UPI0003B301D2: DNA-binding protein|unclassified	1.2804888848
+UniRef50_A6LS23: Helix-turn-helix domain protein	1.2804097311
+UniRef50_A6LS23: Helix-turn-helix domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.2804097311
+UniRef50_C0P3Q6	1.2804097311
+UniRef50_C0P3Q6|unclassified	1.2804097311
+UniRef50_T9WNI3: NADP-specific glutamate dehydrogenase	1.2804097311
+UniRef50_T9WNI3: NADP-specific glutamate dehydrogenase|g__Streptococcus.s__Streptococcus_agalactiae	1.2804097311
+UniRef50_UPI00046A59C7: hypothetical protein	1.2804097311
+UniRef50_UPI00046A59C7: hypothetical protein|unclassified	1.2804097311
+UniRef50_A4WSK9	1.2803446258
+UniRef50_A4WSK9|unclassified	1.2803446258
+UniRef50_UPI000376B5FB: hypothetical protein	1.2801204662
+UniRef50_UPI000376B5FB: hypothetical protein|unclassified	1.2801204662
+UniRef50_M4HU62: Degenerate transposase (Orf1)	1.2797685527
+UniRef50_M4HU62: Degenerate transposase (Orf1)|unclassified	1.2797685527
+UniRef50_E6YIK0	1.2796831176
+UniRef50_E6YIK0|unclassified	1.2796831176
+UniRef50_A0A024C1C5	1.2794458597
+UniRef50_A0A024C1C5|g__Helicobacter.s__Helicobacter_pylori	1.2794458597
+UniRef50_D0W7F7	1.2793634225
+UniRef50_D0W7F7|unclassified	1.2793634225
+UniRef50_UPI0003B754B6: ribonucleotide reductase	1.2790774595
+UniRef50_UPI0003B754B6: ribonucleotide reductase|unclassified	1.2790774595
+UniRef50_A3PMS5	1.2787723785
+UniRef50_A3PMS5|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.2787723785
+UniRef50_A6LWV9: Transcription activator, effector binding	1.2787723785
+UniRef50_A6LWV9: Transcription activator, effector binding|g__Clostridium.s__Clostridium_beijerinckii	1.2787723785
+UniRef50_B5Z805	1.2787723785
+UniRef50_B5Z805|g__Helicobacter.s__Helicobacter_pylori	1.2787723785
+UniRef50_D8JEK3	1.2787723785
+UniRef50_D8JEK3|g__Acinetobacter.s__Acinetobacter_baumannii	1.2787723785
+UniRef50_F0RJQ2: 3-mercaptopyruvate sulfurtransferase	1.2787723785
+UniRef50_F0RJQ2: 3-mercaptopyruvate sulfurtransferase|g__Deinococcus.s__Deinococcus_radiodurans	1.2787723785
+UniRef50_V4I6Z5: Phenylacetate-CoA oxygenase subunit PaaA	1.2787723785
+UniRef50_V4I6Z5: Phenylacetate-CoA oxygenase subunit PaaA|g__Acinetobacter.s__Acinetobacter_baumannii	1.2787723785
+UniRef50_W5HLP1	1.2787723785
+UniRef50_W5HLP1|unclassified	1.2787723785
+UniRef50_D3VHY7	1.2786904918
+UniRef50_D3VHY7|unclassified	1.2786904918
+UniRef50_J9P159	1.2785817562
+UniRef50_J9P159|unclassified	1.2785817562
+UniRef50_V7UCI4	1.2783871675
+UniRef50_V7UCI4|unclassified	1.2783871675
+UniRef50_Q1C6W3: Chemotaxis response regulator protein-glutamate methylesterase	1.2781074016
+UniRef50_Q1C6W3: Chemotaxis response regulator protein-glutamate methylesterase|g__Escherichia.s__Escherichia_coli	0.9560229446
+UniRef50_Q1C6W3: Chemotaxis response regulator protein-glutamate methylesterase|unclassified	0.3220844570
+UniRef50_UPI00046296D7: PREDICTED: histone H3-like centromeric protein A isoform X2	1.2780203424
+UniRef50_UPI00046296D7: PREDICTED: histone H3-like centromeric protein A isoform X2|unclassified	1.2780203424
+UniRef50_UPI00046D85CC: hypothetical protein	1.2778657750
+UniRef50_UPI00046D85CC: hypothetical protein|unclassified	1.2778657750
+UniRef50_UPI00040A1AD8: mercury transporter	1.2778417779
+UniRef50_UPI00040A1AD8: mercury transporter|unclassified	1.2778417779
+UniRef50_M8QCB3: Putative phage protein racC	1.2775234176
+UniRef50_M8QCB3: Putative phage protein racC|unclassified	1.2775234176
+UniRef50_A3VZH6	1.2773393463
+UniRef50_A3VZH6|unclassified	1.2773393463
+UniRef50_UPI0003700DCB: hypothetical protein	1.2773161711
+UniRef50_UPI0003700DCB: hypothetical protein|unclassified	1.2773161711
+UniRef50_A6LWR2: Pentapeptide repeat protein	1.2771392082
+UniRef50_A6LWR2: Pentapeptide repeat protein|g__Clostridium.s__Clostridium_beijerinckii	1.2771392082
+UniRef50_A7FBR2	1.2771392082
+UniRef50_A7FBR2|g__Acinetobacter.s__Acinetobacter_baumannii	1.2771392082
+UniRef50_O25515: Hydroxymethylpyrimidine/phosphomethylpyrimidine kinase	1.2771392082
+UniRef50_O25515: Hydroxymethylpyrimidine/phosphomethylpyrimidine kinase|g__Helicobacter.s__Helicobacter_pylori	1.2771392082
+UniRef50_W8H2B8: Regucalcin	1.2771392082
+UniRef50_W8H2B8: Regucalcin|g__Acinetobacter.s__Acinetobacter_baumannii	1.2771392082
+UniRef50_UPI00046CC0D2: hypothetical protein, partial	1.2771040852
+UniRef50_UPI00046CC0D2: hypothetical protein, partial|unclassified	1.2771040852
+UniRef50_Q1GHA4	1.2767679049
+UniRef50_Q1GHA4|unclassified	1.2767679049
+UniRef50_Q9RS60: DNA modification methyltransferase-related protein	1.2763536607
+UniRef50_Q9RS60: DNA modification methyltransferase-related protein|g__Deinococcus.s__Deinococcus_radiodurans	1.2763536607
+UniRef50_UPI0003807539: hypothetical protein	1.2762734959
+UniRef50_UPI0003807539: hypothetical protein|unclassified	1.2762734959
+UniRef50_Q1GEB7	1.2762730410
+UniRef50_Q1GEB7|unclassified	1.2762730410
+UniRef50_B8ETN9: PRC-barrel domain protein	1.2762234322
+UniRef50_B8ETN9: PRC-barrel domain protein|unclassified	1.2762234322
+UniRef50_K6DGD7	1.2758656498
+UniRef50_K6DGD7|unclassified	1.2758656498
+UniRef50_V0TVG4	1.2758016983
+UniRef50_V0TVG4|unclassified	1.2758016983
+UniRef50_A9G3I5: Malate dehydrogenase (Oxaloacetate-decarboxylating) (NADP(+))	1.2757671662
+UniRef50_A9G3I5: Malate dehydrogenase (Oxaloacetate-decarboxylating) (NADP(+))|g__Deinococcus.s__Deinococcus_radiodurans	1.2757671662
+UniRef50_B8G8S1: Serine--tRNA ligase	1.2755916216
+UniRef50_B8G8S1: Serine--tRNA ligase|unclassified	1.2755916216
+UniRef50_UPI00031EB627: hypothetical protein	1.2755277165
+UniRef50_UPI00031EB627: hypothetical protein|unclassified	1.2755277165
+UniRef50_B4U470: Nickel or oligopeptide transport ATP-binding protein	1.2755102041
+UniRef50_B4U470: Nickel or oligopeptide transport ATP-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	1.2755102041
+UniRef50_I1P0V0	1.2755102041
+UniRef50_I1P0V0|unclassified	1.2755102041
+UniRef50_M9VER6: Tat (Twin-arginine translocation) pathway signal sequence	1.2755102041
+UniRef50_M9VER6: Tat (Twin-arginine translocation) pathway signal sequence|g__Propionibacterium.s__Propionibacterium_acnes	1.2755102041
+UniRef50_UPI0003725ECA: hypothetical protein	1.2754522290
+UniRef50_UPI0003725ECA: hypothetical protein|unclassified	1.2754522290
+UniRef50_UPI000472DA74: membrane protein	1.2753654886
+UniRef50_UPI000472DA74: membrane protein|unclassified	1.2753654886
+UniRef50_G8V5M7: Competence protein ComGF	1.2753520000
+UniRef50_G8V5M7: Competence protein ComGF|unclassified	1.2753520000
+UniRef50_Q1M6X3	1.2753157668
+UniRef50_Q1M6X3|unclassified	1.2753157668
+UniRef50_X1PCM2: Marine sediment metagenome DNA, contig: S06H3_S27268 (Fragment)	1.2751399676
+UniRef50_X1PCM2: Marine sediment metagenome DNA, contig: S06H3_S27268 (Fragment)|unclassified	1.2751399676
+UniRef50_S9THQ0	1.2750752246
+UniRef50_S9THQ0|unclassified	1.2750752246
+UniRef50_A3U124: Replication protein C	1.2750652997
+UniRef50_A3U124: Replication protein C|unclassified	1.2750652997
+UniRef50_H8FVA2: Transposase	1.2748976793
+UniRef50_H8FVA2: Transposase|unclassified	1.2748976793
+UniRef50_D5AMW7: Thioesterase superfamily protein	1.2746525729
+UniRef50_D5AMW7: Thioesterase superfamily protein|unclassified	1.2746525729
+UniRef50_V4R212	1.2746321624
+UniRef50_V4R212|unclassified	1.2746321624
+UniRef50_C2QMD2	1.2742855529
+UniRef50_C2QMD2|unclassified	1.2742855529
+UniRef50_A0P5R2	1.2742647255
+UniRef50_A0P5R2|unclassified	1.2742647255
+UniRef50_UPI0004764CA0: Fur family transcriptional regulator	1.2741414635
+UniRef50_UPI0004764CA0: Fur family transcriptional regulator|unclassified	1.2741414635
+UniRef50_L0DH77	1.2740562611
+UniRef50_L0DH77|unclassified	1.2740562611
+UniRef50_P55995: Lon protease	1.2739691526
+UniRef50_P55995: Lon protease|g__Helicobacter.s__Helicobacter_pylori	1.2739691526
+UniRef50_E6JK33: Mobilization protein	1.2739506907
+UniRef50_E6JK33: Mobilization protein|unclassified	1.2739506907
+UniRef50_D1AJ49: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase	1.2738853503
+UniRef50_D1AJ49: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase|g__Clostridium.s__Clostridium_beijerinckii	1.2738853503
+UniRef50_A4WW64	1.2735460642
+UniRef50_A4WW64|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9259259259
+UniRef50_A4WW64|unclassified	0.3476201383
+UniRef50_N6VGA3: Putative transcriptional regulator	1.2734215094
+UniRef50_N6VGA3: Putative transcriptional regulator|unclassified	1.2734215094
+UniRef50_F8LXL5: Transposase, IS200 family	1.2733296373
+UniRef50_F8LXL5: Transposase, IS200 family|unclassified	1.2733296373
+UniRef50_S0AG26	1.2732224381
+UniRef50_S0AG26|unclassified	1.2732224381
+UniRef50_W0YSJ8: Putative desaturase	1.2730827268
+UniRef50_W0YSJ8: Putative desaturase|unclassified	1.2730827268
+UniRef50_B1ZHY8: Pyridoxal-5'-phosphate-dependent protein beta subunit	1.2730689835
+UniRef50_B1ZHY8: Pyridoxal-5'-phosphate-dependent protein beta subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2004801921
+UniRef50_B1ZHY8: Pyridoxal-5'-phosphate-dependent protein beta subunit|unclassified	0.0725887914
+UniRef50_A0A058Z3G0	1.2730318946
+UniRef50_A0A058Z3G0|unclassified	1.2730318946
+UniRef50_UPI0002DC954F: hypothetical protein	1.2729478781
+UniRef50_UPI0002DC954F: hypothetical protein|unclassified	1.2729478781
+UniRef50_UPI0003B3816B: DSBA oxidoreductase	1.2729076295
+UniRef50_UPI0003B3816B: DSBA oxidoreductase|unclassified	1.2729076295
+UniRef50_K6LY10: Amidohydrolase family protein	1.2728973043
+UniRef50_K6LY10: Amidohydrolase family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.2728973043
+UniRef50_R8ZFL2: DedD protein	1.2726828468
+UniRef50_R8ZFL2: DedD protein|unclassified	1.2726828468
+UniRef50_V9AXK6: Competence protein	1.2722692646
+UniRef50_V9AXK6: Competence protein|unclassified	1.2722692646
+UniRef50_R4GD79	1.2722646310
+UniRef50_R4GD79|unclassified	1.2722646310
+UniRef50_W1MQL2: Dihydroorotase	1.2722646310
+UniRef50_W1MQL2: Dihydroorotase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2722646310
+UniRef50_U9YRE4	1.2722147395
+UniRef50_U9YRE4|unclassified	1.2722147395
+UniRef50_R5QTL0	1.2720457686
+UniRef50_R5QTL0|unclassified	1.2720457686
+UniRef50_D9SQU7: Integral membrane sensor signal transduction histidine kinase	1.2718646909
+UniRef50_D9SQU7: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	1.2718646909
+UniRef50_C0AQE4	1.2718498863
+UniRef50_C0AQE4|unclassified	1.2718498863
+UniRef50_UPI00046F1E63: spermidine/putrescine ABC transporter ATP-binding protein	1.2716346879
+UniRef50_UPI00046F1E63: spermidine/putrescine ABC transporter ATP-binding protein|unclassified	1.2716346879
+UniRef50_B7NS97	1.2716138428
+UniRef50_B7NS97|unclassified	1.2716138428
+UniRef50_Q02NQ2	1.2714165595
+UniRef50_Q02NQ2|unclassified	1.2714165595
+UniRef50_UPI00036FBB0C: hypothetical protein	1.2712150720
+UniRef50_UPI00036FBB0C: hypothetical protein|unclassified	1.2712150720
+UniRef50_UPI0002ADB121	1.2711965904
+UniRef50_UPI0002ADB121|unclassified	1.2711965904
+UniRef50_F3FA03	1.2709841689
+UniRef50_F3FA03|unclassified	1.2709841689
+UniRef50_S1T2A2	1.2706691794
+UniRef50_S1T2A2|unclassified	1.2706691794
+UniRef50_A3LGU1	1.2706480305
+UniRef50_A3LGU1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2706480305
+UniRef50_B0VSH8	1.2706480305
+UniRef50_B0VSH8|g__Acinetobacter.s__Acinetobacter_baumannii	1.2706480305
+UniRef50_D4HBS7: Oxidoreductase, NAD-binding domain protein	1.2706480305
+UniRef50_D4HBS7: Oxidoreductase, NAD-binding domain protein|g__Propionibacterium.s__Propionibacterium_acnes	1.2706480305
+UniRef50_Q5F5C4: Thiazole synthase	1.2706480305
+UniRef50_Q5F5C4: Thiazole synthase|g__Neisseria.s__Neisseria_meningitidis	1.2706480305
+UniRef50_R1ETJ9	1.2706480305
+UniRef50_R1ETJ9|unclassified	1.2706480305
+UniRef50_W0RI86: von Willebrand factor type A	1.2706480305
+UniRef50_W0RI86: von Willebrand factor type A|g__Deinococcus.s__Deinococcus_radiodurans	1.2706480305
+UniRef50_K1UHS5	1.2703681957
+UniRef50_K1UHS5|unclassified	1.2703681957
+UniRef50_E0TI30	1.2701300981
+UniRef50_E0TI30|unclassified	1.2701300981
+UniRef50_A4EK95: Pirin C-terminal domain containing protein	1.2701060264
+UniRef50_A4EK95: Pirin C-terminal domain containing protein|unclassified	1.2701060264
+UniRef50_Q1CW26	1.2700452848
+UniRef50_Q1CW26|unclassified	1.2700452848
+UniRef50_Q02SV2: Tyrosine--tRNA ligase	1.2699040623
+UniRef50_Q02SV2: Tyrosine--tRNA ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8375209380
+UniRef50_Q02SV2: Tyrosine--tRNA ligase|unclassified	0.4323831242
+UniRef50_A5IUC4	1.2698604515
+UniRef50_A5IUC4|unclassified	1.2698604515
+UniRef50_A8HYT3: Phosphoribosyl-ATP pyrophosphatase	1.2697663813
+UniRef50_A8HYT3: Phosphoribosyl-ATP pyrophosphatase|unclassified	1.2697663813
+UniRef50_D5AS28: Lipoprotein, putative	1.2697119552
+UniRef50_D5AS28: Lipoprotein, putative|unclassified	1.2697119552
+UniRef50_I5C553: Bacteriophage replication gene A protein (GPA)	1.2696091928
+UniRef50_I5C553: Bacteriophage replication gene A protein (GPA)|unclassified	1.2696091928
+UniRef50_UPI00036974EA: hypothetical protein	1.2692582069
+UniRef50_UPI00036974EA: hypothetical protein|unclassified	1.2692582069
+UniRef50_UPI0004750E46: hypothetical protein	1.2691199124
+UniRef50_UPI0004750E46: hypothetical protein|unclassified	1.2691199124
+UniRef50_A6LZS0	1.2690355330
+UniRef50_A6LZS0|g__Clostridium.s__Clostridium_beijerinckii	1.2690355330
+UniRef50_M1MG47	1.2690355330
+UniRef50_M1MG47|g__Clostridium.s__Clostridium_beijerinckii	1.2690355330
+UniRef50_R4ZXC5: Hydrolase (HAD superfamily)	1.2690355330
+UniRef50_R4ZXC5: Hydrolase (HAD superfamily)|g__Streptococcus.s__Streptococcus_agalactiae	1.2690355330
+UniRef50_G0D372	1.2689748622
+UniRef50_G0D372|unclassified	1.2689748622
+UniRef50_D2NF85	1.2687428231
+UniRef50_D2NF85|unclassified	1.2687428231
+UniRef50_UPI0004631E88: hypothetical protein	1.2686236663
+UniRef50_UPI0004631E88: hypothetical protein|unclassified	1.2686236663
+UniRef50_J2ZIR6	1.2685055077
+UniRef50_J2ZIR6|unclassified	1.2685055077
+UniRef50_F0KP66: Outer membrane usher protein	1.2685006668
+UniRef50_F0KP66: Outer membrane usher protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.2685006668
+UniRef50_B1JY03: Cyclic pyranopterin monophosphate synthase accessory protein	1.2681595849
+UniRef50_B1JY03: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	1.2681595849
+UniRef50_Q0BC82: Cyclic pyranopterin monophosphate synthase accessory protein	1.2681595849
+UniRef50_Q0BC82: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	1.2681595849
+UniRef50_Q3ACZ7: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha	1.2681270108
+UniRef50_Q3ACZ7: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|unclassified	1.2681270108
+UniRef50_G8T2M1	1.2680980906
+UniRef50_G8T2M1|unclassified	1.2680980906
+UniRef50_UPI00046F3EBA: hypothetical protein, partial	1.2679582499
+UniRef50_UPI00046F3EBA: hypothetical protein, partial|unclassified	1.2679582499
+UniRef50_D1NC80	1.2678259242
+UniRef50_D1NC80|unclassified	1.2678259242
+UniRef50_X7DB62	1.2678257738
+UniRef50_X7DB62|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2678257738
+UniRef50_J2H2S9	1.2676615214
+UniRef50_J2H2S9|unclassified	1.2676615214
+UniRef50_D8JMR4: HTH-type transcriptional activator aaeR	1.2674271229
+UniRef50_D8JMR4: HTH-type transcriptional activator aaeR|g__Acinetobacter.s__Acinetobacter_baumannii	1.2674271229
+UniRef50_E6MXU9: Bacterial regulatory helix-turn-helix , lysR family protein	1.2674271229
+UniRef50_E6MXU9: Bacterial regulatory helix-turn-helix , lysR family protein|g__Neisseria.s__Neisseria_meningitidis	1.2674271229
+UniRef50_G7U7D2: ABC transporter, permease protein	1.2674271229
+UniRef50_G7U7D2: ABC transporter, permease protein|g__Propionibacterium.s__Propionibacterium_acnes	1.2674271229
+UniRef50_M9VGK7: AsnC family transcriptional regulator	1.2674271229
+UniRef50_M9VGK7: AsnC family transcriptional regulator|g__Propionibacterium.s__Propionibacterium_acnes	1.2674271229
+UniRef50_Q6F8A1: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical (Diadenosine tetraphosphatase) (Ap4A hydrolase) (Diadenosine 5',5'''-P1,P4-tetraphosphate pyrophosphohydrolase)	1.2674271229
+UniRef50_Q6F8A1: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical (Diadenosine tetraphosphatase) (Ap4A hydrolase) (Diadenosine 5',5'''-P1,P4-tetraphosphate pyrophosphohydrolase)|g__Acinetobacter.s__Acinetobacter_baumannii	1.2674271229
+UniRef50_U6N0A2: Heat shock protein, putative	1.2674271229
+UniRef50_U6N0A2: Heat shock protein, putative|unclassified	1.2674271229
+UniRef50_G8AX61	1.2672741094
+UniRef50_G8AX61|unclassified	1.2672741094
+UniRef50_K2AFL1: Type I secretion system ATPase (Fragment)	1.2670464063
+UniRef50_K2AFL1: Type I secretion system ATPase (Fragment)|unclassified	1.2670464063
+UniRef50_UPI000378494C: hypothetical protein	1.2669192291
+UniRef50_UPI000378494C: hypothetical protein|unclassified	1.2669192291
+UniRef50_Q0BVI1	1.2667134116
+UniRef50_Q0BVI1|unclassified	1.2667134116
+UniRef50_W4U756: Helicase	1.2666422715
+UniRef50_W4U756: Helicase|g__Propionibacterium.s__Propionibacterium_acnes	1.2666422715
+UniRef50_P52337: Nitrogenase molybdenum-iron protein alpha chain (Fragment)	1.2661685235
+UniRef50_P52337: Nitrogenase molybdenum-iron protein alpha chain (Fragment)|unclassified	1.2661685235
+UniRef50_D5AUC1: Entericidin B	1.2660525526
+UniRef50_D5AUC1: Entericidin B|unclassified	1.2660525526
+UniRef50_A0A028ILN1	1.2658227848
+UniRef50_A0A028ILN1|g__Acinetobacter.s__Acinetobacter_baumannii	1.2658227848
+UniRef50_A6LRT8	1.2658227848
+UniRef50_A6LRT8|g__Clostridium.s__Clostridium_beijerinckii	1.2658227848
+UniRef50_D8JLE3: Cell division protein FtsQ	1.2658227848
+UniRef50_D8JLE3: Cell division protein FtsQ|g__Acinetobacter.s__Acinetobacter_baumannii	1.2658227848
+UniRef50_M9VIA3	1.2658227848
+UniRef50_M9VIA3|g__Propionibacterium.s__Propionibacterium_acnes	1.2658227848
+UniRef50_R6V897: Extracellular solute-binding protein family 1	1.2658227848
+UniRef50_R6V897: Extracellular solute-binding protein family 1|g__Clostridium.s__Clostridium_beijerinckii	1.2658227848
+UniRef50_S4MZL0	1.2657127180
+UniRef50_S4MZL0|unclassified	1.2657127180
+UniRef50_F4U6E7	1.2651566847
+UniRef50_F4U6E7|unclassified	1.2651566847
+UniRef50_J1CP05	1.2648078519
+UniRef50_J1CP05|unclassified	1.2648078519
+UniRef50_UPI0003EDCF69: PREDICTED: cadherin-5-like	1.2647556172
+UniRef50_UPI0003EDCF69: PREDICTED: cadherin-5-like|unclassified	1.2647556172
+UniRef50_A7FVN3: Carbon monoxide dehydrogenase	1.2646425538
+UniRef50_A7FVN3: Carbon monoxide dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	1.2646425538
+UniRef50_UPI000364B546: hypothetical protein	1.2645440055
+UniRef50_UPI000364B546: hypothetical protein|unclassified	1.2645440055
+UniRef50_E6QHZ2	1.2642882538
+UniRef50_E6QHZ2|unclassified	1.2642882538
+UniRef50_A6LSA1	1.2642225032
+UniRef50_A6LSA1|g__Clostridium.s__Clostridium_beijerinckii	1.2642225032
+UniRef50_B7V4A2: Heme d1 biosynthesis protein NirF	1.2642225032
+UniRef50_B7V4A2: Heme d1 biosynthesis protein NirF|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2642225032
+UniRef50_B9K138: Aliphatic sulfonates import ATP-binding protein SsuB	1.2642225032
+UniRef50_B9K138: Aliphatic sulfonates import ATP-binding protein SsuB|g__Acinetobacter.s__Acinetobacter_baumannii	1.2642225032
+UniRef50_Q13LM2: ABC putrescine transporter, inner membrane subunit PotI	1.2642225032
+UniRef50_Q13LM2: ABC putrescine transporter, inner membrane subunit PotI|g__Neisseria.s__Neisseria_meningitidis	1.2642225032
+UniRef50_R7WCV4	1.2642225032
+UniRef50_R7WCV4|unclassified	1.2642225032
+UniRef50_UPI000373118B: hypothetical protein	1.2642225032
+UniRef50_UPI000373118B: hypothetical protein|unclassified	1.2642225032
+UniRef50_V6IYX1: Sugar ABC transporter substrate-binding protein	1.2641504961
+UniRef50_V6IYX1: Sugar ABC transporter substrate-binding protein|unclassified	1.2641504961
+UniRef50_I6B1F5	1.2641066528
+UniRef50_I6B1F5|unclassified	1.2641066528
+UniRef50_A5WG67	1.2639601413
+UniRef50_A5WG67|g__Acinetobacter.s__Acinetobacter_baumannii	1.2077294686
+UniRef50_A5WG67|unclassified	0.0562306727
+UniRef50_UPI000328CF5C: PREDICTED: kinesin-like protein KIF13B	1.2636853583
+UniRef50_UPI000328CF5C: PREDICTED: kinesin-like protein KIF13B|unclassified	1.2636853583
+UniRef50_UPI00046637FA: membrane protein, partial	1.2636696452
+UniRef50_UPI00046637FA: membrane protein, partial|unclassified	1.2636696452
+UniRef50_UPI00028868C0: ribonucleotide-diphosphate reductase subunit beta	1.2636616561
+UniRef50_UPI00028868C0: ribonucleotide-diphosphate reductase subunit beta|unclassified	1.2636616561
+UniRef50_V8FSB8: Chitinase	1.2632005442
+UniRef50_V8FSB8: Chitinase|g__Clostridium.s__Clostridium_beijerinckii	1.2632005442
+UniRef50_C3LCP5	1.2630787016
+UniRef50_C3LCP5|unclassified	1.2630787016
+UniRef50_Q9RXH6	1.2630075623
+UniRef50_Q9RXH6|g__Deinococcus.s__Deinococcus_radiodurans	1.2630075623
+UniRef50_A0A031QGZ5	1.2629979576
+UniRef50_A0A031QGZ5|unclassified	1.2629979576
+UniRef50_B0V5A3	1.2626262626
+UniRef50_B0V5A3|g__Acinetobacter.s__Acinetobacter_baumannii	1.2626262626
+UniRef50_U5VGF8	1.2626262626
+UniRef50_U5VGF8|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2626262626
+UniRef50_UPI000379949A: hypothetical protein	1.2626262626
+UniRef50_UPI000379949A: hypothetical protein|unclassified	1.2626262626
+UniRef50_UPI000464FCC9: resolvase, partial	1.2625994387
+UniRef50_UPI000464FCC9: resolvase, partial|unclassified	1.2625994387
+UniRef50_UPI00046AC3A5: hypothetical protein	1.2624583331
+UniRef50_UPI00046AC3A5: hypothetical protein|unclassified	1.2624583331
+UniRef50_A6M2B1: Beta-lactamase domain protein	1.2624155811
+UniRef50_A6M2B1: Beta-lactamase domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.2624155811
+UniRef50_S0FU34	1.2619180388
+UniRef50_S0FU34|unclassified	1.2619180388
+UniRef50_A3JXZ0	1.2615717259
+UniRef50_A3JXZ0|unclassified	1.2615717259
+UniRef50_Q79EA5: Orf8	1.2615211586
+UniRef50_Q79EA5: Orf8|unclassified	1.2615211586
+UniRef50_UPI0002629A6E: putative hydrolase	1.2615152948
+UniRef50_UPI0002629A6E: putative hydrolase|unclassified	1.2615152948
+UniRef50_UPI0003767C06: hypothetical protein	1.2613392894
+UniRef50_UPI0003767C06: hypothetical protein|unclassified	1.2613392894
+UniRef50_B2N8C1	1.2613046286
+UniRef50_B2N8C1|unclassified	1.2613046286
+UniRef50_C4RGR1: Nuclear export factor GLE1	1.2612655743
+UniRef50_C4RGR1: Nuclear export factor GLE1|unclassified	1.2612655743
+UniRef50_U8V695	1.2612452225
+UniRef50_U8V695|unclassified	1.2612452225
+UniRef50_G1Y156	1.2611660670
+UniRef50_G1Y156|unclassified	1.2611660670
+UniRef50_UPI0003656F4E: hypothetical protein, partial	1.2611630591
+UniRef50_UPI0003656F4E: hypothetical protein, partial|unclassified	1.2611630591
+UniRef50_M9VDE3: ABC transporter	1.2610600192
+UniRef50_M9VDE3: ABC transporter|g__Propionibacterium.s__Propionibacterium_acnes	1.2610600192
+UniRef50_B2HGA4: Isopentenyl-diphosphate delta-isomerase	1.2610340479
+UniRef50_B2HGA4: Isopentenyl-diphosphate delta-isomerase|g__Deinococcus.s__Deinococcus_radiodurans	1.2610340479
+UniRef50_Q892Q8: Heat-inducible transcription repressor HrcA	1.2610340479
+UniRef50_Q892Q8: Heat-inducible transcription repressor HrcA|g__Clostridium.s__Clostridium_beijerinckii	1.2610340479
+UniRef50_UPI000237F107: hypothetical protein	1.2609533836
+UniRef50_UPI000237F107: hypothetical protein|unclassified	1.2609533836
+UniRef50_UPI00037C0407: hypothetical protein, partial	1.2608162145
+UniRef50_UPI00037C0407: hypothetical protein, partial|unclassified	1.2608162145
+UniRef50_H3YHJ9: Putative N-acetylmuramoyl-L-alanine amidase Sle1	1.2605286822
+UniRef50_H3YHJ9: Putative N-acetylmuramoyl-L-alanine amidase Sle1|unclassified	1.2605286822
+UniRef50_F5LXH8: Zinc finger-domain-containing protein	1.2604385362
+UniRef50_F5LXH8: Zinc finger-domain-containing protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.0649627263
+UniRef50_F5LXH8: Zinc finger-domain-containing protein|unclassified	0.1954758099
+UniRef50_O75874: Isocitrate dehydrogenase [NADP] cytoplasmic	1.2602872367
+UniRef50_O75874: Isocitrate dehydrogenase [NADP] cytoplasmic|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.8710801394
+UniRef50_O75874: Isocitrate dehydrogenase [NADP] cytoplasmic|unclassified	0.3892070973
+UniRef50_P35885: DNA gyrase subunit A	1.2601871100
+UniRef50_P35885: DNA gyrase subunit A|g__Propionibacterium.s__Propionibacterium_acnes	1.2601871100
+UniRef50_UPI00045E1768: PREDICTED: protein DGCR6L	1.2599728414
+UniRef50_UPI00045E1768: PREDICTED: protein DGCR6L|unclassified	1.2599728414
+UniRef50_Q3JSP4	1.2597798575
+UniRef50_Q3JSP4|unclassified	1.2597798575
+UniRef50_UPI000367E513: hypothetical protein	1.2596829732
+UniRef50_UPI000367E513: hypothetical protein|unclassified	1.2596829732
+UniRef50_T1AU58: Acyl-CoA dehydrogenase domain protein (Fragment)	1.2596406781
+UniRef50_T1AU58: Acyl-CoA dehydrogenase domain protein (Fragment)|unclassified	1.2596406781
+UniRef50_UPI0003EEFBBB: hypothetical protein	1.2596157975
+UniRef50_UPI0003EEFBBB: hypothetical protein|unclassified	1.2596157975
+UniRef50_UPI0003EE67EA: hypothetical protein	1.2596028447
+UniRef50_UPI0003EE67EA: hypothetical protein|unclassified	1.2596028447
+UniRef50_UPI00030A8FAF: membrane protein	1.2595602943
+UniRef50_UPI00030A8FAF: membrane protein|unclassified	1.2595602943
+UniRef50_A5UQY7	1.2595503219
+UniRef50_A5UQY7|unclassified	1.2595503219
+UniRef50_A3PKF2: Lytic transglycosylase, catalytic	1.2594458438
+UniRef50_A3PKF2: Lytic transglycosylase, catalytic|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.2594458438
+UniRef50_A7ZEL6: 3-methyl-2-oxobutanoate hydroxymethyltransferase	1.2594458438
+UniRef50_A7ZEL6: 3-methyl-2-oxobutanoate hydroxymethyltransferase|g__Helicobacter.s__Helicobacter_pylori	1.2594458438
+UniRef50_E3I461: Arsenical-resistance protein	1.2594458438
+UniRef50_E3I461: Arsenical-resistance protein|g__Escherichia.s__Escherichia_coli	1.2594458438
+UniRef50_E9W328: Phosphate acetyl/butaryl transferase	1.2594458438
+UniRef50_E9W328: Phosphate acetyl/butaryl transferase|g__Escherichia.s__Escherichia_coli	1.2594458438
+UniRef50_J8RX83: Thioesterase family protein	1.2594458438
+UniRef50_J8RX83: Thioesterase family protein|unclassified	1.2594458438
+UniRef50_S1SW71	1.2594458438
+UniRef50_S1SW71|unclassified	1.2594458438
+UniRef50_V9QTM2: Sugar ABC transporter substrate-binding protein	1.2594458438
+UniRef50_V9QTM2: Sugar ABC transporter substrate-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2594458438
+UniRef50_UPI0001BF66E3: hypothetical protein SMAC_10240	1.2594192116
+UniRef50_UPI0001BF66E3: hypothetical protein SMAC_10240|unclassified	1.2594192116
+UniRef50_Q0FTZ1: ISSpo9, transposase	1.2593497114
+UniRef50_Q0FTZ1: ISSpo9, transposase|unclassified	1.2593497114
+UniRef50_UPI0003632065: hypothetical protein	1.2591864331
+UniRef50_UPI0003632065: hypothetical protein|unclassified	1.2591864331
+UniRef50_UPI0003768F8C: hypothetical protein	1.2591712700
+UniRef50_UPI0003768F8C: hypothetical protein|unclassified	1.2591712700
+UniRef50_U1P463	1.2590637360
+UniRef50_U1P463|unclassified	1.2590637360
+UniRef50_A0A038G3A9	1.2590258049
+UniRef50_A0A038G3A9|unclassified	1.2590258049
+UniRef50_UPI0004658BA2: ABC transporter ATP-binding protein	1.2589358056
+UniRef50_UPI0004658BA2: ABC transporter ATP-binding protein|unclassified	1.2589358056
+UniRef50_J9BL30	1.2589215613
+UniRef50_J9BL30|unclassified	1.2589215613
+UniRef50_B5WT75: Transketolase domain protein	1.2588005414
+UniRef50_B5WT75: Transketolase domain protein|unclassified	1.2588005414
+UniRef50_R9D652	1.2587882847
+UniRef50_R9D652|unclassified	1.2587882847
+UniRef50_A0A059LBH2	1.2582707357
+UniRef50_A0A059LBH2|unclassified	1.2582707357
+UniRef50_A0A059IPY7	1.2580902962
+UniRef50_A0A059IPY7|unclassified	1.2580902962
+UniRef50_B3X5Q3: Nickel-dependent hydrogenase, B-type cytochrome subunit	1.2580754761
+UniRef50_B3X5Q3: Nickel-dependent hydrogenase, B-type cytochrome subunit|unclassified	1.2580754761
+UniRef50_Q84ZR1	1.2579992551
+UniRef50_Q84ZR1|unclassified	1.2579992551
+UniRef50_D4H9E3	1.2578616352
+UniRef50_D4H9E3|g__Propionibacterium.s__Propionibacterium_acnes	1.2578616352
+UniRef50_E8P8P5	1.2578616352
+UniRef50_E8P8P5|g__Acinetobacter.s__Acinetobacter_baumannii	1.2578616352
+UniRef50_M9S960	1.2578616352
+UniRef50_M9S960|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2578616352
+UniRef50_Q1JHG8: Periplasmic component of efflux system	1.2578616352
+UniRef50_Q1JHG8: Periplasmic component of efflux system|g__Streptococcus.s__Streptococcus_agalactiae	1.2578616352
+UniRef50_Q9HU82	1.2578616352
+UniRef50_Q9HU82|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2578616352
+UniRef50_W4W0A5	1.2577719827
+UniRef50_W4W0A5|unclassified	1.2577719827
+UniRef50_W1WFT4: Replication initiation protein (Fragment)	1.2577365267
+UniRef50_W1WFT4: Replication initiation protein (Fragment)|unclassified	1.2577365267
+UniRef50_Q4FR51: Lon protease	1.2576136176
+UniRef50_Q4FR51: Lon protease|g__Acinetobacter.s__Acinetobacter_baumannii	1.2576136176
+UniRef50_A3WQ21	1.2575891597
+UniRef50_A3WQ21|unclassified	1.2575891597
+UniRef50_Q932I8: Tetracycline resistance protein TetM	1.2572819055
+UniRef50_Q932I8: Tetracycline resistance protein TetM|g__Staphylococcus.s__Staphylococcus_aureus	0.6591957811
+UniRef50_Q932I8: Tetracycline resistance protein TetM|g__Streptococcus.s__Streptococcus_agalactiae	0.5980861244
+UniRef50_W7J2X4	1.2571478122
+UniRef50_W7J2X4|unclassified	1.2571478122
+UniRef50_W0AJX2	1.2569286977
+UniRef50_W0AJX2|unclassified	1.2569286977
+UniRef50_C6V4L0	1.2566248320
+UniRef50_C6V4L0|unclassified	1.2566248320
+UniRef50_J4V038: Putative branched-chain-amino-acid transaminase	1.2565188601
+UniRef50_J4V038: Putative branched-chain-amino-acid transaminase|unclassified	1.2565188601
+UniRef50_B8H806: Shikimate dehydrogenase	1.2562814070
+UniRef50_B8H806: Shikimate dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2562814070
+UniRef50_E1S7W8: Molybdenum transport ATP-binding protein	1.2562814070
+UniRef50_E1S7W8: Molybdenum transport ATP-binding protein|g__Helicobacter.s__Helicobacter_pylori	1.2562814070
+UniRef50_U5MWF2	1.2562814070
+UniRef50_U5MWF2|g__Clostridium.s__Clostridium_beijerinckii	1.2562814070
+UniRef50_UPI000318B825: hypothetical protein	1.2558684715
+UniRef50_UPI000318B825: hypothetical protein|unclassified	1.2558684715
+UniRef50_UPI0003EDD3EB: hypothetical protein, partial	1.2557565672
+UniRef50_UPI0003EDD3EB: hypothetical protein, partial|unclassified	1.2557565672
+UniRef50_K2LGI3	1.2557236567
+UniRef50_K2LGI3|unclassified	1.2557236567
+UniRef50_Q7XIT3	1.2555635066
+UniRef50_Q7XIT3|unclassified	1.2555635066
+UniRef50_P18813: Maltose/maltodextrin import ATP-binding protein MalK (Fragment)	1.2551470881
+UniRef50_P18813: Maltose/maltodextrin import ATP-binding protein MalK (Fragment)|unclassified	1.2551470881
+UniRef50_C1DKT3	1.2549529907
+UniRef50_C1DKT3|unclassified	1.2549529907
+UniRef50_R1GEK4: Alpha-L-fucosidase/alpha-galactosidase	1.2548657927
+UniRef50_R1GEK4: Alpha-L-fucosidase/alpha-galactosidase|unclassified	1.2548657927
+UniRef50_V4QYP1: HupE-UreJ family metal transporter	1.2547561704
+UniRef50_V4QYP1: HupE-UreJ family metal transporter|unclassified	1.2547561704
+UniRef50_F8GU00: Oxygenase subunit protein	1.2547051443
+UniRef50_F8GU00: Oxygenase subunit protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.2547051443
+UniRef50_X8AKC8: Condensation domain protein	1.2547051443
+UniRef50_X8AKC8: Condensation domain protein|unclassified	1.2547051443
+UniRef50_UPI00029A6665: citrate synthase I	1.2546347487
+UniRef50_UPI00029A6665: citrate synthase I|unclassified	1.2546347487
+UniRef50_UPI00037A90C0: hypothetical protein	1.2545061246
+UniRef50_UPI00037A90C0: hypothetical protein|unclassified	1.2545061246
+UniRef50_A8GQ97: Succinyl-diaminopimelate desuccinylase	1.2544271305
+UniRef50_A8GQ97: Succinyl-diaminopimelate desuccinylase|unclassified	1.2544271305
+UniRef50_Q2SV86: IolD protein	1.2541976587
+UniRef50_Q2SV86: IolD protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.2541976587
+UniRef50_UPI000225BF7A: ubiquinol-cytochrome C reductase	1.2538650720
+UniRef50_UPI000225BF7A: ubiquinol-cytochrome C reductase|unclassified	1.2538650720
+UniRef50_A6V883	1.2538458427
+UniRef50_A6V883|unclassified	1.2538458427
+UniRef50_V9U4Y9	1.2537509802
+UniRef50_V9U4Y9|unclassified	1.2537509802
+UniRef50_A6V9I8: Transcriptional regulator, IclR family	1.2531328321
+UniRef50_A6V9I8: Transcriptional regulator, IclR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2531328321
+UniRef50_B0LU60	1.2531328321
+UniRef50_B0LU60|unclassified	1.2531328321
+UniRef50_C0P2Z1	1.2531328321
+UniRef50_C0P2Z1|unclassified	1.2531328321
+UniRef50_W9EQP6	1.2531328321
+UniRef50_W9EQP6|unclassified	1.2531328321
+UniRef50_W9TA50: Glycine cleavage system H protein	1.2530509360
+UniRef50_W9TA50: Glycine cleavage system H protein|unclassified	1.2530509360
+UniRef50_UPI000225F778: flagellar biosynthesis protein FlhB	1.2528641363
+UniRef50_UPI000225F778: flagellar biosynthesis protein FlhB|unclassified	1.2528641363
+UniRef50_Q9JW21: Amino-acid acetyltransferase	1.2528373791
+UniRef50_Q9JW21: Amino-acid acetyltransferase|g__Neisseria.s__Neisseria_meningitidis	1.2195121951
+UniRef50_Q9JW21: Amino-acid acetyltransferase|unclassified	0.0333251840
+UniRef50_UPI00036B1F1A: hypothetical protein	1.2528294294
+UniRef50_UPI00036B1F1A: hypothetical protein|unclassified	1.2528294294
+UniRef50_UPI00036D1C2E: hypothetical protein	1.2526934947
+UniRef50_UPI00036D1C2E: hypothetical protein|unclassified	1.2526934947
+UniRef50_Q08XU8: Cupin domain protein	1.2526062972
+UniRef50_Q08XU8: Cupin domain protein|unclassified	1.2526062972
+UniRef50_Q1QBW0: Lipid A export ATP-binding/permease protein MsbA	1.2525049120
+UniRef50_Q1QBW0: Lipid A export ATP-binding/permease protein MsbA|g__Acinetobacter.s__Acinetobacter_baumannii	1.2525049120
+UniRef50_X6JJH4	1.2523466395
+UniRef50_X6JJH4|unclassified	1.2523466395
+UniRef50_M2MHY4	1.2521303522
+UniRef50_M2MHY4|unclassified	1.2521303522
+UniRef50_UPI0002DCCC59: hypothetical protein	1.2521113497
+UniRef50_UPI0002DCCC59: hypothetical protein|unclassified	1.2521113497
+UniRef50_UPI00046CFA01: hypothetical protein	1.2520796234
+UniRef50_UPI00046CFA01: hypothetical protein|unclassified	1.2520796234
+UniRef50_J3JJ09	1.2519082453
+UniRef50_J3JJ09|unclassified	1.2519082453
+UniRef50_G5PJX2	1.2517380460
+UniRef50_G5PJX2|unclassified	1.2517380460
+UniRef50_H2I4X3: DNA double-strand break repair rad50 ATPase	1.2516895670
+UniRef50_H2I4X3: DNA double-strand break repair rad50 ATPase|g__Propionibacterium.s__Propionibacterium_acnes	1.2516895670
+UniRef50_U3JSF1	1.2516518733
+UniRef50_U3JSF1|unclassified	1.2516518733
+UniRef50_A6LTX4	1.2515644556
+UniRef50_A6LTX4|g__Clostridium.s__Clostridium_beijerinckii	1.2515644556
+UniRef50_D7C5U0: Putative transposase	1.2515644556
+UniRef50_D7C5U0: Putative transposase|unclassified	1.2515644556
+UniRef50_UPI0004649A20: transposase, partial	1.2515644556
+UniRef50_UPI0004649A20: transposase, partial|unclassified	1.2515644556
+UniRef50_A0A030YAS9	1.2515098342
+UniRef50_A0A030YAS9|unclassified	1.2515098342
+UniRef50_UPI0003B4FC9A: transcriptional regulator	1.2515068068
+UniRef50_UPI0003B4FC9A: transcriptional regulator|unclassified	1.2515068068
+UniRef50_H1SFP6	1.2514588549
+UniRef50_H1SFP6|unclassified	1.2514588549
+UniRef50_B4RND3: Electron transfer flavoprotein-ubiquinone oxidoreductase	1.2512811853
+UniRef50_B4RND3: Electron transfer flavoprotein-ubiquinone oxidoreductase|g__Neisseria.s__Neisseria_meningitidis	1.2512811853
+UniRef50_C3JXF3	1.2512571749
+UniRef50_C3JXF3|unclassified	1.2512571749
+UniRef50_G1Y0N1	1.2509357233
+UniRef50_G1Y0N1|unclassified	1.2509357233
+UniRef50_W1JZZ1: 5-enolpyruvylshikimate-3-phosphate synthase	1.2506105154
+UniRef50_W1JZZ1: 5-enolpyruvylshikimate-3-phosphate synthase|unclassified	1.2506105154
+UniRef50_UPI000410CB45: chemotaxis protein	1.2505376254
+UniRef50_UPI000410CB45: chemotaxis protein|unclassified	1.2505376254
+UniRef50_W9A1H3	1.2504431643
+UniRef50_W9A1H3|unclassified	1.2504431643
+UniRef50_F5QKQ5	1.2504292088
+UniRef50_F5QKQ5|unclassified	1.2504292088
+UniRef50_G4LDX4	1.2503868165
+UniRef50_G4LDX4|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2503868165
+UniRef50_W7VZY9: Rod shape-determining protein MreB	1.2501795926
+UniRef50_W7VZY9: Rod shape-determining protein MreB|unclassified	1.2501795926
+UniRef50_UPI00046CB755: ABC transporter permease	1.2500710216
+UniRef50_UPI00046CB755: ABC transporter permease|unclassified	1.2500710216
+UniRef50_I7HG53: Penicillin-binding protein	1.2500312508
+UniRef50_I7HG53: Penicillin-binding protein|g__Helicobacter.s__Helicobacter_pylori	1.2500312508
+UniRef50_A0A023S0W1: Acyltransferase	1.2500000000
+UniRef50_A0A023S0W1: Acyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.2500000000
+UniRef50_C6U3N4: Rhs element Vgr protein (Fragment)	1.2500000000
+UniRef50_C6U3N4: Rhs element Vgr protein (Fragment)|unclassified	1.2500000000
+UniRef50_E4RCK1	1.2500000000
+UniRef50_E4RCK1|unclassified	1.2500000000
+UniRef50_W5VBR3: LysR family transcriptional regulator	1.2500000000
+UniRef50_W5VBR3: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2500000000
+UniRef50_I0EP41: Outer membrane protein P1	1.2497564397
+UniRef50_I0EP41: Outer membrane protein P1|g__Helicobacter.s__Helicobacter_pylori	1.2497564397
+UniRef50_R6M017	1.2493044717
+UniRef50_R6M017|unclassified	1.2493044717
+UniRef50_B5DV54: GA28129	1.2488410088
+UniRef50_B5DV54: GA28129|unclassified	1.2488410088
+UniRef50_H3XMI2: Iron compound ABC transporter, iron compound-binding family protein	1.2486727587
+UniRef50_H3XMI2: Iron compound ABC transporter, iron compound-binding family protein|unclassified	1.2486727587
+UniRef50_UPI0003B3C8AD: phage-shock protein	1.2486380930
+UniRef50_UPI0003B3C8AD: phage-shock protein|unclassified	1.2486380930
+UniRef50_J9P338	1.2484787803
+UniRef50_J9P338|unclassified	1.2484787803
+UniRef50_B8I6U9: Phosphatidylserine decarboxylase proenzyme	1.2484394507
+UniRef50_B8I6U9: Phosphatidylserine decarboxylase proenzyme|g__Clostridium.s__Clostridium_beijerinckii	1.2484394507
+UniRef50_G7M9H8	1.2484394507
+UniRef50_G7M9H8|g__Clostridium.s__Clostridium_beijerinckii	1.2484394507
+UniRef50_P72097: CMP-N-acetylneuraminate-beta-galactosamide-alpha-2,3-sialyltransferase	1.2484394507
+UniRef50_P72097: CMP-N-acetylneuraminate-beta-galactosamide-alpha-2,3-sialyltransferase|g__Neisseria.s__Neisseria_meningitidis	1.2484394507
+UniRef50_R9K990	1.2483287609
+UniRef50_R9K990|unclassified	1.2483287609
+UniRef50_W1EZ96: Polymyxin resistance protein PmrM	1.2480800280
+UniRef50_W1EZ96: Polymyxin resistance protein PmrM|unclassified	1.2480800280
+UniRef50_C1DR09	1.2479985921
+UniRef50_C1DR09|unclassified	1.2479985921
+UniRef50_UPI000377F542: universal stress protein A, partial	1.2479068648
+UniRef50_UPI000377F542: universal stress protein A, partial|unclassified	1.2479068648
+UniRef50_UPI0002895E0A: 50S ribosomal protein L15, partial	1.2474919737
+UniRef50_UPI0002895E0A: 50S ribosomal protein L15, partial|unclassified	1.2474919737
+UniRef50_UPI0001FE2E11: myo-inositol dehydrogenase	1.2472945415
+UniRef50_UPI0001FE2E11: myo-inositol dehydrogenase|unclassified	1.2472945415
+UniRef50_E7TI06	1.2470345099
+UniRef50_E7TI06|unclassified	1.2470345099
+UniRef50_UPI000363EEDE: hypothetical protein	1.2470308262
+UniRef50_UPI000363EEDE: hypothetical protein|unclassified	1.2470308262
+UniRef50_Q097C2	1.2469414828
+UniRef50_Q097C2|unclassified	1.2469414828
+UniRef50_B0VPR2	1.2468827930
+UniRef50_B0VPR2|g__Acinetobacter.s__Acinetobacter_baumannii	1.2468827930
+UniRef50_E6C9E2	1.2468827930
+UniRef50_E6C9E2|g__Propionibacterium.s__Propionibacterium_acnes	1.2468827930
+UniRef50_Q31EP3: ATP-binding cassette (ABC) superfamily transporter, ATP-binding component	1.2468827930
+UniRef50_Q31EP3: ATP-binding cassette (ABC) superfamily transporter, ATP-binding component|g__Acinetobacter.s__Acinetobacter_baumannii	1.2468827930
+UniRef50_R4ZN08: Magnesium and cobalt transport protein CorA	1.2468827930
+UniRef50_R4ZN08: Magnesium and cobalt transport protein CorA|g__Streptococcus.s__Streptococcus_agalactiae	1.2468827930
+UniRef50_A3M2U1: Chromosome partition protein Smc	1.2467676742
+UniRef50_A3M2U1: Chromosome partition protein Smc|g__Acinetobacter.s__Acinetobacter_baumannii	1.2467676742
+UniRef50_C8RZ45: Entericidin EcnAB	1.2466979234
+UniRef50_C8RZ45: Entericidin EcnAB|unclassified	1.2466979234
+UniRef50_A0YEX4	1.2466571896
+UniRef50_A0YEX4|unclassified	1.2466571896
+UniRef50_L0GLS2: TIGR01244 family protein	1.2462805708
+UniRef50_L0GLS2: TIGR01244 family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.2462805708
+UniRef50_UPI00046281E4: PREDICTED: chromatin target of PRMT1 protein	1.2458215919
+UniRef50_UPI00046281E4: PREDICTED: chromatin target of PRMT1 protein|unclassified	1.2458215919
+UniRef50_E0TQE3	1.2457857795
+UniRef50_E0TQE3|unclassified	1.2457857795
+UniRef50_A1B847	1.2453300125
+UniRef50_A1B847|unclassified	1.2453300125
+UniRef50_G7M7T5: Metallophosphoesterase	1.2453300125
+UniRef50_G7M7T5: Metallophosphoesterase|g__Clostridium.s__Clostridium_beijerinckii	1.2453300125
+UniRef50_P63946: 4-hydroxy-tetrahydrodipicolinate synthase	1.2453300125
+UniRef50_P63946: 4-hydroxy-tetrahydrodipicolinate synthase|g__Propionibacterium.s__Propionibacterium_acnes	1.2453300125
+UniRef50_Q9RV62: NADH pyrophosphatase	1.2453300125
+UniRef50_Q9RV62: NADH pyrophosphatase|g__Deinococcus.s__Deinococcus_radiodurans	1.2453300125
+UniRef50_X2HA66: Macrolide-specific efflux protein MacA	1.2453300125
+UniRef50_X2HA66: Macrolide-specific efflux protein MacA|g__Neisseria.s__Neisseria_meningitidis	1.2453300125
+UniRef50_F0KHD0	1.2452346055
+UniRef50_F0KHD0|unclassified	1.2452346055
+UniRef50_Q5FR39: UPF0260 protein GOX1406	1.2452138495
+UniRef50_Q5FR39: UPF0260 protein GOX1406|unclassified	1.2452138495
+UniRef50_W8SVK1	1.2451405459
+UniRef50_W8SVK1|unclassified	1.2451405459
+UniRef50_A0A059DVD1	1.2450298860
+UniRef50_A0A059DVD1|unclassified	1.2450298860
+UniRef50_UPI000471111A: hypothetical protein	1.2449751375
+UniRef50_UPI000471111A: hypothetical protein|unclassified	1.2449751375
+UniRef50_A0A021XF37: Transposase	1.2448155479
+UniRef50_A0A021XF37: Transposase|unclassified	1.2448155479
+UniRef50_B3PFW0: Copper resistance protein A	1.2447102705
+UniRef50_B3PFW0: Copper resistance protein A|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2447102705
+UniRef50_A3XAI3: YjeF family protein	1.2446493857
+UniRef50_A3XAI3: YjeF family protein|unclassified	1.2446493857
+UniRef50_A7HUE0: O-antigen polymerase	1.2444308761
+UniRef50_A7HUE0: O-antigen polymerase|unclassified	1.2444308761
+UniRef50_UPI0003291A81: PREDICTED: collagen alpha-1(I) chain-like	1.2444074250
+UniRef50_UPI0003291A81: PREDICTED: collagen alpha-1(I) chain-like|unclassified	1.2444074250
+UniRef50_E4N7F4	1.2439509476
+UniRef50_E4N7F4|unclassified	1.2439509476
+UniRef50_UPI00045E66ED: branched-chain amino acid ABC transporter substrate-binding protein	1.2439083643
+UniRef50_UPI00045E66ED: branched-chain amino acid ABC transporter substrate-binding protein|unclassified	1.2439083643
+UniRef50_UPI0001CBF255: amino acid-polyamine-organocation superfamily protein, partial	1.2438811924
+UniRef50_UPI0001CBF255: amino acid-polyamine-organocation superfamily protein, partial|unclassified	1.2438811924
+UniRef50_Q9JV93: 4-hydroxybenzoate octaprenyltransferase	1.2437810945
+UniRef50_Q9JV93: 4-hydroxybenzoate octaprenyltransferase|g__Neisseria.s__Neisseria_meningitidis	1.2437810945
+UniRef50_R0P9K1: D-alanyl-D-alanine carboxypeptidase family protein (Fragment)	1.2437810945
+UniRef50_R0P9K1: D-alanyl-D-alanine carboxypeptidase family protein (Fragment)|g__Neisseria.s__Neisseria_meningitidis	1.2437810945
+UniRef50_S6AXT9: ABC-type multidrug transport system, ATPase/permease components	1.2437810945
+UniRef50_S6AXT9: ABC-type multidrug transport system, ATPase/permease components|g__Streptococcus.s__Streptococcus_agalactiae	1.2437810945
+UniRef50_UPI0004711963: serine/threonine protein kinase, partial	1.2437810945
+UniRef50_UPI0004711963: serine/threonine protein kinase, partial|unclassified	1.2437810945
+UniRef50_F0E9I4: Rod shape-determining protein MreC (Fragment)	1.2435943749
+UniRef50_F0E9I4: Rod shape-determining protein MreC (Fragment)|unclassified	1.2435943749
+UniRef50_UPI00047D183D: DeoR faimly transcriptional regulator	1.2434963876
+UniRef50_UPI00047D183D: DeoR faimly transcriptional regulator|unclassified	1.2434963876
+UniRef50_UPI0003B6CAA8: membrane protein	1.2434636020
+UniRef50_UPI0003B6CAA8: membrane protein|unclassified	1.2434636020
+UniRef50_K0TNK7	1.2433707641
+UniRef50_K0TNK7|unclassified	1.2433707641
+UniRef50_V4L8J8	1.2430021136
+UniRef50_V4L8J8|unclassified	1.2430021136
+UniRef50_UPI0003B4A55F: chemotaxis protein CheY	1.2426153324
+UniRef50_UPI0003B4A55F: chemotaxis protein CheY|unclassified	1.2426153324
+UniRef50_UPI0003B4F400: iron ABC transporter ATP-binding protein	1.2422816948
+UniRef50_UPI0003B4F400: iron ABC transporter ATP-binding protein|unclassified	1.2422816948
+UniRef50_A3PKV6: Chalcone and stilbene synthases domain protein	1.2422360248
+UniRef50_A3PKV6: Chalcone and stilbene synthases domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.2422360248
+UniRef50_Q0FHW8: Probable phosphopyruvate hydratase	1.2422360248
+UniRef50_Q0FHW8: Probable phosphopyruvate hydratase|unclassified	1.2422360248
+UniRef50_R0ZN34	1.2422360248
+UniRef50_R0ZN34|g__Neisseria.s__Neisseria_meningitidis	1.2422360248
+UniRef50_S1H4E1: Outer membrane autotransporter barrel domain-containing protein	1.2422360248
+UniRef50_S1H4E1: Outer membrane autotransporter barrel domain-containing protein|g__Escherichia.s__Escherichia_coli	1.2422360248
+UniRef50_UPI00035E2D1C: hypothetical protein, partial	1.2420936433
+UniRef50_UPI00035E2D1C: hypothetical protein, partial|unclassified	1.2420936433
+UniRef50_W0NLZ2: Replication protein RepA	1.2420692416
+UniRef50_W0NLZ2: Replication protein RepA|unclassified	1.2420692416
+UniRef50_V6URA0	1.2418845851
+UniRef50_V6URA0|unclassified	1.2418845851
+UniRef50_UPI000346AB98: hypothetical protein	1.2411544479
+UniRef50_UPI000346AB98: hypothetical protein|unclassified	1.2411544479
+UniRef50_P76231	1.2410937886
+UniRef50_P76231|unclassified	1.2410937886
+UniRef50_E0XV98	1.2409234992
+UniRef50_E0XV98|unclassified	1.2409234992
+UniRef50_D0ISP2: Aminodeoxychorismate lyase	1.2406947891
+UniRef50_D0ISP2: Aminodeoxychorismate lyase|g__Helicobacter.s__Helicobacter_pylori	1.2406947891
+UniRef50_E5ASL7: Folylpolyglutamate synthase (EC 6.3.2.17) / Dihydrofolate synthase (EC 6.3.2.12)	1.2406947891
+UniRef50_E5ASL7: Folylpolyglutamate synthase (EC 6.3.2.17) / Dihydrofolate synthase (EC 6.3.2.12)|g__Neisseria.s__Neisseria_meningitidis	1.2406947891
+UniRef50_UPI0003616A07: MULTISPECIES: hypothetical protein	1.2403037019
+UniRef50_UPI0003616A07: MULTISPECIES: hypothetical protein|unclassified	1.2403037019
+UniRef50_UPI000472BE12: hypothetical protein	1.2400204669
+UniRef50_UPI000472BE12: hypothetical protein|unclassified	1.2400204669
+UniRef50_U3QMM7: ABC transporter ATP-binding protein	1.2398661506
+UniRef50_U3QMM7: ABC transporter ATP-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2398661506
+UniRef50_B4KF09: GI17434	1.2396171143
+UniRef50_B4KF09: GI17434|unclassified	1.2396171143
+UniRef50_UPI00036FD547: hypothetical protein	1.2393171555
+UniRef50_UPI00036FD547: hypothetical protein|unclassified	1.2393171555
+UniRef50_F5TR17: Ribonucleoside-diphosphate reductase	1.2392789858
+UniRef50_F5TR17: Ribonucleoside-diphosphate reductase|g__Propionibacterium.s__Propionibacterium_acnes	1.2392789858
+UniRef50_A0A024BU97: Restriction endonuclease	1.2391573730
+UniRef50_A0A024BU97: Restriction endonuclease|g__Helicobacter.s__Helicobacter_pylori	1.2391573730
+UniRef50_M9G0T9: Acyl-CoA dehydrogenase, N-terminal domain protein	1.2391573730
+UniRef50_M9G0T9: Acyl-CoA dehydrogenase, N-terminal domain protein|g__Escherichia.s__Escherichia_coli	1.2391573730
+UniRef50_B0VMS2: Glucose-6-phosphate isomerase	1.2390361228
+UniRef50_B0VMS2: Glucose-6-phosphate isomerase|g__Acinetobacter.s__Acinetobacter_baumannii	1.2390361228
+UniRef50_D9SSR9: ABC transporter related	1.2388175621
+UniRef50_D9SSR9: ABC transporter related|g__Clostridium.s__Clostridium_beijerinckii	1.2388175621
+UniRef50_UPI0003B50543: translation initiation factor IF-3	1.2386372089
+UniRef50_UPI0003B50543: translation initiation factor IF-3|unclassified	1.2386372089
+UniRef50_G7R346	1.2386268756
+UniRef50_G7R346|unclassified	1.2386268756
+UniRef50_UPI00040FE5F8: hypothetical protein	1.2384205562
+UniRef50_UPI00040FE5F8: hypothetical protein|unclassified	1.2384205562
+UniRef50_UPI0003AA60F6: hypothetical protein	1.2380190133
+UniRef50_UPI0003AA60F6: hypothetical protein|unclassified	1.2380190133
+UniRef50_UPI00030E9C69: hypothetical protein	1.2378116451
+UniRef50_UPI00030E9C69: hypothetical protein|unclassified	1.2378116451
+UniRef50_A0A029MZ12: Putative FimH-like domain protein	1.2376684348
+UniRef50_A0A029MZ12: Putative FimH-like domain protein|unclassified	1.2376684348
+UniRef50_E3A746	1.2376301552
+UniRef50_E3A746|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2376301552
+UniRef50_F2CWP5: Predicted protein (Fragment)	1.2376237624
+UniRef50_F2CWP5: Predicted protein (Fragment)|unclassified	1.2376237624
+UniRef50_I0JK39	1.2376237624
+UniRef50_I0JK39|g__Clostridium.s__Clostridium_beijerinckii	1.2376237624
+UniRef50_Q03024: Alkaline protease secretion ATP-binding protein AprD	1.2376237624
+UniRef50_Q03024: Alkaline protease secretion ATP-binding protein AprD|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2376237624
+UniRef50_UPI0003F1A56A: PREDICTED: spidroin-2-like	1.2376237624
+UniRef50_UPI0003F1A56A: PREDICTED: spidroin-2-like|unclassified	1.2376237624
+UniRef50_Q77MT6	1.2375409555
+UniRef50_Q77MT6|unclassified	1.2375409555
+UniRef50_F3ZH26: Putative dehydrogenase	1.2368583797
+UniRef50_F3ZH26: Putative dehydrogenase|unclassified	1.2368583797
+UniRef50_F1VZ41	1.2366850642
+UniRef50_F1VZ41|unclassified	1.2366850642
+UniRef50_G0DVB6: Alpha-galactosidase	1.2366557285
+UniRef50_G0DVB6: Alpha-galactosidase|g__Propionibacterium.s__Propionibacterium_acnes	1.2366557285
+UniRef50_UPI0004623765: hypothetical protein TRAVEDRAFT_23945	1.2363120502
+UniRef50_UPI0004623765: hypothetical protein TRAVEDRAFT_23945|unclassified	1.2363120502
+UniRef50_A0A023RU18: Cytochrome C assembly protein	1.2360939431
+UniRef50_A0A023RU18: Cytochrome C assembly protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.2360939431
+UniRef50_A5WG85	1.2360939431
+UniRef50_A5WG85|g__Acinetobacter.s__Acinetobacter_baumannii	1.2360939431
+UniRef50_R9SL71: SAM-dependent methyltransferase	1.2360939431
+UniRef50_R9SL71: SAM-dependent methyltransferase|g__Methanobrevibacter.s__Methanobrevibacter_smithii	1.2360939431
+UniRef50_UPI0003ACD19D: PREDICTED: basic proline-rich protein-like	1.2360028493
+UniRef50_UPI0003ACD19D: PREDICTED: basic proline-rich protein-like|unclassified	1.2360028493
+UniRef50_B8ITA7	1.2359747468
+UniRef50_B8ITA7|unclassified	1.2359747468
+UniRef50_W4TH17: Geranylgeranyl diphosphate reductase	1.2357723922
+UniRef50_W4TH17: Geranylgeranyl diphosphate reductase|unclassified	1.2357723922
+UniRef50_UPI0004643C42: hypothetical protein, partial	1.2356614016
+UniRef50_UPI0004643C42: hypothetical protein, partial|unclassified	1.2356614016
+UniRef50_Q6A8V3: 1-deoxy-D-xylulose-5-phosphate synthase	1.2356572156
+UniRef50_Q6A8V3: 1-deoxy-D-xylulose-5-phosphate synthase|g__Propionibacterium.s__Propionibacterium_acnes	1.2356572156
+UniRef50_E3A487	1.2356385141
+UniRef50_E3A487|unclassified	1.2356385141
+UniRef50_P31991	1.2355932219
+UniRef50_P31991|unclassified	1.2355932219
+UniRef50_D2JBF4: DNA recombination protein RmuC	1.2355514534
+UniRef50_D2JBF4: DNA recombination protein RmuC|unclassified	1.2355514534
+UniRef50_UPI000288A745: acetyltransferase, putative	1.2354561789
+UniRef50_UPI000288A745: acetyltransferase, putative|unclassified	1.2354561789
+UniRef50_UPI000309C87F: hypothetical protein	1.2354424129
+UniRef50_UPI000309C87F: hypothetical protein|unclassified	1.2354424129
+UniRef50_W4UEC1	1.2353538846
+UniRef50_W4UEC1|unclassified	1.2353538846
+UniRef50_G7ZUI4	1.2352460855
+UniRef50_G7ZUI4|unclassified	1.2352460855
+UniRef50_A6FSV8	1.2351597983
+UniRef50_A6FSV8|unclassified	1.2351597983
+UniRef50_UPI00020E3AD6	1.2348983796
+UniRef50_UPI00020E3AD6|unclassified	1.2348983796
+UniRef50_UPI0004689C7D: succinylglutamate desuccinylase	1.2345822395
+UniRef50_UPI0004689C7D: succinylglutamate desuccinylase|unclassified	1.2345822395
+UniRef50_A6TT61: Biotin synthase	1.2345679012
+UniRef50_A6TT61: Biotin synthase|g__Clostridium.s__Clostridium_beijerinckii	1.2345679012
+UniRef50_M9VH54: Transporter, major facilitator family protein	1.2345679012
+UniRef50_M9VH54: Transporter, major facilitator family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.2345679012
+UniRef50_R4RLB7: Transcriptional regulator, LuxR family	1.2345679012
+UniRef50_R4RLB7: Transcriptional regulator, LuxR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2345679012
+UniRef50_S6EJM0	1.2345090993
+UniRef50_S6EJM0|unclassified	1.2345090993
+UniRef50_J1D1L8	1.2341767898
+UniRef50_J1D1L8|unclassified	1.2341767898
+UniRef50_UPI00040D222C: hypothetical protein	1.2337346898
+UniRef50_UPI00040D222C: hypothetical protein|unclassified	1.2337346898
+UniRef50_D6B4Z7	1.2336931941
+UniRef50_D6B4Z7|unclassified	1.2336931941
+UniRef50_M5JPC6	1.2335345136
+UniRef50_M5JPC6|unclassified	1.2335345136
+UniRef50_N8KG86	1.2335072867
+UniRef50_N8KG86|unclassified	1.2335072867
+UniRef50_D7BMZ3: ABC transporter related protein	1.2334259576
+UniRef50_D7BMZ3: ABC transporter related protein|g__Propionibacterium.s__Propionibacterium_acnes	1.2334259576
+UniRef50_C0ENU4	1.2331230749
+UniRef50_C0ENU4|unclassified	1.2331230749
+UniRef50_I4K4R8: DNA-binding response regulator	1.2330456227
+UniRef50_I4K4R8: DNA-binding response regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2330456227
+UniRef50_M4QUJ5	1.2330456227
+UniRef50_M4QUJ5|g__Acinetobacter.s__Acinetobacter_baumannii	1.2330456227
+UniRef50_Q9RFF3: Orf292	1.2330456227
+UniRef50_Q9RFF3: Orf292|unclassified	1.2330456227
+UniRef50_UPI0003F14BA9: PREDICTED: Krueppel-like factor 16	1.2330456227
+UniRef50_UPI0003F14BA9: PREDICTED: Krueppel-like factor 16|unclassified	1.2330456227
+UniRef50_UPI00040F22CC: hypothetical protein	1.2328883865
+UniRef50_UPI00040F22CC: hypothetical protein|unclassified	1.2328883865
+UniRef50_S9QB87	1.2326401038
+UniRef50_S9QB87|unclassified	1.2326401038
+UniRef50_UPI000376DBC0: hypothetical protein	1.2323677960
+UniRef50_UPI000376DBC0: hypothetical protein|unclassified	1.2323677960
+UniRef50_UPI00036340A3: hypothetical protein	1.2320419891
+UniRef50_UPI00036340A3: hypothetical protein|unclassified	1.2320419891
+UniRef50_F4D588: Type I restriction-modification system, M subunit	1.2317139026
+UniRef50_F4D588: Type I restriction-modification system, M subunit|g__Helicobacter.s__Helicobacter_pylori	1.2317139026
+UniRef50_B5SGS2: Phosphoribosylaminoimidazole carboxylase atpase subunit protein	1.2315270936
+UniRef50_B5SGS2: Phosphoribosylaminoimidazole carboxylase atpase subunit protein|g__Neisseria.s__Neisseria_meningitidis	1.2315270936
+UniRef50_G8AXQ8: Putrescine transport protein (ABC superfamily,atp_bind)	1.2315270936
+UniRef50_G8AXQ8: Putrescine transport protein (ABC superfamily,atp_bind)|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.2315270936
+UniRef50_Q3JL15	1.2315214141
+UniRef50_Q3JL15|unclassified	1.2315214141
+UniRef50_Q6V3X0: Dihydroorotate dehydrogenase (fumarate)	1.2313767249
+UniRef50_Q6V3X0: Dihydroorotate dehydrogenase (fumarate)|g__Streptococcus.s__Streptococcus_agalactiae	1.0845986985
+UniRef50_Q6V3X0: Dihydroorotate dehydrogenase (fumarate)|unclassified	0.1467780264
+UniRef50_W9B2U5: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	1.2311936193
+UniRef50_W9B2U5: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome|unclassified	1.2311936193
+UniRef50_Q9RUU0: D-3-phosphoglycerate dehydrogenase	1.2311574927
+UniRef50_Q9RUU0: D-3-phosphoglycerate dehydrogenase|g__Deinococcus.s__Deinococcus_radiodurans	1.2311574927
+UniRef50_UPI000376559F: hypothetical protein	1.2311355446
+UniRef50_UPI000376559F: hypothetical protein|unclassified	1.2311355446
+UniRef50_W1JGF0	1.2309515942
+UniRef50_W1JGF0|unclassified	1.2309515942
+UniRef50_R6IDY7	1.2309205436
+UniRef50_R6IDY7|unclassified	1.2309205436
+UniRef50_C5YUQ9	1.2308627208
+UniRef50_C5YUQ9|unclassified	1.2308627208
+UniRef50_F2E6Z5: Predicted protein (Fragment)	1.2304664295
+UniRef50_F2E6Z5: Predicted protein (Fragment)|unclassified	1.2304664295
+UniRef50_C5NXP6	1.2303279448
+UniRef50_C5NXP6|unclassified	1.2303279448
+UniRef50_UPI00047E9C04: hypothetical protein	1.2303269218
+UniRef50_UPI00047E9C04: hypothetical protein|unclassified	1.2303269218
+UniRef50_J9NSX5	1.2303146568
+UniRef50_J9NSX5|unclassified	1.2303146568
+UniRef50_UPI00037A7C14: hypothetical protein	1.2300123001
+UniRef50_UPI00037A7C14: hypothetical protein|unclassified	1.2300123001
+UniRef50_J3LH93	1.2299327828
+UniRef50_J3LH93|unclassified	1.2299327828
+UniRef50_A1B2V6	1.2294750925
+UniRef50_A1B2V6|unclassified	1.2294750925
+UniRef50_F3ETK6	1.2293845271
+UniRef50_F3ETK6|unclassified	1.2293845271
+UniRef50_W4TL26	1.2292292255
+UniRef50_W4TL26|unclassified	1.2292292255
+UniRef50_A5WFZ6: Anthranilate phosphoribosyltransferase	1.2291674200
+UniRef50_A5WFZ6: Anthranilate phosphoribosyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.1778563015
+UniRef50_A5WFZ6: Anthranilate phosphoribosyltransferase|unclassified	0.0513111185
+UniRef50_K0P0B7	1.2291444969
+UniRef50_K0P0B7|unclassified	1.2291444969
+UniRef50_M1FFG6: Low calcium response locus protein T	1.2289688209
+UniRef50_M1FFG6: Low calcium response locus protein T|unclassified	1.2289688209
+UniRef50_D7A8D2: Phosphate/phosphonate ABC transporter	1.2289264129
+UniRef50_D7A8D2: Phosphate/phosphonate ABC transporter|unclassified	1.2289264129
+UniRef50_U9QP59	1.2285924097
+UniRef50_U9QP59|unclassified	1.2285924097
+UniRef50_Q9HTK9: Rubredoxin-NAD(+) reductase	1.2285012285
+UniRef50_Q9HTK9: Rubredoxin-NAD(+) reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2285012285
+UniRef50_R4ZS57: Tn5252, Orf23	1.2285012285
+UniRef50_R4ZS57: Tn5252, Orf23|g__Streptococcus.s__Streptococcus_agalactiae	1.2285012285
+UniRef50_X2HPT1: Membrane protein	1.2285012285
+UniRef50_X2HPT1: Membrane protein|g__Helicobacter.s__Helicobacter_pylori	1.2285012285
+UniRef50_S3PW82	1.2284284761
+UniRef50_S3PW82|unclassified	1.2284284761
+UniRef50_M7CS69: Arsenate reductase	1.2282846877
+UniRef50_M7CS69: Arsenate reductase|unclassified	1.2282846877
+UniRef50_F7XZJ7: Protein-tyrosine phosphatase, low molecular weight	1.2280709379
+UniRef50_F7XZJ7: Protein-tyrosine phosphatase, low molecular weight|unclassified	1.2280709379
+UniRef50_N3Q2N6: CO dehydrogenase flavoC-terminal domain protein	1.2280671167
+UniRef50_N3Q2N6: CO dehydrogenase flavoC-terminal domain protein|unclassified	1.2280671167
+UniRef50_UPI00035C4233: hypothetical protein	1.2278932038
+UniRef50_UPI00035C4233: hypothetical protein|unclassified	1.2278932038
+UniRef50_UPI000334479B	1.2274823386
+UniRef50_UPI000334479B|unclassified	1.2274823386
+UniRef50_W9EJA7	1.2274465223
+UniRef50_W9EJA7|unclassified	1.2274465223
+UniRef50_UPI0004692C05: hydrogenase	1.2273623904
+UniRef50_UPI0004692C05: hydrogenase|unclassified	1.2273623904
+UniRef50_W1E4U3	1.2272129071
+UniRef50_W1E4U3|unclassified	1.2272129071
+UniRef50_Y2RGA7	1.2271699097
+UniRef50_Y2RGA7|unclassified	1.2271699097
+UniRef50_A5WHC3: 4-hydroxy-tetrahydrodipicolinate synthase	1.2271509265
+UniRef50_A5WHC3: 4-hydroxy-tetrahydrodipicolinate synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2150668287
+UniRef50_A5WHC3: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0120840978
+UniRef50_UPI00041FFD36: hypothetical protein	1.2270079134
+UniRef50_UPI00041FFD36: hypothetical protein|unclassified	1.2270079134
+UniRef50_A3CKW3: Small-conductance mechanosensitive efflux channel, putative	1.2269938650
+UniRef50_A3CKW3: Small-conductance mechanosensitive efflux channel, putative|g__Streptococcus.s__Streptococcus_agalactiae	1.2269938650
+UniRef50_Q59640: Phosphatidate cytidylyltransferase	1.2269938650
+UniRef50_Q59640: Phosphatidate cytidylyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2269938650
+UniRef50_R4XYL7: Glutamate dehydrogenase	1.2269938650
+UniRef50_R4XYL7: Glutamate dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.2269938650
+UniRef50_B7EES4: Os01g0239300 protein	1.2260775291
+UniRef50_B7EES4: Os01g0239300 protein|unclassified	1.2260775291
+UniRef50_T2S877	1.2258488741
+UniRef50_T2S877|unclassified	1.2258488741
+UniRef50_F2N3V4: Peptide ABC transporter, periplasmic peptide-binding protein	1.2258291611
+UniRef50_F2N3V4: Peptide ABC transporter, periplasmic peptide-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2258291611
+UniRef50_D6SG03	1.2258097948
+UniRef50_D6SG03|unclassified	1.2258097948
+UniRef50_W5PP12	1.2257441821
+UniRef50_W5PP12|unclassified	1.2257441821
+UniRef50_A6LTI7	1.2256860439
+UniRef50_A6LTI7|g__Clostridium.s__Clostridium_beijerinckii	1.2256860439
+UniRef50_A3M2F5: Conjugal transfer protein	1.2254901961
+UniRef50_A3M2F5: Conjugal transfer protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.2254901961
+UniRef50_G7U4V3: Oxidoreductase, Gfo/Idh/MocA family protein	1.2254901961
+UniRef50_G7U4V3: Oxidoreductase, Gfo/Idh/MocA family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.2254901961
+UniRef50_Q9I1Y2	1.2254901961
+UniRef50_Q9I1Y2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2254901961
+UniRef50_T2ERR4: Outer membrane porin, OprD family protein	1.2254901961
+UniRef50_T2ERR4: Outer membrane porin, OprD family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2254901961
+UniRef50_X6DLZ2	1.2254850110
+UniRef50_X6DLZ2|unclassified	1.2254850110
+UniRef50_W1YQA6	1.2252122069
+UniRef50_W1YQA6|unclassified	1.2252122069
+UniRef50_H0DF26	1.2251475451
+UniRef50_H0DF26|unclassified	1.2251475451
+UniRef50_H8GWF1: 5`-nucleotidase family protein	1.2251241634
+UniRef50_H8GWF1: 5`-nucleotidase family protein|g__Deinococcus.s__Deinococcus_radiodurans	1.2251241634
+UniRef50_M0X071	1.2247838067
+UniRef50_M0X071|unclassified	1.2247838067
+UniRef50_Q1AVD3: Ribose import ATP-binding protein RbsA 2	1.2246263152
+UniRef50_Q1AVD3: Ribose import ATP-binding protein RbsA 2|unclassified	1.2246263152
+UniRef50_X1DY06: Marine sediment metagenome DNA, contig: S01H4_S26311 (Fragment)	1.2243992525
+UniRef50_X1DY06: Marine sediment metagenome DNA, contig: S01H4_S26311 (Fragment)|unclassified	1.2243992525
+UniRef50_UPI000360B2DD: hypothetical protein	1.2243044393
+UniRef50_UPI000360B2DD: hypothetical protein|unclassified	1.2243044393
+UniRef50_M2QYI1	1.2241819900
+UniRef50_M2QYI1|unclassified	1.2241819900
+UniRef50_A7FH09: UPF0176 protein YpsIP31758_1560	1.2239902081
+UniRef50_A7FH09: UPF0176 protein YpsIP31758_1560|g__Escherichia.s__Escherichia_coli	1.2239902081
+UniRef50_P45262: Replication-associated recombination protein A	1.2239902081
+UniRef50_P45262: Replication-associated recombination protein A|g__Neisseria.s__Neisseria_meningitidis	1.2239902081
+UniRef50_Q72TV3: Transketolase alpha subunit protein	1.2239902081
+UniRef50_Q72TV3: Transketolase alpha subunit protein|g__Clostridium.s__Clostridium_beijerinckii	1.2239902081
+UniRef50_Q9RW78: Chloride peroxidase, putative	1.2239902081
+UniRef50_Q9RW78: Chloride peroxidase, putative|g__Deinococcus.s__Deinococcus_radiodurans	1.2239902081
+UniRef50_R5A053: Glycerol-3-phosphate transporter	1.2239902081
+UniRef50_R5A053: Glycerol-3-phosphate transporter|g__Streptococcus.s__Streptococcus_agalactiae	1.2239902081
+UniRef50_U5MV95	1.2239902081
+UniRef50_U5MV95|g__Clostridium.s__Clostridium_beijerinckii	1.2239902081
+UniRef50_UPI0003AE95F3: PREDICTED: arginine/serine-rich protein 45-like	1.2239902081
+UniRef50_UPI0003AE95F3: PREDICTED: arginine/serine-rich protein 45-like|unclassified	1.2239902081
+UniRef50_G6YS95	1.2239126411
+UniRef50_G6YS95|unclassified	1.2239126411
+UniRef50_V6AFL3: Adenylate cyclase ExoY	1.2238297911
+UniRef50_V6AFL3: Adenylate cyclase ExoY|unclassified	1.2238297911
+UniRef50_A3M3B5: Arylsulfatase	1.2233898674
+UniRef50_A3M3B5: Arylsulfatase|g__Acinetobacter.s__Acinetobacter_baumannii	1.2233898674
+UniRef50_UPI00046FA309: hypothetical protein	1.2230871430
+UniRef50_UPI00046FA309: hypothetical protein|unclassified	1.2230871430
+UniRef50_W7UKE4: Transposase (Fragment)	1.2227755611
+UniRef50_W7UKE4: Transposase (Fragment)|unclassified	1.2227755611
+UniRef50_UPI00037D339E: hypothetical protein	1.2227525001
+UniRef50_UPI00037D339E: hypothetical protein|unclassified	1.2227525001
+UniRef50_A8FA73: Serine-protein kinase RsbW	1.2226457234
+UniRef50_A8FA73: Serine-protein kinase RsbW|unclassified	1.2226457234
+UniRef50_B0VV71	1.2224938875
+UniRef50_B0VV71|g__Acinetobacter.s__Acinetobacter_baumannii	1.2224938875
+UniRef50_F5XDX0: Diaminopimelate epimerase	1.2224938875
+UniRef50_F5XDX0: Diaminopimelate epimerase|g__Propionibacterium.s__Propionibacterium_acnes	1.2224938875
+UniRef50_P41504: Probable tRNA-dihydrouridine synthase	1.2224938875
+UniRef50_P41504: Probable tRNA-dihydrouridine synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.2224938875
+UniRef50_D6SDP6	1.2222945056
+UniRef50_D6SDP6|unclassified	1.2222945056
+UniRef50_E7IEY2	1.2222571814
+UniRef50_E7IEY2|unclassified	1.2222571814
+UniRef50_UPI000475DAFE: peptide ABC transporter	1.2221669066
+UniRef50_UPI000475DAFE: peptide ABC transporter|unclassified	1.2221669066
+UniRef50_UPI0003DE72CE: PREDICTED: peroxiredoxin-2E-1, chloroplastic-like	1.2220709551
+UniRef50_UPI0003DE72CE: PREDICTED: peroxiredoxin-2E-1, chloroplastic-like|unclassified	1.2220709551
+UniRef50_E6NPZ4: Methyl-accepting chemotaxis protein	1.2220173311
+UniRef50_E6NPZ4: Methyl-accepting chemotaxis protein|g__Helicobacter.s__Helicobacter_pylori	1.2220173311
+UniRef50_X1CCA7: Marine sediment metagenome DNA, contig: S01H4_S23389 (Fragment)	1.2219583808
+UniRef50_X1CCA7: Marine sediment metagenome DNA, contig: S01H4_S23389 (Fragment)|unclassified	1.2219583808
+UniRef50_G9ZDP3	1.2218471088
+UniRef50_G9ZDP3|unclassified	1.2218471088
+UniRef50_C6KU90	1.2217832005
+UniRef50_C6KU90|unclassified	1.2217832005
+UniRef50_A0A059G0B5: Ribonuclease E	1.2216888298
+UniRef50_A0A059G0B5: Ribonuclease E|unclassified	1.2216888298
+UniRef50_Z4HDJ8	1.2216119989
+UniRef50_Z4HDJ8|unclassified	1.2216119989
+UniRef50_D5AUU6	1.2216104068
+UniRef50_D5AUU6|unclassified	1.2216104068
+UniRef50_A0A024J5P9: PT4 plasmid pSEN complete sequence	1.2215648136
+UniRef50_A0A024J5P9: PT4 plasmid pSEN complete sequence|unclassified	1.2215648136
+UniRef50_Q3JT43	1.2213280026
+UniRef50_Q3JT43|unclassified	1.2213280026
+UniRef50_W0L514	1.2212917432
+UniRef50_W0L514|unclassified	1.2212917432
+UniRef50_A0A031H7A6	1.2211942225
+UniRef50_A0A031H7A6|unclassified	1.2211942225
+UniRef50_V4RNU3	1.2210477491
+UniRef50_V4RNU3|unclassified	1.2210477491
+UniRef50_A7ICI1: Cytochrome oxidase maturation protein, cbb3-type	1.2210022886
+UniRef50_A7ICI1: Cytochrome oxidase maturation protein, cbb3-type|unclassified	1.2210022886
+UniRef50_K7RQ95: Integral membrane protein MviN	1.2210012210
+UniRef50_K7RQ95: Integral membrane protein MviN|g__Propionibacterium.s__Propionibacterium_acnes	1.2210012210
+UniRef50_P58253: Stage 0 sporulation protein A homolog	1.2210012210
+UniRef50_P58253: Stage 0 sporulation protein A homolog|g__Clostridium.s__Clostridium_beijerinckii	1.2210012210
+UniRef50_Q25AP2: H0811D08.7 protein	1.2210012210
+UniRef50_Q25AP2: H0811D08.7 protein|unclassified	1.2210012210
+UniRef50_Q9RW09: Sensor histidine kinase	1.2210012210
+UniRef50_Q9RW09: Sensor histidine kinase|g__Deinococcus.s__Deinococcus_radiodurans	1.2210012210
+UniRef50_Q9ZJN2: Probable nicotinate-nucleotide pyrophosphorylase [carboxylating]	1.2210012210
+UniRef50_Q9ZJN2: Probable nicotinate-nucleotide pyrophosphorylase [carboxylating]|g__Helicobacter.s__Helicobacter_pylori	1.2210012210
+UniRef50_UPI00046EDAEC: purine operon repressor	1.2210012210
+UniRef50_UPI00046EDAEC: purine operon repressor|unclassified	1.2210012210
+UniRef50_UPI00047471A8: thioredoxin	1.2208247896
+UniRef50_UPI00047471A8: thioredoxin|unclassified	1.2208247896
+UniRef50_V9UBP5	1.2204598398
+UniRef50_V9UBP5|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8230452675
+UniRef50_V9UBP5|unclassified	0.3974145723
+UniRef50_UPI0003B46F2A: ArsR family transcriptional regulator	1.2202740099
+UniRef50_UPI0003B46F2A: ArsR family transcriptional regulator|unclassified	1.2202740099
+UniRef50_A6LX02: NADH:flavin oxidoreductase/NADH oxidase	1.2202603421
+UniRef50_A6LX02: NADH:flavin oxidoreductase/NADH oxidase|g__Clostridium.s__Clostridium_beijerinckii	1.2202603421
+UniRef50_UPI0003317A65: PREDICTED: basic proline-rich protein-like	1.2200540398
+UniRef50_UPI0003317A65: PREDICTED: basic proline-rich protein-like|unclassified	1.2200540398
+UniRef50_G5P8G8: Peptide transport system permease protein sapB	1.2200283316
+UniRef50_G5P8G8: Peptide transport system permease protein sapB|unclassified	1.2200283316
+UniRef50_A9BWW9	1.2196508226
+UniRef50_A9BWW9|unclassified	1.2196508226
+UniRef50_UPI0003840695: PREDICTED: basic proline-rich protein-like	1.2195162759
+UniRef50_UPI0003840695: PREDICTED: basic proline-rich protein-like|unclassified	1.2195162759
+UniRef50_B7KKV6: Transposase, IS605 OrfB family	1.2195121951
+UniRef50_B7KKV6: Transposase, IS605 OrfB family|g__Deinococcus.s__Deinococcus_radiodurans	1.2195121951
+UniRef50_C1MWX1: Predicted protein	1.2195121951
+UniRef50_C1MWX1: Predicted protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.2195121951
+UniRef50_K0K9R8	1.2195121951
+UniRef50_K0K9R8|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2195121951
+UniRef50_K4AJA5	1.2195121951
+UniRef50_K4AJA5|unclassified	1.2195121951
+UniRef50_O25758: Probable chromosome-partitioning protein ParB	1.2195121951
+UniRef50_O25758: Probable chromosome-partitioning protein ParB|g__Helicobacter.s__Helicobacter_pylori	1.2195121951
+UniRef50_Q5GTV1: Sugar diacide regulator	1.2195121951
+UniRef50_Q5GTV1: Sugar diacide regulator|unclassified	1.2195121951
+UniRef50_UPI00038327D6	1.2195121951
+UniRef50_UPI00038327D6|unclassified	1.2195121951
+UniRef50_UPI0003C8D08E: PREDICTED: stress response protein NST1-like	1.2195121951
+UniRef50_UPI0003C8D08E: PREDICTED: stress response protein NST1-like|unclassified	1.2195121951
+UniRef50_UPI00039CA426: NADH dehydrogenase subunit E	1.2195118233
+UniRef50_UPI00039CA426: NADH dehydrogenase subunit E|unclassified	1.2195118233
+UniRef50_E3HHT4: TRAP transporter solute receptor, TAXI family protein 3	1.2193595858
+UniRef50_E3HHT4: TRAP transporter solute receptor, TAXI family protein 3|unclassified	1.2193595858
+UniRef50_UPI00046A6655: hypothetical protein	1.2191113501
+UniRef50_UPI00046A6655: hypothetical protein|unclassified	1.2191113501
+UniRef50_W1DXQ8	1.2188520206
+UniRef50_W1DXQ8|unclassified	1.2188520206
+UniRef50_J1FFD9	1.2188030841
+UniRef50_J1FFD9|unclassified	1.2188030841
+UniRef50_J2X9S6	1.2184760741
+UniRef50_J2X9S6|unclassified	1.2184760741
+UniRef50_F1UC42	1.2183489415
+UniRef50_F1UC42|unclassified	1.2183489415
+UniRef50_W8S0L8: Flagellar protein FlgJ, putative	1.2183095349
+UniRef50_W8S0L8: Flagellar protein FlgJ, putative|unclassified	1.2183095349
+UniRef50_J9G6E2	1.2181267250
+UniRef50_J9G6E2|unclassified	1.2181267250
+UniRef50_B8FY01: Binding-protein-dependent transport systems inner membrane component	1.2180267966
+UniRef50_B8FY01: Binding-protein-dependent transport systems inner membrane component|g__Streptococcus.s__Streptococcus_agalactiae	1.2180267966
+UniRef50_T2A3N6: Replication initiation factor	1.2180267966
+UniRef50_T2A3N6: Replication initiation factor|g__Neisseria.s__Neisseria_meningitidis	1.2180267966
+UniRef50_M1MRG1: Amino acid/polyamine/organocation transporter, APC superfamily	1.2179845126
+UniRef50_M1MRG1: Amino acid/polyamine/organocation transporter, APC superfamily|g__Clostridium.s__Clostridium_beijerinckii	1.2179845126
+UniRef50_I3G1Y3	1.2179788551
+UniRef50_I3G1Y3|unclassified	1.2179788551
+UniRef50_Q1IZ90: Drug resistance transporter EmrB/QacA subfamily	1.2178112282
+UniRef50_Q1IZ90: Drug resistance transporter EmrB/QacA subfamily|g__Deinococcus.s__Deinococcus_radiodurans	1.2178112282
+UniRef50_E6QIH1	1.2177606811
+UniRef50_E6QIH1|unclassified	1.2177606811
+UniRef50_UPI00047DC295: bacitracin ABC transporter ATP-binding protein	1.2175439553
+UniRef50_UPI00047DC295: bacitracin ABC transporter ATP-binding protein|unclassified	1.2175439553
+UniRef50_UPI00046A08CE: hypothetical protein	1.2174765932
+UniRef50_UPI00046A08CE: hypothetical protein|unclassified	1.2174765932
+UniRef50_K2KB78: Chemotactic signal-response protein	1.2174292446
+UniRef50_K2KB78: Chemotactic signal-response protein|unclassified	1.2174292446
+UniRef50_Q2RQA8	1.2173866768
+UniRef50_Q2RQA8|unclassified	1.2173866768
+UniRef50_W5YGZ9	1.2169826279
+UniRef50_W5YGZ9|unclassified	1.2169826279
+UniRef50_Q6F8J4: DNA primase	1.2169386035
+UniRef50_Q6F8J4: DNA primase|g__Acinetobacter.s__Acinetobacter_baumannii	1.2169386035
+UniRef50_UPI0002B964D7: hypothetical protein	1.2167068906
+UniRef50_UPI0002B964D7: hypothetical protein|unclassified	1.2167068906
+UniRef50_J7TL98: Transcriptional regulator, AraC family	1.2165450122
+UniRef50_J7TL98: Transcriptional regulator, AraC family|g__Acinetobacter.s__Acinetobacter_baumannii	1.2165450122
+UniRef50_Q9RU40	1.2165450122
+UniRef50_Q9RU40|g__Deinococcus.s__Deinococcus_radiodurans	1.2165450122
+UniRef50_UPI0003821160: hypothetical protein	1.2164961111
+UniRef50_UPI0003821160: hypothetical protein|unclassified	1.2164961111
+UniRef50_Q9RS99	1.2163982157
+UniRef50_Q9RS99|unclassified	1.2163982157
+UniRef50_UPI0004688DE5: hypothetical protein	1.2159986912
+UniRef50_UPI0004688DE5: hypothetical protein|unclassified	1.2159986912
+UniRef50_UPI0002375E1A: epimerase	1.2156514031
+UniRef50_UPI0002375E1A: epimerase|unclassified	1.2156514031
+UniRef50_M1XDM0: Transcriptional regulator, PadR family	1.2156367392
+UniRef50_M1XDM0: Transcriptional regulator, PadR family|unclassified	1.2156367392
+UniRef50_G6YUN6: Cytochrome c-type biogenesis protein CcmF	1.2156123281
+UniRef50_G6YUN6: Cytochrome c-type biogenesis protein CcmF|unclassified	1.2156123281
+UniRef50_A6LZZ3: AAA ATPase, central domain protein	1.2155178527
+UniRef50_A6LZZ3: AAA ATPase, central domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.2155178527
+UniRef50_A4JAA4	1.2154772544
+UniRef50_A4JAA4|unclassified	1.2154772544
+UniRef50_UPI0003B7A57E: prolipoprotein diacylglyceryl transferase	1.2153570019
+UniRef50_UPI0003B7A57E: prolipoprotein diacylglyceryl transferase|unclassified	1.2153570019
+UniRef50_H0DZL7: Relaxase/mobilization nuclease domain protein	1.2152653158
+UniRef50_H0DZL7: Relaxase/mobilization nuclease domain protein|unclassified	1.2152653158
+UniRef50_K9ZX93: Threonine--tRNA ligase	1.2152513495
+UniRef50_K9ZX93: Threonine--tRNA ligase|g__Deinococcus.s__Deinococcus_radiodurans	1.2152513495
+UniRef50_UPI0003B611D3: hypothetical protein	1.2151104458
+UniRef50_UPI0003B611D3: hypothetical protein|unclassified	1.2151104458
+UniRef50_O34319	1.2150668287
+UniRef50_O34319|g__Clostridium.s__Clostridium_beijerinckii	1.2150668287
+UniRef50_C4J1N8	1.2149928490
+UniRef50_C4J1N8|unclassified	1.2149928490
+UniRef50_Q9RY11	1.2145458954
+UniRef50_Q9RY11|g__Deinococcus.s__Deinococcus_radiodurans	1.2145458954
+UniRef50_E6CC33	1.2144026129
+UniRef50_E6CC33|unclassified	1.2144026129
+UniRef50_Q9RZV6	1.2143653448
+UniRef50_Q9RZV6|unclassified	1.2143653448
+UniRef50_X8AYJ2	1.2143559878
+UniRef50_X8AYJ2|unclassified	1.2143559878
+UniRef50_A0A019G9E1	1.2141182618
+UniRef50_A0A019G9E1|unclassified	1.2141182618
+UniRef50_UPI000226076D: transcriptional regulator MerR, partial	1.2139194726
+UniRef50_UPI000226076D: transcriptional regulator MerR, partial|unclassified	1.2139194726
+UniRef50_B0VCS4	1.2135922330
+UniRef50_B0VCS4|g__Acinetobacter.s__Acinetobacter_baumannii	1.2135922330
+UniRef50_B9KM62: Alcohol dehydrogenase, zinc-binding domain protein	1.2135922330
+UniRef50_B9KM62: Alcohol dehydrogenase, zinc-binding domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.2135922330
+UniRef50_R4QKT1: Fibronectin	1.2135922330
+UniRef50_R4QKT1: Fibronectin|g__Helicobacter.s__Helicobacter_pylori	1.2135922330
+UniRef50_V6AHQ4: Putative serine/threonine-protein kinase	1.2132492559
+UniRef50_V6AHQ4: Putative serine/threonine-protein kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2132492559
+UniRef50_UPI00046E2E79: hypothetical protein, partial	1.2131971725
+UniRef50_UPI00046E2E79: hypothetical protein, partial|unclassified	1.2131971725
+UniRef50_V9WIU0	1.2131821651
+UniRef50_V9WIU0|unclassified	1.2131821651
+UniRef50_A0A017HA31	1.2131218316
+UniRef50_A0A017HA31|unclassified	1.2131218316
+UniRef50_G7EEM4	1.2128155450
+UniRef50_G7EEM4|unclassified	1.2128155450
+UniRef50_UPI0001745063: ArsR family transcriptional regulator	1.2128068527
+UniRef50_UPI0001745063: ArsR family transcriptional regulator|unclassified	1.2128068527
+UniRef50_A0A034T8B2: SSV1 integrase homolog, N-fragment	1.2125068380
+UniRef50_A0A034T8B2: SSV1 integrase homolog, N-fragment|unclassified	1.2125068380
+UniRef50_UPI000347393D: hypothetical protein	1.2121227939
+UniRef50_UPI000347393D: hypothetical protein|unclassified	1.2121227939
+UniRef50_E8QNX4: Type II adenine specific DNA methyltransferase	1.2121212121
+UniRef50_E8QNX4: Type II adenine specific DNA methyltransferase|g__Helicobacter.s__Helicobacter_pylori	1.2121212121
+UniRef50_G7MCR1: Taurine-transporting ATPase	1.2121212121
+UniRef50_G7MCR1: Taurine-transporting ATPase|g__Clostridium.s__Clostridium_beijerinckii	1.2121212121
+UniRef50_R4Q8N7: Oxidoreductase	1.2121212121
+UniRef50_R4Q8N7: Oxidoreductase|g__Helicobacter.s__Helicobacter_pylori	1.2121212121
+UniRef50_W5V8H5: O-methyltransferase	1.2121212121
+UniRef50_W5V8H5: O-methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2121212121
+UniRef50_U3TVU1	1.2119482965
+UniRef50_U3TVU1|unclassified	1.2119482965
+UniRef50_UPI00036D6A4E: hypothetical protein	1.2114921460
+UniRef50_UPI00036D6A4E: hypothetical protein|unclassified	1.2114921460
+UniRef50_B7QZA6	1.2113949212
+UniRef50_B7QZA6|unclassified	1.2113949212
+UniRef50_UPI0004673888: acyl transferase	1.2110666287
+UniRef50_UPI0004673888: acyl transferase|unclassified	1.2110666287
+UniRef50_W6TE37: Major tail tube protein	1.2109505006
+UniRef50_W6TE37: Major tail tube protein|unclassified	1.2109505006
+UniRef50_E6QN76	1.2108438143
+UniRef50_E6QN76|unclassified	1.2108438143
+UniRef50_L6XVN7: PTS system N,N'-diacetylchitobiose-specific transporter subunit IIC	1.2107271024
+UniRef50_L6XVN7: PTS system N,N'-diacetylchitobiose-specific transporter subunit IIC|unclassified	1.2107271024
+UniRef50_D5SL87: PAT1 domain-containing protein	1.2106537530
+UniRef50_D5SL87: PAT1 domain-containing protein|unclassified	1.2106537530
+UniRef50_X8FD95: PE family protein	1.2106537530
+UniRef50_X8FD95: PE family protein|unclassified	1.2106537530
+UniRef50_UPI0003D742A7: PREDICTED: serine/arginine repetitive matrix protein 3-like	1.2105852911
+UniRef50_UPI0003D742A7: PREDICTED: serine/arginine repetitive matrix protein 3-like|unclassified	1.2105852911
+UniRef50_K1DS95	1.2105446007
+UniRef50_K1DS95|unclassified	1.2105446007
+UniRef50_K2SED6	1.2101773144
+UniRef50_K2SED6|unclassified	1.2101773144
+UniRef50_UPI00037FE286: hypothetical protein, partial	1.2099844951
+UniRef50_UPI00037FE286: hypothetical protein, partial|unclassified	1.2099844951
+UniRef50_F3SDM6	1.2097294819
+UniRef50_F3SDM6|unclassified	1.2097294819
+UniRef50_UPI00047ED7E7: hypothetical protein	1.2095783279
+UniRef50_UPI00047ED7E7: hypothetical protein|unclassified	1.2095783279
+UniRef50_UPI0003823B10: hypothetical protein	1.2094633296
+UniRef50_UPI0003823B10: hypothetical protein|unclassified	1.2094633296
+UniRef50_A0A020PVQ3: Tandem lipoprotein	1.2091898428
+UniRef50_A0A020PVQ3: Tandem lipoprotein|g__Staphylococcus.s__Staphylococcus_aureus	1.2091898428
+UniRef50_B1J595: Hydrolase, alpha/beta fold family	1.2091898428
+UniRef50_B1J595: Hydrolase, alpha/beta fold family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2091898428
+UniRef50_B1XZJ7: Pseudouridine synthase	1.2091898428
+UniRef50_B1XZJ7: Pseudouridine synthase|g__Neisseria.s__Neisseria_meningitidis	1.2091898428
+UniRef50_B7V343: Chemotaxis protein MotA	1.2091898428
+UniRef50_B7V343: Chemotaxis protein MotA|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.2091898428
+UniRef50_G7UA16: UDP-glucose 4-epimerase	1.2091898428
+UniRef50_G7UA16: UDP-glucose 4-epimerase|g__Propionibacterium.s__Propionibacterium_acnes	1.2091898428
+UniRef50_J9P5M7	1.2081175650
+UniRef50_J9P5M7|unclassified	1.2081175650
+UniRef50_B9TDM9	1.2080271050
+UniRef50_B9TDM9|unclassified	1.2080271050
+UniRef50_V7IW91	1.2079434357
+UniRef50_V7IW91|unclassified	1.2079434357
+UniRef50_J3G0X9	1.2078220427
+UniRef50_J3G0X9|unclassified	1.2078220427
+UniRef50_D8JNU4: Patatin-like phospholipase family protein	1.2077294686
+UniRef50_D8JNU4: Patatin-like phospholipase family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.2077294686
+UniRef50_F0PBS4: PTS system, IIC component	1.2077294686
+UniRef50_F0PBS4: PTS system, IIC component|g__Clostridium.s__Clostridium_beijerinckii	1.2077294686
+UniRef50_R4ZS47: CylD	1.2077294686
+UniRef50_R4ZS47: CylD|g__Streptococcus.s__Streptococcus_agalactiae	1.2077294686
+UniRef50_R6QZF3	1.2077294686
+UniRef50_R6QZF3|g__Clostridium.s__Clostridium_beijerinckii	1.2077294686
+UniRef50_W8S4A4: Protein YicC	1.2077294686
+UniRef50_W8S4A4: Protein YicC|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.2077294686
+UniRef50_UPI00036E6357: hypothetical protein	1.2074722444
+UniRef50_UPI00036E6357: hypothetical protein|unclassified	1.2074722444
+UniRef50_R9P548: Glycoside hydrolase	1.2074113815
+UniRef50_R9P548: Glycoside hydrolase|g__Clostridium.s__Clostridium_beijerinckii	1.2074113815
+UniRef50_UPI0003F739B0: hypothetical protein	1.2073993465
+UniRef50_UPI0003F739B0: hypothetical protein|unclassified	1.2073993465
+UniRef50_UPI0003670873: hypothetical protein, partial	1.2069646720
+UniRef50_UPI0003670873: hypothetical protein, partial|unclassified	1.2069646720
+UniRef50_UPI000472AC29: hypothetical protein	1.2067934844
+UniRef50_UPI000472AC29: hypothetical protein|unclassified	1.2067934844
+UniRef50_Q73YI1	1.2067125119
+UniRef50_Q73YI1|unclassified	1.2067125119
+UniRef50_F0JCL8	1.2066687220
+UniRef50_F0JCL8|unclassified	1.2066687220
+UniRef50_D8GL93: Adenine deaminase	1.2066284901
+UniRef50_D8GL93: Adenine deaminase|g__Clostridium.s__Clostridium_beijerinckii	1.2066284901
+UniRef50_A6LQN1	1.2062726176
+UniRef50_A6LQN1|g__Clostridium.s__Clostridium_beijerinckii	1.2062726176
+UniRef50_A6LV07: Patatin	1.2062726176
+UniRef50_A6LV07: Patatin|g__Clostridium.s__Clostridium_beijerinckii	1.2062726176
+UniRef50_B7JTI5: SAF domain family	1.2062726176
+UniRef50_B7JTI5: SAF domain family|unclassified	1.2062726176
+UniRef50_E3DNN6: Binding-protein-dependent transport systems inner membrane component	1.2062726176
+UniRef50_E3DNN6: Binding-protein-dependent transport systems inner membrane component|g__Deinococcus.s__Deinococcus_radiodurans	1.2062726176
+UniRef50_W7TJX9: Abc transporter-like protein	1.2062726176
+UniRef50_W7TJX9: Abc transporter-like protein|unclassified	1.2062726176
+UniRef50_H4G0C9	1.2061826959
+UniRef50_H4G0C9|unclassified	1.2061826959
+UniRef50_H9ZUC8	1.2060578719
+UniRef50_H9ZUC8|unclassified	1.2060578719
+UniRef50_Q0FRW1: Antisigma-factor antagonist (STAS) domain protein	1.2059575642
+UniRef50_Q0FRW1: Antisigma-factor antagonist (STAS) domain protein|unclassified	1.2059575642
+UniRef50_V8CG00	1.2057708684
+UniRef50_V8CG00|unclassified	1.2057708684
+UniRef50_UPI0004561ACC: hypothetical protein PFL1_03833	1.2055455093
+UniRef50_UPI0004561ACC: hypothetical protein PFL1_03833|unclassified	1.2055455093
+UniRef50_V7D525: Plasmid stablization protein ParB	1.2054678557
+UniRef50_V7D525: Plasmid stablization protein ParB|unclassified	1.2054678557
+UniRef50_UPI00047A451A: hypothetical protein	1.2054472443
+UniRef50_UPI00047A451A: hypothetical protein|unclassified	1.2054472443
+UniRef50_A6W2T3: 3-dehydroquinate synthase	1.2051290996
+UniRef50_A6W2T3: 3-dehydroquinate synthase|g__Neisseria.s__Neisseria_meningitidis	1.1467889908
+UniRef50_A6W2T3: 3-dehydroquinate synthase|unclassified	0.0583401087
+UniRef50_UPI0003193330: hypothetical protein	1.2050439066
+UniRef50_UPI0003193330: hypothetical protein|unclassified	1.2050439066
+UniRef50_UPI000306B7B0: hypothetical protein	1.2050072834
+UniRef50_UPI000306B7B0: hypothetical protein|unclassified	1.2050072834
+UniRef50_I7ZF55	1.2048206095
+UniRef50_I7ZF55|unclassified	1.2048206095
+UniRef50_A0A011QMX1	1.2048192771
+UniRef50_A0A011QMX1|unclassified	1.2048192771
+UniRef50_UPI00047D89EB: hypothetical protein	1.2047391950
+UniRef50_UPI00047D89EB: hypothetical protein|unclassified	1.2047391950
+UniRef50_W7IX12	1.2047333097
+UniRef50_W7IX12|unclassified	1.2047333097
+UniRef50_UPI00037ADDB6: hypothetical protein	1.2044525176
+UniRef50_UPI00037ADDB6: hypothetical protein|unclassified	1.2044525176
+UniRef50_B2VGJ3: Undecaprenyl-diphosphatase	1.2044484403
+UniRef50_B2VGJ3: Undecaprenyl-diphosphatase|unclassified	1.2044484403
+UniRef50_W4S1X0: Transcriptional regulator	1.2044467845
+UniRef50_W4S1X0: Transcriptional regulator|unclassified	1.2044467845
+UniRef50_Z3GHL3	1.2043550121
+UniRef50_Z3GHL3|unclassified	1.2043550121
+UniRef50_K1V4W8	1.2040881419
+UniRef50_K1V4W8|unclassified	1.2040881419
+UniRef50_U1HUC6	1.2039170582
+UniRef50_U1HUC6|unclassified	1.2039170582
+UniRef50_A6LSK3: Protein kinase	1.2038185210
+UniRef50_A6LSK3: Protein kinase|g__Clostridium.s__Clostridium_beijerinckii	1.2038185210
+UniRef50_A7HEZ4: Phospho-2-dehydro-3-deoxyheptonate aldolase	1.2033694344
+UniRef50_A7HEZ4: Phospho-2-dehydro-3-deoxyheptonate aldolase|g__Acinetobacter.s__Acinetobacter_baumannii	1.2033694344
+UniRef50_B2IN54: Transketolase, N-terminal subunit	1.2033694344
+UniRef50_B2IN54: Transketolase, N-terminal subunit|g__Streptococcus.s__Streptococcus_agalactiae	1.2033694344
+UniRef50_K0H8L8: Formimidoylglutamase	1.2033694344
+UniRef50_K0H8L8: Formimidoylglutamase|g__Acinetobacter.s__Acinetobacter_baumannii	1.2033694344
+UniRef50_M9VFS5	1.2033694344
+UniRef50_M9VFS5|g__Propionibacterium.s__Propionibacterium_acnes	1.2033694344
+UniRef50_UPI00036C2D34: hypothetical protein	1.2033664441
+UniRef50_UPI00036C2D34: hypothetical protein|unclassified	1.2033664441
+UniRef50_UPI00037D6752: hypothetical protein	1.2032689576
+UniRef50_UPI00037D6752: hypothetical protein|unclassified	1.2032689576
+UniRef50_T0SRU3: Uracil permease	1.2030356183
+UniRef50_T0SRU3: Uracil permease|unclassified	1.2030356183
+UniRef50_R4ZUW4: ABC transporter permease protein	1.2028611208
+UniRef50_R4ZUW4: ABC transporter permease protein|g__Streptococcus.s__Streptococcus_agalactiae	1.2028611208
+UniRef50_F3H779: ACT domain-containing protein (Fragment)	1.2027545024
+UniRef50_F3H779: ACT domain-containing protein (Fragment)|unclassified	1.2027545024
+UniRef50_X1BI40: Marine sediment metagenome DNA, contig: S01H4_S05924 (Fragment)	1.2027384151
+UniRef50_X1BI40: Marine sediment metagenome DNA, contig: S01H4_S05924 (Fragment)|unclassified	1.2027384151
+UniRef50_N0B0T7	1.2026912096
+UniRef50_N0B0T7|unclassified	1.2026912096
+UniRef50_A8LPP5: Fasciclin domain protein	1.2021733110
+UniRef50_A8LPP5: Fasciclin domain protein|unclassified	1.2021733110
+UniRef50_P0A0T2: Lactoylglutathione lyase	1.2021294411
+UniRef50_P0A0T2: Lactoylglutathione lyase|unclassified	1.2021294411
+UniRef50_A6LRU6	1.2019230769
+UniRef50_A6LRU6|g__Clostridium.s__Clostridium_beijerinckii	1.2019230769
+UniRef50_E1V4H9: ATP-dependent RNA helicase RhlB	1.2019230769
+UniRef50_E1V4H9: ATP-dependent RNA helicase RhlB|g__Acinetobacter.s__Acinetobacter_baumannii	1.2019230769
+UniRef50_E7C3T6: Glyceraldehyde-3-phosphate dehydrogenase/erythrose-4-phosphate dehydrogenase	1.2017848252
+UniRef50_E7C3T6: Glyceraldehyde-3-phosphate dehydrogenase/erythrose-4-phosphate dehydrogenase|unclassified	1.2017848252
+UniRef50_K0EZT9	1.2017589756
+UniRef50_K0EZT9|unclassified	1.2017589756
+UniRef50_A0A034SXR9	1.2013777919
+UniRef50_A0A034SXR9|unclassified	1.2013777919
+UniRef50_W1UVA8: Alpha-glycerophosphate oxidase (Fragment)	1.2012513973
+UniRef50_W1UVA8: Alpha-glycerophosphate oxidase (Fragment)|unclassified	1.2012513973
+UniRef50_G2M909	1.2012012012
+UniRef50_G2M909|g__Helicobacter.s__Helicobacter_pylori	1.2012012012
+UniRef50_A1B0K4	1.2007156146
+UniRef50_A1B0K4|unclassified	1.2007156146
+UniRef50_G5LT28: L-fuculose phosphate aldolase	1.2005795710
+UniRef50_G5LT28: L-fuculose phosphate aldolase|unclassified	1.2005795710
+UniRef50_F4UMA3: Glyceraldehyde-3-phosphate dehydrogenase C (GAPDH-C)	1.2004801921
+UniRef50_F4UMA3: Glyceraldehyde-3-phosphate dehydrogenase C (GAPDH-C)|g__Escherichia.s__Escherichia_coli	1.2004801921
+UniRef50_P58965: DNA polymerase IV	1.2004801921
+UniRef50_P58965: DNA polymerase IV|g__Clostridium.s__Clostridium_beijerinckii	1.2004801921
+UniRef50_S5CWD7: AraC-type DNA-binding domain-containing protein	1.2004801921
+UniRef50_S5CWD7: AraC-type DNA-binding domain-containing protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.2004801921
+UniRef50_U5MTT1: Transcriptional regulator, AraC family	1.2004801921
+UniRef50_U5MTT1: Transcriptional regulator, AraC family|g__Clostridium.s__Clostridium_beijerinckii	1.2004801921
+UniRef50_W1FNF8	1.2004801921
+UniRef50_W1FNF8|unclassified	1.2004801921
+UniRef50_UPI000197AB06: hypothetical protein, partial	1.2002833079
+UniRef50_UPI000197AB06: hypothetical protein, partial|unclassified	1.2002833079
+UniRef50_UPI0004736CBD: membrane protein, partial	1.2002430215
+UniRef50_UPI0004736CBD: membrane protein, partial|unclassified	1.2002430215
+UniRef50_UPI00036D7DD4: hypothetical protein	1.2002355665
+UniRef50_UPI00036D7DD4: hypothetical protein|unclassified	1.2002355665
+UniRef50_S6UP31: Sarcosine oxidase, beta subunit (Fragment)	1.2000718026
+UniRef50_S6UP31: Sarcosine oxidase, beta subunit (Fragment)|unclassified	1.2000718026
+UniRef50_E7PVD7: Transposase	1.1999338392
+UniRef50_E7PVD7: Transposase|unclassified	1.1999338392
+UniRef50_F3U4R8	1.1997669559
+UniRef50_F3U4R8|unclassified	0.6013229104
+UniRef50_F3U4R8|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.5984440455
+UniRef50_F3ZB33: Putative ABC transporter substrate-binding protein	1.1997298124
+UniRef50_F3ZB33: Putative ABC transporter substrate-binding protein|unclassified	1.1997298124
+UniRef50_UPI00036ED55B: hypothetical protein	1.1997153089
+UniRef50_UPI00036ED55B: hypothetical protein|unclassified	1.1997153089
+UniRef50_N6UWT4	1.1996763695
+UniRef50_N6UWT4|unclassified	1.1996763695
+UniRef50_C7DAC2: ISSpo9, transposase	1.1996536082
+UniRef50_C7DAC2: ISSpo9, transposase|unclassified	1.1996536082
+UniRef50_Q2K419: Probable spermidine/putrescine ABC transporter, permease protein	1.1995245775
+UniRef50_Q2K419: Probable spermidine/putrescine ABC transporter, permease protein|unclassified	1.1995245775
+UniRef50_G9ZEP9	1.1993174485
+UniRef50_G9ZEP9|unclassified	1.1993174485
+UniRef50_D8MB86: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_9	1.1991462418
+UniRef50_D8MB86: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_9|unclassified	1.1991462418
+UniRef50_UPI0003758451: AsnC family transcriptional regulator	1.1990594175
+UniRef50_UPI0003758451: AsnC family transcriptional regulator|unclassified	1.1990594175
+UniRef50_A9ANH6: Transcriptional regulator, AraC family	1.1990407674
+UniRef50_A9ANH6: Transcriptional regulator, AraC family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1990407674
+UniRef50_A9M4D7: Lipoprotein	1.1990407674
+UniRef50_A9M4D7: Lipoprotein|g__Neisseria.s__Neisseria_meningitidis	1.1990407674
+UniRef50_B2TRM3: NAD kinase	1.1990407674
+UniRef50_B2TRM3: NAD kinase|g__Clostridium.s__Clostridium_beijerinckii	1.1990407674
+UniRef50_UPI000467D52F: hypothetical protein	1.1990255179
+UniRef50_UPI000467D52F: hypothetical protein|unclassified	1.1990255179
+UniRef50_Q0FEL8	1.1990040644
+UniRef50_Q0FEL8|unclassified	1.1990040644
+UniRef50_H1LKH2	1.1989101390
+UniRef50_H1LKH2|unclassified	1.1989101390
+UniRef50_UPI0003C7ED51: hypothetical protein	1.1988599095
+UniRef50_UPI0003C7ED51: hypothetical protein|unclassified	1.1988599095
+UniRef50_M9RA28	1.1985944890
+UniRef50_M9RA28|unclassified	1.1985944890
+UniRef50_Z9GRJ4	1.1985623334
+UniRef50_Z9GRJ4|unclassified	1.1985623334
+UniRef50_S4RE69	1.1983092609
+UniRef50_S4RE69|unclassified	1.1983092609
+UniRef50_Y5PHC1	1.1981898665
+UniRef50_Y5PHC1|unclassified	1.1981898665
+UniRef50_Q9JZK3	1.1981602052
+UniRef50_Q9JZK3|unclassified	1.1981602052
+UniRef50_UPI000467C74C: hypothetical protein, partial	1.1981360773
+UniRef50_UPI000467C74C: hypothetical protein, partial|unclassified	1.1981360773
+UniRef50_UPI00046A5013: hypothetical protein	1.1980505769
+UniRef50_UPI00046A5013: hypothetical protein|unclassified	1.1980505769
+UniRef50_X7VDI6: Putative beta-lactamase	1.1976392474
+UniRef50_X7VDI6: Putative beta-lactamase|unclassified	1.1976392474
+UniRef50_A1BAK9: Cell division protein FtsQ	1.1976047904
+UniRef50_A1BAK9: Cell division protein FtsQ|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1976047904
+UniRef50_A3PRM1: 6-phosphogluconate dehydrogenase, NAD-binding	1.1976047904
+UniRef50_A3PRM1: 6-phosphogluconate dehydrogenase, NAD-binding|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1976047904
+UniRef50_B2SBZ3: Dihydrodipicolinate synthetase	1.1976047904
+UniRef50_B2SBZ3: Dihydrodipicolinate synthetase|g__Acinetobacter.s__Acinetobacter_baumannii	1.1976047904
+UniRef50_F0RNS6	1.1976047904
+UniRef50_F0RNS6|g__Deinococcus.s__Deinococcus_radiodurans	1.1976047904
+UniRef50_M4RCM3: Transcriptional regulator, LysR family	1.1976047904
+UniRef50_M4RCM3: Transcriptional regulator, LysR family|g__Acinetobacter.s__Acinetobacter_baumannii	1.1976047904
+UniRef50_R7IGE7: Cyclodextrin ABC transporter permease protein	1.1976047904
+UniRef50_R7IGE7: Cyclodextrin ABC transporter permease protein|g__Streptococcus.s__Streptococcus_agalactiae	1.1976047904
+UniRef50_UPI00045DDAF0	1.1976047904
+UniRef50_UPI00045DDAF0|unclassified	1.1976047904
+UniRef50_S9RXU2: Putative membrane protein	1.1975662768
+UniRef50_S9RXU2: Putative membrane protein|unclassified	1.1975662768
+UniRef50_A3ML41: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha	1.1974299836
+UniRef50_A3ML41: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|unclassified	1.1974299836
+UniRef50_Q1QVP5: Phosphoribosylformylglycinamidine cyclo-ligase	1.1973275945
+UniRef50_Q1QVP5: Phosphoribosylformylglycinamidine cyclo-ligase|g__Escherichia.s__Escherichia_coli	1.1507479862
+UniRef50_Q1QVP5: Phosphoribosylformylglycinamidine cyclo-ligase|unclassified	0.0465796084
+UniRef50_A0A017HEB0: MORN repeat protein	1.1968925390
+UniRef50_A0A017HEB0: MORN repeat protein|unclassified	1.1968925390
+UniRef50_Q44653: 30S ribosomal protein S1	1.1968880910
+UniRef50_Q44653: 30S ribosomal protein S1|g__Acinetobacter.s__Acinetobacter_baumannii	1.1968880910
+UniRef50_A8TR78	1.1966816637
+UniRef50_A8TR78|unclassified	1.1966816637
+UniRef50_E4BLL0	1.1966354648
+UniRef50_E4BLL0|unclassified	1.1966354648
+UniRef50_K9VLK6	1.1966115882
+UniRef50_K9VLK6|unclassified	1.1966115882
+UniRef50_UPI0003779E57: hypothetical protein, partial	1.1965026029
+UniRef50_UPI0003779E57: hypothetical protein, partial|unclassified	1.1965026029
+UniRef50_B7V8M2	1.1964275379
+UniRef50_B7V8M2|unclassified	1.1964275379
+UniRef50_Q1MCQ8: Putative 3-methyladenine DNA glycosylase	1.1963101693
+UniRef50_Q1MCQ8: Putative 3-methyladenine DNA glycosylase|unclassified	1.1963101693
+UniRef50_R7MVM8: Terminase small subunit family protein	1.1961879934
+UniRef50_R7MVM8: Terminase small subunit family protein|unclassified	1.1961879934
+UniRef50_K1ZPK1	1.1961722488
+UniRef50_K1ZPK1|unclassified	1.1961722488
+UniRef50_P52667: HTH-type transcriptional regulator EstR	1.1961722488
+UniRef50_P52667: HTH-type transcriptional regulator EstR|g__Acinetobacter.s__Acinetobacter_baumannii	1.1961722488
+UniRef50_UPI000350034D: PREDICTED: ral guanine nucleotide dissociation stimulator-like	1.1961722488
+UniRef50_UPI000350034D: PREDICTED: ral guanine nucleotide dissociation stimulator-like|unclassified	1.1961722488
+UniRef50_W0YN60: Sulfite reductase	1.1961722488
+UniRef50_W0YN60: Sulfite reductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1961722488
+UniRef50_UPI000381EFAF: hypothetical protein, partial	1.1961332869
+UniRef50_UPI000381EFAF: hypothetical protein, partial|unclassified	1.1961332869
+UniRef50_UPI0004072420: hypothetical protein	1.1961011794
+UniRef50_UPI0004072420: hypothetical protein|unclassified	1.1961011794
+UniRef50_P64305: Non-canonical purine NTP pyrophosphatase	1.1956555816
+UniRef50_P64305: Non-canonical purine NTP pyrophosphatase|unclassified	1.1956555816
+UniRef50_Q9I262: Carbonic anhydrase	1.1953506386
+UniRef50_Q9I262: Carbonic anhydrase|unclassified	1.1953506386
+UniRef50_UPI00037E8A8D: hypothetical protein	1.1951639638
+UniRef50_UPI00037E8A8D: hypothetical protein|unclassified	1.1951639638
+UniRef50_H8XBT6: Recombinase A (Fragment)	1.1951140745
+UniRef50_H8XBT6: Recombinase A (Fragment)|unclassified	1.1951140745
+UniRef50_C6S4V7: Transcriptional regulator, AraC family	1.1947431302
+UniRef50_C6S4V7: Transcriptional regulator, AraC family|g__Neisseria.s__Neisseria_meningitidis	1.1947431302
+UniRef50_E5ASY5: DNA polymerase III subunit beta	1.1947431302
+UniRef50_E5ASY5: DNA polymerase III subunit beta|g__Neisseria.s__Neisseria_meningitidis	1.1947431302
+UniRef50_F6FQD2: Nicotinate phosphoribosyltransferase	1.1947431302
+UniRef50_F6FQD2: Nicotinate phosphoribosyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	1.1947431302
+UniRef50_R9M2F8	1.1945705721
+UniRef50_R9M2F8|unclassified	1.1945705721
+UniRef50_G3WFN8	1.1945097941
+UniRef50_G3WFN8|unclassified	1.1945097941
+UniRef50_A0A014I7A1: Pyridine nucleotide-disulfide oxidoreductase family protein	1.1944427613
+UniRef50_A0A014I7A1: Pyridine nucleotide-disulfide oxidoreductase family protein|unclassified	1.1944427613
+UniRef50_X1PSS7: Marine sediment metagenome DNA, contig: S12H4_C01356 (Fragment)	1.1941911143
+UniRef50_X1PSS7: Marine sediment metagenome DNA, contig: S12H4_C01356 (Fragment)|unclassified	1.1941911143
+UniRef50_I4TGS1: Putative transport protein	1.1941347024
+UniRef50_I4TGS1: Putative transport protein|unclassified	1.1941347024
+UniRef50_J3N4D6	1.1938945500
+UniRef50_J3N4D6|unclassified	1.1938945500
+UniRef50_K7STS9	1.1938795742
+UniRef50_K7STS9|unclassified	1.1938795742
+UniRef50_K8CLY9: CRISPR-associated helicase Cas3, protein	1.1937803852
+UniRef50_K8CLY9: CRISPR-associated helicase Cas3, protein|unclassified	1.1937803852
+UniRef50_UPI00037AE9F9: hypothetical protein, partial	1.1937652720
+UniRef50_UPI00037AE9F9: hypothetical protein, partial|unclassified	1.1937652720
+UniRef50_T0TFS6: ATP-dependent nuclease, subunit B	1.1935917523
+UniRef50_T0TFS6: ATP-dependent nuclease, subunit B|unclassified	1.1935917523
+UniRef50_UPI00046502C8: hypothetical protein	1.1935578716
+UniRef50_UPI00046502C8: hypothetical protein|unclassified	1.1935578716
+UniRef50_UPI0003C90F67: PREDICTED: homeobox protein Hox-A10b-like	1.1935383401
+UniRef50_UPI0003C90F67: PREDICTED: homeobox protein Hox-A10b-like|unclassified	1.1935383401
+UniRef50_UPI00040078F0: hypothetical protein	1.1934659422
+UniRef50_UPI00040078F0: hypothetical protein|unclassified	1.1934659422
+UniRef50_G8LF16	1.1934221032
+UniRef50_G8LF16|unclassified	1.1934221032
+UniRef50_B0T8H5: S-adenosylmethionine:tRNA ribosyltransferase-isomerase	1.1933174224
+UniRef50_B0T8H5: S-adenosylmethionine:tRNA ribosyltransferase-isomerase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1933174224
+UniRef50_G8VBC3: Binding-protein-dependent transport system inner membrane component	1.1933174224
+UniRef50_G8VBC3: Binding-protein-dependent transport system inner membrane component|g__Propionibacterium.s__Propionibacterium_acnes	1.1933174224
+UniRef50_Q032R3: 1,4-dihydroxy-2-naphthoate octaprenyltransferase	1.1933174224
+UniRef50_Q032R3: 1,4-dihydroxy-2-naphthoate octaprenyltransferase|g__Streptococcus.s__Streptococcus_agalactiae	1.1933174224
+UniRef50_S4YWC9: Iron ABC transporter permease	1.1933174224
+UniRef50_S4YWC9: Iron ABC transporter permease|g__Neisseria.s__Neisseria_meningitidis	1.1933174224
+UniRef50_UPI00016C6230: ABC transporter ATP-binding protein	1.1932881025
+UniRef50_UPI00016C6230: ABC transporter ATP-binding protein|unclassified	1.1932881025
+UniRef50_UPI0003B39740: 50S ribosomal protein L5	1.1932352724
+UniRef50_UPI0003B39740: 50S ribosomal protein L5|unclassified	1.1932352724
+UniRef50_UPI000379B86A: DNA glycosylase	1.1931997284
+UniRef50_UPI000379B86A: DNA glycosylase|unclassified	1.1931997284
+UniRef50_UPI0003801FCB: hypothetical protein	1.1931988540
+UniRef50_UPI0003801FCB: hypothetical protein|unclassified	1.1931988540
+UniRef50_X1DD44: Marine sediment metagenome DNA, contig: S01H4_S07142	1.1931417131
+UniRef50_X1DD44: Marine sediment metagenome DNA, contig: S01H4_S07142|unclassified	1.1931417131
+UniRef50_Q8NV28	1.1930173776
+UniRef50_Q8NV28|unclassified	1.1930173776
+UniRef50_P33111	1.1929315510
+UniRef50_P33111|unclassified	1.1929315510
+UniRef50_UPI00041086C0: hypothetical protein	1.1928015843
+UniRef50_UPI00041086C0: hypothetical protein|unclassified	1.1928015843
+UniRef50_F0KF14: Acyl-CoA dehydrogenase	1.1925534808
+UniRef50_F0KF14: Acyl-CoA dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.1925534808
+UniRef50_Q0FIJ7	1.1925411170
+UniRef50_Q0FIJ7|unclassified	1.1925411170
+UniRef50_J7Q7C0: PRC-barrel domain protein	1.1924600340
+UniRef50_J7Q7C0: PRC-barrel domain protein|unclassified	1.1924600340
+UniRef50_N6UA20	1.1922050389
+UniRef50_N6UA20|unclassified	1.1922050389
+UniRef50_UPI00037024DD: hypothetical protein	1.1921263486
+UniRef50_UPI00037024DD: hypothetical protein|unclassified	1.1921263486
+UniRef50_C2RC93	1.1918951132
+UniRef50_C2RC93|unclassified	1.1918951132
+UniRef50_D7CX06: Lysine biosynthesis enzyme LysX	1.1918951132
+UniRef50_D7CX06: Lysine biosynthesis enzyme LysX|g__Deinococcus.s__Deinococcus_radiodurans	1.1918951132
+UniRef50_P0DA52: DegV domain-containing protein SpyM3_0586	1.1918951132
+UniRef50_P0DA52: DegV domain-containing protein SpyM3_0586|g__Streptococcus.s__Streptococcus_agalactiae	1.1918951132
+UniRef50_Q6F9V8: Pseudouridine synthase	1.1918951132
+UniRef50_Q6F9V8: Pseudouridine synthase|g__Acinetobacter.s__Acinetobacter_baumannii	1.1918951132
+UniRef50_S5CRD4: Integrase	1.1918951132
+UniRef50_S5CRD4: Integrase|g__Acinetobacter.s__Acinetobacter_baumannii	1.1918951132
+UniRef50_U5MMM3: D-galactose-binding periplasmic protein MglB	1.1918951132
+UniRef50_U5MMM3: D-galactose-binding periplasmic protein MglB|g__Clostridium.s__Clostridium_beijerinckii	1.1918951132
+UniRef50_Q6L178: Probable transaldolase	1.1918539288
+UniRef50_Q6L178: Probable transaldolase|unclassified	1.1918539288
+UniRef50_D2NR34: ATPase with chaperone activity, ATP-binding subunit	1.1918176338
+UniRef50_D2NR34: ATPase with chaperone activity, ATP-binding subunit|g__Propionibacterium.s__Propionibacterium_acnes	1.1918176338
+UniRef50_UPI0003B4CFA2: organic solvent ABC transporter ATP-binding protein	1.1916817665
+UniRef50_UPI0003B4CFA2: organic solvent ABC transporter ATP-binding protein|unclassified	1.1916817665
+UniRef50_E6MV16: Putative lipoprotein	1.1915265074
+UniRef50_E6MV16: Putative lipoprotein|unclassified	1.1915265074
+UniRef50_Q2YWN9	1.1914943979
+UniRef50_Q2YWN9|unclassified	1.1914943979
+UniRef50_C1DH36	1.1914817075
+UniRef50_C1DH36|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1914817075
+UniRef50_T0Y4D7: Membrane translocator (Fragment)	1.1913125847
+UniRef50_T0Y4D7: Membrane translocator (Fragment)|unclassified	1.1913125847
+UniRef50_K2NRJ7	1.1912649699
+UniRef50_K2NRJ7|unclassified	1.1912649699
+UniRef50_X5PU41	1.1912277935
+UniRef50_X5PU41|unclassified	1.1912277935
+UniRef50_Q55089: Beta-lactamase (Fragment)	1.1909912237
+UniRef50_Q55089: Beta-lactamase (Fragment)|unclassified	1.1909912237
+UniRef50_G2RNK8: Lipoprotein	1.1908633054
+UniRef50_G2RNK8: Lipoprotein|unclassified	1.1908633054
+UniRef50_J1SDL3	1.1908351303
+UniRef50_J1SDL3|unclassified	1.1908351303
+UniRef50_Q3STU9	1.1907980917
+UniRef50_Q3STU9|unclassified	1.1907980917
+UniRef50_UPI00041AE3FA: LuxR family transcriptional regulator	1.1905446784
+UniRef50_UPI00041AE3FA: LuxR family transcriptional regulator|unclassified	1.1905446784
+UniRef50_D8JMF6	1.1904761905
+UniRef50_D8JMF6|g__Acinetobacter.s__Acinetobacter_baumannii	1.1904761905
+UniRef50_E4ZDR8	1.1904761905
+UniRef50_E4ZDR8|g__Neisseria.s__Neisseria_meningitidis	1.1904761905
+UniRef50_M5CTB6	1.1904761905
+UniRef50_M5CTB6|unclassified	1.1904761905
+UniRef50_Q9RXT7	1.1904761905
+UniRef50_Q9RXT7|g__Deinococcus.s__Deinococcus_radiodurans	1.1904761905
+UniRef50_T8SMP8: Protein rhsB (Fragment)	1.1904761905
+UniRef50_T8SMP8: Protein rhsB (Fragment)|g__Escherichia.s__Escherichia_coli	1.1904761905
+UniRef50_UPI00017449C1: permease YjgP/YjgQ family protein	1.1904761905
+UniRef50_UPI00017449C1: permease YjgP/YjgQ family protein|unclassified	1.1904761905
+UniRef50_UPI0004761FFC: CbbX, partial	1.1904183830
+UniRef50_UPI0004761FFC: CbbX, partial|unclassified	1.1904183830
+UniRef50_H4FTF6: Shikimate/quinate 5-dehydrogenase (Fragment)	1.1903777052
+UniRef50_H4FTF6: Shikimate/quinate 5-dehydrogenase (Fragment)|unclassified	1.1903777052
+UniRef50_UPI000369064E: hypothetical protein	1.1902137058
+UniRef50_UPI000369064E: hypothetical protein|unclassified	1.1902137058
+UniRef50_E8NHK4: WGS CADB00000000 data, contig 51 (Fragment)	1.1901670052
+UniRef50_E8NHK4: WGS CADB00000000 data, contig 51 (Fragment)|unclassified	1.1901670052
+UniRef50_F4FN28	1.1899929316
+UniRef50_F4FN28|unclassified	1.1899929316
+UniRef50_UPI00041A8363: LamB/YcsF family protein	1.1899702124
+UniRef50_UPI00041A8363: LamB/YcsF family protein|unclassified	1.1899702124
+UniRef50_UPI00047529B6: XRE family transcriptional regulator	1.1897551214
+UniRef50_UPI00047529B6: XRE family transcriptional regulator|unclassified	1.1897551214
+UniRef50_W1BNQ2: Xanthine and CO dehydrogenases maturation factor,XdhC/CoxF family / Selenium-dependent molybdenum hydroxylase system protein YqeB	1.1897545764
+UniRef50_W1BNQ2: Xanthine and CO dehydrogenases maturation factor,XdhC/CoxF family / Selenium-dependent molybdenum hydroxylase system protein YqeB|unclassified	1.1897545764
+UniRef50_C4XDW5	1.1896840160
+UniRef50_C4XDW5|unclassified	1.1896840160
+UniRef50_S5XUW1	1.1892528586
+UniRef50_S5XUW1|unclassified	1.1892528586
+UniRef50_UPI00046CC1E2: hypothetical protein	1.1892221018
+UniRef50_UPI00046CC1E2: hypothetical protein|unclassified	1.1892221018
+UniRef50_A6LZ11: Transcriptional regulator, LysR family	1.1890606421
+UniRef50_A6LZ11: Transcriptional regulator, LysR family|g__Clostridium.s__Clostridium_beijerinckii	1.1890606421
+UniRef50_C3KT41: D-isomer specific 2-hydroxyacid dehydrogenase family protein	1.1890606421
+UniRef50_C3KT41: D-isomer specific 2-hydroxyacid dehydrogenase family protein|g__Clostridium.s__Clostridium_beijerinckii	1.1890606421
+UniRef50_E8W5Y1	1.1890606421
+UniRef50_E8W5Y1|unclassified	1.1890606421
+UniRef50_Q897T7: Transcriptional regulatory protein	1.1890606421
+UniRef50_Q897T7: Transcriptional regulatory protein|g__Clostridium.s__Clostridium_beijerinckii	1.1890606421
+UniRef50_R9Z908: Allophanate hydrolase	1.1890606421
+UniRef50_R9Z908: Allophanate hydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1890606421
+UniRef50_Q3JV80	1.1887977432
+UniRef50_Q3JV80|unclassified	1.1887977432
+UniRef50_X7F4V9	1.1887871796
+UniRef50_X7F4V9|unclassified	1.1887871796
+UniRef50_U5DJ34	1.1887676871
+UniRef50_U5DJ34|unclassified	1.1887676871
+UniRef50_F5Y613	1.1886109588
+UniRef50_F5Y613|unclassified	1.1886109588
+UniRef50_K2BDI8: Drug resistance transporter, Bcr/CflA subfamily	1.1885880489
+UniRef50_K2BDI8: Drug resistance transporter, Bcr/CflA subfamily|unclassified	1.1885880489
+UniRef50_UPI000377F9D8: hypothetical protein	1.1885171788
+UniRef50_UPI000377F9D8: hypothetical protein|unclassified	1.1885171788
+UniRef50_K3YBW9	1.1883186190
+UniRef50_K3YBW9|unclassified	1.1883186190
+UniRef50_R9SLG6	1.1882446904
+UniRef50_R9SLG6|unclassified	1.1882446904
+UniRef50_S3PMV5	1.1881808717
+UniRef50_S3PMV5|unclassified	1.1881808717
+UniRef50_A6LYQ3	1.1876484561
+UniRef50_A6LYQ3|g__Clostridium.s__Clostridium_beijerinckii	1.1876484561
+UniRef50_E3QR76	1.1876484561
+UniRef50_E3QR76|unclassified	1.1876484561
+UniRef50_N9ANA5	1.1876484561
+UniRef50_N9ANA5|g__Acinetobacter.s__Acinetobacter_baumannii	1.1876484561
+UniRef50_Q9RXD2: S-layer-like array-related protein	1.1876484561
+UniRef50_Q9RXD2: S-layer-like array-related protein|g__Deinococcus.s__Deinococcus_radiodurans	1.1876484561
+UniRef50_R5FWD3: Ribokinase family Sugar kinase	1.1876484561
+UniRef50_R5FWD3: Ribokinase family Sugar kinase|g__Clostridium.s__Clostridium_beijerinckii	1.1876484561
+UniRef50_F0Y5J9: Expressed protein (Fragment)	1.1876002741
+UniRef50_F0Y5J9: Expressed protein (Fragment)|unclassified	1.1876002741
+UniRef50_P39629: Glucose-1-phosphate thymidylyltransferase	1.1875448089
+UniRef50_P39629: Glucose-1-phosphate thymidylyltransferase|unclassified	1.1875448089
+UniRef50_Q8P0D6	1.1875198814
+UniRef50_Q8P0D6|unclassified	1.1875198814
+UniRef50_UPI0003713513: hypothetical protein	1.1874091312
+UniRef50_UPI0003713513: hypothetical protein|unclassified	1.1874091312
+UniRef50_B0A2M2: Oxidoreductase domain protein	1.1872501188
+UniRef50_B0A2M2: Oxidoreductase domain protein|unclassified	1.1872501188
+UniRef50_UPI000411B532: hypothetical protein	1.1871173809
+UniRef50_UPI000411B532: hypothetical protein|unclassified	1.1871173809
+UniRef50_A0A059IS74: Sulfite reductase	1.1870573857
+UniRef50_A0A059IS74: Sulfite reductase|unclassified	1.1870573857
+UniRef50_UPI00047564FA: hypothetical protein	1.1867870334
+UniRef50_UPI00047564FA: hypothetical protein|unclassified	1.1867870334
+UniRef50_UPI000467A67B: hydrolase	1.1865235883
+UniRef50_UPI000467A67B: hydrolase|unclassified	1.1865235883
+UniRef50_UPI000463F0EE: hypothetical protein	1.1865181151
+UniRef50_UPI000463F0EE: hypothetical protein|unclassified	1.1865181151
+UniRef50_B9KX84	1.1864890690
+UniRef50_B9KX84|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.0649627263
+UniRef50_B9KX84|unclassified	0.1215263427
+UniRef50_R1FJP7	1.1864169509
+UniRef50_R1FJP7|unclassified	1.1864169509
+UniRef50_Q1J9N5: Para-aminobenzoate synthetase component I / 4-amino-4-deoxychorismate lyase	1.1863748438
+UniRef50_Q1J9N5: Para-aminobenzoate synthetase component I / 4-amino-4-deoxychorismate lyase|g__Streptococcus.s__Streptococcus_agalactiae	1.1863748438
+UniRef50_A0KCX4: Carbohydrate ABC transporter membrane protein 2, CUT1 family	1.1862396204
+UniRef50_A0KCX4: Carbohydrate ABC transporter membrane protein 2, CUT1 family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1862396204
+UniRef50_B9K203	1.1862396204
+UniRef50_B9K203|g__Acinetobacter.s__Acinetobacter_baumannii	1.1862396204
+UniRef50_F4D676: P-type DNA transfer ATPase VirB11	1.1862396204
+UniRef50_F4D676: P-type DNA transfer ATPase VirB11|g__Helicobacter.s__Helicobacter_pylori	1.1862396204
+UniRef50_M2QRG7	1.1862396204
+UniRef50_M2QRG7|unclassified	1.1862396204
+UniRef50_UPI0001816FFE: transposase	1.1858728997
+UniRef50_UPI0001816FFE: transposase|unclassified	1.1858728997
+UniRef50_S5XQ53	1.1856907004
+UniRef50_S5XQ53|unclassified	1.1856907004
+UniRef50_UPI0004731D12: transcriptional repressor NrdR, partial	1.1852523830
+UniRef50_UPI0004731D12: transcriptional repressor NrdR, partial|unclassified	1.1852523830
+UniRef50_B9TGF6	1.1851468986
+UniRef50_B9TGF6|unclassified	1.1851468986
+UniRef50_A0A017Y8T0	1.1850872643
+UniRef50_A0A017Y8T0|unclassified	1.1850872643
+UniRef50_Q9PMA7: NADH-quinone oxidoreductase subunit L	1.1850268700
+UniRef50_Q9PMA7: NADH-quinone oxidoreductase subunit L|g__Helicobacter.s__Helicobacter_pylori	1.1850268700
+UniRef50_A6M168: Diguanylate cyclase	1.1848341232
+UniRef50_A6M168: Diguanylate cyclase|g__Clostridium.s__Clostridium_beijerinckii	1.1848341232
+UniRef50_K8EKX2: DNA-3-methylpurine glycosylase	1.1848341232
+UniRef50_K8EKX2: DNA-3-methylpurine glycosylase|g__Clostridium.s__Clostridium_beijerinckii	1.1848341232
+UniRef50_R9ZNA1	1.1848341232
+UniRef50_R9ZNA1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1848341232
+UniRef50_R9ZNL7: ABC transporter substrate-binding protein	1.1848341232
+UniRef50_R9ZNL7: ABC transporter substrate-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1848341232
+UniRef50_UPI000469BF9F: hypothetical protein	1.1848341232
+UniRef50_UPI000469BF9F: hypothetical protein|unclassified	1.1848341232
+UniRef50_H0JDF1	1.1847759741
+UniRef50_H0JDF1|unclassified	1.1847759741
+UniRef50_F0E3A3	1.1847442127
+UniRef50_F0E3A3|unclassified	1.1847442127
+UniRef50_UPI000463B80A: universal stress protein UspA	1.1845708983
+UniRef50_UPI000463B80A: universal stress protein UspA|unclassified	1.1845708983
+UniRef50_H3WX52: HTH domain protein (Fragment)	1.1844119683
+UniRef50_H3WX52: HTH domain protein (Fragment)|unclassified	1.1844119683
+UniRef50_UPI00047567F7: luciferase	1.1841084313
+UniRef50_UPI00047567F7: luciferase|unclassified	1.1841084313
+UniRef50_Q3JNW3	1.1839150950
+UniRef50_Q3JNW3|unclassified	1.1839150950
+UniRef50_H0FTY9	1.1836511229
+UniRef50_H0FTY9|unclassified	1.1836511229
+UniRef50_UPI0004412018: hypothetical protein AURDEDRAFT_155735	1.1836507820
+UniRef50_UPI0004412018: hypothetical protein AURDEDRAFT_155735|unclassified	1.1836507820
+UniRef50_UPI0002DEC12E: hypothetical protein	1.1835935235
+UniRef50_UPI0002DEC12E: hypothetical protein|unclassified	1.1835935235
+UniRef50_A0A059LCY3	1.1834319527
+UniRef50_A0A059LCY3|unclassified	1.1834319527
+UniRef50_C0PBW7	1.1834319527
+UniRef50_C0PBW7|unclassified	1.1834319527
+UniRef50_G7M3S8: Dihydropyrimidinase	1.1834319527
+UniRef50_G7M3S8: Dihydropyrimidinase|g__Clostridium.s__Clostridium_beijerinckii	1.1834319527
+UniRef50_H0PZQ7	1.1834319527
+UniRef50_H0PZQ7|unclassified	1.1834319527
+UniRef50_Q9RSQ3: Phosphoglucosamine mutase	1.1834319527
+UniRef50_Q9RSQ3: Phosphoglucosamine mutase|g__Deinococcus.s__Deinococcus_radiodurans	1.1834319527
+UniRef50_W0X4S5	1.1834319527
+UniRef50_W0X4S5|unclassified	1.1834319527
+UniRef50_UPI000468C3E9: hypothetical protein	1.1832521748
+UniRef50_UPI000468C3E9: hypothetical protein|unclassified	1.1832521748
+UniRef50_UPI0003FF28F4: ABC transporter permease	1.1832173329
+UniRef50_UPI0003FF28F4: ABC transporter permease|unclassified	1.1832173329
+UniRef50_N8EGX0	1.1832088687
+UniRef50_N8EGX0|unclassified	1.1832088687
+UniRef50_C1FNK7: 3-oxoacyl-[acyl-carrier-protein] synthase 3	1.1832014379
+UniRef50_C1FNK7: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	1.1832014379
+UniRef50_K3HRE2	1.1824322116
+UniRef50_K3HRE2|unclassified	1.1824322116
+UniRef50_UPI000464472F: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase	1.1824147304
+UniRef50_UPI000464472F: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase|unclassified	1.1824147304
+UniRef50_A0A010IHG0: Thiamine pyrophosphate enzyme, C-terminal TPP binding domain protein	1.1823050078
+UniRef50_A0A010IHG0: Thiamine pyrophosphate enzyme, C-terminal TPP binding domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.1823050078
+UniRef50_Q3JNS9	1.1822454777
+UniRef50_Q3JNS9|unclassified	1.1822454777
+UniRef50_Q1GE41	1.1821772212
+UniRef50_Q1GE41|unclassified	1.1821772212
+UniRef50_Q3IYT0: ABC protein exporter, fused ATPase and inner membrane subunits	1.1820665415
+UniRef50_Q3IYT0: ABC protein exporter, fused ATPase and inner membrane subunits|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1820665415
+UniRef50_C4RK38: Polyketide synthase	1.1820330969
+UniRef50_C4RK38: Polyketide synthase|unclassified	1.1820330969
+UniRef50_E6MYF0: Bacterial lipid A biosynthesis acyltransferase family protein	1.1820330969
+UniRef50_E6MYF0: Bacterial lipid A biosynthesis acyltransferase family protein|g__Neisseria.s__Neisseria_meningitidis	1.1820330969
+UniRef50_I6X2N5	1.1820330969
+UniRef50_I6X2N5|g__Propionibacterium.s__Propionibacterium_acnes	1.1820330969
+UniRef50_UPI0003902576: ATP synthase gamma chain	1.1820330969
+UniRef50_UPI0003902576: ATP synthase gamma chain|unclassified	1.1820330969
+UniRef50_X5KET0: ABC transporter efflux protein, DrrB family,putative	1.1820330969
+UniRef50_X5KET0: ABC transporter efflux protein, DrrB family,putative|g__Streptococcus.s__Streptococcus_agalactiae	1.1820330969
+UniRef50_P9WG25: Transketolase	1.1819828895
+UniRef50_P9WG25: Transketolase|g__Propionibacterium.s__Propionibacterium_acnes	1.1566202646
+UniRef50_P9WG25: Transketolase|unclassified	0.0253626249
+UniRef50_A6VEU1	1.1817859060
+UniRef50_A6VEU1|unclassified	1.1817859060
+UniRef50_UPI0003C7BC0C: hypothetical protein, partial	1.1816161150
+UniRef50_UPI0003C7BC0C: hypothetical protein, partial|unclassified	1.1816161150
+UniRef50_Q6YXQ7: Light-independent protochlorophyllide reductase iron-sulfur ATP-binding protein	1.1816060386
+UniRef50_Q6YXQ7: Light-independent protochlorophyllide reductase iron-sulfur ATP-binding protein|unclassified	1.1816060386
+UniRef50_UPI00035C5894: hypothetical protein	1.1813812784
+UniRef50_UPI00035C5894: hypothetical protein|unclassified	1.1813812784
+UniRef50_Q2W200: Hypothetical 217 kDa protein Y4HQ	1.1813106338
+UniRef50_Q2W200: Hypothetical 217 kDa protein Y4HQ|unclassified	1.1813106338
+UniRef50_M3IFV7	1.1812687167
+UniRef50_M3IFV7|unclassified	1.1812687167
+UniRef50_X2MXQ1	1.1812652531
+UniRef50_X2MXQ1|unclassified	1.1812652531
+UniRef50_W1MQA6	1.1812570599
+UniRef50_W1MQA6|unclassified	1.1812570599
+UniRef50_R1DCP1	1.1811846638
+UniRef50_R1DCP1|unclassified	1.1811846638
+UniRef50_N2S4P4: Putative pKHD-type hydroxylase	1.1811138468
+UniRef50_N2S4P4: Putative pKHD-type hydroxylase|unclassified	1.1811138468
+UniRef50_UPI00035C9FC2: GntR family transcriptional regulator	1.1810255937
+UniRef50_UPI00035C9FC2: GntR family transcriptional regulator|unclassified	1.1810255937
+UniRef50_UPI000426EB18: hypothetical protein	1.1809122904
+UniRef50_UPI000426EB18: hypothetical protein|unclassified	1.1809122904
+UniRef50_D2A894	1.1808858871
+UniRef50_D2A894|unclassified	1.1808858871
+UniRef50_N1VSB3	1.1807201035
+UniRef50_N1VSB3|unclassified	1.1807201035
+UniRef50_A6M0D3: Methyl-accepting chemotaxis sensory transducer	1.1806478300
+UniRef50_A6M0D3: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	1.1806478300
+UniRef50_B9K5G4: Ribokinase	1.1806375443
+UniRef50_B9K5G4: Ribokinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1806375443
+UniRef50_E8UAZ5: Phosphoesterase RecJ domain protein	1.1806375443
+UniRef50_E8UAZ5: Phosphoesterase RecJ domain protein|g__Deinococcus.s__Deinococcus_radiodurans	1.1806375443
+UniRef50_G4LCW7	1.1806375443
+UniRef50_G4LCW7|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1806375443
+UniRef50_J2EU84: Transcriptional regulator, AraC family	1.1806375443
+UniRef50_J2EU84: Transcriptional regulator, AraC family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1806375443
+UniRef50_Q9RW34	1.1806375443
+UniRef50_Q9RW34|g__Deinococcus.s__Deinococcus_radiodurans	1.1806375443
+UniRef50_R7D6K7	1.1806375443
+UniRef50_R7D6K7|g__Clostridium.s__Clostridium_beijerinckii	1.1806375443
+UniRef50_V4R4P8: Phosphoribosylformylglycinamidine cyclo-ligase	1.1806365711
+UniRef50_V4R4P8: Phosphoribosylformylglycinamidine cyclo-ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1600990525
+UniRef50_V4R4P8: Phosphoribosylformylglycinamidine cyclo-ligase|unclassified	0.0205375185
+UniRef50_F0MDS8: Ribonuclease E	1.1804492455
+UniRef50_F0MDS8: Ribonuclease E|g__Neisseria.s__Neisseria_meningitidis	1.1804492455
+UniRef50_UPI00039E8E1C: hypothetical protein	1.1804288870
+UniRef50_UPI00039E8E1C: hypothetical protein|unclassified	1.1804288870
+UniRef50_H5YIK9: Ribulose-5-phosphate 4-epimerase-like epimerase or aldolase	1.1802223868
+UniRef50_H5YIK9: Ribulose-5-phosphate 4-epimerase-like epimerase or aldolase|unclassified	1.1802223868
+UniRef50_A8ANP9	1.1802083574
+UniRef50_A8ANP9|unclassified	1.1802083574
+UniRef50_A3SMN2	1.1800103077
+UniRef50_A3SMN2|unclassified	1.1800103077
+UniRef50_B4RLX4: DNA mismatch repair protein MutL	1.1799267298
+UniRef50_B4RLX4: DNA mismatch repair protein MutL|g__Neisseria.s__Neisseria_meningitidis	1.1799267298
+UniRef50_UPI00047CC298: hypothetical protein, partial	1.1796209218
+UniRef50_UPI00047CC298: hypothetical protein, partial|unclassified	1.1796209218
+UniRef50_E0P352	1.1795975569
+UniRef50_E0P352|unclassified	1.1795975569
+UniRef50_G3ADM7: Molecular chaperone (Fragment)	1.1795923934
+UniRef50_G3ADM7: Molecular chaperone (Fragment)|unclassified	1.1795923934
+UniRef50_F2D3N2: Predicted protein (Fragment)	1.1794500095
+UniRef50_F2D3N2: Predicted protein (Fragment)|unclassified	1.1794500095
+UniRef50_C1CUQ9: Translation initiation factor IF-2	1.1794261077
+UniRef50_C1CUQ9: Translation initiation factor IF-2|g__Deinococcus.s__Deinococcus_radiodurans	1.1794261077
+UniRef50_UPI0003B62920: amino acid ABC transporter ATPase	1.1793478647
+UniRef50_UPI0003B62920: amino acid ABC transporter ATPase|unclassified	1.1793478647
+UniRef50_C2W5K4: 6-pyruvoyl tetrahydrobiopterin synthase	1.1792940247
+UniRef50_C2W5K4: 6-pyruvoyl tetrahydrobiopterin synthase|unclassified	1.1792940247
+UniRef50_A0A011PE36	1.1792452830
+UniRef50_A0A011PE36|unclassified	1.1792452830
+UniRef50_L0NEJ3	1.1792110416
+UniRef50_L0NEJ3|unclassified	1.1792110416
+UniRef50_Q3JVF3	1.1789178165
+UniRef50_Q3JVF3|unclassified	1.1789178165
+UniRef50_Q1MG92	1.1788102424
+UniRef50_Q1MG92|unclassified	1.1788102424
+UniRef50_Q98LU4: Glutathione-dependent formaldehyde-activating enzyme	1.1786975299
+UniRef50_Q98LU4: Glutathione-dependent formaldehyde-activating enzyme|unclassified	1.1786975299
+UniRef50_D6H9U3: Acyl-CoA dehydrogenase	1.1786587038
+UniRef50_D6H9U3: Acyl-CoA dehydrogenase|unclassified	1.1786587038
+UniRef50_UPI0002E4EFAA: hypothetical protein	1.1785757652
+UniRef50_UPI0002E4EFAA: hypothetical protein|unclassified	1.1785757652
+UniRef50_G2BBC0: Putative nucleoside transporter yegT domain protein	1.1784727672
+UniRef50_G2BBC0: Putative nucleoside transporter yegT domain protein|unclassified	1.1784727672
+UniRef50_E0XU72	1.1784718947
+UniRef50_E0XU72|unclassified	1.1784718947
+UniRef50_Q4FBH4: Superfamily I DNA helicase	1.1780466395
+UniRef50_Q4FBH4: Superfamily I DNA helicase|g__Escherichia.s__Escherichia_coli	1.1780466395
+UniRef50_UPI00046EC96E: hypothetical protein, partial	1.1779610689
+UniRef50_UPI00046EC96E: hypothetical protein, partial|unclassified	1.1779610689
+UniRef50_UPI00036337E8: hypothetical protein, partial	1.1779177475
+UniRef50_UPI00036337E8: hypothetical protein, partial|unclassified	1.1779177475
+UniRef50_UPI0004713DAC: hypothetical protein	1.1779019084
+UniRef50_UPI0004713DAC: hypothetical protein|unclassified	1.1779019084
+UniRef50_D8JDM8: Dihydropteroate synthase	1.1778563015
+UniRef50_D8JDM8: Dihydropteroate synthase|g__Acinetobacter.s__Acinetobacter_baumannii	1.1778563015
+UniRef50_G4LPZ1	1.1778563015
+UniRef50_G4LPZ1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1778563015
+UniRef50_Q6F856: UPF0042 nucleotide-binding protein ACIAD3059	1.1778563015
+UniRef50_Q6F856: UPF0042 nucleotide-binding protein ACIAD3059|g__Acinetobacter.s__Acinetobacter_baumannii	1.1778563015
+UniRef50_Q6F945	1.1778563015
+UniRef50_Q6F945|g__Acinetobacter.s__Acinetobacter_baumannii	1.1778563015
+UniRef50_Q9RT94: Chloromuconate cycloisomerase, putative	1.1778563015
+UniRef50_Q9RT94: Chloromuconate cycloisomerase, putative|g__Deinococcus.s__Deinococcus_radiodurans	1.1778563015
+UniRef50_Q9RW26	1.1778563015
+UniRef50_Q9RW26|g__Deinococcus.s__Deinococcus_radiodurans	1.1778563015
+UniRef50_Q9X909: DNA topoisomerase 1	1.1775678196
+UniRef50_Q9X909: DNA topoisomerase 1|g__Propionibacterium.s__Propionibacterium_acnes	1.1775678196
+UniRef50_D5QFI2	1.1770364140
+UniRef50_D5QFI2|unclassified	1.1770364140
+UniRef50_UPI00037A4656: hypothetical protein, partial	1.1769030779
+UniRef50_UPI00037A4656: hypothetical protein, partial|unclassified	1.1769030779
+UniRef50_B4R8Q2: Prolipoprotein diacylglyceryl transferase	1.1768956465
+UniRef50_B4R8Q2: Prolipoprotein diacylglyceryl transferase|unclassified	1.1768956465
+UniRef50_UPI00047D0A7B: DNA methyltransferase	1.1768692842
+UniRef50_UPI00047D0A7B: DNA methyltransferase|unclassified	1.1768692842
+UniRef50_Q9X196: Spermidine/putrescine import ATP-binding protein PotA	1.1768099255
+UniRef50_Q9X196: Spermidine/putrescine import ATP-binding protein PotA|unclassified	1.1768099255
+UniRef50_UPI0001C2FA1D: 4E10_S0_1TJLC_004_N	1.1767869453
+UniRef50_UPI0001C2FA1D: 4E10_S0_1TJLC_004_N|unclassified	1.1767869453
+UniRef50_A0A009L5A5: TetR family transcriptional regulator domain protein (Fragment)	1.1765771943
+UniRef50_A0A009L5A5: TetR family transcriptional regulator domain protein (Fragment)|unclassified	1.1765771943
+UniRef50_A6LZG6	1.1764705882
+UniRef50_A6LZG6|g__Clostridium.s__Clostridium_beijerinckii	1.1764705882
+UniRef50_F0N8C1: RNA polymerase sigma-54 factor	1.1764705882
+UniRef50_F0N8C1: RNA polymerase sigma-54 factor|g__Neisseria.s__Neisseria_meningitidis	1.1764705882
+UniRef50_Q4TI85: Chromosome undetermined SCAF2335, whole genome shotgun sequence. (Fragment)	1.1764705882
+UniRef50_Q4TI85: Chromosome undetermined SCAF2335, whole genome shotgun sequence. (Fragment)|unclassified	1.1764705882
+UniRef50_UPI0003B63C0F: hypothetical protein	1.1758907800
+UniRef50_UPI0003B63C0F: hypothetical protein|unclassified	1.1758907800
+UniRef50_F2EYS8	1.1755925436
+UniRef50_F2EYS8|unclassified	1.1755925436
+UniRef50_J8V4X4	1.1751058398
+UniRef50_J8V4X4|unclassified	1.1751058398
+UniRef50_Q97D80: 4-hydroxy-tetrahydrodipicolinate synthase 2	1.1750881316
+UniRef50_Q97D80: 4-hydroxy-tetrahydrodipicolinate synthase 2|g__Clostridium.s__Clostridium_beijerinckii	1.1750881316
+UniRef50_B3G0Z4	1.1750048288
+UniRef50_B3G0Z4|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1750048288
+UniRef50_F2J8L8	1.1749254886
+UniRef50_F2J8L8|unclassified	1.1749254886
+UniRef50_UPI0004722ABF: hypothetical protein	1.1746179570
+UniRef50_UPI0004722ABF: hypothetical protein|unclassified	1.1746179570
+UniRef50_Z6HIA7	1.1745213132
+UniRef50_Z6HIA7|unclassified	1.1745213132
+UniRef50_E1C0T8	1.1743813348
+UniRef50_E1C0T8|unclassified	1.1743813348
+UniRef50_M4MKF6	1.1743770405
+UniRef50_M4MKF6|unclassified	1.1743770405
+UniRef50_UPI00016AF87E: drug resistance transporter, EmrB/QacA family protein	1.1743214143
+UniRef50_UPI00016AF87E: drug resistance transporter, EmrB/QacA family protein|unclassified	1.1743214143
+UniRef50_A6W4G4	1.1742781591
+UniRef50_A6W4G4|unclassified	1.1742781591
+UniRef50_I0EMS0: Bifunctional cytochrome c biogenesis protein	1.1742673968
+UniRef50_I0EMS0: Bifunctional cytochrome c biogenesis protein|g__Helicobacter.s__Helicobacter_pylori	1.1742673968
+UniRef50_I4VTW8	1.1741285114
+UniRef50_I4VTW8|unclassified	1.1741285114
+UniRef50_I0C6X8	1.1741017304
+UniRef50_I0C6X8|unclassified	1.1741017304
+UniRef50_Q5SHB3: Ribonuclease Y	1.1740616122
+UniRef50_Q5SHB3: Ribonuclease Y|g__Deinococcus.s__Deinococcus_radiodurans	1.1740616122
+UniRef50_Q7WLL4: Undecaprenyl-diphosphatase	1.1737709092
+UniRef50_Q7WLL4: Undecaprenyl-diphosphatase|unclassified	1.1737709092
+UniRef50_C5BY82: Glutamate racemase	1.1737089202
+UniRef50_C5BY82: Glutamate racemase|g__Propionibacterium.s__Propionibacterium_acnes	1.1737089202
+UniRef50_D2FMR2: Acetyl-coenzyme A synthetase	1.1737089202
+UniRef50_D2FMR2: Acetyl-coenzyme A synthetase|g__Staphylococcus.s__Staphylococcus_aureus	1.1737089202
+UniRef50_E6SL61: Sporulation stage III protein AF	1.1737089202
+UniRef50_E6SL61: Sporulation stage III protein AF|unclassified	1.1737089202
+UniRef50_G0AAP1: Sulfate adenylyltransferase subunit 1	1.1737089202
+UniRef50_G0AAP1: Sulfate adenylyltransferase subunit 1|g__Neisseria.s__Neisseria_meningitidis	1.1737089202
+UniRef50_G2JLL9	1.1737089202
+UniRef50_G2JLL9|g__Acinetobacter.s__Acinetobacter_baumannii	1.1737089202
+UniRef50_Q2T833: Membrane protein, putative	1.1737089202
+UniRef50_Q2T833: Membrane protein, putative|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1737089202
+UniRef50_Q9I452: Probable 3-mercaptopyruvate sulfurtransferase	1.1737089202
+UniRef50_Q9I452: Probable 3-mercaptopyruvate sulfurtransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1737089202
+UniRef50_Q9Z3Q8: Rhizobactin siderophore biosynthesis protein RhbE	1.1737089202
+UniRef50_Q9Z3Q8: Rhizobactin siderophore biosynthesis protein RhbE|g__Acinetobacter.s__Acinetobacter_baumannii	1.1737089202
+UniRef50_UPI0003020C8D: hypothetical protein	1.1737089202
+UniRef50_UPI0003020C8D: hypothetical protein|unclassified	1.1737089202
+UniRef50_UPI000466B45C: hypothetical protein	1.1737089202
+UniRef50_UPI000466B45C: hypothetical protein|unclassified	1.1737089202
+UniRef50_UPI0003707E4A: hypothetical protein	1.1736621586
+UniRef50_UPI0003707E4A: hypothetical protein|unclassified	1.1736621586
+UniRef50_U1VIQ4	1.1736020328
+UniRef50_U1VIQ4|g__Acinetobacter.s__Acinetobacter_baumannii	0.9940357853
+UniRef50_U1VIQ4|unclassified	0.1795662475
+UniRef50_K0JTJ9	1.1735633210
+UniRef50_K0JTJ9|unclassified	1.1735633210
+UniRef50_K0SPG1	1.1734214635
+UniRef50_K0SPG1|unclassified	1.1734214635
+UniRef50_U6N5B3	1.1731305156
+UniRef50_U6N5B3|unclassified	1.1731305156
+UniRef50_UPI00006D84D1: hypothetical protein	1.1728426286
+UniRef50_UPI00006D84D1: hypothetical protein|unclassified	1.1728426286
+UniRef50_UPI0002558955: Recombinase A	1.1726780401
+UniRef50_UPI0002558955: Recombinase A|unclassified	1.1726780401
+UniRef50_A3SND6: ArsC family protein	1.1726009753
+UniRef50_A3SND6: ArsC family protein|unclassified	1.1726009753
+UniRef50_UPI00047ACD9B: hypothetical protein	1.1725544479
+UniRef50_UPI00047ACD9B: hypothetical protein|unclassified	1.1725544479
+UniRef50_L6ZQL1	1.1724875644
+UniRef50_L6ZQL1|unclassified	1.1724875644
+UniRef50_B0VCQ8: NADH dehydrogenase	1.1723329426
+UniRef50_B0VCQ8: NADH dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.1723329426
+UniRef50_G2JM28: Permease	1.1723329426
+UniRef50_G2JM28: Permease|g__Acinetobacter.s__Acinetobacter_baumannii	1.1723329426
+UniRef50_G8VL07: Universal stress protein UspA	1.1723329426
+UniRef50_G8VL07: Universal stress protein UspA|g__Propionibacterium.s__Propionibacterium_acnes	1.1723329426
+UniRef50_Q2W276	1.1719190396
+UniRef50_Q2W276|unclassified	1.1719190396
+UniRef50_G5PT50	1.1717652125
+UniRef50_G5PT50|unclassified	1.1717652125
+UniRef50_UPI000331783A: PREDICTED: MHC class II transactivator-like	1.1717097817
+UniRef50_UPI000331783A: PREDICTED: MHC class II transactivator-like|unclassified	1.1717097817
+UniRef50_X8FIT5: ROK family protein	1.1713585180
+UniRef50_X8FIT5: ROK family protein|unclassified	1.1713585180
+UniRef50_D4H5B5	1.1713382999
+UniRef50_D4H5B5|unclassified	1.1713382999
+UniRef50_D5RGE6	1.1711589516
+UniRef50_D5RGE6|unclassified	1.1711589516
+UniRef50_UPI000225F7F6: hypothetical protein	1.1710273702
+UniRef50_UPI000225F7F6: hypothetical protein|unclassified	1.1710273702
+UniRef50_C0ARK9: Putrescine/spermidine ABC transporter ATPase protein	1.1710261811
+UniRef50_C0ARK9: Putrescine/spermidine ABC transporter ATPase protein|unclassified	1.1710261811
+UniRef50_J9NUH4	1.1709601874
+UniRef50_J9NUH4|unclassified	1.1709601874
+UniRef50_S5XQJ7: Histone deacetylase	1.1709601874
+UniRef50_S5XQJ7: Histone deacetylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1709601874
+UniRef50_UPI0003717CC9: sodium:alanine symporter, partial	1.1709601874
+UniRef50_UPI0003717CC9: sodium:alanine symporter, partial|unclassified	1.1709601874
+UniRef50_I0TZM4	1.1708597707
+UniRef50_I0TZM4|unclassified	1.1708597707
+UniRef50_W8TX13	1.1707658599
+UniRef50_W8TX13|unclassified	1.1707658599
+UniRef50_Y6YL49	1.1706924025
+UniRef50_Y6YL49|unclassified	1.1706924025
+UniRef50_UPI00046F7FC6: hypothetical protein	1.1706886575
+UniRef50_UPI00046F7FC6: hypothetical protein|unclassified	1.1706886575
+UniRef50_A0A024E8Z4: Sensor histidine kinase/response regulator	1.1705343857
+UniRef50_A0A024E8Z4: Sensor histidine kinase/response regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1705343857
+UniRef50_R4GLC2	1.1704143063
+UniRef50_R4GLC2|unclassified	1.1704143063
+UniRef50_UPI0003B6EB70: transposase IS4351, partial	1.1702754402
+UniRef50_UPI0003B6EB70: transposase IS4351, partial|unclassified	1.1702754402
+UniRef50_A3V3K8	1.1701883580
+UniRef50_A3V3K8|unclassified	1.1701883580
+UniRef50_Q1GCL8: Ribosomal RNA small subunit methyltransferase G	1.1701691883
+UniRef50_Q1GCL8: Ribosomal RNA small subunit methyltransferase G|unclassified	1.1701691883
+UniRef50_F4C7A6	1.1700322033
+UniRef50_F4C7A6|unclassified	1.1700322033
+UniRef50_F2AB45	1.1698413298
+UniRef50_F2AB45|unclassified	1.1698413298
+UniRef50_D9RF73	1.1696999182
+UniRef50_D9RF73|unclassified	1.1696999182
+UniRef50_V5G514: Membraine protein	1.1696625585
+UniRef50_V5G514: Membraine protein|unclassified	1.1696625585
+UniRef50_UPI000378F946: hypothetical protein	1.1696321440
+UniRef50_UPI000378F946: hypothetical protein|unclassified	1.1696321440
+UniRef50_B4I0B4: GM12486	1.1695906433
+UniRef50_B4I0B4: GM12486|unclassified	1.1695906433
+UniRef50_O25582: Protease HtpX homolog	1.1695906433
+UniRef50_O25582: Protease HtpX homolog|g__Helicobacter.s__Helicobacter_pylori	1.1695906433
+UniRef50_Q6FBI7	1.1695906433
+UniRef50_Q6FBI7|g__Acinetobacter.s__Acinetobacter_baumannii	1.1695906433
+UniRef50_Q8WY44: Quaking protein 3 (Fragment)	1.1695613231
+UniRef50_Q8WY44: Quaking protein 3 (Fragment)|unclassified	1.1695613231
+UniRef50_UPI00025596CA: lipoprotein	1.1689952398
+UniRef50_UPI00025596CA: lipoprotein|unclassified	1.1689952398
+UniRef50_W0YKX4: Putative bacteriophage protein	1.1689605072
+UniRef50_W0YKX4: Putative bacteriophage protein|unclassified	1.1689605072
+UniRef50_K2I9B0	1.1689028523
+UniRef50_K2I9B0|unclassified	1.1689028523
+UniRef50_M7A9V5	1.1688780246
+UniRef50_M7A9V5|unclassified	1.1688780246
+UniRef50_F3Z9X5	1.1688649101
+UniRef50_F3Z9X5|unclassified	1.1688649101
+UniRef50_F0RQZ8: Xanthine dehydrogenase	1.1686723473
+UniRef50_F0RQZ8: Xanthine dehydrogenase|g__Deinococcus.s__Deinococcus_radiodurans	1.1686723473
+UniRef50_UPI000382943F: hypothetical protein, partial	1.1685592677
+UniRef50_UPI000382943F: hypothetical protein, partial|unclassified	1.1685592677
+UniRef50_C1DJQ4: LysR family transcriptional regulator protein	1.1682242991
+UniRef50_C1DJQ4: LysR family transcriptional regulator protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1682242991
+UniRef50_J9YUS2: Glyoxalase	1.1682242991
+UniRef50_J9YUS2: Glyoxalase|g__Streptococcus.s__Streptococcus_agalactiae	1.1682242991
+UniRef50_M1MT68: Peptidase U61 LD-carboxypeptidase A	1.1682242991
+UniRef50_M1MT68: Peptidase U61 LD-carboxypeptidase A|g__Clostridium.s__Clostridium_beijerinckii	1.1682242991
+UniRef50_UPI0003AE93A7: PREDICTED: mucin-1-like	1.1682242991
+UniRef50_UPI0003AE93A7: PREDICTED: mucin-1-like|unclassified	1.1682242991
+UniRef50_B9NL55: Inner membrane protein	1.1677531896
+UniRef50_B9NL55: Inner membrane protein|unclassified	1.1677531896
+UniRef50_D8QID1	1.1674556329
+UniRef50_D8QID1|unclassified	1.1674556329
+UniRef50_S7PB40	1.1673834729
+UniRef50_S7PB40|unclassified	1.1673834729
+UniRef50_G8AE70	1.1673364363
+UniRef50_G8AE70|unclassified	1.1673364363
+UniRef50_M9RFH0	1.1672770792
+UniRef50_M9RFH0|unclassified	1.1672770792
+UniRef50_UPI0004075F35: hypothetical protein	1.1671459565
+UniRef50_UPI0004075F35: hypothetical protein|unclassified	1.1671459565
+UniRef50_UPI0003C87DBE: PREDICTED: transcription factor Spi-B-like, partial	1.1671141685
+UniRef50_UPI0003C87DBE: PREDICTED: transcription factor Spi-B-like, partial|unclassified	1.1671141685
+UniRef50_UPI0003B4B661: hypothetical protein, partial	1.1669284530
+UniRef50_UPI0003B4B661: hypothetical protein, partial|unclassified	1.1669284530
+UniRef50_G8VM83: Serine-threonine protein kinase	1.1668865642
+UniRef50_G8VM83: Serine-threonine protein kinase|g__Propionibacterium.s__Propionibacterium_acnes	1.1668865642
+UniRef50_M9VNR8: NAD-glutamate dehydrogenase	1.1668702458
+UniRef50_M9VNR8: NAD-glutamate dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	1.1668702458
+UniRef50_H5WHX8	1.1668611435
+UniRef50_H5WHX8|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1668611435
+UniRef50_J3P2Z6	1.1668611435
+UniRef50_J3P2Z6|unclassified	1.1668611435
+UniRef50_UPI00035E25C5: hypothetical protein	1.1668611435
+UniRef50_UPI00035E25C5: hypothetical protein|unclassified	1.1668611435
+UniRef50_UPI00035F8F66: hypothetical protein	1.1668192225
+UniRef50_UPI00035F8F66: hypothetical protein|unclassified	1.1668192225
+UniRef50_S6AP89	1.1668080109
+UniRef50_S6AP89|unclassified	1.1668080109
+UniRef50_C8AMW8	1.1667901180
+UniRef50_C8AMW8|unclassified	1.1667901180
+UniRef50_A0A032VXU1	1.1666880719
+UniRef50_A0A032VXU1|unclassified	1.1666880719
+UniRef50_R8GNX1	1.1666798963
+UniRef50_R8GNX1|unclassified	1.1666798963
+UniRef50_UPI00037382F7: hypothetical protein	1.1664457657
+UniRef50_UPI00037382F7: hypothetical protein|unclassified	1.1664457657
+UniRef50_S2KIU7: Membrane protein	1.1662308090
+UniRef50_S2KIU7: Membrane protein|unclassified	1.1662308090
+UniRef50_J9AZU0	1.1661279130
+UniRef50_J9AZU0|unclassified	1.1661279130
+UniRef50_E2NTI8	1.1660601053
+UniRef50_E2NTI8|unclassified	1.1660601053
+UniRef50_UPI00021922E1: XRE family transcriptional regulator, partial	1.1657205342
+UniRef50_UPI00021922E1: XRE family transcriptional regulator, partial|unclassified	1.1657205342
+UniRef50_UPI00028A2BD8: hypothetical protein	1.1656712661
+UniRef50_UPI00028A2BD8: hypothetical protein|unclassified	1.1656712661
+UniRef50_W4UHI3: DeoR-family transcriptional regulator	1.1656633632
+UniRef50_W4UHI3: DeoR-family transcriptional regulator|unclassified	1.1656633632
+UniRef50_Q7AX70: FhaC protein	1.1655264974
+UniRef50_Q7AX70: FhaC protein|g__Neisseria.s__Neisseria_meningitidis	1.1655264974
+UniRef50_K8DIE3: Cold-shock DEAD-box protein A	1.1655129051
+UniRef50_K8DIE3: Cold-shock DEAD-box protein A|unclassified	1.1655129051
+UniRef50_B7H4G2: Opine oxidase subunit A(Octopine oxidase subunit A)	1.1655011655
+UniRef50_B7H4G2: Opine oxidase subunit A(Octopine oxidase subunit A)|g__Acinetobacter.s__Acinetobacter_baumannii	1.1655011655
+UniRef50_L7VTK0	1.1655011655
+UniRef50_L7VTK0|g__Clostridium.s__Clostridium_beijerinckii	1.1655011655
+UniRef50_P07661: Citrate-proton symporter	1.1655011655
+UniRef50_P07661: Citrate-proton symporter|g__Acinetobacter.s__Acinetobacter_baumannii	1.1655011655
+UniRef50_Q0FVE7: Flagellar protein FlgJ, putative	1.1654081720
+UniRef50_Q0FVE7: Flagellar protein FlgJ, putative|unclassified	1.1654081720
+UniRef50_G8U508: DNA-directed RNA polymerase	1.1652033421
+UniRef50_G8U508: DNA-directed RNA polymerase|g__Streptococcus.s__Streptococcus_agalactiae	1.1652033421
+UniRef50_E3YBI6	1.1650834151
+UniRef50_E3YBI6|unclassified	1.1650834151
+UniRef50_W5XHW0: Translation initiation factor IF-3	1.1649007464
+UniRef50_W5XHW0: Translation initiation factor IF-3|unclassified	1.1649007464
+UniRef50_Q28R83: Transcriptional regulator, BolA protein family	1.1648747462
+UniRef50_Q28R83: Transcriptional regulator, BolA protein family|unclassified	1.1648747462
+UniRef50_R1BQD4	1.1647876928
+UniRef50_R1BQD4|unclassified	1.1647876928
+UniRef50_UPI00046FF35E: hypothetical protein, partial	1.1647629208
+UniRef50_UPI00046FF35E: hypothetical protein, partial|unclassified	1.1647629208
+UniRef50_E3A726	1.1647447710
+UniRef50_E3A726|unclassified	1.1647447710
+UniRef50_T2EB62: Type II secretion system protein D	1.1644708344
+UniRef50_T2EB62: Type II secretion system protein D|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1644708344
+UniRef50_M9VFI4	1.1641443539
+UniRef50_M9VFI4|g__Propionibacterium.s__Propionibacterium_acnes	1.1641443539
+UniRef50_UPI000273C51B	1.1641443539
+UniRef50_UPI000273C51B|unclassified	1.1641443539
+UniRef50_W4QPZ5: TRAP-type C4-dicarboxylate transport system	1.1641360346
+UniRef50_W4QPZ5: TRAP-type C4-dicarboxylate transport system|unclassified	1.1641360346
+UniRef50_B9TQ05	1.1639074501
+UniRef50_B9TQ05|unclassified	1.1639074501
+UniRef50_D7GDY6: Transporter	1.1638057430
+UniRef50_D7GDY6: Transporter|g__Propionibacterium.s__Propionibacterium_acnes	1.1638057430
+UniRef50_C9CZK5	1.1635694805
+UniRef50_C9CZK5|unclassified	1.1635694805
+UniRef50_C7NWU6: Cupin 2 conserved barrel domain protein	1.1634034398
+UniRef50_C7NWU6: Cupin 2 conserved barrel domain protein|unclassified	1.1634034398
+UniRef50_G6EGC5: Transposase orfA IS5 family element	1.1633805348
+UniRef50_G6EGC5: Transposase orfA IS5 family element|unclassified	1.1633805348
+UniRef50_Q88LV4: GTP cyclohydrolase 1 1	1.1633375903
+UniRef50_Q88LV4: GTP cyclohydrolase 1 1|unclassified	1.1633375903
+UniRef50_A6U466	1.1629651749
+UniRef50_A6U466|unclassified	1.1629651749
+UniRef50_A9M2U6: Oxygen-independent coproporphyrinogen III oxidase	1.1627906977
+UniRef50_A9M2U6: Oxygen-independent coproporphyrinogen III oxidase|g__Neisseria.s__Neisseria_meningitidis	1.1627906977
+UniRef50_G5LWF8: Ribose ABC transport system ATP-binding protein RbsA	1.1627906977
+UniRef50_G5LWF8: Ribose ABC transport system ATP-binding protein RbsA|g__Escherichia.s__Escherichia_coli	1.1627906977
+UniRef50_K0CB29	1.1627906977
+UniRef50_K0CB29|g__Acinetobacter.s__Acinetobacter_baumannii	1.1627906977
+UniRef50_P38376: Protein translocase subunit SecY	1.1627906977
+UniRef50_P38376: Protein translocase subunit SecY|g__Propionibacterium.s__Propionibacterium_acnes	1.1627906977
+UniRef50_U5MKF5: UPF0750 membrane protein YpjC	1.1627906977
+UniRef50_U5MKF5: UPF0750 membrane protein YpjC|g__Clostridium.s__Clostridium_beijerinckii	1.1627906977
+UniRef50_J9FU21: Ferredoxin-NADP(+) reductase subunit alpha	1.1623793321
+UniRef50_J9FU21: Ferredoxin-NADP(+) reductase subunit alpha|unclassified	1.1623793321
+UniRef50_D0IYV6	1.1623022536
+UniRef50_D0IYV6|unclassified	1.1623022536
+UniRef50_UPI00037C177B: hypothetical protein	1.1622902291
+UniRef50_UPI00037C177B: hypothetical protein|unclassified	1.1622902291
+UniRef50_UPI00036F8E58: hypothetical protein	1.1614798450
+UniRef50_UPI00036F8E58: hypothetical protein|unclassified	1.1614798450
+UniRef50_Q6XGF7: Pilx6/VirB6-like protein	1.1614401858
+UniRef50_Q6XGF7: Pilx6/VirB6-like protein|g__Escherichia.s__Escherichia_coli	1.1614401858
+UniRef50_Q9RWE3	1.1614401858
+UniRef50_Q9RWE3|g__Deinococcus.s__Deinococcus_radiodurans	1.1614401858
+UniRef50_UPI00045E8D93: hypothetical protein	1.1613607828
+UniRef50_UPI00045E8D93: hypothetical protein|unclassified	1.1613607828
+UniRef50_B7GX14: Probable 5-dehydro-4-deoxyglucarate dehydratase	1.1613541913
+UniRef50_B7GX14: Probable 5-dehydro-4-deoxyglucarate dehydratase|unclassified	1.1613541913
+UniRef50_UPI0002DA847D: hypothetical protein	1.1611649908
+UniRef50_UPI0002DA847D: hypothetical protein|unclassified	1.1611649908
+UniRef50_R7CST7: ABC-type proline/glycine betaine transport system periplasmic component	1.1611592377
+UniRef50_R7CST7: ABC-type proline/glycine betaine transport system periplasmic component|unclassified	1.1611592377
+UniRef50_K2FFC0	1.1607948677
+UniRef50_K2FFC0|unclassified	1.1607948677
+UniRef50_UPI0002FE64DA: hypothetical protein	1.1604256408
+UniRef50_UPI0002FE64DA: hypothetical protein|unclassified	1.1604256408
+UniRef50_Q9RZ46: Minor tail protein gp26-related protein	1.1601493549
+UniRef50_Q9RZ46: Minor tail protein gp26-related protein|g__Deinococcus.s__Deinococcus_radiodurans	1.1078078288
+UniRef50_Q9RZ46: Minor tail protein gp26-related protein|unclassified	0.0523415261
+UniRef50_D4JAE0	1.1600928074
+UniRef50_D4JAE0|g__Clostridium.s__Clostridium_beijerinckii	1.1600928074
+UniRef50_G8LNA7	1.1600928074
+UniRef50_G8LNA7|unclassified	1.1600928074
+UniRef50_R7II06: Oligopeptide transport ATP-binding protein OppD	1.1600928074
+UniRef50_R7II06: Oligopeptide transport ATP-binding protein OppD|g__Helicobacter.s__Helicobacter_pylori	1.1600928074
+UniRef50_S1CAP4	1.1600916006
+UniRef50_S1CAP4|unclassified	1.1600916006
+UniRef50_UPI0002557D61: preprotein translocase subunit SecF, partial	1.1600884465
+UniRef50_UPI0002557D61: preprotein translocase subunit SecF, partial|unclassified	1.1600884465
+UniRef50_F1CYM2: Phosphatidylglycerophosphatase B (Fragment)	1.1600803483
+UniRef50_F1CYM2: Phosphatidylglycerophosphatase B (Fragment)|unclassified	1.1600803483
+UniRef50_UPI00030D504E: hypothetical protein	1.1598220210
+UniRef50_UPI00030D504E: hypothetical protein|unclassified	1.1598220210
+UniRef50_V4QFM6	1.1596944144
+UniRef50_V4QFM6|unclassified	1.1596944144
+UniRef50_A9HGR3: UPF0260 protein GDI1595/Gdia_1801	1.1596114066
+UniRef50_A9HGR3: UPF0260 protein GDI1595/Gdia_1801|unclassified	1.1596114066
+UniRef50_C7IW70: Os01g0561500 protein (Fragment)	1.1594156720
+UniRef50_C7IW70: Os01g0561500 protein (Fragment)|unclassified	1.1594156720
+UniRef50_A3TYX2	1.1591974270
+UniRef50_A3TYX2|unclassified	1.1591974270
+UniRef50_UPI0004670F2D: membrane protein	1.1589667048
+UniRef50_UPI0004670F2D: membrane protein|unclassified	1.1589667048
+UniRef50_A2ZQQ8	1.1589288087
+UniRef50_A2ZQQ8|unclassified	1.1589288087
+UniRef50_R8CME3	1.1589112364
+UniRef50_R8CME3|unclassified	1.1589112364
+UniRef50_UPI0003EE04DF: hypothetical protein	1.1587548023
+UniRef50_UPI0003EE04DF: hypothetical protein|unclassified	1.1587548023
+UniRef50_Q6A9W9: Cation-transporting P-type ATPase A	1.1587501074
+UniRef50_Q6A9W9: Cation-transporting P-type ATPase A|g__Propionibacterium.s__Propionibacterium_acnes	1.1587501074
+UniRef50_A1T9L9: Malate dehydrogenase	1.1587485516
+UniRef50_A1T9L9: Malate dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.1587485516
+UniRef50_A6LT65	1.1587485516
+UniRef50_A6LT65|g__Clostridium.s__Clostridium_beijerinckii	1.1587485516
+UniRef50_A8LRF0: Transglutaminase domain protein	1.1587485516
+UniRef50_A8LRF0: Transglutaminase domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1587485516
+UniRef50_I7J8Z1: Transporter, BCCT family protein	1.1587485516
+UniRef50_I7J8Z1: Transporter, BCCT family protein|g__Streptococcus.s__Streptococcus_agalactiae	1.1587485516
+UniRef50_E6MYQ3	1.1586210813
+UniRef50_E6MYQ3|unclassified	1.1586210813
+UniRef50_UPI0003B36060: transcriptional regulator, partial	1.1586000011
+UniRef50_UPI0003B36060: transcriptional regulator, partial|unclassified	1.1586000011
+UniRef50_U9J588	1.1585783655
+UniRef50_U9J588|unclassified	1.1585783655
+UniRef50_UPI0002557A6F: preprotein translocase subunit SecF, partial	1.1584844946
+UniRef50_UPI0002557A6F: preprotein translocase subunit SecF, partial|unclassified	1.1584844946
+UniRef50_A5CVR1: Imidazoleglycerol-phosphate dehydratase	1.1583893546
+UniRef50_A5CVR1: Imidazoleglycerol-phosphate dehydratase|unclassified	1.1583893546
+UniRef50_A0L9F7: UPF0125 protein Mmc1_2099	1.1581958154
+UniRef50_A0L9F7: UPF0125 protein Mmc1_2099|unclassified	1.1581958154
+UniRef50_B9KWQ5: Class II aldolase/adducin, N-terminal	1.1576954108
+UniRef50_B9KWQ5: Class II aldolase/adducin, N-terminal|unclassified	1.1576954108
+UniRef50_P08394: RecBCD enzyme subunit RecB	1.1574513417
+UniRef50_P08394: RecBCD enzyme subunit RecB|g__Escherichia.s__Escherichia_coli	1.1574513417
+UniRef50_A1VIU6: ATP synthase subunit a	1.1574074074
+UniRef50_A1VIU6: ATP synthase subunit a|g__Neisseria.s__Neisseria_meningitidis	1.1574074074
+UniRef50_E2ZW01	1.1572309196
+UniRef50_E2ZW01|unclassified	1.1572309196
+UniRef50_Q47710	1.1572214615
+UniRef50_Q47710|unclassified	1.1572214615
+UniRef50_G6C262	1.1571541835
+UniRef50_G6C262|unclassified	1.1571541835
+UniRef50_Q72X21	1.1569552560
+UniRef50_Q72X21|unclassified	1.1569552560
+UniRef50_G2P7Z9: Pyridoxal-5'-phosphate-dependent protein beta subunit	1.1568149683
+UniRef50_G2P7Z9: Pyridoxal-5'-phosphate-dependent protein beta subunit|unclassified	1.1568149683
+UniRef50_Q9JUV1: Proline iminopeptidase	1.1567619049
+UniRef50_Q9JUV1: Proline iminopeptidase|g__Neisseria.s__Neisseria_meningitidis	1.1061946903
+UniRef50_Q9JUV1: Proline iminopeptidase|unclassified	0.0505672146
+UniRef50_G5MAF2: OxaI/YidC membrane insertion protein (Fragment)	1.1566279469
+UniRef50_G5MAF2: OxaI/YidC membrane insertion protein (Fragment)|unclassified	1.1566279469
+UniRef50_D0CUR7	1.1566268258
+UniRef50_D0CUR7|unclassified	1.1566268258
+UniRef50_E0N8R2	1.1563010349
+UniRef50_E0N8R2|unclassified	1.1563010349
+UniRef50_D6M5M1	1.1561724004
+UniRef50_D6M5M1|unclassified	1.1561724004
+UniRef50_UPI00035EB969: hypothetical protein	1.1561267703
+UniRef50_UPI00035EB969: hypothetical protein|unclassified	1.1561267703
+UniRef50_F6AFX2: Response regulator receiver modulated CheB methylesterase	1.1560693642
+UniRef50_F6AFX2: Response regulator receiver modulated CheB methylesterase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1560693642
+UniRef50_B3INB2: Transposase InsH for insertion sequence element IS5	1.1559398491
+UniRef50_B3INB2: Transposase InsH for insertion sequence element IS5|unclassified	1.1559398491
+UniRef50_A4EKV5	1.1557702139
+UniRef50_A4EKV5|unclassified	1.1557702139
+UniRef50_W4VJ87: Glyoxalase family protein	1.1556083774
+UniRef50_W4VJ87: Glyoxalase family protein|unclassified	1.1556083774
+UniRef50_UPI000357F632: hypothetical protein	1.1555693984
+UniRef50_UPI000357F632: hypothetical protein|unclassified	1.1555693984
+UniRef50_UPI000248FE8D: transcriptional regulator	1.1554643609
+UniRef50_UPI000248FE8D: transcriptional regulator|unclassified	1.1554643609
+UniRef50_UPI000468D874: multidrug transporter	1.1553698766
+UniRef50_UPI000468D874: multidrug transporter|unclassified	1.1553698766
+UniRef50_UPI00037631A0: hypothetical protein	1.1552427938
+UniRef50_UPI00037631A0: hypothetical protein|unclassified	1.1552427938
+UniRef50_W5X2T3: PAS/PAC sensor signal transduction histidine kinase	1.1552140142
+UniRef50_W5X2T3: PAS/PAC sensor signal transduction histidine kinase|unclassified	1.1552140142
+UniRef50_D5ASM7	1.1551419730
+UniRef50_D5ASM7|unclassified	1.1551419730
+UniRef50_W4UL00: Secreted lipoprotein	1.1550316678
+UniRef50_W4UL00: Secreted lipoprotein|unclassified	1.1550316678
+UniRef50_UPI000478533A: ribose ABC transporter permease	1.1549890232
+UniRef50_UPI000478533A: ribose ABC transporter permease|unclassified	1.1549890232
+UniRef50_UPI000477D774: alpha/beta hydrolase	1.1549475244
+UniRef50_UPI000477D774: alpha/beta hydrolase|unclassified	1.1549475244
+UniRef50_X0URX4: Marine sediment metagenome DNA, contig: S01H1_S13104 (Fragment)	1.1548962887
+UniRef50_X0URX4: Marine sediment metagenome DNA, contig: S01H1_S13104 (Fragment)|unclassified	1.1548962887
+UniRef50_E6TQE8	1.1548727612
+UniRef50_E6TQE8|unclassified	1.1548727612
+UniRef50_F9Z1V7	1.1548686169
+UniRef50_F9Z1V7|unclassified	1.1548686169
+UniRef50_A0A059INZ9	1.1548608033
+UniRef50_A0A059INZ9|unclassified	1.1548608033
+UniRef50_UPI0004645274: hypothetical protein, partial	1.1548578263
+UniRef50_UPI0004645274: hypothetical protein, partial|unclassified	1.1548578263
+UniRef50_B1ZM82	1.1547942640
+UniRef50_B1ZM82|unclassified	1.1547942640
+UniRef50_A6LU14	1.1547344111
+UniRef50_A6LU14|g__Clostridium.s__Clostridium_beijerinckii	1.1547344111
+UniRef50_I7FLW8: General substrate transporter	1.1547344111
+UniRef50_I7FLW8: General substrate transporter|g__Acinetobacter.s__Acinetobacter_baumannii	1.1547344111
+UniRef50_Q6FA90: C4-dicarboxylate transport protein	1.1547344111
+UniRef50_Q6FA90: C4-dicarboxylate transport protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.1547344111
+UniRef50_S4YFW2: LysR family transcriptional regulator	1.1547344111
+UniRef50_S4YFW2: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1547344111
+UniRef50_UPI00036A4DB5: hypothetical protein	1.1547344111
+UniRef50_UPI00036A4DB5: hypothetical protein|unclassified	1.1547344111
+UniRef50_UPI000347806D: MULTISPECIES: hypothetical protein	1.1545650363
+UniRef50_UPI000347806D: MULTISPECIES: hypothetical protein|unclassified	1.1545650363
+UniRef50_T0C521	1.1544970544
+UniRef50_T0C521|unclassified	1.1544970544
+UniRef50_K8B662	1.1544329722
+UniRef50_K8B662|unclassified	1.1544329722
+UniRef50_UPI000011E309: transposase, pseudogene	1.1542687165
+UniRef50_UPI000011E309: transposase, pseudogene|unclassified	1.1542687165
+UniRef50_A1B788	1.1542475257
+UniRef50_A1B788|unclassified	1.1542475257
+UniRef50_UPI000395D4B5: PREDICTED: basic proline-rich protein-like	1.1541431809
+UniRef50_UPI000395D4B5: PREDICTED: basic proline-rich protein-like|unclassified	1.1541431809
+UniRef50_U9XF29	1.1540496231
+UniRef50_U9XF29|unclassified	1.1540496231
+UniRef50_M4WU27: Amidohydrolase	1.1537376174
+UniRef50_M4WU27: Amidohydrolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1537376174
+UniRef50_I0EMB4	1.1536683594
+UniRef50_I0EMB4|g__Helicobacter.s__Helicobacter_pylori	1.1536683594
+UniRef50_UPI000424FAA5: hypothetical protein	1.1535704755
+UniRef50_UPI000424FAA5: hypothetical protein|unclassified	1.1535704755
+UniRef50_A6V079	1.1534025375
+UniRef50_A6V079|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1534025375
+UniRef50_H0DYF1: ABC transporter, substrate-binding protein, family 3	1.1534025375
+UniRef50_H0DYF1: ABC transporter, substrate-binding protein, family 3|g__Staphylococcus.s__Staphylococcus_epidermidis	1.1534025375
+UniRef50_Q6F797	1.1534025375
+UniRef50_Q6F797|g__Acinetobacter.s__Acinetobacter_baumannii	1.1534025375
+UniRef50_UPI000476C75A: hypothetical protein	1.1534025375
+UniRef50_UPI000476C75A: hypothetical protein|unclassified	1.1534025375
+UniRef50_Q17VZ5: Threonine--tRNA ligase	1.1533050361
+UniRef50_Q17VZ5: Threonine--tRNA ligase|g__Helicobacter.s__Helicobacter_pylori	1.1533050361
+UniRef50_S3DKH9	1.1530713148
+UniRef50_S3DKH9|unclassified	1.1530713148
+UniRef50_S8XZZ9	1.1530650894
+UniRef50_S8XZZ9|unclassified	1.1530650894
+UniRef50_S3Z9U0	1.1530602606
+UniRef50_S3Z9U0|unclassified	1.1530602606
+UniRef50_Q9I466: Bifunctional adenosylcobalamin biosynthesis protein CobP	1.1530484678
+UniRef50_Q9I466: Bifunctional adenosylcobalamin biosynthesis protein CobP|unclassified	1.1530484678
+UniRef50_I6DTG2: 3-(3-hydroxy-phenyl)propionate/3-hydroxycinnamic acid hydroxylase domain protein	1.1530450870
+UniRef50_I6DTG2: 3-(3-hydroxy-phenyl)propionate/3-hydroxycinnamic acid hydroxylase domain protein|unclassified	1.1530450870
+UniRef50_UPI0003608FD3: hypothetical protein	1.1528375556
+UniRef50_UPI0003608FD3: hypothetical protein|unclassified	1.1528375556
+UniRef50_UPI0004648032: gamma-aminobutyrate transporter	1.1526613167
+UniRef50_UPI0004648032: gamma-aminobutyrate transporter|unclassified	1.1526613167
+UniRef50_B2IE93	1.1526340975
+UniRef50_B2IE93|unclassified	1.1526340975
+UniRef50_W7X2B1	1.1523365443
+UniRef50_W7X2B1|unclassified	1.1523365443
+UniRef50_K7T001: Transposase	1.1521647762
+UniRef50_K7T001: Transposase|unclassified	1.1521647762
+UniRef50_Q7NPZ7: UDP-N-acetylmuramoylalanine--D-glutamate ligase	1.1520737327
+UniRef50_Q7NPZ7: UDP-N-acetylmuramoylalanine--D-glutamate ligase|g__Neisseria.s__Neisseria_meningitidis	1.1520737327
+UniRef50_UPI000422DB1A: hypothetical protein	1.1520256073
+UniRef50_UPI000422DB1A: hypothetical protein|unclassified	1.1520256073
+UniRef50_E0TGB8	1.1519708108
+UniRef50_E0TGB8|unclassified	1.1519708108
+UniRef50_M4K5M0: ParB family protein	1.1516287069
+UniRef50_M4K5M0: ParB family protein|unclassified	1.1516287069
+UniRef50_V8E504	1.1515557173
+UniRef50_V8E504|unclassified	1.1515557173
+UniRef50_R7V5T5	1.1515152093
+UniRef50_R7V5T5|unclassified	1.1515152093
+UniRef50_UPI0003620071: hypothetical protein	1.1513930181
+UniRef50_UPI0003620071: hypothetical protein|unclassified	1.1513930181
+UniRef50_D8A640	1.1512950691
+UniRef50_D8A640|unclassified	1.1512950691
+UniRef50_UPI00037E223F: hypothetical protein	1.1512453539
+UniRef50_UPI00037E223F: hypothetical protein|unclassified	1.1512453539
+UniRef50_UPI00045DE6E8: PREDICTED: transcription initiation factor TFIID subunit 4-like	1.1511752796
+UniRef50_UPI00045DE6E8: PREDICTED: transcription initiation factor TFIID subunit 4-like|unclassified	1.1511752796
+UniRef50_E3A662: Signal recognition particle receptor FtsY	1.1511208144
+UniRef50_E3A662: Signal recognition particle receptor FtsY|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1511208144
+UniRef50_UPI0004721CE5: hypothetical protein	1.1507922000
+UniRef50_UPI0004721CE5: hypothetical protein|unclassified	1.1507922000
+UniRef50_B5EZJ2: Ribonuclease BN	1.1507479862
+UniRef50_B5EZJ2: Ribonuclease BN|g__Escherichia.s__Escherichia_coli	1.1507479862
+UniRef50_E8ZN21: Histone acetyltransferase HPA2	1.1507479862
+UniRef50_E8ZN21: Histone acetyltransferase HPA2|g__Clostridium.s__Clostridium_beijerinckii	1.1507479862
+UniRef50_J2Y4U4: Transporter, major facilitator family	1.1507479862
+UniRef50_J2Y4U4: Transporter, major facilitator family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1507479862
+UniRef50_Q6F964	1.1507479862
+UniRef50_Q6F964|g__Acinetobacter.s__Acinetobacter_baumannii	1.1507479862
+UniRef50_UPI000464B947: hypothetical protein	1.1507479862
+UniRef50_UPI000464B947: hypothetical protein|unclassified	1.1507479862
+UniRef50_X0TP21: Marine sediment metagenome DNA, contig: S01H1_L01296	1.1507479862
+UniRef50_X0TP21: Marine sediment metagenome DNA, contig: S01H1_L01296|unclassified	1.1507479862
+UniRef50_L3TPA4	1.1507446479
+UniRef50_L3TPA4|unclassified	1.1507446479
+UniRef50_UPI000363D1D0: hypothetical protein	1.1506502127
+UniRef50_UPI000363D1D0: hypothetical protein|unclassified	1.1506502127
+UniRef50_L9LJJ8	1.1505223795
+UniRef50_L9LJJ8|unclassified	1.1505223795
+UniRef50_Q9RZS8	1.1504433519
+UniRef50_Q9RZS8|unclassified	1.1504433519
+UniRef50_B0T669: Undecaprenyl-diphosphatase	1.1501195642
+UniRef50_B0T669: Undecaprenyl-diphosphatase|unclassified	1.1501195642
+UniRef50_F9EIQ5	1.1500195716
+UniRef50_F9EIQ5|unclassified	1.1500195716
+UniRef50_W1G9Y5: Putative sugar ABC transport system, permease protein YtfT	1.1500170461
+UniRef50_W1G9Y5: Putative sugar ABC transport system, permease protein YtfT|unclassified	1.1500170461
+UniRef50_Z1BG35	1.1500047745
+UniRef50_Z1BG35|unclassified	1.1500047745
+UniRef50_P43329: ATP-dependent RNA helicase HrpA	1.1499559688
+UniRef50_P43329: ATP-dependent RNA helicase HrpA|g__Escherichia.s__Escherichia_coli	1.1499559688
+UniRef50_UPI0003FDFF4E: hypothetical protein	1.1498947195
+UniRef50_UPI0003FDFF4E: hypothetical protein|unclassified	1.1498947195
+UniRef50_UPI000465B0D7: hypothetical protein	1.1497679046
+UniRef50_UPI000465B0D7: hypothetical protein|unclassified	1.1497679046
+UniRef50_V4R6B4: Inosine 5'-monophosphate dehydrogenase	1.1496883952
+UniRef50_V4R6B4: Inosine 5'-monophosphate dehydrogenase|unclassified	1.1496883952
+UniRef50_B2ICD8	1.1494521975
+UniRef50_B2ICD8|unclassified	1.1494521975
+UniRef50_A6LY06: Helix-turn-helix-domain containing protein, AraC type	1.1494252874
+UniRef50_A6LY06: Helix-turn-helix-domain containing protein, AraC type|g__Clostridium.s__Clostridium_beijerinckii	1.1494252874
+UniRef50_O33945: Probable cat1 operon transcriptional activator	1.1494252874
+UniRef50_O33945: Probable cat1 operon transcriptional activator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1494252874
+UniRef50_Q3IVA9: Transcriptional regulator, LacI family	1.1494252874
+UniRef50_Q3IVA9: Transcriptional regulator, LacI family|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1494252874
+UniRef50_B9TG37	1.1489905829
+UniRef50_B9TG37|unclassified	1.1489905829
+UniRef50_X6GIM5	1.1489415577
+UniRef50_X6GIM5|unclassified	1.1489415577
+UniRef50_W1IC39: Chromosome I, genome	1.1488766182
+UniRef50_W1IC39: Chromosome I, genome|unclassified	1.1488766182
+UniRef50_UPI000016709E: NADH ubiquinone oxidoreductase subunit L	1.1488301406
+UniRef50_UPI000016709E: NADH ubiquinone oxidoreductase subunit L|unclassified	1.1488301406
+UniRef50_D4YX07	1.1487791856
+UniRef50_D4YX07|unclassified	1.1487791856
+UniRef50_E6E9V0	1.1487139588
+UniRef50_E6E9V0|unclassified	1.1487139588
+UniRef50_R8ZA08	1.1481423670
+UniRef50_R8ZA08|unclassified	1.1481423670
+UniRef50_A6WXN2: Cysteine synthase A	1.1481056257
+UniRef50_A6WXN2: Cysteine synthase A|g__Clostridium.s__Clostridium_beijerinckii	1.1481056257
+UniRef50_E2XH16	1.1481056257
+UniRef50_E2XH16|g__Escherichia.s__Escherichia_coli	1.1481056257
+UniRef50_M8UUK1	1.1481056257
+UniRef50_M8UUK1|unclassified	1.1481056257
+UniRef50_Q3IVE7: Transcriptional regulator, LysR family	1.1481056257
+UniRef50_Q3IVE7: Transcriptional regulator, LysR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1481056257
+UniRef50_S6BAX9	1.1480531274
+UniRef50_S6BAX9|unclassified	1.1480531274
+UniRef50_W8RVD2: ATPase of the AAA+ class	1.1480045854
+UniRef50_W8RVD2: ATPase of the AAA+ class|unclassified	1.1480045854
+UniRef50_V4RTL0	1.1479966455
+UniRef50_V4RTL0|unclassified	1.1479966455
+UniRef50_Q1QTL2: Nucleoside diphosphate kinase	1.1479787296
+UniRef50_Q1QTL2: Nucleoside diphosphate kinase|unclassified	1.1479787296
+UniRef50_C1N6L4: Predicted protein	1.1479080350
+UniRef50_C1N6L4: Predicted protein|unclassified	1.1479080350
+UniRef50_Q8KW99: RB143	1.1474469306
+UniRef50_Q8KW99: RB143|unclassified	1.1474469306
+UniRef50_Q13SY1: Probable chemoreceptor glutamine deamidase CheD	1.1471367763
+UniRef50_Q13SY1: Probable chemoreceptor glutamine deamidase CheD|unclassified	1.1471367763
+UniRef50_E3YUL2: Gp43	1.1470256659
+UniRef50_E3YUL2: Gp43|unclassified	1.1470256659
+UniRef50_Z4D8B4	1.1469389667
+UniRef50_Z4D8B4|unclassified	1.1469389667
+UniRef50_Q2SGE5: Predicted Zn-dependent Hydrolase of the beta-lactamase fold	1.1467889908
+UniRef50_Q2SGE5: Predicted Zn-dependent Hydrolase of the beta-lactamase fold|g__Acinetobacter.s__Acinetobacter_baumannii	1.1467889908
+UniRef50_X1JR01: Marine sediment metagenome DNA, contig: S03H2_S20607 (Fragment)	1.1466325674
+UniRef50_X1JR01: Marine sediment metagenome DNA, contig: S03H2_S20607 (Fragment)|unclassified	1.1466325674
+UniRef50_N0B4C8	1.1465515631
+UniRef50_N0B4C8|unclassified	1.1465515631
+UniRef50_Q2P0F4: ISXoo16 transposase	1.1465216228
+UniRef50_Q2P0F4: ISXoo16 transposase|unclassified	1.1465216228
+UniRef50_U9XFZ5	1.1464451511
+UniRef50_U9XFZ5|unclassified	1.1464451511
+UniRef50_E6QPK4	1.1463033361
+UniRef50_E6QPK4|unclassified	1.1463033361
+UniRef50_I6SW42: Transposase	1.1461830904
+UniRef50_I6SW42: Transposase|unclassified	1.1461830904
+UniRef50_A0A037V0H1: CRISPR-associated protein Cas3	1.1461387490
+UniRef50_A0A037V0H1: CRISPR-associated protein Cas3|unclassified	1.1461387490
+UniRef50_B3WA65: Probable potassium transport system protein kup	1.1461092607
+UniRef50_B3WA65: Probable potassium transport system protein kup|g__Streptococcus.s__Streptococcus_agalactiae	1.1461092607
+UniRef50_UPI00038EB1A1	1.1460692065
+UniRef50_UPI00038EB1A1|unclassified	1.1460692065
+UniRef50_W7WR07	1.1460458859
+UniRef50_W7WR07|unclassified	1.1460458859
+UniRef50_UPI00035C22D6: hypothetical protein	1.1459922381
+UniRef50_UPI00035C22D6: hypothetical protein|unclassified	1.1459922381
+UniRef50_A8Z5G9	1.1457340873
+UniRef50_A8Z5G9|unclassified	1.1457340873
+UniRef50_UPI00035CF421: hypothetical protein	1.1456792227
+UniRef50_UPI00035CF421: hypothetical protein|unclassified	1.1456792227
+UniRef50_Q3JG68	1.1456541948
+UniRef50_Q3JG68|unclassified	1.1456541948
+UniRef50_D8JP76	1.1454753723
+UniRef50_D8JP76|g__Acinetobacter.s__Acinetobacter_baumannii	1.1454753723
+UniRef50_Q9RS72	1.1454753723
+UniRef50_Q9RS72|g__Deinococcus.s__Deinococcus_radiodurans	1.1454753723
+UniRef50_Q9XAQ9: NADH-quinone oxidoreductase subunit F	1.1454753723
+UniRef50_Q9XAQ9: NADH-quinone oxidoreductase subunit F|g__Propionibacterium.s__Propionibacterium_acnes	1.1454753723
+UniRef50_R8ZHP4: MFS family transporter	1.1454753723
+UniRef50_R8ZHP4: MFS family transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1454753723
+UniRef50_C8RZX1	1.1454500816
+UniRef50_C8RZX1|unclassified	1.1454500816
+UniRef50_UPI000441F366	1.1451351903
+UniRef50_UPI000441F366|unclassified	1.1451351903
+UniRef50_UPI00037A6C91: hypothetical protein	1.1451070746
+UniRef50_UPI00037A6C91: hypothetical protein|unclassified	1.1451070746
+UniRef50_A4WV20: Lipocalin family protein	1.1450240664
+UniRef50_A4WV20: Lipocalin family protein|unclassified	1.1450240664
+UniRef50_O29329: Putative branched-chain-amino-acid aminotransferase	1.1448202582
+UniRef50_O29329: Putative branched-chain-amino-acid aminotransferase|unclassified	1.1448202582
+UniRef50_A6M1E2	1.1447894411
+UniRef50_A6M1E2|g__Clostridium.s__Clostridium_beijerinckii	1.1447894411
+UniRef50_UPI00037D3E99: hypothetical protein	1.1447496473
+UniRef50_UPI00037D3E99: hypothetical protein|unclassified	1.1447496473
+UniRef50_R4RK88: Ferrichrysobactin receptor	1.1446502661
+UniRef50_R4RK88: Ferrichrysobactin receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1446502661
+UniRef50_Q9HZX3: Protein-glutamine gamma-glutamyltransferase	1.1445209286
+UniRef50_Q9HZX3: Protein-glutamine gamma-glutamyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1445209286
+UniRef50_A1KWK7: Possible lipoprotein	1.1441647597
+UniRef50_A1KWK7: Possible lipoprotein|g__Neisseria.s__Neisseria_meningitidis	1.1441647597
+UniRef50_B9KLG3: Membrane protein	1.1441647597
+UniRef50_B9KLG3: Membrane protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1441647597
+UniRef50_F5M1V4: Periplasmic binding protein	1.1441647597
+UniRef50_F5M1V4: Periplasmic binding protein|unclassified	1.1441647597
+UniRef50_Q6A9J7: UPF0042 nucleotide-binding protein PPA0813	1.1441647597
+UniRef50_Q6A9J7: UPF0042 nucleotide-binding protein PPA0813|g__Propionibacterium.s__Propionibacterium_acnes	1.1441647597
+UniRef50_V8FZY5: Histidine kinase	1.1441647597
+UniRef50_V8FZY5: Histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	1.1441647597
+UniRef50_V4NEJ0: Cupin	1.1441061579
+UniRef50_V4NEJ0: Cupin|unclassified	1.1441061579
+UniRef50_A0A023VGG6	1.1440988875
+UniRef50_A0A023VGG6|unclassified	1.1440988875
+UniRef50_V9U4M1	1.1438375751
+UniRef50_V9U4M1|unclassified	1.1438375751
+UniRef50_C2YL90: CamS sex pheromone cAM373	1.1435711559
+UniRef50_C2YL90: CamS sex pheromone cAM373|unclassified	1.1435711559
+UniRef50_A4WQP0	1.1435374481
+UniRef50_A4WQP0|unclassified	1.1435374481
+UniRef50_K1ZZ76	1.1432793287
+UniRef50_K1ZZ76|unclassified	1.1432793287
+UniRef50_Z4PMA8	1.1432422034
+UniRef50_Z4PMA8|unclassified	1.1432422034
+UniRef50_UPI0003B30AEF: alpha/beta hydrolase	1.1430430359
+UniRef50_UPI0003B30AEF: alpha/beta hydrolase|unclassified	1.1430430359
+UniRef50_K1Z0Q6	1.1429703351
+UniRef50_K1Z0Q6|unclassified	1.1429703351
+UniRef50_I7GUS8	1.1429683762
+UniRef50_I7GUS8|g__Helicobacter.s__Helicobacter_pylori	1.1429683762
+UniRef50_R5WZ67	1.1429332751
+UniRef50_R5WZ67|unclassified	1.1429332751
+UniRef50_A6LZA6: Histidine kinase	1.1428571429
+UniRef50_A6LZA6: Histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	1.1428571429
+UniRef50_G0BED7: Transcriptional regulator, LysR family	1.1428571429
+UniRef50_G0BED7: Transcriptional regulator, LysR family|g__Acinetobacter.s__Acinetobacter_baumannii	1.1428571429
+UniRef50_A0A058TF07: Periplasmic binding protein/LacI transcriptionalregulator	1.1428000988
+UniRef50_A0A058TF07: Periplasmic binding protein/LacI transcriptionalregulator|unclassified	1.1428000988
+UniRef50_I9M5E8	1.1427968150
+UniRef50_I9M5E8|unclassified	1.1427968150
+UniRef50_UPI00037FAB1B: hypothetical protein, partial	1.1426196602
+UniRef50_UPI00037FAB1B: hypothetical protein, partial|unclassified	1.1426196602
+UniRef50_UPI0003675045: ABC transporter substrate-binding protein, partial	1.1426096176
+UniRef50_UPI0003675045: ABC transporter substrate-binding protein, partial|unclassified	1.1426096176
+UniRef50_UPI0001B41070: amino acid ABC transporter, ATP-binding protein	1.1425627335
+UniRef50_UPI0001B41070: amino acid ABC transporter, ATP-binding protein|unclassified	1.1425627335
+UniRef50_C8WG13	1.1417339924
+UniRef50_C8WG13|unclassified	1.1417339924
+UniRef50_P56396: Tryptophan--tRNA ligase	1.1415525114
+UniRef50_P56396: Tryptophan--tRNA ligase|g__Helicobacter.s__Helicobacter_pylori	1.1415525114
+UniRef50_Q9K068: Tyrosine recombinase XerD	1.1415525114
+UniRef50_Q9K068: Tyrosine recombinase XerD|g__Neisseria.s__Neisseria_meningitidis	1.1415525114
+UniRef50_Q9RUQ6: Carboxymethylenebutenolidase-related protein	1.1415525114
+UniRef50_Q9RUQ6: Carboxymethylenebutenolidase-related protein|g__Deinococcus.s__Deinococcus_radiodurans	1.1415525114
+UniRef50_R4REQ0	1.1415525114
+UniRef50_R4REQ0|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1415525114
+UniRef50_U9QVD4	1.1414842018
+UniRef50_U9QVD4|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1414842018
+UniRef50_UPI0003683F47: hypothetical protein	1.1412171842
+UniRef50_UPI0003683F47: hypothetical protein|unclassified	1.1412171842
+UniRef50_UPI0003B48FB4: hypothetical protein	1.1411163999
+UniRef50_UPI0003B48FB4: hypothetical protein|unclassified	1.1411163999
+UniRef50_UPI000371EB0B: hypothetical protein	1.1409013120
+UniRef50_UPI000371EB0B: hypothetical protein|unclassified	1.1409013120
+UniRef50_UPI00045E2E99: PREDICTED: LOW QUALITY PROTEIN: bcl-2-binding component 3	1.1405752254
+UniRef50_UPI00045E2E99: PREDICTED: LOW QUALITY PROTEIN: bcl-2-binding component 3|unclassified	1.1405752254
+UniRef50_A6LQ17: Malonyl CoA-acyl carrier protein transacylase	1.1402508552
+UniRef50_A6LQ17: Malonyl CoA-acyl carrier protein transacylase|g__Clostridium.s__Clostridium_beijerinckii	1.1402508552
+UniRef50_A6M372: SH3, type 3 domain protein	1.1402508552
+UniRef50_A6M372: SH3, type 3 domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.1402508552
+UniRef50_B7GK36: Fatty acid desaturase	1.1402508552
+UniRef50_B7GK36: Fatty acid desaturase|g__Clostridium.s__Clostridium_beijerinckii	1.1402508552
+UniRef50_M4R901	1.1402508552
+UniRef50_M4R901|g__Helicobacter.s__Helicobacter_pylori	1.1402508552
+UniRef50_X5ENC8: Fructose-bisphosphate aldolase	1.1402508552
+UniRef50_X5ENC8: Fructose-bisphosphate aldolase|g__Neisseria.s__Neisseria_meningitidis	1.1402508552
+UniRef50_D8JGN7: Surface antigen family protein	1.1402437389
+UniRef50_D8JGN7: Surface antigen family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.1402437389
+UniRef50_UPI0002D6C4DC: hypothetical protein	1.1401460733
+UniRef50_UPI0002D6C4DC: hypothetical protein|unclassified	1.1401460733
+UniRef50_P0A5L7: Glutamine-dependent NAD(+) synthetase	1.1401138383
+UniRef50_P0A5L7: Glutamine-dependent NAD(+) synthetase|g__Propionibacterium.s__Propionibacterium_acnes	1.1401138383
+UniRef50_A9DDF7	1.1400527889
+UniRef50_A9DDF7|unclassified	1.1400527889
+UniRef50_S6AYY0: Ferredoxin	1.1400059161
+UniRef50_S6AYY0: Ferredoxin|unclassified	1.1400059161
+UniRef50_UPI00035FE831: hypothetical protein	1.1398810181
+UniRef50_UPI00035FE831: hypothetical protein|unclassified	1.1398810181
+UniRef50_Q53L87	1.1398380660
+UniRef50_Q53L87|unclassified	1.1398380660
+UniRef50_UPI000463E58D: adenylyltransferase, partial	1.1398378304
+UniRef50_UPI000463E58D: adenylyltransferase, partial|unclassified	1.1398378304
+UniRef50_UPI00037E95DD: MULTISPECIES: hypothetical protein	1.1396444528
+UniRef50_UPI00037E95DD: MULTISPECIES: hypothetical protein|unclassified	1.1396444528
+UniRef50_K2BIT5	1.1396368117
+UniRef50_K2BIT5|unclassified	1.1396368117
+UniRef50_B7RFN1	1.1394807782
+UniRef50_B7RFN1|unclassified	1.1394807782
+UniRef50_UPI000466F3A3: hypothetical protein	1.1394653682
+UniRef50_UPI000466F3A3: hypothetical protein|unclassified	1.1394653682
+UniRef50_B2AYV7: Podospora anserina S mat+ genomic DNA chromosome 1, supercontig 2	1.1394644494
+UniRef50_B2AYV7: Podospora anserina S mat+ genomic DNA chromosome 1, supercontig 2|unclassified	1.1394644494
+UniRef50_UPI00029ADE51: transcriptional regulator	1.1394337573
+UniRef50_UPI00029ADE51: transcriptional regulator|unclassified	1.1394337573
+UniRef50_UPI000463A149: hypothetical protein	1.1394302098
+UniRef50_UPI000463A149: hypothetical protein|unclassified	1.1394302098
+UniRef50_W4FUF2	1.1393997383
+UniRef50_W4FUF2|unclassified	1.1393997383
+UniRef50_UPI000408C6D9: ribosome-binding factor A	1.1390425303
+UniRef50_UPI000408C6D9: ribosome-binding factor A|unclassified	1.1390425303
+UniRef50_R8BZS5	1.1390102223
+UniRef50_R8BZS5|unclassified	1.1390102223
+UniRef50_E8RVY2: TraU family protein	1.1389562634
+UniRef50_E8RVY2: TraU family protein|unclassified	1.1389562634
+UniRef50_B5Z6V3	1.1389521640
+UniRef50_B5Z6V3|g__Helicobacter.s__Helicobacter_pylori	1.1389521640
+UniRef50_G7M8A4	1.1389521640
+UniRef50_G7M8A4|g__Clostridium.s__Clostridium_beijerinckii	1.1389521640
+UniRef50_M9S0P6: LysR family transcriptional regulator	1.1389521640
+UniRef50_M9S0P6: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1389521640
+UniRef50_D7CRR2: Cytochrome c assembly protein	1.1388615236
+UniRef50_D7CRR2: Cytochrome c assembly protein|g__Deinococcus.s__Deinococcus_radiodurans	1.1388615236
+UniRef50_Q2YSG3	1.1387635314
+UniRef50_Q2YSG3|unclassified	1.1387635314
+UniRef50_UPI000372AF58: hypothetical protein	1.1386936271
+UniRef50_UPI000372AF58: hypothetical protein|unclassified	1.1386936271
+UniRef50_UPI000425358B: hypothetical protein	1.1386874633
+UniRef50_UPI000425358B: hypothetical protein|unclassified	1.1386874633
+UniRef50_A6V735	1.1386578837
+UniRef50_A6V735|unclassified	1.1386578837
+UniRef50_UPI0004702449: hypothetical protein, partial	1.1386541093
+UniRef50_UPI0004702449: hypothetical protein, partial|unclassified	1.1386541093
+UniRef50_K6ZF66	1.1385646429
+UniRef50_K6ZF66|unclassified	1.1385646429
+UniRef50_UPI0003A0D931: chemotaxis protein CheY	1.1384345145
+UniRef50_UPI0003A0D931: chemotaxis protein CheY|unclassified	1.1384345145
+UniRef50_Q92YJ8: Transposase	1.1384082336
+UniRef50_Q92YJ8: Transposase|unclassified	1.1384082336
+UniRef50_UPI00036394EC: hypothetical protein	1.1379473693
+UniRef50_UPI00036394EC: hypothetical protein|unclassified	1.1379473693
+UniRef50_A6LZK3: Histidine kinase	1.1376564278
+UniRef50_A6LZK3: Histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	1.1376564278
+UniRef50_B7GQA5: Binding-protein-dependent transport systems inner membrane component	1.1376564278
+UniRef50_B7GQA5: Binding-protein-dependent transport systems inner membrane component|g__Propionibacterium.s__Propionibacterium_acnes	1.1376564278
+UniRef50_B9KL61: Transporter, RhaT family, DMT superfamily	1.1376564278
+UniRef50_B9KL61: Transporter, RhaT family, DMT superfamily|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1376564278
+UniRef50_G0DXB0	1.1376564278
+UniRef50_G0DXB0|g__Propionibacterium.s__Propionibacterium_acnes	1.1376564278
+UniRef50_UPI00029CAE2A: transposase	1.1376564278
+UniRef50_UPI00029CAE2A: transposase|unclassified	1.1376564278
+UniRef50_Q6QF53: Fumarate reductase subunit D (Fragment)	1.1372174338
+UniRef50_Q6QF53: Fumarate reductase subunit D (Fragment)|unclassified	1.1372174338
+UniRef50_V8G2W5: Integrase	1.1369003952
+UniRef50_V8G2W5: Integrase|unclassified	1.1369003952
+UniRef50_UPI00046F4CAF: hypothetical protein	1.1367131728
+UniRef50_UPI00046F4CAF: hypothetical protein|unclassified	1.1367131728
+UniRef50_H0TU43	1.1365565230
+UniRef50_H0TU43|unclassified	1.1365565230
+UniRef50_A6M012: ABC transporter related	1.1363636364
+UniRef50_A6M012: ABC transporter related|g__Clostridium.s__Clostridium_beijerinckii	1.1363636364
+UniRef50_D3SQB6: Urea ABC transporter, urea binding protein	1.1363636364
+UniRef50_D3SQB6: Urea ABC transporter, urea binding protein|g__Deinococcus.s__Deinococcus_radiodurans	1.1363636364
+UniRef50_D6Y938: Binding-protein-dependent transport systems inner membrane component	1.1363636364
+UniRef50_D6Y938: Binding-protein-dependent transport systems inner membrane component|g__Propionibacterium.s__Propionibacterium_acnes	1.1363636364
+UniRef50_Q5F6R3: Agmatinase	1.1363636364
+UniRef50_Q5F6R3: Agmatinase|g__Neisseria.s__Neisseria_meningitidis	1.1363636364
+UniRef50_R4ZR71: CylF	1.1363636364
+UniRef50_R4ZR71: CylF|g__Streptococcus.s__Streptococcus_agalactiae	1.1363636364
+UniRef50_V5VFB4: Transcriptional regulator	1.1363636364
+UniRef50_V5VFB4: Transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	1.1363636364
+UniRef50_F4TXG1: Ribonucleoside diphosphage reductase 1, beta subunit, B2	1.1362117033
+UniRef50_F4TXG1: Ribonucleoside diphosphage reductase 1, beta subunit, B2|unclassified	1.1362117033
+UniRef50_U5MQ56: Serine/threonine protein phosphatase	1.1360255161
+UniRef50_U5MQ56: Serine/threonine protein phosphatase|g__Clostridium.s__Clostridium_beijerinckii	1.1360255161
+UniRef50_UPI0003AD5F31: hypothetical protein	1.1359509609
+UniRef50_UPI0003AD5F31: hypothetical protein|unclassified	1.1359509609
+UniRef50_Q82WT5: Sulfate/thiosulfate import ATP-binding protein CysA	1.1358057653
+UniRef50_Q82WT5: Sulfate/thiosulfate import ATP-binding protein CysA|unclassified	1.1358057653
+UniRef50_UPI0003637A07: hypothetical protein	1.1357935017
+UniRef50_UPI0003637A07: hypothetical protein|unclassified	1.1357935017
+UniRef50_U7PIB7: Membrane protein	1.1353909228
+UniRef50_U7PIB7: Membrane protein|unclassified	1.1353909228
+UniRef50_X1T7L9: Marine sediment metagenome DNA, contig: S12H4_L07802 (Fragment)	1.1351982292
+UniRef50_X1T7L9: Marine sediment metagenome DNA, contig: S12H4_L07802 (Fragment)|unclassified	1.1351982292
+UniRef50_Q37626: NADH-ubiquinone oxidoreductase chain 6	1.1351107194
+UniRef50_Q37626: NADH-ubiquinone oxidoreductase chain 6|unclassified	1.1351107194
+UniRef50_D8U104	1.1350737798
+UniRef50_D8U104|unclassified	1.1350737798
+UniRef50_Q8XNN2: Cell division protein FtsX	1.1350737798
+UniRef50_Q8XNN2: Cell division protein FtsX|g__Clostridium.s__Clostridium_beijerinckii	1.1350737798
+UniRef50_B1XAJ3: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	1.1350671869
+UniRef50_B1XAJ3: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|g__Escherichia.s__Escherichia_coli	0.8992922117
+UniRef50_B1XAJ3: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.2357749751
+UniRef50_W4UAD6	1.1349292084
+UniRef50_W4UAD6|unclassified	1.1349292084
+UniRef50_B7GZ54: Actinomycin synthetase II	1.1348457819
+UniRef50_B7GZ54: Actinomycin synthetase II|g__Acinetobacter.s__Acinetobacter_baumannii	1.1348457819
+UniRef50_A0A023FCR1: Putative secreted mucin	1.1345963534
+UniRef50_A0A023FCR1: Putative secreted mucin|unclassified	1.1345963534
+UniRef50_UPI000347B4A4: hypothetical protein	1.1345910555
+UniRef50_UPI000347B4A4: hypothetical protein|unclassified	1.1345910555
+UniRef50_V9R3G7	1.1343354451
+UniRef50_V9R3G7|unclassified	1.1343354451
+UniRef50_UPI000169DAD5: malic enzyme, partial	1.1342993662
+UniRef50_UPI000169DAD5: malic enzyme, partial|unclassified	1.1342993662
+UniRef50_A9WDZ1: Imidazoleglycerol-phosphate dehydratase	1.1342320211
+UniRef50_A9WDZ1: Imidazoleglycerol-phosphate dehydratase|unclassified	1.1342320211
+UniRef50_H9UVF3: PilL	1.1340090979
+UniRef50_H9UVF3: PilL|unclassified	1.1340090979
+UniRef50_UPI0003691144: hypothetical protein	1.1339160299
+UniRef50_UPI0003691144: hypothetical protein|unclassified	1.1339160299
+UniRef50_UPI000350A94C: PREDICTED: serine/arginine repetitive matrix protein 2-like, partial	1.1337872124
+UniRef50_UPI000350A94C: PREDICTED: serine/arginine repetitive matrix protein 2-like, partial|unclassified	1.1337872124
+UniRef50_A3PP57: Glutathione S-transferase family protein	1.1337868481
+UniRef50_A3PP57: Glutathione S-transferase family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1337868481
+UniRef50_R5BXF1: Aspartokinase	1.1337868481
+UniRef50_R5BXF1: Aspartokinase|g__Clostridium.s__Clostridium_beijerinckii	1.1337868481
+UniRef50_S9W524	1.1337868481
+UniRef50_S9W524|unclassified	1.1337868481
+UniRef50_X1MZP9: Marine sediment metagenome DNA, contig: S06H3_S10276 (Fragment)	1.1336118374
+UniRef50_X1MZP9: Marine sediment metagenome DNA, contig: S06H3_S10276 (Fragment)|unclassified	1.1336118374
+UniRef50_G5MBI8	1.1335612507
+UniRef50_G5MBI8|unclassified	1.1335612507
+UniRef50_W1WF07: ATPase, AAA family (Fragment)	1.1334730048
+UniRef50_W1WF07: ATPase, AAA family (Fragment)|unclassified	1.1334730048
+UniRef50_V4SQB0: Beta-lactamase	1.1333862793
+UniRef50_V4SQB0: Beta-lactamase|unclassified	1.1333862793
+UniRef50_UPI0003C1B314: PREDICTED: NADH-ubiquinone oxidoreductase chain 6-like	1.1333656543
+UniRef50_UPI0003C1B314: PREDICTED: NADH-ubiquinone oxidoreductase chain 6-like|unclassified	1.1333656543
+UniRef50_S7XKC4: Transposase	1.1333435888
+UniRef50_S7XKC4: Transposase|unclassified	1.1333435888
+UniRef50_S9TLR2: LigA	1.1332382910
+UniRef50_S9TLR2: LigA|unclassified	1.1332382910
+UniRef50_W9UIV8	1.1329573222
+UniRef50_W9UIV8|unclassified	1.1329573222
+UniRef50_A0A059DUL4	1.1328875797
+UniRef50_A0A059DUL4|unclassified	1.1328875797
+UniRef50_UPI000237E869: phage integrase	1.1328770424
+UniRef50_UPI000237E869: phage integrase|unclassified	1.1328770424
+UniRef50_F3TG50	1.1326033330
+UniRef50_F3TG50|unclassified	1.1326033330
+UniRef50_A5WDL1: Peptidoglycan glycosyltransferase	1.1325028313
+UniRef50_A5WDL1: Peptidoglycan glycosyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.1325028313
+UniRef50_A6LWJ6	1.1325028313
+UniRef50_A6LWJ6|g__Clostridium.s__Clostridium_beijerinckii	1.1325028313
+UniRef50_K7RVB3: DNA recombination RmuC-like protein	1.1325028313
+UniRef50_K7RVB3: DNA recombination RmuC-like protein|g__Propionibacterium.s__Propionibacterium_acnes	1.1325028313
+UniRef50_P65894: Phosphoribosylamine--glycine ligase	1.1325028313
+UniRef50_P65894: Phosphoribosylamine--glycine ligase|g__Propionibacterium.s__Propionibacterium_acnes	1.1325028313
+UniRef50_W1EFD7: IncF plasmid conjugative transfer DNA-nicking and unwinding protein TraI	1.1323388861
+UniRef50_W1EFD7: IncF plasmid conjugative transfer DNA-nicking and unwinding protein TraI|unclassified	1.1323388861
+UniRef50_A0A021G6W9	1.1322444566
+UniRef50_A0A021G6W9|unclassified	1.1322444566
+UniRef50_A0A024HF60: Hypothetical membrane protein	1.1321459172
+UniRef50_A0A024HF60: Hypothetical membrane protein|unclassified	1.1321459172
+UniRef50_I4XYD4	1.1321375583
+UniRef50_I4XYD4|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1031439603
+UniRef50_I4XYD4|unclassified	0.0289935980
+UniRef50_UPI0001BF7CE0: hypothetical protein SMAC_11079	1.1321199777
+UniRef50_UPI0001BF7CE0: hypothetical protein SMAC_11079|unclassified	1.1321199777
+UniRef50_K7TVK3	1.1321077976
+UniRef50_K7TVK3|unclassified	1.1321077976
+UniRef50_UPI0002628793: organic solvent ABC transporter ATP-binding protein	1.1320555755
+UniRef50_UPI0002628793: organic solvent ABC transporter ATP-binding protein|unclassified	1.1320555755
+UniRef50_O31631: Cystathionine gamma-synthase/O-acetylhomoserine (thiol)-lyase	1.1320233993
+UniRef50_O31631: Cystathionine gamma-synthase/O-acetylhomoserine (thiol)-lyase|unclassified	1.1320233993
+UniRef50_G5QSI8: Transcriptional regulator AraC	1.1318517292
+UniRef50_G5QSI8: Transcriptional regulator AraC|unclassified	1.1318517292
+UniRef50_T9J5M7	1.1318507057
+UniRef50_T9J5M7|unclassified	1.1318507057
+UniRef50_UPI000472F33D: hypothetical protein	1.1315517360
+UniRef50_UPI000472F33D: hypothetical protein|unclassified	1.1315517360
+UniRef50_UPI00027F529F	1.1315368069
+UniRef50_UPI00027F529F|unclassified	1.1315368069
+UniRef50_W8RSY4: Flp pilus assembly protein, pilin Flp	1.1315129827
+UniRef50_W8RSY4: Flp pilus assembly protein, pilin Flp|unclassified	1.1315129827
+UniRef50_UPI0002491B34: amino acid:H(+) symporter, partial	1.1314932750
+UniRef50_UPI0002491B34: amino acid:H(+) symporter, partial|unclassified	1.1314932750
+UniRef50_C4J5G1	1.1314519290
+UniRef50_C4J5G1|unclassified	1.1314519290
+UniRef50_M9S6J1	1.1312217195
+UniRef50_M9S6J1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1312217195
+UniRef50_Q72HC1: Probable dual-specificity RNA methyltransferase RlmN	1.1312217195
+UniRef50_Q72HC1: Probable dual-specificity RNA methyltransferase RlmN|g__Deinococcus.s__Deinococcus_radiodurans	1.1312217195
+UniRef50_Q9HXC6	1.1312217195
+UniRef50_Q9HXC6|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1312217195
+UniRef50_W9F1Z6	1.1312217195
+UniRef50_W9F1Z6|g__Staphylococcus.s__Staphylococcus_aureus	1.1312217195
+UniRef50_A5E987: Fructose-1,6-bisphosphatase class 1 1	1.1307825509
+UniRef50_A5E987: Fructose-1,6-bisphosphatase class 1 1|unclassified	1.1307825509
+UniRef50_UPI0001BF7CE5: hypothetical protein SMAC_10217, partial	1.1304882776
+UniRef50_UPI0001BF7CE5: hypothetical protein SMAC_10217, partial|unclassified	1.1304882776
+UniRef50_UPI00036E9D0F: hypothetical protein	1.1304636404
+UniRef50_UPI00036E9D0F: hypothetical protein|unclassified	1.1304636404
+UniRef50_UPI000255C63D: FhuG, partial	1.1303497154
+UniRef50_UPI000255C63D: FhuG, partial|unclassified	1.1303497154
+UniRef50_Q2NAG0	1.1301506719
+UniRef50_Q2NAG0|unclassified	1.1301506719
+UniRef50_D8JPW0: Cytochrome oxidase maturation protein, cbb3-type	1.1300853435
+UniRef50_D8JPW0: Cytochrome oxidase maturation protein, cbb3-type|unclassified	1.1300853435
+UniRef50_G7LHS1: 50S ribosomal protein L11 (Fragment)	1.1299848109
+UniRef50_G7LHS1: 50S ribosomal protein L11 (Fragment)|unclassified	1.1299848109
+UniRef50_X7Y3A8	1.1299654915
+UniRef50_X7Y3A8|unclassified	1.1299654915
+UniRef50_A3N7I6: MFS transporter	1.1299435028
+UniRef50_A3N7I6: MFS transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1299435028
+UniRef50_C9XK28: L-lactate dehydrogenase	1.1299435028
+UniRef50_C9XK28: L-lactate dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	1.1299435028
+UniRef50_Q9RWV7: Tryptophan--tRNA ligase	1.1299435028
+UniRef50_Q9RWV7: Tryptophan--tRNA ligase|g__Deinococcus.s__Deinococcus_radiodurans	1.1299435028
+UniRef50_R7D190: 6-phosphogluconate dehydrogenase	1.1299435028
+UniRef50_R7D190: 6-phosphogluconate dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	1.1299435028
+UniRef50_S8PEA5: Diacylglycerol kinase	1.1299435028
+UniRef50_S8PEA5: Diacylglycerol kinase|g__Streptococcus.s__Streptococcus_agalactiae	1.1299435028
+UniRef50_W0HG73: Malonyl CoA-acyl carrier protein transacylase	1.1299435028
+UniRef50_W0HG73: Malonyl CoA-acyl carrier protein transacylase|g__Acinetobacter.s__Acinetobacter_baumannii	1.1299435028
+UniRef50_Q9X341: PXO1-71	1.1298439884
+UniRef50_Q9X341: PXO1-71|unclassified	1.1298439884
+UniRef50_R5MTV1	1.1294803167
+UniRef50_R5MTV1|unclassified	1.1294803167
+UniRef50_P55218: O-succinylhomoserine sulfhydrylase	1.1291993315
+UniRef50_P55218: O-succinylhomoserine sulfhydrylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8305647841
+UniRef50_P55218: O-succinylhomoserine sulfhydrylase|unclassified	0.2986345475
+UniRef50_UPI00036B28F1: hypothetical protein	1.1291599326
+UniRef50_UPI00036B28F1: hypothetical protein|unclassified	1.1291599326
+UniRef50_UPI0003B7B702: lipopolysaccharide kinase	1.1290593642
+UniRef50_UPI0003B7B702: lipopolysaccharide kinase|unclassified	1.1290593642
+UniRef50_V6UU93	1.1290269409
+UniRef50_V6UU93|unclassified	1.1290269409
+UniRef50_W9GJ48: Sugar ABC transporter substrate-binding protein	1.1290124240
+UniRef50_W9GJ48: Sugar ABC transporter substrate-binding protein|unclassified	1.1290124240
+UniRef50_E2ARS9	1.1289617635
+UniRef50_E2ARS9|unclassified	1.1289617635
+UniRef50_A6LXP0: Multicopper oxidase, type 3	1.1286681716
+UniRef50_A6LXP0: Multicopper oxidase, type 3|g__Clostridium.s__Clostridium_beijerinckii	1.1286681716
+UniRef50_G7MAU3: Cobalt ABC transporter, inner membrane subunit CbiQ	1.1286681716
+UniRef50_G7MAU3: Cobalt ABC transporter, inner membrane subunit CbiQ|g__Clostridium.s__Clostridium_beijerinckii	1.1286681716
+UniRef50_R7IAE3	1.1286681716
+UniRef50_R7IAE3|unclassified	1.1286681716
+UniRef50_K5TSN2	1.1286369694
+UniRef50_K5TSN2|unclassified	1.1286369694
+UniRef50_UPI0004110BE6: FAD-binding molybdopterin dehydrogenase	1.1285338355
+UniRef50_UPI0004110BE6: FAD-binding molybdopterin dehydrogenase|unclassified	1.1285338355
+UniRef50_K0R926	1.1283119205
+UniRef50_K0R926|unclassified	1.1283119205
+UniRef50_I2UAI2	1.1281813669
+UniRef50_I2UAI2|unclassified	1.1281813669
+UniRef50_Q1JLP7	1.1280769543
+UniRef50_Q1JLP7|unclassified	1.1280769543
+UniRef50_A1KU06: Sulfite reductase [NADPH] flavoprotein alpha-component	1.1279132461
+UniRef50_A1KU06: Sulfite reductase [NADPH] flavoprotein alpha-component|unclassified	0.5760368664
+UniRef50_A1KU06: Sulfite reductase [NADPH] flavoprotein alpha-component|g__Neisseria.s__Neisseria_meningitidis	0.5518763797
+UniRef50_R6HN40: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG	1.1275808312
+UniRef50_R6HN40: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG|unclassified	1.1275808312
+UniRef50_W1FRK9: Putative nucleotide di-P-sugar epimerase or dehydratase	1.1275047710
+UniRef50_W1FRK9: Putative nucleotide di-P-sugar epimerase or dehydratase|unclassified	1.1275047710
+UniRef50_Q3KKD3	1.1274967013
+UniRef50_Q3KKD3|unclassified	1.1274967013
+UniRef50_M4QWY4: Acyl-CoA dehydrogenase	1.1273957159
+UniRef50_M4QWY4: Acyl-CoA dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	1.1273957159
+UniRef50_Q1RQN9: AfsA-like protein	1.1273957159
+UniRef50_Q1RQN9: AfsA-like protein|unclassified	1.1273957159
+UniRef50_Q9RSV9	1.1273957159
+UniRef50_Q9RSV9|g__Deinococcus.s__Deinococcus_radiodurans	1.1273957159
+UniRef50_UPI0003291CCE: PREDICTED: E3 ubiquitin-protein ligase ICP0-like	1.1272544455
+UniRef50_UPI0003291CCE: PREDICTED: E3 ubiquitin-protein ligase ICP0-like|unclassified	1.1272544455
+UniRef50_UPI00036EE042: hypothetical protein	1.1270847667
+UniRef50_UPI00036EE042: hypothetical protein|unclassified	1.1270847667
+UniRef50_UPI000378DA6C: Cro/Cl family transcriptional regulator	1.1270402282
+UniRef50_UPI000378DA6C: Cro/Cl family transcriptional regulator|unclassified	1.1270402282
+UniRef50_UPI00016C0059: 50S ribosomal protein L24	1.1270340124
+UniRef50_UPI00016C0059: 50S ribosomal protein L24|unclassified	1.1270340124
+UniRef50_UPI000376D6FC: hypothetical protein	1.1268770387
+UniRef50_UPI000376D6FC: hypothetical protein|unclassified	1.1268770387
+UniRef50_UPI00030FAF91: hypothetical protein	1.1268731421
+UniRef50_UPI00030FAF91: hypothetical protein|unclassified	1.1268731421
+UniRef50_UPI0003C7AAFC: hypothetical protein, partial	1.1267917237
+UniRef50_UPI0003C7AAFC: hypothetical protein, partial|unclassified	1.1267917237
+UniRef50_G8WTN9	1.1267387304
+UniRef50_G8WTN9|unclassified	1.1267387304
+UniRef50_V8NBJ0	1.1266215002
+UniRef50_V8NBJ0|unclassified	1.1266215002
+UniRef50_Q1RKE8: NADH-quinone oxidoreductase subunit J	1.1265984469
+UniRef50_Q1RKE8: NADH-quinone oxidoreductase subunit J|unclassified	1.1265984469
+UniRef50_U5MLC6: AAA domain protein	1.1265060705
+UniRef50_U5MLC6: AAA domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.1265060705
+UniRef50_L8MLB7: Putative membrane protein, clustering with ActP	1.1263928619
+UniRef50_L8MLB7: Putative membrane protein, clustering with ActP|unclassified	1.1263928619
+UniRef50_E2ZW11	1.1261261261
+UniRef50_E2ZW11|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1261261261
+UniRef50_F0KLK8: LysR family transcriptional regulatory protein	1.1261261261
+UniRef50_F0KLK8: LysR family transcriptional regulatory protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.1261261261
+UniRef50_P50933: L-lactate dehydrogenase	1.1261261261
+UniRef50_P50933: L-lactate dehydrogenase|g__Deinococcus.s__Deinococcus_radiodurans	1.1261261261
+UniRef50_Q9RT22: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 2	1.1261035554
+UniRef50_Q9RT22: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 2|g__Deinococcus.s__Deinococcus_radiodurans	1.0214504597
+UniRef50_Q9RT22: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 2|unclassified	0.1046530958
+UniRef50_I1EPZ1	1.1260870274
+UniRef50_I1EPZ1|unclassified	1.1260870274
+UniRef50_UPI0003B53AEE: hemolysin secretion protein D, partial	1.1259540452
+UniRef50_UPI0003B53AEE: hemolysin secretion protein D, partial|unclassified	1.1259540452
+UniRef50_A5KZG1: Sex pilus assembly and synthesis protein TraW	1.1258595977
+UniRef50_A5KZG1: Sex pilus assembly and synthesis protein TraW|unclassified	1.1258595977
+UniRef50_UPI00036F4DBC: hypothetical protein	1.1258335404
+UniRef50_UPI00036F4DBC: hypothetical protein|unclassified	1.1258335404
+UniRef50_A8FIC1: Serine hydroxymethyltransferase	1.1257811264
+UniRef50_A8FIC1: Serine hydroxymethyltransferase|unclassified	1.1257811264
+UniRef50_Q99ZP1: Serine hydroxymethyltransferase	1.1257263487
+UniRef50_Q99ZP1: Serine hydroxymethyltransferase|unclassified	1.1257263487
+UniRef50_A7IEB4	1.1255952031
+UniRef50_A7IEB4|unclassified	1.1255952031
+UniRef50_V4RBJ9: Phenazine biosynthesis protein	1.1254863069
+UniRef50_V4RBJ9: Phenazine biosynthesis protein|unclassified	1.1254863069
+UniRef50_UPI00016A548E: hypothetical protein	1.1254292517
+UniRef50_UPI00016A548E: hypothetical protein|unclassified	1.1254292517
+UniRef50_UPI0004638808: hypothetical protein, partial	1.1254043287
+UniRef50_UPI0004638808: hypothetical protein, partial|unclassified	1.1254043287
+UniRef50_UPI0003F65EE9: luciferase	1.1253063152
+UniRef50_UPI0003F65EE9: luciferase|unclassified	1.1253063152
+UniRef50_D3E0D3: Energy-converting hydrogenase B subunit H EhbH	1.1252525980
+UniRef50_D3E0D3: Energy-converting hydrogenase B subunit H EhbH|unclassified	1.1252525980
+UniRef50_C7CBT9: RepC-like protein	1.1250603859
+UniRef50_C7CBT9: RepC-like protein|unclassified	1.1250603859
+UniRef50_A0A017YDK6	1.1250486727
+UniRef50_A0A017YDK6|unclassified	1.1250486727
+UniRef50_I3TGS2	1.1249869189
+UniRef50_I3TGS2|unclassified	1.1249869189
+UniRef50_A3M2Y1: Pseudouridine synthase	1.1248593926
+UniRef50_A3M2Y1: Pseudouridine synthase|g__Acinetobacter.s__Acinetobacter_baumannii	1.1248593926
+UniRef50_G7M9D2: Pseudouridine synthase, RluA family	1.1248593926
+UniRef50_G7M9D2: Pseudouridine synthase, RluA family|g__Clostridium.s__Clostridium_beijerinckii	1.1248593926
+UniRef50_G8VQK9	1.1248593926
+UniRef50_G8VQK9|g__Propionibacterium.s__Propionibacterium_acnes	1.1248593926
+UniRef50_Q2HA23	1.1248593926
+UniRef50_Q2HA23|unclassified	1.1248593926
+UniRef50_Q9RR78: Protoheme IX farnesyltransferase	1.1248593926
+UniRef50_Q9RR78: Protoheme IX farnesyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	1.1248593926
+UniRef50_UPI0003C19124	1.1246308718
+UniRef50_UPI0003C19124|unclassified	1.1246308718
+UniRef50_T0P3W6	1.1246173059
+UniRef50_T0P3W6|unclassified	1.1246173059
+UniRef50_Q1QKG6	1.1244684563
+UniRef50_Q1QKG6|unclassified	1.1244684563
+UniRef50_W6M2Y3	1.1244078141
+UniRef50_W6M2Y3|unclassified	1.1244078141
+UniRef50_A6LWU9: Aldo/keto reductase	1.1235955056
+UniRef50_A6LWU9: Aldo/keto reductase|g__Clostridium.s__Clostridium_beijerinckii	1.1235955056
+UniRef50_F5M0N6: AraC family transcriptional regulator	1.1235955056
+UniRef50_F5M0N6: AraC family transcriptional regulator|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1235955056
+UniRef50_I1ZNC1	1.1235955056
+UniRef50_I1ZNC1|g__Streptococcus.s__Streptococcus_agalactiae	1.1235955056
+UniRef50_I2C019: Transcriptional regulator, LysR family	1.1235955056
+UniRef50_I2C019: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1235955056
+UniRef50_T2A3K0: MafB family adhesin protein	1.1235955056
+UniRef50_T2A3K0: MafB family adhesin protein|g__Neisseria.s__Neisseria_meningitidis	1.1235955056
+UniRef50_X7ZYT1: Putative lipid transfer protein/keto acyl-CoA thiolase Ltp4	1.1235955056
+UniRef50_X7ZYT1: Putative lipid transfer protein/keto acyl-CoA thiolase Ltp4|unclassified	1.1235955056
+UniRef50_UPI0004793932: ArsR family transcriptional regulator	1.1234829094
+UniRef50_UPI0004793932: ArsR family transcriptional regulator|unclassified	1.1234829094
+UniRef50_Q05719: NifB (Fragment)	1.1234441865
+UniRef50_Q05719: NifB (Fragment)|unclassified	1.1234441865
+UniRef50_K7DZ35	1.1233549798
+UniRef50_K7DZ35|unclassified	1.1233549798
+UniRef50_R8AFJ4: O-succinylbenzoic acid synthetase (Fragment)	1.1232271645
+UniRef50_R8AFJ4: O-succinylbenzoic acid synthetase (Fragment)|unclassified	1.1232271645
+UniRef50_Q52693: NifD protein (Fragment)	1.1229785822
+UniRef50_Q52693: NifD protein (Fragment)|unclassified	1.1229785822
+UniRef50_U3T3H2: Outer membrane cobalamin receptor protein	1.1229351240
+UniRef50_U3T3H2: Outer membrane cobalamin receptor protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.1229351240
+UniRef50_UPI000370DB0C: hypothetical protein	1.1226197153
+UniRef50_UPI000370DB0C: hypothetical protein|unclassified	1.1226197153
+UniRef50_UPI0002556A08: signaling repeat/GGDEF domain/EAL domain-containing protein	1.1225439246
+UniRef50_UPI0002556A08: signaling repeat/GGDEF domain/EAL domain-containing protein|unclassified	1.1225439246
+UniRef50_C1DKE6	1.1224342920
+UniRef50_C1DKE6|unclassified	1.1224342920
+UniRef50_S9SD60: Flagellar basal body protein	1.1224336058
+UniRef50_S9SD60: Flagellar basal body protein|unclassified	1.1224336058
+UniRef50_UPI0003BB7AFE: PREDICTED: isobutyryl-CoA dehydrogenase, mitochondrial-like, partial	1.1223441502
+UniRef50_UPI0003BB7AFE: PREDICTED: isobutyryl-CoA dehydrogenase, mitochondrial-like, partial|unclassified	1.1223441502
+UniRef50_B2I7A0: Malonyl CoA-acyl carrier protein transacylase	1.1223344557
+UniRef50_B2I7A0: Malonyl CoA-acyl carrier protein transacylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1223344557
+UniRef50_F0K2U2: Phosphate starvation inducible protein family	1.1223344557
+UniRef50_F0K2U2: Phosphate starvation inducible protein family|g__Streptococcus.s__Streptococcus_agalactiae	1.1223344557
+UniRef50_UPI0003AE2007	1.1223344557
+UniRef50_UPI0003AE2007|unclassified	1.1223344557
+UniRef50_W8R6G7: DNA-3-methyladenine glycosidase	1.1223344557
+UniRef50_W8R6G7: DNA-3-methyladenine glycosidase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1223344557
+UniRef50_UPI00036F07C3: hypothetical protein, partial	1.1222511387
+UniRef50_UPI00036F07C3: hypothetical protein, partial|unclassified	1.1222511387
+UniRef50_W0ICV0: Photosystem reaction center subunit H	1.1220910402
+UniRef50_W0ICV0: Photosystem reaction center subunit H|unclassified	1.1220910402
+UniRef50_B4U3Z1	1.1220906324
+UniRef50_B4U3Z1|unclassified	1.1220906324
+UniRef50_UPI000288375B: Na+-driven multidrug efflux pump	1.1216572782
+UniRef50_UPI000288375B: Na+-driven multidrug efflux pump|unclassified	1.1216572782
+UniRef50_I0LEQ3	1.1215618651
+UniRef50_I0LEQ3|unclassified	1.1215618651
+UniRef50_G9L997: GMP synthase (Fragment)	1.1212748435
+UniRef50_G9L997: GMP synthase (Fragment)|unclassified	1.1212748435
+UniRef50_G8U754	1.1212045805
+UniRef50_G8U754|unclassified	1.1212045805
+UniRef50_UPI000478A0EF: hypothetical protein, partial	1.1211763270
+UniRef50_UPI000478A0EF: hypothetical protein, partial|unclassified	1.1211763270
+UniRef50_UPI000464B3BC: hypothetical protein	1.1211218979
+UniRef50_UPI000464B3BC: hypothetical protein|unclassified	1.1211218979
+UniRef50_Q97PK4: Ferredoxin	1.1211107904
+UniRef50_Q97PK4: Ferredoxin|unclassified	1.1211107904
+UniRef50_B0G2M7	1.1210888971
+UniRef50_B0G2M7|unclassified	1.1210888971
+UniRef50_Q4KFA0: Copper sensor histidine kinase	1.1210762332
+UniRef50_Q4KFA0: Copper sensor histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1210762332
+UniRef50_Q88MS8: Probable biofilm formation methyltransferase WspC	1.1210762332
+UniRef50_Q88MS8: Probable biofilm formation methyltransferase WspC|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1210762332
+UniRef50_C3AJR5: Penicillin-binding protein, 1A	1.1209225058
+UniRef50_C3AJR5: Penicillin-binding protein, 1A|unclassified	1.1209225058
+UniRef50_G7DEN0	1.1208631986
+UniRef50_G7DEN0|unclassified	1.1208631986
+UniRef50_X5DYY0	1.1208359391
+UniRef50_X5DYY0|unclassified	1.1208359391
+UniRef50_U4V4V5	1.1207656320
+UniRef50_U4V4V5|unclassified	1.1207656320
+UniRef50_V8N4U8: RNA-binding protein 25 (Fragment)	1.1206978478
+UniRef50_V8N4U8: RNA-binding protein 25 (Fragment)|unclassified	1.1206978478
+UniRef50_O26119: Ribonuclease P protein component 1	1.1206849803
+UniRef50_O26119: Ribonuclease P protein component 1|unclassified	1.1206849803
+UniRef50_UPI0003B45936: peptidyl-prolyl cis-trans isomerase	1.1206481955
+UniRef50_UPI0003B45936: peptidyl-prolyl cis-trans isomerase|unclassified	1.1206481955
+UniRef50_B5Z6E9: Acetyl-coenzyme A synthetase	1.1205993482
+UniRef50_B5Z6E9: Acetyl-coenzyme A synthetase|g__Helicobacter.s__Helicobacter_pylori	1.0582970489
+UniRef50_B5Z6E9: Acetyl-coenzyme A synthetase|unclassified	0.0623022994
+UniRef50_UPI000376D2EE: hypothetical protein	1.1205946812
+UniRef50_UPI000376D2EE: hypothetical protein|unclassified	1.1205946812
+UniRef50_UPI000479F146: membrane protein	1.1205699234
+UniRef50_UPI000479F146: membrane protein|unclassified	1.1205699234
+UniRef50_H8FYF0	1.1204812555
+UniRef50_H8FYF0|unclassified	1.1204812555
+UniRef50_E3YBS2	1.1200843543
+UniRef50_E3YBS2|unclassified	1.1200843543
+UniRef50_P06121: Nitrogenase molybdenum-iron protein alpha chain	1.1199715201
+UniRef50_P06121: Nitrogenase molybdenum-iron protein alpha chain|unclassified	1.1199715201
+UniRef50_Q6A997: Chaperone protein DnaJ 1	1.1198208287
+UniRef50_Q6A997: Chaperone protein DnaJ 1|g__Propionibacterium.s__Propionibacterium_acnes	1.1198208287
+UniRef50_Q8XWD0: Tyrosine recombinase XerD	1.1198208287
+UniRef50_Q8XWD0: Tyrosine recombinase XerD|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1198208287
+UniRef50_S8BIV2	1.1198208287
+UniRef50_S8BIV2|unclassified	1.1198208287
+UniRef50_UPI0003A461D1: hypothetical protein	1.1198208287
+UniRef50_UPI0003A461D1: hypothetical protein|unclassified	1.1198208287
+UniRef50_V5VA90	1.1198208287
+UniRef50_V5VA90|g__Acinetobacter.s__Acinetobacter_baumannii	1.1198208287
+UniRef50_B9JU16: UPF0260 protein Avi_1324	1.1197194015
+UniRef50_B9JU16: UPF0260 protein Avi_1324|unclassified	1.1197194015
+UniRef50_UPI0002E7F1BB: hypothetical protein	1.1197019663
+UniRef50_UPI0002E7F1BB: hypothetical protein|unclassified	1.1197019663
+UniRef50_M7Y540: Dipeptide transporter permease DppB	1.1196731855
+UniRef50_M7Y540: Dipeptide transporter permease DppB|unclassified	1.1196731855
+UniRef50_R4Y8R8: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	1.1195028363
+UniRef50_R4Y8R8: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|unclassified	1.1195028363
+UniRef50_UPI00032B28D6: PREDICTED: vegetative cell wall protein gp1-like, partial	1.1192153765
+UniRef50_UPI00032B28D6: PREDICTED: vegetative cell wall protein gp1-like, partial|unclassified	1.1192153765
+UniRef50_V4R5Y7	1.1191974809
+UniRef50_V4R5Y7|unclassified	1.1191974809
+UniRef50_UPI00037805ED: hypothetical protein, partial	1.1190958411
+UniRef50_UPI00037805ED: hypothetical protein, partial|unclassified	1.1190958411
+UniRef50_B0RDR3: Serine hydroxymethyltransferase	1.1189292454
+UniRef50_B0RDR3: Serine hydroxymethyltransferase|unclassified	1.1189292454
+UniRef50_UPI00046D0748: 2-keto-3-deoxy-L-rhamnonate aldolase, partial	1.1189107201
+UniRef50_UPI00046D0748: 2-keto-3-deoxy-L-rhamnonate aldolase, partial|unclassified	1.1189107201
+UniRef50_N6V2R5	1.1187810957
+UniRef50_N6V2R5|unclassified	1.1187810957
+UniRef50_A5WAX5: L-pipecolate dehydrogenase	1.1185682327
+UniRef50_A5WAX5: L-pipecolate dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1185682327
+UniRef50_E8U6V1: Aldose 1-epimerase	1.1185682327
+UniRef50_E8U6V1: Aldose 1-epimerase|g__Deinococcus.s__Deinococcus_radiodurans	1.1185682327
+UniRef50_F0ME34: Sodium/alanine symporter family protein	1.1185682327
+UniRef50_F0ME34: Sodium/alanine symporter family protein|g__Neisseria.s__Neisseria_meningitidis	1.1185682327
+UniRef50_I0EKX0	1.1185682327
+UniRef50_I0EKX0|g__Helicobacter.s__Helicobacter_pylori	1.1185682327
+UniRef50_K8DQW3	1.1185682327
+UniRef50_K8DQW3|unclassified	1.1185682327
+UniRef50_M1MSQ9: Glycosyltransferase	1.1185682327
+UniRef50_M1MSQ9: Glycosyltransferase|g__Clostridium.s__Clostridium_beijerinckii	1.1185682327
+UniRef50_Q6F739	1.1185682327
+UniRef50_Q6F739|g__Acinetobacter.s__Acinetobacter_baumannii	1.1185682327
+UniRef50_X5ET90: M23 peptidase domain protein	1.1185682327
+UniRef50_X5ET90: M23 peptidase domain protein|g__Neisseria.s__Neisseria_meningitidis	1.1185682327
+UniRef50_Q5JM60	1.1185325765
+UniRef50_Q5JM60|unclassified	1.1185325765
+UniRef50_A4KVC4	1.1184791447
+UniRef50_A4KVC4|unclassified	1.1184791447
+UniRef50_E6CY59	1.1182983115
+UniRef50_E6CY59|unclassified	1.1182983115
+UniRef50_A0A059DU66	1.1182783324
+UniRef50_A0A059DU66|unclassified	1.1182783324
+UniRef50_Q74NK6	1.1182297054
+UniRef50_Q74NK6|unclassified	1.1182297054
+UniRef50_C6R8Z2	1.1179910718
+UniRef50_C6R8Z2|unclassified	1.1179910718
+UniRef50_B4SK54	1.1179333105
+UniRef50_B4SK54|unclassified	1.1179333105
+UniRef50_A0A023RXZ9: Peptide transporter	1.1179141764
+UniRef50_A0A023RXZ9: Peptide transporter|g__Acinetobacter.s__Acinetobacter_baumannii	1.1179141764
+UniRef50_UPI00040101F7: hypothetical protein	1.1178957996
+UniRef50_UPI00040101F7: hypothetical protein|unclassified	1.1178957996
+UniRef50_UPI0003ADBF76: PREDICTED: basic proline-rich protein-like	1.1178182291
+UniRef50_UPI0003ADBF76: PREDICTED: basic proline-rich protein-like|unclassified	1.1178182291
+UniRef50_V6E621: Putative NAGC-like transcriptional regulator	1.1178048069
+UniRef50_V6E621: Putative NAGC-like transcriptional regulator|unclassified	1.1178048069
+UniRef50_UPI000369C4CE: hypothetical protein	1.1177890252
+UniRef50_UPI000369C4CE: hypothetical protein|unclassified	1.1177890252
+UniRef50_S3A1Z5	1.1177436707
+UniRef50_S3A1Z5|unclassified	1.1177436707
+UniRef50_UPI00047A57DD: hypothetical protein	1.1175766603
+UniRef50_UPI00047A57DD: hypothetical protein|unclassified	1.1175766603
+UniRef50_U1RIR7	1.1174812782
+UniRef50_U1RIR7|unclassified	1.1174812782
+UniRef50_Q3IVN8	1.1174766149
+UniRef50_Q3IVN8|unclassified	1.1174766149
+UniRef50_Q46SI8	1.1173272515
+UniRef50_Q46SI8|unclassified	1.1173272515
+UniRef50_A6M109: Auxin Efflux Carrier	1.1173184358
+UniRef50_A6M109: Auxin Efflux Carrier|g__Clostridium.s__Clostridium_beijerinckii	1.1173184358
+UniRef50_B9KN53: OmpA/MotB domain protein	1.1173184358
+UniRef50_B9KN53: OmpA/MotB domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1173184358
+UniRef50_G7U7C0: Transporter, major facilitator family protein	1.1173184358
+UniRef50_G7U7C0: Transporter, major facilitator family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.1173184358
+UniRef50_A0A058Z9B5	1.1172317798
+UniRef50_A0A058Z9B5|unclassified	1.1172317798
+UniRef50_UPI00016A94B3: hypothetical protein	1.1172006805
+UniRef50_UPI00016A94B3: hypothetical protein|unclassified	1.1172006805
+UniRef50_UPI00035066F6: PREDICTED: omega-amidase NIT2 isoform X3	1.1171658445
+UniRef50_UPI00035066F6: PREDICTED: omega-amidase NIT2 isoform X3|unclassified	1.1171658445
+UniRef50_M3S3B4	1.1166877907
+UniRef50_M3S3B4|unclassified	1.1166877907
+UniRef50_UPI00029CD229: major facilitator superfamily transporter, partial	1.1165307815
+UniRef50_UPI00029CD229: major facilitator superfamily transporter, partial|unclassified	1.1165307815
+UniRef50_D5TLD7	1.1165122285
+UniRef50_D5TLD7|unclassified	1.1165122285
+UniRef50_UPI0003B5E825: ArsR family transcriptional regulator, partial	1.1163204690
+UniRef50_UPI0003B5E825: ArsR family transcriptional regulator, partial|unclassified	1.1163204690
+UniRef50_UPI0003B52D1A: hypothetical protein, partial	1.1161061495
+UniRef50_UPI0003B52D1A: hypothetical protein, partial|unclassified	1.1161061495
+UniRef50_B4RKU4: Drug resistance translocase family protein	1.1160714286
+UniRef50_B4RKU4: Drug resistance translocase family protein|g__Neisseria.s__Neisseria_meningitidis	1.1160714286
+UniRef50_D7GD90: DEAD/DEAH box helicase domain protein	1.1160714286
+UniRef50_D7GD90: DEAD/DEAH box helicase domain protein|g__Propionibacterium.s__Propionibacterium_acnes	1.1160714286
+UniRef50_Q9RUD9	1.1160714286
+UniRef50_Q9RUD9|g__Deinococcus.s__Deinococcus_radiodurans	1.1160714286
+UniRef50_F3H836: ABC-transport protein, inner membrane component (Fragment)	1.1159188243
+UniRef50_F3H836: ABC-transport protein, inner membrane component (Fragment)|unclassified	1.1159188243
+UniRef50_Q9AKT4: Nitrogenase iron protein 2	1.1159108831
+UniRef50_Q9AKT4: Nitrogenase iron protein 2|unclassified	1.1159108831
+UniRef50_UPI00045E91D9: membrane protein	1.1155997369
+UniRef50_UPI00045E91D9: membrane protein|unclassified	1.1155997369
+UniRef50_B9JUA7	1.1155915021
+UniRef50_B9JUA7|unclassified	1.1155915021
+UniRef50_C8AFV9: Myosin-cross-reactive antigen	1.1154817802
+UniRef50_C8AFV9: Myosin-cross-reactive antigen|unclassified	1.1154817802
+UniRef50_A1ITE9	1.1154493152
+UniRef50_A1ITE9|g__Neisseria.s__Neisseria_meningitidis	1.1154493152
+UniRef50_A0A010CBA8: Sensory box protein	1.1154008275
+UniRef50_A0A010CBA8: Sensory box protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.1154008275
+UniRef50_X6GYP4	1.1153756471
+UniRef50_X6GYP4|unclassified	1.1153756471
+UniRef50_Q1QDQ1: DNA polymerase I	1.1152248277
+UniRef50_Q1QDQ1: DNA polymerase I|g__Acinetobacter.s__Acinetobacter_baumannii	1.1152248277
+UniRef50_UPI0002192A5B: cyclic nucleotide-binding protein, partial	1.1151345454
+UniRef50_UPI0002192A5B: cyclic nucleotide-binding protein, partial|unclassified	1.1151345454
+UniRef50_M8D633	1.1151242510
+UniRef50_M8D633|unclassified	1.1151242510
+UniRef50_A1TVS9: DNA-directed RNA polymerase subunit beta'	1.1150720902
+UniRef50_A1TVS9: DNA-directed RNA polymerase subunit beta'|g__Neisseria.s__Neisseria_meningitidis	1.0639979626
+UniRef50_A1TVS9: DNA-directed RNA polymerase subunit beta'|unclassified	0.0510741276
+UniRef50_Q2H308	1.1150227587
+UniRef50_Q2H308|unclassified	1.1150227587
+UniRef50_G8XHV9	1.1149988198
+UniRef50_G8XHV9|unclassified	1.1149988198
+UniRef50_UPI0001B44670: IolB protein	1.1149282272
+UniRef50_UPI0001B44670: IolB protein|unclassified	1.1149282272
+UniRef50_W9TLX8: Cytochrome C-type biogenesis protein CcmF	1.1148792902
+UniRef50_W9TLX8: Cytochrome C-type biogenesis protein CcmF|unclassified	1.1148792902
+UniRef50_A4WZD6	1.1148272018
+UniRef50_A4WZD6|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1148272018
+UniRef50_K7RVZ0: TIGR01777 family protein	1.1148272018
+UniRef50_K7RVZ0: TIGR01777 family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.1148272018
+UniRef50_Q4K7F3: Biotin carboxylase	1.1148272018
+UniRef50_Q4K7F3: Biotin carboxylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1148272018
+UniRef50_Q8XJS1: tRNA pseudouridine synthase B	1.1148272018
+UniRef50_Q8XJS1: tRNA pseudouridine synthase B|g__Clostridium.s__Clostridium_beijerinckii	1.1148272018
+UniRef50_B0VB35: Aldehyde dehydrogenase, phenylacetic acid degradation	1.1146902316
+UniRef50_B0VB35: Aldehyde dehydrogenase, phenylacetic acid degradation|g__Acinetobacter.s__Acinetobacter_baumannii	1.1146902316
+UniRef50_Q9AD79: Putative membrane protein	1.1146239002
+UniRef50_Q9AD79: Putative membrane protein|unclassified	1.1146239002
+UniRef50_V0VAN6	1.1145661066
+UniRef50_V0VAN6|unclassified	1.1145661066
+UniRef50_UPI0004432406	1.1142411212
+UniRef50_UPI0004432406|unclassified	1.1142411212
+UniRef50_B9KV71	1.1141580208
+UniRef50_B9KV71|unclassified	1.1141580208
+UniRef50_Q13BG6: NADH-quinone oxidoreductase subunit K	1.1140634735
+UniRef50_Q13BG6: NADH-quinone oxidoreductase subunit K|unclassified	1.1140634735
+UniRef50_UPI0004734909: hypothetical protein, partial	1.1140202673
+UniRef50_UPI0004734909: hypothetical protein, partial|unclassified	1.1140202673
+UniRef50_UPI0003677933: hypothetical protein	1.1139391736
+UniRef50_UPI0003677933: hypothetical protein|unclassified	1.1139391736
+UniRef50_A6LW88: Diguanylate cyclase/phosphodiesterase with PAS/PAC and GAF sensor(S)	1.1138483782
+UniRef50_A6LW88: Diguanylate cyclase/phosphodiesterase with PAS/PAC and GAF sensor(S)|g__Clostridium.s__Clostridium_beijerinckii	1.1138483782
+UniRef50_UPI00034FA096: PREDICTED: epstein-Barr nuclear antigen 1-like	1.1136902045
+UniRef50_UPI00034FA096: PREDICTED: epstein-Barr nuclear antigen 1-like|unclassified	1.1136902045
+UniRef50_F0QEA5: Sphingosine kinase	1.1135857461
+UniRef50_F0QEA5: Sphingosine kinase|g__Acinetobacter.s__Acinetobacter_baumannii	1.1135857461
+UniRef50_I1EHK4	1.1135857461
+UniRef50_I1EHK4|g__Neisseria.s__Neisseria_meningitidis	1.1135857461
+UniRef50_N6UA92	1.1135857461
+UniRef50_N6UA92|unclassified	1.1135857461
+UniRef50_Q6FD06	1.1135857461
+UniRef50_Q6FD06|g__Acinetobacter.s__Acinetobacter_baumannii	1.1135857461
+UniRef50_UPI00039556BE: PREDICTED: mucin-19-like	1.1135857461
+UniRef50_UPI00039556BE: PREDICTED: mucin-19-like|unclassified	1.1135857461
+UniRef50_UPI00036F89BA: hypothetical protein	1.1135580152
+UniRef50_UPI00036F89BA: hypothetical protein|unclassified	1.1135580152
+UniRef50_B2FUP3	1.1134312381
+UniRef50_B2FUP3|unclassified	1.1134312381
+UniRef50_H6NE34	1.1133642144
+UniRef50_H6NE34|unclassified	1.1133642144
+UniRef50_V4R951	1.1132708477
+UniRef50_V4R951|unclassified	1.1132708477
+UniRef50_A3DE29: Phospho-N-acetylmuramoyl-pentapeptide-transferase	1.1132217070
+UniRef50_A3DE29: Phospho-N-acetylmuramoyl-pentapeptide-transferase|g__Clostridium.s__Clostridium_beijerinckii	1.0526315789
+UniRef50_A3DE29: Phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.0605901281
+UniRef50_G5LD59: Ribonucleotide reduction protein NrdI	1.1128259779
+UniRef50_G5LD59: Ribonucleotide reduction protein NrdI|unclassified	1.1128259779
+UniRef50_G2UKW4	1.1127958357
+UniRef50_G2UKW4|unclassified	1.1127958357
+UniRef50_Q98DN4: Non-canonical purine NTP pyrophosphatase	1.1126716387
+UniRef50_Q98DN4: Non-canonical purine NTP pyrophosphatase|unclassified	1.1126716387
+UniRef50_UPI00038054E0: hypothetical protein	1.1124396362
+UniRef50_UPI00038054E0: hypothetical protein|unclassified	1.1124396362
+UniRef50_UPI00036822E4: hypothetical protein, partial	1.1124025553
+UniRef50_UPI00036822E4: hypothetical protein, partial|unclassified	1.1124025553
+UniRef50_UPI00047285D3: heat shock protein Hsp33	1.1123830512
+UniRef50_UPI00047285D3: heat shock protein Hsp33|unclassified	1.1123830512
+UniRef50_W1EUQ0: YgfY COG2938	1.1123797126
+UniRef50_W1EUQ0: YgfY COG2938|unclassified	1.1123797126
+UniRef50_E6QKD8	1.1123774539
+UniRef50_E6QKD8|unclassified	1.1123774539
+UniRef50_A6LXM6: 1,4-dihydroxy-2-naphthoate octaprenyltransferase	1.1123470523
+UniRef50_A6LXM6: 1,4-dihydroxy-2-naphthoate octaprenyltransferase|g__Clostridium.s__Clostridium_beijerinckii	1.1123470523
+UniRef50_A8LJY5: 2-octaprenyl-6-methoxyphenol hydroxylase	1.1123470523
+UniRef50_A8LJY5: 2-octaprenyl-6-methoxyphenol hydroxylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.1123470523
+UniRef50_Q9I489	1.1123470523
+UniRef50_Q9I489|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1123470523
+UniRef50_W0ZP89	1.1122696128
+UniRef50_W0ZP89|unclassified	1.1122696128
+UniRef50_Z1Y5W4	1.1121086030
+UniRef50_Z1Y5W4|unclassified	1.1121086030
+UniRef50_R7PQ72: GMP synthase [glutamine-hydrolyzing]	1.1120298733
+UniRef50_R7PQ72: GMP synthase [glutamine-hydrolyzing]|unclassified	1.1120298733
+UniRef50_A4SFY3: Serine hydroxymethyltransferase	1.1119807313
+UniRef50_A4SFY3: Serine hydroxymethyltransferase|unclassified	1.1119807313
+UniRef50_B9KMY6	1.1117795776
+UniRef50_B9KMY6|unclassified	1.1117795776
+UniRef50_UPI0003A37662: multidrug transporter	1.1117247211
+UniRef50_UPI0003A37662: multidrug transporter|unclassified	1.1117247211
+UniRef50_W4UGE6: Chromosome (Plasmid) partitioning protein ParA	1.1116635884
+UniRef50_W4UGE6: Chromosome (Plasmid) partitioning protein ParA|unclassified	1.1116635884
+UniRef50_UPI00034D6903: hypothetical protein	1.1114649347
+UniRef50_UPI00034D6903: hypothetical protein|unclassified	1.1114649347
+UniRef50_UPI00029AC084: UDP-N-acetylglucosamine enolpyruvyl transferase	1.1113531963
+UniRef50_UPI00029AC084: UDP-N-acetylglucosamine enolpyruvyl transferase|unclassified	1.1113531963
+UniRef50_T1C7H3	1.1113048474
+UniRef50_T1C7H3|unclassified	1.1113048474
+UniRef50_B4SKP9: Transcriptional regulator, LysR family	1.1111111111
+UniRef50_B4SKP9: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1111111111
+UniRef50_B6JP11: L-seryl-tRNA(Sec) selenium transferase	1.1111111111
+UniRef50_B6JP11: L-seryl-tRNA(Sec) selenium transferase|g__Helicobacter.s__Helicobacter_pylori	1.1111111111
+UniRef50_D9SQV1: Inner-membrane translocator	1.1111111111
+UniRef50_D9SQV1: Inner-membrane translocator|g__Clostridium.s__Clostridium_beijerinckii	1.1111111111
+UniRef50_F0KI57: Transcription activator of glutamate synthase operon GltC	1.1111111111
+UniRef50_F0KI57: Transcription activator of glutamate synthase operon GltC|g__Acinetobacter.s__Acinetobacter_baumannii	1.1111111111
+UniRef50_F2CUX5: Predicted protein (Fragment)	1.1111111111
+UniRef50_F2CUX5: Predicted protein (Fragment)|unclassified	1.1111111111
+UniRef50_J9GI69: Glyceraldehyde-3-phosphate dehydrogenase	1.1111111111
+UniRef50_J9GI69: Glyceraldehyde-3-phosphate dehydrogenase|unclassified	1.1111111111
+UniRef50_R6FSL2	1.1111111111
+UniRef50_R6FSL2|g__Clostridium.s__Clostridium_beijerinckii	1.1111111111
+UniRef50_UPI000362FAB4: hypothetical protein	1.1110677270
+UniRef50_UPI000362FAB4: hypothetical protein|unclassified	1.1110677270
+UniRef50_U4Q5Q4	1.1110535379
+UniRef50_U4Q5Q4|unclassified	1.1110535379
+UniRef50_Z9EHC2	1.1110298703
+UniRef50_Z9EHC2|unclassified	1.1110298703
+UniRef50_Q8RD56: AAA superfamily ATPases with N-terminal receiver domain	1.1109399558
+UniRef50_Q8RD56: AAA superfamily ATPases with N-terminal receiver domain|g__Clostridium.s__Clostridium_beijerinckii	1.1109399558
+UniRef50_K2F554: 3-hydroxybutyrate dehydrogenase	1.1108683639
+UniRef50_K2F554: 3-hydroxybutyrate dehydrogenase|unclassified	1.1108683639
+UniRef50_UPI0002F5D1A9: hypothetical protein	1.1108410974
+UniRef50_UPI0002F5D1A9: hypothetical protein|unclassified	1.1108410974
+UniRef50_G8V7H8: CobN/magnesium chelatase domain protein	1.1106266334
+UniRef50_G8V7H8: CobN/magnesium chelatase domain protein|g__Propionibacterium.s__Propionibacterium_acnes	1.1106266334
+UniRef50_B9KUM9	1.1105499352
+UniRef50_B9KUM9|unclassified	1.1105499352
+UniRef50_G0RS25: Predicted protein	1.1105265111
+UniRef50_G0RS25: Predicted protein|unclassified	1.1105265111
+UniRef50_UPI0001B44ACF: recombination factor protein RarA, partial	1.1105165699
+UniRef50_UPI0001B44ACF: recombination factor protein RarA, partial|unclassified	1.1105165699
+UniRef50_W6C449: HTH-like domain protein	1.1104174211
+UniRef50_W6C449: HTH-like domain protein|unclassified	1.1104174211
+UniRef50_J7QJW8	1.1103781557
+UniRef50_J7QJW8|unclassified	1.1103781557
+UniRef50_K8CHW8	1.1102219602
+UniRef50_K8CHW8|unclassified	1.1102219602
+UniRef50_B2V0J5: Phosphopentomutase	1.1101638691
+UniRef50_B2V0J5: Phosphopentomutase|g__Clostridium.s__Clostridium_beijerinckii	1.0010010010
+UniRef50_B2V0J5: Phosphopentomutase|unclassified	0.1091628681
+UniRef50_V7Z055	1.1100177832
+UniRef50_V7Z055|unclassified	1.1100177832
+UniRef50_G8PQT7	1.1099227467
+UniRef50_G8PQT7|unclassified	1.1099227467
+UniRef50_A0A031IYL1	1.1098808262
+UniRef50_A0A031IYL1|unclassified	1.1098808262
+UniRef50_A3N6S5: Transcriptional regulator, LysR family	1.1098779134
+UniRef50_A3N6S5: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1098779134
+UniRef50_G5LC19	1.1098663458
+UniRef50_G5LC19|unclassified	1.1098663458
+UniRef50_UPI000368145E: hypothetical protein	1.1097964589
+UniRef50_UPI000368145E: hypothetical protein|unclassified	1.1097964589
+UniRef50_A4WYL7: Heat shock protein Hsp20	1.1097832612
+UniRef50_A4WYL7: Heat shock protein Hsp20|unclassified	1.1097832612
+UniRef50_UPI000311B789: hypothetical protein	1.1097249141
+UniRef50_UPI000311B789: hypothetical protein|unclassified	1.1097249141
+UniRef50_H0DV71: Polysaccharide biosynthesis protein	1.1096773575
+UniRef50_H0DV71: Polysaccharide biosynthesis protein|unclassified	1.1096773575
+UniRef50_UPI000237B68F: ribonuclease	1.1094477335
+UniRef50_UPI000237B68F: ribonuclease|unclassified	1.1094477335
+UniRef50_A3VGU7	1.1093746550
+UniRef50_A3VGU7|unclassified	1.1093746550
+UniRef50_UPI0002EB7410: hypothetical protein	1.1090569412
+UniRef50_UPI0002EB7410: hypothetical protein|unclassified	1.1090569412
+UniRef50_Q6LU53: Nucleoside diphosphate kinase	1.1089652275
+UniRef50_Q6LU53: Nucleoside diphosphate kinase|unclassified	1.1089652275
+UniRef50_UPI0002554EAB: ribose ABC transporter permease	1.1086955909
+UniRef50_UPI0002554EAB: ribose ABC transporter permease|unclassified	1.1086955909
+UniRef50_E5AVM4: Transcriptional regulators, LysR family	1.1086474501
+UniRef50_E5AVM4: Transcriptional regulators, LysR family|g__Acinetobacter.s__Acinetobacter_baumannii	1.1086474501
+UniRef50_Q88QJ9: Protein FdhE homolog	1.1086474501
+UniRef50_Q88QJ9: Protein FdhE homolog|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1086474501
+UniRef50_A0A017M2W7: Antirestriction family protein	1.1085049277
+UniRef50_A0A017M2W7: Antirestriction family protein|unclassified	1.1085049277
+UniRef50_B1I6S1: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG	1.1083471531
+UniRef50_B1I6S1: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG|g__Clostridium.s__Clostridium_beijerinckii	1.1083471531
+UniRef50_Q9A7X1: Sulfate/thiosulfate import ATP-binding protein CysA	1.1081820289
+UniRef50_Q9A7X1: Sulfate/thiosulfate import ATP-binding protein CysA|unclassified	1.1081820289
+UniRef50_A0A026TF50	1.1081447202
+UniRef50_A0A026TF50|unclassified	1.1081447202
+UniRef50_UPI000470839E: hypothetical protein	1.1080762670
+UniRef50_UPI000470839E: hypothetical protein|unclassified	1.1080762670
+UniRef50_A9MWX6	1.1079768597
+UniRef50_A9MWX6|unclassified	1.1079768597
+UniRef50_I6F4M9: CO dehydrogenase flavoC-terminal domain protein	1.1079060591
+UniRef50_I6F4M9: CO dehydrogenase flavoC-terminal domain protein|unclassified	1.1079060591
+UniRef50_A0DK69: Chromosome undetermined scaffold_54, whole genome shotgun sequence	1.1074197121
+UniRef50_A0DK69: Chromosome undetermined scaffold_54, whole genome shotgun sequence|unclassified	1.1074197121
+UniRef50_A3PGA5: Sporulation domain protein	1.1074197121
+UniRef50_A3PGA5: Sporulation domain protein|unclassified	1.1074197121
+UniRef50_B2HZZ5	1.1074197121
+UniRef50_B2HZZ5|g__Acinetobacter.s__Acinetobacter_baumannii	1.1074197121
+UniRef50_M9VE13: LacI family transcriptional regulator	1.1074197121
+UniRef50_M9VE13: LacI family transcriptional regulator|g__Propionibacterium.s__Propionibacterium_acnes	1.1074197121
+UniRef50_A1W649: Membrane lipoprotein lipid attachment site	1.1072300341
+UniRef50_A1W649: Membrane lipoprotein lipid attachment site|unclassified	1.1072300341
+UniRef50_UPI00046E9EE1: hypothetical protein	1.1068957831
+UniRef50_UPI00046E9EE1: hypothetical protein|unclassified	1.1068957831
+UniRef50_UPI000473D8F9: hypothetical protein	1.1068488492
+UniRef50_UPI000473D8F9: hypothetical protein|unclassified	1.1068488492
+UniRef50_UPI0001746419: alkylhydroperoxidase	1.1068025069
+UniRef50_UPI0001746419: alkylhydroperoxidase|unclassified	1.1068025069
+UniRef50_C5Y406	1.1066846089
+UniRef50_C5Y406|unclassified	1.1066846089
+UniRef50_K2D6T3	1.1065364474
+UniRef50_K2D6T3|unclassified	1.1065364474
+UniRef50_P56578: Putative peroxiredoxin (Fragment)	1.1064780958
+UniRef50_P56578: Putative peroxiredoxin (Fragment)|unclassified	1.1064780958
+UniRef50_UPI0003665A08: hypothetical protein	1.1063430583
+UniRef50_UPI0003665A08: hypothetical protein|unclassified	1.1063430583
+UniRef50_C4I6R5	1.1061946903
+UniRef50_C4I6R5|unclassified	1.1061946903
+UniRef50_A7GYU4: Porphobilinogen deaminase	1.1061946903
+UniRef50_A7GYU4: Porphobilinogen deaminase|g__Helicobacter.s__Helicobacter_pylori	1.1061946903
+UniRef50_H5NJP3: FhuA outer membrane receptor for ferrichrome, colicin M, and phages T1, T5, and phi80 domain protein	1.1059787470
+UniRef50_H5NJP3: FhuA outer membrane receptor for ferrichrome, colicin M, and phages T1, T5, and phi80 domain protein|unclassified	1.1059787470
+UniRef50_T2NA70: Peptidoglycan domain protein	1.1058679892
+UniRef50_T2NA70: Peptidoglycan domain protein|unclassified	1.1058679892
+UniRef50_UPI00029A5C6F: protein narU, partial	1.1057255895
+UniRef50_UPI00029A5C6F: protein narU, partial|unclassified	1.1057255895
+UniRef50_UPI000467B2FE: hypothetical protein	1.1057111008
+UniRef50_UPI000467B2FE: hypothetical protein|unclassified	1.1057111008
+UniRef50_A0A025GP31	1.1056343233
+UniRef50_A0A025GP31|unclassified	1.1056343233
+UniRef50_UPI00047BC1A3: arsenate reductase	1.1055251153
+UniRef50_UPI00047BC1A3: arsenate reductase|unclassified	1.1055251153
+UniRef50_F8DIB1	1.1054418338
+UniRef50_F8DIB1|unclassified	1.1054418338
+UniRef50_UPI000463F4EC: LamB/YcsF family protein	1.1052370528
+UniRef50_UPI000463F4EC: LamB/YcsF family protein|unclassified	1.1052370528
+UniRef50_Q8DR36: Degenerate transposase (Orf2)	1.1050475024
+UniRef50_Q8DR36: Degenerate transposase (Orf2)|unclassified	1.1050475024
+UniRef50_UPI0002EF7D48: hypothetical protein	1.1050382850
+UniRef50_UPI0002EF7D48: hypothetical protein|unclassified	1.1050382850
+UniRef50_U5VED1	1.1050236948
+UniRef50_U5VED1|unclassified	1.1050236948
+UniRef50_F0KG57	1.1049723757
+UniRef50_F0KG57|g__Acinetobacter.s__Acinetobacter_baumannii	1.1049723757
+UniRef50_Q5XAX1: NAD-dependent oxidoreductase	1.1049723757
+UniRef50_Q5XAX1: NAD-dependent oxidoreductase|g__Streptococcus.s__Streptococcus_agalactiae	1.1049723757
+UniRef50_Q9RTE1: Glucose-1-phosphate adenylyltransferase	1.1049723757
+UniRef50_Q9RTE1: Glucose-1-phosphate adenylyltransferase|g__Deinococcus.s__Deinococcus_radiodurans	1.1049723757
+UniRef50_Q9ZKW2: Probable iron chelatin transport system permease protein jhp_0822	1.1049723757
+UniRef50_Q9ZKW2: Probable iron chelatin transport system permease protein jhp_0822|g__Helicobacter.s__Helicobacter_pylori	1.1049723757
+UniRef50_X5F1W8: Polyhydroxyalkanoate synthesis protein PhaF	1.1049723757
+UniRef50_X5F1W8: Polyhydroxyalkanoate synthesis protein PhaF|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1049723757
+UniRef50_Q9ZLX3: DNA gyrase subunit B	1.1049711921
+UniRef50_Q9ZLX3: DNA gyrase subunit B|g__Helicobacter.s__Helicobacter_pylori	1.0347430800
+UniRef50_Q9ZLX3: DNA gyrase subunit B|unclassified	0.0702281121
+UniRef50_V9XXT7	1.1048634857
+UniRef50_V9XXT7|unclassified	1.1048634857
+UniRef50_A0A011U2D0	1.1048508960
+UniRef50_A0A011U2D0|unclassified	1.1048508960
+UniRef50_Q3JU16	1.1047812950
+UniRef50_Q3JU16|unclassified	1.1047812950
+UniRef50_A0AL49	1.1045529652
+UniRef50_A0AL49|unclassified	1.1045529652
+UniRef50_N1MM83: Mobile element protein	1.1045221330
+UniRef50_N1MM83: Mobile element protein|unclassified	1.1045221330
+UniRef50_D3VF61	1.1044662093
+UniRef50_D3VF61|unclassified	1.1044662093
+UniRef50_A6QEQ8	1.1042064883
+UniRef50_A6QEQ8|unclassified	1.1042064883
+UniRef50_E7DN70: QueT	1.1041686620
+UniRef50_E7DN70: QueT|unclassified	1.1041686620
+UniRef50_L2SNR0	1.1038548639
+UniRef50_L2SNR0|unclassified	1.1038548639
+UniRef50_I3XAT3	1.1038438702
+UniRef50_I3XAT3|unclassified	1.1038438702
+UniRef50_UPI00035EBFA6: hypothetical protein	1.1038349126
+UniRef50_UPI00035EBFA6: hypothetical protein|unclassified	1.1038349126
+UniRef50_N1M651: Mobile element protein	1.1038034213
+UniRef50_N1M651: Mobile element protein|unclassified	1.1038034213
+UniRef50_B4RNK3: TspB3	1.1037527594
+UniRef50_B4RNK3: TspB3|g__Neisseria.s__Neisseria_meningitidis	1.1037527594
+UniRef50_P57061: Lipoprotein-releasing system transmembrane protein LolC	1.1037527594
+UniRef50_P57061: Lipoprotein-releasing system transmembrane protein LolC|g__Neisseria.s__Neisseria_meningitidis	1.1037527594
+UniRef50_UPI0003FCFA12: biotin--protein ligase	1.1037527594
+UniRef50_UPI0003FCFA12: biotin--protein ligase|unclassified	1.1037527594
+UniRef50_UPI0002628B5D: uroporphyrin-III C-methyltransferase, partial	1.1037441253
+UniRef50_UPI0002628B5D: uroporphyrin-III C-methyltransferase, partial|unclassified	1.1037441253
+UniRef50_N9MBD3	1.1037364515
+UniRef50_N9MBD3|unclassified	1.1037364515
+UniRef50_Q7NXD8	1.1037089288
+UniRef50_Q7NXD8|unclassified	1.1037089288
+UniRef50_UPI0003B4B64F: hypothetical protein	1.1035859874
+UniRef50_UPI0003B4B64F: hypothetical protein|unclassified	1.1035859874
+UniRef50_B0BWD8: Ribosomal RNA large subunit methyltransferase E	1.1033153603
+UniRef50_B0BWD8: Ribosomal RNA large subunit methyltransferase E|unclassified	1.1033153603
+UniRef50_Q9JX66: Dihydroorotate dehydrogenase (quinone)	1.1032713728
+UniRef50_Q9JX66: Dihydroorotate dehydrogenase (quinone)|g__Neisseria.s__Neisseria_meningitidis	1.0040160643
+UniRef50_Q9JX66: Dihydroorotate dehydrogenase (quinone)|unclassified	0.0992553086
+UniRef50_B2T0E3	1.1029479958
+UniRef50_B2T0E3|unclassified	1.1029479958
+UniRef50_A0A023YZ73: Exodeoxyribonuclease encoded by cryptic prophage CP-933P	1.1025358324
+UniRef50_A0A023YZ73: Exodeoxyribonuclease encoded by cryptic prophage CP-933P|g__Escherichia.s__Escherichia_coli	1.1025358324
+UniRef50_E6MUK3: Drug resistance transporter, Bcr/CflA subfamily protein	1.1025358324
+UniRef50_E6MUK3: Drug resistance transporter, Bcr/CflA subfamily protein|g__Neisseria.s__Neisseria_meningitidis	1.1025358324
+UniRef50_Q05624: Phosphate butyryltransferase	1.1025358324
+UniRef50_Q05624: Phosphate butyryltransferase|g__Clostridium.s__Clostridium_beijerinckii	1.1025358324
+UniRef50_Q6A5V6: Calcineurin-like phosphoesterase	1.1025358324
+UniRef50_Q6A5V6: Calcineurin-like phosphoesterase|g__Propionibacterium.s__Propionibacterium_acnes	1.1025358324
+UniRef50_R1EKN9	1.1025358324
+UniRef50_R1EKN9|unclassified	1.1025358324
+UniRef50_UPI00035D1933: glycine cleavage system protein H	1.1025027538
+UniRef50_UPI00035D1933: glycine cleavage system protein H|unclassified	1.1025027538
+UniRef50_K4RQM4	1.1023096412
+UniRef50_K4RQM4|unclassified	1.1023096412
+UniRef50_E3F2Y8: Arsenate reductase-like protein	1.1020789096
+UniRef50_E3F2Y8: Arsenate reductase-like protein|unclassified	1.1020789096
+UniRef50_C1DCE3: Probable chemoreceptor glutamine deamidase CheD	1.1020374204
+UniRef50_C1DCE3: Probable chemoreceptor glutamine deamidase CheD|unclassified	1.1020374204
+UniRef50_UPI0002559CE7: IS5 family transposase OrfA	1.1019346547
+UniRef50_UPI0002559CE7: IS5 family transposase OrfA|unclassified	1.1019346547
+UniRef50_UPI000472AB48: hypothetical protein	1.1018914740
+UniRef50_UPI000472AB48: hypothetical protein|unclassified	1.1018914740
+UniRef50_N8FGZ7	1.1017889366
+UniRef50_N8FGZ7|unclassified	1.1017889366
+UniRef50_Z6GE54	1.1017741017
+UniRef50_Z6GE54|unclassified	1.1017741017
+UniRef50_G2DQA0: Guanosine 3',5'-bis-diphosphate-3'-pyrophosphohydrolase	1.1016269856
+UniRef50_G2DQA0: Guanosine 3',5'-bis-diphosphate-3'-pyrophosphohydrolase|g__Neisseria.s__Neisseria_meningitidis	1.1016269856
+UniRef50_D0CPI8: Membrane-bound lytic murein transglycosylase A	1.1013817947
+UniRef50_D0CPI8: Membrane-bound lytic murein transglycosylase A|unclassified	1.1013817947
+UniRef50_A3M7C9	1.1013215859
+UniRef50_A3M7C9|g__Acinetobacter.s__Acinetobacter_baumannii	1.1013215859
+UniRef50_C5X275	1.1013215859
+UniRef50_C5X275|unclassified	1.1013215859
+UniRef50_Q3JG98: Acyl-CoA dehydrogenase, C-terminal domain family	1.1013215859
+UniRef50_Q3JG98: Acyl-CoA dehydrogenase, C-terminal domain family|g__Acinetobacter.s__Acinetobacter_baumannii	1.1013215859
+UniRef50_Q9ZMV6: UPF0026 protein jhp_0109	1.1013215859
+UniRef50_Q9ZMV6: UPF0026 protein jhp_0109|g__Helicobacter.s__Helicobacter_pylori	1.1013215859
+UniRef50_A8AQG7	1.1012334010
+UniRef50_A8AQG7|unclassified	1.1012334010
+UniRef50_Q5FUC7: Elongation factor P	1.1011931364
+UniRef50_Q5FUC7: Elongation factor P|unclassified	1.1011931364
+UniRef50_G2DGQ9: V-type ATP synthase beta chain	1.1009946900
+UniRef50_G2DGQ9: V-type ATP synthase beta chain|unclassified	1.1009946900
+UniRef50_A0A017SH78	1.1009939592
+UniRef50_A0A017SH78|unclassified	1.1009939592
+UniRef50_UPI000479ECD0: hypothetical protein	1.1007972384
+UniRef50_UPI000479ECD0: hypothetical protein|unclassified	1.1007972384
+UniRef50_UPI0003EF88D6: hypothetical protein	1.1005622302
+UniRef50_UPI0003EF88D6: hypothetical protein|unclassified	1.1005622302
+UniRef50_F4CWF2	1.1005512636
+UniRef50_F4CWF2|unclassified	1.1005512636
+UniRef50_G8ATW7	1.1005154501
+UniRef50_G8ATW7|unclassified	1.1005154501
+UniRef50_S6PZF6: Sulfur transfer complex subunit TusD	1.1003662135
+UniRef50_S6PZF6: Sulfur transfer complex subunit TusD|unclassified	1.1003662135
+UniRef50_Q49150: Bifunctional coenzyme PQQ synthesis protein C/D	1.1003449296
+UniRef50_Q49150: Bifunctional coenzyme PQQ synthesis protein C/D|unclassified	1.1003449296
+UniRef50_A0A011RW33	1.1001180940
+UniRef50_A0A011RW33|unclassified	1.1001180940
+UniRef50_A6LTS7: Stage V sporulation protein E	1.1001100110
+UniRef50_A6LTS7: Stage V sporulation protein E|g__Clostridium.s__Clostridium_beijerinckii	1.1001100110
+UniRef50_Q9ZM43	1.1001100110
+UniRef50_Q9ZM43|g__Helicobacter.s__Helicobacter_pylori	1.1001100110
+UniRef50_U6GYE4	1.1001100110
+UniRef50_U6GYE4|unclassified	1.1001100110
+UniRef50_UPI00036A0278: hypothetical protein	1.1001100110
+UniRef50_UPI00036A0278: hypothetical protein|unclassified	1.1001100110
+UniRef50_V5SWU7	1.1001100110
+UniRef50_V5SWU7|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1001100110
+UniRef50_W0Z033	1.1001100110
+UniRef50_W0Z033|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.1001100110
+UniRef50_W1GBV3: Membrane protein YcjF	1.1000463011
+UniRef50_W1GBV3: Membrane protein YcjF|unclassified	1.1000463011
+UniRef50_Q5GWT1: ISxac3 transposase	1.0999648292
+UniRef50_Q5GWT1: ISxac3 transposase|unclassified	1.0999648292
+UniRef50_A5V8S6: Transcriptional regulator BolA	1.0998342885
+UniRef50_A5V8S6: Transcriptional regulator BolA|unclassified	1.0998342885
+UniRef50_C5CT24: Polyribonucleotide nucleotidyltransferase	1.0994399677
+UniRef50_C5CT24: Polyribonucleotide nucleotidyltransferase|g__Neisseria.s__Neisseria_meningitidis	1.0268520094
+UniRef50_C5CT24: Polyribonucleotide nucleotidyltransferase|unclassified	0.0725879583
+UniRef50_F2EKH8: Predicted protein	1.0994171118
+UniRef50_F2EKH8: Predicted protein|unclassified	1.0994171118
+UniRef50_Q4EU29	1.0993658796
+UniRef50_Q4EU29|unclassified	1.0993658796
+UniRef50_Q16CU0	1.0993583378
+UniRef50_Q16CU0|unclassified	1.0993583378
+UniRef50_E6AX10	1.0991171544
+UniRef50_E6AX10|unclassified	1.0991171544
+UniRef50_N0AHS5: Bacterial regulatory helix-turn-helix, lysR family protein	1.0989010989
+UniRef50_N0AHS5: Bacterial regulatory helix-turn-helix, lysR family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0989010989
+UniRef50_X5ENV4: Transcriptional regulator	1.0989010989
+UniRef50_X5ENV4: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0989010989
+UniRef50_R7NIV0: Transcriptional regulator PadR family	1.0987581476
+UniRef50_R7NIV0: Transcriptional regulator PadR family|unclassified	1.0987581476
+UniRef50_Q8DUC6	1.0986538206
+UniRef50_Q8DUC6|unclassified	1.0986538206
+UniRef50_P21562	1.0984971672
+UniRef50_P21562|unclassified	1.0984971672
+UniRef50_G8WDW6	1.0984970235
+UniRef50_G8WDW6|unclassified	1.0984970235
+UniRef50_Q5Y0N1: RNA-binding tegument protein	1.0983588303
+UniRef50_Q5Y0N1: RNA-binding tegument protein|unclassified	1.0983588303
+UniRef50_K7S761: Nuclease, RecB family	1.0982979699
+UniRef50_K7S761: Nuclease, RecB family|g__Propionibacterium.s__Propionibacterium_acnes	1.0982979699
+UniRef50_S4YB05	1.0982911673
+UniRef50_S4YB05|unclassified	1.0982911673
+UniRef50_A6LVB7	1.0982286052
+UniRef50_A6LVB7|g__Clostridium.s__Clostridium_beijerinckii	1.0982286052
+UniRef50_UPI00046FFB87: hypothetical protein, partial	1.0978184777
+UniRef50_UPI00046FFB87: hypothetical protein, partial|unclassified	1.0978184777
+UniRef50_UPI0004410D60: hypothetical protein AURDEDRAFT_127912	1.0978122754
+UniRef50_UPI0004410D60: hypothetical protein AURDEDRAFT_127912|unclassified	1.0978122754
+UniRef50_A1B7B0: Transcriptional regulator, AraC family	1.0976948408
+UniRef50_A1B7B0: Transcriptional regulator, AraC family|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.0976948408
+UniRef50_UPI0004643930: hypothetical protein	1.0976948408
+UniRef50_UPI0004643930: hypothetical protein|unclassified	1.0976948408
+UniRef50_Q1GW94	1.0976722719
+UniRef50_Q1GW94|unclassified	1.0976722719
+UniRef50_UPI000479AE2C: hypothetical protein	1.0974820630
+UniRef50_UPI000479AE2C: hypothetical protein|unclassified	1.0974820630
+UniRef50_UPI00036CB57D: hypothetical protein	1.0972137097
+UniRef50_UPI00036CB57D: hypothetical protein|unclassified	1.0972137097
+UniRef50_H7FED1	1.0971958352
+UniRef50_H7FED1|unclassified	1.0971958352
+UniRef50_N6UYS2	1.0971936575
+UniRef50_N6UYS2|unclassified	1.0971936575
+UniRef50_UPI00036D2E60: hypothetical protein	1.0971925546
+UniRef50_UPI00036D2E60: hypothetical protein|unclassified	1.0971925546
+UniRef50_D6Y589: Periplasmic binding protein/LacI transcriptional regulator	1.0967908576
+UniRef50_D6Y589: Periplasmic binding protein/LacI transcriptional regulator|unclassified	1.0967908576
+UniRef50_Q47649: ORF1; putative	1.0966546164
+UniRef50_Q47649: ORF1; putative|unclassified	1.0966546164
+UniRef50_UPI0003671796: hypothetical protein	1.0965952600
+UniRef50_UPI0003671796: hypothetical protein|unclassified	1.0965952600
+UniRef50_A6LUV0: 2-dehydropantoate 2-reductase	1.0964912281
+UniRef50_A6LUV0: 2-dehydropantoate 2-reductase|g__Clostridium.s__Clostridium_beijerinckii	1.0964912281
+UniRef50_B9F2D9	1.0964912281
+UniRef50_B9F2D9|unclassified	1.0964912281
+UniRef50_G7U641	1.0964912281
+UniRef50_G7U641|g__Propionibacterium.s__Propionibacterium_acnes	1.0964912281
+UniRef50_G8VCG0: Acyltransferase	1.0964912281
+UniRef50_G8VCG0: Acyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	1.0964912281
+UniRef50_H5P6L4: AlkB repair system for alkylated DNA and RNA	1.0964912281
+UniRef50_H5P6L4: AlkB repair system for alkylated DNA and RNA|unclassified	1.0964912281
+UniRef50_H8GVU2: ABC transporter, ATP-binding protein	1.0964912281
+UniRef50_H8GVU2: ABC transporter, ATP-binding protein|g__Deinococcus.s__Deinococcus_radiodurans	1.0964912281
+UniRef50_W0MSG1	1.0964912281
+UniRef50_W0MSG1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0964912281
+UniRef50_W1FRR0: Acyl-CoA dehydrogenases	1.0963805447
+UniRef50_W1FRR0: Acyl-CoA dehydrogenases|unclassified	1.0963805447
+UniRef50_V4SRN2: Hemolysin D	1.0962419629
+UniRef50_V4SRN2: Hemolysin D|unclassified	1.0962419629
+UniRef50_B8A2U2	1.0962161005
+UniRef50_B8A2U2|unclassified	1.0962161005
+UniRef50_A3ZLI5: ISxac3 transposase	1.0960626848
+UniRef50_A3ZLI5: ISxac3 transposase|unclassified	1.0960626848
+UniRef50_Q187P1: LexA repressor	1.0959238268
+UniRef50_Q187P1: LexA repressor|unclassified	1.0959238268
+UniRef50_B6IP31	1.0959096710
+UniRef50_B6IP31|unclassified	1.0959096710
+UniRef50_D2NS08: 6-pyruvoyl-tetrahydropterin synthase	1.0958920419
+UniRef50_D2NS08: 6-pyruvoyl-tetrahydropterin synthase|unclassified	1.0958920419
+UniRef50_UPI00037150E3: hypothetical protein	1.0958174144
+UniRef50_UPI00037150E3: hypothetical protein|unclassified	1.0958174144
+UniRef50_UPI000329034B	1.0958021539
+UniRef50_UPI000329034B|unclassified	1.0958021539
+UniRef50_Q3JQY5	1.0953264996
+UniRef50_Q3JQY5|unclassified	1.0953264996
+UniRef50_Q5M061: NADPH-dependent 7-cyano-7-deazaguanine reductase	1.0953228781
+UniRef50_Q5M061: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	1.0953228781
+UniRef50_A6LYJ9	1.0952902519
+UniRef50_A6LYJ9|g__Clostridium.s__Clostridium_beijerinckii	1.0952902519
+UniRef50_Q7VK29: Cysteine synthase	1.0952902519
+UniRef50_Q7VK29: Cysteine synthase|g__Clostridium.s__Clostridium_beijerinckii	1.0952902519
+UniRef50_B9KU12	1.0951099763
+UniRef50_B9KU12|unclassified	1.0951099763
+UniRef50_S6UH58	1.0950771618
+UniRef50_S6UH58|unclassified	1.0950771618
+UniRef50_J0XNQ2: IS1272, transposase family protein	1.0950112126
+UniRef50_J0XNQ2: IS1272, transposase family protein|unclassified	1.0950112126
+UniRef50_B5Z6I2: Dihydroorotate dehydrogenase (quinone)	1.0949725035
+UniRef50_B5Z6I2: Dihydroorotate dehydrogenase (quinone)|g__Helicobacter.s__Helicobacter_pylori	1.0427528676
+UniRef50_B5Z6I2: Dihydroorotate dehydrogenase (quinone)|unclassified	0.0522196359
+UniRef50_Q6N372	1.0948740650
+UniRef50_Q6N372|unclassified	1.0948740650
+UniRef50_I6GZB9	1.0947554406
+UniRef50_I6GZB9|unclassified	1.0947554406
+UniRef50_UPI0003B39652: ribosomal large subunit pseudouridine synthase A	1.0945195224
+UniRef50_UPI0003B39652: ribosomal large subunit pseudouridine synthase A|unclassified	1.0945195224
+UniRef50_R0FJ43	1.0944222264
+UniRef50_R0FJ43|unclassified	1.0944222264
+UniRef50_UPI000465D378: transposase, partial	1.0943031852
+UniRef50_UPI000465D378: transposase, partial|unclassified	1.0943031852
+UniRef50_UPI0004706833: hypothetical protein	1.0942450982
+UniRef50_UPI0004706833: hypothetical protein|unclassified	1.0942450982
+UniRef50_B5ZVD0: UPF0260 protein Rleg2_0895	1.0942392184
+UniRef50_B5ZVD0: UPF0260 protein Rleg2_0895|unclassified	1.0942392184
+UniRef50_A0AYH9: Transcriptional regulator, LysR family	1.0940919037
+UniRef50_A0AYH9: Transcriptional regulator, LysR family|g__Acinetobacter.s__Acinetobacter_baumannii	1.0940919037
+UniRef50_A6M2R8: Methyl-accepting chemotaxis sensory transducer	1.0940919037
+UniRef50_A6M2R8: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	1.0940919037
+UniRef50_R4XW41: DedA	1.0940919037
+UniRef50_R4XW41: DedA|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0940919037
+UniRef50_X1RBN9: Marine sediment metagenome DNA, contig: S06H3_S29052 (Fragment)	1.0940260381
+UniRef50_X1RBN9: Marine sediment metagenome DNA, contig: S06H3_S29052 (Fragment)|unclassified	1.0940260381
+UniRef50_M9VFS0: Beta-galactosidase	1.0937478327
+UniRef50_M9VFS0: Beta-galactosidase|g__Propionibacterium.s__Propionibacterium_acnes	1.0937478327
+UniRef50_W9EVW4	1.0934123478
+UniRef50_W9EVW4|unclassified	1.0934123478
+UniRef50_D4L1E1: ABC-type Fe3+-siderophore transport system, permease component	1.0928961749
+UniRef50_D4L1E1: ABC-type Fe3+-siderophore transport system, permease component|g__Clostridium.s__Clostridium_beijerinckii	1.0928961749
+UniRef50_P9WLT0	1.0928961749
+UniRef50_P9WLT0|g__Propionibacterium.s__Propionibacterium_acnes	1.0928961749
+UniRef50_U1X2L2	1.0927706338
+UniRef50_U1X2L2|unclassified	1.0927706338
+UniRef50_UPI0001911B51: GMP/IMP nucleotidase, partial	1.0926163239
+UniRef50_UPI0001911B51: GMP/IMP nucleotidase, partial|unclassified	1.0926163239
+UniRef50_J3EIX3	1.0923989334
+UniRef50_J3EIX3|unclassified	1.0923989334
+UniRef50_H4D039: Peptide synthetase	1.0923974096
+UniRef50_H4D039: Peptide synthetase|unclassified	1.0923974096
+UniRef50_Q8RTQ0: Putative 1-deoxy-D-xylulose 5-phosphate synthase (Fragment)	1.0923444608
+UniRef50_Q8RTQ0: Putative 1-deoxy-D-xylulose 5-phosphate synthase (Fragment)|unclassified	1.0923444608
+UniRef50_J2ES16: Diguanylate cyclase (GGDEF) domain protein	1.0922750852
+UniRef50_J2ES16: Diguanylate cyclase (GGDEF) domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0028635286
+UniRef50_J2ES16: Diguanylate cyclase (GGDEF) domain protein|unclassified	0.0894115566
+UniRef50_UPI00047B3ECA: hypothetical protein	1.0922343939
+UniRef50_UPI00047B3ECA: hypothetical protein|unclassified	1.0922343939
+UniRef50_Q3BK80	1.0919554233
+UniRef50_Q3BK80|unclassified	1.0919554233
+UniRef50_B8GZV6: Prolipoprotein diacylglyceryl transferase	1.0918257180
+UniRef50_B8GZV6: Prolipoprotein diacylglyceryl transferase|unclassified	1.0918257180
+UniRef50_I8QTM4	1.0917366532
+UniRef50_I8QTM4|unclassified	1.0917366532
+UniRef50_K7E2E5	1.0917227297
+UniRef50_K7E2E5|unclassified	1.0917227297
+UniRef50_A6LW90	1.0917030568
+UniRef50_A6LW90|g__Clostridium.s__Clostridium_beijerinckii	1.0917030568
+UniRef50_E2QNK3: PTS system galactitol-specific enzyme IIC component	1.0917030568
+UniRef50_E2QNK3: PTS system galactitol-specific enzyme IIC component|g__Propionibacterium.s__Propionibacterium_acnes	1.0917030568
+UniRef50_E6V099: Formiminoglutamate deiminase	1.0917030568
+UniRef50_E6V099: Formiminoglutamate deiminase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0917030568
+UniRef50_Q9RVA5: SLH family protein	1.0917030568
+UniRef50_Q9RVA5: SLH family protein|g__Deinococcus.s__Deinococcus_radiodurans	1.0917030568
+UniRef50_UPI00027F7570	1.0917030568
+UniRef50_UPI00027F7570|unclassified	1.0917030568
+UniRef50_T2LAG0	1.0916669920
+UniRef50_T2LAG0|unclassified	1.0916669920
+UniRef50_Q3JXP0: Putative regulator	1.0915012882
+UniRef50_Q3JXP0: Putative regulator|unclassified	1.0915012882
+UniRef50_Q8E1A3: Probable dual-specificity RNA methyltransferase RlmN	1.0914805794
+UniRef50_Q8E1A3: Probable dual-specificity RNA methyltransferase RlmN|g__Streptococcus.s__Streptococcus_agalactiae	0.9372071228
+UniRef50_Q8E1A3: Probable dual-specificity RNA methyltransferase RlmN|unclassified	0.1542734567
+UniRef50_UPI00036C5FB2: hypothetical protein	1.0914195130
+UniRef50_UPI00036C5FB2: hypothetical protein|unclassified	1.0914195130
+UniRef50_A4VT95: Predicted GTPase	1.0913878857
+UniRef50_A4VT95: Predicted GTPase|unclassified	1.0913878857
+UniRef50_V5YPF8	1.0913068963
+UniRef50_V5YPF8|unclassified	1.0913068963
+UniRef50_UPI00047D2CC8: hypothetical protein	1.0912527786
+UniRef50_UPI00047D2CC8: hypothetical protein|unclassified	1.0912527786
+UniRef50_B3EFN5: Serine hydroxymethyltransferase	1.0911993606
+UniRef50_B3EFN5: Serine hydroxymethyltransferase|unclassified	1.0911993606
+UniRef50_UPI0003C0FD80	1.0909279631
+UniRef50_UPI0003C0FD80|unclassified	1.0909279631
+UniRef50_T5RIM4	1.0908415739
+UniRef50_T5RIM4|unclassified	1.0908415739
+UniRef50_U2Z3C6: NnrU family protein in cluster with Mesaconyl-CoA hydratase	1.0906370485
+UniRef50_U2Z3C6: NnrU family protein in cluster with Mesaconyl-CoA hydratase|unclassified	1.0906370485
+UniRef50_UPI0003B33B97: peptidyl-prolyl cis-trans isomerase	1.0906353787
+UniRef50_UPI0003B33B97: peptidyl-prolyl cis-trans isomerase|unclassified	1.0906353787
+UniRef50_A2AS89: Agmatinase, mitochondrial	1.0905125409
+UniRef50_A2AS89: Agmatinase, mitochondrial|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0905125409
+UniRef50_R4ZXU5: Polysaccharide biosynthesis glycosyl transferase CpsN	1.0905125409
+UniRef50_R4ZXU5: Polysaccharide biosynthesis glycosyl transferase CpsN|g__Streptococcus.s__Streptococcus_agalactiae	1.0905125409
+UniRef50_S5CR26: Xaa-Pro aminopeptidase	1.0905125409
+UniRef50_S5CR26: Xaa-Pro aminopeptidase|g__Acinetobacter.s__Acinetobacter_baumannii	1.0905125409
+UniRef50_UPI0003B409DA: glycine/betaine ABC transporter substrate-binding protein	1.0905125409
+UniRef50_UPI0003B409DA: glycine/betaine ABC transporter substrate-binding protein|unclassified	1.0905125409
+UniRef50_Q9RZ79: Transposase, putative	1.0903551107
+UniRef50_Q9RZ79: Transposase, putative|g__Deinococcus.s__Deinococcus_radiodurans	1.0903551107
+UniRef50_B9TB91	1.0903513982
+UniRef50_B9TB91|unclassified	1.0903513982
+UniRef50_Q42601: Carbamoyl-phosphate synthase large chain, chloroplastic	1.0901446126
+UniRef50_Q42601: Carbamoyl-phosphate synthase large chain, chloroplastic|g__Helicobacter.s__Helicobacter_pylori	0.9418047025
+UniRef50_Q42601: Carbamoyl-phosphate synthase large chain, chloroplastic|unclassified	0.1483399101
+UniRef50_H8LCJ6: Transcriptional regulator, PadR family	1.0900470654
+UniRef50_H8LCJ6: Transcriptional regulator, PadR family|unclassified	1.0900470654
+UniRef50_E5YRL4: AAA ATPase	1.0900112752
+UniRef50_E5YRL4: AAA ATPase|unclassified	1.0900112752
+UniRef50_Q10KV8	1.0899230937
+UniRef50_Q10KV8|unclassified	1.0899230937
+UniRef50_UPI000477A269: hypothetical protein	1.0898302305
+UniRef50_UPI000477A269: hypothetical protein|unclassified	1.0898302305
+UniRef50_UPI00046FA5DF: hypothetical protein	1.0894184038
+UniRef50_UPI00046FA5DF: hypothetical protein|unclassified	1.0894184038
+UniRef50_B2TJ59: Riboflavin biosynthesis protein RibF	1.0893246187
+UniRef50_B2TJ59: Riboflavin biosynthesis protein RibF|g__Clostridium.s__Clostridium_beijerinckii	1.0893246187
+UniRef50_G8VF81	1.0893246187
+UniRef50_G8VF81|g__Propionibacterium.s__Propionibacterium_acnes	1.0893246187
+UniRef50_S5CQE4: GGDEF domain protein	1.0893246187
+UniRef50_S5CQE4: GGDEF domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.0893246187
+UniRef50_U3T5A3: AraC family transcriptional regulator	1.0893246187
+UniRef50_U3T5A3: AraC family transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	1.0893246187
+UniRef50_Q9RGN7	1.0891917330
+UniRef50_Q9RGN7|unclassified	1.0891917330
+UniRef50_UPI0003634400: hypothetical protein	1.0891751782
+UniRef50_UPI0003634400: hypothetical protein|unclassified	1.0891751782
+UniRef50_X4XST8: Flavin mononucleotide phosphatase	1.0891061548
+UniRef50_X4XST8: Flavin mononucleotide phosphatase|unclassified	1.0891061548
+UniRef50_UPI0001FFFF4F: putative monovalent cation/H+ antiporter subunit G, partial	1.0889227368
+UniRef50_UPI0001FFFF4F: putative monovalent cation/H+ antiporter subunit G, partial|unclassified	1.0889227368
+UniRef50_J4Q6B5: IS1167, transposase domain protein	1.0888725799
+UniRef50_J4Q6B5: IS1167, transposase domain protein|unclassified	1.0888725799
+UniRef50_P77986: Cysteine--tRNA ligase (Fragment)	1.0888702956
+UniRef50_P77986: Cysteine--tRNA ligase (Fragment)|unclassified	1.0888702956
+UniRef50_G5RNC5: Autoinducer 2 modifying protein LsrG	1.0888439050
+UniRef50_G5RNC5: Autoinducer 2 modifying protein LsrG|unclassified	1.0888439050
+UniRef50_UPI0003056218: hypothetical protein	1.0888141877
+UniRef50_UPI0003056218: hypothetical protein|unclassified	1.0888141877
+UniRef50_B3FTP3: FAD-dependent oxidoreductase (Fragment)	1.0884685591
+UniRef50_B3FTP3: FAD-dependent oxidoreductase (Fragment)|unclassified	1.0884685591
+UniRef50_J2YEX7: Transport protein, AzlD family	1.0883544469
+UniRef50_J2YEX7: Transport protein, AzlD family|unclassified	1.0883544469
+UniRef50_UPI00036E1801: hypothetical protein, partial	1.0882440112
+UniRef50_UPI00036E1801: hypothetical protein, partial|unclassified	1.0882440112
+UniRef50_UPI0000E0FA29: hypothetical protein	1.0882278844
+UniRef50_UPI0000E0FA29: hypothetical protein|unclassified	1.0882278844
+UniRef50_A9M492: Adhesin MafA 3	1.0881392818
+UniRef50_A9M492: Adhesin MafA 3|g__Neisseria.s__Neisseria_meningitidis	1.0881392818
+UniRef50_F4A9G3: Glycerol dehydratase activator	1.0881392818
+UniRef50_F4A9G3: Glycerol dehydratase activator|g__Clostridium.s__Clostridium_beijerinckii	1.0881392818
+UniRef50_UPI0004432605: PREDICTED: collagen alpha-1(II) chain-like	1.0881392818
+UniRef50_UPI0004432605: PREDICTED: collagen alpha-1(II) chain-like|unclassified	1.0881392818
+UniRef50_UPI00036F90E7: hypothetical protein	1.0877619462
+UniRef50_UPI00036F90E7: hypothetical protein|unclassified	1.0877619462
+UniRef50_V7P0L3	1.0873781989
+UniRef50_V7P0L3|unclassified	1.0873781989
+UniRef50_P35141: Adenylate kinase (Fragment)	1.0873091607
+UniRef50_P35141: Adenylate kinase (Fragment)|unclassified	1.0873091607
+UniRef50_UPI00045E9848: hypothetical protein	1.0872656664
+UniRef50_UPI00045E9848: hypothetical protein|unclassified	1.0872656664
+UniRef50_K7U2F6	1.0872472305
+UniRef50_K7U2F6|unclassified	1.0872472305
+UniRef50_F9Q6R9	1.0872047370
+UniRef50_F9Q6R9|unclassified	1.0872047370
+UniRef50_A0A011PD71	1.0869565217
+UniRef50_A0A011PD71|unclassified	1.0869565217
+UniRef50_F0YDK9: Expressed protein	1.0869565217
+UniRef50_F0YDK9: Expressed protein|unclassified	1.0869565217
+UniRef50_F9V830	1.0869565217
+UniRef50_F9V830|unclassified	1.0869565217
+UniRef50_UPI00041B6514: hypothetical protein	1.0861324709
+UniRef50_UPI00041B6514: hypothetical protein|unclassified	1.0861324709
+UniRef50_UPI0003602513: hypothetical protein	1.0860711122
+UniRef50_UPI0003602513: hypothetical protein|unclassified	1.0860711122
+UniRef50_A9GC83: Undecaprenyl-diphosphatase	1.0860503619
+UniRef50_A9GC83: Undecaprenyl-diphosphatase|unclassified	1.0860503619
+UniRef50_A6LZM9	1.0857763301
+UniRef50_A6LZM9|g__Clostridium.s__Clostridium_beijerinckii	1.0857763301
+UniRef50_D4H9R8: Triacylglycerol lipase	1.0857763301
+UniRef50_D4H9R8: Triacylglycerol lipase|g__Propionibacterium.s__Propionibacterium_acnes	1.0857763301
+UniRef50_D8PS00	1.0857763301
+UniRef50_D8PS00|unclassified	1.0857763301
+UniRef50_W7BDF0	1.0855086104
+UniRef50_W7BDF0|unclassified	1.0855086104
+UniRef50_M5AS85	1.0854446720
+UniRef50_M5AS85|unclassified	1.0854446720
+UniRef50_W4HQ00	1.0852710737
+UniRef50_W4HQ00|unclassified	1.0852710737
+UniRef50_UPI00037EC181: hypothetical protein	1.0852569955
+UniRef50_UPI00037EC181: hypothetical protein|unclassified	1.0852569955
+UniRef50_A9H6L7	1.0851649241
+UniRef50_A9H6L7|unclassified	1.0851649241
+UniRef50_UPI00036E2547: hypothetical protein, partial	1.0850427076
+UniRef50_UPI00036E2547: hypothetical protein, partial|unclassified	1.0850427076
+UniRef50_A4WNS2: Lytic transglycosylase, catalytic	1.0849768419
+UniRef50_A4WNS2: Lytic transglycosylase, catalytic|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.0849768419
+UniRef50_K1TQ45: Beta-xylosidase (Fragment)	1.0847780831
+UniRef50_K1TQ45: Beta-xylosidase (Fragment)|unclassified	1.0847780831
+UniRef50_C3L0M2	1.0845986985
+UniRef50_C3L0M2|g__Clostridium.s__Clostridium_beijerinckii	1.0845986985
+UniRef50_E1Q396: Thioredoxin reductase	1.0845986985
+UniRef50_E1Q396: Thioredoxin reductase|g__Helicobacter.s__Helicobacter_pylori	1.0845986985
+UniRef50_UPI00036C0EF1: hypothetical protein	1.0845986985
+UniRef50_UPI00036C0EF1: hypothetical protein|unclassified	1.0845986985
+UniRef50_S6UVP6: Sarcosine oxidase, gamma subunit (Fragment)	1.0845718118
+UniRef50_S6UVP6: Sarcosine oxidase, gamma subunit (Fragment)|unclassified	1.0845718118
+UniRef50_UPI0003B6B13E: ABC transporter permease	1.0843077465
+UniRef50_UPI0003B6B13E: ABC transporter permease|unclassified	1.0843077465
+UniRef50_UPI000475A254: 4-amino-4-deoxychorismate lyase	1.0842088893
+UniRef50_UPI000475A254: 4-amino-4-deoxychorismate lyase|unclassified	1.0842088893
+UniRef50_H8IX64	1.0841823220
+UniRef50_H8IX64|unclassified	1.0841823220
+UniRef50_M7E3F1	1.0841468642
+UniRef50_M7E3F1|unclassified	1.0841468642
+UniRef50_Q9EVM1: Replication protein (Fragment)	1.0840562065
+UniRef50_Q9EVM1: Replication protein (Fragment)|unclassified	1.0840562065
+UniRef50_I3X9F0	1.0839162952
+UniRef50_I3X9F0|unclassified	1.0839162952
+UniRef50_G1X447	1.0838410866
+UniRef50_G1X447|unclassified	1.0838410866
+UniRef50_A0A059II46	1.0836071844
+UniRef50_A0A059II46|unclassified	1.0836071844
+UniRef50_D4HB86: ABC transporter, ATP-binding protein	1.0834236186
+UniRef50_D4HB86: ABC transporter, ATP-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	1.0834236186
+UniRef50_D6Y636: Diaminopimelate decarboxylase, putative	1.0834236186
+UniRef50_D6Y636: Diaminopimelate decarboxylase, putative|unclassified	1.0834236186
+UniRef50_G2L5D8: Acetylornithine deacetylase	1.0834236186
+UniRef50_G2L5D8: Acetylornithine deacetylase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0834236186
+UniRef50_Q1CUW0: Phosphate acyltransferase	1.0834236186
+UniRef50_Q1CUW0: Phosphate acyltransferase|g__Helicobacter.s__Helicobacter_pylori	1.0834236186
+UniRef50_T0P5W3: Exotoxin A	1.0834236186
+UniRef50_T0P5W3: Exotoxin A|unclassified	1.0834236186
+UniRef50_A0A012C6A8	1.0832224863
+UniRef50_A0A012C6A8|unclassified	1.0832224863
+UniRef50_L8P925	1.0832221785
+UniRef50_L8P925|unclassified	1.0832221785
+UniRef50_R1FE37	1.0831609458
+UniRef50_R1FE37|unclassified	1.0831609458
+UniRef50_UPI00034FCB25: PREDICTED: transmembrane protein C16orf54 homolog	1.0831609444
+UniRef50_UPI00034FCB25: PREDICTED: transmembrane protein C16orf54 homolog|unclassified	1.0831609444
+UniRef50_UPI00042B69C5: Translation initiation factor 3 protein isoform 4, partial	1.0830851287
+UniRef50_UPI00042B69C5: Translation initiation factor 3 protein isoform 4, partial|unclassified	1.0830851287
+UniRef50_T1B3T8: Virulence factor MviN (Fragment)	1.0830010639
+UniRef50_T1B3T8: Virulence factor MviN (Fragment)|unclassified	1.0830010639
+UniRef50_I1Y621: Lytic murein transglycosylase	1.0826753955
+UniRef50_I1Y621: Lytic murein transglycosylase|g__Acinetobacter.s__Acinetobacter_baumannii	1.0121457490
+UniRef50_I1Y621: Lytic murein transglycosylase|unclassified	0.0705296465
+UniRef50_K1ZW46	1.0826649272
+UniRef50_K1ZW46|unclassified	1.0826649272
+UniRef50_A9MUH4	1.0823910194
+UniRef50_A9MUH4|unclassified	1.0823910194
+UniRef50_D2PIY1: Peptidase S15	1.0822510823
+UniRef50_D2PIY1: Peptidase S15|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0822510823
+UniRef50_F5WYW3: Signal peptide containing protein	1.0822510823
+UniRef50_F5WYW3: Signal peptide containing protein|g__Streptococcus.s__Streptococcus_agalactiae	1.0822510823
+UniRef50_I6WV66: Transcriptional regulator	1.0822510823
+UniRef50_I6WV66: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0822510823
+UniRef50_P0A4G4: Metal ABC transporter substrate-binding lipoprotein	1.0822510823
+UniRef50_P0A4G4: Metal ABC transporter substrate-binding lipoprotein|g__Streptococcus.s__Streptococcus_agalactiae	1.0822510823
+UniRef50_UPI00039E82F8: branched-chain amino acid aminotransferase	1.0820799009
+UniRef50_UPI00039E82F8: branched-chain amino acid aminotransferase|unclassified	1.0820799009
+UniRef50_UPI00031EBC2A: hypothetical protein	1.0818239159
+UniRef50_UPI00031EBC2A: hypothetical protein|unclassified	1.0818239159
+UniRef50_Q62CS2: Conserved domain protein	1.0815508337
+UniRef50_Q62CS2: Conserved domain protein|unclassified	1.0815508337
+UniRef50_W4K0D8	1.0814578195
+UniRef50_W4K0D8|unclassified	1.0814578195
+UniRef50_UPI000475D486: pseudouridine synthase	1.0812610341
+UniRef50_UPI000475D486: pseudouridine synthase|unclassified	1.0812610341
+UniRef50_Q4EDT9: Mucin	1.0810667060
+UniRef50_Q4EDT9: Mucin|unclassified	1.0810667060
+UniRef50_B7H1A9: DNA polymerase III, subunits gamma and tau	1.0810539091
+UniRef50_B7H1A9: DNA polymerase III, subunits gamma and tau|g__Acinetobacter.s__Acinetobacter_baumannii	1.0810539091
+UniRef50_Z2DAQ4: Multidrug transporter	1.0810219515
+UniRef50_Z2DAQ4: Multidrug transporter|unclassified	1.0810219515
+UniRef50_UPI0003FAEB30: hypothetical protein	1.0808132042
+UniRef50_UPI0003FAEB30: hypothetical protein|unclassified	1.0808132042
+UniRef50_UPI00047CA452: metal-dependent hydrolase	1.0807585587
+UniRef50_UPI00047CA452: metal-dependent hydrolase|unclassified	1.0807585587
+UniRef50_UPI0004666EB7: sulfate ABC transporter ATP-binding protein	1.0807313420
+UniRef50_UPI0004666EB7: sulfate ABC transporter ATP-binding protein|unclassified	1.0807313420
+UniRef50_A1D4H8	1.0806510343
+UniRef50_A1D4H8|unclassified	1.0806510343
+UniRef50_C1E3Y9: Carbamoyl-phosphate synthase	1.0806310949
+UniRef50_C1E3Y9: Carbamoyl-phosphate synthase|g__Acinetobacter.s__Acinetobacter_baumannii	1.0806310949
+UniRef50_Q5F9U6: Ferrochelatase	1.0804262161
+UniRef50_Q5F9U6: Ferrochelatase|g__Neisseria.s__Neisseria_meningitidis	1.0384215992
+UniRef50_Q5F9U6: Ferrochelatase|unclassified	0.0420046169
+UniRef50_D8IWQ9: Cytochrome c protein	1.0799136069
+UniRef50_D8IWQ9: Cytochrome c protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0799136069
+UniRef50_Q1IXD5: Deoxyguanosinetriphosphate triphosphohydrolase-like protein	1.0799136069
+UniRef50_Q1IXD5: Deoxyguanosinetriphosphate triphosphohydrolase-like protein|g__Deinococcus.s__Deinococcus_radiodurans	1.0799136069
+UniRef50_W5ENS0	1.0799136069
+UniRef50_W5ENS0|unclassified	1.0799136069
+UniRef50_A4WW22: CsbD family protein	1.0799007946
+UniRef50_A4WW22: CsbD family protein|unclassified	1.0799007946
+UniRef50_UPI0003B485D5: AsnC family transcriptional regulator	1.0797711921
+UniRef50_UPI0003B485D5: AsnC family transcriptional regulator|unclassified	1.0797711921
+UniRef50_M0UK13	1.0797090878
+UniRef50_M0UK13|unclassified	1.0797090878
+UniRef50_W7Q1M3	1.0794678749
+UniRef50_W7Q1M3|unclassified	1.0794678749
+UniRef50_D8LEP5	1.0792154319
+UniRef50_D8LEP5|unclassified	1.0792154319
+UniRef50_B7ZZ92	1.0789692781
+UniRef50_B7ZZ92|unclassified	1.0789692781
+UniRef50_K2FK35	1.0789561338
+UniRef50_K2FK35|unclassified	1.0789561338
+UniRef50_UPI0001BC9263: radical SAM domain-containing protein	1.0788213045
+UniRef50_UPI0001BC9263: radical SAM domain-containing protein|unclassified	1.0788213045
+UniRef50_UPI000362A601: hypothetical protein, partial	1.0788124885
+UniRef50_UPI000362A601: hypothetical protein, partial|unclassified	1.0788124885
+UniRef50_UPI00046CE9BB: hypothetical protein	1.0788100142
+UniRef50_UPI00046CE9BB: hypothetical protein|unclassified	1.0788100142
+UniRef50_A6LUX7: Regulatory protein, LysR	1.0787486516
+UniRef50_A6LUX7: Regulatory protein, LysR|g__Clostridium.s__Clostridium_beijerinckii	1.0787486516
+UniRef50_A8IJ37: Dioxygenase	1.0787486516
+UniRef50_A8IJ37: Dioxygenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.0787486516
+UniRef50_F2JI77: DEAD/DEAH box helicase domain protein	1.0787486516
+UniRef50_F2JI77: DEAD/DEAH box helicase domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.0787486516
+UniRef50_Q9RZE0	1.0787486516
+UniRef50_Q9RZE0|g__Deinococcus.s__Deinococcus_radiodurans	1.0787486516
+UniRef50_T7RPB5: Acriflavine resistance protein F	1.0787486516
+UniRef50_T7RPB5: Acriflavine resistance protein F|g__Escherichia.s__Escherichia_coli	1.0787486516
+UniRef50_UPI0002260838: putative glycine betaine/L-proline ABC transporter, periplasmic component, partial	1.0787399252
+UniRef50_UPI0002260838: putative glycine betaine/L-proline ABC transporter, periplasmic component, partial|unclassified	1.0787399252
+UniRef50_F2AHG4	1.0786949532
+UniRef50_F2AHG4|unclassified	1.0786949532
+UniRef50_D9VIN0: Predicted protein	1.0786527056
+UniRef50_D9VIN0: Predicted protein|unclassified	1.0786527056
+UniRef50_UPI000299D13B: ABC transporter permease, partial	1.0786422151
+UniRef50_UPI000299D13B: ABC transporter permease, partial|unclassified	1.0786422151
+UniRef50_V4QY40	1.0784971565
+UniRef50_V4QY40|unclassified	1.0784971565
+UniRef50_Q11HJ3	1.0783542254
+UniRef50_Q11HJ3|unclassified	1.0783542254
+UniRef50_A8FBX4: 3-oxoacyl-[acyl-carrier-protein] synthase 3	1.0781379881
+UniRef50_A8FBX4: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	1.0781379881
+UniRef50_K4Z2Q6	1.0778728718
+UniRef50_K4Z2Q6|unclassified	1.0778728718
+UniRef50_A3N9N2	1.0777456212
+UniRef50_A3N9N2|unclassified	1.0777456212
+UniRef50_UPI0003792331: hypothetical protein	1.0776814606
+UniRef50_UPI0003792331: hypothetical protein|unclassified	1.0776814606
+UniRef50_Q00469: Light-independent protochlorophyllide reductase iron-sulfur ATP-binding protein	1.0776756419
+UniRef50_Q00469: Light-independent protochlorophyllide reductase iron-sulfur ATP-binding protein|unclassified	1.0776756419
+UniRef50_N9J1H3	1.0775862069
+UniRef50_N9J1H3|g__Acinetobacter.s__Acinetobacter_baumannii	1.0775862069
+UniRef50_B0V4X0: Type IV pilus biogenesis protein	1.0775546639
+UniRef50_B0V4X0: Type IV pilus biogenesis protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.0775546639
+UniRef50_R6AAB2: Cytosine deaminase	1.0774546905
+UniRef50_R6AAB2: Cytosine deaminase|unclassified	1.0774546905
+UniRef50_UPI00026CD1EF: 3-oxoacid CoA-transferase subunit A	1.0774438015
+UniRef50_UPI00026CD1EF: 3-oxoacid CoA-transferase subunit A|unclassified	1.0774438015
+UniRef50_Q65WS5	1.0774355091
+UniRef50_Q65WS5|unclassified	1.0774355091
+UniRef50_G5LP26	1.0773760563
+UniRef50_G5LP26|unclassified	1.0773760563
+UniRef50_W9S8Y4	1.0773487464
+UniRef50_W9S8Y4|unclassified	1.0773487464
+UniRef50_D6AUC9	1.0772137798
+UniRef50_D6AUC9|unclassified	1.0772137798
+UniRef50_UPI00037AAD6E: hypothetical protein	1.0770943478
+UniRef50_UPI00037AAD6E: hypothetical protein|unclassified	1.0770943478
+UniRef50_UPI0004721889: HAD family hydrolase, partial	1.0770559396
+UniRef50_UPI0004721889: HAD family hydrolase, partial|unclassified	1.0770559396
+UniRef50_UPI0002624B69: thioredoxin-disulfide reductase, partial	1.0769868333
+UniRef50_UPI0002624B69: thioredoxin-disulfide reductase, partial|unclassified	1.0769868333
+UniRef50_S9S0S8: Exopolyphosphatase	1.0768815894
+UniRef50_S9S0S8: Exopolyphosphatase|unclassified	1.0768815894
+UniRef50_C6UMS9	1.0766032664
+UniRef50_C6UMS9|unclassified	1.0766032664
+UniRef50_S7UZQ5	1.0765626657
+UniRef50_S7UZQ5|unclassified	1.0765626657
+UniRef50_B5L3R8: WfeY	1.0764598936
+UniRef50_B5L3R8: WfeY|unclassified	1.0764598936
+UniRef50_D6AT21	1.0764262648
+UniRef50_D6AT21|unclassified	1.0764262648
+UniRef50_S1SA14: Integral membrane protein	1.0764262648
+UniRef50_S1SA14: Integral membrane protein|unclassified	1.0764262648
+UniRef50_W9ESU2	1.0763997776
+UniRef50_W9ESU2|unclassified	1.0763997776
+UniRef50_A0A059IK34	1.0763951980
+UniRef50_A0A059IK34|unclassified	1.0763951980
+UniRef50_M5E9U1: Activator of Chs3-like protein	1.0763895561
+UniRef50_M5E9U1: Activator of Chs3-like protein|unclassified	1.0763895561
+UniRef50_UPI00036013C9: hypothetical protein, partial	1.0763739441
+UniRef50_UPI00036013C9: hypothetical protein, partial|unclassified	1.0763739441
+UniRef50_I0C2P3: Nitrogen regulation protein NIFR3	1.0763501957
+UniRef50_I0C2P3: Nitrogen regulation protein NIFR3|unclassified	1.0763501957
+UniRef50_M0SN36	1.0759034283
+UniRef50_M0SN36|unclassified	1.0759034283
+UniRef50_UPI00035CC609: hypothetical protein	1.0758574051
+UniRef50_UPI00035CC609: hypothetical protein|unclassified	1.0758574051
+UniRef50_I3UA32: Transketolase	1.0756596917
+UniRef50_I3UA32: Transketolase|unclassified	1.0756596917
+UniRef50_Q1GDF2	1.0756116589
+UniRef50_Q1GDF2|unclassified	1.0756116589
+UniRef50_Q7X9J2: Ocs-element binding factor 1 (Fragment)	1.0753915451
+UniRef50_Q7X9J2: Ocs-element binding factor 1 (Fragment)|unclassified	1.0753915451
+UniRef50_M1FJM0	1.0753365837
+UniRef50_M1FJM0|unclassified	1.0753365837
+UniRef50_F6A168: Ribose-phosphate diphosphokinase	1.0752688172
+UniRef50_F6A168: Ribose-phosphate diphosphokinase|g__Propionibacterium.s__Propionibacterium_acnes	1.0752688172
+UniRef50_G0A8S2	1.0752688172
+UniRef50_G0A8S2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0752688172
+UniRef50_G4LEY5: LysR family transcriptional regulator	1.0752688172
+UniRef50_G4LEY5: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0752688172
+UniRef50_G7U7Q7: PAS domain S-box	1.0752688172
+UniRef50_G7U7Q7: PAS domain S-box|g__Propionibacterium.s__Propionibacterium_acnes	1.0752688172
+UniRef50_UPI00045613BB: hypothetical protein PFL1_05969	1.0752688172
+UniRef50_UPI00045613BB: hypothetical protein PFL1_05969|unclassified	1.0752688172
+UniRef50_A9NFF0: 3-oxoacyl-[acyl-carrier-protein] synthase 3	1.0752480445
+UniRef50_A9NFF0: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	1.0752480445
+UniRef50_UPI0001BF66DD: hypothetical protein SMAC_10487, partial	1.0750379104
+UniRef50_UPI0001BF66DD: hypothetical protein SMAC_10487, partial|unclassified	1.0750379104
+UniRef50_UPI00041F4DD3: cytochrome B562	1.0750093514
+UniRef50_UPI00041F4DD3: cytochrome B562|unclassified	1.0750093514
+UniRef50_Q8E0X1: Prophage LambdaSa1, pblA protein, internal deletion	1.0749836485
+UniRef50_Q8E0X1: Prophage LambdaSa1, pblA protein, internal deletion|g__Streptococcus.s__Streptococcus_agalactiae	1.0749836485
+UniRef50_W7BGX2: Transposase IS3/IS911 family protein (Fragment)	1.0748608857
+UniRef50_W7BGX2: Transposase IS3/IS911 family protein (Fragment)|unclassified	1.0748608857
+UniRef50_W1VND5: Threonine synthase (Fragment)	1.0748526032
+UniRef50_W1VND5: Threonine synthase (Fragment)|unclassified	1.0748526032
+UniRef50_UPI0002D8B23E: acetyltransferase	1.0747217715
+UniRef50_UPI0002D8B23E: acetyltransferase|unclassified	1.0747217715
+UniRef50_G9KW83: Ubiquitin-conjugating enzyme E2H (Fragment)	1.0746508189
+UniRef50_G9KW83: Ubiquitin-conjugating enzyme E2H (Fragment)|unclassified	1.0746508189
+UniRef50_T0ZN95	1.0746316454
+UniRef50_T0ZN95|unclassified	1.0746316454
+UniRef50_W0ATV9	1.0745298501
+UniRef50_W0ATV9|unclassified	1.0745298501
+UniRef50_UPI00029B24E7: 30S ribosomal protein S10	1.0743125134
+UniRef50_UPI00029B24E7: 30S ribosomal protein S10|unclassified	1.0743125134
+UniRef50_A4VRL9: Hydrolase, alpha/beta fold family	1.0741138561
+UniRef50_A4VRL9: Hydrolase, alpha/beta fold family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0741138561
+UniRef50_Q1CSU8: tRNA pseudouridine synthase D	1.0741138561
+UniRef50_Q1CSU8: tRNA pseudouridine synthase D|g__Helicobacter.s__Helicobacter_pylori	1.0741138561
+UniRef50_V6AIC2	1.0740449057
+UniRef50_V6AIC2|unclassified	1.0740449057
+UniRef50_Q3J2Y0: ABC oligo/dipeptide transporter, fused ATPase subunits	1.0736504027
+UniRef50_Q3J2Y0: ABC oligo/dipeptide transporter, fused ATPase subunits|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.0736504027
+UniRef50_UPI000377F130: hypothetical protein	1.0735492152
+UniRef50_UPI000377F130: hypothetical protein|unclassified	1.0735492152
+UniRef50_UPI000378D9D6: MULTISPECIES: adenosylcobinamide kinase	1.0734724103
+UniRef50_UPI000378D9D6: MULTISPECIES: adenosylcobinamide kinase|unclassified	1.0734724103
+UniRef50_Q1IWL4: Chaperone protein DnaK	1.0733921438
+UniRef50_Q1IWL4: Chaperone protein DnaK|g__Deinococcus.s__Deinococcus_radiodurans	1.0733921438
+UniRef50_Q7QBL5: AGAP003116-PA	1.0733905216
+UniRef50_Q7QBL5: AGAP003116-PA|unclassified	1.0733905216
+UniRef50_A0A058ZKQ4	1.0730988260
+UniRef50_A0A058ZKQ4|unclassified	1.0730988260
+UniRef50_J9ZNM9: Malonyl CoA-ACP transacylase	1.0729613734
+UniRef50_J9ZNM9: Malonyl CoA-ACP transacylase|g__Escherichia.s__Escherichia_coli	1.0729613734
+UniRef50_Q5N127: Transaldolase	1.0729613734
+UniRef50_Q5N127: Transaldolase|g__Acinetobacter.s__Acinetobacter_baumannii	1.0729613734
+UniRef50_UPI0001745E16: NrdR family transcriptional regulator	1.0726434223
+UniRef50_UPI0001745E16: NrdR family transcriptional regulator|unclassified	1.0726434223
+UniRef50_UPI00042AF78A: PREDICTED: myosin IC heavy chain-like	1.0725573439
+UniRef50_UPI00042AF78A: PREDICTED: myosin IC heavy chain-like|unclassified	1.0725573439
+UniRef50_X1B9J2: Marine sediment metagenome DNA, contig: S01H4_C00246	1.0725452982
+UniRef50_X1B9J2: Marine sediment metagenome DNA, contig: S01H4_C00246|unclassified	1.0725452982
+UniRef50_F8A7P3: Proteophosphoglycan ppg4	1.0724617658
+UniRef50_F8A7P3: Proteophosphoglycan ppg4|unclassified	1.0724617658
+UniRef50_UPI000472CE4F: hypothetical protein	1.0724110503
+UniRef50_UPI000472CE4F: hypothetical protein|unclassified	1.0724110503
+UniRef50_A8HQ90: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	1.0722985001
+UniRef50_A8HQ90: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	1.0722985001
+UniRef50_A7HHU8: LigA	1.0722449598
+UniRef50_A7HHU8: LigA|unclassified	1.0722449598
+UniRef50_X1HX98: Marine sediment metagenome DNA, contig: S03H2_S08791 (Fragment)	1.0722315617
+UniRef50_X1HX98: Marine sediment metagenome DNA, contig: S03H2_S08791 (Fragment)|unclassified	1.0722315617
+UniRef50_C2PP17	1.0721185860
+UniRef50_C2PP17|unclassified	1.0721185860
+UniRef50_Q8NWT8	1.0721015813
+UniRef50_Q8NWT8|unclassified	1.0721015813
+UniRef50_A0LBS6: Plasmid pRiA4b ORF-3 family protein	1.0719573480
+UniRef50_A0LBS6: Plasmid pRiA4b ORF-3 family protein|unclassified	1.0719573480
+UniRef50_M0TBG0	1.0718587110
+UniRef50_M0TBG0|unclassified	1.0718587110
+UniRef50_A0A023RRW7: Lipid A biosynthesis acyltransferase	1.0718113612
+UniRef50_A0A023RRW7: Lipid A biosynthesis acyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	1.0718113612
+UniRef50_I6RW78: ATPase	1.0718113612
+UniRef50_I6RW78: ATPase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.0718113612
+UniRef50_W0YTD4: Rhamnosyltransferase chain B	1.0718113612
+UniRef50_W0YTD4: Rhamnosyltransferase chain B|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0718113612
+UniRef50_Q01A41: WGS project CAID00000000 data, contig chromosome 04	1.0714310257
+UniRef50_Q01A41: WGS project CAID00000000 data, contig chromosome 04|unclassified	1.0714310257
+UniRef50_W6MBW4	1.0713476717
+UniRef50_W6MBW4|unclassified	1.0713476717
+UniRef50_D2SGL3: Gm3773 predicted gene 3773	1.0713401470
+UniRef50_D2SGL3: Gm3773 predicted gene 3773|unclassified	1.0713401470
+UniRef50_C0QB47	1.0712087269
+UniRef50_C0QB47|unclassified	1.0712087269
+UniRef50_E9YT07	1.0711722361
+UniRef50_E9YT07|unclassified	1.0711722361
+UniRef50_Q47GC9: 2,3-dihydroxyphenylpropionate/2,3-dihydroxicinnamic acid 1,2-dioxygenase 2	1.0711008076
+UniRef50_Q47GC9: 2,3-dihydroxyphenylpropionate/2,3-dihydroxicinnamic acid 1,2-dioxygenase 2|g__Escherichia.s__Escherichia_coli	1.0615711253
+UniRef50_Q47GC9: 2,3-dihydroxyphenylpropionate/2,3-dihydroxicinnamic acid 1,2-dioxygenase 2|unclassified	0.0095296823
+UniRef50_W1WCG8	1.0711002228
+UniRef50_W1WCG8|unclassified	1.0711002228
+UniRef50_U6MFH4	1.0710905839
+UniRef50_U6MFH4|unclassified	1.0710905839
+UniRef50_X5WY92	1.0707687940
+UniRef50_X5WY92|unclassified	1.0707687940
+UniRef50_U6GME6	1.0707666339
+UniRef50_U6GME6|unclassified	1.0707666339
+UniRef50_F5M1U8	1.0707271538
+UniRef50_F5M1U8|unclassified	1.0707271538
+UniRef50_Q0B3Q1: Flavin-containing monooxygenase FMO	1.0706638116
+UniRef50_Q0B3Q1: Flavin-containing monooxygenase FMO|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0706638116
+UniRef50_R4LLY5	1.0706638116
+UniRef50_R4LLY5|unclassified	1.0706638116
+UniRef50_R8ZHF6	1.0706638116
+UniRef50_R8ZHF6|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0706638116
+UniRef50_UPI000315C43C: hypothetical protein	1.0705834900
+UniRef50_UPI000315C43C: hypothetical protein|unclassified	1.0705834900
+UniRef50_O32177: 3-ketoacyl-CoA thiolase	1.0705814344
+UniRef50_O32177: 3-ketoacyl-CoA thiolase|g__Deinococcus.s__Deinococcus_radiodurans	1.0309278351
+UniRef50_O32177: 3-ketoacyl-CoA thiolase|unclassified	0.0396535994
+UniRef50_UPI0003721815: major tail tube protein	1.0705324289
+UniRef50_UPI0003721815: major tail tube protein|unclassified	1.0705324289
+UniRef50_UPI00040BD6B1: spermidine/putrescine import ATP-binding protein PotA	1.0705071242
+UniRef50_UPI00040BD6B1: spermidine/putrescine import ATP-binding protein PotA|unclassified	1.0705071242
+UniRef50_M2ZDM1	1.0704199428
+UniRef50_M2ZDM1|unclassified	1.0704199428
+UniRef50_UPI00016A2E40: hypothetical protein, partial	1.0702800052
+UniRef50_UPI00016A2E40: hypothetical protein, partial|unclassified	1.0702800052
+UniRef50_Q13T46	1.0702619105
+UniRef50_Q13T46|unclassified	1.0702619105
+UniRef50_Q165P2	1.0702069910
+UniRef50_Q165P2|unclassified	1.0702069910
+UniRef50_UPI000359CFA8	1.0701926437
+UniRef50_UPI000359CFA8|unclassified	1.0701926437
+UniRef50_G7R477	1.0701050085
+UniRef50_G7R477|unclassified	1.0701050085
+UniRef50_UPI000379CA00: hypothetical protein	1.0700777815
+UniRef50_UPI000379CA00: hypothetical protein|unclassified	1.0700777815
+UniRef50_Q20ZB8	1.0698256492
+UniRef50_Q20ZB8|unclassified	1.0698256492
+UniRef50_UPI0003658DCB: hypothetical protein	1.0698164081
+UniRef50_UPI0003658DCB: hypothetical protein|unclassified	1.0698164081
+UniRef50_X1ML40: Marine sediment metagenome DNA, contig: S06H3_L04969 (Fragment)	1.0698006433
+UniRef50_X1ML40: Marine sediment metagenome DNA, contig: S06H3_L04969 (Fragment)|unclassified	1.0698006433
+UniRef50_F0F575: Predicted Peptidoglycan domain protein	1.0696039646
+UniRef50_F0F575: Predicted Peptidoglycan domain protein|unclassified	1.0696039646
+UniRef50_A6V1X5	1.0695913934
+UniRef50_A6V1X5|unclassified	1.0695913934
+UniRef50_A9H7F9	1.0695187166
+UniRef50_A9H7F9|unclassified	1.0695187166
+UniRef50_K7RZQ6: Phosphate ABC transporter, permease protein PstC	1.0695187166
+UniRef50_K7RZQ6: Phosphate ABC transporter, permease protein PstC|g__Propionibacterium.s__Propionibacterium_acnes	1.0695187166
+UniRef50_Q9RUF1: Putative gluconeogenesis factor	1.0695187166
+UniRef50_Q9RUF1: Putative gluconeogenesis factor|g__Deinococcus.s__Deinococcus_radiodurans	1.0695187166
+UniRef50_UPI00035CD951: hypothetical protein	1.0695187166
+UniRef50_UPI00035CD951: hypothetical protein|unclassified	1.0695187166
+UniRef50_P13570: Bacterioferritin (Fragment)	1.0695153318
+UniRef50_P13570: Bacterioferritin (Fragment)|unclassified	1.0695153318
+UniRef50_UPI0004431E21	1.0694917359
+UniRef50_UPI0004431E21|unclassified	1.0694917359
+UniRef50_W0YT50: Filamentous hemagglutinin, intein-containing	1.0693808381
+UniRef50_W0YT50: Filamentous hemagglutinin, intein-containing|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0693808381
+UniRef50_UPI0003346733: PREDICTED: collagen alpha-1(III) chain-like	1.0692231883
+UniRef50_UPI0003346733: PREDICTED: collagen alpha-1(III) chain-like|unclassified	1.0692231883
+UniRef50_UPI0002192BD3: hypothetical protein, partial	1.0691635716
+UniRef50_UPI0002192BD3: hypothetical protein, partial|unclassified	1.0691635716
+UniRef50_UPI000288E3B9: DNA polymerase I, partial	1.0691413692
+UniRef50_UPI000288E3B9: DNA polymerase I, partial|unclassified	1.0691413692
+UniRef50_L1Q181: Transcriptional regulator, PadR family	1.0688858803
+UniRef50_L1Q181: Transcriptional regulator, PadR family|unclassified	1.0688858803
+UniRef50_H0CB39	1.0687115940
+UniRef50_H0CB39|unclassified	1.0687115940
+UniRef50_B4SL85: Phosphatidate cytidylyltransferase	1.0683760684
+UniRef50_B4SL85: Phosphatidate cytidylyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0683760684
+UniRef50_K4NDS6	1.0683760684
+UniRef50_K4NDS6|g__Helicobacter.s__Helicobacter_pylori	1.0683760684
+UniRef50_C5KY02	1.0682674909
+UniRef50_C5KY02|unclassified	1.0682674909
+UniRef50_A0A025E7F4	1.0681805020
+UniRef50_A0A025E7F4|unclassified	1.0681805020
+UniRef50_R5EHV3	1.0680836878
+UniRef50_R5EHV3|unclassified	1.0680836878
+UniRef50_UPI00037F0EA9: transcriptional regulator	1.0680593124
+UniRef50_UPI00037F0EA9: transcriptional regulator|unclassified	1.0680593124
+UniRef50_J8UT97	1.0678817750
+UniRef50_J8UT97|unclassified	1.0678817750
+UniRef50_UPI0002002526: VWA containing CoxE family protein, partial	1.0677553189
+UniRef50_UPI0002002526: VWA containing CoxE family protein, partial|unclassified	1.0677553189
+UniRef50_D0D2I8: ArsC family protein	1.0677300696
+UniRef50_D0D2I8: ArsC family protein|unclassified	1.0677300696
+UniRef50_UPI00036B8F43: hypothetical protein	1.0674053974
+UniRef50_UPI00036B8F43: hypothetical protein|unclassified	1.0674053974
+UniRef50_D4HAU1: Protoporphyrinogen oxidase	1.0672358591
+UniRef50_D4HAU1: Protoporphyrinogen oxidase|g__Propionibacterium.s__Propionibacterium_acnes	1.0672358591
+UniRef50_D7CQX7	1.0672358591
+UniRef50_D7CQX7|g__Deinococcus.s__Deinococcus_radiodurans	1.0672358591
+UniRef50_Q1MFZ6: Pseudouridine-5'-phosphate glycosidase 1	1.0672358591
+UniRef50_Q1MFZ6: Pseudouridine-5'-phosphate glycosidase 1|g__Deinococcus.s__Deinococcus_radiodurans	1.0672358591
+UniRef50_R8ZFM2: Two-component sensor	1.0672358591
+UniRef50_R8ZFM2: Two-component sensor|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0672358591
+UniRef50_X2M254: Anhydro-N-acetylmuramic acid kinase	1.0672358591
+UniRef50_X2M254: Anhydro-N-acetylmuramic acid kinase|g__Escherichia.s__Escherichia_coli	1.0672358591
+UniRef50_G5RVH1: Putative transport protein	1.0671231890
+UniRef50_G5RVH1: Putative transport protein|unclassified	1.0671231890
+UniRef50_E4A2Y9	1.0670888783
+UniRef50_E4A2Y9|unclassified	1.0670888783
+UniRef50_L6QN75: Dimethyl sulfoxide reductase subunit	1.0670425355
+UniRef50_L6QN75: Dimethyl sulfoxide reductase subunit|unclassified	1.0670425355
+UniRef50_V6UNB4	1.0669990657
+UniRef50_V6UNB4|unclassified	1.0669990657
+UniRef50_P96718: UDP-glucose 6-dehydrogenase YwqF	1.0669681779
+UniRef50_P96718: UDP-glucose 6-dehydrogenase YwqF|g__Clostridium.s__Clostridium_beijerinckii	1.0266940452
+UniRef50_P96718: UDP-glucose 6-dehydrogenase YwqF|unclassified	0.0402741327
+UniRef50_P62067	1.0668278965
+UniRef50_P62067|unclassified	1.0668278965
+UniRef50_Q1GK66	1.0667595091
+UniRef50_Q1GK66|unclassified	1.0667595091
+UniRef50_I2RKP8	1.0664340756
+UniRef50_I2RKP8|unclassified	1.0664340756
+UniRef50_L1KFY1	1.0664195154
+UniRef50_L1KFY1|unclassified	1.0664195154
+UniRef50_UPI00034B1EA3: hypothetical protein	1.0663151648
+UniRef50_UPI00034B1EA3: hypothetical protein|unclassified	1.0663151648
+UniRef50_T7E892: Fimbrial assembly protein	1.0663146611
+UniRef50_T7E892: Fimbrial assembly protein|unclassified	1.0663146611
+UniRef50_UPI000470356D: glycine cleavage system protein H	1.0662782157
+UniRef50_UPI000470356D: glycine cleavage system protein H|unclassified	1.0662782157
+UniRef50_U7A2S1	1.0661743802
+UniRef50_U7A2S1|unclassified	1.0661743802
+UniRef50_UPI0004748AC6: aldolase	1.0661681829
+UniRef50_UPI0004748AC6: aldolase|unclassified	1.0661681829
+UniRef50_G0DRF3	1.0660980810
+UniRef50_G0DRF3|g__Propionibacterium.s__Propionibacterium_acnes	1.0660980810
+UniRef50_N3DTH0: Alpha-2-macroglobulin family protein	1.0660980810
+UniRef50_N3DTH0: Alpha-2-macroglobulin family protein|g__Escherichia.s__Escherichia_coli	1.0660980810
+UniRef50_Q6FFB1: Alginate biosynthesis protein	1.0660980810
+UniRef50_Q6FFB1: Alginate biosynthesis protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.0660980810
+UniRef50_U3U0I4: PstC protein	1.0660980810
+UniRef50_U3U0I4: PstC protein|g__Escherichia.s__Escherichia_coli	1.0660980810
+UniRef50_Q0K7S4: Undecaprenyl-diphosphatase	1.0660711797
+UniRef50_Q0K7S4: Undecaprenyl-diphosphatase|unclassified	1.0660711797
+UniRef50_F3ZCA1: Putative glutamate binding periplasmic protein	1.0658740309
+UniRef50_F3ZCA1: Putative glutamate binding periplasmic protein|unclassified	1.0658740309
+UniRef50_G6EM30: FtsX	1.0656490987
+UniRef50_G6EM30: FtsX|unclassified	1.0656490987
+UniRef50_UPI00035F71CA: hypothetical protein, partial	1.0656237016
+UniRef50_UPI00035F71CA: hypothetical protein, partial|unclassified	1.0656237016
+UniRef50_B7UY86	1.0653660952
+UniRef50_B7UY86|unclassified	1.0653660952
+UniRef50_S4WAF1: Synthase [glutamine-hydrolyzing]	1.0653559970
+UniRef50_S4WAF1: Synthase [glutamine-hydrolyzing]|unclassified	1.0653559970
+UniRef50_B1ZM85	1.0653480891
+UniRef50_B1ZM85|unclassified	1.0653480891
+UniRef50_UPI0003808977: hypothetical protein, partial	1.0652508308
+UniRef50_UPI0003808977: hypothetical protein, partial|unclassified	1.0652508308
+UniRef50_UPI0003AA219E: hypothetical protein	1.0652223911
+UniRef50_UPI0003AA219E: hypothetical protein|unclassified	1.0652223911
+UniRef50_B2HZJ1: AraC-type DNA-binding domain-containing protein	1.0649627263
+UniRef50_B2HZJ1: AraC-type DNA-binding domain-containing protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.0649627263
+UniRef50_F6CSY8: S-adenosylmethionine-dependent methyltransferase	1.0649627263
+UniRef50_F6CSY8: S-adenosylmethionine-dependent methyltransferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0649627263
+UniRef50_U6JY69	1.0649627263
+UniRef50_U6JY69|unclassified	1.0649627263
+UniRef50_X2MNB6: ATP-dependent RNA helicase DbpA	1.0649627263
+UniRef50_X2MNB6: ATP-dependent RNA helicase DbpA|g__Escherichia.s__Escherichia_coli	1.0649627263
+UniRef50_V1B9Q0	1.0649071857
+UniRef50_V1B9Q0|unclassified	1.0649071857
+UniRef50_X1WZG0	1.0649045286
+UniRef50_X1WZG0|unclassified	1.0649045286
+UniRef50_A7C5X6	1.0647831307
+UniRef50_A7C5X6|unclassified	1.0647831307
+UniRef50_S6SRJ3: Oligopeptidase A (Fragment)	1.0646698404
+UniRef50_S6SRJ3: Oligopeptidase A (Fragment)|unclassified	1.0646698404
+UniRef50_Q98EA0: Mlr4340 protein	1.0645562365
+UniRef50_Q98EA0: Mlr4340 protein|unclassified	1.0645562365
+UniRef50_J3NBY7	1.0643281998
+UniRef50_J3NBY7|unclassified	1.0643281998
+UniRef50_R5ZE53: PTS system glucose-specific IIABC component	1.0641136198
+UniRef50_R5ZE53: PTS system glucose-specific IIABC component|unclassified	1.0641136198
+UniRef50_UPI00037DC85C: hypothetical protein	1.0640888551
+UniRef50_UPI00037DC85C: hypothetical protein|unclassified	1.0640888551
+UniRef50_Q925Z1: Lin1243 protein	1.0640487647
+UniRef50_Q925Z1: Lin1243 protein|unclassified	1.0640487647
+UniRef50_L9NDB6: Nonribosomal peptide synthase	1.0639247423
+UniRef50_L9NDB6: Nonribosomal peptide synthase|g__Acinetobacter.s__Acinetobacter_baumannii	1.0639247423
+UniRef50_UPI00047171F6: molybdopterin biosynthesis protein B	1.0639211655
+UniRef50_UPI00047171F6: molybdopterin biosynthesis protein B|unclassified	1.0639211655
+UniRef50_I1IZ70	1.0638297872
+UniRef50_I1IZ70|unclassified	1.0638297872
+UniRef50_M1MHF7	1.0638297872
+UniRef50_M1MHF7|g__Clostridium.s__Clostridium_beijerinckii	1.0638297872
+UniRef50_P39762: Aminopeptidase AmpS	1.0638297872
+UniRef50_P39762: Aminopeptidase AmpS|g__Clostridium.s__Clostridium_beijerinckii	1.0638297872
+UniRef50_Q6FEZ0	1.0638297872
+UniRef50_Q6FEZ0|g__Acinetobacter.s__Acinetobacter_baumannii	1.0638297872
+UniRef50_Q9F5Q0	1.0638297872
+UniRef50_Q9F5Q0|unclassified	1.0638297872
+UniRef50_T1D8G7: Transposase (Fragment)	1.0638266019
+UniRef50_T1D8G7: Transposase (Fragment)|unclassified	1.0638266019
+UniRef50_G5S031: Exodeoxyribonuclease V gamma chain RecC	1.0637842171
+UniRef50_G5S031: Exodeoxyribonuclease V gamma chain RecC|unclassified	1.0637842171
+UniRef50_UPI00016A522C: branched-chain amino acid ABC transporter, ATP-binding protein, putative, partial	1.0637399197
+UniRef50_UPI00016A522C: branched-chain amino acid ABC transporter, ATP-binding protein, putative, partial|unclassified	1.0637399197
+UniRef50_UPI00037CB356: hypothetical protein, partial	1.0635036296
+UniRef50_UPI00037CB356: hypothetical protein, partial|unclassified	1.0635036296
+UniRef50_UPI000361B9B7: hypothetical protein	1.0634678030
+UniRef50_UPI000361B9B7: hypothetical protein|unclassified	1.0634678030
+UniRef50_C9WLW4: Soluble diheme cytochrome c (Fragment)	1.0634216478
+UniRef50_C9WLW4: Soluble diheme cytochrome c (Fragment)|unclassified	1.0634216478
+UniRef50_B7V5T6: Cardiolipin synthase A	1.0634193287
+UniRef50_B7V5T6: Cardiolipin synthase A|unclassified	1.0634193287
+UniRef50_B7H2F2: TonB-dependent siderophore receptor family protein	1.0633993097
+UniRef50_B7H2F2: TonB-dependent siderophore receptor family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.0633993097
+UniRef50_UPI00036338BE: hypothetical protein, partial	1.0631868472
+UniRef50_UPI00036338BE: hypothetical protein, partial|unclassified	1.0631868472
+UniRef50_V0Z9Y6	1.0630880845
+UniRef50_V0Z9Y6|unclassified	1.0630880845
+UniRef50_Q092X0	1.0628860043
+UniRef50_Q092X0|unclassified	1.0628860043
+UniRef50_D2NT74: Dehydrogenase	1.0628606282
+UniRef50_D2NT74: Dehydrogenase|unclassified	1.0628606282
+UniRef50_B1ERT8	1.0626993910
+UniRef50_B1ERT8|unclassified	1.0626993910
+UniRef50_Q9RR99: Oxidoreductase, short-chain dehydrogenase/reductase family	1.0626992561
+UniRef50_Q9RR99: Oxidoreductase, short-chain dehydrogenase/reductase family|g__Deinococcus.s__Deinococcus_radiodurans	1.0626992561
+UniRef50_X5EHQ7	1.0626992561
+UniRef50_X5EHQ7|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0626992561
+UniRef50_Q08194: Cysteine-rich extensin-like protein-1	1.0625405561
+UniRef50_Q08194: Cysteine-rich extensin-like protein-1|unclassified	1.0625405561
+UniRef50_K0TM89	1.0624595079
+UniRef50_K0TM89|unclassified	1.0624595079
+UniRef50_D6ENY0: AMP-binding domain-containing protein	1.0622040586
+UniRef50_D6ENY0: AMP-binding domain-containing protein|unclassified	1.0622040586
+UniRef50_UPI000382E44E: hypothetical protein	1.0619936712
+UniRef50_UPI000382E44E: hypothetical protein|unclassified	1.0619936712
+UniRef50_A6LRN8: Ribosomal protein L11 methyltransferase	1.0615711253
+UniRef50_A6LRN8: Ribosomal protein L11 methyltransferase|g__Clostridium.s__Clostridium_beijerinckii	1.0615711253
+UniRef50_D0J2L9: Transcriptional regulator, LysR family	1.0615711253
+UniRef50_D0J2L9: Transcriptional regulator, LysR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0615711253
+UniRef50_D8JDE9: Major Facilitator Superfamily protein	1.0615711253
+UniRef50_D8JDE9: Major Facilitator Superfamily protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.0615711253
+UniRef50_N6U5N1	1.0615711253
+UniRef50_N6U5N1|unclassified	1.0615711253
+UniRef50_R9ZGB3: AraC family transcriptional regulator	1.0615711253
+UniRef50_R9ZGB3: AraC family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0615711253
+UniRef50_A0A017XHK3	1.0613638058
+UniRef50_A0A017XHK3|unclassified	1.0613638058
+UniRef50_H7INS2: Heparinase II/III-like family protein	1.0612620387
+UniRef50_H7INS2: Heparinase II/III-like family protein|unclassified	1.0612620387
+UniRef50_B4TFG6	1.0611471222
+UniRef50_B4TFG6|unclassified	1.0611471222
+UniRef50_A0A008H6H8	1.0610790160
+UniRef50_A0A008H6H8|unclassified	1.0610790160
+UniRef50_A0A031J6B4	1.0610507033
+UniRef50_A0A031J6B4|unclassified	1.0610507033
+UniRef50_UPI0003754233: hypothetical protein	1.0608843790
+UniRef50_UPI0003754233: hypothetical protein|unclassified	1.0608843790
+UniRef50_Q3SWF2: Phosphoribosyl-ATP pyrophosphatase	1.0607764233
+UniRef50_Q3SWF2: Phosphoribosyl-ATP pyrophosphatase|unclassified	1.0607764233
+UniRef50_UPI0002896123: flagellar motor switch protein FliN	1.0607050080
+UniRef50_UPI0002896123: flagellar motor switch protein FliN|unclassified	1.0607050080
+UniRef50_UPI0003EF3860: hypothetical protein	1.0605929267
+UniRef50_UPI0003EF3860: hypothetical protein|unclassified	1.0605929267
+UniRef50_Q0SAE7	1.0605889326
+UniRef50_Q0SAE7|unclassified	1.0605889326
+UniRef50_A0A059IKL5	1.0605282004
+UniRef50_A0A059IKL5|unclassified	1.0605282004
+UniRef50_A3BQ34	1.0604453871
+UniRef50_A3BQ34|unclassified	1.0604453871
+UniRef50_G7M8E0: Cell wall binding repeat-containing protein	1.0604453871
+UniRef50_G7M8E0: Cell wall binding repeat-containing protein|g__Clostridium.s__Clostridium_beijerinckii	1.0604453871
+UniRef50_M4R6E9	1.0604453871
+UniRef50_M4R6E9|g__Acinetobacter.s__Acinetobacter_baumannii	1.0604453871
+UniRef50_J0Q686: TatA/E family twin arginine-targeting protein translocase	1.0603821836
+UniRef50_J0Q686: TatA/E family twin arginine-targeting protein translocase|unclassified	1.0603821836
+UniRef50_G2FJU8: CRISPR-associated helicase Cas3	1.0603725446
+UniRef50_G2FJU8: CRISPR-associated helicase Cas3|unclassified	1.0603725446
+UniRef50_UPI00047663D0: hypothetical protein	1.0601990817
+UniRef50_UPI00047663D0: hypothetical protein|unclassified	1.0601990817
+UniRef50_D0J380	1.0601727905
+UniRef50_D0J380|unclassified	1.0601727905
+UniRef50_UPI0003B6DBA8: blue-light sensor BLUF	1.0601423292
+UniRef50_UPI0003B6DBA8: blue-light sensor BLUF|unclassified	1.0601423292
+UniRef50_UPI000417E643: hypothetical protein	1.0600467019
+UniRef50_UPI000417E643: hypothetical protein|unclassified	1.0600467019
+UniRef50_UPI0003D2B83C: catalase	1.0599068619
+UniRef50_UPI0003D2B83C: catalase|unclassified	1.0599068619
+UniRef50_Q2II05: LigA	1.0598565045
+UniRef50_Q2II05: LigA|unclassified	1.0598565045
+UniRef50_M9REL9	1.0596871368
+UniRef50_M9REL9|unclassified	1.0596871368
+UniRef50_F0L835	1.0595594214
+UniRef50_F0L835|unclassified	1.0595594214
+UniRef50_UPI00047DBD54: RNA polymerase sigma factor RpoE	1.0595475656
+UniRef50_UPI00047DBD54: RNA polymerase sigma factor RpoE|unclassified	1.0595475656
+UniRef50_Q9CJR2	1.0595287395
+UniRef50_Q9CJR2|unclassified	1.0595287395
+UniRef50_D2NU75: 3-deoxy-D-arabino-heptulosonate 7-phosphate (DAHP) synthase	1.0593220339
+UniRef50_D2NU75: 3-deoxy-D-arabino-heptulosonate 7-phosphate (DAHP) synthase|g__Propionibacterium.s__Propionibacterium_acnes	1.0593220339
+UniRef50_G1Q2Q3	1.0593220339
+UniRef50_G1Q2Q3|unclassified	1.0593220339
+UniRef50_P30690: Major outer membrane protein P.IB	1.0593220339
+UniRef50_P30690: Major outer membrane protein P.IB|g__Neisseria.s__Neisseria_meningitidis	1.0593220339
+UniRef50_Q8XMG8: Zinc transporter ZupT	1.0593220339
+UniRef50_Q8XMG8: Zinc transporter ZupT|g__Streptococcus.s__Streptococcus_mutans	1.0593220339
+UniRef50_M4XT01: Transketolase	1.0593054359
+UniRef50_M4XT01: Transketolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0593054359
+UniRef50_L7HA68	1.0592445410
+UniRef50_L7HA68|unclassified	1.0592445410
+UniRef50_S5XU55: Arsenate reductase	1.0588908846
+UniRef50_S5XU55: Arsenate reductase|unclassified	1.0588908846
+UniRef50_UPI0003814C5C: hypothetical protein	1.0586833133
+UniRef50_UPI0003814C5C: hypothetical protein|unclassified	1.0586833133
+UniRef50_S2UWF3: Transposase-like protein, ISSpn1 ISSpn3	1.0585776235
+UniRef50_S2UWF3: Transposase-like protein, ISSpn1 ISSpn3|unclassified	1.0585776235
+UniRef50_Q2NW12	1.0585745675
+UniRef50_Q2NW12|unclassified	1.0585745675
+UniRef50_UPI000191129D: branched-chain amino acid aminotransferase	1.0584653252
+UniRef50_UPI000191129D: branched-chain amino acid aminotransferase|unclassified	1.0584653252
+UniRef50_UPI0003B59246: hypothetical protein	1.0584632906
+UniRef50_UPI0003B59246: hypothetical protein|unclassified	1.0584632906
+UniRef50_UPI000361F619: hypothetical protein	1.0582586572
+UniRef50_UPI000361F619: hypothetical protein|unclassified	1.0582586572
+UniRef50_K2EGY5	1.0582058526
+UniRef50_K2EGY5|unclassified	1.0582058526
+UniRef50_A0A011PR45	1.0582010582
+UniRef50_A0A011PR45|unclassified	1.0582010582
+UniRef50_A6LS38: Tetratricopeptide TPR_2 repeat protein	1.0582010582
+UniRef50_A6LS38: Tetratricopeptide TPR_2 repeat protein|g__Clostridium.s__Clostridium_beijerinckii	1.0582010582
+UniRef50_A6TLP6: PfkB domain protein	1.0582010582
+UniRef50_A6TLP6: PfkB domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.0582010582
+UniRef50_J9P557	1.0582010582
+UniRef50_J9P557|unclassified	1.0582010582
+UniRef50_UPI00037C0A58: hypothetical protein	1.0582010582
+UniRef50_UPI00037C0A58: hypothetical protein|unclassified	1.0582010582
+UniRef50_UPI00047A7EE6: 1,4-dihydroxy-2-naphthoate prenyltransferase	1.0582010582
+UniRef50_UPI00047A7EE6: 1,4-dihydroxy-2-naphthoate prenyltransferase|unclassified	1.0582010582
+UniRef50_W5IC94	1.0582010582
+UniRef50_W5IC94|unclassified	1.0582010582
+UniRef50_UPI00047B3063: ABC transporter ATP-binding protein	1.0580925708
+UniRef50_UPI00047B3063: ABC transporter ATP-binding protein|unclassified	1.0580925708
+UniRef50_UPI0003790AF2: hypothetical protein	1.0580317367
+UniRef50_UPI0003790AF2: hypothetical protein|unclassified	1.0580317367
+UniRef50_UPI0003C11E65: PREDICTED: citrate lyase subunit beta-like protein, mitochondrial-like	1.0578774217
+UniRef50_UPI0003C11E65: PREDICTED: citrate lyase subunit beta-like protein, mitochondrial-like|unclassified	1.0578774217
+UniRef50_Q4FNS0: Possible cytochrome functioning/assembly related protein	1.0575753272
+UniRef50_Q4FNS0: Possible cytochrome functioning/assembly related protein|unclassified	1.0575753272
+UniRef50_UPI0003FADBB4: hypothetical protein	1.0573002051
+UniRef50_UPI0003FADBB4: hypothetical protein|unclassified	1.0573002051
+UniRef50_UPI00026286DA: sugar ABC transporter ATP-binding protein	1.0572560185
+UniRef50_UPI00026286DA: sugar ABC transporter ATP-binding protein|unclassified	1.0572560185
+UniRef50_UPI0003EB2E1B: hypothetical protein, partial	1.0572338321
+UniRef50_UPI0003EB2E1B: hypothetical protein, partial|unclassified	1.0572338321
+UniRef50_D6XXU3	1.0571393177
+UniRef50_D6XXU3|unclassified	1.0571393177
+UniRef50_R5J671: Arabitol-phosphate dehydrogenase	1.0570824524
+UniRef50_R5J671: Arabitol-phosphate dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	1.0570824524
+UniRef50_U5MV68: SCP-like extracellular	1.0570824524
+UniRef50_U5MV68: SCP-like extracellular|g__Clostridium.s__Clostridium_beijerinckii	1.0570824524
+UniRef50_X2HH54: A/G-specific adenine glycosylase	1.0570824524
+UniRef50_X2HH54: A/G-specific adenine glycosylase|g__Neisseria.s__Neisseria_meningitidis	1.0570824524
+UniRef50_Q60DH5	1.0567711010
+UniRef50_Q60DH5|unclassified	1.0567711010
+UniRef50_Q7NGC6: Gsr3245 protein	1.0567297796
+UniRef50_Q7NGC6: Gsr3245 protein|unclassified	1.0567297796
+UniRef50_J6J4P6	1.0567017983
+UniRef50_J6J4P6|unclassified	1.0567017983
+UniRef50_UPI00046FF79E: ArsR family transcriptional regulator	1.0566556969
+UniRef50_UPI00046FF79E: ArsR family transcriptional regulator|unclassified	1.0566556969
+UniRef50_Q2SJS5: Cytochrome c oxidase, cbb3-type, subunit CcoQ	1.0565848331
+UniRef50_Q2SJS5: Cytochrome c oxidase, cbb3-type, subunit CcoQ|unclassified	1.0565848331
+UniRef50_S9TI17: Proteophosphoglycan ppg4	1.0563826314
+UniRef50_S9TI17: Proteophosphoglycan ppg4|unclassified	1.0563826314
+UniRef50_S5CXQ6	1.0562311606
+UniRef50_S5CXQ6|g__Acinetobacter.s__Acinetobacter_baumannii	1.0562311606
+UniRef50_UPI0002ADB2FF	1.0561698429
+UniRef50_UPI0002ADB2FF|unclassified	1.0561698429
+UniRef50_D2FKD3	1.0561672862
+UniRef50_D2FKD3|unclassified	1.0561672862
+UniRef50_R6M7U0: Transporter major facilitator family protein	1.0559662091
+UniRef50_R6M7U0: Transporter major facilitator family protein|g__Neisseria.s__Neisseria_meningitidis	1.0559662091
+UniRef50_G4LQF1	1.0559538790
+UniRef50_G4LQF1|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8488964346
+UniRef50_G4LQF1|unclassified	0.2070574443
+UniRef50_A0A031J5S4	1.0558923105
+UniRef50_A0A031J5S4|unclassified	1.0558923105
+UniRef50_V1DP08: Bacteriophage replication protein	1.0557133557
+UniRef50_V1DP08: Bacteriophage replication protein|unclassified	1.0557133557
+UniRef50_K8BHL7	1.0552503797
+UniRef50_K8BHL7|unclassified	1.0552503797
+UniRef50_UPI000263106B: flagellar biosynthesis protein FliQ	1.0552324488
+UniRef50_UPI000263106B: flagellar biosynthesis protein FliQ|unclassified	1.0552324488
+UniRef50_A0A024HXK5	1.0551117141
+UniRef50_A0A024HXK5|unclassified	1.0551117141
+UniRef50_UPI000368910A: hypothetical protein	1.0549867460
+UniRef50_UPI000368910A: hypothetical protein|unclassified	1.0549867460
+UniRef50_A6LWY2: Peptidase M42 family protein	1.0548523207
+UniRef50_A6LWY2: Peptidase M42 family protein|g__Clostridium.s__Clostridium_beijerinckii	1.0548523207
+UniRef50_C3K0D7: Probable M18 family aminopeptidase 2	1.0548523207
+UniRef50_C3K0D7: Probable M18 family aminopeptidase 2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0548523207
+UniRef50_E2PX18: Sugar kinase	1.0548523207
+UniRef50_E2PX18: Sugar kinase|g__Propionibacterium.s__Propionibacterium_acnes	1.0548523207
+UniRef50_F0RLT4: Homoserine dehydrogenase	1.0548523207
+UniRef50_F0RLT4: Homoserine dehydrogenase|g__Deinococcus.s__Deinococcus_radiodurans	1.0548523207
+UniRef50_F9YZY2	1.0548523207
+UniRef50_F9YZY2|g__Propionibacterium.s__Propionibacterium_acnes	1.0548523207
+UniRef50_G0DWP5: Dihydrodipicolinate reductase	1.0548523207
+UniRef50_G0DWP5: Dihydrodipicolinate reductase|g__Propionibacterium.s__Propionibacterium_acnes	1.0548523207
+UniRef50_Q31DZ2: Hydrogenase expression/formation protein hypD	1.0548523207
+UniRef50_Q31DZ2: Hydrogenase expression/formation protein hypD|g__Helicobacter.s__Helicobacter_pylori	1.0548523207
+UniRef50_Q6A6W0	1.0548523207
+UniRef50_Q6A6W0|g__Propionibacterium.s__Propionibacterium_acnes	1.0548523207
+UniRef50_U5MZA5: Double-stranded RNA/RNA-DNA hybrid binding protein	1.0548523207
+UniRef50_U5MZA5: Double-stranded RNA/RNA-DNA hybrid binding protein|g__Clostridium.s__Clostridium_beijerinckii	1.0548523207
+UniRef50_W1W6V9	1.0548523207
+UniRef50_W1W6V9|g__Staphylococcus.s__Staphylococcus_epidermidis	1.0548523207
+UniRef50_C2VUQ7	1.0548159697
+UniRef50_C2VUQ7|unclassified	1.0548159697
+UniRef50_W1AY70	1.0548095062
+UniRef50_W1AY70|unclassified	1.0548095062
+UniRef50_U4JC67	1.0545498068
+UniRef50_U4JC67|unclassified	1.0545498068
+UniRef50_A7MNT1	1.0544528254
+UniRef50_A7MNT1|unclassified	1.0544528254
+UniRef50_A5V2F8: Phosphoribosylaminoimidazole-succinocarboxamide synthase	1.0543405002
+UniRef50_A5V2F8: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	1.0543405002
+UniRef50_UPI0001D30E15: integral membrane protein	1.0541548699
+UniRef50_UPI0001D30E15: integral membrane protein|unclassified	1.0541548699
+UniRef50_X7LA43: Porin	1.0540663836
+UniRef50_X7LA43: Porin|g__Escherichia.s__Escherichia_coli	1.0540663836
+UniRef50_UPI0003612FBF: ABC transporter permease	1.0538768666
+UniRef50_UPI0003612FBF: ABC transporter permease|unclassified	1.0538768666
+UniRef50_UPI0001912298: heme lyase subunit NrfE	1.0538132205
+UniRef50_UPI0001912298: heme lyase subunit NrfE|unclassified	1.0538132205
+UniRef50_G2JEX5	1.0537407798
+UniRef50_G2JEX5|g__Acinetobacter.s__Acinetobacter_baumannii	1.0537407798
+UniRef50_I4ES52	1.0537407798
+UniRef50_I4ES52|g__Propionibacterium.s__Propionibacterium_acnes	1.0537407798
+UniRef50_P56148: DNA repair protein RadA homolog	1.0537407798
+UniRef50_P56148: DNA repair protein RadA homolog|g__Helicobacter.s__Helicobacter_pylori	1.0537407798
+UniRef50_UPI0003B74A4B: RNA polymerase subunit sigma-24	1.0536867572
+UniRef50_UPI0003B74A4B: RNA polymerase subunit sigma-24|unclassified	1.0536867572
+UniRef50_A3JRD5	1.0536314325
+UniRef50_A3JRD5|unclassified	1.0536314325
+UniRef50_W1MJT1	1.0534850300
+UniRef50_W1MJT1|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0534850300
+UniRef50_A3WXH5: Putative transposase	1.0533822941
+UniRef50_A3WXH5: Putative transposase|unclassified	1.0533822941
+UniRef50_S9S8C9	1.0533474795
+UniRef50_S9S8C9|unclassified	1.0533474795
+UniRef50_Q6NDQ0: sn-glycerol-3-phosphate import ATP-binding protein UgpC	1.0530176321
+UniRef50_Q6NDQ0: sn-glycerol-3-phosphate import ATP-binding protein UgpC|unclassified	1.0530176321
+UniRef50_Z2DR98: Acyl-CoA synthetase	1.0528670486
+UniRef50_Z2DR98: Acyl-CoA synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0528670486
+UniRef50_A6LWC7: Glycerol-1-phosphate dehydrogenase (NAD(P)(+))	1.0526315789
+UniRef50_A6LWC7: Glycerol-1-phosphate dehydrogenase (NAD(P)(+))|g__Clostridium.s__Clostridium_beijerinckii	1.0526315789
+UniRef50_B2I3G0: Molybdopterin biosynthesis protein	1.0526315789
+UniRef50_B2I3G0: Molybdopterin biosynthesis protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.0526315789
+UniRef50_F8JV04: Major facilitator superfamily sugar transporter	1.0526315789
+UniRef50_F8JV04: Major facilitator superfamily sugar transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0526315789
+UniRef50_K9ZYZ2: Arabinose efflux permease family protein	1.0526315789
+UniRef50_K9ZYZ2: Arabinose efflux permease family protein|g__Deinococcus.s__Deinococcus_radiodurans	1.0526315789
+UniRef50_UPI00047C8292: hypothetical protein	1.0523697059
+UniRef50_UPI00047C8292: hypothetical protein|unclassified	1.0523697059
+UniRef50_W7WU52	1.0516472189
+UniRef50_W7WU52|unclassified	1.0516472189
+UniRef50_Q6A853	1.0515247108
+UniRef50_Q6A853|g__Propionibacterium.s__Propionibacterium_acnes	1.0515247108
+UniRef50_UPI00034F81F7	1.0515247108
+UniRef50_UPI00034F81F7|unclassified	1.0515247108
+UniRef50_UPI000418CD46: hypothetical protein	1.0515212724
+UniRef50_UPI000418CD46: hypothetical protein|unclassified	1.0515212724
+UniRef50_R7Z9J7: Transcriptional regulator	1.0514157784
+UniRef50_R7Z9J7: Transcriptional regulator|unclassified	1.0514157784
+UniRef50_C0XMT9: Bacterial mobilization protein MobC	1.0513744587
+UniRef50_C0XMT9: Bacterial mobilization protein MobC|unclassified	1.0513744587
+UniRef50_UPI000361D5A1: hypothetical protein	1.0513448018
+UniRef50_UPI000361D5A1: hypothetical protein|unclassified	1.0513448018
+UniRef50_UPI0004785AE3: allophanate hydrolase	1.0513442545
+UniRef50_UPI0004785AE3: allophanate hydrolase|unclassified	1.0513442545
+UniRef50_B5HR13: Alanine-rich protein	1.0511804930
+UniRef50_B5HR13: Alanine-rich protein|unclassified	1.0511804930
+UniRef50_K1CDT1	1.0509286282
+UniRef50_K1CDT1|unclassified	1.0509286282
+UniRef50_UPI00042C7986: PREDICTED: mitochondrial peptide methionine sulfoxide reductase-like, partial	1.0508600022
+UniRef50_UPI00042C7986: PREDICTED: mitochondrial peptide methionine sulfoxide reductase-like, partial|unclassified	1.0508600022
+UniRef50_E1JLJ0	1.0507851259
+UniRef50_E1JLJ0|unclassified	1.0507851259
+UniRef50_A0A011PY29	1.0507832927
+UniRef50_A0A011PY29|unclassified	1.0507832927
+UniRef50_V4SQT0	1.0507560084
+UniRef50_V4SQT0|unclassified	1.0507560084
+UniRef50_F5M2N9	1.0506958545
+UniRef50_F5M2N9|unclassified	1.0506958545
+UniRef50_F0YCK9	1.0506244545
+UniRef50_F0YCK9|unclassified	1.0506244545
+UniRef50_Q487D7: Na(+)-translocating NADH-quinone reductase subunit E	1.0504224150
+UniRef50_Q487D7: Na(+)-translocating NADH-quinone reductase subunit E|unclassified	1.0504224150
+UniRef50_E6S7U2: Molybdopterin dehydrogenase FAD-binding protein	1.0504201681
+UniRef50_E6S7U2: Molybdopterin dehydrogenase FAD-binding protein|g__Deinococcus.s__Deinococcus_radiodurans	1.0504201681
+UniRef50_Q1LLQ3: Cbb3-type cytochrome oxidase, subunit I	1.0504201681
+UniRef50_Q1LLQ3: Cbb3-type cytochrome oxidase, subunit I|g__Neisseria.s__Neisseria_meningitidis	1.0504201681
+UniRef50_V8GY06	1.0504201681
+UniRef50_V8GY06|unclassified	1.0504201681
+UniRef50_UPI000262E88D: reductase	1.0503832197
+UniRef50_UPI000262E88D: reductase|unclassified	1.0503832197
+UniRef50_UPI000255A3BD: acetyl-CoA acetyltransferase, partial	1.0503610944
+UniRef50_UPI000255A3BD: acetyl-CoA acetyltransferase, partial|unclassified	1.0503610944
+UniRef50_M4K8C6: Phage tail protein E	1.0502741001
+UniRef50_M4K8C6: Phage tail protein E|unclassified	1.0502741001
+UniRef50_F3WD80: DNA replication and repair recF domain protein	1.0499175078
+UniRef50_F3WD80: DNA replication and repair recF domain protein|unclassified	1.0499175078
+UniRef50_A0A023RW25: Membrane protein	1.0498649165
+UniRef50_A0A023RW25: Membrane protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.0498649165
+UniRef50_A0A011RXV5: Type IV secretion system ATPase VirB11	1.0494750449
+UniRef50_A0A011RXV5: Type IV secretion system ATPase VirB11|unclassified	1.0494750449
+UniRef50_A6U9L1	1.0494125518
+UniRef50_A6U9L1|unclassified	1.0494125518
+UniRef50_Q9RY38: Oxidoreductase, short-chain dehydrogenase/reductase family	1.0493179433
+UniRef50_Q9RY38: Oxidoreductase, short-chain dehydrogenase/reductase family|g__Deinococcus.s__Deinococcus_radiodurans	1.0493179433
+UniRef50_Q8PM67	1.0491500573
+UniRef50_Q8PM67|unclassified	1.0491500573
+UniRef50_UPI0003ABAD8C: PREDICTED: basic proline-rich protein-like, partial	1.0490763441
+UniRef50_UPI0003ABAD8C: PREDICTED: basic proline-rich protein-like, partial|unclassified	1.0490763441
+UniRef50_R9GEA9	1.0490236049
+UniRef50_R9GEA9|unclassified	1.0490236049
+UniRef50_A3BGT4	1.0489202104
+UniRef50_A3BGT4|unclassified	1.0489202104
+UniRef50_UPI00030D26AD: restriction endonuclease subunit M	1.0489012963
+UniRef50_UPI00030D26AD: restriction endonuclease subunit M|unclassified	1.0489012963
+UniRef50_Q9RW95: General secretion pathway protein D, putative	1.0487682705
+UniRef50_Q9RW95: General secretion pathway protein D, putative|g__Deinococcus.s__Deinococcus_radiodurans	1.0487682705
+UniRef50_UPI000223620B: PREDICTED: zinc finger protein 449-like	1.0487676980
+UniRef50_UPI000223620B: PREDICTED: zinc finger protein 449-like|unclassified	1.0487676980
+UniRef50_UPI000413BA09: sugar kinase	1.0486113392
+UniRef50_UPI000413BA09: sugar kinase|unclassified	1.0486113392
+UniRef50_B0VDR8	1.0482180294
+UniRef50_B0VDR8|g__Acinetobacter.s__Acinetobacter_baumannii	1.0482180294
+UniRef50_F0N593: Transcriptional regulator, AraC family	1.0482180294
+UniRef50_F0N593: Transcriptional regulator, AraC family|g__Neisseria.s__Neisseria_meningitidis	1.0482180294
+UniRef50_G4LIM7: 3-hydroxyacyl-CoA dehydrogenase NAD binding subunit	1.0482180294
+UniRef50_G4LIM7: 3-hydroxyacyl-CoA dehydrogenase NAD binding subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0482180294
+UniRef50_K7U323	1.0482180294
+UniRef50_K7U323|unclassified	1.0482180294
+UniRef50_S1T9V9: Thiamine-monophosphate kinase	1.0482180294
+UniRef50_S1T9V9: Thiamine-monophosphate kinase|g__Propionibacterium.s__Propionibacterium_acnes	1.0482180294
+UniRef50_UPI0002556399: urea ABC transporter ATP-binding protein UrtE, partial	1.0480452281
+UniRef50_UPI0002556399: urea ABC transporter ATP-binding protein UrtE, partial|unclassified	1.0480452281
+UniRef50_UPI00004C2754: COG1063: Threonine dehydrogenase and related Zn-dependent dehydrogenases, partial	1.0480075872
+UniRef50_UPI00004C2754: COG1063: Threonine dehydrogenase and related Zn-dependent dehydrogenases, partial|unclassified	1.0480075872
+UniRef50_W8HDH0	1.0474628884
+UniRef50_W8HDH0|unclassified	1.0474628884
+UniRef50_D7JTM0: Predicted protein	1.0474052445
+UniRef50_D7JTM0: Predicted protein|unclassified	1.0474052445
+UniRef50_H2I4X5	1.0471204188
+UniRef50_H2I4X5|g__Propionibacterium.s__Propionibacterium_acnes	1.0471204188
+UniRef50_H6RRF0: Peptidase M23	1.0471204188
+UniRef50_H6RRF0: Peptidase M23|unclassified	1.0471204188
+UniRef50_N0B753: Group 1 glycosyl transferase	1.0471204188
+UniRef50_N0B753: Group 1 glycosyl transferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.0471204188
+UniRef50_Q9RSL6: Molybdate metabolism regulator-related protein	1.0471204188
+UniRef50_Q9RSL6: Molybdate metabolism regulator-related protein|g__Deinococcus.s__Deinococcus_radiodurans	1.0471204188
+UniRef50_T1UAW5: CobW/HypB/UreG, nucleotide-binding domain protein	1.0471204188
+UniRef50_T1UAW5: CobW/HypB/UreG, nucleotide-binding domain protein|g__Helicobacter.s__Helicobacter_pylori	1.0471204188
+UniRef50_R5H2U1	1.0470900957
+UniRef50_R5H2U1|unclassified	1.0470900957
+UniRef50_I4BZ09: Purine-cytosine permease-like transporter	1.0470174116
+UniRef50_I4BZ09: Purine-cytosine permease-like transporter|unclassified	1.0470174116
+UniRef50_Q5FTN2: Phosphoribosyl-ATP pyrophosphatase	1.0468156570
+UniRef50_Q5FTN2: Phosphoribosyl-ATP pyrophosphatase|unclassified	1.0468156570
+UniRef50_W7D397: PadR family transcriptional regulator	1.0467528940
+UniRef50_W7D397: PadR family transcriptional regulator|unclassified	1.0467528940
+UniRef50_Q47CM9: Phenylalanine--tRNA ligase beta subunit	1.0466503498
+UniRef50_Q47CM9: Phenylalanine--tRNA ligase beta subunit|g__Neisseria.s__Neisseria_meningitidis	1.0185909052
+UniRef50_Q47CM9: Phenylalanine--tRNA ligase beta subunit|unclassified	0.0280594446
+UniRef50_A4XVJ6: Cbb3-type cytochrome oxidase component	1.0465943142
+UniRef50_A4XVJ6: Cbb3-type cytochrome oxidase component|unclassified	1.0465943142
+UniRef50_F5S2Z6	1.0463185907
+UniRef50_F5S2Z6|unclassified	1.0463185907
+UniRef50_W0R6T6: Glutamine--tRNA ligase	1.0462987899
+UniRef50_W0R6T6: Glutamine--tRNA ligase|g__Escherichia.s__Escherichia_coli	1.0462987899
+UniRef50_I0YZ67	1.0462398520
+UniRef50_I0YZ67|unclassified	1.0462398520
+UniRef50_E3Z3H5: Diarrheal toxin/ftsk/spoiiie family protein (Fragment)	1.0462391071
+UniRef50_E3Z3H5: Diarrheal toxin/ftsk/spoiiie family protein (Fragment)|unclassified	1.0462391071
+UniRef50_F3KR88	1.0462365099
+UniRef50_F3KR88|unclassified	1.0462365099
+UniRef50_P40320-2: Isoform 1 of S-adenosylmethionine synthase	1.0461072963
+UniRef50_P40320-2: Isoform 1 of S-adenosylmethionine synthase|unclassified	1.0461072963
+UniRef50_UPI00047AAFA9: hypothetical protein	1.0460540137
+UniRef50_UPI00047AAFA9: hypothetical protein|unclassified	1.0460540137
+UniRef50_A0A011P9Y1	1.0460251046
+UniRef50_A0A011P9Y1|unclassified	1.0460251046
+UniRef50_D5ZU02: Modular polyketide synthase	1.0459596664
+UniRef50_D5ZU02: Modular polyketide synthase|unclassified	1.0459596664
+UniRef50_S5STQ7: Fasciclin domain-containing protein	1.0459092810
+UniRef50_S5STQ7: Fasciclin domain-containing protein|unclassified	1.0459092810
+UniRef50_Q9RU93: NADH dehydrogenase I, G subunit	1.0457577533
+UniRef50_Q9RU93: NADH dehydrogenase I, G subunit|g__Deinococcus.s__Deinococcus_radiodurans	1.0457577533
+UniRef50_UPI000477B448: hypothetical protein	1.0456925530
+UniRef50_UPI000477B448: hypothetical protein|unclassified	1.0456925530
+UniRef50_UPI0003B608BA: membrane protein	1.0454424437
+UniRef50_UPI0003B608BA: membrane protein|unclassified	1.0454424437
+UniRef50_J1SKD3	1.0451020601
+UniRef50_J1SKD3|unclassified	1.0451020601
+UniRef50_R9CT77	1.0449784865
+UniRef50_R9CT77|unclassified	1.0449784865
+UniRef50_A6LWR5: Phage integrase family protein	1.0449320794
+UniRef50_A6LWR5: Phage integrase family protein|g__Clostridium.s__Clostridium_beijerinckii	1.0449320794
+UniRef50_G4LP82	1.0449320794
+UniRef50_G4LP82|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0449320794
+UniRef50_Q6F9Y0: Type II secretion system protein K	1.0449320794
+UniRef50_Q6F9Y0: Type II secretion system protein K|g__Acinetobacter.s__Acinetobacter_baumannii	1.0449320794
+UniRef50_U3T6X0	1.0449320794
+UniRef50_U3T6X0|g__Acinetobacter.s__Acinetobacter_baumannii	1.0449320794
+UniRef50_A1B633	1.0446842923
+UniRef50_A1B633|unclassified	1.0446842923
+UniRef50_K7SNW6: Glycosyl hydrolase family 38 N-terminal domain-containing protein	1.0445871546
+UniRef50_K7SNW6: Glycosyl hydrolase family 38 N-terminal domain-containing protein|g__Propionibacterium.s__Propionibacterium_acnes	1.0445871546
+UniRef50_G6Y8D4: Transposase	1.0445343675
+UniRef50_G6Y8D4: Transposase|unclassified	1.0445343675
+UniRef50_UPI00026CC885: L-threonine 3-dehydrogenase	1.0445336175
+UniRef50_UPI00026CC885: L-threonine 3-dehydrogenase|unclassified	1.0445336175
+UniRef50_UPI0003653B40: hypothetical protein	1.0443022616
+UniRef50_UPI0003653B40: hypothetical protein|unclassified	1.0443022616
+UniRef50_K7SFB2	1.0440482214
+UniRef50_K7SFB2|unclassified	1.0440482214
+UniRef50_A6M3G1: Aminoglycoside phosphotransferase	1.0438413361
+UniRef50_A6M3G1: Aminoglycoside phosphotransferase|g__Clostridium.s__Clostridium_beijerinckii	1.0438413361
+UniRef50_B8HCQ0	1.0438413361
+UniRef50_B8HCQ0|unclassified	1.0438413361
+UniRef50_U5RZU5	1.0438413361
+UniRef50_U5RZU5|g__Clostridium.s__Clostridium_beijerinckii	1.0438413361
+UniRef50_W7BR18	1.0436667705
+UniRef50_W7BR18|unclassified	1.0436667705
+UniRef50_UPI0003B63A1B: acetyltransferase	1.0435365912
+UniRef50_UPI0003B63A1B: acetyltransferase|unclassified	1.0435365912
+UniRef50_UPI000379022A: hypothetical protein	1.0430967817
+UniRef50_UPI000379022A: hypothetical protein|unclassified	1.0430967817
+UniRef50_UPI0003A55372: flagellar assembly protein H	1.0430309329
+UniRef50_UPI0003A55372: flagellar assembly protein H|unclassified	1.0430309329
+UniRef50_B2TVQ9	1.0429574825
+UniRef50_B2TVQ9|unclassified	1.0429574825
+UniRef50_UPI000465DB23: peptide ABC transporter permease	1.0428995793
+UniRef50_UPI000465DB23: peptide ABC transporter permease|unclassified	1.0428995793
+UniRef50_UPI00038EDD53: PREDICTED: keratinocyte proline-rich protein-like	1.0428374726
+UniRef50_UPI00038EDD53: PREDICTED: keratinocyte proline-rich protein-like|unclassified	1.0428374726
+UniRef50_D7GCV1: Folylpolyglutamate synthase (Bifunctionnal enzyme)	1.0427528676
+UniRef50_D7GCV1: Folylpolyglutamate synthase (Bifunctionnal enzyme)|g__Propionibacterium.s__Propionibacterium_acnes	1.0427528676
+UniRef50_O25441	1.0427528676
+UniRef50_O25441|g__Helicobacter.s__Helicobacter_pylori	1.0427528676
+UniRef50_U5MLD2: Anti-sigma factor N-terminus	1.0427528676
+UniRef50_U5MLD2: Anti-sigma factor N-terminus|g__Clostridium.s__Clostridium_beijerinckii	1.0427528676
+UniRef50_X7EC41	1.0425417540
+UniRef50_X7EC41|unclassified	1.0425417540
+UniRef50_M1XFP7	1.0423585031
+UniRef50_M1XFP7|unclassified	1.0423585031
+UniRef50_I9LBA0: Alkaline phosphatase (Fragment)	1.0421348062
+UniRef50_I9LBA0: Alkaline phosphatase (Fragment)|unclassified	1.0421348062
+UniRef50_Q5Z8S8: BKRF1 encodes EBNA-1 protein-like	1.0419752356
+UniRef50_Q5Z8S8: BKRF1 encodes EBNA-1 protein-like|unclassified	1.0419752356
+UniRef50_G7DFY8: Ribonuclease E	1.0419155388
+UniRef50_G7DFY8: Ribonuclease E|unclassified	1.0419155388
+UniRef50_T0DS06: RnfC Barrel sandwich hybrid domain protein	1.0418724023
+UniRef50_T0DS06: RnfC Barrel sandwich hybrid domain protein|unclassified	1.0418724023
+UniRef50_UPI0003B796C7: arginine ABC transporter ATP-binding protein	1.0417289149
+UniRef50_UPI0003B796C7: arginine ABC transporter ATP-binding protein|unclassified	1.0417289149
+UniRef50_A6M1H4: Sodium:dicarboxylate symporter	1.0416666667
+UniRef50_A6M1H4: Sodium:dicarboxylate symporter|g__Clostridium.s__Clostridium_beijerinckii	1.0416666667
+UniRef50_B0VM85	1.0416666667
+UniRef50_B0VM85|g__Acinetobacter.s__Acinetobacter_baumannii	1.0416666667
+UniRef50_D8JH55: Transcriptional regulatory protein, C terminal family protein	1.0416666667
+UniRef50_D8JH55: Transcriptional regulatory protein, C terminal family protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.0416666667
+UniRef50_UPI00037994AC: mRNA 3''''-end processing factor, partial	1.0414837423
+UniRef50_UPI00037994AC: mRNA 3''''-end processing factor, partial|unclassified	1.0414837423
+UniRef50_A1WTS1: Protein RnfH	1.0410199075
+UniRef50_A1WTS1: Protein RnfH|unclassified	1.0410199075
+UniRef50_M4S5A3	1.0409946639
+UniRef50_M4S5A3|unclassified	1.0409946639
+UniRef50_UPI0002B4606A: PREDICTED: bifunctional protein FolD-like, partial	1.0408589919
+UniRef50_UPI0002B4606A: PREDICTED: bifunctional protein FolD-like, partial|unclassified	1.0408589919
+UniRef50_F8JF29	1.0407348614
+UniRef50_F8JF29|unclassified	1.0407348614
+UniRef50_B9AGP8	1.0407347013
+UniRef50_B9AGP8|unclassified	1.0407347013
+UniRef50_F8ABT6: TRAP transporter solute receptor, TAXI family	1.0407023697
+UniRef50_F8ABT6: TRAP transporter solute receptor, TAXI family|unclassified	1.0407023697
+UniRef50_A0A059MMV6: MFS transporter	1.0405827263
+UniRef50_A0A059MMV6: MFS transporter|g__Acinetobacter.s__Acinetobacter_baumannii	1.0405827263
+UniRef50_A6LZB2: FMN-binding domain protein	1.0405827263
+UniRef50_A6LZB2: FMN-binding domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.0405827263
+UniRef50_D7CNA1: Radical SAM domain protein	1.0405827263
+UniRef50_D7CNA1: Radical SAM domain protein|g__Clostridium.s__Clostridium_beijerinckii	1.0405827263
+UniRef50_Q5MRA3	1.0405827263
+UniRef50_Q5MRA3|unclassified	1.0405827263
+UniRef50_B7ZYN9	1.0402476479
+UniRef50_B7ZYN9|unclassified	1.0402476479
+UniRef50_UPI000472F7A5: GCN5 family acetyltransferase	1.0401630119
+UniRef50_UPI000472F7A5: GCN5 family acetyltransferase|unclassified	1.0401630119
+UniRef50_T2SUX4: Cation transporter (Fragment)	1.0399504540
+UniRef50_T2SUX4: Cation transporter (Fragment)|g__Helicobacter.s__Helicobacter_pylori	1.0399504540
+UniRef50_UPI0003B4F279: exclusion suppressor FxsA	1.0399358001
+UniRef50_UPI0003B4F279: exclusion suppressor FxsA|unclassified	1.0399358001
+UniRef50_J8V5R5	1.0397792350
+UniRef50_J8V5R5|unclassified	1.0397792350
+UniRef50_UPI0003B4F4A1: aspartyl-tRNA amidotransferase subunit B	1.0397548616
+UniRef50_UPI0003B4F4A1: aspartyl-tRNA amidotransferase subunit B|unclassified	1.0397548616
+UniRef50_D2BFP5	1.0396639248
+UniRef50_D2BFP5|unclassified	1.0396639248
+UniRef50_A0A024HD58	1.0395010395
+UniRef50_A0A024HD58|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0395010395
+UniRef50_J9YPK5: SorC family transcriptional regulator	1.0395010395
+UniRef50_J9YPK5: SorC family transcriptional regulator|g__Streptococcus.s__Streptococcus_agalactiae	1.0395010395
+UniRef50_O25770: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase	1.0395010395
+UniRef50_O25770: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase|g__Helicobacter.s__Helicobacter_pylori	1.0395010395
+UniRef50_R8ZFE5: Glucose-sensitive porin	1.0395010395
+UniRef50_R8ZFE5: Glucose-sensitive porin|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0395010395
+UniRef50_Q6LTY5: Na(+)-translocating NADH-quinone reductase subunit E	1.0393894637
+UniRef50_Q6LTY5: Na(+)-translocating NADH-quinone reductase subunit E|unclassified	1.0393894637
+UniRef50_A9MKD9	1.0392398886
+UniRef50_A9MKD9|unclassified	1.0392398886
+UniRef50_X3EB99	1.0392040711
+UniRef50_X3EB99|unclassified	1.0392040711
+UniRef50_W6QS47: Methyl-accepting chemotaxis transducer	1.0392022193
+UniRef50_W6QS47: Methyl-accepting chemotaxis transducer|unclassified	1.0392022193
+UniRef50_W1DN45: L-proline glycine betaine ABC transport system permease protein ProW (TC 3.A.1.12.1)	1.0390072803
+UniRef50_W1DN45: L-proline glycine betaine ABC transport system permease protein ProW (TC 3.A.1.12.1)|unclassified	1.0390072803
+UniRef50_A1B8T1	1.0389803804
+UniRef50_A1B8T1|unclassified	1.0389803804
+UniRef50_M0X2N9	1.0388860132
+UniRef50_M0X2N9|unclassified	1.0388860132
+UniRef50_B2KCI5: Tryptophan synthase beta chain	1.0387120556
+UniRef50_B2KCI5: Tryptophan synthase beta chain|unclassified	1.0387120556
+UniRef50_UPI00036D5BBB: hypothetical protein	1.0386190342
+UniRef50_UPI00036D5BBB: hypothetical protein|unclassified	1.0386190342
+UniRef50_R8DPH1	1.0384808454
+UniRef50_R8DPH1|unclassified	1.0384808454
+UniRef50_Q6FCS8: ATP phosphoribosyltransferase regulatory subunit	1.0384215992
+UniRef50_Q6FCS8: ATP phosphoribosyltransferase regulatory subunit|g__Acinetobacter.s__Acinetobacter_baumannii	1.0384215992
+UniRef50_Q8DY20: 3-hydroxyacyl-CoA dehydrogenase family protein	1.0384215992
+UniRef50_Q8DY20: 3-hydroxyacyl-CoA dehydrogenase family protein|g__Streptococcus.s__Streptococcus_agalactiae	1.0384215992
+UniRef50_U1H6E4: Penicillin-binding protein 1A (Fragment)	1.0383943019
+UniRef50_U1H6E4: Penicillin-binding protein 1A (Fragment)|unclassified	1.0383943019
+UniRef50_R1F507	1.0382708930
+UniRef50_R1F507|unclassified	1.0382708930
+UniRef50_U5YR77: Transcriptional regulator	1.0381482213
+UniRef50_U5YR77: Transcriptional regulator|unclassified	1.0381482213
+UniRef50_A6LUJ6	1.0380865162
+UniRef50_A6LUJ6|g__Clostridium.s__Clostridium_beijerinckii	1.0380865162
+UniRef50_UPI0003A0AD9C: aspartyl-tRNA amidotransferase	1.0379444256
+UniRef50_UPI0003A0AD9C: aspartyl-tRNA amidotransferase|unclassified	1.0379444256
+UniRef50_UPI00036B6D82: hypothetical protein	1.0378403827
+UniRef50_UPI00036B6D82: hypothetical protein|unclassified	1.0378403827
+UniRef50_UPI0002557988: dihydroorotate dehydrogenase 2, partial	1.0377792464
+UniRef50_UPI0002557988: dihydroorotate dehydrogenase 2, partial|unclassified	1.0377792464
+UniRef50_U0DC50	1.0375340653
+UniRef50_U0DC50|unclassified	1.0375340653
+UniRef50_A9LZL8: Type-II restriction endonuclease	1.0373443983
+UniRef50_A9LZL8: Type-II restriction endonuclease|g__Neisseria.s__Neisseria_meningitidis	1.0373443983
+UniRef50_B9FVY6	1.0373443983
+UniRef50_B9FVY6|unclassified	1.0373443983
+UniRef50_D8JDR1	1.0373443983
+UniRef50_D8JDR1|g__Acinetobacter.s__Acinetobacter_baumannii	1.0373443983
+UniRef50_F8KRE5: Chemotaxis protein Che	1.0373443983
+UniRef50_F8KRE5: Chemotaxis protein Che|g__Helicobacter.s__Helicobacter_pylori	1.0373443983
+UniRef50_M4ZJP4	1.0373443983
+UniRef50_M4ZJP4|g__Helicobacter.s__Helicobacter_pylori	1.0373443983
+UniRef50_UPI00047A7436: hypothetical protein	1.0373443983
+UniRef50_UPI00047A7436: hypothetical protein|unclassified	1.0373443983
+UniRef50_Z0L1U0	1.0372680027
+UniRef50_Z0L1U0|unclassified	1.0372680027
+UniRef50_UPI000363D694: hypothetical protein	1.0367886316
+UniRef50_UPI000363D694: hypothetical protein|unclassified	1.0367886316
+UniRef50_UPI00040A034C: hypothetical protein	1.0367734591
+UniRef50_UPI00040A034C: hypothetical protein|unclassified	1.0367734591
+UniRef50_A0A017TGF9	1.0366139721
+UniRef50_A0A017TGF9|unclassified	1.0366139721
+UniRef50_A0A023RTB7: TonB-dependent receptor	1.0365531831
+UniRef50_A0A023RTB7: TonB-dependent receptor|g__Acinetobacter.s__Acinetobacter_baumannii	1.0365531831
+UniRef50_Q9MUN1: Sulfate/thiosulfate import ATP-binding protein CysA	1.0365442912
+UniRef50_Q9MUN1: Sulfate/thiosulfate import ATP-binding protein CysA|unclassified	1.0365442912
+UniRef50_E1Q5C1: DNA topoisomerase I (TopA)	1.0365397033
+UniRef50_E1Q5C1: DNA topoisomerase I (TopA)|g__Helicobacter.s__Helicobacter_pylori	1.0365397033
+UniRef50_UPI0003B315F6: deoxyguanosinetriphosphate triphosphohydrolase	1.0363980637
+UniRef50_UPI0003B315F6: deoxyguanosinetriphosphate triphosphohydrolase|unclassified	1.0363980637
+UniRef50_UPI0003B6F3ED: nucleoside-triphosphate diphosphatase	1.0363586879
+UniRef50_UPI0003B6F3ED: nucleoside-triphosphate diphosphatase|unclassified	1.0363586879
+UniRef50_UPI0003EF77A3: hypothetical protein	1.0363279011
+UniRef50_UPI0003EF77A3: hypothetical protein|unclassified	1.0363279011
+UniRef50_B2V075: Ser/Thr protein phosphatase family protein	1.0362694301
+UniRef50_B2V075: Ser/Thr protein phosphatase family protein|g__Clostridium.s__Clostridium_beijerinckii	1.0362694301
+UniRef50_G7W9E1	1.0362694301
+UniRef50_G7W9E1|g__Clostridium.s__Clostridium_beijerinckii	1.0362694301
+UniRef50_G8VN68: Glycosyl hydrolase, alpha-L-fucosidase	1.0362694301
+UniRef50_G8VN68: Glycosyl hydrolase, alpha-L-fucosidase|g__Propionibacterium.s__Propionibacterium_acnes	1.0362694301
+UniRef50_G8VNH2: Cysteine synthase/ornithine cyclodeaminase	1.0362694301
+UniRef50_G8VNH2: Cysteine synthase/ornithine cyclodeaminase|g__Propionibacterium.s__Propionibacterium_acnes	1.0362694301
+UniRef50_Q187U6: tRNA-2-methylthio-N(6)-dimethylallyladenosine synthase	1.0362694301
+UniRef50_Q187U6: tRNA-2-methylthio-N(6)-dimethylallyladenosine synthase|g__Clostridium.s__Clostridium_beijerinckii	1.0362694301
+UniRef50_W8XTQ0	1.0362185829
+UniRef50_W8XTQ0|unclassified	1.0362185829
+UniRef50_Q9RTX3: C-di-GMP phosphodiesterase A	1.0360539810
+UniRef50_Q9RTX3: C-di-GMP phosphodiesterase A|g__Deinococcus.s__Deinococcus_radiodurans	1.0360539810
+UniRef50_W7Y8Y9: Butyryl-CoA dehydrogenase	1.0359315619
+UniRef50_W7Y8Y9: Butyryl-CoA dehydrogenase|unclassified	1.0359315619
+UniRef50_UPI000301FF6F: hypothetical protein	1.0357784806
+UniRef50_UPI000301FF6F: hypothetical protein|unclassified	1.0357784806
+UniRef50_A0A021VVQ5	1.0356762810
+UniRef50_A0A021VVQ5|unclassified	1.0356762810
+UniRef50_Q6A6L8: Conserved membrane-spanning protein	1.0356002800
+UniRef50_Q6A6L8: Conserved membrane-spanning protein|g__Propionibacterium.s__Propionibacterium_acnes	0.8628127696
+UniRef50_Q6A6L8: Conserved membrane-spanning protein|unclassified	0.1727875104
+UniRef50_UPI0003B6B6A2: glycine/betaine ABC transporter ATP-binding protein	1.0353272461
+UniRef50_UPI0003B6B6A2: glycine/betaine ABC transporter ATP-binding protein|unclassified	1.0353272461
+UniRef50_L0KAS8: Sulfite reductase, subunit C	1.0351966874
+UniRef50_L0KAS8: Sulfite reductase, subunit C|g__Clostridium.s__Clostridium_beijerinckii	1.0351966874
+UniRef50_M9S1L9: Periplasmic aliphatic sulfonate-binding protein	1.0351966874
+UniRef50_M9S1L9: Periplasmic aliphatic sulfonate-binding protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0351966874
+UniRef50_Q91TN8: T50	1.0351966874
+UniRef50_Q91TN8: T50|unclassified	1.0351966874
+UniRef50_U1M2P7	1.0351966874
+UniRef50_U1M2P7|unclassified	1.0351966874
+UniRef50_W4VJF5: Cytochrome d ubiquinol oxidase subunit II	1.0350828646
+UniRef50_W4VJF5: Cytochrome d ubiquinol oxidase subunit II|unclassified	1.0350828646
+UniRef50_H7EAU6	1.0350385504
+UniRef50_H7EAU6|unclassified	1.0350385504
+UniRef50_G5ZZB3: GMP synthase family protein	1.0349901312
+UniRef50_G5ZZB3: GMP synthase family protein|unclassified	1.0349901312
+UniRef50_A0A033WD13	1.0348974918
+UniRef50_A0A033WD13|unclassified	1.0348974918
+UniRef50_Q0C2V0: Cytochrome oxidase maturation protein, cbb3-type	1.0347317136
+UniRef50_Q0C2V0: Cytochrome oxidase maturation protein, cbb3-type|unclassified	1.0347317136
+UniRef50_UPI0003FBC967: adhesin	1.0347014964
+UniRef50_UPI0003FBC967: adhesin|unclassified	1.0347014964
+UniRef50_UPI000225F341: ParB family protein	1.0345679433
+UniRef50_UPI000225F341: ParB family protein|unclassified	1.0345679433
+UniRef50_X0XIH0: Marine sediment metagenome DNA, contig: S01H1_S41664 (Fragment)	1.0343605500
+UniRef50_X0XIH0: Marine sediment metagenome DNA, contig: S01H1_S41664 (Fragment)|unclassified	1.0343605500
+UniRef50_A0NVF1	1.0341379647
+UniRef50_A0NVF1|unclassified	1.0341379647
+UniRef50_A0A023S121: Cation transporter	1.0341261634
+UniRef50_A0A023S121: Cation transporter|g__Acinetobacter.s__Acinetobacter_baumannii	1.0341261634
+UniRef50_D0C8Q0	1.0341261634
+UniRef50_D0C8Q0|g__Acinetobacter.s__Acinetobacter_baumannii	1.0341261634
+UniRef50_E6NJA8	1.0341261634
+UniRef50_E6NJA8|g__Helicobacter.s__Helicobacter_pylori	1.0341261634
+UniRef50_E8XM67: Sugar isomerase (SIS)	1.0341261634
+UniRef50_E8XM67: Sugar isomerase (SIS)|g__Clostridium.s__Clostridium_beijerinckii	1.0341261634
+UniRef50_G0DS55: Radical SAM superfamily protein	1.0341261634
+UniRef50_G0DS55: Radical SAM superfamily protein|g__Propionibacterium.s__Propionibacterium_acnes	1.0341261634
+UniRef50_A3RY92	1.0340724039
+UniRef50_A3RY92|unclassified	1.0340724039
+UniRef50_UPI0004216ABB: hypothetical protein	1.0340629402
+UniRef50_UPI0004216ABB: hypothetical protein|unclassified	1.0340629402
+UniRef50_A6M264: Lantibiotic modifying-like protein	1.0339787811
+UniRef50_A6M264: Lantibiotic modifying-like protein|g__Clostridium.s__Clostridium_beijerinckii	1.0339787811
+UniRef50_Q1QJ73	1.0339523244
+UniRef50_Q1QJ73|unclassified	1.0339523244
+UniRef50_Q6YWZ7	1.0339124846
+UniRef50_Q6YWZ7|unclassified	1.0339124846
+UniRef50_E1HGR2	1.0338657151
+UniRef50_E1HGR2|unclassified	1.0338657151
+UniRef50_UPI0004762DA1: acetate permease, partial	1.0337245243
+UniRef50_UPI0004762DA1: acetate permease, partial|unclassified	1.0337245243
+UniRef50_UPI00039D6F74: ubiquinol cytochrome C oxidoreductase	1.0336702090
+UniRef50_UPI00039D6F74: ubiquinol cytochrome C oxidoreductase|unclassified	1.0336702090
+UniRef50_G2KXV7	1.0334486203
+UniRef50_G2KXV7|unclassified	1.0334486203
+UniRef50_UPI00042688B1: hypothetical protein	1.0331633034
+UniRef50_UPI00042688B1: hypothetical protein|unclassified	1.0331633034
+UniRef50_N2L8F2: Branched-chain amino acid transport system / permease component family protein	1.0331487129
+UniRef50_N2L8F2: Branched-chain amino acid transport system / permease component family protein|unclassified	1.0331487129
+UniRef50_A6LZ61: Aldose 1-epimerase	1.0330578512
+UniRef50_A6LZ61: Aldose 1-epimerase|g__Clostridium.s__Clostridium_beijerinckii	1.0330578512
+UniRef50_F4DAR6: ABC-type oligopeptide transport system,, ATPase component	1.0330578512
+UniRef50_F4DAR6: ABC-type oligopeptide transport system,, ATPase component|g__Clostridium.s__Clostridium_beijerinckii	1.0330578512
+UniRef50_G8VLV0: tRNA-processing ribonuclease	1.0330578512
+UniRef50_G8VLV0: tRNA-processing ribonuclease|g__Propionibacterium.s__Propionibacterium_acnes	1.0330578512
+UniRef50_X5EDT3: Transcriptional regulator	1.0330578512
+UniRef50_X5EDT3: Transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0330578512
+UniRef50_W0YZF7: Putative transcriptional regulator	1.0330427310
+UniRef50_W0YZF7: Putative transcriptional regulator|unclassified	1.0330427310
+UniRef50_Q7G2Z3: Expressed protein	1.0330322026
+UniRef50_Q7G2Z3: Expressed protein|unclassified	1.0330322026
+UniRef50_D0D765: Beta-lactamase domain protein	1.0329098187
+UniRef50_D0D765: Beta-lactamase domain protein|unclassified	1.0329098187
+UniRef50_Q1YIL6	1.0328237864
+UniRef50_Q1YIL6|unclassified	1.0328237864
+UniRef50_I7UHC3	1.0324715604
+UniRef50_I7UHC3|unclassified	1.0324715604
+UniRef50_E2X449	1.0320298048
+UniRef50_E2X449|unclassified	1.0320298048
+UniRef50_A6LY02: Helix-turn-helix-domain containing protein, AraC type	1.0319917441
+UniRef50_A6LY02: Helix-turn-helix-domain containing protein, AraC type|g__Clostridium.s__Clostridium_beijerinckii	1.0319917441
+UniRef50_C3K388: Two-component system, sensor kinase	1.0319917441
+UniRef50_C3K388: Two-component system, sensor kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0319917441
+UniRef50_UPI00036189B5: DNA glycosylase	1.0318832689
+UniRef50_UPI00036189B5: DNA glycosylase|unclassified	1.0318832689
+UniRef50_UPI0003722DAB: hypothetical protein	1.0318597480
+UniRef50_UPI0003722DAB: hypothetical protein|unclassified	1.0318597480
+UniRef50_UPI00046F9A01: hypothetical protein	1.0316651357
+UniRef50_UPI00046F9A01: hypothetical protein|unclassified	1.0316651357
+UniRef50_X0NX98	1.0315892888
+UniRef50_X0NX98|unclassified	1.0315892888
+UniRef50_K0X1P2: Putative fimbrial-like adhesin domain protein	1.0315277344
+UniRef50_K0X1P2: Putative fimbrial-like adhesin domain protein|unclassified	1.0315277344
+UniRef50_A3V1R1: Flagellar protein FlgJ, putative	1.0315213023
+UniRef50_A3V1R1: Flagellar protein FlgJ, putative|unclassified	1.0315213023
+UniRef50_D5APE6	1.0314507054
+UniRef50_D5APE6|unclassified	1.0314507054
+UniRef50_A8AE16	1.0313635114
+UniRef50_A8AE16|unclassified	1.0313635114
+UniRef50_H4GEP0: Replication initiator protein A, N-terminal domain protein	1.0312743116
+UniRef50_H4GEP0: Replication initiator protein A, N-terminal domain protein|unclassified	1.0312743116
+UniRef50_UPI0003678A6C: hypothetical protein	1.0312513697
+UniRef50_UPI0003678A6C: hypothetical protein|unclassified	1.0312513697
+UniRef50_X6L1Q7	1.0311966259
+UniRef50_X6L1Q7|unclassified	1.0311966259
+UniRef50_P9WKI2	1.0309278351
+UniRef50_P9WKI2|g__Propionibacterium.s__Propionibacterium_acnes	1.0309278351
+UniRef50_Q5XA85: Abortive infection phage resistance protein	1.0309278351
+UniRef50_Q5XA85: Abortive infection phage resistance protein|g__Streptococcus.s__Streptococcus_agalactiae	1.0309278351
+UniRef50_UPI00036518A8: hypothetical protein	1.0309278351
+UniRef50_UPI00036518A8: hypothetical protein|unclassified	1.0309278351
+UniRef50_W1JGI9	1.0308938351
+UniRef50_W1JGI9|unclassified	1.0308938351
+UniRef50_Q2FUB7: Nitrogenase iron protein	1.0308775107
+UniRef50_Q2FUB7: Nitrogenase iron protein|unclassified	1.0308775107
+UniRef50_W4RVL2: Membrane protein	1.0305882210
+UniRef50_W4RVL2: Membrane protein|unclassified	1.0305882210
+UniRef50_G8LGE7	1.0305610107
+UniRef50_G8LGE7|unclassified	1.0305610107
+UniRef50_UPI00046F22D0: hypothetical protein, partial	1.0303333761
+UniRef50_UPI00046F22D0: hypothetical protein, partial|unclassified	1.0303333761
+UniRef50_A0A033CAN1: Extracellular matrix protein-binding protein emp	1.0302691595
+UniRef50_A0A033CAN1: Extracellular matrix protein-binding protein emp|unclassified	1.0302691595
+UniRef50_J2XF73: Putative thioesterase	1.0302387923
+UniRef50_J2XF73: Putative thioesterase|unclassified	1.0302387923
+UniRef50_Q8D653: Sulfate/thiosulfate import ATP-binding protein CysA	1.0301653729
+UniRef50_Q8D653: Sulfate/thiosulfate import ATP-binding protein CysA|unclassified	1.0301653729
+UniRef50_B0CEH5	1.0301549827
+UniRef50_B0CEH5|unclassified	1.0301549827
+UniRef50_UPI0002000266: preprotein translocase subunit SecF	1.0299735020
+UniRef50_UPI0002000266: preprotein translocase subunit SecF|unclassified	1.0299735020
+UniRef50_Q1QE80: Spermidine/putrescine import ATP-binding protein PotA	1.0298783898
+UniRef50_Q1QE80: Spermidine/putrescine import ATP-binding protein PotA|unclassified	1.0298783898
+UniRef50_Q6F7N0: Ferrochelatase	1.0298661174
+UniRef50_Q6F7N0: Ferrochelatase|g__Acinetobacter.s__Acinetobacter_baumannii	1.0298661174
+UniRef50_U5WDI7	1.0298661174
+UniRef50_U5WDI7|unclassified	1.0298661174
+UniRef50_A6QEU5	1.0296590011
+UniRef50_A6QEU5|unclassified	1.0296590011
+UniRef50_G8UZI5: Bacterial transcription activator, effector binding domain protein	1.0296356941
+UniRef50_G8UZI5: Bacterial transcription activator, effector binding domain protein|unclassified	1.0296356941
+UniRef50_W6RYK9: Alpha-dextran endo-1,6-alpha-glucosidase	1.0296065551
+UniRef50_W6RYK9: Alpha-dextran endo-1,6-alpha-glucosidase|g__Clostridium.s__Clostridium_beijerinckii	1.0296065551
+UniRef50_B7I5N1: Zn-dependent oligopeptidase	1.0295981653
+UniRef50_B7I5N1: Zn-dependent oligopeptidase|g__Acinetobacter.s__Acinetobacter_baumannii	1.0295981653
+UniRef50_Q1YVL9	1.0295584935
+UniRef50_Q1YVL9|unclassified	1.0295584935
+UniRef50_F3GF13: PAS protein (Fragment)	1.0293414573
+UniRef50_F3GF13: PAS protein (Fragment)|unclassified	1.0293414573
+UniRef50_I4F474	1.0293268145
+UniRef50_I4F474|unclassified	1.0293268145
+UniRef50_UPI0002FE110D: Fosmidomycin resistance protein	1.0293140482
+UniRef50_UPI0002FE110D: Fosmidomycin resistance protein|unclassified	1.0293140482
+UniRef50_K6VKT2	1.0292370032
+UniRef50_K6VKT2|unclassified	1.0292370032
+UniRef50_A3SLV2	1.0290530994
+UniRef50_A3SLV2|unclassified	1.0290530994
+UniRef50_UPI0003B544A3: sugar ABC transporter permease, partial	1.0289564624
+UniRef50_UPI0003B544A3: sugar ABC transporter permease, partial|unclassified	1.0289564624
+UniRef50_UPI0004693B6F: hypothetical protein	1.0288482757
+UniRef50_UPI0004693B6F: hypothetical protein|unclassified	1.0288482757
+UniRef50_G2TA66: Phosphate ABC transporter permease	1.0288065844
+UniRef50_G2TA66: Phosphate ABC transporter permease|g__Acinetobacter.s__Acinetobacter_baumannii	1.0288065844
+UniRef50_UPI000465C440: hypothetical protein	1.0288065844
+UniRef50_UPI000465C440: hypothetical protein|unclassified	1.0288065844
+UniRef50_V5E5C8: Cold shock-like protein CspD	1.0286076154
+UniRef50_V5E5C8: Cold shock-like protein CspD|unclassified	1.0286076154
+UniRef50_V7FMP6	1.0285390761
+UniRef50_V7FMP6|unclassified	1.0285390761
+UniRef50_UPI00047D098E: hypothetical protein	1.0285281540
+UniRef50_UPI00047D098E: hypothetical protein|unclassified	1.0285281540
+UniRef50_Q89X34: 3-isopropylmalate dehydratase large subunit 2	1.0285275380
+UniRef50_Q89X34: 3-isopropylmalate dehydratase large subunit 2|unclassified	1.0285275380
+UniRef50_UPI00042C653C: PREDICTED: proline-rich proteoglycan 2-like	1.0283666971
+UniRef50_UPI00042C653C: PREDICTED: proline-rich proteoglycan 2-like|unclassified	1.0283666971
+UniRef50_K9W5R6: HI0933 family protein	1.0282826030
+UniRef50_K9W5R6: HI0933 family protein|unclassified	1.0282826030
+UniRef50_P43707: Probable ferritin-1	1.0282036495
+UniRef50_P43707: Probable ferritin-1|unclassified	1.0282036495
+UniRef50_Q8Y0U6: Thymidylate synthase	1.0280219812
+UniRef50_Q8Y0U6: Thymidylate synthase|unclassified	1.0280219812
+UniRef50_UPI00029AB2EF: hypothetical protein	1.0278436871
+UniRef50_UPI00029AB2EF: hypothetical protein|unclassified	1.0278436871
+UniRef50_X5HEL8: Alkyl hydroperoxide reductase	1.0278400079
+UniRef50_X5HEL8: Alkyl hydroperoxide reductase|unclassified	1.0278400079
+UniRef50_L7WP82	1.0277635517
+UniRef50_L7WP82|unclassified	1.0277635517
+UniRef50_F9YYI3: Myo-inositol 2-dehydrogenase	1.0277492292
+UniRef50_F9YYI3: Myo-inositol 2-dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	1.0277492292
+UniRef50_Q59092: 3-carboxy-cis,cis-muconate cycloisomerase	1.0277492292
+UniRef50_Q59092: 3-carboxy-cis,cis-muconate cycloisomerase|g__Acinetobacter.s__Acinetobacter_baumannii	1.0277492292
+UniRef50_R6PZ09: Chorismate synthase	1.0277492292
+UniRef50_R6PZ09: Chorismate synthase|g__Clostridium.s__Clostridium_beijerinckii	1.0277492292
+UniRef50_U5MRD5: D-galactose-binding periplasmic protein MglB	1.0277492292
+UniRef50_U5MRD5: D-galactose-binding periplasmic protein MglB|g__Clostridium.s__Clostridium_beijerinckii	1.0277492292
+UniRef50_UPI000362E2A6: hypothetical protein	1.0277492292
+UniRef50_UPI000362E2A6: hypothetical protein|unclassified	1.0277492292
+UniRef50_X4FS17	1.0276932810
+UniRef50_X4FS17|unclassified	1.0276932810
+UniRef50_E6PT52	1.0276898504
+UniRef50_E6PT52|unclassified	1.0276898504
+UniRef50_UPI0003810BBD: hypothetical protein	1.0276679211
+UniRef50_UPI0003810BBD: hypothetical protein|unclassified	1.0276679211
+UniRef50_UPI0003A1575C: alkylhydroperoxidase	1.0275914812
+UniRef50_UPI0003A1575C: alkylhydroperoxidase|unclassified	1.0275914812
+UniRef50_A4XNW6	1.0275665861
+UniRef50_A4XNW6|unclassified	1.0275665861
+UniRef50_A0A024EHK4	1.0273242739
+UniRef50_A0A024EHK4|unclassified	1.0273242739
+UniRef50_UPI000382A7B2: hypothetical protein	1.0273087572
+UniRef50_UPI000382A7B2: hypothetical protein|unclassified	1.0273087572
+UniRef50_M5EPT0	1.0271760477
+UniRef50_M5EPT0|unclassified	1.0271760477
+UniRef50_F3BU02	1.0269337148
+UniRef50_F3BU02|unclassified	1.0269337148
+UniRef50_U2ACI4	1.0268851784
+UniRef50_U2ACI4|unclassified	1.0268851784
+UniRef50_Y9KXW0: D-lactate dehydrogenase	1.0268293312
+UniRef50_Y9KXW0: D-lactate dehydrogenase|unclassified	1.0268293312
+UniRef50_X1ND08: Marine sediment metagenome DNA, contig: S06H3_S18571 (Fragment)	1.0267664242
+UniRef50_X1ND08: Marine sediment metagenome DNA, contig: S06H3_S18571 (Fragment)|unclassified	1.0267664242
+UniRef50_W1G934: Biofilm PGA synthesis deacetylase PgaB (EC 3.-)	1.0266983170
+UniRef50_W1G934: Biofilm PGA synthesis deacetylase PgaB (EC 3.-)|unclassified	1.0266983170
+UniRef50_A6M0N1: Response regulator receiver protein	1.0266940452
+UniRef50_A6M0N1: Response regulator receiver protein|g__Clostridium.s__Clostridium_beijerinckii	1.0266940452
+UniRef50_B5IPE0: DNA primase TraC3	1.0266940452
+UniRef50_B5IPE0: DNA primase TraC3|unclassified	1.0266940452
+UniRef50_C1MRK8: Predicted protein	1.0266940452
+UniRef50_C1MRK8: Predicted protein|unclassified	1.0266940452
+UniRef50_F5XFZ9	1.0266940452
+UniRef50_F5XFZ9|g__Deinococcus.s__Deinococcus_radiodurans	1.0266940452
+UniRef50_X5EWU3	1.0266940452
+UniRef50_X5EWU3|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0266940452
+UniRef50_UPI0003B45D5E: ArsR family transcriptional regulator	1.0263646103
+UniRef50_UPI0003B45D5E: ArsR family transcriptional regulator|unclassified	1.0263646103
+UniRef50_A6X717	1.0263209925
+UniRef50_A6X717|unclassified	1.0263209925
+UniRef50_E4L3B3	1.0262104651
+UniRef50_E4L3B3|unclassified	1.0262104651
+UniRef50_S9SYG8	1.0261958721
+UniRef50_S9SYG8|unclassified	1.0261958721
+UniRef50_B7GZW3: Glycerol-3-phosphate dehydrogenase [NAD(P)+]	1.0261639143
+UniRef50_B7GZW3: Glycerol-3-phosphate dehydrogenase [NAD(P)+]|g__Acinetobacter.s__Acinetobacter_baumannii	0.9478672986
+UniRef50_B7GZW3: Glycerol-3-phosphate dehydrogenase [NAD(P)+]|unclassified	0.0782966157
+UniRef50_E3I3N8	1.0260989156
+UniRef50_E3I3N8|unclassified	1.0260989156
+UniRef50_UPI00046F6D6F: hypothetical protein, partial	1.0259100464
+UniRef50_UPI00046F6D6F: hypothetical protein, partial|unclassified	1.0259100464
+UniRef50_Q9ZCH1: 3-oxoacyl-[acyl-carrier-protein] synthase 3	1.0258810228
+UniRef50_Q9ZCH1: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	1.0258810228
+UniRef50_UPI0004707E78: hypothetical protein	1.0257823314
+UniRef50_UPI0004707E78: hypothetical protein|unclassified	1.0257823314
+UniRef50_R4YGR9: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	1.0257290721
+UniRef50_R4YGR9: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|unclassified	1.0257290721
+UniRef50_B4RPU8: Lipoprotein	1.0256410256
+UniRef50_B4RPU8: Lipoprotein|g__Neisseria.s__Neisseria_meningitidis	1.0256410256
+UniRef50_B9KTJ2: ABC spermidine/putrescine transporter, ATPase subunit	1.0256410256
+UniRef50_B9KTJ2: ABC spermidine/putrescine transporter, ATPase subunit|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.0256410256
+UniRef50_C7NH85: Glycerophosphoryl diester phosphodiesterase	1.0256410256
+UniRef50_C7NH85: Glycerophosphoryl diester phosphodiesterase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0256410256
+UniRef50_W8SXA6	1.0255269644
+UniRef50_W8SXA6|unclassified	1.0255269644
+UniRef50_UPI000428A07F: hypothetical protein	1.0246969941
+UniRef50_UPI000428A07F: hypothetical protein|unclassified	1.0246969941
+UniRef50_A3M9C4	1.0245901639
+UniRef50_A3M9C4|g__Acinetobacter.s__Acinetobacter_baumannii	1.0245901639
+UniRef50_G8VHB4: FecCD-family membrane transport protein	1.0245901639
+UniRef50_G8VHB4: FecCD-family membrane transport protein|g__Propionibacterium.s__Propionibacterium_acnes	1.0245901639
+UniRef50_Q6FAN6	1.0245901639
+UniRef50_Q6FAN6|g__Acinetobacter.s__Acinetobacter_baumannii	1.0245901639
+UniRef50_Q9RYC5	1.0245901639
+UniRef50_Q9RYC5|g__Deinococcus.s__Deinococcus_radiodurans	1.0245901639
+UniRef50_UPI0003EFA1BB: lipopolysaccharide biosynthesis protein, partial	1.0245901639
+UniRef50_UPI0003EFA1BB: lipopolysaccharide biosynthesis protein, partial|unclassified	1.0245901639
+UniRef50_UPI00045E763F: hypothetical protein	1.0244615904
+UniRef50_UPI00045E763F: hypothetical protein|unclassified	1.0244615904
+UniRef50_A0A017HHR5: Beta-lactamase domain protein	1.0243900345
+UniRef50_A0A017HHR5: Beta-lactamase domain protein|unclassified	1.0243900345
+UniRef50_D3NRF0: Cytochrome oxidase maturation protein	1.0243480975
+UniRef50_D3NRF0: Cytochrome oxidase maturation protein|unclassified	1.0243480975
+UniRef50_K2EIE6	1.0242204630
+UniRef50_K2EIE6|unclassified	1.0242204630
+UniRef50_A9EGW3: TadE-like protein	1.0239293905
+UniRef50_A9EGW3: TadE-like protein|unclassified	1.0239293905
+UniRef50_U2YXY7	1.0238328180
+UniRef50_U2YXY7|unclassified	1.0238328180
+UniRef50_D7G1U7	1.0235414534
+UniRef50_D7G1U7|unclassified	1.0235414534
+UniRef50_Q893C6: Dipeptide transport system permease protein dppB	1.0235414534
+UniRef50_Q893C6: Dipeptide transport system permease protein dppB|g__Streptococcus.s__Streptococcus_agalactiae	1.0235414534
+UniRef50_Q9HTH5: HTH-type transcriptional regulator CdhR	1.0235414534
+UniRef50_Q9HTH5: HTH-type transcriptional regulator CdhR|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0235414534
+UniRef50_UPI0002E79C21: hypothetical protein	1.0234001206
+UniRef50_UPI0002E79C21: hypothetical protein|unclassified	1.0234001206
+UniRef50_UPI00037B4F64: hypothetical protein	1.0232068355
+UniRef50_UPI00037B4F64: hypothetical protein|unclassified	1.0232068355
+UniRef50_UPI00025562BF: Na(+)-translocating NADH-quinone reductase subunit A	1.0229133287
+UniRef50_UPI00025562BF: Na(+)-translocating NADH-quinone reductase subunit A|unclassified	1.0229133287
+UniRef50_W1XPX0: NADH-quinone oxidoreductase subunit L (Fragment)	1.0228115214
+UniRef50_W1XPX0: NADH-quinone oxidoreductase subunit L (Fragment)|unclassified	1.0228115214
+UniRef50_UPI0003B555E3: PREDICTED: keratinocyte proline-rich protein-like, partial	1.0227621839
+UniRef50_UPI0003B555E3: PREDICTED: keratinocyte proline-rich protein-like, partial|unclassified	1.0227621839
+UniRef50_T0U8N2: ABC transporter permease protein	1.0227175598
+UniRef50_T0U8N2: ABC transporter permease protein|unclassified	1.0227175598
+UniRef50_D8M908: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_6	1.0226891473
+UniRef50_D8M908: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_6|unclassified	1.0226891473
+UniRef50_Q47648: GTG start codon	1.0226579740
+UniRef50_Q47648: GTG start codon|unclassified	1.0226579740
+UniRef50_E1PY25	1.0224948875
+UniRef50_E1PY25|g__Helicobacter.s__Helicobacter_pylori	1.0224948875
+UniRef50_J3PGT6	1.0224948875
+UniRef50_J3PGT6|unclassified	1.0224948875
+UniRef50_M4XIX4: Segregation and condensation protein B	1.0224948875
+UniRef50_M4XIX4: Segregation and condensation protein B|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0224948875
+UniRef50_Q6EQ52: Regulatory protein-like	1.0224948875
+UniRef50_Q6EQ52: Regulatory protein-like|unclassified	1.0224948875
+UniRef50_F1AXJ4: PP284	1.0224600904
+UniRef50_F1AXJ4: PP284|unclassified	1.0224600904
+UniRef50_B9TL82	1.0224187506
+UniRef50_B9TL82|unclassified	1.0224187506
+UniRef50_B8NDP1: Putative glutathione-dependent formaldehyde-activating enzyme	1.0222038833
+UniRef50_B8NDP1: Putative glutathione-dependent formaldehyde-activating enzyme|unclassified	1.0222038833
+UniRef50_UPI00037B3020: hypothetical protein	1.0221190533
+UniRef50_UPI00037B3020: hypothetical protein|unclassified	1.0221190533
+UniRef50_B9KKS2	1.0220837209
+UniRef50_B9KKS2|unclassified	1.0220837209
+UniRef50_U9I2I4	1.0220144817
+UniRef50_U9I2I4|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0220144817
+UniRef50_Q6A5D0: Uronate isomerase	1.0219277591
+UniRef50_Q6A5D0: Uronate isomerase|g__Propionibacterium.s__Propionibacterium_acnes	0.9328358209
+UniRef50_Q6A5D0: Uronate isomerase|unclassified	0.0890919382
+UniRef50_UPI0003649B0A: MULTISPECIES: hypothetical protein	1.0219080712
+UniRef50_UPI0003649B0A: MULTISPECIES: hypothetical protein|unclassified	1.0219080712
+UniRef50_W4JRF8	1.0218653668
+UniRef50_W4JRF8|unclassified	1.0218653668
+UniRef50_Q2J3W0	1.0218650961
+UniRef50_Q2J3W0|unclassified	1.0218650961
+UniRef50_UPI00046D1C25: NADH:ubiquinone oxidoreductase subunit M	1.0218636111
+UniRef50_UPI00046D1C25: NADH:ubiquinone oxidoreductase subunit M|unclassified	1.0218636111
+UniRef50_A3VBF6	1.0218617322
+UniRef50_A3VBF6|unclassified	1.0218617322
+UniRef50_UPI000365A3DC: hypothetical protein	1.0217803917
+UniRef50_UPI000365A3DC: hypothetical protein|unclassified	1.0217803917
+UniRef50_UPI000454835D: PREDICTED: 28S ribosomal protein S12, mitochondrial, partial	1.0217541766
+UniRef50_UPI000454835D: PREDICTED: 28S ribosomal protein S12, mitochondrial, partial|unclassified	1.0217541766
+UniRef50_X7EHX2	1.0216785228
+UniRef50_X7EHX2|unclassified	1.0216785228
+UniRef50_A5AN80	1.0216423330
+UniRef50_A5AN80|unclassified	1.0216423330
+UniRef50_UPI0004560169: hypothetical protein PFL1_04325	1.0215955686
+UniRef50_UPI0004560169: hypothetical protein PFL1_04325|unclassified	1.0215955686
+UniRef50_UPI000375244C: hypothetical protein	1.0215202498
+UniRef50_UPI000375244C: hypothetical protein|unclassified	1.0215202498
+UniRef50_Q15RF6: Chemotaxis response regulator protein-glutamate methylesterase	1.0214504597
+UniRef50_Q15RF6: Chemotaxis response regulator protein-glutamate methylesterase|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0214504597
+UniRef50_Q60EN0	1.0214504597
+UniRef50_Q60EN0|unclassified	1.0214504597
+UniRef50_Q8XJR2: Putative zinc metalloprotease CPE1693	1.0214504597
+UniRef50_Q8XJR2: Putative zinc metalloprotease CPE1693|g__Clostridium.s__Clostridium_beijerinckii	1.0214504597
+UniRef50_I4EYS5: NAD-dependent epimerase/dehydratase	1.0213051252
+UniRef50_I4EYS5: NAD-dependent epimerase/dehydratase|unclassified	1.0213051252
+UniRef50_H2XTC8	1.0212372161
+UniRef50_H2XTC8|unclassified	1.0212372161
+UniRef50_UPI00031F702B: hypothetical protein	1.0212236625
+UniRef50_UPI00031F702B: hypothetical protein|unclassified	1.0212236625
+UniRef50_K8AX13: Oligopeptide transport system permease protein OppC (TC 3.A.1.5.1)	1.0211376147
+UniRef50_K8AX13: Oligopeptide transport system permease protein OppC (TC 3.A.1.5.1)|unclassified	1.0211376147
+UniRef50_F1W455	1.0210299292
+UniRef50_F1W455|unclassified	1.0210299292
+UniRef50_UPI000299F9FF: heat shock protein Hsp33	1.0208373507
+UniRef50_UPI000299F9FF: heat shock protein Hsp33|unclassified	1.0208373507
+UniRef50_L0SQG8	1.0208317446
+UniRef50_L0SQG8|unclassified	1.0208317446
+UniRef50_H5C4R0	1.0207212608
+UniRef50_H5C4R0|unclassified	1.0207212608
+UniRef50_S2E7R7: GMP synthase (Glutamine-hydrolyzing), N-terminal domain protein (Fragment)	1.0206795968
+UniRef50_S2E7R7: GMP synthase (Glutamine-hydrolyzing), N-terminal domain protein (Fragment)|unclassified	1.0206795968
+UniRef50_A7FB80	1.0204081633
+UniRef50_A7FB80|g__Acinetobacter.s__Acinetobacter_baumannii	1.0204081633
+UniRef50_G7M6Q3: Lysophospholipase	1.0204081633
+UniRef50_G7M6Q3: Lysophospholipase|g__Clostridium.s__Clostridium_beijerinckii	1.0204081633
+UniRef50_K4NDV9	1.0204081633
+UniRef50_K4NDV9|g__Helicobacter.s__Helicobacter_pylori	1.0204081633
+UniRef50_M9S210	1.0204081633
+UniRef50_M9S210|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0204081633
+UniRef50_Q8TTR1: Outer membrane protein expression inhibitor	1.0204081633
+UniRef50_Q8TTR1: Outer membrane protein expression inhibitor|g__Clostridium.s__Clostridium_beijerinckii	1.0204081633
+UniRef50_W1XU20: ABC transporter permease protein (Fragment)	1.0202890351
+UniRef50_W1XU20: ABC transporter permease protein (Fragment)|unclassified	1.0202890351
+UniRef50_UPI0004138CDA: threonine transporter RhtB	1.0199605560
+UniRef50_UPI0004138CDA: threonine transporter RhtB|unclassified	1.0199605560
+UniRef50_Z6SYG7	1.0198888703
+UniRef50_Z6SYG7|unclassified	1.0198888703
+UniRef50_D5D6N6	1.0198824278
+UniRef50_D5D6N6|unclassified	1.0198824278
+UniRef50_F3EG82	1.0198730888
+UniRef50_F3EG82|unclassified	1.0198730888
+UniRef50_UPI0003F9305E: hypothetical protein	1.0198424226
+UniRef50_UPI0003F9305E: hypothetical protein|unclassified	1.0198424226
+UniRef50_Q5FAC7: Penicillin-binding protein 1A	1.0198282903
+UniRef50_Q5FAC7: Penicillin-binding protein 1A|g__Neisseria.s__Neisseria_meningitidis	1.0198282903
+UniRef50_Q1I4N5	1.0196597682
+UniRef50_Q1I4N5|unclassified	1.0196597682
+UniRef50_A0A011QW25	1.0193849912
+UniRef50_A0A011QW25|unclassified	1.0193849912
+UniRef50_A4A5I0: Transcriptional regulator, LysR family	1.0193679918
+UniRef50_A4A5I0: Transcriptional regulator, LysR family|g__Acinetobacter.s__Acinetobacter_baumannii	1.0193679918
+UniRef50_R5TSA7	1.0193679918
+UniRef50_R5TSA7|g__Clostridium.s__Clostridium_beijerinckii	1.0193679918
+UniRef50_S1S766	1.0187997623
+UniRef50_S1S766|unclassified	1.0187997623
+UniRef50_UPI0003618133: hypothetical protein	1.0186012172
+UniRef50_UPI0003618133: hypothetical protein|unclassified	1.0186012172
+UniRef50_K4RK14: Cysteine desulfurase	1.0183299389
+UniRef50_K4RK14: Cysteine desulfurase|g__Helicobacter.s__Helicobacter_pylori	1.0183299389
+UniRef50_Q9I3M9: Cytochrome c-type biogenesis protein CycH	1.0183299389
+UniRef50_Q9I3M9: Cytochrome c-type biogenesis protein CycH|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0183299389
+UniRef50_P46843: Bifunctional thioredoxin reductase/thioredoxin	1.0182738021
+UniRef50_P46843: Bifunctional thioredoxin reductase/thioredoxin|unclassified	1.0182738021
+UniRef50_M4SA42: TraU family protein	1.0181666373
+UniRef50_M4SA42: TraU family protein|unclassified	1.0181666373
+UniRef50_G5RTD2	1.0181264551
+UniRef50_G5RTD2|unclassified	1.0181264551
+UniRef50_UPI0003B69DD7: molecular chaperone Hsp33	1.0179954649
+UniRef50_UPI0003B69DD7: molecular chaperone Hsp33|unclassified	1.0179954649
+UniRef50_UPI0003B3B0BA: preprotein translocase subunit TatA	1.0178161877
+UniRef50_UPI0003B3B0BA: preprotein translocase subunit TatA|unclassified	1.0178161877
+UniRef50_UPI0004656FEC: exodeoxyribonuclease III, partial	1.0176284179
+UniRef50_UPI0004656FEC: exodeoxyribonuclease III, partial|unclassified	1.0176284179
+UniRef50_Q73TT2	1.0174044400
+UniRef50_Q73TT2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0174044400
+UniRef50_Q6AB12: 4-hydroxythreonine-4-phosphate dehydrogenase	1.0172939980
+UniRef50_Q6AB12: 4-hydroxythreonine-4-phosphate dehydrogenase|g__Propionibacterium.s__Propionibacterium_acnes	1.0172939980
+UniRef50_X1BCT6: Marine sediment metagenome DNA, contig: S01H4_L03883	1.0172257423
+UniRef50_X1BCT6: Marine sediment metagenome DNA, contig: S01H4_L03883|unclassified	1.0172257423
+UniRef50_UPI0003613AE0: hypothetical protein	1.0170309710
+UniRef50_UPI0003613AE0: hypothetical protein|unclassified	1.0170309710
+UniRef50_UPI0004789CC8: hypothetical protein	1.0170224922
+UniRef50_UPI0004789CC8: hypothetical protein|unclassified	1.0170224922
+UniRef50_UPI00036713D4: hypothetical protein	1.0169822165
+UniRef50_UPI00036713D4: hypothetical protein|unclassified	1.0169822165
+UniRef50_V9VNV6	1.0169776486
+UniRef50_V9VNV6|unclassified	1.0169776486
+UniRef50_M3Z7C4	1.0168602401
+UniRef50_M3Z7C4|unclassified	1.0168602401
+UniRef50_R5BP53: BioX family protein	1.0167821760
+UniRef50_R5BP53: BioX family protein|unclassified	1.0167821760
+UniRef50_C7DF61: Chemotactic signal-response protein, putative	1.0167735731
+UniRef50_C7DF61: Chemotactic signal-response protein, putative|unclassified	1.0167735731
+UniRef50_UPI0003C7D864: glutamine ABC transporter permease, partial	1.0167439115
+UniRef50_UPI0003C7D864: glutamine ABC transporter permease, partial|unclassified	1.0167439115
+UniRef50_Q4PIL0: Catabolic 3-dehydroquinase	1.0167013447
+UniRef50_Q4PIL0: Catabolic 3-dehydroquinase|unclassified	1.0167013447
+UniRef50_UPI00036A6871: hypothetical protein	1.0166823998
+UniRef50_UPI00036A6871: hypothetical protein|unclassified	1.0166823998
+UniRef50_UPI00037F2DCD: hypothetical protein	1.0166466930
+UniRef50_UPI00037F2DCD: hypothetical protein|unclassified	1.0166466930
+UniRef50_M3XEN3	1.0166351670
+UniRef50_M3XEN3|unclassified	1.0166351670
+UniRef50_G8UVE6: TraU	1.0165123630
+UniRef50_G8UVE6: TraU|unclassified	1.0165123630
+UniRef50_UPI0002886C4D: transcriptional regulator	1.0163777424
+UniRef50_UPI0002886C4D: transcriptional regulator|unclassified	1.0163777424
+UniRef50_A6LPL8	1.0162601626
+UniRef50_A6LPL8|g__Clostridium.s__Clostridium_beijerinckii	1.0162601626
+UniRef50_D4MGJ2: Cyclopropane-fatty-acyl-phospholipid synthase	1.0162601626
+UniRef50_D4MGJ2: Cyclopropane-fatty-acyl-phospholipid synthase|g__Streptococcus.s__Streptococcus_agalactiae	1.0162601626
+UniRef50_UPI0001B434F9: protoporphyrinogen oxidase	1.0162601626
+UniRef50_UPI0001B434F9: protoporphyrinogen oxidase|unclassified	1.0162601626
+UniRef50_UPI000377636B: transcriptional regulator	1.0161985373
+UniRef50_UPI000377636B: transcriptional regulator|unclassified	1.0161985373
+UniRef50_W9T4P0: C-type cytochrome	1.0161793753
+UniRef50_W9T4P0: C-type cytochrome|unclassified	1.0161793753
+UniRef50_D4H9I9: RHS repeat-associated core domain protein	1.0160256956
+UniRef50_D4H9I9: RHS repeat-associated core domain protein|g__Propionibacterium.s__Propionibacterium_acnes	1.0160256956
+UniRef50_X6J1U2	1.0159897819
+UniRef50_X6J1U2|unclassified	1.0159897819
+UniRef50_K0RS76	1.0159433219
+UniRef50_K0RS76|unclassified	1.0159433219
+UniRef50_UPI00037F988E: hypothetical protein	1.0157526064
+UniRef50_UPI00037F988E: hypothetical protein|unclassified	1.0157526064
+UniRef50_UPI0003B58E59: acetyltransferase	1.0156873695
+UniRef50_UPI0003B58E59: acetyltransferase|unclassified	1.0156873695
+UniRef50_V4WU52	1.0155617610
+UniRef50_V4WU52|unclassified	1.0155617610
+UniRef50_Q5I3J8: Aec67	1.0153650735
+UniRef50_Q5I3J8: Aec67|g__Escherichia.s__Escherichia_coli	1.0153650735
+UniRef50_M1N3E7	1.0153441964
+UniRef50_M1N3E7|unclassified	1.0153441964
+UniRef50_A0A024YYF9	1.0152284264
+UniRef50_A0A024YYF9|unclassified	1.0152284264
+UniRef50_A6M2M2: NLP/P60 protein	1.0152284264
+UniRef50_A6M2M2: NLP/P60 protein|g__Clostridium.s__Clostridium_beijerinckii	1.0152284264
+UniRef50_T2EBG3: Cytochrome c family protein	1.0152284264
+UniRef50_T2EBG3: Cytochrome c family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0152284264
+UniRef50_E0DRL2: Transcriptional regulator	1.0152085752
+UniRef50_E0DRL2: Transcriptional regulator|unclassified	1.0152085752
+UniRef50_J3IJZ4	1.0151504811
+UniRef50_J3IJZ4|unclassified	1.0151504811
+UniRef50_S6HLX0: ADP-L-glycero-D-manno-heptose-6-epimerase	1.0151228443
+UniRef50_S6HLX0: ADP-L-glycero-D-manno-heptose-6-epimerase|unclassified	1.0151228443
+UniRef50_D6X6C9: Alpha-ketoglutarate decarboxylase (Fragment)	1.0148398637
+UniRef50_D6X6C9: Alpha-ketoglutarate decarboxylase (Fragment)|unclassified	1.0148398637
+UniRef50_E1VIV8	1.0147614271
+UniRef50_E1VIV8|unclassified	1.0147614271
+UniRef50_B7V1W7: Vanillate O-demethylase oxygenase subunit	1.0141987830
+UniRef50_B7V1W7: Vanillate O-demethylase oxygenase subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0141987830
+UniRef50_B9KSX5: Sporulation domain protein	1.0141987830
+UniRef50_B9KSX5: Sporulation domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.0141987830
+UniRef50_D6A365: Predicted protein	1.0141987830
+UniRef50_D6A365: Predicted protein|unclassified	1.0141987830
+UniRef50_I3TU69: Lincomycin resistance protein	1.0141987830
+UniRef50_I3TU69: Lincomycin resistance protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0141987830
+UniRef50_UPI000359B75F: PREDICTED: serine/arginine repetitive matrix protein 1-like	1.0141987830
+UniRef50_UPI000359B75F: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	1.0141987830
+UniRef50_U9LU89	1.0141987830
+UniRef50_U9LU89|unclassified	1.0141987830
+UniRef50_G5JK25	1.0140391163
+UniRef50_G5JK25|unclassified	1.0140391163
+UniRef50_G8LJ33	1.0138691717
+UniRef50_G8LJ33|unclassified	1.0138691717
+UniRef50_Q2Y5B3: Transposase	1.0138485023
+UniRef50_Q2Y5B3: Transposase|unclassified	1.0138485023
+UniRef50_K8AEM1: Phage tail fibers	1.0136766638
+UniRef50_K8AEM1: Phage tail fibers|unclassified	1.0136766638
+UniRef50_UPI0003509C48	1.0133452437
+UniRef50_UPI0003509C48|unclassified	1.0133452437
+UniRef50_A2WIW0	1.0133190292
+UniRef50_A2WIW0|unclassified	1.0133190292
+UniRef50_G8P9Q1	1.0132993845
+UniRef50_G8P9Q1|unclassified	1.0132993845
+UniRef50_A3U209	1.0132260813
+UniRef50_A3U209|unclassified	1.0132260813
+UniRef50_W6K8T3: Putative TRAP_TAXI: TRAP transporter solute receptor	1.0132228179
+UniRef50_W6K8T3: Putative TRAP_TAXI: TRAP transporter solute receptor|unclassified	1.0132228179
+UniRef50_UPI00034AA460: hypothetical protein	1.0131906816
+UniRef50_UPI00034AA460: hypothetical protein|unclassified	1.0131906816
+UniRef50_D5AVC8: Asparaginase	1.0131712259
+UniRef50_D5AVC8: Asparaginase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.0131712259
+UniRef50_E2Q4D8: IolC protein	1.0131712259
+UniRef50_E2Q4D8: IolC protein|g__Propionibacterium.s__Propionibacterium_acnes	1.0131712259
+UniRef50_K7S7N6: AXE1 multi-domain protein	1.0131712259
+UniRef50_K7S7N6: AXE1 multi-domain protein|g__Propionibacterium.s__Propionibacterium_acnes	1.0131712259
+UniRef50_UPI00029AA773: 3-deoxy-D-manno-octulosonic acid (KDO) 8-phosphate synthase	1.0129482427
+UniRef50_UPI00029AA773: 3-deoxy-D-manno-octulosonic acid (KDO) 8-phosphate synthase|unclassified	1.0129482427
+UniRef50_UPI00046EDA6C: transcriptional regulator, partial	1.0129067666
+UniRef50_UPI00046EDA6C: transcriptional regulator, partial|unclassified	1.0129067666
+UniRef50_W1DP76: Taurine transport system permease protein TauC	1.0128919353
+UniRef50_W1DP76: Taurine transport system permease protein TauC|unclassified	1.0128919353
+UniRef50_Q6FD39: Bifunctional protein	1.0127371447
+UniRef50_Q6FD39: Bifunctional protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.0127371447
+UniRef50_I1ADV6	1.0124664605
+UniRef50_I1ADV6|unclassified	1.0124664605
+UniRef50_S5YCW7: Transposase	1.0124383719
+UniRef50_S5YCW7: Transposase|unclassified	1.0124383719
+UniRef50_D5AU97: Cyclase/dehydrase family protein	1.0123334478
+UniRef50_D5AU97: Cyclase/dehydrase family protein|unclassified	1.0123334478
+UniRef50_E7PVM6: Streptococcal histidine triad protein	1.0121522295
+UniRef50_E7PVM6: Streptococcal histidine triad protein|g__Streptococcus.s__Streptococcus_agalactiae	1.0121522295
+UniRef50_F0VYG1: Cysteine desulfurase	1.0121457490
+UniRef50_F0VYG1: Cysteine desulfurase|g__Streptococcus.s__Streptococcus_agalactiae	1.0121457490
+UniRef50_G8VAR4: Bacterial extracellular solute-binding protein	1.0121457490
+UniRef50_G8VAR4: Bacterial extracellular solute-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	1.0121457490
+UniRef50_R5XFC2	1.0121457490
+UniRef50_R5XFC2|unclassified	1.0121457490
+UniRef50_UPI0003746BBE: hypothetical protein	1.0121457490
+UniRef50_UPI0003746BBE: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	1.0121457490
+UniRef50_UPI000363B12A: NADH dehydrogenase, partial	1.0118029581
+UniRef50_UPI000363B12A: NADH dehydrogenase, partial|unclassified	1.0118029581
+UniRef50_A0A018UNY8: Microcin C ABC transporter permease	1.0115055229
+UniRef50_A0A018UNY8: Microcin C ABC transporter permease|unclassified	1.0115055229
+UniRef50_UPI00034549EE: hypothetical protein	1.0114251631
+UniRef50_UPI00034549EE: hypothetical protein|unclassified	1.0114251631
+UniRef50_UPI00047A278A: hypothetical protein	1.0112175885
+UniRef50_UPI00047A278A: hypothetical protein|unclassified	1.0112175885
+UniRef50_D8BS45	1.0111295784
+UniRef50_D8BS45|unclassified	1.0111295784
+UniRef50_J4JDJ6: PF05787 domain protein	1.0111223458
+UniRef50_J4JDJ6: PF05787 domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	1.0111223458
+UniRef50_P52610: Flagellar motor switch protein FliG	1.0111223458
+UniRef50_P52610: Flagellar motor switch protein FliG|g__Clostridium.s__Clostridium_beijerinckii	1.0111223458
+UniRef50_E4YYM9: Whole genome shotgun assembly, allelic scaffold set, scaffold scaffoldA_1709 (Fragment)	1.0107386547
+UniRef50_E4YYM9: Whole genome shotgun assembly, allelic scaffold set, scaffold scaffoldA_1709 (Fragment)|unclassified	1.0107386547
+UniRef50_UPI00046F3524: hypothetical protein	1.0106788417
+UniRef50_UPI00046F3524: hypothetical protein|unclassified	1.0106788417
+UniRef50_UPI0004121463: hypothetical protein	1.0106506934
+UniRef50_UPI0004121463: hypothetical protein|unclassified	1.0106506934
+UniRef50_E3D3I4	1.0105467122
+UniRef50_E3D3I4|unclassified	1.0105467122
+UniRef50_J9GQF0: Heat shock protein 70 (Fragment)	1.0104443243
+UniRef50_J9GQF0: Heat shock protein 70 (Fragment)|unclassified	1.0104443243
+UniRef50_UPI0003B62817: chemotaxis protein CheY	1.0102257086
+UniRef50_UPI0003B62817: chemotaxis protein CheY|unclassified	1.0102257086
+UniRef50_UPI00047588DA: hypothetical protein, partial	1.0101225984
+UniRef50_UPI00047588DA: hypothetical protein, partial|unclassified	1.0101225984
+UniRef50_C5ZWF4: Peptidylarginine deiminase-related protein	1.0101010101
+UniRef50_C5ZWF4: Peptidylarginine deiminase-related protein|g__Helicobacter.s__Helicobacter_pylori	1.0101010101
+UniRef50_U1G770	1.0101010101
+UniRef50_U1G770|unclassified	1.0101010101
+UniRef50_R1CGH2	1.0100649261
+UniRef50_R1CGH2|unclassified	1.0100649261
+UniRef50_UPI000249446F: cellobiose phosphorylase	1.0100027303
+UniRef50_UPI000249446F: cellobiose phosphorylase|unclassified	1.0100027303
+UniRef50_E1JEY8	1.0100006369
+UniRef50_E1JEY8|unclassified	1.0100006369
+UniRef50_I3X7J2	1.0099444826
+UniRef50_I3X7J2|unclassified	1.0099444826
+UniRef50_D5QG08: Phosphoribosylformylglycinamidine synthase, purS	1.0097494705
+UniRef50_D5QG08: Phosphoribosylformylglycinamidine synthase, purS|unclassified	1.0097494705
+UniRef50_Q58289: Nitrogenase iron protein	1.0096936158
+UniRef50_Q58289: Nitrogenase iron protein|unclassified	1.0096936158
+UniRef50_P9WQ72: Phosphoserine aminotransferase	1.0090817356
+UniRef50_P9WQ72: Phosphoserine aminotransferase|g__Propionibacterium.s__Propionibacterium_acnes	1.0090817356
+UniRef50_T1B713: Excinuclease ABC subunit C (Fragment)	1.0090817356
+UniRef50_T1B713: Excinuclease ABC subunit C (Fragment)|unclassified	1.0090817356
+UniRef50_U3P882	1.0090817356
+UniRef50_U3P882|g__Propionibacterium.s__Propionibacterium_acnes	1.0090817356
+UniRef50_UPI00037DAE2C: hypothetical protein	1.0090378021
+UniRef50_UPI00037DAE2C: hypothetical protein|unclassified	1.0090378021
+UniRef50_UPI00023764BC: flagellar biosynthetic protein FliR, partial	1.0089694493
+UniRef50_UPI00023764BC: flagellar biosynthetic protein FliR, partial|unclassified	1.0089694493
+UniRef50_Q3JPN7	1.0088007220
+UniRef50_Q3JPN7|unclassified	1.0088007220
+UniRef50_L8H0U6	1.0087556409
+UniRef50_L8H0U6|unclassified	1.0087556409
+UniRef50_Q3ST27	1.0087211269
+UniRef50_Q3ST27|unclassified	1.0087211269
+UniRef50_A3U3D3: Plasma membrane H+-transporting two-sector ATPase, C subunit	1.0086753960
+UniRef50_A3U3D3: Plasma membrane H+-transporting two-sector ATPase, C subunit|unclassified	1.0086753960
+UniRef50_UPI00036951EF: hypothetical protein	1.0086451668
+UniRef50_UPI00036951EF: hypothetical protein|unclassified	1.0086451668
+UniRef50_A0A010QNG4: DnaJ domain protein	1.0086191122
+UniRef50_A0A010QNG4: DnaJ domain protein|unclassified	1.0086191122
+UniRef50_L1JAW1	1.0085261723
+UniRef50_L1JAW1|unclassified	1.0085261723
+UniRef50_B4R909	1.0085126654
+UniRef50_B4R909|unclassified	1.0085126654
+UniRef50_UPI00046D699D: hypothetical protein	1.0084932151
+UniRef50_UPI00046D699D: hypothetical protein|unclassified	1.0084932151
+UniRef50_A6LQ22	1.0083530569
+UniRef50_A6LQ22|g__Clostridium.s__Clostridium_beijerinckii	1.0083530569
+UniRef50_K0SVQ3	1.0082783304
+UniRef50_K0SVQ3|unclassified	1.0082783304
+UniRef50_A3PPP4	1.0080833407
+UniRef50_A3PPP4|unclassified	1.0080833407
+UniRef50_A0A059BDB4	1.0080645161
+UniRef50_A0A059BDB4|unclassified	1.0080645161
+UniRef50_A6Q5D2: Cytochrome b	1.0080645161
+UniRef50_A6Q5D2: Cytochrome b|g__Helicobacter.s__Helicobacter_pylori	1.0080645161
+UniRef50_G2LBD2	1.0080645161
+UniRef50_G2LBD2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0080645161
+UniRef50_M1N2U9	1.0080645161
+UniRef50_M1N2U9|g__Clostridium.s__Clostridium_beijerinckii	1.0080645161
+UniRef50_Q1GI78: Beta-N-acetylhexosaminidase	1.0080645161
+UniRef50_Q1GI78: Beta-N-acetylhexosaminidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.0080645161
+UniRef50_UPI0003941A9D: PREDICTED: serine/arginine repetitive matrix protein 2-like	1.0080645161
+UniRef50_UPI0003941A9D: PREDICTED: serine/arginine repetitive matrix protein 2-like|unclassified	1.0080645161
+UniRef50_W1VI99	1.0080645161
+UniRef50_W1VI99|unclassified	1.0080645161
+UniRef50_UPI0002886FB4: histidine ammonia-lyase	1.0080621950
+UniRef50_UPI0002886FB4: histidine ammonia-lyase|unclassified	1.0080621950
+UniRef50_L1M906: UPF0145 protein HMPREF9999_02345	1.0079604567
+UniRef50_L1M906: UPF0145 protein HMPREF9999_02345|unclassified	1.0079604567
+UniRef50_S6AXB4	1.0078502908
+UniRef50_S6AXB4|unclassified	1.0078502908
+UniRef50_I3X509	1.0077327182
+UniRef50_I3X509|unclassified	1.0077327182
+UniRef50_UPI0002E88EFE: hypothetical protein	1.0072542023
+UniRef50_UPI0002E88EFE: hypothetical protein|unclassified	1.0072542023
+UniRef50_K1ZGV2	1.0070563824
+UniRef50_K1ZGV2|unclassified	1.0070563824
+UniRef50_A6V1X7	1.0070493454
+UniRef50_A6V1X7|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0070493454
+UniRef50_B0V8I1	1.0070493454
+UniRef50_B0V8I1|g__Acinetobacter.s__Acinetobacter_baumannii	1.0070493454
+UniRef50_B6ZQQ2: Inner membrane protein YicO	1.0070493454
+UniRef50_B6ZQQ2: Inner membrane protein YicO|g__Escherichia.s__Escherichia_coli	1.0070493454
+UniRef50_Q4FRI0: Site-2 protease, Metallo peptidase, MEROPS family M50B	1.0070493454
+UniRef50_Q4FRI0: Site-2 protease, Metallo peptidase, MEROPS family M50B|g__Acinetobacter.s__Acinetobacter_baumannii	1.0070493454
+UniRef50_S9UZE8	1.0070493454
+UniRef50_S9UZE8|unclassified	1.0070493454
+UniRef50_Q6PII5-4: Isoform 4 of Hydroxyacylglutathione hydrolase-like protein	1.0070378851
+UniRef50_Q6PII5-4: Isoform 4 of Hydroxyacylglutathione hydrolase-like protein|unclassified	1.0070378851
+UniRef50_M9VD06: UvrD/REP helicase	1.0068845024
+UniRef50_M9VD06: UvrD/REP helicase|g__Propionibacterium.s__Propionibacterium_acnes	1.0068845024
+UniRef50_Q1GGF9: Endoribonuclease L-PSP	1.0068487835
+UniRef50_Q1GGF9: Endoribonuclease L-PSP|unclassified	1.0068487835
+UniRef50_UPI0004670206: NADH:ubiquinone oxidoreductase subunit J	1.0068417341
+UniRef50_UPI0004670206: NADH:ubiquinone oxidoreductase subunit J|unclassified	1.0068417341
+UniRef50_A7HVE4	1.0066143023
+UniRef50_A7HVE4|unclassified	1.0066143023
+UniRef50_J5L0G3: Chaperone protein HscA	1.0064973342
+UniRef50_J5L0G3: Chaperone protein HscA|unclassified	1.0064973342
+UniRef50_B2V2W5: Sensor histidine kinase	1.0062269883
+UniRef50_B2V2W5: Sensor histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	1.0062269883
+UniRef50_K9NMV4	1.0062171475
+UniRef50_K9NMV4|unclassified	1.0062171475
+UniRef50_S2WX32: Polyphosphate kinase	1.0062000123
+UniRef50_S2WX32: Polyphosphate kinase|g__Propionibacterium.s__Propionibacterium_acnes	1.0062000123
+UniRef50_UPI0003A09971: hypothetical protein	1.0060584115
+UniRef50_UPI0003A09971: hypothetical protein|unclassified	1.0060584115
+UniRef50_W9UYG1	1.0060362173
+UniRef50_W9UYG1|unclassified	1.0060362173
+UniRef50_UPI00047B48B0: GNAT family acetyltransferase	1.0058847634
+UniRef50_UPI00047B48B0: GNAT family acetyltransferase|unclassified	1.0058847634
+UniRef50_M9R1X4	1.0058137861
+UniRef50_M9R1X4|unclassified	1.0058137861
+UniRef50_W7X555	1.0057714607
+UniRef50_W7X555|unclassified	1.0057714607
+UniRef50_W8YQ13	1.0057094560
+UniRef50_W8YQ13|unclassified	1.0057094560
+UniRef50_UPI00036F62C9: hypothetical protein	1.0055037164
+UniRef50_UPI00036F62C9: hypothetical protein|unclassified	1.0055037164
+UniRef50_A1B945: Glutamate racemase	1.0054696953
+UniRef50_A1B945: Glutamate racemase|unclassified	1.0054696953
+UniRef50_UPI0003B57928: MIP family channel protein	1.0054005948
+UniRef50_UPI0003B57928: MIP family channel protein|unclassified	1.0054005948
+UniRef50_A0A022FMT2	1.0053848050
+UniRef50_A0A022FMT2|unclassified	1.0053848050
+UniRef50_UPI0003790149: hypothetical protein, partial	1.0053352118
+UniRef50_UPI0003790149: hypothetical protein, partial|unclassified	1.0053352118
+UniRef50_W3V566	1.0052378570
+UniRef50_W3V566|unclassified	1.0052378570
+UniRef50_UPI00036C1AF8: hypothetical protein	1.0052051766
+UniRef50_UPI00036C1AF8: hypothetical protein|unclassified	1.0052051766
+UniRef50_UPI00035DB610: hypothetical protein	1.0051164040
+UniRef50_UPI00035DB610: hypothetical protein|unclassified	1.0051164040
+UniRef50_UPI00047E33B4: hypothetical protein	1.0050868767
+UniRef50_UPI00047E33B4: hypothetical protein|unclassified	1.0050868767
+UniRef50_G0DT71	1.0050251256
+UniRef50_G0DT71|g__Propionibacterium.s__Propionibacterium_acnes	1.0050251256
+UniRef50_Q17WJ2: Lipid-A-disaccharide synthase	1.0050251256
+UniRef50_Q17WJ2: Lipid-A-disaccharide synthase|g__Helicobacter.s__Helicobacter_pylori	1.0050251256
+UniRef50_A8B5Y9	1.0049792310
+UniRef50_A8B5Y9|unclassified	1.0049792310
+UniRef50_W0YYS0	1.0049673203
+UniRef50_W0YYS0|unclassified	1.0049673203
+UniRef50_Q9RZS9: GGDEF family protein	1.0048368363
+UniRef50_Q9RZS9: GGDEF family protein|unclassified	1.0048368363
+UniRef50_UPI0003B4B358: hypothetical protein	1.0046376161
+UniRef50_UPI0003B4B358: hypothetical protein|unclassified	1.0046376161
+UniRef50_W0WHL8	1.0046346276
+UniRef50_W0WHL8|unclassified	1.0046346276
+UniRef50_UPI0003B343E5: imidazoleglycerol-phosphate dehydratase	1.0046068544
+UniRef50_UPI0003B343E5: imidazoleglycerol-phosphate dehydratase|unclassified	1.0046068544
+UniRef50_UPI0003B468BE: sugar ABC transporter permease	1.0044689175
+UniRef50_UPI0003B468BE: sugar ABC transporter permease|unclassified	1.0044689175
+UniRef50_UPI000255571F: ABC transporter	1.0040865881
+UniRef50_UPI000255571F: ABC transporter|unclassified	1.0040865881
+UniRef50_E2XEG3: Glutamate decarboxylase isozyme	1.0040160643
+UniRef50_E2XEG3: Glutamate decarboxylase isozyme|unclassified	1.0040160643
+UniRef50_S1T2A8	1.0039371178
+UniRef50_S1T2A8|unclassified	1.0039371178
+UniRef50_A0A035W1W9: Replication initiation protein	1.0039366657
+UniRef50_A0A035W1W9: Replication initiation protein|unclassified	1.0039366657
+UniRef50_UPI0004743FF7: ArsR family transcriptional regulator	1.0039101167
+UniRef50_UPI0004743FF7: ArsR family transcriptional regulator|unclassified	1.0039101167
+UniRef50_W0YMY3	1.0035425376
+UniRef50_W0YMY3|unclassified	1.0035425376
+UniRef50_Q3STH8	1.0035368318
+UniRef50_Q3STH8|unclassified	1.0035368318
+UniRef50_UPI0002378354: AraC family transcriptional regulator	1.0034585032
+UniRef50_UPI0002378354: AraC family transcriptional regulator|unclassified	1.0034585032
+UniRef50_K2DT16	1.0033722788
+UniRef50_K2DT16|unclassified	1.0033722788
+UniRef50_UPI00036E741C: hypothetical protein	1.0031672379
+UniRef50_UPI00036E741C: hypothetical protein|unclassified	1.0031672379
+UniRef50_L3SKH8	1.0030090271
+UniRef50_L3SKH8|g__Escherichia.s__Escherichia_coli	1.0030090271
+UniRef50_M1MMR7	1.0030090271
+UniRef50_M1MMR7|g__Clostridium.s__Clostridium_beijerinckii	1.0030090271
+UniRef50_Q15PR2	1.0030090271
+UniRef50_Q15PR2|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0030090271
+UniRef50_Q1J2B0: Peptidase M29, aminopeptidase II	1.0030090271
+UniRef50_Q1J2B0: Peptidase M29, aminopeptidase II|g__Deinococcus.s__Deinococcus_radiodurans	1.0030090271
+UniRef50_C7J6A8: Os08g0547050 protein	1.0027785474
+UniRef50_C7J6A8: Os08g0547050 protein|unclassified	1.0027785474
+UniRef50_C8X2V8: Anti-ECFsigma factor, ChrR	1.0027712300
+UniRef50_C8X2V8: Anti-ECFsigma factor, ChrR|unclassified	1.0027712300
+UniRef50_M9RBK8	1.0027668453
+UniRef50_M9RBK8|unclassified	1.0027668453
+UniRef50_S3ACE1	1.0027602254
+UniRef50_S3ACE1|unclassified	1.0027602254
+UniRef50_A9N1Y2	1.0026858457
+UniRef50_A9N1Y2|unclassified	1.0026858457
+UniRef50_A8BSP6	1.0017451173
+UniRef50_A8BSP6|unclassified	1.0017451173
+UniRef50_A4WVT3: Transposase, IS4 family	1.0016928953
+UniRef50_A4WVT3: Transposase, IS4 family|unclassified	1.0016928953
+UniRef50_UPI0003B67BBB: 23S rRNA/tRNA pseudouridine synthase A	1.0016850961
+UniRef50_UPI0003B67BBB: 23S rRNA/tRNA pseudouridine synthase A|unclassified	1.0016850961
+UniRef50_UPI0004014E85: hypothetical protein	1.0015245835
+UniRef50_UPI0004014E85: hypothetical protein|unclassified	1.0015245835
+UniRef50_R7QX01: Exodeoxyribonuclease 7 large subunit	1.0015003471
+UniRef50_R7QX01: Exodeoxyribonuclease 7 large subunit|unclassified	1.0015003471
+UniRef50_UPI000289DAB7: ABC transporter	1.0014829909
+UniRef50_UPI000289DAB7: ABC transporter|unclassified	1.0014829909
+UniRef50_UPI00037170BA: hypothetical protein, partial	1.0013500836
+UniRef50_UPI00037170BA: hypothetical protein, partial|unclassified	1.0013500836
+UniRef50_K5W0W9	1.0012588779
+UniRef50_K5W0W9|unclassified	1.0012588779
+UniRef50_UPI00036B0C57: hypothetical protein, partial	1.0011954942
+UniRef50_UPI00036B0C57: hypothetical protein, partial|unclassified	1.0011954942
+UniRef50_Q48S64: R28 protein	1.0011582857
+UniRef50_Q48S64: R28 protein|g__Streptococcus.s__Streptococcus_agalactiae	1.0011582857
+UniRef50_B9TBH2	1.0011508753
+UniRef50_B9TBH2|unclassified	1.0011508753
+UniRef50_Z2DMD6: Protein hupE	1.0010887052
+UniRef50_Z2DMD6: Protein hupE|unclassified	1.0010887052
+UniRef50_A1R863: tRNA-specific 2-thiouridylase MnmA	1.0010010010
+UniRef50_A1R863: tRNA-specific 2-thiouridylase MnmA|g__Propionibacterium.s__Propionibacterium_acnes	1.0010010010
+UniRef50_A3VGJ4	1.0010010010
+UniRef50_A3VGJ4|unclassified	1.0010010010
+UniRef50_A6LTD5: Lipoprotein, putative	1.0010010010
+UniRef50_A6LTD5: Lipoprotein, putative|g__Clostridium.s__Clostridium_beijerinckii	1.0010010010
+UniRef50_C1DPL2: Glycosyl transferase, group 1 protein	1.0010010010
+UniRef50_C1DPL2: Glycosyl transferase, group 1 protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	1.0010010010
+UniRef50_C6EGE1: General secretory pathway component, cryptic	1.0010010010
+UniRef50_C6EGE1: General secretory pathway component, cryptic|g__Escherichia.s__Escherichia_coli	1.0010010010
+UniRef50_J3TFE7: Arabinose efflux permease family protein	1.0010010010
+UniRef50_J3TFE7: Arabinose efflux permease family protein|g__Propionibacterium.s__Propionibacterium_acnes	1.0010010010
+UniRef50_A7M2I7	1.0007785201
+UniRef50_A7M2I7|unclassified	1.0007785201
+UniRef50_UPI0003760C74: hypothetical protein, partial	1.0007660667
+UniRef50_UPI0003760C74: hypothetical protein, partial|unclassified	1.0007660667
+UniRef50_V9VU16: Regulator	1.0007000258
+UniRef50_V9VU16: Regulator|unclassified	1.0007000258
+UniRef50_W7SZX8	1.0004915511
+UniRef50_W7SZX8|unclassified	1.0004915511
+UniRef50_W4SJE9	1.0002683864
+UniRef50_W4SJE9|unclassified	1.0002683864
+UniRef50_B4V1W5: ATP/GTP-binding protein	1.0000512386
+UniRef50_B4V1W5: ATP/GTP-binding protein|unclassified	1.0000512386
+UniRef50_D5AUK2: Transcriptional regulator, GntR family	1.0000000000
+UniRef50_D5AUK2: Transcriptional regulator, GntR family|g__Rhodobacter.s__Rhodobacter_sphaeroides	1.0000000000
+UniRef50_H0B7B6	1.0000000000
+UniRef50_H0B7B6|unclassified	1.0000000000
+UniRef50_J9NZ26	1.0000000000
+UniRef50_J9NZ26|unclassified	1.0000000000
+UniRef50_K9XMG5: Amidohydrolase	1.0000000000
+UniRef50_K9XMG5: Amidohydrolase|g__Acinetobacter.s__Acinetobacter_baumannii	1.0000000000
+UniRef50_O24982: Apolipoprotein N-acyltransferase	1.0000000000
+UniRef50_O24982: Apolipoprotein N-acyltransferase|g__Helicobacter.s__Helicobacter_pylori	1.0000000000
+UniRef50_R4X5X2: Cassette chromosome recombinase A1	1.0000000000
+UniRef50_R4X5X2: Cassette chromosome recombinase A1|g__Staphylococcus.s__Staphylococcus_epidermidis	1.0000000000
+UniRef50_Q98KR4: NADH-quinone oxidoreductase subunit I	0.9999076753
+UniRef50_Q98KR4: NADH-quinone oxidoreductase subunit I|unclassified	0.9999076753
+UniRef50_X1LWS5: Marine sediment metagenome DNA, contig: S06H3_S08218 (Fragment)	0.9998685711
+UniRef50_X1LWS5: Marine sediment metagenome DNA, contig: S06H3_S08218 (Fragment)|unclassified	0.9998685711
+UniRef50_C3I552	0.9998495575
+UniRef50_C3I552|unclassified	0.9998495575
+UniRef50_Q9RU10: Glutamate racemase	0.9998374846
+UniRef50_Q9RU10: Glutamate racemase|g__Deinococcus.s__Deinococcus_radiodurans	0.9560229446
+UniRef50_Q9RU10: Glutamate racemase|unclassified	0.0438145400
+UniRef50_Q9CBQ2: Ribonucleoside-diphosphate reductase subunit beta	0.9997862504
+UniRef50_Q9CBQ2: Ribonucleoside-diphosphate reductase subunit beta|unclassified	0.9997862504
+UniRef50_UPI000377C3F1: resolvase	0.9997097668
+UniRef50_UPI000377C3F1: resolvase|unclassified	0.9997097668
+UniRef50_W1XYM6: DNA replication and repair protein RecF (Fragment)	0.9993524438
+UniRef50_W1XYM6: DNA replication and repair protein RecF (Fragment)|unclassified	0.9993524438
+UniRef50_W1EIN7	0.9993127745
+UniRef50_W1EIN7|unclassified	0.9993127745
+UniRef50_B0VUW8: Membrane-bound lytic murein transglycosylase B	0.9990009990
+UniRef50_B0VUW8: Membrane-bound lytic murein transglycosylase B|g__Acinetobacter.s__Acinetobacter_baumannii	0.9990009990
+UniRef50_F0KLF9	0.9990009990
+UniRef50_F0KLF9|g__Acinetobacter.s__Acinetobacter_baumannii	0.9990009990
+UniRef50_O59428	0.9987846038
+UniRef50_O59428|unclassified	0.9987846038
+UniRef50_W7CBC4: Arsenate reductase family protein	0.9987769637
+UniRef50_W7CBC4: Arsenate reductase family protein|unclassified	0.9987769637
+UniRef50_A0A037ZQ00: Phosphopantetheine-binding protein	0.9987340572
+UniRef50_A0A037ZQ00: Phosphopantetheine-binding protein|unclassified	0.9987340572
+UniRef50_M5AA80: Gyrase B (Fragment)	0.9986755457
+UniRef50_M5AA80: Gyrase B (Fragment)|unclassified	0.9986755457
+UniRef50_S2KBN0	0.9985589610
+UniRef50_S2KBN0|unclassified	0.9985589610
+UniRef50_T1T0E7	0.9983839447
+UniRef50_T1T0E7|unclassified	0.9983839447
+UniRef50_G2C0N8	0.9982825783
+UniRef50_G2C0N8|unclassified	0.9982825783
+UniRef50_A4XUJ9: Membrane protein-like protein	0.9980958238
+UniRef50_A4XUJ9: Membrane protein-like protein|unclassified	0.9980958238
+UniRef50_E2SFH7	0.9980915938
+UniRef50_E2SFH7|unclassified	0.9980915938
+UniRef50_UPI00016C4567: chemotaxis protein methyltransferase	0.9980179911
+UniRef50_UPI00016C4567: chemotaxis protein methyltransferase|unclassified	0.9980179911
+UniRef50_Q9I492	0.9980039920
+UniRef50_Q9I492|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9980039920
+UniRef50_Q9RXS7: Endoglucanase, putative	0.9980039920
+UniRef50_Q9RXS7: Endoglucanase, putative|g__Deinococcus.s__Deinococcus_radiodurans	0.9980039920
+UniRef50_S5R2A4	0.9980039920
+UniRef50_S5R2A4|g__Streptococcus.s__Streptococcus_agalactiae	0.9980039920
+UniRef50_W7ST93	0.9980039920
+UniRef50_W7ST93|unclassified	0.9980039920
+UniRef50_UPI000313AE93: hypothetical protein	0.9978080536
+UniRef50_UPI000313AE93: hypothetical protein|unclassified	0.9978080536
+UniRef50_A3V850	0.9977955002
+UniRef50_A3V850|unclassified	0.9977955002
+UniRef50_Q0G4L4	0.9977213939
+UniRef50_Q0G4L4|unclassified	0.9977213939
+UniRef50_M7XVH9	0.9976448626
+UniRef50_M7XVH9|unclassified	0.9976448626
+UniRef50_UPI000477E9DF: thioredoxin	0.9975779992
+UniRef50_UPI000477E9DF: thioredoxin|unclassified	0.9975779992
+UniRef50_Q2BKH5: UPF0260 protein MED92_01896	0.9973921502
+UniRef50_Q2BKH5: UPF0260 protein MED92_01896|unclassified	0.9973921502
+UniRef50_UPI0003595AF6	0.9973231980
+UniRef50_UPI0003595AF6|unclassified	0.9973231980
+UniRef50_H4PPD3: NADP-dependent dehydrogenase domain protein	0.9973164517
+UniRef50_H4PPD3: NADP-dependent dehydrogenase domain protein|unclassified	0.9973164517
+UniRef50_S4YEC3	0.9972549835
+UniRef50_S4YEC3|unclassified	0.9972549835
+UniRef50_M7DU32: Transposase	0.9971874805
+UniRef50_M7DU32: Transposase|unclassified	0.9971874805
+UniRef50_Q05HZ1	0.9971546759
+UniRef50_Q05HZ1|unclassified	0.9971546759
+UniRef50_A9M387: Adenosylmethionine-8-amino-7-oxononanoate aminotransferase	0.9970089731
+UniRef50_A9M387: Adenosylmethionine-8-amino-7-oxononanoate aminotransferase|g__Neisseria.s__Neisseria_meningitidis	0.9970089731
+UniRef50_K0ECU0: CreA protein	0.9969756562
+UniRef50_K0ECU0: CreA protein|unclassified	0.9969756562
+UniRef50_Q89WH6: Blr0711 protein	0.9968119276
+UniRef50_Q89WH6: Blr0711 protein|unclassified	0.9968119276
+UniRef50_UPI00047624EF: DNA recombination protein RecAprecursor	0.9966853881
+UniRef50_UPI00047624EF: DNA recombination protein RecAprecursor|unclassified	0.9966853881
+UniRef50_UPI00032AF5D9: PREDICTED: translation initiation factor IF-2-like	0.9965773893
+UniRef50_UPI00032AF5D9: PREDICTED: translation initiation factor IF-2-like|unclassified	0.9965773893
+UniRef50_B6JF70	0.9964000975
+UniRef50_B6JF70|unclassified	0.9964000975
+UniRef50_D5TQG4: NADH dehydrogenase subunit C	0.9961140290
+UniRef50_D5TQG4: NADH dehydrogenase subunit C|unclassified	0.9961140290
+UniRef50_W1GSA2: Glycolate utilization operon transcriptional activator GlcC	0.9960897919
+UniRef50_W1GSA2: Glycolate utilization operon transcriptional activator GlcC|unclassified	0.9960897919
+UniRef50_UPI00030D61DF: hypothetical protein	0.9960808634
+UniRef50_UPI00030D61DF: hypothetical protein|unclassified	0.9960808634
+UniRef50_R9ZFV2: Protein kinase	0.9960159363
+UniRef50_R9ZFV2: Protein kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9960159363
+UniRef50_K1TR00: Type III restriction protein res subunit (Fragment)	0.9956672182
+UniRef50_K1TR00: Type III restriction protein res subunit (Fragment)|unclassified	0.9956672182
+UniRef50_G8WU50	0.9956490543
+UniRef50_G8WU50|unclassified	0.9956490543
+UniRef50_P50125: O-acetylhomoserine (thiol)-lyase	0.9953410148
+UniRef50_P50125: O-acetylhomoserine (thiol)-lyase|unclassified	0.9953410148
+UniRef50_E8RM00: HipA N-terminal domain protein	0.9952119897
+UniRef50_E8RM00: HipA N-terminal domain protein|unclassified	0.9952119897
+UniRef50_UPI000368DEE4: hypothetical protein	0.9951319599
+UniRef50_UPI000368DEE4: hypothetical protein|unclassified	0.9951319599
+UniRef50_A3MA77: A/G specific adenine glycosylase	0.9950248756
+UniRef50_A3MA77: A/G specific adenine glycosylase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9950248756
+UniRef50_A6LQU3: Integral membrane sensor signal transduction histidine kinase	0.9950248756
+UniRef50_A6LQU3: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	0.9950248756
+UniRef50_Q1J087: Inositol monophosphatase	0.9950248756
+UniRef50_Q1J087: Inositol monophosphatase|g__Deinococcus.s__Deinococcus_radiodurans	0.9950248756
+UniRef50_B9C6Q9	0.9949288870
+UniRef50_B9C6Q9|unclassified	0.9949288870
+UniRef50_J6UEG7	0.9949019934
+UniRef50_J6UEG7|unclassified	0.9949019934
+UniRef50_UPI00036D46C0: hypothetical protein	0.9948960042
+UniRef50_UPI00036D46C0: hypothetical protein|unclassified	0.9948960042
+UniRef50_D2ZNJ0	0.9947713996
+UniRef50_D2ZNJ0|unclassified	0.9947713996
+UniRef50_N7SPJ2	0.9947376002
+UniRef50_N7SPJ2|unclassified	0.9947376002
+UniRef50_UPI000374B951: hypothetical protein, partial	0.9947348128
+UniRef50_UPI000374B951: hypothetical protein, partial|unclassified	0.9947348128
+UniRef50_K2GNH6	0.9944605899
+UniRef50_K2GNH6|unclassified	0.9944605899
+UniRef50_F3CGV6: Putative lipoprotein (Fragment)	0.9944227067
+UniRef50_F3CGV6: Putative lipoprotein (Fragment)|unclassified	0.9944227067
+UniRef50_V5ZJS4: Maltose regulon regulatory protein MalI	0.9943953806
+UniRef50_V5ZJS4: Maltose regulon regulatory protein MalI|unclassified	0.9943953806
+UniRef50_UPI00037525E2: hypothetical protein	0.9943420122
+UniRef50_UPI00037525E2: hypothetical protein|unclassified	0.9943420122
+UniRef50_Z7GWH8	0.9941945750
+UniRef50_Z7GWH8|unclassified	0.9941945750
+UniRef50_UPI0003B4E400: chromophore lyase	0.9941664288
+UniRef50_UPI0003B4E400: chromophore lyase|unclassified	0.9941664288
+UniRef50_UPI000462977B: histidine kinase	0.9941511922
+UniRef50_UPI000462977B: histidine kinase|unclassified	0.9941511922
+UniRef50_UPI00016B1DBC: polyketide synthase, type I, partial	0.9941177099
+UniRef50_UPI00016B1DBC: polyketide synthase, type I, partial|unclassified	0.9941177099
+UniRef50_W5XIQ1: Transcriptional repressor NrdR	0.9940991362
+UniRef50_W5XIQ1: Transcriptional repressor NrdR|unclassified	0.9940991362
+UniRef50_Q4EE61: Transcriptional regulator, PadR family	0.9940931468
+UniRef50_Q4EE61: Transcriptional regulator, PadR family|unclassified	0.9940931468
+UniRef50_C6S564: ATPase involved in chromosome partitioning	0.9940357853
+UniRef50_C6S564: ATPase involved in chromosome partitioning|g__Neisseria.s__Neisseria_meningitidis	0.9940357853
+UniRef50_I2DH65	0.9940357853
+UniRef50_I2DH65|g__Helicobacter.s__Helicobacter_pylori	0.9940357853
+UniRef50_I4D2I9: Calcium/proton exchanger Cax	0.9940357853
+UniRef50_I4D2I9: Calcium/proton exchanger Cax|g__Clostridium.s__Clostridium_beijerinckii	0.9940357853
+UniRef50_U6GQC6	0.9940357853
+UniRef50_U6GQC6|unclassified	0.9940357853
+UniRef50_UPI000219341E: amino acid adenylation domain-containing protein, partial	0.9940357853
+UniRef50_UPI000219341E: amino acid adenylation domain-containing protein, partial|unclassified	0.9940357853
+UniRef50_UPI0000165EEC: peptide ABC transporter, periplasmic peptide-binding protein	0.9940198668
+UniRef50_UPI0000165EEC: peptide ABC transporter, periplasmic peptide-binding protein|g__Deinococcus.s__Deinococcus_radiodurans	0.9319664492
+UniRef50_UPI0000165EEC: peptide ABC transporter, periplasmic peptide-binding protein|unclassified	0.0620534176
+UniRef50_UPI0003B445FF: AsnC family transcriptional regulator	0.9939319045
+UniRef50_UPI0003B445FF: AsnC family transcriptional regulator|unclassified	0.9939319045
+UniRef50_B6ICF9: TraW protein	0.9938541803
+UniRef50_B6ICF9: TraW protein|unclassified	0.9938541803
+UniRef50_Q2RX27: Dihydroorotate dehydrogenase (quinone)	0.9938374086
+UniRef50_Q2RX27: Dihydroorotate dehydrogenase (quinone)|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9532888465
+UniRef50_Q2RX27: Dihydroorotate dehydrogenase (quinone)|unclassified	0.0405485621
+UniRef50_W9TBD1: Putative lipoprotein	0.9937888199
+UniRef50_W9TBD1: Putative lipoprotein|unclassified	0.9937888199
+UniRef50_UPI00045E0027: PREDICTED: serine/arginine repetitive matrix protein 1-like isoform X1	0.9934463427
+UniRef50_UPI00045E0027: PREDICTED: serine/arginine repetitive matrix protein 1-like isoform X1|unclassified	0.9934463427
+UniRef50_F6BZ95	0.9932801667
+UniRef50_F6BZ95|unclassified	0.9932801667
+UniRef50_Q31HL9: Chemotaxis response regulator protein-glutamate methylesterase	0.9932773444
+UniRef50_Q31HL9: Chemotaxis response regulator protein-glutamate methylesterase|unclassified	0.9932773444
+UniRef50_W8YTH9: Genomic scaffold, Bacillus_thuringiensis_DB27_chromosome_scaffold01	0.9932144710
+UniRef50_W8YTH9: Genomic scaffold, Bacillus_thuringiensis_DB27_chromosome_scaffold01|unclassified	0.9932144710
+UniRef50_H0SY03	0.9931476330
+UniRef50_H0SY03|unclassified	0.9931476330
+UniRef50_A8JHZ2: Predicted protein	0.9931156015
+UniRef50_A8JHZ2: Predicted protein|unclassified	0.9931156015
+UniRef50_A9MAP0: Nicotinate-nucleotide--dimethylbenzimidazole phosphoribosyltransferase	0.9930486594
+UniRef50_A9MAP0: Nicotinate-nucleotide--dimethylbenzimidazole phosphoribosyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9930486594
+UniRef50_Q6F700	0.9928749056
+UniRef50_Q6F700|unclassified	0.9928749056
+UniRef50_UPI000379175B: hypothetical protein	0.9927962128
+UniRef50_UPI000379175B: hypothetical protein|unclassified	0.9927962128
+UniRef50_L2T6M0: Phenol hydroxylase (Fragment)	0.9927656643
+UniRef50_L2T6M0: Phenol hydroxylase (Fragment)|unclassified	0.9927656643
+UniRef50_UPI0003B3D527: alkylhydroperoxidase	0.9926798919
+UniRef50_UPI0003B3D527: alkylhydroperoxidase|unclassified	0.9926798919
+UniRef50_UPI00047B47FE: 50S ribosomal protein L31 type B	0.9922559681
+UniRef50_UPI00047B47FE: 50S ribosomal protein L31 type B|unclassified	0.9922559681
+UniRef50_UPI00047DAEEB: hypothetical protein	0.9921811120
+UniRef50_UPI00047DAEEB: hypothetical protein|unclassified	0.9921811120
+UniRef50_D4HBG9: Zinc-binding alcohol dehydrogenase family protein	0.9920634921
+UniRef50_D4HBG9: Zinc-binding alcohol dehydrogenase family protein|g__Propionibacterium.s__Propionibacterium_acnes	0.9920634921
+UniRef50_X2HW61: Iron ABC transporter substrate-binding protein	0.9920634921
+UniRef50_X2HW61: Iron ABC transporter substrate-binding protein|g__Helicobacter.s__Helicobacter_pylori	0.9920634921
+UniRef50_Q9RZ45	0.9919894779
+UniRef50_Q9RZ45|unclassified	0.9919894779
+UniRef50_W8RPW9	0.9918468521
+UniRef50_W8RPW9|unclassified	0.9918468521
+UniRef50_K0X1J2	0.9918130582
+UniRef50_K0X1J2|unclassified	0.9918130582
+UniRef50_D7FE46: RBL01243	0.9917302612
+UniRef50_D7FE46: RBL01243|g__Helicobacter.s__Helicobacter_pylori	0.9917302612
+UniRef50_UPI00039D73C8: hypothetical protein	0.9914077991
+UniRef50_UPI00039D73C8: hypothetical protein|unclassified	0.9914077991
+UniRef50_UPI000455D09C: lamb YcsF family protein	0.9911116547
+UniRef50_UPI000455D09C: lamb YcsF family protein|unclassified	0.9911116547
+UniRef50_B2V197: Helix-turn-helix domain protein	0.9910802775
+UniRef50_B2V197: Helix-turn-helix domain protein|g__Clostridium.s__Clostridium_beijerinckii	0.9910802775
+UniRef50_G8PBV9: PTS system, lactose/cellobiose IIC component family protein	0.9910802775
+UniRef50_G8PBV9: PTS system, lactose/cellobiose IIC component family protein|g__Clostridium.s__Clostridium_beijerinckii	0.9910802775
+UniRef50_Q0RPF6: GTPase Obg	0.9910802775
+UniRef50_Q0RPF6: GTPase Obg|g__Propionibacterium.s__Propionibacterium_acnes	0.9910802775
+UniRef50_J0ZP55	0.9906421418
+UniRef50_J0ZP55|unclassified	0.9906421418
+UniRef50_UPI000225FA76: putative transposase	0.9905197916
+UniRef50_UPI000225FA76: putative transposase|unclassified	0.9905197916
+UniRef50_UPI000462853E: hypothetical protein, partial	0.9904340688
+UniRef50_UPI000462853E: hypothetical protein, partial|unclassified	0.9904340688
+UniRef50_UPI0004679B1F: MULTISPECIES: hypothetical protein	0.9903546916
+UniRef50_UPI0004679B1F: MULTISPECIES: hypothetical protein|unclassified	0.9903546916
+UniRef50_X7FA63: Flagellar basal body rod protein FlgB	0.9903332133
+UniRef50_X7FA63: Flagellar basal body rod protein FlgB|unclassified	0.9903332133
+UniRef50_A6LPF3: Integral membrane sensor signal transduction histidine kinase	0.9900990099
+UniRef50_A6LPF3: Integral membrane sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	0.9900990099
+UniRef50_S1T3T7	0.9900990099
+UniRef50_S1T3T7|unclassified	0.9900990099
+UniRef50_UPI00047295A1: hypothetical protein, partial	0.9900623794
+UniRef50_UPI00047295A1: hypothetical protein, partial|unclassified	0.9900623794
+UniRef50_Q3KK43	0.9899070322
+UniRef50_Q3KK43|unclassified	0.9899070322
+UniRef50_Q9X5M1: Diaminopimelate decarboxylase	0.9897984736
+UniRef50_Q9X5M1: Diaminopimelate decarboxylase|g__Propionibacterium.s__Propionibacterium_acnes	0.9532888465
+UniRef50_Q9X5M1: Diaminopimelate decarboxylase|unclassified	0.0365096270
+UniRef50_UPI000346E2F6: hypothetical protein	0.9897493290
+UniRef50_UPI000346E2F6: hypothetical protein|unclassified	0.9897493290
+UniRef50_W7W9I9	0.9897098521
+UniRef50_W7W9I9|unclassified	0.9897098521
+UniRef50_B7IFM5: Ribose-phosphate pyrophosphokinase	0.9897048774
+UniRef50_B7IFM5: Ribose-phosphate pyrophosphokinase|unclassified	0.9897048774
+UniRef50_K2AEY0	0.9894718441
+UniRef50_K2AEY0|unclassified	0.9894718441
+UniRef50_UPI00047C6DBD: hypothetical protein	0.9893853396
+UniRef50_UPI00047C6DBD: hypothetical protein|unclassified	0.9893853396
+UniRef50_B2EBX5	0.9893777536
+UniRef50_B2EBX5|unclassified	0.9893777536
+UniRef50_N6UWC7	0.9893278483
+UniRef50_N6UWC7|unclassified	0.9893278483
+UniRef50_Q0VNL5: Truncated transposase	0.9892138370
+UniRef50_Q0VNL5: Truncated transposase|unclassified	0.9892138370
+UniRef50_B9KKY6: D-alanyl-D-alanine carboxypeptidase/D-alanyl-D-alanine-endopeptidase	0.9891196835
+UniRef50_B9KKY6: D-alanyl-D-alanine carboxypeptidase/D-alanyl-D-alanine-endopeptidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9891196835
+UniRef50_E2Q1E5: Beta-ketoadipyl-CoA thiolase	0.9891196835
+UniRef50_E2Q1E5: Beta-ketoadipyl-CoA thiolase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9891196835
+UniRef50_G7M2L7: Electron transport complex subunit D	0.9891196835
+UniRef50_G7M2L7: Electron transport complex subunit D|g__Clostridium.s__Clostridium_beijerinckii	0.9891196835
+UniRef50_M9XAR7: 2-nitropropane dioxygenase	0.9891196835
+UniRef50_M9XAR7: 2-nitropropane dioxygenase|g__Deinococcus.s__Deinococcus_radiodurans	0.9891196835
+UniRef50_Q88C44: Transcriptional regulator, AraC family	0.9891196835
+UniRef50_Q88C44: Transcriptional regulator, AraC family|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9891196835
+UniRef50_R6BXV0	0.9891196835
+UniRef50_R6BXV0|g__Clostridium.s__Clostridium_beijerinckii	0.9891196835
+UniRef50_L4JPN3: Protein ves	0.9888957959
+UniRef50_L4JPN3: Protein ves|unclassified	0.9888957959
+UniRef50_F0A259	0.9888642877
+UniRef50_F0A259|unclassified	0.9888642877
+UniRef50_L6YLT0: Pheromone autoinducer 2 transporter	0.9888332094
+UniRef50_L6YLT0: Pheromone autoinducer 2 transporter|unclassified	0.9888332094
+UniRef50_UPI0003B4D744: ribosome maturation factor RimP	0.9887870717
+UniRef50_UPI0003B4D744: ribosome maturation factor RimP|unclassified	0.9887870717
+UniRef50_UPI00036CD191: hypothetical protein	0.9884630710
+UniRef50_UPI00036CD191: hypothetical protein|unclassified	0.9884630710
+UniRef50_I1PAM6	0.9884346034
+UniRef50_I1PAM6|unclassified	0.9884346034
+UniRef50_A1B500: Peptidase M23B	0.9882701511
+UniRef50_A1B500: Peptidase M23B|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9285051068
+UniRef50_A1B500: Peptidase M23B|unclassified	0.0597650443
+UniRef50_A4WU75: Urea amidolyase related protein	0.9881422925
+UniRef50_A4WU75: Urea amidolyase related protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9881422925
+UniRef50_G5JKZ2	0.9881422925
+UniRef50_G5JKZ2|unclassified	0.9881422925
+UniRef50_Q9RSF6: Sun protein, putative	0.9881422925
+UniRef50_Q9RSF6: Sun protein, putative|g__Deinococcus.s__Deinococcus_radiodurans	0.9881422925
+UniRef50_UPI0001FFE2F2: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridin epyrophosphokinase	0.9880661290
+UniRef50_UPI0001FFE2F2: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridin epyrophosphokinase|unclassified	0.9880661290
+UniRef50_G2KND9: BolA-like family protein	0.9880036322
+UniRef50_G2KND9: BolA-like family protein|unclassified	0.9880036322
+UniRef50_UPI0002BB2AAD: hypothetical protein, partial	0.9879623187
+UniRef50_UPI0002BB2AAD: hypothetical protein, partial|unclassified	0.9879623187
+UniRef50_A8L642	0.9879286794
+UniRef50_A8L642|unclassified	0.9879286794
+UniRef50_B3E616: Phosphoribosyl-ATP pyrophosphatase	0.9877079019
+UniRef50_B3E616: Phosphoribosyl-ATP pyrophosphatase|unclassified	0.9877079019
+UniRef50_W0NSJ7: Transcriptional regulator ICP4	0.9874882093
+UniRef50_W0NSJ7: Transcriptional regulator ICP4|unclassified	0.9874882093
+UniRef50_V0WNB6	0.9873246521
+UniRef50_V0WNB6|unclassified	0.9873246521
+UniRef50_B3R412	0.9872631500
+UniRef50_B3R412|unclassified	0.9872631500
+UniRef50_D0K1D5	0.9871668312
+UniRef50_D0K1D5|g__Helicobacter.s__Helicobacter_pylori	0.9871668312
+UniRef50_Q9RRK0	0.9871668312
+UniRef50_Q9RRK0|g__Deinococcus.s__Deinococcus_radiodurans	0.9871668312
+UniRef50_UPI000219720B: hypothetical protein	0.9869077519
+UniRef50_UPI000219720B: hypothetical protein|unclassified	0.9869077519
+UniRef50_UPI00024913FE: anaerobic ribonucleoside triphosphate reductase, partial	0.9868330580
+UniRef50_UPI00024913FE: anaerobic ribonucleoside triphosphate reductase, partial|unclassified	0.9868330580
+UniRef50_E8QNM4	0.9868203000
+UniRef50_E8QNM4|g__Helicobacter.s__Helicobacter_pylori	0.9868203000
+UniRef50_Q949U7: Peroxiredoxin-2E, chloroplastic	0.9867948083
+UniRef50_Q949U7: Peroxiredoxin-2E, chloroplastic|unclassified	0.9867948083
+UniRef50_R3SKR3	0.9867333069
+UniRef50_R3SKR3|unclassified	0.9867333069
+UniRef50_UPI0004701EC5: transcriptional regulator	0.9864348632
+UniRef50_UPI0004701EC5: transcriptional regulator|unclassified	0.9864348632
+UniRef50_C5X3F1	0.9864241262
+UniRef50_C5X3F1|unclassified	0.9864241262
+UniRef50_A8Z310	0.9863694489
+UniRef50_A8Z310|unclassified	0.9863694489
+UniRef50_W9H1I0	0.9862768117
+UniRef50_W9H1I0|unclassified	0.9862768117
+UniRef50_UPI00037B582D: hypothetical protein	0.9862575691
+UniRef50_UPI00037B582D: hypothetical protein|unclassified	0.9862575691
+UniRef50_M4R0H3: ABC transporter, ATP-binding domain protein	0.9862492005
+UniRef50_M4R0H3: ABC transporter, ATP-binding domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.9862492005
+UniRef50_Q65SJ3	0.9861933648
+UniRef50_Q65SJ3|unclassified	0.9861933648
+UniRef50_F9Z1V2: RlpA-like protein	0.9861932939
+UniRef50_F9Z1V2: RlpA-like protein|g__Propionibacterium.s__Propionibacterium_acnes	0.9861932939
+UniRef50_K0RAN6	0.9861932939
+UniRef50_K0RAN6|unclassified	0.9861932939
+UniRef50_Q9RVU4: Endonuclease III, putative	0.9861932939
+UniRef50_Q9RVU4: Endonuclease III, putative|g__Deinococcus.s__Deinococcus_radiodurans	0.9861932939
+UniRef50_UPI0001D2F09B: permease	0.9861932939
+UniRef50_UPI0001D2F09B: permease|unclassified	0.9861932939
+UniRef50_UPI0004672A57: hypothetical protein	0.9861932939
+UniRef50_UPI0004672A57: hypothetical protein|unclassified	0.9861932939
+UniRef50_W7TU75	0.9861932939
+UniRef50_W7TU75|unclassified	0.9861932939
+UniRef50_UPI000470CEEA: hypothetical protein	0.9861294692
+UniRef50_UPI000470CEEA: hypothetical protein|unclassified	0.9861294692
+UniRef50_A4WSF9	0.9860414958
+UniRef50_A4WSF9|unclassified	0.9860414958
+UniRef50_UPI000376E8EA: hypothetical protein	0.9859502249
+UniRef50_UPI000376E8EA: hypothetical protein|unclassified	0.9859502249
+UniRef50_Q2QP47	0.9859295088
+UniRef50_Q2QP47|unclassified	0.9859295088
+UniRef50_C9P5J2: Transcriptional regulator AsnC family	0.9856063832
+UniRef50_C9P5J2: Transcriptional regulator AsnC family|unclassified	0.9856063832
+UniRef50_Q8H389	0.9855655862
+UniRef50_Q8H389|unclassified	0.9855655862
+UniRef50_UPI00047083D0: hypothetical protein	0.9855379870
+UniRef50_UPI00047083D0: hypothetical protein|unclassified	0.9855379870
+UniRef50_UPI00035EC538: hypothetical protein	0.9852769189
+UniRef50_UPI00035EC538: hypothetical protein|unclassified	0.9852769189
+UniRef50_T6TMC7	0.9852757240
+UniRef50_T6TMC7|unclassified	0.9852757240
+UniRef50_A0A011RWZ7	0.9852216749
+UniRef50_A0A011RWZ7|unclassified	0.9852216749
+UniRef50_B7UZJ0: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase	0.9852216749
+UniRef50_B7UZJ0: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9852216749
+UniRef50_D4HEP8: Sugar-binding domain protein	0.9852216749
+UniRef50_D4HEP8: Sugar-binding domain protein|g__Propionibacterium.s__Propionibacterium_acnes	0.9852216749
+UniRef50_K0S6E4	0.9852216749
+UniRef50_K0S6E4|unclassified	0.9852216749
+UniRef50_Q17VI1: Carbamoyl-phosphate synthase small chain	0.9852216749
+UniRef50_Q17VI1: Carbamoyl-phosphate synthase small chain|g__Helicobacter.s__Helicobacter_pylori	0.9852216749
+UniRef50_Q59650: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--2,6-diaminopimelate ligase	0.9852216749
+UniRef50_Q59650: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--2,6-diaminopimelate ligase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9852216749
+UniRef50_A0A009I9I3: HD domain protein	0.9850848837
+UniRef50_A0A009I9I3: HD domain protein|unclassified	0.9850848837
+UniRef50_S8PEV0: Cell division protein FtsK	0.9850503139
+UniRef50_S8PEV0: Cell division protein FtsK|g__Streptococcus.s__Streptococcus_agalactiae	0.9850503139
+UniRef50_A0A024K869: YgfY COG2938	0.9850354066
+UniRef50_A0A024K869: YgfY COG2938|unclassified	0.9850354066
+UniRef50_F5WPI0: Shikimate dehydrogenase	0.9850295157
+UniRef50_F5WPI0: Shikimate dehydrogenase|unclassified	0.9850295157
+UniRef50_N4VJR1	0.9849898795
+UniRef50_N4VJR1|unclassified	0.9849898795
+UniRef50_J1P1E7	0.9849674774
+UniRef50_J1P1E7|unclassified	0.9849674774
+UniRef50_A0NSX2: Immunogenic protein	0.9848446956
+UniRef50_A0NSX2: Immunogenic protein|unclassified	0.9848446956
+UniRef50_UPI0002491F5A: ferric uptake regulation protein, partial	0.9847676877
+UniRef50_UPI0002491F5A: ferric uptake regulation protein, partial|unclassified	0.9847676877
+UniRef50_M1MFL6: ATP-dependent DNA helicase Rep	0.9847604562
+UniRef50_M1MFL6: ATP-dependent DNA helicase Rep|g__Clostridium.s__Clostridium_beijerinckii	0.9847604562
+UniRef50_S9R445	0.9847051725
+UniRef50_S9R445|unclassified	0.9847051725
+UniRef50_UPI000468696C: hypothetical protein	0.9845106105
+UniRef50_UPI000468696C: hypothetical protein|unclassified	0.9845106105
+UniRef50_F7WHA2: PE-PGRS family protein	0.9844980525
+UniRef50_F7WHA2: PE-PGRS family protein|unclassified	0.9844980525
+UniRef50_H3ZV04	0.9844595957
+UniRef50_H3ZV04|unclassified	0.9844595957
+UniRef50_V5VBD8: 3-beta hydroxysteroid dehydrogenase/isomerase	0.9842519685
+UniRef50_V5VBD8: 3-beta hydroxysteroid dehydrogenase/isomerase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9842519685
+UniRef50_UPI0004643106: hypothetical protein	0.9842447728
+UniRef50_UPI0004643106: hypothetical protein|unclassified	0.9842447728
+UniRef50_UPI00036B500B: hypothetical protein, partial	0.9842413826
+UniRef50_UPI00036B500B: hypothetical protein, partial|unclassified	0.9842413826
+UniRef50_UPI000366396F: hypothetical protein	0.9842328359
+UniRef50_UPI000366396F: hypothetical protein|unclassified	0.9842328359
+UniRef50_Q53102: CcoQ	0.9838740098
+UniRef50_Q53102: CcoQ|unclassified	0.9838740098
+UniRef50_UPI000225B972: hypothetical protein	0.9838099771
+UniRef50_UPI000225B972: hypothetical protein|unclassified	0.9838099771
+UniRef50_S9S3Z7	0.9837395996
+UniRef50_S9S3Z7|unclassified	0.9837395996
+UniRef50_D3E5F8	0.9833381222
+UniRef50_D3E5F8|unclassified	0.9833381222
+UniRef50_UPI00047CA1DA: hypothetical protein	0.9833018248
+UniRef50_UPI00047CA1DA: hypothetical protein|unclassified	0.9833018248
+UniRef50_A8AMR2	0.9832841691
+UniRef50_A8AMR2|g__Escherichia.s__Escherichia_coli	0.9832841691
+UniRef50_Q8DXA0: Membrane protein, putative	0.9832841691
+UniRef50_Q8DXA0: Membrane protein, putative|g__Streptococcus.s__Streptococcus_agalactiae	0.9832841691
+UniRef50_R5LUL0: Spore coat polysaccharide biosynthesis protein spsC	0.9832841691
+UniRef50_R5LUL0: Spore coat polysaccharide biosynthesis protein spsC|g__Clostridium.s__Clostridium_beijerinckii	0.9832841691
+UniRef50_UPI00036D8B59: hypothetical protein	0.9832515227
+UniRef50_UPI00036D8B59: hypothetical protein|unclassified	0.9832515227
+UniRef50_UPI00046F8C7A: membrane protein	0.9832156377
+UniRef50_UPI00046F8C7A: membrane protein|unclassified	0.9832156377
+UniRef50_T2HU52: Conjugal transfer protein	0.9831241300
+UniRef50_T2HU52: Conjugal transfer protein|unclassified	0.9831241300
+UniRef50_B9KS56	0.9825851061
+UniRef50_B9KS56|unclassified	0.9825851061
+UniRef50_W8TWM7: Mannitol-1-phosphate 5-dehydrogenase	0.9825104258
+UniRef50_W8TWM7: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.9825104258
+UniRef50_K1UNJ2	0.9823806694
+UniRef50_K1UNJ2|unclassified	0.9823806694
+UniRef50_UPI0003709051: hypothetical protein	0.9823559757
+UniRef50_UPI0003709051: hypothetical protein|unclassified	0.9823559757
+UniRef50_D5X7D2: Stage V sporulation protein AD	0.9823182711
+UniRef50_D5X7D2: Stage V sporulation protein AD|g__Clostridium.s__Clostridium_beijerinckii	0.9823182711
+UniRef50_A0A025H559: Peptide ABC transporter permease	0.9823091486
+UniRef50_A0A025H559: Peptide ABC transporter permease|unclassified	0.9823091486
+UniRef50_Q9M7T0: Peroxiredoxin-2F, mitochondrial	0.9823035170
+UniRef50_Q9M7T0: Peroxiredoxin-2F, mitochondrial|unclassified	0.9823035170
+UniRef50_Q28RK4: Orotate phosphoribosyltransferase	0.9821129193
+UniRef50_Q28RK4: Orotate phosphoribosyltransferase|unclassified	0.9821129193
+UniRef50_UPI00028A40F7: thymidylate synthase	0.9819659188
+UniRef50_UPI00028A40F7: thymidylate synthase|unclassified	0.9819659188
+UniRef50_A6LWZ4: Transcriptional regulator, XRE family	0.9813542689
+UniRef50_A6LWZ4: Transcriptional regulator, XRE family|g__Clostridium.s__Clostridium_beijerinckii	0.9813542689
+UniRef50_C6WR75: Short-chain dehydrogenase/reductase SDR	0.9813542689
+UniRef50_C6WR75: Short-chain dehydrogenase/reductase SDR|g__Acinetobacter.s__Acinetobacter_baumannii	0.9813542689
+UniRef50_F2JHX4: ABC-type transporter, periplasmic subunit	0.9813542689
+UniRef50_F2JHX4: ABC-type transporter, periplasmic subunit|g__Clostridium.s__Clostridium_beijerinckii	0.9813542689
+UniRef50_Y5TUQ9	0.9812826858
+UniRef50_Y5TUQ9|unclassified	0.9812826858
+UniRef50_B7H179: Ferric alcaligin E	0.9812016475
+UniRef50_B7H179: Ferric alcaligin E|g__Acinetobacter.s__Acinetobacter_baumannii	0.9812016475
+UniRef50_A0A011MW63: Sporulation inhibitor KipI	0.9810858061
+UniRef50_A0A011MW63: Sporulation inhibitor KipI|unclassified	0.9810858061
+UniRef50_UPI00016A31BA: cell shape determining protein, MreB/Mrl family, partial	0.9809432984
+UniRef50_UPI00016A31BA: cell shape determining protein, MreB/Mrl family, partial|unclassified	0.9809432984
+UniRef50_Q3JWK6	0.9807079379
+UniRef50_Q3JWK6|unclassified	0.9807079379
+UniRef50_C0QPF4: 3-oxoacyl-[acyl-carrier-protein] synthase 3	0.9805435162
+UniRef50_C0QPF4: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	0.9805435162
+UniRef50_K0SQ03	0.9805139532
+UniRef50_K0SQ03|unclassified	0.9805139532
+UniRef50_E6C5P3: Glycosyl hydrolase family 20, catalytic domain protein	0.9804740636
+UniRef50_E6C5P3: Glycosyl hydrolase family 20, catalytic domain protein|g__Propionibacterium.s__Propionibacterium_acnes	0.9804740636
+UniRef50_K5YPQ7: Antirepressor	0.9804350937
+UniRef50_K5YPQ7: Antirepressor|unclassified	0.9804350937
+UniRef50_D4HD52	0.9803921569
+UniRef50_D4HD52|g__Propionibacterium.s__Propionibacterium_acnes	0.9803921569
+UniRef50_F7ZGH1: Poly A polymerase-like protein	0.9803921569
+UniRef50_F7ZGH1: Poly A polymerase-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9803921569
+UniRef50_M9VCF0: Dolichyl-phosphate-mannose-protein mannosyltransferase	0.9803921569
+UniRef50_M9VCF0: Dolichyl-phosphate-mannose-protein mannosyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	0.9803921569
+UniRef50_Q1IZN6: Membrane associated PIN-like nuclease	0.9803921569
+UniRef50_Q1IZN6: Membrane associated PIN-like nuclease|g__Deinococcus.s__Deinococcus_radiodurans	0.9803921569
+UniRef50_R5MH03: Serine dehydratase alpha chain	0.9803921569
+UniRef50_R5MH03: Serine dehydratase alpha chain|g__Clostridium.s__Clostridium_beijerinckii	0.9803921569
+UniRef50_A0A021TKH3	0.9803921569
+UniRef50_A0A021TKH3|unclassified	0.9803921569
+UniRef50_UPI0004711337: hypothetical protein	0.9803868798
+UniRef50_UPI0004711337: hypothetical protein|unclassified	0.9803868798
+UniRef50_Q02500: NADH-ubiquinone oxidoreductase chain 6	0.9803494296
+UniRef50_Q02500: NADH-ubiquinone oxidoreductase chain 6|unclassified	0.9803494296
+UniRef50_UPI00047A834E: hypothetical protein	0.9802969774
+UniRef50_UPI00047A834E: hypothetical protein|unclassified	0.9802969774
+UniRef50_A3V0X2: Beta-Ig-H3/Fasciclin	0.9802359067
+UniRef50_A3V0X2: Beta-Ig-H3/Fasciclin|unclassified	0.9802359067
+UniRef50_UPI00020D93A2: hypothetical protein	0.9800068184
+UniRef50_UPI00020D93A2: hypothetical protein|unclassified	0.9800068184
+UniRef50_X2M3H5: ABC transporter permease	0.9799771981
+UniRef50_X2M3H5: ABC transporter permease|unclassified	0.9799771981
+UniRef50_F4DSR7	0.9798297802
+UniRef50_F4DSR7|unclassified	0.9798297802
+UniRef50_Q7R6Y8	0.9797753595
+UniRef50_Q7R6Y8|unclassified	0.9797753595
+UniRef50_UPI0001FFE87D: ABC-type Fe3+ transport system, periplasmic component	0.9797490626
+UniRef50_UPI0001FFE87D: ABC-type Fe3+ transport system, periplasmic component|unclassified	0.9797490626
+UniRef50_W8TGI7	0.9796269208
+UniRef50_W8TGI7|unclassified	0.9796269208
+UniRef50_F2SGG3: Glutathione S-transferase	0.9796109732
+UniRef50_F2SGG3: Glutathione S-transferase|unclassified	0.9796109732
+UniRef50_A9IW72	0.9795145614
+UniRef50_A9IW72|unclassified	0.9795145614
+UniRef50_Q46675: NeuB protein	0.9794319295
+UniRef50_Q46675: NeuB protein|g__Streptococcus.s__Streptococcus_agalactiae	0.9794319295
+UniRef50_R7FQK3: Arabinose-binding protein	0.9794319295
+UniRef50_R7FQK3: Arabinose-binding protein|g__Clostridium.s__Clostridium_beijerinckii	0.9794319295
+UniRef50_UPI000465502A: integrase	0.9794319295
+UniRef50_UPI000465502A: integrase|unclassified	0.9794319295
+UniRef50_H6SQS4: Cyclic nucleotide-binding	0.9793208522
+UniRef50_H6SQS4: Cyclic nucleotide-binding|unclassified	0.9793208522
+UniRef50_R7I0G9	0.9790632453
+UniRef50_R7I0G9|unclassified	0.9790632453
+UniRef50_Q3S2Y2: Glycosyltransferase Gtf1	0.9790593569
+UniRef50_Q3S2Y2: Glycosyltransferase Gtf1|g__Streptococcus.s__Streptococcus_agalactiae	0.7570022710
+UniRef50_Q3S2Y2: Glycosyltransferase Gtf1|unclassified	0.2220570859
+UniRef50_Q5F919	0.9789524159
+UniRef50_Q5F919|unclassified	0.9789524159
+UniRef50_A0A018S2L2: PTS system N,N'-diacetylchitobiose-specific transporter subunit IIC	0.9788704746
+UniRef50_A0A018S2L2: PTS system N,N'-diacetylchitobiose-specific transporter subunit IIC|unclassified	0.9788704746
+UniRef50_UPI00045DB0AA: PREDICTED: potassium voltage-gated channel subfamily G member 2	0.9787928222
+UniRef50_UPI00045DB0AA: PREDICTED: potassium voltage-gated channel subfamily G member 2|unclassified	0.9787928222
+UniRef50_Q4JIU1	0.9786911401
+UniRef50_Q4JIU1|unclassified	0.9786911401
+UniRef50_I0C454: Nitrogen regulation protein NIFR3	0.9786780171
+UniRef50_I0C454: Nitrogen regulation protein NIFR3|unclassified	0.9786780171
+UniRef50_UPI0004651636: hypothetical protein	0.9786499665
+UniRef50_UPI0004651636: hypothetical protein|unclassified	0.9786499665
+UniRef50_UPI00016A6755: Rhodanese domain protein, partial	0.9785807431
+UniRef50_UPI00016A6755: Rhodanese domain protein, partial|unclassified	0.9785807431
+UniRef50_Q32JC0	0.9785110350
+UniRef50_Q32JC0|unclassified	0.9785110350
+UniRef50_A0A059MIV5: Aldehyde dehydrogenase	0.9784735812
+UniRef50_A0A059MIV5: Aldehyde dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9784735812
+UniRef50_D5UGZ1	0.9784735812
+UniRef50_D5UGZ1|unclassified	0.9784735812
+UniRef50_G2L1E2	0.9784735812
+UniRef50_G2L1E2|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9784735812
+UniRef50_Q5XDS6: Branched-chain amino acid transport system carrier protein	0.9784735812
+UniRef50_Q5XDS6: Branched-chain amino acid transport system carrier protein|g__Streptococcus.s__Streptococcus_agalactiae	0.9784735812
+UniRef50_UPI0003C42540: PREDICTED: collagen alpha-2(XI) chain-like	0.9782435664
+UniRef50_UPI0003C42540: PREDICTED: collagen alpha-2(XI) chain-like|unclassified	0.9782435664
+UniRef50_A3V3M4	0.9780197555
+UniRef50_A3V3M4|unclassified	0.9780197555
+UniRef50_UPI000470AB53: zinc ABC transporter permease, partial	0.9780064477
+UniRef50_UPI000470AB53: zinc ABC transporter permease, partial|unclassified	0.9780064477
+UniRef50_M2ATY2: ParB-like partition protein	0.9779279933
+UniRef50_M2ATY2: ParB-like partition protein|unclassified	0.9779279933
+UniRef50_UPI0003B54A55: chemotaxis protein	0.9778770235
+UniRef50_UPI0003B54A55: chemotaxis protein|unclassified	0.9778770235
+UniRef50_X8FKW3	0.9778601261
+UniRef50_X8FKW3|unclassified	0.9778601261
+UniRef50_A6BA71: Immunogenic protein (Fragment)	0.9778454470
+UniRef50_A6BA71: Immunogenic protein (Fragment)|unclassified	0.9778454470
+UniRef50_B5DUW6: GA22431	0.9775171065
+UniRef50_B5DUW6: GA22431|unclassified	0.9775171065
+UniRef50_E6MXN3: Bacteriophage Mu I protein GP32	0.9775171065
+UniRef50_E6MXN3: Bacteriophage Mu I protein GP32|g__Neisseria.s__Neisseria_meningitidis	0.9775171065
+UniRef50_N6UYY7	0.9775171065
+UniRef50_N6UYY7|unclassified	0.9775171065
+UniRef50_Q1IVE2: Pyruvate carboxylase subunit A	0.9775171065
+UniRef50_Q1IVE2: Pyruvate carboxylase subunit A|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9775171065
+UniRef50_V5VC89: Phospho-2-dehydro-3-deoxyheptonate aldolase	0.9775171065
+UniRef50_V5VC89: Phospho-2-dehydro-3-deoxyheptonate aldolase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9775171065
+UniRef50_W1GE26: Aerotaxis sensor receptor protein	0.9775171065
+UniRef50_W1GE26: Aerotaxis sensor receptor protein|g__Escherichia.s__Escherichia_coli	0.9775171065
+UniRef50_C0PKV4	0.9774741098
+UniRef50_C0PKV4|unclassified	0.9774741098
+UniRef50_M9RN42	0.9774375322
+UniRef50_M9RN42|unclassified	0.9774375322
+UniRef50_UPI0002B4BA19: PREDICTED: 30S ribosomal protein S12-like	0.9774374162
+UniRef50_UPI0002B4BA19: PREDICTED: 30S ribosomal protein S12-like|unclassified	0.9774374162
+UniRef50_P48925: NADH-ubiquinone oxidoreductase chain 6	0.9773670346
+UniRef50_P48925: NADH-ubiquinone oxidoreductase chain 6|unclassified	0.9773670346
+UniRef50_Q5GU84: PilL protein	0.9773139449
+UniRef50_Q5GU84: PilL protein|unclassified	0.9773139449
+UniRef50_UPI00037995F4: hypothetical protein	0.9770515787
+UniRef50_UPI00037995F4: hypothetical protein|unclassified	0.9770515787
+UniRef50_UPI0004647AF7: dioxygenase	0.9770370239
+UniRef50_UPI0004647AF7: dioxygenase|unclassified	0.9770370239
+UniRef50_G4UUE8: Ubiquitin-like protein	0.9770025734
+UniRef50_G4UUE8: Ubiquitin-like protein|unclassified	0.9770025734
+UniRef50_Q165N7: Conserved domain protein	0.9769287911
+UniRef50_Q165N7: Conserved domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9285051068
+UniRef50_Q165N7: Conserved domain protein|unclassified	0.0484236843
+UniRef50_Q2CDQ9	0.9768971901
+UniRef50_Q2CDQ9|unclassified	0.9768971901
+UniRef50_UPI000225E6BE: two component transcriptional regulator, winged helix family protein	0.9768520407
+UniRef50_UPI000225E6BE: two component transcriptional regulator, winged helix family protein|unclassified	0.9768520407
+UniRef50_UPI00035E9CFE: 50S ribosomal protein L24	0.9767028137
+UniRef50_UPI00035E9CFE: 50S ribosomal protein L24|unclassified	0.9767028137
+UniRef50_F0RLS2: Metal dependent phosphohydrolase with GAF sensor	0.9765625000
+UniRef50_F0RLS2: Metal dependent phosphohydrolase with GAF sensor|g__Deinococcus.s__Deinococcus_radiodurans	0.9765625000
+UniRef50_N0A5S9: GtrOC2	0.9765625000
+UniRef50_N0A5S9: GtrOC2|g__Acinetobacter.s__Acinetobacter_baumannii	0.9765625000
+UniRef50_UPI000237A428: CBS domain-containing protein	0.9765625000
+UniRef50_UPI000237A428: CBS domain-containing protein|unclassified	0.9765625000
+UniRef50_H8Z498	0.9765423064
+UniRef50_H8Z498|unclassified	0.9765423064
+UniRef50_UPI00046314D1: hypothetical protein	0.9765352071
+UniRef50_UPI00046314D1: hypothetical protein|unclassified	0.9765352071
+UniRef50_A0A011PF16: Coenzyme F420-reducing hydrogenase, delta subunit	0.9764195034
+UniRef50_A0A011PF16: Coenzyme F420-reducing hydrogenase, delta subunit|unclassified	0.9764195034
+UniRef50_I1NKK0	0.9763619183
+UniRef50_I1NKK0|unclassified	0.9763619183
+UniRef50_Q16CZ7: Ribosomal RNA small subunit methyltransferase G	0.9762091361
+UniRef50_Q16CZ7: Ribosomal RNA small subunit methyltransferase G|unclassified	0.9762091361
+UniRef50_UPI0004757F7D: aminotransferase class IV	0.9760632590
+UniRef50_UPI0004757F7D: aminotransferase class IV|unclassified	0.9760632590
+UniRef50_P42887: Urease subunit gamma	0.9760068779
+UniRef50_P42887: Urease subunit gamma|unclassified	0.9760068779
+UniRef50_H1UK64: Transcriptional regulator SoxR	0.9759721562
+UniRef50_H1UK64: Transcriptional regulator SoxR|unclassified	0.9759721562
+UniRef50_U4V9A4	0.9759573424
+UniRef50_U4V9A4|unclassified	0.9759573424
+UniRef50_G5Q797: L-fuculose phosphate aldolase	0.9757091549
+UniRef50_G5Q797: L-fuculose phosphate aldolase|unclassified	0.9757091549
+UniRef50_UPI000288416E: winged helix family two component transcriptional regulator	0.9756512915
+UniRef50_UPI000288416E: winged helix family two component transcriptional regulator|unclassified	0.9756512915
+UniRef50_R4ZCR7: MFS transporter	0.9756097561
+UniRef50_R4ZCR7: MFS transporter|g__Streptococcus.s__Streptococcus_agalactiae	0.9756097561
+UniRef50_A7ZVD9	0.9755474473
+UniRef50_A7ZVD9|unclassified	0.9755474473
+UniRef50_Q8PP41: Aliphatic sulfonates import ATP-binding protein SsuB 1	0.9755170276
+UniRef50_Q8PP41: Aliphatic sulfonates import ATP-binding protein SsuB 1|unclassified	0.9755170276
+UniRef50_Q11EQ2: Heat shock protein Hsp20	0.9754103462
+UniRef50_Q11EQ2: Heat shock protein Hsp20|unclassified	0.9754103462
+UniRef50_UPI0003636E7B: hypothetical protein	0.9753181245
+UniRef50_UPI0003636E7B: hypothetical protein|unclassified	0.9753181245
+UniRef50_F2DIT6: Predicted protein (Fragment)	0.9751809363
+UniRef50_F2DIT6: Predicted protein (Fragment)|unclassified	0.9751809363
+UniRef50_J9GQJ1	0.9750919511
+UniRef50_J9GQJ1|unclassified	0.9750919511
+UniRef50_U9BBD5: Sigma factor AlgU regulatory protein MucB	0.9750084572
+UniRef50_U9BBD5: Sigma factor AlgU regulatory protein MucB|unclassified	0.9750084572
+UniRef50_A4W2L5: Predicted membrane protein	0.9749901652
+UniRef50_A4W2L5: Predicted membrane protein|unclassified	0.9749901652
+UniRef50_R7S0W0	0.9749798741
+UniRef50_R7S0W0|unclassified	0.9749798741
+UniRef50_UPI00046D6590: hypothetical protein	0.9749030758
+UniRef50_UPI00046D6590: hypothetical protein|unclassified	0.9749030758
+UniRef50_F4EE48: Bifunctional 2',3'-cyclic nucleotide 2'-phosphodiesterase/3'-nucleotidase protein	0.9748368177
+UniRef50_F4EE48: Bifunctional 2',3'-cyclic nucleotide 2'-phosphodiesterase/3'-nucleotidase protein|g__Streptococcus.s__Streptococcus_agalactiae	0.9748368177
+UniRef50_Q92DC2: Serine-protein kinase RsbW	0.9748352199
+UniRef50_Q92DC2: Serine-protein kinase RsbW|unclassified	0.9748352199
+UniRef50_UPI00036F985C: hypothetical protein	0.9746838253
+UniRef50_UPI00036F985C: hypothetical protein|unclassified	0.9746838253
+UniRef50_J2E2C8	0.9745083382
+UniRef50_J2E2C8|unclassified	0.9745083382
+UniRef50_UPI000287CE50: ABC transporter periplasmic protein, partial	0.9744444068
+UniRef50_UPI000287CE50: ABC transporter periplasmic protein, partial|unclassified	0.9744444068
+UniRef50_UPI000255E535: malonyl CoA-acyl carrier protein transacylase, partial	0.9743617080
+UniRef50_UPI000255E535: malonyl CoA-acyl carrier protein transacylase, partial|unclassified	0.9743617080
+UniRef50_A3K318: Flagellar protein FlaF, putative	0.9741527764
+UniRef50_A3K318: Flagellar protein FlaF, putative|unclassified	0.9741527764
+UniRef50_A0A011TPN1	0.9741515298
+UniRef50_A0A011TPN1|unclassified	0.9741515298
+UniRef50_UPI0002F58558: phosphoanhydride phosphorylase	0.9739216543
+UniRef50_UPI0002F58558: phosphoanhydride phosphorylase|unclassified	0.9739216543
+UniRef50_UPI00034DD1B3: hypothetical protein	0.9738945589
+UniRef50_UPI00034DD1B3: hypothetical protein|unclassified	0.9738945589
+UniRef50_W1TZR7: Electron transfer oxidoreductase (Fragment)	0.9738575805
+UniRef50_W1TZR7: Electron transfer oxidoreductase (Fragment)|unclassified	0.9738575805
+UniRef50_V2U4R3	0.9737165260
+UniRef50_V2U4R3|g__Acinetobacter.s__Acinetobacter_baumannii	0.9737165260
+UniRef50_K7YS10	0.9737098345
+UniRef50_K7YS10|g__Helicobacter.s__Helicobacter_pylori	0.9737098345
+UniRef50_UPI000376B264: hypothetical protein	0.9735634189
+UniRef50_UPI000376B264: hypothetical protein|unclassified	0.9735634189
+UniRef50_D4HFJ6: UvrD/REP helicase	0.9735472169
+UniRef50_D4HFJ6: UvrD/REP helicase|g__Propionibacterium.s__Propionibacterium_acnes	0.9735472169
+UniRef50_C9D164	0.9733677438
+UniRef50_C9D164|unclassified	0.9733677438
+UniRef50_Q9I310	0.9732360097
+UniRef50_Q9I310|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9732360097
+UniRef50_B9TMD6	0.9732326592
+UniRef50_B9TMD6|unclassified	0.9732326592
+UniRef50_A4FE07	0.9731930333
+UniRef50_A4FE07|unclassified	0.9731930333
+UniRef50_S9S2N5: Transposase	0.9731875918
+UniRef50_S9S2N5: Transposase|unclassified	0.9731875918
+UniRef50_A1ABD7: Voltage-gated ClC-type chloride channel ClcB	0.9727626459
+UniRef50_A1ABD7: Voltage-gated ClC-type chloride channel ClcB|g__Escherichia.s__Escherichia_coli	0.9727626459
+UniRef50_G7U472: Membrane spanning protein	0.9727626459
+UniRef50_G7U472: Membrane spanning protein|g__Propionibacterium.s__Propionibacterium_acnes	0.9727626459
+UniRef50_Q03438: Cytochrome c oxidase subunit 2	0.9727626459
+UniRef50_Q03438: Cytochrome c oxidase subunit 2|unclassified	0.9727626459
+UniRef50_UPI000479998B: formyltetrahydrofolate deformylase	0.9726837961
+UniRef50_UPI000479998B: formyltetrahydrofolate deformylase|unclassified	0.9726837961
+UniRef50_T1BV54: Major facilitator superfamily MFS_1 (Fragment)	0.9726543020
+UniRef50_T1BV54: Major facilitator superfamily MFS_1 (Fragment)|unclassified	0.9726543020
+UniRef50_D0Z4T1: Sex pilus assembly and synthesis protein TraW	0.9725133315
+UniRef50_D0Z4T1: Sex pilus assembly and synthesis protein TraW|unclassified	0.9725133315
+UniRef50_U2Z4S9	0.9724619366
+UniRef50_U2Z4S9|unclassified	0.9724619366
+UniRef50_N4R2H6: Type-F conjugative transfer system protein TraW	0.9723330989
+UniRef50_N4R2H6: Type-F conjugative transfer system protein TraW|unclassified	0.9723330989
+UniRef50_E4GKY2: Membrane alanyl aminopeptidase	0.9722934190
+UniRef50_E4GKY2: Membrane alanyl aminopeptidase|g__Propionibacterium.s__Propionibacterium_acnes	0.9722934190
+UniRef50_UPI0003D3ECD9: hypothetical protein	0.9722896653
+UniRef50_UPI0003D3ECD9: hypothetical protein|unclassified	0.9722896653
+UniRef50_W1DNY7: Acyl-CoA dehydrogenases	0.9721868444
+UniRef50_W1DNY7: Acyl-CoA dehydrogenases|unclassified	0.9721868444
+UniRef50_Q28PE3	0.9721808342
+UniRef50_Q28PE3|unclassified	0.9721808342
+UniRef50_E8SEZ9	0.9721226425
+UniRef50_E8SEZ9|unclassified	0.9721226425
+UniRef50_A9N5L5	0.9719031121
+UniRef50_A9N5L5|unclassified	0.9719031121
+UniRef50_UPI000413A679: hypothetical protein	0.9718414952
+UniRef50_UPI000413A679: hypothetical protein|unclassified	0.9718414952
+UniRef50_A4VYZ2: ABC-type sugar transport system, periplasmic component	0.9718172983
+UniRef50_A4VYZ2: ABC-type sugar transport system, periplasmic component|g__Clostridium.s__Clostridium_beijerinckii	0.9718172983
+UniRef50_B9E2W7	0.9718172983
+UniRef50_B9E2W7|g__Clostridium.s__Clostridium_beijerinckii	0.9718172983
+UniRef50_E7ACI0: Na+/H+ Antiporter	0.9718172983
+UniRef50_E7ACI0: Na+/H+ Antiporter|g__Helicobacter.s__Helicobacter_pylori	0.9718172983
+UniRef50_G7U855: Ser/Thr phosphatase family protein	0.9718172983
+UniRef50_G7U855: Ser/Thr phosphatase family protein|g__Propionibacterium.s__Propionibacterium_acnes	0.9718172983
+UniRef50_UPI00035D87E2: hypothetical protein, partial	0.9716611810
+UniRef50_UPI00035D87E2: hypothetical protein, partial|unclassified	0.9716611810
+UniRef50_G5Q9Z4: Cell wall endopeptidase, family M23/M37	0.9715627509
+UniRef50_G5Q9Z4: Cell wall endopeptidase, family M23/M37|unclassified	0.9715627509
+UniRef50_V6P4C9	0.9714170344
+UniRef50_V6P4C9|unclassified	0.9714170344
+UniRef50_K2K0X8: Putative phenol degradation enzyme	0.9713207139
+UniRef50_K2K0X8: Putative phenol degradation enzyme|unclassified	0.9713207139
+UniRef50_A4WX45	0.9712576219
+UniRef50_A4WX45|unclassified	0.9712576219
+UniRef50_J9P132	0.9710625832
+UniRef50_J9P132|unclassified	0.9710625832
+UniRef50_U6FVZ4: Isocitrate dehydrogenase	0.9709514063
+UniRef50_U6FVZ4: Isocitrate dehydrogenase|unclassified	0.9709514063
+UniRef50_X1LDE4: Marine sediment metagenome DNA, contig: S06H3_C00606	0.9709272314
+UniRef50_X1LDE4: Marine sediment metagenome DNA, contig: S06H3_C00606|unclassified	0.9709272314
+UniRef50_UPI0004785E9E: hypothetical protein	0.9708737864
+UniRef50_UPI0004785E9E: hypothetical protein|unclassified	0.9708737864
+UniRef50_M0X5K7	0.9708320086
+UniRef50_M0X5K7|unclassified	0.9708320086
+UniRef50_W4KZP5: Peptidase family S11	0.9707293924
+UniRef50_W4KZP5: Peptidase family S11|unclassified	0.9707293924
+UniRef50_V5VAN9: Major facilitator superfamily permease	0.9706678157
+UniRef50_V5VAN9: Major facilitator superfamily permease|g__Acinetobacter.s__Acinetobacter_baumannii	0.9706678157
+UniRef50_E3I4K3	0.9705031882
+UniRef50_E3I4K3|unclassified	0.9705031882
+UniRef50_Q3JR54: TGS domain protein	0.9702204582
+UniRef50_Q3JR54: TGS domain protein|unclassified	0.9702204582
+UniRef50_UPI000393D46E: PREDICTED: collagen alpha-1(I) chain-like	0.9700826782
+UniRef50_UPI000393D46E: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.9700826782
+UniRef50_C7NJL3	0.9699998798
+UniRef50_C7NJL3|unclassified	0.9699998798
+UniRef50_A7H5L7: Adenylosuccinate synthetase	0.9699321048
+UniRef50_A7H5L7: Adenylosuccinate synthetase|g__Helicobacter.s__Helicobacter_pylori	0.9699321048
+UniRef50_A8GG94: Anaerobic nitric oxide reductase flavorubredoxin	0.9699321048
+UniRef50_A8GG94: Anaerobic nitric oxide reductase flavorubredoxin|g__Escherichia.s__Escherichia_coli	0.9699321048
+UniRef50_R5AEA5: Mg chelatase subunit ChlI	0.9699321048
+UniRef50_R5AEA5: Mg chelatase subunit ChlI|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9699321048
+UniRef50_UPI0003EB6782: hypothetical protein, partial	0.9698626528
+UniRef50_UPI0003EB6782: hypothetical protein, partial|unclassified	0.9698626528
+UniRef50_UPI00029B0829: ribonucleoside-diphosphate reductase subunit alpha	0.9697416823
+UniRef50_UPI00029B0829: ribonucleoside-diphosphate reductase subunit alpha|unclassified	0.9697416823
+UniRef50_UPI0004672C36: hypothetical protein, partial	0.9697108043
+UniRef50_UPI0004672C36: hypothetical protein, partial|unclassified	0.9697108043
+UniRef50_UPI0003A1859F: hypothetical protein	0.9696944682
+UniRef50_UPI0003A1859F: hypothetical protein|unclassified	0.9696944682
+UniRef50_UPI0003901AFF: Beta-Ala-His dipeptidase	0.9696386192
+UniRef50_UPI0003901AFF: Beta-Ala-His dipeptidase|unclassified	0.9696386192
+UniRef50_A0A031M1H9: Membrane protein	0.9691876799
+UniRef50_A0A031M1H9: Membrane protein|unclassified	0.9691876799
+UniRef50_A0A058TBR0: Glycerophosphodiester phosphodiesterase	0.9689922481
+UniRef50_A0A058TBR0: Glycerophosphodiester phosphodiesterase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9689922481
+UniRef50_B9ADF9: Tetratricopeptide repeat protein	0.9689922481
+UniRef50_B9ADF9: Tetratricopeptide repeat protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	0.9689922481
+UniRef50_H8GSQ7: 2-oxoisovalerate dehydrogenase, ODBB	0.9689922481
+UniRef50_H8GSQ7: 2-oxoisovalerate dehydrogenase, ODBB|g__Deinococcus.s__Deinococcus_radiodurans	0.9689922481
+UniRef50_O83092: Ribonucleoside-diphosphate reductase subunit beta	0.9689922481
+UniRef50_O83092: Ribonucleoside-diphosphate reductase subunit beta|g__Clostridium.s__Clostridium_beijerinckii	0.9689922481
+UniRef50_T9ZKW9: L-lactate permease	0.9689922481
+UniRef50_T9ZKW9: L-lactate permease|g__Escherichia.s__Escherichia_coli	0.9689922481
+UniRef50_I3TMV8: Phosphoribosylformylglycinamidine synthase protein	0.9689896950
+UniRef50_I3TMV8: Phosphoribosylformylglycinamidine synthase protein|unclassified	0.9689896950
+UniRef50_UPI00037BAEE0: hypothetical protein	0.9689682436
+UniRef50_UPI00037BAEE0: hypothetical protein|unclassified	0.9689682436
+UniRef50_A0A011NHH5: Periplasmic [NiFeSe] hydrogenase small subunit	0.9688276820
+UniRef50_A0A011NHH5: Periplasmic [NiFeSe] hydrogenase small subunit|unclassified	0.9688276820
+UniRef50_M3E127: Cation transport ATPase	0.9686740416
+UniRef50_M3E127: Cation transport ATPase|unclassified	0.9686740416
+UniRef50_A3BG46	0.9684442648
+UniRef50_A3BG46|unclassified	0.9684442648
+UniRef50_UPI00037F3538: hypothetical protein	0.9681691232
+UniRef50_UPI00037F3538: hypothetical protein|unclassified	0.9681691232
+UniRef50_J9NZP9	0.9680632383
+UniRef50_J9NZP9|unclassified	0.9680632383
+UniRef50_UPI0002035BDA: PREDICTED: hypothetical protein LOC100542175	0.9680542110
+UniRef50_UPI0002035BDA: PREDICTED: hypothetical protein LOC100542175|unclassified	0.9680542110
+UniRef50_UPI00026306CB: ubiquinol-cytochrome C reductase	0.9680308019
+UniRef50_UPI00026306CB: ubiquinol-cytochrome C reductase|unclassified	0.9680308019
+UniRef50_UPI000471AB25: hypothetical protein	0.9680274462
+UniRef50_UPI000471AB25: hypothetical protein|unclassified	0.9680274462
+UniRef50_S2KUG8	0.9680238501
+UniRef50_S2KUG8|unclassified	0.9680238501
+UniRef50_Q42581: Ribose-phosphate pyrophosphokinase 1, chloroplastic	0.9680168563
+UniRef50_Q42581: Ribose-phosphate pyrophosphokinase 1, chloroplastic|unclassified	0.9680168563
+UniRef50_Q1YML4	0.9679274358
+UniRef50_Q1YML4|unclassified	0.9679274358
+UniRef50_UPI0003700BFB: hypothetical protein	0.9677003167
+UniRef50_UPI0003700BFB: hypothetical protein|unclassified	0.9677003167
+UniRef50_F2DCR5: Predicted protein (Fragment)	0.9676647058
+UniRef50_F2DCR5: Predicted protein (Fragment)|unclassified	0.9676647058
+UniRef50_X8N4L8: Putative lipoprotein (Fragment)	0.9676621582
+UniRef50_X8N4L8: Putative lipoprotein (Fragment)|unclassified	0.9676621582
+UniRef50_UPI0003446619	0.9673191808
+UniRef50_UPI0003446619|unclassified	0.9673191808
+UniRef50_C6T9B8	0.9672891707
+UniRef50_C6T9B8|unclassified	0.9672891707
+UniRef50_A6LYN3: Drug resistance transporter, EmrB/QacA subfamily	0.9671179884
+UniRef50_A6LYN3: Drug resistance transporter, EmrB/QacA subfamily|g__Clostridium.s__Clostridium_beijerinckii	0.9671179884
+UniRef50_UPI00037C3E4F: hypothetical protein	0.9671179884
+UniRef50_UPI00037C3E4F: hypothetical protein|unclassified	0.9671179884
+UniRef50_UPI00047DA188: hypothetical protein	0.9670816985
+UniRef50_UPI00047DA188: hypothetical protein|unclassified	0.9670816985
+UniRef50_B8IG23: BolA family protein	0.9670471358
+UniRef50_B8IG23: BolA family protein|unclassified	0.9670471358
+UniRef50_B1ZM80	0.9668992394
+UniRef50_B1ZM80|unclassified	0.9668992394
+UniRef50_M7DSI0: Transposase (Fragment)	0.9668634672
+UniRef50_M7DSI0: Transposase (Fragment)|unclassified	0.9668634672
+UniRef50_H6U1K2	0.9667841595
+UniRef50_H6U1K2|unclassified	0.9667841595
+UniRef50_UPI0002F04406: hypothetical protein	0.9666954362
+UniRef50_UPI0002F04406: hypothetical protein|unclassified	0.9666954362
+UniRef50_P46126	0.9665514237
+UniRef50_P46126|unclassified	0.9665514237
+UniRef50_UPI000368CCE2: hypothetical protein	0.9663356135
+UniRef50_UPI000368CCE2: hypothetical protein|unclassified	0.9663356135
+UniRef50_I2JH32: ISSod2, transposase OrfB	0.9662040354
+UniRef50_I2JH32: ISSod2, transposase OrfB|unclassified	0.9662040354
+UniRef50_Q9RZT2: Chromosome partitioning ATPase, putative, ParA family	0.9661835749
+UniRef50_Q9RZT2: Chromosome partitioning ATPase, putative, ParA family|unclassified	0.9661835749
+UniRef50_Q9ZLY0: UDP-N-acetylmuramoylalanine--D-glutamate ligase	0.9661835749
+UniRef50_Q9ZLY0: UDP-N-acetylmuramoylalanine--D-glutamate ligase|g__Helicobacter.s__Helicobacter_pylori	0.9661835749
+UniRef50_R3HEY6	0.9660708545
+UniRef50_R3HEY6|unclassified	0.9660708545
+UniRef50_A0A017I711: Putative fructoselysine 6-phosphate deglycase	0.9658528515
+UniRef50_A0A017I711: Putative fructoselysine 6-phosphate deglycase|unclassified	0.9658528515
+UniRef50_N4RHJ7: Cation efflux system CusB domain protein	0.9658436147
+UniRef50_N4RHJ7: Cation efflux system CusB domain protein|unclassified	0.9658436147
+UniRef50_UPI0003B67722: 30S ribosomal protein S15	0.9657744690
+UniRef50_UPI0003B67722: 30S ribosomal protein S15|unclassified	0.9657744690
+UniRef50_K8ETB2	0.9656446070
+UniRef50_K8ETB2|unclassified	0.9656446070
+UniRef50_UPI0003666E12: hypothetical protein	0.9654292648
+UniRef50_UPI0003666E12: hypothetical protein|unclassified	0.9654292648
+UniRef50_UPI000360ECD3: hypothetical protein	0.9654246782
+UniRef50_UPI000360ECD3: hypothetical protein|unclassified	0.9654246782
+UniRef50_X1UX68: Marine sediment metagenome DNA, contig: S12H4_S13617 (Fragment)	0.9653642750
+UniRef50_X1UX68: Marine sediment metagenome DNA, contig: S12H4_S13617 (Fragment)|unclassified	0.9653642750
+UniRef50_A8TK91: BolA-like protein	0.9653313011
+UniRef50_A8TK91: BolA-like protein|unclassified	0.9653313011
+UniRef50_M0XXR8	0.9652509653
+UniRef50_M0XXR8|unclassified	0.9652509653
+UniRef50_Q1YXA0	0.9651331770
+UniRef50_Q1YXA0|unclassified	0.9651331770
+UniRef50_B1JTI2: Probable chemoreceptor glutamine deamidase CheD	0.9650634741
+UniRef50_B1JTI2: Probable chemoreceptor glutamine deamidase CheD|unclassified	0.9650634741
+UniRef50_R7Y8S1: Phenol hydroxylase	0.9647858985
+UniRef50_R7Y8S1: Phenol hydroxylase|unclassified	0.9647858985
+UniRef50_UPI00037E3C64: hypothetical protein	0.9647262621
+UniRef50_UPI00037E3C64: hypothetical protein|unclassified	0.9647262621
+UniRef50_H2HHM8	0.9645877440
+UniRef50_H2HHM8|g__Propionibacterium.s__Propionibacterium_acnes	0.9645877440
+UniRef50_Q2YWS7	0.9645388099
+UniRef50_Q2YWS7|unclassified	0.9645388099
+UniRef50_A9M3I7	0.9644407212
+UniRef50_A9M3I7|unclassified	0.9644407212
+UniRef50_W0AS84: Quinoprotein glucose dehydrogenase	0.9644014586
+UniRef50_W0AS84: Quinoprotein glucose dehydrogenase|unclassified	0.9644014586
+UniRef50_UPI000474FED4: response regulator receiver protein	0.9643325300
+UniRef50_UPI000474FED4: response regulator receiver protein|unclassified	0.9643325300
+UniRef50_A8J3C9: Predicted protein	0.9643201543
+UniRef50_A8J3C9: Predicted protein|unclassified	0.9643201543
+UniRef50_Q0TRY8: Lysine-N-methylase, homolog	0.9643201543
+UniRef50_Q0TRY8: Lysine-N-methylase, homolog|g__Clostridium.s__Clostridium_beijerinckii	0.9643201543
+UniRef50_Q3IWW3: Periplasmic sensor diguanylate cyclase	0.9643201543
+UniRef50_Q3IWW3: Periplasmic sensor diguanylate cyclase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9643201543
+UniRef50_C5Q3U9: Putative selenate reductase subunit YgfN (Fragment)	0.9643058191
+UniRef50_C5Q3U9: Putative selenate reductase subunit YgfN (Fragment)|unclassified	0.9643058191
+UniRef50_UPI000383B52E	0.9642073871
+UniRef50_UPI000383B52E|unclassified	0.9642073871
+UniRef50_Q9RZU0	0.9641500793
+UniRef50_Q9RZU0|unclassified	0.9641500793
+UniRef50_K2J066	0.9640660235
+UniRef50_K2J066|unclassified	0.9640660235
+UniRef50_UPI0003608DE6: hypothetical protein	0.9638118351
+UniRef50_UPI0003608DE6: hypothetical protein|unclassified	0.9638118351
+UniRef50_V5NNB3: Iron-regulated outer membrane protein FrbP_1	0.9637816746
+UniRef50_V5NNB3: Iron-regulated outer membrane protein FrbP_1|g__Helicobacter.s__Helicobacter_pylori	0.9637816746
+UniRef50_S9RGW6: Flagellar protein FlgJ, putative	0.9636857966
+UniRef50_S9RGW6: Flagellar protein FlgJ, putative|unclassified	0.9636857966
+UniRef50_UPI000479B16A: cytochrome C oxidase	0.9636676429
+UniRef50_UPI000479B16A: cytochrome C oxidase|unclassified	0.9636676429
+UniRef50_Q75HR2	0.9635791005
+UniRef50_Q75HR2|unclassified	0.9635791005
+UniRef50_Q3IVQ7	0.9635498270
+UniRef50_Q3IVQ7|unclassified	0.9635498270
+UniRef50_E3IHD0: Aliphatic sulfonates family ABC transporter, periplasmic ligand-binding protein	0.9633911368
+UniRef50_E3IHD0: Aliphatic sulfonates family ABC transporter, periplasmic ligand-binding protein|g__Clostridium.s__Clostridium_beijerinckii	0.9633911368
+UniRef50_Q9HWI0: D-alanine--D-alanine ligase A	0.9633911368
+UniRef50_Q9HWI0: D-alanine--D-alanine ligase A|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9633911368
+UniRef50_V9XDD0: Diaminohydroxyphosphoribosylaminopyrimidine deaminase	0.9633911368
+UniRef50_V9XDD0: Diaminohydroxyphosphoribosylaminopyrimidine deaminase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9633911368
+UniRef50_W1MGC9	0.9632531632
+UniRef50_W1MGC9|unclassified	0.9632531632
+UniRef50_UPI00037C99A4: hypothetical protein	0.9631878497
+UniRef50_UPI00037C99A4: hypothetical protein|unclassified	0.9631878497
+UniRef50_G8VEA6	0.9628583356
+UniRef50_G8VEA6|g__Propionibacterium.s__Propionibacterium_acnes	0.9628583356
+UniRef50_B4RFJ6: Type II secretion system protein N	0.9627306776
+UniRef50_B4RFJ6: Type II secretion system protein N|unclassified	0.9627306776
+UniRef50_E3EZR9	0.9625482734
+UniRef50_E3EZR9|unclassified	0.9625482734
+UniRef50_UPI000365642F: hypothetical protein	0.9625145410
+UniRef50_UPI000365642F: hypothetical protein|unclassified	0.9625145410
+UniRef50_A6LU76	0.9624639076
+UniRef50_A6LU76|g__Clostridium.s__Clostridium_beijerinckii	0.9624639076
+UniRef50_A6LZN7	0.9624639076
+UniRef50_A6LZN7|g__Clostridium.s__Clostridium_beijerinckii	0.9624639076
+UniRef50_UPI0003478999: hypothetical protein	0.9623630957
+UniRef50_UPI0003478999: hypothetical protein|unclassified	0.9623630957
+UniRef50_R4M4A1	0.9622303746
+UniRef50_R4M4A1|unclassified	0.9622303746
+UniRef50_K0VX80: Aldo/keto reductase (Fragment)	0.9620286695
+UniRef50_K0VX80: Aldo/keto reductase (Fragment)|unclassified	0.9620286695
+UniRef50_A7ZQB2	0.9619095356
+UniRef50_A7ZQB2|unclassified	0.9619095356
+UniRef50_UPI0001FFDBB7: Rieske (2Fe-2S) protein	0.9618968984
+UniRef50_UPI0001FFDBB7: Rieske (2Fe-2S) protein|unclassified	0.9618968984
+UniRef50_X0UKM2: Marine sediment metagenome DNA, contig: S01H1_S14129 (Fragment)	0.9618504175
+UniRef50_X0UKM2: Marine sediment metagenome DNA, contig: S01H1_S14129 (Fragment)|unclassified	0.9618504175
+UniRef50_D5CE37: FMN reductase (NADH) RutF	0.9618323468
+UniRef50_D5CE37: FMN reductase (NADH) RutF|unclassified	0.9618323468
+UniRef50_Q849D6	0.9617728348
+UniRef50_Q849D6|unclassified	0.9617728348
+UniRef50_UPI000350B9F4: PREDICTED: vegetative cell wall protein gp1-like	0.9617419110
+UniRef50_UPI000350B9F4: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.9617419110
+UniRef50_N9IA23	0.9616854831
+UniRef50_N9IA23|unclassified	0.9616854831
+UniRef50_UPI0003641A81: 30S ribosomal protein S17	0.9616539268
+UniRef50_UPI0003641A81: 30S ribosomal protein S17|unclassified	0.9616539268
+UniRef50_F4FTG4: Galactonate dehydratase	0.9615384615
+UniRef50_F4FTG4: Galactonate dehydratase|g__Clostridium.s__Clostridium_beijerinckii	0.9615384615
+UniRef50_U2B9W5	0.9612711589
+UniRef50_U2B9W5|unclassified	0.9612711589
+UniRef50_UPI00047E80CF: hypothetical protein	0.9611243358
+UniRef50_UPI00047E80CF: hypothetical protein|unclassified	0.9611243358
+UniRef50_UPI00047E628F: hypothetical protein, partial	0.9609475156
+UniRef50_UPI00047E628F: hypothetical protein, partial|unclassified	0.9609475156
+UniRef50_V6PQ44	0.9608976781
+UniRef50_V6PQ44|unclassified	0.9608976781
+UniRef50_C5Z886	0.9607628151
+UniRef50_C5Z886|unclassified	0.9607628151
+UniRef50_G4RBZ3	0.9606486793
+UniRef50_G4RBZ3|unclassified	0.9606486793
+UniRef50_B9TKC1	0.9606147935
+UniRef50_B9TKC1|unclassified	0.9606147935
+UniRef50_M9VFY2	0.9606147935
+UniRef50_M9VFY2|g__Propionibacterium.s__Propionibacterium_acnes	0.9606147935
+UniRef50_Q2ILV7	0.9606147935
+UniRef50_Q2ILV7|unclassified	0.9606147935
+UniRef50_U5MQT4: Pentapeptide repeat protein	0.9606147935
+UniRef50_U5MQT4: Pentapeptide repeat protein|g__Clostridium.s__Clostridium_beijerinckii	0.9606147935
+UniRef50_UPI000378F32E: hypothetical protein	0.9606147935
+UniRef50_UPI000378F32E: hypothetical protein|unclassified	0.9606147935
+UniRef50_UPI0003B4B808: amino acid ABC transporter ATPase, partial	0.9605864387
+UniRef50_UPI0003B4B808: amino acid ABC transporter ATPase, partial|unclassified	0.9605864387
+UniRef50_N8K6N9	0.9605498151
+UniRef50_N8K6N9|unclassified	0.9605498151
+UniRef50_UPI0002BCA4B1	0.9605395476
+UniRef50_UPI0002BCA4B1|unclassified	0.9605395476
+UniRef50_E6VE45: Cytochrome oxidase maturation protein, cbb3-type	0.9604371092
+UniRef50_E6VE45: Cytochrome oxidase maturation protein, cbb3-type|unclassified	0.9604371092
+UniRef50_I6Q5N8	0.9603173735
+UniRef50_I6Q5N8|unclassified	0.9603173735
+UniRef50_UPI0002FD23FE: hypothetical protein	0.9600622655
+UniRef50_UPI0002FD23FE: hypothetical protein|unclassified	0.9600622655
+UniRef50_UPI0003EFA1D6: hypothetical protein	0.9599324582
+UniRef50_UPI0003EFA1D6: hypothetical protein|unclassified	0.9599324582
+UniRef50_A0A058ZQH1	0.9599190474
+UniRef50_A0A058ZQH1|unclassified	0.9599190474
+UniRef50_A8LUA6	0.9597511061
+UniRef50_A8LUA6|unclassified	0.9597511061
+UniRef50_U5N005: Signaling protein	0.9596984226
+UniRef50_U5N005: Signaling protein|g__Clostridium.s__Clostridium_beijerinckii	0.9596984226
+UniRef50_F0KP57: Phospholipase D	0.9596928983
+UniRef50_F0KP57: Phospholipase D|g__Acinetobacter.s__Acinetobacter_baumannii	0.9596928983
+UniRef50_UPI00046F08B0: hypothetical protein	0.9594546915
+UniRef50_UPI00046F08B0: hypothetical protein|unclassified	0.9594546915
+UniRef50_UPI0003B71714: hypothetical protein	0.9593289881
+UniRef50_UPI0003B71714: hypothetical protein|unclassified	0.9593289881
+UniRef50_C2YHA6	0.9591752024
+UniRef50_C2YHA6|unclassified	0.9591752024
+UniRef50_A3DIZ4: DNA-directed RNA polymerase subunit beta	0.9591725709
+UniRef50_A3DIZ4: DNA-directed RNA polymerase subunit beta|g__Clostridium.s__Clostridium_beijerinckii	0.8774695821
+UniRef50_A3DIZ4: DNA-directed RNA polymerase subunit beta|unclassified	0.0817029888
+UniRef50_UPI000364CCB2: hypothetical protein	0.9591533466
+UniRef50_UPI000364CCB2: hypothetical protein|unclassified	0.9591533466
+UniRef50_UPI00037182FB: hypothetical protein	0.9588146745
+UniRef50_UPI00037182FB: hypothetical protein|unclassified	0.9588146745
+UniRef50_A2RHJ5: Protein translocase subunit SecA	0.9587727709
+UniRef50_A2RHJ5: Protein translocase subunit SecA|g__Streptococcus.s__Streptococcus_agalactiae	0.9587727709
+UniRef50_Q1R7E0	0.9587727709
+UniRef50_Q1R7E0|g__Escherichia.s__Escherichia_coli	0.9587727709
+UniRef50_X0UGT8: Marine sediment metagenome DNA, contig: S01H1_S14047 (Fragment)	0.9587685675
+UniRef50_X0UGT8: Marine sediment metagenome DNA, contig: S01H1_S14047 (Fragment)|unclassified	0.9587685675
+UniRef50_UPI0002558195: ABC transporter ATP-binding protein, partial	0.9583245391
+UniRef50_UPI0002558195: ABC transporter ATP-binding protein, partial|unclassified	0.9583245391
+UniRef50_UPI0004787472: membrane protein	0.9583156861
+UniRef50_UPI0004787472: membrane protein|unclassified	0.9583156861
+UniRef50_C5B8D9: Transcriptional regulator, DeoR family	0.9581000991
+UniRef50_C5B8D9: Transcriptional regulator, DeoR family|unclassified	0.9581000991
+UniRef50_Q3I510: EaeH	0.9580457173
+UniRef50_Q3I510: EaeH|g__Escherichia.s__Escherichia_coli	0.9580457173
+UniRef50_A7T466: Predicted protein	0.9580040442
+UniRef50_A7T466: Predicted protein|unclassified	0.9580040442
+UniRef50_UPI000363CE5A: glutathione S-transferase	0.9578769702
+UniRef50_UPI000363CE5A: glutathione S-transferase|unclassified	0.9578769702
+UniRef50_I6F5H6: FhlA transcriptional activator domain protein	0.9578544061
+UniRef50_I6F5H6: FhlA transcriptional activator domain protein|unclassified	0.9578544061
+UniRef50_G4LFL9: LysR family transcriptional regulator	0.9578544061
+UniRef50_G4LFL9: LysR family transcriptional regulator|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9578544061
+UniRef50_L0A6M1: ABC-type dipeptide/oligopeptide/nickel transport system, permease component	0.9578544061
+UniRef50_L0A6M1: ABC-type dipeptide/oligopeptide/nickel transport system, permease component|g__Deinococcus.s__Deinococcus_radiodurans	0.9578544061
+UniRef50_S5CVX5	0.9575861488
+UniRef50_S5CVX5|unclassified	0.9575861488
+UniRef50_UPI0003B33675: hypothetical protein, partial	0.9573266462
+UniRef50_UPI0003B33675: hypothetical protein, partial|unclassified	0.9573266462
+UniRef50_UPI000466462E: hypothetical protein, partial	0.9572831919
+UniRef50_UPI000466462E: hypothetical protein, partial|unclassified	0.9572831919
+UniRef50_D5CF58: Cell division protein MukB	0.9572420970
+UniRef50_D5CF58: Cell division protein MukB|g__Escherichia.s__Escherichia_coli	0.9572420970
+UniRef50_A6E0W9	0.9570838129
+UniRef50_A6E0W9|unclassified	0.9570838129
+UniRef50_T1ASP7: ABC transporter, permease protein (Fragment)	0.9570442223
+UniRef50_T1ASP7: ABC transporter, permease protein (Fragment)|unclassified	0.9570442223
+UniRef50_L8UAT8: Ferritin like protein-2	0.9570056828
+UniRef50_L8UAT8: Ferritin like protein-2|unclassified	0.9570056828
+UniRef50_A6LZV8: Glycoside hydrolase, family 3 domain protein	0.9569938853
+UniRef50_A6LZV8: Glycoside hydrolase, family 3 domain protein|g__Clostridium.s__Clostridium_beijerinckii	0.9569938853
+UniRef50_W8S3S2: Oxidoreductase probably involved in sulfite reduction	0.9569807746
+UniRef50_W8S3S2: Oxidoreductase probably involved in sulfite reduction|unclassified	0.9569807746
+UniRef50_A0A033ADX7	0.9569377990
+UniRef50_A0A033ADX7|unclassified	0.9569377990
+UniRef50_A6LXP5: NADH-quinone oxidoreductase subunit N	0.9569377990
+UniRef50_A6LXP5: NADH-quinone oxidoreductase subunit N|g__Clostridium.s__Clostridium_beijerinckii	0.9569377990
+UniRef50_G4LTR1	0.9569377990
+UniRef50_G4LTR1|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9569377990
+UniRef50_M6C423	0.9569353195
+UniRef50_M6C423|unclassified	0.9569353195
+UniRef50_B3QQR6: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha	0.9568875831
+UniRef50_B3QQR6: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|unclassified	0.9568875831
+UniRef50_T8N4A9	0.9568502403
+UniRef50_T8N4A9|unclassified	0.9568502403
+UniRef50_UPI00046E4BB0: arabinose isomerase, partial	0.9568245557
+UniRef50_UPI00046E4BB0: arabinose isomerase, partial|unclassified	0.9568245557
+UniRef50_UPI0002FCF501: hypothetical protein	0.9568090883
+UniRef50_UPI0002FCF501: hypothetical protein|unclassified	0.9568090883
+UniRef50_UPI00016A620A: SsrA-binding protein, partial	0.9567810473
+UniRef50_UPI00016A620A: SsrA-binding protein, partial|unclassified	0.9567810473
+UniRef50_S4YQV0	0.9566629927
+UniRef50_S4YQV0|unclassified	0.9566629927
+UniRef50_U7GNJ3	0.9564588240
+UniRef50_U7GNJ3|unclassified	0.9564588240
+UniRef50_UPI0003B56E19: ribosome-binding factor A	0.9564452976
+UniRef50_UPI0003B56E19: ribosome-binding factor A|unclassified	0.9564452976
+UniRef50_UPI00045EA6FB: hypothetical protein	0.9563654092
+UniRef50_UPI00045EA6FB: hypothetical protein|unclassified	0.9563654092
+UniRef50_S6AQP1	0.9562270155
+UniRef50_S6AQP1|unclassified	0.9562270155
+UniRef50_C1N520: Predicted protein	0.9561959743
+UniRef50_C1N520: Predicted protein|unclassified	0.9561959743
+UniRef50_C8CHS1: Enhanced green fluorescent protein	0.9560229446
+UniRef50_C8CHS1: Enhanced green fluorescent protein|unclassified	0.9560229446
+UniRef50_E6PKM3	0.9560229446
+UniRef50_E6PKM3|unclassified	0.9560229446
+UniRef50_Q9RVI8	0.9560229446
+UniRef50_Q9RVI8|g__Deinococcus.s__Deinococcus_radiodurans	0.9560229446
+UniRef50_W7VNI8: DivIVA protein	0.9559288839
+UniRef50_W7VNI8: DivIVA protein|unclassified	0.9559288839
+UniRef50_UPI000471D6BF: ferredoxin, partial	0.9559241598
+UniRef50_UPI000471D6BF: ferredoxin, partial|unclassified	0.9559241598
+UniRef50_UPI0000222F5E: Hypothetical protein CBG18769	0.9558973947
+UniRef50_UPI0000222F5E: Hypothetical protein CBG18769|unclassified	0.9558973947
+UniRef50_A0A059LC36	0.9558833677
+UniRef50_A0A059LC36|unclassified	0.9558833677
+UniRef50_UPI00046A638F: hypothetical protein	0.9557194736
+UniRef50_UPI00046A638F: hypothetical protein|unclassified	0.9557194736
+UniRef50_UPI00027F4CA3	0.9554691663
+UniRef50_UPI00027F4CA3|unclassified	0.9554691663
+UniRef50_L7LQU6: Putative monotil peptide	0.9553860752
+UniRef50_L7LQU6: Putative monotil peptide|unclassified	0.9553860752
+UniRef50_J3KZC6	0.9553579633
+UniRef50_J3KZC6|unclassified	0.9553579633
+UniRef50_A0A031HYI9: Transposase	0.9553417842
+UniRef50_A0A031HYI9: Transposase|unclassified	0.9553417842
+UniRef50_UPI00036C9515: hypothetical protein	0.9552264123
+UniRef50_UPI00036C9515: hypothetical protein|unclassified	0.9552264123
+UniRef50_H3VM32	0.9551179888
+UniRef50_H3VM32|unclassified	0.9551179888
+UniRef50_A0A052IA91	0.9551098376
+UniRef50_A0A052IA91|unclassified	0.9551098376
+UniRef50_K7WHD2	0.9551098376
+UniRef50_K7WHD2|unclassified	0.9551098376
+UniRef50_UPI00036D3DB7: hypothetical protein	0.9551098376
+UniRef50_UPI00036D3DB7: hypothetical protein|unclassified	0.9551098376
+UniRef50_UPI000476CA5A: hypothetical protein	0.9550891055
+UniRef50_UPI000476CA5A: hypothetical protein|unclassified	0.9550891055
+UniRef50_A0A018CBG1	0.9548668473
+UniRef50_A0A018CBG1|unclassified	0.9548668473
+UniRef50_B1LGX1	0.9548339797
+UniRef50_B1LGX1|unclassified	0.9548339797
+UniRef50_G8ALA1: Oxidoreductase	0.9548081848
+UniRef50_G8ALA1: Oxidoreductase|unclassified	0.9548081848
+UniRef50_UPI000467F4C5: hypothetical protein	0.9544871547
+UniRef50_UPI000467F4C5: hypothetical protein|unclassified	0.9544871547
+UniRef50_J9NUZ7	0.9544540248
+UniRef50_J9NUZ7|unclassified	0.9544540248
+UniRef50_B0TBM6: Light-independent protochlorophyllide reductase iron-sulfur ATP-binding protein	0.9544142770
+UniRef50_B0TBM6: Light-independent protochlorophyllide reductase iron-sulfur ATP-binding protein|unclassified	0.9544142770
+UniRef50_B2VHD6: Protein RecA	0.9541984733
+UniRef50_B2VHD6: Protein RecA|g__Acinetobacter.s__Acinetobacter_baumannii	0.9541984733
+UniRef50_B5B0J6: FAD-dependent urate hydroxylase	0.9541984733
+UniRef50_B5B0J6: FAD-dependent urate hydroxylase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9541984733
+UniRef50_Q9RYF7: Cation transporter, putative	0.9541984733
+UniRef50_Q9RYF7: Cation transporter, putative|g__Deinococcus.s__Deinococcus_radiodurans	0.9541984733
+UniRef50_K0JIM3: Ribulose-5-phosphate 4-epimerase-like epimerase/aldolase	0.9540311086
+UniRef50_K0JIM3: Ribulose-5-phosphate 4-epimerase-like epimerase/aldolase|unclassified	0.9540311086
+UniRef50_V7EMW9	0.9539357245
+UniRef50_V7EMW9|unclassified	0.9539357245
+UniRef50_X2LP46	0.9539172788
+UniRef50_X2LP46|unclassified	0.9539172788
+UniRef50_D5MN09: Putative carboxylase	0.9538983729
+UniRef50_D5MN09: Putative carboxylase|unclassified	0.9538983729
+UniRef50_N6V8J9	0.9538157377
+UniRef50_N6V8J9|unclassified	0.9538157377
+UniRef50_A7IGN0: HI0933 family protein	0.9537753935
+UniRef50_A7IGN0: HI0933 family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9107468124
+UniRef50_A7IGN0: HI0933 family protein|unclassified	0.0430285811
+UniRef50_V9U5D1: Glucose dehydrogenase, PQQ-dependent	0.9536462020
+UniRef50_V9U5D1: Glucose dehydrogenase, PQQ-dependent|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9536462020
+UniRef50_B1KEG2: 40-residue YVTN family beta-propeller repeat protein	0.9534668676
+UniRef50_B1KEG2: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.9534668676
+UniRef50_F9KCR7	0.9534024042
+UniRef50_F9KCR7|unclassified	0.9534024042
+UniRef50_A6LR81: Coenzyme F390 synthetase-like protein	0.9532888465
+UniRef50_A6LR81: Coenzyme F390 synthetase-like protein|g__Clostridium.s__Clostridium_beijerinckii	0.9532888465
+UniRef50_A6LZM4	0.9532888465
+UniRef50_A6LZM4|g__Clostridium.s__Clostridium_beijerinckii	0.9532888465
+UniRef50_D7GG00: Na+/H+ antiporter	0.9532888465
+UniRef50_D7GG00: Na+/H+ antiporter|g__Propionibacterium.s__Propionibacterium_acnes	0.9532888465
+UniRef50_UPI00035F908D: hypothetical protein	0.9532544208
+UniRef50_UPI00035F908D: hypothetical protein|unclassified	0.9532544208
+UniRef50_W6RJZ3: Small heat shock protein ibpA 16 kDa heat shock protein A	0.9531936697
+UniRef50_W6RJZ3: Small heat shock protein ibpA 16 kDa heat shock protein A|unclassified	0.9531936697
+UniRef50_B6IXR1: Replication protein A, putative	0.9531702297
+UniRef50_B6IXR1: Replication protein A, putative|unclassified	0.9531702297
+UniRef50_F3NZ35: DeaD/DeaH box helicase	0.9527349900
+UniRef50_F3NZ35: DeaD/DeaH box helicase|g__Propionibacterium.s__Propionibacterium_acnes	0.9527349900
+UniRef50_W8S848	0.9527258484
+UniRef50_W8S848|unclassified	0.9527258484
+UniRef50_F3GMR5	0.9526818180
+UniRef50_F3GMR5|unclassified	0.9526818180
+UniRef50_K2D7F8	0.9526695479
+UniRef50_K2D7F8|unclassified	0.9526695479
+UniRef50_G4VUH5: Conjugative transfer pilus assembly protein	0.9525600107
+UniRef50_G4VUH5: Conjugative transfer pilus assembly protein|unclassified	0.9525600107
+UniRef50_W5X521: Virulence-associated protein	0.9525570506
+UniRef50_W5X521: Virulence-associated protein|unclassified	0.9525570506
+UniRef50_S9TJG0	0.9525289700
+UniRef50_S9TJG0|unclassified	0.9525289700
+UniRef50_V7FT41: Membrane protein	0.9525243987
+UniRef50_V7FT41: Membrane protein|unclassified	0.9525243987
+UniRef50_W1N6M3	0.9524326159
+UniRef50_W1N6M3|unclassified	0.9524326159
+UniRef50_L8A867: Glycerol dehydrogenase	0.9523809524
+UniRef50_L8A867: Glycerol dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	0.9523809524
+UniRef50_F2V5D2: PE-PGRS family protein (Fragment)	0.9520486174
+UniRef50_F2V5D2: PE-PGRS family protein (Fragment)|unclassified	0.9520486174
+UniRef50_U9JGX7	0.9520334633
+UniRef50_U9JGX7|unclassified	0.9520334633
+UniRef50_A5VZN8	0.9519089197
+UniRef50_A5VZN8|unclassified	0.9519089197
+UniRef50_UPI0002DD6F4C: hypothetical protein	0.9516399312
+UniRef50_UPI0002DD6F4C: hypothetical protein|unclassified	0.9516399312
+UniRef50_UPI000479FA8A: hypothetical protein	0.9516113656
+UniRef50_UPI000479FA8A: hypothetical protein|unclassified	0.9516113656
+UniRef50_J0N662	0.9514932684
+UniRef50_J0N662|unclassified	0.9514932684
+UniRef50_F0RJD3	0.9514747859
+UniRef50_F0RJD3|g__Deinococcus.s__Deinococcus_radiodurans	0.9514747859
+UniRef50_Q1J2D3: Permease YjgP/YjgQ	0.9514747859
+UniRef50_Q1J2D3: Permease YjgP/YjgQ|g__Deinococcus.s__Deinococcus_radiodurans	0.9514747859
+UniRef50_F9Z0L2: Iron compound ABC transporter	0.9514690821
+UniRef50_F9Z0L2: Iron compound ABC transporter|unclassified	0.9514690821
+UniRef50_K0R4K7	0.9513724446
+UniRef50_K0R4K7|unclassified	0.9513724446
+UniRef50_T9BS98: TVP38/TMEM64 family inner membrane protein ydjZ	0.9512773897
+UniRef50_T9BS98: TVP38/TMEM64 family inner membrane protein ydjZ|unclassified	0.9512773897
+UniRef50_UPI00036D4CE8: hypothetical protein	0.9512686678
+UniRef50_UPI00036D4CE8: hypothetical protein|unclassified	0.9512686678
+UniRef50_A6NPH2: BMC domain protein	0.9512579705
+UniRef50_A6NPH2: BMC domain protein|unclassified	0.9512579705
+UniRef50_UPI0003AE07B3: PREDICTED: myosin heavy chain IB-like, partial	0.9512180603
+UniRef50_UPI0003AE07B3: PREDICTED: myosin heavy chain IB-like, partial|unclassified	0.9512180603
+UniRef50_D4CK19: MaoC-like protein	0.9509322147
+UniRef50_D4CK19: MaoC-like protein|unclassified	0.9509322147
+UniRef50_B4STG4	0.9509310129
+UniRef50_B4STG4|unclassified	0.9509310129
+UniRef50_Q6I3L9: Ankyrin repeat domain protein	0.9508703470
+UniRef50_Q6I3L9: Ankyrin repeat domain protein|unclassified	0.9508703470
+UniRef50_M4R497: Guanosine-3',5'-bis pyrophosphate 3'-pyrophosphohydrolase/(P)ppGpp synthetase II	0.9507963456
+UniRef50_M4R497: Guanosine-3',5'-bis pyrophosphate 3'-pyrophosphohydrolase/(P)ppGpp synthetase II|g__Acinetobacter.s__Acinetobacter_baumannii	0.9507963456
+UniRef50_J2X200: Coproporphyrinogen III oxidase	0.9507128451
+UniRef50_J2X200: Coproporphyrinogen III oxidase|unclassified	0.9507128451
+UniRef50_T6MY66: UPF0380 protein yubP	0.9506873000
+UniRef50_T6MY66: UPF0380 protein yubP|unclassified	0.9506873000
+UniRef50_UPI00035F5B2B: hypothetical protein	0.9506043442
+UniRef50_UPI00035F5B2B: hypothetical protein|unclassified	0.9506043442
+UniRef50_B2IJJ4: Riboflavin biosynthesis protein RibD	0.9505703422
+UniRef50_B2IJJ4: Riboflavin biosynthesis protein RibD|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9505703422
+UniRef50_V5SXX5: Protein AmbC	0.9505703422
+UniRef50_V5SXX5: Protein AmbC|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9505703422
+UniRef50_W1D454: Glycolate utilization operon transcriptional activator GlcC	0.9503457310
+UniRef50_W1D454: Glycolate utilization operon transcriptional activator GlcC|unclassified	0.9503457310
+UniRef50_W9GX21: DNA polymerase III subunit epsilon	0.9502399712
+UniRef50_W9GX21: DNA polymerase III subunit epsilon|unclassified	0.9502399712
+UniRef50_W8QWE7	0.9500954098
+UniRef50_W8QWE7|unclassified	0.9500954098
+UniRef50_E0XV83	0.9500224630
+UniRef50_E0XV83|unclassified	0.9500224630
+UniRef50_Q017S2: Probable membrane protein YCR013c-yeast (ISS)	0.9499079189
+UniRef50_Q017S2: Probable membrane protein YCR013c-yeast (ISS)|unclassified	0.9499079189
+UniRef50_UPI00037EE581: hypothetical protein	0.9497760038
+UniRef50_UPI00037EE581: hypothetical protein|unclassified	0.9497760038
+UniRef50_UPI0001B46445: NrdR family transcriptional regulator	0.9497755705
+UniRef50_UPI0001B46445: NrdR family transcriptional regulator|unclassified	0.9497755705
+UniRef50_A0A031DKC3	0.9496676163
+UniRef50_A0A031DKC3|unclassified	0.9496676163
+UniRef50_D8JEM9	0.9496676163
+UniRef50_D8JEM9|g__Acinetobacter.s__Acinetobacter_baumannii	0.9496676163
+UniRef50_K0UFN2	0.9496548427
+UniRef50_K0UFN2|unclassified	0.9496548427
+UniRef50_UPI000365867C: hypothetical protein	0.9492509286
+UniRef50_UPI000365867C: hypothetical protein|unclassified	0.9492509286
+UniRef50_Z2DA35	0.9489401494
+UniRef50_Z2DA35|unclassified	0.9489401494
+UniRef50_UPI00036724F3: hypothetical protein	0.9489298937
+UniRef50_UPI00036724F3: hypothetical protein|unclassified	0.9489298937
+UniRef50_W1IMF3	0.9488500878
+UniRef50_W1IMF3|unclassified	0.9488500878
+UniRef50_M9V8S5: Cellulase (Glycosyl hydrolase family 5)	0.9487666034
+UniRef50_M9V8S5: Cellulase (Glycosyl hydrolase family 5)|g__Propionibacterium.s__Propionibacterium_acnes	0.9487666034
+UniRef50_R4RE02: Amino acid permease YtnA	0.9487666034
+UniRef50_R4RE02: Amino acid permease YtnA|g__Acinetobacter.s__Acinetobacter_baumannii	0.9487666034
+UniRef50_UPI0003EF2CD6: hypothetical protein, partial	0.9487666034
+UniRef50_UPI0003EF2CD6: hypothetical protein, partial|unclassified	0.9487666034
+UniRef50_UPI00034D7F07: hypothetical protein	0.9487104616
+UniRef50_UPI00034D7F07: hypothetical protein|unclassified	0.9487104616
+UniRef50_Q9PB92	0.9486810550
+UniRef50_Q9PB92|unclassified	0.9486810550
+UniRef50_UPI00035E8D67: hypothetical protein	0.9486116932
+UniRef50_UPI00035E8D67: hypothetical protein|unclassified	0.9486116932
+UniRef50_Q9KRL3: Carboxynorspermidine synthase	0.9484749991
+UniRef50_Q9KRL3: Carboxynorspermidine synthase|unclassified	0.9484749991
+UniRef50_K4SDC5: Mobile element protein	0.9484634659
+UniRef50_K4SDC5: Mobile element protein|unclassified	0.9484634659
+UniRef50_F3ZHG8: Putative zinc-binding oxidoreductase	0.9484467372
+UniRef50_F3ZHG8: Putative zinc-binding oxidoreductase|unclassified	0.9484467372
+UniRef50_G2TA75: TRAP transporter solute receptor TAXI family protein	0.9483776130
+UniRef50_G2TA75: TRAP transporter solute receptor TAXI family protein|unclassified	0.9483776130
+UniRef50_UPI00046C9CAD: zinc-responsive transcriptional regulator	0.9483694380
+UniRef50_UPI00046C9CAD: zinc-responsive transcriptional regulator|unclassified	0.9483694380
+UniRef50_P30044: Peroxiredoxin-5, mitochondrial	0.9483048653
+UniRef50_P30044: Peroxiredoxin-5, mitochondrial|unclassified	0.9483048653
+UniRef50_A1BAJ3: Peptidase M23B	0.9482644321
+UniRef50_A1BAJ3: Peptidase M23B|unclassified	0.9482644321
+UniRef50_A9U7L5: Predicted protein (Fragment)	0.9482570148
+UniRef50_A9U7L5: Predicted protein (Fragment)|unclassified	0.9482570148
+UniRef50_Q9SWT7: HV1PST	0.9482369872
+UniRef50_Q9SWT7: HV1PST|unclassified	0.9482369872
+UniRef50_V5CRG3: 4Fe-4S single cluster domain protein	0.9481213975
+UniRef50_V5CRG3: 4Fe-4S single cluster domain protein|unclassified	0.9481213975
+UniRef50_W7Q5R4	0.9480738384
+UniRef50_W7Q5R4|unclassified	0.9480738384
+UniRef50_C0P9U0	0.9480596277
+UniRef50_C0P9U0|unclassified	0.9480596277
+UniRef50_A0A024L790: Methyl-thioribulose-1-phosphate dehydratase	0.9479313596
+UniRef50_A0A024L790: Methyl-thioribulose-1-phosphate dehydratase|unclassified	0.9479313596
+UniRef50_I6EJW6	0.9478672986
+UniRef50_I6EJW6|g__Escherichia.s__Escherichia_coli	0.9478672986
+UniRef50_Q9RTL7: Fosmidomycin resistance protein, putative	0.9478672986
+UniRef50_Q9RTL7: Fosmidomycin resistance protein, putative|g__Deinococcus.s__Deinococcus_radiodurans	0.9478672986
+UniRef50_C2E2N5: Putative enterobactin synthase subunit F (Fragment)	0.9477148944
+UniRef50_C2E2N5: Putative enterobactin synthase subunit F (Fragment)|unclassified	0.9477148944
+UniRef50_B0RIE3: L-arabinose isomerase	0.9475675575
+UniRef50_B0RIE3: L-arabinose isomerase|g__Clostridium.s__Clostridium_beijerinckii	0.7668711656
+UniRef50_B0RIE3: L-arabinose isomerase|unclassified	0.1806963919
+UniRef50_UPI00028995EB: 6-pyruvoyl-tetrahydropterin synthase	0.9475034255
+UniRef50_UPI00028995EB: 6-pyruvoyl-tetrahydropterin synthase|unclassified	0.9475034255
+UniRef50_U1PYF6	0.9471877766
+UniRef50_U1PYF6|unclassified	0.9471877766
+UniRef50_F2AE12	0.9471699360
+UniRef50_F2AE12|unclassified	0.9471699360
+UniRef50_E6S1Z5: Menaquinone biosynthesis protein, SCO4494 family	0.9469696970
+UniRef50_E6S1Z5: Menaquinone biosynthesis protein, SCO4494 family|g__Helicobacter.s__Helicobacter_pylori	0.9469696970
+UniRef50_G7U7Y1	0.9469696970
+UniRef50_G7U7Y1|g__Propionibacterium.s__Propionibacterium_acnes	0.9469696970
+UniRef50_E5QTA2	0.9468831776
+UniRef50_E5QTA2|unclassified	0.9468831776
+UniRef50_Q9RRR7: Sensory box sensor histidine kinase	0.9468410022
+UniRef50_Q9RRR7: Sensory box sensor histidine kinase|g__Deinococcus.s__Deinococcus_radiodurans	0.9468410022
+UniRef50_Q0FMM6: Peptide ABC transporter, permease protein (Fragment)	0.9467929066
+UniRef50_Q0FMM6: Peptide ABC transporter, permease protein (Fragment)|unclassified	0.9467929066
+UniRef50_UPI0004796361: hypothetical protein	0.9467645151
+UniRef50_UPI0004796361: hypothetical protein|unclassified	0.9467645151
+UniRef50_UPI0003A1EC9C: cytochrome C oxidase subunit IV	0.9467185601
+UniRef50_UPI0003A1EC9C: cytochrome C oxidase subunit IV|unclassified	0.9467185601
+UniRef50_X5QUZ2	0.9467024385
+UniRef50_X5QUZ2|unclassified	0.9467024385
+UniRef50_Q73E41: Calcium-transporting ATPase 1	0.9466761385
+UniRef50_Q73E41: Calcium-transporting ATPase 1|g__Clostridium.s__Clostridium_beijerinckii	0.8237191919
+UniRef50_Q73E41: Calcium-transporting ATPase 1|unclassified	0.1229569466
+UniRef50_UPI0004213A08: chemotaxis protein CheD	0.9463125700
+UniRef50_UPI0004213A08: chemotaxis protein CheD|unclassified	0.9463125700
+UniRef50_F2A4B5	0.9460737938
+UniRef50_F2A4B5|unclassified	0.9460737938
+UniRef50_G7LXD6	0.9460737938
+UniRef50_G7LXD6|g__Clostridium.s__Clostridium_beijerinckii	0.9460737938
+UniRef50_G7LY49: Transcriptional regulator, GntR family with LacI sensor	0.9460737938
+UniRef50_G7LY49: Transcriptional regulator, GntR family with LacI sensor|g__Clostridium.s__Clostridium_beijerinckii	0.9460737938
+UniRef50_H8GZI4: Secretion protein HlyD	0.9460737938
+UniRef50_H8GZI4: Secretion protein HlyD|g__Deinococcus.s__Deinococcus_radiodurans	0.9460737938
+UniRef50_I2FAM4: SpfH domain/band 7 family protein	0.9460737938
+UniRef50_I2FAM4: SpfH domain/band 7 family protein|g__Helicobacter.s__Helicobacter_pylori	0.9460737938
+UniRef50_S9QXB6	0.9460312184
+UniRef50_S9QXB6|unclassified	0.9460312184
+UniRef50_Q28JJ0: Flagellar protein FlgJ putative	0.9459809324
+UniRef50_Q28JJ0: Flagellar protein FlgJ putative|unclassified	0.9459809324
+UniRef50_T0Z8M0: ISRSO5-transposase protein	0.9459658923
+UniRef50_T0Z8M0: ISRSO5-transposase protein|unclassified	0.9459658923
+UniRef50_UPI000471886D: hypothetical protein, partial	0.9458597641
+UniRef50_UPI000471886D: hypothetical protein, partial|unclassified	0.9458597641
+UniRef50_UPI00047C5CBE: hypothetical protein	0.9456095428
+UniRef50_UPI00047C5CBE: hypothetical protein|unclassified	0.9456095428
+UniRef50_UPI00019116B2: trehalose-6-phosphate phosphatase, partial	0.9454792896
+UniRef50_UPI00019116B2: trehalose-6-phosphate phosphatase, partial|unclassified	0.9454792896
+UniRef50_K6ZQ13	0.9454677875
+UniRef50_K6ZQ13|unclassified	0.9454677875
+UniRef50_A6M2S3: Threonyl/alanyl tRNA synthetase, SAD	0.9451795841
+UniRef50_A6M2S3: Threonyl/alanyl tRNA synthetase, SAD|g__Clostridium.s__Clostridium_beijerinckii	0.9451795841
+UniRef50_B7I2D1: Glycerophosphoryl diester phosphodiesterase	0.9451795841
+UniRef50_B7I2D1: Glycerophosphoryl diester phosphodiesterase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9451795841
+UniRef50_G7U407: O-antigen polymerase	0.9451795841
+UniRef50_G7U407: O-antigen polymerase|g__Propionibacterium.s__Propionibacterium_acnes	0.9451795841
+UniRef50_I9A2W0	0.9451795841
+UniRef50_I9A2W0|unclassified	0.9451795841
+UniRef50_A0A029LHT5: Inhibitor of sigma-G Gin family protein	0.9451242548
+UniRef50_A0A029LHT5: Inhibitor of sigma-G Gin family protein|unclassified	0.9451242548
+UniRef50_M1HJ56: Arginine/serine-rich splicing factor SR45 transcript VII	0.9448252722
+UniRef50_M1HJ56: Arginine/serine-rich splicing factor SR45 transcript VII|unclassified	0.9448252722
+UniRef50_I5XE34	0.9446134316
+UniRef50_I5XE34|unclassified	0.9446134316
+UniRef50_Q59086: Quinate/shikimate dehydrogenase (quinone)	0.9446089470
+UniRef50_Q59086: Quinate/shikimate dehydrogenase (quinone)|g__Acinetobacter.s__Acinetobacter_baumannii	0.9446089470
+UniRef50_Q3JVY5	0.9444998400
+UniRef50_Q3JVY5|unclassified	0.9444998400
+UniRef50_UPI0003343DE5: PREDICTED: transcription initiation factor TFIID subunit 4-like	0.9444002246
+UniRef50_UPI0003343DE5: PREDICTED: transcription initiation factor TFIID subunit 4-like|unclassified	0.9444002246
+UniRef50_S3KM01	0.9443089073
+UniRef50_S3KM01|unclassified	0.9443089073
+UniRef50_A4VQH6: Putative aminoacrylate peracid reductase RutC	0.9443025761
+UniRef50_A4VQH6: Putative aminoacrylate peracid reductase RutC|unclassified	0.9443025761
+UniRef50_W7J3E2	0.9442870633
+UniRef50_W7J3E2|unclassified	0.9442870633
+UniRef50_D4Z138	0.9442703927
+UniRef50_D4Z138|unclassified	0.9442703927
+UniRef50_A4WDK7: Nucleoside triphosphatase NudI	0.9441721358
+UniRef50_A4WDK7: Nucleoside triphosphatase NudI|unclassified	0.9441721358
+UniRef50_UPI0003B6885A: hypothetical protein	0.9440393335
+UniRef50_UPI0003B6885A: hypothetical protein|unclassified	0.9440393335
+UniRef50_UPI000191168B: flagellar assembly protein H	0.9440373097
+UniRef50_UPI000191168B: flagellar assembly protein H|unclassified	0.9440373097
+UniRef50_UPI0004785B37: hypothetical protein	0.9440292432
+UniRef50_UPI0004785B37: hypothetical protein|unclassified	0.9440292432
+UniRef50_W9EZB0	0.9438914613
+UniRef50_W9EZB0|unclassified	0.9438914613
+UniRef50_M4JIF6	0.9438280320
+UniRef50_M4JIF6|unclassified	0.9438280320
+UniRef50_Q2J3J6: Gamma-glutamyl phosphate reductase	0.9437365960
+UniRef50_Q2J3J6: Gamma-glutamyl phosphate reductase|unclassified	0.9437365960
+UniRef50_W0YNQ6	0.9437000565
+UniRef50_W0YNQ6|unclassified	0.9437000565
+UniRef50_V4RHM2	0.9436905096
+UniRef50_V4RHM2|unclassified	0.9436905096
+UniRef50_UPI0004726B74: hypothetical protein	0.9435960466
+UniRef50_UPI0004726B74: hypothetical protein|unclassified	0.9435960466
+UniRef50_UPI000464B7EB: hypothetical protein, partial	0.9435340975
+UniRef50_UPI000464B7EB: hypothetical protein, partial|unclassified	0.9435340975
+UniRef50_F0A853: PilS cassette	0.9434346470
+UniRef50_F0A853: PilS cassette|unclassified	0.9434346470
+UniRef50_A4VLK6: D-mannonate oxidoreductase	0.9433962264
+UniRef50_A4VLK6: D-mannonate oxidoreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9433962264
+UniRef50_A5WGD9: Endonuclease/exonuclease/phosphatase	0.9433962264
+UniRef50_A5WGD9: Endonuclease/exonuclease/phosphatase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9433962264
+UniRef50_F7ZNF0: PLP-dependent aminotransferase	0.9433962264
+UniRef50_F7ZNF0: PLP-dependent aminotransferase|g__Clostridium.s__Clostridium_beijerinckii	0.9433962264
+UniRef50_G7TFM6: Amine oxidase	0.9433962264
+UniRef50_G7TFM6: Amine oxidase|g__Deinococcus.s__Deinococcus_radiodurans	0.9433962264
+UniRef50_Q9GLW7: Peroxiredoxin-5, mitochondrial	0.9431085641
+UniRef50_Q9GLW7: Peroxiredoxin-5, mitochondrial|unclassified	0.9431085641
+UniRef50_F0XXB3	0.9430167699
+UniRef50_F0XXB3|unclassified	0.9430167699
+UniRef50_W1JGD7: Putative virulence factor (Fragment)	0.9427524224
+UniRef50_W1JGD7: Putative virulence factor (Fragment)|unclassified	0.9427524224
+UniRef50_R5YA52	0.9427402705
+UniRef50_R5YA52|unclassified	0.9427402705
+UniRef50_A4WTH7	0.9427300958
+UniRef50_A4WTH7|unclassified	0.9427300958
+UniRef50_F2U4B6	0.9425786516
+UniRef50_F2U4B6|unclassified	0.9425786516
+UniRef50_H3YCI4: Putative lipoprotein	0.9425336420
+UniRef50_H3YCI4: Putative lipoprotein|unclassified	0.9425336420
+UniRef50_D4HA38: OmpA family protein	0.9425070688
+UniRef50_D4HA38: OmpA family protein|g__Propionibacterium.s__Propionibacterium_acnes	0.9425070688
+UniRef50_D8JKE4: PHA synthase PhaC	0.9425070688
+UniRef50_D8JKE4: PHA synthase PhaC|g__Acinetobacter.s__Acinetobacter_baumannii	0.9425070688
+UniRef50_Q8DPY7	0.9425070688
+UniRef50_Q8DPY7|g__Streptococcus.s__Streptococcus_agalactiae	0.9425070688
+UniRef50_UPI0003C179F1: PREDICTED: zinc finger protein 773-like	0.9424573126
+UniRef50_UPI0003C179F1: PREDICTED: zinc finger protein 773-like|unclassified	0.9424573126
+UniRef50_X2LKI5: Heavy metal resistance protein	0.9424425258
+UniRef50_X2LKI5: Heavy metal resistance protein|unclassified	0.9424425258
+UniRef50_B8JF24: Cupin 2 conserved barrel domain protein	0.9422545634
+UniRef50_B8JF24: Cupin 2 conserved barrel domain protein|unclassified	0.9422545634
+UniRef50_UPI000382A63A: hypothetical protein	0.9420864959
+UniRef50_UPI000382A63A: hypothetical protein|unclassified	0.9420864959
+UniRef50_UPI0003613ED2: hypothetical protein	0.9418683872
+UniRef50_UPI0003613ED2: hypothetical protein|unclassified	0.9418683872
+UniRef50_Q54F10: NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial	0.9418369421
+UniRef50_Q54F10: NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial|unclassified	0.9418369421
+UniRef50_J0I3X2: Cag pathogenicity island protein Cagb	0.9418333647
+UniRef50_J0I3X2: Cag pathogenicity island protein Cagb|g__Helicobacter.s__Helicobacter_pylori	0.9418333647
+UniRef50_B9DIN2: Truncated capsular polysaccharide synthesis enzyme CapD (Fragment 1)	0.9417556515
+UniRef50_B9DIN2: Truncated capsular polysaccharide synthesis enzyme CapD (Fragment 1)|unclassified	0.9417556515
+UniRef50_F5ZFT9: Signal recognition particle receptor FtsY	0.9416195857
+UniRef50_F5ZFT9: Signal recognition particle receptor FtsY|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9416195857
+UniRef50_Q0TMJ7: Amidohydrolase homolog	0.9416195857
+UniRef50_Q0TMJ7: Amidohydrolase homolog|g__Clostridium.s__Clostridium_beijerinckii	0.9416195857
+UniRef50_Q9RVJ1: Branched-chain amino acid ABC transporter, permease protein	0.9416195857
+UniRef50_Q9RVJ1: Branched-chain amino acid ABC transporter, permease protein|g__Deinococcus.s__Deinococcus_radiodurans	0.9416195857
+UniRef50_E7BB49: Ribulose-1,5-bisphosphate carboxylase/oxygenase (RubisCO) large subunit (Fragment)	0.9414750949
+UniRef50_E7BB49: Ribulose-1,5-bisphosphate carboxylase/oxygenase (RubisCO) large subunit (Fragment)|unclassified	0.9414750949
+UniRef50_B4D1P7: Putative cytoplasmic protein, SciI	0.9414191128
+UniRef50_B4D1P7: Putative cytoplasmic protein, SciI|unclassified	0.9414191128
+UniRef50_UPI000255BC48: ArsR family transcriptional regulator	0.9413214955
+UniRef50_UPI000255BC48: ArsR family transcriptional regulator|unclassified	0.9413214955
+UniRef50_Q88FX7: HTH-type transcriptional repressor NicS	0.9412805134
+UniRef50_Q88FX7: HTH-type transcriptional repressor NicS|unclassified	0.9412805134
+UniRef50_UPI0003623D1F: hypothetical protein	0.9411682232
+UniRef50_UPI0003623D1F: hypothetical protein|unclassified	0.9411682232
+UniRef50_UPI0004678A0C: hypothetical protein, partial	0.9410488819
+UniRef50_UPI0004678A0C: hypothetical protein, partial|unclassified	0.9410488819
+UniRef50_G7EHM5	0.9409909350
+UniRef50_G7EHM5|unclassified	0.9409909350
+UniRef50_UPI0003689445: hypothetical protein	0.9408947291
+UniRef50_UPI0003689445: hypothetical protein|unclassified	0.9408947291
+UniRef50_W8ZE22	0.9408468816
+UniRef50_W8ZE22|unclassified	0.9408468816
+UniRef50_Q8UBB7: sn-glycerol-3-phosphate import ATP-binding protein UgpC 2	0.9408318726
+UniRef50_Q8UBB7: sn-glycerol-3-phosphate import ATP-binding protein UgpC 2|unclassified	0.9408318726
+UniRef50_UPI0003756BB8: MULTISPECIES: hypothetical protein	0.9407810678
+UniRef50_UPI0003756BB8: MULTISPECIES: hypothetical protein|unclassified	0.9407810678
+UniRef50_UPI000225EF72: magnesium transporter	0.9404073913
+UniRef50_UPI000225EF72: magnesium transporter|unclassified	0.9404073913
+UniRef50_Q4ZCD9: ORF055	0.9403800618
+UniRef50_Q4ZCD9: ORF055|unclassified	0.9403800618
+UniRef50_Q16DQ1: Flagellar protein, putative	0.9402390329
+UniRef50_Q16DQ1: Flagellar protein, putative|unclassified	0.9402390329
+UniRef50_J7B528: Calcineurin-like phosphoesterase	0.9400649628
+UniRef50_J7B528: Calcineurin-like phosphoesterase|unclassified	0.9400649628
+UniRef50_V9TSS5: Thymidylate synthase	0.9399877737
+UniRef50_V9TSS5: Thymidylate synthase|unclassified	0.9399877737
+UniRef50_UPI0004773996: glutathione-dependent formaldehyde-activating protein	0.9399823189
+UniRef50_UPI0004773996: glutathione-dependent formaldehyde-activating protein|unclassified	0.9399823189
+UniRef50_U4VGY9	0.9398727694
+UniRef50_U4VGY9|unclassified	0.9398727694
+UniRef50_G7U8C9: N-formimino-L-glutamate deiminase	0.9398496241
+UniRef50_G7U8C9: N-formimino-L-glutamate deiminase|g__Propionibacterium.s__Propionibacterium_acnes	0.9398496241
+UniRef50_Z6HHY0	0.9398496241
+UniRef50_Z6HHY0|unclassified	0.9398496241
+UniRef50_A0A013LHN9: Putative membrane protein	0.9397748646
+UniRef50_A0A013LHN9: Putative membrane protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.9397748646
+UniRef50_A3TG55	0.9396333698
+UniRef50_A3TG55|unclassified	0.9396333698
+UniRef50_R6JLU8	0.9394443182
+UniRef50_R6JLU8|unclassified	0.9394443182
+UniRef50_UPI000376F34B: hypothetical protein	0.9393683453
+UniRef50_UPI000376F34B: hypothetical protein|unclassified	0.9393683453
+UniRef50_A0A009P2J7: SnoaL-like polyketide cyclase family protein	0.9393392922
+UniRef50_A0A009P2J7: SnoaL-like polyketide cyclase family protein|unclassified	0.9393392922
+UniRef50_N9UUM3	0.9392727629
+UniRef50_N9UUM3|unclassified	0.9392727629
+UniRef50_UPI00045EC479: hypothetical protein	0.9391484699
+UniRef50_UPI00045EC479: hypothetical protein|unclassified	0.9391484699
+UniRef50_M2QVM8	0.9391475739
+UniRef50_M2QVM8|unclassified	0.9391475739
+UniRef50_D9NNE7	0.9391323511
+UniRef50_D9NNE7|unclassified	0.9391323511
+UniRef50_A4X329: Transcriptional regulator, LacI family	0.9389671362
+UniRef50_A4X329: Transcriptional regulator, LacI family|g__Propionibacterium.s__Propionibacterium_acnes	0.9389671362
+UniRef50_G8PVV2: Oxidoreductase, FAD-binding protein	0.9389671362
+UniRef50_G8PVV2: Oxidoreductase, FAD-binding protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9389671362
+UniRef50_D6SEE7	0.9388164044
+UniRef50_D6SEE7|unclassified	0.9388164044
+UniRef50_G7U7S7: ABC transporter associated permease	0.9387610182
+UniRef50_G7U7S7: ABC transporter associated permease|g__Propionibacterium.s__Propionibacterium_acnes	0.9387610182
+UniRef50_UPI00021928A5: spermidine/putrescine-binding periplasmic protein	0.9387104846
+UniRef50_UPI00021928A5: spermidine/putrescine-binding periplasmic protein|unclassified	0.9387104846
+UniRef50_Q66FG9: Glycerol-3-phosphate acyltransferase	0.9385674506
+UniRef50_Q66FG9: Glycerol-3-phosphate acyltransferase|g__Escherichia.s__Escherichia_coli	0.9385674506
+UniRef50_V7ELQ8: Membrane protein	0.9381924951
+UniRef50_V7ELQ8: Membrane protein|unclassified	0.9381924951
+UniRef50_Q32IP3	0.9381404592
+UniRef50_Q32IP3|unclassified	0.9381404592
+UniRef50_M5DTK5: FMN oxidoreductase	0.9380863039
+UniRef50_M5DTK5: FMN oxidoreductase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9380863039
+UniRef50_UPI00042CFD78: PREDICTED: LOW QUALITY PROTEIN: sugar transporter SWEET1	0.9380176568
+UniRef50_UPI00042CFD78: PREDICTED: LOW QUALITY PROTEIN: sugar transporter SWEET1|unclassified	0.9380176568
+UniRef50_K2AI23	0.9378878810
+UniRef50_K2AI23|unclassified	0.9378878810
+UniRef50_UPI000225FE4D: coenzyme PQQ biosynthesis protein D	0.9378422606
+UniRef50_UPI000225FE4D: coenzyme PQQ biosynthesis protein D|unclassified	0.9378422606
+UniRef50_W5DQK8	0.9377360632
+UniRef50_W5DQK8|unclassified	0.9377360632
+UniRef50_UPI0003B69CEE: DNA polymerase III subunit epsilon	0.9376236765
+UniRef50_UPI0003B69CEE: DNA polymerase III subunit epsilon|unclassified	0.9376236765
+UniRef50_P76069	0.9373616525
+UniRef50_P76069|unclassified	0.9373616525
+UniRef50_G5MAF4: GTPase and tRNA-U34 5-formylation enzyme TrmE (Fragment)	0.9373600493
+UniRef50_G5MAF4: GTPase and tRNA-U34 5-formylation enzyme TrmE (Fragment)|unclassified	0.9373600493
+UniRef50_X5HTN1: Biofilm synthesis protein	0.9373241831
+UniRef50_X5HTN1: Biofilm synthesis protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.9373241831
+UniRef50_F7V4L9: L-lactate permease	0.9372071228
+UniRef50_F7V4L9: L-lactate permease|g__Clostridium.s__Clostridium_beijerinckii	0.9372071228
+UniRef50_P13510: Cobalt-zinc-cadmium resistance protein CzcB	0.9372071228
+UniRef50_P13510: Cobalt-zinc-cadmium resistance protein CzcB|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9372071228
+UniRef50_Q9RZB3: dTDP-glucose 4,6-dehydratase	0.9372071228
+UniRef50_Q9RZB3: dTDP-glucose 4,6-dehydratase|g__Deinococcus.s__Deinococcus_radiodurans	0.9372071228
+UniRef50_V4XRX6	0.9372071228
+UniRef50_V4XRX6|unclassified	0.9372071228
+UniRef50_X2XHP8: Quinone oxidoreductase (Fragment)	0.9372005964
+UniRef50_X2XHP8: Quinone oxidoreductase (Fragment)|unclassified	0.9372005964
+UniRef50_N6V3E0	0.9371782909
+UniRef50_N6V3E0|unclassified	0.9371782909
+UniRef50_F4MZ90	0.9371738141
+UniRef50_F4MZ90|unclassified	0.9371738141
+UniRef50_A3IGB3	0.9371545159
+UniRef50_A3IGB3|unclassified	0.9371545159
+UniRef50_UPI0002192F2F: putative nitrate transport ATP-binding protein, partial	0.9371478837
+UniRef50_UPI0002192F2F: putative nitrate transport ATP-binding protein, partial|unclassified	0.9371478837
+UniRef50_Q5N7D3	0.9371340224
+UniRef50_Q5N7D3|unclassified	0.9371340224
+UniRef50_K0R9B1	0.9369235101
+UniRef50_K0R9B1|unclassified	0.9369235101
+UniRef50_U4V7D8	0.9369019405
+UniRef50_U4V7D8|unclassified	0.9369019405
+UniRef50_UPI00034D189F: aldehyde-activating protein	0.9367302246
+UniRef50_UPI00034D189F: aldehyde-activating protein|unclassified	0.9367302246
+UniRef50_M9R1A8	0.9366540120
+UniRef50_M9R1A8|unclassified	0.9366540120
+UniRef50_Q1I6V1	0.9366465406
+UniRef50_Q1I6V1|unclassified	0.9366465406
+UniRef50_W4UAN6: Excinuclease	0.9366177418
+UniRef50_W4UAN6: Excinuclease|unclassified	0.9366177418
+UniRef50_I1H6Y1	0.9366070713
+UniRef50_I1H6Y1|unclassified	0.9366070713
+UniRef50_D4XIY5: TIGR00370 family protein	0.9365883351
+UniRef50_D4XIY5: TIGR00370 family protein|unclassified	0.9365883351
+UniRef50_Q3JID5	0.9365519454
+UniRef50_Q3JID5|unclassified	0.9365519454
+UniRef50_Q4FUR4: Homoserine O-acetyltransferase	0.9364863341
+UniRef50_Q4FUR4: Homoserine O-acetyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8635578584
+UniRef50_Q4FUR4: Homoserine O-acetyltransferase|unclassified	0.0729284757
+UniRef50_UPI0000683550: topoisomerase IV	0.9364314156
+UniRef50_UPI0000683550: topoisomerase IV|unclassified	0.9364314156
+UniRef50_UPI00030FEE7F: AsnC family transcriptional regulator	0.9364184289
+UniRef50_UPI00030FEE7F: AsnC family transcriptional regulator|unclassified	0.9364184289
+UniRef50_B0TPS5: Tryptophan halogenase	0.9363295880
+UniRef50_B0TPS5: Tryptophan halogenase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9363295880
+UniRef50_B4SRW3: Acetyl-CoA acetyltransferase	0.9363295880
+UniRef50_B4SRW3: Acetyl-CoA acetyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9363295880
+UniRef50_M4R8Z6: Allophanate hydrolase subunit 1 and 2	0.9363295880
+UniRef50_M4R8Z6: Allophanate hydrolase subunit 1 and 2|g__Acinetobacter.s__Acinetobacter_baumannii	0.9363295880
+UniRef50_Q0K1E0: Ribulose bisphosphate carboxylase large chain, chromosomal	0.9363047418
+UniRef50_Q0K1E0: Ribulose bisphosphate carboxylase large chain, chromosomal|unclassified	0.9363047418
+UniRef50_E5WNQ8	0.9362070364
+UniRef50_E5WNQ8|unclassified	0.9362070364
+UniRef50_V9QX05: Membrane protein	0.9361465134
+UniRef50_V9QX05: Membrane protein|unclassified	0.9361465134
+UniRef50_UPI000469489C: hypothetical protein	0.9358940003
+UniRef50_UPI000469489C: hypothetical protein|unclassified	0.9358940003
+UniRef50_U9V3J0	0.9358711890
+UniRef50_U9V3J0|unclassified	0.9358711890
+UniRef50_A3TWR1: Phenol hydroxylase, putative	0.9357849027
+UniRef50_A3TWR1: Phenol hydroxylase, putative|unclassified	0.9357849027
+UniRef50_Q73EJ1	0.9357234829
+UniRef50_Q73EJ1|unclassified	0.9357234829
+UniRef50_A0A017HN76	0.9356016680
+UniRef50_A0A017HN76|unclassified	0.9356016680
+UniRef50_X5TPZ5	0.9355297785
+UniRef50_X5TPZ5|unclassified	0.9355297785
+UniRef50_UPI0003B622A9: blue-light sensor BLUF	0.9353707493
+UniRef50_UPI0003B622A9: blue-light sensor BLUF|unclassified	0.9353707493
+UniRef50_UPI000287E9BE: thymidylate synthase	0.9351918752
+UniRef50_UPI000287E9BE: thymidylate synthase|unclassified	0.9351918752
+UniRef50_A0KJ40: Nucleoside diphosphate kinase	0.9350905493
+UniRef50_A0KJ40: Nucleoside diphosphate kinase|unclassified	0.9350905493
+UniRef50_F4DYY0	0.9350387959
+UniRef50_F4DYY0|unclassified	0.9350387959
+UniRef50_UPI00047299A3: ribose ABC transporter permease	0.9350265668
+UniRef50_UPI00047299A3: ribose ABC transporter permease|unclassified	0.9350265668
+UniRef50_K7U6X3	0.9349799011
+UniRef50_K7U6X3|unclassified	0.9349799011
+UniRef50_W6CDL1: Bat2 domain protein	0.9349624291
+UniRef50_W6CDL1: Bat2 domain protein|unclassified	0.9349624291
+UniRef50_I0C6S6: Nitrogen regulation protein NIFR3	0.9349067164
+UniRef50_I0C6S6: Nitrogen regulation protein NIFR3|unclassified	0.9349067164
+UniRef50_G4Z3E2	0.9348807060
+UniRef50_G4Z3E2|unclassified	0.9348807060
+UniRef50_P37462: Alpha-ketoglutarate-dependent dioxygenase AlkB	0.9346359085
+UniRef50_P37462: Alpha-ketoglutarate-dependent dioxygenase AlkB|unclassified	0.9346359085
+UniRef50_Q67LS2: tRNA-specific 2-thiouridylase MnmA	0.9345794393
+UniRef50_Q67LS2: tRNA-specific 2-thiouridylase MnmA|g__Clostridium.s__Clostridium_beijerinckii	0.9345794393
+UniRef50_R4ZCN6	0.9345794393
+UniRef50_R4ZCN6|g__Streptococcus.s__Streptococcus_agalactiae	0.9345794393
+UniRef50_A3C038	0.9344729354
+UniRef50_A3C038|unclassified	0.9344729354
+UniRef50_UPI00047853C3: hypothetical protein	0.9344533254
+UniRef50_UPI00047853C3: hypothetical protein|unclassified	0.9344533254
+UniRef50_Q87J85: Tyrosine--tRNA ligase 1	0.9342990581
+UniRef50_Q87J85: Tyrosine--tRNA ligase 1|g__Escherichia.s__Escherichia_coli	0.8244023083
+UniRef50_Q87J85: Tyrosine--tRNA ligase 1|unclassified	0.1098967498
+UniRef50_W0Z1C2	0.9341614900
+UniRef50_W0Z1C2|unclassified	0.9341614900
+UniRef50_UPI0004123A04: ABC transporter substrate-binding protein	0.9339299649
+UniRef50_UPI0004123A04: ABC transporter substrate-binding protein|unclassified	0.9339299649
+UniRef50_C5QPH7	0.9338306283
+UniRef50_C5QPH7|unclassified	0.9338306283
+UniRef50_X2NBB6: AraC family transcriptional regulator	0.9337776766
+UniRef50_X2NBB6: AraC family transcriptional regulator|unclassified	0.9337776766
+UniRef50_Q53103: CcoP (Fragment)	0.9337704356
+UniRef50_Q53103: CcoP (Fragment)|unclassified	0.9337704356
+UniRef50_F3KCS8: Cysteine synthase	0.9336791075
+UniRef50_F3KCS8: Cysteine synthase|unclassified	0.9336791075
+UniRef50_UPI00037FB80C: hypothetical protein	0.9335250103
+UniRef50_UPI00037FB80C: hypothetical protein|unclassified	0.9335250103
+UniRef50_Q3JWI9: PilL	0.9333589375
+UniRef50_Q3JWI9: PilL|unclassified	0.9333589375
+UniRef50_D5ATC4	0.9331507765
+UniRef50_D5ATC4|unclassified	0.9331507765
+UniRef50_B5GAK8	0.9330001611
+UniRef50_B5GAK8|unclassified	0.9330001611
+UniRef50_A3M3H0: Adhesin Ata autotransporter	0.9329930891
+UniRef50_A3M3H0: Adhesin Ata autotransporter|g__Acinetobacter.s__Acinetobacter_baumannii	0.9329930891
+UniRef50_A5WAN0: NLPA lipoprotein	0.9329123366
+UniRef50_A5WAN0: NLPA lipoprotein|unclassified	0.9329123366
+UniRef50_K0HFL9: MFS superfamily metabolite transporter	0.9328358209
+UniRef50_K0HFL9: MFS superfamily metabolite transporter|g__Acinetobacter.s__Acinetobacter_baumannii	0.9328358209
+UniRef50_K9ZYD1: NADH dehydrogenase, FAD-containing subunit	0.9328358209
+UniRef50_K9ZYD1: NADH dehydrogenase, FAD-containing subunit|g__Deinococcus.s__Deinococcus_radiodurans	0.9328358209
+UniRef50_R6LGJ5: Methionine synthase vitamin-B12 independent	0.9328358209
+UniRef50_R6LGJ5: Methionine synthase vitamin-B12 independent|g__Clostridium.s__Clostridium_beijerinckii	0.9328358209
+UniRef50_L8A4U7: Site-specific recombinase, resolvase family	0.9327844277
+UniRef50_L8A4U7: Site-specific recombinase, resolvase family|unclassified	0.9327844277
+UniRef50_Q0FRE3	0.9326287306
+UniRef50_Q0FRE3|unclassified	0.9326287306
+UniRef50_UPI0001912679: hypothetical protein, partial	0.9325716888
+UniRef50_UPI0001912679: hypothetical protein, partial|unclassified	0.9325716888
+UniRef50_UPI0003620A7F: hypothetical protein	0.9325446510
+UniRef50_UPI0003620A7F: hypothetical protein|unclassified	0.9325446510
+UniRef50_C4W7E9	0.9324125684
+UniRef50_C4W7E9|unclassified	0.9324125684
+UniRef50_W8SNK7	0.9323638214
+UniRef50_W8SNK7|unclassified	0.9323638214
+UniRef50_X5UMM5	0.9322870534
+UniRef50_X5UMM5|unclassified	0.9322870534
+UniRef50_Q7W6C6: Non-canonical purine NTP pyrophosphatase	0.9321054189
+UniRef50_Q7W6C6: Non-canonical purine NTP pyrophosphatase|unclassified	0.9321054189
+UniRef50_UPI000367958D: hypothetical protein	0.9320514006
+UniRef50_UPI000367958D: hypothetical protein|unclassified	0.9320514006
+UniRef50_UPI00036A318D: hypothetical protein	0.9320152831
+UniRef50_UPI00036A318D: hypothetical protein|unclassified	0.9320152831
+UniRef50_F5XRV0: Polyprenyl diphosphate synthase	0.9319664492
+UniRef50_F5XRV0: Polyprenyl diphosphate synthase|g__Propionibacterium.s__Propionibacterium_acnes	0.9319664492
+UniRef50_Q2S5X4: Osteoblast specific factor 2-related protein	0.9318029796
+UniRef50_Q2S5X4: Osteoblast specific factor 2-related protein|unclassified	0.9318029796
+UniRef50_V6EXM4	0.9317710622
+UniRef50_V6EXM4|unclassified	0.9317710622
+UniRef50_UPI0002E002F0: ABC transporter ATP-binding protein	0.9317547568
+UniRef50_UPI0002E002F0: ABC transporter ATP-binding protein|unclassified	0.9317547568
+UniRef50_UPI0004655CAA: hypothetical protein	0.9317513720
+UniRef50_UPI0004655CAA: hypothetical protein|unclassified	0.9317513720
+UniRef50_C7J900: Os11g0141800 protein (Fragment)	0.9316377190
+UniRef50_C7J900: Os11g0141800 protein (Fragment)|unclassified	0.9316377190
+UniRef50_P63353: Sulfate/thiosulfate import ATP-binding protein CysA	0.9313988200
+UniRef50_P63353: Sulfate/thiosulfate import ATP-binding protein CysA|unclassified	0.9313988200
+UniRef50_D8CL77	0.9312547757
+UniRef50_D8CL77|unclassified	0.9312547757
+UniRef50_UPI000475EEE1: glycine cleavage system protein H	0.9312175294
+UniRef50_UPI000475EEE1: glycine cleavage system protein H|unclassified	0.9312175294
+UniRef50_UPI00035E6AAF: hypothetical protein, partial	0.9311375539
+UniRef50_UPI00035E6AAF: hypothetical protein, partial|unclassified	0.9311375539
+UniRef50_M9VIL3	0.9310986965
+UniRef50_M9VIL3|g__Propionibacterium.s__Propionibacterium_acnes	0.9310986965
+UniRef50_Q0RJJ6	0.9310986965
+UniRef50_Q0RJJ6|unclassified	0.9310986965
+UniRef50_Q8DN13: D-alanine transfer from undecaprenol-phosphate to the poly(Glycerophosphate) chain	0.9310986965
+UniRef50_Q8DN13: D-alanine transfer from undecaprenol-phosphate to the poly(Glycerophosphate) chain|g__Streptococcus.s__Streptococcus_agalactiae	0.9310986965
+UniRef50_UPI00041E9873: C4-dicarboxylate ABC transporter	0.9307991972
+UniRef50_UPI00041E9873: C4-dicarboxylate ABC transporter|unclassified	0.9307991972
+UniRef50_UPI00045DD9A4: PREDICTED: unconventional myosin-If-like	0.9307206379
+UniRef50_UPI00045DD9A4: PREDICTED: unconventional myosin-If-like|unclassified	0.9307206379
+UniRef50_UPI0001850C5F: exsB protein	0.9306710609
+UniRef50_UPI0001850C5F: exsB protein|unclassified	0.9306710609
+UniRef50_B9KNQ1	0.9304947845
+UniRef50_B9KNQ1|unclassified	0.9304947845
+UniRef50_I7EQ45	0.9304242426
+UniRef50_I7EQ45|unclassified	0.9304242426
+UniRef50_UPI00037A380E: hypothetical protein	0.9304109047
+UniRef50_UPI00037A380E: hypothetical protein|unclassified	0.9304109047
+UniRef50_Q2N696	0.9303682297
+UniRef50_Q2N696|unclassified	0.9303682297
+UniRef50_Q9RS20: Multidrug-efflux transporter, putative	0.9302325581
+UniRef50_Q9RS20: Multidrug-efflux transporter, putative|g__Deinococcus.s__Deinococcus_radiodurans	0.9302325581
+UniRef50_UPI000373AAAA: hypothetical protein	0.9301901210
+UniRef50_UPI000373AAAA: hypothetical protein|unclassified	0.9301901210
+UniRef50_UPI00047D67F7: branched-chain amino acid ABC transporter	0.9301350315
+UniRef50_UPI00047D67F7: branched-chain amino acid ABC transporter|unclassified	0.9301350315
+UniRef50_UPI000360793F: hypothetical protein	0.9300640045
+UniRef50_UPI000360793F: hypothetical protein|unclassified	0.9300640045
+UniRef50_Q72YL5	0.9299094499
+UniRef50_Q72YL5|unclassified	0.9299094499
+UniRef50_W6RY62	0.9299051046
+UniRef50_W6RY62|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9299051046
+UniRef50_UPI00046AFEA5: membrane protein	0.9298809604
+UniRef50_UPI00046AFEA5: membrane protein|unclassified	0.9298809604
+UniRef50_K0TBE2	0.9298019016
+UniRef50_K0TBE2|unclassified	0.9298019016
+UniRef50_UPI000464D477: hypothetical protein	0.9294288934
+UniRef50_UPI000464D477: hypothetical protein|unclassified	0.9294288934
+UniRef50_A8JGC3: Predicted protein (Fragment)	0.9294178847
+UniRef50_A8JGC3: Predicted protein (Fragment)|unclassified	0.9294178847
+UniRef50_A0A059LCN6	0.9293147983
+UniRef50_A0A059LCN6|unclassified	0.9293147983
+UniRef50_UPI000262A078: peptide ABC transporter ATPase	0.9290476813
+UniRef50_UPI000262A078: peptide ABC transporter ATPase|unclassified	0.9290476813
+UniRef50_X1QW39: Marine sediment metagenome DNA, contig: S06H3_S22540 (Fragment)	0.9289731293
+UniRef50_X1QW39: Marine sediment metagenome DNA, contig: S06H3_S22540 (Fragment)|unclassified	0.9289731293
+UniRef50_F4M5Y2	0.9289508332
+UniRef50_F4M5Y2|unclassified	0.9289508332
+UniRef50_UPI00047A2796: hypothetical protein, partial	0.9288092505
+UniRef50_UPI00047A2796: hypothetical protein, partial|unclassified	0.9288092505
+UniRef50_R1ECI7	0.9287016519
+UniRef50_R1ECI7|unclassified	0.9287016519
+UniRef50_W8W2G5	0.9286501192
+UniRef50_W8W2G5|unclassified	0.9286501192
+UniRef50_UPI00036595F8: GNAT family acetyltransferase, partial	0.9286326761
+UniRef50_UPI00036595F8: GNAT family acetyltransferase, partial|unclassified	0.9286326761
+UniRef50_B4DM46: cDNA FLJ58909	0.9285847968
+UniRef50_B4DM46: cDNA FLJ58909|unclassified	0.9285847968
+UniRef50_F8ACN4: TraU family protein	0.9285631077
+UniRef50_F8ACN4: TraU family protein|unclassified	0.9285631077
+UniRef50_B1LUU9: Fructose-1,6-bisphosphatase class 1	0.9285288077
+UniRef50_B1LUU9: Fructose-1,6-bisphosphatase class 1|unclassified	0.9285288077
+UniRef50_A6TUJ7	0.9285051068
+UniRef50_A6TUJ7|g__Clostridium.s__Clostridium_beijerinckii	0.9285051068
+UniRef50_F9YX94: DNA processing / uptake protein	0.9285051068
+UniRef50_F9YX94: DNA processing / uptake protein|g__Propionibacterium.s__Propionibacterium_acnes	0.9285051068
+UniRef50_UPI00040F284B: integration host factor subunit beta	0.9284300312
+UniRef50_UPI00040F284B: integration host factor subunit beta|unclassified	0.9284300312
+UniRef50_UPI00039550EE: PREDICTED: spidroin-2-like	0.9283289325
+UniRef50_UPI00039550EE: PREDICTED: spidroin-2-like|unclassified	0.9283289325
+UniRef50_UPI00045DBB82	0.9283144673
+UniRef50_UPI00045DBB82|unclassified	0.9283144673
+UniRef50_UPI0003344BC4: PREDICTED: hepatocyte growth factor-regulated tyrosine kinase substrate	0.9282208427
+UniRef50_UPI0003344BC4: PREDICTED: hepatocyte growth factor-regulated tyrosine kinase substrate|unclassified	0.9282208427
+UniRef50_UPI0004770BE9: hypothetical protein	0.9282158120
+UniRef50_UPI0004770BE9: hypothetical protein|unclassified	0.9282158120
+UniRef50_UPI0003714691: hypothetical protein, partial	0.9281945827
+UniRef50_UPI0003714691: hypothetical protein, partial|unclassified	0.9281945827
+UniRef50_A8TPL9	0.9280876424
+UniRef50_A8TPL9|unclassified	0.9280876424
+UniRef50_G2I7Y6: Transposase	0.9278896675
+UniRef50_G2I7Y6: Transposase|unclassified	0.9278896675
+UniRef50_H8NW33: PhoH family protein	0.9277071429
+UniRef50_H8NW33: PhoH family protein|unclassified	0.9277071429
+UniRef50_F9YAA5	0.9276960934
+UniRef50_F9YAA5|unclassified	0.9276960934
+UniRef50_Q6F9Z8: Malate synthase G	0.9276455809
+UniRef50_Q6F9Z8: Malate synthase G|g__Acinetobacter.s__Acinetobacter_baumannii	0.9276455809
+UniRef50_A4VS16: Predicted esterase of the alpha-beta hydrolase superfamily	0.9276437848
+UniRef50_A4VS16: Predicted esterase of the alpha-beta hydrolase superfamily|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9276437848
+UniRef50_Q9K0U7: Putative phospholipase A1	0.9276437848
+UniRef50_Q9K0U7: Putative phospholipase A1|g__Neisseria.s__Neisseria_meningitidis	0.9276437848
+UniRef50_Q0G053	0.9274869102
+UniRef50_Q0G053|unclassified	0.9274869102
+UniRef50_UPI000464983B: histidine kinase	0.9274099321
+UniRef50_UPI000464983B: histidine kinase|unclassified	0.9274099321
+UniRef50_UPI0004743C7F: hypothetical protein, partial	0.9272853442
+UniRef50_UPI0004743C7F: hypothetical protein, partial|unclassified	0.9272853442
+UniRef50_UPI00047405FD: hypothetical protein	0.9272538795
+UniRef50_UPI00047405FD: hypothetical protein|unclassified	0.9272538795
+UniRef50_UPI0001744DA7: translation initiation factor IF-3	0.9272261761
+UniRef50_UPI0001744DA7: translation initiation factor IF-3|unclassified	0.9272261761
+UniRef50_C5QU44	0.9272245784
+UniRef50_C5QU44|unclassified	0.9272245784
+UniRef50_R1ERY2	0.9272224214
+UniRef50_R1ERY2|unclassified	0.9272224214
+UniRef50_W8SSQ3: YgfY	0.9271662353
+UniRef50_W8SSQ3: YgfY|unclassified	0.9271662353
+UniRef50_UPI00016A641C: hypothetical protein	0.9269636113
+UniRef50_UPI00016A641C: hypothetical protein|unclassified	0.9269636113
+UniRef50_UPI00027F606E	0.9269405515
+UniRef50_UPI00027F606E|unclassified	0.9269405515
+UniRef50_B5ZUM9	0.9268591857
+UniRef50_B5ZUM9|unclassified	0.9268591857
+UniRef50_X0SGE5: Marine sediment metagenome DNA, contig: S01H1_L05401	0.9267733771
+UniRef50_X0SGE5: Marine sediment metagenome DNA, contig: S01H1_L05401|unclassified	0.9267733771
+UniRef50_W0IMB6: Heat shock protein IbpA	0.9266600920
+UniRef50_W0IMB6: Heat shock protein IbpA|unclassified	0.9266600920
+UniRef50_M3YVF8	0.9266361403
+UniRef50_M3YVF8|unclassified	0.9266361403
+UniRef50_Q94H44	0.9265081501
+UniRef50_Q94H44|unclassified	0.9265081501
+UniRef50_Q9RRC4: Arginine--tRNA ligase	0.9264358976
+UniRef50_Q9RRC4: Arginine--tRNA ligase|g__Deinococcus.s__Deinococcus_radiodurans	0.5506607930
+UniRef50_Q9RRC4: Arginine--tRNA ligase|unclassified	0.3757751046
+UniRef50_N8QX29: Xanthine dehydrogenase, molybdopterin binding subunit	0.9263954420
+UniRef50_N8QX29: Xanthine dehydrogenase, molybdopterin binding subunit|g__Acinetobacter.s__Acinetobacter_baumannii	0.9263954420
+UniRef50_A7HZX6: Serine--tRNA ligase	0.9262423260
+UniRef50_A7HZX6: Serine--tRNA ligase|g__Helicobacter.s__Helicobacter_pylori	0.8779631255
+UniRef50_A7HZX6: Serine--tRNA ligase|unclassified	0.0482792005
+UniRef50_UPI00042A9C50: PREDICTED: basic proline-rich protein-like	0.9259302021
+UniRef50_UPI00042A9C50: PREDICTED: basic proline-rich protein-like|unclassified	0.9259302021
+UniRef50_A6LXN2: NLP/P60 protein	0.9259259259
+UniRef50_A6LXN2: NLP/P60 protein|g__Clostridium.s__Clostridium_beijerinckii	0.9259259259
+UniRef50_A6VC61: Peptide chain release factor 1	0.9259259259
+UniRef50_A6VC61: Peptide chain release factor 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9259259259
+UniRef50_L7UV81: Putative variable adhesin molecule A (Fragment)	0.9259259259
+UniRef50_L7UV81: Putative variable adhesin molecule A (Fragment)|unclassified	0.9259259259
+UniRef50_Q28W83	0.9257665518
+UniRef50_Q28W83|unclassified	0.9257665518
+UniRef50_B7A9E3: ABC transporter, permease protein	0.9257337431
+UniRef50_B7A9E3: ABC transporter, permease protein|unclassified	0.9257337431
+UniRef50_A7IPS8: ParB domain protein nuclease	0.9257059655
+UniRef50_A7IPS8: ParB domain protein nuclease|unclassified	0.9257059655
+UniRef50_UPI0003B490B8: ArsR family transcriptional regulator	0.9256668077
+UniRef50_UPI0003B490B8: ArsR family transcriptional regulator|unclassified	0.9256668077
+UniRef50_A4F628: Heat shock protein HSP20	0.9256162412
+UniRef50_A4F628: Heat shock protein HSP20|unclassified	0.9256162412
+UniRef50_S3ANI4	0.9255127251
+UniRef50_S3ANI4|unclassified	0.9255127251
+UniRef50_C0PAL9	0.9254932472
+UniRef50_C0PAL9|unclassified	0.9254932472
+UniRef50_UPI000379B2AA: hypothetical protein	0.9254232348
+UniRef50_UPI000379B2AA: hypothetical protein|unclassified	0.9254232348
+UniRef50_J0ZPP4	0.9252835356
+UniRef50_J0ZPP4|unclassified	0.9252835356
+UniRef50_L5S037: ACT domain protein	0.9252651072
+UniRef50_L5S037: ACT domain protein|g__Neisseria.s__Neisseria_meningitidis	0.9252651072
+UniRef50_F4E1X4: Membrane protein	0.9251829730
+UniRef50_F4E1X4: Membrane protein|unclassified	0.9251829730
+UniRef50_A0KJ67: NADH-quinone oxidoreductase subunit A	0.9251482900
+UniRef50_A0KJ67: NADH-quinone oxidoreductase subunit A|unclassified	0.9251482900
+UniRef50_K0HEK8: Mur ligase middle domain protein	0.9250693802
+UniRef50_K0HEK8: Mur ligase middle domain protein|g__Propionibacterium.s__Propionibacterium_acnes	0.9250693802
+UniRef50_K0QYZ1	0.9250693802
+UniRef50_K0QYZ1|unclassified	0.9250693802
+UniRef50_P71362: L-2,4-diaminobutyrate decarboxylase	0.9250693802
+UniRef50_P71362: L-2,4-diaminobutyrate decarboxylase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9250693802
+UniRef50_G5H5A7	0.9250452011
+UniRef50_G5H5A7|unclassified	0.9250452011
+UniRef50_UPI0003673C2F: hypothetical protein	0.9249898890
+UniRef50_UPI0003673C2F: hypothetical protein|unclassified	0.9249898890
+UniRef50_A0A012BQH3	0.9249839136
+UniRef50_A0A012BQH3|unclassified	0.9249839136
+UniRef50_F7ZCK2	0.9248112169
+UniRef50_F7ZCK2|unclassified	0.9248112169
+UniRef50_I0IAE1	0.9245199843
+UniRef50_I0IAE1|unclassified	0.9245199843
+UniRef50_D2JFQ8	0.9244870993
+UniRef50_D2JFQ8|unclassified	0.9244870993
+UniRef50_UPI0003651249: hypothetical protein	0.9244814258
+UniRef50_UPI0003651249: hypothetical protein|unclassified	0.9244814258
+UniRef50_UPI0003B655F2: multidrug transporter MatE	0.9244709102
+UniRef50_UPI0003B655F2: multidrug transporter MatE|unclassified	0.9244709102
+UniRef50_U5QR95: ATPase	0.9243281238
+UniRef50_U5QR95: ATPase|unclassified	0.9243281238
+UniRef50_F3CNA8: Anaerobic dimethyl sulfoxide reductase, A subunit, DmsA/YnfE family	0.9242531018
+UniRef50_F3CNA8: Anaerobic dimethyl sulfoxide reductase, A subunit, DmsA/YnfE family|g__Propionibacterium.s__Propionibacterium_acnes	0.9242531018
+UniRef50_E2CRM4	0.9242360631
+UniRef50_E2CRM4|unclassified	0.9242360631
+UniRef50_H1SN32: Tryptophan synthase beta chain	0.9242144177
+UniRef50_H1SN32: Tryptophan synthase beta chain|g__Staphylococcus.s__Staphylococcus_aureus	0.9242144177
+UniRef50_UPI0003A1B331: MFS transporter	0.9240337990
+UniRef50_UPI0003A1B331: MFS transporter|unclassified	0.9240337990
+UniRef50_V4SDQ1	0.9240221194
+UniRef50_V4SDQ1|unclassified	0.9240221194
+UniRef50_W4KP08	0.9240075125
+UniRef50_W4KP08|unclassified	0.9240075125
+UniRef50_W4VK32: Subunit R of type I restriction-modification system	0.9239506510
+UniRef50_W4VK32: Subunit R of type I restriction-modification system|unclassified	0.9239506510
+UniRef50_UPI0003714582: hypothetical protein	0.9239331533
+UniRef50_UPI0003714582: hypothetical protein|unclassified	0.9239331533
+UniRef50_K4KZE9	0.9237224091
+UniRef50_K4KZE9|unclassified	0.9237224091
+UniRef50_A0A022GKP0	0.9235650833
+UniRef50_A0A022GKP0|unclassified	0.9235650833
+UniRef50_F9K9L2: Conserved domain protein	0.9234839855
+UniRef50_F9K9L2: Conserved domain protein|unclassified	0.9234839855
+UniRef50_C9LVH0: BioX family protein	0.9231213631
+UniRef50_C9LVH0: BioX family protein|unclassified	0.9231213631
+UniRef50_UPI00045DEF48: PREDICTED: myosin IC heavy chain-like	0.9225892947
+UniRef50_UPI00045DEF48: PREDICTED: myosin IC heavy chain-like|unclassified	0.9225892947
+UniRef50_A0A017HQJ0: Mobile element protein	0.9225186753
+UniRef50_A0A017HQJ0: Mobile element protein|unclassified	0.9225186753
+UniRef50_D3SFX6	0.9224198444
+UniRef50_D3SFX6|unclassified	0.9224198444
+UniRef50_W1FDH4: Putative transport protein	0.9223388681
+UniRef50_W1FDH4: Putative transport protein|unclassified	0.9223388681
+UniRef50_P41792: Ethanolamine utilization protein EutN	0.9223342121
+UniRef50_P41792: Ethanolamine utilization protein EutN|unclassified	0.9223342121
+UniRef50_A0A058ZCQ6	0.9220839096
+UniRef50_A0A058ZCQ6|unclassified	0.9220839096
+UniRef50_F8JYV1	0.9220266549
+UniRef50_F8JYV1|unclassified	0.9220266549
+UniRef50_UPI00027F9D39: PREDICTED: 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial-like	0.9220238569
+UniRef50_UPI00027F9D39: PREDICTED: 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial-like|unclassified	0.9220238569
+UniRef50_F3STX2: Conserved domain protein	0.9220107533
+UniRef50_F3STX2: Conserved domain protein|unclassified	0.9220107533
+UniRef50_UPI0001583712: hypothetical protein BC1G_03433	0.9219988402
+UniRef50_UPI0001583712: hypothetical protein BC1G_03433|unclassified	0.9219988402
+UniRef50_K9GVE2: Flp pilus assembly protein TadB	0.9218316819
+UniRef50_K9GVE2: Flp pilus assembly protein TadB|unclassified	0.9218316819
+UniRef50_I4MXJ0: Plasmid pRiA4b ORF-3 family protein	0.9218093141
+UniRef50_I4MXJ0: Plasmid pRiA4b ORF-3 family protein|unclassified	0.9218093141
+UniRef50_P42778: Aminopeptidase T	0.9216589862
+UniRef50_P42778: Aminopeptidase T|unclassified	0.9216589862
+UniRef50_Q5SJB6: Membrane lipoprotein	0.9216589862
+UniRef50_Q5SJB6: Membrane lipoprotein|g__Deinococcus.s__Deinococcus_radiodurans	0.9216589862
+UniRef50_R4ZS36: MFS general substrate transporter	0.9216589862
+UniRef50_R4ZS36: MFS general substrate transporter|g__Streptococcus.s__Streptococcus_agalactiae	0.9216589862
+UniRef50_U5MLQ3: Processive diacylglycerol glucosyltransferase UgtP	0.9216589862
+UniRef50_U5MLQ3: Processive diacylglycerol glucosyltransferase UgtP|g__Clostridium.s__Clostridium_beijerinckii	0.9216589862
+UniRef50_UPI00045EBBEF: hypothetical protein	0.9215249087
+UniRef50_UPI00045EBBEF: hypothetical protein|unclassified	0.9215249087
+UniRef50_G5PWF6: L-xylulose 5-phosphate 3-epimerase	0.9213810698
+UniRef50_G5PWF6: L-xylulose 5-phosphate 3-epimerase|unclassified	0.9213810698
+UniRef50_H5MUS5: YnjB domain protein	0.9209766892
+UniRef50_H5MUS5: YnjB domain protein|unclassified	0.9209766892
+UniRef50_B5I692: FemAB family protein	0.9208103131
+UniRef50_B5I692: FemAB family protein|g__Propionibacterium.s__Propionibacterium_acnes	0.9208103131
+UniRef50_G7M2K8: YibE/F family protein	0.9208103131
+UniRef50_G7M2K8: YibE/F family protein|g__Clostridium.s__Clostridium_beijerinckii	0.9208103131
+UniRef50_UPI00047C100E: hypothetical protein	0.9205747788
+UniRef50_UPI00047C100E: hypothetical protein|unclassified	0.9205747788
+UniRef50_G8SX46: Lysine-arginine-ornithine-binding periplasmic protein	0.9205225676
+UniRef50_G8SX46: Lysine-arginine-ornithine-binding periplasmic protein|unclassified	0.9205225676
+UniRef50_A0A013KYN9: Putative transposase	0.9204760630
+UniRef50_A0A013KYN9: Putative transposase|unclassified	0.9204760630
+UniRef50_B9FT55	0.9203858122
+UniRef50_B9FT55|unclassified	0.9203858122
+UniRef50_E8NRV4	0.9200785438
+UniRef50_E8NRV4|unclassified	0.9200785438
+UniRef50_UPI0002EF1747: hypothetical protein	0.9200383053
+UniRef50_UPI0002EF1747: hypothetical protein|unclassified	0.9200383053
+UniRef50_N1M6P3	0.9200148846
+UniRef50_N1M6P3|unclassified	0.9200148846
+UniRef50_K0F919: Phosphate transporter	0.9199632015
+UniRef50_K0F919: Phosphate transporter|g__Propionibacterium.s__Propionibacterium_acnes	0.9199632015
+UniRef50_F9Y9C1	0.9199330842
+UniRef50_F9Y9C1|unclassified	0.9199330842
+UniRef50_R6HVU1	0.9197672332
+UniRef50_R6HVU1|unclassified	0.9197672332
+UniRef50_UPI00046DDB7F: PREDICTED: branched-chain-amino-acid aminotransferase-like protein 1	0.9197395527
+UniRef50_UPI00046DDB7F: PREDICTED: branched-chain-amino-acid aminotransferase-like protein 1|unclassified	0.9197395527
+UniRef50_UPI0003A9CC9F: hypothetical protein	0.9195818700
+UniRef50_UPI0003A9CC9F: hypothetical protein|unclassified	0.9195818700
+UniRef50_UPI00034A10DE: MULTISPECIES: hypothetical protein	0.9195278285
+UniRef50_UPI00034A10DE: MULTISPECIES: hypothetical protein|unclassified	0.9195278285
+UniRef50_UPI00047E2B61: DNA methyltransferase	0.9194943512
+UniRef50_UPI00047E2B61: DNA methyltransferase|unclassified	0.9194943512
+UniRef50_E8RT81	0.9194731216
+UniRef50_E8RT81|unclassified	0.9194731216
+UniRef50_UPI00036A77AE: hypothetical protein	0.9192859136
+UniRef50_UPI00036A77AE: hypothetical protein|unclassified	0.9192859136
+UniRef50_S1BYV3: Inner membrane protein yidI	0.9192342809
+UniRef50_S1BYV3: Inner membrane protein yidI|unclassified	0.9192342809
+UniRef50_X0VFC0: Marine sediment metagenome DNA, contig: S01H1_S16558 (Fragment)	0.9192330077
+UniRef50_X0VFC0: Marine sediment metagenome DNA, contig: S01H1_S16558 (Fragment)|unclassified	0.9192330077
+UniRef50_D2R7F9	0.9192111246
+UniRef50_D2R7F9|unclassified	0.9192111246
+UniRef50_F0XWS4: Expressed protein (Fragment)	0.9192031109
+UniRef50_F0XWS4: Expressed protein (Fragment)|unclassified	0.9192031109
+UniRef50_Q6A9Q2: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase	0.9191176471
+UniRef50_Q6A9Q2: UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase|g__Propionibacterium.s__Propionibacterium_acnes	0.9191176471
+UniRef50_R9ZFP1: MFS transporter	0.9191176471
+UniRef50_R9ZFP1: MFS transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9191176471
+UniRef50_Q9ZN31: ATP-DEPENDENT PROTEASE,ATP-BINDING SUBUNIT	0.9190708898
+UniRef50_Q9ZN31: ATP-DEPENDENT PROTEASE,ATP-BINDING SUBUNIT|g__Helicobacter.s__Helicobacter_pylori	0.9190708898
+UniRef50_UPI0004774AD6: adenosylcobinamide kinase	0.9190025543
+UniRef50_UPI0004774AD6: adenosylcobinamide kinase|unclassified	0.9190025543
+UniRef50_UPI00036D9F04: hypothetical protein	0.9189931120
+UniRef50_UPI00036D9F04: hypothetical protein|unclassified	0.9189931120
+UniRef50_K7E9S8	0.9187804667
+UniRef50_K7E9S8|unclassified	0.9187804667
+UniRef50_U3U401: ABC transporter-like protein	0.9187223329
+UniRef50_U3U401: ABC transporter-like protein|unclassified	0.9187223329
+UniRef50_E4PAG4	0.9184139844
+UniRef50_E4PAG4|unclassified	0.9184139844
+UniRef50_V4RFV2: 16 kDa heat shock protein A	0.9184006536
+UniRef50_V4RFV2: 16 kDa heat shock protein A|unclassified	0.9184006536
+UniRef50_Q6A6H1: NADH-quinone oxidoreductase subunit N	0.9183350841
+UniRef50_Q6A6H1: NADH-quinone oxidoreductase subunit N|g__Propionibacterium.s__Propionibacterium_acnes	0.8417508418
+UniRef50_Q6A6H1: NADH-quinone oxidoreductase subunit N|unclassified	0.0765842424
+UniRef50_UPI00026291F3: 3''''-5'''' exonuclease	0.9182871684
+UniRef50_UPI00026291F3: 3''''-5'''' exonuclease|unclassified	0.9182871684
+UniRef50_E2ZZR7: 2,3-butanediol dehydrogenase	0.9182736455
+UniRef50_E2ZZR7: 2,3-butanediol dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9182736455
+UniRef50_Q7VGP6: tRNA-2-methylthio-N(6)-dimethylallyladenosine synthase	0.9182736455
+UniRef50_Q7VGP6: tRNA-2-methylthio-N(6)-dimethylallyladenosine synthase|g__Helicobacter.s__Helicobacter_pylori	0.9182736455
+UniRef50_W0YZ56: Multidrug efflux protein NorA	0.9182736455
+UniRef50_W0YZ56: Multidrug efflux protein NorA|unclassified	0.9182736455
+UniRef50_I2RYF5	0.9182100222
+UniRef50_I2RYF5|unclassified	0.9182100222
+UniRef50_A6M0G3: PAS/PAC sensor signal transduction histidine kinase	0.9181089222
+UniRef50_A6M0G3: PAS/PAC sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	0.9181089222
+UniRef50_UPI00045602FF: hypothetical protein PFL1_03008	0.9179182617
+UniRef50_UPI00045602FF: hypothetical protein PFL1_03008|unclassified	0.9179182617
+UniRef50_A6LYU9: Integral membrane sensor hybrid histidine kinase	0.9178761861
+UniRef50_A6LYU9: Integral membrane sensor hybrid histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	0.9178761861
+UniRef50_H4TQN1: Putative membrane domain protein	0.9176163651
+UniRef50_H4TQN1: Putative membrane domain protein|unclassified	0.9176163651
+UniRef50_S5QZ39: ABC-2 type transport system permease protein	0.9175143552
+UniRef50_S5QZ39: ABC-2 type transport system permease protein|unclassified	0.9175143552
+UniRef50_H2JLK0: Putative zinc-binding oxidoreductase	0.9174888978
+UniRef50_H2JLK0: Putative zinc-binding oxidoreductase|unclassified	0.9174888978
+UniRef50_A4ELE1: Transcriptional regulator, LuxR family protein	0.9174869880
+UniRef50_A4ELE1: Transcriptional regulator, LuxR family protein|unclassified	0.9174869880
+UniRef50_S5CN83: Outer membrane receptor for monomeric catechols	0.9174342814
+UniRef50_S5CN83: Outer membrane receptor for monomeric catechols|g__Acinetobacter.s__Acinetobacter_baumannii	0.9174342814
+UniRef50_UPI0004636A0A: hypothetical protein	0.9174183806
+UniRef50_UPI0004636A0A: hypothetical protein|unclassified	0.9174183806
+UniRef50_UPI00037D04AC: hypothetical protein	0.9172901138
+UniRef50_UPI00037D04AC: hypothetical protein|unclassified	0.9172901138
+UniRef50_V8SW84	0.9171232654
+UniRef50_V8SW84|unclassified	0.9171232654
+UniRef50_A3V6C2	0.9170737617
+UniRef50_A3V6C2|unclassified	0.9170737617
+UniRef50_R7PRX3	0.9170682704
+UniRef50_R7PRX3|unclassified	0.9170682704
+UniRef50_I6WU36	0.9168389994
+UniRef50_I6WU36|unclassified	0.9168389994
+UniRef50_D4DSS6: Delta-1-pyrroline-5-carboxylate dehydrogenase	0.9166317073
+UniRef50_D4DSS6: Delta-1-pyrroline-5-carboxylate dehydrogenase|g__Neisseria.s__Neisseria_meningitidis	0.9166317073
+UniRef50_B1ZNJ3	0.9165902841
+UniRef50_B1ZNJ3|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9165902841
+UniRef50_J8SHZ5	0.9165541595
+UniRef50_J8SHZ5|unclassified	0.9165541595
+UniRef50_Q9ZJF9: DNA polymerase III subunit alpha	0.9164937352
+UniRef50_Q9ZJF9: DNA polymerase III subunit alpha|g__Helicobacter.s__Helicobacter_pylori	0.9010773721
+UniRef50_Q9ZJF9: DNA polymerase III subunit alpha|unclassified	0.0154163631
+UniRef50_F4QY70: Phage Tail Protein X family protein	0.9164782170
+UniRef50_F4QY70: Phage Tail Protein X family protein|unclassified	0.9164782170
+UniRef50_G5LGI5	0.9163113705
+UniRef50_G5LGI5|unclassified	0.9163113705
+UniRef50_J7QRY9: Escherichia coli IMT2125 genomic chromosome, IMT2125	0.9161074594
+UniRef50_J7QRY9: Escherichia coli IMT2125 genomic chromosome, IMT2125|unclassified	0.9161074594
+UniRef50_W8RNI6	0.9160954105
+UniRef50_W8RNI6|unclassified	0.9160954105
+UniRef50_R8AE84	0.9159741201
+UniRef50_R8AE84|unclassified	0.9159741201
+UniRef50_G7MAQ1: Membrane bound O-acyl transferase MBOAT family protein	0.9157509158
+UniRef50_G7MAQ1: Membrane bound O-acyl transferase MBOAT family protein|g__Clostridium.s__Clostridium_beijerinckii	0.9157509158
+UniRef50_Q1GIM1: Type III pantothenate kinase	0.9156497570
+UniRef50_Q1GIM1: Type III pantothenate kinase|unclassified	0.9156497570
+UniRef50_B0RTR9	0.9154768378
+UniRef50_B0RTR9|unclassified	0.9154768378
+UniRef50_UPI0004775FF2: hypothetical protein	0.9154710225
+UniRef50_UPI0004775FF2: hypothetical protein|unclassified	0.9154710225
+UniRef50_G3PY14	0.9154705907
+UniRef50_G3PY14|unclassified	0.9154705907
+UniRef50_UPI00038EB7F5: PREDICTED: artemin-like	0.9154552094
+UniRef50_UPI00038EB7F5: PREDICTED: artemin-like|unclassified	0.9154552094
+UniRef50_UPI000288A13D: hypothetical protein	0.9154088555
+UniRef50_UPI000288A13D: hypothetical protein|unclassified	0.9154088555
+UniRef50_Q28NZ3	0.9153740950
+UniRef50_Q28NZ3|unclassified	0.9153740950
+UniRef50_UPI00037730C9: hypothetical protein	0.9150614637
+UniRef50_UPI00037730C9: hypothetical protein|unclassified	0.9150614637
+UniRef50_UPI0003C13F0C: PREDICTED: choline dehydrogenase, mitochondrial-like	0.9149647605
+UniRef50_UPI0003C13F0C: PREDICTED: choline dehydrogenase, mitochondrial-like|unclassified	0.9149647605
+UniRef50_A6LYZ9: Peptidase C45, acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase	0.9149130833
+UniRef50_A6LYZ9: Peptidase C45, acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase|g__Clostridium.s__Clostridium_beijerinckii	0.9149130833
+UniRef50_Q9RU59	0.9149130833
+UniRef50_Q9RU59|g__Deinococcus.s__Deinococcus_radiodurans	0.9149130833
+UniRef50_F5M181	0.9147311538
+UniRef50_F5M181|unclassified	0.9147311538
+UniRef50_UPI000375BAEA: hypothetical protein	0.9146750438
+UniRef50_UPI000375BAEA: hypothetical protein|unclassified	0.9146750438
+UniRef50_UPI0004630CAE: hypothetical protein	0.9146238381
+UniRef50_UPI0004630CAE: hypothetical protein|unclassified	0.9146238381
+UniRef50_E3A3F3	0.9143562547
+UniRef50_E3A3F3|unclassified	0.9143562547
+UniRef50_UPI0003EB0EAA: hypothetical protein, partial	0.9142074776
+UniRef50_UPI0003EB0EAA: hypothetical protein, partial|unclassified	0.9142074776
+UniRef50_UPI0002D9966A: hypothetical protein	0.9141150335
+UniRef50_UPI0002D9966A: hypothetical protein|unclassified	0.9141150335
+UniRef50_N0C7C0	0.9140776214
+UniRef50_N0C7C0|unclassified	0.9140776214
+UniRef50_D8UD06	0.9140767824
+UniRef50_D8UD06|unclassified	0.9140767824
+UniRef50_F0KJH6: cAMP phosphodiesterase, heme-regulated	0.9140767824
+UniRef50_F0KJH6: cAMP phosphodiesterase, heme-regulated|g__Acinetobacter.s__Acinetobacter_baumannii	0.9140767824
+UniRef50_A1URR2: sn-glycerol-3-phosphate import ATP-binding protein UgpC	0.9140654762
+UniRef50_A1URR2: sn-glycerol-3-phosphate import ATP-binding protein UgpC|unclassified	0.9140654762
+UniRef50_UPI00046FAF78: hypothetical protein	0.9140059368
+UniRef50_UPI00046FAF78: hypothetical protein|unclassified	0.9140059368
+UniRef50_Q2YTD4	0.9139798999
+UniRef50_Q2YTD4|unclassified	0.9139798999
+UniRef50_UPI00035D1417: hypothetical protein	0.9138170327
+UniRef50_UPI00035D1417: hypothetical protein|unclassified	0.9138170327
+UniRef50_UPI00036E8EE0: cobalt transporter, partial	0.9137431757
+UniRef50_UPI00036E8EE0: cobalt transporter, partial|unclassified	0.9137431757
+UniRef50_UPI00045EAD98: D-amino acid aminotransferase	0.9137295787
+UniRef50_UPI00045EAD98: D-amino acid aminotransferase|unclassified	0.9137295787
+UniRef50_UPI00036229E4: hypothetical protein	0.9136346761
+UniRef50_UPI00036229E4: hypothetical protein|unclassified	0.9136346761
+UniRef50_R0FCW6: Replication initiation protein RepC (Fragment)	0.9135254817
+UniRef50_R0FCW6: Replication initiation protein RepC (Fragment)|unclassified	0.9135254817
+UniRef50_UPI00047159CC: hypothetical protein	0.9134436000
+UniRef50_UPI00047159CC: hypothetical protein|unclassified	0.9134436000
+UniRef50_D4HCP3	0.9132420091
+UniRef50_D4HCP3|g__Propionibacterium.s__Propionibacterium_acnes	0.9132420091
+UniRef50_I0ESN6: Alanine dehydrogenase	0.9132420091
+UniRef50_I0ESN6: Alanine dehydrogenase|g__Helicobacter.s__Helicobacter_pylori	0.9132420091
+UniRef50_Q1GE40	0.9132243667
+UniRef50_Q1GE40|unclassified	0.9132243667
+UniRef50_UPI000379B182: hypothetical protein	0.9132040978
+UniRef50_UPI000379B182: hypothetical protein|unclassified	0.9132040978
+UniRef50_J1RUT9: Dehydrogenase	0.9131417858
+UniRef50_J1RUT9: Dehydrogenase|unclassified	0.9131417858
+UniRef50_UPI0004541F98: PREDICTED: probable RNA-binding protein 19, partial	0.9130659974
+UniRef50_UPI0004541F98: PREDICTED: probable RNA-binding protein 19, partial|unclassified	0.9130659974
+UniRef50_Q18KL7: Phosphoribosyl-ATP pyrophosphatase	0.9129218318
+UniRef50_Q18KL7: Phosphoribosyl-ATP pyrophosphatase|unclassified	0.9129218318
+UniRef50_A0A033NL01	0.9127294995
+UniRef50_A0A033NL01|unclassified	0.9127294995
+UniRef50_A0A014M9H7: Delta-1-pyrroline-5-carboxylate dehydrogenase	0.9126709053
+UniRef50_A0A014M9H7: Delta-1-pyrroline-5-carboxylate dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9126709053
+UniRef50_A7ZV66: 3-keto-L-gulonate-6-phosphate decarboxylase UlaD	0.9125433576
+UniRef50_A7ZV66: 3-keto-L-gulonate-6-phosphate decarboxylase UlaD|unclassified	0.9125433576
+UniRef50_G1XDP6	0.9125275787
+UniRef50_G1XDP6|unclassified	0.9125275787
+UniRef50_UPI00041077BF: hypothetical protein	0.9125215099
+UniRef50_UPI00041077BF: hypothetical protein|unclassified	0.9125215099
+UniRef50_UPI00047B08A4: hypothetical protein	0.9124856847
+UniRef50_UPI00047B08A4: hypothetical protein|unclassified	0.9124856847
+UniRef50_E1Q5C2: VirB8 type IV secretion protein	0.9124087591
+UniRef50_E1Q5C2: VirB8 type IV secretion protein|g__Helicobacter.s__Helicobacter_pylori	0.9124087591
+UniRef50_M9RQJ4	0.9124087591
+UniRef50_M9RQJ4|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9124087591
+UniRef50_M9VCM8: 2-amino-3-ketobutyrate coenzyme A ligase	0.9124087591
+UniRef50_M9VCM8: 2-amino-3-ketobutyrate coenzyme A ligase|g__Propionibacterium.s__Propionibacterium_acnes	0.9124087591
+UniRef50_Q4KDT6: Drug resistance transporter, EmrB/QacA family	0.9124087591
+UniRef50_Q4KDT6: Drug resistance transporter, EmrB/QacA family|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9124087591
+UniRef50_UPI0004758598: hypothetical protein	0.9123770308
+UniRef50_UPI0004758598: hypothetical protein|unclassified	0.9123770308
+UniRef50_UPI000185080F: GTP-binding protein YqeH	0.9122983224
+UniRef50_UPI000185080F: GTP-binding protein YqeH|unclassified	0.9122983224
+UniRef50_N3ZMT3: Putative D,D-dipeptide transport system permease ddpB domain protein (Fragment)	0.9121498952
+UniRef50_N3ZMT3: Putative D,D-dipeptide transport system permease ddpB domain protein (Fragment)|unclassified	0.9121498952
+UniRef50_UPI000350C720: PREDICTED: fibroin heavy chain-like	0.9118150763
+UniRef50_UPI000350C720: PREDICTED: fibroin heavy chain-like|unclassified	0.9118150763
+UniRef50_H7FEN7	0.9117657735
+UniRef50_H7FEN7|unclassified	0.9117657735
+UniRef50_F2IXW0	0.9117245282
+UniRef50_F2IXW0|unclassified	0.9117245282
+UniRef50_P00362: Glyceraldehyde-3-phosphate dehydrogenase	0.9117159939
+UniRef50_P00362: Glyceraldehyde-3-phosphate dehydrogenase|unclassified	0.9117159939
+UniRef50_X3EVQ3	0.9116064657
+UniRef50_X3EVQ3|unclassified	0.9116064657
+UniRef50_F0KN46: Threonine dehydratase catabolic	0.9115770283
+UniRef50_F0KN46: Threonine dehydratase catabolic|g__Acinetobacter.s__Acinetobacter_baumannii	0.9115770283
+UniRef50_UPI00016B0808: putative ribose ABC transporter, periplasmic ribose-binding protein	0.9115770283
+UniRef50_UPI00016B0808: putative ribose ABC transporter, periplasmic ribose-binding protein|unclassified	0.9115770283
+UniRef50_UPI00030463DA: hypothetical protein	0.9115372544
+UniRef50_UPI00030463DA: hypothetical protein|unclassified	0.9115372544
+UniRef50_F0YCB4: Expressed protein	0.9114436128
+UniRef50_F0YCB4: Expressed protein|unclassified	0.9114436128
+UniRef50_A0A012CIJ7	0.9112939655
+UniRef50_A0A012CIJ7|unclassified	0.9112939655
+UniRef50_X8CF76: HxxPF-repeated domain protein	0.9112268421
+UniRef50_X8CF76: HxxPF-repeated domain protein|unclassified	0.9112268421
+UniRef50_W1H1W4	0.9112239850
+UniRef50_W1H1W4|unclassified	0.9112239850
+UniRef50_UPI0003EF1695: hypothetical protein	0.9112076661
+UniRef50_UPI0003EF1695: hypothetical protein|unclassified	0.9112076661
+UniRef50_V8N8C3: RNA-binding protein 25 (Fragment)	0.9111701687
+UniRef50_V8N8C3: RNA-binding protein 25 (Fragment)|unclassified	0.9111701687
+UniRef50_Q92U29	0.9110850491
+UniRef50_Q92U29|unclassified	0.9110850491
+UniRef50_K5ELG7	0.9110452429
+UniRef50_K5ELG7|unclassified	0.9110452429
+UniRef50_V4IUE3	0.9109075606
+UniRef50_V4IUE3|unclassified	0.9109075606
+UniRef50_A9LZS7	0.9108003669
+UniRef50_A9LZS7|unclassified	0.9108003669
+UniRef50_UPI00037A0B76: hypothetical protein, partial	0.9107862411
+UniRef50_UPI00037A0B76: hypothetical protein, partial|unclassified	0.9107862411
+UniRef50_C4ZKX2	0.9107468124
+UniRef50_C4ZKX2|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9107468124
+UniRef50_D8JH08: Glycosyltransferase	0.9107468124
+UniRef50_D8JH08: Glycosyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9107468124
+UniRef50_D8JLT1: Cyanide insensitive terminal oxidase	0.9107468124
+UniRef50_D8JLT1: Cyanide insensitive terminal oxidase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9107468124
+UniRef50_U8MM05	0.9107468124
+UniRef50_U8MM05|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9107468124
+UniRef50_W4TWJ0: GMP synthase	0.9107313370
+UniRef50_W4TWJ0: GMP synthase|unclassified	0.9107313370
+UniRef50_UPI00046CA980: hypothetical protein	0.9107140704
+UniRef50_UPI00046CA980: hypothetical protein|unclassified	0.9107140704
+UniRef50_M3Y9H2	0.9107060794
+UniRef50_M3Y9H2|unclassified	0.9107060794
+UniRef50_UPI0003626812: hypothetical protein	0.9106465255
+UniRef50_UPI0003626812: hypothetical protein|unclassified	0.9106465255
+UniRef50_A0A059LCW0	0.9106176907
+UniRef50_A0A059LCW0|unclassified	0.9106176907
+UniRef50_UPI00037C546A: hypothetical protein	0.9103589126
+UniRef50_UPI00037C546A: hypothetical protein|unclassified	0.9103589126
+UniRef50_UPI00034B4804: DNA methyltransferase	0.9101827824
+UniRef50_UPI00034B4804: DNA methyltransferase|unclassified	0.9101827824
+UniRef50_Q9ZM69: Copper-transporting ATPase	0.9101760205
+UniRef50_Q9ZM69: Copper-transporting ATPase|g__Helicobacter.s__Helicobacter_pylori	0.9101760205
+UniRef50_E3JJC9	0.9100917610
+UniRef50_E3JJC9|unclassified	0.9100917610
+UniRef50_E6MYN1	0.9100802534
+UniRef50_E6MYN1|unclassified	0.9100802534
+UniRef50_UPI0004737AC7: hypothetical protein	0.9100759073
+UniRef50_UPI0004737AC7: hypothetical protein|unclassified	0.9100759073
+UniRef50_UPI0003EE8191: hypothetical protein, partial	0.9100556543
+UniRef50_UPI0003EE8191: hypothetical protein, partial|unclassified	0.9100556543
+UniRef50_E3D3R3: LPS biosynthesis protein-related protein	0.9099181074
+UniRef50_E3D3R3: LPS biosynthesis protein-related protein|g__Neisseria.s__Neisseria_meningitidis	0.9099181074
+UniRef50_R1EUX5	0.9099181074
+UniRef50_R1EUX5|unclassified	0.9099181074
+UniRef50_V4RC72	0.9099181074
+UniRef50_V4RC72|unclassified	0.9099181074
+UniRef50_UPI000382CD04: hypothetical protein, partial	0.9096321097
+UniRef50_UPI000382CD04: hypothetical protein, partial|unclassified	0.9096321097
+UniRef50_UPI0003B474C8: 50S ribosomal protein L24	0.9095674223
+UniRef50_UPI0003B474C8: 50S ribosomal protein L24|unclassified	0.9095674223
+UniRef50_D8I5Z4	0.9095068905
+UniRef50_D8I5Z4|unclassified	0.9095068905
+UniRef50_UPI00047158A7: hypothetical protein	0.9094588324
+UniRef50_UPI00047158A7: hypothetical protein|unclassified	0.9094588324
+UniRef50_UPI00047E8C89: hypothetical protein	0.9094260783
+UniRef50_UPI00047E8C89: hypothetical protein|unclassified	0.9094260783
+UniRef50_Q9KRL4: Carboxynorspermidine/carboxyspermidine decarboxylase	0.9093559860
+UniRef50_Q9KRL4: Carboxynorspermidine/carboxyspermidine decarboxylase|unclassified	0.9093559860
+UniRef50_Q9F6X6: Light-independent protochlorophyllide reductase subunit N	0.9093411969
+UniRef50_Q9F6X6: Light-independent protochlorophyllide reductase subunit N|unclassified	0.9093411969
+UniRef50_I1CKJ8	0.9092744297
+UniRef50_I1CKJ8|unclassified	0.9092744297
+UniRef50_W7D7K2: Molybdopterin biosynthesis protein	0.9092668791
+UniRef50_W7D7K2: Molybdopterin biosynthesis protein|unclassified	0.9092668791
+UniRef50_UPI0001DD0936: hypothetical protein, partial	0.9091152414
+UniRef50_UPI0001DD0936: hypothetical protein, partial|unclassified	0.9091152414
+UniRef50_I0EKX1: Antibiotic transport system permease protein	0.9090909091
+UniRef50_I0EKX1: Antibiotic transport system permease protein|g__Helicobacter.s__Helicobacter_pylori	0.9090909091
+UniRef50_Q0SPR1: Cysteine desulfurase family protein	0.9090909091
+UniRef50_Q0SPR1: Cysteine desulfurase family protein|g__Clostridium.s__Clostridium_beijerinckii	0.9090909091
+UniRef50_Q43931: Muconate cycloisomerase 1	0.9090909091
+UniRef50_Q43931: Muconate cycloisomerase 1|g__Acinetobacter.s__Acinetobacter_baumannii	0.9090909091
+UniRef50_K8E4E7: Metallo-beta-lactamase superfamily protein	0.9088212542
+UniRef50_K8E4E7: Metallo-beta-lactamase superfamily protein|unclassified	0.9088212542
+UniRef50_UPI000454B050: PREDICTED: mulatexin-like, partial	0.9086836610
+UniRef50_UPI000454B050: PREDICTED: mulatexin-like, partial|unclassified	0.9086836610
+UniRef50_W1A536	0.9085315568
+UniRef50_W1A536|unclassified	0.9085315568
+UniRef50_UPI000381E8F8: MULTISPECIES: hypothetical protein	0.9084193136
+UniRef50_UPI000381E8F8: MULTISPECIES: hypothetical protein|unclassified	0.9084193136
+UniRef50_H0C298: Phosphonate ABC transporter, periplasmic phosphonate binding protein (Fragment)	0.9083992976
+UniRef50_H0C298: Phosphonate ABC transporter, periplasmic phosphonate binding protein (Fragment)|unclassified	0.9083992976
+UniRef50_C9B4S5: Predicted protein	0.9083641452
+UniRef50_C9B4S5: Predicted protein|unclassified	0.9083641452
+UniRef50_F9YWL2: Transport system permease protein	0.9082652134
+UniRef50_F9YWL2: Transport system permease protein|g__Propionibacterium.s__Propionibacterium_acnes	0.9082652134
+UniRef50_G7M0Z9: Type II secretion system F domain containing protein	0.9082652134
+UniRef50_G7M0Z9: Type II secretion system F domain containing protein|g__Clostridium.s__Clostridium_beijerinckii	0.9082652134
+UniRef50_M4WTC0: Alanine--glyoxylate transaminase	0.9082652134
+UniRef50_M4WTC0: Alanine--glyoxylate transaminase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9082652134
+UniRef50_Q51416: ATP-dependent protease ATP-binding subunit-like protein AmiB	0.9082652134
+UniRef50_Q51416: ATP-dependent protease ATP-binding subunit-like protein AmiB|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9082652134
+UniRef50_Q87Q74: Imidazolonepropionase	0.9082652134
+UniRef50_Q87Q74: Imidazolonepropionase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9082652134
+UniRef50_Q89SA6: A/G-specific adenine glycosylase	0.9082652134
+UniRef50_Q89SA6: A/G-specific adenine glycosylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9082652134
+UniRef50_UPI0003822F5F: hypothetical protein	0.9082458133
+UniRef50_UPI0003822F5F: hypothetical protein|unclassified	0.9082458133
+UniRef50_UPI0002DD0355: hypothetical protein	0.9081517344
+UniRef50_UPI0002DD0355: hypothetical protein|unclassified	0.9081517344
+UniRef50_UPI0003741E57: hypothetical protein, partial	0.9080955800
+UniRef50_UPI0003741E57: hypothetical protein, partial|unclassified	0.9080955800
+UniRef50_UPI0003C14A7B: PREDICTED: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase, chloroplastic-like	0.9079114141
+UniRef50_UPI0003C14A7B: PREDICTED: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase, chloroplastic-like|unclassified	0.9079114141
+UniRef50_J0R312	0.9078695934
+UniRef50_J0R312|unclassified	0.9078695934
+UniRef50_H9UQE9: Putative inner membrane protein	0.9078568762
+UniRef50_H9UQE9: Putative inner membrane protein|unclassified	0.9078568762
+UniRef50_P0CI61: Catabolic 3-dehydroquinase	0.9077022042
+UniRef50_P0CI61: Catabolic 3-dehydroquinase|unclassified	0.9077022042
+UniRef50_UPI00037BF3DC: hypothetical protein	0.9076189275
+UniRef50_UPI00037BF3DC: hypothetical protein|unclassified	0.9076189275
+UniRef50_A4X0E4: Periplasmic binding protein	0.9075023051
+UniRef50_A4X0E4: Periplasmic binding protein|unclassified	0.9075023051
+UniRef50_L0WHY8: Ppx/GppA phosphatase	0.9074410163
+UniRef50_L0WHY8: Ppx/GppA phosphatase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9074410163
+UniRef50_M1N377: Diguanylate cyclase	0.9074410163
+UniRef50_M1N377: Diguanylate cyclase|g__Clostridium.s__Clostridium_beijerinckii	0.9074410163
+UniRef50_Q5SJP8: 4-hydroxyphenylacetate 3-monooxygenase oxygenase component	0.9074410163
+UniRef50_Q5SJP8: 4-hydroxyphenylacetate 3-monooxygenase oxygenase component|g__Deinococcus.s__Deinococcus_radiodurans	0.9074410163
+UniRef50_V5VA73	0.9074410163
+UniRef50_V5VA73|g__Acinetobacter.s__Acinetobacter_baumannii	0.9074410163
+UniRef50_X6KSI2	0.9074162116
+UniRef50_X6KSI2|unclassified	0.9074162116
+UniRef50_Q98IL5: Mlr2349 protein	0.9073785990
+UniRef50_Q98IL5: Mlr2349 protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9073785990
+UniRef50_UPI00035F2801: hypothetical protein	0.9070935342
+UniRef50_UPI00035F2801: hypothetical protein|unclassified	0.9070935342
+UniRef50_V7ETF2	0.9070736182
+UniRef50_V7ETF2|unclassified	0.9070736182
+UniRef50_D0ZFI4	0.9068875550
+UniRef50_D0ZFI4|unclassified	0.9068875550
+UniRef50_E1PW93: Transposase B	0.9066183137
+UniRef50_E1PW93: Transposase B|g__Helicobacter.s__Helicobacter_pylori	0.9066183137
+UniRef50_F0RL27: Cell envelope-related transcriptional attenuator	0.9066183137
+UniRef50_F0RL27: Cell envelope-related transcriptional attenuator|g__Deinococcus.s__Deinococcus_radiodurans	0.9066183137
+UniRef50_W1MT61: Multidrug transporter	0.9066183137
+UniRef50_W1MT61: Multidrug transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9066183137
+UniRef50_C6AQZ6	0.9066074430
+UniRef50_C6AQZ6|unclassified	0.9066074430
+UniRef50_UPI000474601B: branched-chain amino acid ABC transporter ATP-binding protein	0.9065789679
+UniRef50_UPI000474601B: branched-chain amino acid ABC transporter ATP-binding protein|unclassified	0.9065789679
+UniRef50_M9S9D1	0.9063703817
+UniRef50_M9S9D1|unclassified	0.9063703817
+UniRef50_UPI0003B557FA: hydrolase	0.9062106762
+UniRef50_UPI0003B557FA: hydrolase|unclassified	0.9062106762
+UniRef50_Q1GW15	0.9062071011
+UniRef50_Q1GW15|unclassified	0.9062071011
+UniRef50_V4PI87	0.9060711641
+UniRef50_V4PI87|unclassified	0.9060711641
+UniRef50_R6B3E0	0.9058983649
+UniRef50_R6B3E0|unclassified	0.9058983649
+UniRef50_A0A023S1T5: Mutlidrug resistance protein	0.9057971014
+UniRef50_A0A023S1T5: Mutlidrug resistance protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.9057971014
+UniRef50_J8RT93	0.9056486512
+UniRef50_J8RT93|unclassified	0.9056486512
+UniRef50_L8U4N7	0.9056066640
+UniRef50_L8U4N7|unclassified	0.9056066640
+UniRef50_UPI0003B49409: 16S rRNA methyltransferase	0.9053599221
+UniRef50_UPI0003B49409: 16S rRNA methyltransferase|unclassified	0.9053599221
+UniRef50_F9Q8H3: Putative C-terminal regulatory domain of Threonine dehydratase	0.9050711566
+UniRef50_F9Q8H3: Putative C-terminal regulatory domain of Threonine dehydratase|unclassified	0.9050711566
+UniRef50_Q13EG0: Transcriptional regulator BolA	0.9050618741
+UniRef50_Q13EG0: Transcriptional regulator BolA|unclassified	0.9050618741
+UniRef50_E6MZK3: Binding--dependent transport system inner membrane component family protein	0.9049773756
+UniRef50_E6MZK3: Binding--dependent transport system inner membrane component family protein|g__Neisseria.s__Neisseria_meningitidis	0.9049773756
+UniRef50_F2S9X2	0.9049773756
+UniRef50_F2S9X2|unclassified	0.9049773756
+UniRef50_M0WUD8	0.9049773756
+UniRef50_M0WUD8|unclassified	0.9049773756
+UniRef50_W1MU76: Thiol:disulfide interchange protein	0.9049773756
+UniRef50_W1MU76: Thiol:disulfide interchange protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9049773756
+UniRef50_J8APA5	0.9048590689
+UniRef50_J8APA5|unclassified	0.9048590689
+UniRef50_UPI000328F489: PREDICTED: basic proline-rich protein-like, partial	0.9048490552
+UniRef50_UPI000328F489: PREDICTED: basic proline-rich protein-like, partial|unclassified	0.9048490552
+UniRef50_UPI00016AFF16: ABC transporter, permease/ATP-binding protein, partial	0.9046302975
+UniRef50_UPI00016AFF16: ABC transporter, permease/ATP-binding protein, partial|unclassified	0.9046302975
+UniRef50_A3TYU4	0.9045244160
+UniRef50_A3TYU4|unclassified	0.9045244160
+UniRef50_Q3J0V1	0.9043348991
+UniRef50_Q3J0V1|unclassified	0.9043348991
+UniRef50_G7Z1M6	0.9043212197
+UniRef50_G7Z1M6|unclassified	0.9043212197
+UniRef50_F9CJM1	0.9042735185
+UniRef50_F9CJM1|unclassified	0.9042735185
+UniRef50_L0NM60: Rhodanese-like	0.9042477726
+UniRef50_L0NM60: Rhodanese-like|unclassified	0.9042477726
+UniRef50_A6M2Z1: Membrane protein containing C-terminal PDZ domain	0.9041591320
+UniRef50_A6M2Z1: Membrane protein containing C-terminal PDZ domain|g__Clostridium.s__Clostridium_beijerinckii	0.9041591320
+UniRef50_Q5LP66: Pseudouridine synthase	0.9041591320
+UniRef50_Q5LP66: Pseudouridine synthase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.9041591320
+UniRef50_A0A039PB00: Integral membrane protein	0.9041453226
+UniRef50_A0A039PB00: Integral membrane protein|unclassified	0.9041453226
+UniRef50_L5DB28	0.9041324469
+UniRef50_L5DB28|unclassified	0.9041324469
+UniRef50_UPI00047191F0: hypothetical protein, partial	0.9039851473
+UniRef50_UPI00047191F0: hypothetical protein, partial|unclassified	0.9039851473
+UniRef50_UPI0003AD6FDE: hypothetical protein	0.9039831992
+UniRef50_UPI0003AD6FDE: hypothetical protein|unclassified	0.9039831992
+UniRef50_UPI0001D2F0E2: putrescine/spermidine ABC transporter permease	0.9038036677
+UniRef50_UPI0001D2F0E2: putrescine/spermidine ABC transporter permease|unclassified	0.9038036677
+UniRef50_B9TLS4	0.9037782447
+UniRef50_B9TLS4|unclassified	0.9037782447
+UniRef50_F2MZT7: Toluene-tolerance protein	0.9037719846
+UniRef50_F2MZT7: Toluene-tolerance protein|unclassified	0.9037719846
+UniRef50_V2HBE7: Cupin	0.9037642037
+UniRef50_V2HBE7: Cupin|unclassified	0.9037642037
+UniRef50_D3QIW6	0.9033987687
+UniRef50_D3QIW6|unclassified	0.9033987687
+UniRef50_Q7NIN3: Glr2150 protein	0.9033822409
+UniRef50_Q7NIN3: Glr2150 protein|unclassified	0.9033822409
+UniRef50_B2TKI7: Serine-type D-Ala-D-Ala carboxypeptidase	0.9033423668
+UniRef50_B2TKI7: Serine-type D-Ala-D-Ala carboxypeptidase|g__Clostridium.s__Clostridium_beijerinckii	0.9033423668
+UniRef50_E8YKU0: Acyl-CoA dehydrogenase domain-containing protein	0.9033423668
+UniRef50_E8YKU0: Acyl-CoA dehydrogenase domain-containing protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9033423668
+UniRef50_W5FKJ5	0.9033270339
+UniRef50_W5FKJ5|unclassified	0.9033270339
+UniRef50_UPI00036EF47A: hypothetical protein	0.9032084878
+UniRef50_UPI00036EF47A: hypothetical protein|unclassified	0.9032084878
+UniRef50_I6CNQ8: Tail protein	0.9032064736
+UniRef50_I6CNQ8: Tail protein|unclassified	0.9032064736
+UniRef50_X7YJ52	0.9031025914
+UniRef50_X7YJ52|unclassified	0.9031025914
+UniRef50_S9S3D2: Putative membrane protein	0.9030473683
+UniRef50_S9S3D2: Putative membrane protein|unclassified	0.9030473683
+UniRef50_A0A018ZSQ6: Putative transporter (Fragment)	0.9029354727
+UniRef50_A0A018ZSQ6: Putative transporter (Fragment)|unclassified	0.9029354727
+UniRef50_J3CMF1: Molecular chaperone (Small heat shock protein) (Fragment)	0.9028737554
+UniRef50_J3CMF1: Molecular chaperone (Small heat shock protein) (Fragment)|unclassified	0.9028737554
+UniRef50_X5Z9X9	0.9028144551
+UniRef50_X5Z9X9|unclassified	0.9028144551
+UniRef50_D8U6R0	0.9027908709
+UniRef50_D8U6R0|unclassified	0.9027908709
+UniRef50_L5SXQ3: Pre-toxin domain with VENN motif family protein	0.9027374289
+UniRef50_L5SXQ3: Pre-toxin domain with VENN motif family protein|g__Neisseria.s__Neisseria_meningitidis	0.9027374289
+UniRef50_P44777: L-fuculose phosphate aldolase	0.9025885182
+UniRef50_P44777: L-fuculose phosphate aldolase|unclassified	0.9025885182
+UniRef50_S9QFJ7: Response regulator, hypothetical	0.9024644217
+UniRef50_S9QFJ7: Response regulator, hypothetical|unclassified	0.9024644217
+UniRef50_A0A011N5Y6	0.9024238278
+UniRef50_A0A011N5Y6|unclassified	0.9024238278
+UniRef50_UPI0004640326: hypothetical protein	0.9024180741
+UniRef50_UPI0004640326: hypothetical protein|unclassified	0.9024180741
+UniRef50_UPI000374B1B6: hypothetical protein	0.9022443297
+UniRef50_UPI000374B1B6: hypothetical protein|unclassified	0.9022443297
+UniRef50_UPI0004438A7E: PREDICTED: nuclear transcriptional regulator 1-like protein	0.9022233067
+UniRef50_UPI0004438A7E: PREDICTED: nuclear transcriptional regulator 1-like protein|unclassified	0.9022233067
+UniRef50_UPI0001744949: GNAT family acetyltransferase	0.9021776668
+UniRef50_UPI0001744949: GNAT family acetyltransferase|unclassified	0.9021776668
+UniRef50_UPI00047129D7: transposase	0.9021082077
+UniRef50_UPI00047129D7: transposase|unclassified	0.9021082077
+UniRef50_UPI000315DE88: hypothetical protein	0.9020493298
+UniRef50_UPI000315DE88: hypothetical protein|unclassified	0.9020493298
+UniRef50_UPI00036358BA: MULTISPECIES: 50S ribosomal protein L15	0.9018183825
+UniRef50_UPI00036358BA: MULTISPECIES: 50S ribosomal protein L15|unclassified	0.9018183825
+UniRef50_UPI0003798325: acetyltransferase	0.9017328911
+UniRef50_UPI0003798325: acetyltransferase|unclassified	0.9017328911
+UniRef50_Q2SQB9: tRNA 2-selenouridine synthase	0.9017132552
+UniRef50_Q2SQB9: tRNA 2-selenouridine synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9017132552
+UniRef50_UPI0004707564: hypothetical protein	0.9016596714
+UniRef50_UPI0004707564: hypothetical protein|unclassified	0.9016596714
+UniRef50_S2D8C6	0.9016539090
+UniRef50_S2D8C6|unclassified	0.9016539090
+UniRef50_A4W9J6: Arginine N-succinyltransferase	0.9015301942
+UniRef50_A4W9J6: Arginine N-succinyltransferase|unclassified	0.9015301942
+UniRef50_A9MZ05	0.9014560405
+UniRef50_A9MZ05|unclassified	0.9014560405
+UniRef50_H4VHE5: Motility B domain protein	0.9013835655
+UniRef50_H4VHE5: Motility B domain protein|unclassified	0.9013835655
+UniRef50_B0C9D0	0.9013604910
+UniRef50_B0C9D0|unclassified	0.9013604910
+UniRef50_W0CDM5: Oligoendopeptidase F	0.9012717745
+UniRef50_W0CDM5: Oligoendopeptidase F|unclassified	0.9012717745
+UniRef50_C5BTI2: Small heat shock protein IbpA	0.9009075182
+UniRef50_C5BTI2: Small heat shock protein IbpA|unclassified	0.9009075182
+UniRef50_S5CMF0: Lysine/ornithine N-monooxygenase	0.9009009009
+UniRef50_S5CMF0: Lysine/ornithine N-monooxygenase|g__Acinetobacter.s__Acinetobacter_baumannii	0.9009009009
+UniRef50_W4S4H9: Alpha-amylase	0.9008723471
+UniRef50_W4S4H9: Alpha-amylase|unclassified	0.9008723471
+UniRef50_W8SMD0: Flagellar protein FlaF	0.9006943098
+UniRef50_W8SMD0: Flagellar protein FlaF|unclassified	0.9006943098
+UniRef50_V6XQ16: Replication initiation protein	0.9006742385
+UniRef50_V6XQ16: Replication initiation protein|unclassified	0.9006742385
+UniRef50_R1DD19	0.9006401058
+UniRef50_R1DD19|unclassified	0.9006401058
+UniRef50_A7MVJ0	0.9005841803
+UniRef50_A7MVJ0|unclassified	0.9005841803
+UniRef50_UPI0003B6178D: C4-dicarboxylate ABC transporter substrate-binding protein, partial	0.9004654616
+UniRef50_UPI0003B6178D: C4-dicarboxylate ABC transporter substrate-binding protein, partial|unclassified	0.9004654616
+UniRef50_UPI00037A9112: hypothetical protein	0.9004596012
+UniRef50_UPI00037A9112: hypothetical protein|unclassified	0.9004596012
+UniRef50_UPI000464095F: hypothetical protein	0.9002733797
+UniRef50_UPI000464095F: hypothetical protein|unclassified	0.9002733797
+UniRef50_Q0F8V4: BolA protein, truncation	0.9001688429
+UniRef50_Q0F8V4: BolA protein, truncation|unclassified	0.9001688429
+UniRef50_D4KHH9: Alcohol dehydrogenase, class IV	0.9000900090
+UniRef50_D4KHH9: Alcohol dehydrogenase, class IV|g__Clostridium.s__Clostridium_beijerinckii	0.9000900090
+UniRef50_E2XLW1: RND efflux system, outer membrane lipoprotein	0.9000900090
+UniRef50_E2XLW1: RND efflux system, outer membrane lipoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.9000900090
+UniRef50_Q7X3N2	0.9000900090
+UniRef50_Q7X3N2|unclassified	0.9000900090
+UniRef50_UPI000371708D: hypothetical protein	0.8999197429
+UniRef50_UPI000371708D: hypothetical protein|unclassified	0.8999197429
+UniRef50_UPI000471893A: hypothetical protein	0.8998632679
+UniRef50_UPI000471893A: hypothetical protein|unclassified	0.8998632679
+UniRef50_UPI000471BD1E: hypothetical protein, partial	0.8997236901
+UniRef50_UPI000471BD1E: hypothetical protein, partial|unclassified	0.8997236901
+UniRef50_UPI000464763C: hypothetical protein	0.8996675304
+UniRef50_UPI000464763C: hypothetical protein|unclassified	0.8996675304
+UniRef50_P44255: Elongation factor P hydroxylase	0.8995533372
+UniRef50_P44255: Elongation factor P hydroxylase|unclassified	0.8995533372
+UniRef50_F2DAG5: Predicted protein (Fragment)	0.8994815503
+UniRef50_F2DAG5: Predicted protein (Fragment)|unclassified	0.8994815503
+UniRef50_UPI00016C5530: hypothetical protein	0.8994625153
+UniRef50_UPI00016C5530: hypothetical protein|unclassified	0.8994625153
+UniRef50_G8AZ63	0.8993147957
+UniRef50_G8AZ63|unclassified	0.8993147957
+UniRef50_C6SJL2: Glutaminyl-tRNA synthetase	0.8992805755
+UniRef50_C6SJL2: Glutaminyl-tRNA synthetase|g__Neisseria.s__Neisseria_meningitidis	0.8992805755
+UniRef50_K4RNE1: Outer membrane protein	0.8992805755
+UniRef50_K4RNE1: Outer membrane protein|g__Helicobacter.s__Helicobacter_pylori	0.8992805755
+UniRef50_N0CST0	0.8992805755
+UniRef50_N0CST0|unclassified	0.8992805755
+UniRef50_Q1IZ16: Acyl-CoA dehydrogenase-like protein	0.8992805755
+UniRef50_Q1IZ16: Acyl-CoA dehydrogenase-like protein|g__Deinococcus.s__Deinococcus_radiodurans	0.8992805755
+UniRef50_W1I1A2: Protein AraJ	0.8992446334
+UniRef50_W1I1A2: Protein AraJ|unclassified	0.8992446334
+UniRef50_UPI00041460AA: integration host factor	0.8992289180
+UniRef50_UPI00041460AA: integration host factor|unclassified	0.8992289180
+UniRef50_UPI00042B956E	0.8992008634
+UniRef50_UPI00042B956E|unclassified	0.8992008634
+UniRef50_K1E961: ABC transporter ATPase	0.8991598767
+UniRef50_K1E961: ABC transporter ATPase|unclassified	0.8991598767
+UniRef50_C3DGQ1	0.8989603230
+UniRef50_C3DGQ1|unclassified	0.8989603230
+UniRef50_B8DA95: Ggdef motif membrane protein	0.8989222114
+UniRef50_B8DA95: Ggdef motif membrane protein|unclassified	0.8989222114
+UniRef50_V2WBL1	0.8988472516
+UniRef50_V2WBL1|g__Acinetobacter.s__Acinetobacter_baumannii	0.8988472516
+UniRef50_G7M5J0: SEC-C motif domain protein	0.8984725966
+UniRef50_G7M5J0: SEC-C motif domain protein|g__Clostridium.s__Clostridium_beijerinckii	0.8984725966
+UniRef50_V3ARY1: Ornithine decarboxylase, inducible	0.8984725966
+UniRef50_V3ARY1: Ornithine decarboxylase, inducible|g__Escherichia.s__Escherichia_coli	0.8984725966
+UniRef50_UPI000360A2CC: MULTISPECIES: hypothetical protein	0.8984381026
+UniRef50_UPI000360A2CC: MULTISPECIES: hypothetical protein|unclassified	0.8984381026
+UniRef50_F2DNQ3: Predicted protein (Fragment)	0.8983929148
+UniRef50_F2DNQ3: Predicted protein (Fragment)|unclassified	0.8983929148
+UniRef50_E9UU02: Putative TolA domain protein	0.8983538829
+UniRef50_E9UU02: Putative TolA domain protein|unclassified	0.8983538829
+UniRef50_Q168Y8	0.8983025020
+UniRef50_Q168Y8|unclassified	0.8983025020
+UniRef50_K2L778: BolA family protein	0.8982136969
+UniRef50_K2L778: BolA family protein|unclassified	0.8982136969
+UniRef50_UPI00035FB164: hypothetical protein	0.8981788115
+UniRef50_UPI00035FB164: hypothetical protein|unclassified	0.8981788115
+UniRef50_X0XNC1: Marine sediment metagenome DNA, contig: S01H1_S39230 (Fragment)	0.8981262962
+UniRef50_X0XNC1: Marine sediment metagenome DNA, contig: S01H1_S39230 (Fragment)|unclassified	0.8981262962
+UniRef50_W4S5W1: Translation initiation inhibitor	0.8979842561
+UniRef50_W4S5W1: Translation initiation inhibitor|unclassified	0.8979842561
+UniRef50_A3M9B3	0.8979346898
+UniRef50_A3M9B3|g__Acinetobacter.s__Acinetobacter_baumannii	0.8979346898
+UniRef50_A0A015W7F8	0.8977949191
+UniRef50_A0A015W7F8|unclassified	0.8977949191
+UniRef50_UPI000375C11B: hypothetical protein	0.8977797266
+UniRef50_UPI000375C11B: hypothetical protein|unclassified	0.8977797266
+UniRef50_UPI0004719EAC: heat-inducible transcription repressor, partial	0.8977743173
+UniRef50_UPI0004719EAC: heat-inducible transcription repressor, partial|unclassified	0.8977743173
+UniRef50_UPI00036196C8: hypothetical protein	0.8977550126
+UniRef50_UPI00036196C8: hypothetical protein|unclassified	0.8977550126
+UniRef50_A6T0M4	0.8976660682
+UniRef50_A6T0M4|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8976660682
+UniRef50_J5KRR9	0.8974508388
+UniRef50_J5KRR9|unclassified	0.8974508388
+UniRef50_UPI000478549A: hypothetical protein	0.8973386452
+UniRef50_UPI000478549A: hypothetical protein|unclassified	0.8973386452
+UniRef50_UPI0001DD0BD2: hypothetical protein, partial	0.8972727629
+UniRef50_UPI0001DD0BD2: hypothetical protein, partial|unclassified	0.8972727629
+UniRef50_B7G0W9: Predicted protein	0.8972096798
+UniRef50_B7G0W9: Predicted protein|unclassified	0.8972096798
+UniRef50_UPI0002D3A901: transaldolase	0.8970668071
+UniRef50_UPI0002D3A901: transaldolase|unclassified	0.8970668071
+UniRef50_O33013: Signal recognition particle protein	0.8968609865
+UniRef50_O33013: Signal recognition particle protein|g__Propionibacterium.s__Propionibacterium_acnes	0.8968609865
+UniRef50_U5MPF8: Multidrug resistance efflux pump	0.8968609865
+UniRef50_U5MPF8: Multidrug resistance efflux pump|g__Clostridium.s__Clostridium_beijerinckii	0.8968609865
+UniRef50_F0MTD0	0.8966483391
+UniRef50_F0MTD0|unclassified	0.8966483391
+UniRef50_P28998: NADP-specific glutamate dehydrogenase (Fragment)	0.8965798483
+UniRef50_P28998: NADP-specific glutamate dehydrogenase (Fragment)|g__Deinococcus.s__Deinococcus_radiodurans	0.7861635220
+UniRef50_P28998: NADP-specific glutamate dehydrogenase (Fragment)|unclassified	0.1104163263
+UniRef50_K2FSL8	0.8965392844
+UniRef50_K2FSL8|unclassified	0.8965392844
+UniRef50_UPI00025586F5: Na(+)/H(+) antiporter subunit F	0.8965291014
+UniRef50_UPI00025586F5: Na(+)/H(+) antiporter subunit F|unclassified	0.8965291014
+UniRef50_E5ZTR3	0.8964510909
+UniRef50_E5ZTR3|unclassified	0.8964510909
+UniRef50_UPI00037489EC: hypothetical protein	0.8963729302
+UniRef50_UPI00037489EC: hypothetical protein|unclassified	0.8963729302
+UniRef50_UPI000472CEA6: hypothetical protein	0.8963281494
+UniRef50_UPI000472CEA6: hypothetical protein|unclassified	0.8963281494
+UniRef50_UPI0003346A33: PREDICTED: translation initiation factor IF-2-like	0.8963059175
+UniRef50_UPI0003346A33: PREDICTED: translation initiation factor IF-2-like|unclassified	0.8963059175
+UniRef50_G8LJW2	0.8963052190
+UniRef50_G8LJW2|unclassified	0.8963052190
+UniRef50_G9RHS2: Tryptophan synthase beta chain	0.8962839430
+UniRef50_G9RHS2: Tryptophan synthase beta chain|unclassified	0.8962839430
+UniRef50_B6GDZ1	0.8962126692
+UniRef50_B6GDZ1|unclassified	0.8962126692
+UniRef50_J1EBG6	0.8961372231
+UniRef50_J1EBG6|unclassified	0.8961372231
+UniRef50_I0U581: NLPA lipofamily protein	0.8960665550
+UniRef50_I0U581: NLPA lipofamily protein|unclassified	0.8960665550
+UniRef50_A8I328: Iron alcohol dehydrogenase	0.8960573477
+UniRef50_A8I328: Iron alcohol dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.8960573477
+UniRef50_E4PGW6: L-carnitine dehydratase/bile acid-inducible protein F	0.8960573477
+UniRef50_E4PGW6: L-carnitine dehydratase/bile acid-inducible protein F|g__Acinetobacter.s__Acinetobacter_baumannii	0.8960573477
+UniRef50_UPI00036F5758: 50S ribosomal protein L10	0.8958028756
+UniRef50_UPI00036F5758: 50S ribosomal protein L10|unclassified	0.8958028756
+UniRef50_D0C6D9: Molybdopterin oxidoreductase	0.8956576847
+UniRef50_D0C6D9: Molybdopterin oxidoreductase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8956576847
+UniRef50_Q0FCE2: MORN repeat protein	0.8954425617
+UniRef50_Q0FCE2: MORN repeat protein|unclassified	0.8954425617
+UniRef50_H3RCJ7: Putative formate dehydrogenase oxidoreductase protein	0.8953686919
+UniRef50_H3RCJ7: Putative formate dehydrogenase oxidoreductase protein|unclassified	0.8953686919
+UniRef50_E3J1U8: DNA polymerase I	0.8953574724
+UniRef50_E3J1U8: DNA polymerase I|g__Propionibacterium.s__Propionibacterium_acnes	0.8953574724
+UniRef50_B6B361	0.8953438081
+UniRef50_B6B361|unclassified	0.8953438081
+UniRef50_Q0TGD0	0.8953059543
+UniRef50_Q0TGD0|unclassified	0.8953059543
+UniRef50_X0TSF6: Marine sediment metagenome DNA, contig: S01H1_L03988 (Fragment)	0.8953022594
+UniRef50_X0TSF6: Marine sediment metagenome DNA, contig: S01H1_L03988 (Fragment)|unclassified	0.8953022594
+UniRef50_U3U0C5	0.8952924410
+UniRef50_U3U0C5|unclassified	0.8952924410
+UniRef50_C8W984: M20/DapE family protein YgeY	0.8952551477
+UniRef50_C8W984: M20/DapE family protein YgeY|g__Clostridium.s__Clostridium_beijerinckii	0.8952551477
+UniRef50_F0KIW4	0.8952551477
+UniRef50_F0KIW4|g__Acinetobacter.s__Acinetobacter_baumannii	0.8952551477
+UniRef50_M1MJA7: rRNA (Guanine-N(2)-)-methyltransferase	0.8952551477
+UniRef50_M1MJA7: rRNA (Guanine-N(2)-)-methyltransferase|g__Clostridium.s__Clostridium_beijerinckii	0.8952551477
+UniRef50_Q9RYL5: GGDEF family protein	0.8952551477
+UniRef50_Q9RYL5: GGDEF family protein|g__Deinococcus.s__Deinococcus_radiodurans	0.8952551477
+UniRef50_UPI00035FE3BB: Fis family transcriptional regulator	0.8952166937
+UniRef50_UPI00035FE3BB: Fis family transcriptional regulator|unclassified	0.8952166937
+UniRef50_UPI000381661A: hypothetical protein	0.8951918749
+UniRef50_UPI000381661A: hypothetical protein|unclassified	0.8951918749
+UniRef50_H3V6X7: Serine-aspartate repeat protein F	0.8948922239
+UniRef50_H3V6X7: Serine-aspartate repeat protein F|unclassified	0.8948922239
+UniRef50_V9RTN4	0.8947550375
+UniRef50_V9RTN4|unclassified	0.8947550375
+UniRef50_UPI0003629691: hypothetical protein	0.8947214832
+UniRef50_UPI0003629691: hypothetical protein|unclassified	0.8947214832
+UniRef50_Q9RYC2: Aminotransferase, putative	0.8944543828
+UniRef50_Q9RYC2: Aminotransferase, putative|g__Deinococcus.s__Deinococcus_radiodurans	0.8944543828
+UniRef50_UPI0003503A2D: PREDICTED: translation initiation factor IF-2-like	0.8944543828
+UniRef50_UPI0003503A2D: PREDICTED: translation initiation factor IF-2-like|unclassified	0.8944543828
+UniRef50_Q9WXX0: Ribose import ATP-binding protein RbsA 1	0.8944391940
+UniRef50_Q9WXX0: Ribose import ATP-binding protein RbsA 1|unclassified	0.8944391940
+UniRef50_J4SMJ9	0.8943426433
+UniRef50_J4SMJ9|unclassified	0.8943426433
+UniRef50_A0QWW2: Glyceraldehyde-3-phosphate dehydrogenase	0.8942476341
+UniRef50_A0QWW2: Glyceraldehyde-3-phosphate dehydrogenase|unclassified	0.8942476341
+UniRef50_UPI000399A071: hypothetical protein	0.8940852455
+UniRef50_UPI000399A071: hypothetical protein|unclassified	0.8940852455
+UniRef50_F2E943: Predicted protein	0.8940274741
+UniRef50_F2E943: Predicted protein|unclassified	0.8940274741
+UniRef50_UPI0003A7DD57: ATP synthase subunit B	0.8940150829
+UniRef50_UPI0003A7DD57: ATP synthase subunit B|unclassified	0.8940150829
+UniRef50_D2U1P2	0.8940030899
+UniRef50_D2U1P2|unclassified	0.8940030899
+UniRef50_Q5WJ15: Lipoprotein	0.8939544561
+UniRef50_Q5WJ15: Lipoprotein|unclassified	0.8939544561
+UniRef50_UPI0004766D5E: malyl-CoA thiolesterase	0.8938782889
+UniRef50_UPI0004766D5E: malyl-CoA thiolesterase|unclassified	0.8938782889
+UniRef50_H3FSC0	0.8938641007
+UniRef50_H3FSC0|unclassified	0.8938641007
+UniRef50_UPI0002EF2B25: hypothetical protein	0.8938134763
+UniRef50_UPI0002EF2B25: hypothetical protein|unclassified	0.8938134763
+UniRef50_A6V0Q2	0.8936550492
+UniRef50_A6V0Q2|unclassified	0.8936550492
+UniRef50_E8PIL7: Rossmann-fold nucleotide-binding protein	0.8936550492
+UniRef50_E8PIL7: Rossmann-fold nucleotide-binding protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.8936550492
+UniRef50_UPI0003F0E9D5: PREDICTED: junctional sarcoplasmic reticulum protein 1	0.8936550492
+UniRef50_UPI0003F0E9D5: PREDICTED: junctional sarcoplasmic reticulum protein 1|unclassified	0.8936550492
+UniRef50_Q08P05	0.8935439946
+UniRef50_Q08P05|unclassified	0.8935439946
+UniRef50_UPI00046D6DBE: hypothetical protein	0.8934676957
+UniRef50_UPI00046D6DBE: hypothetical protein|unclassified	0.8934676957
+UniRef50_UPI0003781D54: hypothetical protein	0.8934290454
+UniRef50_UPI0003781D54: hypothetical protein|unclassified	0.8934290454
+UniRef50_D3A856: DNA gyrase, B subunit, C-terminal domain protein	0.8933787305
+UniRef50_D3A856: DNA gyrase, B subunit, C-terminal domain protein|g__Neisseria.s__Neisseria_meningitidis	0.8933787305
+UniRef50_G7H917	0.8933561785
+UniRef50_G7H917|unclassified	0.8933561785
+UniRef50_C2UVU9	0.8931754501
+UniRef50_C2UVU9|unclassified	0.8931754501
+UniRef50_I6DGS5: Response regulator	0.8930605435
+UniRef50_I6DGS5: Response regulator|unclassified	0.8930605435
+UniRef50_W7VM91: Transcriptional regulator, LuxR family	0.8929202364
+UniRef50_W7VM91: Transcriptional regulator, LuxR family|unclassified	0.8929202364
+UniRef50_A2S1L9	0.8928975515
+UniRef50_A2S1L9|unclassified	0.8928975515
+UniRef50_UPI0003EF0A28: hypothetical protein	0.8928644350
+UniRef50_UPI0003EF0A28: hypothetical protein|unclassified	0.8928644350
+UniRef50_O25242: DNA polymerase III subunit beta	0.8928571429
+UniRef50_O25242: DNA polymerase III subunit beta|g__Helicobacter.s__Helicobacter_pylori	0.8928571429
+UniRef50_UPI0003634E25: hypothetical protein	0.8927884878
+UniRef50_UPI0003634E25: hypothetical protein|unclassified	0.8927884878
+UniRef50_D3P5J0	0.8926890478
+UniRef50_D3P5J0|unclassified	0.8926890478
+UniRef50_F4E019	0.8925199996
+UniRef50_F4E019|unclassified	0.8925199996
+UniRef50_UPI0003751049: hypothetical protein	0.8922697175
+UniRef50_UPI0003751049: hypothetical protein|unclassified	0.8922697175
+UniRef50_A1R4R1: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.8922475320
+UniRef50_A1R4R1: Glutamyl-tRNA(Gln) amidotransferase subunit A|g__Propionibacterium.s__Propionibacterium_acnes	0.6968641115
+UniRef50_A1R4R1: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.1953834205
+UniRef50_K8DNE8: Acetylornithine aminotransferase / N-succinyl-L,L-diaminopimelate aminotransferase	0.8920606601
+UniRef50_K8DNE8: Acetylornithine aminotransferase / N-succinyl-L,L-diaminopimelate aminotransferase|g__Escherichia.s__Escherichia_coli	0.8920606601
+UniRef50_UPI0004625117: hypothetical protein, partial	0.8920606601
+UniRef50_UPI0004625117: hypothetical protein, partial|g__Streptococcus.s__Streptococcus_agalactiae	0.8920606601
+UniRef50_S6V829	0.8919307089
+UniRef50_S6V829|unclassified	0.8919307089
+UniRef50_D4HF76: Transglycosylase	0.8918852167
+UniRef50_D4HF76: Transglycosylase|g__Propionibacterium.s__Propionibacterium_acnes	0.8918852167
+UniRef50_G7LZP2: SMC domain protein	0.8916560216
+UniRef50_G7LZP2: SMC domain protein|g__Clostridium.s__Clostridium_beijerinckii	0.8916560216
+UniRef50_E9PAA9: L1349 protein	0.8916549029
+UniRef50_E9PAA9: L1349 protein|unclassified	0.8916549029
+UniRef50_U4TCC4: Putative ABC transport system, membrane domain protein	0.8916030435
+UniRef50_U4TCC4: Putative ABC transport system, membrane domain protein|unclassified	0.8916030435
+UniRef50_UPI00036454DD: hypothetical protein	0.8915534758
+UniRef50_UPI00036454DD: hypothetical protein|unclassified	0.8915534758
+UniRef50_M2YUD6	0.8914344901
+UniRef50_M2YUD6|unclassified	0.8914344901
+UniRef50_B4RIY5: Rsp	0.8912655971
+UniRef50_B4RIY5: Rsp|g__Neisseria.s__Neisseria_meningitidis	0.8912655971
+UniRef50_C3FBN6: Transposase A from transposon Tn554	0.8912655971
+UniRef50_C3FBN6: Transposase A from transposon Tn554|g__Clostridium.s__Clostridium_beijerinckii	0.8912655971
+UniRef50_P0A1Q3: Lactoylglutathione lyase	0.8912434289
+UniRef50_P0A1Q3: Lactoylglutathione lyase|unclassified	0.8912434289
+UniRef50_R1GH14: 6-pyruvoyl-tetrahydropterin synthase	0.8912091960
+UniRef50_R1GH14: 6-pyruvoyl-tetrahydropterin synthase|unclassified	0.8912091960
+UniRef50_U3KKR3	0.8911705164
+UniRef50_U3KKR3|unclassified	0.8911705164
+UniRef50_K0RDU2	0.8907597382
+UniRef50_K0RDU2|unclassified	0.8907597382
+UniRef50_J8KF61	0.8907016260
+UniRef50_J8KF61|unclassified	0.8907016260
+UniRef50_F4CV21	0.8904719501
+UniRef50_F4CV21|unclassified	0.8904719501
+UniRef50_M8Q184: Prophage tail length tape measure family protein	0.8904719501
+UniRef50_M8Q184: Prophage tail length tape measure family protein|g__Escherichia.s__Escherichia_coli	0.8904719501
+UniRef50_A3M540: TonB-dependent receptor	0.8903578054
+UniRef50_A3M540: TonB-dependent receptor|g__Acinetobacter.s__Acinetobacter_baumannii	0.8903578054
+UniRef50_C2XVH5	0.8902509364
+UniRef50_C2XVH5|unclassified	0.8902509364
+UniRef50_UPI000225A8AA: NUDIX hydrolase	0.8901015565
+UniRef50_UPI000225A8AA: NUDIX hydrolase|unclassified	0.8901015565
+UniRef50_L7VSY8	0.8901013931
+UniRef50_L7VSY8|g__Staphylococcus.s__Staphylococcus_aureus	0.4116920543
+UniRef50_L7VSY8|g__Streptococcus.s__Streptococcus_agalactiae	0.4086636698
+UniRef50_L7VSY8|unclassified	0.0697456689
+UniRef50_M1XGX9	0.8900015091
+UniRef50_M1XGX9|unclassified	0.8900015091
+UniRef50_UPI000367AA77: transcriptional regulator	0.8898603123
+UniRef50_UPI000367AA77: transcriptional regulator|unclassified	0.8898603123
+UniRef50_UPI000477B8AD: hypothetical protein	0.8898566901
+UniRef50_UPI000477B8AD: hypothetical protein|unclassified	0.8898566901
+UniRef50_M2U4H2	0.8898462829
+UniRef50_M2U4H2|unclassified	0.8898462829
+UniRef50_A1VKF6: Non-canonical purine NTP pyrophosphatase	0.8898001903
+UniRef50_A1VKF6: Non-canonical purine NTP pyrophosphatase|unclassified	0.8898001903
+UniRef50_G8V9H7: Amino acid permease	0.8896797153
+UniRef50_G8V9H7: Amino acid permease|g__Propionibacterium.s__Propionibacterium_acnes	0.8896797153
+UniRef50_X2HAY5: SUN-family protein	0.8896797153
+UniRef50_X2HAY5: SUN-family protein|g__Neisseria.s__Neisseria_meningitidis	0.8896797153
+UniRef50_UPI00039CC0CD: hypothetical protein	0.8895262863
+UniRef50_UPI00039CC0CD: hypothetical protein|unclassified	0.8895262863
+UniRef50_UPI000255A6BC: hypothetical protein	0.8891676251
+UniRef50_UPI000255A6BC: hypothetical protein|unclassified	0.8891676251
+UniRef50_UPI000468AE38: cupin	0.8891609665
+UniRef50_UPI000468AE38: cupin|unclassified	0.8891609665
+UniRef50_B2V2J6: Sporulation protein YqfD	0.8888888889
+UniRef50_B2V2J6: Sporulation protein YqfD|g__Clostridium.s__Clostridium_beijerinckii	0.8888888889
+UniRef50_Q6A8L4: Histidinol-phosphate aminotransferase	0.8888888889
+UniRef50_Q6A8L4: Histidinol-phosphate aminotransferase|g__Propionibacterium.s__Propionibacterium_acnes	0.8888888889
+UniRef50_R9ZBQ0: MFS transporter	0.8888888889
+UniRef50_R9ZBQ0: MFS transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8888888889
+UniRef50_C1GTW5	0.8888626893
+UniRef50_C1GTW5|unclassified	0.8888626893
+UniRef50_A3JAP6	0.8886028190
+UniRef50_A3JAP6|unclassified	0.8886028190
+UniRef50_L5SR28	0.8885954391
+UniRef50_L5SR28|unclassified	0.8885954391
+UniRef50_Q2RJF5: LexA repressor	0.8885550375
+UniRef50_Q2RJF5: LexA repressor|unclassified	0.8885550375
+UniRef50_D5RU62: Putative epstein-Barr nuclear antigen 1 (Fragment)	0.8885349537
+UniRef50_D5RU62: Putative epstein-Barr nuclear antigen 1 (Fragment)|unclassified	0.8885349537
+UniRef50_D0DD35	0.8883402624
+UniRef50_D0DD35|unclassified	0.8883402624
+UniRef50_UPI00037ED0B2: hypothetical protein	0.8883110990
+UniRef50_UPI00037ED0B2: hypothetical protein|unclassified	0.8883110990
+UniRef50_I1AGI3: Usher CupA3 (Fragment)	0.8882226892
+UniRef50_I1AGI3: Usher CupA3 (Fragment)|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8882226892
+UniRef50_A0A011Q772	0.8881975886
+UniRef50_A0A011Q772|unclassified	0.8881975886
+UniRef50_G4KXX3	0.8880994671
+UniRef50_G4KXX3|g__Clostridium.s__Clostridium_beijerinckii	0.8880994671
+UniRef50_H8GVT2: Cytochrome P450	0.8880994671
+UniRef50_H8GVT2: Cytochrome P450|g__Deinococcus.s__Deinococcus_radiodurans	0.8880994671
+UniRef50_R9V9R0: Sensor histidine kinase	0.8880994671
+UniRef50_R9V9R0: Sensor histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8880994671
+UniRef50_UPI0004738AE6: glyceraldehyde-3-phosphate dehydrogenase, partial	0.8879818264
+UniRef50_UPI0004738AE6: glyceraldehyde-3-phosphate dehydrogenase, partial|unclassified	0.8879818264
+UniRef50_A3IN71	0.8878522705
+UniRef50_A3IN71|unclassified	0.8878522705
+UniRef50_C2VPP6	0.8877871019
+UniRef50_C2VPP6|unclassified	0.8877871019
+UniRef50_M4X1T3	0.8876319045
+UniRef50_M4X1T3|unclassified	0.8876319045
+UniRef50_UPI0002889AF8: alcohol dehydrogenase	0.8875891151
+UniRef50_UPI0002889AF8: alcohol dehydrogenase|unclassified	0.8875891151
+UniRef50_D2ZZB2	0.8874194951
+UniRef50_D2ZZB2|unclassified	0.8874194951
+UniRef50_B7Z8M5: cDNA FLJ59045	0.8874124064
+UniRef50_B7Z8M5: cDNA FLJ59045|unclassified	0.8874124064
+UniRef50_Q6FSC1: FK506-binding protein 2	0.8873563651
+UniRef50_Q6FSC1: FK506-binding protein 2|unclassified	0.8873563651
+UniRef50_W0DY18: Diguanylate cyclase	0.8873561456
+UniRef50_W0DY18: Diguanylate cyclase|unclassified	0.8873561456
+UniRef50_A3M4L6	0.8873114463
+UniRef50_A3M4L6|g__Acinetobacter.s__Acinetobacter_baumannii	0.8873114463
+UniRef50_B9KJJ5: Cytochrome c, class I	0.8873114463
+UniRef50_B9KJJ5: Cytochrome c, class I|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.8873114463
+UniRef50_G2QDL9	0.8873114463
+UniRef50_G2QDL9|unclassified	0.8873114463
+UniRef50_M1N4V8: Signal transduction histidine kinase	0.8873114463
+UniRef50_M1N4V8: Signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	0.8873114463
+UniRef50_Q9RV79: tRNA-2-methylthio-N(6)-dimethylallyladenosine synthase	0.8873114463
+UniRef50_Q9RV79: tRNA-2-methylthio-N(6)-dimethylallyladenosine synthase|g__Deinococcus.s__Deinococcus_radiodurans	0.8873114463
+UniRef50_Q9RZ19	0.8873114463
+UniRef50_Q9RZ19|g__Deinococcus.s__Deinococcus_radiodurans	0.8873114463
+UniRef50_K3XZF5	0.8871809753
+UniRef50_K3XZF5|unclassified	0.8871809753
+UniRef50_R0EYK9: XRE family transcriptional regulator (Fragment)	0.8871480726
+UniRef50_R0EYK9: XRE family transcriptional regulator (Fragment)|unclassified	0.8871480726
+UniRef50_UPI0004769BB2: hypothetical protein	0.8869328818
+UniRef50_UPI0004769BB2: hypothetical protein|unclassified	0.8869328818
+UniRef50_O26784: Ribonuclease P protein component 3	0.8869207543
+UniRef50_O26784: Ribonuclease P protein component 3|unclassified	0.8869207543
+UniRef50_UPI00016A848B: hypothetical protein	0.8865504494
+UniRef50_UPI00016A848B: hypothetical protein|unclassified	0.8865504494
+UniRef50_UPI00034BACF0: hypothetical protein	0.8865248227
+UniRef50_UPI00034BACF0: hypothetical protein|unclassified	0.8865248227
+UniRef50_K7RWV6: Type I phosphodiesterase/nucleotide pyrophosphatase	0.8865248227
+UniRef50_K7RWV6: Type I phosphodiesterase/nucleotide pyrophosphatase|g__Propionibacterium.s__Propionibacterium_acnes	0.8865248227
+UniRef50_UPI000381094E: hypothetical protein	0.8863331826
+UniRef50_UPI000381094E: hypothetical protein|unclassified	0.8863331826
+UniRef50_V4QML0: RNA polymerase sigma factor	0.8862555330
+UniRef50_V4QML0: RNA polymerase sigma factor|unclassified	0.8862555330
+UniRef50_S6P0Z4: ABC transporter permease (Fragment)	0.8861702272
+UniRef50_S6P0Z4: ABC transporter permease (Fragment)|unclassified	0.8861702272
+UniRef50_UPI0003C0FE99: PREDICTED: DNA-(apurinic or apyrimidinic site) lyase-like	0.8861573498
+UniRef50_UPI0003C0FE99: PREDICTED: DNA-(apurinic or apyrimidinic site) lyase-like|unclassified	0.8861573498
+UniRef50_E0U709	0.8860627604
+UniRef50_E0U709|unclassified	0.8860627604
+UniRef50_S5GQF3: Lysozyme inhibitor	0.8859738157
+UniRef50_S5GQF3: Lysozyme inhibitor|unclassified	0.8859738157
+UniRef50_D0KZ49	0.8859254152
+UniRef50_D0KZ49|unclassified	0.8859254152
+UniRef50_C6S8M1	0.8857395926
+UniRef50_C6S8M1|unclassified	0.8857395926
+UniRef50_U3KIJ5	0.8857395926
+UniRef50_U3KIJ5|unclassified	0.8857395926
+UniRef50_U5MNI8: Type IV pilus assembly protein TapC	0.8857395926
+UniRef50_U5MNI8: Type IV pilus assembly protein TapC|g__Clostridium.s__Clostridium_beijerinckii	0.8857395926
+UniRef50_A3M994: Glycerol-3-phosphate acyltransferase	0.8856572258
+UniRef50_A3M994: Glycerol-3-phosphate acyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8856572258
+UniRef50_UPI0002375EBD: glucose-methanol-choline oxidoreductase, partial	0.8855691831
+UniRef50_UPI0002375EBD: glucose-methanol-choline oxidoreductase, partial|unclassified	0.8855691831
+UniRef50_I0TYX4	0.8855467101
+UniRef50_I0TYX4|unclassified	0.8855467101
+UniRef50_UPI0003A8EC6C: hypothetical protein	0.8854732517
+UniRef50_UPI0003A8EC6C: hypothetical protein|unclassified	0.8854732517
+UniRef50_UPI0003629049: hypothetical protein	0.8853806845
+UniRef50_UPI0003629049: hypothetical protein|unclassified	0.8853806845
+UniRef50_UPI00035D50AD: hypothetical protein	0.8853696286
+UniRef50_UPI00035D50AD: hypothetical protein|unclassified	0.8853696286
+UniRef50_UPI00035F8915: MULTISPECIES: hypothetical protein	0.8852557134
+UniRef50_UPI00035F8915: MULTISPECIES: hypothetical protein|unclassified	0.8852557134
+UniRef50_A0A011PEW7: NAD-specific glutamate dehydrogenase	0.8852139638
+UniRef50_A0A011PEW7: NAD-specific glutamate dehydrogenase|unclassified	0.8852139638
+UniRef50_R9ZM13	0.8851837196
+UniRef50_R9ZM13|unclassified	0.8851837196
+UniRef50_UPI00045D6A2D: PREDICTED: vegetative cell wall protein gp1-like	0.8851701111
+UniRef50_UPI00045D6A2D: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.8851701111
+UniRef50_Q3J1W3: Chemotaxis response regulator protein-glutamate methylesterase 2	0.8851472025
+UniRef50_Q3J1W3: Chemotaxis response regulator protein-glutamate methylesterase 2|unclassified	0.8851472025
+UniRef50_N4WUD3: Putative phage-related protein	0.8847024388
+UniRef50_N4WUD3: Putative phage-related protein|unclassified	0.8847024388
+UniRef50_Q166Q7	0.8841867110
+UniRef50_Q166Q7|unclassified	0.8841867110
+UniRef50_F8STZ1: Putative antiporter	0.8841732980
+UniRef50_F8STZ1: Putative antiporter|unclassified	0.8841732980
+UniRef50_Q6A8D2	0.8840737661
+UniRef50_Q6A8D2|unclassified	0.8840737661
+UniRef50_C0Q8E7: Phosphoserine phosphatase	0.8839851018
+UniRef50_C0Q8E7: Phosphoserine phosphatase|unclassified	0.8839851018
+UniRef50_S5MYM7: Phosphoserine phosphatase	0.8839851018
+UniRef50_S5MYM7: Phosphoserine phosphatase|unclassified	0.8839851018
+UniRef50_V9GHS9: Transcriptional regulator, PadR family	0.8839649422
+UniRef50_V9GHS9: Transcriptional regulator, PadR family|unclassified	0.8839649422
+UniRef50_U4V2U9	0.8839646527
+UniRef50_U4V2U9|unclassified	0.8839646527
+UniRef50_P70097: Succinate dehydrogenase cytochrome b560 subunit, mitochondrial	0.8839188477
+UniRef50_P70097: Succinate dehydrogenase cytochrome b560 subunit, mitochondrial|unclassified	0.8839188477
+UniRef50_A9L6A7: TraU family protein	0.8838092871
+UniRef50_A9L6A7: TraU family protein|unclassified	0.8838092871
+UniRef50_UPI0003B462A0: MerR family transcriptional regulator	0.8837943775
+UniRef50_UPI0003B462A0: MerR family transcriptional regulator|unclassified	0.8837943775
+UniRef50_U8ZFD1	0.8836651029
+UniRef50_U8ZFD1|unclassified	0.8836651029
+UniRef50_A1R669: Oxidoreductase family, NAD-binding Rossmann fold domain protein	0.8833922261
+UniRef50_A1R669: Oxidoreductase family, NAD-binding Rossmann fold domain protein|g__Propionibacterium.s__Propionibacterium_acnes	0.8833922261
+UniRef50_A0A031I5W8	0.8832333607
+UniRef50_A0A031I5W8|unclassified	0.8832333607
+UniRef50_M1VXV3: Related to ECM4 protein (Involved in cell wall biogenesis and architecture)	0.8832160999
+UniRef50_M1VXV3: Related to ECM4 protein (Involved in cell wall biogenesis and architecture)|unclassified	0.8832160999
+UniRef50_UPI00040189EA: C4-dicarboxylate ABC transporter permease	0.8829656016
+UniRef50_UPI00040189EA: C4-dicarboxylate ABC transporter permease|unclassified	0.8829656016
+UniRef50_A9W866	0.8829368424
+UniRef50_A9W866|unclassified	0.8829368424
+UniRef50_UPI00037179C0: hypothetical protein	0.8829335073
+UniRef50_UPI00037179C0: hypothetical protein|unclassified	0.8829335073
+UniRef50_E8S1K2: Diguanylate cyclase/phosphodiesterase	0.8828701740
+UniRef50_E8S1K2: Diguanylate cyclase/phosphodiesterase|unclassified	0.8828701740
+UniRef50_UPI000349DE0E: hypothetical protein	0.8828671059
+UniRef50_UPI000349DE0E: hypothetical protein|unclassified	0.8828671059
+UniRef50_C2Z4K0	0.8828177486
+UniRef50_C2Z4K0|unclassified	0.8828177486
+UniRef50_X0VLQ7: Marine sediment metagenome DNA, contig: S01H1_S15444 (Fragment)	0.8826226457
+UniRef50_X0VLQ7: Marine sediment metagenome DNA, contig: S01H1_S15444 (Fragment)|unclassified	0.8826226457
+UniRef50_E4SGD8: Natural resistance-associated macrophage protein	0.8826125331
+UniRef50_E4SGD8: Natural resistance-associated macrophage protein|g__Clostridium.s__Clostridium_beijerinckii	0.8826125331
+UniRef50_B2GGY2	0.8826034747
+UniRef50_B2GGY2|unclassified	0.8826034747
+UniRef50_U6NI64: ISE/inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_1177	0.8824241532
+UniRef50_U6NI64: ISE/inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_1177|unclassified	0.8824241532
+UniRef50_UPI0002D70FB9: hypothetical protein	0.8824091754
+UniRef50_UPI0002D70FB9: hypothetical protein|unclassified	0.8824091754
+UniRef50_I1DXB2	0.8823145505
+UniRef50_I1DXB2|unclassified	0.8823145505
+UniRef50_Q2G716	0.8823023058
+UniRef50_Q2G716|unclassified	0.8823023058
+UniRef50_B4RE85: Class II aldolase/adducin, N-terminal	0.8820435895
+UniRef50_B4RE85: Class II aldolase/adducin, N-terminal|unclassified	0.8820435895
+UniRef50_C1DGV0: Glycosyl transferase, group 1	0.8818342152
+UniRef50_C1DGV0: Glycosyl transferase, group 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8818342152
+UniRef50_D3PQT0: GntR family transcriptional regulator	0.8818342152
+UniRef50_D3PQT0: GntR family transcriptional regulator|g__Deinococcus.s__Deinococcus_radiodurans	0.8818342152
+UniRef50_M2JNM4: Cellobiose phosphotransferase system IIC component	0.8818342152
+UniRef50_M2JNM4: Cellobiose phosphotransferase system IIC component|g__Streptococcus.s__Streptococcus_mutans	0.8818342152
+UniRef50_V4RC70: Multidrug resistance efflux pump sepA	0.8818342152
+UniRef50_V4RC70: Multidrug resistance efflux pump sepA|unclassified	0.8818342152
+UniRef50_D2JC22	0.8818312210
+UniRef50_D2JC22|unclassified	0.8818312210
+UniRef50_L5TAD4	0.8816645515
+UniRef50_L5TAD4|unclassified	0.8816645515
+UniRef50_P14853: Cytochrome c oxidase subunit 3	0.8814951407
+UniRef50_P14853: Cytochrome c oxidase subunit 3|unclassified	0.8814951407
+UniRef50_A0A038GHL7	0.8814357948
+UniRef50_A0A038GHL7|unclassified	0.8814357948
+UniRef50_Q46336: Sarcosine oxidase subunit delta	0.8812961834
+UniRef50_Q46336: Sarcosine oxidase subunit delta|unclassified	0.8812961834
+UniRef50_UPI0003B40961: glutathione ABC transporter permease	0.8812178805
+UniRef50_UPI0003B40961: glutathione ABC transporter permease|unclassified	0.8812178805
+UniRef50_E3YW97: Cell surface protein (Fragment)	0.8811651208
+UniRef50_E3YW97: Cell surface protein (Fragment)|unclassified	0.8811651208
+UniRef50_UPI00038BE2EA: PREDICTED: spidroin-2-like	0.8811613179
+UniRef50_UPI00038BE2EA: PREDICTED: spidroin-2-like|unclassified	0.8811613179
+UniRef50_UPI0002DA0766: hypothetical protein	0.8811153554
+UniRef50_UPI0002DA0766: hypothetical protein|unclassified	0.8811153554
+UniRef50_P0A0V8: Capsule polysaccharide export outer membrane protein CtrA	0.8810572687
+UniRef50_P0A0V8: Capsule polysaccharide export outer membrane protein CtrA|g__Neisseria.s__Neisseria_meningitidis	0.8810572687
+UniRef50_E4RQB3	0.8808268697
+UniRef50_E4RQB3|unclassified	0.8808268697
+UniRef50_UPI00035E6ACB: hypothetical protein	0.8807840109
+UniRef50_UPI00035E6ACB: hypothetical protein|unclassified	0.8807840109
+UniRef50_A0A032PHW4	0.8807451799
+UniRef50_A0A032PHW4|unclassified	0.8807451799
+UniRef50_UPI00037131BB: hypothetical protein	0.8806877846
+UniRef50_UPI00037131BB: hypothetical protein|g__Neisseria.s__Neisseria_meningitidis	0.8806877846
+UniRef50_D3A510	0.8803683598
+UniRef50_D3A510|unclassified	0.8803683598
+UniRef50_J2E4K0	0.8803171738
+UniRef50_J2E4K0|unclassified	0.8803171738
+UniRef50_L0GRI3: 3-carboxymuconate cyclase	0.8802816901
+UniRef50_L0GRI3: 3-carboxymuconate cyclase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8802816901
+UniRef50_S8PCW7	0.8802816901
+UniRef50_S8PCW7|g__Streptococcus.s__Streptococcus_agalactiae	0.8802816901
+UniRef50_X1AN36: Marine sediment metagenome DNA, contig: S01H4_L06934 (Fragment)	0.8801691193
+UniRef50_X1AN36: Marine sediment metagenome DNA, contig: S01H4_L06934 (Fragment)|unclassified	0.8801691193
+UniRef50_UPI000471F8A5: hypothetical protein	0.8800518462
+UniRef50_UPI000471F8A5: hypothetical protein|unclassified	0.8800518462
+UniRef50_D1PE38	0.8799625468
+UniRef50_D1PE38|unclassified	0.8799625468
+UniRef50_C2RNA9: Microbial collagenase	0.8798736906
+UniRef50_C2RNA9: Microbial collagenase|unclassified	0.8798736906
+UniRef50_UPI0003626E85: PhoB family transcriptional regulator	0.8798462964
+UniRef50_UPI0003626E85: PhoB family transcriptional regulator|unclassified	0.8798462964
+UniRef50_UPI000476D908: sugar ABC transporter permease	0.8798276021
+UniRef50_UPI000476D908: sugar ABC transporter permease|unclassified	0.8798276021
+UniRef50_R1DU38	0.8797011383
+UniRef50_R1DU38|unclassified	0.8797011383
+UniRef50_W0Y9F3	0.8796986497
+UniRef50_W0Y9F3|unclassified	0.8796986497
+UniRef50_D2N9R0	0.8795236549
+UniRef50_D2N9R0|unclassified	0.8795236549
+UniRef50_D6ZGV8: Hydrolase, alpha/beta domain protein	0.8795074758
+UniRef50_D6ZGV8: Hydrolase, alpha/beta domain protein|g__Propionibacterium.s__Propionibacterium_acnes	0.8795074758
+UniRef50_E8PBY1: AdiY	0.8795074758
+UniRef50_E8PBY1: AdiY|g__Acinetobacter.s__Acinetobacter_baumannii	0.8795074758
+UniRef50_W4ZID1	0.8795074758
+UniRef50_W4ZID1|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8795074758
+UniRef50_UPI000477EDEC: hypothetical protein	0.8794085002
+UniRef50_UPI000477EDEC: hypothetical protein|unclassified	0.8794085002
+UniRef50_S5XVY4	0.8793877728
+UniRef50_S5XVY4|unclassified	0.8793877728
+UniRef50_UPI000375B8AD: hypothetical protein	0.8792959791
+UniRef50_UPI000375B8AD: hypothetical protein|unclassified	0.8792959791
+UniRef50_UPI0003646C18: hypothetical protein	0.8792372529
+UniRef50_UPI0003646C18: hypothetical protein|unclassified	0.8792372529
+UniRef50_X6GY08	0.8792099595
+UniRef50_X6GY08|unclassified	0.8792099595
+UniRef50_F3U386	0.8790643454
+UniRef50_F3U386|unclassified	0.8790643454
+UniRef50_Q69NX1	0.8790301826
+UniRef50_Q69NX1|unclassified	0.8790301826
+UniRef50_B6I5F1	0.8790079924
+UniRef50_B6I5F1|unclassified	0.8790079924
+UniRef50_W1EVG5	0.8789744316
+UniRef50_W1EVG5|unclassified	0.8789744316
+UniRef50_W8XJ68	0.8789657172
+UniRef50_W8XJ68|unclassified	0.8789657172
+UniRef50_UPI0003680F4C: hypothetical protein	0.8789565025
+UniRef50_UPI0003680F4C: hypothetical protein|unclassified	0.8789565025
+UniRef50_UPI0003F5F292: hypothetical protein	0.8789266653
+UniRef50_UPI0003F5F292: hypothetical protein|unclassified	0.8789266653
+UniRef50_UPI00047423A6: hypothetical protein, partial	0.8788988908
+UniRef50_UPI00047423A6: hypothetical protein, partial|unclassified	0.8788988908
+UniRef50_UPI0002627F9F: 30S ribosomal protein S17	0.8788473928
+UniRef50_UPI0002627F9F: 30S ribosomal protein S17|unclassified	0.8788473928
+UniRef50_J3NYE9	0.8788033695
+UniRef50_J3NYE9|unclassified	0.8788033695
+UniRef50_R4ZTN5: Cell wall surface anchor family protein	0.8787346221
+UniRef50_R4ZTN5: Cell wall surface anchor family protein|g__Streptococcus.s__Streptococcus_agalactiae	0.8787346221
+UniRef50_I2BU99	0.8786430129
+UniRef50_I2BU99|unclassified	0.8786430129
+UniRef50_UPI0003B5480F: GCN5 family N-acetyltransferase	0.8786359229
+UniRef50_UPI0003B5480F: GCN5 family N-acetyltransferase|unclassified	0.8786359229
+UniRef50_O87629	0.8785101278
+UniRef50_O87629|unclassified	0.8785101278
+UniRef50_UPI0002EDE9E1: hypothetical protein	0.8784777334
+UniRef50_UPI0002EDE9E1: hypothetical protein|unclassified	0.8784777334
+UniRef50_UPI0003718800: hypothetical protein, partial	0.8784035139
+UniRef50_UPI0003718800: hypothetical protein, partial|unclassified	0.8784035139
+UniRef50_P24602: Bacterioferritin	0.8783832991
+UniRef50_P24602: Bacterioferritin|unclassified	0.8783832991
+UniRef50_W4U0L6: YidE/YbjL duplication	0.8783358427
+UniRef50_W4U0L6: YidE/YbjL duplication|unclassified	0.8783358427
+UniRef50_M1W5U0	0.8780552885
+UniRef50_M1W5U0|unclassified	0.8780552885
+UniRef50_Q6FB27: Nitrate reductase, large subunit	0.8780237673
+UniRef50_Q6FB27: Nitrate reductase, large subunit|g__Acinetobacter.s__Acinetobacter_baumannii	0.8780237673
+UniRef50_O25039: Exodeoxyribonuclease 7 large subunit	0.8779631255
+UniRef50_O25039: Exodeoxyribonuclease 7 large subunit|g__Helicobacter.s__Helicobacter_pylori	0.8779631255
+UniRef50_C5YW74	0.8777444003
+UniRef50_C5YW74|unclassified	0.8777444003
+UniRef50_UPI0004627986: hypothetical protein	0.8777221678
+UniRef50_UPI0004627986: hypothetical protein|unclassified	0.8777221678
+UniRef50_G8PUC6	0.8775755289
+UniRef50_G8PUC6|unclassified	0.8775755289
+UniRef50_I0G4P6	0.8774693428
+UniRef50_I0G4P6|unclassified	0.8774693428
+UniRef50_D7CWU8: Type IV pilus assembly protein PilM	0.8771929825
+UniRef50_D7CWU8: Type IV pilus assembly protein PilM|g__Deinococcus.s__Deinococcus_radiodurans	0.8771929825
+UniRef50_K0HE29	0.8771929825
+UniRef50_K0HE29|g__Propionibacterium.s__Propionibacterium_acnes	0.8771929825
+UniRef50_R5E7A9: Extracellular ligand-binding receptor	0.8771929825
+UniRef50_R5E7A9: Extracellular ligand-binding receptor|g__Clostridium.s__Clostridium_beijerinckii	0.8771929825
+UniRef50_U8YLF7	0.8771929825
+UniRef50_U8YLF7|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8771929825
+UniRef50_S9R0I2	0.8770901705
+UniRef50_S9R0I2|unclassified	0.8770901705
+UniRef50_F6W1A6	0.8769543221
+UniRef50_F6W1A6|unclassified	0.8769543221
+UniRef50_W3RLQ6	0.8769268792
+UniRef50_W3RLQ6|unclassified	0.8769268792
+UniRef50_Q88RP8	0.8767969667
+UniRef50_Q88RP8|unclassified	0.8767969667
+UniRef50_UPI000466A8A4: hypothetical protein	0.8767881373
+UniRef50_UPI000466A8A4: hypothetical protein|unclassified	0.8767881373
+UniRef50_Q9JLZ1-2: Isoform 2 of Glutaredoxin-3	0.8766287389
+UniRef50_Q9JLZ1-2: Isoform 2 of Glutaredoxin-3|unclassified	0.8766287389
+UniRef50_I9BN00: ABC-type transporter, integral membrane subunit (Fragment)	0.8766179800
+UniRef50_I9BN00: ABC-type transporter, integral membrane subunit (Fragment)|unclassified	0.8766179800
+UniRef50_E3EXD1: Flagellar biosynthesis regulatory protein FlaF	0.8765371125
+UniRef50_E3EXD1: Flagellar biosynthesis regulatory protein FlaF|unclassified	0.8765371125
+UniRef50_A0A022NG34	0.8764241893
+UniRef50_A0A022NG34|unclassified	0.8764241893
+UniRef50_D8JJR4: Indoleacetamide hydrolase(IAH) (Indole-3-acetamidehydrolase)	0.8764241893
+UniRef50_D8JJR4: Indoleacetamide hydrolase(IAH) (Indole-3-acetamidehydrolase)|g__Acinetobacter.s__Acinetobacter_baumannii	0.8764241893
+UniRef50_F6G400	0.8764241893
+UniRef50_F6G400|unclassified	0.8764241893
+UniRef50_Q45604	0.8764241893
+UniRef50_Q45604|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8764241893
+UniRef50_A0A021A842	0.8763233583
+UniRef50_A0A021A842|unclassified	0.8763233583
+UniRef50_UPI0003B37E29: acetyltransferase	0.8762495343
+UniRef50_UPI0003B37E29: acetyltransferase|unclassified	0.8762495343
+UniRef50_Q6G4Z3: Ribosomal RNA large subunit methyltransferase E	0.8759154993
+UniRef50_Q6G4Z3: Ribosomal RNA large subunit methyltransferase E|unclassified	0.8759154993
+UniRef50_X5RVY9	0.8757133610
+UniRef50_X5RVY9|unclassified	0.8757133610
+UniRef50_Q895P9: 16S rRNA M(5)C 967 methyltransferase	0.8756567426
+UniRef50_Q895P9: 16S rRNA M(5)C 967 methyltransferase|g__Clostridium.s__Clostridium_beijerinckii	0.8756567426
+UniRef50_UPI0001D313AC: hypothetical protein	0.8756567426
+UniRef50_UPI0001D313AC: hypothetical protein|unclassified	0.8756567426
+UniRef50_W1V655	0.8756364438
+UniRef50_W1V655|unclassified	0.8756364438
+UniRef50_C4J460	0.8756361374
+UniRef50_C4J460|unclassified	0.8756361374
+UniRef50_UPI00030D86CE: flagellar biosynthetic protein FlhB	0.8753078986
+UniRef50_UPI00030D86CE: flagellar biosynthetic protein FlhB|unclassified	0.8753078986
+UniRef50_UPI000477AEDD: pseudouridine synthase	0.8750923137
+UniRef50_UPI000477AEDD: pseudouridine synthase|unclassified	0.8750923137
+UniRef50_S5E1S4: Chromosome partitioning protein ParB	0.8747916052
+UniRef50_S5E1S4: Chromosome partitioning protein ParB|unclassified	0.8747916052
+UniRef50_S9SLK2	0.8747321919
+UniRef50_S9SLK2|unclassified	0.8747321919
+UniRef50_F8KS43: GTP pyrophosphokinase	0.8747063909
+UniRef50_F8KS43: GTP pyrophosphokinase|g__Helicobacter.s__Helicobacter_pylori	0.8747063909
+UniRef50_B5GLS3	0.8746583274
+UniRef50_B5GLS3|unclassified	0.8746583274
+UniRef50_C5X9K2	0.8746061708
+UniRef50_C5X9K2|unclassified	0.8746061708
+UniRef50_K1ZWG6	0.8745701786
+UniRef50_K1ZWG6|unclassified	0.8745701786
+UniRef50_H2K9T8: Putative endoribonuclease	0.8745678041
+UniRef50_H2K9T8: Putative endoribonuclease|unclassified	0.8745678041
+UniRef50_UPI000359E613: PREDICTED: serine/arginine repetitive matrix protein 1-like	0.8745059909
+UniRef50_UPI000359E613: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	0.8745059909
+UniRef50_UPI0002D421A9: hypothetical protein	0.8743200380
+UniRef50_UPI0002D421A9: hypothetical protein|unclassified	0.8743200380
+UniRef50_UPI00023757AA: peptidase M24, partial	0.8743118936
+UniRef50_UPI00023757AA: peptidase M24, partial|unclassified	0.8743118936
+UniRef50_U5LBH6	0.8742711458
+UniRef50_U5LBH6|unclassified	0.8742711458
+UniRef50_W1G4Y4: D-beta-hydroxybutyrate permease	0.8740283397
+UniRef50_W1G4Y4: D-beta-hydroxybutyrate permease|unclassified	0.8740283397
+UniRef50_O34821: YtkL	0.8739363233
+UniRef50_O34821: YtkL|unclassified	0.8739363233
+UniRef50_UPI00018507E0: 4-amino-4-deoxychorismate lyase	0.8736609342
+UniRef50_UPI00018507E0: 4-amino-4-deoxychorismate lyase|unclassified	0.8736609342
+UniRef50_F7S7W9: Hydroxyneurosporene synthase (Fragment)	0.8736369131
+UniRef50_F7S7W9: Hydroxyneurosporene synthase (Fragment)|unclassified	0.8736369131
+UniRef50_M0LPL4: Phenol hydroxylase	0.8736041814
+UniRef50_M0LPL4: Phenol hydroxylase|unclassified	0.8736041814
+UniRef50_A9CJT0	0.8735623033
+UniRef50_A9CJT0|unclassified	0.8735623033
+UniRef50_Q9RZV9: Chromosome partitioning ATPase, putative, ParA family	0.8734817878
+UniRef50_Q9RZV9: Chromosome partitioning ATPase, putative, ParA family|unclassified	0.8734817878
+UniRef50_UPI00047E1233: hypothetical protein	0.8734424404
+UniRef50_UPI00047E1233: hypothetical protein|unclassified	0.8734424404
+UniRef50_UPI000223FC07: PREDICTED: chromosome alignment-maintaining phosphoprotein 1	0.8734409436
+UniRef50_UPI000223FC07: PREDICTED: chromosome alignment-maintaining phosphoprotein 1|unclassified	0.8734409436
+UniRef50_Q6A666	0.8733624454
+UniRef50_Q6A666|g__Propionibacterium.s__Propionibacterium_acnes	0.8733624454
+UniRef50_B0U3T9: Morphogene BolA protein	0.8730765381
+UniRef50_B0U3T9: Morphogene BolA protein|unclassified	0.8730765381
+UniRef50_UPI00036D74AB: hypothetical protein	0.8730011862
+UniRef50_UPI00036D74AB: hypothetical protein|unclassified	0.8730011862
+UniRef50_L1NDP2	0.8729393684
+UniRef50_L1NDP2|unclassified	0.8729393684
+UniRef50_H4G3E9	0.8728865330
+UniRef50_H4G3E9|unclassified	0.8728865330
+UniRef50_UPI000395E0BE: TetR family transcriptional regulator	0.8728805351
+UniRef50_UPI000395E0BE: TetR family transcriptional regulator|unclassified	0.8728805351
+UniRef50_B0VB22	0.8726003490
+UniRef50_B0VB22|g__Acinetobacter.s__Acinetobacter_baumannii	0.8726003490
+UniRef50_I7ICF1	0.8726003490
+UniRef50_I7ICF1|g__Streptococcus.s__Streptococcus_agalactiae	0.8726003490
+UniRef50_UPI00034A02A9: hypothetical protein	0.8726003490
+UniRef50_UPI00034A02A9: hypothetical protein|unclassified	0.8726003490
+UniRef50_UPI000288D39E: LysE family L-lysine exporter	0.8725150928
+UniRef50_UPI000288D39E: LysE family L-lysine exporter|unclassified	0.8725150928
+UniRef50_A0A022J9C0: LysM domain protein	0.8724499155
+UniRef50_A0A022J9C0: LysM domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.8724499155
+UniRef50_N0D1U3: Transcriptional regulator	0.8724185744
+UniRef50_N0D1U3: Transcriptional regulator|unclassified	0.8724185744
+UniRef50_J2WRV7	0.8724035175
+UniRef50_J2WRV7|unclassified	0.8724035175
+UniRef50_P42407: Putative UTP--glucose-1-phosphate uridylyltransferase	0.8723801210
+UniRef50_P42407: Putative UTP--glucose-1-phosphate uridylyltransferase|unclassified	0.8723801210
+UniRef50_UPI00046E72C5: hypothetical protein	0.8723776792
+UniRef50_UPI00046E72C5: hypothetical protein|unclassified	0.8723776792
+UniRef50_Q4RIY1: Chromosome undetermined SCAF15041, whole genome shotgun sequence. (Fragment)	0.8723769032
+UniRef50_Q4RIY1: Chromosome undetermined SCAF15041, whole genome shotgun sequence. (Fragment)|unclassified	0.8723769032
+UniRef50_UPI0003605DC7: hypothetical protein	0.8722679474
+UniRef50_UPI0003605DC7: hypothetical protein|unclassified	0.8722679474
+UniRef50_UPI0003797CF3: hypothetical protein	0.8722115285
+UniRef50_UPI0003797CF3: hypothetical protein|unclassified	0.8722115285
+UniRef50_S6W3Y1: Sarcosine oxidase subunit alpha (Fragment)	0.8718837298
+UniRef50_S6W3Y1: Sarcosine oxidase subunit alpha (Fragment)|unclassified	0.8718837298
+UniRef50_A5N2H8: FprA	0.8718395815
+UniRef50_A5N2H8: FprA|g__Clostridium.s__Clostridium_beijerinckii	0.8718395815
+UniRef50_B9KJF2: Flagellar hook-associated protein 3	0.8718395815
+UniRef50_B9KJF2: Flagellar hook-associated protein 3|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.8718395815
+UniRef50_D8JH95: ABC transporter family protein	0.8718395815
+UniRef50_D8JH95: ABC transporter family protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.8718395815
+UniRef50_E6NII4: Bifunctional phosphopantothenoylcysteine decarboxylase/phosphopantothenate synthase	0.8718395815
+UniRef50_E6NII4: Bifunctional phosphopantothenoylcysteine decarboxylase/phosphopantothenate synthase|g__Helicobacter.s__Helicobacter_pylori	0.8718395815
+UniRef50_G7ZPJ9: Restriction-modification system, S subunit	0.8718395815
+UniRef50_G7ZPJ9: Restriction-modification system, S subunit|g__Staphylococcus.s__Staphylococcus_aureus	0.8718395815
+UniRef50_UPI00037FC4A6: hypothetical protein	0.8716623190
+UniRef50_UPI00037FC4A6: hypothetical protein|unclassified	0.8716623190
+UniRef50_Q32IQ9: Putative RNA	0.8716137371
+UniRef50_Q32IQ9: Putative RNA|unclassified	0.8716137371
+UniRef50_C3KQ29	0.8715829497
+UniRef50_C3KQ29|unclassified	0.8715829497
+UniRef50_UPI0003D0DF5B: PREDICTED: tectonic-3	0.8713385943
+UniRef50_UPI0003D0DF5B: PREDICTED: tectonic-3|unclassified	0.8713385943
+UniRef50_C9XDD0: Inner membrane protein	0.8712895602
+UniRef50_C9XDD0: Inner membrane protein|unclassified	0.8712895602
+UniRef50_T1BDY7: Ribulose-1,5-bisphosphate carboxylase/oxygenase small subunit (Fragment)	0.8712022243
+UniRef50_T1BDY7: Ribulose-1,5-bisphosphate carboxylase/oxygenase small subunit (Fragment)|unclassified	0.8712022243
+UniRef50_UPI0002F622B0: hypothetical protein	0.8711844627
+UniRef50_UPI0002F622B0: hypothetical protein|unclassified	0.8711844627
+UniRef50_U7NU39	0.8711601381
+UniRef50_U7NU39|unclassified	0.8711601381
+UniRef50_UPI000466E3DD: hypothetical protein	0.8710801394
+UniRef50_UPI000466E3DD: hypothetical protein|unclassified	0.8710801394
+UniRef50_V8FVT8	0.8710801394
+UniRef50_V8FVT8|g__Clostridium.s__Clostridium_beijerinckii	0.8710801394
+UniRef50_UPI0003EFA947: phage major tail protein	0.8709004681
+UniRef50_UPI0003EFA947: phage major tail protein|unclassified	0.8709004681
+UniRef50_B4U7F2: Imidazoleglycerol-phosphate dehydratase	0.8708975967
+UniRef50_B4U7F2: Imidazoleglycerol-phosphate dehydratase|unclassified	0.8708975967
+UniRef50_UPI00046605A2: ABC transporter permease, partial	0.8708531173
+UniRef50_UPI00046605A2: ABC transporter permease, partial|unclassified	0.8708531173
+UniRef50_UPI00027F443F	0.8706998455
+UniRef50_UPI00027F443F|unclassified	0.8706998455
+UniRef50_Q9HXN5: N-Acetyl-D-Glucosamine phosphotransferase system transporter	0.8706413353
+UniRef50_Q9HXN5: N-Acetyl-D-Glucosamine phosphotransferase system transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8706413353
+UniRef50_W1G035	0.8706040182
+UniRef50_W1G035|unclassified	0.8706040182
+UniRef50_E8X2E5: ParB-like partition protein	0.8703623460
+UniRef50_E8X2E5: ParB-like partition protein|unclassified	0.8703623460
+UniRef50_F9YZS9: Integral membrane protein	0.8703220191
+UniRef50_F9YZS9: Integral membrane protein|g__Propionibacterium.s__Propionibacterium_acnes	0.8703220191
+UniRef50_P0DD78: DNA repair protein RadA homolog	0.8703220191
+UniRef50_P0DD78: DNA repair protein RadA homolog|g__Streptococcus.s__Streptococcus_agalactiae	0.8703220191
+UniRef50_UPI000471640D: adenosylcobinamide kinase	0.8703192724
+UniRef50_UPI000471640D: adenosylcobinamide kinase|unclassified	0.8703192724
+UniRef50_I3X1L2: Transposase IS4 family protein	0.8703023491
+UniRef50_I3X1L2: Transposase IS4 family protein|unclassified	0.8703023491
+UniRef50_UPI000225F5EF: gamma-glutamyl kinase	0.8702387254
+UniRef50_UPI000225F5EF: gamma-glutamyl kinase|unclassified	0.8702387254
+UniRef50_Q9JWM8: Peptide methionine sulfoxide reductase MsrA/MsrB	0.8698960294
+UniRef50_Q9JWM8: Peptide methionine sulfoxide reductase MsrA/MsrB|g__Neisseria.s__Neisseria_meningitidis	0.8481764207
+UniRef50_Q9JWM8: Peptide methionine sulfoxide reductase MsrA/MsrB|unclassified	0.0217196087
+UniRef50_B0TBM7: Light-independent protochlorophyllide reductase subunit N	0.8697580368
+UniRef50_B0TBM7: Light-independent protochlorophyllide reductase subunit N|unclassified	0.8697580368
+UniRef50_UPI0004794CF2: hypothetical protein	0.8697315368
+UniRef50_UPI0004794CF2: hypothetical protein|unclassified	0.8697315368
+UniRef50_UPI0002000D75: dinb family protein, partial	0.8696084411
+UniRef50_UPI0002000D75: dinb family protein, partial|unclassified	0.8696084411
+UniRef50_B6IQY6: Sensor protein KdpD	0.8695658749
+UniRef50_B6IQY6: Sensor protein KdpD|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.8695658749
+UniRef50_E6SFW3: Acyl-CoA dehydrogenase domain-containing protein	0.8695652174
+UniRef50_E6SFW3: Acyl-CoA dehydrogenase domain-containing protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.8695652174
+UniRef50_Q7VIB6: Bifunctional protein GlmU	0.8695652174
+UniRef50_Q7VIB6: Bifunctional protein GlmU|g__Helicobacter.s__Helicobacter_pylori	0.8695652174
+UniRef50_R4GIS5	0.8695652174
+UniRef50_R4GIS5|unclassified	0.8695652174
+UniRef50_UPI0004560170: hypothetical protein PFL1_00672	0.8695285715
+UniRef50_UPI0004560170: hypothetical protein PFL1_00672|unclassified	0.8695285715
+UniRef50_M2EMG8	0.8694220706
+UniRef50_M2EMG8|unclassified	0.8694220706
+UniRef50_P21622: Acetolactate synthase isozyme 3 small subunit	0.8693877341
+UniRef50_P21622: Acetolactate synthase isozyme 3 small subunit|unclassified	0.8693877341
+UniRef50_F2DLE5: Predicted protein (Fragment)	0.8693846035
+UniRef50_F2DLE5: Predicted protein (Fragment)|unclassified	0.8693846035
+UniRef50_UPI00026C6BF8: 6-pyruvoyl-tetrahydropterin synthase	0.8693632238
+UniRef50_UPI00026C6BF8: 6-pyruvoyl-tetrahydropterin synthase|unclassified	0.8693632238
+UniRef50_M0V7T6	0.8693628051
+UniRef50_M0V7T6|unclassified	0.8693628051
+UniRef50_UPI00046FF159: ArsR family transcriptional regulator	0.8692764205
+UniRef50_UPI00046FF159: ArsR family transcriptional regulator|unclassified	0.8692764205
+UniRef50_J0KDR3: HipA domain-containing protein	0.8692546197
+UniRef50_J0KDR3: HipA domain-containing protein|unclassified	0.8692546197
+UniRef50_B9M5V8	0.8692388595
+UniRef50_B9M5V8|unclassified	0.8692388595
+UniRef50_UPI00021A57D1: PREDICTED: hypothetical protein LOC100633951	0.8691822968
+UniRef50_UPI00021A57D1: PREDICTED: hypothetical protein LOC100633951|unclassified	0.8691822968
+UniRef50_C6M331	0.8688650162
+UniRef50_C6M331|unclassified	0.8688650162
+UniRef50_D7GDS8: Protein-export membrane protein SecF	0.8688097307
+UniRef50_D7GDS8: Protein-export membrane protein SecF|g__Propionibacterium.s__Propionibacterium_acnes	0.8688097307
+UniRef50_G8AR28	0.8688097307
+UniRef50_G8AR28|unclassified	0.8688097307
+UniRef50_UPI0004544496: PREDICTED: LOW QUALITY PROTEIN: SH2B adapter protein 2, partial	0.8688097307
+UniRef50_UPI0004544496: PREDICTED: LOW QUALITY PROTEIN: SH2B adapter protein 2, partial|unclassified	0.8688097307
+UniRef50_UPI000455D36C: NAD(P)-binding protein	0.8688097307
+UniRef50_UPI000455D36C: NAD(P)-binding protein|unclassified	0.8688097307
+UniRef50_X5JZK8: Lipoprotein, putative	0.8688097307
+UniRef50_X5JZK8: Lipoprotein, putative|g__Streptococcus.s__Streptococcus_agalactiae	0.8688097307
+UniRef50_Q3JKK7	0.8686438824
+UniRef50_Q3JKK7|unclassified	0.8686438824
+UniRef50_UPI0003B311C2: phosphoesterase	0.8685843213
+UniRef50_UPI0003B311C2: phosphoesterase|unclassified	0.8685843213
+UniRef50_UPI00047E1BBD: hypothetical protein	0.8685052943
+UniRef50_UPI00047E1BBD: hypothetical protein|unclassified	0.8685052943
+UniRef50_S9RNK0	0.8684276168
+UniRef50_S9RNK0|unclassified	0.8684276168
+UniRef50_W1X4U3	0.8683844598
+UniRef50_W1X4U3|unclassified	0.8683844598
+UniRef50_A6LQD9: ABC-type sugar transport system periplasmic component-like protein	0.8680555556
+UniRef50_A6LQD9: ABC-type sugar transport system periplasmic component-like protein|g__Clostridium.s__Clostridium_beijerinckii	0.8680555556
+UniRef50_E3HH46: Membrane protein, TerC family/CBS/transporter associated domain protein	0.8680555556
+UniRef50_E3HH46: Membrane protein, TerC family/CBS/transporter associated domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8680555556
+UniRef50_G8VMV3: Sialidase	0.8680555556
+UniRef50_G8VMV3: Sialidase|g__Propionibacterium.s__Propionibacterium_acnes	0.8680555556
+UniRef50_P44940: Putative acid--amine ligase HI_0929	0.8680555556
+UniRef50_P44940: Putative acid--amine ligase HI_0929|g__Acinetobacter.s__Acinetobacter_baumannii	0.8680555556
+UniRef50_Q1IAK7: Histidine decarboxylase	0.8680555556
+UniRef50_Q1IAK7: Histidine decarboxylase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8680555556
+UniRef50_R4QJK7: MFS transporter	0.8680555556
+UniRef50_R4QJK7: MFS transporter|g__Helicobacter.s__Helicobacter_pylori	0.8680555556
+UniRef50_R6XY75	0.8680470473
+UniRef50_R6XY75|unclassified	0.8680470473
+UniRef50_N9JWG2	0.8679130284
+UniRef50_N9JWG2|unclassified	0.8679130284
+UniRef50_A0A022CKG6	0.8676702518
+UniRef50_A0A022CKG6|g__Acinetobacter.s__Acinetobacter_baumannii	0.8676702518
+UniRef50_C2LZG9: Transcriptional regulator, PadR family	0.8676109121
+UniRef50_C2LZG9: Transcriptional regulator, PadR family|unclassified	0.8676109121
+UniRef50_G9WCA6: OxaI/YidC membrane insertion protein	0.8674709602
+UniRef50_G9WCA6: OxaI/YidC membrane insertion protein|unclassified	0.8674709602
+UniRef50_D6A7G0	0.8673485102
+UniRef50_D6A7G0|unclassified	0.8673485102
+UniRef50_H9JRN0	0.8673318628
+UniRef50_H9JRN0|unclassified	0.8673318628
+UniRef50_R5TI31	0.8673026886
+UniRef50_R5TI31|g__Helicobacter.s__Helicobacter_pylori	0.8673026886
+UniRef50_UPI00047A219A: hypothetical protein	0.8672360168
+UniRef50_UPI00047A219A: hypothetical protein|unclassified	0.8672360168
+UniRef50_UPI0002E54E33: hypothetical protein	0.8671630140
+UniRef50_UPI0002E54E33: hypothetical protein|unclassified	0.8671630140
+UniRef50_U1TVU7	0.8670510357
+UniRef50_U1TVU7|unclassified	0.8670510357
+UniRef50_UPI0003641B94: hypothetical protein, partial	0.8669796236
+UniRef50_UPI0003641B94: hypothetical protein, partial|unclassified	0.8669796236
+UniRef50_A0A059LAH7	0.8669661045
+UniRef50_A0A059LAH7|unclassified	0.8669661045
+UniRef50_A1TL16	0.8668430136
+UniRef50_A1TL16|unclassified	0.8668430136
+UniRef50_UPI0003719C44: hypothetical protein	0.8668125170
+UniRef50_UPI0003719C44: hypothetical protein|unclassified	0.8668125170
+UniRef50_Q2IXV4	0.8666795223
+UniRef50_Q2IXV4|unclassified	0.8666795223
+UniRef50_UPI00046F39AE: hypothetical protein, partial	0.8666778299
+UniRef50_UPI00046F39AE: hypothetical protein, partial|unclassified	0.8666778299
+UniRef50_D3F207	0.8661318260
+UniRef50_D3F207|unclassified	0.8661318260
+UniRef50_R8ZJM4: Pilus assembly protein	0.8661177158
+UniRef50_R8ZJM4: Pilus assembly protein|unclassified	0.8661177158
+UniRef50_A4XZ06	0.8660815022
+UniRef50_A4XZ06|unclassified	0.8660815022
+UniRef50_E6MUI2	0.8660757375
+UniRef50_E6MUI2|unclassified	0.8660757375
+UniRef50_J2E5C1	0.8660400797
+UniRef50_J2E5C1|unclassified	0.8660400797
+UniRef50_UPI00040C74F6: hypothetical protein	0.8658264197
+UniRef50_UPI00040C74F6: hypothetical protein|unclassified	0.8658264197
+UniRef50_D4HBV2: Transporter, major facilitator family protein	0.8658008658
+UniRef50_D4HBV2: Transporter, major facilitator family protein|g__Propionibacterium.s__Propionibacterium_acnes	0.8658008658
+UniRef50_D8JEY6	0.8658008658
+UniRef50_D8JEY6|g__Acinetobacter.s__Acinetobacter_baumannii	0.8658008658
+UniRef50_P58120: Multi-drug resistance efflux pump PmrA homolog	0.8658008658
+UniRef50_P58120: Multi-drug resistance efflux pump PmrA homolog|g__Streptococcus.s__Streptococcus_agalactiae	0.8658008658
+UniRef50_A0RBD6: Dehydratase	0.8657620110
+UniRef50_A0RBD6: Dehydratase|unclassified	0.8657620110
+UniRef50_N1YTS0	0.8657422488
+UniRef50_N1YTS0|unclassified	0.8657422488
+UniRef50_A5F9G1: D-erythrose-4-phosphate dehydrogenase	0.8656897676
+UniRef50_A5F9G1: D-erythrose-4-phosphate dehydrogenase|unclassified	0.8656897676
+UniRef50_X0VPJ7: Marine sediment metagenome DNA, contig: S01H1_S24785 (Fragment)	0.8655755959
+UniRef50_X0VPJ7: Marine sediment metagenome DNA, contig: S01H1_S24785 (Fragment)|unclassified	0.8655755959
+UniRef50_UPI0003612B99: hypothetical protein	0.8654589779
+UniRef50_UPI0003612B99: hypothetical protein|unclassified	0.8654589779
+UniRef50_W0AF71	0.8653096502
+UniRef50_W0AF71|unclassified	0.8653096502
+UniRef50_C7THH1	0.8652890105
+UniRef50_C7THH1|unclassified	0.8652890105
+UniRef50_UPI00047D4FEB: hypothetical protein	0.8652664869
+UniRef50_UPI00047D4FEB: hypothetical protein|unclassified	0.8652664869
+UniRef50_F9YZ80	0.8651732997
+UniRef50_F9YZ80|unclassified	0.8651732997
+UniRef50_E6MY79: Phosphoglycerate kinase	0.8650519031
+UniRef50_E6MY79: Phosphoglycerate kinase|g__Neisseria.s__Neisseria_meningitidis	0.8650519031
+UniRef50_G7CCT6	0.8650519031
+UniRef50_G7CCT6|unclassified	0.8650519031
+UniRef50_UPI00032B0031: PREDICTED: formin-like protein 18-like	0.8650519031
+UniRef50_UPI00032B0031: PREDICTED: formin-like protein 18-like|unclassified	0.8650519031
+UniRef50_A1B4R0	0.8650469342
+UniRef50_A1B4R0|unclassified	0.8650469342
+UniRef50_A0A023MPD4: Heavy metal resistance protein	0.8649814963
+UniRef50_A0A023MPD4: Heavy metal resistance protein|unclassified	0.8649814963
+UniRef50_UPI0003B30E52: organic solvent ABC transporter ATP-binding protein	0.8648685754
+UniRef50_UPI0003B30E52: organic solvent ABC transporter ATP-binding protein|unclassified	0.8648685754
+UniRef50_V9YII8	0.8648240384
+UniRef50_V9YII8|unclassified	0.8648240384
+UniRef50_UPI00047469E6: hypothetical protein	0.8648040024
+UniRef50_UPI00047469E6: hypothetical protein|unclassified	0.8648040024
+UniRef50_Q9RXB0: Alpha-dextran endo-1,6-alpha-glucosidase	0.8647560424
+UniRef50_Q9RXB0: Alpha-dextran endo-1,6-alpha-glucosidase|g__Deinococcus.s__Deinococcus_radiodurans	0.8647560424
+UniRef50_UPI0001CC3D78: 6-pyruvoyl tetrahydropterin synthase	0.8645635167
+UniRef50_UPI0001CC3D78: 6-pyruvoyl tetrahydropterin synthase|unclassified	0.8645635167
+UniRef50_H1C0X5	0.8645218162
+UniRef50_H1C0X5|unclassified	0.8645218162
+UniRef50_B9DZ64	0.8643042351
+UniRef50_B9DZ64|g__Clostridium.s__Clostridium_beijerinckii	0.8643042351
+UniRef50_Q46106: Ferritin	0.8642768044
+UniRef50_Q46106: Ferritin|unclassified	0.8642768044
+UniRef50_UPI0004656CA8: ATPase AAA	0.8640761053
+UniRef50_UPI0004656CA8: ATPase AAA|unclassified	0.8640761053
+UniRef50_I4WA77: Cupin	0.8639064757
+UniRef50_I4WA77: Cupin|unclassified	0.8639064757
+UniRef50_V5VCE3: Outer membrane protein assembly factor BamA	0.8636241294
+UniRef50_V5VCE3: Outer membrane protein assembly factor BamA|g__Acinetobacter.s__Acinetobacter_baumannii	0.8636241294
+UniRef50_E2ZXM4	0.8635578584
+UniRef50_E2ZXM4|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8635578584
+UniRef50_T0U0P6: Leucyl-tRNA synthetase	0.8635578584
+UniRef50_T0U0P6: Leucyl-tRNA synthetase|g__Staphylococcus.s__Staphylococcus_aureus	0.8635578584
+UniRef50_V5REB2: WafV	0.8635578584
+UniRef50_V5REB2: WafV|g__Acinetobacter.s__Acinetobacter_baumannii	0.8635578584
+UniRef50_UPI00046F7845: hypothetical protein	0.8633659250
+UniRef50_UPI00046F7845: hypothetical protein|unclassified	0.8633659250
+UniRef50_A3T3E0: ISxac2 transposase (Fragment)	0.8633354708
+UniRef50_A3T3E0: ISxac2 transposase (Fragment)|unclassified	0.8633354708
+UniRef50_Q11CK6: Phosphoribosyl-ATP pyrophosphatase	0.8633177114
+UniRef50_Q11CK6: Phosphoribosyl-ATP pyrophosphatase|unclassified	0.8633177114
+UniRef50_K1S3S3	0.8631714166
+UniRef50_K1S3S3|unclassified	0.8631714166
+UniRef50_W1YTD2	0.8630463845
+UniRef50_W1YTD2|unclassified	0.8630463845
+UniRef50_D1WPI4	0.8628340932
+UniRef50_D1WPI4|unclassified	0.8628340932
+UniRef50_G3NXN4	0.8628127696
+UniRef50_G3NXN4|unclassified	0.8628127696
+UniRef50_Q9ZL96: tRNA (guanine-N(7)-)-methyltransferase	0.8628127696
+UniRef50_Q9ZL96: tRNA (guanine-N(7)-)-methyltransferase|g__Helicobacter.s__Helicobacter_pylori	0.8628127696
+UniRef50_UPI0001CE1538: PREDICTED: 28S ribosomal protein S31, mitochondrial-like	0.8628127696
+UniRef50_UPI0001CE1538: PREDICTED: 28S ribosomal protein S31, mitochondrial-like|unclassified	0.8628127696
+UniRef50_UPI0003B744A6: 3-isopropylmalate dehydrogenase, partial	0.8627073472
+UniRef50_UPI0003B744A6: 3-isopropylmalate dehydrogenase, partial|unclassified	0.8627073472
+UniRef50_H0ADZ9: FeS assembly ATPase SufC (Fragment)	0.8627015088
+UniRef50_H0ADZ9: FeS assembly ATPase SufC (Fragment)|unclassified	0.8627015088
+UniRef50_UPI0003140495: hypothetical protein	0.8626820693
+UniRef50_UPI0003140495: hypothetical protein|unclassified	0.8626820693
+UniRef50_M5M5H9	0.8625583649
+UniRef50_M5M5H9|unclassified	0.8625583649
+UniRef50_UPI00027F2F72	0.8625422231
+UniRef50_UPI00027F2F72|unclassified	0.8625422231
+UniRef50_UPI00047B598A: hypothetical protein	0.8625193494
+UniRef50_UPI00047B598A: hypothetical protein|unclassified	0.8625193494
+UniRef50_UPI0004715FA9: hypothetical protein	0.8624845284
+UniRef50_UPI0004715FA9: hypothetical protein|unclassified	0.8624845284
+UniRef50_F2IZL0	0.8623921273
+UniRef50_F2IZL0|unclassified	0.8623921273
+UniRef50_UPI0003B4CAB0: aldolase	0.8622658275
+UniRef50_UPI0003B4CAB0: aldolase|unclassified	0.8622658275
+UniRef50_D0ZNB3	0.8622463519
+UniRef50_D0ZNB3|unclassified	0.8622463519
+UniRef50_Q0D9D2: Os06g0726200 protein (Fragment)	0.8621418874
+UniRef50_Q0D9D2: Os06g0726200 protein (Fragment)|unclassified	0.8621418874
+UniRef50_Q9RUT4	0.8620689655
+UniRef50_Q9RUT4|g__Deinococcus.s__Deinococcus_radiodurans	0.8620689655
+UniRef50_J8MJK1	0.8620185267
+UniRef50_J8MJK1|unclassified	0.8620185267
+UniRef50_K0RS59	0.8620174014
+UniRef50_K0RS59|unclassified	0.8620174014
+UniRef50_X0S4U2: Marine sediment metagenome DNA, contig: S01H1_L02480 (Fragment)	0.8618286027
+UniRef50_X0S4U2: Marine sediment metagenome DNA, contig: S01H1_L02480 (Fragment)|unclassified	0.8618286027
+UniRef50_B6JEG3: Phage Tail Protein X	0.8617681753
+UniRef50_B6JEG3: Phage Tail Protein X|unclassified	0.8617681753
+UniRef50_A0A022H2W5: ABC transporter	0.8617357082
+UniRef50_A0A022H2W5: ABC transporter|unclassified	0.8617357082
+UniRef50_A1B8U3	0.8616306390
+UniRef50_A1B8U3|unclassified	0.8616306390
+UniRef50_G5NBP8: Nicotinamidase/isochorismatase family protein (Fragment)	0.8615615995
+UniRef50_G5NBP8: Nicotinamidase/isochorismatase family protein (Fragment)|unclassified	0.8615615995
+UniRef50_Q9RSU0: Glutamine synthase	0.8615167891
+UniRef50_Q9RSU0: Glutamine synthase|g__Deinococcus.s__Deinococcus_radiodurans	0.8615167891
+UniRef50_H1S081	0.8614768532
+UniRef50_H1S081|unclassified	0.8614768532
+UniRef50_UPI000464FF01: phosphonate ABC transporter ATPase	0.8614440500
+UniRef50_UPI000464FF01: phosphonate ABC transporter ATPase|unclassified	0.8614440500
+UniRef50_Q9CLL8: Histidine biosynthesis bifunctional protein HisIE	0.8613481149
+UniRef50_Q9CLL8: Histidine biosynthesis bifunctional protein HisIE|unclassified	0.8613481149
+UniRef50_Q8XQ89: 3-dehydroquinate dehydratase 2	0.8613138230
+UniRef50_Q8XQ89: 3-dehydroquinate dehydratase 2|unclassified	0.8613138230
+UniRef50_Q131F6	0.8612172173
+UniRef50_Q131F6|unclassified	0.8612172173
+UniRef50_UPI0004649E15: spermidine/putrescine ABC transporter ATP-binding protein	0.8611998815
+UniRef50_UPI0004649E15: spermidine/putrescine ABC transporter ATP-binding protein|unclassified	0.8611998815
+UniRef50_R1DZG1	0.8611488402
+UniRef50_R1DZG1|unclassified	0.8611488402
+UniRef50_UPI00037E8795: hypothetical protein	0.8611294633
+UniRef50_UPI00037E8795: hypothetical protein|unclassified	0.8611294633
+UniRef50_UPI0003ACFD99: hypothetical protein	0.8611083529
+UniRef50_UPI0003ACFD99: hypothetical protein|unclassified	0.8611083529
+UniRef50_UPI00036AC882: hypothetical protein	0.8609776889
+UniRef50_UPI00036AC882: hypothetical protein|unclassified	0.8609776889
+UniRef50_W6VUU3	0.8608352167
+UniRef50_W6VUU3|unclassified	0.8608352167
+UniRef50_Q284X6: Truncated ORF68 (Fragment)	0.8608321377
+UniRef50_Q284X6: Truncated ORF68 (Fragment)|unclassified	0.8608321377
+UniRef50_UPI00038138EB: hypothetical protein	0.8605360961
+UniRef50_UPI00038138EB: hypothetical protein|unclassified	0.8605360961
+UniRef50_Q7M8H7: Valine--tRNA ligase	0.8605222328
+UniRef50_Q7M8H7: Valine--tRNA ligase|g__Helicobacter.s__Helicobacter_pylori	0.8605222328
+UniRef50_A0A035VY82	0.8602633076
+UniRef50_A0A035VY82|unclassified	0.8602633076
+UniRef50_UPI0002000E25: 3-hydroxybutyrate dehydrogenase	0.8602391657
+UniRef50_UPI0002000E25: 3-hydroxybutyrate dehydrogenase|unclassified	0.8602391657
+UniRef50_S4MLD0	0.8602273239
+UniRef50_S4MLD0|unclassified	0.8602273239
+UniRef50_R7AAF8	0.8601791638
+UniRef50_R7AAF8|unclassified	0.8601791638
+UniRef50_UPI00046B9E38: PREDICTED: vegetative cell wall protein gp1-like, partial	0.8601640833
+UniRef50_UPI00046B9E38: PREDICTED: vegetative cell wall protein gp1-like, partial|unclassified	0.8601640833
+UniRef50_R6IXA1	0.8601106772
+UniRef50_R6IXA1|unclassified	0.8601106772
+UniRef50_G7DIA2	0.8600897187
+UniRef50_G7DIA2|unclassified	0.8600897187
+UniRef50_A3M8R9	0.8600440193
+UniRef50_A3M8R9|g__Acinetobacter.s__Acinetobacter_baumannii	0.8600440193
+UniRef50_UPI0002FF935C: transporter	0.8600383298
+UniRef50_UPI0002FF935C: transporter|unclassified	0.8600383298
+UniRef50_V5T4P8: Fimbrial biogenesis outer membrane usher protein	0.8599979850
+UniRef50_V5T4P8: Fimbrial biogenesis outer membrane usher protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8599979850
+UniRef50_UPI0002034B4E: PREDICTED: 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial-like	0.8599394154
+UniRef50_UPI0002034B4E: PREDICTED: 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial-like|unclassified	0.8599394154
+UniRef50_Q17YP3: Major facilitator family transporter	0.8598452279
+UniRef50_Q17YP3: Major facilitator family transporter|g__Helicobacter.s__Helicobacter_pylori	0.8598452279
+UniRef50_Q4JIP0: Ankyrin-related protein	0.8598452279
+UniRef50_Q4JIP0: Ankyrin-related protein|unclassified	0.8598452279
+UniRef50_J9P043	0.8598180864
+UniRef50_J9P043|unclassified	0.8598180864
+UniRef50_UPI00039F3354: nitrogenase subunit nifH	0.8598077894
+UniRef50_UPI00039F3354: nitrogenase subunit nifH|unclassified	0.8598077894
+UniRef50_R0DPI3: N-formimino-L-glutamate deiminase (Fragment)	0.8597270427
+UniRef50_R0DPI3: N-formimino-L-glutamate deiminase (Fragment)|unclassified	0.8597270427
+UniRef50_Q30RX5: Chemotaxis response regulator protein-glutamate methylesterase	0.8596112213
+UniRef50_Q30RX5: Chemotaxis response regulator protein-glutamate methylesterase|unclassified	0.8596112213
+UniRef50_G6EQ57: NIF3-related protein	0.8594861211
+UniRef50_G6EQ57: NIF3-related protein|unclassified	0.8594861211
+UniRef50_W6RE23	0.8594716701
+UniRef50_W6RE23|unclassified	0.8594716701
+UniRef50_UPI0004727859: hypothetical protein, partial	0.8594010942
+UniRef50_UPI0004727859: hypothetical protein, partial|unclassified	0.8594010942
+UniRef50_Q9HZY8: Esterase TesA	0.8593450701
+UniRef50_Q9HZY8: Esterase TesA|unclassified	0.8593450701
+UniRef50_UPI00036316D0: hypothetical protein	0.8593286747
+UniRef50_UPI00036316D0: hypothetical protein|unclassified	0.8593286747
+UniRef50_UPI00036F1E8B: hypothetical protein	0.8593274950
+UniRef50_UPI00036F1E8B: hypothetical protein|unclassified	0.8593274950
+UniRef50_B2U2H3: FAD dependent oxidoreductase	0.8593070995
+UniRef50_B2U2H3: FAD dependent oxidoreductase|unclassified	0.8593070995
+UniRef50_UPI000413242B: hypothetical protein	0.8592747384
+UniRef50_UPI000413242B: hypothetical protein|unclassified	0.8592747384
+UniRef50_UPI000369D83B: hypothetical protein	0.8592562470
+UniRef50_UPI000369D83B: hypothetical protein|unclassified	0.8592562470
+UniRef50_V5SGC9: Membrane protein	0.8592042557
+UniRef50_V5SGC9: Membrane protein|unclassified	0.8592042557
+UniRef50_E6NJW8: Poly E-rich protein	0.8591065292
+UniRef50_E6NJW8: Poly E-rich protein|g__Helicobacter.s__Helicobacter_pylori	0.8591065292
+UniRef50_UPI0000164CF0: helicase-related protein, partial	0.8591065292
+UniRef50_UPI0000164CF0: helicase-related protein, partial|g__Deinococcus.s__Deinococcus_radiodurans	0.8591065292
+UniRef50_UPI0003A61868: hypothetical protein	0.8591065292
+UniRef50_UPI0003A61868: hypothetical protein|unclassified	0.8591065292
+UniRef50_V9TDS1	0.8590576872
+UniRef50_V9TDS1|unclassified	0.8590576872
+UniRef50_U6JNN9	0.8590483450
+UniRef50_U6JNN9|unclassified	0.8590483450
+UniRef50_UPI00047A1147: nucleoside-triphosphate diphosphatase, partial	0.8588975742
+UniRef50_UPI00047A1147: nucleoside-triphosphate diphosphatase, partial|unclassified	0.8588975742
+UniRef50_UPI0001850F53: hypothetical protein	0.8586472851
+UniRef50_UPI0001850F53: hypothetical protein|unclassified	0.8586472851
+UniRef50_P9WN18: Glutamate synthase [NADPH] small chain	0.8585105151
+UniRef50_P9WN18: Glutamate synthase [NADPH] small chain|unclassified	0.8585105151
+UniRef50_K2NZI0	0.8584041094
+UniRef50_K2NZI0|unclassified	0.8584041094
+UniRef50_B2TKT2: D-alanine--poly(phosphoribitol) ligase subunit 1	0.8583690987
+UniRef50_B2TKT2: D-alanine--poly(phosphoribitol) ligase subunit 1|g__Clostridium.s__Clostridium_beijerinckii	0.8583690987
+UniRef50_D5ANN3: Molybdopterin biosynthesis protein MoeA	0.8583690987
+UniRef50_D5ANN3: Molybdopterin biosynthesis protein MoeA|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.8583690987
+UniRef50_I3VWE8: Aspartokinase	0.8583690987
+UniRef50_I3VWE8: Aspartokinase|g__Clostridium.s__Clostridium_beijerinckii	0.8583690987
+UniRef50_UPI0004573953: PREDICTED: C-type lectin domain family 14 member A	0.8583690987
+UniRef50_UPI0004573953: PREDICTED: C-type lectin domain family 14 member A|unclassified	0.8583690987
+UniRef50_UPI00046642F0: 50S ribosomal protein L31 type B	0.8581664070
+UniRef50_UPI00046642F0: 50S ribosomal protein L31 type B|unclassified	0.8581664070
+UniRef50_V8H1A9	0.8580756437
+UniRef50_V8H1A9|unclassified	0.8580756437
+UniRef50_S9QW50	0.8578538409
+UniRef50_S9QW50|unclassified	0.8578538409
+UniRef50_UPI000476F7F2: hypothetical protein	0.8576607716
+UniRef50_UPI000476F7F2: hypothetical protein|unclassified	0.8576607716
+UniRef50_A0A023S033: Peptidase C13 family protein	0.8576329331
+UniRef50_A0A023S033: Peptidase C13 family protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.8576329331
+UniRef50_D8TR27	0.8576329331
+UniRef50_D8TR27|unclassified	0.8576329331
+UniRef50_M4UY53: Cytochrome c-type biogenesis protein CcsA/ResC	0.8576329331
+UniRef50_M4UY53: Cytochrome c-type biogenesis protein CcsA/ResC|g__Neisseria.s__Neisseria_meningitidis	0.8576329331
+UniRef50_F0YA18	0.8572691300
+UniRef50_F0YA18|unclassified	0.8572691300
+UniRef50_K7VUL5	0.8572115008
+UniRef50_K7VUL5|unclassified	0.8572115008
+UniRef50_R6M784	0.8571621887
+UniRef50_R6M784|unclassified	0.8571621887
+UniRef50_R7G856: Transcriptional regulator PadR family	0.8571323956
+UniRef50_R7G856: Transcriptional regulator PadR family|unclassified	0.8571323956
+UniRef50_UPI000225BCE1: Cro/Cl family transcriptional regulator	0.8570685618
+UniRef50_UPI000225BCE1: Cro/Cl family transcriptional regulator|unclassified	0.8570685618
+UniRef50_L1KH26: ORFV protein	0.8570577636
+UniRef50_L1KH26: ORFV protein|unclassified	0.8570577636
+UniRef50_UPI00046F6B83: hypothetical protein, partial	0.8569681387
+UniRef50_UPI00046F6B83: hypothetical protein, partial|unclassified	0.8569681387
+UniRef50_B7JLD2	0.8569588209
+UniRef50_B7JLD2|unclassified	0.8569588209
+UniRef50_A0A038GII6	0.8569170954
+UniRef50_A0A038GII6|unclassified	0.8569170954
+UniRef50_I1AVP4	0.8568929247
+UniRef50_I1AVP4|unclassified	0.8568929247
+UniRef50_W1XIN2	0.8568452011
+UniRef50_W1XIN2|unclassified	0.8568452011
+UniRef50_UPI000377E217: hypothetical protein	0.8568234535
+UniRef50_UPI000377E217: hypothetical protein|unclassified	0.8568234535
+UniRef50_A0A017JC23	0.8566369496
+UniRef50_A0A017JC23|unclassified	0.8566369496
+UniRef50_Q7AX67	0.8566266109
+UniRef50_Q7AX67|g__Neisseria.s__Neisseria_meningitidis	0.8566266109
+UniRef50_V4J8H7	0.8565043702
+UniRef50_V4J8H7|unclassified	0.8565043702
+UniRef50_C7XVV7: Transglycosylase associated family protein	0.8564809624
+UniRef50_C7XVV7: Transglycosylase associated family protein|unclassified	0.8564809624
+UniRef50_F0MV13: CoA binding domain/acetyltransferase, GNAT family	0.8564282068
+UniRef50_F0MV13: CoA binding domain/acetyltransferase, GNAT family|g__Neisseria.s__Neisseria_meningitidis	0.8564282068
+UniRef50_UPI00036D10A8: hypothetical protein, partial	0.8563141107
+UniRef50_UPI00036D10A8: hypothetical protein, partial|unclassified	0.8563141107
+UniRef50_UPI00039CFDC1: hypothetical protein	0.8563003512
+UniRef50_UPI00039CFDC1: hypothetical protein|unclassified	0.8563003512
+UniRef50_UPI0003B7561B: transposase, partial	0.8562860253
+UniRef50_UPI0003B7561B: transposase, partial|unclassified	0.8562860253
+UniRef50_W4TZ21: Protein translocase subunit SecA	0.8562399880
+UniRef50_W4TZ21: Protein translocase subunit SecA|g__Propionibacterium.s__Propionibacterium_acnes	0.8562399880
+UniRef50_A6LX76	0.8561643836
+UniRef50_A6LX76|g__Clostridium.s__Clostridium_beijerinckii	0.8561643836
+UniRef50_G0MCM5	0.8561643836
+UniRef50_G0MCM5|unclassified	0.8561643836
+UniRef50_A0A024NR48	0.8561398615
+UniRef50_A0A024NR48|unclassified	0.8561398615
+UniRef50_C9XPK8: Padr-family transcriptional regulator	0.8560310815
+UniRef50_C9XPK8: Padr-family transcriptional regulator|unclassified	0.8560310815
+UniRef50_E7Q0E7	0.8560153399
+UniRef50_E7Q0E7|unclassified	0.8560153399
+UniRef50_R5HQZ2: TRAP transporter DctM subunit/tripartite ATP-independent periplasmic transporter solute receptor DctP family	0.8559345457
+UniRef50_R5HQZ2: TRAP transporter DctM subunit/tripartite ATP-independent periplasmic transporter solute receptor DctP family|unclassified	0.8559345457
+UniRef50_R5V3X5	0.8559079232
+UniRef50_R5V3X5|unclassified	0.8559079232
+UniRef50_H5N8M3: Phage shock protein C	0.8557738746
+UniRef50_H5N8M3: Phage shock protein C|unclassified	0.8557738746
+UniRef50_T0Y894: GMP synthase, large subunit	0.8557499251
+UniRef50_T0Y894: GMP synthase, large subunit|unclassified	0.8557499251
+UniRef50_A0A023LDX8	0.8556759821
+UniRef50_A0A023LDX8|unclassified	0.8556759821
+UniRef50_W1B157	0.8555906405
+UniRef50_W1B157|unclassified	0.8555906405
+UniRef50_C3FD24	0.8555319925
+UniRef50_C3FD24|unclassified	0.8555319925
+UniRef50_UPI0001B42B45: two-component response regulator, partial	0.8554731293
+UniRef50_UPI0001B42B45: two-component response regulator, partial|unclassified	0.8554731293
+UniRef50_A3JQ80	0.8554630209
+UniRef50_A3JQ80|unclassified	0.8554630209
+UniRef50_UPI00045428D4: PREDICTED: collagen alpha-1(III) chain-like	0.8554446036
+UniRef50_UPI00045428D4: PREDICTED: collagen alpha-1(III) chain-like|unclassified	0.8554446036
+UniRef50_Q4I1N3: Sulfate adenylyltransferase	0.8554349126
+UniRef50_Q4I1N3: Sulfate adenylyltransferase|unclassified	0.8554349126
+UniRef50_Q2SBV0: Signal transduction histidine kinase involved in nitrogen fixation and metabolism regulation	0.8554319932
+UniRef50_Q2SBV0: Signal transduction histidine kinase involved in nitrogen fixation and metabolism regulation|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8554319932
+UniRef50_D4YZ36	0.8553996306
+UniRef50_D4YZ36|unclassified	0.8553996306
+UniRef50_UPI00037F27EC: hypothetical protein, partial	0.8552802794
+UniRef50_UPI00037F27EC: hypothetical protein, partial|unclassified	0.8552802794
+UniRef50_X0YY88: Marine sediment metagenome DNA, contig: S01H1_S26301 (Fragment)	0.8552687768
+UniRef50_X0YY88: Marine sediment metagenome DNA, contig: S01H1_S26301 (Fragment)|unclassified	0.8552687768
+UniRef50_UPI0003B659FC: ribose ABC transporter permease	0.8552166446
+UniRef50_UPI0003B659FC: ribose ABC transporter permease|unclassified	0.8552166446
+UniRef50_A5VEU2	0.8552017178
+UniRef50_A5VEU2|unclassified	0.8552017178
+UniRef50_A3M2D8	0.8551962606
+UniRef50_A3M2D8|g__Acinetobacter.s__Acinetobacter_baumannii	0.8551962606
+UniRef50_UPI0003ADF438: PREDICTED: basic proline-rich protein-like	0.8549600034
+UniRef50_UPI0003ADF438: PREDICTED: basic proline-rich protein-like|unclassified	0.8549600034
+UniRef50_UPI00036D230F: hypothetical protein	0.8547979640
+UniRef50_UPI00036D230F: hypothetical protein|unclassified	0.8547979640
+UniRef50_UPI0003946461: hydrolase	0.8547138048
+UniRef50_UPI0003946461: hydrolase|unclassified	0.8547138048
+UniRef50_P9WIZ4: Divalent metal cation transporter MntH	0.8547008547
+UniRef50_P9WIZ4: Divalent metal cation transporter MntH|g__Propionibacterium.s__Propionibacterium_acnes	0.8547008547
+UniRef50_Q5F5X0: 1-deoxy-D-xylulose 5-phosphate reductoisomerase	0.8547008547
+UniRef50_Q5F5X0: 1-deoxy-D-xylulose 5-phosphate reductoisomerase|g__Neisseria.s__Neisseria_meningitidis	0.8547008547
+UniRef50_UPI000463D212: hypothetical protein	0.8545022888
+UniRef50_UPI000463D212: hypothetical protein|unclassified	0.8545022888
+UniRef50_UPI00037EB83E: hypothetical protein	0.8543629717
+UniRef50_UPI00037EB83E: hypothetical protein|unclassified	0.8543629717
+UniRef50_UPI0002DBBF7F: transposase	0.8542675147
+UniRef50_UPI0002DBBF7F: transposase|unclassified	0.8542675147
+UniRef50_G8AR80	0.8542405026
+UniRef50_G8AR80|unclassified	0.8542405026
+UniRef50_E0XS70	0.8542380150
+UniRef50_E0XS70|unclassified	0.8542380150
+UniRef50_A0A011NMW0	0.8540562190
+UniRef50_A0A011NMW0|unclassified	0.8540562190
+UniRef50_F2MNQ3: Serine protease HtrA	0.8539709650
+UniRef50_F2MNQ3: Serine protease HtrA|g__Streptococcus.s__Streptococcus_agalactiae	0.8539709650
+UniRef50_J3BM07	0.8539125197
+UniRef50_J3BM07|unclassified	0.8539125197
+UniRef50_L2Q9X2	0.8538584766
+UniRef50_L2Q9X2|unclassified	0.8538584766
+UniRef50_UPI00045E6DFA: hypothetical protein	0.8537203472
+UniRef50_UPI00045E6DFA: hypothetical protein|unclassified	0.8537203472
+UniRef50_I0L3J5: Putative two component transcriptional regulator,winged helix family	0.8536914510
+UniRef50_I0L3J5: Putative two component transcriptional regulator,winged helix family|unclassified	0.8536914510
+UniRef50_UPI0003B38D86: chemotaxis protein CheR	0.8536422634
+UniRef50_UPI0003B38D86: chemotaxis protein CheR|unclassified	0.8536422634
+UniRef50_UPI0003476A90: hypothetical protein	0.8535918030
+UniRef50_UPI0003476A90: hypothetical protein|unclassified	0.8535918030
+UniRef50_F7XC58	0.8534256293
+UniRef50_F7XC58|unclassified	0.8534256293
+UniRef50_UPI000478F510: hypothetical protein	0.8534080064
+UniRef50_UPI000478F510: hypothetical protein|unclassified	0.8534080064
+UniRef50_S5D1L5	0.8533966206
+UniRef50_S5D1L5|unclassified	0.8533966206
+UniRef50_W7Q474	0.8533082044
+UniRef50_W7Q474|unclassified	0.8533082044
+UniRef50_O05488: VvrA (Fragment)	0.8532829516
+UniRef50_O05488: VvrA (Fragment)|unclassified	0.8532829516
+UniRef50_E6S2B8	0.8532423208
+UniRef50_E6S2B8|g__Helicobacter.s__Helicobacter_pylori	0.8532423208
+UniRef50_G7U594: Nicotinate-nucleotide--dimethylbenzimidazole phosphoribosyltransferase	0.8532423208
+UniRef50_G7U594: Nicotinate-nucleotide--dimethylbenzimidazole phosphoribosyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	0.8532423208
+UniRef50_H5TNL0: Hydantoin utilization protein A	0.8532079144
+UniRef50_H5TNL0: Hydantoin utilization protein A|unclassified	0.8532079144
+UniRef50_UPI0002889E5F: AsnC family transcriptional regulator	0.8531381937
+UniRef50_UPI0002889E5F: AsnC family transcriptional regulator|unclassified	0.8531381937
+UniRef50_F3GSD8: Transcriptional regulatory protein NfxB (Fragment)	0.8530418525
+UniRef50_F3GSD8: Transcriptional regulatory protein NfxB (Fragment)|unclassified	0.8530418525
+UniRef50_UPI000374CE3A: hypothetical protein, partial	0.8529519604
+UniRef50_UPI000374CE3A: hypothetical protein, partial|unclassified	0.8529519604
+UniRef50_UPI00046DCA03: PilS cassette, partial	0.8527947481
+UniRef50_UPI00046DCA03: PilS cassette, partial|unclassified	0.8527947481
+UniRef50_L5MMB1: Resolvase domain protein (Fragment)	0.8527448596
+UniRef50_L5MMB1: Resolvase domain protein (Fragment)|unclassified	0.8527448596
+UniRef50_N2KER2: Soluble liver antigen/liver pancreas antigen family protein	0.8526470294
+UniRef50_N2KER2: Soluble liver antigen/liver pancreas antigen family protein|unclassified	0.8526470294
+UniRef50_Q1C5I4: Nucleoside diphosphate kinase	0.8526468370
+UniRef50_Q1C5I4: Nucleoside diphosphate kinase|unclassified	0.8526468370
+UniRef50_W0A724	0.8526364926
+UniRef50_W0A724|unclassified	0.8526364926
+UniRef50_UPI00047BF851: hypothetical protein	0.8526023535
+UniRef50_UPI00047BF851: hypothetical protein|unclassified	0.8526023535
+UniRef50_UPI0003B6DDE5: quaternary ammonium transporter	0.8525864683
+UniRef50_UPI0003B6DDE5: quaternary ammonium transporter|unclassified	0.8525864683
+UniRef50_A1TT41: Non-canonical purine NTP pyrophosphatase	0.8525583591
+UniRef50_A1TT41: Non-canonical purine NTP pyrophosphatase|unclassified	0.8525583591
+UniRef50_A0A009L0Q9: Diguanylate cyclase domain protein	0.8525149190
+UniRef50_A0A009L0Q9: Diguanylate cyclase domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.8525149190
+UniRef50_A6LR83: Drug resistance transporter, EmrB/QacA subfamily	0.8525149190
+UniRef50_A6LR83: Drug resistance transporter, EmrB/QacA subfamily|g__Clostridium.s__Clostridium_beijerinckii	0.8525149190
+UniRef50_M9S5H9	0.8525149190
+UniRef50_M9S5H9|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8525149190
+UniRef50_R4ZTN2: Glycerophosphoryl diester phosphodiesterase	0.8525149190
+UniRef50_R4ZTN2: Glycerophosphoryl diester phosphodiesterase|g__Streptococcus.s__Streptococcus_agalactiae	0.8525149190
+UniRef50_UPI000289F451: hypothetical protein, partial	0.8525149190
+UniRef50_UPI000289F451: hypothetical protein, partial|unclassified	0.8525149190
+UniRef50_UPI00037B097D: hypothetical protein	0.8524054058
+UniRef50_UPI00037B097D: hypothetical protein|unclassified	0.8524054058
+UniRef50_UPI0004764AED: hypothetical protein, partial	0.8523922313
+UniRef50_UPI0004764AED: hypothetical protein, partial|unclassified	0.8523922313
+UniRef50_P14657: NADP-specific glutamate dehydrogenase	0.8523893720
+UniRef50_P14657: NADP-specific glutamate dehydrogenase|g__Escherichia.s__Escherichia_coli	0.7541478130
+UniRef50_P14657: NADP-specific glutamate dehydrogenase|unclassified	0.0982415591
+UniRef50_D8TVC3	0.8523556331
+UniRef50_D8TVC3|unclassified	0.8523556331
+UniRef50_A9GCN9	0.8522824600
+UniRef50_A9GCN9|unclassified	0.8522824600
+UniRef50_K2BFW3	0.8522236722
+UniRef50_K2BFW3|unclassified	0.8522236722
+UniRef50_Q28M37: Transcriptional regulator, CarD family	0.8521833513
+UniRef50_Q28M37: Transcriptional regulator, CarD family|unclassified	0.8521833513
+UniRef50_F0Y592: Expressed protein (Fragment)	0.8521212906
+UniRef50_F0Y592: Expressed protein (Fragment)|unclassified	0.8521212906
+UniRef50_G1Y1D6	0.8520371867
+UniRef50_G1Y1D6|unclassified	0.8520371867
+UniRef50_UPI00005103EC: tetracycline resistance protein	0.8520208229
+UniRef50_UPI00005103EC: tetracycline resistance protein|unclassified	0.8520208229
+UniRef50_UPI00036CDCFE: hypothetical protein	0.8519348387
+UniRef50_UPI00036CDCFE: hypothetical protein|unclassified	0.8519348387
+UniRef50_D9RFA6	0.8519280600
+UniRef50_D9RFA6|unclassified	0.8519280600
+UniRef50_A8GK38: Peptidase U62 modulator of DNA gyrase	0.8519280585
+UniRef50_A8GK38: Peptidase U62 modulator of DNA gyrase|g__Escherichia.s__Escherichia_coli	0.7770007770
+UniRef50_A8GK38: Peptidase U62 modulator of DNA gyrase|unclassified	0.0749272815
+UniRef50_C7BXE2	0.8517887564
+UniRef50_C7BXE2|g__Helicobacter.s__Helicobacter_pylori	0.8517887564
+UniRef50_K6M6J3: Transporter, major facilitator family protein	0.8517887564
+UniRef50_K6M6J3: Transporter, major facilitator family protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.8517887564
+UniRef50_UPI00047858B2: hypothetical protein	0.8517637554
+UniRef50_UPI00047858B2: hypothetical protein|unclassified	0.8517637554
+UniRef50_K0HTI4: YD repeat protein	0.8516355500
+UniRef50_K0HTI4: YD repeat protein|g__Propionibacterium.s__Propionibacterium_acnes	0.8516355500
+UniRef50_UPI00037F21E4: hypothetical protein	0.8515903138
+UniRef50_UPI00037F21E4: hypothetical protein|unclassified	0.8515903138
+UniRef50_G8MW75	0.8514959804
+UniRef50_G8MW75|unclassified	0.8514959804
+UniRef50_UPI0003B5BA4F: 30S ribosomal protein S17	0.8512195013
+UniRef50_UPI0003B5BA4F: 30S ribosomal protein S17|unclassified	0.8512195013
+UniRef50_UPI000466DF7F: hypothetical protein	0.8511175917
+UniRef50_UPI000466DF7F: hypothetical protein|unclassified	0.8511175917
+UniRef50_X8F0P6	0.8511026686
+UniRef50_X8F0P6|unclassified	0.8511026686
+UniRef50_G2JDG3: RNA-splicing ligase RtcB	0.8510638298
+UniRef50_G2JDG3: RNA-splicing ligase RtcB|g__Acinetobacter.s__Acinetobacter_baumannii	0.8510638298
+UniRef50_W5L6H6	0.8510638298
+UniRef50_W5L6H6|unclassified	0.8510638298
+UniRef50_UPI0004754862: hypothetical protein	0.8507532286
+UniRef50_UPI0004754862: hypothetical protein|unclassified	0.8507532286
+UniRef50_I3UF87: Sarcosine oxidase subunit alpha	0.8506535601
+UniRef50_I3UF87: Sarcosine oxidase subunit alpha|unclassified	0.8506535601
+UniRef50_UPI0003C02B7D	0.8505468938
+UniRef50_UPI0003C02B7D|unclassified	0.8505468938
+UniRef50_D3UZU9	0.8504141517
+UniRef50_D3UZU9|unclassified	0.8504141517
+UniRef50_E4CT22	0.8503998160
+UniRef50_E4CT22|unclassified	0.8503998160
+UniRef50_Q4ZLN0	0.8503401361
+UniRef50_Q4ZLN0|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8503401361
+UniRef50_Q83LM9	0.8503401361
+UniRef50_Q83LM9|unclassified	0.8503401361
+UniRef50_T1TGV0	0.8503401361
+UniRef50_T1TGV0|unclassified	0.8503401361
+UniRef50_Y1QWF2	0.8503356071
+UniRef50_Y1QWF2|unclassified	0.8503356071
+UniRef50_I1AQG2: IS5 family transposase OrfA	0.8502809933
+UniRef50_I1AQG2: IS5 family transposase OrfA|unclassified	0.8502809933
+UniRef50_D1DPS2	0.8502455245
+UniRef50_D1DPS2|unclassified	0.8502455245
+UniRef50_K4NAS3: ATP-binding protein	0.8502119838
+UniRef50_K4NAS3: ATP-binding protein|g__Helicobacter.s__Helicobacter_pylori	0.8502119838
+UniRef50_UPI00046A008D: hypothetical protein	0.8501045999
+UniRef50_UPI00046A008D: hypothetical protein|unclassified	0.8501045999
+UniRef50_UPI0001BF61CF: hypothetical protein SMAC_11806, partial	0.8500908808
+UniRef50_UPI0001BF61CF: hypothetical protein SMAC_11806, partial|unclassified	0.8500908808
+UniRef50_UPI00041218DC: peptide ABC transporter permease	0.8498736522
+UniRef50_UPI00041218DC: peptide ABC transporter permease|unclassified	0.8498736522
+UniRef50_Q31ZD9	0.8498659792
+UniRef50_Q31ZD9|unclassified	0.8498659792
+UniRef50_D6KCK7: Lanthionine synthetase C family protein	0.8498242075
+UniRef50_D6KCK7: Lanthionine synthetase C family protein|unclassified	0.8498242075
+UniRef50_W4L2A1: Phosphoglycerate mutase	0.8497854189
+UniRef50_W4L2A1: Phosphoglycerate mutase|unclassified	0.8497854189
+UniRef50_Q7A441: Molybdopterin synthase sulfur carrier subunit	0.8497710310
+UniRef50_Q7A441: Molybdopterin synthase sulfur carrier subunit|unclassified	0.8497710310
+UniRef50_UPI0003F6A485: hypothetical protein	0.8497064805
+UniRef50_UPI0003F6A485: hypothetical protein|unclassified	0.8497064805
+UniRef50_E6NBZ7: Proline permease	0.8496176720
+UniRef50_E6NBZ7: Proline permease|g__Helicobacter.s__Helicobacter_pylori	0.8496176720
+UniRef50_Q6FDG7	0.8496176720
+UniRef50_Q6FDG7|g__Acinetobacter.s__Acinetobacter_baumannii	0.8496176720
+UniRef50_D2NU74	0.8493769599
+UniRef50_D2NU74|unclassified	0.8493769599
+UniRef50_U1ZT71	0.8491905698
+UniRef50_U1ZT71|unclassified	0.8491905698
+UniRef50_UPI0003EAF14F	0.8491367110
+UniRef50_UPI0003EAF14F|unclassified	0.8491367110
+UniRef50_UPI0003A7C5DF: hypothetical protein	0.8491057634
+UniRef50_UPI0003A7C5DF: hypothetical protein|unclassified	0.8491057634
+UniRef50_Q28T47: Type III pantothenate kinase	0.8490361616
+UniRef50_Q28T47: Type III pantothenate kinase|unclassified	0.8490361616
+UniRef50_E3DIC9	0.8490086801
+UniRef50_E3DIC9|unclassified	0.8490086801
+UniRef50_A9M100: Inner membrane protein	0.8488964346
+UniRef50_A9M100: Inner membrane protein|g__Neisseria.s__Neisseria_meningitidis	0.8488964346
+UniRef50_B6H6S1	0.8488964346
+UniRef50_B6H6S1|unclassified	0.8488964346
+UniRef50_E8PIM3	0.8488964346
+UniRef50_E8PIM3|g__Acinetobacter.s__Acinetobacter_baumannii	0.8488964346
+UniRef50_P42454: Rubredoxin-NAD(+) reductase	0.8488964346
+UniRef50_P42454: Rubredoxin-NAD(+) reductase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8488964346
+UniRef50_UPI0003804CCC: hypothetical protein	0.8488927556
+UniRef50_UPI0003804CCC: hypothetical protein|unclassified	0.8488927556
+UniRef50_UPI0004652EAD: tail protein	0.8488440452
+UniRef50_UPI0004652EAD: tail protein|unclassified	0.8488440452
+UniRef50_W0ZLS2	0.8488327449
+UniRef50_W0ZLS2|unclassified	0.8488327449
+UniRef50_Q55905: Phosphoenolpyruvate synthase	0.8484204624
+UniRef50_Q55905: Phosphoenolpyruvate synthase|g__Deinococcus.s__Deinococcus_radiodurans	0.4278990158
+UniRef50_Q55905: Phosphoenolpyruvate synthase|g__Helicobacter.s__Helicobacter_pylori	0.4205214466
+UniRef50_A0A024L6E7	0.8484155316
+UniRef50_A0A024L6E7|unclassified	0.8484155316
+UniRef50_UPI0002885972: hypothetical protein, partial	0.8482596129
+UniRef50_UPI0002885972: hypothetical protein, partial|unclassified	0.8482596129
+UniRef50_UPI0002558932: hypothetical protein	0.8482104843
+UniRef50_UPI0002558932: hypothetical protein|unclassified	0.8482104843
+UniRef50_Q0ZKT3: ChrA	0.8481764207
+UniRef50_Q0ZKT3: ChrA|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.8481764207
+UniRef50_Q9RVJ0: Branched-chain amino acid ABC transporter, periplasmic amino acid-binding protein	0.8481764207
+UniRef50_Q9RVJ0: Branched-chain amino acid ABC transporter, periplasmic amino acid-binding protein|g__Deinococcus.s__Deinococcus_radiodurans	0.8481764207
+UniRef50_E1HL41	0.8481069723
+UniRef50_E1HL41|unclassified	0.8481069723
+UniRef50_X0PUE7: Transcriptional regulator, PadR family	0.8480991051
+UniRef50_X0PUE7: Transcriptional regulator, PadR family|unclassified	0.8480991051
+UniRef50_Q28VZ9: Shikimate dehydrogenase	0.8480838935
+UniRef50_Q28VZ9: Shikimate dehydrogenase|unclassified	0.8480838935
+UniRef50_UPI00047621EA: hypothetical protein	0.8478866377
+UniRef50_UPI00047621EA: hypothetical protein|unclassified	0.8478866377
+UniRef50_G6NHG0: Putative IS1381 transposase	0.8478685982
+UniRef50_G6NHG0: Putative IS1381 transposase|unclassified	0.8478685982
+UniRef50_Q84P53: Gamma aminobutyrate transaminase 2	0.8478551594
+UniRef50_Q84P53: Gamma aminobutyrate transaminase 2|unclassified	0.8478551594
+UniRef50_B8A150	0.8477494324
+UniRef50_B8A150|unclassified	0.8477494324
+UniRef50_L8NDZ3	0.8475210442
+UniRef50_L8NDZ3|unclassified	0.8475210442
+UniRef50_A4WR52	0.8474576271
+UniRef50_A4WR52|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.8474576271
+UniRef50_F0KHS2: ABC1 family protein	0.8474576271
+UniRef50_F0KHS2: ABC1 family protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.8474576271
+UniRef50_K7SNQ8: RfbX family protein involved in the export of O-antigen and teichoic acid	0.8474576271
+UniRef50_K7SNQ8: RfbX family protein involved in the export of O-antigen and teichoic acid|g__Propionibacterium.s__Propionibacterium_acnes	0.8474576271
+UniRef50_B9KS55	0.8474576271
+UniRef50_B9KS55|unclassified	0.8474576271
+UniRef50_UPI000470BDCC: ABC transporter permease	0.8474097687
+UniRef50_UPI000470BDCC: ABC transporter permease|unclassified	0.8474097687
+UniRef50_UPI0003EB5DA3: 50S ribosomal protein L36	0.8472024385
+UniRef50_UPI0003EB5DA3: 50S ribosomal protein L36|unclassified	0.8472024385
+UniRef50_UPI0002ADA46A	0.8471182112
+UniRef50_UPI0002ADA46A|unclassified	0.8471182112
+UniRef50_F0XYP3	0.8468821781
+UniRef50_F0XYP3|unclassified	0.8468821781
+UniRef50_A0A059IKA9	0.8467992313
+UniRef50_A0A059IKA9|unclassified	0.8467992313
+UniRef50_B5FIB5	0.8467563797
+UniRef50_B5FIB5|unclassified	0.8467563797
+UniRef50_D9WDW5: Short chain dehydrogenase/reductase family oxidoreductase (Fragment)	0.8467517149
+UniRef50_D9WDW5: Short chain dehydrogenase/reductase family oxidoreductase (Fragment)|unclassified	0.8467517149
+UniRef50_E3HVR7: Aspartate aminotransferase	0.8467400508
+UniRef50_E3HVR7: Aspartate aminotransferase|g__Clostridium.s__Clostridium_beijerinckii	0.8467400508
+UniRef50_M4R0I6	0.8467400508
+UniRef50_M4R0I6|g__Acinetobacter.s__Acinetobacter_baumannii	0.8467400508
+UniRef50_C4SJS8: tRNA 2-thiocytidine biosynthesis protein ttcA	0.8466704760
+UniRef50_C4SJS8: tRNA 2-thiocytidine biosynthesis protein ttcA|unclassified	0.8466704760
+UniRef50_UPI00038112F6: hypothetical protein	0.8464964669
+UniRef50_UPI00038112F6: hypothetical protein|unclassified	0.8464964669
+UniRef50_B9J455	0.8464019875
+UniRef50_B9J455|unclassified	0.8464019875
+UniRef50_UPI000395C648: PREDICTED: circumsporozoite protein-like	0.8460896171
+UniRef50_UPI000395C648: PREDICTED: circumsporozoite protein-like|unclassified	0.8460896171
+UniRef50_D8JEB9: Group A colicins tolerance protein	0.8460236887
+UniRef50_D8JEB9: Group A colicins tolerance protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.8460236887
+UniRef50_P05846: Transposon Tn7 transposition protein TnsC	0.8460236887
+UniRef50_P05846: Transposon Tn7 transposition protein TnsC|g__Acinetobacter.s__Acinetobacter_baumannii	0.8460236887
+UniRef50_Q1QE72: Diacylglycerol O-acyltransferase	0.8460236887
+UniRef50_Q1QE72: Diacylglycerol O-acyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8460236887
+UniRef50_Q9RTX1	0.8460236887
+UniRef50_Q9RTX1|g__Deinococcus.s__Deinococcus_radiodurans	0.8460236887
+UniRef50_D8K986	0.8457657362
+UniRef50_D8K986|unclassified	0.8457657362
+UniRef50_L8GCW0	0.8456106068
+UniRef50_L8GCW0|unclassified	0.8456106068
+UniRef50_W6M5M6	0.8454386892
+UniRef50_W6M5M6|unclassified	0.8454386892
+UniRef50_Q9RVA9: Probable butyrate kinase	0.8453085376
+UniRef50_Q9RVA9: Probable butyrate kinase|g__Deinococcus.s__Deinococcus_radiodurans	0.8453085376
+UniRef50_F9Y3J4	0.8452062432
+UniRef50_F9Y3J4|unclassified	0.8452062432
+UniRef50_D8THP8	0.8451498389
+UniRef50_D8THP8|unclassified	0.8451498389
+UniRef50_A1TVN2	0.8448785492
+UniRef50_A1TVN2|unclassified	0.8448785492
+UniRef50_F5TKP9: Nitrate reductase, alpha subunit	0.8448659895
+UniRef50_F5TKP9: Nitrate reductase, alpha subunit|g__Propionibacterium.s__Propionibacterium_acnes	0.8448659895
+UniRef50_Q9MUM1: Light-independent protochlorophyllide reductase subunit N	0.8448345604
+UniRef50_Q9MUM1: Light-independent protochlorophyllide reductase subunit N|unclassified	0.8448345604
+UniRef50_UPI00040FB89F: glutathione-dependent formaldehyde-activating protein	0.8447267383
+UniRef50_UPI00040FB89F: glutathione-dependent formaldehyde-activating protein|unclassified	0.8447267383
+UniRef50_D5TL04	0.8447238793
+UniRef50_D5TL04|unclassified	0.8447238793
+UniRef50_G7T9W9: Sulfate transporter	0.8445945946
+UniRef50_G7T9W9: Sulfate transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8445945946
+UniRef50_Q6AAW0: Phosphoenolpyruvate-protein phosphotransferase	0.8445945946
+UniRef50_Q6AAW0: Phosphoenolpyruvate-protein phosphotransferase|g__Propionibacterium.s__Propionibacterium_acnes	0.8445945946
+UniRef50_V4YHI6: Putative transposase	0.8445600045
+UniRef50_V4YHI6: Putative transposase|unclassified	0.8445600045
+UniRef50_R4WT31: Ribonucleoside-diphosphate reductase	0.8444976878
+UniRef50_R4WT31: Ribonucleoside-diphosphate reductase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8444976878
+UniRef50_UPI0002D7A1AF: hypothetical protein	0.8442134056
+UniRef50_UPI0002D7A1AF: hypothetical protein|unclassified	0.8442134056
+UniRef50_W1FDX5: Phenylacetate-CoA oxygenase, PaaJ subunit	0.8440541766
+UniRef50_W1FDX5: Phenylacetate-CoA oxygenase, PaaJ subunit|unclassified	0.8440541766
+UniRef50_A6V0I8	0.8440404142
+UniRef50_A6V0I8|unclassified	0.8440404142
+UniRef50_UPI00042A0F4E: hypothetical protein	0.8440381791
+UniRef50_UPI00042A0F4E: hypothetical protein|unclassified	0.8440381791
+UniRef50_E6QE72	0.8440145571
+UniRef50_E6QE72|unclassified	0.8440145571
+UniRef50_UPI0003B66035: preprotein translocase subunit TatA	0.8439454547
+UniRef50_UPI0003B66035: preprotein translocase subunit TatA|unclassified	0.8439454547
+UniRef50_F6VPF4	0.8438818565
+UniRef50_F6VPF4|unclassified	0.8438818565
+UniRef50_R8ZIY9: DNA-binding transcriptional regulator CynR	0.8438818565
+UniRef50_R8ZIY9: DNA-binding transcriptional regulator CynR|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8438818565
+UniRef50_UPI0001E27E76: peptide ABC transporter, periplasmic peptide-binding protein, putative, partial	0.8438818565
+UniRef50_UPI0001E27E76: peptide ABC transporter, periplasmic peptide-binding protein, putative, partial|unclassified	0.8438818565
+UniRef50_Q7BQS4: Se3	0.8438598685
+UniRef50_Q7BQS4: Se3|unclassified	0.8438598685
+UniRef50_Q2J6B0	0.8436103503
+UniRef50_Q2J6B0|unclassified	0.8436103503
+UniRef50_Q5JLD7: Hydroxyproline-rich glycoprotein-like	0.8434579226
+UniRef50_Q5JLD7: Hydroxyproline-rich glycoprotein-like|unclassified	0.8434579226
+UniRef50_UPI000382B9BD: hypothetical protein	0.8433318043
+UniRef50_UPI000382B9BD: hypothetical protein|unclassified	0.8433318043
+UniRef50_W7J134	0.8432481567
+UniRef50_W7J134|unclassified	0.8432481567
+UniRef50_UPI0004258884: DNA helicase	0.8432139707
+UniRef50_UPI0004258884: DNA helicase|unclassified	0.8432139707
+UniRef50_UPI00037D216E: hypothetical protein	0.8431728598
+UniRef50_UPI00037D216E: hypothetical protein|unclassified	0.8431728598
+UniRef50_Q9ZJ96: Chromosomal replication initiator protein DnaA	0.8431703204
+UniRef50_Q9ZJ96: Chromosomal replication initiator protein DnaA|g__Helicobacter.s__Helicobacter_pylori	0.8431703204
+UniRef50_B2PWV7	0.8429819244
+UniRef50_B2PWV7|unclassified	0.8429819244
+UniRef50_G2S5F5: Cytoplasmic protein	0.8429528328
+UniRef50_G2S5F5: Cytoplasmic protein|unclassified	0.8429528328
+UniRef50_R7WKM5	0.8428420104
+UniRef50_R7WKM5|unclassified	0.8428420104
+UniRef50_B1C484	0.8427350987
+UniRef50_B1C484|unclassified	0.8427350987
+UniRef50_M4MLW3	0.8426385122
+UniRef50_M4MLW3|unclassified	0.8426385122
+UniRef50_W2MCQ5	0.8425481933
+UniRef50_W2MCQ5|unclassified	0.8425481933
+UniRef50_Q47098: 4-hydroxy-2-oxo-heptane-1,7-dioate aldolase	0.8424787687
+UniRef50_Q47098: 4-hydroxy-2-oxo-heptane-1,7-dioate aldolase|unclassified	0.8424787687
+UniRef50_Q9RRK7	0.8424599832
+UniRef50_Q9RRK7|g__Deinococcus.s__Deinococcus_radiodurans	0.8424599832
+UniRef50_Q3IVP3	0.8424531120
+UniRef50_Q3IVP3|unclassified	0.8424531120
+UniRef50_Q47AM5: Phosphoribosyl-ATP pyrophosphatase	0.8423895311
+UniRef50_Q47AM5: Phosphoribosyl-ATP pyrophosphatase|unclassified	0.8423895311
+UniRef50_E3UHK3: Licheninase (Fragment)	0.8422456915
+UniRef50_E3UHK3: Licheninase (Fragment)|unclassified	0.8422456915
+UniRef50_UPI0004693EA9: chemotaxis protein	0.8422265246
+UniRef50_UPI0004693EA9: chemotaxis protein|unclassified	0.8422265246
+UniRef50_R8ZC75: Sensor/response regulator hybrid	0.8422094016
+UniRef50_R8ZC75: Sensor/response regulator hybrid|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8422094016
+UniRef50_K2EH54	0.8420782270
+UniRef50_K2EH54|unclassified	0.8420782270
+UniRef50_UPI0003ADE3C9: PREDICTED: basic proline-rich protein-like	0.8417508418
+UniRef50_UPI0003ADE3C9: PREDICTED: basic proline-rich protein-like|unclassified	0.8417508418
+UniRef50_E1Z2S3: Expressed protein	0.8417508418
+UniRef50_E1Z2S3: Expressed protein|unclassified	0.8417508418
+UniRef50_A0A021ZS12: Sigma-54 interaction domain protein	0.8417388302
+UniRef50_A0A021ZS12: Sigma-54 interaction domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.8417388302
+UniRef50_V6Z2V8: L-xylulose 5-phosphate 3-epimerase	0.8417087018
+UniRef50_V6Z2V8: L-xylulose 5-phosphate 3-epimerase|unclassified	0.8417087018
+UniRef50_X2LNY3	0.8416445286
+UniRef50_X2LNY3|unclassified	0.8416445286
+UniRef50_X6EH31	0.8415977008
+UniRef50_X6EH31|unclassified	0.8415977008
+UniRef50_F0Y1K3: Expressed protein (Fragment)	0.8414308768
+UniRef50_F0Y1K3: Expressed protein (Fragment)|unclassified	0.8414308768
+UniRef50_UPI0001B411CC: hypothetical protein	0.8413123311
+UniRef50_UPI0001B411CC: hypothetical protein|unclassified	0.8413123311
+UniRef50_S9QFK0: ISSpo9, transposase	0.8412342096
+UniRef50_S9QFK0: ISSpo9, transposase|unclassified	0.8412342096
+UniRef50_E3Z3J2	0.8411742334
+UniRef50_E3Z3J2|unclassified	0.8411742334
+UniRef50_W4NY50	0.8411666816
+UniRef50_W4NY50|unclassified	0.8411666816
+UniRef50_K2RW73	0.8410664998
+UniRef50_K2RW73|unclassified	0.8410664998
+UniRef50_F6DH03: Menaquinone biosynthesis protein	0.8410428932
+UniRef50_F6DH03: Menaquinone biosynthesis protein|g__Deinococcus.s__Deinococcus_radiodurans	0.8410428932
+UniRef50_I2DEN6	0.8410428932
+UniRef50_I2DEN6|g__Helicobacter.s__Helicobacter_pylori	0.8410428932
+UniRef50_S5CZX0: Site-specific DNA methylase	0.8410428932
+UniRef50_S5CZX0: Site-specific DNA methylase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8410428932
+UniRef50_UPI00036941B2: hypothetical protein	0.8410428932
+UniRef50_UPI00036941B2: hypothetical protein|unclassified	0.8410428932
+UniRef50_M9R4Y4	0.8408292932
+UniRef50_M9R4Y4|unclassified	0.8408292932
+UniRef50_K6YYX6: Phosphate-starvation-inducible E	0.8406450711
+UniRef50_K6YYX6: Phosphate-starvation-inducible E|unclassified	0.8406450711
+UniRef50_UPI000334035B: PREDICTED: basic salivary proline-rich protein 2-like	0.8405994151
+UniRef50_UPI000334035B: PREDICTED: basic salivary proline-rich protein 2-like|unclassified	0.8405994151
+UniRef50_W0FVK3: NAD(FAD)-dependent dehydrogenase	0.8405736189
+UniRef50_W0FVK3: NAD(FAD)-dependent dehydrogenase|unclassified	0.8405736189
+UniRef50_UPI0003F8BBFB: Cro/Cl family transcriptional regulator	0.8405039675
+UniRef50_UPI0003F8BBFB: Cro/Cl family transcriptional regulator|unclassified	0.8405039675
+UniRef50_A0A009JRB9	0.8403361345
+UniRef50_A0A009JRB9|g__Acinetobacter.s__Acinetobacter_baumannii	0.8403361345
+UniRef50_A4WRS0: SAM-dependent methyltransferase	0.8403361345
+UniRef50_A4WRS0: SAM-dependent methyltransferase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.8403361345
+UniRef50_B7UWA0	0.8403361345
+UniRef50_B7UWA0|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8403361345
+UniRef50_F0RIT9: NHL repeat-containing protein	0.8403361345
+UniRef50_F0RIT9: NHL repeat-containing protein|g__Deinococcus.s__Deinococcus_radiodurans	0.8403361345
+UniRef50_Q17Z65: NADH-quinone oxidoreductase subunit N	0.8403361345
+UniRef50_Q17Z65: NADH-quinone oxidoreductase subunit N|g__Helicobacter.s__Helicobacter_pylori	0.8403361345
+UniRef50_A0A028XSC9: KxYKxGKxW signal domain protein	0.8401625340
+UniRef50_A0A028XSC9: KxYKxGKxW signal domain protein|unclassified	0.8401625340
+UniRef50_R1DWA7	0.8401365124
+UniRef50_R1DWA7|unclassified	0.8401365124
+UniRef50_UPI00047AFA4E: phosphoadenosine phosphosulfate reductase	0.8400932098
+UniRef50_UPI00047AFA4E: phosphoadenosine phosphosulfate reductase|unclassified	0.8400932098
+UniRef50_H2YK25	0.8400502052
+UniRef50_H2YK25|unclassified	0.8400502052
+UniRef50_UPI0000E0E361: AsnC family transcriptional regulator	0.8400374334
+UniRef50_UPI0000E0E361: AsnC family transcriptional regulator|unclassified	0.8400374334
+UniRef50_D0D597	0.8399948009
+UniRef50_D0D597|unclassified	0.8399948009
+UniRef50_B3TB45: Putative MaoC like domain protein	0.8398892818
+UniRef50_B3TB45: Putative MaoC like domain protein|unclassified	0.8398892818
+UniRef50_UPI00016C511B: acetyl-coenzyme A synthetase, partial	0.8398620988
+UniRef50_UPI00016C511B: acetyl-coenzyme A synthetase, partial|unclassified	0.8398620988
+UniRef50_B3Q5A1: Hypothetical conserved protein	0.8398078240
+UniRef50_B3Q5A1: Hypothetical conserved protein|unclassified	0.8398078240
+UniRef50_UPI000345C82F: hypothetical protein	0.8397012520
+UniRef50_UPI000345C82F: hypothetical protein|unclassified	0.8397012520
+UniRef50_UPI000463C205: hypothetical protein	0.8396554235
+UniRef50_UPI000463C205: hypothetical protein|unclassified	0.8396554235
+UniRef50_F9Z2N2: 4-hydroxybutyrate coenzyme A transferase	0.8396305626
+UniRef50_F9Z2N2: 4-hydroxybutyrate coenzyme A transferase|g__Propionibacterium.s__Propionibacterium_acnes	0.8396305626
+UniRef50_G7U7C7: Phospholipase, patatin family protein	0.8396305626
+UniRef50_G7U7C7: Phospholipase, patatin family protein|g__Propionibacterium.s__Propionibacterium_acnes	0.8396305626
+UniRef50_R4ZYJ3: Glycosyl transferase, putative	0.8396305626
+UniRef50_R4ZYJ3: Glycosyl transferase, putative|g__Streptococcus.s__Streptococcus_agalactiae	0.8396305626
+UniRef50_UPI000472CD4F: hypothetical protein	0.8395171960
+UniRef50_UPI000472CD4F: hypothetical protein|unclassified	0.8395171960
+UniRef50_A9MN29	0.8394186839
+UniRef50_A9MN29|unclassified	0.8394186839
+UniRef50_Q9RX08: DNA polymerase III subunit alpha	0.8393916018
+UniRef50_Q9RX08: DNA polymerase III subunit alpha|g__Deinococcus.s__Deinococcus_radiodurans	0.8393916018
+UniRef50_UPI0003772113: hypothetical protein	0.8392921112
+UniRef50_UPI0003772113: hypothetical protein|unclassified	0.8392921112
+UniRef50_R8S9D2	0.8392740835
+UniRef50_R8S9D2|unclassified	0.8392740835
+UniRef50_A3UJE3	0.8392106286
+UniRef50_A3UJE3|unclassified	0.8392106286
+UniRef50_I3THE0: BolA family protein	0.8391833955
+UniRef50_I3THE0: BolA family protein|unclassified	0.8391833955
+UniRef50_B1YJY5: Endonuclease MutS2	0.8390663812
+UniRef50_B1YJY5: Endonuclease MutS2|unclassified	0.8390663812
+UniRef50_G7U8E3: Adenosylmethionine-8-amino-7-oxononanoate transaminase	0.8389261745
+UniRef50_G7U8E3: Adenosylmethionine-8-amino-7-oxononanoate transaminase|g__Propionibacterium.s__Propionibacterium_acnes	0.8389261745
+UniRef50_A5EJC6: 3-dehydroquinate dehydratase	0.8385448684
+UniRef50_A5EJC6: 3-dehydroquinate dehydratase|unclassified	0.8385448684
+UniRef50_I4ZMC3	0.8385047214
+UniRef50_I4ZMC3|unclassified	0.8385047214
+UniRef50_UPI00036048A6: hypothetical protein	0.8384325715
+UniRef50_UPI00036048A6: hypothetical protein|unclassified	0.8384325715
+UniRef50_F0DDE8	0.8384211365
+UniRef50_F0DDE8|unclassified	0.8384211365
+UniRef50_A0A037BA83	0.8383499086
+UniRef50_A0A037BA83|unclassified	0.8383499086
+UniRef50_UPI0003720E8F: hypothetical protein	0.8382907327
+UniRef50_UPI0003720E8F: hypothetical protein|unclassified	0.8382907327
+UniRef50_F4A6D4: Flagellar motor switch protein FliN	0.8382229673
+UniRef50_F4A6D4: Flagellar motor switch protein FliN|g__Clostridium.s__Clostridium_beijerinckii	0.8382229673
+UniRef50_V4QZ67: ATPase	0.8381042629
+UniRef50_V4QZ67: ATPase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8381042629
+UniRef50_J2GFN3	0.8380774982
+UniRef50_J2GFN3|unclassified	0.8380774982
+UniRef50_UPI00046861B4: dioxygenase	0.8380329056
+UniRef50_UPI00046861B4: dioxygenase|unclassified	0.8380329056
+UniRef50_UPI00047DF06C: RNA polymerase subunit sigma-24	0.8380304529
+UniRef50_UPI00047DF06C: RNA polymerase subunit sigma-24|unclassified	0.8380304529
+UniRef50_A1A9N7: Acylphosphatase	0.8379224014
+UniRef50_A1A9N7: Acylphosphatase|unclassified	0.8379224014
+UniRef50_Q1GFV1	0.8377792501
+UniRef50_Q1GFV1|unclassified	0.8377792501
+UniRef50_UPI000287BFEC: membrane protein	0.8376774017
+UniRef50_UPI000287BFEC: membrane protein|unclassified	0.8376774017
+UniRef50_UPI000376BA8C: hypothetical protein	0.8375651129
+UniRef50_UPI000376BA8C: hypothetical protein|unclassified	0.8375651129
+UniRef50_K0RFM7	0.8375209380
+UniRef50_K0RFM7|unclassified	0.8375209380
+UniRef50_Q6FFC1: Lipid II flippase FtsW	0.8375209380
+UniRef50_Q6FFC1: Lipid II flippase FtsW|g__Acinetobacter.s__Acinetobacter_baumannii	0.8375209380
+UniRef50_UPI00037CE70D: hypothetical protein	0.8375188666
+UniRef50_UPI00037CE70D: hypothetical protein|unclassified	0.8375188666
+UniRef50_UPI000475B85D: hypothetical protein	0.8374414171
+UniRef50_UPI000475B85D: hypothetical protein|unclassified	0.8374414171
+UniRef50_A0RJ92	0.8374245844
+UniRef50_A0RJ92|unclassified	0.8374245844
+UniRef50_UPI000462DEF8: hypothetical protein, partial	0.8373370717
+UniRef50_UPI000462DEF8: hypothetical protein, partial|unclassified	0.8373370717
+UniRef50_UPI00036F824A: MULTISPECIES: hypothetical protein	0.8373319963
+UniRef50_UPI00036F824A: MULTISPECIES: hypothetical protein|unclassified	0.8373319963
+UniRef50_A1UWT7	0.8373207446
+UniRef50_A1UWT7|unclassified	0.8373207446
+UniRef50_D5ZWA1: Transposase (Fragment)	0.8373021809
+UniRef50_D5ZWA1: Transposase (Fragment)|unclassified	0.8373021809
+UniRef50_D3A297	0.8371971243
+UniRef50_D3A297|unclassified	0.8371971243
+UniRef50_I3TUS0	0.8371131107
+UniRef50_I3TUS0|unclassified	0.8371131107
+UniRef50_B5GCK3	0.8370630069
+UniRef50_B5GCK3|unclassified	0.8370630069
+UniRef50_A3X7P0	0.8368482776
+UniRef50_A3X7P0|unclassified	0.8368482776
+UniRef50_A6LWE7: Transcriptional regulator, Fis family	0.8368200837
+UniRef50_A6LWE7: Transcriptional regulator, Fis family|g__Clostridium.s__Clostridium_beijerinckii	0.8368200837
+UniRef50_B2JWI7: Major facilitator superfamily MFS_1	0.8368200837
+UniRef50_B2JWI7: Major facilitator superfamily MFS_1|g__Propionibacterium.s__Propionibacterium_acnes	0.8368200837
+UniRef50_P37498	0.8368200837
+UniRef50_P37498|g__Clostridium.s__Clostridium_beijerinckii	0.8368200837
+UniRef50_W3PE26: DnaK domain protein (Fragment)	0.8368097271
+UniRef50_W3PE26: DnaK domain protein (Fragment)|unclassified	0.8368097271
+UniRef50_K2DSG6	0.8363652889
+UniRef50_K2DSG6|unclassified	0.8363652889
+UniRef50_Q9RUU2: DNA helicase RecQ	0.8363506731
+UniRef50_Q9RUU2: DNA helicase RecQ|g__Deinococcus.s__Deinococcus_radiodurans	0.8363506731
+UniRef50_UPI00037E1AAA: hypothetical protein	0.8363306175
+UniRef50_UPI00037E1AAA: hypothetical protein|unclassified	0.8363306175
+UniRef50_T0ZNB1: Chaperone protein DnaJ (Fragment)	0.8362633999
+UniRef50_T0ZNB1: Chaperone protein DnaJ (Fragment)|unclassified	0.8362633999
+UniRef50_Q9ZJE9: DNA polymerase I	0.8360965311
+UniRef50_Q9ZJE9: DNA polymerase I|g__Helicobacter.s__Helicobacter_pylori	0.8360965311
+UniRef50_S3JMR5: Phosphatidylglycerophosphatase B (Fragment)	0.8359801944
+UniRef50_S3JMR5: Phosphatidylglycerophosphatase B (Fragment)|unclassified	0.8359801944
+UniRef50_UPI0002C44C85	0.8359144161
+UniRef50_UPI0002C44C85|unclassified	0.8359144161
+UniRef50_UPI000374FC14: hypothetical protein	0.8357360265
+UniRef50_UPI000374FC14: hypothetical protein|unclassified	0.8357360265
+UniRef50_UPI00026CAD3F: hypothetical protein, partial	0.8356895011
+UniRef50_UPI00026CAD3F: hypothetical protein, partial|unclassified	0.8356895011
+UniRef50_UPI00016C05EE: hypothetical protein	0.8355573369
+UniRef50_UPI00016C05EE: hypothetical protein|unclassified	0.8355573369
+UniRef50_H1V3M9	0.8354637096
+UniRef50_H1V3M9|unclassified	0.8354637096
+UniRef50_A3PIK9: Amidase	0.8354218881
+UniRef50_A3PIK9: Amidase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.8354218881
+UniRef50_A6LXG6: PTS system mannose/fructose/sorbose family IID component	0.8354218881
+UniRef50_A6LXG6: PTS system mannose/fructose/sorbose family IID component|g__Clostridium.s__Clostridium_beijerinckii	0.8354218881
+UniRef50_A7FB19	0.8354218881
+UniRef50_A7FB19|g__Acinetobacter.s__Acinetobacter_baumannii	0.8354218881
+UniRef50_A4E7V0	0.8354150244
+UniRef50_A4E7V0|unclassified	0.8354150244
+UniRef50_Y1HNL2: PTS system maltose-and glucose-specific EIICB component	0.8353471981
+UniRef50_Y1HNL2: PTS system maltose-and glucose-specific EIICB component|unclassified	0.8353471981
+UniRef50_UPI0003722133: hypothetical protein	0.8352176954
+UniRef50_UPI0003722133: hypothetical protein|unclassified	0.8352176954
+UniRef50_F3TC25	0.8351584400
+UniRef50_F3TC25|unclassified	0.8351584400
+UniRef50_R4YGV2: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.8351100978
+UniRef50_R4YGV2: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|unclassified	0.8351100978
+UniRef50_UPI00038160B3: hypothetical protein	0.8350967525
+UniRef50_UPI00038160B3: hypothetical protein|unclassified	0.8350967525
+UniRef50_A5U672: LexA repressor	0.8350103702
+UniRef50_A5U672: LexA repressor|unclassified	0.8350103702
+UniRef50_UPI0003799603: hypothetical protein	0.8350100195
+UniRef50_UPI0003799603: hypothetical protein|unclassified	0.8350100195
+UniRef50_S3FEE1: Putative membrane protein	0.8348667686
+UniRef50_S3FEE1: Putative membrane protein|unclassified	0.8348667686
+UniRef50_D6SI05	0.8348374045
+UniRef50_D6SI05|unclassified	0.8348374045
+UniRef50_UPI0002FBC2B3: hypothetical protein	0.8347760678
+UniRef50_UPI0002FBC2B3: hypothetical protein|unclassified	0.8347760678
+UniRef50_C6XI98: Fe-S metabolism associated SufE	0.8347324765
+UniRef50_C6XI98: Fe-S metabolism associated SufE|unclassified	0.8347324765
+UniRef50_A0A010QZ89	0.8347245409
+UniRef50_A0A010QZ89|unclassified	0.8347245409
+UniRef50_B0V9N7	0.8347245409
+UniRef50_B0V9N7|g__Acinetobacter.s__Acinetobacter_baumannii	0.8347245409
+UniRef50_I0ELD1	0.8347245409
+UniRef50_I0ELD1|g__Helicobacter.s__Helicobacter_pylori	0.8347245409
+UniRef50_U2Z5A1	0.8347146282
+UniRef50_U2Z5A1|unclassified	0.8347146282
+UniRef50_UPI000366CBF5: hypothetical protein	0.8346419427
+UniRef50_UPI000366CBF5: hypothetical protein|unclassified	0.8346419427
+UniRef50_UPI0001E4E295: hypothetical protein	0.8345921731
+UniRef50_UPI0001E4E295: hypothetical protein|unclassified	0.8345921731
+UniRef50_UPI00026292A7: hypothetical protein	0.8345730315
+UniRef50_UPI00026292A7: hypothetical protein|unclassified	0.8345730315
+UniRef50_G9XA16	0.8345172356
+UniRef50_G9XA16|unclassified	0.8345172356
+UniRef50_T0TBX4: Excinuclease ABC subunit A	0.8344660489
+UniRef50_T0TBX4: Excinuclease ABC subunit A|unclassified	0.8344660489
+UniRef50_E0FDW5: RTX toxin protein	0.8344287522
+UniRef50_E0FDW5: RTX toxin protein|unclassified	0.8344287522
+UniRef50_U6JZT0	0.8343327838
+UniRef50_U6JZT0|unclassified	0.8343327838
+UniRef50_UPI0003FEEFB4: ribosomal silencing factor RsfS	0.8343191014
+UniRef50_UPI0003FEEFB4: ribosomal silencing factor RsfS|unclassified	0.8343191014
+UniRef50_X8AJ29: Condensation domain protein	0.8343190334
+UniRef50_X8AJ29: Condensation domain protein|unclassified	0.8343190334
+UniRef50_V1YCT2: Putative periplasmic esterase	0.8342375083
+UniRef50_V1YCT2: Putative periplasmic esterase|unclassified	0.8342375083
+UniRef50_Q0BPX5: Phosphoribosyl-ATP pyrophosphatase	0.8341635152
+UniRef50_Q0BPX5: Phosphoribosyl-ATP pyrophosphatase|unclassified	0.8341635152
+UniRef50_D4HDK2: Transporter, anaerobic C4-dicarboxylate uptake (Dcu) family	0.8340283570
+UniRef50_D4HDK2: Transporter, anaerobic C4-dicarboxylate uptake (Dcu) family|g__Propionibacterium.s__Propionibacterium_acnes	0.8340283570
+UniRef50_UPI00034FF01F: PREDICTED: basic proline-rich protein-like	0.8340283570
+UniRef50_UPI00034FF01F: PREDICTED: basic proline-rich protein-like|unclassified	0.8340283570
+UniRef50_T6S6M1: Inner membrane metabolite transporter ydjE	0.8339372381
+UniRef50_T6S6M1: Inner membrane metabolite transporter ydjE|unclassified	0.8339372381
+UniRef50_R4Q5G4: Mobilization protein MobC	0.8338211851
+UniRef50_R4Q5G4: Mobilization protein MobC|unclassified	0.8338211851
+UniRef50_E2CAM2: Nucleotide-binding protein	0.8336233576
+UniRef50_E2CAM2: Nucleotide-binding protein|unclassified	0.8336233576
+UniRef50_A0A037YSW4	0.8335121411
+UniRef50_A0A037YSW4|unclassified	0.8335121411
+UniRef50_D5BY59	0.8333612591
+UniRef50_D5BY59|unclassified	0.8333612591
+UniRef50_Q0B621: Sigma54 specific transcriptional regulator, Fis family	0.8333333333
+UniRef50_Q0B621: Sigma54 specific transcriptional regulator, Fis family|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8333333333
+UniRef50_Q88QE3: MORN domain protein	0.8333333333
+UniRef50_Q88QE3: MORN domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8333333333
+UniRef50_U5Y027: Xanthine/uracil/vitamin C permease	0.8333333333
+UniRef50_U5Y027: Xanthine/uracil/vitamin C permease|g__Helicobacter.s__Helicobacter_pylori	0.8333333333
+UniRef50_UPI00037FF5E5: hypothetical protein	0.8332841956
+UniRef50_UPI00037FF5E5: hypothetical protein|unclassified	0.8332841956
+UniRef50_UPI000379071D: hypothetical protein	0.8332566197
+UniRef50_UPI000379071D: hypothetical protein|unclassified	0.8332566197
+UniRef50_I3TTH4	0.8331973650
+UniRef50_I3TTH4|unclassified	0.8331973650
+UniRef50_A3JNN0	0.8329099764
+UniRef50_A3JNN0|unclassified	0.8329099764
+UniRef50_D5CG57	0.8327551033
+UniRef50_D5CG57|unclassified	0.8327551033
+UniRef50_M4VHR7	0.8327306088
+UniRef50_M4VHR7|unclassified	0.8327306088
+UniRef50_D6K5R8: Membrane protein	0.8326394671
+UniRef50_D6K5R8: Membrane protein|unclassified	0.8326394671
+UniRef50_M4QZZ1: Chloride channel protein	0.8326394671
+UniRef50_M4QZZ1: Chloride channel protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.8326394671
+UniRef50_Q9ZK41: Putative glucose/galactose transporter	0.8326394671
+UniRef50_Q9ZK41: Putative glucose/galactose transporter|g__Neisseria.s__Neisseria_meningitidis	0.8326394671
+UniRef50_UPI00038F9F8C: Spermidine/putrescine-binding periplasmic protein 2	0.8324351969
+UniRef50_UPI00038F9F8C: Spermidine/putrescine-binding periplasmic protein 2|unclassified	0.8324351969
+UniRef50_G2QNZ8	0.8324331968
+UniRef50_G2QNZ8|unclassified	0.8324331968
+UniRef50_C5YPR8	0.8323331325
+UniRef50_C5YPR8|unclassified	0.8323331325
+UniRef50_UPI0001FFEA10: ABC transporter	0.8323160529
+UniRef50_UPI0001FFEA10: ABC transporter|unclassified	0.8323160529
+UniRef50_UPI0003B65930: O-acetylhomoserine aminocarboxypropyltransferase	0.8323002363
+UniRef50_UPI0003B65930: O-acetylhomoserine aminocarboxypropyltransferase|unclassified	0.8323002363
+UniRef50_Q3JVL6	0.8322293792
+UniRef50_Q3JVL6|unclassified	0.8322293792
+UniRef50_UPI0003763CB4: hypothetical protein	0.8321235316
+UniRef50_UPI0003763CB4: hypothetical protein|unclassified	0.8321235316
+UniRef50_UPI00046F6DC9: hypothetical protein	0.8320481974
+UniRef50_UPI00046F6DC9: hypothetical protein|unclassified	0.8320481974
+UniRef50_Q9RTQ6: Daunorubicin C-13 ketoreductase	0.8319467554
+UniRef50_Q9RTQ6: Daunorubicin C-13 ketoreductase|g__Deinococcus.s__Deinococcus_radiodurans	0.8319467554
+UniRef50_R4X9Z7: Glutamate dehydrogenase	0.8319467554
+UniRef50_R4X9Z7: Glutamate dehydrogenase|g__Neisseria.s__Neisseria_meningitidis	0.8319467554
+UniRef50_UPI0002557D02: hypothetical protein	0.8319347238
+UniRef50_UPI0002557D02: hypothetical protein|unclassified	0.8319347238
+UniRef50_W0YK25	0.8318694723
+UniRef50_W0YK25|unclassified	0.8318694723
+UniRef50_O26862	0.8317458702
+UniRef50_O26862|unclassified	0.8317458702
+UniRef50_UPI0003F14796: PREDICTED: collagen alpha-1(I) chain-like	0.8317423886
+UniRef50_UPI0003F14796: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.8317423886
+UniRef50_UPI00046AC99E: hypothetical protein	0.8316805967
+UniRef50_UPI00046AC99E: hypothetical protein|unclassified	0.8316805967
+UniRef50_UPI000466B8EE: UDP pyrophosphate phosphatase	0.8315753421
+UniRef50_UPI000466B8EE: UDP pyrophosphate phosphatase|unclassified	0.8315753421
+UniRef50_UPI000474D4B4: hypothetical protein	0.8315451401
+UniRef50_UPI000474D4B4: hypothetical protein|unclassified	0.8315451401
+UniRef50_H8GTZ6	0.8315181098
+UniRef50_H8GTZ6|g__Deinococcus.s__Deinococcus_radiodurans	0.8315181098
+UniRef50_UPI00035D3FD2: hypothetical protein	0.8313746846
+UniRef50_UPI00035D3FD2: hypothetical protein|unclassified	0.8313746846
+UniRef50_M9VCS0	0.8312551953
+UniRef50_M9VCS0|g__Propionibacterium.s__Propionibacterium_acnes	0.8312551953
+UniRef50_D8HS39	0.8311270302
+UniRef50_D8HS39|unclassified	0.8311270302
+UniRef50_UPI0004749630: phosphate starvation-inducible protein PhoH, partial	0.8308961120
+UniRef50_UPI0004749630: phosphate starvation-inducible protein PhoH, partial|unclassified	0.8308961120
+UniRef50_K7U456	0.8308327180
+UniRef50_K7U456|unclassified	0.8308327180
+UniRef50_UPI00039C12F7: hypothetical protein	0.8306202716
+UniRef50_UPI00039C12F7: hypothetical protein|unclassified	0.8306202716
+UniRef50_M2IQZ0	0.8305909379
+UniRef50_M2IQZ0|unclassified	0.8305909379
+UniRef50_O87050: Z47f protein	0.8305865481
+UniRef50_O87050: Z47f protein|unclassified	0.8305865481
+UniRef50_C5WIK5	0.8303401677
+UniRef50_C5WIK5|unclassified	0.8303401677
+UniRef50_UPI0002881EA9: Xaa-Pro dipeptidase	0.8301890435
+UniRef50_UPI0002881EA9: Xaa-Pro dipeptidase|unclassified	0.8301890435
+UniRef50_A0A029HJU3: CRISPR-associated helicase Cas3	0.8301347522
+UniRef50_A0A029HJU3: CRISPR-associated helicase Cas3|unclassified	0.8301347522
+UniRef50_UPI00047A94D6: hypothetical protein	0.8300173161
+UniRef50_UPI00047A94D6: hypothetical protein|unclassified	0.8300173161
+UniRef50_A6LPK7: Sporulation stage II, protein E	0.8298755187
+UniRef50_A6LPK7: Sporulation stage II, protein E|g__Clostridium.s__Clostridium_beijerinckii	0.8298755187
+UniRef50_UPI0004105342: hypothetical protein	0.8298755187
+UniRef50_UPI0004105342: hypothetical protein|unclassified	0.8298755187
+UniRef50_UPI000468271D: hypothetical protein	0.8297544575
+UniRef50_UPI000468271D: hypothetical protein|unclassified	0.8297544575
+UniRef50_Q2GKK2: Ribosomal RNA large subunit methyltransferase E	0.8297288764
+UniRef50_Q2GKK2: Ribosomal RNA large subunit methyltransferase E|unclassified	0.8297288764
+UniRef50_A0A031H349: Oxidoreductase, aldo/keto reductase family	0.8297060475
+UniRef50_A0A031H349: Oxidoreductase, aldo/keto reductase family|unclassified	0.8297060475
+UniRef50_H0C7K1	0.8296890952
+UniRef50_H0C7K1|unclassified	0.8296890952
+UniRef50_UPI00046537F1: transcriptional repressor NemR	0.8296744976
+UniRef50_UPI00046537F1: transcriptional repressor NemR|unclassified	0.8296744976
+UniRef50_B9TKW0	0.8296084071
+UniRef50_B9TKW0|unclassified	0.8296084071
+UniRef50_K8DCG2: Oxidoreductase	0.8295844073
+UniRef50_K8DCG2: Oxidoreductase|unclassified	0.8295844073
+UniRef50_I5BWG8	0.8295265653
+UniRef50_I5BWG8|unclassified	0.8295265653
+UniRef50_UPI000262D08E: hypothetical protein	0.8294429320
+UniRef50_UPI000262D08E: hypothetical protein|unclassified	0.8294429320
+UniRef50_UPI0003EB2A85: dimethyl sulfoxide reductase, partial	0.8293774337
+UniRef50_UPI0003EB2A85: dimethyl sulfoxide reductase, partial|unclassified	0.8293774337
+UniRef50_UPI0000165EF1: hypothetical protein DR_A0286, partial	0.8293334792
+UniRef50_UPI0000165EF1: hypothetical protein DR_A0286, partial|unclassified	0.8293334792
+UniRef50_UPI00037E2E9B: hypothetical protein	0.8292181688
+UniRef50_UPI00037E2E9B: hypothetical protein|unclassified	0.8292181688
+UniRef50_A7HEN9	0.8291873964
+UniRef50_A7HEN9|unclassified	0.8291873964
+UniRef50_D3HGH4	0.8291873964
+UniRef50_D3HGH4|g__Streptococcus.s__Streptococcus_agalactiae	0.8291873964
+UniRef50_Q9ZL83: Ribonuclease Y	0.8291873964
+UniRef50_Q9ZL83: Ribonuclease Y|g__Helicobacter.s__Helicobacter_pylori	0.8291873964
+UniRef50_UPI000441347E: hypothetical protein AURDEDRAFT_157883	0.8291873964
+UniRef50_UPI000441347E: hypothetical protein AURDEDRAFT_157883|unclassified	0.8291873964
+UniRef50_W8RA00: MFS transporter	0.8291873964
+UniRef50_W8RA00: MFS transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8291873964
+UniRef50_UPI00038BCC46: PREDICTED: protein APCDD1-like	0.8288437630
+UniRef50_UPI00038BCC46: PREDICTED: protein APCDD1-like|unclassified	0.8288437630
+UniRef50_UPI00047C43EF: aldolase	0.8288233192
+UniRef50_UPI00047C43EF: aldolase|unclassified	0.8288233192
+UniRef50_C8PGN6: NLPA lipoprotein	0.8287627496
+UniRef50_C8PGN6: NLPA lipoprotein|unclassified	0.8287627496
+UniRef50_UPI000466D7A9: aldehyde-activating protein	0.8287582050
+UniRef50_UPI000466D7A9: aldehyde-activating protein|unclassified	0.8287582050
+UniRef50_I6GAL1: Bacterial type II secretion system F domain protein	0.8287453092
+UniRef50_I6GAL1: Bacterial type II secretion system F domain protein|unclassified	0.8287453092
+UniRef50_UPI00037F3C99: hypothetical protein	0.8285238366
+UniRef50_UPI00037F3C99: hypothetical protein|unclassified	0.8285238366
+UniRef50_M2QHJ0	0.8285193622
+UniRef50_M2QHJ0|unclassified	0.8285193622
+UniRef50_U3T3T5: Lipid A biosynthesis lauroyl acyltransferase	0.8285073808
+UniRef50_U3T3T5: Lipid A biosynthesis lauroyl acyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8285073808
+UniRef50_A0A011Q8I4	0.8280312619
+UniRef50_A0A011Q8I4|unclassified	0.8280312619
+UniRef50_Q47SB4: 3-isopropylmalate dehydrogenase	0.8279346668
+UniRef50_Q47SB4: 3-isopropylmalate dehydrogenase|unclassified	0.8279346668
+UniRef50_W8T0W9	0.8278515008
+UniRef50_W8T0W9|unclassified	0.8278515008
+UniRef50_K7SFI0: MMPL family protein	0.8278224545
+UniRef50_K7SFI0: MMPL family protein|g__Propionibacterium.s__Propionibacterium_acnes	0.8278224545
+UniRef50_A6LXS8: FAD-dependent pyridine nucleotide-disulphide oxidoreductase	0.8278145695
+UniRef50_A6LXS8: FAD-dependent pyridine nucleotide-disulphide oxidoreductase|g__Clostridium.s__Clostridium_beijerinckii	0.8278145695
+UniRef50_UPI0003510479	0.8277797676
+UniRef50_UPI0003510479|unclassified	0.8277797676
+UniRef50_F5M4L4	0.8277232153
+UniRef50_F5M4L4|unclassified	0.8277232153
+UniRef50_UPI000350A7B7: PREDICTED: 3beta-hydroxysteroid-dehydrogenase/decarboxylase isoform 1-like	0.8277018859
+UniRef50_UPI000350A7B7: PREDICTED: 3beta-hydroxysteroid-dehydrogenase/decarboxylase isoform 1-like|unclassified	0.8277018859
+UniRef50_UPI000262CE93: pyrroloquinoline quinone biosynthesis protein PqqC	0.8276323643
+UniRef50_UPI000262CE93: pyrroloquinoline quinone biosynthesis protein PqqC|unclassified	0.8276323643
+UniRef50_UPI00046E1553: PREDICTED: thioredoxin M-type, chloroplastic-like	0.8273338979
+UniRef50_UPI00046E1553: PREDICTED: thioredoxin M-type, chloroplastic-like|unclassified	0.8273338979
+UniRef50_I0KV97	0.8271298594
+UniRef50_I0KV97|unclassified	0.8271298594
+UniRef50_UPI00029A832E: aspartyl/glutamyl-tRNA amidotransferase subunit B	0.8270091313
+UniRef50_UPI00029A832E: aspartyl/glutamyl-tRNA amidotransferase subunit B|unclassified	0.8270091313
+UniRef50_UPI0002ED7898: hypothetical protein	0.8269661535
+UniRef50_UPI0002ED7898: hypothetical protein|unclassified	0.8269661535
+UniRef50_Q9I1X7: Multifunctional non-homologous end joining protein LigD	0.8266794263
+UniRef50_Q9I1X7: Multifunctional non-homologous end joining protein LigD|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8266794263
+UniRef50_UPI00046F82BE: thioredoxin reductase, partial	0.8266650435
+UniRef50_UPI00046F82BE: thioredoxin reductase, partial|unclassified	0.8266650435
+UniRef50_A4WSE9: IS66 Orf2 family protein	0.8266546261
+UniRef50_A4WSE9: IS66 Orf2 family protein|unclassified	0.8266546261
+UniRef50_P33702: Succinoglycan biosynthesis protein ExoW	0.8266080929
+UniRef50_P33702: Succinoglycan biosynthesis protein ExoW|unclassified	0.8266080929
+UniRef50_R4REY2	0.8264849253
+UniRef50_R4REY2|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8264849253
+UniRef50_UPI000478DF96: AraC family transcriptional regulator	0.8264283838
+UniRef50_UPI000478DF96: AraC family transcriptional regulator|unclassified	0.8264283838
+UniRef50_B2VB14: TraU protein	0.8263275955
+UniRef50_B2VB14: TraU protein|unclassified	0.8263275955
+UniRef50_UPI00026CB17F: hypothetical protein	0.8262596099
+UniRef50_UPI00026CB17F: hypothetical protein|unclassified	0.8262596099
+UniRef50_UPI000161F39B: predicted protein	0.8261336244
+UniRef50_UPI000161F39B: predicted protein|unclassified	0.8261336244
+UniRef50_W7B4G2	0.8261092659
+UniRef50_W7B4G2|unclassified	0.8261092659
+UniRef50_UPI0003C7E19E: aromatic ring-cleaving dioxygenase	0.8261025543
+UniRef50_UPI0003C7E19E: aromatic ring-cleaving dioxygenase|unclassified	0.8261025543
+UniRef50_UPI000412F4F5: hypothetical protein	0.8258745408
+UniRef50_UPI000412F4F5: hypothetical protein|unclassified	0.8258745408
+UniRef50_M9VKM1: RecF/RecN/SMC N-terminal domain protein	0.8258659094
+UniRef50_M9VKM1: RecF/RecN/SMC N-terminal domain protein|g__Propionibacterium.s__Propionibacterium_acnes	0.8258659094
+UniRef50_P61819: Sirohydrochlorin cobaltochelatase	0.8258573316
+UniRef50_P61819: Sirohydrochlorin cobaltochelatase|unclassified	0.8258573316
+UniRef50_A6LQD7: 2-alkenal reductase	0.8257638315
+UniRef50_A6LQD7: 2-alkenal reductase|g__Clostridium.s__Clostridium_beijerinckii	0.8257638315
+UniRef50_Q1IVY6: FAD dependent oxidoreductase	0.8257638315
+UniRef50_Q1IVY6: FAD dependent oxidoreductase|g__Deinococcus.s__Deinococcus_radiodurans	0.8257638315
+UniRef50_Q9RWX5	0.8257638315
+UniRef50_Q9RWX5|g__Deinococcus.s__Deinococcus_radiodurans	0.8257638315
+UniRef50_A9FQ61	0.8257138340
+UniRef50_A9FQ61|unclassified	0.8257138340
+UniRef50_UPI00034AEBFC: transposase	0.8256627455
+UniRef50_UPI00034AEBFC: transposase|unclassified	0.8256627455
+UniRef50_F4DUY7	0.8256042339
+UniRef50_F4DUY7|unclassified	0.8256042339
+UniRef50_V6K8C7	0.8254362769
+UniRef50_V6K8C7|unclassified	0.8254362769
+UniRef50_UPI00045495A7: PREDICTED: coiled-coil domain-containing protein 177-like, partial	0.8253045457
+UniRef50_UPI00045495A7: PREDICTED: coiled-coil domain-containing protein 177-like, partial|unclassified	0.8253045457
+UniRef50_UPI0004771BCF: membrane protein	0.8252351707
+UniRef50_UPI0004771BCF: membrane protein|unclassified	0.8252351707
+UniRef50_H0ABG8	0.8252289266
+UniRef50_H0ABG8|unclassified	0.8252289266
+UniRef50_A0A059LB29	0.8252185098
+UniRef50_A0A059LB29|unclassified	0.8252185098
+UniRef50_UPI0003346C39: PREDICTED: translation initiation factor IF-2-like	0.8250933233
+UniRef50_UPI0003346C39: PREDICTED: translation initiation factor IF-2-like|unclassified	0.8250933233
+UniRef50_A6LRE6: Membrane protein	0.8250825083
+UniRef50_A6LRE6: Membrane protein|g__Clostridium.s__Clostridium_beijerinckii	0.8250825083
+UniRef50_Q6FD60	0.8250825083
+UniRef50_Q6FD60|g__Acinetobacter.s__Acinetobacter_baumannii	0.8250825083
+UniRef50_W0YRY5: Permease	0.8250825083
+UniRef50_W0YRY5: Permease|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8250825083
+UniRef50_L3K2N1	0.8250532408
+UniRef50_L3K2N1|unclassified	0.8250532408
+UniRef50_J9CA10: Heat shock protein 70 (Fragment)	0.8250310118
+UniRef50_J9CA10: Heat shock protein 70 (Fragment)|unclassified	0.8250310118
+UniRef50_UPI00037C785B: hypothetical protein	0.8249720680
+UniRef50_UPI00037C785B: hypothetical protein|unclassified	0.8249720680
+UniRef50_UPI000477DB28: NrdR family transcriptional regulator	0.8248651658
+UniRef50_UPI000477DB28: NrdR family transcriptional regulator|unclassified	0.8248651658
+UniRef50_UPI0002DCC91D: hypothetical protein	0.8247783395
+UniRef50_UPI0002DCC91D: hypothetical protein|unclassified	0.8247783395
+UniRef50_UPI0003B76301: flagellar basal-body rod protein FlgB	0.8246725307
+UniRef50_UPI0003B76301: flagellar basal-body rod protein FlgB|unclassified	0.8246725307
+UniRef50_W5GQX7	0.8246224669
+UniRef50_W5GQX7|unclassified	0.8246224669
+UniRef50_UPI000288FCAE: MULTISPECIES: glycine cleavage system protein H	0.8245713269
+UniRef50_UPI000288FCAE: MULTISPECIES: glycine cleavage system protein H|unclassified	0.8245713269
+UniRef50_C2U1I5: Transporter	0.8245141958
+UniRef50_C2U1I5: Transporter|unclassified	0.8245141958
+UniRef50_K4PRA4: Phosphotransferase system, EIIC	0.8244023083
+UniRef50_K4PRA4: Phosphotransferase system, EIIC|g__Streptococcus.s__Streptococcus_agalactiae	0.8244023083
+UniRef50_K7RU35: DNA repair protein RecN	0.8244023083
+UniRef50_K7RU35: DNA repair protein RecN|g__Propionibacterium.s__Propionibacterium_acnes	0.8244023083
+UniRef50_Q65EE0	0.8242964146
+UniRef50_Q65EE0|unclassified	0.8242964146
+UniRef50_UPI0003613269: hypothetical protein	0.8242813766
+UniRef50_UPI0003613269: hypothetical protein|unclassified	0.8242813766
+UniRef50_A0A058ZKX6	0.8242497754
+UniRef50_A0A058ZKX6|unclassified	0.8242497754
+UniRef50_K1SX91: Beta-galactosidase (Fragment)	0.8241823460
+UniRef50_K1SX91: Beta-galactosidase (Fragment)|unclassified	0.8241823460
+UniRef50_I6FVM7	0.8240338670
+UniRef50_I6FVM7|unclassified	0.8240338670
+UniRef50_UPI000360723E: hypothetical protein	0.8239620337
+UniRef50_UPI000360723E: hypothetical protein|unclassified	0.8239620337
+UniRef50_C2ZDZ0	0.8239528717
+UniRef50_C2ZDZ0|unclassified	0.8239528717
+UniRef50_B1LMB3	0.8236012166
+UniRef50_B1LMB3|unclassified	0.8236012166
+UniRef50_A7X6I0: Phytoene desaturase (Fragment)	0.8236007276
+UniRef50_A7X6I0: Phytoene desaturase (Fragment)|unclassified	0.8236007276
+UniRef50_UPI000474FC78: hypothetical protein, partial	0.8235249886
+UniRef50_UPI000474FC78: hypothetical protein, partial|unclassified	0.8235249886
+UniRef50_T2HS98	0.8235147647
+UniRef50_T2HS98|unclassified	0.8235147647
+UniRef50_UPI00045E7101: hypothetical protein	0.8235090930
+UniRef50_UPI00045E7101: hypothetical protein|unclassified	0.8235090930
+UniRef50_UPI0002891FAD: adenine-specific DNA methyltransferase	0.8234926656
+UniRef50_UPI0002891FAD: adenine-specific DNA methyltransferase|unclassified	0.8234926656
+UniRef50_S9S2S7: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA (Fragment)	0.8233569963
+UniRef50_S9S2S7: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA (Fragment)|unclassified	0.8233569963
+UniRef50_P94570	0.8231583240
+UniRef50_P94570|unclassified	0.8231583240
+UniRef50_UPI000300F096: hypothetical protein	0.8230272930
+UniRef50_UPI000300F096: hypothetical protein|unclassified	0.8230272930
+UniRef50_A9DEP6	0.8228194166
+UniRef50_A9DEP6|unclassified	0.8228194166
+UniRef50_H5WMZ7	0.8227093151
+UniRef50_H5WMZ7|unclassified	0.8227093151
+UniRef50_F3U4P6	0.8225705547
+UniRef50_F3U4P6|unclassified	0.8225705547
+UniRef50_UPI0003613AC8: MFS transporter	0.8224181751
+UniRef50_UPI0003613AC8: MFS transporter|unclassified	0.8224181751
+UniRef50_A0A059G5R1: Putative L-ribulose-5-phosphate 4-epimerase	0.8223967297
+UniRef50_A0A059G5R1: Putative L-ribulose-5-phosphate 4-epimerase|unclassified	0.8223967297
+UniRef50_R7DG92	0.8223954225
+UniRef50_R7DG92|unclassified	0.8223954225
+UniRef50_Q89AU3: NADH-quinone oxidoreductase subunit E	0.8223792392
+UniRef50_Q89AU3: NADH-quinone oxidoreductase subunit E|unclassified	0.8223792392
+UniRef50_G3XD12: Hydrogen cyanide synthase subunit HcnC	0.8223684211
+UniRef50_G3XD12: Hydrogen cyanide synthase subunit HcnC|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8223684211
+UniRef50_R0JVH8	0.8223684211
+UniRef50_R0JVH8|unclassified	0.8223684211
+UniRef50_X1MHG0: Marine sediment metagenome DNA, contig: S06H3_L04197 (Fragment)	0.8223159205
+UniRef50_X1MHG0: Marine sediment metagenome DNA, contig: S06H3_L04197 (Fragment)|unclassified	0.8223159205
+UniRef50_R7QKG6: Stackhouse genomic scaffold, scaffold_401	0.8222702058
+UniRef50_R7QKG6: Stackhouse genomic scaffold, scaffold_401|unclassified	0.8222702058
+UniRef50_C8XFY9	0.8221337514
+UniRef50_C8XFY9|unclassified	0.8221337514
+UniRef50_UPI00046E5933: hypothetical protein	0.8220314811
+UniRef50_UPI00046E5933: hypothetical protein|unclassified	0.8220314811
+UniRef50_K4SRS5: IS5 transposase	0.8220016704
+UniRef50_K4SRS5: IS5 transposase|unclassified	0.8220016704
+UniRef50_X2JGW4: TraU	0.8219819126
+UniRef50_X2JGW4: TraU|unclassified	0.8219819126
+UniRef50_UPI000350C992: PREDICTED: serine/arginine repetitive matrix protein 2-like	0.8218722662
+UniRef50_UPI000350C992: PREDICTED: serine/arginine repetitive matrix protein 2-like|unclassified	0.8218722662
+UniRef50_F0YT45	0.8217950871
+UniRef50_F0YT45|unclassified	0.8217950871
+UniRef50_U2Z1G3: Hypotheical conserved protein	0.8217205607
+UniRef50_U2Z1G3: Hypotheical conserved protein|unclassified	0.8217205607
+UniRef50_I0ERW5: Integral membrane protein	0.8216926869
+UniRef50_I0ERW5: Integral membrane protein|g__Helicobacter.s__Helicobacter_pylori	0.8216926869
+UniRef50_K0B4J3: Uroporphyrin-III C-methyltransferase HemD	0.8216926869
+UniRef50_K0B4J3: Uroporphyrin-III C-methyltransferase HemD|g__Clostridium.s__Clostridium_beijerinckii	0.8216926869
+UniRef50_J1DTK5: AzlC protein	0.8216780410
+UniRef50_J1DTK5: AzlC protein|unclassified	0.8216780410
+UniRef50_H0HUE0	0.8215990550
+UniRef50_H0HUE0|unclassified	0.8215990550
+UniRef50_M2XUJ5	0.8215909267
+UniRef50_M2XUJ5|unclassified	0.8215909267
+UniRef50_Q1GKK0	0.8213076764
+UniRef50_Q1GKK0|unclassified	0.8213076764
+UniRef50_K1SF99: Electron transport complex, RnfABCDGE type, C subunit (Fragment)	0.8211580728
+UniRef50_K1SF99: Electron transport complex, RnfABCDGE type, C subunit (Fragment)|unclassified	0.8211580728
+UniRef50_A0A023RUT4: NADH:ubiquinone oxidoreductase subunit M	0.8210180624
+UniRef50_A0A023RUT4: NADH:ubiquinone oxidoreductase subunit M|g__Acinetobacter.s__Acinetobacter_baumannii	0.8210180624
+UniRef50_A6LXH9: NHL repeat containing protein	0.8210180624
+UniRef50_A6LXH9: NHL repeat containing protein|g__Clostridium.s__Clostridium_beijerinckii	0.8210180624
+UniRef50_R6IHH7	0.8209947727
+UniRef50_R6IHH7|unclassified	0.8209947727
+UniRef50_X7F4Q4	0.8209368277
+UniRef50_X7F4Q4|unclassified	0.8209368277
+UniRef50_A1IQR7: DNA ligase	0.8208721940
+UniRef50_A1IQR7: DNA ligase|g__Neisseria.s__Neisseria_meningitidis	0.8208721940
+UniRef50_UPI0003943C4C: transcriptional regulator	0.8208570793
+UniRef50_UPI0003943C4C: transcriptional regulator|unclassified	0.8208570793
+UniRef50_B2N0R8	0.8207405513
+UniRef50_B2N0R8|unclassified	0.8207405513
+UniRef50_F8IES2: Queuosine biosynthesis protein QueD	0.8207074624
+UniRef50_F8IES2: Queuosine biosynthesis protein QueD|unclassified	0.8207074624
+UniRef50_U9IQN4	0.8206964849
+UniRef50_U9IQN4|unclassified	0.8206964849
+UniRef50_K1ZXX8	0.8206479822
+UniRef50_K1ZXX8|unclassified	0.8206479822
+UniRef50_G2HS60: TRAP transporter solute receptor	0.8205923684
+UniRef50_G2HS60: TRAP transporter solute receptor|unclassified	0.8205923684
+UniRef50_A1WTP8	0.8205120740
+UniRef50_A1WTP8|unclassified	0.8205120740
+UniRef50_UPI00042C20EE: PREDICTED: methylmalonyl-CoA mutase, mitochondrial	0.8203717646
+UniRef50_UPI00042C20EE: PREDICTED: methylmalonyl-CoA mutase, mitochondrial|unclassified	0.8203717646
+UniRef50_E1QLX7: Sporulation domain protein	0.8203445447
+UniRef50_E1QLX7: Sporulation domain protein|unclassified	0.8203445447
+UniRef50_K4NLN5	0.8203445447
+UniRef50_K4NLN5|g__Helicobacter.s__Helicobacter_pylori	0.8203445447
+UniRef50_R4QK25: GTPase	0.8203445447
+UniRef50_R4QK25: GTPase|g__Helicobacter.s__Helicobacter_pylori	0.8203445447
+UniRef50_UPI00034D4ECA: hypothetical protein	0.8203445447
+UniRef50_UPI00034D4ECA: hypothetical protein|unclassified	0.8203445447
+UniRef50_W1F2X0	0.8201290518
+UniRef50_W1F2X0|unclassified	0.8201290518
+UniRef50_V6QCI4	0.8201243171
+UniRef50_V6QCI4|unclassified	0.8201243171
+UniRef50_F0KJV0	0.8200899360
+UniRef50_F0KJV0|unclassified	0.8200899360
+UniRef50_J3NN72	0.8198129259
+UniRef50_J3NN72|unclassified	0.8198129259
+UniRef50_R1E0X4	0.8197398545
+UniRef50_R1E0X4|unclassified	0.8197398545
+UniRef50_B4RQ09: PglB	0.8196721311
+UniRef50_B4RQ09: PglB|g__Neisseria.s__Neisseria_meningitidis	0.8196721311
+UniRef50_F0KGA1: D-galactonate transporter	0.8196721311
+UniRef50_F0KGA1: D-galactonate transporter|g__Acinetobacter.s__Acinetobacter_baumannii	0.8196721311
+UniRef50_L1KBM4	0.8196584729
+UniRef50_L1KBM4|unclassified	0.8196584729
+UniRef50_UPI00037F807F: hypothetical protein	0.8194978869
+UniRef50_UPI00037F807F: hypothetical protein|unclassified	0.8194978869
+UniRef50_UPI000366CE6C: hypothetical protein	0.8194313917
+UniRef50_UPI000366CE6C: hypothetical protein|unclassified	0.8194313917
+UniRef50_W0YQJ9: Pyridine nucleotide-disulfide family oxidoreductase	0.8193883932
+UniRef50_W0YQJ9: Pyridine nucleotide-disulfide family oxidoreductase|unclassified	0.8193883932
+UniRef50_I7LQX6: Ferredoxin	0.8192871975
+UniRef50_I7LQX6: Ferredoxin|unclassified	0.8192871975
+UniRef50_Q57RQ5: Putative RNA	0.8192240700
+UniRef50_Q57RQ5: Putative RNA|unclassified	0.8192240700
+UniRef50_K1ZV36: Phosphate permease (Fragment)	0.8191249943
+UniRef50_K1ZV36: Phosphate permease (Fragment)|unclassified	0.8191249943
+UniRef50_J5Q4H4	0.8190478295
+UniRef50_J5Q4H4|unclassified	0.8190478295
+UniRef50_J7Y8T0	0.8190116689
+UniRef50_J7Y8T0|unclassified	0.8190116689
+UniRef50_B3PCQ0: ACT domain protein/phosphoserine phosphatase SerB	0.8190008190
+UniRef50_B3PCQ0: ACT domain protein/phosphoserine phosphatase SerB|g__Acinetobacter.s__Acinetobacter_baumannii	0.8190008190
+UniRef50_D4H9D0: Phosphoglucomutase/phosphomannomutase, alpha/beta/alpha domain II	0.8190008190
+UniRef50_D4H9D0: Phosphoglucomutase/phosphomannomutase, alpha/beta/alpha domain II|g__Propionibacterium.s__Propionibacterium_acnes	0.8190008190
+UniRef50_UPI0003288EEF	0.8190008190
+UniRef50_UPI0003288EEF|unclassified	0.8190008190
+UniRef50_I6DCI3	0.8189651275
+UniRef50_I6DCI3|unclassified	0.8189651275
+UniRef50_Q9ZLW5: Glutamine synthetase	0.8189479581
+UniRef50_Q9ZLW5: Glutamine synthetase|g__Helicobacter.s__Helicobacter_pylori	0.7429420505
+UniRef50_Q9ZLW5: Glutamine synthetase|unclassified	0.0760059075
+UniRef50_UPI000347AC3B: preprotein translocase subunit SecG	0.8186998306
+UniRef50_UPI000347AC3B: preprotein translocase subunit SecG|unclassified	0.8186998306
+UniRef50_W5X411: DoxX family protein	0.8186733334
+UniRef50_W5X411: DoxX family protein|unclassified	0.8186733334
+UniRef50_A5AJA3	0.8183306056
+UniRef50_A5AJA3|unclassified	0.8183306056
+UniRef50_Q9RVW3	0.8183306056
+UniRef50_Q9RVW3|g__Deinococcus.s__Deinococcus_radiodurans	0.8183306056
+UniRef50_C9SB93: Predicted protein	0.8182996598
+UniRef50_C9SB93: Predicted protein|unclassified	0.8182996598
+UniRef50_Q0FIR5: Putative uracil DNA glycosylase protein	0.8182819622
+UniRef50_Q0FIR5: Putative uracil DNA glycosylase protein|unclassified	0.8182819622
+UniRef50_V5LN28	0.8182724445
+UniRef50_V5LN28|unclassified	0.8182724445
+UniRef50_UPI0004407D87: hypothetical protein FOMMEDRAFT_83654	0.8181959899
+UniRef50_UPI0004407D87: hypothetical protein FOMMEDRAFT_83654|unclassified	0.8181959899
+UniRef50_U8ZF23: UPF0125 protein Q012_00884	0.8180513160
+UniRef50_U8ZF23: UPF0125 protein Q012_00884|unclassified	0.8180513160
+UniRef50_UPI000370484E: hypothetical protein	0.8180273628
+UniRef50_UPI000370484E: hypothetical protein|unclassified	0.8180273628
+UniRef50_UPI00035EED6C: hypothetical protein	0.8178884780
+UniRef50_UPI00035EED6C: hypothetical protein|unclassified	0.8178884780
+UniRef50_A7MFF8	0.8177012575
+UniRef50_A7MFF8|unclassified	0.8177012575
+UniRef50_S9Q6G6: Plasmid replication protein RepA	0.8176938791
+UniRef50_S9Q6G6: Plasmid replication protein RepA|unclassified	0.8176938791
+UniRef50_A9KCU3: Aspartate aminotransferase	0.8176614881
+UniRef50_A9KCU3: Aspartate aminotransferase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8176614881
+UniRef50_Q1IZU9: Serine--tRNA ligase	0.8176614881
+UniRef50_Q1IZU9: Serine--tRNA ligase|g__Deinococcus.s__Deinococcus_radiodurans	0.8176614881
+UniRef50_Q6A615	0.8176614881
+UniRef50_Q6A615|g__Propionibacterium.s__Propionibacterium_acnes	0.8176614881
+UniRef50_R8ZPA2: Universal stress protein	0.8176614881
+UniRef50_R8ZPA2: Universal stress protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8176614881
+UniRef50_V6EYS6	0.8176410851
+UniRef50_V6EYS6|unclassified	0.8176410851
+UniRef50_U5CSQ8	0.8176354966
+UniRef50_U5CSQ8|unclassified	0.8176354966
+UniRef50_D9SMI0	0.8174061789
+UniRef50_D9SMI0|g__Clostridium.s__Clostridium_beijerinckii	0.8174061789
+UniRef50_UPI000381D3F8: hypothetical protein	0.8173934196
+UniRef50_UPI000381D3F8: hypothetical protein|unclassified	0.8173934196
+UniRef50_UPI0003B69058: S-(hydroxymethyl)glutathione synthase	0.8173410854
+UniRef50_UPI0003B69058: S-(hydroxymethyl)glutathione synthase|unclassified	0.8173410854
+UniRef50_B3EDX3: Imidazoleglycerol-phosphate dehydratase	0.8173388117
+UniRef50_B3EDX3: Imidazoleglycerol-phosphate dehydratase|unclassified	0.8173388117
+UniRef50_D1CTE1: Replication protein RepA (Fragment)	0.8173004202
+UniRef50_D1CTE1: Replication protein RepA (Fragment)|unclassified	0.8173004202
+UniRef50_UPI000467CF09: transcriptional regulator	0.8172350569
+UniRef50_UPI000467CF09: transcriptional regulator|unclassified	0.8172350569
+UniRef50_D8JF32: Lon protease (S16) C-terminal proteolytic domain protein	0.8172168799
+UniRef50_D8JF32: Lon protease (S16) C-terminal proteolytic domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.8172168799
+UniRef50_UPI0003A5C3E8: methylmalonyl-CoA mutase	0.8172030718
+UniRef50_UPI0003A5C3E8: methylmalonyl-CoA mutase|unclassified	0.8172030718
+UniRef50_Q9RSM8: Endopeptidase IV-related protein	0.8169934641
+UniRef50_Q9RSM8: Endopeptidase IV-related protein|g__Deinococcus.s__Deinococcus_radiodurans	0.8169934641
+UniRef50_O84638: Delta-aminolevulinic acid dehydratase	0.8169418494
+UniRef50_O84638: Delta-aminolevulinic acid dehydratase|unclassified	0.8169418494
+UniRef50_A8Z4C3	0.8167665608
+UniRef50_A8Z4C3|unclassified	0.8167665608
+UniRef50_UPI0002EF456C: hypothetical protein	0.8167598048
+UniRef50_UPI0002EF456C: hypothetical protein|unclassified	0.8167598048
+UniRef50_UPI000476DBA0: hypothetical protein	0.8167219509
+UniRef50_UPI000476DBA0: hypothetical protein|unclassified	0.8167219509
+UniRef50_A0A024F1P3: Membrane protein	0.8166373552
+UniRef50_A0A024F1P3: Membrane protein|unclassified	0.8166373552
+UniRef50_G6EM32: Tetratricopeptide repeat family protein	0.8165457560
+UniRef50_G6EM32: Tetratricopeptide repeat family protein|unclassified	0.8165457560
+UniRef50_U4V4Y1	0.8164091349
+UniRef50_U4V4Y1|unclassified	0.8164091349
+UniRef50_A9ZM04: AsmA family protein	0.8163265306
+UniRef50_A9ZM04: AsmA family protein|unclassified	0.8163265306
+UniRef50_K0HKR9	0.8163265306
+UniRef50_K0HKR9|g__Propionibacterium.s__Propionibacterium_acnes	0.8163265306
+UniRef50_Q9RU78: 2-phosphoglycerate kinase, putative	0.8163265306
+UniRef50_Q9RU78: 2-phosphoglycerate kinase, putative|g__Deinococcus.s__Deinococcus_radiodurans	0.8163265306
+UniRef50_G7R8B3	0.8162150683
+UniRef50_G7R8B3|unclassified	0.8162150683
+UniRef50_UPI00023B2764	0.8161758931
+UniRef50_UPI00023B2764|unclassified	0.8161758931
+UniRef50_A4BRR9	0.8161070125
+UniRef50_A4BRR9|unclassified	0.8161070125
+UniRef50_W1HQR2: DedA family inner membrane protein YghB	0.8158689520
+UniRef50_W1HQR2: DedA family inner membrane protein YghB|unclassified	0.8158689520
+UniRef50_N3A1Y2: Putative L,D-transpeptidase YbiS domain protein	0.8158005427
+UniRef50_N3A1Y2: Putative L,D-transpeptidase YbiS domain protein|unclassified	0.8158005427
+UniRef50_N6KDQ3	0.8157776866
+UniRef50_N6KDQ3|unclassified	0.8157776866
+UniRef50_H8FMR4	0.8155297469
+UniRef50_H8FMR4|unclassified	0.8155297469
+UniRef50_Q75LR2: Phospho-2-dehydro-3-deoxyheptonate aldolase 1, chloroplastic	0.8155132470
+UniRef50_Q75LR2: Phospho-2-dehydro-3-deoxyheptonate aldolase 1, chloroplastic|unclassified	0.8155132470
+UniRef50_UPI000361556C: hypothetical protein, partial	0.8152333691
+UniRef50_UPI000361556C: hypothetical protein, partial|unclassified	0.8152333691
+UniRef50_UPI00036AE08D: hypothetical protein	0.8152055972
+UniRef50_UPI00036AE08D: hypothetical protein|unclassified	0.8152055972
+UniRef50_UPI00046FE349: acriflavine resistance protein B, partial	0.8151123868
+UniRef50_UPI00046FE349: acriflavine resistance protein B, partial|unclassified	0.8151123868
+UniRef50_F6B2B4: Phage major tail tube protein	0.8150614655
+UniRef50_F6B2B4: Phage major tail tube protein|unclassified	0.8150614655
+UniRef50_UPI0003619FFF: hypothetical protein	0.8149827738
+UniRef50_UPI0003619FFF: hypothetical protein|unclassified	0.8149827738
+UniRef50_Q9A2A6	0.8148048465
+UniRef50_Q9A2A6|unclassified	0.8148048465
+UniRef50_UPI0003004A80: hypothetical protein	0.8146781859
+UniRef50_UPI0003004A80: hypothetical protein|unclassified	0.8146781859
+UniRef50_W1GTI3: Sulfate transport system permease protein CysT	0.8146543998
+UniRef50_W1GTI3: Sulfate transport system permease protein CysT|unclassified	0.8146543998
+UniRef50_UPI0003818604: hypothetical protein	0.8144823715
+UniRef50_UPI0003818604: hypothetical protein|unclassified	0.8144823715
+UniRef50_X1QUX5: Marine sediment metagenome DNA, contig: S06H3_S25093 (Fragment)	0.8144626882
+UniRef50_X1QUX5: Marine sediment metagenome DNA, contig: S06H3_S25093 (Fragment)|unclassified	0.8144626882
+UniRef50_Q73F31: Tn7-like transposition protein C	0.8144110342
+UniRef50_Q73F31: Tn7-like transposition protein C|unclassified	0.8144110342
+UniRef50_T2I810: Structural constituent of cell wall	0.8143954590
+UniRef50_T2I810: Structural constituent of cell wall|unclassified	0.8143954590
+UniRef50_Q500N2: Bifunctional spore maturation protein, fused SpmA/SpmB	0.8143322476
+UniRef50_Q500N2: Bifunctional spore maturation protein, fused SpmA/SpmB|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8143322476
+UniRef50_UPI00036CB6A6: hypothetical protein	0.8142333545
+UniRef50_UPI00036CB6A6: hypothetical protein|unclassified	0.8142333545
+UniRef50_W0ZB71	0.8141811974
+UniRef50_W0ZB71|unclassified	0.8141811974
+UniRef50_H2K108	0.8139392881
+UniRef50_H2K108|unclassified	0.8139392881
+UniRef50_A0A024HLH2	0.8138306197
+UniRef50_A0A024HLH2|unclassified	0.8138306197
+UniRef50_UPI0003610508: hypothetical protein	0.8138126733
+UniRef50_UPI0003610508: hypothetical protein|unclassified	0.8138126733
+UniRef50_W4TKT8: Molybdopterin-guanine dinucleotide biosynthesis protein	0.8136960642
+UniRef50_W4TKT8: Molybdopterin-guanine dinucleotide biosynthesis protein|unclassified	0.8136960642
+UniRef50_S9QYB5	0.8136732367
+UniRef50_S9QYB5|unclassified	0.8136732367
+UniRef50_A6LR66: Signal transduction histidine kinase regulating citrate/malate metabolism	0.8136696501
+UniRef50_A6LR66: Signal transduction histidine kinase regulating citrate/malate metabolism|g__Clostridium.s__Clostridium_beijerinckii	0.8136696501
+UniRef50_I1AMP8: Semialdehyde dehydrogenase	0.8136696501
+UniRef50_I1AMP8: Semialdehyde dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8136696501
+UniRef50_R1CT53	0.8136696501
+UniRef50_R1CT53|unclassified	0.8136696501
+UniRef50_UPI0003B429F7: transposase	0.8135851541
+UniRef50_UPI0003B429F7: transposase|unclassified	0.8135851541
+UniRef50_E3YHB6	0.8135129259
+UniRef50_E3YHB6|unclassified	0.8135129259
+UniRef50_D2Q2C0: G5 domain protein	0.8134730806
+UniRef50_D2Q2C0: G5 domain protein|unclassified	0.8134730806
+UniRef50_UPI00037088EF: hypothetical protein	0.8132067199
+UniRef50_UPI00037088EF: hypothetical protein|unclassified	0.8132067199
+UniRef50_Q8H580	0.8131623404
+UniRef50_Q8H580|unclassified	0.8131623404
+UniRef50_UPI0003A9ACD1: hypothetical protein	0.8131138205
+UniRef50_UPI0003A9ACD1: hypothetical protein|unclassified	0.8131138205
+UniRef50_T2ERZ8: Putative attachment protein G3P (Fragment)	0.8131003926
+UniRef50_T2ERZ8: Putative attachment protein G3P (Fragment)|unclassified	0.8131003926
+UniRef50_Q8X2S9	0.8130355103
+UniRef50_Q8X2S9|unclassified	0.8130355103
+UniRef50_C6ELT1: Attaching and effacing protein, pathogenesis factor	0.8130081301
+UniRef50_C6ELT1: Attaching and effacing protein, pathogenesis factor|g__Escherichia.s__Escherichia_coli	0.8130081301
+UniRef50_D8JDP8: Protein visC	0.8130081301
+UniRef50_D8JDP8: Protein visC|g__Acinetobacter.s__Acinetobacter_baumannii	0.8130081301
+UniRef50_Q9RXH3: Folyl-polyglutamate synthetase	0.8130081301
+UniRef50_Q9RXH3: Folyl-polyglutamate synthetase|g__Deinococcus.s__Deinococcus_radiodurans	0.8130081301
+UniRef50_M6KNA5	0.8129908227
+UniRef50_M6KNA5|unclassified	0.8129908227
+UniRef50_F2D8A2: Predicted protein	0.8129603539
+UniRef50_F2D8A2: Predicted protein|unclassified	0.8129603539
+UniRef50_G5MII4: Uptake hydrogenase large subunit (Fragment)	0.8126607301
+UniRef50_G5MII4: Uptake hydrogenase large subunit (Fragment)|unclassified	0.8126607301
+UniRef50_UPI0003605157: hypothetical protein	0.8125468609
+UniRef50_UPI0003605157: hypothetical protein|unclassified	0.8125468609
+UniRef50_Q1GHW3: Molecular chaperone DnaK	0.8123476848
+UniRef50_Q1GHW3: Molecular chaperone DnaK|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.8123476848
+UniRef50_UPI00045FEC12: BACTERIOPHYTOCHROME	0.8123127834
+UniRef50_UPI00045FEC12: BACTERIOPHYTOCHROME|unclassified	0.8123127834
+UniRef50_A8AJE7	0.8121426482
+UniRef50_A8AJE7|unclassified	0.8121426482
+UniRef50_UPI0003D0828F: PREDICTED: glutaredoxin-related protein 5, mitochondrial isoform X1	0.8121420049
+UniRef50_UPI0003D0828F: PREDICTED: glutaredoxin-related protein 5, mitochondrial isoform X1|unclassified	0.8121420049
+UniRef50_D8JG86: Sensor protein gacS	0.8120599286
+UniRef50_D8JG86: Sensor protein gacS|g__Acinetobacter.s__Acinetobacter_baumannii	0.8120599286
+UniRef50_F4DRY0: BolA family protein	0.8119605372
+UniRef50_F4DRY0: BolA family protein|unclassified	0.8119605372
+UniRef50_J3BR62	0.8118311880
+UniRef50_J3BR62|unclassified	0.8118311880
+UniRef50_W1DHP6: NADPH:quinone oxidoreductase 2	0.8118287820
+UniRef50_W1DHP6: NADPH:quinone oxidoreductase 2|unclassified	0.8118287820
+UniRef50_A3M8U5: Heavy metal RND efflux outer membrane protein CzcC family	0.8116883117
+UniRef50_A3M8U5: Heavy metal RND efflux outer membrane protein CzcC family|g__Acinetobacter.s__Acinetobacter_baumannii	0.8116883117
+UniRef50_UPI0004699EDF: membrane protein	0.8115917807
+UniRef50_UPI0004699EDF: membrane protein|unclassified	0.8115917807
+UniRef50_N2MQH2: Putative antirestriction protein	0.8115522533
+UniRef50_N2MQH2: Putative antirestriction protein|unclassified	0.8115522533
+UniRef50_G5JID0	0.8114990244
+UniRef50_G5JID0|unclassified	0.8114990244
+UniRef50_UPI0003637E5A: hypothetical protein, partial	0.8112230213
+UniRef50_UPI0003637E5A: hypothetical protein, partial|unclassified	0.8112230213
+UniRef50_A0A025AV10	0.8111715491
+UniRef50_A0A025AV10|unclassified	0.8111715491
+UniRef50_F7XAS6: Transcriptional regulator, LysR family	0.8111166266
+UniRef50_F7XAS6: Transcriptional regulator, LysR family|unclassified	0.8111166266
+UniRef50_UPI00036E203C: hypothetical protein	0.8110391439
+UniRef50_UPI00036E203C: hypothetical protein|unclassified	0.8110391439
+UniRef50_G8PES7: Glycosyl transferase 2 family protein	0.8110300081
+UniRef50_G8PES7: Glycosyl transferase 2 family protein|g__Clostridium.s__Clostridium_beijerinckii	0.8110300081
+UniRef50_U0QJV6	0.8110097966
+UniRef50_U0QJV6|unclassified	0.8110097966
+UniRef50_UPI0004696A5C: glyceraldehyde-3-phosphate dehydrogenase	0.8109846469
+UniRef50_UPI0004696A5C: glyceraldehyde-3-phosphate dehydrogenase|unclassified	0.8109846469
+UniRef50_UPI000360A98B: hypothetical protein, partial	0.8109165876
+UniRef50_UPI000360A98B: hypothetical protein, partial|unclassified	0.8109165876
+UniRef50_K6KZ15: Imidazole glycerol phosphate synthase subunit HisH	0.8107892305
+UniRef50_K6KZ15: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.8107892305
+UniRef50_M4WZU0	0.8107202510
+UniRef50_M4WZU0|unclassified	0.8107202510
+UniRef50_V5STF8	0.8106510774
+UniRef50_V5STF8|unclassified	0.8106510774
+UniRef50_Q9FDM1: Prolipoprotein diacylglyceryl transferase	0.8106496818
+UniRef50_Q9FDM1: Prolipoprotein diacylglyceryl transferase|unclassified	0.8106496818
+UniRef50_UPI000333BCF6: PREDICTED: immediate-early protein 2-like	0.8105758748
+UniRef50_UPI000333BCF6: PREDICTED: immediate-early protein 2-like|unclassified	0.8105758748
+UniRef50_UPI00036946A1: MULTISPECIES: hypothetical protein	0.8105233380
+UniRef50_UPI00036946A1: MULTISPECIES: hypothetical protein|unclassified	0.8105233380
+UniRef50_UPI000377BD8B: hypothetical protein, partial	0.8104926348
+UniRef50_UPI000377BD8B: hypothetical protein, partial|unclassified	0.8104926348
+UniRef50_A8EWF0: 3-oxoacyl-[acyl-carrier-protein] synthase 2	0.8103727715
+UniRef50_A8EWF0: 3-oxoacyl-[acyl-carrier-protein] synthase 2|g__Helicobacter.s__Helicobacter_pylori	0.8103727715
+UniRef50_C1HZT4	0.8102500765
+UniRef50_C1HZT4|unclassified	0.8102500765
+UniRef50_W4UL88: NADH-ubiquinone oxidoreductase	0.8101844412
+UniRef50_W4UL88: NADH-ubiquinone oxidoreductase|unclassified	0.8101844412
+UniRef50_B7QKL9	0.8101748865
+UniRef50_B7QKL9|unclassified	0.8101748865
+UniRef50_L1GJG5	0.8100875248
+UniRef50_L1GJG5|unclassified	0.8100875248
+UniRef50_UPI00035EB53D: hypothetical protein	0.8099958981
+UniRef50_UPI00035EB53D: hypothetical protein|unclassified	0.8099958981
+UniRef50_UPI0003797DCD: glutamine synthetase	0.8098252224
+UniRef50_UPI0003797DCD: glutamine synthetase|unclassified	0.8098252224
+UniRef50_D9QF27: Fe-S metabolism associated SufE	0.8097564281
+UniRef50_D9QF27: Fe-S metabolism associated SufE|unclassified	0.8097564281
+UniRef50_N3IZZ9: Intergenic-region protein	0.8097221064
+UniRef50_N3IZZ9: Intergenic-region protein|unclassified	0.8097221064
+UniRef50_Q00934: Type 4 fimbriae expression regulatory protein PilR	0.8097165992
+UniRef50_Q00934: Type 4 fimbriae expression regulatory protein PilR|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8097165992
+UniRef50_Q9JYA6: PqiA family protein	0.8097165992
+UniRef50_Q9JYA6: PqiA family protein|g__Neisseria.s__Neisseria_meningitidis	0.8097165992
+UniRef50_A0A020RHY2	0.8096713336
+UniRef50_A0A020RHY2|unclassified	0.8096713336
+UniRef50_UPI00036CCC30: hypothetical protein, partial	0.8096641556
+UniRef50_UPI00036CCC30: hypothetical protein, partial|unclassified	0.8096641556
+UniRef50_R1CD42	0.8095679882
+UniRef50_R1CD42|unclassified	0.8095679882
+UniRef50_UPI000225F55A: hypothetical protein	0.8094178597
+UniRef50_UPI000225F55A: hypothetical protein|unclassified	0.8094178597
+UniRef50_UPI00037B5D3C: hypothetical protein	0.8094035248
+UniRef50_UPI00037B5D3C: hypothetical protein|unclassified	0.8094035248
+UniRef50_UPI00018508C1: phosphoenolpyruvate carboxykinase	0.8093279145
+UniRef50_UPI00018508C1: phosphoenolpyruvate carboxykinase|unclassified	0.8093279145
+UniRef50_Q2NS89: Acetyltransferase SG1711	0.8091830772
+UniRef50_Q2NS89: Acetyltransferase SG1711|unclassified	0.8091830772
+UniRef50_W8YGK7	0.8091797164
+UniRef50_W8YGK7|unclassified	0.8091797164
+UniRef50_D8TY06	0.8090619398
+UniRef50_D8TY06|unclassified	0.8090619398
+UniRef50_W9EQE1	0.8090614887
+UniRef50_W9EQE1|unclassified	0.8090614887
+UniRef50_X3WSY3: Membrane protein (Fragment)	0.8090614887
+UniRef50_X3WSY3: Membrane protein (Fragment)|unclassified	0.8090614887
+UniRef50_U3AJ81: Ribose ABC transport system, permease protein RbsC	0.8090442967
+UniRef50_U3AJ81: Ribose ABC transport system, permease protein RbsC|unclassified	0.8090442967
+UniRef50_V9U5K5	0.8090220987
+UniRef50_V9U5K5|unclassified	0.8090220987
+UniRef50_UPI0003944331: PREDICTED: basic proline-rich protein-like	0.8087260522
+UniRef50_UPI0003944331: PREDICTED: basic proline-rich protein-like|unclassified	0.8087260522
+UniRef50_K0DWJ8	0.8086272568
+UniRef50_K0DWJ8|unclassified	0.8086272568
+UniRef50_UPI0004671BDB: hypothetical protein	0.8085121886
+UniRef50_UPI0004671BDB: hypothetical protein|unclassified	0.8085121886
+UniRef50_UPI000471CA5C: hypothetical protein	0.8084214173
+UniRef50_UPI000471CA5C: hypothetical protein|unclassified	0.8084214173
+UniRef50_UPI0004637A95: MULTISPECIES: hypothetical protein	0.8084083879
+UniRef50_UPI0004637A95: MULTISPECIES: hypothetical protein|unclassified	0.8084083879
+UniRef50_B7V405	0.8084074373
+UniRef50_B7V405|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8084074373
+UniRef50_Z2DIM4	0.8083765347
+UniRef50_Z2DIM4|unclassified	0.8083765347
+UniRef50_H6RJ12: N-acetylmuramoyl-L-alanine amidase	0.8082499079
+UniRef50_H6RJ12: N-acetylmuramoyl-L-alanine amidase|unclassified	0.8082499079
+UniRef50_R1F059	0.8081702478
+UniRef50_R1F059|unclassified	0.8081702478
+UniRef50_C5XVG2	0.8078885508
+UniRef50_C5XVG2|unclassified	0.8078885508
+UniRef50_C6NYG2: Flagellar biosynthesis protein FlhB	0.8078818569
+UniRef50_C6NYG2: Flagellar biosynthesis protein FlhB|unclassified	0.8078818569
+UniRef50_E0NC84	0.8078462132
+UniRef50_E0NC84|unclassified	0.8078462132
+UniRef50_G2TBD0: Diheme cytochrome c	0.8078345276
+UniRef50_G2TBD0: Diheme cytochrome c|unclassified	0.8078345276
+UniRef50_UPI00041FA9E4: tail protein	0.8077789574
+UniRef50_UPI00041FA9E4: tail protein|unclassified	0.8077789574
+UniRef50_F8KPA7: Glutathione-regulated potassium-efflux system protein KefB	0.8077544426
+UniRef50_F8KPA7: Glutathione-regulated potassium-efflux system protein KefB|g__Helicobacter.s__Helicobacter_pylori	0.8077544426
+UniRef50_Q1Q8B0: UvrABC system protein C	0.8077544426
+UniRef50_Q1Q8B0: UvrABC system protein C|g__Acinetobacter.s__Acinetobacter_baumannii	0.8077544426
+UniRef50_UPI0003831407: hypothetical protein M271_12325	0.8076959668
+UniRef50_UPI0003831407: hypothetical protein M271_12325|unclassified	0.8076959668
+UniRef50_Q3ACC4: LexA repressor	0.8076887018
+UniRef50_Q3ACC4: LexA repressor|unclassified	0.8076887018
+UniRef50_UPI0002559CB6: nucleoside-triphosphate diphosphatase	0.8076081471
+UniRef50_UPI0002559CB6: nucleoside-triphosphate diphosphatase|unclassified	0.8076081471
+UniRef50_Q4FV40: Protein translocase subunit SecA	0.8075837250
+UniRef50_Q4FV40: Protein translocase subunit SecA|g__Neisseria.s__Neisseria_meningitidis	0.8075837250
+UniRef50_C8MGR0	0.8075333495
+UniRef50_C8MGR0|unclassified	0.8075333495
+UniRef50_D8TAF6	0.8074375253
+UniRef50_D8TAF6|unclassified	0.8074375253
+UniRef50_UPI0003D02549: hypothetical protein P148_SR1C00001G0193	0.8074082890
+UniRef50_UPI0003D02549: hypothetical protein P148_SR1C00001G0193|unclassified	0.8074082890
+UniRef50_K0CHY0	0.8072322226
+UniRef50_K0CHY0|unclassified	0.8072322226
+UniRef50_C5CL29	0.8071460348
+UniRef50_C5CL29|unclassified	0.8071460348
+UniRef50_G2K6Z5: Sugar ABC transporter	0.8071267644
+UniRef50_G2K6Z5: Sugar ABC transporter|unclassified	0.8071267644
+UniRef50_A4XVN9: Methyl-accepting chemotaxis sensory transducer	0.8071025020
+UniRef50_A4XVN9: Methyl-accepting chemotaxis sensory transducer|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8071025020
+UniRef50_B1VYS6	0.8071025020
+UniRef50_B1VYS6|unclassified	0.8071025020
+UniRef50_UPI0001D55EDA: PREDICTED: hypothetical protein LOC717343	0.8071025020
+UniRef50_UPI0001D55EDA: PREDICTED: hypothetical protein LOC717343|unclassified	0.8071025020
+UniRef50_UPI0002FEB0F7: hypothetical protein	0.8070165361
+UniRef50_UPI0002FEB0F7: hypothetical protein|unclassified	0.8070165361
+UniRef50_A0A028ZL35: MerR family transcriptional regulator	0.8069915555
+UniRef50_A0A028ZL35: MerR family transcriptional regulator|unclassified	0.8069915555
+UniRef50_E2XFQ5	0.8069681768
+UniRef50_E2XFQ5|unclassified	0.8069681768
+UniRef50_J2X169	0.8069143012
+UniRef50_J2X169|unclassified	0.8069143012
+UniRef50_F2KCE9: Protein tldE, (Protein pmbA)	0.8068902744
+UniRef50_F2KCE9: Protein tldE, (Protein pmbA)|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7861635220
+UniRef50_F2KCE9: Protein tldE, (Protein pmbA)|unclassified	0.0207267524
+UniRef50_UPI000473BB30: hypothetical protein, partial	0.8068868425
+UniRef50_UPI000473BB30: hypothetical protein, partial|unclassified	0.8068868425
+UniRef50_A0A059IP43	0.8068036755
+UniRef50_A0A059IP43|unclassified	0.8068036755
+UniRef50_Q73CB6	0.8067798177
+UniRef50_Q73CB6|unclassified	0.8067798177
+UniRef50_Q9KT93: Probable lactoylglutathione lyase	0.8067486184
+UniRef50_Q9KT93: Probable lactoylglutathione lyase|unclassified	0.8067486184
+UniRef50_UPI000366A550: transcriptional regulator	0.8066973290
+UniRef50_UPI000366A550: transcriptional regulator|unclassified	0.8066973290
+UniRef50_M8Y264: Inner membrane transporter ygjI	0.8064516129
+UniRef50_M8Y264: Inner membrane transporter ygjI|g__Escherichia.s__Escherichia_coli	0.8064516129
+UniRef50_UPI00034D5D4F: hypothetical protein	0.8064516129
+UniRef50_UPI00034D5D4F: hypothetical protein|unclassified	0.8064516129
+UniRef50_B9KJV7: ISxcd1 transposase	0.8063809823
+UniRef50_B9KJV7: ISxcd1 transposase|unclassified	0.8063809823
+UniRef50_UPI00028A050D: translation factor Sua5	0.8061576561
+UniRef50_UPI00028A050D: translation factor Sua5|unclassified	0.8061576561
+UniRef50_F9KG40	0.8058585894
+UniRef50_F9KG40|unclassified	0.8058585894
+UniRef50_UPI0003B3485A: AP endonuclease	0.8057241764
+UniRef50_UPI0003B3485A: AP endonuclease|unclassified	0.8057241764
+UniRef50_C1D661: Predicted membrane protein	0.8056593884
+UniRef50_C1D661: Predicted membrane protein|unclassified	0.8056593884
+UniRef50_UPI0004624D8C: PREDICTED: mesoderm posterior protein 1-like	0.8053986597
+UniRef50_UPI0004624D8C: PREDICTED: mesoderm posterior protein 1-like|unclassified	0.8053986597
+UniRef50_UPI0003470125: hypothetical protein	0.8053850295
+UniRef50_UPI0003470125: hypothetical protein|unclassified	0.8053850295
+UniRef50_B9THK2	0.8053771601
+UniRef50_B9THK2|unclassified	0.8053771601
+UniRef50_UPI0002558848: putative transcriptional regulator, Nlp	0.8053770254
+UniRef50_UPI0002558848: putative transcriptional regulator, Nlp|unclassified	0.8053770254
+UniRef50_UPI00041F8F70: hypothetical protein	0.8053047987
+UniRef50_UPI00041F8F70: hypothetical protein|unclassified	0.8053047987
+UniRef50_UPI0002B8D004: hypothetical protein	0.8052327597
+UniRef50_UPI0002B8D004: hypothetical protein|unclassified	0.8052327597
+UniRef50_A3PPB0: Integral membrane sensor signal transduction histidine kinase	0.8051529791
+UniRef50_A3PPB0: Integral membrane sensor signal transduction histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.8051529791
+UniRef50_A6LPT1: Protein translocase subunit SecY	0.8051529791
+UniRef50_A6LPT1: Protein translocase subunit SecY|g__Clostridium.s__Clostridium_beijerinckii	0.8051529791
+UniRef50_D8JEZ3: Adenylate cyclase	0.8051529791
+UniRef50_D8JEZ3: Adenylate cyclase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8051529791
+UniRef50_K7RVQ7: Transporter, major facilitator family protein	0.8051529791
+UniRef50_K7RVQ7: Transporter, major facilitator family protein|g__Propionibacterium.s__Propionibacterium_acnes	0.8051529791
+UniRef50_S5FCD6: Portal protein	0.8051529791
+UniRef50_S5FCD6: Portal protein|g__Neisseria.s__Neisseria_meningitidis	0.8051529791
+UniRef50_UPI000470AC0A: hypothetical protein	0.8051285418
+UniRef50_UPI000470AC0A: hypothetical protein|unclassified	0.8051285418
+UniRef50_B4T6V0: Orotidine 5'-phosphate decarboxylase	0.8048606576
+UniRef50_B4T6V0: Orotidine 5'-phosphate decarboxylase|unclassified	0.8048606576
+UniRef50_Q28MG7	0.8047847339
+UniRef50_Q28MG7|unclassified	0.8047847339
+UniRef50_K8NEW5	0.8046361513
+UniRef50_K8NEW5|unclassified	0.8046361513
+UniRef50_B8GCA4	0.8045052293
+UniRef50_B8GCA4|unclassified	0.8045052293
+UniRef50_G8VEI8	0.8044654136
+UniRef50_G8VEI8|unclassified	0.8044654136
+UniRef50_R8ZJ12	0.8044262667
+UniRef50_R8ZJ12|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.8044262667
+UniRef50_U2ZS91	0.8042297443
+UniRef50_U2ZS91|unclassified	0.8042297443
+UniRef50_C0PFD5	0.8040844893
+UniRef50_C0PFD5|unclassified	0.8040844893
+UniRef50_Q9RUS5: Major facilitator family protein	0.8038585209
+UniRef50_Q9RUS5: Major facilitator family protein|g__Deinococcus.s__Deinococcus_radiodurans	0.8038585209
+UniRef50_UPI0003B39CC6: ABC transporter substrate-binding protein	0.8037072667
+UniRef50_UPI0003B39CC6: ABC transporter substrate-binding protein|unclassified	0.8037072667
+UniRef50_Q9RY06: Valine--tRNA ligase	0.8037036888
+UniRef50_Q9RY06: Valine--tRNA ligase|g__Deinococcus.s__Deinococcus_radiodurans	0.8037036888
+UniRef50_UPI00046D9649: hypothetical protein	0.8034358296
+UniRef50_UPI00046D9649: hypothetical protein|unclassified	0.8034358296
+UniRef50_D3UHV1: Type I restriction-modification system, restriction enzyme	0.8031839863
+UniRef50_D3UHV1: Type I restriction-modification system, restriction enzyme|g__Helicobacter.s__Helicobacter_pylori	0.8031839863
+UniRef50_A0A024HBA2: Lost Adherence Sensor, LadS	0.8028671479
+UniRef50_A0A024HBA2: Lost Adherence Sensor, LadS|unclassified	0.8028671479
+UniRef50_F3S635	0.8027713893
+UniRef50_F3S635|unclassified	0.8027713893
+UniRef50_UPI0003C8D5E5: PREDICTED: basic proline-rich protein-like	0.8026664305
+UniRef50_UPI0003C8D5E5: PREDICTED: basic proline-rich protein-like|unclassified	0.8026664305
+UniRef50_O06924: Acetyl-S-ACP:malonate ACP transferase	0.8025682183
+UniRef50_O06924: Acetyl-S-ACP:malonate ACP transferase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8025682183
+UniRef50_Q6ABX1: Replicative DNA helicase	0.8025682183
+UniRef50_Q6ABX1: Replicative DNA helicase|g__Propionibacterium.s__Propionibacterium_acnes	0.8025682183
+UniRef50_Q8REV7: Phosphoribosylamine--glycine ligase	0.8025682183
+UniRef50_Q8REV7: Phosphoribosylamine--glycine ligase|g__Clostridium.s__Clostridium_beijerinckii	0.8025682183
+UniRef50_K8CED6	0.8025284486
+UniRef50_K8CED6|unclassified	0.8025284486
+UniRef50_C7IYG9: Os02g0192900 protein (Fragment)	0.8024359136
+UniRef50_C7IYG9: Os02g0192900 protein (Fragment)|unclassified	0.8024359136
+UniRef50_K9ZZM6	0.8023211417
+UniRef50_K9ZZM6|unclassified	0.8023211417
+UniRef50_Q9L3H0	0.8023197515
+UniRef50_Q9L3H0|unclassified	0.8023197515
+UniRef50_A0A023KH31	0.8023171426
+UniRef50_A0A023KH31|unclassified	0.8023171426
+UniRef50_M4X3P8: L-threonine synthase	0.8022500841
+UniRef50_M4X3P8: L-threonine synthase|unclassified	0.8022500841
+UniRef50_X2MAW9: Membrane protein	0.8022384984
+UniRef50_X2MAW9: Membrane protein|unclassified	0.8022384984
+UniRef50_S5PEV4: 30S ribosomal S20 domain protein	0.8021912433
+UniRef50_S5PEV4: 30S ribosomal S20 domain protein|unclassified	0.8021912433
+UniRef50_A0A019DL59	0.8021561191
+UniRef50_A0A019DL59|unclassified	0.8021561191
+UniRef50_UPI0001FFDF12: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase, partial	0.8020914031
+UniRef50_UPI0001FFDF12: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase, partial|unclassified	0.8020914031
+UniRef50_UPI0003FE0AC9: dioxygenase	0.8020147410
+UniRef50_UPI0003FE0AC9: dioxygenase|unclassified	0.8020147410
+UniRef50_F7W5G6: WGS project CABT00000000 data, contig 2.30	0.8019777848
+UniRef50_F7W5G6: WGS project CABT00000000 data, contig 2.30|unclassified	0.8019777848
+UniRef50_A0A032FYG5	0.8019489813
+UniRef50_A0A032FYG5|unclassified	0.8019489813
+UniRef50_UPI0004669FC1: oxidoreductase	0.8019246191
+UniRef50_UPI0004669FC1: oxidoreductase|g__Acinetobacter.s__Acinetobacter_baumannii	0.8019246191
+UniRef50_A8AA22: Ribonuclease P protein component 1	0.8019182314
+UniRef50_A8AA22: Ribonuclease P protein component 1|unclassified	0.8019182314
+UniRef50_UPI000366202D: hypothetical protein	0.8018751320
+UniRef50_UPI000366202D: hypothetical protein|unclassified	0.8018751320
+UniRef50_D0X0E1: Stringent starvation protein A	0.8018603912
+UniRef50_D0X0E1: Stringent starvation protein A|unclassified	0.8018603912
+UniRef50_UPI00046F97FA: hypothetical protein	0.8017237119
+UniRef50_UPI00046F97FA: hypothetical protein|unclassified	0.8017237119
+UniRef50_UPI000466A9CB: transcriptional regulator	0.8015607270
+UniRef50_UPI000466A9CB: transcriptional regulator|unclassified	0.8015607270
+UniRef50_UPI0002EFB176: hypothetical protein	0.8015434182
+UniRef50_UPI0002EFB176: hypothetical protein|unclassified	0.8015434182
+UniRef50_M9RMU0	0.8014614285
+UniRef50_M9RMU0|unclassified	0.8014614285
+UniRef50_S6GG21	0.8013944414
+UniRef50_S6GG21|unclassified	0.8013944414
+UniRef50_I0KAK8: Major facilitator superfamily MFS_1	0.8012820513
+UniRef50_I0KAK8: Major facilitator superfamily MFS_1|g__Acinetobacter.s__Acinetobacter_baumannii	0.8012820513
+UniRef50_N9B926	0.8012820513
+UniRef50_N9B926|g__Acinetobacter.s__Acinetobacter_baumannii	0.8012820513
+UniRef50_O25751: Protein TolB	0.8012820513
+UniRef50_O25751: Protein TolB|g__Helicobacter.s__Helicobacter_pylori	0.8012820513
+UniRef50_J9NZJ3	0.8011602206
+UniRef50_J9NZJ3|unclassified	0.8011602206
+UniRef50_A0A022UDC9	0.8010723865
+UniRef50_A0A022UDC9|unclassified	0.8010723865
+UniRef50_Z5YCH8: Cupin	0.8010670562
+UniRef50_Z5YCH8: Cupin|unclassified	0.8010670562
+UniRef50_X0T5E9: Marine sediment metagenome DNA, contig: S01H1_S01831 (Fragment)	0.8008690913
+UniRef50_X0T5E9: Marine sediment metagenome DNA, contig: S01H1_S01831 (Fragment)|unclassified	0.8008690913
+UniRef50_UPI0002555FCD: imidazole glycerol phosphate synthase subunit HisH, partial	0.8007665063
+UniRef50_UPI0002555FCD: imidazole glycerol phosphate synthase subunit HisH, partial|unclassified	0.8007665063
+UniRef50_J7PFG8	0.8007202424
+UniRef50_J7PFG8|unclassified	0.8007202424
+UniRef50_B9E294	0.8006405124
+UniRef50_B9E294|g__Clostridium.s__Clostridium_beijerinckii	0.8006405124
+UniRef50_W5UZK5: UPF0235 protein AI22_01915	0.8006181164
+UniRef50_W5UZK5: UPF0235 protein AI22_01915|unclassified	0.8006181164
+UniRef50_UPI0003683EEF: acetolactate synthase	0.8005945922
+UniRef50_UPI0003683EEF: acetolactate synthase|unclassified	0.8005945922
+UniRef50_UPI0004423ADB	0.8003132023
+UniRef50_UPI0004423ADB|unclassified	0.8003132023
+UniRef50_S4TSA2: EndY	0.8003039593
+UniRef50_S4TSA2: EndY|unclassified	0.8003039593
+UniRef50_Q28PW2	0.8001973275
+UniRef50_Q28PW2|unclassified	0.8001973275
+UniRef50_Q0FX18	0.8001692189
+UniRef50_Q0FX18|unclassified	0.8001692189
+UniRef50_UPI000470B11D: hypothetical protein, partial	0.8000217343
+UniRef50_UPI000470B11D: hypothetical protein, partial|unclassified	0.8000217343
+UniRef50_C2LKT0	0.8000078459
+UniRef50_C2LKT0|unclassified	0.8000078459
+UniRef50_B2IBI5	0.8000000000
+UniRef50_B2IBI5|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.8000000000
+UniRef50_B9TEY2	0.7998409722
+UniRef50_B9TEY2|unclassified	0.7998409722
+UniRef50_UPI0003B421F4: GCN5 family acetyltransferase	0.7998306231
+UniRef50_UPI0003B421F4: GCN5 family acetyltransferase|unclassified	0.7998306231
+UniRef50_UPI000262CA60: putative metallo-beta-lactamase superfamily hydrolase	0.7998142595
+UniRef50_UPI000262CA60: putative metallo-beta-lactamase superfamily hydrolase|unclassified	0.7998142595
+UniRef50_R1H5T7: Peptide ABC transporter substrate-binding protein (Fragment)	0.7996613911
+UniRef50_R1H5T7: Peptide ABC transporter substrate-binding protein (Fragment)|unclassified	0.7996613911
+UniRef50_W2C810	0.7994054884
+UniRef50_W2C810|unclassified	0.7994054884
+UniRef50_D3PRK0: Phenylacetate--CoA ligase	0.7993605116
+UniRef50_D3PRK0: Phenylacetate--CoA ligase|g__Deinococcus.s__Deinococcus_radiodurans	0.7993605116
+UniRef50_Q9RSN4	0.7993605116
+UniRef50_Q9RSN4|g__Deinococcus.s__Deinococcus_radiodurans	0.7993605116
+UniRef50_F8J568	0.7993419814
+UniRef50_F8J568|unclassified	0.7993419814
+UniRef50_UPI0002485FE8: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	0.7992967911
+UniRef50_UPI0002485FE8: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.7992967911
+UniRef50_Q2G6B7	0.7990783165
+UniRef50_Q2G6B7|unclassified	0.7990783165
+UniRef50_UPI00037E70F7: transcriptional regulator	0.7990693653
+UniRef50_UPI00037E70F7: transcriptional regulator|unclassified	0.7990693653
+UniRef50_UPI000441C70A: PREDICTED: bromodomain and WD repeat-containing protein 3-like	0.7990397380
+UniRef50_UPI000441C70A: PREDICTED: bromodomain and WD repeat-containing protein 3-like|unclassified	0.7990397380
+UniRef50_F5LXH0	0.7990360905
+UniRef50_F5LXH0|unclassified	0.7990360905
+UniRef50_UPI000328DEDF: PREDICTED: basic proline-rich protein-like	0.7989982123
+UniRef50_UPI000328DEDF: PREDICTED: basic proline-rich protein-like|unclassified	0.7989982123
+UniRef50_H8XBT8: Recombinase A (Fragment)	0.7989540574
+UniRef50_H8XBT8: Recombinase A (Fragment)|unclassified	0.7989540574
+UniRef50_Q9K1M6	0.7989447329
+UniRef50_Q9K1M6|unclassified	0.7989447329
+UniRef50_UPI00047C0019: ABC transporter permease	0.7988764722
+UniRef50_UPI00047C0019: ABC transporter permease|unclassified	0.7988764722
+UniRef50_A9MFX7: Anaerobic nitric oxide reductase transcription regulator NorR	0.7988743860
+UniRef50_A9MFX7: Anaerobic nitric oxide reductase transcription regulator NorR|g__Escherichia.s__Escherichia_coli	0.6835269993
+UniRef50_A9MFX7: Anaerobic nitric oxide reductase transcription regulator NorR|unclassified	0.1153473867
+UniRef50_K7L3D1	0.7987495040
+UniRef50_K7L3D1|unclassified	0.7987495040
+UniRef50_UPI00046728C3: hypothetical protein	0.7987253793
+UniRef50_UPI00046728C3: hypothetical protein|unclassified	0.7987253793
+UniRef50_K0DBQ7: N-acetylmuramidase	0.7987220447
+UniRef50_K0DBQ7: N-acetylmuramidase|unclassified	0.7987220447
+UniRef50_F4QXZ3: Ribonuclease BN-like family protein	0.7986400447
+UniRef50_F4QXZ3: Ribonuclease BN-like family protein|unclassified	0.7986400447
+UniRef50_UPI000255D4C6: ferredoxin-NADP(+) reductase subunit alpha	0.7986355893
+UniRef50_UPI000255D4C6: ferredoxin-NADP(+) reductase subunit alpha|unclassified	0.7986355893
+UniRef50_UPI000478557C: carbon monoxide dehydrogenase	0.7986291755
+UniRef50_UPI000478557C: carbon monoxide dehydrogenase|unclassified	0.7986291755
+UniRef50_A3ZLA9: Phosphocarrier protein HPr	0.7985232242
+UniRef50_A3ZLA9: Phosphocarrier protein HPr|unclassified	0.7985232242
+UniRef50_UPI0003B707A7: XRE family transcriptional regulator	0.7984823774
+UniRef50_UPI0003B707A7: XRE family transcriptional regulator|unclassified	0.7984823774
+UniRef50_UPI0001B4443E: naphthoate synthase	0.7981993925
+UniRef50_UPI0001B4443E: naphthoate synthase|unclassified	0.7981993925
+UniRef50_B7L610	0.7979942114
+UniRef50_B7L610|unclassified	0.7979942114
+UniRef50_B5GQG9	0.7978579905
+UniRef50_B5GQG9|unclassified	0.7978579905
+UniRef50_UPI00036CD6B7: hypothetical protein	0.7977953029
+UniRef50_UPI00036CD6B7: hypothetical protein|unclassified	0.7977953029
+UniRef50_UPI0003B2F361: ribose-phosphate pyrophosphokinase	0.7977875282
+UniRef50_UPI0003B2F361: ribose-phosphate pyrophosphokinase|unclassified	0.7977875282
+UniRef50_A0ZBL0	0.7977843527
+UniRef50_A0ZBL0|unclassified	0.7977843527
+UniRef50_D3P4F2	0.7977742677
+UniRef50_D3P4F2|unclassified	0.7977742677
+UniRef50_L0Q2L3	0.7977461910
+UniRef50_L0Q2L3|unclassified	0.7977461910
+UniRef50_Q02RZ4	0.7976784961
+UniRef50_Q02RZ4|unclassified	0.7976784961
+UniRef50_W4RKS3: LmbE family protein	0.7974693594
+UniRef50_W4RKS3: LmbE family protein|unclassified	0.7974693594
+UniRef50_T0T886: Guanine deaminase	0.7974481659
+UniRef50_T0T886: Guanine deaminase|g__Clostridium.s__Clostridium_beijerinckii	0.7974481659
+UniRef50_B9NWB2: Proline dehydrogenase transcriptional activator	0.7974389363
+UniRef50_B9NWB2: Proline dehydrogenase transcriptional activator|unclassified	0.7974389363
+UniRef50_UPI000350FEA2: PREDICTED: popeye domain-containing protein 2, partial	0.7974033113
+UniRef50_UPI000350FEA2: PREDICTED: popeye domain-containing protein 2, partial|unclassified	0.7974033113
+UniRef50_W5W9B3	0.7972986938
+UniRef50_W5W9B3|unclassified	0.7972986938
+UniRef50_UPI0003757D0F: MULTISPECIES: hypothetical protein	0.7972264091
+UniRef50_UPI0003757D0F: MULTISPECIES: hypothetical protein|unclassified	0.7972264091
+UniRef50_UPI0004754AB7: hypothetical protein	0.7972011489
+UniRef50_UPI0004754AB7: hypothetical protein|unclassified	0.7972011489
+UniRef50_A8LNJ9: Flagellar biosynthesis regulatory protein FlaF	0.7971334284
+UniRef50_A8LNJ9: Flagellar biosynthesis regulatory protein FlaF|unclassified	0.7971334284
+UniRef50_UPI00047E0F2D: hypothetical protein	0.7971172760
+UniRef50_UPI00047E0F2D: hypothetical protein|unclassified	0.7971172760
+UniRef50_N8HD04	0.7969009021
+UniRef50_N8HD04|unclassified	0.7969009021
+UniRef50_M1M1B1: PTS system maltose-and glucose-specific EIICB component MalX	0.7968127490
+UniRef50_M1M1B1: PTS system maltose-and glucose-specific EIICB component MalX|g__Clostridium.s__Clostridium_beijerinckii	0.7968127490
+UniRef50_P78937: Sulfate adenylyltransferase	0.7966201478
+UniRef50_P78937: Sulfate adenylyltransferase|unclassified	0.7966201478
+UniRef50_UPI000225BC86: 50S ribosomal protein L15	0.7963101569
+UniRef50_UPI000225BC86: 50S ribosomal protein L15|unclassified	0.7963101569
+UniRef50_Q11LY2: Protein tyrosine phosphatase	0.7962388138
+UniRef50_Q11LY2: Protein tyrosine phosphatase|unclassified	0.7962388138
+UniRef50_A7MH69	0.7962126966
+UniRef50_A7MH69|unclassified	0.7962126966
+UniRef50_A6LWI8: Aluminium resistance family protein	0.7961783439
+UniRef50_A6LWI8: Aluminium resistance family protein|g__Clostridium.s__Clostridium_beijerinckii	0.7961783439
+UniRef50_F9YYK5: Conserved membrane-spanning protein	0.7961783439
+UniRef50_F9YYK5: Conserved membrane-spanning protein|g__Propionibacterium.s__Propionibacterium_acnes	0.7961783439
+UniRef50_S9TMR0: LigA	0.7961783439
+UniRef50_S9TMR0: LigA|unclassified	0.7961783439
+UniRef50_Q9RXZ7	0.7961642483
+UniRef50_Q9RXZ7|unclassified	0.7961642483
+UniRef50_A8Q1C8	0.7958363116
+UniRef50_A8Q1C8|unclassified	0.7958363116
+UniRef50_UPI0003FA220E: DNA-directed RNA polymerase subunit sigma	0.7958044427
+UniRef50_UPI0003FA220E: DNA-directed RNA polymerase subunit sigma|unclassified	0.7958044427
+UniRef50_N6V4N6	0.7956323907
+UniRef50_N6V4N6|unclassified	0.7956323907
+UniRef50_S9TK86	0.7955449483
+UniRef50_S9TK86|unclassified	0.7955449483
+UniRef50_Q28V62	0.7954770067
+UniRef50_Q28V62|unclassified	0.7954770067
+UniRef50_D9RHZ2	0.7954612086
+UniRef50_D9RHZ2|unclassified	0.7954612086
+UniRef50_R6XMV8	0.7954367886
+UniRef50_R6XMV8|unclassified	0.7954367886
+UniRef50_UPI0003AF73D9: PREDICTED: vegetative cell wall protein gp1-like	0.7952461722
+UniRef50_UPI0003AF73D9: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.7952461722
+UniRef50_Q9M5K2-2: Isoform 2 of Dihydrolipoyl dehydrogenase 2, mitochondrial	0.7951831485
+UniRef50_Q9M5K2-2: Isoform 2 of Dihydrolipoyl dehydrogenase 2, mitochondrial|unclassified	0.7951831485
+UniRef50_Q0TBQ6	0.7951703729
+UniRef50_Q0TBQ6|unclassified	0.7951703729
+UniRef50_X0TUW0: Marine sediment metagenome DNA, contig: S01H1_L10270 (Fragment)	0.7950794949
+UniRef50_X0TUW0: Marine sediment metagenome DNA, contig: S01H1_L10270 (Fragment)|unclassified	0.7950794949
+UniRef50_K4QD57	0.7950214900
+UniRef50_K4QD57|unclassified	0.7950214900
+UniRef50_R8AJR3: Oligopeptide ABC transporter permease	0.7949734755
+UniRef50_R8AJR3: Oligopeptide ABC transporter permease|unclassified	0.7949734755
+UniRef50_UPI00037B955D: biopolymer transporter TolR, partial	0.7948235822
+UniRef50_UPI00037B955D: biopolymer transporter TolR, partial|unclassified	0.7948235822
+UniRef50_UPI0003805D01: hypothetical protein, partial	0.7947840215
+UniRef50_UPI0003805D01: hypothetical protein, partial|unclassified	0.7947840215
+UniRef50_M3F5N1	0.7947614382
+UniRef50_M3F5N1|unclassified	0.7947614382
+UniRef50_UPI0003B33B7C: DNA-binding protein	0.7947289120
+UniRef50_UPI0003B33B7C: DNA-binding protein|unclassified	0.7947289120
+UniRef50_P96962	0.7947169522
+UniRef50_P96962|unclassified	0.7947169522
+UniRef50_B3QAR0: UPF0260 protein Rpal_2074	0.7945070376
+UniRef50_B3QAR0: UPF0260 protein Rpal_2074|unclassified	0.7945070376
+UniRef50_UPI000248D49D: serine/threonine protein kinase	0.7943788118
+UniRef50_UPI000248D49D: serine/threonine protein kinase|unclassified	0.7943788118
+UniRef50_UPI000255E3EB: 1-deoxy-D-xylulose 5-phosphate reductoisomerase	0.7942967493
+UniRef50_UPI000255E3EB: 1-deoxy-D-xylulose 5-phosphate reductoisomerase|unclassified	0.7942967493
+UniRef50_F3R5J1	0.7942849352
+UniRef50_F3R5J1|unclassified	0.7942849352
+UniRef50_UPI00047CDC95: hypothetical protein	0.7942528240
+UniRef50_UPI00047CDC95: hypothetical protein|unclassified	0.7942528240
+UniRef50_UPI0001B412E7: histidine transporter permease	0.7942251768
+UniRef50_UPI0001B412E7: histidine transporter permease|unclassified	0.7942251768
+UniRef50_W4WUV4	0.7942143620
+UniRef50_W4WUV4|unclassified	0.7942143620
+UniRef50_R6AFM4: Transposase	0.7942072528
+UniRef50_R6AFM4: Transposase|unclassified	0.7942072528
+UniRef50_UPI0003492E3B: hypothetical protein	0.7941572722
+UniRef50_UPI0003492E3B: hypothetical protein|unclassified	0.7941572722
+UniRef50_M1FVA7: Mobilization protein	0.7941205420
+UniRef50_M1FVA7: Mobilization protein|unclassified	0.7941205420
+UniRef50_UPI0002000114: hypothetical protein	0.7940805450
+UniRef50_UPI0002000114: hypothetical protein|unclassified	0.7940805450
+UniRef50_F0KZE2: FAD-dependent pyridine nucleotide-disulfide oxidoreductase	0.7940731556
+UniRef50_F0KZE2: FAD-dependent pyridine nucleotide-disulfide oxidoreductase|unclassified	0.7940731556
+UniRef50_UPI00046960A8: nickel ABC transporter permease	0.7939849522
+UniRef50_UPI00046960A8: nickel ABC transporter permease|unclassified	0.7939849522
+UniRef50_Z4VVL5	0.7939337766
+UniRef50_Z4VVL5|unclassified	0.7939337766
+UniRef50_Q656C3: Paramyosin-like	0.7939283217
+UniRef50_Q656C3: Paramyosin-like|unclassified	0.7939283217
+UniRef50_UPI0002376597: hypothetical protein, partial	0.7938691020
+UniRef50_UPI0002376597: hypothetical protein, partial|unclassified	0.7938691020
+UniRef50_A0A023RXG6: Poly(A) polymerase	0.7936507937
+UniRef50_A0A023RXG6: Poly(A) polymerase|g__Acinetobacter.s__Acinetobacter_baumannii	0.7936507937
+UniRef50_Q82F74: Probable M18 family aminopeptidase 2	0.7936507937
+UniRef50_Q82F74: Probable M18 family aminopeptidase 2|g__Propionibacterium.s__Propionibacterium_acnes	0.7936507937
+UniRef50_S1SVV1	0.7936507937
+UniRef50_S1SVV1|unclassified	0.7936507937
+UniRef50_Q9RZN7: Potassium-transporting ATPase A chain	0.7936127139
+UniRef50_Q9RZN7: Potassium-transporting ATPase A chain|unclassified	0.7936127139
+UniRef50_G5QT65: Iron-sulfur cluster-binding protein	0.7935661696
+UniRef50_G5QT65: Iron-sulfur cluster-binding protein|unclassified	0.7935661696
+UniRef50_Q4ZZY5	0.7935576971
+UniRef50_Q4ZZY5|unclassified	0.7935576971
+UniRef50_V2DIK1	0.7935157123
+UniRef50_V2DIK1|unclassified	0.7935157123
+UniRef50_UPI00036D23D9: hypothetical protein, partial	0.7933556672
+UniRef50_UPI00036D23D9: hypothetical protein, partial|unclassified	0.7933556672
+UniRef50_UPI0003735C72: hypothetical protein	0.7933486413
+UniRef50_UPI0003735C72: hypothetical protein|unclassified	0.7933486413
+UniRef50_D0CPW3: Drug resistance transporter, Bcr/CflA subfamily	0.7932961166
+UniRef50_D0CPW3: Drug resistance transporter, Bcr/CflA subfamily|unclassified	0.7932961166
+UniRef50_D5RLD6	0.7932133919
+UniRef50_D5RLD6|unclassified	0.7932133919
+UniRef50_UPI000361C5D8: hypothetical protein	0.7931149640
+UniRef50_UPI000361C5D8: hypothetical protein|unclassified	0.7931149640
+UniRef50_UPI00035142FA: PREDICTED: vegetative cell wall protein gp1-like	0.7929999977
+UniRef50_UPI00035142FA: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.7929999977
+UniRef50_UPI0004752FC3: thiamine-phosphate pyrophosphorylase	0.7928303464
+UniRef50_UPI0004752FC3: thiamine-phosphate pyrophosphorylase|unclassified	0.7928303464
+UniRef50_E6J991: Metallophosphoesterase (Fragment)	0.7928159834
+UniRef50_E6J991: Metallophosphoesterase (Fragment)|unclassified	0.7928159834
+UniRef50_UPI0004656A3F: hypothetical protein	0.7927815677
+UniRef50_UPI0004656A3F: hypothetical protein|unclassified	0.7927815677
+UniRef50_A0QVM6	0.7927781313
+UniRef50_A0QVM6|unclassified	0.7927781313
+UniRef50_B8PEE3: Predicted protein	0.7926922673
+UniRef50_B8PEE3: Predicted protein|unclassified	0.7926922673
+UniRef50_U7IBM4	0.7926784945
+UniRef50_U7IBM4|unclassified	0.7926784945
+UniRef50_G7RB59	0.7926422601
+UniRef50_G7RB59|unclassified	0.7926422601
+UniRef50_B2TNM6: DNA polymerase	0.7926054884
+UniRef50_B2TNM6: DNA polymerase|g__Clostridium.s__Clostridium_beijerinckii	0.7926054884
+UniRef50_UPI0003EB3D6E: hypothetical protein	0.7925365648
+UniRef50_UPI0003EB3D6E: hypothetical protein|unclassified	0.7925365648
+UniRef50_W7VTK1: Transporter, EamA family (Fragment)	0.7925159977
+UniRef50_W7VTK1: Transporter, EamA family (Fragment)|unclassified	0.7925159977
+UniRef50_H8GMP1: Arylsulfotransferase (ASST)	0.7923930269
+UniRef50_H8GMP1: Arylsulfotransferase (ASST)|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7923930269
+UniRef50_E5ALT8: UvrABC system protein A	0.7922869334
+UniRef50_E5ALT8: UvrABC system protein A|g__Neisseria.s__Neisseria_meningitidis	0.7922869334
+UniRef50_D1DH09: Glyoxalase	0.7921840771
+UniRef50_D1DH09: Glyoxalase|unclassified	0.7921840771
+UniRef50_V4QWV9	0.7920717651
+UniRef50_V4QWV9|unclassified	0.7920717651
+UniRef50_T2E4I0: Permease for cytosine/purine, uracil, thiamine, allantoin family protein	0.7917656374
+UniRef50_T2E4I0: Permease for cytosine/purine, uracil, thiamine, allantoin family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7917656374
+UniRef50_UPI00041B1E94: arabinose ABC transporter permease	0.7917656374
+UniRef50_UPI00041B1E94: arabinose ABC transporter permease|unclassified	0.7917656374
+UniRef50_D2BB98: Fibrocystin-L-like protein	0.7917561728
+UniRef50_D2BB98: Fibrocystin-L-like protein|unclassified	0.7917561728
+UniRef50_X1A5X7: Marine sediment metagenome DNA, contig: S01H4_S00936	0.7916948823
+UniRef50_X1A5X7: Marine sediment metagenome DNA, contig: S01H4_S00936|unclassified	0.7916948823
+UniRef50_UPI00037660D4: hypothetical protein	0.7916370158
+UniRef50_UPI00037660D4: hypothetical protein|unclassified	0.7916370158
+UniRef50_F7Z9W9: Transposase	0.7916043957
+UniRef50_F7Z9W9: Transposase|unclassified	0.7916043957
+UniRef50_UPI000362161D: MULTISPECIES: hypothetical protein	0.7914850424
+UniRef50_UPI000362161D: MULTISPECIES: hypothetical protein|unclassified	0.7914850424
+UniRef50_UPI00044199D7: PREDICTED: acetylglutamate kinase, chloroplastic-like	0.7913262335
+UniRef50_UPI00044199D7: PREDICTED: acetylglutamate kinase, chloroplastic-like|unclassified	0.7913262335
+UniRef50_W4UC70	0.7911479294
+UniRef50_W4UC70|unclassified	0.7911479294
+UniRef50_A0A023YJF5	0.7911392405
+UniRef50_A0A023YJF5|g__Escherichia.s__Escherichia_coli	0.7911392405
+UniRef50_D8JJP8	0.7911392405
+UniRef50_D8JJP8|g__Acinetobacter.s__Acinetobacter_baumannii	0.7911392405
+UniRef50_O25294: Cytosol aminopeptidase	0.7911392405
+UniRef50_O25294: Cytosol aminopeptidase|g__Helicobacter.s__Helicobacter_pylori	0.7911392405
+UniRef50_Q1Q8I7: Arginine--tRNA ligase	0.7911367202
+UniRef50_Q1Q8I7: Arginine--tRNA ligase|g__Acinetobacter.s__Acinetobacter_baumannii	0.7656967841
+UniRef50_Q1Q8I7: Arginine--tRNA ligase|unclassified	0.0254399361
+UniRef50_UPI00036753B4: hypothetical protein, partial	0.7911151716
+UniRef50_UPI00036753B4: hypothetical protein, partial|unclassified	0.7911151716
+UniRef50_A4X3E5: Peptide methionine sulfoxide reductase MsrA	0.7909966342
+UniRef50_A4X3E5: Peptide methionine sulfoxide reductase MsrA|unclassified	0.7909966342
+UniRef50_UPI00036D80D0: hypothetical protein	0.7909325557
+UniRef50_UPI00036D80D0: hypothetical protein|unclassified	0.7909325557
+UniRef50_UPI00035C36AF: hypothetical protein	0.7909291988
+UniRef50_UPI00035C36AF: hypothetical protein|unclassified	0.7909291988
+UniRef50_A0A022GZQ6: LacI family transcriptional regulator	0.7907153003
+UniRef50_A0A022GZQ6: LacI family transcriptional regulator|unclassified	0.7907153003
+UniRef50_UPI000367DEE0: hypothetical protein	0.7905952593
+UniRef50_UPI000367DEE0: hypothetical protein|unclassified	0.7905952593
+UniRef50_D9VIN2: Predicted protein	0.7905387015
+UniRef50_D9VIN2: Predicted protein|unclassified	0.7905387015
+UniRef50_UPI00044223D8	0.7905138340
+UniRef50_UPI00044223D8|unclassified	0.7905138340
+UniRef50_C4J3B6	0.7901343139
+UniRef50_C4J3B6|unclassified	0.7901343139
+UniRef50_A3W206: ISxcd1 transposase	0.7900405250
+UniRef50_A3W206: ISxcd1 transposase|unclassified	0.7900405250
+UniRef50_P64474	0.7900232731
+UniRef50_P64474|unclassified	0.7900232731
+UniRef50_K6LK64: Diguanylate cyclase (GGDEF) domain protein	0.7898894155
+UniRef50_K6LK64: Diguanylate cyclase (GGDEF) domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.7898894155
+UniRef50_UPI00046D5513: hypothetical protein	0.7898894155
+UniRef50_UPI00046D5513: hypothetical protein|unclassified	0.7898894155
+UniRef50_UPI0003781EF8: hypothetical protein	0.7897397955
+UniRef50_UPI0003781EF8: hypothetical protein|unclassified	0.7897397955
+UniRef50_Q9RQW2: Holo-[acyl-carrier-protein] synthase	0.7897287038
+UniRef50_Q9RQW2: Holo-[acyl-carrier-protein] synthase|unclassified	0.7897287038
+UniRef50_UPI00037179CA: hypothetical protein	0.7897254721
+UniRef50_UPI00037179CA: hypothetical protein|unclassified	0.7897254721
+UniRef50_W7J199: MerR family transcripitonal regulator	0.7896977627
+UniRef50_W7J199: MerR family transcripitonal regulator|unclassified	0.7896977627
+UniRef50_F6DWW3: HNH nuclease	0.7894838347
+UniRef50_F6DWW3: HNH nuclease|unclassified	0.7894838347
+UniRef50_UPI00042AFCA9: 3-deoxy-d-arabino-heptulosonate 7-phosphate synthase isoform 2	0.7894328774
+UniRef50_UPI00042AFCA9: 3-deoxy-d-arabino-heptulosonate 7-phosphate synthase isoform 2|unclassified	0.7894328774
+UniRef50_UPI00035D2406: hypothetical protein	0.7893585694
+UniRef50_UPI00035D2406: hypothetical protein|unclassified	0.7893585694
+UniRef50_I2FAM9: Serine protease Do	0.7892659826
+UniRef50_I2FAM9: Serine protease Do|g__Helicobacter.s__Helicobacter_pylori	0.7892659826
+UniRef50_Q6FD51: Aminopeptidase P	0.7892659826
+UniRef50_Q6FD51: Aminopeptidase P|g__Acinetobacter.s__Acinetobacter_baumannii	0.7892659826
+UniRef50_UPI00035C78B7: hypothetical protein	0.7891912381
+UniRef50_UPI00035C78B7: hypothetical protein|unclassified	0.7891912381
+UniRef50_UPI00046F3952: hypothetical protein	0.7891700684
+UniRef50_UPI00046F3952: hypothetical protein|unclassified	0.7891700684
+UniRef50_M2H7B4: Transposase	0.7890699863
+UniRef50_M2H7B4: Transposase|unclassified	0.7890699863
+UniRef50_M3E157: Electron transfer flavoprotein, alpha subunit family protein (Fragment)	0.7889616350
+UniRef50_M3E157: Electron transfer flavoprotein, alpha subunit family protein (Fragment)|unclassified	0.7889616350
+UniRef50_UPI000475E3B9: heme iron utilization protein	0.7889428929
+UniRef50_UPI000475E3B9: heme iron utilization protein|unclassified	0.7889428929
+UniRef50_UPI0003EDD9CA: hypothetical protein, partial	0.7888812053
+UniRef50_UPI0003EDD9CA: hypothetical protein, partial|unclassified	0.7888812053
+UniRef50_UPI0003B36F4D: deoxyguanosinetriphosphate triphosphohydrolase	0.7888419239
+UniRef50_UPI0003B36F4D: deoxyguanosinetriphosphate triphosphohydrolase|unclassified	0.7888419239
+UniRef50_UPI00046E921E: hypothetical protein, partial	0.7888393921
+UniRef50_UPI00046E921E: hypothetical protein, partial|unclassified	0.7888393921
+UniRef50_D9QKI5: Ribonuclease BN	0.7887620519
+UniRef50_D9QKI5: Ribonuclease BN|unclassified	0.7887620519
+UniRef50_V9U6W0	0.7886464803
+UniRef50_V9U6W0|unclassified	0.7886464803
+UniRef50_UPI00031F67D7: hypothetical protein	0.7886444169
+UniRef50_UPI00031F67D7: hypothetical protein|unclassified	0.7886444169
+UniRef50_B2I0W8	0.7886435331
+UniRef50_B2I0W8|g__Acinetobacter.s__Acinetobacter_baumannii	0.7886435331
+UniRef50_G7U7Z2	0.7886435331
+UniRef50_G7U7Z2|g__Propionibacterium.s__Propionibacterium_acnes	0.7886435331
+UniRef50_UPI000475E34B: hypothetical protein	0.7885025177
+UniRef50_UPI000475E34B: hypothetical protein|unclassified	0.7885025177
+UniRef50_R4VU54	0.7884684518
+UniRef50_R4VU54|unclassified	0.7884684518
+UniRef50_G6XLM0	0.7884606525
+UniRef50_G6XLM0|unclassified	0.7884606525
+UniRef50_Q013E6: WGS project CAID00000000 data, contig chromosome 08	0.7882314318
+UniRef50_Q013E6: WGS project CAID00000000 data, contig chromosome 08|unclassified	0.7882314318
+UniRef50_R4M4J0	0.7882147257
+UniRef50_R4M4J0|unclassified	0.7882147257
+UniRef50_Q8X2E9	0.7881691659
+UniRef50_Q8X2E9|unclassified	0.7881691659
+UniRef50_K2CSP0	0.7880999465
+UniRef50_K2CSP0|unclassified	0.7880999465
+UniRef50_V4QES1	0.7880749307
+UniRef50_V4QES1|unclassified	0.7880749307
+UniRef50_A6LWZ6: Response regulator receiver sensor signal transduction histidine kinase	0.7880220646
+UniRef50_A6LWZ6: Response regulator receiver sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	0.7880220646
+UniRef50_Q3SF48: DEAD/DEAH box helicase	0.7880220646
+UniRef50_Q3SF48: DEAD/DEAH box helicase|g__Neisseria.s__Neisseria_meningitidis	0.7880220646
+UniRef50_S6AFF6	0.7880220646
+UniRef50_S6AFF6|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7880220646
+UniRef50_UPI000466E4C2: hypothetical protein	0.7880220646
+UniRef50_UPI000466E4C2: hypothetical protein|unclassified	0.7880220646
+UniRef50_UPI000380609D: hypothetical protein	0.7879150211
+UniRef50_UPI000380609D: hypothetical protein|unclassified	0.7879150211
+UniRef50_U6LUD4	0.7878937942
+UniRef50_U6LUD4|unclassified	0.7878937942
+UniRef50_UPI00030EA14C: hypothetical protein	0.7877637531
+UniRef50_UPI00030EA14C: hypothetical protein|unclassified	0.7877637531
+UniRef50_Q9JTG4: Alanine--tRNA ligase	0.7876902346
+UniRef50_Q9JTG4: Alanine--tRNA ligase|g__Neisseria.s__Neisseria_meningitidis	0.7876902346
+UniRef50_V0PR47: Pyruvate:ferredoxin (Flavodoxin) oxidoreductase	0.7875828997
+UniRef50_V0PR47: Pyruvate:ferredoxin (Flavodoxin) oxidoreductase|unclassified	0.7875828997
+UniRef50_UPI000366C8C1: hypothetical protein	0.7875543927
+UniRef50_UPI000366C8C1: hypothetical protein|unclassified	0.7875543927
+UniRef50_UPI00035D0467: hypothetical protein, partial	0.7875517754
+UniRef50_UPI00035D0467: hypothetical protein, partial|unclassified	0.7875517754
+UniRef50_A8FXN6	0.7875511347
+UniRef50_A8FXN6|unclassified	0.7875511347
+UniRef50_Q9JTK4: Lactoferrin-binding protein A	0.7875242156
+UniRef50_Q9JTK4: Lactoferrin-binding protein A|g__Neisseria.s__Neisseria_meningitidis	0.7875242156
+UniRef50_J9PAF5	0.7874015748
+UniRef50_J9PAF5|unclassified	0.7874015748
+UniRef50_K1PJX9	0.7874015748
+UniRef50_K1PJX9|unclassified	0.7874015748
+UniRef50_B6B8P2	0.7873994015
+UniRef50_B6B8P2|unclassified	0.7873994015
+UniRef50_UPI0004765628: NADH-quinone oxidoreductase subunit K	0.7873260990
+UniRef50_UPI0004765628: NADH-quinone oxidoreductase subunit K|unclassified	0.7873260990
+UniRef50_K9BES8: Type I secretion C-terminal target domain protein, VC_A0849 subclass family	0.7871749588
+UniRef50_K9BES8: Type I secretion C-terminal target domain protein, VC_A0849 subclass family|g__Acinetobacter.s__Acinetobacter_baumannii	0.7871749588
+UniRef50_R0WMM8: Dehydrogenase E1 component family protein	0.7871335183
+UniRef50_R0WMM8: Dehydrogenase E1 component family protein|g__Neisseria.s__Neisseria_meningitidis	0.7871335183
+UniRef50_A3PLU4: Holliday junction ATP-dependent DNA helicase RuvA	0.7870040464
+UniRef50_A3PLU4: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.7870040464
+UniRef50_U9BU01	0.7869975127
+UniRef50_U9BU01|unclassified	0.7869975127
+UniRef50_E6KS29	0.7869333822
+UniRef50_E6KS29|unclassified	0.7869333822
+UniRef50_Z2DIM1	0.7868107645
+UniRef50_Z2DIM1|unclassified	0.7868107645
+UniRef50_UPI0003055179: hypothetical protein	0.7868099961
+UniRef50_UPI0003055179: hypothetical protein|unclassified	0.7868099961
+UniRef50_C8VDQ3: Putative glutathione-dependent formaldehyde-activating enzyme	0.7868045206
+UniRef50_C8VDQ3: Putative glutathione-dependent formaldehyde-activating enzyme|unclassified	0.7868045206
+UniRef50_W1CMV1: Branched-chain amino acid transport system carrier protein	0.7867820614
+UniRef50_W1CMV1: Branched-chain amino acid transport system carrier protein|g__Escherichia.s__Escherichia_coli	0.7867820614
+UniRef50_UPI000370F38A: hypothetical protein	0.7867648105
+UniRef50_UPI000370F38A: hypothetical protein|unclassified	0.7867648105
+UniRef50_R4WLV3	0.7866788866
+UniRef50_R4WLV3|unclassified	0.7866788866
+UniRef50_A3V189	0.7866744506
+UniRef50_A3V189|unclassified	0.7866744506
+UniRef50_L6SRA9: Flavodoxin FldB (Fragment)	0.7866512828
+UniRef50_L6SRA9: Flavodoxin FldB (Fragment)|unclassified	0.7866512828
+UniRef50_A1IRN6	0.7866438871
+UniRef50_A1IRN6|unclassified	0.7866438871
+UniRef50_G2IYD8: Diheme cytochrome c	0.7866404451
+UniRef50_G2IYD8: Diheme cytochrome c|unclassified	0.7866404451
+UniRef50_UPI0003745614: hypothetical protein	0.7865390351
+UniRef50_UPI0003745614: hypothetical protein|unclassified	0.7865390351
+UniRef50_J2K6A4: 6-pyruvoyl-tetrahydropterin synthase	0.7864723875
+UniRef50_J2K6A4: 6-pyruvoyl-tetrahydropterin synthase|unclassified	0.7864723875
+UniRef50_UPI0000164C98: putative transposase, partial	0.7864716480
+UniRef50_UPI0000164C98: putative transposase, partial|unclassified	0.7864716480
+UniRef50_UPI00036584E9: hypothetical protein	0.7864710899
+UniRef50_UPI00036584E9: hypothetical protein|unclassified	0.7864710899
+UniRef50_E5U1T9	0.7862182867
+UniRef50_E5U1T9|unclassified	0.7862182867
+UniRef50_A3PGB9: Two component, sigma54 specific, transcriptional regulator, Fis family	0.7861635220
+UniRef50_A3PGB9: Two component, sigma54 specific, transcriptional regulator, Fis family|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.7861635220
+UniRef50_M1MSP8: Lactose-binding protein LacE	0.7861635220
+UniRef50_M1MSP8: Lactose-binding protein LacE|g__Clostridium.s__Clostridium_beijerinckii	0.7861635220
+UniRef50_V7ZKK9: Glutamate synthase, beta subunit	0.7861635220
+UniRef50_V7ZKK9: Glutamate synthase, beta subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7861635220
+UniRef50_UPI00046FBD60: zinc ABC transporter permease	0.7861289891
+UniRef50_UPI00046FBD60: zinc ABC transporter permease|unclassified	0.7861289891
+UniRef50_Q5QW41	0.7861084597
+UniRef50_Q5QW41|unclassified	0.7861084597
+UniRef50_U7NZN5	0.7860074991
+UniRef50_U7NZN5|unclassified	0.7860074991
+UniRef50_UPI000474CF85: hypothetical protein, partial	0.7859579956
+UniRef50_UPI000474CF85: hypothetical protein, partial|unclassified	0.7859579956
+UniRef50_UPI00037CA56D: hypothetical protein	0.7859033233
+UniRef50_UPI00037CA56D: hypothetical protein|unclassified	0.7859033233
+UniRef50_UPI0002B483E1: PREDICTED: translation factor GUF1 homolog, chloroplastic-like	0.7858988540
+UniRef50_UPI0002B483E1: PREDICTED: translation factor GUF1 homolog, chloroplastic-like|unclassified	0.7858988540
+UniRef50_G1Y2K2	0.7857932589
+UniRef50_G1Y2K2|unclassified	0.7857932589
+UniRef50_D5CC62	0.7855973416
+UniRef50_D5CC62|unclassified	0.7855973416
+UniRef50_UPI00031ED78D: hypothetical protein	0.7855480826
+UniRef50_UPI00031ED78D: hypothetical protein|unclassified	0.7855480826
+UniRef50_D4JWQ1: Seryl-tRNA synthetase	0.7855459544
+UniRef50_D4JWQ1: Seryl-tRNA synthetase|g__Clostridium.s__Clostridium_beijerinckii	0.7855459544
+UniRef50_Q2YI46: Streptokinase-like protein	0.7855459544
+UniRef50_Q2YI46: Streptokinase-like protein|g__Streptococcus.s__Streptococcus_agalactiae	0.7855459544
+UniRef50_Q9JXS4: Membrane protein insertase YidC	0.7855459544
+UniRef50_Q9JXS4: Membrane protein insertase YidC|g__Neisseria.s__Neisseria_meningitidis	0.7855459544
+UniRef50_W8EKH5: Fatty acid--CoA ligase	0.7855459544
+UniRef50_W8EKH5: Fatty acid--CoA ligase|g__Acinetobacter.s__Acinetobacter_baumannii	0.7855459544
+UniRef50_I4CUW0	0.7854922734
+UniRef50_I4CUW0|unclassified	0.7854922734
+UniRef50_UPI00037F1EED: hypothetical protein	0.7853524617
+UniRef50_UPI00037F1EED: hypothetical protein|unclassified	0.7853524617
+UniRef50_U1RCX9	0.7853439367
+UniRef50_U1RCX9|unclassified	0.7853439367
+UniRef50_U4V1N1	0.7851599961
+UniRef50_U4V1N1|unclassified	0.7851599961
+UniRef50_B9TK60	0.7851373830
+UniRef50_B9TK60|unclassified	0.7851373830
+UniRef50_I0ZA51	0.7851325872
+UniRef50_I0ZA51|unclassified	0.7851325872
+UniRef50_D3VAI0	0.7850947899
+UniRef50_D3VAI0|unclassified	0.7850947899
+UniRef50_UPI00046A7E92: NADP-dependent oxidoreductase	0.7849549139
+UniRef50_UPI00046A7E92: NADP-dependent oxidoreductase|unclassified	0.7849549139
+UniRef50_Q9RYG9: Aldehyde dehydrogenase	0.7849293564
+UniRef50_Q9RYG9: Aldehyde dehydrogenase|g__Deinococcus.s__Deinococcus_radiodurans	0.7849293564
+UniRef50_UPI0002379B91: glutamine ABC transporter ATP-binding protein	0.7848901846
+UniRef50_UPI0002379B91: glutamine ABC transporter ATP-binding protein|unclassified	0.7848901846
+UniRef50_UPI000363AD69: hypothetical protein	0.7848161962
+UniRef50_UPI000363AD69: hypothetical protein|unclassified	0.7848161962
+UniRef50_UPI000376D794: hypothetical protein, partial	0.7846326400
+UniRef50_UPI000376D794: hypothetical protein, partial|unclassified	0.7846326400
+UniRef50_A0A022NNU5	0.7845926911
+UniRef50_A0A022NNU5|unclassified	0.7845926911
+UniRef50_G7SN96: Transposase IS4 family protein	0.7845483030
+UniRef50_G7SN96: Transposase IS4 family protein|unclassified	0.7845483030
+UniRef50_Q1D054	0.7845291626
+UniRef50_Q1D054|unclassified	0.7845291626
+UniRef50_UPI0003737F7B: hypothetical protein	0.7845169656
+UniRef50_UPI0003737F7B: hypothetical protein|unclassified	0.7845169656
+UniRef50_R8A4K4: Exopolyphosphatase	0.7844509349
+UniRef50_R8A4K4: Exopolyphosphatase|unclassified	0.7844509349
+UniRef50_V0KJX1	0.7844224679
+UniRef50_V0KJX1|unclassified	0.7844224679
+UniRef50_H7FJV9	0.7844095310
+UniRef50_H7FJV9|unclassified	0.7844095310
+UniRef50_A0A021HCE2: Extracellular matrix protein-binding protein emp	0.7843898318
+UniRef50_A0A021HCE2: Extracellular matrix protein-binding protein emp|unclassified	0.7843898318
+UniRef50_Q7UWS1: Na(+)-translocating NADH-quinone reductase subunit E	0.7843675144
+UniRef50_Q7UWS1: Na(+)-translocating NADH-quinone reductase subunit E|unclassified	0.7843675144
+UniRef50_W7N9N0	0.7843207460
+UniRef50_W7N9N0|unclassified	0.7843207460
+UniRef50_D5WEA6: Major facilitator superfamily MFS_1	0.7843137255
+UniRef50_D5WEA6: Major facilitator superfamily MFS_1|g__Acinetobacter.s__Acinetobacter_baumannii	0.7843137255
+UniRef50_E8RZJ8	0.7843137255
+UniRef50_E8RZJ8|unclassified	0.7843137255
+UniRef50_Q3IW74: RNA polymerase sigma-54 factor	0.7843137255
+UniRef50_Q3IW74: RNA polymerase sigma-54 factor|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.7843137255
+UniRef50_Q4SDM4: Chromosome 10 SCAF14634, whole genome shotgun sequence	0.7843137255
+UniRef50_Q4SDM4: Chromosome 10 SCAF14634, whole genome shotgun sequence|unclassified	0.7843137255
+UniRef50_UPI0003663A62: 30S ribosomal protein S17	0.7842811432
+UniRef50_UPI0003663A62: 30S ribosomal protein S17|unclassified	0.7842811432
+UniRef50_UPI0002F687DE: hypothetical protein	0.7842344572
+UniRef50_UPI0002F687DE: hypothetical protein|unclassified	0.7842344572
+UniRef50_A3K569	0.7842122434
+UniRef50_A3K569|unclassified	0.7842122434
+UniRef50_F0E2P5: GAF domain-containing protein (Fragment)	0.7841308982
+UniRef50_F0E2P5: GAF domain-containing protein (Fragment)|unclassified	0.7841308982
+UniRef50_D7WL42	0.7840326905
+UniRef50_D7WL42|unclassified	0.7840326905
+UniRef50_P43755: Ribonucleoside-diphosphate reductase subunit beta	0.7838237965
+UniRef50_P43755: Ribonucleoside-diphosphate reductase subunit beta|unclassified	0.7838237965
+UniRef50_UPI0004641AEF: hypothetical protein, partial	0.7837546761
+UniRef50_UPI0004641AEF: hypothetical protein, partial|unclassified	0.7837546761
+UniRef50_Q7XUN3: OSJNBa0064M23.10 protein	0.7837432361
+UniRef50_Q7XUN3: OSJNBa0064M23.10 protein|unclassified	0.7837432361
+UniRef50_X4FUA9: Xylulose 5-phosphate 3-epimerase	0.7837307187
+UniRef50_X4FUA9: Xylulose 5-phosphate 3-epimerase|unclassified	0.7837307187
+UniRef50_B0V5B6: Phenylacetaldehyde dehydrogenase	0.7836990596
+UniRef50_B0V5B6: Phenylacetaldehyde dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	0.7836990596
+UniRef50_C6S911: Deoxyribodipyrimidine photolyase	0.7836990596
+UniRef50_C6S911: Deoxyribodipyrimidine photolyase|g__Neisseria.s__Neisseria_meningitidis	0.7836990596
+UniRef50_UPI000365B2BF: hypothetical protein	0.7836990596
+UniRef50_UPI000365B2BF: hypothetical protein|unclassified	0.7836990596
+UniRef50_E4G4A0	0.7836852675
+UniRef50_E4G4A0|unclassified	0.7836852675
+UniRef50_UPI00036A99F9: hypothetical protein	0.7835947151
+UniRef50_UPI00036A99F9: hypothetical protein|unclassified	0.7835947151
+UniRef50_P46392: Acetyl-/propionyl-coenzyme A carboxylase alpha chain	0.7835783048
+UniRef50_P46392: Acetyl-/propionyl-coenzyme A carboxylase alpha chain|g__Acinetobacter.s__Acinetobacter_baumannii	0.7446016381
+UniRef50_P46392: Acetyl-/propionyl-coenzyme A carboxylase alpha chain|unclassified	0.0389766666
+UniRef50_X2LHR6: Membrane protein	0.7835526797
+UniRef50_X2LHR6: Membrane protein|unclassified	0.7835526797
+UniRef50_UPI0003B62E42: cation:proton antiporter	0.7835295826
+UniRef50_UPI0003B62E42: cation:proton antiporter|unclassified	0.7835295826
+UniRef50_UPI000473AC8E: hypothetical protein, partial	0.7834811098
+UniRef50_UPI000473AC8E: hypothetical protein, partial|unclassified	0.7834811098
+UniRef50_N4SUX6: Translocase subunit secA domain protein (Fragment)	0.7834243766
+UniRef50_N4SUX6: Translocase subunit secA domain protein (Fragment)|unclassified	0.7834243766
+UniRef50_Q28MI2	0.7833844235
+UniRef50_Q28MI2|unclassified	0.7833844235
+UniRef50_U2A6S8	0.7833106484
+UniRef50_U2A6S8|unclassified	0.7833106484
+UniRef50_UPI00028861F5: glucose-6-phosphate 1-dehydrogenase, partial	0.7832722457
+UniRef50_UPI00028861F5: glucose-6-phosphate 1-dehydrogenase, partial|unclassified	0.7832722457
+UniRef50_J9NX48	0.7832721770
+UniRef50_J9NX48|unclassified	0.7832721770
+UniRef50_W1XYI0: YlbG protein (Fragment)	0.7832521239
+UniRef50_W1XYI0: YlbG protein (Fragment)|unclassified	0.7832521239
+UniRef50_U4DRK6	0.7831590317
+UniRef50_U4DRK6|unclassified	0.7831590317
+UniRef50_D4HFJ3	0.7830872771
+UniRef50_D4HFJ3|g__Propionibacterium.s__Propionibacterium_acnes	0.7830872771
+UniRef50_J9NRS4	0.7830853563
+UniRef50_J9NRS4|unclassified	0.7830853563
+UniRef50_O07002: Aspartate-proton symporter	0.7830853563
+UniRef50_O07002: Aspartate-proton symporter|g__Acinetobacter.s__Acinetobacter_baumannii	0.7830853563
+UniRef50_Q43923: Putative porin QuiX	0.7830853563
+UniRef50_Q43923: Putative porin QuiX|g__Acinetobacter.s__Acinetobacter_baumannii	0.7830853563
+UniRef50_UPI0003B6DF74: glutamyl-tRNA(Gln) amidotransferase	0.7830853563
+UniRef50_UPI0003B6DF74: glutamyl-tRNA(Gln) amidotransferase|unclassified	0.7830853563
+UniRef50_H4RRZ1	0.7829769503
+UniRef50_H4RRZ1|unclassified	0.7829769503
+UniRef50_A1WG68	0.7829618433
+UniRef50_A1WG68|unclassified	0.7829618433
+UniRef50_V1BIQ1	0.7829545140
+UniRef50_V1BIQ1|unclassified	0.7829545140
+UniRef50_UPI000470CC65: hypothetical protein, partial	0.7828927799
+UniRef50_UPI000470CC65: hypothetical protein, partial|unclassified	0.7828927799
+UniRef50_A4ELB3: Acyl carrier protein	0.7828061941
+UniRef50_A4ELB3: Acyl carrier protein|unclassified	0.7828061941
+UniRef50_UPI0003822C32: hypothetical protein	0.7827381805
+UniRef50_UPI0003822C32: hypothetical protein|unclassified	0.7827381805
+UniRef50_UPI00036A3DAC: hypothetical protein	0.7827178177
+UniRef50_UPI00036A3DAC: hypothetical protein|unclassified	0.7827178177
+UniRef50_C1CUZ2	0.7824726135
+UniRef50_C1CUZ2|g__Deinococcus.s__Deinococcus_radiodurans	0.7824726135
+UniRef50_P72749: GTP-binding protein TypA/BipA homolog	0.7824726135
+UniRef50_P72749: GTP-binding protein TypA/BipA homolog|g__Deinococcus.s__Deinococcus_radiodurans	0.7824726135
+UniRef50_U3SYD5: MATE family drug transporter	0.7824726135
+UniRef50_U3SYD5: MATE family drug transporter|g__Acinetobacter.s__Acinetobacter_baumannii	0.7824726135
+UniRef50_B4SQ60: DoxX family protein	0.7824388792
+UniRef50_B4SQ60: DoxX family protein|unclassified	0.7824388792
+UniRef50_P45119: Pyruvate dehydrogenase E1 component	0.7823354081
+UniRef50_P45119: Pyruvate dehydrogenase E1 component|g__Escherichia.s__Escherichia_coli	0.7823354081
+UniRef50_G2ABU3: Inner membrane protein ybcI	0.7820901116
+UniRef50_G2ABU3: Inner membrane protein ybcI|unclassified	0.7820901116
+UniRef50_A6UWT5: Sirohydrochlorin cobaltochelatase	0.7820085293
+UniRef50_A6UWT5: Sirohydrochlorin cobaltochelatase|unclassified	0.7820085293
+UniRef50_C4Z005: Sex pilus assembly	0.7819759305
+UniRef50_C4Z005: Sex pilus assembly|unclassified	0.7819759305
+UniRef50_M9S8V5: Oxidoreductase	0.7818608288
+UniRef50_M9S8V5: Oxidoreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7818608288
+UniRef50_Q1GK69: Peptidyl-tRNA hydrolase	0.7818232377
+UniRef50_Q1GK69: Peptidyl-tRNA hydrolase|unclassified	0.7818232377
+UniRef50_J3DVI4	0.7817915647
+UniRef50_J3DVI4|unclassified	0.7817915647
+UniRef50_K8CKR3: Taurine-binding periplasmic protein TauA	0.7816917455
+UniRef50_K8CKR3: Taurine-binding periplasmic protein TauA|unclassified	0.7816917455
+UniRef50_UPI00040A9A12: ABC transporter	0.7816815576
+UniRef50_UPI00040A9A12: ABC transporter|unclassified	0.7816815576
+UniRef50_Q2CDM9	0.7816618612
+UniRef50_Q2CDM9|unclassified	0.7816618612
+UniRef50_S4P7C3	0.7816306841
+UniRef50_S4P7C3|unclassified	0.7816306841
+UniRef50_A5WDF2: Major facilitator superfamily MFS_1	0.7812500000
+UniRef50_A5WDF2: Major facilitator superfamily MFS_1|g__Acinetobacter.s__Acinetobacter_baumannii	0.7812500000
+UniRef50_D4HDF7: Dihydroorotase	0.7812500000
+UniRef50_D4HDF7: Dihydroorotase|g__Propionibacterium.s__Propionibacterium_acnes	0.7812500000
+UniRef50_UPI00026283FC: MmgE/PrpD family protein	0.7812500000
+UniRef50_UPI00026283FC: MmgE/PrpD family protein|unclassified	0.7812500000
+UniRef50_UPI00029A1B88: putative beta-carotene desaturase/methylase	0.7812500000
+UniRef50_UPI00029A1B88: putative beta-carotene desaturase/methylase|unclassified	0.7812500000
+UniRef50_A1RKV2: Prophage LambdaSo, major tail protein V, putative	0.7812217452
+UniRef50_A1RKV2: Prophage LambdaSo, major tail protein V, putative|unclassified	0.7812217452
+UniRef50_UPI00036EE5B3: endonuclease	0.7811025569
+UniRef50_UPI00036EE5B3: endonuclease|unclassified	0.7811025569
+UniRef50_Q98GP9: Phosphoadenosine phosphosulfate reductase	0.7810873992
+UniRef50_Q98GP9: Phosphoadenosine phosphosulfate reductase|unclassified	0.7810873992
+UniRef50_W7AN16: ABC transporter permease	0.7810487141
+UniRef50_W7AN16: ABC transporter permease|unclassified	0.7810487141
+UniRef50_W4MVL4: Phosphoenolpyruvate-protein phosphotransferase	0.7809508645
+UniRef50_W4MVL4: Phosphoenolpyruvate-protein phosphotransferase|g__Acinetobacter.s__Acinetobacter_baumannii	0.7809508645
+UniRef50_UPI000370136D: hypothetical protein	0.7808546533
+UniRef50_UPI000370136D: hypothetical protein|unclassified	0.7808546533
+UniRef50_UPI0001BF61D9: hypothetical protein SMAC_11520, partial	0.7808542736
+UniRef50_UPI0001BF61D9: hypothetical protein SMAC_11520, partial|unclassified	0.7808542736
+UniRef50_UPI000382B4D1: hypothetical protein	0.7808269652
+UniRef50_UPI000382B4D1: hypothetical protein|unclassified	0.7808269652
+UniRef50_A1R686	0.7807049680
+UniRef50_A1R686|unclassified	0.7807049680
+UniRef50_UPI00037B97B7: hypothetical protein	0.7806630717
+UniRef50_UPI00037B97B7: hypothetical protein|unclassified	0.7806630717
+UniRef50_Q6F8J3: Glutamyl-tRNA reductase	0.7806401249
+UniRef50_Q6F8J3: Glutamyl-tRNA reductase|g__Acinetobacter.s__Acinetobacter_baumannii	0.7806401249
+UniRef50_W8T4J2: Membrane protein	0.7804496417
+UniRef50_W8T4J2: Membrane protein|unclassified	0.7804496417
+UniRef50_L0A7I7	0.7803775603
+UniRef50_L0A7I7|unclassified	0.7803775603
+UniRef50_UPI0004228E73: hypothetical protein	0.7803599963
+UniRef50_UPI0004228E73: hypothetical protein|unclassified	0.7803599963
+UniRef50_G3P5L6	0.7801667158
+UniRef50_G3P5L6|unclassified	0.7801667158
+UniRef50_F0YA66	0.7801427780
+UniRef50_F0YA66|unclassified	0.7801427780
+UniRef50_UPI000465DCA9: hypothetical protein	0.7800495688
+UniRef50_UPI000465DCA9: hypothetical protein|unclassified	0.7800495688
+UniRef50_E1VJQ2: Acyl-CoA dehydrogenase	0.7800312012
+UniRef50_E1VJQ2: Acyl-CoA dehydrogenase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7800312012
+UniRef50_W0YJI7: PAAR motif-containing protein	0.7800312012
+UniRef50_W0YJI7: PAAR motif-containing protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7800312012
+UniRef50_UPI0003767D2F: HNH endonuclease	0.7799867883
+UniRef50_UPI0003767D2F: HNH endonuclease|unclassified	0.7799867883
+UniRef50_P05193: Beta-lactamase	0.7797618725
+UniRef50_P05193: Beta-lactamase|unclassified	0.7797618725
+UniRef50_D8TS47	0.7797270955
+UniRef50_D8TS47|unclassified	0.7797270955
+UniRef50_V5PJC7	0.7797005639
+UniRef50_V5PJC7|unclassified	0.7797005639
+UniRef50_W4THQ3: Exodeoxyribonuclease V alpha chain	0.7796238345
+UniRef50_W4THQ3: Exodeoxyribonuclease V alpha chain|unclassified	0.7796238345
+UniRef50_UPI0004769559: metal-dependent hydrolase	0.7796054302
+UniRef50_UPI0004769559: metal-dependent hydrolase|unclassified	0.7796054302
+UniRef50_UPI000464BB09: glycine/betaine ABC transporter ATP-binding protein	0.7795048947
+UniRef50_UPI000464BB09: glycine/betaine ABC transporter ATP-binding protein|unclassified	0.7795048947
+UniRef50_UPI0003B67906: glycine cleavage system protein H	0.7795040447
+UniRef50_UPI0003B67906: glycine cleavage system protein H|unclassified	0.7795040447
+UniRef50_A7ZXV0	0.7794720435
+UniRef50_A7ZXV0|unclassified	0.7794720435
+UniRef50_W9VJ44: Ubiquitin-activating enzyme E1	0.7794329667
+UniRef50_W9VJ44: Ubiquitin-activating enzyme E1|unclassified	0.7794329667
+UniRef50_W8YNB5	0.7794232268
+UniRef50_W8YNB5|unclassified	0.7794232268
+UniRef50_T2HV38: Anti-sigma factor	0.7793501528
+UniRef50_T2HV38: Anti-sigma factor|unclassified	0.7793501528
+UniRef50_S6ASE3	0.7793384708
+UniRef50_S6ASE3|unclassified	0.7793384708
+UniRef50_D7B2I8	0.7792027200
+UniRef50_D7B2I8|unclassified	0.7792027200
+UniRef50_UPI00034815FF: hypothetical protein	0.7791417103
+UniRef50_UPI00034815FF: hypothetical protein|unclassified	0.7791417103
+UniRef50_B8GIV7: CRISPR-associated helicase Cas3	0.7791044012
+UniRef50_B8GIV7: CRISPR-associated helicase Cas3|unclassified	0.7791044012
+UniRef50_UPI00036B6FD0: hypothetical protein, partial	0.7790567442
+UniRef50_UPI00036B6FD0: hypothetical protein, partial|unclassified	0.7790567442
+UniRef50_P72622: Peptide methionine sulfoxide reductase MsrA 1	0.7789494068
+UniRef50_P72622: Peptide methionine sulfoxide reductase MsrA 1|unclassified	0.7789494068
+UniRef50_L0LHI9	0.7788572308
+UniRef50_L0LHI9|unclassified	0.7788572308
+UniRef50_UPI000273D400	0.7788161994
+UniRef50_UPI000273D400|unclassified	0.7788161994
+UniRef50_A0A023SHI2: Sensor protein LytS	0.7788161994
+UniRef50_A0A023SHI2: Sensor protein LytS|g__Streptococcus.s__Streptococcus_agalactiae	0.7788161994
+UniRef50_P71838: KsdD-like steroid dehydrogenase Rv0785	0.7788161994
+UniRef50_P71838: KsdD-like steroid dehydrogenase Rv0785|g__Deinococcus.s__Deinococcus_radiodurans	0.7788161994
+UniRef50_Q9RYM5	0.7788161994
+UniRef50_Q9RYM5|g__Deinococcus.s__Deinococcus_radiodurans	0.7788161994
+UniRef50_S1STI3: Carbonic anhydrase, family 3	0.7788063638
+UniRef50_S1STI3: Carbonic anhydrase, family 3|unclassified	0.7788063638
+UniRef50_C0P5Q2	0.7786950991
+UniRef50_C0P5Q2|unclassified	0.7786950991
+UniRef50_U6HBJ2: 2 amino 3 ketobutyrate coenzyme A ligase	0.7785276048
+UniRef50_U6HBJ2: 2 amino 3 ketobutyrate coenzyme A ligase|unclassified	0.7785276048
+UniRef50_M5RF79: Magnesium protoporphyrin chelatase	0.7784682472
+UniRef50_M5RF79: Magnesium protoporphyrin chelatase|unclassified	0.7784682472
+UniRef50_UPI0004630A02: hypothetical protein	0.7784451077
+UniRef50_UPI0004630A02: hypothetical protein|unclassified	0.7784451077
+UniRef50_UPI000469C855: hypothetical protein	0.7783866259
+UniRef50_UPI000469C855: hypothetical protein|unclassified	0.7783866259
+UniRef50_P04190: Beta-lactamase 2	0.7782714640
+UniRef50_P04190: Beta-lactamase 2|unclassified	0.7782714640
+UniRef50_G7TK32: Transposase	0.7782672534
+UniRef50_G7TK32: Transposase|unclassified	0.7782672534
+UniRef50_G7UVD4: Dihydrolipoamide dehydrogenase	0.7782101167
+UniRef50_G7UVD4: Dihydrolipoamide dehydrogenase|g__Neisseria.s__Neisseria_meningitidis	0.7782101167
+UniRef50_A0A036I5S3	0.7781096848
+UniRef50_A0A036I5S3|unclassified	0.7781096848
+UniRef50_F0Y057: Expressed protein (Fragment)	0.7780295775
+UniRef50_F0Y057: Expressed protein (Fragment)|unclassified	0.7780295775
+UniRef50_UPI0003EF4757: mannitol-1-phosphate 5-dehydrogenase, partial	0.7779968656
+UniRef50_UPI0003EF4757: mannitol-1-phosphate 5-dehydrogenase, partial|unclassified	0.7779968656
+UniRef50_UPI00036277E7: hypothetical protein	0.7778477132
+UniRef50_UPI00036277E7: hypothetical protein|unclassified	0.7778477132
+UniRef50_A0A024E690	0.7777324328
+UniRef50_A0A024E690|unclassified	0.7777324328
+UniRef50_K7VJY6	0.7777294048
+UniRef50_K7VJY6|unclassified	0.7777294048
+UniRef50_A8LKJ4: Ribosomal RNA large subunit methyltransferase H	0.7775169703
+UniRef50_A8LKJ4: Ribosomal RNA large subunit methyltransferase H|unclassified	0.7775169703
+UniRef50_UPI00037DC55B: hypothetical protein	0.7775085858
+UniRef50_UPI00037DC55B: hypothetical protein|unclassified	0.7775085858
+UniRef50_A0A017HLF1: Protein YqgE	0.7775034543
+UniRef50_A0A017HLF1: Protein YqgE|unclassified	0.7775034543
+UniRef50_UPI0003317369: PREDICTED: basic proline-rich protein-like	0.7774852623
+UniRef50_UPI0003317369: PREDICTED: basic proline-rich protein-like|unclassified	0.7774852623
+UniRef50_W5X7C0: NADH-dependent flavin oxidoreductase	0.7774750723
+UniRef50_W5X7C0: NADH-dependent flavin oxidoreductase|unclassified	0.7774750723
+UniRef50_UPI000441C4F5: PREDICTED: dorsal root ganglia homeobox protein-like, partial	0.7773737679
+UniRef50_UPI000441C4F5: PREDICTED: dorsal root ganglia homeobox protein-like, partial|unclassified	0.7773737679
+UniRef50_E8RLJ9: NAD-dependent epimerase/dehydratase	0.7773039877
+UniRef50_E8RLJ9: NAD-dependent epimerase/dehydratase|unclassified	0.7773039877
+UniRef50_UPI000262CA94: flagellar protein	0.7772394445
+UniRef50_UPI000262CA94: flagellar protein|unclassified	0.7772394445
+UniRef50_H9GTR8	0.7771987592
+UniRef50_H9GTR8|unclassified	0.7771987592
+UniRef50_UPI00036A732B: hypothetical protein	0.7770671632
+UniRef50_UPI00036A732B: hypothetical protein|unclassified	0.7770671632
+UniRef50_UPI000378C9B2: hypothetical protein	0.7770611157
+UniRef50_UPI000378C9B2: hypothetical protein|unclassified	0.7770611157
+UniRef50_UPI0004751DF1: hypothetical protein, partial	0.7770495279
+UniRef50_UPI0004751DF1: hypothetical protein, partial|unclassified	0.7770495279
+UniRef50_F8FXL7	0.7769817846
+UniRef50_F8FXL7|unclassified	0.7769817846
+UniRef50_UPI0003699549: hypothetical protein	0.7769715291
+UniRef50_UPI0003699549: hypothetical protein|unclassified	0.7769715291
+UniRef50_A6E475: Probable type I restriction-modification system restriction subunit	0.7769019261
+UniRef50_A6E475: Probable type I restriction-modification system restriction subunit|unclassified	0.7769019261
+UniRef50_UPI00046F7626: hypothetical protein	0.7768899616
+UniRef50_UPI00046F7626: hypothetical protein|unclassified	0.7768899616
+UniRef50_UPI00036B4307: hypothetical protein	0.7768643537
+UniRef50_UPI00036B4307: hypothetical protein|unclassified	0.7768643537
+UniRef50_UPI00036E74BD: hypothetical protein	0.7768111599
+UniRef50_UPI00036E74BD: hypothetical protein|unclassified	0.7768111599
+UniRef50_UPI00046A8AD0: hypothetical protein	0.7767925950
+UniRef50_UPI00046A8AD0: hypothetical protein|unclassified	0.7767925950
+UniRef50_UPI0003C1A633: PREDICTED: probable replicative DNA helicase-like	0.7767893794
+UniRef50_UPI0003C1A633: PREDICTED: probable replicative DNA helicase-like|unclassified	0.7767893794
+UniRef50_UPI0003F0B08E: PREDICTED: proline-rich protein 2-like, partial	0.7767211486
+UniRef50_UPI0003F0B08E: PREDICTED: proline-rich protein 2-like, partial|unclassified	0.7767211486
+UniRef50_H3XI04: GA module	0.7767019576
+UniRef50_H3XI04: GA module|g__Staphylococcus.s__Staphylococcus_aureus	0.7767019576
+UniRef50_UPI000473B328: ABC transporter ATP-binding protein, partial	0.7766800825
+UniRef50_UPI000473B328: ABC transporter ATP-binding protein, partial|unclassified	0.7766800825
+UniRef50_W5DS62	0.7766212563
+UniRef50_W5DS62|unclassified	0.7766212563
+UniRef50_Q9FNJ8: Arogenate dehydratase 5, chloroplastic	0.7764886896
+UniRef50_Q9FNJ8: Arogenate dehydratase 5, chloroplastic|unclassified	0.7764886896
+UniRef50_D9VWR6: Septum site-determining protein (Fragment)	0.7764605284
+UniRef50_D9VWR6: Septum site-determining protein (Fragment)|unclassified	0.7764605284
+UniRef50_Q1QCK7: Glutamate synthase (NADPH)	0.7763975155
+UniRef50_Q1QCK7: Glutamate synthase (NADPH)|g__Acinetobacter.s__Acinetobacter_baumannii	0.7763975155
+UniRef50_A0A032Y4K4	0.7763908204
+UniRef50_A0A032Y4K4|unclassified	0.7763908204
+UniRef50_UPI00046F3C43: ribonuclease D, partial	0.7762498481
+UniRef50_UPI00046F3C43: ribonuclease D, partial|unclassified	0.7762498481
+UniRef50_A0A020ACZ2	0.7762296825
+UniRef50_A0A020ACZ2|unclassified	0.7762296825
+UniRef50_A5PAU9	0.7761766093
+UniRef50_A5PAU9|unclassified	0.7761766093
+UniRef50_UPI000299E12E: flagellin	0.7761330188
+UniRef50_UPI000299E12E: flagellin|unclassified	0.7761330188
+UniRef50_D3HSH5	0.7760846325
+UniRef50_D3HSH5|unclassified	0.7760846325
+UniRef50_UPI00037A611E: hypothetical protein	0.7758976308
+UniRef50_UPI00037A611E: hypothetical protein|unclassified	0.7758976308
+UniRef50_D3HPI8	0.7758872110
+UniRef50_D3HPI8|unclassified	0.7758872110
+UniRef50_UPI0003B75E80: co-chaperone HscB	0.7758537703
+UniRef50_UPI0003B75E80: co-chaperone HscB|unclassified	0.7758537703
+UniRef50_UPI00046DBEB3: hypothetical protein	0.7758180664
+UniRef50_UPI00046DBEB3: hypothetical protein|unclassified	0.7758180664
+UniRef50_K0T7G0	0.7758015440
+UniRef50_K0T7G0|unclassified	0.7758015440
+UniRef50_Q9ZMX5: Threonine synthase	0.7757951901
+UniRef50_Q9ZMX5: Threonine synthase|g__Helicobacter.s__Helicobacter_pylori	0.7757951901
+UniRef50_M4WUZ4	0.7755447463
+UniRef50_M4WUZ4|unclassified	0.7755447463
+UniRef50_A0A022MLD4	0.7755190970
+UniRef50_A0A022MLD4|unclassified	0.7755190970
+UniRef50_W1M2H2	0.7754721451
+UniRef50_W1M2H2|unclassified	0.7754721451
+UniRef50_UPI00036BC390: hypothetical protein	0.7754159609
+UniRef50_UPI00036BC390: hypothetical protein|unclassified	0.7754159609
+UniRef50_T1Y632	0.7751740376
+UniRef50_T1Y632|unclassified	0.7751740376
+UniRef50_UPI0003A963B7: 50S ribosomal protein L35	0.7750076979
+UniRef50_UPI0003A963B7: 50S ribosomal protein L35|unclassified	0.7750076979
+UniRef50_Q9KVU3: Peptide deformylase 1	0.7749734560
+UniRef50_Q9KVU3: Peptide deformylase 1|unclassified	0.7749734560
+UniRef50_UPI00041AE792: hypothetical protein	0.7747878886
+UniRef50_UPI00041AE792: hypothetical protein|unclassified	0.7747878886
+UniRef50_F7ZHM5	0.7747028344
+UniRef50_F7ZHM5|unclassified	0.7747028344
+UniRef50_B8FWK7: Nucleotide sugar dehydrogenase	0.7745933385
+UniRef50_B8FWK7: Nucleotide sugar dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	0.7745933385
+UniRef50_UPI0003B74800: hypothetical protein	0.7745041038
+UniRef50_UPI0003B74800: hypothetical protein|unclassified	0.7745041038
+UniRef50_C2DDU8: Putative L-xylulose 5-phosphate 3-epimerase	0.7744207209
+UniRef50_C2DDU8: Putative L-xylulose 5-phosphate 3-epimerase|unclassified	0.7744207209
+UniRef50_E4PRG4: Cbb3-type cytochrome oxidase component	0.7743343983
+UniRef50_E4PRG4: Cbb3-type cytochrome oxidase component|unclassified	0.7743343983
+UniRef50_Q7VF14: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--2,6-diaminopimelate ligase	0.7739938080
+UniRef50_Q7VF14: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate--2,6-diaminopimelate ligase|g__Helicobacter.s__Helicobacter_pylori	0.7739938080
+UniRef50_UPI00036EB620: hypothetical protein	0.7739938080
+UniRef50_UPI00036EB620: hypothetical protein|unclassified	0.7739938080
+UniRef50_L8UIS8	0.7739223228
+UniRef50_L8UIS8|unclassified	0.7739223228
+UniRef50_F0YAV0: Expressed protein	0.7737663301
+UniRef50_F0YAV0: Expressed protein|unclassified	0.7737663301
+UniRef50_UPI000365289A: hypothetical protein	0.7737047181
+UniRef50_UPI000365289A: hypothetical protein|unclassified	0.7737047181
+UniRef50_UPI00046FE763: FMN-dependent NADH-azoreductase	0.7736269329
+UniRef50_UPI00046FE763: FMN-dependent NADH-azoreductase|unclassified	0.7736269329
+UniRef50_X1RIN8: Marine sediment metagenome DNA, contig: S12H4_L02130 (Fragment)	0.7735421814
+UniRef50_X1RIN8: Marine sediment metagenome DNA, contig: S12H4_L02130 (Fragment)|unclassified	0.7735421814
+UniRef50_UPI00016AEB38: hypothetical protein, partial	0.7735326759
+UniRef50_UPI00016AEB38: hypothetical protein, partial|unclassified	0.7735326759
+UniRef50_UPI00036B9B74: hypothetical protein	0.7735195981
+UniRef50_UPI00036B9B74: hypothetical protein|unclassified	0.7735195981
+UniRef50_D4HCV9: ABC transporter, ATP-binding protein	0.7733952049
+UniRef50_D4HCV9: ABC transporter, ATP-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	0.7733952049
+UniRef50_E1Z8X5: Expressed protein (Fragment)	0.7733560931
+UniRef50_E1Z8X5: Expressed protein (Fragment)|unclassified	0.7733560931
+UniRef50_G9K3R9: Histone H2A.x (Fragment)	0.7733479960
+UniRef50_G9K3R9: Histone H2A.x (Fragment)|unclassified	0.7733479960
+UniRef50_UPI00047C0852: glycine cleavage system protein H	0.7733416803
+UniRef50_UPI00047C0852: glycine cleavage system protein H|unclassified	0.7733416803
+UniRef50_T2HSJ7: F-pilus assembly protein	0.7732851687
+UniRef50_T2HSJ7: F-pilus assembly protein|unclassified	0.7732851687
+UniRef50_G9YI00	0.7732350002
+UniRef50_G9YI00|unclassified	0.7732350002
+UniRef50_F0JXQ7	0.7732141408
+UniRef50_F0JXQ7|unclassified	0.7732141408
+UniRef50_UPI0003B30F06: DNA glycosylase	0.7731582656
+UniRef50_UPI0003B30F06: DNA glycosylase|unclassified	0.7731582656
+UniRef50_UPI00047C615E: sulfate ABC transporter ATP-binding protein	0.7731576128
+UniRef50_UPI00047C615E: sulfate ABC transporter ATP-binding protein|unclassified	0.7731576128
+UniRef50_UPI0002000E8E: transcriptional activator domain-containing protein	0.7730513323
+UniRef50_UPI0002000E8E: transcriptional activator domain-containing protein|unclassified	0.7730513323
+UniRef50_UPI00045E6087: hypothetical protein	0.7730484601
+UniRef50_UPI00045E6087: hypothetical protein|unclassified	0.7730484601
+UniRef50_A8LRY7	0.7729650619
+UniRef50_A8LRY7|unclassified	0.7729650619
+UniRef50_T0GL82	0.7728172341
+UniRef50_T0GL82|unclassified	0.7728172341
+UniRef50_UPI00047DF6E0: C4-dicarboxylate ABC transporter permease	0.7728061176
+UniRef50_UPI00047DF6E0: C4-dicarboxylate ABC transporter permease|unclassified	0.7728061176
+UniRef50_I0EM51: Zinc protease	0.7727975270
+UniRef50_I0EM51: Zinc protease|g__Helicobacter.s__Helicobacter_pylori	0.7727975270
+UniRef50_M4WV43: Cis,cis-muconate transporter MucK	0.7727975270
+UniRef50_M4WV43: Cis,cis-muconate transporter MucK|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7727975270
+UniRef50_B9T8Q7	0.7727457638
+UniRef50_B9T8Q7|unclassified	0.7727457638
+UniRef50_D7GE04	0.7725818788
+UniRef50_D7GE04|unclassified	0.7725818788
+UniRef50_UPI00037B6B2D: hypothetical protein	0.7724305235
+UniRef50_UPI00037B6B2D: hypothetical protein|unclassified	0.7724305235
+UniRef50_UPI00045E99AE: hypothetical protein	0.7723704777
+UniRef50_UPI00045E99AE: hypothetical protein|unclassified	0.7723704777
+UniRef50_UPI00046721A5: ABC transporter substrate-binding protein	0.7723512631
+UniRef50_UPI00046721A5: ABC transporter substrate-binding protein|unclassified	0.7723512631
+UniRef50_F8J8W0	0.7723481212
+UniRef50_F8J8W0|unclassified	0.7723481212
+UniRef50_D2TYB3: Conserved hypothetical phage protein	0.7723087473
+UniRef50_D2TYB3: Conserved hypothetical phage protein|unclassified	0.7723087473
+UniRef50_J7RAU4	0.7722138313
+UniRef50_J7RAU4|unclassified	0.7722138313
+UniRef50_B9NNN6: TPR repeat family protein	0.7720812560
+UniRef50_B9NNN6: TPR repeat family protein|unclassified	0.7720812560
+UniRef50_UPI0003B6F059: aldehyde-activating protein	0.7717733681
+UniRef50_UPI0003B6F059: aldehyde-activating protein|unclassified	0.7717733681
+UniRef50_V4STU1	0.7716942371
+UniRef50_V4STU1|unclassified	0.7716942371
+UniRef50_B7KNU7: Peptidyl-tRNA hydrolase	0.7716732067
+UniRef50_B7KNU7: Peptidyl-tRNA hydrolase|unclassified	0.7716732067
+UniRef50_A3IVK1	0.7716498975
+UniRef50_A3IVK1|unclassified	0.7716498975
+UniRef50_R4GFA3	0.7716049383
+UniRef50_R4GFA3|unclassified	0.7716049383
+UniRef50_S5D7U1: Nucleotidyltransferase/DNA polymerase involved in DNA repair	0.7716049383
+UniRef50_S5D7U1: Nucleotidyltransferase/DNA polymerase involved in DNA repair|g__Acinetobacter.s__Acinetobacter_baumannii	0.7716049383
+UniRef50_A0A031J2A8: Conjugative relaxase domain-containing protein	0.7715968639
+UniRef50_A0A031J2A8: Conjugative relaxase domain-containing protein|unclassified	0.7715968639
+UniRef50_UPI00039D6BE7: MULTISPECIES: hypothetical protein	0.7714139310
+UniRef50_UPI00039D6BE7: MULTISPECIES: hypothetical protein|unclassified	0.7714139310
+UniRef50_Q0FWP3: ABC transporter, nucleotide binding/ATPase protein	0.7713667024
+UniRef50_Q0FWP3: ABC transporter, nucleotide binding/ATPase protein|unclassified	0.7713667024
+UniRef50_F2U516	0.7713073660
+UniRef50_F2U516|unclassified	0.7713073660
+UniRef50_J3CDZ0	0.7712772857
+UniRef50_J3CDZ0|unclassified	0.7712772857
+UniRef50_Q1GJP7: Urease subunit beta	0.7712007994
+UniRef50_Q1GJP7: Urease subunit beta|unclassified	0.7712007994
+UniRef50_UPI0004561009: hypothetical protein PFL1_01934	0.7711804675
+UniRef50_UPI0004561009: hypothetical protein PFL1_01934|unclassified	0.7711804675
+UniRef50_UPI0003942E2F: PREDICTED: glutaredoxin-related protein 5, mitochondrial-like isoform X2	0.7711416320
+UniRef50_UPI0003942E2F: PREDICTED: glutaredoxin-related protein 5, mitochondrial-like isoform X2|unclassified	0.7711416320
+UniRef50_UPI00036CFE81: hypothetical protein	0.7711040680
+UniRef50_UPI00036CFE81: hypothetical protein|unclassified	0.7711040680
+UniRef50_D4HDX4	0.7710100231
+UniRef50_D4HDX4|g__Propionibacterium.s__Propionibacterium_acnes	0.7710100231
+UniRef50_X1LFF7: Marine sediment metagenome DNA, contig: S06H3_C02509 (Fragment)	0.7708260930
+UniRef50_X1LFF7: Marine sediment metagenome DNA, contig: S06H3_C02509 (Fragment)|unclassified	0.7708260930
+UniRef50_UPI00031030DA: hypothetical protein	0.7708103128
+UniRef50_UPI00031030DA: hypothetical protein|unclassified	0.7708103128
+UniRef50_UPI000371D75B: hypothetical protein	0.7706642705
+UniRef50_UPI000371D75B: hypothetical protein|unclassified	0.7706642705
+UniRef50_UPI000381BB00: hypothetical protein	0.7706099903
+UniRef50_UPI000381BB00: hypothetical protein|unclassified	0.7706099903
+UniRef50_UPI00035D9BD3: hypothetical protein	0.7706046546
+UniRef50_UPI00035D9BD3: hypothetical protein|unclassified	0.7706046546
+UniRef50_UPI000237F33D: bacterioferritin	0.7705216821
+UniRef50_UPI000237F33D: bacterioferritin|unclassified	0.7705216821
+UniRef50_UPI0003747F78: hypothetical protein	0.7704916391
+UniRef50_UPI0003747F78: hypothetical protein|unclassified	0.7704916391
+UniRef50_UPI0003A503E2: hypothetical protein	0.7704902192
+UniRef50_UPI0003A503E2: hypothetical protein|unclassified	0.7704902192
+UniRef50_K0B0R4: Para-aminobenzoate synthase component 1	0.7704160247
+UniRef50_K0B0R4: Para-aminobenzoate synthase component 1|g__Clostridium.s__Clostridium_beijerinckii	0.7704160247
+UniRef50_O25534: Plasminogen-binding protein PgbB	0.7704160247
+UniRef50_O25534: Plasminogen-binding protein PgbB|g__Helicobacter.s__Helicobacter_pylori	0.7704160247
+UniRef50_Q9ZMV8: Flagellin B	0.7704160247
+UniRef50_Q9ZMV8: Flagellin B|g__Helicobacter.s__Helicobacter_pylori	0.7704160247
+UniRef50_F9I5M2	0.7703996941
+UniRef50_F9I5M2|unclassified	0.7703996941
+UniRef50_I6BTQ1: Nucleoside H+ symporter family protein	0.7702731344
+UniRef50_I6BTQ1: Nucleoside H+ symporter family protein|unclassified	0.7702731344
+UniRef50_Q9RZI4	0.7702468691
+UniRef50_Q9RZI4|unclassified	0.7702468691
+UniRef50_UPI0003665235: hypothetical protein	0.7701893333
+UniRef50_UPI0003665235: hypothetical protein|unclassified	0.7701893333
+UniRef50_UPI000377BA4D: hypothetical protein	0.7701338808
+UniRef50_UPI000377BA4D: hypothetical protein|unclassified	0.7701338808
+UniRef50_K9BPA3: NADH dehydrogenase domain protein	0.7701133975
+UniRef50_K9BPA3: NADH dehydrogenase domain protein|unclassified	0.7701133975
+UniRef50_A4A3W5: Cbb3-type cytochrome oxidase, subunit 3	0.7699727136
+UniRef50_A4A3W5: Cbb3-type cytochrome oxidase, subunit 3|unclassified	0.7699727136
+UniRef50_B7MNY1: UPF0231 protein YacL	0.7698480237
+UniRef50_B7MNY1: UPF0231 protein YacL|unclassified	0.7698480237
+UniRef50_H6PD35: PTS system, cellobiose-specific IIC component	0.7697876796
+UniRef50_H6PD35: PTS system, cellobiose-specific IIC component|unclassified	0.7697876796
+UniRef50_S5VGH2	0.7697787676
+UniRef50_S5VGH2|unclassified	0.7697787676
+UniRef50_UPI00034FF384	0.7697505135
+UniRef50_UPI00034FF384|unclassified	0.7697505135
+UniRef50_F3Z4V2	0.7696730480
+UniRef50_F3Z4V2|unclassified	0.7696730480
+UniRef50_UPI000471ACB0: hypothetical protein	0.7696335265
+UniRef50_UPI000471ACB0: hypothetical protein|unclassified	0.7696335265
+UniRef50_UPI00016C5625: Putative bacteriophage holin protein	0.7694909355
+UniRef50_UPI00016C5625: Putative bacteriophage holin protein|unclassified	0.7694909355
+UniRef50_G6X0I1: XRE family transcriptional regulator	0.7694569319
+UniRef50_G6X0I1: XRE family transcriptional regulator|unclassified	0.7694569319
+UniRef50_Q895N8: Phosphopantetheine adenylyltransferase	0.7693224067
+UniRef50_Q895N8: Phosphopantetheine adenylyltransferase|unclassified	0.7693224067
+UniRef50_B3PG85: Sensor histidine kinase	0.7692307692
+UniRef50_B3PG85: Sensor histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7692307692
+UniRef50_B7LQ20: Glyceraldehyde-3-phosphate dehydrogenase A	0.7692091881
+UniRef50_B7LQ20: Glyceraldehyde-3-phosphate dehydrogenase A|unclassified	0.7692091881
+UniRef50_D1WIU0	0.7692089076
+UniRef50_D1WIU0|unclassified	0.7692089076
+UniRef50_H8I380	0.7690808469
+UniRef50_H8I380|unclassified	0.7690808469
+UniRef50_I0C5Y0	0.7690797536
+UniRef50_I0C5Y0|unclassified	0.7690797536
+UniRef50_A7C4B4: Short-chain dehydrogenase/reductase SDR	0.7690697174
+UniRef50_A7C4B4: Short-chain dehydrogenase/reductase SDR|unclassified	0.7690697174
+UniRef50_UPI00037EF331: hypothetical protein	0.7689815722
+UniRef50_UPI00037EF331: hypothetical protein|unclassified	0.7689815722
+UniRef50_UPI00036C3E36: hypothetical protein	0.7689744866
+UniRef50_UPI00036C3E36: hypothetical protein|unclassified	0.7689744866
+UniRef50_UPI0004670393: hypothetical protein	0.7689349805
+UniRef50_UPI0004670393: hypothetical protein|unclassified	0.7689349805
+UniRef50_E1QYV1	0.7689263847
+UniRef50_E1QYV1|unclassified	0.7689263847
+UniRef50_D5AMP9	0.7688897143
+UniRef50_D5AMP9|unclassified	0.7688897143
+UniRef50_C4IZQ6	0.7686034366
+UniRef50_C4IZQ6|unclassified	0.7686034366
+UniRef50_UPI0003825823: hypothetical protein	0.7684978193
+UniRef50_UPI0003825823: hypothetical protein|unclassified	0.7684978193
+UniRef50_P52558: N5-carboxyaminoimidazole ribonucleotide mutase	0.7684923204
+UniRef50_P52558: N5-carboxyaminoimidazole ribonucleotide mutase|unclassified	0.7684923204
+UniRef50_UPI0001E892A3: ArsR family transcriptional regulator	0.7684508795
+UniRef50_UPI0001E892A3: ArsR family transcriptional regulator|unclassified	0.7684508795
+UniRef50_Q8ZQD5: DNA translocase FtsK	0.7683254133
+UniRef50_Q8ZQD5: DNA translocase FtsK|g__Escherichia.s__Escherichia_coli	0.7683254133
+UniRef50_C1MY10: Predicted protein	0.7683033992
+UniRef50_C1MY10: Predicted protein|unclassified	0.7683033992
+UniRef50_F4N0R4	0.7682834375
+UniRef50_F4N0R4|unclassified	0.7682834375
+UniRef50_F0Y5S7: Expressed protein (Fragment)	0.7681509765
+UniRef50_F0Y5S7: Expressed protein (Fragment)|unclassified	0.7681509765
+UniRef50_F9Y6K2	0.7680933678
+UniRef50_F9Y6K2|unclassified	0.7680933678
+UniRef50_G8PNB5: Acetylornithine deacetylase or succinyl-diaminopimelate desuccinylase	0.7680491551
+UniRef50_G8PNB5: Acetylornithine deacetylase or succinyl-diaminopimelate desuccinylase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.7680491551
+UniRef50_X1I1F5: Marine sediment metagenome DNA, contig: S03H2_S00973 (Fragment)	0.7680024977
+UniRef50_X1I1F5: Marine sediment metagenome DNA, contig: S03H2_S00973 (Fragment)|unclassified	0.7680024977
+UniRef50_UPI000361813E: hypothetical protein	0.7679030992
+UniRef50_UPI000361813E: hypothetical protein|unclassified	0.7679030992
+UniRef50_A9HE81: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.7678674262
+UniRef50_A9HE81: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.7678674262
+UniRef50_Q52282: Putative protein KleG	0.7678531387
+UniRef50_Q52282: Putative protein KleG|unclassified	0.7678531387
+UniRef50_UPI0003A26AF5: TetR family transcriptional regulator	0.7677616484
+UniRef50_UPI0003A26AF5: TetR family transcriptional regulator|unclassified	0.7677616484
+UniRef50_A3XDB5: Flagellar hook-basal body complex protein FliE, putative	0.7676719594
+UniRef50_A3XDB5: Flagellar hook-basal body complex protein FliE, putative|unclassified	0.7676719594
+UniRef50_X8FIZ9	0.7676661400
+UniRef50_X8FIZ9|unclassified	0.7676661400
+UniRef50_F0J6M8	0.7675494339
+UniRef50_F0J6M8|unclassified	0.7675494339
+UniRef50_UPI0003B4BA2C: peptide ABC transporter ATP-binding protein	0.7674902665
+UniRef50_UPI0003B4BA2C: peptide ABC transporter ATP-binding protein|unclassified	0.7674902665
+UniRef50_I4EZ03	0.7674597084
+UniRef50_I4EZ03|unclassified	0.7674597084
+UniRef50_Q9RUH1: Ornithine aminotransferase, putative	0.7674597084
+UniRef50_Q9RUH1: Ornithine aminotransferase, putative|g__Deinococcus.s__Deinococcus_radiodurans	0.7674597084
+UniRef50_G5JYP3	0.7673840017
+UniRef50_G5JYP3|unclassified	0.7673840017
+UniRef50_E6E0D9	0.7671373829
+UniRef50_E6E0D9|unclassified	0.7671373829
+UniRef50_X6FHM7	0.7671229404
+UniRef50_X6FHM7|unclassified	0.7671229404
+UniRef50_D7C1Q5	0.7670635230
+UniRef50_D7C1Q5|unclassified	0.7670635230
+UniRef50_UPI0003B465F4: hypothetical protein	0.7669038367
+UniRef50_UPI0003B465F4: hypothetical protein|unclassified	0.7669038367
+UniRef50_Q88Q36: Threonine synthase, putative	0.7668773887
+UniRef50_Q88Q36: Threonine synthase, putative|unclassified	0.7668773887
+UniRef50_F6D7P3: Protein tyrosine phosphatase	0.7667739830
+UniRef50_F6D7P3: Protein tyrosine phosphatase|unclassified	0.7667739830
+UniRef50_UPI0002558C92: helix-turn-helix domain-containing protein	0.7665335874
+UniRef50_UPI0002558C92: helix-turn-helix domain-containing protein|unclassified	0.7665335874
+UniRef50_U5V3F5	0.7664620215
+UniRef50_U5V3F5|unclassified	0.7664620215
+UniRef50_B5XNA3	0.7664465896
+UniRef50_B5XNA3|unclassified	0.7664465896
+UniRef50_M0TB60	0.7662670358
+UniRef50_M0TB60|unclassified	0.7662670358
+UniRef50_R4MF75	0.7661455456
+UniRef50_R4MF75|unclassified	0.7661455456
+UniRef50_Q69XT0	0.7661077285
+UniRef50_Q69XT0|unclassified	0.7661077285
+UniRef50_UPI0004656560: hypothetical protein	0.7660938917
+UniRef50_UPI0004656560: hypothetical protein|unclassified	0.7660938917
+UniRef50_D6M0R1: Predicted protein	0.7659940124
+UniRef50_D6M0R1: Predicted protein|unclassified	0.7659940124
+UniRef50_A3PHC6	0.7659537350
+UniRef50_A3PHC6|unclassified	0.7659537350
+UniRef50_UPI000477BC16: ABC transporter ATP-binding protein	0.7658496326
+UniRef50_UPI000477BC16: ABC transporter ATP-binding protein|unclassified	0.7658496326
+UniRef50_UPI00047611CF: nickel transporter	0.7658445721
+UniRef50_UPI00047611CF: nickel transporter|unclassified	0.7658445721
+UniRef50_Q2NGA8: Hypothetical membrane-spanning protein	0.7657972504
+UniRef50_Q2NGA8: Hypothetical membrane-spanning protein|unclassified	0.7657972504
+UniRef50_S9TC28	0.7657906938
+UniRef50_S9TC28|unclassified	0.7657906938
+UniRef50_A0A017HFR7: Chemotactic signal-response protein, putative	0.7657509387
+UniRef50_A0A017HFR7: Chemotactic signal-response protein, putative|unclassified	0.7657509387
+UniRef50_G8ML06	0.7657345669
+UniRef50_G8ML06|unclassified	0.7657345669
+UniRef50_H3YU08: Staphopain B domain protein (Fragment)	0.7657113997
+UniRef50_H3YU08: Staphopain B domain protein (Fragment)|unclassified	0.7657113997
+UniRef50_J7QRA8	0.7656824482
+UniRef50_J7QRA8|unclassified	0.7656824482
+UniRef50_UPI000416C7B3: hypothetical protein	0.7656292754
+UniRef50_UPI000416C7B3: hypothetical protein|unclassified	0.7656292754
+UniRef50_F9P6H2: TIGR01906-like family protein	0.7655075793
+UniRef50_F9P6H2: TIGR01906-like family protein|unclassified	0.7655075793
+UniRef50_E0NML2: Transcriptional regulator, PadR family	0.7655040497
+UniRef50_E0NML2: Transcriptional regulator, PadR family|unclassified	0.7655040497
+UniRef50_I0TKR6: SdrH family protein	0.7653777024
+UniRef50_I0TKR6: SdrH family protein|unclassified	0.7653777024
+UniRef50_UPI0003793B75: hypothetical protein, partial	0.7653534874
+UniRef50_UPI0003793B75: hypothetical protein, partial|unclassified	0.7653534874
+UniRef50_P0CN05: Sulfate adenylyltransferase	0.7653032507
+UniRef50_P0CN05: Sulfate adenylyltransferase|unclassified	0.7653032507
+UniRef50_W7VXE4	0.7652391414
+UniRef50_W7VXE4|unclassified	0.7652391414
+UniRef50_UPI000440822A: nucleic acid-binding protein, partial	0.7651473356
+UniRef50_UPI000440822A: nucleic acid-binding protein, partial|unclassified	0.7651473356
+UniRef50_D7FVW5	0.7651339285
+UniRef50_D7FVW5|unclassified	0.7651339285
+UniRef50_A0A024YT57	0.7650993781
+UniRef50_A0A024YT57|unclassified	0.7650993781
+UniRef50_UPI0003EE784B: xylulose 5-phosphate 3-epimerase	0.7650546944
+UniRef50_UPI0003EE784B: xylulose 5-phosphate 3-epimerase|unclassified	0.7650546944
+UniRef50_UPI000475208B: hypothetical protein	0.7650211686
+UniRef50_UPI000475208B: hypothetical protein|unclassified	0.7650211686
+UniRef50_W9B4Z4: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	0.7649076186
+UniRef50_W9B4Z4: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome|unclassified	0.7649076186
+UniRef50_O33525: Malate dehydrogenase	0.7648932465
+UniRef50_O33525: Malate dehydrogenase|unclassified	0.7648932465
+UniRef50_UPI0003B502A9: ABC transporter ATP-binding protein	0.7647532900
+UniRef50_UPI0003B502A9: ABC transporter ATP-binding protein|unclassified	0.7647532900
+UniRef50_G7M6Z6: SNF2-related protein	0.7646333684
+UniRef50_G7M6Z6: SNF2-related protein|g__Clostridium.s__Clostridium_beijerinckii	0.7646333684
+UniRef50_W4HIE7	0.7646156809
+UniRef50_W4HIE7|unclassified	0.7646156809
+UniRef50_K2I318	0.7645980337
+UniRef50_K2I318|unclassified	0.7645980337
+UniRef50_E4R9J4	0.7645697015
+UniRef50_E4R9J4|unclassified	0.7645697015
+UniRef50_F2KD91	0.7645697015
+UniRef50_F2KD91|unclassified	0.7645697015
+UniRef50_Q6AA07	0.7645585315
+UniRef50_Q6AA07|unclassified	0.7645585315
+UniRef50_W7G027	0.7645327482
+UniRef50_W7G027|unclassified	0.7645327482
+UniRef50_X5K4N5: Membrane protein, putative	0.7645259939
+UniRef50_X5K4N5: Membrane protein, putative|g__Streptococcus.s__Streptococcus_agalactiae	0.7645259939
+UniRef50_UPI0001E8BBE8: hypothetical protein	0.7644995950
+UniRef50_UPI0001E8BBE8: hypothetical protein|unclassified	0.7644995950
+UniRef50_UPI0001D562DB: PREDICTED: hypothetical protein LOC100429127	0.7644489187
+UniRef50_UPI0001D562DB: PREDICTED: hypothetical protein LOC100429127|unclassified	0.7644489187
+UniRef50_A5VUC7: Tetracycline resistance protein	0.7644403761
+UniRef50_A5VUC7: Tetracycline resistance protein|unclassified	0.7644403761
+UniRef50_J2X5J3	0.7644170021
+UniRef50_J2X5J3|unclassified	0.7644170021
+UniRef50_UPI000262CDCF: ornithine cyclodeaminase	0.7643946032
+UniRef50_UPI000262CDCF: ornithine cyclodeaminase|unclassified	0.7643946032
+UniRef50_Q2CH95: ISSpo7, transposase	0.7641967979
+UniRef50_Q2CH95: ISSpo7, transposase|unclassified	0.7641967979
+UniRef50_P56867: Hexagonally packed intermediate-layer surface protein	0.7641150448
+UniRef50_P56867: Hexagonally packed intermediate-layer surface protein|g__Deinococcus.s__Deinococcus_radiodurans	0.7641150448
+UniRef50_D3QGR2	0.7641089557
+UniRef50_D3QGR2|unclassified	0.7641089557
+UniRef50_F2EYQ9	0.7640882492
+UniRef50_F2EYQ9|unclassified	0.7640882492
+UniRef50_Q167X1	0.7639538301
+UniRef50_Q167X1|unclassified	0.7639538301
+UniRef50_G9KH79: Pleckstrin-like proteiny domain containing, family G member 5 (Fragment)	0.7639419404
+UniRef50_G9KH79: Pleckstrin-like proteiny domain containing, family G member 5 (Fragment)|unclassified	0.7639419404
+UniRef50_Q1CUR3: Glutamyl-tRNA reductase	0.7639419404
+UniRef50_Q1CUR3: Glutamyl-tRNA reductase|g__Helicobacter.s__Helicobacter_pylori	0.7639419404
+UniRef50_Q6FFB5: Channel-tunnel spanning the outer membrane and periplasm segregation of daughter chromosomes	0.7639419404
+UniRef50_Q6FFB5: Channel-tunnel spanning the outer membrane and periplasm segregation of daughter chromosomes|g__Acinetobacter.s__Acinetobacter_baumannii	0.7639419404
+UniRef50_UPI00035FDA9D: hypothetical protein	0.7639419404
+UniRef50_UPI00035FDA9D: hypothetical protein|unclassified	0.7639419404
+UniRef50_UPI00037A38D7: hypothetical protein	0.7638816254
+UniRef50_UPI00037A38D7: hypothetical protein|unclassified	0.7638816254
+UniRef50_H9KRJ0	0.7638753433
+UniRef50_H9KRJ0|unclassified	0.7638753433
+UniRef50_UPI0003ACC62C: PREDICTED: serine/arginine repetitive matrix protein 3-like, partial	0.7638647732
+UniRef50_UPI0003ACC62C: PREDICTED: serine/arginine repetitive matrix protein 3-like, partial|unclassified	0.7638647732
+UniRef50_Q0FG43: Predicted ornithine cyclodeaminase	0.7637975083
+UniRef50_Q0FG43: Predicted ornithine cyclodeaminase|unclassified	0.7637975083
+UniRef50_F8JUG5: Secreted protein	0.7637832527
+UniRef50_F8JUG5: Secreted protein|unclassified	0.7637832527
+UniRef50_C8RXT0	0.7637246981
+UniRef50_C8RXT0|unclassified	0.7637246981
+UniRef50_U5FQ27	0.7635298097
+UniRef50_U5FQ27|unclassified	0.7635298097
+UniRef50_J3P0I1	0.7634728668
+UniRef50_J3P0I1|unclassified	0.7634728668
+UniRef50_X5EIV9	0.7634179537
+UniRef50_X5EIV9|unclassified	0.7634179537
+UniRef50_UPI0001632402: hypothetical protein	0.7634091638
+UniRef50_UPI0001632402: hypothetical protein|unclassified	0.7634091638
+UniRef50_UPI00016B1721: pyrophosphatase, MutT/nudix family protein	0.7633593976
+UniRef50_UPI00016B1721: pyrophosphatase, MutT/nudix family protein|unclassified	0.7633593976
+UniRef50_B4GQQ9: GL13978	0.7633587786
+UniRef50_B4GQQ9: GL13978|unclassified	0.7633587786
+UniRef50_Q28NR3	0.7632605095
+UniRef50_Q28NR3|unclassified	0.7632605095
+UniRef50_A0A034KNE5	0.7631384401
+UniRef50_A0A034KNE5|unclassified	0.7631384401
+UniRef50_K6YKE1	0.7631238743
+UniRef50_K6YKE1|unclassified	0.7631238743
+UniRef50_A4EKM9	0.7630588042
+UniRef50_A4EKM9|unclassified	0.7630588042
+UniRef50_UPI00029A706B: MerR family transcriptional regulator	0.7629613266
+UniRef50_UPI00029A706B: MerR family transcriptional regulator|unclassified	0.7629613266
+UniRef50_A0A017LAD4: Putative prophage side tail fiber protein	0.7628799136
+UniRef50_A0A017LAD4: Putative prophage side tail fiber protein|unclassified	0.7628799136
+UniRef50_I0KD42	0.7628707413
+UniRef50_I0KD42|unclassified	0.7628707413
+UniRef50_F7U1Y8: Ribonucleoside-diphosphate reductase subunit alpha	0.7628095659
+UniRef50_F7U1Y8: Ribonucleoside-diphosphate reductase subunit alpha|unclassified	0.7628095659
+UniRef50_Q9JYM0: Thiol:disulfide interchange protein DsbD	0.7627765065
+UniRef50_Q9JYM0: Thiol:disulfide interchange protein DsbD|g__Neisseria.s__Neisseria_meningitidis	0.7627765065
+UniRef50_A5PEP5	0.7627634513
+UniRef50_A5PEP5|unclassified	0.7627634513
+UniRef50_UPI000465B31F: hypothetical protein	0.7626063524
+UniRef50_UPI000465B31F: hypothetical protein|unclassified	0.7626063524
+UniRef50_F2UI71	0.7625934965
+UniRef50_F2UI71|unclassified	0.7625934965
+UniRef50_D2VIA9: Predicted protein	0.7623905218
+UniRef50_D2VIA9: Predicted protein|unclassified	0.7623905218
+UniRef50_C1ELB5: Bis(5'-nucleosyl)-tetraphosphatase PrpE [asymmetrical]	0.7623824750
+UniRef50_C1ELB5: Bis(5'-nucleosyl)-tetraphosphatase PrpE [asymmetrical]|unclassified	0.7623824750
+UniRef50_UPI0002BC5668: hypothetical protein, partial	0.7623555454
+UniRef50_UPI0002BC5668: hypothetical protein, partial|unclassified	0.7623555454
+UniRef50_A3SWD6	0.7623351109
+UniRef50_A3SWD6|unclassified	0.7623351109
+UniRef50_UPI0003777D9D: hypothetical protein	0.7623065387
+UniRef50_UPI0003777D9D: hypothetical protein|unclassified	0.7623065387
+UniRef50_H5YDF6	0.7622395835
+UniRef50_H5YDF6|unclassified	0.7622395835
+UniRef50_F6FVA2: NADH-quinone oxidoreductase, F subunit	0.7621951220
+UniRef50_F6FVA2: NADH-quinone oxidoreductase, F subunit|g__Deinococcus.s__Deinococcus_radiodurans	0.7621951220
+UniRef50_G7ZLV3	0.7621951220
+UniRef50_G7ZLV3|unclassified	0.7621951220
+UniRef50_Q6UXR0: GWSI6489	0.7621951220
+UniRef50_Q6UXR0: GWSI6489|g__Acinetobacter.s__Acinetobacter_baumannii	0.7621951220
+UniRef50_H3VNR2	0.7621149317
+UniRef50_H3VNR2|unclassified	0.7621149317
+UniRef50_UPI00039CF341: phosphonate C-P lyase	0.7620958118
+UniRef50_UPI00039CF341: phosphonate C-P lyase|unclassified	0.7620958118
+UniRef50_X1XKL2	0.7620954268
+UniRef50_X1XKL2|unclassified	0.7620954268
+UniRef50_R0MK27: Phenylacetic acid degradation protein paaD	0.7620049966
+UniRef50_R0MK27: Phenylacetic acid degradation protein paaD|unclassified	0.7620049966
+UniRef50_UPI00036584C7: hypothetical protein	0.7619379094
+UniRef50_UPI00036584C7: hypothetical protein|unclassified	0.7619379094
+UniRef50_A8IHG6: Predicted protein	0.7619047619
+UniRef50_A8IHG6: Predicted protein|unclassified	0.7619047619
+UniRef50_UPI000262CACD: citrate lyase subunit beta	0.7618030385
+UniRef50_UPI000262CACD: citrate lyase subunit beta|unclassified	0.7618030385
+UniRef50_C1MS99: Predicted protein	0.7617997901
+UniRef50_C1MS99: Predicted protein|unclassified	0.7617997901
+UniRef50_D5MFI1	0.7617376414
+UniRef50_D5MFI1|unclassified	0.7617376414
+UniRef50_F2E3C9: Predicted protein (Fragment)	0.7617195486
+UniRef50_F2E3C9: Predicted protein (Fragment)|unclassified	0.7617195486
+UniRef50_Q89AP8: Acetolactate synthase small subunit	0.7614575331
+UniRef50_Q89AP8: Acetolactate synthase small subunit|unclassified	0.7614575331
+UniRef50_F3KDW2: Acyl carrier protein	0.7613336331
+UniRef50_F3KDW2: Acyl carrier protein|unclassified	0.7613336331
+UniRef50_Q6DAT5: L-threonine 3-dehydrogenase	0.7612932049
+UniRef50_Q6DAT5: L-threonine 3-dehydrogenase|unclassified	0.7612932049
+UniRef50_A0A018MR13: CCA-adding enzyme	0.7612807895
+UniRef50_A0A018MR13: CCA-adding enzyme|unclassified	0.7612807895
+UniRef50_K1CNB3	0.7612597145
+UniRef50_K1CNB3|unclassified	0.7612597145
+UniRef50_UPI000379B49C: hypothetical protein	0.7612591403
+UniRef50_UPI000379B49C: hypothetical protein|unclassified	0.7612591403
+UniRef50_C6BW21: Orotate phosphoribosyltransferase	0.7612019805
+UniRef50_C6BW21: Orotate phosphoribosyltransferase|unclassified	0.7612019805
+UniRef50_B4U1A4: Phosphoglycerate mutase family	0.7611840823
+UniRef50_B4U1A4: Phosphoglycerate mutase family|unclassified	0.7611840823
+UniRef50_R9E5M0	0.7611243229
+UniRef50_R9E5M0|unclassified	0.7611243229
+UniRef50_UPI00046FBB36: hypothetical protein, partial	0.7610981870
+UniRef50_UPI00046FBB36: hypothetical protein, partial|unclassified	0.7610981870
+UniRef50_T6SXM5	0.7610724676
+UniRef50_T6SXM5|unclassified	0.7610724676
+UniRef50_UPI0003B739F5: endonuclease	0.7610591702
+UniRef50_UPI0003B739F5: endonuclease|unclassified	0.7610591702
+UniRef50_H9UPR4: Sel1 domain protein repeat-containing protein	0.7610528169
+UniRef50_H9UPR4: Sel1 domain protein repeat-containing protein|unclassified	0.7610528169
+UniRef50_Q60DZ2	0.7610350076
+UniRef50_Q60DZ2|unclassified	0.7610350076
+UniRef50_M5ZK44	0.7607266546
+UniRef50_M5ZK44|unclassified	0.7607266546
+UniRef50_J3KXN1	0.7606359717
+UniRef50_J3KXN1|unclassified	0.7606359717
+UniRef50_UPI00046813B7: hypothetical protein	0.7606033898
+UniRef50_UPI00046813B7: hypothetical protein|unclassified	0.7606033898
+UniRef50_W1VJI9: DNA replication and repair protein RecF	0.7605681633
+UniRef50_W1VJI9: DNA replication and repair protein RecF|unclassified	0.7605681633
+UniRef50_UPI00047B5FB5: 3-oxoacyl-ACP synthase, partial	0.7605214485
+UniRef50_UPI00047B5FB5: 3-oxoacyl-ACP synthase, partial|unclassified	0.7605214485
+UniRef50_UPI0004635F19: hypothetical protein	0.7604927159
+UniRef50_UPI0004635F19: hypothetical protein|unclassified	0.7604927159
+UniRef50_Q9JY28	0.7604562738
+UniRef50_Q9JY28|g__Neisseria.s__Neisseria_meningitidis	0.7604562738
+UniRef50_B8H6Y0	0.7604525056
+UniRef50_B8H6Y0|unclassified	0.7604525056
+UniRef50_UPI0002B43AC6: PREDICTED: translation factor GUF1, mitochondrial-like	0.7602214600
+UniRef50_UPI0002B43AC6: PREDICTED: translation factor GUF1, mitochondrial-like|unclassified	0.7602214600
+UniRef50_E4WMF0	0.7601810138
+UniRef50_E4WMF0|unclassified	0.7601810138
+UniRef50_R6HNH6	0.7601488309
+UniRef50_R6HNH6|unclassified	0.7601488309
+UniRef50_UPI000328FEA3: PREDICTED: proline-rich protein 2-like	0.7600914489
+UniRef50_UPI000328FEA3: PREDICTED: proline-rich protein 2-like|unclassified	0.7600914489
+UniRef50_UPI00036C1384: hypothetical protein	0.7600675204
+UniRef50_UPI00036C1384: hypothetical protein|unclassified	0.7600675204
+UniRef50_A4XQ45: Urease subunit beta	0.7600295456
+UniRef50_A4XQ45: Urease subunit beta|unclassified	0.7600295456
+UniRef50_UPI00046335EB: hypothetical protein, partial	0.7599451664
+UniRef50_UPI00046335EB: hypothetical protein, partial|unclassified	0.7599451664
+UniRef50_A8JJU0: Predicted protein (Fragment)	0.7598784195
+UniRef50_A8JJU0: Predicted protein (Fragment)|unclassified	0.7598784195
+UniRef50_G7M8Y3: Flagellar biosynthetic protein FlhF	0.7598784195
+UniRef50_G7M8Y3: Flagellar biosynthetic protein FlhF|g__Clostridium.s__Clostridium_beijerinckii	0.7598784195
+UniRef50_Z2C950	0.7598667954
+UniRef50_Z2C950|unclassified	0.7598667954
+UniRef50_A6V0X3	0.7598619254
+UniRef50_A6V0X3|unclassified	0.7598619254
+UniRef50_UPI0003628A16: hypothetical protein	0.7598185064
+UniRef50_UPI0003628A16: hypothetical protein|unclassified	0.7598185064
+UniRef50_A0A017LKG1: YfbO domain protein	0.7598103004
+UniRef50_A0A017LKG1: YfbO domain protein|unclassified	0.7598103004
+UniRef50_I1E9S6	0.7597623576
+UniRef50_I1E9S6|unclassified	0.7597623576
+UniRef50_UPI0003AD846F: PREDICTED: basic proline-rich protein-like	0.7596340195
+UniRef50_UPI0003AD846F: PREDICTED: basic proline-rich protein-like|unclassified	0.7596340195
+UniRef50_UPI0004718C4D: fuculose phosphate aldolase	0.7595849430
+UniRef50_UPI0004718C4D: fuculose phosphate aldolase|unclassified	0.7595849430
+UniRef50_UPI0004117F04: hypothetical protein	0.7595245447
+UniRef50_UPI0004117F04: hypothetical protein|unclassified	0.7595245447
+UniRef50_UPI000465431D: hypothetical protein	0.7595086895
+UniRef50_UPI000465431D: hypothetical protein|unclassified	0.7595086895
+UniRef50_H6RSF4	0.7594789205
+UniRef50_H6RSF4|unclassified	0.7594789205
+UniRef50_UPI0002D281B5: hypothetical protein	0.7594569181
+UniRef50_UPI0002D281B5: hypothetical protein|unclassified	0.7594569181
+UniRef50_X1NWA5: Marine sediment metagenome DNA, contig: S06H3_S06271 (Fragment)	0.7593563165
+UniRef50_X1NWA5: Marine sediment metagenome DNA, contig: S06H3_S06271 (Fragment)|unclassified	0.7593563165
+UniRef50_UPI00047C1764: hydrogenase maturation protease	0.7593283712
+UniRef50_UPI00047C1764: hydrogenase maturation protease|unclassified	0.7593283712
+UniRef50_UPI00030D7719: hypothetical protein	0.7593232562
+UniRef50_UPI00030D7719: hypothetical protein|unclassified	0.7593232562
+UniRef50_UPI0003ABA7EF: PREDICTED: cAMP-dependent protein kinase type I-beta regulatory subunit	0.7593135849
+UniRef50_UPI0003ABA7EF: PREDICTED: cAMP-dependent protein kinase type I-beta regulatory subunit|unclassified	0.7593135849
+UniRef50_Z9KIC6	0.7593121381
+UniRef50_Z9KIC6|unclassified	0.7593121381
+UniRef50_M1MUH2: Flagellar hook-associated protein 2	0.7593014427
+UniRef50_M1MUH2: Flagellar hook-associated protein 2|g__Clostridium.s__Clostridium_beijerinckii	0.7593014427
+UniRef50_J0YMX4	0.7591713953
+UniRef50_J0YMX4|unclassified	0.7591713953
+UniRef50_D8AB94: Cysteine desulfurase activator complex subunit SufB	0.7591375799
+UniRef50_D8AB94: Cysteine desulfurase activator complex subunit SufB|unclassified	0.7591375799
+UniRef50_D7ZUD4	0.7591051733
+UniRef50_D7ZUD4|unclassified	0.7591051733
+UniRef50_B9TNG2	0.7590804207
+UniRef50_B9TNG2|unclassified	0.7590804207
+UniRef50_K8NWJ7	0.7590711853
+UniRef50_K8NWJ7|unclassified	0.7590711853
+UniRef50_S3IVF0	0.7588153653
+UniRef50_S3IVF0|unclassified	0.7588153653
+UniRef50_J9P1W0	0.7587505549
+UniRef50_J9P1W0|unclassified	0.7587505549
+UniRef50_A6UC38: Urease subunit beta	0.7587188525
+UniRef50_A6UC38: Urease subunit beta|unclassified	0.7587188525
+UniRef50_V1SPC6: Pheromone autoinducer 2 transporter (Fragment)	0.7586073985
+UniRef50_V1SPC6: Pheromone autoinducer 2 transporter (Fragment)|unclassified	0.7586073985
+UniRef50_M7P3L9	0.7586049486
+UniRef50_M7P3L9|unclassified	0.7586049486
+UniRef50_UPI00036F10D0: hypothetical protein	0.7585867380
+UniRef50_UPI00036F10D0: hypothetical protein|unclassified	0.7585867380
+UniRef50_Q090J6	0.7583848496
+UniRef50_Q090J6|unclassified	0.7583848496
+UniRef50_J2WQI8	0.7582933615
+UniRef50_J2WQI8|unclassified	0.7582933615
+UniRef50_UPI0003619761: hypothetical protein	0.7582331519
+UniRef50_UPI0003619761: hypothetical protein|unclassified	0.7582331519
+UniRef50_J9G6J0: Membrane protein	0.7581846391
+UniRef50_J9G6J0: Membrane protein|unclassified	0.7581846391
+UniRef50_J9P8P6	0.7580612935
+UniRef50_J9P8P6|unclassified	0.7580612935
+UniRef50_UPI0003665BAF: hypothetical protein	0.7580013980
+UniRef50_UPI0003665BAF: hypothetical protein|unclassified	0.7580013980
+UniRef50_S4HRH5	0.7579990978
+UniRef50_S4HRH5|unclassified	0.7579990978
+UniRef50_W2GPF9	0.7579811135
+UniRef50_W2GPF9|unclassified	0.7579811135
+UniRef50_UPI00047712DF: cystathionine beta-lyase	0.7579590673
+UniRef50_UPI00047712DF: cystathionine beta-lyase|unclassified	0.7579590673
+UniRef50_F1B2P1	0.7579231223
+UniRef50_F1B2P1|unclassified	0.7579231223
+UniRef50_J7L817	0.7579017599
+UniRef50_J7L817|unclassified	0.7579017599
+UniRef50_H8FXI4	0.7578162347
+UniRef50_H8FXI4|unclassified	0.7578162347
+UniRef50_Q0BT08: Ribosomal RNA large subunit methyltransferase E	0.7577447344
+UniRef50_Q0BT08: Ribosomal RNA large subunit methyltransferase E|unclassified	0.7577447344
+UniRef50_UPI000219384C: amino acid transport protein, partial	0.7577050300
+UniRef50_UPI000219384C: amino acid transport protein, partial|unclassified	0.7577050300
+UniRef50_UPI0003B71026: MerR family transcriptional regulator	0.7576418176
+UniRef50_UPI0003B71026: MerR family transcriptional regulator|unclassified	0.7576418176
+UniRef50_UPI0003A4B73E: hypothetical protein	0.7575945834
+UniRef50_UPI0003A4B73E: hypothetical protein|unclassified	0.7575945834
+UniRef50_X7ED55	0.7575381021
+UniRef50_X7ED55|unclassified	0.7575381021
+UniRef50_D3H7S7: Ferredoxin	0.7571681085
+UniRef50_D3H7S7: Ferredoxin|unclassified	0.7571681085
+UniRef50_UPI0001B44763: transcriptional regulator ZurR (Zinc uptake regulator), partial	0.7571645133
+UniRef50_UPI0001B44763: transcriptional regulator ZurR (Zinc uptake regulator), partial|unclassified	0.7571645133
+UniRef50_C5X0I7	0.7570961448
+UniRef50_C5X0I7|unclassified	0.7570961448
+UniRef50_L1N290: TRAP transporter, DctM subunit	0.7570893394
+UniRef50_L1N290: TRAP transporter, DctM subunit|unclassified	0.7570893394
+UniRef50_A7HH78: PE-PGRS family protein	0.7570885266
+UniRef50_A7HH78: PE-PGRS family protein|unclassified	0.7570885266
+UniRef50_P94558: Non-canonical purine NTP pyrophosphatase	0.7570754101
+UniRef50_P94558: Non-canonical purine NTP pyrophosphatase|unclassified	0.7570754101
+UniRef50_UPI000395A7E4: membrane protein	0.7570643195
+UniRef50_UPI000395A7E4: membrane protein|unclassified	0.7570643195
+UniRef50_A9KHS7: Radical SAM domain protein	0.7570022710
+UniRef50_A9KHS7: Radical SAM domain protein|g__Clostridium.s__Clostridium_beijerinckii	0.7570022710
+UniRef50_H5Y2B5: Cytosine deaminase-like metal-dependent hydrolase	0.7570022710
+UniRef50_H5Y2B5: Cytosine deaminase-like metal-dependent hydrolase|g__Clostridium.s__Clostridium_beijerinckii	0.7570022710
+UniRef50_O82392: Phosphomethylpyrimidine synthase, chloroplastic	0.7570022710
+UniRef50_O82392: Phosphomethylpyrimidine synthase, chloroplastic|g__Deinococcus.s__Deinococcus_radiodurans	0.7570022710
+UniRef50_V7ZFF9: S-methylmethionine permease	0.7570022710
+UniRef50_V7ZFF9: S-methylmethionine permease|g__Streptococcus.s__Streptococcus_agalactiae	0.7570022710
+UniRef50_Q0AVV3: 3-oxoacyl-[acyl-carrier-protein] synthase 3	0.7569682653
+UniRef50_Q0AVV3: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	0.7569682653
+UniRef50_UPI0003141905: hypothetical protein	0.7568504362
+UniRef50_UPI0003141905: hypothetical protein|unclassified	0.7568504362
+UniRef50_Q94JQ3: Serine hydroxymethyltransferase 3, chloroplastic	0.7567520118
+UniRef50_Q94JQ3: Serine hydroxymethyltransferase 3, chloroplastic|unclassified	0.7567520118
+UniRef50_E3A2D2	0.7566545365
+UniRef50_E3A2D2|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7566545365
+UniRef50_M5EM14	0.7565967694
+UniRef50_M5EM14|unclassified	0.7565967694
+UniRef50_A0A038G0X4	0.7565296231
+UniRef50_A0A038G0X4|unclassified	0.7565296231
+UniRef50_A0A024HXI8	0.7564871653
+UniRef50_A0A024HXI8|unclassified	0.7564871653
+UniRef50_Q1LFU5: Pyridoxine kinase	0.7563904323
+UniRef50_Q1LFU5: Pyridoxine kinase|unclassified	0.7563904323
+UniRef50_UPI0003C7EFDD: MerR family transcriptional regulator	0.7563110464
+UniRef50_UPI0003C7EFDD: MerR family transcriptional regulator|unclassified	0.7563110464
+UniRef50_R3HP87	0.7563049255
+UniRef50_R3HP87|unclassified	0.7563049255
+UniRef50_X1QBA6: Marine sediment metagenome DNA, contig: S12H4_C04702 (Fragment)	0.7562645901
+UniRef50_X1QBA6: Marine sediment metagenome DNA, contig: S12H4_C04702 (Fragment)|unclassified	0.7562645901
+UniRef50_W6RBC1: Phage head-tail adaptor	0.7562227120
+UniRef50_W6RBC1: Phage head-tail adaptor|unclassified	0.7562227120
+UniRef50_UPI00030D1E5B: hypothetical protein	0.7561735674
+UniRef50_UPI00030D1E5B: hypothetical protein|unclassified	0.7561735674
+UniRef50_A5L2P6: Putative ABC transporter	0.7561515201
+UniRef50_A5L2P6: Putative ABC transporter|unclassified	0.7561515201
+UniRef50_UPI0003EB2278: hypothetical protein, partial	0.7559923260
+UniRef50_UPI0003EB2278: hypothetical protein, partial|unclassified	0.7559923260
+UniRef50_UPI000381C2B6: hypothetical protein	0.7559674678
+UniRef50_UPI000381C2B6: hypothetical protein|unclassified	0.7559674678
+UniRef50_W1F9P9: L,D-transpeptidase YcfS	0.7559280159
+UniRef50_W1F9P9: L,D-transpeptidase YcfS|unclassified	0.7559280159
+UniRef50_S5XQ93	0.7558873172
+UniRef50_S5XQ93|unclassified	0.7558873172
+UniRef50_UPI000368DC29: hypothetical protein	0.7558824487
+UniRef50_UPI000368DC29: hypothetical protein|unclassified	0.7558824487
+UniRef50_A6LT70: Phage portal protein, SPP1	0.7558578987
+UniRef50_A6LT70: Phage portal protein, SPP1|g__Clostridium.s__Clostridium_beijerinckii	0.7558578987
+UniRef50_Q9ZK62: Signal recognition particle protein	0.7558578987
+UniRef50_Q9ZK62: Signal recognition particle protein|g__Helicobacter.s__Helicobacter_pylori	0.7558578987
+UniRef50_UPI000255F1D3: hypothetical protein	0.7558578987
+UniRef50_UPI000255F1D3: hypothetical protein|unclassified	0.7558578987
+UniRef50_V4BXU0	0.7558371418
+UniRef50_V4BXU0|unclassified	0.7558371418
+UniRef50_U3KI70	0.7557689593
+UniRef50_U3KI70|unclassified	0.7557689593
+UniRef50_UPI00038FA33F: Aliphatic sulfonates import ATP-binding protein SsuB, partial	0.7557414522
+UniRef50_UPI00038FA33F: Aliphatic sulfonates import ATP-binding protein SsuB, partial|unclassified	0.7557414522
+UniRef50_T0V3S5	0.7556835282
+UniRef50_T0V3S5|unclassified	0.7556835282
+UniRef50_A0A018QYL1: Mechanosensitive ion channel protein (Fragment)	0.7556260288
+UniRef50_A0A018QYL1: Mechanosensitive ion channel protein (Fragment)|unclassified	0.7556260288
+UniRef50_H1QUK8	0.7555479421
+UniRef50_H1QUK8|unclassified	0.7555479421
+UniRef50_R7U693	0.7555082351
+UniRef50_R7U693|unclassified	0.7555082351
+UniRef50_G8UWR0	0.7554317966
+UniRef50_G8UWR0|unclassified	0.7554317966
+UniRef50_H2FTW2	0.7553831866
+UniRef50_H2FTW2|unclassified	0.7553831866
+UniRef50_E6USN9	0.7553082665
+UniRef50_E6USN9|unclassified	0.7553082665
+UniRef50_G2MDU0: Outer membrane protein HopG	0.7552870091
+UniRef50_G2MDU0: Outer membrane protein HopG|g__Helicobacter.s__Helicobacter_pylori	0.7552870091
+UniRef50_G8VAM5: Transferase	0.7552870091
+UniRef50_G8VAM5: Transferase|g__Propionibacterium.s__Propionibacterium_acnes	0.7552870091
+UniRef50_H8GSQ0: VanW-like protein	0.7552870091
+UniRef50_H8GSQ0: VanW-like protein|g__Deinococcus.s__Deinococcus_radiodurans	0.7552870091
+UniRef50_K4RIH9: Transporter	0.7552870091
+UniRef50_K4RIH9: Transporter|g__Helicobacter.s__Helicobacter_pylori	0.7552870091
+UniRef50_UPI0003334599: PREDICTED: putative deoxyribonuclease TATDN3	0.7552870091
+UniRef50_UPI0003334599: PREDICTED: putative deoxyribonuclease TATDN3|unclassified	0.7552870091
+UniRef50_D6K0E4: Tellurium resistance protein	0.7552435591
+UniRef50_D6K0E4: Tellurium resistance protein|unclassified	0.7552435591
+UniRef50_Q6ZL79: Putative PE_PGRS family protein	0.7551568736
+UniRef50_Q6ZL79: Putative PE_PGRS family protein|unclassified	0.7551568736
+UniRef50_F3ZKC2: Putative ADP-ribosylation/Crystallin J1	0.7551537181
+UniRef50_F3ZKC2: Putative ADP-ribosylation/Crystallin J1|unclassified	0.7551537181
+UniRef50_UPI000371E002: hypothetical protein	0.7550617144
+UniRef50_UPI000371E002: hypothetical protein|unclassified	0.7550617144
+UniRef50_Q49YN2	0.7550327894
+UniRef50_Q49YN2|unclassified	0.7550327894
+UniRef50_F3R255: Coproporphyrinogen dehydrogenase domain protein	0.7549571838
+UniRef50_F3R255: Coproporphyrinogen dehydrogenase domain protein|unclassified	0.7549571838
+UniRef50_U3KAJ8	0.7548873275
+UniRef50_U3KAJ8|unclassified	0.7548873275
+UniRef50_V1QLU1: Lipoprotein	0.7547251725
+UniRef50_V1QLU1: Lipoprotein|unclassified	0.7547251725
+UniRef50_I6SKB7	0.7547169811
+UniRef50_I6SKB7|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7547169811
+UniRef50_M1MCY2: Glycosyl transferase family 2	0.7547169811
+UniRef50_M1MCY2: Glycosyl transferase family 2|g__Clostridium.s__Clostridium_beijerinckii	0.7547169811
+UniRef50_P03708: Terminase large subunit	0.7547169811
+UniRef50_P03708: Terminase large subunit|g__Escherichia.s__Escherichia_coli	0.7547169811
+UniRef50_Q556T8	0.7547169811
+UniRef50_Q556T8|unclassified	0.7547169811
+UniRef50_Q5NZB2	0.7547169811
+UniRef50_Q5NZB2|unclassified	0.7547169811
+UniRef50_V6UST3	0.7546045808
+UniRef50_V6UST3|unclassified	0.7546045808
+UniRef50_UPI0002E3E4A1: hypothetical protein	0.7545786740
+UniRef50_UPI0002E3E4A1: hypothetical protein|unclassified	0.7545786740
+UniRef50_C2N6Z3	0.7544721491
+UniRef50_C2N6Z3|unclassified	0.7544721491
+UniRef50_U2Q7Y7: Putative membrane protein	0.7543816986
+UniRef50_U2Q7Y7: Putative membrane protein|unclassified	0.7543816986
+UniRef50_UPI000473FCD3: hypothetical protein, partial	0.7542517291
+UniRef50_UPI000473FCD3: hypothetical protein, partial|unclassified	0.7542517291
+UniRef50_E4B644	0.7542193825
+UniRef50_E4B644|unclassified	0.7542193825
+UniRef50_F8HXV5: Multidrug resistance efflux pump	0.7541478130
+UniRef50_F8HXV5: Multidrug resistance efflux pump|g__Streptococcus.s__Streptococcus_agalactiae	0.7541478130
+UniRef50_Q51397: Outer membrane protein OprJ	0.7541478130
+UniRef50_Q51397: Outer membrane protein OprJ|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7541478130
+UniRef50_UPI0003086B0F: hypothetical protein	0.7541478130
+UniRef50_UPI0003086B0F: hypothetical protein|unclassified	0.7541478130
+UniRef50_X3ELT0: Enterobactin synthase	0.7540281774
+UniRef50_X3ELT0: Enterobactin synthase|unclassified	0.7540281774
+UniRef50_V6ULT1	0.7540072928
+UniRef50_V6ULT1|unclassified	0.7540072928
+UniRef50_X6L3X0	0.7539819579
+UniRef50_X6L3X0|unclassified	0.7539819579
+UniRef50_UPI000470D564: hypothetical protein	0.7539373738
+UniRef50_UPI000470D564: hypothetical protein|unclassified	0.7539373738
+UniRef50_F4RL77	0.7538617064
+UniRef50_F4RL77|unclassified	0.7538617064
+UniRef50_UPI0003801F95: hypothetical protein, partial	0.7537952807
+UniRef50_UPI0003801F95: hypothetical protein, partial|unclassified	0.7537952807
+UniRef50_UPI0003A5BE9E: lipopolysaccharide kinase	0.7537944431
+UniRef50_UPI0003A5BE9E: lipopolysaccharide kinase|unclassified	0.7537944431
+UniRef50_K0JWH3: Putative membrane protein	0.7537803512
+UniRef50_K0JWH3: Putative membrane protein|unclassified	0.7537803512
+UniRef50_Q47HX8: BRO, N-terminal	0.7537548298
+UniRef50_Q47HX8: BRO, N-terminal|unclassified	0.7537548298
+UniRef50_UPI000380A990: hypothetical protein	0.7536799295
+UniRef50_UPI000380A990: hypothetical protein|unclassified	0.7536799295
+UniRef50_G7GXB7: Putative oxidoreductase (Fragment)	0.7536348236
+UniRef50_G7GXB7: Putative oxidoreductase (Fragment)|unclassified	0.7536348236
+UniRef50_UPI0004660560: membrane protein, partial	0.7536151312
+UniRef50_UPI0004660560: membrane protein, partial|unclassified	0.7536151312
+UniRef50_I0E8W5	0.7535795026
+UniRef50_I0E8W5|g__Helicobacter.s__Helicobacter_pylori	0.7535795026
+UniRef50_B5YF46: Peptide deformylase	0.7535203255
+UniRef50_B5YF46: Peptide deformylase|unclassified	0.7535203255
+UniRef50_UPI000255EFAA: hypothetical protein	0.7533870956
+UniRef50_UPI000255EFAA: hypothetical protein|unclassified	0.7533870956
+UniRef50_X6D2K4	0.7533255990
+UniRef50_X6D2K4|unclassified	0.7533255990
+UniRef50_B6IR21: DHC, diheme Cytochrome c	0.7531872560
+UniRef50_B6IR21: DHC, diheme Cytochrome c|unclassified	0.7531872560
+UniRef50_A0JUZ2: LexA repressor	0.7531573493
+UniRef50_A0JUZ2: LexA repressor|unclassified	0.7531573493
+UniRef50_Q9RVZ5: Zinc metalloprotease, putative	0.7530120482
+UniRef50_Q9RVZ5: Zinc metalloprotease, putative|g__Deinococcus.s__Deinococcus_radiodurans	0.7530120482
+UniRef50_Q3IRX5: Serine hydroxymethyltransferase	0.7529640690
+UniRef50_Q3IRX5: Serine hydroxymethyltransferase|unclassified	0.7529640690
+UniRef50_B5Z3J3	0.7528495717
+UniRef50_B5Z3J3|unclassified	0.7528495717
+UniRef50_UPI0002739F39	0.7527955232
+UniRef50_UPI0002739F39|unclassified	0.7527955232
+UniRef50_I2SBD1	0.7527218052
+UniRef50_I2SBD1|unclassified	0.7527218052
+UniRef50_UPI00046452D1: biopolymer transporter	0.7526753701
+UniRef50_UPI00046452D1: biopolymer transporter|unclassified	0.7526753701
+UniRef50_V4STF9: Ribosomal RNA small subunit methyltransferase E	0.7526482521
+UniRef50_V4STF9: Ribosomal RNA small subunit methyltransferase E|unclassified	0.7526482521
+UniRef50_UPI00025562D3: flavodoxin	0.7526376368
+UniRef50_UPI00025562D3: flavodoxin|unclassified	0.7526376368
+UniRef50_R8Z8L4	0.7526108696
+UniRef50_R8Z8L4|unclassified	0.7526108696
+UniRef50_B9E1R4	0.7524454477
+UniRef50_B9E1R4|g__Clostridium.s__Clostridium_beijerinckii	0.7524454477
+UniRef50_UPI0003B686A2: AraC family transcriptional regulator	0.7524036059
+UniRef50_UPI0003B686A2: AraC family transcriptional regulator|unclassified	0.7524036059
+UniRef50_UPI000472812C: hypothetical protein	0.7523362490
+UniRef50_UPI000472812C: hypothetical protein|unclassified	0.7523362490
+UniRef50_UPI00037A3165: hypothetical protein	0.7523145168
+UniRef50_UPI00037A3165: hypothetical protein|unclassified	0.7523145168
+UniRef50_UPI000476B5A8: hypothetical protein	0.7522314226
+UniRef50_UPI000476B5A8: hypothetical protein|unclassified	0.7522314226
+UniRef50_Q0C1A3: LexA repressor	0.7522219310
+UniRef50_Q0C1A3: LexA repressor|unclassified	0.7522219310
+UniRef50_A0A059IIE8	0.7522063064
+UniRef50_A0A059IIE8|unclassified	0.7522063064
+UniRef50_UPI0004410AD8: hypothetical protein AURDEDRAFT_149120	0.7521643965
+UniRef50_UPI0004410AD8: hypothetical protein AURDEDRAFT_149120|unclassified	0.7521643965
+UniRef50_M9A1V2: Phage shock C domain protein	0.7521376300
+UniRef50_M9A1V2: Phage shock C domain protein|unclassified	0.7521376300
+UniRef50_UPI00046ACF52: hypothetical protein	0.7520204747
+UniRef50_UPI00046ACF52: hypothetical protein|unclassified	0.7520204747
+UniRef50_UPI000376E7E9: hypothetical protein	0.7519462470
+UniRef50_UPI000376E7E9: hypothetical protein|unclassified	0.7519462470
+UniRef50_A5FVL8: Prolipoprotein diacylglyceryl transferase	0.7519312971
+UniRef50_A5FVL8: Prolipoprotein diacylglyceryl transferase|unclassified	0.7519312971
+UniRef50_A6M391: Methyl-accepting chemotaxis sensory transducer	0.7518796992
+UniRef50_A6M391: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	0.7518796992
+UniRef50_V5VGJ6: Membrane-fusion protein	0.7518796992
+UniRef50_V5VGJ6: Membrane-fusion protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.7518796992
+UniRef50_Q983F8: Ribosomal RNA large subunit methyltransferase E	0.7518578477
+UniRef50_Q983F8: Ribosomal RNA large subunit methyltransferase E|unclassified	0.7518578477
+UniRef50_B1FNA0	0.7516518475
+UniRef50_B1FNA0|unclassified	0.7516518475
+UniRef50_W5XIM9: 50S ribosomal protein L31	0.7514368878
+UniRef50_W5XIM9: 50S ribosomal protein L31|unclassified	0.7514368878
+UniRef50_I0IED2	0.7513148009
+UniRef50_I0IED2|unclassified	0.7513148009
+UniRef50_M4TWI8: Response regulator	0.7513148009
+UniRef50_M4TWI8: Response regulator|unclassified	0.7513148009
+UniRef50_V4GWV2: Tryptophan permease	0.7513148009
+UniRef50_V4GWV2: Tryptophan permease|g__Escherichia.s__Escherichia_coli	0.7513148009
+UniRef50_B7QX02	0.7511845033
+UniRef50_B7QX02|unclassified	0.7511845033
+UniRef50_L9MX54: Phage-like baseplate assembly protein	0.7511067829
+UniRef50_L9MX54: Phage-like baseplate assembly protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.7511067829
+UniRef50_D0K4S5	0.7507760494
+UniRef50_D0K4S5|unclassified	0.7507760494
+UniRef50_A4WZL0: Two component transcriptional regulator, winged helix family	0.7507507508
+UniRef50_A4WZL0: Two component transcriptional regulator, winged helix family|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.7507507508
+UniRef50_Q4FQ21: UDP-N-acetylmuramoylalanine--D-glutamate ligase	0.7507507508
+UniRef50_Q4FQ21: UDP-N-acetylmuramoylalanine--D-glutamate ligase|g__Acinetobacter.s__Acinetobacter_baumannii	0.7507507508
+UniRef50_U7J4M5	0.7507507508
+UniRef50_U7J4M5|g__Propionibacterium.s__Propionibacterium_acnes	0.7507507508
+UniRef50_V9B8V8	0.7506812110
+UniRef50_V9B8V8|unclassified	0.7506812110
+UniRef50_UPI00039E8AFC: branched-chain amino acid ABC transporter ATPase	0.7506037875
+UniRef50_UPI00039E8AFC: branched-chain amino acid ABC transporter ATPase|unclassified	0.7506037875
+UniRef50_UPI000365A46A: hypothetical protein	0.7505918694
+UniRef50_UPI000365A46A: hypothetical protein|unclassified	0.7505918694
+UniRef50_UPI000382E191: hypothetical protein	0.7505091990
+UniRef50_UPI000382E191: hypothetical protein|unclassified	0.7505091990
+UniRef50_UPI00047A1BEE: hypothetical protein	0.7504814945
+UniRef50_UPI00047A1BEE: hypothetical protein|unclassified	0.7504814945
+UniRef50_C6KU11: ABC transporter, permease protein (Fragment)	0.7504120350
+UniRef50_C6KU11: ABC transporter, permease protein (Fragment)|unclassified	0.7504120350
+UniRef50_G8AZG8	0.7503187191
+UniRef50_G8AZG8|unclassified	0.7503187191
+UniRef50_UPI00046F7B75: hypothetical protein	0.7501881801
+UniRef50_UPI00046F7B75: hypothetical protein|unclassified	0.7501881801
+UniRef50_F9Z2M8: L-fucose-proton symporter	0.7501875469
+UniRef50_F9Z2M8: L-fucose-proton symporter|g__Propionibacterium.s__Propionibacterium_acnes	0.7501875469
+UniRef50_Q1Q8J3: Trigger factor	0.7501875469
+UniRef50_Q1Q8J3: Trigger factor|g__Acinetobacter.s__Acinetobacter_baumannii	0.7501875469
+UniRef50_Q9ZJL8: ATP-dependent Clp protease ATP-binding subunit ClpX	0.7501875469
+UniRef50_Q9ZJL8: ATP-dependent Clp protease ATP-binding subunit ClpX|g__Helicobacter.s__Helicobacter_pylori	0.7501875469
+UniRef50_U1Y4T1	0.7501408517
+UniRef50_U1Y4T1|unclassified	0.7501408517
+UniRef50_UPI000328B58A	0.7501273726
+UniRef50_UPI000328B58A|unclassified	0.7501273726
+UniRef50_I0IHA5	0.7501137829
+UniRef50_I0IHA5|unclassified	0.7501137829
+UniRef50_I4QKP6: Conjugal transfer pilus assembly protein TraW	0.7500358164
+UniRef50_I4QKP6: Conjugal transfer pilus assembly protein TraW|unclassified	0.7500358164
+UniRef50_UPI0003776999: hypothetical protein	0.7499666441
+UniRef50_UPI0003776999: hypothetical protein|unclassified	0.7499666441
+UniRef50_T1W8S2	0.7499513554
+UniRef50_T1W8S2|unclassified	0.7499513554
+UniRef50_G1UVN7	0.7499005840
+UniRef50_G1UVN7|unclassified	0.7499005840
+UniRef50_UPI00036AF570: hypothetical protein, partial	0.7498692182
+UniRef50_UPI00036AF570: hypothetical protein, partial|unclassified	0.7498692182
+UniRef50_U9XX09	0.7498058067
+UniRef50_U9XX09|unclassified	0.7498058067
+UniRef50_Q057P9: Serine hydroxymethyltransferase	0.7497583854
+UniRef50_Q057P9: Serine hydroxymethyltransferase|unclassified	0.7497583854
+UniRef50_W7CEI9	0.7497520650
+UniRef50_W7CEI9|unclassified	0.7497520650
+UniRef50_Q5WBL0: Aliphatic sulfonates import ATP-binding protein SsuB 3	0.7497055535
+UniRef50_Q5WBL0: Aliphatic sulfonates import ATP-binding protein SsuB 3|unclassified	0.7497055535
+UniRef50_D8U6Y2	0.7496251874
+UniRef50_D8U6Y2|unclassified	0.7496251874
+UniRef50_R4ZZZ3: Transcriptional regulator pfoR	0.7495340328
+UniRef50_R4ZZZ3: Transcriptional regulator pfoR|unclassified	0.7495340328
+UniRef50_D3QGC5	0.7494460032
+UniRef50_D3QGC5|unclassified	0.7494460032
+UniRef50_A9VN54: Ribosomal RNA small subunit methyltransferase A	0.7492954236
+UniRef50_A9VN54: Ribosomal RNA small subunit methyltransferase A|unclassified	0.7492954236
+UniRef50_UPI00037BAE23: mutator mutT protein, partial	0.7491715071
+UniRef50_UPI00037BAE23: mutator mutT protein, partial|unclassified	0.7491715071
+UniRef50_H1BST7: Inner membrane transport permease ybhR	0.7491386878
+UniRef50_H1BST7: Inner membrane transport permease ybhR|unclassified	0.7491386878
+UniRef50_D8U879	0.7491138758
+UniRef50_D8U879|unclassified	0.7491138758
+UniRef50_A6LW09: Response regulator receiver protein	0.7490636704
+UniRef50_A6LW09: Response regulator receiver protein|g__Clostridium.s__Clostridium_beijerinckii	0.7490636704
+UniRef50_W1FH38: Protein AraJ	0.7490576113
+UniRef50_W1FH38: Protein AraJ|unclassified	0.7490576113
+UniRef50_A4X0H3	0.7486910575
+UniRef50_A4X0H3|unclassified	0.7486910575
+UniRef50_C6SPX8	0.7486079878
+UniRef50_C6SPX8|unclassified	0.7486079878
+UniRef50_H0JH11	0.7485993734
+UniRef50_H0JH11|unclassified	0.7485993734
+UniRef50_E2RCE8	0.7485029940
+UniRef50_E2RCE8|unclassified	0.7485029940
+UniRef50_Q3SFK0: Chromate transporter	0.7485029940
+UniRef50_Q3SFK0: Chromate transporter|g__Acinetobacter.s__Acinetobacter_baumannii	0.7485029940
+UniRef50_I4YLZ3	0.7483861899
+UniRef50_I4YLZ3|unclassified	0.7483861899
+UniRef50_H4G571	0.7482969938
+UniRef50_H4G571|unclassified	0.7482969938
+UniRef50_P10486: Type I restriction enzyme EcoR124II R protein	0.7481742966
+UniRef50_P10486: Type I restriction enzyme EcoR124II R protein|g__Neisseria.s__Neisseria_meningitidis	0.7481742966
+UniRef50_H3TNL9	0.7480818578
+UniRef50_H3TNL9|unclassified	0.7480818578
+UniRef50_A1SQR8: MATE efflux family protein	0.7479431563
+UniRef50_A1SQR8: MATE efflux family protein|g__Propionibacterium.s__Propionibacterium_acnes	0.7479431563
+UniRef50_X8EYS2	0.7479403936
+UniRef50_X8EYS2|unclassified	0.7479403936
+UniRef50_X5ZCE1: Glyoxalase	0.7477224158
+UniRef50_X5ZCE1: Glyoxalase|unclassified	0.7477224158
+UniRef50_UPI0004668D6B: hypothetical protein	0.7475466755
+UniRef50_UPI0004668D6B: hypothetical protein|unclassified	0.7475466755
+UniRef50_H8KZS4	0.7474995891
+UniRef50_H8KZS4|unclassified	0.7474995891
+UniRef50_UPI00037C0023: hypothetical protein	0.7474583612
+UniRef50_UPI00037C0023: hypothetical protein|unclassified	0.7474583612
+UniRef50_UPI0003FA3257: protein HflC	0.7474523536
+UniRef50_UPI0003FA3257: protein HflC|unclassified	0.7474523536
+UniRef50_UPI00037AC60C: hypothetical protein	0.7474509877
+UniRef50_UPI00037AC60C: hypothetical protein|unclassified	0.7474509877
+UniRef50_W8SJ83	0.7474451845
+UniRef50_W8SJ83|unclassified	0.7474451845
+UniRef50_UPI0003B46AB4: membrane protein	0.7474333140
+UniRef50_UPI0003B46AB4: membrane protein|unclassified	0.7474333140
+UniRef50_R4Z5A4	0.7474031546
+UniRef50_R4Z5A4|unclassified	0.7474031546
+UniRef50_D7CX24: Peptidase M20	0.7473841555
+UniRef50_D7CX24: Peptidase M20|g__Deinococcus.s__Deinococcus_radiodurans	0.7473841555
+UniRef50_R7CKR0: Replicative DNA helicase	0.7473841555
+UniRef50_R7CKR0: Replicative DNA helicase|g__Clostridium.s__Clostridium_beijerinckii	0.7473841555
+UniRef50_U5PBM4: Branched-chain amino acid ABC transporter substrate-binding protein	0.7473841555
+UniRef50_U5PBM4: Branched-chain amino acid ABC transporter substrate-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	0.7473841555
+UniRef50_UPI000373CC51: hypothetical protein	0.7473841555
+UniRef50_UPI000373CC51: hypothetical protein|unclassified	0.7473841555
+UniRef50_UPI00036FB801: hypothetical protein	0.7473158100
+UniRef50_UPI00036FB801: hypothetical protein|unclassified	0.7473158100
+UniRef50_T8AVG4	0.7472668119
+UniRef50_T8AVG4|unclassified	0.7472668119
+UniRef50_UPI0003AD9F55: PREDICTED: spidroin-1-like	0.7471982763
+UniRef50_UPI0003AD9F55: PREDICTED: spidroin-1-like|unclassified	0.7471982763
+UniRef50_UPI0003B2E9B7: alkylhydroperoxidase	0.7471977535
+UniRef50_UPI0003B2E9B7: alkylhydroperoxidase|unclassified	0.7471977535
+UniRef50_A0A022GRS2: GntR family transcriptional regulator	0.7470998229
+UniRef50_A0A022GRS2: GntR family transcriptional regulator|unclassified	0.7470998229
+UniRef50_F2A4X6	0.7470384126
+UniRef50_F2A4X6|unclassified	0.7470384126
+UniRef50_UPI00042356A9: exodeoxyribonuclease III	0.7469436618
+UniRef50_UPI00042356A9: exodeoxyribonuclease III|unclassified	0.7469436618
+UniRef50_Q1GHR7	0.7468505358
+UniRef50_Q1GHR7|unclassified	0.7468505358
+UniRef50_F6BVN5	0.7468424525
+UniRef50_F6BVN5|unclassified	0.7468424525
+UniRef50_F0RP65: Peptidase S41	0.7468259895
+UniRef50_F0RP65: Peptidase S41|g__Deinococcus.s__Deinococcus_radiodurans	0.7468259895
+UniRef50_K7SJI3: Transporter, major facilitator family protein	0.7468259895
+UniRef50_K7SJI3: Transporter, major facilitator family protein|g__Propionibacterium.s__Propionibacterium_acnes	0.7468259895
+UniRef50_Q9RYH2: Serine protease, subtilase family	0.7468259895
+UniRef50_Q9RYH2: Serine protease, subtilase family|g__Deinococcus.s__Deinococcus_radiodurans	0.7468259895
+UniRef50_UPI0003774C37: hypothetical protein	0.7466599937
+UniRef50_UPI0003774C37: hypothetical protein|unclassified	0.7466599937
+UniRef50_UPI0003F11E4E	0.7465290519
+UniRef50_UPI0003F11E4E|unclassified	0.7465290519
+UniRef50_W1FZE6: TRAP-type C4-dicarboxylate transport system, large permease component	0.7464768593
+UniRef50_W1FZE6: TRAP-type C4-dicarboxylate transport system, large permease component|unclassified	0.7464768593
+UniRef50_UPI0003B46B91: carbonic anhydrase	0.7462793478
+UniRef50_UPI0003B46B91: carbonic anhydrase|unclassified	0.7462793478
+UniRef50_N6YLX8: Putative metal-dependent RNase	0.7462274728
+UniRef50_N6YLX8: Putative metal-dependent RNase|unclassified	0.7462274728
+UniRef50_I3X1I9	0.7459689759
+UniRef50_I3X1I9|unclassified	0.7459689759
+UniRef50_A6UYC6	0.7457348797
+UniRef50_A6UYC6|unclassified	0.7457348797
+UniRef50_A0A032DM97	0.7457121551
+UniRef50_A0A032DM97|g__Staphylococcus.s__Staphylococcus_aureus	0.7457121551
+UniRef50_C4LGM2: Catalase	0.7457121551
+UniRef50_C4LGM2: Catalase|g__Propionibacterium.s__Propionibacterium_acnes	0.7457121551
+UniRef50_A0A029RJU7: Putative ribonucleoside diphosphate reductase 1	0.7456561143
+UniRef50_A0A029RJU7: Putative ribonucleoside diphosphate reductase 1|unclassified	0.7456561143
+UniRef50_J0VQZ8	0.7456413126
+UniRef50_J0VQZ8|unclassified	0.7456413126
+UniRef50_Q2LSL3: Chemotaxis response regulator protein-glutamate methylesterase 2	0.7455238718
+UniRef50_Q2LSL3: Chemotaxis response regulator protein-glutamate methylesterase 2|unclassified	0.7455238718
+UniRef50_Q4ZCB7: ORF052	0.7455161791
+UniRef50_Q4ZCB7: ORF052|unclassified	0.7455161791
+UniRef50_UPI000360F4C1: hypothetical protein	0.7454278773
+UniRef50_UPI000360F4C1: hypothetical protein|unclassified	0.7454278773
+UniRef50_Q08Z07	0.7453967092
+UniRef50_Q08Z07|unclassified	0.7453967092
+UniRef50_UPI000469D390: ribose uptake protein RbsU	0.7453248973
+UniRef50_UPI000469D390: ribose uptake protein RbsU|unclassified	0.7453248973
+UniRef50_UPI000371C196: DNA mismatch repair protein MutS	0.7452520414
+UniRef50_UPI000371C196: DNA mismatch repair protein MutS|unclassified	0.7452520414
+UniRef50_I0HBR4	0.7449029437
+UniRef50_I0HBR4|unclassified	0.7449029437
+UniRef50_E3I2I3: PUCC protein	0.7448229961
+UniRef50_E3I2I3: PUCC protein|unclassified	0.7448229961
+UniRef50_W0YKK5: Dehydrogenase	0.7446657534
+UniRef50_W0YKK5: Dehydrogenase|unclassified	0.7446657534
+UniRef50_UPI0002E17213: hypothetical protein	0.7445882124
+UniRef50_UPI0002E17213: hypothetical protein|unclassified	0.7445882124
+UniRef50_B2VB13: TraW protein	0.7445813497
+UniRef50_B2VB13: TraW protein|unclassified	0.7445813497
+UniRef50_UPI00016C427F: glutamine ABC transporter ATP-binding protein	0.7445475852
+UniRef50_UPI00016C427F: glutamine ABC transporter ATP-binding protein|unclassified	0.7445475852
+UniRef50_UPI00039CA428: blue-light sensor BLUF	0.7444041951
+UniRef50_UPI00039CA428: blue-light sensor BLUF|unclassified	0.7444041951
+UniRef50_D5ARJ2	0.7444015753
+UniRef50_D5ARJ2|unclassified	0.7444015753
+UniRef50_UPI00047539F5: hypothetical protein, partial	0.7443891735
+UniRef50_UPI00047539F5: hypothetical protein, partial|unclassified	0.7443891735
+UniRef50_S6V0P9: mRNA 3''''-end processing factor (Fragment)	0.7443835338
+UniRef50_S6V0P9: mRNA 3''''-end processing factor (Fragment)|unclassified	0.7443835338
+UniRef50_UPI000368FA6C: hypothetical protein	0.7441737085
+UniRef50_UPI000368FA6C: hypothetical protein|unclassified	0.7441737085
+UniRef50_F4CYV0	0.7441689827
+UniRef50_F4CYV0|unclassified	0.7441689827
+UniRef50_A6QAV3: Ni-Fe hydrogenase, large subunit	0.7440476190
+UniRef50_A6QAV3: Ni-Fe hydrogenase, large subunit|g__Helicobacter.s__Helicobacter_pylori	0.7440476190
+UniRef50_Q5H175: Dihydrolipoyl dehydrogenase	0.7440476190
+UniRef50_Q5H175: Dihydrolipoyl dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	0.7440476190
+UniRef50_UPI00036EA21A: hypothetical protein	0.7440468056
+UniRef50_UPI00036EA21A: hypothetical protein|unclassified	0.7440468056
+UniRef50_M0SF49	0.7439501775
+UniRef50_M0SF49|unclassified	0.7439501775
+UniRef50_UPI00037ECCA1: hypothetical protein	0.7439377164
+UniRef50_UPI00037ECCA1: hypothetical protein|unclassified	0.7439377164
+UniRef50_UPI00037CCB39: hypothetical protein	0.7436818099
+UniRef50_UPI00037CCB39: hypothetical protein|unclassified	0.7436818099
+UniRef50_UPI0004780904: cobinamide adenolsyltransferase	0.7435930622
+UniRef50_UPI0004780904: cobinamide adenolsyltransferase|unclassified	0.7435930622
+UniRef50_A6LR92: AMP-dependent synthetase and ligase	0.7434944238
+UniRef50_A6LR92: AMP-dependent synthetase and ligase|g__Clostridium.s__Clostridium_beijerinckii	0.7434944238
+UniRef50_C9ZJL6	0.7434944238
+UniRef50_C9ZJL6|unclassified	0.7434944238
+UniRef50_UPI0001BF5B06: hypothetical protein SMAC_11105, partial	0.7434731254
+UniRef50_UPI0001BF5B06: hypothetical protein SMAC_11105, partial|unclassified	0.7434731254
+UniRef50_UPI0003598731: PREDICTED: glutaredoxin-related protein 5, mitochondrial-like	0.7434431932
+UniRef50_UPI0003598731: PREDICTED: glutaredoxin-related protein 5, mitochondrial-like|unclassified	0.7434431932
+UniRef50_UPI00016A34A8: hypothetical protein	0.7434415985
+UniRef50_UPI00016A34A8: hypothetical protein|unclassified	0.7434415985
+UniRef50_N6JKR1	0.7434214509
+UniRef50_N6JKR1|unclassified	0.7434214509
+UniRef50_A7MMQ6	0.7434132379
+UniRef50_A7MMQ6|unclassified	0.7434132379
+UniRef50_UPI00036B9E0E: hypothetical protein	0.7434025062
+UniRef50_UPI00036B9E0E: hypothetical protein|unclassified	0.7434025062
+UniRef50_I6FVR9	0.7433144520
+UniRef50_I6FVR9|unclassified	0.7433144520
+UniRef50_UPI00037C3547: hypothetical protein	0.7431666174
+UniRef50_UPI00037C3547: hypothetical protein|unclassified	0.7431666174
+UniRef50_N3NT39: HlyD secretion family protein	0.7431326491
+UniRef50_N3NT39: HlyD secretion family protein|unclassified	0.7431326491
+UniRef50_X5WX27: Transposase IS66	0.7430435046
+UniRef50_X5WX27: Transposase IS66|unclassified	0.7430435046
+UniRef50_E5ANB9: Transposase	0.7430304112
+UniRef50_E5ANB9: Transposase|unclassified	0.7430304112
+UniRef50_UPI000473FE73: 50S ribosomal protein L15, partial	0.7430281401
+UniRef50_UPI000473FE73: 50S ribosomal protein L15, partial|unclassified	0.7430281401
+UniRef50_UPI00029B2F80: GCN5 family acetyltransferase	0.7430205502
+UniRef50_UPI00029B2F80: GCN5 family acetyltransferase|unclassified	0.7430205502
+UniRef50_Q1CRH7: tRNA modification GTPase MnmE	0.7429420505
+UniRef50_Q1CRH7: tRNA modification GTPase MnmE|g__Helicobacter.s__Helicobacter_pylori	0.7429420505
+UniRef50_P39582: Probable 1,4-dihydroxy-2-naphthoate octaprenyltransferase	0.7429133487
+UniRef50_P39582: Probable 1,4-dihydroxy-2-naphthoate octaprenyltransferase|unclassified	0.7429133487
+UniRef50_Q1YFJ2	0.7429060625
+UniRef50_Q1YFJ2|unclassified	0.7429060625
+UniRef50_I5BRF4: TRAP-type C4-dicarboxylate transporter large permease	0.7428737646
+UniRef50_I5BRF4: TRAP-type C4-dicarboxylate transporter large permease|unclassified	0.7428737646
+UniRef50_UPI00036E3CC6: hypothetical protein	0.7427778583
+UniRef50_UPI00036E3CC6: hypothetical protein|unclassified	0.7427778583
+UniRef50_K9H593: Chromosomal replication initiator protein DnaA	0.7427143929
+UniRef50_K9H593: Chromosomal replication initiator protein DnaA|unclassified	0.7427143929
+UniRef50_M3K7Q0: Replication initiation protein RepC	0.7427038171
+UniRef50_M3K7Q0: Replication initiation protein RepC|unclassified	0.7427038171
+UniRef50_UPI0003A1A703: membrane protein	0.7426138717
+UniRef50_UPI0003A1A703: membrane protein|unclassified	0.7426138717
+UniRef50_B4WIG2	0.7422562868
+UniRef50_B4WIG2|unclassified	0.7422562868
+UniRef50_W6EUE7	0.7422437409
+UniRef50_W6EUE7|unclassified	0.7422437409
+UniRef50_W1HYB2: Malate:quinone oxidoreductase	0.7422198165
+UniRef50_W1HYB2: Malate:quinone oxidoreductase|unclassified	0.7422198165
+UniRef50_Q1YPG2	0.7421502215
+UniRef50_Q1YPG2|unclassified	0.7421502215
+UniRef50_UPI0003B58E0A: peptide ABC transporter ATPase	0.7421496340
+UniRef50_UPI0003B58E0A: peptide ABC transporter ATPase|unclassified	0.7421496340
+UniRef50_UPI0003B420CC: acetyl-CoA carboxylase subunit beta	0.7419310963
+UniRef50_UPI0003B420CC: acetyl-CoA carboxylase subunit beta|unclassified	0.7419310963
+UniRef50_UPI0004662A15: peptide ABC transporter	0.7418115573
+UniRef50_UPI0004662A15: peptide ABC transporter|unclassified	0.7418115573
+UniRef50_A0A011R0F0: Aerobic C4-dicarboxylate transport protein	0.7417145901
+UniRef50_A0A011R0F0: Aerobic C4-dicarboxylate transport protein|unclassified	0.7417145901
+UniRef50_Q2NAN4: DNA topology modulation protein	0.7416174869
+UniRef50_Q2NAN4: DNA topology modulation protein|unclassified	0.7416174869
+UniRef50_B1XF35	0.7416029417
+UniRef50_B1XF35|unclassified	0.7416029417
+UniRef50_Q9ZKU4: Phosphate acetyltransferase	0.7413714192
+UniRef50_Q9ZKU4: Phosphate acetyltransferase|g__Helicobacter.s__Helicobacter_pylori	0.6849315068
+UniRef50_Q9ZKU4: Phosphate acetyltransferase|unclassified	0.0564399123
+UniRef50_A4WP17: Glycerol-3-phosphate acyltransferase	0.7413230846
+UniRef50_A4WP17: Glycerol-3-phosphate acyltransferase|unclassified	0.7413230846
+UniRef50_F2QGG0: Phage integrase family site specific recombinase	0.7412898443
+UniRef50_F2QGG0: Phage integrase family site specific recombinase|g__Streptococcus.s__Streptococcus_agalactiae	0.7412898443
+UniRef50_UPI0003656E3B: hypothetical protein	0.7411138650
+UniRef50_UPI0003656E3B: hypothetical protein|unclassified	0.7411138650
+UniRef50_UPI00029CB712: ketol-acid reductoisomerase IlvC, partial	0.7410595161
+UniRef50_UPI00029CB712: ketol-acid reductoisomerase IlvC, partial|unclassified	0.7410595161
+UniRef50_G9EIJ8	0.7409332564
+UniRef50_G9EIJ8|unclassified	0.7409332564
+UniRef50_F2TZS1	0.7409247863
+UniRef50_F2TZS1|unclassified	0.7409247863
+UniRef50_UPI0003B65087: sugar ABC transporter	0.7409159351
+UniRef50_UPI0003B65087: sugar ABC transporter|unclassified	0.7409159351
+UniRef50_UPI00041EC834: ABC transporter permease	0.7409092027
+UniRef50_UPI00041EC834: ABC transporter permease|unclassified	0.7409092027
+UniRef50_Q9AK82: DNA polymerase IV	0.7407577033
+UniRef50_Q9AK82: DNA polymerase IV|g__Propionibacterium.s__Propionibacterium_acnes	0.7168458781
+UniRef50_Q9AK82: DNA polymerase IV|unclassified	0.0239118252
+UniRef50_Q8XIK5	0.7407407407
+UniRef50_Q8XIK5|g__Clostridium.s__Clostridium_beijerinckii	0.7407407407
+UniRef50_U3U1E2: Alkyl hydroperoxide reductase subunit F	0.7406785518
+UniRef50_U3U1E2: Alkyl hydroperoxide reductase subunit F|unclassified	0.7406785518
+UniRef50_T1Y7F2	0.7406445348
+UniRef50_T1Y7F2|unclassified	0.7406445348
+UniRef50_U0FZ44	0.7404592742
+UniRef50_U0FZ44|unclassified	0.7404592742
+UniRef50_K2BC54	0.7402811696
+UniRef50_K2BC54|unclassified	0.7402811696
+UniRef50_UPI000255905D: poly(A) polymerase, partial	0.7402126748
+UniRef50_UPI000255905D: poly(A) polymerase, partial|unclassified	0.7402126748
+UniRef50_UPI000376BE2D: zinc protease, partial	0.7401237635
+UniRef50_UPI000376BE2D: zinc protease, partial|unclassified	0.7401237635
+UniRef50_X1SR36: Marine sediment metagenome DNA, contig: S12H4_S00219	0.7400005690
+UniRef50_X1SR36: Marine sediment metagenome DNA, contig: S12H4_S00219|unclassified	0.7400005690
+UniRef50_A0A022MY83	0.7397786636
+UniRef50_A0A022MY83|unclassified	0.7397786636
+UniRef50_L2F7D5	0.7397376113
+UniRef50_L2F7D5|unclassified	0.7397376113
+UniRef50_N9N018	0.7396937794
+UniRef50_N9N018|unclassified	0.7396937794
+UniRef50_A8ARE2	0.7396721040
+UniRef50_A8ARE2|unclassified	0.7396721040
+UniRef50_P0A4S1: Fructose-bisphosphate aldolase	0.7396548116
+UniRef50_P0A4S1: Fructose-bisphosphate aldolase|unclassified	0.7396548116
+UniRef50_F5XLU5: NADH-quinone oxidoreductase subunit M	0.7396449704
+UniRef50_F5XLU5: NADH-quinone oxidoreductase subunit M|g__Propionibacterium.s__Propionibacterium_acnes	0.7396449704
+UniRef50_J0P427: Type III restriction-modification system DNA endonuclease	0.7395346457
+UniRef50_J0P427: Type III restriction-modification system DNA endonuclease|g__Helicobacter.s__Helicobacter_pylori	0.7395346457
+UniRef50_UPI0002557200: 2-nitropropane dioxygenase	0.7394603925
+UniRef50_UPI0002557200: 2-nitropropane dioxygenase|unclassified	0.7394603925
+UniRef50_W5YET9: NADH-quinone oxidoreductase, chain I	0.7394575586
+UniRef50_W5YET9: NADH-quinone oxidoreductase, chain I|unclassified	0.7394575586
+UniRef50_UPI000288243F: phospho-2-dehydro-3-deoxyheptonate aldolase, partial	0.7393919606
+UniRef50_UPI000288243F: phospho-2-dehydro-3-deoxyheptonate aldolase, partial|unclassified	0.7393919606
+UniRef50_I5CS40	0.7391990950
+UniRef50_I5CS40|unclassified	0.7391990950
+UniRef50_L1K7R1: Pirin domain protein	0.7391017832
+UniRef50_L1K7R1: Pirin domain protein|unclassified	0.7391017832
+UniRef50_A0A059LEJ0	0.7390983001
+UniRef50_A0A059LEJ0|unclassified	0.7390983001
+UniRef50_F0Y9Q8	0.7387708779
+UniRef50_F0Y9Q8|unclassified	0.7387708779
+UniRef50_UPI0003F0CF2A: PREDICTED: glutathione S-transferase omega-like 2-like	0.7387554822
+UniRef50_UPI0003F0CF2A: PREDICTED: glutathione S-transferase omega-like 2-like|unclassified	0.7387554822
+UniRef50_L0LTN7: Nitrogen fixation protein FixS	0.7386299139
+UniRef50_L0LTN7: Nitrogen fixation protein FixS|unclassified	0.7386299139
+UniRef50_UPI00045E5CBA: hypothetical protein	0.7385805236
+UniRef50_UPI00045E5CBA: hypothetical protein|unclassified	0.7385805236
+UniRef50_E8SHT5	0.7385783364
+UniRef50_E8SHT5|unclassified	0.7385783364
+UniRef50_F0RJ04: Potassium uptake protein, TrkH family	0.7385524372
+UniRef50_F0RJ04: Potassium uptake protein, TrkH family|g__Deinococcus.s__Deinococcus_radiodurans	0.7385524372
+UniRef50_X5DTS0: PTS system sugar-specific permease protein	0.7385524372
+UniRef50_X5DTS0: PTS system sugar-specific permease protein|g__Streptococcus.s__Streptococcus_agalactiae	0.7385524372
+UniRef50_UPI000419E823: transposase	0.7385322942
+UniRef50_UPI000419E823: transposase|unclassified	0.7385322942
+UniRef50_D7XYN0	0.7385073746
+UniRef50_D7XYN0|unclassified	0.7385073746
+UniRef50_R7KHP6	0.7382922796
+UniRef50_R7KHP6|unclassified	0.7382922796
+UniRef50_UPI000373646F: hypothetical protein	0.7382647331
+UniRef50_UPI000373646F: hypothetical protein|unclassified	0.7382647331
+UniRef50_T0UNE5	0.7380933546
+UniRef50_T0UNE5|unclassified	0.7380933546
+UniRef50_H8FDK2	0.7380259395
+UniRef50_H8FDK2|unclassified	0.7380259395
+UniRef50_A0A017HSR8: GTP-binding protein EngB	0.7380240894
+UniRef50_A0A017HSR8: GTP-binding protein EngB|unclassified	0.7380240894
+UniRef50_P33655: DNA primase	0.7380073801
+UniRef50_P33655: DNA primase|g__Clostridium.s__Clostridium_beijerinckii	0.7380073801
+UniRef50_Q9K1R6: Glutamate--tRNA ligase	0.7380073801
+UniRef50_Q9K1R6: Glutamate--tRNA ligase|g__Neisseria.s__Neisseria_meningitidis	0.7380073801
+UniRef50_A4EJ96	0.7378221170
+UniRef50_A4EJ96|unclassified	0.7378221170
+UniRef50_Q8Z7J8	0.7376272538
+UniRef50_Q8Z7J8|unclassified	0.7376272538
+UniRef50_J3MPY0	0.7375835425
+UniRef50_J3MPY0|unclassified	0.7375835425
+UniRef50_G2B8E5	0.7375292480
+UniRef50_G2B8E5|unclassified	0.7375292480
+UniRef50_C5Z6N8	0.7375229329
+UniRef50_C5Z6N8|unclassified	0.7375229329
+UniRef50_A9M1L0: Valine--pyruvate aminotransferase	0.7374631268
+UniRef50_A9M1L0: Valine--pyruvate aminotransferase|g__Neisseria.s__Neisseria_meningitidis	0.7374631268
+UniRef50_UPI000381633B: hypothetical protein	0.7374248555
+UniRef50_UPI000381633B: hypothetical protein|unclassified	0.7374248555
+UniRef50_A6FR36	0.7373471301
+UniRef50_A6FR36|unclassified	0.7373471301
+UniRef50_V8EQU0	0.7372721560
+UniRef50_V8EQU0|unclassified	0.7372721560
+UniRef50_UPI00047D7F8E: hypothetical protein	0.7372315738
+UniRef50_UPI00047D7F8E: hypothetical protein|unclassified	0.7372315738
+UniRef50_A0QVT2: Ribonuclease J	0.7372092390
+UniRef50_A0QVT2: Ribonuclease J|unclassified	0.7372092390
+UniRef50_K1U7P8: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA (Fragment)	0.7370963655
+UniRef50_K1U7P8: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA (Fragment)|unclassified	0.7370963655
+UniRef50_G4L521: Glycine betaine ABC transporter permease/glycine betaine-binding protein	0.7369196758
+UniRef50_G4L521: Glycine betaine ABC transporter permease/glycine betaine-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	0.7369196758
+UniRef50_I1WGW6	0.7369196758
+UniRef50_I1WGW6|g__Neisseria.s__Neisseria_meningitidis	0.7369196758
+UniRef50_V5SCF0: Membrane protein	0.7368715946
+UniRef50_V5SCF0: Membrane protein|unclassified	0.7368715946
+UniRef50_Q8EFB6: Histidine biosynthesis bifunctional protein HisIE	0.7367776842
+UniRef50_Q8EFB6: Histidine biosynthesis bifunctional protein HisIE|unclassified	0.7367776842
+UniRef50_I1D602	0.7366534095
+UniRef50_I1D602|unclassified	0.7366534095
+UniRef50_A6LUQ8: Phosphotransferase system, EIIC	0.7363770250
+UniRef50_A6LUQ8: Phosphotransferase system, EIIC|g__Clostridium.s__Clostridium_beijerinckii	0.7363770250
+UniRef50_N1X5N0	0.7362939151
+UniRef50_N1X5N0|unclassified	0.7362939151
+UniRef50_D3P499	0.7362892201
+UniRef50_D3P499|unclassified	0.7362892201
+UniRef50_X2MEG2: Ribosome maturation protein RimP	0.7362114374
+UniRef50_X2MEG2: Ribosome maturation protein RimP|unclassified	0.7362114374
+UniRef50_UPI00036E11E3: hypothetical protein	0.7362048044
+UniRef50_UPI00036E11E3: hypothetical protein|unclassified	0.7362048044
+UniRef50_UPI000366F57D: hypothetical protein, partial	0.7360644427
+UniRef50_UPI000366F57D: hypothetical protein, partial|unclassified	0.7360644427
+UniRef50_K9AIU4	0.7360296718
+UniRef50_K9AIU4|unclassified	0.7360296718
+UniRef50_B8GLX4: Cbb3-type cytochrome oxidase component	0.7360033292
+UniRef50_B8GLX4: Cbb3-type cytochrome oxidase component|unclassified	0.7360033292
+UniRef50_N9Z093	0.7359922386
+UniRef50_N9Z093|unclassified	0.7359922386
+UniRef50_UPI00036BB70C: resolvase	0.7359138862
+UniRef50_UPI00036BB70C: resolvase|unclassified	0.7359138862
+UniRef50_F4QZ58	0.7358978682
+UniRef50_F4QZ58|unclassified	0.7358978682
+UniRef50_A0A016YJN0: MMPL family protein	0.7358651222
+UniRef50_A0A016YJN0: MMPL family protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.7358651222
+UniRef50_G7M6S6: Radical SAM domain protein	0.7358351729
+UniRef50_G7M6S6: Radical SAM domain protein|g__Clostridium.s__Clostridium_beijerinckii	0.7358351729
+UniRef50_G8V756: Glycosyltransferase	0.7358351729
+UniRef50_G8V756: Glycosyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	0.7358351729
+UniRef50_UPI00036A115E: hypothetical protein	0.7357950936
+UniRef50_UPI00036A115E: hypothetical protein|unclassified	0.7357950936
+UniRef50_J8MUX1	0.7357949344
+UniRef50_J8MUX1|unclassified	0.7357949344
+UniRef50_B8HW51: Urease subunit beta	0.7357732112
+UniRef50_B8HW51: Urease subunit beta|unclassified	0.7357732112
+UniRef50_C2TNF2	0.7357610970
+UniRef50_C2TNF2|unclassified	0.7357610970
+UniRef50_UPI000416A9EE: hypothetical protein	0.7356650187
+UniRef50_UPI000416A9EE: hypothetical protein|unclassified	0.7356650187
+UniRef50_D7X4H5	0.7355682791
+UniRef50_D7X4H5|unclassified	0.7355682791
+UniRef50_Q84SD7	0.7354857248
+UniRef50_Q84SD7|unclassified	0.7354857248
+UniRef50_S3ZPA8: Putative Linear gramicidin synthase subunit C	0.7354728541
+UniRef50_S3ZPA8: Putative Linear gramicidin synthase subunit C|unclassified	0.7354728541
+UniRef50_E9BZ84: Cables2 protein	0.7354293317
+UniRef50_E9BZ84: Cables2 protein|unclassified	0.7354293317
+UniRef50_D5BS40: Rod binding-like protein	0.7353809380
+UniRef50_D5BS40: Rod binding-like protein|unclassified	0.7353809380
+UniRef50_X7ZV72: Phosphate transport system regulatory protein PhoU	0.7353154868
+UniRef50_X7ZV72: Phosphate transport system regulatory protein PhoU|unclassified	0.7353154868
+UniRef50_R7I3D6	0.7352695860
+UniRef50_R7I3D6|unclassified	0.7352695860
+UniRef50_V6F1P9: Diheme cytochrome c	0.7352602627
+UniRef50_V6F1P9: Diheme cytochrome c|unclassified	0.7352602627
+UniRef50_U6MR78	0.7352253002
+UniRef50_U6MR78|unclassified	0.7352253002
+UniRef50_Q5P1C8	0.7352073939
+UniRef50_Q5P1C8|unclassified	0.7352073939
+UniRef50_M5DRD3	0.7351424821
+UniRef50_M5DRD3|unclassified	0.7351424821
+UniRef50_Q9RWI2	0.7350005883
+UniRef50_Q9RWI2|g__Deinococcus.s__Deinococcus_radiodurans	0.7350005883
+UniRef50_UPI0003B5B300: preprotein translocase subunit TatA	0.7349603794
+UniRef50_UPI0003B5B300: preprotein translocase subunit TatA|unclassified	0.7349603794
+UniRef50_UPI00026321EE: MT-A70 family protein	0.7349467979
+UniRef50_UPI00026321EE: MT-A70 family protein|unclassified	0.7349467979
+UniRef50_UPI00021A48D6: PREDICTED: glutaredoxin-3-like	0.7348678021
+UniRef50_UPI00021A48D6: PREDICTED: glutaredoxin-3-like|unclassified	0.7348678021
+UniRef50_K4R2H3	0.7348115280
+UniRef50_K4R2H3|unclassified	0.7348115280
+UniRef50_J9K9Y9	0.7347538575
+UniRef50_J9K9Y9|unclassified	0.7347538575
+UniRef50_Q6A5S0: Probable potassium transport system protein kup	0.7347538575
+UniRef50_Q6A5S0: Probable potassium transport system protein kup|g__Propionibacterium.s__Propionibacterium_acnes	0.7347538575
+UniRef50_S3G9A5	0.7346629646
+UniRef50_S3G9A5|unclassified	0.7346629646
+UniRef50_UPI0004069048: hypothetical protein	0.7346564251
+UniRef50_UPI0004069048: hypothetical protein|unclassified	0.7346564251
+UniRef50_V9VUM1	0.7346444363
+UniRef50_V9VUM1|unclassified	0.7346444363
+UniRef50_F2AGW2	0.7345887170
+UniRef50_F2AGW2|unclassified	0.7345887170
+UniRef50_K2DKT9	0.7345337313
+UniRef50_K2DKT9|unclassified	0.7345337313
+UniRef50_UPI0003C19F7E: PREDICTED: NAD(P) transhydrogenase, mitochondrial-like	0.7344957156
+UniRef50_UPI0003C19F7E: PREDICTED: NAD(P) transhydrogenase, mitochondrial-like|unclassified	0.7344957156
+UniRef50_E7SIF2: L,D-transpeptidase YcfS	0.7343940586
+UniRef50_E7SIF2: L,D-transpeptidase YcfS|unclassified	0.7343940586
+UniRef50_A4VS05: Sodium/hydrogen exchanger family protein	0.7342143906
+UniRef50_A4VS05: Sodium/hydrogen exchanger family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7342143906
+UniRef50_A5W820: Protein-L-isoaspartate O-methyltransferase	0.7340514549
+UniRef50_A5W820: Protein-L-isoaspartate O-methyltransferase|unclassified	0.7340514549
+UniRef50_UPI0004104E33: hypothetical protein	0.7340384409
+UniRef50_UPI0004104E33: hypothetical protein|unclassified	0.7340384409
+UniRef50_UPI00046D32F7: peptide chain release factor-like protein	0.7339914770
+UniRef50_UPI00046D32F7: peptide chain release factor-like protein|unclassified	0.7339914770
+UniRef50_Q07GB3	0.7339258241
+UniRef50_Q07GB3|unclassified	0.7339258241
+UniRef50_R7YIJ0	0.7338621334
+UniRef50_R7YIJ0|unclassified	0.7338621334
+UniRef50_Q6ZKP4	0.7338353087
+UniRef50_Q6ZKP4|unclassified	0.7338353087
+UniRef50_UPI00040BC712: hypothetical protein	0.7338141046
+UniRef50_UPI00040BC712: hypothetical protein|unclassified	0.7338141046
+UniRef50_UPI0003B4B360: cation:proton antiporter	0.7336878592
+UniRef50_UPI0003B4B360: cation:proton antiporter|unclassified	0.7336878592
+UniRef50_UPI00037FCD21: hypothetical protein	0.7336793923
+UniRef50_UPI00037FCD21: hypothetical protein|unclassified	0.7336793923
+UniRef50_Q9RYX7: Xanthine permease, putative	0.7336757153
+UniRef50_Q9RYX7: Xanthine permease, putative|g__Deinococcus.s__Deinococcus_radiodurans	0.7336757153
+UniRef50_UPI00036A518D: hypothetical protein	0.7335821763
+UniRef50_UPI00036A518D: hypothetical protein|unclassified	0.7335821763
+UniRef50_UPI00046FEA99: hypothetical protein	0.7335783567
+UniRef50_UPI00046FEA99: hypothetical protein|unclassified	0.7335783567
+UniRef50_V4ILV7	0.7334148329
+UniRef50_V4ILV7|unclassified	0.7334148329
+UniRef50_T1E861	0.7332812425
+UniRef50_T1E861|unclassified	0.7332812425
+UniRef50_Q3JRM7	0.7331933511
+UniRef50_Q3JRM7|unclassified	0.7331933511
+UniRef50_UPI0003605403: hypothetical protein	0.7331615114
+UniRef50_UPI0003605403: hypothetical protein|unclassified	0.7331615114
+UniRef50_A2BKX6: V-type ATP synthase alpha chain	0.7331378299
+UniRef50_A2BKX6: V-type ATP synthase alpha chain|g__Deinococcus.s__Deinococcus_radiodurans	0.7331378299
+UniRef50_UPI00037BA6DB: hypothetical protein	0.7331378299
+UniRef50_UPI00037BA6DB: hypothetical protein|unclassified	0.7331378299
+UniRef50_W0K6M6	0.7330974774
+UniRef50_W0K6M6|unclassified	0.7330974774
+UniRef50_K0ZPT5	0.7330901327
+UniRef50_K0ZPT5|unclassified	0.7330901327
+UniRef50_UPI0003485647: hypothetical protein	0.7329680965
+UniRef50_UPI0003485647: hypothetical protein|unclassified	0.7329680965
+UniRef50_R5I903	0.7329441887
+UniRef50_R5I903|unclassified	0.7329441887
+UniRef50_Q2YTN1	0.7328555967
+UniRef50_Q2YTN1|unclassified	0.7328555967
+UniRef50_Q28TI8: Chromosomal replication initiator DnaA	0.7327221795
+UniRef50_Q28TI8: Chromosomal replication initiator DnaA|unclassified	0.7327221795
+UniRef50_UPI0003D05F43: hypothetical protein	0.7326595595
+UniRef50_UPI0003D05F43: hypothetical protein|unclassified	0.7326595595
+UniRef50_A6U922	0.7324613231
+UniRef50_A6U922|unclassified	0.7324613231
+UniRef50_Q13AQ1	0.7323953726
+UniRef50_Q13AQ1|unclassified	0.7323953726
+UniRef50_UPI0002554E0F: xylose ABC transporter ATP-binding protein	0.7322314821
+UniRef50_UPI0002554E0F: xylose ABC transporter ATP-binding protein|unclassified	0.7322314821
+UniRef50_Y5AAP3	0.7322089410
+UniRef50_Y5AAP3|unclassified	0.7322089410
+UniRef50_W5WDA5	0.7321280767
+UniRef50_W5WDA5|unclassified	0.7321280767
+UniRef50_U2YS21	0.7320904921
+UniRef50_U2YS21|unclassified	0.7320904921
+UniRef50_W5HYZ3	0.7320644217
+UniRef50_W5HYZ3|unclassified	0.7320644217
+UniRef50_Q9JXK3: Serine-type peptidase	0.7320592384
+UniRef50_Q9JXK3: Serine-type peptidase|g__Neisseria.s__Neisseria_meningitidis	0.7320592384
+UniRef50_UPI00045EADA1: hypothetical protein	0.7319999714
+UniRef50_UPI00045EADA1: hypothetical protein|unclassified	0.7319999714
+UniRef50_UPI000328A3E3: PREDICTED: vegetative cell wall protein gp1-like	0.7317732392
+UniRef50_UPI000328A3E3: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.7317732392
+UniRef50_A5CSL0: LexA repressor	0.7316409247
+UniRef50_A5CSL0: LexA repressor|unclassified	0.7316409247
+UniRef50_E0XYI3	0.7315696880
+UniRef50_E0XYI3|unclassified	0.7315696880
+UniRef50_A6LXZ9: MATE efflux family protein	0.7315288954
+UniRef50_A6LXZ9: MATE efflux family protein|g__Clostridium.s__Clostridium_beijerinckii	0.7315288954
+UniRef50_X1J3Z3: Marine sediment metagenome DNA, contig: S03H2_S19793 (Fragment)	0.7313008204
+UniRef50_X1J3Z3: Marine sediment metagenome DNA, contig: S03H2_S19793 (Fragment)|unclassified	0.7313008204
+UniRef50_D9RMP7	0.7312062874
+UniRef50_D9RMP7|unclassified	0.7312062874
+UniRef50_UPI000359481D	0.7311249311
+UniRef50_UPI000359481D|unclassified	0.7311249311
+UniRef50_UPI00036A9B9A: hypothetical protein	0.7310943094
+UniRef50_UPI00036A9B9A: hypothetical protein|unclassified	0.7310943094
+UniRef50_B9G127	0.7309962783
+UniRef50_B9G127|unclassified	0.7309962783
+UniRef50_F1VXV8	0.7309941520
+UniRef50_F1VXV8|unclassified	0.7309941520
+UniRef50_F9YYA3: Nucleotidyltransferase/DNA polymerase involved in DNA repair UmuC	0.7309941520
+UniRef50_F9YYA3: Nucleotidyltransferase/DNA polymerase involved in DNA repair UmuC|g__Propionibacterium.s__Propionibacterium_acnes	0.7309941520
+UniRef50_Q72ZS0	0.7309941520
+UniRef50_Q72ZS0|unclassified	0.7309941520
+UniRef50_S5CTY8	0.7309941520
+UniRef50_S5CTY8|g__Acinetobacter.s__Acinetobacter_baumannii	0.7309941520
+UniRef50_P42719: Orotate phosphoribosyltransferase	0.7309755030
+UniRef50_P42719: Orotate phosphoribosyltransferase|unclassified	0.7309755030
+UniRef50_Q3JR57	0.7309748735
+UniRef50_Q3JR57|unclassified	0.7309748735
+UniRef50_V5G7G2	0.7309428755
+UniRef50_V5G7G2|unclassified	0.7309428755
+UniRef50_K8BVU8	0.7308785750
+UniRef50_K8BVU8|unclassified	0.7308785750
+UniRef50_V4SS91: Alpha/beta hydrolase	0.7308329058
+UniRef50_V4SS91: Alpha/beta hydrolase|unclassified	0.7308329058
+UniRef50_UPI0003C78158: hypothetical protein, partial	0.7308008674
+UniRef50_UPI0003C78158: hypothetical protein, partial|unclassified	0.7308008674
+UniRef50_C6M0I7	0.7307882256
+UniRef50_C6M0I7|unclassified	0.7307882256
+UniRef50_UPI0002C37426: PREDICTED: rab11 family-interacting protein 1-like, partial	0.7307107979
+UniRef50_UPI0002C37426: PREDICTED: rab11 family-interacting protein 1-like, partial|unclassified	0.7307107979
+UniRef50_UPI0003724B15: hypothetical protein	0.7306798947
+UniRef50_UPI0003724B15: hypothetical protein|unclassified	0.7306798947
+UniRef50_W7VIZ6: Basic proline-rich protein	0.7306444977
+UniRef50_W7VIZ6: Basic proline-rich protein|unclassified	0.7306444977
+UniRef50_H4GE83	0.7306219342
+UniRef50_H4GE83|unclassified	0.7306219342
+UniRef50_UPI000370ECFD: hypothetical protein	0.7305018596
+UniRef50_UPI000370ECFD: hypothetical protein|unclassified	0.7305018596
+UniRef50_U6HQ21: Serine:threonine protein kinase LATS2	0.7304877216
+UniRef50_U6HQ21: Serine:threonine protein kinase LATS2|unclassified	0.7304877216
+UniRef50_B0VKL3: 23S rRNA (uracil(1939)-C(5))-methyltransferase RlmD	0.7304601899
+UniRef50_B0VKL3: 23S rRNA (uracil(1939)-C(5))-methyltransferase RlmD|g__Acinetobacter.s__Acinetobacter_baumannii	0.7304601899
+UniRef50_E4U760: Carbohydrate ABC transporter membrane protein 2, CUT1 family	0.7304601899
+UniRef50_E4U760: Carbohydrate ABC transporter membrane protein 2, CUT1 family|g__Deinococcus.s__Deinococcus_radiodurans	0.7304601899
+UniRef50_Q8CW10	0.7303617235
+UniRef50_Q8CW10|unclassified	0.7303617235
+UniRef50_UPI00022CAACE: PREDICTED: ribose-phosphate pyrophosphokinase-like	0.7302714771
+UniRef50_UPI00022CAACE: PREDICTED: ribose-phosphate pyrophosphokinase-like|unclassified	0.7302714771
+UniRef50_C5YAT9	0.7302310960
+UniRef50_C5YAT9|unclassified	0.7302310960
+UniRef50_G8W5T7	0.7301966421
+UniRef50_G8W5T7|unclassified	0.7301966421
+UniRef50_D4KWS6	0.7301533931
+UniRef50_D4KWS6|unclassified	0.7301533931
+UniRef50_Q8DQB8: Degenerate transposase (Orf1)	0.7300136020
+UniRef50_Q8DQB8: Degenerate transposase (Orf1)|unclassified	0.7300136020
+UniRef50_UPI0002556BFF: hypothetical protein	0.7299545553
+UniRef50_UPI0002556BFF: hypothetical protein|unclassified	0.7299545553
+UniRef50_Q0FYC5	0.7298565372
+UniRef50_Q0FYC5|unclassified	0.7298565372
+UniRef50_D3QEM5	0.7298459683
+UniRef50_D3QEM5|unclassified	0.7298459683
+UniRef50_Q92WJ0: Fe(3+) ions import ATP-binding protein FbpC 1	0.7296435975
+UniRef50_Q92WJ0: Fe(3+) ions import ATP-binding protein FbpC 1|unclassified	0.7296435975
+UniRef50_C7DBF4: ATPase	0.7296034980
+UniRef50_C7DBF4: ATPase|unclassified	0.7296034980
+UniRef50_F2DUP2: Predicted protein (Fragment)	0.7294279736
+UniRef50_F2DUP2: Predicted protein (Fragment)|unclassified	0.7294279736
+UniRef50_G8LUB7	0.7293946025
+UniRef50_G8LUB7|g__Clostridium.s__Clostridium_beijerinckii	0.7293946025
+UniRef50_F3U3C4	0.7293689589
+UniRef50_F3U3C4|unclassified	0.7293689589
+UniRef50_H5NY39	0.7293208311
+UniRef50_H5NY39|unclassified	0.7293208311
+UniRef50_A0A013SXP0: Phosphoenolpyruvate-protein phosphotransferase	0.7292363101
+UniRef50_A0A013SXP0: Phosphoenolpyruvate-protein phosphotransferase|g__Acinetobacter.s__Acinetobacter_baumannii	0.7292363101
+UniRef50_D6M4G6: Tetratricopeptide repeat domain-containing protein	0.7291981786
+UniRef50_D6M4G6: Tetratricopeptide repeat domain-containing protein|unclassified	0.7291981786
+UniRef50_N1MZ98	0.7291911275
+UniRef50_N1MZ98|unclassified	0.7291911275
+UniRef50_A8IM24	0.7291771392
+UniRef50_A8IM24|unclassified	0.7291771392
+UniRef50_UPI00036C0C7D: large conductance mechanosensitive channel protein MscL, partial	0.7290191396
+UniRef50_UPI00036C0C7D: large conductance mechanosensitive channel protein MscL, partial|unclassified	0.7290191396
+UniRef50_F8K1Q4	0.7288629738
+UniRef50_F8K1Q4|unclassified	0.7288629738
+UniRef50_UPI0003C35DCA: PREDICTED: ice-structuring glycoprotein-like	0.7288629738
+UniRef50_UPI0003C35DCA: PREDICTED: ice-structuring glycoprotein-like|unclassified	0.7288629738
+UniRef50_M0IBK8	0.7287892450
+UniRef50_M0IBK8|unclassified	0.7287892450
+UniRef50_UPI00046CACC5: hypothetical protein	0.7286998903
+UniRef50_UPI00046CACC5: hypothetical protein|unclassified	0.7286998903
+UniRef50_UPI0002483124: anaerobic glycerol-3-phosphate dehydrogenase subunit B, partial	0.7286923014
+UniRef50_UPI0002483124: anaerobic glycerol-3-phosphate dehydrogenase subunit B, partial|unclassified	0.7286923014
+UniRef50_W8QKE0: Branched-chain amino acid transporter AzlD	0.7286009304
+UniRef50_W8QKE0: Branched-chain amino acid transporter AzlD|unclassified	0.7286009304
+UniRef50_UPI0003B45127: adenosylcobinamide amidohydrolase	0.7284582047
+UniRef50_UPI0003B45127: adenosylcobinamide amidohydrolase|unclassified	0.7284582047
+UniRef50_N1UBT1	0.7284579613
+UniRef50_N1UBT1|unclassified	0.7284579613
+UniRef50_UPI0004625ADF: hypothetical protein, partial	0.7284292227
+UniRef50_UPI0004625ADF: hypothetical protein, partial|unclassified	0.7284292227
+UniRef50_B6ATG6: Lipoprotein, SmpA/OmlA family	0.7283361816
+UniRef50_B6ATG6: Lipoprotein, SmpA/OmlA family|unclassified	0.7283361816
+UniRef50_E1VPQ4	0.7281142979
+UniRef50_E1VPQ4|unclassified	0.7281142979
+UniRef50_S4MM15	0.7279216755
+UniRef50_S4MM15|unclassified	0.7279216755
+UniRef50_UPI00046AA572: hypothetical protein	0.7278668299
+UniRef50_UPI00046AA572: hypothetical protein|unclassified	0.7278668299
+UniRef50_A8IJ61: Sodium/sulphate symporter	0.7278020378
+UniRef50_A8IJ61: Sodium/sulphate symporter|g__Neisseria.s__Neisseria_meningitidis	0.7278020378
+UniRef50_G5LVS2: GTPase and tRNA-U34 5-formylation enzyme TrmE (Fragment)	0.7277055553
+UniRef50_G5LVS2: GTPase and tRNA-U34 5-formylation enzyme TrmE (Fragment)|unclassified	0.7277055553
+UniRef50_Z7RL43	0.7275721864
+UniRef50_Z7RL43|unclassified	0.7275721864
+UniRef50_A3VHB4	0.7275226044
+UniRef50_A3VHB4|unclassified	0.7275226044
+UniRef50_E8T796	0.7274090382
+UniRef50_E8T796|unclassified	0.7274090382
+UniRef50_K2AEI9	0.7273593498
+UniRef50_K2AEI9|unclassified	0.7273593498
+UniRef50_UPI000361C619: hypothetical protein	0.7273304675
+UniRef50_UPI000361C619: hypothetical protein|unclassified	0.7273304675
+UniRef50_O50475: Putative endopeptidase (Fragment)	0.7272864409
+UniRef50_O50475: Putative endopeptidase (Fragment)|unclassified	0.7272864409
+UniRef50_G8AUU4	0.7272862950
+UniRef50_G8AUU4|unclassified	0.7272862950
+UniRef50_UPI000401DB47: ABC transporter substrate-binding protein	0.7272820547
+UniRef50_UPI000401DB47: ABC transporter substrate-binding protein|unclassified	0.7272820547
+UniRef50_M5D5M6: Sel1 repeat protein	0.7272727273
+UniRef50_M5D5M6: Sel1 repeat protein|g__Neisseria.s__Neisseria_meningitidis	0.7272727273
+UniRef50_G2HDN4: BRO family, N-terminal domain protein (Fragment)	0.7271236734
+UniRef50_G2HDN4: BRO family, N-terminal domain protein (Fragment)|unclassified	0.7271236734
+UniRef50_E8U4E2	0.7271033220
+UniRef50_E8U4E2|unclassified	0.7271033220
+UniRef50_UPI00036FC12F: hypothetical protein	0.7270635825
+UniRef50_UPI00036FC12F: hypothetical protein|unclassified	0.7270635825
+UniRef50_J9P4U3	0.7269695937
+UniRef50_J9P4U3|unclassified	0.7269695937
+UniRef50_Q744M7	0.7265485778
+UniRef50_Q744M7|unclassified	0.7265485778
+UniRef50_D7REY5: Caffeine dehydrogenase subunit gamma	0.7265432519
+UniRef50_D7REY5: Caffeine dehydrogenase subunit gamma|unclassified	0.7265432519
+UniRef50_UPI0003760B8C: hypothetical protein	0.7265364540
+UniRef50_UPI0003760B8C: hypothetical protein|unclassified	0.7265364540
+UniRef50_UPI0002628B07: chemotaxis protein	0.7264414419
+UniRef50_UPI0002628B07: chemotaxis protein|unclassified	0.7264414419
+UniRef50_UPI0003900CB4: 3-oxoacyl-[acyl-carrier-protein] synthase 2	0.7263625510
+UniRef50_UPI0003900CB4: 3-oxoacyl-[acyl-carrier-protein] synthase 2|unclassified	0.7263625510
+UniRef50_UPI0003698849: DNA glycosylase	0.7263184301
+UniRef50_UPI0003698849: DNA glycosylase|unclassified	0.7263184301
+UniRef50_UPI00047609C0: hypothetical protein, partial	0.7262977147
+UniRef50_UPI00047609C0: hypothetical protein, partial|unclassified	0.7262977147
+UniRef50_I3XH87	0.7262593842
+UniRef50_I3XH87|unclassified	0.7262593842
+UniRef50_Q7VGX8: Isoleucine--tRNA ligase	0.7262198595
+UniRef50_Q7VGX8: Isoleucine--tRNA ligase|g__Helicobacter.s__Helicobacter_pylori	0.7262198595
+UniRef50_T1FEL1	0.7262164125
+UniRef50_T1FEL1|unclassified	0.7262164125
+UniRef50_P73728: Putative peroxiredoxin sll1621	0.7260392139
+UniRef50_P73728: Putative peroxiredoxin sll1621|unclassified	0.7260392139
+UniRef50_UPI0002559CF1: sulfate ABC transporter ATPase	0.7259621223
+UniRef50_UPI0002559CF1: sulfate ABC transporter ATPase|unclassified	0.7259621223
+UniRef50_C4I5Y8	0.7258539195
+UniRef50_C4I5Y8|unclassified	0.7258539195
+UniRef50_A0A023RTQ5: GntR family transcriptional regulator	0.7256894049
+UniRef50_A0A023RTQ5: GntR family transcriptional regulator|g__Acinetobacter.s__Acinetobacter_baumannii	0.7256894049
+UniRef50_A6L467	0.7256894049
+UniRef50_A6L467|unclassified	0.7256894049
+UniRef50_C6S8I9	0.7256894049
+UniRef50_C6S8I9|g__Neisseria.s__Neisseria_meningitidis	0.7256894049
+UniRef50_Q9JZ25	0.7256894049
+UniRef50_Q9JZ25|g__Neisseria.s__Neisseria_meningitidis	0.7256894049
+UniRef50_Z3DBP0	0.7256179058
+UniRef50_Z3DBP0|unclassified	0.7256179058
+UniRef50_A9M0L0: ATP-dependent RNA helicase HrpA	0.7255631439
+UniRef50_A9M0L0: ATP-dependent RNA helicase HrpA|g__Neisseria.s__Neisseria_meningitidis	0.7255631439
+UniRef50_UPI00032A12CA: PREDICTED: gluconate 5-dehydrogenase-like	0.7255039550
+UniRef50_UPI00032A12CA: PREDICTED: gluconate 5-dehydrogenase-like|unclassified	0.7255039550
+UniRef50_X0Z3F5: Marine sediment metagenome DNA, contig: S01H1_S37582 (Fragment)	0.7254992725
+UniRef50_X0Z3F5: Marine sediment metagenome DNA, contig: S01H1_S37582 (Fragment)|unclassified	0.7254992725
+UniRef50_J4KJN9	0.7254196431
+UniRef50_J4KJN9|g__Acinetobacter.s__Acinetobacter_baumannii	0.7254196431
+UniRef50_X2H2M7	0.7253961531
+UniRef50_X2H2M7|unclassified	0.7253961531
+UniRef50_UPI00040B3CC8: hypothetical protein	0.7253642888
+UniRef50_UPI00040B3CC8: hypothetical protein|unclassified	0.7253642888
+UniRef50_Q9UY68: N5-carboxyaminoimidazole ribonucleotide mutase	0.7253387298
+UniRef50_Q9UY68: N5-carboxyaminoimidazole ribonucleotide mutase|unclassified	0.7253387298
+UniRef50_F3V5V1: Thiosulfate reductase cytochrome B subunit domain protein	0.7253360216
+UniRef50_F3V5V1: Thiosulfate reductase cytochrome B subunit domain protein|unclassified	0.7253360216
+UniRef50_X1PPH0: Marine sediment metagenome DNA, contig: S06H3_S17669 (Fragment)	0.7253193906
+UniRef50_X1PPH0: Marine sediment metagenome DNA, contig: S06H3_S17669 (Fragment)|unclassified	0.7253193906
+UniRef50_UPI0001911E4F: amino acid transporter	0.7253142890
+UniRef50_UPI0001911E4F: amino acid transporter|unclassified	0.7253142890
+UniRef50_E5CJT6: Nuclear export factor GLE1 superfamily	0.7252776585
+UniRef50_E5CJT6: Nuclear export factor GLE1 superfamily|unclassified	0.7252776585
+UniRef50_UPI00036E90C5: hypothetical protein	0.7251651379
+UniRef50_UPI00036E90C5: hypothetical protein|unclassified	0.7251651379
+UniRef50_Q93Q17: ADP-ribosyltransferase toxin AexT	0.7251631617
+UniRef50_Q93Q17: ADP-ribosyltransferase toxin AexT|unclassified	0.7251631617
+UniRef50_B9JCY0	0.7251624766
+UniRef50_B9JCY0|unclassified	0.7251624766
+UniRef50_H4R5X4: Regulator of RNA terminal phosphate cyclase family protein	0.7251545558
+UniRef50_H4R5X4: Regulator of RNA terminal phosphate cyclase family protein|unclassified	0.7251545558
+UniRef50_C9SIJ3: Predicted protein	0.7250546218
+UniRef50_C9SIJ3: Predicted protein|unclassified	0.7250546218
+UniRef50_X6E160	0.7250202830
+UniRef50_X6E160|unclassified	0.7250202830
+UniRef50_A0A022LNW9: Phenylacetic acid degradation protein PaaI	0.7249926353
+UniRef50_A0A022LNW9: Phenylacetic acid degradation protein PaaI|unclassified	0.7249926353
+UniRef50_W0N0Q8	0.7249884745
+UniRef50_W0N0Q8|unclassified	0.7249884745
+UniRef50_D7GAG8: Cobalamin biosynthesis protein CobS (Fragment)	0.7249664546
+UniRef50_D7GAG8: Cobalamin biosynthesis protein CobS (Fragment)|unclassified	0.7249664546
+UniRef50_I0HF65	0.7248675883
+UniRef50_I0HF65|unclassified	0.7248675883
+UniRef50_UPI00037890B2: hypothetical protein	0.7248642293
+UniRef50_UPI00037890B2: hypothetical protein|unclassified	0.7248642293
+UniRef50_UPI0002884CD8: FNT family protein	0.7247266877
+UniRef50_UPI0002884CD8: FNT family protein|unclassified	0.7247266877
+UniRef50_K8CU18	0.7246415643
+UniRef50_K8CU18|unclassified	0.7246415643
+UniRef50_R1HR76	0.7246376812
+UniRef50_R1HR76|unclassified	0.7246376812
+UniRef50_R0PDG8	0.7243677810
+UniRef50_R0PDG8|unclassified	0.7243677810
+UniRef50_UPI0001850DBE: tRNA delta(2)-isopentenylpyrophosphate transferase	0.7242814142
+UniRef50_UPI0001850DBE: tRNA delta(2)-isopentenylpyrophosphate transferase|unclassified	0.7242814142
+UniRef50_UPI00047BD367: hypothetical protein	0.7242748199
+UniRef50_UPI00047BD367: hypothetical protein|unclassified	0.7242748199
+UniRef50_UPI000478C90E: biopolymer transporter ExbD	0.7242651948
+UniRef50_UPI000478C90E: biopolymer transporter ExbD|unclassified	0.7242651948
+UniRef50_UPI0004658BC5: hypothetical protein	0.7242458503
+UniRef50_UPI0004658BC5: hypothetical protein|unclassified	0.7242458503
+UniRef50_Q6ENY6	0.7242168557
+UniRef50_Q6ENY6|unclassified	0.7242168557
+UniRef50_A6LT42	0.7241129616
+UniRef50_A6LT42|g__Clostridium.s__Clostridium_beijerinckii	0.7241129616
+UniRef50_G8TK26: RNA-splicing ligase RtcB	0.7241129616
+UniRef50_G8TK26: RNA-splicing ligase RtcB|g__Deinococcus.s__Deinococcus_radiodurans	0.7241129616
+UniRef50_A3XF72	0.7241120681
+UniRef50_A3XF72|unclassified	0.7241120681
+UniRef50_F1AXC6: PP241	0.7240412340
+UniRef50_F1AXC6: PP241|unclassified	0.7240412340
+UniRef50_S5XU71	0.7240276614
+UniRef50_S5XU71|unclassified	0.7240276614
+UniRef50_A8LR27	0.7239428804
+UniRef50_A8LR27|unclassified	0.7239428804
+UniRef50_N8G5U6: tRNA 2-thiocytidine biosynthesis protein TtcA	0.7238936172
+UniRef50_N8G5U6: tRNA 2-thiocytidine biosynthesis protein TtcA|unclassified	0.7238936172
+UniRef50_UPI0003B4146A: hypothetical protein	0.7238717827
+UniRef50_UPI0003B4146A: hypothetical protein|unclassified	0.7238717827
+UniRef50_J7QY26: Escherichia coli IMT2125 genomic chromosome, IMT2125	0.7238362607
+UniRef50_J7QY26: Escherichia coli IMT2125 genomic chromosome, IMT2125|unclassified	0.7238362607
+UniRef50_U6KMG2	0.7237038839
+UniRef50_U6KMG2|unclassified	0.7237038839
+UniRef50_S6ARI5	0.7236616030
+UniRef50_S6ARI5|unclassified	0.7236616030
+UniRef50_E4DGV8	0.7236484747
+UniRef50_E4DGV8|unclassified	0.7236484747
+UniRef50_B8ENG6: Peptide deformylase	0.7236259966
+UniRef50_B8ENG6: Peptide deformylase|unclassified	0.7236259966
+UniRef50_G7U5K4: 6-phosphogluconate dehydrogenase, decarboxylating	0.7235890014
+UniRef50_G7U5K4: 6-phosphogluconate dehydrogenase, decarboxylating|g__Propionibacterium.s__Propionibacterium_acnes	0.7235890014
+UniRef50_I6TSA4	0.7235746303
+UniRef50_I6TSA4|unclassified	0.7235746303
+UniRef50_UPI0003B5D79A: RhaT family transporter	0.7233932221
+UniRef50_UPI0003B5D79A: RhaT family transporter|unclassified	0.7233932221
+UniRef50_C2QMC9	0.7233639316
+UniRef50_C2QMC9|unclassified	0.7233639316
+UniRef50_K2R125: Insertion sequence transposase	0.7231887799
+UniRef50_K2R125: Insertion sequence transposase|unclassified	0.7231887799
+UniRef50_H3XJS2: HsdM N-terminal domain protein	0.7231350481
+UniRef50_H3XJS2: HsdM N-terminal domain protein|unclassified	0.7231350481
+UniRef50_D0CU98: Glycoside hydroylase family 23	0.7231211637
+UniRef50_D0CU98: Glycoside hydroylase family 23|unclassified	0.7231211637
+UniRef50_G8PA06: Transposase of IS1297	0.7229385317
+UniRef50_G8PA06: Transposase of IS1297|unclassified	0.7229385317
+UniRef50_X2N5D2: Outer membrane-specific lipoprotein transporter subunit LolC	0.7229079264
+UniRef50_X2N5D2: Outer membrane-specific lipoprotein transporter subunit LolC|unclassified	0.7229079264
+UniRef50_A4XPL3	0.7228599005
+UniRef50_A4XPL3|unclassified	0.7228599005
+UniRef50_UPI00044320DC: PREDICTED: vitellogenin-2-like isoform X1	0.7228234643
+UniRef50_UPI00044320DC: PREDICTED: vitellogenin-2-like isoform X1|unclassified	0.7228234643
+UniRef50_G1L5K5	0.7227494610
+UniRef50_G1L5K5|unclassified	0.7227494610
+UniRef50_A0A022S5M2: NAD binding domain of 6-phosphogluconate dehydrogenase family protein	0.7226729641
+UniRef50_A0A022S5M2: NAD binding domain of 6-phosphogluconate dehydrogenase family protein|unclassified	0.7226729641
+UniRef50_UPI0003814957: hypothetical protein	0.7226068507
+UniRef50_UPI0003814957: hypothetical protein|unclassified	0.7226068507
+UniRef50_C4XJT9	0.7225425537
+UniRef50_C4XJT9|unclassified	0.7225425537
+UniRef50_UPI0003070546: hypothetical protein	0.7223890223
+UniRef50_UPI0003070546: hypothetical protein|unclassified	0.7223890223
+UniRef50_W4WXQ5	0.7223502177
+UniRef50_W4WXQ5|unclassified	0.7223502177
+UniRef50_T1KDJ9	0.7222458366
+UniRef50_T1KDJ9|unclassified	0.7222458366
+UniRef50_W0AGC9	0.7222228709
+UniRef50_W0AGC9|unclassified	0.7222228709
+UniRef50_F2RIU6: Transcriptional regulator, XRE family	0.7220126814
+UniRef50_F2RIU6: Transcriptional regulator, XRE family|unclassified	0.7220126814
+UniRef50_A0A019B259	0.7219949832
+UniRef50_A0A019B259|unclassified	0.7219949832
+UniRef50_A4VP43: NAD-dependent aldehyde dehydrogenase	0.7219060928
+UniRef50_A4VP43: NAD-dependent aldehyde dehydrogenase|unclassified	0.7219060928
+UniRef50_UPI0003731937: hypothetical protein, partial	0.7217179159
+UniRef50_UPI0003731937: hypothetical protein, partial|unclassified	0.7217179159
+UniRef50_A0A011Q2P4: Isoquinoline 1-oxidoreductase subunit alpha	0.7216043544
+UniRef50_A0A011Q2P4: Isoquinoline 1-oxidoreductase subunit alpha|unclassified	0.7216043544
+UniRef50_B9KKG0: Response regulator receiver modulated diguanylate cyclase	0.7215007215
+UniRef50_B9KKG0: Response regulator receiver modulated diguanylate cyclase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.7215007215
+UniRef50_G8S496: Replication-associated recombination protein A	0.7215007215
+UniRef50_G8S496: Replication-associated recombination protein A|g__Propionibacterium.s__Propionibacterium_acnes	0.7215007215
+UniRef50_M9VIM2: Phosphotransferase system, EIIC	0.7215007215
+UniRef50_M9VIM2: Phosphotransferase system, EIIC|g__Propionibacterium.s__Propionibacterium_acnes	0.7215007215
+UniRef50_UPI00037F95F5: hypothetical protein	0.7211744956
+UniRef50_UPI00037F95F5: hypothetical protein|unclassified	0.7211744956
+UniRef50_UPI00036A72D9: hypothetical protein	0.7211001840
+UniRef50_UPI00036A72D9: hypothetical protein|unclassified	0.7211001840
+UniRef50_W5FL37	0.7209805335
+UniRef50_W5FL37|unclassified	0.7209805335
+UniRef50_A0A011R0Z1: Low specificity L-threonine aldolase	0.7209433561
+UniRef50_A0A011R0Z1: Low specificity L-threonine aldolase|unclassified	0.7209433561
+UniRef50_UPI0001FFFE99: hypothetical protein	0.7208936765
+UniRef50_UPI0001FFFE99: hypothetical protein|unclassified	0.7208936765
+UniRef50_Q7MYS8: Oligoribonuclease	0.7208463219
+UniRef50_Q7MYS8: Oligoribonuclease|unclassified	0.7208463219
+UniRef50_M0EDY5	0.7207465385
+UniRef50_M0EDY5|unclassified	0.7207465385
+UniRef50_UPI00047DD87B: hydroxymethylglutaryl-CoA synthase	0.7207145792
+UniRef50_UPI00047DD87B: hydroxymethylglutaryl-CoA synthase|unclassified	0.7207145792
+UniRef50_Q6A834	0.7206902889
+UniRef50_Q6A834|unclassified	0.7206902889
+UniRef50_S6CE31	0.7204610951
+UniRef50_S6CE31|unclassified	0.7204610951
+UniRef50_B0UAQ8	0.7203839012
+UniRef50_B0UAQ8|unclassified	0.7203839012
+UniRef50_UPI00046D816A: hypothetical protein	0.7203373124
+UniRef50_UPI00046D816A: hypothetical protein|unclassified	0.7203373124
+UniRef50_X6HY81	0.7203367707
+UniRef50_X6HY81|unclassified	0.7203367707
+UniRef50_K1DU50	0.7203133970
+UniRef50_K1DU50|unclassified	0.7203133970
+UniRef50_W1F2C1: Acyl-CoA dehydrogenases	0.7202775498
+UniRef50_W1F2C1: Acyl-CoA dehydrogenases|unclassified	0.7202775498
+UniRef50_UPI0003F4A4BF: hypothetical protein TREMEDRAFT_59045	0.7201232428
+UniRef50_UPI0003F4A4BF: hypothetical protein TREMEDRAFT_59045|unclassified	0.7201232428
+UniRef50_UPI00036DBF3B: hypothetical protein	0.7200746617
+UniRef50_UPI00036DBF3B: hypothetical protein|unclassified	0.7200746617
+UniRef50_Q1BEM7: LigA	0.7200675901
+UniRef50_Q1BEM7: LigA|unclassified	0.7200675901
+UniRef50_UPI0002F5CA0A: hypothetical protein	0.7200653323
+UniRef50_UPI0002F5CA0A: hypothetical protein|unclassified	0.7200653323
+UniRef50_W3MN34	0.7200264113
+UniRef50_W3MN34|unclassified	0.7200264113
+UniRef50_UPI0003B69380: cell division protein FtsW	0.7199848914
+UniRef50_UPI0003B69380: cell division protein FtsW|unclassified	0.7199848914
+UniRef50_UPI00047718E6: alkylhydroperoxidase	0.7199761299
+UniRef50_UPI00047718E6: alkylhydroperoxidase|unclassified	0.7199761299
+UniRef50_Q3JQL5	0.7199424046
+UniRef50_Q3JQL5|unclassified	0.7199424046
+UniRef50_X5ERA2	0.7199424046
+UniRef50_X5ERA2|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7199424046
+UniRef50_P54954: Probable amino-acid import ATP-binding protein YxeO	0.7199081186
+UniRef50_P54954: Probable amino-acid import ATP-binding protein YxeO|unclassified	0.7199081186
+UniRef50_UPI00035F303F: hypothetical protein	0.7198911207
+UniRef50_UPI00035F303F: hypothetical protein|unclassified	0.7198911207
+UniRef50_Q89LZ8: Bll4395 protein	0.7198434335
+UniRef50_Q89LZ8: Bll4395 protein|unclassified	0.7198434335
+UniRef50_UPI000344198D: PREDICTED: translation initiation factor IF-2-like	0.7198018696
+UniRef50_UPI000344198D: PREDICTED: translation initiation factor IF-2-like|unclassified	0.7198018696
+UniRef50_F2U5S6	0.7197830715
+UniRef50_F2U5S6|unclassified	0.7197830715
+UniRef50_S5DFR0: Isoleucine--tRNA ligase	0.7197043075
+UniRef50_S5DFR0: Isoleucine--tRNA ligase|g__Acinetobacter.s__Acinetobacter_baumannii	0.7197043075
+UniRef50_A8ESW7: Aspartate--tRNA(Asp/Asn) ligase	0.7196455077
+UniRef50_A8ESW7: Aspartate--tRNA(Asp/Asn) ligase|g__Helicobacter.s__Helicobacter_pylori	0.6925207756
+UniRef50_A8ESW7: Aspartate--tRNA(Asp/Asn) ligase|unclassified	0.0271247321
+UniRef50_UPI0004686CF3: DNA processing protein	0.7195616059
+UniRef50_UPI0004686CF3: DNA processing protein|unclassified	0.7195616059
+UniRef50_M9LCC4	0.7195285448
+UniRef50_M9LCC4|unclassified	0.7195285448
+UniRef50_UPI000273D4A6	0.7194998465
+UniRef50_UPI000273D4A6|unclassified	0.7194998465
+UniRef50_Q9I122	0.7194244604
+UniRef50_Q9I122|unclassified	0.7194244604
+UniRef50_UPI000476AD12: hypothetical protein	0.7192776423
+UniRef50_UPI000476AD12: hypothetical protein|unclassified	0.7192776423
+UniRef50_UPI0003B5E1C5: GntR family transcriptional regulator	0.7192089295
+UniRef50_UPI0003B5E1C5: GntR family transcriptional regulator|unclassified	0.7192089295
+UniRef50_A3P8Z9: AMP-binding domain protein	0.7189072610
+UniRef50_A3P8Z9: AMP-binding domain protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7189072610
+UniRef50_A6LUU0	0.7189072610
+UniRef50_A6LUU0|g__Clostridium.s__Clostridium_beijerinckii	0.7189072610
+UniRef50_B9TDV5	0.7189072610
+UniRef50_B9TDV5|unclassified	0.7189072610
+UniRef50_Z5X8T7: Pyridine nucleotide transhydrogenase	0.7188395037
+UniRef50_Z5X8T7: Pyridine nucleotide transhydrogenase|unclassified	0.7188395037
+UniRef50_Q3SPM7: Peptidyl-tRNA hydrolase	0.7188090731
+UniRef50_Q3SPM7: Peptidyl-tRNA hydrolase|unclassified	0.7188090731
+UniRef50_Q8CLS1	0.7188025299
+UniRef50_Q8CLS1|unclassified	0.7188025299
+UniRef50_I3ZBV7: YVTN family beta-propeller repeat protein	0.7187908399
+UniRef50_I3ZBV7: YVTN family beta-propeller repeat protein|unclassified	0.7187908399
+UniRef50_A6ULT1: Cytochrome oxidase maturation protein, cbb3-type	0.7187792157
+UniRef50_A6ULT1: Cytochrome oxidase maturation protein, cbb3-type|unclassified	0.7187792157
+UniRef50_D0JFP8: Permease	0.7187727942
+UniRef50_D0JFP8: Permease|unclassified	0.7187727942
+UniRef50_Y1QUK6	0.7185564396
+UniRef50_Y1QUK6|unclassified	0.7185564396
+UniRef50_UPI00046B7987: PREDICTED: H/ACA ribonucleoprotein complex subunit 1-like	0.7184886373
+UniRef50_UPI00046B7987: PREDICTED: H/ACA ribonucleoprotein complex subunit 1-like|unclassified	0.7184886373
+UniRef50_E8WDB2: Prevent-host-death family protein	0.7183943167
+UniRef50_E8WDB2: Prevent-host-death family protein|unclassified	0.7183943167
+UniRef50_E3A0A4: 2,4-dienoyl-CoA reductase FadH2	0.7183908046
+UniRef50_E3A0A4: 2,4-dienoyl-CoA reductase FadH2|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7183908046
+UniRef50_R9V179: FAD-dependent oxidoreductase	0.7183908046
+UniRef50_R9V179: FAD-dependent oxidoreductase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7183908046
+UniRef50_W2F020	0.7183908046
+UniRef50_W2F020|unclassified	0.7183908046
+UniRef50_UPI00023790C3: hypothetical protein	0.7183747744
+UniRef50_UPI00023790C3: hypothetical protein|unclassified	0.7183747744
+UniRef50_UPI0001B434D6: hypothetical protein, partial	0.7183564897
+UniRef50_UPI0001B434D6: hypothetical protein, partial|unclassified	0.7183564897
+UniRef50_UPI0003666C39: hypothetical protein	0.7183184656
+UniRef50_UPI0003666C39: hypothetical protein|unclassified	0.7183184656
+UniRef50_N1MX18	0.7182925632
+UniRef50_N1MX18|unclassified	0.7182925632
+UniRef50_Q9WVZ1: Extracellular endonuclease	0.7182833317
+UniRef50_Q9WVZ1: Extracellular endonuclease|unclassified	0.7182833317
+UniRef50_T8EGB2: Protein impB	0.7181295864
+UniRef50_T8EGB2: Protein impB|unclassified	0.7181295864
+UniRef50_L1L9I7	0.7180682134
+UniRef50_L1L9I7|unclassified	0.7180682134
+UniRef50_UPI0001FFE88F: glycosyl transferase group 1	0.7180667381
+UniRef50_UPI0001FFE88F: glycosyl transferase group 1|unclassified	0.7180667381
+UniRef50_UPI00036C7C1A: hypothetical protein	0.7179245567
+UniRef50_UPI00036C7C1A: hypothetical protein|unclassified	0.7179245567
+UniRef50_W1EFK1: Protease III	0.7179240194
+UniRef50_W1EFK1: Protease III|g__Escherichia.s__Escherichia_coli	0.7179240194
+UniRef50_E7UX21: Protein ImpG/VasA	0.7179073386
+UniRef50_E7UX21: Protein ImpG/VasA|unclassified	0.7179073386
+UniRef50_J3IUG0	0.7178763653
+UniRef50_J3IUG0|unclassified	0.7178763653
+UniRef50_A5FT89	0.7178631165
+UniRef50_A5FT89|unclassified	0.7178631165
+UniRef50_UPI00047AB6F5: imidazoleglycerol-phosphate dehydratase	0.7177806224
+UniRef50_UPI00047AB6F5: imidazoleglycerol-phosphate dehydratase|unclassified	0.7177806224
+UniRef50_Q8PHY2: Coenzyme PQQ synthesis protein D	0.7177534323
+UniRef50_Q8PHY2: Coenzyme PQQ synthesis protein D|unclassified	0.7177534323
+UniRef50_UPI000382F305: hypothetical protein, partial	0.7177477958
+UniRef50_UPI000382F305: hypothetical protein, partial|unclassified	0.7177477958
+UniRef50_UPI0004638A40: hypothetical protein	0.7177111710
+UniRef50_UPI0004638A40: hypothetical protein|unclassified	0.7177111710
+UniRef50_I4UCL1: Putative oxidoreductase Fe-S subunit	0.7175881222
+UniRef50_I4UCL1: Putative oxidoreductase Fe-S subunit|unclassified	0.7175881222
+UniRef50_UPI0003FB6811: hypothetical protein	0.7174504393
+UniRef50_UPI0003FB6811: hypothetical protein|unclassified	0.7174504393
+UniRef50_UPI0003D6EC46	0.7174444450
+UniRef50_UPI0003D6EC46|unclassified	0.7174444450
+UniRef50_UPI0002194892: putative drug resistance ABC transporter, two ATP-binding subunits	0.7174298988
+UniRef50_UPI0002194892: putative drug resistance ABC transporter, two ATP-binding subunits|unclassified	0.7174298988
+UniRef50_G8PKG2	0.7173632493
+UniRef50_G8PKG2|unclassified	0.7173632493
+UniRef50_UPI0003675E1F: hypothetical protein	0.7173487008
+UniRef50_UPI0003675E1F: hypothetical protein|unclassified	0.7173487008
+UniRef50_Q7WWS2: Catabolite activation-like protein (CAP-like) (Fragment)	0.7172765524
+UniRef50_Q7WWS2: Catabolite activation-like protein (CAP-like) (Fragment)|unclassified	0.7172765524
+UniRef50_C7DA28	0.7172448548
+UniRef50_C7DA28|unclassified	0.7172448548
+UniRef50_UPI0003B7991F: hypothetical protein	0.7172233361
+UniRef50_UPI0003B7991F: hypothetical protein|unclassified	0.7172233361
+UniRef50_UPI000380885A: hypothetical protein, partial	0.7172090926
+UniRef50_UPI000380885A: hypothetical protein, partial|unclassified	0.7172090926
+UniRef50_UPI00046A5CCB: PA-phosphatase	0.7170712680
+UniRef50_UPI00046A5CCB: PA-phosphatase|unclassified	0.7170712680
+UniRef50_UPI0003A27C90: hypothetical protein	0.7170186353
+UniRef50_UPI0003A27C90: hypothetical protein|unclassified	0.7170186353
+UniRef50_UPI0003F909CE: hypothetical protein	0.7169171292
+UniRef50_UPI0003F909CE: hypothetical protein|unclassified	0.7169171292
+UniRef50_Q2J3C8: OmpA/MotB	0.7168671488
+UniRef50_Q2J3C8: OmpA/MotB|unclassified	0.7168671488
+UniRef50_C0P4R4	0.7168458781
+UniRef50_C0P4R4|unclassified	0.7168458781
+UniRef50_J2DPW6	0.7168458781
+UniRef50_J2DPW6|unclassified	0.7168458781
+UniRef50_Q9RXK8	0.7168458781
+UniRef50_Q9RXK8|g__Deinococcus.s__Deinococcus_radiodurans	0.7168458781
+UniRef50_UPI0004726713: 2-hydroxychromene-2-carboxylate isomerase	0.7167560178
+UniRef50_UPI0004726713: 2-hydroxychromene-2-carboxylate isomerase|unclassified	0.7167560178
+UniRef50_UPI0003686AD8: hypothetical protein	0.7167534221
+UniRef50_UPI0003686AD8: hypothetical protein|unclassified	0.7167534221
+UniRef50_Q8XZP8: Sulfate/thiosulfate import ATP-binding protein CysA	0.7167531645
+UniRef50_Q8XZP8: Sulfate/thiosulfate import ATP-binding protein CysA|unclassified	0.7167531645
+UniRef50_F9Q6U5: Conserved domain protein	0.7166419495
+UniRef50_F9Q6U5: Conserved domain protein|unclassified	0.7166419495
+UniRef50_X8B3B0: Putative membrane protein	0.7164946505
+UniRef50_X8B3B0: Putative membrane protein|unclassified	0.7164946505
+UniRef50_UPI00035E59D2: hypothetical protein	0.7164269482
+UniRef50_UPI00035E59D2: hypothetical protein|unclassified	0.7164269482
+UniRef50_B7LAS4: Probable 4-amino-4-deoxy-L-arabinose-phosphoundecaprenol flippase subunit ArnF	0.7163841315
+UniRef50_B7LAS4: Probable 4-amino-4-deoxy-L-arabinose-phosphoundecaprenol flippase subunit ArnF|unclassified	0.7163841315
+UniRef50_Q16B35	0.7163791411
+UniRef50_Q16B35|unclassified	0.7163791411
+UniRef50_Q9ZJ57: Transcription-repair-coupling factor	0.7163688756
+UniRef50_Q9ZJ57: Transcription-repair-coupling factor|g__Helicobacter.s__Helicobacter_pylori	0.7163688756
+UniRef50_F1YLB4	0.7163346284
+UniRef50_F1YLB4|unclassified	0.7163346284
+UniRef50_D9TM82: Pyruvate flavodoxin/ferredoxin oxidoreductase domain protein	0.7163323782
+UniRef50_D9TM82: Pyruvate flavodoxin/ferredoxin oxidoreductase domain protein|g__Clostridium.s__Clostridium_beijerinckii	0.7163323782
+UniRef50_E1V509: APC family transporter	0.7163323782
+UniRef50_E1V509: APC family transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7163323782
+UniRef50_Q51484	0.7163323782
+UniRef50_Q51484|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7163323782
+UniRef50_UPI0003B526DD: phenylacetic acid degradation protein PaaI	0.7162811991
+UniRef50_UPI0003B526DD: phenylacetic acid degradation protein PaaI|unclassified	0.7162811991
+UniRef50_UPI00047B06B8: hypothetical protein	0.7162314415
+UniRef50_UPI00047B06B8: hypothetical protein|unclassified	0.7162314415
+UniRef50_Q164Y5: sn-glycerol-3-phosphate import ATP-binding protein UgpC	0.7162128213
+UniRef50_Q164Y5: sn-glycerol-3-phosphate import ATP-binding protein UgpC|unclassified	0.7162128213
+UniRef50_A5IRL2	0.7160104049
+UniRef50_A5IRL2|unclassified	0.7160104049
+UniRef50_Q9RXE1: Lysine--tRNA ligase	0.7158101206
+UniRef50_Q9RXE1: Lysine--tRNA ligase|g__Deinococcus.s__Deinococcus_radiodurans	0.6518904824
+UniRef50_Q9RXE1: Lysine--tRNA ligase|unclassified	0.0639196382
+UniRef50_V4PD29	0.7156864574
+UniRef50_V4PD29|unclassified	0.7156864574
+UniRef50_D3D4M2	0.7156437357
+UniRef50_D3D4M2|unclassified	0.7156437357
+UniRef50_UPI0001B664E4: Os08g0187500	0.7155368235
+UniRef50_UPI0001B664E4: Os08g0187500|unclassified	0.7155368235
+UniRef50_UPI00036F72CE: hypothetical protein, partial	0.7153373608
+UniRef50_UPI00036F72CE: hypothetical protein, partial|unclassified	0.7153373608
+UniRef50_UPI00037906D1: transcriptional regulator	0.7153102492
+UniRef50_UPI00037906D1: transcriptional regulator|unclassified	0.7153102492
+UniRef50_T1Z4M0	0.7151787116
+UniRef50_T1Z4M0|unclassified	0.7151787116
+UniRef50_E7A9N4: von Willebrand factor type A domain protein	0.7150030148
+UniRef50_E7A9N4: von Willebrand factor type A domain protein|unclassified	0.7150030148
+UniRef50_H1XFI5	0.7149880646
+UniRef50_H1XFI5|unclassified	0.7149880646
+UniRef50_UPI000468FB82: ATPase	0.7149699504
+UniRef50_UPI000468FB82: ATPase|unclassified	0.7149699504
+UniRef50_UPI0003F8A827: aminotransferase	0.7148905103
+UniRef50_UPI0003F8A827: aminotransferase|unclassified	0.7148905103
+UniRef50_B3Q965	0.7148454812
+UniRef50_B3Q965|unclassified	0.7148454812
+UniRef50_UPI0003052E4A: NADH dehydrogenase	0.7147965284
+UniRef50_UPI0003052E4A: NADH dehydrogenase|unclassified	0.7147965284
+UniRef50_M4BY62	0.7147962831
+UniRef50_M4BY62|unclassified	0.7147962831
+UniRef50_UPI00037A0480: hypothetical protein	0.7147962831
+UniRef50_UPI00037A0480: hypothetical protein|unclassified	0.7147962831
+UniRef50_W5XW14: Transcriptional regulator, LytR family protein	0.7147962831
+UniRef50_W5XW14: Transcriptional regulator, LytR family protein|unclassified	0.7147962831
+UniRef50_N6V170	0.7146126197
+UniRef50_N6V170|unclassified	0.7146126197
+UniRef50_W0HY15	0.7144395799
+UniRef50_W0HY15|unclassified	0.7144395799
+UniRef50_W0MIT6: Integrase core domain protein	0.7143952293
+UniRef50_W0MIT6: Integrase core domain protein|unclassified	0.7143952293
+UniRef50_UPI0002D5C47C: hypothetical protein	0.7143599807
+UniRef50_UPI0002D5C47C: hypothetical protein|unclassified	0.7143599807
+UniRef50_UPI000442017F: PREDICTED: zinc finger protein ZIC 5-like	0.7142857143
+UniRef50_UPI000442017F: PREDICTED: zinc finger protein ZIC 5-like|unclassified	0.7142857143
+UniRef50_K4Z6Z2: Lipoprotein, YaeC family	0.7142375633
+UniRef50_K4Z6Z2: Lipoprotein, YaeC family|unclassified	0.7142375633
+UniRef50_X1F770: Marine sediment metagenome DNA, contig: S03H2_C01045 (Fragment)	0.7142325458
+UniRef50_X1F770: Marine sediment metagenome DNA, contig: S03H2_C01045 (Fragment)|unclassified	0.7142325458
+UniRef50_D0MGQ5: MaoC domain protein dehydratase	0.7140751949
+UniRef50_D0MGQ5: MaoC domain protein dehydratase|unclassified	0.7140751949
+UniRef50_Q8A883: Spermidine/putrescine import ATP-binding protein PotA	0.7140096339
+UniRef50_Q8A883: Spermidine/putrescine import ATP-binding protein PotA|unclassified	0.7140096339
+UniRef50_Q88QZ8: Peptide methionine sulfoxide reductase MsrA	0.7139879794
+UniRef50_Q88QZ8: Peptide methionine sulfoxide reductase MsrA|unclassified	0.7139879794
+UniRef50_J8XDJ6	0.7139593710
+UniRef50_J8XDJ6|unclassified	0.7139593710
+UniRef50_T0JXI9	0.7138567730
+UniRef50_T0JXI9|unclassified	0.7138567730
+UniRef50_A1YN23: YdcD	0.7138046010
+UniRef50_A1YN23: YdcD|unclassified	0.7138046010
+UniRef50_UPI00042AE80F: PREDICTED: collagen alpha-1(I) chain-like	0.7137758744
+UniRef50_UPI00042AE80F: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.7137758744
+UniRef50_UPI0003B35B8E: cupin	0.7137001292
+UniRef50_UPI0003B35B8E: cupin|unclassified	0.7137001292
+UniRef50_R1DDU5	0.7135384573
+UniRef50_R1DDU5|unclassified	0.7135384573
+UniRef50_S5XVI4	0.7134368309
+UniRef50_S5XVI4|unclassified	0.7134368309
+UniRef50_Q8VPF2: 3-oxoadipate CoA-transferase subunit B	0.7134099662
+UniRef50_Q8VPF2: 3-oxoadipate CoA-transferase subunit B|unclassified	0.7134099662
+UniRef50_C4RAQ9	0.7134096886
+UniRef50_C4RAQ9|unclassified	0.7134096886
+UniRef50_F7WCU9: WGS project CABT00000000 data, contig 2.284	0.7132956941
+UniRef50_F7WCU9: WGS project CABT00000000 data, contig 2.284|unclassified	0.7132956941
+UniRef50_UPI00037508A5: hypothetical protein	0.7132237022
+UniRef50_UPI00037508A5: hypothetical protein|unclassified	0.7132237022
+UniRef50_UPI0003B5E137: glycine/betaine ABC transporter ATP-binding protein	0.7131607200
+UniRef50_UPI0003B5E137: glycine/betaine ABC transporter ATP-binding protein|unclassified	0.7131607200
+UniRef50_F4CJF4	0.7131407560
+UniRef50_F4CJF4|unclassified	0.7131407560
+UniRef50_C4I4X8: Gp19	0.7130850848
+UniRef50_C4I4X8: Gp19|unclassified	0.7130850848
+UniRef50_UPI0002DCF3B2: sugar ABC transporter ATP-binding protein	0.7130836827
+UniRef50_UPI0002DCF3B2: sugar ABC transporter ATP-binding protein|unclassified	0.7130836827
+UniRef50_Q3JVM0	0.7130644658
+UniRef50_Q3JVM0|unclassified	0.7130644658
+UniRef50_D2NT21: Predicted phosphatase/phosphohexomutase	0.7130400167
+UniRef50_D2NT21: Predicted phosphatase/phosphohexomutase|unclassified	0.7130400167
+UniRef50_A0RBY1	0.7127942318
+UniRef50_A0RBY1|unclassified	0.7127942318
+UniRef50_I4WDX1	0.7127664206
+UniRef50_I4WDX1|unclassified	0.7127664206
+UniRef50_Q9RWW2	0.7127583749
+UniRef50_Q9RWW2|g__Deinococcus.s__Deinococcus_radiodurans	0.7127583749
+UniRef50_M4JWV0: PsiE family protein	0.7125595853
+UniRef50_M4JWV0: PsiE family protein|unclassified	0.7125595853
+UniRef50_UPI0002379BDC: 3-oxoacyl-ACP synthase	0.7125573661
+UniRef50_UPI0002379BDC: 3-oxoacyl-ACP synthase|unclassified	0.7125573661
+UniRef50_UPI0004662733: GntR family transcriptional regulator	0.7125534209
+UniRef50_UPI0004662733: GntR family transcriptional regulator|unclassified	0.7125534209
+UniRef50_D3NS91	0.7125191708
+UniRef50_D3NS91|unclassified	0.7125191708
+UniRef50_UPI000377C2D0: hypothetical protein	0.7125013324
+UniRef50_UPI000377C2D0: hypothetical protein|unclassified	0.7125013324
+UniRef50_UPI0003EF8F8C: hypothetical protein	0.7124935494
+UniRef50_UPI0003EF8F8C: hypothetical protein|unclassified	0.7124935494
+UniRef50_K2EV80: Cyclase/dehydrase	0.7124253022
+UniRef50_K2EV80: Cyclase/dehydrase|unclassified	0.7124253022
+UniRef50_X9NXE4	0.7123343206
+UniRef50_X9NXE4|unclassified	0.7123343206
+UniRef50_UPI0003785425: hypothetical protein	0.7123127525
+UniRef50_UPI0003785425: hypothetical protein|unclassified	0.7123127525
+UniRef50_G7TM97: Transposase	0.7122993006
+UniRef50_G7TM97: Transposase|unclassified	0.7122993006
+UniRef50_V9U4U5: Enterochelin esterase	0.7122507123
+UniRef50_V9U4U5: Enterochelin esterase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.7122507123
+UniRef50_L1KZM9	0.7122117006
+UniRef50_L1KZM9|unclassified	0.7122117006
+UniRef50_UPI00040DEDFB: glycine cleavage system protein H	0.7120585812
+UniRef50_UPI00040DEDFB: glycine cleavage system protein H|unclassified	0.7120585812
+UniRef50_I1F0D9	0.7119909912
+UniRef50_I1F0D9|unclassified	0.7119909912
+UniRef50_X1HTC5: Marine sediment metagenome DNA, contig: S03H2_S06566 (Fragment)	0.7119876737
+UniRef50_X1HTC5: Marine sediment metagenome DNA, contig: S03H2_S06566 (Fragment)|unclassified	0.7119876737
+UniRef50_P00414: Cytochrome c oxidase subunit 3	0.7119670698
+UniRef50_P00414: Cytochrome c oxidase subunit 3|unclassified	0.7119670698
+UniRef50_UPI00041FB107: symporter	0.7118251457
+UniRef50_UPI00041FB107: symporter|unclassified	0.7118251457
+UniRef50_A0QM11	0.7117437722
+UniRef50_A0QM11|unclassified	0.7117437722
+UniRef50_Q08YM3	0.7117437722
+UniRef50_Q08YM3|unclassified	0.7117437722
+UniRef50_K0T2W7	0.7115170277
+UniRef50_K0T2W7|unclassified	0.7115170277
+UniRef50_Q5FRN1: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.7114323536
+UniRef50_Q5FRN1: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.7114323536
+UniRef50_UPI0004648E2A: hypothetical protein	0.7113405120
+UniRef50_UPI0004648E2A: hypothetical protein|unclassified	0.7113405120
+UniRef50_A0A023ETL5: Putative secreted protein of aegy sperm (Fragment)	0.7112899317
+UniRef50_A0A023ETL5: Putative secreted protein of aegy sperm (Fragment)|unclassified	0.7112899317
+UniRef50_UPI00037621BC: hypothetical protein	0.7111037944
+UniRef50_UPI00037621BC: hypothetical protein|unclassified	0.7111037944
+UniRef50_A2YJ72	0.7108521655
+UniRef50_A2YJ72|unclassified	0.7108521655
+UniRef50_UPI000309099A: hypothetical protein	0.7107868009
+UniRef50_UPI000309099A: hypothetical protein|unclassified	0.7107868009
+UniRef50_X1AFV0: Marine sediment metagenome DNA, contig: S01H4_C03047	0.7107789234
+UniRef50_X1AFV0: Marine sediment metagenome DNA, contig: S01H4_C03047|unclassified	0.7107789234
+UniRef50_K7SNW3: Biotin-requiring enzyme	0.7107320540
+UniRef50_K7SNW3: Biotin-requiring enzyme|g__Propionibacterium.s__Propionibacterium_acnes	0.7107320540
+UniRef50_Q21QY4: Hydrogen:quinone oxidoreductase	0.7107320540
+UniRef50_Q21QY4: Hydrogen:quinone oxidoreductase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.7107320540
+UniRef50_W8A987: Basic proline-rich protein	0.7107320540
+UniRef50_W8A987: Basic proline-rich protein|unclassified	0.7107320540
+UniRef50_F0XZY2: Expressed protein (Fragment)	0.7106857191
+UniRef50_F0XZY2: Expressed protein (Fragment)|unclassified	0.7106857191
+UniRef50_A5V5W9: DGPFAETKE family protein	0.7106752506
+UniRef50_A5V5W9: DGPFAETKE family protein|unclassified	0.7106752506
+UniRef50_UPI000255F5FD: hypothetical protein	0.7106679708
+UniRef50_UPI000255F5FD: hypothetical protein|unclassified	0.7106679708
+UniRef50_F1WXM9	0.7106605990
+UniRef50_F1WXM9|unclassified	0.7106605990
+UniRef50_UPI000471096B: hypothetical protein	0.7106384560
+UniRef50_UPI000471096B: hypothetical protein|unclassified	0.7106384560
+UniRef50_UPI000463A207: glycoside hydrolase	0.7106276150
+UniRef50_UPI000463A207: glycoside hydrolase|unclassified	0.7106276150
+UniRef50_UPI0002379B7E: alkylhydroperoxidase	0.7104176392
+UniRef50_UPI0002379B7E: alkylhydroperoxidase|unclassified	0.7104176392
+UniRef50_UPI0000E48B78	0.7103598732
+UniRef50_UPI0000E48B78|unclassified	0.7103598732
+UniRef50_M1KRM3: Prophage-derived putative transcriptional regulator	0.7103177804
+UniRef50_M1KRM3: Prophage-derived putative transcriptional regulator|unclassified	0.7103177804
+UniRef50_Q6FB06	0.7102683866
+UniRef50_Q6FB06|unclassified	0.7102683866
+UniRef50_R5TSV1: Phosphoglucomutase/phosphomannomutase family protein	0.7102272727
+UniRef50_R5TSV1: Phosphoglucomutase/phosphomannomutase family protein|g__Propionibacterium.s__Propionibacterium_acnes	0.7102272727
+UniRef50_I6S4N7	0.7102234012
+UniRef50_I6S4N7|unclassified	0.7102234012
+UniRef50_UPI00046A1E34: hypothetical protein	0.7101059045
+UniRef50_UPI00046A1E34: hypothetical protein|unclassified	0.7101059045
+UniRef50_UPI0004785C2A: hypothetical protein	0.7100689775
+UniRef50_UPI0004785C2A: hypothetical protein|unclassified	0.7100689775
+UniRef50_K0XVE6: Transposase insN for insertion sequence element IS911	0.7100349714
+UniRef50_K0XVE6: Transposase insN for insertion sequence element IS911|unclassified	0.7100349714
+UniRef50_O22514: Proline rich protein	0.7098871493
+UniRef50_O22514: Proline rich protein|unclassified	0.7098871493
+UniRef50_R1D5X8	0.7098767570
+UniRef50_R1D5X8|unclassified	0.7098767570
+UniRef50_UPI0002F7E60E: hypothetical protein	0.7098305870
+UniRef50_UPI0002F7E60E: hypothetical protein|unclassified	0.7098305870
+UniRef50_UPI00029AFF26: 30S ribosomal protein S15	0.7098101529
+UniRef50_UPI00029AFF26: 30S ribosomal protein S15|unclassified	0.7098101529
+UniRef50_A0A037Y901: Gluconate:proton symporter	0.7097232079
+UniRef50_A0A037Y901: Gluconate:proton symporter|g__Acinetobacter.s__Acinetobacter_baumannii	0.7097232079
+UniRef50_I0EP63	0.7097232079
+UniRef50_I0EP63|g__Helicobacter.s__Helicobacter_pylori	0.7097232079
+UniRef50_UPI00046644F9: putrescine/spermidine ABC transporter substrate-binding protein	0.7097152525
+UniRef50_UPI00046644F9: putrescine/spermidine ABC transporter substrate-binding protein|unclassified	0.7097152525
+UniRef50_UPI00036A881E: hypothetical protein	0.7095852995
+UniRef50_UPI00036A881E: hypothetical protein|unclassified	0.7095852995
+UniRef50_A3DDH9: LexA repressor	0.7095441321
+UniRef50_A3DDH9: LexA repressor|unclassified	0.7095441321
+UniRef50_U6HM79: Mitochondrial ribosomal protein S12	0.7095016563
+UniRef50_U6HM79: Mitochondrial ribosomal protein S12|unclassified	0.7095016563
+UniRef50_D8QDM8	0.7094749988
+UniRef50_D8QDM8|unclassified	0.7094749988
+UniRef50_J1Q024: Cell wall-associated serine proteinase PrtA domain protein	0.7094113194
+UniRef50_J1Q024: Cell wall-associated serine proteinase PrtA domain protein|unclassified	0.7094113194
+UniRef50_UPI0003B5E2AD: ABC transporter	0.7093946453
+UniRef50_UPI0003B5E2AD: ABC transporter|unclassified	0.7093946453
+UniRef50_Q8XQ83: Chemotaxis response regulator protein-glutamate methylesterase	0.7093714633
+UniRef50_Q8XQ83: Chemotaxis response regulator protein-glutamate methylesterase|unclassified	0.7093714633
+UniRef50_UPI0003EFB0C6: hypothetical protein, partial	0.7093418207
+UniRef50_UPI0003EFB0C6: hypothetical protein, partial|unclassified	0.7093418207
+UniRef50_W9EWM1	0.7092819955
+UniRef50_W9EWM1|unclassified	0.7092819955
+UniRef50_A5DK20	0.7092624563
+UniRef50_A5DK20|unclassified	0.7092624563
+UniRef50_Q4SYU9: Chromosome undetermined SCAF11948, whole genome shotgun sequence	0.7092423721
+UniRef50_Q4SYU9: Chromosome undetermined SCAF11948, whole genome shotgun sequence|unclassified	0.7092423721
+UniRef50_E8P8P8	0.7092198582
+UniRef50_E8P8P8|g__Acinetobacter.s__Acinetobacter_baumannii	0.7092198582
+UniRef50_U3T3B6: Phospholipase D protein	0.7092198582
+UniRef50_U3T3B6: Phospholipase D protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.7092198582
+UniRef50_I4YRS4: Replication protein C	0.7091569404
+UniRef50_I4YRS4: Replication protein C|unclassified	0.7091569404
+UniRef50_Q0RCY1: Putative integral membrane protein (Partial match) putative coiled-coil domain	0.7090809166
+UniRef50_Q0RCY1: Putative integral membrane protein (Partial match) putative coiled-coil domain|unclassified	0.7090809166
+UniRef50_UPI00047944B9: carbonic anhydrase	0.7089274616
+UniRef50_UPI00047944B9: carbonic anhydrase|unclassified	0.7089274616
+UniRef50_F3KGL6	0.7087510271
+UniRef50_F3KGL6|unclassified	0.7087510271
+UniRef50_B9KQZ7: Glycosyl transferase, family 2	0.7087172218
+UniRef50_B9KQZ7: Glycosyl transferase, family 2|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.7087172218
+UniRef50_K0SDQ3	0.7087172218
+UniRef50_K0SDQ3|unclassified	0.7087172218
+UniRef50_UPI0002EC7A35: hypothetical protein	0.7086522347
+UniRef50_UPI0002EC7A35: hypothetical protein|unclassified	0.7086522347
+UniRef50_Q92I26: Probable branched-chain-amino-acid aminotransferase	0.7085454239
+UniRef50_Q92I26: Probable branched-chain-amino-acid aminotransferase|unclassified	0.7085454239
+UniRef50_B0VS92: Paraquat-inducible protein	0.7082152975
+UniRef50_B0VS92: Paraquat-inducible protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.7082152975
+UniRef50_C9X0H3: DNA repair protein RecN	0.7082152975
+UniRef50_C9X0H3: DNA repair protein RecN|g__Neisseria.s__Neisseria_meningitidis	0.7082152975
+UniRef50_G8NWZ5: Sigma 54 interacting domain protein	0.7082152975
+UniRef50_G8NWZ5: Sigma 54 interacting domain protein|g__Deinococcus.s__Deinococcus_radiodurans	0.7082152975
+UniRef50_Q1J0Q8: Glycolate oxidase subunit, GlcD	0.7082152975
+UniRef50_Q1J0Q8: Glycolate oxidase subunit, GlcD|g__Deinococcus.s__Deinococcus_radiodurans	0.7082152975
+UniRef50_F3G5V9	0.7082140072
+UniRef50_F3G5V9|unclassified	0.7082140072
+UniRef50_A0A024HC58	0.7082091409
+UniRef50_A0A024HC58|unclassified	0.7082091409
+UniRef50_W7K1M3: Putative enzyme	0.7081606305
+UniRef50_W7K1M3: Putative enzyme|unclassified	0.7081606305
+UniRef50_UPI0003668AD0: hypothetical protein	0.7080634494
+UniRef50_UPI0003668AD0: hypothetical protein|unclassified	0.7080634494
+UniRef50_Q1YYL9	0.7080125645
+UniRef50_Q1YYL9|unclassified	0.7080125645
+UniRef50_W7XAW6	0.7079030513
+UniRef50_W7XAW6|unclassified	0.7079030513
+UniRef50_Q5NLZ3: Tyrosine--tRNA ligase	0.7077524316
+UniRef50_Q5NLZ3: Tyrosine--tRNA ligase|unclassified	0.7077524316
+UniRef50_Q8ZM86: tRNA(fMet)-specific endonuclease VapC	0.7077201356
+UniRef50_Q8ZM86: tRNA(fMet)-specific endonuclease VapC|unclassified	0.7077201356
+UniRef50_B4IVR0: GE15000	0.7077140835
+UniRef50_B4IVR0: GE15000|unclassified	0.7077140835
+UniRef50_C6WMT0	0.7076987364
+UniRef50_C6WMT0|unclassified	0.7076987364
+UniRef50_UPI00037BD6B3: hypothetical protein	0.7076428341
+UniRef50_UPI00037BD6B3: hypothetical protein|unclassified	0.7076428341
+UniRef50_A3VDP3: Acyl carrier protein, AcpP	0.7075020930
+UniRef50_A3VDP3: Acyl carrier protein, AcpP|unclassified	0.7075020930
+UniRef50_UPI000379A0A5: MerR family transcriptional regulator	0.7074340917
+UniRef50_UPI000379A0A5: MerR family transcriptional regulator|unclassified	0.7074340917
+UniRef50_X2N356	0.7074101940
+UniRef50_X2N356|unclassified	0.7074101940
+UniRef50_UPI00021A56D6: PREDICTED: choline dehydrogenase-like	0.7073732455
+UniRef50_UPI00021A56D6: PREDICTED: choline dehydrogenase-like|unclassified	0.7073732455
+UniRef50_UPI000374E005: hypothetical protein	0.7073373528
+UniRef50_UPI000374E005: hypothetical protein|unclassified	0.7073373528
+UniRef50_UPI0002B41C17: PREDICTED: peroxiredoxin-2B-like	0.7073041811
+UniRef50_UPI0002B41C17: PREDICTED: peroxiredoxin-2B-like|unclassified	0.7073041811
+UniRef50_UPI000402F7CF: hypothetical protein	0.7072660879
+UniRef50_UPI000402F7CF: hypothetical protein|unclassified	0.7072660879
+UniRef50_UPI00031AFDDA: hypothetical protein	0.7072262813
+UniRef50_UPI00031AFDDA: hypothetical protein|unclassified	0.7072262813
+UniRef50_P34896: Serine hydroxymethyltransferase, cytosolic	0.7068933463
+UniRef50_P34896: Serine hydroxymethyltransferase, cytosolic|unclassified	0.7068933463
+UniRef50_C6M8V2	0.7068778210
+UniRef50_C6M8V2|unclassified	0.7068778210
+UniRef50_UPI000288493B: hypothetical protein	0.7067387886
+UniRef50_UPI000288493B: hypothetical protein|unclassified	0.7067387886
+UniRef50_Q6FF20: Polyphosphate-AMP phosphotransferase	0.7067137809
+UniRef50_Q6FF20: Polyphosphate-AMP phosphotransferase|g__Acinetobacter.s__Acinetobacter_baumannii	0.7067137809
+UniRef50_D6SFA0	0.7066416984
+UniRef50_D6SFA0|unclassified	0.7066416984
+UniRef50_A0A038G8T3	0.7065754295
+UniRef50_A0A038G8T3|unclassified	0.7065754295
+UniRef50_S6GJT1: Transposase IS4 family protein	0.7065477083
+UniRef50_S6GJT1: Transposase IS4 family protein|unclassified	0.7065477083
+UniRef50_UPI00047505A6: gamma-glutamylputrescine synthetase, partial	0.7064705373
+UniRef50_UPI00047505A6: gamma-glutamylputrescine synthetase, partial|unclassified	0.7064705373
+UniRef50_UPI0002556E02: hypothetical protein	0.7064536508
+UniRef50_UPI0002556E02: hypothetical protein|unclassified	0.7064536508
+UniRef50_UPI0002002483: hypothetical protein	0.7064147639
+UniRef50_UPI0002002483: hypothetical protein|unclassified	0.7064147639
+UniRef50_Q98MD2: LexA repressor	0.7063876018
+UniRef50_Q98MD2: LexA repressor|unclassified	0.7063876018
+UniRef50_A0LSS7: Glutamate--tRNA ligase	0.7062146893
+UniRef50_A0LSS7: Glutamate--tRNA ligase|g__Propionibacterium.s__Propionibacterium_acnes	0.7062146893
+UniRef50_G2BI17	0.7061878427
+UniRef50_G2BI17|unclassified	0.7061878427
+UniRef50_C1DH06	0.7061586606
+UniRef50_C1DH06|unclassified	0.7061586606
+UniRef50_UPI0003817925: DNA polymerase, partial	0.7061157477
+UniRef50_UPI0003817925: DNA polymerase, partial|unclassified	0.7061157477
+UniRef50_UPI00024834D6: ferrous iron transport protein B, partial	0.7059608110
+UniRef50_UPI00024834D6: ferrous iron transport protein B, partial|unclassified	0.7059608110
+UniRef50_Q0FUI9: ISSpo9, transposase	0.7058841195
+UniRef50_Q0FUI9: ISSpo9, transposase|unclassified	0.7058841195
+UniRef50_L7IEN4	0.7057163020
+UniRef50_L7IEN4|unclassified	0.7057163020
+UniRef50_M9RTP6	0.7055540610
+UniRef50_M9RTP6|unclassified	0.7055540610
+UniRef50_W1MQ28	0.7055032411
+UniRef50_W1MQ28|unclassified	0.7055032411
+UniRef50_G5RDZ0: Sialic acid transporter (Permease) NanT	0.7054845071
+UniRef50_G5RDZ0: Sialic acid transporter (Permease) NanT|unclassified	0.7054845071
+UniRef50_Y0KM54: Membrane protein	0.7054829037
+UniRef50_Y0KM54: Membrane protein|unclassified	0.7054829037
+UniRef50_U2ZG68	0.7052613081
+UniRef50_U2ZG68|unclassified	0.7052613081
+UniRef50_G8WFD4	0.7052598268
+UniRef50_G8WFD4|unclassified	0.7052598268
+UniRef50_W7ZLD8: Transcriptional regulator, AraC family	0.7051519189
+UniRef50_W7ZLD8: Transcriptional regulator, AraC family|unclassified	0.7051519189
+UniRef50_UPI000472AC79: hypothetical protein	0.7050515613
+UniRef50_UPI000472AC79: hypothetical protein|unclassified	0.7050515613
+UniRef50_UPI00037C4D1B: hypothetical protein	0.7050192702
+UniRef50_UPI00037C4D1B: hypothetical protein|unclassified	0.7050192702
+UniRef50_UPI00030FD943: hypothetical protein	0.7049232371
+UniRef50_UPI00030FD943: hypothetical protein|unclassified	0.7049232371
+UniRef50_UPI0003C1628B: PREDICTED: phospho-2-dehydro-3-deoxyheptonate aldolase 1, chloroplastic-like	0.7049088683
+UniRef50_UPI0003C1628B: PREDICTED: phospho-2-dehydro-3-deoxyheptonate aldolase 1, chloroplastic-like|unclassified	0.7049088683
+UniRef50_F7DCM6	0.7048288991
+UniRef50_F7DCM6|unclassified	0.7048288991
+UniRef50_UPI00036B80A8: hypothetical protein	0.7048004739
+UniRef50_UPI00036B80A8: hypothetical protein|unclassified	0.7048004739
+UniRef50_UPI000462F18D: hypothetical protein	0.7047588074
+UniRef50_UPI000462F18D: hypothetical protein|unclassified	0.7047588074
+UniRef50_B8DWF1: ATP-binding protein of ABC transporter	0.7047216350
+UniRef50_B8DWF1: ATP-binding protein of ABC transporter|g__Clostridium.s__Clostridium_beijerinckii	0.7047216350
+UniRef50_P9WPR0	0.7047216350
+UniRef50_P9WPR0|g__Propionibacterium.s__Propionibacterium_acnes	0.7047216350
+UniRef50_Q7VFT4: Donor-ubiquinone reductase I	0.7047216350
+UniRef50_Q7VFT4: Donor-ubiquinone reductase I|g__Helicobacter.s__Helicobacter_pylori	0.7047216350
+UniRef50_UPI0002559567: flavodoxin	0.7046912669
+UniRef50_UPI0002559567: flavodoxin|unclassified	0.7046912669
+UniRef50_N9DK24	0.7045522905
+UniRef50_N9DK24|unclassified	0.7045522905
+UniRef50_Q5HQB7: IS1272-like transposase, degenerate	0.7044806806
+UniRef50_Q5HQB7: IS1272-like transposase, degenerate|unclassified	0.7044806806
+UniRef50_D0WRQ8	0.7044762893
+UniRef50_D0WRQ8|unclassified	0.7044762893
+UniRef50_J9ZR34	0.7044185103
+UniRef50_J9ZR34|unclassified	0.7044185103
+UniRef50_Q02F98: NH(3)-dependent NAD(+) synthetase	0.7043348173
+UniRef50_Q02F98: NH(3)-dependent NAD(+) synthetase|unclassified	0.7043348173
+UniRef50_UPI00037337A3: hypothetical protein	0.7042876813
+UniRef50_UPI00037337A3: hypothetical protein|unclassified	0.7042876813
+UniRef50_G0DX72: Galactose-proton symporter	0.7042253521
+UniRef50_G0DX72: Galactose-proton symporter|g__Propionibacterium.s__Propionibacterium_acnes	0.7042253521
+UniRef50_J7LRM2: Gamma-aminobutyraldehyde dehydrogenase	0.7042253521
+UniRef50_J7LRM2: Gamma-aminobutyraldehyde dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	0.7042253521
+UniRef50_W7WN42	0.7042253521
+UniRef50_W7WN42|unclassified	0.7042253521
+UniRef50_UPI0003B428E6: branched-chain amino acid ABC transporter permease	0.7041471939
+UniRef50_UPI0003B428E6: branched-chain amino acid ABC transporter permease|unclassified	0.7041471939
+UniRef50_Q9EXG6: AY protein	0.7040853398
+UniRef50_Q9EXG6: AY protein|unclassified	0.7040853398
+UniRef50_UPI0003AEDB92: PREDICTED: proline-rich protein HaeIII subfamily 1-like	0.7040348542
+UniRef50_UPI0003AEDB92: PREDICTED: proline-rich protein HaeIII subfamily 1-like|unclassified	0.7040348542
+UniRef50_UPI000464A599: hypothetical protein	0.7038793510
+UniRef50_UPI000464A599: hypothetical protein|unclassified	0.7038793510
+UniRef50_D8EDK2	0.7037312009
+UniRef50_D8EDK2|unclassified	0.7037312009
+UniRef50_E6B2J0: Glycosyl transferases group 1 family protein	0.7037297678
+UniRef50_E6B2J0: Glycosyl transferases group 1 family protein|g__Escherichia.s__Escherichia_coli	0.7037297678
+UniRef50_UPI00037BD840: hypothetical protein	0.7036388257
+UniRef50_UPI00037BD840: hypothetical protein|unclassified	0.7036388257
+UniRef50_UPI00039592BB: PREDICTED: formin-like protein 5-like, partial	0.7034849910
+UniRef50_UPI00039592BB: PREDICTED: formin-like protein 5-like, partial|unclassified	0.7034849910
+UniRef50_E5YQD9: Electron transfer flavoprotein alpha/beta-subunit	0.7034538332
+UniRef50_E5YQD9: Electron transfer flavoprotein alpha/beta-subunit|unclassified	0.7034538332
+UniRef50_F7QEQ2	0.7034103447
+UniRef50_F7QEQ2|unclassified	0.7034103447
+UniRef50_V4HE01	0.7034076920
+UniRef50_V4HE01|unclassified	0.7034076920
+UniRef50_C0DRQ8	0.7033758398
+UniRef50_C0DRQ8|unclassified	0.7033758398
+UniRef50_B0VLY8	0.7032348805
+UniRef50_B0VLY8|g__Acinetobacter.s__Acinetobacter_baumannii	0.7032348805
+UniRef50_UPI00037A51B2: hypothetical protein	0.7032348805
+UniRef50_UPI00037A51B2: hypothetical protein|unclassified	0.7032348805
+UniRef50_E9UXU7: Putative LigA	0.7031736232
+UniRef50_E9UXU7: Putative LigA|unclassified	0.7031736232
+UniRef50_Q0TLW2: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	0.7029931757
+UniRef50_Q0TLW2: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.7029931757
+UniRef50_UPI0003C8E1FD: PREDICTED: iron-sulfur cluster assembly 2 homolog, mitochondrial isoform X1	0.7029423873
+UniRef50_UPI0003C8E1FD: PREDICTED: iron-sulfur cluster assembly 2 homolog, mitochondrial isoform X1|unclassified	0.7029423873
+UniRef50_M9VBI4: Amidohydrolase family protein	0.7027406887
+UniRef50_M9VBI4: Amidohydrolase family protein|g__Propionibacterium.s__Propionibacterium_acnes	0.7027406887
+UniRef50_Q9RUA0: NADH-quinone oxidoreductase subunit N	0.7027406887
+UniRef50_Q9RUA0: NADH-quinone oxidoreductase subunit N|g__Deinococcus.s__Deinococcus_radiodurans	0.7027406887
+UniRef50_D4B6V7	0.7027172499
+UniRef50_D4B6V7|unclassified	0.7027172499
+UniRef50_UPI00028A2C42: sugar ABC transporter permease	0.7027050272
+UniRef50_UPI00028A2C42: sugar ABC transporter permease|unclassified	0.7027050272
+UniRef50_W4M3I0	0.7026795004
+UniRef50_W4M3I0|unclassified	0.7026795004
+UniRef50_H9KHF9	0.7025883143
+UniRef50_H9KHF9|unclassified	0.7025883143
+UniRef50_UPI00016A6D7F: hypothetical protein	0.7025051576
+UniRef50_UPI00016A6D7F: hypothetical protein|unclassified	0.7025051576
+UniRef50_F3ZH33	0.7024556160
+UniRef50_F3ZH33|unclassified	0.7024556160
+UniRef50_K4NKR5	0.7022471910
+UniRef50_K4NKR5|g__Helicobacter.s__Helicobacter_pylori	0.7022471910
+UniRef50_UPI000365B78F: transposase IS200	0.7022405829
+UniRef50_UPI000365B78F: transposase IS200|unclassified	0.7022405829
+UniRef50_UPI0004079D53: DNA helicase	0.7021378960
+UniRef50_UPI0004079D53: DNA helicase|unclassified	0.7021378960
+UniRef50_UPI000463DD99: cytochrome C	0.7021079515
+UniRef50_UPI000463DD99: cytochrome C|unclassified	0.7021079515
+UniRef50_UPI00046427D6: hypothetical protein	0.7020814503
+UniRef50_UPI00046427D6: hypothetical protein|unclassified	0.7020814503
+UniRef50_H2JWP6: Permease for cytosine/purines uracil thiamine allantoin	0.7017543860
+UniRef50_H2JWP6: Permease for cytosine/purines uracil thiamine allantoin|g__Propionibacterium.s__Propionibacterium_acnes	0.7017543860
+UniRef50_UPI0003709A68: hypothetical protein	0.7017347612
+UniRef50_UPI0003709A68: hypothetical protein|unclassified	0.7017347612
+UniRef50_A0A059LAV7	0.7016920172
+UniRef50_A0A059LAV7|unclassified	0.7016920172
+UniRef50_UPI000475069F: ribose ABC transporter permease	0.7016152563
+UniRef50_UPI000475069F: ribose ABC transporter permease|unclassified	0.7016152563
+UniRef50_H6MHL3: Alpha-2-macroglobulin family protein	0.7014675991
+UniRef50_H6MHL3: Alpha-2-macroglobulin family protein|unclassified	0.7014675991
+UniRef50_A9H974	0.7014162198
+UniRef50_A9H974|unclassified	0.7014162198
+UniRef50_O86110: Small heat shock protein HspH	0.7013657863
+UniRef50_O86110: Small heat shock protein HspH|unclassified	0.7013657863
+UniRef50_F4GZX9: Amidophosphoribosyltransferase	0.7012622721
+UniRef50_F4GZX9: Amidophosphoribosyltransferase|g__Propionibacterium.s__Propionibacterium_acnes	0.7012622721
+UniRef50_M9VFY7: Penicillin-binding protein, transpeptidase domain protein	0.7012622721
+UniRef50_M9VFY7: Penicillin-binding protein, transpeptidase domain protein|g__Propionibacterium.s__Propionibacterium_acnes	0.7012622721
+UniRef50_UPI00046F1C42: nitrogen regulatory protein P-II 1	0.7012481839
+UniRef50_UPI00046F1C42: nitrogen regulatory protein P-II 1|unclassified	0.7012481839
+UniRef50_UPI00047C283B: sulfurase	0.7012330702
+UniRef50_UPI00047C283B: sulfurase|unclassified	0.7012330702
+UniRef50_E3RE87	0.7012020125
+UniRef50_E3RE87|unclassified	0.7012020125
+UniRef50_UPI0003C19684	0.7011544763
+UniRef50_UPI0003C19684|unclassified	0.7011544763
+UniRef50_UPI0004440300: PREDICTED: proline-rich protein 2-like	0.7011179975
+UniRef50_UPI0004440300: PREDICTED: proline-rich protein 2-like|unclassified	0.7011179975
+UniRef50_K9NNS9	0.7010123744
+UniRef50_K9NNS9|unclassified	0.7010123744
+UniRef50_U0EFY6	0.7009557922
+UniRef50_U0EFY6|unclassified	0.7009557922
+UniRef50_T2RUR1	0.7009295666
+UniRef50_T2RUR1|unclassified	0.7009295666
+UniRef50_F9Y6P0	0.7008363030
+UniRef50_F9Y6P0|unclassified	0.7008363030
+UniRef50_U2T0K4	0.7005863475
+UniRef50_U2T0K4|unclassified	0.7005863475
+UniRef50_L8E2I0: Undefined function	0.7005501068
+UniRef50_L8E2I0: Undefined function|unclassified	0.7005501068
+UniRef50_D8BDC9	0.7004996190
+UniRef50_D8BDC9|unclassified	0.7004996190
+UniRef50_UPI00047D5D35: TetR family transcriptional regulator	0.7003465107
+UniRef50_UPI00047D5D35: TetR family transcriptional regulator|unclassified	0.7003465107
+UniRef50_Q2IFD8	0.7003200400
+UniRef50_Q2IFD8|unclassified	0.7003200400
+UniRef50_UPI0003B5AE8F: hypothetical protein, partial	0.7002980716
+UniRef50_UPI0003B5AE8F: hypothetical protein, partial|unclassified	0.7002980716
+UniRef50_F0YH85	0.7002874086
+UniRef50_F0YH85|unclassified	0.7002874086
+UniRef50_Q0VT82: Monooxygenase, putative	0.7002801120
+UniRef50_Q0VT82: Monooxygenase, putative|g__Acinetobacter.s__Acinetobacter_baumannii	0.7002801120
+UniRef50_UPI00039E460C: SAM-dependent methyltransferase	0.7002348982
+UniRef50_UPI00039E460C: SAM-dependent methyltransferase|unclassified	0.7002348982
+UniRef50_A0A011RZR4	0.6999854491
+UniRef50_A0A011RZR4|unclassified	0.6999854491
+UniRef50_G8WCZ8: Crispr-associated helicase Cas3	0.6998840005
+UniRef50_G8WCZ8: Crispr-associated helicase Cas3|unclassified	0.6998840005
+UniRef50_UPI000310C5E8: hypothetical protein	0.6998241275
+UniRef50_UPI000310C5E8: hypothetical protein|unclassified	0.6998241275
+UniRef50_D6UB35	0.6997005316
+UniRef50_D6UB35|unclassified	0.6997005316
+UniRef50_Q21SZ4: Urease subunit beta	0.6996828034
+UniRef50_Q21SZ4: Urease subunit beta|unclassified	0.6996828034
+UniRef50_G4RG04	0.6996642602
+UniRef50_G4RG04|unclassified	0.6996642602
+UniRef50_UPI0003734DAC: hypothetical protein	0.6996523448
+UniRef50_UPI0003734DAC: hypothetical protein|unclassified	0.6996523448
+UniRef50_Q6C605: YALI0E13574p	0.6995702505
+UniRef50_Q6C605: YALI0E13574p|unclassified	0.6995702505
+UniRef50_R5SJJ5: von Willebrand factor type A domain protein	0.6993276160
+UniRef50_R5SJJ5: von Willebrand factor type A domain protein|unclassified	0.6993276160
+UniRef50_U4V067	0.6993103695
+UniRef50_U4V067|unclassified	0.6993103695
+UniRef50_O67422: 5,10-methylenetetrahydrofolate reductase	0.6993060407
+UniRef50_O67422: 5,10-methylenetetrahydrofolate reductase|unclassified	0.6993060407
+UniRef50_D3RCC6: Carbohydrate kinase, FGGY-like protein	0.6993006993
+UniRef50_D3RCC6: Carbohydrate kinase, FGGY-like protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6993006993
+UniRef50_K1BT49: Transport protein HasD	0.6993006993
+UniRef50_K1BT49: Transport protein HasD|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6993006993
+UniRef50_UPI000378C442: hypothetical protein	0.6993006993
+UniRef50_UPI000378C442: hypothetical protein|unclassified	0.6993006993
+UniRef50_K8CCZ0	0.6991558534
+UniRef50_K8CCZ0|unclassified	0.6991558534
+UniRef50_X2MHY0: Hydrogenase-1 operon protein HyaF	0.6991468971
+UniRef50_X2MHY0: Hydrogenase-1 operon protein HyaF|unclassified	0.6991468971
+UniRef50_F4CWU8: Cell envelope-related transcriptional attenuator	0.6991318012
+UniRef50_F4CWU8: Cell envelope-related transcriptional attenuator|unclassified	0.6991318012
+UniRef50_S1HPD5	0.6990483683
+UniRef50_S1HPD5|unclassified	0.6990483683
+UniRef50_V6J5F1	0.6990371951
+UniRef50_V6J5F1|unclassified	0.6990371951
+UniRef50_A0A059DSA7	0.6988909968
+UniRef50_A0A059DSA7|unclassified	0.6988909968
+UniRef50_A3DIH0: Intracellular exo-alpha-(1-5)-L-arabinofuranosidase	0.6988120196
+UniRef50_A3DIH0: Intracellular exo-alpha-(1-5)-L-arabinofuranosidase|g__Clostridium.s__Clostridium_beijerinckii	0.6988120196
+UniRef50_Q1IZ14: Major facilitator superfamily MFS_1	0.6988120196
+UniRef50_Q1IZ14: Major facilitator superfamily MFS_1|g__Deinococcus.s__Deinococcus_radiodurans	0.6988120196
+UniRef50_U2NBA2: Autoinducer 2 (AI-2) ABC transport system, periplasmic AI-2 binding protein LsrB	0.6987677480
+UniRef50_U2NBA2: Autoinducer 2 (AI-2) ABC transport system, periplasmic AI-2 binding protein LsrB|unclassified	0.6987677480
+UniRef50_G5ZYX0: Glutaredoxin family protein, arsenate reductase	0.6986769133
+UniRef50_G5ZYX0: Glutaredoxin family protein, arsenate reductase|unclassified	0.6986769133
+UniRef50_UPI00037528E8: hypothetical protein	0.6985763497
+UniRef50_UPI00037528E8: hypothetical protein|unclassified	0.6985763497
+UniRef50_UPI0002891631: HAD family hydrolase	0.6985050380
+UniRef50_UPI0002891631: HAD family hydrolase|unclassified	0.6985050380
+UniRef50_UPI000478A8F8: hypothetical protein	0.6983993893
+UniRef50_UPI000478A8F8: hypothetical protein|unclassified	0.6983993893
+UniRef50_A0A010K1E7: TetR family transcriptional regulator domain protein	0.6983744146
+UniRef50_A0A010K1E7: TetR family transcriptional regulator domain protein|unclassified	0.6983744146
+UniRef50_UPI000372ECF2: hypothetical protein	0.6983725708
+UniRef50_UPI000372ECF2: hypothetical protein|unclassified	0.6983725708
+UniRef50_A0A023RZD3	0.6983240223
+UniRef50_A0A023RZD3|g__Acinetobacter.s__Acinetobacter_baumannii	0.6983240223
+UniRef50_UPI0003B6588F: branched-chain amino acid transporter AzlC	0.6983198410
+UniRef50_UPI0003B6588F: branched-chain amino acid transporter AzlC|unclassified	0.6983198410
+UniRef50_X1JRW3: Marine sediment metagenome DNA, contig: S03H2_S32060 (Fragment)	0.6983164319
+UniRef50_X1JRW3: Marine sediment metagenome DNA, contig: S03H2_S32060 (Fragment)|unclassified	0.6983164319
+UniRef50_UPI0003B4A90A: ABC transporter permease	0.6981770059
+UniRef50_UPI0003B4A90A: ABC transporter permease|unclassified	0.6981770059
+UniRef50_UPI00037CBB5C: hypothetical protein	0.6981419202
+UniRef50_UPI00037CBB5C: hypothetical protein|unclassified	0.6981419202
+UniRef50_UPI0003813B73: hypothetical protein	0.6981382435
+UniRef50_UPI0003813B73: hypothetical protein|unclassified	0.6981382435
+UniRef50_UPI000225B43A: ABC transporter ATPase	0.6980495729
+UniRef50_UPI000225B43A: ABC transporter ATPase|unclassified	0.6980495729
+UniRef50_Y0R8I7: Transcription factor fapR	0.6980205983
+UniRef50_Y0R8I7: Transcription factor fapR|unclassified	0.6980205983
+UniRef50_UPI0004684D4E: hypothetical protein	0.6980091337
+UniRef50_UPI0004684D4E: hypothetical protein|unclassified	0.6980091337
+UniRef50_L0NDC1	0.6980036314
+UniRef50_L0NDC1|unclassified	0.6980036314
+UniRef50_F0YF94	0.6979434416
+UniRef50_F0YF94|unclassified	0.6979434416
+UniRef50_UPI00047DDDC5: hypothetical protein	0.6979314449
+UniRef50_UPI00047DDDC5: hypothetical protein|unclassified	0.6979314449
+UniRef50_Q6MRJ2: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.6977776496
+UniRef50_Q6MRJ2: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.6977776496
+UniRef50_E9URA8: Xylose repressor (Fragment)	0.6976238284
+UniRef50_E9URA8: Xylose repressor (Fragment)|unclassified	0.6976238284
+UniRef50_UPI0001BF6223: hypothetical protein SMAC_10415, partial	0.6974817673
+UniRef50_UPI0001BF6223: hypothetical protein SMAC_10415, partial|unclassified	0.6974817673
+UniRef50_L1KZ69	0.6974368256
+UniRef50_L1KZ69|unclassified	0.6974368256
+UniRef50_A8J8D8: Predicted protein	0.6974027729
+UniRef50_A8J8D8: Predicted protein|unclassified	0.6974027729
+UniRef50_UPI00035D2A1B: hypothetical protein	0.6973893164
+UniRef50_UPI00035D2A1B: hypothetical protein|unclassified	0.6973893164
+UniRef50_D8P829	0.6973650773
+UniRef50_D8P829|unclassified	0.6973650773
+UniRef50_C5DLX5: KLTH0G04290p	0.6973500697
+UniRef50_C5DLX5: KLTH0G04290p|unclassified	0.6973500697
+UniRef50_I1EHP5	0.6972992292
+UniRef50_I1EHP5|unclassified	0.6972992292
+UniRef50_E2ZSK5: Chemotactic transducer PctC	0.6972931108
+UniRef50_E2ZSK5: Chemotactic transducer PctC|unclassified	0.6972931108
+UniRef50_UPI0003B42403: blue-light sensor BLUF	0.6972350578
+UniRef50_UPI0003B42403: blue-light sensor BLUF|unclassified	0.6972350578
+UniRef50_UPI0001744E0A: heme oxygenase BphO	0.6971803993
+UniRef50_UPI0001744E0A: heme oxygenase BphO|unclassified	0.6971803993
+UniRef50_UPI0002F40D47: hypothetical protein	0.6971751067
+UniRef50_UPI0002F40D47: hypothetical protein|unclassified	0.6971751067
+UniRef50_UPI000169B0B7: homoserine O-succinyltransferase, partial	0.6971258274
+UniRef50_UPI000169B0B7: homoserine O-succinyltransferase, partial|unclassified	0.6971258274
+UniRef50_UPI00047883C6: hypothetical protein	0.6970640317
+UniRef50_UPI00047883C6: hypothetical protein|unclassified	0.6970640317
+UniRef50_L8BIU9: Peptide chain release factor 3	0.6969628199
+UniRef50_L8BIU9: Peptide chain release factor 3|unclassified	0.6969628199
+UniRef50_C9XEV3	0.6968894232
+UniRef50_C9XEV3|unclassified	0.6968894232
+UniRef50_A0A059MV07: 3D-(3,5/4)-trihydroxycyclohexane-1,2-dione hydrolase	0.6968641115
+UniRef50_A0A059MV07: 3D-(3,5/4)-trihydroxycyclohexane-1,2-dione hydrolase|g__Propionibacterium.s__Propionibacterium_acnes	0.6968641115
+UniRef50_UPI0003FE819A: hypothetical protein	0.6966484456
+UniRef50_UPI0003FE819A: hypothetical protein|unclassified	0.6966484456
+UniRef50_UPI00036C6C18: hypothetical protein	0.6965981533
+UniRef50_UPI00036C6C18: hypothetical protein|unclassified	0.6965981533
+UniRef50_UPI0003B66478: membrane protein	0.6965909472
+UniRef50_UPI0003B66478: membrane protein|unclassified	0.6965909472
+UniRef50_A8A2C6: Probable 4-amino-4-deoxy-L-arabinose-phosphoundecaprenol flippase subunit ArnF	0.6964657871
+UniRef50_A8A2C6: Probable 4-amino-4-deoxy-L-arabinose-phosphoundecaprenol flippase subunit ArnF|unclassified	0.6964657871
+UniRef50_S9QMF6: Flagellar protein FlaF	0.6963838929
+UniRef50_S9QMF6: Flagellar protein FlaF|unclassified	0.6963838929
+UniRef50_D4HFH3: Exo-alpha-sialidase	0.6963788301
+UniRef50_D4HFH3: Exo-alpha-sialidase|g__Propionibacterium.s__Propionibacterium_acnes	0.6963788301
+UniRef50_F9VBF9: OPT family oligopeptide transporter	0.6963788301
+UniRef50_F9VBF9: OPT family oligopeptide transporter|g__Clostridium.s__Clostridium_beijerinckii	0.6963788301
+UniRef50_T0Y132: Transposase (Fragment)	0.6963114116
+UniRef50_T0Y132: Transposase (Fragment)|unclassified	0.6963114116
+UniRef50_M0CDR6: Phosphate ABC transporter inner membrane subunit PstC (Fragment)	0.6962788964
+UniRef50_M0CDR6: Phosphate ABC transporter inner membrane subunit PstC (Fragment)|unclassified	0.6962788964
+UniRef50_I1QQ98	0.6962377706
+UniRef50_I1QQ98|unclassified	0.6962377706
+UniRef50_UPI0002000789: two-component system sensor kinase	0.6961735764
+UniRef50_UPI0002000789: two-component system sensor kinase|unclassified	0.6961735764
+UniRef50_UPI000383CFD8: PREDICTED: putative protein shisa-8-like isoform X2	0.6961717077
+UniRef50_UPI000383CFD8: PREDICTED: putative protein shisa-8-like isoform X2|unclassified	0.6961717077
+UniRef50_B8EN54: Ribonuclease D	0.6961653108
+UniRef50_B8EN54: Ribonuclease D|unclassified	0.6961653108
+UniRef50_UPI0004680D33: hypothetical protein	0.6961210426
+UniRef50_UPI0004680D33: hypothetical protein|unclassified	0.6961210426
+UniRef50_UPI0003750B35: hypothetical protein	0.6961008188
+UniRef50_UPI0003750B35: hypothetical protein|unclassified	0.6961008188
+UniRef50_S9ZI38	0.6959844686
+UniRef50_S9ZI38|unclassified	0.6959844686
+UniRef50_Q21VQ3: Transposase, IS4 family	0.6959810044
+UniRef50_Q21VQ3: Transposase, IS4 family|unclassified	0.6959810044
+UniRef50_UPI00037207F9: hypothetical protein	0.6959474351
+UniRef50_UPI00037207F9: hypothetical protein|unclassified	0.6959474351
+UniRef50_C3BHS6: Aldehyde dehydrogenase	0.6958942241
+UniRef50_C3BHS6: Aldehyde dehydrogenase|g__Clostridium.s__Clostridium_beijerinckii	0.6958942241
+UniRef50_Q17VD8: Complete genome, strain Sheeba	0.6958942241
+UniRef50_Q17VD8: Complete genome, strain Sheeba|g__Helicobacter.s__Helicobacter_pylori	0.6958942241
+UniRef50_A0A009I7P3: LPXTG-motif cell wall anchor domain protein	0.6955186648
+UniRef50_A0A009I7P3: LPXTG-motif cell wall anchor domain protein|unclassified	0.6955186648
+UniRef50_S4XYL9	0.6955124427
+UniRef50_S4XYL9|unclassified	0.6955124427
+UniRef50_UPI00037E5A26: hypothetical protein	0.6954065071
+UniRef50_UPI00037E5A26: hypothetical protein|unclassified	0.6954065071
+UniRef50_UPI00036A7304: hypothetical protein	0.6953550583
+UniRef50_UPI00036A7304: hypothetical protein|unclassified	0.6953550583
+UniRef50_UPI0003B5E473: flagellar hook-basal body protein FliE	0.6953363135
+UniRef50_UPI0003B5E473: flagellar hook-basal body protein FliE|unclassified	0.6953363135
+UniRef50_UPI00046AA788: hypothetical protein	0.6952515679
+UniRef50_UPI00046AA788: hypothetical protein|unclassified	0.6952515679
+UniRef50_UPI0004421582: PREDICTED: elongation factor Ts 1, mitochondrial-like	0.6952041879
+UniRef50_UPI0004421582: PREDICTED: elongation factor Ts 1, mitochondrial-like|unclassified	0.6952041879
+UniRef50_UPI0003B3B477: tRNA-binding protein	0.6952028731
+UniRef50_UPI0003B3B477: tRNA-binding protein|unclassified	0.6952028731
+UniRef50_A0A037BPM4	0.6950800786
+UniRef50_A0A037BPM4|unclassified	0.6950800786
+UniRef50_UPI0003705808: hypothetical protein	0.6950630153
+UniRef50_UPI0003705808: hypothetical protein|unclassified	0.6950630153
+UniRef50_O58058: N5-carboxyaminoimidazole ribonucleotide mutase	0.6950174004
+UniRef50_O58058: N5-carboxyaminoimidazole ribonucleotide mutase|unclassified	0.6950174004
+UniRef50_UPI00035E1FC4: hypothetical protein	0.6949756816
+UniRef50_UPI00035E1FC4: hypothetical protein|unclassified	0.6949756816
+UniRef50_S8DYC5	0.6947022338
+UniRef50_S8DYC5|unclassified	0.6947022338
+UniRef50_UPI0002D84C44: hypothetical protein	0.6946996432
+UniRef50_UPI0002D84C44: hypothetical protein|unclassified	0.6946996432
+UniRef50_UPI0003EE7730: hypothetical protein, partial	0.6946831301
+UniRef50_UPI0003EE7730: hypothetical protein, partial|unclassified	0.6946831301
+UniRef50_C6XLZ1: SAF domain-containing protein	0.6946704151
+UniRef50_C6XLZ1: SAF domain-containing protein|unclassified	0.6946704151
+UniRef50_UPI0002739995	0.6945891774
+UniRef50_UPI0002739995|unclassified	0.6945891774
+UniRef50_T0VGE8: Chaperone protein DnaJ	0.6944967074
+UniRef50_T0VGE8: Chaperone protein DnaJ|unclassified	0.6944967074
+UniRef50_E3EL28: Nicotinate phosphoribosyltransferase and like protein	0.6944444444
+UniRef50_E3EL28: Nicotinate phosphoribosyltransferase and like protein|g__Clostridium.s__Clostridium_beijerinckii	0.6944444444
+UniRef50_L7HGM5: Atu protein	0.6944444444
+UniRef50_L7HGM5: Atu protein|unclassified	0.6944444444
+UniRef50_Q5F629: NADH-quinone oxidoreductase subunit N	0.6944444444
+UniRef50_Q5F629: NADH-quinone oxidoreductase subunit N|g__Neisseria.s__Neisseria_meningitidis	0.6944444444
+UniRef50_Q6FEF8	0.6944444444
+UniRef50_Q6FEF8|g__Acinetobacter.s__Acinetobacter_baumannii	0.6944444444
+UniRef50_Q9RV87	0.6944444444
+UniRef50_Q9RV87|g__Deinococcus.s__Deinococcus_radiodurans	0.6944444444
+UniRef50_UPI0003B66134: deoxyguanosinetriphosphate triphosphohydrolase	0.6944330479
+UniRef50_UPI0003B66134: deoxyguanosinetriphosphate triphosphohydrolase|unclassified	0.6944330479
+UniRef50_W1FU24: Phosphonate ABC transporter phosphate-binding periplasmic component (TC 3.A.1.9.1)	0.6943366157
+UniRef50_W1FU24: Phosphonate ABC transporter phosphate-binding periplasmic component (TC 3.A.1.9.1)|unclassified	0.6943366157
+UniRef50_M9EN25	0.6942889895
+UniRef50_M9EN25|unclassified	0.6942889895
+UniRef50_Q9RU62: Transcription-repair-coupling factor	0.6942573581
+UniRef50_Q9RU62: Transcription-repair-coupling factor|g__Deinococcus.s__Deinococcus_radiodurans	0.6942573581
+UniRef50_C0H3V8	0.6941837098
+UniRef50_C0H3V8|unclassified	0.6941837098
+UniRef50_UPI000368793C: hypothetical protein, partial	0.6940370596
+UniRef50_UPI000368793C: hypothetical protein, partial|unclassified	0.6940370596
+UniRef50_B2I1F3: GGDEF domain protein	0.6939625260
+UniRef50_B2I1F3: GGDEF domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.6939625260
+UniRef50_F0KI03: X-Pro dipeptidyl-peptidase	0.6939625260
+UniRef50_F0KI03: X-Pro dipeptidyl-peptidase|g__Acinetobacter.s__Acinetobacter_baumannii	0.6939625260
+UniRef50_R1E3V2	0.6939625260
+UniRef50_R1E3V2|unclassified	0.6939625260
+UniRef50_UPI00029A5C38: gamma-aminobutyrate permease	0.6939423781
+UniRef50_UPI00029A5C38: gamma-aminobutyrate permease|unclassified	0.6939423781
+UniRef50_UPI0002197167: putative transcriptional regulator	0.6939057574
+UniRef50_UPI0002197167: putative transcriptional regulator|unclassified	0.6939057574
+UniRef50_UPI00047D7F76: hypothetical protein, partial	0.6938969456
+UniRef50_UPI00047D7F76: hypothetical protein, partial|unclassified	0.6938969456
+UniRef50_UPI00035DE041: hypothetical protein, partial	0.6938627659
+UniRef50_UPI00035DE041: hypothetical protein, partial|unclassified	0.6938627659
+UniRef50_F2N2F1: Metal-binding protein	0.6938562802
+UniRef50_F2N2F1: Metal-binding protein|unclassified	0.6938562802
+UniRef50_G7DHR9	0.6937844547
+UniRef50_G7DHR9|unclassified	0.6937844547
+UniRef50_Q3JSW3	0.6937508530
+UniRef50_Q3JSW3|unclassified	0.6937508530
+UniRef50_UPI00036F3672: hypothetical protein	0.6937157019
+UniRef50_UPI00036F3672: hypothetical protein|unclassified	0.6937157019
+UniRef50_Q8GFF3: Putative PHA synthase	0.6937051244
+UniRef50_Q8GFF3: Putative PHA synthase|unclassified	0.6937051244
+UniRef50_A5ZTX7: TRAP transporter, DctM-like membrane protein	0.6936974236
+UniRef50_A5ZTX7: TRAP transporter, DctM-like membrane protein|unclassified	0.6936974236
+UniRef50_UPI0003804484: hypothetical protein	0.6936912795
+UniRef50_UPI0003804484: hypothetical protein|unclassified	0.6936912795
+UniRef50_UPI0003B7729C: hypothetical protein	0.6936580957
+UniRef50_UPI0003B7729C: hypothetical protein|unclassified	0.6936580957
+UniRef50_Q6FZZ7: Threonine--tRNA ligase	0.6935994299
+UniRef50_Q6FZZ7: Threonine--tRNA ligase|unclassified	0.6935994299
+UniRef50_UPI000477E177: hypothetical protein	0.6935220882
+UniRef50_UPI000477E177: hypothetical protein|unclassified	0.6935220882
+UniRef50_K7S6P7: DEAD/DEAH box helicase	0.6934812760
+UniRef50_K7S6P7: DEAD/DEAH box helicase|g__Propionibacterium.s__Propionibacterium_acnes	0.6934812760
+UniRef50_M4YVT1	0.6934812760
+UniRef50_M4YVT1|g__Streptococcus.s__Streptococcus_agalactiae	0.6934812760
+UniRef50_W8ZWW3	0.6934651561
+UniRef50_W8ZWW3|unclassified	0.6934651561
+UniRef50_UPI000470BC2E: transposase, partial	0.6934213768
+UniRef50_UPI000470BC2E: transposase, partial|unclassified	0.6934213768
+UniRef50_UPI0003AA777F: hypothetical protein	0.6933882343
+UniRef50_UPI0003AA777F: hypothetical protein|unclassified	0.6933882343
+UniRef50_G8AGJ7: Transcriptional regulator, AsnC/Lrp family	0.6932919180
+UniRef50_G8AGJ7: Transcriptional regulator, AsnC/Lrp family|unclassified	0.6932919180
+UniRef50_E6YP30	0.6932407837
+UniRef50_E6YP30|unclassified	0.6932407837
+UniRef50_UPI00037CB5D1: hypothetical protein, partial	0.6932333852
+UniRef50_UPI00037CB5D1: hypothetical protein, partial|unclassified	0.6932333852
+UniRef50_UPI0004408C74: beta subunit of citrate lyase	0.6932102865
+UniRef50_UPI0004408C74: beta subunit of citrate lyase|unclassified	0.6932102865
+UniRef50_Q58N56: Gp12	0.6932013894
+UniRef50_Q58N56: Gp12|unclassified	0.6932013894
+UniRef50_UPI00018512AA: 3-hydroxybutyryl-CoA dehydrogenase	0.6931622911
+UniRef50_UPI00018512AA: 3-hydroxybutyryl-CoA dehydrogenase|unclassified	0.6931622911
+UniRef50_V4SK62: ABC transporter	0.6930489484
+UniRef50_V4SK62: ABC transporter|unclassified	0.6930489484
+UniRef50_A6M2V9: Methyl-accepting chemotaxis sensory transducer	0.6930006930
+UniRef50_A6M2V9: Methyl-accepting chemotaxis sensory transducer|g__Clostridium.s__Clostridium_beijerinckii	0.6930006930
+UniRef50_D0MEX8: FAD dependent oxidoreductase	0.6930006930
+UniRef50_D0MEX8: FAD dependent oxidoreductase|g__Deinococcus.s__Deinococcus_radiodurans	0.6930006930
+UniRef50_UPI00046B22E7: PREDICTED: guanine nucleotide-binding protein subunit alpha-15-like, partial	0.6930006930
+UniRef50_UPI00046B22E7: PREDICTED: guanine nucleotide-binding protein subunit alpha-15-like, partial|unclassified	0.6930006930
+UniRef50_T1BKQ7: Protein containing Transcription factor, NikR, nickel binding protein (Fragment)	0.6929936123
+UniRef50_T1BKQ7: Protein containing Transcription factor, NikR, nickel binding protein (Fragment)|unclassified	0.6929936123
+UniRef50_UPI0002628E38: arginine ABC transporter ATP-binding protein	0.6929552339
+UniRef50_UPI0002628E38: arginine ABC transporter ATP-binding protein|unclassified	0.6929552339
+UniRef50_C5KKB8: Nodulation protein L, putative (Fragment)	0.6928459419
+UniRef50_C5KKB8: Nodulation protein L, putative (Fragment)|unclassified	0.6928459419
+UniRef50_UPI00047330EC: hypothetical protein	0.6925722728
+UniRef50_UPI00047330EC: hypothetical protein|unclassified	0.6925722728
+UniRef50_R0L2W3: ABC transporter permease	0.6925252854
+UniRef50_R0L2W3: ABC transporter permease|unclassified	0.6925252854
+UniRef50_A0A017T121	0.6925207756
+UniRef50_A0A017T121|unclassified	0.6925207756
+UniRef50_UPI00031D0E89: hypothetical protein	0.6925186450
+UniRef50_UPI00031D0E89: hypothetical protein|unclassified	0.6925186450
+UniRef50_J8WK23: Type III restriction-modification system EcoPI enzyme, subunit res	0.6924044064
+UniRef50_J8WK23: Type III restriction-modification system EcoPI enzyme, subunit res|g__Neisseria.s__Neisseria_meningitidis	0.6924044064
+UniRef50_B9NSA4	0.6923830863
+UniRef50_B9NSA4|unclassified	0.6923830863
+UniRef50_UPI00037A900D: hypothetical protein, partial	0.6923204080
+UniRef50_UPI00037A900D: hypothetical protein, partial|unclassified	0.6923204080
+UniRef50_UPI0003A386A1: glutaredoxin	0.6922805495
+UniRef50_UPI0003A386A1: glutaredoxin|unclassified	0.6922805495
+UniRef50_F0DCU8	0.6922534835
+UniRef50_F0DCU8|unclassified	0.6922534835
+UniRef50_UPI0004628FA4: hypothetical protein	0.6922490430
+UniRef50_UPI0004628FA4: hypothetical protein|unclassified	0.6922490430
+UniRef50_G4AEC9: ABC transport system periplasmic protein	0.6920816792
+UniRef50_G4AEC9: ABC transport system periplasmic protein|unclassified	0.6920816792
+UniRef50_C4I344: Permease, major facilitator superfamily	0.6920415225
+UniRef50_C4I344: Permease, major facilitator superfamily|g__Acinetobacter.s__Acinetobacter_baumannii	0.6920415225
+UniRef50_C7ZVQ2: Glycosyl transferase	0.6920415225
+UniRef50_C7ZVQ2: Glycosyl transferase|g__Staphylococcus.s__Staphylococcus_aureus	0.6920415225
+UniRef50_Q9Z7G1: Delta-aminolevulinic acid dehydratase	0.6919585337
+UniRef50_Q9Z7G1: Delta-aminolevulinic acid dehydratase|unclassified	0.6919585337
+UniRef50_UPI0003B4B7F4: ubiquinone biosynthesis protein	0.6919036625
+UniRef50_UPI0003B4B7F4: ubiquinone biosynthesis protein|unclassified	0.6919036625
+UniRef50_F2DK91: Predicted protein (Fragment)	0.6918635652
+UniRef50_F2DK91: Predicted protein (Fragment)|unclassified	0.6918635652
+UniRef50_C2XMP3: Collagen adhesion protein	0.6917409126
+UniRef50_C2XMP3: Collagen adhesion protein|unclassified	0.6917409126
+UniRef50_V7EHP2: Membrane protein (Fragment)	0.6916628709
+UniRef50_V7EHP2: Membrane protein (Fragment)|unclassified	0.6916628709
+UniRef50_UPI000287DAC9: flavin reductase	0.6916461598
+UniRef50_UPI000287DAC9: flavin reductase|unclassified	0.6916461598
+UniRef50_Q17W78: ABC-type oligopeptide transport, permease component oppC 5	0.6916013865
+UniRef50_Q17W78: ABC-type oligopeptide transport, permease component oppC 5|unclassified	0.6916013865
+UniRef50_X0YW97: Marine sediment metagenome DNA, contig: S01H4_C03720 (Fragment)	0.6915701299
+UniRef50_X0YW97: Marine sediment metagenome DNA, contig: S01H4_C03720 (Fragment)|unclassified	0.6915701299
+UniRef50_F3CCV1: Cytochrome oxidase maturation protein, cbb3-type (Fragment)	0.6915668201
+UniRef50_F3CCV1: Cytochrome oxidase maturation protein, cbb3-type (Fragment)|unclassified	0.6915668201
+UniRef50_D5VAW9: Transporter	0.6915629322
+UniRef50_D5VAW9: Transporter|g__Acinetobacter.s__Acinetobacter_baumannii	0.6915629322
+UniRef50_F8C6I4	0.6915629322
+UniRef50_F8C6I4|unclassified	0.6915629322
+UniRef50_Q5F653	0.6915629322
+UniRef50_Q5F653|g__Neisseria.s__Neisseria_meningitidis	0.6915629322
+UniRef50_A9L6A8: Type-F conjugative transfer system protein TraW	0.6915598796
+UniRef50_A9L6A8: Type-F conjugative transfer system protein TraW|unclassified	0.6915598796
+UniRef50_A6UIR4: Tripartite ATP-independent periplasmic transporter DctQ component	0.6915147243
+UniRef50_A6UIR4: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.6915147243
+UniRef50_D7FQ62	0.6914474326
+UniRef50_D7FQ62|unclassified	0.6914474326
+UniRef50_P29683: Light-independent protochlorophyllide reductase subunit N	0.6914308021
+UniRef50_P29683: Light-independent protochlorophyllide reductase subunit N|unclassified	0.6914308021
+UniRef50_UPI0003C19464: PREDICTED: transketolase, chloroplastic-like	0.6914010003
+UniRef50_UPI0003C19464: PREDICTED: transketolase, chloroplastic-like|unclassified	0.6914010003
+UniRef50_U6I825: Zinc finger protein 341	0.6913731568
+UniRef50_U6I825: Zinc finger protein 341|unclassified	0.6913731568
+UniRef50_B0KRB8: Ribosomal RNA small subunit methyltransferase G	0.6913710631
+UniRef50_B0KRB8: Ribosomal RNA small subunit methyltransferase G|unclassified	0.6913710631
+UniRef50_B9G2W4	0.6912743522
+UniRef50_B9G2W4|unclassified	0.6912743522
+UniRef50_UPI00035E6DCD: hypothetical protein	0.6911734953
+UniRef50_UPI00035E6DCD: hypothetical protein|unclassified	0.6911734953
+UniRef50_B9J7K1	0.6911700147
+UniRef50_B9J7K1|unclassified	0.6911700147
+UniRef50_A8KZZ6: ABC transporter related	0.6910850035
+UniRef50_A8KZZ6: ABC transporter related|g__Propionibacterium.s__Propionibacterium_acnes	0.6910850035
+UniRef50_D5WIU5: RND efflux system, outer membrane lipoprotein, NodT family	0.6910850035
+UniRef50_D5WIU5: RND efflux system, outer membrane lipoprotein, NodT family|g__Acinetobacter.s__Acinetobacter_baumannii	0.6910850035
+UniRef50_A5EXZ4: Aromatic-Rich family protein	0.6909663280
+UniRef50_A5EXZ4: Aromatic-Rich family protein|unclassified	0.6909663280
+UniRef50_UPI0003686526: hypothetical protein	0.6909212656
+UniRef50_UPI0003686526: hypothetical protein|unclassified	0.6909212656
+UniRef50_UPI0004419FDE: PREDICTED: basic proline-rich protein-like	0.6909138159
+UniRef50_UPI0004419FDE: PREDICTED: basic proline-rich protein-like|unclassified	0.6909138159
+UniRef50_Q89AJ2: Thioredoxin reductase	0.6908960981
+UniRef50_Q89AJ2: Thioredoxin reductase|unclassified	0.6908960981
+UniRef50_UPI000427C1D0: tRNA-binding protein	0.6908693948
+UniRef50_UPI000427C1D0: tRNA-binding protein|unclassified	0.6908693948
+UniRef50_X5L713	0.6907947240
+UniRef50_X5L713|unclassified	0.6907947240
+UniRef50_S3I1N3	0.6907945499
+UniRef50_S3I1N3|unclassified	0.6907945499
+UniRef50_D8B8K7: Putative PhsC-like protein	0.6907603767
+UniRef50_D8B8K7: Putative PhsC-like protein|unclassified	0.6907603767
+UniRef50_H2JXS2: Secreted protein	0.6906101579
+UniRef50_H2JXS2: Secreted protein|unclassified	0.6906101579
+UniRef50_UPI0003B6D996: histidine kinase	0.6906003791
+UniRef50_UPI0003B6D996: histidine kinase|unclassified	0.6906003791
+UniRef50_K8PQZ4	0.6905256316
+UniRef50_K8PQZ4|unclassified	0.6905256316
+UniRef50_UPI0003B55097: ABC transporter	0.6903352353
+UniRef50_UPI0003B55097: ABC transporter|unclassified	0.6903352353
+UniRef50_W4KF41	0.6902563522
+UniRef50_W4KF41|unclassified	0.6902563522
+UniRef50_B9CTS2	0.6902333690
+UniRef50_B9CTS2|unclassified	0.6902333690
+UniRef50_A4IT51: Anthranilate 3-monooxygenase oxygenase component	0.6901311249
+UniRef50_A4IT51: Anthranilate 3-monooxygenase oxygenase component|unclassified	0.6901311249
+UniRef50_S2JET1	0.6901311249
+UniRef50_S2JET1|unclassified	0.6901311249
+UniRef50_Q653B9	0.6900656146
+UniRef50_Q653B9|unclassified	0.6900656146
+UniRef50_O27265: Conserved protein	0.6900489042
+UniRef50_O27265: Conserved protein|unclassified	0.6900489042
+UniRef50_UPI000361A0EC: hypothetical protein	0.6899933796
+UniRef50_UPI000361A0EC: hypothetical protein|unclassified	0.6899933796
+UniRef50_A3K735: Transposase orfA IS5 family element	0.6898792530
+UniRef50_A3K735: Transposase orfA IS5 family element|unclassified	0.6898792530
+UniRef50_U3TWI4: Mammalian cell entry related domain-containing protein	0.6898621242
+UniRef50_U3TWI4: Mammalian cell entry related domain-containing protein|unclassified	0.6898621242
+UniRef50_UPI0004684B1B: hypothetical protein	0.6897642055
+UniRef50_UPI0004684B1B: hypothetical protein|unclassified	0.6897642055
+UniRef50_T0U0Y5: Transposase and inactivatedderivatives-likeprotein	0.6896786465
+UniRef50_T0U0Y5: Transposase and inactivatedderivatives-likeprotein|unclassified	0.6896786465
+UniRef50_F3SFQ4	0.6896551714
+UniRef50_F3SFQ4|unclassified	0.6896551714
+UniRef50_V7NN68: Ribonucleotide-pyrophosphate reductase subunit beta	0.6896291297
+UniRef50_V7NN68: Ribonucleotide-pyrophosphate reductase subunit beta|unclassified	0.6896291297
+UniRef50_Q4L8N7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.6895838842
+UniRef50_Q4L8N7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.6895838842
+UniRef50_UPI0002E67ADF: hypothetical protein	0.6895761826
+UniRef50_UPI0002E67ADF: hypothetical protein|unclassified	0.6895761826
+UniRef50_UPI000419FBF3: ABC transporter permease	0.6895143175
+UniRef50_UPI000419FBF3: ABC transporter permease|unclassified	0.6895143175
+UniRef50_U6AG49	0.6894905557
+UniRef50_U6AG49|unclassified	0.6894905557
+UniRef50_W1DKS7: Probable Fe-S oxidoreductase family 2	0.6894693910
+UniRef50_W1DKS7: Probable Fe-S oxidoreductase family 2|unclassified	0.6894693910
+UniRef50_A0A031MIW5: Pilus assembly protein PilZ	0.6894312336
+UniRef50_A0A031MIW5: Pilus assembly protein PilZ|unclassified	0.6894312336
+UniRef50_K0S940	0.6893547089
+UniRef50_K0S940|unclassified	0.6893547089
+UniRef50_UPI000381AA1E: hypothetical protein	0.6893528343
+UniRef50_UPI000381AA1E: hypothetical protein|unclassified	0.6893528343
+UniRef50_F0YG09: Expressed protein (Fragment)	0.6892668708
+UniRef50_F0YG09: Expressed protein (Fragment)|unclassified	0.6892668708
+UniRef50_A3K475	0.6891433205
+UniRef50_A3K475|unclassified	0.6891433205
+UniRef50_R9E884	0.6890919667
+UniRef50_R9E884|unclassified	0.6890919667
+UniRef50_Q92GC1: 3-oxoacyl-[acyl-carrier-protein] synthase 3	0.6890914364
+UniRef50_Q92GC1: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	0.6890914364
+UniRef50_UPI000477A2AE: hypothetical protein	0.6890501460
+UniRef50_UPI000477A2AE: hypothetical protein|unclassified	0.6890501460
+UniRef50_UPI000364D553: hypothetical protein	0.6890014728
+UniRef50_UPI000364D553: hypothetical protein|unclassified	0.6890014728
+UniRef50_G2IQX0	0.6889753423
+UniRef50_G2IQX0|unclassified	0.6889753423
+UniRef50_D3A0N9	0.6889049260
+UniRef50_D3A0N9|unclassified	0.6889049260
+UniRef50_U4VDJ5: Threonine dehydratase	0.6888566984
+UniRef50_U4VDJ5: Threonine dehydratase|unclassified	0.6888566984
+UniRef50_UPI00036EF891: hypothetical protein	0.6888130365
+UniRef50_UPI00036EF891: hypothetical protein|unclassified	0.6888130365
+UniRef50_Q87TS4: Ribosomal RNA small subunit methyltransferase G	0.6887080901
+UniRef50_Q87TS4: Ribosomal RNA small subunit methyltransferase G|unclassified	0.6887080901
+UniRef50_A6QE03: Amidase	0.6887052342
+UniRef50_A6QE03: Amidase|g__Staphylococcus.s__Staphylococcus_aureus	0.6887052342
+UniRef50_D7FR74: EsV-1-7	0.6887052342
+UniRef50_D7FR74: EsV-1-7|unclassified	0.6887052342
+UniRef50_UPI00016B1980: hypothetical protein	0.6886032189
+UniRef50_UPI00016B1980: hypothetical protein|unclassified	0.6886032189
+UniRef50_F7Z1B5	0.6885200108
+UniRef50_F7Z1B5|unclassified	0.6885200108
+UniRef50_N9WGA2	0.6885154443
+UniRef50_N9WGA2|unclassified	0.6885154443
+UniRef50_H8WB63	0.6883842305
+UniRef50_H8WB63|unclassified	0.6883842305
+UniRef50_J0KWU4	0.6883050893
+UniRef50_J0KWU4|unclassified	0.6883050893
+UniRef50_UPI0003B74251: sugar ABC transporter permease	0.6882522231
+UniRef50_UPI0003B74251: sugar ABC transporter permease|unclassified	0.6882522231
+UniRef50_C4K3W3: NADH-quinone oxidoreductase subunit N	0.6882312457
+UniRef50_C4K3W3: NADH-quinone oxidoreductase subunit N|g__Escherichia.s__Escherichia_coli	0.6882312457
+UniRef50_UPI00046F8439: hypothetical protein	0.6882009525
+UniRef50_UPI00046F8439: hypothetical protein|unclassified	0.6882009525
+UniRef50_UPI000288E019: sulfate ABC transporter membrane protein	0.6881655764
+UniRef50_UPI000288E019: sulfate ABC transporter membrane protein|unclassified	0.6881655764
+UniRef50_UPI00041CFDCE: hypothetical protein	0.6881349559
+UniRef50_UPI00041CFDCE: hypothetical protein|unclassified	0.6881349559
+UniRef50_UPI000374622A: hypothetical protein	0.6881345283
+UniRef50_UPI000374622A: hypothetical protein|unclassified	0.6881345283
+UniRef50_UPI000365E273: hypothetical protein	0.6880263732
+UniRef50_UPI000365E273: hypothetical protein|unclassified	0.6880263732
+UniRef50_UPI000287F837: alpha/beta hydrolase	0.6878557826
+UniRef50_UPI000287F837: alpha/beta hydrolase|unclassified	0.6878557826
+UniRef50_F3P3J8: ABC transport system, ATP-binding protein	0.6877579092
+UniRef50_F3P3J8: ABC transport system, ATP-binding protein|g__Propionibacterium.s__Propionibacterium_acnes	0.6877579092
+UniRef50_I3YFJ2: NADH dehydrogenase subunit M	0.6877579092
+UniRef50_I3YFJ2: NADH dehydrogenase subunit M|g__Neisseria.s__Neisseria_meningitidis	0.6877579092
+UniRef50_UPI0004652D5B: hypothetical protein	0.6877422234
+UniRef50_UPI0004652D5B: hypothetical protein|unclassified	0.6877422234
+UniRef50_UPI0001850E15: aminotransferase	0.6876492289
+UniRef50_UPI0001850E15: aminotransferase|unclassified	0.6876492289
+UniRef50_UPI0003760C10: hypothetical protein	0.6876105786
+UniRef50_UPI0003760C10: hypothetical protein|unclassified	0.6876105786
+UniRef50_S6E080: BN860_07646g1_1	0.6875918033
+UniRef50_S6E080: BN860_07646g1_1|unclassified	0.6875918033
+UniRef50_G2SMW5: PadR family transcriptional regulator	0.6875392172
+UniRef50_G2SMW5: PadR family transcriptional regulator|unclassified	0.6875392172
+UniRef50_M9B494	0.6875106653
+UniRef50_M9B494|unclassified	0.6875106653
+UniRef50_Q4RXW6: Chromosome 11 SCAF14979, whole genome shotgun sequence	0.6874944378
+UniRef50_Q4RXW6: Chromosome 11 SCAF14979, whole genome shotgun sequence|unclassified	0.6874944378
+UniRef50_UPI0003680468: hypothetical protein	0.6874538700
+UniRef50_UPI0003680468: hypothetical protein|unclassified	0.6874538700
+UniRef50_Q9KL04: Maltose/maltodextrin import ATP-binding protein MalK	0.6872906550
+UniRef50_Q9KL04: Maltose/maltodextrin import ATP-binding protein MalK|unclassified	0.6872906550
+UniRef50_Q9RY09	0.6872852234
+UniRef50_Q9RY09|g__Deinococcus.s__Deinococcus_radiodurans	0.6872852234
+UniRef50_X1TRX2: Marine sediment metagenome DNA, contig: S12H4_S06264 (Fragment)	0.6872649053
+UniRef50_X1TRX2: Marine sediment metagenome DNA, contig: S12H4_S06264 (Fragment)|unclassified	0.6872649053
+UniRef50_UPI000477BD66: DoxX family protein	0.6872319073
+UniRef50_UPI000477BD66: DoxX family protein|unclassified	0.6872319073
+UniRef50_H4UR08: Lipopolysaccharide biosynthesis protein	0.6871762587
+UniRef50_H4UR08: Lipopolysaccharide biosynthesis protein|unclassified	0.6871762587
+UniRef50_C2W2G5: Oligopeptide transporter, periplasmic-binding protein	0.6871108051
+UniRef50_C2W2G5: Oligopeptide transporter, periplasmic-binding protein|unclassified	0.6871108051
+UniRef50_UPI0003B405D9: thioredoxin	0.6870717214
+UniRef50_UPI0003B405D9: thioredoxin|unclassified	0.6870717214
+UniRef50_UPI0002000914: non-ribosomal peptide synthetase-like protein	0.6869854019
+UniRef50_UPI0002000914: non-ribosomal peptide synthetase-like protein|unclassified	0.6869854019
+UniRef50_UPI0004680237: hypothetical protein	0.6868988559
+UniRef50_UPI0004680237: hypothetical protein|unclassified	0.6868988559
+UniRef50_Q9SA96: Arogenate dehydratase/prephenate dehydratase 1, chloroplastic	0.6868091613
+UniRef50_Q9SA96: Arogenate dehydratase/prephenate dehydratase 1, chloroplastic|unclassified	0.6868091613
+UniRef50_S1SUV9	0.6867396405
+UniRef50_S1SUV9|unclassified	0.6867396405
+UniRef50_UPI000225BECB: nucleoside-triphosphate diphosphatase	0.6866914927
+UniRef50_UPI000225BECB: nucleoside-triphosphate diphosphatase|unclassified	0.6866914927
+UniRef50_K1V177: Putative oxidoreductase, aryl-alcohol dehydrogenase like protein	0.6866804033
+UniRef50_K1V177: Putative oxidoreductase, aryl-alcohol dehydrogenase like protein|unclassified	0.6866804033
+UniRef50_UPI0004633634: hypothetical protein	0.6866415458
+UniRef50_UPI0004633634: hypothetical protein|unclassified	0.6866415458
+UniRef50_I3UMW6: EmrB/QacA family drug resistance transporter	0.6866283151
+UniRef50_I3UMW6: EmrB/QacA family drug resistance transporter|unclassified	0.6866283151
+UniRef50_A4U2D7	0.6865977492
+UniRef50_A4U2D7|unclassified	0.6865977492
+UniRef50_B8EQM8: BolA family protein	0.6865798913
+UniRef50_B8EQM8: BolA family protein|unclassified	0.6865798913
+UniRef50_UPI00046F0342: hypothetical protein	0.6865288230
+UniRef50_UPI00046F0342: hypothetical protein|unclassified	0.6865288230
+UniRef50_UPI0002E6BDE4: hypothetical protein	0.6863450335
+UniRef50_UPI0002E6BDE4: hypothetical protein|unclassified	0.6863450335
+UniRef50_Q040Z6: PTS system IIC component, Glc family / PTS system IIA component, Glc family / PTS system IIB component, Glc family	0.6863417982
+UniRef50_Q040Z6: PTS system IIC component, Glc family / PTS system IIA component, Glc family / PTS system IIB component, Glc family|g__Propionibacterium.s__Propionibacterium_acnes	0.6863417982
+UniRef50_Q9HTR0: Probable multidrug resistance protein NorM	0.6863417982
+UniRef50_Q9HTR0: Probable multidrug resistance protein NorM|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6863417982
+UniRef50_UPI0003C7A2A0: hypothetical protein	0.6862912294
+UniRef50_UPI0003C7A2A0: hypothetical protein|unclassified	0.6862912294
+UniRef50_E6RJK7	0.6860378611
+UniRef50_E6RJK7|unclassified	0.6860378611
+UniRef50_V3XG92	0.6859755256
+UniRef50_V3XG92|unclassified	0.6859755256
+UniRef50_X1N7J1: Marine sediment metagenome DNA, contig: S06H3_S00235 (Fragment)	0.6859671369
+UniRef50_X1N7J1: Marine sediment metagenome DNA, contig: S06H3_S00235 (Fragment)|unclassified	0.6859671369
+UniRef50_W4KRA3: Transposase	0.6859561329
+UniRef50_W4KRA3: Transposase|unclassified	0.6859561329
+UniRef50_A7NJ00	0.6859326775
+UniRef50_A7NJ00|unclassified	0.6859326775
+UniRef50_P0A533: Cobyric acid synthase	0.6858710562
+UniRef50_P0A533: Cobyric acid synthase|g__Propionibacterium.s__Propionibacterium_acnes	0.6858710562
+UniRef50_X9S2P0	0.6858352101
+UniRef50_X9S2P0|unclassified	0.6858352101
+UniRef50_UPI00036827A2: hypothetical protein	0.6857399696
+UniRef50_UPI00036827A2: hypothetical protein|unclassified	0.6857399696
+UniRef50_C8M4N0	0.6855035900
+UniRef50_C8M4N0|unclassified	0.6855035900
+UniRef50_W0CJF6	0.6853755911
+UniRef50_W0CJF6|unclassified	0.6853755911
+UniRef50_UPI0003A482DB: hypothetical protein	0.6853422203
+UniRef50_UPI0003A482DB: hypothetical protein|unclassified	0.6853422203
+UniRef50_M1FLY1	0.6853325595
+UniRef50_M1FLY1|unclassified	0.6853325595
+UniRef50_D4DTY3: ParB-like protein	0.6853206351
+UniRef50_D4DTY3: ParB-like protein|unclassified	0.6853206351
+UniRef50_K1V9J2	0.6851195056
+UniRef50_K1V9J2|unclassified	0.6851195056
+UniRef50_Q7XGT2: Expressed protein	0.6849913853
+UniRef50_Q7XGT2: Expressed protein|unclassified	0.6849913853
+UniRef50_A3M1H8	0.6849315872
+UniRef50_A3M1H8|g__Acinetobacter.s__Acinetobacter_baumannii	0.6849315872
+UniRef50_Q3IVV0: Dynamin family protein	0.6849315068
+UniRef50_Q3IVV0: Dynamin family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.6849315068
+UniRef50_X5EKC8: Ferric alcaligin siderophore receptor	0.6849315068
+UniRef50_X5EKC8: Ferric alcaligin siderophore receptor|g__Neisseria.s__Neisseria_meningitidis	0.6849315068
+UniRef50_Q3JNJ8	0.6847959864
+UniRef50_Q3JNJ8|unclassified	0.6847959864
+UniRef50_W1K4B0: ABC transporter glycerol-3-phosphate-binding protein (Fragment)	0.6845626529
+UniRef50_W1K4B0: ABC transporter glycerol-3-phosphate-binding protein (Fragment)|unclassified	0.6845626529
+UniRef50_A4YU24	0.6845384454
+UniRef50_A4YU24|unclassified	0.6845384454
+UniRef50_D4HD09	0.6844626968
+UniRef50_D4HD09|g__Propionibacterium.s__Propionibacterium_acnes	0.6844626968
+UniRef50_G5G2E6	0.6844483038
+UniRef50_G5G2E6|unclassified	0.6844483038
+UniRef50_UPI00021A5FDB: PREDICTED: dihydroxy-acid dehydratase-like, partial	0.6844060422
+UniRef50_UPI00021A5FDB: PREDICTED: dihydroxy-acid dehydratase-like, partial|unclassified	0.6844060422
+UniRef50_I6F1W3	0.6843472969
+UniRef50_I6F1W3|unclassified	0.6843472969
+UniRef50_Z5TK64	0.6843395522
+UniRef50_Z5TK64|unclassified	0.6843395522
+UniRef50_UPI000328EECC: PREDICTED: translation initiation factor IF-2-like	0.6843131998
+UniRef50_UPI000328EECC: PREDICTED: translation initiation factor IF-2-like|unclassified	0.6843131998
+UniRef50_V7EMN8	0.6842157094
+UniRef50_V7EMN8|unclassified	0.6842157094
+UniRef50_UPI00037556F3: hypothetical protein	0.6840136885
+UniRef50_UPI00037556F3: hypothetical protein|unclassified	0.6840136885
+UniRef50_R4RQA1: MFS-type transporter	0.6839945280
+UniRef50_R4RQA1: MFS-type transporter|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6839945280
+UniRef50_UPI00036C8F35: hypothetical protein	0.6839747711
+UniRef50_UPI00036C8F35: hypothetical protein|unclassified	0.6839747711
+UniRef50_B7V1T0: Urease subunit beta	0.6838599221
+UniRef50_B7V1T0: Urease subunit beta|unclassified	0.6838599221
+UniRef50_N7D0A1	0.6837932040
+UniRef50_N7D0A1|unclassified	0.6837932040
+UniRef50_UPI0002482319: hypothetical protein	0.6836089549
+UniRef50_UPI0002482319: hypothetical protein|unclassified	0.6836089549
+UniRef50_A0A025D9T9	0.6834858098
+UniRef50_A0A025D9T9|unclassified	0.6834858098
+UniRef50_UPI0002F55037: hypothetical protein	0.6834358028
+UniRef50_UPI0002F55037: hypothetical protein|unclassified	0.6834358028
+UniRef50_B6B7U6	0.6834027751
+UniRef50_B6B7U6|unclassified	0.6834027751
+UniRef50_Q2W726: Predicted membrane protein	0.6832658141
+UniRef50_Q2W726: Predicted membrane protein|unclassified	0.6832658141
+UniRef50_I3TIJ6: Arsenate reductase and related protein	0.6832338496
+UniRef50_I3TIJ6: Arsenate reductase and related protein|unclassified	0.6832338496
+UniRef50_Q3JWL2	0.6831544811
+UniRef50_Q3JWL2|unclassified	0.6831544811
+UniRef50_UPI0004720687: hypothetical protein	0.6830874702
+UniRef50_UPI0004720687: hypothetical protein|unclassified	0.6830874702
+UniRef50_Q9I692	0.6830601093
+UniRef50_Q9I692|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6830601093
+UniRef50_UPI0003B749DD: NADH-ubiquinone oxidoreductase subunit 6	0.6830088898
+UniRef50_UPI0003B749DD: NADH-ubiquinone oxidoreductase subunit 6|unclassified	0.6830088898
+UniRef50_UPI0003B49886: mannitol 2-dehydrogenase, partial	0.6829946042
+UniRef50_UPI0003B49886: mannitol 2-dehydrogenase, partial|unclassified	0.6829946042
+UniRef50_W4Y6X8	0.6828755825
+UniRef50_W4Y6X8|unclassified	0.6828755825
+UniRef50_UPI00030C0032: hypothetical protein	0.6828639400
+UniRef50_UPI00030C0032: hypothetical protein|unclassified	0.6828639400
+UniRef50_Q2YZ92	0.6828327081
+UniRef50_Q2YZ92|unclassified	0.6828327081
+UniRef50_J2DI74	0.6828301158
+UniRef50_J2DI74|unclassified	0.6828301158
+UniRef50_U6A8G4	0.6827996341
+UniRef50_U6A8G4|unclassified	0.6827996341
+UniRef50_UPI000476F6BE: hypothetical protein	0.6827781341
+UniRef50_UPI000476F6BE: hypothetical protein|unclassified	0.6827781341
+UniRef50_UPI00037F805D: hypothetical protein	0.6826416237
+UniRef50_UPI00037F805D: hypothetical protein|unclassified	0.6826416237
+UniRef50_A0A059LL30: CBF/Mak21 family protein (Fragment)	0.6825938567
+UniRef50_A0A059LL30: CBF/Mak21 family protein (Fragment)|unclassified	0.6825938567
+UniRef50_B2V422	0.6825938567
+UniRef50_B2V422|g__Clostridium.s__Clostridium_beijerinckii	0.6825938567
+UniRef50_B4RQR5: MafB5	0.6825938567
+UniRef50_B4RQR5: MafB5|g__Neisseria.s__Neisseria_meningitidis	0.6825938567
+UniRef50_Q2KAV8: UPF0061 protein RHE_CH01223	0.6825938567
+UniRef50_Q2KAV8: UPF0061 protein RHE_CH01223|g__Clostridium.s__Clostridium_beijerinckii	0.6825938567
+UniRef50_Y5NRS7	0.6825701547
+UniRef50_Y5NRS7|unclassified	0.6825701547
+UniRef50_V5VBC4: Acinetobactin biosynthesis protein	0.6824774128
+UniRef50_V5VBC4: Acinetobactin biosynthesis protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.6824774128
+UniRef50_UPI0003074F79: hypothetical protein	0.6823600822
+UniRef50_UPI0003074F79: hypothetical protein|unclassified	0.6823600822
+UniRef50_W0BIN9: Type-F conjugative transfer system protein TraU	0.6823489314
+UniRef50_W0BIN9: Type-F conjugative transfer system protein TraU|unclassified	0.6823489314
+UniRef50_UPI00016C4318: hypothetical protein	0.6822452665
+UniRef50_UPI00016C4318: hypothetical protein|unclassified	0.6822452665
+UniRef50_S7QEI3	0.6822320080
+UniRef50_S7QEI3|unclassified	0.6822320080
+UniRef50_J9P1W6	0.6821367302
+UniRef50_J9P1W6|unclassified	0.6821367302
+UniRef50_P0A4K2: Cystathionine beta-lyase	0.6820900845
+UniRef50_P0A4K2: Cystathionine beta-lyase|unclassified	0.6820900845
+UniRef50_R7SQ97	0.6820343260
+UniRef50_R7SQ97|unclassified	0.6820343260
+UniRef50_H2EPJ7: Acyl-CoA synthetase	0.6819783096
+UniRef50_H2EPJ7: Acyl-CoA synthetase|unclassified	0.6819783096
+UniRef50_UPI0003065A05: MULTISPECIES: sporulation protein YpjB	0.6819210295
+UniRef50_UPI0003065A05: MULTISPECIES: sporulation protein YpjB|unclassified	0.6819210295
+UniRef50_UPI0003B4712C: histidine kinase	0.6817855644
+UniRef50_UPI0003B4712C: histidine kinase|unclassified	0.6817855644
+UniRef50_I0EPP7: Periplasmic dipeptide transport substrate-binding protein	0.6816632584
+UniRef50_I0EPP7: Periplasmic dipeptide transport substrate-binding protein|g__Helicobacter.s__Helicobacter_pylori	0.6816632584
+UniRef50_W1D7L5: Zinc ABC transporter, periplasmic-binding protein ZnuA	0.6815621249
+UniRef50_W1D7L5: Zinc ABC transporter, periplasmic-binding protein ZnuA|unclassified	0.6815621249
+UniRef50_W4Q487: Carboxynorspermidine decarboxylase	0.6814993950
+UniRef50_W4Q487: Carboxynorspermidine decarboxylase|unclassified	0.6814993950
+UniRef50_V9YJE6	0.6814468831
+UniRef50_V9YJE6|unclassified	0.6814468831
+UniRef50_K7YR95: BolA-like family protein	0.6814403284
+UniRef50_K7YR95: BolA-like family protein|unclassified	0.6814403284
+UniRef50_A0A011QP89: Elongation factor Tu	0.6814323117
+UniRef50_A0A011QP89: Elongation factor Tu|unclassified	0.6814323117
+UniRef50_U6K454	0.6811907566
+UniRef50_U6K454|unclassified	0.6811907566
+UniRef50_UPI0004636621: LysR family transcriptional regulator	0.6811467780
+UniRef50_UPI0004636621: LysR family transcriptional regulator|unclassified	0.6811467780
+UniRef50_I2TZE8: LppC domain protein	0.6811252828
+UniRef50_I2TZE8: LppC domain protein|unclassified	0.6811252828
+UniRef50_UPI0003640591: phosphocarrier protein HPr	0.6811122575
+UniRef50_UPI0003640591: phosphocarrier protein HPr|unclassified	0.6811122575
+UniRef50_K1YQB9: tRNA modification GTPase mnmE (Fragment)	0.6810996304
+UniRef50_K1YQB9: tRNA modification GTPase mnmE (Fragment)|unclassified	0.6810996304
+UniRef50_A0A029L6K3	0.6810994993
+UniRef50_A0A029L6K3|unclassified	0.6810994993
+UniRef50_UPI00037B5A68: hypothetical protein	0.6810143778
+UniRef50_UPI00037B5A68: hypothetical protein|unclassified	0.6810143778
+UniRef50_W4S2X5: Alkyl hydroperoxide reductase subunit F	0.6809950190
+UniRef50_W4S2X5: Alkyl hydroperoxide reductase subunit F|unclassified	0.6809950190
+UniRef50_D2N404	0.6809413641
+UniRef50_D2N404|unclassified	0.6809413641
+UniRef50_V9UAL6	0.6809146949
+UniRef50_V9UAL6|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.4159733777
+UniRef50_V9UAL6|unclassified	0.2649413172
+UniRef50_K5Y8C5: N-acetylmuramoyl-L-alanine amidase	0.6809117634
+UniRef50_K5Y8C5: N-acetylmuramoyl-L-alanine amidase|unclassified	0.6809117634
+UniRef50_UPI00047122BB: peptide ABC transporter substrate-binding protein	0.6808977911
+UniRef50_UPI00047122BB: peptide ABC transporter substrate-binding protein|unclassified	0.6808977911
+UniRef50_J8FYG0	0.6808217610
+UniRef50_J8FYG0|unclassified	0.6808217610
+UniRef50_UPI0003B41703: hypothetical protein	0.6808038556
+UniRef50_UPI0003B41703: hypothetical protein|unclassified	0.6808038556
+UniRef50_V8CGS8	0.6807398013
+UniRef50_V8CGS8|unclassified	0.6807398013
+UniRef50_K5XDH1	0.6807351940
+UniRef50_K5XDH1|unclassified	0.6807351940
+UniRef50_Q9RXI1	0.6807351940
+UniRef50_Q9RXI1|g__Deinococcus.s__Deinococcus_radiodurans	0.6807351940
+UniRef50_UPI00047E2F6F: hypothetical protein	0.6807351940
+UniRef50_UPI00047E2F6F: hypothetical protein|unclassified	0.6807351940
+UniRef50_UPI0002EDB6DA: hypothetical protein	0.6806754250
+UniRef50_UPI0002EDB6DA: hypothetical protein|unclassified	0.6806754250
+UniRef50_H4F217	0.6806375351
+UniRef50_H4F217|unclassified	0.6806375351
+UniRef50_UPI00040AF101: hypothetical protein	0.6804699268
+UniRef50_UPI00040AF101: hypothetical protein|unclassified	0.6804699268
+UniRef50_E9WGX5	0.6804108993
+UniRef50_E9WGX5|unclassified	0.6804108993
+UniRef50_F0YLQ9: Expressed protein (Fragment)	0.6803498204
+UniRef50_F0YLQ9: Expressed protein (Fragment)|unclassified	0.6803498204
+UniRef50_UPI0004744940: ABC transporter permease, partial	0.6803312977
+UniRef50_UPI0004744940: ABC transporter permease, partial|unclassified	0.6803312977
+UniRef50_UPI00046451D1: polyamine ABC transporter ATPase	0.6802893710
+UniRef50_UPI00046451D1: polyamine ABC transporter ATPase|unclassified	0.6802893710
+UniRef50_C8S388: O-antigen polymerase	0.6802721088
+UniRef50_C8S388: O-antigen polymerase|unclassified	0.6802721088
+UniRef50_D6A241: Predicted protein	0.6802721088
+UniRef50_D6A241: Predicted protein|unclassified	0.6802721088
+UniRef50_A4B9S6	0.6801942683
+UniRef50_A4B9S6|unclassified	0.6801942683
+UniRef50_A4WNV7	0.6801783694
+UniRef50_A4WNV7|unclassified	0.6801783694
+UniRef50_Q0BVP4: Ribonuclease D	0.6801462464
+UniRef50_Q0BVP4: Ribonuclease D|unclassified	0.6801462464
+UniRef50_C7ZYM4: Phage protein	0.6800654921
+UniRef50_C7ZYM4: Phage protein|unclassified	0.6800654921
+UniRef50_UPI0004732AD3: hypothetical protein, partial	0.6800516601
+UniRef50_UPI0004732AD3: hypothetical protein, partial|unclassified	0.6800516601
+UniRef50_B9TD78: Circumsporozoite protein, putative (Fragment)	0.6800421999
+UniRef50_B9TD78: Circumsporozoite protein, putative (Fragment)|unclassified	0.6800421999
+UniRef50_Q1QIW5: Prolipoprotein diacylglyceryl transferase	0.6799551861
+UniRef50_Q1QIW5: Prolipoprotein diacylglyceryl transferase|unclassified	0.6799551861
+UniRef50_R6ZP96	0.6799538190
+UniRef50_R6ZP96|unclassified	0.6799538190
+UniRef50_K0RG62	0.6799001103
+UniRef50_K0RG62|unclassified	0.6799001103
+UniRef50_UPI0003735E21: hypothetical protein	0.6798260165
+UniRef50_UPI0003735E21: hypothetical protein|unclassified	0.6798260165
+UniRef50_H1SAS2: Lysine transporter	0.6798096533
+UniRef50_H1SAS2: Lysine transporter|unclassified	0.6798096533
+UniRef50_UPI000406D548: hypothetical protein	0.6797902578
+UniRef50_UPI000406D548: hypothetical protein|unclassified	0.6797902578
+UniRef50_UPI0001BF5F9C: hypothetical protein SMAC_10519, partial	0.6797560951
+UniRef50_UPI0001BF5F9C: hypothetical protein SMAC_10519, partial|unclassified	0.6797560951
+UniRef50_X2MPL3: Enterobactin synthase	0.6797396870
+UniRef50_X2MPL3: Enterobactin synthase|unclassified	0.6797396870
+UniRef50_UPI000382BAEE: hypothetical protein, partial	0.6797281286
+UniRef50_UPI000382BAEE: hypothetical protein, partial|unclassified	0.6797281286
+UniRef50_I0G608: Transcriptional regulatory protein	0.6795610893
+UniRef50_I0G608: Transcriptional regulatory protein|unclassified	0.6795610893
+UniRef50_UPI00028A20BF: hypothetical protein	0.6794897253
+UniRef50_UPI00028A20BF: hypothetical protein|unclassified	0.6794897253
+UniRef50_UPI000462CF76: hypothetical protein, partial	0.6794708298
+UniRef50_UPI000462CF76: hypothetical protein, partial|unclassified	0.6794708298
+UniRef50_UPI0001D2EF85: conserved hypothetical protein	0.6794181942
+UniRef50_UPI0001D2EF85: conserved hypothetical protein|unclassified	0.6794181942
+UniRef50_UPI0003EF22C5: hypothetical protein	0.6793706061
+UniRef50_UPI0003EF22C5: hypothetical protein|unclassified	0.6793706061
+UniRef50_A7K3E5: Nucleoside-diphosphate sugar epimerase/dehydratase	0.6793478261
+UniRef50_A7K3E5: Nucleoside-diphosphate sugar epimerase/dehydratase|g__Neisseria.s__Neisseria_meningitidis	0.6793478261
+UniRef50_UPI000414705E: peptide ABC transporter substrate-binding protein	0.6792865327
+UniRef50_UPI000414705E: peptide ABC transporter substrate-binding protein|unclassified	0.6792865327
+UniRef50_D4DRA0	0.6792031744
+UniRef50_D4DRA0|unclassified	0.6792031744
+UniRef50_P13061: Periplasmic [NiFe] hydrogenase small subunit	0.6791499067
+UniRef50_P13061: Periplasmic [NiFe] hydrogenase small subunit|unclassified	0.6791499067
+UniRef50_UPI00031889A3: hypothetical protein	0.6790732397
+UniRef50_UPI00031889A3: hypothetical protein|unclassified	0.6790732397
+UniRef50_Q6A850: Exodeoxyribonuclease V beta chain	0.6790689150
+UniRef50_Q6A850: Exodeoxyribonuclease V beta chain|g__Propionibacterium.s__Propionibacterium_acnes	0.6790689150
+UniRef50_P21631: Uroporphyrinogen-III C-methyltransferase	0.6789978505
+UniRef50_P21631: Uroporphyrinogen-III C-methyltransferase|unclassified	0.6789978505
+UniRef50_F5M2A8: NnrU family protein	0.6789527745
+UniRef50_F5M2A8: NnrU family protein|unclassified	0.6789527745
+UniRef50_G4C7W3	0.6789235937
+UniRef50_G4C7W3|unclassified	0.6789235937
+UniRef50_UPI00036FBE9A: hypothetical protein	0.6788148374
+UniRef50_UPI00036FBE9A: hypothetical protein|unclassified	0.6788148374
+UniRef50_K9VHU3	0.6787873559
+UniRef50_K9VHU3|unclassified	0.6787873559
+UniRef50_E2ZVG3	0.6787241870
+UniRef50_E2ZVG3|unclassified	0.6787241870
+UniRef50_UPI0002BA99C0: hypothetical protein, partial	0.6785967981
+UniRef50_UPI0002BA99C0: hypothetical protein, partial|unclassified	0.6785967981
+UniRef50_A0A023UJB1: Type-F conjugative transfer system protein TraW	0.6785864746
+UniRef50_A0A023UJB1: Type-F conjugative transfer system protein TraW|unclassified	0.6785864746
+UniRef50_Q3IXI7: ABC-type transport system, involved in lipoprotein release, permease component	0.6785202439
+UniRef50_Q3IXI7: ABC-type transport system, involved in lipoprotein release, permease component|unclassified	0.6785202439
+UniRef50_X6L644	0.6784926616
+UniRef50_X6L644|unclassified	0.6784926616
+UniRef50_J7UV04	0.6784909088
+UniRef50_J7UV04|unclassified	0.6784909088
+UniRef50_H4FEC9: Aldehyde oxidase and xanthine dehydrogenase a/b hammerhead (Fragment)	0.6784615305
+UniRef50_H4FEC9: Aldehyde oxidase and xanthine dehydrogenase a/b hammerhead (Fragment)|unclassified	0.6784615305
+UniRef50_Q3JIP7	0.6784260516
+UniRef50_Q3JIP7|unclassified	0.6784260516
+UniRef50_UPI000372ADBA: actetate permease	0.6783699538
+UniRef50_UPI000372ADBA: actetate permease|unclassified	0.6783699538
+UniRef50_A0A017X381	0.6783029141
+UniRef50_A0A017X381|unclassified	0.6783029141
+UniRef50_A0A052HP66: ABC transporter, substrate-binding domain protein	0.6781852178
+UniRef50_A0A052HP66: ABC transporter, substrate-binding domain protein|unclassified	0.6781852178
+UniRef50_UPI000366FA92: hypothetical protein	0.6781718810
+UniRef50_UPI000366FA92: hypothetical protein|unclassified	0.6781718810
+UniRef50_UPI00034CCF2C: hypothetical protein	0.6780567253
+UniRef50_UPI00034CCF2C: hypothetical protein|unclassified	0.6780567253
+UniRef50_B9KNI4	0.6779864888
+UniRef50_B9KNI4|unclassified	0.6779864888
+UniRef50_M9VKL6: Thiol reductant ABC exporter, CydC subunit	0.6779661017
+UniRef50_M9VKL6: Thiol reductant ABC exporter, CydC subunit|g__Propionibacterium.s__Propionibacterium_acnes	0.6779661017
+UniRef50_U3TA62: Protein MurJ homolog	0.6779661017
+UniRef50_U3TA62: Protein MurJ homolog|g__Acinetobacter.s__Acinetobacter_baumannii	0.6779661017
+UniRef50_UPI0004677F2D: hypothetical protein	0.6779661017
+UniRef50_UPI0004677F2D: hypothetical protein|unclassified	0.6779661017
+UniRef50_UPI0004240D5A: deoxyguanosinetriphosphate triphosphohydrolase	0.6779175228
+UniRef50_UPI0004240D5A: deoxyguanosinetriphosphate triphosphohydrolase|unclassified	0.6779175228
+UniRef50_UPI00027407B9	0.6778983966
+UniRef50_UPI00027407B9|unclassified	0.6778983966
+UniRef50_V8GXC4: Protein pucC (Fragment)	0.6778838741
+UniRef50_V8GXC4: Protein pucC (Fragment)|unclassified	0.6778838741
+UniRef50_E4UEG5: LF82 chromosome, complete sequence	0.6778755057
+UniRef50_E4UEG5: LF82 chromosome, complete sequence|unclassified	0.6778755057
+UniRef50_UPI0003705B6F: hypothetical protein	0.6778259404
+UniRef50_UPI0003705B6F: hypothetical protein|unclassified	0.6778259404
+UniRef50_W1XUK5	0.6776557679
+UniRef50_W1XUK5|unclassified	0.6776557679
+UniRef50_F0RLL2	0.6775067751
+UniRef50_F0RLL2|g__Deinococcus.s__Deinococcus_radiodurans	0.6775067751
+UniRef50_K4QSD1	0.6775067751
+UniRef50_K4QSD1|unclassified	0.6775067751
+UniRef50_X1CJY9: Marine sediment metagenome DNA, contig: S01H4_S12593 (Fragment)	0.6774251760
+UniRef50_X1CJY9: Marine sediment metagenome DNA, contig: S01H4_S12593 (Fragment)|unclassified	0.6774251760
+UniRef50_G0AKF2	0.6773300652
+UniRef50_G0AKF2|unclassified	0.6773300652
+UniRef50_UPI000363C2A9: hypothetical protein	0.6771200056
+UniRef50_UPI000363C2A9: hypothetical protein|unclassified	0.6771200056
+UniRef50_R4ZXX5: Carbon starvation protein A	0.6770480704
+UniRef50_R4ZXX5: Carbon starvation protein A|g__Streptococcus.s__Streptococcus_agalactiae	0.6770480704
+UniRef50_UPI0003B3DC0E: hypothetical protein	0.6770480704
+UniRef50_UPI0003B3DC0E: hypothetical protein|unclassified	0.6770480704
+UniRef50_Q6YVZ5	0.6769441986
+UniRef50_Q6YVZ5|unclassified	0.6769441986
+UniRef50_UPI000395955E: transcriptional regulator	0.6769378223
+UniRef50_UPI000395955E: transcriptional regulator|unclassified	0.6769378223
+UniRef50_R9VUC9	0.6767760382
+UniRef50_R9VUC9|unclassified	0.6767760382
+UniRef50_W4TG02: Nucleoside ABC transporter	0.6767340291
+UniRef50_W4TG02: Nucleoside ABC transporter|unclassified	0.6767340291
+UniRef50_A0A017IGS4	0.6766467904
+UniRef50_A0A017IGS4|unclassified	0.6766467904
+UniRef50_UPI000328BCA4: PREDICTED: epstein-Barr nuclear antigen 1-like	0.6765912542
+UniRef50_UPI000328BCA4: PREDICTED: epstein-Barr nuclear antigen 1-like|unclassified	0.6765912542
+UniRef50_Q16BP5	0.6765596453
+UniRef50_Q16BP5|unclassified	0.6765596453
+UniRef50_Q5NR31: LexA repressor	0.6765341877
+UniRef50_Q5NR31: LexA repressor|unclassified	0.6765341877
+UniRef50_H3UL21	0.6765130457
+UniRef50_H3UL21|unclassified	0.6765130457
+UniRef50_Q3JGW7	0.6764761979
+UniRef50_Q3JGW7|unclassified	0.6764761979
+UniRef50_A3JQB6: TPR repeat family protein	0.6764627097
+UniRef50_A3JQB6: TPR repeat family protein|unclassified	0.6764627097
+UniRef50_X2M260: Enterobactin synthase	0.6764076297
+UniRef50_X2M260: Enterobactin synthase|unclassified	0.6764076297
+UniRef50_UPI0000557721: COG0584: Glycerophosphoryl diester phosphodiesterase	0.6762759654
+UniRef50_UPI0000557721: COG0584: Glycerophosphoryl diester phosphodiesterase|unclassified	0.6762759654
+UniRef50_UPI00036CDFBA: hypothetical protein	0.6762715517
+UniRef50_UPI00036CDFBA: hypothetical protein|unclassified	0.6762715517
+UniRef50_W0H7M9: Cytochrome c oxidase, cbb3-type, CcoQ subunit	0.6762692019
+UniRef50_W0H7M9: Cytochrome c oxidase, cbb3-type, CcoQ subunit|unclassified	0.6762692019
+UniRef50_S3C7R1	0.6761452108
+UniRef50_S3C7R1|unclassified	0.6761452108
+UniRef50_Q7VMD0: Nucleoside diphosphate kinase	0.6761441607
+UniRef50_Q7VMD0: Nucleoside diphosphate kinase|unclassified	0.6761441607
+UniRef50_A0A024E6L7: Carbamoyl-phosphate synthase L chain, ATP-binding	0.6761325220
+UniRef50_A0A024E6L7: Carbamoyl-phosphate synthase L chain, ATP-binding|g__Acinetobacter.s__Acinetobacter_baumannii	0.6761325220
+UniRef50_F9EXE3: ABC superfamily ATP binding cassette transporter, ABC protein	0.6761325220
+UniRef50_F9EXE3: ABC superfamily ATP binding cassette transporter, ABC protein|g__Neisseria.s__Neisseria_meningitidis	0.6761325220
+UniRef50_Q3IYN0: OmpA family protein	0.6761325220
+UniRef50_Q3IYN0: OmpA family protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.6761325220
+UniRef50_UPI0003316925: PREDICTED: kinesin-like protein KIF6	0.6761325220
+UniRef50_UPI0003316925: PREDICTED: kinesin-like protein KIF6|unclassified	0.6761325220
+UniRef50_UPI0003C1AFD0: PREDICTED: serine hydroxymethyltransferase, mitochondrial-like	0.6761299131
+UniRef50_UPI0003C1AFD0: PREDICTED: serine hydroxymethyltransferase, mitochondrial-like|unclassified	0.6761299131
+UniRef50_UPI000027FA94: 50S ribosomal protein L18	0.6760870073
+UniRef50_UPI000027FA94: 50S ribosomal protein L18|unclassified	0.6760870073
+UniRef50_S9VRA1	0.6760340657
+UniRef50_S9VRA1|unclassified	0.6760340657
+UniRef50_D3EEI8	0.6760160944
+UniRef50_D3EEI8|unclassified	0.6760160944
+UniRef50_UPI0003B3E9C2: cobalamin biosynthesis protein	0.6759825638
+UniRef50_UPI0003B3E9C2: cobalamin biosynthesis protein|unclassified	0.6759825638
+UniRef50_M9S5Y9: Lipoprotein	0.6759613704
+UniRef50_M9S5Y9: Lipoprotein|unclassified	0.6759613704
+UniRef50_A8LQC6: Nitrogen fixation protein fixH	0.6759573897
+UniRef50_A8LQC6: Nitrogen fixation protein fixH|unclassified	0.6759573897
+UniRef50_M1XIF6	0.6759572385
+UniRef50_M1XIF6|unclassified	0.6759572385
+UniRef50_S9TDP6: Proteophosphoglycan ppg3	0.6758908557
+UniRef50_S9TDP6: Proteophosphoglycan ppg3|unclassified	0.6758908557
+UniRef50_A4SUH6: Acr1 protein	0.6756463058
+UniRef50_A4SUH6: Acr1 protein|unclassified	0.6756463058
+UniRef50_C3PM25: Oxygen-dependent coproporphyrinogen-III oxidase	0.6756418883
+UniRef50_C3PM25: Oxygen-dependent coproporphyrinogen-III oxidase|unclassified	0.6756418883
+UniRef50_Q7MU65: Lipoprotein-releasing system ATP-binding protein LolD	0.6755912858
+UniRef50_Q7MU65: Lipoprotein-releasing system ATP-binding protein LolD|unclassified	0.6755912858
+UniRef50_UPI0004413371: ribosomal protein S12	0.6754571608
+UniRef50_UPI0004413371: ribosomal protein S12|unclassified	0.6754571608
+UniRef50_UPI00047546FF: transposase	0.6753976750
+UniRef50_UPI00047546FF: transposase|unclassified	0.6753976750
+UniRef50_N4DU27: ROK family protein	0.6752411026
+UniRef50_N4DU27: ROK family protein|unclassified	0.6752411026
+UniRef50_B2TPE7: Cobyric acid synthase	0.6752194463
+UniRef50_B2TPE7: Cobyric acid synthase|g__Clostridium.s__Clostridium_beijerinckii	0.6752194463
+UniRef50_D7FE80: Sialic acid-binding adhesin SabA	0.6752194463
+UniRef50_D7FE80: Sialic acid-binding adhesin SabA|g__Helicobacter.s__Helicobacter_pylori	0.6752194463
+UniRef50_M9VC77: Methylmalonyl-CoA mutase, small subunit	0.6752194463
+UniRef50_M9VC77: Methylmalonyl-CoA mutase, small subunit|g__Propionibacterium.s__Propionibacterium_acnes	0.6752194463
+UniRef50_UPI00046702C2: hypothetical protein	0.6751669556
+UniRef50_UPI00046702C2: hypothetical protein|unclassified	0.6751669556
+UniRef50_C4GH96	0.6750489590
+UniRef50_C4GH96|unclassified	0.6750489590
+UniRef50_C2QZV9	0.6750204802
+UniRef50_C2QZV9|unclassified	0.6750204802
+UniRef50_UPI0003675D9F: hypothetical protein	0.6750126603
+UniRef50_UPI0003675D9F: hypothetical protein|unclassified	0.6750126603
+UniRef50_Q1GFG6	0.6749422572
+UniRef50_Q1GFG6|unclassified	0.6749422572
+UniRef50_UPI00029B0059: Tetrapyrrole (Corrin-Porphyrin) methylase family protein	0.6748181018
+UniRef50_UPI00029B0059: Tetrapyrrole (Corrin-Porphyrin) methylase family protein|unclassified	0.6748181018
+UniRef50_W8T781: Enterobactin synthase	0.6748146151
+UniRef50_W8T781: Enterobactin synthase|unclassified	0.6748146151
+UniRef50_W7VMR8	0.6747851124
+UniRef50_W7VMR8|unclassified	0.6747851124
+UniRef50_UPI000377BD80: hypothetical protein	0.6746575211
+UniRef50_UPI000377BD80: hypothetical protein|unclassified	0.6746575211
+UniRef50_Q54VU7: Methionine aminopeptidase 1D, mitochondrial	0.6745901769
+UniRef50_Q54VU7: Methionine aminopeptidase 1D, mitochondrial|unclassified	0.6745901769
+UniRef50_UPI0001BF6FB5: hypothetical protein SMAC_10438, partial	0.6745643138
+UniRef50_UPI0001BF6FB5: hypothetical protein SMAC_10438, partial|unclassified	0.6745643138
+UniRef50_UPI00030E7C94: 2-hydroxychromene-2-carboxylate isomerase	0.6744729172
+UniRef50_UPI00030E7C94: 2-hydroxychromene-2-carboxylate isomerase|unclassified	0.6744729172
+UniRef50_C3K653	0.6744647958
+UniRef50_C3K653|unclassified	0.6744647958
+UniRef50_A0A028EAF6	0.6742307469
+UniRef50_A0A028EAF6|unclassified	0.6742307469
+UniRef50_D6M4Q7	0.6741825774
+UniRef50_D6M4Q7|unclassified	0.6741825774
+UniRef50_UPI00047AC149: hypothetical protein	0.6741531940
+UniRef50_UPI00047AC149: hypothetical protein|unclassified	0.6741531940
+UniRef50_F5ZCF3	0.6741051945
+UniRef50_F5ZCF3|unclassified	0.6741051945
+UniRef50_Y1HAN5	0.6739490376
+UniRef50_Y1HAN5|unclassified	0.6739490376
+UniRef50_F0Y8H7	0.6739214829
+UniRef50_F0Y8H7|unclassified	0.6739214829
+UniRef50_UPI000377710D: hypothetical protein, partial	0.6739023187
+UniRef50_UPI000377710D: hypothetical protein, partial|unclassified	0.6739023187
+UniRef50_W7Q7T2	0.6738909079
+UniRef50_W7Q7T2|unclassified	0.6738909079
+UniRef50_UPI00035123E6	0.6738560908
+UniRef50_UPI00035123E6|unclassified	0.6738560908
+UniRef50_A0A024BZJ6: Peptide ABC transporter ATP-binding protein	0.6738544474
+UniRef50_A0A024BZJ6: Peptide ABC transporter ATP-binding protein|g__Helicobacter.s__Helicobacter_pylori	0.6738544474
+UniRef50_UPI00046E73FF: MULTISPECIES: hypothetical protein	0.6738027276
+UniRef50_UPI00046E73FF: MULTISPECIES: hypothetical protein|unclassified	0.6738027276
+UniRef50_UPI00047EEA8D: hypothetical protein	0.6737981089
+UniRef50_UPI00047EEA8D: hypothetical protein|unclassified	0.6737981089
+UniRef50_G3MZ70	0.6737841243
+UniRef50_G3MZ70|unclassified	0.6737841243
+UniRef50_UPI00041C17BE: hypothetical protein	0.6737071839
+UniRef50_UPI00041C17BE: hypothetical protein|unclassified	0.6737071839
+UniRef50_V5PWJ7	0.6736221777
+UniRef50_V5PWJ7|unclassified	0.6736221777
+UniRef50_UPI00038013D7: hypothetical protein	0.6735504371
+UniRef50_UPI00038013D7: hypothetical protein|unclassified	0.6735504371
+UniRef50_N5V684	0.6734185847
+UniRef50_N5V684|unclassified	0.6734185847
+UniRef50_Q3JPV0	0.6733867261
+UniRef50_Q3JPV0|unclassified	0.6733867261
+UniRef50_F7W2K6: WGS project CABT00000000 data, contig 2.22	0.6733339391
+UniRef50_F7W2K6: WGS project CABT00000000 data, contig 2.22|unclassified	0.6733339391
+UniRef50_I0TID1: Heme sensor protein HssS domain protein	0.6732740000
+UniRef50_I0TID1: Heme sensor protein HssS domain protein|unclassified	0.6732740000
+UniRef50_I0HUK7: Aerobic magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase	0.6730247796
+UniRef50_I0HUK7: Aerobic magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase|unclassified	0.6730247796
+UniRef50_UPI0003481903: hypothetical protein	0.6730084737
+UniRef50_UPI0003481903: hypothetical protein|unclassified	0.6730084737
+UniRef50_Q3JJ54	0.6729845163
+UniRef50_Q3JJ54|unclassified	0.6729845163
+UniRef50_F2A4R4	0.6729488368
+UniRef50_F2A4R4|unclassified	0.6729488368
+UniRef50_UPI000469AB99: MFS transporter	0.6729410663
+UniRef50_UPI000469AB99: MFS transporter|unclassified	0.6729410663
+UniRef50_L0DQR3	0.6729148809
+UniRef50_L0DQR3|unclassified	0.6729148809
+UniRef50_Q7P1W4	0.6725680360
+UniRef50_Q7P1W4|unclassified	0.6725680360
+UniRef50_F8JNU6	0.6725167203
+UniRef50_F8JNU6|unclassified	0.6725167203
+UniRef50_H2GZD2: Ascorbate-specific PTS system enzyme IIC	0.6724949563
+UniRef50_H2GZD2: Ascorbate-specific PTS system enzyme IIC|g__Propionibacterium.s__Propionibacterium_acnes	0.6724949563
+UniRef50_Q8RGJ4: Aspartate--tRNA ligase	0.6724949563
+UniRef50_Q8RGJ4: Aspartate--tRNA ligase|g__Deinococcus.s__Deinococcus_radiodurans	0.6724949563
+UniRef50_R6CPB8: Methionine--tRNA ligase	0.6724949563
+UniRef50_R6CPB8: Methionine--tRNA ligase|g__Clostridium.s__Clostridium_beijerinckii	0.6724949563
+UniRef50_S4P0W1: Signal transducing adaptor molecule (Fragment)	0.6724094251
+UniRef50_S4P0W1: Signal transducing adaptor molecule (Fragment)|unclassified	0.6724094251
+UniRef50_Q47300: The first start codon in ORF3 is located at position 703.; TTG start codon	0.6723940970
+UniRef50_Q47300: The first start codon in ORF3 is located at position 703.; TTG start codon|unclassified	0.6723940970
+UniRef50_UPI0004548170: PREDICTED: methionine synthase-like, partial	0.6723908696
+UniRef50_UPI0004548170: PREDICTED: methionine synthase-like, partial|unclassified	0.6723908696
+UniRef50_K8CT80: Protein sprT	0.6723087865
+UniRef50_K8CT80: Protein sprT|unclassified	0.6723087865
+UniRef50_W1LEB3	0.6722713857
+UniRef50_W1LEB3|unclassified	0.6722713857
+UniRef50_W8TSB0	0.6721213952
+UniRef50_W8TSB0|unclassified	0.6721213952
+UniRef50_UPI0001DEA90D: PREDICTED: hypothetical protein LOC100479574	0.6720959960
+UniRef50_UPI0001DEA90D: PREDICTED: hypothetical protein LOC100479574|unclassified	0.6720959960
+UniRef50_UPI0003B7334D: 2-alkenal reductase	0.6720726397
+UniRef50_UPI0003B7334D: 2-alkenal reductase|unclassified	0.6720726397
+UniRef50_UPI0003685199: hypothetical protein	0.6720692445
+UniRef50_UPI0003685199: hypothetical protein|unclassified	0.6720692445
+UniRef50_Q1QLB8: 3-dehydroquinate dehydratase	0.6720127027
+UniRef50_Q1QLB8: 3-dehydroquinate dehydratase|unclassified	0.6720127027
+UniRef50_O00217: NADH dehydrogenase [ubiquinone] iron-sulfur protein 8, mitochondrial	0.6719868730
+UniRef50_O00217: NADH dehydrogenase [ubiquinone] iron-sulfur protein 8, mitochondrial|unclassified	0.6719868730
+UniRef50_UPI0003620A0A: hypothetical protein	0.6719151104
+UniRef50_UPI0003620A0A: hypothetical protein|unclassified	0.6719151104
+UniRef50_K1SSY6: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA	0.6718818055
+UniRef50_K1SSY6: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA|unclassified	0.6718818055
+UniRef50_UPI000476EAF9: ABC transporter permease	0.6718736764
+UniRef50_UPI000476EAF9: ABC transporter permease|unclassified	0.6718736764
+UniRef50_D7BEI3: Competence protein PilW	0.6717735692
+UniRef50_D7BEI3: Competence protein PilW|unclassified	0.6717735692
+UniRef50_UPI000373178B: hypothetical protein	0.6716766435
+UniRef50_UPI000373178B: hypothetical protein|unclassified	0.6716766435
+UniRef50_A0A023RS80: Peptidase	0.6715916723
+UniRef50_A0A023RS80: Peptidase|g__Acinetobacter.s__Acinetobacter_baumannii	0.6715916723
+UniRef50_UPI0002DBC333: hypothetical protein	0.6713594502
+UniRef50_UPI0002DBC333: hypothetical protein|unclassified	0.6713594502
+UniRef50_E6PJS8	0.6713306027
+UniRef50_E6PJS8|unclassified	0.6713306027
+UniRef50_UPI00045E3138: PREDICTED: anther-specific protein SF18-like	0.6712281536
+UniRef50_UPI00045E3138: PREDICTED: anther-specific protein SF18-like|unclassified	0.6712281536
+UniRef50_F9P4K2: Putative IS1167, transposase	0.6712228232
+UniRef50_F9P4K2: Putative IS1167, transposase|unclassified	0.6712228232
+UniRef50_V6URU2	0.6711921851
+UniRef50_V6URU2|unclassified	0.6711921851
+UniRef50_E7TFF2	0.6711485209
+UniRef50_E7TFF2|unclassified	0.6711485209
+UniRef50_UPI0003630547: hypothetical protein	0.6711412253
+UniRef50_UPI0003630547: hypothetical protein|unclassified	0.6711412253
+UniRef50_M7ZT10	0.6711409396
+UniRef50_M7ZT10|unclassified	0.6711409396
+UniRef50_V4JMQ3	0.6710915664
+UniRef50_V4JMQ3|unclassified	0.6710915664
+UniRef50_Q3JI08	0.6710864669
+UniRef50_Q3JI08|unclassified	0.6710864669
+UniRef50_T5RUV2	0.6710124616
+UniRef50_T5RUV2|unclassified	0.6710124616
+UniRef50_UPI0002889FBD: ArsR family transcriptional regulator	0.6709751623
+UniRef50_UPI0002889FBD: ArsR family transcriptional regulator|unclassified	0.6709751623
+UniRef50_A9N9B5	0.6709593165
+UniRef50_A9N9B5|unclassified	0.6709593165
+UniRef50_F3GQ65: Binding-protein dependent transport system inner membrane protein (Fragment)	0.6708377188
+UniRef50_F3GQ65: Binding-protein dependent transport system inner membrane protein (Fragment)|unclassified	0.6708377188
+UniRef50_Q7NS59: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	0.6707926059
+UniRef50_Q7NS59: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.6707926059
+UniRef50_UPI000377B26B: HNH endonuclease	0.6707286820
+UniRef50_UPI000377B26B: HNH endonuclease|unclassified	0.6707286820
+UniRef50_F6B2B5: Tail E family protein	0.6706826249
+UniRef50_F6B2B5: Tail E family protein|unclassified	0.6706826249
+UniRef50_R7GYN4	0.6706240354
+UniRef50_R7GYN4|unclassified	0.6706240354
+UniRef50_UPI0003674EE1: hypothetical protein	0.6706055934
+UniRef50_UPI0003674EE1: hypothetical protein|unclassified	0.6706055934
+UniRef50_UPI000371B1FC: hypothetical protein, partial	0.6705535411
+UniRef50_UPI000371B1FC: hypothetical protein, partial|unclassified	0.6705535411
+UniRef50_A9ALI4: ABC transporter related	0.6703924720
+UniRef50_A9ALI4: ABC transporter related|unclassified	0.6703924720
+UniRef50_UPI00047013D3: membrane protein, partial	0.6702628401
+UniRef50_UPI00047013D3: membrane protein, partial|unclassified	0.6702628401
+UniRef50_B4RRC4	0.6702412869
+UniRef50_B4RRC4|g__Neisseria.s__Neisseria_meningitidis	0.6702412869
+UniRef50_D8JHI1: Response regulator	0.6702412869
+UniRef50_D8JHI1: Response regulator|g__Acinetobacter.s__Acinetobacter_baumannii	0.6702412869
+UniRef50_UPI0004723DA0: DNA-binding protein	0.6702304718
+UniRef50_UPI0004723DA0: DNA-binding protein|unclassified	0.6702304718
+UniRef50_D9UMX5	0.6701915675
+UniRef50_D9UMX5|unclassified	0.6701915675
+UniRef50_UPI000464B4E9: hypothetical protein	0.6700530375
+UniRef50_UPI000464B4E9: hypothetical protein|unclassified	0.6700530375
+UniRef50_UPI000225FBCC: resolvase domain-containing protein	0.6700072514
+UniRef50_UPI000225FBCC: resolvase domain-containing protein|unclassified	0.6700072514
+UniRef50_B4F0K5: Phage tail protein X	0.6699509243
+UniRef50_B4F0K5: Phage tail protein X|unclassified	0.6699509243
+UniRef50_O55724	0.6698999727
+UniRef50_O55724|unclassified	0.6698999727
+UniRef50_A8AW44	0.6698396244
+UniRef50_A8AW44|unclassified	0.6698396244
+UniRef50_V8NCT8: Cyclic nucleotide-gated cation channel beta-1 (Fragment)	0.6698284052
+UniRef50_V8NCT8: Cyclic nucleotide-gated cation channel beta-1 (Fragment)|unclassified	0.6698284052
+UniRef50_UPI0004622CC9: hypothetical protein TRAVEDRAFT_74361	0.6698064521
+UniRef50_UPI0004622CC9: hypothetical protein TRAVEDRAFT_74361|unclassified	0.6698064521
+UniRef50_B0VKD0	0.6697923644
+UniRef50_B0VKD0|g__Acinetobacter.s__Acinetobacter_baumannii	0.6697923644
+UniRef50_H7CWQ5: ABC transporter, permease/ATP-binding protein	0.6697923644
+UniRef50_H7CWQ5: ABC transporter, permease/ATP-binding protein|g__Clostridium.s__Clostridium_beijerinckii	0.6697923644
+UniRef50_UPI0003631CFB: hypothetical protein	0.6697754892
+UniRef50_UPI0003631CFB: hypothetical protein|unclassified	0.6697754892
+UniRef50_UPI00046F0B88: MFS transporter	0.6697351798
+UniRef50_UPI00046F0B88: MFS transporter|unclassified	0.6697351798
+UniRef50_UPI000237EED8: CP4-like integrase	0.6696298392
+UniRef50_UPI000237EED8: CP4-like integrase|unclassified	0.6696298392
+UniRef50_W1MW06	0.6696289376
+UniRef50_W1MW06|unclassified	0.6696289376
+UniRef50_R4NVC2: Substrate-specific component CbrT of predicted cobalamin ECF transporter	0.6695800752
+UniRef50_R4NVC2: Substrate-specific component CbrT of predicted cobalamin ECF transporter|unclassified	0.6695800752
+UniRef50_UPI00036F3EF0: hypothetical protein	0.6695556902
+UniRef50_UPI00036F3EF0: hypothetical protein|unclassified	0.6695556902
+UniRef50_UPI0004752454: 50S ribosomal protein L18, partial	0.6695398398
+UniRef50_UPI0004752454: 50S ribosomal protein L18, partial|unclassified	0.6695398398
+UniRef50_UPI000466CCAB: hypothetical protein	0.6694555637
+UniRef50_UPI000466CCAB: hypothetical protein|unclassified	0.6694555637
+UniRef50_G9KA88: Myocyte enhancer factor 2D (Fragment)	0.6694403942
+UniRef50_G9KA88: Myocyte enhancer factor 2D (Fragment)|unclassified	0.6694403942
+UniRef50_G8YAV0: Piso0_003726 protein	0.6693522714
+UniRef50_G8YAV0: Piso0_003726 protein|unclassified	0.6693522714
+UniRef50_N9ILP1	0.6693440428
+UniRef50_N9ILP1|g__Acinetobacter.s__Acinetobacter_baumannii	0.6693440428
+UniRef50_UPI00041235F6: lysine transporter LysE	0.6692152839
+UniRef50_UPI00041235F6: lysine transporter LysE|unclassified	0.6692152839
+UniRef50_UPI000383C6A6: PREDICTED: collagen alpha-1(I) chain-like	0.6691348849
+UniRef50_UPI000383C6A6: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.6691348849
+UniRef50_G5LK70: ABC transporter permease protein YbbP	0.6690907320
+UniRef50_G5LK70: ABC transporter permease protein YbbP|unclassified	0.6690907320
+UniRef50_UPI00035DEE56: hypothetical protein	0.6690865351
+UniRef50_UPI00035DEE56: hypothetical protein|unclassified	0.6690865351
+UniRef50_D6PE25	0.6690203383
+UniRef50_D6PE25|unclassified	0.6690203383
+UniRef50_UPI0004725AED: hypothetical protein	0.6690171918
+UniRef50_UPI0004725AED: hypothetical protein|unclassified	0.6690171918
+UniRef50_A0A024YVE8: Membrane protein	0.6689444307
+UniRef50_A0A024YVE8: Membrane protein|unclassified	0.6689444307
+UniRef50_UPI0003EF34D2: hypothetical protein	0.6688979783
+UniRef50_UPI0003EF34D2: hypothetical protein|unclassified	0.6688979783
+UniRef50_UPI0001BF6B4F: hypothetical protein SMAC_10997	0.6687779527
+UniRef50_UPI0001BF6B4F: hypothetical protein SMAC_10997|unclassified	0.6687779527
+UniRef50_I6CW03: Membrane-bound lytic murein transglycosylase B domain protein	0.6687228811
+UniRef50_I6CW03: Membrane-bound lytic murein transglycosylase B domain protein|unclassified	0.6687228811
+UniRef50_UPI000465432F: hypothetical protein	0.6686462949
+UniRef50_UPI000465432F: hypothetical protein|unclassified	0.6686462949
+UniRef50_UPI00046EF35F: hypothetical protein, partial	0.6685222130
+UniRef50_UPI00046EF35F: hypothetical protein, partial|unclassified	0.6685222130
+UniRef50_UPI000289460A: xanthine permease	0.6685195993
+UniRef50_UPI000289460A: xanthine permease|unclassified	0.6685195993
+UniRef50_Q2GCS7: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.6682761698
+UniRef50_Q2GCS7: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.6682761698
+UniRef50_UPI00037DE01D: hypothetical protein	0.6682716417
+UniRef50_UPI00037DE01D: hypothetical protein|unclassified	0.6682716417
+UniRef50_UPI0003123919: hypothetical protein	0.6680869110
+UniRef50_UPI0003123919: hypothetical protein|unclassified	0.6680869110
+UniRef50_A4N0N9: Cytochrome C-like protein	0.6680726476
+UniRef50_A4N0N9: Cytochrome C-like protein|unclassified	0.6680726476
+UniRef50_UPI00037AD157: hypothetical protein	0.6680607503
+UniRef50_UPI00037AD157: hypothetical protein|unclassified	0.6680607503
+UniRef50_UPI00042B8AB1: NOD26-like intrinsic protein 1,2 isoform 1	0.6680509993
+UniRef50_UPI00042B8AB1: NOD26-like intrinsic protein 1,2 isoform 1|unclassified	0.6680509993
+UniRef50_X0VNV1: Marine sediment metagenome DNA, contig: S01H1_S24761 (Fragment)	0.6680346215
+UniRef50_X0VNV1: Marine sediment metagenome DNA, contig: S01H1_S24761 (Fragment)|unclassified	0.6680346215
+UniRef50_Q9RSR5: Glycine--tRNA ligase	0.6680026720
+UniRef50_Q9RSR5: Glycine--tRNA ligase|g__Deinococcus.s__Deinococcus_radiodurans	0.6680026720
+UniRef50_A0A008Q9S3	0.6679998237
+UniRef50_A0A008Q9S3|unclassified	0.6679998237
+UniRef50_UPI00046E93B5: MFS transporter	0.6679167105
+UniRef50_UPI00046E93B5: MFS transporter|unclassified	0.6679167105
+UniRef50_UPI00028A09B0: integrase catalytic subunit	0.6679068676
+UniRef50_UPI00028A09B0: integrase catalytic subunit|unclassified	0.6679068676
+UniRef50_UPI0002FEF2A0: hypothetical protein	0.6678804032
+UniRef50_UPI0002FEF2A0: hypothetical protein|unclassified	0.6678804032
+UniRef50_X2JX94: Not yet annotated	0.6678500823
+UniRef50_X2JX94: Not yet annotated|unclassified	0.6678500823
+UniRef50_UPI00040CCFDE: Fur family transcriptional regulator	0.6678462079
+UniRef50_UPI00040CCFDE: Fur family transcriptional regulator|unclassified	0.6678462079
+UniRef50_UPI0002490915: acetyltransferase	0.6678193110
+UniRef50_UPI0002490915: acetyltransferase|unclassified	0.6678193110
+UniRef50_UPI0004037CDC: hypothetical protein	0.6676924253
+UniRef50_UPI0004037CDC: hypothetical protein|unclassified	0.6676924253
+UniRef50_UPI000289BAFB: deoxyguanosinetriphosphate triphosphohydrolase	0.6676401621
+UniRef50_UPI000289BAFB: deoxyguanosinetriphosphate triphosphohydrolase|unclassified	0.6676401621
+UniRef50_A9GPH2: Serine hydroxymethyltransferase	0.6674411623
+UniRef50_A9GPH2: Serine hydroxymethyltransferase|unclassified	0.6674411623
+UniRef50_UPI000468C531: hypothetical protein, partial	0.6674062730
+UniRef50_UPI000468C531: hypothetical protein, partial|unclassified	0.6674062730
+UniRef50_G6CLE8	0.6673917605
+UniRef50_G6CLE8|unclassified	0.6673917605
+UniRef50_UPI00046FEBD8: hypothetical protein	0.6672399301
+UniRef50_UPI00046FEBD8: hypothetical protein|unclassified	0.6672399301
+UniRef50_UPI000470F2CE: hypothetical protein	0.6672373046
+UniRef50_UPI000470F2CE: hypothetical protein|unclassified	0.6672373046
+UniRef50_UPI000316EA7B: 50S ribosomal protein L20	0.6671961876
+UniRef50_UPI000316EA7B: 50S ribosomal protein L20|unclassified	0.6671961876
+UniRef50_V6QD47	0.6671952786
+UniRef50_V6QD47|unclassified	0.6671952786
+UniRef50_F8DHF8: Type VII secretion protein, YukD family	0.6671759620
+UniRef50_F8DHF8: Type VII secretion protein, YukD family|unclassified	0.6671759620
+UniRef50_UPI0004669627: hypothetical protein	0.6671240371
+UniRef50_UPI0004669627: hypothetical protein|unclassified	0.6671240371
+UniRef50_UPI0004626EB5: hypothetical protein, partial	0.6670248951
+UniRef50_UPI0004626EB5: hypothetical protein, partial|unclassified	0.6670248951
+UniRef50_C6SMY2	0.6669547341
+UniRef50_C6SMY2|unclassified	0.6669547341
+UniRef50_UPI000471C83C: hypothetical protein, partial	0.6668884907
+UniRef50_UPI000471C83C: hypothetical protein, partial|unclassified	0.6668884907
+UniRef50_D5ZZ05	0.6668849853
+UniRef50_D5ZZ05|unclassified	0.6668849853
+UniRef50_A0A009DJS4	0.6668773680
+UniRef50_A0A009DJS4|unclassified	0.6668773680
+UniRef50_M4IK32: Nitrate reductase cytochrome c-type subunit	0.6668019318
+UniRef50_M4IK32: Nitrate reductase cytochrome c-type subunit|unclassified	0.6668019318
+UniRef50_UPI000369EA6C: hypothetical protein	0.6666275588
+UniRef50_UPI000369EA6C: hypothetical protein|unclassified	0.6666275588
+UniRef50_UPI000467D001: hypothetical protein	0.6665598856
+UniRef50_UPI000467D001: hypothetical protein|unclassified	0.6665598856
+UniRef50_UPI00042AB16A: PREDICTED: basic salivary proline-rich protein 1-like	0.6664947497
+UniRef50_UPI00042AB16A: PREDICTED: basic salivary proline-rich protein 1-like|unclassified	0.6664947497
+UniRef50_I0SKU1	0.6664155983
+UniRef50_I0SKU1|unclassified	0.6664155983
+UniRef50_UPI00036004D8: hypothetical protein	0.6663237990
+UniRef50_UPI00036004D8: hypothetical protein|unclassified	0.6663237990
+UniRef50_Q8YM92: Spermidine/putrescine import ATP-binding protein PotA	0.6662520601
+UniRef50_Q8YM92: Spermidine/putrescine import ATP-binding protein PotA|unclassified	0.6662520601
+UniRef50_O53182: 2-oxoglutarate oxidoreductase subunit KorA	0.6662225183
+UniRef50_O53182: 2-oxoglutarate oxidoreductase subunit KorA|g__Propionibacterium.s__Propionibacterium_acnes	0.6662225183
+UniRef50_UPI00046F5931: potassium transporter	0.6661135669
+UniRef50_UPI00046F5931: potassium transporter|unclassified	0.6661135669
+UniRef50_A0A034TM95: RNA signal recognition particle 4.5S RNA	0.6661081239
+UniRef50_A0A034TM95: RNA signal recognition particle 4.5S RNA|unclassified	0.6661081239
+UniRef50_Q5Z5B4	0.6660518600
+UniRef50_Q5Z5B4|unclassified	0.6660518600
+UniRef50_UPI0003725615: hypothetical protein	0.6659682563
+UniRef50_UPI0003725615: hypothetical protein|unclassified	0.6659682563
+UniRef50_Q9RZH7	0.6658953001
+UniRef50_Q9RZH7|unclassified	0.6658953001
+UniRef50_Q28JJ3: Flagellar protein FlaF putative	0.6658725301
+UniRef50_Q28JJ3: Flagellar protein FlaF putative|unclassified	0.6658725301
+UniRef50_M4X4D0: ATP-dependent RNA helicase RhlE	0.6657789614
+UniRef50_M4X4D0: ATP-dependent RNA helicase RhlE|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6657789614
+UniRef50_UPI0002EB7833: hypothetical protein	0.6657720091
+UniRef50_UPI0002EB7833: hypothetical protein|unclassified	0.6657720091
+UniRef50_UPI0002377A5A: flagellar basal body P-ring protein, partial	0.6657234704
+UniRef50_UPI0002377A5A: flagellar basal body P-ring protein, partial|unclassified	0.6657234704
+UniRef50_UPI00047137A9: coproporphyrinogen III oxidase	0.6655240658
+UniRef50_UPI00047137A9: coproporphyrinogen III oxidase|unclassified	0.6655240658
+UniRef50_UPI0003B5A625: TetR family transcriptional regulator	0.6654805568
+UniRef50_UPI0003B5A625: TetR family transcriptional regulator|unclassified	0.6654805568
+UniRef50_P34842: Cytochrome c oxidase subunit 3	0.6654707673
+UniRef50_P34842: Cytochrome c oxidase subunit 3|unclassified	0.6654707673
+UniRef50_M0X8Z7	0.6654295432
+UniRef50_M0X8Z7|unclassified	0.6654295432
+UniRef50_K0HR37: FGGY-family pentulose kinase	0.6653359947
+UniRef50_K0HR37: FGGY-family pentulose kinase|g__Propionibacterium.s__Propionibacterium_acnes	0.6653359947
+UniRef50_R4ZX20	0.6653359947
+UniRef50_R4ZX20|g__Streptococcus.s__Streptococcus_agalactiae	0.6653359947
+UniRef50_UPI0004157C13: hypothetical protein	0.6652496885
+UniRef50_UPI0004157C13: hypothetical protein|unclassified	0.6652496885
+UniRef50_Q1GCI5	0.6651893391
+UniRef50_Q1GCI5|unclassified	0.6651893391
+UniRef50_A8J5U5: Predicted protein	0.6650462179
+UniRef50_A8J5U5: Predicted protein|unclassified	0.6650462179
+UniRef50_B7KV96	0.6649107825
+UniRef50_B7KV96|unclassified	0.6649107825
+UniRef50_I4P0M5: Tail fiber protein	0.6648936170
+UniRef50_I4P0M5: Tail fiber protein|g__Escherichia.s__Escherichia_coli	0.6648936170
+UniRef50_UPI0002F99873: hypothetical protein	0.6648191199
+UniRef50_UPI0002F99873: hypothetical protein|unclassified	0.6648191199
+UniRef50_B9JV51: Ribosomal RNA small subunit methyltransferase G	0.6647549150
+UniRef50_B9JV51: Ribosomal RNA small subunit methyltransferase G|unclassified	0.6647549150
+UniRef50_UPI00035E72A3: hypothetical protein	0.6647485182
+UniRef50_UPI00035E72A3: hypothetical protein|unclassified	0.6647485182
+UniRef50_UPI0003B6E58E: hypothetical protein	0.6647458986
+UniRef50_UPI0003B6E58E: hypothetical protein|unclassified	0.6647458986
+UniRef50_UPI000470BE09: hypothetical protein	0.6645795609
+UniRef50_UPI000470BE09: hypothetical protein|unclassified	0.6645795609
+UniRef50_C6W622	0.6645609990
+UniRef50_C6W622|unclassified	0.6645609990
+UniRef50_Q3JVA4	0.6644518272
+UniRef50_Q3JVA4|unclassified	0.6644518272
+UniRef50_Q88MJ8: Major tail protein, putative	0.6644133510
+UniRef50_Q88MJ8: Major tail protein, putative|unclassified	0.6644133510
+UniRef50_Q3Y3T4: Transposase	0.6642330146
+UniRef50_Q3Y3T4: Transposase|unclassified	0.6642330146
+UniRef50_UPI000379288E: hypothetical protein	0.6642286468
+UniRef50_UPI000379288E: hypothetical protein|unclassified	0.6642286468
+UniRef50_A7ZT99	0.6641238233
+UniRef50_A7ZT99|unclassified	0.6641238233
+UniRef50_E3GXZ1	0.6639931190
+UniRef50_E3GXZ1|unclassified	0.6639931190
+UniRef50_F3KRZ8	0.6639801293
+UniRef50_F3KRZ8|unclassified	0.6639801293
+UniRef50_P29933: Aerobic cobaltochelatase subunit CobS	0.6638161190
+UniRef50_P29933: Aerobic cobaltochelatase subunit CobS|unclassified	0.6638161190
+UniRef50_O84867: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	0.6636346974
+UniRef50_O84867: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.6636346974
+UniRef50_UPI0003EF847F: GDP-L-fucose synthase, partial	0.6636041133
+UniRef50_UPI0003EF847F: GDP-L-fucose synthase, partial|unclassified	0.6636041133
+UniRef50_UPI000262CE64: deoxyguanosinetriphosphate triphosphohydrolase-like protein	0.6635863770
+UniRef50_UPI000262CE64: deoxyguanosinetriphosphate triphosphohydrolase-like protein|unclassified	0.6635863770
+UniRef50_A0A026J169	0.6634739748
+UniRef50_A0A026J169|unclassified	0.6634739748
+UniRef50_L3I3P1: Arabinose-proton symporter	0.6634459622
+UniRef50_L3I3P1: Arabinose-proton symporter|unclassified	0.6634459622
+UniRef50_I6X8A0: Protein ygiW	0.6634131908
+UniRef50_I6X8A0: Protein ygiW|unclassified	0.6634131908
+UniRef50_G0HGQ4	0.6633562309
+UniRef50_G0HGQ4|unclassified	0.6633562309
+UniRef50_X0X5C1: Marine sediment metagenome DNA, contig: S01H1_S33842 (Fragment)	0.6633238134
+UniRef50_X0X5C1: Marine sediment metagenome DNA, contig: S01H1_S33842 (Fragment)|unclassified	0.6633238134
+UniRef50_W1DGN0: HflK protein	0.6632253489
+UniRef50_W1DGN0: HflK protein|unclassified	0.6632253489
+UniRef50_A0A019CND4	0.6632143288
+UniRef50_A0A019CND4|unclassified	0.6632143288
+UniRef50_C1MJB1: Predicted protein	0.6631573610
+UniRef50_C1MJB1: Predicted protein|unclassified	0.6631573610
+UniRef50_D7FCY4	0.6631299735
+UniRef50_D7FCY4|g__Helicobacter.s__Helicobacter_pylori	0.6631299735
+UniRef50_Q9RXH7: Fatty-acid--CoA ligase, putative	0.6631299735
+UniRef50_Q9RXH7: Fatty-acid--CoA ligase, putative|g__Deinococcus.s__Deinococcus_radiodurans	0.6631299735
+UniRef50_S9S8H7: Enoyl-[acyl-carrier-protein] reductase (NADH)	0.6630531220
+UniRef50_S9S8H7: Enoyl-[acyl-carrier-protein] reductase (NADH)|unclassified	0.6630531220
+UniRef50_UPI00046CFD20: hypothetical protein	0.6630244974
+UniRef50_UPI00046CFD20: hypothetical protein|unclassified	0.6630244974
+UniRef50_UPI0003B34E67: ABC transporter	0.6629067131
+UniRef50_UPI0003B34E67: ABC transporter|unclassified	0.6629067131
+UniRef50_P21639: Precorrin-2 C(20)-methyltransferase	0.6628741286
+UniRef50_P21639: Precorrin-2 C(20)-methyltransferase|unclassified	0.6628741286
+UniRef50_V4QYD0: Cytochrome oxidase subunit I	0.6626780835
+UniRef50_V4QYD0: Cytochrome oxidase subunit I|unclassified	0.6626780835
+UniRef50_UPI0004783B1F: flavodoxin	0.6626531150
+UniRef50_UPI0004783B1F: flavodoxin|unclassified	0.6626531150
+UniRef50_UPI00047DFB63: GntR family transcriptional regulator	0.6626113530
+UniRef50_UPI00047DFB63: GntR family transcriptional regulator|unclassified	0.6626113530
+UniRef50_S4AG31	0.6625962053
+UniRef50_S4AG31|unclassified	0.6625962053
+UniRef50_K0RUC2	0.6625129795
+UniRef50_K0RUC2|unclassified	0.6625129795
+UniRef50_W7X0U0	0.6624791192
+UniRef50_W7X0U0|unclassified	0.6624791192
+UniRef50_G4RAB8: Alpha-glucosides-binding periplasmic protein AglE	0.6622821995
+UniRef50_G4RAB8: Alpha-glucosides-binding periplasmic protein AglE|unclassified	0.6622821995
+UniRef50_S7SQK8	0.6622620801
+UniRef50_S7SQK8|unclassified	0.6622620801
+UniRef50_K0SG36	0.6622516556
+UniRef50_K0SG36|unclassified	0.6622516556
+UniRef50_UPI0004197E85: D-3-phosphoglycerate dehydrogenase	0.6622348649
+UniRef50_UPI0004197E85: D-3-phosphoglycerate dehydrogenase|unclassified	0.6622348649
+UniRef50_A0A011PJR0: Aconitate hydratase	0.6622192552
+UniRef50_A0A011PJR0: Aconitate hydratase|unclassified	0.6622192552
+UniRef50_Q0AC99: Urease subunit beta	0.6621559879
+UniRef50_Q0AC99: Urease subunit beta|unclassified	0.6621559879
+UniRef50_UPI00028A32C2: helix-turn-helix domain-containing protein	0.6621215613
+UniRef50_UPI00028A32C2: helix-turn-helix domain-containing protein|unclassified	0.6621215613
+UniRef50_UPI00034CFAFF: hypothetical protein	0.6620422283
+UniRef50_UPI00034CFAFF: hypothetical protein|unclassified	0.6620422283
+UniRef50_I6XQ31: Major ampullate silk protein 1 (Fragment)	0.6620227662
+UniRef50_I6XQ31: Major ampullate silk protein 1 (Fragment)|unclassified	0.6620227662
+UniRef50_B7UVM6	0.6619953333
+UniRef50_B7UVM6|unclassified	0.6619953333
+UniRef50_A0A011Q4R8: L-fuculose phosphate aldolase	0.6618708606
+UniRef50_A0A011Q4R8: L-fuculose phosphate aldolase|unclassified	0.6618708606
+UniRef50_Q5LHZ1: N-acetyl-gamma-glutamyl-phosphate reductase	0.6618491440
+UniRef50_Q5LHZ1: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.6618491440
+UniRef50_UPI0003806313: hypothetical protein	0.6617821235
+UniRef50_UPI0003806313: hypothetical protein|unclassified	0.6617821235
+UniRef50_S9QBA9	0.6617299430
+UniRef50_S9QBA9|unclassified	0.6617299430
+UniRef50_UPI000377F4CB: hypothetical protein	0.6616727012
+UniRef50_UPI000377F4CB: hypothetical protein|unclassified	0.6616727012
+UniRef50_W8UY50	0.6615314726
+UniRef50_W8UY50|unclassified	0.6615314726
+UniRef50_C0W7T5	0.6615076519
+UniRef50_C0W7T5|unclassified	0.6615076519
+UniRef50_UPI00036F7535: DNA methyltransferase	0.6614711561
+UniRef50_UPI00036F7535: DNA methyltransferase|unclassified	0.6614711561
+UniRef50_UPI000476C1DB: hypothetical protein, partial	0.6614040316
+UniRef50_UPI000476C1DB: hypothetical protein, partial|unclassified	0.6614040316
+UniRef50_B2I1K5: Thiol:disulfide interchange protein	0.6613756614
+UniRef50_B2I1K5: Thiol:disulfide interchange protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.6613756614
+UniRef50_UPI00039571EC: PREDICTED: collagen alpha-1(I) chain-like	0.6613756614
+UniRef50_UPI00039571EC: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.6613756614
+UniRef50_W8T9Y7: Amino acid ABC transporter	0.6613319492
+UniRef50_W8T9Y7: Amino acid ABC transporter|unclassified	0.6613319492
+UniRef50_B3GYD9	0.6612604957
+UniRef50_B3GYD9|unclassified	0.6612604957
+UniRef50_D0D8G8: Spermidine/putrescine ABC transporter, periplasmic substrate-binding protein	0.6612291029
+UniRef50_D0D8G8: Spermidine/putrescine ABC transporter, periplasmic substrate-binding protein|unclassified	0.6612291029
+UniRef50_G2KMP2	0.6611739129
+UniRef50_G2KMP2|unclassified	0.6611739129
+UniRef50_K4ANN4	0.6610778073
+UniRef50_K4ANN4|unclassified	0.6610778073
+UniRef50_L8LNQ7	0.6609888667
+UniRef50_L8LNQ7|unclassified	0.6609888667
+UniRef50_Q1ZMG3	0.6609860896
+UniRef50_Q1ZMG3|unclassified	0.6609860896
+UniRef50_UPI0003818863: hypothetical protein	0.6609775315
+UniRef50_UPI0003818863: hypothetical protein|unclassified	0.6609775315
+UniRef50_F0YBF5: Expressed protein (Fragment)	0.6608926113
+UniRef50_F0YBF5: Expressed protein (Fragment)|unclassified	0.6608926113
+UniRef50_B2TH59	0.6607949803
+UniRef50_B2TH59|unclassified	0.6607949803
+UniRef50_UPI000463DC0E: exodeoxyribonuclease III	0.6606985713
+UniRef50_UPI000463DC0E: exodeoxyribonuclease III|unclassified	0.6606985713
+UniRef50_V0WYU3	0.6605670400
+UniRef50_V0WYU3|unclassified	0.6605670400
+UniRef50_A1B1F7	0.6605558473
+UniRef50_A1B1F7|unclassified	0.6605558473
+UniRef50_UPI0003B57AFE: amino acid permease	0.6605512034
+UniRef50_UPI0003B57AFE: amino acid permease|unclassified	0.6605512034
+UniRef50_UPI0003097D8F: hypothetical protein	0.6603067696
+UniRef50_UPI0003097D8F: hypothetical protein|unclassified	0.6603067696
+UniRef50_L3KRL2	0.6602122240
+UniRef50_L3KRL2|unclassified	0.6602122240
+UniRef50_UPI00047AF6C6: GntR family transcriptional regulator	0.6601320924
+UniRef50_UPI00047AF6C6: GntR family transcriptional regulator|unclassified	0.6601320924
+UniRef50_A4WV67: Kinase-like protein	0.6600660066
+UniRef50_A4WV67: Kinase-like protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.6600660066
+UniRef50_P9WHM0: N5-carboxyaminoimidazole ribonucleotide mutase	0.6595014634
+UniRef50_P9WHM0: N5-carboxyaminoimidazole ribonucleotide mutase|unclassified	0.6595014634
+UniRef50_UPI00041E847C: hypothetical protein	0.6594441899
+UniRef50_UPI00041E847C: hypothetical protein|unclassified	0.6594441899
+UniRef50_X8C4L7: Putative mEMBRANE PROTEIN	0.6594177909
+UniRef50_X8C4L7: Putative mEMBRANE PROTEIN|unclassified	0.6594177909
+UniRef50_UPI000363054E: hypothetical protein, partial	0.6593687387
+UniRef50_UPI000363054E: hypothetical protein, partial|unclassified	0.6593687387
+UniRef50_UPI00036A6711: hypothetical protein, partial	0.6593377864
+UniRef50_UPI00036A6711: hypothetical protein, partial|unclassified	0.6593377864
+UniRef50_S9UYF8: Mucin-associated surface protein (MASP)	0.6591957811
+UniRef50_S9UYF8: Mucin-associated surface protein (MASP)|unclassified	0.6591957811
+UniRef50_UPI0002880C2A: histidine kinase	0.6589132939
+UniRef50_UPI0002880C2A: histidine kinase|unclassified	0.6589132939
+UniRef50_UPI000475D60D: 3-methyladenine DNA glycosylase	0.6588169507
+UniRef50_UPI000475D60D: 3-methyladenine DNA glycosylase|unclassified	0.6588169507
+UniRef50_UPI00016C3D30: hypothetical protein	0.6588097409
+UniRef50_UPI00016C3D30: hypothetical protein|unclassified	0.6588097409
+UniRef50_X5EK24: Integral membrane transporter	0.6587615283
+UniRef50_X5EK24: Integral membrane transporter|g__Neisseria.s__Neisseria_meningitidis	0.6587615283
+UniRef50_I1Q3T9	0.6587091152
+UniRef50_I1Q3T9|unclassified	0.6587091152
+UniRef50_A5ISN2	0.6586981768
+UniRef50_A5ISN2|unclassified	0.6586981768
+UniRef50_W0AMV5	0.6586475213
+UniRef50_W0AMV5|unclassified	0.6586475213
+UniRef50_B7H411: MdcR	0.6585357698
+UniRef50_B7H411: MdcR|unclassified	0.6585357698
+UniRef50_UPI0003EF4F5A: phosphonate metabolism protein PhnM, partial	0.6584629647
+UniRef50_UPI0003EF4F5A: phosphonate metabolism protein PhnM, partial|unclassified	0.6584629647
+UniRef50_B9AFH1	0.6584072644
+UniRef50_B9AFH1|unclassified	0.6584072644
+UniRef50_Q2CFD6	0.6583686890
+UniRef50_Q2CFD6|unclassified	0.6583686890
+UniRef50_UPI00037FAA98: hypothetical protein, partial	0.6583428364
+UniRef50_UPI00037FAA98: hypothetical protein, partial|unclassified	0.6583428364
+UniRef50_UPI0002E5A0AA: hypothetical protein	0.6583089732
+UniRef50_UPI0002E5A0AA: hypothetical protein|unclassified	0.6583089732
+UniRef50_N3XMB4: MASE1 family protein	0.6582944669
+UniRef50_N3XMB4: MASE1 family protein|unclassified	0.6582944669
+UniRef50_G8WXU3	0.6582807658
+UniRef50_G8WXU3|unclassified	0.6582807658
+UniRef50_UPI00046767C0: HupU protein	0.6581899010
+UniRef50_UPI00046767C0: HupU protein|unclassified	0.6581899010
+UniRef50_Q3JSX2	0.6580969600
+UniRef50_Q3JSX2|unclassified	0.6580969600
+UniRef50_Z9UWI7	0.6580901601
+UniRef50_Z9UWI7|unclassified	0.6580901601
+UniRef50_UPI00037CF9B5: hypothetical protein	0.6580387273
+UniRef50_UPI00037CF9B5: hypothetical protein|unclassified	0.6580387273
+UniRef50_UPI00036AA061: hypothetical protein	0.6580282691
+UniRef50_UPI00036AA061: hypothetical protein|unclassified	0.6580282691
+UniRef50_X4EBA7: Membrane protein	0.6579690604
+UniRef50_X4EBA7: Membrane protein|unclassified	0.6579690604
+UniRef50_D2G4P9	0.6579021629
+UniRef50_D2G4P9|unclassified	0.6579021629
+UniRef50_C7QFW5: Nucleic acid binding OB-fold tRNA/helicase-type	0.6578947368
+UniRef50_C7QFW5: Nucleic acid binding OB-fold tRNA/helicase-type|g__Propionibacterium.s__Propionibacterium_acnes	0.6578947368
+UniRef50_H0JF93: Lipopeptide LppL	0.6578634529
+UniRef50_H0JF93: Lipopeptide LppL|unclassified	0.6578634529
+UniRef50_UPI0004068DC7: hypothetical protein	0.6576979573
+UniRef50_UPI0004068DC7: hypothetical protein|unclassified	0.6576979573
+UniRef50_N0CE78: Snf2 family protein	0.6575729603
+UniRef50_N0CE78: Snf2 family protein|g__Streptococcus.s__Streptococcus_agalactiae	0.6575729603
+UniRef50_M9R3Y0: TRAP transporter large permease subunit DctM	0.6575612224
+UniRef50_M9R3Y0: TRAP transporter large permease subunit DctM|unclassified	0.6575612224
+UniRef50_A6WEY6: Carbamoyl-phosphate synthase L chain ATP-binding	0.6574621959
+UniRef50_A6WEY6: Carbamoyl-phosphate synthase L chain ATP-binding|g__Propionibacterium.s__Propionibacterium_acnes	0.6574621959
+UniRef50_Q3EWZ9	0.6573149755
+UniRef50_Q3EWZ9|unclassified	0.6573149755
+UniRef50_B1ZTR5: GTP cyclohydrolase FolE2	0.6573071118
+UniRef50_B1ZTR5: GTP cyclohydrolase FolE2|unclassified	0.6573071118
+UniRef50_UPI0003B45E5B: DNA-binding protein	0.6572723802
+UniRef50_UPI0003B45E5B: DNA-binding protein|unclassified	0.6572723802
+UniRef50_UPI00031FD933: hypothetical protein	0.6572634522
+UniRef50_UPI00031FD933: hypothetical protein|unclassified	0.6572634522
+UniRef50_UPI00036F625F: hypothetical protein	0.6570656918
+UniRef50_UPI00036F625F: hypothetical protein|unclassified	0.6570656918
+UniRef50_G7ZMJ9: UPF0223 protein SAMSHR1132_09440	0.6570333155
+UniRef50_G7ZMJ9: UPF0223 protein SAMSHR1132_09440|unclassified	0.6570333155
+UniRef50_M1MHE2: Glycosyl transferase, family 2	0.6570302234
+UniRef50_M1MHE2: Glycosyl transferase, family 2|g__Clostridium.s__Clostridium_beijerinckii	0.6570302234
+UniRef50_Q5HXV5	0.6569949303
+UniRef50_Q5HXV5|unclassified	0.6569949303
+UniRef50_UPI00047054EB: hypothetical protein	0.6569523675
+UniRef50_UPI00047054EB: hypothetical protein|unclassified	0.6569523675
+UniRef50_L0H2C3: Dihem cytochrome c	0.6568702671
+UniRef50_L0H2C3: Dihem cytochrome c|unclassified	0.6568702671
+UniRef50_UPI00046E5D21: glycosyl transferase	0.6568672196
+UniRef50_UPI00046E5D21: glycosyl transferase|unclassified	0.6568672196
+UniRef50_UPI0003642FB6: hypothetical protein	0.6568544622
+UniRef50_UPI0003642FB6: hypothetical protein|unclassified	0.6568544622
+UniRef50_S1T2D6	0.6568340943
+UniRef50_S1T2D6|unclassified	0.6568340943
+UniRef50_L8DT93: Chaperone protein DnaJ	0.6567988329
+UniRef50_L8DT93: Chaperone protein DnaJ|unclassified	0.6567988329
+UniRef50_S5UR98	0.6566551949
+UniRef50_S5UR98|unclassified	0.6566551949
+UniRef50_M0NLF0: Membrane associated protein	0.6566404372
+UniRef50_M0NLF0: Membrane associated protein|unclassified	0.6566404372
+UniRef50_D5WG02: Type VI secretion ATPase, ClpV1 family	0.6565988181
+UniRef50_D5WG02: Type VI secretion ATPase, ClpV1 family|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6565988181
+UniRef50_Q9RXP3	0.6565988181
+UniRef50_Q9RXP3|g__Deinococcus.s__Deinococcus_radiodurans	0.6565988181
+UniRef50_K0RU43	0.6565464711
+UniRef50_K0RU43|unclassified	0.6565464711
+UniRef50_N6ULZ5	0.6565405741
+UniRef50_N6ULZ5|unclassified	0.6565405741
+UniRef50_UPI000371500A: hypothetical protein	0.6565403771
+UniRef50_UPI000371500A: hypothetical protein|unclassified	0.6565403771
+UniRef50_UPI00020D91AD: XRE family transcriptional regulator	0.6565219886
+UniRef50_UPI00020D91AD: XRE family transcriptional regulator|unclassified	0.6565219886
+UniRef50_W4TNZ7: DeoR-family transcriptional regulator	0.6564509616
+UniRef50_W4TNZ7: DeoR-family transcriptional regulator|unclassified	0.6564509616
+UniRef50_UPI0000164CEE: putative transposase	0.6564142809
+UniRef50_UPI0000164CEE: putative transposase|unclassified	0.6564142809
+UniRef50_X2MZQ5: Transcriptional regulator	0.6563146641
+UniRef50_X2MZQ5: Transcriptional regulator|unclassified	0.6563146641
+UniRef50_UPI0004679CCC: 50S ribosomal protein L6, partial	0.6562955361
+UniRef50_UPI0004679CCC: 50S ribosomal protein L6, partial|unclassified	0.6562955361
+UniRef50_Q5NWG5: Isopentenyl-diphosphate Delta-isomerase 2	0.6562839579
+UniRef50_Q5NWG5: Isopentenyl-diphosphate Delta-isomerase 2|unclassified	0.6562839579
+UniRef50_UPI00040DE6DB: TetR family transcriptional regulator	0.6562161558
+UniRef50_UPI00040DE6DB: TetR family transcriptional regulator|unclassified	0.6562161558
+UniRef50_Q2JDG9	0.6561679790
+UniRef50_Q2JDG9|unclassified	0.6561679790
+UniRef50_Q8T018: CG10625, isoform A	0.6561679790
+UniRef50_Q8T018: CG10625, isoform A|unclassified	0.6561679790
+UniRef50_R4XX04: Phage-related protein	0.6561679790
+UniRef50_R4XX04: Phage-related protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.6561679790
+UniRef50_UPI00035965D6: PREDICTED: 5''''-nucleotidase-like	0.6561185618
+UniRef50_UPI00035965D6: PREDICTED: 5''''-nucleotidase-like|unclassified	0.6561185618
+UniRef50_W1EWX3: Co-activator of prophage gene expression IbrA	0.6561083064
+UniRef50_W1EWX3: Co-activator of prophage gene expression IbrA|unclassified	0.6561083064
+UniRef50_C6M6M6	0.6560485207
+UniRef50_C6M6M6|unclassified	0.6560485207
+UniRef50_UPI0003B6E74F: flagellar biosynthesis protein FliR	0.6559633782
+UniRef50_UPI0003B6E74F: flagellar biosynthesis protein FliR|unclassified	0.6559633782
+UniRef50_Q7UFZ6	0.6557640148
+UniRef50_Q7UFZ6|unclassified	0.6557640148
+UniRef50_J9YUC5: Sensor histidine kinase	0.6557377049
+UniRef50_J9YUC5: Sensor histidine kinase|g__Streptococcus.s__Streptococcus_agalactiae	0.6557377049
+UniRef50_R0NY94	0.6556905568
+UniRef50_R0NY94|unclassified	0.6556905568
+UniRef50_Q3JUP4	0.6554435535
+UniRef50_Q3JUP4|unclassified	0.6554435535
+UniRef50_P49938: Iron(3+)-hydroxamate import ATP-binding protein FhuC	0.6554022766
+UniRef50_P49938: Iron(3+)-hydroxamate import ATP-binding protein FhuC|unclassified	0.6554022766
+UniRef50_Q2J2E9: sn-glycerol-3-phosphate import ATP-binding protein UgpC	0.6553245971
+UniRef50_Q2J2E9: sn-glycerol-3-phosphate import ATP-binding protein UgpC|unclassified	0.6553245971
+UniRef50_A0A021TWI7	0.6553149020
+UniRef50_A0A021TWI7|unclassified	0.6553149020
+UniRef50_B5GP71: Alkaline D-peptidase and alkaline D-peptidase fusion	0.6553079948
+UniRef50_B5GP71: Alkaline D-peptidase and alkaline D-peptidase fusion|unclassified	0.6553079948
+UniRef50_G8VAH8: Kinase domain protein	0.6553079948
+UniRef50_G8VAH8: Kinase domain protein|g__Propionibacterium.s__Propionibacterium_acnes	0.6553079948
+UniRef50_I9K9U7	0.6552240307
+UniRef50_I9K9U7|unclassified	0.6552240307
+UniRef50_B2HRE1: Glyoxalase, GloA_3	0.6551855289
+UniRef50_B2HRE1: Glyoxalase, GloA_3|unclassified	0.6551855289
+UniRef50_UPI000375E388: hypothetical protein, partial	0.6551469650
+UniRef50_UPI000375E388: hypothetical protein, partial|unclassified	0.6551469650
+UniRef50_A4WTX6	0.6551327320
+UniRef50_A4WTX6|unclassified	0.6551327320
+UniRef50_UPI00046EC013: recombinase, partial	0.6550970552
+UniRef50_UPI00046EC013: recombinase, partial|unclassified	0.6550970552
+UniRef50_UPI000350B2EA: PREDICTED: basic proline-rich protein-like	0.6550901123
+UniRef50_UPI000350B2EA: PREDICTED: basic proline-rich protein-like|unclassified	0.6550901123
+UniRef50_C9S7B7: Ecm4p	0.6549666256
+UniRef50_C9S7B7: Ecm4p|unclassified	0.6549666256
+UniRef50_UPI000406D49D: hypothetical protein	0.6549344771
+UniRef50_UPI000406D49D: hypothetical protein|unclassified	0.6549344771
+UniRef50_X6CG11	0.6549120200
+UniRef50_X6CG11|unclassified	0.6549120200
+UniRef50_I0W3J8: Transposase, IS4-like family protein	0.6548969564
+UniRef50_I0W3J8: Transposase, IS4-like family protein|unclassified	0.6548969564
+UniRef50_I1D3X1	0.6548788474
+UniRef50_I1D3X1|unclassified	0.6548788474
+UniRef50_K0S8Y4	0.6548788474
+UniRef50_K0S8Y4|unclassified	0.6548788474
+UniRef50_L1INE5	0.6547602262
+UniRef50_L1INE5|unclassified	0.6547602262
+UniRef50_UPI0003691557: hypothetical protein	0.6547571852
+UniRef50_UPI0003691557: hypothetical protein|unclassified	0.6547571852
+UniRef50_UPI00045E7B58: hypothetical protein	0.6545945092
+UniRef50_UPI00045E7B58: hypothetical protein|unclassified	0.6545945092
+UniRef50_UPI000361D7A6: hypothetical protein, partial	0.6545567227
+UniRef50_UPI000361D7A6: hypothetical protein, partial|unclassified	0.6545567227
+UniRef50_A3GTP0	0.6544853037
+UniRef50_A3GTP0|unclassified	0.6544853037
+UniRef50_X1W2P1: Marine sediment metagenome DNA, contig: S12H4_S24269 (Fragment)	0.6544774868
+UniRef50_X1W2P1: Marine sediment metagenome DNA, contig: S12H4_S24269 (Fragment)|unclassified	0.6544774868
+UniRef50_E6JPP5: Sodium:solute symporter family protein	0.6544502618
+UniRef50_E6JPP5: Sodium:solute symporter family protein|g__Staphylococcus.s__Staphylococcus_epidermidis	0.6544502618
+UniRef50_UPI0001BC2B50: GntR family transcriptional regulator	0.6544371739
+UniRef50_UPI0001BC2B50: GntR family transcriptional regulator|unclassified	0.6544371739
+UniRef50_A3K7V6	0.6543164676
+UniRef50_A3K7V6|unclassified	0.6543164676
+UniRef50_UPI000190BCFA: hypothetical protein, partial	0.6540785995
+UniRef50_UPI000190BCFA: hypothetical protein, partial|unclassified	0.6540785995
+UniRef50_UPI00047CD76F: hypothetical protein	0.6540754149
+UniRef50_UPI00047CD76F: hypothetical protein|unclassified	0.6540754149
+UniRef50_R6IJD9	0.6540473971
+UniRef50_R6IJD9|unclassified	0.6540473971
+UniRef50_UPI000379B93E: quinone oxidoreductase	0.6538698117
+UniRef50_UPI000379B93E: quinone oxidoreductase|unclassified	0.6538698117
+UniRef50_L6NQC5	0.6536756060
+UniRef50_L6NQC5|unclassified	0.6536756060
+UniRef50_Q6EU46	0.6536303827
+UniRef50_Q6EU46|unclassified	0.6536303827
+UniRef50_Q8LJZ2	0.6536185114
+UniRef50_Q8LJZ2|unclassified	0.6536185114
+UniRef50_UPI000190AB93: branched-chain amino acid aminotransferase	0.6536032370
+UniRef50_UPI000190AB93: branched-chain amino acid aminotransferase|unclassified	0.6536032370
+UniRef50_A4LFP8	0.6535332661
+UniRef50_A4LFP8|unclassified	0.6535332661
+UniRef50_I3LMH8	0.6535147288
+UniRef50_I3LMH8|unclassified	0.6535147288
+UniRef50_V4R3G1: Mucoidy inhibitor A	0.6533725852
+UniRef50_V4R3G1: Mucoidy inhibitor A|unclassified	0.6533725852
+UniRef50_M1ZLS1	0.6532038637
+UniRef50_M1ZLS1|unclassified	0.6532038637
+UniRef50_J8VYJ4: Transposase IS66	0.6531266578
+UniRef50_J8VYJ4: Transposase IS66|unclassified	0.6531266578
+UniRef50_C7RR03: Transcriptional regulator, MarR family	0.6531251572
+UniRef50_C7RR03: Transcriptional regulator, MarR family|unclassified	0.6531251572
+UniRef50_V9WKG6: Transcriptional regulator, AsnC family	0.6530318202
+UniRef50_V9WKG6: Transcriptional regulator, AsnC family|unclassified	0.6530318202
+UniRef50_UPI0003630B69: primosome assembly protein PriA	0.6528930355
+UniRef50_UPI0003630B69: primosome assembly protein PriA|unclassified	0.6528930355
+UniRef50_X7EL49: Heat shock protein Hsp20	0.6528055741
+UniRef50_X7EL49: Heat shock protein Hsp20|unclassified	0.6528055741
+UniRef50_G7M7E3: Membrane bound O-acyl transferase MBOAT family protein	0.6527415144
+UniRef50_G7M7E3: Membrane bound O-acyl transferase MBOAT family protein|g__Clostridium.s__Clostridium_beijerinckii	0.6527415144
+UniRef50_X7YDZ8: PE family protein	0.6527415144
+UniRef50_X7YDZ8: PE family protein|unclassified	0.6527415144
+UniRef50_Q653R7: BKRF1 encodes EBNA-1 protein-like	0.6526488309
+UniRef50_Q653R7: BKRF1 encodes EBNA-1 protein-like|unclassified	0.6526488309
+UniRef50_UPI000415535D: alpha/beta hydrolase	0.6526400379
+UniRef50_UPI000415535D: alpha/beta hydrolase|unclassified	0.6526400379
+UniRef50_UPI00024870DD: phosphoglyceromutase, partial	0.6525884314
+UniRef50_UPI00024870DD: phosphoglyceromutase, partial|unclassified	0.6525884314
+UniRef50_F7ZHH9	0.6524781024
+UniRef50_F7ZHH9|unclassified	0.6524781024
+UniRef50_UPI00045459EA: PREDICTED: LOW QUALITY PROTEIN: G patch domain and ankyrin repeat-containing protein 1, partial	0.6524765123
+UniRef50_UPI00045459EA: PREDICTED: LOW QUALITY PROTEIN: G patch domain and ankyrin repeat-containing protein 1, partial|unclassified	0.6524765123
+UniRef50_UPI0001470FF7: MULTISPECIES: 50S ribosomal protein L15	0.6523569775
+UniRef50_UPI0001470FF7: MULTISPECIES: 50S ribosomal protein L15|unclassified	0.6523569775
+UniRef50_W7WCQ1	0.6523219399
+UniRef50_W7WCQ1|unclassified	0.6523219399
+UniRef50_C5BHI4: Peptide chain release factor 3	0.6523157208
+UniRef50_C5BHI4: Peptide chain release factor 3|g__Escherichia.s__Escherichia_coli	0.6523157208
+UniRef50_M3AAW3	0.6523155513
+UniRef50_M3AAW3|unclassified	0.6523155513
+UniRef50_UPI0002DC68DF: hypothetical protein	0.6522872789
+UniRef50_UPI0002DC68DF: hypothetical protein|unclassified	0.6522872789
+UniRef50_UPI000372D1EE: cold-shock protein	0.6522290551
+UniRef50_UPI000372D1EE: cold-shock protein|unclassified	0.6522290551
+UniRef50_UPI0001CC0C54: phosphogluconate dehydratase	0.6521552140
+UniRef50_UPI0001CC0C54: phosphogluconate dehydratase|unclassified	0.6521552140
+UniRef50_M2ADJ2	0.6519106253
+UniRef50_M2ADJ2|unclassified	0.6519106253
+UniRef50_Q3J238	0.6518261070
+UniRef50_Q3J238|unclassified	0.6518261070
+UniRef50_UPI00036594E5: hypothetical protein	0.6516339020
+UniRef50_UPI00036594E5: hypothetical protein|unclassified	0.6516339020
+UniRef50_UPI000382A08A: hypothetical protein	0.6515862264
+UniRef50_UPI000382A08A: hypothetical protein|unclassified	0.6515862264
+UniRef50_UPI0004726635: hypothetical protein, partial	0.6515375441
+UniRef50_UPI0004726635: hypothetical protein, partial|unclassified	0.6515375441
+UniRef50_UPI0003AE05F2: PREDICTED: tankyrase-1	0.6515278489
+UniRef50_UPI0003AE05F2: PREDICTED: tankyrase-1|unclassified	0.6515278489
+UniRef50_A0A059LQ22	0.6514220004
+UniRef50_A0A059LQ22|unclassified	0.6514220004
+UniRef50_L1NKA4	0.6512544821
+UniRef50_L1NKA4|unclassified	0.6512544821
+UniRef50_A3W1F9	0.6512298255
+UniRef50_A3W1F9|unclassified	0.6512298255
+UniRef50_V5BS78: Periplasmic dipeptide transport protein DppA	0.6511894820
+UniRef50_V5BS78: Periplasmic dipeptide transport protein DppA|unclassified	0.6511894820
+UniRef50_E6V5P2: Tripartite ATP-independent periplasmic transporter DctQ component	0.6511869341
+UniRef50_E6V5P2: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.6511869341
+UniRef50_Q9RX51: Malto-oligosyltrehalose trehalohydrolase	0.6510416667
+UniRef50_Q9RX51: Malto-oligosyltrehalose trehalohydrolase|g__Deinococcus.s__Deinococcus_radiodurans	0.6510416667
+UniRef50_D3F4M0	0.6510206355
+UniRef50_D3F4M0|unclassified	0.6510206355
+UniRef50_UPI00036CDFBF: hypothetical protein, partial	0.6510156468
+UniRef50_UPI00036CDFBF: hypothetical protein, partial|unclassified	0.6510156468
+UniRef50_F6AII0	0.6510056439
+UniRef50_F6AII0|unclassified	0.6510056439
+UniRef50_UPI0003B66A9A: magnesium transporter MgtC	0.6509931863
+UniRef50_UPI0003B66A9A: magnesium transporter MgtC|unclassified	0.6509931863
+UniRef50_I6DVF3: Putative membrane protein	0.6509873955
+UniRef50_I6DVF3: Putative membrane protein|unclassified	0.6509873955
+UniRef50_W7DKU3: ABC transporter permease	0.6508740247
+UniRef50_W7DKU3: ABC transporter permease|unclassified	0.6508740247
+UniRef50_R0DWK7	0.6507866351
+UniRef50_R0DWK7|unclassified	0.6507866351
+UniRef50_X2M604	0.6506180872
+UniRef50_X2M604|g__Escherichia.s__Escherichia_coli	0.6506180872
+UniRef50_F9T0M6	0.6506136015
+UniRef50_F9T0M6|unclassified	0.6506136015
+UniRef50_UPI000362BAED: hypothetical protein, partial	0.6505306938
+UniRef50_UPI000362BAED: hypothetical protein, partial|unclassified	0.6505306938
+UniRef50_UPI00037E78C9: hypothetical protein, partial	0.6504990515
+UniRef50_UPI00037E78C9: hypothetical protein, partial|unclassified	0.6504990515
+UniRef50_A7HVG2	0.6504766279
+UniRef50_A7HVG2|unclassified	0.6504766279
+UniRef50_F6IMX5	0.6504536489
+UniRef50_F6IMX5|unclassified	0.6504536489
+UniRef50_A0A010P1E1: Zinc-responsive transcriptional regulator (Fragment)	0.6504308006
+UniRef50_A0A010P1E1: Zinc-responsive transcriptional regulator (Fragment)|unclassified	0.6504308006
+UniRef50_UPI000348F68B: hypothetical protein	0.6504109786
+UniRef50_UPI000348F68B: hypothetical protein|unclassified	0.6504109786
+UniRef50_E3A2M4: Linear gramicidin synthetase subunit D	0.6503563866
+UniRef50_E3A2M4: Linear gramicidin synthetase subunit D|unclassified	0.6503563866
+UniRef50_UPI00037C7B8D: hypothetical protein, partial	0.6503027815
+UniRef50_UPI00037C7B8D: hypothetical protein, partial|unclassified	0.6503027815
+UniRef50_K2AIP5	0.6502705138
+UniRef50_K2AIP5|unclassified	0.6502705138
+UniRef50_UPI0002886E8D: alanine dehydrogenase	0.6502347188
+UniRef50_UPI0002886E8D: alanine dehydrogenase|unclassified	0.6502347188
+UniRef50_V6V130	0.6501879815
+UniRef50_V6V130|unclassified	0.6501879815
+UniRef50_W6KN67: Putative NADH-ubiquinone oxidoreductase 40 kDa subunit	0.6501027834
+UniRef50_W6KN67: Putative NADH-ubiquinone oxidoreductase 40 kDa subunit|unclassified	0.6501027834
+UniRef50_F2EEA5: Predicted protein (Fragment)	0.6500237752
+UniRef50_F2EEA5: Predicted protein (Fragment)|unclassified	0.6500237752
+UniRef50_P57275: Ribonucleoside-diphosphate reductase subunit beta	0.6497950925
+UniRef50_P57275: Ribonucleoside-diphosphate reductase subunit beta|unclassified	0.6497950925
+UniRef50_UPI000395AE48: PREDICTED: zinc finger protein 282-like	0.6497252001
+UniRef50_UPI000395AE48: PREDICTED: zinc finger protein 282-like|unclassified	0.6497252001
+UniRef50_F2U144	0.6497162260
+UniRef50_F2U144|unclassified	0.6497162260
+UniRef50_UPI000472F9D8: plasmid partitioning protein ParB	0.6496675664
+UniRef50_UPI000472F9D8: plasmid partitioning protein ParB|unclassified	0.6496675664
+UniRef50_UPI000419871F: arginine:ornithine antiporter	0.6496397187
+UniRef50_UPI000419871F: arginine:ornithine antiporter|unclassified	0.6496397187
+UniRef50_UPI0003733DDF: hypothetical protein	0.6496355446
+UniRef50_UPI0003733DDF: hypothetical protein|unclassified	0.6496355446
+UniRef50_F3C3D3: Histidine/lysine/arginine/ornithine ABC transporter permease HisM (Fragment)	0.6494777938
+UniRef50_F3C3D3: Histidine/lysine/arginine/ornithine ABC transporter permease HisM (Fragment)|unclassified	0.6494777938
+UniRef50_S2WHB8	0.6493506494
+UniRef50_S2WHB8|unclassified	0.6493506494
+UniRef50_X5JUQ3	0.6492209206
+UniRef50_X5JUQ3|unclassified	0.6492209206
+UniRef50_C1N7Y6: Predicted protein	0.6490914640
+UniRef50_C1N7Y6: Predicted protein|unclassified	0.6490914640
+UniRef50_A3VHM4	0.6490509611
+UniRef50_A3VHM4|unclassified	0.6490509611
+UniRef50_A6DX59: FlgJ	0.6490505556
+UniRef50_A6DX59: FlgJ|unclassified	0.6490505556
+UniRef50_Q02J25	0.6489399589
+UniRef50_Q02J25|unclassified	0.6489399589
+UniRef50_V5T4R6	0.6489399589
+UniRef50_V5T4R6|unclassified	0.6489399589
+UniRef50_A0A011P7P6: Putative carbamoyl transferase, NodU family	0.6489292667
+UniRef50_A0A011P7P6: Putative carbamoyl transferase, NodU family|unclassified	0.6489292667
+UniRef50_N3ITG2: Molybdopterin guanine dinucleotide synthesis B family protein	0.6489154712
+UniRef50_N3ITG2: Molybdopterin guanine dinucleotide synthesis B family protein|unclassified	0.6489154712
+UniRef50_UPI00038C2B5D: PREDICTED: circumsporozoite protein-like	0.6488301295
+UniRef50_UPI00038C2B5D: PREDICTED: circumsporozoite protein-like|unclassified	0.6488301295
+UniRef50_Q0AQI8: Cytochrome oxidase maturation protein, cbb3-type	0.6487057802
+UniRef50_Q0AQI8: Cytochrome oxidase maturation protein, cbb3-type|unclassified	0.6487057802
+UniRef50_K7ECB4	0.6486933782
+UniRef50_K7ECB4|unclassified	0.6486933782
+UniRef50_UPI0003346166: PREDICTED: BAG family molecular chaperone regulator 3-like	0.6486628557
+UniRef50_UPI0003346166: PREDICTED: BAG family molecular chaperone regulator 3-like|unclassified	0.6486628557
+UniRef50_UPI0001BF66E0: hypothetical protein SMAC_10559	0.6486350626
+UniRef50_UPI0001BF66E0: hypothetical protein SMAC_10559|unclassified	0.6486350626
+UniRef50_A4RUF6: Predicted protein	0.6486033344
+UniRef50_A4RUF6: Predicted protein|unclassified	0.6486033344
+UniRef50_Q9CKP2: FKBP-type peptidyl-prolyl cis-trans isomerase SlyD	0.6485770287
+UniRef50_Q9CKP2: FKBP-type peptidyl-prolyl cis-trans isomerase SlyD|unclassified	0.6485770287
+UniRef50_A0P174	0.6485110996
+UniRef50_A0P174|unclassified	0.6485110996
+UniRef50_Q45499: Inositol-1-monophosphatase	0.6485088490
+UniRef50_Q45499: Inositol-1-monophosphatase|unclassified	0.6485088490
+UniRef50_Q3JLA7	0.6485084306
+UniRef50_Q3JLA7|unclassified	0.6485084306
+UniRef50_U9DMQ5	0.6485084306
+UniRef50_U9DMQ5|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6485084306
+UniRef50_UPI0001D560FB: PREDICTED: transcriptional regulatory protein cpxR-like	0.6484757186
+UniRef50_UPI0001D560FB: PREDICTED: transcriptional regulatory protein cpxR-like|unclassified	0.6484757186
+UniRef50_C6BFR3	0.6484748533
+UniRef50_C6BFR3|unclassified	0.6484748533
+UniRef50_UPI0004742581: hypothetical protein, partial	0.6484142605
+UniRef50_UPI0004742581: hypothetical protein, partial|unclassified	0.6484142605
+UniRef50_UPI00039B42F6: 3-dehydroquinate dehydratase	0.6483148587
+UniRef50_UPI00039B42F6: 3-dehydroquinate dehydratase|unclassified	0.6483148587
+UniRef50_F7JAG5	0.6483146654
+UniRef50_F7JAG5|unclassified	0.6483146654
+UniRef50_A0A037ZH00	0.6482870850
+UniRef50_A0A037ZH00|unclassified	0.6482870850
+UniRef50_C8S4J7: Rhodanese domain protein	0.6482734685
+UniRef50_C8S4J7: Rhodanese domain protein|unclassified	0.6482734685
+UniRef50_G0J3B6	0.6481939003
+UniRef50_G0J3B6|unclassified	0.6481939003
+UniRef50_W4SVT3	0.6481565565
+UniRef50_W4SVT3|unclassified	0.6481565565
+UniRef50_B2VBD6	0.6481182431
+UniRef50_B2VBD6|unclassified	0.6481182431
+UniRef50_K0S5W4	0.6480881400
+UniRef50_K0S5W4|unclassified	0.6480881400
+UniRef50_UPI000370B249: hypothetical protein	0.6478945751
+UniRef50_UPI000370B249: hypothetical protein|unclassified	0.6478945751
+UniRef50_C4J5K8	0.6478337959
+UniRef50_C4J5K8|unclassified	0.6478337959
+UniRef50_UPI000315C86E: DNA invertase	0.6478105210
+UniRef50_UPI000315C86E: DNA invertase|unclassified	0.6478105210
+UniRef50_UPI00029AF1D0: amino acid ABC transporter permease	0.6477868799
+UniRef50_UPI00029AF1D0: amino acid ABC transporter permease|unclassified	0.6477868799
+UniRef50_UPI000421309B: siroheme synthase	0.6477304037
+UniRef50_UPI000421309B: siroheme synthase|unclassified	0.6477304037
+UniRef50_Q7VK73: UvrABC system protein C	0.6476683938
+UniRef50_Q7VK73: UvrABC system protein C|g__Helicobacter.s__Helicobacter_pylori	0.6476683938
+UniRef50_UPI0002F95A6A: hypothetical protein	0.6476399104
+UniRef50_UPI0002F95A6A: hypothetical protein|unclassified	0.6476399104
+UniRef50_Q6LUX5: Isopentenyl-diphosphate Delta-isomerase	0.6475929984
+UniRef50_Q6LUX5: Isopentenyl-diphosphate Delta-isomerase|unclassified	0.6475929984
+UniRef50_UPI00046CB7BB: hypothetical protein	0.6475765175
+UniRef50_UPI00046CB7BB: hypothetical protein|unclassified	0.6475765175
+UniRef50_UPI0003B6BEF2: 3-dehydroquinate dehydratase	0.6474767203
+UniRef50_UPI0003B6BEF2: 3-dehydroquinate dehydratase|unclassified	0.6474767203
+UniRef50_H1S0G1	0.6474752134
+UniRef50_H1S0G1|unclassified	0.6474752134
+UniRef50_F5N016: Insertion element IS1 1/5/6 protein insB domain protein (Fragment)	0.6474501426
+UniRef50_F5N016: Insertion element IS1 1/5/6 protein insB domain protein (Fragment)|unclassified	0.6474501426
+UniRef50_J2VJJ9: Replication protein C C-terminal region Replication protein C N-terminal domain containing protein	0.6473543643
+UniRef50_J2VJJ9: Replication protein C C-terminal region Replication protein C N-terminal domain containing protein|unclassified	0.6473543643
+UniRef50_F5XP90	0.6472491909
+UniRef50_F5XP90|g__Propionibacterium.s__Propionibacterium_acnes	0.6472491909
+UniRef50_UPI0003734A05: hypothetical protein	0.6471842284
+UniRef50_UPI0003734A05: hypothetical protein|unclassified	0.6471842284
+UniRef50_UPI0004634B11: hypothetical protein	0.6471625924
+UniRef50_UPI0004634B11: hypothetical protein|unclassified	0.6471625924
+UniRef50_F7X228: Putative prophage terminase large subunit	0.6468943539
+UniRef50_F7X228: Putative prophage terminase large subunit|unclassified	0.6468943539
+UniRef50_W4TWK0	0.6468720411
+UniRef50_W4TWK0|unclassified	0.6468720411
+UniRef50_X2N729	0.6468552284
+UniRef50_X2N729|unclassified	0.6468552284
+UniRef50_UPI0002D6A2EC: deoxyguanosinetriphosphate triphosphohydrolase	0.6468549578
+UniRef50_UPI0002D6A2EC: deoxyguanosinetriphosphate triphosphohydrolase|unclassified	0.6468549578
+UniRef50_UPI0002F85185: hypothetical protein	0.6468305304
+UniRef50_UPI0002F85185: hypothetical protein|unclassified	0.6468305304
+UniRef50_I0DVS9: Plasmid-related antirestriction protein	0.6468206642
+UniRef50_I0DVS9: Plasmid-related antirestriction protein|unclassified	0.6468206642
+UniRef50_Q2G8P8	0.6466723971
+UniRef50_Q2G8P8|unclassified	0.6466723971
+UniRef50_UPI0002DD519B: hypothetical protein	0.6466514484
+UniRef50_UPI0002DD519B: hypothetical protein|unclassified	0.6466514484
+UniRef50_UPI0001A42D32: hypothetical protein, partial	0.6466408795
+UniRef50_UPI0001A42D32: hypothetical protein, partial|unclassified	0.6466408795
+UniRef50_Q9RYP5	0.6464124111
+UniRef50_Q9RYP5|g__Deinococcus.s__Deinococcus_radiodurans	0.6464124111
+UniRef50_UPI00029B2141: FAD binding domain/FAD linked oxidase domain/4Fe-4S binding domain-containing protein, partial	0.6464124111
+UniRef50_UPI00029B2141: FAD binding domain/FAD linked oxidase domain/4Fe-4S binding domain-containing protein, partial|unclassified	0.6464124111
+UniRef50_B9KJP6: NAD(P)H-hydrate epimerase	0.6463159048
+UniRef50_B9KJP6: NAD(P)H-hydrate epimerase|unclassified	0.6463159048
+UniRef50_E7C532	0.6461657427
+UniRef50_E7C532|unclassified	0.6461657427
+UniRef50_UPI0003B6BB63: blue-light sensor BLUF	0.6461631603
+UniRef50_UPI0003B6BB63: blue-light sensor BLUF|unclassified	0.6461631603
+UniRef50_E3F4A3: Cyclase/dehydrase	0.6461343037
+UniRef50_E3F4A3: Cyclase/dehydrase|unclassified	0.6461343037
+UniRef50_E4UD93	0.6460384654
+UniRef50_E4UD93|unclassified	0.6460384654
+UniRef50_C7NCR9: Nickel ABC transporter, periplasmic nickel-binding protein	0.6459948320
+UniRef50_C7NCR9: Nickel ABC transporter, periplasmic nickel-binding protein|g__Streptococcus.s__Streptococcus_agalactiae	0.6459948320
+UniRef50_J8V743	0.6459579757
+UniRef50_J8V743|unclassified	0.6459579757
+UniRef50_Y8CBT5	0.6458931556
+UniRef50_Y8CBT5|unclassified	0.6458931556
+UniRef50_E3NZK1: ORF1	0.6457976962
+UniRef50_E3NZK1: ORF1|unclassified	0.6457976962
+UniRef50_A4WUQ1	0.6457506818
+UniRef50_A4WUQ1|unclassified	0.6457506818
+UniRef50_E6NJU4: Single-stranded-DNA specific exonuclease	0.6455777921
+UniRef50_E6NJU4: Single-stranded-DNA specific exonuclease|g__Helicobacter.s__Helicobacter_pylori	0.6455777921
+UniRef50_UPI000478862C: hypothetical protein	0.6454102973
+UniRef50_UPI000478862C: hypothetical protein|unclassified	0.6454102973
+UniRef50_F4UYW9: Polysaccharide metabolism	0.6452824623
+UniRef50_F4UYW9: Polysaccharide metabolism|unclassified	0.6452824623
+UniRef50_D6B724: Prevent-host-death family protein	0.6452674089
+UniRef50_D6B724: Prevent-host-death family protein|unclassified	0.6452674089
+UniRef50_A9U7M5: Predicted protein (Fragment)	0.6452642666
+UniRef50_A9U7M5: Predicted protein (Fragment)|unclassified	0.6452642666
+UniRef50_U3H432	0.6451701805
+UniRef50_U3H432|unclassified	0.6451701805
+UniRef50_UPI0003288485: PREDICTED: translation initiation factor IF-2-like	0.6451508051
+UniRef50_UPI0003288485: PREDICTED: translation initiation factor IF-2-like|unclassified	0.6451508051
+UniRef50_D3SBH6: TRAP transporter solute receptor, TAXI family	0.6449565121
+UniRef50_D3SBH6: TRAP transporter solute receptor, TAXI family|unclassified	0.6449565121
+UniRef50_M7EFD3	0.6448634872
+UniRef50_M7EFD3|unclassified	0.6448634872
+UniRef50_V9VWJ8: 2,4-dihydroxyhept-2-ene-1,7-dioic acid aldolase	0.6448566374
+UniRef50_V9VWJ8: 2,4-dihydroxyhept-2-ene-1,7-dioic acid aldolase|unclassified	0.6448566374
+UniRef50_X1WP73	0.6448521030
+UniRef50_X1WP73|unclassified	0.6448521030
+UniRef50_F0JDW5	0.6447600703
+UniRef50_F0JDW5|unclassified	0.6447600703
+UniRef50_UPI00038074EA: hypothetical protein	0.6447495970
+UniRef50_UPI00038074EA: hypothetical protein|unclassified	0.6447495970
+UniRef50_UPI000350F816: PREDICTED: nuclear pore glycoprotein p62-like	0.6447453256
+UniRef50_UPI000350F816: PREDICTED: nuclear pore glycoprotein p62-like|unclassified	0.6447453256
+UniRef50_UPI0001B42F4A: molybdopterin biosynthesis protein MoeB, partial	0.6446710190
+UniRef50_UPI0001B42F4A: molybdopterin biosynthesis protein MoeB, partial|unclassified	0.6446710190
+UniRef50_A3PJS8	0.6446596143
+UniRef50_A3PJS8|unclassified	0.6446596143
+UniRef50_Q28VZ4: Ribosomal RNA small subunit methyltransferase G	0.6446408038
+UniRef50_Q28VZ4: Ribosomal RNA small subunit methyltransferase G|unclassified	0.6446408038
+UniRef50_UPI00037EEA58: hypothetical protein	0.6446325283
+UniRef50_UPI00037EEA58: hypothetical protein|unclassified	0.6446325283
+UniRef50_F5MUV5: Permease IIC component glvC domain protein	0.6445876231
+UniRef50_F5MUV5: Permease IIC component glvC domain protein|unclassified	0.6445876231
+UniRef50_Q0FVR8	0.6445039542
+UniRef50_Q0FVR8|unclassified	0.6445039542
+UniRef50_UPI00036E1A9D: hypothetical protein	0.6444986670
+UniRef50_UPI00036E1A9D: hypothetical protein|unclassified	0.6444986670
+UniRef50_UPI00047D8E87: hypothetical protein	0.6443857224
+UniRef50_UPI00047D8E87: hypothetical protein|unclassified	0.6443857224
+UniRef50_UPI0003F54A27: hypothetical protein	0.6443433996
+UniRef50_UPI0003F54A27: hypothetical protein|unclassified	0.6443433996
+UniRef50_D6SFZ2	0.6443363907
+UniRef50_D6SFZ2|unclassified	0.6443363907
+UniRef50_I9WSS2: AsnC family transcriptional regulator	0.6443324362
+UniRef50_I9WSS2: AsnC family transcriptional regulator|unclassified	0.6443324362
+UniRef50_F0Y2L6: Expressed protein (Fragment)	0.6443123221
+UniRef50_F0Y2L6: Expressed protein (Fragment)|unclassified	0.6443123221
+UniRef50_UPI00047D7AE5: resolvase	0.6442874601
+UniRef50_UPI00047D7AE5: resolvase|unclassified	0.6442874601
+UniRef50_UPI00037F7E70: hypothetical protein	0.6440921633
+UniRef50_UPI00037F7E70: hypothetical protein|unclassified	0.6440921633
+UniRef50_UPI00036EEC74: hypothetical protein, partial	0.6440606889
+UniRef50_UPI00036EEC74: hypothetical protein, partial|unclassified	0.6440606889
+UniRef50_C3AJM0	0.6439257623
+UniRef50_C3AJM0|unclassified	0.6439257623
+UniRef50_Q9JXS7: Chromosomal replication initiator protein DnaA	0.6439150032
+UniRef50_Q9JXS7: Chromosomal replication initiator protein DnaA|g__Neisseria.s__Neisseria_meningitidis	0.6439150032
+UniRef50_G5FUT6	0.6438760426
+UniRef50_G5FUT6|unclassified	0.6438760426
+UniRef50_K2EJ34: NADH dehydrogenase (Ubiquinone) 1 alpha subcomplex subunit 9	0.6438706866
+UniRef50_K2EJ34: NADH dehydrogenase (Ubiquinone) 1 alpha subcomplex subunit 9|unclassified	0.6438706866
+UniRef50_B2I9J2: Tryptophan synthase beta chain	0.6438399892
+UniRef50_B2I9J2: Tryptophan synthase beta chain|unclassified	0.6438399892
+UniRef50_I1B1E5	0.6436727272
+UniRef50_I1B1E5|unclassified	0.6436727272
+UniRef50_UPI000476C835: hypothetical protein	0.6436386927
+UniRef50_UPI000476C835: hypothetical protein|unclassified	0.6436386927
+UniRef50_A4WZ23	0.6435526567
+UniRef50_A4WZ23|unclassified	0.6435526567
+UniRef50_T0YWI1: N-formimino-L-glutamate deiminase (Fragment)	0.6435074960
+UniRef50_T0YWI1: N-formimino-L-glutamate deiminase (Fragment)|unclassified	0.6435074960
+UniRef50_Q897Q2: NH3-dependent NAD+ synthetase	0.6435006435
+UniRef50_Q897Q2: NH3-dependent NAD+ synthetase|g__Clostridium.s__Clostridium_beijerinckii	0.6435006435
+UniRef50_W1GI57: Mobile element protein	0.6434655510
+UniRef50_W1GI57: Mobile element protein|unclassified	0.6434655510
+UniRef50_V8EV75	0.6434638584
+UniRef50_V8EV75|unclassified	0.6434638584
+UniRef50_B8GS08: Contractile tail tube protein	0.6434609040
+UniRef50_B8GS08: Contractile tail tube protein|unclassified	0.6434609040
+UniRef50_A0A058SY76	0.6432855903
+UniRef50_A0A058SY76|unclassified	0.6432855903
+UniRef50_UPI0004412958: ribosomal protein S12	0.6432761277
+UniRef50_UPI0004412958: ribosomal protein S12|unclassified	0.6432761277
+UniRef50_E4U994	0.6432561355
+UniRef50_E4U994|unclassified	0.6432561355
+UniRef50_S9UQB9: PE-PGRS family protein	0.6432171661
+UniRef50_S9UQB9: PE-PGRS family protein|unclassified	0.6432171661
+UniRef50_UPI00029ABD4E: ATP-dependent DNA helicase RecQ	0.6431884181
+UniRef50_UPI00029ABD4E: ATP-dependent DNA helicase RecQ|unclassified	0.6431884181
+UniRef50_D0CRI8	0.6431873772
+UniRef50_D0CRI8|unclassified	0.6431873772
+UniRef50_UPI00047198FB: DNA resolvase	0.6431244567
+UniRef50_UPI00047198FB: DNA resolvase|unclassified	0.6431244567
+UniRef50_Q090T6	0.6430868167
+UniRef50_Q090T6|unclassified	0.6430868167
+UniRef50_H4EPB9	0.6429874363
+UniRef50_H4EPB9|unclassified	0.6429874363
+UniRef50_D5HCE5	0.6429440266
+UniRef50_D5HCE5|unclassified	0.6429440266
+UniRef50_J5HWF5	0.6429269864
+UniRef50_J5HWF5|unclassified	0.6429269864
+UniRef50_UPI000372C534: hypothetical protein	0.6428532033
+UniRef50_UPI000372C534: hypothetical protein|unclassified	0.6428532033
+UniRef50_I6FBG8: Insertion sequence protein	0.6428218396
+UniRef50_I6FBG8: Insertion sequence protein|unclassified	0.6428218396
+UniRef50_A0A011Q0J8: Nitrogen fixation protein RnfA	0.6428142818
+UniRef50_A0A011Q0J8: Nitrogen fixation protein RnfA|unclassified	0.6428142818
+UniRef50_A0A017HFG3: Protein-glutamate methylesterase family protein	0.6427282953
+UniRef50_A0A017HFG3: Protein-glutamate methylesterase family protein|unclassified	0.6427282953
+UniRef50_D5AV31: TPR repeat domain protein	0.6426735219
+UniRef50_D5AV31: TPR repeat domain protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.6426735219
+UniRef50_R1CZY9	0.6426735219
+UniRef50_R1CZY9|unclassified	0.6426735219
+UniRef50_UPI0003504583: PREDICTED: translation initiation factor IF-2-like	0.6426681013
+UniRef50_UPI0003504583: PREDICTED: translation initiation factor IF-2-like|unclassified	0.6426681013
+UniRef50_U1FCM2	0.6426567271
+UniRef50_U1FCM2|unclassified	0.6426567271
+UniRef50_L9LEW3	0.6426562717
+UniRef50_L9LEW3|unclassified	0.6426562717
+UniRef50_UPI0003B571C4: 16S rRNA methyltransferase, partial	0.6426411004
+UniRef50_UPI0003B571C4: 16S rRNA methyltransferase, partial|unclassified	0.6426411004
+UniRef50_UPI0002888587: branched-chain amino acid ABC transporter ATP-binding protein, partial	0.6424397258
+UniRef50_UPI0002888587: branched-chain amino acid ABC transporter ATP-binding protein, partial|unclassified	0.6424397258
+UniRef50_C0PI11	0.6424332040
+UniRef50_C0PI11|unclassified	0.6424332040
+UniRef50_UPI0002B46B6C: PREDICTED: cyclopropane-fatty-acyl-phospholipid synthase-like	0.6423988594
+UniRef50_UPI0002B46B6C: PREDICTED: cyclopropane-fatty-acyl-phospholipid synthase-like|unclassified	0.6423988594
+UniRef50_L6GE11	0.6423758033
+UniRef50_L6GE11|unclassified	0.6423758033
+UniRef50_UPI00045D877D: PREDICTED: basic proline-rich protein-like	0.6423714552
+UniRef50_UPI00045D877D: PREDICTED: basic proline-rich protein-like|unclassified	0.6423714552
+UniRef50_M9VP93: PTS system, sucrose-specific IIBC component	0.6422607579
+UniRef50_M9VP93: PTS system, sucrose-specific IIBC component|g__Propionibacterium.s__Propionibacterium_acnes	0.6422607579
+UniRef50_UPI0004652EFE: acyl-CoA dehydrogenase, partial	0.6421325287
+UniRef50_UPI0004652EFE: acyl-CoA dehydrogenase, partial|unclassified	0.6421325287
+UniRef50_UPI00035C47DC: hypothetical protein	0.6418485237
+UniRef50_UPI00035C47DC: hypothetical protein|unclassified	0.6418485237
+UniRef50_G8AVW9	0.6418152916
+UniRef50_G8AVW9|unclassified	0.6418152916
+UniRef50_UPI00030B7B93: hypothetical protein	0.6417401550
+UniRef50_UPI00030B7B93: hypothetical protein|unclassified	0.6417401550
+UniRef50_UPI0004716A86: ArsR family transcriptional regulator	0.6417276837
+UniRef50_UPI0004716A86: ArsR family transcriptional regulator|unclassified	0.6417276837
+UniRef50_UPI0004548C9D	0.6416974975
+UniRef50_UPI0004548C9D|unclassified	0.6416974975
+UniRef50_G2AB04	0.6416510861
+UniRef50_G2AB04|unclassified	0.6416510861
+UniRef50_A4CGR5	0.6414406457
+UniRef50_A4CGR5|unclassified	0.6414406457
+UniRef50_M4JHN6: Peptide chain release factor-like protein	0.6414396647
+UniRef50_M4JHN6: Peptide chain release factor-like protein|unclassified	0.6414396647
+UniRef50_G2KD33	0.6414368185
+UniRef50_G2KD33|unclassified	0.6414368185
+UniRef50_L8H175	0.6414368185
+UniRef50_L8H175|unclassified	0.6414368185
+UniRef50_UPI00045EB951: hypothetical protein	0.6413520958
+UniRef50_UPI00045EB951: hypothetical protein|unclassified	0.6413520958
+UniRef50_F2ECU7: Predicted protein (Fragment)	0.6413026377
+UniRef50_F2ECU7: Predicted protein (Fragment)|unclassified	0.6413026377
+UniRef50_UPI00016B06C1: hypothetical protein	0.6412399136
+UniRef50_UPI00016B06C1: hypothetical protein|unclassified	0.6412399136
+UniRef50_X6LEJ6: TRAP transporter solute receptor TAXI family (Fragment)	0.6412236188
+UniRef50_X6LEJ6: TRAP transporter solute receptor TAXI family (Fragment)|unclassified	0.6412236188
+UniRef50_R8E7J9: NAD(FAD)-utilizing dehydrogenase	0.6410645733
+UniRef50_R8E7J9: NAD(FAD)-utilizing dehydrogenase|unclassified	0.6410645733
+UniRef50_E8QV25	0.6410256410
+UniRef50_E8QV25|g__Helicobacter.s__Helicobacter_pylori	0.6410256410
+UniRef50_W7SJH2: Transcriptional regulator	0.6409323637
+UniRef50_W7SJH2: Transcriptional regulator|unclassified	0.6409323637
+UniRef50_G8LHF8	0.6409238022
+UniRef50_G8LHF8|unclassified	0.6409238022
+UniRef50_Q6MGU4: Nucleoside diphosphate kinase	0.6409112558
+UniRef50_Q6MGU4: Nucleoside diphosphate kinase|unclassified	0.6409112558
+UniRef50_L0KED0: TRAP-type C4-dicarboxylate transport system, small permease component	0.6407283580
+UniRef50_L0KED0: TRAP-type C4-dicarboxylate transport system, small permease component|unclassified	0.6407283580
+UniRef50_C7J660: Os08g0537001 protein	0.6406308064
+UniRef50_C7J660: Os08g0537001 protein|unclassified	0.6406308064
+UniRef50_V6NXW6	0.6406111021
+UniRef50_V6NXW6|unclassified	0.6406111021
+UniRef50_U2ZAS6	0.6405424595
+UniRef50_U2ZAS6|unclassified	0.6405424595
+UniRef50_Q9RTC8	0.6405345457
+UniRef50_Q9RTC8|unclassified	0.6405345457
+UniRef50_A4WYB3	0.6404635547
+UniRef50_A4WYB3|unclassified	0.6404635547
+UniRef50_UPI000225F571: endoribonuclease L-PSP	0.6404370684
+UniRef50_UPI000225F571: endoribonuclease L-PSP|unclassified	0.6404370684
+UniRef50_W6R2Q7: UPF0235 protein BN5_3971	0.6404227015
+UniRef50_W6R2Q7: UPF0235 protein BN5_3971|unclassified	0.6404227015
+UniRef50_UPI00046A9281: glycine cleavage system protein H	0.6403555346
+UniRef50_UPI00046A9281: glycine cleavage system protein H|unclassified	0.6403555346
+UniRef50_M9BMA7: Subunit ChlI of Mg-chelatase family protein	0.6402897350
+UniRef50_M9BMA7: Subunit ChlI of Mg-chelatase family protein|unclassified	0.6402897350
+UniRef50_UPI00036A961C: hypothetical protein	0.6402518965
+UniRef50_UPI00036A961C: hypothetical protein|unclassified	0.6402518965
+UniRef50_UPI0002627F77: hypothetical protein	0.6402438299
+UniRef50_UPI0002627F77: hypothetical protein|unclassified	0.6402438299
+UniRef50_A6LT80: Response regulator receiver protein	0.6402048656
+UniRef50_A6LT80: Response regulator receiver protein|g__Clostridium.s__Clostridium_beijerinckii	0.6402048656
+UniRef50_K0T1H0	0.6402048656
+UniRef50_K0T1H0|unclassified	0.6402048656
+UniRef50_UPI00036A116A: hypothetical protein, partial	0.6401912923
+UniRef50_UPI00036A116A: hypothetical protein, partial|unclassified	0.6401912923
+UniRef50_UPI000373B788: hypothetical protein	0.6400840911
+UniRef50_UPI000373B788: hypothetical protein|unclassified	0.6400840911
+UniRef50_UPI00030CC75E: hypothetical protein	0.6400752022
+UniRef50_UPI00030CC75E: hypothetical protein|unclassified	0.6400752022
+UniRef50_UPI0003C7E0D5: XRE family transcriptional regulator	0.6400631081
+UniRef50_UPI0003C7E0D5: XRE family transcriptional regulator|unclassified	0.6400631081
+UniRef50_W0BBZ3	0.6400024834
+UniRef50_W0BBZ3|unclassified	0.6400024834
+UniRef50_R0QWV3	0.6399676129
+UniRef50_R0QWV3|unclassified	0.6399676129
+UniRef50_UPI0003B7257B: TetR family transcriptional regulator	0.6398778020
+UniRef50_UPI0003B7257B: TetR family transcriptional regulator|unclassified	0.6398778020
+UniRef50_A7ZAV2	0.6398385752
+UniRef50_A7ZAV2|unclassified	0.6398385752
+UniRef50_A0A033UQB4	0.6397772323
+UniRef50_A0A033UQB4|unclassified	0.6397772323
+UniRef50_UPI000364AF73: hypothetical protein	0.6397506602
+UniRef50_UPI000364AF73: hypothetical protein|unclassified	0.6397506602
+UniRef50_E3ZD42: Internalin B (Fragment)	0.6397400346
+UniRef50_E3ZD42: Internalin B (Fragment)|unclassified	0.6397400346
+UniRef50_H8Z7W7: TPR repeat-containing protein	0.6395766765
+UniRef50_H8Z7W7: TPR repeat-containing protein|unclassified	0.6395766765
+UniRef50_K5YNY1	0.6395688240
+UniRef50_K5YNY1|unclassified	0.6395688240
+UniRef50_Q5FRT7: Peptidyl-tRNA hydrolase	0.6395627367
+UniRef50_Q5FRT7: Peptidyl-tRNA hydrolase|unclassified	0.6395627367
+UniRef50_UPI00045E8316: ribose ABC transporter permease	0.6394415795
+UniRef50_UPI00045E8316: ribose ABC transporter permease|unclassified	0.6394415795
+UniRef50_B1H4B0	0.6394225347
+UniRef50_B1H4B0|unclassified	0.6394225347
+UniRef50_P9WHH0: Thioredoxin reductase	0.6393927990
+UniRef50_P9WHH0: Thioredoxin reductase|unclassified	0.6393927990
+UniRef50_T0IVY5	0.6393838865
+UniRef50_T0IVY5|unclassified	0.6393838865
+UniRef50_UPI0003EDAA00: hypothetical protein	0.6393832782
+UniRef50_UPI0003EDAA00: hypothetical protein|unclassified	0.6393832782
+UniRef50_UPI0003610FB5: hypothetical protein	0.6392406433
+UniRef50_UPI0003610FB5: hypothetical protein|unclassified	0.6392406433
+UniRef50_W5XBC3: 50S ribosomal protein L24	0.6392237339
+UniRef50_W5XBC3: 50S ribosomal protein L24|unclassified	0.6392237339
+UniRef50_UPI000287D4FC: ribose-phosphate diphosphokinase	0.6391877454
+UniRef50_UPI000287D4FC: ribose-phosphate diphosphokinase|unclassified	0.6391877454
+UniRef50_F0RNU6	0.6391724632
+UniRef50_F0RNU6|g__Deinococcus.s__Deinococcus_radiodurans	0.6391724632
+UniRef50_V5CP82	0.6391685510
+UniRef50_V5CP82|unclassified	0.6391685510
+UniRef50_UPI00046423FB: FMN-dependent NADH-azoreductase	0.6391660552
+UniRef50_UPI00046423FB: FMN-dependent NADH-azoreductase|unclassified	0.6391660552
+UniRef50_Q3JMI7	0.6391464333
+UniRef50_Q3JMI7|unclassified	0.6391464333
+UniRef50_P46702: N5-carboxyaminoimidazole ribonucleotide mutase	0.6390909780
+UniRef50_P46702: N5-carboxyaminoimidazole ribonucleotide mutase|unclassified	0.6390909780
+UniRef50_UPI0004755D5C: ABC transporter substrate-binding protein	0.6390194848
+UniRef50_UPI0004755D5C: ABC transporter substrate-binding protein|unclassified	0.6390194848
+UniRef50_P57252: NADH-quinone oxidoreductase subunit A	0.6390119718
+UniRef50_P57252: NADH-quinone oxidoreductase subunit A|unclassified	0.6390119718
+UniRef50_D2S7G2	0.6389776358
+UniRef50_D2S7G2|unclassified	0.6389776358
+UniRef50_K0TBZ5	0.6389776358
+UniRef50_K0TBZ5|unclassified	0.6389776358
+UniRef50_UPI00044159F0: hypothetical protein AURDEDRAFT_182643	0.6389776358
+UniRef50_UPI00044159F0: hypothetical protein AURDEDRAFT_182643|unclassified	0.6389776358
+UniRef50_J9ZHG6	0.6389232380
+UniRef50_J9ZHG6|unclassified	0.6389232380
+UniRef50_V8QEW9	0.6389231989
+UniRef50_V8QEW9|unclassified	0.6389231989
+UniRef50_G9ZUA1	0.6388831074
+UniRef50_G9ZUA1|unclassified	0.6388831074
+UniRef50_UPI0004712B82: deoxyguanosinetriphosphate triphosphohydrolase	0.6387653434
+UniRef50_UPI0004712B82: deoxyguanosinetriphosphate triphosphohydrolase|unclassified	0.6387653434
+UniRef50_D4U8Z8	0.6387617068
+UniRef50_D4U8Z8|unclassified	0.6387617068
+UniRef50_X1MBS9: Marine sediment metagenome DNA, contig: S06H3_S07362 (Fragment)	0.6386977716
+UniRef50_X1MBS9: Marine sediment metagenome DNA, contig: S06H3_S07362 (Fragment)|unclassified	0.6386977716
+UniRef50_R9TYY8: Spore envelope assembly protein SeaA	0.6386293875
+UniRef50_R9TYY8: Spore envelope assembly protein SeaA|unclassified	0.6386293875
+UniRef50_Q219F8: Peptidyl-tRNA hydrolase	0.6386200155
+UniRef50_Q219F8: Peptidyl-tRNA hydrolase|unclassified	0.6386200155
+UniRef50_UPI00037F4A2C: hypothetical protein	0.6385093451
+UniRef50_UPI00037F4A2C: hypothetical protein|unclassified	0.6385093451
+UniRef50_UPI00029B0952: dipeptide ABC transporter permease, partial	0.6384366536
+UniRef50_UPI00029B0952: dipeptide ABC transporter permease, partial|unclassified	0.6384366536
+UniRef50_UPI000328BD8B: PREDICTED: basic proline-rich protein-like	0.6383394634
+UniRef50_UPI000328BD8B: PREDICTED: basic proline-rich protein-like|unclassified	0.6383394634
+UniRef50_UPI00037DF359: hypothetical protein	0.6383308729
+UniRef50_UPI00037DF359: hypothetical protein|unclassified	0.6383308729
+UniRef50_A3X2N3: Na+/H+ antiporter subunit	0.6383009535
+UniRef50_A3X2N3: Na+/H+ antiporter subunit|unclassified	0.6383009535
+UniRef50_UPI00033338C6: PREDICTED: basic salivary proline-rich protein 3-like	0.6382614344
+UniRef50_UPI00033338C6: PREDICTED: basic salivary proline-rich protein 3-like|unclassified	0.6382614344
+UniRef50_C5BUP0: Urease subunit beta	0.6381947140
+UniRef50_C5BUP0: Urease subunit beta|unclassified	0.6381947140
+UniRef50_X7A567	0.6379804421
+UniRef50_X7A567|unclassified	0.6379804421
+UniRef50_K4KH04: Protein yffB	0.6379789915
+UniRef50_K4KH04: Protein yffB|unclassified	0.6379789915
+UniRef50_S6PX75	0.6379096771
+UniRef50_S6PX75|unclassified	0.6379096771
+UniRef50_G7VXF7	0.6378632943
+UniRef50_G7VXF7|unclassified	0.6378632943
+UniRef50_S3ZS47: Putative Oleandomycin polyketide synthase, modules 5 and 6	0.6378511205
+UniRef50_S3ZS47: Putative Oleandomycin polyketide synthase, modules 5 and 6|unclassified	0.6378511205
+UniRef50_UPI00036C089B: hypothetical protein	0.6377579633
+UniRef50_UPI00036C089B: hypothetical protein|unclassified	0.6377579633
+UniRef50_Q1GSN3: DNA mismatch repair protein MutL	0.6377551020
+UniRef50_Q1GSN3: DNA mismatch repair protein MutL|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.6377551020
+UniRef50_N1U5S5: Winged helix-turn helix	0.6376996292
+UniRef50_N1U5S5: Winged helix-turn helix|unclassified	0.6376996292
+UniRef50_W9BEI9: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	0.6374567458
+UniRef50_W9BEI9: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome|unclassified	0.6374567458
+UniRef50_H3ULQ2: PF04286 family protein	0.6374255697
+UniRef50_H3ULQ2: PF04286 family protein|unclassified	0.6374255697
+UniRef50_UPI0003C1B3E9	0.6374099410
+UniRef50_UPI0003C1B3E9|unclassified	0.6374099410
+UniRef50_F8JKY1	0.6373668819
+UniRef50_F8JKY1|unclassified	0.6373668819
+UniRef50_F4CTZ9: Transcriptional regulator, CdaR	0.6373486297
+UniRef50_F4CTZ9: Transcriptional regulator, CdaR|unclassified	0.6373486297
+UniRef50_T5DQM1	0.6373074975
+UniRef50_T5DQM1|unclassified	0.6373074975
+UniRef50_UPI000380E91C: hypothetical protein	0.6372934252
+UniRef50_UPI000380E91C: hypothetical protein|unclassified	0.6372934252
+UniRef50_F4LAH5	0.6372322111
+UniRef50_F4LAH5|unclassified	0.6372322111
+UniRef50_Q6D4X4: Adenosine deaminase	0.6371951099
+UniRef50_Q6D4X4: Adenosine deaminase|unclassified	0.6371951099
+UniRef50_A0A031FMU6	0.6371225524
+UniRef50_A0A031FMU6|unclassified	0.6371225524
+UniRef50_N9GIV0	0.6371181058
+UniRef50_N9GIV0|unclassified	0.6371181058
+UniRef50_V2ABF4: Ferrochelatase	0.6370848574
+UniRef50_V2ABF4: Ferrochelatase|unclassified	0.6370848574
+UniRef50_Y7NY12	0.6370648046
+UniRef50_Y7NY12|unclassified	0.6370648046
+UniRef50_UPI000329107E	0.6370573085
+UniRef50_UPI000329107E|unclassified	0.6370573085
+UniRef50_E6FRA4: Phosphoglycerate mutase family protein	0.6370307800
+UniRef50_E6FRA4: Phosphoglycerate mutase family protein|unclassified	0.6370307800
+UniRef50_UPI0003467BCD: hypothetical protein	0.6369662015
+UniRef50_UPI0003467BCD: hypothetical protein|unclassified	0.6369662015
+UniRef50_F0ML51	0.6369426752
+UniRef50_F0ML51|g__Neisseria.s__Neisseria_meningitidis	0.6369426752
+UniRef50_UPI00037E81F2: MULTISPECIES: hypothetical protein	0.6368678824
+UniRef50_UPI00037E81F2: MULTISPECIES: hypothetical protein|unclassified	0.6368678824
+UniRef50_UPI00036FD96D: hypothetical protein	0.6367963155
+UniRef50_UPI00036FD96D: hypothetical protein|unclassified	0.6367963155
+UniRef50_UPI0003FDB9A0: SAM-dependent methyltransferase	0.6367926235
+UniRef50_UPI0003FDB9A0: SAM-dependent methyltransferase|unclassified	0.6367926235
+UniRef50_W1GCX7: Biofilm PGA outer membrane secretin PgaA	0.6367515606
+UniRef50_W1GCX7: Biofilm PGA outer membrane secretin PgaA|unclassified	0.6367515606
+UniRef50_G3CC64: Ribonuclease P RNA (Fragment)	0.6367302285
+UniRef50_G3CC64: Ribonuclease P RNA (Fragment)|unclassified	0.6367302285
+UniRef50_UPI0003C7B40E: hypothetical protein	0.6367197265
+UniRef50_UPI0003C7B40E: hypothetical protein|unclassified	0.6367197265
+UniRef50_W5X567	0.6366562767
+UniRef50_W5X567|unclassified	0.6366562767
+UniRef50_W5BPL1	0.6366472339
+UniRef50_W5BPL1|unclassified	0.6366472339
+UniRef50_T7DFK2	0.6366011090
+UniRef50_T7DFK2|unclassified	0.6366011090
+UniRef50_UPI00034904A5: hypothetical protein	0.6364110499
+UniRef50_UPI00034904A5: hypothetical protein|unclassified	0.6364110499
+UniRef50_UPI000219427C: phosphoribosylcarboxyaminoimidazole (NCAIR) mutase, partial	0.6363512324
+UniRef50_UPI000219427C: phosphoribosylcarboxyaminoimidazole (NCAIR) mutase, partial|unclassified	0.6363512324
+UniRef50_UPI000370BA4E: hypothetical protein	0.6362287616
+UniRef50_UPI000370BA4E: hypothetical protein|unclassified	0.6362287616
+UniRef50_Q1I5Y1	0.6362054174
+UniRef50_Q1I5Y1|unclassified	0.6362054174
+UniRef50_UPI000225F8FA: hemolysin-type calcium-binding region, partial	0.6361576496
+UniRef50_UPI000225F8FA: hemolysin-type calcium-binding region, partial|unclassified	0.6361576496
+UniRef50_UPI00046D0A65: hypothetical protein	0.6360489656
+UniRef50_UPI00046D0A65: hypothetical protein|unclassified	0.6360489656
+UniRef50_UPI00026305E0: CheA signal transduction histidine kinase, partial	0.6359998082
+UniRef50_UPI00026305E0: CheA signal transduction histidine kinase, partial|unclassified	0.6359998082
+UniRef50_D5CRX7: Class II aldolase/adducin family protein	0.6359538911
+UniRef50_D5CRX7: Class II aldolase/adducin family protein|unclassified	0.6359538911
+UniRef50_UPI00047B86C6: sporulation protein	0.6357698279
+UniRef50_UPI00047B86C6: sporulation protein|unclassified	0.6357698279
+UniRef50_L9DFH0: RhsD domain protein (Fragment)	0.6357471732
+UniRef50_L9DFH0: RhsD domain protein (Fragment)|unclassified	0.6357471732
+UniRef50_UPI000363D535: membrane protein	0.6357355005
+UniRef50_UPI000363D535: membrane protein|unclassified	0.6357355005
+UniRef50_E3I7L0: Heat shock protein Hsp20	0.6357027509
+UniRef50_E3I7L0: Heat shock protein Hsp20|unclassified	0.6357027509
+UniRef50_M3Z864	0.6357023238
+UniRef50_M3Z864|unclassified	0.6357023238
+UniRef50_UPI0003B47E7A: transcriptional regulator	0.6356674298
+UniRef50_UPI0003B47E7A: transcriptional regulator|unclassified	0.6356674298
+UniRef50_E5QRP5	0.6355572366
+UniRef50_E5QRP5|unclassified	0.6355572366
+UniRef50_K4ZL97	0.6355116823
+UniRef50_K4ZL97|unclassified	0.6355116823
+UniRef50_UPI00035D08C2: hypothetical protein	0.6355018800
+UniRef50_UPI00035D08C2: hypothetical protein|unclassified	0.6355018800
+UniRef50_K2JJ46: NAD-specific glutamate dehydrogenase	0.6354612839
+UniRef50_K2JJ46: NAD-specific glutamate dehydrogenase|unclassified	0.6354612839
+UniRef50_UPI0002B43A90: PREDICTED: small ribosomal subunit protein S13, mitochondrial-like	0.6353906568
+UniRef50_UPI0002B43A90: PREDICTED: small ribosomal subunit protein S13, mitochondrial-like|unclassified	0.6353906568
+UniRef50_D5TDZ6	0.6353586732
+UniRef50_D5TDZ6|unclassified	0.6353586732
+UniRef50_M1FFX2	0.6353392043
+UniRef50_M1FFX2|unclassified	0.6353392043
+UniRef50_Q9ZJ66: Protein translocase subunit SecD	0.6353240152
+UniRef50_Q9ZJ66: Protein translocase subunit SecD|g__Helicobacter.s__Helicobacter_pylori	0.6353240152
+UniRef50_UPI0001D54AB8: PREDICTED: hypothetical protein LOC720182	0.6353240152
+UniRef50_UPI0001D54AB8: PREDICTED: hypothetical protein LOC720182|unclassified	0.6353240152
+UniRef50_UPI00047A404B: hypothetical protein	0.6352938906
+UniRef50_UPI00047A404B: hypothetical protein|unclassified	0.6352938906
+UniRef50_UPI0000557835: sensor histidine kinase	0.6352426533
+UniRef50_UPI0000557835: sensor histidine kinase|unclassified	0.6352426533
+UniRef50_UPI0003B5AD4C: ABC transporter substrate-binding protein, partial	0.6352377539
+UniRef50_UPI0003B5AD4C: ABC transporter substrate-binding protein, partial|unclassified	0.6352377539
+UniRef50_P22759: Bacterioferritin	0.6351299507
+UniRef50_P22759: Bacterioferritin|unclassified	0.6351299507
+UniRef50_T0Y7N0	0.6351195330
+UniRef50_T0Y7N0|unclassified	0.6351195330
+UniRef50_A0A011PSU5	0.6350952818
+UniRef50_A0A011PSU5|unclassified	0.6350952818
+UniRef50_UPI0004762D25: hypothetical protein	0.6350447880
+UniRef50_UPI0004762D25: hypothetical protein|unclassified	0.6350447880
+UniRef50_UPI0003B3589F: ATP synthase subunit B	0.6349893034
+UniRef50_UPI0003B3589F: ATP synthase subunit B|unclassified	0.6349893034
+UniRef50_A1VCI0	0.6349569435
+UniRef50_A1VCI0|unclassified	0.6349569435
+UniRef50_UPI000288AFE6: luciferase-like protein	0.6348821193
+UniRef50_UPI000288AFE6: luciferase-like protein|unclassified	0.6348821193
+UniRef50_A4F9E2: PE-PGRS family protein	0.6348274215
+UniRef50_A4F9E2: PE-PGRS family protein|unclassified	0.6348274215
+UniRef50_J9P9I1	0.6348091534
+UniRef50_J9P9I1|unclassified	0.6348091534
+UniRef50_I1WEZ2: Phage-related tail protein	0.6347264553
+UniRef50_I1WEZ2: Phage-related tail protein|unclassified	0.6347264553
+UniRef50_UPI000395D952: GntR family transcriptional regulator	0.6346277059
+UniRef50_UPI000395D952: GntR family transcriptional regulator|unclassified	0.6346277059
+UniRef50_T5AR24	0.6345681413
+UniRef50_T5AR24|unclassified	0.6345681413
+UniRef50_C1MV00: Predicted protein	0.6345582352
+UniRef50_C1MV00: Predicted protein|unclassified	0.6345582352
+UniRef50_UPI0004791B35: hypothetical protein	0.6345340486
+UniRef50_UPI0004791B35: hypothetical protein|unclassified	0.6345340486
+UniRef50_N1QK40: Amidase signature enzyme	0.6345177665
+UniRef50_N1QK40: Amidase signature enzyme|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6345177665
+UniRef50_UPI000463FA06: hypothetical protein	0.6345177665
+UniRef50_UPI000463FA06: hypothetical protein|unclassified	0.6345177665
+UniRef50_Q5LTY4: ArsC family protein	0.6345144721
+UniRef50_Q5LTY4: ArsC family protein|unclassified	0.6345144721
+UniRef50_UPI0001CBF247: regulatory protein	0.6345077142
+UniRef50_UPI0001CBF247: regulatory protein|unclassified	0.6345077142
+UniRef50_I6U393	0.6344844413
+UniRef50_I6U393|unclassified	0.6344844413
+UniRef50_UPI000466770B: BCCT transporter	0.6344794816
+UniRef50_UPI000466770B: BCCT transporter|unclassified	0.6344794816
+UniRef50_F9WPY3	0.6344104212
+UniRef50_F9WPY3|unclassified	0.6344104212
+UniRef50_Q5ZB52: Zinc knuckle containing protein-like	0.6343071674
+UniRef50_Q5ZB52: Zinc knuckle containing protein-like|unclassified	0.6343071674
+UniRef50_X3EN02: L,D-transpeptidase	0.6342843565
+UniRef50_X3EN02: L,D-transpeptidase|unclassified	0.6342843565
+UniRef50_O85128: Chemotaxis response regulator protein-glutamate methylesterase of group 1 operon	0.6342018246
+UniRef50_O85128: Chemotaxis response regulator protein-glutamate methylesterase of group 1 operon|unclassified	0.6342018246
+UniRef50_UPI000163236E: hypothetical protein	0.6340431603
+UniRef50_UPI000163236E: hypothetical protein|unclassified	0.6340431603
+UniRef50_UPI0003F164C6: PREDICTED: potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel 2-like	0.6339820413
+UniRef50_UPI0003F164C6: PREDICTED: potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel 2-like|unclassified	0.6339820413
+UniRef50_H0I3Q0: Dipeptide ABC transport system permease protein DppC (Fragment)	0.6339814640
+UniRef50_H0I3Q0: Dipeptide ABC transport system permease protein DppC (Fragment)|unclassified	0.6339814640
+UniRef50_T0TWU1: Transposase	0.6337892496
+UniRef50_T0TWU1: Transposase|unclassified	0.6337892496
+UniRef50_I4JFC2	0.6337798136
+UniRef50_I4JFC2|unclassified	0.6337798136
+UniRef50_Q92WP0: N-acetylneuraminate lyase	0.6337351232
+UniRef50_Q92WP0: N-acetylneuraminate lyase|unclassified	0.6337351232
+UniRef50_W0YQ86	0.6337135615
+UniRef50_W0YQ86|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6337135615
+UniRef50_K0S5L5	0.6336014667
+UniRef50_K0S5L5|unclassified	0.6336014667
+UniRef50_E7P9Q5: Phospholipase D/transphosphatidylase	0.6335136181
+UniRef50_E7P9Q5: Phospholipase D/transphosphatidylase|unclassified	0.6335136181
+UniRef50_G8TJ03: Beta-lactamase domain protein	0.6334645050
+UniRef50_G8TJ03: Beta-lactamase domain protein|unclassified	0.6334645050
+UniRef50_X6KT46	0.6333603781
+UniRef50_X6KT46|unclassified	0.6333603781
+UniRef50_W5V0N3: Hemagglutinin	0.6333122864
+UniRef50_W5V0N3: Hemagglutinin|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6333122864
+UniRef50_D2B3V5: Thioesterase	0.6333017652
+UniRef50_D2B3V5: Thioesterase|unclassified	0.6333017652
+UniRef50_UPI00047457DF: cyclopropane-fatty-acyl-phospholipid synthase, partial	0.6332469271
+UniRef50_UPI00047457DF: cyclopropane-fatty-acyl-phospholipid synthase, partial|unclassified	0.6332469271
+UniRef50_E0XZI6	0.6332403049
+UniRef50_E0XZI6|unclassified	0.6332403049
+UniRef50_UPI00037B162D: MULTISPECIES: hypothetical protein	0.6332200395
+UniRef50_UPI00037B162D: MULTISPECIES: hypothetical protein|unclassified	0.6332200395
+UniRef50_W5YSI9	0.6332024440
+UniRef50_W5YSI9|unclassified	0.6332024440
+UniRef50_P33693: Endo-1,3-1,4-beta-glycanase ExoK	0.6331684603
+UniRef50_P33693: Endo-1,3-1,4-beta-glycanase ExoK|unclassified	0.6331684603
+UniRef50_UPI0003B58C95: multidrug ABC transporter	0.6330945272
+UniRef50_UPI0003B58C95: multidrug ABC transporter|unclassified	0.6330945272
+UniRef50_UPI00036C33CF: hypothetical protein	0.6329834657
+UniRef50_UPI00036C33CF: hypothetical protein|unclassified	0.6329834657
+UniRef50_K0QZ68	0.6329113924
+UniRef50_K0QZ68|unclassified	0.6329113924
+UniRef50_A8TJI9	0.6328628493
+UniRef50_A8TJI9|unclassified	0.6328628493
+UniRef50_W1Y8C5	0.6328356914
+UniRef50_W1Y8C5|unclassified	0.6328356914
+UniRef50_K8DB33: tRNA(Cytosine32)-2-thiocytidine synthetase	0.6326452512
+UniRef50_K8DB33: tRNA(Cytosine32)-2-thiocytidine synthetase|unclassified	0.6326452512
+UniRef50_R5Y1H5: Cassette chromosome recombinase B	0.6326370991
+UniRef50_R5Y1H5: Cassette chromosome recombinase B|unclassified	0.6326370991
+UniRef50_UPI00029DBF7D	0.6325184555
+UniRef50_UPI00029DBF7D|unclassified	0.6325184555
+UniRef50_A0A038FVE5	0.6325110689
+UniRef50_A0A038FVE5|unclassified	0.6325110689
+UniRef50_Z9JQU8: LysR family transcriptional regulator	0.6324666960
+UniRef50_Z9JQU8: LysR family transcriptional regulator|unclassified	0.6324666960
+UniRef50_M4YY66	0.6323979170
+UniRef50_M4YY66|unclassified	0.6323979170
+UniRef50_Q3IRZ4: Urease subunit gamma	0.6323669031
+UniRef50_Q3IRZ4: Urease subunit gamma|unclassified	0.6323669031
+UniRef50_A0A018QP20: Transport protein (Fragment)	0.6323328126
+UniRef50_A0A018QP20: Transport protein (Fragment)|unclassified	0.6323328126
+UniRef50_T0EKA6: Acetyl-CoA carboxylase subunit beta domain protein	0.6322877041
+UniRef50_T0EKA6: Acetyl-CoA carboxylase subunit beta domain protein|unclassified	0.6322877041
+UniRef50_F3IHL1: Transcriptional regulator, AsnC family protein	0.6321643392
+UniRef50_F3IHL1: Transcriptional regulator, AsnC family protein|unclassified	0.6321643392
+UniRef50_UPI0003F08F99	0.6321112516
+UniRef50_UPI0003F08F99|unclassified	0.6321112516
+UniRef50_U8X9R1	0.6321050978
+UniRef50_U8X9R1|unclassified	0.6321050978
+UniRef50_X2M6Z7	0.6318912016
+UniRef50_X2M6Z7|unclassified	0.6318912016
+UniRef50_UPI000470525C: spore coat protein	0.6318887445
+UniRef50_UPI000470525C: spore coat protein|unclassified	0.6318887445
+UniRef50_UPI00036C5D7B: hypothetical protein	0.6318789035
+UniRef50_UPI00036C5D7B: hypothetical protein|unclassified	0.6318789035
+UniRef50_I6AH85	0.6318628440
+UniRef50_I6AH85|unclassified	0.6318628440
+UniRef50_W1GG11	0.6318549826
+UniRef50_W1GG11|unclassified	0.6318549826
+UniRef50_E1IZ78: Insertion element protein	0.6318528873
+UniRef50_E1IZ78: Insertion element protein|unclassified	0.6318528873
+UniRef50_F0GD65: Putative binding-protein-dependent transport system protein (Fragment)	0.6318225508
+UniRef50_F0GD65: Putative binding-protein-dependent transport system protein (Fragment)|unclassified	0.6318225508
+UniRef50_G0HDD8	0.6317119394
+UniRef50_G0HDD8|g__Propionibacterium.s__Propionibacterium_acnes	0.6317119394
+UniRef50_A1AXX8: Ribosomal RNA small subunit methyltransferase G	0.6317025374
+UniRef50_A1AXX8: Ribosomal RNA small subunit methyltransferase G|unclassified	0.6317025374
+UniRef50_D3V0E8: Tail protein X (GpX)	0.6316366104
+UniRef50_D3V0E8: Tail protein X (GpX)|unclassified	0.6316366104
+UniRef50_D3V9L8: Tail protein X (GpX)	0.6316366104
+UniRef50_D3V9L8: Tail protein X (GpX)|unclassified	0.6316366104
+UniRef50_O69241: Small heat shock protein HspD	0.6315433277
+UniRef50_O69241: Small heat shock protein HspD|unclassified	0.6315433277
+UniRef50_V0M122: Putative periplasmic esterase	0.6313566936
+UniRef50_V0M122: Putative periplasmic esterase|unclassified	0.6313566936
+UniRef50_A0A034Q4I3	0.6313131313
+UniRef50_A0A034Q4I3|unclassified	0.6313131313
+UniRef50_UPI00037E292F: Na(+)-translocating NADH-quinone reductase subunit E, partial	0.6312891561
+UniRef50_UPI00037E292F: Na(+)-translocating NADH-quinone reductase subunit E, partial|unclassified	0.6312891561
+UniRef50_C1N109: Predicted protein	0.6312291271
+UniRef50_C1N109: Predicted protein|unclassified	0.6312291271
+UniRef50_UPI000328E1F2: PREDICTED: vegetative cell wall protein gp1-like, partial	0.6312202836
+UniRef50_UPI000328E1F2: PREDICTED: vegetative cell wall protein gp1-like, partial|unclassified	0.6312202836
+UniRef50_S7Q7Y9	0.6310586165
+UniRef50_S7Q7Y9|unclassified	0.6310586165
+UniRef50_UPI00046C42D9: hypothetical protein	0.6310288167
+UniRef50_UPI00046C42D9: hypothetical protein|unclassified	0.6310288167
+UniRef50_W0YRK3: Putative thioesterase	0.6307952756
+UniRef50_W0YRK3: Putative thioesterase|unclassified	0.6307952756
+UniRef50_A4AEI0	0.6306581620
+UniRef50_A4AEI0|unclassified	0.6306581620
+UniRef50_U2YEL7	0.6305571230
+UniRef50_U2YEL7|unclassified	0.6305571230
+UniRef50_W4UG16	0.6305170240
+UniRef50_W4UG16|unclassified	0.6305170240
+UniRef50_UPI00046976AA: hypothetical protein	0.6305170240
+UniRef50_UPI00046976AA: hypothetical protein|unclassified	0.6305170240
+UniRef50_X2HWT2: Membrane protein	0.6305170240
+UniRef50_X2HWT2: Membrane protein|g__Helicobacter.s__Helicobacter_pylori	0.6305170240
+UniRef50_L0KKT8	0.6304578352
+UniRef50_L0KKT8|unclassified	0.6304578352
+UniRef50_C0DSE0: BolA-like protein	0.6304278848
+UniRef50_C0DSE0: BolA-like protein|unclassified	0.6304278848
+UniRef50_UPI000374A893: hypothetical protein	0.6304107057
+UniRef50_UPI000374A893: hypothetical protein|unclassified	0.6304107057
+UniRef50_R7PX92: Chlamydial polymorphic outer membrane protein repeat-containing domain protein	0.6303558153
+UniRef50_R7PX92: Chlamydial polymorphic outer membrane protein repeat-containing domain protein|unclassified	0.6303558153
+UniRef50_UPI0004720C75: hypothetical protein	0.6302938627
+UniRef50_UPI0004720C75: hypothetical protein|unclassified	0.6302938627
+UniRef50_UPI0001D30F07: hypothetical protein	0.6301986527
+UniRef50_UPI0001D30F07: hypothetical protein|unclassified	0.6301986527
+UniRef50_E6PTM1	0.6301427112
+UniRef50_E6PTM1|unclassified	0.6301427112
+UniRef50_W8ZM57	0.6301401381
+UniRef50_W8ZM57|unclassified	0.6301401381
+UniRef50_B0T5G6	0.6300922498
+UniRef50_B0T5G6|unclassified	0.6300922498
+UniRef50_R4NUX8: Transposase	0.6300818100
+UniRef50_R4NUX8: Transposase|unclassified	0.6300818100
+UniRef50_UPI0004773612: hypothetical protein	0.6300620757
+UniRef50_UPI0004773612: hypothetical protein|unclassified	0.6300620757
+UniRef50_UPI00046AB541: MULTISPECIES: hypothetical protein	0.6300618412
+UniRef50_UPI00046AB541: MULTISPECIES: hypothetical protein|unclassified	0.6300618412
+UniRef50_A0A017HSP4	0.6300521428
+UniRef50_A0A017HSP4|unclassified	0.6300521428
+UniRef50_B0SXH8: Transglutaminase domain protein	0.6300282634
+UniRef50_B0SXH8: Transglutaminase domain protein|unclassified	0.6300282634
+UniRef50_F1SCK4	0.6300239171
+UniRef50_F1SCK4|unclassified	0.6300239171
+UniRef50_D4SL88: L-ribulose-5-phosphate 3-epimerase UlaE	0.6300219787
+UniRef50_D4SL88: L-ribulose-5-phosphate 3-epimerase UlaE|unclassified	0.6300219787
+UniRef50_UPI000328E67C: PREDICTED: extensin-like, partial	0.6300006648
+UniRef50_UPI000328E67C: PREDICTED: extensin-like, partial|unclassified	0.6300006648
+UniRef50_B5Y813	0.6299918958
+UniRef50_B5Y813|unclassified	0.6299918958
+UniRef50_A0A017HLZ5: SlyX protein	0.6298098820
+UniRef50_A0A017HLZ5: SlyX protein|unclassified	0.6298098820
+UniRef50_F8JS49: Recombinase	0.6297229219
+UniRef50_F8JS49: Recombinase|unclassified	0.6297229219
+UniRef50_UPI00025577F0: diguanylate cyclase	0.6296921050
+UniRef50_UPI00025577F0: diguanylate cyclase|unclassified	0.6296921050
+UniRef50_UPI000471B371: hydrogenase accessory protein HypB	0.6296422107
+UniRef50_UPI000471B371: hydrogenase accessory protein HypB|unclassified	0.6296422107
+UniRef50_UPI000255A778: TetR family transcriptional regulator	0.6295602394
+UniRef50_UPI000255A778: TetR family transcriptional regulator|unclassified	0.6295602394
+UniRef50_I0ENW1: von Willebrand factor type A domain-containing protein	0.6295465025
+UniRef50_I0ENW1: von Willebrand factor type A domain-containing protein|unclassified	0.6295465025
+UniRef50_UPI0003701703: hypothetical protein	0.6294099833
+UniRef50_UPI0003701703: hypothetical protein|unclassified	0.6294099833
+UniRef50_UPI0003B6C21B: multidrug transporter	0.6293800617
+UniRef50_UPI0003B6C21B: multidrug transporter|unclassified	0.6293800617
+UniRef50_UPI0004411670: hypothetical protein DICSQDRAFT_95428	0.6292929268
+UniRef50_UPI0004411670: hypothetical protein DICSQDRAFT_95428|unclassified	0.6292929268
+UniRef50_M9RI34: Transglycosylase-like protein	0.6292609311
+UniRef50_M9RI34: Transglycosylase-like protein|unclassified	0.6292609311
+UniRef50_E6MYP0	0.6291020659
+UniRef50_E6MYP0|unclassified	0.6291020659
+UniRef50_E1HP22	0.6290113235
+UniRef50_E1HP22|unclassified	0.6290113235
+UniRef50_R6AAH6: L-fuculose phosphate aldolase	0.6289658986
+UniRef50_R6AAH6: L-fuculose phosphate aldolase|unclassified	0.6289658986
+UniRef50_V3WBL4: NAD dependent epimerase/dehydratase family protein	0.6289390435
+UniRef50_V3WBL4: NAD dependent epimerase/dehydratase family protein|unclassified	0.6289390435
+UniRef50_A8EV23: Chaperone protein HtpG	0.6289308176
+UniRef50_A8EV23: Chaperone protein HtpG|g__Helicobacter.s__Helicobacter_pylori	0.6289308176
+UniRef50_Q9PAP5	0.6289124543
+UniRef50_Q9PAP5|unclassified	0.6289124543
+UniRef50_C5T145: Transposase, IS4 family protein	0.6287239563
+UniRef50_C5T145: Transposase, IS4 family protein|unclassified	0.6287239563
+UniRef50_UPI0003827112: hypothetical protein	0.6287212405
+UniRef50_UPI0003827112: hypothetical protein|unclassified	0.6287212405
+UniRef50_UPI0003783081: hypothetical protein, partial	0.6286097008
+UniRef50_UPI0003783081: hypothetical protein, partial|unclassified	0.6286097008
+UniRef50_V7KY09	0.6285424126
+UniRef50_V7KY09|unclassified	0.6285424126
+UniRef50_A6V690	0.6285355123
+UniRef50_A6V690|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6285355123
+UniRef50_UPI0002E6EF76: hypothetical protein	0.6285264642
+UniRef50_UPI0002E6EF76: hypothetical protein|unclassified	0.6285264642
+UniRef50_UPI000467E3B3: transposase	0.6285015426
+UniRef50_UPI000467E3B3: transposase|unclassified	0.6285015426
+UniRef50_Q1GG23	0.6284892404
+UniRef50_Q1GG23|unclassified	0.6284892404
+UniRef50_D3NRG6	0.6284703622
+UniRef50_D3NRG6|unclassified	0.6284703622
+UniRef50_UPI0004724D34: hypothetical protein	0.6283717630
+UniRef50_UPI0004724D34: hypothetical protein|unclassified	0.6283717630
+UniRef50_UPI00046EE93F: hypothetical protein	0.6283382410
+UniRef50_UPI00046EE93F: hypothetical protein|unclassified	0.6283382410
+UniRef50_UPI00016A58F4: hypothetical protein, partial	0.6283205563
+UniRef50_UPI00016A58F4: hypothetical protein, partial|unclassified	0.6283205563
+UniRef50_E7SG01	0.6282800557
+UniRef50_E7SG01|unclassified	0.6282800557
+UniRef50_V0WTQ2	0.6282523347
+UniRef50_V0WTQ2|unclassified	0.6282523347
+UniRef50_C0F8H0: Transketolase (Fragment)	0.6282432236
+UniRef50_C0F8H0: Transketolase (Fragment)|unclassified	0.6282432236
+UniRef50_F3ZH00	0.6282125064
+UniRef50_F3ZH00|unclassified	0.6282125064
+UniRef50_M1V0X7	0.6281407035
+UniRef50_M1V0X7|g__Propionibacterium.s__Propionibacterium_acnes	0.6281407035
+UniRef50_B7GN27: Non-canonical purine NTP pyrophosphatase	0.6280396238
+UniRef50_B7GN27: Non-canonical purine NTP pyrophosphatase|unclassified	0.6280396238
+UniRef50_A3SNE9	0.6279641193
+UniRef50_A3SNE9|unclassified	0.6279641193
+UniRef50_UPI0003B60438: ABC transporter	0.6279463791
+UniRef50_UPI0003B60438: ABC transporter|unclassified	0.6279463791
+UniRef50_A0A011M3E9: Putative hydrolase of the alpha/beta-hydrolase fold protein	0.6278398535
+UniRef50_A0A011M3E9: Putative hydrolase of the alpha/beta-hydrolase fold protein|unclassified	0.6278398535
+UniRef50_G9AD09	0.6277606160
+UniRef50_G9AD09|unclassified	0.6277606160
+UniRef50_UPI000473C22A: hypothetical protein, partial	0.6277463905
+UniRef50_UPI000473C22A: hypothetical protein, partial|unclassified	0.6277463905
+UniRef50_J2FDS4: Mce related family protein	0.6277299279
+UniRef50_J2FDS4: Mce related family protein|unclassified	0.6277299279
+UniRef50_U0CZ19	0.6276687179
+UniRef50_U0CZ19|unclassified	0.6276687179
+UniRef50_H1W3I9	0.6276616204
+UniRef50_H1W3I9|unclassified	0.6276616204
+UniRef50_A3TPX9	0.6275594490
+UniRef50_A3TPX9|unclassified	0.6275594490
+UniRef50_UPI00037919C4: ABC transporter permease, partial	0.6275541221
+UniRef50_UPI00037919C4: ABC transporter permease, partial|unclassified	0.6275541221
+UniRef50_UPI00038BD279: PREDICTED: beta-defensin 126	0.6275366079
+UniRef50_UPI00038BD279: PREDICTED: beta-defensin 126|unclassified	0.6275366079
+UniRef50_R5R9L6	0.6274762456
+UniRef50_R5R9L6|unclassified	0.6274762456
+UniRef50_I0VCS8	0.6274184621
+UniRef50_I0VCS8|unclassified	0.6274184621
+UniRef50_K2YTY4	0.6273865106
+UniRef50_K2YTY4|unclassified	0.6273865106
+UniRef50_Q46RL8: Trans-feruloyl-CoA synthase	0.6273525721
+UniRef50_Q46RL8: Trans-feruloyl-CoA synthase|g__Acinetobacter.s__Acinetobacter_baumannii	0.6273525721
+UniRef50_UPI0004661A11: 3''-5'' exonuclease	0.6273307779
+UniRef50_UPI0004661A11: 3''-5'' exonuclease|unclassified	0.6273307779
+UniRef50_R5N6D2: DNA repair protein radA	0.6273199581
+UniRef50_R5N6D2: DNA repair protein radA|unclassified	0.6273199581
+UniRef50_W5EDM7	0.6272907424
+UniRef50_W5EDM7|unclassified	0.6272907424
+UniRef50_UPI000478598D: hypothetical protein	0.6272847942
+UniRef50_UPI000478598D: hypothetical protein|unclassified	0.6272847942
+UniRef50_S4YF45	0.6271882134
+UniRef50_S4YF45|unclassified	0.6271882134
+UniRef50_A7SZ86: Predicted protein (Fragment)	0.6271171903
+UniRef50_A7SZ86: Predicted protein (Fragment)|unclassified	0.6271171903
+UniRef50_L6YIE6: Tyrosine transporter TyrP	0.6270319772
+UniRef50_L6YIE6: Tyrosine transporter TyrP|unclassified	0.6270319772
+UniRef50_F3QCE5	0.6270194804
+UniRef50_F3QCE5|unclassified	0.6270194804
+UniRef50_W5MA12	0.6270147651
+UniRef50_W5MA12|unclassified	0.6270147651
+UniRef50_B0VRQ2	0.6269592476
+UniRef50_B0VRQ2|g__Acinetobacter.s__Acinetobacter_baumannii	0.6269592476
+UniRef50_UPI0002745673	0.6269592476
+UniRef50_UPI0002745673|unclassified	0.6269592476
+UniRef50_P43751: Pyruvate formate-lyase 1-activating enzyme	0.6268965564
+UniRef50_P43751: Pyruvate formate-lyase 1-activating enzyme|unclassified	0.6268965564
+UniRef50_B9TPL4	0.6268897579
+UniRef50_B9TPL4|unclassified	0.6268897579
+UniRef50_X6KL63	0.6268391888
+UniRef50_X6KL63|unclassified	0.6268391888
+UniRef50_P07648: RecBCD enzyme subunit RecC	0.6268153635
+UniRef50_P07648: RecBCD enzyme subunit RecC|g__Escherichia.s__Escherichia_coli	0.6268153635
+UniRef50_T5LAM1	0.6267944726
+UniRef50_T5LAM1|unclassified	0.6267944726
+UniRef50_J3NBB6	0.6266903063
+UniRef50_J3NBB6|unclassified	0.6266903063
+UniRef50_G9ZVF4	0.6266738875
+UniRef50_G9ZVF4|unclassified	0.6266738875
+UniRef50_UPI000237B002: GntR family transcriptional regulator	0.6265761042
+UniRef50_UPI000237B002: GntR family transcriptional regulator|unclassified	0.6265761042
+UniRef50_K2KBM0: Sulfite oxidase subunit YedZ	0.6265243922
+UniRef50_K2KBM0: Sulfite oxidase subunit YedZ|unclassified	0.6265243922
+UniRef50_X4UKF5	0.6263567272
+UniRef50_X4UKF5|unclassified	0.6263567272
+UniRef50_V4QZ84: Acyl-homoserine-lactone synthase	0.6263110721
+UniRef50_V4QZ84: Acyl-homoserine-lactone synthase|unclassified	0.6263110721
+UniRef50_UPI0002DF814C: hypothetical protein	0.6262536087
+UniRef50_UPI0002DF814C: hypothetical protein|unclassified	0.6262536087
+UniRef50_A1W398	0.6262392945
+UniRef50_A1W398|unclassified	0.6262392945
+UniRef50_B5F2H2: Porin thermoregulatory protein EnvY	0.6262221438
+UniRef50_B5F2H2: Porin thermoregulatory protein EnvY|unclassified	0.6262221438
+UniRef50_Q131M0: Peptidyl-tRNA hydrolase	0.6262073334
+UniRef50_Q131M0: Peptidyl-tRNA hydrolase|unclassified	0.6262073334
+UniRef50_B7H383: Fumarate reductase flavoprotein subunit	0.6261740764
+UniRef50_B7H383: Fumarate reductase flavoprotein subunit|g__Acinetobacter.s__Acinetobacter_baumannii	0.6261740764
+UniRef50_F5ZKQ5: PTS multi-domain regulator	0.6261740764
+UniRef50_F5ZKQ5: PTS multi-domain regulator|g__Streptococcus.s__Streptococcus_agalactiae	0.6261740764
+UniRef50_UPI000465403A: hypothetical protein	0.6261103266
+UniRef50_UPI000465403A: hypothetical protein|unclassified	0.6261103266
+UniRef50_UPI000350A6B3	0.6260749321
+UniRef50_UPI000350A6B3|unclassified	0.6260749321
+UniRef50_A0A059IQZ2	0.6260072127
+UniRef50_A0A059IQZ2|unclassified	0.6260072127
+UniRef50_UPI00047246F8: iron ABC transporter permease, partial	0.6258375565
+UniRef50_UPI00047246F8: iron ABC transporter permease, partial|unclassified	0.6258375565
+UniRef50_F4CXV9	0.6257822278
+UniRef50_F4CXV9|unclassified	0.6257822278
+UniRef50_UPI0003B6FFCF: glycerate kinase	0.6257822278
+UniRef50_UPI0003B6FFCF: glycerate kinase|unclassified	0.6257822278
+UniRef50_G5SGC0: Exodeoxyribonuclease V gamma chain RecC	0.6257554218
+UniRef50_G5SGC0: Exodeoxyribonuclease V gamma chain RecC|unclassified	0.6257554218
+UniRef50_X0TZU3: Marine sediment metagenome DNA, contig: S01H1_S03501	0.6257546721
+UniRef50_X0TZU3: Marine sediment metagenome DNA, contig: S01H1_S03501|unclassified	0.6257546721
+UniRef50_X2LHK6: Membrane protein	0.6257460288
+UniRef50_X2LHK6: Membrane protein|unclassified	0.6257460288
+UniRef50_W6DNG8: Putative MFS transporter	0.6257340071
+UniRef50_W6DNG8: Putative MFS transporter|unclassified	0.6257340071
+UniRef50_UPI0003B35E37: O-succinylhomoserine sulfhydrylase, partial	0.6257236907
+UniRef50_UPI0003B35E37: O-succinylhomoserine sulfhydrylase, partial|unclassified	0.6257236907
+UniRef50_M1JFM9	0.6256558932
+UniRef50_M1JFM9|unclassified	0.6256558932
+UniRef50_U4Q1E2	0.6255843257
+UniRef50_U4Q1E2|unclassified	0.6255843257
+UniRef50_T0U367: ABC transporter, substrate-binding protein	0.6255836620
+UniRef50_T0U367: ABC transporter, substrate-binding protein|unclassified	0.6255836620
+UniRef50_T8R562: Transposase insN for insertion sequence element IS911A	0.6255670692
+UniRef50_T8R562: Transposase insN for insertion sequence element IS911A|unclassified	0.6255670692
+UniRef50_UPI000374A1F2: hypothetical protein	0.6255629617
+UniRef50_UPI000374A1F2: hypothetical protein|unclassified	0.6255629617
+UniRef50_A0A021CKM7	0.6254077416
+UniRef50_A0A021CKM7|unclassified	0.6254077416
+UniRef50_V7EFM7	0.6253892502
+UniRef50_V7EFM7|unclassified	0.6253892502
+UniRef50_D9RBR2	0.6253433705
+UniRef50_D9RBR2|unclassified	0.6253433705
+UniRef50_W1W4W6: Fibrinogen-binding protein	0.6253178813
+UniRef50_W1W4W6: Fibrinogen-binding protein|unclassified	0.6253178813
+UniRef50_UPI000467F16B: hypothetical protein	0.6252136386
+UniRef50_UPI000467F16B: hypothetical protein|unclassified	0.6252136386
+UniRef50_I4UTV7	0.6251958643
+UniRef50_I4UTV7|unclassified	0.6251958643
+UniRef50_Q6Z2L5-2: Isoform 2 of Ribose-phosphate pyrophosphokinase 1, chloroplastic	0.6250270580
+UniRef50_Q6Z2L5-2: Isoform 2 of Ribose-phosphate pyrophosphokinase 1, chloroplastic|unclassified	0.6250270580
+UniRef50_UPI00042845F8: molecular chaperone Hsp33	0.6248800231
+UniRef50_UPI00042845F8: molecular chaperone Hsp33|unclassified	0.6248800231
+UniRef50_UPI00037ED53F: hypothetical protein	0.6248573697
+UniRef50_UPI00037ED53F: hypothetical protein|unclassified	0.6248573697
+UniRef50_T3QMP2: Mycolic acid cyclopropane synthetase family protein	0.6247792566
+UniRef50_T3QMP2: Mycolic acid cyclopropane synthetase family protein|unclassified	0.6247792566
+UniRef50_UPI0004746E1A: hypothetical protein	0.6246967200
+UniRef50_UPI0004746E1A: hypothetical protein|unclassified	0.6246967200
+UniRef50_UPI0003652993: hypothetical protein	0.6246518073
+UniRef50_UPI0003652993: hypothetical protein|unclassified	0.6246518073
+UniRef50_A0A034P4M4: Iron-regulated surface determinant protein H	0.6246096190
+UniRef50_A0A034P4M4: Iron-regulated surface determinant protein H|g__Staphylococcus.s__Staphylococcus_aureus	0.6246096190
+UniRef50_Q9K9Y6: Methionyl-tRNA formyltransferase	0.6245640989
+UniRef50_Q9K9Y6: Methionyl-tRNA formyltransferase|unclassified	0.6245640989
+UniRef50_Q8XT53: Glucans biosynthesis protein D 2	0.6245617113
+UniRef50_Q8XT53: Glucans biosynthesis protein D 2|unclassified	0.6245617113
+UniRef50_V9WDB1	0.6245424183
+UniRef50_V9WDB1|unclassified	0.6245424183
+UniRef50_K8CNU8: [NiFe] hydrogenase metallocenter assembly protein HypF	0.6245340537
+UniRef50_K8CNU8: [NiFe] hydrogenase metallocenter assembly protein HypF|unclassified	0.6245340537
+UniRef50_UPI0003B58F5D: TetR family transcriptional regulator	0.6245209127
+UniRef50_UPI0003B58F5D: TetR family transcriptional regulator|unclassified	0.6245209127
+UniRef50_Z2DQY5	0.6244042359
+UniRef50_Z2DQY5|unclassified	0.6244042359
+UniRef50_UPI0001911E75: heme lyase subunit NrfE, partial	0.6243735851
+UniRef50_UPI0001911E75: heme lyase subunit NrfE, partial|unclassified	0.6243735851
+UniRef50_UPI0003A602B5: AraC family transcriptional regulator	0.6242702868
+UniRef50_UPI0003A602B5: AraC family transcriptional regulator|unclassified	0.6242702868
+UniRef50_W1XZE0: 4-amino-4-deoxy-L-arabinose-phosphoundecaprenol flippase subunit ArnF	0.6242291314
+UniRef50_W1XZE0: 4-amino-4-deoxy-L-arabinose-phosphoundecaprenol flippase subunit ArnF|unclassified	0.6242291314
+UniRef50_Q8FSF1: 3-dehydroquinate dehydratase 1	0.6242277086
+UniRef50_Q8FSF1: 3-dehydroquinate dehydratase 1|unclassified	0.6242277086
+UniRef50_Q094Z8	0.6241651703
+UniRef50_Q094Z8|unclassified	0.6241651703
+UniRef50_J8K9U7	0.6241507759
+UniRef50_J8K9U7|unclassified	0.6241507759
+UniRef50_C6M328	0.6241326468
+UniRef50_C6M328|unclassified	0.6241326468
+UniRef50_A6VE15	0.6240959738
+UniRef50_A6VE15|unclassified	0.6240959738
+UniRef50_A8AF21	0.6240843832
+UniRef50_A8AF21|unclassified	0.6240843832
+UniRef50_V5I0T4: Putative proteoglycan 4 (Fragment)	0.6239976089
+UniRef50_V5I0T4: Putative proteoglycan 4 (Fragment)|unclassified	0.6239976089
+UniRef50_V1JWV7: Flagellar assembly protein H	0.6238759089
+UniRef50_V1JWV7: Flagellar assembly protein H|unclassified	0.6238759089
+UniRef50_L0A6E5: Phytoene desaturase	0.6238303182
+UniRef50_L0A6E5: Phytoene desaturase|g__Deinococcus.s__Deinococcus_radiodurans	0.6238303182
+UniRef50_UPI00037BFD00: hypothetical protein	0.6237242254
+UniRef50_UPI00037BFD00: hypothetical protein|unclassified	0.6237242254
+UniRef50_D5AUS5	0.6237184356
+UniRef50_D5AUS5|unclassified	0.6237184356
+UniRef50_J0ZQN0	0.6235239361
+UniRef50_J0ZQN0|unclassified	0.6235239361
+UniRef50_Q3JPQ2	0.6235048880
+UniRef50_Q3JPQ2|unclassified	0.6235048880
+UniRef50_K0RN45	0.6233253087
+UniRef50_K0RN45|unclassified	0.6233253087
+UniRef50_F2LGK2	0.6232181438
+UniRef50_F2LGK2|unclassified	0.6232181438
+UniRef50_U8DMS3	0.6231993148
+UniRef50_U8DMS3|unclassified	0.6231993148
+UniRef50_I7ZAU8	0.6231461584
+UniRef50_I7ZAU8|unclassified	0.6231461584
+UniRef50_UPI00034A55E9: hypothetical protein	0.6231443113
+UniRef50_UPI00034A55E9: hypothetical protein|unclassified	0.6231443113
+UniRef50_UPI0003644AD7: hypothetical protein	0.6230760029
+UniRef50_UPI0003644AD7: hypothetical protein|unclassified	0.6230760029
+UniRef50_E3ZBZ5: Putative secreted protein (Fragment)	0.6230561139
+UniRef50_E3ZBZ5: Putative secreted protein (Fragment)|unclassified	0.6230561139
+UniRef50_X3UUP2	0.6230454861
+UniRef50_X3UUP2|unclassified	0.6230454861
+UniRef50_UPI000472729B: hypothetical protein	0.6230110180
+UniRef50_UPI000472729B: hypothetical protein|unclassified	0.6230110180
+UniRef50_P34897: Serine hydroxymethyltransferase, mitochondrial	0.6229839673
+UniRef50_P34897: Serine hydroxymethyltransferase, mitochondrial|unclassified	0.6229839673
+UniRef50_Q2YXZ2	0.6228970082
+UniRef50_Q2YXZ2|unclassified	0.6228970082
+UniRef50_R4GHV6	0.6227796289
+UniRef50_R4GHV6|unclassified	0.6227796289
+UniRef50_L8J9U6	0.6227661002
+UniRef50_L8J9U6|unclassified	0.6227661002
+UniRef50_UPI00047CCF8A: hypothetical protein	0.6225384798
+UniRef50_UPI00047CCF8A: hypothetical protein|unclassified	0.6225384798
+UniRef50_T0E803: Putative membrane protein	0.6225360302
+UniRef50_T0E803: Putative membrane protein|unclassified	0.6225360302
+UniRef50_P70796	0.6224600197
+UniRef50_P70796|unclassified	0.6224600197
+UniRef50_UPI0003B3B00E: hypothetical protein	0.6224523270
+UniRef50_UPI0003B3B00E: hypothetical protein|unclassified	0.6224523270
+UniRef50_W8S602: Pyruvate carboxylase	0.6223733656
+UniRef50_W8S602: Pyruvate carboxylase|unclassified	0.6223733656
+UniRef50_X1VC56: Marine sediment metagenome DNA, contig: S12H4_S18441 (Fragment)	0.6223605547
+UniRef50_X1VC56: Marine sediment metagenome DNA, contig: S12H4_S18441 (Fragment)|unclassified	0.6223605547
+UniRef50_UPI0002BCBF5F: PREDICTED: GTPase obg-like	0.6223333529
+UniRef50_UPI0002BCBF5F: PREDICTED: GTPase obg-like|unclassified	0.6223333529
+UniRef50_UPI00035DE4CB: hypothetical protein, partial	0.6223310335
+UniRef50_UPI00035DE4CB: hypothetical protein, partial|unclassified	0.6223310335
+UniRef50_E8RVY1: Type-F conjugative transfer system protein TraW	0.6223153181
+UniRef50_E8RVY1: Type-F conjugative transfer system protein TraW|unclassified	0.6223153181
+UniRef50_J4SK30: Putative L-xylulose 5-phosphate 3-epimerase (Fragment)	0.6223028117
+UniRef50_J4SK30: Putative L-xylulose 5-phosphate 3-epimerase (Fragment)|unclassified	0.6223028117
+UniRef50_Q28VW9: OstA-like protein	0.6222423189
+UniRef50_Q28VW9: OstA-like protein|unclassified	0.6222423189
+UniRef50_UPI00047E54A0: ABC transporter permease	0.6222274674
+UniRef50_UPI00047E54A0: ABC transporter permease|unclassified	0.6222274674
+UniRef50_C0YE89	0.6221459399
+UniRef50_C0YE89|unclassified	0.6221459399
+UniRef50_UPI000466D206: 50S ribosomal protein L17	0.6221118163
+UniRef50_UPI000466D206: 50S ribosomal protein L17|unclassified	0.6221118163
+UniRef50_F0E302: Putative lipoprotein (Fragment)	0.6220824550
+UniRef50_F0E302: Putative lipoprotein (Fragment)|unclassified	0.6220824550
+UniRef50_UPI0002488527: hypothetical protein	0.6220219020
+UniRef50_UPI0002488527: hypothetical protein|unclassified	0.6220219020
+UniRef50_UPI00045434B5: PREDICTED: collagen alpha-1(I) chain-like, partial	0.6219981406
+UniRef50_UPI00045434B5: PREDICTED: collagen alpha-1(I) chain-like, partial|unclassified	0.6219981406
+UniRef50_C7MGV5	0.6219627251
+UniRef50_C7MGV5|unclassified	0.6219627251
+UniRef50_G4L724	0.6219532162
+UniRef50_G4L724|unclassified	0.6219532162
+UniRef50_UPI0003491B84: hydrolase	0.6219329405
+UniRef50_UPI0003491B84: hydrolase|unclassified	0.6219329405
+UniRef50_UPI0003B69D50: sigma-B/F/G subfamily RNA polymerase sigma-28 factor	0.6219148496
+UniRef50_UPI0003B69D50: sigma-B/F/G subfamily RNA polymerase sigma-28 factor|unclassified	0.6219148496
+UniRef50_W5X8E8	0.6218983241
+UniRef50_W5X8E8|unclassified	0.6218983241
+UniRef50_UPI00036A4123: RNA polymerase sigma 70	0.6218928903
+UniRef50_UPI00036A4123: RNA polymerase sigma 70|unclassified	0.6218928903
+UniRef50_K7RNM6: Protein translocase subunit SecD	0.6218905473
+UniRef50_K7RNM6: Protein translocase subunit SecD|g__Propionibacterium.s__Propionibacterium_acnes	0.6218905473
+UniRef50_C8KG77: Cell wall surface anchor family protein	0.6218796525
+UniRef50_C8KG77: Cell wall surface anchor family protein|unclassified	0.6218796525
+UniRef50_I6SXA7	0.6218393993
+UniRef50_I6SXA7|unclassified	0.6218393993
+UniRef50_UPI00036F3C49: hypothetical protein	0.6218119281
+UniRef50_UPI00036F3C49: hypothetical protein|unclassified	0.6218119281
+UniRef50_L1KB60	0.6217439309
+UniRef50_L1KB60|unclassified	0.6217439309
+UniRef50_UPI00047DC5A5: hypothetical protein	0.6215228926
+UniRef50_UPI00047DC5A5: hypothetical protein|unclassified	0.6215228926
+UniRef50_F6AIU7: Cbb3-type cytochrome oxidase component	0.6213168701
+UniRef50_F6AIU7: Cbb3-type cytochrome oxidase component|unclassified	0.6213168701
+UniRef50_UPI0002003A7E: exodeoxyribonuclease III, partial	0.6212292040
+UniRef50_UPI0002003A7E: exodeoxyribonuclease III, partial|unclassified	0.6212292040
+UniRef50_Q1CRC0: DNA helicase II	0.6211180124
+UniRef50_Q1CRC0: DNA helicase II|g__Helicobacter.s__Helicobacter_pylori	0.6211180124
+UniRef50_UPI00030164B5: hypothetical protein	0.6210893717
+UniRef50_UPI00030164B5: hypothetical protein|unclassified	0.6210893717
+UniRef50_Q492H6: NADH-quinone oxidoreductase subunit A	0.6209595927
+UniRef50_Q492H6: NADH-quinone oxidoreductase subunit A|unclassified	0.6209595927
+UniRef50_UPI0004695E9A: maltose acetyltransferase	0.6208867733
+UniRef50_UPI0004695E9A: maltose acetyltransferase|unclassified	0.6208867733
+UniRef50_Q5JMV3	0.6208605733
+UniRef50_Q5JMV3|unclassified	0.6208605733
+UniRef50_UPI0003070B45: hypothetical protein	0.6208472743
+UniRef50_UPI0003070B45: hypothetical protein|unclassified	0.6208472743
+UniRef50_UPI000374B747: hypothetical protein	0.6206893670
+UniRef50_UPI000374B747: hypothetical protein|unclassified	0.6206893670
+UniRef50_I5XEX7	0.6206468138
+UniRef50_I5XEX7|unclassified	0.6206468138
+UniRef50_K7URT9: Light harvesting complex mesophyll7	0.6205853267
+UniRef50_K7URT9: Light harvesting complex mesophyll7|unclassified	0.6205853267
+UniRef50_B4EF44: Phage tail protein	0.6205298222
+UniRef50_B4EF44: Phage tail protein|unclassified	0.6205298222
+UniRef50_UPI0002554F72: Fis family transcriptional regulator	0.6203423971
+UniRef50_UPI0002554F72: Fis family transcriptional regulator|unclassified	0.6203423971
+UniRef50_UPI0000306491: 50S ribosomal protein L18	0.6202977266
+UniRef50_UPI0000306491: 50S ribosomal protein L18|unclassified	0.6202977266
+UniRef50_UPI0003AAA67B: hypothetical protein	0.6202730614
+UniRef50_UPI0003AAA67B: hypothetical protein|unclassified	0.6202730614
+UniRef50_B2A074: 40-residue YVTN family beta-propeller repeat protein	0.6202650353
+UniRef50_B2A074: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.6202650353
+UniRef50_K1YNW2	0.6201227398
+UniRef50_K1YNW2|unclassified	0.6201227398
+UniRef50_UPI0003705ACB: hypothetical protein, partial	0.6200968274
+UniRef50_UPI0003705ACB: hypothetical protein, partial|unclassified	0.6200968274
+UniRef50_Q7VHW3: Dihydroxy-acid dehydratase	0.6200702463
+UniRef50_Q7VHW3: Dihydroxy-acid dehydratase|unclassified	0.6200702463
+UniRef50_Q2PYV6: DL-hydantoinase-like protein	0.6200385006
+UniRef50_Q2PYV6: DL-hydantoinase-like protein|unclassified	0.6200385006
+UniRef50_UPI000478C2DB: phosphoribosyl-ATP pyrophosphatase	0.6200173879
+UniRef50_UPI000478C2DB: phosphoribosyl-ATP pyrophosphatase|unclassified	0.6200173879
+UniRef50_A6UXM6	0.6200095797
+UniRef50_A6UXM6|unclassified	0.6200095797
+UniRef50_UPI0003647EA3: hypothetical protein	0.6199945220
+UniRef50_UPI0003647EA3: hypothetical protein|unclassified	0.6199945220
+UniRef50_A0A028V4R5	0.6199796371
+UniRef50_A0A028V4R5|unclassified	0.6199796371
+UniRef50_F9CKG9: Hydrogenase 4 membrane subunit	0.6199628022
+UniRef50_F9CKG9: Hydrogenase 4 membrane subunit|g__Escherichia.s__Escherichia_coli	0.6199628022
+UniRef50_G8VB45: Exonuclease V subunit alpha	0.6199628022
+UniRef50_G8VB45: Exonuclease V subunit alpha|g__Propionibacterium.s__Propionibacterium_acnes	0.6199628022
+UniRef50_K2GTF3	0.6195932135
+UniRef50_K2GTF3|unclassified	0.6195932135
+UniRef50_G3XDA3: Methyl-accepting chemotaxis protein CtpH	0.6195786865
+UniRef50_G3XDA3: Methyl-accepting chemotaxis protein CtpH|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6195786865
+UniRef50_Q2RN75: Ribosomal RNA small subunit methyltransferase G	0.6194914917
+UniRef50_Q2RN75: Ribosomal RNA small subunit methyltransferase G|unclassified	0.6194914917
+UniRef50_U3KRC7: Cytochrome c oxidase subunit 1 (Fragment)	0.6193875887
+UniRef50_U3KRC7: Cytochrome c oxidase subunit 1 (Fragment)|unclassified	0.6193875887
+UniRef50_M1K6Z0	0.6193721870
+UniRef50_M1K6Z0|unclassified	0.6193721870
+UniRef50_UPI0002E71874: hypothetical protein	0.6193229404
+UniRef50_UPI0002E71874: hypothetical protein|unclassified	0.6193229404
+UniRef50_UPI0004724A10: hypothetical protein, partial	0.6192639210
+UniRef50_UPI0004724A10: hypothetical protein, partial|unclassified	0.6192639210
+UniRef50_R6TDY4: ATPase/histidine kinase/DNA gyrase B/HSP90 domain protein	0.6191950464
+UniRef50_R6TDY4: ATPase/histidine kinase/DNA gyrase B/HSP90 domain protein|g__Clostridium.s__Clostridium_beijerinckii	0.6191950464
+UniRef50_T2EFZ4: Type I secretion system ATPase family protein	0.6191950464
+UniRef50_T2EFZ4: Type I secretion system ATPase family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6191950464
+UniRef50_U3HFR2	0.6191061102
+UniRef50_U3HFR2|unclassified	0.6191061102
+UniRef50_U3TQ59: Extracellular protein	0.6189831611
+UniRef50_U3TQ59: Extracellular protein|unclassified	0.6189831611
+UniRef50_UPI0002B415BE: PREDICTED: nodulation protein NolA-like, partial	0.6189475817
+UniRef50_UPI0002B415BE: PREDICTED: nodulation protein NolA-like, partial|unclassified	0.6189475817
+UniRef50_A6V127	0.6189368519
+UniRef50_A6V127|unclassified	0.6189368519
+UniRef50_O34744: Uroporphyrinogen-III C-methyltransferase	0.6189034238
+UniRef50_O34744: Uroporphyrinogen-III C-methyltransferase|unclassified	0.6189034238
+UniRef50_A8NT37	0.6189008841
+UniRef50_A8NT37|unclassified	0.6189008841
+UniRef50_Q3JQP4	0.6188835456
+UniRef50_Q3JQP4|unclassified	0.6188835456
+UniRef50_UPI000404E1BA: hypothetical protein	0.6188316824
+UniRef50_UPI000404E1BA: hypothetical protein|unclassified	0.6188316824
+UniRef50_C3MH79: Enoyl-CoA hydratase/isomerase/3-hydroxyacyl-CoA dehydrogenase	0.6188118812
+UniRef50_C3MH79: Enoyl-CoA hydratase/isomerase/3-hydroxyacyl-CoA dehydrogenase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.6188118812
+UniRef50_UPI0002DF017A: hypothetical protein	0.6187206649
+UniRef50_UPI0002DF017A: hypothetical protein|unclassified	0.6187206649
+UniRef50_G4ZHI5	0.6186694448
+UniRef50_G4ZHI5|unclassified	0.6186694448
+UniRef50_Q9RZ59	0.6185839859
+UniRef50_Q9RZ59|unclassified	0.6185839859
+UniRef50_UPI000440198D: PREDICTED: centrosomal protein of 78 kDa-like	0.6185438351
+UniRef50_UPI000440198D: PREDICTED: centrosomal protein of 78 kDa-like|unclassified	0.6185438351
+UniRef50_W4U410: Lysophospholipase L2	0.6184410374
+UniRef50_W4U410: Lysophospholipase L2|unclassified	0.6184410374
+UniRef50_B6JN53: Polyribonucleotide nucleotidyltransferase	0.6184291899
+UniRef50_B6JN53: Polyribonucleotide nucleotidyltransferase|g__Helicobacter.s__Helicobacter_pylori	0.6184291899
+UniRef50_Q2JH30: CRISPR-associated protein, Cse1 family	0.6184291899
+UniRef50_Q2JH30: CRISPR-associated protein, Cse1 family|unclassified	0.6184291899
+UniRef50_K2GS32	0.6183949435
+UniRef50_K2GS32|unclassified	0.6183949435
+UniRef50_E1V871	0.6182800041
+UniRef50_E1V871|unclassified	0.6182800041
+UniRef50_UPI0004677246: phosphocarrier protein HPr	0.6182378714
+UniRef50_UPI0004677246: phosphocarrier protein HPr|unclassified	0.6182378714
+UniRef50_W6KP58	0.6182159541
+UniRef50_W6KP58|unclassified	0.6182159541
+UniRef50_W1XHI6: ABC-2 type transporter (Fragment)	0.6180823262
+UniRef50_W1XHI6: ABC-2 type transporter (Fragment)|unclassified	0.6180823262
+UniRef50_E7UD27	0.6180768940
+UniRef50_E7UD27|unclassified	0.6180768940
+UniRef50_J0JC91	0.6179729328
+UniRef50_J0JC91|unclassified	0.6179729328
+UniRef50_J3JI35	0.6178560395
+UniRef50_J3JI35|unclassified	0.6178560395
+UniRef50_Q0BTL1: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	0.6178447692
+UniRef50_Q0BTL1: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|unclassified	0.6178447692
+UniRef50_Q43973: 3-oxoadipate CoA-transferase subunit A	0.6178428271
+UniRef50_Q43973: 3-oxoadipate CoA-transferase subunit A|unclassified	0.6178428271
+UniRef50_A1U4Z9: Urease subunit beta	0.6177811789
+UniRef50_A1U4Z9: Urease subunit beta|unclassified	0.6177811789
+UniRef50_A0A031G9K4	0.6177682543
+UniRef50_A0A031G9K4|unclassified	0.6177682543
+UniRef50_Q6Z707: Non-ribosomal peptide synthetase modules and related proteins-like	0.6176842599
+UniRef50_Q6Z707: Non-ribosomal peptide synthetase modules and related proteins-like|unclassified	0.6176842599
+UniRef50_Q02CU2: NADH-quinone oxidoreductase subunit A	0.6176720972
+UniRef50_Q02CU2: NADH-quinone oxidoreductase subunit A|unclassified	0.6176720972
+UniRef50_UPI0003772F6B: hypothetical protein	0.6176566628
+UniRef50_UPI0003772F6B: hypothetical protein|unclassified	0.6176566628
+UniRef50_X9TTS7: Sensor protein vRas	0.6176563166
+UniRef50_X9TTS7: Sensor protein vRas|unclassified	0.6176563166
+UniRef50_A0A011ADX1	0.6176339007
+UniRef50_A0A011ADX1|unclassified	0.6176339007
+UniRef50_UPI00036C6F37: hypothetical protein	0.6175969005
+UniRef50_UPI00036C6F37: hypothetical protein|unclassified	0.6175969005
+UniRef50_Q0F8K1	0.6175175854
+UniRef50_Q0F8K1|unclassified	0.6175175854
+UniRef50_X8FMZ6: ProVL domain protein	0.6175128535
+UniRef50_X8FMZ6: ProVL domain protein|unclassified	0.6175128535
+UniRef50_UPI00047B8B98: hypothetical protein	0.6174586892
+UniRef50_UPI00047B8B98: hypothetical protein|unclassified	0.6174586892
+UniRef50_S5YCT3: Head-tail connector protein	0.6174510020
+UniRef50_S5YCT3: Head-tail connector protein|unclassified	0.6174510020
+UniRef50_UPI0003B48CBD: TetR family transcriptional regulator	0.6174195199
+UniRef50_UPI0003B48CBD: TetR family transcriptional regulator|unclassified	0.6174195199
+UniRef50_R6AES1	0.6174137436
+UniRef50_R6AES1|unclassified	0.6174137436
+UniRef50_UPI000287FF3A: alcohol dehydrogenase	0.6173992315
+UniRef50_UPI000287FF3A: alcohol dehydrogenase|unclassified	0.6173992315
+UniRef50_UPI00036D6F8A: hypothetical protein	0.6173756981
+UniRef50_UPI00036D6F8A: hypothetical protein|unclassified	0.6173756981
+UniRef50_UPI0003B3C038: glutathione peroxidase	0.6172758603
+UniRef50_UPI0003B3C038: glutathione peroxidase|unclassified	0.6172758603
+UniRef50_P49727: Cytochrome b-c1 complex subunit Rieske, mitochondrial	0.6172519316
+UniRef50_P49727: Cytochrome b-c1 complex subunit Rieske, mitochondrial|unclassified	0.6172519316
+UniRef50_UPI0003A6ABB5: sulfonate ABC transporter ATP-binding protein	0.6172474089
+UniRef50_UPI0003A6ABB5: sulfonate ABC transporter ATP-binding protein|unclassified	0.6172474089
+UniRef50_UPI00046815BF: hypothetical protein	0.6170220723
+UniRef50_UPI00046815BF: hypothetical protein|unclassified	0.6170220723
+UniRef50_UPI00046F03A6: histidine kinase	0.6169350554
+UniRef50_UPI00046F03A6: histidine kinase|unclassified	0.6169350554
+UniRef50_K0S4V3	0.6169031462
+UniRef50_K0S4V3|unclassified	0.6169031462
+UniRef50_E7C3U5	0.6167793813
+UniRef50_E7C3U5|unclassified	0.6167793813
+UniRef50_U2BSH5: Glyoxalase family protein	0.6167507834
+UniRef50_U2BSH5: Glyoxalase family protein|unclassified	0.6167507834
+UniRef50_G4T1H8	0.6166846488
+UniRef50_G4T1H8|unclassified	0.6166846488
+UniRef50_UPI00035D4942: hypothetical protein, partial	0.6166486903
+UniRef50_UPI00035D4942: hypothetical protein, partial|unclassified	0.6166486903
+UniRef50_C6AN19: Gst protein	0.6166028265
+UniRef50_C6AN19: Gst protein|unclassified	0.6166028265
+UniRef50_S9N2M1	0.6165872225
+UniRef50_S9N2M1|unclassified	0.6165872225
+UniRef50_UPI00036C4EE0: hypothetical protein	0.6165123869
+UniRef50_UPI00036C4EE0: hypothetical protein|unclassified	0.6165123869
+UniRef50_UPI00035DF1AC: 50S ribosomal protein L15	0.6164748000
+UniRef50_UPI00035DF1AC: 50S ribosomal protein L15|unclassified	0.6164748000
+UniRef50_UPI00040E9693: succinate dehydrogenase	0.6163890733
+UniRef50_UPI00040E9693: succinate dehydrogenase|unclassified	0.6163890733
+UniRef50_UPI00032AE9F5: PREDICTED: skin secretory protein xP2-like	0.6161429452
+UniRef50_UPI00032AE9F5: PREDICTED: skin secretory protein xP2-like|unclassified	0.6161429452
+UniRef50_X1K1Y8: Marine sediment metagenome DNA, contig: S03H2_S23289 (Fragment)	0.6161356726
+UniRef50_X1K1Y8: Marine sediment metagenome DNA, contig: S03H2_S23289 (Fragment)|unclassified	0.6161356726
+UniRef50_Q7UTP4: Glycerol kinase	0.6160911897
+UniRef50_Q7UTP4: Glycerol kinase|unclassified	0.6160911897
+UniRef50_X0W3N8: Marine sediment metagenome DNA, contig: S01H1_S15953 (Fragment)	0.6160624461
+UniRef50_X0W3N8: Marine sediment metagenome DNA, contig: S01H1_S15953 (Fragment)|unclassified	0.6160624461
+UniRef50_J9P253	0.6158213455
+UniRef50_J9P253|unclassified	0.6158213455
+UniRef50_UPI00036A2A76: hypothetical protein	0.6157635468
+UniRef50_UPI00036A2A76: hypothetical protein|unclassified	0.6157635468
+UniRef50_UPI0004702790: hypothetical protein	0.6157373440
+UniRef50_UPI0004702790: hypothetical protein|unclassified	0.6157373440
+UniRef50_UPI0002D8391B: hypothetical protein	0.6156958446
+UniRef50_UPI0002D8391B: hypothetical protein|unclassified	0.6156958446
+UniRef50_UPI0002DF27A4: hypothetical protein	0.6156819389
+UniRef50_UPI0002DF27A4: hypothetical protein|unclassified	0.6156819389
+UniRef50_Q8TGY6: Ribonuclease P protein component 1	0.6156485357
+UniRef50_Q8TGY6: Ribonuclease P protein component 1|unclassified	0.6156485357
+UniRef50_D9XU17: Anti-sigma B factor RsbT (Fragment)	0.6156078186
+UniRef50_D9XU17: Anti-sigma B factor RsbT (Fragment)|unclassified	0.6156078186
+UniRef50_G9ZVA2	0.6155429665
+UniRef50_G9ZVA2|unclassified	0.6155429665
+UniRef50_UPI0002EC7919: citrate lyase	0.6154631152
+UniRef50_UPI0002EC7919: citrate lyase|unclassified	0.6154631152
+UniRef50_W1X7H9: Formate-dependent nitrite reductase complex subunit NrfF (Fragment)	0.6154110258
+UniRef50_W1X7H9: Formate-dependent nitrite reductase complex subunit NrfF (Fragment)|unclassified	0.6154110258
+UniRef50_UPI000371F232: hypothetical protein	0.6153938478
+UniRef50_UPI000371F232: hypothetical protein|unclassified	0.6153938478
+UniRef50_B7US81: Predicted tail fiber protein	0.6153846154
+UniRef50_B7US81: Predicted tail fiber protein|g__Escherichia.s__Escherichia_coli	0.6153846154
+UniRef50_M2PIC6	0.6153126573
+UniRef50_M2PIC6|unclassified	0.6153126573
+UniRef50_UPI00037A70D4: hypothetical protein	0.6152859202
+UniRef50_UPI00037A70D4: hypothetical protein|unclassified	0.6152859202
+UniRef50_H0J5U8: Beta-lactamase-like protein	0.6152649686
+UniRef50_H0J5U8: Beta-lactamase-like protein|unclassified	0.6152649686
+UniRef50_N3SI82	0.6152245697
+UniRef50_N3SI82|unclassified	0.6152245697
+UniRef50_UPI000366A6AC: molybdenum ABC transporter permease, partial	0.6152239512
+UniRef50_UPI000366A6AC: molybdenum ABC transporter permease, partial|unclassified	0.6152239512
+UniRef50_UPI0003B68B76: ETC complex I subunit, partial	0.6152099525
+UniRef50_UPI0003B68B76: ETC complex I subunit, partial|unclassified	0.6152099525
+UniRef50_UPI0003B39972: LuxR family transcriptional regulator	0.6152069312
+UniRef50_UPI0003B39972: LuxR family transcriptional regulator|unclassified	0.6152069312
+UniRef50_F2ABV1	0.6151859779
+UniRef50_F2ABV1|unclassified	0.6151859779
+UniRef50_R6Q3U4	0.6150448344
+UniRef50_R6Q3U4|unclassified	0.6150448344
+UniRef50_F0JDG6: TRAP transporter solute receptor, TAXI family	0.6150253652
+UniRef50_F0JDG6: TRAP transporter solute receptor, TAXI family|unclassified	0.6150253652
+UniRef50_D2HPR8	0.6150061501
+UniRef50_D2HPR8|unclassified	0.6150061501
+UniRef50_UPI000422BE1C: hypothetical protein	0.6150021537
+UniRef50_UPI000422BE1C: hypothetical protein|unclassified	0.6150021537
+UniRef50_T8CXA8: Phosphatase yihX	0.6149870490
+UniRef50_T8CXA8: Phosphatase yihX|unclassified	0.6149870490
+UniRef50_UPI0003643384: hypothetical protein	0.6149815930
+UniRef50_UPI0003643384: hypothetical protein|unclassified	0.6149815930
+UniRef50_F7YPZ5: CorB	0.6149394859
+UniRef50_F7YPZ5: CorB|unclassified	0.6149394859
+UniRef50_O31632: Cystathionine beta-lyase MetC	0.6148681674
+UniRef50_O31632: Cystathionine beta-lyase MetC|unclassified	0.6148681674
+UniRef50_UPI00046A09B3: hypothetical protein, partial	0.6148512454
+UniRef50_UPI00046A09B3: hypothetical protein, partial|unclassified	0.6148512454
+UniRef50_T8MKY9: Hydrogenase-4 component B	0.6148068695
+UniRef50_T8MKY9: Hydrogenase-4 component B|unclassified	0.6148068695
+UniRef50_Q82K60	0.6147959834
+UniRef50_Q82K60|unclassified	0.6147959834
+UniRef50_UPI000462EF2C: hypothetical protein	0.6147699951
+UniRef50_UPI000462EF2C: hypothetical protein|unclassified	0.6147699951
+UniRef50_UPI0003656A74: hypothetical protein	0.6147548255
+UniRef50_UPI0003656A74: hypothetical protein|unclassified	0.6147548255
+UniRef50_UPI000372735A: hypothetical protein, partial	0.6147274612
+UniRef50_UPI000372735A: hypothetical protein, partial|unclassified	0.6147274612
+UniRef50_X5QBZ8	0.6146548747
+UniRef50_X5QBZ8|unclassified	0.6146548747
+UniRef50_UPI00047D0FD3: isopentenyl-diphosphate delta-isomerase	0.6146358706
+UniRef50_UPI00047D0FD3: isopentenyl-diphosphate delta-isomerase|unclassified	0.6146358706
+UniRef50_F2AAD5	0.6146281500
+UniRef50_F2AAD5|unclassified	0.6146281500
+UniRef50_Q9HUW6: Methyl-accepting chemotaxis protein CtpL	0.6146281500
+UniRef50_Q9HUW6: Methyl-accepting chemotaxis protein CtpL|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6146281500
+UniRef50_U3T7G8	0.6146281500
+UniRef50_U3T7G8|g__Acinetobacter.s__Acinetobacter_baumannii	0.6146281500
+UniRef50_UPI00046EF3B8: hypothetical protein, partial	0.6146136548
+UniRef50_UPI00046EF3B8: hypothetical protein, partial|unclassified	0.6146136548
+UniRef50_F3CEN3: Membrane protein (Fragment)	0.6146121150
+UniRef50_F3CEN3: Membrane protein (Fragment)|unclassified	0.6146121150
+UniRef50_A7IPT5	0.6145835207
+UniRef50_A7IPT5|unclassified	0.6145835207
+UniRef50_UPI0003703469: ATP-binding protein, partial	0.6145759216
+UniRef50_UPI0003703469: ATP-binding protein, partial|unclassified	0.6145759216
+UniRef50_A0A014MGB4	0.6143161667
+UniRef50_A0A014MGB4|unclassified	0.6143161667
+UniRef50_UPI00045EADF9: carbamate kinase	0.6142877070
+UniRef50_UPI00045EADF9: carbamate kinase|unclassified	0.6142877070
+UniRef50_A5F379: DNA repair protein RecN	0.6142506143
+UniRef50_A5F379: DNA repair protein RecN|g__Escherichia.s__Escherichia_coli	0.6142506143
+UniRef50_A9H0G7: Conserved protein	0.6141764134
+UniRef50_A9H0G7: Conserved protein|unclassified	0.6141764134
+UniRef50_UPI0002E3639B: cysteine ABC transporter ATP-binding protein	0.6141285564
+UniRef50_UPI0002E3639B: cysteine ABC transporter ATP-binding protein|unclassified	0.6141285564
+UniRef50_X1K791: Marine sediment metagenome DNA, contig: S06H3_L05102	0.6141145331
+UniRef50_X1K791: Marine sediment metagenome DNA, contig: S06H3_L05102|unclassified	0.6141145331
+UniRef50_UPI00036FC324: membrane protein, partial	0.6139689718
+UniRef50_UPI00036FC324: membrane protein, partial|unclassified	0.6139689718
+UniRef50_UPI00036F2E4F: hypothetical protein	0.6139529442
+UniRef50_UPI00036F2E4F: hypothetical protein|unclassified	0.6139529442
+UniRef50_J9GQN4	0.6139244812
+UniRef50_J9GQN4|unclassified	0.6139244812
+UniRef50_U3TX18: Cupin 4 family protein	0.6138914262
+UniRef50_U3TX18: Cupin 4 family protein|unclassified	0.6138914262
+UniRef50_UPI0003805692: hypothetical protein, partial	0.6137764634
+UniRef50_UPI0003805692: hypothetical protein, partial|unclassified	0.6137764634
+UniRef50_UPI0002D876C2: hypothetical protein	0.6137117738
+UniRef50_UPI0002D876C2: hypothetical protein|unclassified	0.6137117738
+UniRef50_A0A052IF19: PF13663 domain protein	0.6137000582
+UniRef50_A0A052IF19: PF13663 domain protein|unclassified	0.6137000582
+UniRef50_A9GJ97	0.6136814583
+UniRef50_A9GJ97|unclassified	0.6136814583
+UniRef50_F0KKH9	0.6136097130
+UniRef50_F0KKH9|unclassified	0.6136097130
+UniRef50_D4ZJT9	0.6136084778
+UniRef50_D4ZJT9|unclassified	0.6136084778
+UniRef50_D5WYV6: Cyclase/dehydrase	0.6135887912
+UniRef50_D5WYV6: Cyclase/dehydrase|unclassified	0.6135887912
+UniRef50_V0VE21	0.6135026416
+UniRef50_V0VE21|unclassified	0.6135026416
+UniRef50_UPI0002F7F772: hypothetical protein	0.6134997635
+UniRef50_UPI0002F7F772: hypothetical protein|unclassified	0.6134997635
+UniRef50_V9D384	0.6134969325
+UniRef50_V9D384|unclassified	0.6134969325
+UniRef50_K2S1W9	0.6134708159
+UniRef50_K2S1W9|unclassified	0.6134708159
+UniRef50_UPI00037D9183: hypothetical protein	0.6134531831
+UniRef50_UPI00037D9183: hypothetical protein|unclassified	0.6134531831
+UniRef50_K1JKI8	0.6132503379
+UniRef50_K1JKI8|unclassified	0.6132503379
+UniRef50_L8GN65	0.6132223854
+UniRef50_L8GN65|unclassified	0.6132223854
+UniRef50_Q89P00: 60 kDa chaperonin 4	0.6131207848
+UniRef50_Q89P00: 60 kDa chaperonin 4|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.6131207848
+UniRef50_H5SL79: Hypothetical conserved protein	0.6130841915
+UniRef50_H5SL79: Hypothetical conserved protein|unclassified	0.6130841915
+UniRef50_UPI0002EBAF2D: hypothetical protein	0.6130787571
+UniRef50_UPI0002EBAF2D: hypothetical protein|unclassified	0.6130787571
+UniRef50_UPI00046484AC: hypothetical protein	0.6129843673
+UniRef50_UPI00046484AC: hypothetical protein|unclassified	0.6129843673
+UniRef50_UPI00047A2662: hypothetical protein	0.6129093487
+UniRef50_UPI00047A2662: hypothetical protein|unclassified	0.6129093487
+UniRef50_UPI00036591FC: hypothetical protein	0.6128904787
+UniRef50_UPI00036591FC: hypothetical protein|unclassified	0.6128904787
+UniRef50_B5ZU57: Transcriptional regulator, AsnC family	0.6127534137
+UniRef50_B5ZU57: Transcriptional regulator, AsnC family|unclassified	0.6127534137
+UniRef50_Q08860: Flagellin	0.6127450980
+UniRef50_Q08860: Flagellin|g__Escherichia.s__Escherichia_coli	0.6127450980
+UniRef50_R5BEJ3	0.6127450980
+UniRef50_R5BEJ3|g__Clostridium.s__Clostridium_beijerinckii	0.6127450980
+UniRef50_UPI0004727C16: hypothetical protein, partial	0.6126773807
+UniRef50_UPI0004727C16: hypothetical protein, partial|unclassified	0.6126773807
+UniRef50_UPI0003B53E16: hypothetical protein, partial	0.6126106812
+UniRef50_UPI0003B53E16: hypothetical protein, partial|unclassified	0.6126106812
+UniRef50_W4LU01	0.6124925416
+UniRef50_W4LU01|unclassified	0.6124925416
+UniRef50_A0A024E7Q0	0.6124525495
+UniRef50_A0A024E7Q0|unclassified	0.6124525495
+UniRef50_UPI0003F0CB72: PREDICTED: 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial-like	0.6124250064
+UniRef50_UPI0003F0CB72: PREDICTED: 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial-like|unclassified	0.6124250064
+UniRef50_UPI00036EEC15: hypothetical protein	0.6124231309
+UniRef50_UPI00036EEC15: hypothetical protein|unclassified	0.6124231309
+UniRef50_C6URE9: Predicted inner membrane protein	0.6124192830
+UniRef50_C6URE9: Predicted inner membrane protein|unclassified	0.6124192830
+UniRef50_Q96PE7: Methylmalonyl-CoA epimerase, mitochondrial	0.6123984130
+UniRef50_Q96PE7: Methylmalonyl-CoA epimerase, mitochondrial|unclassified	0.6123984130
+UniRef50_C9U024: Replication initiation protein RepC	0.6122830504
+UniRef50_C9U024: Replication initiation protein RepC|unclassified	0.6122830504
+UniRef50_N3FLX6: Antirestriction family protein	0.6122565827
+UniRef50_N3FLX6: Antirestriction family protein|unclassified	0.6122565827
+UniRef50_UPI0004703186: chemotaxis protein CheY, partial	0.6122556970
+UniRef50_UPI0004703186: chemotaxis protein CheY, partial|unclassified	0.6122556970
+UniRef50_UPI0003646727: hypothetical protein	0.6122527511
+UniRef50_UPI0003646727: hypothetical protein|unclassified	0.6122527511
+UniRef50_UPI00036AADB4: hypothetical protein	0.6122351149
+UniRef50_UPI00036AADB4: hypothetical protein|unclassified	0.6122351149
+UniRef50_C5BI96: CsbD family protein	0.6121987466
+UniRef50_C5BI96: CsbD family protein|unclassified	0.6121987466
+UniRef50_UPI00030ECECA: hypothetical protein	0.6121643751
+UniRef50_UPI00030ECECA: hypothetical protein|unclassified	0.6121643751
+UniRef50_UPI000372C9B6: MULTISPECIES: hypothetical protein	0.6121428387
+UniRef50_UPI000372C9B6: MULTISPECIES: hypothetical protein|unclassified	0.6121428387
+UniRef50_UPI00036A48DC: hypothetical protein	0.6120447882
+UniRef50_UPI00036A48DC: hypothetical protein|unclassified	0.6120447882
+UniRef50_W5FVF8	0.6120424764
+UniRef50_W5FVF8|unclassified	0.6120424764
+UniRef50_C3Z7Q3	0.6120144604
+UniRef50_C3Z7Q3|unclassified	0.6120144604
+UniRef50_X1GQI3: Marine sediment metagenome DNA, contig: S03H2_L00297 (Fragment)	0.6119795010
+UniRef50_X1GQI3: Marine sediment metagenome DNA, contig: S03H2_L00297 (Fragment)|unclassified	0.6119795010
+UniRef50_B3N8U3: GG24595	0.6119654262
+UniRef50_B3N8U3: GG24595|unclassified	0.6119654262
+UniRef50_UPI0003772EED: hypothetical protein, partial	0.6119594675
+UniRef50_UPI0003772EED: hypothetical protein, partial|unclassified	0.6119594675
+UniRef50_V3DE51	0.6119367039
+UniRef50_V3DE51|unclassified	0.6119367039
+UniRef50_UPI0003C864D2	0.6118911766
+UniRef50_UPI0003C864D2|unclassified	0.6118911766
+UniRef50_F2UE79	0.6118891480
+UniRef50_F2UE79|unclassified	0.6118891480
+UniRef50_UPI000383DDB2: PREDICTED: protein argonaute 14-like	0.6117531413
+UniRef50_UPI000383DDB2: PREDICTED: protein argonaute 14-like|unclassified	0.6117531413
+UniRef50_M4S6Z7	0.6116564990
+UniRef50_M4S6Z7|unclassified	0.6116564990
+UniRef50_A0A023YXD9: Anaerobic dimethyl sulfoxide reductase chain A	0.6116207951
+UniRef50_A0A023YXD9: Anaerobic dimethyl sulfoxide reductase chain A|g__Escherichia.s__Escherichia_coli	0.6116207951
+UniRef50_UPI00037BAF31: hypothetical protein	0.6115838157
+UniRef50_UPI00037BAF31: hypothetical protein|unclassified	0.6115838157
+UniRef50_C3SWK9: Prepilin peptidase dependent protein B	0.6115272562
+UniRef50_C3SWK9: Prepilin peptidase dependent protein B|unclassified	0.6115272562
+UniRef50_E3F1W0	0.6114966628
+UniRef50_E3F1W0|unclassified	0.6114966628
+UniRef50_M3YVB7	0.6114610522
+UniRef50_M3YVB7|unclassified	0.6114610522
+UniRef50_X7XQH0	0.6114265663
+UniRef50_X7XQH0|unclassified	0.6114265663
+UniRef50_A4N2A6: Thioredoxin reductase	0.6113812354
+UniRef50_A4N2A6: Thioredoxin reductase|unclassified	0.6113812354
+UniRef50_R1DRR6	0.6113787731
+UniRef50_R1DRR6|unclassified	0.6113787731
+UniRef50_W1BVW4	0.6113353327
+UniRef50_W1BVW4|unclassified	0.6113353327
+UniRef50_X1Y726	0.6113221719
+UniRef50_X1Y726|unclassified	0.6113221719
+UniRef50_A0A010S167	0.6112950045
+UniRef50_A0A010S167|unclassified	0.6112950045
+UniRef50_UPI00035EAC6C: hypothetical protein, partial	0.6112500316
+UniRef50_UPI00035EAC6C: hypothetical protein, partial|unclassified	0.6112500316
+UniRef50_E1NZW5: PspA-related protein	0.6112469438
+UniRef50_E1NZW5: PspA-related protein|g__Neisseria.s__Neisseria_meningitidis	0.6112469438
+UniRef50_UPI0003685835: hypothetical protein	0.6111855439
+UniRef50_UPI0003685835: hypothetical protein|unclassified	0.6111855439
+UniRef50_R8R2F0	0.6111066146
+UniRef50_R8R2F0|unclassified	0.6111066146
+UniRef50_F4DN99: UPF0235 protein MDS_4479	0.6110887433
+UniRef50_F4DN99: UPF0235 protein MDS_4479|unclassified	0.6110887433
+UniRef50_L8JG77: Membrane fusion component of tripartite multidrug resistance system	0.6110838377
+UniRef50_L8JG77: Membrane fusion component of tripartite multidrug resistance system|unclassified	0.6110838377
+UniRef50_S6HAL4: Outer membrane efflux protein (Fragment)	0.6110352464
+UniRef50_S6HAL4: Outer membrane efflux protein (Fragment)|unclassified	0.6110352464
+UniRef50_J2X2Q6	0.6110217213
+UniRef50_J2X2Q6|unclassified	0.6110217213
+UniRef50_D5SSK6: Beta-Ig-H3/fasciclin	0.6110140837
+UniRef50_D5SSK6: Beta-Ig-H3/fasciclin|unclassified	0.6110140837
+UniRef50_M9R255	0.6108904082
+UniRef50_M9R255|unclassified	0.6108904082
+UniRef50_X2HS12: Multidrug transporter	0.6108735492
+UniRef50_X2HS12: Multidrug transporter|g__Helicobacter.s__Helicobacter_pylori	0.6108735492
+UniRef50_UPI000347AA8F: hypothetical protein	0.6108607296
+UniRef50_UPI000347AA8F: hypothetical protein|unclassified	0.6108607296
+UniRef50_C6Z4X7: SusD family protein	0.6107961194
+UniRef50_C6Z4X7: SusD family protein|unclassified	0.6107961194
+UniRef50_UPI000382BA5B: DNA glycosylase	0.6106549987
+UniRef50_UPI000382BA5B: DNA glycosylase|unclassified	0.6106549987
+UniRef50_A8FNH9: Carboxynorspermidine/carboxyspermidine decarboxylase	0.6105866974
+UniRef50_A8FNH9: Carboxynorspermidine/carboxyspermidine decarboxylase|unclassified	0.6105866974
+UniRef50_UPI0002D43593: multidrug transporter	0.6105113855
+UniRef50_UPI0002D43593: multidrug transporter|unclassified	0.6105113855
+UniRef50_K2ME74	0.6105028763
+UniRef50_K2ME74|unclassified	0.6105028763
+UniRef50_A3M585	0.6105006105
+UniRef50_A3M585|g__Acinetobacter.s__Acinetobacter_baumannii	0.6105006105
+UniRef50_UPI0003B6D4FD: GDSL family lipase	0.6104432446
+UniRef50_UPI0003B6D4FD: GDSL family lipase|unclassified	0.6104432446
+UniRef50_A2VQK0	0.6103501512
+UniRef50_A2VQK0|unclassified	0.6103501512
+UniRef50_G8X1G1: Triacylglycerol lipase	0.6103421305
+UniRef50_G8X1G1: Triacylglycerol lipase|unclassified	0.6103421305
+UniRef50_Q2SPQ1: Chemotaxis response regulator protein-glutamate methylesterase 1	0.6102700440
+UniRef50_Q2SPQ1: Chemotaxis response regulator protein-glutamate methylesterase 1|unclassified	0.6102700440
+UniRef50_M4SAI5	0.6102691388
+UniRef50_M4SAI5|unclassified	0.6102691388
+UniRef50_T7FSW8	0.6102062665
+UniRef50_T7FSW8|unclassified	0.6102062665
+UniRef50_V7VE21: CRISPR-associated protein Cas3 (Fragment)	0.6101830381
+UniRef50_V7VE21: CRISPR-associated protein Cas3 (Fragment)|unclassified	0.6101830381
+UniRef50_F0MTV5: MafB family protein	0.6101281269
+UniRef50_F0MTV5: MafB family protein|g__Neisseria.s__Neisseria_meningitidis	0.6101281269
+UniRef50_UPI0003827005: 50S ribosomal protein L11	0.6100966914
+UniRef50_UPI0003827005: 50S ribosomal protein L11|unclassified	0.6100966914
+UniRef50_UPI00037B806C: hypothetical protein	0.6100813436
+UniRef50_UPI00037B806C: hypothetical protein|unclassified	0.6100813436
+UniRef50_W0Z1M1	0.6100451121
+UniRef50_W0Z1M1|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6100451121
+UniRef50_W1H0Z7	0.6099352260
+UniRef50_W1H0Z7|unclassified	0.6099352260
+UniRef50_UPI000370C492: hypothetical protein	0.6098534779
+UniRef50_UPI000370C492: hypothetical protein|unclassified	0.6098534779
+UniRef50_E4NK07	0.6098148964
+UniRef50_E4NK07|unclassified	0.6098148964
+UniRef50_UPI000413E5D3: acetyltransferase	0.6097927729
+UniRef50_UPI000413E5D3: acetyltransferase|unclassified	0.6097927729
+UniRef50_Q1RKC5: Penicillin-binding protein 1A	0.6097735565
+UniRef50_Q1RKC5: Penicillin-binding protein 1A|unclassified	0.6097735565
+UniRef50_UPI0003C1219C	0.6097611410
+UniRef50_UPI0003C1219C|unclassified	0.6097611410
+UniRef50_Q6F7D3: Septum formation, penicillin binding protein 3, peptidoglycan synthetase	0.6097560976
+UniRef50_Q6F7D3: Septum formation, penicillin binding protein 3, peptidoglycan synthetase|g__Acinetobacter.s__Acinetobacter_baumannii	0.6097560976
+UniRef50_F2L7R0: NAD/NADP transhydrogenase alpha subunit-like protein	0.6096878986
+UniRef50_F2L7R0: NAD/NADP transhydrogenase alpha subunit-like protein|unclassified	0.6096878986
+UniRef50_UPI00037733AF: hypothetical protein, partial	0.6096657114
+UniRef50_UPI00037733AF: hypothetical protein, partial|unclassified	0.6096657114
+UniRef50_K2REB6	0.6095928430
+UniRef50_K2REB6|unclassified	0.6095928430
+UniRef50_M9RFF6: FlgF-like flagellar basal body rod protein	0.6095920124
+UniRef50_M9RFF6: FlgF-like flagellar basal body rod protein|unclassified	0.6095920124
+UniRef50_UPI0003826F46: hypothetical protein	0.6095772204
+UniRef50_UPI0003826F46: hypothetical protein|unclassified	0.6095772204
+UniRef50_UPI00037A4F24: hypothetical protein, partial	0.6095705140
+UniRef50_UPI00037A4F24: hypothetical protein, partial|unclassified	0.6095705140
+UniRef50_Q49WG8: 1,4-Dihydroxy-2-naphthoyl-CoA synthase	0.6095563917
+UniRef50_Q49WG8: 1,4-Dihydroxy-2-naphthoyl-CoA synthase|unclassified	0.6095563917
+UniRef50_I2AZ38	0.6095331067
+UniRef50_I2AZ38|unclassified	0.6095331067
+UniRef50_D5ATQ1	0.6095208899
+UniRef50_D5ATQ1|unclassified	0.6095208899
+UniRef50_J9P2N8	0.6094748563
+UniRef50_J9P2N8|unclassified	0.6094748563
+UniRef50_K2ADQ7	0.6094640884
+UniRef50_K2ADQ7|unclassified	0.6094640884
+UniRef50_UPI00047B6E0E: hypothetical protein	0.6093234640
+UniRef50_UPI00047B6E0E: hypothetical protein|unclassified	0.6093234640
+UniRef50_Q37371: NADH-ubiquinone oxidoreductase chain 6	0.6093079415
+UniRef50_Q37371: NADH-ubiquinone oxidoreductase chain 6|unclassified	0.6093079415
+UniRef50_UPI0004761FCD: glycerol-3-phosphate transporter membrane protein	0.6092652395
+UniRef50_UPI0004761FCD: glycerol-3-phosphate transporter membrane protein|unclassified	0.6092652395
+UniRef50_UPI0003608B2F: hypothetical protein	0.6092512819
+UniRef50_UPI0003608B2F: hypothetical protein|unclassified	0.6092512819
+UniRef50_UPI00035F8DA2: hypothetical protein	0.6092253824
+UniRef50_UPI00035F8DA2: hypothetical protein|unclassified	0.6092253824
+UniRef50_A7HT64: Probable nicotinate-nucleotide adenylyltransferase	0.6092188166
+UniRef50_A7HT64: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.6092188166
+UniRef50_UPI000380A6DD: hypothetical protein	0.6091565577
+UniRef50_UPI000380A6DD: hypothetical protein|unclassified	0.6091565577
+UniRef50_G1TH43	0.6091138123
+UniRef50_G1TH43|unclassified	0.6091138123
+UniRef50_R6ED70	0.6090691228
+UniRef50_R6ED70|unclassified	0.6090691228
+UniRef50_UPI00046A36BB: hypothetical protein	0.6090364088
+UniRef50_UPI00046A36BB: hypothetical protein|unclassified	0.6090364088
+UniRef50_U4LHB0	0.6090133983
+UniRef50_U4LHB0|unclassified	0.6090133983
+UniRef50_D5APV6	0.6089922573
+UniRef50_D5APV6|unclassified	0.6089922573
+UniRef50_H1LB61	0.6089834321
+UniRef50_H1LB61|unclassified	0.6089834321
+UniRef50_Q7VXL5: UPF0337 protein BP1738	0.6089754906
+UniRef50_Q7VXL5: UPF0337 protein BP1738|unclassified	0.6089754906
+UniRef50_UPI0001A43259: putative phosphotransferase	0.6089713767
+UniRef50_UPI0001A43259: putative phosphotransferase|unclassified	0.6089713767
+UniRef50_Q2EEQ3	0.6088629109
+UniRef50_Q2EEQ3|unclassified	0.6088629109
+UniRef50_U7PE64	0.6087817681
+UniRef50_U7PE64|unclassified	0.6087817681
+UniRef50_UPI00047A8A6F: hypothetical protein, partial	0.6087193418
+UniRef50_UPI00047A8A6F: hypothetical protein, partial|unclassified	0.6087193418
+UniRef50_W7WHR7: Acyl-CoA thioesterase YbgC	0.6086876415
+UniRef50_W7WHR7: Acyl-CoA thioesterase YbgC|unclassified	0.6086876415
+UniRef50_UPI0003ADD7B1: PREDICTED: APC membrane recruitment protein 2	0.6086427267
+UniRef50_UPI0003ADD7B1: PREDICTED: APC membrane recruitment protein 2|unclassified	0.6086427267
+UniRef50_UPI00041E905B: hypothetical protein	0.6086427267
+UniRef50_UPI00041E905B: hypothetical protein|unclassified	0.6086427267
+UniRef50_UPI00028A17CA: serine/threonine protein kinase-like protein	0.6084195705
+UniRef50_UPI00028A17CA: serine/threonine protein kinase-like protein|unclassified	0.6084195705
+UniRef50_UPI0003728B08: hypothetical protein	0.6083518050
+UniRef50_UPI0003728B08: hypothetical protein|unclassified	0.6083518050
+UniRef50_Q8YEU9: Transporter	0.6083363567
+UniRef50_Q8YEU9: Transporter|unclassified	0.6083363567
+UniRef50_UPI00037B01D8: hypothetical protein	0.6083109318
+UniRef50_UPI00037B01D8: hypothetical protein|unclassified	0.6083109318
+UniRef50_UPI000382841E: hypothetical protein	0.6082811775
+UniRef50_UPI000382841E: hypothetical protein|unclassified	0.6082811775
+UniRef50_V4JCZ8	0.6082137573
+UniRef50_V4JCZ8|unclassified	0.6082137573
+UniRef50_UPI000237ADAF: branched-chain amino acid ABC transporter ATP-binding protein	0.6081996309
+UniRef50_UPI000237ADAF: branched-chain amino acid ABC transporter ATP-binding protein|unclassified	0.6081996309
+UniRef50_V9X7Q0	0.6081778274
+UniRef50_V9X7Q0|unclassified	0.6081778274
+UniRef50_Q9DWG9: Pr23.1	0.6080842489
+UniRef50_Q9DWG9: Pr23.1|unclassified	0.6080842489
+UniRef50_R7PQW4	0.6080383165
+UniRef50_R7PQW4|unclassified	0.6080383165
+UniRef50_M7XX40	0.6080043832
+UniRef50_M7XX40|unclassified	0.6080043832
+UniRef50_D9VXN6: Predicted protein	0.6079630650
+UniRef50_D9VXN6: Predicted protein|unclassified	0.6079630650
+UniRef50_Q928X0: Lin2412 protein	0.6079282247
+UniRef50_Q928X0: Lin2412 protein|unclassified	0.6079282247
+UniRef50_UPI0001E892A8: probable mannose-1-phosphate guanyltransferase	0.6079165957
+UniRef50_UPI0001E892A8: probable mannose-1-phosphate guanyltransferase|unclassified	0.6079165957
+UniRef50_K5WVG8	0.6079027356
+UniRef50_K5WVG8|unclassified	0.6079027356
+UniRef50_Q1IVV5: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG	0.6079027356
+UniRef50_Q1IVV5: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG|g__Deinococcus.s__Deinococcus_radiodurans	0.6079027356
+UniRef50_UPI0004753527: hypothetical protein, partial	0.6077929615
+UniRef50_UPI0004753527: hypothetical protein, partial|unclassified	0.6077929615
+UniRef50_C5B9D9: Phosphopantetheine adenylyltransferase	0.6077748820
+UniRef50_C5B9D9: Phosphopantetheine adenylyltransferase|unclassified	0.6077748820
+UniRef50_F9P9Y9: Conserved domain protein	0.6077239085
+UniRef50_F9P9Y9: Conserved domain protein|unclassified	0.6077239085
+UniRef50_Q9RRP3	0.6075595742
+UniRef50_Q9RRP3|unclassified	0.6075595742
+UniRef50_H4JAR3	0.6075377176
+UniRef50_H4JAR3|unclassified	0.6075377176
+UniRef50_B8FB52: Sulfate adenylyltransferase	0.6075353845
+UniRef50_B8FB52: Sulfate adenylyltransferase|unclassified	0.6075353845
+UniRef50_K0CE62: Pimeloyl-CoA synthetase	0.6075334143
+UniRef50_K0CE62: Pimeloyl-CoA synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6075334143
+UniRef50_L6QHM5: Nitrate reductase A subunit alpha	0.6074499984
+UniRef50_L6QHM5: Nitrate reductase A subunit alpha|unclassified	0.6074499984
+UniRef50_UPI00032980B7: PREDICTED: probable succinyl-CoA:3-ketoacid coenzyme A transferase, mitochondrial-like	0.6074429951
+UniRef50_UPI00032980B7: PREDICTED: probable succinyl-CoA:3-ketoacid coenzyme A transferase, mitochondrial-like|unclassified	0.6074429951
+UniRef50_UPI00037CF289: hypothetical protein	0.6073463491
+UniRef50_UPI00037CF289: hypothetical protein|unclassified	0.6073463491
+UniRef50_I4W9H1: RND efflux system outer membrane lipoprotein NodT (Fragment)	0.6073030254
+UniRef50_I4W9H1: RND efflux system outer membrane lipoprotein NodT (Fragment)|unclassified	0.6073030254
+UniRef50_R2XBG0	0.6073013572
+UniRef50_R2XBG0|unclassified	0.6073013572
+UniRef50_G8QKA4	0.6071931966
+UniRef50_G8QKA4|unclassified	0.6071931966
+UniRef50_D8TRX6	0.6071645416
+UniRef50_D8TRX6|unclassified	0.6071645416
+UniRef50_P56190: Carbon starvation protein A homolog	0.6071645416
+UniRef50_P56190: Carbon starvation protein A homolog|g__Helicobacter.s__Helicobacter_pylori	0.6071645416
+UniRef50_A4ACP7: Arabinose efflux permease	0.6070824364
+UniRef50_A4ACP7: Arabinose efflux permease|unclassified	0.6070824364
+UniRef50_UPI0002626396: putative translaldolase	0.6070673807
+UniRef50_UPI0002626396: putative translaldolase|unclassified	0.6070673807
+UniRef50_UPI00032A2B8F	0.6070456120
+UniRef50_UPI00032A2B8F|unclassified	0.6070456120
+UniRef50_A3JPS3: Sarcosine oxidase, gamma subunit family protein	0.6069722918
+UniRef50_A3JPS3: Sarcosine oxidase, gamma subunit family protein|unclassified	0.6069722918
+UniRef50_UPI00026291EC: iojap family protein	0.6069237638
+UniRef50_UPI00026291EC: iojap family protein|unclassified	0.6069237638
+UniRef50_T0HFZ2	0.6068580276
+UniRef50_T0HFZ2|unclassified	0.6068580276
+UniRef50_UPI00036D4BC8: hypothetical protein, partial	0.6067627060
+UniRef50_UPI00036D4BC8: hypothetical protein, partial|unclassified	0.6067627060
+UniRef50_E8SKP5: ATP synthase protein I2	0.6066699496
+UniRef50_E8SKP5: ATP synthase protein I2|unclassified	0.6066699496
+UniRef50_UPI000475B46B: phosphatidylethanolamine N-methyltransferase	0.6065768383
+UniRef50_UPI000475B46B: phosphatidylethanolamine N-methyltransferase|unclassified	0.6065768383
+UniRef50_UPI00036CA5F3: flagellar biosynthesis protein FlhB	0.6065594741
+UniRef50_UPI00036CA5F3: flagellar biosynthesis protein FlhB|unclassified	0.6065594741
+UniRef50_W7WTG1: CHAT domain protein	0.6064748241
+UniRef50_W7WTG1: CHAT domain protein|unclassified	0.6064748241
+UniRef50_R7N6I1: Thiamine pyrophosphate protein domain protein TPP-binding	0.6064281383
+UniRef50_R7N6I1: Thiamine pyrophosphate protein domain protein TPP-binding|g__Clostridium.s__Clostridium_beijerinckii	0.6064281383
+UniRef50_Q5P750	0.6064035213
+UniRef50_Q5P750|unclassified	0.6064035213
+UniRef50_UPI0003EB423D: hypothetical protein	0.6063530421
+UniRef50_UPI0003EB423D: hypothetical protein|unclassified	0.6063530421
+UniRef50_B1B3N7: Truncated replication protein RepA	0.6062906804
+UniRef50_B1B3N7: Truncated replication protein RepA|unclassified	0.6062906804
+UniRef50_UPI0003B5E399: flagellar basal body-associated protein FliL	0.6062034914
+UniRef50_UPI0003B5E399: flagellar basal body-associated protein FliL|unclassified	0.6062034914
+UniRef50_UPI000470F84C: ribonuclease D	0.6061970328
+UniRef50_UPI000470F84C: ribonuclease D|unclassified	0.6061970328
+UniRef50_B0VEJ2	0.6060606061
+UniRef50_B0VEJ2|g__Acinetobacter.s__Acinetobacter_baumannii	0.6060606061
+UniRef50_D8JFA0	0.6060606061
+UniRef50_D8JFA0|g__Acinetobacter.s__Acinetobacter_baumannii	0.6060606061
+UniRef50_UPI000346214E: hypothetical protein	0.6060444704
+UniRef50_UPI000346214E: hypothetical protein|unclassified	0.6060444704
+UniRef50_B1Z4J0: Heat shock protein Hsp20	0.6059806351
+UniRef50_B1Z4J0: Heat shock protein Hsp20|unclassified	0.6059806351
+UniRef50_R1DTS2	0.6059489085
+UniRef50_R1DTS2|unclassified	0.6059489085
+UniRef50_UPI00046FBBBF: NADH dehydrogenase	0.6058697144
+UniRef50_UPI00046FBBBF: NADH dehydrogenase|unclassified	0.6058697144
+UniRef50_UPI00025574A4: TRAP transporter	0.6058498840
+UniRef50_UPI00025574A4: TRAP transporter|unclassified	0.6058498840
+UniRef50_W1CRU3	0.6057715239
+UniRef50_W1CRU3|unclassified	0.6057715239
+UniRef50_V7ENM8	0.6057554602
+UniRef50_V7ENM8|unclassified	0.6057554602
+UniRef50_UPI0003B3F8CA: cysteine desulfurase	0.6057530898
+UniRef50_UPI0003B3F8CA: cysteine desulfurase|unclassified	0.6057530898
+UniRef50_A0A024H9I4	0.6057136857
+UniRef50_A0A024H9I4|unclassified	0.6057136857
+UniRef50_C5YL49	0.6056782895
+UniRef50_C5YL49|unclassified	0.6056782895
+UniRef50_UPI0003B5CE67: xylose isomerase	0.6056423974
+UniRef50_UPI0003B5CE67: xylose isomerase|unclassified	0.6056423974
+UniRef50_E3IYB1	0.6056020513
+UniRef50_E3IYB1|unclassified	0.6056020513
+UniRef50_UPI00036A226C: hypothetical protein	0.6055905865
+UniRef50_UPI00036A226C: hypothetical protein|unclassified	0.6055905865
+UniRef50_Q1AR89: Aminomethyltransferase	0.6055674056
+UniRef50_Q1AR89: Aminomethyltransferase|unclassified	0.6055674056
+UniRef50_D4GU70: Low-salt glycan biosynthesis nucleotidyltransferase Agl11	0.6053974966
+UniRef50_D4GU70: Low-salt glycan biosynthesis nucleotidyltransferase Agl11|unclassified	0.6053974966
+UniRef50_F3TV28: Conserved domain protein	0.6053442234
+UniRef50_F3TV28: Conserved domain protein|unclassified	0.6053442234
+UniRef50_F0MD69: DNA polymerase III, subunits gamma and tau	0.6053268765
+UniRef50_F0MD69: DNA polymerase III, subunits gamma and tau|g__Neisseria.s__Neisseria_meningitidis	0.6053268765
+UniRef50_A8AL09: CDP-diacylglycerol pyrophosphatase	0.6053173354
+UniRef50_A8AL09: CDP-diacylglycerol pyrophosphatase|unclassified	0.6053173354
+UniRef50_Q67X22	0.6052921010
+UniRef50_Q67X22|unclassified	0.6052921010
+UniRef50_Q06173: Periplasmic [NiFe] hydrogenase small subunit 1	0.6052679129
+UniRef50_Q06173: Periplasmic [NiFe] hydrogenase small subunit 1|unclassified	0.6052679129
+UniRef50_H8H159: Branched-chain amino acid ABC-type transport system, ATPase component	0.6052400587
+UniRef50_H8H159: Branched-chain amino acid ABC-type transport system, ATPase component|unclassified	0.6052400587
+UniRef50_UPI0004678DC0: GNAT family acetyltransferase, partial	0.6051220193
+UniRef50_UPI0004678DC0: GNAT family acetyltransferase, partial|unclassified	0.6051220193
+UniRef50_A3VYH3	0.6050719629
+UniRef50_A3VYH3|unclassified	0.6050719629
+UniRef50_M2QS37	0.6050141975
+UniRef50_M2QS37|unclassified	0.6050141975
+UniRef50_A2PUV3	0.6049835201
+UniRef50_A2PUV3|unclassified	0.6049835201
+UniRef50_B7RRM6: ParA family ATPase	0.6049654442
+UniRef50_B7RRM6: ParA family ATPase|unclassified	0.6049654442
+UniRef50_T6I297	0.6049280099
+UniRef50_T6I297|unclassified	0.6049280099
+UniRef50_M1F771	0.6048612757
+UniRef50_M1F771|unclassified	0.6048612757
+UniRef50_UPI00045EC2D5: hypothetical protein	0.6048285300
+UniRef50_UPI00045EC2D5: hypothetical protein|unclassified	0.6048285300
+UniRef50_UPI00035FE410: peptide ABC transporter permease	0.6048109358
+UniRef50_UPI00035FE410: peptide ABC transporter permease|unclassified	0.6048109358
+UniRef50_UPI000050FBC5: putative acetylornithine deacetylase	0.6047926903
+UniRef50_UPI000050FBC5: putative acetylornithine deacetylase|unclassified	0.6047926903
+UniRef50_Q44449: A.tumefaciens DNA for TA region of Ti plasmid	0.6046698881
+UniRef50_Q44449: A.tumefaciens DNA for TA region of Ti plasmid|unclassified	0.6046698881
+UniRef50_UPI00031EF2A9: HNH endonuclease	0.6046205948
+UniRef50_UPI00031EF2A9: HNH endonuclease|unclassified	0.6046205948
+UniRef50_UPI0003781F81: hypothetical protein, partial	0.6044999481
+UniRef50_UPI0003781F81: hypothetical protein, partial|unclassified	0.6044999481
+UniRef50_B8ZKS3: Probable fructose-6-phosphate aldolase	0.6044717114
+UniRef50_B8ZKS3: Probable fructose-6-phosphate aldolase|unclassified	0.6044717114
+UniRef50_L4JF06	0.6043926960
+UniRef50_L4JF06|unclassified	0.6043926960
+UniRef50_UPI00026C5B6F: transcriptional regulator	0.6043914798
+UniRef50_UPI00026C5B6F: transcriptional regulator|unclassified	0.6043914798
+UniRef50_A0M6X6: Probable nicotinate-nucleotide adenylyltransferase	0.6043610695
+UniRef50_A0M6X6: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.6043610695
+UniRef50_N7N0D2	0.6043224013
+UniRef50_N7N0D2|unclassified	0.6043224013
+UniRef50_I1AXI9: Transposase IS4 family protein	0.6043218968
+UniRef50_I1AXI9: Transposase IS4 family protein|unclassified	0.6043218968
+UniRef50_M5SVU5: Beta-Ig-H3/fasciclin	0.6042577021
+UniRef50_M5SVU5: Beta-Ig-H3/fasciclin|unclassified	0.6042577021
+UniRef50_V7H7E4	0.6042412190
+UniRef50_V7H7E4|unclassified	0.6042412190
+UniRef50_UPI000376F1B7: hypothetical protein	0.6042096778
+UniRef50_UPI000376F1B7: hypothetical protein|unclassified	0.6042096778
+UniRef50_UPI000472A3F6: aldehyde-activating protein	0.6042068773
+UniRef50_UPI000472A3F6: aldehyde-activating protein|unclassified	0.6042068773
+UniRef50_V6UAA6	0.6041139414
+UniRef50_V6UAA6|unclassified	0.6041139414
+UniRef50_K2DTF7	0.6040823657
+UniRef50_K2DTF7|unclassified	0.6040823657
+UniRef50_UPI00036CEC93: hypothetical protein, partial	0.6039155427
+UniRef50_UPI00036CEC93: hypothetical protein, partial|unclassified	0.6039155427
+UniRef50_UPI0003EFA447: hypothetical protein	0.6039103935
+UniRef50_UPI0003EFA447: hypothetical protein|unclassified	0.6039103935
+UniRef50_A6LTC5: Glutamate--tRNA ligase	0.6038647343
+UniRef50_A6LTC5: Glutamate--tRNA ligase|g__Clostridium.s__Clostridium_beijerinckii	0.6038647343
+UniRef50_F4GQ68: Acetolactate synthase 2 catalytic subunit	0.6038647343
+UniRef50_F4GQ68: Acetolactate synthase 2 catalytic subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6038647343
+UniRef50_UPI0003687965: hypothetical protein	0.6038647343
+UniRef50_UPI0003687965: hypothetical protein|unclassified	0.6038647343
+UniRef50_G7PJ01	0.6037711699
+UniRef50_G7PJ01|unclassified	0.6037711699
+UniRef50_Q89FG4: Coenzyme PQQ synthesis protein B	0.6036948350
+UniRef50_Q89FG4: Coenzyme PQQ synthesis protein B|unclassified	0.6036948350
+UniRef50_Q09AD1	0.6036859831
+UniRef50_Q09AD1|unclassified	0.6036859831
+UniRef50_K0T2C0	0.6036581445
+UniRef50_K0T2C0|unclassified	0.6036581445
+UniRef50_UPI0001D2E786: membrane protein	0.6036309427
+UniRef50_UPI0001D2E786: membrane protein|unclassified	0.6036309427
+UniRef50_UPI0004772111: hypothetical protein	0.6035379781
+UniRef50_UPI0004772111: hypothetical protein|unclassified	0.6035379781
+UniRef50_UPI00016C404B: hypothetical protein	0.6034949265
+UniRef50_UPI00016C404B: hypothetical protein|unclassified	0.6034949265
+UniRef50_I0I0C0	0.6034938422
+UniRef50_I0I0C0|unclassified	0.6034938422
+UniRef50_UPI0003648262: hypothetical protein	0.6034840458
+UniRef50_UPI0003648262: hypothetical protein|unclassified	0.6034840458
+UniRef50_UPI00046EA4FA: hypothetical protein	0.6034647821
+UniRef50_UPI00046EA4FA: hypothetical protein|unclassified	0.6034647821
+UniRef50_A6DYW3	0.6034647082
+UniRef50_A6DYW3|unclassified	0.6034647082
+UniRef50_UPI000370D86A: hypothetical protein	0.6033609008
+UniRef50_UPI000370D86A: hypothetical protein|unclassified	0.6033609008
+UniRef50_UPI0003C1325D: PREDICTED: hybrid signal transduction histidine kinase D-like	0.6033317920
+UniRef50_UPI0003C1325D: PREDICTED: hybrid signal transduction histidine kinase D-like|unclassified	0.6033317920
+UniRef50_X6FJH7: Transposase	0.6032654308
+UniRef50_X6FJH7: Transposase|unclassified	0.6032654308
+UniRef50_UPI0004755DAC: hypothetical protein	0.6031810586
+UniRef50_UPI0004755DAC: hypothetical protein|unclassified	0.6031810586
+UniRef50_Q4L432: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.6029229815
+UniRef50_Q4L432: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.6029229815
+UniRef50_W7J490: Cell envelope-associated transcriptional attenuator LytR-CpsA-Psr	0.6027727547
+UniRef50_W7J490: Cell envelope-associated transcriptional attenuator LytR-CpsA-Psr|unclassified	0.6027727547
+UniRef50_V2Z406: Inner membrane metabolite transporter ydjE	0.6027388754
+UniRef50_V2Z406: Inner membrane metabolite transporter ydjE|unclassified	0.6027388754
+UniRef50_E4SP78: Transposase for insertion sequence-like element IS1216	0.6026801018
+UniRef50_E4SP78: Transposase for insertion sequence-like element IS1216|unclassified	0.6026801018
+UniRef50_UPI000366EB24: hypothetical protein	0.6026672295
+UniRef50_UPI000366EB24: hypothetical protein|unclassified	0.6026672295
+UniRef50_V6UHI6	0.6026625290
+UniRef50_V6UHI6|unclassified	0.6026625290
+UniRef50_I1B1U5: Putative transposase (Fragment)	0.6025467114
+UniRef50_I1B1U5: Putative transposase (Fragment)|unclassified	0.6025467114
+UniRef50_Q2RMV4: Peptidyl-tRNA hydrolase	0.6025422009
+UniRef50_Q2RMV4: Peptidyl-tRNA hydrolase|unclassified	0.6025422009
+UniRef50_W1YWP9	0.6024909252
+UniRef50_W1YWP9|unclassified	0.6024909252
+UniRef50_Q0IZV1: Os09g0547500 protein (Fragment)	0.6024870131
+UniRef50_Q0IZV1: Os09g0547500 protein (Fragment)|unclassified	0.6024870131
+UniRef50_UPI0003B54A85: alpha/beta hydrolase, partial	0.6024559729
+UniRef50_UPI0003B54A85: alpha/beta hydrolase, partial|unclassified	0.6024559729
+UniRef50_UPI00031F805E: fructose-bisphosphate aldolase	0.6024395029
+UniRef50_UPI00031F805E: fructose-bisphosphate aldolase|unclassified	0.6024395029
+UniRef50_UPI000375C833: hypothetical protein	0.6024042653
+UniRef50_UPI000375C833: hypothetical protein|unclassified	0.6024042653
+UniRef50_A0A059IKX4	0.6023812690
+UniRef50_A0A059IKX4|unclassified	0.6023812690
+UniRef50_UPI0001850779: penicillin-binding protein-like protein	0.6023015138
+UniRef50_UPI0001850779: penicillin-binding protein-like protein|unclassified	0.6023015138
+UniRef50_I1HXL4	0.6022985742
+UniRef50_I1HXL4|unclassified	0.6022985742
+UniRef50_Q039B3: Imidazole glycerol phosphate synthase subunit HisH	0.6021849821
+UniRef50_Q039B3: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.6021849821
+UniRef50_A1UTH5: Peptidyl-tRNA hydrolase	0.6021603442
+UniRef50_A1UTH5: Peptidyl-tRNA hydrolase|unclassified	0.6021603442
+UniRef50_U5UQA3	0.6021301067
+UniRef50_U5UQA3|unclassified	0.6021301067
+UniRef50_J0H9X0	0.6020967363
+UniRef50_J0H9X0|unclassified	0.6020967363
+UniRef50_V8HPC0: Transposase	0.6020072619
+UniRef50_V8HPC0: Transposase|unclassified	0.6020072619
+UniRef50_W0RCE0: CHAT domain protein	0.6020020977
+UniRef50_W0RCE0: CHAT domain protein|unclassified	0.6020020977
+UniRef50_G6EA93: Succinoglycan exopolysaccharide synthesis protein	0.6019080877
+UniRef50_G6EA93: Succinoglycan exopolysaccharide synthesis protein|unclassified	0.6019080877
+UniRef50_C3ISU3	0.6018793619
+UniRef50_C3ISU3|unclassified	0.6018793619
+UniRef50_A3P4S7	0.6017433736
+UniRef50_A3P4S7|unclassified	0.6017433736
+UniRef50_UPI000363E993: hypothetical protein	0.6016333580
+UniRef50_UPI000363E993: hypothetical protein|unclassified	0.6016333580
+UniRef50_UPI0004721624: malate dehydrogenase, partial	0.6016253070
+UniRef50_UPI0004721624: malate dehydrogenase, partial|unclassified	0.6016253070
+UniRef50_Q3JTX2	0.6016124547
+UniRef50_Q3JTX2|unclassified	0.6016124547
+UniRef50_B6HZW7: Putative truncated cyanate transport protein	0.6016110957
+UniRef50_B6HZW7: Putative truncated cyanate transport protein|unclassified	0.6016110957
+UniRef50_Q8YMN9: All4894 protein	0.6015656302
+UniRef50_Q8YMN9: All4894 protein|unclassified	0.6015656302
+UniRef50_C4AM88: Cytosolic 5'-nucleotidase 1B	0.6014889650
+UniRef50_C4AM88: Cytosolic 5'-nucleotidase 1B|unclassified	0.6014889650
+UniRef50_UPI0002FA6B33: hypothetical protein	0.6014229619
+UniRef50_UPI0002FA6B33: hypothetical protein|unclassified	0.6014229619
+UniRef50_H8E733: NAD synthase (Fragment)	0.6013715749
+UniRef50_H8E733: NAD synthase (Fragment)|unclassified	0.6013715749
+UniRef50_UPI0003658722: hypothetical protein	0.6013267469
+UniRef50_UPI0003658722: hypothetical protein|unclassified	0.6013267469
+UniRef50_A9M0A0: Phosphoenolpyruvate-protein phosphotransferase	0.6013229104
+UniRef50_A9M0A0: Phosphoenolpyruvate-protein phosphotransferase|g__Neisseria.s__Neisseria_meningitidis	0.6013229104
+UniRef50_A8AH29	0.6011901866
+UniRef50_A8AH29|unclassified	0.6011901866
+UniRef50_W8PPK7	0.6011804167
+UniRef50_W8PPK7|unclassified	0.6011804167
+UniRef50_F6CTL5	0.6011650476
+UniRef50_F6CTL5|unclassified	0.6011650476
+UniRef50_G0TK56: PE-PGRS family protein, pe_pgrs9	0.6011027876
+UniRef50_G0TK56: PE-PGRS family protein, pe_pgrs9|unclassified	0.6011027876
+UniRef50_B6XIC0	0.6010558923
+UniRef50_B6XIC0|unclassified	0.6010558923
+UniRef50_UPI0004238E1F: hypothetical protein	0.6010272968
+UniRef50_UPI0004238E1F: hypothetical protein|unclassified	0.6010272968
+UniRef50_P42425: Lon protease 2	0.6009615385
+UniRef50_P42425: Lon protease 2|g__Clostridium.s__Clostridium_beijerinckii	0.6009615385
+UniRef50_Q1IXY0: DNA polymerase of the X family containing C terminal PHP hydrolase domain	0.6009615385
+UniRef50_Q1IXY0: DNA polymerase of the X family containing C terminal PHP hydrolase domain|g__Deinococcus.s__Deinococcus_radiodurans	0.6009615385
+UniRef50_X1TQM9: Marine sediment metagenome DNA, contig: S12H4_L03611	0.6008435999
+UniRef50_X1TQM9: Marine sediment metagenome DNA, contig: S12H4_L03611|unclassified	0.6008435999
+UniRef50_K0R1R0	0.6008359446
+UniRef50_K0R1R0|unclassified	0.6008359446
+UniRef50_M4S0Q6: Terminase	0.6008007373
+UniRef50_M4S0Q6: Terminase|unclassified	0.6008007373
+UniRef50_UPI00036716D2: hypothetical protein	0.6006368119
+UniRef50_UPI00036716D2: hypothetical protein|unclassified	0.6006368119
+UniRef50_F9Z196: Oligopeptide-binding protein OppA	0.6006006006
+UniRef50_F9Z196: Oligopeptide-binding protein OppA|g__Propionibacterium.s__Propionibacterium_acnes	0.6006006006
+UniRef50_UPI00037DFA5A: 3-oxoadipate:succinyl-CoA transferase subunit B	0.6005669767
+UniRef50_UPI00037DFA5A: 3-oxoadipate:succinyl-CoA transferase subunit B|unclassified	0.6005669767
+UniRef50_UPI000469E0E3: hypothetical protein	0.6005166352
+UniRef50_UPI000469E0E3: hypothetical protein|unclassified	0.6005166352
+UniRef50_H4F527: Na+/H+ antiporter MnhB subunit-related protein (Fragment)	0.6004729068
+UniRef50_H4F527: Na+/H+ antiporter MnhB subunit-related protein (Fragment)|unclassified	0.6004729068
+UniRef50_S5XV72	0.6004723882
+UniRef50_S5XV72|unclassified	0.6004723882
+UniRef50_T2G2X8	0.6004649402
+UniRef50_T2G2X8|unclassified	0.6004649402
+UniRef50_Q0ATK2: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.6004405953
+UniRef50_Q0ATK2: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.6004405953
+UniRef50_K8N0X6	0.6004263424
+UniRef50_K8N0X6|unclassified	0.6004263424
+UniRef50_A3VVX0: Hypothetical BRO family protein	0.6003453148
+UniRef50_A3VVX0: Hypothetical BRO family protein|unclassified	0.6003453148
+UniRef50_Q55498: N5-carboxyaminoimidazole ribonucleotide mutase	0.6003449129
+UniRef50_Q55498: N5-carboxyaminoimidazole ribonucleotide mutase|unclassified	0.6003449129
+UniRef50_UPI0003C8DE53: PREDICTED: histone-lysine N-methyltransferase SETD1B-like	0.6003138479
+UniRef50_UPI0003C8DE53: PREDICTED: histone-lysine N-methyltransferase SETD1B-like|unclassified	0.6003138479
+UniRef50_UPI00035ED56A: MULTISPECIES: 50S ribosomal protein L15	0.6002929220
+UniRef50_UPI00035ED56A: MULTISPECIES: 50S ribosomal protein L15|unclassified	0.6002929220
+UniRef50_Q57137	0.6002600510
+UniRef50_Q57137|unclassified	0.6002600510
+UniRef50_G5NKG5: Lysophospholipase L2	0.6002523634
+UniRef50_G5NKG5: Lysophospholipase L2|unclassified	0.6002523634
+UniRef50_D2NRM9: Aldehyde:ferredoxin oxidoreductase	0.6002494281
+UniRef50_D2NRM9: Aldehyde:ferredoxin oxidoreductase|unclassified	0.6002494281
+UniRef50_B2UJ43: Thiamine pyrophosphate protein domain protein TPP-binding	0.6002400960
+UniRef50_B2UJ43: Thiamine pyrophosphate protein domain protein TPP-binding|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.6002400960
+UniRef50_F0Y593: Expressed protein (Fragment)	0.6002400960
+UniRef50_F0Y593: Expressed protein (Fragment)|unclassified	0.6002400960
+UniRef50_A8WKA6: Protein CBG24244	0.6001747701
+UniRef50_A8WKA6: Protein CBG24244|unclassified	0.6001747701
+UniRef50_E3BJ86	0.6001365826
+UniRef50_E3BJ86|unclassified	0.6001365826
+UniRef50_UPI0003B50250: nitrite reductase NAD(P)H small subunit	0.6001340331
+UniRef50_UPI0003B50250: nitrite reductase NAD(P)H small subunit|unclassified	0.6001340331
+UniRef50_W9R3F1	0.6000955164
+UniRef50_W9R3F1|unclassified	0.6000955164
+UniRef50_G5M3D2: Glucan biosynthesis protein MdoG	0.6000451661
+UniRef50_G5M3D2: Glucan biosynthesis protein MdoG|unclassified	0.6000451661
+UniRef50_U9QS74	0.5999345642
+UniRef50_U9QS74|unclassified	0.5999345642
+UniRef50_UPI00035D6F7F: hypothetical protein	0.5998925855
+UniRef50_UPI00035D6F7F: hypothetical protein|unclassified	0.5998925855
+UniRef50_E2Q9I1: Prevent-host-death family protein	0.5996808628
+UniRef50_E2Q9I1: Prevent-host-death family protein|unclassified	0.5996808628
+UniRef50_UPI0003C103DC: PREDICTED: NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial-like	0.5996741151
+UniRef50_UPI0003C103DC: PREDICTED: NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial-like|unclassified	0.5996741151
+UniRef50_F2E7K1: Predicted protein (Fragment)	0.5996170332
+UniRef50_F2E7K1: Predicted protein (Fragment)|unclassified	0.5996170332
+UniRef50_UPI0004663E5A: spermidine/putrescine ABC transporter permease	0.5995983254
+UniRef50_UPI0004663E5A: spermidine/putrescine ABC transporter permease|unclassified	0.5995983254
+UniRef50_N2SMU9: InsA C-terminal domain protein	0.5995441430
+UniRef50_N2SMU9: InsA C-terminal domain protein|unclassified	0.5995441430
+UniRef50_S6JG65: Type 4 fimbrial biogenesis protein PilN (Fragment)	0.5995224038
+UniRef50_S6JG65: Type 4 fimbrial biogenesis protein PilN (Fragment)|unclassified	0.5995224038
+UniRef50_UPI0003728136: hypothetical protein	0.5994643276
+UniRef50_UPI0003728136: hypothetical protein|unclassified	0.5994643276
+UniRef50_Q0J0H0: Os09g0509700 protein (Fragment)	0.5994480172
+UniRef50_Q0J0H0: Os09g0509700 protein (Fragment)|unclassified	0.5994480172
+UniRef50_UPI0003B5DDB2: ABC transporter ATP-binding protein, partial	0.5994148325
+UniRef50_UPI0003B5DDB2: ABC transporter ATP-binding protein, partial|unclassified	0.5994148325
+UniRef50_UPI0003B57849: tRNA-binding protein	0.5993576347
+UniRef50_UPI0003B57849: tRNA-binding protein|unclassified	0.5993576347
+UniRef50_UPI0003B570E7: histidine kinase	0.5993476835
+UniRef50_UPI0003B570E7: histidine kinase|unclassified	0.5993476835
+UniRef50_J7RFM5: Tpr protein	0.5992773346
+UniRef50_J7RFM5: Tpr protein|unclassified	0.5992773346
+UniRef50_UPI0003D0D5B4: PREDICTED: period circadian protein homolog 1	0.5991821620
+UniRef50_UPI0003D0D5B4: PREDICTED: period circadian protein homolog 1|unclassified	0.5991821620
+UniRef50_E1S7F7: Para-aminobenzoate synthase,aminase component/Aminodeoxychorismate lyase	0.5991611744
+UniRef50_E1S7F7: Para-aminobenzoate synthase,aminase component/Aminodeoxychorismate lyase|g__Helicobacter.s__Helicobacter_pylori	0.5991611744
+UniRef50_U6MUB5	0.5990353069
+UniRef50_U6MUB5|unclassified	0.5990353069
+UniRef50_UPI00036DEE50: hypothetical protein	0.5990016639
+UniRef50_UPI00036DEE50: hypothetical protein|unclassified	0.5990016639
+UniRef50_Q6F7L8: Glycine--tRNA ligase beta subunit	0.5988023952
+UniRef50_Q6F7L8: Glycine--tRNA ligase beta subunit|g__Acinetobacter.s__Acinetobacter_baumannii	0.5988023952
+UniRef50_D5AQD8	0.5987417892
+UniRef50_D5AQD8|unclassified	0.5987417892
+UniRef50_X1ILZ0: Marine sediment metagenome DNA, contig: S03H2_L11050 (Fragment)	0.5986744211
+UniRef50_X1ILZ0: Marine sediment metagenome DNA, contig: S03H2_L11050 (Fragment)|unclassified	0.5986744211
+UniRef50_UPI00042029C3: acetylglucosaminyldiphospho-UDP acetyl-beta-D-mannosaminyltransferase	0.5985747046
+UniRef50_UPI00042029C3: acetylglucosaminyldiphospho-UDP acetyl-beta-D-mannosaminyltransferase|unclassified	0.5985747046
+UniRef50_P14172	0.5985273718
+UniRef50_P14172|unclassified	0.5985273718
+UniRef50_L0DZY5: Sulfur acceptor protein SufE for iron-sulfur cluster assembly	0.5985222524
+UniRef50_L0DZY5: Sulfur acceptor protein SufE for iron-sulfur cluster assembly|unclassified	0.5985222524
+UniRef50_B7MV22: Exodeoxyribonuclease VIII from bacteriophage origin	0.5984440455
+UniRef50_B7MV22: Exodeoxyribonuclease VIII from bacteriophage origin|g__Escherichia.s__Escherichia_coli	0.5984440455
+UniRef50_N6TVH5	0.5984440455
+UniRef50_N6TVH5|unclassified	0.5984440455
+UniRef50_Y0N5J1	0.5984440455
+UniRef50_Y0N5J1|unclassified	0.5984440455
+UniRef50_A9HRV7: Trigger factor	0.5984148834
+UniRef50_A9HRV7: Trigger factor|unclassified	0.5984148834
+UniRef50_UPI0003FE825F: chloramphenicol resistance protein DHA1	0.5983806733
+UniRef50_UPI0003FE825F: chloramphenicol resistance protein DHA1|unclassified	0.5983806733
+UniRef50_UPI0003658156: hypothetical protein, partial	0.5983760292
+UniRef50_UPI0003658156: hypothetical protein, partial|unclassified	0.5983760292
+UniRef50_J2PRG5	0.5982694145
+UniRef50_J2PRG5|unclassified	0.5982694145
+UniRef50_UPI00036A8D0A: hypothetical protein	0.5982301561
+UniRef50_UPI00036A8D0A: hypothetical protein|unclassified	0.5982301561
+UniRef50_UPI00036BFB9E: hypothetical protein	0.5981660607
+UniRef50_UPI00036BFB9E: hypothetical protein|unclassified	0.5981660607
+UniRef50_A1SUY3	0.5980978279
+UniRef50_A1SUY3|unclassified	0.5980978279
+UniRef50_W0YYU8: Pyochelin synthetase	0.5980861244
+UniRef50_W0YYU8: Pyochelin synthetase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.5980861244
+UniRef50_UPI0004653CCF: FixH protein	0.5980786294
+UniRef50_UPI0004653CCF: FixH protein|unclassified	0.5980786294
+UniRef50_G8PNV0: Protein containing DnaJ-like protein, subfamily C, member 28 domain protein	0.5980740999
+UniRef50_G8PNV0: Protein containing DnaJ-like protein, subfamily C, member 28 domain protein|unclassified	0.5980740999
+UniRef50_UPI0004228484: hypothetical protein	0.5979804151
+UniRef50_UPI0004228484: hypothetical protein|unclassified	0.5979804151
+UniRef50_A0A023VKY0	0.5979692122
+UniRef50_A0A023VKY0|unclassified	0.5979692122
+UniRef50_UPI0003B799F9: ribonucleoside-diphosphate reductase	0.5979127435
+UniRef50_UPI0003B799F9: ribonucleoside-diphosphate reductase|unclassified	0.5979127435
+UniRef50_P0A0U8: Penicillin-binding protein 2	0.5977969326
+UniRef50_P0A0U8: Penicillin-binding protein 2|g__Neisseria.s__Neisseria_meningitidis	0.5760368664
+UniRef50_P0A0U8: Penicillin-binding protein 2|unclassified	0.0217600663
+UniRef50_I1HGX9	0.5977271911
+UniRef50_I1HGX9|unclassified	0.5977271911
+UniRef50_J2LPE7	0.5976102887
+UniRef50_J2LPE7|unclassified	0.5976102887
+UniRef50_C0VHX8: GAF domain protein	0.5975948150
+UniRef50_C0VHX8: GAF domain protein|unclassified	0.5975948150
+UniRef50_UPI00046F85D9: extradiol ring-cleavage dioxygenase	0.5975494860
+UniRef50_UPI00046F85D9: extradiol ring-cleavage dioxygenase|unclassified	0.5975494860
+UniRef50_UPI00036FA720: hypothetical protein	0.5975389124
+UniRef50_UPI00036FA720: hypothetical protein|unclassified	0.5975389124
+UniRef50_I4EKS3	0.5975098878
+UniRef50_I4EKS3|unclassified	0.5975098878
+UniRef50_D1D665: PilS cassette protein	0.5974731689
+UniRef50_D1D665: PilS cassette protein|unclassified	0.5974731689
+UniRef50_E6MUU2: PilS cassette domain protein	0.5974731689
+UniRef50_E6MUU2: PilS cassette domain protein|unclassified	0.5974731689
+UniRef50_Q3JSX0	0.5973715651
+UniRef50_Q3JSX0|unclassified	0.5973715651
+UniRef50_Q6YVL9: Epstein-Barr virus EBNA-1-like protein	0.5973715651
+UniRef50_Q6YVL9: Epstein-Barr virus EBNA-1-like protein|unclassified	0.5973715651
+UniRef50_C7QH34: Thioesterase superfamily protein	0.5972582622
+UniRef50_C7QH34: Thioesterase superfamily protein|unclassified	0.5972582622
+UniRef50_UPI0003C10D8C	0.5972132238
+UniRef50_UPI0003C10D8C|unclassified	0.5972132238
+UniRef50_G5LAC6	0.5970638551
+UniRef50_G5LAC6|unclassified	0.5970638551
+UniRef50_Q08YR8	0.5970149254
+UniRef50_Q08YR8|unclassified	0.5970149254
+UniRef50_UPI00047A6086: AMP-binding protein	0.5970149254
+UniRef50_UPI00047A6086: AMP-binding protein|unclassified	0.5970149254
+UniRef50_W8AF54	0.5970149254
+UniRef50_W8AF54|unclassified	0.5970149254
+UniRef50_A4EHW3	0.5970064701
+UniRef50_A4EHW3|unclassified	0.5970064701
+UniRef50_UPI00041336EE: alkylhydroperoxidase	0.5969595609
+UniRef50_UPI00041336EE: alkylhydroperoxidase|unclassified	0.5969595609
+UniRef50_UPI0003684E03: hypothetical protein	0.5969565978
+UniRef50_UPI0003684E03: hypothetical protein|unclassified	0.5969565978
+UniRef50_J9M2C4	0.5969323021
+UniRef50_J9M2C4|unclassified	0.5969323021
+UniRef50_K7U318	0.5969033416
+UniRef50_K7U318|unclassified	0.5969033416
+UniRef50_F1Z562: Histone deacetylase superfamily	0.5967786908
+UniRef50_F1Z562: Histone deacetylase superfamily|unclassified	0.5967786908
+UniRef50_F7EFJ4	0.5967738196
+UniRef50_F7EFJ4|unclassified	0.5967738196
+UniRef50_W7WI51	0.5967676633
+UniRef50_W7WI51|unclassified	0.5967676633
+UniRef50_UPI00035F3E55: hypothetical protein, partial	0.5967506393
+UniRef50_UPI00035F3E55: hypothetical protein, partial|unclassified	0.5967506393
+UniRef50_W1TQZ7	0.5967422271
+UniRef50_W1TQZ7|unclassified	0.5967422271
+UniRef50_T0VQN3: DNA recombination and repair protein RecF	0.5967303345
+UniRef50_T0VQN3: DNA recombination and repair protein RecF|unclassified	0.5967303345
+UniRef50_UPI00046A5D50: hypothetical protein	0.5965949905
+UniRef50_UPI00046A5D50: hypothetical protein|unclassified	0.5965949905
+UniRef50_UPI000364343F: hypothetical protein	0.5965813926
+UniRef50_UPI000364343F: hypothetical protein|unclassified	0.5965813926
+UniRef50_UPI0001B432B3: GTP-binding protein YqeH, partial	0.5965162565
+UniRef50_UPI0001B432B3: GTP-binding protein YqeH, partial|unclassified	0.5965162565
+UniRef50_UPI0003B72870: hypothetical protein	0.5965118614
+UniRef50_UPI0003B72870: hypothetical protein|unclassified	0.5965118614
+UniRef50_UPI000472EE6E: hypothetical protein	0.5964595709
+UniRef50_UPI000472EE6E: hypothetical protein|unclassified	0.5964595709
+UniRef50_A0A036XC51	0.5964372801
+UniRef50_A0A036XC51|unclassified	0.5964372801
+UniRef50_P63651: Probable succinyl-CoA:3-ketoacid coenzyme A transferase subunit B	0.5964341101
+UniRef50_P63651: Probable succinyl-CoA:3-ketoacid coenzyme A transferase subunit B|unclassified	0.5964341101
+UniRef50_UPI000225A90D: RNA polymerase sigma 70	0.5963186035
+UniRef50_UPI000225A90D: RNA polymerase sigma 70|unclassified	0.5963186035
+UniRef50_A9M0E5: Aminopeptidase	0.5963029219
+UniRef50_A9M0E5: Aminopeptidase|g__Neisseria.s__Neisseria_meningitidis	0.5963029219
+UniRef50_F6YT63	0.5963029219
+UniRef50_F6YT63|unclassified	0.5963029219
+UniRef50_G5RLT2: Transcription accessory protein (S1 RNA-binding domain)	0.5962880078
+UniRef50_G5RLT2: Transcription accessory protein (S1 RNA-binding domain)|unclassified	0.5962880078
+UniRef50_G4BYK4	0.5962620980
+UniRef50_G4BYK4|unclassified	0.5962620980
+UniRef50_Q167K9: Chemotaxis response regulator protein-glutamate methylesterase	0.5962407706
+UniRef50_Q167K9: Chemotaxis response regulator protein-glutamate methylesterase|unclassified	0.5962407706
+UniRef50_Q8REI2: Phosphoenolpyruvate carboxykinase [ATP]	0.5962170075
+UniRef50_Q8REI2: Phosphoenolpyruvate carboxykinase [ATP]|unclassified	0.5962170075
+UniRef50_UPI0002194DF2: fructose-bisphosphate aldolase	0.5961887403
+UniRef50_UPI0002194DF2: fructose-bisphosphate aldolase|unclassified	0.5961887403
+UniRef50_D5ZWU2: Secreted beta-mannosidase (Fragment)	0.5960508250
+UniRef50_D5ZWU2: Secreted beta-mannosidase (Fragment)|unclassified	0.5960508250
+UniRef50_W3YZ74: MaoC-like protein	0.5960004707
+UniRef50_W3YZ74: MaoC-like protein|unclassified	0.5960004707
+UniRef50_UPI00046970D2: ABC transporter ATP-binding protein	0.5959502438
+UniRef50_UPI00046970D2: ABC transporter ATP-binding protein|unclassified	0.5959502438
+UniRef50_Q55463: Bicarbonate transport ATP-binding protein CmpD	0.5958913834
+UniRef50_Q55463: Bicarbonate transport ATP-binding protein CmpD|unclassified	0.5958913834
+UniRef50_R5PR61	0.5958704334
+UniRef50_R5PR61|unclassified	0.5958704334
+UniRef50_I6D9L0: Putative transposase	0.5958648311
+UniRef50_I6D9L0: Putative transposase|unclassified	0.5958648311
+UniRef50_D8U0J7	0.5958301143
+UniRef50_D8U0J7|unclassified	0.5958301143
+UniRef50_A0A031MFN9	0.5957110640
+UniRef50_A0A031MFN9|unclassified	0.5957110640
+UniRef50_UPI000372E407: TetR family transcriptional regulator	0.5957067830
+UniRef50_UPI000372E407: TetR family transcriptional regulator|unclassified	0.5957067830
+UniRef50_F3GL39	0.5956235137
+UniRef50_F3GL39|unclassified	0.5956235137
+UniRef50_UPI0001B447FE: quinol oxidase subunit I	0.5955797022
+UniRef50_UPI0001B447FE: quinol oxidase subunit I|unclassified	0.5955797022
+UniRef50_Q9RUU7	0.5954603696
+UniRef50_Q9RUU7|unclassified	0.5954603696
+UniRef50_B2HU41: NADH-quinone oxidoreductase subunit A	0.5953965853
+UniRef50_B2HU41: NADH-quinone oxidoreductase subunit A|unclassified	0.5953965853
+UniRef50_UPI00047D3778: hypothetical protein	0.5953313032
+UniRef50_UPI00047D3778: hypothetical protein|unclassified	0.5953313032
+UniRef50_T1A5Q2: Protein containing DUF28	0.5953148641
+UniRef50_T1A5Q2: Protein containing DUF28|unclassified	0.5953148641
+UniRef50_UPI0001E2E733: glycosyltransferase	0.5953025608
+UniRef50_UPI0001E2E733: glycosyltransferase|unclassified	0.5953025608
+UniRef50_UPI0003B53DD0: inositol monophosphatase	0.5952396607
+UniRef50_UPI0003B53DD0: inositol monophosphatase|unclassified	0.5952396607
+UniRef50_A0A058ZBE0	0.5952380952
+UniRef50_A0A058ZBE0|unclassified	0.5952380952
+UniRef50_UPI00036C749A: hypothetical protein	0.5952089537
+UniRef50_UPI00036C749A: hypothetical protein|unclassified	0.5952089537
+UniRef50_UPI000263162C: phosphoesterase PA-phosphatase related protein	0.5951421432
+UniRef50_UPI000263162C: phosphoesterase PA-phosphatase related protein|unclassified	0.5951421432
+UniRef50_I3TIM3	0.5951164156
+UniRef50_I3TIM3|unclassified	0.5951164156
+UniRef50_J9DFR0	0.5951061856
+UniRef50_J9DFR0|unclassified	0.5951061856
+UniRef50_UPI0004702F39: hypothetical protein, partial	0.5950620809
+UniRef50_UPI0004702F39: hypothetical protein, partial|unclassified	0.5950620809
+UniRef50_F9ECL7	0.5950321937
+UniRef50_F9ECL7|unclassified	0.5950321937
+UniRef50_F6HHF0	0.5949626866
+UniRef50_F6HHF0|unclassified	0.5949626866
+UniRef50_UPI000375F303: hypothetical protein	0.5949552907
+UniRef50_UPI000375F303: hypothetical protein|unclassified	0.5949552907
+UniRef50_UPI0001BF7642: hypothetical protein SMAC_11985, partial	0.5949507539
+UniRef50_UPI0001BF7642: hypothetical protein SMAC_11985, partial|unclassified	0.5949507539
+UniRef50_A0A022S625: UvrD/REP helicase N-terminal domain protein	0.5948583829
+UniRef50_A0A022S625: UvrD/REP helicase N-terminal domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.5948583829
+UniRef50_UPI000470104F: hypothetical protein	0.5948044527
+UniRef50_UPI000470104F: hypothetical protein|unclassified	0.5948044527
+UniRef50_Q9X7Q6: Isopentenyl-diphosphate Delta-isomerase	0.5947207586
+UniRef50_Q9X7Q6: Isopentenyl-diphosphate Delta-isomerase|unclassified	0.5947207586
+UniRef50_U6HG59: Iron sulfur cluster assembly 2	0.5946877536
+UniRef50_U6HG59: Iron sulfur cluster assembly 2|unclassified	0.5946877536
+UniRef50_I4F4V3	0.5946690861
+UniRef50_I4F4V3|unclassified	0.5946690861
+UniRef50_A5VWM2	0.5945974227
+UniRef50_A5VWM2|unclassified	0.5945974227
+UniRef50_UPI0003B5B12C: hypothetical protein	0.5945736377
+UniRef50_UPI0003B5B12C: hypothetical protein|unclassified	0.5945736377
+UniRef50_E7PV88: Transposase IS861 orfB	0.5945384166
+UniRef50_E7PV88: Transposase IS861 orfB|unclassified	0.5945384166
+UniRef50_UPI00034D0CB3: hypothetical protein	0.5945125842
+UniRef50_UPI00034D0CB3: hypothetical protein|unclassified	0.5945125842
+UniRef50_UPI00029A6F29: PTS system IIC component, partial	0.5944782208
+UniRef50_UPI00029A6F29: PTS system IIC component, partial|unclassified	0.5944782208
+UniRef50_UPI0003597C45: PREDICTED: probable E3 SUMO-protein ligase RNF212-like	0.5944098702
+UniRef50_UPI0003597C45: PREDICTED: probable E3 SUMO-protein ligase RNF212-like|unclassified	0.5944098702
+UniRef50_Q8UEB0: Phosphoribosylformylglycinamidine synthase 2	0.5943835254
+UniRef50_Q8UEB0: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.5943835254
+UniRef50_A0A012DIE8	0.5943039640
+UniRef50_A0A012DIE8|unclassified	0.5943039640
+UniRef50_UPI000359C526: PREDICTED: atherin-like isoform X1	0.5941770648
+UniRef50_UPI000359C526: PREDICTED: atherin-like isoform X1|unclassified	0.5941770648
+UniRef50_Q2BN56	0.5941695309
+UniRef50_Q2BN56|unclassified	0.5941695309
+UniRef50_UPI0003ACEC40: hypothetical protein	0.5941247924
+UniRef50_UPI0003ACEC40: hypothetical protein|unclassified	0.5941247924
+UniRef50_F0Y8N9	0.5940938038
+UniRef50_F0Y8N9|unclassified	0.5940938038
+UniRef50_UPI00036A727C: hypothetical protein	0.5940737796
+UniRef50_UPI00036A727C: hypothetical protein|unclassified	0.5940737796
+UniRef50_G5KGZ0: ABC-2 type transporter domain protein	0.5940573570
+UniRef50_G5KGZ0: ABC-2 type transporter domain protein|unclassified	0.5940573570
+UniRef50_UPI0003AE1535: PREDICTED: basic proline-rich protein-like	0.5938941442
+UniRef50_UPI0003AE1535: PREDICTED: basic proline-rich protein-like|unclassified	0.5938941442
+UniRef50_UPI0002D734A1: hypothetical protein	0.5938785111
+UniRef50_UPI0002D734A1: hypothetical protein|unclassified	0.5938785111
+UniRef50_D0DB87: Binding-protein-dependent transport systems inner membrane component	0.5938750752
+UniRef50_D0DB87: Binding-protein-dependent transport systems inner membrane component|unclassified	0.5938750752
+UniRef50_G7M597: Peptidase M56 BlaR1	0.5938242280
+UniRef50_G7M597: Peptidase M56 BlaR1|g__Clostridium.s__Clostridium_beijerinckii	0.5938242280
+UniRef50_D0L0Y6: UPF0125 protein Hneap_1528	0.5937935223
+UniRef50_D0L0Y6: UPF0125 protein Hneap_1528|unclassified	0.5937935223
+UniRef50_UPI000378205A: hypothetical protein	0.5937601037
+UniRef50_UPI000378205A: hypothetical protein|unclassified	0.5937601037
+UniRef50_Q1GEU0	0.5937006636
+UniRef50_Q1GEU0|unclassified	0.5937006636
+UniRef50_D3P4W5: Transposase	0.5936509470
+UniRef50_D3P4W5: Transposase|unclassified	0.5936509470
+UniRef50_Q9RRU8: S-ribosylhomocysteine lyase	0.5936346172
+UniRef50_Q9RRU8: S-ribosylhomocysteine lyase|unclassified	0.5936346172
+UniRef50_UPI000471E251: hypothetical protein	0.5935444137
+UniRef50_UPI000471E251: hypothetical protein|unclassified	0.5935444137
+UniRef50_Q9RVZ7: O-acetylhomoserine (Thiol)-lyase	0.5934718101
+UniRef50_Q9RVZ7: O-acetylhomoserine (Thiol)-lyase|g__Deinococcus.s__Deinococcus_radiodurans	0.5934718101
+UniRef50_V9RPF6	0.5934718101
+UniRef50_V9RPF6|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.5934718101
+UniRef50_B7RMN2: Flagellar protein, putative	0.5934608512
+UniRef50_B7RMN2: Flagellar protein, putative|unclassified	0.5934608512
+UniRef50_R5QAV4: CreA protein	0.5933896542
+UniRef50_R5QAV4: CreA protein|unclassified	0.5933896542
+UniRef50_Q21BD9	0.5933700947
+UniRef50_Q21BD9|unclassified	0.5933700947
+UniRef50_T9TBI3	0.5933680284
+UniRef50_T9TBI3|unclassified	0.5933680284
+UniRef50_O67260: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha	0.5932545767
+UniRef50_O67260: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|unclassified	0.5932545767
+UniRef50_E1KWK7: Metallo-beta-lactamase domain protein	0.5932352101
+UniRef50_E1KWK7: Metallo-beta-lactamase domain protein|unclassified	0.5932352101
+UniRef50_D6AJJ2: Predicted protein	0.5932293425
+UniRef50_D6AJJ2: Predicted protein|unclassified	0.5932293425
+UniRef50_K8DQ77: Membrane protein YcjF	0.5932194520
+UniRef50_K8DQ77: Membrane protein YcjF|unclassified	0.5932194520
+UniRef50_I0KVA0	0.5932088586
+UniRef50_I0KVA0|unclassified	0.5932088586
+UniRef50_R1D6N8	0.5931998957
+UniRef50_R1D6N8|unclassified	0.5931998957
+UniRef50_V8BEZ6	0.5931669292
+UniRef50_V8BEZ6|unclassified	0.5931669292
+UniRef50_W1H169	0.5931609130
+UniRef50_W1H169|unclassified	0.5931609130
+UniRef50_A6V1L5	0.5931412503
+UniRef50_A6V1L5|unclassified	0.5931412503
+UniRef50_R7T245	0.5931198102
+UniRef50_R7T245|unclassified	0.5931198102
+UniRef50_A8G0P6	0.5930070978
+UniRef50_A8G0P6|unclassified	0.5930070978
+UniRef50_UPI000362B180: hypothetical protein	0.5929421685
+UniRef50_UPI000362B180: hypothetical protein|unclassified	0.5929421685
+UniRef50_UPI0003B58512: heat shock protein Hsp20	0.5928486438
+UniRef50_UPI0003B58512: heat shock protein Hsp20|unclassified	0.5928486438
+UniRef50_A6UGW8: Replication protein C	0.5928195714
+UniRef50_A6UGW8: Replication protein C|unclassified	0.5928195714
+UniRef50_UPI000350365F: PREDICTED: peroxisome proliferator-activated receptor gamma coactivator-related protein 1-like isoform X1	0.5928190138
+UniRef50_UPI000350365F: PREDICTED: peroxisome proliferator-activated receptor gamma coactivator-related protein 1-like isoform X1|unclassified	0.5928190138
+UniRef50_L8XFD5	0.5928162016
+UniRef50_L8XFD5|unclassified	0.5928162016
+UniRef50_UPI0002BB7469: hypothetical protein	0.5927849508
+UniRef50_UPI0002BB7469: hypothetical protein|unclassified	0.5927849508
+UniRef50_W6KDS0: Transposase	0.5927409422
+UniRef50_W6KDS0: Transposase|unclassified	0.5927409422
+UniRef50_UPI0003891405: PREDICTED: mitochondrial peptide methionine sulfoxide reductase isoform X3	0.5926868556
+UniRef50_UPI0003891405: PREDICTED: mitochondrial peptide methionine sulfoxide reductase isoform X3|unclassified	0.5926868556
+UniRef50_F8YKA8: Putative hydrogenase 2 b cytochrome subunit	0.5926664320
+UniRef50_F8YKA8: Putative hydrogenase 2 b cytochrome subunit|unclassified	0.5926664320
+UniRef50_G7WK52	0.5926560499
+UniRef50_G7WK52|unclassified	0.5926560499
+UniRef50_C3E3W5	0.5926249105
+UniRef50_C3E3W5|unclassified	0.5926249105
+UniRef50_UPI000425BC50: tartrate dehydrogenase	0.5926072459
+UniRef50_UPI000425BC50: tartrate dehydrogenase|unclassified	0.5926072459
+UniRef50_V6UP25: ABC transporter permease (Fragment)	0.5925186078
+UniRef50_V6UP25: ABC transporter permease (Fragment)|unclassified	0.5925186078
+UniRef50_G9ZJL6	0.5924615461
+UniRef50_G9ZJL6|unclassified	0.5924615461
+UniRef50_F3GGP2: Short-chain dehydrogenase/reductase SDR (Fragment)	0.5924173959
+UniRef50_F3GGP2: Short-chain dehydrogenase/reductase SDR (Fragment)|unclassified	0.5924173959
+UniRef50_K7UVT6	0.5923569230
+UniRef50_K7UVT6|unclassified	0.5923569230
+UniRef50_UPI0003C18A10	0.5923191792
+UniRef50_UPI0003C18A10|unclassified	0.5923191792
+UniRef50_UPI00034F972D: PREDICTED: mitochondrial peptide methionine sulfoxide reductase-like	0.5923045333
+UniRef50_UPI00034F972D: PREDICTED: mitochondrial peptide methionine sulfoxide reductase-like|unclassified	0.5923045333
+UniRef50_UPI000374E7C2: acetyltransferase	0.5923002925
+UniRef50_UPI000374E7C2: acetyltransferase|unclassified	0.5923002925
+UniRef50_W1K3X1: LysR family transcriptional regulator (Fragment)	0.5921942824
+UniRef50_W1K3X1: LysR family transcriptional regulator (Fragment)|unclassified	0.5921942824
+UniRef50_UPI0003C19081: PREDICTED: biotin synthase-like	0.5921630803
+UniRef50_UPI0003C19081: PREDICTED: biotin synthase-like|unclassified	0.5921630803
+UniRef50_A6W6P9: 3-dehydroquinate dehydratase	0.5920955153
+UniRef50_A6W6P9: 3-dehydroquinate dehydratase|unclassified	0.5920955153
+UniRef50_F0Y7E7: Expressed protein (Fragment)	0.5920813033
+UniRef50_F0Y7E7: Expressed protein (Fragment)|unclassified	0.5920813033
+UniRef50_UPI0003AD57A9: hypothetical protein	0.5920663114
+UniRef50_UPI0003AD57A9: hypothetical protein|unclassified	0.5920663114
+UniRef50_P07264: 3-isopropylmalate dehydratase	0.5920199781
+UniRef50_P07264: 3-isopropylmalate dehydratase|unclassified	0.5920199781
+UniRef50_UPI00046D7323: type III secretion system protein	0.5918742983
+UniRef50_UPI00046D7323: type III secretion system protein|unclassified	0.5918742983
+UniRef50_P45868: Probable NAD-dependent malic enzyme 2	0.5917159763
+UniRef50_P45868: Probable NAD-dependent malic enzyme 2|g__Propionibacterium.s__Propionibacterium_acnes	0.5917159763
+UniRef50_UPI00047C6BBB: uracil transporter	0.5917106604
+UniRef50_UPI00047C6BBB: uracil transporter|unclassified	0.5917106604
+UniRef50_A0A022LYY0: Fatty acid hydroxylase (Fragment)	0.5916821716
+UniRef50_A0A022LYY0: Fatty acid hydroxylase (Fragment)|unclassified	0.5916821716
+UniRef50_F7WSN7: PE-PGRS family protein	0.5916171895
+UniRef50_F7WSN7: PE-PGRS family protein|unclassified	0.5916171895
+UniRef50_UPI00040C2914: hypothetical protein	0.5915259419
+UniRef50_UPI00040C2914: hypothetical protein|unclassified	0.5915259419
+UniRef50_B7H3D4: FhuE receptor	0.5913660556
+UniRef50_B7H3D4: FhuE receptor|g__Acinetobacter.s__Acinetobacter_baumannii	0.5913660556
+UniRef50_UPI00046EDE3C: TonB-dependent receptor, partial	0.5913660556
+UniRef50_UPI00046EDE3C: TonB-dependent receptor, partial|unclassified	0.5913660556
+UniRef50_Q5ZB87	0.5913172293
+UniRef50_Q5ZB87|unclassified	0.5913172293
+UniRef50_X1A993: Marine sediment metagenome DNA, contig: S01H4_C02711	0.5912905256
+UniRef50_X1A993: Marine sediment metagenome DNA, contig: S01H4_C02711|unclassified	0.5912905256
+UniRef50_A5G208	0.5912551454
+UniRef50_A5G208|unclassified	0.5912551454
+UniRef50_G6FVT3	0.5912359544
+UniRef50_G6FVT3|unclassified	0.5912359544
+UniRef50_E5U3W2	0.5911797073
+UniRef50_E5U3W2|unclassified	0.5911797073
+UniRef50_Q5F7Z5	0.5911392127
+UniRef50_Q5F7Z5|unclassified	0.5911392127
+UniRef50_UPI0002E2A0B8: hypothetical protein	0.5910989418
+UniRef50_UPI0002E2A0B8: hypothetical protein|unclassified	0.5910989418
+UniRef50_UPI0003B657E8: transcriptional regulator, partial	0.5910531150
+UniRef50_UPI0003B657E8: transcriptional regulator, partial|unclassified	0.5910531150
+UniRef50_M3YJ25	0.5910270342
+UniRef50_M3YJ25|unclassified	0.5910270342
+UniRef50_G8Q707: PpkA	0.5910165485
+UniRef50_G8Q707: PpkA|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.5910165485
+UniRef50_V8GLN3	0.5907685105
+UniRef50_V8GLN3|unclassified	0.5907685105
+UniRef50_H8HRA0	0.5906848134
+UniRef50_H8HRA0|unclassified	0.5906848134
+UniRef50_G7M3W5: PAS modulated sigma54 specific transcriptional regulator, Fis family	0.5906674542
+UniRef50_G7M3W5: PAS modulated sigma54 specific transcriptional regulator, Fis family|g__Clostridium.s__Clostridium_beijerinckii	0.5906674542
+UniRef50_M3KDC3	0.5904892299
+UniRef50_M3KDC3|unclassified	0.5904892299
+UniRef50_UPI0003656635: hypothetical protein, partial	0.5903973239
+UniRef50_UPI0003656635: hypothetical protein, partial|unclassified	0.5903973239
+UniRef50_I6DDT9	0.5903770295
+UniRef50_I6DDT9|unclassified	0.5903770295
+UniRef50_Q3K8S2	0.5903157103
+UniRef50_Q3K8S2|unclassified	0.5903157103
+UniRef50_G8AIH3	0.5902899077
+UniRef50_G8AIH3|unclassified	0.5902899077
+UniRef50_UPI000376B01F: hypothetical protein	0.5902061202
+UniRef50_UPI000376B01F: hypothetical protein|unclassified	0.5902061202
+UniRef50_UPI000349AE1F: hypothetical protein	0.5901811006
+UniRef50_UPI000349AE1F: hypothetical protein|unclassified	0.5901811006
+UniRef50_E8QWR0	0.5901360395
+UniRef50_E8QWR0|unclassified	0.5901360395
+UniRef50_C3E6P2	0.5900558336
+UniRef50_C3E6P2|unclassified	0.5900558336
+UniRef50_UPI0003503787: PREDICTED: basic proline-rich protein-like, partial	0.5900005269
+UniRef50_UPI0003503787: PREDICTED: basic proline-rich protein-like, partial|unclassified	0.5900005269
+UniRef50_Q6DB92: Low affinity potassium transport system protein kup	0.5899705015
+UniRef50_Q6DB92: Low affinity potassium transport system protein kup|g__Acinetobacter.s__Acinetobacter_baumannii	0.5899705015
+UniRef50_UPI000287B619: UBA/THIF-type NAD/FAD binding protein	0.5899705015
+UniRef50_UPI000287B619: UBA/THIF-type NAD/FAD binding protein|unclassified	0.5899705015
+UniRef50_UPI00047AECEE: KaiC 1	0.5898842987
+UniRef50_UPI00047AECEE: KaiC 1|unclassified	0.5898842987
+UniRef50_U6ZWE8	0.5898379210
+UniRef50_U6ZWE8|unclassified	0.5898379210
+UniRef50_UPI0003B4DDEE: hypothetical protein	0.5897572800
+UniRef50_UPI0003B4DDEE: hypothetical protein|unclassified	0.5897572800
+UniRef50_UPI0003C798FA: hypothetical protein	0.5896872936
+UniRef50_UPI0003C798FA: hypothetical protein|unclassified	0.5896872936
+UniRef50_UPI0003B3AA34: GDSL family lipase	0.5895555278
+UniRef50_UPI0003B3AA34: GDSL family lipase|unclassified	0.5895555278
+UniRef50_A0A045UMF7	0.5895416258
+UniRef50_A0A045UMF7|unclassified	0.5895416258
+UniRef50_UPI00026CD5CD: GntR family transcriptional regulator	0.5895012831
+UniRef50_UPI00026CD5CD: GntR family transcriptional regulator|unclassified	0.5895012831
+UniRef50_D5W9T2	0.5894306491
+UniRef50_D5W9T2|unclassified	0.5894306491
+UniRef50_UPI0003B71162: hypothetical protein	0.5893932004
+UniRef50_UPI0003B71162: hypothetical protein|unclassified	0.5893932004
+UniRef50_E3CRS2	0.5893671409
+UniRef50_E3CRS2|unclassified	0.5893671409
+UniRef50_E3EZ36	0.5893405569
+UniRef50_E3EZ36|unclassified	0.5893405569
+UniRef50_UPI0003776C46: hypothetical protein, partial	0.5893302228
+UniRef50_UPI0003776C46: hypothetical protein, partial|unclassified	0.5893302228
+UniRef50_R1G4Z8	0.5892751915
+UniRef50_R1G4Z8|unclassified	0.5892751915
+UniRef50_H4FE00	0.5892720303
+UniRef50_H4FE00|unclassified	0.5892720303
+UniRef50_U2Z7C1	0.5892204752
+UniRef50_U2Z7C1|unclassified	0.5892204752
+UniRef50_UPI00035E1717: phospholipase, partial	0.5891321655
+UniRef50_UPI00035E1717: phospholipase, partial|unclassified	0.5891321655
+UniRef50_I3I8T9: Transcriptional regulator SoxR	0.5890196188
+UniRef50_I3I8T9: Transcriptional regulator SoxR|unclassified	0.5890196188
+UniRef50_A5V5R2: Rod binding-like protein	0.5889207597
+UniRef50_A5V5R2: Rod binding-like protein|unclassified	0.5889207597
+UniRef50_B7N757: Prepilin peptidase-dependent protein B	0.5889140813
+UniRef50_B7N757: Prepilin peptidase-dependent protein B|unclassified	0.5889140813
+UniRef50_Q8TY77: Sirohydrochlorin cobaltochelatase	0.5888974756
+UniRef50_Q8TY77: Sirohydrochlorin cobaltochelatase|unclassified	0.5888974756
+UniRef50_I7E1A5: Phage tail protein X	0.5888144882
+UniRef50_I7E1A5: Phage tail protein X|unclassified	0.5888144882
+UniRef50_M4Z444: Phage major tail tube protein	0.5887766500
+UniRef50_M4Z444: Phage major tail tube protein|unclassified	0.5887766500
+UniRef50_UPI0003C7ABEF: hypothetical protein, partial	0.5886819693
+UniRef50_UPI0003C7ABEF: hypothetical protein, partial|unclassified	0.5886819693
+UniRef50_X5EKX3	0.5886015606
+UniRef50_X5EKX3|unclassified	0.5886015606
+UniRef50_R7EZW8	0.5885956887
+UniRef50_R7EZW8|unclassified	0.5885956887
+UniRef50_F0RJQ8: Acetolactate synthase	0.5885815185
+UniRef50_F0RJQ8: Acetolactate synthase|g__Deinococcus.s__Deinococcus_radiodurans	0.5885815185
+UniRef50_UPI00005B87BB: arginine/ornithine antiporter, partial	0.5885548128
+UniRef50_UPI00005B87BB: arginine/ornithine antiporter, partial|unclassified	0.5885548128
+UniRef50_C3LHZ7	0.5885272326
+UniRef50_C3LHZ7|unclassified	0.5885272326
+UniRef50_A3PMQ5	0.5885067888
+UniRef50_A3PMQ5|unclassified	0.5885067888
+UniRef50_A0PKQ3: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	0.5884719601
+UniRef50_A0PKQ3: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.5884719601
+UniRef50_Q5FGN1: Nucleoside diphosphate kinase	0.5884625762
+UniRef50_Q5FGN1: Nucleoside diphosphate kinase|unclassified	0.5884625762
+UniRef50_UPI000255E431: cystine transporter permease	0.5884575400
+UniRef50_UPI000255E431: cystine transporter permease|unclassified	0.5884575400
+UniRef50_X6DE91	0.5884278157
+UniRef50_X6DE91|unclassified	0.5884278157
+UniRef50_A4VRC6	0.5884151314
+UniRef50_A4VRC6|unclassified	0.5884151314
+UniRef50_P0A4R2: Urease subunit beta	0.5884120826
+UniRef50_P0A4R2: Urease subunit beta|unclassified	0.5884120826
+UniRef50_B1JXE0	0.5884093673
+UniRef50_B1JXE0|unclassified	0.5884093673
+UniRef50_Q98CT1: Imidazole glycerol phosphate synthase subunit HisF	0.5883996116
+UniRef50_Q98CT1: Imidazole glycerol phosphate synthase subunit HisF|unclassified	0.5883996116
+UniRef50_UPI000471DA2C: hypothetical protein, partial	0.5883858468
+UniRef50_UPI000471DA2C: hypothetical protein, partial|unclassified	0.5883858468
+UniRef50_Q71ZJ9: Ribosomal protein L11 methyltransferase	0.5883092144
+UniRef50_Q71ZJ9: Ribosomal protein L11 methyltransferase|unclassified	0.5883092144
+UniRef50_K3ZW25	0.5882733394
+UniRef50_K3ZW25|unclassified	0.5882733394
+UniRef50_A3S7A7	0.5882560991
+UniRef50_A3S7A7|unclassified	0.5882560991
+UniRef50_Q6FF05: Primosomal protein N' (= factor Y) directs replication fork assembly at D-loops, ATP-dependent	0.5882352941
+UniRef50_Q6FF05: Primosomal protein N' (= factor Y) directs replication fork assembly at D-loops, ATP-dependent|g__Acinetobacter.s__Acinetobacter_baumannii	0.5882352941
+UniRef50_G5ZXS4: Threonine synthase	0.5882171806
+UniRef50_G5ZXS4: Threonine synthase|unclassified	0.5882171806
+UniRef50_UPI00047225C0: ethanol-active dehydrogenase/acetaldehyde-active reductase	0.5881428435
+UniRef50_UPI00047225C0: ethanol-active dehydrogenase/acetaldehyde-active reductase|unclassified	0.5881428435
+UniRef50_UPI0003DE8F7F: PREDICTED: glycine-rich cell wall structural protein 1-like	0.5881179272
+UniRef50_UPI0003DE8F7F: PREDICTED: glycine-rich cell wall structural protein 1-like|unclassified	0.5881179272
+UniRef50_UPI0002FD78DB: hypothetical protein	0.5881045073
+UniRef50_UPI0002FD78DB: hypothetical protein|unclassified	0.5881045073
+UniRef50_UPI0001C395E6: cystathionine gamma-lyase	0.5880651869
+UniRef50_UPI0001C395E6: cystathionine gamma-lyase|unclassified	0.5880651869
+UniRef50_A0A011QIP1	0.5880127249
+UniRef50_A0A011QIP1|unclassified	0.5880127249
+UniRef50_A0A032AQX4	0.5879432389
+UniRef50_A0A032AQX4|unclassified	0.5879432389
+UniRef50_UPI00046678E3: hypothetical protein	0.5878738057
+UniRef50_UPI00046678E3: hypothetical protein|unclassified	0.5878738057
+UniRef50_UPI00037D0C80: hypothetical protein	0.5878675016
+UniRef50_UPI00037D0C80: hypothetical protein|unclassified	0.5878675016
+UniRef50_UPI000373FE76: hypothetical protein	0.5876845994
+UniRef50_UPI000373FE76: hypothetical protein|unclassified	0.5876845994
+UniRef50_H8K694: Integrase catalytic subunit	0.5876829938
+UniRef50_H8K694: Integrase catalytic subunit|unclassified	0.5876829938
+UniRef50_W4M7B3	0.5875619577
+UniRef50_W4M7B3|unclassified	0.5875619577
+UniRef50_A7H874: LigA	0.5875551338
+UniRef50_A7H874: LigA|unclassified	0.5875551338
+UniRef50_D7CSB0: ABC transporter related protein	0.5875440658
+UniRef50_D7CSB0: ABC transporter related protein|g__Deinococcus.s__Deinococcus_radiodurans	0.5875440658
+UniRef50_P59217: Putative terminase large subunit	0.5875440658
+UniRef50_P59217: Putative terminase large subunit|g__Escherichia.s__Escherichia_coli	0.5875440658
+UniRef50_UPI0003F80A61: thioredoxin	0.5875001410
+UniRef50_UPI0003F80A61: thioredoxin|unclassified	0.5875001410
+UniRef50_L1L1V6	0.5874990020
+UniRef50_L1L1V6|unclassified	0.5874990020
+UniRef50_F7ZK72	0.5874779399
+UniRef50_F7ZK72|unclassified	0.5874779399
+UniRef50_UPI000328F6B1: PREDICTED: zinc finger protein castor homolog 1-like	0.5871990605
+UniRef50_UPI000328F6B1: PREDICTED: zinc finger protein castor homolog 1-like|unclassified	0.5871990605
+UniRef50_X1I851: Marine sediment metagenome DNA, contig: S03H2_S26737 (Fragment)	0.5871676015
+UniRef50_X1I851: Marine sediment metagenome DNA, contig: S03H2_S26737 (Fragment)|unclassified	0.5871676015
+UniRef50_F0RJ20	0.5871101763
+UniRef50_F0RJ20|unclassified	0.5871101763
+UniRef50_Q12EY5: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	0.5870640271
+UniRef50_Q12EY5: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.5870640271
+UniRef50_S7SNE1: Nucleoside transport system permease protein	0.5870249594
+UniRef50_S7SNE1: Nucleoside transport system permease protein|unclassified	0.5870249594
+UniRef50_A6LZ45: Histidine kinase internal region	0.5868544601
+UniRef50_A6LZ45: Histidine kinase internal region|g__Clostridium.s__Clostridium_beijerinckii	0.5868544601
+UniRef50_Q3JIM1	0.5868544601
+UniRef50_Q3JIM1|unclassified	0.5868544601
+UniRef50_A1KRG6: DNA-directed RNA polymerase subunit beta	0.5868186365
+UniRef50_A1KRG6: DNA-directed RNA polymerase subunit beta|g__Neisseria.s__Neisseria_meningitidis	0.5157114824
+UniRef50_A1KRG6: DNA-directed RNA polymerase subunit beta|unclassified	0.0711071541
+UniRef50_Q938W0: Phosphoribosyl-ATP pyrophosphatase 2	0.5866861154
+UniRef50_Q938W0: Phosphoribosyl-ATP pyrophosphatase 2|unclassified	0.5866861154
+UniRef50_Q6BSU5: Sulfate adenylyltransferase	0.5866689489
+UniRef50_Q6BSU5: Sulfate adenylyltransferase|unclassified	0.5866689489
+UniRef50_M2XKX9: Arsenic-transport integral membrane protein ARSB1	0.5865600855
+UniRef50_M2XKX9: Arsenic-transport integral membrane protein ARSB1|unclassified	0.5865600855
+UniRef50_R6NGR0: Transcriptional repressor NrdR	0.5864263894
+UniRef50_R6NGR0: Transcriptional repressor NrdR|unclassified	0.5864263894
+UniRef50_UPI0002887BFA: HAD-superfamily hydrolase	0.5862174100
+UniRef50_UPI0002887BFA: HAD-superfamily hydrolase|unclassified	0.5862174100
+UniRef50_K2IQJ0	0.5861707395
+UniRef50_K2IQJ0|unclassified	0.5861707395
+UniRef50_N6V491	0.5861664713
+UniRef50_N6V491|unclassified	0.5861664713
+UniRef50_UPI0002000F87: oxidoreductase	0.5861664713
+UniRef50_UPI0002000F87: oxidoreductase|unclassified	0.5861664713
+UniRef50_UPI00041DC2F9: ABC transporter	0.5861393922
+UniRef50_UPI00041DC2F9: ABC transporter|unclassified	0.5861393922
+UniRef50_UPI0003FEB8DF: dimethyl sulfoxide reductase	0.5861304697
+UniRef50_UPI0003FEB8DF: dimethyl sulfoxide reductase|unclassified	0.5861304697
+UniRef50_W1F8A7: Colanic acid biosysnthesis protein WcaK	0.5861250359
+UniRef50_W1F8A7: Colanic acid biosysnthesis protein WcaK|unclassified	0.5861250359
+UniRef50_UPI0003AA0794: hypothetical protein	0.5861086448
+UniRef50_UPI0003AA0794: hypothetical protein|unclassified	0.5861086448
+UniRef50_W1IEL4: Chromosome I, genome	0.5860602181
+UniRef50_W1IEL4: Chromosome I, genome|unclassified	0.5860602181
+UniRef50_H2PRE9	0.5860315700
+UniRef50_H2PRE9|unclassified	0.5860315700
+UniRef50_Q1AVD9: Class II aldolase/adducin-like protein	0.5859570544
+UniRef50_Q1AVD9: Class II aldolase/adducin-like protein|unclassified	0.5859570544
+UniRef50_UPI0003F7C0FA: hypothetical protein	0.5859338876
+UniRef50_UPI0003F7C0FA: hypothetical protein|unclassified	0.5859338876
+UniRef50_UPI0002377A32: formate dehydrogenase accessory protein, partial	0.5858911655
+UniRef50_UPI0002377A32: formate dehydrogenase accessory protein, partial|unclassified	0.5858911655
+UniRef50_E1VIL5	0.5858230814
+UniRef50_E1VIL5|g__Acinetobacter.s__Acinetobacter_baumannii	0.5858230814
+UniRef50_S8MEU9: Cell wall surface anchor protein	0.5858230814
+UniRef50_S8MEU9: Cell wall surface anchor protein|g__Streptococcus.s__Streptococcus_agalactiae	0.5858230814
+UniRef50_A0A017SWC8	0.5857843138
+UniRef50_A0A017SWC8|unclassified	0.5857843138
+UniRef50_C2V444: YbbR	0.5857840897
+UniRef50_C2V444: YbbR|unclassified	0.5857840897
+UniRef50_UPI00036E9589: hypothetical protein, partial	0.5857618642
+UniRef50_UPI00036E9589: hypothetical protein, partial|unclassified	0.5857618642
+UniRef50_P30793-4: Isoform GCH-4 of GTP cyclohydrolase 1	0.5856578298
+UniRef50_P30793-4: Isoform GCH-4 of GTP cyclohydrolase 1|unclassified	0.5856578298
+UniRef50_M9VIB3: Type III restriction enzyme, res subunit	0.5854800937
+UniRef50_M9VIB3: Type III restriction enzyme, res subunit|g__Propionibacterium.s__Propionibacterium_acnes	0.5854800937
+UniRef50_W4TN66: Integral membrane protein	0.5854685459
+UniRef50_W4TN66: Integral membrane protein|unclassified	0.5854685459
+UniRef50_UPI00031DE567: hypothetical protein	0.5853012195
+UniRef50_UPI00031DE567: hypothetical protein|unclassified	0.5853012195
+UniRef50_UPI0001912E20: autoinducer-2 (AI-2) kinase, partial	0.5851263163
+UniRef50_UPI0001912E20: autoinducer-2 (AI-2) kinase, partial|unclassified	0.5851263163
+UniRef50_X8CB66	0.5850803298
+UniRef50_X8CB66|unclassified	0.5850803298
+UniRef50_UPI000169586B: hypothetical protein	0.5850171817
+UniRef50_UPI000169586B: hypothetical protein|unclassified	0.5850171817
+UniRef50_A6WX78: Ribosomal RNA small subunit methyltransferase G	0.5850064486
+UniRef50_A6WX78: Ribosomal RNA small subunit methyltransferase G|unclassified	0.5850064486
+UniRef50_F7NVS4: Cbb3-type cytochrome oxidase, subunit 3	0.5849618264
+UniRef50_F7NVS4: Cbb3-type cytochrome oxidase, subunit 3|unclassified	0.5849618264
+UniRef50_T1BRC5: Ribonuclease PH (Fragment)	0.5848570746
+UniRef50_T1BRC5: Ribonuclease PH (Fragment)|unclassified	0.5848570746
+UniRef50_A0A011Q7A1: Carboxylate/amino acid/amine transporter	0.5848317174
+UniRef50_A0A011Q7A1: Carboxylate/amino acid/amine transporter|unclassified	0.5848317174
+UniRef50_UPI0001B4141C: flagellar MS-ring protein	0.5847953216
+UniRef50_UPI0001B4141C: flagellar MS-ring protein|unclassified	0.5847953216
+UniRef50_F3TV52: Conserved domain protein	0.5847711576
+UniRef50_F3TV52: Conserved domain protein|unclassified	0.5847711576
+UniRef50_L7UJT3	0.5847691453
+UniRef50_L7UJT3|unclassified	0.5847691453
+UniRef50_A0A028FFX2	0.5847362389
+UniRef50_A0A028FFX2|unclassified	0.5847362389
+UniRef50_Q9RTB2	0.5846884834
+UniRef50_Q9RTB2|unclassified	0.5846884834
+UniRef50_UPI00046642FC: flagellar basal body rod modification protein	0.5846724917
+UniRef50_UPI00046642FC: flagellar basal body rod modification protein|unclassified	0.5846724917
+UniRef50_B6B6V7	0.5846325877
+UniRef50_B6B6V7|unclassified	0.5846325877
+UniRef50_UPI00034B1CB5: hypothetical protein	0.5845884038
+UniRef50_UPI00034B1CB5: hypothetical protein|unclassified	0.5845884038
+UniRef50_V0FSC5: Microcin C ABC transporter permease	0.5845875364
+UniRef50_V0FSC5: Microcin C ABC transporter permease|unclassified	0.5845875364
+UniRef50_W1X9U9: Membrane protein (Fragment)	0.5845780746
+UniRef50_W1X9U9: Membrane protein (Fragment)|unclassified	0.5845780746
+UniRef50_UPI000363DAAF: hypothetical protein	0.5845118142
+UniRef50_UPI000363DAAF: hypothetical protein|unclassified	0.5845118142
+UniRef50_Q0K7L9: TRAP-type transporter, small permease component	0.5844204561
+UniRef50_Q0K7L9: TRAP-type transporter, small permease component|unclassified	0.5844204561
+UniRef50_V4QDE8	0.5843470433
+UniRef50_V4QDE8|unclassified	0.5843470433
+UniRef50_UPI0003B62EF2: hypothetical protein	0.5842532947
+UniRef50_UPI0003B62EF2: hypothetical protein|unclassified	0.5842532947
+UniRef50_X1C1Q6: Marine sediment metagenome DNA, contig: S01H4_S00525	0.5842222406
+UniRef50_X1C1Q6: Marine sediment metagenome DNA, contig: S01H4_S00525|unclassified	0.5842222406
+UniRef50_D7BBF8	0.5842164229
+UniRef50_D7BBF8|unclassified	0.5842164229
+UniRef50_C9ZFN3: Putative peptidodoglycan-binding membrane protein	0.5841452165
+UniRef50_C9ZFN3: Putative peptidodoglycan-binding membrane protein|unclassified	0.5841452165
+UniRef50_UPI000470E9D6: hypothetical protein	0.5841072356
+UniRef50_UPI000470E9D6: hypothetical protein|unclassified	0.5841072356
+UniRef50_X6CFY6	0.5840620768
+UniRef50_X6CFY6|unclassified	0.5840620768
+UniRef50_X2N5U1: NAD-dependent epimerase	0.5840554902
+UniRef50_X2N5U1: NAD-dependent epimerase|unclassified	0.5840554902
+UniRef50_UPI000263071A: hydrophobe/amphiphile efflux-1 (HAE1) family transporter	0.5837967479
+UniRef50_UPI000263071A: hydrophobe/amphiphile efflux-1 (HAE1) family transporter|unclassified	0.5837967479
+UniRef50_UPI00036E0734: hypothetical protein	0.5837655691
+UniRef50_UPI00036E0734: hypothetical protein|unclassified	0.5837655691
+UniRef50_W9VKY9	0.5837558175
+UniRef50_W9VKY9|unclassified	0.5837558175
+UniRef50_UPI0004705A71: hypothetical protein	0.5837481757
+UniRef50_UPI0004705A71: hypothetical protein|unclassified	0.5837481757
+UniRef50_D1JNF2	0.5836556418
+UniRef50_D1JNF2|unclassified	0.5836556418
+UniRef50_UPI0003B53587: GntR family transcriptional regulator	0.5836318333
+UniRef50_UPI0003B53587: GntR family transcriptional regulator|unclassified	0.5836318333
+UniRef50_K1HHJ1: Protein mreBH	0.5835486878
+UniRef50_K1HHJ1: Protein mreBH|unclassified	0.5835486878
+UniRef50_J8SAI7: Integral membrane protein MviN (Fragment)	0.5835322001
+UniRef50_J8SAI7: Integral membrane protein MviN (Fragment)|unclassified	0.5835322001
+UniRef50_K2AIZ3: ABC transporter related protein	0.5835150431
+UniRef50_K2AIZ3: ABC transporter related protein|unclassified	0.5835150431
+UniRef50_X2LVW5	0.5835058753
+UniRef50_X2LVW5|unclassified	0.5835058753
+UniRef50_M0S6D7	0.5835051168
+UniRef50_M0S6D7|unclassified	0.5835051168
+UniRef50_R1E0T4	0.5834433221
+UniRef50_R1E0T4|unclassified	0.5834433221
+UniRef50_A1TSZ5: Urease subunit beta	0.5834379420
+UniRef50_A1TSZ5: Urease subunit beta|unclassified	0.5834379420
+UniRef50_W4HKM0	0.5834204038
+UniRef50_W4HKM0|unclassified	0.5834204038
+UniRef50_Q37374: Cytochrome c oxidase subunit 3	0.5834136088
+UniRef50_Q37374: Cytochrome c oxidase subunit 3|unclassified	0.5834136088
+UniRef50_B1FNG7: LigA	0.5834093575
+UniRef50_B1FNG7: LigA|unclassified	0.5834093575
+UniRef50_X1MDG9: Marine sediment metagenome DNA, contig: S06H3_L05042	0.5833708352
+UniRef50_X1MDG9: Marine sediment metagenome DNA, contig: S06H3_L05042|unclassified	0.5833708352
+UniRef50_A0A022HX09: Zonular occludens toxin family protein	0.5832984337
+UniRef50_A0A022HX09: Zonular occludens toxin family protein|unclassified	0.5832984337
+UniRef50_P17279: 3-isopropylmalate dehydratase	0.5832940647
+UniRef50_P17279: 3-isopropylmalate dehydratase|unclassified	0.5832940647
+UniRef50_UPI0002491805: hydroxymethylglutaryl-CoA synthase	0.5832467184
+UniRef50_UPI0002491805: hydroxymethylglutaryl-CoA synthase|unclassified	0.5832467184
+UniRef50_W7QFR5	0.5832231700
+UniRef50_W7QFR5|unclassified	0.5832231700
+UniRef50_Q5F551: Phosphopantetheine adenylyltransferase	0.5831583091
+UniRef50_Q5F551: Phosphopantetheine adenylyltransferase|unclassified	0.5831583091
+UniRef50_G5JHU8: Shikimate 5-dehydrogenase (Fragment)	0.5830922059
+UniRef50_G5JHU8: Shikimate 5-dehydrogenase (Fragment)|unclassified	0.5830922059
+UniRef50_A6LWM9: Collagen triple helix repeat	0.5830903790
+UniRef50_A6LWM9: Collagen triple helix repeat|g__Clostridium.s__Clostridium_beijerinckii	0.5830903790
+UniRef50_X5NVN5: Oxidoreductase (Glutamate synthase related)	0.5830717987
+UniRef50_X5NVN5: Oxidoreductase (Glutamate synthase related)|unclassified	0.5830717987
+UniRef50_UPI0003090250: hypothetical protein	0.5829989963
+UniRef50_UPI0003090250: hypothetical protein|unclassified	0.5829989963
+UniRef50_UPI00047815F9: hypothetical protein	0.5828796831
+UniRef50_UPI00047815F9: hypothetical protein|unclassified	0.5828796831
+UniRef50_UPI0002FBE338: hypothetical protein	0.5827874422
+UniRef50_UPI0002FBE338: hypothetical protein|unclassified	0.5827874422
+UniRef50_UPI00047CBBB1: hypothetical protein	0.5827828669
+UniRef50_UPI00047CBBB1: hypothetical protein|unclassified	0.5827828669
+UniRef50_U6A8Y3: Non-ribosomal peptide synthetase modules-related protein	0.5826769919
+UniRef50_U6A8Y3: Non-ribosomal peptide synthetase modules-related protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.5826769919
+UniRef50_UPI0003A216C9: hypothetical protein	0.5826098741
+UniRef50_UPI0003A216C9: hypothetical protein|unclassified	0.5826098741
+UniRef50_UPI00047977A0: hypothetical protein	0.5825607255
+UniRef50_UPI00047977A0: hypothetical protein|unclassified	0.5825607255
+UniRef50_W1S795	0.5825585841
+UniRef50_W1S795|unclassified	0.5825585841
+UniRef50_W9EYV5	0.5825109939
+UniRef50_W9EYV5|unclassified	0.5825109939
+UniRef50_UPI000376F140: hypothetical protein	0.5825052470
+UniRef50_UPI000376F140: hypothetical protein|unclassified	0.5825052470
+UniRef50_UPI0001B465BD: 30S ribosomal protein S4	0.5824547347
+UniRef50_UPI0001B465BD: 30S ribosomal protein S4|unclassified	0.5824547347
+UniRef50_Z2DLB6	0.5824374554
+UniRef50_Z2DLB6|unclassified	0.5824374554
+UniRef50_UPI000255F1A4: MerR family transcriptional regulator	0.5824313088
+UniRef50_UPI000255F1A4: MerR family transcriptional regulator|unclassified	0.5824313088
+UniRef50_S6RV85: Bmp family protein	0.5824294856
+UniRef50_S6RV85: Bmp family protein|unclassified	0.5824294856
+UniRef50_Q3JNR9	0.5823749264
+UniRef50_Q3JNR9|unclassified	0.5823749264
+UniRef50_UPI0004758F1B: hypothetical protein	0.5823562930
+UniRef50_UPI0004758F1B: hypothetical protein|unclassified	0.5823562930
+UniRef50_I3UTD6	0.5822753275
+UniRef50_I3UTD6|unclassified	0.5822753275
+UniRef50_I4CXX5	0.5822591122
+UniRef50_I4CXX5|unclassified	0.5822591122
+UniRef50_U6H0B0	0.5822018597
+UniRef50_U6H0B0|unclassified	0.5822018597
+UniRef50_T1BAH6: Glutaredoxin family protein (Fragment)	0.5822015427
+UniRef50_T1BAH6: Glutaredoxin family protein (Fragment)|unclassified	0.5822015427
+UniRef50_Q2CBB5	0.5821760113
+UniRef50_Q2CBB5|unclassified	0.5821760113
+UniRef50_UPI00037534FD: resolvase	0.5821240089
+UniRef50_UPI00037534FD: resolvase|unclassified	0.5821240089
+UniRef50_UPI000471FC6E: glyoxalase	0.5821148158
+UniRef50_UPI000471FC6E: glyoxalase|unclassified	0.5821148158
+UniRef50_UPI00021A59F3: PREDICTED: hypothetical protein LOC100638784	0.5820749221
+UniRef50_UPI00021A59F3: PREDICTED: hypothetical protein LOC100638784|unclassified	0.5820749221
+UniRef50_V9TCE0	0.5820649432
+UniRef50_V9TCE0|unclassified	0.5820649432
+UniRef50_U4V2G6: Flagellar hook-basal body protein	0.5819845861
+UniRef50_U4V2G6: Flagellar hook-basal body protein|unclassified	0.5819845861
+UniRef50_UPI0004650F47: ABC transporter permease	0.5819822938
+UniRef50_UPI0004650F47: ABC transporter permease|unclassified	0.5819822938
+UniRef50_V4QH71: FlhB	0.5819663781
+UniRef50_V4QH71: FlhB|unclassified	0.5819663781
+UniRef50_UPI0003C18CC4	0.5819279342
+UniRef50_UPI0003C18CC4|unclassified	0.5819279342
+UniRef50_A6XX60: PentahemiC c-type cytochrome (Fragment)	0.5818300747
+UniRef50_A6XX60: PentahemiC c-type cytochrome (Fragment)|unclassified	0.5818300747
+UniRef50_UPI00029AC376: cytochrome c-type biogenesis protein CcmF	0.5818014024
+UniRef50_UPI00029AC376: cytochrome c-type biogenesis protein CcmF|unclassified	0.5818014024
+UniRef50_U1TBM9	0.5816601721
+UniRef50_U1TBM9|unclassified	0.5816601721
+UniRef50_R4VND7: Fe-S metabolism associated SufE	0.5816535087
+UniRef50_R4VND7: Fe-S metabolism associated SufE|unclassified	0.5816535087
+UniRef50_K3YJT3	0.5816492128
+UniRef50_K3YJT3|unclassified	0.5816492128
+UniRef50_UPI0003B543F0: hypothetical protein	0.5816260217
+UniRef50_UPI0003B543F0: hypothetical protein|unclassified	0.5816260217
+UniRef50_E6RPQ3	0.5816239651
+UniRef50_E6RPQ3|unclassified	0.5816239651
+UniRef50_UPI0003345675: PREDICTED: transcription elongation factor A protein 2	0.5814628401
+UniRef50_UPI0003345675: PREDICTED: transcription elongation factor A protein 2|unclassified	0.5814628401
+UniRef50_Q8LMC8	0.5814222913
+UniRef50_Q8LMC8|unclassified	0.5814222913
+UniRef50_W8S776	0.5814165310
+UniRef50_W8S776|unclassified	0.5814165310
+UniRef50_Q3JTY3	0.5813953488
+UniRef50_Q3JTY3|unclassified	0.5813953488
+UniRef50_Y1DSI1: Nitrite extrusion protein 1	0.5813020426
+UniRef50_Y1DSI1: Nitrite extrusion protein 1|unclassified	0.5813020426
+UniRef50_L2EA36: GABA permease	0.5812895211
+UniRef50_L2EA36: GABA permease|unclassified	0.5812895211
+UniRef50_A0A059ILG7	0.5812859576
+UniRef50_A0A059ILG7|unclassified	0.5812859576
+UniRef50_A0A023CN81: Lysine exporter protein LysE/YggA	0.5811945208
+UniRef50_A0A023CN81: Lysine exporter protein LysE/YggA|unclassified	0.5811945208
+UniRef50_G8AZY0	0.5811928760
+UniRef50_G8AZY0|unclassified	0.5811928760
+UniRef50_C4JB45	0.5811222741
+UniRef50_C4JB45|unclassified	0.5811222741
+UniRef50_W4HGN2	0.5811130546
+UniRef50_W4HGN2|unclassified	0.5811130546
+UniRef50_UPI00046B144B	0.5810810442
+UniRef50_UPI00046B144B|unclassified	0.5810810442
+UniRef50_Q3IU57: Phosphoribosyl-ATP pyrophosphatase	0.5810020662
+UniRef50_Q3IU57: Phosphoribosyl-ATP pyrophosphatase|unclassified	0.5810020662
+UniRef50_R0DT48	0.5809681482
+UniRef50_R0DT48|unclassified	0.5809681482
+UniRef50_UPI000378142D: hypothetical protein	0.5808219457
+UniRef50_UPI000378142D: hypothetical protein|unclassified	0.5808219457
+UniRef50_S9S7L6: Soluble lytic murein transglycosylase	0.5807307792
+UniRef50_S9S7L6: Soluble lytic murein transglycosylase|unclassified	0.5807307792
+UniRef50_UPI00019133E3: bifunctional succinylornithine transaminase/acetylornithine transaminase, partial	0.5806577551
+UniRef50_UPI00019133E3: bifunctional succinylornithine transaminase/acetylornithine transaminase, partial|unclassified	0.5806577551
+UniRef50_UPI000262D669: FKBP-type peptidyl-prolyl cis-trans isomerase	0.5806515551
+UniRef50_UPI000262D669: FKBP-type peptidyl-prolyl cis-trans isomerase|unclassified	0.5806515551
+UniRef50_UPI00037F9208: hypothetical protein	0.5806098152
+UniRef50_UPI00037F9208: hypothetical protein|unclassified	0.5806098152
+UniRef50_E9DWS5	0.5806017615
+UniRef50_E9DWS5|unclassified	0.5806017615
+UniRef50_Q0RGC8	0.5805207922
+UniRef50_Q0RGC8|unclassified	0.5805207922
+UniRef50_UPI0003138E18: hypothetical protein	0.5804922417
+UniRef50_UPI0003138E18: hypothetical protein|unclassified	0.5804922417
+UniRef50_A8T3Y0	0.5804907440
+UniRef50_A8T3Y0|unclassified	0.5804907440
+UniRef50_B7LR00	0.5804905191
+UniRef50_B7LR00|unclassified	0.5804905191
+UniRef50_Q7UHX0: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.5804657354
+UniRef50_Q7UHX0: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.5804657354
+UniRef50_K4SH63	0.5804170450
+UniRef50_K4SH63|unclassified	0.5804170450
+UniRef50_UPI0002F6E2AD: hypothetical protein	0.5803835093
+UniRef50_UPI0002F6E2AD: hypothetical protein|unclassified	0.5803835093
+UniRef50_B9E9A5	0.5803830528
+UniRef50_B9E9A5|g__Streptococcus.s__Streptococcus_agalactiae	0.5803830528
+UniRef50_N7KSP9	0.5803353135
+UniRef50_N7KSP9|unclassified	0.5803353135
+UniRef50_V6VP90	0.5803343154
+UniRef50_V6VP90|unclassified	0.5803343154
+UniRef50_UPI000474D7ED: hypothetical protein, partial	0.5802774800
+UniRef50_UPI000474D7ED: hypothetical protein, partial|unclassified	0.5802774800
+UniRef50_A3CR36	0.5802640891
+UniRef50_A3CR36|unclassified	0.5802640891
+UniRef50_X1W2Q9: Marine sediment metagenome DNA, contig: S12H4_S24289 (Fragment)	0.5802121704
+UniRef50_X1W2Q9: Marine sediment metagenome DNA, contig: S12H4_S24289 (Fragment)|unclassified	0.5802121704
+UniRef50_UPI00035F5713: hypothetical protein	0.5801754281
+UniRef50_UPI00035F5713: hypothetical protein|unclassified	0.5801754281
+UniRef50_UPI00046EDBCC: hypothetical protein	0.5801335816
+UniRef50_UPI00046EDBCC: hypothetical protein|unclassified	0.5801335816
+UniRef50_Z7J019	0.5801186579
+UniRef50_Z7J019|unclassified	0.5801186579
+UniRef50_H0DWK2: Competence protein	0.5800464037
+UniRef50_H0DWK2: Competence protein|unclassified	0.5800464037
+UniRef50_H8GVV6: Glutathione-regulated potassium-efflux system protein KefB, putative	0.5800464037
+UniRef50_H8GVV6: Glutathione-regulated potassium-efflux system protein KefB, putative|g__Deinococcus.s__Deinococcus_radiodurans	0.5800464037
+UniRef50_W3XFA1	0.5800196615
+UniRef50_W3XFA1|unclassified	0.5800196615
+UniRef50_UPI000469AD27: 16S rRNA methyltransferase	0.5799768579
+UniRef50_UPI000469AD27: 16S rRNA methyltransferase|unclassified	0.5799768579
+UniRef50_H6VUX0: OciA	0.5799347237
+UniRef50_H6VUX0: OciA|unclassified	0.5799347237
+UniRef50_C6UY37	0.5799165964
+UniRef50_C6UY37|unclassified	0.5799165964
+UniRef50_UPI0003B5B207: oxidoreductase	0.5798876994
+UniRef50_UPI0003B5B207: oxidoreductase|unclassified	0.5798876994
+UniRef50_S9RII4	0.5798419246
+UniRef50_S9RII4|unclassified	0.5798419246
+UniRef50_UPI000472C56D: ABC transporter permease	0.5798396586
+UniRef50_UPI000472C56D: ABC transporter permease|unclassified	0.5798396586
+UniRef50_UPI00047B0398: hypothetical protein	0.5797982518
+UniRef50_UPI00047B0398: hypothetical protein|unclassified	0.5797982518
+UniRef50_UPI0004718B3C: C4-dicarboxylate ABC transporter permease	0.5797490456
+UniRef50_UPI0004718B3C: C4-dicarboxylate ABC transporter permease|unclassified	0.5797490456
+UniRef50_I1W5A1	0.5795634704
+UniRef50_I1W5A1|unclassified	0.5795634704
+UniRef50_Z5XJW4	0.5795493243
+UniRef50_Z5XJW4|unclassified	0.5795493243
+UniRef50_UPI00035D7BC7: hypothetical protein	0.5795471010
+UniRef50_UPI00035D7BC7: hypothetical protein|unclassified	0.5795471010
+UniRef50_UPI00046F07FD: chromosome partitioning protein ParB	0.5795438594
+UniRef50_UPI00046F07FD: chromosome partitioning protein ParB|unclassified	0.5795438594
+UniRef50_V8NC03	0.5794802403
+UniRef50_V8NC03|unclassified	0.5794802403
+UniRef50_UPI0001D36C64	0.5794627034
+UniRef50_UPI0001D36C64|unclassified	0.5794627034
+UniRef50_V9CNA8	0.5793742758
+UniRef50_V9CNA8|unclassified	0.5793742758
+UniRef50_A0A011NQ35	0.5792780746
+UniRef50_A0A011NQ35|unclassified	0.5792780746
+UniRef50_Q28TV1: SlyX protein putative	0.5792174217
+UniRef50_Q28TV1: SlyX protein putative|unclassified	0.5792174217
+UniRef50_UPI000473026F: hypothetical protein, partial	0.5791997849
+UniRef50_UPI000473026F: hypothetical protein, partial|unclassified	0.5791997849
+UniRef50_P14575: Cytochrome c oxidase subunit 3	0.5791956556
+UniRef50_P14575: Cytochrome c oxidase subunit 3|unclassified	0.5791956556
+UniRef50_UPI000225AF78: chemotaxis protein CheY	0.5791710151
+UniRef50_UPI000225AF78: chemotaxis protein CheY|unclassified	0.5791710151
+UniRef50_I6FEK4	0.5791687020
+UniRef50_I6FEK4|unclassified	0.5791687020
+UniRef50_G2T7E4	0.5791431938
+UniRef50_G2T7E4|unclassified	0.5791431938
+UniRef50_I2BCP0	0.5790706950
+UniRef50_I2BCP0|unclassified	0.5790706950
+UniRef50_B6IND1	0.5789566622
+UniRef50_B6IND1|unclassified	0.5789566622
+UniRef50_Q8VRA1: Intergenic-region protein	0.5789095099
+UniRef50_Q8VRA1: Intergenic-region protein|unclassified	0.5789095099
+UniRef50_A0A024PTG0	0.5788529261
+UniRef50_A0A024PTG0|unclassified	0.5788529261
+UniRef50_UPI000225AFF4: sulfurase	0.5788346336
+UniRef50_UPI000225AFF4: sulfurase|unclassified	0.5788346336
+UniRef50_A9M106: Soluble lytic murein transglycosylase, putative	0.5787037037
+UniRef50_A9M106: Soluble lytic murein transglycosylase, putative|g__Neisseria.s__Neisseria_meningitidis	0.5787037037
+UniRef50_UPI0003B77547: amino acid APC transporter	0.5786983382
+UniRef50_UPI0003B77547: amino acid APC transporter|unclassified	0.5786983382
+UniRef50_M7SAU0	0.5786296535
+UniRef50_M7SAU0|unclassified	0.5786296535
+UniRef50_D5ARP9: Cytochrome c oxidase, Cbb3-type, biogenesis protein CcoH	0.5785985704
+UniRef50_D5ARP9: Cytochrome c oxidase, Cbb3-type, biogenesis protein CcoH|unclassified	0.5785985704
+UniRef50_UPI00046E5BCC: hypothetical protein	0.5784784260
+UniRef50_UPI00046E5BCC: hypothetical protein|unclassified	0.5784784260
+UniRef50_UPI00036CABA5: hypothetical protein	0.5783487593
+UniRef50_UPI00036CABA5: hypothetical protein|unclassified	0.5783487593
+UniRef50_Q5HPM9	0.5783169914
+UniRef50_Q5HPM9|unclassified	0.5783169914
+UniRef50_P54473: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	0.5782998708
+UniRef50_P54473: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.5782998708
+UniRef50_A0A016QQ81: Ferripyochelin-binding protein	0.5782436137
+UniRef50_A0A016QQ81: Ferripyochelin-binding protein|unclassified	0.5782436137
+UniRef50_UPI00037A1F4A: hypothetical protein	0.5781486234
+UniRef50_UPI00037A1F4A: hypothetical protein|unclassified	0.5781486234
+UniRef50_UPI000329FDA5	0.5781373278
+UniRef50_UPI000329FDA5|unclassified	0.5781373278
+UniRef50_UPI0003B53ED3: GntR family transcriptional regulator	0.5781048819
+UniRef50_UPI0003B53ED3: GntR family transcriptional regulator|unclassified	0.5781048819
+UniRef50_UPI0003B56917: hypothetical protein	0.5780797106
+UniRef50_UPI0003B56917: hypothetical protein|unclassified	0.5780797106
+UniRef50_UPI0003EB558C: hypothetical protein	0.5780696709
+UniRef50_UPI0003EB558C: hypothetical protein|unclassified	0.5780696709
+UniRef50_UPI000472AE7A: hypothetical protein	0.5780545972
+UniRef50_UPI000472AE7A: hypothetical protein|unclassified	0.5780545972
+UniRef50_Q2W5V5: Chemotaxis response regulator protein-glutamate methylesterase 2	0.5780363729
+UniRef50_Q2W5V5: Chemotaxis response regulator protein-glutamate methylesterase 2|unclassified	0.5780363729
+UniRef50_F0B8G8	0.5780346821
+UniRef50_F0B8G8|unclassified	0.5780346821
+UniRef50_J2LU04: IS5 transposase	0.5779699245
+UniRef50_J2LU04: IS5 transposase|unclassified	0.5779699245
+UniRef50_G4L3R1: Phosphoglycerate mutase family protein	0.5779409399
+UniRef50_G4L3R1: Phosphoglycerate mutase family protein|unclassified	0.5779409399
+UniRef50_U4VD59	0.5778343800
+UniRef50_U4VD59|unclassified	0.5778343800
+UniRef50_H9K042	0.5778341908
+UniRef50_H9K042|unclassified	0.5778341908
+UniRef50_UPI00046D91A1: hypothetical protein	0.5778299942
+UniRef50_UPI00046D91A1: hypothetical protein|unclassified	0.5778299942
+UniRef50_UPI0003748B7D: hypothetical protein	0.5777611130
+UniRef50_UPI0003748B7D: hypothetical protein|unclassified	0.5777611130
+UniRef50_W1FQ46: Phage terminase, large subunit	0.5777580482
+UniRef50_W1FQ46: Phage terminase, large subunit|unclassified	0.5777580482
+UniRef50_T1AQL1	0.5776848623
+UniRef50_T1AQL1|unclassified	0.5776848623
+UniRef50_UPI00037AFD46: hypothetical protein	0.5776724387
+UniRef50_UPI00037AFD46: hypothetical protein|unclassified	0.5776724387
+UniRef50_F9KP42: Conserved domain protein (Fragment)	0.5776516016
+UniRef50_F9KP42: Conserved domain protein (Fragment)|unclassified	0.5776516016
+UniRef50_UPI00041A2261: hypothetical protein	0.5775705374
+UniRef50_UPI00041A2261: hypothetical protein|unclassified	0.5775705374
+UniRef50_B9AGP7	0.5775650546
+UniRef50_B9AGP7|unclassified	0.5775650546
+UniRef50_A8AUC4	0.5775581682
+UniRef50_A8AUC4|unclassified	0.5775581682
+UniRef50_UPI0001A44424: betaine aldehyde dehydrogenase, partial	0.5775440824
+UniRef50_UPI0001A44424: betaine aldehyde dehydrogenase, partial|unclassified	0.5775440824
+UniRef50_X3K6P1	0.5775426231
+UniRef50_X3K6P1|unclassified	0.5775426231
+UniRef50_UPI00046FCCA9: exodeoxyribonuclease III, partial	0.5775419672
+UniRef50_UPI00046FCCA9: exodeoxyribonuclease III, partial|unclassified	0.5775419672
+UniRef50_W8SZ72: Ribonucleoside diphosreductase	0.5775410198
+UniRef50_W8SZ72: Ribonucleoside diphosreductase|unclassified	0.5775410198
+UniRef50_UPI00029AC10E: ATP-dependent protease ATP-binding subunit HslU	0.5775096951
+UniRef50_UPI00029AC10E: ATP-dependent protease ATP-binding subunit HslU|unclassified	0.5775096951
+UniRef50_H3KG83: Entericidin EcnA/B family protein	0.5774976556
+UniRef50_H3KG83: Entericidin EcnA/B family protein|unclassified	0.5774976556
+UniRef50_UPI00041CE8A5: GntR family transcriptional regulator	0.5774175210
+UniRef50_UPI00041CE8A5: GntR family transcriptional regulator|unclassified	0.5774175210
+UniRef50_E5AKR2: Tail protein X	0.5774117281
+UniRef50_E5AKR2: Tail protein X|unclassified	0.5774117281
+UniRef50_C1DGI9	0.5773879654
+UniRef50_C1DGI9|unclassified	0.5773879654
+UniRef50_F9Y4V0	0.5773846135
+UniRef50_F9Y4V0|unclassified	0.5773846135
+UniRef50_B7H186: FhuE receptor	0.5773672055
+UniRef50_B7H186: FhuE receptor|g__Acinetobacter.s__Acinetobacter_baumannii	0.5773672055
+UniRef50_Q9RYV0: Oligoendopeptidase F, putative	0.5773672055
+UniRef50_Q9RYV0: Oligoendopeptidase F, putative|g__Deinococcus.s__Deinococcus_radiodurans	0.5773672055
+UniRef50_C2WWC2	0.5773242474
+UniRef50_C2WWC2|unclassified	0.5773242474
+UniRef50_UPI00036A21F0: hypothetical protein, partial	0.5772531900
+UniRef50_UPI00036A21F0: hypothetical protein, partial|unclassified	0.5772531900
+UniRef50_B8CWG8: Amino acid-binding ACT domain protein	0.5772005713
+UniRef50_B8CWG8: Amino acid-binding ACT domain protein|unclassified	0.5772005713
+UniRef50_UPI00040F2ED5: RNA polymerase sigma 70	0.5771680956
+UniRef50_UPI00040F2ED5: RNA polymerase sigma 70|unclassified	0.5771680956
+UniRef50_M0X3J8	0.5770712737
+UniRef50_M0X3J8|unclassified	0.5770712737
+UniRef50_M4DCT9	0.5770647720
+UniRef50_M4DCT9|unclassified	0.5770647720
+UniRef50_Q57N58	0.5770535824
+UniRef50_Q57N58|unclassified	0.5770535824
+UniRef50_U1BRL2	0.5769510089
+UniRef50_U1BRL2|unclassified	0.5769510089
+UniRef50_R1DKL3	0.5769286488
+UniRef50_R1DKL3|unclassified	0.5769286488
+UniRef50_R0FMF6: GroEL	0.5768634575
+UniRef50_R0FMF6: GroEL|unclassified	0.5768634575
+UniRef50_D5AQF8: Tripartite ATP-independent periplasmic transporter, DctQ-3 component	0.5767969213
+UniRef50_D5AQF8: Tripartite ATP-independent periplasmic transporter, DctQ-3 component|unclassified	0.5767969213
+UniRef50_UPI000428A00C: spermidine/putrescine ABC transporter ATP-binding protein	0.5767945905
+UniRef50_UPI000428A00C: spermidine/putrescine ABC transporter ATP-binding protein|unclassified	0.5767945905
+UniRef50_C6XLK4: NAD-dependent epimerase/dehydratase	0.5767528107
+UniRef50_C6XLK4: NAD-dependent epimerase/dehydratase|unclassified	0.5767528107
+UniRef50_UPI000346B9B9: hypothetical protein	0.5767282713
+UniRef50_UPI000346B9B9: hypothetical protein|unclassified	0.5767282713
+UniRef50_UPI0003B56CC9: hypothetical protein, partial	0.5767138117
+UniRef50_UPI0003B56CC9: hypothetical protein, partial|unclassified	0.5767138117
+UniRef50_X2IT45: DNA polymerase III subunit gamma/tau	0.5767012687
+UniRef50_X2IT45: DNA polymerase III subunit gamma/tau|g__Helicobacter.s__Helicobacter_pylori	0.5767012687
+UniRef50_V9GAD1: Cytochrome d ubiquinol oxidase subunit II	0.5766591482
+UniRef50_V9GAD1: Cytochrome d ubiquinol oxidase subunit II|unclassified	0.5766591482
+UniRef50_W1FHL5: Flagellar motor rotation protein MotA	0.5766321332
+UniRef50_W1FHL5: Flagellar motor rotation protein MotA|unclassified	0.5766321332
+UniRef50_M4WXD2: Type VI secretion protein VasA	0.5763688761
+UniRef50_M4WXD2: Type VI secretion protein VasA|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.5763688761
+UniRef50_UPI000474867C: helicase	0.5763688761
+UniRef50_UPI000474867C: helicase|unclassified	0.5763688761
+UniRef50_K0JC79: Mobilization protein C	0.5762728762
+UniRef50_K0JC79: Mobilization protein C|unclassified	0.5762728762
+UniRef50_Q2W3H5: Predicted transcriptional regulator	0.5762588300
+UniRef50_Q2W3H5: Predicted transcriptional regulator|unclassified	0.5762588300
+UniRef50_J9P9Y1	0.5762324229
+UniRef50_J9P9Y1|unclassified	0.5762324229
+UniRef50_UPI00016A4A26: beta-hydroxylase, aspartyl/asparaginyl family protein	0.5758622199
+UniRef50_UPI00016A4A26: beta-hydroxylase, aspartyl/asparaginyl family protein|unclassified	0.5758622199
+UniRef50_D4U0Y9: Toxin-antitoxin system, antitoxin component, HicB family	0.5758292344
+UniRef50_D4U0Y9: Toxin-antitoxin system, antitoxin component, HicB family|unclassified	0.5758292344
+UniRef50_A0RBX5	0.5758258553
+UniRef50_A0RBX5|unclassified	0.5758258553
+UniRef50_C6SJR7	0.5757793965
+UniRef50_C6SJR7|unclassified	0.5757793965
+UniRef50_B9DLD9: Peptidyl-tRNA hydrolase	0.5757628123
+UniRef50_B9DLD9: Peptidyl-tRNA hydrolase|unclassified	0.5757628123
+UniRef50_K0R628	0.5757353268
+UniRef50_K0R628|unclassified	0.5757353268
+UniRef50_J0JAX6	0.5757276162
+UniRef50_J0JAX6|unclassified	0.5757276162
+UniRef50_X1RXD5: Marine sediment metagenome DNA, contig: S12H4_C00687	0.5756837544
+UniRef50_X1RXD5: Marine sediment metagenome DNA, contig: S12H4_C00687|unclassified	0.5756837544
+UniRef50_UPI00021976D3: fructose-1 6-bisphosphatase	0.5756551591
+UniRef50_UPI00021976D3: fructose-1 6-bisphosphatase|unclassified	0.5756551591
+UniRef50_UPI00036E30BF: hypothetical protein	0.5756329833
+UniRef50_UPI00036E30BF: hypothetical protein|unclassified	0.5756329833
+UniRef50_T5XQZ5	0.5755655702
+UniRef50_T5XQZ5|unclassified	0.5755655702
+UniRef50_X6K4R8: Capsid protein	0.5755279456
+UniRef50_X6K4R8: Capsid protein|unclassified	0.5755279456
+UniRef50_W5A1S3	0.5754833500
+UniRef50_W5A1S3|unclassified	0.5754833500
+UniRef50_R2RX41	0.5754829605
+UniRef50_R2RX41|unclassified	0.5754829605
+UniRef50_Q7VUN5: Prolipoprotein diacylglyceryl transferase	0.5754750252
+UniRef50_Q7VUN5: Prolipoprotein diacylglyceryl transferase|unclassified	0.5754750252
+UniRef50_G8S3A0: Zonadhesin	0.5753739931
+UniRef50_G8S3A0: Zonadhesin|unclassified	0.5753739931
+UniRef50_M5G644	0.5753739931
+UniRef50_M5G644|unclassified	0.5753739931
+UniRef50_V3MVC7	0.5753502857
+UniRef50_V3MVC7|unclassified	0.5753502857
+UniRef50_UPI0004787A77: major facilitator transporter, partial	0.5753259387
+UniRef50_UPI0004787A77: major facilitator transporter, partial|unclassified	0.5753259387
+UniRef50_P53579: Methionine aminopeptidase A	0.5753115673
+UniRef50_P53579: Methionine aminopeptidase A|unclassified	0.5753115673
+UniRef50_UPI000467A3EC: cupin	0.5753045659
+UniRef50_UPI000467A3EC: cupin|unclassified	0.5753045659
+UniRef50_E8ZL97: Flagellar basal-body rod protein FlgC	0.5752849927
+UniRef50_E8ZL97: Flagellar basal-body rod protein FlgC|unclassified	0.5752849927
+UniRef50_A4WNZ8	0.5752662361
+UniRef50_A4WNZ8|unclassified	0.5752662361
+UniRef50_L7U9I0	0.5751500635
+UniRef50_L7U9I0|unclassified	0.5751500635
+UniRef50_UPI0002558211: Phage terminase-like protein large subunit, partial	0.5751356489
+UniRef50_UPI0002558211: Phage terminase-like protein large subunit, partial|unclassified	0.5751356489
+UniRef50_W6XR79	0.5750488645
+UniRef50_W6XR79|unclassified	0.5750488645
+UniRef50_UPI0003C46683: PREDICTED: protein phosphatase 1 regulatory subunit 15B isoform X2	0.5750431282
+UniRef50_UPI0003C46683: PREDICTED: protein phosphatase 1 regulatory subunit 15B isoform X2|unclassified	0.5750431282
+UniRef50_UPI0003F99510: hypothetical protein	0.5749936593
+UniRef50_UPI0003F99510: hypothetical protein|unclassified	0.5749936593
+UniRef50_S9R7G4: Multisubunit Na+/H+ antiporter, MnhB subunit	0.5749675706
+UniRef50_S9R7G4: Multisubunit Na+/H+ antiporter, MnhB subunit|unclassified	0.5749675706
+UniRef50_G3Z0X9	0.5749371145
+UniRef50_G3Z0X9|unclassified	0.5749371145
+UniRef50_A0A037ZJU8	0.5749266317
+UniRef50_A0A037ZJU8|unclassified	0.5749266317
+UniRef50_UPI00036AEC25: sodium:alanine symporter, partial	0.5748656527
+UniRef50_UPI00036AEC25: sodium:alanine symporter, partial|unclassified	0.5748656527
+UniRef50_E6N0Q9	0.5746833022
+UniRef50_E6N0Q9|unclassified	0.5746833022
+UniRef50_H8EWP4: PE-PGRS family protein	0.5745326181
+UniRef50_H8EWP4: PE-PGRS family protein|unclassified	0.5745326181
+UniRef50_W0H7N4: Cytochrome c oxidase, cbb3-type, CcoQ subunit	0.5744949744
+UniRef50_W0H7N4: Cytochrome c oxidase, cbb3-type, CcoQ subunit|unclassified	0.5744949744
+UniRef50_E6W002	0.5744121983
+UniRef50_E6W002|unclassified	0.5744121983
+UniRef50_X2MIQ8	0.5743763810
+UniRef50_X2MIQ8|unclassified	0.5743763810
+UniRef50_Q7R714	0.5743527684
+UniRef50_Q7R714|unclassified	0.5743527684
+UniRef50_UPI0003492D90: MULTISPECIES: hypothetical protein	0.5743063262
+UniRef50_UPI0003492D90: MULTISPECIES: hypothetical protein|unclassified	0.5743063262
+UniRef50_UPI00040A09B4: hypothetical protein	0.5742352712
+UniRef50_UPI00040A09B4: hypothetical protein|unclassified	0.5742352712
+UniRef50_UPI00046A0181: carbon-phosphorus lyase complex subunit	0.5741575442
+UniRef50_UPI00046A0181: carbon-phosphorus lyase complex subunit|unclassified	0.5741575442
+UniRef50_UPI0004637F8D: hypothetical protein	0.5741316150
+UniRef50_UPI0004637F8D: hypothetical protein|unclassified	0.5741316150
+UniRef50_X2NFL0: Membrane protein	0.5740789255
+UniRef50_X2NFL0: Membrane protein|unclassified	0.5740789255
+UniRef50_I4WSK0: 2-polyprenylphenol 6-hydroxylase	0.5740528129
+UniRef50_I4WSK0: 2-polyprenylphenol 6-hydroxylase|unclassified	0.5740528129
+UniRef50_Q9RU45	0.5740528129
+UniRef50_Q9RU45|g__Deinococcus.s__Deinococcus_radiodurans	0.5740528129
+UniRef50_Q5M0X3: Bifunctional protein PyrR	0.5740345023
+UniRef50_Q5M0X3: Bifunctional protein PyrR|unclassified	0.5740345023
+UniRef50_C0B1Y2	0.5739993203
+UniRef50_C0B1Y2|unclassified	0.5739993203
+UniRef50_UPI0003F7B61C: hypothetical protein	0.5739370093
+UniRef50_UPI0003F7B61C: hypothetical protein|unclassified	0.5739370093
+UniRef50_S5YCD9	0.5738175896
+UniRef50_S5YCD9|unclassified	0.5738175896
+UniRef50_UPI00021975CA: acetylglucosaminyldiphosphoundecaprenol acetyl-beta-D-mannosaminyltransferase	0.5738072151
+UniRef50_UPI00021975CA: acetylglucosaminyldiphosphoundecaprenol acetyl-beta-D-mannosaminyltransferase|unclassified	0.5738072151
+UniRef50_E8U8Y0: Oligoendopeptidase F	0.5737234653
+UniRef50_E8U8Y0: Oligoendopeptidase F|g__Deinococcus.s__Deinococcus_radiodurans	0.5737234653
+UniRef50_UPI0003734012: hypothetical protein	0.5735510065
+UniRef50_UPI0003734012: hypothetical protein|unclassified	0.5735510065
+UniRef50_Q3JMW6: Phenol hydroxylase, putative	0.5735442215
+UniRef50_Q3JMW6: Phenol hydroxylase, putative|unclassified	0.5735442215
+UniRef50_X7FBK8: Transcriptional regulator	0.5734195711
+UniRef50_X7FBK8: Transcriptional regulator|unclassified	0.5734195711
+UniRef50_O31760: Ribonuclease J2	0.5733824099
+UniRef50_O31760: Ribonuclease J2|unclassified	0.5733824099
+UniRef50_UPI0003B35348: amino acid ABC transporter permease	0.5733584993
+UniRef50_UPI0003B35348: amino acid ABC transporter permease|unclassified	0.5733584993
+UniRef50_Q16BC5: Phosphonates import ATP-binding protein PhnC 1	0.5732401920
+UniRef50_Q16BC5: Phosphonates import ATP-binding protein PhnC 1|unclassified	0.5732401920
+UniRef50_UPI0002FDAFC8: hypothetical protein	0.5732373469
+UniRef50_UPI0002FDAFC8: hypothetical protein|unclassified	0.5732373469
+UniRef50_UPI0003B33FFB: hypothetical protein, partial	0.5731894434
+UniRef50_UPI0003B33FFB: hypothetical protein, partial|unclassified	0.5731894434
+UniRef50_A0A058ZJ58	0.5731678803
+UniRef50_A0A058ZJ58|unclassified	0.5731678803
+UniRef50_C4J7N1	0.5731616693
+UniRef50_C4J7N1|unclassified	0.5731616693
+UniRef50_J3AKW2	0.5731253717
+UniRef50_J3AKW2|unclassified	0.5731253717
+UniRef50_Q9HUW5: Thiol:disulfide interchange protein DsbD 1	0.5730659026
+UniRef50_Q9HUW5: Thiol:disulfide interchange protein DsbD 1|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.5730659026
+UniRef50_X0VKV0: Marine sediment metagenome DNA, contig: S01H1_S13958 (Fragment)	0.5730410716
+UniRef50_X0VKV0: Marine sediment metagenome DNA, contig: S01H1_S13958 (Fragment)|unclassified	0.5730410716
+UniRef50_D0X445: Transcriptional regulator, AsnC family	0.5729882723
+UniRef50_D0X445: Transcriptional regulator, AsnC family|unclassified	0.5729882723
+UniRef50_V6JAI1	0.5729278127
+UniRef50_V6JAI1|unclassified	0.5729278127
+UniRef50_A5MC69	0.5729253654
+UniRef50_A5MC69|unclassified	0.5729253654
+UniRef50_UPI000362A66F: hypothetical protein	0.5728945828
+UniRef50_UPI000362A66F: hypothetical protein|unclassified	0.5728945828
+UniRef50_X1BDA5: Marine sediment metagenome DNA, contig: S01H4_S02668	0.5728721980
+UniRef50_X1BDA5: Marine sediment metagenome DNA, contig: S01H4_S02668|unclassified	0.5728721980
+UniRef50_Y8K088: Lantibiotic ABC transporter permease BsaG	0.5728263192
+UniRef50_Y8K088: Lantibiotic ABC transporter permease BsaG|unclassified	0.5728263192
+UniRef50_UPI000380A30B: hypothetical protein	0.5727896318
+UniRef50_UPI000380A30B: hypothetical protein|unclassified	0.5727896318
+UniRef50_D9SZ87: ATPase-like protein	0.5727160968
+UniRef50_D9SZ87: ATPase-like protein|unclassified	0.5727160968
+UniRef50_Q1AYE5: Pyridoxamine kinase	0.5726950090
+UniRef50_Q1AYE5: Pyridoxamine kinase|unclassified	0.5726950090
+UniRef50_G0DTF9: Ferrochelatase, HemH	0.5724098454
+UniRef50_G0DTF9: Ferrochelatase, HemH|g__Propionibacterium.s__Propionibacterium_acnes	0.5724098454
+UniRef50_B7IS26	0.5723029051
+UniRef50_B7IS26|unclassified	0.5723029051
+UniRef50_UPI00035F0F4C: hypothetical protein	0.5721484120
+UniRef50_UPI00035F0F4C: hypothetical protein|unclassified	0.5721484120
+UniRef50_V6HXV9: Winged helix-turn helix domain protein	0.5721269284
+UniRef50_V6HXV9: Winged helix-turn helix domain protein|unclassified	0.5721269284
+UniRef50_UPI00016C5318: uroporphyrin-III C-methyltransferase	0.5720702437
+UniRef50_UPI00016C5318: uroporphyrin-III C-methyltransferase|unclassified	0.5720702437
+UniRef50_G4BY47	0.5719772344
+UniRef50_G4BY47|unclassified	0.5719772344
+UniRef50_L5UXJ0	0.5719612703
+UniRef50_L5UXJ0|unclassified	0.5719612703
+UniRef50_D5EEN3	0.5719287131
+UniRef50_D5EEN3|unclassified	0.5719287131
+UniRef50_UPI0004784587: hypothetical protein	0.5719249984
+UniRef50_UPI0004784587: hypothetical protein|unclassified	0.5719249984
+UniRef50_UPI000371CFCC: hypothetical protein	0.5719217826
+UniRef50_UPI000371CFCC: hypothetical protein|unclassified	0.5719217826
+UniRef50_M5JL13: YaeC family lipoprotein (Fragment)	0.5718326495
+UniRef50_M5JL13: YaeC family lipoprotein (Fragment)|unclassified	0.5718326495
+UniRef50_Q9RUA4: Enoyl-CoA hydratase/3,2-trans-enoyl-CoA isomerase/3-hydroxyacyl-CoA dehydrogenase	0.5717552887
+UniRef50_Q9RUA4: Enoyl-CoA hydratase/3,2-trans-enoyl-CoA isomerase/3-hydroxyacyl-CoA dehydrogenase|g__Deinococcus.s__Deinococcus_radiodurans	0.5717552887
+UniRef50_UPI00037A450C: hypothetical protein	0.5717302486
+UniRef50_UPI00037A450C: hypothetical protein|unclassified	0.5717302486
+UniRef50_UPI00037D526A: hypothetical protein, partial	0.5716332409
+UniRef50_UPI00037D526A: hypothetical protein, partial|unclassified	0.5716332409
+UniRef50_UPI00047DB5F4: cytochrome o ubiquinol oxidase CyoD	0.5716113609
+UniRef50_UPI00047DB5F4: cytochrome o ubiquinol oxidase CyoD|unclassified	0.5716113609
+UniRef50_UPI00046EC4D8: hypothetical protein	0.5715875594
+UniRef50_UPI00046EC4D8: hypothetical protein|unclassified	0.5715875594
+UniRef50_UPI0002627F1B: glycerol-3-phosphate ABC transporter ATP-binding protein	0.5714525345
+UniRef50_UPI0002627F1B: glycerol-3-phosphate ABC transporter ATP-binding protein|unclassified	0.5714525345
+UniRef50_B4D0M3	0.5714316966
+UniRef50_B4D0M3|unclassified	0.5714316966
+UniRef50_UPI00035ECFEE: hypothetical protein	0.5714285714
+UniRef50_UPI00035ECFEE: hypothetical protein|unclassified	0.5714285714
+UniRef50_UPI00047C5500: thioredoxin	0.5713716790
+UniRef50_UPI00047C5500: thioredoxin|unclassified	0.5713716790
+UniRef50_V2LW21: Pyruvate-flavodoxin oxidoreductase	0.5713025030
+UniRef50_V2LW21: Pyruvate-flavodoxin oxidoreductase|unclassified	0.5713025030
+UniRef50_UPI000289BFF1: RNA polymerase sigma factor SigB	0.5712881507
+UniRef50_UPI000289BFF1: RNA polymerase sigma factor SigB|unclassified	0.5712881507
+UniRef50_B6VA55: Nitrite oxidoreductase (Fragment)	0.5712300000
+UniRef50_B6VA55: Nitrite oxidoreductase (Fragment)|unclassified	0.5712300000
+UniRef50_UPI00047571EA: hypothetical protein	0.5711958253
+UniRef50_UPI00047571EA: hypothetical protein|unclassified	0.5711958253
+UniRef50_UPI00041C05C6: isopropylmalate isomerase	0.5711615796
+UniRef50_UPI00041C05C6: isopropylmalate isomerase|unclassified	0.5711615796
+UniRef50_Q9JZ20	0.5711022273
+UniRef50_Q9JZ20|g__Neisseria.s__Neisseria_meningitidis	0.5711022273
+UniRef50_X4ZMG7: Enoyl-(Acyl carrier ) reductase family protein	0.5710626185
+UniRef50_X4ZMG7: Enoyl-(Acyl carrier ) reductase family protein|unclassified	0.5710626185
+UniRef50_E4D778	0.5710402115
+UniRef50_E4D778|unclassified	0.5710402115
+UniRef50_J9E0Q9	0.5709837375
+UniRef50_J9E0Q9|unclassified	0.5709837375
+UniRef50_Q0FLV7	0.5709178375
+UniRef50_Q0FLV7|unclassified	0.5709178375
+UniRef50_U8F9A8	0.5708014850
+UniRef50_U8F9A8|unclassified	0.5708014850
+UniRef50_K7R3S2	0.5707994943
+UniRef50_K7R3S2|unclassified	0.5707994943
+UniRef50_UPI0003EAFA3A: PREDICTED: formin-like protein 5-like	0.5707762557
+UniRef50_UPI0003EAFA3A: PREDICTED: formin-like protein 5-like|unclassified	0.5707762557
+UniRef50_F0MEP6: Acetyltransferase PglI	0.5707762557
+UniRef50_F0MEP6: Acetyltransferase PglI|g__Neisseria.s__Neisseria_meningitidis	0.5707762557
+UniRef50_UPI00046B96B5: PREDICTED: multidrug resistance protein 2-like, partial	0.5707582109
+UniRef50_UPI00046B96B5: PREDICTED: multidrug resistance protein 2-like, partial|unclassified	0.5707582109
+UniRef50_UPI00038F646F: Response regulator MprA	0.5707181375
+UniRef50_UPI00038F646F: Response regulator MprA|unclassified	0.5707181375
+UniRef50_UPI00046A2C95: histidine phosphotransferase	0.5706630312
+UniRef50_UPI00046A2C95: histidine phosphotransferase|unclassified	0.5706630312
+UniRef50_N6U9W7	0.5706602206
+UniRef50_N6U9W7|unclassified	0.5706602206
+UniRef50_A3PNI9	0.5706097155
+UniRef50_A3PNI9|unclassified	0.5706097155
+UniRef50_UPI000377A6B4: hypothetical protein, partial	0.5705953798
+UniRef50_UPI000377A6B4: hypothetical protein, partial|unclassified	0.5705953798
+UniRef50_Y7Z9Y2	0.5704173401
+UniRef50_Y7Z9Y2|unclassified	0.5704173401
+UniRef50_B9EAR5	0.5703590087
+UniRef50_B9EAR5|unclassified	0.5703590087
+UniRef50_UPI00036A31F9: hypothetical protein	0.5703273474
+UniRef50_UPI00036A31F9: hypothetical protein|unclassified	0.5703273474
+UniRef50_Q9LPW0: Glyceraldehyde-3-phosphate dehydrogenase GAPA2, chloroplastic	0.5702653477
+UniRef50_Q9LPW0: Glyceraldehyde-3-phosphate dehydrogenase GAPA2, chloroplastic|unclassified	0.5702653477
+UniRef50_UPI0003B511BE: 50S ribosomal protein L15	0.5701612371
+UniRef50_UPI0003B511BE: 50S ribosomal protein L15|unclassified	0.5701612371
+UniRef50_F3FHJ6: Putative monovalent cation/H+ antiporter subunit A (Fragment)	0.5700576881
+UniRef50_F3FHJ6: Putative monovalent cation/H+ antiporter subunit A (Fragment)|unclassified	0.5700576881
+UniRef50_UPI000366463F: hypothetical protein	0.5699855355
+UniRef50_UPI000366463F: hypothetical protein|unclassified	0.5699855355
+UniRef50_W4MLS6	0.5699187421
+UniRef50_W4MLS6|unclassified	0.5699187421
+UniRef50_UPI000255C5CF: major facilitator transporter, partial	0.5699098915
+UniRef50_UPI000255C5CF: major facilitator transporter, partial|unclassified	0.5699098915
+UniRef50_Q9RZQ2	0.5699031069
+UniRef50_Q9RZQ2|unclassified	0.5699031069
+UniRef50_Q54L71: Glyoxalase domain-containing protein 5 homolog	0.5698222339
+UniRef50_Q54L71: Glyoxalase domain-containing protein 5 homolog|unclassified	0.5698222339
+UniRef50_A0A037ZGX3	0.5698209927
+UniRef50_A0A037ZGX3|unclassified	0.5698209927
+UniRef50_G7LY47: Multi-sensor signal transduction histidine kinase	0.5698005698
+UniRef50_G7LY47: Multi-sensor signal transduction histidine kinase|g__Clostridium.s__Clostridium_beijerinckii	0.5698005698
+UniRef50_UPI0004183939: hypothetical protein	0.5697689360
+UniRef50_UPI0004183939: hypothetical protein|unclassified	0.5697689360
+UniRef50_E1ZJV0	0.5697489759
+UniRef50_E1ZJV0|unclassified	0.5697489759
+UniRef50_UPI000255C07F: transmembrane cytochrome o ubiquinol oxidase (subuniti oxidoreductase), partial	0.5697014444
+UniRef50_UPI000255C07F: transmembrane cytochrome o ubiquinol oxidase (subuniti oxidoreductase), partial|unclassified	0.5697014444
+UniRef50_UPI000477551D: acetyl-CoA hydrolase	0.5696666366
+UniRef50_UPI000477551D: acetyl-CoA hydrolase|unclassified	0.5696666366
+UniRef50_A0A011UTJ0	0.5695782342
+UniRef50_A0A011UTJ0|unclassified	0.5695782342
+UniRef50_Q1W5C9: Bacterial mobilization protein (MobC)	0.5695248775
+UniRef50_Q1W5C9: Bacterial mobilization protein (MobC)|unclassified	0.5695248775
+UniRef50_UPI000475B74E: thioredoxin	0.5694883663
+UniRef50_UPI000475B74E: thioredoxin|unclassified	0.5694883663
+UniRef50_B7I3M9: Peptidase M24	0.5694760820
+UniRef50_B7I3M9: Peptidase M24|g__Acinetobacter.s__Acinetobacter_baumannii	0.5694760820
+UniRef50_C6AZU8: ABC transporter related	0.5694760820
+UniRef50_C6AZU8: ABC transporter related|g__Deinococcus.s__Deinococcus_radiodurans	0.5694760820
+UniRef50_U6ZP95	0.5694760820
+UniRef50_U6ZP95|unclassified	0.5694760820
+UniRef50_UPI0003B55A0D: hypothetical protein	0.5694760820
+UniRef50_UPI0003B55A0D: hypothetical protein|unclassified	0.5694760820
+UniRef50_Q9ZKG9: Methionine--tRNA ligase	0.5693161257
+UniRef50_Q9ZKG9: Methionine--tRNA ligase|g__Helicobacter.s__Helicobacter_pylori	0.5479452055
+UniRef50_Q9ZKG9: Methionine--tRNA ligase|unclassified	0.0213709202
+UniRef50_Q6G329: Ribonuclease D	0.5693106986
+UniRef50_Q6G329: Ribonuclease D|unclassified	0.5693106986
+UniRef50_UPI0003778122: sulfoacetaldehyde acetyltransferase	0.5692911475
+UniRef50_UPI0003778122: sulfoacetaldehyde acetyltransferase|unclassified	0.5692911475
+UniRef50_UPI000370A1E5: hypothetical protein	0.5691821575
+UniRef50_UPI000370A1E5: hypothetical protein|unclassified	0.5691821575
+UniRef50_UPI0002ED5454: cytochrome C oxidase	0.5691009348
+UniRef50_UPI0002ED5454: cytochrome C oxidase|unclassified	0.5691009348
+UniRef50_I1EMU4	0.5690847311
+UniRef50_I1EMU4|unclassified	0.5690847311
+UniRef50_I1FRC9	0.5690732067
+UniRef50_I1FRC9|unclassified	0.5690732067
+UniRef50_UPI0003B3EADA: nuclease	0.5690231728
+UniRef50_UPI0003B3EADA: nuclease|unclassified	0.5690231728
+UniRef50_UPI00037EFF82: 50S ribosomal protein L15	0.5690202178
+UniRef50_UPI00037EFF82: 50S ribosomal protein L15|unclassified	0.5690202178
+UniRef50_I6CAK2: Inner membrane transport YhjV domain protein	0.5690150269
+UniRef50_I6CAK2: Inner membrane transport YhjV domain protein|unclassified	0.5690150269
+UniRef50_C0PP08	0.5687856670
+UniRef50_C0PP08|unclassified	0.5687856670
+UniRef50_UPI000372EB59: hypothetical protein	0.5687850622
+UniRef50_UPI000372EB59: hypothetical protein|unclassified	0.5687850622
+UniRef50_A8L7A1: Putative transcriptional regulator	0.5686676386
+UniRef50_A8L7A1: Putative transcriptional regulator|unclassified	0.5686676386
+UniRef50_A9IBR9	0.5685550741
+UniRef50_A9IBR9|unclassified	0.5685550741
+UniRef50_K0R064	0.5685048323
+UniRef50_K0R064|unclassified	0.5685048323
+UniRef50_UPI0003B4A430: CRISPR-associated protein Cas3	0.5684189448
+UniRef50_UPI0003B4A430: CRISPR-associated protein Cas3|unclassified	0.5684189448
+UniRef50_B7I7J4: Gp12	0.5684076646
+UniRef50_B7I7J4: Gp12|unclassified	0.5684076646
+UniRef50_I4CDC3: Gas vesicle protein G	0.5684065192
+UniRef50_I4CDC3: Gas vesicle protein G|unclassified	0.5684065192
+UniRef50_B1YU48: Uracil phosphoribosyltransferase	0.5683942219
+UniRef50_B1YU48: Uracil phosphoribosyltransferase|unclassified	0.5683942219
+UniRef50_Q1CYM0	0.5683914656
+UniRef50_Q1CYM0|unclassified	0.5683914656
+UniRef50_UPI0004738982: hypothetical protein	0.5682121455
+UniRef50_UPI0004738982: hypothetical protein|unclassified	0.5682121455
+UniRef50_W1ASU7: Biofilm PGA synthesis deacetylase PgaB (EC 3.-)	0.5681069878
+UniRef50_W1ASU7: Biofilm PGA synthesis deacetylase PgaB (EC 3.-)|unclassified	0.5681069878
+UniRef50_W4U4M2: Heme ABC transporter	0.5680554961
+UniRef50_W4U4M2: Heme ABC transporter|unclassified	0.5680554961
+UniRef50_UPI000383CA72	0.5679793483
+UniRef50_UPI000383CA72|unclassified	0.5679793483
+UniRef50_J9P0I4	0.5679568352
+UniRef50_J9P0I4|unclassified	0.5679568352
+UniRef50_K9SGR1: Transposase IS4 family protein	0.5677096468
+UniRef50_K9SGR1: Transposase IS4 family protein|unclassified	0.5677096468
+UniRef50_J9W0Y3	0.5677026960
+UniRef50_J9W0Y3|unclassified	0.5677026960
+UniRef50_E7RTI9	0.5676891309
+UniRef50_E7RTI9|unclassified	0.5676891309
+UniRef50_Q32IC1	0.5676455190
+UniRef50_Q32IC1|unclassified	0.5676455190
+UniRef50_Q88MW3	0.5676380773
+UniRef50_Q88MW3|unclassified	0.5676380773
+UniRef50_X6GZW0	0.5674855648
+UniRef50_X6GZW0|unclassified	0.5674855648
+UniRef50_UPI0002891D28: XRE family transcriptional regulator	0.5674760267
+UniRef50_UPI0002891D28: XRE family transcriptional regulator|unclassified	0.5674760267
+UniRef50_UPI00037A458B: hypothetical protein	0.5674196169
+UniRef50_UPI00037A458B: hypothetical protein|unclassified	0.5674196169
+UniRef50_M9RG43	0.5673627024
+UniRef50_M9RG43|unclassified	0.5673627024
+UniRef50_UPI00023790D2: cytochrome C	0.5672573460
+UniRef50_UPI00023790D2: cytochrome C|unclassified	0.5672573460
+UniRef50_N3D0G7	0.5671944436
+UniRef50_N3D0G7|unclassified	0.5671944436
+UniRef50_UPI0003671014: hypothetical protein	0.5668934240
+UniRef50_UPI0003671014: hypothetical protein|unclassified	0.5668934240
+UniRef50_J7VC12	0.5668519886
+UniRef50_J7VC12|unclassified	0.5668519886
+UniRef50_L2YYW7	0.5668069138
+UniRef50_L2YYW7|unclassified	0.5668069138
+UniRef50_L0LJV2	0.5667500914
+UniRef50_L0LJV2|unclassified	0.5667500914
+UniRef50_UPI0002F66460: hypothetical protein	0.5666939346
+UniRef50_UPI0002F66460: hypothetical protein|unclassified	0.5666939346
+UniRef50_UPI00036FD78D: hypothetical protein	0.5666359723
+UniRef50_UPI00036FD78D: hypothetical protein|unclassified	0.5666359723
+UniRef50_UPI00034CBCC9: nicotinamidase	0.5666270365
+UniRef50_UPI00034CBCC9: nicotinamidase|unclassified	0.5666270365
+UniRef50_UPI0003697B4B: ABC transporter, partial	0.5666030591
+UniRef50_UPI0003697B4B: ABC transporter, partial|unclassified	0.5666030591
+UniRef50_UPI0003773D73: 50S ribosomal protein L18	0.5665532579
+UniRef50_UPI0003773D73: 50S ribosomal protein L18|unclassified	0.5665532579
+UniRef50_A0A011QDW9: Hemolysin, chromosomal	0.5664509153
+UniRef50_A0A011QDW9: Hemolysin, chromosomal|unclassified	0.5664509153
+UniRef50_UPI00040C9200: alpha/beta hydrolase	0.5664409032
+UniRef50_UPI00040C9200: alpha/beta hydrolase|unclassified	0.5664409032
+UniRef50_F8JK27	0.5664323363
+UniRef50_F8JK27|unclassified	0.5664323363
+UniRef50_O83814: Methionine aminopeptidase	0.5663526850
+UniRef50_O83814: Methionine aminopeptidase|unclassified	0.5663526850
+UniRef50_UPI000409D13D: alpha/beta hydrolase	0.5663449784
+UniRef50_UPI000409D13D: alpha/beta hydrolase|unclassified	0.5663449784
+UniRef50_G6CJW2	0.5662971319
+UniRef50_G6CJW2|unclassified	0.5662971319
+UniRef50_UPI0003C17A16: PREDICTED: elongation factor Ts 1, mitochondrial-like	0.5662092807
+UniRef50_UPI0003C17A16: PREDICTED: elongation factor Ts 1, mitochondrial-like|unclassified	0.5662092807
+UniRef50_B2SZH8	0.5661872595
+UniRef50_B2SZH8|unclassified	0.5661872595
+UniRef50_W0WNC7: Small heat shock protein C4	0.5661206033
+UniRef50_W0WNC7: Small heat shock protein C4|unclassified	0.5661206033
+UniRef50_R0FLE9	0.5660878045
+UniRef50_R0FLE9|unclassified	0.5660878045
+UniRef50_UPI00029ADE1C: hypothetical protein, partial	0.5660032122
+UniRef50_UPI00029ADE1C: hypothetical protein, partial|unclassified	0.5660032122
+UniRef50_UPI000383C921: PREDICTED: zinc finger protein 629-like	0.5659309564
+UniRef50_UPI000383C921: PREDICTED: zinc finger protein 629-like|unclassified	0.5659309564
+UniRef50_UPI00036F5CCF: MULTISPECIES: hypothetical protein	0.5658798047
+UniRef50_UPI00036F5CCF: MULTISPECIES: hypothetical protein|unclassified	0.5658798047
+UniRef50_M4JKY8: LivJ protein	0.5658667919
+UniRef50_M4JKY8: LivJ protein|unclassified	0.5658667919
+UniRef50_UPI000364D79C: hypothetical protein	0.5657917039
+UniRef50_UPI000364D79C: hypothetical protein|unclassified	0.5657917039
+UniRef50_Q9RDT3: Sensor protein kinase WalK (Fragment)	0.5657681636
+UniRef50_Q9RDT3: Sensor protein kinase WalK (Fragment)|unclassified	0.5657681636
+UniRef50_UPI0004415BD9: hypothetical protein AURDEDRAFT_156248	0.5656916125
+UniRef50_UPI0004415BD9: hypothetical protein AURDEDRAFT_156248|unclassified	0.5656916125
+UniRef50_L7WQ40: Shikimate dehydrogenease (Fragment)	0.5656416600
+UniRef50_L7WQ40: Shikimate dehydrogenease (Fragment)|unclassified	0.5656416600
+UniRef50_UPI0003722924: hypothetical protein	0.5655082960
+UniRef50_UPI0003722924: hypothetical protein|unclassified	0.5655082960
+UniRef50_UPI0004674778: hypothetical protein	0.5653706870
+UniRef50_UPI0004674778: hypothetical protein|unclassified	0.5653706870
+UniRef50_W0QRQ1	0.5653553151
+UniRef50_W0QRQ1|unclassified	0.5653553151
+UniRef50_S9TMY5	0.5653176084
+UniRef50_S9TMY5|unclassified	0.5653176084
+UniRef50_UPI0003ADCCEC: PREDICTED: collagen alpha-1(I) chain-like	0.5652911249
+UniRef50_UPI0003ADCCEC: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.5652911249
+UniRef50_A5CLH3: DivIVA protein (Fragment)	0.5652286243
+UniRef50_A5CLH3: DivIVA protein (Fragment)|unclassified	0.5652286243
+UniRef50_D6KB22	0.5651470731
+UniRef50_D6KB22|unclassified	0.5651470731
+UniRef50_E8UAV0: Ferripyochelin-binding protein	0.5650871047
+UniRef50_E8UAV0: Ferripyochelin-binding protein|unclassified	0.5650871047
+UniRef50_V5NHS3	0.5649717514
+UniRef50_V5NHS3|g__Helicobacter.s__Helicobacter_pylori	0.5649717514
+UniRef50_UPI000328B002: PREDICTED: translation initiation factor IF-2-like	0.5649709317
+UniRef50_UPI000328B002: PREDICTED: translation initiation factor IF-2-like|unclassified	0.5649709317
+UniRef50_D2N8F3: Lipoprotein, putative	0.5649267867
+UniRef50_D2N8F3: Lipoprotein, putative|unclassified	0.5649267867
+UniRef50_Q16CH2: Ribosomal RNA large subunit methyltransferase H	0.5649233704
+UniRef50_Q16CH2: Ribosomal RNA large subunit methyltransferase H|unclassified	0.5649233704
+UniRef50_W0CEL3	0.5649225933
+UniRef50_W0CEL3|unclassified	0.5649225933
+UniRef50_UPI0003B75E06: preprotein translocase subunit TatA	0.5649115487
+UniRef50_UPI0003B75E06: preprotein translocase subunit TatA|unclassified	0.5649115487
+UniRef50_UPI000366060F: 30S ribosomal protein S8	0.5648693062
+UniRef50_UPI000366060F: 30S ribosomal protein S8|unclassified	0.5648693062
+UniRef50_UPI000463EF04: hypothetical protein	0.5648626613
+UniRef50_UPI000463EF04: hypothetical protein|unclassified	0.5648626613
+UniRef50_UPI00035E3558: hypothetical protein, partial	0.5648302578
+UniRef50_UPI00035E3558: hypothetical protein, partial|unclassified	0.5648302578
+UniRef50_U7FV20	0.5647438322
+UniRef50_U7FV20|unclassified	0.5647438322
+UniRef50_B1Y0J8: Non-canonical purine NTP pyrophosphatase	0.5647246550
+UniRef50_B1Y0J8: Non-canonical purine NTP pyrophosphatase|unclassified	0.5647246550
+UniRef50_A0A026UDQ3	0.5647132196
+UniRef50_A0A026UDQ3|unclassified	0.5647132196
+UniRef50_A7MK67	0.5646666460
+UniRef50_A7MK67|unclassified	0.5646666460
+UniRef50_G2Q9R2	0.5646527386
+UniRef50_G2Q9R2|unclassified	0.5646527386
+UniRef50_U3HD06	0.5646520930
+UniRef50_U3HD06|unclassified	0.5646520930
+UniRef50_UPI000381EEAC: hypothetical protein	0.5646167774
+UniRef50_UPI000381EEAC: hypothetical protein|unclassified	0.5646167774
+UniRef50_UPI000384168E: PREDICTED: serine/arginine repetitive matrix protein 2-like, partial	0.5645742712
+UniRef50_UPI000384168E: PREDICTED: serine/arginine repetitive matrix protein 2-like, partial|unclassified	0.5645742712
+UniRef50_UPI00045DB991: PREDICTED: outer dense fiber protein 3 isoform X1	0.5645716720
+UniRef50_UPI00045DB991: PREDICTED: outer dense fiber protein 3 isoform X1|unclassified	0.5645716720
+UniRef50_E2Q4F7: TT_ORF1 domain-containing protein	0.5645141093
+UniRef50_E2Q4F7: TT_ORF1 domain-containing protein|unclassified	0.5645141093
+UniRef50_U2Z0U6: Invasion associated family protein	0.5644644212
+UniRef50_U2Z0U6: Invasion associated family protein|unclassified	0.5644644212
+UniRef50_UPI000372D2DC: glycerophosphoryl diester phosphodiesterase, partial	0.5644245466
+UniRef50_UPI000372D2DC: glycerophosphoryl diester phosphodiesterase, partial|unclassified	0.5644245466
+UniRef50_UPI0001FFEB3E: acyltransferase 3, partial	0.5643879229
+UniRef50_UPI0001FFEB3E: acyltransferase 3, partial|unclassified	0.5643879229
+UniRef50_A8KR91: Eal/ggdef domain protein	0.5643340858
+UniRef50_A8KR91: Eal/ggdef domain protein|unclassified	0.5643340858
+UniRef50_A0A011Q725: RNA polymerase sigma factor	0.5643141958
+UniRef50_A0A011Q725: RNA polymerase sigma factor|unclassified	0.5643141958
+UniRef50_J0NDK0: Toxin-antitoxin system, antitoxin component, HicB family	0.5642818738
+UniRef50_J0NDK0: Toxin-antitoxin system, antitoxin component, HicB family|unclassified	0.5642818738
+UniRef50_Q1KVX6: Light-independent protochlorophyllide reductase subunit N	0.5642635499
+UniRef50_Q1KVX6: Light-independent protochlorophyllide reductase subunit N|unclassified	0.5642635499
+UniRef50_UPI0002FD7E1A: hypothetical protein	0.5642247447
+UniRef50_UPI0002FD7E1A: hypothetical protein|unclassified	0.5642247447
+UniRef50_Q1J237: Pyridoxamine kinase	0.5642081816
+UniRef50_Q1J237: Pyridoxamine kinase|unclassified	0.5642081816
+UniRef50_X7F948	0.5641865703
+UniRef50_X7F948|unclassified	0.5641865703
+UniRef50_UPI00036F7656: MULTISPECIES: hypothetical protein	0.5640968453
+UniRef50_UPI00036F7656: MULTISPECIES: hypothetical protein|unclassified	0.5640968453
+UniRef50_UPI00036404C4: hypothetical protein, partial	0.5640203980
+UniRef50_UPI00036404C4: hypothetical protein, partial|unclassified	0.5640203980
+UniRef50_UPI00037D5F1A: hypothetical protein	0.5639530944
+UniRef50_UPI00037D5F1A: hypothetical protein|unclassified	0.5639530944
+UniRef50_U3TU21	0.5639448250
+UniRef50_U3TU21|unclassified	0.5639448250
+UniRef50_UPI0002C59C73	0.5638650204
+UniRef50_UPI0002C59C73|unclassified	0.5638650204
+UniRef50_A4WCP1: Anaerobic glycerol-3-phosphate dehydrogenase subunit B	0.5636658690
+UniRef50_A4WCP1: Anaerobic glycerol-3-phosphate dehydrogenase subunit B|unclassified	0.5636658690
+UniRef50_UPI000464EBE5: hypothetical protein	0.5636573500
+UniRef50_UPI000464EBE5: hypothetical protein|unclassified	0.5636573500
+UniRef50_UPI000379EBC0: hypothetical protein	0.5635441023
+UniRef50_UPI000379EBC0: hypothetical protein|unclassified	0.5635441023
+UniRef50_H7FEG3: Polysaccharide biosynthesis protein CapD	0.5634861127
+UniRef50_H7FEG3: Polysaccharide biosynthesis protein CapD|unclassified	0.5634861127
+UniRef50_A4XKE2: Phosphopantetheine adenylyltransferase	0.5634848303
+UniRef50_A4XKE2: Phosphopantetheine adenylyltransferase|unclassified	0.5634848303
+UniRef50_P61429: Periplasmic [NiFe] hydrogenase small subunit 2	0.5633441305
+UniRef50_P61429: Periplasmic [NiFe] hydrogenase small subunit 2|unclassified	0.5633441305
+UniRef50_F3ZBF6: Putative LuxAB-like protein (Oxygenase)	0.5632741842
+UniRef50_F3ZBF6: Putative LuxAB-like protein (Oxygenase)|unclassified	0.5632741842
+UniRef50_A3NN76	0.5632710025
+UniRef50_A3NN76|unclassified	0.5632710025
+UniRef50_R5YMB6	0.5632631754
+UniRef50_R5YMB6|unclassified	0.5632631754
+UniRef50_Q4K9S7: NADH-quinone oxidoreductase subunit K	0.5631824531
+UniRef50_Q4K9S7: NADH-quinone oxidoreductase subunit K|unclassified	0.5631824531
+UniRef50_UPI0003FE3D1B: hypothetical protein	0.5630765738
+UniRef50_UPI0003FE3D1B: hypothetical protein|unclassified	0.5630765738
+UniRef50_UPI000473FA93: 30S ribosomal protein S3, partial	0.5630527376
+UniRef50_UPI000473FA93: 30S ribosomal protein S3, partial|unclassified	0.5630527376
+UniRef50_U4V914	0.5630301014
+UniRef50_U4V914|unclassified	0.5630301014
+UniRef50_S9RLS1	0.5629946912
+UniRef50_S9RLS1|unclassified	0.5629946912
+UniRef50_K9I504	0.5629918448
+UniRef50_K9I504|unclassified	0.5629918448
+UniRef50_UPI0003132EB0: hypothetical protein	0.5629429469
+UniRef50_UPI0003132EB0: hypothetical protein|unclassified	0.5629429469
+UniRef50_A4EG23	0.5627890656
+UniRef50_A4EG23|unclassified	0.5627890656
+UniRef50_UPI0004688BBC: flagellar motor switch protein	0.5627671088
+UniRef50_UPI0004688BBC: flagellar motor switch protein|unclassified	0.5627671088
+UniRef50_R1I1W9	0.5627462015
+UniRef50_R1I1W9|unclassified	0.5627462015
+UniRef50_A3JU62: Replication protein C	0.5627326806
+UniRef50_A3JU62: Replication protein C|unclassified	0.5627326806
+UniRef50_A1B5D1	0.5625871711
+UniRef50_A1B5D1|unclassified	0.5625871711
+UniRef50_UPI0003F0AAD0: PREDICTED: serine/arginine repetitive matrix protein 3-like	0.5625609444
+UniRef50_UPI0003F0AAD0: PREDICTED: serine/arginine repetitive matrix protein 3-like|unclassified	0.5625609444
+UniRef50_UPI0003B52F13: hypothetical protein	0.5625537725
+UniRef50_UPI0003B52F13: hypothetical protein|unclassified	0.5625537725
+UniRef50_E1IWV2	0.5625281361
+UniRef50_E1IWV2|unclassified	0.5625281361
+UniRef50_A0A022LE99	0.5624957124
+UniRef50_A0A022LE99|unclassified	0.5624957124
+UniRef50_UPI0003A1DBBC: sodium:proton antiporter	0.5624547067
+UniRef50_UPI0003A1DBBC: sodium:proton antiporter|unclassified	0.5624547067
+UniRef50_N6UBC3	0.5624521907
+UniRef50_N6UBC3|unclassified	0.5624521907
+UniRef50_F0Y8P3	0.5624232537
+UniRef50_F0Y8P3|unclassified	0.5624232537
+UniRef50_A0A013BGX8	0.5623808421
+UniRef50_A0A013BGX8|unclassified	0.5623808421
+UniRef50_H3UXJ6: PF08349 family protein	0.5623463871
+UniRef50_H3UXJ6: PF08349 family protein|unclassified	0.5623463871
+UniRef50_UPI0003EB4ECB: nicotinate phosphoribosyltransferase, partial	0.5623404633
+UniRef50_UPI0003EB4ECB: nicotinate phosphoribosyltransferase, partial|unclassified	0.5623404633
+UniRef50_X0XW11: Marine sediment metagenome DNA, contig: S01H1_S36886 (Fragment)	0.5623192638
+UniRef50_X0XW11: Marine sediment metagenome DNA, contig: S01H1_S36886 (Fragment)|unclassified	0.5623192638
+UniRef50_E6WF88	0.5623190343
+UniRef50_E6WF88|unclassified	0.5623190343
+UniRef50_UPI000376EF54: hypothetical protein	0.5622648262
+UniRef50_UPI000376EF54: hypothetical protein|unclassified	0.5622648262
+UniRef50_V4IC74: Short chain dehydrogenase/reductase family oxidoreductase	0.5622589233
+UniRef50_V4IC74: Short chain dehydrogenase/reductase family oxidoreductase|unclassified	0.5622589233
+UniRef50_UPI000378D2FE: hypothetical protein	0.5621099278
+UniRef50_UPI000378D2FE: hypothetical protein|unclassified	0.5621099278
+UniRef50_UPI00029A8D4F: methylmalonyl-CoA mutase	0.5620904474
+UniRef50_UPI00029A8D4F: methylmalonyl-CoA mutase|unclassified	0.5620904474
+UniRef50_UPI000225B1A9: pantetheine-phosphate adenylyltransferase	0.5618936403
+UniRef50_UPI000225B1A9: pantetheine-phosphate adenylyltransferase|unclassified	0.5618936403
+UniRef50_E7I8X0	0.5618627269
+UniRef50_E7I8X0|unclassified	0.5618627269
+UniRef50_A0A034WRX1	0.5618545282
+UniRef50_A0A034WRX1|unclassified	0.5618545282
+UniRef50_M0SH18	0.5618039998
+UniRef50_M0SH18|unclassified	0.5618039998
+UniRef50_UPI00036D97C1: hypothetical protein	0.5617385819
+UniRef50_UPI00036D97C1: hypothetical protein|unclassified	0.5617385819
+UniRef50_L0GM74	0.5617214058
+UniRef50_L0GM74|unclassified	0.5617214058
+UniRef50_K7E9E4	0.5617210832
+UniRef50_K7E9E4|unclassified	0.5617210832
+UniRef50_T1A6C1: Formiminoglutamate deiminase (Fragment)	0.5616094958
+UniRef50_T1A6C1: Formiminoglutamate deiminase (Fragment)|unclassified	0.5616094958
+UniRef50_Q4UMZ3: Putative export ATP-binding/permease protein RF_0214	0.5615653489
+UniRef50_Q4UMZ3: Putative export ATP-binding/permease protein RF_0214|unclassified	0.5615653489
+UniRef50_A1JIE0: sn-glycerol-3-phosphate import ATP-binding protein UgpC	0.5615012992
+UniRef50_A1JIE0: sn-glycerol-3-phosphate import ATP-binding protein UgpC|unclassified	0.5615012992
+UniRef50_UPI0003693C86: hypothetical protein	0.5613241179
+UniRef50_UPI0003693C86: hypothetical protein|unclassified	0.5613241179
+UniRef50_W1H568: Nickel transport system permease protein NikB (TC 3.A.1.5.3)	0.5613109816
+UniRef50_W1H568: Nickel transport system permease protein NikB (TC 3.A.1.5.3)|unclassified	0.5613109816
+UniRef50_UPI0003793D13: hypothetical protein	0.5612823740
+UniRef50_UPI0003793D13: hypothetical protein|unclassified	0.5612823740
+UniRef50_A0A026WC14: Protein bric-a-brac	0.5612759708
+UniRef50_A0A026WC14: Protein bric-a-brac|unclassified	0.5612759708
+UniRef50_C5ZZ07: ABC transporter, periplasmic binding protein	0.5611672278
+UniRef50_C5ZZ07: ABC transporter, periplasmic binding protein|g__Helicobacter.s__Helicobacter_pylori	0.5611672278
+UniRef50_M6TA04	0.5610073534
+UniRef50_M6TA04|unclassified	0.5610073534
+UniRef50_X2MJL6	0.5609907058
+UniRef50_X2MJL6|unclassified	0.5609907058
+UniRef50_K0SH63	0.5609820602
+UniRef50_K0SH63|unclassified	0.5609820602
+UniRef50_I6ZFX5	0.5609330749
+UniRef50_I6ZFX5|unclassified	0.5609330749
+UniRef50_G8B089	0.5608475908
+UniRef50_G8B089|unclassified	0.5608475908
+UniRef50_UPI00036E021B: hypothetical protein	0.5607970898
+UniRef50_UPI00036E021B: hypothetical protein|unclassified	0.5607970898
+UniRef50_J6JBM8	0.5607912789
+UniRef50_J6JBM8|unclassified	0.5607912789
+UniRef50_UPI0002F2BD70: hypothetical protein	0.5607804858
+UniRef50_UPI0002F2BD70: hypothetical protein|unclassified	0.5607804858
+UniRef50_UPI000429C36C: heme ABC transporter permease	0.5607329281
+UniRef50_UPI000429C36C: heme ABC transporter permease|unclassified	0.5607329281
+UniRef50_E3F179	0.5606558867
+UniRef50_E3F179|unclassified	0.5606558867
+UniRef50_A0A010IRI1: Copper-resistance , CopA family protein	0.5605381166
+UniRef50_A0A010IRI1: Copper-resistance , CopA family protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.5605381166
+UniRef50_B2FLW2: Chaperone protein HtpG	0.5605381166
+UniRef50_B2FLW2: Chaperone protein HtpG|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.5605381166
+UniRef50_A0A011Q619	0.5604874856
+UniRef50_A0A011Q619|unclassified	0.5604874856
+UniRef50_B9GC78: Os12g0188566 protein	0.5604724801
+UniRef50_B9GC78: Os12g0188566 protein|unclassified	0.5604724801
+UniRef50_UPI000475758B: transcriptional regulator	0.5603021939
+UniRef50_UPI000475758B: transcriptional regulator|unclassified	0.5603021939
+UniRef50_UPI000315C083: hypothetical protein	0.5602521380
+UniRef50_UPI000315C083: hypothetical protein|unclassified	0.5602521380
+UniRef50_C2TNC8	0.5601889141
+UniRef50_C2TNC8|unclassified	0.5601889141
+UniRef50_Q6CBZ1: YALI0C14234p	0.5601680207
+UniRef50_Q6CBZ1: YALI0C14234p|unclassified	0.5601680207
+UniRef50_D2NXJ8	0.5601659747
+UniRef50_D2NXJ8|unclassified	0.5601659747
+UniRef50_UPI00041B36C5: hypothetical protein	0.5600850449
+UniRef50_UPI00041B36C5: hypothetical protein|unclassified	0.5600850449
+UniRef50_D6KGA3	0.5600732538
+UniRef50_D6KGA3|unclassified	0.5600732538
+UniRef50_B5V3N8: Protein-L-IsoD	0.5600545289
+UniRef50_B5V3N8: Protein-L-IsoD|unclassified	0.5600545289
+UniRef50_A0A024NMX5: Protein Bm11722 (Fragment)	0.5599550242
+UniRef50_A0A024NMX5: Protein Bm11722 (Fragment)|unclassified	0.5599550242
+UniRef50_G9ADV1	0.5599291930
+UniRef50_G9ADV1|unclassified	0.5599291930
+UniRef50_UPI00046EE96D: hypothetical protein	0.5598109143
+UniRef50_UPI00046EE96D: hypothetical protein|unclassified	0.5598109143
+UniRef50_UPI000360CE5B: hypothetical protein	0.5597520610
+UniRef50_UPI000360CE5B: hypothetical protein|unclassified	0.5597520610
+UniRef50_B1YMX6: Transposase, IS4	0.5597287530
+UniRef50_B1YMX6: Transposase, IS4|unclassified	0.5597287530
+UniRef50_UPI00046F986D: succinate dehydrogenase	0.5596741449
+UniRef50_UPI00046F986D: succinate dehydrogenase|unclassified	0.5596741449
+UniRef50_UPI00046E091D: PilS cassette	0.5596646211
+UniRef50_UPI00046E091D: PilS cassette|unclassified	0.5596646211
+UniRef50_F3Z8Q0	0.5595970901
+UniRef50_F3Z8Q0|unclassified	0.5595970901
+UniRef50_UPI0003B3667B: hypothetical protein	0.5595970901
+UniRef50_UPI0003B3667B: hypothetical protein|unclassified	0.5595970901
+UniRef50_I6T4B3	0.5595851638
+UniRef50_I6T4B3|unclassified	0.5595851638
+UniRef50_UPI00037BAB2A: hypothetical protein	0.5595605251
+UniRef50_UPI00037BAB2A: hypothetical protein|unclassified	0.5595605251
+UniRef50_UPI00016C363F: CheA signal transduction histidine kinase, partial	0.5595309303
+UniRef50_UPI00016C363F: CheA signal transduction histidine kinase, partial|unclassified	0.5595309303
+UniRef50_O67881: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.5595270751
+UniRef50_O67881: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.5595270751
+UniRef50_A4WSR4	0.5595141288
+UniRef50_A4WSR4|unclassified	0.5595141288
+UniRef50_G8LLE6	0.5593887698
+UniRef50_G8LLE6|unclassified	0.5593887698
+UniRef50_A8LMR7	0.5593641083
+UniRef50_A8LMR7|unclassified	0.5593641083
+UniRef50_A4EV04: Transposase orfB	0.5593497948
+UniRef50_A4EV04: Transposase orfB|unclassified	0.5593497948
+UniRef50_A0A026S5H6	0.5592841163
+UniRef50_A0A026S5H6|g__Escherichia.s__Escherichia_coli	0.5592841163
+UniRef50_J9KVG3	0.5592841163
+UniRef50_J9KVG3|unclassified	0.5592841163
+UniRef50_UPI0003B3F0AB: hypothetical protein	0.5592613073
+UniRef50_UPI0003B3F0AB: hypothetical protein|unclassified	0.5592613073
+UniRef50_UPI000441F369: PREDICTED: stress-70 protein, mitochondrial-like, partial	0.5592145503
+UniRef50_UPI000441F369: PREDICTED: stress-70 protein, mitochondrial-like, partial|unclassified	0.5592145503
+UniRef50_UPI000377D1D3: hypothetical protein	0.5591720650
+UniRef50_UPI000377D1D3: hypothetical protein|unclassified	0.5591720650
+UniRef50_UPI0003B75135: MerR family transcriptional regulator	0.5590576422
+UniRef50_UPI0003B75135: MerR family transcriptional regulator|unclassified	0.5590576422
+UniRef50_UPI00031932F1: DNA-binding protein	0.5590331677
+UniRef50_UPI00031932F1: DNA-binding protein|unclassified	0.5590331677
+UniRef50_W4LD84	0.5590250893
+UniRef50_W4LD84|unclassified	0.5590250893
+UniRef50_Q8FJ49	0.5590051822
+UniRef50_Q8FJ49|unclassified	0.5590051822
+UniRef50_K0RDC2	0.5589953691
+UniRef50_K0RDC2|unclassified	0.5589953691
+UniRef50_P10802: Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex	0.5589714925
+UniRef50_P10802: Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex|g__Escherichia.s__Escherichia_coli	0.5589714925
+UniRef50_Q5F4X8: Lipid A export ATP-binding/permease protein MsbA	0.5589714925
+UniRef50_Q5F4X8: Lipid A export ATP-binding/permease protein MsbA|g__Neisseria.s__Neisseria_meningitidis	0.5589714925
+UniRef50_K0VGA1	0.5589657366
+UniRef50_K0VGA1|unclassified	0.5589657366
+UniRef50_A1WWJ6: ISXoo15 transposase	0.5589432621
+UniRef50_A1WWJ6: ISXoo15 transposase|unclassified	0.5589432621
+UniRef50_UPI00047130C0: hypothetical protein	0.5587880386
+UniRef50_UPI00047130C0: hypothetical protein|unclassified	0.5587880386
+UniRef50_H9UU48: Ribonucleoside-diphosphate reductase 1, beta subunit, B2	0.5587642192
+UniRef50_H9UU48: Ribonucleoside-diphosphate reductase 1, beta subunit, B2|unclassified	0.5587642192
+UniRef50_R6ZUY9	0.5587475073
+UniRef50_R6ZUY9|unclassified	0.5587475073
+UniRef50_F4Y134	0.5587344448
+UniRef50_F4Y134|unclassified	0.5587344448
+UniRef50_H3XMI1: Periplasmic-binding domain protein	0.5586703980
+UniRef50_H3XMI1: Periplasmic-binding domain protein|unclassified	0.5586703980
+UniRef50_UPI000468EA31: chemotaxis protein	0.5586374827
+UniRef50_UPI000468EA31: chemotaxis protein|unclassified	0.5586374827
+UniRef50_UPI000470FAA5: hypothetical protein	0.5586327766
+UniRef50_UPI000470FAA5: hypothetical protein|unclassified	0.5586327766
+UniRef50_UPI000237AD15: putative integral membrane transport protein	0.5584896515
+UniRef50_UPI000237AD15: putative integral membrane transport protein|unclassified	0.5584896515
+UniRef50_UPI0003B3A49E: sterol-binding protein	0.5584597328
+UniRef50_UPI0003B3A49E: sterol-binding protein|unclassified	0.5584597328
+UniRef50_Q1N049: Lipoprotein, putative	0.5584142627
+UniRef50_Q1N049: Lipoprotein, putative|unclassified	0.5584142627
+UniRef50_Q0TJ84: Hydrogenase-1 operon protein HyaF	0.5583939326
+UniRef50_Q0TJ84: Hydrogenase-1 operon protein HyaF|unclassified	0.5583939326
+UniRef50_Q3JGA3: Isoquinoline 1-oxidoreductase, beta subunit	0.5583472920
+UniRef50_Q3JGA3: Isoquinoline 1-oxidoreductase, beta subunit|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.5583472920
+UniRef50_E8RPP8	0.5582913032
+UniRef50_E8RPP8|unclassified	0.5582913032
+UniRef50_R5LNM5: AAA domain / AAA domain multi-domain protein	0.5582552786
+UniRef50_R5LNM5: AAA domain / AAA domain multi-domain protein|unclassified	0.5582552786
+UniRef50_Q1R9Q5	0.5582042698
+UniRef50_Q1R9Q5|unclassified	0.5582042698
+UniRef50_UPI000369A760: hypothetical protein, partial	0.5581540849
+UniRef50_UPI000369A760: hypothetical protein, partial|unclassified	0.5581540849
+UniRef50_W1VL57	0.5581170210
+UniRef50_W1VL57|unclassified	0.5581170210
+UniRef50_UPI0002C376D2: PREDICTED: 50S ribosomal protein L36-like isoform 4	0.5581032053
+UniRef50_UPI0002C376D2: PREDICTED: 50S ribosomal protein L36-like isoform 4|unclassified	0.5581032053
+UniRef50_UPI0004697483: DNA mismatch repair protein MutT	0.5580867354
+UniRef50_UPI0004697483: DNA mismatch repair protein MutT|unclassified	0.5580867354
+UniRef50_I2E190: IS5 family transposase	0.5580533377
+UniRef50_I2E190: IS5 family transposase|unclassified	0.5580533377
+UniRef50_UPI0003AE6E08: PREDICTED: collagen alpha-1(I) chain-like	0.5580050555
+UniRef50_UPI0003AE6E08: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.5580050555
+UniRef50_UPI00037B1A2A: hypothetical protein	0.5579237686
+UniRef50_UPI00037B1A2A: hypothetical protein|unclassified	0.5579237686
+UniRef50_X1RRN3: Marine sediment metagenome DNA, contig: S12H4_C05059 (Fragment)	0.5579180227
+UniRef50_X1RRN3: Marine sediment metagenome DNA, contig: S12H4_C05059 (Fragment)|unclassified	0.5579180227
+UniRef50_K8AI54: Phage shock protein C	0.5579064554
+UniRef50_K8AI54: Phage shock protein C|unclassified	0.5579064554
+UniRef50_B9KV16	0.5578210213
+UniRef50_B9KV16|unclassified	0.5578210213
+UniRef50_UPI0002ECAD79: hypothetical protein	0.5578065231
+UniRef50_UPI0002ECAD79: hypothetical protein|unclassified	0.5578065231
+UniRef50_UPI0000F2EAC9: PREDICTED: homeobox protein vent1-like	0.5577770849
+UniRef50_UPI0000F2EAC9: PREDICTED: homeobox protein vent1-like|unclassified	0.5577770849
+UniRef50_I0EP78: Flagellar hook protein FlgE	0.5577244841
+UniRef50_I0EP78: Flagellar hook protein FlgE|g__Helicobacter.s__Helicobacter_pylori	0.5577244841
+UniRef50_UPI00028983C1: iron ABC transporter ATP-binding protein	0.5577101597
+UniRef50_UPI00028983C1: iron ABC transporter ATP-binding protein|unclassified	0.5577101597
+UniRef50_UPI00046784A6: dihydroxy-acid dehydratase	0.5576480455
+UniRef50_UPI00046784A6: dihydroxy-acid dehydratase|unclassified	0.5576480455
+UniRef50_I1FF04	0.5575987140
+UniRef50_I1FF04|unclassified	0.5575987140
+UniRef50_K2HAS0: Flagellar basal body-associated protein FliL	0.5574869766
+UniRef50_K2HAS0: Flagellar basal body-associated protein FliL|unclassified	0.5574869766
+UniRef50_O67528: Nucleoside diphosphate kinase	0.5574734858
+UniRef50_O67528: Nucleoside diphosphate kinase|unclassified	0.5574734858
+UniRef50_V8N2X3: Gar1 (Fragment)	0.5574472932
+UniRef50_V8N2X3: Gar1 (Fragment)|unclassified	0.5574472932
+UniRef50_Q985W1: Ribonuclease H	0.5574471879
+UniRef50_Q985W1: Ribonuclease H|unclassified	0.5574471879
+UniRef50_R1FS56	0.5574341965
+UniRef50_R1FS56|unclassified	0.5574341965
+UniRef50_D7DQ95: Class II aldolase/adducin family protein	0.5574269721
+UniRef50_D7DQ95: Class II aldolase/adducin family protein|unclassified	0.5574269721
+UniRef50_UPI0003FDBDB7: hypothetical protein	0.5574233366
+UniRef50_UPI0003FDBDB7: hypothetical protein|unclassified	0.5574233366
+UniRef50_Q6AJH7: Phosphopantetheine adenylyltransferase	0.5574112463
+UniRef50_Q6AJH7: Phosphopantetheine adenylyltransferase|unclassified	0.5574112463
+UniRef50_Q5VRS0	0.5573973930
+UniRef50_Q5VRS0|unclassified	0.5573973930
+UniRef50_UPI00036C2D3C: ArsR family transcriptional regulator	0.5573502598
+UniRef50_UPI00036C2D3C: ArsR family transcriptional regulator|unclassified	0.5573502598
+UniRef50_E6JNP6	0.5573322405
+UniRef50_E6JNP6|unclassified	0.5573322405
+UniRef50_L1JUV8	0.5573019065
+UniRef50_L1JUV8|unclassified	0.5573019065
+UniRef50_D0D9G2: Transposase IS4 family protein	0.5572195897
+UniRef50_D0D9G2: Transposase IS4 family protein|unclassified	0.5572195897
+UniRef50_UPI00045E2399: PREDICTED: serine/arginine repetitive matrix protein 1-like	0.5570544276
+UniRef50_UPI00045E2399: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	0.5570544276
+UniRef50_Q3JY00: CarR	0.5570277494
+UniRef50_Q3JY00: CarR|unclassified	0.5570277494
+UniRef50_UPI000376CC63: hypothetical protein	0.5570046386
+UniRef50_UPI000376CC63: hypothetical protein|unclassified	0.5570046386
+UniRef50_B1W1P9: Probable 5-dehydro-4-deoxyglucarate dehydratase	0.5569583998
+UniRef50_B1W1P9: Probable 5-dehydro-4-deoxyglucarate dehydratase|unclassified	0.5569583998
+UniRef50_C8S395: DHC, diheme cytochrome c	0.5569259455
+UniRef50_C8S395: DHC, diheme cytochrome c|unclassified	0.5569259455
+UniRef50_S7PBS3: Testis-specific protein 10 protein	0.5569168263
+UniRef50_S7PBS3: Testis-specific protein 10 protein|unclassified	0.5569168263
+UniRef50_UPI00046FEA8D: GntR family transcriptional regulator	0.5568953004
+UniRef50_UPI00046FEA8D: GntR family transcriptional regulator|unclassified	0.5568953004
+UniRef50_UPI000379E13B: hypothetical protein	0.5568513631
+UniRef50_UPI000379E13B: hypothetical protein|unclassified	0.5568513631
+UniRef50_Q117Z9: Urease subunit gamma	0.5568330772
+UniRef50_Q117Z9: Urease subunit gamma|unclassified	0.5568330772
+UniRef50_U4UZK9	0.5567654071
+UniRef50_U4UZK9|unclassified	0.5567654071
+UniRef50_UPI000467E096: hypothetical protein	0.5566284792
+UniRef50_UPI000467E096: hypothetical protein|unclassified	0.5566284792
+UniRef50_D9VJ54: Predicted protein	0.5566070228
+UniRef50_D9VJ54: Predicted protein|unclassified	0.5566070228
+UniRef50_H5J341: Twice split molybdate metabolism regulator domain protein	0.5566032256
+UniRef50_H5J341: Twice split molybdate metabolism regulator domain protein|g__Escherichia.s__Escherichia_coli	0.5566032256
+UniRef50_UPI00036AA9E6: tRNA modifying enzyme	0.5564810337
+UniRef50_UPI00036AA9E6: tRNA modifying enzyme|unclassified	0.5564810337
+UniRef50_H1ER37	0.5564723938
+UniRef50_H1ER37|unclassified	0.5564723938
+UniRef50_K0NYE5: Putative exported protein	0.5564514897
+UniRef50_K0NYE5: Putative exported protein|unclassified	0.5564514897
+UniRef50_A8LK44: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	0.5564190117
+UniRef50_A8LK44: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|unclassified	0.5564190117
+UniRef50_A4EJG4	0.5562766839
+UniRef50_A4EJG4|unclassified	0.5562766839
+UniRef50_UPI0003FEA25E: hypothetical protein	0.5562531295
+UniRef50_UPI0003FEA25E: hypothetical protein|unclassified	0.5562531295
+UniRef50_A6W261: Heat shock protein Hsp20	0.5562427155
+UniRef50_A6W261: Heat shock protein Hsp20|unclassified	0.5562427155
+UniRef50_Q1ZRI7	0.5562014487
+UniRef50_Q1ZRI7|unclassified	0.5562014487
+UniRef50_W1BAA1: Membrane protein YcjF	0.5560704552
+UniRef50_W1BAA1: Membrane protein YcjF|unclassified	0.5560704552
+UniRef50_UPI00047089E2: hypothetical protein	0.5559624828
+UniRef50_UPI00047089E2: hypothetical protein|unclassified	0.5559624828
+UniRef50_UPI000374A5C9: hypothetical protein	0.5559454403
+UniRef50_UPI000374A5C9: hypothetical protein|unclassified	0.5559454403
+UniRef50_S4YP14: Succinylglutamate desuccinylase	0.5559194364
+UniRef50_S4YP14: Succinylglutamate desuccinylase|unclassified	0.5559194364
+UniRef50_R6U6Q9	0.5559103761
+UniRef50_R6U6Q9|unclassified	0.5559103761
+UniRef50_UPI0004757A91: hypothetical protein, partial	0.5558587638
+UniRef50_UPI0004757A91: hypothetical protein, partial|unclassified	0.5558587638
+UniRef50_B5QYR7: Phage protein	0.5558304085
+UniRef50_B5QYR7: Phage protein|unclassified	0.5558304085
+UniRef50_L4V2B5	0.5558206347
+UniRef50_L4V2B5|unclassified	0.5558206347
+UniRef50_Q35242: Cytochrome c oxidase subunit 3 (Fragment)	0.5557770861
+UniRef50_Q35242: Cytochrome c oxidase subunit 3 (Fragment)|unclassified	0.5557770861
+UniRef50_X1G2P6: Marine sediment metagenome DNA, contig: S03H2_S08195 (Fragment)	0.5557618875
+UniRef50_X1G2P6: Marine sediment metagenome DNA, contig: S03H2_S08195 (Fragment)|unclassified	0.5557618875
+UniRef50_W1UE97: Membrane protein (Fragment)	0.5557183858
+UniRef50_W1UE97: Membrane protein (Fragment)|unclassified	0.5557183858
+UniRef50_F7ZDH7: HTH-type transcriptional regulator, AsnC family	0.5556806348
+UniRef50_F7ZDH7: HTH-type transcriptional regulator, AsnC family|unclassified	0.5556806348
+UniRef50_C1A2V7: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	0.5556393176
+UniRef50_C1A2V7: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.5556393176
+UniRef50_A4EHJ0: AzlC family protein	0.5556074911
+UniRef50_A4EHJ0: AzlC family protein|unclassified	0.5556074911
+UniRef50_Q48768: Chemotaxis protein CheA	0.5555555556
+UniRef50_Q48768: Chemotaxis protein CheA|unclassified	0.5555555556
+UniRef50_UPI0000397C40: COG0385: Predicted Na+-dependent transporter	0.5553953084
+UniRef50_UPI0000397C40: COG0385: Predicted Na+-dependent transporter|unclassified	0.5553953084
+UniRef50_U7PSS8	0.5553553469
+UniRef50_U7PSS8|unclassified	0.5553553469
+UniRef50_X1EV31: Marine sediment metagenome DNA, contig: S01H4_S26099 (Fragment)	0.5553464891
+UniRef50_X1EV31: Marine sediment metagenome DNA, contig: S01H4_S26099 (Fragment)|unclassified	0.5553464891
+UniRef50_S5N260	0.5553386557
+UniRef50_S5N260|unclassified	0.5553386557
+UniRef50_UPI00037EB18C: hypothetical protein	0.5553347843
+UniRef50_UPI00037EB18C: hypothetical protein|unclassified	0.5553347843
+UniRef50_UPI0004682C47: membrane protein	0.5553008945
+UniRef50_UPI0004682C47: membrane protein|unclassified	0.5553008945
+UniRef50_V0NX98	0.5552994080
+UniRef50_V0NX98|unclassified	0.5552994080
+UniRef50_Q3IWX3: Phage tail component protein X	0.5552680364
+UniRef50_Q3IWX3: Phage tail component protein X|unclassified	0.5552680364
+UniRef50_A6M2E5: Sulfatase	0.5552470850
+UniRef50_A6M2E5: Sulfatase|g__Clostridium.s__Clostridium_beijerinckii	0.5552470850
+UniRef50_U6MGH1	0.5552470850
+UniRef50_U6MGH1|unclassified	0.5552470850
+UniRef50_A0A023X9S4	0.5552294976
+UniRef50_A0A023X9S4|unclassified	0.5552294976
+UniRef50_J3K6Q4	0.5552197311
+UniRef50_J3K6Q4|unclassified	0.5552197311
+UniRef50_UPI00029AB2BE: DNA processing protein	0.5551721057
+UniRef50_UPI00029AB2BE: DNA processing protein|unclassified	0.5551721057
+UniRef50_W0Z529: ISPsy24 transposase OrfB	0.5551296102
+UniRef50_W0Z529: ISPsy24 transposase OrfB|unclassified	0.5551296102
+UniRef50_Q1JTH9: Hyothetical protein	0.5550911524
+UniRef50_Q1JTH9: Hyothetical protein|unclassified	0.5550911524
+UniRef50_J9ZQM1	0.5550477070
+UniRef50_J9ZQM1|unclassified	0.5550477070
+UniRef50_F0BIH3	0.5550214074
+UniRef50_F0BIH3|unclassified	0.5550214074
+UniRef50_UPI0003ACC79E: PREDICTED: LOW QUALITY PROTEIN: MAP kinase interacting serine/threonine kinase 2	0.5549389567
+UniRef50_UPI0003ACC79E: PREDICTED: LOW QUALITY PROTEIN: MAP kinase interacting serine/threonine kinase 2|unclassified	0.5549389567
+UniRef50_G0SY59: Proteophosphoglycan ppg4	0.5549224947
+UniRef50_G0SY59: Proteophosphoglycan ppg4|unclassified	0.5549224947
+UniRef50_V7EIE7	0.5547714751
+UniRef50_V7EIE7|unclassified	0.5547714751
+UniRef50_A0A011R129: O-acetyltransferase OatA	0.5547657794
+UniRef50_A0A011R129: O-acetyltransferase OatA|unclassified	0.5547657794
+UniRef50_A3T2I4	0.5547326949
+UniRef50_A3T2I4|unclassified	0.5547326949
+UniRef50_A0A010Q6A8: TonB dependent receptor family protein	0.5546311703
+UniRef50_A0A010Q6A8: TonB dependent receptor family protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.5546311703
+UniRef50_K2MBB7	0.5546072438
+UniRef50_K2MBB7|unclassified	0.5546072438
+UniRef50_R1CFS3	0.5545727027
+UniRef50_R1CFS3|unclassified	0.5545727027
+UniRef50_Q2G505	0.5545502514
+UniRef50_Q2G505|unclassified	0.5545502514
+UniRef50_UPI0002556319: pseudouridine synthase	0.5544950518
+UniRef50_UPI0002556319: pseudouridine synthase|unclassified	0.5544950518
+UniRef50_UPI0003B727F3: membrane protein	0.5544473871
+UniRef50_UPI0003B727F3: membrane protein|unclassified	0.5544473871
+UniRef50_UPI00046CD99B: hypothetical protein	0.5543865464
+UniRef50_UPI00046CD99B: hypothetical protein|unclassified	0.5543865464
+UniRef50_E2CDU3: ErfK/YbiS/YcfS/YnhG family protein	0.5543750371
+UniRef50_E2CDU3: ErfK/YbiS/YcfS/YnhG family protein|unclassified	0.5543750371
+UniRef50_U8GJU5	0.5541924093
+UniRef50_U8GJU5|unclassified	0.5541924093
+UniRef50_UPI0003B4E440: S-(hydroxymethyl)glutathione synthase	0.5540726472
+UniRef50_UPI0003B4E440: S-(hydroxymethyl)glutathione synthase|unclassified	0.5540726472
+UniRef50_P56123: Ribonuclease R	0.5540166205
+UniRef50_P56123: Ribonuclease R|g__Helicobacter.s__Helicobacter_pylori	0.5540166205
+UniRef50_A0A059LAG8	0.5539494328
+UniRef50_A0A059LAG8|unclassified	0.5539494328
+UniRef50_N9LK05	0.5539479256
+UniRef50_N9LK05|unclassified	0.5539479256
+UniRef50_UPI0004785ED3: hypothetical protein	0.5538959510
+UniRef50_UPI0004785ED3: hypothetical protein|unclassified	0.5538959510
+UniRef50_UPI0001911679: galactitol utilization operon repressor, partial	0.5538795285
+UniRef50_UPI0001911679: galactitol utilization operon repressor, partial|unclassified	0.5538795285
+UniRef50_UPI0003AE8E5F: PREDICTED: synapsin-1-like	0.5538520414
+UniRef50_UPI0003AE8E5F: PREDICTED: synapsin-1-like|unclassified	0.5538520414
+UniRef50_UPI0003B6E25F: 3-dehydroquinate dehydratase	0.5538425004
+UniRef50_UPI0003B6E25F: 3-dehydroquinate dehydratase|unclassified	0.5538425004
+UniRef50_UPI0004752D6A: recombinase	0.5538417200
+UniRef50_UPI0004752D6A: recombinase|unclassified	0.5538417200
+UniRef50_B4EGS3	0.5538404395
+UniRef50_B4EGS3|unclassified	0.5538404395
+UniRef50_W4UGA1	0.5537008036
+UniRef50_W4UGA1|unclassified	0.5537008036
+UniRef50_W1JT06: Putative multidrug resistance protein (Fragment)	0.5534578810
+UniRef50_W1JT06: Putative multidrug resistance protein (Fragment)|unclassified	0.5534578810
+UniRef50_UPI0003B40EDF: methylmalonyl-CoA mutase	0.5534136624
+UniRef50_UPI0003B40EDF: methylmalonyl-CoA mutase|unclassified	0.5534136624
+UniRef50_A0A059FP02: Aldo/keto reductase	0.5533584628
+UniRef50_A0A059FP02: Aldo/keto reductase|unclassified	0.5533584628
+UniRef50_UPI0003B73B69: glutaredoxin	0.5532797694
+UniRef50_UPI0003B73B69: glutaredoxin|unclassified	0.5532797694
+UniRef50_Q3JHR1	0.5532250346
+UniRef50_Q3JHR1|unclassified	0.5532250346
+UniRef50_S9SBG8: Enoyl-[acyl-carrier-protein] reductase (NADH)	0.5532166339
+UniRef50_S9SBG8: Enoyl-[acyl-carrier-protein] reductase (NADH)|unclassified	0.5532166339
+UniRef50_D4ZGG3	0.5532071697
+UniRef50_D4ZGG3|unclassified	0.5532071697
+UniRef50_UPI0003C19E92	0.5530763458
+UniRef50_UPI0003C19E92|unclassified	0.5530763458
+UniRef50_U1SX87	0.5528400922
+UniRef50_U1SX87|unclassified	0.5528400922
+UniRef50_W6TT27	0.5528234048
+UniRef50_W6TT27|unclassified	0.5528234048
+UniRef50_D0CUH2: FixH	0.5527861669
+UniRef50_D0CUH2: FixH|unclassified	0.5527861669
+UniRef50_UPI00036B778B: hypothetical protein	0.5527519412
+UniRef50_UPI00036B778B: hypothetical protein|unclassified	0.5527519412
+UniRef50_UPI00035C4507: hypothetical protein, partial	0.5526958322
+UniRef50_UPI00035C4507: hypothetical protein, partial|unclassified	0.5526958322
+UniRef50_UPI00035C4E49: hypothetical protein	0.5526449585
+UniRef50_UPI00035C4E49: hypothetical protein|unclassified	0.5526449585
+UniRef50_I0TP35	0.5526071920
+UniRef50_I0TP35|unclassified	0.5526071920
+UniRef50_UPI00035D0942: hypothetical protein	0.5525923855
+UniRef50_UPI00035D0942: hypothetical protein|unclassified	0.5525923855
+UniRef50_UPI0003630D50: hypothetical protein	0.5525368918
+UniRef50_UPI0003630D50: hypothetical protein|unclassified	0.5525368918
+UniRef50_D0WMD9	0.5524571180
+UniRef50_D0WMD9|unclassified	0.5524571180
+UniRef50_UPI0002C376E7	0.5524566710
+UniRef50_UPI0002C376E7|unclassified	0.5524566710
+UniRef50_G4R5C5	0.5524527705
+UniRef50_G4R5C5|unclassified	0.5524527705
+UniRef50_Q8VJH3	0.5524243700
+UniRef50_Q8VJH3|unclassified	0.5524243700
+UniRef50_UPI0002481AA7: HNH endonuclease	0.5524106174
+UniRef50_UPI0002481AA7: HNH endonuclease|unclassified	0.5524106174
+UniRef50_R1C360	0.5523052108
+UniRef50_R1C360|unclassified	0.5523052108
+UniRef50_UPI000050FB19: ABC transporter related protein	0.5522663535
+UniRef50_UPI000050FB19: ABC transporter related protein|unclassified	0.5522663535
+UniRef50_E3MPW5	0.5522644665
+UniRef50_E3MPW5|unclassified	0.5522644665
+UniRef50_UPI0003B574AD: hypothetical protein	0.5521523858
+UniRef50_UPI0003B574AD: hypothetical protein|unclassified	0.5521523858
+UniRef50_G9YZK3: UPF0231 protein HMPREF0880_00648	0.5521203341
+UniRef50_G9YZK3: UPF0231 protein HMPREF0880_00648|unclassified	0.5521203341
+UniRef50_Q8FPF5: LexA repressor	0.5521173441
+UniRef50_Q8FPF5: LexA repressor|unclassified	0.5521173441
+UniRef50_UPI000262AFC7: AraC family transcriptional regulator	0.5520501275
+UniRef50_UPI000262AFC7: AraC family transcriptional regulator|unclassified	0.5520501275
+UniRef50_G4YVY4	0.5519197627
+UniRef50_G4YVY4|unclassified	0.5519197627
+UniRef50_N6UDA5	0.5518947564
+UniRef50_N6UDA5|unclassified	0.5518947564
+UniRef50_A0A011R518: CRISPR-associated endonuclease/helicase Cas3	0.5518669889
+UniRef50_A0A011R518: CRISPR-associated endonuclease/helicase Cas3|unclassified	0.5518669889
+UniRef50_UPI000361644F: hypothetical protein	0.5518130062
+UniRef50_UPI000361644F: hypothetical protein|unclassified	0.5518130062
+UniRef50_C7MYP5	0.5518072540
+UniRef50_C7MYP5|unclassified	0.5518072540
+UniRef50_Q8FAZ7	0.5517869249
+UniRef50_Q8FAZ7|unclassified	0.5517869249
+UniRef50_Q4A0F6	0.5517760387
+UniRef50_Q4A0F6|unclassified	0.5517760387
+UniRef50_K1ZHJ1	0.5516842701
+UniRef50_K1ZHJ1|unclassified	0.5516842701
+UniRef50_UPI0003F8B96B: hypothetical protein	0.5515942742
+UniRef50_UPI0003F8B96B: hypothetical protein|unclassified	0.5515942742
+UniRef50_UPI0002BBFDEB: hypothetical protein	0.5515362474
+UniRef50_UPI0002BBFDEB: hypothetical protein|unclassified	0.5515362474
+UniRef50_V6P9T8	0.5514601314
+UniRef50_V6P9T8|unclassified	0.5514601314
+UniRef50_UPI000475FA0F: hypothetical protein	0.5514517779
+UniRef50_UPI000475FA0F: hypothetical protein|unclassified	0.5514517779
+UniRef50_H5TPA6: Putative uracil permease (Fragment)	0.5514080552
+UniRef50_H5TPA6: Putative uracil permease (Fragment)|unclassified	0.5514080552
+UniRef50_R0VGG6	0.5512934260
+UniRef50_R0VGG6|unclassified	0.5512934260
+UniRef50_UPI00040DCB53: hypothetical protein	0.5512054183
+UniRef50_UPI00040DCB53: hypothetical protein|unclassified	0.5512054183
+UniRef50_W9F1Q7	0.5512022086
+UniRef50_W9F1Q7|unclassified	0.5512022086
+UniRef50_UPI00037118F4: hypothetical protein	0.5512003106
+UniRef50_UPI00037118F4: hypothetical protein|unclassified	0.5512003106
+UniRef50_UPI0004160E1C: TetR family transcriptional regulator	0.5511890254
+UniRef50_UPI0004160E1C: TetR family transcriptional regulator|unclassified	0.5511890254
+UniRef50_UPI0004293662: hypothetical protein	0.5511432262
+UniRef50_UPI0004293662: hypothetical protein|unclassified	0.5511432262
+UniRef50_UPI0004789298: hypothetical protein	0.5510931602
+UniRef50_UPI0004789298: hypothetical protein|unclassified	0.5510931602
+UniRef50_UPI00039B3F34: aldehyde-activating protein	0.5510927127
+UniRef50_UPI00039B3F34: aldehyde-activating protein|unclassified	0.5510927127
+UniRef50_UPI0002BC421C: hypothetical protein, partial	0.5510826470
+UniRef50_UPI0002BC421C: hypothetical protein, partial|unclassified	0.5510826470
+UniRef50_I1IKA6	0.5510588099
+UniRef50_I1IKA6|unclassified	0.5510588099
+UniRef50_UPI00035D1759: DNA invertase	0.5509178638
+UniRef50_UPI00035D1759: DNA invertase|unclassified	0.5509178638
+UniRef50_UPI0000167758: hypothetical protein	0.5508503261
+UniRef50_UPI0000167758: hypothetical protein|unclassified	0.5508503261
+UniRef50_K4KR71	0.5508269037
+UniRef50_K4KR71|unclassified	0.5508269037
+UniRef50_B0U3Q4: Bacteriocin	0.5507500715
+UniRef50_B0U3Q4: Bacteriocin|unclassified	0.5507500715
+UniRef50_UPI00046F8708: hypothetical protein, partial	0.5507133955
+UniRef50_UPI00046F8708: hypothetical protein, partial|unclassified	0.5507133955
+UniRef50_Q08Z31	0.5506828657
+UniRef50_Q08Z31|unclassified	0.5506828657
+UniRef50_UPI000255E45E: metallophosphoesterase, partial	0.5505510900
+UniRef50_UPI000255E45E: metallophosphoesterase, partial|unclassified	0.5505510900
+UniRef50_S1F658: AI-2 transporter tqsA	0.5505461668
+UniRef50_S1F658: AI-2 transporter tqsA|unclassified	0.5505461668
+UniRef50_UPI000462E2BE: hypothetical protein	0.5505400760
+UniRef50_UPI000462E2BE: hypothetical protein|unclassified	0.5505400760
+UniRef50_UPI000462E9F8: hypothetical protein	0.5503551519
+UniRef50_UPI000462E9F8: hypothetical protein|unclassified	0.5503551519
+UniRef50_W7D2I2	0.5503061382
+UniRef50_W7D2I2|unclassified	0.5503061382
+UniRef50_UPI0003B463F8	0.5503048586
+UniRef50_UPI0003B463F8|unclassified	0.5503048586
+UniRef50_E4ZAA7	0.5501553172
+UniRef50_E4ZAA7|unclassified	0.5501553172
+UniRef50_Q4ZXS1: FMN reductase (NADH) RutF	0.5501290041
+UniRef50_Q4ZXS1: FMN reductase (NADH) RutF|unclassified	0.5501290041
+UniRef50_A0A022NN79: Putative transcriptional regulator	0.5501040923
+UniRef50_A0A022NN79: Putative transcriptional regulator|unclassified	0.5501040923
+UniRef50_M2TRV7	0.5500960825
+UniRef50_M2TRV7|unclassified	0.5500960825
+UniRef50_UPI000455E0E7: ribosomal protein S12	0.5500590816
+UniRef50_UPI000455E0E7: ribosomal protein S12|unclassified	0.5500590816
+UniRef50_W5X806: 50S ribosomal protein L17	0.5500008516
+UniRef50_W5X806: 50S ribosomal protein L17|unclassified	0.5500008516
+UniRef50_S6GN96: Transporting ATPase	0.5499574671
+UniRef50_S6GN96: Transporting ATPase|unclassified	0.5499574671
+UniRef50_V4Q261	0.5498431849
+UniRef50_V4Q261|unclassified	0.5498431849
+UniRef50_H0JAC9	0.5498411850
+UniRef50_H0JAC9|unclassified	0.5498411850
+UniRef50_UPI000471D8A7: hypothetical protein, partial	0.5498233838
+UniRef50_UPI000471D8A7: hypothetical protein, partial|unclassified	0.5498233838
+UniRef50_A0A022NSU8	0.5497526113
+UniRef50_A0A022NSU8|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.5497526113
+UniRef50_A0A014QHI0	0.5497223090
+UniRef50_A0A014QHI0|unclassified	0.5497223090
+UniRef50_B1TED8	0.5496242173
+UniRef50_B1TED8|unclassified	0.5496242173
+UniRef50_E2RB72	0.5496104061
+UniRef50_E2RB72|unclassified	0.5496104061
+UniRef50_B2HWC3: TonB-dependent receptor	0.5496025157
+UniRef50_B2HWC3: TonB-dependent receptor|unclassified	0.5496025157
+UniRef50_UPI0003B739E2: Cro/Cl family transcriptional regulator	0.5495819256
+UniRef50_UPI0003B739E2: Cro/Cl family transcriptional regulator|unclassified	0.5495819256
+UniRef50_C2Z7L9	0.5495514734
+UniRef50_C2Z7L9|unclassified	0.5495514734
+UniRef50_S0FC86	0.5495165130
+UniRef50_S0FC86|unclassified	0.5495165130
+UniRef50_X0T1V2: Marine sediment metagenome DNA, contig: S01H1_L04141 (Fragment)	0.5494850888
+UniRef50_X0T1V2: Marine sediment metagenome DNA, contig: S01H1_L04141 (Fragment)|unclassified	0.5494850888
+UniRef50_UPI0004770378: osmolarity response regulator	0.5494725740
+UniRef50_UPI0004770378: osmolarity response regulator|unclassified	0.5494725740
+UniRef50_U6LCC9: Yip1 domain-containing protein, putative	0.5494505495
+UniRef50_U6LCC9: Yip1 domain-containing protein, putative|unclassified	0.5494505495
+UniRef50_D0HJQ1: Flagellar basal-body rod protein FlgC	0.5494404492
+UniRef50_D0HJQ1: Flagellar basal-body rod protein FlgC|unclassified	0.5494404492
+UniRef50_K3YZH2	0.5494213033
+UniRef50_K3YZH2|unclassified	0.5494213033
+UniRef50_UPI0003B5F916: ABC transporter ATP-binding protein	0.5493531831
+UniRef50_UPI0003B5F916: ABC transporter ATP-binding protein|unclassified	0.5493531831
+UniRef50_S5EKX2	0.5493323156
+UniRef50_S5EKX2|unclassified	0.5493323156
+UniRef50_UPI0003B31788: hypothetical protein	0.5492823428
+UniRef50_UPI0003B31788: hypothetical protein|unclassified	0.5492823428
+UniRef50_A7ZZW4: Porin, autotransporter (AT) family	0.5492761327
+UniRef50_A7ZZW4: Porin, autotransporter (AT) family|g__Escherichia.s__Escherichia_coli	0.5492761327
+UniRef50_G7M3H0: Coagulation factor 5/8 type domain protein	0.5491488193
+UniRef50_G7M3H0: Coagulation factor 5/8 type domain protein|g__Clostridium.s__Clostridium_beijerinckii	0.5491488193
+UniRef50_S9TKQ0	0.5491488193
+UniRef50_S9TKQ0|unclassified	0.5491488193
+UniRef50_U6MRR8	0.5491488193
+UniRef50_U6MRR8|unclassified	0.5491488193
+UniRef50_UPI00037B160E: hypothetical protein	0.5491488193
+UniRef50_UPI00037B160E: hypothetical protein|unclassified	0.5491488193
+UniRef50_I4CY26	0.5491486933
+UniRef50_I4CY26|unclassified	0.5491486933
+UniRef50_B5GE97	0.5491428915
+UniRef50_B5GE97|unclassified	0.5491428915
+UniRef50_M5JML7: Inner-membrane translocator	0.5491319095
+UniRef50_M5JML7: Inner-membrane translocator|unclassified	0.5491319095
+UniRef50_UPI0003B4EBEF: adenosylcobinamide kinase	0.5490855443
+UniRef50_UPI0003B4EBEF: adenosylcobinamide kinase|unclassified	0.5490855443
+UniRef50_UPI0003AB3F6E: Cis-2,3-dihydrobiphenyl-2,3-diol dehydrogenase	0.5489497515
+UniRef50_UPI0003AB3F6E: Cis-2,3-dihydrobiphenyl-2,3-diol dehydrogenase|unclassified	0.5489497515
+UniRef50_UPI000468F97A: adenosylcobinamide kinase	0.5489152978
+UniRef50_UPI000468F97A: adenosylcobinamide kinase|unclassified	0.5489152978
+UniRef50_Q1DBT3: Epimerase domain protein	0.5489033219
+UniRef50_Q1DBT3: Epimerase domain protein|unclassified	0.5489033219
+UniRef50_UPI0003754665: hypothetical protein, partial	0.5488939110
+UniRef50_UPI0003754665: hypothetical protein, partial|unclassified	0.5488939110
+UniRef50_H5DQ87	0.5488886952
+UniRef50_H5DQ87|unclassified	0.5488886952
+UniRef50_X5ETF8	0.5488885536
+UniRef50_X5ETF8|unclassified	0.5488885536
+UniRef50_UPI00047B573B: hypothetical protein	0.5488330191
+UniRef50_UPI00047B573B: hypothetical protein|unclassified	0.5488330191
+UniRef50_UPI000360FF9A: hypothetical protein	0.5487138369
+UniRef50_UPI000360FF9A: hypothetical protein|unclassified	0.5487138369
+UniRef50_A1WXI4: PUCC protein	0.5486945573
+UniRef50_A1WXI4: PUCC protein|unclassified	0.5486945573
+UniRef50_A8IEI6: Adenine phosphoribosyltransferase	0.5486719034
+UniRef50_A8IEI6: Adenine phosphoribosyltransferase|unclassified	0.5486719034
+UniRef50_B1FBG2	0.5485801661
+UniRef50_B1FBG2|unclassified	0.5485801661
+UniRef50_U3TZU1: Anaerobic ribonucleoside-triphosphate reductase activating protein	0.5485777734
+UniRef50_U3TZU1: Anaerobic ribonucleoside-triphosphate reductase activating protein|unclassified	0.5485777734
+UniRef50_UPI00035E457F: hypothetical protein	0.5485306856
+UniRef50_UPI00035E457F: hypothetical protein|unclassified	0.5485306856
+UniRef50_UPI00029AD418: tail protein	0.5484557500
+UniRef50_UPI00029AD418: tail protein|unclassified	0.5484557500
+UniRef50_UPI00035D8546: 50S ribosomal protein L13	0.5484464263
+UniRef50_UPI00035D8546: 50S ribosomal protein L13|unclassified	0.5484464263
+UniRef50_UPI000466ECBC: 2,4-dihydroxyhept-2-ene-1,7-dioic acid aldolase	0.5483331537
+UniRef50_UPI000466ECBC: 2,4-dihydroxyhept-2-ene-1,7-dioic acid aldolase|unclassified	0.5483331537
+UniRef50_D7B0R8	0.5483029941
+UniRef50_D7B0R8|unclassified	0.5483029941
+UniRef50_X0TYQ9: Marine sediment metagenome DNA, contig: S01H1_L10475 (Fragment)	0.5482499759
+UniRef50_X0TYQ9: Marine sediment metagenome DNA, contig: S01H1_L10475 (Fragment)|unclassified	0.5482499759
+UniRef50_UPI0002890715: hypothetical protein	0.5481625922
+UniRef50_UPI0002890715: hypothetical protein|unclassified	0.5481625922
+UniRef50_F2U8V1	0.5481448797
+UniRef50_F2U8V1|unclassified	0.5481448797
+UniRef50_UPI000477EC64: glycogen debranching protein, partial	0.5481239705
+UniRef50_UPI000477EC64: glycogen debranching protein, partial|unclassified	0.5481239705
+UniRef50_Q7NKY2: Gll1344 protein	0.5481073078
+UniRef50_Q7NKY2: Gll1344 protein|unclassified	0.5481073078
+UniRef50_C5YGZ2	0.5481069138
+UniRef50_C5YGZ2|unclassified	0.5481069138
+UniRef50_UPI000363DDA9: hypothetical protein	0.5480812577
+UniRef50_UPI000363DDA9: hypothetical protein|unclassified	0.5480812577
+UniRef50_UPI0004707272: peptide ABC transporter substrate-binding protein	0.5480627743
+UniRef50_UPI0004707272: peptide ABC transporter substrate-binding protein|unclassified	0.5480627743
+UniRef50_UPI0004093BB4: AsnC family transcriptional regulator	0.5479299377
+UniRef50_UPI0004093BB4: AsnC family transcriptional regulator|unclassified	0.5479299377
+UniRef50_E4N7W5	0.5478902590
+UniRef50_E4N7W5|unclassified	0.5478902590
+UniRef50_Y2EZ70	0.5478414515
+UniRef50_Y2EZ70|unclassified	0.5478414515
+UniRef50_UPI00034BD43C: cystathionine beta-lyase	0.5477537942
+UniRef50_UPI00034BD43C: cystathionine beta-lyase|unclassified	0.5477537942
+UniRef50_G5JX82: Type VII secretion protein, YukD family	0.5477476653
+UniRef50_G5JX82: Type VII secretion protein, YukD family|unclassified	0.5477476653
+UniRef50_UPI00035E2839: hypothetical protein	0.5477347719
+UniRef50_UPI00035E2839: hypothetical protein|unclassified	0.5477347719
+UniRef50_E4R4G2	0.5477023292
+UniRef50_E4R4G2|unclassified	0.5477023292
+UniRef50_UPI0002EB0013: hypothetical protein	0.5476902408
+UniRef50_UPI0002EB0013: hypothetical protein|unclassified	0.5476902408
+UniRef50_C1CAY3: Transposase protein B	0.5476861885
+UniRef50_C1CAY3: Transposase protein B|unclassified	0.5476861885
+UniRef50_R5T8S6: Aluminium resistance family protein	0.5476253428
+UniRef50_R5T8S6: Aluminium resistance family protein|unclassified	0.5476253428
+UniRef50_UPI000155436C: hypothetical protein ORF028	0.5475464767
+UniRef50_UPI000155436C: hypothetical protein ORF028|unclassified	0.5475464767
+UniRef50_UPI0003511A86: PREDICTED: phospho-2-dehydro-3-deoxyheptonate aldolase 1, chloroplastic-like, partial	0.5474936780
+UniRef50_UPI0003511A86: PREDICTED: phospho-2-dehydro-3-deoxyheptonate aldolase 1, chloroplastic-like, partial|unclassified	0.5474936780
+UniRef50_D6X9F0	0.5473951900
+UniRef50_D6X9F0|unclassified	0.5473951900
+UniRef50_UPI00047A270D: hypothetical protein	0.5473524096
+UniRef50_UPI00047A270D: hypothetical protein|unclassified	0.5473524096
+UniRef50_P80459: Malate dehydrogenase (Fragment)	0.5473283414
+UniRef50_P80459: Malate dehydrogenase (Fragment)|unclassified	0.5473283414
+UniRef50_UPI00026C7B1A: transcriptional regulator	0.5472955871
+UniRef50_UPI00026C7B1A: transcriptional regulator|unclassified	0.5472955871
+UniRef50_UPI0003761157: hypothetical protein	0.5472217994
+UniRef50_UPI0003761157: hypothetical protein|unclassified	0.5472217994
+UniRef50_S6NTN5: Pyrroloquinoline quinone biosynthesis protein PqqB	0.5471837243
+UniRef50_S6NTN5: Pyrroloquinoline quinone biosynthesis protein PqqB|unclassified	0.5471837243
+UniRef50_B8CP69: Cbb3-type cytochrome oxidase component	0.5471371353
+UniRef50_B8CP69: Cbb3-type cytochrome oxidase component|unclassified	0.5471371353
+UniRef50_E7T4Z4	0.5471320353
+UniRef50_E7T4Z4|unclassified	0.5471320353
+UniRef50_Q2JHF7: Acetylglutamate kinase	0.5471206949
+UniRef50_Q2JHF7: Acetylglutamate kinase|unclassified	0.5471206949
+UniRef50_UPI0002D4926C: fatty acid desaturase	0.5470816821
+UniRef50_UPI0002D4926C: fatty acid desaturase|unclassified	0.5470816821
+UniRef50_UPI00047C7B9C: hypothetical protein, partial	0.5470698953
+UniRef50_UPI00047C7B9C: hypothetical protein, partial|unclassified	0.5470698953
+UniRef50_UPI0003B5C031: histidine kinase	0.5469937276
+UniRef50_UPI0003B5C031: histidine kinase|unclassified	0.5469937276
+UniRef50_X1TSD2: Marine sediment metagenome DNA, contig: S12H4_L05015 (Fragment)	0.5469395254
+UniRef50_X1TSD2: Marine sediment metagenome DNA, contig: S12H4_L05015 (Fragment)|unclassified	0.5469395254
+UniRef50_UPI00035EE427: hypothetical protein	0.5468285870
+UniRef50_UPI00035EE427: hypothetical protein|unclassified	0.5468285870
+UniRef50_W0ACQ4	0.5468115066
+UniRef50_W0ACQ4|unclassified	0.5468115066
+UniRef50_Q8EWD1: Serine hydroxymethyltransferase	0.5467299475
+UniRef50_Q8EWD1: Serine hydroxymethyltransferase|unclassified	0.5467299475
+UniRef50_F0G751	0.5467201040
+UniRef50_F0G751|unclassified	0.5467201040
+UniRef50_Q8YGU6: 3-dehydroquinate dehydratase	0.5466980113
+UniRef50_Q8YGU6: 3-dehydroquinate dehydratase|unclassified	0.5466980113
+UniRef50_UPI0002377EE6: transposase	0.5465903939
+UniRef50_UPI0002377EE6: transposase|unclassified	0.5465903939
+UniRef50_F4XB94	0.5465267674
+UniRef50_F4XB94|unclassified	0.5465267674
+UniRef50_UPI0002C33B71	0.5465209279
+UniRef50_UPI0002C33B71|unclassified	0.5465209279
+UniRef50_UPI00036B97E5: hypothetical protein	0.5465195214
+UniRef50_UPI00036B97E5: hypothetical protein|unclassified	0.5465195214
+UniRef50_UPI00037CA233: hypothetical protein	0.5465096007
+UniRef50_UPI00037CA233: hypothetical protein|unclassified	0.5465096007
+UniRef50_Q7F1Y2: B1065G12.2 protein	0.5464934448
+UniRef50_Q7F1Y2: B1065G12.2 protein|unclassified	0.5464934448
+UniRef50_UPI00036A55EB: hypothetical protein	0.5464911225
+UniRef50_UPI00036A55EB: hypothetical protein|unclassified	0.5464911225
+UniRef50_B2SDP9: 3-dehydroquinate dehydratase	0.5464523064
+UniRef50_B2SDP9: 3-dehydroquinate dehydratase|unclassified	0.5464523064
+UniRef50_C1N717: Predicted protein (Fragment)	0.5464480874
+UniRef50_C1N717: Predicted protein (Fragment)|unclassified	0.5464480874
+UniRef50_UPI0002B9F68A: hypothetical protein	0.5464360853
+UniRef50_UPI0002B9F68A: hypothetical protein|unclassified	0.5464360853
+UniRef50_B9FIT4	0.5464268380
+UniRef50_B9FIT4|unclassified	0.5464268380
+UniRef50_J9NX07	0.5464105685
+UniRef50_J9NX07|unclassified	0.5464105685
+UniRef50_A0A029LD95	0.5463537974
+UniRef50_A0A029LD95|unclassified	0.5463537974
+UniRef50_W4HJB4	0.5463459689
+UniRef50_W4HJB4|unclassified	0.5463459689
+UniRef50_UPI00047131A0: hypothetical protein, partial	0.5462184390
+UniRef50_UPI00047131A0: hypothetical protein, partial|unclassified	0.5462184390
+UniRef50_Q2H2S3	0.5461844926
+UniRef50_Q2H2S3|unclassified	0.5461844926
+UniRef50_X1NAG8: Marine sediment metagenome DNA, contig: S06H3_L04992 (Fragment)	0.5461712973
+UniRef50_X1NAG8: Marine sediment metagenome DNA, contig: S06H3_L04992 (Fragment)|unclassified	0.5461712973
+UniRef50_E6SHW8: AMP-dependent synthetase and ligase	0.5461496450
+UniRef50_E6SHW8: AMP-dependent synthetase and ligase|g__Deinococcus.s__Deinococcus_radiodurans	0.5461496450
+UniRef50_Q9DWH3: Pr5	0.5461496450
+UniRef50_Q9DWH3: Pr5|unclassified	0.5461496450
+UniRef50_UPI000237AA65: binding-protein-dependent transporter inner membrane component	0.5461224177
+UniRef50_UPI000237AA65: binding-protein-dependent transporter inner membrane component|unclassified	0.5461224177
+UniRef50_D1BX90: Transcriptional regulator, LysR family	0.5460660529
+UniRef50_D1BX90: Transcriptional regulator, LysR family|unclassified	0.5460660529
+UniRef50_R9VDC4	0.5460606137
+UniRef50_R9VDC4|unclassified	0.5460606137
+UniRef50_UPI0002EE270D: hypothetical protein	0.5460456096
+UniRef50_UPI0002EE270D: hypothetical protein|unclassified	0.5460456096
+UniRef50_A0A037XT12: Transposase	0.5459368322
+UniRef50_A0A037XT12: Transposase|unclassified	0.5459368322
+UniRef50_J8LLX4	0.5459225454
+UniRef50_J8LLX4|unclassified	0.5459225454
+UniRef50_D0D3Q5: Ftsk/spoiiie family protein	0.5459115007
+UniRef50_D0D3Q5: Ftsk/spoiiie family protein|unclassified	0.5459115007
+UniRef50_X2LQ36: Hydrogenase-1 operon protein HyaF	0.5458301897
+UniRef50_X2LQ36: Hydrogenase-1 operon protein HyaF|unclassified	0.5458301897
+UniRef50_UPI00046665BD: hypothetical protein	0.5458041567
+UniRef50_UPI00046665BD: hypothetical protein|unclassified	0.5458041567
+UniRef50_W7X505: Arsenate reductase (Thioredoxin)	0.5457897436
+UniRef50_W7X505: Arsenate reductase (Thioredoxin)|unclassified	0.5457897436
+UniRef50_M0Z1D1	0.5457876317
+UniRef50_M0Z1D1|unclassified	0.5457876317
+UniRef50_UPI00037C0DCF: MULTISPECIES: hypothetical protein	0.5457481991
+UniRef50_UPI00037C0DCF: MULTISPECIES: hypothetical protein|unclassified	0.5457481991
+UniRef50_Q98HV6: Peptidyl-tRNA hydrolase	0.5457329692
+UniRef50_Q98HV6: Peptidyl-tRNA hydrolase|unclassified	0.5457329692
+UniRef50_UPI00029B17D0: DNA adenine methylase	0.5457052656
+UniRef50_UPI00029B17D0: DNA adenine methylase|unclassified	0.5457052656
+UniRef50_UPI0003728055: hypothetical protein	0.5456955205
+UniRef50_UPI0003728055: hypothetical protein|unclassified	0.5456955205
+UniRef50_R7LL20	0.5456644455
+UniRef50_R7LL20|unclassified	0.5456644455
+UniRef50_UPI00046BD92F: PREDICTED: colossin-A-like	0.5456436403
+UniRef50_UPI00046BD92F: PREDICTED: colossin-A-like|unclassified	0.5456436403
+UniRef50_UPI00047DBA67: hypothetical protein	0.5456418310
+UniRef50_UPI00047DBA67: hypothetical protein|unclassified	0.5456418310
+UniRef50_UPI000373C080: hypothetical protein	0.5456408424
+UniRef50_UPI000373C080: hypothetical protein|unclassified	0.5456408424
+UniRef50_UPI0003B714B7: protein-L-isoaspartate O-methyltransferase	0.5456248417
+UniRef50_UPI0003B714B7: protein-L-isoaspartate O-methyltransferase|unclassified	0.5456248417
+UniRef50_UPI00035E3A56: hypothetical protein	0.5455685942
+UniRef50_UPI00035E3A56: hypothetical protein|unclassified	0.5455685942
+UniRef50_UPI0003FD6A90: sugar ABC transporter permease	0.5455585106
+UniRef50_UPI0003FD6A90: sugar ABC transporter permease|unclassified	0.5455585106
+UniRef50_J8V402	0.5455437360
+UniRef50_J8V402|unclassified	0.5455437360
+UniRef50_T1CJY4	0.5455397726
+UniRef50_T1CJY4|unclassified	0.5455397726
+UniRef50_UPI0002DB7074: hypothetical protein	0.5454923337
+UniRef50_UPI0002DB7074: hypothetical protein|unclassified	0.5454923337
+UniRef50_A9AST0: Isopentenyl-diphosphate Delta-isomerase	0.5454718202
+UniRef50_A9AST0: Isopentenyl-diphosphate Delta-isomerase|unclassified	0.5454718202
+UniRef50_UPI0002D6C5E1: MULTISPECIES: hypothetical protein	0.5453584751
+UniRef50_UPI0002D6C5E1: MULTISPECIES: hypothetical protein|unclassified	0.5453584751
+UniRef50_X5EK07	0.5453306432
+UniRef50_X5EK07|unclassified	0.5453306432
+UniRef50_UPI0003F81C94: zinc/iron permease	0.5453130376
+UniRef50_UPI0003F81C94: zinc/iron permease|unclassified	0.5453130376
+UniRef50_UPI00038172EF: hypothetical protein, partial	0.5452565998
+UniRef50_UPI00038172EF: hypothetical protein, partial|unclassified	0.5452565998
+UniRef50_H8GYE3	0.5452562704
+UniRef50_H8GYE3|g__Deinococcus.s__Deinococcus_radiodurans	0.5452562704
+UniRef50_UPI00037C10BF: hypothetical protein	0.5451555419
+UniRef50_UPI00037C10BF: hypothetical protein|unclassified	0.2884820306
+UniRef50_UPI00037C10BF: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	0.2566735113
+UniRef50_UPI0004776AE6: hypothetical protein	0.5451073322
+UniRef50_UPI0004776AE6: hypothetical protein|unclassified	0.5451073322
+UniRef50_A9VN98: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.5450441734
+UniRef50_A9VN98: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.5450441734
+UniRef50_W7B293	0.5450372652
+UniRef50_W7B293|unclassified	0.5450372652
+UniRef50_J7QQA0: Primosomal protein N	0.5449591281
+UniRef50_J7QQA0: Primosomal protein N|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.5449591281
+UniRef50_Q6A8Q7: 1,4-alpha-glucan branching enzyme GlgB	0.5449376729
+UniRef50_Q6A8Q7: 1,4-alpha-glucan branching enzyme GlgB|g__Propionibacterium.s__Propionibacterium_acnes	0.5288207298
+UniRef50_Q6A8Q7: 1,4-alpha-glucan branching enzyme GlgB|unclassified	0.0161169431
+UniRef50_UPI00035D8938: phage baseplate protein, partial	0.5448796297
+UniRef50_UPI00035D8938: phage baseplate protein, partial|unclassified	0.5448796297
+UniRef50_UPI00046FDB29: hypothetical protein, partial	0.5448585549
+UniRef50_UPI00046FDB29: hypothetical protein, partial|unclassified	0.5448585549
+UniRef50_X0YKS5: Marine sediment metagenome DNA, contig: S01H1_S35574 (Fragment)	0.5447967233
+UniRef50_X0YKS5: Marine sediment metagenome DNA, contig: S01H1_S35574 (Fragment)|unclassified	0.5447967233
+UniRef50_Q39ZB4: NADH-quinone oxidoreductase subunit I 1	0.5447503058
+UniRef50_Q39ZB4: NADH-quinone oxidoreductase subunit I 1|unclassified	0.5447503058
+UniRef50_UPI00037E3357: hypothetical protein	0.5447201026
+UniRef50_UPI00037E3357: hypothetical protein|unclassified	0.5447201026
+UniRef50_Q9RME4: Phosphopantetheine adenylyltransferase	0.5447014264
+UniRef50_Q9RME4: Phosphopantetheine adenylyltransferase|unclassified	0.5447014264
+UniRef50_U2QI34	0.5446249840
+UniRef50_U2QI34|unclassified	0.5446249840
+UniRef50_UPI000478FB0B: membrane protein, partial	0.5446044703
+UniRef50_UPI000478FB0B: membrane protein, partial|unclassified	0.5446044703
+UniRef50_UPI00047CD331: hypothetical protein	0.5445810515
+UniRef50_UPI00047CD331: hypothetical protein|unclassified	0.5445810515
+UniRef50_B5WFL3	0.5445287138
+UniRef50_B5WFL3|unclassified	0.5445287138
+UniRef50_UPI00036D650C: hypothetical protein	0.5444899647
+UniRef50_UPI00036D650C: hypothetical protein|unclassified	0.5444899647
+UniRef50_UPI00016C40E6: nitrogen regulatory protein P-II	0.5444336946
+UniRef50_UPI00016C40E6: nitrogen regulatory protein P-II|unclassified	0.5444336946
+UniRef50_C4J320	0.5444010674
+UniRef50_C4J320|unclassified	0.5444010674
+UniRef50_B5EZK0: NADH-quinone oxidoreductase subunit K	0.5443400600
+UniRef50_B5EZK0: NADH-quinone oxidoreductase subunit K|unclassified	0.5443400600
+UniRef50_A4VGV6	0.5442870040
+UniRef50_A4VGV6|unclassified	0.5442870040
+UniRef50_UPI00045DFD95	0.5442762288
+UniRef50_UPI00045DFD95|unclassified	0.5442762288
+UniRef50_P20622: Nitrogenase molybdenum-iron protein beta chain (Fragment)	0.5441779547
+UniRef50_P20622: Nitrogenase molybdenum-iron protein beta chain (Fragment)|unclassified	0.5441779547
+UniRef50_UPI00021A5B0C: PREDICTED: hypothetical protein LOC100638489, partial	0.5441609120
+UniRef50_UPI00021A5B0C: PREDICTED: hypothetical protein LOC100638489, partial|unclassified	0.5441609120
+UniRef50_C7J3G1: Os06g0575100 protein (Fragment)	0.5440669422
+UniRef50_C7J3G1: Os06g0575100 protein (Fragment)|unclassified	0.5440669422
+UniRef50_UPI00047207D2: DNA-directed RNA polymerase subunit N	0.5440642070
+UniRef50_UPI00047207D2: DNA-directed RNA polymerase subunit N|unclassified	0.5440642070
+UniRef50_E4SRK1: Transposase	0.5440573961
+UniRef50_E4SRK1: Transposase|unclassified	0.5440573961
+UniRef50_E3ZRD8	0.5440172063
+UniRef50_E3ZRD8|unclassified	0.5440172063
+UniRef50_Q28L59: Glutamate--tRNA ligase 2	0.5440156479
+UniRef50_Q28L59: Glutamate--tRNA ligase 2|unclassified	0.5440156479
+UniRef50_N0GHL6: UPF0410 protein yeaQ	0.5438381266
+UniRef50_N0GHL6: UPF0410 protein yeaQ|unclassified	0.5438381266
+UniRef50_A0A024LKC0	0.5438330261
+UniRef50_A0A024LKC0|unclassified	0.5438330261
+UniRef50_UPI00047EC040: DNA repair protein	0.5438328017
+UniRef50_UPI00047EC040: DNA repair protein|unclassified	0.5438328017
+UniRef50_E0XV93	0.5437729083
+UniRef50_E0XV93|unclassified	0.5437729083
+UniRef50_A4YNZ9	0.5437132907
+UniRef50_A4YNZ9|unclassified	0.5437132907
+UniRef50_R8T304	0.5436858454
+UniRef50_R8T304|unclassified	0.5436858454
+UniRef50_UPI00036E74CF: hypothetical protein	0.5436602433
+UniRef50_UPI00036E74CF: hypothetical protein|unclassified	0.5436602433
+UniRef50_K8BBX5: Transcriptional regulatory protein RtcR	0.5436488905
+UniRef50_K8BBX5: Transcriptional regulatory protein RtcR|unclassified	0.5436488905
+UniRef50_Q2GAK4	0.5436202618
+UniRef50_Q2GAK4|unclassified	0.5436202618
+UniRef50_UPI000255B980: 4-hydroxybenzoyl-CoA thioesterase	0.5434955199
+UniRef50_UPI000255B980: 4-hydroxybenzoyl-CoA thioesterase|unclassified	0.5434955199
+UniRef50_H0CBS9	0.5434782609
+UniRef50_H0CBS9|unclassified	0.5434782609
+UniRef50_A3M530: Phage tail tape meausure protein lambda family	0.5434782609
+UniRef50_A3M530: Phage tail tape meausure protein lambda family|g__Acinetobacter.s__Acinetobacter_baumannii	0.5434782609
+UniRef50_UPI0003B4C5F4: carbohydrate kinase	0.5434655942
+UniRef50_UPI0003B4C5F4: carbohydrate kinase|unclassified	0.5434655942
+UniRef50_UPI00036C7DC7: hypothetical protein	0.5432995638
+UniRef50_UPI00036C7DC7: hypothetical protein|unclassified	0.5432995638
+UniRef50_W6K9C5	0.5432572623
+UniRef50_W6K9C5|unclassified	0.5432572623
+UniRef50_Q8PI35	0.5430336236
+UniRef50_Q8PI35|unclassified	0.5430336236
+UniRef50_UPI00029CBC9B: aconitate hydratase, partial	0.5430263877
+UniRef50_UPI00029CBC9B: aconitate hydratase, partial|unclassified	0.5430263877
+UniRef50_F0XY59: Expressed protein (Fragment)	0.5430026131
+UniRef50_F0XY59: Expressed protein (Fragment)|unclassified	0.5430026131
+UniRef50_Q2S0M8: 3-isopropylmalate dehydrogenase	0.5429374793
+UniRef50_Q2S0M8: 3-isopropylmalate dehydrogenase|unclassified	0.5429374793
+UniRef50_P59495: Glutathione synthetase	0.5429076696
+UniRef50_P59495: Glutathione synthetase|unclassified	0.5429076696
+UniRef50_I2JIK8	0.5428773698
+UniRef50_I2JIK8|unclassified	0.5428773698
+UniRef50_I6AQK6	0.5428463266
+UniRef50_I6AQK6|unclassified	0.5428463266
+UniRef50_G5LK58: Lead, cadmium, zinc and mercury transporting ATPase	0.5428236511
+UniRef50_G5LK58: Lead, cadmium, zinc and mercury transporting ATPase|unclassified	0.5428236511
+UniRef50_UPI000368E124: inorganic polyphosphate/ATP-NAD kinase	0.5427901077
+UniRef50_UPI000368E124: inorganic polyphosphate/ATP-NAD kinase|unclassified	0.5427901077
+UniRef50_UPI0000E0E4A7: cytochrome C	0.5427704421
+UniRef50_UPI0000E0E4A7: cytochrome C|unclassified	0.5427704421
+UniRef50_L2YGD4	0.5427433667
+UniRef50_L2YGD4|unclassified	0.5427433667
+UniRef50_M9R1T5	0.5427430057
+UniRef50_M9R1T5|unclassified	0.5427430057
+UniRef50_Q5YTG9	0.5426390836
+UniRef50_Q5YTG9|unclassified	0.5426390836
+UniRef50_F0T772: MotA/TolQ/ExbB proton channel family protein	0.5425980533
+UniRef50_F0T772: MotA/TolQ/ExbB proton channel family protein|unclassified	0.5425980533
+UniRef50_X1N716: Marine sediment metagenome DNA, contig: S06H3_S08438	0.5425748924
+UniRef50_X1N716: Marine sediment metagenome DNA, contig: S06H3_S08438|unclassified	0.5425748924
+UniRef50_UPI00046742AA: hypothetical protein	0.5425237383
+UniRef50_UPI00046742AA: hypothetical protein|unclassified	0.5425237383
+UniRef50_D5ZK04: Predicted protein	0.5424851921
+UniRef50_D5ZK04: Predicted protein|unclassified	0.5424851921
+UniRef50_UPI000463121F: hypothetical protein	0.5424463152
+UniRef50_UPI000463121F: hypothetical protein|unclassified	0.5424463152
+UniRef50_Q56454: ORF 2	0.5424169572
+UniRef50_Q56454: ORF 2|unclassified	0.5424169572
+UniRef50_F3Z8L2	0.5424158752
+UniRef50_F3Z8L2|unclassified	0.5424158752
+UniRef50_UPI00047E791A: saccharopine dehydrogenase	0.5423677044
+UniRef50_UPI00047E791A: saccharopine dehydrogenase|unclassified	0.5423677044
+UniRef50_E2PUA8	0.5423659395
+UniRef50_E2PUA8|unclassified	0.5423659395
+UniRef50_Q9RUN0: UvrABC system protein C	0.5422993492
+UniRef50_Q9RUN0: UvrABC system protein C|g__Deinococcus.s__Deinococcus_radiodurans	0.5422993492
+UniRef50_C2D5X4	0.5421954591
+UniRef50_C2D5X4|unclassified	0.5421954591
+UniRef50_K9B8D2: 6-pyruvoyl tetrahydrobiopterin synthase	0.5420679990
+UniRef50_K9B8D2: 6-pyruvoyl tetrahydrobiopterin synthase|unclassified	0.5420679990
+UniRef50_Q88NQ2: Lipoprotein, putative	0.5419959878
+UniRef50_Q88NQ2: Lipoprotein, putative|unclassified	0.5419959878
+UniRef50_C4K9K2	0.5418882552
+UniRef50_C4K9K2|unclassified	0.5418882552
+UniRef50_UPI00037181FA: hypothetical protein	0.5417933449
+UniRef50_UPI00037181FA: hypothetical protein|unclassified	0.5417933449
+UniRef50_X1YQR0	0.5417350549
+UniRef50_X1YQR0|unclassified	0.5417350549
+UniRef50_G0LSH0: Pathogenicity island protein	0.5416732217
+UniRef50_G0LSH0: Pathogenicity island protein|unclassified	0.5416732217
+UniRef50_UPI000376CA6A: deoxyguanosinetriphosphate triphosphohydrolase, partial	0.5416656800
+UniRef50_UPI000376CA6A: deoxyguanosinetriphosphate triphosphohydrolase, partial|unclassified	0.5416656800
+UniRef50_Q04809: Dipicolinate synthase subunit A	0.5416325912
+UniRef50_Q04809: Dipicolinate synthase subunit A|unclassified	0.5416325912
+UniRef50_A0A011Q1K9: Inner membrane protein YjcH	0.5416154376
+UniRef50_A0A011Q1K9: Inner membrane protein YjcH|unclassified	0.5416154376
+UniRef50_W1XHC4: CBS protein (Fragment)	0.5416112542
+UniRef50_W1XHC4: CBS protein (Fragment)|unclassified	0.5416112542
+UniRef50_UPI00016B24E2: ParBc, ParB-like nuclease domain	0.5415754259
+UniRef50_UPI00016B24E2: ParBc, ParB-like nuclease domain|unclassified	0.5415754259
+UniRef50_Q6FFZ4: FMN reductase (NADH) RutF	0.5415673188
+UniRef50_Q6FFZ4: FMN reductase (NADH) RutF|unclassified	0.5415673188
+UniRef50_UPI00037AB37F: hypothetical protein	0.5415639086
+UniRef50_UPI00037AB37F: hypothetical protein|unclassified	0.5415639086
+UniRef50_H0Q291	0.5415628398
+UniRef50_H0Q291|unclassified	0.5415628398
+UniRef50_UPI000377F0F1: 50S ribosomal protein L15	0.5415310739
+UniRef50_UPI000377F0F1: 50S ribosomal protein L15|unclassified	0.5415310739
+UniRef50_A0A023KE77	0.5415259468
+UniRef50_A0A023KE77|unclassified	0.5415259468
+UniRef50_D0Z2G0	0.5415191896
+UniRef50_D0Z2G0|unclassified	0.5415191896
+UniRef50_J3NSV0	0.5414185165
+UniRef50_J3NSV0|unclassified	0.5414185165
+UniRef50_UPI00030AD9CB: hypothetical protein	0.5413447581
+UniRef50_UPI00030AD9CB: hypothetical protein|unclassified	0.5413447581
+UniRef50_D0LGY3	0.5412099549
+UniRef50_D0LGY3|unclassified	0.5412099549
+UniRef50_A0A023LEW3: Alpha-glucosidase	0.5411255411
+UniRef50_A0A023LEW3: Alpha-glucosidase|g__Propionibacterium.s__Propionibacterium_acnes	0.5411255411
+UniRef50_W1XLQ4	0.5411255411
+UniRef50_W1XLQ4|unclassified	0.5411255411
+UniRef50_UPI00047986C5: methionine aminopeptidase	0.5411224448
+UniRef50_UPI00047986C5: methionine aminopeptidase|unclassified	0.5411224448
+UniRef50_D2A844	0.5411036710
+UniRef50_D2A844|unclassified	0.5411036710
+UniRef50_F5WMC1	0.5410847355
+UniRef50_F5WMC1|unclassified	0.5410847355
+UniRef50_Q5NYP6: Ribonuclease H	0.5410081189
+UniRef50_Q5NYP6: Ribonuclease H|unclassified	0.5410081189
+UniRef50_UPI0003B6AB94: cytochrome B561	0.5409661124
+UniRef50_UPI0003B6AB94: cytochrome B561|unclassified	0.5409661124
+UniRef50_UPI0003F6F54C: hypothetical protein	0.5408952346
+UniRef50_UPI0003F6F54C: hypothetical protein|unclassified	0.5408952346
+UniRef50_X0YLC9: Marine sediment metagenome DNA, contig: S01H4_C02128 (Fragment)	0.5408520819
+UniRef50_X0YLC9: Marine sediment metagenome DNA, contig: S01H4_C02128 (Fragment)|unclassified	0.5408520819
+UniRef50_UPI00032897A4: PREDICTED: fibrous sheath CABYR-binding protein-like, partial	0.5407713032
+UniRef50_UPI00032897A4: PREDICTED: fibrous sheath CABYR-binding protein-like, partial|unclassified	0.5407713032
+UniRef50_UPI0003B62981: hydroxymethylglutaryl-CoA synthase	0.5407689334
+UniRef50_UPI0003B62981: hydroxymethylglutaryl-CoA synthase|unclassified	0.5407689334
+UniRef50_K1YSK2	0.5407673834
+UniRef50_K1YSK2|unclassified	0.5407673834
+UniRef50_Q6AB89: Isoleucine--tRNA ligase	0.5407667753
+UniRef50_Q6AB89: Isoleucine--tRNA ligase|g__Propionibacterium.s__Propionibacterium_acnes	0.3512469266
+UniRef50_Q6AB89: Isoleucine--tRNA ligase|unclassified	0.1895198487
+UniRef50_Q1CHM2: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.5406388244
+UniRef50_Q1CHM2: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.5406388244
+UniRef50_R4YGC4: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	0.5406312389
+UniRef50_R4YGC4: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome|unclassified	0.5406312389
+UniRef50_UPI0002626AF3: periplasmic chelated iron-binding protein yfeA	0.5405511925
+UniRef50_UPI0002626AF3: periplasmic chelated iron-binding protein yfeA|unclassified	0.5405511925
+UniRef50_Q221I2: Probable chemoreceptor glutamine deamidase CheD 1	0.5405456610
+UniRef50_Q221I2: Probable chemoreceptor glutamine deamidase CheD 1|unclassified	0.5405456610
+UniRef50_Q3JW66	0.5405051463
+UniRef50_Q3JW66|unclassified	0.5405051463
+UniRef50_UPI00047AD68F: hypothetical protein	0.5404995716
+UniRef50_UPI00047AD68F: hypothetical protein|unclassified	0.5404995716
+UniRef50_X0Y4A8: Marine sediment metagenome DNA, contig: S01H1_S43090 (Fragment)	0.5403723184
+UniRef50_X0Y4A8: Marine sediment metagenome DNA, contig: S01H1_S43090 (Fragment)|unclassified	0.5403723184
+UniRef50_I4E8E6	0.5403468182
+UniRef50_I4E8E6|unclassified	0.5403468182
+UniRef50_UPI000372993F: hypothetical protein	0.5402966335
+UniRef50_UPI000372993F: hypothetical protein|unclassified	0.5402966335
+UniRef50_UPI00036D64EF: hypothetical protein	0.5402610468
+UniRef50_UPI00036D64EF: hypothetical protein|unclassified	0.5402610468
+UniRef50_UPI0003B46DDC: photosynthetic reaction center complex subunit H1	0.5402419376
+UniRef50_UPI0003B46DDC: photosynthetic reaction center complex subunit H1|unclassified	0.5402419376
+UniRef50_D7ZP07: TRAP transporter, DctM subunit	0.5402351438
+UniRef50_D7ZP07: TRAP transporter, DctM subunit|unclassified	0.5402351438
+UniRef50_W8YSM1	0.5402201574
+UniRef50_W8YSM1|unclassified	0.5402201574
+UniRef50_UPI00035C9F5D: hypothetical protein, partial	0.5402165720
+UniRef50_UPI00035C9F5D: hypothetical protein, partial|unclassified	0.5402165720
+UniRef50_UPI00035EA7AD: hypothetical protein	0.5401775320
+UniRef50_UPI00035EA7AD: hypothetical protein|unclassified	0.5401775320
+UniRef50_W4HKI4: Protein RdxH	0.5401546936
+UniRef50_W4HKI4: Protein RdxH|unclassified	0.5401546936
+UniRef50_C6W7J8: Arsenate reductase and related	0.5401103453
+UniRef50_C6W7J8: Arsenate reductase and related|unclassified	0.5401103453
+UniRef50_R7P2I4	0.5401016603
+UniRef50_R7P2I4|unclassified	0.5401016603
+UniRef50_Z5B083	0.5401001445
+UniRef50_Z5B083|unclassified	0.5401001445
+UniRef50_V4R3V8	0.5400902291
+UniRef50_V4R3V8|unclassified	0.5400902291
+UniRef50_X8A453: Putative MAGNESIUM CHELATASE domain protein	0.5400660398
+UniRef50_X8A453: Putative MAGNESIUM CHELATASE domain protein|unclassified	0.5400660398
+UniRef50_K0JVB3: Peptidase C60, sortase A and B	0.5399222012
+UniRef50_K0JVB3: Peptidase C60, sortase A and B|unclassified	0.5399222012
+UniRef50_UPI00047066F3: hypothetical protein	0.5399007166
+UniRef50_UPI00047066F3: hypothetical protein|unclassified	0.5399007166
+UniRef50_F3CKD8: Peptide ABC transporter permease (Fragment)	0.5398546001
+UniRef50_F3CKD8: Peptide ABC transporter permease (Fragment)|unclassified	0.5398546001
+UniRef50_X1DRG2: Marine sediment metagenome DNA, contig: S01H4_S20972 (Fragment)	0.5398448295
+UniRef50_X1DRG2: Marine sediment metagenome DNA, contig: S01H4_S20972 (Fragment)|unclassified	0.5398448295
+UniRef50_S7S4W9	0.5398440744
+UniRef50_S7S4W9|unclassified	0.5398440744
+UniRef50_U2CNX9	0.5398306299
+UniRef50_U2CNX9|unclassified	0.5398306299
+UniRef50_N5SB54	0.5398050359
+UniRef50_N5SB54|unclassified	0.5398050359
+UniRef50_A8EWJ4: Dihydroxy-acid dehydratase	0.5397962764
+UniRef50_A8EWJ4: Dihydroxy-acid dehydratase|unclassified	0.5397962764
+UniRef50_UPI00024921D7: DNA topoisomerase IV subunit A, partial	0.5397686735
+UniRef50_UPI00024921D7: DNA topoisomerase IV subunit A, partial|unclassified	0.5397686735
+UniRef50_V1KC64: Putative transporter	0.5397656960
+UniRef50_V1KC64: Putative transporter|unclassified	0.5397656960
+UniRef50_UPI0004692B90: hypothetical protein, partial	0.5397496459
+UniRef50_UPI0004692B90: hypothetical protein, partial|unclassified	0.5397496459
+UniRef50_UPI0004730E10: 50S ribosomal protein L22, partial	0.5396995415
+UniRef50_UPI0004730E10: 50S ribosomal protein L22, partial|unclassified	0.5396995415
+UniRef50_B6IV59: Ribosomal RNA small subunit methyltransferase G	0.5396440036
+UniRef50_B6IV59: Ribosomal RNA small subunit methyltransferase G|unclassified	0.5396440036
+UniRef50_G4C9W2: NAD-binding domain 4	0.5396103594
+UniRef50_G4C9W2: NAD-binding domain 4|unclassified	0.5396103594
+UniRef50_Q9I6V7: Chemotaxis protein methyltransferase 2	0.5396022504
+UniRef50_Q9I6V7: Chemotaxis protein methyltransferase 2|unclassified	0.5396022504
+UniRef50_UPI0003B431A9: MerR family transcriptional regulator	0.5395830285
+UniRef50_UPI0003B431A9: MerR family transcriptional regulator|unclassified	0.5395830285
+UniRef50_UPI0003B4F411: ABC transporter ATP-binding protein, partial	0.5395804014
+UniRef50_UPI0003B4F411: ABC transporter ATP-binding protein, partial|unclassified	0.5395804014
+UniRef50_D7BZV1	0.5395427896
+UniRef50_D7BZV1|unclassified	0.5395427896
+UniRef50_P30793: GTP cyclohydrolase 1	0.5394202696
+UniRef50_P30793: GTP cyclohydrolase 1|unclassified	0.5394202696
+UniRef50_V1X012: Prophage protein	0.5393473316
+UniRef50_V1X012: Prophage protein|unclassified	0.5393473316
+UniRef50_UPI00029CBAAC: methylmalonate-semialdehyde dehydrogenase (acylating), partial	0.5393261053
+UniRef50_UPI00029CBAAC: methylmalonate-semialdehyde dehydrogenase (acylating), partial|unclassified	0.5393261053
+UniRef50_UPI00036D6E52: hypothetical protein	0.5392785487
+UniRef50_UPI00036D6E52: hypothetical protein|unclassified	0.5392785487
+UniRef50_A4X0E7: Transport system permease protein	0.5391807032
+UniRef50_A4X0E7: Transport system permease protein|unclassified	0.5391807032
+UniRef50_X8AQ09: Putative linear gramicidin synthetase subunit B	0.5391536006
+UniRef50_X8AQ09: Putative linear gramicidin synthetase subunit B|unclassified	0.5391536006
+UniRef50_A5VZK6: UPF0225 protein Pput_1155	0.5391317605
+UniRef50_A5VZK6: UPF0225 protein Pput_1155|unclassified	0.5391317605
+UniRef50_K2I608: Flp pilus assembly protein, pilin Flp	0.5389940027
+UniRef50_K2I608: Flp pilus assembly protein, pilin Flp|unclassified	0.5389940027
+UniRef50_J1KFX9	0.5389691738
+UniRef50_J1KFX9|unclassified	0.5389691738
+UniRef50_A8WE57: HemN (Fragment)	0.5389671205
+UniRef50_A8WE57: HemN (Fragment)|unclassified	0.5389671205
+UniRef50_F3HJV8	0.5388797176
+UniRef50_F3HJV8|unclassified	0.5388797176
+UniRef50_UPI0003F4C531: membrane protein	0.5388767823
+UniRef50_UPI0003F4C531: membrane protein|unclassified	0.5388767823
+UniRef50_UPI00037E447D: hypothetical protein	0.5387863150
+UniRef50_UPI00037E447D: hypothetical protein|unclassified	0.5387863150
+UniRef50_G1QD74	0.5385641966
+UniRef50_G1QD74|unclassified	0.5385641966
+UniRef50_D4IEB2	0.5385240857
+UniRef50_D4IEB2|unclassified	0.5385240857
+UniRef50_UPI0002196350: DNA polymerase III, beta subunit	0.5383994947
+UniRef50_UPI0002196350: DNA polymerase III, beta subunit|unclassified	0.5383994947
+UniRef50_UPI0003691E86: hypothetical protein	0.5383731499
+UniRef50_UPI0003691E86: hypothetical protein|unclassified	0.5383731499
+UniRef50_T5MRP1	0.5383560746
+UniRef50_T5MRP1|unclassified	0.5383560746
+UniRef50_I9L0K0	0.5382756143
+UniRef50_I9L0K0|unclassified	0.5382756143
+UniRef50_UPI00034D1E75: membrane protein	0.5382754169
+UniRef50_UPI00034D1E75: membrane protein|unclassified	0.5382754169
+UniRef50_UPI000289A6DA: transposase	0.5382732852
+UniRef50_UPI000289A6DA: transposase|unclassified	0.5382732852
+UniRef50_F9PRQ2	0.5382585764
+UniRef50_F9PRQ2|unclassified	0.5382585764
+UniRef50_A0A059LGP9	0.5382131324
+UniRef50_A0A059LGP9|unclassified	0.5382131324
+UniRef50_UPI0002C657BB	0.5382131324
+UniRef50_UPI0002C657BB|unclassified	0.5382131324
+UniRef50_W1MGG5: Peptigoglycan-binding protein LysM	0.5382131324
+UniRef50_W1MGG5: Peptigoglycan-binding protein LysM|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.5382131324
+UniRef50_R5UM02	0.5382025296
+UniRef50_R5UM02|unclassified	0.5382025296
+UniRef50_UPI0003B4201A: transcriptional regulator	0.5381984035
+UniRef50_UPI0003B4201A: transcriptional regulator|unclassified	0.5381984035
+UniRef50_I7GY06: Gyrase subunit A	0.5381642666
+UniRef50_I7GY06: Gyrase subunit A|unclassified	0.5381642666
+UniRef50_T0SY99: ABC transporter ATP binding protein	0.5380747722
+UniRef50_T0SY99: ABC transporter ATP binding protein|unclassified	0.5380747722
+UniRef50_G7FVR9	0.5380478356
+UniRef50_G7FVR9|unclassified	0.5380478356
+UniRef50_Q2W7P1	0.5380282133
+UniRef50_Q2W7P1|unclassified	0.5380282133
+UniRef50_G5S6H6: Ferric hydroxamate ABC transporter FhuD	0.5379626858
+UniRef50_G5S6H6: Ferric hydroxamate ABC transporter FhuD|unclassified	0.5379626858
+UniRef50_Q8RM03: Acetone carboxylase alpha subunit	0.5379236148
+UniRef50_Q8RM03: Acetone carboxylase alpha subunit|g__Helicobacter.s__Helicobacter_pylori	0.5379236148
+UniRef50_L0HVY7: Type III secretion outermembrane negative regulator of secretion (TyeA)	0.5378560288
+UniRef50_L0HVY7: Type III secretion outermembrane negative regulator of secretion (TyeA)|unclassified	0.5378560288
+UniRef50_UPI000415ABAC: GTP-binding protein	0.5378139486
+UniRef50_UPI000415ABAC: GTP-binding protein|unclassified	0.5378139486
+UniRef50_UPI00028A0BB5: iron ABC transporter permease	0.5377669484
+UniRef50_UPI00028A0BB5: iron ABC transporter permease|unclassified	0.5377669484
+UniRef50_UPI0003663EDB: hypothetical protein	0.5377570178
+UniRef50_UPI0003663EDB: hypothetical protein|unclassified	0.5377570178
+UniRef50_UPI00036A8CA0: hypothetical protein	0.5377489740
+UniRef50_UPI00036A8CA0: hypothetical protein|unclassified	0.5377489740
+UniRef50_UPI0003503C7B: PREDICTED: wiskott-Aldrich syndrome protein homolog	0.5377419300
+UniRef50_UPI0003503C7B: PREDICTED: wiskott-Aldrich syndrome protein homolog|unclassified	0.5377419300
+UniRef50_UPI00037B7B2D: hypothetical protein	0.5377028118
+UniRef50_UPI00037B7B2D: hypothetical protein|unclassified	0.5377028118
+UniRef50_F9EFT6	0.5377010435
+UniRef50_F9EFT6|unclassified	0.5377010435
+UniRef50_Q5Z5L8	0.5375634840
+UniRef50_Q5Z5L8|unclassified	0.5375634840
+UniRef50_H1SIG0: ABC transporter-like protein (Fragment)	0.5374581989
+UniRef50_H1SIG0: ABC transporter-like protein (Fragment)|unclassified	0.5374581989
+UniRef50_C2SRS8	0.5374351812
+UniRef50_C2SRS8|unclassified	0.5374351812
+UniRef50_UPI0004675473: hypothetical protein	0.5374220924
+UniRef50_UPI0004675473: hypothetical protein|unclassified	0.5374220924
+UniRef50_A0A024HLN9	0.5373685219
+UniRef50_A0A024HLN9|unclassified	0.5373685219
+UniRef50_X0X779: Marine sediment metagenome DNA, contig: S01H1_S33178 (Fragment)	0.5373009083
+UniRef50_X0X779: Marine sediment metagenome DNA, contig: S01H1_S33178 (Fragment)|unclassified	0.5373009083
+UniRef50_J9P3C0	0.5372984648
+UniRef50_J9P3C0|unclassified	0.5372984648
+UniRef50_W4T0G5	0.5372511203
+UniRef50_W4T0G5|unclassified	0.5372511203
+UniRef50_K8C0L2: Molybdopterin biosynthesis protein MoeB	0.5372442082
+UniRef50_K8C0L2: Molybdopterin biosynthesis protein MoeB|unclassified	0.5372442082
+UniRef50_UPI0002DF8C9A: hypothetical protein	0.5372049540
+UniRef50_UPI0002DF8C9A: hypothetical protein|unclassified	0.5372049540
+UniRef50_UPI00047A0BD4: hypothetical protein	0.5371661277
+UniRef50_UPI00047A0BD4: hypothetical protein|unclassified	0.5371661277
+UniRef50_UPI00035F2BDC: hypothetical protein	0.5371458310
+UniRef50_UPI00035F2BDC: hypothetical protein|unclassified	0.5371458310
+UniRef50_D2ZXN0	0.5370443705
+UniRef50_D2ZXN0|unclassified	0.5370443705
+UniRef50_D4DV01	0.5369393108
+UniRef50_D4DV01|unclassified	0.5369393108
+UniRef50_UPI00036D0D55: hypothetical protein, partial	0.5369039395
+UniRef50_UPI00036D0D55: hypothetical protein, partial|unclassified	0.5369039395
+UniRef50_UPI0001FFDC47: 5''''-nucleotidase ;exopolyphosphatase ;3''''-nucleotidase	0.5368495704
+UniRef50_UPI0001FFDC47: 5''''-nucleotidase ;exopolyphosphatase ;3''''-nucleotidase|unclassified	0.5368495704
+UniRef50_I2NDA2: PF06738 domain protein	0.5368372661
+UniRef50_I2NDA2: PF06738 domain protein|unclassified	0.5368372661
+UniRef50_UPI0003B39552: UDP-N-acetylglucosamine 1-carboxyvinyltransferase, partial	0.5367904190
+UniRef50_UPI0003B39552: UDP-N-acetylglucosamine 1-carboxyvinyltransferase, partial|unclassified	0.5367904190
+UniRef50_F2SK60: Nuclear distribution protein NudE	0.5367686527
+UniRef50_F2SK60: Nuclear distribution protein NudE|unclassified	0.5367686527
+UniRef50_W7IV82	0.5367568395
+UniRef50_W7IV82|unclassified	0.5367568395
+UniRef50_I8F2N3	0.5366631201
+UniRef50_I8F2N3|unclassified	0.5366631201
+UniRef50_F6ZM80	0.5366470712
+UniRef50_F6ZM80|unclassified	0.5366470712
+UniRef50_UPI000373A4CD: hypothetical protein	0.5366094832
+UniRef50_UPI000373A4CD: hypothetical protein|unclassified	0.5366094832
+UniRef50_G0DRH6	0.5365958423
+UniRef50_G0DRH6|unclassified	0.5365958423
+UniRef50_R2QE79	0.5364038013
+UniRef50_R2QE79|unclassified	0.5364038013
+UniRef50_UPI000468C176: hypothetical protein	0.5364016433
+UniRef50_UPI000468C176: hypothetical protein|unclassified	0.5364016433
+UniRef50_UPI00046D96F8: PREDICTED: leucine-rich repeat extensin-like protein 3	0.5362829880
+UniRef50_UPI00046D96F8: PREDICTED: leucine-rich repeat extensin-like protein 3|unclassified	0.5362829880
+UniRef50_A4WYS1	0.5362555727
+UniRef50_A4WYS1|unclassified	0.5362555727
+UniRef50_UPI0002630923: CarD family transcriptional regulator	0.5362001207
+UniRef50_UPI0002630923: CarD family transcriptional regulator|unclassified	0.5362001207
+UniRef50_UPI000443B169: PREDICTED: vegetative cell wall protein gp1-like	0.5361484107
+UniRef50_UPI000443B169: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.5361484107
+UniRef50_F8E027: Phage primase	0.5359056806
+UniRef50_F8E027: Phage primase|g__Propionibacterium.s__Propionibacterium_acnes	0.5359056806
+UniRef50_K9AVJ5	0.5359056806
+UniRef50_K9AVJ5|unclassified	0.5359056806
+UniRef50_UPI00016A4FB9: GABA permease	0.5359056806
+UniRef50_UPI00016A4FB9: GABA permease|unclassified	0.5359056806
+UniRef50_UPI000395618F	0.5359056806
+UniRef50_UPI000395618F|unclassified	0.5359056806
+UniRef50_A0A012AS24	0.5358886133
+UniRef50_A0A012AS24|unclassified	0.5358886133
+UniRef50_G5S3U6	0.5358447529
+UniRef50_G5S3U6|unclassified	0.5358447529
+UniRef50_UPI000399E7E5: hypothetical protein	0.5358363376
+UniRef50_UPI000399E7E5: hypothetical protein|unclassified	0.5358363376
+UniRef50_UPI00036A12BA: transcriptional regulator	0.5357508075
+UniRef50_UPI00036A12BA: transcriptional regulator|unclassified	0.5357508075
+UniRef50_Q10LR7	0.5357354521
+UniRef50_Q10LR7|unclassified	0.5357354521
+UniRef50_UPI0004760C5F: zinc chelation protein SecC	0.5357299046
+UniRef50_UPI0004760C5F: zinc chelation protein SecC|unclassified	0.5357299046
+UniRef50_W8V5U0	0.5357273557
+UniRef50_W8V5U0|unclassified	0.5357273557
+UniRef50_V1HY63: Type IV pilin biogenesis protein	0.5355807812
+UniRef50_V1HY63: Type IV pilin biogenesis protein|unclassified	0.5355807812
+UniRef50_UPI00036A4575: hypothetical protein	0.5355694382
+UniRef50_UPI00036A4575: hypothetical protein|unclassified	0.5355694382
+UniRef50_Q98D52: Peptide deformylase	0.5354760557
+UniRef50_Q98D52: Peptide deformylase|unclassified	0.5354760557
+UniRef50_X5M7K5: UPF0260 protein BM1374165_01193/PRJBM_01113	0.5353451841
+UniRef50_X5M7K5: UPF0260 protein BM1374165_01193/PRJBM_01113|unclassified	0.5353451841
+UniRef50_I5BFR5: Biopolymer transport protein TolQ	0.5353022530
+UniRef50_I5BFR5: Biopolymer transport protein TolQ|unclassified	0.5353022530
+UniRef50_B5F9P6: Isopentenyl-diphosphate Delta-isomerase	0.5352710941
+UniRef50_B5F9P6: Isopentenyl-diphosphate Delta-isomerase|unclassified	0.5352710941
+UniRef50_Z5X4E6: Isocitrate dehydrogenase	0.5352235107
+UniRef50_Z5X4E6: Isocitrate dehydrogenase|unclassified	0.5352235107
+UniRef50_UPI00030D2211: hypothetical protein	0.5351586044
+UniRef50_UPI00030D2211: hypothetical protein|unclassified	0.5351586044
+UniRef50_UPI0003A26BF2: twin arginine-targeting protein translocase	0.5351076485
+UniRef50_UPI0003A26BF2: twin arginine-targeting protein translocase|unclassified	0.5351076485
+UniRef50_E6QG66	0.5350479998
+UniRef50_E6QG66|unclassified	0.5350479998
+UniRef50_B9KCQ6: Polyphosphate kinase	0.5350454789
+UniRef50_B9KCQ6: Polyphosphate kinase|g__Helicobacter.s__Helicobacter_pylori	0.5350454789
+UniRef50_D6XQD7: Outer membrane protein BabA	0.5350454789
+UniRef50_D6XQD7: Outer membrane protein BabA|g__Helicobacter.s__Helicobacter_pylori	0.5350454789
+UniRef50_A0P1N9: Urease accessory protein UreJ	0.5349810642
+UniRef50_A0P1N9: Urease accessory protein UreJ|unclassified	0.5349810642
+UniRef50_F9Z1G0: DNA primase	0.5347593583
+UniRef50_F9Z1G0: DNA primase|g__Propionibacterium.s__Propionibacterium_acnes	0.5347593583
+UniRef50_UPI0003749815: hypothetical protein, partial	0.5347225100
+UniRef50_UPI0003749815: hypothetical protein, partial|unclassified	0.5347225100
+UniRef50_Q2NU28	0.5347211654
+UniRef50_Q2NU28|unclassified	0.5347211654
+UniRef50_X0ZF03: Marine sediment metagenome DNA, contig: S01H4_C02785 (Fragment)	0.5347067644
+UniRef50_X0ZF03: Marine sediment metagenome DNA, contig: S01H4_C02785 (Fragment)|unclassified	0.5347067644
+UniRef50_C9D364: Integrase	0.5347010315
+UniRef50_C9D364: Integrase|unclassified	0.5347010315
+UniRef50_UPI0004099AF2: hypothetical protein	0.5346944980
+UniRef50_UPI0004099AF2: hypothetical protein|unclassified	0.5346944980
+UniRef50_UPI00036C9594: hypothetical protein	0.5345889308
+UniRef50_UPI00036C9594: hypothetical protein|unclassified	0.5345889308
+UniRef50_D8ULE3	0.5344734085
+UniRef50_D8ULE3|unclassified	0.5344734085
+UniRef50_B8C7V4	0.5344580467
+UniRef50_B8C7V4|unclassified	0.5344580467
+UniRef50_UPI00020D9E79: metallo-beta-lactamase family protein	0.5344545395
+UniRef50_UPI00020D9E79: metallo-beta-lactamase family protein|unclassified	0.5344545395
+UniRef50_UPI0004007557: sugar ABC transporter ATPase	0.5343901775
+UniRef50_UPI0004007557: sugar ABC transporter ATPase|unclassified	0.5343901775
+UniRef50_Q75GA7	0.5343844210
+UniRef50_Q75GA7|unclassified	0.5343844210
+UniRef50_UPI000477F408: hypothetical protein	0.5343606154
+UniRef50_UPI000477F408: hypothetical protein|unclassified	0.5343606154
+UniRef50_UPI000471C806: molybdenum cofactor biosynthesis protein MoaE	0.5343412124
+UniRef50_UPI000471C806: molybdenum cofactor biosynthesis protein MoaE|unclassified	0.5343412124
+UniRef50_UPI00029B279A: Multidrug resistance protein B	0.5343255527
+UniRef50_UPI00029B279A: Multidrug resistance protein B|unclassified	0.5343255527
+UniRef50_UPI0002000B64: antigen penicillin-binding protein, partial	0.5342921333
+UniRef50_UPI0002000B64: antigen penicillin-binding protein, partial|unclassified	0.5342921333
+UniRef50_UPI00037AD687: hypothetical protein	0.5342090000
+UniRef50_UPI00037AD687: hypothetical protein|unclassified	0.5342090000
+UniRef50_G7D2H3	0.5341909258
+UniRef50_G7D2H3|unclassified	0.5341909258
+UniRef50_A4CNX1	0.5341209789
+UniRef50_A4CNX1|unclassified	0.5341209789
+UniRef50_S7SWW5: Stage V sporulation protein R	0.5340981322
+UniRef50_S7SWW5: Stage V sporulation protein R|unclassified	0.5340981322
+UniRef50_UPI00035E4867: hypothetical protein	0.5340534021
+UniRef50_UPI00035E4867: hypothetical protein|unclassified	0.5340534021
+UniRef50_UPI000262A813: sulfate ABC transporter permease	0.5339930810
+UniRef50_UPI000262A813: sulfate ABC transporter permease|unclassified	0.5339930810
+UniRef50_F5M1I5: HK97 family phage major capsid protein	0.5339262873
+UniRef50_F5M1I5: HK97 family phage major capsid protein|unclassified	0.5339262873
+UniRef50_A6QBN8: ATP-dependent zinc metalloprotease FtsH	0.5339028297
+UniRef50_A6QBN8: ATP-dependent zinc metalloprotease FtsH|g__Helicobacter.s__Helicobacter_pylori	0.5339028297
+UniRef50_K0HYU8: M13 family metallopeptidase	0.5339028297
+UniRef50_K0HYU8: M13 family metallopeptidase|g__Propionibacterium.s__Propionibacterium_acnes	0.5339028297
+UniRef50_U6JZY5	0.5339028297
+UniRef50_U6JZY5|unclassified	0.5339028297
+UniRef50_B5F295: NAD kinase	0.5338677587
+UniRef50_B5F295: NAD kinase|unclassified	0.5338677587
+UniRef50_UPI00037A8583: hypothetical protein, partial	0.5337191899
+UniRef50_UPI00037A8583: hypothetical protein, partial|unclassified	0.5337191899
+UniRef50_F0Y0Y2	0.5335022375
+UniRef50_F0Y0Y2|unclassified	0.5335022375
+UniRef50_Q94CE5: Gamma-aminobutyrate transaminase POP2, mitochondrial	0.5334256351
+UniRef50_Q94CE5: Gamma-aminobutyrate transaminase POP2, mitochondrial|unclassified	0.5334256351
+UniRef50_G7ENS1	0.5334109634
+UniRef50_G7ENS1|unclassified	0.5334109634
+UniRef50_UPI000375E9A2: MULTISPECIES: hypothetical protein	0.5334104808
+UniRef50_UPI000375E9A2: MULTISPECIES: hypothetical protein|unclassified	0.5334104808
+UniRef50_I3U766: CsbD-like protein	0.5333933686
+UniRef50_I3U766: CsbD-like protein|unclassified	0.5333933686
+UniRef50_A5WH07: UPF0313 protein PsycPRwf_2008	0.5333333333
+UniRef50_A5WH07: UPF0313 protein PsycPRwf_2008|g__Acinetobacter.s__Acinetobacter_baumannii	0.5333333333
+UniRef50_UPI0004292FB7: hypothetical protein	0.5332508916
+UniRef50_UPI0004292FB7: hypothetical protein|unclassified	0.5332508916
+UniRef50_UPI000371DDBB: hypothetical protein	0.5331713400
+UniRef50_UPI000371DDBB: hypothetical protein|unclassified	0.5331713400
+UniRef50_A8NK51	0.5330816268
+UniRef50_A8NK51|unclassified	0.5330816268
+UniRef50_A5WGU9: ABC transporter related protein	0.5330490405
+UniRef50_A5WGU9: ABC transporter related protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.5330490405
+UniRef50_N6U611	0.5330408644
+UniRef50_N6U611|unclassified	0.5330408644
+UniRef50_B8GMP7: DoxX family protein	0.5329876329
+UniRef50_B8GMP7: DoxX family protein|unclassified	0.5329876329
+UniRef50_F4DVW4	0.5329672139
+UniRef50_F4DVW4|unclassified	0.5329672139
+UniRef50_A1B497: NADH-quinone oxidoreductase subunit B	0.5328031313
+UniRef50_A1B497: NADH-quinone oxidoreductase subunit B|unclassified	0.5328031313
+UniRef50_M3I3R8	0.5327922713
+UniRef50_M3I3R8|unclassified	0.5327922713
+UniRef50_UPI00046A2ACC: hypothetical protein	0.5327669468
+UniRef50_UPI00046A2ACC: hypothetical protein|unclassified	0.5327669468
+UniRef50_UPI000406F970: hypothetical protein	0.5326086698
+UniRef50_UPI000406F970: hypothetical protein|unclassified	0.5326086698
+UniRef50_UPI0004710ABE: GntR family transcriptional regulator	0.5326035265
+UniRef50_UPI0004710ABE: GntR family transcriptional regulator|unclassified	0.5326035265
+UniRef50_A8I2A5	0.5325728743
+UniRef50_A8I2A5|unclassified	0.5325728743
+UniRef50_Q93Z70: Probable N-acetyl-gamma-glutamyl-phosphate reductase, chloroplastic	0.5325413038
+UniRef50_Q93Z70: Probable N-acetyl-gamma-glutamyl-phosphate reductase, chloroplastic|unclassified	0.5325413038
+UniRef50_UPI0001FFE6FF: oxidoreductase	0.5325351290
+UniRef50_UPI0001FFE6FF: oxidoreductase|unclassified	0.5325351290
+UniRef50_V0F8Q4	0.5324446169
+UniRef50_V0F8Q4|unclassified	0.5324446169
+UniRef50_A0A020BC98	0.5323908369
+UniRef50_A0A020BC98|unclassified	0.5323908369
+UniRef50_X2LVC0	0.5323711001
+UniRef50_X2LVC0|unclassified	0.5323711001
+UniRef50_R1DJF2	0.5323532667
+UniRef50_R1DJF2|unclassified	0.5323532667
+UniRef50_UPI0003B6ABA5: sugar ABC transporter ATPase, partial	0.5323501229
+UniRef50_UPI0003B6ABA5: sugar ABC transporter ATPase, partial|unclassified	0.5323501229
+UniRef50_UPI0004627F3B: hypothetical protein	0.5323377986
+UniRef50_UPI0004627F3B: hypothetical protein|unclassified	0.5323377986
+UniRef50_Q7R788	0.5321979776
+UniRef50_Q7R788|unclassified	0.5321979776
+UniRef50_S0YC04	0.5321847249
+UniRef50_S0YC04|unclassified	0.5321847249
+UniRef50_UPI000464235A: hypothetical protein	0.5321506125
+UniRef50_UPI000464235A: hypothetical protein|unclassified	0.5321506125
+UniRef50_C8RWF8	0.5321313841
+UniRef50_C8RWF8|unclassified	0.5321313841
+UniRef50_UPI00037640AA: hypothetical protein	0.5320819692
+UniRef50_UPI00037640AA: hypothetical protein|unclassified	0.5320819692
+UniRef50_UPI000470C479: hypothetical protein	0.5320806217
+UniRef50_UPI000470C479: hypothetical protein|unclassified	0.5320806217
+UniRef50_F7TA79: Major facilitator superfamily protein 38 (Fragment)	0.5320636565
+UniRef50_F7TA79: Major facilitator superfamily protein 38 (Fragment)|unclassified	0.5320636565
+UniRef50_UPI000362D011: hypothetical protein	0.5320565209
+UniRef50_UPI000362D011: hypothetical protein|unclassified	0.5320565209
+UniRef50_B8FTK5: Phosphopantetheine adenylyltransferase	0.5320452792
+UniRef50_B8FTK5: Phosphopantetheine adenylyltransferase|unclassified	0.5320452792
+UniRef50_K4AEP8	0.5319857399
+UniRef50_K4AEP8|unclassified	0.5319857399
+UniRef50_F4MZ41	0.5319452136
+UniRef50_F4MZ41|unclassified	0.5319452136
+UniRef50_I1QLZ0	0.5319314065
+UniRef50_I1QLZ0|unclassified	0.5319314065
+UniRef50_T0KG32	0.5319157289
+UniRef50_T0KG32|unclassified	0.5319157289
+UniRef50_K7SIX4: PTS system, mannitol-specific IIC component	0.5319148936
+UniRef50_K7SIX4: PTS system, mannitol-specific IIC component|g__Propionibacterium.s__Propionibacterium_acnes	0.5319148936
+UniRef50_R6GZZ1: Possible dehydrogenase	0.5317899849
+UniRef50_R6GZZ1: Possible dehydrogenase|unclassified	0.5317899849
+UniRef50_P52308: DNA primase	0.5316814696
+UniRef50_P52308: DNA primase|unclassified	0.5316814696
+UniRef50_C0HEA5	0.5316759616
+UniRef50_C0HEA5|unclassified	0.5316759616
+UniRef50_Q0WLU6: NADH dehydrogenase subunit 4	0.5316411090
+UniRef50_Q0WLU6: NADH dehydrogenase subunit 4|unclassified	0.5316411090
+UniRef50_A0A011QX10: Periplasmic [NiFeSe] hydrogenase small subunit	0.5315954922
+UniRef50_A0A011QX10: Periplasmic [NiFeSe] hydrogenase small subunit|unclassified	0.5315954922
+UniRef50_Z5JZC3	0.5315621053
+UniRef50_Z5JZC3|unclassified	0.5315621053
+UniRef50_C5Y6N1	0.5315549757
+UniRef50_C5Y6N1|unclassified	0.5315549757
+UniRef50_B9KM15	0.5315363348
+UniRef50_B9KM15|unclassified	0.5315363348
+UniRef50_Q68VN1: Oxygen-dependent coproporphyrinogen-III oxidase	0.5315329691
+UniRef50_Q68VN1: Oxygen-dependent coproporphyrinogen-III oxidase|unclassified	0.5315329691
+UniRef50_UPI000366511F: hypothetical protein	0.5315194497
+UniRef50_UPI000366511F: hypothetical protein|unclassified	0.5315194497
+UniRef50_W4T0R8	0.5314030824
+UniRef50_W4T0R8|unclassified	0.5314030824
+UniRef50_UPI000443C2DA: PREDICTED: membrane-associated progesterone receptor component 2	0.5313496281
+UniRef50_UPI000443C2DA: PREDICTED: membrane-associated progesterone receptor component 2|unclassified	0.5313496281
+UniRef50_UPI00047A0456: hypothetical protein, partial	0.5313484078
+UniRef50_UPI00047A0456: hypothetical protein, partial|unclassified	0.5313484078
+UniRef50_UPI0003B6FD13: ATP-dependent protease	0.5312853975
+UniRef50_UPI0003B6FD13: ATP-dependent protease|unclassified	0.5312853975
+UniRef50_UPI00035EEB6B: hypothetical protein, partial	0.5312230242
+UniRef50_UPI00035EEB6B: hypothetical protein, partial|unclassified	0.5312230242
+UniRef50_UPI000369953F: resolvase	0.5311775250
+UniRef50_UPI000369953F: resolvase|unclassified	0.5311775250
+UniRef50_N6UTB5	0.5311498057
+UniRef50_N6UTB5|unclassified	0.5311498057
+UniRef50_UPI000382DE75: heat shock protein IbpA, partial	0.5311023111
+UniRef50_UPI000382DE75: heat shock protein IbpA, partial|unclassified	0.5311023111
+UniRef50_A6Q6L7: Transketolase	0.5310674456
+UniRef50_A6Q6L7: Transketolase|g__Helicobacter.s__Helicobacter_pylori	0.5310674456
+UniRef50_UPI00047D621F: cytochrome C	0.5310503953
+UniRef50_UPI00047D621F: cytochrome C|unclassified	0.5310503953
+UniRef50_W7W930: Neu5Ac permease	0.5308611965
+UniRef50_W7W930: Neu5Ac permease|unclassified	0.5308611965
+UniRef50_UPI00036B883D: hypothetical protein	0.5308285257
+UniRef50_UPI00036B883D: hypothetical protein|unclassified	0.5308285257
+UniRef50_UPI00047C2D15: transporter	0.5308159506
+UniRef50_UPI00047C2D15: transporter|unclassified	0.5308159506
+UniRef50_UPI000466FB0B: replication A protein, partial	0.5308062856
+UniRef50_UPI000466FB0B: replication A protein, partial|unclassified	0.5308062856
+UniRef50_UPI00047D5506: hypothetical protein	0.5307966217
+UniRef50_UPI00047D5506: hypothetical protein|unclassified	0.5307966217
+UniRef50_W1GWA8: Alkylated DNA repair protein AlkB	0.5307855626
+UniRef50_W1GWA8: Alkylated DNA repair protein AlkB|unclassified	0.5307855626
+UniRef50_UPI000464DC28: hypothetical protein	0.5307797085
+UniRef50_UPI000464DC28: hypothetical protein|unclassified	0.5307797085
+UniRef50_I1G5J2	0.5307305084
+UniRef50_I1G5J2|unclassified	0.5307305084
+UniRef50_Q8D1Y6: Nucleoside diphosphate kinase	0.5306463232
+UniRef50_Q8D1Y6: Nucleoside diphosphate kinase|unclassified	0.5306463232
+UniRef50_K8PGA3: TIGR00370 family protein	0.5306152569
+UniRef50_K8PGA3: TIGR00370 family protein|unclassified	0.5306152569
+UniRef50_S6E1L7: Green-like rubisco-1,5-bisphosphate carboxylase/oxygenease form I (Fragment)	0.5305748367
+UniRef50_S6E1L7: Green-like rubisco-1,5-bisphosphate carboxylase/oxygenease form I (Fragment)|unclassified	0.5305748367
+UniRef50_K5YBM6	0.5305474100
+UniRef50_K5YBM6|unclassified	0.5305474100
+UniRef50_W1F0F0	0.5305437972
+UniRef50_W1F0F0|unclassified	0.5305437972
+UniRef50_H7FLE4	0.5305161567
+UniRef50_H7FLE4|unclassified	0.5305161567
+UniRef50_W5Y8E7	0.5304601124
+UniRef50_W5Y8E7|unclassified	0.5304601124
+UniRef50_UPI000255BB14: major facilitator transporter	0.5304458677
+UniRef50_UPI000255BB14: major facilitator transporter|unclassified	0.5304458677
+UniRef50_Q39242: Thioredoxin reductase 2	0.5304069427
+UniRef50_Q39242: Thioredoxin reductase 2|unclassified	0.5304069427
+UniRef50_Q8E0W9: Prophage LambdaSa1, N-acetylmuramoyl-L-alanine amidase, family 4	0.5303753798
+UniRef50_Q8E0W9: Prophage LambdaSa1, N-acetylmuramoyl-L-alanine amidase, family 4|g__Streptococcus.s__Streptococcus_agalactiae	0.5303753798
+UniRef50_V8AMW2	0.5303136096
+UniRef50_V8AMW2|unclassified	0.5303136096
+UniRef50_UPI0004720DD8: hypothetical protein	0.5301449471
+UniRef50_UPI0004720DD8: hypothetical protein|unclassified	0.5301449471
+UniRef50_W6VNR8	0.5300342525
+UniRef50_W6VNR8|unclassified	0.5300342525
+UniRef50_UPI000477DEB8: hypothetical protein	0.5299962211
+UniRef50_UPI000477DEB8: hypothetical protein|unclassified	0.5299962211
+UniRef50_UPI000371787B: hypothetical protein	0.5299720781
+UniRef50_UPI000371787B: hypothetical protein|unclassified	0.5299720781
+UniRef50_D3G267	0.5299606365
+UniRef50_D3G267|unclassified	0.5299606365
+UniRef50_C1DI68: UPF0235 protein Avin_03050	0.5298898314
+UniRef50_C1DI68: UPF0235 protein Avin_03050|unclassified	0.5298898314
+UniRef50_UPI00036DB2E6: hypothetical protein	0.5298162409
+UniRef50_UPI00036DB2E6: hypothetical protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	0.2713704206
+UniRef50_UPI00036DB2E6: hypothetical protein|unclassified	0.2584458202
+UniRef50_I1YHV8: Carbonic anhydrase, family 3	0.5296962643
+UniRef50_I1YHV8: Carbonic anhydrase, family 3|unclassified	0.5296962643
+UniRef50_D6A1D4	0.5296833544
+UniRef50_D6A1D4|unclassified	0.5296833544
+UniRef50_C8L5Z1	0.5296820718
+UniRef50_C8L5Z1|unclassified	0.5296820718
+UniRef50_D7FH76	0.5296610169
+UniRef50_D7FH76|unclassified	0.5296610169
+UniRef50_R7XVI3: DNA polymerase III subunit alpha	0.5296473285
+UniRef50_R7XVI3: DNA polymerase III subunit alpha|unclassified	0.5296473285
+UniRef50_F3KHH2: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA	0.5296308249
+UniRef50_F3KHH2: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA|unclassified	0.5296308249
+UniRef50_UPI0003777FC4: hypothetical protein, partial	0.5295696223
+UniRef50_UPI0003777FC4: hypothetical protein, partial|unclassified	0.5295696223
+UniRef50_Z7K3S7	0.5295462696
+UniRef50_Z7K3S7|unclassified	0.5295462696
+UniRef50_Q98GS3: Mll3198 protein	0.5295101679
+UniRef50_Q98GS3: Mll3198 protein|unclassified	0.5295101679
+UniRef50_UPI0003744102: hypothetical protein, partial	0.5294979240
+UniRef50_UPI0003744102: hypothetical protein, partial|unclassified	0.5294979240
+UniRef50_C5AJV2	0.5294920697
+UniRef50_C5AJV2|unclassified	0.5294920697
+UniRef50_C3Z466	0.5294651315
+UniRef50_C3Z466|unclassified	0.5294651315
+UniRef50_Q9JZD0	0.5293806247
+UniRef50_Q9JZD0|g__Neisseria.s__Neisseria_meningitidis	0.5293806247
+UniRef50_D5ARQ6: Lipoprotein, putative	0.5293741527
+UniRef50_D5ARQ6: Lipoprotein, putative|unclassified	0.5293741527
+UniRef50_P54919: Delta-aminolevulinic acid dehydratase	0.5293576217
+UniRef50_P54919: Delta-aminolevulinic acid dehydratase|unclassified	0.5293576217
+UniRef50_G9EEV4	0.5293309603
+UniRef50_G9EEV4|unclassified	0.5293309603
+UniRef50_B9JWD9	0.5293131158
+UniRef50_B9JWD9|unclassified	0.5293131158
+UniRef50_UPI000166006B: hypothetical protein	0.5293127603
+UniRef50_UPI000166006B: hypothetical protein|unclassified	0.5293127603
+UniRef50_UPI00036487AE: hypothetical protein	0.5292329738
+UniRef50_UPI00036487AE: hypothetical protein|unclassified	0.5292329738
+UniRef50_A8X388: Protein CBR-GRL-25	0.5291005291
+UniRef50_A8X388: Protein CBR-GRL-25|unclassified	0.5291005291
+UniRef50_X4QVT5: Antitoxin HicB	0.5290601476
+UniRef50_X4QVT5: Antitoxin HicB|unclassified	0.5290601476
+UniRef50_UPI0002E4DB1A: threonyl-tRNA synthetase	0.5290134253
+UniRef50_UPI0002E4DB1A: threonyl-tRNA synthetase|unclassified	0.5290134253
+UniRef50_F3PMN2	0.5289525155
+UniRef50_F3PMN2|unclassified	0.5289525155
+UniRef50_I7DPX0	0.5289200447
+UniRef50_I7DPX0|unclassified	0.5289200447
+UniRef50_UPI0004002975: hypothetical protein	0.5289197946
+UniRef50_UPI0004002975: hypothetical protein|unclassified	0.5289197946
+UniRef50_UPI000194CF8D: PREDICTED: pancreatic secretory granule membrane major glycoprotein GP2-like	0.5288788982
+UniRef50_UPI000194CF8D: PREDICTED: pancreatic secretory granule membrane major glycoprotein GP2-like|unclassified	0.5288788982
+UniRef50_T0V465: Transposase and inactivatedderivatives-likeprotein	0.5288210394
+UniRef50_T0V465: Transposase and inactivatedderivatives-likeprotein|unclassified	0.5288210394
+UniRef50_UPI00047C65E6: hypothetical protein	0.5287406757
+UniRef50_UPI00047C65E6: hypothetical protein|unclassified	0.5287406757
+UniRef50_I1EWN2	0.5287165864
+UniRef50_I1EWN2|unclassified	0.5287165864
+UniRef50_X3WWL6	0.5286404819
+UniRef50_X3WWL6|unclassified	0.5286404819
+UniRef50_UPI000470DBFA: fumarylacetoacetate hydrolase	0.5286392544
+UniRef50_UPI000470DBFA: fumarylacetoacetate hydrolase|unclassified	0.5286392544
+UniRef50_A9U7B2: Predicted protein (Fragment)	0.5286252285
+UniRef50_A9U7B2: Predicted protein (Fragment)|unclassified	0.5286252285
+UniRef50_A4EKM3	0.5285747075
+UniRef50_A4EKM3|unclassified	0.5285747075
+UniRef50_B8GWL9: Tyrosine--tRNA ligase	0.5285536468
+UniRef50_B8GWL9: Tyrosine--tRNA ligase|unclassified	0.5285536468
+UniRef50_A8A0A4: L-shaped tail fiber protein	0.5285412262
+UniRef50_A8A0A4: L-shaped tail fiber protein|g__Escherichia.s__Escherichia_coli	0.5285412262
+UniRef50_UPI00046849C9: ABC transporter ATP-binding protein	0.5284653158
+UniRef50_UPI00046849C9: ABC transporter ATP-binding protein|unclassified	0.5284653158
+UniRef50_UPI0003A13FED: pyruvate formate lyase-activating enzyme 1	0.5284185700
+UniRef50_UPI0003A13FED: pyruvate formate lyase-activating enzyme 1|unclassified	0.5284185700
+UniRef50_UPI000370D411: hypothetical protein, partial	0.5282766530
+UniRef50_UPI000370D411: hypothetical protein, partial|unclassified	0.5282766530
+UniRef50_O25396: Ferrous iron transport protein B	0.5282620180
+UniRef50_O25396: Ferrous iron transport protein B|g__Helicobacter.s__Helicobacter_pylori	0.5282620180
+UniRef50_UPI00036D4271: hypothetical protein	0.5282527199
+UniRef50_UPI00036D4271: hypothetical protein|unclassified	0.5282527199
+UniRef50_W6B888	0.5282166367
+UniRef50_W6B888|unclassified	0.5282166367
+UniRef50_K8AA01: YjbF outer membrane lipoprotein	0.5281971499
+UniRef50_K8AA01: YjbF outer membrane lipoprotein|unclassified	0.5281971499
+UniRef50_UPI0004730D89: hypothetical protein	0.5280238210
+UniRef50_UPI0004730D89: hypothetical protein|unclassified	0.5280238210
+UniRef50_UPI0003AE460B: PREDICTED: junctional sarcoplasmic reticulum protein 1, partial	0.5280199192
+UniRef50_UPI0003AE460B: PREDICTED: junctional sarcoplasmic reticulum protein 1, partial|unclassified	0.5280199192
+UniRef50_B7V5N6: ATP-dependent DNA helicase RecG	0.5279831045
+UniRef50_B7V5N6: ATP-dependent DNA helicase RecG|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.5279831045
+UniRef50_P37739: C4-dicarboxylate transport sensor protein DctS	0.5279831045
+UniRef50_P37739: C4-dicarboxylate transport sensor protein DctS|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.5279831045
+UniRef50_UPI0003736862: hypothetical protein	0.5279712533
+UniRef50_UPI0003736862: hypothetical protein|unclassified	0.5279712533
+UniRef50_R1CGP8	0.5279588130
+UniRef50_R1CGP8|unclassified	0.5279588130
+UniRef50_B5DSE4: GA28164	0.5278818080
+UniRef50_B5DSE4: GA28164|unclassified	0.5278818080
+UniRef50_UPI0003A7820E: transcriptional regulator	0.5278674358
+UniRef50_UPI0003A7820E: transcriptional regulator|unclassified	0.5278674358
+UniRef50_K0TJK1	0.5278108308
+UniRef50_K0TJK1|unclassified	0.5278108308
+UniRef50_A3PHJ2	0.5278103753
+UniRef50_A3PHJ2|unclassified	0.5278103753
+UniRef50_T0IDY3	0.5278064763
+UniRef50_T0IDY3|unclassified	0.5278064763
+UniRef50_Q04H19	0.5278017224
+UniRef50_Q04H19|unclassified	0.5278017224
+UniRef50_Q21YB9: NADH-quinone oxidoreductase subunit I	0.5277991634
+UniRef50_Q21YB9: NADH-quinone oxidoreductase subunit I|unclassified	0.5277991634
+UniRef50_A0A034CRP6	0.5277908296
+UniRef50_A0A034CRP6|unclassified	0.5277908296
+UniRef50_UPI0004713998: hypothetical protein, partial	0.5277575015
+UniRef50_UPI0004713998: hypothetical protein, partial|unclassified	0.5277575015
+UniRef50_S9WCB7: Transcriptional regulator	0.5277544916
+UniRef50_S9WCB7: Transcriptional regulator|unclassified	0.5277544916
+UniRef50_P37956: Spore photoproduct lyase	0.5277184711
+UniRef50_P37956: Spore photoproduct lyase|unclassified	0.5277184711
+UniRef50_Q1GDJ5: RbxH protein putative	0.5276360186
+UniRef50_Q1GDJ5: RbxH protein putative|unclassified	0.5276360186
+UniRef50_U6JQE2	0.5275823814
+UniRef50_U6JQE2|unclassified	0.5275823814
+UniRef50_X7ZHN5	0.5275506287
+UniRef50_X7ZHN5|unclassified	0.5275506287
+UniRef50_Q03UL2: Dihydroxy-acid dehydratase	0.5275281266
+UniRef50_Q03UL2: Dihydroxy-acid dehydratase|unclassified	0.5275281266
+UniRef50_L7ADQ4: Putative outer membrane lipoprotein	0.5274803384
+UniRef50_L7ADQ4: Putative outer membrane lipoprotein|unclassified	0.5274803384
+UniRef50_I4L8Z6	0.5274484886
+UniRef50_I4L8Z6|unclassified	0.5274484886
+UniRef50_Q8FJD2	0.5273698100
+UniRef50_Q8FJD2|unclassified	0.5273698100
+UniRef50_W7WR71	0.5273264852
+UniRef50_W7WR71|unclassified	0.5273264852
+UniRef50_Q92375: Thioredoxin reductase	0.5273046895
+UniRef50_Q92375: Thioredoxin reductase|unclassified	0.5273046895
+UniRef50_X1ED13: Marine sediment metagenome DNA, contig: S01H4_S15537 (Fragment)	0.5272991704
+UniRef50_X1ED13: Marine sediment metagenome DNA, contig: S01H4_S15537 (Fragment)|unclassified	0.5272991704
+UniRef50_B1YE93	0.5272756114
+UniRef50_B1YE93|unclassified	0.5272756114
+UniRef50_UPI00037F5828: hypothetical protein	0.5272154488
+UniRef50_UPI00037F5828: hypothetical protein|unclassified	0.5272154488
+UniRef50_M0QW80: Protein Gm26571	0.5272152909
+UniRef50_M0QW80: Protein Gm26571|unclassified	0.5272152909
+UniRef50_UPI000383B88B: PREDICTED: formin-like protein 5-like	0.5271358255
+UniRef50_UPI000383B88B: PREDICTED: formin-like protein 5-like|unclassified	0.5271358255
+UniRef50_UPI00046EF585: hypothetical protein, partial	0.5271312643
+UniRef50_UPI00046EF585: hypothetical protein, partial|unclassified	0.5271312643
+UniRef50_Q31GL1	0.5270988418
+UniRef50_Q31GL1|unclassified	0.5270988418
+UniRef50_UPI0003783854: hypothetical protein	0.5270707726
+UniRef50_UPI0003783854: hypothetical protein|unclassified	0.5270707726
+UniRef50_D2NQB1	0.5270028866
+UniRef50_D2NQB1|unclassified	0.5270028866
+UniRef50_Q5Z4N2	0.5269542124
+UniRef50_Q5Z4N2|unclassified	0.5269542124
+UniRef50_E3F3V0: Morn repeat protein	0.5269175292
+UniRef50_E3F3V0: Morn repeat protein|unclassified	0.5269175292
+UniRef50_A4TTU3: Flavoprotein involved in K+ transport	0.5269046881
+UniRef50_A4TTU3: Flavoprotein involved in K+ transport|unclassified	0.5269046881
+UniRef50_Q9T4F6: Light-independent protochlorophyllide reductase subunit N	0.5268224546
+UniRef50_Q9T4F6: Light-independent protochlorophyllide reductase subunit N|unclassified	0.5268224546
+UniRef50_M4V8P0	0.5268197283
+UniRef50_M4V8P0|unclassified	0.5268197283
+UniRef50_W6LVN7	0.5267848728
+UniRef50_W6LVN7|unclassified	0.5267848728
+UniRef50_C7BLR7	0.5267846823
+UniRef50_C7BLR7|unclassified	0.5267846823
+UniRef50_U6MT67	0.5267203815
+UniRef50_U6MT67|unclassified	0.5267203815
+UniRef50_M5FJA3	0.5266135636
+UniRef50_M5FJA3|unclassified	0.5266135636
+UniRef50_R4ZVH9: Serine/threonine protein kinase PrkC, regulator of stationary phase	0.5265929437
+UniRef50_R4ZVH9: Serine/threonine protein kinase PrkC, regulator of stationary phase|g__Streptococcus.s__Streptococcus_agalactiae	0.5265929437
+UniRef50_UPI00037693E3: hypothetical protein	0.5265748441
+UniRef50_UPI00037693E3: hypothetical protein|unclassified	0.5265748441
+UniRef50_A4ENQ3	0.5265442263
+UniRef50_A4ENQ3|unclassified	0.5265442263
+UniRef50_U3H7H9	0.5265018624
+UniRef50_U3H7H9|unclassified	0.5265018624
+UniRef50_H0AXT1	0.5265004931
+UniRef50_H0AXT1|unclassified	0.5265004931
+UniRef50_Q00593: Alcohol dehydrogenase [acceptor]	0.5264733159
+UniRef50_Q00593: Alcohol dehydrogenase [acceptor]|unclassified	0.5264733159
+UniRef50_S6AGQ5: UPF0225 protein PCA10_15880	0.5264311502
+UniRef50_S6AGQ5: UPF0225 protein PCA10_15880|unclassified	0.5264311502
+UniRef50_UPI00024885C3: sulfotransferase	0.5264194647
+UniRef50_UPI00024885C3: sulfotransferase|unclassified	0.5264194647
+UniRef50_L9FSE1: Transposase IS66 family protein	0.5263569810
+UniRef50_L9FSE1: Transposase IS66 family protein|unclassified	0.5263569810
+UniRef50_F3GKC7: RelA/SpoT protein (Fragment)	0.5263549084
+UniRef50_F3GKC7: RelA/SpoT protein (Fragment)|unclassified	0.5263549084
+UniRef50_B8ZUG9: Threonine--tRNA ligase	0.5263157895
+UniRef50_B8ZUG9: Threonine--tRNA ligase|g__Propionibacterium.s__Propionibacterium_acnes	0.5263157895
+UniRef50_C3LHZ6	0.5262711512
+UniRef50_C3LHZ6|unclassified	0.5262711512
+UniRef50_Q2JU97: Sulfate adenylyltransferase	0.5261673930
+UniRef50_Q2JU97: Sulfate adenylyltransferase|unclassified	0.5261673930
+UniRef50_UPI00036F6C2A: hypothetical protein	0.5260661638
+UniRef50_UPI00036F6C2A: hypothetical protein|unclassified	0.5260661638
+UniRef50_UPI00047468F0: sulfurase	0.5260511400
+UniRef50_UPI00047468F0: sulfurase|unclassified	0.5260511400
+UniRef50_A6LWJ1: DNA mismatch repair protein MutL	0.5260389269
+UniRef50_A6LWJ1: DNA mismatch repair protein MutL|g__Clostridium.s__Clostridium_beijerinckii	0.5260389269
+UniRef50_UPI0003EAE8C5: PREDICTED: collagen alpha-2(I) chain-like	0.5260389269
+UniRef50_UPI0003EAE8C5: PREDICTED: collagen alpha-2(I) chain-like|unclassified	0.5260389269
+UniRef50_Q3JX43: Unnamed protein product	0.5259874731
+UniRef50_Q3JX43: Unnamed protein product|unclassified	0.5259874731
+UniRef50_UPI00036DC77F: hypothetical protein	0.5259341314
+UniRef50_UPI00036DC77F: hypothetical protein|unclassified	0.5259341314
+UniRef50_UPI0003EF9C06: GntR family transcriptional regulator	0.5259147655
+UniRef50_UPI0003EF9C06: GntR family transcriptional regulator|unclassified	0.5259147655
+UniRef50_B9K420: Transposase	0.5258578468
+UniRef50_B9K420: Transposase|unclassified	0.5258578468
+UniRef50_D9WWI4	0.5258552930
+UniRef50_D9WWI4|unclassified	0.5258552930
+UniRef50_N9V8H0: SpoVR family protein (Fragment)	0.5258355497
+UniRef50_N9V8H0: SpoVR family protein (Fragment)|unclassified	0.5258355497
+UniRef50_R4RD89	0.5258345787
+UniRef50_R4RD89|unclassified	0.5258345787
+UniRef50_UPI00004C23CC: COG2057: Acyl CoA:acetate/3-ketoacid CoA transferase, beta subunit, partial	0.5258180574
+UniRef50_UPI00004C23CC: COG2057: Acyl CoA:acetate/3-ketoacid CoA transferase, beta subunit, partial|unclassified	0.5258180574
+UniRef50_H5Y8S2: Transposase	0.5257898539
+UniRef50_H5Y8S2: Transposase|unclassified	0.5257898539
+UniRef50_C5T5X5: Transcriptional regulator, AraC family (Fragment)	0.5257667520
+UniRef50_C5T5X5: Transcriptional regulator, AraC family (Fragment)|unclassified	0.5257667520
+UniRef50_UPI000316E32C: hypothetical protein	0.5256945453
+UniRef50_UPI000316E32C: hypothetical protein|unclassified	0.5256945453
+UniRef50_A3VHU5	0.5256911926
+UniRef50_A3VHU5|unclassified	0.5256911926
+UniRef50_UPI0004745C46: DNA processing protein	0.5256657475
+UniRef50_UPI0004745C46: DNA processing protein|unclassified	0.5256657475
+UniRef50_F2CWZ0: Predicted protein (Fragment)	0.5256451715
+UniRef50_F2CWZ0: Predicted protein (Fragment)|unclassified	0.5256451715
+UniRef50_E9MXQ1: Clumping factor B (Fragment)	0.5256378940
+UniRef50_E9MXQ1: Clumping factor B (Fragment)|unclassified	0.5256378940
+UniRef50_UPI00046FDE90: hypothetical protein, partial	0.5254847057
+UniRef50_UPI00046FDE90: hypothetical protein, partial|unclassified	0.5254847057
+UniRef50_M9RIF3	0.5254731134
+UniRef50_M9RIF3|unclassified	0.5254731134
+UniRef50_F3Z901: Putative ABC transporter integral membrane protein	0.5254710067
+UniRef50_F3Z901: Putative ABC transporter integral membrane protein|unclassified	0.5254710067
+UniRef50_UPI0004698AD0: MULTISPECIES: hypothetical protein, partial	0.5254540075
+UniRef50_UPI0004698AD0: MULTISPECIES: hypothetical protein, partial|unclassified	0.5254540075
+UniRef50_A0RAL4: Serine-protein kinase RsbW	0.5254089579
+UniRef50_A0RAL4: Serine-protein kinase RsbW|unclassified	0.5254089579
+UniRef50_UPI0003DF6ED2: PREDICTED: zinc finger protein squeeze-like isoform X1	0.5254009644
+UniRef50_UPI0003DF6ED2: PREDICTED: zinc finger protein squeeze-like isoform X1|unclassified	0.5254009644
+UniRef50_UPI0003803AC5: hypothetical protein	0.5253995869
+UniRef50_UPI0003803AC5: hypothetical protein|unclassified	0.5253995869
+UniRef50_UPI000366594A: hypothetical protein	0.5253858025
+UniRef50_UPI000366594A: hypothetical protein|unclassified	0.5253858025
+UniRef50_UPI0004630EAC: hypothetical protein	0.5253674844
+UniRef50_UPI0004630EAC: hypothetical protein|unclassified	0.5253674844
+UniRef50_UPI0003F9CDE3: hypothetical protein	0.5253588701
+UniRef50_UPI0003F9CDE3: hypothetical protein|unclassified	0.5253588701
+UniRef50_Q5KQI9	0.5253454926
+UniRef50_Q5KQI9|unclassified	0.5253454926
+UniRef50_Q84I54: Imidazole glycerol phosphate synthase subunit HisH (Fragment)	0.5253393408
+UniRef50_Q84I54: Imidazole glycerol phosphate synthase subunit HisH (Fragment)|unclassified	0.5253393408
+UniRef50_F2N5T7: 6-pyruvoyl tetrahydrobiopterin synthase, putative	0.5253140163
+UniRef50_F2N5T7: 6-pyruvoyl tetrahydrobiopterin synthase, putative|unclassified	0.5253140163
+UniRef50_UPI0004651997: hypothetical protein, partial	0.5252887559
+UniRef50_UPI0004651997: hypothetical protein, partial|unclassified	0.5252887559
+UniRef50_A0L7K6: Endoribonuclease YbeY	0.5252754164
+UniRef50_A0L7K6: Endoribonuclease YbeY|unclassified	0.5252754164
+UniRef50_UPI0002E00273: hypothetical protein	0.5251203627
+UniRef50_UPI0002E00273: hypothetical protein|unclassified	0.5251203627
+UniRef50_N6WGS6: Glycolate oxidase iron-sulfur subunit	0.5250979104
+UniRef50_N6WGS6: Glycolate oxidase iron-sulfur subunit|unclassified	0.5250979104
+UniRef50_UPI000382A44D: hypothetical protein	0.5250654145
+UniRef50_UPI000382A44D: hypothetical protein|unclassified	0.5250654145
+UniRef50_UPI000441AA91	0.5247704909
+UniRef50_UPI000441AA91|unclassified	0.5247704909
+UniRef50_W4FVH2	0.5246741425
+UniRef50_W4FVH2|unclassified	0.5246741425
+UniRef50_UPI00029A061A: adenylosuccinate lyase	0.5246705928
+UniRef50_UPI00029A061A: adenylosuccinate lyase|unclassified	0.5246705928
+UniRef50_Q5FA95	0.5246386061
+UniRef50_Q5FA95|unclassified	0.5246386061
+UniRef50_P81080: Ribulose bisphosphate carboxylase large chain (Fragments)	0.5245217159
+UniRef50_P81080: Ribulose bisphosphate carboxylase large chain (Fragments)|unclassified	0.5245217159
+UniRef50_UPI00029B47B1: ABC transporter substrate-binding protein	0.5244683665
+UniRef50_UPI00029B47B1: ABC transporter substrate-binding protein|unclassified	0.5244683665
+UniRef50_A0A017XVY4	0.5244046740
+UniRef50_A0A017XVY4|unclassified	0.5244046740
+UniRef50_X0YUM2: Marine sediment metagenome DNA, contig: S01H1_S37407 (Fragment)	0.5243998940
+UniRef50_X0YUM2: Marine sediment metagenome DNA, contig: S01H1_S37407 (Fragment)|unclassified	0.5243998940
+UniRef50_R0DS38	0.5243693536
+UniRef50_R0DS38|unclassified	0.5243693536
+UniRef50_A0A029IKH5	0.5243017554
+UniRef50_A0A029IKH5|unclassified	0.5243017554
+UniRef50_UPI000467C458: hypothetical protein	0.5242554966
+UniRef50_UPI000467C458: hypothetical protein|unclassified	0.5242554966
+UniRef50_P29943	0.5242319062
+UniRef50_P29943|unclassified	0.5242319062
+UniRef50_N6Z243: Amino acid-binding ACT domain-containing protein (Fragment)	0.5241813608
+UniRef50_N6Z243: Amino acid-binding ACT domain-containing protein (Fragment)|unclassified	0.5241813608
+UniRef50_UPI00047502DF: hypothetical protein	0.5241751808
+UniRef50_UPI00047502DF: hypothetical protein|unclassified	0.5241751808
+UniRef50_UPI0003A3D4B5: MULTISPECIES: transcriptional regulator	0.5241168645
+UniRef50_UPI0003A3D4B5: MULTISPECIES: transcriptional regulator|unclassified	0.5241168645
+UniRef50_A0L6W0	0.5240501330
+UniRef50_A0L6W0|unclassified	0.5240501330
+UniRef50_Q1M589: sn-glycerol-3-phosphate import ATP-binding protein UgpC 3	0.5239295529
+UniRef50_Q1M589: sn-glycerol-3-phosphate import ATP-binding protein UgpC 3|unclassified	0.5239295529
+UniRef50_S3GPF9: HlyC/CorC family transporter	0.5237707945
+UniRef50_S3GPF9: HlyC/CorC family transporter|unclassified	0.5237707945
+UniRef50_W1WH38	0.5237101024
+UniRef50_W1WH38|unclassified	0.5237101024
+UniRef50_B9FN35	0.5236669950
+UniRef50_B9FN35|unclassified	0.5236669950
+UniRef50_Q75ZQ4: Urease subunit gamma	0.5236299503
+UniRef50_Q75ZQ4: Urease subunit gamma|unclassified	0.5236299503
+UniRef50_X1BSY7: Marine sediment metagenome DNA, contig: S01H4_L05625 (Fragment)	0.5236208027
+UniRef50_X1BSY7: Marine sediment metagenome DNA, contig: S01H4_L05625 (Fragment)|unclassified	0.5236208027
+UniRef50_B1XZX9: BolA family protein	0.5235949244
+UniRef50_B1XZX9: BolA family protein|unclassified	0.5235949244
+UniRef50_V6EJV3: Multidrug resistance protein B (ErmB)	0.5235886062
+UniRef50_V6EJV3: Multidrug resistance protein B (ErmB)|unclassified	0.5235886062
+UniRef50_R4ZWJ6: Phage tail fibers	0.5235731621
+UniRef50_R4ZWJ6: Phage tail fibers|g__Streptococcus.s__Streptococcus_agalactiae	0.5235731621
+UniRef50_A0A014PLF9	0.5235602094
+UniRef50_A0A014PLF9|unclassified	0.5235602094
+UniRef50_E4EZN9	0.5235390993
+UniRef50_E4EZN9|unclassified	0.5235390993
+UniRef50_UPI00040CE7D5: hypothetical protein	0.5235086728
+UniRef50_UPI00040CE7D5: hypothetical protein|unclassified	0.5235086728
+UniRef50_K3ZVN5	0.5235000646
+UniRef50_K3ZVN5|unclassified	0.5235000646
+UniRef50_UPI000381ABE0: hypothetical protein	0.5234999004
+UniRef50_UPI000381ABE0: hypothetical protein|unclassified	0.5234999004
+UniRef50_UPI00046F4706: hypothetical protein	0.5234813273
+UniRef50_UPI00046F4706: hypothetical protein|unclassified	0.5234813273
+UniRef50_B1I3M7: Sulfate adenylyltransferase	0.5234731330
+UniRef50_B1I3M7: Sulfate adenylyltransferase|unclassified	0.5234731330
+UniRef50_B8ILT2	0.5234072396
+UniRef50_B8ILT2|unclassified	0.5234072396
+UniRef50_S6RKD9	0.5233061922
+UniRef50_S6RKD9|unclassified	0.5233061922
+UniRef50_UPI00037C6964: hypothetical protein	0.5232971435
+UniRef50_UPI00037C6964: hypothetical protein|unclassified	0.5232971435
+UniRef50_UPI00037C173A: hypothetical protein	0.5232540456
+UniRef50_UPI00037C173A: hypothetical protein|unclassified	0.5232540456
+UniRef50_K4QLG2	0.5232057707
+UniRef50_K4QLG2|unclassified	0.5232057707
+UniRef50_D4Z694: Ribonuclease D	0.5231528504
+UniRef50_D4Z694: Ribonuclease D|unclassified	0.5231528504
+UniRef50_J9PAT4	0.5230289976
+UniRef50_J9PAT4|unclassified	0.5230289976
+UniRef50_UPI0003B3A117: adenosylcobinamide amidohydrolase	0.5230162856
+UniRef50_UPI0003B3A117: adenosylcobinamide amidohydrolase|unclassified	0.5230162856
+UniRef50_C7DFE0: Transglycosylase SLT domain protein	0.5229874218
+UniRef50_C7DFE0: Transglycosylase SLT domain protein|unclassified	0.5229874218
+UniRef50_F1Z9A6: Phage-related tail protein	0.5229348768
+UniRef50_F1Z9A6: Phage-related tail protein|unclassified	0.5229348768
+UniRef50_Q5KYR2: 5-deoxy-glucuronate isomerase	0.5229320015
+UniRef50_Q5KYR2: 5-deoxy-glucuronate isomerase|unclassified	0.5229320015
+UniRef50_UPI00028A25D3: peptide ABC transporter	0.5228739525
+UniRef50_UPI00028A25D3: peptide ABC transporter|unclassified	0.5228739525
+UniRef50_B6I757	0.5228512529
+UniRef50_B6I757|unclassified	0.5228512529
+UniRef50_UPI0004745645: hypothetical protein, partial	0.5228156330
+UniRef50_UPI0004745645: hypothetical protein, partial|unclassified	0.5228156330
+UniRef50_M1EBV1: ADAM metallopeptidase with thrombospondin type 1 motif, 4 (Fragment)	0.5228008450
+UniRef50_M1EBV1: ADAM metallopeptidase with thrombospondin type 1 motif, 4 (Fragment)|unclassified	0.5228008450
+UniRef50_D3RVS1	0.5227235866
+UniRef50_D3RVS1|unclassified	0.5227235866
+UniRef50_A4WT80: NADH-quinone oxidoreductase subunit N	0.5226748445
+UniRef50_A4WT80: NADH-quinone oxidoreductase subunit N|unclassified	0.5226748445
+UniRef50_V6EZW5: Putative chromosomal replication initiator, DnaA-homolog protein	0.5226729660
+UniRef50_V6EZW5: Putative chromosomal replication initiator, DnaA-homolog protein|unclassified	0.5226729660
+UniRef50_C8XAV6	0.5226710931
+UniRef50_C8XAV6|unclassified	0.5226710931
+UniRef50_M4X104	0.5226490051
+UniRef50_M4X104|unclassified	0.5226490051
+UniRef50_Q3JAS5	0.5226435148
+UniRef50_Q3JAS5|unclassified	0.5226435148
+UniRef50_B1HYX1: UPF0082 protein	0.5226193143
+UniRef50_B1HYX1: UPF0082 protein|unclassified	0.5226193143
+UniRef50_UPI0004752D9E: acetyltransferase	0.5226168403
+UniRef50_UPI0004752D9E: acetyltransferase|unclassified	0.5226168403
+UniRef50_I8U8V8	0.5225978551
+UniRef50_I8U8V8|unclassified	0.5225978551
+UniRef50_UPI00046E5E62: taurine ABC transporter substrate-binding protein, partial	0.5225407137
+UniRef50_UPI00046E5E62: taurine ABC transporter substrate-binding protein, partial|unclassified	0.5225407137
+UniRef50_W0YVR6: Acyl-CoA thioesterase	0.5224983475
+UniRef50_W0YVR6: Acyl-CoA thioesterase|unclassified	0.5224983475
+UniRef50_UPI00046E5F2A: GntR family transcriptional regulator	0.5224894829
+UniRef50_UPI00046E5F2A: GntR family transcriptional regulator|unclassified	0.5224894829
+UniRef50_UPI000299EA29: acetyl-CoA synthetase, partial	0.5224455129
+UniRef50_UPI000299EA29: acetyl-CoA synthetase, partial|unclassified	0.5224455129
+UniRef50_UPI000365EDB5: hypothetical protein	0.5224122787
+UniRef50_UPI000365EDB5: hypothetical protein|unclassified	0.5224122787
+UniRef50_D8FRN8: Putative ATPase	0.5223703727
+UniRef50_D8FRN8: Putative ATPase|unclassified	0.5223703727
+UniRef50_UPI0003EB23AC: hypothetical protein	0.5222627881
+UniRef50_UPI0003EB23AC: hypothetical protein|unclassified	0.5222627881
+UniRef50_H6NYJ2: Inner membrane transport permease yhhJ	0.5222179260
+UniRef50_H6NYJ2: Inner membrane transport permease yhhJ|unclassified	0.5222179260
+UniRef50_Q9RYG5: Methyl-accepting chemotaxis protein	0.5221932115
+UniRef50_Q9RYG5: Methyl-accepting chemotaxis protein|g__Deinococcus.s__Deinococcus_radiodurans	0.5221932115
+UniRef50_I5C7X1: Branched-chain amino acid ABC transporter substrate-binding protein	0.5221602293
+UniRef50_I5C7X1: Branched-chain amino acid ABC transporter substrate-binding protein|unclassified	0.5221602293
+UniRef50_UPI000378F95B: hypothetical protein	0.5220893551
+UniRef50_UPI000378F95B: hypothetical protein|unclassified	0.5220893551
+UniRef50_Q7M0U0: Ribosomal protein TL4 (Fragment)	0.5220859867
+UniRef50_Q7M0U0: Ribosomal protein TL4 (Fragment)|unclassified	0.5220859867
+UniRef50_UPI00037E660D: hypothetical protein, partial	0.5220110943
+UniRef50_UPI00037E660D: hypothetical protein, partial|unclassified	0.5220110943
+UniRef50_UPI00037E8BAF: cell envelope biogenesis protein TonB, partial	0.5219566070
+UniRef50_UPI00037E8BAF: cell envelope biogenesis protein TonB, partial|unclassified	0.5219566070
+UniRef50_K7EKB2: TATA-binding protein-associated factor 2N (Fragment)	0.5218948434
+UniRef50_K7EKB2: TATA-binding protein-associated factor 2N (Fragment)|unclassified	0.5218948434
+UniRef50_W1YMC2	0.5216595064
+UniRef50_W1YMC2|unclassified	0.5216595064
+UniRef50_H8GCV6: Putative transcriptional regulator	0.5216484090
+UniRef50_H8GCV6: Putative transcriptional regulator|unclassified	0.5216484090
+UniRef50_I1XWU0: Soluble lytic murein transglycosylase-like protein	0.5216484090
+UniRef50_I1XWU0: Soluble lytic murein transglycosylase-like protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.5216484090
+UniRef50_UPI0001D54C92: PREDICTED: hypothetical protein LOC706559	0.5216484090
+UniRef50_UPI0001D54C92: PREDICTED: hypothetical protein LOC706559|unclassified	0.5216484090
+UniRef50_UPI0002379D7C: opine/polyamine ABC transporter, ATP-binding protein	0.5215579842
+UniRef50_UPI0002379D7C: opine/polyamine ABC transporter, ATP-binding protein|unclassified	0.5215579842
+UniRef50_UPI0003706BCA: hypothetical protein, partial	0.5215271292
+UniRef50_UPI0003706BCA: hypothetical protein, partial|unclassified	0.5215271292
+UniRef50_A0A038GCW8: Ribose ABC transporter permease	0.5215229811
+UniRef50_A0A038GCW8: Ribose ABC transporter permease|unclassified	0.5215229811
+UniRef50_A0A035LCX6	0.5214427331
+UniRef50_A0A035LCX6|unclassified	0.5214427331
+UniRef50_UPI00036C976B: hypothetical protein	0.5214301962
+UniRef50_UPI00036C976B: hypothetical protein|unclassified	0.5214301962
+UniRef50_UPI000383B279	0.5214100228
+UniRef50_UPI000383B279|unclassified	0.5214100228
+UniRef50_UPI00047E0B6B: 1,4-dihydroxy-2-naphthoate octaprenyltransferase	0.5214082671
+UniRef50_UPI00047E0B6B: 1,4-dihydroxy-2-naphthoate octaprenyltransferase|unclassified	0.5214082671
+UniRef50_UPI0004729CD3: hypothetical protein, partial	0.5213373571
+UniRef50_UPI0004729CD3: hypothetical protein, partial|unclassified	0.5213373571
+UniRef50_U3TY01	0.5213257296
+UniRef50_U3TY01|unclassified	0.5213257296
+UniRef50_UPI0003B438A4: acetyl-CoA carboxylase carboxyl transferase subunit beta	0.5213081438
+UniRef50_UPI0003B438A4: acetyl-CoA carboxylase carboxyl transferase subunit beta|unclassified	0.5213081438
+UniRef50_E6WBY2	0.5212913363
+UniRef50_E6WBY2|unclassified	0.5212913363
+UniRef50_R5W852	0.5212178996
+UniRef50_R5W852|unclassified	0.5212178996
+UniRef50_D9S8W1: Putative membrane protein	0.5211359614
+UniRef50_D9S8W1: Putative membrane protein|unclassified	0.5211359614
+UniRef50_V9WM70	0.5211292037
+UniRef50_V9WM70|unclassified	0.5211292037
+UniRef50_J5QLV8: Collagenase (Fragment)	0.5211106960
+UniRef50_J5QLV8: Collagenase (Fragment)|unclassified	0.5211106960
+UniRef50_Q9JZN9: Probable TonB-dependent receptor NMB0964	0.5211047421
+UniRef50_Q9JZN9: Probable TonB-dependent receptor NMB0964|g__Neisseria.s__Neisseria_meningitidis	0.5211047421
+UniRef50_UPI000378C7E8: hypothetical protein	0.5210090300
+UniRef50_UPI000378C7E8: hypothetical protein|unclassified	0.5210090300
+UniRef50_UPI0004730699: hypothetical protein, partial	0.5209972959
+UniRef50_UPI0004730699: hypothetical protein, partial|unclassified	0.5209972959
+UniRef50_A3X2I5: Putative transposase	0.5209802588
+UniRef50_A3X2I5: Putative transposase|unclassified	0.5209802588
+UniRef50_T0NEN1: Seg	0.5209404830
+UniRef50_T0NEN1: Seg|unclassified	0.5209404830
+UniRef50_F6II11: Succinoglycan exopolysaccharide synthesis protein	0.5208982473
+UniRef50_F6II11: Succinoglycan exopolysaccharide synthesis protein|unclassified	0.5208982473
+UniRef50_B6U6Q4	0.5208222772
+UniRef50_B6U6Q4|unclassified	0.5208222772
+UniRef50_UPI00034B4110: hypothetical protein	0.5208054689
+UniRef50_UPI00034B4110: hypothetical protein|unclassified	0.5208054689
+UniRef50_UPI0003B6E6BC: ferredoxin	0.5207910402
+UniRef50_UPI0003B6E6BC: ferredoxin|unclassified	0.5207910402
+UniRef50_K2EIZ6	0.5206886375
+UniRef50_K2EIZ6|unclassified	0.5206886375
+UniRef50_UPI0004648809: peptide ABC transporter ATP-binding protein, partial	0.5206466783
+UniRef50_UPI0004648809: peptide ABC transporter ATP-binding protein, partial|unclassified	0.5206466783
+UniRef50_Q3JWR9	0.5206285213
+UniRef50_Q3JWR9|unclassified	0.5206285213
+UniRef50_A1KV38: Ribonuclease H	0.5206216835
+UniRef50_A1KV38: Ribonuclease H|unclassified	0.5206216835
+UniRef50_A3K1G7	0.5205599633
+UniRef50_A3K1G7|unclassified	0.5205599633
+UniRef50_R0FCU4	0.5205124278
+UniRef50_R0FCU4|unclassified	0.5205124278
+UniRef50_UPI0003181639: hypothetical protein	0.5204810175
+UniRef50_UPI0003181639: hypothetical protein|unclassified	0.5204810175
+UniRef50_L6QN84: Tyrosine transporter TyrP	0.5204737990
+UniRef50_L6QN84: Tyrosine transporter TyrP|unclassified	0.5204737990
+UniRef50_UPI00037E4BFD: hypothetical protein	0.5204495969
+UniRef50_UPI00037E4BFD: hypothetical protein|unclassified	0.5204495969
+UniRef50_C5WTK0	0.5204356800
+UniRef50_C5WTK0|unclassified	0.5204356800
+UniRef50_A0A027T632	0.5204100050
+UniRef50_A0A027T632|unclassified	0.5204100050
+UniRef50_A7HSY3	0.5203753142
+UniRef50_A7HSY3|unclassified	0.5203753142
+UniRef50_A3UCU0	0.5203573104
+UniRef50_A3UCU0|unclassified	0.5203573104
+UniRef50_F5ZH74: Lipoprotein	0.5203464135
+UniRef50_F5ZH74: Lipoprotein|unclassified	0.5203464135
+UniRef50_Q9K1H0: Outer membrane protein assembly factor BamA	0.5202913632
+UniRef50_Q9K1H0: Outer membrane protein assembly factor BamA|g__Neisseria.s__Neisseria_meningitidis	0.5202913632
+UniRef50_N6U1Z5	0.5202715659
+UniRef50_N6U1Z5|unclassified	0.5202715659
+UniRef50_UPI00047C7FF5: hypothetical protein	0.5201286928
+UniRef50_UPI00047C7FF5: hypothetical protein|unclassified	0.5201286928
+UniRef50_Q2VNH3	0.5199446518
+UniRef50_Q2VNH3|unclassified	0.5199446518
+UniRef50_UPI00041EB905: thymidylate synthase	0.5199399414
+UniRef50_UPI00041EB905: thymidylate synthase|unclassified	0.5199399414
+UniRef50_UPI0003677280: hypothetical protein	0.5198918122
+UniRef50_UPI0003677280: hypothetical protein|unclassified	0.5198918122
+UniRef50_T2ENN0: Rhs element Vgr family protein	0.5198603103
+UniRef50_T2ENN0: Rhs element Vgr family protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.4093327876
+UniRef50_T2ENN0: Rhs element Vgr family protein|unclassified	0.1105275227
+UniRef50_UPI0003C10C18: PREDICTED: mitochondrial-processing peptidase subunit beta-like, partial	0.5198423296
+UniRef50_UPI0003C10C18: PREDICTED: mitochondrial-processing peptidase subunit beta-like, partial|unclassified	0.5198423296
+UniRef50_A6LVT1	0.5197505198
+UniRef50_A6LVT1|g__Clostridium.s__Clostridium_beijerinckii	0.5197505198
+UniRef50_UPI00045EB579: hypothetical protein	0.5195975122
+UniRef50_UPI00045EB579: hypothetical protein|unclassified	0.5195975122
+UniRef50_V8P6G5: Octapeptide-repeat protein T2 (Fragment)	0.5195424139
+UniRef50_V8P6G5: Octapeptide-repeat protein T2 (Fragment)|unclassified	0.5195424139
+UniRef50_K0DNC1: mRNA 3-end processing factor	0.5195316010
+UniRef50_K0DNC1: mRNA 3-end processing factor|unclassified	0.5195316010
+UniRef50_A8LI37	0.5194866101
+UniRef50_A8LI37|unclassified	0.5194866101
+UniRef50_Q4QN88: Autotransported protein Lav	0.5194805195
+UniRef50_Q4QN88: Autotransported protein Lav|g__Neisseria.s__Neisseria_meningitidis	0.5194805195
+UniRef50_W4LY25	0.5194701891
+UniRef50_W4LY25|unclassified	0.5194701891
+UniRef50_X8C1L5	0.5194663304
+UniRef50_X8C1L5|unclassified	0.5194663304
+UniRef50_UPI00029A125C: hypothetical protein	0.5194468981
+UniRef50_UPI00029A125C: hypothetical protein|unclassified	0.5194468981
+UniRef50_UPI00040934E7: hypothetical protein	0.5194174131
+UniRef50_UPI00040934E7: hypothetical protein|unclassified	0.5194174131
+UniRef50_F2ECT1: Predicted protein (Fragment)	0.5194058074
+UniRef50_F2ECT1: Predicted protein (Fragment)|unclassified	0.5194058074
+UniRef50_UPI00037D8AED: hypothetical protein	0.5193890891
+UniRef50_UPI00037D8AED: hypothetical protein|unclassified	0.5193890891
+UniRef50_UPI0003C19361	0.5193766892
+UniRef50_UPI0003C19361|unclassified	0.5193766892
+UniRef50_UPI0004785937: heme transporter	0.5193746645
+UniRef50_UPI0004785937: heme transporter|unclassified	0.5193746645
+UniRef50_B9QX60	0.5193342098
+UniRef50_B9QX60|unclassified	0.5193342098
+UniRef50_B2K173: Death-on-curing family protein	0.5193207270
+UniRef50_B2K173: Death-on-curing family protein|unclassified	0.5193207270
+UniRef50_UPI000262CF22: fumarylacetoacetate (FAA) hydrolase	0.5193158534
+UniRef50_UPI000262CF22: fumarylacetoacetate (FAA) hydrolase|unclassified	0.5193158534
+UniRef50_C4U4D5	0.5192439052
+UniRef50_C4U4D5|unclassified	0.5192439052
+UniRef50_B4V9Q0	0.5192326557
+UniRef50_B4V9Q0|unclassified	0.5192326557
+UniRef50_P32106	0.5192256001
+UniRef50_P32106|unclassified	0.5192256001
+UniRef50_C0B0Y2: Outer membrane-specific lipoprotein transporter subunit LolC	0.5192254311
+UniRef50_C0B0Y2: Outer membrane-specific lipoprotein transporter subunit LolC|unclassified	0.5192254311
+UniRef50_UPI0004663E52: hypothetical protein	0.5192187093
+UniRef50_UPI0004663E52: hypothetical protein|unclassified	0.5192187093
+UniRef50_J8YHU3: Aida-related Type V secretory pathway adhesin	0.5192107996
+UniRef50_J8YHU3: Aida-related Type V secretory pathway adhesin|g__Neisseria.s__Neisseria_meningitidis	0.5192107996
+UniRef50_UPI0003702B52: hypothetical protein	0.5191747961
+UniRef50_UPI0003702B52: hypothetical protein|unclassified	0.5191747961
+UniRef50_P31052: Dihydrolipoyl dehydrogenase	0.5191180811
+UniRef50_P31052: Dihydrolipoyl dehydrogenase|unclassified	0.5191180811
+UniRef50_Q8K3J1: NADH dehydrogenase [ubiquinone] iron-sulfur protein 8, mitochondrial	0.5191094361
+UniRef50_Q8K3J1: NADH dehydrogenase [ubiquinone] iron-sulfur protein 8, mitochondrial|unclassified	0.5191094361
+UniRef50_D8M2R7: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_2	0.5190593748
+UniRef50_D8M2R7: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_2|unclassified	0.5190593748
+UniRef50_UPI0003797F94: membrane protein, partial	0.5190483501
+UniRef50_UPI0003797F94: membrane protein, partial|unclassified	0.5190483501
+UniRef50_UPI00047D1B9F: hypothetical protein	0.5190475086
+UniRef50_UPI00047D1B9F: hypothetical protein|unclassified	0.5190475086
+UniRef50_K7HWI3	0.5190333735
+UniRef50_K7HWI3|unclassified	0.5190333735
+UniRef50_A6VA36	0.5190292168
+UniRef50_A6VA36|unclassified	0.5190292168
+UniRef50_U3TYM7: Major facilitator superfamily protein	0.5189015401
+UniRef50_U3TYM7: Major facilitator superfamily protein|unclassified	0.5189015401
+UniRef50_UPI00046D2BBD: hypothetical protein	0.5188623729
+UniRef50_UPI00046D2BBD: hypothetical protein|unclassified	0.5188623729
+UniRef50_UPI00016A52E2: oxidoreductase, FAD-binding protein, partial	0.5188306733
+UniRef50_UPI00016A52E2: oxidoreductase, FAD-binding protein, partial|unclassified	0.5188306733
+UniRef50_UPI00028A3A88: hypothetical protein	0.5188115517
+UniRef50_UPI00028A3A88: hypothetical protein|unclassified	0.5188115517
+UniRef50_UPI0003597697: PREDICTED: glycine-rich cell wall structural protein 1.0-like	0.5188050140
+UniRef50_UPI0003597697: PREDICTED: glycine-rich cell wall structural protein 1.0-like|unclassified	0.5188050140
+UniRef50_UPI0003B528A9: ribonuclease D	0.5187872350
+UniRef50_UPI0003B528A9: ribonuclease D|unclassified	0.5187872350
+UniRef50_UPI00047896CC: hypothetical protein	0.5187799593
+UniRef50_UPI00047896CC: hypothetical protein|unclassified	0.5187799593
+UniRef50_UPI0004136F77: MULTISPECIES: membrane protein	0.5187390002
+UniRef50_UPI0004136F77: MULTISPECIES: membrane protein|unclassified	0.5187390002
+UniRef50_Q098U2	0.5187199296
+UniRef50_Q098U2|unclassified	0.5187199296
+UniRef50_V0L0Q4: Putative transport protein (Fragment)	0.5186935731
+UniRef50_V0L0Q4: Putative transport protein (Fragment)|unclassified	0.5186935731
+UniRef50_V8H196	0.5186740073
+UniRef50_V8H196|unclassified	0.5186740073
+UniRef50_H2HFL3: Metal-nicotianamine transporter YSL2	0.5186721992
+UniRef50_H2HFL3: Metal-nicotianamine transporter YSL2|g__Propionibacterium.s__Propionibacterium_acnes	0.5186721992
+UniRef50_I6CWA2: RhsC domain protein (Fragment)	0.5186655237
+UniRef50_I6CWA2: RhsC domain protein (Fragment)|unclassified	0.5186655237
+UniRef50_UPI00029A0867: HNH endonuclease	0.5186564844
+UniRef50_UPI00029A0867: HNH endonuclease|unclassified	0.5186564844
+UniRef50_S3JJI7	0.5186164918
+UniRef50_S3JJI7|unclassified	0.5186164918
+UniRef50_A0A008LUF2	0.5185771949
+UniRef50_A0A008LUF2|unclassified	0.5185771949
+UniRef50_A2SNI4: Sex pilus assembly protein	0.5184571490
+UniRef50_A2SNI4: Sex pilus assembly protein|unclassified	0.5184571490
+UniRef50_R9KB75	0.5184498000
+UniRef50_R9KB75|unclassified	0.5184498000
+UniRef50_UPI00046423BB: MULTISPECIES: hypothetical protein	0.5184234011
+UniRef50_UPI00046423BB: MULTISPECIES: hypothetical protein|unclassified	0.5184234011
+UniRef50_Q0F8T8: Sarcosine oxidase, gamma subunit family protein	0.5184027772
+UniRef50_Q0F8T8: Sarcosine oxidase, gamma subunit family protein|unclassified	0.5184027772
+UniRef50_UPI000265461A: PREDICTED: cystathionine gamma-synthase-like	0.5183607592
+UniRef50_UPI000265461A: PREDICTED: cystathionine gamma-synthase-like|unclassified	0.5183607592
+UniRef50_C7J807: Os10g0561000 protein (Fragment)	0.5183500843
+UniRef50_C7J807: Os10g0561000 protein (Fragment)|unclassified	0.5183500843
+UniRef50_UPI0003956B1E: HNH endonuclease	0.5183333143
+UniRef50_UPI0003956B1E: HNH endonuclease|unclassified	0.5183333143
+UniRef50_K0PM85	0.5182909456
+UniRef50_K0PM85|unclassified	0.5182909456
+UniRef50_G9Q770	0.5182487094
+UniRef50_G9Q770|unclassified	0.5182487094
+UniRef50_UPI00034B1BE4: ABC transporter permease	0.5182143412
+UniRef50_UPI00034B1BE4: ABC transporter permease|unclassified	0.5182143412
+UniRef50_W7PUM4	0.5181982854
+UniRef50_W7PUM4|unclassified	0.5181982854
+UniRef50_B7GZC9	0.5181347150
+UniRef50_B7GZC9|g__Acinetobacter.s__Acinetobacter_baumannii	0.5181347150
+UniRef50_J9P9W8	0.5180944353
+UniRef50_J9P9W8|unclassified	0.5180944353
+UniRef50_UPI0004673090: DNA mismatch repair protein Vsr	0.5180651431
+UniRef50_UPI0004673090: DNA mismatch repair protein Vsr|unclassified	0.5180651431
+UniRef50_X7A487	0.5180567635
+UniRef50_X7A487|unclassified	0.5180567635
+UniRef50_Q6C7L4: Thioredoxin reductase	0.5180459342
+UniRef50_Q6C7L4: Thioredoxin reductase|unclassified	0.5180459342
+UniRef50_A0A031MFM5	0.5180291697
+UniRef50_A0A031MFM5|unclassified	0.5180291697
+UniRef50_A6V229: Membrane protein, putative	0.5180238088
+UniRef50_A6V229: Membrane protein, putative|unclassified	0.5180238088
+UniRef50_J3U748	0.5180182372
+UniRef50_J3U748|unclassified	0.5180182372
+UniRef50_UPI0003B76DAF: hypothetical protein, partial	0.5180097128
+UniRef50_UPI0003B76DAF: hypothetical protein, partial|unclassified	0.5180097128
+UniRef50_A4EC20	0.5180051007
+UniRef50_A4EC20|unclassified	0.5180051007
+UniRef50_F2BHH9: IS861 transposase	0.5179993113
+UniRef50_F2BHH9: IS861 transposase|unclassified	0.5179993113
+UniRef50_Q9RHC6	0.5179256916
+UniRef50_Q9RHC6|unclassified	0.5179256916
+UniRef50_I0KKW1: DoxX family protein	0.5178514578
+UniRef50_I0KKW1: DoxX family protein|unclassified	0.5178514578
+UniRef50_UPI00037A20A6: hypothetical protein	0.5178115155
+UniRef50_UPI00037A20A6: hypothetical protein|unclassified	0.5178115155
+UniRef50_I2B6D3	0.5177957349
+UniRef50_I2B6D3|unclassified	0.5177957349
+UniRef50_UPI0004448C9D: PREDICTED: LOW QUALITY PROTEIN: nascent polypeptide-associated complex subunit alpha, muscle-specific form-like	0.5177337938
+UniRef50_UPI0004448C9D: PREDICTED: LOW QUALITY PROTEIN: nascent polypeptide-associated complex subunit alpha, muscle-specific form-like|unclassified	0.5177337938
+UniRef50_UPI00047D8BD8: hypothetical protein, partial	0.5176716724
+UniRef50_UPI00047D8BD8: hypothetical protein, partial|unclassified	0.5176716724
+UniRef50_W5Y947: Protein containing DUF497	0.5175911994
+UniRef50_W5Y947: Protein containing DUF497|unclassified	0.5175911994
+UniRef50_Q2RRM4: N-acetyl-gamma-glutamyl-phosphate reductase	0.5174410379
+UniRef50_Q2RRM4: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.5174410379
+UniRef50_Q1GHF8: TRAP transporter solute receptor TAXI family	0.5173979748
+UniRef50_Q1GHF8: TRAP transporter solute receptor TAXI family|unclassified	0.5173979748
+UniRef50_W1H1M0: FIG023911: putative membrane protein	0.5173732302
+UniRef50_W1H1M0: FIG023911: putative membrane protein|unclassified	0.5173732302
+UniRef50_O86835	0.5173545319
+UniRef50_O86835|unclassified	0.5173545319
+UniRef50_U5MX52: Macrolide export ATP-binding/permease protein MacB	0.5173305742
+UniRef50_U5MX52: Macrolide export ATP-binding/permease protein MacB|g__Clostridium.s__Clostridium_beijerinckii	0.5173305742
+UniRef50_D9WFC1: Allergen V5/Tpx-1 related protein	0.5173257797
+UniRef50_D9WFC1: Allergen V5/Tpx-1 related protein|unclassified	0.5173257797
+UniRef50_S1S1C4: Amine oxidase, flavin-containing	0.5172858227
+UniRef50_S1S1C4: Amine oxidase, flavin-containing|unclassified	0.5172858227
+UniRef50_Q8KLH5: Cbb3-type cytochrome c oxidase subunit FixP	0.5172790429
+UniRef50_Q8KLH5: Cbb3-type cytochrome c oxidase subunit FixP|unclassified	0.5172790429
+UniRef50_B4BI93	0.5172692194
+UniRef50_B4BI93|unclassified	0.5172692194
+UniRef50_Q65JD4	0.5172345600
+UniRef50_Q65JD4|unclassified	0.5172345600
+UniRef50_D7AV30	0.5171467438
+UniRef50_D7AV30|unclassified	0.5171467438
+UniRef50_A0A024C8M9: Membrane protein	0.5170630817
+UniRef50_A0A024C8M9: Membrane protein|g__Helicobacter.s__Helicobacter_pylori	0.5170630817
+UniRef50_R1FCU5	0.5170033399
+UniRef50_R1FCU5|unclassified	0.5170033399
+UniRef50_D2V1D7	0.5169660249
+UniRef50_D2V1D7|unclassified	0.5169660249
+UniRef50_M3XS87	0.5169623875
+UniRef50_M3XS87|unclassified	0.5169623875
+UniRef50_UPI0004676B58: RhaT family transporter	0.5169111635
+UniRef50_UPI0004676B58: RhaT family transporter|unclassified	0.5169111635
+UniRef50_F8JCC7: ABC transporter, permease protein	0.5168275967
+UniRef50_F8JCC7: ABC transporter, permease protein|unclassified	0.5168275967
+UniRef50_T8SKI1	0.5167958656
+UniRef50_T8SKI1|g__Escherichia.s__Escherichia_coli	0.5167958656
+UniRef50_B5V7N6: Transcriptional regulator, DeoR family	0.5167735970
+UniRef50_B5V7N6: Transcriptional regulator, DeoR family|unclassified	0.5167735970
+UniRef50_UPI00036C530C: hypothetical protein, partial	0.5166983235
+UniRef50_UPI00036C530C: hypothetical protein, partial|unclassified	0.5166983235
+UniRef50_J0QIU8	0.5166651463
+UniRef50_J0QIU8|unclassified	0.5166651463
+UniRef50_I3TNE9	0.5166529244
+UniRef50_I3TNE9|unclassified	0.5166529244
+UniRef50_Q11HM7	0.5166230580
+UniRef50_Q11HM7|unclassified	0.5166230580
+UniRef50_UPI00031F41C2: hypothetical protein	0.5165966687
+UniRef50_UPI00031F41C2: hypothetical protein|unclassified	0.5165966687
+UniRef50_A4EBS8	0.5165831161
+UniRef50_A4EBS8|unclassified	0.5165831161
+UniRef50_UPI0003686401: hypothetical protein	0.5165688377
+UniRef50_UPI0003686401: hypothetical protein|unclassified	0.5165688377
+UniRef50_S5FNW9	0.5165257635
+UniRef50_S5FNW9|unclassified	0.5165257635
+UniRef50_A1B460	0.5164811265
+UniRef50_A1B460|unclassified	0.5164811265
+UniRef50_X1TNP8: Marine sediment metagenome DNA, contig: S12H4_S09776	0.5164533104
+UniRef50_X1TNP8: Marine sediment metagenome DNA, contig: S12H4_S09776|unclassified	0.5164533104
+UniRef50_UPI00036FD470: hypothetical protein	0.5163810400
+UniRef50_UPI00036FD470: hypothetical protein|unclassified	0.5163810400
+UniRef50_X1C675: Marine sediment metagenome DNA, contig: S01H4_S07909	0.5163602985
+UniRef50_X1C675: Marine sediment metagenome DNA, contig: S01H4_S07909|unclassified	0.5163602985
+UniRef50_UPI00034D8CD9: glycoside hydrolase	0.5162191867
+UniRef50_UPI00034D8CD9: glycoside hydrolase|unclassified	0.5162191867
+UniRef50_F8B076	0.5161598130
+UniRef50_F8B076|unclassified	0.5161598130
+UniRef50_C4B4S0: Staphylocoagulase	0.5159958720
+UniRef50_C4B4S0: Staphylocoagulase|g__Staphylococcus.s__Staphylococcus_aureus	0.5159958720
+UniRef50_UPI0004703481: hypothetical protein	0.5159958720
+UniRef50_UPI0004703481: hypothetical protein|unclassified	0.5159958720
+UniRef50_Z6ADI2	0.5158584066
+UniRef50_Z6ADI2|unclassified	0.5158584066
+UniRef50_W0Z4J7: Histidine kinase	0.5158488741
+UniRef50_W0Z4J7: Histidine kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.5158488741
+UniRef50_Q6ZDB2	0.5158220392
+UniRef50_Q6ZDB2|unclassified	0.5158220392
+UniRef50_V4R6S5: Peptidase M14	0.5158077355
+UniRef50_V4R6S5: Peptidase M14|unclassified	0.5158077355
+UniRef50_UPI00036FE9F2: hypothetical protein	0.5157651628
+UniRef50_UPI00036FE9F2: hypothetical protein|unclassified	0.5157651628
+UniRef50_F0YP70	0.5157199919
+UniRef50_F0YP70|unclassified	0.5157199919
+UniRef50_H0HQB8	0.5157188290
+UniRef50_H0HQB8|unclassified	0.5157188290
+UniRef50_W8RQ28: Type VI secretion protein	0.5157090025
+UniRef50_W8RQ28: Type VI secretion protein|unclassified	0.5157090025
+UniRef50_UPI0003B78361: ATP-dependent protease	0.5155948714
+UniRef50_UPI0003B78361: ATP-dependent protease|unclassified	0.5155948714
+UniRef50_Q73DE0: Quinol oxidase subunit 2	0.5155748063
+UniRef50_Q73DE0: Quinol oxidase subunit 2|unclassified	0.5155748063
+UniRef50_UPI0004696EBC: hypothetical protein	0.5155410841
+UniRef50_UPI0004696EBC: hypothetical protein|unclassified	0.5155410841
+UniRef50_H9UWL6	0.5155389285
+UniRef50_H9UWL6|unclassified	0.5155389285
+UniRef50_UPI00016AD049: hypothetical protein	0.5154880872
+UniRef50_UPI00016AD049: hypothetical protein|unclassified	0.5154880872
+UniRef50_E6S4X2: Outer membrane protein	0.5154639175
+UniRef50_E6S4X2: Outer membrane protein|g__Helicobacter.s__Helicobacter_pylori	0.5154639175
+UniRef50_M4WY62: Non-specific serine/threonine protein kinase	0.5154639175
+UniRef50_M4WY62: Non-specific serine/threonine protein kinase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.5154639175
+UniRef50_UPI0003B4CA49: ribonuclease J	0.5153877867
+UniRef50_UPI0003B4CA49: ribonuclease J|unclassified	0.5153877867
+UniRef50_UPI0003742FBA: hypothetical protein	0.5153010754
+UniRef50_UPI0003742FBA: hypothetical protein|unclassified	0.5153010754
+UniRef50_C1MUY0: Predicted protein	0.5152939946
+UniRef50_C1MUY0: Predicted protein|unclassified	0.5152939946
+UniRef50_P0A005: Protein ArsC	0.5152304132
+UniRef50_P0A005: Protein ArsC|unclassified	0.5152304132
+UniRef50_G6C758	0.5152156020
+UniRef50_G6C758|unclassified	0.5152156020
+UniRef50_D8JGS2: Exporter	0.5151983514
+UniRef50_D8JGS2: Exporter|g__Acinetobacter.s__Acinetobacter_baumannii	0.5151983514
+UniRef50_S9S267	0.5151635975
+UniRef50_S9S267|unclassified	0.5151635975
+UniRef50_UPI0003611217: hypothetical protein	0.5151590151
+UniRef50_UPI0003611217: hypothetical protein|unclassified	0.5151590151
+UniRef50_Q9Z6P2: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	0.5151515321
+UniRef50_Q9Z6P2: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.5151515321
+UniRef50_Q8FBR8	0.5151257954
+UniRef50_Q8FBR8|unclassified	0.5151257954
+UniRef50_P50215: Isocitrate dehydrogenase [NADP]	0.5150343395
+UniRef50_P50215: Isocitrate dehydrogenase [NADP]|unclassified	0.5150343395
+UniRef50_UPI00047874E1: hypothetical protein	0.5150254358
+UniRef50_UPI00047874E1: hypothetical protein|unclassified	0.5150254358
+UniRef50_C9M6I7	0.5150086949
+UniRef50_C9M6I7|unclassified	0.5150086949
+UniRef50_H2JSU9	0.5149946823
+UniRef50_H2JSU9|unclassified	0.5149946823
+UniRef50_UPI0002F5F55F: hypothetical protein	0.5148735569
+UniRef50_UPI0002F5F55F: hypothetical protein|unclassified	0.5148735569
+UniRef50_UPI00035F79C4: hypothetical protein	0.5147218465
+UniRef50_UPI00035F79C4: hypothetical protein|unclassified	0.5147218465
+UniRef50_X5DHG9: Membrane protein	0.5147090078
+UniRef50_X5DHG9: Membrane protein|unclassified	0.5147090078
+UniRef50_Q04718: Fumarate hydratase class I, aerobic	0.5146899581
+UniRef50_Q04718: Fumarate hydratase class I, aerobic|unclassified	0.5146899581
+UniRef50_F3P2W5	0.5146695388
+UniRef50_F3P2W5|unclassified	0.5146695388
+UniRef50_J3QDW4	0.5146680391
+UniRef50_J3QDW4|unclassified	0.5146680391
+UniRef50_UPI000470709D: hypothetical protein	0.5145470792
+UniRef50_UPI000470709D: hypothetical protein|unclassified	0.5145470792
+UniRef50_A8WKA5: Protein CBG24243	0.5145245346
+UniRef50_A8WKA5: Protein CBG24243|unclassified	0.5145245346
+UniRef50_Q12YB2: CRISPR-associated helicase Cas3	0.5144935103
+UniRef50_Q12YB2: CRISPR-associated helicase Cas3|unclassified	0.5144935103
+UniRef50_R6H780	0.5144867922
+UniRef50_R6H780|unclassified	0.5144867922
+UniRef50_UPI00027F6223	0.5144685732
+UniRef50_UPI00027F6223|unclassified	0.5144685732
+UniRef50_UPI000255F17A: hypothetical protein	0.5144207990
+UniRef50_UPI000255F17A: hypothetical protein|unclassified	0.5144207990
+UniRef50_UPI000472BBAC: hypothetical protein	0.5142760151
+UniRef50_UPI000472BBAC: hypothetical protein|unclassified	0.5142760151
+UniRef50_UPI00037565DC: hypothetical protein	0.5142212344
+UniRef50_UPI00037565DC: hypothetical protein|unclassified	0.5142212344
+UniRef50_UPI0003442B9F: PREDICTED: LOW QUALITY PROTEIN: NADH-ubiquinone oxidoreductase chain 5-like	0.5141840119
+UniRef50_UPI0003442B9F: PREDICTED: LOW QUALITY PROTEIN: NADH-ubiquinone oxidoreductase chain 5-like|unclassified	0.5141840119
+UniRef50_UPI0003719CD0: hypothetical protein	0.5141599769
+UniRef50_UPI0003719CD0: hypothetical protein|unclassified	0.5141599769
+UniRef50_UPI00035CD489: hypothetical protein	0.5141388175
+UniRef50_UPI00035CD489: hypothetical protein|unclassified	0.5141388175
+UniRef50_UPI000471AF5A: hypothetical protein	0.5140374360
+UniRef50_UPI000471AF5A: hypothetical protein|unclassified	0.5140374360
+UniRef50_Q44290: Homocitrate synthase 1	0.5140176469
+UniRef50_Q44290: Homocitrate synthase 1|unclassified	0.5140176469
+UniRef50_Q0AKW7: Ribosomal RNA large subunit methyltransferase H	0.5140038414
+UniRef50_Q0AKW7: Ribosomal RNA large subunit methyltransferase H|unclassified	0.5140038414
+UniRef50_B6AUP4	0.5139882552
+UniRef50_B6AUP4|unclassified	0.5139882552
+UniRef50_I0HTV2	0.5139727600
+UniRef50_I0HTV2|unclassified	0.5139727600
+UniRef50_T8R2K9	0.5139167869
+UniRef50_T8R2K9|unclassified	0.5139167869
+UniRef50_UPI000465DD48: hypothetical protein	0.5139023023
+UniRef50_UPI000465DD48: hypothetical protein|unclassified	0.5139023023
+UniRef50_D5MHT9	0.5138920506
+UniRef50_D5MHT9|unclassified	0.5138920506
+UniRef50_UPI0003773753: hypothetical protein	0.5138778142
+UniRef50_UPI0003773753: hypothetical protein|unclassified	0.5138778142
+UniRef50_M7RDL9	0.5138070480
+UniRef50_M7RDL9|unclassified	0.5138070480
+UniRef50_A0A031GUI1	0.5137930582
+UniRef50_A0A031GUI1|unclassified	0.5137930582
+UniRef50_L1GJS9: FeS cluster assembly protein sufB (Fragment)	0.5137923123
+UniRef50_L1GJS9: FeS cluster assembly protein sufB (Fragment)|unclassified	0.5137923123
+UniRef50_V8FJM6: DNA utilization protein HofP (Fragment)	0.5136810945
+UniRef50_V8FJM6: DNA utilization protein HofP (Fragment)|unclassified	0.5136810945
+UniRef50_UPI00030144E8: hypothetical protein	0.5136802233
+UniRef50_UPI00030144E8: hypothetical protein|unclassified	0.5136802233
+UniRef50_UPI000368ECCC: hypothetical protein	0.5136763840
+UniRef50_UPI000368ECCC: hypothetical protein|unclassified	0.5136763840
+UniRef50_UPI000476476F: thioredoxin	0.5135608366
+UniRef50_UPI000476476F: thioredoxin|unclassified	0.5135608366
+UniRef50_W0H1D0	0.5135470528
+UniRef50_W0H1D0|unclassified	0.5135470528
+UniRef50_G2SD77: Type-F conjugative transfer system protein TraW	0.5135423091
+UniRef50_G2SD77: Type-F conjugative transfer system protein TraW|unclassified	0.5135423091
+UniRef50_UPI0003B6F790: 50S ribosomal protein L9	0.5134933831
+UniRef50_UPI0003B6F790: 50S ribosomal protein L9|unclassified	0.5134933831
+UniRef50_UPI00047ADD11: hypothetical protein, partial	0.5134874206
+UniRef50_UPI00047ADD11: hypothetical protein, partial|unclassified	0.5134874206
+UniRef50_Q8GGD0: Molybdopterin synthase, large subunit (Fragment)	0.5134360647
+UniRef50_Q8GGD0: Molybdopterin synthase, large subunit (Fragment)|unclassified	0.5134360647
+UniRef50_F3GSI6: Folylpolyglutamate synthetase (Fragment)	0.5134065705
+UniRef50_F3GSI6: Folylpolyglutamate synthetase (Fragment)|unclassified	0.5134065705
+UniRef50_UPI0002EDD593: membrane protein	0.5133726922
+UniRef50_UPI0002EDD593: membrane protein|unclassified	0.5133726922
+UniRef50_UPI0003B421A5: heme ABC transporter ATP-binding protein	0.5132971187
+UniRef50_UPI0003B421A5: heme ABC transporter ATP-binding protein|unclassified	0.5132971187
+UniRef50_UPI00047A233F: hypothetical protein	0.5132717066
+UniRef50_UPI00047A233F: hypothetical protein|unclassified	0.5132717066
+UniRef50_UPI0002EC1413: hypothetical protein	0.5132200917
+UniRef50_UPI0002EC1413: hypothetical protein|unclassified	0.5132200917
+UniRef50_UPI000373448E: hypothetical protein	0.5132054825
+UniRef50_UPI000373448E: hypothetical protein|unclassified	0.5132054825
+UniRef50_X1J4V9: Marine sediment metagenome DNA, contig: S03H2_S12241 (Fragment)	0.5131980164
+UniRef50_X1J4V9: Marine sediment metagenome DNA, contig: S03H2_S12241 (Fragment)|unclassified	0.5131980164
+UniRef50_UPI000161E2A8: 40S ribosomal protein S15	0.5131555688
+UniRef50_UPI000161E2A8: 40S ribosomal protein S15|unclassified	0.5131555688
+UniRef50_G8SZG7: Sarcosine oxidase	0.5131175379
+UniRef50_G8SZG7: Sarcosine oxidase|unclassified	0.5131175379
+UniRef50_Q6F9W0: DNA mismatch repair protein MutL	0.5130836326
+UniRef50_Q6F9W0: DNA mismatch repair protein MutL|g__Acinetobacter.s__Acinetobacter_baumannii	0.5130836326
+UniRef50_UPI0004434B3D: PREDICTED: 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial isoform X2	0.5130831318
+UniRef50_UPI0004434B3D: PREDICTED: 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial isoform X2|unclassified	0.5130831318
+UniRef50_A7HFR5	0.5130522153
+UniRef50_A7HFR5|unclassified	0.5130522153
+UniRef50_UPI0003014E93: hypothetical protein	0.5130446503
+UniRef50_UPI0003014E93: hypothetical protein|unclassified	0.5130446503
+UniRef50_E2PVD9	0.5129488154
+UniRef50_E2PVD9|unclassified	0.5129488154
+UniRef50_UPI0003A9A8D3: 16S rRNA methyltransferase	0.5129038254
+UniRef50_UPI0003A9A8D3: 16S rRNA methyltransferase|unclassified	0.5129038254
+UniRef50_UPI0003B43935: beta-lactamase	0.5128881033
+UniRef50_UPI0003B43935: beta-lactamase|unclassified	0.5128881033
+UniRef50_Q9FMT1: 3-isopropylmalate dehydrogenase 3, chloroplastic	0.5128724680
+UniRef50_Q9FMT1: 3-isopropylmalate dehydrogenase 3, chloroplastic|unclassified	0.5128724680
+UniRef50_UPI00047BFA6D: hypothetical protein, partial	0.5128622778
+UniRef50_UPI00047BFA6D: hypothetical protein, partial|unclassified	0.5128622778
+UniRef50_R8DHT0	0.5128387324
+UniRef50_R8DHT0|unclassified	0.5128387324
+UniRef50_L0GLZ7: Diguanylate cyclase (GGDEF) domain-containing protein	0.5128205128
+UniRef50_L0GLZ7: Diguanylate cyclase (GGDEF) domain-containing protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.5128205128
+UniRef50_B9TLQ5: Small heat shock protein hspH, putative	0.5126722924
+UniRef50_B9TLQ5: Small heat shock protein hspH, putative|unclassified	0.5126722924
+UniRef50_B3ENQ2: Nucleoside diphosphate kinase	0.5126504499
+UniRef50_B3ENQ2: Nucleoside diphosphate kinase|unclassified	0.5126504499
+UniRef50_UPI000425B71D: hypothetical protein	0.5125999963
+UniRef50_UPI000425B71D: hypothetical protein|unclassified	0.5125999963
+UniRef50_W7Q001: Ribonuclease	0.5125893170
+UniRef50_W7Q001: Ribonuclease|unclassified	0.5125893170
+UniRef50_UPI00034AC37F: hypothetical protein	0.5125706053
+UniRef50_UPI00034AC37F: hypothetical protein|unclassified	0.5125706053
+UniRef50_J4Y9F0	0.5125643717
+UniRef50_J4Y9F0|unclassified	0.5125643717
+UniRef50_A3JY58: SlyX protein, putative	0.5125221084
+UniRef50_A3JY58: SlyX protein, putative|unclassified	0.5125221084
+UniRef50_G3A8C8: Putative transposase	0.5125147752
+UniRef50_G3A8C8: Putative transposase|unclassified	0.5125147752
+UniRef50_UPI0003FABAE6: hypothetical protein	0.5124347084
+UniRef50_UPI0003FABAE6: hypothetical protein|unclassified	0.5124347084
+UniRef50_X6D8D3	0.5124197102
+UniRef50_X6D8D3|unclassified	0.5124197102
+UniRef50_UPI00036911A7: hypothetical protein	0.5123695498
+UniRef50_UPI00036911A7: hypothetical protein|unclassified	0.5123695498
+UniRef50_X5LNJ5	0.5122950820
+UniRef50_X5LNJ5|unclassified	0.5122950820
+UniRef50_W1F1I5	0.5122118801
+UniRef50_W1F1I5|unclassified	0.5122118801
+UniRef50_UPI000425DF26: universal stress protein	0.5121951909
+UniRef50_UPI000425DF26: universal stress protein|unclassified	0.5121951909
+UniRef50_H5MNJ5: ProP proline/betaine MFS transporter domain protein	0.5121868228
+UniRef50_H5MNJ5: ProP proline/betaine MFS transporter domain protein|unclassified	0.5121868228
+UniRef50_R5UAF2	0.5121101041
+UniRef50_R5UAF2|unclassified	0.5121101041
+UniRef50_D5AJJ9: Predicted transcriptional regulator	0.5120771412
+UniRef50_D5AJJ9: Predicted transcriptional regulator|unclassified	0.5120771412
+UniRef50_K2JU26: HupE/UreJ protein	0.5120677801
+UniRef50_K2JU26: HupE/UreJ protein|unclassified	0.5120677801
+UniRef50_X1EYE5: Marine sediment metagenome DNA, contig: S03H2_L00458	0.5120247258
+UniRef50_X1EYE5: Marine sediment metagenome DNA, contig: S03H2_L00458|unclassified	0.5120247258
+UniRef50_UPI00038163B9: hypothetical protein	0.5119847369
+UniRef50_UPI00038163B9: hypothetical protein|unclassified	0.5119847369
+UniRef50_W8QZ31	0.5119293959
+UniRef50_W8QZ31|unclassified	0.5119293959
+UniRef50_UPI0003000992: hypothetical protein	0.5119141560
+UniRef50_UPI0003000992: hypothetical protein|unclassified	0.5119141560
+UniRef50_Z0C0M0	0.5118830621
+UniRef50_Z0C0M0|unclassified	0.5118830621
+UniRef50_UPI0003A62571: hypothetical protein	0.5118440838
+UniRef50_UPI0003A62571: hypothetical protein|unclassified	0.5118440838
+UniRef50_D4FB84: Outer membrane-specific lipoprotein transporter subunit LolC family protein (Fragment)	0.5118389829
+UniRef50_D4FB84: Outer membrane-specific lipoprotein transporter subunit LolC family protein (Fragment)|unclassified	0.5118389829
+UniRef50_B9TA31	0.5117629921
+UniRef50_B9TA31|unclassified	0.5117629921
+UniRef50_UPI00037CE0E8: hypothetical protein	0.5117159859
+UniRef50_UPI00037CE0E8: hypothetical protein|unclassified	0.5117159859
+UniRef50_X1VT81: Marine sediment metagenome DNA, contig: S12H4_S27757 (Fragment)	0.5116106591
+UniRef50_X1VT81: Marine sediment metagenome DNA, contig: S12H4_S27757 (Fragment)|unclassified	0.5116106591
+UniRef50_I0IE65	0.5116082387
+UniRef50_I0IE65|unclassified	0.5116082387
+UniRef50_W7QBW2: Immunogenic protein	0.5115999791
+UniRef50_W7QBW2: Immunogenic protein|unclassified	0.5115999791
+UniRef50_R4LWQ6	0.5115667526
+UniRef50_R4LWQ6|unclassified	0.5115667526
+UniRef50_S2KTE6	0.5115336109
+UniRef50_S2KTE6|unclassified	0.5115336109
+UniRef50_F0I702	0.5115119715
+UniRef50_F0I702|unclassified	0.5115119715
+UniRef50_UPI0004410E9E: hypothetical protein AURDEDRAFT_112354	0.5115089514
+UniRef50_UPI0004410E9E: hypothetical protein AURDEDRAFT_112354|unclassified	0.5115089514
+UniRef50_UPI0004208902: hypothetical protein	0.5114813537
+UniRef50_UPI0004208902: hypothetical protein|unclassified	0.5114813537
+UniRef50_UPI00021928E7: hydrolase	0.5114812376
+UniRef50_UPI00021928E7: hydrolase|unclassified	0.5114812376
+UniRef50_V7F735	0.5114047512
+UniRef50_V7F735|unclassified	0.5114047512
+UniRef50_UPI0001BF61D0: hypothetical protein SMAC_10790, partial	0.5113976095
+UniRef50_UPI0001BF61D0: hypothetical protein SMAC_10790, partial|unclassified	0.5113976095
+UniRef50_UPI00047BE124: sulfite oxidase	0.5113844478
+UniRef50_UPI00047BE124: sulfite oxidase|unclassified	0.5113844478
+UniRef50_W1YFP0: Nitrate reductase, beta subunit (Fragment)	0.5113502094
+UniRef50_W1YFP0: Nitrate reductase, beta subunit (Fragment)|unclassified	0.5113502094
+UniRef50_UPI0003776FB7: hypothetical protein	0.5113248907
+UniRef50_UPI0003776FB7: hypothetical protein|unclassified	0.5113248907
+UniRef50_UPI0003C17432: PREDICTED: 3-isopropylmalate dehydratase-like	0.5112865698
+UniRef50_UPI0003C17432: PREDICTED: 3-isopropylmalate dehydratase-like|unclassified	0.5112865698
+UniRef50_A1U6L0: Acetylglutamate kinase	0.5112594252
+UniRef50_A1U6L0: Acetylglutamate kinase|unclassified	0.5112594252
+UniRef50_A7FAV7	0.5112474438
+UniRef50_A7FAV7|g__Acinetobacter.s__Acinetobacter_baumannii	0.5112474438
+UniRef50_C3ZKC0	0.5112474438
+UniRef50_C3ZKC0|unclassified	0.5112474438
+UniRef50_UPI0003B4FD5C: peptide ABC transporter permease, partial	0.5112123200
+UniRef50_UPI0003B4FD5C: peptide ABC transporter permease, partial|unclassified	0.5112123200
+UniRef50_UPI00046A7948: hypothetical protein	0.5112060920
+UniRef50_UPI00046A7948: hypothetical protein|unclassified	0.5112060920
+UniRef50_UPI000371F98D: hypothetical protein	0.5111770752
+UniRef50_UPI000371F98D: hypothetical protein|unclassified	0.5111770752
+UniRef50_UPI0003A6B902: calcium-binding protein	0.5110851460
+UniRef50_UPI0003A6B902: calcium-binding protein|unclassified	0.5110851460
+UniRef50_UPI000255E297: cobinamide adenolsyltransferase	0.5110851106
+UniRef50_UPI000255E297: cobinamide adenolsyltransferase|unclassified	0.5110851106
+UniRef50_UPI000479C33C: LuxR family transcriptional regulator	0.5109612043
+UniRef50_UPI000479C33C: LuxR family transcriptional regulator|unclassified	0.5109612043
+UniRef50_D2Z027: O-ureido-L-serine synthase	0.5109487885
+UniRef50_D2Z027: O-ureido-L-serine synthase|unclassified	0.5109487885
+UniRef50_L7EH92: Dehydrogenase	0.5108755884
+UniRef50_L7EH92: Dehydrogenase|unclassified	0.5108755884
+UniRef50_B3PH29: Anhydrase, family 3 protein	0.5108722653
+UniRef50_B3PH29: Anhydrase, family 3 protein|unclassified	0.5108722653
+UniRef50_A0Z8U5: Flavoprotein WrbA, putative (Fragment)	0.5108667646
+UniRef50_A0Z8U5: Flavoprotein WrbA, putative (Fragment)|unclassified	0.5108667646
+UniRef50_V7CHB3	0.5108290510
+UniRef50_V7CHB3|unclassified	0.5108290510
+UniRef50_A0A017HMT1: FixH family protein	0.5108173792
+UniRef50_A0A017HMT1: FixH family protein|unclassified	0.5108173792
+UniRef50_K0RKN8	0.5108025848
+UniRef50_K0RKN8|unclassified	0.5108025848
+UniRef50_UPI00036E2295: hypothetical protein, partial	0.5107545021
+UniRef50_UPI00036E2295: hypothetical protein, partial|unclassified	0.5107545021
+UniRef50_UPI000367C72D: DNA-binding protein	0.5107050531
+UniRef50_UPI000367C72D: DNA-binding protein|unclassified	0.5107050531
+UniRef50_UPI00037A6516: hypothetical protein	0.5106821294
+UniRef50_UPI00037A6516: hypothetical protein|unclassified	0.5106821294
+UniRef50_Q5UBV9: Resuscitation promoting factor	0.5106113959
+UniRef50_Q5UBV9: Resuscitation promoting factor|unclassified	0.5106113959
+UniRef50_Q82ZQ1: Allantoinase	0.5105237733
+UniRef50_Q82ZQ1: Allantoinase|unclassified	0.5105237733
+UniRef50_UPI000378BC24: hypothetical protein	0.5104918358
+UniRef50_UPI000378BC24: hypothetical protein|unclassified	0.5104918358
+UniRef50_J6CD40	0.5104518961
+UniRef50_J6CD40|unclassified	0.5104518961
+UniRef50_J8F4X1	0.5104367151
+UniRef50_J8F4X1|unclassified	0.5104367151
+UniRef50_UPI000368A330: hypothetical protein, partial	0.5103807862
+UniRef50_UPI000368A330: hypothetical protein, partial|unclassified	0.5103807862
+UniRef50_Q0RB16	0.5103559569
+UniRef50_Q0RB16|unclassified	0.5103559569
+UniRef50_UPI00037D1D22: hypothetical protein	0.5103424878
+UniRef50_UPI00037D1D22: hypothetical protein|unclassified	0.5103424878
+UniRef50_V5VH70: Phosphatase	0.5103041272
+UniRef50_V5VH70: Phosphatase|g__Acinetobacter.s__Acinetobacter_baumannii	0.4636068614
+UniRef50_V5VH70: Phosphatase|unclassified	0.0466972658
+UniRef50_UPI0003AF1724: PREDICTED: skin secretory protein xP2-like	0.5102135058
+UniRef50_UPI0003AF1724: PREDICTED: skin secretory protein xP2-like|unclassified	0.5102135058
+UniRef50_H4L4K8: Lipopolysaccharide core biosynthesis protein	0.5102040816
+UniRef50_H4L4K8: Lipopolysaccharide core biosynthesis protein|unclassified	0.5102040816
+UniRef50_A0A056S3J4: Integral membrane protein	0.5100393529
+UniRef50_A0A056S3J4: Integral membrane protein|unclassified	0.5100393529
+UniRef50_Q2S3M6: Nucleoside diphosphate kinase	0.5099901163
+UniRef50_Q2S3M6: Nucleoside diphosphate kinase|unclassified	0.5099901163
+UniRef50_UPI0003B7884C: ABC transporter, partial	0.5098710995
+UniRef50_UPI0003B7884C: ABC transporter, partial|unclassified	0.5098710995
+UniRef50_F5TRU1	0.5098604202
+UniRef50_F5TRU1|unclassified	0.5098604202
+UniRef50_UPI00046D1EDA: hypothetical protein	0.5098542611
+UniRef50_UPI00046D1EDA: hypothetical protein|unclassified	0.5098542611
+UniRef50_UPI0001912302: pyridoxal kinase, partial	0.5098405005
+UniRef50_UPI0001912302: pyridoxal kinase, partial|unclassified	0.5098405005
+UniRef50_UPI0004414ABB: LamB/YcsF family protein	0.5098367810
+UniRef50_UPI0004414ABB: LamB/YcsF family protein|unclassified	0.5098367810
+UniRef50_UPI00037E947E: hypothetical protein	0.5097950727
+UniRef50_UPI00037E947E: hypothetical protein|unclassified	0.5097950727
+UniRef50_Q2YAA5: NADH-quinone oxidoreductase subunit A	0.5097772610
+UniRef50_Q2YAA5: NADH-quinone oxidoreductase subunit A|unclassified	0.5097772610
+UniRef50_UPI00035F2E72: hypothetical protein	0.5097547591
+UniRef50_UPI00035F2E72: hypothetical protein|unclassified	0.5097547591
+UniRef50_F8LLX7: Restriction enzyme BgcI subunit alpha (EC 3.1.21.-)	0.5096839959
+UniRef50_F8LLX7: Restriction enzyme BgcI subunit alpha (EC 3.1.21.-)|g__Helicobacter.s__Helicobacter_pylori	0.5096839959
+UniRef50_UPI0003ACEE35: hypothetical protein	0.5096694055
+UniRef50_UPI0003ACEE35: hypothetical protein|unclassified	0.5096694055
+UniRef50_UPI00035E9C14: hypothetical protein	0.5096634590
+UniRef50_UPI00035E9C14: hypothetical protein|unclassified	0.5096634590
+UniRef50_UPI000421D9C2: transcriptional regulator	0.5096423719
+UniRef50_UPI000421D9C2: transcriptional regulator|unclassified	0.5096423719
+UniRef50_UPI0003C15755	0.5096330853
+UniRef50_UPI0003C15755|unclassified	0.5096330853
+UniRef50_W4SZK1	0.5096224803
+UniRef50_W4SZK1|unclassified	0.5096224803
+UniRef50_B5YIL7: Peptide deformylase	0.5094881289
+UniRef50_B5YIL7: Peptide deformylase|unclassified	0.5094881289
+UniRef50_A6E9U0: Oxidoreductase	0.5094404238
+UniRef50_A6E9U0: Oxidoreductase|unclassified	0.5094404238
+UniRef50_UPI0003955B95: PREDICTED: collagen alpha-1(I) chain-like	0.5094253139
+UniRef50_UPI0003955B95: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.5094253139
+UniRef50_L8HB85: WD domain, Gbeta repeat-containing protein	0.5094243505
+UniRef50_L8HB85: WD domain, Gbeta repeat-containing protein|unclassified	0.5094243505
+UniRef50_X8C840: Transketolase, thiamine diphosphate binding domain protein	0.5093677000
+UniRef50_X8C840: Transketolase, thiamine diphosphate binding domain protein|unclassified	0.5093677000
+UniRef50_B9DMK3: Autoinducer sensor protein AgrC, probably truncated	0.5093660304
+UniRef50_B9DMK3: Autoinducer sensor protein AgrC, probably truncated|unclassified	0.5093660304
+UniRef50_UPI0003820DEC: DNA-binding protein	0.5093422013
+UniRef50_UPI0003820DEC: DNA-binding protein|unclassified	0.5093422013
+UniRef50_UPI0003336D92: PREDICTED: S-adenosylmethionine synthase isoform type-2-like	0.5093337383
+UniRef50_UPI0003336D92: PREDICTED: S-adenosylmethionine synthase isoform type-2-like|unclassified	0.5093337383
+UniRef50_G0D380	0.5093116862
+UniRef50_G0D380|unclassified	0.5093116862
+UniRef50_UPI00037EDF68: hypothetical protein, partial	0.5092350174
+UniRef50_UPI00037EDF68: hypothetical protein, partial|unclassified	0.5092350174
+UniRef50_R8X3N8	0.5092172300
+UniRef50_R8X3N8|unclassified	0.5092172300
+UniRef50_UPI00037A2F75: hypothetical protein	0.5091833100
+UniRef50_UPI00037A2F75: hypothetical protein|unclassified	0.5091833100
+UniRef50_UPI0004688581: replication initiation protein RepC	0.5091718223
+UniRef50_UPI0004688581: replication initiation protein RepC|unclassified	0.5091718223
+UniRef50_W0C6W3: ABC-type cobalt transport system, permease component CbiQ	0.5090875579
+UniRef50_W0C6W3: ABC-type cobalt transport system, permease component CbiQ|unclassified	0.5090875579
+UniRef50_UPI00026C53EF: positive response regulator for pho regulon	0.5090709774
+UniRef50_UPI00026C53EF: positive response regulator for pho regulon|unclassified	0.5090709774
+UniRef50_UPI000382F4AE: hypothetical protein M271_38930	0.5089744472
+UniRef50_UPI000382F4AE: hypothetical protein M271_38930|unclassified	0.5089744472
+UniRef50_W1MLM9	0.5089618297
+UniRef50_W1MLM9|unclassified	0.5089618297
+UniRef50_UPI0002D2A0E3: hypothetical protein	0.5089417018
+UniRef50_UPI0002D2A0E3: hypothetical protein|unclassified	0.5089417018
+UniRef50_UPI00037DF719: hypothetical protein, partial	0.5089205952
+UniRef50_UPI00037DF719: hypothetical protein, partial|unclassified	0.5089205952
+UniRef50_C4XMN4: NADH-quinone oxidoreductase subunit K	0.5089152300
+UniRef50_C4XMN4: NADH-quinone oxidoreductase subunit K|unclassified	0.5089152300
+UniRef50_UPI0000352E5F: nucleoside-diphosphate kinase	0.5088943078
+UniRef50_UPI0000352E5F: nucleoside-diphosphate kinase|unclassified	0.5088943078
+UniRef50_UPI00036FCC4C: hypothetical protein, partial	0.5087893824
+UniRef50_UPI00036FCC4C: hypothetical protein, partial|unclassified	0.5087893824
+UniRef50_UPI00037F9D63: hypothetical protein	0.5087457350
+UniRef50_UPI00037F9D63: hypothetical protein|unclassified	0.5087457350
+UniRef50_UPI000468CFEA: hypothetical protein	0.5086606655
+UniRef50_UPI000468CFEA: hypothetical protein|unclassified	0.5086606655
+UniRef50_G2PBY5: NAD(P)H dehydrogenase (Quinone)	0.5086558814
+UniRef50_G2PBY5: NAD(P)H dehydrogenase (Quinone)|unclassified	0.5086558814
+UniRef50_M5FCX3	0.5086252467
+UniRef50_M5FCX3|unclassified	0.5086252467
+UniRef50_T8W1S1: Inner membrane transporter yajR	0.5084993675
+UniRef50_T8W1S1: Inner membrane transporter yajR|unclassified	0.5084993675
+UniRef50_A0A058Z6L2	0.5084267282
+UniRef50_A0A058Z6L2|unclassified	0.5084267282
+UniRef50_UPI0003B708C3: DNA glycosylase, partial	0.5084161106
+UniRef50_UPI0003B708C3: DNA glycosylase, partial|unclassified	0.5084161106
+UniRef50_C6SRZ6: Transcriptional antiterminator	0.5083884087
+UniRef50_C6SRZ6: Transcriptional antiterminator|g__Streptococcus.s__Streptococcus_mutans	0.5083884087
+UniRef50_UPI00035E3A63: hypothetical protein, partial	0.5083495412
+UniRef50_UPI00035E3A63: hypothetical protein, partial|unclassified	0.5083495412
+UniRef50_UPI0003758FEB: hypothetical protein	0.5083305913
+UniRef50_UPI0003758FEB: hypothetical protein|unclassified	0.5083305913
+UniRef50_K0T9S1	0.5082053960
+UniRef50_K0T9S1|unclassified	0.5082053960
+UniRef50_Q9HZ84	0.5081854256
+UniRef50_Q9HZ84|unclassified	0.5081854256
+UniRef50_L8H2U1	0.5081534641
+UniRef50_L8H2U1|unclassified	0.5081534641
+UniRef50_UPI00036321C1: hypothetical protein	0.5081474616
+UniRef50_UPI00036321C1: hypothetical protein|unclassified	0.5081474616
+UniRef50_J3PVZ6	0.5081384054
+UniRef50_J3PVZ6|unclassified	0.5081384054
+UniRef50_C0PB89	0.5081357754
+UniRef50_C0PB89|unclassified	0.5081357754
+UniRef50_UPI000470078C: hypothetical protein	0.5081300813
+UniRef50_UPI000470078C: hypothetical protein|unclassified	0.5081300813
+UniRef50_UPI000018F1DA: hypothetical protein L200079, partial	0.5081112003
+UniRef50_UPI000018F1DA: hypothetical protein L200079, partial|unclassified	0.5081112003
+UniRef50_N6V8H7	0.5080116959
+UniRef50_N6V8H7|unclassified	0.5080116959
+UniRef50_UPI00037CB5C8: hypothetical protein	0.5080071542
+UniRef50_UPI00037CB5C8: hypothetical protein|unclassified	0.5080071542
+UniRef50_Q02LX4	0.5079480762
+UniRef50_Q02LX4|unclassified	0.5079480762
+UniRef50_UPI0004769A90: hypothetical protein, partial	0.5079316771
+UniRef50_UPI0004769A90: hypothetical protein, partial|unclassified	0.5079316771
+UniRef50_K0T3W7	0.5078939801
+UniRef50_K0T3W7|unclassified	0.5078939801
+UniRef50_K0D4L6	0.5078923759
+UniRef50_K0D4L6|unclassified	0.5078923759
+UniRef50_W0SC73: Cbb3-type cytochrome oxidase subunit 3	0.5078798478
+UniRef50_W0SC73: Cbb3-type cytochrome oxidase subunit 3|unclassified	0.5078798478
+UniRef50_UPI00046D22D7: hypothetical protein	0.5078325757
+UniRef50_UPI00046D22D7: hypothetical protein|unclassified	0.5078325757
+UniRef50_A0A022FNV0: LysR family transcriptional regulator	0.5077451213
+UniRef50_A0A022FNV0: LysR family transcriptional regulator|unclassified	0.5077451213
+UniRef50_F8JHH5	0.5077138888
+UniRef50_F8JHH5|unclassified	0.5077138888
+UniRef50_I2BVH4: Lipoprotein, putative	0.5076649669
+UniRef50_I2BVH4: Lipoprotein, putative|unclassified	0.5076649669
+UniRef50_W8R467: Membrane protein	0.5076609189
+UniRef50_W8R467: Membrane protein|unclassified	0.5076609189
+UniRef50_Q83A83: Cystathionine beta-lyase	0.5076448699
+UniRef50_Q83A83: Cystathionine beta-lyase|unclassified	0.5076448699
+UniRef50_A6H4Q3: Cytochrome c oxidase subunit 3	0.5076287346
+UniRef50_A6H4Q3: Cytochrome c oxidase subunit 3|unclassified	0.5076287346
+UniRef50_Q2VZ24: Peptidyl-tRNA hydrolase	0.5076094154
+UniRef50_Q2VZ24: Peptidyl-tRNA hydrolase|unclassified	0.5076094154
+UniRef50_D4G4T6	0.5074786272
+UniRef50_D4G4T6|unclassified	0.5074786272
+UniRef50_Q6YWQ5	0.5074747467
+UniRef50_Q6YWQ5|unclassified	0.5074747467
+UniRef50_UPI0003780D4B: hypothetical protein, partial	0.5074639972
+UniRef50_UPI0003780D4B: hypothetical protein, partial|unclassified	0.5074639972
+UniRef50_UPI0004758B17: NUDIX hydrolase	0.5074070913
+UniRef50_UPI0004758B17: NUDIX hydrolase|unclassified	0.5074070913
+UniRef50_UPI0004541A53: PREDICTED: S-adenosylmethionine synthase isoform type-1-like	0.5073678255
+UniRef50_UPI0004541A53: PREDICTED: S-adenosylmethionine synthase isoform type-1-like|unclassified	0.5073678255
+UniRef50_UPI00047851F7: peptide ABC transporter permease	0.5073593820
+UniRef50_UPI00047851F7: peptide ABC transporter permease|unclassified	0.5073593820
+UniRef50_UPI00025553EB: formate--tetrahydrofolate ligase, partial	0.5073516770
+UniRef50_UPI00025553EB: formate--tetrahydrofolate ligase, partial|unclassified	0.5073516770
+UniRef50_Q8EBC3: Sulfate/thiosulfate import ATP-binding protein CysA 1	0.5073389804
+UniRef50_Q8EBC3: Sulfate/thiosulfate import ATP-binding protein CysA 1|unclassified	0.5073389804
+UniRef50_UPI0003757282: hypothetical protein	0.5073372773
+UniRef50_UPI0003757282: hypothetical protein|unclassified	0.5073372773
+UniRef50_UPI00040EE9AD: hypothetical protein	0.5073223178
+UniRef50_UPI00040EE9AD: hypothetical protein|unclassified	0.5073223178
+UniRef50_UPI0003700077: hypothetical protein	0.5072941217
+UniRef50_UPI0003700077: hypothetical protein|unclassified	0.5072941217
+UniRef50_Q8X375	0.5072462297
+UniRef50_Q8X375|unclassified	0.5072462297
+UniRef50_J3CKN7	0.5071944894
+UniRef50_J3CKN7|unclassified	0.5071944894
+UniRef50_R4K0Q7: Cysteine synthase	0.5071647099
+UniRef50_R4K0Q7: Cysteine synthase|unclassified	0.5071647099
+UniRef50_U4VDM1	0.5071436268
+UniRef50_U4VDM1|unclassified	0.5071436268
+UniRef50_G8AVK1	0.5070993915
+UniRef50_G8AVK1|unclassified	0.5070993915
+UniRef50_UPI000470F100: hypothetical protein	0.5070979947
+UniRef50_UPI000470F100: hypothetical protein|unclassified	0.5070979947
+UniRef50_X9L854	0.5070368395
+UniRef50_X9L854|unclassified	0.5070368395
+UniRef50_UPI00036AF505: hypothetical protein	0.5069797275
+UniRef50_UPI00036AF505: hypothetical protein|unclassified	0.5069797275
+UniRef50_UPI00046D1695: hypothetical protein	0.5069585627
+UniRef50_UPI00046D1695: hypothetical protein|unclassified	0.5069585627
+UniRef50_UPI00045E8CBA: hypothetical protein	0.5069288203
+UniRef50_UPI00045E8CBA: hypothetical protein|unclassified	0.5069288203
+UniRef50_D8TQA6	0.5068929515
+UniRef50_D8TQA6|unclassified	0.5068929515
+UniRef50_D8JNQ8: TonB dependent receptor family protein	0.5068423720
+UniRef50_D8JNQ8: TonB dependent receptor family protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.5068423720
+UniRef50_Q8FQS8	0.5068316215
+UniRef50_Q8FQS8|unclassified	0.5068316215
+UniRef50_UPI000362A0E4: hypothetical protein	0.5068311925
+UniRef50_UPI000362A0E4: hypothetical protein|unclassified	0.5068311925
+UniRef50_D6AZG3: Predicted protein	0.5068074695
+UniRef50_D6AZG3: Predicted protein|unclassified	0.5068074695
+UniRef50_G8AH44	0.5067775057
+UniRef50_G8AH44|unclassified	0.5067775057
+UniRef50_UPI00037C9A8E: hypothetical protein, partial	0.5066842722
+UniRef50_UPI00037C9A8E: hypothetical protein, partial|unclassified	0.5066842722
+UniRef50_Q75W16: Phospho-2-dehydro-3-deoxyheptonate aldolase 2, chloroplastic	0.5066665859
+UniRef50_Q75W16: Phospho-2-dehydro-3-deoxyheptonate aldolase 2, chloroplastic|unclassified	0.5066665859
+UniRef50_UPI000472A485: antitermination protein NusG	0.5066438623
+UniRef50_UPI000472A485: antitermination protein NusG|unclassified	0.5066438623
+UniRef50_I0ES06: Methyl-accepting chemotaxis protein	0.5065856130
+UniRef50_I0ES06: Methyl-accepting chemotaxis protein|g__Helicobacter.s__Helicobacter_pylori	0.5065856130
+UniRef50_X1FUR4: Marine sediment metagenome DNA, contig: S03H2_L02751 (Fragment)	0.5064569881
+UniRef50_X1FUR4: Marine sediment metagenome DNA, contig: S03H2_L02751 (Fragment)|unclassified	0.5064569881
+UniRef50_UPI00047EEDC2: hypothetical protein	0.5063658656
+UniRef50_UPI00047EEDC2: hypothetical protein|unclassified	0.5063658656
+UniRef50_A3SHH8	0.5063337805
+UniRef50_A3SHH8|unclassified	0.5063337805
+UniRef50_H3V6C7: Replication initiator protein A, N-terminal domain protein	0.5062905866
+UniRef50_H3V6C7: Replication initiator protein A, N-terminal domain protein|unclassified	0.5062905866
+UniRef50_X1FI91: Marine sediment metagenome DNA, contig: S03H2_L05282 (Fragment)	0.5062569229
+UniRef50_X1FI91: Marine sediment metagenome DNA, contig: S03H2_L05282 (Fragment)|unclassified	0.5062569229
+UniRef50_UPI00020D9366: XRE family transcriptional regulator	0.5062229753
+UniRef50_UPI00020D9366: XRE family transcriptional regulator|unclassified	0.5062229753
+UniRef50_UPI0003B7001D: hypothetical protein	0.5061380624
+UniRef50_UPI0003B7001D: hypothetical protein|unclassified	0.5061380624
+UniRef50_UPI0002626E83: hypothetical protein	0.5060964570
+UniRef50_UPI0002626E83: hypothetical protein|unclassified	0.5060964570
+UniRef50_Q89ER4: Aliphatic sulfonates import ATP-binding protein SsuB	0.5060917968
+UniRef50_Q89ER4: Aliphatic sulfonates import ATP-binding protein SsuB|unclassified	0.5060917968
+UniRef50_UPI0003F822DA: ABC transporter permease	0.5060905904
+UniRef50_UPI0003F822DA: ABC transporter permease|unclassified	0.5060905904
+UniRef50_UPI0003096FDB: hypothetical protein	0.5060595917
+UniRef50_UPI0003096FDB: hypothetical protein|unclassified	0.5060595917
+UniRef50_UPI000376BC6B: hypothetical protein	0.5060476119
+UniRef50_UPI000376BC6B: hypothetical protein|unclassified	0.5060476119
+UniRef50_D4AT62	0.5059672309
+UniRef50_D4AT62|unclassified	0.5059672309
+UniRef50_UPI00035FE818: hypothetical protein	0.5059414625
+UniRef50_UPI00035FE818: hypothetical protein|unclassified	0.5059414625
+UniRef50_S8R9G6	0.5059368179
+UniRef50_S8R9G6|unclassified	0.5059368179
+UniRef50_B9IA21	0.5058218881
+UniRef50_B9IA21|unclassified	0.5058218881
+UniRef50_UPI00047B1575: hypothetical protein	0.5057304025
+UniRef50_UPI00047B1575: hypothetical protein|unclassified	0.5057304025
+UniRef50_UPI0002F37AC0: hypothetical protein	0.5057238064
+UniRef50_UPI0002F37AC0: hypothetical protein|unclassified	0.5057238064
+UniRef50_A0A009E3M7	0.5057175748
+UniRef50_A0A009E3M7|unclassified	0.5057175748
+UniRef50_B0N8M0	0.5056977130
+UniRef50_B0N8M0|unclassified	0.5056977130
+UniRef50_D5D9M2	0.5056872377
+UniRef50_D5D9M2|unclassified	0.5056872377
+UniRef50_A8LK13	0.5056796210
+UniRef50_A8LK13|unclassified	0.5056796210
+UniRef50_K9H0D1	0.5056418885
+UniRef50_K9H0D1|unclassified	0.5056418885
+UniRef50_G7WCF3	0.5055611729
+UniRef50_G7WCF3|g__Clostridium.s__Clostridium_beijerinckii	0.5055611729
+UniRef50_UPI0003F7FC45: hypothetical protein	0.5055124413
+UniRef50_UPI0003F7FC45: hypothetical protein|unclassified	0.5055124413
+UniRef50_UPI00039C9CFD: endoribonuclease L-PSP	0.5054519487
+UniRef50_UPI00039C9CFD: endoribonuclease L-PSP|unclassified	0.5054519487
+UniRef50_S3P0D9	0.5054397541
+UniRef50_S3P0D9|unclassified	0.5054397541
+UniRef50_UPI00047EB60C: hypothetical protein	0.5054148010
+UniRef50_UPI00047EB60C: hypothetical protein|unclassified	0.5054148010
+UniRef50_M7TKL8	0.5053160696
+UniRef50_M7TKL8|unclassified	0.5053160696
+UniRef50_F3SY78	0.5052970203
+UniRef50_F3SY78|unclassified	0.5052970203
+UniRef50_F0PK84: IS4 family transposase	0.5052662863
+UniRef50_F0PK84: IS4 family transposase|unclassified	0.5052662863
+UniRef50_UPI0004769E25: adhesin	0.5052070061
+UniRef50_UPI0004769E25: adhesin|unclassified	0.5052070061
+UniRef50_UPI0003B50F31: spermidine export protein MdtJ	0.5051939631
+UniRef50_UPI0003B50F31: spermidine export protein MdtJ|unclassified	0.5051939631
+UniRef50_J5K8F9: Phosphate-starvation-inducible E	0.5051845770
+UniRef50_J5K8F9: Phosphate-starvation-inducible E|unclassified	0.5051845770
+UniRef50_Q1MHS1: Ribose import ATP-binding protein RbsA 1	0.5051378432
+UniRef50_Q1MHS1: Ribose import ATP-binding protein RbsA 1|unclassified	0.5051378432
+UniRef50_K2F6J2	0.5051154894
+UniRef50_K2F6J2|unclassified	0.5051154894
+UniRef50_K0T362	0.5050505051
+UniRef50_K0T362|unclassified	0.5050505051
+UniRef50_UPI000255B4D9: citryl-CoA lyase	0.5049968978
+UniRef50_UPI000255B4D9: citryl-CoA lyase|unclassified	0.5049968978
+UniRef50_UPI0004417B1D: hypothetical protein PUNSTDRAFT_142794	0.5049900991
+UniRef50_UPI0004417B1D: hypothetical protein PUNSTDRAFT_142794|unclassified	0.5049900991
+UniRef50_A0A052JH53	0.5048780089
+UniRef50_A0A052JH53|unclassified	0.5048780089
+UniRef50_Q9FBM1: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	0.5048721368
+UniRef50_Q9FBM1: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.5048721368
+UniRef50_UPI000376E0A7: hypothetical protein	0.5048677265
+UniRef50_UPI000376E0A7: hypothetical protein|unclassified	0.5048677265
+UniRef50_UPI0003AE0414: PREDICTED: serine/arginine repetitive matrix protein 3-like	0.5047804239
+UniRef50_UPI0003AE0414: PREDICTED: serine/arginine repetitive matrix protein 3-like|unclassified	0.5047804239
+UniRef50_Q9EXI7: P-14 protein (Fragment)	0.5047585479
+UniRef50_Q9EXI7: P-14 protein (Fragment)|unclassified	0.5047585479
+UniRef50_X2LM63	0.5046491291
+UniRef50_X2LM63|unclassified	0.5046491291
+UniRef50_A9M1L3	0.5046246600
+UniRef50_A9M1L3|unclassified	0.5046246600
+UniRef50_UPI0002B44D7F: PREDICTED: thioredoxin M4, chloroplastic-like	0.5045218577
+UniRef50_UPI0002B44D7F: PREDICTED: thioredoxin M4, chloroplastic-like|unclassified	0.5045218577
+UniRef50_G2A420: Prepilin-type N-terminal cleavage/methylation domain protein	0.5045193581
+UniRef50_G2A420: Prepilin-type N-terminal cleavage/methylation domain protein|unclassified	0.5045193581
+UniRef50_Q2YQE0: Urease subunit gamma 2	0.5044964216
+UniRef50_Q2YQE0: Urease subunit gamma 2|unclassified	0.5044964216
+UniRef50_D2S427: LigA	0.5043957624
+UniRef50_D2S427: LigA|unclassified	0.5043957624
+UniRef50_UPI0003C11FE8: PREDICTED: ATP-binding cassette sub-family A member 2-like	0.5043722513
+UniRef50_UPI0003C11FE8: PREDICTED: ATP-binding cassette sub-family A member 2-like|unclassified	0.5043722513
+UniRef50_UPI0003697AAB: hypothetical protein	0.5043386782
+UniRef50_UPI0003697AAB: hypothetical protein|unclassified	0.5043386782
+UniRef50_J8BV43	0.5043247591
+UniRef50_J8BV43|unclassified	0.5043247591
+UniRef50_UPI00047BA303: cytochrome C biogenesis protein DsbD	0.5042891117
+UniRef50_UPI00047BA303: cytochrome C biogenesis protein DsbD|unclassified	0.5042891117
+UniRef50_UPI00037681F6: 50S ribosomal protein L20	0.5042637835
+UniRef50_UPI00037681F6: 50S ribosomal protein L20|unclassified	0.5042637835
+UniRef50_D0CU49: Chemotactic signal-response protein CheL	0.5041672806
+UniRef50_D0CU49: Chemotactic signal-response protein CheL|unclassified	0.5041672806
+UniRef50_R5U1I7	0.5040913648
+UniRef50_R5U1I7|unclassified	0.5040913648
+UniRef50_G8WY18	0.5040504451
+UniRef50_G8WY18|unclassified	0.5040504451
+UniRef50_UPI0003741CC4: hypothetical protein	0.5039489434
+UniRef50_UPI0003741CC4: hypothetical protein|unclassified	0.5039489434
+UniRef50_Q211X4	0.5039276892
+UniRef50_Q211X4|unclassified	0.5039276892
+UniRef50_A9E9R9: Transglycosylase SLT domain protein	0.5039203765
+UniRef50_A9E9R9: Transglycosylase SLT domain protein|unclassified	0.5039203765
+UniRef50_B5SE19: Probable trna modification gtpase protein	0.5039034297
+UniRef50_B5SE19: Probable trna modification gtpase protein|unclassified	0.5039034297
+UniRef50_UPI0003B4D266: 3-beta-hydroxy-delta(5)-steroid dehydrogenase	0.5038900639
+UniRef50_UPI0003B4D266: 3-beta-hydroxy-delta(5)-steroid dehydrogenase|unclassified	0.5038900639
+UniRef50_F4PD55: Expressed protein	0.5038225980
+UniRef50_F4PD55: Expressed protein|unclassified	0.5038225980
+UniRef50_D6B3M4	0.5037189087
+UniRef50_D6B3M4|unclassified	0.5037189087
+UniRef50_J7R096	0.5036914903
+UniRef50_J7R096|unclassified	0.5036914903
+UniRef50_UPI00026CC3BE: recombinase	0.5035962323
+UniRef50_UPI00026CC3BE: recombinase|unclassified	0.5035962323
+UniRef50_A0A011MNH9: Acyl-CoA thioester hydrolase YbgC	0.5035398986
+UniRef50_A0A011MNH9: Acyl-CoA thioester hydrolase YbgC|unclassified	0.5035398986
+UniRef50_E6KQ43: Membrane protein	0.5035273979
+UniRef50_E6KQ43: Membrane protein|unclassified	0.5035273979
+UniRef50_U1I2Z4	0.5034090922
+UniRef50_U1I2Z4|unclassified	0.5034090922
+UniRef50_UPI00037D5CFA: hypothetical protein	0.5034068059
+UniRef50_UPI00037D5CFA: hypothetical protein|unclassified	0.5034068059
+UniRef50_A1B6H8	0.5033229131
+UniRef50_A1B6H8|unclassified	0.5033229131
+UniRef50_UPI0004675E45: hydroxylamine reductase, partial	0.5033172781
+UniRef50_UPI0004675E45: hydroxylamine reductase, partial|unclassified	0.5033172781
+UniRef50_UPI0003806602: hypothetical protein	0.5032712632
+UniRef50_UPI0003806602: hypothetical protein|unclassified	0.5032712632
+UniRef50_UPI000347EF77: hypothetical protein	0.5032705393
+UniRef50_UPI000347EF77: hypothetical protein|unclassified	0.5032705393
+UniRef50_Q2GSP5	0.5031890694
+UniRef50_Q2GSP5|unclassified	0.5031890694
+UniRef50_D3V525	0.5031888277
+UniRef50_D3V525|unclassified	0.5031888277
+UniRef50_T1CPC3: Magnesium protoporphyrin chelatase (Fragment)	0.5031212013
+UniRef50_T1CPC3: Magnesium protoporphyrin chelatase (Fragment)|unclassified	0.5031212013
+UniRef50_M3Z790	0.5031114700
+UniRef50_M3Z790|unclassified	0.5031114700
+UniRef50_UPI000359EC71: PREDICTED: spidroin-1-like	0.5030641884
+UniRef50_UPI000359EC71: PREDICTED: spidroin-1-like|unclassified	0.5030641884
+UniRef50_W1ELT8	0.5029771418
+UniRef50_W1ELT8|unclassified	0.5029771418
+UniRef50_I4CC90: CRISPR-associated helicase, Cas3 family	0.5029474674
+UniRef50_I4CC90: CRISPR-associated helicase, Cas3 family|unclassified	0.5029474674
+UniRef50_Q216R0: Tripartite ATP-independent periplasmic transporter, DctQ component	0.5029447389
+UniRef50_Q216R0: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	0.5029447389
+UniRef50_W1BG23: Galactose/methyl galactoside ABC transport system, D-galactose-binding periplasmic protein MglB (TC 3.A.1.2.3)	0.5029270880
+UniRef50_W1BG23: Galactose/methyl galactoside ABC transport system, D-galactose-binding periplasmic protein MglB (TC 3.A.1.2.3)|unclassified	0.5029270880
+UniRef50_Q67PR5: Peptide deformylase	0.5029178850
+UniRef50_Q67PR5: Peptide deformylase|unclassified	0.5029178850
+UniRef50_UPI0002886298: hypothetical protein	0.5029130945
+UniRef50_UPI0002886298: hypothetical protein|unclassified	0.5029130945
+UniRef50_W8RUE5: Cytochrome B561	0.5028659265
+UniRef50_W8RUE5: Cytochrome B561|unclassified	0.5028659265
+UniRef50_UPI00047B2517: hypothetical protein	0.5028512153
+UniRef50_UPI00047B2517: hypothetical protein|unclassified	0.5028512153
+UniRef50_UPI00037B4587: hypothetical protein, partial	0.5028362824
+UniRef50_UPI00037B4587: hypothetical protein, partial|unclassified	0.5028362824
+UniRef50_UPI0003B49656: flavin reductase	0.5027979751
+UniRef50_UPI0003B49656: flavin reductase|unclassified	0.5027979751
+UniRef50_E3YDC7: Cell surface protein	0.5027796054
+UniRef50_E3YDC7: Cell surface protein|unclassified	0.5027796054
+UniRef50_Q2S834: Predicted extracellular nuclease	0.5027652086
+UniRef50_Q2S834: Predicted extracellular nuclease|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.5027652086
+UniRef50_Q9RSS3: ABC transporter, ATP-binding protein, MDR family	0.5027652086
+UniRef50_Q9RSS3: ABC transporter, ATP-binding protein, MDR family|g__Deinococcus.s__Deinococcus_radiodurans	0.5027652086
+UniRef50_UPI000377381E: hypothetical protein, partial	0.5027651853
+UniRef50_UPI000377381E: hypothetical protein, partial|unclassified	0.5027651853
+UniRef50_UPI00037C22F9: hypothetical protein, partial	0.5027633578
+UniRef50_UPI00037C22F9: hypothetical protein, partial|unclassified	0.5027633578
+UniRef50_UPI0002892C39: acetoacetyl-CoA synthetase	0.5027589959
+UniRef50_UPI0002892C39: acetoacetyl-CoA synthetase|unclassified	0.5027589959
+UniRef50_C0EF90	0.5026964652
+UniRef50_C0EF90|unclassified	0.5026964652
+UniRef50_B9QX37	0.5026788934
+UniRef50_B9QX37|unclassified	0.5026788934
+UniRef50_UPI0004702FEF: haloacid dehalogenase, partial	0.5026771618
+UniRef50_UPI0004702FEF: haloacid dehalogenase, partial|unclassified	0.5026771618
+UniRef50_UPI0003700EED: hypothetical protein	0.5026678364
+UniRef50_UPI0003700EED: hypothetical protein|unclassified	0.5026678364
+UniRef50_UPI00038409D5: PREDICTED: WAS/WASL-interacting protein family member 1-like	0.5026634040
+UniRef50_UPI00038409D5: PREDICTED: WAS/WASL-interacting protein family member 1-like|unclassified	0.5026634040
+UniRef50_UPI0003AD8CD3: PREDICTED: basic proline-rich protein-like	0.5026449105
+UniRef50_UPI0003AD8CD3: PREDICTED: basic proline-rich protein-like|unclassified	0.5026449105
+UniRef50_R0E2F9	0.5026339079
+UniRef50_R0E2F9|unclassified	0.5026339079
+UniRef50_U2Z0I3	0.5025924766
+UniRef50_U2Z0I3|unclassified	0.5025924766
+UniRef50_UPI00029A4876: hypothetical protein	0.5025778586
+UniRef50_UPI00029A4876: hypothetical protein|unclassified	0.5025778586
+UniRef50_J2LX98	0.5025087751
+UniRef50_J2LX98|unclassified	0.5025087751
+UniRef50_UPI000365D96C: hypothetical protein, partial	0.5024801912
+UniRef50_UPI000365D96C: hypothetical protein, partial|unclassified	0.5024801912
+UniRef50_K2EUH3	0.5024673230
+UniRef50_K2EUH3|unclassified	0.5024673230
+UniRef50_UPI0003C15BF1: PREDICTED: ABC transporter F family member 5-like	0.5024532644
+UniRef50_UPI0003C15BF1: PREDICTED: ABC transporter F family member 5-like|unclassified	0.5024532644
+UniRef50_UPI0001F85C4F: L-alanine dehydrogenase-like protein	0.5024417287
+UniRef50_UPI0001F85C4F: L-alanine dehydrogenase-like protein|unclassified	0.5024417287
+UniRef50_UPI0003A055C4: 8-amino-7-oxononanoate synthase	0.5024407239
+UniRef50_UPI0003A055C4: 8-amino-7-oxononanoate synthase|unclassified	0.5024407239
+UniRef50_UPI00037D6D2B: hypothetical protein	0.5022852044
+UniRef50_UPI00037D6D2B: hypothetical protein|unclassified	0.5022852044
+UniRef50_Q0FMK9: Replication protein C	0.5021950194
+UniRef50_Q0FMK9: Replication protein C|unclassified	0.5021950194
+UniRef50_UPI000462743B: hypothetical protein	0.5021919885
+UniRef50_UPI000462743B: hypothetical protein|unclassified	0.5021919885
+UniRef50_A4EM47	0.5021579849
+UniRef50_A4EM47|unclassified	0.5021579849
+UniRef50_UPI0003B73489: glycosyltransferase	0.5021375525
+UniRef50_UPI0003B73489: glycosyltransferase|unclassified	0.5021375525
+UniRef50_UPI00035EA178: hypothetical protein	0.5021339633
+UniRef50_UPI00035EA178: hypothetical protein|unclassified	0.5021339633
+UniRef50_Q7S5P5	0.5020080321
+UniRef50_Q7S5P5|unclassified	0.5020080321
+UniRef50_A0A033F307	0.5019300719
+UniRef50_A0A033F307|unclassified	0.5019300719
+UniRef50_UPI000426B838: sulfate permease	0.5019233307
+UniRef50_UPI000426B838: sulfate permease|unclassified	0.5019233307
+UniRef50_UPI00047EF995: glucan biosynthesis protein D	0.5019047029
+UniRef50_UPI00047EF995: glucan biosynthesis protein D|unclassified	0.5019047029
+UniRef50_D5QCW1: NADH dehydrogenase (Ubiquinone)	0.5018903994
+UniRef50_D5QCW1: NADH dehydrogenase (Ubiquinone)|unclassified	0.5018903994
+UniRef50_I0EQD7	0.5018627978
+UniRef50_I0EQD7|unclassified	0.5018627978
+UniRef50_UPI0001FFF0E1: ubiquinone/menaquinone biosynthesis methylase, partial	0.5016590584
+UniRef50_UPI0001FFF0E1: ubiquinone/menaquinone biosynthesis methylase, partial|unclassified	0.5016590584
+UniRef50_P46723: Delta-aminolevulinic acid dehydratase	0.5016045448
+UniRef50_P46723: Delta-aminolevulinic acid dehydratase|unclassified	0.5016045448
+UniRef50_UPI00036632E6: hypothetical protein	0.5015999441
+UniRef50_UPI00036632E6: hypothetical protein|unclassified	0.5015999441
+UniRef50_UPI0002EBD672: hypothetical protein	0.5015045135
+UniRef50_UPI0002EBD672: hypothetical protein|unclassified	0.5015045135
+UniRef50_A9LZF9: 3-isopropylmalate dehydratase small subunit	0.5014869404
+UniRef50_A9LZF9: 3-isopropylmalate dehydratase small subunit|unclassified	0.5014869404
+UniRef50_UPI000361ED49: hypothetical protein, partial	0.5014835980
+UniRef50_UPI000361ED49: hypothetical protein, partial|unclassified	0.5014835980
+UniRef50_UPI0003812E06: hypothetical protein	0.5014719243
+UniRef50_UPI0003812E06: hypothetical protein|unclassified	0.5014719243
+UniRef50_A0NUS5	0.5014578858
+UniRef50_A0NUS5|unclassified	0.5014578858
+UniRef50_T1A4F7: ISRSO5-transposase protein (Fragment)	0.5014411861
+UniRef50_T1A4F7: ISRSO5-transposase protein (Fragment)|unclassified	0.5014411861
+UniRef50_UPI00028A110F: UrtA	0.5014012846
+UniRef50_UPI00028A110F: UrtA|unclassified	0.5014012846
+UniRef50_S9MHJ0	0.5013882501
+UniRef50_S9MHJ0|unclassified	0.5013882501
+UniRef50_L0DVV1	0.5013865861
+UniRef50_L0DVV1|unclassified	0.5013865861
+UniRef50_A0A033LN59: Lactonase drp35	0.5013495231
+UniRef50_A0A033LN59: Lactonase drp35|unclassified	0.5013495231
+UniRef50_UPI000463A3EE: hypothetical protein	0.5013237752
+UniRef50_UPI000463A3EE: hypothetical protein|unclassified	0.5013237752
+UniRef50_A0A023RVA0: Haloacid dehalogenase	0.5012531328
+UniRef50_A0A023RVA0: Haloacid dehalogenase|g__Acinetobacter.s__Acinetobacter_baumannii	0.5012531328
+UniRef50_P13989: Transposon Tn7 transposition protein TnsB	0.5012531328
+UniRef50_P13989: Transposon Tn7 transposition protein TnsB|g__Acinetobacter.s__Acinetobacter_baumannii	0.5012531328
+UniRef50_L7TP46	0.5011838316
+UniRef50_L7TP46|unclassified	0.5011838316
+UniRef50_F9MS92: DNA replication and repair protein RecF domain protein	0.5011101618
+UniRef50_F9MS92: DNA replication and repair protein RecF domain protein|unclassified	0.5011101618
+UniRef50_UPI000429BA26: hypothetical protein	0.5010787675
+UniRef50_UPI000429BA26: hypothetical protein|unclassified	0.5010787675
+UniRef50_UPI00035EBA10: hypothetical protein	0.5010736147
+UniRef50_UPI00035EBA10: hypothetical protein|unclassified	0.5010736147
+UniRef50_UPI00047CBDB3: hypothetical protein	0.5010687483
+UniRef50_UPI00047CBDB3: hypothetical protein|unclassified	0.5010687483
+UniRef50_X2N5E6: Thiamine biosynthesis protein ThiQ	0.5009942209
+UniRef50_X2N5E6: Thiamine biosynthesis protein ThiQ|unclassified	0.5009942209
+UniRef50_X0SXI7: Marine sediment metagenome DNA, contig: S01H1_L05886 (Fragment)	0.5009536435
+UniRef50_X0SXI7: Marine sediment metagenome DNA, contig: S01H1_L05886 (Fragment)|unclassified	0.5009536435
+UniRef50_UPI0002D70726: hypothetical protein	0.5009271600
+UniRef50_UPI0002D70726: hypothetical protein|unclassified	0.5009271600
+UniRef50_L0KJM2	0.5008460862
+UniRef50_L0KJM2|unclassified	0.5008460862
+UniRef50_H0UKG1: Urocanate hydratase	0.5007511267
+UniRef50_H0UKG1: Urocanate hydratase|g__Propionibacterium.s__Propionibacterium_acnes	0.5007511267
+UniRef50_C5Z778	0.5007028912
+UniRef50_C5Z778|unclassified	0.5007028912
+UniRef50_D3QHM1	0.5005594030
+UniRef50_D3QHM1|unclassified	0.5005594030
+UniRef50_UPI00036B660A: hypothetical protein	0.5005359787
+UniRef50_UPI00036B660A: hypothetical protein|unclassified	0.5005359787
+UniRef50_UPI0001FFEBC1: alpha-dehydro-beta-deoxy-D-glucarate aldolase	0.5004996816
+UniRef50_UPI0001FFEBC1: alpha-dehydro-beta-deoxy-D-glucarate aldolase|unclassified	0.5004996816
+UniRef50_UPI0002555738: TRAP dicarboxylate transporter subunit DctM	0.5004853122
+UniRef50_UPI0002555738: TRAP dicarboxylate transporter subunit DctM|unclassified	0.5004853122
+UniRef50_H6SL12: Protein containing DUF497	0.5004771883
+UniRef50_H6SL12: Protein containing DUF497|unclassified	0.5004771883
+UniRef50_Q1YUP9	0.5003895967
+UniRef50_Q1YUP9|unclassified	0.5003895967
+UniRef50_UPI00037AB267: hypothetical protein, partial	0.5003464454
+UniRef50_UPI00037AB267: hypothetical protein, partial|unclassified	0.5003464454
+UniRef50_F1WMA0	0.5003346929
+UniRef50_F1WMA0|unclassified	0.5003346929
+UniRef50_R6Z6M8	0.5003218062
+UniRef50_R6Z6M8|unclassified	0.5003218062
+UniRef50_UPI000365C5E2: hypothetical protein	0.5003192417
+UniRef50_UPI000365C5E2: hypothetical protein|unclassified	0.5003192417
+UniRef50_B9KQH5	0.5002892587
+UniRef50_B9KQH5|unclassified	0.5002892587
+UniRef50_UPI000382A1F3: hypothetical protein	0.5002548707
+UniRef50_UPI000382A1F3: hypothetical protein|unclassified	0.5002548707
+UniRef50_UPI0003B67B66: MerR family transcriptional regulator	0.5002013473
+UniRef50_UPI0003B67B66: MerR family transcriptional regulator|unclassified	0.5002013473
+UniRef50_Q3JGP6	0.5001990566
+UniRef50_Q3JGP6|unclassified	0.5001990566
+UniRef50_C5M843	0.5001832869
+UniRef50_C5M843|unclassified	0.5001832869
+UniRef50_Q2W9X8	0.5001707350
+UniRef50_Q2W9X8|unclassified	0.5001707350
+UniRef50_K2BFQ6	0.5000333944
+UniRef50_K2BFQ6|unclassified	0.5000333944
+UniRef50_Q3JRN2	0.4999898474
+UniRef50_Q3JRN2|unclassified	0.4999898474
+UniRef50_K4R5F3	0.4999775629
+UniRef50_K4R5F3|unclassified	0.4999775629
+UniRef50_UPI0003B5FEB1: sulfate transporter	0.4999700358
+UniRef50_UPI0003B5FEB1: sulfate transporter|unclassified	0.4999700358
+UniRef50_UPI0002F32181: glycerophosphoryl diester phosphodiesterase	0.4999527656
+UniRef50_UPI0002F32181: glycerophosphoryl diester phosphodiesterase|unclassified	0.4999527656
+UniRef50_D6A8A0	0.4999117938
+UniRef50_D6A8A0|unclassified	0.4999117938
+UniRef50_H5T8X0	0.4998849206
+UniRef50_H5T8X0|unclassified	0.4998849206
+UniRef50_UPI0003B413EA: oxidoreductase, partial	0.4998488829
+UniRef50_UPI0003B413EA: oxidoreductase, partial|unclassified	0.4998488829
+UniRef50_UPI000471D1C7: hypothetical protein, partial	0.4998277860
+UniRef50_UPI000471D1C7: hypothetical protein, partial|unclassified	0.4998277860
+UniRef50_UPI00036A819E: hypothetical protein	0.4997769335
+UniRef50_UPI00036A819E: hypothetical protein|unclassified	0.4997769335
+UniRef50_UPI00035071FD: PREDICTED: TBC1 domain family member 13-like isoform X2	0.4997501249
+UniRef50_UPI00035071FD: PREDICTED: TBC1 domain family member 13-like isoform X2|unclassified	0.4997501249
+UniRef50_S5Z0P9: Transposase	0.4997260536
+UniRef50_S5Z0P9: Transposase|unclassified	0.4997260536
+UniRef50_E1SQ49	0.4995938608
+UniRef50_E1SQ49|unclassified	0.4995938608
+UniRef50_M7AG58	0.4995937667
+UniRef50_M7AG58|unclassified	0.4995937667
+UniRef50_UPI000361D30F: hypothetical protein	0.4995786353
+UniRef50_UPI000361D30F: hypothetical protein|unclassified	0.4995786353
+UniRef50_W7QR27: Cytochrome C oxidase	0.4995156156
+UniRef50_W7QR27: Cytochrome C oxidase|unclassified	0.4995156156
+UniRef50_D3DEH5: DnaJ-like molecular chaperone domain protein	0.4994720417
+UniRef50_D3DEH5: DnaJ-like molecular chaperone domain protein|unclassified	0.4994720417
+UniRef50_I3D9R7: von Willebrand factor type A domain protein	0.4994016936
+UniRef50_I3D9R7: von Willebrand factor type A domain protein|unclassified	0.4994016936
+UniRef50_Q6D3F5: Isopentenyl-diphosphate Delta-isomerase	0.4993481992
+UniRef50_Q6D3F5: Isopentenyl-diphosphate Delta-isomerase|unclassified	0.4993481992
+UniRef50_L1J6R7	0.4993253665
+UniRef50_L1J6R7|unclassified	0.4993253665
+UniRef50_UPI00029AA163: hypothetical protein	0.4993210606
+UniRef50_UPI00029AA163: hypothetical protein|unclassified	0.4993210606
+UniRef50_UPI00035DFCF1: hypothetical protein	0.4993147358
+UniRef50_UPI00035DFCF1: hypothetical protein|unclassified	0.4993147358
+UniRef50_R1CDP2	0.4992508772
+UniRef50_R1CDP2|unclassified	0.4992508772
+UniRef50_Q5P706: Arginine biosynthesis bifunctional protein ArgJ	0.4992502095
+UniRef50_Q5P706: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.4992502095
+UniRef50_W8SQP3	0.4992146781
+UniRef50_W8SQP3|unclassified	0.4992146781
+UniRef50_A4WZ77	0.4991960944
+UniRef50_A4WZ77|unclassified	0.4991960944
+UniRef50_UPI000225B39D: hypothetical protein	0.4991476396
+UniRef50_UPI000225B39D: hypothetical protein|unclassified	0.4991476396
+UniRef50_W7T5B3: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.4990986030
+UniRef50_W7T5B3: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.4990986030
+UniRef50_Q74GU4: Acetylglutamate kinase	0.4990916941
+UniRef50_Q74GU4: Acetylglutamate kinase|unclassified	0.4990916941
+UniRef50_J7L4M3	0.4990070813
+UniRef50_J7L4M3|unclassified	0.4990070813
+UniRef50_UPI0000D9E964: PREDICTED: hypothetical protein LOC721231	0.4990019960
+UniRef50_UPI0000D9E964: PREDICTED: hypothetical protein LOC721231|unclassified	0.4990019960
+UniRef50_G5PZR7: N-acetylglucosamine-6-phosphate deacetylase	0.4989302076
+UniRef50_G5PZR7: N-acetylglucosamine-6-phosphate deacetylase|unclassified	0.4989302076
+UniRef50_UPI000262C9A3: ABC transporter substrate-binding protein	0.4988467299
+UniRef50_UPI000262C9A3: ABC transporter substrate-binding protein|unclassified	0.4988467299
+UniRef50_B3PJA8: Protein-L-isoaspartate O-methyltransferase	0.4988278856
+UniRef50_B3PJA8: Protein-L-isoaspartate O-methyltransferase|unclassified	0.4988278856
+UniRef50_UPI0003B4B937: ribonuclease D	0.4987942468
+UniRef50_UPI0003B4B937: ribonuclease D|unclassified	0.4987942468
+UniRef50_A0A021WYJ6	0.4987898644
+UniRef50_A0A021WYJ6|unclassified	0.4987898644
+UniRef50_F6D8N1: ArsC family protein	0.4987757138
+UniRef50_F6D8N1: ArsC family protein|unclassified	0.4987757138
+UniRef50_A7MGN4	0.4987531172
+UniRef50_A7MGN4|unclassified	0.4987531172
+UniRef50_V9W1S3: Transposase ISSpo9	0.4986654568
+UniRef50_V9W1S3: Transposase ISSpo9|unclassified	0.4986654568
+UniRef50_D4GN75	0.4986237427
+UniRef50_D4GN75|unclassified	0.4986237427
+UniRef50_I4KV20	0.4986203825
+UniRef50_I4KV20|unclassified	0.4986203825
+UniRef50_UPI0003F877D7: hypothetical protein	0.4986151865
+UniRef50_UPI0003F877D7: hypothetical protein|unclassified	0.4986151865
+UniRef50_UPI00037864CC: hypothetical protein	0.4986025157
+UniRef50_UPI00037864CC: hypothetical protein|unclassified	0.4986025157
+UniRef50_UPI00026C734D: AsnC family transcriptional regulator	0.4986023689
+UniRef50_UPI00026C734D: AsnC family transcriptional regulator|unclassified	0.4986023689
+UniRef50_W8T104	0.4985948042
+UniRef50_W8T104|unclassified	0.4985948042
+UniRef50_Q2T8E2: Transposase	0.4985758882
+UniRef50_Q2T8E2: Transposase|unclassified	0.4985758882
+UniRef50_UPI000363D712: hypothetical protein	0.4985213673
+UniRef50_UPI000363D712: hypothetical protein|unclassified	0.4985213673
+UniRef50_U7YNC8	0.4985179990
+UniRef50_U7YNC8|unclassified	0.4985179990
+UniRef50_UPI0003A86DCB: sec-independent translocation protein mttA/Hcf106	0.4984654165
+UniRef50_UPI0003A86DCB: sec-independent translocation protein mttA/Hcf106|unclassified	0.4984654165
+UniRef50_Q5GU53: Transcriptional regulator	0.4983912850
+UniRef50_Q5GU53: Transcriptional regulator|unclassified	0.4983912850
+UniRef50_K7PWX4	0.4983191569
+UniRef50_K7PWX4|unclassified	0.4983191569
+UniRef50_Q4A263: Putative membrane protein	0.4983113934
+UniRef50_Q4A263: Putative membrane protein|unclassified	0.4983113934
+UniRef50_E7Q0E8: Lipoprotein	0.4983087904
+UniRef50_E7Q0E8: Lipoprotein|unclassified	0.4983087904
+UniRef50_F2DFJ9: Predicted protein (Fragment)	0.4983054497
+UniRef50_F2DFJ9: Predicted protein (Fragment)|unclassified	0.4983054497
+UniRef50_Q3IVL1: ParB-like nuclease	0.4982666349
+UniRef50_Q3IVL1: ParB-like nuclease|unclassified	0.4982666349
+UniRef50_K2KNE0: 2,4-dihydroxyhept-2-ene-1,7-dioic acid aldolase	0.4982388391
+UniRef50_K2KNE0: 2,4-dihydroxyhept-2-ene-1,7-dioic acid aldolase|unclassified	0.4982388391
+UniRef50_S3BI15	0.4981708474
+UniRef50_S3BI15|unclassified	0.4981708474
+UniRef50_UPI00037A82FB: hypothetical protein	0.4981168971
+UniRef50_UPI00037A82FB: hypothetical protein|unclassified	0.4981168971
+UniRef50_D6SCW3	0.4980928365
+UniRef50_D6SCW3|unclassified	0.4980928365
+UniRef50_W5VBF2: Membrane protein	0.4980079681
+UniRef50_W5VBF2: Membrane protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.4980079681
+UniRef50_UPI0003AD8D48: PREDICTED: vegetative cell wall protein gp1-like	0.4979969768
+UniRef50_UPI0003AD8D48: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.4979969768
+UniRef50_W6KE32: Putative ABC transporter, permease protein	0.4979851615
+UniRef50_W6KE32: Putative ABC transporter, permease protein|unclassified	0.4979851615
+UniRef50_W8S0N1	0.4979324290
+UniRef50_W8S0N1|unclassified	0.4979324290
+UniRef50_C7RVA0: Transposase IS4 family protein	0.4979183483
+UniRef50_C7RVA0: Transposase IS4 family protein|unclassified	0.4979183483
+UniRef50_Q07SD5: Probable chemoreceptor glutamine deamidase CheD	0.4978901300
+UniRef50_Q07SD5: Probable chemoreceptor glutamine deamidase CheD|unclassified	0.4978901300
+UniRef50_D8LYQ1: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_1	0.4978635307
+UniRef50_D8LYQ1: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_1|unclassified	0.4978635307
+UniRef50_E9CIL8	0.4978496885
+UniRef50_E9CIL8|unclassified	0.4978496885
+UniRef50_UPI00035D4E82: hypothetical protein	0.4977511415
+UniRef50_UPI00035D4E82: hypothetical protein|unclassified	0.4977511415
+UniRef50_J9PAT3	0.4977054368
+UniRef50_J9PAT3|unclassified	0.4977054368
+UniRef50_A9W3A9	0.4976764709
+UniRef50_A9W3A9|unclassified	0.4976764709
+UniRef50_E3YV51	0.4976562089
+UniRef50_E3YV51|unclassified	0.4976562089
+UniRef50_Q0SB50	0.4975815353
+UniRef50_Q0SB50|unclassified	0.4975815353
+UniRef50_UPI0003D30C55: sulfoxide reductase heme-binding subunit yedz	0.4975634803
+UniRef50_UPI0003D30C55: sulfoxide reductase heme-binding subunit yedz|unclassified	0.4975634803
+UniRef50_UPI00035F6A9E: hypothetical protein	0.4975310751
+UniRef50_UPI00035F6A9E: hypothetical protein|unclassified	0.4975310751
+UniRef50_B8KSJ4: Phosphate-starvation-inducible E	0.4974711686
+UniRef50_B8KSJ4: Phosphate-starvation-inducible E|unclassified	0.4974711686
+UniRef50_H3KFD5: Putative L-ribulose-5-phosphate 4-epimerase	0.4974190130
+UniRef50_H3KFD5: Putative L-ribulose-5-phosphate 4-epimerase|unclassified	0.4974190130
+UniRef50_A0A018QNM9: Glucan biosynthesis protein G	0.4973863287
+UniRef50_A0A018QNM9: Glucan biosynthesis protein G|unclassified	0.4973863287
+UniRef50_UPI00036A1614: hypothetical protein	0.4973715586
+UniRef50_UPI00036A1614: hypothetical protein|unclassified	0.4973715586
+UniRef50_A0A038GF87: Plasmid pRiA4b ORF-3 family protein	0.4973224483
+UniRef50_A0A038GF87: Plasmid pRiA4b ORF-3 family protein|unclassified	0.4973224483
+UniRef50_E9CM33	0.4973036002
+UniRef50_E9CM33|unclassified	0.4973036002
+UniRef50_Q79UU3: Bll2159 protein	0.4972856113
+UniRef50_Q79UU3: Bll2159 protein|unclassified	0.4972856113
+UniRef50_UPI000288BD9B: ubiquinol oxidase subunit II, cyanide insensitive, partial	0.4972828452
+UniRef50_UPI000288BD9B: ubiquinol oxidase subunit II, cyanide insensitive, partial|unclassified	0.4972828452
+UniRef50_F8KSC7: Phosphoglycerol transferase	0.4972650423
+UniRef50_F8KSC7: Phosphoglycerol transferase|g__Helicobacter.s__Helicobacter_pylori	0.4972650423
+UniRef50_Q8CS18	0.4972552285
+UniRef50_Q8CS18|unclassified	0.4972552285
+UniRef50_C1DPD2: Excinuclease ABC subunit c, (GIY-YIG) domain protein	0.4972029616
+UniRef50_C1DPD2: Excinuclease ABC subunit c, (GIY-YIG) domain protein|unclassified	0.4972029616
+UniRef50_D5ANJ3	0.4971424508
+UniRef50_D5ANJ3|unclassified	0.4971424508
+UniRef50_UPI00035EFE25: alkaline phosphatase	0.4971128645
+UniRef50_UPI00035EFE25: alkaline phosphatase|unclassified	0.4971128645
+UniRef50_UPI000373F182: hypothetical protein	0.4971059303
+UniRef50_UPI000373F182: hypothetical protein|unclassified	0.4971059303
+UniRef50_D8JIN7: Diguanylate cyclase (GGDEF) domain protein	0.4970178926
+UniRef50_D8JIN7: Diguanylate cyclase (GGDEF) domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.4970178926
+UniRef50_R1DSU7	0.4970126661
+UniRef50_R1DSU7|unclassified	0.4970126661
+UniRef50_N6UTA4	0.4969661072
+UniRef50_N6UTA4|unclassified	0.4969661072
+UniRef50_Q9PEV8: DNA topoisomerase 1	0.4969340371
+UniRef50_Q9PEV8: DNA topoisomerase 1|g__Neisseria.s__Neisseria_meningitidis	0.4514672686
+UniRef50_Q9PEV8: DNA topoisomerase 1|unclassified	0.0454667684
+UniRef50_UPI000225F695: NUDIX hydrolase	0.4969141485
+UniRef50_UPI000225F695: NUDIX hydrolase|unclassified	0.4969141485
+UniRef50_J9NYM1	0.4969139963
+UniRef50_J9NYM1|unclassified	0.4969139963
+UniRef50_A0A018RFP7: Lipoprotein (Fragment)	0.4968860103
+UniRef50_A0A018RFP7: Lipoprotein (Fragment)|unclassified	0.4968860103
+UniRef50_A0Q4T9: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	0.4967944079
+UniRef50_A0Q4T9: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.4967944079
+UniRef50_Q9KP38: Probable aromatic acid decarboxylase	0.4967939271
+UniRef50_Q9KP38: Probable aromatic acid decarboxylase|unclassified	0.4967939271
+UniRef50_D5C8J5: Hydrogenase maturation protein HypF	0.4967902125
+UniRef50_D5C8J5: Hydrogenase maturation protein HypF|unclassified	0.4967902125
+UniRef50_UPI00029AB9BB: hypothetical protein	0.4967709886
+UniRef50_UPI00029AB9BB: hypothetical protein|unclassified	0.4967709886
+UniRef50_B2RIJ1: GTP cyclohydrolase 1	0.4966949393
+UniRef50_B2RIJ1: GTP cyclohydrolase 1|unclassified	0.4966949393
+UniRef50_B9NXK0: Transposase	0.4965169089
+UniRef50_B9NXK0: Transposase|unclassified	0.4965169089
+UniRef50_C6XRQ2: Heat shock protein Hsp20	0.4965073186
+UniRef50_C6XRQ2: Heat shock protein Hsp20|unclassified	0.4965073186
+UniRef50_UPI000466F8EF: hypothetical protein, partial	0.4964867938
+UniRef50_UPI000466F8EF: hypothetical protein, partial|unclassified	0.4964867938
+UniRef50_A5VHC4: Transposase IS66	0.4964091800
+UniRef50_A5VHC4: Transposase IS66|unclassified	0.4964091800
+UniRef50_UPI000404546F: hypothetical protein	0.4963781642
+UniRef50_UPI000404546F: hypothetical protein|unclassified	0.4963781642
+UniRef50_UPI0004767909: (Fe-S)-binding protein	0.4963494733
+UniRef50_UPI0004767909: (Fe-S)-binding protein|unclassified	0.4963494733
+UniRef50_A0A017KTW4	0.4963445217
+UniRef50_A0A017KTW4|unclassified	0.4963445217
+UniRef50_UPI0003718DF7: hypothetical protein	0.4962846808
+UniRef50_UPI0003718DF7: hypothetical protein|unclassified	0.4962846808
+UniRef50_L8A4F6: ATP-dependent DNA helicase RecG	0.4962779156
+UniRef50_L8A4F6: ATP-dependent DNA helicase RecG|g__Streptococcus.s__Streptococcus_agalactiae	0.4962779156
+UniRef50_A0A016QSU1	0.4961070108
+UniRef50_A0A016QSU1|unclassified	0.4961070108
+UniRef50_E1SQC1: Lipoprotein	0.4960937514
+UniRef50_E1SQC1: Lipoprotein|unclassified	0.4960937514
+UniRef50_D5WSE5	0.4960758521
+UniRef50_D5WSE5|unclassified	0.4960758521
+UniRef50_X1RET4: Marine sediment metagenome DNA, contig: S06H3_S29176 (Fragment)	0.4960524575
+UniRef50_X1RET4: Marine sediment metagenome DNA, contig: S06H3_S29176 (Fragment)|unclassified	0.4960524575
+UniRef50_Q82WI7: 3-isopropylmalate dehydratase small subunit	0.4960389549
+UniRef50_Q82WI7: 3-isopropylmalate dehydratase small subunit|unclassified	0.4960389549
+UniRef50_Q5H473: IS1478 transposase	0.4959742926
+UniRef50_Q5H473: IS1478 transposase|unclassified	0.4959742926
+UniRef50_UPI00035FCDDB: hypothetical protein	0.4959187073
+UniRef50_UPI00035FCDDB: hypothetical protein|unclassified	0.4959187073
+UniRef50_E2NT91	0.4958215743
+UniRef50_E2NT91|unclassified	0.4958215743
+UniRef50_UPI0003052467: hypothetical protein	0.4958113509
+UniRef50_UPI0003052467: hypothetical protein|unclassified	0.4958113509
+UniRef50_UPI00035DD1FA: diaminopimelate decarboxylase, partial	0.4958040002
+UniRef50_UPI00035DD1FA: diaminopimelate decarboxylase, partial|unclassified	0.4958040002
+UniRef50_D5QD68: Heat shock protein Hsp20	0.4957999210
+UniRef50_D5QD68: Heat shock protein Hsp20|unclassified	0.4957999210
+UniRef50_UPI000441ABDC: PREDICTED: inactive serine/threonine-protein kinase PLK5	0.4957910319
+UniRef50_UPI000441ABDC: PREDICTED: inactive serine/threonine-protein kinase PLK5|unclassified	0.4957910319
+UniRef50_E6MWX9	0.4957807910
+UniRef50_E6MWX9|unclassified	0.4957807910
+UniRef50_UPI0003AE2BCE: PREDICTED: serine/arginine repetitive matrix protein 2-like	0.4957698989
+UniRef50_UPI0003AE2BCE: PREDICTED: serine/arginine repetitive matrix protein 2-like|unclassified	0.4957698989
+UniRef50_UPI0004009357: ABC transporter permease	0.4956541630
+UniRef50_UPI0004009357: ABC transporter permease|unclassified	0.4956541630
+UniRef50_S1HEZ1	0.4955402799
+UniRef50_S1HEZ1|unclassified	0.4955402799
+UniRef50_UPI00035E8418: hypothetical protein	0.4954910645
+UniRef50_UPI00035E8418: hypothetical protein|unclassified	0.4954910645
+UniRef50_W8UDJ4	0.4954501361
+UniRef50_W8UDJ4|unclassified	0.4954501361
+UniRef50_E2QQ95: Phage tail protein	0.4954492127
+UniRef50_E2QQ95: Phage tail protein|unclassified	0.4954492127
+UniRef50_A7MQT1	0.4954346650
+UniRef50_A7MQT1|unclassified	0.4954346650
+UniRef50_V7EQN7	0.4954200364
+UniRef50_V7EQN7|unclassified	0.4954200364
+UniRef50_A3V7E5: FixH protein, putative	0.4954104828
+UniRef50_A3V7E5: FixH protein, putative|unclassified	0.4954104828
+UniRef50_P68209: Succinyl-CoA ligase [ADP-forming] subunit alpha-1, mitochondrial	0.4953793968
+UniRef50_P68209: Succinyl-CoA ligase [ADP-forming] subunit alpha-1, mitochondrial|unclassified	0.4953793968
+UniRef50_Q32G97	0.4953273350
+UniRef50_Q32G97|unclassified	0.4953273350
+UniRef50_A0A023RGK4: Transposase	0.4952488870
+UniRef50_A0A023RGK4: Transposase|unclassified	0.4952488870
+UniRef50_X3WVZ6	0.4952037679
+UniRef50_X3WVZ6|unclassified	0.4952037679
+UniRef50_X0VL86: Marine sediment metagenome DNA, contig: S01H1_S06241	0.4951529777
+UniRef50_X0VL86: Marine sediment metagenome DNA, contig: S01H1_S06241|unclassified	0.4951529777
+UniRef50_UPI0001DD0ACE: phospholipase	0.4951486141
+UniRef50_UPI0001DD0ACE: phospholipase|unclassified	0.4951486141
+UniRef50_UPI00046AB508: ABC transporter permease	0.4951464199
+UniRef50_UPI00046AB508: ABC transporter permease|unclassified	0.4951464199
+UniRef50_A4AL45	0.4950784433
+UniRef50_A4AL45|unclassified	0.4950784433
+UniRef50_Q3A5S0: Malate dehydrogenase	0.4950689765
+UniRef50_Q3A5S0: Malate dehydrogenase|unclassified	0.4950689765
+UniRef50_A7HXM4: Phosphopantetheine adenylyltransferase	0.4950540712
+UniRef50_A7HXM4: Phosphopantetheine adenylyltransferase|unclassified	0.4950540712
+UniRef50_UPI0001913D8E: hypothetical protein, partial	0.4950529826
+UniRef50_UPI0001913D8E: hypothetical protein, partial|unclassified	0.4950529826
+UniRef50_I2QF57	0.4950468383
+UniRef50_I2QF57|unclassified	0.4950468383
+UniRef50_UPI000415AB07: hypothetical protein	0.4950287009
+UniRef50_UPI000415AB07: hypothetical protein|unclassified	0.4950287009
+UniRef50_UPI0003B71AD8: methyltransferase GidB	0.4950039814
+UniRef50_UPI0003B71AD8: methyltransferase GidB|unclassified	0.4950039814
+UniRef50_U7QWQ7	0.4949858652
+UniRef50_U7QWQ7|unclassified	0.4949858652
+UniRef50_UPI0003B6672C: 50S ribosomal protein L24, partial	0.4949439064
+UniRef50_UPI0003B6672C: 50S ribosomal protein L24, partial|unclassified	0.4949439064
+UniRef50_UPI00028947BB: lysine efflux permease	0.4949205314
+UniRef50_UPI00028947BB: lysine efflux permease|unclassified	0.4949205314
+UniRef50_R9GHM9: N-acetylmuramoyl-L-alanine amidase	0.4948893030
+UniRef50_R9GHM9: N-acetylmuramoyl-L-alanine amidase|unclassified	0.4948893030
+UniRef50_UPI0003610585: hypothetical protein	0.4947534905
+UniRef50_UPI0003610585: hypothetical protein|unclassified	0.4947534905
+UniRef50_UPI0002ED3BCC: hypothetical protein	0.4947420647
+UniRef50_UPI0002ED3BCC: hypothetical protein|unclassified	0.4947420647
+UniRef50_C5QXJ4	0.4946684031
+UniRef50_C5QXJ4|unclassified	0.4946684031
+UniRef50_I1G605	0.4946675537
+UniRef50_I1G605|unclassified	0.4946675537
+UniRef50_K6CXP7: Hemolysin-type calcium-binding region (Fragment)	0.4946236589
+UniRef50_K6CXP7: Hemolysin-type calcium-binding region (Fragment)|unclassified	0.4946236589
+UniRef50_UPI000479A529: hypothetical protein	0.4946134979
+UniRef50_UPI000479A529: hypothetical protein|unclassified	0.4946134979
+UniRef50_UPI00036BA80E: hypothetical protein	0.4946008376
+UniRef50_UPI00036BA80E: hypothetical protein|unclassified	0.4946008376
+UniRef50_UPI0003766399: hypothetical protein	0.4945925024
+UniRef50_UPI0003766399: hypothetical protein|unclassified	0.4945925024
+UniRef50_M0CM98	0.4945775796
+UniRef50_M0CM98|unclassified	0.4945775796
+UniRef50_G8SWY8: ABC-type branched-chain amino acid transport systems, periplasmic component	0.4945193794
+UniRef50_G8SWY8: ABC-type branched-chain amino acid transport systems, periplasmic component|unclassified	0.4945193794
+UniRef50_UPI0003B75CCE: LexA family transcriptional regulator	0.4945184804
+UniRef50_UPI0003B75CCE: LexA family transcriptional regulator|unclassified	0.4945184804
+UniRef50_G8MHI9	0.4944622052
+UniRef50_G8MHI9|unclassified	0.4944622052
+UniRef50_UPI000262552F: EmrB/QacA subfamily drug resistance transporter, partial	0.4943635900
+UniRef50_UPI000262552F: EmrB/QacA subfamily drug resistance transporter, partial|unclassified	0.4943635900
+UniRef50_UPI000399CFD2: type 12 methyltransferase	0.4943619126
+UniRef50_UPI000399CFD2: type 12 methyltransferase|unclassified	0.4943619126
+UniRef50_R1DNP7	0.4943061648
+UniRef50_R1DNP7|unclassified	0.4943061648
+UniRef50_L8GEZ3	0.4942940554
+UniRef50_L8GEZ3|unclassified	0.4942940554
+UniRef50_D9UD16: Predicted protein	0.4942910662
+UniRef50_D9UD16: Predicted protein|unclassified	0.4942910662
+UniRef50_X3EZW0	0.4942717807
+UniRef50_X3EZW0|unclassified	0.4942717807
+UniRef50_I0P9H0: Cellobiose phosphorylase	0.4942512629
+UniRef50_I0P9H0: Cellobiose phosphorylase|unclassified	0.4942512629
+UniRef50_UPI000381DE4F: hypothetical protein	0.4942500344
+UniRef50_UPI000381DE4F: hypothetical protein|unclassified	0.4942500344
+UniRef50_A9E4S6	0.4942466142
+UniRef50_A9E4S6|unclassified	0.4942466142
+UniRef50_M7T002	0.4941767943
+UniRef50_M7T002|unclassified	0.4941767943
+UniRef50_F0RK09: Peptidase U32	0.4940711462
+UniRef50_F0RK09: Peptidase U32|g__Deinococcus.s__Deinococcus_radiodurans	0.4940711462
+UniRef50_UPI000462FEB8: hypothetical protein, partial	0.4940531775
+UniRef50_UPI000462FEB8: hypothetical protein, partial|unclassified	0.4940531775
+UniRef50_UPI0003662A30: hypothetical protein	0.4940339171
+UniRef50_UPI0003662A30: hypothetical protein|unclassified	0.4940339171
+UniRef50_UPI00037B9E78: CoA transferase, partial	0.4940160121
+UniRef50_UPI00037B9E78: CoA transferase, partial|unclassified	0.4940160121
+UniRef50_S5XS68	0.4940160105
+UniRef50_S5XS68|unclassified	0.4940160105
+UniRef50_UPI000364C078: hypothetical protein	0.4939540645
+UniRef50_UPI000364C078: hypothetical protein|unclassified	0.4939540645
+UniRef50_UPI0003B31C25: hypothetical protein	0.4938167404
+UniRef50_UPI0003B31C25: hypothetical protein|unclassified	0.4938167404
+UniRef50_UPI00047CEECA: hypothetical protein	0.4937849391
+UniRef50_UPI00047CEECA: hypothetical protein|unclassified	0.4937849391
+UniRef50_I4B5C8: Fe-S metabolism associated SufE	0.4936040741
+UniRef50_I4B5C8: Fe-S metabolism associated SufE|unclassified	0.4936040741
+UniRef50_UPI0003B64D78: oxidoreductase	0.4936009469
+UniRef50_UPI0003B64D78: oxidoreductase|unclassified	0.4936009469
+UniRef50_F3GG06	0.4935928270
+UniRef50_F3GG06|unclassified	0.4935928270
+UniRef50_F5N2M6	0.4935429851
+UniRef50_F5N2M6|unclassified	0.4935429851
+UniRef50_UPI0001850D83: dipicolinate synthase subunit A	0.4935148606
+UniRef50_UPI0001850D83: dipicolinate synthase subunit A|unclassified	0.4935148606
+UniRef50_A4N6V6: Glucose-inhibited division protein A	0.4934918957
+UniRef50_A4N6V6: Glucose-inhibited division protein A|unclassified	0.4934918957
+UniRef50_D0XDU0: DNA-directed RNA polymerase subunit beta	0.4934616334
+UniRef50_D0XDU0: DNA-directed RNA polymerase subunit beta|g__Escherichia.s__Escherichia_coli	0.4934616334
+UniRef50_UPI0003B6D4D5: xylose ABC transporter permease	0.4934453743
+UniRef50_UPI0003B6D4D5: xylose ABC transporter permease|unclassified	0.4934453743
+UniRef50_W1JFG7	0.4933428572
+UniRef50_W1JFG7|unclassified	0.4933428572
+UniRef50_D9R3D4: Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein	0.4933399112
+UniRef50_D9R3D4: Aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein|g__Clostridium.s__Clostridium_beijerinckii	0.4933399112
+UniRef50_F9HIH2: Conserved domain protein	0.4932907562
+UniRef50_F9HIH2: Conserved domain protein|unclassified	0.4932907562
+UniRef50_UPI00036E0F7E: hypothetical protein	0.4932853147
+UniRef50_UPI00036E0F7E: hypothetical protein|unclassified	0.4932853147
+UniRef50_K4M1B4: DEAD-box ATP-dependent RNA helicase CshB	0.4932702378
+UniRef50_K4M1B4: DEAD-box ATP-dependent RNA helicase CshB|unclassified	0.4932702378
+UniRef50_V4PHE7	0.4931918634
+UniRef50_V4PHE7|unclassified	0.4931918634
+UniRef50_UPI0002000005: ATP-dependent DNA helicase	0.4931724056
+UniRef50_UPI0002000005: ATP-dependent DNA helicase|unclassified	0.4931724056
+UniRef50_UPI00036C5C1C: hypothetical protein	0.4931662841
+UniRef50_UPI00036C5C1C: hypothetical protein|unclassified	0.4931662841
+UniRef50_K2MW10	0.4931294296
+UniRef50_K2MW10|unclassified	0.4931294296
+UniRef50_UPI0004133321: DeoR faimly transcriptional regulator	0.4931016494
+UniRef50_UPI0004133321: DeoR faimly transcriptional regulator|unclassified	0.4931016494
+UniRef50_UPI0002B8EE79	0.4930904198
+UniRef50_UPI0002B8EE79|unclassified	0.4930904198
+UniRef50_UPI0003733854: hypothetical protein	0.4930466883
+UniRef50_UPI0003733854: hypothetical protein|unclassified	0.4930466883
+UniRef50_T6L9M7: Antitoxin YeeU (Fragment)	0.4930378365
+UniRef50_T6L9M7: Antitoxin YeeU (Fragment)|unclassified	0.4930378365
+UniRef50_A0A011PEV8	0.4929434202
+UniRef50_A0A011PEV8|unclassified	0.4929434202
+UniRef50_N7NA23	0.4928964665
+UniRef50_N7NA23|unclassified	0.4928964665
+UniRef50_S6PMY4: Peptide ABC transporter permease	0.4928908687
+UniRef50_S6PMY4: Peptide ABC transporter permease|unclassified	0.4928908687
+UniRef50_UPI00031B1705: hypothetical protein	0.4928437786
+UniRef50_UPI00031B1705: hypothetical protein|unclassified	0.4928437786
+UniRef50_P0A258: 1-acyl-sn-glycerol-3-phosphate acyltransferase	0.4928137466
+UniRef50_P0A258: 1-acyl-sn-glycerol-3-phosphate acyltransferase|unclassified	0.4928137466
+UniRef50_UPI00036C797A: hypothetical protein	0.4927799393
+UniRef50_UPI00036C797A: hypothetical protein|unclassified	0.4927799393
+UniRef50_Q2RI90: 3-dehydroquinate dehydratase	0.4927788368
+UniRef50_Q2RI90: 3-dehydroquinate dehydratase|unclassified	0.4927788368
+UniRef50_M4YXX3: Truncated transposase	0.4926484310
+UniRef50_M4YXX3: Truncated transposase|unclassified	0.4926484310
+UniRef50_D1WJM6	0.4926484266
+UniRef50_D1WJM6|unclassified	0.4926484266
+UniRef50_G6C6Q5	0.4926204361
+UniRef50_G6C6Q5|unclassified	0.4926204361
+UniRef50_A9ADZ8: BolA family protein	0.4925902472
+UniRef50_A9ADZ8: BolA family protein|unclassified	0.4925902472
+UniRef50_A3SS82	0.4925667181
+UniRef50_A3SS82|unclassified	0.4925667181
+UniRef50_M4U374	0.4925617319
+UniRef50_M4U374|unclassified	0.4925617319
+UniRef50_UPI0002195D2E: peptide ABC transporter ATP-binding protein	0.4925415163
+UniRef50_UPI0002195D2E: peptide ABC transporter ATP-binding protein|unclassified	0.4925415163
+UniRef50_C2L196	0.4925188783
+UniRef50_C2L196|unclassified	0.4925188783
+UniRef50_UPI0001BF6917: hypothetical protein SMAC_10596, partial	0.4924741191
+UniRef50_UPI0001BF6917: hypothetical protein SMAC_10596, partial|unclassified	0.4924741191
+UniRef50_UPI0003B59713: ABC transporter permease	0.4924208541
+UniRef50_UPI0003B59713: ABC transporter permease|unclassified	0.4924208541
+UniRef50_UPI0003660172: hypothetical protein	0.4924058424
+UniRef50_UPI0003660172: hypothetical protein|unclassified	0.4924058424
+UniRef50_UPI0003B58340: DSBA oxidoreductase	0.4923539618
+UniRef50_UPI0003B58340: DSBA oxidoreductase|unclassified	0.4923539618
+UniRef50_A7HHJ4: LigA	0.4923308075
+UniRef50_A7HHJ4: LigA|unclassified	0.4923308075
+UniRef50_T7K9A1	0.4922820301
+UniRef50_T7K9A1|unclassified	0.4922820301
+UniRef50_A1UQU8: Ribosomal RNA small subunit methyltransferase G	0.4922655180
+UniRef50_A1UQU8: Ribosomal RNA small subunit methyltransferase G|unclassified	0.4922655180
+UniRef50_F9VX55: Putative transposase (Fragment)	0.4921541956
+UniRef50_F9VX55: Putative transposase (Fragment)|unclassified	0.4921541956
+UniRef50_A0A024BWT3: RloF	0.4921259843
+UniRef50_A0A024BWT3: RloF|g__Helicobacter.s__Helicobacter_pylori	0.4921259843
+UniRef50_UPI0002628FD8: acetyl-CoA hydrolase	0.4921045327
+UniRef50_UPI0002628FD8: acetyl-CoA hydrolase|unclassified	0.4921045327
+UniRef50_UPI00035EB162: hypothetical protein	0.4919976041
+UniRef50_UPI00035EB162: hypothetical protein|unclassified	0.4919976041
+UniRef50_X5EFR9: Two-component sensor	0.4918839154
+UniRef50_X5EFR9: Two-component sensor|g__Neisseria.s__Neisseria_meningitidis	0.4918839154
+UniRef50_Z7GJQ1	0.4918387980
+UniRef50_Z7GJQ1|unclassified	0.4918387980
+UniRef50_UPI000370B19E: hypothetical protein, partial	0.4917952763
+UniRef50_UPI000370B19E: hypothetical protein, partial|unclassified	0.4917952763
+UniRef50_B9EAK4	0.4917904588
+UniRef50_B9EAK4|unclassified	0.4917904588
+UniRef50_K9WHL0: ATPase involved in chromosome partitioning	0.4917852378
+UniRef50_K9WHL0: ATPase involved in chromosome partitioning|unclassified	0.4917852378
+UniRef50_W8V9B5: Inner membrane protein YfdC	0.4917766800
+UniRef50_W8V9B5: Inner membrane protein YfdC|unclassified	0.4917766800
+UniRef50_UPI000262CFCB: glutaredoxin	0.4917402281
+UniRef50_UPI000262CFCB: glutaredoxin|unclassified	0.4917402281
+UniRef50_F5LFP9: Topology modulation protein	0.4916649769
+UniRef50_F5LFP9: Topology modulation protein|unclassified	0.4916649769
+UniRef50_U5QPT0: Prolyl endopeptidase	0.4916420846
+UniRef50_U5QPT0: Prolyl endopeptidase|g__Deinococcus.s__Deinococcus_radiodurans	0.4916420846
+UniRef50_Q2RN88: Shikimate dehydrogenase	0.4915581000
+UniRef50_Q2RN88: Shikimate dehydrogenase|unclassified	0.4915581000
+UniRef50_Q9BYC2: Succinyl-CoA:3-ketoacid coenzyme A transferase 2, mitochondrial	0.4915475962
+UniRef50_Q9BYC2: Succinyl-CoA:3-ketoacid coenzyme A transferase 2, mitochondrial|unclassified	0.4915475962
+UniRef50_B1LTL1: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.4914139932
+UniRef50_B1LTL1: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.4914139932
+UniRef50_UPI0003958469: PREDICTED: kinesin-like protein KIFC1-like, partial	0.4914004914
+UniRef50_UPI0003958469: PREDICTED: kinesin-like protein KIFC1-like, partial|unclassified	0.4914004914
+UniRef50_C4K764: Phosphopantetheine adenylyltransferase	0.4913971938
+UniRef50_C4K764: Phosphopantetheine adenylyltransferase|unclassified	0.4913971938
+UniRef50_Y0BJC5	0.4913609942
+UniRef50_Y0BJC5|unclassified	0.4913609942
+UniRef50_UPI00047DE7A5: hypothetical protein, partial	0.4913249549
+UniRef50_UPI00047DE7A5: hypothetical protein, partial|unclassified	0.4913249549
+UniRef50_Q84I56: Imidazole glycerol phosphate synthase subunit HisH (Fragment)	0.4912152536
+UniRef50_Q84I56: Imidazole glycerol phosphate synthase subunit HisH (Fragment)|unclassified	0.4912152536
+UniRef50_T1UCZ0	0.4912116978
+UniRef50_T1UCZ0|unclassified	0.4912116978
+UniRef50_W7J736	0.4911237490
+UniRef50_W7J736|unclassified	0.4911237490
+UniRef50_E3HMU2: NLPA lipoprotein family protein 2	0.4911065923
+UniRef50_E3HMU2: NLPA lipoprotein family protein 2|unclassified	0.4911065923
+UniRef50_UPI0003626774: hypothetical protein, partial	0.4910662494
+UniRef50_UPI0003626774: hypothetical protein, partial|unclassified	0.4910662494
+UniRef50_B9TNF6	0.4910321900
+UniRef50_B9TNF6|unclassified	0.4910321900
+UniRef50_Q6DQL1: Succinyl-CoA ligase [ADP-forming] subunit alpha-2, mitochondrial	0.4910130446
+UniRef50_Q6DQL1: Succinyl-CoA ligase [ADP-forming] subunit alpha-2, mitochondrial|unclassified	0.4910130446
+UniRef50_N3W7F3: WYL domain protein	0.4909446147
+UniRef50_N3W7F3: WYL domain protein|unclassified	0.4909446147
+UniRef50_UPI0003A95AEA: outer membrane-specific lipoprotein transporter subunit LolC	0.4909210512
+UniRef50_UPI0003A95AEA: outer membrane-specific lipoprotein transporter subunit LolC|unclassified	0.4909210512
+UniRef50_UPI00040BC24A: acetyltransferase	0.4908746898
+UniRef50_UPI00040BC24A: acetyltransferase|unclassified	0.4908746898
+UniRef50_UPI00046681A8: hypothetical protein	0.4907729133
+UniRef50_UPI00046681A8: hypothetical protein|unclassified	0.4907729133
+UniRef50_UPI00046CDEFF: transposase	0.4907703303
+UniRef50_UPI00046CDEFF: transposase|unclassified	0.4907703303
+UniRef50_A6LIS9: 7-cyano-7-deazaguanine synthase	0.4906886280
+UniRef50_A6LIS9: 7-cyano-7-deazaguanine synthase|unclassified	0.4906886280
+UniRef50_UPI0004746727: beta-lactamase	0.4906852647
+UniRef50_UPI0004746727: beta-lactamase|unclassified	0.4906852647
+UniRef50_F2BFB8: BolA family protein	0.4906340606
+UniRef50_F2BFB8: BolA family protein|unclassified	0.4906340606
+UniRef50_W1EAY9: L-arabinose-binding periplasmic protein AraF (TC 3.A.1.2.2)	0.4906040658
+UniRef50_W1EAY9: L-arabinose-binding periplasmic protein AraF (TC 3.A.1.2.2)|unclassified	0.4906040658
+UniRef50_W1CN16: Oligopeptide transport system permease protein OppB (TC 3.A.1.5.1)	0.4905609982
+UniRef50_W1CN16: Oligopeptide transport system permease protein OppB (TC 3.A.1.5.1)|unclassified	0.4905609982
+UniRef50_UPI00036BABDE: hypothetical protein	0.4905495493
+UniRef50_UPI00036BABDE: hypothetical protein|unclassified	0.4905495493
+UniRef50_UPI0002A4C202	0.4905485287
+UniRef50_UPI0002A4C202|unclassified	0.4905485287
+UniRef50_D7A096	0.4905050125
+UniRef50_D7A096|unclassified	0.4905050125
+UniRef50_A0A034MUI4	0.4904501681
+UniRef50_A0A034MUI4|unclassified	0.4904501681
+UniRef50_T0QZT0	0.4904410188
+UniRef50_T0QZT0|unclassified	0.4904410188
+UniRef50_UPI0004296EAD: ribosome-binding factor A	0.4904191330
+UniRef50_UPI0004296EAD: ribosome-binding factor A|unclassified	0.4904191330
+UniRef50_F6AGN7: Lipoprotein LppL	0.4903788984
+UniRef50_F6AGN7: Lipoprotein LppL|unclassified	0.4903788984
+UniRef50_UPI0004412677: hypothetical protein DICSQDRAFT_154134	0.4901960784
+UniRef50_UPI0004412677: hypothetical protein DICSQDRAFT_154134|unclassified	0.4901960784
+UniRef50_A0JTE4	0.4901672141
+UniRef50_A0JTE4|unclassified	0.4901672141
+UniRef50_UPI000473A232: amino acid ABC transporter permease	0.4901289298
+UniRef50_UPI000473A232: amino acid ABC transporter permease|unclassified	0.4901289298
+UniRef50_UPI00038168DE: hypothetical protein	0.4899634243
+UniRef50_UPI00038168DE: hypothetical protein|unclassified	0.4899634243
+UniRef50_P39149: Uracil phosphoribosyltransferase	0.4898189656
+UniRef50_P39149: Uracil phosphoribosyltransferase|unclassified	0.4898189656
+UniRef50_D6FNR4	0.4898046098
+UniRef50_D6FNR4|unclassified	0.4898046098
+UniRef50_E8SPN9	0.4897948829
+UniRef50_E8SPN9|unclassified	0.4897948829
+UniRef50_A0A050FM21: Integral membrane protein (Fragment)	0.4897754415
+UniRef50_A0A050FM21: Integral membrane protein (Fragment)|unclassified	0.4897754415
+UniRef50_H3WS55: MutS family protein	0.4897735539
+UniRef50_H3WS55: MutS family protein|unclassified	0.4897735539
+UniRef50_Q0APX5: Type III pantothenate kinase	0.4897602920
+UniRef50_Q0APX5: Type III pantothenate kinase|unclassified	0.4897602920
+UniRef50_X1QL65: Marine sediment metagenome DNA, contig: S06H3_S22072	0.4897592798
+UniRef50_X1QL65: Marine sediment metagenome DNA, contig: S06H3_S22072|unclassified	0.4897592798
+UniRef50_Q9RZR4	0.4897159647
+UniRef50_Q9RZR4|unclassified	0.4897159647
+UniRef50_Q0RAT5: Spermidine/putrescine import ATP-binding protein PotA	0.4896760156
+UniRef50_Q0RAT5: Spermidine/putrescine import ATP-binding protein PotA|unclassified	0.4896760156
+UniRef50_G7KQ59: Cytochrome c oxidase subunit 3	0.4896719825
+UniRef50_G7KQ59: Cytochrome c oxidase subunit 3|unclassified	0.4896719825
+UniRef50_UPI000366BC57: hypothetical protein	0.4895823378
+UniRef50_UPI000366BC57: hypothetical protein|unclassified	0.4895823378
+UniRef50_M9RCY6	0.4895503686
+UniRef50_M9RCY6|unclassified	0.4895503686
+UniRef50_A4WNV4: SOUL heme-binding protein	0.4894209607
+UniRef50_A4WNV4: SOUL heme-binding protein|unclassified	0.4894209607
+UniRef50_L6WLV3	0.4893847563
+UniRef50_L6WLV3|unclassified	0.4893847563
+UniRef50_R0VLG7	0.4893809620
+UniRef50_R0VLG7|unclassified	0.4893809620
+UniRef50_B9XNU9: von Willebrand factor type A	0.4893601636
+UniRef50_B9XNU9: von Willebrand factor type A|unclassified	0.4893601636
+UniRef50_UPI0003B5C7ED: histidine kinase, partial	0.4893429330
+UniRef50_UPI0003B5C7ED: histidine kinase, partial|unclassified	0.4893429330
+UniRef50_A9H0U5: Enoyl-[acyl-carrier-protein] reductase [NADH]	0.4892432869
+UniRef50_A9H0U5: Enoyl-[acyl-carrier-protein] reductase [NADH]|unclassified	0.4892432869
+UniRef50_T2QWK8	0.4891666530
+UniRef50_T2QWK8|unclassified	0.4891666530
+UniRef50_G4TCA9	0.4891502256
+UniRef50_G4TCA9|unclassified	0.4891502256
+UniRef50_A0A017HNC3	0.4891441047
+UniRef50_A0A017HNC3|unclassified	0.4891441047
+UniRef50_UPI0002488642: deoxyguanosinetriphosphate triphosphohydrolase	0.4890414254
+UniRef50_UPI0002488642: deoxyguanosinetriphosphate triphosphohydrolase|unclassified	0.4890414254
+UniRef50_W7BN95	0.4889956655
+UniRef50_W7BN95|unclassified	0.4889956655
+UniRef50_U2YLP5: Possible lipoprotein	0.4889807894
+UniRef50_U2YLP5: Possible lipoprotein|unclassified	0.4889807894
+UniRef50_A9U6Q5: Predicted protein (Fragment)	0.4889731253
+UniRef50_A9U6Q5: Predicted protein (Fragment)|unclassified	0.4889731253
+UniRef50_UPI0003702982: hypothetical protein	0.4889543717
+UniRef50_UPI0003702982: hypothetical protein|unclassified	0.4889543717
+UniRef50_UPI0003B30686: MocA family oxido-reductase/dehydratase	0.4889372634
+UniRef50_UPI0003B30686: MocA family oxido-reductase/dehydratase|unclassified	0.4889372634
+UniRef50_E1VIY8: Probable cytochrome c oxidase, subunit CcoQ	0.4889319412
+UniRef50_E1VIY8: Probable cytochrome c oxidase, subunit CcoQ|unclassified	0.4889319412
+UniRef50_P9WP46: Carbon starvation protein A homolog	0.4887585533
+UniRef50_P9WP46: Carbon starvation protein A homolog|g__Escherichia.s__Escherichia_coli	0.4887585533
+UniRef50_V1H9T9: HCP oxidoreductase, NADH-dependent	0.4887465174
+UniRef50_V1H9T9: HCP oxidoreductase, NADH-dependent|unclassified	0.4887465174
+UniRef50_W5VF97: ATPase	0.4887204583
+UniRef50_W5VF97: ATPase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.4887204583
+UniRef50_UPI00016AB3C9: ABC-transporter, partial	0.4887050778
+UniRef50_UPI00016AB3C9: ABC-transporter, partial|unclassified	0.4887050778
+UniRef50_UPI0003EB04A1: PREDICTED: golgin subfamily A member 6-like protein 2	0.4885984149
+UniRef50_UPI0003EB04A1: PREDICTED: golgin subfamily A member 6-like protein 2|unclassified	0.4885984149
+UniRef50_K1W4T5	0.4885663854
+UniRef50_K1W4T5|unclassified	0.4885663854
+UniRef50_C5N5Q6	0.4885589578
+UniRef50_C5N5Q6|unclassified	0.4885589578
+UniRef50_W2BZK3: DNA replication and repair protein RecF domain protein	0.4885369191
+UniRef50_W2BZK3: DNA replication and repair protein RecF domain protein|unclassified	0.4885369191
+UniRef50_K9QS84	0.4885217641
+UniRef50_K9QS84|unclassified	0.4885217641
+UniRef50_UPI00034BFA99: hypothetical protein	0.4883657143
+UniRef50_UPI00034BFA99: hypothetical protein|unclassified	0.4883657143
+UniRef50_K8CC28	0.4883548570
+UniRef50_K8CC28|unclassified	0.4883548570
+UniRef50_Q83B06: Aminomethyltransferase	0.4883307971
+UniRef50_Q83B06: Aminomethyltransferase|unclassified	0.4883307971
+UniRef50_G4HCQ1: Regulatory protein ArsR	0.4882941218
+UniRef50_G4HCQ1: Regulatory protein ArsR|unclassified	0.4882941218
+UniRef50_G5L5H5: ABC transporter protein IroC	0.4882875480
+UniRef50_G5L5H5: ABC transporter protein IroC|unclassified	0.4882875480
+UniRef50_W8WT79	0.4882413612
+UniRef50_W8WT79|unclassified	0.4882413612
+UniRef50_UPI000328CE6B: PREDICTED: translation initiation factor IF-2-like	0.4882269419
+UniRef50_UPI000328CE6B: PREDICTED: translation initiation factor IF-2-like|unclassified	0.4882269419
+UniRef50_A0A009NBC4	0.4882223767
+UniRef50_A0A009NBC4|unclassified	0.4882223767
+UniRef50_S1S3U4: Integral membrane protein	0.4882041025
+UniRef50_S1S3U4: Integral membrane protein|unclassified	0.4882041025
+UniRef50_UPI0003C1B40C: PREDICTED: (R,R)-butanediol dehydrogenase-like	0.4881926620
+UniRef50_UPI0003C1B40C: PREDICTED: (R,R)-butanediol dehydrogenase-like|unclassified	0.4881926620
+UniRef50_W9EJG3: Tandem lipoprotein	0.4881649340
+UniRef50_W9EJG3: Tandem lipoprotein|unclassified	0.4881649340
+UniRef50_UPI0002D58150: hypothetical protein	0.4881043542
+UniRef50_UPI0002D58150: hypothetical protein|unclassified	0.4881043542
+UniRef50_C0AX47	0.4880923830
+UniRef50_C0AX47|unclassified	0.4880923830
+UniRef50_Q81MS2: Arginine decarboxylase	0.4880544045
+UniRef50_Q81MS2: Arginine decarboxylase|unclassified	0.4880544045
+UniRef50_D9WJM2: Putative regulatory protein (Fragment)	0.4880429478
+UniRef50_D9WJM2: Putative regulatory protein (Fragment)|unclassified	0.4880429478
+UniRef50_W0IKU6	0.4879950249
+UniRef50_W0IKU6|unclassified	0.4879950249
+UniRef50_D1DEX1: Phage baseplate assembly protein	0.4879668900
+UniRef50_D1DEX1: Phage baseplate assembly protein|unclassified	0.4879668900
+UniRef50_UPI00035DBCA8: hypothetical protein	0.4879473676
+UniRef50_UPI00035DBCA8: hypothetical protein|unclassified	0.4879473676
+UniRef50_UPI00046ED0D4: spermidine/putrescine ABC transporter substrate-binding protein, partial	0.4878713942
+UniRef50_UPI00046ED0D4: spermidine/putrescine ABC transporter substrate-binding protein, partial|unclassified	0.4878713942
+UniRef50_UPI000365A17E: hypothetical protein	0.4878291510
+UniRef50_UPI000365A17E: hypothetical protein|unclassified	0.4878291510
+UniRef50_Q9RXG0: Ribonuclease R	0.4878048780
+UniRef50_Q9RXG0: Ribonuclease R|g__Deinococcus.s__Deinococcus_radiodurans	0.4878048780
+UniRef50_W5X9W4: 30S ribosomal protein S4	0.4878038618
+UniRef50_W5X9W4: 30S ribosomal protein S4|unclassified	0.4878038618
+UniRef50_UPI0003B794FC: glutathione S-transferase	0.4877995502
+UniRef50_UPI0003B794FC: glutathione S-transferase|unclassified	0.4877995502
+UniRef50_UPI0004288AEC: phosphopantetheine adenylyltransferase	0.4877917620
+UniRef50_UPI0004288AEC: phosphopantetheine adenylyltransferase|unclassified	0.4877917620
+UniRef50_A0A045ECZ1	0.4877502660
+UniRef50_A0A045ECZ1|unclassified	0.4877502660
+UniRef50_UPI00041880EE: ABC transporter ATP-binding protein	0.4877378133
+UniRef50_UPI00041880EE: ABC transporter ATP-binding protein|unclassified	0.4877378133
+UniRef50_W1YT29: Carbamoyl-phosphate synthase small chain (Fragment)	0.4876689844
+UniRef50_W1YT29: Carbamoyl-phosphate synthase small chain (Fragment)|unclassified	0.4876689844
+UniRef50_X0VCA7: Marine sediment metagenome DNA, contig: S01H1_S24363	0.4876048169
+UniRef50_X0VCA7: Marine sediment metagenome DNA, contig: S01H1_S24363|unclassified	0.4876048169
+UniRef50_UPI0004729B76: multidrug transporter MurJ	0.4876001133
+UniRef50_UPI0004729B76: multidrug transporter MurJ|unclassified	0.4876001133
+UniRef50_X0X6Z1: Marine sediment metagenome DNA, contig: S01H1_S33878 (Fragment)	0.4875751875
+UniRef50_X0X6Z1: Marine sediment metagenome DNA, contig: S01H1_S33878 (Fragment)|unclassified	0.4875751875
+UniRef50_UPI000360B0B3: hypothetical protein	0.4875188362
+UniRef50_UPI000360B0B3: hypothetical protein|unclassified	0.4875188362
+UniRef50_UPI000162844D: hypothetical protein	0.4875148296
+UniRef50_UPI000162844D: hypothetical protein|unclassified	0.4875148296
+UniRef50_Q2II13: LigA	0.4874808728
+UniRef50_Q2II13: LigA|unclassified	0.4874808728
+UniRef50_I3TRE3: Lipoprotein	0.4873390467
+UniRef50_I3TRE3: Lipoprotein|unclassified	0.4873390467
+UniRef50_U3U6P0	0.4873087867
+UniRef50_U3U6P0|unclassified	0.4873087867
+UniRef50_V4STP8	0.4872986809
+UniRef50_V4STP8|unclassified	0.4872986809
+UniRef50_W1VEW5	0.4872746464
+UniRef50_W1VEW5|unclassified	0.4872746464
+UniRef50_K0S5E6	0.4872411336
+UniRef50_K0S5E6|unclassified	0.4872411336
+UniRef50_UPI000369A472: hypothetical protein	0.4871919540
+UniRef50_UPI000369A472: hypothetical protein|unclassified	0.4871919540
+UniRef50_UPI000369CACD: hypothetical protein	0.4871250469
+UniRef50_UPI000369CACD: hypothetical protein|unclassified	0.4871250469
+UniRef50_UPI0004669DE9: malate dehydrogenase	0.4871145615
+UniRef50_UPI0004669DE9: malate dehydrogenase|unclassified	0.4871145615
+UniRef50_UPI000382DF5B: hypothetical protein	0.4870920604
+UniRef50_UPI000382DF5B: hypothetical protein|unclassified	0.4870920604
+UniRef50_UPI00036094DB: hypothetical protein	0.4870648888
+UniRef50_UPI00036094DB: hypothetical protein|unclassified	0.4870648888
+UniRef50_UPI0003600AD1: hypothetical protein	0.4870549109
+UniRef50_UPI0003600AD1: hypothetical protein|unclassified	0.4870549109
+UniRef50_A0A011NGC8: Acetyltransferase (Isoleucine patch superfamily)	0.4870290061
+UniRef50_A0A011NGC8: Acetyltransferase (Isoleucine patch superfamily)|unclassified	0.4870290061
+UniRef50_J2Y6G5	0.4870211525
+UniRef50_J2Y6G5|unclassified	0.4870211525
+UniRef50_O28437: Putative ABC transporter ATP-binding protein AF_1841	0.4869674841
+UniRef50_O28437: Putative ABC transporter ATP-binding protein AF_1841|unclassified	0.4869674841
+UniRef50_A0A038GMR5: Lipoprotein LppL	0.4869405549
+UniRef50_A0A038GMR5: Lipoprotein LppL|unclassified	0.4869405549
+UniRef50_D7I6G8: Lipoprotein LppL-related protein	0.4869405549
+UniRef50_D7I6G8: Lipoprotein LppL-related protein|unclassified	0.4869405549
+UniRef50_Q48C00: Lipoprotein LppL-related protein	0.4869405549
+UniRef50_Q48C00: Lipoprotein LppL-related protein|unclassified	0.4869405549
+UniRef50_D0D8I9	0.4869078281
+UniRef50_D0D8I9|unclassified	0.4869078281
+UniRef50_K0PHL4	0.4869001825
+UniRef50_K0PHL4|unclassified	0.4869001825
+UniRef50_S3ZBV7	0.4868549172
+UniRef50_S3ZBV7|unclassified	0.4868549172
+UniRef50_V6UQ83: Protein tyeA	0.4868287476
+UniRef50_V6UQ83: Protein tyeA|unclassified	0.4868287476
+UniRef50_V6Z0N2	0.4867677276
+UniRef50_V6Z0N2|unclassified	0.4867677276
+UniRef50_UPI000376CFD9: hypothetical protein, partial	0.4867187014
+UniRef50_UPI000376CFD9: hypothetical protein, partial|unclassified	0.4867187014
+UniRef50_K0SKT2	0.4866800459
+UniRef50_K0SKT2|unclassified	0.4866800459
+UniRef50_UPI00037B3D56: hypothetical protein	0.4866665355
+UniRef50_UPI00037B3D56: hypothetical protein|unclassified	0.4866665355
+UniRef50_D3A852	0.4866512983
+UniRef50_D3A852|unclassified	0.4866512983
+UniRef50_A3UGH3	0.4864923676
+UniRef50_A3UGH3|unclassified	0.4864923676
+UniRef50_UPI00038FD59B: Leu/Ile/Val-binding protein homolog 1	0.4863489554
+UniRef50_UPI00038FD59B: Leu/Ile/Val-binding protein homolog 1|unclassified	0.4863489554
+UniRef50_UPI000382548C: hypothetical protein	0.4863403062
+UniRef50_UPI000382548C: hypothetical protein|unclassified	0.4863403062
+UniRef50_UPI00037B2267: hypothetical protein	0.4863301240
+UniRef50_UPI00037B2267: hypothetical protein|unclassified	0.4863301240
+UniRef50_UPI00036F4FFA: hypothetical protein	0.4862937686
+UniRef50_UPI00036F4FFA: hypothetical protein|unclassified	0.4862937686
+UniRef50_W7C7S2: Molybdopterin biosynthesis protein MoeB	0.4862885890
+UniRef50_W7C7S2: Molybdopterin biosynthesis protein MoeB|unclassified	0.4862885890
+UniRef50_UPI0003478FCE: hypothetical protein	0.4862397617
+UniRef50_UPI0003478FCE: hypothetical protein|unclassified	0.4862397617
+UniRef50_UPI0003734F5F: membrane protein	0.4862329435
+UniRef50_UPI0003734F5F: membrane protein|unclassified	0.4862329435
+UniRef50_Q28R66: Anthranilate phosphoribosyltransferase	0.4862262721
+UniRef50_Q28R66: Anthranilate phosphoribosyltransferase|unclassified	0.4862262721
+UniRef50_UPI000375D23B: hypothetical protein, partial	0.4862113196
+UniRef50_UPI000375D23B: hypothetical protein, partial|unclassified	0.4862113196
+UniRef50_E4ZD23	0.4861964277
+UniRef50_E4ZD23|unclassified	0.4861964277
+UniRef50_UPI0003EE9DD9: hypothetical protein	0.4861803277
+UniRef50_UPI0003EE9DD9: hypothetical protein|unclassified	0.4861803277
+UniRef50_UPI00047B6F6B: RNA polymerase sigma-70 factor family protein	0.4861679641
+UniRef50_UPI00047B6F6B: RNA polymerase sigma-70 factor family protein|unclassified	0.4861679641
+UniRef50_UPI0003B58018: endonuclease	0.4861021691
+UniRef50_UPI0003B58018: endonuclease|unclassified	0.4861021691
+UniRef50_V9LC16: Glyoxalase domain-containing protein 5-like protein	0.4859179943
+UniRef50_V9LC16: Glyoxalase domain-containing protein 5-like protein|unclassified	0.4859179943
+UniRef50_R0GA52: Dehydrogenase	0.4859094201
+UniRef50_R0GA52: Dehydrogenase|unclassified	0.4859094201
+UniRef50_J2DPI4	0.4858594943
+UniRef50_J2DPI4|unclassified	0.4858594943
+UniRef50_UPI0002E46BCB: hypothetical protein	0.4857668274
+UniRef50_UPI0002E46BCB: hypothetical protein|unclassified	0.4857668274
+UniRef50_X6G7G7	0.4857004201
+UniRef50_X6G7G7|unclassified	0.4857004201
+UniRef50_P18005: UPF0380 protein YubP	0.4856947129
+UniRef50_P18005: UPF0380 protein YubP|unclassified	0.4856947129
+UniRef50_F4MZK9	0.4856358425
+UniRef50_F4MZK9|unclassified	0.4856358425
+UniRef50_Q0DA69: Os06g0673700 protein	0.4856236380
+UniRef50_Q0DA69: Os06g0673700 protein|unclassified	0.4856236380
+UniRef50_J9PAQ7	0.4855948409
+UniRef50_J9PAQ7|unclassified	0.4855948409
+UniRef50_G8VGQ5	0.4855820532
+UniRef50_G8VGQ5|unclassified	0.4855820532
+UniRef50_Q50974: 3-isopropylmalate dehydratase small subunit (Fragment)	0.4855576406
+UniRef50_Q50974: 3-isopropylmalate dehydratase small subunit (Fragment)|unclassified	0.4855576406
+UniRef50_A8FVE9: Cbb3-type cytochrome oxidase component	0.4855382507
+UniRef50_A8FVE9: Cbb3-type cytochrome oxidase component|unclassified	0.4855382507
+UniRef50_UPI000468AC2E: hypothetical protein	0.4855288581
+UniRef50_UPI000468AC2E: hypothetical protein|unclassified	0.4855288581
+UniRef50_V4KQA6: Oxidoreductase	0.4855254760
+UniRef50_V4KQA6: Oxidoreductase|unclassified	0.4855254760
+UniRef50_UPI000468D7B8: ABC transporter ATPase	0.4855205240
+UniRef50_UPI000468D7B8: ABC transporter ATPase|unclassified	0.4855205240
+UniRef50_G2L7T9	0.4854492592
+UniRef50_G2L7T9|unclassified	0.4854492592
+UniRef50_UPI000329D36D: PREDICTED: glutamate/aspartate transport ATP-binding protein GltL-like	0.4854077536
+UniRef50_UPI000329D36D: PREDICTED: glutamate/aspartate transport ATP-binding protein GltL-like|unclassified	0.4854077536
+UniRef50_F3IW30: Binding-protein dependent transport system inner membrane protein (Fragment)	0.4853060682
+UniRef50_F3IW30: Binding-protein dependent transport system inner membrane protein (Fragment)|unclassified	0.4853060682
+UniRef50_S9S8V3: TRAP-type mannitol/chloroaromatic compound transport system, small permease component	0.4852742427
+UniRef50_S9S8V3: TRAP-type mannitol/chloroaromatic compound transport system, small permease component|unclassified	0.4852742427
+UniRef50_Q8N9Z2: Coiled-coil domain-containing protein 71L	0.4852510075
+UniRef50_Q8N9Z2: Coiled-coil domain-containing protein 71L|unclassified	0.4852510075
+UniRef50_UPI00046EAE2F: hypothetical protein	0.4852423723
+UniRef50_UPI00046EAE2F: hypothetical protein|unclassified	0.4852423723
+UniRef50_U3R1J4: 3-hydroxyacyl-CoA dehydrogenase	0.4852013586
+UniRef50_U3R1J4: 3-hydroxyacyl-CoA dehydrogenase|g__Acinetobacter.s__Acinetobacter_baumannii	0.4852013586
+UniRef50_A0A017HH69: Type cbb3 cytochrome oxidase biogenesis protein CcoH	0.4851175783
+UniRef50_A0A017HH69: Type cbb3 cytochrome oxidase biogenesis protein CcoH|unclassified	0.4851175783
+UniRef50_O61070: C85 (Fragment)	0.4850639036
+UniRef50_O61070: C85 (Fragment)|unclassified	0.4850639036
+UniRef50_Z9YN78	0.4850287130
+UniRef50_Z9YN78|unclassified	0.4850287130
+UniRef50_UPI00039B2C8B: hypothetical protein, partial	0.4849901753
+UniRef50_UPI00039B2C8B: hypothetical protein, partial|unclassified	0.4849901753
+UniRef50_A0A058ZI44	0.4847504011
+UniRef50_A0A058ZI44|unclassified	0.4847504011
+UniRef50_I2Y6F2	0.4847498922
+UniRef50_I2Y6F2|unclassified	0.4847498922
+UniRef50_Q9RZH5	0.4846879601
+UniRef50_Q9RZH5|unclassified	0.4846879601
+UniRef50_UPI0001BF71FE: hypothetical protein SMAC_09973	0.4846866546
+UniRef50_UPI0001BF71FE: hypothetical protein SMAC_09973|unclassified	0.4846866546
+UniRef50_UPI000416295C: hypothetical protein	0.4846843474
+UniRef50_UPI000416295C: hypothetical protein|unclassified	0.4846843474
+UniRef50_X7E0D4	0.4846718583
+UniRef50_X7E0D4|unclassified	0.4846718583
+UniRef50_A0A011Q530	0.4845862770
+UniRef50_A0A011Q530|unclassified	0.4845862770
+UniRef50_UPI000369A6CD: hypothetical protein	0.4844378399
+UniRef50_UPI000369A6CD: hypothetical protein|unclassified	0.4844378399
+UniRef50_UPI00037C3240: hypothetical protein	0.4844310989
+UniRef50_UPI00037C3240: hypothetical protein|unclassified	0.4844310989
+UniRef50_S6TE21: FlhB domain-containing protein (Fragment)	0.4844095700
+UniRef50_S6TE21: FlhB domain-containing protein (Fragment)|unclassified	0.4844095700
+UniRef50_Q50228: Formamidase	0.4843904153
+UniRef50_Q50228: Formamidase|unclassified	0.4843904153
+UniRef50_UPI0003B47736: ABC transporter	0.4843751600
+UniRef50_UPI0003B47736: ABC transporter|unclassified	0.4843751600
+UniRef50_UPI0003B7A32E: chromosome partitioning protein ParB	0.4843629695
+UniRef50_UPI0003B7A32E: chromosome partitioning protein ParB|unclassified	0.4843629695
+UniRef50_UPI0003F913CD: hypothetical protein	0.4842692391
+UniRef50_UPI0003F913CD: hypothetical protein|unclassified	0.4842692391
+UniRef50_G7M1Z6: Methyl-accepting chemotaxis sensory transducer with Cache sensor	0.4842615012
+UniRef50_G7M1Z6: Methyl-accepting chemotaxis sensory transducer with Cache sensor|g__Clostridium.s__Clostridium_beijerinckii	0.4842615012
+UniRef50_Q9RYP2: Adenine deaminase-related protein	0.4842604950
+UniRef50_Q9RYP2: Adenine deaminase-related protein|unclassified	0.4842604950
+UniRef50_Q6ZG43	0.4842593748
+UniRef50_Q6ZG43|unclassified	0.4842593748
+UniRef50_G9UAR6: Nitrite extrusion protein (Nitrite facilitator)	0.4842514178
+UniRef50_G9UAR6: Nitrite extrusion protein (Nitrite facilitator)|unclassified	0.4842514178
+UniRef50_S3ANF2	0.4842443157
+UniRef50_S3ANF2|unclassified	0.4842443157
+UniRef50_I4CQD2	0.4842206419
+UniRef50_I4CQD2|unclassified	0.4842206419
+UniRef50_C8RZ73: Invasion associated locus B family protein	0.4841352885
+UniRef50_C8RZ73: Invasion associated locus B family protein|unclassified	0.4841352885
+UniRef50_X6FBN5	0.4841104892
+UniRef50_X6FBN5|unclassified	0.4841104892
+UniRef50_UPI000465E0AA: cell division protein DivIVA	0.4841073305
+UniRef50_UPI000465E0AA: cell division protein DivIVA|unclassified	0.4841073305
+UniRef50_A0A059IMA0	0.4841001119
+UniRef50_A0A059IMA0|unclassified	0.4841001119
+UniRef50_W9TBJ6	0.4840603173
+UniRef50_W9TBJ6|unclassified	0.4840603173
+UniRef50_E3D365	0.4840254599
+UniRef50_E3D365|unclassified	0.4840254599
+UniRef50_UPI0003314780	0.4840009338
+UniRef50_UPI0003314780|unclassified	0.4840009338
+UniRef50_A3V9W6	0.4839897874
+UniRef50_A3V9W6|unclassified	0.4839897874
+UniRef50_A0A034LNA6	0.4839736075
+UniRef50_A0A034LNA6|unclassified	0.4839736075
+UniRef50_Q3SVG3	0.4839728673
+UniRef50_Q3SVG3|unclassified	0.4839728673
+UniRef50_UPI0004413D73: hypothetical protein AURDEDRAFT_163573	0.4839381076
+UniRef50_UPI0004413D73: hypothetical protein AURDEDRAFT_163573|unclassified	0.4839381076
+UniRef50_W1DRU1: Probable membrane protein YPO2654	0.4839357108
+UniRef50_W1DRU1: Probable membrane protein YPO2654|unclassified	0.4839357108
+UniRef50_D0D077: Thioesterase superfamily protein	0.4839131703
+UniRef50_D0D077: Thioesterase superfamily protein|unclassified	0.4839131703
+UniRef50_UPI000471C41C: spermidine/putrescine ABC transporter ATPase	0.4838743692
+UniRef50_UPI000471C41C: spermidine/putrescine ABC transporter ATPase|unclassified	0.4838743692
+UniRef50_B9XNC8: 40-residue YVTN family beta-propeller repeat protein	0.4838684203
+UniRef50_B9XNC8: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.4838684203
+UniRef50_UPI0003678022: hypothetical protein	0.4838554674
+UniRef50_UPI0003678022: hypothetical protein|unclassified	0.4838554674
+UniRef50_K8IYR4: LemA domain protein	0.4838387625
+UniRef50_K8IYR4: LemA domain protein|unclassified	0.4838387625
+UniRef50_I1ZTG5	0.4837964869
+UniRef50_I1ZTG5|unclassified	0.4837964869
+UniRef50_UPI0003AE164D: PREDICTED: collagen alpha-1(I) chain-like	0.4837929366
+UniRef50_UPI0003AE164D: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.4837929366
+UniRef50_R4JG97: Phage portal vertex protein	0.4837521397
+UniRef50_R4JG97: Phage portal vertex protein|unclassified	0.4837521397
+UniRef50_A3MWA6: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.4835655084
+UniRef50_A3MWA6: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.4835655084
+UniRef50_Q2QVT1: Retrotransposon protein, putative, unclassified	0.4835589942
+UniRef50_Q2QVT1: Retrotransposon protein, putative, unclassified|unclassified	0.4835589942
+UniRef50_UPI0003C45913: PREDICTED: RING finger protein 26-like	0.4835578174
+UniRef50_UPI0003C45913: PREDICTED: RING finger protein 26-like|unclassified	0.4835578174
+UniRef50_UPI000362FE1B: hypothetical protein	0.4834868407
+UniRef50_UPI000362FE1B: hypothetical protein|unclassified	0.4834868407
+UniRef50_C9S6Y4: Predicted protein	0.4834827322
+UniRef50_C9S6Y4: Predicted protein|unclassified	0.4834827322
+UniRef50_B6JIG6	0.4834784722
+UniRef50_B6JIG6|unclassified	0.4834784722
+UniRef50_A4BHS1: Phenol hydroxylase, putative	0.4834659797
+UniRef50_A4BHS1: Phenol hydroxylase, putative|unclassified	0.4834659797
+UniRef50_Q07UC0: NAD-dependent epimerase/dehydratase	0.4834598702
+UniRef50_Q07UC0: NAD-dependent epimerase/dehydratase|unclassified	0.4834598702
+UniRef50_Q9RYX0: Pyridoxamine kinase	0.4834039583
+UniRef50_Q9RYX0: Pyridoxamine kinase|unclassified	0.4834039583
+UniRef50_K4KKP2	0.4833525269
+UniRef50_K4KKP2|unclassified	0.4833525269
+UniRef50_T0YAT0: Type I restriction-modification system restriction subunit (Fragment)	0.4833479767
+UniRef50_T0YAT0: Type I restriction-modification system restriction subunit (Fragment)|unclassified	0.4833479767
+UniRef50_I5BS23: Hydrogenobyrinic acid a,c-diamide cobaltochelatase	0.4831724953
+UniRef50_I5BS23: Hydrogenobyrinic acid a,c-diamide cobaltochelatase|unclassified	0.4831724953
+UniRef50_S1GRI3	0.4831412784
+UniRef50_S1GRI3|unclassified	0.4831412784
+UniRef50_UPI0002489F97: hemolysin-type calcium-binding region, partial	0.4831323941
+UniRef50_UPI0002489F97: hemolysin-type calcium-binding region, partial|unclassified	0.4831323941
+UniRef50_E1ZP75	0.4830867920
+UniRef50_E1ZP75|unclassified	0.4830867920
+UniRef50_F3ZE23: Putative cold shock protein	0.4830096075
+UniRef50_F3ZE23: Putative cold shock protein|unclassified	0.4830096075
+UniRef50_UPI0004409999: hypothetical protein FOMMEDRAFT_159117	0.4830006223
+UniRef50_UPI0004409999: hypothetical protein FOMMEDRAFT_159117|unclassified	0.4830006223
+UniRef50_W2EP97	0.4829130438
+UniRef50_W2EP97|unclassified	0.4829130438
+UniRef50_J3HRH0: TRAP-type C4-dicarboxylate transport system, small permease component	0.4829108530
+UniRef50_J3HRH0: TRAP-type C4-dicarboxylate transport system, small permease component|unclassified	0.4829108530
+UniRef50_UPI00035037FE: PREDICTED: 39S ribosomal protein L36, mitochondrial, partial	0.4829084202
+UniRef50_UPI00035037FE: PREDICTED: 39S ribosomal protein L36, mitochondrial, partial|unclassified	0.4829084202
+UniRef50_S8JG29	0.4829001288
+UniRef50_S8JG29|unclassified	0.4829001288
+UniRef50_A9D6C3	0.4828724680
+UniRef50_A9D6C3|unclassified	0.4828724680
+UniRef50_D6CV88	0.4828628787
+UniRef50_D6CV88|unclassified	0.4828628787
+UniRef50_Q11C96	0.4828521084
+UniRef50_Q11C96|unclassified	0.4828521084
+UniRef50_F2EH00: Predicted protein (Fragment)	0.4827666661
+UniRef50_F2EH00: Predicted protein (Fragment)|unclassified	0.4827666661
+UniRef50_A3PHR3	0.4827650773
+UniRef50_A3PHR3|unclassified	0.4827650773
+UniRef50_UPI000363CF07: hypothetical protein, partial	0.4827519077
+UniRef50_UPI000363CF07: hypothetical protein, partial|unclassified	0.4827519077
+UniRef50_UPI0002BBB2C8: hypothetical protein, partial	0.4827454218
+UniRef50_UPI0002BBB2C8: hypothetical protein, partial|unclassified	0.4827454218
+UniRef50_Q1GFS9	0.4827164020
+UniRef50_Q1GFS9|unclassified	0.4827164020
+UniRef50_C7BHZ0	0.4827001814
+UniRef50_C7BHZ0|unclassified	0.4827001814
+UniRef50_UPI00035E02BE: hypothetical protein	0.4826621769
+UniRef50_UPI00035E02BE: hypothetical protein|unclassified	0.4826621769
+UniRef50_UPI000478596D: hypothetical protein, partial	0.4826579283
+UniRef50_UPI000478596D: hypothetical protein, partial|unclassified	0.4826579283
+UniRef50_UPI00028925A9: sugar ABC transporter permease	0.4826246310
+UniRef50_UPI00028925A9: sugar ABC transporter permease|unclassified	0.4826246310
+UniRef50_UPI000382D11F: MULTISPECIES: hypothetical protein	0.4826146252
+UniRef50_UPI000382D11F: MULTISPECIES: hypothetical protein|unclassified	0.4826146252
+UniRef50_J7I7M7: ATPase P (Fragment)	0.4824936472
+UniRef50_J7I7M7: ATPase P (Fragment)|unclassified	0.4824936472
+UniRef50_UPI000366DABE: hypothetical protein	0.4824754623
+UniRef50_UPI000366DABE: hypothetical protein|unclassified	0.4824754623
+UniRef50_UPI000376B2F3: hypothetical protein	0.4824750845
+UniRef50_UPI000376B2F3: hypothetical protein|unclassified	0.4824750845
+UniRef50_D3D6E8	0.4824548677
+UniRef50_D3D6E8|unclassified	0.4824548677
+UniRef50_B9KJP4	0.4824301174
+UniRef50_B9KJP4|unclassified	0.4824301174
+UniRef50_M4VFS0: NAD-dependent epimerase/dehydratase	0.4823002530
+UniRef50_M4VFS0: NAD-dependent epimerase/dehydratase|unclassified	0.4823002530
+UniRef50_UPI00016A436A: ABC transporter related protein, partial	0.4822451820
+UniRef50_UPI00016A436A: ABC transporter related protein, partial|unclassified	0.4822451820
+UniRef50_V6ZDW0: GTP-binding TypA domain protein	0.4822281169
+UniRef50_V6ZDW0: GTP-binding TypA domain protein|unclassified	0.4822281169
+UniRef50_UPI00036310BA: hypothetical protein	0.4822070743
+UniRef50_UPI00036310BA: hypothetical protein|unclassified	0.4822070743
+UniRef50_Q8VSX0: AgrC (Fragment)	0.4821950100
+UniRef50_Q8VSX0: AgrC (Fragment)|unclassified	0.4821950100
+UniRef50_X3WN19	0.4820735662
+UniRef50_X3WN19|unclassified	0.4820735662
+UniRef50_UPI00047224C9: hypothetical protein	0.4820497347
+UniRef50_UPI00047224C9: hypothetical protein|unclassified	0.4820497347
+UniRef50_J8V1E5	0.4820298734
+UniRef50_J8V1E5|unclassified	0.4820298734
+UniRef50_X2LRM6	0.4820250372
+UniRef50_X2LRM6|unclassified	0.4820250372
+UniRef50_V9F6K0	0.4819277108
+UniRef50_V9F6K0|unclassified	0.4819277108
+UniRef50_UPI0002DB231A: peptide ABC transporter ATP-binding protein	0.4819135153
+UniRef50_UPI0002DB231A: peptide ABC transporter ATP-binding protein|unclassified	0.4819135153
+UniRef50_UPI000381F0C9: resolvase	0.4818266457
+UniRef50_UPI000381F0C9: resolvase|unclassified	0.4818266457
+UniRef50_UPI00047D6EDF: fasciclin	0.4818072379
+UniRef50_UPI00047D6EDF: fasciclin|unclassified	0.4818072379
+UniRef50_UPI0004408D12: hypothetical protein FOMMEDRAFT_106237	0.4817928388
+UniRef50_UPI0004408D12: hypothetical protein FOMMEDRAFT_106237|unclassified	0.4817928388
+UniRef50_D5BYF8	0.4817418402
+UniRef50_D5BYF8|unclassified	0.4817418402
+UniRef50_UPI00016C4BB1: hypothetical protein	0.4816518193
+UniRef50_UPI00016C4BB1: hypothetical protein|unclassified	0.4816518193
+UniRef50_UPI0004675CB0: hypothetical protein	0.4816187055
+UniRef50_UPI0004675CB0: hypothetical protein|unclassified	0.4816187055
+UniRef50_A7Z4X0: L-threonine 3-dehydrogenase	0.4815863099
+UniRef50_A7Z4X0: L-threonine 3-dehydrogenase|unclassified	0.4815863099
+UniRef50_UPI000468814A: hypothetical protein	0.4815663913
+UniRef50_UPI000468814A: hypothetical protein|unclassified	0.4815663913
+UniRef50_UPI00034F4AA0: PREDICTED: glyoxalase domain-containing protein 5-like isoform X2	0.4815518184
+UniRef50_UPI00034F4AA0: PREDICTED: glyoxalase domain-containing protein 5-like isoform X2|unclassified	0.4815518184
+UniRef50_UPI0003AED982: PREDICTED: actin cytoskeleton-regulatory complex protein PAN1-like isoform X1	0.4815012604
+UniRef50_UPI0003AED982: PREDICTED: actin cytoskeleton-regulatory complex protein PAN1-like isoform X1|unclassified	0.4815012604
+UniRef50_Q2C7C0	0.4814122935
+UniRef50_Q2C7C0|unclassified	0.4814122935
+UniRef50_W8WQM9	0.4813728039
+UniRef50_W8WQM9|unclassified	0.4813728039
+UniRef50_C6M3G0	0.4813690163
+UniRef50_C6M3G0|unclassified	0.4813690163
+UniRef50_B9CMG2	0.4813543292
+UniRef50_B9CMG2|unclassified	0.4813543292
+UniRef50_N9QZZ8	0.4813268939
+UniRef50_N9QZZ8|unclassified	0.4813268939
+UniRef50_H6RV56: ABC transporter substrate-binding protein	0.4813045380
+UniRef50_H6RV56: ABC transporter substrate-binding protein|unclassified	0.4813045380
+UniRef50_T8ZCQ9	0.4812829794
+UniRef50_T8ZCQ9|unclassified	0.4812829794
+UniRef50_R2V8F8	0.4812567479
+UniRef50_R2V8F8|unclassified	0.4812567479
+UniRef50_M7YQ60	0.4812319538
+UniRef50_M7YQ60|unclassified	0.4812319538
+UniRef50_UPI000369DCC7: hypothetical protein	0.4812267087
+UniRef50_UPI000369DCC7: hypothetical protein|unclassified	0.4812267087
+UniRef50_UPI000370E751: hypothetical protein	0.4812214458
+UniRef50_UPI000370E751: hypothetical protein|unclassified	0.4812214458
+UniRef50_UPI0003037B19: AsnC family transcriptional regulator	0.4812075400
+UniRef50_UPI0003037B19: AsnC family transcriptional regulator|unclassified	0.4812075400
+UniRef50_A6UJH5	0.4811662039
+UniRef50_A6UJH5|unclassified	0.4811662039
+UniRef50_B5XSL3	0.4811585692
+UniRef50_B5XSL3|unclassified	0.4811585692
+UniRef50_A4X0E6	0.4811439872
+UniRef50_A4X0E6|unclassified	0.4811439872
+UniRef50_D2N5J5	0.4811215267
+UniRef50_D2N5J5|unclassified	0.4811215267
+UniRef50_T0TXF7: Sakacin A production response regulator	0.4811010423
+UniRef50_T0TXF7: Sakacin A production response regulator|unclassified	0.4811010423
+UniRef50_A8ILJ8: Transcription factor protein	0.4810743143
+UniRef50_A8ILJ8: Transcription factor protein|unclassified	0.4810743143
+UniRef50_K0R441	0.4810004810
+UniRef50_K0R441|unclassified	0.4810004810
+UniRef50_UPI0003B68BAD: single-stranded DNA-binding protein	0.4809929595
+UniRef50_UPI0003B68BAD: single-stranded DNA-binding protein|unclassified	0.4809929595
+UniRef50_X1MF22: Marine sediment metagenome DNA, contig: S06H3_L01019 (Fragment)	0.4809638617
+UniRef50_X1MF22: Marine sediment metagenome DNA, contig: S06H3_L01019 (Fragment)|unclassified	0.4809638617
+UniRef50_UPI0002197747: haloacid dehalogenase	0.4809443051
+UniRef50_UPI0002197747: haloacid dehalogenase|unclassified	0.4809443051
+UniRef50_B7UWB1	0.4809309915
+UniRef50_B7UWB1|unclassified	0.4809309915
+UniRef50_D9X5G2	0.4809113411
+UniRef50_D9X5G2|unclassified	0.4809113411
+UniRef50_UPI000360CA3F: hypothetical protein	0.4808239305
+UniRef50_UPI000360CA3F: hypothetical protein|unclassified	0.4808239305
+UniRef50_A0A023V7M1: ATPase	0.4807692308
+UniRef50_A0A023V7M1: ATPase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.4807692308
+UniRef50_UPI00046E6B79: hypothetical protein, partial	0.4807148340
+UniRef50_UPI00046E6B79: hypothetical protein, partial|unclassified	0.4807148340
+UniRef50_F9PJB0: Conserved domain protein	0.4806823685
+UniRef50_F9PJB0: Conserved domain protein|unclassified	0.4806823685
+UniRef50_S9R6G8: Flp pilus assembly protein TadB	0.4806136699
+UniRef50_S9R6G8: Flp pilus assembly protein TadB|unclassified	0.4806136699
+UniRef50_Q1QU77: Protein-L-isoaspartate O-methyltransferase	0.4805125897
+UniRef50_Q1QU77: Protein-L-isoaspartate O-methyltransferase|unclassified	0.4805125897
+UniRef50_C1N3Y8: Predicted protein (Fragment)	0.4804792884
+UniRef50_C1N3Y8: Predicted protein (Fragment)|unclassified	0.4804792884
+UniRef50_UPI00035E2496: hypothetical protein	0.4804402231
+UniRef50_UPI00035E2496: hypothetical protein|unclassified	0.4804402231
+UniRef50_UPI000248D3FD: Fosmidomycin resistance protein	0.4803705233
+UniRef50_UPI000248D3FD: Fosmidomycin resistance protein|unclassified	0.4803705233
+UniRef50_Q47826	0.4803010742
+UniRef50_Q47826|unclassified	0.4803010742
+UniRef50_UPI0003B7A9E3: methionine aminopeptidase	0.4802951398
+UniRef50_UPI0003B7A9E3: methionine aminopeptidase|unclassified	0.4802951398
+UniRef50_UPI000477854D: hypothetical protein	0.4802311744
+UniRef50_UPI000477854D: hypothetical protein|unclassified	0.4802311744
+UniRef50_UPI00036D09DC: hypothetical protein, partial	0.4802162500
+UniRef50_UPI00036D09DC: hypothetical protein, partial|unclassified	0.4802162500
+UniRef50_A3VVT6	0.4801908293
+UniRef50_A3VVT6|unclassified	0.4801908293
+UniRef50_B9C0V9	0.4801734390
+UniRef50_B9C0V9|unclassified	0.4801734390
+UniRef50_UPI0003AD8595: PREDICTED: myosin heavy chain IB-like	0.4801632760
+UniRef50_UPI0003AD8595: PREDICTED: myosin heavy chain IB-like|unclassified	0.4801632760
+UniRef50_B5EXJ5: 7-cyano-7-deazaguanine synthase	0.4800675808
+UniRef50_B5EXJ5: 7-cyano-7-deazaguanine synthase|unclassified	0.4800675808
+UniRef50_UPI0003618EAB: hypothetical protein, partial	0.4800605092
+UniRef50_UPI0003618EAB: hypothetical protein, partial|unclassified	0.4800605092
+UniRef50_UPI0000166E7D: COG2124: Cytochrome P450	0.4798831096
+UniRef50_UPI0000166E7D: COG2124: Cytochrome P450|unclassified	0.4798831096
+UniRef50_U1H5M2	0.4797938727
+UniRef50_U1H5M2|unclassified	0.4797938727
+UniRef50_R6AN55	0.4797838629
+UniRef50_R6AN55|unclassified	0.4797838629
+UniRef50_UPI0001744350: glycine hydroxymethyltransferase	0.4797339361
+UniRef50_UPI0001744350: glycine hydroxymethyltransferase|unclassified	0.4797339361
+UniRef50_UPI000373152C: hypothetical protein, partial	0.4796920874
+UniRef50_UPI000373152C: hypothetical protein, partial|unclassified	0.4796920874
+UniRef50_UPI0004796392: hypothetical protein	0.4796892791
+UniRef50_UPI0004796392: hypothetical protein|unclassified	0.4796892791
+UniRef50_I1YIX1: ISPsy13, transposase OrfB	0.4796772715
+UniRef50_I1YIX1: ISPsy13, transposase OrfB|unclassified	0.4796772715
+UniRef50_UPI00037609E9: hypothetical protein	0.4796575989
+UniRef50_UPI00037609E9: hypothetical protein|unclassified	0.4796575989
+UniRef50_UPI0003601444: hypothetical protein	0.4796310292
+UniRef50_UPI0003601444: hypothetical protein|unclassified	0.4796310292
+UniRef50_D9UE00: Predicted protein	0.4796134736
+UniRef50_D9UE00: Predicted protein|unclassified	0.4796134736
+UniRef50_Q7ULU1: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	0.4795902470
+UniRef50_Q7ULU1: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.4795902470
+UniRef50_UPI0002890A9C: regulatory protein ArsR	0.4795790401
+UniRef50_UPI0002890A9C: regulatory protein ArsR|unclassified	0.4795790401
+UniRef50_G1XZ93	0.4795113542
+UniRef50_G1XZ93|unclassified	0.4795113542
+UniRef50_B0JTA0: Proline-rich extensin-like family protein	0.4794708889
+UniRef50_B0JTA0: Proline-rich extensin-like family protein|unclassified	0.4794708889
+UniRef50_UPI000255ACBB: hypothetical protein	0.4794203715
+UniRef50_UPI000255ACBB: hypothetical protein|unclassified	0.4794203715
+UniRef50_G8UVE7: TraW	0.4794126999
+UniRef50_G8UVE7: TraW|unclassified	0.4794126999
+UniRef50_Q1CSQ2: Glycine--tRNA ligase beta subunit	0.4793863854
+UniRef50_Q1CSQ2: Glycine--tRNA ligase beta subunit|g__Helicobacter.s__Helicobacter_pylori	0.4793863854
+UniRef50_S2XSU2	0.4793863854
+UniRef50_S2XSU2|unclassified	0.4793863854
+UniRef50_V4JGQ7	0.4791777921
+UniRef50_V4JGQ7|unclassified	0.4791777921
+UniRef50_E8JHI3	0.4791034002
+UniRef50_E8JHI3|unclassified	0.4791034002
+UniRef50_E2NSV7	0.4790979579
+UniRef50_E2NSV7|unclassified	0.4790979579
+UniRef50_J2E3A4	0.4790498311
+UniRef50_J2E3A4|unclassified	0.4790498311
+UniRef50_UPI00035EF194: hypothetical protein	0.4790331101
+UniRef50_UPI00035EF194: hypothetical protein|unclassified	0.4790331101
+UniRef50_UPI000368D66E: hypothetical protein, partial	0.4790009525
+UniRef50_UPI000368D66E: hypothetical protein, partial|unclassified	0.4790009525
+UniRef50_UPI0003EC3EA8: PREDICTED: isobutyryl-CoA dehydrogenase, mitochondrial-like	0.4789066415
+UniRef50_UPI0003EC3EA8: PREDICTED: isobutyryl-CoA dehydrogenase, mitochondrial-like|unclassified	0.4789066415
+UniRef50_T0XU49	0.4788569117
+UniRef50_T0XU49|unclassified	0.4788569117
+UniRef50_Q8K9X9: NADH-quinone oxidoreductase subunit J	0.4788126873
+UniRef50_Q8K9X9: NADH-quinone oxidoreductase subunit J|unclassified	0.4788126873
+UniRef50_Q0AKK2	0.4787014487
+UniRef50_Q0AKK2|unclassified	0.4787014487
+UniRef50_UPI00037DDF9A: hypothetical protein	0.4786997812
+UniRef50_UPI00037DDF9A: hypothetical protein|unclassified	0.4786997812
+UniRef50_UPI0003A9466B: hypothetical protein	0.4786979416
+UniRef50_UPI0003A9466B: hypothetical protein|unclassified	0.4786979416
+UniRef50_R6LPG9: L-ribulose-5-phosphate 4-epimerase	0.4785912791
+UniRef50_R6LPG9: L-ribulose-5-phosphate 4-epimerase|unclassified	0.4785912791
+UniRef50_UPI0002193452: hypothetical protein, partial	0.4785528354
+UniRef50_UPI0002193452: hypothetical protein, partial|unclassified	0.4785528354
+UniRef50_R0LYS9: Excinuclease ABC subunit C	0.4785445067
+UniRef50_R0LYS9: Excinuclease ABC subunit C|unclassified	0.4785445067
+UniRef50_Q5VQ95: PE-PGRS FAMILY PROTEIN-like	0.4785184061
+UniRef50_Q5VQ95: PE-PGRS FAMILY PROTEIN-like|unclassified	0.4785184061
+UniRef50_UPI0003483AFA: hypothetical protein	0.4784780695
+UniRef50_UPI0003483AFA: hypothetical protein|unclassified	0.4784780695
+UniRef50_B5GIN7	0.4784688995
+UniRef50_B5GIN7|unclassified	0.4784688995
+UniRef50_F0Y4X0	0.4782569878
+UniRef50_F0Y4X0|unclassified	0.4782569878
+UniRef50_UPI0002002B64: methylpurine-DNA glycosylase (MPG)	0.4782273334
+UniRef50_UPI0002002B64: methylpurine-DNA glycosylase (MPG)|unclassified	0.4782273334
+UniRef50_UPI0003C4AE88: PREDICTED: basic proline-rich protein-like	0.4781954228
+UniRef50_UPI0003C4AE88: PREDICTED: basic proline-rich protein-like|unclassified	0.4781954228
+UniRef50_F2E3R1: Predicted protein (Fragment)	0.4781457904
+UniRef50_F2E3R1: Predicted protein (Fragment)|unclassified	0.4781457904
+UniRef50_UPI000467A396: hypothetical protein	0.4780947939
+UniRef50_UPI000467A396: hypothetical protein|unclassified	0.4780947939
+UniRef50_UPI0003B393FA: RNA pseudouridine synthase	0.4780702945
+UniRef50_UPI0003B393FA: RNA pseudouridine synthase|unclassified	0.4780702945
+UniRef50_UPI00039590CC: PREDICTED: vegetative cell wall protein gp1-like	0.4780255606
+UniRef50_UPI00039590CC: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.4780255606
+UniRef50_UPI0004071BD5: helicase UvrB	0.4780000933
+UniRef50_UPI0004071BD5: helicase UvrB|unclassified	0.4780000933
+UniRef50_A7HSL2: Ribosomal RNA small subunit methyltransferase G	0.4779872558
+UniRef50_A7HSL2: Ribosomal RNA small subunit methyltransferase G|unclassified	0.4779872558
+UniRef50_M4X1W1	0.4779805283
+UniRef50_M4X1W1|unclassified	0.4779805283
+UniRef50_UPI00036113F0: hypothetical protein, partial	0.4779429483
+UniRef50_UPI00036113F0: hypothetical protein, partial|unclassified	0.4779429483
+UniRef50_R9MT80	0.4779226298
+UniRef50_R9MT80|unclassified	0.4779226298
+UniRef50_K0XFY6	0.4778560079
+UniRef50_K0XFY6|unclassified	0.4778560079
+UniRef50_P54374: Shikimate dehydrogenase	0.4778374246
+UniRef50_P54374: Shikimate dehydrogenase|unclassified	0.4778374246
+UniRef50_S4X6Q1: BglG family transcriptional antiterminator	0.4777830865
+UniRef50_S4X6Q1: BglG family transcriptional antiterminator|g__Staphylococcus.s__Staphylococcus_aureus	0.4777830865
+UniRef50_T2SKF0	0.4777830865
+UniRef50_T2SKF0|g__Helicobacter.s__Helicobacter_pylori	0.4777830865
+UniRef50_U6HE09: Ubiquinol cytochrome c reductase cytochrome c1	0.4777611874
+UniRef50_U6HE09: Ubiquinol cytochrome c reductase cytochrome c1|unclassified	0.4777611874
+UniRef50_E3YYU5: Stage III sporulation protein E (Fragment)	0.4777360553
+UniRef50_E3YYU5: Stage III sporulation protein E (Fragment)|unclassified	0.4777360553
+UniRef50_UPI000225ADDB: large conductance mechanosensitive channel protein MscL	0.4777179238
+UniRef50_UPI000225ADDB: large conductance mechanosensitive channel protein MscL|unclassified	0.4777179238
+UniRef50_UPI000470E625: hypothetical protein	0.4776961214
+UniRef50_UPI000470E625: hypothetical protein|unclassified	0.4776961214
+UniRef50_F8SXZ2: Phage shock protein	0.4775925076
+UniRef50_F8SXZ2: Phage shock protein|unclassified	0.4775925076
+UniRef50_B4W250	0.4775046038
+UniRef50_B4W250|unclassified	0.4775046038
+UniRef50_UPI000479CDCE: 2-dehydro-3-deoxyglucarate aldolase	0.4774410355
+UniRef50_UPI000479CDCE: 2-dehydro-3-deoxyglucarate aldolase|unclassified	0.4774410355
+UniRef50_D5ULF2	0.4773892640
+UniRef50_D5ULF2|unclassified	0.4773892640
+UniRef50_UPI00035E5736: hypothetical protein	0.4773542803
+UniRef50_UPI00035E5736: hypothetical protein|unclassified	0.4773542803
+UniRef50_UPI00037E3E52: hypothetical protein	0.4772936058
+UniRef50_UPI00037E3E52: hypothetical protein|unclassified	0.4772936058
+UniRef50_UPI0003629198: hypothetical protein	0.4772374156
+UniRef50_UPI0003629198: hypothetical protein|unclassified	0.4772374156
+UniRef50_Q16DF6	0.4771831503
+UniRef50_Q16DF6|unclassified	0.4771831503
+UniRef50_UPI000225B5DA: magnesium chelatase; methanol dehydrogenase regulator, partial	0.4771606570
+UniRef50_UPI000225B5DA: magnesium chelatase; methanol dehydrogenase regulator, partial|unclassified	0.4771606570
+UniRef50_UPI0003A2F50C: hypothetical protein	0.4771577739
+UniRef50_UPI0003A2F50C: hypothetical protein|unclassified	0.4771577739
+UniRef50_UPI0004640768: hypothetical protein	0.4771545431
+UniRef50_UPI0004640768: hypothetical protein|unclassified	0.4771545431
+UniRef50_UPI0003779FCC: hypothetical protein	0.4770712434
+UniRef50_UPI0003779FCC: hypothetical protein|unclassified	0.4770712434
+UniRef50_UPI0003B3B683: NnrU protein	0.4770066319
+UniRef50_UPI0003B3B683: NnrU protein|unclassified	0.4770066319
+UniRef50_A4N187	0.4769186999
+UniRef50_A4N187|unclassified	0.4769186999
+UniRef50_E4G8P9: 1,3-beta-galactosyl-N-acetylhexosamine phosphorylase	0.4768717215
+UniRef50_E4G8P9: 1,3-beta-galactosyl-N-acetylhexosamine phosphorylase|g__Propionibacterium.s__Propionibacterium_acnes	0.4768717215
+UniRef50_A0A059L7Z0: Thiolase	0.4768706063
+UniRef50_A0A059L7Z0: Thiolase|unclassified	0.4768706063
+UniRef50_W1EUE0	0.4768007997
+UniRef50_W1EUE0|unclassified	0.4768007997
+UniRef50_UPI00035D6F39: hypothetical protein	0.4768002462
+UniRef50_UPI00035D6F39: hypothetical protein|unclassified	0.4768002462
+UniRef50_P29928: Uroporphyrinogen-III C-methyltransferase	0.4767923935
+UniRef50_P29928: Uroporphyrinogen-III C-methyltransferase|unclassified	0.4767923935
+UniRef50_UPI00037DCF6D: hypothetical protein	0.4767505052
+UniRef50_UPI00037DCF6D: hypothetical protein|unclassified	0.4767505052
+UniRef50_A4G4I6	0.4767283646
+UniRef50_A4G4I6|unclassified	0.4767283646
+UniRef50_I3X100	0.4767279812
+UniRef50_I3X100|unclassified	0.4767279812
+UniRef50_J4J838: Proline/glycine betaine ABC transporter periplasmic protein	0.4766588024
+UniRef50_J4J838: Proline/glycine betaine ABC transporter periplasmic protein|unclassified	0.4766588024
+UniRef50_E2PCU1: FimV domain protein	0.4766444233
+UniRef50_E2PCU1: FimV domain protein|g__Neisseria.s__Neisseria_meningitidis	0.4766444233
+UniRef50_UPI00016B132D: hypothetical protein	0.4765165237
+UniRef50_UPI00016B132D: hypothetical protein|unclassified	0.4765165237
+UniRef50_UPI0003B44FBC: N-acetyl-anhydromuranmyl-L-alanine amidase, partial	0.4763993842
+UniRef50_UPI0003B44FBC: N-acetyl-anhydromuranmyl-L-alanine amidase, partial|unclassified	0.4763993842
+UniRef50_S6WS77: Inner-membrane translocator	0.4763838716
+UniRef50_S6WS77: Inner-membrane translocator|unclassified	0.4763838716
+UniRef50_J1ZV36	0.4763491858
+UniRef50_J1ZV36|unclassified	0.4763491858
+UniRef50_U7DV00	0.4763304293
+UniRef50_U7DV00|unclassified	0.4763304293
+UniRef50_A0A059IQ76	0.4762418633
+UniRef50_A0A059IQ76|unclassified	0.4762418633
+UniRef50_UPI0003EB5840: hypothetical protein	0.4762366810
+UniRef50_UPI0003EB5840: hypothetical protein|unclassified	0.4762366810
+UniRef50_M9RII4	0.4762338658
+UniRef50_M9RII4|unclassified	0.4762338658
+UniRef50_T1DDM1: Cysteine desulfurase activator complex subunit SufB (Fragment)	0.4762063363
+UniRef50_T1DDM1: Cysteine desulfurase activator complex subunit SufB (Fragment)|unclassified	0.4762063363
+UniRef50_T1BJ38: Cysteine desulfurase activator complex subunit SufB (Fragment)	0.4761912595
+UniRef50_T1BJ38: Cysteine desulfurase activator complex subunit SufB (Fragment)|unclassified	0.4761912595
+UniRef50_I0ID84	0.4761676172
+UniRef50_I0ID84|unclassified	0.4761676172
+UniRef50_R8DIT2	0.4760561408
+UniRef50_R8DIT2|unclassified	0.4760561408
+UniRef50_UPI0002485FFA: sulfite reductase	0.4760472639
+UniRef50_UPI0002485FFA: sulfite reductase|unclassified	0.4760472639
+UniRef50_UPI000463B864: lysine transporter LysE	0.4760387326
+UniRef50_UPI000463B864: lysine transporter LysE|unclassified	0.4760387326
+UniRef50_UPI0003B6F7FF: aspartyl-tRNA amidotransferase subunit B	0.4758983044
+UniRef50_UPI0003B6F7FF: aspartyl-tRNA amidotransferase subunit B|unclassified	0.4758983044
+UniRef50_D2ZBC7	0.4758941109
+UniRef50_D2ZBC7|unclassified	0.4758941109
+UniRef50_A3N3F8: 3-dehydroquinate dehydratase	0.4758907791
+UniRef50_A3N3F8: 3-dehydroquinate dehydratase|unclassified	0.4758907791
+UniRef50_UPI00036DAC41: hypothetical protein	0.4758738488
+UniRef50_UPI00036DAC41: hypothetical protein|unclassified	0.4758738488
+UniRef50_UPI000169AC01: secretion system apparatus protein SsaV	0.4758605977
+UniRef50_UPI000169AC01: secretion system apparatus protein SsaV|unclassified	0.4758605977
+UniRef50_I7HK23: Cystathionine beta-synthase (Fragment)	0.4758400995
+UniRef50_I7HK23: Cystathionine beta-synthase (Fragment)|unclassified	0.4758400995
+UniRef50_UPI000343F687	0.4757991076
+UniRef50_UPI000343F687|unclassified	0.4757991076
+UniRef50_P57260: NADH-quinone oxidoreductase subunit J	0.4757565234
+UniRef50_P57260: NADH-quinone oxidoreductase subunit J|unclassified	0.4757565234
+UniRef50_V5VIE7: Transposase	0.4757457087
+UniRef50_V5VIE7: Transposase|unclassified	0.4757457087
+UniRef50_UPI0002B4CFBA: PREDICTED: methionine synthase-like	0.4757392544
+UniRef50_UPI0002B4CFBA: PREDICTED: methionine synthase-like|unclassified	0.4757392544
+UniRef50_A0A017HHT3	0.4757220455
+UniRef50_A0A017HHT3|unclassified	0.4757220455
+UniRef50_F5PUK6	0.4757064415
+UniRef50_F5PUK6|unclassified	0.4757064415
+UniRef50_UPI00046A6374: hypothetical protein	0.4756996990
+UniRef50_UPI00046A6374: hypothetical protein|unclassified	0.4756996990
+UniRef50_U7DJV4: GIY-YIG nuclease	0.4756897726
+UniRef50_U7DJV4: GIY-YIG nuclease|unclassified	0.4756897726
+UniRef50_G2ZE48	0.4756446777
+UniRef50_G2ZE48|unclassified	0.4756446777
+UniRef50_W5XH95: Phosphoesterase PA-phosphatase related protein	0.4755844076
+UniRef50_W5XH95: Phosphoesterase PA-phosphatase related protein|unclassified	0.4755844076
+UniRef50_UPI000382BFA8: hypothetical protein, partial	0.4755632259
+UniRef50_UPI000382BFA8: hypothetical protein, partial|unclassified	0.4755632259
+UniRef50_V8QDN6	0.4755551702
+UniRef50_V8QDN6|unclassified	0.4755551702
+UniRef50_UPI00036F7268: MULTISPECIES: 30S ribosomal protein S17	0.4755300179
+UniRef50_UPI00036F7268: MULTISPECIES: 30S ribosomal protein S17|unclassified	0.4755300179
+UniRef50_W4UDR2: Glucoamylase S1/S2	0.4755222495
+UniRef50_W4UDR2: Glucoamylase S1/S2|unclassified	0.4755222495
+UniRef50_E9AHU1: Putative proteophosphoglycan ppg3	0.4754089442
+UniRef50_E9AHU1: Putative proteophosphoglycan ppg3|unclassified	0.4754089442
+UniRef50_UPI0003B794A2: transcriptional regulator	0.4753953313
+UniRef50_UPI0003B794A2: transcriptional regulator|unclassified	0.4753953313
+UniRef50_Q93I64: BchO (Fragment)	0.4753760968
+UniRef50_Q93I64: BchO (Fragment)|unclassified	0.4753760968
+UniRef50_UPI00037A43CA: hypothetical protein	0.4753744744
+UniRef50_UPI00037A43CA: hypothetical protein|unclassified	0.4753744744
+UniRef50_Q55141: Acetolactate synthase small subunit	0.4753575960
+UniRef50_Q55141: Acetolactate synthase small subunit|unclassified	0.4753575960
+UniRef50_B7LQ50: Protein Ves	0.4753485535
+UniRef50_B7LQ50: Protein Ves|unclassified	0.4753485535
+UniRef50_K2FJH8	0.4753455467
+UniRef50_K2FJH8|unclassified	0.4753455467
+UniRef50_C5D363: Ribosomal RNA small subunit methyltransferase A	0.4753364267
+UniRef50_C5D363: Ribosomal RNA small subunit methyltransferase A|unclassified	0.4753364267
+UniRef50_G0GBP1: WD40 repeat-containing protein	0.4752851711
+UniRef50_G0GBP1: WD40 repeat-containing protein|unclassified	0.4752851711
+UniRef50_UPI000380509C: hypothetical protein	0.4752695835
+UniRef50_UPI000380509C: hypothetical protein|unclassified	0.4752695835
+UniRef50_UPI000440C4B4: PREDICTED: glutaredoxin 3-like	0.4752067596
+UniRef50_UPI000440C4B4: PREDICTED: glutaredoxin 3-like|unclassified	0.4752067596
+UniRef50_K8BPK1: TRAP-type C4-dicarboxylate transport system,large permease component	0.4751582696
+UniRef50_K8BPK1: TRAP-type C4-dicarboxylate transport system,large permease component|unclassified	0.4751582696
+UniRef50_UPI00032A143E: PREDICTED: citrate lyase subunit beta-like protein-like	0.4750915693
+UniRef50_UPI00032A143E: PREDICTED: citrate lyase subunit beta-like protein-like|unclassified	0.4750915693
+UniRef50_UPI00040D932D: DNA processing protein DprA	0.4750339438
+UniRef50_UPI00040D932D: DNA processing protein DprA|unclassified	0.4750339438
+UniRef50_UPI00039CCA94: 3-hydroxybutyryl-CoA dehydratase	0.4750327521
+UniRef50_UPI00039CCA94: 3-hydroxybutyryl-CoA dehydratase|unclassified	0.4750327521
+UniRef50_D3NVZ1	0.4750003703
+UniRef50_D3NVZ1|unclassified	0.4750003703
+UniRef50_V6KIY8	0.4749862246
+UniRef50_V6KIY8|unclassified	0.4749862246
+UniRef50_Q16AG3	0.4749842355
+UniRef50_Q16AG3|unclassified	0.4749842355
+UniRef50_M7E3D8	0.4749758012
+UniRef50_M7E3D8|unclassified	0.4749758012
+UniRef50_UPI000405E993: acetyltransferase	0.4749445917
+UniRef50_UPI000405E993: acetyltransferase|unclassified	0.4749445917
+UniRef50_UPI000371B5AE: hypothetical protein	0.4749433831
+UniRef50_UPI000371B5AE: hypothetical protein|unclassified	0.4749433831
+UniRef50_UPI0003634A2A: hypothetical protein	0.4749182386
+UniRef50_UPI0003634A2A: hypothetical protein|unclassified	0.4749182386
+UniRef50_H8MNC5: Metallo-beta-lactamase family protein	0.4748469466
+UniRef50_H8MNC5: Metallo-beta-lactamase family protein|unclassified	0.4748469466
+UniRef50_Q03QA4: S-adenosylmethionine synthase	0.4747426328
+UniRef50_Q03QA4: S-adenosylmethionine synthase|unclassified	0.4747426328
+UniRef50_F7PCA4	0.4747364480
+UniRef50_F7PCA4|unclassified	0.4747364480
+UniRef50_UPI00035ECF65: S-fimbrial protein subunit SfaH	0.4747185129
+UniRef50_UPI00035ECF65: S-fimbrial protein subunit SfaH|unclassified	0.4747185129
+UniRef50_U6R0Z4	0.4747073998
+UniRef50_U6R0Z4|unclassified	0.4747073998
+UniRef50_UPI0003B7B529: DNA mismatch repair protein MutS	0.4746744300
+UniRef50_UPI0003B7B529: DNA mismatch repair protein MutS|unclassified	0.4746744300
+UniRef50_B8FK17: Putative flagellar rod assembly protein/muramidase FlgJ	0.4746435954
+UniRef50_B8FK17: Putative flagellar rod assembly protein/muramidase FlgJ|unclassified	0.4746435954
+UniRef50_X1SD71: Marine sediment metagenome DNA, contig: S12H4_L01869 (Fragment)	0.4746312616
+UniRef50_X1SD71: Marine sediment metagenome DNA, contig: S12H4_L01869 (Fragment)|unclassified	0.4746312616
+UniRef50_Q92V27: UPF0337 protein RB0906	0.4746173664
+UniRef50_Q92V27: UPF0337 protein RB0906|unclassified	0.4746173664
+UniRef50_F0Y0F0	0.4746103776
+UniRef50_F0Y0F0|unclassified	0.4746103776
+UniRef50_U6MTZ5	0.4746047980
+UniRef50_U6MTZ5|unclassified	0.4746047980
+UniRef50_UPI0003694B89: hypothetical protein	0.4745924472
+UniRef50_UPI0003694B89: hypothetical protein|unclassified	0.4745924472
+UniRef50_Q4L8X4: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.4745682375
+UniRef50_Q4L8X4: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.4745682375
+UniRef50_UPI00036176E7: hypothetical protein, partial	0.4745263730
+UniRef50_UPI00036176E7: hypothetical protein, partial|unclassified	0.4745263730
+UniRef50_D1ZK87: Putative glutathione-dependent formaldehyde-activating enzyme	0.4744705437
+UniRef50_D1ZK87: Putative glutathione-dependent formaldehyde-activating enzyme|unclassified	0.4744705437
+UniRef50_UPI0003B63BE9: camphor resistance protein CrcB	0.4744179891
+UniRef50_UPI0003B63BE9: camphor resistance protein CrcB|unclassified	0.4744179891
+UniRef50_C1N038: Predicted protein	0.4744144013
+UniRef50_C1N038: Predicted protein|unclassified	0.4744144013
+UniRef50_UPI00045E79E3: hypothetical protein	0.4743915770
+UniRef50_UPI00045E79E3: hypothetical protein|unclassified	0.4743915770
+UniRef50_W7PN57	0.4743785161
+UniRef50_W7PN57|unclassified	0.4743785161
+UniRef50_V4IKU1	0.4743577983
+UniRef50_V4IKU1|unclassified	0.4743577983
+UniRef50_UPI00036E5905: citrate lyase	0.4742952018
+UniRef50_UPI00036E5905: citrate lyase|unclassified	0.4742952018
+UniRef50_UPI0002FA9486: hypothetical protein	0.4742390869
+UniRef50_UPI0002FA9486: hypothetical protein|unclassified	0.4742390869
+UniRef50_F3F749: ACT domain-containing protein (Fragment)	0.4741990517
+UniRef50_F3F749: ACT domain-containing protein (Fragment)|unclassified	0.4741990517
+UniRef50_Q69PS6: Thioredoxin reductase NTRA	0.4741852085
+UniRef50_Q69PS6: Thioredoxin reductase NTRA|unclassified	0.4741852085
+UniRef50_D9UC90: Primosome assembly protein (Fragment)	0.4741848670
+UniRef50_D9UC90: Primosome assembly protein (Fragment)|unclassified	0.4741848670
+UniRef50_UPI0003B65714: blue-light sensor BLUF	0.4741186787
+UniRef50_UPI0003B65714: blue-light sensor BLUF|unclassified	0.4741186787
+UniRef50_UPI0003B37CEF: hypothetical protein	0.4739913310
+UniRef50_UPI0003B37CEF: hypothetical protein|unclassified	0.4739913310
+UniRef50_J9URB5	0.4739894604
+UniRef50_J9URB5|unclassified	0.4739894604
+UniRef50_UPI00038EEF34: PREDICTED: keratinocyte proline-rich protein-like	0.4739457002
+UniRef50_UPI00038EEF34: PREDICTED: keratinocyte proline-rich protein-like|unclassified	0.4739457002
+UniRef50_V7YZQ2: Adherence-associated mucus-binding protein,LPXTG-motif cell wall anchor	0.4739336493
+UniRef50_V7YZQ2: Adherence-associated mucus-binding protein,LPXTG-motif cell wall anchor|unclassified	0.4739336493
+UniRef50_W0YQ62: Fusaric acid resistance protein	0.4739336493
+UniRef50_W0YQ62: Fusaric acid resistance protein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.4739336493
+UniRef50_X1GFV3: Marine sediment metagenome DNA, contig: S03H2_S01970 (Fragment)	0.4738941611
+UniRef50_X1GFV3: Marine sediment metagenome DNA, contig: S03H2_S01970 (Fragment)|unclassified	0.4738941611
+UniRef50_UPI000380B069: hypothetical protein, partial	0.4738791078
+UniRef50_UPI000380B069: hypothetical protein, partial|unclassified	0.4738791078
+UniRef50_A6X5V2: Tripartite ATP-independent periplasmic transporter DctQ component	0.4737203587
+UniRef50_A6X5V2: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.4737203587
+UniRef50_UPI0002897B18: phosphotransferase	0.4737045521
+UniRef50_UPI0002897B18: phosphotransferase|unclassified	0.4737045521
+UniRef50_I6HIQ1: Oxidoreductase, aldo/keto reductase family protein	0.4736968697
+UniRef50_I6HIQ1: Oxidoreductase, aldo/keto reductase family protein|unclassified	0.4736968697
+UniRef50_UPI0003761549: hypothetical protein	0.4736671471
+UniRef50_UPI0003761549: hypothetical protein|unclassified	0.4736671471
+UniRef50_UPI0003F88C5F: hypothetical protein	0.4736467027
+UniRef50_UPI0003F88C5F: hypothetical protein|unclassified	0.4736467027
+UniRef50_A0A030TWE2	0.4735914519
+UniRef50_A0A030TWE2|unclassified	0.4735914519
+UniRef50_UPI00029AF609: integrase/recombinase	0.4735519270
+UniRef50_UPI00029AF609: integrase/recombinase|unclassified	0.4735519270
+UniRef50_Q36837: Cytochrome c oxidase subunit 3	0.4734810634
+UniRef50_Q36837: Cytochrome c oxidase subunit 3|unclassified	0.4734810634
+UniRef50_UPI0004095AFD: hypothetical protein	0.4734442597
+UniRef50_UPI0004095AFD: hypothetical protein|unclassified	0.4734442597
+UniRef50_UPI0003B349FB: porphobilinogen deaminase, partial	0.4734425784
+UniRef50_UPI0003B349FB: porphobilinogen deaminase, partial|unclassified	0.4734425784
+UniRef50_UPI00031BE1DB: hypothetical protein	0.4734417808
+UniRef50_UPI00031BE1DB: hypothetical protein|unclassified	0.4734417808
+UniRef50_Q65RB3: Histidine biosynthesis bifunctional protein HisB	0.4734135501
+UniRef50_Q65RB3: Histidine biosynthesis bifunctional protein HisB|unclassified	0.4734135501
+UniRef50_S2XC13: Accessory Sec system glycosylation protein GtfA	0.4733956130
+UniRef50_S2XC13: Accessory Sec system glycosylation protein GtfA|unclassified	0.4733956130
+UniRef50_B2ULY3: NADH-quinone oxidoreductase subunit K	0.4733650027
+UniRef50_B2ULY3: NADH-quinone oxidoreductase subunit K|unclassified	0.4733650027
+UniRef50_I0DBF9	0.4733379433
+UniRef50_I0DBF9|unclassified	0.4733379433
+UniRef50_UPI0003B50469: MULTISPECIES: 30S ribosomal protein S8	0.4732809757
+UniRef50_UPI0003B50469: MULTISPECIES: 30S ribosomal protein S8|unclassified	0.4732809757
+UniRef50_D9VIX2: Predicted protein	0.4732607667
+UniRef50_D9VIX2: Predicted protein|unclassified	0.4732607667
+UniRef50_UPI00035CBF7A: hypothetical protein	0.4732607667
+UniRef50_UPI00035CBF7A: hypothetical protein|unclassified	0.4732607667
+UniRef50_E3A6K9	0.4731905932
+UniRef50_E3A6K9|unclassified	0.4731905932
+UniRef50_UPI00037D4F8B: zinc ABC transporter substrate-binding protein, partial	0.4731374139
+UniRef50_UPI00037D4F8B: zinc ABC transporter substrate-binding protein, partial|unclassified	0.4731374139
+UniRef50_A0A018R8Y2: Flagellar motor protein MotA	0.4730970508
+UniRef50_A0A018R8Y2: Flagellar motor protein MotA|unclassified	0.4730970508
+UniRef50_UPI000361ECA7: hypothetical protein	0.4730480891
+UniRef50_UPI000361ECA7: hypothetical protein|unclassified	0.4730480891
+UniRef50_K9FSH9: Serine-rich protein, putative	0.4730368969
+UniRef50_K9FSH9: Serine-rich protein, putative|unclassified	0.4730368969
+UniRef50_L1J0W6	0.4730368969
+UniRef50_L1J0W6|unclassified	0.4730368969
+UniRef50_R4Z5M1	0.4730048073
+UniRef50_R4Z5M1|unclassified	0.4730048073
+UniRef50_UPI0003766CBB: hypothetical protein	0.4729730464
+UniRef50_UPI0003766CBB: hypothetical protein|unclassified	0.4729730464
+UniRef50_UPI000362D150: hypothetical protein, partial	0.4729052715
+UniRef50_UPI000362D150: hypothetical protein, partial|unclassified	0.4729052715
+UniRef50_Q82IE8: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	0.4728262491
+UniRef50_Q82IE8: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.4728262491
+UniRef50_D5DYB9: Branched-chain amino acid transport protein (AzlD)	0.4727607885
+UniRef50_D5DYB9: Branched-chain amino acid transport protein (AzlD)|unclassified	0.4727607885
+UniRef50_M4YY00: Transposase	0.4727499107
+UniRef50_M4YY00: Transposase|unclassified	0.4727499107
+UniRef50_B6IPY7: Plasmid pRiA4b ORF-3 family protein	0.4727441180
+UniRef50_B6IPY7: Plasmid pRiA4b ORF-3 family protein|unclassified	0.4727441180
+UniRef50_UPI000234E1DF: PREDICTED: protein lin-28 homolog A-like	0.4727315881
+UniRef50_UPI000234E1DF: PREDICTED: protein lin-28 homolog A-like|unclassified	0.4727315881
+UniRef50_UPI00046327F4: extradiol ring-cleavage dioxygenase	0.4727146589
+UniRef50_UPI00046327F4: extradiol ring-cleavage dioxygenase|unclassified	0.4727146589
+UniRef50_UPI000381307B: hypothetical protein	0.4727022836
+UniRef50_UPI000381307B: hypothetical protein|unclassified	0.4727022836
+UniRef50_H5W7M2	0.4726721572
+UniRef50_H5W7M2|unclassified	0.4726721572
+UniRef50_E8P8Z7: Transposase	0.4726540335
+UniRef50_E8P8Z7: Transposase|unclassified	0.4726540335
+UniRef50_F3A7P4	0.4726006717
+UniRef50_F3A7P4|unclassified	0.4726006717
+UniRef50_UPI0004730696: beta-lactamase, partial	0.4725946682
+UniRef50_UPI0004730696: beta-lactamase, partial|unclassified	0.4725946682
+UniRef50_E8N7U3: Predicted Fe-S-cluster redox enzyme	0.4725536987
+UniRef50_E8N7U3: Predicted Fe-S-cluster redox enzyme|unclassified	0.4725536987
+UniRef50_UPI00035FFF58: hypothetical protein	0.4724938989
+UniRef50_UPI00035FFF58: hypothetical protein|unclassified	0.4724938989
+UniRef50_UPI00047875C0: hypothetical protein	0.4724031953
+UniRef50_UPI00047875C0: hypothetical protein|unclassified	0.4724031953
+UniRef50_B4FUX1	0.4723978380
+UniRef50_B4FUX1|unclassified	0.4723978380
+UniRef50_W8C6V4: BUD13	0.4723665564
+UniRef50_W8C6V4: BUD13|unclassified	0.4723665564
+UniRef50_UPI000414EE92: acetyltransferase	0.4722979789
+UniRef50_UPI000414EE92: acetyltransferase|unclassified	0.4722979789
+UniRef50_G9AH28	0.4722803433
+UniRef50_G9AH28|unclassified	0.4722803433
+UniRef50_C8WNL4	0.4721779802
+UniRef50_C8WNL4|unclassified	0.4721779802
+UniRef50_C6SH91: Copper-transporting ATPase copA	0.4721435316
+UniRef50_C6SH91: Copper-transporting ATPase copA|g__Neisseria.s__Neisseria_meningitidis	0.4721435316
+UniRef50_M6BS71	0.4720750704
+UniRef50_M6BS71|unclassified	0.4720750704
+UniRef50_H5P6N1: Alpha-2-macroglobulin family domain protein	0.4720597081
+UniRef50_H5P6N1: Alpha-2-macroglobulin family domain protein|unclassified	0.4720597081
+UniRef50_UPI0003EE5796: hypothetical protein	0.4720442198
+UniRef50_UPI0003EE5796: hypothetical protein|unclassified	0.4720442198
+UniRef50_F7QIW8	0.4720420354
+UniRef50_F7QIW8|unclassified	0.4720420354
+UniRef50_D8JF19: Subtilisin-like serine protease	0.4719207173
+UniRef50_D8JF19: Subtilisin-like serine protease|g__Acinetobacter.s__Acinetobacter_baumannii	0.4719207173
+UniRef50_UPI00037C1BAA: hypothetical protein	0.4718728062
+UniRef50_UPI00037C1BAA: hypothetical protein|unclassified	0.4718728062
+UniRef50_A5WG48: NADH-quinone oxidoreductase subunit A	0.4718398270
+UniRef50_A5WG48: NADH-quinone oxidoreductase subunit A|unclassified	0.4718398270
+UniRef50_UPI0003F0BFCB: PREDICTED: serine/arginine-rich splicing factor 6-like	0.4717481175
+UniRef50_UPI0003F0BFCB: PREDICTED: serine/arginine-rich splicing factor 6-like|unclassified	0.4717481175
+UniRef50_UPI0004797B60: DeoR faimly transcriptional regulator	0.4716585404
+UniRef50_UPI0004797B60: DeoR faimly transcriptional regulator|unclassified	0.4716585404
+UniRef50_UPI0002EB49C3: hypothetical protein	0.4716410794
+UniRef50_UPI0002EB49C3: hypothetical protein|unclassified	0.4716410794
+UniRef50_D5AVK3: Thioredoxin family protein	0.4716215299
+UniRef50_D5AVK3: Thioredoxin family protein|unclassified	0.4716215299
+UniRef50_A0A023RII5: IS5 element protein	0.4716067576
+UniRef50_A0A023RII5: IS5 element protein|unclassified	0.4716067576
+UniRef50_G9ZDV2	0.4715523473
+UniRef50_G9ZDV2|unclassified	0.4715523473
+UniRef50_Q8RB29: Undecaprenyl-diphosphatase	0.4715274383
+UniRef50_Q8RB29: Undecaprenyl-diphosphatase|unclassified	0.4715274383
+UniRef50_Q1MJF1	0.4715243824
+UniRef50_Q1MJF1|unclassified	0.4715243824
+UniRef50_UPI0003FE850D: hypothetical protein	0.4714809900
+UniRef50_UPI0003FE850D: hypothetical protein|unclassified	0.4714809900
+UniRef50_UPI0003A90C8C: response regulator receiver	0.4714728863
+UniRef50_UPI0003A90C8C: response regulator receiver|unclassified	0.4714728863
+UniRef50_U5SV18	0.4714639529
+UniRef50_U5SV18|unclassified	0.4714639529
+UniRef50_E5WNK0	0.4714501394
+UniRef50_E5WNK0|unclassified	0.4714501394
+UniRef50_F0K3H8: Putative aluminum resistance protein	0.4714493362
+UniRef50_F0K3H8: Putative aluminum resistance protein|unclassified	0.4714493362
+UniRef50_UPI0003754678: hypothetical protein, partial	0.4714467271
+UniRef50_UPI0003754678: hypothetical protein, partial|unclassified	0.4714467271
+UniRef50_K0SVU0	0.4713692828
+UniRef50_K0SVU0|unclassified	0.4713692828
+UniRef50_UPI0002EE51BE: hypothetical protein	0.4713626254
+UniRef50_UPI0002EE51BE: hypothetical protein|unclassified	0.4713626254
+UniRef50_UPI0003B771E7: MULTISPECIES: 3-oxoacyl-ACP synthase	0.4713367653
+UniRef50_UPI0003B771E7: MULTISPECIES: 3-oxoacyl-ACP synthase|unclassified	0.4713367653
+UniRef50_C2Z3X0	0.4712993776
+UniRef50_C2Z3X0|unclassified	0.4712993776
+UniRef50_UPI00035DB8C9: hypothetical protein	0.4712914745
+UniRef50_UPI00035DB8C9: hypothetical protein|unclassified	0.4712914745
+UniRef50_Q2GI13: Tyrosine--tRNA ligase	0.4712885959
+UniRef50_Q2GI13: Tyrosine--tRNA ligase|unclassified	0.4712885959
+UniRef50_UPI000479BCD7: histidine biosynthesis protein	0.4712636281
+UniRef50_UPI000479BCD7: histidine biosynthesis protein|unclassified	0.4712636281
+UniRef50_F7W2L3: WGS project CABT00000000 data, contig 2.22	0.4712535344
+UniRef50_F7W2L3: WGS project CABT00000000 data, contig 2.22|unclassified	0.4712535344
+UniRef50_D8EH97	0.4712529092
+UniRef50_D8EH97|unclassified	0.4712529092
+UniRef50_UPI000423B599: rod shape-determining protein MreB	0.4711998684
+UniRef50_UPI000423B599: rod shape-determining protein MreB|unclassified	0.4711998684
+UniRef50_D8TXQ1	0.4711063955
+UniRef50_D8TXQ1|unclassified	0.4711063955
+UniRef50_E7SQ23: Fimbriae usher protein StfC	0.4710608594
+UniRef50_E7SQ23: Fimbriae usher protein StfC|unclassified	0.4710608594
+UniRef50_A5LFG5	0.4710451904
+UniRef50_A5LFG5|unclassified	0.4710451904
+UniRef50_K2N567: 2,4-dihydroxyhept-2-ene-1,7-dioic acid aldolase	0.4710068312
+UniRef50_K2N567: 2,4-dihydroxyhept-2-ene-1,7-dioic acid aldolase|unclassified	0.4710068312
+UniRef50_UPI00040AC8CB: cysteine synthase	0.4708861445
+UniRef50_UPI00040AC8CB: cysteine synthase|unclassified	0.4708861445
+UniRef50_I6G4J8: Multidrug transporter MdfA domain protein	0.4708464228
+UniRef50_I6G4J8: Multidrug transporter MdfA domain protein|unclassified	0.4708464228
+UniRef50_M5G2W8	0.4708097928
+UniRef50_M5G2W8|unclassified	0.4708097928
+UniRef50_W1JI52: Sulfate ABC transporter permease	0.4707894218
+UniRef50_W1JI52: Sulfate ABC transporter permease|unclassified	0.4707894218
+UniRef50_M7VDF1: RhsC element core protein RshC (Fragment)	0.4707719731
+UniRef50_M7VDF1: RhsC element core protein RshC (Fragment)|unclassified	0.4707719731
+UniRef50_UPI000464954C: hypothetical protein	0.4707694694
+UniRef50_UPI000464954C: hypothetical protein|unclassified	0.4707694694
+UniRef50_V9VR47: RdxH	0.4706912834
+UniRef50_V9VR47: RdxH|unclassified	0.4706912834
+UniRef50_M8PV50	0.4706143301
+UniRef50_M8PV50|unclassified	0.4706143301
+UniRef50_V1IKX9: Cysteine desulfurase activator complex subunit SufB	0.4705691968
+UniRef50_V1IKX9: Cysteine desulfurase activator complex subunit SufB|unclassified	0.4705691968
+UniRef50_UPI000477D0DF: hypothetical protein	0.4705556220
+UniRef50_UPI000477D0DF: hypothetical protein|unclassified	0.4705556220
+UniRef50_K6EM30: Peptidase S8 and S53 subtilisin kexin sedolisin (Fragment)	0.4705475062
+UniRef50_K6EM30: Peptidase S8 and S53 subtilisin kexin sedolisin (Fragment)|unclassified	0.4705475062
+UniRef50_UPI00036A9345: hypothetical protein	0.4705238031
+UniRef50_UPI00036A9345: hypothetical protein|unclassified	0.4705238031
+UniRef50_Q3KDK8	0.4705032802
+UniRef50_Q3KDK8|unclassified	0.4705032802
+UniRef50_V9VP30	0.4705001287
+UniRef50_V9VP30|unclassified	0.4705001287
+UniRef50_UPI0003771A5E: hypothetical protein	0.4704822426
+UniRef50_UPI0003771A5E: hypothetical protein|unclassified	0.4704822426
+UniRef50_UPI0003754358: hypothetical protein, partial	0.4704395360
+UniRef50_UPI0003754358: hypothetical protein, partial|unclassified	0.4704395360
+UniRef50_M3F226	0.4704387428
+UniRef50_M3F226|unclassified	0.4704387428
+UniRef50_R8VRI4	0.4704097068
+UniRef50_R8VRI4|unclassified	0.4704097068
+UniRef50_UPI000262A74C: ribose ABC transporter permease	0.4703625921
+UniRef50_UPI000262A74C: ribose ABC transporter permease|unclassified	0.4703625921
+UniRef50_UPI0003617A12: hypothetical protein	0.4703586534
+UniRef50_UPI0003617A12: hypothetical protein|unclassified	0.4703586534
+UniRef50_UPI000273C917	0.4702363354
+UniRef50_UPI000273C917|unclassified	0.4702363354
+UniRef50_V4RTG1	0.4702310090
+UniRef50_V4RTG1|unclassified	0.4702310090
+UniRef50_UPI0003B475CF: TetR family transcriptional regulator	0.4702273802
+UniRef50_UPI0003B475CF: TetR family transcriptional regulator|unclassified	0.4702273802
+UniRef50_R1DZ31	0.4702097316
+UniRef50_R1DZ31|unclassified	0.4702097316
+UniRef50_Q7NMQ5: Nucleoside diphosphate kinase	0.4701766072
+UniRef50_Q7NMQ5: Nucleoside diphosphate kinase|unclassified	0.4701766072
+UniRef50_R7IWJ7: Aluminum resistance protein	0.4700724678
+UniRef50_R7IWJ7: Aluminum resistance protein|unclassified	0.4700724678
+UniRef50_F6AIT4	0.4700505938
+UniRef50_F6AIT4|unclassified	0.4700505938
+UniRef50_UPI00016C3E34: 30S ribosomal protein S4	0.4700388898
+UniRef50_UPI00016C3E34: 30S ribosomal protein S4|unclassified	0.4700388898
+UniRef50_UPI000463E001: hypothetical protein	0.4700344262
+UniRef50_UPI000463E001: hypothetical protein|unclassified	0.4700344262
+UniRef50_W8XSY5	0.4700109249
+UniRef50_W8XSY5|unclassified	0.4700109249
+UniRef50_P50971: Thioredoxin reductase	0.4700005814
+UniRef50_P50971: Thioredoxin reductase|unclassified	0.4700005814
+UniRef50_UPI000366BC80: hypothetical protein	0.4699698947
+UniRef50_UPI000366BC80: hypothetical protein|unclassified	0.4699698947
+UniRef50_F3ZK40: Putative ABC transporter solute-binding lipoprotein	0.4699251952
+UniRef50_F3ZK40: Putative ABC transporter solute-binding lipoprotein|unclassified	0.4699251952
+UniRef50_F2UB02	0.4699248120
+UniRef50_F2UB02|unclassified	0.4699248120
+UniRef50_G8VFT5: ABC transporter-associated permease	0.4699248120
+UniRef50_G8VFT5: ABC transporter-associated permease|g__Propionibacterium.s__Propionibacterium_acnes	0.4699248120
+UniRef50_UPI00037FD271: hypothetical protein	0.4699245913
+UniRef50_UPI00037FD271: hypothetical protein|unclassified	0.4699245913
+UniRef50_UPI00036AE9F1: hypothetical protein	0.4698938197
+UniRef50_UPI00036AE9F1: hypothetical protein|unclassified	0.4698938197
+UniRef50_W8RU90	0.4698714004
+UniRef50_W8RU90|unclassified	0.4698714004
+UniRef50_UPI0004646F16: MULTISPECIES: hypothetical protein	0.4698164506
+UniRef50_UPI0004646F16: MULTISPECIES: hypothetical protein|unclassified	0.4698164506
+UniRef50_UPI000362226F: hypothetical protein	0.4697939645
+UniRef50_UPI000362226F: hypothetical protein|unclassified	0.4697939645
+UniRef50_A8ZRA0	0.4697217245
+UniRef50_A8ZRA0|unclassified	0.4697217245
+UniRef50_UPI0003B321E8: PhoB family transcriptional regulator	0.4696849252
+UniRef50_UPI0003B321E8: PhoB family transcriptional regulator|unclassified	0.4696849252
+UniRef50_UPI0003AEC90A: PREDICTED: collagen alpha-1(I) chain-like, partial	0.4696801021
+UniRef50_UPI0003AEC90A: PREDICTED: collagen alpha-1(I) chain-like, partial|unclassified	0.4696801021
+UniRef50_UPI00006D0388: conserved hypothetical protein	0.4696518621
+UniRef50_UPI00006D0388: conserved hypothetical protein|unclassified	0.4696518621
+UniRef50_UPI0003B68FE0: MerR family transcriptional regulator	0.4696394841
+UniRef50_UPI0003B68FE0: MerR family transcriptional regulator|unclassified	0.4696394841
+UniRef50_UPI00036A927F: hypothetical protein	0.4696134795
+UniRef50_UPI00036A927F: hypothetical protein|unclassified	0.4696134795
+UniRef50_UPI00047708C1: hypothetical protein	0.4696084276
+UniRef50_UPI00047708C1: hypothetical protein|unclassified	0.4696084276
+UniRef50_T2RFA1: Putative membrane protein	0.4695922145
+UniRef50_T2RFA1: Putative membrane protein|unclassified	0.4695922145
+UniRef50_L6MLX7: Nitrate reductase Z subunit beta	0.4695312003
+UniRef50_L6MLX7: Nitrate reductase Z subunit beta|unclassified	0.4695312003
+UniRef50_T0QX74: Putative transposase (Fragment)	0.4695036147
+UniRef50_T0QX74: Putative transposase (Fragment)|unclassified	0.4695036147
+UniRef50_S6UM22	0.4694312830
+UniRef50_S6UM22|unclassified	0.4694312830
+UniRef50_C4Y1Q4	0.4693620607
+UniRef50_C4Y1Q4|unclassified	0.4693620607
+UniRef50_UPI00037B6FC9: hypothetical protein	0.4693072932
+UniRef50_UPI00037B6FC9: hypothetical protein|unclassified	0.4693072932
+UniRef50_P30363: L-asparaginase	0.4692876181
+UniRef50_P30363: L-asparaginase|unclassified	0.4692876181
+UniRef50_S9Z4U8	0.4692798199
+UniRef50_S9Z4U8|unclassified	0.4692798199
+UniRef50_Q5W6S1: Os05g0345700 protein	0.4692282178
+UniRef50_Q5W6S1: Os05g0345700 protein|unclassified	0.4692282178
+UniRef50_UPI0003B5BC2E: antibiotic biosynthesis monooxygenase	0.4690487137
+UniRef50_UPI0003B5BC2E: antibiotic biosynthesis monooxygenase|unclassified	0.4690487137
+UniRef50_UPI0001B41AAB: cytochrome d ubiquinol oxidase, subunit II	0.4690409277
+UniRef50_UPI0001B41AAB: cytochrome d ubiquinol oxidase, subunit II|unclassified	0.4690409277
+UniRef50_UPI000423006B: antiporter	0.4690302211
+UniRef50_UPI000423006B: antiporter|unclassified	0.4690302211
+UniRef50_W5B5P7	0.4690231008
+UniRef50_W5B5P7|unclassified	0.4690231008
+UniRef50_UPI00036F122F: hypothetical protein	0.4690169633
+UniRef50_UPI00036F122F: hypothetical protein|unclassified	0.4690169633
+UniRef50_UPI00037F7657: hypothetical protein	0.4690125410
+UniRef50_UPI00037F7657: hypothetical protein|unclassified	0.4690125410
+UniRef50_K0RHB9	0.4689903810
+UniRef50_K0RHB9|unclassified	0.4689903810
+UniRef50_UPI0003597736: PREDICTED: basic proline-rich protein-like, partial	0.4689627587
+UniRef50_UPI0003597736: PREDICTED: basic proline-rich protein-like, partial|unclassified	0.4689627587
+UniRef50_UPI0004782DF2: hypothetical protein	0.4689452118
+UniRef50_UPI0004782DF2: hypothetical protein|unclassified	0.4689452118
+UniRef50_I4YVW1: TRAP-type C4-dicarboxylate transport system, small permease component	0.4689109831
+UniRef50_I4YVW1: TRAP-type C4-dicarboxylate transport system, small permease component|unclassified	0.4689109831
+UniRef50_UPI000464CCF6: resolvase	0.4688786364
+UniRef50_UPI000464CCF6: resolvase|unclassified	0.4688786364
+UniRef50_UPI00041834C2: hypothetical protein	0.4688684267
+UniRef50_UPI00041834C2: hypothetical protein|unclassified	0.4688684267
+UniRef50_UPI00046F958E: hypothetical protein	0.4688551994
+UniRef50_UPI00046F958E: hypothetical protein|unclassified	0.4688551994
+UniRef50_Q3IWV0: SH3 type 3 domain protein	0.4688155724
+UniRef50_Q3IWV0: SH3 type 3 domain protein|unclassified	0.4688155724
+UniRef50_Q0FWQ8	0.4687847361
+UniRef50_Q0FWQ8|unclassified	0.4687847361
+UniRef50_S9R5B2: Beta-barrel assembly machine subunit BamD	0.4687741164
+UniRef50_S9R5B2: Beta-barrel assembly machine subunit BamD|unclassified	0.4687741164
+UniRef50_C1KZA0: 5-deoxy-glucuronate isomerase	0.4686835167
+UniRef50_C1KZA0: 5-deoxy-glucuronate isomerase|unclassified	0.4686835167
+UniRef50_Q04GD7: Xanthine phosphoribosyltransferase	0.4686747646
+UniRef50_Q04GD7: Xanthine phosphoribosyltransferase|unclassified	0.4686747646
+UniRef50_K1ZZL6	0.4686731954
+UniRef50_K1ZZL6|unclassified	0.4686731954
+UniRef50_X7F9E3	0.4686685028
+UniRef50_X7F9E3|unclassified	0.4686685028
+UniRef50_A7KA93	0.4686674495
+UniRef50_A7KA93|unclassified	0.4686674495
+UniRef50_UPI0003B59BB8: isopentenyl-diphosphate delta-isomerase	0.4686377639
+UniRef50_UPI0003B59BB8: isopentenyl-diphosphate delta-isomerase|unclassified	0.4686377639
+UniRef50_A0A037VQ97	0.4686376225
+UniRef50_A0A037VQ97|unclassified	0.4686376225
+UniRef50_UPI0003F0827C: PREDICTED: P protein-like	0.4686035614
+UniRef50_UPI0003F0827C: PREDICTED: P protein-like|unclassified	0.4686035614
+UniRef50_A7MQZ1	0.4685784080
+UniRef50_A7MQZ1|unclassified	0.4685784080
+UniRef50_A0A024HQ54: Type 4 fimbrial biogenesis protein PilN	0.4685645973
+UniRef50_A0A024HQ54: Type 4 fimbrial biogenesis protein PilN|unclassified	0.4685645973
+UniRef50_J9P8V0	0.4685619849
+UniRef50_J9P8V0|unclassified	0.4685619849
+UniRef50_Q54Z26: Serine hydroxymethyltransferase 1	0.4685453800
+UniRef50_Q54Z26: Serine hydroxymethyltransferase 1|unclassified	0.4685453800
+UniRef50_S4PLX8	0.4685388697
+UniRef50_S4PLX8|unclassified	0.4685388697
+UniRef50_D5WUG2	0.4685240665
+UniRef50_D5WUG2|unclassified	0.4685240665
+UniRef50_J0NGM9	0.4685081378
+UniRef50_J0NGM9|unclassified	0.4685081378
+UniRef50_J1L2V8: Beta-Ig-H3/fasciclin	0.4684996966
+UniRef50_J1L2V8: Beta-Ig-H3/fasciclin|unclassified	0.4684996966
+UniRef50_X1VDJ1: Marine sediment metagenome DNA, contig: S12H4_S15283 (Fragment)	0.4684970145
+UniRef50_X1VDJ1: Marine sediment metagenome DNA, contig: S12H4_S15283 (Fragment)|unclassified	0.4684970145
+UniRef50_UPI00046FD691: precorrin-2 C20-methyltransferase	0.4684788151
+UniRef50_UPI00046FD691: precorrin-2 C20-methyltransferase|unclassified	0.4684788151
+UniRef50_UPI000288F464: putative sugar permease	0.4684469164
+UniRef50_UPI000288F464: putative sugar permease|unclassified	0.4684469164
+UniRef50_F0Y306: Expressed protein (Fragment)	0.4684459342
+UniRef50_F0Y306: Expressed protein (Fragment)|unclassified	0.4684459342
+UniRef50_C8WBI5: Sterol-binding domain protein	0.4684328275
+UniRef50_C8WBI5: Sterol-binding domain protein|unclassified	0.4684328275
+UniRef50_J0GTP7	0.4683922974
+UniRef50_J0GTP7|unclassified	0.4683922974
+UniRef50_J5PQD7	0.4683748190
+UniRef50_J5PQD7|unclassified	0.4683748190
+UniRef50_UPI0002194206: amino acid transporter, partial	0.4683153182
+UniRef50_UPI0002194206: amino acid transporter, partial|unclassified	0.4683153182
+UniRef50_UPI0003B3C4F7: hypothetical protein	0.4682869471
+UniRef50_UPI0003B3C4F7: hypothetical protein|unclassified	0.4682869471
+UniRef50_UPI000368B929: cold-shock protein	0.4682851857
+UniRef50_UPI000368B929: cold-shock protein|unclassified	0.4682851857
+UniRef50_UPI0002E5AE52: choline dehydrogenase	0.4682098203
+UniRef50_UPI0002E5AE52: choline dehydrogenase|unclassified	0.4682098203
+UniRef50_C8NHJ9	0.4681994846
+UniRef50_C8NHJ9|unclassified	0.4681994846
+UniRef50_UPI000379123F: hypothetical protein	0.4681725858
+UniRef50_UPI000379123F: hypothetical protein|unclassified	0.4681725858
+UniRef50_UPI00042452AC: BCCT transporter	0.4681541893
+UniRef50_UPI00042452AC: BCCT transporter|unclassified	0.4681541893
+UniRef50_UPI000472B7B3: hypothetical protein, partial	0.4681126189
+UniRef50_UPI000472B7B3: hypothetical protein, partial|unclassified	0.4681126189
+UniRef50_C5N649	0.4680735125
+UniRef50_C5N649|unclassified	0.4680735125
+UniRef50_Q8DJB8: GTP cyclohydrolase 1	0.4680661883
+UniRef50_Q8DJB8: GTP cyclohydrolase 1|unclassified	0.4680661883
+UniRef50_UPI00035FFA7B: hypothetical protein	0.4680617769
+UniRef50_UPI00035FFA7B: hypothetical protein|unclassified	0.4680617769
+UniRef50_A7C6I1	0.4679196774
+UniRef50_A7C6I1|unclassified	0.4679196774
+UniRef50_D8LEV6	0.4679192263
+UniRef50_D8LEV6|unclassified	0.4679192263
+UniRef50_C3MB65: Ribosomal RNA small subunit methyltransferase G	0.4679177126
+UniRef50_C3MB65: Ribosomal RNA small subunit methyltransferase G|unclassified	0.4679177126
+UniRef50_B6JHG4: N-acetyl-gamma-glutamyl-phosphate reductase	0.4678553323
+UniRef50_B6JHG4: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.4678553323
+UniRef50_J3L7F5	0.4678440944
+UniRef50_J3L7F5|unclassified	0.4678440944
+UniRef50_G6E9N3	0.4678416869
+UniRef50_G6E9N3|unclassified	0.4678416869
+UniRef50_UPI0003292D89: PREDICTED: epstein-Barr nuclear antigen 1-like	0.4677980827
+UniRef50_UPI0003292D89: PREDICTED: epstein-Barr nuclear antigen 1-like|unclassified	0.4677980827
+UniRef50_UPI0003D7184B	0.4677412081
+UniRef50_UPI0003D7184B|unclassified	0.4677412081
+UniRef50_UPI0004666C8D: hypothetical protein	0.4676666523
+UniRef50_UPI0004666C8D: hypothetical protein|unclassified	0.4676666523
+UniRef50_K0T107	0.4676467621
+UniRef50_K0T107|unclassified	0.4676467621
+UniRef50_UPI0004059FEB: methionine aminopeptidase	0.4676186867
+UniRef50_UPI0004059FEB: methionine aminopeptidase|unclassified	0.4676186867
+UniRef50_UPI00036BD65E: hypothetical protein	0.4675994710
+UniRef50_UPI00036BD65E: hypothetical protein|unclassified	0.4675994710
+UniRef50_Q04JU6: UPF0223 protein SPD_1235	0.4675188159
+UniRef50_Q04JU6: UPF0223 protein SPD_1235|unclassified	0.4675188159
+UniRef50_UPI0003D3EEB4: conserved protein/domain typically associated with flavoprotein oxygenases, DIM6/NTAB family	0.4675113677
+UniRef50_UPI0003D3EEB4: conserved protein/domain typically associated with flavoprotein oxygenases, DIM6/NTAB family|unclassified	0.4675113677
+UniRef50_UPI000373B5E9: hypothetical protein	0.4674434927
+UniRef50_UPI000373B5E9: hypothetical protein|unclassified	0.4674434927
+UniRef50_O63849: NADH-ubiquinone oxidoreductase chain 6	0.4674169571
+UniRef50_O63849: NADH-ubiquinone oxidoreductase chain 6|unclassified	0.4674169571
+UniRef50_E7T8U3: SdiA-regulated domain protein	0.4673631008
+UniRef50_E7T8U3: SdiA-regulated domain protein|unclassified	0.4673631008
+UniRef50_V5CZF6	0.4673341324
+UniRef50_V5CZF6|unclassified	0.4673341324
+UniRef50_UPI0002BEE93A: unnamed protein product	0.4673001775
+UniRef50_UPI0002BEE93A: unnamed protein product|unclassified	0.4673001775
+UniRef50_UPI0003F12418: PREDICTED: serine/arginine repetitive matrix protein 1-like	0.4672897196
+UniRef50_UPI0003F12418: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	0.4672897196
+UniRef50_D1FDI5: ErfK/YbiS/YcfS/YnhG family protein	0.4672395310
+UniRef50_D1FDI5: ErfK/YbiS/YcfS/YnhG family protein|unclassified	0.4672395310
+UniRef50_UPI00036A65D3: hypothetical protein	0.4672251738
+UniRef50_UPI00036A65D3: hypothetical protein|unclassified	0.4672251738
+UniRef50_F2GB41: EVE domain-containing protein	0.4671861067
+UniRef50_F2GB41: EVE domain-containing protein|unclassified	0.4671861067
+UniRef50_B9TE37	0.4671654308
+UniRef50_B9TE37|unclassified	0.4671654308
+UniRef50_A3KA45	0.4671647179
+UniRef50_A3KA45|unclassified	0.4671647179
+UniRef50_K7L388	0.4671598445
+UniRef50_K7L388|unclassified	0.4671598445
+UniRef50_D6SEX5	0.4670980324
+UniRef50_D6SEX5|unclassified	0.4670980324
+UniRef50_B8DVS6: Non-canonical purine NTP pyrophosphatase	0.4670780721
+UniRef50_B8DVS6: Non-canonical purine NTP pyrophosphatase|unclassified	0.4670780721
+UniRef50_B0V4K0: Phosphoenolpyruvate-protein phosphotransferase	0.4670714619
+UniRef50_B0V4K0: Phosphoenolpyruvate-protein phosphotransferase|g__Acinetobacter.s__Acinetobacter_baumannii	0.4670714619
+UniRef50_UPI0004664EE8: hypothetical protein	0.4670389336
+UniRef50_UPI0004664EE8: hypothetical protein|unclassified	0.4670389336
+UniRef50_C0AYF7	0.4670195018
+UniRef50_C0AYF7|unclassified	0.4670195018
+UniRef50_UPI0004671CC9: hypothetical protein	0.4670070902
+UniRef50_UPI0004671CC9: hypothetical protein|unclassified	0.4670070902
+UniRef50_K3QZQ8	0.4669401311
+UniRef50_K3QZQ8|unclassified	0.4669401311
+UniRef50_X2MZ81	0.4669343909
+UniRef50_X2MZ81|unclassified	0.4669343909
+UniRef50_X3XQW0: Membrane protein (Fragment)	0.4669272863
+UniRef50_X3XQW0: Membrane protein (Fragment)|unclassified	0.4669272863
+UniRef50_UPI00047A5897: hypothetical protein	0.4668875063
+UniRef50_UPI00047A5897: hypothetical protein|unclassified	0.4668875063
+UniRef50_A4GIC8: Flagellar motor protein MotB (Fragment)	0.4668167239
+UniRef50_A4GIC8: Flagellar motor protein MotB (Fragment)|unclassified	0.4668167239
+UniRef50_UPI00039D5255: cation:proton antiporter	0.4668001506
+UniRef50_UPI00039D5255: cation:proton antiporter|unclassified	0.4668001506
+UniRef50_T0Z9K2: Membrane protein	0.4667580711
+UniRef50_T0Z9K2: Membrane protein|unclassified	0.4667580711
+UniRef50_UPI000379583A: hypothetical protein	0.4667172134
+UniRef50_UPI000379583A: hypothetical protein|unclassified	0.4667172134
+UniRef50_UPI0003B7AF3C: hypothetical protein, partial	0.4666435587
+UniRef50_UPI0003B7AF3C: hypothetical protein, partial|unclassified	0.4666435587
+UniRef50_A4IM47: Methionyl-tRNA formyltransferase	0.4666260659
+UniRef50_A4IM47: Methionyl-tRNA formyltransferase|unclassified	0.4666260659
+UniRef50_UPI00046E1459: hypothetical protein	0.4665951943
+UniRef50_UPI00046E1459: hypothetical protein|unclassified	0.4665951943
+UniRef50_Q2P6N2: Ribonuclease PH	0.4665486518
+UniRef50_Q2P6N2: Ribonuclease PH|unclassified	0.4665486518
+UniRef50_UPI0003627DD4: 30S ribosomal protein S4	0.4665466694
+UniRef50_UPI0003627DD4: 30S ribosomal protein S4|unclassified	0.4665466694
+UniRef50_Q4SV06: Chromosome undetermined SCAF13832, whole genome shotgun sequence	0.4664976339
+UniRef50_Q4SV06: Chromosome undetermined SCAF13832, whole genome shotgun sequence|unclassified	0.4664976339
+UniRef50_UPI0004676BF2: hypothetical protein	0.4664604601
+UniRef50_UPI0004676BF2: hypothetical protein|unclassified	0.4664604601
+UniRef50_D3F4J3: Transcriptional regulator, PadR-like family	0.4664530347
+UniRef50_D3F4J3: Transcriptional regulator, PadR-like family|unclassified	0.4664530347
+UniRef50_K0HFT9	0.4664179104
+UniRef50_K0HFT9|unclassified	0.4664179104
+UniRef50_M3BXT0: DNA polymerase II large subunit	0.4662767806
+UniRef50_M3BXT0: DNA polymerase II large subunit|unclassified	0.4662767806
+UniRef50_UPI000366F668: hypothetical protein, partial	0.4662681292
+UniRef50_UPI000366F668: hypothetical protein, partial|unclassified	0.4662681292
+UniRef50_UPI0003156E63: glutathione S-transferase	0.4662657528
+UniRef50_UPI0003156E63: glutathione S-transferase|unclassified	0.4662657528
+UniRef50_UPI0003B374DB: isomerase	0.4662496191
+UniRef50_UPI0003B374DB: isomerase|unclassified	0.4662496191
+UniRef50_UPI000364F9FB: hypothetical protein	0.4661712213
+UniRef50_UPI000364F9FB: hypothetical protein|unclassified	0.4661712213
+UniRef50_D8N751	0.4661340527
+UniRef50_D8N751|unclassified	0.4661340527
+UniRef50_B9TGU6	0.4661256298
+UniRef50_B9TGU6|unclassified	0.4661256298
+UniRef50_D0IX39	0.4661245594
+UniRef50_D0IX39|unclassified	0.4661245594
+UniRef50_X1ED95: Marine sediment metagenome DNA, contig: S01H4_S15059	0.4661109867
+UniRef50_X1ED95: Marine sediment metagenome DNA, contig: S01H4_S15059|unclassified	0.4661109867
+UniRef50_B4U8E3: Potassium-transporting ATPase A chain	0.4661080610
+UniRef50_B4U8E3: Potassium-transporting ATPase A chain|unclassified	0.4661080610
+UniRef50_UPI0003B3C20D: DNA polymerase III subunit alpha, partial	0.4661067689
+UniRef50_UPI0003B3C20D: DNA polymerase III subunit alpha, partial|unclassified	0.4661067689
+UniRef50_Q3Z015: IS2 ORF2	0.4660921674
+UniRef50_Q3Z015: IS2 ORF2|unclassified	0.4660921674
+UniRef50_UPI0004056BF8: glucarate dehydratase	0.4660421166
+UniRef50_UPI0004056BF8: glucarate dehydratase|unclassified	0.4660421166
+UniRef50_UPI0003790B90: hypothetical protein	0.4660240951
+UniRef50_UPI0003790B90: hypothetical protein|unclassified	0.4660240951
+UniRef50_E3HZF8: Transcriptional regulator, CarD family	0.4660131979
+UniRef50_E3HZF8: Transcriptional regulator, CarD family|unclassified	0.4660131979
+UniRef50_UPI0003715A87: hypothetical protein	0.4659447058
+UniRef50_UPI0003715A87: hypothetical protein|unclassified	0.4659447058
+UniRef50_V8NRW9: Octapeptide-repeat protein T2 (Fragment)	0.4659394089
+UniRef50_V8NRW9: Octapeptide-repeat protein T2 (Fragment)|unclassified	0.4659394089
+UniRef50_A9VZV1: Fe-S metabolism associated SufE	0.4658013339
+UniRef50_A9VZV1: Fe-S metabolism associated SufE|unclassified	0.4658013339
+UniRef50_UPI00022CA8A0: PREDICTED: alanyl-tRNA synthetase-like	0.4657661854
+UniRef50_UPI00022CA8A0: PREDICTED: alanyl-tRNA synthetase-like|g__Acinetobacter.s__Acinetobacter_baumannii	0.4657661854
+UniRef50_I3D4E2	0.4657486045
+UniRef50_I3D4E2|unclassified	0.4657486045
+UniRef50_UPI000328C4DC: PREDICTED: translation initiation factor IF-2-like	0.4657339182
+UniRef50_UPI000328C4DC: PREDICTED: translation initiation factor IF-2-like|unclassified	0.4657339182
+UniRef50_Q8D335: Glutathione synthetase	0.4656042383
+UniRef50_Q8D335: Glutathione synthetase|unclassified	0.4656042383
+UniRef50_E8IZS7: Pheromone autoinducer 2 transporter	0.4654939249
+UniRef50_E8IZS7: Pheromone autoinducer 2 transporter|unclassified	0.4654939249
+UniRef50_UPI00036F8282: hypothetical protein	0.4654333894
+UniRef50_UPI00036F8282: hypothetical protein|unclassified	0.4654333894
+UniRef50_UPI00029A79A0: HAD family hydrolase	0.4653842869
+UniRef50_UPI00029A79A0: HAD family hydrolase|unclassified	0.4653842869
+UniRef50_UPI00047B8E24: ABC transporter ATP-binding protein	0.4653722698
+UniRef50_UPI00047B8E24: ABC transporter ATP-binding protein|unclassified	0.4653722698
+UniRef50_UPI00035E1ED1: hypothetical protein	0.4653690229
+UniRef50_UPI00035E1ED1: hypothetical protein|unclassified	0.4653690229
+UniRef50_UPI000380AB63: hypothetical protein	0.4653082053
+UniRef50_UPI000380AB63: hypothetical protein|unclassified	0.4653082053
+UniRef50_D4DV51	0.4653046161
+UniRef50_D4DV51|unclassified	0.4653046161
+UniRef50_A0A011RSQ2: Cytochrome c oxidase subunit II	0.4652726412
+UniRef50_A0A011RSQ2: Cytochrome c oxidase subunit II|unclassified	0.4652726412
+UniRef50_K2HSX3	0.4652599927
+UniRef50_K2HSX3|unclassified	0.4652599927
+UniRef50_V4P1B6	0.4652357713
+UniRef50_V4P1B6|unclassified	0.4652357713
+UniRef50_C5BH51	0.4652130284
+UniRef50_C5BH51|unclassified	0.4652130284
+UniRef50_C0B1I9: Formate transporter FocA	0.4652037169
+UniRef50_C0B1I9: Formate transporter FocA|unclassified	0.4652037169
+UniRef50_I3R6R8: Branched-chain amino acids ABC transporter permease,azaleucine resistance protein	0.4651539228
+UniRef50_I3R6R8: Branched-chain amino acids ABC transporter permease,azaleucine resistance protein|unclassified	0.4651539228
+UniRef50_B2IBF5: PRC-barrel domain protein	0.4650784316
+UniRef50_B2IBF5: PRC-barrel domain protein|unclassified	0.4650784316
+UniRef50_R1H4G9: Immunogenic protein	0.4650339931
+UniRef50_R1H4G9: Immunogenic protein|unclassified	0.4650339931
+UniRef50_C5QLD7	0.4650098903
+UniRef50_C5QLD7|unclassified	0.4650098903
+UniRef50_UPI00034FE692: PREDICTED: proline-rich protein 2-like	0.4649761205
+UniRef50_UPI00034FE692: PREDICTED: proline-rich protein 2-like|unclassified	0.4649761205
+UniRef50_UPI00037112DD: hypothetical protein	0.4648820089
+UniRef50_UPI00037112DD: hypothetical protein|unclassified	0.4648820089
+UniRef50_B3Q1V8: Hypothetical conserved protein	0.4648765550
+UniRef50_B3Q1V8: Hypothetical conserved protein|unclassified	0.4648765550
+UniRef50_UPI000471FBF4: thioredoxin	0.4648545909
+UniRef50_UPI000471FBF4: thioredoxin|unclassified	0.4648545909
+UniRef50_A0A017HH71: Putative iron-sulfur cluster assembly scaffold protein for SUF system, SufE2	0.4647268522
+UniRef50_A0A017HH71: Putative iron-sulfur cluster assembly scaffold protein for SUF system, SufE2|unclassified	0.4647268522
+UniRef50_A9E855	0.4647021831
+UniRef50_A9E855|unclassified	0.4647021831
+UniRef50_UPI0000EBC44A	0.4646513953
+UniRef50_UPI0000EBC44A|unclassified	0.4646513953
+UniRef50_UPI00036CA62E: hypothetical protein	0.4645245937
+UniRef50_UPI00036CA62E: hypothetical protein|unclassified	0.4645245937
+UniRef50_K9D9U6: Diguanylate cyclase (GGDEF) domain-containing protein	0.4645191455
+UniRef50_K9D9U6: Diguanylate cyclase (GGDEF) domain-containing protein|unclassified	0.4645191455
+UniRef50_UPI000262DB00: DNA integrase/recombinase	0.4644681839
+UniRef50_UPI000262DB00: DNA integrase/recombinase|unclassified	0.4644681839
+UniRef50_K1U4P7: Cardiolipin synthetase (Fragment)	0.4644377861
+UniRef50_K1U4P7: Cardiolipin synthetase (Fragment)|unclassified	0.4644377861
+UniRef50_C3G701: Transporter	0.4644212418
+UniRef50_C3G701: Transporter|unclassified	0.4644212418
+UniRef50_I3TLB3: Oligoketide cyclase/lipid transport protein	0.4643971829
+UniRef50_I3TLB3: Oligoketide cyclase/lipid transport protein|unclassified	0.4643971829
+UniRef50_S2XN66: TIGR00370 family protein	0.4643826083
+UniRef50_S2XN66: TIGR00370 family protein|unclassified	0.4643826083
+UniRef50_C7J338: Os05g0392801 protein	0.4642826796
+UniRef50_C7J338: Os05g0392801 protein|unclassified	0.4642826796
+UniRef50_G2P8Z9: Transposase, IS605 OrfB family	0.4642525534
+UniRef50_G2P8Z9: Transposase, IS605 OrfB family|unclassified	0.4642525534
+UniRef50_Q3SFH1: Acetylglutamate kinase	0.4641909614
+UniRef50_Q3SFH1: Acetylglutamate kinase|unclassified	0.4641909614
+UniRef50_UPI000465E9D3: glycine/betaine ABC transporter ATP-binding protein	0.4641695116
+UniRef50_UPI000465E9D3: glycine/betaine ABC transporter ATP-binding protein|unclassified	0.4641695116
+UniRef50_A2BMY4: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.4641680454
+UniRef50_A2BMY4: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.4641680454
+UniRef50_UPI0003B32CB2: 30S ribosomal protein S15	0.4641432513
+UniRef50_UPI0003B32CB2: 30S ribosomal protein S15|unclassified	0.4641432513
+UniRef50_UPI00046D6A82: hypothetical protein	0.4641049689
+UniRef50_UPI00046D6A82: hypothetical protein|unclassified	0.4641049689
+UniRef50_X1ERG9: Marine sediment metagenome DNA, contig: S03H2_L00346	0.4640591868
+UniRef50_X1ERG9: Marine sediment metagenome DNA, contig: S03H2_L00346|unclassified	0.4640591868
+UniRef50_UPI00046550D2: hypothetical protein	0.4640371230
+UniRef50_UPI00046550D2: hypothetical protein|unclassified	0.4640371230
+UniRef50_S1EVJ9: Transposase insN for insertion sequence element IS911A	0.4640324805
+UniRef50_S1EVJ9: Transposase insN for insertion sequence element IS911A|unclassified	0.4640324805
+UniRef50_Q31N34: 3-isopropylmalate dehydrogenase	0.4639964616
+UniRef50_Q31N34: 3-isopropylmalate dehydrogenase|unclassified	0.4639964616
+UniRef50_UPI00046631D5: ABC transporter permease	0.4639956096
+UniRef50_UPI00046631D5: ABC transporter permease|unclassified	0.4639956096
+UniRef50_UPI0003606D9E: hypothetical protein	0.4639819325
+UniRef50_UPI0003606D9E: hypothetical protein|unclassified	0.4639819325
+UniRef50_C6SPU5	0.4639251631
+UniRef50_C6SPU5|unclassified	0.4639251631
+UniRef50_N9EDG0	0.4639228503
+UniRef50_N9EDG0|unclassified	0.4639228503
+UniRef50_C6ALY3	0.4639135910
+UniRef50_C6ALY3|unclassified	0.4639135910
+UniRef50_N6VQS5	0.4638528206
+UniRef50_N6VQS5|unclassified	0.4638528206
+UniRef50_UPI000373C418: hypothetical protein, partial	0.4638383352
+UniRef50_UPI000373C418: hypothetical protein, partial|unclassified	0.4638383352
+UniRef50_Q9RX36: Penicillin-binding protein 1	0.4638218924
+UniRef50_Q9RX36: Penicillin-binding protein 1|g__Deinococcus.s__Deinococcus_radiodurans	0.4638218924
+UniRef50_Q8CUY0: Phosphonates import ATP-binding protein PhnC 2	0.4637561071
+UniRef50_Q8CUY0: Phosphonates import ATP-binding protein PhnC 2|unclassified	0.4637561071
+UniRef50_W2UF26: Cbb3-type cytochrome oxidase, subunit 3	0.4637538339
+UniRef50_W2UF26: Cbb3-type cytochrome oxidase, subunit 3|unclassified	0.4637538339
+UniRef50_F3TGM3: Conserved domain protein	0.4637234000
+UniRef50_F3TGM3: Conserved domain protein|unclassified	0.4637234000
+UniRef50_X1DGH4: Marine sediment metagenome DNA, contig: S01H4_S09318 (Fragment)	0.4636954335
+UniRef50_X1DGH4: Marine sediment metagenome DNA, contig: S01H4_S09318 (Fragment)|unclassified	0.4636954335
+UniRef50_A8H6M6	0.4636817515
+UniRef50_A8H6M6|unclassified	0.4636817515
+UniRef50_UPI00047C42C8: hypothetical protein	0.4636770005
+UniRef50_UPI00047C42C8: hypothetical protein|unclassified	0.4636770005
+UniRef50_Y6XKG6: Transcription factor fapR	0.4636671122
+UniRef50_Y6XKG6: Transcription factor fapR|unclassified	0.4636671122
+UniRef50_W8GDR9	0.4636465918
+UniRef50_W8GDR9|unclassified	0.4636465918
+UniRef50_R1BFF5	0.4635862204
+UniRef50_R1BFF5|unclassified	0.4635862204
+UniRef50_UPI0004720BDA: MFS transporter	0.4635437060
+UniRef50_UPI0004720BDA: MFS transporter|unclassified	0.4635437060
+UniRef50_C9Y378	0.4635149341
+UniRef50_C9Y378|unclassified	0.4635149341
+UniRef50_R1FIE7: Aldo/keto reductase	0.4633887761
+UniRef50_R1FIE7: Aldo/keto reductase|unclassified	0.4633887761
+UniRef50_A0A038GDK8	0.4633318057
+UniRef50_A0A038GDK8|unclassified	0.4633318057
+UniRef50_A4IJB8: Ribosomal RNA small subunit methyltransferase A	0.4632113035
+UniRef50_A4IJB8: Ribosomal RNA small subunit methyltransferase A|unclassified	0.4632113035
+UniRef50_UPI0003725E0D: hypothetical protein	0.4632088063
+UniRef50_UPI0003725E0D: hypothetical protein|unclassified	0.4632088063
+UniRef50_M4QX62: General secretion pathway protein D	0.4631773969
+UniRef50_M4QX62: General secretion pathway protein D|g__Acinetobacter.s__Acinetobacter_baumannii	0.4631773969
+UniRef50_UPI0003610F7A: hypothetical protein	0.4631495953
+UniRef50_UPI0003610F7A: hypothetical protein|unclassified	0.4631495953
+UniRef50_P13063: Periplasmic [NiFeSe] hydrogenase small subunit	0.4631008281
+UniRef50_P13063: Periplasmic [NiFeSe] hydrogenase small subunit|unclassified	0.4631008281
+UniRef50_Q5GV63	0.4630872710
+UniRef50_Q5GV63|unclassified	0.4630872710
+UniRef50_UPI00037B6A19: FMN-dependent NADH-azoreductase	0.4630726954
+UniRef50_UPI00037B6A19: FMN-dependent NADH-azoreductase|unclassified	0.4630726954
+UniRef50_UPI0004784EE3: phosphoenolpyruvate carboxykinase, partial	0.4630703174
+UniRef50_UPI0004784EE3: phosphoenolpyruvate carboxykinase, partial|unclassified	0.4630703174
+UniRef50_W8QM02: Transcriptional regulator	0.4630577824
+UniRef50_W8QM02: Transcriptional regulator|unclassified	0.4630577824
+UniRef50_UPI00046CE535: hypothetical protein	0.4630557067
+UniRef50_UPI00046CE535: hypothetical protein|unclassified	0.4630557067
+UniRef50_UPI0003945FDA: PREDICTED: collagen alpha-1(I) chain-like	0.4630120073
+UniRef50_UPI0003945FDA: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.4630120073
+UniRef50_R1C5J1	0.4629127652
+UniRef50_R1C5J1|unclassified	0.4629127652
+UniRef50_UPI000478F784: alkylhydroperoxidase	0.4629121709
+UniRef50_UPI000478F784: alkylhydroperoxidase|unclassified	0.4629121709
+UniRef50_UPI0003F8A6FF: hypothetical protein	0.4628873512
+UniRef50_UPI0003F8A6FF: hypothetical protein|unclassified	0.4628873512
+UniRef50_UPI0002E14D16: hypothetical protein	0.4628693718
+UniRef50_UPI0002E14D16: hypothetical protein|unclassified	0.4628693718
+UniRef50_A3SLT9	0.4628672073
+UniRef50_A3SLT9|unclassified	0.4628672073
+UniRef50_UPI00037A0009: hypothetical protein, partial	0.4628301152
+UniRef50_UPI00037A0009: hypothetical protein, partial|unclassified	0.4628301152
+UniRef50_UPI000467D200: fimbrial protein	0.4627915778
+UniRef50_UPI000467D200: fimbrial protein|unclassified	0.4627915778
+UniRef50_J8V1I9: ATPase Uup	0.4627619793
+UniRef50_J8V1I9: ATPase Uup|unclassified	0.4627619793
+UniRef50_UPI000374E492: hypothetical protein	0.4627352412
+UniRef50_UPI000374E492: hypothetical protein|unclassified	0.4627352412
+UniRef50_Q62KZ5	0.4627008402
+UniRef50_Q62KZ5|unclassified	0.4627008402
+UniRef50_H1QF06	0.4626912922
+UniRef50_H1QF06|unclassified	0.4626912922
+UniRef50_UPI00036B452D: hypothetical protein	0.4626810169
+UniRef50_UPI00036B452D: hypothetical protein|unclassified	0.4626810169
+UniRef50_D0ZRT1	0.4626681689
+UniRef50_D0ZRT1|unclassified	0.4626681689
+UniRef50_A4WUL7: GumN family protein	0.4626574084
+UniRef50_A4WUL7: GumN family protein|unclassified	0.4626574084
+UniRef50_Q5LQY8: Sarcosine oxidase, gamma subunit family	0.4626100276
+UniRef50_Q5LQY8: Sarcosine oxidase, gamma subunit family|unclassified	0.4626100276
+UniRef50_UPI0002EC3E7D: hypothetical protein	0.4626028909
+UniRef50_UPI0002EC3E7D: hypothetical protein|unclassified	0.4626028909
+UniRef50_UPI0003160516: beta-lactamase	0.4625455055
+UniRef50_UPI0003160516: beta-lactamase|unclassified	0.4625455055
+UniRef50_UPI0003C14FD2: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit A, chloroplastic/mitochondrial-like	0.4624836020
+UniRef50_UPI0003C14FD2: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit A, chloroplastic/mitochondrial-like|unclassified	0.4624836020
+UniRef50_R1DNW7	0.4624056373
+UniRef50_R1DNW7|unclassified	0.4624056373
+UniRef50_V9B4W3: von Willebrand factor type A domain protein	0.4624027283
+UniRef50_V9B4W3: von Willebrand factor type A domain protein|unclassified	0.4624027283
+UniRef50_UPI0003775FD0: hypothetical protein	0.4623772776
+UniRef50_UPI0003775FD0: hypothetical protein|unclassified	0.4623772776
+UniRef50_E3A6T9: Putative chemotaxis transducer	0.4623521276
+UniRef50_E3A6T9: Putative chemotaxis transducer|unclassified	0.4623521276
+UniRef50_UPI0003B5E9FB: arsenic transporter	0.4623485604
+UniRef50_UPI0003B5E9FB: arsenic transporter|unclassified	0.4623485604
+UniRef50_M0DR98: Transcriptional regulator	0.4623009070
+UniRef50_M0DR98: Transcriptional regulator|unclassified	0.4623009070
+UniRef50_UPI00047346B2: glutathione S-transferase, partial	0.4622896968
+UniRef50_UPI00047346B2: glutathione S-transferase, partial|unclassified	0.4622896968
+UniRef50_V4LBB0	0.4622755890
+UniRef50_V4LBB0|unclassified	0.4622755890
+UniRef50_UPI00047085C6: hypothetical protein	0.4622569697
+UniRef50_UPI00047085C6: hypothetical protein|unclassified	0.4622569697
+UniRef50_A0A024IFX7	0.4622556285
+UniRef50_A0A024IFX7|unclassified	0.4622556285
+UniRef50_UPI0003B5DC60: hypothetical protein	0.4622518547
+UniRef50_UPI0003B5DC60: hypothetical protein|unclassified	0.4622518547
+UniRef50_UPI0004736CD6: hypothetical protein	0.4622420469
+UniRef50_UPI0004736CD6: hypothetical protein|unclassified	0.4622420469
+UniRef50_W1M805	0.4622205664
+UniRef50_W1M805|unclassified	0.4622205664
+UniRef50_P40924: Phosphoglycerate kinase	0.4621927716
+UniRef50_P40924: Phosphoglycerate kinase|unclassified	0.4621927716
+UniRef50_Q0B5E8	0.4621805627
+UniRef50_Q0B5E8|unclassified	0.4621805627
+UniRef50_F0YKI4: Expressed protein (Fragment)	0.4620837097
+UniRef50_F0YKI4: Expressed protein (Fragment)|unclassified	0.4620837097
+UniRef50_E2CNB5	0.4620726025
+UniRef50_E2CNB5|unclassified	0.4620726025
+UniRef50_V1DIU7	0.4620716747
+UniRef50_V1DIU7|unclassified	0.4620716747
+UniRef50_X0Y3X4: Marine sediment metagenome DNA, contig: S01H1_S39083 (Fragment)	0.4620646046
+UniRef50_X0Y3X4: Marine sediment metagenome DNA, contig: S01H1_S39083 (Fragment)|unclassified	0.4620646046
+UniRef50_J3CZ96	0.4620430224
+UniRef50_J3CZ96|unclassified	0.4620430224
+UniRef50_UPI0002E05DDE: hypothetical protein	0.4619842459
+UniRef50_UPI0002E05DDE: hypothetical protein|unclassified	0.4619842459
+UniRef50_C3BGI5	0.4619814482
+UniRef50_C3BGI5|unclassified	0.4619814482
+UniRef50_W7AYX4	0.4619664322
+UniRef50_W7AYX4|unclassified	0.4619664322
+UniRef50_UPI0003957F7F: PREDICTED: SH2 domain-containing adapter protein D	0.4619567053
+UniRef50_UPI0003957F7F: PREDICTED: SH2 domain-containing adapter protein D|unclassified	0.4619567053
+UniRef50_S4EU42	0.4619312654
+UniRef50_S4EU42|unclassified	0.4619312654
+UniRef50_D6XR13	0.4618937644
+UniRef50_D6XR13|g__Helicobacter.s__Helicobacter_pylori	0.4618937644
+UniRef50_H9K7J8	0.4618761962
+UniRef50_H9K7J8|unclassified	0.4618761962
+UniRef50_UPI0002FEAB50: hypothetical protein	0.4618719873
+UniRef50_UPI0002FEAB50: hypothetical protein|unclassified	0.4618719873
+UniRef50_UPI0004710988: hypothetical protein	0.4617790096
+UniRef50_UPI0004710988: hypothetical protein|unclassified	0.4617790096
+UniRef50_F3CGE3: Monofunctional biosynthetic peptidoglycan transglycosylase (Fragment)	0.4617567479
+UniRef50_F3CGE3: Monofunctional biosynthetic peptidoglycan transglycosylase (Fragment)|unclassified	0.4617567479
+UniRef50_UPI00025579C9: chemotaxis-specific methylesterase	0.4617435181
+UniRef50_UPI00025579C9: chemotaxis-specific methylesterase|unclassified	0.4617435181
+UniRef50_U6LTE9	0.4616977126
+UniRef50_U6LTE9|unclassified	0.4616977126
+UniRef50_UPI000376FE3B: hypothetical protein	0.4616822095
+UniRef50_UPI000376FE3B: hypothetical protein|unclassified	0.4616822095
+UniRef50_E4R6V3: ATP-dependent helicase HrpB	0.4616805171
+UniRef50_E4R6V3: ATP-dependent helicase HrpB|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.4616805171
+UniRef50_W1YIT0	0.4616654972
+UniRef50_W1YIT0|unclassified	0.4616654972
+UniRef50_A0A015N9J8	0.4616566462
+UniRef50_A0A015N9J8|unclassified	0.4616566462
+UniRef50_R3K8B9	0.4616456960
+UniRef50_R3K8B9|unclassified	0.4616456960
+UniRef50_C3BGQ4: Transposase A	0.4616345155
+UniRef50_C3BGQ4: Transposase A|unclassified	0.4616345155
+UniRef50_I1D3P6: Putative NADPH-quinone reductase (Modulator of drug activity B)	0.4615919433
+UniRef50_I1D3P6: Putative NADPH-quinone reductase (Modulator of drug activity B)|unclassified	0.4615919433
+UniRef50_W0RPF5: NAD-dependent epimerase/dehydratase	0.4615620975
+UniRef50_W0RPF5: NAD-dependent epimerase/dehydratase|unclassified	0.4615620975
+UniRef50_UPI00031A8C2B: hypothetical protein	0.4615581652
+UniRef50_UPI00031A8C2B: hypothetical protein|unclassified	0.4615581652
+UniRef50_UPI000366419B: hypothetical protein	0.4615050287
+UniRef50_UPI000366419B: hypothetical protein|unclassified	0.4615050287
+UniRef50_UPI0002D7C36B: hypothetical protein	0.4614298519
+UniRef50_UPI0002D7C36B: hypothetical protein|unclassified	0.4614298519
+UniRef50_UPI0004785B50: hypothetical protein	0.4614114214
+UniRef50_UPI0004785B50: hypothetical protein|unclassified	0.4614114214
+UniRef50_L0NAE3	0.4611908798
+UniRef50_L0NAE3|unclassified	0.4611908798
+UniRef50_R8ZFZ3: ISPsy24 transposase OrfB	0.4611407954
+UniRef50_R8ZFZ3: ISPsy24 transposase OrfB|unclassified	0.4611407954
+UniRef50_B2JMY7	0.4611191324
+UniRef50_B2JMY7|unclassified	0.4611191324
+UniRef50_L6Q8L7	0.4611109329
+UniRef50_L6Q8L7|unclassified	0.4611109329
+UniRef50_I5C3W2: 6-pyruvoyl-tetrahydropterin synthase	0.4610756842
+UniRef50_I5C3W2: 6-pyruvoyl-tetrahydropterin synthase|unclassified	0.4610756842
+UniRef50_UPI0003C11674: PREDICTED: 3-oxoacyl-[acyl-carrier-protein] reductase 3, chloroplastic-like	0.4610644707
+UniRef50_UPI0003C11674: PREDICTED: 3-oxoacyl-[acyl-carrier-protein] reductase 3, chloroplastic-like|unclassified	0.4610644707
+UniRef50_UPI0003EE5EBB: hypothetical protein	0.4610419548
+UniRef50_UPI0003EE5EBB: hypothetical protein|unclassified	0.4610419548
+UniRef50_T7PGL1	0.4610113481
+UniRef50_T7PGL1|unclassified	0.4610113481
+UniRef50_J7QSF0	0.4609960385
+UniRef50_J7QSF0|unclassified	0.4609960385
+UniRef50_UPI000475B0F1: sugar ABC transporter permease	0.4609540139
+UniRef50_UPI000475B0F1: sugar ABC transporter permease|unclassified	0.4609540139
+UniRef50_UPI0003792E81: hypothetical protein	0.4609527898
+UniRef50_UPI0003792E81: hypothetical protein|unclassified	0.4609527898
+UniRef50_UPI000380C002: hypothetical protein	0.4609428234
+UniRef50_UPI000380C002: hypothetical protein|unclassified	0.4609428234
+UniRef50_U8Z2K3: Alkaline phosphatase L	0.4609206645
+UniRef50_U8Z2K3: Alkaline phosphatase L|unclassified	0.4609206645
+UniRef50_UPI000362EC3A: hypothetical protein	0.4609127905
+UniRef50_UPI000362EC3A: hypothetical protein|unclassified	0.4609127905
+UniRef50_UPI0003C10267	0.4607536113
+UniRef50_UPI0003C10267|unclassified	0.4607536113
+UniRef50_R0DJM9	0.4606938704
+UniRef50_R0DJM9|unclassified	0.4606938704
+UniRef50_A1WXH5: Isopentenyl-diphosphate Delta-isomerase	0.4606828666
+UniRef50_A1WXH5: Isopentenyl-diphosphate Delta-isomerase|unclassified	0.4606828666
+UniRef50_UPI0002C36421: PREDICTED: succinyl-CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial-like, partial	0.4606370301
+UniRef50_UPI0002C36421: PREDICTED: succinyl-CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial-like, partial|unclassified	0.4606370301
+UniRef50_UPI0003B58353: preprotein translocase subunit SecB	0.4606042356
+UniRef50_UPI0003B58353: preprotein translocase subunit SecB|unclassified	0.4606042356
+UniRef50_P69968: Protein TyeA	0.4604995811
+UniRef50_P69968: Protein TyeA|unclassified	0.4604995811
+UniRef50_C3F521	0.4604827546
+UniRef50_C3F521|unclassified	0.4604827546
+UniRef50_C5B1E9	0.4604645677
+UniRef50_C5B1E9|unclassified	0.4604645677
+UniRef50_UPI0003191595: hypothetical protein	0.4604391182
+UniRef50_UPI0003191595: hypothetical protein|unclassified	0.4604391182
+UniRef50_UPI0003A71BDD: hypothetical protein	0.4603843305
+UniRef50_UPI0003A71BDD: hypothetical protein|unclassified	0.4603843305
+UniRef50_X2LXG3: Virulence protein	0.4603667769
+UniRef50_X2LXG3: Virulence protein|unclassified	0.4603667769
+UniRef50_UPI0003EB04CC: PREDICTED: transmembrane gamma-carboxyglutamic acid protein 4 isoform X2	0.4603432713
+UniRef50_UPI0003EB04CC: PREDICTED: transmembrane gamma-carboxyglutamic acid protein 4 isoform X2|unclassified	0.4603432713
+UniRef50_Q21UH1: Tripartite ATP-independent periplasmic transporter, DctQ component	0.4603149337
+UniRef50_Q21UH1: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	0.4603149337
+UniRef50_UPI0003B588F0: short-chain dehydrogenase	0.4603137523
+UniRef50_UPI0003B588F0: short-chain dehydrogenase|unclassified	0.4603137523
+UniRef50_UPI000479A7F8: hypothetical protein	0.4602727038
+UniRef50_UPI000479A7F8: hypothetical protein|unclassified	0.4602727038
+UniRef50_UPI0001D2E721: TonB-dependent siderophore receptor	0.4602550889
+UniRef50_UPI0001D2E721: TonB-dependent siderophore receptor|unclassified	0.4602550889
+UniRef50_Q8KZ03	0.4602212216
+UniRef50_Q8KZ03|unclassified	0.4602212216
+UniRef50_I4SXF1: Phage portal protein, HK97 family	0.4601730758
+UniRef50_I4SXF1: Phage portal protein, HK97 family|unclassified	0.4601730758
+UniRef50_J3CKR0: Pyruvate dehydrogenase complex, dehydrogenase (E1) component (Fragment)	0.4601218415
+UniRef50_J3CKR0: Pyruvate dehydrogenase complex, dehydrogenase (E1) component (Fragment)|unclassified	0.4601218415
+UniRef50_F8H6L5: Cytochrome c family protein	0.4600753592
+UniRef50_F8H6L5: Cytochrome c family protein|unclassified	0.4600753592
+UniRef50_Q5HCM5: Histidine biosynthesis bifunctional protein HisIE	0.4600682477
+UniRef50_Q5HCM5: Histidine biosynthesis bifunctional protein HisIE|unclassified	0.4600682477
+UniRef50_E5WGJ0	0.4600025419
+UniRef50_E5WGJ0|unclassified	0.4600025419
+UniRef50_G1TZD4	0.4599816007
+UniRef50_G1TZD4|unclassified	0.4599816007
+UniRef50_V4I3L2: DNA polymerase II large subunit	0.4599596285
+UniRef50_V4I3L2: DNA polymerase II large subunit|unclassified	0.4599596285
+UniRef50_U6LH55	0.4599440643
+UniRef50_U6LH55|unclassified	0.4599440643
+UniRef50_A9W2L5	0.4599218585
+UniRef50_A9W2L5|unclassified	0.4599218585
+UniRef50_UPI0004420F41: PREDICTED: ATP-binding cassette sub-family B member 8, mitochondrial-like	0.4599082619
+UniRef50_UPI0004420F41: PREDICTED: ATP-binding cassette sub-family B member 8, mitochondrial-like|unclassified	0.4599082619
+UniRef50_Q3CYQ4: ABC transporter, permease protein	0.4598674010
+UniRef50_Q3CYQ4: ABC transporter, permease protein|unclassified	0.4598674010
+UniRef50_A0A011R241: RNA polymerase sigma factor	0.4597046632
+UniRef50_A0A011R241: RNA polymerase sigma factor|unclassified	0.4597046632
+UniRef50_D8LLQ9	0.4596658705
+UniRef50_D8LLQ9|unclassified	0.4596658705
+UniRef50_Q14IN1: Ribonuclease H	0.4596288606
+UniRef50_Q14IN1: Ribonuclease H|unclassified	0.4596288606
+UniRef50_L8DSN4: Internalin-I	0.4596258337
+UniRef50_L8DSN4: Internalin-I|unclassified	0.4596258337
+UniRef50_UPI00024851F4: hemolysin-type calcium-binding protein, partial	0.4596057225
+UniRef50_UPI00024851F4: hemolysin-type calcium-binding protein, partial|unclassified	0.4596057225
+UniRef50_J9NW27	0.4595295387
+UniRef50_J9NW27|unclassified	0.4595295387
+UniRef50_Q46267: Pyruvate formate-lyase-activating enzyme	0.4594350076
+UniRef50_Q46267: Pyruvate formate-lyase-activating enzyme|unclassified	0.4594350076
+UniRef50_UPI00040C67E8: hypothetical protein	0.4594167330
+UniRef50_UPI00040C67E8: hypothetical protein|unclassified	0.4594167330
+UniRef50_UPI0003B409F4: histidinol phosphate phosphatase	0.4593978041
+UniRef50_UPI0003B409F4: histidinol phosphate phosphatase|unclassified	0.4593978041
+UniRef50_Q47NA5	0.4593284123
+UniRef50_Q47NA5|unclassified	0.4593284123
+UniRef50_UPI00036F1B6D: hypothetical protein	0.4593254736
+UniRef50_UPI00036F1B6D: hypothetical protein|unclassified	0.4593254736
+UniRef50_I4F260	0.4592963995
+UniRef50_I4F260|unclassified	0.4592963995
+UniRef50_UPI0003764B0D: hypothetical protein	0.4592555209
+UniRef50_UPI0003764B0D: hypothetical protein|unclassified	0.4592555209
+UniRef50_UPI0004752042: formyltetrahydrofolate deformylase, partial	0.4592522306
+UniRef50_UPI0004752042: formyltetrahydrofolate deformylase, partial|unclassified	0.4592522306
+UniRef50_X7F9V5: Flagellar basal body-associated protein FliL	0.4592231339
+UniRef50_X7F9V5: Flagellar basal body-associated protein FliL|unclassified	0.4592231339
+UniRef50_Q21NT4	0.4592101386
+UniRef50_Q21NT4|unclassified	0.4592101386
+UniRef50_C6BBN0	0.4591943359
+UniRef50_C6BBN0|unclassified	0.4591943359
+UniRef50_UPI000329E2F4: PREDICTED: flocculation protein FLO11-like, partial	0.4591368228
+UniRef50_UPI000329E2F4: PREDICTED: flocculation protein FLO11-like, partial|unclassified	0.4591368228
+UniRef50_W5X4N4: 30S ribosomal protein S18	0.4591244851
+UniRef50_W5X4N4: 30S ribosomal protein S18|unclassified	0.4591244851
+UniRef50_UPI000465A127: membrane protein, partial	0.4590895753
+UniRef50_UPI000465A127: membrane protein, partial|unclassified	0.4590895753
+UniRef50_Q7UC35	0.4590001707
+UniRef50_Q7UC35|unclassified	0.4590001707
+UniRef50_V9VSR3	0.4589894388
+UniRef50_V9VSR3|unclassified	0.4589894388
+UniRef50_E6EBC0	0.4589702184
+UniRef50_E6EBC0|unclassified	0.4589702184
+UniRef50_G7M6M8: Peptidase M56 BlaR1	0.4589261129
+UniRef50_G7M6M8: Peptidase M56 BlaR1|g__Clostridium.s__Clostridium_beijerinckii	0.4589261129
+UniRef50_UPI0003666D5F: hypothetical protein	0.4589074567
+UniRef50_UPI0003666D5F: hypothetical protein|unclassified	0.4589074567
+UniRef50_O33695: Glycerol-3-phosphate dehydrogenase homolog (Fragment)	0.4589034138
+UniRef50_O33695: Glycerol-3-phosphate dehydrogenase homolog (Fragment)|unclassified	0.4589034138
+UniRef50_UPI0003C46DAC	0.4588559192
+UniRef50_UPI0003C46DAC|unclassified	0.4588559192
+UniRef50_UPI000328D6AA	0.4587601520
+UniRef50_UPI000328D6AA|unclassified	0.4587601520
+UniRef50_UPI0003958315: PREDICTED: collagen alpha-1(I) chain-like, partial	0.4587433784
+UniRef50_UPI0003958315: PREDICTED: collagen alpha-1(I) chain-like, partial|unclassified	0.4587433784
+UniRef50_E4SWR9: Phospholipid-binding protein	0.4586769604
+UniRef50_E4SWR9: Phospholipid-binding protein|unclassified	0.4586769604
+UniRef50_A8ACZ5	0.4586218990
+UniRef50_A8ACZ5|unclassified	0.4586218990
+UniRef50_Q8YN70: Phosphopantetheine adenylyltransferase	0.4585952682
+UniRef50_Q8YN70: Phosphopantetheine adenylyltransferase|unclassified	0.4585952682
+UniRef50_UPI000369666F: hypothetical protein	0.4585682108
+UniRef50_UPI000369666F: hypothetical protein|unclassified	0.4585682108
+UniRef50_U3U0V2	0.4585347808
+UniRef50_U3U0V2|unclassified	0.4585347808
+UniRef50_C0B3R5	0.4584696090
+UniRef50_C0B3R5|unclassified	0.4584696090
+UniRef50_Q49VM7: UPF0178 protein SSP2038	0.4584479133
+UniRef50_Q49VM7: UPF0178 protein SSP2038|unclassified	0.4584479133
+UniRef50_W4HN66	0.4584408183
+UniRef50_W4HN66|unclassified	0.4584408183
+UniRef50_UPI00047BF552: hypothetical protein, partial	0.4584350133
+UniRef50_UPI00047BF552: hypothetical protein, partial|unclassified	0.4584350133
+UniRef50_B0SIB4: Adenine phosphoribosyltransferase	0.4584169111
+UniRef50_B0SIB4: Adenine phosphoribosyltransferase|unclassified	0.4584169111
+UniRef50_W7T442: TB2/DP1/HVA22-related protein	0.4584099227
+UniRef50_W7T442: TB2/DP1/HVA22-related protein|unclassified	0.4584099227
+UniRef50_G0A2X8: DoxX family protein	0.4583895942
+UniRef50_G0A2X8: DoxX family protein|unclassified	0.4583895942
+UniRef50_UPI0002F69DCC: hypothetical protein	0.4583638048
+UniRef50_UPI0002F69DCC: hypothetical protein|unclassified	0.4583638048
+UniRef50_UPI0003801821: hypothetical protein	0.4583250460
+UniRef50_UPI0003801821: hypothetical protein|unclassified	0.4583250460
+UniRef50_UPI000310CAF3: hypothetical protein	0.4582999878
+UniRef50_UPI000310CAF3: hypothetical protein|unclassified	0.4582999878
+UniRef50_UPI00026C84CA: GntR family transcriptional regulator	0.4582817927
+UniRef50_UPI00026C84CA: GntR family transcriptional regulator|unclassified	0.4582817927
+UniRef50_UPI000475069A: hypothetical protein	0.4582515534
+UniRef50_UPI000475069A: hypothetical protein|unclassified	0.4582515534
+UniRef50_UPI000237AC89: threonine synthase	0.4582098789
+UniRef50_UPI000237AC89: threonine synthase|unclassified	0.4582098789
+UniRef50_W8V6Q1	0.4582042607
+UniRef50_W8V6Q1|unclassified	0.4582042607
+UniRef50_A4U497	0.4581709170
+UniRef50_A4U497|unclassified	0.4581709170
+UniRef50_M8E6M3	0.4581508168
+UniRef50_M8E6M3|unclassified	0.4581508168
+UniRef50_G9QLQ2	0.4581252582
+UniRef50_G9QLQ2|unclassified	0.4581252582
+UniRef50_UPI00037C10D5: hypothetical protein	0.4581190047
+UniRef50_UPI00037C10D5: hypothetical protein|unclassified	0.4581190047
+UniRef50_M9VD52: Efflux ABC transporter permease	0.4580852038
+UniRef50_M9VD52: Efflux ABC transporter permease|g__Propionibacterium.s__Propionibacterium_acnes	0.4580852038
+UniRef50_UPI00036A73F1: hypothetical protein	0.4580231354
+UniRef50_UPI00036A73F1: hypothetical protein|unclassified	0.4580231354
+UniRef50_UPI0003820846: hypothetical protein	0.4579494657
+UniRef50_UPI0003820846: hypothetical protein|unclassified	0.4579494657
+UniRef50_Q03IX7: Holo-[acyl-carrier-protein] synthase	0.4579171639
+UniRef50_Q03IX7: Holo-[acyl-carrier-protein] synthase|unclassified	0.4579171639
+UniRef50_UPI0003B6BA3F: hypothetical protein	0.4579138266
+UniRef50_UPI0003B6BA3F: hypothetical protein|unclassified	0.4579138266
+UniRef50_UPI000465045A: glutathione synthetase	0.4579003058
+UniRef50_UPI000465045A: glutathione synthetase|unclassified	0.4579003058
+UniRef50_UPI000185DC35: helicase, putative	0.4578754579
+UniRef50_UPI000185DC35: helicase, putative|unclassified	0.4578754579
+UniRef50_A0A059IU76	0.4577535935
+UniRef50_A0A059IU76|unclassified	0.4577535935
+UniRef50_S2L5J7	0.4577463859
+UniRef50_S2L5J7|unclassified	0.4577463859
+UniRef50_E3ZQM3: YqeL	0.4576560408
+UniRef50_E3ZQM3: YqeL|unclassified	0.4576560408
+UniRef50_D3QH01: Branched-chain amino acid permease	0.4576472136
+UniRef50_D3QH01: Branched-chain amino acid permease|unclassified	0.4576472136
+UniRef50_N6YQC2: NAD-specific glutamate dehydrogenase	0.4576468422
+UniRef50_N6YQC2: NAD-specific glutamate dehydrogenase|unclassified	0.4576468422
+UniRef50_UPI000395A8B9: PREDICTED: homeobox protein SEBOX	0.4576322399
+UniRef50_UPI000395A8B9: PREDICTED: homeobox protein SEBOX|unclassified	0.4576322399
+UniRef50_UPI0003823D63: hypothetical protein	0.4576113540
+UniRef50_UPI0003823D63: hypothetical protein|unclassified	0.4576113540
+UniRef50_M7XY21	0.4575851060
+UniRef50_M7XY21|unclassified	0.4575851060
+UniRef50_UPI000287A41D: DNA-binding transcriptional regulator CsiR	0.4575350536
+UniRef50_UPI000287A41D: DNA-binding transcriptional regulator CsiR|unclassified	0.4575350536
+UniRef50_UPI0003B5A2D2: collagen-binding protein	0.4575347710
+UniRef50_UPI0003B5A2D2: collagen-binding protein|unclassified	0.4575347710
+UniRef50_UPI0004746BAC: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase, partial	0.4574978948
+UniRef50_UPI0004746BAC: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase, partial|unclassified	0.4574978948
+UniRef50_UPI00045E3E46: PREDICTED: collagen alpha-1(III) chain-like	0.4574362754
+UniRef50_UPI00045E3E46: PREDICTED: collagen alpha-1(III) chain-like|unclassified	0.4574362754
+UniRef50_Q1GG57	0.4573739918
+UniRef50_Q1GG57|unclassified	0.4573739918
+UniRef50_C9Z666	0.4573622764
+UniRef50_C9Z666|unclassified	0.4573622764
+UniRef50_Q9L3B3: Coenzyme PQQ synthesis protein B	0.4573565038
+UniRef50_Q9L3B3: Coenzyme PQQ synthesis protein B|unclassified	0.4573565038
+UniRef50_W9T1M6: Molybdopterin oxidoreductase subunit alpha	0.4573087786
+UniRef50_W9T1M6: Molybdopterin oxidoreductase subunit alpha|unclassified	0.4573087786
+UniRef50_T1BGV4: Transcriptional regulator, BadM/Rrf2 family	0.4573009891
+UniRef50_T1BGV4: Transcriptional regulator, BadM/Rrf2 family|unclassified	0.4573009891
+UniRef50_F8KSY3: ATPase provides energy for both assembly of type IV secretion complex and secretion of T-DNA complex (VirB4)	0.4572473708
+UniRef50_F8KSY3: ATPase provides energy for both assembly of type IV secretion complex and secretion of T-DNA complex (VirB4)|g__Helicobacter.s__Helicobacter_pylori	0.4572473708
+UniRef50_I0EYG5: Adenine-specific DNA methylase	0.4572473708
+UniRef50_I0EYG5: Adenine-specific DNA methylase|g__Helicobacter.s__Helicobacter_pylori	0.4572473708
+UniRef50_D3KHD2	0.4572164353
+UniRef50_D3KHD2|unclassified	0.4572164353
+UniRef50_J2GHT5	0.4572163938
+UniRef50_J2GHT5|unclassified	0.4572163938
+UniRef50_B9KVD6	0.4571810520
+UniRef50_B9KVD6|unclassified	0.4571810520
+UniRef50_I1ICD7	0.4571638298
+UniRef50_I1ICD7|unclassified	0.4571638298
+UniRef50_D4DLY8: Primosomal protein N	0.4570383912
+UniRef50_D4DLY8: Primosomal protein N|g__Neisseria.s__Neisseria_meningitidis	0.4570383912
+UniRef50_A0A059FST6: SufE family Fe-S metabolism protein	0.4570180264
+UniRef50_A0A059FST6: SufE family Fe-S metabolism protein|unclassified	0.4570180264
+UniRef50_X1SAS1: Marine sediment metagenome DNA, contig: S12H4_L07128 (Fragment)	0.4567450426
+UniRef50_X1SAS1: Marine sediment metagenome DNA, contig: S12H4_L07128 (Fragment)|unclassified	0.4567450426
+UniRef50_UPI0002F8D577: hypothetical protein	0.4567245242
+UniRef50_UPI0002F8D577: hypothetical protein|unclassified	0.4567245242
+UniRef50_S9R468: Mobile element protein	0.4566870985
+UniRef50_S9R468: Mobile element protein|unclassified	0.4566870985
+UniRef50_UPI0004695ED8: FixH protein	0.4566167205
+UniRef50_UPI0004695ED8: FixH protein|unclassified	0.4566167205
+UniRef50_A3JYI8	0.4565849279
+UniRef50_A3JYI8|unclassified	0.4565849279
+UniRef50_Q0ANX2	0.4565831858
+UniRef50_Q0ANX2|unclassified	0.4565831858
+UniRef50_M3ZEB7	0.4565387889
+UniRef50_M3ZEB7|unclassified	0.4565387889
+UniRef50_M4UTW5	0.4564996117
+UniRef50_M4UTW5|unclassified	0.4564996117
+UniRef50_UPI00046453A1: hypothetical protein	0.4564765131
+UniRef50_UPI00046453A1: hypothetical protein|unclassified	0.4564765131
+UniRef50_A1WS37: NAD(P) transhydrogenase, subunit alpha part 2	0.4564680254
+UniRef50_A1WS37: NAD(P) transhydrogenase, subunit alpha part 2|unclassified	0.4564680254
+UniRef50_R1HV07: DNA repair protein RadA (Fragment)	0.4564335656
+UniRef50_R1HV07: DNA repair protein RadA (Fragment)|unclassified	0.4564335656
+UniRef50_UPI0002880B99: putative tartrate dehydrogenase	0.4564228276
+UniRef50_UPI0002880B99: putative tartrate dehydrogenase|unclassified	0.4564228276
+UniRef50_X2MMT2: Membrane protein	0.4564213473
+UniRef50_X2MMT2: Membrane protein|unclassified	0.4564213473
+UniRef50_M3TVL4	0.4564125970
+UniRef50_M3TVL4|unclassified	0.4564125970
+UniRef50_F6I6S1	0.4564070110
+UniRef50_F6I6S1|unclassified	0.4564070110
+UniRef50_Q1MKY0: Histidine--tRNA ligase	0.4563895408
+UniRef50_Q1MKY0: Histidine--tRNA ligase|unclassified	0.4563895408
+UniRef50_A4WZM1	0.4563773529
+UniRef50_A4WZM1|unclassified	0.4563773529
+UniRef50_Z5RZH0	0.4563351254
+UniRef50_Z5RZH0|unclassified	0.4563351254
+UniRef50_UPI0003715A31: hypothetical protein	0.4563158503
+UniRef50_UPI0003715A31: hypothetical protein|unclassified	0.4563158503
+UniRef50_F8CTK9: Lipoprotein	0.4563138178
+UniRef50_F8CTK9: Lipoprotein|unclassified	0.4563138178
+UniRef50_A3K9P8	0.4563041303
+UniRef50_A3K9P8|unclassified	0.4563041303
+UniRef50_W0I9Q2: Prevent-host-death protein	0.4562534650
+UniRef50_W0I9Q2: Prevent-host-death protein|unclassified	0.4562534650
+UniRef50_J8VD34	0.4562487169
+UniRef50_J8VD34|unclassified	0.4562487169
+UniRef50_R4MBV7	0.4562283589
+UniRef50_R4MBV7|unclassified	0.4562283589
+UniRef50_X2LN33	0.4561781402
+UniRef50_X2LN33|unclassified	0.4561781402
+UniRef50_UPI0003EE2E48: PREDICTED: aldehyde dehydrogenase family 8 member A1-like, partial	0.4561771113
+UniRef50_UPI0003EE2E48: PREDICTED: aldehyde dehydrogenase family 8 member A1-like, partial|unclassified	0.4561771113
+UniRef50_UPI0004411EC4: hypothetical protein AURDEDRAFT_182094	0.4561744650
+UniRef50_UPI0004411EC4: hypothetical protein AURDEDRAFT_182094|unclassified	0.4561744650
+UniRef50_UPI00047E5D36: hypothetical protein	0.4561149854
+UniRef50_UPI00047E5D36: hypothetical protein|unclassified	0.4561149854
+UniRef50_UPI0003B3864C: ABC transporter ATP-binding protein	0.4560685835
+UniRef50_UPI0003B3864C: ABC transporter ATP-binding protein|unclassified	0.4560685835
+UniRef50_D5TSE2	0.4560504463
+UniRef50_D5TSE2|unclassified	0.4560504463
+UniRef50_L9PIU3	0.4560483142
+UniRef50_L9PIU3|unclassified	0.4560483142
+UniRef50_A6V0D0	0.4559664846
+UniRef50_A6V0D0|unclassified	0.4559664846
+UniRef50_UPI0003AFBDAB: PREDICTED: zinc finger protein ZIC 2-like	0.4557697509
+UniRef50_UPI0003AFBDAB: PREDICTED: zinc finger protein ZIC 2-like|unclassified	0.4557697509
+UniRef50_UPI00047372AD: hypothetical protein, partial	0.4557693601
+UniRef50_UPI00047372AD: hypothetical protein, partial|unclassified	0.4557693601
+UniRef50_B0SVK0	0.4557471119
+UniRef50_B0SVK0|unclassified	0.4557471119
+UniRef50_I3THB4	0.4557425654
+UniRef50_I3THB4|unclassified	0.4557425654
+UniRef50_UPI00016AD9D7: hypothetical protein	0.4557281005
+UniRef50_UPI00016AD9D7: hypothetical protein|unclassified	0.4557281005
+UniRef50_D6IV09: Transposase	0.4557099006
+UniRef50_D6IV09: Transposase|unclassified	0.4557099006
+UniRef50_Q8EF61: Chemotaxis response regulator protein-glutamate methylesterase of group 2 operon	0.4557016422
+UniRef50_Q8EF61: Chemotaxis response regulator protein-glutamate methylesterase of group 2 operon|unclassified	0.4557016422
+UniRef50_Q92LC9: Putative partial transposase (Fragment)	0.4556814517
+UniRef50_Q92LC9: Putative partial transposase (Fragment)|unclassified	0.4556814517
+UniRef50_UPI00047ED6EE: hypothetical protein	0.4556574168
+UniRef50_UPI00047ED6EE: hypothetical protein|unclassified	0.4556574168
+UniRef50_B9E800	0.4556479015
+UniRef50_B9E800|unclassified	0.4556479015
+UniRef50_W4L246	0.4555939182
+UniRef50_W4L246|unclassified	0.4555939182
+UniRef50_I3Y6A0: CRISPR-associated helicase, Cas3 family	0.4555833568
+UniRef50_I3Y6A0: CRISPR-associated helicase, Cas3 family|unclassified	0.4555833568
+UniRef50_F3U333	0.4555479997
+UniRef50_F3U333|unclassified	0.4555479997
+UniRef50_UPI0003C7BE7D: MerR family transcriptional regulator	0.4555078615
+UniRef50_UPI0003C7BE7D: MerR family transcriptional regulator|unclassified	0.4555078615
+UniRef50_J9CVC6: DNA replication and repair protein RecF (Fragment)	0.4554933190
+UniRef50_J9CVC6: DNA replication and repair protein RecF (Fragment)|unclassified	0.4554933190
+UniRef50_R7EV20: Phi13 family phage major tail protein	0.4554877362
+UniRef50_R7EV20: Phi13 family phage major tail protein|unclassified	0.4554877362
+UniRef50_A0A017HH07	0.4554000555
+UniRef50_A0A017HH07|unclassified	0.4554000555
+UniRef50_Q87L67: Shikimate kinase	0.4553797358
+UniRef50_Q87L67: Shikimate kinase|unclassified	0.4553797358
+UniRef50_B1HLW4	0.4553328688
+UniRef50_B1HLW4|unclassified	0.4553328688
+UniRef50_I4D0N3: Bacillithiol biosynthesis deacetylase BshB2	0.4552949616
+UniRef50_I4D0N3: Bacillithiol biosynthesis deacetylase BshB2|unclassified	0.4552949616
+UniRef50_UPI0003031E8E: hypothetical protein	0.4552864548
+UniRef50_UPI0003031E8E: hypothetical protein|unclassified	0.4552864548
+UniRef50_C8S4U8	0.4552490818
+UniRef50_C8S4U8|unclassified	0.4552490818
+UniRef50_F2ZZG2: TPR domain-containing protein (Fragment)	0.4552479058
+UniRef50_F2ZZG2: TPR domain-containing protein (Fragment)|unclassified	0.4552479058
+UniRef50_Q9X1A4: Adenine phosphoribosyltransferase	0.4551438985
+UniRef50_Q9X1A4: Adenine phosphoribosyltransferase|unclassified	0.4551438985
+UniRef50_W1Y368	0.4551312891
+UniRef50_W1Y368|unclassified	0.4551312891
+UniRef50_H9K4X2	0.4550023655
+UniRef50_H9K4X2|unclassified	0.4550023655
+UniRef50_A8IJ42	0.4549913706
+UniRef50_A8IJ42|unclassified	0.4549913706
+UniRef50_UPI0003B5CBDB: MULTISPECIES: 30S ribosomal protein S9	0.4549764841
+UniRef50_UPI0003B5CBDB: MULTISPECIES: 30S ribosomal protein S9|unclassified	0.4549764841
+UniRef50_Q7N0A6: Isopentenyl-diphosphate Delta-isomerase 2	0.4549534984
+UniRef50_Q7N0A6: Isopentenyl-diphosphate Delta-isomerase 2|unclassified	0.4549534984
+UniRef50_H0AE86: FeS assembly ATPase SufC	0.4549511932
+UniRef50_H0AE86: FeS assembly ATPase SufC|unclassified	0.4549511932
+UniRef50_UPI0003EE618B: hypothetical protein, partial	0.4549422589
+UniRef50_UPI0003EE618B: hypothetical protein, partial|unclassified	0.4549422589
+UniRef50_P45102: Succinyl-CoA ligase [ADP-forming] subunit alpha	0.4549337830
+UniRef50_P45102: Succinyl-CoA ligase [ADP-forming] subunit alpha|unclassified	0.4549337830
+UniRef50_A0A017J7I1	0.4549275073
+UniRef50_A0A017J7I1|unclassified	0.4549275073
+UniRef50_A3QGB5	0.4548960830
+UniRef50_A3QGB5|unclassified	0.4548960830
+UniRef50_UPI00035C9431: hypothetical protein	0.4548592692
+UniRef50_UPI00035C9431: hypothetical protein|unclassified	0.4548592692
+UniRef50_UPI000366072B: hypothetical protein	0.4547503151
+UniRef50_UPI000366072B: hypothetical protein|unclassified	0.4547503151
+UniRef50_UPI00026276EB: preprotein translocase subunit SecA	0.4546797177
+UniRef50_UPI00026276EB: preprotein translocase subunit SecA|unclassified	0.4546797177
+UniRef50_UPI0002897026: cytochrome c oxidase subunit II	0.4546500181
+UniRef50_UPI0002897026: cytochrome c oxidase subunit II|unclassified	0.4546500181
+UniRef50_W9VCX1: Nitrogenase FeMo-cofactor scaffold and assembly protein NifN	0.4546499934
+UniRef50_W9VCX1: Nitrogenase FeMo-cofactor scaffold and assembly protein NifN|unclassified	0.4546499934
+UniRef50_UPI00016A2A91: molybdate ABC transporter, inner membrane subunit, partial	0.4546202533
+UniRef50_UPI00016A2A91: molybdate ABC transporter, inner membrane subunit, partial|unclassified	0.4546202533
+UniRef50_O32044: Single-stranded-DNA-specific exonuclease RecJ	0.4545454545
+UniRef50_O32044: Single-stranded-DNA-specific exonuclease RecJ|unclassified	0.4545454545
+UniRef50_Q9ZM40: Flagellar biosynthesis protein FlhA	0.4545454545
+UniRef50_Q9ZM40: Flagellar biosynthesis protein FlhA|g__Helicobacter.s__Helicobacter_pylori	0.4545454545
+UniRef50_D3P3H9	0.4545174583
+UniRef50_D3P3H9|unclassified	0.4545174583
+UniRef50_UPI00036EA6E2: hypothetical protein	0.4544557143
+UniRef50_UPI00036EA6E2: hypothetical protein|unclassified	0.4544557143
+UniRef50_UPI00046653D6: general stress protein CsbD	0.4542548715
+UniRef50_UPI00046653D6: general stress protein CsbD|unclassified	0.4542548715
+UniRef50_Q03075: Cbb3-type cytochrome c oxidase subunit FixP	0.4542269805
+UniRef50_Q03075: Cbb3-type cytochrome c oxidase subunit FixP|unclassified	0.4542269805
+UniRef50_B5GQV3	0.4542006053
+UniRef50_B5GQV3|unclassified	0.4542006053
+UniRef50_UPI0002E89216: hypothetical protein	0.4541794497
+UniRef50_UPI0002E89216: hypothetical protein|unclassified	0.4541794497
+UniRef50_W1H0N8: Outer Membrane Siderophore Receptor IroN	0.4541683584
+UniRef50_W1H0N8: Outer Membrane Siderophore Receptor IroN|unclassified	0.4541683584
+UniRef50_UPI00047AD088: hypothetical protein	0.4541637018
+UniRef50_UPI00047AD088: hypothetical protein|unclassified	0.4541637018
+UniRef50_K9AM73	0.4541417403
+UniRef50_K9AM73|unclassified	0.4541417403
+UniRef50_UPI0004771937: peptide ABC transporter substrate-binding protein	0.4541007381
+UniRef50_UPI0004771937: peptide ABC transporter substrate-binding protein|unclassified	0.4541007381
+UniRef50_UPI0003EA8892: PREDICTED: protein Jade-3-like	0.4539672676
+UniRef50_UPI0003EA8892: PREDICTED: protein Jade-3-like|unclassified	0.4539672676
+UniRef50_Q6A8I8: Alanine--tRNA ligase	0.4539264639
+UniRef50_Q6A8I8: Alanine--tRNA ligase|g__Propionibacterium.s__Propionibacterium_acnes	0.4539264639
+UniRef50_UPI0003806B2B: hypothetical protein	0.4539216827
+UniRef50_UPI0003806B2B: hypothetical protein|unclassified	0.4539216827
+UniRef50_L1F8G8	0.4539070035
+UniRef50_L1F8G8|unclassified	0.4539070035
+UniRef50_UPI0003708BDB: hypothetical protein	0.4538572752
+UniRef50_UPI0003708BDB: hypothetical protein|unclassified	0.4538572752
+UniRef50_UPI000477DE7D: aminodeoxychorismate lyase, partial	0.4537197365
+UniRef50_UPI000477DE7D: aminodeoxychorismate lyase, partial|unclassified	0.4537197365
+UniRef50_F8B5V8: Methylmalonyl-CoA epimerase	0.4536359843
+UniRef50_F8B5V8: Methylmalonyl-CoA epimerase|unclassified	0.4536359843
+UniRef50_B2I4P8: Peptide methionine sulfoxide reductase MsrA	0.4536014339
+UniRef50_B2I4P8: Peptide methionine sulfoxide reductase MsrA|unclassified	0.4536014339
+UniRef50_K2ET09	0.4536007449
+UniRef50_K2ET09|unclassified	0.4536007449
+UniRef50_C3DNQ0: Chromosome partition protein smc	0.4535780281
+UniRef50_C3DNQ0: Chromosome partition protein smc|unclassified	0.4535780281
+UniRef50_UPI00026292DA: oligopeptide transport system permease OppB, partial	0.4535466720
+UniRef50_UPI00026292DA: oligopeptide transport system permease OppB, partial|unclassified	0.4535466720
+UniRef50_UPI0004693FA1: hypothetical protein	0.4535465759
+UniRef50_UPI0004693FA1: hypothetical protein|unclassified	0.4535465759
+UniRef50_W8YP70	0.4535147392
+UniRef50_W8YP70|unclassified	0.4535147392
+UniRef50_V4R363: Tyrosyl-tRNA synthetase	0.4534952805
+UniRef50_V4R363: Tyrosyl-tRNA synthetase|unclassified	0.4534952805
+UniRef50_K0RYW3	0.4534824253
+UniRef50_K0RYW3|unclassified	0.4534824253
+UniRef50_W1WY16	0.4534804821
+UniRef50_W1WY16|unclassified	0.4534804821
+UniRef50_F1V9T7	0.4534307045
+UniRef50_F1V9T7|unclassified	0.4534307045
+UniRef50_A0A022H366: Transposase	0.4534141745
+UniRef50_A0A022H366: Transposase|unclassified	0.4534141745
+UniRef50_UPI00042881BA: hypothetical protein	0.4534043755
+UniRef50_UPI00042881BA: hypothetical protein|unclassified	0.4534043755
+UniRef50_UPI000370920E: hypothetical protein	0.4533742697
+UniRef50_UPI000370920E: hypothetical protein|unclassified	0.4533742697
+UniRef50_N0B545: HupE/UreJ protein	0.4533576456
+UniRef50_N0B545: HupE/UreJ protein|unclassified	0.4533576456
+UniRef50_UPI0003487951: hypothetical protein	0.4532945462
+UniRef50_UPI0003487951: hypothetical protein|unclassified	0.4532945462
+UniRef50_UPI0003B6CB71: sulfonate ABC transporter ATP-binding protein	0.4532482737
+UniRef50_UPI0003B6CB71: sulfonate ABC transporter ATP-binding protein|unclassified	0.4532482737
+UniRef50_UPI0003F5615A: cytochrome C biogenesis protein CcmE	0.4532316527
+UniRef50_UPI0003F5615A: cytochrome C biogenesis protein CcmE|unclassified	0.4532316527
+UniRef50_UPI000418ED6C: MULTISPECIES: haloacid dehalogenase	0.4532283790
+UniRef50_UPI000418ED6C: MULTISPECIES: haloacid dehalogenase|unclassified	0.4532283790
+UniRef50_X1DYG2: Marine sediment metagenome DNA, contig: S03H2_C03661 (Fragment)	0.4530918206
+UniRef50_X1DYG2: Marine sediment metagenome DNA, contig: S03H2_C03661 (Fragment)|unclassified	0.4530918206
+UniRef50_UPI0004132CC1: GntR family transcriptional regulator	0.4530610828
+UniRef50_UPI0004132CC1: GntR family transcriptional regulator|unclassified	0.4530610828
+UniRef50_N1ZXZ7	0.4530513837
+UniRef50_N1ZXZ7|unclassified	0.4530513837
+UniRef50_F8PQG6	0.4529358894
+UniRef50_F8PQG6|unclassified	0.4529358894
+UniRef50_B2AGK5	0.4529000128
+UniRef50_B2AGK5|unclassified	0.4529000128
+UniRef50_UPI000237AA64: binding-protein-dependent transporter inner membrane component	0.4528247068
+UniRef50_UPI000237AA64: binding-protein-dependent transporter inner membrane component|unclassified	0.4528247068
+UniRef50_UPI0003758D3E: hypothetical protein	0.4528120043
+UniRef50_UPI0003758D3E: hypothetical protein|unclassified	0.4528120043
+UniRef50_W6K439	0.4527882153
+UniRef50_W6K439|unclassified	0.4527882153
+UniRef50_UPI000367CE0F: hypothetical protein, partial	0.4527801106
+UniRef50_UPI000367CE0F: hypothetical protein, partial|unclassified	0.4527801106
+UniRef50_W7WPC9	0.4527358158
+UniRef50_W7WPC9|unclassified	0.4527358158
+UniRef50_A0A045EMV1	0.4527220446
+UniRef50_A0A045EMV1|unclassified	0.4527220446
+UniRef50_S5VV73	0.4527046153
+UniRef50_S5VV73|unclassified	0.4527046153
+UniRef50_UPI0003B49260: thiamine-phosphate pyrophosphorylase	0.4527029009
+UniRef50_UPI0003B49260: thiamine-phosphate pyrophosphorylase|unclassified	0.4527029009
+UniRef50_UPI000374822D: hypothetical protein	0.4526781126
+UniRef50_UPI000374822D: hypothetical protein|unclassified	0.4526781126
+UniRef50_R1G067	0.4526239235
+UniRef50_R1G067|unclassified	0.4526239235
+UniRef50_UPI00016A65E9: hypothetical protein	0.4525930688
+UniRef50_UPI00016A65E9: hypothetical protein|unclassified	0.4525930688
+UniRef50_F7ZIC0	0.4525911989
+UniRef50_F7ZIC0|unclassified	0.4525911989
+UniRef50_G4LHX5	0.4525173828
+UniRef50_G4LHX5|unclassified	0.4525173828
+UniRef50_W7T1C4	0.4524705978
+UniRef50_W7T1C4|unclassified	0.4524705978
+UniRef50_UPI00047912C6: hypothetical protein	0.4524656010
+UniRef50_UPI00047912C6: hypothetical protein|unclassified	0.4524656010
+UniRef50_F4XZE2	0.4524552701
+UniRef50_F4XZE2|unclassified	0.4524552701
+UniRef50_W6IDJ9: Small heat shock protein	0.4524265678
+UniRef50_W6IDJ9: Small heat shock protein|unclassified	0.4524265678
+UniRef50_C6DK80: Cytochrome c-552	0.4524174247
+UniRef50_C6DK80: Cytochrome c-552|unclassified	0.4524174247
+UniRef50_UPI00047955BB: hydrolase	0.4523404034
+UniRef50_UPI00047955BB: hydrolase|unclassified	0.4523404034
+UniRef50_UPI00036EDA42: hypothetical protein	0.4522543826
+UniRef50_UPI00036EDA42: hypothetical protein|unclassified	0.4522543826
+UniRef50_UPI0004782FB1: FAD-dependent oxidoreductase	0.4522295311
+UniRef50_UPI0004782FB1: FAD-dependent oxidoreductase|unclassified	0.4522295311
+UniRef50_C3DFA2: Transcriptional regulator, ArsR	0.4521806687
+UniRef50_C3DFA2: Transcriptional regulator, ArsR|unclassified	0.4521806687
+UniRef50_B7ZYI6	0.4521501688
+UniRef50_B7ZYI6|unclassified	0.4521501688
+UniRef50_UPI00046F09BF: membrane protein, partial	0.4521233733
+UniRef50_UPI00046F09BF: membrane protein, partial|unclassified	0.4521233733
+UniRef50_UPI0003D70A5F: PREDICTED: protein SPT2 homolog	0.4520894572
+UniRef50_UPI0003D70A5F: PREDICTED: protein SPT2 homolog|unclassified	0.4520894572
+UniRef50_UPI00024936C7: polyketide synthase	0.4520795660
+UniRef50_UPI00024936C7: polyketide synthase|unclassified	0.4520795660
+UniRef50_Q9DA76	0.4519307266
+UniRef50_Q9DA76|unclassified	0.4519307266
+UniRef50_A7HXV9: Cyclase/dehydrase	0.4518760481
+UniRef50_A7HXV9: Cyclase/dehydrase|unclassified	0.4518760481
+UniRef50_K7E096	0.4518287407
+UniRef50_K7E096|unclassified	0.4518287407
+UniRef50_A0Z9H7: Transcriptional regulator, AsnC family protein	0.4517949034
+UniRef50_A0Z9H7: Transcriptional regulator, AsnC family protein|unclassified	0.4517949034
+UniRef50_B9TCQ2	0.4517878649
+UniRef50_B9TCQ2|unclassified	0.4517878649
+UniRef50_Q6D4A8: Zinc import ATP-binding protein ZnuC	0.4517814021
+UniRef50_Q6D4A8: Zinc import ATP-binding protein ZnuC|unclassified	0.4517814021
+UniRef50_UPI0003DEB96B: PREDICTED: arogenate dehydratase/prephenate dehydratase 1, chloroplastic-like, partial	0.4517573443
+UniRef50_UPI0003DEB96B: PREDICTED: arogenate dehydratase/prephenate dehydratase 1, chloroplastic-like, partial|unclassified	0.4517573443
+UniRef50_UPI00041F053E: hypothetical protein	0.4515896192
+UniRef50_UPI00041F053E: hypothetical protein|unclassified	0.4515896192
+UniRef50_UPI000465D77D: amino acid transporter, partial	0.4515888997
+UniRef50_UPI000465D77D: amino acid transporter, partial|unclassified	0.4515888997
+UniRef50_Q89W17: Blr0876 protein	0.4514352306
+UniRef50_Q89W17: Blr0876 protein|unclassified	0.4514352306
+UniRef50_G5KHM6	0.4514168927
+UniRef50_G5KHM6|unclassified	0.4514168927
+UniRef50_UPI000367FAFC: hypothetical protein, partial	0.4513895504
+UniRef50_UPI000367FAFC: hypothetical protein, partial|unclassified	0.4513895504
+UniRef50_UPI000225AEA0: magnesium transporter	0.4513601504
+UniRef50_UPI000225AEA0: magnesium transporter|unclassified	0.4513601504
+UniRef50_B4R8Q8: Peptidyl-tRNA hydrolase	0.4513492212
+UniRef50_B4R8Q8: Peptidyl-tRNA hydrolase|unclassified	0.4513492212
+UniRef50_K9WZA2	0.4513434706
+UniRef50_K9WZA2|unclassified	0.4513434706
+UniRef50_J3HPZ9: Putative transcriptional regulator	0.4512923124
+UniRef50_J3HPZ9: Putative transcriptional regulator|unclassified	0.4512923124
+UniRef50_W3ZDR5: NLPA lipofamily protein	0.4512715549
+UniRef50_W3ZDR5: NLPA lipofamily protein|unclassified	0.4512715549
+UniRef50_L9Y5Z9	0.4512674720
+UniRef50_L9Y5Z9|unclassified	0.4512674720
+UniRef50_P94462: Peptide deformylase 1	0.4512578931
+UniRef50_P94462: Peptide deformylase 1|unclassified	0.4512578931
+UniRef50_Q7NFA1: Magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase	0.4511124662
+UniRef50_Q7NFA1: Magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase|unclassified	0.4511124662
+UniRef50_A0A041VEI8	0.4510881993
+UniRef50_A0A041VEI8|unclassified	0.4510881993
+UniRef50_A4VH03: Primosome assembly protein PriA	0.4510599910
+UniRef50_A4VH03: Primosome assembly protein PriA|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.4510599910
+UniRef50_UPI000367B65B: hypothetical protein	0.4510546544
+UniRef50_UPI000367B65B: hypothetical protein|unclassified	0.4510546544
+UniRef50_C5R9N7	0.4509958908
+UniRef50_C5R9N7|unclassified	0.4509958908
+UniRef50_A0A023SBI8	0.4509606542
+UniRef50_A0A023SBI8|unclassified	0.4509606542
+UniRef50_S9W022	0.4509473402
+UniRef50_S9W022|unclassified	0.4509473402
+UniRef50_UPI00046D0817: hypothetical protein	0.4509102937
+UniRef50_UPI00046D0817: hypothetical protein|unclassified	0.4509102937
+UniRef50_N0ERJ0: Putative virulence factor	0.4508995276
+UniRef50_N0ERJ0: Putative virulence factor|unclassified	0.4508995276
+UniRef50_B9KNG3	0.4508783581
+UniRef50_B9KNG3|unclassified	0.4508783581
+UniRef50_UPI000471BF5D: bacitracin ABC transporter ATP-binding protein, partial	0.4508710088
+UniRef50_UPI000471BF5D: bacitracin ABC transporter ATP-binding protein, partial|unclassified	0.4508710088
+UniRef50_V0PEW0: Putative oxoacyl-(Acyl carrier protein) reductase (Fragment)	0.4507800157
+UniRef50_V0PEW0: Putative oxoacyl-(Acyl carrier protein) reductase (Fragment)|unclassified	0.4507800157
+UniRef50_UPI00028809C7: membrane protein	0.4507430845
+UniRef50_UPI00028809C7: membrane protein|unclassified	0.4507430845
+UniRef50_UPI00035132D2: PREDICTED: basic proline-rich protein-like	0.4507117529
+UniRef50_UPI00035132D2: PREDICTED: basic proline-rich protein-like|unclassified	0.4507117529
+UniRef50_UPI0003B62F41: sulfite oxidase	0.4506728884
+UniRef50_UPI0003B62F41: sulfite oxidase|unclassified	0.4506728884
+UniRef50_UPI00047C6B7E: hypothetical protein, partial	0.4506372458
+UniRef50_UPI00047C6B7E: hypothetical protein, partial|unclassified	0.4506372458
+UniRef50_E1HUU1	0.4506243242
+UniRef50_E1HUU1|unclassified	0.4506243242
+UniRef50_F8JIY3	0.4506173278
+UniRef50_F8JIY3|unclassified	0.4506173278
+UniRef50_F5TJT7	0.4505825501
+UniRef50_F5TJT7|unclassified	0.4505825501
+UniRef50_O07046: FKBP-type peptidyl-prolyl cis-trans isomerase SlyD	0.4505792785
+UniRef50_O07046: FKBP-type peptidyl-prolyl cis-trans isomerase SlyD|unclassified	0.4505792785
+UniRef50_Q8Y7N5: Non-canonical purine NTP pyrophosphatase	0.4505663327
+UniRef50_Q8Y7N5: Non-canonical purine NTP pyrophosphatase|unclassified	0.4505663327
+UniRef50_F0RQZ6: ABC-type transporter, periplasmic subunit	0.4505547246
+UniRef50_F0RQZ6: ABC-type transporter, periplasmic subunit|unclassified	0.4505547246
+UniRef50_T1JTR4	0.4505538624
+UniRef50_T1JTR4|unclassified	0.4505538624
+UniRef50_Q2SJZ9: Predicted Fe-S protein	0.4504514191
+UniRef50_Q2SJZ9: Predicted Fe-S protein|unclassified	0.4504514191
+UniRef50_UPI000237B695: o-succinylbenzoate--CoA ligase	0.4504469066
+UniRef50_UPI000237B695: o-succinylbenzoate--CoA ligase|unclassified	0.4504469066
+UniRef50_UPI00036C9B88: hypothetical protein	0.4503580106
+UniRef50_UPI00036C9B88: hypothetical protein|unclassified	0.4503580106
+UniRef50_W7D9D3: Glyoxalase	0.4503518774
+UniRef50_W7D9D3: Glyoxalase|unclassified	0.4503518774
+UniRef50_UPI0004700845: adenine phosphoribosyltransferase	0.4503254184
+UniRef50_UPI0004700845: adenine phosphoribosyltransferase|unclassified	0.4503254184
+UniRef50_A0A031HCZ8: Phage-related tail protein	0.4502946965
+UniRef50_A0A031HCZ8: Phage-related tail protein|unclassified	0.4502946965
+UniRef50_V6A0G0	0.4502933478
+UniRef50_V6A0G0|unclassified	0.4502933478
+UniRef50_UPI00044159A7: cwf21-domain-containing protein, partial	0.4502686556
+UniRef50_UPI00044159A7: cwf21-domain-containing protein, partial|unclassified	0.4502686556
+UniRef50_Q5WVI8	0.4502159026
+UniRef50_Q5WVI8|unclassified	0.4502159026
+UniRef50_W4TGX7: Substrate-specific component BL0695 of predicted ECF transporter	0.4502142982
+UniRef50_W4TGX7: Substrate-specific component BL0695 of predicted ECF transporter|unclassified	0.4502142982
+UniRef50_A0LBD9: Transposase, IS4 family	0.4502036567
+UniRef50_A0LBD9: Transposase, IS4 family|unclassified	0.4502036567
+UniRef50_R4GA40	0.4501717990
+UniRef50_R4GA40|unclassified	0.4501717990
+UniRef50_A0A022I3Z2: Zonular occludens toxin family protein	0.4501319501
+UniRef50_A0A022I3Z2: Zonular occludens toxin family protein|unclassified	0.4501319501
+UniRef50_S6UHK0: NAD(P)H-dependent FMN reductase	0.4500961925
+UniRef50_S6UHK0: NAD(P)H-dependent FMN reductase|unclassified	0.4500961925
+UniRef50_P65328: Riboflavin synthase	0.4500279672
+UniRef50_P65328: Riboflavin synthase|unclassified	0.4500279672
+UniRef50_D6Y7T5: Extracellular solute-binding protein family 1	0.4499922872
+UniRef50_D6Y7T5: Extracellular solute-binding protein family 1|unclassified	0.4499922872
+UniRef50_K0SFY7	0.4499742706
+UniRef50_K0SFY7|unclassified	0.4499742706
+UniRef50_F8HAJ0	0.4499532987
+UniRef50_F8HAJ0|unclassified	0.4499532987
+UniRef50_M3A5Y8	0.4498623181
+UniRef50_M3A5Y8|unclassified	0.4498623181
+UniRef50_S0HMR2	0.4498425551
+UniRef50_S0HMR2|unclassified	0.4498425551
+UniRef50_UPI000440C33C: exonuclease RNase T and DNA polymerase III	0.4498088312
+UniRef50_UPI000440C33C: exonuclease RNase T and DNA polymerase III|unclassified	0.4498088312
+UniRef50_W9G6K5	0.4498054475
+UniRef50_W9G6K5|unclassified	0.4498054475
+UniRef50_UPI00041CCF8B: hypothetical protein	0.4497948307
+UniRef50_UPI00041CCF8B: hypothetical protein|unclassified	0.4497948307
+UniRef50_UPI000307B6D2: hypothetical protein	0.4495090588
+UniRef50_UPI000307B6D2: hypothetical protein|unclassified	0.4495090588
+UniRef50_UPI00029A7679: histidine kinase	0.4494758038
+UniRef50_UPI00029A7679: histidine kinase|unclassified	0.4494758038
+UniRef50_W5PYB8	0.4493954161
+UniRef50_W5PYB8|unclassified	0.4493954161
+UniRef50_UPI00003978BA: COG0488: ATPase components of ABC transporters with duplicated ATPase domains	0.4493535219
+UniRef50_UPI00003978BA: COG0488: ATPase components of ABC transporters with duplicated ATPase domains|unclassified	0.4493535219
+UniRef50_N8H0E2: Motility protein A	0.4493355528
+UniRef50_N8H0E2: Motility protein A|unclassified	0.4493355528
+UniRef50_UPI000252B980: PREDICTED: arginine deiminase-like	0.4492509967
+UniRef50_UPI000252B980: PREDICTED: arginine deiminase-like|unclassified	0.4492509967
+UniRef50_V9U1K5	0.4492387737
+UniRef50_V9U1K5|unclassified	0.4492387737
+UniRef50_E0XRZ7	0.4492074500
+UniRef50_E0XRZ7|unclassified	0.4492074500
+UniRef50_A0A010IZE0	0.4491995367
+UniRef50_A0A010IZE0|unclassified	0.4491995367
+UniRef50_A3I3U0	0.4491656955
+UniRef50_A3I3U0|unclassified	0.4491656955
+UniRef50_UPI00037472A7: hypothetical protein	0.4490892291
+UniRef50_UPI00037472A7: hypothetical protein|unclassified	0.4490892291
+UniRef50_UPI00037E1072: hypothetical protein	0.4490577952
+UniRef50_UPI00037E1072: hypothetical protein|unclassified	0.4490577952
+UniRef50_B9XFB4	0.4489976735
+UniRef50_B9XFB4|unclassified	0.4489976735
+UniRef50_K2K3B5	0.4489748297
+UniRef50_K2K3B5|unclassified	0.4489748297
+UniRef50_UPI0001BF7861: hypothetical protein SMAC_10214, partial	0.4489296049
+UniRef50_UPI0001BF7861: hypothetical protein SMAC_10214, partial|unclassified	0.4489296049
+UniRef50_UPI000329816A: PREDICTED: glutathione transport system permease protein GsiC-like	0.4489125038
+UniRef50_UPI000329816A: PREDICTED: glutathione transport system permease protein GsiC-like|unclassified	0.4489125038
+UniRef50_UPI000381B84D: hypothetical protein	0.4488846070
+UniRef50_UPI000381B84D: hypothetical protein|unclassified	0.4488846070
+UniRef50_L1M6J7	0.4488650758
+UniRef50_L1M6J7|unclassified	0.4488650758
+UniRef50_UPI0004799F87: hypothetical protein	0.4488526589
+UniRef50_UPI0004799F87: hypothetical protein|unclassified	0.4488526589
+UniRef50_Q8LK02	0.4488521010
+UniRef50_Q8LK02|unclassified	0.4488521010
+UniRef50_R1DDV7	0.4488330341
+UniRef50_R1DDV7|unclassified	0.4488330341
+UniRef50_UPI0003820CA4: hypothetical protein	0.4488238940
+UniRef50_UPI0003820CA4: hypothetical protein|unclassified	0.4488238940
+UniRef50_F0PUD4	0.4488175983
+UniRef50_F0PUD4|unclassified	0.4488175983
+UniRef50_Q5GWM6	0.4487988962
+UniRef50_Q5GWM6|unclassified	0.4487988962
+UniRef50_UPI00037EE14A: hypothetical protein	0.4487483464
+UniRef50_UPI00037EE14A: hypothetical protein|unclassified	0.4487483464
+UniRef50_R9BDR2	0.4487115228
+UniRef50_R9BDR2|unclassified	0.4487115228
+UniRef50_UPI00035C6AEB: hypothetical protein	0.4486934582
+UniRef50_UPI00035C6AEB: hypothetical protein|unclassified	0.4486934582
+UniRef50_G7U539	0.4486316734
+UniRef50_G7U539|g__Propionibacterium.s__Propionibacterium_acnes	0.4486316734
+UniRef50_F7XZV4	0.4486053733
+UniRef50_F7XZV4|unclassified	0.4486053733
+UniRef50_Q975M5: 6,7-dimethyl-8-ribityllumazine synthase	0.4485920310
+UniRef50_Q975M5: 6,7-dimethyl-8-ribityllumazine synthase|unclassified	0.4485920310
+UniRef50_V4RU34: TRAP-type transport system, small permease component, predicted N-acetylneuraminate transporter	0.4485901986
+UniRef50_V4RU34: TRAP-type transport system, small permease component, predicted N-acetylneuraminate transporter|unclassified	0.4485901986
+UniRef50_E3ZIX4: Chaperone protein ClpB (Fragment)	0.4484909617
+UniRef50_E3ZIX4: Chaperone protein ClpB (Fragment)|unclassified	0.4484909617
+UniRef50_K2JUN5: von Willebrand factor type A	0.4484846775
+UniRef50_K2JUN5: von Willebrand factor type A|unclassified	0.4484846775
+UniRef50_C4U7A3: 6-pyruvoyl tetrahydrobiopterin synthase	0.4484321361
+UniRef50_C4U7A3: 6-pyruvoyl tetrahydrobiopterin synthase|unclassified	0.4484321361
+UniRef50_Q2G733: Shikimate kinase	0.4483327790
+UniRef50_Q2G733: Shikimate kinase|unclassified	0.4483327790
+UniRef50_G4R992: NAD-dependent epimerase/dehydratase	0.4483084312
+UniRef50_G4R992: NAD-dependent epimerase/dehydratase|unclassified	0.4483084312
+UniRef50_G9WBN8: L-ribulose-5-phosphate 4-epimerase UlaF (Fragment)	0.4483011121
+UniRef50_G9WBN8: L-ribulose-5-phosphate 4-epimerase UlaF (Fragment)|unclassified	0.4483011121
+UniRef50_T1YBS4: Nitrogen regulation protein NIFR3	0.4483000685
+UniRef50_T1YBS4: Nitrogen regulation protein NIFR3|unclassified	0.4483000685
+UniRef50_A9D7U2: BRO, N-terminal	0.4482790102
+UniRef50_A9D7U2: BRO, N-terminal|unclassified	0.4482790102
+UniRef50_W7VH92: Lipoprotein	0.4481799841
+UniRef50_W7VH92: Lipoprotein|unclassified	0.4481799841
+UniRef50_UPI000377C155: hypothetical protein	0.4481676679
+UniRef50_UPI000377C155: hypothetical protein|unclassified	0.4481676679
+UniRef50_UPI0001F27429: hypothetical protein ANI_1_1028064	0.4481340158
+UniRef50_UPI0001F27429: hypothetical protein ANI_1_1028064|unclassified	0.4481340158
+UniRef50_H1QED8: Formiminoglutamate deiminase (Fragment)	0.4481017360
+UniRef50_H1QED8: Formiminoglutamate deiminase (Fragment)|unclassified	0.4481017360
+UniRef50_N4RI14	0.4480990956
+UniRef50_N4RI14|unclassified	0.4480990956
+UniRef50_L7ZFD6	0.4480898158
+UniRef50_L7ZFD6|unclassified	0.4480898158
+UniRef50_UPI000237A58A: polar amino acid ABC transporter, inner membrane subunit	0.4480586780
+UniRef50_UPI000237A58A: polar amino acid ABC transporter, inner membrane subunit|unclassified	0.4480586780
+UniRef50_L0WJ64: 3-phosphoshikimate 1-carboxyvinyltransferase	0.4480286738
+UniRef50_L0WJ64: 3-phosphoshikimate 1-carboxyvinyltransferase|g__Acinetobacter.s__Acinetobacter_baumannii	0.4480286738
+UniRef50_UPI000383AEC2	0.4480286738
+UniRef50_UPI000383AEC2|unclassified	0.4480286738
+UniRef50_X6MZU2: WD-40 repeat protein	0.4480286738
+UniRef50_X6MZU2: WD-40 repeat protein|unclassified	0.4480286738
+UniRef50_F3CFC3	0.4479989076
+UniRef50_F3CFC3|unclassified	0.4479989076
+UniRef50_UPI0003826E10: hypothetical protein	0.4479392308
+UniRef50_UPI0003826E10: hypothetical protein|unclassified	0.4479392308
+UniRef50_W0HXD1: YeaC	0.4479331566
+UniRef50_W0HXD1: YeaC|unclassified	0.4479331566
+UniRef50_UPI000417834E: anti-sigma factor antagonist	0.4479072671
+UniRef50_UPI000417834E: anti-sigma factor antagonist|unclassified	0.4479072671
+UniRef50_A0ADL6: Putative iron-sulfur protein	0.4478524497
+UniRef50_A0ADL6: Putative iron-sulfur protein|unclassified	0.4478524497
+UniRef50_UPI00047270A3: ribosome-associated protein IOJAP	0.4478487251
+UniRef50_UPI00047270A3: ribosome-associated protein IOJAP|unclassified	0.4478487251
+UniRef50_V7CVS8	0.4478427233
+UniRef50_V7CVS8|unclassified	0.4478427233
+UniRef50_A1IQ48	0.4478393742
+UniRef50_A1IQ48|unclassified	0.4478393742
+UniRef50_M5E3Y3	0.4478361306
+UniRef50_M5E3Y3|unclassified	0.4478361306
+UniRef50_L8HE79	0.4478280340
+UniRef50_L8HE79|unclassified	0.4478280340
+UniRef50_B8KMG5: Transposase, IS4 family protein	0.4478252996
+UniRef50_B8KMG5: Transposase, IS4 family protein|unclassified	0.4478252996
+UniRef50_D5AL25: Membrane protein, putative	0.4477884289
+UniRef50_D5AL25: Membrane protein, putative|unclassified	0.4477884289
+UniRef50_UPI0004682E69: hypothetical protein	0.4477399561
+UniRef50_UPI0004682E69: hypothetical protein|unclassified	0.4477399561
+UniRef50_UPI00036820E7: hypothetical protein, partial	0.4476548555
+UniRef50_UPI00036820E7: hypothetical protein, partial|unclassified	0.4476548555
+UniRef50_F7SKK4: Pirin-like protein	0.4476361527
+UniRef50_F7SKK4: Pirin-like protein|unclassified	0.4476361527
+UniRef50_UPI0004723693: PTS system lactose-specific transporter subunit IIA	0.4476282499
+UniRef50_UPI0004723693: PTS system lactose-specific transporter subunit IIA|unclassified	0.4476282499
+UniRef50_A3TSE6: ISSfl4	0.4475878899
+UniRef50_A3TSE6: ISSfl4|unclassified	0.4475878899
+UniRef50_K8Z653	0.4475875156
+UniRef50_K8Z653|unclassified	0.4475875156
+UniRef50_UPI00047A6C43: hypothetical protein, partial	0.4474753812
+UniRef50_UPI00047A6C43: hypothetical protein, partial|unclassified	0.4474753812
+UniRef50_Q9YGB0: Tryptophan synthase beta chain 1	0.4474604899
+UniRef50_Q9YGB0: Tryptophan synthase beta chain 1|unclassified	0.4474604899
+UniRef50_P57841: Adenine phosphoribosyltransferase	0.4474508215
+UniRef50_P57841: Adenine phosphoribosyltransferase|unclassified	0.4474508215
+UniRef50_U7GFX6	0.4474386553
+UniRef50_U7GFX6|unclassified	0.4474386553
+UniRef50_UPI0003B5A232: ribosomal protein L36	0.4474084818
+UniRef50_UPI0003B5A232: ribosomal protein L36|unclassified	0.4474084818
+UniRef50_D6PJI2	0.4473666228
+UniRef50_D6PJI2|unclassified	0.4473666228
+UniRef50_N6YHC0: TRAP-type C4-dicarboxylate transport system, small permease component (Fragment)	0.4472479241
+UniRef50_N6YHC0: TRAP-type C4-dicarboxylate transport system, small permease component (Fragment)|unclassified	0.4472479241
+UniRef50_UPI0003AB827A	0.4472445544
+UniRef50_UPI0003AB827A|unclassified	0.4472445544
+UniRef50_B8EPE2	0.4472162514
+UniRef50_B8EPE2|unclassified	0.4472162514
+UniRef50_K6KQZ8	0.4471701196
+UniRef50_K6KQZ8|unclassified	0.4471701196
+UniRef50_H0TL85	0.4471697823
+UniRef50_H0TL85|unclassified	0.4471697823
+UniRef50_UPI0003C78E9F: hypothetical protein	0.4471631000
+UniRef50_UPI0003C78E9F: hypothetical protein|unclassified	0.4471631000
+UniRef50_UPI00036F2C8F: 30S ribosomal protein S18	0.4470927869
+UniRef50_UPI00036F2C8F: 30S ribosomal protein S18|unclassified	0.4470927869
+UniRef50_UPI0003601086: hypothetical protein, partial	0.4470309611
+UniRef50_UPI0003601086: hypothetical protein, partial|unclassified	0.4470309611
+UniRef50_K8N7C5	0.4469366534
+UniRef50_K8N7C5|unclassified	0.4469366534
+UniRef50_UPI0004682C49: hypothetical protein	0.4469324558
+UniRef50_UPI0004682C49: hypothetical protein|unclassified	0.4469324558
+UniRef50_A9N0D4	0.4469190025
+UniRef50_A9N0D4|unclassified	0.4469190025
+UniRef50_K2JVS5: HspC2 heat shock protein	0.4469186230
+UniRef50_K2JVS5: HspC2 heat shock protein|unclassified	0.4469186230
+UniRef50_Q1CBK6: Anaerobic glycerol-3-phosphate dehydrogenase subunit B	0.4468311308
+UniRef50_Q1CBK6: Anaerobic glycerol-3-phosphate dehydrogenase subunit B|unclassified	0.4468311308
+UniRef50_A3PS47: Capsule polysaccharide export protein-like	0.4468275246
+UniRef50_A3PS47: Capsule polysaccharide export protein-like|unclassified	0.4468275246
+UniRef50_UPI0003703B69: hypothetical protein	0.4467637920
+UniRef50_UPI0003703B69: hypothetical protein|unclassified	0.4467637920
+UniRef50_UPI000307CD30: hypothetical protein	0.4467558601
+UniRef50_UPI000307CD30: hypothetical protein|unclassified	0.4467558601
+UniRef50_K2DZX2	0.4467277510
+UniRef50_K2DZX2|unclassified	0.4467277510
+UniRef50_M9RAZ0	0.4467067835
+UniRef50_M9RAZ0|unclassified	0.4467067835
+UniRef50_L7MJF8	0.4467030909
+UniRef50_L7MJF8|unclassified	0.4467030909
+UniRef50_I6SHM8: Nucleoside triphosphatase NudI	0.4466886861
+UniRef50_I6SHM8: Nucleoside triphosphatase NudI|unclassified	0.4466886861
+UniRef50_E4N2K8	0.4466471509
+UniRef50_E4N2K8|unclassified	0.4466471509
+UniRef50_G5QQ53	0.4466303725
+UniRef50_G5QQ53|unclassified	0.4466303725
+UniRef50_UPI000373B0D8: hypothetical protein	0.4465982443
+UniRef50_UPI000373B0D8: hypothetical protein|unclassified	0.4465982443
+UniRef50_UPI0004542B70: PREDICTED: serine/arginine repetitive matrix protein 1-like	0.4465144194
+UniRef50_UPI0004542B70: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	0.4465144194
+UniRef50_E6QT31: Putative Tripartite ATP-independent transporter, DctQ component	0.4464840407
+UniRef50_E6QT31: Putative Tripartite ATP-independent transporter, DctQ component|unclassified	0.4464840407
+UniRef50_L0FK70	0.4464453547
+UniRef50_L0FK70|unclassified	0.4464453547
+UniRef50_G8B0Y4	0.4464372062
+UniRef50_G8B0Y4|unclassified	0.4464372062
+UniRef50_Q54SR3	0.4464092564
+UniRef50_Q54SR3|unclassified	0.4464092564
+UniRef50_W8RNL3	0.4463314997
+UniRef50_W8RNL3|unclassified	0.4463314997
+UniRef50_C3EXY8	0.4463183986
+UniRef50_C3EXY8|unclassified	0.4463183986
+UniRef50_A4VYU9: Type II secretory pathway, component PulF	0.4462947417
+UniRef50_A4VYU9: Type II secretory pathway, component PulF|unclassified	0.4462947417
+UniRef50_UPI00046F26E4: hypothetical protein	0.4462393171
+UniRef50_UPI00046F26E4: hypothetical protein|unclassified	0.4462393171
+UniRef50_UPI00046A512D: hypothetical protein	0.4461926223
+UniRef50_UPI00046A512D: hypothetical protein|unclassified	0.4461926223
+UniRef50_UPI0003B4E250: phosphohydrolase	0.4461828872
+UniRef50_UPI0003B4E250: phosphohydrolase|unclassified	0.4461828872
+UniRef50_M9RV27: UPF0301 protein OA238_c37660	0.4461761776
+UniRef50_M9RV27: UPF0301 protein OA238_c37660|unclassified	0.4461761776
+UniRef50_W4U2A1	0.4461752253
+UniRef50_W4U2A1|unclassified	0.4461752253
+UniRef50_X1B3U1: Marine sediment metagenome DNA, contig: S01H4_S13295	0.4461544683
+UniRef50_X1B3U1: Marine sediment metagenome DNA, contig: S01H4_S13295|unclassified	0.4461544683
+UniRef50_Q0PAB6: Methionine import ATP-binding protein MetN	0.4461435503
+UniRef50_Q0PAB6: Methionine import ATP-binding protein MetN|unclassified	0.4461435503
+UniRef50_J0WNU1	0.4461068641
+UniRef50_J0WNU1|unclassified	0.4461068641
+UniRef50_K0SYQ6	0.4460826681
+UniRef50_K0SYQ6|unclassified	0.4460826681
+UniRef50_N4GDY7: Inner membrane protein yidI	0.4460601545
+UniRef50_N4GDY7: Inner membrane protein yidI|unclassified	0.4460601545
+UniRef50_UPI000203B2C5: PREDICTED: 28S ribosomal protein S12, mitochondrial	0.4460019515
+UniRef50_UPI000203B2C5: PREDICTED: 28S ribosomal protein S12, mitochondrial|unclassified	0.4460019515
+UniRef50_UPI0004727B15: hypothetical protein	0.4459823661
+UniRef50_UPI0004727B15: hypothetical protein|unclassified	0.4459823661
+UniRef50_UPI00039592E8: PREDICTED: spidroin-1-like	0.4459669620
+UniRef50_UPI00039592E8: PREDICTED: spidroin-1-like|unclassified	0.4459669620
+UniRef50_T1DG32: Phosphoribosylformylglycinamidine synthase (Fragment)	0.4459642924
+UniRef50_T1DG32: Phosphoribosylformylglycinamidine synthase (Fragment)|unclassified	0.4459642924
+UniRef50_S4NBZ1: 2,5-didehydrogluconate reductase	0.4458733666
+UniRef50_S4NBZ1: 2,5-didehydrogluconate reductase|unclassified	0.4458733666
+UniRef50_V6KDU1	0.4458555445
+UniRef50_V6KDU1|unclassified	0.4458555445
+UniRef50_UPI00029B45F6: xanthine dehydrogenase XdhA, partial	0.4458253159
+UniRef50_UPI00029B45F6: xanthine dehydrogenase XdhA, partial|unclassified	0.4458253159
+UniRef50_UPI000262543A: preprotein translocase subunit SecB	0.4458242882
+UniRef50_UPI000262543A: preprotein translocase subunit SecB|unclassified	0.4458242882
+UniRef50_UPI00046E5EFF: hypothetical protein	0.4458235433
+UniRef50_UPI00046E5EFF: hypothetical protein|unclassified	0.4458235433
+UniRef50_UPI0003596AD3: PREDICTED: keratin, type I cytoskeletal 9-like	0.4457922592
+UniRef50_UPI0003596AD3: PREDICTED: keratin, type I cytoskeletal 9-like|unclassified	0.4457922592
+UniRef50_UPI0000E0F4CE: cobalamin (5''''-phosphate) synthase	0.4457639818
+UniRef50_UPI0000E0F4CE: cobalamin (5''''-phosphate) synthase|unclassified	0.4457639818
+UniRef50_W5X7K8: Polyribonucleotide nucleotidyltransferase	0.4457478559
+UniRef50_W5X7K8: Polyribonucleotide nucleotidyltransferase|unclassified	0.4457478559
+UniRef50_Q3EPC2: Protein secretion chaperonin CsaA	0.4456864240
+UniRef50_Q3EPC2: Protein secretion chaperonin CsaA|unclassified	0.4456864240
+UniRef50_V9QQG8	0.4456860688
+UniRef50_V9QQG8|unclassified	0.4456860688
+UniRef50_W7DE19: PadR family transcriptional regulator	0.4456742403
+UniRef50_W7DE19: PadR family transcriptional regulator|unclassified	0.4456742403
+UniRef50_V6FKX1: Glycosyl hydrolase family 3, C-terminal domain protein	0.4456327986
+UniRef50_V6FKX1: Glycosyl hydrolase family 3, C-terminal domain protein|g__Escherichia.s__Escherichia_coli	0.4456327986
+UniRef50_UPI000467562F: hexuronate transporter	0.4456327986
+UniRef50_UPI000467562F: hexuronate transporter|unclassified	0.4456327986
+UniRef50_B0C619	0.4456272680
+UniRef50_B0C619|unclassified	0.4456272680
+UniRef50_C3NQY8: Queuosine biosynthesis QueD PTPS-I	0.4455562632
+UniRef50_C3NQY8: Queuosine biosynthesis QueD PTPS-I|unclassified	0.4455562632
+UniRef50_R7XG30	0.4455274500
+UniRef50_R7XG30|unclassified	0.4455274500
+UniRef50_N6Y413	0.4455173376
+UniRef50_N6Y413|unclassified	0.4455173376
+UniRef50_C4WB16	0.4455086506
+UniRef50_C4WB16|unclassified	0.4455086506
+UniRef50_UPI000367667A: hypothetical protein	0.4454718579
+UniRef50_UPI000367667A: hypothetical protein|unclassified	0.4454718579
+UniRef50_UPI0003A2476A: hypothetical protein	0.4454712863
+UniRef50_UPI0003A2476A: hypothetical protein|unclassified	0.4454712863
+UniRef50_I1ZR02	0.4454342984
+UniRef50_I1ZR02|g__Escherichia.s__Escherichia_coli	0.4454342984
+UniRef50_I0KW88	0.4454103339
+UniRef50_I0KW88|unclassified	0.4454103339
+UniRef50_F4FEB2	0.4452964551
+UniRef50_F4FEB2|unclassified	0.4452964551
+UniRef50_M1B0H9	0.4452019422
+UniRef50_M1B0H9|unclassified	0.4452019422
+UniRef50_D5H018	0.4451885906
+UniRef50_D5H018|unclassified	0.4451885906
+UniRef50_UPI0003B586D4: 30S ribosomal protein S4	0.4451269574
+UniRef50_UPI0003B586D4: 30S ribosomal protein S4|unclassified	0.4451269574
+UniRef50_UPI000225C177: hypothetical protein	0.4450793713
+UniRef50_UPI000225C177: hypothetical protein|unclassified	0.4450793713
+UniRef50_J3PDD9	0.4450611137
+UniRef50_J3PDD9|unclassified	0.4450611137
+UniRef50_UPI0003650601: 30S ribosomal protein S4	0.4449942189
+UniRef50_UPI0003650601: 30S ribosomal protein S4|unclassified	0.4449942189
+UniRef50_UPI000328D837: PREDICTED: epstein-Barr nuclear antigen 1-like	0.4449432752
+UniRef50_UPI000328D837: PREDICTED: epstein-Barr nuclear antigen 1-like|unclassified	0.4449432752
+UniRef50_UPI0003B71556: hypothetical protein, partial	0.4449133736
+UniRef50_UPI0003B71556: hypothetical protein, partial|unclassified	0.4449133736
+UniRef50_UPI00036A4FA0: hypothetical protein	0.4448865343
+UniRef50_UPI00036A4FA0: hypothetical protein|unclassified	0.4448865343
+UniRef50_UPI0004716254: isopentenyl-diphosphate delta-isomerase	0.4448658976
+UniRef50_UPI0004716254: isopentenyl-diphosphate delta-isomerase|unclassified	0.4448658976
+UniRef50_Q4K4T2: Biotin synthase	0.4448264463
+UniRef50_Q4K4T2: Biotin synthase|unclassified	0.4448264463
+UniRef50_UPI0003626EE2: 50S ribosomal protein L17	0.4448221684
+UniRef50_UPI0003626EE2: 50S ribosomal protein L17|unclassified	0.4448221684
+UniRef50_I7AL68: Phosphoglycerate mutase family protein	0.4448036284
+UniRef50_I7AL68: Phosphoglycerate mutase family protein|unclassified	0.4448036284
+UniRef50_A0A011PDB9	0.4447469701
+UniRef50_A0A011PDB9|unclassified	0.4447469701
+UniRef50_M7AWA2	0.4447030548
+UniRef50_M7AWA2|unclassified	0.4447030548
+UniRef50_UPI00037802FF: hypothetical protein, partial	0.4446921106
+UniRef50_UPI00037802FF: hypothetical protein, partial|unclassified	0.4446921106
+UniRef50_UPI0003625BDB: hypothetical protein	0.4446885810
+UniRef50_UPI0003625BDB: hypothetical protein|unclassified	0.4446885810
+UniRef50_UPI00037C7B7D: hypothetical protein	0.4446549653
+UniRef50_UPI00037C7B7D: hypothetical protein|unclassified	0.4446549653
+UniRef50_UPI0003B77CF1: hypothetical protein, partial	0.4446474460
+UniRef50_UPI0003B77CF1: hypothetical protein, partial|unclassified	0.4446474460
+UniRef50_X5P2F9: Replication initiation protein	0.4444879455
+UniRef50_X5P2F9: Replication initiation protein|unclassified	0.4444879455
+UniRef50_Q0AVW1: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha	0.4444366756
+UniRef50_Q0AVW1: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|unclassified	0.4444366756
+UniRef50_W2RQC0	0.4444328634
+UniRef50_W2RQC0|unclassified	0.4444328634
+UniRef50_UPI00047087BB: hypothetical protein, partial	0.4443433949
+UniRef50_UPI00047087BB: hypothetical protein, partial|unclassified	0.4443433949
+UniRef50_UPI000373B07D: hypothetical protein	0.4442986025
+UniRef50_UPI000373B07D: hypothetical protein|unclassified	0.4442986025
+UniRef50_K7S7B4: Phosphoribosylformylglycinamidine synthase 2	0.4442470013
+UniRef50_K7S7B4: Phosphoribosylformylglycinamidine synthase 2|g__Propionibacterium.s__Propionibacterium_acnes	0.4442470013
+UniRef50_B3E7C1	0.4442392991
+UniRef50_B3E7C1|unclassified	0.4442392991
+UniRef50_G5JL33	0.4442050296
+UniRef50_G5JL33|unclassified	0.4442050296
+UniRef50_Q7VYK4: Pyridoxine kinase	0.4442040280
+UniRef50_Q7VYK4: Pyridoxine kinase|unclassified	0.4442040280
+UniRef50_UPI0004678A31: C4-dicarboxylate ABC transporter permease	0.4441810591
+UniRef50_UPI0004678A31: C4-dicarboxylate ABC transporter permease|unclassified	0.4441810591
+UniRef50_UPI0003AE8E24: PREDICTED: proline-rich protein HaeIII subfamily 1-like	0.4441500153
+UniRef50_UPI0003AE8E24: PREDICTED: proline-rich protein HaeIII subfamily 1-like|unclassified	0.4441500153
+UniRef50_K6XJA6	0.4441445372
+UniRef50_K6XJA6|unclassified	0.4441445372
+UniRef50_B7NKV9: Phosphoheptose isomerase	0.4440629764
+UniRef50_B7NKV9: Phosphoheptose isomerase|unclassified	0.4440629764
+UniRef50_N8WWW0	0.4440497226
+UniRef50_N8WWW0|unclassified	0.4440497226
+UniRef50_UPI00046CCCF9: hypothetical protein	0.4440302659
+UniRef50_UPI00046CCCF9: hypothetical protein|unclassified	0.4440302659
+UniRef50_UPI0004672DD9: endonuclease	0.4439794536
+UniRef50_UPI0004672DD9: endonuclease|unclassified	0.4439794536
+UniRef50_UPI0004410E7F: putative gnat-family acetyltransferase	0.4439774371
+UniRef50_UPI0004410E7F: putative gnat-family acetyltransferase|unclassified	0.4439774371
+UniRef50_H4HU56: MacA domain protein	0.4438846025
+UniRef50_H4HU56: MacA domain protein|unclassified	0.4438846025
+UniRef50_K4RZ48	0.4438526409
+UniRef50_K4RZ48|unclassified	0.4438526409
+UniRef50_W6QR85	0.4437828141
+UniRef50_W6QR85|unclassified	0.4437828141
+UniRef50_UPI000471FB1B: sodium:calcium antiporter	0.4437411649
+UniRef50_UPI000471FB1B: sodium:calcium antiporter|unclassified	0.4437411649
+UniRef50_F6EFL9	0.4437398467
+UniRef50_F6EFL9|unclassified	0.4437398467
+UniRef50_Q3IRZ6: Urease subunit beta	0.4436999754
+UniRef50_Q3IRZ6: Urease subunit beta|unclassified	0.4436999754
+UniRef50_W4VKC2: NAD synthetase	0.4436792678
+UniRef50_W4VKC2: NAD synthetase|unclassified	0.4436792678
+UniRef50_J5NDT6: Ribosome maturation protein RimP (Fragment)	0.4436017574
+UniRef50_J5NDT6: Ribosome maturation protein RimP (Fragment)|unclassified	0.4436017574
+UniRef50_R1DZX0	0.4435918982
+UniRef50_R1DZX0|unclassified	0.4435918982
+UniRef50_UPI000442200E: PREDICTED: lysine-specific permease-like	0.4435805073
+UniRef50_UPI000442200E: PREDICTED: lysine-specific permease-like|unclassified	0.4435805073
+UniRef50_Q3JMQ9	0.4435399500
+UniRef50_Q3JMQ9|unclassified	0.4435399500
+UniRef50_UPI00046FC86D: hypothetical protein	0.4435350435
+UniRef50_UPI00046FC86D: hypothetical protein|unclassified	0.4435350435
+UniRef50_H4SDQ7: Disulfide bond reductase	0.4435332966
+UniRef50_H4SDQ7: Disulfide bond reductase|unclassified	0.4435332966
+UniRef50_UPI00046C9C35: microcin ABC transporter permease	0.4435238886
+UniRef50_UPI00046C9C35: microcin ABC transporter permease|unclassified	0.4435238886
+UniRef50_P55809: Succinyl-CoA:3-ketoacid coenzyme A transferase 1, mitochondrial	0.4434802751
+UniRef50_P55809: Succinyl-CoA:3-ketoacid coenzyme A transferase 1, mitochondrial|unclassified	0.4434802751
+UniRef50_P22773: Histidine utilization repressor	0.4434597294
+UniRef50_P22773: Histidine utilization repressor|unclassified	0.4434597294
+UniRef50_M7E5D6: Multidrug resistance secretion protein (Fragment)	0.4434483185
+UniRef50_M7E5D6: Multidrug resistance secretion protein (Fragment)|unclassified	0.4434483185
+UniRef50_B0UVX7: Anaerobic glycerol-3-phosphate dehydrogenase subunit B	0.4434394245
+UniRef50_B0UVX7: Anaerobic glycerol-3-phosphate dehydrogenase subunit B|unclassified	0.4434394245
+UniRef50_G0ZI08: DnaK (Fragment)	0.4433459183
+UniRef50_G0ZI08: DnaK (Fragment)|unclassified	0.4433459183
+UniRef50_UPI0003B5DDE6: ATPase	0.4433454350
+UniRef50_UPI0003B5DDE6: ATPase|unclassified	0.4433454350
+UniRef50_F0TFK9: Cysteine synthase	0.4433128009
+UniRef50_F0TFK9: Cysteine synthase|unclassified	0.4433128009
+UniRef50_I9XDG4	0.4432553192
+UniRef50_I9XDG4|unclassified	0.4432553192
+UniRef50_UPI0004576376: PREDICTED: tetra-peptide repeat homeobox protein 1-like, partial	0.4432460230
+UniRef50_UPI0004576376: PREDICTED: tetra-peptide repeat homeobox protein 1-like, partial|unclassified	0.4432460230
+UniRef50_UPI0004039DC9: SAM-dependent methyltransferase	0.4431711810
+UniRef50_UPI0004039DC9: SAM-dependent methyltransferase|unclassified	0.4431711810
+UniRef50_UPI0002DC1FA3: hypothetical protein	0.4431358246
+UniRef50_UPI0002DC1FA3: hypothetical protein|unclassified	0.4431358246
+UniRef50_UPI00016ADB2B: cytidine/deoxycytidylate deaminase family protein, partial	0.4430598224
+UniRef50_UPI00016ADB2B: cytidine/deoxycytidylate deaminase family protein, partial|unclassified	0.4430598224
+UniRef50_F2AHF5: Malate dehydrogenase	0.4429915363
+UniRef50_F2AHF5: Malate dehydrogenase|unclassified	0.4429915363
+UniRef50_D5ZWX0: ThiJ/PfpI domain-containing protein (Fragment)	0.4429779133
+UniRef50_D5ZWX0: ThiJ/PfpI domain-containing protein (Fragment)|unclassified	0.4429779133
+UniRef50_UPI000380B57F: hypothetical protein, partial	0.4429360887
+UniRef50_UPI000380B57F: hypothetical protein, partial|unclassified	0.4429360887
+UniRef50_Q1IY10: DNA internalization-related competence protein ComEC/Rec2	0.4428697963
+UniRef50_Q1IY10: DNA internalization-related competence protein ComEC/Rec2|g__Deinococcus.s__Deinococcus_radiodurans	0.4428697963
+UniRef50_J2Z6D2: Inhibitor of c-type lysozyme, predicted lipo domain protein	0.4428680422
+UniRef50_J2Z6D2: Inhibitor of c-type lysozyme, predicted lipo domain protein|unclassified	0.4428680422
+UniRef50_UPI0002378C2C: GntR family transcriptional regulator	0.4428586442
+UniRef50_UPI0002378C2C: GntR family transcriptional regulator|unclassified	0.4428586442
+UniRef50_UPI000310AD45: hypothetical protein	0.4428403426
+UniRef50_UPI000310AD45: hypothetical protein|unclassified	0.4428403426
+UniRef50_UPI0003B331D4: glycosyl transferase	0.4428339737
+UniRef50_UPI0003B331D4: glycosyl transferase|unclassified	0.4428339737
+UniRef50_Q1B677: Methionine import ATP-binding protein MetN	0.4428163865
+UniRef50_Q1B677: Methionine import ATP-binding protein MetN|unclassified	0.4428163865
+UniRef50_A3Y777	0.4427463462
+UniRef50_A3Y777|unclassified	0.4427463462
+UniRef50_UPI0002736FFE: GntR family transcriptional regulator	0.4427197333
+UniRef50_UPI0002736FFE: GntR family transcriptional regulator|unclassified	0.4427197333
+UniRef50_N6V788	0.4426976874
+UniRef50_N6V788|unclassified	0.4426976874
+UniRef50_C9SSZ1: Oxidoreductase FAD/NAD(P)-binding	0.4426755292
+UniRef50_C9SSZ1: Oxidoreductase FAD/NAD(P)-binding|unclassified	0.4426755292
+UniRef50_A7X0J0	0.4426528156
+UniRef50_A7X0J0|unclassified	0.4426528156
+UniRef50_P41187: DNA-directed RNA polymerase subunit beta (Fragment)	0.4426496268
+UniRef50_P41187: DNA-directed RNA polymerase subunit beta (Fragment)|unclassified	0.4426496268
+UniRef50_UPI0002192D8C: peptide ABC transporter ATP-binding protein	0.4425520755
+UniRef50_UPI0002192D8C: peptide ABC transporter ATP-binding protein|unclassified	0.4425520755
+UniRef50_UPI00046D94E7: hypothetical protein	0.4424450216
+UniRef50_UPI00046D94E7: hypothetical protein|unclassified	0.4424450216
+UniRef50_W1XGP9: Branched-chain amino acid transport system (Fragment)	0.4423334617
+UniRef50_W1XGP9: Branched-chain amino acid transport system (Fragment)|unclassified	0.4423334617
+UniRef50_A0A021ZRK0	0.4423159116
+UniRef50_A0A021ZRK0|unclassified	0.4423159116
+UniRef50_W4Q5J6: TsaD/Kae1/Qri7 protein	0.4423045588
+UniRef50_W4Q5J6: TsaD/Kae1/Qri7 protein|unclassified	0.4423045588
+UniRef50_R5HPX7	0.4422946511
+UniRef50_R5HPX7|unclassified	0.4422946511
+UniRef50_B7PRC1: Ubinuclein, putative	0.4422821760
+UniRef50_B7PRC1: Ubinuclein, putative|unclassified	0.4422821760
+UniRef50_D1DK94: ATP-dependent DNA helicase RecQ	0.4422821760
+UniRef50_D1DK94: ATP-dependent DNA helicase RecQ|g__Neisseria.s__Neisseria_meningitidis	0.4422821760
+UniRef50_P41775: Cytochrome c oxidase subunit 3	0.4422351555
+UniRef50_P41775: Cytochrome c oxidase subunit 3|unclassified	0.4422351555
+UniRef50_V7FG71	0.4421598722
+UniRef50_V7FG71|unclassified	0.4421598722
+UniRef50_F0VLI1	0.4420866490
+UniRef50_F0VLI1|unclassified	0.4420866490
+UniRef50_Q6CX23: Glyceraldehyde-3-phosphate dehydrogenase 2	0.4420748426
+UniRef50_Q6CX23: Glyceraldehyde-3-phosphate dehydrogenase 2|unclassified	0.4420748426
+UniRef50_UPI0003687CB7: threonine aldolase	0.4420277042
+UniRef50_UPI0003687CB7: threonine aldolase|unclassified	0.4420277042
+UniRef50_G0ICQ4: Transposase-like protein, IS1381 ISSpn7	0.4420170122
+UniRef50_G0ICQ4: Transposase-like protein, IS1381 ISSpn7|unclassified	0.4420170122
+UniRef50_UPI000476D156: 30S ribosomal protein S8	0.4420051522
+UniRef50_UPI000476D156: 30S ribosomal protein S8|unclassified	0.4420051522
+UniRef50_UPI00040E9633: hypothetical protein	0.4419432426
+UniRef50_UPI00040E9633: hypothetical protein|unclassified	0.4419432426
+UniRef50_UPI00036B78EF: hypothetical protein	0.4419231385
+UniRef50_UPI00036B78EF: hypothetical protein|unclassified	0.4419231385
+UniRef50_Q8GFF2	0.4419017303
+UniRef50_Q8GFF2|unclassified	0.4419017303
+UniRef50_H8H0T6: ABC-type Fe3+-siderophore transport system, periplasmic component	0.4418724254
+UniRef50_H8H0T6: ABC-type Fe3+-siderophore transport system, periplasmic component|unclassified	0.4418724254
+UniRef50_T6AKZ2	0.4417737563
+UniRef50_T6AKZ2|unclassified	0.4417737563
+UniRef50_UPI000417CE87: kinase	0.4417241324
+UniRef50_UPI000417CE87: kinase|unclassified	0.4417241324
+UniRef50_Q92ZT0: Carbamate kinase	0.4416842599
+UniRef50_Q92ZT0: Carbamate kinase|unclassified	0.4416842599
+UniRef50_B8DMV4: Integral membrane protein MviN	0.4416623893
+UniRef50_B8DMV4: Integral membrane protein MviN|unclassified	0.4416623893
+UniRef50_B5Y9Z4: 8-amino-7-oxononanoate synthase	0.4416339362
+UniRef50_B5Y9Z4: 8-amino-7-oxononanoate synthase|unclassified	0.4416339362
+UniRef50_V7YXX8	0.4416155290
+UniRef50_V7YXX8|unclassified	0.4416155290
+UniRef50_Q1QG62: PRC-barrel	0.4415663859
+UniRef50_Q1QG62: PRC-barrel|unclassified	0.4415663859
+UniRef50_J4TL27	0.4415628792
+UniRef50_J4TL27|unclassified	0.4415628792
+UniRef50_UPI000399117C: PREDICTED: 28S ribosomal protein S12, mitochondrial-like	0.4415346222
+UniRef50_UPI000399117C: PREDICTED: 28S ribosomal protein S12, mitochondrial-like|unclassified	0.4415346222
+UniRef50_UPI0003C12EF6: PREDICTED: NADH dehydrogenase [ubiquinone] iron-sulfur protein 8-A, mitochondrial-like	0.4415249154
+UniRef50_UPI0003C12EF6: PREDICTED: NADH dehydrogenase [ubiquinone] iron-sulfur protein 8-A, mitochondrial-like|unclassified	0.4415249154
+UniRef50_B1LZZ2: Electron transfer flavoprotein alpha subunit	0.4414539584
+UniRef50_B1LZZ2: Electron transfer flavoprotein alpha subunit|unclassified	0.4414539584
+UniRef50_J8SS94: Cytochrome c-type biogenesis protein CcmF	0.4414396087
+UniRef50_J8SS94: Cytochrome c-type biogenesis protein CcmF|unclassified	0.4414396087
+UniRef50_R5QEA8	0.4414325245
+UniRef50_R5QEA8|unclassified	0.4414325245
+UniRef50_UPI0003612E27: hypothetical protein, partial	0.4414154884
+UniRef50_UPI0003612E27: hypothetical protein, partial|unclassified	0.4414154884
+UniRef50_UPI000374EC18: hypothetical protein	0.4414045981
+UniRef50_UPI000374EC18: hypothetical protein|unclassified	0.4414045981
+UniRef50_G5QIK0: YcjX	0.4413876498
+UniRef50_G5QIK0: YcjX|unclassified	0.4413876498
+UniRef50_Q15QK1: S-adenosylmethionine synthase	0.4413418055
+UniRef50_Q15QK1: S-adenosylmethionine synthase|unclassified	0.4413418055
+UniRef50_Z1Y9N5: Replication initiator protein	0.4413412719
+UniRef50_Z1Y9N5: Replication initiator protein|unclassified	0.4413412719
+UniRef50_V2BN72: Putative cytoplasmic protein (Fragment)	0.4413180544
+UniRef50_V2BN72: Putative cytoplasmic protein (Fragment)|unclassified	0.4413180544
+UniRef50_S9V0F9: Plectin	0.4412832328
+UniRef50_S9V0F9: Plectin|unclassified	0.4412832328
+UniRef50_X7EB18: WGR domain-containing protein	0.4412519034
+UniRef50_X7EB18: WGR domain-containing protein|unclassified	0.4412519034
+UniRef50_X8FFX2	0.4412198374
+UniRef50_X8FFX2|unclassified	0.4412198374
+UniRef50_U6N4R4	0.4411851036
+UniRef50_U6N4R4|unclassified	0.4411851036
+UniRef50_R4M7R8: PE-PGRS family protein	0.4411511348
+UniRef50_R4M7R8: PE-PGRS family protein|unclassified	0.4411511348
+UniRef50_I4EZI0	0.4411496463
+UniRef50_I4EZI0|unclassified	0.4411496463
+UniRef50_UPI000377F889: glycine/betaine ABC transporter	0.4411449493
+UniRef50_UPI000377F889: glycine/betaine ABC transporter|unclassified	0.4411449493
+UniRef50_Q2QZI3: Expressed protein	0.4411158622
+UniRef50_Q2QZI3: Expressed protein|unclassified	0.4411158622
+UniRef50_F0K158: ABC transporter permease component	0.4410420493
+UniRef50_F0K158: ABC transporter permease component|unclassified	0.4410420493
+UniRef50_UPI0003F081ED: PREDICTED: pleckstrin homology domain-containing family B member 2-like	0.4410203550
+UniRef50_UPI0003F081ED: PREDICTED: pleckstrin homology domain-containing family B member 2-like|unclassified	0.4410203550
+UniRef50_R5QK93: ABC-type transport system involved in cytochrome c biogenesis permease component	0.4410088306
+UniRef50_R5QK93: ABC-type transport system involved in cytochrome c biogenesis permease component|unclassified	0.4410088306
+UniRef50_V2N5A4: Inner membrane transport protein YdhP	0.4409749774
+UniRef50_V2N5A4: Inner membrane transport protein YdhP|unclassified	0.4409749774
+UniRef50_Q2J6V8: 3-isopropylmalate dehydrogenase	0.4409076495
+UniRef50_Q2J6V8: 3-isopropylmalate dehydrogenase|unclassified	0.4409076495
+UniRef50_K2RRG4	0.4408317990
+UniRef50_K2RRG4|unclassified	0.4408317990
+UniRef50_UPI000374BEE2: hypothetical protein	0.4407930936
+UniRef50_UPI000374BEE2: hypothetical protein|unclassified	0.4407930936
+UniRef50_E0TN47	0.4407227854
+UniRef50_E0TN47|g__Streptococcus.s__Streptococcus_agalactiae	0.4407227854
+UniRef50_Q2S3M1: 4-hydroxy-tetrahydrodipicolinate synthase	0.4407190776
+UniRef50_Q2S3M1: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.4407190776
+UniRef50_V4JYH9	0.4407012430
+UniRef50_V4JYH9|unclassified	0.4407012430
+UniRef50_UPI0003B76623: coproporphyrinogen III oxidase	0.4406974165
+UniRef50_UPI0003B76623: coproporphyrinogen III oxidase|unclassified	0.4406974165
+UniRef50_E0TC05	0.4406900979
+UniRef50_E0TC05|unclassified	0.4406900979
+UniRef50_UPI00039DB795: 16S rRNA methyltransferase	0.4406875253
+UniRef50_UPI00039DB795: 16S rRNA methyltransferase|unclassified	0.4406875253
+UniRef50_UPI00046894CE: hypothetical protein	0.4406351056
+UniRef50_UPI00046894CE: hypothetical protein|unclassified	0.4406351056
+UniRef50_R9SKP5	0.4405789110
+UniRef50_R9SKP5|unclassified	0.4405789110
+UniRef50_R7S3L7	0.4405740335
+UniRef50_R7S3L7|unclassified	0.4405740335
+UniRef50_E5U1X7	0.4405719370
+UniRef50_E5U1X7|unclassified	0.4405719370
+UniRef50_A0A024L1D8: Antirestriction protein	0.4405396240
+UniRef50_A0A024L1D8: Antirestriction protein|unclassified	0.4405396240
+UniRef50_K2SGZ9: Histone deacetylation protein Rxt3	0.4405261732
+UniRef50_K2SGZ9: Histone deacetylation protein Rxt3|unclassified	0.4405261732
+UniRef50_UPI0003FA4F40: hypothetical protein	0.4405140061
+UniRef50_UPI0003FA4F40: hypothetical protein|unclassified	0.4405140061
+UniRef50_UPI0002D5F775: ATPase	0.4405066992
+UniRef50_UPI0002D5F775: ATPase|unclassified	0.4405066992
+UniRef50_Q1HTP5: X2R	0.4405039351
+UniRef50_Q1HTP5: X2R|unclassified	0.4405039351
+UniRef50_D5ALC3	0.4404723360
+UniRef50_D5ALC3|unclassified	0.4404723360
+UniRef50_F0EB43	0.4404533471
+UniRef50_F0EB43|unclassified	0.4404533471
+UniRef50_Q1C0G5	0.4404100276
+UniRef50_Q1C0G5|unclassified	0.4404100276
+UniRef50_M5R4A6	0.4404040887
+UniRef50_M5R4A6|unclassified	0.4404040887
+UniRef50_UPI0003606834: hypothetical protein	0.4403867494
+UniRef50_UPI0003606834: hypothetical protein|unclassified	0.4403867494
+UniRef50_Q9IBS0: R-LORF13a	0.4403719292
+UniRef50_Q9IBS0: R-LORF13a|unclassified	0.4403719292
+UniRef50_S9QZ13	0.4402716340
+UniRef50_S9QZ13|unclassified	0.4402716340
+UniRef50_UPI00031C2165: hypothetical protein	0.4402527894
+UniRef50_UPI00031C2165: hypothetical protein|unclassified	0.4402527894
+UniRef50_V4LD81	0.4402336375
+UniRef50_V4LD81|unclassified	0.4402336375
+UniRef50_E0RH42: Dipicolinate synthase, A chain	0.4402185913
+UniRef50_E0RH42: Dipicolinate synthase, A chain|unclassified	0.4402185913
+UniRef50_UPI00037A0BCD: hypothetical protein	0.4402028945
+UniRef50_UPI00037A0BCD: hypothetical protein|unclassified	0.4402028945
+UniRef50_A1WW73: Aldo/keto reductases-like diketogulonate reductase	0.4401796034
+UniRef50_A1WW73: Aldo/keto reductases-like diketogulonate reductase|unclassified	0.4401796034
+UniRef50_J3MBG5	0.4401638478
+UniRef50_J3MBG5|unclassified	0.4401638478
+UniRef50_S5V366: GTPase activator	0.4401550318
+UniRef50_S5V366: GTPase activator|unclassified	0.4401550318
+UniRef50_UPI000374A9B4: hypothetical protein	0.4401419163
+UniRef50_UPI000374A9B4: hypothetical protein|unclassified	0.4401419163
+UniRef50_UPI0004741042: hypothetical protein	0.4401055835
+UniRef50_UPI0004741042: hypothetical protein|unclassified	0.4401055835
+UniRef50_W5YF86	0.4400560853
+UniRef50_W5YF86|unclassified	0.4400560853
+UniRef50_UPI0003747D01: hypothetical protein	0.4400017158
+UniRef50_UPI0003747D01: hypothetical protein|unclassified	0.4400017158
+UniRef50_UPI0003EAB1EF: PREDICTED: neurogenic protein big brain-like	0.4399807076
+UniRef50_UPI0003EAB1EF: PREDICTED: neurogenic protein big brain-like|unclassified	0.4399807076
+UniRef50_UPI0004727931: hypothetical protein	0.4399635640
+UniRef50_UPI0004727931: hypothetical protein|unclassified	0.4399635640
+UniRef50_UPI000349D1AA: nitrate ABC transporter ATPase	0.4399509580
+UniRef50_UPI000349D1AA: nitrate ABC transporter ATPase|unclassified	0.4399509580
+UniRef50_Q1IZ39: Maltodextrin phosphorylase	0.4399472063
+UniRef50_Q1IZ39: Maltodextrin phosphorylase|g__Deinococcus.s__Deinococcus_radiodurans	0.4399472063
+UniRef50_UPI00038012F8: hypothetical protein	0.4399332724
+UniRef50_UPI00038012F8: hypothetical protein|unclassified	0.4399332724
+UniRef50_UPI0004674B81: hypothetical protein	0.4398795109
+UniRef50_UPI0004674B81: hypothetical protein|unclassified	0.4398795109
+UniRef50_A0A017HTB1	0.4398419456
+UniRef50_A0A017HTB1|unclassified	0.4398419456
+UniRef50_P54433: UPF0033 protein YrkF	0.4398384102
+UniRef50_P54433: UPF0033 protein YrkF|unclassified	0.4398384102
+UniRef50_Y8CZT8: Protein essC	0.4397542059
+UniRef50_Y8CZT8: Protein essC|unclassified	0.4397542059
+UniRef50_A3C636	0.4397484390
+UniRef50_A3C636|unclassified	0.4397484390
+UniRef50_H9KQ31	0.4397317428
+UniRef50_H9KQ31|unclassified	0.4397317428
+UniRef50_UPI000476D544: glycosyl transferase family 2	0.4397063662
+UniRef50_UPI000476D544: glycosyl transferase family 2|unclassified	0.4397063662
+UniRef50_J4ICF1	0.4396869597
+UniRef50_J4ICF1|unclassified	0.4396869597
+UniRef50_K0UHH8	0.4396515449
+UniRef50_K0UHH8|unclassified	0.4396515449
+UniRef50_UPI0003F6906F: chromosome partitioning protein ParB	0.4396221711
+UniRef50_UPI0003F6906F: chromosome partitioning protein ParB|unclassified	0.4396221711
+UniRef50_UPI000374B18C: hypothetical protein	0.4395611653
+UniRef50_UPI000374B18C: hypothetical protein|unclassified	0.4395611653
+UniRef50_UPI0004705E30: hypothetical protein	0.4395465000
+UniRef50_UPI0004705E30: hypothetical protein|unclassified	0.4395465000
+UniRef50_UPI00047E217B: hypothetical protein	0.4395289797
+UniRef50_UPI00047E217B: hypothetical protein|unclassified	0.4395289797
+UniRef50_UPI000418E2A2: methionyl-tRNA formyltransferase	0.4395201250
+UniRef50_UPI000418E2A2: methionyl-tRNA formyltransferase|unclassified	0.4395201250
+UniRef50_L8C3F4	0.4394934379
+UniRef50_L8C3F4|unclassified	0.4394934379
+UniRef50_UPI0004731CCE: 50S ribosomal protein L21, partial	0.4394443555
+UniRef50_UPI0004731CCE: 50S ribosomal protein L21, partial|unclassified	0.4394443555
+UniRef50_W8F1J2: 3-hydroxybutyryl-CoA dehydratase	0.4394189477
+UniRef50_W8F1J2: 3-hydroxybutyryl-CoA dehydratase|unclassified	0.4394189477
+UniRef50_UPI0003B2F0C5: ABC transporter ATP-binding protein	0.4394161167
+UniRef50_UPI0003B2F0C5: ABC transporter ATP-binding protein|unclassified	0.4394161167
+UniRef50_UPI0003FEA9DB: xanthine dehydrogenase	0.4393976998
+UniRef50_UPI0003FEA9DB: xanthine dehydrogenase|unclassified	0.4393976998
+UniRef50_C2VII2	0.4393893703
+UniRef50_C2VII2|unclassified	0.4393893703
+UniRef50_U6KK83	0.4393673111
+UniRef50_U6KK83|unclassified	0.4393673111
+UniRef50_UPI0002DAB36C: hypothetical protein	0.4393461297
+UniRef50_UPI0002DAB36C: hypothetical protein|unclassified	0.4393461297
+UniRef50_W4U314: Transglutaminase-like enzymes	0.4393365582
+UniRef50_W4U314: Transglutaminase-like enzymes|unclassified	0.4393365582
+UniRef50_Q51535: PilX protein	0.4393063800
+UniRef50_Q51535: PilX protein|unclassified	0.4393063800
+UniRef50_Q2CIH4	0.4392693877
+UniRef50_Q2CIH4|unclassified	0.4392693877
+UniRef50_C2RWN3: Phosphoglucomutase/phosphomannomutase alpha/beta/alpha domain I	0.4392655949
+UniRef50_C2RWN3: Phosphoglucomutase/phosphomannomutase alpha/beta/alpha domain I|unclassified	0.4392655949
+UniRef50_F4QZ07: RecF	0.4392376466
+UniRef50_F4QZ07: RecF|unclassified	0.4392376466
+UniRef50_UPI0003EE098D: PREDICTED: synaptic vesicle membrane protein VAT-1 homolog	0.4392332953
+UniRef50_UPI0003EE098D: PREDICTED: synaptic vesicle membrane protein VAT-1 homolog|unclassified	0.4392332953
+UniRef50_A0A059LJC0	0.4392317718
+UniRef50_A0A059LJC0|unclassified	0.4392317718
+UniRef50_G0DCF8	0.4391752495
+UniRef50_G0DCF8|unclassified	0.4391752495
+UniRef50_G8VCB9: BNR/Asp-box repeat protein	0.4391743522
+UniRef50_G8VCB9: BNR/Asp-box repeat protein|g__Propionibacterium.s__Propionibacterium_acnes	0.4391743522
+UniRef50_M9R1S6	0.4391712705
+UniRef50_M9R1S6|unclassified	0.4391712705
+UniRef50_Q6MER0	0.4391238379
+UniRef50_Q6MER0|unclassified	0.4391238379
+UniRef50_UPI000472D2F5: metal ABC transporter substrate-binding protein, partial	0.4391152278
+UniRef50_UPI000472D2F5: metal ABC transporter substrate-binding protein, partial|unclassified	0.4391152278
+UniRef50_W1YC31	0.4390790463
+UniRef50_W1YC31|unclassified	0.4390790463
+UniRef50_X6J8Z0	0.4389182488
+UniRef50_X6J8Z0|unclassified	0.4389182488
+UniRef50_Q182T5: Bifunctional protein PyrR	0.4388726944
+UniRef50_Q182T5: Bifunctional protein PyrR|unclassified	0.4388726944
+UniRef50_P48735: Isocitrate dehydrogenase [NADP], mitochondrial	0.4388491005
+UniRef50_P48735: Isocitrate dehydrogenase [NADP], mitochondrial|unclassified	0.4388491005
+UniRef50_UPI00037AE754: hypothetical protein	0.4388463212
+UniRef50_UPI00037AE754: hypothetical protein|unclassified	0.4388463212
+UniRef50_Q0HQ47: Diheme cytochrome c	0.4388300611
+UniRef50_Q0HQ47: Diheme cytochrome c|unclassified	0.4388300611
+UniRef50_E2ZTK2: Large exoprotein	0.4387889425
+UniRef50_E2ZTK2: Large exoprotein|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.4387889425
+UniRef50_UPI000366845E: hypothetical protein	0.4387742519
+UniRef50_UPI000366845E: hypothetical protein|unclassified	0.4387742519
+UniRef50_J3NEG0	0.4387043437
+UniRef50_J3NEG0|unclassified	0.4387043437
+UniRef50_W3RFU7	0.4386854615
+UniRef50_W3RFU7|unclassified	0.4386854615
+UniRef50_Q1QX79	0.4386744467
+UniRef50_Q1QX79|unclassified	0.4386744467
+UniRef50_Q87T80: Phosphopantetheine adenylyltransferase	0.4386652403
+UniRef50_Q87T80: Phosphopantetheine adenylyltransferase|unclassified	0.4386652403
+UniRef50_M4FJJ3	0.4386553530
+UniRef50_M4FJJ3|unclassified	0.4386553530
+UniRef50_A4N0P3	0.4386407816
+UniRef50_A4N0P3|unclassified	0.4386407816
+UniRef50_R1CDU5	0.4386055742
+UniRef50_R1CDU5|unclassified	0.4386055742
+UniRef50_L1KX24	0.4385964912
+UniRef50_L1KX24|unclassified	0.4385964912
+UniRef50_Q9RTE3: Protein-export membrane protein, putative	0.4385964912
+UniRef50_Q9RTE3: Protein-export membrane protein, putative|g__Deinococcus.s__Deinococcus_radiodurans	0.4385964912
+UniRef50_UPI00039A293C: amino acid ABC transporter permease	0.4385964912
+UniRef50_UPI00039A293C: amino acid ABC transporter permease|unclassified	0.4385964912
+UniRef50_C8N8V6: Flavodoxin-like protein	0.4385631705
+UniRef50_C8N8V6: Flavodoxin-like protein|unclassified	0.4385631705
+UniRef50_UPI000428C176: hypothetical protein	0.4385535943
+UniRef50_UPI000428C176: hypothetical protein|unclassified	0.4385535943
+UniRef50_P74134: Magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase 2	0.4385244822
+UniRef50_P74134: Magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase 2|unclassified	0.4385244822
+UniRef50_R1D8R7	0.4385206067
+UniRef50_R1D8R7|unclassified	0.4385206067
+UniRef50_M4RRJ2	0.4385195561
+UniRef50_M4RRJ2|unclassified	0.4385195561
+UniRef50_W5TR97	0.4385097477
+UniRef50_W5TR97|unclassified	0.4385097477
+UniRef50_W8RPI1: Type cbb3 cytochrome oxidase biogenesis protein CcoH	0.4384832384
+UniRef50_W8RPI1: Type cbb3 cytochrome oxidase biogenesis protein CcoH|unclassified	0.4384832384
+UniRef50_UPI0004633A1A: hypothetical protein	0.4384827434
+UniRef50_UPI0004633A1A: hypothetical protein|unclassified	0.4384827434
+UniRef50_C1N5D9: Predicted protein	0.4384005268
+UniRef50_C1N5D9: Predicted protein|unclassified	0.4384005268
+UniRef50_H5JRS4: Proline/betaine transporter domain protein	0.4383822178
+UniRef50_H5JRS4: Proline/betaine transporter domain protein|unclassified	0.4383822178
+UniRef50_Q5ZWE4: Spermidine/putrescine import ATP-binding protein PotA	0.4383644886
+UniRef50_Q5ZWE4: Spermidine/putrescine import ATP-binding protein PotA|unclassified	0.4383644886
+UniRef50_F3S3U6	0.4383446792
+UniRef50_F3S3U6|unclassified	0.4383446792
+UniRef50_UPI00036806EE: hypothetical protein	0.4382847444
+UniRef50_UPI00036806EE: hypothetical protein|unclassified	0.4382847444
+UniRef50_UPI0003611BBE: hypothetical protein, partial	0.4382463794
+UniRef50_UPI0003611BBE: hypothetical protein, partial|unclassified	0.4382463794
+UniRef50_E1JSU9: Anti-sigma-factor antagonist	0.4382181569
+UniRef50_E1JSU9: Anti-sigma-factor antagonist|unclassified	0.4382181569
+UniRef50_UPI000383E66D: PREDICTED: aquaporin-5 isoform X1	0.4381962232
+UniRef50_UPI000383E66D: PREDICTED: aquaporin-5 isoform X1|unclassified	0.4381962232
+UniRef50_K7RPT1	0.4381731611
+UniRef50_K7RPT1|unclassified	0.4381731611
+UniRef50_UPI00037D66CB: coproporphyrinogen III oxidase, partial	0.4381715443
+UniRef50_UPI00037D66CB: coproporphyrinogen III oxidase, partial|unclassified	0.4381715443
+UniRef50_F9RM15: Anti-sigma-factor antagonist	0.4381595648
+UniRef50_F9RM15: Anti-sigma-factor antagonist|unclassified	0.4381595648
+UniRef50_UPI00035CD940: hypothetical protein	0.4381271461
+UniRef50_UPI00035CD940: hypothetical protein|unclassified	0.4381271461
+UniRef50_A8IAL7: Glutamate transport protein	0.4381160624
+UniRef50_A8IAL7: Glutamate transport protein|unclassified	0.4381160624
+UniRef50_A1B1V8: DNA-directed RNA polymerase subunit omega	0.4381158374
+UniRef50_A1B1V8: DNA-directed RNA polymerase subunit omega|unclassified	0.4381158374
+UniRef50_X3EKF3	0.4381071089
+UniRef50_X3EKF3|unclassified	0.4381071089
+UniRef50_UPI00034630B7: hypothetical protein	0.4380768528
+UniRef50_UPI00034630B7: hypothetical protein|unclassified	0.4380768528
+UniRef50_U5SD94	0.4380097501
+UniRef50_U5SD94|unclassified	0.4380097501
+UniRef50_F2ADY7	0.4379814029
+UniRef50_F2ADY7|unclassified	0.4379814029
+UniRef50_F4ZCH9	0.4379741271
+UniRef50_F4ZCH9|unclassified	0.4379741271
+UniRef50_X2L7X3	0.4379495731
+UniRef50_X2L7X3|unclassified	0.4379495731
+UniRef50_UPI0003B33483: MULTISPECIES: organic solvent ABC transporter ATP-binding protein	0.4379328876
+UniRef50_UPI0003B33483: MULTISPECIES: organic solvent ABC transporter ATP-binding protein|unclassified	0.4379328876
+UniRef50_Q5X5I2: Ribonuclease H	0.4379146959
+UniRef50_Q5X5I2: Ribonuclease H|unclassified	0.4379146959
+UniRef50_X1H0M2: Marine sediment metagenome DNA, contig: S03H2_S16574 (Fragment)	0.4378790507
+UniRef50_X1H0M2: Marine sediment metagenome DNA, contig: S03H2_S16574 (Fragment)|unclassified	0.4378790507
+UniRef50_UPI000375C7D0: hypothetical protein	0.4378560442
+UniRef50_UPI000375C7D0: hypothetical protein|unclassified	0.4378560442
+UniRef50_W9HAW4	0.4378531462
+UniRef50_W9HAW4|unclassified	0.4378531462
+UniRef50_UPI000472B438: hypothetical protein	0.4377898881
+UniRef50_UPI000472B438: hypothetical protein|unclassified	0.4377898881
+UniRef50_UPI0003740B9E: hypothetical protein	0.4377610734
+UniRef50_UPI0003740B9E: hypothetical protein|unclassified	0.4377610734
+UniRef50_A0A058ZPC1	0.4377389883
+UniRef50_A0A058ZPC1|unclassified	0.4377389883
+UniRef50_UPI00035DF78F: hypothetical protein	0.4377068336
+UniRef50_UPI00035DF78F: hypothetical protein|unclassified	0.4377068336
+UniRef50_Q28KJ3: RdxH protein putative	0.4376928652
+UniRef50_Q28KJ3: RdxH protein putative|unclassified	0.4376928652
+UniRef50_UPI000328D6FD: PREDICTED: translation initiation factor IF-2-like, partial	0.4376914932
+UniRef50_UPI000328D6FD: PREDICTED: translation initiation factor IF-2-like, partial|unclassified	0.4376914932
+UniRef50_V5ZX98	0.4376714838
+UniRef50_V5ZX98|unclassified	0.4376714838
+UniRef50_UPI000369EA53: hypothetical protein	0.4376666524
+UniRef50_UPI000369EA53: hypothetical protein|unclassified	0.4376666524
+UniRef50_P60919: Histidine--tRNA ligase	0.4375792030
+UniRef50_P60919: Histidine--tRNA ligase|unclassified	0.4375792030
+UniRef50_UPI0004703A9C: hypothetical protein, partial	0.4375734954
+UniRef50_UPI0004703A9C: hypothetical protein, partial|unclassified	0.4375734954
+UniRef50_UPI000465EB7D: hypothetical protein	0.4375457525
+UniRef50_UPI000465EB7D: hypothetical protein|unclassified	0.4375457525
+UniRef50_M4JVT9	0.4375340126
+UniRef50_M4JVT9|unclassified	0.4375340126
+UniRef50_UPI000375181C: amino acid ABC transporter permease	0.4374495337
+UniRef50_UPI000375181C: amino acid ABC transporter permease|unclassified	0.4374495337
+UniRef50_K4NG74: VirB4-like protein	0.4374453193
+UniRef50_K4NG74: VirB4-like protein|g__Helicobacter.s__Helicobacter_pylori	0.4374453193
+UniRef50_A0KF56: Trap transporter solute receptor, taxi family	0.4374386597
+UniRef50_A0KF56: Trap transporter solute receptor, taxi family|unclassified	0.4374386597
+UniRef50_UPI000381D193: hypothetical protein	0.4373929009
+UniRef50_UPI000381D193: hypothetical protein|unclassified	0.4373929009
+UniRef50_W1WJ70	0.4373666493
+UniRef50_W1WJ70|unclassified	0.4373666493
+UniRef50_UPI00035F571E: hypothetical protein	0.4373420709
+UniRef50_UPI00035F571E: hypothetical protein|unclassified	0.4373420709
+UniRef50_A0A034H9T3	0.4373323027
+UniRef50_A0A034H9T3|unclassified	0.4373323027
+UniRef50_A0A011QAE1: Cytochrome c oxidase subunit II	0.4373163561
+UniRef50_A0A011QAE1: Cytochrome c oxidase subunit II|unclassified	0.4373163561
+UniRef50_Q8UHK4: Histidine--tRNA ligase	0.4372900616
+UniRef50_Q8UHK4: Histidine--tRNA ligase|unclassified	0.4372900616
+UniRef50_UPI000470EF31: hypothetical protein, partial	0.4372543974
+UniRef50_UPI000470EF31: hypothetical protein, partial|unclassified	0.4372543974
+UniRef50_F0XYT5	0.4372540446
+UniRef50_F0XYT5|unclassified	0.4372540446
+UniRef50_UPI0003345883	0.4372540446
+UniRef50_UPI0003345883|unclassified	0.4372540446
+UniRef50_T0JJ14	0.4372474561
+UniRef50_T0JJ14|unclassified	0.4372474561
+UniRef50_X7F301	0.4372450158
+UniRef50_X7F301|unclassified	0.4372450158
+UniRef50_A0A031BPA8	0.4371564268
+UniRef50_A0A031BPA8|unclassified	0.4371564268
+UniRef50_A3TSC4: Sarcosine oxidase, gamma subunit family protein	0.4371315196
+UniRef50_A3TSC4: Sarcosine oxidase, gamma subunit family protein|unclassified	0.4371315196
+UniRef50_UPI00047D95CB: hypothetical protein	0.4371171209
+UniRef50_UPI00047D95CB: hypothetical protein|unclassified	0.4371171209
+UniRef50_UPI000366A554: hypothetical protein	0.4371140332
+UniRef50_UPI000366A554: hypothetical protein|unclassified	0.4371140332
+UniRef50_C0PLL4	0.4370816302
+UniRef50_C0PLL4|unclassified	0.4370816302
+UniRef50_D8PWR6	0.4370737657
+UniRef50_D8PWR6|unclassified	0.4370737657
+UniRef50_Q7Z2R3: MST148 protein	0.4370378650
+UniRef50_Q7Z2R3: MST148 protein|unclassified	0.4370378650
+UniRef50_X8B279: Putative conserved membrane protein	0.4369917145
+UniRef50_X8B279: Putative conserved membrane protein|unclassified	0.4369917145
+UniRef50_X8ACG0: Pyridine nucleotide-disulfide oxidoreductase family protein	0.4369555319
+UniRef50_X8ACG0: Pyridine nucleotide-disulfide oxidoreductase family protein|unclassified	0.4369555319
+UniRef50_A0KKD3: Adenine phosphoribosyltransferase	0.4369523420
+UniRef50_A0KKD3: Adenine phosphoribosyltransferase|unclassified	0.4369523420
+UniRef50_F7P1G2	0.4368996967
+UniRef50_F7P1G2|unclassified	0.4368996967
+UniRef50_UPI000287DB6E: SAM-dependent methyltransferase	0.4368989445
+UniRef50_UPI000287DB6E: SAM-dependent methyltransferase|unclassified	0.4368989445
+UniRef50_Q8X5L8: Cyclic di-GMP-binding protein	0.4368719965
+UniRef50_Q8X5L8: Cyclic di-GMP-binding protein|g__Escherichia.s__Escherichia_coli	0.4368719965
+UniRef50_N0B408: Cyclase/dehydrase	0.4368187347
+UniRef50_N0B408: Cyclase/dehydrase|unclassified	0.4368187347
+UniRef50_M5DWV4	0.4367528236
+UniRef50_M5DWV4|unclassified	0.4367528236
+UniRef50_S7XAC8	0.4367426854
+UniRef50_S7XAC8|unclassified	0.4367426854
+UniRef50_UPI0002628E3A: amino acid ABC transporter, permease protein, 3-TM region, His/Glu/Gln/Arg/opine family	0.4366768256
+UniRef50_UPI0002628E3A: amino acid ABC transporter, permease protein, 3-TM region, His/Glu/Gln/Arg/opine family|unclassified	0.4366768256
+UniRef50_H4H2I1	0.4366565891
+UniRef50_H4H2I1|unclassified	0.4366565891
+UniRef50_Q59477: 1,3-propanediol dehydrogenase	0.4366195979
+UniRef50_Q59477: 1,3-propanediol dehydrogenase|unclassified	0.4366195979
+UniRef50_F0G8V5	0.4366040429
+UniRef50_F0G8V5|unclassified	0.4366040429
+UniRef50_UPI0001D2F0AE: putrescine/spermidine ABC transporter substrate-binding protein	0.4365936832
+UniRef50_UPI0001D2F0AE: putrescine/spermidine ABC transporter substrate-binding protein|unclassified	0.4365936832
+UniRef50_UPI00047B9601: hypothetical protein	0.4365797281
+UniRef50_UPI00047B9601: hypothetical protein|unclassified	0.4365797281
+UniRef50_UPI00037EED1B: hypothetical protein	0.4365744190
+UniRef50_UPI00037EED1B: hypothetical protein|unclassified	0.4365744190
+UniRef50_UPI00036BEE13: hypothetical protein	0.4365347329
+UniRef50_UPI00036BEE13: hypothetical protein|unclassified	0.4365347329
+UniRef50_N9TWU2	0.4364225017
+UniRef50_N9TWU2|unclassified	0.4364225017
+UniRef50_O51575: 1-phosphofructokinase	0.4364039234
+UniRef50_O51575: 1-phosphofructokinase|unclassified	0.4364039234
+UniRef50_Q6G583: NADH-ubiquinone oxidoreductase	0.4363657107
+UniRef50_Q6G583: NADH-ubiquinone oxidoreductase|unclassified	0.4363657107
+UniRef50_UPI000401D3A6: GntR family transcriptional regulator	0.4362813496
+UniRef50_UPI000401D3A6: GntR family transcriptional regulator|unclassified	0.4362813496
+UniRef50_UPI0002F47CD3: LacI family transcription regulator	0.4362589587
+UniRef50_UPI0002F47CD3: LacI family transcription regulator|unclassified	0.4362589587
+UniRef50_UPI00026577FF: PREDICTED: citrate lyase subunit beta-like protein, mitochondrial-like	0.4362463090
+UniRef50_UPI00026577FF: PREDICTED: citrate lyase subunit beta-like protein, mitochondrial-like|unclassified	0.4362463090
+UniRef50_UPI000289D94C: aspartyl/glutamyl-tRNA amidotransferase subunit B	0.4361727100
+UniRef50_UPI000289D94C: aspartyl/glutamyl-tRNA amidotransferase subunit B|unclassified	0.4361727100
+UniRef50_W5X9I3: UDP-glucose pyrophosphorylase	0.4361664825
+UniRef50_W5X9I3: UDP-glucose pyrophosphorylase|unclassified	0.4361664825
+UniRef50_J2ESL9	0.4361575606
+UniRef50_J2ESL9|unclassified	0.4361575606
+UniRef50_UPI00046D2518	0.4360835335
+UniRef50_UPI00046D2518|unclassified	0.4360835335
+UniRef50_UPI000361B676: hypothetical protein	0.4360689749
+UniRef50_UPI000361B676: hypothetical protein|unclassified	0.4360689749
+UniRef50_A4BBR4	0.4360474810
+UniRef50_A4BBR4|unclassified	0.4360474810
+UniRef50_F1ZG92	0.4360470235
+UniRef50_F1ZG92|unclassified	0.4360470235
+UniRef50_J2MVT8: Putative membrane protein	0.4359736361
+UniRef50_J2MVT8: Putative membrane protein|unclassified	0.4359736361
+UniRef50_UPI000474B6CD: hypothetical protein, partial	0.4359661077
+UniRef50_UPI000474B6CD: hypothetical protein, partial|unclassified	0.4359661077
+UniRef50_UPI00047C6353: hypothetical protein	0.4359639603
+UniRef50_UPI00047C6353: hypothetical protein|unclassified	0.4359639603
+UniRef50_UPI0003C197F4	0.4359262365
+UniRef50_UPI0003C197F4|unclassified	0.4359262365
+UniRef50_L7LUW1	0.4358620941
+UniRef50_L7LUW1|unclassified	0.4358620941
+UniRef50_D7FUW4	0.4357479680
+UniRef50_D7FUW4|unclassified	0.4357479680
+UniRef50_UPI0003113A1C: hypothetical protein	0.4357476434
+UniRef50_UPI0003113A1C: hypothetical protein|unclassified	0.4357476434
+UniRef50_UPI0003B6C834: threonine transporter RhtB	0.4357472388
+UniRef50_UPI0003B6C834: threonine transporter RhtB|unclassified	0.4357472388
+UniRef50_UPI000468ED46: hypothetical protein	0.4357444137
+UniRef50_UPI000468ED46: hypothetical protein|unclassified	0.4357444137
+UniRef50_D7BEZ9: ATP-dependent DNA helicase RecG	0.4357298475
+UniRef50_D7BEZ9: ATP-dependent DNA helicase RecG|g__Deinococcus.s__Deinococcus_radiodurans	0.4357298475
+UniRef50_F0KJR3: Membrane alanyl aminopeptidase	0.4357298475
+UniRef50_F0KJR3: Membrane alanyl aminopeptidase|g__Acinetobacter.s__Acinetobacter_baumannii	0.4357298475
+UniRef50_UPI00034F9E03	0.4357298475
+UniRef50_UPI00034F9E03|unclassified	0.4357298475
+UniRef50_Q3JXY3	0.4357125865
+UniRef50_Q3JXY3|unclassified	0.4357125865
+UniRef50_D4RJZ6	0.4356697940
+UniRef50_D4RJZ6|unclassified	0.4356697940
+UniRef50_Q4JMV2	0.4356099104
+UniRef50_Q4JMV2|unclassified	0.4356099104
+UniRef50_UPI000197AB5D: isopentenyldiphosphate isomerase	0.4355726525
+UniRef50_UPI000197AB5D: isopentenyldiphosphate isomerase|unclassified	0.4355726525
+UniRef50_UPI00047AF5BF: hypothetical protein	0.4355720342
+UniRef50_UPI00047AF5BF: hypothetical protein|unclassified	0.4355720342
+UniRef50_UPI0003955E77: PREDICTED: 39S ribosomal protein L11, mitochondrial, partial	0.4355672059
+UniRef50_UPI0003955E77: PREDICTED: 39S ribosomal protein L11, mitochondrial, partial|unclassified	0.4355672059
+UniRef50_A4RUZ4: Predicted protein	0.4355600283
+UniRef50_A4RUZ4: Predicted protein|unclassified	0.4355600283
+UniRef50_Q745F5	0.4355501181
+UniRef50_Q745F5|unclassified	0.4355501181
+UniRef50_UPI000382C69D: hypothetical protein	0.4354879251
+UniRef50_UPI000382C69D: hypothetical protein|unclassified	0.4354879251
+UniRef50_UPI000237983A: hypothetical protein	0.4354878152
+UniRef50_UPI000237983A: hypothetical protein|unclassified	0.4354878152
+UniRef50_A3TXG9	0.4354647411
+UniRef50_A3TXG9|unclassified	0.4354647411
+UniRef50_C0B0T0	0.4354354267
+UniRef50_C0B0T0|unclassified	0.4354354267
+UniRef50_X4KJN5	0.4354152454
+UniRef50_X4KJN5|unclassified	0.4354152454
+UniRef50_UPI0003649624: hypothetical protein	0.4353596964
+UniRef50_UPI0003649624: hypothetical protein|unclassified	0.4353596964
+UniRef50_UPI0003B52C75: ATP-binding protein	0.4353290612
+UniRef50_UPI0003B52C75: ATP-binding protein|unclassified	0.4353290612
+UniRef50_R4GKP1	0.4353289466
+UniRef50_R4GKP1|unclassified	0.4353289466
+UniRef50_C9TKU7: Periplasmic binding protein/LacI transcriptional regulator	0.4352561441
+UniRef50_C9TKU7: Periplasmic binding protein/LacI transcriptional regulator|unclassified	0.4352561441
+UniRef50_F4ALX4	0.4352050600
+UniRef50_F4ALX4|unclassified	0.4352050600
+UniRef50_Q6BA81	0.4351230908
+UniRef50_Q6BA81|unclassified	0.4351230908
+UniRef50_J2WUA4	0.4351071713
+UniRef50_J2WUA4|unclassified	0.4351071713
+UniRef50_UPI00030FA7BB: hypothetical protein	0.4350836193
+UniRef50_UPI00030FA7BB: hypothetical protein|unclassified	0.4350836193
+UniRef50_Q2KTS9: Phosphoribosyl-ATP pyrophosphatase	0.4350263367
+UniRef50_Q2KTS9: Phosphoribosyl-ATP pyrophosphatase|unclassified	0.4350263367
+UniRef50_UPI00037EC33C: hypothetical protein	0.4350250770
+UniRef50_UPI00037EC33C: hypothetical protein|unclassified	0.4350250770
+UniRef50_A0A032ZMB7: 4,4'-diaponeurosporene oxidase	0.4350157562
+UniRef50_A0A032ZMB7: 4,4'-diaponeurosporene oxidase|unclassified	0.4350157562
+UniRef50_A0A037XJH2: Membrane protein	0.4350089772
+UniRef50_A0A037XJH2: Membrane protein|unclassified	0.4350089772
+UniRef50_UPI00042554E4: hypothetical protein	0.4349761872
+UniRef50_UPI00042554E4: hypothetical protein|unclassified	0.4349761872
+UniRef50_V6YKB4	0.4348246970
+UniRef50_V6YKB4|unclassified	0.4348246970
+UniRef50_X0ZZK7: Marine sediment metagenome DNA, contig: S01H4_S03277 (Fragment)	0.4348199595
+UniRef50_X0ZZK7: Marine sediment metagenome DNA, contig: S01H4_S03277 (Fragment)|unclassified	0.4348199595
+UniRef50_K6S6A5: FliK family flagellar hook-length control protein	0.4347843176
+UniRef50_K6S6A5: FliK family flagellar hook-length control protein|unclassified	0.4347843176
+UniRef50_Z0GFY9: Integral membrane protein	0.4347634930
+UniRef50_Z0GFY9: Integral membrane protein|unclassified	0.4347634930
+UniRef50_N8C7B4	0.4347343809
+UniRef50_N8C7B4|unclassified	0.4347343809
+UniRef50_A0A024YRW3	0.4347271860
+UniRef50_A0A024YRW3|unclassified	0.4347271860
+UniRef50_Q5Z7J9	0.4346348344
+UniRef50_Q5Z7J9|unclassified	0.4346348344
+UniRef50_UPI00037DC3C8: hypothetical protein, partial	0.4346018819
+UniRef50_UPI00037DC3C8: hypothetical protein, partial|unclassified	0.4346018819
+UniRef50_F2U7V6	0.4345936549
+UniRef50_F2U7V6|unclassified	0.4345936549
+UniRef50_Q7NT88	0.4345815027
+UniRef50_Q7NT88|unclassified	0.4345815027
+UniRef50_D2NK69	0.4345730363
+UniRef50_D2NK69|unclassified	0.4345730363
+UniRef50_Q2NVF9: Ribonuclease H	0.4345551017
+UniRef50_Q2NVF9: Ribonuclease H|unclassified	0.4345551017
+UniRef50_UPI0003680DD8: hypothetical protein	0.4345550058
+UniRef50_UPI0003680DD8: hypothetical protein|unclassified	0.4345550058
+UniRef50_UPI00039B2F74: hypothetical protein	0.4345174936
+UniRef50_UPI00039B2F74: hypothetical protein|unclassified	0.4345174936
+UniRef50_Q28LX4	0.4344942023
+UniRef50_Q28LX4|unclassified	0.4344942023
+UniRef50_G2X5D9	0.4344800746
+UniRef50_G2X5D9|unclassified	0.4344800746
+UniRef50_UPI0004561650: hypothetical protein PFL1_00576	0.4344602734
+UniRef50_UPI0004561650: hypothetical protein PFL1_00576|unclassified	0.4344602734
+UniRef50_UPI00016C4514: 50S ribosomal protein L18	0.4344411636
+UniRef50_UPI00016C4514: 50S ribosomal protein L18|unclassified	0.4344411636
+UniRef50_UPI000465002D: camphor resistance protein CrcB	0.4343702657
+UniRef50_UPI000465002D: camphor resistance protein CrcB|unclassified	0.4343702657
+UniRef50_UPI00036CD5DC: hypothetical protein	0.4343638575
+UniRef50_UPI00036CD5DC: hypothetical protein|unclassified	0.4343638575
+UniRef50_A1B948	0.4343628953
+UniRef50_A1B948|unclassified	0.4343628953
+UniRef50_UPI0002EC6318: hypothetical protein	0.4342893034
+UniRef50_UPI0002EC6318: hypothetical protein|unclassified	0.4342893034
+UniRef50_UPI00047D9517: hypothetical protein	0.4342618261
+UniRef50_UPI00047D9517: hypothetical protein|unclassified	0.4342618261
+UniRef50_UPI000366CA78: hypothetical protein	0.4342312128
+UniRef50_UPI000366CA78: hypothetical protein|unclassified	0.4342312128
+UniRef50_U6MYB3	0.4342162397
+UniRef50_U6MYB3|unclassified	0.4342162397
+UniRef50_F3J1G7: Sarcosine oxidase, subunit alpha (Fragment)	0.4341870433
+UniRef50_F3J1G7: Sarcosine oxidase, subunit alpha (Fragment)|unclassified	0.4341870433
+UniRef50_UPI0004712D1B: hypothetical protein	0.4341758193
+UniRef50_UPI0004712D1B: hypothetical protein|unclassified	0.4341758193
+UniRef50_UPI0003AFE17D: PREDICTED: achaete-scute homolog 2-like	0.4341128754
+UniRef50_UPI0003AFE17D: PREDICTED: achaete-scute homolog 2-like|unclassified	0.4341128754
+UniRef50_R5W2L7	0.4340637163
+UniRef50_R5W2L7|unclassified	0.4340637163
+UniRef50_T1W7J5	0.4340523457
+UniRef50_T1W7J5|unclassified	0.4340523457
+UniRef50_W8GGZ2	0.4340451611
+UniRef50_W8GGZ2|unclassified	0.4340451611
+UniRef50_UPI000371362E: hypothetical protein	0.4340415015
+UniRef50_UPI000371362E: hypothetical protein|unclassified	0.4340415015
+UniRef50_K0RHY4	0.4340362441
+UniRef50_K0RHY4|unclassified	0.4340362441
+UniRef50_Q65EJ8: NAD(P)H dehydrogenase YwrO	0.4339808897
+UniRef50_Q65EJ8: NAD(P)H dehydrogenase YwrO|unclassified	0.4339808897
+UniRef50_Q0AE34: Ribonuclease H	0.4339798212
+UniRef50_Q0AE34: Ribonuclease H|unclassified	0.4339798212
+UniRef50_Q0AM06	0.4339656697
+UniRef50_Q0AM06|unclassified	0.4339656697
+UniRef50_UPI00047706B6: hypothetical protein	0.4339645617
+UniRef50_UPI00047706B6: hypothetical protein|unclassified	0.4339645617
+UniRef50_UPI00037BE06D: hypothetical protein	0.4339643992
+UniRef50_UPI00037BE06D: hypothetical protein|unclassified	0.4339643992
+UniRef50_UPI0002E5C683: hypothetical protein	0.4339380654
+UniRef50_UPI0002E5C683: hypothetical protein|unclassified	0.4339380654
+UniRef50_H3LAA4	0.4338629260
+UniRef50_H3LAA4|unclassified	0.4338629260
+UniRef50_Q20EX8: Light-independent protochlorophyllide reductase subunit N	0.4338466553
+UniRef50_Q20EX8: Light-independent protochlorophyllide reductase subunit N|unclassified	0.4338466553
+UniRef50_UPI000376C8DC: hypothetical protein	0.4337393231
+UniRef50_UPI000376C8DC: hypothetical protein|unclassified	0.4337393231
+UniRef50_V5VEP7: Rhs element Vgr family protein	0.4336513443
+UniRef50_V5VEP7: Rhs element Vgr family protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.4336513443
+UniRef50_UPI00036385A2: hypothetical protein	0.4336111030
+UniRef50_UPI00036385A2: hypothetical protein|unclassified	0.4336111030
+UniRef50_X1V997: Marine sediment metagenome DNA, contig: S12H4_S16715 (Fragment)	0.4335957603
+UniRef50_X1V997: Marine sediment metagenome DNA, contig: S12H4_S16715 (Fragment)|unclassified	0.4335957603
+UniRef50_F4DMV8	0.4335947253
+UniRef50_F4DMV8|unclassified	0.4335947253
+UniRef50_UPI0003628360: hypothetical protein	0.4335858477
+UniRef50_UPI0003628360: hypothetical protein|unclassified	0.4335858477
+UniRef50_UPI00046FF4AE: leucine/isoleucine/valine transporter ATP-binding subunit, partial	0.4335589467
+UniRef50_UPI00046FF4AE: leucine/isoleucine/valine transporter ATP-binding subunit, partial|unclassified	0.4335589467
+UniRef50_UPI00045E609A: hypothetical protein	0.4335532322
+UniRef50_UPI00045E609A: hypothetical protein|unclassified	0.4335532322
+UniRef50_B4EWA1: Purine nucleoside phosphorylase DeoD-type	0.4335275932
+UniRef50_B4EWA1: Purine nucleoside phosphorylase DeoD-type|unclassified	0.4335275932
+UniRef50_R5RCL0: Chromosomal replication initiator	0.4334983575
+UniRef50_R5RCL0: Chromosomal replication initiator|unclassified	0.4334983575
+UniRef50_W9WIG7	0.4334121478
+UniRef50_W9WIG7|unclassified	0.4334121478
+UniRef50_UPI0000393886: peptidase	0.4333724449
+UniRef50_UPI0000393886: peptidase|unclassified	0.4333724449
+UniRef50_R0K0E6	0.4333717136
+UniRef50_R0K0E6|unclassified	0.4333717136
+UniRef50_UPI0002627F99: 50S ribosomal protein L6	0.4333546038
+UniRef50_UPI0002627F99: 50S ribosomal protein L6|unclassified	0.4333546038
+UniRef50_F2J2D8: Putative HTH-type transcriptional regulator rrf2-like protein	0.4333495446
+UniRef50_F2J2D8: Putative HTH-type transcriptional regulator rrf2-like protein|unclassified	0.4333495446
+UniRef50_A3VKG3	0.4333085971
+UniRef50_A3VKG3|unclassified	0.4333085971
+UniRef50_R4R534	0.4333001091
+UniRef50_R4R534|unclassified	0.4333001091
+UniRef50_UPI0002DDE0E6: hypothetical protein	0.4332983137
+UniRef50_UPI0002DDE0E6: hypothetical protein|unclassified	0.4332983137
+UniRef50_UPI000379F97B: hypothetical protein	0.4332827427
+UniRef50_UPI000379F97B: hypothetical protein|unclassified	0.4332827427
+UniRef50_UPI00035C8219: hypothetical protein	0.4332701626
+UniRef50_UPI00035C8219: hypothetical protein|unclassified	0.4332701626
+UniRef50_P80503: Dihydrolipoyl dehydrogenase (Fragment)	0.4332192763
+UniRef50_P80503: Dihydrolipoyl dehydrogenase (Fragment)|unclassified	0.4332192763
+UniRef50_UPI0003797EBB: hypothetical protein	0.4331785144
+UniRef50_UPI0003797EBB: hypothetical protein|unclassified	0.4331785144
+UniRef50_Q8VR56: Putative intergenic transcriptional regulator	0.4331670228
+UniRef50_Q8VR56: Putative intergenic transcriptional regulator|unclassified	0.4331670228
+UniRef50_UPI0003AEC18F: PREDICTED: serine/arginine repetitive matrix protein 2-like	0.4331398130
+UniRef50_UPI0003AEC18F: PREDICTED: serine/arginine repetitive matrix protein 2-like|unclassified	0.4331398130
+UniRef50_UPI0003A4E7B3: ribonuclease BN	0.4331120614
+UniRef50_UPI0003A4E7B3: ribonuclease BN|unclassified	0.4331120614
+UniRef50_D2S8K3	0.4329951394
+UniRef50_D2S8K3|unclassified	0.4329951394
+UniRef50_UPI00047CE627: hypothetical protein	0.4329526318
+UniRef50_UPI00047CE627: hypothetical protein|unclassified	0.4329526318
+UniRef50_X1BB59: Marine sediment metagenome DNA, contig: S01H4_S09675 (Fragment)	0.4329359014
+UniRef50_X1BB59: Marine sediment metagenome DNA, contig: S01H4_S09675 (Fragment)|unclassified	0.4329359014
+UniRef50_Q6EPA9: Pr1-like protein	0.4328954457
+UniRef50_Q6EPA9: Pr1-like protein|unclassified	0.4328954457
+UniRef50_A0A014PT30: LemA family protein (Fragment)	0.4327771233
+UniRef50_A0A014PT30: LemA family protein (Fragment)|unclassified	0.4327771233
+UniRef50_U7IWX4	0.4327592824
+UniRef50_U7IWX4|unclassified	0.4327592824
+UniRef50_G5LNV5: Respiratory nitrate reductase alpha chain (Fragment)	0.4327591267
+UniRef50_G5LNV5: Respiratory nitrate reductase alpha chain (Fragment)|unclassified	0.4327591267
+UniRef50_UPI0004734EA4: type III secretion system protein SsaR	0.4327573684
+UniRef50_UPI0004734EA4: type III secretion system protein SsaR|unclassified	0.4327573684
+UniRef50_UPI0002D482D7: hypothetical protein	0.4327112162
+UniRef50_UPI0002D482D7: hypothetical protein|unclassified	0.4327112162
+UniRef50_E6X0K3: Nitrate reductase cytochrome c-type subunit (NapB)	0.4327049446
+UniRef50_E6X0K3: Nitrate reductase cytochrome c-type subunit (NapB)|unclassified	0.4327049446
+UniRef50_B4RF56: Transcriptional regulator	0.4326993545
+UniRef50_B4RF56: Transcriptional regulator|unclassified	0.4326993545
+UniRef50_UPI000366CF5B: chromosome partitioning protein ParA	0.4326246605
+UniRef50_UPI000366CF5B: chromosome partitioning protein ParA|unclassified	0.4326246605
+UniRef50_W9A1R1	0.4326202535
+UniRef50_W9A1R1|unclassified	0.4326202535
+UniRef50_F7R4Q0: CPS-53 (KpLE1) prophage deoxyribonucleoside 5'-monophosphate phosphatase domain protein	0.4326161416
+UniRef50_F7R4Q0: CPS-53 (KpLE1) prophage deoxyribonucleoside 5'-monophosphate phosphatase domain protein|unclassified	0.4326161416
+UniRef50_UPI000287B527: sugar ABC transporter permease	0.4326127749
+UniRef50_UPI000287B527: sugar ABC transporter permease|unclassified	0.4326127749
+UniRef50_UPI00037A34EB: hypothetical protein	0.4326113865
+UniRef50_UPI00037A34EB: hypothetical protein|unclassified	0.4326113865
+UniRef50_C5QUM8	0.4325984404
+UniRef50_C5QUM8|unclassified	0.4325984404
+UniRef50_E6MZF0: Type III restriction enzyme, res subunit	0.4325259516
+UniRef50_E6MZF0: Type III restriction enzyme, res subunit|g__Neisseria.s__Neisseria_meningitidis	0.4325259516
+UniRef50_V3C3P1: Transposase insH for insertion sequence element IS5I	0.4325217143
+UniRef50_V3C3P1: Transposase insH for insertion sequence element IS5I|unclassified	0.4325217143
+UniRef50_W5YCD3	0.4325079838
+UniRef50_W5YCD3|unclassified	0.4325079838
+UniRef50_W5X9T1: Capsule biosynthesis protein, putative	0.4325040357
+UniRef50_W5X9T1: Capsule biosynthesis protein, putative|unclassified	0.4325040357
+UniRef50_Q8H4N2: Putative BKRF1 encodes EBNA-1 protein, latent cycle gene	0.4324101546
+UniRef50_Q8H4N2: Putative BKRF1 encodes EBNA-1 protein, latent cycle gene|unclassified	0.4324101546
+UniRef50_Y1AQI3: Peptidase	0.4323956689
+UniRef50_Y1AQI3: Peptidase|unclassified	0.4323956689
+UniRef50_H8GX47: Transcriptional regulator, SARP family	0.4323389537
+UniRef50_H8GX47: Transcriptional regulator, SARP family|unclassified	0.4323389537
+UniRef50_Q1JFT4: Cell surface protein	0.4323389537
+UniRef50_Q1JFT4: Cell surface protein|g__Streptococcus.s__Streptococcus_agalactiae	0.4323389537
+UniRef50_J2XXF3: Penicillin-binding protein, beta-lactamase class C	0.4322949787
+UniRef50_J2XXF3: Penicillin-binding protein, beta-lactamase class C|unclassified	0.4322949787
+UniRef50_G5QL67: Colanic acid biosysnthesis protein WcaK	0.4322603871
+UniRef50_G5QL67: Colanic acid biosysnthesis protein WcaK|unclassified	0.4322603871
+UniRef50_UPI0003B566BB: hypothetical protein	0.4322428273
+UniRef50_UPI0003B566BB: hypothetical protein|unclassified	0.4322428273
+UniRef50_W5EJS4	0.4321797231
+UniRef50_W5EJS4|unclassified	0.4321797231
+UniRef50_H9ME13	0.4321785828
+UniRef50_H9ME13|unclassified	0.4321785828
+UniRef50_J3VGL2: IS element transposase	0.4321349004
+UniRef50_J3VGL2: IS element transposase|unclassified	0.4321349004
+UniRef50_D6SIG6	0.4321279467
+UniRef50_D6SIG6|unclassified	0.4321279467
+UniRef50_UPI00046F5AE1: hypothetical protein	0.4321252386
+UniRef50_UPI00046F5AE1: hypothetical protein|unclassified	0.4321252386
+UniRef50_UPI000289E1A6: Mg2+ transport protein	0.4320822571
+UniRef50_UPI000289E1A6: Mg2+ transport protein|unclassified	0.4320822571
+UniRef50_UPI0004286229: peptide ABC transporter substrate-binding protein	0.4320757250
+UniRef50_UPI0004286229: peptide ABC transporter substrate-binding protein|unclassified	0.4320757250
+UniRef50_UPI00046FF2AA: succinate dehydrogenase	0.4320696777
+UniRef50_UPI00046FF2AA: succinate dehydrogenase|unclassified	0.4320696777
+UniRef50_B2SBF0: Biotin synthase	0.4320635964
+UniRef50_B2SBF0: Biotin synthase|unclassified	0.4320635964
+UniRef50_A1IRX0	0.4320035115
+UniRef50_A1IRX0|unclassified	0.4320035115
+UniRef50_S9R5S7	0.4320016009
+UniRef50_S9R5S7|unclassified	0.4320016009
+UniRef50_B9TGM7	0.4319740487
+UniRef50_B9TGM7|unclassified	0.4319740487
+UniRef50_UPI00046EC477: hypothetical protein, partial	0.4319521515
+UniRef50_UPI00046EC477: hypothetical protein, partial|unclassified	0.4319521515
+UniRef50_UPI0003D06760: 50S ribosomal protein L11	0.4318977256
+UniRef50_UPI0003D06760: 50S ribosomal protein L11|unclassified	0.4318977256
+UniRef50_UPI0004205C32: aldo/keto reductase	0.4318959963
+UniRef50_UPI0004205C32: aldo/keto reductase|unclassified	0.4318959963
+UniRef50_G3WD35	0.4318502667
+UniRef50_G3WD35|unclassified	0.4318502667
+UniRef50_UPI0002892ADE: ABC transporter ATP-binding protein	0.4317373387
+UniRef50_UPI0002892ADE: ABC transporter ATP-binding protein|unclassified	0.4317373387
+UniRef50_L8E566	0.4317306742
+UniRef50_L8E566|unclassified	0.4317306742
+UniRef50_UPI00029B3C33: transcriptional regulator	0.4317276074
+UniRef50_UPI00029B3C33: transcriptional regulator|unclassified	0.4317276074
+UniRef50_UPI000464508F: spermidine/putrescine ABC transporter ATP-binding protein	0.4317212954
+UniRef50_UPI000464508F: spermidine/putrescine ABC transporter ATP-binding protein|unclassified	0.4317212954
+UniRef50_UPI0004694077: hypothetical protein	0.4317176006
+UniRef50_UPI0004694077: hypothetical protein|unclassified	0.4317176006
+UniRef50_E6NDD5: Thiamin biosynthesis protein	0.4316676141
+UniRef50_E6NDD5: Thiamin biosynthesis protein|unclassified	0.4316676141
+UniRef50_A0A011NEC5	0.4316611374
+UniRef50_A0A011NEC5|unclassified	0.4316611374
+UniRef50_UPI00036FAC67: hypothetical protein	0.4316569381
+UniRef50_UPI00036FAC67: hypothetical protein|unclassified	0.4316569381
+UniRef50_M0TM90	0.4316558682
+UniRef50_M0TM90|unclassified	0.4316558682
+UniRef50_UPI0002487D7B: acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha, partial	0.4316195440
+UniRef50_UPI0002487D7B: acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha, partial|unclassified	0.4316195440
+UniRef50_H1YIM3	0.4316179211
+UniRef50_H1YIM3|unclassified	0.4316179211
+UniRef50_D7A520: Tripartite ATP-independent periplasmic transporter DctQ component	0.4315668244
+UniRef50_D7A520: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.4315668244
+UniRef50_UPI00046430E5: ABC transporter ATP-binding protein	0.4315624263
+UniRef50_UPI00046430E5: ABC transporter ATP-binding protein|unclassified	0.4315624263
+UniRef50_UPI00035D3687: hypothetical protein	0.4315306196
+UniRef50_UPI00035D3687: hypothetical protein|unclassified	0.4315306196
+UniRef50_W7T589	0.4315027328
+UniRef50_W7T589|unclassified	0.4315027328
+UniRef50_UPI00036AC501: hypothetical protein	0.4314896516
+UniRef50_UPI00036AC501: hypothetical protein|unclassified	0.4314896516
+UniRef50_UPI00037468F4: tRNA-(guanine-N1)-methyltransferase	0.4314200891
+UniRef50_UPI00037468F4: tRNA-(guanine-N1)-methyltransferase|unclassified	0.4314200891
+UniRef50_G5LTC9: Chromosome initiation inhibitor (Fragment)	0.4313757440
+UniRef50_G5LTC9: Chromosome initiation inhibitor (Fragment)|unclassified	0.4313757440
+UniRef50_T4S385	0.4313407458
+UniRef50_T4S385|unclassified	0.4313407458
+UniRef50_E1NTN7	0.4313116185
+UniRef50_E1NTN7|unclassified	0.4313116185
+UniRef50_Q9WXB2: Phytoene disaturase (Fragment)	0.4312592197
+UniRef50_Q9WXB2: Phytoene disaturase (Fragment)|unclassified	0.4312592197
+UniRef50_UPI000472E3C4: hypothetical protein	0.4312549585
+UniRef50_UPI000472E3C4: hypothetical protein|unclassified	0.4312549585
+UniRef50_L7BT62: Sulfate permease	0.4312379612
+UniRef50_L7BT62: Sulfate permease|unclassified	0.4312379612
+UniRef50_UPI0002DDE806: hypothetical protein	0.4311663082
+UniRef50_UPI0002DDE806: hypothetical protein|unclassified	0.4311663082
+UniRef50_Q0VKW4: Ribosomal RNA small subunit methyltransferase G	0.4311108241
+UniRef50_Q0VKW4: Ribosomal RNA small subunit methyltransferase G|unclassified	0.4311108241
+UniRef50_UPI0002558B61: glycine cleavage system protein R	0.4311065468
+UniRef50_UPI0002558B61: glycine cleavage system protein R|unclassified	0.4311065468
+UniRef50_UPI0003EAFD31: PREDICTED: choline dehydrogenase, mitochondrial isoform X3	0.4310908906
+UniRef50_UPI0003EAFD31: PREDICTED: choline dehydrogenase, mitochondrial isoform X3|unclassified	0.4310908906
+UniRef50_UPI00035F3C2B: hypothetical protein, partial	0.4310505880
+UniRef50_UPI00035F3C2B: hypothetical protein, partial|unclassified	0.4310505880
+UniRef50_UPI000469EAA1: hypothetical protein	0.4310392369
+UniRef50_UPI000469EAA1: hypothetical protein|unclassified	0.4310392369
+UniRef50_UPI00036251D4: hypothetical protein	0.4310201896
+UniRef50_UPI00036251D4: hypothetical protein|unclassified	0.4310201896
+UniRef50_U1HDT7	0.4310191498
+UniRef50_U1HDT7|unclassified	0.4310191498
+UniRef50_Q4MHV0: Microbial collagenase	0.4309997544
+UniRef50_Q4MHV0: Microbial collagenase|unclassified	0.4309997544
+UniRef50_F2AEH2	0.4309429808
+UniRef50_F2AEH2|unclassified	0.4309429808
+UniRef50_UPI000474482D: hypothetical protein, partial	0.4309161369
+UniRef50_UPI000474482D: hypothetical protein, partial|unclassified	0.4309161369
+UniRef50_UPI00034D1F6D: C4-dicarboxylate ABC transporter	0.4308618162
+UniRef50_UPI00034D1F6D: C4-dicarboxylate ABC transporter|unclassified	0.4308618162
+UniRef50_UPI00046C4F7D: hypothetical protein	0.4308409858
+UniRef50_UPI00046C4F7D: hypothetical protein|unclassified	0.4308409858
+UniRef50_X7Z4J9: Ubiquinone oxidoreductase subunit 4	0.4308125165
+UniRef50_X7Z4J9: Ubiquinone oxidoreductase subunit 4|unclassified	0.4308125165
+UniRef50_UPI00034DB16C: hypothetical protein	0.4307727447
+UniRef50_UPI00034DB16C: hypothetical protein|unclassified	0.4307727447
+UniRef50_W0CDJ7	0.4307719265
+UniRef50_W0CDJ7|unclassified	0.4307719265
+UniRef50_UPI000472C503: hypothetical protein, partial	0.4307711728
+UniRef50_UPI000472C503: hypothetical protein, partial|unclassified	0.4307711728
+UniRef50_S9TE19: Proteophosphoglycan ppg4	0.4307576730
+UniRef50_S9TE19: Proteophosphoglycan ppg4|unclassified	0.4307576730
+UniRef50_UPI00046969A1: MerR family transcriptional regulator	0.4307515522
+UniRef50_UPI00046969A1: MerR family transcriptional regulator|unclassified	0.4307515522
+UniRef50_UPI00032A8D12: PREDICTED: HBS1-like protein-like	0.4307030863
+UniRef50_UPI00032A8D12: PREDICTED: HBS1-like protein-like|unclassified	0.4307030863
+UniRef50_UPI000400BE03: NADH:ubiquinone oxidoreductase subunit M	0.4306661024
+UniRef50_UPI000400BE03: NADH:ubiquinone oxidoreductase subunit M|unclassified	0.4306661024
+UniRef50_UPI0003663AEE: hypothetical protein, partial	0.4306652537
+UniRef50_UPI0003663AEE: hypothetical protein, partial|unclassified	0.4306652537
+UniRef50_UPI0003B7B00D: spermidine/putrescine ABC transporter ATPase	0.4306113985
+UniRef50_UPI0003B7B00D: spermidine/putrescine ABC transporter ATPase|unclassified	0.4306113985
+UniRef50_I3X451	0.4305919675
+UniRef50_I3X451|unclassified	0.4305919675
+UniRef50_U2J3Z8	0.4305544462
+UniRef50_U2J3Z8|unclassified	0.4305544462
+UniRef50_UPI0004716349: integrase	0.4305111375
+UniRef50_UPI0004716349: integrase|unclassified	0.4305111375
+UniRef50_R7G9F0	0.4305062275
+UniRef50_R7G9F0|unclassified	0.4305062275
+UniRef50_Q91TI1: T120	0.4304986685
+UniRef50_Q91TI1: T120|unclassified	0.4304986685
+UniRef50_B7VHL5: Phosphopantetheine adenylyltransferase	0.4304958368
+UniRef50_B7VHL5: Phosphopantetheine adenylyltransferase|unclassified	0.4304958368
+UniRef50_S3I2W0: Phage-related Holin protein	0.4304750336
+UniRef50_S3I2W0: Phage-related Holin protein|unclassified	0.4304750336
+UniRef50_UPI0002FC4573: hypothetical protein	0.4304656063
+UniRef50_UPI0002FC4573: hypothetical protein|unclassified	0.4304656063
+UniRef50_H0YP80	0.4304214370
+UniRef50_H0YP80|unclassified	0.4304214370
+UniRef50_I4YKM8	0.4304114213
+UniRef50_I4YKM8|unclassified	0.4304114213
+UniRef50_H9K3L9	0.4304100453
+UniRef50_H9K3L9|unclassified	0.4304100453
+UniRef50_Q7G2D1: Expressed protein	0.4303736584
+UniRef50_Q7G2D1: Expressed protein|unclassified	0.4303736584
+UniRef50_UPI0001BC2D62: putative transposase, partial	0.4303544683
+UniRef50_UPI0001BC2D62: putative transposase, partial|unclassified	0.4303544683
+UniRef50_UPI00046BA390: PREDICTED: epoxide hydrolase 3-like, partial	0.4303495666
+UniRef50_UPI00046BA390: PREDICTED: epoxide hydrolase 3-like, partial|unclassified	0.4303495666
+UniRef50_A3W5J9: Flagellar protein FlgJ, putative	0.4302191839
+UniRef50_A3W5J9: Flagellar protein FlgJ, putative|unclassified	0.4302191839
+UniRef50_B1Y2N7	0.4301687761
+UniRef50_B1Y2N7|unclassified	0.4301687761
+UniRef50_Q4L800: Thymidine kinase	0.4301088216
+UniRef50_Q4L800: Thymidine kinase|unclassified	0.4301088216
+UniRef50_UPI00047B234F: electron transfer flavoprotein subunit alpha	0.4300977651
+UniRef50_UPI00047B234F: electron transfer flavoprotein subunit alpha|unclassified	0.4300977651
+UniRef50_V9AHX5: PF12266 family protein	0.4300527504
+UniRef50_V9AHX5: PF12266 family protein|unclassified	0.4300527504
+UniRef50_UPI000467ED01: CbbX	0.4300138125
+UniRef50_UPI000467ED01: CbbX|unclassified	0.4300138125
+UniRef50_F2E297: Predicted protein (Fragment)	0.4299997840
+UniRef50_F2E297: Predicted protein (Fragment)|unclassified	0.4299997840
+UniRef50_UPI0004222757: acyl-CoA dehydrogenase	0.4299974475
+UniRef50_UPI0004222757: acyl-CoA dehydrogenase|unclassified	0.4299974475
+UniRef50_A0A024I013	0.4299903647
+UniRef50_A0A024I013|unclassified	0.4299903647
+UniRef50_T5NMZ1: Arabinose-proton symporter	0.4298910714
+UniRef50_T5NMZ1: Arabinose-proton symporter|unclassified	0.4298910714
+UniRef50_B2J1L7: GTP cyclohydrolase 1	0.4298812289
+UniRef50_B2J1L7: GTP cyclohydrolase 1|unclassified	0.4298812289
+UniRef50_UPI000345C404: peptide ABC transporter ATP-binding protein	0.4298395525
+UniRef50_UPI000345C404: peptide ABC transporter ATP-binding protein|unclassified	0.4298395525
+UniRef50_UPI000382634D: hypothetical protein	0.4297741988
+UniRef50_UPI000382634D: hypothetical protein|unclassified	0.4297741988
+UniRef50_UPI0003C140C5: PREDICTED: NAD(P) transhydrogenase, mitochondrial-like	0.4297669298
+UniRef50_UPI0003C140C5: PREDICTED: NAD(P) transhydrogenase, mitochondrial-like|unclassified	0.4297669298
+UniRef50_UPI00025593F3: chemotaxis protein	0.4297584350
+UniRef50_UPI00025593F3: chemotaxis protein|unclassified	0.4297584350
+UniRef50_W7W5P6	0.4297301284
+UniRef50_W7W5P6|unclassified	0.4297301284
+UniRef50_UPI00035E2C1F: hypothetical protein	0.4297113648
+UniRef50_UPI00035E2C1F: hypothetical protein|unclassified	0.4297113648
+UniRef50_UPI000403D548: ATP synthase F0F1 subunit delta	0.4295987912
+UniRef50_UPI000403D548: ATP synthase F0F1 subunit delta|unclassified	0.4295987912
+UniRef50_UPI00031759DA: hypothetical protein	0.4295255815
+UniRef50_UPI00031759DA: hypothetical protein|unclassified	0.4295255815
+UniRef50_A8YY03	0.4295119209
+UniRef50_A8YY03|unclassified	0.4295119209
+UniRef50_Q2RKK1: Xanthine phosphoribosyltransferase	0.4295033289
+UniRef50_Q2RKK1: Xanthine phosphoribosyltransferase|unclassified	0.4295033289
+UniRef50_UPI0004779ACB: 2Fe-2S ferredoxin	0.4294992253
+UniRef50_UPI0004779ACB: 2Fe-2S ferredoxin|unclassified	0.4294992253
+UniRef50_UPI000366AE25: hypothetical protein	0.4294802738
+UniRef50_UPI000366AE25: hypothetical protein|unclassified	0.4294802738
+UniRef50_I4XUX2	0.4294380929
+UniRef50_I4XUX2|unclassified	0.4294380929
+UniRef50_T3DHV2: Putative membrane protein	0.4293953735
+UniRef50_T3DHV2: Putative membrane protein|unclassified	0.4293953735
+UniRef50_UPI0001D090C7: M23 peptidase domain protein	0.4293838811
+UniRef50_UPI0001D090C7: M23 peptidase domain protein|unclassified	0.4293838811
+UniRef50_Q2YUG1	0.4293214050
+UniRef50_Q2YUG1|unclassified	0.4293214050
+UniRef50_I9MWA7: Amino acid permease-associated region (Fragment)	0.4292212876
+UniRef50_I9MWA7: Amino acid permease-associated region (Fragment)|unclassified	0.4292212876
+UniRef50_Q5M1U8	0.4292200858
+UniRef50_Q5M1U8|unclassified	0.4292200858
+UniRef50_Q4ZXS3: Transcriptional regulator, LuxR family	0.4291845494
+UniRef50_Q4ZXS3: Transcriptional regulator, LuxR family|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.4291845494
+UniRef50_UPI000373CDB9: hypothetical protein	0.4291453249
+UniRef50_UPI000373CDB9: hypothetical protein|unclassified	0.4291453249
+UniRef50_P45303: 2-oxoglutarate dehydrogenase E1 component	0.4291183607
+UniRef50_P45303: 2-oxoglutarate dehydrogenase E1 component|g__Acinetobacter.s__Acinetobacter_baumannii	0.4130524577
+UniRef50_P45303: 2-oxoglutarate dehydrogenase E1 component|unclassified	0.0160659031
+UniRef50_A0A037YN75	0.4291112511
+UniRef50_A0A037YN75|unclassified	0.4291112511
+UniRef50_UPI0001BF7A81: hypothetical protein SMAC_09967, partial	0.4290695149
+UniRef50_UPI0001BF7A81: hypothetical protein SMAC_09967, partial|unclassified	0.4290695149
+UniRef50_V4IPG8	0.4290385781
+UniRef50_V4IPG8|unclassified	0.4290385781
+UniRef50_A0A059E6K7	0.4290377109
+UniRef50_A0A059E6K7|unclassified	0.4290377109
+UniRef50_UPI0003FD32BF: endonuclease	0.4290021278
+UniRef50_UPI0003FD32BF: endonuclease|unclassified	0.4290021278
+UniRef50_D0UZC9: PCQ3_80	0.4289967487
+UniRef50_D0UZC9: PCQ3_80|unclassified	0.4289967487
+UniRef50_Q31GZ0: ATP phosphoribosyltransferase	0.4288350780
+UniRef50_Q31GZ0: ATP phosphoribosyltransferase|unclassified	0.4288350780
+UniRef50_Q6LPT5	0.4287824705
+UniRef50_Q6LPT5|unclassified	0.4287824705
+UniRef50_UPI0003673EC1: hypothetical protein, partial	0.4287739001
+UniRef50_UPI0003673EC1: hypothetical protein, partial|unclassified	0.4287739001
+UniRef50_UPI0003650B5B: hypothetical protein	0.4287699100
+UniRef50_UPI0003650B5B: hypothetical protein|unclassified	0.4287699100
+UniRef50_UPI0004415CC8: hypothetical protein AURDEDRAFT_187349, partial	0.4287564518
+UniRef50_UPI0004415CC8: hypothetical protein AURDEDRAFT_187349, partial|unclassified	0.4287564518
+UniRef50_C2R3V4	0.4287270384
+UniRef50_C2R3V4|unclassified	0.4287270384
+UniRef50_G8RF65	0.4287046294
+UniRef50_G8RF65|unclassified	0.4287046294
+UniRef50_UPI0001850D43: CrcB protein	0.4286754932
+UniRef50_UPI0001850D43: CrcB protein|unclassified	0.4286754932
+UniRef50_H8H606	0.4286326618
+UniRef50_H8H606|g__Helicobacter.s__Helicobacter_pylori	0.4286326618
+UniRef50_Q0HPN5: SH3, type 3 domain protein	0.4286255295
+UniRef50_Q0HPN5: SH3, type 3 domain protein|unclassified	0.4286255295
+UniRef50_K4S416	0.4285516533
+UniRef50_K4S416|unclassified	0.4285516533
+UniRef50_A4VMQ2	0.4285509224
+UniRef50_A4VMQ2|unclassified	0.4285509224
+UniRef50_D8TRV9	0.4285211555
+UniRef50_D8TRV9|unclassified	0.4285211555
+UniRef50_X2LGS5: Esterase	0.4284669204
+UniRef50_X2LGS5: Esterase|unclassified	0.4284669204
+UniRef50_UPI000469B3CF: hypothetical protein	0.4284420999
+UniRef50_UPI000469B3CF: hypothetical protein|unclassified	0.4284420999
+UniRef50_UPI00036EABAC: hypothetical protein	0.4284336304
+UniRef50_UPI00036EABAC: hypothetical protein|unclassified	0.4284336304
+UniRef50_E8NIV5	0.4284240805
+UniRef50_E8NIV5|unclassified	0.4284240805
+UniRef50_I1QER0	0.4284144366
+UniRef50_I1QER0|unclassified	0.4284144366
+UniRef50_Q9I6B7: Monofunctional biosynthetic peptidoglycan transglycosylase	0.4284110051
+UniRef50_Q9I6B7: Monofunctional biosynthetic peptidoglycan transglycosylase|unclassified	0.4284110051
+UniRef50_X1Y2F8	0.4283634674
+UniRef50_X1Y2F8|unclassified	0.4283634674
+UniRef50_X1F5C3: Marine sediment metagenome DNA, contig: S03H2_L02004 (Fragment)	0.4283247033
+UniRef50_X1F5C3: Marine sediment metagenome DNA, contig: S03H2_L02004 (Fragment)|unclassified	0.4283247033
+UniRef50_UPI00045EBB84: hypothetical protein	0.4282686182
+UniRef50_UPI00045EBB84: hypothetical protein|unclassified	0.4282686182
+UniRef50_UPI000375A5E5: hypothetical protein	0.4282443285
+UniRef50_UPI000375A5E5: hypothetical protein|unclassified	0.4282443285
+UniRef50_M7XR15	0.4281556492
+UniRef50_M7XR15|unclassified	0.4281556492
+UniRef50_B4REX9: UPF0301 protein PHZ_c0553	0.4281544566
+UniRef50_B4REX9: UPF0301 protein PHZ_c0553|unclassified	0.4281544566
+UniRef50_B8D8U8: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	0.4281525361
+UniRef50_B8D8U8: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.4281525361
+UniRef50_M9VCX6	0.4281519871
+UniRef50_M9VCX6|unclassified	0.4281519871
+UniRef50_F2IXX0	0.4280984852
+UniRef50_F2IXX0|unclassified	0.4280984852
+UniRef50_Q139L3	0.4280448671
+UniRef50_Q139L3|unclassified	0.4280448671
+UniRef50_I6BJJ4	0.4280063257
+UniRef50_I6BJJ4|unclassified	0.4280063257
+UniRef50_UPI0003B5E2D0: hypothetical protein	0.4280054017
+UniRef50_UPI0003B5E2D0: hypothetical protein|unclassified	0.4280054017
+UniRef50_Q9KFF1: Serine-protein kinase RsbW	0.4279178456
+UniRef50_Q9KFF1: Serine-protein kinase RsbW|unclassified	0.4279178456
+UniRef50_H8GU51	0.4279172774
+UniRef50_H8GU51|unclassified	0.4279172774
+UniRef50_J9P5H2	0.4279149717
+UniRef50_J9P5H2|unclassified	0.4279149717
+UniRef50_G2ZGH2: Gyrase B (Fragment)	0.4277192354
+UniRef50_G2ZGH2: Gyrase B (Fragment)|unclassified	0.4277192354
+UniRef50_X1Y0Y0	0.4276781052
+UniRef50_X1Y0Y0|unclassified	0.4276781052
+UniRef50_K2DSW0	0.4276634194
+UniRef50_K2DSW0|unclassified	0.4276634194
+UniRef50_UPI00046EFF25: hypothetical protein	0.4276403972
+UniRef50_UPI00046EFF25: hypothetical protein|unclassified	0.4276403972
+UniRef50_G5RAU3: Protein ImpG/VasA	0.4275791227
+UniRef50_G5RAU3: Protein ImpG/VasA|unclassified	0.4275791227
+UniRef50_UPI00036F0C0F: MULTISPECIES: hypothetical protein	0.4275681082
+UniRef50_UPI00036F0C0F: MULTISPECIES: hypothetical protein|unclassified	0.4275681082
+UniRef50_F0PT30: Endopeptidase lytE, putative	0.4275243714
+UniRef50_F0PT30: Endopeptidase lytE, putative|unclassified	0.4275243714
+UniRef50_X1SN69: Marine sediment metagenome DNA, contig: S12H4_S01015 (Fragment)	0.4275066177
+UniRef50_X1SN69: Marine sediment metagenome DNA, contig: S12H4_S01015 (Fragment)|unclassified	0.4275066177
+UniRef50_U1GPZ4: Branched-chain amino acid transport system substrate-binding protein (Fragment)	0.4274982387
+UniRef50_U1GPZ4: Branched-chain amino acid transport system substrate-binding protein (Fragment)|unclassified	0.4274982387
+UniRef50_UPI000262FEE3: bifunctional carbohydrate binding and transport protein	0.4274845486
+UniRef50_UPI000262FEE3: bifunctional carbohydrate binding and transport protein|unclassified	0.4274845486
+UniRef50_UPI00046A7CBA: S-adenosylmethionine-binding protein	0.4274510581
+UniRef50_UPI00046A7CBA: S-adenosylmethionine-binding protein|unclassified	0.4274510581
+UniRef50_C4UEK6: ISxcd1 transposase	0.4274277071
+UniRef50_C4UEK6: ISxcd1 transposase|unclassified	0.4274277071
+UniRef50_W7VKF8	0.4274193075
+UniRef50_W7VKF8|unclassified	0.4274193075
+UniRef50_UPI00046A8FC9: hypothetical protein, partial	0.4273846992
+UniRef50_UPI00046A8FC9: hypothetical protein, partial|unclassified	0.4273846992
+UniRef50_J8V9A2	0.4273261737
+UniRef50_J8V9A2|unclassified	0.4273261737
+UniRef50_D8HI39	0.4273219998
+UniRef50_D8HI39|unclassified	0.4273219998
+UniRef50_W4SNT3	0.4273119766
+UniRef50_W4SNT3|unclassified	0.4273119766
+UniRef50_UPI000366C9FA: hypothetical protein, partial	0.4272900813
+UniRef50_UPI000366C9FA: hypothetical protein, partial|unclassified	0.4272900813
+UniRef50_UPI0004785809: hypothetical protein	0.4272632299
+UniRef50_UPI0004785809: hypothetical protein|unclassified	0.4272632299
+UniRef50_A0A023LK87	0.4272242576
+UniRef50_A0A023LK87|unclassified	0.4272242576
+UniRef50_F3GJB3	0.4271023149
+UniRef50_F3GJB3|unclassified	0.4271023149
+UniRef50_D6SC84	0.4270500851
+UniRef50_D6SC84|unclassified	0.4270500851
+UniRef50_G4LQH6	0.4270346277
+UniRef50_G4LQH6|unclassified	0.4270346277
+UniRef50_D0WHH7	0.4270258359
+UniRef50_D0WHH7|unclassified	0.4270258359
+UniRef50_M9WAI6	0.4269505522
+UniRef50_M9WAI6|unclassified	0.4269505522
+UniRef50_B2S968: Shikimate dehydrogenase	0.4269189384
+UniRef50_B2S968: Shikimate dehydrogenase|unclassified	0.4269189384
+UniRef50_P22513: Glyceraldehyde-3-phosphate dehydrogenase, glycosomal	0.4268683181
+UniRef50_P22513: Glyceraldehyde-3-phosphate dehydrogenase, glycosomal|unclassified	0.4268683181
+UniRef50_U3K7T2	0.4268387962
+UniRef50_U3K7T2|unclassified	0.4268387962
+UniRef50_A1WST0: Aldehyde oxidase and xanthine dehydrogenase, molybdopterin binding	0.4268032437
+UniRef50_A1WST0: Aldehyde oxidase and xanthine dehydrogenase, molybdopterin binding|g__Acinetobacter.s__Acinetobacter_baumannii	0.4268032437
+UniRef50_UPI0002F208E2: hypothetical protein	0.4267575141
+UniRef50_UPI0002F208E2: hypothetical protein|unclassified	0.4267575141
+UniRef50_X0U2P0: Marine sediment metagenome DNA, contig: S01H1_S12797 (Fragment)	0.4267328432
+UniRef50_X0U2P0: Marine sediment metagenome DNA, contig: S01H1_S12797 (Fragment)|unclassified	0.4267328432
+UniRef50_M0YT93	0.4266712542
+UniRef50_M0YT93|unclassified	0.4266712542
+UniRef50_Q75J32	0.4266211437
+UniRef50_Q75J32|unclassified	0.4266211437
+UniRef50_W9VVL3	0.4266075940
+UniRef50_W9VVL3|unclassified	0.4266075940
+UniRef50_B8HK09	0.4265748471
+UniRef50_B8HK09|unclassified	0.4265748471
+UniRef50_UPI00047C50CE: hemolysin-type calcium-binding protein	0.4265493516
+UniRef50_UPI00047C50CE: hemolysin-type calcium-binding protein|unclassified	0.4265493516
+UniRef50_T0BQ12	0.4264596501
+UniRef50_T0BQ12|unclassified	0.4264596501
+UniRef50_Q8R9W1: Acyl carrier protein	0.4264401493
+UniRef50_Q8R9W1: Acyl carrier protein|unclassified	0.4264401493
+UniRef50_UPI000462CD7C: cystathionine gamma-synthase, partial	0.4264202971
+UniRef50_UPI000462CD7C: cystathionine gamma-synthase, partial|unclassified	0.4264202971
+UniRef50_UPI0004658AD9: saccharopine dehydrogenase	0.4264092102
+UniRef50_UPI0004658AD9: saccharopine dehydrogenase|unclassified	0.4264092102
+UniRef50_P17057: Protein CrtK	0.4264090434
+UniRef50_P17057: Protein CrtK|unclassified	0.4264090434
+UniRef50_UPI00046874E5: hypothetical protein	0.4263865171
+UniRef50_UPI00046874E5: hypothetical protein|unclassified	0.4263865171
+UniRef50_Q45493: Ribonuclease J1	0.4262198134
+UniRef50_Q45493: Ribonuclease J1|unclassified	0.4262198134
+UniRef50_B9K4B7: Transcriptional regulator AraC family	0.4261360160
+UniRef50_B9K4B7: Transcriptional regulator AraC family|unclassified	0.4261360160
+UniRef50_V6JTT6: Membrane protein	0.4261340790
+UniRef50_V6JTT6: Membrane protein|unclassified	0.4261340790
+UniRef50_R8S0A7	0.4260463553
+UniRef50_R8S0A7|unclassified	0.4260463553
+UniRef50_UPI0002B46D01	0.4260439398
+UniRef50_UPI0002B46D01|unclassified	0.4260439398
+UniRef50_UPI00037FF2E2: Membrane-bound lytic murein transglycosylase	0.4260102251
+UniRef50_UPI00037FF2E2: Membrane-bound lytic murein transglycosylase|unclassified	0.4260102251
+UniRef50_UPI0001E896F4: hypothetical protein	0.4259924586
+UniRef50_UPI0001E896F4: hypothetical protein|unclassified	0.4259924586
+UniRef50_UPI00034B7D6C: hypothetical protein	0.4259840408
+UniRef50_UPI00034B7D6C: hypothetical protein|unclassified	0.4259840408
+UniRef50_P94909	0.4259461283
+UniRef50_P94909|unclassified	0.4259461283
+UniRef50_R7I7J2: General stress protein 14	0.4259318774
+UniRef50_R7I7J2: General stress protein 14|unclassified	0.4259318774
+UniRef50_I6ABZ2: Isrso9-transposase protein	0.4259041699
+UniRef50_I6ABZ2: Isrso9-transposase protein|unclassified	0.4259041699
+UniRef50_D6ZD78	0.4259000382
+UniRef50_D6ZD78|unclassified	0.4259000382
+UniRef50_UPI00036BDB00: metalloprotease	0.4258348631
+UniRef50_UPI00036BDB00: metalloprotease|unclassified	0.4258348631
+UniRef50_UPI0000166B82: hypothetical protein	0.4258039073
+UniRef50_UPI0000166B82: hypothetical protein|unclassified	0.4258039073
+UniRef50_F0GIZ8: HlyD family secretion protein (Fragment)	0.4257949321
+UniRef50_F0GIZ8: HlyD family secretion protein (Fragment)|unclassified	0.4257949321
+UniRef50_UPI0003748BCC: 30S ribosomal protein S17	0.4257896612
+UniRef50_UPI0003748BCC: 30S ribosomal protein S17|unclassified	0.4257896612
+UniRef50_Q5Z4S7	0.4257496543
+UniRef50_Q5Z4S7|unclassified	0.4257496543
+UniRef50_UPI00034D9A84: hypothetical protein	0.4257407188
+UniRef50_UPI00034D9A84: hypothetical protein|unclassified	0.4257407188
+UniRef50_F0C5M3	0.4257376433
+UniRef50_F0C5M3|unclassified	0.4257376433
+UniRef50_N6VD09	0.4257198964
+UniRef50_N6VD09|unclassified	0.4257198964
+UniRef50_F3CG13	0.4257079339
+UniRef50_F3CG13|unclassified	0.4257079339
+UniRef50_A0A034TM16: YgfY protein	0.4256718774
+UniRef50_A0A034TM16: YgfY protein|unclassified	0.4256718774
+UniRef50_UPI0004757A78: replication initiation protein RepC	0.4256698927
+UniRef50_UPI0004757A78: replication initiation protein RepC|unclassified	0.4256698927
+UniRef50_UPI00047856FC: hypothetical protein	0.4256680659
+UniRef50_UPI00047856FC: hypothetical protein|unclassified	0.4256680659
+UniRef50_W7CP74	0.4255579359
+UniRef50_W7CP74|unclassified	0.4255579359
+UniRef50_UPI000367E778: hypothetical protein	0.4255323890
+UniRef50_UPI000367E778: hypothetical protein|unclassified	0.4255323890
+UniRef50_I9CB55	0.4255228559
+UniRef50_I9CB55|unclassified	0.4255228559
+UniRef50_B4D594	0.4254911048
+UniRef50_B4D594|unclassified	0.4254911048
+UniRef50_K0P043: UPF0260 protein Sfri_1740	0.4254015901
+UniRef50_K0P043: UPF0260 protein Sfri_1740|unclassified	0.4254015901
+UniRef50_UPI0003725E3A: hypothetical protein	0.4253472310
+UniRef50_UPI0003725E3A: hypothetical protein|unclassified	0.4253472310
+UniRef50_G5KKT0	0.4253023095
+UniRef50_G5KKT0|unclassified	0.4253023095
+UniRef50_K0HAB0: Sel1 repeat protein	0.4252898224
+UniRef50_K0HAB0: Sel1 repeat protein|unclassified	0.4252898224
+UniRef50_E1M5D3: NIF3 family protein	0.4252764288
+UniRef50_E1M5D3: NIF3 family protein|unclassified	0.4252764288
+UniRef50_UPI00047D8829: erythrose 4-phosphate dehydrogenase	0.4252594936
+UniRef50_UPI00047D8829: erythrose 4-phosphate dehydrogenase|unclassified	0.4252594936
+UniRef50_A0A031W8S5	0.4252364173
+UniRef50_A0A031W8S5|unclassified	0.4252364173
+UniRef50_M2B5D6: mRNA 3'-end processing factor	0.4252212143
+UniRef50_M2B5D6: mRNA 3'-end processing factor|unclassified	0.4252212143
+UniRef50_H2TTU3	0.4252069841
+UniRef50_H2TTU3|unclassified	0.4252069841
+UniRef50_UPI00042857FF: exodeoxyribonuclease III	0.4251748747
+UniRef50_UPI00042857FF: exodeoxyribonuclease III|unclassified	0.4251748747
+UniRef50_UPI00028806CE: elongation factor 3	0.4251735068
+UniRef50_UPI00028806CE: elongation factor 3|unclassified	0.4251735068
+UniRef50_K8AVN4: Maltose regulon regulatory protein MalI (repressor for malXY)	0.4251580244
+UniRef50_K8AVN4: Maltose regulon regulatory protein MalI (repressor for malXY)|unclassified	0.4251580244
+UniRef50_UPI00046E8FB5: hypothetical protein, partial	0.4250422546
+UniRef50_UPI00046E8FB5: hypothetical protein, partial|unclassified	0.4250422546
+UniRef50_W5X6U2: Glycoside hydrolase family 28	0.4250180290
+UniRef50_W5X6U2: Glycoside hydrolase family 28|unclassified	0.4250180290
+UniRef50_UPI0003B4AD3C: hypothetical protein	0.4250126836
+UniRef50_UPI0003B4AD3C: hypothetical protein|unclassified	0.4250126836
+UniRef50_X2M3Y1	0.4250093147
+UniRef50_X2M3Y1|unclassified	0.4250093147
+UniRef50_UPI0003EB1F9A: hypothetical protein	0.4249214917
+UniRef50_UPI0003EB1F9A: hypothetical protein|unclassified	0.4249214917
+UniRef50_I2S4N7: Cyanate transport protein CynX family protein	0.4249141306
+UniRef50_I2S4N7: Cyanate transport protein CynX family protein|unclassified	0.4249141306
+UniRef50_K8C533: 2-ketogluconate transporter	0.4248695070
+UniRef50_K8C533: 2-ketogluconate transporter|unclassified	0.4248695070
+UniRef50_G8RMA1: Cysteine synthase	0.4248445541
+UniRef50_G8RMA1: Cysteine synthase|unclassified	0.4248445541
+UniRef50_E3ZI98: YkoS	0.4248171910
+UniRef50_E3ZI98: YkoS|unclassified	0.4248171910
+UniRef50_Q9ZHE3: Imidazole glycerol phosphate synthase subunit HisH	0.4248150290
+UniRef50_Q9ZHE3: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.4248150290
+UniRef50_W5NRM0	0.4248095473
+UniRef50_W5NRM0|unclassified	0.4248095473
+UniRef50_P11502: Lactose-specific phosphotransferase enzyme IIA component	0.4248089639
+UniRef50_P11502: Lactose-specific phosphotransferase enzyme IIA component|unclassified	0.4248089639
+UniRef50_UPI0004720892: homoserine O-succinyltransferase, partial	0.4247817018
+UniRef50_UPI0004720892: homoserine O-succinyltransferase, partial|unclassified	0.4247817018
+UniRef50_A4EKP5	0.4247628032
+UniRef50_A4EKP5|unclassified	0.4247628032
+UniRef50_UPI00046F415B: hypothetical protein	0.4247311911
+UniRef50_UPI00046F415B: hypothetical protein|unclassified	0.4247311911
+UniRef50_E0WRG0: Paraquat-inducible protein B	0.4246941670
+UniRef50_E0WRG0: Paraquat-inducible protein B|unclassified	0.4246941670
+UniRef50_U2Z7X0: Gene Transfer Agent tail tape measure	0.4246502355
+UniRef50_U2Z7X0: Gene Transfer Agent tail tape measure|unclassified	0.4246502355
+UniRef50_UPI000377F527: hypothetical protein	0.4246392629
+UniRef50_UPI000377F527: hypothetical protein|unclassified	0.4246392629
+UniRef50_UPI00037FF715: hypothetical protein, partial	0.4246019710
+UniRef50_UPI00037FF715: hypothetical protein, partial|unclassified	0.4246019710
+UniRef50_Q9RYY7	0.4245830526
+UniRef50_Q9RYY7|g__Deinococcus.s__Deinococcus_radiodurans	0.4245830526
+UniRef50_UPI0003B5EAE5: branched-chain amino acid ABC transporter permease	0.4245505619
+UniRef50_UPI0003B5EAE5: branched-chain amino acid ABC transporter permease|unclassified	0.4245505619
+UniRef50_UPI0002888C31: HupE-UreJ family metal transporter	0.4245372580
+UniRef50_UPI0002888C31: HupE-UreJ family metal transporter|unclassified	0.4245372580
+UniRef50_S9R2M9	0.4245273362
+UniRef50_S9R2M9|unclassified	0.4245273362
+UniRef50_A3QD67: Putative phosphoenolpyruvate synthase regulatory protein	0.4244778109
+UniRef50_A3QD67: Putative phosphoenolpyruvate synthase regulatory protein|unclassified	0.4244778109
+UniRef50_Q0FEK0	0.4244307421
+UniRef50_Q0FEK0|unclassified	0.4244307421
+UniRef50_UPI00045D7D5A: PREDICTED: dapper homolog 3-like	0.4244038356
+UniRef50_UPI00045D7D5A: PREDICTED: dapper homolog 3-like|unclassified	0.4244038356
+UniRef50_UPI0004709025: hypothetical protein	0.4243793474
+UniRef50_UPI0004709025: hypothetical protein|unclassified	0.4243793474
+UniRef50_UPI00046D4301: hypothetical protein	0.4243492414
+UniRef50_UPI00046D4301: hypothetical protein|unclassified	0.4243492414
+UniRef50_R0QJ92: Dicarboxylate symporter family protein	0.4242681375
+UniRef50_R0QJ92: Dicarboxylate symporter family protein|g__Neisseria.s__Neisseria_meningitidis	0.4242681375
+UniRef50_UPI00037C1446: hypothetical protein	0.4242307870
+UniRef50_UPI00037C1446: hypothetical protein|unclassified	0.4242307870
+UniRef50_Q2G4D3: UPF0260 protein Saro_2854	0.4241614699
+UniRef50_Q2G4D3: UPF0260 protein Saro_2854|unclassified	0.4241614699
+UniRef50_UPI000360EBF1: hypothetical protein	0.4241464287
+UniRef50_UPI000360EBF1: hypothetical protein|unclassified	0.4241464287
+UniRef50_B2JCQ7: Adenine phosphoribosyltransferase	0.4241272182
+UniRef50_B2JCQ7: Adenine phosphoribosyltransferase|unclassified	0.4241272182
+UniRef50_UPI0004133C21: multidrug MFS transporter	0.4241133041
+UniRef50_UPI0004133C21: multidrug MFS transporter|unclassified	0.4241133041
+UniRef50_E4NIV5	0.4240810577
+UniRef50_E4NIV5|unclassified	0.4240810577
+UniRef50_B3PTL5	0.4240650773
+UniRef50_B3PTL5|unclassified	0.4240650773
+UniRef50_M4KA67	0.4240082782
+UniRef50_M4KA67|unclassified	0.4240082782
+UniRef50_C1D381	0.4239977181
+UniRef50_C1D381|unclassified	0.4239977181
+UniRef50_Q5F6T9	0.4239774603
+UniRef50_Q5F6T9|unclassified	0.4239774603
+UniRef50_A0A059LAL2	0.4239417051
+UniRef50_A0A059LAL2|unclassified	0.4239417051
+UniRef50_UPI000427F61C: O-acetylhomoserine aminocarboxypropyltransferase	0.4239380776
+UniRef50_UPI000427F61C: O-acetylhomoserine aminocarboxypropyltransferase|unclassified	0.4239380776
+UniRef50_UPI0002886D14: ATPase AAA	0.4239248545
+UniRef50_UPI0002886D14: ATPase AAA|unclassified	0.4239248545
+UniRef50_F3CD46: Monofunctional biosynthetic peptidoglycan transglycosylase (Fragment)	0.4238960512
+UniRef50_F3CD46: Monofunctional biosynthetic peptidoglycan transglycosylase (Fragment)|unclassified	0.4238960512
+UniRef50_G8LJ26: YhhA	0.4238935042
+UniRef50_G8LJ26: YhhA|unclassified	0.4238935042
+UniRef50_T1C4J3: Protein containing DUF28	0.4238928440
+UniRef50_T1C4J3: Protein containing DUF28|unclassified	0.4238928440
+UniRef50_L2V487	0.4238593868
+UniRef50_L2V487|unclassified	0.4238593868
+UniRef50_UPI00047449C1: hypothetical protein, partial	0.4238414012
+UniRef50_UPI00047449C1: hypothetical protein, partial|unclassified	0.4238414012
+UniRef50_F9RVL2	0.4238350761
+UniRef50_F9RVL2|unclassified	0.4238350761
+UniRef50_UPI00047A9CE7: luciferase	0.4238099960
+UniRef50_UPI00047A9CE7: luciferase|unclassified	0.4238099960
+UniRef50_UPI000225FE01: alpha-ketoglutarate-dependent dioxygenase AlkB, partial	0.4238064172
+UniRef50_UPI000225FE01: alpha-ketoglutarate-dependent dioxygenase AlkB, partial|unclassified	0.4238064172
+UniRef50_C1I079: Predicted protein	0.4237549114
+UniRef50_C1I079: Predicted protein|unclassified	0.4237549114
+UniRef50_G5PKT0: Formate transporter	0.4236901574
+UniRef50_G5PKT0: Formate transporter|unclassified	0.4236901574
+UniRef50_UPI00046CA1AA: hypothetical protein	0.4236851398
+UniRef50_UPI00046CA1AA: hypothetical protein|unclassified	0.4236851398
+UniRef50_UPI0002559756: ABC transporter ATP-binding protein	0.4236462246
+UniRef50_UPI0002559756: ABC transporter ATP-binding protein|unclassified	0.4236462246
+UniRef50_D9WU07: Putative vgr-related protein	0.4236128228
+UniRef50_D9WU07: Putative vgr-related protein|unclassified	0.4236128228
+UniRef50_Q0FFS0	0.4235957255
+UniRef50_Q0FFS0|unclassified	0.4235957255
+UniRef50_Q65ME6: YfjM	0.4235704779
+UniRef50_Q65ME6: YfjM|unclassified	0.4235704779
+UniRef50_M3GUG0	0.4235584779
+UniRef50_M3GUG0|unclassified	0.4235584779
+UniRef50_Q65I56: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.4235538112
+UniRef50_Q65I56: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.4235538112
+UniRef50_Q2CG36: TRAP transporter, DctM subunit	0.4235258828
+UniRef50_Q2CG36: TRAP transporter, DctM subunit|unclassified	0.4235258828
+UniRef50_UPI000361E930: MULTISPECIES: cold-shock protein	0.4234796081
+UniRef50_UPI000361E930: MULTISPECIES: cold-shock protein|unclassified	0.4234796081
+UniRef50_UPI0002E392B5: hypothetical protein	0.4234429439
+UniRef50_UPI0002E392B5: hypothetical protein|unclassified	0.4234429439
+UniRef50_Q2FAC6: Rh176	0.4233313321
+UniRef50_Q2FAC6: Rh176|unclassified	0.4233313321
+UniRef50_I2BU82: GIY-YIG catalytic domain protein	0.4233251582
+UniRef50_I2BU82: GIY-YIG catalytic domain protein|unclassified	0.4233251582
+UniRef50_R0NCN6: Transporter	0.4232735532
+UniRef50_R0NCN6: Transporter|unclassified	0.4232735532
+UniRef50_B1LY91: NnrUfamily protein	0.4232597396
+UniRef50_B1LY91: NnrUfamily protein|unclassified	0.4232597396
+UniRef50_UPI00035FCD3A: hypothetical protein, partial	0.4232584641
+UniRef50_UPI00035FCD3A: hypothetical protein, partial|unclassified	0.4232584641
+UniRef50_T0HYB4	0.4232548332
+UniRef50_T0HYB4|unclassified	0.4232548332
+UniRef50_J7QF99	0.4231551270
+UniRef50_J7QF99|unclassified	0.4231551270
+UniRef50_Q87MG2: Ribonuclease HI	0.4231487791
+UniRef50_Q87MG2: Ribonuclease HI|unclassified	0.4231487791
+UniRef50_UPI0003484775: hypothetical protein	0.4231336280
+UniRef50_UPI0003484775: hypothetical protein|unclassified	0.4231336280
+UniRef50_Q7NM67: Ribose-phosphate pyrophosphokinase	0.4231331741
+UniRef50_Q7NM67: Ribose-phosphate pyrophosphokinase|unclassified	0.4231331741
+UniRef50_O86013: 4-hydroxy-2-oxovalerate aldolase	0.4230412204
+UniRef50_O86013: 4-hydroxy-2-oxovalerate aldolase|unclassified	0.4230412204
+UniRef50_UPI00035DD825: 50S ribosomal protein L27	0.4230145355
+UniRef50_UPI00035DD825: 50S ribosomal protein L27|unclassified	0.4230145355
+UniRef50_UPI0001E898D9: sun protein	0.4230133028
+UniRef50_UPI0001E898D9: sun protein|unclassified	0.4230133028
+UniRef50_N6DL92	0.4229615678
+UniRef50_N6DL92|unclassified	0.4229615678
+UniRef50_UPI000402B9E3: methionyl-tRNA formyltransferase	0.4229489852
+UniRef50_UPI000402B9E3: methionyl-tRNA formyltransferase|unclassified	0.4229489852
+UniRef50_I3YBQ0	0.4229461283
+UniRef50_I3YBQ0|unclassified	0.4229461283
+UniRef50_V2MDX8: Putrescine transporter subunit: membrane component of ABC superfamily	0.4229356968
+UniRef50_V2MDX8: Putrescine transporter subunit: membrane component of ABC superfamily|unclassified	0.4229356968
+UniRef50_R4M6A1	0.4229210453
+UniRef50_R4M6A1|unclassified	0.4229210453
+UniRef50_V6P8R3: Fused predicted pyruvate-flavodoxin oxidoreductase: conserved protein/conserved protein/FeS binding protein (Fragment)	0.4229074546
+UniRef50_V6P8R3: Fused predicted pyruvate-flavodoxin oxidoreductase: conserved protein/conserved protein/FeS binding protein (Fragment)|unclassified	0.4229074546
+UniRef50_B4K4Q3: GI23004	0.4228843732
+UniRef50_B4K4Q3: GI23004|unclassified	0.4228843732
+UniRef50_U2Z3W3	0.4228825310
+UniRef50_U2Z3W3|unclassified	0.4228825310
+UniRef50_R4LLL8	0.4228747029
+UniRef50_R4LLL8|unclassified	0.4228747029
+UniRef50_X1ARE0: Marine sediment metagenome DNA, contig: S01H4_L07030 (Fragment)	0.4228472874
+UniRef50_X1ARE0: Marine sediment metagenome DNA, contig: S01H4_L07030 (Fragment)|unclassified	0.4228472874
+UniRef50_UPI000346CEE2: hypothetical protein	0.4228467707
+UniRef50_UPI000346CEE2: hypothetical protein|unclassified	0.4228467707
+UniRef50_W6L7L8: Genomic scaffold, scaffold_5	0.4228329810
+UniRef50_W6L7L8: Genomic scaffold, scaffold_5|unclassified	0.4228329810
+UniRef50_UPI0004110DD3: hypothetical protein	0.4228072631
+UniRef50_UPI0004110DD3: hypothetical protein|unclassified	0.4228072631
+UniRef50_UPI0004649A94: hypothetical protein	0.4227836119
+UniRef50_UPI0004649A94: hypothetical protein|unclassified	0.4227836119
+UniRef50_UPI000465B5D1: hypothetical protein	0.4227525566
+UniRef50_UPI000465B5D1: hypothetical protein|unclassified	0.4227525566
+UniRef50_UPI000479FF2D: hypothetical protein	0.4227458813
+UniRef50_UPI000479FF2D: hypothetical protein|unclassified	0.4227458813
+UniRef50_C0BFU0	0.4226862975
+UniRef50_C0BFU0|unclassified	0.4226862975
+UniRef50_A4MZK9: Heat shock protein	0.4226459719
+UniRef50_A4MZK9: Heat shock protein|unclassified	0.4226459719
+UniRef50_Q2SE13	0.4226253533
+UniRef50_Q2SE13|unclassified	0.4226253533
+UniRef50_E6CCB2	0.4226184191
+UniRef50_E6CCB2|unclassified	0.4226184191
+UniRef50_UPI0002376FCC: putative D-amino acid dehydrogenase small subunit, partial	0.4226126531
+UniRef50_UPI0002376FCC: putative D-amino acid dehydrogenase small subunit, partial|unclassified	0.4226126531
+UniRef50_S6UZG9: Pyrroloquinoline quinone biosynthesis protein PqqB	0.4225740787
+UniRef50_S6UZG9: Pyrroloquinoline quinone biosynthesis protein PqqB|unclassified	0.4225740787
+UniRef50_B8HGC5: Acetylglutamate kinase	0.4225738738
+UniRef50_B8HGC5: Acetylglutamate kinase|unclassified	0.4225738738
+UniRef50_UPI00029A372D: 50S ribosomal protein L21	0.4225329603
+UniRef50_UPI00029A372D: 50S ribosomal protein L21|unclassified	0.4225329603
+UniRef50_I0KW21: Aldo/keto reductase	0.4224641292
+UniRef50_I0KW21: Aldo/keto reductase|unclassified	0.4224641292
+UniRef50_U1BJC9	0.4224450629
+UniRef50_U1BJC9|unclassified	0.4224450629
+UniRef50_V1ID35: Peptidase PmbA	0.4224288303
+UniRef50_V1ID35: Peptidase PmbA|unclassified	0.4224288303
+UniRef50_UPI00039576B2: PREDICTED: 39S ribosomal protein L2, mitochondrial	0.4223930826
+UniRef50_UPI00039576B2: PREDICTED: 39S ribosomal protein L2, mitochondrial|unclassified	0.4223930826
+UniRef50_Q8YBL2: GMP synthase [glutamine-hydrolyzing]	0.4223489937
+UniRef50_Q8YBL2: GMP synthase [glutamine-hydrolyzing]|unclassified	0.4223489937
+UniRef50_UPI00024907AC: sugar ABC transporterATPase	0.4223421445
+UniRef50_UPI00024907AC: sugar ABC transporterATPase|unclassified	0.4223421445
+UniRef50_G2QAW8	0.4222972973
+UniRef50_G2QAW8|unclassified	0.4222972973
+UniRef50_V4QZ53	0.4222514481
+UniRef50_V4QZ53|unclassified	0.4222514481
+UniRef50_X6L5V7	0.4221466977
+UniRef50_X6L5V7|unclassified	0.4221466977
+UniRef50_Q8CP00: Truncated transposase	0.4221021092
+UniRef50_Q8CP00: Truncated transposase|unclassified	0.4221021092
+UniRef50_Q03PS7: Predicted membrane protein	0.4220893263
+UniRef50_Q03PS7: Predicted membrane protein|unclassified	0.4220893263
+UniRef50_UPI00035D739B: hypothetical protein	0.4220814252
+UniRef50_UPI00035D739B: hypothetical protein|unclassified	0.4220814252
+UniRef50_UPI00047E106F: cytochrome C	0.4220812425
+UniRef50_UPI00047E106F: cytochrome C|unclassified	0.4220812425
+UniRef50_Q2T960: Transposase	0.4220689864
+UniRef50_Q2T960: Transposase|unclassified	0.4220689864
+UniRef50_F3MGL1: Aspartate-semialdehyde dehydrogenase domain protein	0.4220569109
+UniRef50_F3MGL1: Aspartate-semialdehyde dehydrogenase domain protein|unclassified	0.4220569109
+UniRef50_K2FH00	0.4220560304
+UniRef50_K2FH00|unclassified	0.4220560304
+UniRef50_A3SCG4: Sarcosine oxidase, gamma subunit family protein	0.4220231065
+UniRef50_A3SCG4: Sarcosine oxidase, gamma subunit family protein|unclassified	0.4220231065
+UniRef50_A0A011PJN8	0.4220029279
+UniRef50_A0A011PJN8|unclassified	0.4220029279
+UniRef50_M2R459	0.4219909499
+UniRef50_M2R459|unclassified	0.4219909499
+UniRef50_D3NU43: Tripartite ATP-independent periplasmic transporter	0.4219629975
+UniRef50_D3NU43: Tripartite ATP-independent periplasmic transporter|unclassified	0.4219629975
+UniRef50_I8QU08	0.4219597827
+UniRef50_I8QU08|unclassified	0.4219597827
+UniRef50_UPI0004631655: MerR family transcriptional regulator	0.4219273647
+UniRef50_UPI0004631655: MerR family transcriptional regulator|unclassified	0.4219273647
+UniRef50_UPI00036F7C7E: hypothetical protein	0.4219046087
+UniRef50_UPI00036F7C7E: hypothetical protein|unclassified	0.4219046087
+UniRef50_UPI000472A879: carbohydrate kinase	0.4218637331
+UniRef50_UPI000472A879: carbohydrate kinase|unclassified	0.4218637331
+UniRef50_B6IPD9	0.4218503342
+UniRef50_B6IPD9|unclassified	0.4218503342
+UniRef50_A0A017HIG9	0.4218332324
+UniRef50_A0A017HIG9|unclassified	0.4218332324
+UniRef50_Q8XXJ7: 5-hydroxyisourate hydrolase	0.4218094241
+UniRef50_Q8XXJ7: 5-hydroxyisourate hydrolase|unclassified	0.4218094241
+UniRef50_E0TC03	0.4217744544
+UniRef50_E0TC03|unclassified	0.4217744544
+UniRef50_Q7NVW9	0.4217110720
+UniRef50_Q7NVW9|unclassified	0.4217110720
+UniRef50_P64632	0.4216430364
+UniRef50_P64632|unclassified	0.4216430364
+UniRef50_UPI00036BCED8: hypothetical protein, partial	0.4215510613
+UniRef50_UPI00036BCED8: hypothetical protein, partial|unclassified	0.4215510613
+UniRef50_F7WET4	0.4215103636
+UniRef50_F7WET4|unclassified	0.4215103636
+UniRef50_UPI0003814F39: hypothetical protein	0.4214899632
+UniRef50_UPI0003814F39: hypothetical protein|unclassified	0.4214899632
+UniRef50_G8M581	0.4214810425
+UniRef50_G8M581|unclassified	0.4214810425
+UniRef50_UPI0003EB470B: hypothetical protein	0.4214568218
+UniRef50_UPI0003EB470B: hypothetical protein|unclassified	0.4214568218
+UniRef50_X1HIR4: Marine sediment metagenome DNA, contig: S03H2_L02379	0.4214308152
+UniRef50_X1HIR4: Marine sediment metagenome DNA, contig: S03H2_L02379|unclassified	0.4214308152
+UniRef50_K0SPN4	0.4214013488
+UniRef50_K0SPN4|unclassified	0.4214013488
+UniRef50_H2A506	0.4213859336
+UniRef50_H2A506|unclassified	0.4213859336
+UniRef50_UPI0003ADE5F5: PREDICTED: basic proline-rich protein-like	0.4213731169
+UniRef50_UPI0003ADE5F5: PREDICTED: basic proline-rich protein-like|unclassified	0.4213731169
+UniRef50_M9RJC1	0.4213628151
+UniRef50_M9RJC1|unclassified	0.4213628151
+UniRef50_UPI0003D073EE: PREDICTED: serine/arginine repetitive matrix protein 1-like, partial	0.4213487578
+UniRef50_UPI0003D073EE: PREDICTED: serine/arginine repetitive matrix protein 1-like, partial|unclassified	0.4213487578
+UniRef50_K2AEI4	0.4213335625
+UniRef50_K2AEI4|unclassified	0.4213335625
+UniRef50_W9DBS9	0.4213153881
+UniRef50_W9DBS9|unclassified	0.4213153881
+UniRef50_UPI0003706B3C: hypothetical protein, partial	0.4212734256
+UniRef50_UPI0003706B3C: hypothetical protein, partial|unclassified	0.4212734256
+UniRef50_K1YX59	0.4212272860
+UniRef50_K1YX59|unclassified	0.4212272860
+UniRef50_UPI000382A772: hypothetical protein	0.4211844380
+UniRef50_UPI000382A772: hypothetical protein|unclassified	0.4211844380
+UniRef50_C1MRS0: Predicted protein	0.4211003729
+UniRef50_C1MRS0: Predicted protein|unclassified	0.4211003729
+UniRef50_Q7WKH5: 3-isopropylmalate dehydratase small subunit 1	0.4210856189
+UniRef50_Q7WKH5: 3-isopropylmalate dehydratase small subunit 1|unclassified	0.4210856189
+UniRef50_F4KKK5: NAD(P)H dehydrogenase (Quinone)	0.4210684461
+UniRef50_F4KKK5: NAD(P)H dehydrogenase (Quinone)|unclassified	0.4210684461
+UniRef50_Q9CH00: Ribonuclease R 1	0.4210526316
+UniRef50_Q9CH00: Ribonuclease R 1|g__Streptococcus.s__Streptococcus_agalactiae	0.4210526316
+UniRef50_E7DDI0	0.4210457627
+UniRef50_E7DDI0|unclassified	0.4210457627
+UniRef50_R1DBP2	0.4210182452
+UniRef50_R1DBP2|unclassified	0.4210182452
+UniRef50_K3Z8U3	0.4209830502
+UniRef50_K3Z8U3|unclassified	0.4209830502
+UniRef50_M1FII5	0.4209638007
+UniRef50_M1FII5|unclassified	0.4209638007
+UniRef50_A0A036VJT0	0.4209332189
+UniRef50_A0A036VJT0|unclassified	0.4209332189
+UniRef50_UPI00016AD7A5: Rhodanese-like protein, partial	0.4209218270
+UniRef50_UPI00016AD7A5: Rhodanese-like protein, partial|unclassified	0.4209218270
+UniRef50_B8IK57	0.4209201983
+UniRef50_B8IK57|unclassified	0.4209201983
+UniRef50_UPI0004733B64: hypothetical protein	0.4208907582
+UniRef50_UPI0004733B64: hypothetical protein|unclassified	0.4208907582
+UniRef50_B0VU18	0.4208754209
+UniRef50_B0VU18|g__Acinetobacter.s__Acinetobacter_baumannii	0.4208754209
+UniRef50_P20623: Nitrogenase iron protein (Fragment)	0.4208651114
+UniRef50_P20623: Nitrogenase iron protein (Fragment)|unclassified	0.4208651114
+UniRef50_I5C4V6	0.4208130439
+UniRef50_I5C4V6|unclassified	0.4208130439
+UniRef50_Q3JPC5	0.4207265068
+UniRef50_Q3JPC5|unclassified	0.4207265068
+UniRef50_D1MAV3: AM17	0.4207122137
+UniRef50_D1MAV3: AM17|unclassified	0.4207122137
+UniRef50_UPI0003FAC857: MULTISPECIES: hypothetical protein	0.4206757528
+UniRef50_UPI0003FAC857: MULTISPECIES: hypothetical protein|unclassified	0.4206757528
+UniRef50_V9WPX7	0.4205937013
+UniRef50_V9WPX7|unclassified	0.4205937013
+UniRef50_B9J8R4: FMN reductase (NADH) RutF 1	0.4205740233
+UniRef50_B9J8R4: FMN reductase (NADH) RutF 1|unclassified	0.4205740233
+UniRef50_G5M798: Functional role page for Anaerobic nitric oxide reductase transcription regulator NorR	0.4205263880
+UniRef50_G5M798: Functional role page for Anaerobic nitric oxide reductase transcription regulator NorR|unclassified	0.4205263880
+UniRef50_K0S2A3	0.4205194136
+UniRef50_K0S2A3|unclassified	0.4205194136
+UniRef50_B2FKB6	0.4205189291
+UniRef50_B2FKB6|unclassified	0.4205189291
+UniRef50_F4QVG8: ABC transporter ATP binding protein	0.4205052800
+UniRef50_F4QVG8: ABC transporter ATP binding protein|unclassified	0.4205052800
+UniRef50_UPI00047D87EA: hypothetical protein	0.4204866783
+UniRef50_UPI00047D87EA: hypothetical protein|unclassified	0.4204866783
+UniRef50_K2LL28	0.4204793123
+UniRef50_K2LL28|unclassified	0.4204793123
+UniRef50_Q49Z66: Thymidine kinase	0.4204788044
+UniRef50_Q49Z66: Thymidine kinase|unclassified	0.4204788044
+UniRef50_Q8CS71	0.4204703257
+UniRef50_Q8CS71|unclassified	0.4204703257
+UniRef50_W6C5N4: Polyketide synthase domain protein	0.4204335539
+UniRef50_W6C5N4: Polyketide synthase domain protein|unclassified	0.4204335539
+UniRef50_UPI0001B4442A: hypothetical protein	0.4204202023
+UniRef50_UPI0001B4442A: hypothetical protein|unclassified	0.4204202023
+UniRef50_UPI000462A856: hypothetical protein	0.4203638634
+UniRef50_UPI000462A856: hypothetical protein|unclassified	0.4203638634
+UniRef50_UPI0002D7A7D9: hypothetical protein	0.4202668776
+UniRef50_UPI0002D7A7D9: hypothetical protein|unclassified	0.4202668776
+UniRef50_Q3JRV3: 200 kDa antigen p200, putative	0.4202521480
+UniRef50_Q3JRV3: 200 kDa antigen p200, putative|unclassified	0.4202521480
+UniRef50_UPI0002625F35: ABC transporter	0.4202216104
+UniRef50_UPI0002625F35: ABC transporter|unclassified	0.4202216104
+UniRef50_A0A023VCA2	0.4202033908
+UniRef50_A0A023VCA2|unclassified	0.4202033908
+UniRef50_F6IG79: Integral membrane protein linked to a cation pump-like	0.4201829297
+UniRef50_F6IG79: Integral membrane protein linked to a cation pump-like|unclassified	0.4201829297
+UniRef50_Q9KG60: Urease subunit beta	0.4201686405
+UniRef50_Q9KG60: Urease subunit beta|unclassified	0.4201686405
+UniRef50_UPI00046E7255: MULTISPECIES: diguanylate cyclase, partial	0.4201472546
+UniRef50_UPI00046E7255: MULTISPECIES: diguanylate cyclase, partial|unclassified	0.4201472546
+UniRef50_Q8TQW9: Putative ABC transporter ATP-binding protein MA_1418	0.4200486160
+UniRef50_Q8TQW9: Putative ABC transporter ATP-binding protein MA_1418|unclassified	0.4200486160
+UniRef50_UPI000368D600: hypothetical protein, partial	0.4200103153
+UniRef50_UPI000368D600: hypothetical protein, partial|unclassified	0.4200103153
+UniRef50_B4F1G9: Argininosuccinate lyase	0.4199639188
+UniRef50_B4F1G9: Argininosuccinate lyase|unclassified	0.4199639188
+UniRef50_E9G866	0.4199612183
+UniRef50_E9G866|unclassified	0.4199612183
+UniRef50_UPI000473F325: hypothetical protein	0.4198917618
+UniRef50_UPI000473F325: hypothetical protein|unclassified	0.4198917618
+UniRef50_UPI000377EC15: hypothetical protein, partial	0.4198884027
+UniRef50_UPI000377EC15: hypothetical protein, partial|unclassified	0.4198884027
+UniRef50_UPI000255A6B5: replicative DNA helicase	0.4198755353
+UniRef50_UPI000255A6B5: replicative DNA helicase|unclassified	0.4198755353
+UniRef50_A7MR25	0.4198480336
+UniRef50_A7MR25|unclassified	0.4198480336
+UniRef50_A4WR24: IS66 Orf2 family protein	0.4198295977
+UniRef50_A4WR24: IS66 Orf2 family protein|unclassified	0.4198295977
+UniRef50_UPI0003759AA3: purine nucleoside phosphorylase	0.4198278736
+UniRef50_UPI0003759AA3: purine nucleoside phosphorylase|unclassified	0.4198278736
+UniRef50_UPI00026263A2: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	0.4198151425
+UniRef50_UPI00026263A2: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.4198151425
+UniRef50_UPI0003C15EA6	0.4198050741
+UniRef50_UPI0003C15EA6|unclassified	0.4198050741
+UniRef50_UPI000191318B: flagellar biosynthesis protein FliR, partial	0.4197095164
+UniRef50_UPI000191318B: flagellar biosynthesis protein FliR, partial|unclassified	0.4197095164
+UniRef50_W1XPB9	0.4196987093
+UniRef50_W1XPB9|unclassified	0.4196987093
+UniRef50_M3NMQ8: TonB-dependent receptor plug domain protein	0.4196391104
+UniRef50_M3NMQ8: TonB-dependent receptor plug domain protein|g__Helicobacter.s__Helicobacter_pylori	0.4196391104
+UniRef50_UPI0002483870: rod shape-determining protein MreB	0.4196325636
+UniRef50_UPI0002483870: rod shape-determining protein MreB|unclassified	0.4196325636
+UniRef50_K8YDJ9	0.4196194777
+UniRef50_K8YDJ9|unclassified	0.4196194777
+UniRef50_R4XZD0: Protein yciF	0.4196174487
+UniRef50_R4XZD0: Protein yciF|unclassified	0.4196174487
+UniRef50_X5ESC8	0.4195853259
+UniRef50_X5ESC8|unclassified	0.4195853259
+UniRef50_P50181: 3-isopropylmalate dehydratase small subunit (Fragment)	0.4195014155
+UniRef50_P50181: 3-isopropylmalate dehydratase small subunit (Fragment)|unclassified	0.4195014155
+UniRef50_M5E9V1	0.4194672282
+UniRef50_M5E9V1|unclassified	0.4194672282
+UniRef50_D0LW66	0.4194501522
+UniRef50_D0LW66|unclassified	0.4194501522
+UniRef50_F0YC19	0.4194444270
+UniRef50_F0YC19|unclassified	0.4194444270
+UniRef50_W9EYV2	0.4194041885
+UniRef50_W9EYV2|unclassified	0.4194041885
+UniRef50_UPI000308DF5E: 50S ribosomal protein L20	0.4194037530
+UniRef50_UPI000308DF5E: 50S ribosomal protein L20|unclassified	0.4194037530
+UniRef50_Q4K629: 3-methyl-2-oxobutanoate hydroxymethyltransferase 1	0.4193988204
+UniRef50_Q4K629: 3-methyl-2-oxobutanoate hydroxymethyltransferase 1|unclassified	0.4193988204
+UniRef50_UPI00047735F2: hypothetical protein	0.4193870185
+UniRef50_UPI00047735F2: hypothetical protein|unclassified	0.4193870185
+UniRef50_I1EWK8	0.4193528623
+UniRef50_I1EWK8|unclassified	0.4193528623
+UniRef50_UPI000349F267: ABC transporter permease	0.4193142732
+UniRef50_UPI000349F267: ABC transporter permease|unclassified	0.4193142732
+UniRef50_UPI0003B581A8: taurine--pyruvate aminotransferase	0.4193122571
+UniRef50_UPI0003B581A8: taurine--pyruvate aminotransferase|unclassified	0.4193122571
+UniRef50_A0A017TDM3	0.4193047476
+UniRef50_A0A017TDM3|unclassified	0.4193047476
+UniRef50_L9PQ51: Beta-lactamase domain-containing protein	0.4192672989
+UniRef50_L9PQ51: Beta-lactamase domain-containing protein|unclassified	0.4192672989
+UniRef50_Q829I6	0.4192466323
+UniRef50_Q829I6|unclassified	0.4192466323
+UniRef50_D7I2U1	0.4192441802
+UniRef50_D7I2U1|unclassified	0.4192441802
+UniRef50_K0TKK5	0.4191498252
+UniRef50_K0TKK5|unclassified	0.4191498252
+UniRef50_H6P2T4: Death-on-curing	0.4190777171
+UniRef50_H6P2T4: Death-on-curing|unclassified	0.4190777171
+UniRef50_UPI00031B7DA5: hypothetical protein	0.4190709290
+UniRef50_UPI00031B7DA5: hypothetical protein|unclassified	0.4190709290
+UniRef50_G2RMS2: NAD(P)H dehydrogenase (Quinone)	0.4190611933
+UniRef50_G2RMS2: NAD(P)H dehydrogenase (Quinone)|unclassified	0.4190611933
+UniRef50_I3UCG7: HupE/UreJ protein	0.4189446960
+UniRef50_I3UCG7: HupE/UreJ protein|unclassified	0.4189446960
+UniRef50_D0SBY2: Oxidoreductase alpha (Molybdopterin) subunit	0.4189359028
+UniRef50_D0SBY2: Oxidoreductase alpha (Molybdopterin) subunit|g__Acinetobacter.s__Acinetobacter_baumannii	0.4189359028
+UniRef50_UPI0003C77662: hypothetical protein	0.4189041559
+UniRef50_UPI0003C77662: hypothetical protein|unclassified	0.4189041559
+UniRef50_UPI00035CBB0F: hypothetical protein	0.4188650521
+UniRef50_UPI00035CBB0F: hypothetical protein|unclassified	0.4188650521
+UniRef50_T8WTC0: Long-chain fatty acid transporter	0.4188628617
+UniRef50_T8WTC0: Long-chain fatty acid transporter|unclassified	0.4188628617
+UniRef50_Z6NTK4	0.4188378044
+UniRef50_Z6NTK4|unclassified	0.4188378044
+UniRef50_UPI0002492264: flavin reductase	0.4187423646
+UniRef50_UPI0002492264: flavin reductase|unclassified	0.4187423646
+UniRef50_Q16AB8: DNA-directed RNA polymerase subunit alpha	0.4187207121
+UniRef50_Q16AB8: DNA-directed RNA polymerase subunit alpha|unclassified	0.4187207121
+UniRef50_S1A641	0.4186838201
+UniRef50_S1A641|unclassified	0.4186838201
+UniRef50_UPI0004788EAB: ABC transporter permease	0.4186827811
+UniRef50_UPI0004788EAB: ABC transporter permease|unclassified	0.4186827811
+UniRef50_UPI000423190C: O-succinylbenzoate synthase	0.4186668933
+UniRef50_UPI000423190C: O-succinylbenzoate synthase|unclassified	0.4186668933
+UniRef50_Q5JHG5: Carbamate kinase	0.4185799153
+UniRef50_Q5JHG5: Carbamate kinase|unclassified	0.4185799153
+UniRef50_UPI000476CD71: isopentenyl-diphosphate delta-isomerase	0.4185559774
+UniRef50_UPI000476CD71: isopentenyl-diphosphate delta-isomerase|unclassified	0.4185559774
+UniRef50_S1FS60	0.4185316312
+UniRef50_S1FS60|unclassified	0.4185316312
+UniRef50_UPI00040981C2: hypothetical protein	0.4185305365
+UniRef50_UPI00040981C2: hypothetical protein|unclassified	0.4185305365
+UniRef50_UPI0003674C55: hypothetical protein	0.4185174463
+UniRef50_UPI0003674C55: hypothetical protein|unclassified	0.4185174463
+UniRef50_UPI000255D089: molecular chaperone, inactive metal-dependent protease like protein, partial	0.4183992600
+UniRef50_UPI000255D089: molecular chaperone, inactive metal-dependent protease like protein, partial|unclassified	0.4183992600
+UniRef50_U1SML3	0.4183795354
+UniRef50_U1SML3|unclassified	0.4183795354
+UniRef50_D6AAG3	0.4183506807
+UniRef50_D6AAG3|unclassified	0.4183506807
+UniRef50_UPI000364125F: hypothetical protein	0.4183487448
+UniRef50_UPI000364125F: hypothetical protein|unclassified	0.4183487448
+UniRef50_UPI0003755CEE: hypothetical protein	0.4183352852
+UniRef50_UPI0003755CEE: hypothetical protein|unclassified	0.4183352852
+UniRef50_Q493R1: 3-isopropylmalate dehydrogenase	0.4183098182
+UniRef50_Q493R1: 3-isopropylmalate dehydrogenase|unclassified	0.4183098182
+UniRef50_F3JZD3: ATPase	0.4182634691
+UniRef50_F3JZD3: ATPase|unclassified	0.4182634691
+UniRef50_UPI0001BF5D7F: hypothetical protein SMAC_11787, partial	0.4182382457
+UniRef50_UPI0001BF5D7F: hypothetical protein SMAC_11787, partial|unclassified	0.4182382457
+UniRef50_K5P2M6	0.4182350481
+UniRef50_K5P2M6|g__Acinetobacter.s__Acinetobacter_baumannii	0.4182350481
+UniRef50_R6Q6V2: Cytosine-specific methyltransferase	0.4182350481
+UniRef50_R6Q6V2: Cytosine-specific methyltransferase|g__Helicobacter.s__Helicobacter_pylori	0.4182350481
+UniRef50_B2GCB8: 3-isopropylmalate dehydratase large subunit	0.4182242515
+UniRef50_B2GCB8: 3-isopropylmalate dehydratase large subunit|unclassified	0.4182242515
+UniRef50_B7RW05	0.4181304437
+UniRef50_B7RW05|unclassified	0.4181304437
+UniRef50_Q64GH1: Putative enoyl reductase (Fragment)	0.4181067635
+UniRef50_Q64GH1: Putative enoyl reductase (Fragment)|unclassified	0.4181067635
+UniRef50_M4JUB9	0.4180629091
+UniRef50_M4JUB9|unclassified	0.4180629091
+UniRef50_L0J528	0.4180602007
+UniRef50_L0J528|unclassified	0.4180602007
+UniRef50_UPI000328F24B	0.4180576840
+UniRef50_UPI000328F24B|unclassified	0.4180576840
+UniRef50_B6SQB4	0.4180200339
+UniRef50_B6SQB4|unclassified	0.4180200339
+UniRef50_A1A245: Lipoprotein	0.4179926983
+UniRef50_A1A245: Lipoprotein|unclassified	0.4179926983
+UniRef50_UPI000360286C: hypothetical protein	0.4179791975
+UniRef50_UPI000360286C: hypothetical protein|unclassified	0.4179791975
+UniRef50_U4PHR8: DNA gyrase inhibitory protein, GyrI	0.4179385638
+UniRef50_U4PHR8: DNA gyrase inhibitory protein, GyrI|unclassified	0.4179385638
+UniRef50_Q6K898: Os02g0289000 protein	0.4179376778
+UniRef50_Q6K898: Os02g0289000 protein|unclassified	0.4179376778
+UniRef50_E3RRY8	0.4179061110
+UniRef50_E3RRY8|unclassified	0.4179061110
+UniRef50_A0A017HFS0	0.4179044595
+UniRef50_A0A017HFS0|unclassified	0.4179044595
+UniRef50_A4WWL8: UPF0434 protein Rsph17025_2896	0.4178708908
+UniRef50_A4WWL8: UPF0434 protein Rsph17025_2896|unclassified	0.4178708908
+UniRef50_Q39GU7: Transcriptional regulator, HxlR family	0.4178605026
+UniRef50_Q39GU7: Transcriptional regulator, HxlR family|unclassified	0.4178605026
+UniRef50_UPI000166006A: truncated Pre protein	0.4178549858
+UniRef50_UPI000166006A: truncated Pre protein|unclassified	0.4178549858
+UniRef50_A0A011P0P9	0.4178385530
+UniRef50_A0A011P0P9|unclassified	0.4178385530
+UniRef50_UPI0002E7362F: hypothetical protein	0.4178014612
+UniRef50_UPI0002E7362F: hypothetical protein|unclassified	0.4178014612
+UniRef50_H9K6T2: Arginine biosynthesis bifunctional protein ArgJ, mitochondrial	0.4177557303
+UniRef50_H9K6T2: Arginine biosynthesis bifunctional protein ArgJ, mitochondrial|unclassified	0.4177557303
+UniRef50_UPI0004560524: hypothetical protein PFL1_00211	0.4177370906
+UniRef50_UPI0004560524: hypothetical protein PFL1_00211|unclassified	0.4177370906
+UniRef50_UPI0002194D92: SSU ribosomal protein S1P	0.4177157053
+UniRef50_UPI0002194D92: SSU ribosomal protein S1P|unclassified	0.4177157053
+UniRef50_Q8VPM9: Putative minor silk ampullate protein	0.4177109440
+UniRef50_Q8VPM9: Putative minor silk ampullate protein|unclassified	0.4177109440
+UniRef50_A0A021H1G1: Maltose operon transcriptional repressor	0.4177100885
+UniRef50_A0A021H1G1: Maltose operon transcriptional repressor|unclassified	0.4177100885
+UniRef50_UPI0004709AB9: 2-keto-3-deoxy-galactonate aldolase, partial	0.4176426334
+UniRef50_UPI0004709AB9: 2-keto-3-deoxy-galactonate aldolase, partial|unclassified	0.4176426334
+UniRef50_UPI0003ADF309: PREDICTED: basic proline-rich protein-like	0.4176169992
+UniRef50_UPI0003ADF309: PREDICTED: basic proline-rich protein-like|unclassified	0.4176169992
+UniRef50_UPI00037CE89B: hypothetical protein	0.4175900415
+UniRef50_UPI00037CE89B: hypothetical protein|unclassified	0.4175900415
+UniRef50_S9R870	0.4175365344
+UniRef50_S9R870|unclassified	0.4175365344
+UniRef50_Q1LTG7: Orotidine 5'-phosphate decarboxylase	0.4175266522
+UniRef50_Q1LTG7: Orotidine 5'-phosphate decarboxylase|unclassified	0.4175266522
+UniRef50_C2TQQ2: Peptidase, M23/M37	0.4175071142
+UniRef50_C2TQQ2: Peptidase, M23/M37|unclassified	0.4175071142
+UniRef50_F3FNC5: GGDEF domain-containing protein	0.4174889137
+UniRef50_F3FNC5: GGDEF domain-containing protein|unclassified	0.4174889137
+UniRef50_UPI0003A4E33B: peptidase	0.4174666744
+UniRef50_UPI0003A4E33B: peptidase|unclassified	0.4174666744
+UniRef50_UPI0001745135: probable RNA polymerase sigma-E factor	0.4174601658
+UniRef50_UPI0001745135: probable RNA polymerase sigma-E factor|unclassified	0.4174601658
+UniRef50_K1YLM8	0.4174185970
+UniRef50_K1YLM8|unclassified	0.4174185970
+UniRef50_UPI000465FF4A: chemotaxis protein CheW	0.4173997143
+UniRef50_UPI000465FF4A: chemotaxis protein CheW|unclassified	0.4173997143
+UniRef50_UPI00021917AB: DNA processing protein DprA	0.4173730140
+UniRef50_UPI00021917AB: DNA processing protein DprA|unclassified	0.4173730140
+UniRef50_UPI000329B634	0.4173693442
+UniRef50_UPI000329B634|unclassified	0.4173693442
+UniRef50_UPI00036F359E: hypothetical protein	0.4173314020
+UniRef50_UPI00036F359E: hypothetical protein|unclassified	0.4173314020
+UniRef50_C4M344: C2 domain containing protein	0.4173112291
+UniRef50_C4M344: C2 domain containing protein|unclassified	0.4173112291
+UniRef50_A0A014L3Z2: Membrane protein	0.4172248788
+UniRef50_A0A014L3Z2: Membrane protein|unclassified	0.4172248788
+UniRef50_E1Z5M0	0.4172222276
+UniRef50_E1Z5M0|unclassified	0.4172222276
+UniRef50_UPI000328D404	0.4171922777
+UniRef50_UPI000328D404|unclassified	0.4171922777
+UniRef50_UPI00036AE186: hypothetical protein	0.4171603004
+UniRef50_UPI00036AE186: hypothetical protein|unclassified	0.4171603004
+UniRef50_UPI0003804693: hypothetical protein	0.4171532947
+UniRef50_UPI0003804693: hypothetical protein|unclassified	0.4171532947
+UniRef50_UPI00046F4B95: histidinol phosphatase, partial	0.4171399369
+UniRef50_UPI00046F4B95: histidinol phosphatase, partial|unclassified	0.4171399369
+UniRef50_UPI00046C9D0D: hypothetical protein	0.4171198730
+UniRef50_UPI00046C9D0D: hypothetical protein|unclassified	0.4171198730
+UniRef50_G6LYD5	0.4171169027
+UniRef50_G6LYD5|unclassified	0.4171169027
+UniRef50_Q9RYW8: Excinuclease ABC, subunit A	0.4170141785
+UniRef50_Q9RYW8: Excinuclease ABC, subunit A|g__Deinococcus.s__Deinococcus_radiodurans	0.4170141785
+UniRef50_UPI0003677CC0: hypothetical protein	0.4170057280
+UniRef50_UPI0003677CC0: hypothetical protein|unclassified	0.4170057280
+UniRef50_UPI000380772D: hypothetical protein	0.4169226443
+UniRef50_UPI000380772D: hypothetical protein|unclassified	0.4169226443
+UniRef50_UPI00036F0C38: hypothetical protein	0.4169212324
+UniRef50_UPI00036F0C38: hypothetical protein|unclassified	0.4169212324
+UniRef50_UPI000289F89C: nitrite reductase (NAD(P)H) small subunit	0.4168711915
+UniRef50_UPI000289F89C: nitrite reductase (NAD(P)H) small subunit|unclassified	0.4168711915
+UniRef50_G1KYM3	0.4168484461
+UniRef50_G1KYM3|unclassified	0.4168484461
+UniRef50_L8BP73: Antirestriction protein klcA	0.4168415630
+UniRef50_L8BP73: Antirestriction protein klcA|unclassified	0.4168415630
+UniRef50_L7UHD0: DGPF domain-containing protein	0.4166828005
+UniRef50_L7UHD0: DGPF domain-containing protein|unclassified	0.4166828005
+UniRef50_Q9RX49: Sensory box/GGDEF family protein	0.4166666667
+UniRef50_Q9RX49: Sensory box/GGDEF family protein|g__Deinococcus.s__Deinococcus_radiodurans	0.4166666667
+UniRef50_UPI0004692020: hypothetical protein	0.4166578279
+UniRef50_UPI0004692020: hypothetical protein|unclassified	0.4166578279
+UniRef50_R8APC4	0.4166014486
+UniRef50_R8APC4|unclassified	0.4166014486
+UniRef50_F5P055	0.4165594147
+UniRef50_F5P055|unclassified	0.4165594147
+UniRef50_X1GUN2: Marine sediment metagenome DNA, contig: S03H2_L03747	0.4165265815
+UniRef50_X1GUN2: Marine sediment metagenome DNA, contig: S03H2_L03747|unclassified	0.4165265815
+UniRef50_UPI0001F27501: alcohol dehydrogenase	0.4165204751
+UniRef50_UPI0001F27501: alcohol dehydrogenase|unclassified	0.4165204751
+UniRef50_UPI00037EBE04: hypothetical protein	0.4164931279
+UniRef50_UPI00037EBE04: hypothetical protein|unclassified	0.4164931279
+UniRef50_UPI00035FC356: hypothetical protein	0.4164836555
+UniRef50_UPI00035FC356: hypothetical protein|unclassified	0.4164836555
+UniRef50_Q2N6Q3	0.4164687950
+UniRef50_Q2N6Q3|unclassified	0.4164687950
+UniRef50_UPI0002D8F2B9: 30S ribosomal protein S18	0.4164683421
+UniRef50_UPI0002D8F2B9: 30S ribosomal protein S18|unclassified	0.4164683421
+UniRef50_UPI00036940F2: hypothetical protein	0.4164417878
+UniRef50_UPI00036940F2: hypothetical protein|unclassified	0.4164417878
+UniRef50_F3Z838: Putative hydrogen peroxide sensitive repressor	0.4164176358
+UniRef50_F3Z838: Putative hydrogen peroxide sensitive repressor|unclassified	0.4164176358
+UniRef50_A6FVD1	0.4164127642
+UniRef50_A6FVD1|unclassified	0.4164127642
+UniRef50_UPI000373141E: hypothetical protein	0.4164029197
+UniRef50_UPI000373141E: hypothetical protein|unclassified	0.4164029197
+UniRef50_L0AHU5	0.4163831587
+UniRef50_L0AHU5|unclassified	0.4163831587
+UniRef50_UPI000410849B: hypothetical protein	0.4163817869
+UniRef50_UPI000410849B: hypothetical protein|unclassified	0.4163817869
+UniRef50_A0A031GMI8	0.4163591509
+UniRef50_A0A031GMI8|unclassified	0.4163591509
+UniRef50_D6WHM9: Gustatory receptor 188	0.4163425113
+UniRef50_D6WHM9: Gustatory receptor 188|unclassified	0.4163425113
+UniRef50_Q6G5A9: Shikimate dehydrogenase	0.4163091592
+UniRef50_Q6G5A9: Shikimate dehydrogenase|unclassified	0.4163091592
+UniRef50_F7STD3	0.4162780965
+UniRef50_F7STD3|unclassified	0.4162780965
+UniRef50_UPI0003655ED9: hypothetical protein	0.4162708196
+UniRef50_UPI0003655ED9: hypothetical protein|unclassified	0.4162708196
+UniRef50_J0V241: Xaa-Pro dipeptidase	0.4162620175
+UniRef50_J0V241: Xaa-Pro dipeptidase|unclassified	0.4162620175
+UniRef50_UPI0003AA625B: glutathione S-transferase	0.4162355453
+UniRef50_UPI0003AA625B: glutathione S-transferase|unclassified	0.4162355453
+UniRef50_UPI00038FD627: hypothetical protein	0.4162209805
+UniRef50_UPI00038FD627: hypothetical protein|unclassified	0.4162209805
+UniRef50_S6RBI7: N-acetylmuramoyl-L-alanine amidase (Fragment)	0.4161784903
+UniRef50_S6RBI7: N-acetylmuramoyl-L-alanine amidase (Fragment)|unclassified	0.4161784903
+UniRef50_S6JXH3	0.4161199404
+UniRef50_S6JXH3|unclassified	0.4161199404
+UniRef50_UPI00041F8F16: glycerol-3-phosphate ABC transporter ATP-binding protein	0.4161147169
+UniRef50_UPI00041F8F16: glycerol-3-phosphate ABC transporter ATP-binding protein|unclassified	0.4161147169
+UniRef50_J0VNP8: Putative membrane protein	0.4159875485
+UniRef50_J0VNP8: Putative membrane protein|unclassified	0.4159875485
+UniRef50_S5YTI8: Urea carboxylase-associated protein	0.4158623874
+UniRef50_S5YTI8: Urea carboxylase-associated protein|unclassified	0.4158623874
+UniRef50_D0NX50	0.4158528495
+UniRef50_D0NX50|unclassified	0.4158528495
+UniRef50_Q8XPQ1: Probable remnant of a transposase protein	0.4158519814
+UniRef50_Q8XPQ1: Probable remnant of a transposase protein|unclassified	0.4158519814
+UniRef50_F7QKU3: TRAP transporter solute receptor, TAXI family	0.4158133650
+UniRef50_F7QKU3: TRAP transporter solute receptor, TAXI family|unclassified	0.4158133650
+UniRef50_L6QH41	0.4157990081
+UniRef50_L6QH41|unclassified	0.4157990081
+UniRef50_UPI00046846A4: 2-dehydro-3-deoxygluconokinase	0.4157728001
+UniRef50_UPI00046846A4: 2-dehydro-3-deoxygluconokinase|unclassified	0.4157728001
+UniRef50_UPI00036A00B7: hypothetical protein	0.4157299178
+UniRef50_UPI00036A00B7: hypothetical protein|unclassified	0.4157299178
+UniRef50_Q2RTS9: Phosphate acyltransferase	0.4156545255
+UniRef50_Q2RTS9: Phosphate acyltransferase|unclassified	0.4156545255
+UniRef50_A0A035M0L5: Sensor protein vRas	0.4155991045
+UniRef50_A0A035M0L5: Sensor protein vRas|unclassified	0.4155991045
+UniRef50_UPI00034C24B9: RNA polymerase sigma factor RpoE	0.4155666473
+UniRef50_UPI00034C24B9: RNA polymerase sigma factor RpoE|unclassified	0.4155666473
+UniRef50_UPI0003B55A40: PREDICTED: whirlin-like	0.4155614229
+UniRef50_UPI0003B55A40: PREDICTED: whirlin-like|unclassified	0.4155614229
+UniRef50_UPI0003B69E18: membrane protein	0.4154889168
+UniRef50_UPI0003B69E18: membrane protein|unclassified	0.4154889168
+UniRef50_C6WBN9: PE-PGRS family protein	0.4154760327
+UniRef50_C6WBN9: PE-PGRS family protein|unclassified	0.4154760327
+UniRef50_E1STU3	0.4154403641
+UniRef50_E1STU3|unclassified	0.4154403641
+UniRef50_UPI00037B8AB0: hypothetical protein	0.4153910804
+UniRef50_UPI00037B8AB0: hypothetical protein|unclassified	0.4153910804
+UniRef50_UPI000368871C: hypothetical protein	0.4153591076
+UniRef50_UPI000368871C: hypothetical protein|unclassified	0.4153591076
+UniRef50_UPI000379E4F4: hypothetical protein	0.4153369549
+UniRef50_UPI000379E4F4: hypothetical protein|unclassified	0.4153369549
+UniRef50_Q6FED8: Arginine biosynthesis bifunctional protein ArgJ	0.4153139108
+UniRef50_Q6FED8: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.4153139108
+UniRef50_C1MHZ2: Predicted protein	0.4153101948
+UniRef50_C1MHZ2: Predicted protein|unclassified	0.4153101948
+UniRef50_E2ZV83	0.4152868344
+UniRef50_E2ZV83|unclassified	0.4152868344
+UniRef50_J7RHN4: Aconitate hydratase	0.4152823920
+UniRef50_J7RHN4: Aconitate hydratase|g__Acinetobacter.s__Acinetobacter_baumannii	0.4152823920
+UniRef50_Q9JU31: DNA translocase FtsK 1	0.4152823920
+UniRef50_Q9JU31: DNA translocase FtsK 1|g__Neisseria.s__Neisseria_meningitidis	0.4152823920
+UniRef50_UPI000273F567	0.4152736766
+UniRef50_UPI000273F567|unclassified	0.4152736766
+UniRef50_UPI000475F3A7: hypothetical protein, partial	0.4152551315
+UniRef50_UPI000475F3A7: hypothetical protein, partial|unclassified	0.4152551315
+UniRef50_W5XEU5: Putative N-acyl-D-glucosamine 2-epimerase	0.4151869737
+UniRef50_W5XEU5: Putative N-acyl-D-glucosamine 2-epimerase|unclassified	0.4151869737
+UniRef50_P44499: Peptidyl-prolyl cis-trans isomerase B	0.4151808420
+UniRef50_P44499: Peptidyl-prolyl cis-trans isomerase B|unclassified	0.4151808420
+UniRef50_D9WIU5: Polyketide synthase type I (Fragment)	0.4151606694
+UniRef50_D9WIU5: Polyketide synthase type I (Fragment)|unclassified	0.4151606694
+UniRef50_X6NA60	0.4150812826
+UniRef50_X6NA60|unclassified	0.4150812826
+UniRef50_C2WX32	0.4150806199
+UniRef50_C2WX32|unclassified	0.4150806199
+UniRef50_S6C1E6: UPF0223 protein ANG_1345	0.4150547963
+UniRef50_S6C1E6: UPF0223 protein ANG_1345|unclassified	0.4150547963
+UniRef50_UPI0003B68013: biopolymer transporter ExbD	0.4150231881
+UniRef50_UPI0003B68013: biopolymer transporter ExbD|unclassified	0.4150231881
+UniRef50_UPI000381A028: hypothetical protein	0.4149955574
+UniRef50_UPI000381A028: hypothetical protein|unclassified	0.4149955574
+UniRef50_D6LSV3	0.4149897267
+UniRef50_D6LSV3|unclassified	0.4149897267
+UniRef50_UPI00037120C6: hypothetical protein	0.4149852728
+UniRef50_UPI00037120C6: hypothetical protein|unclassified	0.4149852728
+UniRef50_T0Z416: Phosphoglycolate phosphatase	0.4149689082
+UniRef50_T0Z416: Phosphoglycolate phosphatase|unclassified	0.4149689082
+UniRef50_Q9PCE0: Undecaprenyl-diphosphatase	0.4149452143
+UniRef50_Q9PCE0: Undecaprenyl-diphosphatase|unclassified	0.4149452143
+UniRef50_Q7NEK3: Oxygen-dependent coproporphyrinogen-III oxidase	0.4149247214
+UniRef50_Q7NEK3: Oxygen-dependent coproporphyrinogen-III oxidase|unclassified	0.4149247214
+UniRef50_UPI0004703E16: hypothetical protein	0.4148897126
+UniRef50_UPI0004703E16: hypothetical protein|unclassified	0.4148897126
+UniRef50_B6J695: NADH-quinone oxidoreductase subunit B	0.4148886443
+UniRef50_B6J695: NADH-quinone oxidoreductase subunit B|unclassified	0.4148886443
+UniRef50_UPI0003B5116B: hypothetical protein	0.4148780139
+UniRef50_UPI0003B5116B: hypothetical protein|unclassified	0.4148780139
+UniRef50_A3JSX4	0.4148690313
+UniRef50_A3JSX4|unclassified	0.4148690313
+UniRef50_G2T765	0.4147698193
+UniRef50_G2T765|unclassified	0.4147698193
+UniRef50_UPI00037DA301: hypothetical protein	0.4147594596
+UniRef50_UPI00037DA301: hypothetical protein|unclassified	0.4147594596
+UniRef50_UPI000375B56E: hypothetical protein	0.4147384403
+UniRef50_UPI000375B56E: hypothetical protein|unclassified	0.4147384403
+UniRef50_N6V1U4	0.4147288920
+UniRef50_N6V1U4|unclassified	0.4147288920
+UniRef50_UPI00046E378F: electron transporter RnfB, partial	0.4147024765
+UniRef50_UPI00046E378F: electron transporter RnfB, partial|unclassified	0.4147024765
+UniRef50_UPI000255C642: signaling protein consisting of a modified GGDEF domain and a DHH domain, partial	0.4146660899
+UniRef50_UPI000255C642: signaling protein consisting of a modified GGDEF domain and a DHH domain, partial|unclassified	0.4146660899
+UniRef50_A4VJB6	0.4146148012
+UniRef50_A4VJB6|unclassified	0.4146148012
+UniRef50_I2JL49	0.4146104469
+UniRef50_I2JL49|unclassified	0.4146104469
+UniRef50_J9NUI2	0.4145982203
+UniRef50_J9NUI2|unclassified	0.4145982203
+UniRef50_S3BX82	0.4145936982
+UniRef50_S3BX82|unclassified	0.4145936982
+UniRef50_UPI0001850812: shikimate 5-dehydrogenase	0.4144589856
+UniRef50_UPI0001850812: shikimate 5-dehydrogenase|unclassified	0.4144589856
+UniRef50_W8YNA9	0.4144426208
+UniRef50_W8YNA9|unclassified	0.4144426208
+UniRef50_UPI00026304CA: aminotransferase, partial	0.4144397540
+UniRef50_UPI00026304CA: aminotransferase, partial|unclassified	0.4144397540
+UniRef50_UPI0004764CEE: transcription termination factor Rho, partial	0.4143930785
+UniRef50_UPI0004764CEE: transcription termination factor Rho, partial|unclassified	0.4143930785
+UniRef50_UPI00047893F1: chemotaxis protein	0.4143641626
+UniRef50_UPI00047893F1: chemotaxis protein|unclassified	0.4143641626
+UniRef50_A0A023KYQ0	0.4143030090
+UniRef50_A0A023KYQ0|unclassified	0.4143030090
+UniRef50_UPI0004693CE1: PA-phosphatase	0.4142773536
+UniRef50_UPI0004693CE1: PA-phosphatase|unclassified	0.4142773536
+UniRef50_B4EYR5: Glycerol-3-phosphate acyltransferase	0.4142502071
+UniRef50_B4EYR5: Glycerol-3-phosphate acyltransferase|g__Escherichia.s__Escherichia_coli	0.4142502071
+UniRef50_UPI0002E02ECB: cold-shock protein	0.4142303412
+UniRef50_UPI0002E02ECB: cold-shock protein|unclassified	0.4142303412
+UniRef50_A0A034GY86: Azaleucine resistance protein AzlC	0.4142268008
+UniRef50_A0A034GY86: Azaleucine resistance protein AzlC|unclassified	0.4142268008
+UniRef50_E9HMM5	0.4141898029
+UniRef50_E9HMM5|unclassified	0.4141898029
+UniRef50_W8U544: Putative secreted protein	0.4141348697
+UniRef50_W8U544: Putative secreted protein|unclassified	0.4141348697
+UniRef50_S1JWG4	0.4141104806
+UniRef50_S1JWG4|unclassified	0.4141104806
+UniRef50_A3DFY9	0.4140689533
+UniRef50_A3DFY9|unclassified	0.4140689533
+UniRef50_G8LZB4	0.4140689533
+UniRef50_G8LZB4|unclassified	0.4140689533
+UniRef50_UPI00035C3E51: hypothetical protein	0.4139351255
+UniRef50_UPI00035C3E51: hypothetical protein|unclassified	0.4139351255
+UniRef50_M0WIY9	0.4139328053
+UniRef50_M0WIY9|unclassified	0.4139328053
+UniRef50_A0A011P4L8	0.4139300375
+UniRef50_A0A011P4L8|unclassified	0.4139300375
+UniRef50_UPI000473C446: hypothetical protein	0.4139278809
+UniRef50_UPI000473C446: hypothetical protein|unclassified	0.4139278809
+UniRef50_UPI00040DE937: ABC transporter ATP-binding protein	0.4139188518
+UniRef50_UPI00040DE937: ABC transporter ATP-binding protein|unclassified	0.4139188518
+UniRef50_P46513: Carbonic anhydrase 2 (Fragment)	0.4138444142
+UniRef50_P46513: Carbonic anhydrase 2 (Fragment)|unclassified	0.4138444142
+UniRef50_J3GGX0	0.4137718234
+UniRef50_J3GGX0|unclassified	0.4137718234
+UniRef50_UPI000378120C: hypothetical protein	0.4137687838
+UniRef50_UPI000378120C: hypothetical protein|unclassified	0.4137687838
+UniRef50_UPI000380CA6B: hypothetical protein	0.4137105247
+UniRef50_UPI000380CA6B: hypothetical protein|unclassified	0.4137105247
+UniRef50_H2FLG9: Protein GRSP-2, isoform f	0.4136771092
+UniRef50_H2FLG9: Protein GRSP-2, isoform f|unclassified	0.4136771092
+UniRef50_Q2NRD0	0.4136222472
+UniRef50_Q2NRD0|unclassified	0.4136222472
+UniRef50_V0W8G1	0.4135949213
+UniRef50_V0W8G1|unclassified	0.4135949213
+UniRef50_I1F0Y4	0.4135793772
+UniRef50_I1F0Y4|unclassified	0.4135793772
+UniRef50_E4MZ95	0.4135789052
+UniRef50_E4MZ95|unclassified	0.4135789052
+UniRef50_A9LZF1: P-type cation-transporting ATPase	0.4135649297
+UniRef50_A9LZF1: P-type cation-transporting ATPase|g__Neisseria.s__Neisseria_meningitidis	0.4135649297
+UniRef50_C6WDZ3: PE-PGRS family protein	0.4135184314
+UniRef50_C6WDZ3: PE-PGRS family protein|unclassified	0.4135184314
+UniRef50_U5SCD0	0.4134861492
+UniRef50_U5SCD0|unclassified	0.4134861492
+UniRef50_S2HM33	0.4134741073
+UniRef50_S2HM33|unclassified	0.4134741073
+UniRef50_UPI0004783EFD: dihydroxyacetone kinase	0.4134268161
+UniRef50_UPI0004783EFD: dihydroxyacetone kinase|unclassified	0.4134268161
+UniRef50_F0T7M1	0.4134012052
+UniRef50_F0T7M1|unclassified	0.4134012052
+UniRef50_UPI00036A0176: hypothetical protein	0.4133561461
+UniRef50_UPI00036A0176: hypothetical protein|unclassified	0.4133561461
+UniRef50_UPI00029A8BE1: LysR family transcriptional regulator, partial	0.4133346050
+UniRef50_UPI00029A8BE1: LysR family transcriptional regulator, partial|unclassified	0.4133346050
+UniRef50_Q8ZAQ8: Endonuclease V	0.4133120570
+UniRef50_Q8ZAQ8: Endonuclease V|unclassified	0.4133120570
+UniRef50_UPI00037B3D42: hypothetical protein	0.4133085521
+UniRef50_UPI00037B3D42: hypothetical protein|unclassified	0.4133085521
+UniRef50_UPI0002FA9CD2: drug:proton antiporter	0.4132849796
+UniRef50_UPI0002FA9CD2: drug:proton antiporter|unclassified	0.4132849796
+UniRef50_N9DHX4	0.4132384272
+UniRef50_N9DHX4|unclassified	0.4132384272
+UniRef50_A0A021PU23	0.4132069667
+UniRef50_A0A021PU23|unclassified	0.4132069667
+UniRef50_UPI000288A2EE: biopolymer transporter TolR, partial	0.4131685547
+UniRef50_UPI000288A2EE: biopolymer transporter TolR, partial|unclassified	0.4131685547
+UniRef50_A0A033UQ58	0.4131672191
+UniRef50_A0A033UQ58|unclassified	0.4131672191
+UniRef50_A1B8W7	0.4131163614
+UniRef50_A1B8W7|unclassified	0.4131163614
+UniRef50_UPI0003B52146: peptide ABC transporter substrate-binding protein	0.4131162297
+UniRef50_UPI0003B52146: peptide ABC transporter substrate-binding protein|unclassified	0.4131162297
+UniRef50_C3K0N3: Acyl carrier protein	0.4130955525
+UniRef50_C3K0N3: Acyl carrier protein|unclassified	0.4130955525
+UniRef50_K1GHW9	0.4130934181
+UniRef50_K1GHW9|unclassified	0.4130934181
+UniRef50_F5Q1L5: Cation efflux system protein cusB domain protein	0.4130567189
+UniRef50_F5Q1L5: Cation efflux system protein cusB domain protein|unclassified	0.4130567189
+UniRef50_UPI00046514ED: hypothetical protein	0.4130418326
+UniRef50_UPI00046514ED: hypothetical protein|unclassified	0.4130418326
+UniRef50_Q8W6J1	0.4130291937
+UniRef50_Q8W6J1|unclassified	0.4130291937
+UniRef50_UPI0003787A56: hypothetical protein	0.4130000441
+UniRef50_UPI0003787A56: hypothetical protein|unclassified	0.4130000441
+UniRef50_UPI0003752A98: hypothetical protein	0.4129372172
+UniRef50_UPI0003752A98: hypothetical protein|unclassified	0.4129372172
+UniRef50_P58056: NAD kinase	0.4128526960
+UniRef50_P58056: NAD kinase|unclassified	0.4128526960
+UniRef50_R1DH94	0.4128515715
+UniRef50_R1DH94|unclassified	0.4128515715
+UniRef50_E6Q0D3	0.4128315312
+UniRef50_E6Q0D3|unclassified	0.4128315312
+UniRef50_A0A031ML29: Secretin	0.4128086998
+UniRef50_A0A031ML29: Secretin|unclassified	0.4128086998
+UniRef50_UPI00035D6EBB: MULTISPECIES: hypothetical protein	0.4127529751
+UniRef50_UPI00035D6EBB: MULTISPECIES: hypothetical protein|unclassified	0.4127529751
+UniRef50_UPI00046577D3: dihydroxy-acid dehydratase	0.4127279235
+UniRef50_UPI00046577D3: dihydroxy-acid dehydratase|unclassified	0.4127279235
+UniRef50_J8YF07: Ferric enterobactin transporter binding domain protein	0.4125765188
+UniRef50_J8YF07: Ferric enterobactin transporter binding domain protein|unclassified	0.4125765188
+UniRef50_D2J9H8: Replication initiator protein A	0.4125016769
+UniRef50_D2J9H8: Replication initiator protein A|unclassified	0.4125016769
+UniRef50_Q58365: Histidinol-phosphate aminotransferase	0.4124521197
+UniRef50_Q58365: Histidinol-phosphate aminotransferase|unclassified	0.4124521197
+UniRef50_D3V9Y8	0.4124510859
+UniRef50_D3V9Y8|unclassified	0.4124510859
+UniRef50_F0Y056	0.4124144263
+UniRef50_F0Y056|unclassified	0.4124144263
+UniRef50_UPI00035FD70A: DNA invertase	0.4123046337
+UniRef50_UPI00035FD70A: DNA invertase|unclassified	0.4123046337
+UniRef50_A8ERU2	0.4122707923
+UniRef50_A8ERU2|unclassified	0.4122707923
+UniRef50_UPI0004098CF0: hypothetical protein	0.4122634518
+UniRef50_UPI0004098CF0: hypothetical protein|unclassified	0.4122634518
+UniRef50_UPI00037E9D23: ABC transporter substrate-binding protein	0.4122376448
+UniRef50_UPI00037E9D23: ABC transporter substrate-binding protein|unclassified	0.4122376448
+UniRef50_UPI0003AB3DEF: hypothetical protein	0.4122240122
+UniRef50_UPI0003AB3DEF: hypothetical protein|unclassified	0.4122240122
+UniRef50_Q28VS4	0.4121977009
+UniRef50_Q28VS4|unclassified	0.4121977009
+UniRef50_UPI00046FC2A6: hypothetical protein	0.4121861859
+UniRef50_UPI00046FC2A6: hypothetical protein|unclassified	0.4121861859
+UniRef50_UPI0004708D1E: hypothetical protein, partial	0.4120507732
+UniRef50_UPI0004708D1E: hypothetical protein, partial|unclassified	0.4120507732
+UniRef50_UPI00037DFBE2: hypothetical protein	0.4119283733
+UniRef50_UPI00037DFBE2: hypothetical protein|unclassified	0.4119283733
+UniRef50_W5XBH9: Protein kinase/transcriptional regulator	0.4118484401
+UniRef50_W5XBH9: Protein kinase/transcriptional regulator|unclassified	0.4118484401
+UniRef50_UPI0001911795: bifunctional GDP-fucose synthetase: GDP-4-dehydro-6-deoxy-D-mannose epimerase and, partial	0.4118361347
+UniRef50_UPI0001911795: bifunctional GDP-fucose synthetase: GDP-4-dehydro-6-deoxy-D-mannose epimerase and, partial|unclassified	0.4118361347
+UniRef50_UPI00038FF60A: hypothetical protein	0.4117855087
+UniRef50_UPI00038FF60A: hypothetical protein|unclassified	0.4117855087
+UniRef50_E4YB67: Whole genome shotgun assembly, allelic scaffold set, scaffold scaffoldA_99 (Fragment)	0.4117588862
+UniRef50_E4YB67: Whole genome shotgun assembly, allelic scaffold set, scaffold scaffoldA_99 (Fragment)|unclassified	0.4117588862
+UniRef50_J0QJS2	0.4117565009
+UniRef50_J0QJS2|unclassified	0.4117565009
+UniRef50_UPI00018507BC: hypothetical protein	0.4117490441
+UniRef50_UPI00018507BC: hypothetical protein|unclassified	0.4117490441
+UniRef50_UPI0004748D6C: hypothetical protein	0.4117201741
+UniRef50_UPI0004748D6C: hypothetical protein|unclassified	0.4117201741
+UniRef50_Q7VGG0: Phosphopantetheine adenylyltransferase	0.4117180157
+UniRef50_Q7VGG0: Phosphopantetheine adenylyltransferase|unclassified	0.4117180157
+UniRef50_UPI00046CAC84: hypothetical protein	0.4117092893
+UniRef50_UPI00046CAC84: hypothetical protein|unclassified	0.4117092893
+UniRef50_UPI000466EE81: hypothetical protein	0.4116903917
+UniRef50_UPI000466EE81: hypothetical protein|unclassified	0.4116903917
+UniRef50_Q89X84: Probable nicotinate-nucleotide adenylyltransferase	0.4116895020
+UniRef50_Q89X84: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.4116895020
+UniRef50_R9VBL3	0.4116662838
+UniRef50_R9VBL3|unclassified	0.4116662838
+UniRef50_UPI0003B4988B: glycine cleavage system aminomethyltransferase T	0.4116603119
+UniRef50_UPI0003B4988B: glycine cleavage system aminomethyltransferase T|unclassified	0.4116603119
+UniRef50_UPI0003EF5A08: hypothetical protein	0.4115829615
+UniRef50_UPI0003EF5A08: hypothetical protein|unclassified	0.4115829615
+UniRef50_A4NDN1: Predicted membrane protein	0.4115724324
+UniRef50_A4NDN1: Predicted membrane protein|unclassified	0.4115724324
+UniRef50_UPI00037D31D4: universal stress protein UspA	0.4115264100
+UniRef50_UPI00037D31D4: universal stress protein UspA|unclassified	0.4115264100
+UniRef50_V9QYL5: Peptide synthase	0.4115226337
+UniRef50_V9QYL5: Peptide synthase|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.4115226337
+UniRef50_I1EYZ6	0.4114747113
+UniRef50_I1EYZ6|unclassified	0.4114747113
+UniRef50_C0DVB0	0.4114636529
+UniRef50_C0DVB0|unclassified	0.4114636529
+UniRef50_UPI0004692399: spermidine/putrescine ABC transporter ATPase	0.4114424926
+UniRef50_UPI0004692399: spermidine/putrescine ABC transporter ATPase|unclassified	0.4114424926
+UniRef50_UPI0004561385: hypothetical protein PFL1_01596	0.4114399643
+UniRef50_UPI0004561385: hypothetical protein PFL1_01596|unclassified	0.4114399643
+UniRef50_B9KPH2	0.4114331230
+UniRef50_B9KPH2|unclassified	0.4114331230
+UniRef50_R6JDC3: Binding-protein-dependent transport systems inner membrane component	0.4114172205
+UniRef50_R6JDC3: Binding-protein-dependent transport systems inner membrane component|unclassified	0.4114172205
+UniRef50_UPI0004759D2E: magnesium transporter	0.4114137850
+UniRef50_UPI0004759D2E: magnesium transporter|unclassified	0.4114137850
+UniRef50_R0UHS1: Putative phage associated protein	0.4114039351
+UniRef50_R0UHS1: Putative phage associated protein|unclassified	0.4114039351
+UniRef50_Q019C2: WGS project CAID00000000 data, contig chromosome 05	0.4113004431
+UniRef50_Q019C2: WGS project CAID00000000 data, contig chromosome 05|unclassified	0.4113004431
+UniRef50_A0A035I6C4	0.4112938796
+UniRef50_A0A035I6C4|unclassified	0.4112938796
+UniRef50_Q2YA02: Acetylglutamate kinase	0.4112308344
+UniRef50_Q2YA02: Acetylglutamate kinase|unclassified	0.4112308344
+UniRef50_Q2YV61	0.4112285462
+UniRef50_Q2YV61|unclassified	0.4112285462
+UniRef50_W1DU15	0.4112005159
+UniRef50_W1DU15|unclassified	0.4112005159
+UniRef50_UPI0003607CB8: hypothetical protein	0.4111978964
+UniRef50_UPI0003607CB8: hypothetical protein|unclassified	0.4111978964
+UniRef50_UPI00042B06F2: Isocitrate/isopropylmalate dehydrogenase family protein isoform 4	0.4111649683
+UniRef50_UPI00042B06F2: Isocitrate/isopropylmalate dehydrogenase family protein isoform 4|unclassified	0.4111649683
+UniRef50_W0CFL9	0.4111391115
+UniRef50_W0CFL9|unclassified	0.4111391115
+UniRef50_A0QI67	0.4110805729
+UniRef50_A0QI67|unclassified	0.4110805729
+UniRef50_UPI000475E629: hypothetical protein	0.4110730605
+UniRef50_UPI000475E629: hypothetical protein|unclassified	0.4110730605
+UniRef50_N7UTL5	0.4110587694
+UniRef50_N7UTL5|unclassified	0.4110587694
+UniRef50_N1N5F7: Clumping factor ClfB, fibrinogen binding protein	0.4110152076
+UniRef50_N1N5F7: Clumping factor ClfB, fibrinogen binding protein|g__Staphylococcus.s__Staphylococcus_aureus	0.4110152076
+UniRef50_W0S4A5	0.4109885496
+UniRef50_W0S4A5|unclassified	0.4109885496
+UniRef50_Q9AAA2: MaoC family protein	0.4109649352
+UniRef50_Q9AAA2: MaoC family protein|unclassified	0.4109649352
+UniRef50_B0RBL8: Putative heme synthetase	0.4109573471
+UniRef50_B0RBL8: Putative heme synthetase|unclassified	0.4109573471
+UniRef50_U5VXD2	0.4109530102
+UniRef50_U5VXD2|unclassified	0.4109530102
+UniRef50_J9NZ50	0.4109147497
+UniRef50_J9NZ50|unclassified	0.4109147497
+UniRef50_UPI0004663F41: calcium-binding protein, partial	0.4109117203
+UniRef50_UPI0004663F41: calcium-binding protein, partial|unclassified	0.4109117203
+UniRef50_M9M3J5	0.4107634018
+UniRef50_M9M3J5|unclassified	0.4107634018
+UniRef50_UPI000378D4CE: hypothetical protein, partial	0.4107089920
+UniRef50_UPI000378D4CE: hypothetical protein, partial|unclassified	0.4107089920
+UniRef50_B1ES30	0.4106851675
+UniRef50_B1ES30|unclassified	0.4106851675
+UniRef50_V4R372	0.4106592848
+UniRef50_V4R372|unclassified	0.4106592848
+UniRef50_Q2Y9K0: Elongation factor P	0.4106209112
+UniRef50_Q2Y9K0: Elongation factor P|unclassified	0.4106209112
+UniRef50_H3USC0	0.4106033246
+UniRef50_H3USC0|unclassified	0.4106033246
+UniRef50_A8TJK3	0.4105913910
+UniRef50_A8TJK3|unclassified	0.4105913910
+UniRef50_C3DW08: ABC transporter	0.4105881625
+UniRef50_C3DW08: ABC transporter|unclassified	0.4105881625
+UniRef50_UPI00031A272E: hypothetical protein	0.4104383614
+UniRef50_UPI00031A272E: hypothetical protein|unclassified	0.4104383614
+UniRef50_S9S9F3: PRC-barrel domain-containing protein	0.4104063498
+UniRef50_S9S9F3: PRC-barrel domain-containing protein|unclassified	0.4104063498
+UniRef50_UPI00037FB172: hypothetical protein, partial	0.4103668062
+UniRef50_UPI00037FB172: hypothetical protein, partial|unclassified	0.4103668062
+UniRef50_W2ELZ6	0.4103383444
+UniRef50_W2ELZ6|unclassified	0.4103383444
+UniRef50_UPI00029B14A5: threonyl-tRNA ligase, partial	0.4103165439
+UniRef50_UPI00029B14A5: threonyl-tRNA ligase, partial|unclassified	0.4103165439
+UniRef50_W0XP65	0.4103097620
+UniRef50_W0XP65|unclassified	0.4103097620
+UniRef50_UPI00031ED005: hypothetical protein	0.4102925907
+UniRef50_UPI00031ED005: hypothetical protein|unclassified	0.4102925907
+UniRef50_UPI000467D949: hypothetical protein	0.4102924716
+UniRef50_UPI000467D949: hypothetical protein|unclassified	0.4102924716
+UniRef50_L3SI68	0.4102856112
+UniRef50_L3SI68|unclassified	0.4102856112
+UniRef50_Q2GPG8: Predicted protein	0.4102758122
+UniRef50_Q2GPG8: Predicted protein|unclassified	0.4102758122
+UniRef50_UPI0003B68BF3: 5,10-methylenetetrahydrofolate reductase	0.4102633193
+UniRef50_UPI0003B68BF3: 5,10-methylenetetrahydrofolate reductase|unclassified	0.4102633193
+UniRef50_C2SUJ1: Transposase A	0.4102555315
+UniRef50_C2SUJ1: Transposase A|unclassified	0.4102555315
+UniRef50_P0A5I3: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase 2	0.4101541128
+UniRef50_P0A5I3: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase 2|unclassified	0.4101541128
+UniRef50_D6X8X5: Beta-ketoacyl synthase (Fragment)	0.4101170957
+UniRef50_D6X8X5: Beta-ketoacyl synthase (Fragment)|unclassified	0.4101170957
+UniRef50_D0LY72: Putative transcriptional regulator, Crp/Fnr family	0.4100968177
+UniRef50_D0LY72: Putative transcriptional regulator, Crp/Fnr family|unclassified	0.4100968177
+UniRef50_UPI00046F73F2: hypothetical protein, partial	0.4100489460
+UniRef50_UPI00046F73F2: hypothetical protein, partial|unclassified	0.4100489460
+UniRef50_UPI000377FDC4: hypothetical protein	0.4099617615
+UniRef50_UPI000377FDC4: hypothetical protein|unclassified	0.4099617615
+UniRef50_F3Y5B2: Putative fluoride ion transporter CrcB	0.4099039372
+UniRef50_F3Y5B2: Putative fluoride ion transporter CrcB|unclassified	0.4099039372
+UniRef50_Q83GA7: Oligoribonuclease	0.4098467620
+UniRef50_Q83GA7: Oligoribonuclease|unclassified	0.4098467620
+UniRef50_G4LES1: AsmA family protein	0.4097750735
+UniRef50_G4LES1: AsmA family protein|unclassified	0.4097750735
+UniRef50_B0JMB5	0.4097509076
+UniRef50_B0JMB5|unclassified	0.4097509076
+UniRef50_E6MFY8: Radical SAM domain protein	0.4097470792
+UniRef50_E6MFY8: Radical SAM domain protein|unclassified	0.4097470792
+UniRef50_K1YIM5	0.4097101811
+UniRef50_K1YIM5|unclassified	0.4097101811
+UniRef50_A0A058ZKZ2: Beta-lactamase domain-containing protein	0.4096779697
+UniRef50_A0A058ZKZ2: Beta-lactamase domain-containing protein|unclassified	0.4096779697
+UniRef50_A3V2A1: Putative NAD-specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ	0.4096351038
+UniRef50_A3V2A1: Putative NAD-specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ|unclassified	0.4096351038
+UniRef50_A1AZS2	0.4096207664
+UniRef50_A1AZS2|unclassified	0.4096207664
+UniRef50_P59610: Arginine biosynthesis bifunctional protein ArgJ	0.4096196064
+UniRef50_P59610: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.4096196064
+UniRef50_Q5FPL0: GMP synthase [glutamine-hydrolyzing]	0.4096078311
+UniRef50_Q5FPL0: GMP synthase [glutamine-hydrolyzing]|unclassified	0.4096078311
+UniRef50_UPI0003800FB3: hypothetical protein	0.4096003550
+UniRef50_UPI0003800FB3: hypothetical protein|unclassified	0.4096003550
+UniRef50_M1JJW5: Carbamoyl phosphate phosphatase HypF	0.4095554129
+UniRef50_M1JJW5: Carbamoyl phosphate phosphatase HypF|unclassified	0.4095554129
+UniRef50_R4U9Q9: PPE family protein	0.4095423858
+UniRef50_R4U9Q9: PPE family protein|unclassified	0.4095423858
+UniRef50_B4UJF7	0.4095322874
+UniRef50_B4UJF7|unclassified	0.4095322874
+UniRef50_UPI000237A991: HK97 family phage prohead protease	0.4094609122
+UniRef50_UPI000237A991: HK97 family phage prohead protease|unclassified	0.4094609122
+UniRef50_UPI00047BF082: hypothetical protein	0.4093714166
+UniRef50_UPI00047BF082: hypothetical protein|unclassified	0.4093714166
+UniRef50_UPI0002192A6F: hypothetical protein, partial	0.4092996183
+UniRef50_UPI0002192A6F: hypothetical protein, partial|unclassified	0.4092996183
+UniRef50_R4SZP1	0.4092577481
+UniRef50_R4SZP1|unclassified	0.4092577481
+UniRef50_UPI0002D5A719: hypothetical protein	0.4092289130
+UniRef50_UPI0002D5A719: hypothetical protein|unclassified	0.4092289130
+UniRef50_M5EDH0: Genomic scaffold, msy_sf_26	0.4091927200
+UniRef50_M5EDH0: Genomic scaffold, msy_sf_26|unclassified	0.4091927200
+UniRef50_UPI0004715EC0: hypothetical protein	0.4091539938
+UniRef50_UPI0004715EC0: hypothetical protein|unclassified	0.4091539938
+UniRef50_UPI0003B5ECB0: putrescine/spermidine ABC transporter substrate-binding protein	0.4091342934
+UniRef50_UPI0003B5ECB0: putrescine/spermidine ABC transporter substrate-binding protein|unclassified	0.4091342934
+UniRef50_B6C5I5	0.4091259325
+UniRef50_B6C5I5|unclassified	0.4091259325
+UniRef50_UPI000395D4EE: DOPA 4,5-dioxygenase	0.4091233812
+UniRef50_UPI000395D4EE: DOPA 4,5-dioxygenase|unclassified	0.4091233812
+UniRef50_W9GGB6	0.4090720347
+UniRef50_W9GGB6|unclassified	0.4090720347
+UniRef50_UPI000365FD49: hypothetical protein	0.4090709256
+UniRef50_UPI000365FD49: hypothetical protein|unclassified	0.4090709256
+UniRef50_UPI0003698C0E: hypothetical protein, partial	0.4090184266
+UniRef50_UPI0003698C0E: hypothetical protein, partial|unclassified	0.4090184266
+UniRef50_UPI00016B1FF0: beta-lactamase	0.4089932962
+UniRef50_UPI00016B1FF0: beta-lactamase|unclassified	0.4089932962
+UniRef50_Q8A2T6: S-adenosylmethionine synthase	0.4089301527
+UniRef50_Q8A2T6: S-adenosylmethionine synthase|unclassified	0.4089301527
+UniRef50_E4HNQ2	0.4089216242
+UniRef50_E4HNQ2|unclassified	0.4089216242
+UniRef50_S9QX59: Asparagine synthetase A	0.4089215535
+UniRef50_S9QX59: Asparagine synthetase A|unclassified	0.4089215535
+UniRef50_M6L282: Thioredoxin-disulfide reductase family protein	0.4089163204
+UniRef50_M6L282: Thioredoxin-disulfide reductase family protein|unclassified	0.4089163204
+UniRef50_UPI000477CD68: 3-oxoacyl-ACP synthase	0.4088939421
+UniRef50_UPI000477CD68: 3-oxoacyl-ACP synthase|unclassified	0.4088939421
+UniRef50_A3UYY4	0.4088545404
+UniRef50_A3UYY4|unclassified	0.4088545404
+UniRef50_W4KTD2: Transposase	0.4088414313
+UniRef50_W4KTD2: Transposase|unclassified	0.4088414313
+UniRef50_UPI00047B79A7: molecular chaperone DnaK	0.4088330108
+UniRef50_UPI00047B79A7: molecular chaperone DnaK|unclassified	0.4088330108
+UniRef50_A0A038HP58: AAA domain protein	0.4088273644
+UniRef50_A0A038HP58: AAA domain protein|unclassified	0.4088273644
+UniRef50_W0Z4B7: Secreted protein Hcp	0.4088170872
+UniRef50_W0Z4B7: Secreted protein Hcp|unclassified	0.4088170872
+UniRef50_UPI00047524BB: hypothetical protein	0.4088112459
+UniRef50_UPI00047524BB: hypothetical protein|unclassified	0.4088112459
+UniRef50_UPI00047B361F: hypothetical protein	0.4087779149
+UniRef50_UPI00047B361F: hypothetical protein|unclassified	0.4087779149
+UniRef50_S6WK56: Alginate biosynthesis protein AlgJ	0.4087602644
+UniRef50_S6WK56: Alginate biosynthesis protein AlgJ|unclassified	0.4087602644
+UniRef50_UPI00035E4DB7: hypothetical protein	0.4087593644
+UniRef50_UPI00035E4DB7: hypothetical protein|unclassified	0.4087593644
+UniRef50_A6T769: Acylphosphatase	0.4087462798
+UniRef50_A6T769: Acylphosphatase|unclassified	0.4087462798
+UniRef50_P08262: 5-aminolevulinate synthase	0.4087258552
+UniRef50_P08262: 5-aminolevulinate synthase|unclassified	0.4087258552
+UniRef50_UPI000255891A: TonB-dependent siderophore receptor	0.4087167637
+UniRef50_UPI000255891A: TonB-dependent siderophore receptor|unclassified	0.4087167637
+UniRef50_Q9CL63: Ribose import ATP-binding protein RbsA 2	0.4086975565
+UniRef50_Q9CL63: Ribose import ATP-binding protein RbsA 2|unclassified	0.4086975565
+UniRef50_Q2SDI4	0.4086728789
+UniRef50_Q2SDI4|unclassified	0.4086728789
+UniRef50_U7XVU8	0.4086721742
+UniRef50_U7XVU8|unclassified	0.4086721742
+UniRef50_UPI0004730F16: hypothetical protein	0.4086373082
+UniRef50_UPI0004730F16: hypothetical protein|unclassified	0.4086373082
+UniRef50_UPI00047A6123: transcriptional regulator	0.4086207330
+UniRef50_UPI00047A6123: transcriptional regulator|unclassified	0.4086207330
+UniRef50_UPI0004778BF4: nickel transporter permease NikB	0.4086027591
+UniRef50_UPI0004778BF4: nickel transporter permease NikB|unclassified	0.4086027591
+UniRef50_A0A038GAC7	0.4084733684
+UniRef50_A0A038GAC7|unclassified	0.4084733684
+UniRef50_Q39ZC5: NADH-quinone oxidoreductase subunit A 1	0.4084239137
+UniRef50_Q39ZC5: NADH-quinone oxidoreductase subunit A 1|unclassified	0.4084239137
+UniRef50_UPI000471B3A0: hypothetical protein	0.4083629979
+UniRef50_UPI000471B3A0: hypothetical protein|unclassified	0.4083629979
+UniRef50_R4VHN6: AzlC family protein	0.4083314978
+UniRef50_R4VHN6: AzlC family protein|unclassified	0.4083314978
+UniRef50_A6M2R6	0.4083104021
+UniRef50_A6M2R6|unclassified	0.4083104021
+UniRef50_I3TN43	0.4082524418
+UniRef50_I3TN43|unclassified	0.4082524418
+UniRef50_A0A034SVX0: Possible hypoxanthine oxidase XdhD	0.4082397351
+UniRef50_A0A034SVX0: Possible hypoxanthine oxidase XdhD|unclassified	0.4082397351
+UniRef50_S5XP44: Transposase	0.4081978019
+UniRef50_S5XP44: Transposase|unclassified	0.4081978019
+UniRef50_U6GRH4	0.4081869509
+UniRef50_U6GRH4|unclassified	0.4081869509
+UniRef50_D4YPZ1	0.4081399003
+UniRef50_D4YPZ1|unclassified	0.4081399003
+UniRef50_UPI0004444A88: PREDICTED: putative HTLV-1-related endogenous sequence	0.4081273214
+UniRef50_UPI0004444A88: PREDICTED: putative HTLV-1-related endogenous sequence|unclassified	0.4081273214
+UniRef50_W4VC32	0.4081033450
+UniRef50_W4VC32|unclassified	0.4081033450
+UniRef50_H2A7V6	0.4080896192
+UniRef50_H2A7V6|unclassified	0.4080896192
+UniRef50_A9MM93	0.4080477508
+UniRef50_A9MM93|unclassified	0.4080477508
+UniRef50_UPI000378771B: hypothetical protein	0.4080276390
+UniRef50_UPI000378771B: hypothetical protein|unclassified	0.4080276390
+UniRef50_UPI0003504F65: PREDICTED: peptide methionine sulfoxide reductase MsrA-like	0.4079130150
+UniRef50_UPI0003504F65: PREDICTED: peptide methionine sulfoxide reductase MsrA-like|unclassified	0.4079130150
+UniRef50_Q3AT37: Adenine phosphoribosyltransferase	0.4078946953
+UniRef50_Q3AT37: Adenine phosphoribosyltransferase|unclassified	0.4078946953
+UniRef50_UPI000465695E: ABC transporter	0.4078680314
+UniRef50_UPI000465695E: ABC transporter|unclassified	0.4078680314
+UniRef50_Q6LP62: Pyridoxamine kinase	0.4078521367
+UniRef50_Q6LP62: Pyridoxamine kinase|unclassified	0.4078521367
+UniRef50_UPI00037D435B: hypothetical protein	0.4078349131
+UniRef50_UPI00037D435B: hypothetical protein|unclassified	0.4078349131
+UniRef50_UPI00034D7FF7: hypothetical protein	0.4078087446
+UniRef50_UPI00034D7FF7: hypothetical protein|unclassified	0.4078087446
+UniRef50_Z5XAD0: Aldehyde dehydrogenase	0.4077933218
+UniRef50_Z5XAD0: Aldehyde dehydrogenase|unclassified	0.4077933218
+UniRef50_UPI000289F05E: hypothetical protein	0.4077427544
+UniRef50_UPI000289F05E: hypothetical protein|unclassified	0.4077427544
+UniRef50_E8TLD8	0.4077322664
+UniRef50_E8TLD8|unclassified	0.4077322664
+UniRef50_O34514: o-succinylbenzoate synthase	0.4076977763
+UniRef50_O34514: o-succinylbenzoate synthase|unclassified	0.4076977763
+UniRef50_UPI000375905C: hypothetical protein	0.4076908342
+UniRef50_UPI000375905C: hypothetical protein|unclassified	0.4076908342
+UniRef50_UPI00021925AB: accessory secretory protein Asp2	0.4076547126
+UniRef50_UPI00021925AB: accessory secretory protein Asp2|unclassified	0.4076547126
+UniRef50_J0I8L2	0.4076406266
+UniRef50_J0I8L2|unclassified	0.4076406266
+UniRef50_UPI0002F0E78D: hypothetical protein	0.4076242819
+UniRef50_UPI0002F0E78D: hypothetical protein|unclassified	0.4076242819
+UniRef50_UPI00037A4BA5: hypothetical protein	0.4076149613
+UniRef50_UPI00037A4BA5: hypothetical protein|unclassified	0.4076149613
+UniRef50_UPI0003ACC61C: PREDICTED: serine/arginine repetitive matrix protein 3-like	0.4075654820
+UniRef50_UPI0003ACC61C: PREDICTED: serine/arginine repetitive matrix protein 3-like|unclassified	0.4075654820
+UniRef50_M9RTA8: Phosphoesterase	0.4075441706
+UniRef50_M9RTA8: Phosphoesterase|unclassified	0.4075441706
+UniRef50_Q6L8L1: Circadian clock protein kinase KaiC	0.4075439490
+UniRef50_Q6L8L1: Circadian clock protein kinase KaiC|unclassified	0.4075439490
+UniRef50_UPI0003955F75: 16S rRNA methyltransferase, partial	0.4075337104
+UniRef50_UPI0003955F75: 16S rRNA methyltransferase, partial|unclassified	0.4075337104
+UniRef50_UPI000390375F: Polar amino acid ABC transporter, inner membrane subunit	0.4075149280
+UniRef50_UPI000390375F: Polar amino acid ABC transporter, inner membrane subunit|unclassified	0.4075149280
+UniRef50_G6EMQ8: ABC transporter permease protein	0.4075099223
+UniRef50_G6EMQ8: ABC transporter permease protein|unclassified	0.4075099223
+UniRef50_UPI0002557D3C: ABC transporter	0.4074756432
+UniRef50_UPI0002557D3C: ABC transporter|unclassified	0.4074756432
+UniRef50_R4YFP8: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.4074489071
+UniRef50_R4YFP8: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|unclassified	0.4074489071
+UniRef50_Q1LU78: Nucleoside diphosphate kinase	0.4074017557
+UniRef50_Q1LU78: Nucleoside diphosphate kinase|unclassified	0.4074017557
+UniRef50_UPI000359DA59: PREDICTED: forkhead box protein E1-like	0.4074014383
+UniRef50_UPI000359DA59: PREDICTED: forkhead box protein E1-like|unclassified	0.4074014383
+UniRef50_R6FF41	0.4073981070
+UniRef50_R6FF41|unclassified	0.4073981070
+UniRef50_UPI0004093C53: signal peptidase	0.4073886523
+UniRef50_UPI0004093C53: signal peptidase|unclassified	0.4073886523
+UniRef50_UPI00034B8D20: hypothetical protein	0.4073631416
+UniRef50_UPI00034B8D20: hypothetical protein|unclassified	0.4073631416
+UniRef50_Z3PPG6: Serine-aspartate repeat-containing protein C (Fragment)	0.4073406343
+UniRef50_Z3PPG6: Serine-aspartate repeat-containing protein C (Fragment)|unclassified	0.4073406343
+UniRef50_UPI0002492FEF: luciferase	0.4072695368
+UniRef50_UPI0002492FEF: luciferase|unclassified	0.4072695368
+UniRef50_F8G6P0	0.4071897151
+UniRef50_F8G6P0|unclassified	0.4071897151
+UniRef50_V6UWS0	0.4071413198
+UniRef50_V6UWS0|unclassified	0.4071413198
+UniRef50_UPI000262CF8C: carbon storage regulator	0.4071365178
+UniRef50_UPI000262CF8C: carbon storage regulator|unclassified	0.4071365178
+UniRef50_Q9XEU9	0.4071160526
+UniRef50_Q9XEU9|unclassified	0.4071160526
+UniRef50_UPI00047C0212: hypothetical protein	0.4070762273
+UniRef50_UPI00047C0212: hypothetical protein|unclassified	0.4070762273
+UniRef50_G2T679: CRISPR-associated helicase Cas3 family protein	0.4070687679
+UniRef50_G2T679: CRISPR-associated helicase Cas3 family protein|unclassified	0.4070687679
+UniRef50_C1DH84	0.4070603389
+UniRef50_C1DH84|unclassified	0.4070603389
+UniRef50_UPI0003B33D56: 16S rRNA methyltransferase	0.4069635255
+UniRef50_UPI0003B33D56: 16S rRNA methyltransferase|unclassified	0.4069635255
+UniRef50_UPI0003779ECC: hypothetical protein	0.4069198161
+UniRef50_UPI0003779ECC: hypothetical protein|unclassified	0.4069198161
+UniRef50_B9EUD8	0.4068822233
+UniRef50_B9EUD8|unclassified	0.4068822233
+UniRef50_R4YNV0	0.4068580778
+UniRef50_R4YNV0|unclassified	0.4068580778
+UniRef50_Q7VJY3: Chaperone protein ClpB	0.4068348251
+UniRef50_Q7VJY3: Chaperone protein ClpB|g__Helicobacter.s__Helicobacter_pylori	0.4068348251
+UniRef50_A1FA69: Probable tRNA modification GTPase TrmE (Fragment)	0.4068343038
+UniRef50_A1FA69: Probable tRNA modification GTPase TrmE (Fragment)|unclassified	0.4068343038
+UniRef50_UPI000470BA4B: hypothetical protein, partial	0.4068167415
+UniRef50_UPI000470BA4B: hypothetical protein, partial|unclassified	0.4068167415
+UniRef50_T5AX75: Glycine cleavage H-family protein	0.4067938855
+UniRef50_T5AX75: Glycine cleavage H-family protein|unclassified	0.4067938855
+UniRef50_UPI00037DDB96: hypothetical protein	0.4067688602
+UniRef50_UPI00037DDB96: hypothetical protein|unclassified	0.4067688602
+UniRef50_UPI000477452D: histidine kinase	0.4067532109
+UniRef50_UPI000477452D: histidine kinase|unclassified	0.4067532109
+UniRef50_V1V9W3: CRISPR-associated helicase Cas3	0.4067339567
+UniRef50_V1V9W3: CRISPR-associated helicase Cas3|unclassified	0.4067339567
+UniRef50_UPI0001CC0D72: hypothetical protein	0.4067201611
+UniRef50_UPI0001CC0D72: hypothetical protein|unclassified	0.4067201611
+UniRef50_C7J2E3: Os05g0127400 protein	0.4066518736
+UniRef50_C7J2E3: Os05g0127400 protein|unclassified	0.4066518736
+UniRef50_G2C5K5: Putative nucleoside transporter yegT	0.4066369766
+UniRef50_G2C5K5: Putative nucleoside transporter yegT|unclassified	0.4066369766
+UniRef50_V9ZT98	0.4066302885
+UniRef50_V9ZT98|unclassified	0.4066302885
+UniRef50_S3BQ46	0.4066204930
+UniRef50_S3BQ46|unclassified	0.4066204930
+UniRef50_UPI00047A791B: phosphatidylcholine synthase	0.4065860317
+UniRef50_UPI00047A791B: phosphatidylcholine synthase|unclassified	0.4065860317
+UniRef50_W8TQ91: Cold-shock protein	0.4065711139
+UniRef50_W8TQ91: Cold-shock protein|unclassified	0.4065711139
+UniRef50_UPI00045E886C: hypothetical protein	0.4065699253
+UniRef50_UPI00045E886C: hypothetical protein|unclassified	0.4065699253
+UniRef50_UPI0003B6B2AB: nickel ABC transporter permease	0.4065119198
+UniRef50_UPI0003B6B2AB: nickel ABC transporter permease|unclassified	0.4065119198
+UniRef50_F1W301: Oxidoreductase	0.4065016196
+UniRef50_F1W301: Oxidoreductase|unclassified	0.4065016196
+UniRef50_G4B3Z8	0.4064831365
+UniRef50_G4B3Z8|unclassified	0.4064831365
+UniRef50_UPI0003B57D86: histidine kinase	0.4064630989
+UniRef50_UPI0003B57D86: histidine kinase|unclassified	0.4064630989
+UniRef50_R7D5Z1	0.4063314848
+UniRef50_R7D5Z1|unclassified	0.4063314848
+UniRef50_UPI000364BE1D: hypothetical protein	0.4063164902
+UniRef50_UPI000364BE1D: hypothetical protein|unclassified	0.4063164902
+UniRef50_W8ZQY8	0.4062967800
+UniRef50_W8ZQY8|unclassified	0.4062967800
+UniRef50_UPI000479B32F: hypothetical protein	0.4062839328
+UniRef50_UPI000479B32F: hypothetical protein|unclassified	0.4062839328
+UniRef50_M5EZ09: Heme-molybdoenzyme heme-containing subunit YedZ cytochrome b subunit	0.4062581131
+UniRef50_M5EZ09: Heme-molybdoenzyme heme-containing subunit YedZ cytochrome b subunit|unclassified	0.4062581131
+UniRef50_W4NLY9: Mobile element protein	0.4062140611
+UniRef50_W4NLY9: Mobile element protein|unclassified	0.4062140611
+UniRef50_E5U2C0: Short-chain dehydrogenase/reductase SDR (Fragment)	0.4062081325
+UniRef50_E5U2C0: Short-chain dehydrogenase/reductase SDR (Fragment)|unclassified	0.4062081325
+UniRef50_R6W4I9: Glycerol-3-phosphate dehydrogenase anaerobic B subunit	0.4061887252
+UniRef50_R6W4I9: Glycerol-3-phosphate dehydrogenase anaerobic B subunit|unclassified	0.4061887252
+UniRef50_Q3JPQ6	0.4061738424
+UniRef50_Q3JPQ6|unclassified	0.4061738424
+UniRef50_S9QXV0	0.4061725289
+UniRef50_S9QXV0|unclassified	0.4061725289
+UniRef50_UPI0002D3498A: hypothetical protein	0.4061711558
+UniRef50_UPI0002D3498A: hypothetical protein|unclassified	0.4061711558
+UniRef50_M9R5M6	0.4061627141
+UniRef50_M9R5M6|unclassified	0.4061627141
+UniRef50_UPI00035C9DBC: hypothetical protein, partial	0.4061103830
+UniRef50_UPI00035C9DBC: hypothetical protein, partial|unclassified	0.4061103830
+UniRef50_UPI000471162E: hypothetical protein	0.4060554894
+UniRef50_UPI000471162E: hypothetical protein|unclassified	0.4060554894
+UniRef50_F5Y2A2: Candidate membrane protein	0.4060499067
+UniRef50_F5Y2A2: Candidate membrane protein|unclassified	0.4060499067
+UniRef50_A8JGS9: DnaJ-like protein (Fragment)	0.4060089322
+UniRef50_A8JGS9: DnaJ-like protein (Fragment)|unclassified	0.4060089322
+UniRef50_A8LMI4	0.4059936047
+UniRef50_A8LMI4|unclassified	0.4059936047
+UniRef50_UPI0003B6C94F: murein peptide amidase A	0.4059895502
+UniRef50_UPI0003B6C94F: murein peptide amidase A|unclassified	0.4059895502
+UniRef50_W0YP93: Major facilitator family transporter	0.4059525369
+UniRef50_W0YP93: Major facilitator family transporter|unclassified	0.4059525369
+UniRef50_J1QFD6	0.4059326877
+UniRef50_J1QFD6|unclassified	0.4059326877
+UniRef50_F7TAJ7	0.4058955199
+UniRef50_F7TAJ7|unclassified	0.4058955199
+UniRef50_UPI000347A39B: diguanylate cyclase	0.4058692823
+UniRef50_UPI000347A39B: diguanylate cyclase|unclassified	0.4058692823
+UniRef50_UPI000420540B: hypothetical protein	0.4058513612
+UniRef50_UPI000420540B: hypothetical protein|unclassified	0.4058513612
+UniRef50_R1G0M7	0.4058441558
+UniRef50_R1G0M7|unclassified	0.4058441558
+UniRef50_UPI0003B5E99A: ABC transporter ATP-binding protein	0.4058050229
+UniRef50_UPI0003B5E99A: ABC transporter ATP-binding protein|unclassified	0.4058050229
+UniRef50_S5RJR6: ABC-type multidrug transport system, permease component	0.4057317909
+UniRef50_S5RJR6: ABC-type multidrug transport system, permease component|unclassified	0.4057317909
+UniRef50_W5TDQ5	0.4057234008
+UniRef50_W5TDQ5|unclassified	0.4057234008
+UniRef50_A8I4H1: Putative lipoprotein	0.4057004582
+UniRef50_A8I4H1: Putative lipoprotein|unclassified	0.4057004582
+UniRef50_M1ARB1	0.4057004333
+UniRef50_M1ARB1|unclassified	0.4057004333
+UniRef50_M9KQI0	0.4056999673
+UniRef50_M9KQI0|unclassified	0.4056999673
+UniRef50_D5CQL6: Diheme cytochrome c	0.4056987596
+UniRef50_D5CQL6: Diheme cytochrome c|unclassified	0.4056987596
+UniRef50_UPI0003779D2C: hypothetical protein	0.4056855056
+UniRef50_UPI0003779D2C: hypothetical protein|unclassified	0.4056855056
+UniRef50_UPI00046437F8: MULTISPECIES: cell division protein DivIVA	0.4056837804
+UniRef50_UPI00046437F8: MULTISPECIES: cell division protein DivIVA|unclassified	0.4056837804
+UniRef50_G7M388: CoA-disulfide reductase	0.4056795132
+UniRef50_G7M388: CoA-disulfide reductase|g__Clostridium.s__Clostridium_beijerinckii	0.4056795132
+UniRef50_Q1LLW0	0.4056589903
+UniRef50_Q1LLW0|unclassified	0.4056589903
+UniRef50_V5MKN0	0.4056490870
+UniRef50_V5MKN0|unclassified	0.4056490870
+UniRef50_Q7VRW1: NADH-quinone oxidoreductase subunit K	0.4056364041
+UniRef50_Q7VRW1: NADH-quinone oxidoreductase subunit K|unclassified	0.4056364041
+UniRef50_A0A011I3P7: Putative transposase	0.4055965698
+UniRef50_A0A011I3P7: Putative transposase|unclassified	0.4055965698
+UniRef50_UPI0004413609: hypothetical protein AURDEDRAFT_158331	0.4055655651
+UniRef50_UPI0004413609: hypothetical protein AURDEDRAFT_158331|unclassified	0.4055655651
+UniRef50_Q9P9H1: DNA primase small subunit PriS	0.4055460911
+UniRef50_Q9P9H1: DNA primase small subunit PriS|unclassified	0.4055460911
+UniRef50_UPI00035A13B0: PREDICTED: A disintegrin and metalloproteinase with thrombospondin motifs 8, partial	0.4055150041
+UniRef50_UPI00035A13B0: PREDICTED: A disintegrin and metalloproteinase with thrombospondin motifs 8, partial|unclassified	0.4055150041
+UniRef50_UPI0003990772: PREDICTED: inner centromere protein-like	0.4055150041
+UniRef50_UPI0003990772: PREDICTED: inner centromere protein-like|unclassified	0.4055150041
+UniRef50_UPI00037EBB23: hypothetical protein	0.4054281221
+UniRef50_UPI00037EBB23: hypothetical protein|unclassified	0.4054281221
+UniRef50_UPI000347426B: hypothetical protein	0.4054062262
+UniRef50_UPI000347426B: hypothetical protein|unclassified	0.4054062262
+UniRef50_Q47N93: Tyrosine--tRNA ligase	0.4053756474
+UniRef50_Q47N93: Tyrosine--tRNA ligase|unclassified	0.4053756474
+UniRef50_F3GC09: Putative lipoprotein (Fragment)	0.4053275548
+UniRef50_F3GC09: Putative lipoprotein (Fragment)|unclassified	0.4053275548
+UniRef50_A4A899	0.4053066588
+UniRef50_A4A899|unclassified	0.4053066588
+UniRef50_A9DGE5	0.4051689513
+UniRef50_A9DGE5|unclassified	0.4051689513
+UniRef50_T1A161: 3-hydroxydecanoyl-(Acyl carrier protein) dehydratase (Fragment)	0.4051548231
+UniRef50_T1A161: 3-hydroxydecanoyl-(Acyl carrier protein) dehydratase (Fragment)|unclassified	0.4051548231
+UniRef50_UPI000344516F: PREDICTED: E3 SUMO-protein ligase CBX4 isoform X1	0.4051318719
+UniRef50_UPI000344516F: PREDICTED: E3 SUMO-protein ligase CBX4 isoform X1|unclassified	0.4051318719
+UniRef50_X7E4C5	0.4050494843
+UniRef50_X7E4C5|unclassified	0.4050494843
+UniRef50_H1UZM0: Peroxiredoxin HYR1	0.4050422772
+UniRef50_H1UZM0: Peroxiredoxin HYR1|unclassified	0.4050422772
+UniRef50_K7E6V3	0.4050283519
+UniRef50_K7E6V3|unclassified	0.4050283519
+UniRef50_A6Q747: Alanine--tRNA ligase	0.4050222762
+UniRef50_A6Q747: Alanine--tRNA ligase|g__Helicobacter.s__Helicobacter_pylori	0.4050222762
+UniRef50_UPI0003670A7B: hypothetical protein	0.4050139141
+UniRef50_UPI0003670A7B: hypothetical protein|unclassified	0.4050139141
+UniRef50_UPI00036C7F03: hypothetical protein	0.4049568059
+UniRef50_UPI00036C7F03: hypothetical protein|unclassified	0.4049568059
+UniRef50_S3AQC4	0.4049378159
+UniRef50_S3AQC4|unclassified	0.4049378159
+UniRef50_D6M4Y7: Peptidase C14, caspase catalytic subunit p20	0.4049306525
+UniRef50_D6M4Y7: Peptidase C14, caspase catalytic subunit p20|unclassified	0.4049306525
+UniRef50_Q8KYW6: Protein-glutamate methylesterase family protein	0.4048008350
+UniRef50_Q8KYW6: Protein-glutamate methylesterase family protein|unclassified	0.4048008350
+UniRef50_UPI00037CC3B5: hypothetical protein	0.4047892470
+UniRef50_UPI00037CC3B5: hypothetical protein|unclassified	0.4047892470
+UniRef50_A0A021WWJ0: Transposase IS66 family	0.4047539698
+UniRef50_A0A021WWJ0: Transposase IS66 family|unclassified	0.4047539698
+UniRef50_L7EXS1	0.4047369495
+UniRef50_L7EXS1|unclassified	0.4047369495
+UniRef50_UPI000466EF1E: hypothetical protein	0.4047126889
+UniRef50_UPI000466EF1E: hypothetical protein|unclassified	0.4047126889
+UniRef50_A4EAZ9	0.4046413115
+UniRef50_A4EAZ9|unclassified	0.4046413115
+UniRef50_G8PGI0: Protein containing DUF185	0.4046303978
+UniRef50_G8PGI0: Protein containing DUF185|unclassified	0.4046303978
+UniRef50_B1IL95: 7-cyano-7-deazaguanine synthase	0.4045973664
+UniRef50_B1IL95: 7-cyano-7-deazaguanine synthase|unclassified	0.4045973664
+UniRef50_I2N1H7	0.4045859149
+UniRef50_I2N1H7|unclassified	0.4045859149
+UniRef50_A3PYA8: Thymidylate synthase	0.4045453375
+UniRef50_A3PYA8: Thymidylate synthase|unclassified	0.4045453375
+UniRef50_J9YQD0: Cell wall surface anchor family protein	0.4045307443
+UniRef50_J9YQD0: Cell wall surface anchor family protein|g__Streptococcus.s__Streptococcus_agalactiae	0.4045307443
+UniRef50_H8KZZ6: ABC-type transport system involved in multi-copper enzyme maturation, permease component	0.4044848821
+UniRef50_H8KZZ6: ABC-type transport system involved in multi-copper enzyme maturation, permease component|unclassified	0.4044848821
+UniRef50_UPI0003B6FF49: GntR family transcriptional regulator	0.4044736992
+UniRef50_UPI0003B6FF49: GntR family transcriptional regulator|unclassified	0.4044736992
+UniRef50_UPI0003B3E3E7: hypothetical protein	0.4044725214
+UniRef50_UPI0003B3E3E7: hypothetical protein|unclassified	0.4044725214
+UniRef50_A0A017HEA9: Transport protein	0.4044604980
+UniRef50_A0A017HEA9: Transport protein|unclassified	0.4044604980
+UniRef50_Q21QM7: Adenine phosphoribosyltransferase	0.4044604091
+UniRef50_Q21QM7: Adenine phosphoribosyltransferase|unclassified	0.4044604091
+UniRef50_D9WEL6	0.4044506291
+UniRef50_D9WEL6|unclassified	0.4044506291
+UniRef50_UPI00046B847F: PREDICTED: LOW QUALITY PROTEIN: glyceraldehyde-3-phosphate dehydrogenase A, chloroplastic-like	0.4044227566
+UniRef50_UPI00046B847F: PREDICTED: LOW QUALITY PROTEIN: glyceraldehyde-3-phosphate dehydrogenase A, chloroplastic-like|unclassified	0.4044227566
+UniRef50_UPI00040F4678: hypothetical protein	0.4043432554
+UniRef50_UPI00040F4678: hypothetical protein|unclassified	0.4043432554
+UniRef50_G8TJG7	0.4043118213
+UniRef50_G8TJG7|unclassified	0.4043118213
+UniRef50_F2R2E2	0.4042890368
+UniRef50_F2R2E2|unclassified	0.4042890368
+UniRef50_G5F1X9	0.4042378237
+UniRef50_G5F1X9|unclassified	0.4042378237
+UniRef50_A0A031HIT4: Flagellar FlaF family protein	0.4042351395
+UniRef50_A0A031HIT4: Flagellar FlaF family protein|unclassified	0.4042351395
+UniRef50_W8RQV2: Protein-glutamate methylesterase family protein	0.4041579617
+UniRef50_W8RQV2: Protein-glutamate methylesterase family protein|unclassified	0.4041579617
+UniRef50_W8ARP8	0.4041479579
+UniRef50_W8ARP8|unclassified	0.4041479579
+UniRef50_A9DA79	0.4040944188
+UniRef50_A9DA79|unclassified	0.4040944188
+UniRef50_UPI00046D22A0: hypothetical protein	0.4040701614
+UniRef50_UPI00046D22A0: hypothetical protein|unclassified	0.4040701614
+UniRef50_UPI000470B166: flagellin, partial	0.4040384265
+UniRef50_UPI000470B166: flagellin, partial|unclassified	0.4040384265
+UniRef50_UPI00036EE791: endonuclease	0.4040267053
+UniRef50_UPI00036EE791: endonuclease|unclassified	0.4040267053
+UniRef50_UPI000373DCE8: hypothetical protein	0.4040159602
+UniRef50_UPI000373DCE8: hypothetical protein|unclassified	0.4040159602
+UniRef50_UPI0002EC1A06: hypothetical protein	0.4039904052
+UniRef50_UPI0002EC1A06: hypothetical protein|unclassified	0.4039904052
+UniRef50_C7D5Q5	0.4038978254
+UniRef50_C7D5Q5|unclassified	0.4038978254
+UniRef50_O31547	0.4037501946
+UniRef50_O31547|unclassified	0.4037501946
+UniRef50_Q58927: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.4036887208
+UniRef50_Q58927: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.4036887208
+UniRef50_UPI0004416A22: hypothetical protein PUNSTDRAFT_135060	0.4036797064
+UniRef50_UPI0004416A22: hypothetical protein PUNSTDRAFT_135060|unclassified	0.4036797064
+UniRef50_D9VMY8	0.4036750757
+UniRef50_D9VMY8|unclassified	0.4036750757
+UniRef50_G2RRB4: General stress protein	0.4036454420
+UniRef50_G2RRB4: General stress protein|unclassified	0.4036454420
+UniRef50_UPI00047C50BA: hypothetical protein	0.4036277322
+UniRef50_UPI00047C50BA: hypothetical protein|unclassified	0.4036277322
+UniRef50_UPI0003793F1D: hypothetical protein	0.4036086423
+UniRef50_UPI0003793F1D: hypothetical protein|unclassified	0.4036086423
+UniRef50_R1GBU2	0.4036004117
+UniRef50_R1GBU2|unclassified	0.4036004117
+UniRef50_UPI000464ACF3: hypothetical protein	0.4035971019
+UniRef50_UPI000464ACF3: hypothetical protein|unclassified	0.4035971019
+UniRef50_UPI00046C13B3	0.4035911312
+UniRef50_UPI00046C13B3|unclassified	0.4035911312
+UniRef50_W8S7T8	0.4035892424
+UniRef50_W8S7T8|unclassified	0.4035892424
+UniRef50_UPI00047743C6: hypothetical protein	0.4035512510
+UniRef50_UPI00047743C6: hypothetical protein|unclassified	0.4035512510
+UniRef50_A0A058VD88: Phosphoribosylaminoimidazolesuccinocarboxamide synthase-like protein	0.4034875079
+UniRef50_A0A058VD88: Phosphoribosylaminoimidazolesuccinocarboxamide synthase-like protein|unclassified	0.4034875079
+UniRef50_A1BAM4	0.4034371016
+UniRef50_A1BAM4|unclassified	0.4034371016
+UniRef50_Y0F5P3	0.4034332374
+UniRef50_Y0F5P3|unclassified	0.4034332374
+UniRef50_UPI000289B895: hypothetical protein	0.4034197762
+UniRef50_UPI000289B895: hypothetical protein|unclassified	0.4034197762
+UniRef50_UPI0001CBBB89: PREDICTED: WD repeat-containing protein 63-like	0.4033884631
+UniRef50_UPI0001CBBB89: PREDICTED: WD repeat-containing protein 63-like|unclassified	0.4033884631
+UniRef50_B5ZMJ0: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.4033606437
+UniRef50_B5ZMJ0: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.4033606437
+UniRef50_UPI0002EFC805: hypothetical protein	0.4033409797
+UniRef50_UPI0002EFC805: hypothetical protein|unclassified	0.4033409797
+UniRef50_E0P6G0	0.4033206780
+UniRef50_E0P6G0|unclassified	0.4033206780
+UniRef50_F0S586: mRNA 3'-end processing factor	0.4033150019
+UniRef50_F0S586: mRNA 3'-end processing factor|unclassified	0.4033150019
+UniRef50_Q3JX48	0.4033127358
+UniRef50_Q3JX48|unclassified	0.4033127358
+UniRef50_UPI00036AC04F: hypothetical protein	0.4032996355
+UniRef50_UPI00036AC04F: hypothetical protein|unclassified	0.4032996355
+UniRef50_UPI0003C18538	0.4032897385
+UniRef50_UPI0003C18538|unclassified	0.4032897385
+UniRef50_S4MVA0	0.4032661790
+UniRef50_S4MVA0|unclassified	0.4032661790
+UniRef50_F4BH67	0.4032502046
+UniRef50_F4BH67|unclassified	0.4032502046
+UniRef50_UPI0003793283: hypothetical protein, partial	0.4032466887
+UniRef50_UPI0003793283: hypothetical protein, partial|unclassified	0.4032466887
+UniRef50_Q72ZS2	0.4032258065
+UniRef50_Q72ZS2|unclassified	0.4032258065
+UniRef50_UPI0002556E6C: hypothetical protein	0.4032213861
+UniRef50_UPI0002556E6C: hypothetical protein|unclassified	0.4032213861
+UniRef50_UPI0004798495: 16S rRNA methyltransferase, partial	0.4031397020
+UniRef50_UPI0004798495: 16S rRNA methyltransferase, partial|unclassified	0.4031397020
+UniRef50_UPI000225AC13: hypothetical protein	0.4031374020
+UniRef50_UPI000225AC13: hypothetical protein|unclassified	0.4031374020
+UniRef50_UPI0003B669F8: hypothetical protein	0.4031350872
+UniRef50_UPI0003B669F8: hypothetical protein|unclassified	0.4031350872
+UniRef50_D4DT24	0.4031153269
+UniRef50_D4DT24|unclassified	0.4031153269
+UniRef50_K2LSD0	0.4031120304
+UniRef50_K2LSD0|unclassified	0.4031120304
+UniRef50_U5SIM8	0.4030955509
+UniRef50_U5SIM8|unclassified	0.4030955509
+UniRef50_UPI00023761DC: branched-chain amino acid ABC transporter permease	0.4030894529
+UniRef50_UPI00023761DC: branched-chain amino acid ABC transporter permease|unclassified	0.4030894529
+UniRef50_J3L555	0.4030795471
+UniRef50_J3L555|unclassified	0.4030795471
+UniRef50_F3ZJ00: Putative zinc-binding alcohol dehydrogenase	0.4030632809
+UniRef50_F3ZJ00: Putative zinc-binding alcohol dehydrogenase|unclassified	0.4030632809
+UniRef50_S5ZQH2	0.4030503828
+UniRef50_S5ZQH2|unclassified	0.4030503828
+UniRef50_UPI0003681BC5: hypothetical protein	0.4030240325
+UniRef50_UPI0003681BC5: hypothetical protein|unclassified	0.4030240325
+UniRef50_G8DCQ6	0.4030164999
+UniRef50_G8DCQ6|unclassified	0.4030164999
+UniRef50_S6W3L7: Drug resistance transporter, EmrB/QacA family protein	0.4030152067
+UniRef50_S6W3L7: Drug resistance transporter, EmrB/QacA family protein|unclassified	0.4030152067
+UniRef50_M0U6K3	0.4029728636
+UniRef50_M0U6K3|unclassified	0.4029728636
+UniRef50_S2Z947	0.4029414768
+UniRef50_S2Z947|unclassified	0.4029414768
+UniRef50_UPI0003811024: metallophosphatase	0.4029260875
+UniRef50_UPI0003811024: metallophosphatase|unclassified	0.4029260875
+UniRef50_F4NMA7	0.4029224116
+UniRef50_F4NMA7|unclassified	0.4029224116
+UniRef50_V5T517	0.4029068847
+UniRef50_V5T517|unclassified	0.4029068847
+UniRef50_U7PCU9	0.4028941436
+UniRef50_U7PCU9|unclassified	0.4028941436
+UniRef50_UPI00045EC444: MULTISPECIES: 30S ribosomal protein S4	0.4028791949
+UniRef50_UPI00045EC444: MULTISPECIES: 30S ribosomal protein S4|unclassified	0.4028791949
+UniRef50_A3MQP5: Aminomethyltransferase	0.4028719614
+UniRef50_A3MQP5: Aminomethyltransferase|unclassified	0.4028719614
+UniRef50_F9P554: Conserved domain protein	0.4028422784
+UniRef50_F9P554: Conserved domain protein|unclassified	0.4028422784
+UniRef50_UPI0003600BDC: hypothetical protein	0.4028199213
+UniRef50_UPI0003600BDC: hypothetical protein|unclassified	0.4028199213
+UniRef50_P00873: Ribulose bisphosphate carboxylase small chain 1, chloroplastic	0.4028195969
+UniRef50_P00873: Ribulose bisphosphate carboxylase small chain 1, chloroplastic|unclassified	0.4028195969
+UniRef50_B7KP80: Beta-lactamase-like protein	0.4028099642
+UniRef50_B7KP80: Beta-lactamase-like protein|unclassified	0.4028099642
+UniRef50_UPI0004657C1A: serine/threonine protein kinase	0.4028058086
+UniRef50_UPI0004657C1A: serine/threonine protein kinase|unclassified	0.4028058086
+UniRef50_UPI0003651B3A: hypothetical protein	0.4027928992
+UniRef50_UPI0003651B3A: hypothetical protein|unclassified	0.4027928992
+UniRef50_UPI00036C577E: hypothetical protein	0.4027855545
+UniRef50_UPI00036C577E: hypothetical protein|unclassified	0.4027855545
+UniRef50_K0PGZ7: Plasmid pRM41A complete sequence	0.4026620939
+UniRef50_K0PGZ7: Plasmid pRM41A complete sequence|unclassified	0.4026620939
+UniRef50_UPI0002000CF0: iron-enterobactin transporter ATP-binding protein	0.4026604034
+UniRef50_UPI0002000CF0: iron-enterobactin transporter ATP-binding protein|unclassified	0.4026604034
+UniRef50_UPI00016C54E8: hypothetical protein	0.4026544488
+UniRef50_UPI00016C54E8: hypothetical protein|unclassified	0.4026544488
+UniRef50_F6AZ51: Transcriptional regulator, HxlR family	0.4026443348
+UniRef50_F6AZ51: Transcriptional regulator, HxlR family|unclassified	0.4026443348
+UniRef50_X1TJ04: Marine sediment metagenome DNA, contig: S12H4_S18626 (Fragment)	0.4026342696
+UniRef50_X1TJ04: Marine sediment metagenome DNA, contig: S12H4_S18626 (Fragment)|unclassified	0.4026342696
+UniRef50_V6URT8: Membrane protein (Fragment)	0.4026216023
+UniRef50_V6URT8: Membrane protein (Fragment)|unclassified	0.4026216023
+UniRef50_W4L812	0.4026112990
+UniRef50_W4L812|unclassified	0.4026112990
+UniRef50_UPI00046F700B: hypothetical protein	0.4026077746
+UniRef50_UPI00046F700B: hypothetical protein|unclassified	0.4026077746
+UniRef50_W4P4K4: LemA family protein	0.4025988423
+UniRef50_W4P4K4: LemA family protein|unclassified	0.4025988423
+UniRef50_D9XU96: Acyl-CoA dehydrogenase (Fragment)	0.4025696627
+UniRef50_D9XU96: Acyl-CoA dehydrogenase (Fragment)|unclassified	0.4025696627
+UniRef50_Q98HW8: Prolipoprotein diacylglyceryl transferase	0.4025381241
+UniRef50_Q98HW8: Prolipoprotein diacylglyceryl transferase|unclassified	0.4025381241
+UniRef50_I1FYV6	0.4025229175
+UniRef50_I1FYV6|unclassified	0.4025229175
+UniRef50_UPI0003674FDA: hypothetical protein	0.4025180606
+UniRef50_UPI0003674FDA: hypothetical protein|unclassified	0.4025180606
+UniRef50_C7J173: Os04g0690600 protein (Fragment)	0.4024596980
+UniRef50_C7J173: Os04g0690600 protein (Fragment)|unclassified	0.4024596980
+UniRef50_Q85FX6: Magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase	0.4024567088
+UniRef50_Q85FX6: Magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase|unclassified	0.4024567088
+UniRef50_UPI0003B53446: branched-chain amino acid transporter AzlC	0.4024448388
+UniRef50_UPI0003B53446: branched-chain amino acid transporter AzlC|unclassified	0.4024448388
+UniRef50_UPI00036397BC: hypothetical protein	0.4024143679
+UniRef50_UPI00036397BC: hypothetical protein|unclassified	0.4024143679
+UniRef50_UPI0003769A2F: hypothetical protein	0.4023541946
+UniRef50_UPI0003769A2F: hypothetical protein|unclassified	0.4023541946
+UniRef50_C1N0Q8: Predicted protein	0.4023349557
+UniRef50_C1N0Q8: Predicted protein|unclassified	0.4023349557
+UniRef50_UPI0000E0EF4C: chromosome condensation protein CcrB	0.4023137268
+UniRef50_UPI0000E0EF4C: chromosome condensation protein CcrB|unclassified	0.4023137268
+UniRef50_F3F298: AsmA family protein (Fragment)	0.4023127388
+UniRef50_F3F298: AsmA family protein (Fragment)|unclassified	0.4023127388
+UniRef50_UPI0004188562: hypothetical protein	0.4022663277
+UniRef50_UPI0004188562: hypothetical protein|unclassified	0.4022663277
+UniRef50_Q5VRC0	0.4022561317
+UniRef50_Q5VRC0|unclassified	0.4022561317
+UniRef50_Q93A70: RecA-like protein (Fragment)	0.4022157728
+UniRef50_Q93A70: RecA-like protein (Fragment)|unclassified	0.4022157728
+UniRef50_W0HAM9	0.4021590457
+UniRef50_W0HAM9|unclassified	0.4021590457
+UniRef50_I4ZNZ9: 3-(3-hydroxyphenyl)propionate hydroxylase	0.4021251329
+UniRef50_I4ZNZ9: 3-(3-hydroxyphenyl)propionate hydroxylase|unclassified	0.4021251329
+UniRef50_G8LKS4	0.4021177776
+UniRef50_G8LKS4|unclassified	0.4021177776
+UniRef50_UPI00036804AF: 30S ribosomal protein S17	0.4021071575
+UniRef50_UPI00036804AF: 30S ribosomal protein S17|unclassified	0.4021071575
+UniRef50_C0ARW1	0.4020680324
+UniRef50_C0ARW1|unclassified	0.4020680324
+UniRef50_Q00266: S-adenosylmethionine synthase isoform type-1	0.4020485041
+UniRef50_Q00266: S-adenosylmethionine synthase isoform type-1|unclassified	0.4020485041
+UniRef50_UPI00046321A5: hypothetical protein	0.4020228033
+UniRef50_UPI00046321A5: hypothetical protein|unclassified	0.4020228033
+UniRef50_A0A014NV75: ATP synthase subunit beta	0.4020189970
+UniRef50_A0A014NV75: ATP synthase subunit beta|unclassified	0.4020189970
+UniRef50_UPI000349B178: hypothetical protein	0.4019403859
+UniRef50_UPI000349B178: hypothetical protein|unclassified	0.4019403859
+UniRef50_UPI00041145F5: hypothetical protein	0.4019292605
+UniRef50_UPI00041145F5: hypothetical protein|unclassified	0.4019292605
+UniRef50_F3MR86: PTS system, arbutin-like IIBC component (Fragment)	0.4019026212
+UniRef50_F3MR86: PTS system, arbutin-like IIBC component (Fragment)|unclassified	0.4019026212
+UniRef50_S1T4Y4: Integral membrane protein	0.4019006061
+UniRef50_S1T4Y4: Integral membrane protein|unclassified	0.4019006061
+UniRef50_UPI0002493925: homocysteine methyltransferase, partial	0.4018822531
+UniRef50_UPI0002493925: homocysteine methyltransferase, partial|unclassified	0.4018822531
+UniRef50_D6XTT5	0.4018615738
+UniRef50_D6XTT5|unclassified	0.4018615738
+UniRef50_UPI00036C4DE9: hypothetical protein	0.4018539853
+UniRef50_UPI00036C4DE9: hypothetical protein|unclassified	0.4018539853
+UniRef50_UPI0003B30153: adenosine deaminase	0.4018107235
+UniRef50_UPI0003B30153: adenosine deaminase|unclassified	0.4018107235
+UniRef50_UPI000371AD6C: hypothetical protein	0.4018093397
+UniRef50_UPI000371AD6C: hypothetical protein|unclassified	0.4018093397
+UniRef50_Q27I85: PSQ10.3c	0.4018065979
+UniRef50_Q27I85: PSQ10.3c|unclassified	0.4018065979
+UniRef50_UPI00046CEEB8: hypothetical protein	0.4018062021
+UniRef50_UPI00046CEEB8: hypothetical protein|unclassified	0.4018062021
+UniRef50_T0HLE4	0.4017781502
+UniRef50_T0HLE4|unclassified	0.4017781502
+UniRef50_X5P5H6	0.4017692293
+UniRef50_X5P5H6|unclassified	0.4017692293
+UniRef50_L2WKB4	0.4017585319
+UniRef50_L2WKB4|unclassified	0.4017585319
+UniRef50_W5FS21	0.4017242443
+UniRef50_W5FS21|unclassified	0.4017242443
+UniRef50_UPI00039C73A9: choline dehydrogenase	0.4017185929
+UniRef50_UPI00039C73A9: choline dehydrogenase|unclassified	0.4017185929
+UniRef50_UPI0003B6805F: FMN reductase	0.4016993289
+UniRef50_UPI0003B6805F: FMN reductase|unclassified	0.4016993289
+UniRef50_UPI00046696E7: hypothetical protein	0.4016821676
+UniRef50_UPI00046696E7: hypothetical protein|unclassified	0.4016821676
+UniRef50_E3EFU8: NAD(P)H dehydrogenase, quinone 2 like protein	0.4016773574
+UniRef50_E3EFU8: NAD(P)H dehydrogenase, quinone 2 like protein|unclassified	0.4016773574
+UniRef50_UPI0003066F6E: hypothetical protein	0.4015666081
+UniRef50_UPI0003066F6E: hypothetical protein|unclassified	0.4015666081
+UniRef50_G8ASV0	0.4015272316
+UniRef50_G8ASV0|unclassified	0.4015272316
+UniRef50_G5QZJ1	0.4014679312
+UniRef50_G5QZJ1|unclassified	0.4014679312
+UniRef50_UPI000158407C: hypothetical protein BC1G_05447	0.4014677393
+UniRef50_UPI000158407C: hypothetical protein BC1G_05447|unclassified	0.4014677393
+UniRef50_A0A059ITM2: Transposase	0.4014609555
+UniRef50_A0A059ITM2: Transposase|unclassified	0.4014609555
+UniRef50_S2Y935	0.4014608200
+UniRef50_S2Y935|unclassified	0.4014608200
+UniRef50_F2DV87: Predicted protein (Fragment)	0.4014225269
+UniRef50_F2DV87: Predicted protein (Fragment)|unclassified	0.4014225269
+UniRef50_I1F9Y4	0.4014150159
+UniRef50_I1F9Y4|unclassified	0.4014150159
+UniRef50_K9XFJ7	0.4013776838
+UniRef50_K9XFJ7|unclassified	0.4013776838
+UniRef50_U4UYR9	0.4013669607
+UniRef50_U4UYR9|unclassified	0.4013669607
+UniRef50_UPI000347549D: hypothetical protein	0.4013123172
+UniRef50_UPI000347549D: hypothetical protein|unclassified	0.4013123172
+UniRef50_A0A009YBD2	0.4012910616
+UniRef50_A0A009YBD2|unclassified	0.4012910616
+UniRef50_F7XWZ7	0.4012851498
+UniRef50_F7XWZ7|unclassified	0.4012851498
+UniRef50_B6U8H0	0.4012281674
+UniRef50_B6U8H0|unclassified	0.4012281674
+UniRef50_UPI000473933F: urea ABC transporter permease, partial	0.4011643276
+UniRef50_UPI000473933F: urea ABC transporter permease, partial|unclassified	0.4011643276
+UniRef50_E2NSW7	0.4011514056
+UniRef50_E2NSW7|unclassified	0.4011514056
+UniRef50_L1KWS0	0.4011211273
+UniRef50_L1KWS0|unclassified	0.4011211273
+UniRef50_C1MN81: Predicted protein	0.4010992207
+UniRef50_C1MN81: Predicted protein|unclassified	0.4010992207
+UniRef50_M0SAH9	0.4010340148
+UniRef50_M0SAH9|unclassified	0.4010340148
+UniRef50_F3CHT8: Histidine/lysine/arginine/ornithine ABC transporter permease HisM (Fragment)	0.4009775897
+UniRef50_F3CHT8: Histidine/lysine/arginine/ornithine ABC transporter permease HisM (Fragment)|unclassified	0.4009775897
+UniRef50_UPI00036D2C70: hypothetical protein	0.4009561669
+UniRef50_UPI00036D2C70: hypothetical protein|unclassified	0.4009561669
+UniRef50_X7SL76	0.4009165559
+UniRef50_X7SL76|unclassified	0.4009165559
+UniRef50_V5EMX0	0.4008998263
+UniRef50_V5EMX0|unclassified	0.4008998263
+UniRef50_UPI00003799BF: hypothetical protein	0.4008911667
+UniRef50_UPI00003799BF: hypothetical protein|unclassified	0.4008911667
+UniRef50_UPI0004290598: luciferase	0.4008569353
+UniRef50_UPI0004290598: luciferase|unclassified	0.4008569353
+UniRef50_L8P9Y5	0.4008353590
+UniRef50_L8P9Y5|unclassified	0.4008353590
+UniRef50_Q2RMC1: Peptidyl-tRNA hydrolase	0.4008321386
+UniRef50_Q2RMC1: Peptidyl-tRNA hydrolase|unclassified	0.4008321386
+UniRef50_Q949R4: Extradiol ring-cleavage dioxygenase	0.4008107899
+UniRef50_Q949R4: Extradiol ring-cleavage dioxygenase|unclassified	0.4008107899
+UniRef50_X7Z1B2	0.4007262509
+UniRef50_X7Z1B2|unclassified	0.4007262509
+UniRef50_F2RE61	0.4006713575
+UniRef50_F2RE61|unclassified	0.4006713575
+UniRef50_UPI00047D5D86: hypothetical protein	0.4006686110
+UniRef50_UPI00047D5D86: hypothetical protein|unclassified	0.4006686110
+UniRef50_UPI000475C521: deaminase/reductase, partial	0.4006299062
+UniRef50_UPI000475C521: deaminase/reductase, partial|unclassified	0.4006299062
+UniRef50_K8Y2I9: CdaR family transcriptional regulator	0.4006045614
+UniRef50_K8Y2I9: CdaR family transcriptional regulator|unclassified	0.4006045614
+UniRef50_W4N404	0.4005929757
+UniRef50_W4N404|unclassified	0.4005929757
+UniRef50_UPI000370772D: hypothetical protein	0.4005601700
+UniRef50_UPI000370772D: hypothetical protein|unclassified	0.4005601700
+UniRef50_UPI0001E896C4: cobalt transporter	0.4005387202
+UniRef50_UPI0001E896C4: cobalt transporter|unclassified	0.4005387202
+UniRef50_K0J5Z0	0.4005361951
+UniRef50_K0J5Z0|unclassified	0.4005361951
+UniRef50_UPI000374C861: hypothetical protein	0.4005282875
+UniRef50_UPI000374C861: hypothetical protein|unclassified	0.4005282875
+UniRef50_UPI000288BCD3: nitrate ABC transporter ATPase	0.4005027667
+UniRef50_UPI000288BCD3: nitrate ABC transporter ATPase|unclassified	0.4005027667
+UniRef50_I0VP90: Acylphosphatase	0.4004895645
+UniRef50_I0VP90: Acylphosphatase|unclassified	0.4004895645
+UniRef50_UPI0002F5F849: hypothetical protein	0.4004563561
+UniRef50_UPI0002F5F849: hypothetical protein|unclassified	0.4004563561
+UniRef50_UPI00047CE8B7: ABC transporter	0.4004065729
+UniRef50_UPI00047CE8B7: ABC transporter|unclassified	0.4004065729
+UniRef50_A4VWB1: Predicted membrane protein	0.4004062030
+UniRef50_A4VWB1: Predicted membrane protein|unclassified	0.4004062030
+UniRef50_Q67N36: Aminomethyltransferase	0.4003989452
+UniRef50_Q67N36: Aminomethyltransferase|unclassified	0.4003989452
+UniRef50_X7E3N9: Cobyrinic acid a,c-diamide synthase (Fragment)	0.4003474796
+UniRef50_X7E3N9: Cobyrinic acid a,c-diamide synthase (Fragment)|unclassified	0.4003474796
+UniRef50_D5ZLN9: Predicted protein	0.4003452918
+UniRef50_D5ZLN9: Predicted protein|unclassified	0.4003452918
+UniRef50_D4VWH5: Conserved domain protein	0.4003244933
+UniRef50_D4VWH5: Conserved domain protein|unclassified	0.4003244933
+UniRef50_M4QRD8	0.4003240967
+UniRef50_M4QRD8|unclassified	0.4003240967
+UniRef50_W7WI45: D-ribose-binding periplasmic protein	0.4003056992
+UniRef50_W7WI45: D-ribose-binding periplasmic protein|unclassified	0.4003056992
+UniRef50_W8UV65	0.4002722479
+UniRef50_W8UV65|unclassified	0.4002722479
+UniRef50_D6EJV1: Transcriptional regulatory protein (Fragment)	0.4002720590
+UniRef50_D6EJV1: Transcriptional regulatory protein (Fragment)|unclassified	0.4002720590
+UniRef50_C5XVP6	0.4002663472
+UniRef50_C5XVP6|unclassified	0.4002663472
+UniRef50_UPI0003EFB221: hypothetical protein	0.4002012788
+UniRef50_UPI0003EFB221: hypothetical protein|unclassified	0.4002012788
+UniRef50_Q1IZH7: Protein translocase subunit SecA	0.4001600640
+UniRef50_Q1IZH7: Protein translocase subunit SecA|g__Deinococcus.s__Deinococcus_radiodurans	0.4001600640
+UniRef50_C3MFJ3	0.4001103810
+UniRef50_C3MFJ3|unclassified	0.4001103810
+UniRef50_R4LTE6	0.4001066205
+UniRef50_R4LTE6|unclassified	0.4001066205
+UniRef50_A4NK42: Phosphoribosylformylglycinamidine synthase	0.3999787375
+UniRef50_A4NK42: Phosphoribosylformylglycinamidine synthase|unclassified	0.3999787375
+UniRef50_Q9ZLD6: UvrABC system protein A	0.3998400640
+UniRef50_Q9ZLD6: UvrABC system protein A|g__Helicobacter.s__Helicobacter_pylori	0.3998400640
+UniRef50_UPI0002892EE5: cyclic nucleotide-binding protein	0.3998261706
+UniRef50_UPI0002892EE5: cyclic nucleotide-binding protein|unclassified	0.3998261706
+UniRef50_X3EYK6	0.3998129318
+UniRef50_X3EYK6|unclassified	0.3998129318
+UniRef50_UPI0001DD0BB6: photosynthetic reaction center subunit H	0.3997820201
+UniRef50_UPI0001DD0BB6: photosynthetic reaction center subunit H|unclassified	0.3997820201
+UniRef50_Q0C2D0: Peptidyl-tRNA hydrolase	0.3996911239
+UniRef50_Q0C2D0: Peptidyl-tRNA hydrolase|unclassified	0.3996911239
+UniRef50_UPI00040FF8E8: hypothetical protein	0.3996710973
+UniRef50_UPI00040FF8E8: hypothetical protein|unclassified	0.3996710973
+UniRef50_B6ZYD8	0.3996302157
+UniRef50_B6ZYD8|unclassified	0.3996302157
+UniRef50_UPI0002ADA6DC: PREDICTED: LOW QUALITY PROTEIN: rho guanine nucleotide exchange factor 1	0.3996157769
+UniRef50_UPI0002ADA6DC: PREDICTED: LOW QUALITY PROTEIN: rho guanine nucleotide exchange factor 1|unclassified	0.3996157769
+UniRef50_Q7V3Y9: Magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase	0.3995837171
+UniRef50_Q7V3Y9: Magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase|unclassified	0.3995837171
+UniRef50_UPI00046EA896: hypothetical protein	0.3995715256
+UniRef50_UPI00046EA896: hypothetical protein|unclassified	0.3995715256
+UniRef50_T0ZW03: Acetyl-CoA carboxylase subunit beta	0.3995482190
+UniRef50_T0ZW03: Acetyl-CoA carboxylase subunit beta|unclassified	0.3995482190
+UniRef50_Q129M4: Ribosomal RNA large subunit methyltransferase E	0.3994996613
+UniRef50_Q129M4: Ribosomal RNA large subunit methyltransferase E|unclassified	0.3994996613
+UniRef50_A2FBD3: Alanine dehydrogenase, putative	0.3994902313
+UniRef50_A2FBD3: Alanine dehydrogenase, putative|unclassified	0.3994902313
+UniRef50_Q11IE7: Putative 3-methyladenine DNA glycosylase	0.3994580727
+UniRef50_Q11IE7: Putative 3-methyladenine DNA glycosylase|unclassified	0.3994580727
+UniRef50_UPI0003FBEC2D: flagellar biosynthesis protein FliR	0.3994481928
+UniRef50_UPI0003FBEC2D: flagellar biosynthesis protein FliR|unclassified	0.3994481928
+UniRef50_N4DTH7	0.3994327326
+UniRef50_N4DTH7|unclassified	0.3994327326
+UniRef50_Q4L5B1: UPF0223 protein SH1855	0.3993917271
+UniRef50_Q4L5B1: UPF0223 protein SH1855|unclassified	0.3993917271
+UniRef50_W7BZR4	0.3993785269
+UniRef50_W7BZR4|unclassified	0.3993785269
+UniRef50_UPI00047248BA: delta-aminolevulinic acid dehydratase	0.3993160019
+UniRef50_UPI00047248BA: delta-aminolevulinic acid dehydratase|unclassified	0.3993160019
+UniRef50_A6F0J3: Major tail protein, putative	0.3992723521
+UniRef50_A6F0J3: Major tail protein, putative|unclassified	0.3992723521
+UniRef50_UPI00036CD3B0: hypothetical protein, partial	0.3992691975
+UniRef50_UPI00036CD3B0: hypothetical protein, partial|unclassified	0.3992691975
+UniRef50_Q987T0: Histidine--tRNA ligase	0.3991684797
+UniRef50_Q987T0: Histidine--tRNA ligase|unclassified	0.3991684797
+UniRef50_UPI00037AA13F: hypothetical protein	0.3991605710
+UniRef50_UPI00037AA13F: hypothetical protein|unclassified	0.3991605710
+UniRef50_S6B9W7	0.3991601716
+UniRef50_S6B9W7|unclassified	0.3991601716
+UniRef50_A4EME5	0.3991570451
+UniRef50_A4EME5|unclassified	0.3991570451
+UniRef50_X0QIZ7: Respiratory nitrate reductase beta chain	0.3990564073
+UniRef50_X0QIZ7: Respiratory nitrate reductase beta chain|unclassified	0.3990564073
+UniRef50_UPI00047EACD7: phosphotransferase	0.3990551254
+UniRef50_UPI00047EACD7: phosphotransferase|unclassified	0.3990551254
+UniRef50_Z7T5S7	0.3990502843
+UniRef50_Z7T5S7|unclassified	0.3990502843
+UniRef50_F6DMK6	0.3990306127
+UniRef50_F6DMK6|unclassified	0.3990306127
+UniRef50_UPI00025581FA: cyclohexadienyl dehydrogenase, partial	0.3990197925
+UniRef50_UPI00025581FA: cyclohexadienyl dehydrogenase, partial|unclassified	0.3990197925
+UniRef50_E6MA81	0.3989659235
+UniRef50_E6MA81|unclassified	0.3989659235
+UniRef50_UPI00030CFC56: hypothetical protein	0.3989033097
+UniRef50_UPI00030CFC56: hypothetical protein|unclassified	0.3989033097
+UniRef50_H3YA35	0.3988920353
+UniRef50_H3YA35|unclassified	0.3988920353
+UniRef50_T1UB30: 2Fe-2S iron-sulfur cluster binding domain protein	0.3988831272
+UniRef50_T1UB30: 2Fe-2S iron-sulfur cluster binding domain protein|g__Helicobacter.s__Helicobacter_pylori	0.3988831272
+UniRef50_UPI00037C2990: hypothetical protein	0.3988785133
+UniRef50_UPI00037C2990: hypothetical protein|unclassified	0.3988785133
+UniRef50_UPI00046EC6B2: acyl-CoA dehydrogenase, partial	0.3988153333
+UniRef50_UPI00046EC6B2: acyl-CoA dehydrogenase, partial|unclassified	0.3988153333
+UniRef50_L4FKH2	0.3988087374
+UniRef50_L4FKH2|unclassified	0.3988087374
+UniRef50_UPI00047D5FC6: hypothetical protein	0.3988047011
+UniRef50_UPI00047D5FC6: hypothetical protein|unclassified	0.3988047011
+UniRef50_UPI0002DAB67A: hypothetical protein	0.3987775289
+UniRef50_UPI0002DAB67A: hypothetical protein|unclassified	0.3987775289
+UniRef50_UPI0001AF23F3: oxidoreductase	0.3987580098
+UniRef50_UPI0001AF23F3: oxidoreductase|unclassified	0.3987580098
+UniRef50_UPI00035EBFF4: hypothetical protein	0.3987379358
+UniRef50_UPI00035EBFF4: hypothetical protein|unclassified	0.3987379358
+UniRef50_UPI00029DAD29: PREDICTED: UDP-glucuronic acid decarboxylase 1-like, partial	0.3986904454
+UniRef50_UPI00029DAD29: PREDICTED: UDP-glucuronic acid decarboxylase 1-like, partial|unclassified	0.3986904454
+UniRef50_UPI00041F8C46: hypothetical protein	0.3986404078
+UniRef50_UPI00041F8C46: hypothetical protein|unclassified	0.3986404078
+UniRef50_UPI0003F0E940: PREDICTED: taperin-like	0.3986245395
+UniRef50_UPI0003F0E940: PREDICTED: taperin-like|unclassified	0.3986245395
+UniRef50_M4XB42	0.3986173000
+UniRef50_M4XB42|unclassified	0.3986173000
+UniRef50_UPI000225F9CB: hypothetical protein	0.3985854104
+UniRef50_UPI000225F9CB: hypothetical protein|unclassified	0.3985854104
+UniRef50_A3SQ68	0.3985582064
+UniRef50_A3SQ68|unclassified	0.3985582064
+UniRef50_UPI00036CFBE9: hypothetical protein, partial	0.3985533371
+UniRef50_UPI00036CFBE9: hypothetical protein, partial|unclassified	0.3985533371
+UniRef50_UPI0003B60AC8: glycine/betaine ABC transporter permease	0.3985325697
+UniRef50_UPI0003B60AC8: glycine/betaine ABC transporter permease|unclassified	0.3985325697
+UniRef50_F2ZEJ5: Iron ABC transporter periplasmic iron-binding protein	0.3984714571
+UniRef50_F2ZEJ5: Iron ABC transporter periplasmic iron-binding protein|unclassified	0.3984714571
+UniRef50_Q9RXD5: Outer membrane protein	0.3984063745
+UniRef50_Q9RXD5: Outer membrane protein|g__Deinococcus.s__Deinococcus_radiodurans	0.3984063745
+UniRef50_R6D587	0.3983213977
+UniRef50_R6D587|unclassified	0.3983213977
+UniRef50_U6MJW4	0.3982410042
+UniRef50_U6MJW4|unclassified	0.3982410042
+UniRef50_X2NBC7	0.3982295854
+UniRef50_X2NBC7|unclassified	0.3982295854
+UniRef50_UPI0003B5E6F5: succinyl-CoA:3-ketoacid-CoA transferase	0.3982093939
+UniRef50_UPI0003B5E6F5: succinyl-CoA:3-ketoacid-CoA transferase|unclassified	0.3982093939
+UniRef50_UPI000473CE77: gamma-glutamylputrescine synthetase, partial	0.3981978969
+UniRef50_UPI000473CE77: gamma-glutamylputrescine synthetase, partial|unclassified	0.3981978969
+UniRef50_UPI0002D81321: trehalose-phosphatase	0.3981734321
+UniRef50_UPI0002D81321: trehalose-phosphatase|unclassified	0.3981734321
+UniRef50_A0A012H176	0.3981440737
+UniRef50_A0A012H176|unclassified	0.3981440737
+UniRef50_Q1GDV5	0.3981279801
+UniRef50_Q1GDV5|unclassified	0.3981279801
+UniRef50_U3TTN2	0.3980326801
+UniRef50_U3TTN2|unclassified	0.3980326801
+UniRef50_UPI00037EB3FB: hypothetical protein	0.3980240511
+UniRef50_UPI00037EB3FB: hypothetical protein|unclassified	0.3980240511
+UniRef50_A7IK15: Chromosomal replication initiator, DnaA	0.3980000908
+UniRef50_A7IK15: Chromosomal replication initiator, DnaA|unclassified	0.3980000908
+UniRef50_UPI000473E310: thiol:disulfide interchange protein DsbE, partial	0.3979970221
+UniRef50_UPI000473E310: thiol:disulfide interchange protein DsbE, partial|unclassified	0.3979970221
+UniRef50_Q98CR8: Xylose isomerase	0.3979723053
+UniRef50_Q98CR8: Xylose isomerase|unclassified	0.3979723053
+UniRef50_UPI0003C1B148: PREDICTED: 3-oxoacyl-[acyl-carrier-protein] synthase, mitochondrial-like	0.3979412203
+UniRef50_UPI0003C1B148: PREDICTED: 3-oxoacyl-[acyl-carrier-protein] synthase, mitochondrial-like|unclassified	0.3979412203
+UniRef50_K0SU37	0.3979307600
+UniRef50_K0SU37|unclassified	0.3979307600
+UniRef50_W4UE45: Hypothetical membrane protein	0.3979251832
+UniRef50_W4UE45: Hypothetical membrane protein|unclassified	0.3979251832
+UniRef50_X0W9U7: Marine sediment metagenome DNA, contig: S01H1_S19461 (Fragment)	0.3979168171
+UniRef50_X0W9U7: Marine sediment metagenome DNA, contig: S01H1_S19461 (Fragment)|unclassified	0.3979168171
+UniRef50_Q3EYE8: ABC transporter permease protein	0.3978955723
+UniRef50_Q3EYE8: ABC transporter permease protein|unclassified	0.3978955723
+UniRef50_K2AZ45	0.3978585621
+UniRef50_K2AZ45|unclassified	0.3978585621
+UniRef50_B2VDB9	0.3978566314
+UniRef50_B2VDB9|unclassified	0.3978566314
+UniRef50_C0YBF1: Bmlf1	0.3978545575
+UniRef50_C0YBF1: Bmlf1|unclassified	0.3978545575
+UniRef50_A6FWL9	0.3977777146
+UniRef50_A6FWL9|unclassified	0.3977777146
+UniRef50_W1ECQ7: Probable exported protein YPO4070	0.3977728920
+UniRef50_W1ECQ7: Probable exported protein YPO4070|unclassified	0.3977728920
+UniRef50_G7VZ62: Branched-chain amino acid transport protein (Azld)	0.3976169488
+UniRef50_G7VZ62: Branched-chain amino acid transport protein (Azld)|unclassified	0.3976169488
+UniRef50_P45597: Multiphosphoryl transfer protein	0.3976143141
+UniRef50_P45597: Multiphosphoryl transfer protein|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.3976143141
+UniRef50_K6YA48	0.3975334728
+UniRef50_K6YA48|unclassified	0.3975334728
+UniRef50_K8YPJ7	0.3975231038
+UniRef50_K8YPJ7|unclassified	0.3975231038
+UniRef50_W4HH92: Flagellar protein FlgJ	0.3975049075
+UniRef50_W4HH92: Flagellar protein FlgJ|unclassified	0.3975049075
+UniRef50_F2ENQ1	0.3974973257
+UniRef50_F2ENQ1|unclassified	0.3974973257
+UniRef50_UPI00046F0C1E: cold-shock protein, partial	0.3974529380
+UniRef50_UPI00046F0C1E: cold-shock protein, partial|unclassified	0.3974529380
+UniRef50_A3VHG8	0.3974191389
+UniRef50_A3VHG8|unclassified	0.3974191389
+UniRef50_J8G953	0.3973580449
+UniRef50_J8G953|unclassified	0.3973580449
+UniRef50_UPI0003678819: 30S ribosomal protein S4	0.3972802593
+UniRef50_UPI0003678819: 30S ribosomal protein S4|unclassified	0.3972802593
+UniRef50_A1AYG2: Tripartite ATP-independent periplasmic transporter, DctQ component	0.3972373560
+UniRef50_A1AYG2: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	0.3972373560
+UniRef50_Q73KT5: Putative ABC transporter ATP-binding protein TDE_2132	0.3972090923
+UniRef50_Q73KT5: Putative ABC transporter ATP-binding protein TDE_2132|unclassified	0.3972090923
+UniRef50_UPI00037BD779: hypothetical protein	0.3971818873
+UniRef50_UPI00037BD779: hypothetical protein|unclassified	0.3971818873
+UniRef50_Q2L1P5: Pyridoxine kinase	0.3971580272
+UniRef50_Q2L1P5: Pyridoxine kinase|unclassified	0.3971580272
+UniRef50_W7S9M8: Pyruvate dehydrogenase E1 component	0.3970964015
+UniRef50_W7S9M8: Pyruvate dehydrogenase E1 component|unclassified	0.3970964015
+UniRef50_UPI0004641B3A: hypothetical protein	0.3970872337
+UniRef50_UPI0004641B3A: hypothetical protein|unclassified	0.3970872337
+UniRef50_S9QM32: Transcriptional regulator, GntR family	0.3970842500
+UniRef50_S9QM32: Transcriptional regulator, GntR family|unclassified	0.3970842500
+UniRef50_UPI00035D3F38: hypothetical protein	0.3970422734
+UniRef50_UPI00035D3F38: hypothetical protein|unclassified	0.3970422734
+UniRef50_T1AK40: NAD(FAD)-dependent dehydrogenase	0.3969722133
+UniRef50_T1AK40: NAD(FAD)-dependent dehydrogenase|unclassified	0.3969722133
+UniRef50_F5LL76	0.3969482966
+UniRef50_F5LL76|unclassified	0.3969482966
+UniRef50_N3K673	0.3969324363
+UniRef50_N3K673|unclassified	0.3969324363
+UniRef50_UPI0003EDC7E3: camphor resistance protein CrcB	0.3969319563
+UniRef50_UPI0003EDC7E3: camphor resistance protein CrcB|unclassified	0.3969319563
+UniRef50_I6F7Q0: Insertion element family protein (Fragment)	0.3969255637
+UniRef50_I6F7Q0: Insertion element family protein (Fragment)|unclassified	0.3969255637
+UniRef50_UPI0003B5F4A9: hypothetical protein	0.3968658090
+UniRef50_UPI0003B5F4A9: hypothetical protein|unclassified	0.3968658090
+UniRef50_B2JIA4: Protein RnfH	0.3968412564
+UniRef50_B2JIA4: Protein RnfH|unclassified	0.3968412564
+UniRef50_A6W8E6	0.3968342766
+UniRef50_A6W8E6|unclassified	0.3968342766
+UniRef50_A0RKC3	0.3968296097
+UniRef50_A0RKC3|unclassified	0.3968296097
+UniRef50_UPI000471FB75: hypothetical protein	0.3968157290
+UniRef50_UPI000471FB75: hypothetical protein|unclassified	0.3968157290
+UniRef50_G8LK65	0.3967929874
+UniRef50_G8LK65|unclassified	0.3967929874
+UniRef50_G4C655: Periplasmic binding protein and sugar binding domain of the LacI family protein	0.3967643871
+UniRef50_G4C655: Periplasmic binding protein and sugar binding domain of the LacI family protein|unclassified	0.3967643871
+UniRef50_UPI00047A852C: hypothetical protein	0.3967295565
+UniRef50_UPI00047A852C: hypothetical protein|unclassified	0.3967295565
+UniRef50_O34753: Probable undecaprenyl-phosphate N-acetylglucosaminyl 1-phosphate transferase	0.3967258057
+UniRef50_O34753: Probable undecaprenyl-phosphate N-acetylglucosaminyl 1-phosphate transferase|unclassified	0.3967258057
+UniRef50_UPI000467D50C: lysozyme	0.3966679889
+UniRef50_UPI000467D50C: lysozyme|unclassified	0.3966679889
+UniRef50_Q3JRJ0	0.3966511582
+UniRef50_Q3JRJ0|unclassified	0.3966511582
+UniRef50_UPI000366E7EA: transposase	0.3966282883
+UniRef50_UPI000366E7EA: transposase|unclassified	0.3966282883
+UniRef50_D7GV59	0.3965883352
+UniRef50_D7GV59|unclassified	0.3965883352
+UniRef50_I0JQG4	0.3965833556
+UniRef50_I0JQG4|unclassified	0.3965833556
+UniRef50_UPI0002F818BA: hypothetical protein	0.3965810062
+UniRef50_UPI0002F818BA: hypothetical protein|unclassified	0.3965810062
+UniRef50_J3KW54	0.3965732535
+UniRef50_J3KW54|unclassified	0.3965732535
+UniRef50_A6GDL9	0.3965665022
+UniRef50_A6GDL9|unclassified	0.3965665022
+UniRef50_UPI00021A56DC: PREDICTED: hypothetical protein LOC100637557	0.3965408970
+UniRef50_UPI00021A56DC: PREDICTED: hypothetical protein LOC100637557|unclassified	0.3965408970
+UniRef50_UPI000470E5B8: hypothetical protein, partial	0.3964552642
+UniRef50_UPI000470E5B8: hypothetical protein, partial|unclassified	0.3964552642
+UniRef50_J3CIY6	0.3964539063
+UniRef50_J3CIY6|unclassified	0.3964539063
+UniRef50_R9ZCY0	0.3964071705
+UniRef50_R9ZCY0|unclassified	0.3964071705
+UniRef50_Q62FS7: Ribosomal RNA small subunit methyltransferase G	0.3963636895
+UniRef50_Q62FS7: Ribosomal RNA small subunit methyltransferase G|unclassified	0.3963636895
+UniRef50_D9UC41: Membrane protein (Fragment)	0.3963536015
+UniRef50_D9UC41: Membrane protein (Fragment)|unclassified	0.3963536015
+UniRef50_UPI00035D7466: hypothetical protein	0.3963401401
+UniRef50_UPI00035D7466: hypothetical protein|unclassified	0.3963401401
+UniRef50_Q3UQ07	0.3963046204
+UniRef50_Q3UQ07|unclassified	0.3963046204
+UniRef50_UPI0003691B32: hypothetical protein	0.3962980632
+UniRef50_UPI0003691B32: hypothetical protein|unclassified	0.3962980632
+UniRef50_Q9KPM0: Purine nucleoside phosphorylase DeoD-type 1	0.3961879233
+UniRef50_Q9KPM0: Purine nucleoside phosphorylase DeoD-type 1|unclassified	0.3961879233
+UniRef50_UPI00036B57D3: hypothetical protein, partial	0.3961737729
+UniRef50_UPI00036B57D3: hypothetical protein, partial|unclassified	0.3961737729
+UniRef50_UPI00036156DA: hypothetical protein	0.3961087850
+UniRef50_UPI00036156DA: hypothetical protein|unclassified	0.3961087850
+UniRef50_Q6ZBE9	0.3960769517
+UniRef50_Q6ZBE9|unclassified	0.3960769517
+UniRef50_R7L0X5: CsaA protein	0.3960695570
+UniRef50_R7L0X5: CsaA protein|unclassified	0.3960695570
+UniRef50_UPI0003767355: hypothetical protein, partial	0.3960334956
+UniRef50_UPI0003767355: hypothetical protein, partial|unclassified	0.3960334956
+UniRef50_R5PZJ8	0.3960033339
+UniRef50_R5PZJ8|unclassified	0.3960033339
+UniRef50_UPI00046533A1: hypothetical protein	0.3959653812
+UniRef50_UPI00046533A1: hypothetical protein|unclassified	0.3959653812
+UniRef50_E8SJX2: UPF0178 protein SPSINT_0391	0.3959638267
+UniRef50_E8SJX2: UPF0178 protein SPSINT_0391|unclassified	0.3959638267
+UniRef50_U4V137	0.3958899787
+UniRef50_U4V137|unclassified	0.3958899787
+UniRef50_UPI00035E6A34: hypothetical protein	0.3958175332
+UniRef50_UPI00035E6A34: hypothetical protein|unclassified	0.3958175332
+UniRef50_UPI00035E0728: hypothetical protein, partial	0.3958012649
+UniRef50_UPI00035E0728: hypothetical protein, partial|unclassified	0.3958012649
+UniRef50_W9VFS6: Anaerobic ribonucleoside triphosphate reductase	0.3957823244
+UniRef50_W9VFS6: Anaerobic ribonucleoside triphosphate reductase|unclassified	0.3957823244
+UniRef50_X2NEQ0	0.3957304322
+UniRef50_X2NEQ0|unclassified	0.3957304322
+UniRef50_A0A059MPI8	0.3957176509
+UniRef50_A0A059MPI8|unclassified	0.3957176509
+UniRef50_UPI000304548B: hypothetical protein	0.3956782405
+UniRef50_UPI000304548B: hypothetical protein|unclassified	0.3956782405
+UniRef50_UPI00022CA89F: PREDICTED: hypothetical protein LOC100745434	0.3956653288
+UniRef50_UPI00022CA89F: PREDICTED: hypothetical protein LOC100745434|unclassified	0.3956653288
+UniRef50_J9P8L7	0.3956599130
+UniRef50_J9P8L7|unclassified	0.3956599130
+UniRef50_D5E4E7	0.3956501681
+UniRef50_D5E4E7|unclassified	0.3956501681
+UniRef50_UPI00038293BE: hypothetical protein	0.3956177139
+UniRef50_UPI00038293BE: hypothetical protein|unclassified	0.3956177139
+UniRef50_Q3JQ05	0.3956053974
+UniRef50_Q3JQ05|unclassified	0.3956053974
+UniRef50_E6QFZ5	0.3955524172
+UniRef50_E6QFZ5|unclassified	0.3955524172
+UniRef50_L8WI83	0.3955522997
+UniRef50_L8WI83|unclassified	0.3955522997
+UniRef50_B9TG20	0.3954697845
+UniRef50_B9TG20|unclassified	0.3954697845
+UniRef50_S0F3L5: Alternative splicing defective protein 2, putative	0.3954471159
+UniRef50_S0F3L5: Alternative splicing defective protein 2, putative|unclassified	0.3954471159
+UniRef50_UPI0004007A18: universal stress protein	0.3954433576
+UniRef50_UPI0004007A18: universal stress protein|unclassified	0.3954433576
+UniRef50_K7JUN8	0.3954401291
+UniRef50_K7JUN8|unclassified	0.3954401291
+UniRef50_N1MD27	0.3953675175
+UniRef50_N1MD27|unclassified	0.3953675175
+UniRef50_UPI0003C85AA7: PREDICTED: putative protein FAM71E2	0.3952569170
+UniRef50_UPI0003C85AA7: PREDICTED: putative protein FAM71E2|unclassified	0.3952569170
+UniRef50_F3FFT1	0.3952263133
+UniRef50_F3FFT1|unclassified	0.3952263133
+UniRef50_UPI000474C8AC: ABC transporter permease, partial	0.3952066403
+UniRef50_UPI000474C8AC: ABC transporter permease, partial|unclassified	0.3952066403
+UniRef50_UPI0003C353AA: PREDICTED: basic salivary proline-rich protein 1-like	0.3951573006
+UniRef50_UPI0003C353AA: PREDICTED: basic salivary proline-rich protein 1-like|unclassified	0.3951573006
+UniRef50_T1CKH0: Coproporphyrinogen dehydrogenase (Fragment)	0.3951303491
+UniRef50_T1CKH0: Coproporphyrinogen dehydrogenase (Fragment)|unclassified	0.3951303491
+UniRef50_V5AH19	0.3951277234
+UniRef50_V5AH19|unclassified	0.3951277234
+UniRef50_UPI0000F2F5DC: protein secretion chaperone	0.3951250747
+UniRef50_UPI0000F2F5DC: protein secretion chaperone|unclassified	0.3951250747
+UniRef50_UPI0003F0BF74: PREDICTED: putative ribosomal RNA methyltransferase CG11447-like	0.3951207255
+UniRef50_UPI0003F0BF74: PREDICTED: putative ribosomal RNA methyltransferase CG11447-like|unclassified	0.3951207255
+UniRef50_M2A7F0	0.3951186555
+UniRef50_M2A7F0|unclassified	0.3951186555
+UniRef50_Q4JAJ2: 6,7-dimethyl-8-ribityllumazine synthase	0.3950763782
+UniRef50_Q4JAJ2: 6,7-dimethyl-8-ribityllumazine synthase|unclassified	0.3950763782
+UniRef50_UPI000428654A: hypothetical protein	0.3950632209
+UniRef50_UPI000428654A: hypothetical protein|unclassified	0.3950632209
+UniRef50_J7Q8S5	0.3950522578
+UniRef50_J7Q8S5|unclassified	0.3950522578
+UniRef50_UPI00046231D8: hypothetical protein, partial	0.3950464404
+UniRef50_UPI00046231D8: hypothetical protein, partial|unclassified	0.3950464404
+UniRef50_H9BDX1	0.3950262923
+UniRef50_H9BDX1|unclassified	0.3950262923
+UniRef50_UPI0003B5BEDA: F0F1 ATP synthase subunit B'''', partial	0.3950256118
+UniRef50_UPI0003B5BEDA: F0F1 ATP synthase subunit B'''', partial|unclassified	0.3950256118
+UniRef50_C9CZN8: Conserved domain protein	0.3950209055
+UniRef50_C9CZN8: Conserved domain protein|unclassified	0.3950209055
+UniRef50_UPI00045DC7A3: PREDICTED: collagen alpha-1(III) chain-like	0.3949736044
+UniRef50_UPI00045DC7A3: PREDICTED: collagen alpha-1(III) chain-like|unclassified	0.3949736044
+UniRef50_UPI000362C355: hypothetical protein	0.3948993954
+UniRef50_UPI000362C355: hypothetical protein|unclassified	0.3948993954
+UniRef50_UPI00046CC98D: hypothetical protein	0.3948607079
+UniRef50_UPI00046CC98D: hypothetical protein|unclassified	0.3948607079
+UniRef50_UPI000378C3C9: hypothetical protein	0.3948591591
+UniRef50_UPI000378C3C9: hypothetical protein|unclassified	0.3948591591
+UniRef50_P66876: Cystathionine gamma-synthase	0.3948459611
+UniRef50_P66876: Cystathionine gamma-synthase|unclassified	0.3948459611
+UniRef50_UPI0003C16653: PREDICTED: putative ribosomal RNA methyltransferase 2-like	0.3947967097
+UniRef50_UPI0003C16653: PREDICTED: putative ribosomal RNA methyltransferase 2-like|unclassified	0.3947967097
+UniRef50_Q168A3: Holliday junction ATP-dependent DNA helicase RuvA	0.3947683135
+UniRef50_Q168A3: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.3947683135
+UniRef50_B6IR17: Conserved domain protein	0.3947372795
+UniRef50_B6IR17: Conserved domain protein|unclassified	0.3947372795
+UniRef50_M7EU96: GroEL	0.3946991146
+UniRef50_M7EU96: GroEL|unclassified	0.3946991146
+UniRef50_F0P5P9	0.3946947485
+UniRef50_F0P5P9|unclassified	0.3946947485
+UniRef50_D3VE89: Transposase	0.3946607643
+UniRef50_D3VE89: Transposase|unclassified	0.3946607643
+UniRef50_B4FJG3	0.3945995643
+UniRef50_B4FJG3|unclassified	0.3945995643
+UniRef50_A1WWY5: Protein-L-isoaspartate O-methyltransferase	0.3945025179
+UniRef50_A1WWY5: Protein-L-isoaspartate O-methyltransferase|unclassified	0.3945025179
+UniRef50_W1IVM9	0.3944834361
+UniRef50_W1IVM9|unclassified	0.3944834361
+UniRef50_UPI00039572E2: PREDICTED: dynactin subunit 1-like	0.3944641580
+UniRef50_UPI00039572E2: PREDICTED: dynactin subunit 1-like|unclassified	0.3944641580
+UniRef50_E6LGM1	0.3944395847
+UniRef50_E6LGM1|unclassified	0.3944395847
+UniRef50_A1V6Q7	0.3943922327
+UniRef50_A1V6Q7|unclassified	0.3943922327
+UniRef50_O13774: GTP cyclohydrolase 1	0.3943417341
+UniRef50_O13774: GTP cyclohydrolase 1|unclassified	0.3943417341
+UniRef50_A1AZG8: Lytic transglycosylase, catalytic	0.3943056955
+UniRef50_A1AZG8: Lytic transglycosylase, catalytic|unclassified	0.3943056955
+UniRef50_C6MAK9	0.3942918909
+UniRef50_C6MAK9|unclassified	0.3942918909
+UniRef50_H4KH03: Component of SufB-SufC-SufD cysteine desulfurase (SufS) activator complex domain protein	0.3942913710
+UniRef50_H4KH03: Component of SufB-SufC-SufD cysteine desulfurase (SufS) activator complex domain protein|unclassified	0.3942913710
+UniRef50_H5P600	0.3942462593
+UniRef50_H5P600|unclassified	0.3942462593
+UniRef50_UPI00046F1F5E: hypothetical protein	0.3942063901
+UniRef50_UPI00046F1F5E: hypothetical protein|unclassified	0.3942063901
+UniRef50_S4AF74	0.3942034860
+UniRef50_S4AF74|unclassified	0.3942034860
+UniRef50_G7ZDK1: TRAP dicarboxylate transport system, small permease component (DctQ-like)	0.3941243596
+UniRef50_G7ZDK1: TRAP dicarboxylate transport system, small permease component (DctQ-like)|unclassified	0.3941243596
+UniRef50_J9NVX9	0.3940932509
+UniRef50_J9NVX9|unclassified	0.3940932509
+UniRef50_UPI000361A80D: hypothetical protein	0.3940867473
+UniRef50_UPI000361A80D: hypothetical protein|unclassified	0.3940867473
+UniRef50_UPI000368BC91: hypothetical protein	0.3940560680
+UniRef50_UPI000368BC91: hypothetical protein|unclassified	0.3940560680
+UniRef50_Q0DI34: Os05g0420000 protein	0.3940106102
+UniRef50_Q0DI34: Os05g0420000 protein|unclassified	0.3940106102
+UniRef50_UPI000372F67C: hypothetical protein	0.3939545031
+UniRef50_UPI000372F67C: hypothetical protein|unclassified	0.3939545031
+UniRef50_B7IPU3	0.3939446034
+UniRef50_B7IPU3|unclassified	0.3939446034
+UniRef50_H0DJE9	0.3939352608
+UniRef50_H0DJE9|unclassified	0.3939352608
+UniRef50_O67703: Acetolactate synthase small subunit	0.3938961798
+UniRef50_O67703: Acetolactate synthase small subunit|unclassified	0.3938961798
+UniRef50_G5SBT2: Respiratory nitrate reductase alpha chain	0.3938829196
+UniRef50_G5SBT2: Respiratory nitrate reductase alpha chain|unclassified	0.3938829196
+UniRef50_O86018: GroESL operon, partial sequence. (Fragment)	0.3938365351
+UniRef50_O86018: GroESL operon, partial sequence. (Fragment)|unclassified	0.3938365351
+UniRef50_X5J954: Transposase ISCca5, IS5 ssgr IS5 family	0.3937830473
+UniRef50_X5J954: Transposase ISCca5, IS5 ssgr IS5 family|unclassified	0.3937830473
+UniRef50_Q04J73: Holo-[acyl-carrier-protein] synthase	0.3937601470
+UniRef50_Q04J73: Holo-[acyl-carrier-protein] synthase|unclassified	0.3937601470
+UniRef50_UPI000375610C: multidrug transporter	0.3937317115
+UniRef50_UPI000375610C: multidrug transporter|unclassified	0.3937317115
+UniRef50_UPI00041CAC19: hypothetical protein	0.3936760208
+UniRef50_UPI00041CAC19: hypothetical protein|unclassified	0.3936760208
+UniRef50_U0D0B6: Phage antirestriction protein	0.3935963768
+UniRef50_U0D0B6: Phage antirestriction protein|unclassified	0.3935963768
+UniRef50_C3F739: VrrA protein product	0.3935804481
+UniRef50_C3F739: VrrA protein product|unclassified	0.3935804481
+UniRef50_UPI00030FA7EB: hypothetical protein	0.3935288609
+UniRef50_UPI00030FA7EB: hypothetical protein|unclassified	0.3935288609
+UniRef50_I0I041	0.3935287875
+UniRef50_I0I041|unclassified	0.3935287875
+UniRef50_UPI00047B57DB: hypothetical protein	0.3935094450
+UniRef50_UPI00047B57DB: hypothetical protein|unclassified	0.3935094450
+UniRef50_D0RND3: Ribulose-5-phosphate 4-epimerase-like epimerase or aldolase	0.3935021810
+UniRef50_D0RND3: Ribulose-5-phosphate 4-epimerase-like epimerase or aldolase|unclassified	0.3935021810
+UniRef50_UPI0003D3803B: dinucleotide-utilizing enzymes	0.3934929271
+UniRef50_UPI0003D3803B: dinucleotide-utilizing enzymes|unclassified	0.3934929271
+UniRef50_F3CJX5: Phosphonate metabolism protein PhnM (Fragment)	0.3934795352
+UniRef50_F3CJX5: Phosphonate metabolism protein PhnM (Fragment)|unclassified	0.3934795352
+UniRef50_UPI000369C54D: hypothetical protein	0.3934531390
+UniRef50_UPI000369C54D: hypothetical protein|unclassified	0.3934531390
+UniRef50_L9G389	0.3934239069
+UniRef50_L9G389|unclassified	0.3934239069
+UniRef50_UPI00047D052E: iron ABC transporter substrate-binding protein	0.3933764047
+UniRef50_UPI00047D052E: iron ABC transporter substrate-binding protein|unclassified	0.3933764047
+UniRef50_X0ZSL3: Marine sediment metagenome DNA, contig: S01H4_C03755	0.3933024589
+UniRef50_X0ZSL3: Marine sediment metagenome DNA, contig: S01H4_C03755|unclassified	0.3933024589
+UniRef50_L0DDS9	0.3932935810
+UniRef50_L0DDS9|unclassified	0.3932935810
+UniRef50_UPI000362AE4B: hypothetical protein	0.3932924304
+UniRef50_UPI000362AE4B: hypothetical protein|unclassified	0.3932924304
+UniRef50_A0A011PB54: Endonuclease III	0.3932624768
+UniRef50_A0A011PB54: Endonuclease III|unclassified	0.3932624768
+UniRef50_H1X6T9: Phospholipase/Carboxylesterase	0.3932338442
+UniRef50_H1X6T9: Phospholipase/Carboxylesterase|unclassified	0.3932338442
+UniRef50_E6MD90	0.3932326161
+UniRef50_E6MD90|unclassified	0.3932326161
+UniRef50_A8PM40: Transcriptional repressor NrdR	0.3931637778
+UniRef50_A8PM40: Transcriptional repressor NrdR|unclassified	0.3931637778
+UniRef50_B4F197: 3-isopropylmalate dehydratase small subunit	0.3931613540
+UniRef50_B4F197: 3-isopropylmalate dehydratase small subunit|unclassified	0.3931613540
+UniRef50_Q0FI95	0.3931501767
+UniRef50_Q0FI95|unclassified	0.3931501767
+UniRef50_W7DWX1: FtsK/SpoIIIE family protein (Fragment)	0.3931183706
+UniRef50_W7DWX1: FtsK/SpoIIIE family protein (Fragment)|unclassified	0.3931183706
+UniRef50_C0AU04: Oligopeptidase A	0.3931111522
+UniRef50_C0AU04: Oligopeptidase A|unclassified	0.3931111522
+UniRef50_A3JNM4	0.3930917661
+UniRef50_A3JNM4|unclassified	0.3930917661
+UniRef50_UPI00046F9C6C: hypothetical protein, partial	0.3930708583
+UniRef50_UPI00046F9C6C: hypothetical protein, partial|unclassified	0.3930708583
+UniRef50_A4WS03	0.3930701433
+UniRef50_A4WS03|unclassified	0.3930701433
+UniRef50_A3MYR6: Shikimate kinase	0.3929739059
+UniRef50_A3MYR6: Shikimate kinase|unclassified	0.3929739059
+UniRef50_C0P3R1	0.3929689092
+UniRef50_C0P3R1|unclassified	0.3929689092
+UniRef50_A0A032W1C5	0.3929273084
+UniRef50_A0A032W1C5|unclassified	0.3929273084
+UniRef50_Q04IW1	0.3929051330
+UniRef50_Q04IW1|unclassified	0.3929051330
+UniRef50_UPI00039A6BAD: hypothetical protein	0.3928964139
+UniRef50_UPI00039A6BAD: hypothetical protein|unclassified	0.3928964139
+UniRef50_B4SSG6	0.3928758898
+UniRef50_B4SSG6|unclassified	0.3928758898
+UniRef50_X1L463: Marine sediment metagenome DNA, contig: S06H3_C01840	0.3928458436
+UniRef50_X1L463: Marine sediment metagenome DNA, contig: S06H3_C01840|unclassified	0.3928458436
+UniRef50_UPI0003B74D97: universal stress protein	0.3927972805
+UniRef50_UPI0003B74D97: universal stress protein|unclassified	0.3927972805
+UniRef50_M0J3W1: dGTPase	0.3927632953
+UniRef50_M0J3W1: dGTPase|unclassified	0.3927632953
+UniRef50_E8U4V1: GAF domain protein	0.3927157392
+UniRef50_E8U4V1: GAF domain protein|unclassified	0.3927157392
+UniRef50_C0DVM5	0.3927064498
+UniRef50_C0DVM5|unclassified	0.3927064498
+UniRef50_W8WXI7	0.3926257410
+UniRef50_W8WXI7|unclassified	0.3926257410
+UniRef50_I4Y2X2: TonB-dependent outermembrane receptor	0.3926187672
+UniRef50_I4Y2X2: TonB-dependent outermembrane receptor|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.3926187672
+UniRef50_Z5X3K7	0.3926153531
+UniRef50_Z5X3K7|unclassified	0.3926153531
+UniRef50_W4PYV1: Lipoprotein	0.3925747709
+UniRef50_W4PYV1: Lipoprotein|unclassified	0.3925747709
+UniRef50_T5L012	0.3925513742
+UniRef50_T5L012|unclassified	0.3925513742
+UniRef50_UPI0003FDE67C: hypothetical protein	0.3925502314
+UniRef50_UPI0003FDE67C: hypothetical protein|unclassified	0.3925502314
+UniRef50_W5EKW2	0.3925344230
+UniRef50_W5EKW2|unclassified	0.3925344230
+UniRef50_A0A037Y546: Membrane protein	0.3924646782
+UniRef50_A0A037Y546: Membrane protein|g__Escherichia.s__Escherichia_coli	0.3924646782
+UniRef50_Q6LUH8	0.3923784033
+UniRef50_Q6LUH8|unclassified	0.3923784033
+UniRef50_S9S7B2	0.3923562337
+UniRef50_S9S7B2|unclassified	0.3923562337
+UniRef50_UPI00036900A5: hypothetical protein	0.3922975676
+UniRef50_UPI00036900A5: hypothetical protein|unclassified	0.3922975676
+UniRef50_Q47D25: Protein-L-isoaspartate O-methyltransferase	0.3922660238
+UniRef50_Q47D25: Protein-L-isoaspartate O-methyltransferase|unclassified	0.3922660238
+UniRef50_I5D206	0.3922345860
+UniRef50_I5D206|unclassified	0.3922345860
+UniRef50_A2WGI8: NAD+ synthase	0.3922163015
+UniRef50_A2WGI8: NAD+ synthase|unclassified	0.3922163015
+UniRef50_C1D0F7: Aminomethyltransferase	0.3921785112
+UniRef50_C1D0F7: Aminomethyltransferase|unclassified	0.3921785112
+UniRef50_Q6FC54: DNA mismatch repair protein MutS	0.3921568627
+UniRef50_Q6FC54: DNA mismatch repair protein MutS|g__Acinetobacter.s__Acinetobacter_baumannii	0.3921568627
+UniRef50_A8TW43: Beta-lactamase-like protein	0.3920697916
+UniRef50_A8TW43: Beta-lactamase-like protein|unclassified	0.3920697916
+UniRef50_S0GCD5	0.3920278545
+UniRef50_S0GCD5|unclassified	0.3920278545
+UniRef50_N3IRG3: Exodeoxyribonuclease V, gamma subunit	0.3920275815
+UniRef50_N3IRG3: Exodeoxyribonuclease V, gamma subunit|unclassified	0.3920275815
+UniRef50_UPI00035141BF: PREDICTED: collagen alpha-1(I) chain-like	0.3920260881
+UniRef50_UPI00035141BF: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.3920260881
+UniRef50_UPI0003A2DB53: hypothetical protein	0.3920200533
+UniRef50_UPI0003A2DB53: hypothetical protein|unclassified	0.3920200533
+UniRef50_UPI000464BAF3: membrane protein	0.3920014451
+UniRef50_UPI000464BAF3: membrane protein|unclassified	0.3920014451
+UniRef50_Q9RSN5: Ferripyochelin-binding protein	0.3919586804
+UniRef50_Q9RSN5: Ferripyochelin-binding protein|unclassified	0.3919586804
+UniRef50_X6KUC0: NAD-dependent formate dehydrogenase subunit delta	0.3919408922
+UniRef50_X6KUC0: NAD-dependent formate dehydrogenase subunit delta|unclassified	0.3919408922
+UniRef50_UPI0003791D67: 1-phosphofructokinase, partial	0.3918547208
+UniRef50_UPI0003791D67: 1-phosphofructokinase, partial|unclassified	0.3918547208
+UniRef50_Q7W5I7: Acyl carrier protein	0.3918403435
+UniRef50_Q7W5I7: Acyl carrier protein|unclassified	0.3918403435
+UniRef50_UPI0004793ABB: hypothetical protein	0.3917985007
+UniRef50_UPI0004793ABB: hypothetical protein|unclassified	0.3917985007
+UniRef50_W5X361: Dienelactone hydrolase	0.3917806496
+UniRef50_W5X361: Dienelactone hydrolase|unclassified	0.3917806496
+UniRef50_UPI0002559CDD: Short-chain dehydrogenase/reductase SDR	0.3917454941
+UniRef50_UPI0002559CDD: Short-chain dehydrogenase/reductase SDR|unclassified	0.3917454941
+UniRef50_Q9RXQ2: Pyruvate dehydrogenase E1 component	0.3916960439
+UniRef50_Q9RXQ2: Pyruvate dehydrogenase E1 component|g__Deinococcus.s__Deinococcus_radiodurans	0.3916960439
+UniRef50_A7GSY3: VrrA protein	0.3916459455
+UniRef50_A7GSY3: VrrA protein|unclassified	0.3916459455
+UniRef50_UPI0004138F31: Fur family transcriptional regulator	0.3916388463
+UniRef50_UPI0004138F31: Fur family transcriptional regulator|unclassified	0.3916388463
+UniRef50_A8HS57	0.3916122366
+UniRef50_A8HS57|unclassified	0.3916122366
+UniRef50_G8REA8	0.3915427864
+UniRef50_G8REA8|unclassified	0.3915427864
+UniRef50_W1F8X3: Predicted chaperone lipoprotein YacC, potentially involved in protein secretion	0.3915286834
+UniRef50_W1F8X3: Predicted chaperone lipoprotein YacC, potentially involved in protein secretion|unclassified	0.3915286834
+UniRef50_B3T0J2	0.3915270649
+UniRef50_B3T0J2|unclassified	0.3915270649
+UniRef50_UPI000471D845: hypothetical protein	0.3915122534
+UniRef50_UPI000471D845: hypothetical protein|unclassified	0.3915122534
+UniRef50_UPI000372761F: hypothetical protein	0.3914842772
+UniRef50_UPI000372761F: hypothetical protein|unclassified	0.3914842772
+UniRef50_I1F0I8	0.3914176249
+UniRef50_I1F0I8|unclassified	0.3914176249
+UniRef50_B8H292: Pyridoxine/pyridoxamine 5'-phosphate oxidase	0.3913737729
+UniRef50_B8H292: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	0.3913737729
+UniRef50_B1TFV8	0.3912796049
+UniRef50_B1TFV8|unclassified	0.3912796049
+UniRef50_UPI00036D20AD: membrane protein	0.3912252675
+UniRef50_UPI00036D20AD: membrane protein|unclassified	0.3912252675
+UniRef50_UPI0004654768: hypothetical protein	0.3911703662
+UniRef50_UPI0004654768: hypothetical protein|unclassified	0.3911703662
+UniRef50_A6UI32: NnrUfamily protein	0.3911507988
+UniRef50_A6UI32: NnrUfamily protein|unclassified	0.3911507988
+UniRef50_W9BX21: Flagellar P-ring protein	0.3911232699
+UniRef50_W9BX21: Flagellar P-ring protein|unclassified	0.3911232699
+UniRef50_UPI00047EBCE0: carboxymuconolactone decarboxylase	0.3911157138
+UniRef50_UPI00047EBCE0: carboxymuconolactone decarboxylase|unclassified	0.3911157138
+UniRef50_F0P981: Lipoprotein, putative	0.3910775903
+UniRef50_F0P981: Lipoprotein, putative|unclassified	0.3910775903
+UniRef50_K3XPP0	0.3909996142
+UniRef50_K3XPP0|unclassified	0.3909996142
+UniRef50_UPI0003B52D37: SAM-dependent methyltransferase	0.3909706305
+UniRef50_UPI0003B52D37: SAM-dependent methyltransferase|unclassified	0.3909706305
+UniRef50_W1VFS8	0.3909403177
+UniRef50_W1VFS8|unclassified	0.3909403177
+UniRef50_X1ABV5: Marine sediment metagenome DNA, contig: S01H4_C04377 (Fragment)	0.3909238526
+UniRef50_X1ABV5: Marine sediment metagenome DNA, contig: S01H4_C04377 (Fragment)|unclassified	0.3909238526
+UniRef50_W7ZR47: KapB, lipoprotein	0.3908776847
+UniRef50_W7ZR47: KapB, lipoprotein|unclassified	0.3908776847
+UniRef50_B9TDS9	0.3907187711
+UniRef50_B9TDS9|unclassified	0.3907187711
+UniRef50_L8BCK3	0.3906691357
+UniRef50_L8BCK3|unclassified	0.3906691357
+UniRef50_Q49VN9	0.3906553337
+UniRef50_Q49VN9|unclassified	0.3906553337
+UniRef50_UPI00037A58D0: hypothetical protein	0.3906522809
+UniRef50_UPI00037A58D0: hypothetical protein|unclassified	0.3906522809
+UniRef50_X2HWL3: TonB-dependent receptor	0.3906250000
+UniRef50_X2HWL3: TonB-dependent receptor|g__Helicobacter.s__Helicobacter_pylori	0.3906250000
+UniRef50_UPI000471E63B: hypothetical protein, partial	0.3906128137
+UniRef50_UPI000471E63B: hypothetical protein, partial|unclassified	0.3906128137
+UniRef50_B3T6L0	0.3906110669
+UniRef50_B3T6L0|unclassified	0.3906110669
+UniRef50_UPI0003EB0DB3: hypothetical protein	0.3906082605
+UniRef50_UPI0003EB0DB3: hypothetical protein|unclassified	0.3906082605
+UniRef50_C3A4U1	0.3906027757
+UniRef50_C3A4U1|unclassified	0.3906027757
+UniRef50_C6CUA4: Involved in spore envelope assembly	0.3905957518
+UniRef50_C6CUA4: Involved in spore envelope assembly|unclassified	0.3905957518
+UniRef50_UPI000478E93F: hypothetical protein, partial	0.3905822893
+UniRef50_UPI000478E93F: hypothetical protein, partial|unclassified	0.3905822893
+UniRef50_A4ERM0: Phosphatase, Ppx/GppA family protein	0.3905820169
+UniRef50_A4ERM0: Phosphatase, Ppx/GppA family protein|unclassified	0.3905820169
+UniRef50_UPI00016C59A2: hypothetical protein	0.3905631376
+UniRef50_UPI00016C59A2: hypothetical protein|unclassified	0.3905631376
+UniRef50_Q10R79: Expressed protein	0.3905583424
+UniRef50_Q10R79: Expressed protein|unclassified	0.3905583424
+UniRef50_B9NY19: Replication protein C	0.3905576178
+UniRef50_B9NY19: Replication protein C|unclassified	0.3905576178
+UniRef50_UPI000361993A: molybdenum metabolism regulator	0.3905361144
+UniRef50_UPI000361993A: molybdenum metabolism regulator|unclassified	0.3905361144
+UniRef50_Q57625: Probable acetolactate synthase small subunit	0.3905128903
+UniRef50_Q57625: Probable acetolactate synthase small subunit|unclassified	0.3905128903
+UniRef50_UPI0002491C2F: hypothetical protein	0.3905066482
+UniRef50_UPI0002491C2F: hypothetical protein|unclassified	0.3905066482
+UniRef50_A4VGW7: Lipopeptide LppL	0.3904737914
+UniRef50_A4VGW7: Lipopeptide LppL|unclassified	0.3904737914
+UniRef50_Z2DT03	0.3904571942
+UniRef50_Z2DT03|unclassified	0.3904571942
+UniRef50_T1IAF8	0.3904449949
+UniRef50_T1IAF8|unclassified	0.3904449949
+UniRef50_V7YLV7	0.3904375387
+UniRef50_V7YLV7|unclassified	0.3904375387
+UniRef50_UPI00014C4177: MULTISPECIES: single-stranded DNA-binding protein	0.3903752142
+UniRef50_UPI00014C4177: MULTISPECIES: single-stranded DNA-binding protein|unclassified	0.3903752142
+UniRef50_F3EPE9	0.3903437489
+UniRef50_F3EPE9|unclassified	0.3903437489
+UniRef50_Q13AM5: Transcriptional regulator, AsnC family	0.3903047428
+UniRef50_Q13AM5: Transcriptional regulator, AsnC family|unclassified	0.3903047428
+UniRef50_V9ZXM9	0.3902961436
+UniRef50_V9ZXM9|unclassified	0.3902961436
+UniRef50_UPI0004750A2D: gas vesicle protein	0.3902935620
+UniRef50_UPI0004750A2D: gas vesicle protein|unclassified	0.3902935620
+UniRef50_UPI0004740AD1: histidine kinase	0.3902629859
+UniRef50_UPI0004740AD1: histidine kinase|unclassified	0.3902629859
+UniRef50_G8N5Q3: Stage V sporulation protein R	0.3902512537
+UniRef50_G8N5Q3: Stage V sporulation protein R|unclassified	0.3902512537
+UniRef50_UPI0003B503CA: cytochrome C biogenesis protein CcdA	0.3902242149
+UniRef50_UPI0003B503CA: cytochrome C biogenesis protein CcdA|unclassified	0.3902242149
+UniRef50_E2XDR8	0.3902165063
+UniRef50_E2XDR8|unclassified	0.3902165063
+UniRef50_UPI0003B7B25C: alanine glycine permease	0.3902076616
+UniRef50_UPI0003B7B25C: alanine glycine permease|unclassified	0.3902076616
+UniRef50_R5H5E8	0.3901400541
+UniRef50_R5H5E8|unclassified	0.3901400541
+UniRef50_H6RR56	0.3901166468
+UniRef50_H6RR56|unclassified	0.3901166468
+UniRef50_X5ZST2	0.3900812082
+UniRef50_X5ZST2|unclassified	0.3900812082
+UniRef50_UPI000368CB57: hypothetical protein	0.3900697723
+UniRef50_UPI000368CB57: hypothetical protein|unclassified	0.3900697723
+UniRef50_UPI000470CE1D: hypothetical protein, partial	0.3900381544
+UniRef50_UPI000470CE1D: hypothetical protein, partial|unclassified	0.3900381544
+UniRef50_B7V9T8	0.3900372105
+UniRef50_B7V9T8|unclassified	0.3900372105
+UniRef50_UPI00047D0941: ribonuclease J	0.3899995861
+UniRef50_UPI00047D0941: ribonuclease J|unclassified	0.3899995861
+UniRef50_UPI0003B6DF9A: hypothetical protein	0.3899926046
+UniRef50_UPI0003B6DF9A: hypothetical protein|unclassified	0.3899926046
+UniRef50_A9GXK1: Peptidyl-tRNA hydrolase	0.3899683686
+UniRef50_A9GXK1: Peptidyl-tRNA hydrolase|unclassified	0.3899683686
+UniRef50_K4YWM5	0.3899495874
+UniRef50_K4YWM5|unclassified	0.3899495874
+UniRef50_T1Z5E4	0.3899121365
+UniRef50_T1Z5E4|unclassified	0.3899121365
+UniRef50_Q7VEG3: Nucleoside diphosphate kinase	0.3898304466
+UniRef50_Q7VEG3: Nucleoside diphosphate kinase|unclassified	0.3898304466
+UniRef50_UPI000050F9FD: C4-dicarboxylate ABC transporter permease	0.3897763881
+UniRef50_UPI000050F9FD: C4-dicarboxylate ABC transporter permease|unclassified	0.3897763881
+UniRef50_UPI0003FAE082: D-alanine aminotransferase	0.3897604451
+UniRef50_UPI0003FAE082: D-alanine aminotransferase|unclassified	0.3897604451
+UniRef50_UPI00046F1E8D: aminotransferase, partial	0.3897525961
+UniRef50_UPI00046F1E8D: aminotransferase, partial|unclassified	0.3897525961
+UniRef50_E3NW74	0.3897505136
+UniRef50_E3NW74|unclassified	0.3897505136
+UniRef50_N7G7K3: DNA replication and repair protein recF	0.3897406760
+UniRef50_N7G7K3: DNA replication and repair protein recF|unclassified	0.3897406760
+UniRef50_G0IAR6: Transposase	0.3897239557
+UniRef50_G0IAR6: Transposase|unclassified	0.3897239557
+UniRef50_V5SDT8	0.3897067249
+UniRef50_V5SDT8|unclassified	0.3897067249
+UniRef50_M5T1U6: Permease large protein, C4-dicarboxylate transport system	0.3896481316
+UniRef50_M5T1U6: Permease large protein, C4-dicarboxylate transport system|unclassified	0.3896481316
+UniRef50_W7VSI1	0.3896090449
+UniRef50_W7VSI1|unclassified	0.3896090449
+UniRef50_UPI00035C67BF: hypothetical protein, partial	0.3895924925
+UniRef50_UPI00035C67BF: hypothetical protein, partial|unclassified	0.3895924925
+UniRef50_A5IJ44: Phosphopantetheine adenylyltransferase	0.3895900675
+UniRef50_A5IJ44: Phosphopantetheine adenylyltransferase|unclassified	0.3895900675
+UniRef50_Q3KMC3: 3-oxoacyl-[acyl-carrier-protein] synthase 3	0.3895862776
+UniRef50_Q3KMC3: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	0.3895862776
+UniRef50_UPI000255750F: hypothetical protein	0.3895812207
+UniRef50_UPI000255750F: hypothetical protein|unclassified	0.3895812207
+UniRef50_Q53175: MotB	0.3895796850
+UniRef50_Q53175: MotB|unclassified	0.3895796850
+UniRef50_D8UJ13	0.3895597974
+UniRef50_D8UJ13|unclassified	0.3895597974
+UniRef50_J1NS24: Arabinose transport protein	0.3895575009
+UniRef50_J1NS24: Arabinose transport protein|unclassified	0.3895575009
+UniRef50_C6C6Y1: Tail X family protein	0.3895469967
+UniRef50_C6C6Y1: Tail X family protein|unclassified	0.3895469967
+UniRef50_U2TD17: MaoC-like protein	0.3895137463
+UniRef50_U2TD17: MaoC-like protein|unclassified	0.3895137463
+UniRef50_UPI0003503ABC: PREDICTED: homeobox protein Hox-A5-like isoform X2	0.3895120558
+UniRef50_UPI0003503ABC: PREDICTED: homeobox protein Hox-A5-like isoform X2|unclassified	0.3895120558
+UniRef50_J9P154	0.3894930635
+UniRef50_J9P154|unclassified	0.3894930635
+UniRef50_B7A6L8	0.3894776153
+UniRef50_B7A6L8|unclassified	0.3894776153
+UniRef50_UPI000317939F: hypothetical protein	0.3894558657
+UniRef50_UPI000317939F: hypothetical protein|unclassified	0.3894558657
+UniRef50_UPI00038126DC: hypothetical protein	0.3893762199
+UniRef50_UPI00038126DC: hypothetical protein|unclassified	0.3893762199
+UniRef50_UPI0003F78D52: dihydrolipoamide dehydrogenase	0.3893404144
+UniRef50_UPI0003F78D52: dihydrolipoamide dehydrogenase|unclassified	0.3893404144
+UniRef50_U1XZB1: Lipoprotein	0.3893374177
+UniRef50_U1XZB1: Lipoprotein|unclassified	0.3893374177
+UniRef50_UPI0004632850: LysR family transcriptional regulator	0.3893308514
+UniRef50_UPI0004632850: LysR family transcriptional regulator|unclassified	0.3893308514
+UniRef50_X5LCG8: Autoinducer 2-degrading protein LsrG	0.3893231959
+UniRef50_X5LCG8: Autoinducer 2-degrading protein LsrG|unclassified	0.3893231959
+UniRef50_UPI00037646FA: hypothetical protein	0.3893092210
+UniRef50_UPI00037646FA: hypothetical protein|unclassified	0.3893092210
+UniRef50_A3VD91: Putative sarcosine oxidase gamma subunit	0.3892912262
+UniRef50_A3VD91: Putative sarcosine oxidase gamma subunit|unclassified	0.3892912262
+UniRef50_UPI00047CB6FD: hypothetical protein	0.3892827864
+UniRef50_UPI00047CB6FD: hypothetical protein|unclassified	0.3892827864
+UniRef50_A0A016TBD0	0.3892017930
+UniRef50_A0A016TBD0|unclassified	0.3892017930
+UniRef50_K2HA35	0.3891785222
+UniRef50_K2HA35|unclassified	0.3891785222
+UniRef50_D1YLF7: DNA repair protein RadA	0.3891643340
+UniRef50_D1YLF7: DNA repair protein RadA|unclassified	0.3891643340
+UniRef50_A4VGE2: Phosphoribosyl-AMP cyclohydrolase	0.3891341658
+UniRef50_A4VGE2: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.3891341658
+UniRef50_UPI0003683990: hypothetical protein	0.3891118307
+UniRef50_UPI0003683990: hypothetical protein|unclassified	0.3891118307
+UniRef50_A0A022S140	0.3891081404
+UniRef50_A0A022S140|unclassified	0.3891081404
+UniRef50_F0KGG0	0.3889224789
+UniRef50_F0KGG0|unclassified	0.3889224789
+UniRef50_UPI0003822E86: hypothetical protein, partial	0.3889150067
+UniRef50_UPI0003822E86: hypothetical protein, partial|unclassified	0.3889150067
+UniRef50_V0G7E6: Colanic acid biosynthesis protein	0.3888826425
+UniRef50_V0G7E6: Colanic acid biosynthesis protein|unclassified	0.3888826425
+UniRef50_A4EFJ3	0.3888750790
+UniRef50_A4EFJ3|unclassified	0.3888750790
+UniRef50_W1GDJ6: Ribonucleotide reductase transcriptional regulator NrdR	0.3888572981
+UniRef50_W1GDJ6: Ribonucleotide reductase transcriptional regulator NrdR|unclassified	0.3888572981
+UniRef50_N2N059: CRISPR-associated endonuclease Cas3-HD	0.3888024883
+UniRef50_N2N059: CRISPR-associated endonuclease Cas3-HD|g__Escherichia.s__Escherichia_coli	0.3888024883
+UniRef50_D2UMP5	0.3887532791
+UniRef50_D2UMP5|unclassified	0.3887532791
+UniRef50_A1VV51	0.3887358986
+UniRef50_A1VV51|unclassified	0.3887358986
+UniRef50_UPI00036039B2: hypothetical protein	0.3887052492
+UniRef50_UPI00036039B2: hypothetical protein|unclassified	0.3887052492
+UniRef50_UPI000468BBB2: hypothetical protein	0.3887047101
+UniRef50_UPI000468BBB2: hypothetical protein|unclassified	0.3887047101
+UniRef50_C1GED8	0.3886627512
+UniRef50_C1GED8|unclassified	0.3886627512
+UniRef50_U2YCQ7	0.3886582540
+UniRef50_U2YCQ7|unclassified	0.3886582540
+UniRef50_B9XVL1	0.3886576533
+UniRef50_B9XVL1|unclassified	0.3886576533
+UniRef50_F6EY42: Transcriptional regulator, CarD family	0.3886149735
+UniRef50_F6EY42: Transcriptional regulator, CarD family|unclassified	0.3886149735
+UniRef50_B7VHW1	0.3885827530
+UniRef50_B7VHW1|unclassified	0.3885827530
+UniRef50_F0M765: GAF domain-containing protein	0.3885808801
+UniRef50_F0M765: GAF domain-containing protein|unclassified	0.3885808801
+UniRef50_A7FAU2	0.3885807139
+UniRef50_A7FAU2|unclassified	0.3885807139
+UniRef50_S5GN29	0.3885614164
+UniRef50_S5GN29|unclassified	0.3885614164
+UniRef50_S3C624: Ph-response regulator protein palh rim21	0.3885475070
+UniRef50_S3C624: Ph-response regulator protein palh rim21|unclassified	0.3885475070
+UniRef50_UPI0002F0F5DA: branched-chain amino acid ABC transporter permease	0.3885438019
+UniRef50_UPI0002F0F5DA: branched-chain amino acid ABC transporter permease|unclassified	0.3885438019
+UniRef50_UPI000395D261: PREDICTED: large proline-rich protein BAG6-like, partial	0.3885416782
+UniRef50_UPI000395D261: PREDICTED: large proline-rich protein BAG6-like, partial|unclassified	0.3885416782
+UniRef50_Q8U5M3	0.3884856749
+UniRef50_Q8U5M3|unclassified	0.3884856749
+UniRef50_K2EIP3	0.3884786528
+UniRef50_K2EIP3|unclassified	0.3884786528
+UniRef50_A0A033UQ71	0.3884753342
+UniRef50_A0A033UQ71|unclassified	0.3884753342
+UniRef50_G8V6F1	0.3884406156
+UniRef50_G8V6F1|unclassified	0.3884406156
+UniRef50_E8NSJ7	0.3884237886
+UniRef50_E8NSJ7|unclassified	0.3884237886
+UniRef50_C4J951	0.3884006342
+UniRef50_C4J951|unclassified	0.3884006342
+UniRef50_R0NCH4	0.3883193936
+UniRef50_R0NCH4|unclassified	0.3883193936
+UniRef50_A0A035TZH2	0.3882502886
+UniRef50_A0A035TZH2|unclassified	0.3882502886
+UniRef50_T6KD91: Poly-beta-1,6-N-acetyl-D-glucosamine export protein	0.3881567732
+UniRef50_T6KD91: Poly-beta-1,6-N-acetyl-D-glucosamine export protein|unclassified	0.3881567732
+UniRef50_H2IGF7	0.3881373517
+UniRef50_H2IGF7|unclassified	0.3881373517
+UniRef50_B3PFP1: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.3880688227
+UniRef50_B3PFP1: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.3880688227
+UniRef50_B4RI50: Heat shock protein Hsp20	0.3880588155
+UniRef50_B4RI50: Heat shock protein Hsp20|unclassified	0.3880588155
+UniRef50_UPI000455F875: hypothetical protein CONPUDRAFT_91364	0.3880481180
+UniRef50_UPI000455F875: hypothetical protein CONPUDRAFT_91364|unclassified	0.3880481180
+UniRef50_B0VQE3: Transposase of ISAba7, IS5 family	0.3880079283
+UniRef50_B0VQE3: Transposase of ISAba7, IS5 family|unclassified	0.3880079283
+UniRef50_J3J7V2: Excalibur domain protein	0.3879608517
+UniRef50_J3J7V2: Excalibur domain protein|unclassified	0.3879608517
+UniRef50_Q3JNE0	0.3879400721
+UniRef50_Q3JNE0|unclassified	0.3879400721
+UniRef50_F0S3X5	0.3879397620
+UniRef50_F0S3X5|unclassified	0.3879397620
+UniRef50_Q7VZ77: Siroheme synthase	0.3878045901
+UniRef50_Q7VZ77: Siroheme synthase|unclassified	0.3878045901
+UniRef50_D3SC86	0.3877784871
+UniRef50_D3SC86|unclassified	0.3877784871
+UniRef50_E3F309	0.3877769103
+UniRef50_E3F309|unclassified	0.3877769103
+UniRef50_UPI00047AE6DA: carbamate kinase	0.3877510587
+UniRef50_UPI00047AE6DA: carbamate kinase|unclassified	0.3877510587
+UniRef50_A0A059IL85	0.3877375885
+UniRef50_A0A059IL85|unclassified	0.3877375885
+UniRef50_UPI00046FE841: GntR family transcriptional regulator	0.3877274837
+UniRef50_UPI00046FE841: GntR family transcriptional regulator|unclassified	0.3877274837
+UniRef50_V8NCE7: Zinc finger CCCH domain-containing protein 13 (Fragment)	0.3877261127
+UniRef50_V8NCE7: Zinc finger CCCH domain-containing protein 13 (Fragment)|unclassified	0.3877261127
+UniRef50_UPI000368B773: hypothetical protein	0.3876648839
+UniRef50_UPI000368B773: hypothetical protein|unclassified	0.3876648839
+UniRef50_UPI0002E36CA8: hypothetical protein	0.3876549316
+UniRef50_UPI0002E36CA8: hypothetical protein|unclassified	0.3876549316
+UniRef50_UPI00036AFCF0: hypothetical protein	0.3876421901
+UniRef50_UPI00036AFCF0: hypothetical protein|unclassified	0.3876421901
+UniRef50_A1A2G3: LexA repressor	0.3876386654
+UniRef50_A1A2G3: LexA repressor|unclassified	0.3876386654
+UniRef50_UPI00030F43FD: hypothetical protein	0.3875594540
+UniRef50_UPI00030F43FD: hypothetical protein|unclassified	0.3875594540
+UniRef50_UPI0003B5E589: ABC transporter ATP-binding protein	0.3875203971
+UniRef50_UPI0003B5E589: ABC transporter ATP-binding protein|unclassified	0.3875203971
+UniRef50_UPI0003A71DC5: nitrogenase molybdenum-iron protein alpha chain	0.3874650084
+UniRef50_UPI0003A71DC5: nitrogenase molybdenum-iron protein alpha chain|unclassified	0.3874650084
+UniRef50_UPI0004674EDF: hypothetical protein	0.3874467261
+UniRef50_UPI0004674EDF: hypothetical protein|unclassified	0.3874467261
+UniRef50_V8T7U7: UPF0380 protein yubP	0.3874006336
+UniRef50_V8T7U7: UPF0380 protein yubP|unclassified	0.3874006336
+UniRef50_F2E1Y6: Predicted protein	0.3873776996
+UniRef50_F2E1Y6: Predicted protein|unclassified	0.3873776996
+UniRef50_UPI0004776938: adenosine deaminase	0.3873636601
+UniRef50_UPI0004776938: adenosine deaminase|unclassified	0.3873636601
+UniRef50_UPI0003659A15: hypothetical protein	0.3873556176
+UniRef50_UPI0003659A15: hypothetical protein|unclassified	0.3873556176
+UniRef50_N3QGD9: Alpha-mannosidase mngB	0.3872966692
+UniRef50_N3QGD9: Alpha-mannosidase mngB|g__Escherichia.s__Escherichia_coli	0.3872966692
+UniRef50_W4AXL3: Transglycosylase-associated protein	0.3872810153
+UniRef50_W4AXL3: Transglycosylase-associated protein|unclassified	0.3872810153
+UniRef50_UPI0003763F6B: transposase	0.3872807882
+UniRef50_UPI0003763F6B: transposase|unclassified	0.3872807882
+UniRef50_F6QJU8	0.3872779329
+UniRef50_F6QJU8|unclassified	0.3872779329
+UniRef50_UPI000471A777: hypothetical protein	0.3872727181
+UniRef50_UPI000471A777: hypothetical protein|unclassified	0.3872727181
+UniRef50_F3SV61	0.3872379674
+UniRef50_F3SV61|unclassified	0.3872379674
+UniRef50_UPI000470F989: argininosuccinate lyase	0.3872120244
+UniRef50_UPI000470F989: argininosuccinate lyase|unclassified	0.3872120244
+UniRef50_A6V9P7: Conserved exported protein	0.3872054726
+UniRef50_A6V9P7: Conserved exported protein|unclassified	0.3872054726
+UniRef50_Q8X3K9	0.3871608656
+UniRef50_Q8X3K9|unclassified	0.3871608656
+UniRef50_P44421: Methionine aminopeptidase	0.3871471042
+UniRef50_P44421: Methionine aminopeptidase|unclassified	0.3871471042
+UniRef50_UPI0002FE7638: flagellin	0.3871005347
+UniRef50_UPI0002FE7638: flagellin|unclassified	0.3871005347
+UniRef50_S8U2B4	0.3870994677
+UniRef50_S8U2B4|unclassified	0.3870994677
+UniRef50_UPI0004711C42: hypothetical protein	0.3870980295
+UniRef50_UPI0004711C42: hypothetical protein|unclassified	0.3870980295
+UniRef50_UPI0003B60FB6: integrase	0.3870887572
+UniRef50_UPI0003B60FB6: integrase|unclassified	0.3870887572
+UniRef50_I0L9E3	0.3870873286
+UniRef50_I0L9E3|unclassified	0.3870873286
+UniRef50_UPI00037E5550: hypothetical protein	0.3870234103
+UniRef50_UPI00037E5550: hypothetical protein|unclassified	0.3870234103
+UniRef50_F2E1P1: Predicted protein (Fragment)	0.3870185929
+UniRef50_F2E1P1: Predicted protein (Fragment)|unclassified	0.3870185929
+UniRef50_A8LJN7	0.3869749315
+UniRef50_A8LJN7|unclassified	0.3869749315
+UniRef50_UPI0002FE1131: hypothetical protein	0.3869465596
+UniRef50_UPI0002FE1131: hypothetical protein|unclassified	0.3869465596
+UniRef50_A2W2H0: Regulatory proteins, IclR	0.3869425206
+UniRef50_A2W2H0: Regulatory proteins, IclR|unclassified	0.3869425206
+UniRef50_V4ZVN5	0.3867860628
+UniRef50_V4ZVN5|unclassified	0.3867860628
+UniRef50_UPI0002894F4B: MULTISPECIES: blue-light sensor BLUF	0.3867605046
+UniRef50_UPI0002894F4B: MULTISPECIES: blue-light sensor BLUF|unclassified	0.3867605046
+UniRef50_Q7MME5	0.3867568511
+UniRef50_Q7MME5|unclassified	0.3867568511
+UniRef50_UPI00016AF6FB: ribonucleotide-diphosphate reductase subunit beta, partial	0.3867563977
+UniRef50_UPI00016AF6FB: ribonucleotide-diphosphate reductase subunit beta, partial|unclassified	0.3867563977
+UniRef50_UPI00037837C4: hypothetical protein, partial	0.3867191861
+UniRef50_UPI00037837C4: hypothetical protein, partial|unclassified	0.3867191861
+UniRef50_B2SN64: Transposase	0.3867121940
+UniRef50_B2SN64: Transposase|unclassified	0.3867121940
+UniRef50_P13086: Succinyl-CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial	0.3867103200
+UniRef50_P13086: Succinyl-CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial|unclassified	0.3867103200
+UniRef50_S9QCK8: Flagellar protein FlaF, putative	0.3867064862
+UniRef50_S9QCK8: Flagellar protein FlaF, putative|unclassified	0.3867064862
+UniRef50_UPI000376DDCE: hypothetical protein, partial	0.3866846153
+UniRef50_UPI000376DDCE: hypothetical protein, partial|unclassified	0.3866846153
+UniRef50_G4C8L6	0.3866215322
+UniRef50_G4C8L6|unclassified	0.3866215322
+UniRef50_UPI00046A4FF1: hypothetical protein	0.3865967393
+UniRef50_UPI00046A4FF1: hypothetical protein|unclassified	0.3865967393
+UniRef50_T1AQE0: LemA family protein (Fragment)	0.3865839944
+UniRef50_T1AQE0: LemA family protein (Fragment)|unclassified	0.3865839944
+UniRef50_T1AJH6: Pyridoxal phosphate-dependent enzyme, beta subunit domain protein (Fragment)	0.3865664499
+UniRef50_T1AJH6: Pyridoxal phosphate-dependent enzyme, beta subunit domain protein (Fragment)|unclassified	0.3865664499
+UniRef50_Q3JWI1	0.3865627116
+UniRef50_Q3JWI1|unclassified	0.3865627116
+UniRef50_Q73CC8	0.3865481252
+UniRef50_Q73CC8|unclassified	0.3865481252
+UniRef50_D8S4R3	0.3865476604
+UniRef50_D8S4R3|unclassified	0.3865476604
+UniRef50_X8F7D6: 40-residue YVTN family beta-propeller repeat domain protein	0.3865040162
+UniRef50_X8F7D6: 40-residue YVTN family beta-propeller repeat domain protein|unclassified	0.3865040162
+UniRef50_UPI00036F9653: hypothetical protein	0.3864665488
+UniRef50_UPI00036F9653: hypothetical protein|unclassified	0.3864665488
+UniRef50_W9V4Y7	0.3864567437
+UniRef50_W9V4Y7|unclassified	0.3864567437
+UniRef50_I8R056	0.3864503405
+UniRef50_I8R056|unclassified	0.3864503405
+UniRef50_P20901: Citrate synthase	0.3864476749
+UniRef50_P20901: Citrate synthase|unclassified	0.3864476749
+UniRef50_UPI00046799E3: ribose ABC transporter permease	0.3864423517
+UniRef50_UPI00046799E3: ribose ABC transporter permease|unclassified	0.3864423517
+UniRef50_Q8K183: Pyridoxal kinase	0.3864374999
+UniRef50_Q8K183: Pyridoxal kinase|unclassified	0.3864374999
+UniRef50_UPI000375B52C: hypothetical protein	0.3864275935
+UniRef50_UPI000375B52C: hypothetical protein|unclassified	0.3864275935
+UniRef50_E0THY3: SpoVT/AbrB-like cell growth regulatory protein	0.3864027267
+UniRef50_E0THY3: SpoVT/AbrB-like cell growth regulatory protein|unclassified	0.3864027267
+UniRef50_A0A024L183: PapC-like porin protein	0.3863987635
+UniRef50_A0A024L183: PapC-like porin protein|g__Escherichia.s__Escherichia_coli	0.3863987635
+UniRef50_A0A022H066: Transcriptional regulator	0.3863540169
+UniRef50_A0A022H066: Transcriptional regulator|unclassified	0.3863540169
+UniRef50_A0A034TUN2: Excinuclease ABC subunit B	0.3862674260
+UniRef50_A0A034TUN2: Excinuclease ABC subunit B|unclassified	0.3862674260
+UniRef50_B5GT91: WD-40 repeat-containing protein	0.3862423950
+UniRef50_B5GT91: WD-40 repeat-containing protein|unclassified	0.3862423950
+UniRef50_UPI000328FF99	0.3861003861
+UniRef50_UPI000328FF99|unclassified	0.3861003861
+UniRef50_U5UL90	0.3860480223
+UniRef50_U5UL90|unclassified	0.3860480223
+UniRef50_W8H532	0.3860287992
+UniRef50_W8H532|unclassified	0.3860287992
+UniRef50_X1I934: Marine sediment metagenome DNA, contig: S03H2_S07083 (Fragment)	0.3859975254
+UniRef50_X1I934: Marine sediment metagenome DNA, contig: S03H2_S07083 (Fragment)|unclassified	0.3859975254
+UniRef50_UPI000350BCFC	0.3859526930
+UniRef50_UPI000350BCFC|unclassified	0.3859526930
+UniRef50_Q89AK1: Glyceraldehyde-3-phosphate dehydrogenase	0.3859469360
+UniRef50_Q89AK1: Glyceraldehyde-3-phosphate dehydrogenase|unclassified	0.3859469360
+UniRef50_Q2G516	0.3858739135
+UniRef50_Q2G516|unclassified	0.3858739135
+UniRef50_A1WUL2: Redox-active disulfide protein 2	0.3858592716
+UniRef50_A1WUL2: Redox-active disulfide protein 2|unclassified	0.3858592716
+UniRef50_X1P6I9: Marine sediment metagenome DNA, contig: S06H3_S07165 (Fragment)	0.3858269605
+UniRef50_X1P6I9: Marine sediment metagenome DNA, contig: S06H3_S07165 (Fragment)|unclassified	0.3858269605
+UniRef50_W4UAJ0: Integral membrane protein	0.3858247182
+UniRef50_W4UAJ0: Integral membrane protein|unclassified	0.3858247182
+UniRef50_Y0IGK7	0.3858127308
+UniRef50_Y0IGK7|unclassified	0.3858127308
+UniRef50_UPI0003B60E00: GntR family transcriptional regulator	0.3857996385
+UniRef50_UPI0003B60E00: GntR family transcriptional regulator|unclassified	0.3857996385
+UniRef50_X6GL75	0.3857877666
+UniRef50_X6GL75|unclassified	0.3857877666
+UniRef50_Q28Q83: Ribonuclease BN putative	0.3857389374
+UniRef50_Q28Q83: Ribonuclease BN putative|unclassified	0.3857389374
+UniRef50_A0A059LAD6	0.3856735781
+UniRef50_A0A059LAD6|unclassified	0.3856735781
+UniRef50_UPI00036ED578: hypothetical protein, partial	0.3855784716
+UniRef50_UPI00036ED578: hypothetical protein, partial|unclassified	0.3855784716
+UniRef50_UPI0002E5C3C1: hypothetical protein	0.3855584564
+UniRef50_UPI0002E5C3C1: hypothetical protein|unclassified	0.3855584564
+UniRef50_V4QF65	0.3855272683
+UniRef50_V4QF65|unclassified	0.3855272683
+UniRef50_K6SUN6: Glyoxalase family protein	0.3855194211
+UniRef50_K6SUN6: Glyoxalase family protein|unclassified	0.3855194211
+UniRef50_UPI00044112D5: hypothetical protein AURDEDRAFT_162472	0.3855050116
+UniRef50_UPI00044112D5: hypothetical protein AURDEDRAFT_162472|unclassified	0.3855050116
+UniRef50_S6GM17	0.3855020575
+UniRef50_S6GM17|unclassified	0.3855020575
+UniRef50_U4K373	0.3854591157
+UniRef50_U4K373|unclassified	0.3854591157
+UniRef50_UPI000476F303: transcriptional regulator	0.3853491235
+UniRef50_UPI000476F303: transcriptional regulator|unclassified	0.3853491235
+UniRef50_W7HJ14: Peptidase (Fragment)	0.3853314878
+UniRef50_W7HJ14: Peptidase (Fragment)|unclassified	0.3853314878
+UniRef50_K0RV75	0.3853098656
+UniRef50_K0RV75|unclassified	0.3853098656
+UniRef50_UPI0001E89A61: diacylglycerol kinase	0.3853058943
+UniRef50_UPI0001E89A61: diacylglycerol kinase|unclassified	0.3853058943
+UniRef50_UPI0003648E7B: hypothetical protein	0.3852657151
+UniRef50_UPI0003648E7B: hypothetical protein|unclassified	0.3852657151
+UniRef50_H3X5Y3	0.3852558811
+UniRef50_H3X5Y3|unclassified	0.3852558811
+UniRef50_UPI0003A400F2: diaminohydroxyphosphoribosylaminopyrimidine deaminase	0.3852100131
+UniRef50_UPI0003A400F2: diaminohydroxyphosphoribosylaminopyrimidine deaminase|unclassified	0.3852100131
+UniRef50_UPI00037E9004: hypothetical protein	0.3851784114
+UniRef50_UPI00037E9004: hypothetical protein|unclassified	0.3851784114
+UniRef50_Q86ZM3: Catabolic 3-dehydroquinase	0.3851152647
+UniRef50_Q86ZM3: Catabolic 3-dehydroquinase|unclassified	0.3851152647
+UniRef50_UPI00046E9EAA: peptide ABC transporter permease	0.3850958351
+UniRef50_UPI00046E9EAA: peptide ABC transporter permease|unclassified	0.3850958351
+UniRef50_UPI0002378B1B: glutathione-dependent formaldehyde-activating protein	0.3850430234
+UniRef50_UPI0002378B1B: glutathione-dependent formaldehyde-activating protein|unclassified	0.3850430234
+UniRef50_UPI00036DD230: hypothetical protein	0.3850418814
+UniRef50_UPI00036DD230: hypothetical protein|unclassified	0.3850418814
+UniRef50_Q9CGF0: Xanthine phosphoribosyltransferase	0.3850260035
+UniRef50_Q9CGF0: Xanthine phosphoribosyltransferase|unclassified	0.3850260035
+UniRef50_W0AGG6	0.3849877193
+UniRef50_W0AGG6|unclassified	0.3849877193
+UniRef50_J8G7J1	0.3849597036
+UniRef50_J8G7J1|unclassified	0.3849597036
+UniRef50_T0ZH42	0.3849372503
+UniRef50_T0ZH42|unclassified	0.3849372503
+UniRef50_UPI00037E43F6: hypothetical protein	0.3849230157
+UniRef50_UPI00037E43F6: hypothetical protein|unclassified	0.3849230157
+UniRef50_UPI0003C7E616: hypothetical protein	0.3848730514
+UniRef50_UPI0003C7E616: hypothetical protein|unclassified	0.3848730514
+UniRef50_A8AFN0	0.3848526524
+UniRef50_A8AFN0|unclassified	0.3848526524
+UniRef50_X3ENS3: Transcriptional regulator	0.3847562811
+UniRef50_X3ENS3: Transcriptional regulator|unclassified	0.3847562811
+UniRef50_UPI00037D28F8: hypothetical protein	0.3847322373
+UniRef50_UPI00037D28F8: hypothetical protein|unclassified	0.3847322373
+UniRef50_UPI0003714DE7: hypothetical protein	0.3847090674
+UniRef50_UPI0003714DE7: hypothetical protein|unclassified	0.3847090674
+UniRef50_UPI000421A72E: alpha-ketoglutarate-dependent dioxygenase	0.3846892449
+UniRef50_UPI000421A72E: alpha-ketoglutarate-dependent dioxygenase|unclassified	0.3846892449
+UniRef50_Q9AAF6	0.3846420732
+UniRef50_Q9AAF6|unclassified	0.3846420732
+UniRef50_UPI000174492D: spermidine/putrescine ABC transporter ATPase subunit	0.3846406636
+UniRef50_UPI000174492D: spermidine/putrescine ABC transporter ATPase subunit|unclassified	0.3846406636
+UniRef50_UPI000255849F: TetR family transcriptional regulator	0.3846091329
+UniRef50_UPI000255849F: TetR family transcriptional regulator|unclassified	0.3846091329
+UniRef50_K2ADB5	0.3846088198
+UniRef50_K2ADB5|unclassified	0.3846088198
+UniRef50_Z2DJY9: Membrane protein	0.3845980658
+UniRef50_Z2DJY9: Membrane protein|unclassified	0.3845980658
+UniRef50_S9THX3	0.3845918312
+UniRef50_S9THX3|unclassified	0.3845918312
+UniRef50_E4SRJ6	0.3845896694
+UniRef50_E4SRJ6|unclassified	0.3845896694
+UniRef50_UPI0003B41F76: GTP-binding protein YsxC	0.3845691915
+UniRef50_UPI0003B41F76: GTP-binding protein YsxC|unclassified	0.3845691915
+UniRef50_Q52309: Glucose-1-phosphatase	0.3845652801
+UniRef50_Q52309: Glucose-1-phosphatase|unclassified	0.3845652801
+UniRef50_UPI00047598C5: hypothetical protein	0.3845255017
+UniRef50_UPI00047598C5: hypothetical protein|unclassified	0.3845255017
+UniRef50_M2RAP0	0.3844795514
+UniRef50_M2RAP0|unclassified	0.3844795514
+UniRef50_R4RFG5: Phosphatidylglycerol lysyltransferase MprF	0.3844675125
+UniRef50_R4RFG5: Phosphatidylglycerol lysyltransferase MprF|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.3844675125
+UniRef50_UPI00047BE7E7: hypothetical protein	0.3844669104
+UniRef50_UPI00047BE7E7: hypothetical protein|unclassified	0.3844669104
+UniRef50_Q16C42: ABC transporter, permease protein, putative	0.3844519321
+UniRef50_Q16C42: ABC transporter, permease protein, putative|unclassified	0.3844519321
+UniRef50_UPI00047856BF: hypothetical protein	0.3844434847
+UniRef50_UPI00047856BF: hypothetical protein|unclassified	0.3844434847
+UniRef50_K1CRP6	0.3844007773
+UniRef50_K1CRP6|unclassified	0.3844007773
+UniRef50_UPI000365F67B: hypothetical protein	0.3843972805
+UniRef50_UPI000365F67B: hypothetical protein|unclassified	0.3843972805
+UniRef50_UPI0003686F6D: hypothetical protein, partial	0.3843940192
+UniRef50_UPI0003686F6D: hypothetical protein, partial|unclassified	0.3843940192
+UniRef50_O35331: Pyridoxal kinase	0.3843816243
+UniRef50_O35331: Pyridoxal kinase|unclassified	0.3843816243
+UniRef50_UPI00036DFF4F: hypothetical protein	0.3843727278
+UniRef50_UPI00036DFF4F: hypothetical protein|unclassified	0.3843727278
+UniRef50_F0YRU4: Expressed protein (Fragment)	0.3843693394
+UniRef50_F0YRU4: Expressed protein (Fragment)|unclassified	0.3843693394
+UniRef50_UPI0003B793E1: general stress protein	0.3843677211
+UniRef50_UPI0003B793E1: general stress protein|unclassified	0.3843677211
+UniRef50_UPI00036632DA: hypothetical protein	0.3843493134
+UniRef50_UPI00036632DA: hypothetical protein|unclassified	0.3843493134
+UniRef50_R3A6I6	0.3842926288
+UniRef50_R3A6I6|unclassified	0.3842926288
+UniRef50_UPI000255A1B0: sulfate ABC transporter, inner membrane subunit CysT	0.3842909838
+UniRef50_UPI000255A1B0: sulfate ABC transporter, inner membrane subunit CysT|unclassified	0.3842909838
+UniRef50_D5SW93	0.3842525779
+UniRef50_D5SW93|unclassified	0.3842525779
+UniRef50_UPI00035CBB09: hypothetical protein	0.3842072669
+UniRef50_UPI00035CBB09: hypothetical protein|unclassified	0.3842072669
+UniRef50_UPI000468DFAA: hypothetical protein	0.3841854753
+UniRef50_UPI000468DFAA: hypothetical protein|unclassified	0.3841854753
+UniRef50_E4ZBP3: Aminopeptidase N	0.3841721091
+UniRef50_E4ZBP3: Aminopeptidase N|g__Neisseria.s__Neisseria_meningitidis	0.3841721091
+UniRef50_UPI000262CCC9: hypothetical protein	0.3841492083
+UniRef50_UPI000262CCC9: hypothetical protein|unclassified	0.3841492083
+UniRef50_UPI0003B30D70: gamma-glutamyl-gamma-aminobutyrate hydrolase, partial	0.3841239561
+UniRef50_UPI0003B30D70: gamma-glutamyl-gamma-aminobutyrate hydrolase, partial|unclassified	0.3841239561
+UniRef50_U6B8J6: General stress protein	0.3840803678
+UniRef50_U6B8J6: General stress protein|unclassified	0.3840803678
+UniRef50_UPI000408C022: acyl-CoA synthetase	0.3840742546
+UniRef50_UPI000408C022: acyl-CoA synthetase|unclassified	0.3840742546
+UniRef50_UPI000363142F: hypothetical protein	0.3840423220
+UniRef50_UPI000363142F: hypothetical protein|unclassified	0.3840423220
+UniRef50_Y6YQ66	0.3840229247
+UniRef50_Y6YQ66|unclassified	0.3840229247
+UniRef50_B7V896	0.3840225022
+UniRef50_B7V896|unclassified	0.3840225022
+UniRef50_U3HDX0	0.3840202620
+UniRef50_U3HDX0|unclassified	0.3840202620
+UniRef50_UPI0002BAC68C: hypothetical protein, partial	0.3839725082
+UniRef50_UPI0002BAC68C: hypothetical protein, partial|unclassified	0.3839725082
+UniRef50_Q2GW43: Predicted protein	0.3839185874
+UniRef50_Q2GW43: Predicted protein|unclassified	0.3839185874
+UniRef50_F5X675: Phosphatidylethanolamine-binding protein	0.3839064432
+UniRef50_F5X675: Phosphatidylethanolamine-binding protein|unclassified	0.3839064432
+UniRef50_K2AIS6: Sarcosine oxidase, alpha subunit family (Fragment)	0.3838255460
+UniRef50_K2AIS6: Sarcosine oxidase, alpha subunit family (Fragment)|unclassified	0.3838255460
+UniRef50_UPI00037CF6F9: nitrate ABC transporter ATP-binding protein	0.3837702109
+UniRef50_UPI00037CF6F9: nitrate ABC transporter ATP-binding protein|unclassified	0.3837702109
+UniRef50_UPI00037D0204: MULTISPECIES: 30S ribosomal protein S17	0.3837623254
+UniRef50_UPI00037D0204: MULTISPECIES: 30S ribosomal protein S17|unclassified	0.3837623254
+UniRef50_Q3JWC8	0.3837512765
+UniRef50_Q3JWC8|unclassified	0.3837512765
+UniRef50_W0CD18	0.3837428698
+UniRef50_W0CD18|unclassified	0.3837428698
+UniRef50_B2FK95: Protein-L-isoaspartate O-methyltransferase	0.3837360815
+UniRef50_B2FK95: Protein-L-isoaspartate O-methyltransferase|unclassified	0.3837360815
+UniRef50_B2I8X8: Protein-L-isoaspartate O-methyltransferase	0.3837360815
+UniRef50_B2I8X8: Protein-L-isoaspartate O-methyltransferase|unclassified	0.3837360815
+UniRef50_K7RVV7: FAD linked oxidase protein	0.3837298542
+UniRef50_K7RVV7: FAD linked oxidase protein|g__Propionibacterium.s__Propionibacterium_acnes	0.3837298542
+UniRef50_K2CQC0	0.3837174231
+UniRef50_K2CQC0|unclassified	0.3837174231
+UniRef50_UPI00016C4BF8: Cadherin	0.3837154677
+UniRef50_UPI00016C4BF8: Cadherin|unclassified	0.3837154677
+UniRef50_X9X307	0.3836742331
+UniRef50_X9X307|unclassified	0.3836742331
+UniRef50_A8AIG9	0.3836588873
+UniRef50_A8AIG9|unclassified	0.3836588873
+UniRef50_UPI00046F3F46: hypothetical protein	0.3836266764
+UniRef50_UPI00046F3F46: hypothetical protein|unclassified	0.3836266764
+UniRef50_B2SR65	0.3836180364
+UniRef50_B2SR65|unclassified	0.3836180364
+UniRef50_A6LWL3: Collagen triple helix repeat	0.3835826621
+UniRef50_A6LWL3: Collagen triple helix repeat|g__Clostridium.s__Clostridium_beijerinckii	0.3835826621
+UniRef50_C3G896: VrrA protein product	0.3835745749
+UniRef50_C3G896: VrrA protein product|unclassified	0.3835745749
+UniRef50_W7X9E0	0.3835626576
+UniRef50_W7X9E0|unclassified	0.3835626576
+UniRef50_A6E3A0: Magnesium-chelatase, BchO	0.3835609341
+UniRef50_A6E3A0: Magnesium-chelatase, BchO|unclassified	0.3835609341
+UniRef50_C0H4V5: RNA binding protein, putative	0.3835522637
+UniRef50_C0H4V5: RNA binding protein, putative|unclassified	0.3835522637
+UniRef50_R4S2F1	0.3835510063
+UniRef50_R4S2F1|unclassified	0.3835510063
+UniRef50_S3L5X6	0.3835294998
+UniRef50_S3L5X6|unclassified	0.3835294998
+UniRef50_A7IAF5: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.3835251401
+UniRef50_A7IAF5: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.3835251401
+UniRef50_W7WGN1: Conjugal transfer pilus assembly protein TraU	0.3834867417
+UniRef50_W7WGN1: Conjugal transfer pilus assembly protein TraU|unclassified	0.3834867417
+UniRef50_UPI00047626A9: hypothetical protein	0.3834779676
+UniRef50_UPI00047626A9: hypothetical protein|unclassified	0.3834779676
+UniRef50_A7C0D0	0.3834768202
+UniRef50_A7C0D0|unclassified	0.3834768202
+UniRef50_F7NPL8	0.3834601098
+UniRef50_F7NPL8|unclassified	0.3834601098
+UniRef50_K2DLW0	0.3834543078
+UniRef50_K2DLW0|unclassified	0.3834543078
+UniRef50_V8CRU1	0.3834461207
+UniRef50_V8CRU1|unclassified	0.3834461207
+UniRef50_V2YC33	0.3834441204
+UniRef50_V2YC33|unclassified	0.3834441204
+UniRef50_UPI00036B8B42: hypothetical protein	0.3834415473
+UniRef50_UPI00036B8B42: hypothetical protein|unclassified	0.3834415473
+UniRef50_W7CRA6	0.3833977125
+UniRef50_W7CRA6|unclassified	0.3833977125
+UniRef50_UPI000477522F: diguanylate cyclase	0.3833591165
+UniRef50_UPI000477522F: diguanylate cyclase|unclassified	0.3833591165
+UniRef50_G0AF05: Methionine ABC transporter substrate-binding protein	0.3833558478
+UniRef50_G0AF05: Methionine ABC transporter substrate-binding protein|unclassified	0.3833558478
+UniRef50_K3Y3R8	0.3833554063
+UniRef50_K3Y3R8|unclassified	0.3833554063
+UniRef50_Q4ZLQ0	0.3833499502
+UniRef50_Q4ZLQ0|unclassified	0.3833499502
+UniRef50_K4KER1	0.3833394490
+UniRef50_K4KER1|unclassified	0.3833394490
+UniRef50_UPI0003734123: hypothetical protein	0.3833322196
+UniRef50_UPI0003734123: hypothetical protein|unclassified	0.3833322196
+UniRef50_UPI0003789EFD: hypothetical protein	0.3833124619
+UniRef50_UPI0003789EFD: hypothetical protein|unclassified	0.3833124619
+UniRef50_D5CTA3	0.3833120314
+UniRef50_D5CTA3|unclassified	0.3833120314
+UniRef50_P73471: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.3832900452
+UniRef50_P73471: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.3832900452
+UniRef50_Q4FVL5: Translation initiation factor IF-2	0.3832886163
+UniRef50_Q4FVL5: Translation initiation factor IF-2|g__Acinetobacter.s__Acinetobacter_baumannii	0.3832886163
+UniRef50_K2QNN2	0.3832569723
+UniRef50_K2QNN2|unclassified	0.3832569723
+UniRef50_UPI0004549149: PREDICTED: storkhead-box protein 2, partial	0.3832566038
+UniRef50_UPI0004549149: PREDICTED: storkhead-box protein 2, partial|unclassified	0.3832566038
+UniRef50_C6C0G7	0.3832363293
+UniRef50_C6C0G7|unclassified	0.3832363293
+UniRef50_UPI00045609D0: hypothetical protein PFL1_01311	0.3832333368
+UniRef50_UPI00045609D0: hypothetical protein PFL1_01311|unclassified	0.3832333368
+UniRef50_V9TWC8: Oligoketide cyclase/lipid transport protein	0.3831660100
+UniRef50_V9TWC8: Oligoketide cyclase/lipid transport protein|unclassified	0.3831660100
+UniRef50_B3PIT7: Ribosomal RNA small subunit methyltransferase G	0.3831658521
+UniRef50_B3PIT7: Ribosomal RNA small subunit methyltransferase G|unclassified	0.3831658521
+UniRef50_W1I018: Glutathione-regulated potassium-efflux system ancillary protein KefG	0.3831613506
+UniRef50_W1I018: Glutathione-regulated potassium-efflux system ancillary protein KefG|unclassified	0.3831613506
+UniRef50_H0NXJ7	0.3831580660
+UniRef50_H0NXJ7|unclassified	0.3831580660
+UniRef50_V8ALU4	0.3830776198
+UniRef50_V8ALU4|unclassified	0.3830776198
+UniRef50_Q887Q7: Probable alginate O-acetylase AlgJ	0.3830642173
+UniRef50_Q887Q7: Probable alginate O-acetylase AlgJ|unclassified	0.3830642173
+UniRef50_C4RLJ2	0.3830582356
+UniRef50_C4RLJ2|unclassified	0.3830582356
+UniRef50_UPI0004632E52: hypothetical protein	0.3830482407
+UniRef50_UPI0004632E52: hypothetical protein|unclassified	0.3830482407
+UniRef50_F9Y632	0.3830127916
+UniRef50_F9Y632|unclassified	0.3830127916
+UniRef50_A0A033V3Y9	0.3830071438
+UniRef50_A0A033V3Y9|unclassified	0.3830071438
+UniRef50_A8ARD9: Glyoxylate/hydroxypyruvate reductase B	0.3829804961
+UniRef50_A8ARD9: Glyoxylate/hydroxypyruvate reductase B|unclassified	0.3829804961
+UniRef50_H0RUP7	0.3829256800
+UniRef50_H0RUP7|unclassified	0.3829256800
+UniRef50_D8U910	0.3829216925
+UniRef50_D8U910|unclassified	0.3829216925
+UniRef50_F2I2C3	0.3829177463
+UniRef50_F2I2C3|unclassified	0.3829177463
+UniRef50_Q0ARN8: Peptidyl-tRNA hydrolase	0.3829080093
+UniRef50_Q0ARN8: Peptidyl-tRNA hydrolase|unclassified	0.3829080093
+UniRef50_A1AW38: Ribonuclease H	0.3828798730
+UniRef50_A1AW38: Ribonuclease H|unclassified	0.3828798730
+UniRef50_D0BA31: Transcription factor CarD	0.3828468010
+UniRef50_D0BA31: Transcription factor CarD|unclassified	0.3828468010
+UniRef50_K8CW48	0.3828275645
+UniRef50_K8CW48|unclassified	0.3828275645
+UniRef50_A3MML4: Ribonuclease PH	0.3828257484
+UniRef50_A3MML4: Ribonuclease PH|unclassified	0.3828257484
+UniRef50_A5FT93	0.3828102329
+UniRef50_A5FT93|unclassified	0.3828102329
+UniRef50_UPI000471094A: choline dehydrogenase	0.3827916420
+UniRef50_UPI000471094A: choline dehydrogenase|unclassified	0.3827916420
+UniRef50_A0A031IW16: IS66 Orf2 like protein	0.3827572931
+UniRef50_A0A031IW16: IS66 Orf2 like protein|unclassified	0.3827572931
+UniRef50_UPI0004753B4A: sugar ABC transporter permease	0.3827153916
+UniRef50_UPI0004753B4A: sugar ABC transporter permease|unclassified	0.3827153916
+UniRef50_UPI0004676066: transposase, partial	0.3827054314
+UniRef50_UPI0004676066: transposase, partial|unclassified	0.3827054314
+UniRef50_UPI0002487B70: transcriptional regulator	0.3826703934
+UniRef50_UPI0002487B70: transcriptional regulator|unclassified	0.3826703934
+UniRef50_UPI0003B493CA: pseudouridine synthase	0.3826661830
+UniRef50_UPI0003B493CA: pseudouridine synthase|unclassified	0.3826661830
+UniRef50_K9EI89	0.3826617495
+UniRef50_K9EI89|unclassified	0.3826617495
+UniRef50_UPI000371A11E: MULTISPECIES: 50S ribosomal protein L6	0.3826263876
+UniRef50_UPI000371A11E: MULTISPECIES: 50S ribosomal protein L6|unclassified	0.3826263876
+UniRef50_M4TV91: IS1114 transposase, IS5 family protein	0.3825715507
+UniRef50_M4TV91: IS1114 transposase, IS5 family protein|unclassified	0.3825715507
+UniRef50_Q45NQ1: Putative nitrate reductase beta chain (Fragment)	0.3825434710
+UniRef50_Q45NQ1: Putative nitrate reductase beta chain (Fragment)|unclassified	0.3825434710
+UniRef50_E6MXW1	0.3825036344
+UniRef50_E6MXW1|unclassified	0.3825036344
+UniRef50_X8CTR1: DJ-1/PfpI family protein	0.3824686050
+UniRef50_X8CTR1: DJ-1/PfpI family protein|unclassified	0.3824686050
+UniRef50_UPI0003795D86: hypothetical protein	0.3823849881
+UniRef50_UPI0003795D86: hypothetical protein|unclassified	0.3823849881
+UniRef50_Q9S2N0: Bacterioferritin	0.3823775201
+UniRef50_Q9S2N0: Bacterioferritin|unclassified	0.3823775201
+UniRef50_UPI000478789E: transporter	0.3823536005
+UniRef50_UPI000478789E: transporter|unclassified	0.3823536005
+UniRef50_R5HZ00: FeS assembly ATPase SufC	0.3823511566
+UniRef50_R5HZ00: FeS assembly ATPase SufC|unclassified	0.3823511566
+UniRef50_A0A015S427: Pyridoxal-phosphate dependent enzyme family protein	0.3823052167
+UniRef50_A0A015S427: Pyridoxal-phosphate dependent enzyme family protein|unclassified	0.3823052167
+UniRef50_UPI000288B7A4: ATP-binding protein	0.3822943713
+UniRef50_UPI000288B7A4: ATP-binding protein|unclassified	0.3822943713
+UniRef50_W4QQR7: Phosphoesterase	0.3822627904
+UniRef50_W4QQR7: Phosphoesterase|unclassified	0.3822627904
+UniRef50_A1AT66: Ribonuclease H	0.3822431384
+UniRef50_A1AT66: Ribonuclease H|unclassified	0.3822431384
+UniRef50_V1HRE7: LysM domain/ErfK/YbiS/YcfS/YnhG family protein	0.3821936467
+UniRef50_V1HRE7: LysM domain/ErfK/YbiS/YcfS/YnhG family protein|unclassified	0.3821936467
+UniRef50_UPI000248470C: hemolysin-type calcium-binding region	0.3821406605
+UniRef50_UPI000248470C: hemolysin-type calcium-binding region|unclassified	0.3821406605
+UniRef50_X1LP57: Marine sediment metagenome DNA, contig: S06H3_L00335 (Fragment)	0.3821282245
+UniRef50_X1LP57: Marine sediment metagenome DNA, contig: S06H3_L00335 (Fragment)|unclassified	0.3821282245
+UniRef50_M8BCA5	0.3821259668
+UniRef50_M8BCA5|unclassified	0.3821259668
+UniRef50_C9LS22	0.3820752157
+UniRef50_C9LS22|unclassified	0.3820752157
+UniRef50_G6F0D1	0.3820696227
+UniRef50_G6F0D1|unclassified	0.3820696227
+UniRef50_UPI00028907E1: glycine/betaine ABC transporter	0.3820678705
+UniRef50_UPI00028907E1: glycine/betaine ABC transporter|unclassified	0.3820678705
+UniRef50_C7J469: Os06g0328400 protein (Fragment)	0.3820402574
+UniRef50_C7J469: Os06g0328400 protein (Fragment)|unclassified	0.3820402574
+UniRef50_Q8DKV8: Tlr0743 protein	0.3820243150
+UniRef50_Q8DKV8: Tlr0743 protein|unclassified	0.3820243150
+UniRef50_UPI00039A589C: hypothetical protein	0.3820052504
+UniRef50_UPI00039A589C: hypothetical protein|unclassified	0.3820052504
+UniRef50_UPI00030C04C8: hypothetical protein	0.3819774576
+UniRef50_UPI00030C04C8: hypothetical protein|unclassified	0.3819774576
+UniRef50_F5NUW6	0.3819420650
+UniRef50_F5NUW6|unclassified	0.3819420650
+UniRef50_UPI0001FFDB80: amidase, partial	0.3819224548
+UniRef50_UPI0001FFDB80: amidase, partial|unclassified	0.3819224548
+UniRef50_K0HKA6: Periplasmic binding protein	0.3818890981
+UniRef50_K0HKA6: Periplasmic binding protein|unclassified	0.3818890981
+UniRef50_UPI00017F064E	0.3818889874
+UniRef50_UPI00017F064E|unclassified	0.3818889874
+UniRef50_F2N5L7: Membrane protein	0.3818668670
+UniRef50_F2N5L7: Membrane protein|unclassified	0.3818668670
+UniRef50_W8X957	0.3818251241
+UniRef50_W8X957|unclassified	0.3818251241
+UniRef50_UPI0001DD07F9: nuclease	0.3818138196
+UniRef50_UPI0001DD07F9: nuclease|unclassified	0.3818138196
+UniRef50_K4AS36	0.3818062751
+UniRef50_K4AS36|unclassified	0.3818062751
+UniRef50_A0A016XE91	0.3817956281
+UniRef50_A0A016XE91|unclassified	0.3817956281
+UniRef50_S2KLD0	0.3817580618
+UniRef50_S2KLD0|unclassified	0.3817580618
+UniRef50_UPI00046FEA2C: hypothetical protein	0.3817456054
+UniRef50_UPI00046FEA2C: hypothetical protein|unclassified	0.3817456054
+UniRef50_F2K0N6: Sterol-binding domain protein	0.3816936496
+UniRef50_F2K0N6: Sterol-binding domain protein|unclassified	0.3816936496
+UniRef50_UPI0001745109: peptide ABC transporter permease	0.3816913569
+UniRef50_UPI0001745109: peptide ABC transporter permease|unclassified	0.3816913569
+UniRef50_A6W7I0	0.3816514931
+UniRef50_A6W7I0|unclassified	0.3816514931
+UniRef50_E3F096: OstA-like protein	0.3816285884
+UniRef50_E3F096: OstA-like protein|unclassified	0.3816285884
+UniRef50_UPI0003B5996F: coproporphyrinogen III oxidase	0.3816262852
+UniRef50_UPI0003B5996F: coproporphyrinogen III oxidase|unclassified	0.3816262852
+UniRef50_A7Q0V4: S-adenosylmethionine synthase 5	0.3815981410
+UniRef50_A7Q0V4: S-adenosylmethionine synthase 5|unclassified	0.3815981410
+UniRef50_UPI000474B8BB: hypothetical protein	0.3815735601
+UniRef50_UPI000474B8BB: hypothetical protein|unclassified	0.3815735601
+UniRef50_G5PRD3: Putative outer membrane lipoprotein	0.3814870423
+UniRef50_G5PRD3: Putative outer membrane lipoprotein|unclassified	0.3814870423
+UniRef50_K0R2B9	0.3814632080
+UniRef50_K0R2B9|unclassified	0.3814632080
+UniRef50_E1MA14: Tetratricopeptide repeat family protein	0.3814590352
+UniRef50_E1MA14: Tetratricopeptide repeat family protein|unclassified	0.3814590352
+UniRef50_UPI00041FD2D5: hypothetical protein	0.3814333426
+UniRef50_UPI00041FD2D5: hypothetical protein|unclassified	0.3814333426
+UniRef50_UPI000475262A: denitrification system component NirT/cytochrome c552	0.3814252064
+UniRef50_UPI000475262A: denitrification system component NirT/cytochrome c552|unclassified	0.3814252064
+UniRef50_UPI000225F035: D-mannonate oxidoreductase	0.3811982649
+UniRef50_UPI000225F035: D-mannonate oxidoreductase|unclassified	0.3811982649
+UniRef50_UPI000401C17B: hypothetical protein	0.3811879284
+UniRef50_UPI000401C17B: hypothetical protein|unclassified	0.3811879284
+UniRef50_UPI0002556519: ammonium transporter, partial	0.3811361821
+UniRef50_UPI0002556519: ammonium transporter, partial|unclassified	0.3811361821
+UniRef50_V8CH15	0.3811070652
+UniRef50_V8CH15|unclassified	0.3811070652
+UniRef50_B6ASY9	0.3810704118
+UniRef50_B6ASY9|unclassified	0.3810704118
+UniRef50_Q5XAQ3: Cysteine synthase	0.3809834162
+UniRef50_Q5XAQ3: Cysteine synthase|unclassified	0.3809834162
+UniRef50_B0BYY0	0.3809716146
+UniRef50_B0BYY0|unclassified	0.3809716146
+UniRef50_A7MS74: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta 1	0.3809694643
+UniRef50_A7MS74: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta 1|unclassified	0.3809694643
+UniRef50_K2R1J1	0.3809355367
+UniRef50_K2R1J1|unclassified	0.3809355367
+UniRef50_UPI0002E2BB7A: hypothetical protein	0.3809003583
+UniRef50_UPI0002E2BB7A: hypothetical protein|unclassified	0.3809003583
+UniRef50_L3RD88: Ethanolamine utilization protein EutJ family protein	0.3808483143
+UniRef50_L3RD88: Ethanolamine utilization protein EutJ family protein|unclassified	0.3808483143
+UniRef50_D8EDQ8	0.3808358246
+UniRef50_D8EDQ8|unclassified	0.3808358246
+UniRef50_B1KNV5	0.3808287655
+UniRef50_B1KNV5|unclassified	0.3808287655
+UniRef50_D5B952: Putative oxidoreductase	0.3808226715
+UniRef50_D5B952: Putative oxidoreductase|unclassified	0.3808226715
+UniRef50_W1FS65: Putative membrane protein	0.3808021781
+UniRef50_W1FS65: Putative membrane protein|unclassified	0.3808021781
+UniRef50_Q8UJC5: Shikimate dehydrogenase	0.3807897531
+UniRef50_Q8UJC5: Shikimate dehydrogenase|unclassified	0.3807897531
+UniRef50_UPI0003F0F237: PREDICTED: S-formylglutathione hydrolase-like, partial	0.3807403194
+UniRef50_UPI0003F0F237: PREDICTED: S-formylglutathione hydrolase-like, partial|unclassified	0.3807403194
+UniRef50_UPI000399C074: hypothetical protein	0.3806858134
+UniRef50_UPI000399C074: hypothetical protein|unclassified	0.3806858134
+UniRef50_H9K906	0.3806493040
+UniRef50_H9K906|unclassified	0.3806493040
+UniRef50_K9GQV2	0.3806414975
+UniRef50_K9GQV2|unclassified	0.3806414975
+UniRef50_V5PS92: Membrane protein	0.3806265556
+UniRef50_V5PS92: Membrane protein|unclassified	0.3806265556
+UniRef50_UPI0003650B5E: membrane protein	0.3805980712
+UniRef50_UPI0003650B5E: membrane protein|unclassified	0.3805980712
+UniRef50_B0KAG8	0.3805548293
+UniRef50_B0KAG8|unclassified	0.3805548293
+UniRef50_UPI00045EA681: ABC transporter permease	0.3805282637
+UniRef50_UPI00045EA681: ABC transporter permease|unclassified	0.3805282637
+UniRef50_D1AK63: Lipoprotein	0.3805216262
+UniRef50_D1AK63: Lipoprotein|unclassified	0.3805216262
+UniRef50_UPI0003026BAE: hypothetical protein	0.3804710794
+UniRef50_UPI0003026BAE: hypothetical protein|unclassified	0.3804710794
+UniRef50_A8LJB4: Leucyl/phenylalanyl-tRNA--protein transferase	0.3804695701
+UniRef50_A8LJB4: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.3804695701
+UniRef50_UPI0003A4E18C: hemolysin expression modulating protein	0.3804005935
+UniRef50_UPI0003A4E18C: hemolysin expression modulating protein|unclassified	0.3804005935
+UniRef50_U9QSA8	0.3803674120
+UniRef50_U9QSA8|unclassified	0.3803674120
+UniRef50_UPI0003665B33: hypothetical protein	0.3803233633
+UniRef50_UPI0003665B33: hypothetical protein|unclassified	0.3803233633
+UniRef50_K0Q4T5	0.3803180467
+UniRef50_K0Q4T5|unclassified	0.3803180467
+UniRef50_UPI0003B4CE1F: TspO and MBR like proteins	0.3802822412
+UniRef50_UPI0003B4CE1F: TspO and MBR like proteins|unclassified	0.3802822412
+UniRef50_Q73D76	0.3802667251
+UniRef50_Q73D76|unclassified	0.3802667251
+UniRef50_UPI0003C7C1E9: hypothetical protein, partial	0.3802580860
+UniRef50_UPI0003C7C1E9: hypothetical protein, partial|unclassified	0.3802580860
+UniRef50_W5ITK3	0.3802460921
+UniRef50_W5ITK3|unclassified	0.3802460921
+UniRef50_UPI0004748BDD: gamma-aminobutyrate transporter	0.3802266340
+UniRef50_UPI0004748BDD: gamma-aminobutyrate transporter|unclassified	0.3802266340
+UniRef50_E0Y0G3	0.3801864065
+UniRef50_E0Y0G3|unclassified	0.3801864065
+UniRef50_UPI00046B512F	0.3801636735
+UniRef50_UPI00046B512F|unclassified	0.3801636735
+UniRef50_W1DKD3: Inner membrane protein YqjK	0.3801499463
+UniRef50_W1DKD3: Inner membrane protein YqjK|unclassified	0.3801499463
+UniRef50_J9P3K6	0.3801371135
+UniRef50_J9P3K6|unclassified	0.3801371135
+UniRef50_UPI000362B5E7: hypothetical protein	0.3801145434
+UniRef50_UPI000362B5E7: hypothetical protein|unclassified	0.3801145434
+UniRef50_A0A022UCE1	0.3801083849
+UniRef50_A0A022UCE1|unclassified	0.3801083849
+UniRef50_A0A011AFD3	0.3800971998
+UniRef50_A0A011AFD3|unclassified	0.3800971998
+UniRef50_UPI00047B6B3E: transcriptional regulator	0.3800871705
+UniRef50_UPI00047B6B3E: transcriptional regulator|unclassified	0.3800871705
+UniRef50_UPI0003632431: hypothetical protein, partial	0.3800552848
+UniRef50_UPI0003632431: hypothetical protein, partial|unclassified	0.3800552848
+UniRef50_J9P4V0	0.3800275853
+UniRef50_J9P4V0|unclassified	0.3800275853
+UniRef50_C5Q3W1	0.3800206364
+UniRef50_C5Q3W1|unclassified	0.3800206364
+UniRef50_P53597: Succinyl-CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial	0.3800176745
+UniRef50_P53597: Succinyl-CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial|unclassified	0.3800176745
+UniRef50_B4WAU0	0.3800138208
+UniRef50_B4WAU0|unclassified	0.3800138208
+UniRef50_Q31C00: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha	0.3799923662
+UniRef50_Q31C00: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|unclassified	0.3799923662
+UniRef50_D6B6F5: AsnC-family transcriptional regulator	0.3799569285
+UniRef50_D6B6F5: AsnC-family transcriptional regulator|unclassified	0.3799569285
+UniRef50_UPI0003958B60: membrane protein	0.3798963427
+UniRef50_UPI0003958B60: membrane protein|unclassified	0.3798963427
+UniRef50_W7WUX7	0.3798683575
+UniRef50_W7WUX7|unclassified	0.3798683575
+UniRef50_UPI000361F37C: hypothetical protein	0.3798277444
+UniRef50_UPI000361F37C: hypothetical protein|unclassified	0.3798277444
+UniRef50_I1IWT7	0.3797988565
+UniRef50_I1IWT7|unclassified	0.3797988565
+UniRef50_UPI000471B5FA: hypothetical protein, partial	0.3797399741
+UniRef50_UPI000471B5FA: hypothetical protein, partial|unclassified	0.3797399741
+UniRef50_A0A023YS81	0.3796523085
+UniRef50_A0A023YS81|unclassified	0.3796523085
+UniRef50_G2I2P3: 3-beta-hydroxy-delta(5)-steroid dehydrogenase	0.3796054797
+UniRef50_G2I2P3: 3-beta-hydroxy-delta(5)-steroid dehydrogenase|unclassified	0.3796054797
+UniRef50_UPI0004688FC2: cytochrome C biogenesis protein	0.3795942985
+UniRef50_UPI0004688FC2: cytochrome C biogenesis protein|unclassified	0.3795942985
+UniRef50_U7NU63	0.3795890128
+UniRef50_U7NU63|unclassified	0.3795890128
+UniRef50_A3UE08: Chemotactic signal-response protein CheL	0.3795667114
+UniRef50_A3UE08: Chemotactic signal-response protein CheL|unclassified	0.3795667114
+UniRef50_UPI0003B2F685: rpsU-divergently transcribed protein	0.3795656615
+UniRef50_UPI0003B2F685: rpsU-divergently transcribed protein|unclassified	0.3795656615
+UniRef50_C8S4K8	0.3795512006
+UniRef50_C8S4K8|unclassified	0.3795512006
+UniRef50_UPI0003A0F247: 30S ribosomal protein S13	0.3795187202
+UniRef50_UPI0003A0F247: 30S ribosomal protein S13|unclassified	0.3795187202
+UniRef50_G0NZB8	0.3795066414
+UniRef50_G0NZB8|unclassified	0.3795066414
+UniRef50_Q2W731: Phosphoribosylformylglycinamidine synthase	0.3795038059
+UniRef50_Q2W731: Phosphoribosylformylglycinamidine synthase|unclassified	0.3795038059
+UniRef50_UPI0002BB9C7E: hypothetical protein, partial	0.3794803659
+UniRef50_UPI0002BB9C7E: hypothetical protein, partial|unclassified	0.3794803659
+UniRef50_Q92E26: Lin0635 protein	0.3794776857
+UniRef50_Q92E26: Lin0635 protein|unclassified	0.3794776857
+UniRef50_K8CTT2: ABC-type nitrate/sulfonate/bicarbonate transport systems, periplasmic components	0.3794553740
+UniRef50_K8CTT2: ABC-type nitrate/sulfonate/bicarbonate transport systems, periplasmic components|unclassified	0.3794553740
+UniRef50_X6L129: Pilus assembly protein TadB (Fragment)	0.3794476486
+UniRef50_X6L129: Pilus assembly protein TadB (Fragment)|unclassified	0.3794476486
+UniRef50_UPI00047B22B7: TRAP dicarboxylate transporter subunit DctQ	0.3794225430
+UniRef50_UPI00047B22B7: TRAP dicarboxylate transporter subunit DctQ|unclassified	0.3794225430
+UniRef50_UPI00037DD674: hypothetical protein	0.3794160492
+UniRef50_UPI00037DD674: hypothetical protein|unclassified	0.3794160492
+UniRef50_Q629Y4	0.3794130926
+UniRef50_Q629Y4|unclassified	0.3794130926
+UniRef50_B7ZYI8	0.3793873553
+UniRef50_B7ZYI8|unclassified	0.3793873553
+UniRef50_B9Y1T7	0.3793626707
+UniRef50_B9Y1T7|g__Helicobacter.s__Helicobacter_pylori	0.3793626707
+UniRef50_E5U1W5	0.3793486300
+UniRef50_E5U1W5|unclassified	0.3793486300
+UniRef50_U7JJ16	0.3793310441
+UniRef50_U7JJ16|unclassified	0.3793310441
+UniRef50_V7ZGE8	0.3793228708
+UniRef50_V7ZGE8|unclassified	0.3793228708
+UniRef50_UPI00018172F7: putative 3-oxoadipate coa-transferase subunit b (partial sequence c terminus) protein	0.3793045641
+UniRef50_UPI00018172F7: putative 3-oxoadipate coa-transferase subunit b (partial sequence c terminus) protein|unclassified	0.3793045641
+UniRef50_UPI0004779B4A: prohead protease	0.3792832298
+UniRef50_UPI0004779B4A: prohead protease|unclassified	0.3792832298
+UniRef50_W0LIC7: Branched-chain amino acid transport	0.3792811203
+UniRef50_W0LIC7: Branched-chain amino acid transport|unclassified	0.3792811203
+UniRef50_UPI00047AB713: ferredoxin	0.3792490844
+UniRef50_UPI00047AB713: ferredoxin|unclassified	0.3792490844
+UniRef50_UPI0003C1230B: PREDICTED: dihydrolipoyl dehydrogenase, mitochondrial-like	0.3792254933
+UniRef50_UPI0003C1230B: PREDICTED: dihydrolipoyl dehydrogenase, mitochondrial-like|unclassified	0.3792254933
+UniRef50_D2QH57	0.3791919588
+UniRef50_D2QH57|unclassified	0.3791919588
+UniRef50_UPI000464D0AC: hypothetical protein	0.3791444261
+UniRef50_UPI000464D0AC: hypothetical protein|unclassified	0.3791444261
+UniRef50_A0A011QIR3	0.3791440129
+UniRef50_A0A011QIR3|unclassified	0.3791440129
+UniRef50_U5VCF1: HAMP domain-containing protein	0.3791339086
+UniRef50_U5VCF1: HAMP domain-containing protein|unclassified	0.3791339086
+UniRef50_M6A924: Winged helix-turn helix	0.3791181726
+UniRef50_M6A924: Winged helix-turn helix|unclassified	0.3791181726
+UniRef50_UPI000462B851: hypothetical protein	0.3790980577
+UniRef50_UPI000462B851: hypothetical protein|unclassified	0.3790980577
+UniRef50_B0K909: Undecaprenyl-diphosphatase	0.3790964690
+UniRef50_B0K909: Undecaprenyl-diphosphatase|unclassified	0.3790964690
+UniRef50_V9AXK3	0.3790751512
+UniRef50_V9AXK3|unclassified	0.3790751512
+UniRef50_UPI00042548B2: hypothetical protein	0.3790748807
+UniRef50_UPI00042548B2: hypothetical protein|unclassified	0.3790748807
+UniRef50_UPI0004672673: hypothetical protein	0.3790027403
+UniRef50_UPI0004672673: hypothetical protein|unclassified	0.3790027403
+UniRef50_A4XTI2	0.3789984843
+UniRef50_A4XTI2|unclassified	0.3789984843
+UniRef50_D5EK53: Beta-Ig-H3/fasciclin	0.3789315188
+UniRef50_D5EK53: Beta-Ig-H3/fasciclin|unclassified	0.3789315188
+UniRef50_UPI00029B28E4: hydrogenase nickel incorporation protein HypA	0.3789274344
+UniRef50_UPI00029B28E4: hydrogenase nickel incorporation protein HypA|unclassified	0.3789274344
+UniRef50_F0VHU4	0.3789233064
+UniRef50_F0VHU4|unclassified	0.3789233064
+UniRef50_K0SKL9	0.3789153983
+UniRef50_K0SKL9|unclassified	0.3789153983
+UniRef50_U2V048	0.3789113887
+UniRef50_U2V048|unclassified	0.3789113887
+UniRef50_V2MDS0	0.3788584562
+UniRef50_V2MDS0|unclassified	0.3788584562
+UniRef50_UPI000364DCAC: hypothetical protein, partial	0.3788266457
+UniRef50_UPI000364DCAC: hypothetical protein, partial|unclassified	0.3788266457
+UniRef50_G0AHQ2: TonB-dependent receptor	0.3787878788
+UniRef50_G0AHQ2: TonB-dependent receptor|g__Acinetobacter.s__Acinetobacter_baumannii	0.3787878788
+UniRef50_Q75ZQ6: Urease subunit beta	0.3787776416
+UniRef50_Q75ZQ6: Urease subunit beta|unclassified	0.3787776416
+UniRef50_UPI00036998C6: hypothetical protein	0.3787666958
+UniRef50_UPI00036998C6: hypothetical protein|unclassified	0.3787666958
+UniRef50_UPI00037627C6: hypothetical protein	0.3787508510
+UniRef50_UPI00037627C6: hypothetical protein|unclassified	0.3787508510
+UniRef50_A4VS02: Lipoprotein, putative	0.3787123677
+UniRef50_A4VS02: Lipoprotein, putative|unclassified	0.3787123677
+UniRef50_D8GUY7: NLP/P60 family protein	0.3786979557
+UniRef50_D8GUY7: NLP/P60 family protein|unclassified	0.3786979557
+UniRef50_UPI000365DB3A: hypothetical protein	0.3786668180
+UniRef50_UPI000365DB3A: hypothetical protein|unclassified	0.3786668180
+UniRef50_UPI00047664DA: membrane protein	0.3786359143
+UniRef50_UPI00047664DA: membrane protein|unclassified	0.3786359143
+UniRef50_UPI000465A415: GntR family transcriptional regulator	0.3785996603
+UniRef50_UPI000465A415: GntR family transcriptional regulator|unclassified	0.3785996603
+UniRef50_UPI00046EC3A8: hypothetical protein	0.3785939731
+UniRef50_UPI00046EC3A8: hypothetical protein|unclassified	0.3785939731
+UniRef50_UPI000237D266: carboxymuconolactone decarboxylase	0.3785835122
+UniRef50_UPI000237D266: carboxymuconolactone decarboxylase|unclassified	0.3785835122
+UniRef50_K2GLK4: Usg, putative	0.3785777050
+UniRef50_K2GLK4: Usg, putative|unclassified	0.3785777050
+UniRef50_UPI000412BE8C: histidine kinase	0.3784473875
+UniRef50_UPI000412BE8C: histidine kinase|unclassified	0.3784473875
+UniRef50_UPI00036BEB3D: hypothetical protein	0.3784052484
+UniRef50_UPI00036BEB3D: hypothetical protein|unclassified	0.3784052484
+UniRef50_F2LJX3	0.3783623094
+UniRef50_F2LJX3|unclassified	0.3783623094
+UniRef50_Q2SVN6: Transcriptional regulator family	0.3783431571
+UniRef50_Q2SVN6: Transcriptional regulator family|unclassified	0.3783431571
+UniRef50_UPI00047C8DD6: PTS lactose transporter subunit IIA	0.3783249668
+UniRef50_UPI00047C8DD6: PTS lactose transporter subunit IIA|unclassified	0.3783249668
+UniRef50_D5HG10: Predicted membrane protein	0.3782800498
+UniRef50_D5HG10: Predicted membrane protein|unclassified	0.3782800498
+UniRef50_UPI00024917CD: primosomal protein DnaI	0.3782783180
+UniRef50_UPI00024917CD: primosomal protein DnaI|unclassified	0.3782783180
+UniRef50_Q1ZN89	0.3782562524
+UniRef50_Q1ZN89|unclassified	0.3782562524
+UniRef50_Q828X4: Putative cytochrome c oxidase subunit 1-beta	0.3782527226
+UniRef50_Q828X4: Putative cytochrome c oxidase subunit 1-beta|unclassified	0.3782527226
+UniRef50_J9DDG2: TRAP dicarboxylate transporter, DctQ subunit	0.3782366109
+UniRef50_J9DDG2: TRAP dicarboxylate transporter, DctQ subunit|unclassified	0.3782366109
+UniRef50_W8YNW6: 6-pyruvoyl-tetrahydropterin synthase	0.3781892022
+UniRef50_W8YNW6: 6-pyruvoyl-tetrahydropterin synthase|unclassified	0.3781892022
+UniRef50_UPI0003F4A008: hypothetical protein TREMEDRAFT_32941	0.3781767161
+UniRef50_UPI0003F4A008: hypothetical protein TREMEDRAFT_32941|unclassified	0.3781767161
+UniRef50_D8MM10: Predicted membrane protein	0.3781599686
+UniRef50_D8MM10: Predicted membrane protein|unclassified	0.3781599686
+UniRef50_S5UEF3	0.3781599686
+UniRef50_S5UEF3|unclassified	0.3781599686
+UniRef50_UPI000361A620: hypothetical protein	0.3781471726
+UniRef50_UPI000361A620: hypothetical protein|unclassified	0.3781471726
+UniRef50_I2QVL7	0.3781381335
+UniRef50_I2QVL7|unclassified	0.3781381335
+UniRef50_Q0G6B9	0.3781293608
+UniRef50_Q0G6B9|unclassified	0.3781293608
+UniRef50_Q9PJJ6: Uracil phosphoribosyltransferase	0.3781256207
+UniRef50_Q9PJJ6: Uracil phosphoribosyltransferase|unclassified	0.3781256207
+UniRef50_G8AEH3	0.3780443398
+UniRef50_G8AEH3|unclassified	0.3780443398
+UniRef50_UPI00029AE6A2: cell division protein	0.3780146509
+UniRef50_UPI00029AE6A2: cell division protein|unclassified	0.3780146509
+UniRef50_M3ACA1: Lysine 2,3-aminomutase	0.3779910455
+UniRef50_M3ACA1: Lysine 2,3-aminomutase|unclassified	0.3779910455
+UniRef50_V9WHC5	0.3779335975
+UniRef50_V9WHC5|unclassified	0.3779335975
+UniRef50_T0D4B5	0.3779299732
+UniRef50_T0D4B5|unclassified	0.3779299732
+UniRef50_W4Q0M9	0.3778533229
+UniRef50_W4Q0M9|unclassified	0.3778533229
+UniRef50_W6RQM0	0.3778297786
+UniRef50_W6RQM0|unclassified	0.3778297786
+UniRef50_UPI0002EE4C86: LuxR family transcriptional regulator	0.3777947802
+UniRef50_UPI0002EE4C86: LuxR family transcriptional regulator|unclassified	0.3777947802
+UniRef50_UPI0003ADA47D	0.3777742872
+UniRef50_UPI0003ADA47D|unclassified	0.3777742872
+UniRef50_UPI0002557C62: hypothetical protein	0.3777436851
+UniRef50_UPI0002557C62: hypothetical protein|unclassified	0.3777436851
+UniRef50_A5G215	0.3777238054
+UniRef50_A5G215|unclassified	0.3777238054
+UniRef50_S9R213: TRAP-type mannitol/chloroaromatic compound transport system, large permease component	0.3777160421
+UniRef50_S9R213: TRAP-type mannitol/chloroaromatic compound transport system, large permease component|unclassified	0.3777160421
+UniRef50_Q8PM29	0.3776733751
+UniRef50_Q8PM29|unclassified	0.3776733751
+UniRef50_UPI0004781BE7: hypothetical protein	0.3775997263
+UniRef50_UPI0004781BE7: hypothetical protein|unclassified	0.3775997263
+UniRef50_B1M160: Ion transport 2 domain protein	0.3775960543
+UniRef50_B1M160: Ion transport 2 domain protein|unclassified	0.3775960543
+UniRef50_S6T481	0.3775805260
+UniRef50_S6T481|unclassified	0.3775805260
+UniRef50_UPI0003DEA91F	0.3775706458
+UniRef50_UPI0003DEA91F|unclassified	0.3775706458
+UniRef50_K2LWC9	0.3775626221
+UniRef50_K2LWC9|unclassified	0.3775626221
+UniRef50_UPI0002881C04: 30S ribosomal protein S18, partial	0.3775446018
+UniRef50_UPI0002881C04: 30S ribosomal protein S18, partial|unclassified	0.3775446018
+UniRef50_A0A011PUM8	0.3775402598
+UniRef50_A0A011PUM8|unclassified	0.3775402598
+UniRef50_V9VNH0: Formate dehydrogenase subunit delta	0.3774450019
+UniRef50_V9VNH0: Formate dehydrogenase subunit delta|unclassified	0.3774450019
+UniRef50_UPI00037FBEB2: hypothetical protein	0.3774399747
+UniRef50_UPI00037FBEB2: hypothetical protein|unclassified	0.3774399747
+UniRef50_UPI00046EC8B0: hypothetical protein, partial	0.3774358102
+UniRef50_UPI00046EC8B0: hypothetical protein, partial|unclassified	0.3774358102
+UniRef50_F7PVM3: ABC-type metal ion transport system protein	0.3774331635
+UniRef50_F7PVM3: ABC-type metal ion transport system protein|unclassified	0.3774331635
+UniRef50_Q6GHA1	0.3774186111
+UniRef50_Q6GHA1|unclassified	0.3774186111
+UniRef50_A0A008HNV8	0.3773904618
+UniRef50_A0A008HNV8|unclassified	0.3773904618
+UniRef50_U6ZSM6	0.3773321325
+UniRef50_U6ZSM6|unclassified	0.3773321325
+UniRef50_M4U471	0.3772746589
+UniRef50_M4U471|unclassified	0.3772746589
+UniRef50_UPI000360A552: hypothetical protein	0.3772428483
+UniRef50_UPI000360A552: hypothetical protein|unclassified	0.3772428483
+UniRef50_V7YBH8: Ethanolamine utilization protein (Fragment)	0.3771586481
+UniRef50_V7YBH8: Ethanolamine utilization protein (Fragment)|unclassified	0.3771586481
+UniRef50_C6XQR8: MaoC domain protein dehydratase	0.3771325872
+UniRef50_C6XQR8: MaoC domain protein dehydratase|unclassified	0.3771325872
+UniRef50_H9UU03: Putative export protein	0.3770862691
+UniRef50_H9UU03: Putative export protein|unclassified	0.3770862691
+UniRef50_A0A059ABD6	0.3770636816
+UniRef50_A0A059ABD6|unclassified	0.3770636816
+UniRef50_Q2BQS9	0.3769988686
+UniRef50_Q2BQS9|unclassified	0.3769988686
+UniRef50_B8JBE1: Sporulation domain protein	0.3769918568
+UniRef50_B8JBE1: Sporulation domain protein|unclassified	0.3769918568
+UniRef50_UPI0003FC161E: hypothetical protein	0.3769887885
+UniRef50_UPI0003FC161E: hypothetical protein|unclassified	0.3769887885
+UniRef50_K2JFS5	0.3769320458
+UniRef50_K2JFS5|unclassified	0.3769320458
+UniRef50_H5UVK0	0.3769205242
+UniRef50_H5UVK0|unclassified	0.3769205242
+UniRef50_X0YG76: Marine sediment metagenome DNA, contig: S01H4_C03279	0.3769043052
+UniRef50_X0YG76: Marine sediment metagenome DNA, contig: S01H4_C03279|unclassified	0.3769043052
+UniRef50_UPI0003B4D6A8: hypothetical protein	0.3768821865
+UniRef50_UPI0003B4D6A8: hypothetical protein|unclassified	0.3768821865
+UniRef50_A4YCS3: 6,7-dimethyl-8-ribityllumazine synthase	0.3768764433
+UniRef50_A4YCS3: 6,7-dimethyl-8-ribityllumazine synthase|unclassified	0.3768764433
+UniRef50_Q0S8U9	0.3768716400
+UniRef50_Q0S8U9|unclassified	0.3768716400
+UniRef50_I4W6D9	0.3768693319
+UniRef50_I4W6D9|unclassified	0.3768693319
+UniRef50_L6Z3D3	0.3768666243
+UniRef50_L6Z3D3|unclassified	0.3768666243
+UniRef50_UPI00037F69F8: hypothetical protein	0.3767468407
+UniRef50_UPI00037F69F8: hypothetical protein|unclassified	0.3767468407
+UniRef50_B2IIK7: Endoribonuclease YbeY	0.3767366217
+UniRef50_B2IIK7: Endoribonuclease YbeY|unclassified	0.3767366217
+UniRef50_R4M099: PE-PGRS family protein	0.3767173999
+UniRef50_R4M099: PE-PGRS family protein|unclassified	0.3767173999
+UniRef50_A0A011MLQ2: Sigma-K factor	0.3766734094
+UniRef50_A0A011MLQ2: Sigma-K factor|unclassified	0.3766734094
+UniRef50_A0A023VQ43: Phosphatidylethanolamine-binding protein	0.3766487681
+UniRef50_A0A023VQ43: Phosphatidylethanolamine-binding protein|unclassified	0.3766487681
+UniRef50_Q8PLR3: Protein-L-isoaspartate O-methyltransferase	0.3766423620
+UniRef50_Q8PLR3: Protein-L-isoaspartate O-methyltransferase|unclassified	0.3766423620
+UniRef50_L7WV22	0.3766365996
+UniRef50_L7WV22|unclassified	0.3766365996
+UniRef50_UPI0003840A4F	0.3765916294
+UniRef50_UPI0003840A4F|unclassified	0.3765916294
+UniRef50_S9QXK2	0.3765779405
+UniRef50_S9QXK2|unclassified	0.3765779405
+UniRef50_UPI00045EC07A: C4-dicarboxylate ABC transporter permease	0.3765748314
+UniRef50_UPI00045EC07A: C4-dicarboxylate ABC transporter permease|unclassified	0.3765748314
+UniRef50_UPI000479C59F: hypothetical protein	0.3764975247
+UniRef50_UPI000479C59F: hypothetical protein|unclassified	0.3764975247
+UniRef50_UPI00036D9AC5: hypothetical protein	0.3764763037
+UniRef50_UPI00036D9AC5: hypothetical protein|unclassified	0.3764763037
+UniRef50_Q93I62: ORF274	0.3764668964
+UniRef50_Q93I62: ORF274|unclassified	0.3764668964
+UniRef50_X8BCV4: FAD binding domain protein	0.3763534015
+UniRef50_X8BCV4: FAD binding domain protein|unclassified	0.3763534015
+UniRef50_UPI000418E5C8: homoserine O-succinyltransferase	0.3763289608
+UniRef50_UPI000418E5C8: homoserine O-succinyltransferase|unclassified	0.3763289608
+UniRef50_UPI0002E9FBB4: hypothetical protein	0.3763162655
+UniRef50_UPI0002E9FBB4: hypothetical protein|unclassified	0.3763162655
+UniRef50_UPI000472264A: nicotinate-nucleotide adenylyltransferase, partial	0.3763107851
+UniRef50_UPI000472264A: nicotinate-nucleotide adenylyltransferase, partial|unclassified	0.3763107851
+UniRef50_Q9KQ40: Putative beta-barrel assembly-enhancing protease	0.3762774750
+UniRef50_Q9KQ40: Putative beta-barrel assembly-enhancing protease|unclassified	0.3762774750
+UniRef50_UPI000466EFF7: murein hydrolase effector LrgB	0.3762544960
+UniRef50_UPI000466EFF7: murein hydrolase effector LrgB|unclassified	0.3762544960
+UniRef50_H6P6E3	0.3762399750
+UniRef50_H6P6E3|unclassified	0.3762399750
+UniRef50_UPI00047E9A5D: hypothetical protein	0.3762188619
+UniRef50_UPI00047E9A5D: hypothetical protein|unclassified	0.3762188619
+UniRef50_I6DAA1	0.3761687197
+UniRef50_I6DAA1|unclassified	0.3761687197
+UniRef50_K0RGV2	0.3761454809
+UniRef50_K0RGV2|unclassified	0.3761454809
+UniRef50_I7GEC3: Macaca fascicularis brain cDNA clone: QmoA-12148, similar to human BAI1-associated protein 3 (BAIAP3), mRNA, RefSeq: NM_003933.3	0.3761132887
+UniRef50_I7GEC3: Macaca fascicularis brain cDNA clone: QmoA-12148, similar to human BAI1-associated protein 3 (BAIAP3), mRNA, RefSeq: NM_003933.3|unclassified	0.3761132887
+UniRef50_A7G9R9	0.3760795390
+UniRef50_A7G9R9|unclassified	0.3760795390
+UniRef50_UPI00046496BB: cadmium transporter	0.3760474896
+UniRef50_UPI00046496BB: cadmium transporter|unclassified	0.3760474896
+UniRef50_UPI00036788A9: hypothetical protein	0.3760428964
+UniRef50_UPI00036788A9: hypothetical protein|unclassified	0.3760428964
+UniRef50_R4YF86: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.3760129045
+UniRef50_R4YF86: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|unclassified	0.3760129045
+UniRef50_UPI00036C7AFF: hypothetical protein	0.3759732092
+UniRef50_UPI00036C7AFF: hypothetical protein|unclassified	0.3759732092
+UniRef50_K1RHL6: Heat shock protein 70 (Fragment)	0.3759636270
+UniRef50_K1RHL6: Heat shock protein 70 (Fragment)|unclassified	0.3759636270
+UniRef50_UPI00046AE0C6: hypothetical protein	0.3759566488
+UniRef50_UPI00046AE0C6: hypothetical protein|unclassified	0.3759566488
+UniRef50_W5X8L8: NifC-like ABC-type porter/molybdate ABC transporter, permease protein	0.3759439346
+UniRef50_W5X8L8: NifC-like ABC-type porter/molybdate ABC transporter, permease protein|unclassified	0.3759439346
+UniRef50_Q6F6Q6: Phosphoenolpyruvate carboxylase	0.3759398496
+UniRef50_Q6F6Q6: Phosphoenolpyruvate carboxylase|g__Acinetobacter.s__Acinetobacter_baumannii	0.3759398496
+UniRef50_D0FR38: Transposase, orf A	0.3758937092
+UniRef50_D0FR38: Transposase, orf A|unclassified	0.3758937092
+UniRef50_W1SR96	0.3758393267
+UniRef50_W1SR96|unclassified	0.3758393267
+UniRef50_B1I008	0.3758249761
+UniRef50_B1I008|unclassified	0.3758249761
+UniRef50_K2IV24	0.3758205128
+UniRef50_K2IV24|unclassified	0.3758205128
+UniRef50_UPI000469A063: cyclic nucleotide-binding protein	0.3758152657
+UniRef50_UPI000469A063: cyclic nucleotide-binding protein|unclassified	0.3758152657
+UniRef50_Q6FFX5: Ribonuclease PH	0.3758129287
+UniRef50_Q6FFX5: Ribonuclease PH|unclassified	0.3758129287
+UniRef50_C5YTG1	0.3758122248
+UniRef50_C5YTG1|unclassified	0.3758122248
+UniRef50_UPI0003B6787F: aldehyde dehydrogenase	0.3758038619
+UniRef50_UPI0003B6787F: aldehyde dehydrogenase|unclassified	0.3758038619
+UniRef50_UPI0004041576: glyoxalase	0.3757543262
+UniRef50_UPI0004041576: glyoxalase|unclassified	0.3757543262
+UniRef50_UPI0002DD4AEE: hypothetical protein	0.3757344732
+UniRef50_UPI0002DD4AEE: hypothetical protein|unclassified	0.3757344732
+UniRef50_B5GRY7	0.3757318393
+UniRef50_B5GRY7|unclassified	0.3757318393
+UniRef50_W0BCW9	0.3757303466
+UniRef50_W0BCW9|unclassified	0.3757303466
+UniRef50_UPI000348E50E: hypothetical protein	0.3757218677
+UniRef50_UPI000348E50E: hypothetical protein|unclassified	0.3757218677
+UniRef50_Q97CL5: Molybdopterin synthase catalytic subunit	0.3757071416
+UniRef50_Q97CL5: Molybdopterin synthase catalytic subunit|unclassified	0.3757071416
+UniRef50_S4MRC0	0.3756987045
+UniRef50_S4MRC0|unclassified	0.3756987045
+UniRef50_UPI0003615DBA: hypothetical protein	0.3756737335
+UniRef50_UPI0003615DBA: hypothetical protein|unclassified	0.3756737335
+UniRef50_UPI00046F3B88: hypothetical protein	0.3756703465
+UniRef50_UPI00046F3B88: hypothetical protein|unclassified	0.3756703465
+UniRef50_UPI00025593F9: twin-arginine translocation protein, partial	0.3755457763
+UniRef50_UPI00025593F9: twin-arginine translocation protein, partial|unclassified	0.3755457763
+UniRef50_UPI0004226FAB: hypothetical protein	0.3755030346
+UniRef50_UPI0004226FAB: hypothetical protein|unclassified	0.3755030346
+UniRef50_C8N7Z4	0.3755017404
+UniRef50_C8N7Z4|unclassified	0.3755017404
+UniRef50_UPI0002653F14: PREDICTED: NFX1-type zinc finger-containing protein 1-like	0.3754992370
+UniRef50_UPI0002653F14: PREDICTED: NFX1-type zinc finger-containing protein 1-like|unclassified	0.3754992370
+UniRef50_Q2L1S9: Putative C4 dicarboxylate tripartite ATP-independent periplasmic (TRAP) transporter, permease component	0.3754764832
+UniRef50_Q2L1S9: Putative C4 dicarboxylate tripartite ATP-independent periplasmic (TRAP) transporter, permease component|unclassified	0.3754764832
+UniRef50_Q89S85: Blr2520 protein	0.3754527944
+UniRef50_Q89S85: Blr2520 protein|unclassified	0.3754527944
+UniRef50_G9QMZ2	0.3754422397
+UniRef50_G9QMZ2|unclassified	0.3754422397
+UniRef50_S5VI96	0.3754335600
+UniRef50_S5VI96|unclassified	0.3754335600
+UniRef50_J9DJ90	0.3754155013
+UniRef50_J9DJ90|unclassified	0.3754155013
+UniRef50_M5DLN5	0.3753704025
+UniRef50_M5DLN5|unclassified	0.3753704025
+UniRef50_F3AA10	0.3753665354
+UniRef50_F3AA10|unclassified	0.3753665354
+UniRef50_U7G8B2: Toxin PIN	0.3753503269
+UniRef50_U7G8B2: Toxin PIN|unclassified	0.3753503269
+UniRef50_D2JDV6: Replication initiator A, N-terminal	0.3753366339
+UniRef50_D2JDV6: Replication initiator A, N-terminal|unclassified	0.3753366339
+UniRef50_D6HGZ7	0.3753126503
+UniRef50_D6HGZ7|unclassified	0.3753126503
+UniRef50_UPI0003B604B4: hypothetical protein	0.3752798116
+UniRef50_UPI0003B604B4: hypothetical protein|unclassified	0.3752798116
+UniRef50_E8SNW0: Macrophage infectivity potentiator-related protein	0.3752590523
+UniRef50_E8SNW0: Macrophage infectivity potentiator-related protein|unclassified	0.3752590523
+UniRef50_UPI00047910E5: hypothetical protein	0.3752335532
+UniRef50_UPI00047910E5: hypothetical protein|unclassified	0.3752335532
+UniRef50_S4N129	0.3752049607
+UniRef50_S4N129|unclassified	0.3752049607
+UniRef50_G4BHJ7	0.3751219632
+UniRef50_G4BHJ7|unclassified	0.3751219632
+UniRef50_UPI0001C4F313: putative helicase	0.3751163555
+UniRef50_UPI0001C4F313: putative helicase|unclassified	0.3751163555
+UniRef50_UPI0003FA6725: ribulokinase	0.3750782281
+UniRef50_UPI0003FA6725: ribulokinase|unclassified	0.3750782281
+UniRef50_UPI00035E03F5: DNA glycosylase	0.3750732720
+UniRef50_UPI00035E03F5: DNA glycosylase|unclassified	0.3750732720
+UniRef50_Q9RZG7: Transposase-related	0.3750599432
+UniRef50_Q9RZG7: Transposase-related|unclassified	0.3750599432
+UniRef50_UPI0002490040: amino acid APC transporter	0.3750294831
+UniRef50_UPI0002490040: amino acid APC transporter|unclassified	0.3750294831
+UniRef50_G7VQL2: General stress protein 14	0.3750276397
+UniRef50_G7VQL2: General stress protein 14|unclassified	0.3750276397
+UniRef50_Q0C0I1: NAD kinase	0.3750169957
+UniRef50_Q0C0I1: NAD kinase|unclassified	0.3750169957
+UniRef50_UPI0003EB4D8C: GntR family transcriptional regulator	0.3749449437
+UniRef50_UPI0003EB4D8C: GntR family transcriptional regulator|unclassified	0.3749449437
+UniRef50_UPI00016C37F3: Animal haem peroxidase	0.3749436152
+UniRef50_UPI00016C37F3: Animal haem peroxidase|unclassified	0.3749436152
+UniRef50_O75251: NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial	0.3749263744
+UniRef50_O75251: NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial|unclassified	0.3749263744
+UniRef50_UPI0002E1E856: hypothetical protein	0.3749047652
+UniRef50_UPI0002E1E856: hypothetical protein|unclassified	0.3749047652
+UniRef50_P55022: Tyrosinase	0.3748408730
+UniRef50_P55022: Tyrosinase|unclassified	0.3748408730
+UniRef50_UPI000367431C: hypothetical protein	0.3748384312
+UniRef50_UPI000367431C: hypothetical protein|unclassified	0.3748384312
+UniRef50_D0PRC9: Putative arsenate reductase	0.3748040129
+UniRef50_D0PRC9: Putative arsenate reductase|unclassified	0.3748040129
+UniRef50_M1X4A7: Sulfate permease	0.3748005480
+UniRef50_M1X4A7: Sulfate permease|unclassified	0.3748005480
+UniRef50_S3IR30	0.3747983274
+UniRef50_S3IR30|unclassified	0.3747983274
+UniRef50_UPI00030904FE: hypothetical protein	0.3747372624
+UniRef50_UPI00030904FE: hypothetical protein|unclassified	0.3747372624
+UniRef50_UPI0002FFECEA: hypothetical protein	0.3747034192
+UniRef50_UPI0002FFECEA: hypothetical protein|unclassified	0.3747034192
+UniRef50_G8AHS3	0.3747018998
+UniRef50_G8AHS3|unclassified	0.3747018998
+UniRef50_UPI00037B63A7: hypothetical protein	0.3746796688
+UniRef50_UPI00037B63A7: hypothetical protein|unclassified	0.3746796688
+UniRef50_G5RHI0: Multidrug transporter MdtC	0.3746721619
+UniRef50_G5RHI0: Multidrug transporter MdtC|g__Escherichia.s__Escherichia_coli	0.3746721619
+UniRef50_UPI000046E117: MutT/nudix family protein, truncated, partial	0.3746476134
+UniRef50_UPI000046E117: MutT/nudix family protein, truncated, partial|unclassified	0.3746476134
+UniRef50_J9DIV1	0.3746419007
+UniRef50_J9DIV1|unclassified	0.3746419007
+UniRef50_UPI00036D551C: hypothetical protein	0.3745846626
+UniRef50_UPI00036D551C: hypothetical protein|unclassified	0.3745846626
+UniRef50_UPI00047D4A1B: 3,4-dihydroxy-2-butanone 4-phosphate synthase	0.3745839875
+UniRef50_UPI00047D4A1B: 3,4-dihydroxy-2-butanone 4-phosphate synthase|unclassified	0.3745839875
+UniRef50_N5CDM2: Azaleucine resistance protein AzlC	0.3745786121
+UniRef50_N5CDM2: Azaleucine resistance protein AzlC|unclassified	0.3745786121
+UniRef50_UPI00037EF636: hypothetical protein	0.3745451366
+UniRef50_UPI00037EF636: hypothetical protein|unclassified	0.3745451366
+UniRef50_E3PIP0: Transposase	0.3744798019
+UniRef50_E3PIP0: Transposase|unclassified	0.3744798019
+UniRef50_G4C6A2	0.3744764313
+UniRef50_G4C6A2|unclassified	0.3744764313
+UniRef50_V6MLI1	0.3744763069
+UniRef50_V6MLI1|unclassified	0.3744763069
+UniRef50_UPI0004689561: hypothetical protein	0.3744674212
+UniRef50_UPI0004689561: hypothetical protein|unclassified	0.3744674212
+UniRef50_UPI00037DF44A: molybdate ABC transporter permease	0.3744517846
+UniRef50_UPI00037DF44A: molybdate ABC transporter permease|unclassified	0.3744517846
+UniRef50_UPI0003C19025: PREDICTED: probable RuBisCO transcriptional regulator-like	0.3744395385
+UniRef50_UPI0003C19025: PREDICTED: probable RuBisCO transcriptional regulator-like|unclassified	0.3744395385
+UniRef50_W5X4N7	0.3744187983
+UniRef50_W5X4N7|unclassified	0.3744187983
+UniRef50_G8AGG5	0.3744044062
+UniRef50_G8AGG5|unclassified	0.3744044062
+UniRef50_UPI00037FBD9F: hypothetical protein, partial	0.3743813037
+UniRef50_UPI00037FBD9F: hypothetical protein, partial|unclassified	0.3743813037
+UniRef50_J5AYS4: Peptidoglycan-binding domain protein (Fragment)	0.3743703467
+UniRef50_J5AYS4: Peptidoglycan-binding domain protein (Fragment)|unclassified	0.3743703467
+UniRef50_UPI0003EE58D9: hypothetical protein, partial	0.3743354904
+UniRef50_UPI0003EE58D9: hypothetical protein, partial|unclassified	0.3743354904
+UniRef50_D2J7E4: Replication initiator protein	0.3743008788
+UniRef50_D2J7E4: Replication initiator protein|unclassified	0.3743008788
+UniRef50_UPI000288BDB9: hypothetical protein	0.3742469000
+UniRef50_UPI000288BDB9: hypothetical protein|unclassified	0.3742469000
+UniRef50_W5X5L6	0.3742415494
+UniRef50_W5X5L6|unclassified	0.3742415494
+UniRef50_UPI0002D53655: hypothetical protein	0.3742307998
+UniRef50_UPI0002D53655: hypothetical protein|unclassified	0.3742307998
+UniRef50_Q89G29: Blr6518 protein	0.3741857791
+UniRef50_Q89G29: Blr6518 protein|unclassified	0.3741857791
+UniRef50_V6PBX7	0.3740896946
+UniRef50_V6PBX7|unclassified	0.3740896946
+UniRef50_C7BT41	0.3740715408
+UniRef50_C7BT41|unclassified	0.3740715408
+UniRef50_W7YTI4	0.3740451528
+UniRef50_W7YTI4|unclassified	0.3740451528
+UniRef50_UPI000472A8A7: hypothetical protein, partial	0.3740041092
+UniRef50_UPI000472A8A7: hypothetical protein, partial|unclassified	0.3740041092
+UniRef50_A4EJK3	0.3739820733
+UniRef50_A4EJK3|unclassified	0.3739820733
+UniRef50_UPI000475E8C5: hypothetical protein	0.3739435454
+UniRef50_UPI000475E8C5: hypothetical protein|unclassified	0.3739435454
+UniRef50_P74733: Carbamate kinase	0.3738507036
+UniRef50_P74733: Carbamate kinase|unclassified	0.3738507036
+UniRef50_D5BJJ4: Protein secretion chaperonin	0.3738437071
+UniRef50_D5BJJ4: Protein secretion chaperonin|unclassified	0.3738437071
+UniRef50_UPI00047CA754: hypothetical protein	0.3738300485
+UniRef50_UPI00047CA754: hypothetical protein|unclassified	0.3738300485
+UniRef50_C2QFP5: LmbE	0.3738032072
+UniRef50_C2QFP5: LmbE|unclassified	0.3738032072
+UniRef50_M9RJD6	0.3736920182
+UniRef50_M9RJD6|unclassified	0.3736920182
+UniRef50_UPI00045D6596: PREDICTED: atherin-like	0.3736879575
+UniRef50_UPI00045D6596: PREDICTED: atherin-like|unclassified	0.3736879575
+UniRef50_A4SS09	0.3736876023
+UniRef50_A4SS09|unclassified	0.3736876023
+UniRef50_Q1QSC0: Ribosomal RNA small subunit methyltransferase G	0.3736843347
+UniRef50_Q1QSC0: Ribosomal RNA small subunit methyltransferase G|unclassified	0.3736843347
+UniRef50_UPI00037A7E3B: hypothetical protein	0.3736797784
+UniRef50_UPI00037A7E3B: hypothetical protein|unclassified	0.3736797784
+UniRef50_K3Y248	0.3736744215
+UniRef50_K3Y248|unclassified	0.3736744215
+UniRef50_UPI000393F4A9: PREDICTED: basic proline-rich protein-like	0.3736280490
+UniRef50_UPI000393F4A9: PREDICTED: basic proline-rich protein-like|unclassified	0.3736280490
+UniRef50_UPI000375DAA3: hypothetical protein	0.3736106206
+UniRef50_UPI000375DAA3: hypothetical protein|unclassified	0.3736106206
+UniRef50_Q54EW1: Serine hydroxymethyltransferase 2	0.3736001985
+UniRef50_Q54EW1: Serine hydroxymethyltransferase 2|unclassified	0.3736001985
+UniRef50_F3KZH7	0.3735422850
+UniRef50_F3KZH7|unclassified	0.3735422850
+UniRef50_V1XKU8	0.3735190255
+UniRef50_V1XKU8|unclassified	0.3735190255
+UniRef50_H4F340: NADH dehydrogenase subunit L	0.3734922571
+UniRef50_H4F340: NADH dehydrogenase subunit L|unclassified	0.3734922571
+UniRef50_A1A190: Xanthine phosphoribosyltransferase	0.3734666417
+UniRef50_A1A190: Xanthine phosphoribosyltransferase|unclassified	0.3734666417
+UniRef50_UPI00046D9296: 3''-kinase	0.3734261199
+UniRef50_UPI00046D9296: 3''-kinase|unclassified	0.3734261199
+UniRef50_H9UQT9	0.3733762156
+UniRef50_H9UQT9|unclassified	0.3733762156
+UniRef50_A7N864	0.3733571855
+UniRef50_A7N864|unclassified	0.3733571855
+UniRef50_Q8RGC8: Fe(3+) ions import ATP-binding protein FbpC	0.3732964214
+UniRef50_Q8RGC8: Fe(3+) ions import ATP-binding protein FbpC|unclassified	0.3732964214
+UniRef50_Q2SS11: S-adenosylmethionine synthase	0.3732761042
+UniRef50_Q2SS11: S-adenosylmethionine synthase|unclassified	0.3732761042
+UniRef50_W7DZA0	0.3732560068
+UniRef50_W7DZA0|unclassified	0.3732560068
+UniRef50_D2TBD7: Protein ygiW	0.3731853099
+UniRef50_D2TBD7: Protein ygiW|unclassified	0.3731853099
+UniRef50_UPI000477E15D: hypothetical protein	0.3731728420
+UniRef50_UPI000477E15D: hypothetical protein|unclassified	0.3731728420
+UniRef50_E3NVW5	0.3731508260
+UniRef50_E3NVW5|unclassified	0.3731508260
+UniRef50_F4AQK9	0.3731502342
+UniRef50_F4AQK9|unclassified	0.3731502342
+UniRef50_J2J2L8: Putative transposase	0.3731322987
+UniRef50_J2J2L8: Putative transposase|unclassified	0.3731322987
+UniRef50_C6WJW7	0.3731229562
+UniRef50_C6WJW7|unclassified	0.3731229562
+UniRef50_UPI0004785B1F: LuxR family transcriptional regulator	0.3731148939
+UniRef50_UPI0004785B1F: LuxR family transcriptional regulator|unclassified	0.3731148939
+UniRef50_Q0FLY6	0.3731031673
+UniRef50_Q0FLY6|unclassified	0.3731031673
+UniRef50_B4S5K2: Ribonuclease H	0.3730878123
+UniRef50_B4S5K2: Ribonuclease H|unclassified	0.3730878123
+UniRef50_UPI000473B633: hypothetical protein, partial	0.3729961424
+UniRef50_UPI000473B633: hypothetical protein, partial|unclassified	0.3729961424
+UniRef50_W4K1D0	0.3729163387
+UniRef50_W4K1D0|unclassified	0.3729163387
+UniRef50_UPI00036A16DC: hypothetical protein	0.3729031280
+UniRef50_UPI00036A16DC: hypothetical protein|unclassified	0.3729031280
+UniRef50_R1DUC8	0.3729014262
+UniRef50_R1DUC8|unclassified	0.3729014262
+UniRef50_A0A031EFC2	0.3728962413
+UniRef50_A0A031EFC2|unclassified	0.3728962413
+UniRef50_UPI00042B0FB5: Enoyl-CoA hydratase/isomerase D isoform 1	0.3728869980
+UniRef50_UPI00042B0FB5: Enoyl-CoA hydratase/isomerase D isoform 1|unclassified	0.3728869980
+UniRef50_UPI000476EE69: ArsR family transcriptional regulator	0.3728133516
+UniRef50_UPI000476EE69: ArsR family transcriptional regulator|unclassified	0.3728133516
+UniRef50_UPI000365B7D1: 30S ribosomal protein S4, partial	0.3727773469
+UniRef50_UPI000365B7D1: 30S ribosomal protein S4, partial|unclassified	0.3727773469
+UniRef50_R6AMT0: Potassium uptake protein Trk family	0.3727525785
+UniRef50_R6AMT0: Potassium uptake protein Trk family|unclassified	0.3727525785
+UniRef50_Q68V01	0.3727010738
+UniRef50_Q68V01|unclassified	0.3727010738
+UniRef50_K1ZCT9	0.3726924022
+UniRef50_K1ZCT9|unclassified	0.3726924022
+UniRef50_UPI00025598FE: Fe-S oxidoreductase	0.3726684197
+UniRef50_UPI00025598FE: Fe-S oxidoreductase|unclassified	0.3726684197
+UniRef50_G2I8Q0	0.3726231851
+UniRef50_G2I8Q0|unclassified	0.3726231851
+UniRef50_UPI00036D1BED: hypothetical protein	0.3725684910
+UniRef50_UPI00036D1BED: hypothetical protein|unclassified	0.3725684910
+UniRef50_X1JKP5: Marine sediment metagenome DNA, contig: S03H2_S20159 (Fragment)	0.3725421111
+UniRef50_X1JKP5: Marine sediment metagenome DNA, contig: S03H2_S20159 (Fragment)|unclassified	0.3725421111
+UniRef50_O58192: Chemotaxis response regulator protein-glutamate methylesterase	0.3725366795
+UniRef50_O58192: Chemotaxis response regulator protein-glutamate methylesterase|unclassified	0.3725366795
+UniRef50_Y6ZLU1: ABC transporter, permease	0.3725311215
+UniRef50_Y6ZLU1: ABC transporter, permease|unclassified	0.3725311215
+UniRef50_UPI0003F63DA2: kinase	0.3725198622
+UniRef50_UPI0003F63DA2: kinase|unclassified	0.3725198622
+UniRef50_U5BVT6	0.3725008906
+UniRef50_U5BVT6|unclassified	0.3725008906
+UniRef50_UPI00047412C9: hypothetical protein, partial	0.3724777048
+UniRef50_UPI00047412C9: hypothetical protein, partial|unclassified	0.3724777048
+UniRef50_D5ZZ67: SecA	0.3724257675
+UniRef50_D5ZZ67: SecA|unclassified	0.3724257675
+UniRef50_U1F237: PF11673 family protein	0.3724244664
+UniRef50_U1F237: PF11673 family protein|unclassified	0.3724244664
+UniRef50_S6V5Z9	0.3724195989
+UniRef50_S6V5Z9|unclassified	0.3724195989
+UniRef50_H0I183	0.3724168658
+UniRef50_H0I183|unclassified	0.3724168658
+UniRef50_UPI0003702286: hypothetical protein	0.3723496516
+UniRef50_UPI0003702286: hypothetical protein|unclassified	0.3723496516
+UniRef50_R9VVR5	0.3723355470
+UniRef50_R9VVR5|unclassified	0.3723355470
+UniRef50_U9DSS6	0.3723256129
+UniRef50_U9DSS6|unclassified	0.3723256129
+UniRef50_R1EJL9	0.3723008191
+UniRef50_R1EJL9|unclassified	0.3723008191
+UniRef50_D2TLP4: Putative fimbrial protein HofN	0.3722988999
+UniRef50_D2TLP4: Putative fimbrial protein HofN|unclassified	0.3722988999
+UniRef50_T0VJG1: PTS fructose IIC component	0.3722528891
+UniRef50_T0VJG1: PTS fructose IIC component|unclassified	0.3722528891
+UniRef50_V6U561	0.3722447998
+UniRef50_V6U561|unclassified	0.3722447998
+UniRef50_K2HI94	0.3722336216
+UniRef50_K2HI94|unclassified	0.3722336216
+UniRef50_N2QPW4: YagB/YeeU/YfjZ family protein (Fragment)	0.3722237323
+UniRef50_N2QPW4: YagB/YeeU/YfjZ family protein (Fragment)|unclassified	0.3722237323
+UniRef50_UPI0003B73CB0: biotin biosynthesis protein BioY	0.3722198716
+UniRef50_UPI0003B73CB0: biotin biosynthesis protein BioY|unclassified	0.3722198716
+UniRef50_K2C808: Sulfur mobilizing ABC protein, ATPase	0.3721814258
+UniRef50_K2C808: Sulfur mobilizing ABC protein, ATPase|unclassified	0.3721814258
+UniRef50_D7AH61	0.3721743812
+UniRef50_D7AH61|unclassified	0.3721743812
+UniRef50_UPI0001FFF4E3: secreted protein	0.3721622627
+UniRef50_UPI0001FFF4E3: secreted protein|unclassified	0.3721622627
+UniRef50_UPI00039E2F2E: hypothetical protein	0.3721379982
+UniRef50_UPI00039E2F2E: hypothetical protein|unclassified	0.3721379982
+UniRef50_F4VX15	0.3720727205
+UniRef50_F4VX15|unclassified	0.3720727205
+UniRef50_A9R736	0.3720706531
+UniRef50_A9R736|unclassified	0.3720706531
+UniRef50_Q8LPJ5: Isocitrate dehydrogenase [NADP], chloroplastic/mitochondrial	0.3720694804
+UniRef50_Q8LPJ5: Isocitrate dehydrogenase [NADP], chloroplastic/mitochondrial|unclassified	0.3720694804
+UniRef50_UPI0002558CB5: LysE family transporter	0.3720609982
+UniRef50_UPI0002558CB5: LysE family transporter|unclassified	0.3720609982
+UniRef50_UPI000361A8DB: hypothetical protein	0.3720579233
+UniRef50_UPI000361A8DB: hypothetical protein|unclassified	0.3720579233
+UniRef50_UPI000374A81A: hypothetical protein	0.3720405680
+UniRef50_UPI000374A81A: hypothetical protein|unclassified	0.3720405680
+UniRef50_K0YWV6	0.3720113444
+UniRef50_K0YWV6|unclassified	0.3720113444
+UniRef50_UPI0004645C17: hypothetical protein	0.3719715506
+UniRef50_UPI0004645C17: hypothetical protein|unclassified	0.3719715506
+UniRef50_UPI0003825C93: hypothetical protein	0.3719038469
+UniRef50_UPI0003825C93: hypothetical protein|unclassified	0.3719038469
+UniRef50_U3BBF0	0.3718699665
+UniRef50_U3BBF0|unclassified	0.3718699665
+UniRef50_F3J906	0.3718577197
+UniRef50_F3J906|unclassified	0.3718577197
+UniRef50_UPI0004712FD6: hypothetical protein	0.3717759405
+UniRef50_UPI0004712FD6: hypothetical protein|unclassified	0.3717759405
+UniRef50_UPI00026CD1F6: transposase IS3/IS911 family protein	0.3717078602
+UniRef50_UPI00026CD1F6: transposase IS3/IS911 family protein|unclassified	0.3717078602
+UniRef50_UPI000470A41D: hypothetical protein, partial	0.3717008913
+UniRef50_UPI000470A41D: hypothetical protein, partial|unclassified	0.3717008913
+UniRef50_UPI0003FD356F: hypothetical protein	0.3716632057
+UniRef50_UPI0003FD356F: hypothetical protein|unclassified	0.3716632057
+UniRef50_Q838S5: Glyoxalase	0.3716431993
+UniRef50_Q838S5: Glyoxalase|unclassified	0.3716431993
+UniRef50_UPI0001912591: inner membrane protein ybcI	0.3716340320
+UniRef50_UPI0001912591: inner membrane protein ybcI|unclassified	0.3716340320
+UniRef50_F9PNH7: RDD family protein	0.3715740943
+UniRef50_F9PNH7: RDD family protein|unclassified	0.3715740943
+UniRef50_B7KZF3: Chromosomal replication initiator DnaA	0.3715641926
+UniRef50_B7KZF3: Chromosomal replication initiator DnaA|unclassified	0.3715641926
+UniRef50_A3CLG1	0.3715253149
+UniRef50_A3CLG1|unclassified	0.3715253149
+UniRef50_D3A715	0.3715063711
+UniRef50_D3A715|unclassified	0.3715063711
+UniRef50_A0A023FY78	0.3715027540
+UniRef50_A0A023FY78|unclassified	0.3715027540
+UniRef50_UPI00017449FD: LuxR family transcriptional regulator	0.3714887404
+UniRef50_UPI00017449FD: LuxR family transcriptional regulator|unclassified	0.3714887404
+UniRef50_W0H6X8	0.3714735259
+UniRef50_W0H6X8|unclassified	0.3714735259
+UniRef50_D1B2W6	0.3714458691
+UniRef50_D1B2W6|unclassified	0.3714458691
+UniRef50_E4PLJ2: Protein containing DUF1857	0.3714348790
+UniRef50_E4PLJ2: Protein containing DUF1857|unclassified	0.3714348790
+UniRef50_K1JME7	0.3713916661
+UniRef50_K1JME7|unclassified	0.3713916661
+UniRef50_A1KDG9: Clumping factor B (Fragment)	0.3713389443
+UniRef50_A1KDG9: Clumping factor B (Fragment)|unclassified	0.3713389443
+UniRef50_UPI000378D6B1: hypothetical protein	0.3712958830
+UniRef50_UPI000378D6B1: hypothetical protein|unclassified	0.3712958830
+UniRef50_Q6LMM2: Putative Holliday junction resolvase	0.3712629166
+UniRef50_Q6LMM2: Putative Holliday junction resolvase|unclassified	0.3712629166
+UniRef50_UPI00038283FF: 30S ribosomal protein S17	0.3712472126
+UniRef50_UPI00038283FF: 30S ribosomal protein S17|unclassified	0.3712472126
+UniRef50_UPI00037BCD79: hypothetical protein, partial	0.3711978090
+UniRef50_UPI00037BCD79: hypothetical protein, partial|unclassified	0.3711978090
+UniRef50_D2VZK9	0.3711952487
+UniRef50_D2VZK9|unclassified	0.3711952487
+UniRef50_UPI00041FAF23: ETC complex I subunit	0.3711926202
+UniRef50_UPI00041FAF23: ETC complex I subunit|unclassified	0.3711926202
+UniRef50_UPI0004636D79: hypothetical protein	0.3711776839
+UniRef50_UPI0004636D79: hypothetical protein|unclassified	0.3711776839
+UniRef50_K2ELM7	0.3711738677
+UniRef50_K2ELM7|unclassified	0.3711738677
+UniRef50_Q214R5: Putative 3-methyladenine DNA glycosylase	0.3711735539
+UniRef50_Q214R5: Putative 3-methyladenine DNA glycosylase|unclassified	0.3711735539
+UniRef50_M5FH04	0.3711071310
+UniRef50_M5FH04|unclassified	0.3711071310
+UniRef50_Q2N5Q3: Glutamate--tRNA ligase 2	0.3710788930
+UniRef50_Q2N5Q3: Glutamate--tRNA ligase 2|unclassified	0.3710788930
+UniRef50_UPI00046D65C0: hypothetical protein	0.3710630352
+UniRef50_UPI00046D65C0: hypothetical protein|unclassified	0.3710630352
+UniRef50_X3UQR8	0.3709987893
+UniRef50_X3UQR8|unclassified	0.3709987893
+UniRef50_I4Z1A4: Hydrogenase/urease accessory protein	0.3709923425
+UniRef50_I4Z1A4: Hydrogenase/urease accessory protein|unclassified	0.3709923425
+UniRef50_W9VTX3	0.3709689706
+UniRef50_W9VTX3|unclassified	0.3709689706
+UniRef50_J7R5H1	0.3709606103
+UniRef50_J7R5H1|unclassified	0.3709606103
+UniRef50_E2LBE9	0.3709348598
+UniRef50_E2LBE9|unclassified	0.3709348598
+UniRef50_B0JUG8: Bifunctional protein PyrR	0.3708704782
+UniRef50_B0JUG8: Bifunctional protein PyrR|unclassified	0.3708704782
+UniRef50_I1PT24	0.3708642764
+UniRef50_I1PT24|unclassified	0.3708642764
+UniRef50_T0P454	0.3708477435
+UniRef50_T0P454|unclassified	0.3708477435
+UniRef50_UPI0001850E7F: signal recognition particle protein	0.3708286626
+UniRef50_UPI0001850E7F: signal recognition particle protein|unclassified	0.3708286626
+UniRef50_C7BM13: Conserved hypothetical exported protein	0.3708116815
+UniRef50_C7BM13: Conserved hypothetical exported protein|unclassified	0.3708116815
+UniRef50_A7HP50	0.3706728824
+UniRef50_A7HP50|unclassified	0.3706728824
+UniRef50_V6PYZ0: Putative oxidoreductase	0.3706696063
+UniRef50_V6PYZ0: Putative oxidoreductase|unclassified	0.3706696063
+UniRef50_UPI00047A8FC3: hypothetical protein	0.3706477909
+UniRef50_UPI00047A8FC3: hypothetical protein|unclassified	0.3706477909
+UniRef50_M3C7N1	0.3706446432
+UniRef50_M3C7N1|unclassified	0.3706446432
+UniRef50_UPI0004447F97: PREDICTED: 39S ribosomal protein L11, mitochondrial	0.3706250581
+UniRef50_UPI0004447F97: PREDICTED: 39S ribosomal protein L11, mitochondrial|unclassified	0.3706250581
+UniRef50_G9KF59: Progestin and adipoQ receptor family member V (Fragment)	0.3706163659
+UniRef50_G9KF59: Progestin and adipoQ receptor family member V (Fragment)|unclassified	0.3706163659
+UniRef50_A9U8D1: Predicted protein (Fragment)	0.3706122944
+UniRef50_A9U8D1: Predicted protein (Fragment)|unclassified	0.3706122944
+UniRef50_UPI00040C7D51: hypothetical protein	0.3705380090
+UniRef50_UPI00040C7D51: hypothetical protein|unclassified	0.3705380090
+UniRef50_I3TWJ7	0.3705370975
+UniRef50_I3TWJ7|unclassified	0.3705370975
+UniRef50_UPI00033433B7	0.3704859463
+UniRef50_UPI00033433B7|unclassified	0.3704859463
+UniRef50_A0A011Q5S4	0.3702954147
+UniRef50_A0A011Q5S4|unclassified	0.3702954147
+UniRef50_O33465: Methionine synthase (Fragment)	0.3702531404
+UniRef50_O33465: Methionine synthase (Fragment)|unclassified	0.3702531404
+UniRef50_A7AI53	0.3702102488
+UniRef50_A7AI53|unclassified	0.3702102488
+UniRef50_D5GLW1: Whole genome shotgun sequence assembly, scaffold_7, strain Mel28	0.3702024773
+UniRef50_D5GLW1: Whole genome shotgun sequence assembly, scaffold_7, strain Mel28|unclassified	0.3702024773
+UniRef50_H5SJX6: 6-pyruvoyl tetrahydrobiopterin synthase	0.3701810408
+UniRef50_H5SJX6: 6-pyruvoyl tetrahydrobiopterin synthase|unclassified	0.3701810408
+UniRef50_UPI0003B4D897: rod shape-determining protein MreB	0.3701701928
+UniRef50_UPI0003B4D897: rod shape-determining protein MreB|unclassified	0.3701701928
+UniRef50_UPI00047E98FF: fumarate hydratase	0.3701581094
+UniRef50_UPI00047E98FF: fumarate hydratase|unclassified	0.3701581094
+UniRef50_Q2W095: Shikimate kinase	0.3701563142
+UniRef50_Q2W095: Shikimate kinase|unclassified	0.3701563142
+UniRef50_R7JR85	0.3701444627
+UniRef50_R7JR85|unclassified	0.3701444627
+UniRef50_U7R6W7	0.3701034765
+UniRef50_U7R6W7|unclassified	0.3701034765
+UniRef50_Q65R52: Phosphopantetheine adenylyltransferase	0.3700919082
+UniRef50_Q65R52: Phosphopantetheine adenylyltransferase|unclassified	0.3700919082
+UniRef50_Q9Z3R8: Probable alpha-glucosidase	0.3700107944
+UniRef50_Q9Z3R8: Probable alpha-glucosidase|unclassified	0.3700107944
+UniRef50_Q4L4T4: Probable nitronate monooxygenase	0.3700059495
+UniRef50_Q4L4T4: Probable nitronate monooxygenase|unclassified	0.3700059495
+UniRef50_UPI0002EAF62E: hypothetical protein	0.3700050122
+UniRef50_UPI0002EAF62E: hypothetical protein|unclassified	0.3700050122
+UniRef50_UPI0003AB3B4A: hypothetical protein	0.3699971106
+UniRef50_UPI0003AB3B4A: hypothetical protein|unclassified	0.3699971106
+UniRef50_R5HG54	0.3699856696
+UniRef50_R5HG54|unclassified	0.3699856696
+UniRef50_E4TFB2: TRAP transporter solute receptor, TAXI family	0.3699697524
+UniRef50_E4TFB2: TRAP transporter solute receptor, TAXI family|unclassified	0.3699697524
+UniRef50_UPI00038F6ABE: 50S ribosomal protein L27	0.3699605176
+UniRef50_UPI00038F6ABE: 50S ribosomal protein L27|unclassified	0.3699605176
+UniRef50_UPI00037243A0: hypothetical protein, partial	0.3699377876
+UniRef50_UPI00037243A0: hypothetical protein, partial|unclassified	0.3699377876
+UniRef50_O27397: Probable N-glycosylase/DNA lyase	0.3699111656
+UniRef50_O27397: Probable N-glycosylase/DNA lyase|unclassified	0.3699111656
+UniRef50_UPI0003C14BCE: PREDICTED: L-rhamnose-1-dehydrogenase-like	0.3698638166
+UniRef50_UPI0003C14BCE: PREDICTED: L-rhamnose-1-dehydrogenase-like|unclassified	0.3698638166
+UniRef50_I7Z0R0: Electron transport complex, RnfABCDGE type, C subunit (Fragment)	0.3698596709
+UniRef50_I7Z0R0: Electron transport complex, RnfABCDGE type, C subunit (Fragment)|unclassified	0.3698596709
+UniRef50_Q9I742: Protein ClpV1	0.3698224852
+UniRef50_Q9I742: Protein ClpV1|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.3698224852
+UniRef50_O66129: Hexaprenyl-diphosphate synthase large subunit ((2E,6E)-farnesyl-diphosphate specific)	0.3698202010
+UniRef50_O66129: Hexaprenyl-diphosphate synthase large subunit ((2E,6E)-farnesyl-diphosphate specific)|unclassified	0.3698202010
+UniRef50_Q28VH8	0.3698137018
+UniRef50_Q28VH8|unclassified	0.3698137018
+UniRef50_UPI00016C5515: type II secretion system protein E	0.3697765889
+UniRef50_UPI00016C5515: type II secretion system protein E|unclassified	0.3697765889
+UniRef50_UPI0001CC04B8: RNA polymerase sigma70	0.3697219372
+UniRef50_UPI0001CC04B8: RNA polymerase sigma70|unclassified	0.3697219372
+UniRef50_S3LIB4	0.3696940439
+UniRef50_S3LIB4|unclassified	0.3696940439
+UniRef50_UPI000363D6AB: MULTISPECIES: hypothetical protein	0.3696383554
+UniRef50_UPI000363D6AB: MULTISPECIES: hypothetical protein|unclassified	0.3696383554
+UniRef50_UPI00040856F2: hypothetical protein	0.3696316388
+UniRef50_UPI00040856F2: hypothetical protein|unclassified	0.3696316388
+UniRef50_D9PFM0	0.3696037674
+UniRef50_D9PFM0|unclassified	0.3696037674
+UniRef50_A0A024E028: LacI family transcription regulator	0.3695824080
+UniRef50_A0A024E028: LacI family transcription regulator|unclassified	0.3695824080
+UniRef50_UPI00047690D0: LuxR family transcriptional regulator	0.3695527616
+UniRef50_UPI00047690D0: LuxR family transcriptional regulator|unclassified	0.3695527616
+UniRef50_UPI000478FD34: hypothetical protein	0.3695389204
+UniRef50_UPI000478FD34: hypothetical protein|unclassified	0.3695389204
+UniRef50_V6UMH5	0.3694445904
+UniRef50_V6UMH5|unclassified	0.3694445904
+UniRef50_UPI0003ABA60E: PREDICTED: vegetative cell wall protein gp1-like	0.3694206200
+UniRef50_UPI0003ABA60E: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.3694206200
+UniRef50_H5Y6V7: TIGR02300 family protein	0.3694134134
+UniRef50_H5Y6V7: TIGR02300 family protein|unclassified	0.3694134134
+UniRef50_P11035: Nitrate reductase [NADH] 2	0.3694126339
+UniRef50_P11035: Nitrate reductase [NADH] 2|unclassified	0.3694126339
+UniRef50_D4HEV9	0.3693277241
+UniRef50_D4HEV9|unclassified	0.3693277241
+UniRef50_UPI00028A38BF: ABC transporter ATP-binding protein	0.3693267258
+UniRef50_UPI00028A38BF: ABC transporter ATP-binding protein|unclassified	0.3693267258
+UniRef50_X0XJU3: Marine sediment metagenome DNA, contig: S01H1_S28288 (Fragment)	0.3693059091
+UniRef50_X0XJU3: Marine sediment metagenome DNA, contig: S01H1_S28288 (Fragment)|unclassified	0.3693059091
+UniRef50_Y8KY29	0.3692895820
+UniRef50_Y8KY29|unclassified	0.3692895820
+UniRef50_W4UHC4: Helicase	0.3692762186
+UniRef50_W4UHC4: Helicase|g__Propionibacterium.s__Propionibacterium_acnes	0.3692762186
+UniRef50_A8V2D8: Phosphoribosylaminoimidazole-succinocarboxamide synthase (Fragment)	0.3692461817
+UniRef50_A8V2D8: Phosphoribosylaminoimidazole-succinocarboxamide synthase (Fragment)|unclassified	0.3692461817
+UniRef50_K5YQU9	0.3692371462
+UniRef50_K5YQU9|unclassified	0.3692371462
+UniRef50_Q1JG66	0.3692334911
+UniRef50_Q1JG66|unclassified	0.3692334911
+UniRef50_V7EN18	0.3692212563
+UniRef50_V7EN18|unclassified	0.3692212563
+UniRef50_UPI0004748A1C: peptide ABC transporter substrate-binding protein	0.3691815148
+UniRef50_UPI0004748A1C: peptide ABC transporter substrate-binding protein|unclassified	0.3691815148
+UniRef50_X4Z2S8: Putative membrane protein	0.3691693755
+UniRef50_X4Z2S8: Putative membrane protein|unclassified	0.3691693755
+UniRef50_UPI0003EAF8D9	0.3691653668
+UniRef50_UPI0003EAF8D9|unclassified	0.3691653668
+UniRef50_UPI0003B3A998: zinc protease	0.3691265512
+UniRef50_UPI0003B3A998: zinc protease|unclassified	0.3691265512
+UniRef50_UPI00035A1B1C: PREDICTED: 40S ribosomal protein S12, mitochondrial-like	0.3691047948
+UniRef50_UPI00035A1B1C: PREDICTED: 40S ribosomal protein S12, mitochondrial-like|unclassified	0.3691047948
+UniRef50_Q097G2	0.3690841757
+UniRef50_Q097G2|unclassified	0.3690841757
+UniRef50_UPI0004047AAD: sugar ABC transporter substrate-binding protein	0.3690737839
+UniRef50_UPI0004047AAD: sugar ABC transporter substrate-binding protein|unclassified	0.3690737839
+UniRef50_UPI00035C4E67: hypothetical protein, partial	0.3690096057
+UniRef50_UPI00035C4E67: hypothetical protein, partial|unclassified	0.3690096057
+UniRef50_Q3JNY9	0.3690006524
+UniRef50_Q3JNY9|unclassified	0.3690006524
+UniRef50_K2C9D2: Anaerobic ribonucleoside-triphosphate reductase (Fragment)	0.3689906299
+UniRef50_K2C9D2: Anaerobic ribonucleoside-triphosphate reductase (Fragment)|unclassified	0.3689906299
+UniRef50_M1N6J3	0.3689763688
+UniRef50_M1N6J3|unclassified	0.3689763688
+UniRef50_UPI000465A796: hypothetical protein	0.3689695938
+UniRef50_UPI000465A796: hypothetical protein|unclassified	0.3689695938
+UniRef50_W6U8W1	0.3689629562
+UniRef50_W6U8W1|unclassified	0.3689629562
+UniRef50_H0QKR3	0.3689394741
+UniRef50_H0QKR3|unclassified	0.3689394741
+UniRef50_A0A023RH98: Immunogenic protein	0.3689287439
+UniRef50_A0A023RH98: Immunogenic protein|unclassified	0.3689287439
+UniRef50_F9ZU86	0.3689268358
+UniRef50_F9ZU86|unclassified	0.3689268358
+UniRef50_UPI0002EF5C1B: accessory secretory protein Asp2	0.3688775931
+UniRef50_UPI0002EF5C1B: accessory secretory protein Asp2|unclassified	0.3688775931
+UniRef50_L6R9Y5: Trehalose-6-phosphate phosphatase	0.3688745873
+UniRef50_L6R9Y5: Trehalose-6-phosphate phosphatase|unclassified	0.3688745873
+UniRef50_R7GVB9	0.3688500419
+UniRef50_R7GVB9|unclassified	0.3688500419
+UniRef50_UPI00029AB2AA: exonuclease	0.3688489221
+UniRef50_UPI00029AB2AA: exonuclease|unclassified	0.3688489221
+UniRef50_UPI0002B44272: PREDICTED: 30S ribosomal protein S9-like	0.3688404566
+UniRef50_UPI0002B44272: PREDICTED: 30S ribosomal protein S9-like|unclassified	0.3688404566
+UniRef50_V9W081	0.3688349527
+UniRef50_V9W081|unclassified	0.3688349527
+UniRef50_UPI00029B2672: GntR family transcriptional regulator, partial	0.3688308128
+UniRef50_UPI00029B2672: GntR family transcriptional regulator, partial|unclassified	0.3688308128
+UniRef50_H4I3W1	0.3687765050
+UniRef50_H4I3W1|unclassified	0.3687765050
+UniRef50_S9URH2	0.3687438972
+UniRef50_S9URH2|unclassified	0.3687438972
+UniRef50_UPI0003EF90FD: hypothetical protein	0.3686955799
+UniRef50_UPI0003EF90FD: hypothetical protein|unclassified	0.3686955799
+UniRef50_D1Z118	0.3686681531
+UniRef50_D1Z118|unclassified	0.3686681531
+UniRef50_UPI0003693042: hypothetical protein	0.3686451614
+UniRef50_UPI0003693042: hypothetical protein|unclassified	0.3686451614
+UniRef50_G2BCM7	0.3686376445
+UniRef50_G2BCM7|unclassified	0.3686376445
+UniRef50_Q31Q89: Phage major tail tube protein	0.3686016193
+UniRef50_Q31Q89: Phage major tail tube protein|unclassified	0.3686016193
+UniRef50_W1B512: ABC-type nitrate/sulfonate/bicarbonate transport systems, periplasmic components	0.3685984377
+UniRef50_W1B512: ABC-type nitrate/sulfonate/bicarbonate transport systems, periplasmic components|unclassified	0.3685984377
+UniRef50_J8BFR1	0.3685757299
+UniRef50_J8BFR1|unclassified	0.3685757299
+UniRef50_A7GUW7: NLP/P60 protein	0.3685205484
+UniRef50_A7GUW7: NLP/P60 protein|unclassified	0.3685205484
+UniRef50_UPI0004624C72: polymerase	0.3684986760
+UniRef50_UPI0004624C72: polymerase|unclassified	0.3684986760
+UniRef50_UPI000368E428: hypothetical protein	0.3684514742
+UniRef50_UPI000368E428: hypothetical protein|unclassified	0.3684514742
+UniRef50_UPI000347473B: ABC transporter permease	0.3684356748
+UniRef50_UPI000347473B: ABC transporter permease|unclassified	0.3684356748
+UniRef50_R1CXE8	0.3684078741
+UniRef50_R1CXE8|unclassified	0.3684078741
+UniRef50_UPI00030E52E6: hypothetical protein	0.3683785406
+UniRef50_UPI00030E52E6: hypothetical protein|unclassified	0.3683785406
+UniRef50_K2AYU4: Stringent starvation protein A (Fragment)	0.3683774126
+UniRef50_K2AYU4: Stringent starvation protein A (Fragment)|unclassified	0.3683774126
+UniRef50_S4XSR0	0.3683323948
+UniRef50_S4XSR0|unclassified	0.3683323948
+UniRef50_R5XR88: Transcriptional regulator	0.3683286201
+UniRef50_R5XR88: Transcriptional regulator|unclassified	0.3683286201
+UniRef50_UPI0004683B65: hypothetical protein	0.3682885782
+UniRef50_UPI0004683B65: hypothetical protein|unclassified	0.3682885782
+UniRef50_C7CM32: FMN reductase (NADH) RutF	0.3682810256
+UniRef50_C7CM32: FMN reductase (NADH) RutF|unclassified	0.3682810256
+UniRef50_UPI00035A0C3F: PREDICTED: 28S ribosomal protein S15, mitochondrial	0.3682397994
+UniRef50_UPI00035A0C3F: PREDICTED: 28S ribosomal protein S15, mitochondrial|unclassified	0.3682397994
+UniRef50_UPI0003457810: hypothetical protein	0.3681849919
+UniRef50_UPI0003457810: hypothetical protein|unclassified	0.3681849919
+UniRef50_W8ULJ6	0.3681588205
+UniRef50_W8ULJ6|unclassified	0.3681588205
+UniRef50_E3A2J2	0.3681541954
+UniRef50_E3A2J2|unclassified	0.3681541954
+UniRef50_E1I9P7: Cobyrinic acid ac-diamide synthase	0.3681308624
+UniRef50_E1I9P7: Cobyrinic acid ac-diamide synthase|unclassified	0.3681308624
+UniRef50_D4X8Q2: ParB-like protein	0.3681301522
+UniRef50_D4X8Q2: ParB-like protein|unclassified	0.3681301522
+UniRef50_UPI000470E763: 50S ribosomal protein L20	0.3680985744
+UniRef50_UPI000470E763: 50S ribosomal protein L20|unclassified	0.3680985744
+UniRef50_O27492: Probable acetolactate synthase small subunit	0.3680888247
+UniRef50_O27492: Probable acetolactate synthase small subunit|unclassified	0.3680888247
+UniRef50_UPI0003B361AC: lysine transporter LysE	0.3680777140
+UniRef50_UPI0003B361AC: lysine transporter LysE|unclassified	0.3680777140
+UniRef50_P44875: Acetate CoA-transferase subunit alpha	0.3680585355
+UniRef50_P44875: Acetate CoA-transferase subunit alpha|unclassified	0.3680585355
+UniRef50_UPI00046D9A7B: hypothetical protein	0.3680407276
+UniRef50_UPI00046D9A7B: hypothetical protein|unclassified	0.3680407276
+UniRef50_Q6A9N0: Hemin receptor	0.3680304221
+UniRef50_Q6A9N0: Hemin receptor|unclassified	0.3680304221
+UniRef50_UPI00036CC3FF: hypothetical protein	0.3680071771
+UniRef50_UPI00036CC3FF: hypothetical protein|unclassified	0.3680071771
+UniRef50_J5AYD0	0.3679325814
+UniRef50_J5AYD0|unclassified	0.3679325814
+UniRef50_X0VYY7: Marine sediment metagenome DNA, contig: S01H1_S19773 (Fragment)	0.3679270972
+UniRef50_X0VYY7: Marine sediment metagenome DNA, contig: S01H1_S19773 (Fragment)|unclassified	0.3679270972
+UniRef50_UPI000471B4D3: hypothetical protein	0.3679124117
+UniRef50_UPI000471B4D3: hypothetical protein|unclassified	0.3679124117
+UniRef50_C9CRW7: Putative lipoprotein	0.3679113359
+UniRef50_C9CRW7: Putative lipoprotein|unclassified	0.3679113359
+UniRef50_UPI000405521B: acyl-CoA dehydrogenase	0.3679109739
+UniRef50_UPI000405521B: acyl-CoA dehydrogenase|unclassified	0.3679109739
+UniRef50_UPI000368C537: hypothetical protein	0.3678968725
+UniRef50_UPI000368C537: hypothetical protein|unclassified	0.3678968725
+UniRef50_F7SNC1	0.3678829645
+UniRef50_F7SNC1|unclassified	0.3678829645
+UniRef50_UPI00039C17A8: hypothetical protein	0.3677848499
+UniRef50_UPI00039C17A8: hypothetical protein|unclassified	0.3677848499
+UniRef50_B2IQS0	0.3677482057
+UniRef50_B2IQS0|unclassified	0.3677482057
+UniRef50_C3KQA3	0.3677272914
+UniRef50_C3KQA3|unclassified	0.3677272914
+UniRef50_UPI000225F589: hypothetical protein	0.3677168913
+UniRef50_UPI000225F589: hypothetical protein|unclassified	0.3677168913
+UniRef50_N9R0J7	0.3677142632
+UniRef50_N9R0J7|unclassified	0.3677142632
+UniRef50_E9AHU2: Proteophosphoglycan 5	0.3677135823
+UniRef50_E9AHU2: Proteophosphoglycan 5|unclassified	0.3677135823
+UniRef50_D6RP29: Cytoplasmic protein	0.3677110898
+UniRef50_D6RP29: Cytoplasmic protein|unclassified	0.3677110898
+UniRef50_F2A3T7	0.3676708677
+UniRef50_F2A3T7|unclassified	0.3676708677
+UniRef50_V4RJ79: Putative small heat shock protein	0.3676649188
+UniRef50_V4RJ79: Putative small heat shock protein|unclassified	0.3676649188
+UniRef50_UPI0003828B5A: hypothetical protein, partial	0.3676648487
+UniRef50_UPI0003828B5A: hypothetical protein, partial|unclassified	0.3676648487
+UniRef50_UPI00030E0FDC: mRNA 3-end processing factor	0.3676552420
+UniRef50_UPI00030E0FDC: mRNA 3-end processing factor|unclassified	0.3676552420
+UniRef50_G0D373	0.3675494156
+UniRef50_G0D373|unclassified	0.3675494156
+UniRef50_B9JW42: Usg protein	0.3675221240
+UniRef50_B9JW42: Usg protein|unclassified	0.3675221240
+UniRef50_UPI00041FC7F2: MarR family transcriptional regulator	0.3675199154
+UniRef50_UPI00041FC7F2: MarR family transcriptional regulator|unclassified	0.3675199154
+UniRef50_UPI0003605AF8: hypothetical protein	0.3675120804
+UniRef50_UPI0003605AF8: hypothetical protein|unclassified	0.3675120804
+UniRef50_Q052H7: Phosphoglycerate kinase	0.3675009153
+UniRef50_Q052H7: Phosphoglycerate kinase|unclassified	0.3675009153
+UniRef50_A0A022GHT9	0.3674524955
+UniRef50_A0A022GHT9|unclassified	0.3674524955
+UniRef50_UPI000478CA24: hypothetical protein	0.3674196449
+UniRef50_UPI000478CA24: hypothetical protein|unclassified	0.3674196449
+UniRef50_UPI000376D7E8: hypothetical protein, partial	0.3673013965
+UniRef50_UPI000376D7E8: hypothetical protein, partial|unclassified	0.3673013965
+UniRef50_UPI0004729E89: UDP-N-acetylglucosamine 1-carboxyvinyltransferase, partial	0.3672988855
+UniRef50_UPI0004729E89: UDP-N-acetylglucosamine 1-carboxyvinyltransferase, partial|unclassified	0.3672988855
+UniRef50_UPI0003618C13: 2,3-dihydroxybenzoate-2,3-dehydrogenase, partial	0.3672953996
+UniRef50_UPI0003618C13: 2,3-dihydroxybenzoate-2,3-dehydrogenase, partial|unclassified	0.3672953996
+UniRef50_V4YZI7	0.3672770574
+UniRef50_V4YZI7|unclassified	0.3672770574
+UniRef50_UPI0004669E93: hypothetical protein, partial	0.3672709159
+UniRef50_UPI0004669E93: hypothetical protein, partial|unclassified	0.3672709159
+UniRef50_UPI0003688FAD: hypothetical protein	0.3672672795
+UniRef50_UPI0003688FAD: hypothetical protein|unclassified	0.3672672795
+UniRef50_Q08X06	0.3672420125
+UniRef50_Q08X06|unclassified	0.3672420125
+UniRef50_K2G1E1: L-carnitine dehydratase/bile acid-inducible protein F (Fragment)	0.3672284838
+UniRef50_K2G1E1: L-carnitine dehydratase/bile acid-inducible protein F (Fragment)|unclassified	0.3672284838
+UniRef50_UPI00046F6935: hypothetical protein	0.3672231401
+UniRef50_UPI00046F6935: hypothetical protein|unclassified	0.3672231401
+UniRef50_Q5F6F8	0.3670901803
+UniRef50_Q5F6F8|unclassified	0.3670901803
+UniRef50_R9NTK1: Murein peptide amidase A	0.3670432426
+UniRef50_R9NTK1: Murein peptide amidase A|unclassified	0.3670432426
+UniRef50_UPI000288C7BA: 30S ribosomal protein S4	0.3670368214
+UniRef50_UPI000288C7BA: 30S ribosomal protein S4|unclassified	0.3670368214
+UniRef50_Y9KZ78	0.3670252692
+UniRef50_Y9KZ78|unclassified	0.3670252692
+UniRef50_G2JDK1	0.3670122123
+UniRef50_G2JDK1|unclassified	0.3670122123
+UniRef50_D0UZ77: PCQ3_28	0.3670101716
+UniRef50_D0UZ77: PCQ3_28|unclassified	0.3670101716
+UniRef50_V1GAH6	0.3669882434
+UniRef50_V1GAH6|unclassified	0.3669882434
+UniRef50_D2S6T2	0.3669866130
+UniRef50_D2S6T2|unclassified	0.3669866130
+UniRef50_UPI0002D7ECB6: arsenate reductase	0.3669807652
+UniRef50_UPI0002D7ECB6: arsenate reductase|unclassified	0.3669807652
+UniRef50_Q3JW36	0.3669724771
+UniRef50_Q3JW36|unclassified	0.3669724771
+UniRef50_UPI00046F18D5: monovalent cation/proton antiporter subunit MnhG/PhaG	0.3669486699
+UniRef50_UPI00046F18D5: monovalent cation/proton antiporter subunit MnhG/PhaG|unclassified	0.3669486699
+UniRef50_UPI0003B7231B: 50S ribosomal protein L15	0.3669402114
+UniRef50_UPI0003B7231B: 50S ribosomal protein L15|unclassified	0.3669402114
+UniRef50_Q6X210	0.3669320585
+UniRef50_Q6X210|unclassified	0.3669320585
+UniRef50_D0J0I2: Lipoprotein	0.3669134261
+UniRef50_D0J0I2: Lipoprotein|unclassified	0.3669134261
+UniRef50_Q3BJT1: Nitrite oxidoreductase beta subunit (Fragment)	0.3668671351
+UniRef50_Q3BJT1: Nitrite oxidoreductase beta subunit (Fragment)|unclassified	0.3668671351
+UniRef50_Q8Y3E7: Acetylglutamate kinase	0.3668618952
+UniRef50_Q8Y3E7: Acetylglutamate kinase|unclassified	0.3668618952
+UniRef50_S5F6B6: Carbonic anhydrase	0.3668534569
+UniRef50_S5F6B6: Carbonic anhydrase|unclassified	0.3668534569
+UniRef50_UPI0003B40863: recombinase RecF, partial	0.3668302872
+UniRef50_UPI0003B40863: recombinase RecF, partial|unclassified	0.3668302872
+UniRef50_UPI0003475310: NAD-dependent formate dehydrogenase	0.3668161545
+UniRef50_UPI0003475310: NAD-dependent formate dehydrogenase|unclassified	0.3668161545
+UniRef50_F1TBN8: MaoC domain protein dehydratase	0.3667619192
+UniRef50_F1TBN8: MaoC domain protein dehydratase|unclassified	0.3667619192
+UniRef50_UPI000377A2A8: hypothetical protein	0.3667460235
+UniRef50_UPI000377A2A8: hypothetical protein|unclassified	0.3667460235
+UniRef50_UPI000464EDC8: hypothetical protein	0.3667442673
+UniRef50_UPI000464EDC8: hypothetical protein|unclassified	0.3667442673
+UniRef50_C5BEV8: HupE / UreJ protein	0.3667331938
+UniRef50_C5BEV8: HupE / UreJ protein|unclassified	0.3667331938
+UniRef50_UPI000412412A: phosphohydrolase	0.3667292440
+UniRef50_UPI000412412A: phosphohydrolase|unclassified	0.3667292440
+UniRef50_UPI000473C272: hypothetical protein, partial	0.3667013454
+UniRef50_UPI000473C272: hypothetical protein, partial|unclassified	0.3667013454
+UniRef50_Q3JLT3: DGPF domain protein	0.3666995432
+UniRef50_Q3JLT3: DGPF domain protein|unclassified	0.3666995432
+UniRef50_UPI0002193BBE: ribonucleotide-diphosphate reductase subunit alpha, partial	0.3666816856
+UniRef50_UPI0002193BBE: ribonucleotide-diphosphate reductase subunit alpha, partial|unclassified	0.3666816856
+UniRef50_A3VIL6	0.3666342560
+UniRef50_A3VIL6|unclassified	0.3666342560
+UniRef50_J7L8P7: TRAP transporter solute receptor, TAXI family protein	0.3665917024
+UniRef50_J7L8P7: TRAP transporter solute receptor, TAXI family protein|unclassified	0.3665917024
+UniRef50_UPI000477F500: alanine glycine permease, partial	0.3665896306
+UniRef50_UPI000477F500: alanine glycine permease, partial|unclassified	0.3665896306
+UniRef50_UPI0003594B33: PREDICTED: succinyl-CoA:3-ketoacid coenzyme A transferase 1, mitochondrial	0.3665704065
+UniRef50_UPI0003594B33: PREDICTED: succinyl-CoA:3-ketoacid coenzyme A transferase 1, mitochondrial|unclassified	0.3665704065
+UniRef50_Q4J6M5: Glyceraldehyde dehydrogenase small chain	0.3665514832
+UniRef50_Q4J6M5: Glyceraldehyde dehydrogenase small chain|unclassified	0.3665514832
+UniRef50_E1M5X7	0.3665506820
+UniRef50_E1M5X7|unclassified	0.3665506820
+UniRef50_UPI0003681D8C: hypothetical protein	0.3664635048
+UniRef50_UPI0003681D8C: hypothetical protein|unclassified	0.3664635048
+UniRef50_Q094V3	0.3664496354
+UniRef50_Q094V3|unclassified	0.3664496354
+UniRef50_UPI00037497A5: DNA-binding protein	0.3664285735
+UniRef50_UPI00037497A5: DNA-binding protein|unclassified	0.3664285735
+UniRef50_T0D1W9: AAA domain protein	0.3664151016
+UniRef50_T0D1W9: AAA domain protein|unclassified	0.3664151016
+UniRef50_Q6YTE0	0.3663890744
+UniRef50_Q6YTE0|unclassified	0.3663890744
+UniRef50_G8LL22	0.3663510524
+UniRef50_G8LL22|unclassified	0.3663510524
+UniRef50_UPI0003828CD2: hypothetical protein	0.3663149776
+UniRef50_UPI0003828CD2: hypothetical protein|unclassified	0.3663149776
+UniRef50_Q0FRL1	0.3663003663
+UniRef50_Q0FRL1|unclassified	0.3663003663
+UniRef50_UPI0003DEC8D2	0.3663003663
+UniRef50_UPI0003DEC8D2|unclassified	0.3663003663
+UniRef50_UPI00035CB657: hypothetical protein	0.3662970303
+UniRef50_UPI00035CB657: hypothetical protein|unclassified	0.3662970303
+UniRef50_W4M1F4	0.3662661833
+UniRef50_W4M1F4|unclassified	0.3662661833
+UniRef50_UPI00046FE2E6: hypothetical protein, partial	0.3662625986
+UniRef50_UPI00046FE2E6: hypothetical protein, partial|unclassified	0.3662625986
+UniRef50_A0A013VHK1: Transposase	0.3662613663
+UniRef50_A0A013VHK1: Transposase|unclassified	0.3662613663
+UniRef50_E2PFC0	0.3662598382
+UniRef50_E2PFC0|unclassified	0.3662598382
+UniRef50_K2GR90: Diguanylate cyclase	0.3662425866
+UniRef50_K2GR90: Diguanylate cyclase|unclassified	0.3662425866
+UniRef50_Q6HII3	0.3662190900
+UniRef50_Q6HII3|unclassified	0.3662190900
+UniRef50_P80576: Phospho-2-dehydro-3-deoxyheptonate aldolase	0.3661206307
+UniRef50_P80576: Phospho-2-dehydro-3-deoxyheptonate aldolase|unclassified	0.3661206307
+UniRef50_UPI00046524C3: hypothetical protein	0.3661053485
+UniRef50_UPI00046524C3: hypothetical protein|unclassified	0.3661053485
+UniRef50_UPI00036B59CC: hypothetical protein	0.3660892803
+UniRef50_UPI00036B59CC: hypothetical protein|unclassified	0.3660892803
+UniRef50_UPI000367FB40: ABC transporter ATP-binding protein, partial	0.3660769994
+UniRef50_UPI000367FB40: ABC transporter ATP-binding protein, partial|unclassified	0.3660769994
+UniRef50_K0ADE8	0.3660490931
+UniRef50_K0ADE8|unclassified	0.3660490931
+UniRef50_UPI000465597A: phosphate-starvation-inducible E	0.3660266124
+UniRef50_UPI000465597A: phosphate-starvation-inducible E|unclassified	0.3660266124
+UniRef50_UPI0004646EC6: glutamyl-tRNA amidotransferase, partial	0.3660155268
+UniRef50_UPI0004646EC6: glutamyl-tRNA amidotransferase, partial|unclassified	0.3660155268
+UniRef50_UPI0003710F95: hypothetical protein	0.3659996114
+UniRef50_UPI0003710F95: hypothetical protein|unclassified	0.3659996114
+UniRef50_Q8KUT5: ANL56	0.3659948650
+UniRef50_Q8KUT5: ANL56|unclassified	0.3659948650
+UniRef50_Q2GDL7: Ribosomal RNA large subunit methyltransferase E	0.3659582415
+UniRef50_Q2GDL7: Ribosomal RNA large subunit methyltransferase E|unclassified	0.3659582415
+UniRef50_Q5L925: GTP cyclohydrolase 1	0.3659312552
+UniRef50_Q5L925: GTP cyclohydrolase 1|unclassified	0.3659312552
+UniRef50_UPI0000DA0225: branched-chain amino acid ABC transporter ATP-binding protein	0.3659263761
+UniRef50_UPI0000DA0225: branched-chain amino acid ABC transporter ATP-binding protein|unclassified	0.3659263761
+UniRef50_Q5XDX4: Ribosomal RNA small subunit methyltransferase A	0.3658808651
+UniRef50_Q5XDX4: Ribosomal RNA small subunit methyltransferase A|unclassified	0.3658808651
+UniRef50_Q6MQ03: Aminomethyltransferase	0.3658767256
+UniRef50_Q6MQ03: Aminomethyltransferase|unclassified	0.3658767256
+UniRef50_UPI00035C0FD3: hypothetical protein	0.3658526684
+UniRef50_UPI00035C0FD3: hypothetical protein|unclassified	0.3658526684
+UniRef50_T0ZLL7: Secretion chaperone CsaA (Fragment)	0.3658308928
+UniRef50_T0ZLL7: Secretion chaperone CsaA (Fragment)|unclassified	0.3658308928
+UniRef50_UPI0002888CA2: phage terminase, large subunit	0.3658178940
+UniRef50_UPI0002888CA2: phage terminase, large subunit|unclassified	0.3658178940
+UniRef50_Q4L6H9: Glycerol-3-phosphate dehydrogenase [NAD(P)+]	0.3657844991
+UniRef50_Q4L6H9: Glycerol-3-phosphate dehydrogenase [NAD(P)+]|unclassified	0.3657844991
+UniRef50_UPI000363AEE6: 2,3-butanediol dehydrogenase	0.3657771449
+UniRef50_UPI000363AEE6: 2,3-butanediol dehydrogenase|unclassified	0.3657771449
+UniRef50_UPI00046C4A93: hypothetical protein	0.3657529869
+UniRef50_UPI00046C4A93: hypothetical protein|unclassified	0.3657529869
+UniRef50_UPI00047B77C6: membrane protein	0.3657414204
+UniRef50_UPI00047B77C6: membrane protein|unclassified	0.3657414204
+UniRef50_K8E361	0.3657393366
+UniRef50_K8E361|unclassified	0.3657393366
+UniRef50_A4X046	0.3657335359
+UniRef50_A4X046|unclassified	0.3657335359
+UniRef50_G5LQT4	0.3657321888
+UniRef50_G5LQT4|unclassified	0.3657321888
+UniRef50_UPI000419623B: hypothetical protein	0.3657189761
+UniRef50_UPI000419623B: hypothetical protein|unclassified	0.3657189761
+UniRef50_Q8UC46: Porphobilinogen deaminase	0.3656833381
+UniRef50_Q8UC46: Porphobilinogen deaminase|unclassified	0.3656833381
+UniRef50_UPI0003B7A728: sulfate ABC transporter permease, partial	0.3656569708
+UniRef50_UPI0003B7A728: sulfate ABC transporter permease, partial|unclassified	0.3656569708
+UniRef50_D3QAH6	0.3656309678
+UniRef50_D3QAH6|unclassified	0.3656309678
+UniRef50_UPI00047A6AFF: hypothetical protein	0.3655979261
+UniRef50_UPI00047A6AFF: hypothetical protein|unclassified	0.3655979261
+UniRef50_UPI00047AAA07: beta-lactamase	0.3655894002
+UniRef50_UPI00047AAA07: beta-lactamase|unclassified	0.3655894002
+UniRef50_I6A5P1: ABC transporter, permease protein	0.3655662006
+UniRef50_I6A5P1: ABC transporter, permease protein|unclassified	0.3655662006
+UniRef50_D3VAJ4: Complete genome segment 14/17	0.3655658358
+UniRef50_D3VAJ4: Complete genome segment 14/17|unclassified	0.3655658358
+UniRef50_UPI00047CA582: hypothetical protein, partial	0.3655567211
+UniRef50_UPI00047CA582: hypothetical protein, partial|unclassified	0.3655567211
+UniRef50_R4MJG0	0.3654832188
+UniRef50_R4MJG0|unclassified	0.3654832188
+UniRef50_UPI0003AE4F02: PREDICTED: basic proline-rich protein-like	0.3654762511
+UniRef50_UPI0003AE4F02: PREDICTED: basic proline-rich protein-like|unclassified	0.3654762511
+UniRef50_U6BPZ3: Beta-lactamase (Fragment)	0.3654417091
+UniRef50_U6BPZ3: Beta-lactamase (Fragment)|unclassified	0.3654417091
+UniRef50_Q9UKU7: Isobutyryl-CoA dehydrogenase, mitochondrial	0.3654332446
+UniRef50_Q9UKU7: Isobutyryl-CoA dehydrogenase, mitochondrial|unclassified	0.3654332446
+UniRef50_H3VB03	0.3654253020
+UniRef50_H3VB03|unclassified	0.3654253020
+UniRef50_A0A009F5H5: Putative iSSpo9, transposase	0.3653803117
+UniRef50_A0A009F5H5: Putative iSSpo9, transposase|unclassified	0.3653803117
+UniRef50_A5BHT8	0.3653693664
+UniRef50_A5BHT8|unclassified	0.3653693664
+UniRef50_UPI0004752730: glycine cleavage system protein H	0.3652956366
+UniRef50_UPI0004752730: glycine cleavage system protein H|unclassified	0.3652956366
+UniRef50_Q92441: Protein MET17	0.3652803235
+UniRef50_Q92441: Protein MET17|unclassified	0.3652803235
+UniRef50_Q9S259	0.3652464424
+UniRef50_Q9S259|unclassified	0.3652464424
+UniRef50_UPI00035DE679: hypothetical protein	0.3652254513
+UniRef50_UPI00035DE679: hypothetical protein|unclassified	0.3652254513
+UniRef50_Q98NA6: NAD kinase	0.3651810950
+UniRef50_Q98NA6: NAD kinase|unclassified	0.3651810950
+UniRef50_A0A023VLH0: ABC transporter permease	0.3651665793
+UniRef50_A0A023VLH0: ABC transporter permease|unclassified	0.3651665793
+UniRef50_UPI00025582F7: aldehyde dehydrogenase	0.3651287424
+UniRef50_UPI00025582F7: aldehyde dehydrogenase|unclassified	0.3651287424
+UniRef50_UPI0003B33F01: LexA family transcriptional regulator	0.3651228729
+UniRef50_UPI0003B33F01: LexA family transcriptional regulator|unclassified	0.3651228729
+UniRef50_UPI0002376939: DeoR family transcriptional regulator, partial	0.3650948691
+UniRef50_UPI0002376939: DeoR family transcriptional regulator, partial|unclassified	0.3650948691
+UniRef50_UPI0003B41D6A: hypothetical protein, partial	0.3650941402
+UniRef50_UPI0003B41D6A: hypothetical protein, partial|unclassified	0.3650941402
+UniRef50_A0A023XVD1: Transcriptional regulatory	0.3650773738
+UniRef50_A0A023XVD1: Transcriptional regulatory|unclassified	0.3650773738
+UniRef50_Q94C74: Serine hydroxymethyltransferase 2, mitochondrial	0.3650754122
+UniRef50_Q94C74: Serine hydroxymethyltransferase 2, mitochondrial|unclassified	0.3650754122
+UniRef50_E3EXJ3	0.3650514844
+UniRef50_E3EXJ3|unclassified	0.3650514844
+UniRef50_V1LYN4	0.3648658646
+UniRef50_V1LYN4|unclassified	0.3648658646
+UniRef50_A3M4V3: Transketolase	0.3648588129
+UniRef50_A3M4V3: Transketolase|unclassified	0.3648588129
+UniRef50_G2TDB8	0.3648484771
+UniRef50_G2TDB8|unclassified	0.3648484771
+UniRef50_A0A058YZY1	0.3648303539
+UniRef50_A0A058YZY1|unclassified	0.3648303539
+UniRef50_UPI00036F0381: hypothetical protein	0.3647973907
+UniRef50_UPI00036F0381: hypothetical protein|unclassified	0.3647973907
+UniRef50_UPI0003D25F22	0.3647898272
+UniRef50_UPI0003D25F22|unclassified	0.3647898272
+UniRef50_F0XVZ5: Expressed protein (Fragment)	0.3647626625
+UniRef50_F0XVZ5: Expressed protein (Fragment)|unclassified	0.3647626625
+UniRef50_UPI000376148D: hypothetical protein	0.3647606586
+UniRef50_UPI000376148D: hypothetical protein|unclassified	0.3647606586
+UniRef50_W1YJQ5: Flavin mononucleotide phosphatase YigB (Fragment)	0.3647422200
+UniRef50_W1YJQ5: Flavin mononucleotide phosphatase YigB (Fragment)|unclassified	0.3647422200
+UniRef50_UPI0003781C48: hypothetical protein	0.3647203267
+UniRef50_UPI0003781C48: hypothetical protein|unclassified	0.3647203267
+UniRef50_A3X6J0	0.3646729352
+UniRef50_A3X6J0|unclassified	0.3646729352
+UniRef50_UPI00044143AA: acyl-CoA N-acyltransferase, partial	0.3646343159
+UniRef50_UPI00044143AA: acyl-CoA N-acyltransferase, partial|unclassified	0.3646343159
+UniRef50_UPI00036593BA: hypothetical protein	0.3646206916
+UniRef50_UPI00036593BA: hypothetical protein|unclassified	0.3646206916
+UniRef50_C5API2	0.3646201432
+UniRef50_C5API2|unclassified	0.3646201432
+UniRef50_Q818P0: Octanoyltransferase LipM	0.3645791608
+UniRef50_Q818P0: Octanoyltransferase LipM|unclassified	0.3645791608
+UniRef50_H5ECD5	0.3645777571
+UniRef50_H5ECD5|unclassified	0.3645777571
+UniRef50_UPI00016AE1F0: amino acid ABC transporter, permease/ATP-binding protein, His/Glu/Gln/Arg/opine family, partial	0.3645769735
+UniRef50_UPI00016AE1F0: amino acid ABC transporter, permease/ATP-binding protein, His/Glu/Gln/Arg/opine family, partial|unclassified	0.3645769735
+UniRef50_I2F9Q0: Cobalt-zinc-cadmium resistance protein CzcA	0.3645643456
+UniRef50_I2F9Q0: Cobalt-zinc-cadmium resistance protein CzcA|g__Helicobacter.s__Helicobacter_pylori	0.3645643456
+UniRef50_U6B395	0.3645383553
+UniRef50_U6B395|unclassified	0.3645383553
+UniRef50_D7F1J9	0.3645062642
+UniRef50_D7F1J9|unclassified	0.3645062642
+UniRef50_UPI00047E98E9: hypothetical protein	0.3645021843
+UniRef50_UPI00047E98E9: hypothetical protein|unclassified	0.3645021843
+UniRef50_T1BKX0: ATP-dependent chaperone ClpB	0.3644925536
+UniRef50_T1BKX0: ATP-dependent chaperone ClpB|unclassified	0.3644925536
+UniRef50_Q2CHG7: Parallel beta-helix repeat protein	0.3644853221
+UniRef50_Q2CHG7: Parallel beta-helix repeat protein|unclassified	0.3644853221
+UniRef50_D6SGA5: Replication initiator protein A domain protein	0.3644610244
+UniRef50_D6SGA5: Replication initiator protein A domain protein|unclassified	0.3644610244
+UniRef50_UPI00035A0CC1: PREDICTED: 28S ribosomal protein S11, mitochondrial-like	0.3644578110
+UniRef50_UPI00035A0CC1: PREDICTED: 28S ribosomal protein S11, mitochondrial-like|unclassified	0.3644578110
+UniRef50_UPI0003AA26FD: Cro/Cl family transcriptional regulator	0.3644142667
+UniRef50_UPI0003AA26FD: Cro/Cl family transcriptional regulator|unclassified	0.3644142667
+UniRef50_UPI00039F7275: chemotaxis protein CheY	0.3643655744
+UniRef50_UPI00039F7275: chemotaxis protein CheY|unclassified	0.3643655744
+UniRef50_UPI0002E38D93: hypothetical protein	0.3643544264
+UniRef50_UPI0002E38D93: hypothetical protein|unclassified	0.3643544264
+UniRef50_UPI00047EDDB1: hypothetical protein	0.3642820894
+UniRef50_UPI00047EDDB1: hypothetical protein|unclassified	0.3642820894
+UniRef50_UPI0003777DFE: 50S ribosomal protein L17	0.3642768944
+UniRef50_UPI0003777DFE: 50S ribosomal protein L17|unclassified	0.3642768944
+UniRef50_H7FGV7	0.3642633211
+UniRef50_H7FGV7|unclassified	0.3642633211
+UniRef50_UPI0003A20CA9: hypothetical protein	0.3642329694
+UniRef50_UPI0003A20CA9: hypothetical protein|unclassified	0.3642329694
+UniRef50_R4YJ52: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.3642036591
+UniRef50_R4YJ52: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|unclassified	0.3642036591
+UniRef50_W0ABU5	0.3641856111
+UniRef50_W0ABU5|unclassified	0.3641856111
+UniRef50_B9T8B0	0.3641712286
+UniRef50_B9T8B0|unclassified	0.3641712286
+UniRef50_A0A010CI18: NADH-Ubiquinone/plastoquinone (Complex I), various chains family protein	0.3641660597
+UniRef50_A0A010CI18: NADH-Ubiquinone/plastoquinone (Complex I), various chains family protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.3641660597
+UniRef50_B0RWV1	0.3641607797
+UniRef50_B0RWV1|unclassified	0.3641607797
+UniRef50_S2EW51	0.3641576981
+UniRef50_S2EW51|unclassified	0.3641576981
+UniRef50_T4D2X1: Putative membrane protein	0.3640993195
+UniRef50_T4D2X1: Putative membrane protein|unclassified	0.3640993195
+UniRef50_UPI00001677B0: ABC transporter permease	0.3640389690
+UniRef50_UPI00001677B0: ABC transporter permease|unclassified	0.3640389690
+UniRef50_A0A023YVZ5: Antigen 43	0.3640334911
+UniRef50_A0A023YVZ5: Antigen 43|g__Escherichia.s__Escherichia_coli	0.3640334911
+UniRef50_U6IEY8: Collagen alpha(Iv) chain	0.3639954417
+UniRef50_U6IEY8: Collagen alpha(Iv) chain|unclassified	0.3639954417
+UniRef50_UPI000476F810: alkylhydroperoxidase	0.3639938275
+UniRef50_UPI000476F810: alkylhydroperoxidase|unclassified	0.3639938275
+UniRef50_A3Q0W3	0.3639719526
+UniRef50_A3Q0W3|unclassified	0.3639719526
+UniRef50_V3E8X8	0.3638222796
+UniRef50_V3E8X8|unclassified	0.3638222796
+UniRef50_UPI0002B9508D: MFS transporter	0.3638035431
+UniRef50_UPI0002B9508D: MFS transporter|unclassified	0.3638035431
+UniRef50_X8AQV3: Putative magnesium chelatase	0.3637713130
+UniRef50_X8AQV3: Putative magnesium chelatase|unclassified	0.3637713130
+UniRef50_A0A024E8M0	0.3637326246
+UniRef50_A0A024E8M0|unclassified	0.3637326246
+UniRef50_H2HGS8: Phage-associated protein	0.3637298224
+UniRef50_H2HGS8: Phage-associated protein|unclassified	0.3637298224
+UniRef50_UPI0003ADB52E: PREDICTED: collagen alpha-2(I) chain-like	0.3637260286
+UniRef50_UPI0003ADB52E: PREDICTED: collagen alpha-2(I) chain-like|unclassified	0.3637260286
+UniRef50_G9EQ58	0.3637121684
+UniRef50_G9EQ58|unclassified	0.3637121684
+UniRef50_X2M4F7	0.3636308630
+UniRef50_X2M4F7|unclassified	0.3636308630
+UniRef50_UPI000363D12D: hypothetical protein, partial	0.3636259414
+UniRef50_UPI000363D12D: hypothetical protein, partial|unclassified	0.3636259414
+UniRef50_A0A013VR00	0.3635762813
+UniRef50_A0A013VR00|unclassified	0.3635762813
+UniRef50_Q90W70: Putative transcriptional coactivator ALY (Fragment)	0.3635505991
+UniRef50_Q90W70: Putative transcriptional coactivator ALY (Fragment)|unclassified	0.3635505991
+UniRef50_UPI00046874E6: hypothetical protein	0.3635205835
+UniRef50_UPI00046874E6: hypothetical protein|unclassified	0.3635205835
+UniRef50_E0YC80: ORF19	0.3635041803
+UniRef50_E0YC80: ORF19|unclassified	0.3635041803
+UniRef50_Q1H0Q5: Formylmethanofuran--tetrahydromethanopterin formyltransferase	0.3634640429
+UniRef50_Q1H0Q5: Formylmethanofuran--tetrahydromethanopterin formyltransferase|unclassified	0.3634640429
+UniRef50_UPI0003B51420: ABC transporter ATP-binding protein	0.3634284157
+UniRef50_UPI0003B51420: ABC transporter ATP-binding protein|unclassified	0.3634284157
+UniRef50_A0A024J2V4	0.3634157259
+UniRef50_A0A024J2V4|unclassified	0.3634157259
+UniRef50_UPI000374E007: hypothetical protein	0.3634025959
+UniRef50_UPI000374E007: hypothetical protein|unclassified	0.3634025959
+UniRef50_Q8KZ32: Lip3/bchO family protein	0.3633899265
+UniRef50_Q8KZ32: Lip3/bchO family protein|unclassified	0.3633899265
+UniRef50_UPI0003B66C6C: thioredoxin	0.3633878434
+UniRef50_UPI0003B66C6C: thioredoxin|unclassified	0.3633878434
+UniRef50_UPI0004287E1F: phosphoserine phosphatase	0.3633856860
+UniRef50_UPI0004287E1F: phosphoserine phosphatase|unclassified	0.3633856860
+UniRef50_A0A010ZU52	0.3633721117
+UniRef50_A0A010ZU52|unclassified	0.3633721117
+UniRef50_UPI00035D2E95: hypothetical protein	0.3633488228
+UniRef50_UPI00035D2E95: hypothetical protein|unclassified	0.3633488228
+UniRef50_A7ZV50	0.3633475967
+UniRef50_A7ZV50|unclassified	0.3633475967
+UniRef50_UPI00046FC011: cysteine desulfurase	0.3633205874
+UniRef50_UPI00046FC011: cysteine desulfurase|unclassified	0.3633205874
+UniRef50_S3FNF7: Nitrite extrusion 1 domain protein	0.3632985623
+UniRef50_S3FNF7: Nitrite extrusion 1 domain protein|unclassified	0.3632985623
+UniRef50_UPI00046348AB: hypothetical protein	0.3632023620
+UniRef50_UPI00046348AB: hypothetical protein|unclassified	0.3632023620
+UniRef50_UPI00040AAD72: hypothetical protein	0.3631971970
+UniRef50_UPI00040AAD72: hypothetical protein|unclassified	0.3631971970
+UniRef50_I4Z1X0: Hydrogenase/urease accessory protein	0.3631442889
+UniRef50_I4Z1X0: Hydrogenase/urease accessory protein|unclassified	0.3631442889
+UniRef50_UPI000412790F: hypothetical protein	0.3631388765
+UniRef50_UPI000412790F: hypothetical protein|unclassified	0.3631388765
+UniRef50_K7E1C1	0.3631341632
+UniRef50_K7E1C1|unclassified	0.3631341632
+UniRef50_UPI00036B897A: dihydrofolate reductase, partial	0.3630426186
+UniRef50_UPI00036B897A: dihydrofolate reductase, partial|unclassified	0.3630426186
+UniRef50_W1IF12: Chromosome I, genome	0.3630150571
+UniRef50_W1IF12: Chromosome I, genome|unclassified	0.3630150571
+UniRef50_UPI0003723B10: hypothetical protein	0.3629859224
+UniRef50_UPI0003723B10: hypothetical protein|unclassified	0.3629859224
+UniRef50_Q28Q27: NIPSNAP	0.3629823868
+UniRef50_Q28Q27: NIPSNAP|unclassified	0.3629823868
+UniRef50_U4V3N9	0.3629778998
+UniRef50_U4V3N9|unclassified	0.3629778998
+UniRef50_UPI0002E655C1: hypothetical protein	0.3629775484
+UniRef50_UPI0002E655C1: hypothetical protein|unclassified	0.3629775484
+UniRef50_E2S9L1: Tetratricopeptide repeat protein	0.3629636533
+UniRef50_E2S9L1: Tetratricopeptide repeat protein|unclassified	0.3629636533
+UniRef50_S5XXF2	0.3629420883
+UniRef50_S5XXF2|unclassified	0.3629420883
+UniRef50_UPI0003B4C286: oxidoreductase	0.3629382227
+UniRef50_UPI0003B4C286: oxidoreductase|unclassified	0.3629382227
+UniRef50_Q11BD7: Endoribonuclease YbeY	0.3629331353
+UniRef50_Q11BD7: Endoribonuclease YbeY|unclassified	0.3629331353
+UniRef50_X5PW37	0.3628901134
+UniRef50_X5PW37|unclassified	0.3628901134
+UniRef50_F9JWB9: Tandem lipoprotein	0.3628752167
+UniRef50_F9JWB9: Tandem lipoprotein|unclassified	0.3628752167
+UniRef50_UPI0003EAE12A: PREDICTED: zinc finger protein 687-like	0.3628680178
+UniRef50_UPI0003EAE12A: PREDICTED: zinc finger protein 687-like|unclassified	0.3628680178
+UniRef50_X0RT66: Marine sediment metagenome DNA, contig: S01H1_C00108 (Fragment)	0.3628417137
+UniRef50_X0RT66: Marine sediment metagenome DNA, contig: S01H1_C00108 (Fragment)|unclassified	0.3628417137
+UniRef50_C0Y5K0: Tight adherence protein TadA (Fragment)	0.3628335281
+UniRef50_C0Y5K0: Tight adherence protein TadA (Fragment)|unclassified	0.3628335281
+UniRef50_UPI0003EB2DB1: hypothetical protein, partial	0.3628292184
+UniRef50_UPI0003EB2DB1: hypothetical protein, partial|unclassified	0.3628292184
+UniRef50_A3UFL0: GAF sensor diguanylate cyclase	0.3627702197
+UniRef50_A3UFL0: GAF sensor diguanylate cyclase|unclassified	0.3627702197
+UniRef50_UPI000361E275: hypothetical protein	0.3627657542
+UniRef50_UPI000361E275: hypothetical protein|unclassified	0.3627657542
+UniRef50_UPI0003ABA90F	0.3627319084
+UniRef50_UPI0003ABA90F|unclassified	0.3627319084
+UniRef50_UPI0001BF66C5: hypothetical protein SMAC_10768	0.3627192380
+UniRef50_UPI0001BF66C5: hypothetical protein SMAC_10768|unclassified	0.3627192380
+UniRef50_K0C423: MaoC-like dehydratase	0.3626720138
+UniRef50_K0C423: MaoC-like dehydratase|unclassified	0.3626720138
+UniRef50_Q6B945: 3-oxoacyl-[acyl-carrier-protein] synthase 3	0.3626681036
+UniRef50_Q6B945: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	0.3626681036
+UniRef50_F8B2T8	0.3626317132
+UniRef50_F8B2T8|unclassified	0.3626317132
+UniRef50_G6A195	0.3626245743
+UniRef50_G6A195|unclassified	0.3626245743
+UniRef50_D0GPW6: PTS system IIBC component	0.3625865581
+UniRef50_D0GPW6: PTS system IIBC component|unclassified	0.3625865581
+UniRef50_I7ELI9: Transglycosylase-like protein	0.3625570259
+UniRef50_I7ELI9: Transglycosylase-like protein|unclassified	0.3625570259
+UniRef50_UPI00028914A2: putative dehydrogenase, partial	0.3625174011
+UniRef50_UPI00028914A2: putative dehydrogenase, partial|unclassified	0.3625174011
+UniRef50_UPI00039BA111: glutaredoxin	0.3625042822
+UniRef50_UPI00039BA111: glutaredoxin|unclassified	0.3625042822
+UniRef50_M3XB91	0.3624795153
+UniRef50_M3XB91|unclassified	0.3624795153
+UniRef50_A0A024L3C4	0.3624494068
+UniRef50_A0A024L3C4|unclassified	0.3624494068
+UniRef50_X2MKB4	0.3624348351
+UniRef50_X2MKB4|unclassified	0.3624348351
+UniRef50_W5X4Y8: Dienelactone hydrolase	0.3623559264
+UniRef50_W5X4Y8: Dienelactone hydrolase|unclassified	0.3623559264
+UniRef50_UPI00047B0DC9: hypothetical protein	0.3623264197
+UniRef50_UPI00047B0DC9: hypothetical protein|unclassified	0.3623264197
+UniRef50_W5WWM7	0.3623201848
+UniRef50_W5WWM7|unclassified	0.3623201848
+UniRef50_Q7R770	0.3623188406
+UniRef50_Q7R770|unclassified	0.3623188406
+UniRef50_M6ZD49: Winged helix-turn helix	0.3622811409
+UniRef50_M6ZD49: Winged helix-turn helix|unclassified	0.3622811409
+UniRef50_UPI00036E4560: hypothetical protein, partial	0.3622571797
+UniRef50_UPI00036E4560: hypothetical protein, partial|unclassified	0.3622571797
+UniRef50_Q9AGS1: Xanthine phosphoribosyltransferase	0.3621944103
+UniRef50_Q9AGS1: Xanthine phosphoribosyltransferase|unclassified	0.3621944103
+UniRef50_F3FX89: Phosphonate metabolism protein PhnM (Fragment)	0.3621834309
+UniRef50_F3FX89: Phosphonate metabolism protein PhnM (Fragment)|unclassified	0.3621834309
+UniRef50_Q21CR1	0.3621727137
+UniRef50_Q21CR1|unclassified	0.3621727137
+UniRef50_N1ZX55: Lactococcin 972 family bacteriocin	0.3621595828
+UniRef50_N1ZX55: Lactococcin 972 family bacteriocin|unclassified	0.3621595828
+UniRef50_R5SLG6: L-ribulose-5-phosphate 4-epimerase	0.3620907470
+UniRef50_R5SLG6: L-ribulose-5-phosphate 4-epimerase|unclassified	0.3620907470
+UniRef50_C6WVP9: DoxX family protein	0.3620779453
+UniRef50_C6WVP9: DoxX family protein|unclassified	0.3620779453
+UniRef50_UPI00037CA261: hypothetical protein, partial	0.3620713804
+UniRef50_UPI00037CA261: hypothetical protein, partial|unclassified	0.3620713804
+UniRef50_UPI000454A2DB: PREDICTED: ERI1 exoribonuclease 3-like, partial	0.3620692482
+UniRef50_UPI000454A2DB: PREDICTED: ERI1 exoribonuclease 3-like, partial|unclassified	0.3620692482
+UniRef50_F4QY01: NifU-like protein	0.3620493477
+UniRef50_F4QY01: NifU-like protein|unclassified	0.3620493477
+UniRef50_UPI000369743C: anhydrase	0.3620261887
+UniRef50_UPI000369743C: anhydrase|unclassified	0.3620261887
+UniRef50_W8QZ43: Capsular biosynthesis protein	0.3620219306
+UniRef50_W8QZ43: Capsular biosynthesis protein|unclassified	0.3620219306
+UniRef50_UPI00035F961E: hypothetical protein	0.3619801723
+UniRef50_UPI00035F961E: hypothetical protein|unclassified	0.3619801723
+UniRef50_C0QLA8: Phosphoribosyl-AMP cyclohydrolase	0.3619448675
+UniRef50_C0QLA8: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.3619448675
+UniRef50_UPI0003C175AF	0.3619445419
+UniRef50_UPI0003C175AF|unclassified	0.3619445419
+UniRef50_UPI0003640C72: hypothetical protein	0.3619351130
+UniRef50_UPI0003640C72: hypothetical protein|unclassified	0.3619351130
+UniRef50_U8SC58	0.3619337563
+UniRef50_U8SC58|unclassified	0.3619337563
+UniRef50_UPI000455FC5D: hypothetical protein CONPUDRAFT_153484	0.3619254434
+UniRef50_UPI000455FC5D: hypothetical protein CONPUDRAFT_153484|unclassified	0.3619254434
+UniRef50_UPI000393FFF7	0.3619157838
+UniRef50_UPI000393FFF7|unclassified	0.3619157838
+UniRef50_A6W3T8: Ribosomal RNA small subunit methyltransferase G	0.3619037572
+UniRef50_A6W3T8: Ribosomal RNA small subunit methyltransferase G|unclassified	0.3619037572
+UniRef50_B8JEF4	0.3618893967
+UniRef50_B8JEF4|unclassified	0.3618893967
+UniRef50_B8F777: D-ribose pyranase	0.3618888393
+UniRef50_B8F777: D-ribose pyranase|unclassified	0.3618888393
+UniRef50_UPI000471ED7E: ABC transporter ATP-binding protein	0.3618775634
+UniRef50_UPI000471ED7E: ABC transporter ATP-binding protein|unclassified	0.3618775634
+UniRef50_X6JA50	0.3618562788
+UniRef50_X6JA50|unclassified	0.3618562788
+UniRef50_A0A022MEV3	0.3618326336
+UniRef50_A0A022MEV3|unclassified	0.3618326336
+UniRef50_W4VJA0: PTS system	0.3618040029
+UniRef50_W4VJA0: PTS system|unclassified	0.3618040029
+UniRef50_I2QLC8	0.3617113246
+UniRef50_I2QLC8|unclassified	0.3617113246
+UniRef50_UPI000465978A: hypothetical protein	0.3617048768
+UniRef50_UPI000465978A: hypothetical protein|unclassified	0.3617048768
+UniRef50_X1QDV7: Marine sediment metagenome DNA, contig: S06H3_S20127 (Fragment)	0.3616646476
+UniRef50_X1QDV7: Marine sediment metagenome DNA, contig: S06H3_S20127 (Fragment)|unclassified	0.3616646476
+UniRef50_UPI0003A7B3C3: glycosyl hydrolase family 5	0.3616514644
+UniRef50_UPI0003A7B3C3: glycosyl hydrolase family 5|unclassified	0.3616514644
+UniRef50_UPI0002D335F6: hypothetical protein	0.3616509896
+UniRef50_UPI0002D335F6: hypothetical protein|unclassified	0.3616509896
+UniRef50_UPI0003726300: hypothetical protein	0.3616483358
+UniRef50_UPI0003726300: hypothetical protein|unclassified	0.3616483358
+UniRef50_W1MMZ8	0.3615947139
+UniRef50_W1MMZ8|unclassified	0.3615947139
+UniRef50_M9R927	0.3615901872
+UniRef50_M9R927|unclassified	0.3615901872
+UniRef50_X6KVA9	0.3615725567
+UniRef50_X6KVA9|unclassified	0.3615725567
+UniRef50_UPI0004560989: hypothetical protein PFL1_01444	0.3615478556
+UniRef50_UPI0004560989: hypothetical protein PFL1_01444|unclassified	0.3615478556
+UniRef50_C6ZBM7	0.3615332955
+UniRef50_C6ZBM7|unclassified	0.3615332955
+UniRef50_UPI0003D0B013: PREDICTED: serine/arginine repetitive matrix protein 2-like	0.3615329186
+UniRef50_UPI0003D0B013: PREDICTED: serine/arginine repetitive matrix protein 2-like|unclassified	0.3615329186
+UniRef50_UPI00023753A7: FAD dependent oxidoreductase, partial	0.3615303373
+UniRef50_UPI00023753A7: FAD dependent oxidoreductase, partial|unclassified	0.3615303373
+UniRef50_UPI000367016F: hypothetical protein	0.3615214456
+UniRef50_UPI000367016F: hypothetical protein|unclassified	0.3615214456
+UniRef50_A0P4I0: BolA-like protein	0.3615060572
+UniRef50_A0P4I0: BolA-like protein|unclassified	0.3615060572
+UniRef50_UPI0000E48FF4: PREDICTED: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase 1-like	0.3614820985
+UniRef50_UPI0000E48FF4: PREDICTED: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase 1-like|unclassified	0.3614820985
+UniRef50_M3J5E8	0.3614776949
+UniRef50_M3J5E8|unclassified	0.3614776949
+UniRef50_F3GHC1: Putative monovalent cation/H+ antiporter subunit A (Fragment)	0.3614436606
+UniRef50_F3GHC1: Putative monovalent cation/H+ antiporter subunit A (Fragment)|unclassified	0.3614436606
+UniRef50_Q8A0U0: GTP cyclohydrolase 1	0.3614376340
+UniRef50_Q8A0U0: GTP cyclohydrolase 1|unclassified	0.3614376340
+UniRef50_H9JZZ5	0.3614279196
+UniRef50_H9JZZ5|unclassified	0.3614279196
+UniRef50_UPI00047EA9AC: hypothetical protein	0.3613635531
+UniRef50_UPI00047EA9AC: hypothetical protein|unclassified	0.3613635531
+UniRef50_UPI000328B359: PREDICTED: transcription initiation factor TFIID subunit 4-like	0.3613236158
+UniRef50_UPI000328B359: PREDICTED: transcription initiation factor TFIID subunit 4-like|unclassified	0.3613236158
+UniRef50_H9UWH8	0.3613143484
+UniRef50_H9UWH8|unclassified	0.3613143484
+UniRef50_U3QJA1	0.3613047544
+UniRef50_U3QJA1|unclassified	0.3613047544
+UniRef50_X8FC30	0.3612716763
+UniRef50_X8FC30|unclassified	0.3612716763
+UniRef50_UPI000368C3B5: hypothetical protein	0.3612704361
+UniRef50_UPI000368C3B5: hypothetical protein|unclassified	0.3612704361
+UniRef50_I9JNX9: Porin thermoregulatory protein EnvY	0.3612669683
+UniRef50_I9JNX9: Porin thermoregulatory protein EnvY|unclassified	0.3612669683
+UniRef50_A0A017HAS6	0.3612315616
+UniRef50_A0A017HAS6|unclassified	0.3612315616
+UniRef50_G2G7Q2	0.3612292300
+UniRef50_G2G7Q2|unclassified	0.3612292300
+UniRef50_Y8ZIG5: Serine-aspartate repeat family protein, SdrH	0.3611902471
+UniRef50_Y8ZIG5: Serine-aspartate repeat family protein, SdrH|unclassified	0.3611902471
+UniRef50_UPI000375576C: hypothetical protein	0.3611250846
+UniRef50_UPI000375576C: hypothetical protein|unclassified	0.3611250846
+UniRef50_UPI00047E966E: cobinamide kinase	0.3611229369
+UniRef50_UPI00047E966E: cobinamide kinase|unclassified	0.3611229369
+UniRef50_UPI0003755263: exodeoxyribonuclease III	0.3611061066
+UniRef50_UPI0003755263: exodeoxyribonuclease III|unclassified	0.3611061066
+UniRef50_C3SHA7: Inner membrane protein yjch	0.3610917155
+UniRef50_C3SHA7: Inner membrane protein yjch|unclassified	0.3610917155
+UniRef50_N6UFE0	0.3610189932
+UniRef50_N6UFE0|unclassified	0.3610189932
+UniRef50_UPI000471E9C0: hypothetical protein	0.3610166132
+UniRef50_UPI000471E9C0: hypothetical protein|unclassified	0.3610166132
+UniRef50_UPI00041463EF: hypothetical protein	0.3610042095
+UniRef50_UPI00041463EF: hypothetical protein|unclassified	0.3610042095
+UniRef50_X1YAY8	0.3609752014
+UniRef50_X1YAY8|unclassified	0.3609752014
+UniRef50_UPI00036B2916: hypothetical protein, partial	0.3608901285
+UniRef50_UPI00036B2916: hypothetical protein, partial|unclassified	0.3608901285
+UniRef50_G0A3P8: UPF0260 protein ycgN	0.3608727705
+UniRef50_G0A3P8: UPF0260 protein ycgN|unclassified	0.3608727705
+UniRef50_R7JG87: 6-pyruvoyl tetrahydropterin synthase/QueD family protein	0.3608655904
+UniRef50_R7JG87: 6-pyruvoyl tetrahydropterin synthase/QueD family protein|unclassified	0.3608655904
+UniRef50_Q6LNZ9	0.3608546774
+UniRef50_Q6LNZ9|unclassified	0.3608546774
+UniRef50_B1M9M6	0.3608289221
+UniRef50_B1M9M6|unclassified	0.3608289221
+UniRef50_UPI0003B66B13: hypothetical protein	0.3608170063
+UniRef50_UPI0003B66B13: hypothetical protein|unclassified	0.3608170063
+UniRef50_UPI000287C383: tRNA 2-selenouridine synthase	0.3607816939
+UniRef50_UPI000287C383: tRNA 2-selenouridine synthase|unclassified	0.3607816939
+UniRef50_UPI000262CE3F: diheme cytochrome C	0.3607753378
+UniRef50_UPI000262CE3F: diheme cytochrome C|unclassified	0.3607753378
+UniRef50_UPI000479E648: hypothetical protein	0.3607732906
+UniRef50_UPI000479E648: hypothetical protein|unclassified	0.3607732906
+UniRef50_E6MC93: YycH protein	0.3607683462
+UniRef50_E6MC93: YycH protein|unclassified	0.3607683462
+UniRef50_UPI0003798DA3: hypothetical protein, partial	0.3607615822
+UniRef50_UPI0003798DA3: hypothetical protein, partial|unclassified	0.3607615822
+UniRef50_H5YKA6: ABC-type metal ion transport system, periplasmic component/surface antigen	0.3607397707
+UniRef50_H5YKA6: ABC-type metal ion transport system, periplasmic component/surface antigen|unclassified	0.3607397707
+UniRef50_Q8RWV0: Transketolase-1, chloroplastic	0.3607318383
+UniRef50_Q8RWV0: Transketolase-1, chloroplastic|unclassified	0.3607318383
+UniRef50_W1FML2: Type IV fimbrial assembly protein PilC	0.3607294308
+UniRef50_W1FML2: Type IV fimbrial assembly protein PilC|unclassified	0.3607294308
+UniRef50_UPI0003F0706F: PREDICTED: neural Wiskott-Aldrich syndrome protein-like	0.3607033723
+UniRef50_UPI0003F0706F: PREDICTED: neural Wiskott-Aldrich syndrome protein-like|unclassified	0.3607033723
+UniRef50_UPI00016A9AD4: hypothetical protein	0.3606980924
+UniRef50_UPI00016A9AD4: hypothetical protein|unclassified	0.3606980924
+UniRef50_G5REZ9: Oligopeptide transport system permease protein oppB	0.3606690431
+UniRef50_G5REZ9: Oligopeptide transport system permease protein oppB|unclassified	0.3606690431
+UniRef50_UPI00036A7B0F: hypothetical protein	0.3606633440
+UniRef50_UPI00036A7B0F: hypothetical protein|unclassified	0.3606633440
+UniRef50_G8AXY7: Putative LigA	0.3606464516
+UniRef50_G8AXY7: Putative LigA|unclassified	0.3606464516
+UniRef50_M4VVN7	0.3606242801
+UniRef50_M4VVN7|unclassified	0.3606242801
+UniRef50_UPI0003DE7FD8: PREDICTED: selenocysteine methyltransferase-like isoform X3	0.3606094880
+UniRef50_UPI0003DE7FD8: PREDICTED: selenocysteine methyltransferase-like isoform X3|unclassified	0.3606094880
+UniRef50_F3ZKM3	0.3605866986
+UniRef50_F3ZKM3|unclassified	0.3605866986
+UniRef50_A0A035ZUD7	0.3605709331
+UniRef50_A0A035ZUD7|unclassified	0.3605709331
+UniRef50_UPI00046FD731: hypothetical protein	0.3605289931
+UniRef50_UPI00046FD731: hypothetical protein|unclassified	0.3605289931
+UniRef50_A0A059LC69	0.3605134327
+UniRef50_A0A059LC69|unclassified	0.3605134327
+UniRef50_M4X471	0.3604887796
+UniRef50_M4X471|unclassified	0.3604887796
+UniRef50_F5XZ83	0.3604499728
+UniRef50_F5XZ83|unclassified	0.3604499728
+UniRef50_UPI00036C1506: hypothetical protein	0.3604048296
+UniRef50_UPI00036C1506: hypothetical protein|unclassified	0.3604048296
+UniRef50_D9UMJ7: Secreted protein	0.3603994648
+UniRef50_D9UMJ7: Secreted protein|unclassified	0.3603994648
+UniRef50_F2N3U1	0.3603982396
+UniRef50_F2N3U1|unclassified	0.3603982396
+UniRef50_Q323W1	0.3603750255
+UniRef50_Q323W1|unclassified	0.3603750255
+UniRef50_UPI0002BA6AE8: hypothetical protein	0.3602545794
+UniRef50_UPI0002BA6AE8: hypothetical protein|unclassified	0.3602545794
+UniRef50_G7U5I2: Tricorn protease	0.3602305476
+UniRef50_G7U5I2: Tricorn protease|g__Propionibacterium.s__Propionibacterium_acnes	0.3602305476
+UniRef50_UPI000262CE3E: diheme cytochrome c	0.3602267568
+UniRef50_UPI000262CE3E: diheme cytochrome c|unclassified	0.3602267568
+UniRef50_E3XKB5: Anaerobic nitric oxide reductase transcription regulator norR domain protein	0.3602178906
+UniRef50_E3XKB5: Anaerobic nitric oxide reductase transcription regulator norR domain protein|unclassified	0.3602178906
+UniRef50_D4HFD7	0.3602146182
+UniRef50_D4HFD7|unclassified	0.3602146182
+UniRef50_UPI00032893EC	0.3601943224
+UniRef50_UPI00032893EC|unclassified	0.3601943224
+UniRef50_UPI00046FF281: hypothetical protein	0.3601896795
+UniRef50_UPI00046FF281: hypothetical protein|unclassified	0.3601896795
+UniRef50_T3WBX0: Putative carbamoyl phosphate synthase large subunit	0.3601827734
+UniRef50_T3WBX0: Putative carbamoyl phosphate synthase large subunit|unclassified	0.3601827734
+UniRef50_E1ZS79: Expressed protein	0.3601656762
+UniRef50_E1ZS79: Expressed protein|unclassified	0.3601656762
+UniRef50_B5JYB3: Lipoprotein (Fragment)	0.3601552957
+UniRef50_B5JYB3: Lipoprotein (Fragment)|unclassified	0.3601552957
+UniRef50_UPI000463F674: LysR family transcriptional regulator	0.3601452200
+UniRef50_UPI000463F674: LysR family transcriptional regulator|unclassified	0.3601452200
+UniRef50_UPI0003B521C3: cytochrome C biogenesis protein	0.3601090779
+UniRef50_UPI0003B521C3: cytochrome C biogenesis protein|unclassified	0.3601090779
+UniRef50_B6JLQ7: Type II R-M system protein	0.3601008282
+UniRef50_B6JLQ7: Type II R-M system protein|g__Helicobacter.s__Helicobacter_pylori	0.3601008282
+UniRef50_UPI00041E26FE: 50S ribosomal protein L25	0.3600184179
+UniRef50_UPI00041E26FE: 50S ribosomal protein L25|unclassified	0.3600184179
+UniRef50_UPI00047016CF: hypothetical protein, partial	0.3599999445
+UniRef50_UPI00047016CF: hypothetical protein, partial|unclassified	0.3599999445
+UniRef50_A4WZ24	0.3599527072
+UniRef50_A4WZ24|unclassified	0.3599527072
+UniRef50_M2ZN21	0.3598416697
+UniRef50_M2ZN21|unclassified	0.3598416697
+UniRef50_UPI0003801C5B: hypothetical protein	0.3598240978
+UniRef50_UPI0003801C5B: hypothetical protein|unclassified	0.3598240978
+UniRef50_UPI0003715518: MULTISPECIES: hypothetical protein	0.3597705167
+UniRef50_UPI0003715518: MULTISPECIES: hypothetical protein|unclassified	0.3597705167
+UniRef50_Q72IE1: Ribonuclease H	0.3597523389
+UniRef50_Q72IE1: Ribonuclease H|unclassified	0.3597523389
+UniRef50_D7B9V8: Tripartite ATP-independent periplasmic transporter DctQ component	0.3596665519
+UniRef50_D7B9V8: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.3596665519
+UniRef50_UPI000440E822: PREDICTED: pistil-specific extensin-like protein-like	0.3596605464
+UniRef50_UPI000440E822: PREDICTED: pistil-specific extensin-like protein-like|unclassified	0.3596605464
+UniRef50_K1TC59: Branched-chain amino acid ABC superfamily ATP binding cassette transporter, ABC protein	0.3595844414
+UniRef50_K1TC59: Branched-chain amino acid ABC superfamily ATP binding cassette transporter, ABC protein|unclassified	0.3595844414
+UniRef50_K6ULT9	0.3594962207
+UniRef50_K6ULT9|unclassified	0.3594962207
+UniRef50_K1DTV4: Beta-lactamase domain-containing protein	0.3594950721
+UniRef50_K1DTV4: Beta-lactamase domain-containing protein|unclassified	0.3594950721
+UniRef50_K6VNK5: Putative ABC transporter substrate-binding protein	0.3594373803
+UniRef50_K6VNK5: Putative ABC transporter substrate-binding protein|unclassified	0.3594373803
+UniRef50_F0RQS6	0.3594273462
+UniRef50_F0RQS6|unclassified	0.3594273462
+UniRef50_L1LMU7	0.3594008231
+UniRef50_L1LMU7|unclassified	0.3594008231
+UniRef50_UPI0003AD23FF: hypothetical protein	0.3593806266
+UniRef50_UPI0003AD23FF: hypothetical protein|unclassified	0.3593806266
+UniRef50_X6KYL5: ATPase	0.3593383601
+UniRef50_X6KYL5: ATPase|unclassified	0.3593383601
+UniRef50_UPI0004653318: hypothetical protein, partial	0.3593307605
+UniRef50_UPI0004653318: hypothetical protein, partial|unclassified	0.3593307605
+UniRef50_UPI0001A449DC: exonuclease V subunit gamma	0.3592930273
+UniRef50_UPI0001A449DC: exonuclease V subunit gamma|unclassified	0.3592930273
+UniRef50_UPI0004774B62: hypothetical protein, partial	0.3591988685
+UniRef50_UPI0004774B62: hypothetical protein, partial|unclassified	0.3591988685
+UniRef50_UPI00045605C7: hypothetical protein PFL1_01037	0.3591954023
+UniRef50_UPI00045605C7: hypothetical protein PFL1_01037|unclassified	0.3591954023
+UniRef50_UPI0002E32544: hypothetical protein	0.3590628616
+UniRef50_UPI0002E32544: hypothetical protein|unclassified	0.3590628616
+UniRef50_UPI000467BA9A: glycogen debranching protein	0.3590318752
+UniRef50_UPI000467BA9A: glycogen debranching protein|unclassified	0.3590318752
+UniRef50_H8FS13	0.3589549264
+UniRef50_H8FS13|unclassified	0.3589549264
+UniRef50_U4VD87	0.3589501308
+UniRef50_U4VD87|unclassified	0.3589501308
+UniRef50_A0A011PDX8: Nitrogenase molybdenum-iron protein beta chain	0.3588863833
+UniRef50_A0A011PDX8: Nitrogenase molybdenum-iron protein beta chain|unclassified	0.3588863833
+UniRef50_T8KWL4	0.3588120831
+UniRef50_T8KWL4|unclassified	0.3588120831
+UniRef50_UPI000372E28D: gamma-aminobutyrate transporter, partial	0.3587395150
+UniRef50_UPI000372E28D: gamma-aminobutyrate transporter, partial|unclassified	0.3587395150
+UniRef50_F7JDF2	0.3587339197
+UniRef50_F7JDF2|unclassified	0.3587339197
+UniRef50_UPI0002F7BEAC: hypothetical protein	0.3587172665
+UniRef50_UPI0002F7BEAC: hypothetical protein|unclassified	0.3587172665
+UniRef50_UPI0004632B63: polyamine ABC transporter permease	0.3586995828
+UniRef50_UPI0004632B63: polyamine ABC transporter permease|unclassified	0.3586995828
+UniRef50_UPI0004285813: LysR family transcriptional regulator	0.3586923487
+UniRef50_UPI0004285813: LysR family transcriptional regulator|unclassified	0.3586923487
+UniRef50_W1X7I2: Anaerobic ribonucleoside-triphosphate reductase-activating protein (Fragment)	0.3586902027
+UniRef50_W1X7I2: Anaerobic ribonucleoside-triphosphate reductase-activating protein (Fragment)|unclassified	0.3586902027
+UniRef50_W1DQX0: tRNA (5-methoxyuridine) 34 synthase	0.3586811768
+UniRef50_W1DQX0: tRNA (5-methoxyuridine) 34 synthase|unclassified	0.3586811768
+UniRef50_A1WUU5: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.3586397118
+UniRef50_A1WUU5: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.3586397118
+UniRef50_G8REC3	0.3586393192
+UniRef50_G8REC3|unclassified	0.3586393192
+UniRef50_Q9DC70: NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial	0.3586252744
+UniRef50_Q9DC70: NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial|unclassified	0.3586252744
+UniRef50_R4W2Y9	0.3586057113
+UniRef50_R4W2Y9|unclassified	0.3586057113
+UniRef50_U4VKY7	0.3586049403
+UniRef50_U4VKY7|unclassified	0.3586049403
+UniRef50_Q81G11: 3-isopropylmalate dehydrogenase	0.3585834841
+UniRef50_Q81G11: 3-isopropylmalate dehydrogenase|unclassified	0.3585834841
+UniRef50_A7FJR7: Acylphosphatase	0.3585674780
+UniRef50_A7FJR7: Acylphosphatase|unclassified	0.3585674780
+UniRef50_Q6ZCR5	0.3585415095
+UniRef50_Q6ZCR5|unclassified	0.3585415095
+UniRef50_E3J3G3	0.3585146296
+UniRef50_E3J3G3|unclassified	0.3585146296
+UniRef50_Q3JRQ4	0.3584618458
+UniRef50_Q3JRQ4|unclassified	0.3584618458
+UniRef50_UPI000469C24B: branched-chain amino acid ABC transporter substrate-binding protein	0.3584529148
+UniRef50_UPI000469C24B: branched-chain amino acid ABC transporter substrate-binding protein|unclassified	0.3584529148
+UniRef50_H0ATK0	0.3584481261
+UniRef50_H0ATK0|unclassified	0.3584481261
+UniRef50_UPI00033433D0: PREDICTED: collagen alpha-1(I) chain-like	0.3584475732
+UniRef50_UPI00033433D0: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.3584475732
+UniRef50_I8BLT8: Inner membrane protein yjjP (Fragment)	0.3584407806
+UniRef50_I8BLT8: Inner membrane protein yjjP (Fragment)|unclassified	0.3584407806
+UniRef50_UPI000471D662: hypothetical protein, partial	0.3583936816
+UniRef50_UPI000471D662: hypothetical protein, partial|unclassified	0.3583936816
+UniRef50_Q7UR11: Ferripyochelin-binding protein	0.3583890453
+UniRef50_Q7UR11: Ferripyochelin-binding protein|unclassified	0.3583890453
+UniRef50_UPI00036FD6C9: hypothetical protein	0.3582597576
+UniRef50_UPI00036FD6C9: hypothetical protein|unclassified	0.3582597576
+UniRef50_UPI0003817F52: hypothetical protein	0.3582592734
+UniRef50_UPI0003817F52: hypothetical protein|unclassified	0.3582592734
+UniRef50_UPI000360AEA9: hypothetical protein	0.3581604273
+UniRef50_UPI000360AEA9: hypothetical protein|unclassified	0.3581604273
+UniRef50_B1M0V4	0.3581409588
+UniRef50_B1M0V4|unclassified	0.3581409588
+UniRef50_UPI0003762BB0: primosome assembly protein PriA	0.3581220835
+UniRef50_UPI0003762BB0: primosome assembly protein PriA|unclassified	0.3581220835
+UniRef50_F3H9A1: Regulatory protein, LysR:LysR, substrate-binding protein	0.3581098269
+UniRef50_F3H9A1: Regulatory protein, LysR:LysR, substrate-binding protein|unclassified	0.3581098269
+UniRef50_UPI0003595012: PREDICTED: glycine cleavage system H protein, mitochondrial-like	0.3580633721
+UniRef50_UPI0003595012: PREDICTED: glycine cleavage system H protein, mitochondrial-like|unclassified	0.3580633721
+UniRef50_UPI00036E83A5: hypothetical protein	0.3580379520
+UniRef50_UPI00036E83A5: hypothetical protein|unclassified	0.3580379520
+UniRef50_UPI000470C654: hypothetical protein	0.3580334436
+UniRef50_UPI000470C654: hypothetical protein|unclassified	0.3580334436
+UniRef50_UPI00016C3B3C: autotransporter-associated beta strand repeat protein, partial	0.3580162201
+UniRef50_UPI00016C3B3C: autotransporter-associated beta strand repeat protein, partial|unclassified	0.3580162201
+UniRef50_I3FED1	0.3580148104
+UniRef50_I3FED1|unclassified	0.3580148104
+UniRef50_UPI0003654CEC: hypothetical protein	0.3579647667
+UniRef50_UPI0003654CEC: hypothetical protein|unclassified	0.3579647667
+UniRef50_Q9HJL5: Malate dehydrogenase	0.3579253708
+UniRef50_Q9HJL5: Malate dehydrogenase|unclassified	0.3579253708
+UniRef50_UPI00035F8EE0: hypothetical protein	0.3579226099
+UniRef50_UPI00035F8EE0: hypothetical protein|unclassified	0.3579226099
+UniRef50_UPI00036BDAA2: hypothetical protein, partial	0.3578449871
+UniRef50_UPI00036BDAA2: hypothetical protein, partial|unclassified	0.3578449871
+UniRef50_UPI00037BA24E: hypothetical protein	0.3577967416
+UniRef50_UPI00037BA24E: hypothetical protein|unclassified	0.3577967416
+UniRef50_Q12MN3: Putative phosphoenolpyruvate synthase regulatory protein	0.3577918339
+UniRef50_Q12MN3: Putative phosphoenolpyruvate synthase regulatory protein|unclassified	0.3577918339
+UniRef50_W7VUU1	0.3577641307
+UniRef50_W7VUU1|unclassified	0.3577641307
+UniRef50_E0TB89	0.3577568093
+UniRef50_E0TB89|unclassified	0.3577568093
+UniRef50_UPI0003607BC8: hypothetical protein	0.3576875762
+UniRef50_UPI0003607BC8: hypothetical protein|unclassified	0.3576875762
+UniRef50_F2G7F0: Membrane protein	0.3576848029
+UniRef50_F2G7F0: Membrane protein|unclassified	0.3576848029
+UniRef50_W8S633	0.3576245347
+UniRef50_W8S633|unclassified	0.3576245347
+UniRef50_V6JL90	0.3576154157
+UniRef50_V6JL90|unclassified	0.3576154157
+UniRef50_E6VB98	0.3575563767
+UniRef50_E6VB98|unclassified	0.3575563767
+UniRef50_F3FHR1	0.3575399753
+UniRef50_F3FHR1|unclassified	0.3575399753
+UniRef50_H2P2P2	0.3575318812
+UniRef50_H2P2P2|unclassified	0.3575318812
+UniRef50_C1N9W8: Predicted protein	0.3575285627
+UniRef50_C1N9W8: Predicted protein|unclassified	0.3575285627
+UniRef50_A2VU96	0.3575030488
+UniRef50_A2VU96|unclassified	0.3575030488
+UniRef50_A9U864: Predicted protein (Fragment)	0.3574836608
+UniRef50_A9U864: Predicted protein (Fragment)|unclassified	0.3574836608
+UniRef50_UPI0003724D90: hypothetical protein, partial	0.3574646806
+UniRef50_UPI0003724D90: hypothetical protein, partial|unclassified	0.3574646806
+UniRef50_UPI00035C99A4: hypothetical protein	0.3574261167
+UniRef50_UPI00035C99A4: hypothetical protein|unclassified	0.3574261167
+UniRef50_UPI00016A8267: 200 kDa antigen p200, putative	0.3574211086
+UniRef50_UPI00016A8267: 200 kDa antigen p200, putative|unclassified	0.3574211086
+UniRef50_S7LVK0	0.3574136304
+UniRef50_S7LVK0|unclassified	0.3574136304
+UniRef50_C1DHH3	0.3574099630
+UniRef50_C1DHH3|unclassified	0.3574099630
+UniRef50_Q6MIP7: Phosphonates import ATP-binding protein PhnC	0.3573776910
+UniRef50_Q6MIP7: Phosphonates import ATP-binding protein PhnC|unclassified	0.3573776910
+UniRef50_F2CYI7: Predicted protein	0.3573745130
+UniRef50_F2CYI7: Predicted protein|unclassified	0.3573745130
+UniRef50_J8FAH4	0.3573292770
+UniRef50_J8FAH4|unclassified	0.3573292770
+UniRef50_B9G6P5	0.3573101295
+UniRef50_B9G6P5|unclassified	0.3573101295
+UniRef50_UPI0003A61C77: hypothetical protein	0.3572839909
+UniRef50_UPI0003A61C77: hypothetical protein|unclassified	0.3572839909
+UniRef50_D5AUT8: Phage terminase, small subunit	0.3572543893
+UniRef50_D5AUT8: Phage terminase, small subunit|unclassified	0.3572543893
+UniRef50_UPI00036109FB: hypothetical protein	0.3572521962
+UniRef50_UPI00036109FB: hypothetical protein|unclassified	0.3572521962
+UniRef50_Q5JCY6: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.3572501194
+UniRef50_Q5JCY6: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.3572501194
+UniRef50_M6I3A9: LemA domain protein	0.3572118238
+UniRef50_M6I3A9: LemA domain protein|unclassified	0.3572118238
+UniRef50_K1ZE29	0.3572074724
+UniRef50_K1ZE29|unclassified	0.3572074724
+UniRef50_UPI0001E8929C: N-acetyltransferase	0.3571253699
+UniRef50_UPI0001E8929C: N-acetyltransferase|unclassified	0.3571253699
+UniRef50_S9SN34	0.3571232654
+UniRef50_S9SN34|unclassified	0.3571232654
+UniRef50_Q165I1	0.3571168107
+UniRef50_Q165I1|unclassified	0.3571168107
+UniRef50_J7L680	0.3571153209
+UniRef50_J7L680|unclassified	0.3571153209
+UniRef50_UPI0003786492: hypothetical protein	0.3570915802
+UniRef50_UPI0003786492: hypothetical protein|unclassified	0.3570915802
+UniRef50_UPI000225FA9C: ABC transporter related protein, partial	0.3570913853
+UniRef50_UPI000225FA9C: ABC transporter related protein, partial|unclassified	0.3570913853
+UniRef50_V6VY03	0.3570693756
+UniRef50_V6VY03|unclassified	0.3570693756
+UniRef50_UPI0003B677CD: streptomycin 3''''''''-kinase	0.3570635773
+UniRef50_UPI0003B677CD: streptomycin 3''''''''-kinase|unclassified	0.3570635773
+UniRef50_H5UZW1: Glutathione-regulated potassium-efflux system protein KefC (Fragmetnt)	0.3570461241
+UniRef50_H5UZW1: Glutathione-regulated potassium-efflux system protein KefC (Fragmetnt)|unclassified	0.3570461241
+UniRef50_UPI000365FCDF: hypothetical protein	0.3570353964
+UniRef50_UPI000365FCDF: hypothetical protein|unclassified	0.3570353964
+UniRef50_V0ESN6	0.3570237546
+UniRef50_V0ESN6|unclassified	0.3570237546
+UniRef50_Q6K298	0.3570083942
+UniRef50_Q6K298|unclassified	0.3570083942
+UniRef50_UPI000262C99A: sugar kinase	0.3569970344
+UniRef50_UPI000262C99A: sugar kinase|unclassified	0.3569970344
+UniRef50_R0DRQ8	0.3569913927
+UniRef50_R0DRQ8|unclassified	0.3569913927
+UniRef50_UPI000289594B: phosphoglycerate kinase	0.3569763114
+UniRef50_UPI000289594B: phosphoglycerate kinase|unclassified	0.3569763114
+UniRef50_UPI000381A848: hypothetical protein	0.3569570804
+UniRef50_UPI000381A848: hypothetical protein|unclassified	0.3569570804
+UniRef50_Q891I6: Xanthine phosphoribosyltransferase	0.3569216806
+UniRef50_Q891I6: Xanthine phosphoribosyltransferase|unclassified	0.3569216806
+UniRef50_UPI0004692C4A: alpha-glucosidase	0.3568595773
+UniRef50_UPI0004692C4A: alpha-glucosidase|unclassified	0.3568595773
+UniRef50_UPI00047312A4: delta-aminolevulinic acid dehydratase, partial	0.3568566434
+UniRef50_UPI00047312A4: delta-aminolevulinic acid dehydratase, partial|unclassified	0.3568566434
+UniRef50_UPI0004635DEB: UDP-diphosphatase	0.3568294200
+UniRef50_UPI0004635DEB: UDP-diphosphatase|unclassified	0.3568294200
+UniRef50_P42436: Assimilatory nitrite reductase [NAD(P)H] small subunit	0.3568061506
+UniRef50_P42436: Assimilatory nitrite reductase [NAD(P)H] small subunit|unclassified	0.3568061506
+UniRef50_UPI000362ECDB: hypothetical protein	0.3567006767
+UniRef50_UPI000362ECDB: hypothetical protein|unclassified	0.3567006767
+UniRef50_Q65RE8: 7-cyano-7-deazaguanine synthase	0.3566681732
+UniRef50_Q65RE8: 7-cyano-7-deazaguanine synthase|unclassified	0.3566681732
+UniRef50_W7CT60: XRE family transcriptional regulator	0.3566460176
+UniRef50_W7CT60: XRE family transcriptional regulator|unclassified	0.3566460176
+UniRef50_B6JNR5: Isoleucine--tRNA ligase	0.3566333809
+UniRef50_B6JNR5: Isoleucine--tRNA ligase|g__Helicobacter.s__Helicobacter_pylori	0.3566333809
+UniRef50_H7NRS0: FAD binding domain protein	0.3566226713
+UniRef50_H7NRS0: FAD binding domain protein|unclassified	0.3566226713
+UniRef50_K2ADU6: Peptidase M23 (Fragment)	0.3565951669
+UniRef50_K2ADU6: Peptidase M23 (Fragment)|unclassified	0.3565951669
+UniRef50_E6V803	0.3565841897
+UniRef50_E6V803|unclassified	0.3565841897
+UniRef50_H1S1G1: Inner-membrane translocator	0.3565105093
+UniRef50_H1S1G1: Inner-membrane translocator|unclassified	0.3565105093
+UniRef50_J9YZ38: Tripartite ATP-independent periplasmic transporter, DctQ family	0.3564841592
+UniRef50_J9YZ38: Tripartite ATP-independent periplasmic transporter, DctQ family|unclassified	0.3564841592
+UniRef50_UPI00037F3F51: hypothetical protein	0.3564196488
+UniRef50_UPI00037F3F51: hypothetical protein|unclassified	0.3564196488
+UniRef50_K3WL19	0.3563727420
+UniRef50_K3WL19|unclassified	0.3563727420
+UniRef50_UPI000468BF3A: ABC transporter permease	0.3562857444
+UniRef50_UPI000468BF3A: ABC transporter permease|unclassified	0.3562857444
+UniRef50_W4YD04	0.3562670298
+UniRef50_W4YD04|unclassified	0.3562670298
+UniRef50_L3G729: Phage antigen 43 (Ag43) phase-variable biofilm formation autotransporter	0.3562522266
+UniRef50_L3G729: Phage antigen 43 (Ag43) phase-variable biofilm formation autotransporter|g__Escherichia.s__Escherichia_coli	0.3562522266
+UniRef50_A1B046	0.3562342918
+UniRef50_A1B046|unclassified	0.3562342918
+UniRef50_Q7R6Z1	0.3562327258
+UniRef50_Q7R6Z1|unclassified	0.3562327258
+UniRef50_P45416: 2-dehydro-3-deoxygluconokinase	0.3561989030
+UniRef50_P45416: 2-dehydro-3-deoxygluconokinase|unclassified	0.3561989030
+UniRef50_I8QM64	0.3561938336
+UniRef50_I8QM64|unclassified	0.3561938336
+UniRef50_S8V6L7	0.3561934307
+UniRef50_S8V6L7|unclassified	0.3561934307
+UniRef50_J3LNJ2	0.3561278664
+UniRef50_J3LNJ2|unclassified	0.3561278664
+UniRef50_G0JNN6: Integral membrane protein MviN	0.3561227460
+UniRef50_G0JNN6: Integral membrane protein MviN|unclassified	0.3561227460
+UniRef50_UPI00036F9E0F: hypothetical protein	0.3561081166
+UniRef50_UPI00036F9E0F: hypothetical protein|unclassified	0.3561081166
+UniRef50_B3PFH5: UPF0235 protein CJA_0091	0.3560894008
+UniRef50_B3PFH5: UPF0235 protein CJA_0091|unclassified	0.3560894008
+UniRef50_UPI0003B66D36: hypothetical protein, partial	0.3560891395
+UniRef50_UPI0003B66D36: hypothetical protein, partial|unclassified	0.3560891395
+UniRef50_F7IVM9	0.3560872031
+UniRef50_F7IVM9|unclassified	0.3560872031
+UniRef50_UPI0003677E35: hypothetical protein	0.3560598223
+UniRef50_UPI0003677E35: hypothetical protein|unclassified	0.3560598223
+UniRef50_UPI0003B35819: flagellar biosynthesis protein FliQ	0.3560073093
+UniRef50_UPI0003B35819: flagellar biosynthesis protein FliQ|unclassified	0.3560073093
+UniRef50_Q8BR24	0.3560051824
+UniRef50_Q8BR24|unclassified	0.3560051824
+UniRef50_K9Q0V6	0.3559968447
+UniRef50_K9Q0V6|unclassified	0.3559968447
+UniRef50_F6G307	0.3559938798
+UniRef50_F6G307|unclassified	0.3559938798
+UniRef50_E0MPK5: Phage protein	0.3559774583
+UniRef50_E0MPK5: Phage protein|unclassified	0.3559774583
+UniRef50_Q5FUK5	0.3559773961
+UniRef50_Q5FUK5|unclassified	0.3559773961
+UniRef50_A0A058Z1Q4	0.3559326462
+UniRef50_A0A058Z1Q4|unclassified	0.3559326462
+UniRef50_F1W4Q6	0.3558835561
+UniRef50_F1W4Q6|unclassified	0.3558835561
+UniRef50_Q48253: Vacuolating cytotoxin autotransporter	0.3558718861
+UniRef50_Q48253: Vacuolating cytotoxin autotransporter|g__Helicobacter.s__Helicobacter_pylori	0.3558718861
+UniRef50_UPI00047A4794: taurine transporter subunit, partial	0.3558566003
+UniRef50_UPI00047A4794: taurine transporter subunit, partial|unclassified	0.3558566003
+UniRef50_UPI00034BDB7C: MerR family transcriptional regulator	0.3558532210
+UniRef50_UPI00034BDB7C: MerR family transcriptional regulator|unclassified	0.3558532210
+UniRef50_W5YDQ8: WGR domain protein	0.3558510127
+UniRef50_W5YDQ8: WGR domain protein|unclassified	0.3558510127
+UniRef50_W1FSJ8: Methionine ABC transporter substrate-binding protein	0.3558088356
+UniRef50_W1FSJ8: Methionine ABC transporter substrate-binding protein|unclassified	0.3558088356
+UniRef50_K4HKQ9	0.3557271090
+UniRef50_K4HKQ9|unclassified	0.3557271090
+UniRef50_A0A020LY90	0.3557185967
+UniRef50_A0A020LY90|unclassified	0.3557185967
+UniRef50_Q7V8X7: 3-dehydroquinate dehydratase	0.3557085962
+UniRef50_Q7V8X7: 3-dehydroquinate dehydratase|unclassified	0.3557085962
+UniRef50_K9BMT1: Alkyl hydroperoxide reductase subunit F domain protein	0.3556925940
+UniRef50_K9BMT1: Alkyl hydroperoxide reductase subunit F domain protein|unclassified	0.3556925940
+UniRef50_K2JFW5	0.3556811272
+UniRef50_K2JFW5|unclassified	0.3556811272
+UniRef50_UPI00036B0BAB: hypothetical protein	0.3556741972
+UniRef50_UPI00036B0BAB: hypothetical protein|unclassified	0.3556741972
+UniRef50_A3URJ1	0.3556595525
+UniRef50_A3URJ1|unclassified	0.3556595525
+UniRef50_UPI0002627F17: acetolactate synthase	0.3556547918
+UniRef50_UPI0002627F17: acetolactate synthase|unclassified	0.3556547918
+UniRef50_B5HDY6: Secreted protein (Fragment)	0.3556502490
+UniRef50_B5HDY6: Secreted protein (Fragment)|unclassified	0.3556502490
+UniRef50_A8GDW2: Isopentenyl-diphosphate Delta-isomerase	0.3556365271
+UniRef50_A8GDW2: Isopentenyl-diphosphate Delta-isomerase|unclassified	0.3556365271
+UniRef50_D7A8K3: Tripartite ATP-independent periplasmic transporter DctQ component	0.3556272525
+UniRef50_D7A8K3: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.3556272525
+UniRef50_D5GA27: Whole genome shotgun sequence assembly, scaffold_176, strain Mel28	0.3556187767
+UniRef50_D5GA27: Whole genome shotgun sequence assembly, scaffold_176, strain Mel28|unclassified	0.3556187767
+UniRef50_B2SA42: NAD/NADP-dependent betaine aldehyde dehydrogenase	0.3555443330
+UniRef50_B2SA42: NAD/NADP-dependent betaine aldehyde dehydrogenase|unclassified	0.3555443330
+UniRef50_Q89AT7: NADH-quinone oxidoreductase subunit K	0.3555343894
+UniRef50_Q89AT7: NADH-quinone oxidoreductase subunit K|unclassified	0.3555343894
+UniRef50_UPI000467BF32: hypothetical protein	0.3554996404
+UniRef50_UPI000467BF32: hypothetical protein|unclassified	0.3554996404
+UniRef50_UPI000362D46E: hypothetical protein	0.3554942887
+UniRef50_UPI000362D46E: hypothetical protein|unclassified	0.3554942887
+UniRef50_UPI0003B31E9A: ribosome-binding factor A	0.3554546756
+UniRef50_UPI0003B31E9A: ribosome-binding factor A|unclassified	0.3554546756
+UniRef50_K2FKB3	0.3554432431
+UniRef50_K2FKB3|unclassified	0.3554432431
+UniRef50_Q9SRZ6: Cytosolic isocitrate dehydrogenase [NADP]	0.3554017315
+UniRef50_Q9SRZ6: Cytosolic isocitrate dehydrogenase [NADP]|unclassified	0.3554017315
+UniRef50_B2PXP8	0.3553914092
+UniRef50_B2PXP8|unclassified	0.3553914092
+UniRef50_UPI0002E4364A: hypothetical protein	0.3553909144
+UniRef50_UPI0002E4364A: hypothetical protein|unclassified	0.3553909144
+UniRef50_D1ABC4	0.3553483266
+UniRef50_D1ABC4|unclassified	0.3553483266
+UniRef50_D2P269	0.3553370711
+UniRef50_D2P269|unclassified	0.3553370711
+UniRef50_F9P0W3: Conserved domain protein	0.3552920205
+UniRef50_F9P0W3: Conserved domain protein|unclassified	0.3552920205
+UniRef50_UPI0003144775: hypothetical protein	0.3552915225
+UniRef50_UPI0003144775: hypothetical protein|unclassified	0.3552915225
+UniRef50_UPI00026276FC: hypothetical protein	0.3552614061
+UniRef50_UPI00026276FC: hypothetical protein|unclassified	0.3552614061
+UniRef50_B2VDK4: Acyl carrier protein	0.3552292070
+UniRef50_B2VDK4: Acyl carrier protein|unclassified	0.3552292070
+UniRef50_Q3JNQ9	0.3552228727
+UniRef50_Q3JNQ9|unclassified	0.3552228727
+UniRef50_G9QCP9: Impact family member yvye	0.3551918995
+UniRef50_G9QCP9: Impact family member yvye|unclassified	0.3551918995
+UniRef50_K0PYZ8	0.3551890885
+UniRef50_K0PYZ8|unclassified	0.3551890885
+UniRef50_Z9JW31	0.3551850691
+UniRef50_Z9JW31|unclassified	0.3551850691
+UniRef50_Q11GI0: Lytic transglycosylase, catalytic	0.3551392269
+UniRef50_Q11GI0: Lytic transglycosylase, catalytic|unclassified	0.3551392269
+UniRef50_UPI000303E0FF: hypothetical protein	0.3551257773
+UniRef50_UPI000303E0FF: hypothetical protein|unclassified	0.3551257773
+UniRef50_A0A011TDX3	0.3551007297
+UniRef50_A0A011TDX3|unclassified	0.3551007297
+UniRef50_UPI000372FC82: hypothetical protein	0.3550960617
+UniRef50_UPI000372FC82: hypothetical protein|unclassified	0.3550960617
+UniRef50_UPI00047BA501: hypothetical protein	0.3550841233
+UniRef50_UPI00047BA501: hypothetical protein|unclassified	0.3550841233
+UniRef50_N2SMU5	0.3550363979
+UniRef50_N2SMU5|unclassified	0.3550363979
+UniRef50_UPI00041B92EF: hypothetical protein	0.3550156999
+UniRef50_UPI00041B92EF: hypothetical protein|unclassified	0.3550156999
+UniRef50_UPI00047D602E: membrane protein	0.3548897522
+UniRef50_UPI00047D602E: membrane protein|unclassified	0.3548897522
+UniRef50_A4XYF0	0.3548870108
+UniRef50_A4XYF0|unclassified	0.3548870108
+UniRef50_A8TU87: Putative transposase	0.3548334830
+UniRef50_A8TU87: Putative transposase|unclassified	0.3548334830
+UniRef50_D9WP32: Putative secreted protein	0.3548035334
+UniRef50_D9WP32: Putative secreted protein|unclassified	0.3548035334
+UniRef50_UPI0003B79802: prephenate dehydratase	0.3547193787
+UniRef50_UPI0003B79802: prephenate dehydratase|unclassified	0.3547193787
+UniRef50_S1U9M8: Respiratory nitrate reductase 2 beta chain domain protein	0.3547053861
+UniRef50_S1U9M8: Respiratory nitrate reductase 2 beta chain domain protein|unclassified	0.3547053861
+UniRef50_UPI000464E6F7: ETC complex subunit I	0.3546973340
+UniRef50_UPI000464E6F7: ETC complex subunit I|unclassified	0.3546973340
+UniRef50_Q1I3E4	0.3546875701
+UniRef50_Q1I3E4|unclassified	0.3546875701
+UniRef50_A0A024E451	0.3546824048
+UniRef50_A0A024E451|unclassified	0.3546824048
+UniRef50_I1AZW8: Chromosomal replication initiator, DnaA	0.3546759100
+UniRef50_I1AZW8: Chromosomal replication initiator, DnaA|unclassified	0.3546759100
+UniRef50_B5ZUG3: NAD/NADP-dependent betaine aldehyde dehydrogenase	0.3546564709
+UniRef50_B5ZUG3: NAD/NADP-dependent betaine aldehyde dehydrogenase|unclassified	0.3546564709
+UniRef50_UPI0004715D35: hypothetical protein, partial	0.3546252068
+UniRef50_UPI0004715D35: hypothetical protein, partial|unclassified	0.3546252068
+UniRef50_UPI00037F4E3B: hypothetical protein, partial	0.3546189948
+UniRef50_UPI00037F4E3B: hypothetical protein, partial|unclassified	0.3546189948
+UniRef50_J9UBZ4	0.3545713003
+UniRef50_J9UBZ4|unclassified	0.3545713003
+UniRef50_E1TFH5	0.3545337614
+UniRef50_E1TFH5|unclassified	0.3545337614
+UniRef50_UPI00037AA24F: 30S ribosomal protein S19, partial	0.3544984264
+UniRef50_UPI00037AA24F: 30S ribosomal protein S19, partial|unclassified	0.3544984264
+UniRef50_UPI0004791DB8: hypothetical protein	0.3544890862
+UniRef50_UPI0004791DB8: hypothetical protein|unclassified	0.3544890862
+UniRef50_UPI00028838F0: transcriptional regulator	0.3544755993
+UniRef50_UPI00028838F0: transcriptional regulator|unclassified	0.3544755993
+UniRef50_X0ZZA4: Marine sediment metagenome DNA, contig: S01H1_S36366 (Fragment)	0.3544393439
+UniRef50_X0ZZA4: Marine sediment metagenome DNA, contig: S01H1_S36366 (Fragment)|unclassified	0.3544393439
+UniRef50_A0A033V0A9	0.3544367301
+UniRef50_A0A033V0A9|unclassified	0.3544367301
+UniRef50_UPI00037433BD: hypothetical protein	0.3544265331
+UniRef50_UPI00037433BD: hypothetical protein|unclassified	0.3544265331
+UniRef50_S5ERP1	0.3544211337
+UniRef50_S5ERP1|unclassified	0.3544211337
+UniRef50_G8N098	0.3543570847
+UniRef50_G8N098|unclassified	0.3543570847
+UniRef50_S4HZK7	0.3543288463
+UniRef50_S4HZK7|unclassified	0.3543288463
+UniRef50_UPI00029ABC7B: LysR family transcriptional regulator, partial	0.3543027761
+UniRef50_UPI00029ABC7B: LysR family transcriptional regulator, partial|unclassified	0.3543027761
+UniRef50_R6BD47	0.3542678255
+UniRef50_R6BD47|unclassified	0.3542678255
+UniRef50_Q98DM9: Ribosomal RNA small subunit methyltransferase I	0.3542385161
+UniRef50_Q98DM9: Ribosomal RNA small subunit methyltransferase I|unclassified	0.3542385161
+UniRef50_B9B2I5: Major facilitator superfamily MFS_1	0.3542350163
+UniRef50_B9B2I5: Major facilitator superfamily MFS_1|unclassified	0.3542350163
+UniRef50_C8S0A1	0.3541714149
+UniRef50_C8S0A1|unclassified	0.3541714149
+UniRef50_UPI000478FD85: peptidase M16	0.3541615651
+UniRef50_UPI000478FD85: peptidase M16|unclassified	0.3541615651
+UniRef50_G4QEL3	0.3541556682
+UniRef50_G4QEL3|unclassified	0.3541556682
+UniRef50_N6VGJ5: Thiamin phosphate synthase	0.3541440547
+UniRef50_N6VGJ5: Thiamin phosphate synthase|unclassified	0.3541440547
+UniRef50_UPI00037BF338: hypothetical protein	0.3541227798
+UniRef50_UPI00037BF338: hypothetical protein|unclassified	0.3541227798
+UniRef50_X0UVH5: Marine sediment metagenome DNA, contig: S01H1_S06628 (Fragment)	0.3540983272
+UniRef50_X0UVH5: Marine sediment metagenome DNA, contig: S01H1_S06628 (Fragment)|unclassified	0.3540983272
+UniRef50_A0A011NZV5: Acetyl-/propionyl-coenzyme A carboxylase alpha chain	0.3540678178
+UniRef50_A0A011NZV5: Acetyl-/propionyl-coenzyme A carboxylase alpha chain|unclassified	0.3540678178
+UniRef50_UPI00047161BF: thioredoxin	0.3540606553
+UniRef50_UPI00047161BF: thioredoxin|unclassified	0.3540606553
+UniRef50_C2S6Z5	0.3539813570
+UniRef50_C2S6Z5|unclassified	0.3539813570
+UniRef50_UPI0003C11580: PREDICTED: neutral amino acid transporter B(0)-like	0.3539700409
+UniRef50_UPI0003C11580: PREDICTED: neutral amino acid transporter B(0)-like|unclassified	0.3539700409
+UniRef50_UPI00036BD2FB: hypothetical protein	0.3539478861
+UniRef50_UPI00036BD2FB: hypothetical protein|unclassified	0.3539478861
+UniRef50_A0A026VBC0	0.3539441519
+UniRef50_A0A026VBC0|unclassified	0.3539441519
+UniRef50_B7LJH6	0.3539343430
+UniRef50_B7LJH6|unclassified	0.3539343430
+UniRef50_B1ZDM1	0.3538637120
+UniRef50_B1ZDM1|unclassified	0.3538637120
+UniRef50_A0A016R0C7: GAF domain protein	0.3538570418
+UniRef50_A0A016R0C7: GAF domain protein|unclassified	0.3538570418
+UniRef50_UPI0001B443F7: cobalamin biosynthesis protein CobJ	0.3537432007
+UniRef50_UPI0001B443F7: cobalamin biosynthesis protein CobJ|unclassified	0.3537432007
+UniRef50_UPI00047D7E20: amino acid ABC transporter substrate-binding protein	0.3537302670
+UniRef50_UPI00047D7E20: amino acid ABC transporter substrate-binding protein|unclassified	0.3537302670
+UniRef50_R4RB74	0.3537271318
+UniRef50_R4RB74|unclassified	0.3537271318
+UniRef50_U3TV91: Lytic transglycosylase catalytic	0.3537091004
+UniRef50_U3TV91: Lytic transglycosylase catalytic|unclassified	0.3537091004
+UniRef50_D0ZF36	0.3536628818
+UniRef50_D0ZF36|unclassified	0.3536628818
+UniRef50_UPI00046F8FAA: hypothetical protein, partial	0.3536432217
+UniRef50_UPI00046F8FAA: hypothetical protein, partial|unclassified	0.3536432217
+UniRef50_O31597: UPF0736 protein YjbA	0.3536398478
+UniRef50_O31597: UPF0736 protein YjbA|unclassified	0.3536398478
+UniRef50_A6MN71	0.3536341738
+UniRef50_A6MN71|unclassified	0.3536341738
+UniRef50_A0A031MCT4	0.3535402133
+UniRef50_A0A031MCT4|unclassified	0.3535402133
+UniRef50_W9D699	0.3535377529
+UniRef50_W9D699|unclassified	0.3535377529
+UniRef50_UPI00040DDCA1: hypothetical protein	0.3535300305
+UniRef50_UPI00040DDCA1: hypothetical protein|unclassified	0.3535300305
+UniRef50_B2IKP4: Anthranilate phosphoribosyltransferase	0.3535191986
+UniRef50_B2IKP4: Anthranilate phosphoribosyltransferase|unclassified	0.3535191986
+UniRef50_F0YIK7: Expressed protein (Fragment)	0.3534443007
+UniRef50_F0YIK7: Expressed protein (Fragment)|unclassified	0.3534443007
+UniRef50_UPI00035CBA1B: hypothetical protein	0.3534336646
+UniRef50_UPI00035CBA1B: hypothetical protein|unclassified	0.3534336646
+UniRef50_H4F795: Replication protein C	0.3534153900
+UniRef50_H4F795: Replication protein C|unclassified	0.3534153900
+UniRef50_UPI000367D0D4: hypothetical protein	0.3534010228
+UniRef50_UPI000367D0D4: hypothetical protein|unclassified	0.3534010228
+UniRef50_UPI000185102E: prephenate dehydrogenase	0.3533765857
+UniRef50_UPI000185102E: prephenate dehydrogenase|unclassified	0.3533765857
+UniRef50_E3Q1Q1: Chaperone DnaJ (Fragment)	0.3533620277
+UniRef50_E3Q1Q1: Chaperone DnaJ (Fragment)|unclassified	0.3533620277
+UniRef50_F7U847: Lytic murein transglycosylase	0.3533618444
+UniRef50_F7U847: Lytic murein transglycosylase|unclassified	0.3533618444
+UniRef50_K2JGI2	0.3533608527
+UniRef50_K2JGI2|unclassified	0.3533608527
+UniRef50_UPI000288E524: OsmC-like protein	0.3533588352
+UniRef50_UPI000288E524: OsmC-like protein|unclassified	0.3533588352
+UniRef50_UPI0004659468: hypothetical protein, partial	0.3533347023
+UniRef50_UPI0004659468: hypothetical protein, partial|unclassified	0.3533347023
+UniRef50_UPI0003F0E7F1: PREDICTED: 28S ribosomal protein S11, mitochondrial-like	0.3533040643
+UniRef50_UPI0003F0E7F1: PREDICTED: 28S ribosomal protein S11, mitochondrial-like|unclassified	0.3533040643
+UniRef50_UPI00036D0C48: hypothetical protein	0.3532618409
+UniRef50_UPI00036D0C48: hypothetical protein|unclassified	0.3532618409
+UniRef50_I4XTT2	0.3532572975
+UniRef50_I4XTT2|unclassified	0.3532572975
+UniRef50_W4QQI1	0.3532301177
+UniRef50_W4QQI1|unclassified	0.3532301177
+UniRef50_Q28UC9: ATP synthase F0 subunit I	0.3531813710
+UniRef50_Q28UC9: ATP synthase F0 subunit I|unclassified	0.3531813710
+UniRef50_U2Z2K4: Transport protein	0.3531685601
+UniRef50_U2Z2K4: Transport protein|unclassified	0.3531685601
+UniRef50_F3GDS0: Transcription-repair coupling factor (Fragment)	0.3531603387
+UniRef50_F3GDS0: Transcription-repair coupling factor (Fragment)|unclassified	0.3531603387
+UniRef50_C6SMN5	0.3531594396
+UniRef50_C6SMN5|unclassified	0.3531594396
+UniRef50_E7RJ72: DegV family protein	0.3531450958
+UniRef50_E7RJ72: DegV family protein|unclassified	0.3531450958
+UniRef50_X1ABS4: Marine sediment metagenome DNA, contig: S01H4_C04174 (Fragment)	0.3531124021
+UniRef50_X1ABS4: Marine sediment metagenome DNA, contig: S01H4_C04174 (Fragment)|unclassified	0.3531124021
+UniRef50_V4A4N8	0.3531073446
+UniRef50_V4A4N8|unclassified	0.3531073446
+UniRef50_K1SRL1: Adhesin-like protein (Fragment)	0.3530878555
+UniRef50_K1SRL1: Adhesin-like protein (Fragment)|unclassified	0.3530878555
+UniRef50_I6C2Q7: YnjB domain protein	0.3530421254
+UniRef50_I6C2Q7: YnjB domain protein|unclassified	0.3530421254
+UniRef50_UPI0001BF6B32: hypothetical protein SMAC_11609, partial	0.3530302300
+UniRef50_UPI0001BF6B32: hypothetical protein SMAC_11609, partial|unclassified	0.3530302300
+UniRef50_UPI000475F907: hypothetical protein	0.3529846305
+UniRef50_UPI000475F907: hypothetical protein|unclassified	0.3529846305
+UniRef50_E9BHL2	0.3529827038
+UniRef50_E9BHL2|unclassified	0.3529827038
+UniRef50_UPI00047375C6: XRE family transcriptional regulator, partial	0.3529211977
+UniRef50_UPI00047375C6: XRE family transcriptional regulator, partial|unclassified	0.3529211977
+UniRef50_V1MSQ7	0.3528978800
+UniRef50_V1MSQ7|unclassified	0.3528978800
+UniRef50_K2A153	0.3528948486
+UniRef50_K2A153|unclassified	0.3528948486
+UniRef50_A0A058Z9Z3	0.3528581510
+UniRef50_A0A058Z9Z3|unclassified	0.3528581510
+UniRef50_UPI0003B43B58: flagellar proximal rod protein FlgF	0.3528571154
+UniRef50_UPI0003B43B58: flagellar proximal rod protein FlgF|unclassified	0.3528571154
+UniRef50_D5EAX8: Redox-active disulfide protein 2	0.3528360696
+UniRef50_D5EAX8: Redox-active disulfide protein 2|unclassified	0.3528360696
+UniRef50_E4U2W7	0.3528159401
+UniRef50_E4U2W7|unclassified	0.3528159401
+UniRef50_V4R261	0.3526908511
+UniRef50_V4R261|unclassified	0.3526908511
+UniRef50_F9Y4S0	0.3526858424
+UniRef50_F9Y4S0|unclassified	0.3526858424
+UniRef50_Q6D6C4: Acylphosphatase	0.3526758796
+UniRef50_Q6D6C4: Acylphosphatase|unclassified	0.3526758796
+UniRef50_R7I9W9: Val start codon	0.3526654000
+UniRef50_R7I9W9: Val start codon|unclassified	0.3526654000
+UniRef50_B6XVC7	0.3526613843
+UniRef50_B6XVC7|unclassified	0.3526613843
+UniRef50_Q3J0K0: PAS/PAC sensor hybrid histidine kinase	0.3526093089
+UniRef50_Q3J0K0: PAS/PAC sensor hybrid histidine kinase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.3526093089
+UniRef50_Q2IMC8: 3-phosphoshikimate 1-carboxyvinyltransferase	0.3525729106
+UniRef50_Q2IMC8: 3-phosphoshikimate 1-carboxyvinyltransferase|unclassified	0.3525729106
+UniRef50_A9V7U1: Predicted protein	0.3525720844
+UniRef50_A9V7U1: Predicted protein|unclassified	0.3525720844
+UniRef50_Q975N6: Sirohydrochlorin cobaltochelatase	0.3525423448
+UniRef50_Q975N6: Sirohydrochlorin cobaltochelatase|unclassified	0.3525423448
+UniRef50_UPI0002B8DA0E: hypothetical protein	0.3525334369
+UniRef50_UPI0002B8DA0E: hypothetical protein|unclassified	0.3525334369
+UniRef50_UPI00037F4ED0: hypothetical protein, partial	0.3525198276
+UniRef50_UPI00037F4ED0: hypothetical protein, partial|unclassified	0.3525198276
+UniRef50_W1CWF6: Dipeptide transport system permease protein DppC (TC 3.A.1.5.2)	0.3524721974
+UniRef50_W1CWF6: Dipeptide transport system permease protein DppC (TC 3.A.1.5.2)|unclassified	0.3524721974
+UniRef50_UPI00035CE529: hypothetical protein	0.3524710349
+UniRef50_UPI00035CE529: hypothetical protein|unclassified	0.3524710349
+UniRef50_R1GRY5	0.3524598332
+UniRef50_R1GRY5|unclassified	0.3524598332
+UniRef50_B4NDA0: GK24947	0.3524258737
+UniRef50_B4NDA0: GK24947|unclassified	0.3524258737
+UniRef50_W1VBR3: Toxin-antitoxin system, antitoxin component, HicB family (Fragment)	0.3523131390
+UniRef50_W1VBR3: Toxin-antitoxin system, antitoxin component, HicB family (Fragment)|unclassified	0.3523131390
+UniRef50_UPI0002ED0DFA: hypothetical protein	0.3523029712
+UniRef50_UPI0002ED0DFA: hypothetical protein|unclassified	0.3523029712
+UniRef50_UPI000464E1A7: hypothetical protein	0.3522877617
+UniRef50_UPI000464E1A7: hypothetical protein|unclassified	0.3522877617
+UniRef50_UPI000472CD56: hypothetical protein	0.3522529349
+UniRef50_UPI000472CD56: hypothetical protein|unclassified	0.3522529349
+UniRef50_UPI0003F15654: PREDICTED: zinc finger protein 831	0.3522367031
+UniRef50_UPI0003F15654: PREDICTED: zinc finger protein 831|unclassified	0.3522367031
+UniRef50_A2YZC4	0.3521421019
+UniRef50_A2YZC4|unclassified	0.3521421019
+UniRef50_G4E2Z3: Dinitrogenase iron-molybdenum cofactor biosynthesis protein	0.3521013400
+UniRef50_G4E2Z3: Dinitrogenase iron-molybdenum cofactor biosynthesis protein|unclassified	0.3521013400
+UniRef50_UPI0003797423: hypothetical protein, partial	0.3520804907
+UniRef50_UPI0003797423: hypothetical protein, partial|unclassified	0.3520804907
+UniRef50_UPI0003A49BEA: 3-phosphoglycerate dehydrogenase	0.3520528663
+UniRef50_UPI0003A49BEA: 3-phosphoglycerate dehydrogenase|unclassified	0.3520528663
+UniRef50_X7FEK2	0.3520507958
+UniRef50_X7FEK2|unclassified	0.3520507958
+UniRef50_A8MQJ5: Hyaluronan / mRNA binding domain-containing protein	0.3520441653
+UniRef50_A8MQJ5: Hyaluronan / mRNA binding domain-containing protein|unclassified	0.3520441653
+UniRef50_K2FK46: Gamma-glutamyltranspeptidase protein (Fragment)	0.3520379165
+UniRef50_K2FK46: Gamma-glutamyltranspeptidase protein (Fragment)|unclassified	0.3520379165
+UniRef50_UPI00041F4974: hypothetical protein	0.3520146372
+UniRef50_UPI00041F4974: hypothetical protein|unclassified	0.3520146372
+UniRef50_UPI000381E035: hypothetical protein	0.3520016986
+UniRef50_UPI000381E035: hypothetical protein|unclassified	0.3520016986
+UniRef50_A0A012LZJ4	0.3519916202
+UniRef50_A0A012LZJ4|unclassified	0.3519916202
+UniRef50_G7L9I0: Acyl coa ligase acetate-coa synthetase-like protein	0.3519782131
+UniRef50_G7L9I0: Acyl coa ligase acetate-coa synthetase-like protein|unclassified	0.3519782131
+UniRef50_UPI00047D860A: hypothetical protein	0.3519028755
+UniRef50_UPI00047D860A: hypothetical protein|unclassified	0.3519028755
+UniRef50_UPI0003F89C7C: nuclease	0.3518955470
+UniRef50_UPI0003F89C7C: nuclease|unclassified	0.3518955470
+UniRef50_A3MGC4	0.3518895392
+UniRef50_A3MGC4|unclassified	0.3518895392
+UniRef50_Q1QL26: Putative Holliday junction resolvase	0.3518874565
+UniRef50_Q1QL26: Putative Holliday junction resolvase|unclassified	0.3518874565
+UniRef50_S4YCA7	0.3517908698
+UniRef50_S4YCA7|unclassified	0.3517908698
+UniRef50_UPI0004659D1D: magnesium transporter CorA	0.3517760486
+UniRef50_UPI0004659D1D: magnesium transporter CorA|unclassified	0.3517760486
+UniRef50_W0AI55	0.3517588908
+UniRef50_W0AI55|unclassified	0.3517588908
+UniRef50_UPI000472B8EE: hypothetical protein, partial	0.3517194438
+UniRef50_UPI000472B8EE: hypothetical protein, partial|unclassified	0.3517194438
+UniRef50_R5EM23: Electron transport complex protein RnfB	0.3516906035
+UniRef50_R5EM23: Electron transport complex protein RnfB|unclassified	0.3516906035
+UniRef50_B6AUU8: Invasion associated family protein	0.3516840956
+UniRef50_B6AUU8: Invasion associated family protein|unclassified	0.3516840956
+UniRef50_Q21JR5	0.3516833738
+UniRef50_Q21JR5|unclassified	0.3516833738
+UniRef50_J0H6S0	0.3516577266
+UniRef50_J0H6S0|unclassified	0.3516577266
+UniRef50_E0WIK7: CagY protein	0.3516200481
+UniRef50_E0WIK7: CagY protein|g__Helicobacter.s__Helicobacter_pylori	0.3516200481
+UniRef50_UPI00036BF214: hypothetical protein	0.3516029869
+UniRef50_UPI00036BF214: hypothetical protein|unclassified	0.3516029869
+UniRef50_UPI00037226A5: hypothetical protein	0.3515886113
+UniRef50_UPI00037226A5: hypothetical protein|unclassified	0.3515886113
+UniRef50_A0A031HMK2	0.3514876827
+UniRef50_A0A031HMK2|unclassified	0.3514876827
+UniRef50_G5MGT2	0.3514807508
+UniRef50_G5MGT2|unclassified	0.3514807508
+UniRef50_A8GBC5: Biotin synthase	0.3514437985
+UniRef50_A8GBC5: Biotin synthase|unclassified	0.3514437985
+UniRef50_P97532: 3-mercaptopyruvate sulfurtransferase	0.3514002684
+UniRef50_P97532: 3-mercaptopyruvate sulfurtransferase|unclassified	0.3514002684
+UniRef50_UPI00036FAE8B: nitrite reductase	0.3513914682
+UniRef50_UPI00036FAE8B: nitrite reductase|unclassified	0.3513914682
+UniRef50_UPI00029B1668: glucose transporter GlcU	0.3513791602
+UniRef50_UPI00029B1668: glucose transporter GlcU|unclassified	0.3513791602
+UniRef50_UPI00037382D8: ABC transporter permease	0.3513660213
+UniRef50_UPI00037382D8: ABC transporter permease|unclassified	0.3513660213
+UniRef50_K2AJV4	0.3513361159
+UniRef50_K2AJV4|unclassified	0.3513361159
+UniRef50_M5DWG5: UPF0235 protein TOL_3530	0.3513013905
+UniRef50_M5DWG5: UPF0235 protein TOL_3530|unclassified	0.3513013905
+UniRef50_X1ECY5: Marine sediment metagenome DNA, contig: S01H4_S19514	0.3512446796
+UniRef50_X1ECY5: Marine sediment metagenome DNA, contig: S01H4_S19514|unclassified	0.3512446796
+UniRef50_J2RCQ4: NAD/NADP transhydrogenase alpha subunit	0.3512291482
+UniRef50_J2RCQ4: NAD/NADP transhydrogenase alpha subunit|unclassified	0.3512291482
+UniRef50_C4J088	0.3511484043
+UniRef50_C4J088|unclassified	0.3511484043
+UniRef50_UPI00036E83CD: hypothetical protein, partial	0.3510835810
+UniRef50_UPI00036E83CD: hypothetical protein, partial|unclassified	0.3510835810
+UniRef50_UPI0003B30923: hypothetical protein	0.3510604138
+UniRef50_UPI0003B30923: hypothetical protein|unclassified	0.3510604138
+UniRef50_UPI0003EB27E7: hypothetical protein	0.3510134443
+UniRef50_UPI0003EB27E7: hypothetical protein|unclassified	0.3510134443
+UniRef50_UPI0003B4AC14: general secretion pathway protein I	0.3509942867
+UniRef50_UPI0003B4AC14: general secretion pathway protein I|unclassified	0.3509942867
+UniRef50_B9TNJ3	0.3509629613
+UniRef50_B9TNJ3|unclassified	0.3509629613
+UniRef50_U6BB85	0.3509048803
+UniRef50_U6BB85|unclassified	0.3509048803
+UniRef50_J2HC80	0.3508998686
+UniRef50_J2HC80|unclassified	0.3508998686
+UniRef50_UPI000380220D: hypothetical protein, partial	0.3508756017
+UniRef50_UPI000380220D: hypothetical protein, partial|unclassified	0.3508756017
+UniRef50_J4ZBB1: Thi4 domain protein	0.3508416765
+UniRef50_J4ZBB1: Thi4 domain protein|unclassified	0.3508416765
+UniRef50_UPI00022B367A: PREDICTED: ubiquitin-associated protein 1-like	0.3508253068
+UniRef50_UPI00022B367A: PREDICTED: ubiquitin-associated protein 1-like|unclassified	0.3508253068
+UniRef50_UPI0003677EE7: hypothetical protein	0.3508088603
+UniRef50_UPI0003677EE7: hypothetical protein|unclassified	0.3508088603
+UniRef50_K8CNZ8: Cell wall endopeptidase, family M23/M37	0.3507387462
+UniRef50_K8CNZ8: Cell wall endopeptidase, family M23/M37|unclassified	0.3507387462
+UniRef50_Q215X7: Putative Holliday junction resolvase	0.3507240591
+UniRef50_Q215X7: Putative Holliday junction resolvase|unclassified	0.3507240591
+UniRef50_UPI0000164CF4: 4-alpha-glucanotransferase	0.3507091406
+UniRef50_UPI0000164CF4: 4-alpha-glucanotransferase|unclassified	0.3507091406
+UniRef50_U5UNX7	0.3507082918
+UniRef50_U5UNX7|unclassified	0.3507082918
+UniRef50_A7H7C9	0.3506854957
+UniRef50_A7H7C9|unclassified	0.3506854957
+UniRef50_UPI0003B441C2: hypothetical protein	0.3506416899
+UniRef50_UPI0003B441C2: hypothetical protein|unclassified	0.3506416899
+UniRef50_B4QPW3: GD17914	0.3506234492
+UniRef50_B4QPW3: GD17914|unclassified	0.3506234492
+UniRef50_Q2YTN2	0.3506078353
+UniRef50_Q2YTN2|unclassified	0.3506078353
+UniRef50_G9ZQ15	0.3505994362
+UniRef50_G9ZQ15|unclassified	0.3505994362
+UniRef50_UPI000239F791: putative xanthine/uracil permease	0.3505950273
+UniRef50_UPI000239F791: putative xanthine/uracil permease|unclassified	0.3505950273
+UniRef50_A4SJK5	0.3505433082
+UniRef50_A4SJK5|unclassified	0.3505433082
+UniRef50_U3U6N6: Sulfate permease	0.3505241163
+UniRef50_U3U6N6: Sulfate permease|unclassified	0.3505241163
+UniRef50_UPI00047095B2: hypothetical protein	0.3504808810
+UniRef50_UPI00047095B2: hypothetical protein|unclassified	0.3504808810
+UniRef50_UPI0003683B95: hypothetical protein	0.3504763192
+UniRef50_UPI0003683B95: hypothetical protein|unclassified	0.3504763192
+UniRef50_UPI00035D28CB: hypothetical protein	0.3504544724
+UniRef50_UPI00035D28CB: hypothetical protein|unclassified	0.3504544724
+UniRef50_D5CBK1: Dipeptide transporter	0.3504539882
+UniRef50_D5CBK1: Dipeptide transporter|unclassified	0.3504539882
+UniRef50_UPI00047EFAC1: type III secretion system protein SsaR	0.3504538553
+UniRef50_UPI00047EFAC1: type III secretion system protein SsaR|unclassified	0.3504538553
+UniRef50_UPI0003799B44: hypothetical protein	0.3504536871
+UniRef50_UPI0003799B44: hypothetical protein|unclassified	0.3504536871
+UniRef50_UPI00047BC877: phosphoribosylaminoimidazole-succinocarboxamide synthase	0.3504313029
+UniRef50_UPI00047BC877: phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.3504313029
+UniRef50_X3XGM1: Sugar phosphatase (Fragment)	0.3504304105
+UniRef50_X3XGM1: Sugar phosphatase (Fragment)|unclassified	0.3504304105
+UniRef50_B1HCJ0	0.3504081704
+UniRef50_B1HCJ0|unclassified	0.3504081704
+UniRef50_UPI00047DBE48: methionine ABC transporter substrate-binding protein	0.3504068342
+UniRef50_UPI00047DBE48: methionine ABC transporter substrate-binding protein|unclassified	0.3504068342
+UniRef50_UPI0002E1C1F4: hypothetical protein	0.3504018490
+UniRef50_UPI0002E1C1F4: hypothetical protein|unclassified	0.3504018490
+UniRef50_F3ZH54: Putative xanthine dehydrogenase YagT iron-sulfur-binding subunit	0.3503924989
+UniRef50_F3ZH54: Putative xanthine dehydrogenase YagT iron-sulfur-binding subunit|unclassified	0.3503924989
+UniRef50_UPI00016A5A20: ABC-type spermidine/putrescine transport system, permease component II	0.3503902277
+UniRef50_UPI00016A5A20: ABC-type spermidine/putrescine transport system, permease component II|unclassified	0.3503902277
+UniRef50_A4WQX7	0.3503628217
+UniRef50_A4WQX7|unclassified	0.3503628217
+UniRef50_UPI000474D03A: hypothetical protein, partial	0.3503546075
+UniRef50_UPI000474D03A: hypothetical protein, partial|unclassified	0.3503546075
+UniRef50_G9YBQ1	0.3501555671
+UniRef50_G9YBQ1|unclassified	0.3501555671
+UniRef50_W1I894: Ammonium transporter (Fragment)	0.3500842605
+UniRef50_W1I894: Ammonium transporter (Fragment)|unclassified	0.3500842605
+UniRef50_UPI0003EDF3DD: PREDICTED: 3''''-5'''' exoribonuclease 1-like	0.3500777589
+UniRef50_UPI0003EDF3DD: PREDICTED: 3''''-5'''' exoribonuclease 1-like|unclassified	0.3500777589
+UniRef50_J7QF27: Heat shock protein Hsp20	0.3500619551
+UniRef50_J7QF27: Heat shock protein Hsp20|unclassified	0.3500619551
+UniRef50_J7Q5F5: Putative NAD-dependent aldehyde dehydrogenase	0.3500605765
+UniRef50_J7Q5F5: Putative NAD-dependent aldehyde dehydrogenase|unclassified	0.3500605765
+UniRef50_UPI000372061A: hypothetical protein	0.3500192377
+UniRef50_UPI000372061A: hypothetical protein|unclassified	0.3500192377
+UniRef50_P06106: Protein MET17	0.3500159705
+UniRef50_P06106: Protein MET17|unclassified	0.3500159705
+UniRef50_S5T441	0.3500053619
+UniRef50_S5T441|unclassified	0.3500053619
+UniRef50_J0HLU4	0.3499916592
+UniRef50_J0HLU4|unclassified	0.3499916592
+UniRef50_E1M6J7	0.3499836609
+UniRef50_E1M6J7|unclassified	0.3499836609
+UniRef50_I4YRG8: CarD-like transcriptional regulator	0.3499786902
+UniRef50_I4YRG8: CarD-like transcriptional regulator|unclassified	0.3499786902
+UniRef50_UPI00026CCB4F: glycine cleavage system aminomethyltransferase T, partial	0.3499390770
+UniRef50_UPI00026CCB4F: glycine cleavage system aminomethyltransferase T, partial|unclassified	0.3499390770
+UniRef50_UPI000252B986: PREDICTED: multidrug resistance ABC transporter ATP-binding and permease protein-like	0.3499307909
+UniRef50_UPI000252B986: PREDICTED: multidrug resistance ABC transporter ATP-binding and permease protein-like|unclassified	0.3499307909
+UniRef50_UPI000372FE13: phage baseplate protein	0.3499154206
+UniRef50_UPI000372FE13: phage baseplate protein|unclassified	0.3499154206
+UniRef50_UPI00037418D9: glycosyl transferase family 1, partial	0.3499022510
+UniRef50_UPI00037418D9: glycosyl transferase family 1, partial|unclassified	0.3499022510
+UniRef50_UPI00035D529A: hypothetical protein	0.3499005979
+UniRef50_UPI00035D529A: hypothetical protein|unclassified	0.3499005979
+UniRef50_M5Y1W9	0.3499000553
+UniRef50_M5Y1W9|unclassified	0.3499000553
+UniRef50_Q7XQ54: OSJNBa0017P10.1 protein	0.3498952227
+UniRef50_Q7XQ54: OSJNBa0017P10.1 protein|unclassified	0.3498952227
+UniRef50_UPI000463F201: XRE family transcriptional regulator	0.3498066714
+UniRef50_UPI000463F201: XRE family transcriptional regulator|unclassified	0.3498066714
+UniRef50_S2R9A4: Excinuclease ATPase subunit (Fragment)	0.3497997200
+UniRef50_S2R9A4: Excinuclease ATPase subunit (Fragment)|unclassified	0.3497997200
+UniRef50_G4HIY5	0.3497811968
+UniRef50_G4HIY5|unclassified	0.3497811968
+UniRef50_C7R130: D-lactate dehydrogenase (Cytochrome)	0.3497726478
+UniRef50_C7R130: D-lactate dehydrogenase (Cytochrome)|g__Propionibacterium.s__Propionibacterium_acnes	0.3497726478
+UniRef50_P51057: Succinate dehydrogenase hydrophobic membrane anchor subunit	0.3497718593
+UniRef50_P51057: Succinate dehydrogenase hydrophobic membrane anchor subunit|unclassified	0.3497718593
+UniRef50_D9XX77	0.3497627635
+UniRef50_D9XX77|unclassified	0.3497627635
+UniRef50_D9T7A8: PE-PGRS family protein	0.3497462590
+UniRef50_D9T7A8: PE-PGRS family protein|unclassified	0.3497462590
+UniRef50_U2Z2Z8	0.3497346957
+UniRef50_U2Z2Z8|unclassified	0.3497346957
+UniRef50_UPI0001FFE446: choline dehydrogenase	0.3497130403
+UniRef50_UPI0001FFE446: choline dehydrogenase|unclassified	0.3497130403
+UniRef50_T1E918: Putative secreted protein (Fragment)	0.3496918548
+UniRef50_T1E918: Putative secreted protein (Fragment)|unclassified	0.3496918548
+UniRef50_UPI00035F0CB1: hypothetical protein	0.3496691468
+UniRef50_UPI00035F0CB1: hypothetical protein|unclassified	0.3496691468
+UniRef50_E2XCC3: Porin thermoregulatory envY domain protein	0.3496447156
+UniRef50_E2XCC3: Porin thermoregulatory envY domain protein|unclassified	0.3496447156
+UniRef50_K1SES8: Radical SAM domain protein	0.3496301156
+UniRef50_K1SES8: Radical SAM domain protein|unclassified	0.3496301156
+UniRef50_A8HYP6	0.3495598772
+UniRef50_A8HYP6|unclassified	0.3495598772
+UniRef50_C1DG56	0.3495397450
+UniRef50_C1DG56|unclassified	0.3495397450
+UniRef50_D5H6T8	0.3495342747
+UniRef50_D5H6T8|unclassified	0.3495342747
+UniRef50_M3UQL5	0.3495281370
+UniRef50_M3UQL5|unclassified	0.3495281370
+UniRef50_UPI0004648226: biotin synthase	0.3495136806
+UniRef50_UPI0004648226: biotin synthase|unclassified	0.3495136806
+UniRef50_Q08T18	0.3494922982
+UniRef50_Q08T18|unclassified	0.3494922982
+UniRef50_Q92ME6: Shikimate kinase	0.3494584632
+UniRef50_Q92ME6: Shikimate kinase|unclassified	0.3494584632
+UniRef50_X0T626: Marine sediment metagenome DNA, contig: S01H1_L01615	0.3493480857
+UniRef50_X0T626: Marine sediment metagenome DNA, contig: S01H1_L01615|unclassified	0.3493480857
+UniRef50_B1NNY3: Truncated transposase A	0.3493191908
+UniRef50_B1NNY3: Truncated transposase A|unclassified	0.3493191908
+UniRef50_H8GT24: Transpeptidase-transglycosylase component	0.3492839679
+UniRef50_H8GT24: Transpeptidase-transglycosylase component|g__Deinococcus.s__Deinococcus_radiodurans	0.3492839679
+UniRef50_U4K9W6	0.3491942877
+UniRef50_U4K9W6|unclassified	0.3491942877
+UniRef50_W4TI22: Lysophospholipase L2	0.3491263450
+UniRef50_W4TI22: Lysophospholipase L2|unclassified	0.3491263450
+UniRef50_B1ZIB4: Coenzyme PQQ synthesis protein B	0.3491218093
+UniRef50_B1ZIB4: Coenzyme PQQ synthesis protein B|unclassified	0.3491218093
+UniRef50_P00877: Ribulose bisphosphate carboxylase large chain	0.3491086479
+UniRef50_P00877: Ribulose bisphosphate carboxylase large chain|unclassified	0.3491086479
+UniRef50_P25857: Glyceraldehyde-3-phosphate dehydrogenase GAPB, chloroplastic	0.3490834895
+UniRef50_P25857: Glyceraldehyde-3-phosphate dehydrogenase GAPB, chloroplastic|unclassified	0.3490834895
+UniRef50_UPI00047E91BA: ferredoxin	0.3490685564
+UniRef50_UPI00047E91BA: ferredoxin|unclassified	0.3490685564
+UniRef50_UPI000311BF3E: hypothetical protein	0.3490446794
+UniRef50_UPI000311BF3E: hypothetical protein|unclassified	0.3490446794
+UniRef50_UPI000395B6FA: mRNA 3''''-end processing factor	0.3490442511
+UniRef50_UPI000395B6FA: mRNA 3''''-end processing factor|unclassified	0.3490442511
+UniRef50_O28733: Succinyl-CoA ligase [ADP-forming] subunit alpha 1	0.3490351213
+UniRef50_O28733: Succinyl-CoA ligase [ADP-forming] subunit alpha 1|unclassified	0.3490351213
+UniRef50_T7PA46	0.3490271946
+UniRef50_T7PA46|unclassified	0.3490271946
+UniRef50_Q5VJ09	0.3489944668
+UniRef50_Q5VJ09|unclassified	0.3489944668
+UniRef50_A5PC43	0.3489892377
+UniRef50_A5PC43|unclassified	0.3489892377
+UniRef50_UPI00047896EC: hypothetical protein, partial	0.3489841835
+UniRef50_UPI00047896EC: hypothetical protein, partial|unclassified	0.3489841835
+UniRef50_W9D4Z0	0.3489747516
+UniRef50_W9D4Z0|unclassified	0.3489747516
+UniRef50_W0HE09	0.3489429907
+UniRef50_W0HE09|unclassified	0.3489429907
+UniRef50_UPI0003657EDF: hypothetical protein	0.3489102741
+UniRef50_UPI0003657EDF: hypothetical protein|unclassified	0.3489102741
+UniRef50_U6MX87	0.3489060853
+UniRef50_U6MX87|unclassified	0.3489060853
+UniRef50_V4JGE3	0.3489041237
+UniRef50_V4JGE3|unclassified	0.3489041237
+UniRef50_UPI000388F8F9: PREDICTED: serine/arginine repetitive matrix protein 2-like	0.3488838763
+UniRef50_UPI000388F8F9: PREDICTED: serine/arginine repetitive matrix protein 2-like|unclassified	0.3488838763
+UniRef50_UPI0004208E0D: molecular chaperone DnaJ	0.3487843728
+UniRef50_UPI0004208E0D: molecular chaperone DnaJ|unclassified	0.3487843728
+UniRef50_UPI00016C38B9: S-adenosylmethionine synthetase	0.3487805488
+UniRef50_UPI00016C38B9: S-adenosylmethionine synthetase|unclassified	0.3487805488
+UniRef50_M4Z7B3: Putative membrane protein	0.3487262364
+UniRef50_M4Z7B3: Putative membrane protein|unclassified	0.3487262364
+UniRef50_Q8Y2B9: Adenine phosphoribosyltransferase	0.3486989460
+UniRef50_Q8Y2B9: Adenine phosphoribosyltransferase|unclassified	0.3486989460
+UniRef50_UPI000420DB71: hypothetical protein	0.3486466833
+UniRef50_UPI000420DB71: hypothetical protein|unclassified	0.3486466833
+UniRef50_U3A415	0.3486265111
+UniRef50_U3A415|unclassified	0.3486265111
+UniRef50_UPI0004415911: hypothetical protein AURDEDRAFT_116316	0.3485974897
+UniRef50_UPI0004415911: hypothetical protein AURDEDRAFT_116316|unclassified	0.3485974897
+UniRef50_UPI00042902E2: stomatin 2	0.3485781707
+UniRef50_UPI00042902E2: stomatin 2|unclassified	0.3485781707
+UniRef50_UPI00036D8AD9: hypothetical protein	0.3485535030
+UniRef50_UPI00036D8AD9: hypothetical protein|unclassified	0.3485535030
+UniRef50_UPI0003808D6C: hypothetical protein	0.3485520632
+UniRef50_UPI0003808D6C: hypothetical protein|unclassified	0.3485520632
+UniRef50_X0W047: Marine sediment metagenome DNA, contig: S01H1_S20503 (Fragment)	0.3484948299
+UniRef50_X0W047: Marine sediment metagenome DNA, contig: S01H1_S20503 (Fragment)|unclassified	0.3484948299
+UniRef50_UPI0003790597: hypothetical protein	0.3484928504
+UniRef50_UPI0003790597: hypothetical protein|unclassified	0.3484928504
+UniRef50_A0A018QC45: ABC transporter permease	0.3484622389
+UniRef50_A0A018QC45: ABC transporter permease|unclassified	0.3484622389
+UniRef50_UPI00029D9246	0.3484518655
+UniRef50_UPI00029D9246|unclassified	0.3484518655
+UniRef50_UPI00036781BF: hypothetical protein	0.3484249394
+UniRef50_UPI00036781BF: hypothetical protein|unclassified	0.3484249394
+UniRef50_A0A011QS87	0.3483849158
+UniRef50_A0A011QS87|unclassified	0.3483849158
+UniRef50_UPI00047377E9: hypothetical protein, partial	0.3483799782
+UniRef50_UPI00047377E9: hypothetical protein, partial|unclassified	0.3483799782
+UniRef50_UPI0002FE3AF8: hypothetical protein	0.3483360146
+UniRef50_UPI0002FE3AF8: hypothetical protein|unclassified	0.3483360146
+UniRef50_UPI0003F09E85: PREDICTED: spidroin-2-like	0.3483070015
+UniRef50_UPI0003F09E85: PREDICTED: spidroin-2-like|unclassified	0.3483070015
+UniRef50_UPI0003623C23: hypothetical protein, partial	0.3483058610
+UniRef50_UPI0003623C23: hypothetical protein, partial|unclassified	0.3483058610
+UniRef50_B6YRP0: S-adenosylmethionine synthase	0.3482944415
+UniRef50_B6YRP0: S-adenosylmethionine synthase|unclassified	0.3482944415
+UniRef50_V0LPS8: Colanic acid biosynthesis protein	0.3482864375
+UniRef50_V0LPS8: Colanic acid biosynthesis protein|unclassified	0.3482864375
+UniRef50_C2LW89	0.3482835469
+UniRef50_C2LW89|unclassified	0.3482835469
+UniRef50_UPI00036BC69F: hypothetical protein	0.3482364465
+UniRef50_UPI00036BC69F: hypothetical protein|unclassified	0.3482364465
+UniRef50_W8HI63	0.3482294939
+UniRef50_W8HI63|unclassified	0.3482294939
+UniRef50_UPI0004695C98: amino acid ABC transporter permease	0.3482216282
+UniRef50_UPI0004695C98: amino acid ABC transporter permease|unclassified	0.3482216282
+UniRef50_UPI00029DABF0: PREDICTED: E3 ubiquitin-protein ligase TRIM33-like, partial	0.3481588993
+UniRef50_UPI00029DABF0: PREDICTED: E3 ubiquitin-protein ligase TRIM33-like, partial|unclassified	0.3481588993
+UniRef50_UPI000311AAE5: hypothetical protein	0.3481550356
+UniRef50_UPI000311AAE5: hypothetical protein|unclassified	0.3481550356
+UniRef50_I1ABM5	0.3481457213
+UniRef50_I1ABM5|unclassified	0.3481457213
+UniRef50_UPI0002B4AB6E: PREDICTED: thiosulfate sulfurtransferase YnjE-like, partial	0.3481432407
+UniRef50_UPI0002B4AB6E: PREDICTED: thiosulfate sulfurtransferase YnjE-like, partial|unclassified	0.3481432407
+UniRef50_UPI00039929BA: PREDICTED: interferon-activable protein 204-like	0.3481403438
+UniRef50_UPI00039929BA: PREDICTED: interferon-activable protein 204-like|unclassified	0.3481403438
+UniRef50_D5ZNC6	0.3481395581
+UniRef50_D5ZNC6|unclassified	0.3481395581
+UniRef50_I7AH51	0.3481115383
+UniRef50_I7AH51|unclassified	0.3481115383
+UniRef50_UPI000476B9A9: nitrate reductase	0.3480825711
+UniRef50_UPI000476B9A9: nitrate reductase|unclassified	0.3480825711
+UniRef50_G3QCL1	0.3480689233
+UniRef50_G3QCL1|unclassified	0.3480689233
+UniRef50_F8B1H9: Prevent-host-death family protein	0.3480470764
+UniRef50_F8B1H9: Prevent-host-death family protein|unclassified	0.3480470764
+UniRef50_UPI00037C627C: hypothetical protein	0.3480226458
+UniRef50_UPI00037C627C: hypothetical protein|unclassified	0.3480226458
+UniRef50_N4VNS1: Oxalate decarboxylase oxdc	0.3480072066
+UniRef50_N4VNS1: Oxalate decarboxylase oxdc|unclassified	0.3480072066
+UniRef50_UPI00036AB79E: MarR family transcriptional regulator	0.3480045655
+UniRef50_UPI00036AB79E: MarR family transcriptional regulator|unclassified	0.3480045655
+UniRef50_Q2NTI7: Zinc import ATP-binding protein ZnuC	0.3479922403
+UniRef50_Q2NTI7: Zinc import ATP-binding protein ZnuC|unclassified	0.3479922403
+UniRef50_UPI000478DE35: cytochrome Cbb3	0.3479641331
+UniRef50_UPI000478DE35: cytochrome Cbb3|unclassified	0.3479641331
+UniRef50_A3M4L4: Malonate utilization transcriptional regulator (LysR family)	0.3479377134
+UniRef50_A3M4L4: Malonate utilization transcriptional regulator (LysR family)|unclassified	0.3479377134
+UniRef50_E7C7F3	0.3479012751
+UniRef50_E7C7F3|unclassified	0.3479012751
+UniRef50_D8M466: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_20	0.3478450766
+UniRef50_D8M466: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_20|unclassified	0.3478450766
+UniRef50_UPI000375517D: hypothetical protein	0.3478388698
+UniRef50_UPI000375517D: hypothetical protein|unclassified	0.3478388698
+UniRef50_G5LNP8: Glucans biosynthesis protein G (Fragment)	0.3477463284
+UniRef50_G5LNP8: Glucans biosynthesis protein G (Fragment)|unclassified	0.3477463284
+UniRef50_A0A023X243	0.3477260277
+UniRef50_A0A023X243|unclassified	0.3477260277
+UniRef50_UPI000377A4D2: hypothetical protein	0.3477031132
+UniRef50_UPI000377A4D2: hypothetical protein|unclassified	0.3477031132
+UniRef50_I7EMW1: Sarcosine oxidase-like protein	0.3476987154
+UniRef50_I7EMW1: Sarcosine oxidase-like protein|unclassified	0.3476987154
+UniRef50_M4MUD1	0.3476642784
+UniRef50_M4MUD1|unclassified	0.3476642784
+UniRef50_B9JQL5: Transposase number 2 for insertion sequence	0.3475431573
+UniRef50_B9JQL5: Transposase number 2 for insertion sequence|unclassified	0.3475431573
+UniRef50_D7UUN3: Type VII secretion protein EssA	0.3475245796
+UniRef50_D7UUN3: Type VII secretion protein EssA|unclassified	0.3475245796
+UniRef50_UPI000305C0E8: hypothetical protein	0.3475037160
+UniRef50_UPI000305C0E8: hypothetical protein|unclassified	0.3475037160
+UniRef50_A4EF43	0.3474787676
+UniRef50_A4EF43|unclassified	0.3474787676
+UniRef50_R6S6D9	0.3474724739
+UniRef50_R6S6D9|unclassified	0.3474724739
+UniRef50_A0A011PG71: Acetate transporter ActP	0.3474330997
+UniRef50_A0A011PG71: Acetate transporter ActP|unclassified	0.3474330997
+UniRef50_S9R2Y6: Putative permease	0.3474320279
+UniRef50_S9R2Y6: Putative permease|unclassified	0.3474320279
+UniRef50_UPI0003A5A1E9: aspartyl protease	0.3474237883
+UniRef50_UPI0003A5A1E9: aspartyl protease|unclassified	0.3474237883
+UniRef50_K0CJ28: Quinohemoprotein alcohol dehydrogenase protein	0.3474089106
+UniRef50_K0CJ28: Quinohemoprotein alcohol dehydrogenase protein|unclassified	0.3474089106
+UniRef50_V6PPQ9: Periplasmic binding protein/LacI transcriptional regulator	0.3473826278
+UniRef50_V6PPQ9: Periplasmic binding protein/LacI transcriptional regulator|unclassified	0.3473826278
+UniRef50_M7A0H8	0.3473785650
+UniRef50_M7A0H8|unclassified	0.3473785650
+UniRef50_UPI0003B4BF8B: DNA invertase	0.3473552510
+UniRef50_UPI0003B4BF8B: DNA invertase|unclassified	0.3473552510
+UniRef50_UPI0003B686EF: hypothetical protein	0.3473464325
+UniRef50_UPI0003B686EF: hypothetical protein|unclassified	0.3473464325
+UniRef50_C1D4H9: Protein RnfH	0.3473419345
+UniRef50_C1D4H9: Protein RnfH|unclassified	0.3473419345
+UniRef50_UPI0003C11071: PREDICTED: 3-isopropylmalate dehydratase-like	0.3473209562
+UniRef50_UPI0003C11071: PREDICTED: 3-isopropylmalate dehydratase-like|unclassified	0.3473209562
+UniRef50_V6PW95	0.3473032344
+UniRef50_V6PW95|unclassified	0.3473032344
+UniRef50_B2I785: NADH-quinone oxidoreductase subunit B	0.3473005437
+UniRef50_B2I785: NADH-quinone oxidoreductase subunit B|unclassified	0.3473005437
+UniRef50_UPI000418EAD6: hypothetical protein	0.3473002655
+UniRef50_UPI000418EAD6: hypothetical protein|unclassified	0.3473002655
+UniRef50_W7WSH9	0.3472861667
+UniRef50_W7WSH9|unclassified	0.3472861667
+UniRef50_UPI00047161E6: hypothetical protein	0.3472383018
+UniRef50_UPI00047161E6: hypothetical protein|unclassified	0.3472383018
+UniRef50_UPI000287AD31: binding-protein-dependent transport system inner membrane protein	0.3472371601
+UniRef50_UPI000287AD31: binding-protein-dependent transport system inner membrane protein|unclassified	0.3472371601
+UniRef50_Q49ZP2	0.3472245492
+UniRef50_Q49ZP2|unclassified	0.3472245492
+UniRef50_UPI0004705BD7: primosomal protein DnaI	0.3471822550
+UniRef50_UPI0004705BD7: primosomal protein DnaI|unclassified	0.3471822550
+UniRef50_K2GRD2	0.3471799658
+UniRef50_K2GRD2|unclassified	0.3471799658
+UniRef50_B7V3Q5	0.3471677976
+UniRef50_B7V3Q5|unclassified	0.3471677976
+UniRef50_UPI0004713EB9: hypothetical protein	0.3471134217
+UniRef50_UPI0004713EB9: hypothetical protein|unclassified	0.3471134217
+UniRef50_A5FWE5	0.3471132981
+UniRef50_A5FWE5|unclassified	0.3471132981
+UniRef50_UPI00037792DD: hypothetical protein, partial	0.3470990107
+UniRef50_UPI00037792DD: hypothetical protein, partial|unclassified	0.3470990107
+UniRef50_UPI0003609329: hypothetical protein	0.3470924795
+UniRef50_UPI0003609329: hypothetical protein|unclassified	0.3470924795
+UniRef50_UPI00047B6F09: sugar ABC transporter permease	0.3470815356
+UniRef50_UPI00047B6F09: sugar ABC transporter permease|unclassified	0.3470815356
+UniRef50_UPI0003B3F508: cyclase	0.3470772888
+UniRef50_UPI0003B3F508: cyclase|unclassified	0.3470772888
+UniRef50_R5GSN9: Fagellar hook-basal body proteins	0.3470485335
+UniRef50_R5GSN9: Fagellar hook-basal body proteins|unclassified	0.3470485335
+UniRef50_UPI000360580F: methyltransferase, partial	0.3470196612
+UniRef50_UPI000360580F: methyltransferase, partial|unclassified	0.3470196612
+UniRef50_UPI0003AD00EB: ABC transporter permease	0.3470072663
+UniRef50_UPI0003AD00EB: ABC transporter permease|unclassified	0.3470072663
+UniRef50_X6L4K9	0.3469649617
+UniRef50_X6L4K9|unclassified	0.3469649617
+UniRef50_U1EG57	0.3469614341
+UniRef50_U1EG57|unclassified	0.3469614341
+UniRef50_UPI00039AE885: NADH:ubiquinone oxidoreductase 49 kD subunit 7	0.3469417871
+UniRef50_UPI00039AE885: NADH:ubiquinone oxidoreductase 49 kD subunit 7|unclassified	0.3469417871
+UniRef50_D0CR08	0.3469246774
+UniRef50_D0CR08|unclassified	0.3469246774
+UniRef50_C2PED9: Molybdopterin converting factor, small subunit	0.3468773214
+UniRef50_C2PED9: Molybdopterin converting factor, small subunit|unclassified	0.3468773214
+UniRef50_Q7N8K6: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase	0.3468112400
+UniRef50_Q7N8K6: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|unclassified	0.3468112400
+UniRef50_A5V3X1: Heat shock protein Hsp20	0.3468061376
+UniRef50_A5V3X1: Heat shock protein Hsp20|unclassified	0.3468061376
+UniRef50_R1B4D2	0.3467295866
+UniRef50_R1B4D2|unclassified	0.3467295866
+UniRef50_M8SYD2	0.3466670940
+UniRef50_M8SYD2|unclassified	0.3466670940
+UniRef50_UPI000169AB29: PhoH	0.3466546669
+UniRef50_UPI000169AB29: PhoH|unclassified	0.3466546669
+UniRef50_A0A011PFH5	0.3466539759
+UniRef50_A0A011PFH5|unclassified	0.3466539759
+UniRef50_F3SRN4: Conserved domain protein	0.3466446759
+UniRef50_F3SRN4: Conserved domain protein|unclassified	0.3466446759
+UniRef50_W1FTL8	0.3466251960
+UniRef50_W1FTL8|unclassified	0.3466251960
+UniRef50_UPI0004703BA8: ArsR family transcriptional regulator	0.3465915827
+UniRef50_UPI0004703BA8: ArsR family transcriptional regulator|unclassified	0.3465915827
+UniRef50_Q98EI7: Porphobilinogen deaminase	0.3465259119
+UniRef50_Q98EI7: Porphobilinogen deaminase|unclassified	0.3465259119
+UniRef50_UPI00036C3114: RNA polymerase factor sigma-32	0.3465191372
+UniRef50_UPI00036C3114: RNA polymerase factor sigma-32|unclassified	0.3465191372
+UniRef50_UPI000374DD60: hypothetical protein	0.3465130944
+UniRef50_UPI000374DD60: hypothetical protein|unclassified	0.3465130944
+UniRef50_UPI00047EB5DF: GTP-binding protein Der	0.3465125815
+UniRef50_UPI00047EB5DF: GTP-binding protein Der|unclassified	0.3465125815
+UniRef50_UPI0003745585: hypothetical protein, partial	0.3464977499
+UniRef50_UPI0003745585: hypothetical protein, partial|unclassified	0.3464977499
+UniRef50_A0A058YZN6	0.3464932207
+UniRef50_A0A058YZN6|unclassified	0.3464932207
+UniRef50_K7VRD3: Putative cytochrome P450 superfamily protein	0.3464821029
+UniRef50_K7VRD3: Putative cytochrome P450 superfamily protein|unclassified	0.3464821029
+UniRef50_K8WJ73	0.3464689373
+UniRef50_K8WJ73|unclassified	0.3464689373
+UniRef50_E6VVV5: AzlC family protein	0.3464631916
+UniRef50_E6VVV5: AzlC family protein|unclassified	0.3464631916
+UniRef50_A6X300	0.3464598183
+UniRef50_A6X300|unclassified	0.3464598183
+UniRef50_UPI0004742466: nitrite reductase	0.3464009265
+UniRef50_UPI0004742466: nitrite reductase|unclassified	0.3464009265
+UniRef50_UPI00046EE31F: hypothetical protein	0.3463891632
+UniRef50_UPI00046EE31F: hypothetical protein|unclassified	0.3463891632
+UniRef50_UPI0003660E9C: transposase	0.3463860701
+UniRef50_UPI0003660E9C: transposase|unclassified	0.3463860701
+UniRef50_UPI000225B916: hypothetical protein	0.3463722085
+UniRef50_UPI000225B916: hypothetical protein|unclassified	0.3463722085
+UniRef50_G0E1Z1	0.3463406916
+UniRef50_G0E1Z1|unclassified	0.3463406916
+UniRef50_UPI000375BCCE: hypothetical protein	0.3463301771
+UniRef50_UPI000375BCCE: hypothetical protein|unclassified	0.3463301771
+UniRef50_F5T5X6	0.3463013675
+UniRef50_F5T5X6|unclassified	0.3463013675
+UniRef50_D8LJ34	0.3463008534
+UniRef50_D8LJ34|unclassified	0.3463008534
+UniRef50_UPI0002378E6D: type II secretion system protein E	0.3462965662
+UniRef50_UPI0002378E6D: type II secretion system protein E|unclassified	0.3462965662
+UniRef50_UPI0003AEF2BE	0.3462928118
+UniRef50_UPI0003AEF2BE|unclassified	0.3462928118
+UniRef50_UPI00036475C3: hypothetical protein	0.3462359186
+UniRef50_UPI00036475C3: hypothetical protein|unclassified	0.3462359186
+UniRef50_UPI00035FFCE6: hypothetical protein	0.3462348109
+UniRef50_UPI00035FFCE6: hypothetical protein|unclassified	0.3462348109
+UniRef50_B9JU36	0.3461813024
+UniRef50_B9JU36|unclassified	0.3461813024
+UniRef50_V4T156	0.3461812228
+UniRef50_V4T156|unclassified	0.3461812228
+UniRef50_E2XI79: SEC-C motif family protein	0.3461756696
+UniRef50_E2XI79: SEC-C motif family protein|unclassified	0.3461756696
+UniRef50_G7I860: NADH-ubiquinone oxidoreductase chain	0.3461721611
+UniRef50_G7I860: NADH-ubiquinone oxidoreductase chain|unclassified	0.3461721611
+UniRef50_L0LRG3: NAD-dependent formate dehydrogenase, delta subunit protein	0.3461701584
+UniRef50_L0LRG3: NAD-dependent formate dehydrogenase, delta subunit protein|unclassified	0.3461701584
+UniRef50_E3DW57: General stress protein	0.3461350540
+UniRef50_E3DW57: General stress protein|unclassified	0.3461350540
+UniRef50_UPI000474454C: hypothetical protein	0.3460839892
+UniRef50_UPI000474454C: hypothetical protein|unclassified	0.3460839892
+UniRef50_UPI00047634A8: hypothetical protein	0.3460665147
+UniRef50_UPI00047634A8: hypothetical protein|unclassified	0.3460665147
+UniRef50_D1WQ15: KxYKxGKxW signal domain protein	0.3460207612
+UniRef50_D1WQ15: KxYKxGKxW signal domain protein|g__Staphylococcus.s__Staphylococcus_epidermidis	0.3460207612
+UniRef50_G0AAC6	0.3460181736
+UniRef50_G0AAC6|unclassified	0.3460181736
+UniRef50_UPI0002B42C90: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1	0.3460064764
+UniRef50_UPI0002B42C90: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1|unclassified	0.3460064764
+UniRef50_UPI0002896D99: kinase	0.3459789328
+UniRef50_UPI0002896D99: kinase|unclassified	0.3459789328
+UniRef50_R6R1M2	0.3459536968
+UniRef50_R6R1M2|unclassified	0.3459536968
+UniRef50_I8D2T2	0.3459171084
+UniRef50_I8D2T2|unclassified	0.3459171084
+UniRef50_K8EKV8: Unnamed protein product	0.3459010723
+UniRef50_K8EKV8: Unnamed protein product|unclassified	0.3459010723
+UniRef50_R5GDG8	0.3458692133
+UniRef50_R5GDG8|unclassified	0.3458692133
+UniRef50_S2JUV8: Cache sensor-containing methyl-accepting chemotaxis sensory transducer	0.3458681126
+UniRef50_S2JUV8: Cache sensor-containing methyl-accepting chemotaxis sensory transducer|unclassified	0.3458681126
+UniRef50_UPI0003634D70: glutathione synthetase	0.3458629450
+UniRef50_UPI0003634D70: glutathione synthetase|unclassified	0.3458629450
+UniRef50_R7M298	0.3457867772
+UniRef50_R7M298|unclassified	0.3457867772
+UniRef50_UPI0001746BC3: hypothetical protein	0.3457814661
+UniRef50_UPI0001746BC3: hypothetical protein|unclassified	0.3457814661
+UniRef50_N8Q2E7	0.3457542972
+UniRef50_N8Q2E7|unclassified	0.3457542972
+UniRef50_C5X103	0.3457244137
+UniRef50_C5X103|unclassified	0.3457244137
+UniRef50_X7F3N9	0.3456847426
+UniRef50_X7F3N9|unclassified	0.3456847426
+UniRef50_UPI00030717BC: hypothetical protein	0.3456769817
+UniRef50_UPI00030717BC: hypothetical protein|unclassified	0.3456769817
+UniRef50_Q6L5B0	0.3456756482
+UniRef50_Q6L5B0|unclassified	0.3456756482
+UniRef50_UPI0004641704: peptidase	0.3456648843
+UniRef50_UPI0004641704: peptidase|unclassified	0.3456648843
+UniRef50_UPI00046E9F93: aldo/keto reductase	0.3456614239
+UniRef50_UPI00046E9F93: aldo/keto reductase|unclassified	0.3456614239
+UniRef50_UPI0004744DBC: hypothetical protein	0.3456490000
+UniRef50_UPI0004744DBC: hypothetical protein|unclassified	0.3456490000
+UniRef50_UPI00036931E7: hypothetical protein, partial	0.3456193433
+UniRef50_UPI00036931E7: hypothetical protein, partial|unclassified	0.3456193433
+UniRef50_UPI000372FA01: hypothetical protein, partial	0.3456089356
+UniRef50_UPI000372FA01: hypothetical protein, partial|unclassified	0.3456089356
+UniRef50_T9NAV5: Inner membrane protein	0.3455912784
+UniRef50_T9NAV5: Inner membrane protein|unclassified	0.3455912784
+UniRef50_UPI000373E7E6: hypothetical protein	0.3455593791
+UniRef50_UPI000373E7E6: hypothetical protein|unclassified	0.3455593791
+UniRef50_UPI00047D0CCD: hypothetical protein	0.3455510723
+UniRef50_UPI00047D0CCD: hypothetical protein|unclassified	0.3455510723
+UniRef50_UPI000420BB24: hypothetical protein	0.3455353100
+UniRef50_UPI000420BB24: hypothetical protein|unclassified	0.3455353100
+UniRef50_F7QJW6: NAD-dependent formate dehydrogenase delta subunit	0.3455206225
+UniRef50_F7QJW6: NAD-dependent formate dehydrogenase delta subunit|unclassified	0.3455206225
+UniRef50_UPI00037560BA: hypothetical protein	0.3454791567
+UniRef50_UPI00037560BA: hypothetical protein|unclassified	0.3454791567
+UniRef50_UPI0002EABDB7: hypothetical protein	0.3454478378
+UniRef50_UPI0002EABDB7: hypothetical protein|unclassified	0.3454478378
+UniRef50_UPI0004621A3C: hypothetical protein TRAVEDRAFT_49419	0.3454268666
+UniRef50_UPI0004621A3C: hypothetical protein TRAVEDRAFT_49419|unclassified	0.3454268666
+UniRef50_UPI000463E4C7: hypothetical protein	0.3453310217
+UniRef50_UPI000463E4C7: hypothetical protein|unclassified	0.3453310217
+UniRef50_J3N3W4	0.3453216564
+UniRef50_J3N3W4|unclassified	0.3453216564
+UniRef50_M4NNF3: Lysozyme/endolysin/secretion activator protein	0.3453180519
+UniRef50_M4NNF3: Lysozyme/endolysin/secretion activator protein|unclassified	0.3453180519
+UniRef50_Q3JUV7: LigA	0.3453038674
+UniRef50_Q3JUV7: LigA|unclassified	0.3453038674
+UniRef50_R6J486: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG	0.3452932425
+UniRef50_R6J486: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG|unclassified	0.3452932425
+UniRef50_U7PP38	0.3452912206
+UniRef50_U7PP38|unclassified	0.3452912206
+UniRef50_UPI0001A44BD0: 30S ribosomal protein S18	0.3452727081
+UniRef50_UPI0001A44BD0: 30S ribosomal protein S18|unclassified	0.3452727081
+UniRef50_N5EDX1: PTS system EIIBC component	0.3452626197
+UniRef50_N5EDX1: PTS system EIIBC component|unclassified	0.3452626197
+UniRef50_UPI000309E910: hypothetical protein	0.3452581010
+UniRef50_UPI000309E910: hypothetical protein|unclassified	0.3452581010
+UniRef50_V0PJ52	0.3452462692
+UniRef50_V0PJ52|unclassified	0.3452462692
+UniRef50_UPI00034DE442: hypothetical protein	0.3452408542
+UniRef50_UPI00034DE442: hypothetical protein|unclassified	0.3452408542
+UniRef50_Q119B3: Acyl carrier protein	0.3452292397
+UniRef50_Q119B3: Acyl carrier protein|unclassified	0.3452292397
+UniRef50_UPI00042C720F	0.3451915380
+UniRef50_UPI00042C720F|unclassified	0.3451915380
+UniRef50_UPI00021941EE: quaternary ammonium transporter	0.3450827528
+UniRef50_UPI00021941EE: quaternary ammonium transporter|unclassified	0.3450827528
+UniRef50_W9FWD7	0.3450655625
+UniRef50_W9FWD7|unclassified	0.3450655625
+UniRef50_Q5QX89: Predicted dehydrogenase	0.3450542271
+UniRef50_Q5QX89: Predicted dehydrogenase|unclassified	0.3450542271
+UniRef50_UPI00035D04D9: alpha/beta hydrolase	0.3449934068
+UniRef50_UPI00035D04D9: alpha/beta hydrolase|unclassified	0.3449934068
+UniRef50_B6INN5: Thiamine-phosphate synthase	0.3449902039
+UniRef50_B6INN5: Thiamine-phosphate synthase|unclassified	0.3449902039
+UniRef50_UPI00046931CD: hypothetical protein	0.3449735045
+UniRef50_UPI00046931CD: hypothetical protein|unclassified	0.3449735045
+UniRef50_UPI000417C130: MerR family transcriptional regulator	0.3449614301
+UniRef50_UPI000417C130: MerR family transcriptional regulator|unclassified	0.3449614301
+UniRef50_W5X6I7: EmrB/QacA family drug resistance transporter	0.3449576161
+UniRef50_W5X6I7: EmrB/QacA family drug resistance transporter|unclassified	0.3449576161
+UniRef50_Q2T8Y7: Probable chemoreceptor glutamine deamidase CheD 2	0.3449407676
+UniRef50_Q2T8Y7: Probable chemoreceptor glutamine deamidase CheD 2|unclassified	0.3449407676
+UniRef50_U4V2F1: Rod binding protein	0.3449337808
+UniRef50_U4V2F1: Rod binding protein|unclassified	0.3449337808
+UniRef50_UPI00037BE0F1: hypothetical protein	0.3449280699
+UniRef50_UPI00037BE0F1: hypothetical protein|unclassified	0.3449280699
+UniRef50_D4HCV5: Periplasmic binding protein	0.3448587385
+UniRef50_D4HCV5: Periplasmic binding protein|unclassified	0.3448587385
+UniRef50_A7A5J4	0.3448373178
+UniRef50_A7A5J4|unclassified	0.3448373178
+UniRef50_A0A022NW71: LigA	0.3448350213
+UniRef50_A0A022NW71: LigA|unclassified	0.3448350213
+UniRef50_UPI000471C6E3: branched-chain amino acid ABC transporter ATPase	0.3448235635
+UniRef50_UPI000471C6E3: branched-chain amino acid ABC transporter ATPase|unclassified	0.3448235635
+UniRef50_W7TIH3	0.3448060786
+UniRef50_W7TIH3|unclassified	0.3448060786
+UniRef50_L8DVD2: UPF0348 protein lmo2049	0.3447637516
+UniRef50_L8DVD2: UPF0348 protein lmo2049|unclassified	0.3447637516
+UniRef50_UPI000474ED13: hypothetical protein	0.3447416528
+UniRef50_UPI000474ED13: hypothetical protein|unclassified	0.3447416528
+UniRef50_UPI000372D8ED: hypothetical protein	0.3447240264
+UniRef50_UPI000372D8ED: hypothetical protein|unclassified	0.3447240264
+UniRef50_UPI00047477CB: hypothetical protein	0.3445636551
+UniRef50_UPI00047477CB: hypothetical protein|unclassified	0.3445636551
+UniRef50_UPI0003714C23: hypothetical protein	0.3445491396
+UniRef50_UPI0003714C23: hypothetical protein|unclassified	0.3445491396
+UniRef50_I3BX28	0.3445259471
+UniRef50_I3BX28|unclassified	0.3445259471
+UniRef50_T0K2V4	0.3445094738
+UniRef50_T0K2V4|unclassified	0.3445094738
+UniRef50_Y9HCA3: UPF0758 protein	0.3445036495
+UniRef50_Y9HCA3: UPF0758 protein|unclassified	0.3445036495
+UniRef50_C9XUX7: Inner membrane protein yjjP	0.3444820358
+UniRef50_C9XUX7: Inner membrane protein yjjP|unclassified	0.3444820358
+UniRef50_N2NIM1: Macrolide-specific efflux macA domain protein	0.3444729467
+UniRef50_N2NIM1: Macrolide-specific efflux macA domain protein|unclassified	0.3444729467
+UniRef50_Q54IJ8	0.3444712367
+UniRef50_Q54IJ8|unclassified	0.3444712367
+UniRef50_UPI0003B33D43: precorrin-6A reductase	0.3444650584
+UniRef50_UPI0003B33D43: precorrin-6A reductase|unclassified	0.3444650584
+UniRef50_UPI000472D6AB: arginine ABC transporter ATP-binding protein	0.3444184640
+UniRef50_UPI000472D6AB: arginine ABC transporter ATP-binding protein|unclassified	0.3444184640
+UniRef50_UPI000366A20C: MULTISPECIES: hypothetical protein	0.3444110728
+UniRef50_UPI000366A20C: MULTISPECIES: hypothetical protein|unclassified	0.3444110728
+UniRef50_UPI00035CEE20: hypothetical protein	0.3444061124
+UniRef50_UPI00035CEE20: hypothetical protein|unclassified	0.3444061124
+UniRef50_A0A011Q2U8: Heavy metal efflux pump, CzcA family	0.3444013354
+UniRef50_A0A011Q2U8: Heavy metal efflux pump, CzcA family|unclassified	0.3444013354
+UniRef50_UPI0001912596: SsrA-binding protein, partial	0.3444002549
+UniRef50_UPI0001912596: SsrA-binding protein, partial|unclassified	0.3444002549
+UniRef50_UPI00035124E5: PREDICTED: WAS/WASL-interacting protein family member 1-like	0.3443753935
+UniRef50_UPI00035124E5: PREDICTED: WAS/WASL-interacting protein family member 1-like|unclassified	0.3443753935
+UniRef50_W7WNN7	0.3443362884
+UniRef50_W7WNN7|unclassified	0.3443362884
+UniRef50_F6E608	0.3443201392
+UniRef50_F6E608|unclassified	0.3443201392
+UniRef50_P62410: Phosphoglycerate kinase	0.3443061879
+UniRef50_P62410: Phosphoglycerate kinase|unclassified	0.3443061879
+UniRef50_W8YLE2: Genomic scaffold, Bacillus_thuringiensis_DB27_plasmid_pBTDB27210	0.3442963035
+UniRef50_W8YLE2: Genomic scaffold, Bacillus_thuringiensis_DB27_plasmid_pBTDB27210|unclassified	0.3442963035
+UniRef50_B4VCX3	0.3442398670
+UniRef50_B4VCX3|unclassified	0.3442398670
+UniRef50_UPI00037A8649: hypothetical protein	0.3442340792
+UniRef50_UPI00037A8649: hypothetical protein|unclassified	0.3442340792
+UniRef50_X2MD84: Quinone oxidoreductase	0.3442326009
+UniRef50_X2MD84: Quinone oxidoreductase|unclassified	0.3442326009
+UniRef50_E4SSP4: Oxidoreductase, putative	0.3442284422
+UniRef50_E4SSP4: Oxidoreductase, putative|unclassified	0.3442284422
+UniRef50_G4AJA7: Oligopeptidase A	0.3442160855
+UniRef50_G4AJA7: Oligopeptidase A|unclassified	0.3442160855
+UniRef50_UPI0003C1A958: PREDICTED: CTP synthase 2-like	0.3441987968
+UniRef50_UPI0003C1A958: PREDICTED: CTP synthase 2-like|unclassified	0.3441987968
+UniRef50_UPI00034CDE56: hypothetical protein	0.3441859991
+UniRef50_UPI00034CDE56: hypothetical protein|unclassified	0.3441859991
+UniRef50_UPI000161F42E: predicted protein	0.3441770036
+UniRef50_UPI000161F42E: predicted protein|unclassified	0.3441770036
+UniRef50_UPI0003B63590: LuxR family transcriptional regulator	0.3441310348
+UniRef50_UPI0003B63590: LuxR family transcriptional regulator|unclassified	0.3441310348
+UniRef50_V5SW22	0.3441292901
+UniRef50_V5SW22|unclassified	0.3441292901
+UniRef50_UPI000366D5F6: hypothetical protein	0.3441244422
+UniRef50_UPI000366D5F6: hypothetical protein|unclassified	0.3441244422
+UniRef50_UPI0004727736: methyltransferase type 11	0.3440168537
+UniRef50_UPI0004727736: methyltransferase type 11|unclassified	0.3440168537
+UniRef50_UPI0002FB4076: hypothetical protein	0.3439890676
+UniRef50_UPI0002FB4076: hypothetical protein|unclassified	0.3439890676
+UniRef50_G2TFN0: 3-beta-hydroxy-delta(5)-steroid dehydrogenase	0.3439641116
+UniRef50_G2TFN0: 3-beta-hydroxy-delta(5)-steroid dehydrogenase|unclassified	0.3439641116
+UniRef50_UPI000418CC5A: hypothetical protein	0.3439336766
+UniRef50_UPI000418CC5A: hypothetical protein|unclassified	0.3439336766
+UniRef50_X2N2R7: Thiamine biosynthesis protein ThiQ	0.3439099537
+UniRef50_X2N2R7: Thiamine biosynthesis protein ThiQ|unclassified	0.3439099537
+UniRef50_Q9RWU2	0.3438789546
+UniRef50_Q9RWU2|g__Deinococcus.s__Deinococcus_radiodurans	0.3438789546
+UniRef50_Q5NMV7: NAD kinase	0.3438458487
+UniRef50_Q5NMV7: NAD kinase|unclassified	0.3438458487
+UniRef50_G8ARZ2	0.3438380619
+UniRef50_G8ARZ2|unclassified	0.3438380619
+UniRef50_L0I9M2	0.3438378149
+UniRef50_L0I9M2|unclassified	0.3438378149
+UniRef50_V6JJY2	0.3438227726
+UniRef50_V6JJY2|unclassified	0.3438227726
+UniRef50_Q3STL3: Heat shock protein Hsp20	0.3437199998
+UniRef50_Q3STL3: Heat shock protein Hsp20|unclassified	0.3437199998
+UniRef50_UPI000381EEA4: membrane protein	0.3436955164
+UniRef50_UPI000381EEA4: membrane protein|unclassified	0.3436955164
+UniRef50_Q322I7: IS911 ORF2	0.3436722538
+UniRef50_Q322I7: IS911 ORF2|unclassified	0.3436722538
+UniRef50_UPI00035D6A77: hypothetical protein	0.3436627305
+UniRef50_UPI00035D6A77: hypothetical protein|unclassified	0.3436627305
+UniRef50_T5K6B1	0.3436352038
+UniRef50_T5K6B1|unclassified	0.3436352038
+UniRef50_UPI0004753801: 5-hydroxyisourate hydrolase	0.3436152195
+UniRef50_UPI0004753801: 5-hydroxyisourate hydrolase|unclassified	0.3436152195
+UniRef50_UPI000443602C: PREDICTED: serine/arginine repetitive matrix protein 1-like	0.3436055440
+UniRef50_UPI000443602C: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	0.3436055440
+UniRef50_M0Y9A3	0.3435401826
+UniRef50_M0Y9A3|unclassified	0.3435401826
+UniRef50_M5DRB2	0.3434491751
+UniRef50_M5DRB2|unclassified	0.3434491751
+UniRef50_D6XAW3	0.3434271215
+UniRef50_D6XAW3|unclassified	0.3434271215
+UniRef50_U2KHC3	0.3433930818
+UniRef50_U2KHC3|unclassified	0.3433930818
+UniRef50_UPI00046CDAB7: hypothetical protein, partial	0.3433675553
+UniRef50_UPI00046CDAB7: hypothetical protein, partial|unclassified	0.3433675553
+UniRef50_UPI000376B1F1: hypothetical protein, partial	0.3433539125
+UniRef50_UPI000376B1F1: hypothetical protein, partial|unclassified	0.3433539125
+UniRef50_UPI00039EE060: ABC transporter	0.3433149920
+UniRef50_UPI00039EE060: ABC transporter|unclassified	0.3433149920
+UniRef50_UPI00022CAA6A: PREDICTED: lactoylglutathione lyase-like	0.3432927681
+UniRef50_UPI00022CAA6A: PREDICTED: lactoylglutathione lyase-like|unclassified	0.3432927681
+UniRef50_UPI0003725D65: hypothetical protein	0.3432917391
+UniRef50_UPI0003725D65: hypothetical protein|unclassified	0.3432917391
+UniRef50_M3AJX2	0.3432852078
+UniRef50_M3AJX2|unclassified	0.3432852078
+UniRef50_Q04805	0.3432385584
+UniRef50_Q04805|unclassified	0.3432385584
+UniRef50_B0UMB7	0.3432216550
+UniRef50_B0UMB7|unclassified	0.3432216550
+UniRef50_Q3ZZJ7: Malate dehydrogenase	0.3432032216
+UniRef50_Q3ZZJ7: Malate dehydrogenase|unclassified	0.3432032216
+UniRef50_UPI00034F9958: PREDICTED: formin-like protein 3-like	0.3431609759
+UniRef50_UPI00034F9958: PREDICTED: formin-like protein 3-like|unclassified	0.3431609759
+UniRef50_UPI0003655030: hypothetical protein	0.3430911700
+UniRef50_UPI0003655030: hypothetical protein|unclassified	0.3430911700
+UniRef50_W5XBY9: Sugar ABC transporter permease	0.3430898634
+UniRef50_W5XBY9: Sugar ABC transporter permease|unclassified	0.3430898634
+UniRef50_UPI00029AF092: multidrug transport protein, mfs family	0.3430708263
+UniRef50_UPI00029AF092: multidrug transport protein, mfs family|unclassified	0.3430708263
+UniRef50_M4WUD7: Lipoprotein	0.3430568888
+UniRef50_M4WUD7: Lipoprotein|unclassified	0.3430568888
+UniRef50_Q21UW4	0.3430017072
+UniRef50_Q21UW4|unclassified	0.3430017072
+UniRef50_UPI0003ABA403: PREDICTED: extensin-like	0.3429976564
+UniRef50_UPI0003ABA403: PREDICTED: extensin-like|unclassified	0.3429976564
+UniRef50_U1ZRS2	0.3429807196
+UniRef50_U1ZRS2|unclassified	0.3429807196
+UniRef50_UPI000380B8C3: hypothetical protein	0.3429764200
+UniRef50_UPI000380B8C3: hypothetical protein|unclassified	0.3429764200
+UniRef50_D0LY32: MJ0042 family finger-like protein	0.3429355281
+UniRef50_D0LY32: MJ0042 family finger-like protein|unclassified	0.3429355281
+UniRef50_UPI0003724FF6: hypothetical protein	0.3429234256
+UniRef50_UPI0003724FF6: hypothetical protein|unclassified	0.3429234256
+UniRef50_UPI0004783915: hypothetical protein, partial	0.3429190866
+UniRef50_UPI0004783915: hypothetical protein, partial|unclassified	0.3429190866
+UniRef50_W6KMY9: Putative diheme cytochrome c	0.3428964551
+UniRef50_W6KMY9: Putative diheme cytochrome c|unclassified	0.3428964551
+UniRef50_I7EMC8	0.3428766235
+UniRef50_I7EMC8|unclassified	0.3428766235
+UniRef50_A0A029J2A6	0.3428532020
+UniRef50_A0A029J2A6|unclassified	0.3428532020
+UniRef50_Q5F7E0: ATP phosphoribosyltransferase	0.3428422780
+UniRef50_Q5F7E0: ATP phosphoribosyltransferase|unclassified	0.3428422780
+UniRef50_F6ZMA7	0.3428260299
+UniRef50_F6ZMA7|unclassified	0.3428260299
+UniRef50_E3J4B2: Diguanylate cyclase/phosphodiesterase	0.3428179637
+UniRef50_E3J4B2: Diguanylate cyclase/phosphodiesterase|unclassified	0.3428179637
+UniRef50_A0A058ZAZ3	0.3428051008
+UniRef50_A0A058ZAZ3|unclassified	0.3428051008
+UniRef50_UPI0003F95C37: PTS system cellobiose-specific transporter subunit IIA	0.3427200258
+UniRef50_UPI0003F95C37: PTS system cellobiose-specific transporter subunit IIA|unclassified	0.3427200258
+UniRef50_K8E2T1	0.3427183420
+UniRef50_K8E2T1|unclassified	0.3427183420
+UniRef50_UPI00029AF681: signal peptidase I	0.3426943385
+UniRef50_UPI00029AF681: signal peptidase I|unclassified	0.3426943385
+UniRef50_UPI0003729A3D: hypothetical protein	0.3426466640
+UniRef50_UPI0003729A3D: hypothetical protein|unclassified	0.3426466640
+UniRef50_Q13PY7	0.3426196174
+UniRef50_Q13PY7|unclassified	0.3426196174
+UniRef50_UPI000370B04C: hypothetical protein	0.3426087093
+UniRef50_UPI000370B04C: hypothetical protein|unclassified	0.3426087093
+UniRef50_UPI000478885D: copper resistance protein	0.3425938802
+UniRef50_UPI000478885D: copper resistance protein|unclassified	0.3425938802
+UniRef50_A9MRG4	0.3425837166
+UniRef50_A9MRG4|unclassified	0.3425837166
+UniRef50_O05946: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.3425608086
+UniRef50_O05946: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.3425608086
+UniRef50_UPI00037A63D1: hypothetical protein, partial	0.3425458498
+UniRef50_UPI00037A63D1: hypothetical protein, partial|unclassified	0.3425458498
+UniRef50_UPI0003B6FA07: D-ribose transporter ATP binding protein	0.3425007646
+UniRef50_UPI0003B6FA07: D-ribose transporter ATP binding protein|unclassified	0.3425007646
+UniRef50_D5H7Z4	0.3424420030
+UniRef50_D5H7Z4|unclassified	0.3424420030
+UniRef50_U6GZ97	0.3424224536
+UniRef50_U6GZ97|unclassified	0.3424224536
+UniRef50_UPI00038FA156: Urease subunit gamma/beta	0.3424195525
+UniRef50_UPI00038FA156: Urease subunit gamma/beta|unclassified	0.3424195525
+UniRef50_UPI0003B40AC0: NADP-dependent oxidoreductase	0.3423345746
+UniRef50_UPI0003B40AC0: NADP-dependent oxidoreductase|unclassified	0.3423345746
+UniRef50_UPI00036B8D88: hypothetical protein	0.3422283110
+UniRef50_UPI00036B8D88: hypothetical protein|unclassified	0.3422283110
+UniRef50_E3EYC4	0.3421821749
+UniRef50_E3EYC4|unclassified	0.3421821749
+UniRef50_J8AR17	0.3421335745
+UniRef50_J8AR17|unclassified	0.3421335745
+UniRef50_UPI0003A95978: hypothetical protein	0.3421074391
+UniRef50_UPI0003A95978: hypothetical protein|unclassified	0.3421074391
+UniRef50_UPI0003B53EFD: hypothetical protein	0.3420915627
+UniRef50_UPI0003B53EFD: hypothetical protein|unclassified	0.3420915627
+UniRef50_UPI000463CE7C: hypothetical protein, partial	0.3420845162
+UniRef50_UPI000463CE7C: hypothetical protein, partial|unclassified	0.3420845162
+UniRef50_C6WU54: Cbb3-type cytochrome oxidase component	0.3420394509
+UniRef50_C6WU54: Cbb3-type cytochrome oxidase component|unclassified	0.3420394509
+UniRef50_UPI00037F9CB9: hypothetical protein	0.3419950927
+UniRef50_UPI00037F9CB9: hypothetical protein|unclassified	0.3419950927
+UniRef50_UPI0004633377: hypothetical protein	0.3419699017
+UniRef50_UPI0004633377: hypothetical protein|unclassified	0.3419699017
+UniRef50_Q2JH40	0.3419059704
+UniRef50_Q2JH40|unclassified	0.3419059704
+UniRef50_UPI0002D8E4B0: hypothetical protein	0.3418672346
+UniRef50_UPI0002D8E4B0: hypothetical protein|unclassified	0.3418672346
+UniRef50_UPI0002D625FB: hypothetical protein	0.3418633262
+UniRef50_UPI0002D625FB: hypothetical protein|unclassified	0.3418633262
+UniRef50_S6T135: Dipeptide ABC transporter permease (Fragment)	0.3418614589
+UniRef50_S6T135: Dipeptide ABC transporter permease (Fragment)|unclassified	0.3418614589
+UniRef50_UPI00037AD42D: N-methylproline demethylase, partial	0.3418235793
+UniRef50_UPI00037AD42D: N-methylproline demethylase, partial|unclassified	0.3418235793
+UniRef50_J1EAR5	0.3418000459
+UniRef50_J1EAR5|unclassified	0.3418000459
+UniRef50_UPI0003610FEF: hypothetical protein	0.3417954387
+UniRef50_UPI0003610FEF: hypothetical protein|unclassified	0.3417954387
+UniRef50_UPI0003B7313F: GNAT family acetyltransferase	0.3417863177
+UniRef50_UPI0003B7313F: GNAT family acetyltransferase|unclassified	0.3417863177
+UniRef50_UPI00035F4034: hypothetical protein	0.3417790305
+UniRef50_UPI00035F4034: hypothetical protein|unclassified	0.3417790305
+UniRef50_W1PW22	0.3417539249
+UniRef50_W1PW22|unclassified	0.3417539249
+UniRef50_D0DBY1: Nitrogen-fixing NifU domain protein	0.3417466834
+UniRef50_D0DBY1: Nitrogen-fixing NifU domain protein|unclassified	0.3417466834
+UniRef50_UPI00036CE3D7: hypothetical protein, partial	0.3417236544
+UniRef50_UPI00036CE3D7: hypothetical protein, partial|unclassified	0.3417236544
+UniRef50_UPI000372F683: hypothetical protein	0.3417092428
+UniRef50_UPI000372F683: hypothetical protein|unclassified	0.3417092428
+UniRef50_G5R7L2: Putative cytoplasmic protein	0.3417081261
+UniRef50_G5R7L2: Putative cytoplasmic protein|unclassified	0.3417081261
+UniRef50_Q5ZAV2: Antigen-like protein	0.3416528202
+UniRef50_Q5ZAV2: Antigen-like protein|unclassified	0.3416528202
+UniRef50_J3XAF4: Membrane-flanked domain-containing protein	0.3416517618
+UniRef50_J3XAF4: Membrane-flanked domain-containing protein|unclassified	0.3416517618
+UniRef50_UPI0004669AF2: hypothetical protein, partial	0.3416517348
+UniRef50_UPI0004669AF2: hypothetical protein, partial|unclassified	0.3416517348
+UniRef50_UPI0003760E4A: hypothetical protein	0.3416136399
+UniRef50_UPI0003760E4A: hypothetical protein|unclassified	0.3416136399
+UniRef50_UPI000406F7D9: cytochrome oxidase maturation protein Cbb3	0.3415863183
+UniRef50_UPI000406F7D9: cytochrome oxidase maturation protein Cbb3|unclassified	0.3415863183
+UniRef50_UPI0002DDF67E: hypothetical protein	0.3415836584
+UniRef50_UPI0002DDF67E: hypothetical protein|unclassified	0.3415836584
+UniRef50_X1UZY5: Marine sediment metagenome DNA, contig: S12H4_S16345 (Fragment)	0.3415726349
+UniRef50_X1UZY5: Marine sediment metagenome DNA, contig: S12H4_S16345 (Fragment)|unclassified	0.3415726349
+UniRef50_Q31GG8: Siroheme synthase	0.3415272073
+UniRef50_Q31GG8: Siroheme synthase|unclassified	0.3415272073
+UniRef50_C8XBK0: Transcriptional regulator, Fis family	0.3415177315
+UniRef50_C8XBK0: Transcriptional regulator, Fis family|unclassified	0.3415177315
+UniRef50_A1V0Z6	0.3414923783
+UniRef50_A1V0Z6|unclassified	0.3414923783
+UniRef50_C5C445: YCII-related protein	0.3414854153
+UniRef50_C5C445: YCII-related protein|unclassified	0.3414854153
+UniRef50_UPI000467BD7C: membrane protein, partial	0.3414755774
+UniRef50_UPI000467BD7C: membrane protein, partial|unclassified	0.3414755774
+UniRef50_W8SKS9	0.3414427309
+UniRef50_W8SKS9|unclassified	0.3414427309
+UniRef50_A0A033UU18	0.3414377670
+UniRef50_A0A033UU18|unclassified	0.3414377670
+UniRef50_UPI00037FC52E: hypothetical protein	0.3414354864
+UniRef50_UPI00037FC52E: hypothetical protein|unclassified	0.3414354864
+UniRef50_UPI0003A0AA3D: hypothetical protein	0.3414186998
+UniRef50_UPI0003A0AA3D: hypothetical protein|unclassified	0.3414186998
+UniRef50_I1AQX6	0.3413604029
+UniRef50_I1AQX6|unclassified	0.3413604029
+UniRef50_UPI00046961B9: hypothetical protein	0.3413143882
+UniRef50_UPI00046961B9: hypothetical protein|unclassified	0.3413143882
+UniRef50_UPI000369649D: hypothetical protein	0.3413143648
+UniRef50_UPI000369649D: hypothetical protein|unclassified	0.3413143648
+UniRef50_UPI00035D5E7D: hypothetical protein	0.3412969997
+UniRef50_UPI00035D5E7D: hypothetical protein|unclassified	0.3412969997
+UniRef50_Q9RXB5	0.3412969283
+UniRef50_Q9RXB5|g__Deinococcus.s__Deinococcus_radiodurans	0.3412969283
+UniRef50_G9A115	0.3412938585
+UniRef50_G9A115|unclassified	0.3412938585
+UniRef50_B9KX93: ParB-like nuclease	0.3412900537
+UniRef50_B9KX93: ParB-like nuclease|unclassified	0.3412900537
+UniRef50_Q5E727: Urease subunit beta	0.3412692395
+UniRef50_Q5E727: Urease subunit beta|unclassified	0.3412692395
+UniRef50_Y5Q528	0.3412360661
+UniRef50_Y5Q528|unclassified	0.3412360661
+UniRef50_UPI00037A3C96: hypothetical protein	0.3412093240
+UniRef50_UPI00037A3C96: hypothetical protein|unclassified	0.3412093240
+UniRef50_P44598: Non-canonical purine NTP pyrophosphatase	0.3412058965
+UniRef50_P44598: Non-canonical purine NTP pyrophosphatase|unclassified	0.3412058965
+UniRef50_K8YFN5: SdrD protein	0.3411747609
+UniRef50_K8YFN5: SdrD protein|unclassified	0.3411747609
+UniRef50_UPI00046C8B78: hypothetical protein	0.3411378834
+UniRef50_UPI00046C8B78: hypothetical protein|unclassified	0.3411378834
+UniRef50_UPI00031EE013: hypothetical protein	0.3411287018
+UniRef50_UPI00031EE013: hypothetical protein|unclassified	0.3411287018
+UniRef50_Q1C3J5: Mannitol-1-phosphate 5-dehydrogenase	0.3411225980
+UniRef50_Q1C3J5: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.3411225980
+UniRef50_M3Z7R3	0.3411114071
+UniRef50_M3Z7R3|unclassified	0.3411114071
+UniRef50_R1E0D8	0.3410813039
+UniRef50_R1E0D8|unclassified	0.3410813039
+UniRef50_F0GAR1: Binding-protein-dependent transport systems inner membrane component (Fragment)	0.3410248209
+UniRef50_F0GAR1: Binding-protein-dependent transport systems inner membrane component (Fragment)|unclassified	0.3410248209
+UniRef50_UPI00039E89CA: hypothetical protein	0.3410137962
+UniRef50_UPI00039E89CA: hypothetical protein|unclassified	0.3410137962
+UniRef50_UPI000289F1D5: family 1 extracellular solute-binding protein	0.3410026917
+UniRef50_UPI000289F1D5: family 1 extracellular solute-binding protein|unclassified	0.3410026917
+UniRef50_Q0A6T1: Phosphoadenosine phosphosulfate reductase	0.3409896434
+UniRef50_Q0A6T1: Phosphoadenosine phosphosulfate reductase|unclassified	0.3409896434
+UniRef50_UPI00047E7897: cold-shock protein	0.3409864242
+UniRef50_UPI00047E7897: cold-shock protein|unclassified	0.3409864242
+UniRef50_UPI00037CC186: hypothetical protein, partial	0.3409438450
+UniRef50_UPI00037CC186: hypothetical protein, partial|unclassified	0.3409438450
+UniRef50_UPI00037D9792: hypothetical protein	0.3409411873
+UniRef50_UPI00037D9792: hypothetical protein|unclassified	0.3409411873
+UniRef50_K7S3L7: Putative glucoamylase S1/S2	0.3409088009
+UniRef50_K7S3L7: Putative glucoamylase S1/S2|unclassified	0.3409088009
+UniRef50_UPI0004626A14: PREDICTED: retinitis pigmentosa 1-like 1 protein	0.3408346759
+UniRef50_UPI0004626A14: PREDICTED: retinitis pigmentosa 1-like 1 protein|unclassified	0.3408346759
+UniRef50_Q3JKL4	0.3408316292
+UniRef50_Q3JKL4|unclassified	0.3408316292
+UniRef50_X1TGY9: Marine sediment metagenome DNA, contig: S12H4_L01364 (Fragment)	0.3407780119
+UniRef50_X1TGY9: Marine sediment metagenome DNA, contig: S12H4_L01364 (Fragment)|unclassified	0.3407780119
+UniRef50_A5A6B2: ISSfl4 ORF3	0.3407462215
+UniRef50_A5A6B2: ISSfl4 ORF3|unclassified	0.3407462215
+UniRef50_UPI00040C1A9F: hypothetical protein	0.3405994550
+UniRef50_UPI00040C1A9F: hypothetical protein|unclassified	0.3405994550
+UniRef50_UPI0003AD4EF4: hypothetical protein	0.3405929867
+UniRef50_UPI0003AD4EF4: hypothetical protein|unclassified	0.3405929867
+UniRef50_UPI0004078362: plasmid partitioning protein	0.3405663642
+UniRef50_UPI0004078362: plasmid partitioning protein|unclassified	0.3405663642
+UniRef50_UPI0002625FD0: binding-protein-dependent transporter inner membrane component, partial	0.3405619913
+UniRef50_UPI0002625FD0: binding-protein-dependent transporter inner membrane component, partial|unclassified	0.3405619913
+UniRef50_S4Y584	0.3405543684
+UniRef50_S4Y584|unclassified	0.3405543684
+UniRef50_M5RA66: mRNA 3'-end processing factor	0.3405415189
+UniRef50_M5RA66: mRNA 3'-end processing factor|unclassified	0.3405415189
+UniRef50_UPI0004728112: shikimate dehydrogenase, partial	0.3404814262
+UniRef50_UPI0004728112: shikimate dehydrogenase, partial|unclassified	0.3404814262
+UniRef50_P55785: Heptaprenyl diphosphate synthase component 2	0.3404563054
+UniRef50_P55785: Heptaprenyl diphosphate synthase component 2|unclassified	0.3404563054
+UniRef50_Q9WY54: Aminomethyltransferase	0.3404550994
+UniRef50_Q9WY54: Aminomethyltransferase|unclassified	0.3404550994
+UniRef50_UPI000479BB88: hypothetical protein	0.3404460121
+UniRef50_UPI000479BB88: hypothetical protein|unclassified	0.3404460121
+UniRef50_UPI0004655EFA: hypothetical protein	0.3404327668
+UniRef50_UPI0004655EFA: hypothetical protein|unclassified	0.3404327668
+UniRef50_W4K607	0.3403978221
+UniRef50_W4K607|unclassified	0.3403978221
+UniRef50_P78029: Thymidylate synthase	0.3403963847
+UniRef50_P78029: Thymidylate synthase|unclassified	0.3403963847
+UniRef50_UPI0003B77390: DNA-directed RNA polymerase subunit alpha	0.3403825498
+UniRef50_UPI0003B77390: DNA-directed RNA polymerase subunit alpha|unclassified	0.3403825498
+UniRef50_UPI00046744A4: hypothetical protein	0.3403822602
+UniRef50_UPI00046744A4: hypothetical protein|unclassified	0.3403822602
+UniRef50_UPI0003C82B9F: PREDICTED: ubiquitin carboxyl-terminal hydrolase 36	0.3403675970
+UniRef50_UPI0003C82B9F: PREDICTED: ubiquitin carboxyl-terminal hydrolase 36|unclassified	0.3403675970
+UniRef50_UPI00028947D1: hypothetical protein	0.3403230530
+UniRef50_UPI00028947D1: hypothetical protein|unclassified	0.3403230530
+UniRef50_UPI0003B4E902: hypothetical protein	0.3402924262
+UniRef50_UPI0003B4E902: hypothetical protein|unclassified	0.3402924262
+UniRef50_Q9K0V3: N-acetylmuramoyl-L-alanine amidase AmiC	0.3402663756
+UniRef50_Q9K0V3: N-acetylmuramoyl-L-alanine amidase AmiC|unclassified	0.3402663756
+UniRef50_U0NVQ4	0.3402656356
+UniRef50_U0NVQ4|unclassified	0.3402656356
+UniRef50_UPI00034DE802: peptide ABC transporter ATPase	0.3402572412
+UniRef50_UPI00034DE802: peptide ABC transporter ATPase|unclassified	0.3402572412
+UniRef50_UPI00034FE84B: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial-like	0.3402537297
+UniRef50_UPI00034FE84B: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial-like|unclassified	0.3402537297
+UniRef50_Q99J99: 3-mercaptopyruvate sulfurtransferase	0.3402498365
+UniRef50_Q99J99: 3-mercaptopyruvate sulfurtransferase|unclassified	0.3402498365
+UniRef50_P0AF62	0.3402296060
+UniRef50_P0AF62|unclassified	0.3402296060
+UniRef50_Q2LTJ0: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.3402205904
+UniRef50_Q2LTJ0: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.3402205904
+UniRef50_R9PNL9	0.3402205679
+UniRef50_R9PNL9|unclassified	0.3402205679
+UniRef50_A6KXK3: 3-oxoacyl-[acyl-carrier-protein] synthase 3	0.3402141457
+UniRef50_A6KXK3: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	0.3402141457
+UniRef50_K0ADZ5	0.3401567750
+UniRef50_K0ADZ5|unclassified	0.3401567750
+UniRef50_Q00302: Mitochondrial-processing peptidase subunit beta	0.3401534476
+UniRef50_Q00302: Mitochondrial-processing peptidase subunit beta|unclassified	0.3401534476
+UniRef50_Q4JY98: UPF0145 protein jk0060	0.3401486719
+UniRef50_Q4JY98: UPF0145 protein jk0060|unclassified	0.3401486719
+UniRef50_Q1IC36	0.3401191091
+UniRef50_Q1IC36|unclassified	0.3401191091
+UniRef50_UPI000371284B: hypothetical protein	0.3401059951
+UniRef50_UPI000371284B: hypothetical protein|unclassified	0.3401059951
+UniRef50_F7Y2V0	0.3400909481
+UniRef50_F7Y2V0|unclassified	0.3400909481
+UniRef50_A8HSZ5: Phenylacetic acid degradation-related protein	0.3400668178
+UniRef50_A8HSZ5: Phenylacetic acid degradation-related protein|unclassified	0.3400668178
+UniRef50_Q58033: N5-carboxyaminoimidazole ribonucleotide mutase	0.3400532462
+UniRef50_Q58033: N5-carboxyaminoimidazole ribonucleotide mutase|unclassified	0.3400532462
+UniRef50_K8EHU8	0.3399995263
+UniRef50_K8EHU8|unclassified	0.3399995263
+UniRef50_UPI000369EE8C: hypothetical protein, partial	0.3399776556
+UniRef50_UPI000369EE8C: hypothetical protein, partial|unclassified	0.3399776556
+UniRef50_W9TV07: tRNA uridine 5-carboxymethylaminomethyl modification protein GidA	0.3399550282
+UniRef50_W9TV07: tRNA uridine 5-carboxymethylaminomethyl modification protein GidA|unclassified	0.3399550282
+UniRef50_D4GFR2: YgiW	0.3399525002
+UniRef50_D4GFR2: YgiW|unclassified	0.3399525002
+UniRef50_Q98HX0: Mll2675 protein	0.3399393991
+UniRef50_Q98HX0: Mll2675 protein|unclassified	0.3399393991
+UniRef50_A4EL94	0.3399306682
+UniRef50_A4EL94|unclassified	0.3399306682
+UniRef50_A0A058Z2D7	0.3399264935
+UniRef50_A0A058Z2D7|unclassified	0.3399264935
+UniRef50_R1C979	0.3398936199
+UniRef50_R1C979|unclassified	0.3398936199
+UniRef50_Q1MK98	0.3398811237
+UniRef50_Q1MK98|unclassified	0.3398811237
+UniRef50_O83571: Transketolase	0.3398425396
+UniRef50_O83571: Transketolase|unclassified	0.3398425396
+UniRef50_B8ZUM2: S-adenosylmethionine synthase	0.3398333962
+UniRef50_B8ZUM2: S-adenosylmethionine synthase|unclassified	0.3398333962
+UniRef50_F8JWN1	0.3398299617
+UniRef50_F8JWN1|unclassified	0.3398299617
+UniRef50_UPI0004726E09: porin	0.3398136274
+UniRef50_UPI0004726E09: porin|unclassified	0.3398136274
+UniRef50_K5VFU9	0.3398044060
+UniRef50_K5VFU9|unclassified	0.3398044060
+UniRef50_UPI0002484134: hemolysin-type calcium-binding protein	0.3397603691
+UniRef50_UPI0002484134: hemolysin-type calcium-binding protein|unclassified	0.3397603691
+UniRef50_A3SPN1: Invasion associated family protein	0.3397514891
+UniRef50_A3SPN1: Invasion associated family protein|unclassified	0.3397514891
+UniRef50_R8U4E5	0.3397156063
+UniRef50_R8U4E5|unclassified	0.3397156063
+UniRef50_UPI0004707041: flagellar motor protein MotA	0.3396997499
+UniRef50_UPI0004707041: flagellar motor protein MotA|unclassified	0.3396997499
+UniRef50_UPI000471D82C: hypothetical protein	0.3396930866
+UniRef50_UPI000471D82C: hypothetical protein|unclassified	0.3396930866
+UniRef50_W4LJL0	0.3396908774
+UniRef50_W4LJL0|unclassified	0.3396908774
+UniRef50_Q8EQT3: Dipicolinate synthase subunit A	0.3396660973
+UniRef50_Q8EQT3: Dipicolinate synthase subunit A|unclassified	0.3396660973
+UniRef50_UPI00031698A8: hypothetical protein	0.3396520119
+UniRef50_UPI00031698A8: hypothetical protein|unclassified	0.3396520119
+UniRef50_UPI0001BF6DAA: hypothetical protein SMAC_12022, partial	0.3396063832
+UniRef50_UPI0001BF6DAA: hypothetical protein SMAC_12022, partial|unclassified	0.3396063832
+UniRef50_J7QFW9	0.3396033518
+UniRef50_J7QFW9|unclassified	0.3396033518
+UniRef50_C5B627	0.3395698369
+UniRef50_C5B627|unclassified	0.3395698369
+UniRef50_A4CFF4: Excinuclease ABC subunit C	0.3395042524
+UniRef50_A4CFF4: Excinuclease ABC subunit C|unclassified	0.3395042524
+UniRef50_Q0A4L8: Ribosomal RNA small subunit methyltransferase G	0.3394581232
+UniRef50_Q0A4L8: Ribosomal RNA small subunit methyltransferase G|unclassified	0.3394581232
+UniRef50_J8RRU8	0.3394404928
+UniRef50_J8RRU8|unclassified	0.3394404928
+UniRef50_UPI000469D26A: hypothetical protein	0.3394099908
+UniRef50_UPI000469D26A: hypothetical protein|unclassified	0.3394099908
+UniRef50_UPI00037F51CD: MULTISPECIES: hypothetical protein	0.3393036524
+UniRef50_UPI00037F51CD: MULTISPECIES: hypothetical protein|unclassified	0.3393036524
+UniRef50_UPI0003637808: hypothetical protein	0.3392814499
+UniRef50_UPI0003637808: hypothetical protein|unclassified	0.3392814499
+UniRef50_E3ZIE5	0.3392739533
+UniRef50_E3ZIE5|unclassified	0.3392739533
+UniRef50_Q98M84: Glycerol-3-phosphate acyltransferase	0.3392541061
+UniRef50_Q98M84: Glycerol-3-phosphate acyltransferase|unclassified	0.3392541061
+UniRef50_M1TQL6: Fe-S-cluster redox enzyme	0.3392238774
+UniRef50_M1TQL6: Fe-S-cluster redox enzyme|unclassified	0.3392238774
+UniRef50_K2FTF6: Membrane-fusion protein	0.3391975977
+UniRef50_K2FTF6: Membrane-fusion protein|unclassified	0.3391975977
+UniRef50_UPI0003B3A2DC: formate dehydrogenase	0.3391633464
+UniRef50_UPI0003B3A2DC: formate dehydrogenase|unclassified	0.3391633464
+UniRef50_UPI00037614D7: hypothetical protein	0.3391548265
+UniRef50_UPI00037614D7: hypothetical protein|unclassified	0.3391548265
+UniRef50_UPI0004785A72: dihydroxy-acid dehydratase	0.3391467136
+UniRef50_UPI0004785A72: dihydroxy-acid dehydratase|unclassified	0.3391467136
+UniRef50_S9A836: Metallophosphatase (Fragment)	0.3390935205
+UniRef50_S9A836: Metallophosphatase (Fragment)|unclassified	0.3390935205
+UniRef50_UPI0003B69FD9: hypothetical protein	0.3390902919
+UniRef50_UPI0003B69FD9: hypothetical protein|unclassified	0.3390902919
+UniRef50_B1XVI8: Transcriptional regulator, LysR family	0.3390674138
+UniRef50_B1XVI8: Transcriptional regulator, LysR family|unclassified	0.3390674138
+UniRef50_K0R9Z2	0.3390451441
+UniRef50_K0R9Z2|unclassified	0.3390451441
+UniRef50_C6M4I5	0.3390418628
+UniRef50_C6M4I5|unclassified	0.3390418628
+UniRef50_K1MCV2	0.3390119133
+UniRef50_K1MCV2|unclassified	0.3390119133
+UniRef50_M4HXB8	0.3390023628
+UniRef50_M4HXB8|unclassified	0.3390023628
+UniRef50_UPI0003B455FA: membrane protein, partial	0.3389608958
+UniRef50_UPI0003B455FA: membrane protein, partial|unclassified	0.3389608958
+UniRef50_I2ICF5: Transposase	0.3389546920
+UniRef50_I2ICF5: Transposase|unclassified	0.3389546920
+UniRef50_Q8ZH55: Lipid-A-disaccharide synthase	0.3389329202
+UniRef50_Q8ZH55: Lipid-A-disaccharide synthase|unclassified	0.3389329202
+UniRef50_UPI00037EBB20: hypothetical protein	0.3389275780
+UniRef50_UPI00037EBB20: hypothetical protein|unclassified	0.3389275780
+UniRef50_W4CNH3	0.3389256058
+UniRef50_W4CNH3|unclassified	0.3389256058
+UniRef50_R5WFS8	0.3389163196
+UniRef50_R5WFS8|unclassified	0.3389163196
+UniRef50_F0YL66	0.3389154792
+UniRef50_F0YL66|unclassified	0.3389154792
+UniRef50_Q4C9W9	0.3388630580
+UniRef50_Q4C9W9|unclassified	0.3388630580
+UniRef50_H3UL09: Lysine decarboxylase domain protein	0.3388551649
+UniRef50_H3UL09: Lysine decarboxylase domain protein|unclassified	0.3388551649
+UniRef50_M9RIH4: TAXI-family TRAP-transporter periplasmatic solute-binding protein	0.3388085345
+UniRef50_M9RIH4: TAXI-family TRAP-transporter periplasmatic solute-binding protein|unclassified	0.3388085345
+UniRef50_G2RQU5	0.3387823578
+UniRef50_G2RQU5|unclassified	0.3387823578
+UniRef50_F4LNL2: Extracellular solute-binding protein family 1	0.3386887387
+UniRef50_F4LNL2: Extracellular solute-binding protein family 1|unclassified	0.3386887387
+UniRef50_E3I2H6	0.3386749703
+UniRef50_E3I2H6|unclassified	0.3386749703
+UniRef50_UPI0003B3A297: hypothetical protein, partial	0.3386372524
+UniRef50_UPI0003B3A297: hypothetical protein, partial|unclassified	0.3386372524
+UniRef50_UPI00036E7F68: hypothetical protein	0.3386350216
+UniRef50_UPI00036E7F68: hypothetical protein|unclassified	0.3386350216
+UniRef50_G2DDB6	0.3386280874
+UniRef50_G2DDB6|unclassified	0.3386280874
+UniRef50_M4D1J6	0.3386203803
+UniRef50_M4D1J6|unclassified	0.3386203803
+UniRef50_A7HA47: LigA	0.3385652141
+UniRef50_A7HA47: LigA|unclassified	0.3385652141
+UniRef50_A0YET1: Predicted transcriptional regulator, BolA superfamily protein	0.3385628048
+UniRef50_A0YET1: Predicted transcriptional regulator, BolA superfamily protein|unclassified	0.3385628048
+UniRef50_N8J4Y3: sn-glycerol-3-phosphate-binding periplasmic protein ugpB	0.3385440166
+UniRef50_N8J4Y3: sn-glycerol-3-phosphate-binding periplasmic protein ugpB|unclassified	0.3385440166
+UniRef50_W4L6K6	0.3385383773
+UniRef50_W4L6K6|unclassified	0.3385383773
+UniRef50_B3EBT3: Transposase IS4 family protein	0.3385102835
+UniRef50_B3EBT3: Transposase IS4 family protein|unclassified	0.3385102835
+UniRef50_UPI00045612AE: hypothetical protein PFL1_00463	0.3385050196
+UniRef50_UPI00045612AE: hypothetical protein PFL1_00463|unclassified	0.3385050196
+UniRef50_K8B5X1	0.3384953392
+UniRef50_K8B5X1|unclassified	0.3384953392
+UniRef50_F8FKS7: YyzM	0.3384594387
+UniRef50_F8FKS7: YyzM|unclassified	0.3384594387
+UniRef50_UPI00036FB829: hypothetical protein	0.3384466608
+UniRef50_UPI00036FB829: hypothetical protein|unclassified	0.3384466608
+UniRef50_UPI0003C7EAE3: NAD-dependent epimerase	0.3384184203
+UniRef50_UPI0003C7EAE3: NAD-dependent epimerase|unclassified	0.3384184203
+UniRef50_UPI000395D985: PREDICTED: collagen alpha-1(I) chain-like	0.3383639343
+UniRef50_UPI000395D985: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.3383639343
+UniRef50_UPI00036A57A1: hypothetical protein	0.3383632778
+UniRef50_UPI00036A57A1: hypothetical protein|unclassified	0.3383632778
+UniRef50_UPI0004434F85: PREDICTED: LOW QUALITY PROTEIN: phosphatidate phosphatase LPIN1	0.3383517216
+UniRef50_UPI0004434F85: PREDICTED: LOW QUALITY PROTEIN: phosphatidate phosphatase LPIN1|unclassified	0.3383517216
+UniRef50_V8FJ54	0.3383410348
+UniRef50_V8FJ54|unclassified	0.3383410348
+UniRef50_A1T5E9	0.3383345871
+UniRef50_A1T5E9|unclassified	0.3383345871
+UniRef50_A0A033UUP1	0.3383151139
+UniRef50_A0A033UUP1|unclassified	0.3383151139
+UniRef50_P37878: DNA-3-methyladenine glycosylase	0.3383105867
+UniRef50_P37878: DNA-3-methyladenine glycosylase|unclassified	0.3383105867
+UniRef50_K2HAL9	0.3383059450
+UniRef50_K2HAL9|unclassified	0.3383059450
+UniRef50_Q3SRE4: NADH-quinone oxidoreductase subunit B	0.3382922394
+UniRef50_Q3SRE4: NADH-quinone oxidoreductase subunit B|unclassified	0.3382922394
+UniRef50_T1GVP5	0.3382859266
+UniRef50_T1GVP5|unclassified	0.3382859266
+UniRef50_I1G607	0.3382824674
+UniRef50_I1G607|unclassified	0.3382824674
+UniRef50_UPI00039E7E3D: thiol:disulfide interchange protein	0.3382770888
+UniRef50_UPI00039E7E3D: thiol:disulfide interchange protein|unclassified	0.3382770888
+UniRef50_S7PP75: Putative peptidoglycan bound protein (LPXTG motif)	0.3382557525
+UniRef50_S7PP75: Putative peptidoglycan bound protein (LPXTG motif)|unclassified	0.3382557525
+UniRef50_G5JI05	0.3382400003
+UniRef50_G5JI05|unclassified	0.3382400003
+UniRef50_Q4L879: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.3382399210
+UniRef50_Q4L879: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.3382399210
+UniRef50_UPI0003AE679C: PREDICTED: proline-rich protein 12-like	0.3382332535
+UniRef50_UPI0003AE679C: PREDICTED: proline-rich protein 12-like|unclassified	0.3382332535
+UniRef50_A0A023USZ9	0.3382014184
+UniRef50_A0A023USZ9|unclassified	0.3382014184
+UniRef50_UPI0003B6ED6D: aminotransferase	0.3381952587
+UniRef50_UPI0003B6ED6D: aminotransferase|unclassified	0.3381952587
+UniRef50_R5BPL7	0.3381777682
+UniRef50_R5BPL7|unclassified	0.3381777682
+UniRef50_G3VQX0	0.3381585293
+UniRef50_G3VQX0|unclassified	0.3381585293
+UniRef50_Q0FDE4: FoF1 ATP synthase, subunit I	0.3381036684
+UniRef50_Q0FDE4: FoF1 ATP synthase, subunit I|unclassified	0.3381036684
+UniRef50_N6V8E7	0.3381027833
+UniRef50_N6V8E7|unclassified	0.3381027833
+UniRef50_UPI00035F7B5B: hypothetical protein	0.3379807135
+UniRef50_UPI00035F7B5B: hypothetical protein|unclassified	0.3379807135
+UniRef50_UPI0001C36E72: putative oxidoreductase	0.3379753216
+UniRef50_UPI0001C36E72: putative oxidoreductase|unclassified	0.3379753216
+UniRef50_Q6Z4C7	0.3379469999
+UniRef50_Q6Z4C7|unclassified	0.3379469999
+UniRef50_A0A031EXR3	0.3379270270
+UniRef50_A0A031EXR3|unclassified	0.3379270270
+UniRef50_UPI0004244071: glycine/betaine ABC transporter	0.3378464615
+UniRef50_UPI0004244071: glycine/betaine ABC transporter|unclassified	0.3378464615
+UniRef50_Q2R4D1: Retrotransposon protein, putative, unclassified	0.3378380795
+UniRef50_Q2R4D1: Retrotransposon protein, putative, unclassified|unclassified	0.3378380795
+UniRef50_UPI00034A7821: hypothetical protein	0.3377239152
+UniRef50_UPI00034A7821: hypothetical protein|unclassified	0.3377239152
+UniRef50_M4VFE6	0.3377188966
+UniRef50_M4VFE6|unclassified	0.3377188966
+UniRef50_UPI000371F47B: hypothetical protein	0.3376925584
+UniRef50_UPI000371F47B: hypothetical protein|unclassified	0.3376925584
+UniRef50_UPI00040704B8: hypothetical protein	0.3376898901
+UniRef50_UPI00040704B8: hypothetical protein|unclassified	0.3376898901
+UniRef50_UPI0004431650: PREDICTED: zinc finger protein 28 homolog	0.3376875656
+UniRef50_UPI0004431650: PREDICTED: zinc finger protein 28 homolog|unclassified	0.3376875656
+UniRef50_U1KQC4: Branched-chain amino acid transport	0.3376669489
+UniRef50_U1KQC4: Branched-chain amino acid transport|unclassified	0.3376669489
+UniRef50_W0DGI6	0.3376270927
+UniRef50_W0DGI6|unclassified	0.3376270927
+UniRef50_UPI0004297ECB: phosphatidylethanolamine-binding protein	0.3376238508
+UniRef50_UPI0004297ECB: phosphatidylethanolamine-binding protein|unclassified	0.3376238508
+UniRef50_S1U9Z1: NrdI protein	0.3376053404
+UniRef50_S1U9Z1: NrdI protein|unclassified	0.3376053404
+UniRef50_Q3JY61	0.3375839693
+UniRef50_Q3JY61|unclassified	0.3375839693
+UniRef50_UPI00037926CF: hypothetical protein	0.3375345482
+UniRef50_UPI00037926CF: hypothetical protein|unclassified	0.3375345482
+UniRef50_UPI0003619CA6: hypothetical protein, partial	0.3375314357
+UniRef50_UPI0003619CA6: hypothetical protein, partial|unclassified	0.3375314357
+UniRef50_Q3IWD9	0.3375305938
+UniRef50_Q3IWD9|unclassified	0.3375305938
+UniRef50_A5FWQ8: Fructose-1,6-bisphosphatase class 1	0.3375141616
+UniRef50_A5FWQ8: Fructose-1,6-bisphosphatase class 1|unclassified	0.3375141616
+UniRef50_X2LMM8	0.3374972521
+UniRef50_X2LMM8|unclassified	0.3374972521
+UniRef50_D3FPR8	0.3374899627
+UniRef50_D3FPR8|unclassified	0.3374899627
+UniRef50_UPI0003DEC987: PREDICTED: skin secretory protein xP2-like	0.3374844977
+UniRef50_UPI0003DEC987: PREDICTED: skin secretory protein xP2-like|unclassified	0.3374844977
+UniRef50_C7DCK7: Lipoprotein, putative	0.3374174267
+UniRef50_C7DCK7: Lipoprotein, putative|unclassified	0.3374174267
+UniRef50_W7S895	0.3373785890
+UniRef50_W7S895|unclassified	0.3373785890
+UniRef50_B9KJM8	0.3373401395
+UniRef50_B9KJM8|unclassified	0.3373401395
+UniRef50_W4TV84	0.3373324685
+UniRef50_W4TV84|unclassified	0.3373324685
+UniRef50_G9QBP1	0.3373322010
+UniRef50_G9QBP1|unclassified	0.3373322010
+UniRef50_UPI000409C14F: hypothetical protein	0.3373223629
+UniRef50_UPI000409C14F: hypothetical protein|unclassified	0.3373223629
+UniRef50_L2EAP1: Exodeoxyribonuclease III	0.3373138028
+UniRef50_L2EAP1: Exodeoxyribonuclease III|unclassified	0.3373138028
+UniRef50_UPI00036FB1EC: hypothetical protein	0.3372573168
+UniRef50_UPI00036FB1EC: hypothetical protein|unclassified	0.3372573168
+UniRef50_UPI00028967CE: phosphoribosylformylglycinamidine synthase II	0.3372536708
+UniRef50_UPI00028967CE: phosphoribosylformylglycinamidine synthase II|unclassified	0.3372536708
+UniRef50_A0A021P3E5: Phage protein	0.3372332926
+UniRef50_A0A021P3E5: Phage protein|unclassified	0.3372332926
+UniRef50_C2WFW1	0.3372121211
+UniRef50_C2WFW1|unclassified	0.3372121211
+UniRef50_F3HTA5	0.3372085759
+UniRef50_F3HTA5|unclassified	0.3372085759
+UniRef50_R6EZ78	0.3372075008
+UniRef50_R6EZ78|unclassified	0.3372075008
+UniRef50_UPI00036173F9: hypothetical protein	0.3371847195
+UniRef50_UPI00036173F9: hypothetical protein|unclassified	0.3371847195
+UniRef50_UPI000362B2ED: hypothetical protein	0.3371842194
+UniRef50_UPI000362B2ED: hypothetical protein|unclassified	0.3371842194
+UniRef50_UPI00037F23A8: hypothetical protein	0.3371636042
+UniRef50_UPI00037F23A8: hypothetical protein|unclassified	0.3371636042
+UniRef50_UPI000423129D: hypothetical protein	0.3371245868
+UniRef50_UPI000423129D: hypothetical protein|unclassified	0.3371245868
+UniRef50_UPI000347DE1F: hypothetical protein	0.3370779596
+UniRef50_UPI000347DE1F: hypothetical protein|unclassified	0.3370779596
+UniRef50_C6XFX0	0.3370679368
+UniRef50_C6XFX0|unclassified	0.3370679368
+UniRef50_UPI000399F5B9: hypothetical protein	0.3370569488
+UniRef50_UPI000399F5B9: hypothetical protein|unclassified	0.3370569488
+UniRef50_E4L290	0.3369720743
+UniRef50_E4L290|unclassified	0.3369720743
+UniRef50_S6WBI5: Membrane protein PslJ	0.3369270940
+UniRef50_S6WBI5: Membrane protein PslJ|unclassified	0.3369270940
+UniRef50_UPI00028A1A5C: HAD-superfamily hydrolase, partial	0.3368676779
+UniRef50_UPI00028A1A5C: HAD-superfamily hydrolase, partial|unclassified	0.3368676779
+UniRef50_C6XLT1: Membrane protein-like protein	0.3368632968
+UniRef50_C6XLT1: Membrane protein-like protein|unclassified	0.3368632968
+UniRef50_S9U807: Cysteine peptidase, Clan CA, family C2	0.3367748114
+UniRef50_S9U807: Cysteine peptidase, Clan CA, family C2|unclassified	0.3367748114
+UniRef50_UPI00037FFF27: hypothetical protein, partial	0.3367718368
+UniRef50_UPI00037FFF27: hypothetical protein, partial|unclassified	0.3367718368
+UniRef50_A0A038GI63	0.3367603272
+UniRef50_A0A038GI63|unclassified	0.3367603272
+UniRef50_UPI0003595520: PREDICTED: 39S ribosomal protein L11, mitochondrial-like	0.3367543397
+UniRef50_UPI0003595520: PREDICTED: 39S ribosomal protein L11, mitochondrial-like|unclassified	0.3367543397
+UniRef50_D0JDL8: Ribonucleoside-diphosphate reductase 2 alpha chain	0.3367444747
+UniRef50_D0JDL8: Ribonucleoside-diphosphate reductase 2 alpha chain|unclassified	0.3367444747
+UniRef50_A3PSS2: Dihydroxy-acid dehydratase	0.3367386261
+UniRef50_A3PSS2: Dihydroxy-acid dehydratase|unclassified	0.3367386261
+UniRef50_Q3JWB4	0.3367211909
+UniRef50_Q3JWB4|unclassified	0.3367211909
+UniRef50_A0A059LCC8	0.3367149139
+UniRef50_A0A059LCC8|unclassified	0.3367149139
+UniRef50_UPI00041D47AE: hypothetical protein	0.3367107701
+UniRef50_UPI00041D47AE: hypothetical protein|unclassified	0.3367107701
+UniRef50_Q983N4: Isoleucine--tRNA ligase	0.3367003367
+UniRef50_Q983N4: Isoleucine--tRNA ligase|g__Rhodobacter.s__Rhodobacter_sphaeroides	0.3367003367
+UniRef50_F2A4E9	0.3366823863
+UniRef50_F2A4E9|unclassified	0.3366823863
+UniRef50_C1E5P3: Predicted protein	0.3366761916
+UniRef50_C1E5P3: Predicted protein|unclassified	0.3366761916
+UniRef50_UPI0003EBE390: PREDICTED: peroxiredoxin-6-like	0.3366391550
+UniRef50_UPI0003EBE390: PREDICTED: peroxiredoxin-6-like|unclassified	0.3366391550
+UniRef50_A0A038FV36	0.3365809762
+UniRef50_A0A038FV36|unclassified	0.3365809762
+UniRef50_I9L3P1: Transposase	0.3365715893
+UniRef50_I9L3P1: Transposase|unclassified	0.3365715893
+UniRef50_U6C112: Putative pirin protein (Fragment)	0.3365678972
+UniRef50_U6C112: Putative pirin protein (Fragment)|unclassified	0.3365678972
+UniRef50_Q0RF79	0.3365432104
+UniRef50_Q0RF79|unclassified	0.3365432104
+UniRef50_K2MB75	0.3365361240
+UniRef50_K2MB75|unclassified	0.3365361240
+UniRef50_Q3JR83	0.3365117370
+UniRef50_Q3JR83|unclassified	0.3365117370
+UniRef50_UPI0003468CE7: hypothetical protein	0.3365093149
+UniRef50_UPI0003468CE7: hypothetical protein|unclassified	0.3365093149
+UniRef50_UPI0003315C12: PREDICTED: protein argonaute 2-like, partial	0.3364921318
+UniRef50_UPI0003315C12: PREDICTED: protein argonaute 2-like, partial|unclassified	0.3364921318
+UniRef50_UPI0004673A7C: hypothetical protein	0.3364889327
+UniRef50_UPI0004673A7C: hypothetical protein|unclassified	0.3364889327
+UniRef50_Q3DN63	0.3364858057
+UniRef50_Q3DN63|unclassified	0.3364858057
+UniRef50_UPI0003B3FC55: histidyl-tRNA synthetase	0.3364843652
+UniRef50_UPI0003B3FC55: histidyl-tRNA synthetase|unclassified	0.3364843652
+UniRef50_A0LDR9: NADH-quinone oxidoreductase subunit I	0.3364708533
+UniRef50_A0LDR9: NADH-quinone oxidoreductase subunit I|unclassified	0.3364708533
+UniRef50_X1JPA5: Marine sediment metagenome DNA, contig: S03H2_S26886 (Fragment)	0.3364692331
+UniRef50_X1JPA5: Marine sediment metagenome DNA, contig: S03H2_S26886 (Fragment)|unclassified	0.3364692331
+UniRef50_S5Y8D5	0.3364665101
+UniRef50_S5Y8D5|unclassified	0.3364665101
+UniRef50_E0SJ19: Putative transport protein	0.3364428186
+UniRef50_E0SJ19: Putative transport protein|unclassified	0.3364428186
+UniRef50_F7U6Q0	0.3364417767
+UniRef50_F7U6Q0|unclassified	0.3364417767
+UniRef50_N2SS29: Putative insB (Fragment)	0.3364357169
+UniRef50_N2SS29: Putative insB (Fragment)|unclassified	0.3364357169
+UniRef50_C5BCZ7: Adenine phosphoribosyltransferase	0.3364058187
+UniRef50_C5BCZ7: Adenine phosphoribosyltransferase|unclassified	0.3364058187
+UniRef50_B6IPT6	0.3363907730
+UniRef50_B6IPT6|unclassified	0.3363907730
+UniRef50_UPI00026292D6: TRAP dicarboxylate transporter subunit DctM, partial	0.3363789594
+UniRef50_UPI00026292D6: TRAP dicarboxylate transporter subunit DctM, partial|unclassified	0.3363789594
+UniRef50_UPI0002E2B451: hypothetical protein	0.3363519324
+UniRef50_UPI0002E2B451: hypothetical protein|unclassified	0.3363519324
+UniRef50_Q69K37	0.3362964872
+UniRef50_Q69K37|unclassified	0.3362964872
+UniRef50_A5L249: Integrase, catalytic region	0.3362818013
+UniRef50_A5L249: Integrase, catalytic region|unclassified	0.3362818013
+UniRef50_F0LCD7	0.3362786596
+UniRef50_F0LCD7|unclassified	0.3362786596
+UniRef50_D8TLX0	0.3362566034
+UniRef50_D8TLX0|unclassified	0.3362566034
+UniRef50_X1TRC5: Marine sediment metagenome DNA, contig: S12H4_S07230	0.3362341236
+UniRef50_X1TRC5: Marine sediment metagenome DNA, contig: S12H4_S07230|unclassified	0.3362341236
+UniRef50_F3KFN8: Threonine dehydratase biosynthetic	0.3362046976
+UniRef50_F3KFN8: Threonine dehydratase biosynthetic|unclassified	0.3362046976
+UniRef50_O83716: Purine nucleoside phosphorylase DeoD-type	0.3362041868
+UniRef50_O83716: Purine nucleoside phosphorylase DeoD-type|unclassified	0.3362041868
+UniRef50_E3CUZ5: NLPA lipoprotein	0.3362009129
+UniRef50_E3CUZ5: NLPA lipoprotein|unclassified	0.3362009129
+UniRef50_UPI0002653EF4: PREDICTED: methionine synthase-like, partial	0.3361814792
+UniRef50_UPI0002653EF4: PREDICTED: methionine synthase-like, partial|unclassified	0.3361814792
+UniRef50_UPI0003C16F70	0.3361640537
+UniRef50_UPI0003C16F70|unclassified	0.3361640537
+UniRef50_A0A038GMN0: Mg chelatase subunit ChlI	0.3361486573
+UniRef50_A0A038GMN0: Mg chelatase subunit ChlI|unclassified	0.3361486573
+UniRef50_UPI0002F449D6: histidine kinase	0.3361242818
+UniRef50_UPI0002F449D6: histidine kinase|unclassified	0.3361242818
+UniRef50_Q4L967: Putative acetyltransferase SH0499	0.3361191448
+UniRef50_Q4L967: Putative acetyltransferase SH0499|unclassified	0.3361191448
+UniRef50_U8H1N5	0.3361148104
+UniRef50_U8H1N5|unclassified	0.3361148104
+UniRef50_R6ZTF3	0.3360839234
+UniRef50_R6ZTF3|unclassified	0.3360839234
+UniRef50_UPI0004768A02: hypothetical protein	0.3360106799
+UniRef50_UPI0004768A02: hypothetical protein|unclassified	0.3360106799
+UniRef50_UPI000363F23D: hypothetical protein	0.3359937334
+UniRef50_UPI000363F23D: hypothetical protein|unclassified	0.3359937334
+UniRef50_D8H4H1: Pyridoxal phosphate-dependent deaminase, putative	0.3359842625
+UniRef50_D8H4H1: Pyridoxal phosphate-dependent deaminase, putative|unclassified	0.3359842625
+UniRef50_F2K3F7	0.3359781840
+UniRef50_F2K3F7|unclassified	0.3359781840
+UniRef50_UPI00047A1B7D: hypothetical protein	0.3359611991
+UniRef50_UPI00047A1B7D: hypothetical protein|unclassified	0.3359611991
+UniRef50_G2SK16: Fe-S metabolism associated SufE	0.3359414543
+UniRef50_G2SK16: Fe-S metabolism associated SufE|unclassified	0.3359414543
+UniRef50_A0A022GXA8: Membrane protein	0.3359352986
+UniRef50_A0A022GXA8: Membrane protein|unclassified	0.3359352986
+UniRef50_UPI00036B4C2E: hypothetical protein	0.3358920093
+UniRef50_UPI00036B4C2E: hypothetical protein|unclassified	0.3358920093
+UniRef50_D3QHM3: BsaG protein	0.3358766098
+UniRef50_D3QHM3: BsaG protein|unclassified	0.3358766098
+UniRef50_UPI000475CC40: hypothetical protein	0.3358499157
+UniRef50_UPI000475CC40: hypothetical protein|unclassified	0.3358499157
+UniRef50_V7Z4B1	0.3358394542
+UniRef50_V7Z4B1|unclassified	0.3358394542
+UniRef50_UPI0003DEB4A0: PREDICTED: tRNA dimethylallyltransferase, mitochondrial-like, partial	0.3358370674
+UniRef50_UPI0003DEB4A0: PREDICTED: tRNA dimethylallyltransferase, mitochondrial-like, partial|unclassified	0.3358370674
+UniRef50_F5YRX8	0.3358303039
+UniRef50_F5YRX8|unclassified	0.3358303039
+UniRef50_UPI0003674FBC: hypothetical protein	0.3358141986
+UniRef50_UPI0003674FBC: hypothetical protein|unclassified	0.3358141986
+UniRef50_D8JKJ3: Transcription-repair-coupling factor	0.3357958361
+UniRef50_D8JKJ3: Transcription-repair-coupling factor|g__Acinetobacter.s__Acinetobacter_baumannii	0.3357958361
+UniRef50_UPI0001913AE8: oligopeptide ABC transporter, permease protein OppC, partial	0.3357744014
+UniRef50_UPI0001913AE8: oligopeptide ABC transporter, permease protein OppC, partial|unclassified	0.3357744014
+UniRef50_P96193: 16 kDa heat shock protein B	0.3357690092
+UniRef50_P96193: 16 kDa heat shock protein B|unclassified	0.3357690092
+UniRef50_J9NU89	0.3357595279
+UniRef50_J9NU89|unclassified	0.3357595279
+UniRef50_R1FQH1	0.3357575533
+UniRef50_R1FQH1|unclassified	0.3357575533
+UniRef50_UPI000471E9CA: uroporphyrin-III methyltransferase	0.3357464932
+UniRef50_UPI000471E9CA: uroporphyrin-III methyltransferase|unclassified	0.3357464932
+UniRef50_H3YG77	0.3357413105
+UniRef50_H3YG77|unclassified	0.3357413105
+UniRef50_Q0TPX5: Ribose import ATP-binding protein RbsA	0.3357292419
+UniRef50_Q0TPX5: Ribose import ATP-binding protein RbsA|unclassified	0.3357292419
+UniRef50_R1DQP4	0.3357235083
+UniRef50_R1DQP4|unclassified	0.3357235083
+UniRef50_UPI00047AC46D: hypothetical protein	0.3357025066
+UniRef50_UPI00047AC46D: hypothetical protein|unclassified	0.3357025066
+UniRef50_UPI00036333B4: hypothetical protein	0.3356679482
+UniRef50_UPI00036333B4: hypothetical protein|unclassified	0.3356679482
+UniRef50_UPI0003B70D90: heptaprenyl diphosphate synthase subunit II	0.3356477802
+UniRef50_UPI0003B70D90: heptaprenyl diphosphate synthase subunit II|unclassified	0.3356477802
+UniRef50_Q81CT8: Putative ABC transporter ATP-binding protein BC_2655	0.3355923614
+UniRef50_Q81CT8: Putative ABC transporter ATP-binding protein BC_2655|unclassified	0.3355923614
+UniRef50_B6VM44	0.3355783278
+UniRef50_B6VM44|unclassified	0.3355783278
+UniRef50_E2Q2Z9: AIG2 protein	0.3355546832
+UniRef50_E2Q2Z9: AIG2 protein|unclassified	0.3355546832
+UniRef50_UPI0003B5A455: DNA-directed RNA polymerase subunit alpha	0.3355229664
+UniRef50_UPI0003B5A455: DNA-directed RNA polymerase subunit alpha|unclassified	0.3355229664
+UniRef50_N8Z911	0.3354284796
+UniRef50_N8Z911|unclassified	0.3354284796
+UniRef50_X1ASD7: Marine sediment metagenome DNA, contig: S01H4_L00646	0.3354033017
+UniRef50_X1ASD7: Marine sediment metagenome DNA, contig: S01H4_L00646|unclassified	0.3354033017
+UniRef50_M7NZK7: Methanol dehydrogenase large subunit protein	0.3353794520
+UniRef50_M7NZK7: Methanol dehydrogenase large subunit protein|unclassified	0.3353794520
+UniRef50_UPI0002374DF9: 30S ribosomal protein S2, partial	0.3353429156
+UniRef50_UPI0002374DF9: 30S ribosomal protein S2, partial|unclassified	0.3353429156
+UniRef50_D5AUH5: Invasion associated locus B family protein	0.3353117941
+UniRef50_D5AUH5: Invasion associated locus B family protein|unclassified	0.3353117941
+UniRef50_S5K1U4	0.3352980417
+UniRef50_S5K1U4|unclassified	0.3352980417
+UniRef50_D8UDB3	0.3352911951
+UniRef50_D8UDB3|unclassified	0.3352911951
+UniRef50_UPI000289EB1D: ATP-dependent DNA helicase recQ, partial	0.3352738563
+UniRef50_UPI000289EB1D: ATP-dependent DNA helicase recQ, partial|unclassified	0.3352738563
+UniRef50_C3YW49	0.3352460038
+UniRef50_C3YW49|unclassified	0.3352460038
+UniRef50_W4HKX5	0.3352453690
+UniRef50_W4HKX5|unclassified	0.3352453690
+UniRef50_UPI000476AC5C: hypothetical protein	0.3351335012
+UniRef50_UPI000476AC5C: hypothetical protein|unclassified	0.3351335012
+UniRef50_E1V394: Sterol-binding domain protein	0.3351329079
+UniRef50_E1V394: Sterol-binding domain protein|unclassified	0.3351329079
+UniRef50_UPI00017458ED: ATP-binding transport protein; multicopy suppressor of HtrB	0.3351239335
+UniRef50_UPI00017458ED: ATP-binding transport protein; multicopy suppressor of HtrB|unclassified	0.3351239335
+UniRef50_V9WHV5	0.3351231590
+UniRef50_V9WHV5|unclassified	0.3351231590
+UniRef50_Q9RZQ5	0.3351109413
+UniRef50_Q9RZQ5|unclassified	0.3351109413
+UniRef50_Q9KXR1: Bifunctional protein PyrR	0.3350919406
+UniRef50_Q9KXR1: Bifunctional protein PyrR|unclassified	0.3350919406
+UniRef50_X8B2U9: Protein pafB	0.3350866289
+UniRef50_X8B2U9: Protein pafB|unclassified	0.3350866289
+UniRef50_Q0C1E4: NADH-quinone oxidoreductase subunit D	0.3350791223
+UniRef50_Q0C1E4: NADH-quinone oxidoreductase subunit D|unclassified	0.3350791223
+UniRef50_C6BY79: D-ribose pyranase	0.3350126311
+UniRef50_C6BY79: D-ribose pyranase|unclassified	0.3350126311
+UniRef50_Q9CHL8: Multidrug resistance ABC transporter ATP-binding and permease protein	0.3350065209
+UniRef50_Q9CHL8: Multidrug resistance ABC transporter ATP-binding and permease protein|unclassified	0.3350065209
+UniRef50_J8UT53: Multidrug transport protein, mfs family	0.3350035660
+UniRef50_J8UT53: Multidrug transport protein, mfs family|unclassified	0.3350035660
+UniRef50_UPI000470943C: biopolymer transporter ExbD	0.3349736546
+UniRef50_UPI000470943C: biopolymer transporter ExbD|unclassified	0.3349736546
+UniRef50_UPI000462D149: hypothetical protein	0.3349366099
+UniRef50_UPI000462D149: hypothetical protein|unclassified	0.3349366099
+UniRef50_Q9K801: Histidinol-phosphatase	0.3349312478
+UniRef50_Q9K801: Histidinol-phosphatase|unclassified	0.3349312478
+UniRef50_W8S247: Transglycosylase SLT domain protein	0.3349023360
+UniRef50_W8S247: Transglycosylase SLT domain protein|unclassified	0.3349023360
+UniRef50_I3CBM6: UPF0235 protein BegalDRAFT_0095	0.3348870583
+UniRef50_I3CBM6: UPF0235 protein BegalDRAFT_0095|unclassified	0.3348870583
+UniRef50_Q1NCJ9	0.3348812204
+UniRef50_Q1NCJ9|unclassified	0.3348812204
+UniRef50_Q89XW7: Shikimate kinase	0.3348670960
+UniRef50_Q89XW7: Shikimate kinase|unclassified	0.3348670960
+UniRef50_UPI00038109F7: hypothetical protein	0.3348652163
+UniRef50_UPI00038109F7: hypothetical protein|unclassified	0.3348652163
+UniRef50_H3YFG2: PF06908 family protein (Fragment)	0.3347939177
+UniRef50_H3YFG2: PF06908 family protein (Fragment)|unclassified	0.3347939177
+UniRef50_W5IQ21	0.3347230270
+UniRef50_W5IQ21|unclassified	0.3347230270
+UniRef50_UPI00046608EF: carbohydrate kinase	0.3346939673
+UniRef50_UPI00046608EF: carbohydrate kinase|unclassified	0.3346939673
+UniRef50_E3NUP2	0.3346914487
+UniRef50_E3NUP2|unclassified	0.3346914487
+UniRef50_UPI00036ED496: hypothetical protein	0.3346591293
+UniRef50_UPI00036ED496: hypothetical protein|unclassified	0.3346591293
+UniRef50_D1WNS1	0.3346007240
+UniRef50_D1WNS1|unclassified	0.3346007240
+UniRef50_F0YAU6	0.3345722060
+UniRef50_F0YAU6|unclassified	0.3345722060
+UniRef50_Q1GY83: Outer membrane autotransporter barrel	0.3345614507
+UniRef50_Q1GY83: Outer membrane autotransporter barrel|unclassified	0.3345614507
+UniRef50_U3KLY9	0.3345600535
+UniRef50_U3KLY9|unclassified	0.3345600535
+UniRef50_V4J8H2	0.3345544335
+UniRef50_V4J8H2|unclassified	0.3345544335
+UniRef50_B7IRY2	0.3345496483
+UniRef50_B7IRY2|unclassified	0.3345496483
+UniRef50_UPI0003B34DA8: biopolymer transporter ExbD	0.3345290496
+UniRef50_UPI0003B34DA8: biopolymer transporter ExbD|unclassified	0.3345290496
+UniRef50_UPI00047CDCB7: ABC transporter permease	0.3344656328
+UniRef50_UPI00047CDCB7: ABC transporter permease|unclassified	0.3344656328
+UniRef50_Q046J4: Carbohydrate ABC transporter substrate-binding protein, CUT1 family	0.3344437410
+UniRef50_Q046J4: Carbohydrate ABC transporter substrate-binding protein, CUT1 family|unclassified	0.3344437410
+UniRef50_B8D2I6: Arginine repressor	0.3344213584
+UniRef50_B8D2I6: Arginine repressor|unclassified	0.3344213584
+UniRef50_A8FWC9: Imidazole glycerol phosphate synthase subunit HisH	0.3344189075
+UniRef50_A8FWC9: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.3344189075
+UniRef50_UPI0004244D92: xanthine phosphoribosyltransferase	0.3344187630
+UniRef50_UPI0004244D92: xanthine phosphoribosyltransferase|unclassified	0.3344187630
+UniRef50_C8X3R9: Redox-active disulfide protein 2	0.3343737171
+UniRef50_C8X3R9: Redox-active disulfide protein 2|unclassified	0.3343737171
+UniRef50_Q2JPT8: GTP cyclohydrolase 1	0.3343608608
+UniRef50_Q2JPT8: GTP cyclohydrolase 1|unclassified	0.3343608608
+UniRef50_A0A016U6F7	0.3342960609
+UniRef50_A0A016U6F7|unclassified	0.3342960609
+UniRef50_X6YJ88	0.3342873082
+UniRef50_X6YJ88|unclassified	0.3342873082
+UniRef50_A3N2W7: D-ribose pyranase	0.3342824283
+UniRef50_A3N2W7: D-ribose pyranase|unclassified	0.3342824283
+UniRef50_H2KZ84: Protein C37C3.1, isoform a	0.3342791460
+UniRef50_H2KZ84: Protein C37C3.1, isoform a|unclassified	0.3342791460
+UniRef50_A3QF19: Imidazole glycerol phosphate synthase subunit HisH	0.3341818345
+UniRef50_A3QF19: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.3341818345
+UniRef50_F0Y5C9: Expressed protein (Fragment)	0.3341677911
+UniRef50_F0Y5C9: Expressed protein (Fragment)|unclassified	0.3341677911
+UniRef50_UPI0003C1934F	0.3341558119
+UniRef50_UPI0003C1934F|unclassified	0.3341558119
+UniRef50_UPI000466EA78: baseplate assembly protein, partial	0.3341268845
+UniRef50_UPI000466EA78: baseplate assembly protein, partial|unclassified	0.3341268845
+UniRef50_R4YEY0: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.3341017782
+UniRef50_R4YEY0: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|unclassified	0.3341017782
+UniRef50_R5I8B8	0.3340958494
+UniRef50_R5I8B8|unclassified	0.3340958494
+UniRef50_D3F063: BolA family protein	0.3340925161
+UniRef50_D3F063: BolA family protein|unclassified	0.3340925161
+UniRef50_E3EZF3	0.3340921330
+UniRef50_E3EZF3|unclassified	0.3340921330
+UniRef50_C5BGH1	0.3340671095
+UniRef50_C5BGH1|unclassified	0.3340671095
+UniRef50_UPI00041BEE0D: hypothetical protein	0.3340495561
+UniRef50_UPI00041BEE0D: hypothetical protein|unclassified	0.3340495561
+UniRef50_A9HJC0: Cyclase/dehydrase	0.3340387355
+UniRef50_A9HJC0: Cyclase/dehydrase|unclassified	0.3340387355
+UniRef50_UPI0003EC60DC: PREDICTED: mitochondrial peptide methionine sulfoxide reductase-like isoform X3	0.3340365305
+UniRef50_UPI0003EC60DC: PREDICTED: mitochondrial peptide methionine sulfoxide reductase-like isoform X3|unclassified	0.3340365305
+UniRef50_W0A2Z8	0.3340129361
+UniRef50_W0A2Z8|unclassified	0.3340129361
+UniRef50_C0QHY2: UvrB2	0.3339970185
+UniRef50_C0QHY2: UvrB2|unclassified	0.3339970185
+UniRef50_UPI00036DD078: hypothetical protein, partial	0.3339615337
+UniRef50_UPI00036DD078: hypothetical protein, partial|unclassified	0.3339615337
+UniRef50_UPI000225AB9D: 3-oxoacyl-ACP synthase	0.3339578174
+UniRef50_UPI000225AB9D: 3-oxoacyl-ACP synthase|unclassified	0.3339578174
+UniRef50_B6FZY7	0.3339227869
+UniRef50_B6FZY7|unclassified	0.3339227869
+UniRef50_UPI0003A08B63: oxidoreductase	0.3338814373
+UniRef50_UPI0003A08B63: oxidoreductase|unclassified	0.3338814373
+UniRef50_P43791: Dihydrofolate reductase	0.3338283596
+UniRef50_P43791: Dihydrofolate reductase|unclassified	0.3338283596
+UniRef50_UPI00036F6A22: hypothetical protein	0.3338209347
+UniRef50_UPI00036F6A22: hypothetical protein|unclassified	0.3338209347
+UniRef50_Y5WWY0: Phage protein	0.3338173406
+UniRef50_Y5WWY0: Phage protein|unclassified	0.3338173406
+UniRef50_U2ST17: Transcriptional regulator, LysR family	0.3337779131
+UniRef50_U2ST17: Transcriptional regulator, LysR family|unclassified	0.3337779131
+UniRef50_W4RP05: Sulfate permease	0.3337684513
+UniRef50_W4RP05: Sulfate permease|unclassified	0.3337684513
+UniRef50_A6LP67: Aminomethyltransferase	0.3337352527
+UniRef50_A6LP67: Aminomethyltransferase|unclassified	0.3337352527
+UniRef50_UPI0002ADA7AE	0.3337305494
+UniRef50_UPI0002ADA7AE|unclassified	0.3337305494
+UniRef50_UPI000414FA05: zinc/iron permease	0.3337255899
+UniRef50_UPI000414FA05: zinc/iron permease|unclassified	0.3337255899
+UniRef50_K0RNP0	0.3337250400
+UniRef50_K0RNP0|unclassified	0.3337250400
+UniRef50_X1U0Y9: Marine sediment metagenome DNA, contig: S12H4_S13890 (Fragment)	0.3336830502
+UniRef50_X1U0Y9: Marine sediment metagenome DNA, contig: S12H4_S13890 (Fragment)|unclassified	0.3336830502
+UniRef50_G5KKD5	0.3336567672
+UniRef50_G5KKD5|unclassified	0.3336567672
+UniRef50_E1V665	0.3335697368
+UniRef50_E1V665|unclassified	0.3335697368
+UniRef50_Q88UE1: Imidazole glycerol phosphate synthase subunit HisH	0.3335681536
+UniRef50_Q88UE1: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.3335681536
+UniRef50_UPI00034B1305: MULTISPECIES: hypothetical protein	0.3335383233
+UniRef50_UPI00034B1305: MULTISPECIES: hypothetical protein|unclassified	0.3335383233
+UniRef50_UPI000471CC40: hypothetical protein	0.3335369142
+UniRef50_UPI000471CC40: hypothetical protein|unclassified	0.3335369142
+UniRef50_D9UMS0: Lipoprotein	0.3335262191
+UniRef50_D9UMS0: Lipoprotein|unclassified	0.3335262191
+UniRef50_UPI0003EE954F: hypothetical protein	0.3335145450
+UniRef50_UPI0003EE954F: hypothetical protein|unclassified	0.3335145450
+UniRef50_H4Q189: HdhA domain protein	0.3335141143
+UniRef50_H4Q189: HdhA domain protein|unclassified	0.3335141143
+UniRef50_UPI0004781153: multidrug ABC transporter permease	0.3334382167
+UniRef50_UPI0004781153: multidrug ABC transporter permease|unclassified	0.3334382167
+UniRef50_G1YXY4: Phage Terminase domain protein	0.3334295074
+UniRef50_G1YXY4: Phage Terminase domain protein|unclassified	0.3334295074
+UniRef50_F8JWA2: Secreted protein	0.3334068648
+UniRef50_F8JWA2: Secreted protein|unclassified	0.3334068648
+UniRef50_I7DRK3	0.3333809830
+UniRef50_I7DRK3|unclassified	0.3333809830
+UniRef50_UPI000479E79F: C4-dicarboxylate ABC transporter permease	0.3333719234
+UniRef50_UPI000479E79F: C4-dicarboxylate ABC transporter permease|unclassified	0.3333719234
+UniRef50_K2LLW5: Co2+ ABC transporter periplasmic protein	0.3333275977
+UniRef50_K2LLW5: Co2+ ABC transporter periplasmic protein|unclassified	0.3333275977
+UniRef50_Q2S6N0: Ribosomal RNA small subunit methyltransferase G	0.3332766930
+UniRef50_Q2S6N0: Ribosomal RNA small subunit methyltransferase G|unclassified	0.3332766930
+UniRef50_UPI0002C378DF	0.3332505155
+UniRef50_UPI0002C378DF|unclassified	0.3332505155
+UniRef50_A3K6W1	0.3332451643
+UniRef50_A3K6W1|unclassified	0.3332451643
+UniRef50_A9WP05: Dihydroxy-acid dehydratase	0.3332264290
+UniRef50_A9WP05: Dihydroxy-acid dehydratase|unclassified	0.3332264290
+UniRef50_UPI0004697FAC: hypothetical protein	0.3331841188
+UniRef50_UPI0004697FAC: hypothetical protein|unclassified	0.3331841188
+UniRef50_UPI000248DE25: purine permease, partial	0.3331493838
+UniRef50_UPI000248DE25: purine permease, partial|unclassified	0.3331493838
+UniRef50_UPI0003799755: hypothetical protein	0.3331417797
+UniRef50_UPI0003799755: hypothetical protein|unclassified	0.3331417797
+UniRef50_V0I7M8: Cysteine desulfurase activator complex subunit SufB (Fragment)	0.3331404752
+UniRef50_V0I7M8: Cysteine desulfurase activator complex subunit SufB (Fragment)|unclassified	0.3331404752
+UniRef50_UPI00037B9617: hypothetical protein	0.3331124677
+UniRef50_UPI00037B9617: hypothetical protein|unclassified	0.3331124677
+UniRef50_T2K0U5: Plasmid replication protein	0.3331057550
+UniRef50_T2K0U5: Plasmid replication protein|unclassified	0.3331057550
+UniRef50_Q28NV3	0.3330660417
+UniRef50_Q28NV3|unclassified	0.3330660417
+UniRef50_S3YVB6: Electron transfer flavoprotein-ubiquinone oxidoreductase	0.3330384270
+UniRef50_S3YVB6: Electron transfer flavoprotein-ubiquinone oxidoreductase|unclassified	0.3330384270
+UniRef50_M4WTQ9: Pirin-like protein	0.3330161088
+UniRef50_M4WTQ9: Pirin-like protein|unclassified	0.3330161088
+UniRef50_G0D0Z6	0.3330158948
+UniRef50_G0D0Z6|unclassified	0.3330158948
+UniRef50_UPI00037E2BE5: chromosome condensation protein CrcB	0.3329994852
+UniRef50_UPI00037E2BE5: chromosome condensation protein CrcB|unclassified	0.3329994852
+UniRef50_W1JG60: Putative transcriptional regulatory protein LysR family (Fragment)	0.3329970461
+UniRef50_W1JG60: Putative transcriptional regulatory protein LysR family (Fragment)|unclassified	0.3329970461
+UniRef50_A0A031I8F2	0.3329857946
+UniRef50_A0A031I8F2|unclassified	0.3329857946
+UniRef50_UPI00029CBEB3: hypothetical protein, partial	0.3329300751
+UniRef50_UPI00029CBEB3: hypothetical protein, partial|unclassified	0.3329300751
+UniRef50_UPI000374951A: hypothetical protein	0.3329113783
+UniRef50_UPI000374951A: hypothetical protein|unclassified	0.3329113783
+UniRef50_UPI00047C589B: hypothetical protein	0.3328912861
+UniRef50_UPI00047C589B: hypothetical protein|unclassified	0.3328912861
+UniRef50_E9DZX5: PH domain protein	0.3328894807
+UniRef50_E9DZX5: PH domain protein|unclassified	0.3328894807
+UniRef50_U4V580: UPF0301 protein HIMB11_01782	0.3328139958
+UniRef50_U4V580: UPF0301 protein HIMB11_01782|unclassified	0.3328139958
+UniRef50_UPI000299D6EB: carbon storage regulator CsrA	0.3327887694
+UniRef50_UPI000299D6EB: carbon storage regulator CsrA|unclassified	0.3327887694
+UniRef50_UPI000464542D: spermidine/putrescine ABC transporter	0.3327887392
+UniRef50_UPI000464542D: spermidine/putrescine ABC transporter|unclassified	0.3327887392
+UniRef50_A5ZLG0	0.3327753149
+UniRef50_A5ZLG0|unclassified	0.3327753149
+UniRef50_G8W9W7	0.3327592738
+UniRef50_G8W9W7|unclassified	0.3327592738
+UniRef50_A0R837	0.3327391071
+UniRef50_A0R837|unclassified	0.3327391071
+UniRef50_E2XW49	0.3327105790
+UniRef50_E2XW49|unclassified	0.3327105790
+UniRef50_P45208: 5,10-methylenetetrahydrofolate reductase	0.3327010126
+UniRef50_P45208: 5,10-methylenetetrahydrofolate reductase|unclassified	0.3327010126
+UniRef50_R4ZXV9	0.3326738144
+UniRef50_R4ZXV9|unclassified	0.3326738144
+UniRef50_V2IKL5	0.3326577136
+UniRef50_V2IKL5|unclassified	0.3326577136
+UniRef50_V5UR82	0.3326423160
+UniRef50_V5UR82|unclassified	0.3326423160
+UniRef50_P20370: 4-carboxymuconolactone decarboxylase	0.3326284804
+UniRef50_P20370: 4-carboxymuconolactone decarboxylase|unclassified	0.3326284804
+UniRef50_UPI0003087354: hypothetical protein	0.3326060471
+UniRef50_UPI0003087354: hypothetical protein|unclassified	0.3326060471
+UniRef50_F0J8A6: Hypothetical secreted protein 1047 (Fragment)	0.3325901335
+UniRef50_F0J8A6: Hypothetical secreted protein 1047 (Fragment)|unclassified	0.3325901335
+UniRef50_C6M7I4	0.3325797454
+UniRef50_C6M7I4|unclassified	0.3325797454
+UniRef50_F9FIU9	0.3325324136
+UniRef50_F9FIU9|unclassified	0.3325324136
+UniRef50_B9K2Q0	0.3325166408
+UniRef50_B9K2Q0|unclassified	0.3325166408
+UniRef50_UPI00035D3C47: MULTISPECIES: hypothetical protein	0.3325039339
+UniRef50_UPI00035D3C47: MULTISPECIES: hypothetical protein|unclassified	0.3325039339
+UniRef50_UPI00040CFD31: hypothetical protein	0.3324988997
+UniRef50_UPI00040CFD31: hypothetical protein|unclassified	0.3324988997
+UniRef50_K2J580	0.3324917471
+UniRef50_K2J580|unclassified	0.3324917471
+UniRef50_UPI00046EB60D: FAD-dependent oxidoreductase	0.3324916006
+UniRef50_UPI00046EB60D: FAD-dependent oxidoreductase|unclassified	0.3324916006
+UniRef50_UPI00035F9E47: hypothetical protein	0.3324580393
+UniRef50_UPI00035F9E47: hypothetical protein|unclassified	0.3324580393
+UniRef50_UPI000365B96C: cytochrome C oxidase subunit I, partial	0.3324548194
+UniRef50_UPI000365B96C: cytochrome C oxidase subunit I, partial|unclassified	0.3324548194
+UniRef50_D0LHV4	0.3324099723
+UniRef50_D0LHV4|unclassified	0.3324099723
+UniRef50_S9S8X5	0.3324082835
+UniRef50_S9S8X5|unclassified	0.3324082835
+UniRef50_UPI0002B9C508: hypothetical protein	0.3323938995
+UniRef50_UPI0002B9C508: hypothetical protein|unclassified	0.3323938995
+UniRef50_Q08QR2: ABC D-methionine uptake transporter, substrate-binding protein	0.3323842915
+UniRef50_Q08QR2: ABC D-methionine uptake transporter, substrate-binding protein|unclassified	0.3323842915
+UniRef50_UPI000469A37F: hypothetical protein	0.3323486308
+UniRef50_UPI000469A37F: hypothetical protein|unclassified	0.3323486308
+UniRef50_UPI0002559746: hypothetical protein	0.3323125596
+UniRef50_UPI0002559746: hypothetical protein|unclassified	0.3323125596
+UniRef50_F1PDY7	0.3323013918
+UniRef50_F1PDY7|unclassified	0.3323013918
+UniRef50_A0A024HWE9	0.3322378128
+UniRef50_A0A024HWE9|unclassified	0.3322378128
+UniRef50_UPI0004770CE7: hypothetical protein	0.3322277388
+UniRef50_UPI0004770CE7: hypothetical protein|unclassified	0.3322277388
+UniRef50_G9YYU5: Helicase protein	0.3322259136
+UniRef50_G9YYU5: Helicase protein|g__Escherichia.s__Escherichia_coli	0.3322259136
+UniRef50_P33485: Probable nuclear antigen	0.3322258420
+UniRef50_P33485: Probable nuclear antigen|unclassified	0.3322258420
+UniRef50_UPI0003A13922: ABC transporter	0.3321985343
+UniRef50_UPI0003A13922: ABC transporter|unclassified	0.3321985343
+UniRef50_G2GAR2	0.3321613092
+UniRef50_G2GAR2|unclassified	0.3321613092
+UniRef50_UPI00037F6570: hypothetical protein, partial	0.3321553206
+UniRef50_UPI00037F6570: hypothetical protein, partial|unclassified	0.3321553206
+UniRef50_UPI00036F37C6: hypothetical protein	0.3321084918
+UniRef50_UPI00036F37C6: hypothetical protein|unclassified	0.3321084918
+UniRef50_UPI00041B450B: hypothetical protein	0.3321011767
+UniRef50_UPI00041B450B: hypothetical protein|unclassified	0.3321011767
+UniRef50_W7DA81: L-xylulose 5-phosphate 3-epimerase	0.3320468969
+UniRef50_W7DA81: L-xylulose 5-phosphate 3-epimerase|unclassified	0.3320468969
+UniRef50_UPI0003658106: hypothetical protein	0.3320237100
+UniRef50_UPI0003658106: hypothetical protein|unclassified	0.3320237100
+UniRef50_UPI0003C76F20: hypothetical protein	0.3320059115
+UniRef50_UPI0003C76F20: hypothetical protein|unclassified	0.3320059115
+UniRef50_C4SU83: Anti-sigma factor antagonist	0.3318754872
+UniRef50_C4SU83: Anti-sigma factor antagonist|unclassified	0.3318754872
+UniRef50_A8HTG7: Glycine-rich protein	0.3318604920
+UniRef50_A8HTG7: Glycine-rich protein|unclassified	0.3318604920
+UniRef50_Q9KKL3: Chemotaxis protein methyltransferase 3	0.3318451453
+UniRef50_Q9KKL3: Chemotaxis protein methyltransferase 3|unclassified	0.3318451453
+UniRef50_UPI000225B206: type I signal peptidase	0.3318346830
+UniRef50_UPI000225B206: type I signal peptidase|unclassified	0.3318346830
+UniRef50_A6FSQ2	0.3318316787
+UniRef50_A6FSQ2|unclassified	0.3318316787
+UniRef50_UPI00035D95F2: putrescine/spermidine ABC transporter substrate-binding protein	0.3317880839
+UniRef50_UPI00035D95F2: putrescine/spermidine ABC transporter substrate-binding protein|unclassified	0.3317880839
+UniRef50_M0XBW2	0.3317703932
+UniRef50_M0XBW2|unclassified	0.3317703932
+UniRef50_Q2NU62: Acylphosphatase	0.3317308689
+UniRef50_Q2NU62: Acylphosphatase|unclassified	0.3317308689
+UniRef50_UPI0003664D62: hypothetical protein	0.3316921438
+UniRef50_UPI0003664D62: hypothetical protein|unclassified	0.3316921438
+UniRef50_D3QHZ6	0.3316814599
+UniRef50_D3QHZ6|unclassified	0.3316814599
+UniRef50_I7JGY7: Phosphoglycerate mutase family	0.3316680793
+UniRef50_I7JGY7: Phosphoglycerate mutase family|unclassified	0.3316680793
+UniRef50_A6TG44: Ribosomal RNA small subunit methyltransferase G	0.3316401797
+UniRef50_A6TG44: Ribosomal RNA small subunit methyltransferase G|unclassified	0.3316401797
+UniRef50_A7IL49	0.3316339438
+UniRef50_A7IL49|unclassified	0.3316339438
+UniRef50_UPI0003B49F43: hypothetical protein	0.3316085495
+UniRef50_UPI0003B49F43: hypothetical protein|unclassified	0.3316085495
+UniRef50_W6M5F8	0.3316081127
+UniRef50_W6M5F8|unclassified	0.3316081127
+UniRef50_UPI0002BA3EFF: hypothetical protein	0.3315936541
+UniRef50_UPI0002BA3EFF: hypothetical protein|unclassified	0.3315936541
+UniRef50_UPI000348DD8F: hypothetical protein	0.3315817142
+UniRef50_UPI000348DD8F: hypothetical protein|unclassified	0.3315817142
+UniRef50_S5YPY4: Branched-chain amino acid transporter AzlC	0.3315625584
+UniRef50_S5YPY4: Branched-chain amino acid transporter AzlC|unclassified	0.3315625584
+UniRef50_UPI0004760FF2: hypoxanthine phosphoribosyltransferase	0.3314918687
+UniRef50_UPI0004760FF2: hypoxanthine phosphoribosyltransferase|unclassified	0.3314918687
+UniRef50_U0AI36: Antitoxin YeeU	0.3314654472
+UniRef50_U0AI36: Antitoxin YeeU|unclassified	0.3314654472
+UniRef50_X7FI53	0.3314608881
+UniRef50_X7FI53|unclassified	0.3314608881
+UniRef50_X5E2G1: Transposase DDE domain protein	0.3313699166
+UniRef50_X5E2G1: Transposase DDE domain protein|unclassified	0.3313699166
+UniRef50_A9WQ71: Arabinose efflux permease	0.3313630679
+UniRef50_A9WQ71: Arabinose efflux permease|unclassified	0.3313630679
+UniRef50_R5QQK6: UPF0301 protein BN682_00876	0.3313511267
+UniRef50_R5QQK6: UPF0301 protein BN682_00876|unclassified	0.3313511267
+UniRef50_W5LSB3	0.3313339602
+UniRef50_W5LSB3|unclassified	0.3313339602
+UniRef50_UPI000372E285: hypothetical protein	0.3312796383
+UniRef50_UPI000372E285: hypothetical protein|unclassified	0.3312796383
+UniRef50_A0A026VYQ3	0.3312595594
+UniRef50_A0A026VYQ3|unclassified	0.3312595594
+UniRef50_Q395K5	0.3312408326
+UniRef50_Q395K5|unclassified	0.3312408326
+UniRef50_Q9P9A1: Nitrate reductase beta-subunit (Fragment)	0.3312161501
+UniRef50_Q9P9A1: Nitrate reductase beta-subunit (Fragment)|unclassified	0.3312161501
+UniRef50_UPI00047935B6: cytochrome C oxidase	0.3311893816
+UniRef50_UPI00047935B6: cytochrome C oxidase|unclassified	0.3311893816
+UniRef50_UPI0004672FA6: hypothetical protein	0.3311733472
+UniRef50_UPI0004672FA6: hypothetical protein|unclassified	0.3311733472
+UniRef50_UPI00016AF7F9: capsular synthesis regulator component B, partial	0.3311455365
+UniRef50_UPI00016AF7F9: capsular synthesis regulator component B, partial|unclassified	0.3311455365
+UniRef50_UPI00047C6850: hypothetical protein	0.3310677084
+UniRef50_UPI00047C6850: hypothetical protein|unclassified	0.3310677084
+UniRef50_UPI000287D657: exodeoxyribonuclease III	0.3310364947
+UniRef50_UPI000287D657: exodeoxyribonuclease III|unclassified	0.3310364947
+UniRef50_UPI00036C5040: hypothetical protein	0.3310179962
+UniRef50_UPI00036C5040: hypothetical protein|unclassified	0.3310179962
+UniRef50_K2P0C4	0.3309601378
+UniRef50_K2P0C4|unclassified	0.3309601378
+UniRef50_U6HJZ8: Succinate dehydrogenase iron sulfur protein	0.3309343446
+UniRef50_U6HJZ8: Succinate dehydrogenase iron sulfur protein|unclassified	0.3309343446
+UniRef50_UPI00046CA925: hypothetical protein	0.3309210242
+UniRef50_UPI00046CA925: hypothetical protein|unclassified	0.3309210242
+UniRef50_UPI00046E9CB0: hypothetical protein	0.3309058456
+UniRef50_UPI00046E9CB0: hypothetical protein|unclassified	0.3309058456
+UniRef50_F7YEH1	0.3308915372
+UniRef50_F7YEH1|unclassified	0.3308915372
+UniRef50_Q2P2V7: Uracil phosphoribosyltransferase	0.3307878232
+UniRef50_Q2P2V7: Uracil phosphoribosyltransferase|unclassified	0.3307878232
+UniRef50_D0D2A5	0.3307546828
+UniRef50_D0D2A5|unclassified	0.3307546828
+UniRef50_W8U2K8	0.3307226240
+UniRef50_W8U2K8|unclassified	0.3307226240
+UniRef50_UPI000378916C: hypothetical protein	0.3306804478
+UniRef50_UPI000378916C: hypothetical protein|unclassified	0.3306804478
+UniRef50_F9PTR8: Rhodanese-like protein	0.3306758882
+UniRef50_F9PTR8: Rhodanese-like protein|unclassified	0.3306758882
+UniRef50_D2J7X6	0.3306599843
+UniRef50_D2J7X6|unclassified	0.3306599843
+UniRef50_K8CQS9	0.3306160017
+UniRef50_K8CQS9|unclassified	0.3306160017
+UniRef50_U9X3Y3: Rhamnan synthesis protein F domain protein	0.3305955179
+UniRef50_U9X3Y3: Rhamnan synthesis protein F domain protein|unclassified	0.3305955179
+UniRef50_C4LCS1	0.3305876601
+UniRef50_C4LCS1|unclassified	0.3305876601
+UniRef50_UPI000371C67C: hypothetical protein	0.3305860927
+UniRef50_UPI000371C67C: hypothetical protein|unclassified	0.3305860927
+UniRef50_A0QUX7: Acetolactate synthase small subunit	0.3305510651
+UniRef50_A0QUX7: Acetolactate synthase small subunit|unclassified	0.3305510651
+UniRef50_UPI0002888243: septation ring formation regulator EzrA	0.3305209144
+UniRef50_UPI0002888243: septation ring formation regulator EzrA|unclassified	0.3305209144
+UniRef50_UPI000181692F: probable ammonium transporter (partial sequence c terminus) protein	0.3305150662
+UniRef50_UPI000181692F: probable ammonium transporter (partial sequence c terminus) protein|unclassified	0.3305150662
+UniRef50_UPI00036B4699: hypothetical protein	0.3304917586
+UniRef50_UPI00036B4699: hypothetical protein|unclassified	0.3304917586
+UniRef50_W1WIV7: CHAP protein (Fragment)	0.3304147996
+UniRef50_W1WIV7: CHAP protein (Fragment)|unclassified	0.3304147996
+UniRef50_X2MYC3: GSH-dependent disulfide bond oxidoreductase	0.3304100990
+UniRef50_X2MYC3: GSH-dependent disulfide bond oxidoreductase|unclassified	0.3304100990
+UniRef50_UPI0004560D05: hypothetical protein PFL1_02509	0.3304084836
+UniRef50_UPI0004560D05: hypothetical protein PFL1_02509|unclassified	0.3304084836
+UniRef50_V5SA99: C4-dicarboxylate ABC transporter substrate-binding protein	0.3304084032
+UniRef50_V5SA99: C4-dicarboxylate ABC transporter substrate-binding protein|unclassified	0.3304084032
+UniRef50_Q04BY7: Energy-coupling factor transporter ATP-binding protein EcfA1	0.3304020352
+UniRef50_Q04BY7: Energy-coupling factor transporter ATP-binding protein EcfA1|unclassified	0.3304020352
+UniRef50_F0Y7D5: Expressed protein (Fragment)	0.3303409966
+UniRef50_F0Y7D5: Expressed protein (Fragment)|unclassified	0.3303409966
+UniRef50_G4FQF9	0.3303124462
+UniRef50_G4FQF9|unclassified	0.3303124462
+UniRef50_UPI00036236F1: hypothetical protein	0.3303102770
+UniRef50_UPI00036236F1: hypothetical protein|unclassified	0.3303102770
+UniRef50_R7YUD8	0.3303010602
+UniRef50_R7YUD8|unclassified	0.3303010602
+UniRef50_K5TBZ0	0.3302915187
+UniRef50_K5TBZ0|unclassified	0.3302915187
+UniRef50_O61573: GTP cyclohydrolase 1	0.3302732703
+UniRef50_O61573: GTP cyclohydrolase 1|unclassified	0.3302732703
+UniRef50_UPI000464369A: hypothetical protein	0.3302590889
+UniRef50_UPI000464369A: hypothetical protein|unclassified	0.3302590889
+UniRef50_UPI000473138C: hypothetical protein, partial	0.3301618318
+UniRef50_UPI000473138C: hypothetical protein, partial|unclassified	0.3301618318
+UniRef50_UPI000476294D: formyltetrahydrofolate deformylase	0.3301477095
+UniRef50_UPI000476294D: formyltetrahydrofolate deformylase|unclassified	0.3301477095
+UniRef50_L1L5C7	0.3301410933
+UniRef50_L1L5C7|unclassified	0.3301410933
+UniRef50_UPI00047AE6B6: secretion protein HylD	0.3300445914
+UniRef50_UPI00047AE6B6: secretion protein HylD|unclassified	0.3300445914
+UniRef50_S8JJV8	0.3300163775
+UniRef50_S8JJV8|unclassified	0.3300163775
+UniRef50_UPI000301EB97: hypothetical protein	0.3299635878
+UniRef50_UPI000301EB97: hypothetical protein|unclassified	0.3299635878
+UniRef50_UPI00035D6DF9: hypothetical protein	0.3299399328
+UniRef50_UPI00035D6DF9: hypothetical protein|unclassified	0.3299399328
+UniRef50_D8LWF2: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_0	0.3299230787
+UniRef50_D8LWF2: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_0|unclassified	0.3299230787
+UniRef50_H1VEA8	0.3298763732
+UniRef50_H1VEA8|unclassified	0.3298763732
+UniRef50_A4KKZ2: Integral membrane protein	0.3298746189
+UniRef50_A4KKZ2: Integral membrane protein|unclassified	0.3298746189
+UniRef50_Q32IF4: IS911 ORF2	0.3298414141
+UniRef50_Q32IF4: IS911 ORF2|unclassified	0.3298414141
+UniRef50_H0RUF8	0.3298295514
+UniRef50_H0RUF8|unclassified	0.3298295514
+UniRef50_UPI000248CDD5: hypothetical protein	0.3297999701
+UniRef50_UPI000248CDD5: hypothetical protein|unclassified	0.3297999701
+UniRef50_I1DZ41	0.3297999353
+UniRef50_I1DZ41|unclassified	0.3297999353
+UniRef50_B6J8V2: Ribosomal RNA small subunit methyltransferase G	0.3297764679
+UniRef50_B6J8V2: Ribosomal RNA small subunit methyltransferase G|unclassified	0.3297764679
+UniRef50_UPI00035DE79A: hypothetical protein	0.3297643206
+UniRef50_UPI00035DE79A: hypothetical protein|unclassified	0.3297643206
+UniRef50_UPI0003B39ECA: ribose pyranase	0.3297590510
+UniRef50_UPI0003B39ECA: ribose pyranase|unclassified	0.3297590510
+UniRef50_G3N4L7	0.3297558456
+UniRef50_G3N4L7|unclassified	0.3297558456
+UniRef50_UPI000471B614: hypothetical protein	0.3297519764
+UniRef50_UPI000471B614: hypothetical protein|unclassified	0.3297519764
+UniRef50_B7FSC7: Predicted protein	0.3297440409
+UniRef50_B7FSC7: Predicted protein|unclassified	0.3297440409
+UniRef50_Q3JEP4: Adenine phosphoribosyltransferase	0.3297240318
+UniRef50_Q3JEP4: Adenine phosphoribosyltransferase|unclassified	0.3297240318
+UniRef50_B6EPN7: Phosphopantetheine adenylyltransferase	0.3297171011
+UniRef50_B6EPN7: Phosphopantetheine adenylyltransferase|unclassified	0.3297171011
+UniRef50_UPI0003604DB4: hypothetical protein	0.3297044328
+UniRef50_UPI0003604DB4: hypothetical protein|unclassified	0.3297044328
+UniRef50_W8T948	0.3297023658
+UniRef50_W8T948|unclassified	0.3297023658
+UniRef50_UPI00035E46DF: hypothetical protein	0.3296974174
+UniRef50_UPI00035E46DF: hypothetical protein|unclassified	0.3296974174
+UniRef50_UPI000375B50D: hypothetical protein, partial	0.3296968605
+UniRef50_UPI000375B50D: hypothetical protein, partial|unclassified	0.3296968605
+UniRef50_W9GS58	0.3296940374
+UniRef50_W9GS58|unclassified	0.3296940374
+UniRef50_A3SJL5	0.3296768896
+UniRef50_A3SJL5|unclassified	0.3296768896
+UniRef50_L6UKS7: Virulence effector protein	0.3296430590
+UniRef50_L6UKS7: Virulence effector protein|unclassified	0.3296430590
+UniRef50_UPI000306A934: hypothetical protein	0.3295507771
+UniRef50_UPI000306A934: hypothetical protein|unclassified	0.3295507771
+UniRef50_UPI00047221AF: bifunctional glyoxylate/hydroxypyruvate reductase B	0.3295504071
+UniRef50_UPI00047221AF: bifunctional glyoxylate/hydroxypyruvate reductase B|unclassified	0.3295504071
+UniRef50_UPI0002F9C6D8: hypothetical protein	0.3295452590
+UniRef50_UPI0002F9C6D8: hypothetical protein|unclassified	0.3295452590
+UniRef50_UPI000372E136: hypothetical protein	0.3295075476
+UniRef50_UPI000372E136: hypothetical protein|unclassified	0.3295075476
+UniRef50_UPI000479EF00: hypothetical protein	0.3295040796
+UniRef50_UPI000479EF00: hypothetical protein|unclassified	0.3295040796
+UniRef50_UPI0004038030: sugar ABC transporter ATP-binding protein	0.3294531241
+UniRef50_UPI0004038030: sugar ABC transporter ATP-binding protein|unclassified	0.3294531241
+UniRef50_UPI0002559497: response regulator	0.3294087154
+UniRef50_UPI0002559497: response regulator|unclassified	0.3294087154
+UniRef50_UPI00034622D9: hypothetical protein	0.3293805497
+UniRef50_UPI00034622D9: hypothetical protein|unclassified	0.3293805497
+UniRef50_E7THG4: Colanic acid polymerase WcaD	0.3293650385
+UniRef50_E7THG4: Colanic acid polymerase WcaD|unclassified	0.3293650385
+UniRef50_UPI00046CF6FC	0.3293482345
+UniRef50_UPI00046CF6FC|unclassified	0.3293482345
+UniRef50_UPI0003EB4A3A: hypothetical protein, partial	0.3293324199
+UniRef50_UPI0003EB4A3A: hypothetical protein, partial|unclassified	0.3293324199
+UniRef50_X0X0V1: Marine sediment metagenome DNA, contig: S01H1_S31760 (Fragment)	0.3293227931
+UniRef50_X0X0V1: Marine sediment metagenome DNA, contig: S01H1_S31760 (Fragment)|unclassified	0.3293227931
+UniRef50_F2A341	0.3293214406
+UniRef50_F2A341|unclassified	0.3293214406
+UniRef50_UPI000465B512: flavin reductase	0.3293170506
+UniRef50_UPI000465B512: flavin reductase|unclassified	0.3293170506
+UniRef50_UPI0003791F03: hypothetical protein	0.3292881025
+UniRef50_UPI0003791F03: hypothetical protein|unclassified	0.3292881025
+UniRef50_UPI0002D562AA: peptidase	0.3292820755
+UniRef50_UPI0002D562AA: peptidase|unclassified	0.3292820755
+UniRef50_U6MLF4	0.3292805670
+UniRef50_U6MLF4|unclassified	0.3292805670
+UniRef50_UPI000377D609: hypothetical protein	0.3292589369
+UniRef50_UPI000377D609: hypothetical protein|unclassified	0.3292589369
+UniRef50_T1B7Z5: Biotin/lipoyl attachment domain protein (Fragment)	0.3292477085
+UniRef50_T1B7Z5: Biotin/lipoyl attachment domain protein (Fragment)|unclassified	0.3292477085
+UniRef50_Q9X0N9: Glucose-6-phosphate 1-dehydrogenase	0.3292416509
+UniRef50_Q9X0N9: Glucose-6-phosphate 1-dehydrogenase|unclassified	0.3292416509
+UniRef50_R5H0S1	0.3291808332
+UniRef50_R5H0S1|unclassified	0.3291808332
+UniRef50_Q3KIW5: NH(3)-dependent NAD(+) synthetase	0.3291623347
+UniRef50_Q3KIW5: NH(3)-dependent NAD(+) synthetase|unclassified	0.3291623347
+UniRef50_H6RCQ6	0.3291146432
+UniRef50_H6RCQ6|unclassified	0.3291146432
+UniRef50_R6MIG8	0.3290955859
+UniRef50_R6MIG8|unclassified	0.3290955859
+UniRef50_D6ED14	0.3290872256
+UniRef50_D6ED14|unclassified	0.3290872256
+UniRef50_UPI00047846BC: FMN reductase	0.3290393986
+UniRef50_UPI00047846BC: FMN reductase|unclassified	0.3290393986
+UniRef50_UPI0004743DFB: long-chain fatty acid--CoA ligase, partial	0.3290331823
+UniRef50_UPI0004743DFB: long-chain fatty acid--CoA ligase, partial|unclassified	0.3290331823
+UniRef50_A4AEG2	0.3290299113
+UniRef50_A4AEG2|unclassified	0.3290299113
+UniRef50_B4SS16: Phosphopantetheine adenylyltransferase	0.3289977572
+UniRef50_B4SS16: Phosphopantetheine adenylyltransferase|unclassified	0.3289977572
+UniRef50_C1DET6	0.3289388309
+UniRef50_C1DET6|unclassified	0.3289388309
+UniRef50_M1XZU6	0.3289343136
+UniRef50_M1XZU6|unclassified	0.3289343136
+UniRef50_D2VFU7: Predicted protein	0.3288761797
+UniRef50_D2VFU7: Predicted protein|unclassified	0.3288761797
+UniRef50_E1J8T3	0.3288720693
+UniRef50_E1J8T3|unclassified	0.3288720693
+UniRef50_T5KGE1	0.3288497973
+UniRef50_T5KGE1|unclassified	0.3288497973
+UniRef50_UPI000365D2A7: hypothetical protein	0.3288425592
+UniRef50_UPI000365D2A7: hypothetical protein|unclassified	0.3288425592
+UniRef50_A0A024TNG2	0.3288425140
+UniRef50_A0A024TNG2|unclassified	0.3288425140
+UniRef50_UPI000477E8B8: hypothetical protein	0.3288335142
+UniRef50_UPI000477E8B8: hypothetical protein|unclassified	0.3288335142
+UniRef50_B5ZBT1: Urease subunit gamma	0.3288309646
+UniRef50_B5ZBT1: Urease subunit gamma|unclassified	0.3288309646
+UniRef50_X1R832: Marine sediment metagenome DNA, contig: S06H3_S28915 (Fragment)	0.3288113805
+UniRef50_X1R832: Marine sediment metagenome DNA, contig: S06H3_S28915 (Fragment)|unclassified	0.3288113805
+UniRef50_UPI000471B2C3: shikimate dehydrogenase	0.3288077626
+UniRef50_UPI000471B2C3: shikimate dehydrogenase|unclassified	0.3288077626
+UniRef50_UPI00025561B6: phosphoheptose isomerase, partial	0.3288027350
+UniRef50_UPI00025561B6: phosphoheptose isomerase, partial|unclassified	0.3288027350
+UniRef50_W6JTU8	0.3287969719
+UniRef50_W6JTU8|unclassified	0.3287969719
+UniRef50_Q98CY5: Urease accessory protein UreJ	0.3287863249
+UniRef50_Q98CY5: Urease accessory protein UreJ|unclassified	0.3287863249
+UniRef50_UPI0003F174F4: PREDICTED: cell wall integrity and stress response component 1-like	0.3287327002
+UniRef50_UPI0003F174F4: PREDICTED: cell wall integrity and stress response component 1-like|unclassified	0.3287327002
+UniRef50_UPI0003691544: hypothetical protein	0.3286620612
+UniRef50_UPI0003691544: hypothetical protein|unclassified	0.3286620612
+UniRef50_UPI0003B5F24C: amino acid permease	0.3286590493
+UniRef50_UPI0003B5F24C: amino acid permease|unclassified	0.3286590493
+UniRef50_UPI0004625279: transposase	0.3286320099
+UniRef50_UPI0004625279: transposase|unclassified	0.3286320099
+UniRef50_UPI0002486501: methylcitrate synthase	0.3286317912
+UniRef50_UPI0002486501: methylcitrate synthase|unclassified	0.3286317912
+UniRef50_G2IU31	0.3285962542
+UniRef50_G2IU31|unclassified	0.3285962542
+UniRef50_X8A136	0.3285813116
+UniRef50_X8A136|unclassified	0.3285813116
+UniRef50_UPI000478065F: chloramphenicol acetyltransferase	0.3285533064
+UniRef50_UPI000478065F: chloramphenicol acetyltransferase|unclassified	0.3285533064
+UniRef50_UPI00036FE8BA: hypothetical protein	0.3285495298
+UniRef50_UPI00036FE8BA: hypothetical protein|unclassified	0.3285495298
+UniRef50_A0A011QTV2: GDP-L-fucose synthase	0.3285336409
+UniRef50_A0A011QTV2: GDP-L-fucose synthase|unclassified	0.3285336409
+UniRef50_UPI000383150A: hypothetical protein	0.3285119088
+UniRef50_UPI000383150A: hypothetical protein|unclassified	0.3285119088
+UniRef50_V3Y8N4	0.3284678424
+UniRef50_V3Y8N4|unclassified	0.3284678424
+UniRef50_Q72VJ3	0.3284427735
+UniRef50_Q72VJ3|unclassified	0.3284427735
+UniRef50_I4VPJ4: Carbamoyl-phosphate synthase small subunit	0.3283929555
+UniRef50_I4VPJ4: Carbamoyl-phosphate synthase small subunit|unclassified	0.3283929555
+UniRef50_UPI00044012CE: PREDICTED: swi5-dependent recombination DNA repair protein 1 homolog	0.3283339521
+UniRef50_UPI00044012CE: PREDICTED: swi5-dependent recombination DNA repair protein 1 homolog|unclassified	0.3283339521
+UniRef50_UPI0004716B5E: hypothetical protein	0.3283314411
+UniRef50_UPI0004716B5E: hypothetical protein|unclassified	0.3283314411
+UniRef50_UPI000382F897: dimethylmenaquinone methyltransferase	0.3282994091
+UniRef50_UPI000382F897: dimethylmenaquinone methyltransferase|unclassified	0.3282994091
+UniRef50_J9E231	0.3282985654
+UniRef50_J9E231|unclassified	0.3282985654
+UniRef50_UPI00046915E4: homocysteine methyltransferase	0.3282454870
+UniRef50_UPI00046915E4: homocysteine methyltransferase|unclassified	0.3282454870
+UniRef50_L6XGV6	0.3282394317
+UniRef50_L6XGV6|unclassified	0.3282394317
+UniRef50_UPI0003B3E021: multidrug ABC transporter substrate-binding protein, partial	0.3282338303
+UniRef50_UPI0003B3E021: multidrug ABC transporter substrate-binding protein, partial|unclassified	0.3282338303
+UniRef50_UPI000248C424: hypothetical protein	0.3282231699
+UniRef50_UPI000248C424: hypothetical protein|unclassified	0.3282231699
+UniRef50_A0A058ZHX9: Lipoprotein	0.3281880521
+UniRef50_A0A058ZHX9: Lipoprotein|unclassified	0.3281880521
+UniRef50_R4Y9E6: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.3281714572
+UniRef50_R4Y9E6: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|unclassified	0.3281714572
+UniRef50_UPI00035F8005: antirepressor	0.3281663247
+UniRef50_UPI00035F8005: antirepressor|unclassified	0.3281663247
+UniRef50_UPI0003D719FF	0.3281399803
+UniRef50_UPI0003D719FF|unclassified	0.3281399803
+UniRef50_UPI00037EA790: hypothetical protein	0.3281317848
+UniRef50_UPI00037EA790: hypothetical protein|unclassified	0.3281317848
+UniRef50_F7Z394: Bis(5'nucleosyl)-tetraphosphatase, ApaH	0.3281044520
+UniRef50_F7Z394: Bis(5'nucleosyl)-tetraphosphatase, ApaH|unclassified	0.3281044520
+UniRef50_UPI00036938AE: hypothetical protein	0.3281026059
+UniRef50_UPI00036938AE: hypothetical protein|unclassified	0.3281026059
+UniRef50_UPI0003169EC4: hypothetical protein	0.3280627521
+UniRef50_UPI0003169EC4: hypothetical protein|unclassified	0.3280627521
+UniRef50_UPI00046F3F36: hypothetical protein, partial	0.3280575639
+UniRef50_UPI00046F3F36: hypothetical protein, partial|unclassified	0.3280575639
+UniRef50_UPI000377BBC9: hypothetical protein	0.3280377798
+UniRef50_UPI000377BBC9: hypothetical protein|unclassified	0.3280377798
+UniRef50_UPI0003632C2F: hypothetical protein, partial	0.3280226258
+UniRef50_UPI0003632C2F: hypothetical protein, partial|unclassified	0.3280226258
+UniRef50_D6AVM3: Predicted protein	0.3280009548
+UniRef50_D6AVM3: Predicted protein|unclassified	0.3280009548
+UniRef50_Q8XW28: Urocanate hydratase	0.3279784997
+UniRef50_Q8XW28: Urocanate hydratase|unclassified	0.3279784997
+UniRef50_S6D666	0.3279588869
+UniRef50_S6D666|unclassified	0.3279588869
+UniRef50_M9RLV6	0.3279484107
+UniRef50_M9RLV6|unclassified	0.3279484107
+UniRef50_M5JVY9: Phage tail protein X3	0.3279456989
+UniRef50_M5JVY9: Phage tail protein X3|unclassified	0.3279456989
+UniRef50_A0A011PW24: Heme utilization protein HutZ	0.3279445887
+UniRef50_A0A011PW24: Heme utilization protein HutZ|unclassified	0.3279445887
+UniRef50_M0E9W2: ABC transporter (Fragment)	0.3279220222
+UniRef50_M0E9W2: ABC transporter (Fragment)|unclassified	0.3279220222
+UniRef50_U6MQF9	0.3279102065
+UniRef50_U6MQF9|unclassified	0.3279102065
+UniRef50_D7BLX5: Extracellular solute-binding protein family 1	0.3278935658
+UniRef50_D7BLX5: Extracellular solute-binding protein family 1|unclassified	0.3278935658
+UniRef50_W3REM3	0.3278879954
+UniRef50_W3REM3|unclassified	0.3278879954
+UniRef50_D5DJW0	0.3278700399
+UniRef50_D5DJW0|unclassified	0.3278700399
+UniRef50_R6QNV3	0.3278558480
+UniRef50_R6QNV3|unclassified	0.3278558480
+UniRef50_X3JFY0: Hydrogenase	0.3278524769
+UniRef50_X3JFY0: Hydrogenase|unclassified	0.3278524769
+UniRef50_S4Y793	0.3278399542
+UniRef50_S4Y793|unclassified	0.3278399542
+UniRef50_UPI0004675A7A: thymidylate synthase	0.3278297574
+UniRef50_UPI0004675A7A: thymidylate synthase|unclassified	0.3278297574
+UniRef50_UPI00037812A6: hypothetical protein	0.3278278267
+UniRef50_UPI00037812A6: hypothetical protein|unclassified	0.3278278267
+UniRef50_Q28TT2	0.3278129144
+UniRef50_Q28TT2|unclassified	0.3278129144
+UniRef50_Q6YYS4	0.3277908462
+UniRef50_Q6YYS4|unclassified	0.3277908462
+UniRef50_Q5EA45-2: Isoform 2 of FAD-dependent oxidoreductase domain-containing protein 1	0.3277801014
+UniRef50_Q5EA45-2: Isoform 2 of FAD-dependent oxidoreductase domain-containing protein 1|unclassified	0.3277801014
+UniRef50_UPI000472245F: hypothetical protein	0.3277771439
+UniRef50_UPI000472245F: hypothetical protein|unclassified	0.3277771439
+UniRef50_I4K8Y4	0.3277717695
+UniRef50_I4K8Y4|unclassified	0.3277717695
+UniRef50_B5HA99	0.3277662703
+UniRef50_B5HA99|unclassified	0.3277662703
+UniRef50_F5RGX0	0.3277569639
+UniRef50_F5RGX0|unclassified	0.3277569639
+UniRef50_C0BU02	0.3277496508
+UniRef50_C0BU02|unclassified	0.3277496508
+UniRef50_UPI00037626C6: peptidase	0.3276966820
+UniRef50_UPI00037626C6: peptidase|unclassified	0.3276966820
+UniRef50_UPI00037E9BF3: hypothetical protein	0.3276961333
+UniRef50_UPI00037E9BF3: hypothetical protein|unclassified	0.3276961333
+UniRef50_UPI00036F9FC2: hypothetical protein	0.3276798919
+UniRef50_UPI00036F9FC2: hypothetical protein|unclassified	0.3276798919
+UniRef50_A9HHR8: Heat shock protein Hsp20	0.3276486540
+UniRef50_A9HHR8: Heat shock protein Hsp20|unclassified	0.3276486540
+UniRef50_UPI000476FFD2: ABC transporter permease	0.3276410559
+UniRef50_UPI000476FFD2: ABC transporter permease|unclassified	0.3276410559
+UniRef50_K2FDY9: UPF0301 protein ACD_16C00235G0006	0.3276231152
+UniRef50_K2FDY9: UPF0301 protein ACD_16C00235G0006|unclassified	0.3276231152
+UniRef50_P49058: Inosine-5'-monophosphate dehydrogenase	0.3276166376
+UniRef50_P49058: Inosine-5'-monophosphate dehydrogenase|unclassified	0.3276166376
+UniRef50_P08681: Cytochrome c oxidase subunit 1	0.3276055609
+UniRef50_P08681: Cytochrome c oxidase subunit 1|unclassified	0.3276055609
+UniRef50_H0JX68: Putative ABC transporter permease	0.3276007718
+UniRef50_H0JX68: Putative ABC transporter permease|unclassified	0.3276007718
+UniRef50_UPI000477A8DE: hypothetical protein, partial	0.3275995281
+UniRef50_UPI000477A8DE: hypothetical protein, partial|unclassified	0.3275995281
+UniRef50_X7EKT4	0.3275864209
+UniRef50_X7EKT4|unclassified	0.3275864209
+UniRef50_UPI0001CC0E14: resolvase, partial	0.3274933096
+UniRef50_UPI0001CC0E14: resolvase, partial|unclassified	0.3274933096
+UniRef50_UPI000262CC20: universal stress protein A	0.3274841161
+UniRef50_UPI000262CC20: universal stress protein A|unclassified	0.3274841161
+UniRef50_W8U9Y9: LOG family protein YgdH	0.3274615909
+UniRef50_W8U9Y9: LOG family protein YgdH|unclassified	0.3274615909
+UniRef50_UPI0003B324DC: flagellar protein FlgJ	0.3274136116
+UniRef50_UPI0003B324DC: flagellar protein FlgJ|unclassified	0.3274136116
+UniRef50_Q0FVS1	0.3274058956
+UniRef50_Q0FVS1|unclassified	0.3274058956
+UniRef50_D8QD85	0.3273288160
+UniRef50_D8QD85|unclassified	0.3273288160
+UniRef50_UPI0003B73D80: Fis family transcriptional regulator	0.3272898981
+UniRef50_UPI0003B73D80: Fis family transcriptional regulator|unclassified	0.3272898981
+UniRef50_A0A017RMU7: NADP-dependent oxidoreductase	0.3272447719
+UniRef50_A0A017RMU7: NADP-dependent oxidoreductase|unclassified	0.3272447719
+UniRef50_UPI000401A989: hypothetical protein	0.3272342505
+UniRef50_UPI000401A989: hypothetical protein|unclassified	0.3272342505
+UniRef50_D2NRN3	0.3272313271
+UniRef50_D2NRN3|unclassified	0.3272313271
+UniRef50_I1PC32	0.3272262515
+UniRef50_I1PC32|unclassified	0.3272262515
+UniRef50_D9SGF1: HupE/UreJ protein	0.3271936461
+UniRef50_D9SGF1: HupE/UreJ protein|unclassified	0.3271936461
+UniRef50_A6FKQ9: Carbon monoxide dehydrogenase operon G protein	0.3271700304
+UniRef50_A6FKQ9: Carbon monoxide dehydrogenase operon G protein|unclassified	0.3271700304
+UniRef50_Q0SGA9: Possible transcriptional regulator	0.3271426387
+UniRef50_Q0SGA9: Possible transcriptional regulator|unclassified	0.3271426387
+UniRef50_UPI00005578B7: S-adenosylhomocysteine hydrolase	0.3271133771
+UniRef50_UPI00005578B7: S-adenosylhomocysteine hydrolase|unclassified	0.3271133771
+UniRef50_B0R332: Tryptophan synthase beta chain	0.3270988894
+UniRef50_B0R332: Tryptophan synthase beta chain|unclassified	0.3270988894
+UniRef50_UPI0003B35CAD: hypothetical protein	0.3270574526
+UniRef50_UPI0003B35CAD: hypothetical protein|unclassified	0.3270574526
+UniRef50_A8IIV4: NAD-dependent formate dehydrogenase delta subunit	0.3270503182
+UniRef50_A8IIV4: NAD-dependent formate dehydrogenase delta subunit|unclassified	0.3270503182
+UniRef50_H4QI40: Peptidase M23 family protein	0.3270185755
+UniRef50_H4QI40: Peptidase M23 family protein|unclassified	0.3270185755
+UniRef50_B3NYF4: GG17530	0.3269751382
+UniRef50_B3NYF4: GG17530|unclassified	0.3269751382
+UniRef50_UPI000371AEC6: hypothetical protein, partial	0.3269452896
+UniRef50_UPI000371AEC6: hypothetical protein, partial|unclassified	0.3269452896
+UniRef50_K4NN39: Type I restriction enzyme R protein	0.3269042171
+UniRef50_K4NN39: Type I restriction enzyme R protein|g__Helicobacter.s__Helicobacter_pylori	0.3269042171
+UniRef50_E0MPA8	0.3268340307
+UniRef50_E0MPA8|unclassified	0.3268340307
+UniRef50_A0A021W5J1: Membrane protein	0.3268079893
+UniRef50_A0A021W5J1: Membrane protein|unclassified	0.3268079893
+UniRef50_UPI0003B37E24: MULTISPECIES: chemotaxis protein CheY	0.3267964733
+UniRef50_UPI0003B37E24: MULTISPECIES: chemotaxis protein CheY|unclassified	0.3267964733
+UniRef50_UPI0003779C04: hypothetical protein	0.3267906827
+UniRef50_UPI0003779C04: hypothetical protein|unclassified	0.3267906827
+UniRef50_F2MQN5	0.3267627458
+UniRef50_F2MQN5|unclassified	0.3267627458
+UniRef50_D3NTP7	0.3267214896
+UniRef50_D3NTP7|unclassified	0.3267214896
+UniRef50_Q7N3E1: Multidrug resistance protein MdtC	0.3266906240
+UniRef50_Q7N3E1: Multidrug resistance protein MdtC|g__Escherichia.s__Escherichia_coli	0.3266906240
+UniRef50_A6KYV3	0.3266756383
+UniRef50_A6KYV3|unclassified	0.3266756383
+UniRef50_UPI00046AAD7F: hypothetical protein	0.3266384073
+UniRef50_UPI00046AAD7F: hypothetical protein|unclassified	0.3266384073
+UniRef50_X4BRC7	0.3266025090
+UniRef50_X4BRC7|unclassified	0.3266025090
+UniRef50_B6IW86: NADH-ubiquinone oxidoreductase subunit, putative	0.3266005895
+UniRef50_B6IW86: NADH-ubiquinone oxidoreductase subunit, putative|unclassified	0.3266005895
+UniRef50_K8CRJ6	0.3265339394
+UniRef50_K8CRJ6|unclassified	0.3265339394
+UniRef50_UPI00047E9D64: MFS transporter	0.3265230085
+UniRef50_UPI00047E9D64: MFS transporter|unclassified	0.3265230085
+UniRef50_W1E109	0.3265222188
+UniRef50_W1E109|unclassified	0.3265222188
+UniRef50_G8MYB3: Multidrug resistance protein B	0.3265039270
+UniRef50_G8MYB3: Multidrug resistance protein B|unclassified	0.3265039270
+UniRef50_U3TVJ7: MotA protein	0.3264846737
+UniRef50_U3TVJ7: MotA protein|unclassified	0.3264846737
+UniRef50_UPI00046850A9: membrane protein	0.3264257696
+UniRef50_UPI00046850A9: membrane protein|unclassified	0.3264257696
+UniRef50_UPI00036B09EF: hypothetical protein, partial	0.3264153529
+UniRef50_UPI00036B09EF: hypothetical protein, partial|unclassified	0.3264153529
+UniRef50_Q398A5	0.3264064682
+UniRef50_Q398A5|unclassified	0.3264064682
+UniRef50_I4YZ70: Integral membrane protein MviN	0.3263973717
+UniRef50_I4YZ70: Integral membrane protein MviN|unclassified	0.3263973717
+UniRef50_K0T1J1	0.3263927271
+UniRef50_K0T1J1|unclassified	0.3263927271
+UniRef50_UPI000368193C: hypothetical protein	0.3263688619
+UniRef50_UPI000368193C: hypothetical protein|unclassified	0.3263688619
+UniRef50_U6KM73	0.3263650604
+UniRef50_U6KM73|unclassified	0.3263650604
+UniRef50_UPI00035E542D: hypothetical protein	0.3263322579
+UniRef50_UPI00035E542D: hypothetical protein|unclassified	0.3263322579
+UniRef50_G7QN05: MaoC-like acyl dehydratase	0.3263127975
+UniRef50_G7QN05: MaoC-like acyl dehydratase|unclassified	0.3263127975
+UniRef50_UPI00046AC9A8: starch-binding protein	0.3263098569
+UniRef50_UPI00046AC9A8: starch-binding protein|unclassified	0.3263098569
+UniRef50_B8EJS2: Anthranilate phosphoribosyltransferase	0.3263097499
+UniRef50_B8EJS2: Anthranilate phosphoribosyltransferase|unclassified	0.3263097499
+UniRef50_UPI000473E9CF: hypothetical protein, partial	0.3262837194
+UniRef50_UPI000473E9CF: hypothetical protein, partial|unclassified	0.3262837194
+UniRef50_UPI000287CEB1: 4-hydroxythreonine-4-phosphate dehydrogenase	0.3262826231
+UniRef50_UPI000287CEB1: 4-hydroxythreonine-4-phosphate dehydrogenase|unclassified	0.3262826231
+UniRef50_X5IMA5	0.3262796239
+UniRef50_X5IMA5|unclassified	0.3262796239
+UniRef50_H6NP28: NADPH-dependent FMN reductase	0.3262778963
+UniRef50_H6NP28: NADPH-dependent FMN reductase|unclassified	0.3262778963
+UniRef50_H0JDQ0: DSBA oxidoreductase	0.3262386780
+UniRef50_H0JDQ0: DSBA oxidoreductase|unclassified	0.3262386780
+UniRef50_T2LE59: Hydroxysteroid dehydrogenase-like protein 2	0.3262355741
+UniRef50_T2LE59: Hydroxysteroid dehydrogenase-like protein 2|unclassified	0.3262355741
+UniRef50_U5QJX0	0.3262086973
+UniRef50_U5QJX0|unclassified	0.3262086973
+UniRef50_B2UHV5: Probable chemoreceptor glutamine deamidase CheD	0.3261986230
+UniRef50_B2UHV5: Probable chemoreceptor glutamine deamidase CheD|unclassified	0.3261986230
+UniRef50_UPI0003A22915: aminotransferase class IV	0.3261954002
+UniRef50_UPI0003A22915: aminotransferase class IV|unclassified	0.3261954002
+UniRef50_UPI0003693817: hypothetical protein	0.3261576178
+UniRef50_UPI0003693817: hypothetical protein|unclassified	0.3261576178
+UniRef50_P13082: Streptomycin 3''-kinase	0.3261312143
+UniRef50_P13082: Streptomycin 3''-kinase|unclassified	0.3261312143
+UniRef50_A0A011P0Z7	0.3261086205
+UniRef50_A0A011P0Z7|unclassified	0.3261086205
+UniRef50_I6H8Y6	0.3260828626
+UniRef50_I6H8Y6|unclassified	0.3260828626
+UniRef50_UPI0004630536: hypothetical protein	0.3259816903
+UniRef50_UPI0004630536: hypothetical protein|unclassified	0.3259816903
+UniRef50_B9TP59: Oxidoreductase, putative (Fragment)	0.3259533660
+UniRef50_B9TP59: Oxidoreductase, putative (Fragment)|unclassified	0.3259533660
+UniRef50_J9P2F7	0.3259378300
+UniRef50_J9P2F7|unclassified	0.3259378300
+UniRef50_T1BC21: Phosphoribosylaminoimidazole-succinocarboxamide synthase (Fragment)	0.3259295315
+UniRef50_T1BC21: Phosphoribosylaminoimidazole-succinocarboxamide synthase (Fragment)|unclassified	0.3259295315
+UniRef50_UPI00035C76C3: hypothetical protein	0.3259292044
+UniRef50_UPI00035C76C3: hypothetical protein|unclassified	0.3259292044
+UniRef50_UPI0004666C22: hypothetical protein	0.3259202737
+UniRef50_UPI0004666C22: hypothetical protein|unclassified	0.3259202737
+UniRef50_UPI00037B5744: hypothetical protein	0.3258996199
+UniRef50_UPI00037B5744: hypothetical protein|unclassified	0.3258996199
+UniRef50_UPI000400DD75: citrate lyase subunit alpha	0.3258881732
+UniRef50_UPI000400DD75: citrate lyase subunit alpha|unclassified	0.3258881732
+UniRef50_UPI00047A9B81: ABC transporter permease	0.3258454622
+UniRef50_UPI00047A9B81: ABC transporter permease|unclassified	0.3258454622
+UniRef50_C1DL11: Secretion system protein	0.3258209479
+UniRef50_C1DL11: Secretion system protein|unclassified	0.3258209479
+UniRef50_UPI000404E07B: fatty-acid--CoA ligase	0.3258003827
+UniRef50_UPI000404E07B: fatty-acid--CoA ligase|unclassified	0.3258003827
+UniRef50_UPI00047DC9AE: hypothetical protein	0.3257821334
+UniRef50_UPI00047DC9AE: hypothetical protein|unclassified	0.3257821334
+UniRef50_UPI0001B46820: GTPase ObgE, partial	0.3257601404
+UniRef50_UPI0001B46820: GTPase ObgE, partial|unclassified	0.3257601404
+UniRef50_UPI0003B5AE6D: magnesium transporter MgtC	0.3257378373
+UniRef50_UPI0003B5AE6D: magnesium transporter MgtC|unclassified	0.3257378373
+UniRef50_UPI00035FBCBA: hypothetical protein	0.3256955760
+UniRef50_UPI00035FBCBA: hypothetical protein|unclassified	0.3256955760
+UniRef50_UPI00047B20B5: hypothetical protein	0.3256024091
+UniRef50_UPI00047B20B5: hypothetical protein|unclassified	0.3256024091
+UniRef50_G8PBW8: Phosphatidylethanolamine-binding family protein	0.3256010741
+UniRef50_G8PBW8: Phosphatidylethanolamine-binding family protein|unclassified	0.3256010741
+UniRef50_UPI00046FD571: hypothetical protein, partial	0.3255878873
+UniRef50_UPI00046FD571: hypothetical protein, partial|unclassified	0.3255878873
+UniRef50_F7SC14: Conjugative relaxase domain protein	0.3255105999
+UniRef50_F7SC14: Conjugative relaxase domain protein|unclassified	0.3255105999
+UniRef50_B2S553: NADH-quinone oxidoreductase subunit K	0.3254702494
+UniRef50_B2S553: NADH-quinone oxidoreductase subunit K|unclassified	0.3254702494
+UniRef50_C6ADP9: NADH-quinone oxidoreductase subunit K	0.3254702494
+UniRef50_C6ADP9: NADH-quinone oxidoreductase subunit K|unclassified	0.3254702494
+UniRef50_UPI00036AB26C: hypothetical protein	0.3254678567
+UniRef50_UPI00036AB26C: hypothetical protein|unclassified	0.3254678567
+UniRef50_UPI000375FAED: hypothetical protein	0.3254574476
+UniRef50_UPI000375FAED: hypothetical protein|unclassified	0.3254574476
+UniRef50_A6LC43: Xanthine phosphoribosyltransferase	0.3254356592
+UniRef50_A6LC43: Xanthine phosphoribosyltransferase|unclassified	0.3254356592
+UniRef50_Q92SH6: Peptide deformylase	0.3253659194
+UniRef50_Q92SH6: Peptide deformylase|unclassified	0.3253659194
+UniRef50_L0KVJ4: Small redox-active disulfide protein 2	0.3253604280
+UniRef50_L0KVJ4: Small redox-active disulfide protein 2|unclassified	0.3253604280
+UniRef50_UPI00032905A5: PREDICTED: basic proline-rich protein-like, partial	0.3253250044
+UniRef50_UPI00032905A5: PREDICTED: basic proline-rich protein-like, partial|unclassified	0.3253250044
+UniRef50_K1TNR8: Sulfide dehydrogenase (Flavoprotein) subunit SudB (Fragment)	0.3253192213
+UniRef50_K1TNR8: Sulfide dehydrogenase (Flavoprotein) subunit SudB (Fragment)|unclassified	0.3253192213
+UniRef50_T5DE13	0.3253021950
+UniRef50_T5DE13|unclassified	0.3253021950
+UniRef50_UPI0004788FBC: cytochrome oxidase	0.3252588768
+UniRef50_UPI0004788FBC: cytochrome oxidase|unclassified	0.3252588768
+UniRef50_M8AG73	0.3252518880
+UniRef50_M8AG73|unclassified	0.3252518880
+UniRef50_UPI0001850F52: putative RNA methylase	0.3252456656
+UniRef50_UPI0001850F52: putative RNA methylase|unclassified	0.3252456656
+UniRef50_D5VKM0	0.3252322311
+UniRef50_D5VKM0|unclassified	0.3252322311
+UniRef50_F3E5X4	0.3252188398
+UniRef50_F3E5X4|unclassified	0.3252188398
+UniRef50_V9WW95	0.3252032520
+UniRef50_V9WW95|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.3252032520
+UniRef50_V5T4B0: Pilus assembly protein PilV	0.3251656164
+UniRef50_V5T4B0: Pilus assembly protein PilV|unclassified	0.3251656164
+UniRef50_UPI00047E713F: hypothetical protein	0.3251489805
+UniRef50_UPI00047E713F: hypothetical protein|unclassified	0.3251489805
+UniRef50_J8FW11	0.3251451304
+UniRef50_J8FW11|unclassified	0.3251451304
+UniRef50_T1J3W3	0.3251390026
+UniRef50_T1J3W3|unclassified	0.3251390026
+UniRef50_UPI0002194CC0: hypothetical protein	0.3251382691
+UniRef50_UPI0002194CC0: hypothetical protein|unclassified	0.3251382691
+UniRef50_UPI0003871247: PREDICTED: collagen alpha-1(III) chain-like	0.3250830581
+UniRef50_UPI0003871247: PREDICTED: collagen alpha-1(III) chain-like|unclassified	0.3250830581
+UniRef50_UPI00036ECF80: 30S ribosomal protein S17	0.3250701610
+UniRef50_UPI00036ECF80: 30S ribosomal protein S17|unclassified	0.3250701610
+UniRef50_V1X7Z3	0.3250121515
+UniRef50_V1X7Z3|unclassified	0.3250121515
+UniRef50_C7BMH4	0.3249577352
+UniRef50_C7BMH4|unclassified	0.3249577352
+UniRef50_X4VX16: Hydrogenase-1 operon protein HyaF	0.3249338013
+UniRef50_X4VX16: Hydrogenase-1 operon protein HyaF|unclassified	0.3249338013
+UniRef50_C3AVF5: Transposase for insertion sequence element IS257 in transposon Tn4003	0.3249021877
+UniRef50_C3AVF5: Transposase for insertion sequence element IS257 in transposon Tn4003|unclassified	0.3249021877
+UniRef50_Q6Z1T7	0.3248913518
+UniRef50_Q6Z1T7|unclassified	0.3248913518
+UniRef50_UPI00036A1325: hypothetical protein	0.3248599082
+UniRef50_UPI00036A1325: hypothetical protein|unclassified	0.3248599082
+UniRef50_X8AM92: Putative primosomal protein N	0.3248497752
+UniRef50_X8AM92: Putative primosomal protein N|unclassified	0.3248497752
+UniRef50_F8FPI5: CsbD family protein	0.3248210190
+UniRef50_F8FPI5: CsbD family protein|unclassified	0.3248210190
+UniRef50_V6ERH7	0.3248181079
+UniRef50_V6ERH7|unclassified	0.3248181079
+UniRef50_P85098: Respiratory nitrate reductase beta chain (Fragments)	0.3248164407
+UniRef50_P85098: Respiratory nitrate reductase beta chain (Fragments)|unclassified	0.3248164407
+UniRef50_Q3JK04	0.3247807730
+UniRef50_Q3JK04|unclassified	0.3247807730
+UniRef50_UPI0004272708: hypothetical protein	0.3247696917
+UniRef50_UPI0004272708: hypothetical protein|unclassified	0.3247696917
+UniRef50_M7AGI7	0.3247670791
+UniRef50_M7AGI7|unclassified	0.3247670791
+UniRef50_S9QQ45: Lipoprotein, putative	0.3247622746
+UniRef50_S9QQ45: Lipoprotein, putative|unclassified	0.3247622746
+UniRef50_UPI0003B7138C: MULTISPECIES: cold-shock protein	0.3246713659
+UniRef50_UPI0003B7138C: MULTISPECIES: cold-shock protein|unclassified	0.3246713659
+UniRef50_L9P8Z2: Putative glycin-rich signal peptide protein	0.3246568899
+UniRef50_L9P8Z2: Putative glycin-rich signal peptide protein|unclassified	0.3246568899
+UniRef50_W5BFE8	0.3246464878
+UniRef50_W5BFE8|unclassified	0.3246464878
+UniRef50_Q8KTV2	0.3246426556
+UniRef50_Q8KTV2|unclassified	0.3246426556
+UniRef50_E3IAS5	0.3246344803
+UniRef50_E3IAS5|unclassified	0.3246344803
+UniRef50_F2ILR6	0.3246196897
+UniRef50_F2ILR6|unclassified	0.3246196897
+UniRef50_K9P9J8: LysM repeat-containing protein	0.3246132276
+UniRef50_K9P9J8: LysM repeat-containing protein|unclassified	0.3246132276
+UniRef50_UPI0004153B49: hypothetical protein	0.3245972371
+UniRef50_UPI0004153B49: hypothetical protein|unclassified	0.3245972371
+UniRef50_H2DK93: Truncated internaline	0.3245708547
+UniRef50_H2DK93: Truncated internaline|unclassified	0.3245708547
+UniRef50_UPI0002558A5E: co-chaperone HscB	0.3245454767
+UniRef50_UPI0002558A5E: co-chaperone HscB|unclassified	0.3245454767
+UniRef50_G0T5F6	0.3244952079
+UniRef50_G0T5F6|unclassified	0.3244952079
+UniRef50_Q64RT0: Imidazole glycerol phosphate synthase subunit HisH	0.3244949344
+UniRef50_Q64RT0: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.3244949344
+UniRef50_UPI00040BFDBA: hypothetical protein	0.3244925361
+UniRef50_UPI00040BFDBA: hypothetical protein|unclassified	0.3244925361
+UniRef50_W1JGD0: Chromosome partitioning protein ParA (Fragment)	0.3244836857
+UniRef50_W1JGD0: Chromosome partitioning protein ParA (Fragment)|unclassified	0.3244836857
+UniRef50_A4XYG1: Protein RnfH	0.3244192216
+UniRef50_A4XYG1: Protein RnfH|unclassified	0.3244192216
+UniRef50_B2HMS4	0.3243999608
+UniRef50_B2HMS4|unclassified	0.3243999608
+UniRef50_UPI000469AE30: hypothetical protein	0.3243807661
+UniRef50_UPI000469AE30: hypothetical protein|unclassified	0.3243807661
+UniRef50_B1TGN6	0.3243517195
+UniRef50_B1TGN6|unclassified	0.3243517195
+UniRef50_UPI00047D2C8F: transcriptional regulator	0.3243461524
+UniRef50_UPI00047D2C8F: transcriptional regulator|unclassified	0.3243461524
+UniRef50_D1K952: SusD family protein	0.3243276915
+UniRef50_D1K952: SusD family protein|unclassified	0.3243276915
+UniRef50_L0A7V5: ABC-type Fe3+-hydroxamate transport system, periplasmic component	0.3242971397
+UniRef50_L0A7V5: ABC-type Fe3+-hydroxamate transport system, periplasmic component|unclassified	0.3242971397
+UniRef50_V7FBU4	0.3242933436
+UniRef50_V7FBU4|unclassified	0.3242933436
+UniRef50_Q6MS86: Uracil phosphoribosyltransferase	0.3242818092
+UniRef50_Q6MS86: Uracil phosphoribosyltransferase|unclassified	0.3242818092
+UniRef50_Q56260: Ribulose bisphosphate carboxylase small chain	0.3242739285
+UniRef50_Q56260: Ribulose bisphosphate carboxylase small chain|unclassified	0.3242739285
+UniRef50_X1FAY3: Marine sediment metagenome DNA, contig: S03H2_C01152 (Fragment)	0.3242700460
+UniRef50_X1FAY3: Marine sediment metagenome DNA, contig: S03H2_C01152 (Fragment)|unclassified	0.3242700460
+UniRef50_F3C7S7	0.3242141725
+UniRef50_F3C7S7|unclassified	0.3242141725
+UniRef50_N8HF46	0.3242076577
+UniRef50_N8HF46|unclassified	0.3242076577
+UniRef50_Q486M1: Putative Holliday junction resolvase	0.3241706208
+UniRef50_Q486M1: Putative Holliday junction resolvase|unclassified	0.3241706208
+UniRef50_UPI00035B8CAE: hypothetical protein	0.3241667574
+UniRef50_UPI00035B8CAE: hypothetical protein|unclassified	0.3241667574
+UniRef50_UPI00036679E7: hypothetical protein	0.3241353407
+UniRef50_UPI00036679E7: hypothetical protein|unclassified	0.3241353407
+UniRef50_UPI000464D525: hypothetical protein	0.3241137612
+UniRef50_UPI000464D525: hypothetical protein|unclassified	0.3241137612
+UniRef50_Z2D872	0.3240998268
+UniRef50_Z2D872|unclassified	0.3240998268
+UniRef50_B1M6B8: Peroxyureidoacrylate/ureidoacrylate amidohydrolase RutB	0.3240690908
+UniRef50_B1M6B8: Peroxyureidoacrylate/ureidoacrylate amidohydrolase RutB|unclassified	0.3240690908
+UniRef50_UPI0002FE70D3: hypothetical protein	0.3240461748
+UniRef50_UPI0002FE70D3: hypothetical protein|unclassified	0.3240461748
+UniRef50_C1DBX8: BolA/YrbA family protein	0.3240405889
+UniRef50_C1DBX8: BolA/YrbA family protein|unclassified	0.3240405889
+UniRef50_D5AMN3: Lipoprotein, putative	0.3240211031
+UniRef50_D5AMN3: Lipoprotein, putative|unclassified	0.3240211031
+UniRef50_UPI00047AB4C2: hypothetical protein	0.3239876980
+UniRef50_UPI00047AB4C2: hypothetical protein|unclassified	0.3239876980
+UniRef50_UPI0004707593: hypothetical protein	0.3239705592
+UniRef50_UPI0004707593: hypothetical protein|unclassified	0.3239705592
+UniRef50_UPI0002DEFC6E: hypothetical protein	0.3239494165
+UniRef50_UPI0002DEFC6E: hypothetical protein|unclassified	0.3239494165
+UniRef50_UPI000443B2E4: PREDICTED: probable GPI-anchored adhesin-like protein PGA55	0.3239390994
+UniRef50_UPI000443B2E4: PREDICTED: probable GPI-anchored adhesin-like protein PGA55|unclassified	0.3239390994
+UniRef50_UPI000471BA5D: ATPase	0.3239137639
+UniRef50_UPI000471BA5D: ATPase|unclassified	0.3239137639
+UniRef50_UPI0002ADB64C	0.3239004719
+UniRef50_UPI0002ADB64C|unclassified	0.3239004719
+UniRef50_M0R7D3	0.3238659045
+UniRef50_M0R7D3|unclassified	0.3238659045
+UniRef50_UPI00031D2541: hypothetical protein	0.3237461911
+UniRef50_UPI00031D2541: hypothetical protein|unclassified	0.3237461911
+UniRef50_UPI000348A8A8: hypothetical protein	0.3237446719
+UniRef50_UPI000348A8A8: hypothetical protein|unclassified	0.3237446719
+UniRef50_UPI0003777559: hypothetical protein	0.3237368058
+UniRef50_UPI0003777559: hypothetical protein|unclassified	0.3237368058
+UniRef50_E3E8U7	0.3236823375
+UniRef50_E3E8U7|unclassified	0.3236823375
+UniRef50_G7DLL9	0.3236468687
+UniRef50_G7DLL9|unclassified	0.3236468687
+UniRef50_N2E121	0.3236306841
+UniRef50_N2E121|unclassified	0.3236306841
+UniRef50_L6WUR9: Lipoprotein	0.3235952275
+UniRef50_L6WUR9: Lipoprotein|unclassified	0.3235952275
+UniRef50_A5CFB7: Glutamate--tRNA ligase 2	0.3235788627
+UniRef50_A5CFB7: Glutamate--tRNA ligase 2|unclassified	0.3235788627
+UniRef50_UPI00034DB867: hypothetical protein	0.3235722777
+UniRef50_UPI00034DB867: hypothetical protein|unclassified	0.3235722777
+UniRef50_J4SIW6	0.3235465158
+UniRef50_J4SIW6|unclassified	0.3235465158
+UniRef50_UPI00037642BA: hypothetical protein	0.3235418143
+UniRef50_UPI00037642BA: hypothetical protein|unclassified	0.3235418143
+UniRef50_UPI00037CA519: hypothetical protein	0.3235273367
+UniRef50_UPI00037CA519: hypothetical protein|unclassified	0.3235273367
+UniRef50_UPI0003B6B7AE: hypothetical protein	0.3234216653
+UniRef50_UPI0003B6B7AE: hypothetical protein|unclassified	0.3234216653
+UniRef50_A9NG27: Thymidylate synthase	0.3234176156
+UniRef50_A9NG27: Thymidylate synthase|unclassified	0.3234176156
+UniRef50_C2S700	0.3234140739
+UniRef50_C2S700|unclassified	0.3234140739
+UniRef50_UPI0002F335BF: hypothetical protein	0.3233821407
+UniRef50_UPI0002F335BF: hypothetical protein|unclassified	0.3233821407
+UniRef50_W7SUS4: Non-ribosomal peptide synthetase	0.3233610240
+UniRef50_W7SUS4: Non-ribosomal peptide synthetase|unclassified	0.3233610240
+UniRef50_UPI0003C151F1: PREDICTED: heat shock protein 16-like	0.3233447657
+UniRef50_UPI0003C151F1: PREDICTED: heat shock protein 16-like|unclassified	0.3233447657
+UniRef50_UPI0003502E7A	0.3233180777
+UniRef50_UPI0003502E7A|unclassified	0.3233180777
+UniRef50_UPI00016C448A: hypothetical protein	0.3233047803
+UniRef50_UPI00016C448A: hypothetical protein|unclassified	0.3233047803
+UniRef50_I6FIU8: TtuB domain protein	0.3232916303
+UniRef50_I6FIU8: TtuB domain protein|unclassified	0.3232916303
+UniRef50_B9FW76	0.3232555285
+UniRef50_B9FW76|unclassified	0.3232555285
+UniRef50_UPI00047130D7: hypothetical protein	0.3232241748
+UniRef50_UPI00047130D7: hypothetical protein|unclassified	0.3232241748
+UniRef50_UPI00029CD3E9: cation transport ATPase, partial	0.3232206748
+UniRef50_UPI00029CD3E9: cation transport ATPase, partial|unclassified	0.3232206748
+UniRef50_P19077: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifN	0.3232015474
+UniRef50_P19077: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifN|unclassified	0.3232015474
+UniRef50_N3PLG6	0.3231852930
+UniRef50_N3PLG6|unclassified	0.3231852930
+UniRef50_UPI0000510540: aspartate ammonia-lyase	0.3231625585
+UniRef50_UPI0000510540: aspartate ammonia-lyase|unclassified	0.3231625585
+UniRef50_Q5L2I8	0.3231572151
+UniRef50_Q5L2I8|unclassified	0.3231572151
+UniRef50_Q1NCH4: Putative NAD-specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ	0.3231492432
+UniRef50_Q1NCH4: Putative NAD-specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ|unclassified	0.3231492432
+UniRef50_A3QJ60	0.3230882251
+UniRef50_A3QJ60|unclassified	0.3230882251
+UniRef50_UPI00042929E4: hypothetical protein	0.3230416307
+UniRef50_UPI00042929E4: hypothetical protein|unclassified	0.3230416307
+UniRef50_UPI00045EBF71: ABC transporter ATP-binding protein	0.3230244304
+UniRef50_UPI00045EBF71: ABC transporter ATP-binding protein|unclassified	0.3230244304
+UniRef50_D6ELN5	0.3230164697
+UniRef50_D6ELN5|unclassified	0.3230164697
+UniRef50_X0TQD5: Marine sediment metagenome DNA, contig: S01H1_S03777 (Fragment)	0.3230021775
+UniRef50_X0TQD5: Marine sediment metagenome DNA, contig: S01H1_S03777 (Fragment)|unclassified	0.3230021775
+UniRef50_UPI000472AF7A: hypothetical protein	0.3229408938
+UniRef50_UPI000472AF7A: hypothetical protein|unclassified	0.3229408938
+UniRef50_A8J9U5: Predicted protein (Fragment)	0.3229044803
+UniRef50_A8J9U5: Predicted protein (Fragment)|unclassified	0.3229044803
+UniRef50_A6V027	0.3228746016
+UniRef50_A6V027|unclassified	0.3228746016
+UniRef50_A0A058ZQ84	0.3228450474
+UniRef50_A0A058ZQ84|unclassified	0.3228450474
+UniRef50_C7DEC0: DNA repair protein RadC	0.3228336064
+UniRef50_C7DEC0: DNA repair protein RadC|unclassified	0.3228336064
+UniRef50_E0XTB5	0.3227996167
+UniRef50_E0XTB5|unclassified	0.3227996167
+UniRef50_Q0APX2	0.3227756735
+UniRef50_Q0APX2|unclassified	0.3227756735
+UniRef50_A4EH48	0.3227554368
+UniRef50_A4EH48|unclassified	0.3227554368
+UniRef50_K6VA45	0.3227433182
+UniRef50_K6VA45|unclassified	0.3227433182
+UniRef50_I2HEM4	0.3226982156
+UniRef50_I2HEM4|unclassified	0.3226982156
+UniRef50_UPI000365F8BA: hypothetical protein	0.3226841580
+UniRef50_UPI000365F8BA: hypothetical protein|unclassified	0.3226841580
+UniRef50_Q39K93: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.3226555138
+UniRef50_Q39K93: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.3226555138
+UniRef50_E9T8A5: Transcriptional regulator, PadR family	0.3226268425
+UniRef50_E9T8A5: Transcriptional regulator, PadR family|unclassified	0.3226268425
+UniRef50_UPI0003498384: hypothetical protein	0.3226245550
+UniRef50_UPI0003498384: hypothetical protein|unclassified	0.3226245550
+UniRef50_F3WXN8	0.3226086356
+UniRef50_F3WXN8|unclassified	0.3226086356
+UniRef50_Q28PH2	0.3226034695
+UniRef50_Q28PH2|unclassified	0.3226034695
+UniRef50_J7Q5B6: Lytic transglycosylase catalytic	0.3225803319
+UniRef50_J7Q5B6: Lytic transglycosylase catalytic|unclassified	0.3225803319
+UniRef50_K9YA88	0.3225591295
+UniRef50_K9YA88|unclassified	0.3225591295
+UniRef50_UPI0004044FEF: sugar ABC transporter permease	0.3225528654
+UniRef50_UPI0004044FEF: sugar ABC transporter permease|unclassified	0.3225528654
+UniRef50_A7BM57: Periplasmic nitrate reductase beta subunit	0.3225510744
+UniRef50_A7BM57: Periplasmic nitrate reductase beta subunit|unclassified	0.3225510744
+UniRef50_O00764: Pyridoxal kinase	0.3225000190
+UniRef50_O00764: Pyridoxal kinase|unclassified	0.3225000190
+UniRef50_UPI0003713986: hypothetical protein	0.3224964671
+UniRef50_UPI0003713986: hypothetical protein|unclassified	0.3224964671
+UniRef50_K8DS40: Enterobactin synthetase component F, serine activating enzyme	0.3224913268
+UniRef50_K8DS40: Enterobactin synthetase component F, serine activating enzyme|unclassified	0.3224913268
+UniRef50_Q3ILQ9: Siroheme synthase	0.3224702889
+UniRef50_Q3ILQ9: Siroheme synthase|unclassified	0.3224702889
+UniRef50_U7R074	0.3224686711
+UniRef50_U7R074|unclassified	0.3224686711
+UniRef50_V5B0P2: DoxX family protein	0.3224335124
+UniRef50_V5B0P2: DoxX family protein|unclassified	0.3224335124
+UniRef50_UPI000374BB2F: lipocalin	0.3224330145
+UniRef50_UPI000374BB2F: lipocalin|unclassified	0.3224330145
+UniRef50_B0SXG0	0.3224210632
+UniRef50_B0SXG0|unclassified	0.3224210632
+UniRef50_Q6MMY0: Lipoprotein-releasing system ATP-binding protein LolD	0.3223791547
+UniRef50_Q6MMY0: Lipoprotein-releasing system ATP-binding protein LolD|unclassified	0.3223791547
+UniRef50_D9PKX8	0.3223707651
+UniRef50_D9PKX8|unclassified	0.3223707651
+UniRef50_UPI0003821DEB: hypothetical protein, partial	0.3223621380
+UniRef50_UPI0003821DEB: hypothetical protein, partial|unclassified	0.3223621380
+UniRef50_UPI0004774310: hypothetical protein	0.3223084500
+UniRef50_UPI0004774310: hypothetical protein|unclassified	0.3223084500
+UniRef50_UPI0003C8F987: PREDICTED: 3''''-5'''' exoribonuclease 1	0.3223045771
+UniRef50_UPI0003C8F987: PREDICTED: 3''''-5'''' exoribonuclease 1|unclassified	0.3223045771
+UniRef50_F9LWP9: Conserved domain protein	0.3222961973
+UniRef50_F9LWP9: Conserved domain protein|unclassified	0.3222961973
+UniRef50_UPI00037D00A3: hypothetical protein	0.3222770795
+UniRef50_UPI00037D00A3: hypothetical protein|unclassified	0.3222770795
+UniRef50_A8GXV2: DnaK suppressor-like protein	0.3222007907
+UniRef50_A8GXV2: DnaK suppressor-like protein|unclassified	0.3222007907
+UniRef50_V1L1Y8	0.3221677768
+UniRef50_V1L1Y8|unclassified	0.3221677768
+UniRef50_UPI0003449BE1: ABC transporter permease	0.3220893467
+UniRef50_UPI0003449BE1: ABC transporter permease|unclassified	0.3220893467
+UniRef50_UPI0003B6D7CA: DNA processing protein DprA	0.3220716261
+UniRef50_UPI0003B6D7CA: DNA processing protein DprA|unclassified	0.3220716261
+UniRef50_UPI00035EC645: hypothetical protein	0.3220554699
+UniRef50_UPI00035EC645: hypothetical protein|unclassified	0.3220554699
+UniRef50_I1G1I4	0.3220545825
+UniRef50_I1G1I4|unclassified	0.3220545825
+UniRef50_UPI0001745399: ArsR family transcriptional regulator	0.3220522934
+UniRef50_UPI0001745399: ArsR family transcriptional regulator|unclassified	0.3220522934
+UniRef50_J0HZH9	0.3219366124
+UniRef50_J0HZH9|unclassified	0.3219366124
+UniRef50_UPI0003592A52: PREDICTED: 3-oxoacyl-[acyl-carrier-protein] reductase, chloroplastic-like	0.3218993937
+UniRef50_UPI0003592A52: PREDICTED: 3-oxoacyl-[acyl-carrier-protein] reductase, chloroplastic-like|unclassified	0.3218993937
+UniRef50_F2DYT9: Predicted protein	0.3218952018
+UniRef50_F2DYT9: Predicted protein|unclassified	0.3218952018
+UniRef50_B1XN82: High-affinity branched-chain amino acid transport	0.3218873680
+UniRef50_B1XN82: High-affinity branched-chain amino acid transport|unclassified	0.3218873680
+UniRef50_UPI0003755B23: hypothetical protein	0.3218674994
+UniRef50_UPI0003755B23: hypothetical protein|unclassified	0.3218674994
+UniRef50_UPI000465593A: hypothetical protein	0.3218581247
+UniRef50_UPI000465593A: hypothetical protein|unclassified	0.3218581247
+UniRef50_U1EB58	0.3218535743
+UniRef50_U1EB58|unclassified	0.3218535743
+UniRef50_M3Y106	0.3218363172
+UniRef50_M3Y106|unclassified	0.3218363172
+UniRef50_UPI000472DB04: hypothetical protein	0.3218187300
+UniRef50_UPI000472DB04: hypothetical protein|unclassified	0.3218187300
+UniRef50_UPI00046617E5: thioredoxin	0.3218117675
+UniRef50_UPI00046617E5: thioredoxin|unclassified	0.3218117675
+UniRef50_L9S379	0.3218095919
+UniRef50_L9S379|unclassified	0.3218095919
+UniRef50_H2ZBA2	0.3217800648
+UniRef50_H2ZBA2|unclassified	0.3217800648
+UniRef50_R1D0Z2	0.3217577501
+UniRef50_R1D0Z2|unclassified	0.3217577501
+UniRef50_J2XZ67	0.3217492414
+UniRef50_J2XZ67|unclassified	0.3217492414
+UniRef50_C1MVN7: Predicted protein	0.3217317339
+UniRef50_C1MVN7: Predicted protein|unclassified	0.3217317339
+UniRef50_UPI0004785282: ABC transporter ATP-binding protein	0.3217189097
+UniRef50_UPI0004785282: ABC transporter ATP-binding protein|unclassified	0.3217189097
+UniRef50_UPI00045E2A98: PREDICTED: pre-mRNA-splicing factor CWC22 homolog	0.3217094861
+UniRef50_UPI00045E2A98: PREDICTED: pre-mRNA-splicing factor CWC22 homolog|unclassified	0.3217094861
+UniRef50_B3DYW1: Phosphopantetheine adenylyltransferase	0.3217089815
+UniRef50_B3DYW1: Phosphopantetheine adenylyltransferase|unclassified	0.3217089815
+UniRef50_UPI0003F86924: GCN5 family acetyltransferase	0.3216900759
+UniRef50_UPI0003F86924: GCN5 family acetyltransferase|unclassified	0.3216900759
+UniRef50_B4UIY8	0.3216899853
+UniRef50_B4UIY8|unclassified	0.3216899853
+UniRef50_UPI0003B748FE: ABC transporter permease	0.3216822161
+UniRef50_UPI0003B748FE: ABC transporter permease|unclassified	0.3216822161
+UniRef50_V4RI55: Pirin domain protein	0.3216600969
+UniRef50_V4RI55: Pirin domain protein|unclassified	0.3216600969
+UniRef50_U6H2A1	0.3216590292
+UniRef50_U6H2A1|unclassified	0.3216590292
+UniRef50_UPI000475C0DD: iron ABC transporter	0.3216584155
+UniRef50_UPI000475C0DD: iron ABC transporter|unclassified	0.3216584155
+UniRef50_A3VXN4	0.3216321463
+UniRef50_A3VXN4|unclassified	0.3216321463
+UniRef50_A7V4H6	0.3216136527
+UniRef50_A7V4H6|unclassified	0.3216136527
+UniRef50_UPI00034488BE: PREDICTED: forkhead box protein D2	0.3216038561
+UniRef50_UPI00034488BE: PREDICTED: forkhead box protein D2|unclassified	0.3216038561
+UniRef50_G2L894	0.3215834519
+UniRef50_G2L894|unclassified	0.3215834519
+UniRef50_Q7UM39: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.3215825112
+UniRef50_Q7UM39: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.3215825112
+UniRef50_B1CAA4	0.3215820504
+UniRef50_B1CAA4|unclassified	0.3215820504
+UniRef50_F0G1U8: Major facilitator transporter (Fragment)	0.3215788814
+UniRef50_F0G1U8: Major facilitator transporter (Fragment)|unclassified	0.3215788814
+UniRef50_UPI00047CE8A1: hypothetical protein	0.3215691169
+UniRef50_UPI00047CE8A1: hypothetical protein|unclassified	0.3215691169
+UniRef50_UPI000255C69D: hypothetical protein	0.3215311471
+UniRef50_UPI000255C69D: hypothetical protein|unclassified	0.3215311471
+UniRef50_R6IK81: Redox-active disulfide protein 2	0.3215078176
+UniRef50_R6IK81: Redox-active disulfide protein 2|unclassified	0.3215078176
+UniRef50_Q3M244: Phosphoribosyl-AMP cyclohydrolase	0.3214993561
+UniRef50_Q3M244: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.3214993561
+UniRef50_B7RHE0	0.3214824600
+UniRef50_B7RHE0|unclassified	0.3214824600
+UniRef50_UPI000362AF2C: hypothetical protein	0.3214657015
+UniRef50_UPI000362AF2C: hypothetical protein|unclassified	0.3214657015
+UniRef50_F4YXU3: Gene transfer agent	0.3214573762
+UniRef50_F4YXU3: Gene transfer agent|unclassified	0.3214573762
+UniRef50_UPI000376BE3D: hypothetical protein	0.3214394264
+UniRef50_UPI000376BE3D: hypothetical protein|unclassified	0.3214394264
+UniRef50_UPI00036E997E: hypothetical protein, partial	0.3214325613
+UniRef50_UPI00036E997E: hypothetical protein, partial|unclassified	0.3214325613
+UniRef50_UPI00037D98EA: hypothetical protein	0.3213826150
+UniRef50_UPI00037D98EA: hypothetical protein|unclassified	0.3213826150
+UniRef50_UPI0003EF01C0: phage tail protein, partial	0.3213771408
+UniRef50_UPI0003EF01C0: phage tail protein, partial|unclassified	0.3213771408
+UniRef50_UPI000252B7A9	0.3213595799
+UniRef50_UPI000252B7A9|unclassified	0.3213595799
+UniRef50_UPI00047C62F2: hypothetical protein	0.3213512134
+UniRef50_UPI00047C62F2: hypothetical protein|unclassified	0.3213512134
+UniRef50_X1A4U9: Marine sediment metagenome DNA, contig: S01H4_S02257 (Fragment)	0.3213323287
+UniRef50_X1A4U9: Marine sediment metagenome DNA, contig: S01H4_S02257 (Fragment)|unclassified	0.3213323287
+UniRef50_W4PW60: Acetolactate synthase large subunit	0.3213280828
+UniRef50_W4PW60: Acetolactate synthase large subunit|unclassified	0.3213280828
+UniRef50_UPI00034907B9: hypothetical protein	0.3212221193
+UniRef50_UPI00034907B9: hypothetical protein|unclassified	0.3212221193
+UniRef50_Z5X6U4	0.3212203510
+UniRef50_Z5X6U4|unclassified	0.3212203510
+UniRef50_B9JRL5: Transposase	0.3211866150
+UniRef50_B9JRL5: Transposase|unclassified	0.3211866150
+UniRef50_UPI00046A1978: ABC transporter permease	0.3211804815
+UniRef50_UPI00046A1978: ABC transporter permease|unclassified	0.3211804815
+UniRef50_F6G2W0: Threonine synthase protein	0.3211518605
+UniRef50_F6G2W0: Threonine synthase protein|unclassified	0.3211518605
+UniRef50_B3QI42: Phosphoribosylformylglycinamidine synthase, purS	0.3211379717
+UniRef50_B3QI42: Phosphoribosylformylglycinamidine synthase, purS|unclassified	0.3211379717
+UniRef50_UPI0003C79065: hypothetical protein, partial	0.3211374119
+UniRef50_UPI0003C79065: hypothetical protein, partial|unclassified	0.3211374119
+UniRef50_UPI00036F2F3A: hypothetical protein, partial	0.3211167273
+UniRef50_UPI00036F2F3A: hypothetical protein, partial|unclassified	0.3211167273
+UniRef50_A2SM89: PKHD-type hydroxylase Mpe_A3725	0.3210820592
+UniRef50_A2SM89: PKHD-type hydroxylase Mpe_A3725|unclassified	0.3210820592
+UniRef50_UPI00036780D5: peptide ABC transporter permease	0.3210733670
+UniRef50_UPI00036780D5: peptide ABC transporter permease|unclassified	0.3210733670
+UniRef50_UPI00046EF462: hypothetical protein	0.3210411611
+UniRef50_UPI00046EF462: hypothetical protein|unclassified	0.3210411611
+UniRef50_A0A017IKH3	0.3210283313
+UniRef50_A0A017IKH3|unclassified	0.3210283313
+UniRef50_A8LMQ5: Flagellar basal-body rod protein FlgB	0.3210153587
+UniRef50_A8LMQ5: Flagellar basal-body rod protein FlgB|unclassified	0.3210153587
+UniRef50_UPI00032AF572: PREDICTED: vegetative cell wall protein gp1-like, partial	0.3210100759
+UniRef50_UPI00032AF572: PREDICTED: vegetative cell wall protein gp1-like, partial|unclassified	0.3210100759
+UniRef50_UPI0002F44B36: hypothetical protein	0.3210096952
+UniRef50_UPI0002F44B36: hypothetical protein|unclassified	0.3210096952
+UniRef50_G7D8J6	0.3209993014
+UniRef50_G7D8J6|unclassified	0.3209993014
+UniRef50_A3UI23: ABC transporter, permease protein	0.3209851868
+UniRef50_A3UI23: ABC transporter, permease protein|unclassified	0.3209851868
+UniRef50_Q74HL7: NADH-dependent flavin reductase subunit 1	0.3209755228
+UniRef50_Q74HL7: NADH-dependent flavin reductase subunit 1|unclassified	0.3209755228
+UniRef50_M4JIH2	0.3209633148
+UniRef50_M4JIH2|unclassified	0.3209633148
+UniRef50_UPI00045717A3: PREDICTED: serine/arginine repetitive matrix protein 1	0.3209630351
+UniRef50_UPI00045717A3: PREDICTED: serine/arginine repetitive matrix protein 1|unclassified	0.3209630351
+UniRef50_UPI0003608BF4: hypothetical protein, partial	0.3209146519
+UniRef50_UPI0003608BF4: hypothetical protein, partial|unclassified	0.3209146519
+UniRef50_UPI000378C483: hypothetical protein	0.3208981985
+UniRef50_UPI000378C483: hypothetical protein|unclassified	0.3208981985
+UniRef50_D0TA60: Metallo-beta-lactamase domain protein	0.3208724898
+UniRef50_D0TA60: Metallo-beta-lactamase domain protein|unclassified	0.3208724898
+UniRef50_E9HHS3	0.3208619914
+UniRef50_E9HHS3|unclassified	0.3208619914
+UniRef50_UPI0004700401: hypothetical protein, partial	0.3208356179
+UniRef50_UPI0004700401: hypothetical protein, partial|unclassified	0.3208356179
+UniRef50_UPI00030ADDCD: hypothetical protein	0.3207486594
+UniRef50_UPI00030ADDCD: hypothetical protein|unclassified	0.3207486594
+UniRef50_UPI00040724E7: ABC transporter permease	0.3207446069
+UniRef50_UPI00040724E7: ABC transporter permease|unclassified	0.3207446069
+UniRef50_X9HCV8	0.3207300610
+UniRef50_X9HCV8|unclassified	0.3207300610
+UniRef50_Q5H2Q9: IS1478 transposase	0.3207249123
+UniRef50_Q5H2Q9: IS1478 transposase|unclassified	0.3207249123
+UniRef50_R5FEK9	0.3207136556
+UniRef50_R5FEK9|unclassified	0.3207136556
+UniRef50_D3NWU2	0.3206688329
+UniRef50_D3NWU2|unclassified	0.3206688329
+UniRef50_UPI00047C4011: hypothetical protein, partial	0.3206383681
+UniRef50_UPI00047C4011: hypothetical protein, partial|unclassified	0.3206383681
+UniRef50_UPI0004777F5F: membrane protein	0.3206248268
+UniRef50_UPI0004777F5F: membrane protein|unclassified	0.3206248268
+UniRef50_L0FRW3	0.3206193153
+UniRef50_L0FRW3|unclassified	0.3206193153
+UniRef50_S9R6B1: Transcriptional regulator, LysR family	0.3205823595
+UniRef50_S9R6B1: Transcriptional regulator, LysR family|unclassified	0.3205823595
+UniRef50_Q2BH94	0.3205621537
+UniRef50_Q2BH94|unclassified	0.3205621537
+UniRef50_C7P324	0.3205444602
+UniRef50_C7P324|unclassified	0.3205444602
+UniRef50_UPI0003F9070E: hypothetical protein	0.3204716407
+UniRef50_UPI0003F9070E: hypothetical protein|unclassified	0.3204716407
+UniRef50_UPI00029A9296: putative DNA-binding response regulator PhoB	0.3204663330
+UniRef50_UPI00029A9296: putative DNA-binding response regulator PhoB|unclassified	0.3204663330
+UniRef50_D3D1S4	0.3204523296
+UniRef50_D3D1S4|unclassified	0.3204523296
+UniRef50_G7UA09: Glycosyl hydrolase family 38 N-terminal domain protein	0.3204101250
+UniRef50_G7UA09: Glycosyl hydrolase family 38 N-terminal domain protein|g__Propionibacterium.s__Propionibacterium_acnes	0.3204101250
+UniRef50_I7E322	0.3204052830
+UniRef50_I7E322|unclassified	0.3204052830
+UniRef50_R1DKY4	0.3203742907
+UniRef50_R1DKY4|unclassified	0.3203742907
+UniRef50_R5RA24: UPF0260 protein Nhal_2011	0.3203732303
+UniRef50_R5RA24: UPF0260 protein Nhal_2011|unclassified	0.3203732303
+UniRef50_UPI000379C227: dehydrogenase	0.3203424457
+UniRef50_UPI000379C227: dehydrogenase|unclassified	0.3203424457
+UniRef50_UPI00036536A6: hypothetical protein	0.3203216110
+UniRef50_UPI00036536A6: hypothetical protein|unclassified	0.3203216110
+UniRef50_UPI000379AA44: hypothetical protein	0.3203144151
+UniRef50_UPI000379AA44: hypothetical protein|unclassified	0.3203144151
+UniRef50_P0C2Y0: o-phthalyl amidase	0.3202945783
+UniRef50_P0C2Y0: o-phthalyl amidase|unclassified	0.3202945783
+UniRef50_UPI00038093E3: hypothetical protein	0.3202939525
+UniRef50_UPI00038093E3: hypothetical protein|unclassified	0.3202939525
+UniRef50_A1U1S9: Acyl carrier protein	0.3202923299
+UniRef50_A1U1S9: Acyl carrier protein|unclassified	0.3202923299
+UniRef50_W4YP60	0.3202887448
+UniRef50_W4YP60|unclassified	0.3202887448
+UniRef50_UPI00036284FD: hypothetical protein	0.3202530361
+UniRef50_UPI00036284FD: hypothetical protein|unclassified	0.3202530361
+UniRef50_UPI0002D2F863: hypothetical protein	0.3202528169
+UniRef50_UPI0002D2F863: hypothetical protein|unclassified	0.3202528169
+UniRef50_F2D8R9: Predicted protein	0.3202526591
+UniRef50_F2D8R9: Predicted protein|unclassified	0.3202526591
+UniRef50_A1VLE6	0.3202274429
+UniRef50_A1VLE6|unclassified	0.3202274429
+UniRef50_K5M084	0.3201787864
+UniRef50_K5M084|unclassified	0.3201787864
+UniRef50_K3Y6N1	0.3201442270
+UniRef50_K3Y6N1|unclassified	0.3201442270
+UniRef50_W8YGF5	0.3201356294
+UniRef50_W8YGF5|unclassified	0.3201356294
+UniRef50_UPI0003EAC12E: PREDICTED: serine/arginine repetitive matrix protein 2-like	0.3201339565
+UniRef50_UPI0003EAC12E: PREDICTED: serine/arginine repetitive matrix protein 2-like|unclassified	0.3201339565
+UniRef50_J2AYF6	0.3200958032
+UniRef50_J2AYF6|unclassified	0.3200958032
+UniRef50_A0A011PQT4	0.3200897858
+UniRef50_A0A011PQT4|unclassified	0.3200897858
+UniRef50_UPI00046628D5: hypothetical protein	0.3200516476
+UniRef50_UPI00046628D5: hypothetical protein|unclassified	0.3200516476
+UniRef50_W5F795	0.3200357710
+UniRef50_W5F795|unclassified	0.3200357710
+UniRef50_F7MME9: Radical SAM family protein	0.3200333609
+UniRef50_F7MME9: Radical SAM family protein|unclassified	0.3200333609
+UniRef50_V1Q4Y1: Glucose dehydrogenase	0.3200159877
+UniRef50_V1Q4Y1: Glucose dehydrogenase|unclassified	0.3200159877
+UniRef50_X2LXG1: Phosphatase	0.3199431136
+UniRef50_X2LXG1: Phosphatase|unclassified	0.3199431136
+UniRef50_R7DV75: RagB/SusD domain-containing protein	0.3199166464
+UniRef50_R7DV75: RagB/SusD domain-containing protein|unclassified	0.3199166464
+UniRef50_R7IT71: Aluminum resistance protein	0.3198270339
+UniRef50_R7IT71: Aluminum resistance protein|unclassified	0.3198270339
+UniRef50_A0A023FF30	0.3197819008
+UniRef50_A0A023FF30|unclassified	0.3197819008
+UniRef50_V1MAY9: Nitrate reductase Z subunit beta	0.3197689870
+UniRef50_V1MAY9: Nitrate reductase Z subunit beta|unclassified	0.3197689870
+UniRef50_UPI0002887DC0: hypothetical protein	0.3197606578
+UniRef50_UPI0002887DC0: hypothetical protein|unclassified	0.3197606578
+UniRef50_UPI000368F5E5: hypothetical protein	0.3197576771
+UniRef50_UPI000368F5E5: hypothetical protein|unclassified	0.3197576771
+UniRef50_A5FVX8	0.3197526645
+UniRef50_A5FVX8|unclassified	0.3197526645
+UniRef50_UPI0004732E1F: 30S ribosomal protein S9, partial	0.3197421339
+UniRef50_UPI0004732E1F: 30S ribosomal protein S9, partial|unclassified	0.3197421339
+UniRef50_R6NPF1: Polar amino acid ABC transporter	0.3197354843
+UniRef50_R6NPF1: Polar amino acid ABC transporter|unclassified	0.3197354843
+UniRef50_W7C2W5	0.3197256389
+UniRef50_W7C2W5|unclassified	0.3197256389
+UniRef50_UPI0003F6AF2A: hypothetical protein	0.3197106893
+UniRef50_UPI0003F6AF2A: hypothetical protein|unclassified	0.3197106893
+UniRef50_UPI000473309C: hypothetical protein, partial	0.3196677385
+UniRef50_UPI000473309C: hypothetical protein, partial|unclassified	0.3196677385
+UniRef50_UPI0003B3C230: hypothetical protein	0.3196148525
+UniRef50_UPI0003B3C230: hypothetical protein|unclassified	0.3196148525
+UniRef50_F2EI39: Predicted protein (Fragment)	0.3196019234
+UniRef50_F2EI39: Predicted protein (Fragment)|unclassified	0.3196019234
+UniRef50_J9NSA1	0.3195978131
+UniRef50_J9NSA1|unclassified	0.3195978131
+UniRef50_R5SED6	0.3195847991
+UniRef50_R5SED6|unclassified	0.3195847991
+UniRef50_W9FFV8	0.3195834194
+UniRef50_W9FFV8|unclassified	0.3195834194
+UniRef50_UPI000380325C: hypothetical protein	0.3195361357
+UniRef50_UPI000380325C: hypothetical protein|unclassified	0.3195361357
+UniRef50_UPI00036FD2DC: hypothetical protein	0.3195167536
+UniRef50_UPI00036FD2DC: hypothetical protein|unclassified	0.3195167536
+UniRef50_B7A940: Carbamoyl-phosphate synthase small chain	0.3195113290
+UniRef50_B7A940: Carbamoyl-phosphate synthase small chain|unclassified	0.3195113290
+UniRef50_G8AK77	0.3194486195
+UniRef50_G8AK77|unclassified	0.3194486195
+UniRef50_B8FI62: Phosphopantetheine adenylyltransferase	0.3194440897
+UniRef50_B8FI62: Phosphopantetheine adenylyltransferase|unclassified	0.3194440897
+UniRef50_UPI000366E338: hypothetical protein	0.3194322665
+UniRef50_UPI000366E338: hypothetical protein|unclassified	0.3194322665
+UniRef50_B0VKG9	0.3194215207
+UniRef50_B0VKG9|unclassified	0.3194215207
+UniRef50_UPI000375786B: hypothetical protein	0.3194176044
+UniRef50_UPI000375786B: hypothetical protein|unclassified	0.3194176044
+UniRef50_UPI0004702753: NADH-dependent flavin oxidoreductase	0.3194021166
+UniRef50_UPI0004702753: NADH-dependent flavin oxidoreductase|unclassified	0.3194021166
+UniRef50_UPI0001994F0E: hypothetical protein Deide_3p00541	0.3193874805
+UniRef50_UPI0001994F0E: hypothetical protein Deide_3p00541|unclassified	0.3193874805
+UniRef50_A0A011R938	0.3193862142
+UniRef50_A0A011R938|unclassified	0.3193862142
+UniRef50_UPI00029CC689: 2-aminoethylphosphonate ABC transporter ATP-binding component PhnT, partial	0.3193682599
+UniRef50_UPI00029CC689: 2-aminoethylphosphonate ABC transporter ATP-binding component PhnT, partial|unclassified	0.3193682599
+UniRef50_UPI0003C7F525: ABC transporter ATP-binding protein	0.3193616588
+UniRef50_UPI0003C7F525: ABC transporter ATP-binding protein|unclassified	0.3193616588
+UniRef50_J8FQN5	0.3193506691
+UniRef50_J8FQN5|unclassified	0.3193506691
+UniRef50_Q6Z055	0.3193492850
+UniRef50_Q6Z055|unclassified	0.3193492850
+UniRef50_UPI00046E8F79: hypothetical protein	0.3193491535
+UniRef50_UPI00046E8F79: hypothetical protein|unclassified	0.3193491535
+UniRef50_UPI0003830610: hypothetical protein M271_22435	0.3193429396
+UniRef50_UPI0003830610: hypothetical protein M271_22435|unclassified	0.3193429396
+UniRef50_UPI0003775605: hypothetical protein	0.3193407836
+UniRef50_UPI0003775605: hypothetical protein|unclassified	0.3193407836
+UniRef50_Q5X5E0: Orotidine 5'-phosphate decarboxylase	0.3193261924
+UniRef50_Q5X5E0: Orotidine 5'-phosphate decarboxylase|unclassified	0.3193261924
+UniRef50_UPI000299EEED: hypothetical protein, partial	0.3193050449
+UniRef50_UPI000299EEED: hypothetical protein, partial|unclassified	0.3193050449
+UniRef50_UPI00037D9868: hypothetical protein	0.3192857912
+UniRef50_UPI00037D9868: hypothetical protein|unclassified	0.3192857912
+UniRef50_UPI0003645E7B: hypothetical protein, partial	0.3192576727
+UniRef50_UPI0003645E7B: hypothetical protein, partial|unclassified	0.3192576727
+UniRef50_H7P858	0.3192415452
+UniRef50_H7P858|unclassified	0.3192415452
+UniRef50_S9SKA8: Potassium efflux system KefA protein / Small-conductance mechanosensitive channel	0.3192112999
+UniRef50_S9SKA8: Potassium efflux system KefA protein / Small-conductance mechanosensitive channel|unclassified	0.3192112999
+UniRef50_UPI0003771C0B: hypothetical protein	0.3192045448
+UniRef50_UPI0003771C0B: hypothetical protein|unclassified	0.3192045448
+UniRef50_Q7VR76: Ribose-phosphate pyrophosphokinase	0.3191874002
+UniRef50_Q7VR76: Ribose-phosphate pyrophosphokinase|unclassified	0.3191874002
+UniRef50_P52196: Thiosulfate sulfurtransferase	0.3191838476
+UniRef50_P52196: Thiosulfate sulfurtransferase|unclassified	0.3191838476
+UniRef50_A1SVB2	0.3191057407
+UniRef50_A1SVB2|unclassified	0.3191057407
+UniRef50_UPI000378F32D: hypothetical protein	0.3190754881
+UniRef50_UPI000378F32D: hypothetical protein|unclassified	0.3190754881
+UniRef50_T0K373	0.3190675554
+UniRef50_T0K373|unclassified	0.3190675554
+UniRef50_W1JQY9: ABC transporter substrate-binding protein	0.3190361322
+UniRef50_W1JQY9: ABC transporter substrate-binding protein|unclassified	0.3190361322
+UniRef50_UPI00047D5805: hypothetical protein	0.3190193004
+UniRef50_UPI00047D5805: hypothetical protein|unclassified	0.3190193004
+UniRef50_X0NAL4	0.3190133385
+UniRef50_X0NAL4|unclassified	0.3190133385
+UniRef50_I3UD47	0.3189826733
+UniRef50_I3UD47|unclassified	0.3189826733
+UniRef50_UPI00034F4369: PREDICTED: adenylyltransferase and sulfurtransferase MOCS3-like, partial	0.3189823195
+UniRef50_UPI00034F4369: PREDICTED: adenylyltransferase and sulfurtransferase MOCS3-like, partial|unclassified	0.3189823195
+UniRef50_N1MI70	0.3189370676
+UniRef50_N1MI70|unclassified	0.3189370676
+UniRef50_UPI000473AE7C: hypothetical protein, partial	0.3189071764
+UniRef50_UPI000473AE7C: hypothetical protein, partial|unclassified	0.3189071764
+UniRef50_UPI00046644CC: peptide ABC transporter permease	0.3188865855
+UniRef50_UPI00046644CC: peptide ABC transporter permease|unclassified	0.3188865855
+UniRef50_W7Q2B3	0.3188319979
+UniRef50_W7Q2B3|unclassified	0.3188319979
+UniRef50_W7VMY1	0.3187999434
+UniRef50_W7VMY1|unclassified	0.3187999434
+UniRef50_B5EN70: NADH-quinone oxidoreductase subunit B 2	0.3187851060
+UniRef50_B5EN70: NADH-quinone oxidoreductase subunit B 2|unclassified	0.3187851060
+UniRef50_UPI0003B732CD: acetyltransferase	0.3187830066
+UniRef50_UPI0003B732CD: acetyltransferase|unclassified	0.3187830066
+UniRef50_UPI0003345CB1: PREDICTED: espin	0.3187759005
+UniRef50_UPI0003345CB1: PREDICTED: espin|unclassified	0.3187759005
+UniRef50_UPI000407D6C0: MULTISPECIES: hypothetical protein	0.3187628060
+UniRef50_UPI000407D6C0: MULTISPECIES: hypothetical protein|unclassified	0.3187628060
+UniRef50_B7RXV0	0.3187072276
+UniRef50_B7RXV0|unclassified	0.3187072276
+UniRef50_G5RF23: Protein yciF	0.3186756451
+UniRef50_G5RF23: Protein yciF|unclassified	0.3186756451
+UniRef50_A0A022LVR9	0.3186700001
+UniRef50_A0A022LVR9|unclassified	0.3186700001
+UniRef50_UPI00046ED193: hypothetical protein, partial	0.3186517955
+UniRef50_UPI00046ED193: hypothetical protein, partial|unclassified	0.3186517955
+UniRef50_UPI000399CF6C: hypothetical protein	0.3186503390
+UniRef50_UPI000399CF6C: hypothetical protein|unclassified	0.3186503390
+UniRef50_W1GUL6	0.3186342331
+UniRef50_W1GUL6|unclassified	0.3186342331
+UniRef50_UPI000255A6FD: metal dependent phosphohydrolase	0.3186301720
+UniRef50_UPI000255A6FD: metal dependent phosphohydrolase|unclassified	0.3186301720
+UniRef50_G3RI35	0.3186230144
+UniRef50_G3RI35|unclassified	0.3186230144
+UniRef50_A4J6I7: Xanthine phosphoribosyltransferase	0.3186009526
+UniRef50_A4J6I7: Xanthine phosphoribosyltransferase|unclassified	0.3186009526
+UniRef50_U3B1C1	0.3185517329
+UniRef50_U3B1C1|unclassified	0.3185517329
+UniRef50_UPI00037371F1: hypothetical protein	0.3185293414
+UniRef50_UPI00037371F1: hypothetical protein|unclassified	0.3185293414
+UniRef50_A0A017TE45	0.3185239387
+UniRef50_A0A017TE45|unclassified	0.3185239387
+UniRef50_A8LLD9: Ribonuclease 3	0.3185210994
+UniRef50_A8LLD9: Ribonuclease 3|unclassified	0.3185210994
+UniRef50_UPI0002555FE2: cob(I)alamin adenolsyltransferase/cobinamide ATP-dependent adenolsyltransferase	0.3185210473
+UniRef50_UPI0002555FE2: cob(I)alamin adenolsyltransferase/cobinamide ATP-dependent adenolsyltransferase|unclassified	0.3185210473
+UniRef50_B4QTQ4: GD21117	0.3185152494
+UniRef50_B4QTQ4: GD21117|unclassified	0.3185152494
+UniRef50_UPI00035E1D0B: hypothetical protein, partial	0.3185083167
+UniRef50_UPI00035E1D0B: hypothetical protein, partial|unclassified	0.3185083167
+UniRef50_E3ZQF2: Peptidoglycan binding protein (Fragment)	0.3184890369
+UniRef50_E3ZQF2: Peptidoglycan binding protein (Fragment)|unclassified	0.3184890369
+UniRef50_A1TQ53: Biotin synthase	0.3184875296
+UniRef50_A1TQ53: Biotin synthase|unclassified	0.3184875296
+UniRef50_Q9I082	0.3184857656
+UniRef50_Q9I082|unclassified	0.3184857656
+UniRef50_W8GI73	0.3184662358
+UniRef50_W8GI73|unclassified	0.3184662358
+UniRef50_B8FLE7: Phosphoribosyl-AMP cyclohydrolase	0.3183807031
+UniRef50_B8FLE7: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.3183807031
+UniRef50_W4TKZ4	0.3183738510
+UniRef50_W4TKZ4|unclassified	0.3183738510
+UniRef50_UPI000469BC58: flagellar biosynthesis protein FlhB	0.3183576364
+UniRef50_UPI000469BC58: flagellar biosynthesis protein FlhB|unclassified	0.3183576364
+UniRef50_UPI00035E3FF5: phage baseplate protein	0.3183395528
+UniRef50_UPI00035E3FF5: phage baseplate protein|unclassified	0.3183395528
+UniRef50_UPI000364C8A1: hypothetical protein	0.3183056429
+UniRef50_UPI000364C8A1: hypothetical protein|unclassified	0.3183056429
+UniRef50_D8UGG9	0.3182686187
+UniRef50_D8UGG9|unclassified	0.3182686187
+UniRef50_UPI0002F39B78: hypothetical protein	0.3182626509
+UniRef50_UPI0002F39B78: hypothetical protein|unclassified	0.3182626509
+UniRef50_A1HSV6	0.3182466824
+UniRef50_A1HSV6|unclassified	0.3182466824
+UniRef50_UPI0003663A13: hypothetical protein	0.3182412381
+UniRef50_UPI0003663A13: hypothetical protein|unclassified	0.3182412381
+UniRef50_F5QV35: ParB domain protein	0.3182078224
+UniRef50_F5QV35: ParB domain protein|unclassified	0.3182078224
+UniRef50_V4J141	0.3182036720
+UniRef50_V4J141|unclassified	0.3182036720
+UniRef50_S9S2J7: HSP20-like chaperone (Fragment)	0.3181718616
+UniRef50_S9S2J7: HSP20-like chaperone (Fragment)|unclassified	0.3181718616
+UniRef50_X5EP01	0.3181696259
+UniRef50_X5EP01|unclassified	0.3181696259
+UniRef50_A5L4A3	0.3181627329
+UniRef50_A5L4A3|unclassified	0.3181627329
+UniRef50_UPI0004574B02: PREDICTED: GTP cyclohydrolase 1-like	0.3181493215
+UniRef50_UPI0004574B02: PREDICTED: GTP cyclohydrolase 1-like|unclassified	0.3181493215
+UniRef50_UPI00037BAE9F: hypothetical protein	0.3180796891
+UniRef50_UPI00037BAE9F: hypothetical protein|unclassified	0.3180796891
+UniRef50_W1A560	0.3180789487
+UniRef50_W1A560|unclassified	0.3180789487
+UniRef50_UPI0003FA4543: membrane protein	0.3180417665
+UniRef50_UPI0003FA4543: membrane protein|unclassified	0.3180417665
+UniRef50_Q46X95: PKHD-type hydroxylase Reut_A2877	0.3180403290
+UniRef50_Q46X95: PKHD-type hydroxylase Reut_A2877|unclassified	0.3180403290
+UniRef50_UPI00037E1773: DeoR family transcripitonal regulator	0.3178862637
+UniRef50_UPI00037E1773: DeoR family transcripitonal regulator|unclassified	0.3178862637
+UniRef50_Q47334: Arabinose 5-phosphate isomerase KpsF	0.3178850787
+UniRef50_Q47334: Arabinose 5-phosphate isomerase KpsF|unclassified	0.3178850787
+UniRef50_Z5KD88	0.3178771182
+UniRef50_Z5KD88|unclassified	0.3178771182
+UniRef50_UPI00042367F5: hypothetical protein	0.3178625110
+UniRef50_UPI00042367F5: hypothetical protein|unclassified	0.3178625110
+UniRef50_F9DQX8: Dipeptide ABC superfamily ATP binding cassette transporter, membrane protein	0.3178597713
+UniRef50_F9DQX8: Dipeptide ABC superfamily ATP binding cassette transporter, membrane protein|unclassified	0.3178597713
+UniRef50_UPI00046E9E57: hypothetical protein	0.3178422553
+UniRef50_UPI00046E9E57: hypothetical protein|unclassified	0.3178422553
+UniRef50_UPI0003782EA7: hypothetical protein	0.3178281185
+UniRef50_UPI0003782EA7: hypothetical protein|unclassified	0.3178281185
+UniRef50_UPI0001CBB36C: PREDICTED: short-chain collagen C4-like	0.3178004327
+UniRef50_UPI0001CBB36C: PREDICTED: short-chain collagen C4-like|unclassified	0.3178004327
+UniRef50_UPI0003B5EE25: ABC transporter permease	0.3177989747
+UniRef50_UPI0003B5EE25: ABC transporter permease|unclassified	0.3177989747
+UniRef50_A1B6C4: Transcriptional regulator, XRE family	0.3177564430
+UniRef50_A1B6C4: Transcriptional regulator, XRE family|unclassified	0.3177564430
+UniRef50_W7X9W7: Flavocytochrome YedZ	0.3177144553
+UniRef50_W7X9W7: Flavocytochrome YedZ|unclassified	0.3177144553
+UniRef50_UPI00037ED898: hypothetical protein	0.3177054141
+UniRef50_UPI00037ED898: hypothetical protein|unclassified	0.3177054141
+UniRef50_UPI00035D0E29: hypothetical protein	0.3176960986
+UniRef50_UPI00035D0E29: hypothetical protein|unclassified	0.3176960986
+UniRef50_UPI0001CE1C30: PREDICTED: hypothetical protein	0.3176851978
+UniRef50_UPI0001CE1C30: PREDICTED: hypothetical protein|unclassified	0.3176851978
+UniRef50_T0ZST4	0.3176763280
+UniRef50_T0ZST4|unclassified	0.3176763280
+UniRef50_UPI00028902C3: 2-succinyl-6-hydroxy-2,4-cyclohexadiene-1-carboxylate synthase	0.3176756264
+UniRef50_UPI00028902C3: 2-succinyl-6-hydroxy-2,4-cyclohexadiene-1-carboxylate synthase|unclassified	0.3176756264
+UniRef50_C3I167: Collagen adhesion protein	0.3176651461
+UniRef50_C3I167: Collagen adhesion protein|unclassified	0.3176651461
+UniRef50_UPI0003B40337: hypothetical protein, partial	0.3176617708
+UniRef50_UPI0003B40337: hypothetical protein, partial|unclassified	0.3176617708
+UniRef50_UPI00041737AA: zinc protease	0.3176501107
+UniRef50_UPI00041737AA: zinc protease|unclassified	0.3176501107
+UniRef50_W6LZU5	0.3176402326
+UniRef50_W6LZU5|unclassified	0.3176402326
+UniRef50_UPI00047EC841: 2-keto-4-methylthiobutyrate aminotransferase	0.3176316587
+UniRef50_UPI00047EC841: 2-keto-4-methylthiobutyrate aminotransferase|unclassified	0.3176316587
+UniRef50_UPI0003B5F3DE: nitrogen-fixing protein NifU	0.3176142859
+UniRef50_UPI0003B5F3DE: nitrogen-fixing protein NifU|unclassified	0.3176142859
+UniRef50_A6FDZ5	0.3175814691
+UniRef50_A6FDZ5|unclassified	0.3175814691
+UniRef50_E2XXL8	0.3175798934
+UniRef50_E2XXL8|unclassified	0.3175798934
+UniRef50_K0TAZ1	0.3175426628
+UniRef50_K0TAZ1|unclassified	0.3175426628
+UniRef50_UPI00036F4D48: hypothetical protein, partial	0.3175399826
+UniRef50_UPI00036F4D48: hypothetical protein, partial|unclassified	0.3175399826
+UniRef50_UPI0003B5D412: hisitdine kinase	0.3175361998
+UniRef50_UPI0003B5D412: hisitdine kinase|unclassified	0.3175361998
+UniRef50_B5I0I6: Transcriptional regulator	0.3175337478
+UniRef50_B5I0I6: Transcriptional regulator|unclassified	0.3175337478
+UniRef50_UPI0003B4B8C4: rRNA methyltransferase	0.3174693689
+UniRef50_UPI0003B4B8C4: rRNA methyltransferase|unclassified	0.3174693689
+UniRef50_I2QUP3	0.3174665319
+UniRef50_I2QUP3|unclassified	0.3174665319
+UniRef50_D8JQT9	0.3174648517
+UniRef50_D8JQT9|unclassified	0.3174648517
+UniRef50_M3JH78	0.3174575075
+UniRef50_M3JH78|unclassified	0.3174575075
+UniRef50_UPI0003656A67: hypothetical protein	0.3174566256
+UniRef50_UPI0003656A67: hypothetical protein|unclassified	0.3174566256
+UniRef50_B7S173: Fibronectin type III domain protein	0.3174463031
+UniRef50_B7S173: Fibronectin type III domain protein|unclassified	0.3174463031
+UniRef50_J8RWM9: Sulfate ABC transporter permease	0.3174250940
+UniRef50_J8RWM9: Sulfate ABC transporter permease|unclassified	0.3174250940
+UniRef50_K1XHS1	0.3173975169
+UniRef50_K1XHS1|unclassified	0.3173975169
+UniRef50_UPI00036649B9: hypothetical protein	0.3173890684
+UniRef50_UPI00036649B9: hypothetical protein|unclassified	0.3173890684
+UniRef50_X1GQT1: Marine sediment metagenome DNA, contig: S03H2_L06900 (Fragment)	0.3173834626
+UniRef50_X1GQT1: Marine sediment metagenome DNA, contig: S03H2_L06900 (Fragment)|unclassified	0.3173834626
+UniRef50_UPI00047E3E02: hypothetical protein	0.3173594325
+UniRef50_UPI00047E3E02: hypothetical protein|unclassified	0.3173594325
+UniRef50_UPI000463DB53: glutathione reductase, partial	0.3173339017
+UniRef50_UPI000463DB53: glutathione reductase, partial|unclassified	0.3173339017
+UniRef50_UPI000374D55A: MULTISPECIES: hypothetical protein	0.3173268673
+UniRef50_UPI000374D55A: MULTISPECIES: hypothetical protein|unclassified	0.3173268673
+UniRef50_UPI0001B4124B: hypothetical protein, partial	0.3173018696
+UniRef50_UPI0001B4124B: hypothetical protein, partial|unclassified	0.3173018696
+UniRef50_Q43844: NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial	0.3172081832
+UniRef50_Q43844: NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial|unclassified	0.3172081832
+UniRef50_T0VHZ9: Excinuclease ABC subunit C	0.3171699315
+UniRef50_T0VHZ9: Excinuclease ABC subunit C|unclassified	0.3171699315
+UniRef50_W4RSX5: NAD synthetase	0.3171366540
+UniRef50_W4RSX5: NAD synthetase|unclassified	0.3171366540
+UniRef50_U6LP19	0.3171285798
+UniRef50_U6LP19|unclassified	0.3171285798
+UniRef50_W1KJJ4: Transposase ISAfe4	0.3170631352
+UniRef50_W1KJJ4: Transposase ISAfe4|unclassified	0.3170631352
+UniRef50_UPI000248BFF9: UTP--glucose-1-phosphate uridylyltransferase	0.3170520816
+UniRef50_UPI000248BFF9: UTP--glucose-1-phosphate uridylyltransferase|unclassified	0.3170520816
+UniRef50_B8IS35	0.3170096119
+UniRef50_B8IS35|unclassified	0.3170096119
+UniRef50_A0A009WC30: GTP-binding TrmE family protein	0.3169682977
+UniRef50_A0A009WC30: GTP-binding TrmE family protein|unclassified	0.3169682977
+UniRef50_S9R1T8	0.3169604389
+UniRef50_S9R1T8|unclassified	0.3169604389
+UniRef50_Q5WY31: NAD(P) transhydrogenase subunit beta (Pyridine nucleotide transhydrogenase subunit alpha II)	0.3169582881
+UniRef50_Q5WY31: NAD(P) transhydrogenase subunit beta (Pyridine nucleotide transhydrogenase subunit alpha II)|unclassified	0.3169582881
+UniRef50_H3NU73	0.3169276860
+UniRef50_H3NU73|unclassified	0.3169276860
+UniRef50_Q7DDL5: Cysteine synthase	0.3169252914
+UniRef50_Q7DDL5: Cysteine synthase|unclassified	0.3169252914
+UniRef50_A3NGC1	0.3168996040
+UniRef50_A3NGC1|unclassified	0.3168996040
+UniRef50_UPI000344D3DA: hypothetical protein	0.3168817691
+UniRef50_UPI000344D3DA: hypothetical protein|unclassified	0.3168817691
+UniRef50_UPI00041A37DE: hypothetical protein	0.3168593310
+UniRef50_UPI00041A37DE: hypothetical protein|unclassified	0.3168593310
+UniRef50_B2SBI3: Tetracycline resistance protein	0.3168169125
+UniRef50_B2SBI3: Tetracycline resistance protein|unclassified	0.3168169125
+UniRef50_B9KK47	0.3167713865
+UniRef50_B9KK47|unclassified	0.3167713865
+UniRef50_Q6N226	0.3167424820
+UniRef50_Q6N226|unclassified	0.3167424820
+UniRef50_V9G5F4: Iojap protein	0.3167284364
+UniRef50_V9G5F4: Iojap protein|unclassified	0.3167284364
+UniRef50_F2AJA7	0.3167219337
+UniRef50_F2AJA7|unclassified	0.3167219337
+UniRef50_UPI0003A861A0: hypothetical protein	0.3166857539
+UniRef50_UPI0003A861A0: hypothetical protein|unclassified	0.3166857539
+UniRef50_UPI00037F2807: hypothetical protein	0.3166724907
+UniRef50_UPI00037F2807: hypothetical protein|unclassified	0.3166724907
+UniRef50_Q94522: Succinyl-CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial	0.3166188644
+UniRef50_Q94522: Succinyl-CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial|unclassified	0.3166188644
+UniRef50_G5NH40: Functional role page for Anaerobic nitric oxide reductase transcription regulator NorR	0.3166125740
+UniRef50_G5NH40: Functional role page for Anaerobic nitric oxide reductase transcription regulator NorR|unclassified	0.3166125740
+UniRef50_D4BAG2	0.3165994138
+UniRef50_D4BAG2|unclassified	0.3165994138
+UniRef50_UPI0003646FAB: hypothetical protein	0.3165685851
+UniRef50_UPI0003646FAB: hypothetical protein|unclassified	0.3165685851
+UniRef50_UPI00047A7902: mechanosensitive ion channel protein MscL	0.3165649161
+UniRef50_UPI00047A7902: mechanosensitive ion channel protein MscL|unclassified	0.3165649161
+UniRef50_V2M9S5	0.3165572004
+UniRef50_V2M9S5|unclassified	0.3165572004
+UniRef50_B8FTK7: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.3165461466
+UniRef50_B8FTK7: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.3165461466
+UniRef50_W5X369: Sugar phosphate isomerase/epimerase-like protein	0.3165458111
+UniRef50_W5X369: Sugar phosphate isomerase/epimerase-like protein|unclassified	0.3165458111
+UniRef50_M1WP05: ClpB protein	0.3164886662
+UniRef50_M1WP05: ClpB protein|unclassified	0.3164886662
+UniRef50_Q1QXS6: Phage tail E	0.3164814465
+UniRef50_Q1QXS6: Phage tail E|unclassified	0.3164814465
+UniRef50_UPI0003B50954: aspartyl/glutamyl-tRNA amidotransferase subunit B	0.3164802728
+UniRef50_UPI0003B50954: aspartyl/glutamyl-tRNA amidotransferase subunit B|unclassified	0.3164802728
+UniRef50_Q5HR43	0.3164743088
+UniRef50_Q5HR43|unclassified	0.3164743088
+UniRef50_Q0E553: 64.6 kDa	0.3164742384
+UniRef50_Q0E553: 64.6 kDa|unclassified	0.3164742384
+UniRef50_G5ZXB4	0.3164209290
+UniRef50_G5ZXB4|unclassified	0.3164209290
+UniRef50_B2VCR3: Iron(III) dicitrate sensor protein FecR	0.3163897119
+UniRef50_B2VCR3: Iron(III) dicitrate sensor protein FecR|unclassified	0.3163897119
+UniRef50_UPI00037D294B: hypothetical protein	0.3163722012
+UniRef50_UPI00037D294B: hypothetical protein|unclassified	0.3163722012
+UniRef50_UPI000464B896: histidinol phosphatase	0.3162733930
+UniRef50_UPI000464B896: histidinol phosphatase|unclassified	0.3162733930
+UniRef50_A4WFE5: Glutathione-regulated potassium-efflux system ancillary protein KefG	0.3162641964
+UniRef50_A4WFE5: Glutathione-regulated potassium-efflux system ancillary protein KefG|unclassified	0.3162641964
+UniRef50_W2DVY3: DSBA oxidoreductase	0.3161878600
+UniRef50_W2DVY3: DSBA oxidoreductase|unclassified	0.3161878600
+UniRef50_A0A059ILG1	0.3161813406
+UniRef50_A0A059ILG1|unclassified	0.3161813406
+UniRef50_G1D4J4: Gp80	0.3161752030
+UniRef50_G1D4J4: Gp80|unclassified	0.3161752030
+UniRef50_K5ZMY3: NADH dehydrogenase (Ubiquinone)	0.3161182857
+UniRef50_K5ZMY3: NADH dehydrogenase (Ubiquinone)|unclassified	0.3161182857
+UniRef50_X6GW49	0.3160941238
+UniRef50_X6GW49|unclassified	0.3160941238
+UniRef50_UPI00037E7CCD: hypothetical protein	0.3160936664
+UniRef50_UPI00037E7CCD: hypothetical protein|unclassified	0.3160936664
+UniRef50_UPI00036450DC: hypothetical protein	0.3160915109
+UniRef50_UPI00036450DC: hypothetical protein|unclassified	0.3160915109
+UniRef50_UPI0003B424BE: hypothetical protein	0.3160530088
+UniRef50_UPI0003B424BE: hypothetical protein|unclassified	0.3160530088
+UniRef50_B6I6H0	0.3160097463
+UniRef50_B6I6H0|unclassified	0.3160097463
+UniRef50_UPI000376E2BC: hypothetical protein, partial	0.3160022642
+UniRef50_UPI000376E2BC: hypothetical protein, partial|unclassified	0.3160022642
+UniRef50_A6US29: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.3159450176
+UniRef50_A6US29: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.3159450176
+UniRef50_UPI000469479D: hypothetical protein, partial	0.3159314998
+UniRef50_UPI000469479D: hypothetical protein, partial|unclassified	0.3159314998
+UniRef50_UPI0003642130: hypothetical protein	0.3158470614
+UniRef50_UPI0003642130: hypothetical protein|unclassified	0.3158470614
+UniRef50_F4U1D8: Transposase	0.3158272976
+UniRef50_F4U1D8: Transposase|unclassified	0.3158272976
+UniRef50_D8Q6L6	0.3158172549
+UniRef50_D8Q6L6|unclassified	0.3158172549
+UniRef50_D8LJV9	0.3157562362
+UniRef50_D8LJV9|unclassified	0.3157562362
+UniRef50_E7C3S2: Dehydrogenases (Flavoproteins)	0.3157490176
+UniRef50_E7C3S2: Dehydrogenases (Flavoproteins)|unclassified	0.3157490176
+UniRef50_UPI00036D5C8E: hypothetical protein	0.3157435826
+UniRef50_UPI00036D5C8E: hypothetical protein|unclassified	0.3157435826
+UniRef50_I7DYX9	0.3157347848
+UniRef50_I7DYX9|unclassified	0.3157347848
+UniRef50_UPI0004627C9F: hypothetical protein	0.3157071401
+UniRef50_UPI0004627C9F: hypothetical protein|unclassified	0.3157071401
+UniRef50_H0DH18: CobW/P47K C-terminal domain protein	0.3157051449
+UniRef50_H0DH18: CobW/P47K C-terminal domain protein|unclassified	0.3157051449
+UniRef50_C1EIB0: Predicted protein	0.3157041967
+UniRef50_C1EIB0: Predicted protein|unclassified	0.3157041967
+UniRef50_Y4XER6: Cobalamin synthesis protein/P47K family protein	0.3156989648
+UniRef50_Y4XER6: Cobalamin synthesis protein/P47K family protein|unclassified	0.3156989648
+UniRef50_A3K9B2	0.3155616066
+UniRef50_A3K9B2|unclassified	0.3155616066
+UniRef50_UPI000255BDA0: oligopeptide ABC transporter ATP-binding protein, partial	0.3155308576
+UniRef50_UPI000255BDA0: oligopeptide ABC transporter ATP-binding protein, partial|unclassified	0.3155308576
+UniRef50_UPI0004650867: hypothetical protein	0.3155259590
+UniRef50_UPI0004650867: hypothetical protein|unclassified	0.3155259590
+UniRef50_Q5HLF4: Conserved domain protein	0.3155202485
+UniRef50_Q5HLF4: Conserved domain protein|unclassified	0.3155202485
+UniRef50_UPI0003B700CE: molybdopterin biosynthesis MoeZ	0.3154753699
+UniRef50_UPI0003B700CE: molybdopterin biosynthesis MoeZ|unclassified	0.3154753699
+UniRef50_UPI0004560102: hypothetical protein PFL1_01067	0.3154572233
+UniRef50_UPI0004560102: hypothetical protein PFL1_01067|unclassified	0.3154572233
+UniRef50_UPI0004764E04: hypothetical protein	0.3154483533
+UniRef50_UPI0004764E04: hypothetical protein|unclassified	0.3154483533
+UniRef50_E3EB33: NAD(P)H dehydrogenase (Quinone)	0.3154465013
+UniRef50_E3EB33: NAD(P)H dehydrogenase (Quinone)|unclassified	0.3154465013
+UniRef50_UPI00040EE295: glucose-6-phosphate dehydrogenase	0.3154110165
+UniRef50_UPI00040EE295: glucose-6-phosphate dehydrogenase|unclassified	0.3154110165
+UniRef50_UPI00036ACD28: hypothetical protein	0.3154070263
+UniRef50_UPI00036ACD28: hypothetical protein|unclassified	0.3154070263
+UniRef50_W4EDY3: CsbD family protein	0.3153703797
+UniRef50_W4EDY3: CsbD family protein|unclassified	0.3153703797
+UniRef50_UPI0002BB1BB7: hypothetical protein, partial	0.3153676475
+UniRef50_UPI0002BB1BB7: hypothetical protein, partial|unclassified	0.3153676475
+UniRef50_UPI00036A4F0E: hypothetical protein	0.3153455781
+UniRef50_UPI00036A4F0E: hypothetical protein|unclassified	0.3153455781
+UniRef50_UPI0001B42876: peptidoglycan lytic protein P45	0.3153111454
+UniRef50_UPI0001B42876: peptidoglycan lytic protein P45|unclassified	0.3153111454
+UniRef50_X0T152: Marine sediment metagenome DNA, contig: S01H1_L04181 (Fragment)	0.3153061204
+UniRef50_X0T152: Marine sediment metagenome DNA, contig: S01H1_L04181 (Fragment)|unclassified	0.3153061204
+UniRef50_S5UWP0	0.3152823047
+UniRef50_S5UWP0|unclassified	0.3152823047
+UniRef50_UPI000361F1B4: hypothetical protein	0.3152415861
+UniRef50_UPI000361F1B4: hypothetical protein|unclassified	0.3152415861
+UniRef50_M3BKE3: ComEC/Rec2-like protein	0.3151974983
+UniRef50_M3BKE3: ComEC/Rec2-like protein|unclassified	0.3151974983
+UniRef50_G9PLE0	0.3151676595
+UniRef50_G9PLE0|unclassified	0.3151676595
+UniRef50_T1XB27	0.3151640724
+UniRef50_T1XB27|unclassified	0.3151640724
+UniRef50_E3D229: Chromosome partition protein Smc	0.3151591554
+UniRef50_E3D229: Chromosome partition protein Smc|g__Neisseria.s__Neisseria_meningitidis	0.3151591554
+UniRef50_UPI0000397A5B: peptide transporter	0.3151502238
+UniRef50_UPI0000397A5B: peptide transporter|unclassified	0.3151502238
+UniRef50_UPI0004028443: hypothetical protein	0.3151096050
+UniRef50_UPI0004028443: hypothetical protein|unclassified	0.3151096050
+UniRef50_G2MPZ1	0.3150790004
+UniRef50_G2MPZ1|unclassified	0.3150790004
+UniRef50_UPI0004702CEA: UDP-diphosphatase	0.3150710841
+UniRef50_UPI0004702CEA: UDP-diphosphatase|unclassified	0.3150710841
+UniRef50_A5V3U8	0.3150598614
+UniRef50_A5V3U8|unclassified	0.3150598614
+UniRef50_UPI0001851332: phospho-N-acetylmuramoyl-pentapeptide-transferase	0.3150320000
+UniRef50_UPI0001851332: phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.3150320000
+UniRef50_UPI0003C36572: PREDICTED: H/ACA ribonucleoprotein complex subunit 1-like	0.3150138763
+UniRef50_UPI0003C36572: PREDICTED: H/ACA ribonucleoprotein complex subunit 1-like|unclassified	0.3150138763
+UniRef50_UPI0004716B86: hypothetical protein	0.3149973271
+UniRef50_UPI0004716B86: hypothetical protein|unclassified	0.3149973271
+UniRef50_Q169B5: Conserved domain protein	0.3149943868
+UniRef50_Q169B5: Conserved domain protein|unclassified	0.3149943868
+UniRef50_UPI0003AEF21C: PREDICTED: transcription initiation factor TFIID subunit 4-like	0.3149642615
+UniRef50_UPI0003AEF21C: PREDICTED: transcription initiation factor TFIID subunit 4-like|unclassified	0.3149642615
+UniRef50_UPI0002F69D2E: hypothetical protein	0.3149476546
+UniRef50_UPI0002F69D2E: hypothetical protein|unclassified	0.3149476546
+UniRef50_UPI0003598719: PREDICTED: basic proline-rich protein-like	0.3149369383
+UniRef50_UPI0003598719: PREDICTED: basic proline-rich protein-like|unclassified	0.3149369383
+UniRef50_Q1M9D5: Putative biotin-binding protein	0.3148927877
+UniRef50_Q1M9D5: Putative biotin-binding protein|unclassified	0.3148927877
+UniRef50_UPI0004415C02: hypothetical protein DICSQDRAFT_143193	0.3148822826
+UniRef50_UPI0004415C02: hypothetical protein DICSQDRAFT_143193|unclassified	0.3148822826
+UniRef50_UPI0003BBA1AF: PREDICTED: polycystic kidney disease protein 1-like 3-like	0.3148628746
+UniRef50_UPI0003BBA1AF: PREDICTED: polycystic kidney disease protein 1-like 3-like|unclassified	0.3148628746
+UniRef50_Q6GA55	0.3148618917
+UniRef50_Q6GA55|unclassified	0.3148618917
+UniRef50_I8T1Z2	0.3148331415
+UniRef50_I8T1Z2|unclassified	0.3148331415
+UniRef50_W1FD50: ABC transport system, periplasmic substrate-binding protein Z5689	0.3148318192
+UniRef50_W1FD50: ABC transport system, periplasmic substrate-binding protein Z5689|unclassified	0.3148318192
+UniRef50_UPI0004634978: hypothetical protein, partial	0.3148266059
+UniRef50_UPI0004634978: hypothetical protein, partial|unclassified	0.3148266059
+UniRef50_F3GIY4	0.3148180349
+UniRef50_F3GIY4|unclassified	0.3148180349
+UniRef50_UPI0003706081: hypothetical protein	0.3148038357
+UniRef50_UPI0003706081: hypothetical protein|unclassified	0.3148038357
+UniRef50_UPI0003671AFD: hypothetical protein	0.3147873717
+UniRef50_UPI0003671AFD: hypothetical protein|unclassified	0.3147873717
+UniRef50_UPI00046E6161: hypothetical protein	0.3147825953
+UniRef50_UPI00046E6161: hypothetical protein|unclassified	0.3147825953
+UniRef50_Q2P7B5: Acyl carrier protein	0.3147527236
+UniRef50_Q2P7B5: Acyl carrier protein|unclassified	0.3147527236
+UniRef50_UPI0002C5864D: PREDICTED: histone H2A.Z-like isoform 1	0.3146822600
+UniRef50_UPI0002C5864D: PREDICTED: histone H2A.Z-like isoform 1|unclassified	0.3146822600
+UniRef50_V5UBV7	0.3146393569
+UniRef50_V5UBV7|unclassified	0.3146393569
+UniRef50_T0V8A5	0.3145974665
+UniRef50_T0V8A5|unclassified	0.3145974665
+UniRef50_G3JTF3	0.3145677735
+UniRef50_G3JTF3|unclassified	0.3145677735
+UniRef50_UPI0003805572: Fis family transcriptional regulator	0.3145662216
+UniRef50_UPI0003805572: Fis family transcriptional regulator|unclassified	0.3145662216
+UniRef50_UPI000373430C: 30S ribosomal protein S17	0.3145573884
+UniRef50_UPI000373430C: 30S ribosomal protein S17|unclassified	0.3145573884
+UniRef50_V0TKK1	0.3145492538
+UniRef50_V0TKK1|unclassified	0.3145492538
+UniRef50_B4V7N1: Integral membrane protein	0.3145372834
+UniRef50_B4V7N1: Integral membrane protein|unclassified	0.3145372834
+UniRef50_A0A009R5B5: Catalase-related immune-responsive family protein	0.3145306952
+UniRef50_A0A009R5B5: Catalase-related immune-responsive family protein|unclassified	0.3145306952
+UniRef50_H1QKM5: NADH-quinone oxidoreductase subunit B (Fragment)	0.3145281718
+UniRef50_H1QKM5: NADH-quinone oxidoreductase subunit B (Fragment)|unclassified	0.3145281718
+UniRef50_Q1GR54: Endoribonuclease YbeY	0.3144980349
+UniRef50_Q1GR54: Endoribonuclease YbeY|unclassified	0.3144980349
+UniRef50_UPI00037CDEEA: hypothetical protein	0.3144876519
+UniRef50_UPI00037CDEEA: hypothetical protein|unclassified	0.3144876519
+UniRef50_Q1CL80	0.3144742820
+UniRef50_Q1CL80|unclassified	0.3144742820
+UniRef50_W0EW28: Fe-S metabolism protein SufE	0.3144647268
+UniRef50_W0EW28: Fe-S metabolism protein SufE|unclassified	0.3144647268
+UniRef50_B3PD00: Capsular polysaccharide synthesis	0.3144155163
+UniRef50_B3PD00: Capsular polysaccharide synthesis|unclassified	0.3144155163
+UniRef50_T1XK79: Putative diheme cytochrome c	0.3144064614
+UniRef50_T1XK79: Putative diheme cytochrome c|unclassified	0.3144064614
+UniRef50_F0E924: Type II secretion system protein (Fragment)	0.3143660179
+UniRef50_F0E924: Type II secretion system protein (Fragment)|unclassified	0.3143660179
+UniRef50_UPI0004759CA0: cell division protein FtsL	0.3143499190
+UniRef50_UPI0004759CA0: cell division protein FtsL|unclassified	0.3143499190
+UniRef50_A0A023YM24	0.3143362053
+UniRef50_A0A023YM24|unclassified	0.3143362053
+UniRef50_UPI0003613018: hypothetical protein, partial	0.3143312749
+UniRef50_UPI0003613018: hypothetical protein, partial|unclassified	0.3143312749
+UniRef50_UPI00036892E1: hypothetical protein	0.3142864036
+UniRef50_UPI00036892E1: hypothetical protein|unclassified	0.3142864036
+UniRef50_UPI00036550B1: hypothetical protein	0.3142841456
+UniRef50_UPI00036550B1: hypothetical protein|unclassified	0.3142841456
+UniRef50_L5RMF7	0.3142811356
+UniRef50_L5RMF7|unclassified	0.3142811356
+UniRef50_B9TKN7	0.3142430349
+UniRef50_B9TKN7|unclassified	0.3142430349
+UniRef50_W4RNF2: Maltose/maltodextrin ABC transporter	0.3142347235
+UniRef50_W4RNF2: Maltose/maltodextrin ABC transporter|unclassified	0.3142347235
+UniRef50_V5G1L2: Cobalt/zinc/cadmium efflux RND transporter, membrane fusion protein, CzcB family	0.3142271972
+UniRef50_V5G1L2: Cobalt/zinc/cadmium efflux RND transporter, membrane fusion protein, CzcB family|unclassified	0.3142271972
+UniRef50_UPI0003B65051: transcriptional regulator	0.3142181486
+UniRef50_UPI0003B65051: transcriptional regulator|unclassified	0.3142181486
+UniRef50_UPI0004038871: hypothetical protein	0.3141552133
+UniRef50_UPI0004038871: hypothetical protein|unclassified	0.3141552133
+UniRef50_R5X6S8	0.3141490599
+UniRef50_R5X6S8|unclassified	0.3141490599
+UniRef50_Q5N9X5	0.3141173141
+UniRef50_Q5N9X5|unclassified	0.3141173141
+UniRef50_W5X5Q8	0.3141142058
+UniRef50_W5X5Q8|unclassified	0.3141142058
+UniRef50_UPI0003748A43: hypothetical protein	0.3141047559
+UniRef50_UPI0003748A43: hypothetical protein|unclassified	0.3141047559
+UniRef50_V6UP52: AraC family transcriptional regulator (Fragment)	0.3140860941
+UniRef50_V6UP52: AraC family transcriptional regulator (Fragment)|unclassified	0.3140860941
+UniRef50_UPI0003666757: hypothetical protein	0.3140472720
+UniRef50_UPI0003666757: hypothetical protein|unclassified	0.3140472720
+UniRef50_S3WS21	0.3140193308
+UniRef50_S3WS21|unclassified	0.3140193308
+UniRef50_UPI0003342F67: PREDICTED: apical endosomal glycoprotein	0.3139938921
+UniRef50_UPI0003342F67: PREDICTED: apical endosomal glycoprotein|unclassified	0.3139938921
+UniRef50_Q2WB09: NAD kinase	0.3139426045
+UniRef50_Q2WB09: NAD kinase|unclassified	0.3139426045
+UniRef50_F5ZIC0: Regulatory protein Spx	0.3139349272
+UniRef50_F5ZIC0: Regulatory protein Spx|unclassified	0.3139349272
+UniRef50_F2MU09: Phospholipase/carboxylesterase	0.3138953717
+UniRef50_F2MU09: Phospholipase/carboxylesterase|unclassified	0.3138953717
+UniRef50_B9TCC0	0.3138797915
+UniRef50_B9TCC0|unclassified	0.3138797915
+UniRef50_UPI0002196290: transcriptional regulator, partial	0.3138569770
+UniRef50_UPI0002196290: transcriptional regulator, partial|unclassified	0.3138569770
+UniRef50_F8YCT9: IS1 orfA	0.3138125564
+UniRef50_F8YCT9: IS1 orfA|unclassified	0.3138125564
+UniRef50_UPI00046F4E68: ribonucleoside-diphosphate reductase, partial	0.3138080214
+UniRef50_UPI00046F4E68: ribonucleoside-diphosphate reductase, partial|unclassified	0.3138080214
+UniRef50_Q5QX48	0.3137982887
+UniRef50_Q5QX48|unclassified	0.3137982887
+UniRef50_UPI0000589E14: lipase precursor	0.3137975860
+UniRef50_UPI0000589E14: lipase precursor|unclassified	0.3137975860
+UniRef50_UPI00037E973A: hypothetical protein	0.3137457801
+UniRef50_UPI00037E973A: hypothetical protein|unclassified	0.3137457801
+UniRef50_C6KTY8: TRAP-T family transporter, DctQ (4 TMs) subunit	0.3136706754
+UniRef50_C6KTY8: TRAP-T family transporter, DctQ (4 TMs) subunit|unclassified	0.3136706754
+UniRef50_C2DD73: Biotin-requiring enzyme	0.3136626945
+UniRef50_C2DD73: Biotin-requiring enzyme|unclassified	0.3136626945
+UniRef50_UPI0002D53BE1: hypothetical protein	0.3136231060
+UniRef50_UPI0002D53BE1: hypothetical protein|unclassified	0.3136231060
+UniRef50_UPI00037371BE: hypothetical protein	0.3136121196
+UniRef50_UPI00037371BE: hypothetical protein|unclassified	0.3136121196
+UniRef50_A8B6F6	0.3136097315
+UniRef50_A8B6F6|unclassified	0.3136097315
+UniRef50_UPI0003B41478: sugar ABC transporter permease	0.3135666255
+UniRef50_UPI0003B41478: sugar ABC transporter permease|unclassified	0.3135666255
+UniRef50_Q65QS0	0.3135002654
+UniRef50_Q65QS0|unclassified	0.3135002654
+UniRef50_UPI000463509D: N-formylglutamate amidohydrolase	0.3134984995
+UniRef50_UPI000463509D: N-formylglutamate amidohydrolase|unclassified	0.3134984995
+UniRef50_L9MMS1	0.3134861782
+UniRef50_L9MMS1|unclassified	0.3134861782
+UniRef50_E9CNC9	0.3134480362
+UniRef50_E9CNC9|unclassified	0.3134480362
+UniRef50_C1A4E4: 3-dehydroquinate dehydratase	0.3134061886
+UniRef50_C1A4E4: 3-dehydroquinate dehydratase|unclassified	0.3134061886
+UniRef50_UPI00047C3529: hypothetical protein, partial	0.3133998403
+UniRef50_UPI00047C3529: hypothetical protein, partial|unclassified	0.3133998403
+UniRef50_L0A0P5	0.3133859397
+UniRef50_L0A0P5|unclassified	0.3133859397
+UniRef50_V9DF89	0.3133831661
+UniRef50_V9DF89|unclassified	0.3133831661
+UniRef50_UPI0003B68B29: phosphoribosylaminoimidazole-succinocarboxamide synthase	0.3133617904
+UniRef50_UPI0003B68B29: phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.3133617904
+UniRef50_UPI0004763328: hypothetical protein	0.3133214405
+UniRef50_UPI0004763328: hypothetical protein|unclassified	0.3133214405
+UniRef50_R3B8E7	0.3133096518
+UniRef50_R3B8E7|unclassified	0.3133096518
+UniRef50_UPI0003622FE9: hypothetical protein	0.3133054475
+UniRef50_UPI0003622FE9: hypothetical protein|unclassified	0.3133054475
+UniRef50_UPI000441004D: PREDICTED: SH3 domain-containing protein C23A1.17-like	0.3132875659
+UniRef50_UPI000441004D: PREDICTED: SH3 domain-containing protein C23A1.17-like|unclassified	0.3132875659
+UniRef50_X1KMP2: Marine sediment metagenome DNA, contig: S06H3_L03059 (Fragment)	0.3132788511
+UniRef50_X1KMP2: Marine sediment metagenome DNA, contig: S06H3_L03059 (Fragment)|unclassified	0.3132788511
+UniRef50_UPI0001D2F4B5: histidine kinase	0.3132674141
+UniRef50_UPI0001D2F4B5: histidine kinase|unclassified	0.3132674141
+UniRef50_A0A022M5M4: TonB-dependent receptor (Fragment)	0.3132126440
+UniRef50_A0A022M5M4: TonB-dependent receptor (Fragment)|unclassified	0.3132126440
+UniRef50_UPI0003A69479: biotin biosynthesis protein BioY	0.3131785182
+UniRef50_UPI0003A69479: biotin biosynthesis protein BioY|unclassified	0.3131785182
+UniRef50_B9KVR6	0.3131499993
+UniRef50_B9KVR6|unclassified	0.3131499993
+UniRef50_Z5YDT5: Replication initiator protein	0.3130759894
+UniRef50_Z5YDT5: Replication initiator protein|unclassified	0.3130759894
+UniRef50_UPI0003F725DD: hypothetical protein	0.3130695633
+UniRef50_UPI0003F725DD: hypothetical protein|unclassified	0.3130695633
+UniRef50_W0Q5F8: IS103 orf	0.3129868312
+UniRef50_W0Q5F8: IS103 orf|unclassified	0.3129868312
+UniRef50_Q1WTP0: Glycine--tRNA ligase alpha subunit	0.3129832562
+UniRef50_Q1WTP0: Glycine--tRNA ligase alpha subunit|unclassified	0.3129832562
+UniRef50_A0A024L8V0	0.3129647823
+UniRef50_A0A024L8V0|unclassified	0.3129647823
+UniRef50_UPI000382A2F1: hypothetical protein	0.3129563584
+UniRef50_UPI000382A2F1: hypothetical protein|unclassified	0.3129563584
+UniRef50_UPI0001AF2D93: DNA-3-methyladenine glycosylase I protein	0.3129395394
+UniRef50_UPI0001AF2D93: DNA-3-methyladenine glycosylase I protein|unclassified	0.3129395394
+UniRef50_I3TWQ0	0.3129391076
+UniRef50_I3TWQ0|unclassified	0.3129391076
+UniRef50_Q11DL1	0.3129113384
+UniRef50_Q11DL1|unclassified	0.3129113384
+UniRef50_V2D6G8: Putative cation:proton antiport protein	0.3128683390
+UniRef50_V2D6G8: Putative cation:proton antiport protein|unclassified	0.3128683390
+UniRef50_A0R033: Phospho-2-dehydro-3-deoxyheptonate aldolase AroG	0.3128552054
+UniRef50_A0R033: Phospho-2-dehydro-3-deoxyheptonate aldolase AroG|unclassified	0.3128552054
+UniRef50_X6CK23	0.3128505785
+UniRef50_X6CK23|unclassified	0.3128505785
+UniRef50_A8IJ48	0.3128298477
+UniRef50_A8IJ48|unclassified	0.3128298477
+UniRef50_UPI00037FE480: hypothetical protein	0.3128168848
+UniRef50_UPI00037FE480: hypothetical protein|unclassified	0.3128168848
+UniRef50_Q5WDI2: Imidazole glycerol phosphate synthase subunit HisF	0.3128068259
+UniRef50_Q5WDI2: Imidazole glycerol phosphate synthase subunit HisF|unclassified	0.3128068259
+UniRef50_UPI0003B5234A: GntR family transcriptional regulator	0.3127649730
+UniRef50_UPI0003B5234A: GntR family transcriptional regulator|unclassified	0.3127649730
+UniRef50_X1EMU8: Marine sediment metagenome DNA, contig: S03H2_L04139 (Fragment)	0.3127498110
+UniRef50_X1EMU8: Marine sediment metagenome DNA, contig: S03H2_L04139 (Fragment)|unclassified	0.3127498110
+UniRef50_UPI0003FF1625: hypothetical protein	0.3127296429
+UniRef50_UPI0003FF1625: hypothetical protein|unclassified	0.3127296429
+UniRef50_UPI00036BEF36: hypothetical protein	0.3127291075
+UniRef50_UPI00036BEF36: hypothetical protein|unclassified	0.3127291075
+UniRef50_A7MIX0	0.3127239995
+UniRef50_A7MIX0|unclassified	0.3127239995
+UniRef50_UPI000360C218: hypothetical protein, partial	0.3127147826
+UniRef50_UPI000360C218: hypothetical protein, partial|unclassified	0.3127147826
+UniRef50_UPI0003946AEB: PREDICTED: formin-like protein 5-like	0.3126997795
+UniRef50_UPI0003946AEB: PREDICTED: formin-like protein 5-like|unclassified	0.3126997795
+UniRef50_R1DNR4	0.3126954346
+UniRef50_R1DNR4|unclassified	0.3126954346
+UniRef50_E9TMU9	0.3126722513
+UniRef50_E9TMU9|unclassified	0.3126722513
+UniRef50_D9QL62: NifU-like protein involved in Fe-S cluster formation	0.3126495236
+UniRef50_D9QL62: NifU-like protein involved in Fe-S cluster formation|unclassified	0.3126495236
+UniRef50_X6CFN2: Transposase	0.3126037399
+UniRef50_X6CFN2: Transposase|unclassified	0.3126037399
+UniRef50_UPI0004572EA5: PREDICTED: proline-rich receptor-like protein kinase PERK9	0.3125207891
+UniRef50_UPI0004572EA5: PREDICTED: proline-rich receptor-like protein kinase PERK9|unclassified	0.3125207891
+UniRef50_UPI0003B79452: dihydrolipoamide dehydrogenase, partial	0.3125053356
+UniRef50_UPI0003B79452: dihydrolipoamide dehydrogenase, partial|unclassified	0.3125053356
+UniRef50_I0C816: Nitrogen regulation protein NIFR3	0.3125011029
+UniRef50_I0C816: Nitrogen regulation protein NIFR3|unclassified	0.3125011029
+UniRef50_UPI00036A617B: hypothetical protein	0.3125000000
+UniRef50_UPI00036A617B: hypothetical protein|unclassified	0.3125000000
+UniRef50_U6KR03	0.3124936236
+UniRef50_U6KR03|unclassified	0.3124936236
+UniRef50_R8A4W3	0.3124820060
+UniRef50_R8A4W3|unclassified	0.3124820060
+UniRef50_Q6ANL7: Imidazoleglycerol-phosphate dehydratase	0.3124683359
+UniRef50_Q6ANL7: Imidazoleglycerol-phosphate dehydratase|unclassified	0.3124683359
+UniRef50_U2W2Q1: TIGR01906 family protein	0.3124418905
+UniRef50_U2W2Q1: TIGR01906 family protein|unclassified	0.3124418905
+UniRef50_UPI00020D99B0: methionyl-tRNA synthetase	0.3124378929
+UniRef50_UPI00020D99B0: methionyl-tRNA synthetase|unclassified	0.3124378929
+UniRef50_B9J0M2	0.3124316556
+UniRef50_B9J0M2|unclassified	0.3124316556
+UniRef50_F7X1D9	0.3124277633
+UniRef50_F7X1D9|unclassified	0.3124277633
+UniRef50_UPI00036EB279: hypothetical protein	0.3124164860
+UniRef50_UPI00036EB279: hypothetical protein|unclassified	0.3124164860
+UniRef50_UPI00035DF1FA: hypothetical protein, partial	0.3124152399
+UniRef50_UPI00035DF1FA: hypothetical protein, partial|unclassified	0.3124152399
+UniRef50_UPI00039B0839: membrane protein	0.3124061282
+UniRef50_UPI00039B0839: membrane protein|unclassified	0.3124061282
+UniRef50_UPI00047AA4FA: hypothetical protein	0.3124023743
+UniRef50_UPI00047AA4FA: hypothetical protein|unclassified	0.3124023743
+UniRef50_UPI0003EABD05: PREDICTED: serine/arginine repetitive matrix protein 2-like	0.3123872566
+UniRef50_UPI0003EABD05: PREDICTED: serine/arginine repetitive matrix protein 2-like|unclassified	0.3123872566
+UniRef50_UPI000469A37C: membrane protein	0.3123333497
+UniRef50_UPI000469A37C: membrane protein|unclassified	0.3123333497
+UniRef50_UPI0003B6924D: diguanylate cyclase	0.3123033352
+UniRef50_UPI0003B6924D: diguanylate cyclase|unclassified	0.3123033352
+UniRef50_UPI00036840C4: hypothetical protein	0.3122606846
+UniRef50_UPI00036840C4: hypothetical protein|unclassified	0.3122606846
+UniRef50_V6QB31	0.3122339846
+UniRef50_V6QB31|unclassified	0.3122339846
+UniRef50_UPI00020022EE: hypothetical protein, partial	0.3122201646
+UniRef50_UPI00020022EE: hypothetical protein, partial|unclassified	0.3122201646
+UniRef50_UPI0004719EA1: aminotransferase, partial	0.3122110578
+UniRef50_UPI0004719EA1: aminotransferase, partial|unclassified	0.3122110578
+UniRef50_S8EV43	0.3121428334
+UniRef50_S8EV43|unclassified	0.3121428334
+UniRef50_UPI0003B6145B: ABC transporter	0.3121281955
+UniRef50_UPI0003B6145B: ABC transporter|unclassified	0.3121281955
+UniRef50_L0J5N0: Virulence factor Mce family protein	0.3120712348
+UniRef50_L0J5N0: Virulence factor Mce family protein|unclassified	0.3120712348
+UniRef50_C0ZEV2: Protein ArsC	0.3120414960
+UniRef50_C0ZEV2: Protein ArsC|unclassified	0.3120414960
+UniRef50_A6UAT2	0.3120077008
+UniRef50_A6UAT2|unclassified	0.3120077008
+UniRef50_F2N357: Nucleoside-diphosphate-sugar epimerase	0.3119854049
+UniRef50_F2N357: Nucleoside-diphosphate-sugar epimerase|unclassified	0.3119854049
+UniRef50_UPI0003780845: hypothetical protein, partial	0.3119559656
+UniRef50_UPI0003780845: hypothetical protein, partial|unclassified	0.3119559656
+UniRef50_X0UMF5: Marine sediment metagenome DNA, contig: S01H1_S03231 (Fragment)	0.3119510004
+UniRef50_X0UMF5: Marine sediment metagenome DNA, contig: S01H1_S03231 (Fragment)|unclassified	0.3119510004
+UniRef50_Q4FBD3: Transcriptional regulator	0.3119128552
+UniRef50_Q4FBD3: Transcriptional regulator|unclassified	0.3119128552
+UniRef50_UPI0002897140: O-acetylhomoserine aminocarboxypropyltransferase	0.3119040369
+UniRef50_UPI0002897140: O-acetylhomoserine aminocarboxypropyltransferase|unclassified	0.3119040369
+UniRef50_UPI0002C35DE3: PREDICTED: methionine synthase-like, partial	0.3118682880
+UniRef50_UPI0002C35DE3: PREDICTED: methionine synthase-like, partial|unclassified	0.3118682880
+UniRef50_UPI00037E3D3C: hypothetical protein, partial	0.3118679923
+UniRef50_UPI00037E3D3C: hypothetical protein, partial|unclassified	0.3118679923
+UniRef50_UPI00036A0C85: resolvase	0.3118672477
+UniRef50_UPI00036A0C85: resolvase|unclassified	0.3118672477
+UniRef50_Q2S8T1	0.3118671439
+UniRef50_Q2S8T1|unclassified	0.3118671439
+UniRef50_UPI0003B2EC76: D-arabinose 5-phosphate isomerase	0.3118550294
+UniRef50_UPI0003B2EC76: D-arabinose 5-phosphate isomerase|unclassified	0.3118550294
+UniRef50_S6VCF5: ABC transporter permease	0.3118236073
+UniRef50_S6VCF5: ABC transporter permease|unclassified	0.3118236073
+UniRef50_UPI00047A3C16: ABC transporter ATP-binding protein	0.3118198676
+UniRef50_UPI00047A3C16: ABC transporter ATP-binding protein|unclassified	0.3118198676
+UniRef50_UPI00036966F4: phage baseplate protein	0.3117983292
+UniRef50_UPI00036966F4: phage baseplate protein|unclassified	0.3117983292
+UniRef50_UPI0002B94CAD: hypothetical protein, partial	0.3117830509
+UniRef50_UPI0002B94CAD: hypothetical protein, partial|unclassified	0.3117830509
+UniRef50_Q72JJ7: Ribonuclease J	0.3117734569
+UniRef50_Q72JJ7: Ribonuclease J|unclassified	0.3117734569
+UniRef50_UPI00040CD740: hypothetical protein	0.3117663132
+UniRef50_UPI00040CD740: hypothetical protein|unclassified	0.3117663132
+UniRef50_K1ABT4: Competence protein CglB (Fragment)	0.3117287163
+UniRef50_K1ABT4: Competence protein CglB (Fragment)|unclassified	0.3117287163
+UniRef50_W7ZK36: FMN reductase, NADPH-dependent	0.3117205540
+UniRef50_W7ZK36: FMN reductase, NADPH-dependent|unclassified	0.3117205540
+UniRef50_X1HB38: Marine sediment metagenome DNA, contig: S03H2_S08157 (Fragment)	0.3116157549
+UniRef50_X1HB38: Marine sediment metagenome DNA, contig: S03H2_S08157 (Fragment)|unclassified	0.3116157549
+UniRef50_X6GWU0: AsnC family transcriptional regulator	0.3116121132
+UniRef50_X6GWU0: AsnC family transcriptional regulator|unclassified	0.3116121132
+UniRef50_A0A021VLD8	0.3115868242
+UniRef50_A0A021VLD8|unclassified	0.3115868242
+UniRef50_UPI00046F223A: hypothetical protein, partial	0.3115800167
+UniRef50_UPI00046F223A: hypothetical protein, partial|unclassified	0.3115800167
+UniRef50_M2VKA2: Cytochrome b561	0.3115778299
+UniRef50_M2VKA2: Cytochrome b561|unclassified	0.3115778299
+UniRef50_Q5D1I1: GacS (Fragment)	0.3115777555
+UniRef50_Q5D1I1: GacS (Fragment)|unclassified	0.3115777555
+UniRef50_V8PXN3	0.3115594450
+UniRef50_V8PXN3|unclassified	0.3115594450
+UniRef50_D2ZMA7	0.3115573868
+UniRef50_D2ZMA7|unclassified	0.3115573868
+UniRef50_I0C5N7: Nitrogen regulation protein NIFR3	0.3115486854
+UniRef50_I0C5N7: Nitrogen regulation protein NIFR3|unclassified	0.3115486854
+UniRef50_P45947: Protein ArsC	0.3115327875
+UniRef50_P45947: Protein ArsC|unclassified	0.3115327875
+UniRef50_UPI00034D20EA: cytochrome BD ubiquinol oxidase subunit I	0.3115076119
+UniRef50_UPI00034D20EA: cytochrome BD ubiquinol oxidase subunit I|unclassified	0.3115076119
+UniRef50_I1ETG1	0.3114945300
+UniRef50_I1ETG1|unclassified	0.3114945300
+UniRef50_UPI00045E611A: cytidine deaminase	0.3114821370
+UniRef50_UPI00045E611A: cytidine deaminase|unclassified	0.3114821370
+UniRef50_G0LRQ0: Serine-aspartate repeat-containing protein D	0.3114294612
+UniRef50_G0LRQ0: Serine-aspartate repeat-containing protein D|g__Staphylococcus.s__Staphylococcus_aureus	0.3114294612
+UniRef50_UPI00037FF3C6: peroxidase, partial	0.3113863347
+UniRef50_UPI00037FF3C6: peroxidase, partial|unclassified	0.3113863347
+UniRef50_X4ZGK2: Arsenate reductase-like protein	0.3113774120
+UniRef50_X4ZGK2: Arsenate reductase-like protein|unclassified	0.3113774120
+UniRef50_UPI00047BC95C: N-formylglutamate amidohydrolase	0.3113759087
+UniRef50_UPI00047BC95C: N-formylglutamate amidohydrolase|unclassified	0.3113759087
+UniRef50_X0PHB7: Substrate-specific component BioY of biotin ECF transporter	0.3113633544
+UniRef50_X0PHB7: Substrate-specific component BioY of biotin ECF transporter|unclassified	0.3113633544
+UniRef50_V6YPB4	0.3113595292
+UniRef50_V6YPB4|unclassified	0.3113595292
+UniRef50_Q6NCE2	0.3113542809
+UniRef50_Q6NCE2|unclassified	0.3113542809
+UniRef50_A0L7P3: Type III pantothenate kinase	0.3113488680
+UniRef50_A0L7P3: Type III pantothenate kinase|unclassified	0.3113488680
+UniRef50_P12046: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.3113304707
+UniRef50_P12046: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.3113304707
+UniRef50_UPI00047A7DC3: sodium:proton antiporter	0.3112992132
+UniRef50_UPI00047A7DC3: sodium:proton antiporter|unclassified	0.3112992132
+UniRef50_U1D725	0.3112922597
+UniRef50_U1D725|unclassified	0.3112922597
+UniRef50_J3KY35	0.3112819252
+UniRef50_J3KY35|unclassified	0.3112819252
+UniRef50_R4GKT3	0.3112651153
+UniRef50_R4GKT3|unclassified	0.3112651153
+UniRef50_C2S923	0.3112545060
+UniRef50_C2S923|unclassified	0.3112545060
+UniRef50_UPI000467BAA9: alcohol dehydrogenase	0.3112508113
+UniRef50_UPI000467BAA9: alcohol dehydrogenase|unclassified	0.3112508113
+UniRef50_A0QMJ3: Virulence factor Mce family protein	0.3112182402
+UniRef50_A0QMJ3: Virulence factor Mce family protein|unclassified	0.3112182402
+UniRef50_UPI0004752602: hypothetical protein, partial	0.3112133800
+UniRef50_UPI0004752602: hypothetical protein, partial|unclassified	0.3112133800
+UniRef50_W0Z1T3	0.3111994570
+UniRef50_W0Z1T3|unclassified	0.3111994570
+UniRef50_UPI0003ADDF5D: PREDICTED: spidroin-2-like	0.3111686785
+UniRef50_UPI0003ADDF5D: PREDICTED: spidroin-2-like|unclassified	0.3111686785
+UniRef50_U6HZU1: Heat shock protein 70	0.3111376859
+UniRef50_U6HZU1: Heat shock protein 70|unclassified	0.3111376859
+UniRef50_UPI00036AE044: hypothetical protein, partial	0.3110738736
+UniRef50_UPI00036AE044: hypothetical protein, partial|unclassified	0.3110738736
+UniRef50_D6T1N1	0.3110566002
+UniRef50_D6T1N1|unclassified	0.3110566002
+UniRef50_UPI00046A7258: hypothetical protein	0.3110558066
+UniRef50_UPI00046A7258: hypothetical protein|unclassified	0.3110558066
+UniRef50_Q2AC94	0.3110494000
+UniRef50_Q2AC94|unclassified	0.3110494000
+UniRef50_UPI0002626035: N-acylamino acid racemase	0.3109870377
+UniRef50_UPI0002626035: N-acylamino acid racemase|unclassified	0.3109870377
+UniRef50_A0A037D1G4	0.3109624396
+UniRef50_A0A037D1G4|unclassified	0.3109624396
+UniRef50_UPI000476424B: glycerol-3-phosphate ABC transporter ATPase	0.3109605704
+UniRef50_UPI000476424B: glycerol-3-phosphate ABC transporter ATPase|unclassified	0.3109605704
+UniRef50_Q88P81: UPF0213 protein PP_0972	0.3109453967
+UniRef50_Q88P81: UPF0213 protein PP_0972|unclassified	0.3109453967
+UniRef50_UPI00016C59CC: ABC-type multidrug transport system, ATPase component, partial	0.3109335108
+UniRef50_UPI00016C59CC: ABC-type multidrug transport system, ATPase component, partial|unclassified	0.3109335108
+UniRef50_N6Z5D6: MaoC domain-containing protein dehydratase	0.3109195797
+UniRef50_N6Z5D6: MaoC domain-containing protein dehydratase|unclassified	0.3109195797
+UniRef50_D3F8L5	0.3108781301
+UniRef50_D3F8L5|unclassified	0.3108781301
+UniRef50_B6B2R6	0.3108761038
+UniRef50_B6B2R6|unclassified	0.3108761038
+UniRef50_UPI000382498F: hypothetical protein, partial	0.3108751697
+UniRef50_UPI000382498F: hypothetical protein, partial|unclassified	0.3108751697
+UniRef50_UPI000379397E: hypothetical protein	0.3108395824
+UniRef50_UPI000379397E: hypothetical protein|unclassified	0.3108395824
+UniRef50_C9XW09	0.3108153813
+UniRef50_C9XW09|unclassified	0.3108153813
+UniRef50_UPI00046775A5: hypothetical protein, partial	0.3107477046
+UniRef50_UPI00046775A5: hypothetical protein, partial|unclassified	0.3107477046
+UniRef50_UPI00047E5BE4: hypothetical protein	0.3107235203
+UniRef50_UPI00047E5BE4: hypothetical protein|unclassified	0.3107235203
+UniRef50_M5ECI1: Genomic scaffold, msy_sf_14	0.3107034767
+UniRef50_M5ECI1: Genomic scaffold, msy_sf_14|unclassified	0.3107034767
+UniRef50_W2UV62	0.3106914391
+UniRef50_W2UV62|unclassified	0.3106914391
+UniRef50_UPI0003C7B151: hypothetical protein, partial	0.3106887647
+UniRef50_UPI0003C7B151: hypothetical protein, partial|unclassified	0.3106887647
+UniRef50_E3F5W5: PRC-barrel domain-containing protein	0.3106855303
+UniRef50_E3F5W5: PRC-barrel domain-containing protein|unclassified	0.3106855303
+UniRef50_C4YAM3	0.3106840382
+UniRef50_C4YAM3|unclassified	0.3106840382
+UniRef50_C6WWL8	0.3106679066
+UniRef50_C6WWL8|unclassified	0.3106679066
+UniRef50_T0PPT5	0.3106613350
+UniRef50_T0PPT5|unclassified	0.3106613350
+UniRef50_Q3TNM4	0.3106555279
+UniRef50_Q3TNM4|unclassified	0.3106555279
+UniRef50_C1N6B0: Predicted protein	0.3106522192
+UniRef50_C1N6B0: Predicted protein|unclassified	0.3106522192
+UniRef50_T0ZDV8: Short chain dehydrogenase (Fragment)	0.3106437781
+UniRef50_T0ZDV8: Short chain dehydrogenase (Fragment)|unclassified	0.3106437781
+UniRef50_B2S544: NADH-quinone oxidoreductase subunit B	0.3106010051
+UniRef50_B2S544: NADH-quinone oxidoreductase subunit B|unclassified	0.3106010051
+UniRef50_T2LAB1: tRNA 2-thiocytidine biosynthesis protein TtcA	0.3106002039
+UniRef50_T2LAB1: tRNA 2-thiocytidine biosynthesis protein TtcA|unclassified	0.3106002039
+UniRef50_UPI00029A9E80: 5,10-methylenetetrahydrofolate reductase, partial	0.3105959912
+UniRef50_UPI00029A9E80: 5,10-methylenetetrahydrofolate reductase, partial|unclassified	0.3105959912
+UniRef50_A0RCC6	0.3105256432
+UniRef50_A0RCC6|unclassified	0.3105256432
+UniRef50_G4B7N4	0.3105145650
+UniRef50_G4B7N4|unclassified	0.3105145650
+UniRef50_UPI000381384D: hypothetical protein	0.3104919954
+UniRef50_UPI000381384D: hypothetical protein|unclassified	0.3104919954
+UniRef50_E6REC8	0.3104672380
+UniRef50_E6REC8|unclassified	0.3104672380
+UniRef50_A0A057ZZ67: Oxidoreductase	0.3104644315
+UniRef50_A0A057ZZ67: Oxidoreductase|unclassified	0.3104644315
+UniRef50_A8YXG4: Xanthine phosphoribosyltransferase	0.3104561577
+UniRef50_A8YXG4: Xanthine phosphoribosyltransferase|unclassified	0.3104561577
+UniRef50_X1HIB3: Marine sediment metagenome DNA, contig: S03H2_S03071 (Fragment)	0.3104267348
+UniRef50_X1HIB3: Marine sediment metagenome DNA, contig: S03H2_S03071 (Fragment)|unclassified	0.3104267348
+UniRef50_UPI00041EEA6A: hypothetical protein	0.3104240652
+UniRef50_UPI00041EEA6A: hypothetical protein|unclassified	0.3104240652
+UniRef50_J8RWS8: Sigma E regulatory protein MucB/RseB	0.3104158614
+UniRef50_J8RWS8: Sigma E regulatory protein MucB/RseB|unclassified	0.3104158614
+UniRef50_B0UQE4	0.3104090975
+UniRef50_B0UQE4|unclassified	0.3104090975
+UniRef50_Q2KUE4: Adenine phosphoribosyltransferase	0.3103908282
+UniRef50_Q2KUE4: Adenine phosphoribosyltransferase|unclassified	0.3103908282
+UniRef50_UPI0003B339B4: hypothetical protein	0.3103905135
+UniRef50_UPI0003B339B4: hypothetical protein|unclassified	0.3103905135
+UniRef50_UPI0003728C74: hypothetical protein	0.3103826752
+UniRef50_UPI0003728C74: hypothetical protein|unclassified	0.3103826752
+UniRef50_A3TXS5	0.3103736736
+UniRef50_A3TXS5|unclassified	0.3103736736
+UniRef50_A3VDP5	0.3103153507
+UniRef50_A3VDP5|unclassified	0.3103153507
+UniRef50_UPI0004713DF3: hypothetical protein	0.3102607202
+UniRef50_UPI0004713DF3: hypothetical protein|unclassified	0.3102607202
+UniRef50_UPI0003EC0C27: PREDICTED: 3-mercaptopyruvate sulfurtransferase	0.3102506780
+UniRef50_UPI0003EC0C27: PREDICTED: 3-mercaptopyruvate sulfurtransferase|unclassified	0.3102506780
+UniRef50_E9DL13	0.3102442473
+UniRef50_E9DL13|unclassified	0.3102442473
+UniRef50_UPI0003A6CDED: hypothetical protein	0.3101256116
+UniRef50_UPI0003A6CDED: hypothetical protein|unclassified	0.3101256116
+UniRef50_D7A107	0.3101123377
+UniRef50_D7A107|unclassified	0.3101123377
+UniRef50_L0ETF9: Sulfur acceptor protein SufE	0.3100865317
+UniRef50_L0ETF9: Sulfur acceptor protein SufE|unclassified	0.3100865317
+UniRef50_UPI00035D0FF8: hypothetical protein	0.3100859203
+UniRef50_UPI00035D0FF8: hypothetical protein|unclassified	0.3100859203
+UniRef50_X1MWH9: Marine sediment metagenome DNA, contig: S06H3_C03716	0.3100766026
+UniRef50_X1MWH9: Marine sediment metagenome DNA, contig: S06H3_C03716|unclassified	0.3100766026
+UniRef50_A9B1M6	0.3100668206
+UniRef50_A9B1M6|unclassified	0.3100668206
+UniRef50_F4BWI8: Conserved domain protein	0.3100035326
+UniRef50_F4BWI8: Conserved domain protein|unclassified	0.3100035326
+UniRef50_Q4THD0: Chromosome undetermined SCAF3031, whole genome shotgun sequence. (Fragment)	0.3099958880
+UniRef50_Q4THD0: Chromosome undetermined SCAF3031, whole genome shotgun sequence. (Fragment)|unclassified	0.3099958880
+UniRef50_W4UAM7	0.3099890784
+UniRef50_W4UAM7|unclassified	0.3099890784
+UniRef50_UPI0003B6DD73: amno acid ABC transporter ATPase	0.3099740091
+UniRef50_UPI0003B6DD73: amno acid ABC transporter ATPase|unclassified	0.3099740091
+UniRef50_UPI00034B96BB: hypothetical protein	0.3099701724
+UniRef50_UPI00034B96BB: hypothetical protein|unclassified	0.3099701724
+UniRef50_I3SD94	0.3099029423
+UniRef50_I3SD94|unclassified	0.3099029423
+UniRef50_UPI000377DDD9: hypothetical protein	0.3098547483
+UniRef50_UPI000377DDD9: hypothetical protein|unclassified	0.3098547483
+UniRef50_D8UER7	0.3098512706
+UniRef50_D8UER7|unclassified	0.3098512706
+UniRef50_UPI000479F301: hypothetical protein	0.3098224211
+UniRef50_UPI000479F301: hypothetical protein|unclassified	0.3098224211
+UniRef50_UPI000468B82F: hypothetical protein	0.3098218343
+UniRef50_UPI000468B82F: hypothetical protein|unclassified	0.3098218343
+UniRef50_Q1GXG2: PKHD-type hydroxylase Mfla_0096	0.3098065629
+UniRef50_Q1GXG2: PKHD-type hydroxylase Mfla_0096|unclassified	0.3098065629
+UniRef50_Q5HHU7	0.3097684632
+UniRef50_Q5HHU7|unclassified	0.3097684632
+UniRef50_Q1M667: Blue-light-activated histidine kinase	0.3097661527
+UniRef50_Q1M667: Blue-light-activated histidine kinase|unclassified	0.3097661527
+UniRef50_UPI00047136FE: hypothetical protein	0.3097458477
+UniRef50_UPI00047136FE: hypothetical protein|unclassified	0.3097458477
+UniRef50_A3X9C1	0.3096952074
+UniRef50_A3X9C1|unclassified	0.3096952074
+UniRef50_A3V0U0: SlyX protein, putative	0.3096779591
+UniRef50_A3V0U0: SlyX protein, putative|unclassified	0.3096779591
+UniRef50_I3I7G6	0.3096527025
+UniRef50_I3I7G6|unclassified	0.3096527025
+UniRef50_L5WS44: 2-octaprenyl-6-methoxyphenyl hydroxylase (Fragment)	0.3096405856
+UniRef50_L5WS44: 2-octaprenyl-6-methoxyphenyl hydroxylase (Fragment)|unclassified	0.3096405856
+UniRef50_UPI000367A8BC: glutathione ABC transporter ATP-binding protein	0.3096018000
+UniRef50_UPI000367A8BC: glutathione ABC transporter ATP-binding protein|unclassified	0.3096018000
+UniRef50_I4EB76: Replication protein C	0.3095769912
+UniRef50_I4EB76: Replication protein C|unclassified	0.3095769912
+UniRef50_UPI0003B2F6EF: hypothetical protein	0.3095256060
+UniRef50_UPI0003B2F6EF: hypothetical protein|unclassified	0.3095256060
+UniRef50_UPI00047594DD: homocysteine methyltransferase, partial	0.3095253650
+UniRef50_UPI00047594DD: homocysteine methyltransferase, partial|unclassified	0.3095253650
+UniRef50_UPI000373B8BB: hypothetical protein	0.3095071363
+UniRef50_UPI000373B8BB: hypothetical protein|unclassified	0.3095071363
+UniRef50_UPI0002556197: coproporphyrinogen III oxidase	0.3094811179
+UniRef50_UPI0002556197: coproporphyrinogen III oxidase|unclassified	0.3094811179
+UniRef50_H2JSH1	0.3094505785
+UniRef50_H2JSH1|unclassified	0.3094505785
+UniRef50_UPI000471D915: hypothetical protein	0.3094279358
+UniRef50_UPI000471D915: hypothetical protein|unclassified	0.3094279358
+UniRef50_K9AY44: AgrC protein	0.3093589103
+UniRef50_K9AY44: AgrC protein|unclassified	0.3093589103
+UniRef50_UPI0002192FA3: lysine exporter protein LysE/YggA, partial	0.3093317084
+UniRef50_UPI0002192FA3: lysine exporter protein LysE/YggA, partial|unclassified	0.3093317084
+UniRef50_UPI00031CF99F: hypothetical protein	0.3092854484
+UniRef50_UPI00031CF99F: hypothetical protein|unclassified	0.3092854484
+UniRef50_T0CJ91	0.3092806171
+UniRef50_T0CJ91|unclassified	0.3092806171
+UniRef50_UPI0003B45259: alkaline phosphatase	0.3092475036
+UniRef50_UPI0003B45259: alkaline phosphatase|unclassified	0.3092475036
+UniRef50_UPI0001E8E9B9: PTS system, cellobiose-specific IIC component, partial	0.3092162874
+UniRef50_UPI0001E8E9B9: PTS system, cellobiose-specific IIC component, partial|unclassified	0.3092162874
+UniRef50_UPI000471685A: membrane protein	0.3092158185
+UniRef50_UPI000471685A: membrane protein|unclassified	0.3092158185
+UniRef50_K1SBD6: Alkyl hydroperoxide reductase subunit F (Fragment)	0.3092129218
+UniRef50_K1SBD6: Alkyl hydroperoxide reductase subunit F (Fragment)|unclassified	0.3092129218
+UniRef50_Q5E345: Pyridoxamine kinase	0.3091561328
+UniRef50_Q5E345: Pyridoxamine kinase|unclassified	0.3091561328
+UniRef50_UPI000468BED5: MULTISPECIES: hypothetical protein, partial	0.3091243364
+UniRef50_UPI000468BED5: MULTISPECIES: hypothetical protein, partial|unclassified	0.3091243364
+UniRef50_Q9RUP8: Isoleucine--tRNA ligase	0.3091190108
+UniRef50_Q9RUP8: Isoleucine--tRNA ligase|g__Deinococcus.s__Deinococcus_radiodurans	0.3091190108
+UniRef50_W7YQ98: Protein-export membrane protein SecD	0.3091122937
+UniRef50_W7YQ98: Protein-export membrane protein SecD|unclassified	0.3091122937
+UniRef50_B9EAD3	0.3090905723
+UniRef50_B9EAD3|unclassified	0.3090905723
+UniRef50_K2BFH5	0.3090770447
+UniRef50_K2BFH5|unclassified	0.3090770447
+UniRef50_UPI000382579F: hypothetical protein	0.3090680782
+UniRef50_UPI000382579F: hypothetical protein|unclassified	0.3090680782
+UniRef50_UPI00035FC63B: hypothetical protein	0.3090354695
+UniRef50_UPI00035FC63B: hypothetical protein|unclassified	0.3090354695
+UniRef50_UPI0003F4F408: hypothetical protein	0.3089892745
+UniRef50_UPI0003F4F408: hypothetical protein|unclassified	0.3089892745
+UniRef50_UPI000474972C: molybdenum ABC transporter substrate-binding protein	0.3089823361
+UniRef50_UPI000474972C: molybdenum ABC transporter substrate-binding protein|unclassified	0.3089823361
+UniRef50_UPI00030DD393: hypothetical protein	0.3089546759
+UniRef50_UPI00030DD393: hypothetical protein|unclassified	0.3089546759
+UniRef50_R8B1L6	0.3089529715
+UniRef50_R8B1L6|unclassified	0.3089529715
+UniRef50_UPI000375EC3F: hypothetical protein	0.3089444961
+UniRef50_UPI000375EC3F: hypothetical protein|unclassified	0.3089444961
+UniRef50_R5NAA4	0.3089162920
+UniRef50_R5NAA4|unclassified	0.3089162920
+UniRef50_A0A017HCQ2	0.3089133656
+UniRef50_A0A017HCQ2|unclassified	0.3089133656
+UniRef50_UPI000464C934: hypothetical protein	0.3088897915
+UniRef50_UPI000464C934: hypothetical protein|unclassified	0.3088897915
+UniRef50_UPI0003714237: hypothetical protein	0.3088788079
+UniRef50_UPI0003714237: hypothetical protein|unclassified	0.3088788079
+UniRef50_D8TPB8	0.3088409364
+UniRef50_D8TPB8|unclassified	0.3088409364
+UniRef50_UPI00030EB876: hypothetical protein	0.3088191642
+UniRef50_UPI00030EB876: hypothetical protein|unclassified	0.3088191642
+UniRef50_UPI0003A831EB: hypothetical protein	0.3088185566
+UniRef50_UPI0003A831EB: hypothetical protein|unclassified	0.3088185566
+UniRef50_W7V2F0: Transposase	0.3088116310
+UniRef50_W7V2F0: Transposase|unclassified	0.3088116310
+UniRef50_C5Y1C5	0.3087940105
+UniRef50_C5Y1C5|unclassified	0.3087940105
+UniRef50_J2IPU6	0.3087623376
+UniRef50_J2IPU6|unclassified	0.3087623376
+UniRef50_J8TIS7	0.3087369370
+UniRef50_J8TIS7|unclassified	0.3087369370
+UniRef50_U6GW35: DnaJ domain-containing protein, putative	0.3087163101
+UniRef50_U6GW35: DnaJ domain-containing protein, putative|unclassified	0.3087163101
+UniRef50_I6GPQ5: Protein ygiW	0.3087012235
+UniRef50_I6GPQ5: Protein ygiW|unclassified	0.3087012235
+UniRef50_UPI0003679109: hypothetical protein	0.3086914611
+UniRef50_UPI0003679109: hypothetical protein|unclassified	0.3086914611
+UniRef50_Q2BR88	0.3086852168
+UniRef50_Q2BR88|unclassified	0.3086852168
+UniRef50_UPI0003B41204: peptide ABC transporter permease	0.3086181096
+UniRef50_UPI0003B41204: peptide ABC transporter permease|unclassified	0.3086181096
+UniRef50_D7I3U8: Dipeptide transport system permease protein	0.3085930131
+UniRef50_D7I3U8: Dipeptide transport system permease protein|unclassified	0.3085930131
+UniRef50_UPI0002192B8A: rod shape-determining protein MreB	0.3085927369
+UniRef50_UPI0002192B8A: rod shape-determining protein MreB|unclassified	0.3085927369
+UniRef50_UPI0003613F90: hypothetical protein	0.3085875699
+UniRef50_UPI0003613F90: hypothetical protein|unclassified	0.3085875699
+UniRef50_G0PRZ1	0.3085696781
+UniRef50_G0PRZ1|unclassified	0.3085696781
+UniRef50_UPI00037344AD: hypothetical protein	0.3085602232
+UniRef50_UPI00037344AD: hypothetical protein|unclassified	0.3085602232
+UniRef50_Y0QP15	0.3084619445
+UniRef50_Y0QP15|unclassified	0.3084619445
+UniRef50_UPI000468C802: peptidase U32	0.3084113497
+UniRef50_UPI000468C802: peptidase U32|unclassified	0.3084113497
+UniRef50_UPI0004675809: hypothetical protein	0.3084037886
+UniRef50_UPI0004675809: hypothetical protein|unclassified	0.3084037886
+UniRef50_F3SUH3	0.3083637071
+UniRef50_F3SUH3|unclassified	0.3083637071
+UniRef50_M1ZKL3	0.3082215275
+UniRef50_M1ZKL3|unclassified	0.3082215275
+UniRef50_UPI00031469E2: hypothetical protein	0.3081874306
+UniRef50_UPI00031469E2: hypothetical protein|unclassified	0.3081874306
+UniRef50_F7ZG85	0.3081691218
+UniRef50_F7ZG85|unclassified	0.3081691218
+UniRef50_UPI000361DB5D: hypothetical protein	0.3081679247
+UniRef50_UPI000361DB5D: hypothetical protein|unclassified	0.3081679247
+UniRef50_A0A058ZLZ9	0.3081521492
+UniRef50_A0A058ZLZ9|unclassified	0.3081521492
+UniRef50_R5Y9I2	0.3080830327
+UniRef50_R5Y9I2|unclassified	0.3080830327
+UniRef50_B8JAR2: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.3080810000
+UniRef50_B8JAR2: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.3080810000
+UniRef50_UPI0003795F6B: hypothetical protein	0.3080276708
+UniRef50_UPI0003795F6B: hypothetical protein|unclassified	0.3080276708
+UniRef50_J9QWN8	0.3079923012
+UniRef50_J9QWN8|unclassified	0.3079923012
+UniRef50_J9NTF4	0.3079895215
+UniRef50_J9NTF4|unclassified	0.3079895215
+UniRef50_F3H7U6: C4-dicarboxylate transport system permease large protein (Fragment)	0.3079874932
+UniRef50_F3H7U6: C4-dicarboxylate transport system permease large protein (Fragment)|unclassified	0.3079874932
+UniRef50_K7EGT5	0.3079863921
+UniRef50_K7EGT5|unclassified	0.3079863921
+UniRef50_UPI0003B372E2: dihydrofolate reductase	0.3079746719
+UniRef50_UPI0003B372E2: dihydrofolate reductase|unclassified	0.3079746719
+UniRef50_Q9XE67	0.3079585845
+UniRef50_Q9XE67|unclassified	0.3079585845
+UniRef50_UPI00047BB844: hypothetical protein	0.3079521076
+UniRef50_UPI00047BB844: hypothetical protein|unclassified	0.3079521076
+UniRef50_V8KZ88	0.3079181371
+UniRef50_V8KZ88|unclassified	0.3079181371
+UniRef50_UPI0002558C46: sterol-binding domain-containing protein	0.3079179549
+UniRef50_UPI0002558C46: sterol-binding domain-containing protein|unclassified	0.3079179549
+UniRef50_Q7XJY7: OSJNBb0088C09.4 protein	0.3079155036
+UniRef50_Q7XJY7: OSJNBb0088C09.4 protein|unclassified	0.3079155036
+UniRef50_UPI0003A88EB6: hypothetical protein	0.3078837919
+UniRef50_UPI0003A88EB6: hypothetical protein|unclassified	0.3078837919
+UniRef50_UPI00035C6AF7: hypothetical protein	0.3078832794
+UniRef50_UPI00035C6AF7: hypothetical protein|unclassified	0.3078832794
+UniRef50_G5G2B6	0.3078597507
+UniRef50_G5G2B6|unclassified	0.3078597507
+UniRef50_UPI000377FA81: hypothetical protein	0.3078281376
+UniRef50_UPI000377FA81: hypothetical protein|unclassified	0.3078281376
+UniRef50_UPI00016B22E1: carbamate kinase, partial	0.3077914951
+UniRef50_UPI00016B22E1: carbamate kinase, partial|unclassified	0.3077914951
+UniRef50_UPI00047C844C: hypothetical protein	0.3077872105
+UniRef50_UPI00047C844C: hypothetical protein|unclassified	0.3077872105
+UniRef50_B7ELK9: cDNA clone:J023144D17, full insert sequence	0.3077619920
+UniRef50_B7ELK9: cDNA clone:J023144D17, full insert sequence|unclassified	0.3077619920
+UniRef50_R5HE59	0.3077402961
+UniRef50_R5HE59|unclassified	0.3077402961
+UniRef50_E1Z776	0.3076923077
+UniRef50_E1Z776|unclassified	0.3076923077
+UniRef50_UPI00047931A1: chemotaxis protein CheD	0.3076795432
+UniRef50_UPI00047931A1: chemotaxis protein CheD|unclassified	0.3076795432
+UniRef50_F7JSC8	0.3076561122
+UniRef50_F7JSC8|unclassified	0.3076561122
+UniRef50_H0DLI2	0.3076453208
+UniRef50_H0DLI2|unclassified	0.3076453208
+UniRef50_A0A024QHH0: Phosphoribosylformylglycinamidine synthase subunit PurS	0.3076446650
+UniRef50_A0A024QHH0: Phosphoribosylformylglycinamidine synthase subunit PurS|unclassified	0.3076446650
+UniRef50_A8ZUK6: Tyrosine--tRNA ligase	0.3075903897
+UniRef50_A8ZUK6: Tyrosine--tRNA ligase|unclassified	0.3075903897
+UniRef50_UPI0004758995: hypothetical protein	0.3075616081
+UniRef50_UPI0004758995: hypothetical protein|unclassified	0.3075616081
+UniRef50_Z7MA90	0.3075608358
+UniRef50_Z7MA90|unclassified	0.3075608358
+UniRef50_E7F7S5	0.3075451924
+UniRef50_E7F7S5|unclassified	0.3075451924
+UniRef50_A0A059LA30	0.3074078586
+UniRef50_A0A059LA30|unclassified	0.3074078586
+UniRef50_UPI0003787241: hypothetical protein	0.3073695256
+UniRef50_UPI0003787241: hypothetical protein|unclassified	0.3073695256
+UniRef50_UPI00036D9C4A: hypothetical protein	0.3073566572
+UniRef50_UPI00036D9C4A: hypothetical protein|unclassified	0.3073566572
+UniRef50_K5CST2: Branched chain amino acid ABC transporter nucleotide-binding protein/ATPase	0.3073264414
+UniRef50_K5CST2: Branched chain amino acid ABC transporter nucleotide-binding protein/ATPase|unclassified	0.3073264414
+UniRef50_UPI0003B704ED: hypothetical protein	0.3073214744
+UniRef50_UPI0003B704ED: hypothetical protein|unclassified	0.3073214744
+UniRef50_A0A024KD29	0.3072773282
+UniRef50_A0A024KD29|unclassified	0.3072773282
+UniRef50_UPI0003B470E0: 50S ribosomal protein L17	0.3072723133
+UniRef50_UPI0003B470E0: 50S ribosomal protein L17|unclassified	0.3072723133
+UniRef50_K8P0R2	0.3072247805
+UniRef50_K8P0R2|unclassified	0.3072247805
+UniRef50_H3XR21	0.3072160219
+UniRef50_H3XR21|unclassified	0.3072160219
+UniRef50_UPI000370FB00: NIPSNAP family containing protein	0.3071902751
+UniRef50_UPI000370FB00: NIPSNAP family containing protein|unclassified	0.3071902751
+UniRef50_U3ARQ3	0.3071632581
+UniRef50_U3ARQ3|unclassified	0.3071632581
+UniRef50_Q1H4S2: Transcriptional regulator, BolA protein family	0.3071377921
+UniRef50_Q1H4S2: Transcriptional regulator, BolA protein family|unclassified	0.3071377921
+UniRef50_I7N463	0.3071339137
+UniRef50_I7N463|unclassified	0.3071339137
+UniRef50_UPI0002899294: branched-chain amino acid aminotransferase, partial	0.3071224599
+UniRef50_UPI0002899294: branched-chain amino acid aminotransferase, partial|unclassified	0.3071224599
+UniRef50_V1H102	0.3070965805
+UniRef50_V1H102|unclassified	0.3070965805
+UniRef50_N6V9I1	0.3070943841
+UniRef50_N6V9I1|unclassified	0.3070943841
+UniRef50_Q650K7: Tyrosine--tRNA ligase	0.3070914226
+UniRef50_Q650K7: Tyrosine--tRNA ligase|unclassified	0.3070914226
+UniRef50_Q1QU31	0.3070717756
+UniRef50_Q1QU31|unclassified	0.3070717756
+UniRef50_Q96MJ9: cDNA FLJ32252 fis, clone PROST1000167, weakly similar to SYNAPSIN I	0.3070308940
+UniRef50_Q96MJ9: cDNA FLJ32252 fis, clone PROST1000167, weakly similar to SYNAPSIN I|unclassified	0.3070308940
+UniRef50_W7DFU3	0.3070266843
+UniRef50_W7DFU3|unclassified	0.3070266843
+UniRef50_S4YSN2: NAD(P) transhydrogenase subunit alpha	0.3070095761
+UniRef50_S4YSN2: NAD(P) transhydrogenase subunit alpha|unclassified	0.3070095761
+UniRef50_G2I665: Transposase	0.3069816703
+UniRef50_G2I665: Transposase|unclassified	0.3069816703
+UniRef50_UPI000376418A: xanthine phosphoribosyltransferase	0.3069703755
+UniRef50_UPI000376418A: xanthine phosphoribosyltransferase|unclassified	0.3069703755
+UniRef50_C1DLW9	0.3069367710
+UniRef50_C1DLW9|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.3069367710
+UniRef50_U8MYA9	0.3069312892
+UniRef50_U8MYA9|unclassified	0.3069312892
+UniRef50_W0ACK7	0.3069188734
+UniRef50_W0ACK7|unclassified	0.3069188734
+UniRef50_V1ZDG7: Putative fimbrial chaperone protein StfD	0.3069034575
+UniRef50_V1ZDG7: Putative fimbrial chaperone protein StfD|unclassified	0.3069034575
+UniRef50_W6MDA3	0.3068942105
+UniRef50_W6MDA3|unclassified	0.3068942105
+UniRef50_Q8ENW6: N-acetyl-glucosamine catabolism	0.3068878254
+UniRef50_Q8ENW6: N-acetyl-glucosamine catabolism|unclassified	0.3068878254
+UniRef50_W1XTY5: N-acetylglucosamine-6-phosphate deacetylase (Fragment)	0.3068775854
+UniRef50_W1XTY5: N-acetylglucosamine-6-phosphate deacetylase (Fragment)|unclassified	0.3068775854
+UniRef50_G5MH51	0.3068492360
+UniRef50_G5MH51|unclassified	0.3068492360
+UniRef50_W2UWW6	0.3068329907
+UniRef50_W2UWW6|unclassified	0.3068329907
+UniRef50_A0A010RX66: FeS assembly SUF system protein SufT	0.3068200409
+UniRef50_A0A010RX66: FeS assembly SUF system protein SufT|unclassified	0.3068200409
+UniRef50_G1Y3U3	0.3068087938
+UniRef50_G1Y3U3|unclassified	0.3068087938
+UniRef50_K1ZWB6	0.3068038098
+UniRef50_K1ZWB6|unclassified	0.3068038098
+UniRef50_E2NSX7	0.3068008784
+UniRef50_E2NSX7|unclassified	0.3068008784
+UniRef50_C1MMJ8: Predicted protein	0.3067981425
+UniRef50_C1MMJ8: Predicted protein|unclassified	0.3067981425
+UniRef50_N1QCI2	0.3067942674
+UniRef50_N1QCI2|unclassified	0.3067942674
+UniRef50_H1XLJ9: ArsC family protein	0.3067868869
+UniRef50_H1XLJ9: ArsC family protein|unclassified	0.3067868869
+UniRef50_Q6MCM4	0.3067601875
+UniRef50_Q6MCM4|unclassified	0.3067601875
+UniRef50_UPI00046A9CA2: 4-hydroxybenzoyl-CoA thioesterase	0.3067534407
+UniRef50_UPI00046A9CA2: 4-hydroxybenzoyl-CoA thioesterase|unclassified	0.3067534407
+UniRef50_B2A0C1: ABC-2 type transporter	0.3067523130
+UniRef50_B2A0C1: ABC-2 type transporter|unclassified	0.3067523130
+UniRef50_E0TBL9	0.3067377488
+UniRef50_E0TBL9|unclassified	0.3067377488
+UniRef50_UPI000374C07B: hypothetical protein, partial	0.3067139798
+UniRef50_UPI000374C07B: hypothetical protein, partial|unclassified	0.3067139798
+UniRef50_A9DR37	0.3066924227
+UniRef50_A9DR37|unclassified	0.3066924227
+UniRef50_X1IQM9: Marine sediment metagenome DNA, contig: S03H2_S22010 (Fragment)	0.3066917715
+UniRef50_X1IQM9: Marine sediment metagenome DNA, contig: S03H2_S22010 (Fragment)|unclassified	0.3066917715
+UniRef50_UPI00038C3829	0.3066582334
+UniRef50_UPI00038C3829|unclassified	0.3066582334
+UniRef50_UPI0004682C9C: hypothetical protein, partial	0.3066488581
+UniRef50_UPI0004682C9C: hypothetical protein, partial|unclassified	0.3066488581
+UniRef50_V2D5R1: Cytochrome c nitrite reductase pentaheme subunit	0.3066443036
+UniRef50_V2D5R1: Cytochrome c nitrite reductase pentaheme subunit|unclassified	0.3066443036
+UniRef50_UPI0003A2B68C: transporter	0.3066186011
+UniRef50_UPI0003A2B68C: transporter|unclassified	0.3066186011
+UniRef50_UPI0003652A76: hypothetical protein, partial	0.3065976910
+UniRef50_UPI0003652A76: hypothetical protein, partial|unclassified	0.3065976910
+UniRef50_UPI00034A3BAD: hypothetical protein	0.3065895527
+UniRef50_UPI00034A3BAD: hypothetical protein|unclassified	0.3065895527
+UniRef50_U4RNQ3: TRAP transporter solute receptor, TAXI family protein (Fragment)	0.3065875450
+UniRef50_U4RNQ3: TRAP transporter solute receptor, TAXI family protein (Fragment)|unclassified	0.3065875450
+UniRef50_U3U3S6	0.3065685229
+UniRef50_U3U3S6|unclassified	0.3065685229
+UniRef50_A3M2F1: IcmB protein	0.3065603924
+UniRef50_A3M2F1: IcmB protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.3065603924
+UniRef50_P0DC16: Tagatose 1,6-diphosphate aldolase 2	0.3065590976
+UniRef50_P0DC16: Tagatose 1,6-diphosphate aldolase 2|unclassified	0.3065590976
+UniRef50_UPI000388D459: PREDICTED: mesoderm posterior protein 1-like	0.3065407793
+UniRef50_UPI000388D459: PREDICTED: mesoderm posterior protein 1-like|unclassified	0.3065407793
+UniRef50_U2W9U5: UPF0301 protein RS24_01332	0.3064595878
+UniRef50_U2W9U5: UPF0301 protein RS24_01332|unclassified	0.3064595878
+UniRef50_Q6LN15	0.3064484161
+UniRef50_Q6LN15|unclassified	0.3064484161
+UniRef50_UPI0003B2E9C4: transcriptional regulator	0.3064450386
+UniRef50_UPI0003B2E9C4: transcriptional regulator|unclassified	0.3064450386
+UniRef50_UPI000366628E: hypothetical protein	0.3064406297
+UniRef50_UPI000366628E: hypothetical protein|unclassified	0.3064406297
+UniRef50_UPI00005576F6: COG1484: DNA replication protein	0.3064181393
+UniRef50_UPI00005576F6: COG1484: DNA replication protein|unclassified	0.3064181393
+UniRef50_UPI000419C490: hypothetical protein	0.3063997475
+UniRef50_UPI000419C490: hypothetical protein|unclassified	0.3063997475
+UniRef50_UPI0004657E4B: hypothetical protein	0.3063824940
+UniRef50_UPI0004657E4B: hypothetical protein|unclassified	0.3063824940
+UniRef50_UPI0004731D91: hypothetical protein, partial	0.3063617471
+UniRef50_UPI0004731D91: hypothetical protein, partial|unclassified	0.3063617471
+UniRef50_L0I338	0.3063355321
+UniRef50_L0I338|unclassified	0.3063355321
+UniRef50_V7ABJ2: Branched-chain amino acid transport family protein	0.3063355321
+UniRef50_V7ABJ2: Branched-chain amino acid transport family protein|unclassified	0.3063355321
+UniRef50_UPI0002B45AB9	0.3062677166
+UniRef50_UPI0002B45AB9|unclassified	0.3062677166
+UniRef50_S5SY81: WGR domain-containing protein	0.3062288839
+UniRef50_S5SY81: WGR domain-containing protein|unclassified	0.3062288839
+UniRef50_X1VW07: Marine sediment metagenome DNA, contig: S12H4_S11682	0.3062072238
+UniRef50_X1VW07: Marine sediment metagenome DNA, contig: S12H4_S11682|unclassified	0.3062072238
+UniRef50_A4VG35	0.3062030121
+UniRef50_A4VG35|unclassified	0.3062030121
+UniRef50_Q7XWC2: OSJNBb0069N01.6 protein	0.3061841458
+UniRef50_Q7XWC2: OSJNBb0069N01.6 protein|unclassified	0.3061841458
+UniRef50_W5ITF6	0.3061819339
+UniRef50_W5ITF6|unclassified	0.3061819339
+UniRef50_UPI0004777372: competence protein ComG	0.3061777086
+UniRef50_UPI0004777372: competence protein ComG|unclassified	0.3061777086
+UniRef50_I7KM47	0.3061736351
+UniRef50_I7KM47|unclassified	0.3061736351
+UniRef50_M9W7E1	0.3061510125
+UniRef50_M9W7E1|unclassified	0.3061510125
+UniRef50_A0A018S5T2	0.3061053676
+UniRef50_A0A018S5T2|unclassified	0.3061053676
+UniRef50_A5N3K4: CTP synthase	0.3060909086
+UniRef50_A5N3K4: CTP synthase|unclassified	0.3060909086
+UniRef50_Q67N09: Shikimate kinase	0.3060398714
+UniRef50_Q67N09: Shikimate kinase|unclassified	0.3060398714
+UniRef50_UPI00046FDD9A: hypothetical protein, partial	0.3059892004
+UniRef50_UPI00046FDD9A: hypothetical protein, partial|unclassified	0.3059892004
+UniRef50_C4J5Q7	0.3059776030
+UniRef50_C4J5Q7|unclassified	0.3059776030
+UniRef50_Q6N6M8: Putative 3-methyladenine DNA glycosylase	0.3059689197
+UniRef50_Q6N6M8: Putative 3-methyladenine DNA glycosylase|unclassified	0.3059689197
+UniRef50_UPI000472CCCB: hypothetical protein, partial	0.3059066866
+UniRef50_UPI000472CCCB: hypothetical protein, partial|unclassified	0.3059066866
+UniRef50_UPI00037D35BE: hypothetical protein	0.3059040463
+UniRef50_UPI00037D35BE: hypothetical protein|unclassified	0.3059040463
+UniRef50_A6NK44: Glyoxalase domain-containing protein 5	0.3059036598
+UniRef50_A6NK44: Glyoxalase domain-containing protein 5|unclassified	0.3059036598
+UniRef50_UPI00017448B3: magnesium/cobalt transport protein	0.3059027054
+UniRef50_UPI00017448B3: magnesium/cobalt transport protein|unclassified	0.3059027054
+UniRef50_S5KCJ9: Membrane protein	0.3058836862
+UniRef50_S5KCJ9: Membrane protein|unclassified	0.3058836862
+UniRef50_UPI000287A5C2: organic hydroperoxide resistance protein	0.3058747892
+UniRef50_UPI000287A5C2: organic hydroperoxide resistance protein|unclassified	0.3058747892
+UniRef50_UPI000477F981: 4-hydroxyphenylacetate 3-monooxygenase, partial	0.3058662644
+UniRef50_UPI000477F981: 4-hydroxyphenylacetate 3-monooxygenase, partial|unclassified	0.3058662644
+UniRef50_D8U956	0.3058369110
+UniRef50_D8U956|unclassified	0.3058369110
+UniRef50_F8TV67	0.3058062496
+UniRef50_F8TV67|unclassified	0.3058062496
+UniRef50_W1JJU9	0.3058057793
+UniRef50_W1JJU9|unclassified	0.3058057793
+UniRef50_UPI0001555AB3: PREDICTED: mitogen-activated protein kinase kinase kinase 14-like, partial	0.3058020245
+UniRef50_UPI0001555AB3: PREDICTED: mitogen-activated protein kinase kinase kinase 14-like, partial|unclassified	0.3058020245
+UniRef50_UPI0001913051: prolipoprotein diacylglyceryl transferase, partial	0.3057766517
+UniRef50_UPI0001913051: prolipoprotein diacylglyceryl transferase, partial|unclassified	0.3057766517
+UniRef50_P44848: 1-acyl-sn-glycerol-3-phosphate acyltransferase	0.3057736351
+UniRef50_P44848: 1-acyl-sn-glycerol-3-phosphate acyltransferase|unclassified	0.3057736351
+UniRef50_Q7N093: Complete genome; segment 14/17	0.3057700737
+UniRef50_Q7N093: Complete genome; segment 14/17|unclassified	0.3057700737
+UniRef50_L9ICJ2: LysM domain protein	0.3057458596
+UniRef50_L9ICJ2: LysM domain protein|unclassified	0.3057458596
+UniRef50_Q9K907: Bis(5'-nucleosyl)-tetraphosphatase PrpE [asymmetrical]	0.3057352283
+UniRef50_Q9K907: Bis(5'-nucleosyl)-tetraphosphatase PrpE [asymmetrical]|unclassified	0.3057352283
+UniRef50_UPI00038093E8: hypothetical protein	0.3057330471
+UniRef50_UPI00038093E8: hypothetical protein|unclassified	0.3057330471
+UniRef50_B9KMR1: Transposase IS66	0.3056809731
+UniRef50_B9KMR1: Transposase IS66|unclassified	0.3056809731
+UniRef50_A0A014PEH8	0.3056701819
+UniRef50_A0A014PEH8|unclassified	0.3056701819
+UniRef50_V4WM33: DSBA oxidoreductase	0.3056604985
+UniRef50_V4WM33: DSBA oxidoreductase|unclassified	0.3056604985
+UniRef50_A2BLB9: NH(3)-dependent NAD(+) synthetase	0.3056594987
+UniRef50_A2BLB9: NH(3)-dependent NAD(+) synthetase|unclassified	0.3056594987
+UniRef50_X2M2E8: Chaperone	0.3056558761
+UniRef50_X2M2E8: Chaperone|unclassified	0.3056558761
+UniRef50_M3DSX9	0.3056508562
+UniRef50_M3DSX9|unclassified	0.3056508562
+UniRef50_UPI00046A5A3A: mannitol dehydrogenase	0.3056335148
+UniRef50_UPI00046A5A3A: mannitol dehydrogenase|unclassified	0.3056335148
+UniRef50_UPI0003461E42: hypothetical protein	0.3056239703
+UniRef50_UPI0003461E42: hypothetical protein|unclassified	0.3056239703
+UniRef50_F7BQG3	0.3056168832
+UniRef50_F7BQG3|unclassified	0.3056168832
+UniRef50_UPI0003B6947F: flavin reductase	0.3056152158
+UniRef50_UPI0003B6947F: flavin reductase|unclassified	0.3056152158
+UniRef50_F7YED0: Usg family protein	0.3056150681
+UniRef50_F7YED0: Usg family protein|unclassified	0.3056150681
+UniRef50_UPI000329BBE6: PREDICTED: probable S-methylmethionine permease-like	0.3055933049
+UniRef50_UPI000329BBE6: PREDICTED: probable S-methylmethionine permease-like|unclassified	0.3055933049
+UniRef50_Q65LN0: Allantoinase	0.3055529141
+UniRef50_Q65LN0: Allantoinase|unclassified	0.3055529141
+UniRef50_H1LTM7: NADH dehydrogenase domain protein	0.3055439237
+UniRef50_H1LTM7: NADH dehydrogenase domain protein|unclassified	0.3055439237
+UniRef50_UPI00030D68B1: hypothetical protein	0.3055073173
+UniRef50_UPI00030D68B1: hypothetical protein|unclassified	0.3055073173
+UniRef50_X2LU57	0.3054807896
+UniRef50_X2LU57|unclassified	0.3054807896
+UniRef50_UPI000440127C: PREDICTED: tumor necrosis factor alpha-induced protein 2-like	0.3054744983
+UniRef50_UPI000440127C: PREDICTED: tumor necrosis factor alpha-induced protein 2-like|unclassified	0.3054744983
+UniRef50_UPI00035FAE29: hypothetical protein	0.3054458845
+UniRef50_UPI00035FAE29: hypothetical protein|unclassified	0.3054458845
+UniRef50_A8WK24: Protein CBG24139	0.3054423512
+UniRef50_A8WK24: Protein CBG24139|unclassified	0.3054423512
+UniRef50_UPI0003B555B8: N-formylglutamate amidohydrolase	0.3054258725
+UniRef50_UPI0003B555B8: N-formylglutamate amidohydrolase|unclassified	0.3054258725
+UniRef50_UPI00046F35A8: hypothetical protein, partial	0.3054178237
+UniRef50_UPI00046F35A8: hypothetical protein, partial|unclassified	0.3054178237
+UniRef50_J2E6D8	0.3054060371
+UniRef50_J2E6D8|unclassified	0.3054060371
+UniRef50_UPI0004158481: multidrug transporter	0.3053282036
+UniRef50_UPI0004158481: multidrug transporter|unclassified	0.3053282036
+UniRef50_UPI00047EAE9A: hypothetical protein, partial	0.3053148320
+UniRef50_UPI00047EAE9A: hypothetical protein, partial|unclassified	0.3053148320
+UniRef50_UPI0003B7AA46: phosphatase	0.3052904574
+UniRef50_UPI0003B7AA46: phosphatase|unclassified	0.3052904574
+UniRef50_R1DWZ6	0.3052324617
+UniRef50_R1DWZ6|unclassified	0.3052324617
+UniRef50_UPI0002628BD6: hypothetical protein	0.3052073473
+UniRef50_UPI0002628BD6: hypothetical protein|unclassified	0.3052073473
+UniRef50_UPI0002195593: AbpR response regulator	0.3051760432
+UniRef50_UPI0002195593: AbpR response regulator|unclassified	0.3051760432
+UniRef50_W4Q8C6	0.3051553166
+UniRef50_W4Q8C6|unclassified	0.3051553166
+UniRef50_J9NUS2	0.3051375509
+UniRef50_J9NUS2|unclassified	0.3051375509
+UniRef50_UPI0000E116E5: hypothetical protein, partial	0.3050938057
+UniRef50_UPI0000E116E5: hypothetical protein, partial|unclassified	0.3050938057
+UniRef50_UPI000376EAD9: resolvase	0.3050617581
+UniRef50_UPI000376EAD9: resolvase|unclassified	0.3050617581
+UniRef50_UPI000422E7A9: 3-beta hydroxysteroid dehydrogenase	0.3050157845
+UniRef50_UPI000422E7A9: 3-beta hydroxysteroid dehydrogenase|unclassified	0.3050157845
+UniRef50_Q9HUI3: Sensor histidine kinase AruS	0.3049636772
+UniRef50_Q9HUI3: Sensor histidine kinase AruS|unclassified	0.3049636772
+UniRef50_F6T9R8	0.3049583957
+UniRef50_F6T9R8|unclassified	0.3049583957
+UniRef50_UPI00037F6028: hypothetical protein	0.3049561683
+UniRef50_UPI00037F6028: hypothetical protein|unclassified	0.3049561683
+UniRef50_UPI000363EC6B: hypothetical protein	0.3049484071
+UniRef50_UPI000363EC6B: hypothetical protein|unclassified	0.3049484071
+UniRef50_UPI00040B5085: phosphodiesterase	0.3049366999
+UniRef50_UPI00040B5085: phosphodiesterase|unclassified	0.3049366999
+UniRef50_UPI000299D8B1: deoxyribodipyrimidine photolyase	0.3049229565
+UniRef50_UPI000299D8B1: deoxyribodipyrimidine photolyase|unclassified	0.3049229565
+UniRef50_UPI00047B195F: histidine kinase	0.3049188344
+UniRef50_UPI00047B195F: histidine kinase|unclassified	0.3049188344
+UniRef50_A4XXI2: AzlC family protein	0.3048946304
+UniRef50_A4XXI2: AzlC family protein|unclassified	0.3048946304
+UniRef50_A3SZW0	0.3048884341
+UniRef50_A3SZW0|unclassified	0.3048884341
+UniRef50_N0AN44	0.3048785847
+UniRef50_N0AN44|unclassified	0.3048785847
+UniRef50_UPI00038FD783: hypothetical protein	0.3048284943
+UniRef50_UPI00038FD783: hypothetical protein|unclassified	0.3048284943
+UniRef50_A6FVT8	0.3047794034
+UniRef50_A6FVT8|unclassified	0.3047794034
+UniRef50_X1GH09: Marine sediment metagenome DNA, contig: S03H2_L05290 (Fragment)	0.3047332796
+UniRef50_X1GH09: Marine sediment metagenome DNA, contig: S03H2_L05290 (Fragment)|unclassified	0.3047332796
+UniRef50_UPI0003B4920F: preprotein translocase subunit SecB	0.3047068810
+UniRef50_UPI0003B4920F: preprotein translocase subunit SecB|unclassified	0.3047068810
+UniRef50_UPI00045E7833: ABC transporter substrate-binding protein	0.3046842027
+UniRef50_UPI00045E7833: ABC transporter substrate-binding protein|unclassified	0.3046842027
+UniRef50_W7B905	0.3046814936
+UniRef50_W7B905|unclassified	0.3046814936
+UniRef50_V1MG58	0.3046569895
+UniRef50_V1MG58|unclassified	0.3046569895
+UniRef50_UPI00035E9BAA: hypothetical protein, partial	0.3046391466
+UniRef50_UPI00035E9BAA: hypothetical protein, partial|unclassified	0.3046391466
+UniRef50_W7C3U3	0.3046294829
+UniRef50_W7C3U3|unclassified	0.3046294829
+UniRef50_B8P4A7: Predicted protein	0.3045994517
+UniRef50_B8P4A7: Predicted protein|unclassified	0.3045994517
+UniRef50_M5FJL9	0.3045553487
+UniRef50_M5FJL9|unclassified	0.3045553487
+UniRef50_UPI00036555D8: hypothetical protein	0.3045510380
+UniRef50_UPI00036555D8: hypothetical protein|unclassified	0.3045510380
+UniRef50_V0HLK5: Integrase	0.3045218959
+UniRef50_V0HLK5: Integrase|unclassified	0.3045218959
+UniRef50_X0TSJ3: Marine sediment metagenome DNA, contig: S01H1_L12292 (Fragment)	0.3044846884
+UniRef50_X0TSJ3: Marine sediment metagenome DNA, contig: S01H1_L12292 (Fragment)|unclassified	0.3044846884
+UniRef50_I3Y049	0.3044806589
+UniRef50_I3Y049|unclassified	0.3044806589
+UniRef50_K0R081	0.3043807254
+UniRef50_K0R081|unclassified	0.3043807254
+UniRef50_W9VEF6: Putative sterol carrier protein	0.3043281669
+UniRef50_W9VEF6: Putative sterol carrier protein|unclassified	0.3043281669
+UniRef50_UPI000363C62C: hypothetical protein	0.3043213634
+UniRef50_UPI000363C62C: hypothetical protein|unclassified	0.3043213634
+UniRef50_L0QTV4	0.3043086083
+UniRef50_L0QTV4|unclassified	0.3043086083
+UniRef50_UPI00036661AC: hypothetical protein	0.3043076585
+UniRef50_UPI00036661AC: hypothetical protein|unclassified	0.3043076585
+UniRef50_A3SBF9	0.3042860207
+UniRef50_A3SBF9|unclassified	0.3042860207
+UniRef50_O26751: Conserved protein	0.3042778120
+UniRef50_O26751: Conserved protein|unclassified	0.3042778120
+UniRef50_UPI000465B3B5: hypothetical protein	0.3042742221
+UniRef50_UPI000465B3B5: hypothetical protein|unclassified	0.3042742221
+UniRef50_UPI000197AB2B: tRNA CCA-pyrophosphorylase	0.3042294282
+UniRef50_UPI000197AB2B: tRNA CCA-pyrophosphorylase|unclassified	0.3042294282
+UniRef50_M0G9N0: Phenol hydroxylase	0.3041903505
+UniRef50_M0G9N0: Phenol hydroxylase|unclassified	0.3041903505
+UniRef50_B9J6F9: TraG/TraD family protein	0.3041816260
+UniRef50_B9J6F9: TraG/TraD family protein|unclassified	0.3041816260
+UniRef50_Z2N841	0.3041781885
+UniRef50_Z2N841|unclassified	0.3041781885
+UniRef50_D3F4N7: Biotin/lipoyl attachment domain-containing protein	0.3041578063
+UniRef50_D3F4N7: Biotin/lipoyl attachment domain-containing protein|unclassified	0.3041578063
+UniRef50_Q3JUU4	0.3041457317
+UniRef50_Q3JUU4|unclassified	0.3041457317
+UniRef50_UPI0003506CEC: PREDICTED: serine hydroxymethyltransferase, cytosolic isoform X7	0.3040919678
+UniRef50_UPI0003506CEC: PREDICTED: serine hydroxymethyltransferase, cytosolic isoform X7|unclassified	0.3040919678
+UniRef50_UPI00036E1232: hypothetical protein	0.3040690861
+UniRef50_UPI00036E1232: hypothetical protein|unclassified	0.3040690861
+UniRef50_UPI00037592AE: hypothetical protein	0.3040648298
+UniRef50_UPI00037592AE: hypothetical protein|unclassified	0.3040648298
+UniRef50_UPI000262F093: AfsR family transcriptional regulator	0.3040437823
+UniRef50_UPI000262F093: AfsR family transcriptional regulator|unclassified	0.3040437823
+UniRef50_M5X9E3	0.3039904647
+UniRef50_M5X9E3|unclassified	0.3039904647
+UniRef50_UPI0003FFFFEC: hypothetical protein	0.3039890121
+UniRef50_UPI0003FFFFEC: hypothetical protein|unclassified	0.3039890121
+UniRef50_E0TGK8	0.3039610705
+UniRef50_E0TGK8|unclassified	0.3039610705
+UniRef50_W0DT44: Phosphate-starvation-inducible E	0.3039593167
+UniRef50_W0DT44: Phosphate-starvation-inducible E|unclassified	0.3039593167
+UniRef50_U3T3A9	0.3039548102
+UniRef50_U3T3A9|unclassified	0.3039548102
+UniRef50_UPI0003A49338: GDSL family lipase	0.3039480120
+UniRef50_UPI0003A49338: GDSL family lipase|unclassified	0.3039480120
+UniRef50_Q7MLQ2: Trimethylamine-N-oxide reductase	0.3039381291
+UniRef50_Q7MLQ2: Trimethylamine-N-oxide reductase|unclassified	0.3039381291
+UniRef50_K9HDQ0	0.3038629701
+UniRef50_K9HDQ0|unclassified	0.3038629701
+UniRef50_A5F642: Uracil phosphoribosyltransferase	0.3038455985
+UniRef50_A5F642: Uracil phosphoribosyltransferase|unclassified	0.3038455985
+UniRef50_J7KUW0	0.3038364196
+UniRef50_J7KUW0|unclassified	0.3038364196
+UniRef50_UPI000471F306: hypothetical protein	0.3038352718
+UniRef50_UPI000471F306: hypothetical protein|unclassified	0.3038352718
+UniRef50_A7AK72	0.3038204949
+UniRef50_A7AK72|unclassified	0.3038204949
+UniRef50_Q98F08: D-amino acid dehydrogenase 1 small subunit	0.3038155341
+UniRef50_Q98F08: D-amino acid dehydrogenase 1 small subunit|unclassified	0.3038155341
+UniRef50_UPI00031EB597: hypothetical protein	0.3037920008
+UniRef50_UPI00031EB597: hypothetical protein|unclassified	0.3037920008
+UniRef50_UPI00046EAE05: 2-amino-3-ketobutyrate CoA ligase	0.3037881003
+UniRef50_UPI00046EAE05: 2-amino-3-ketobutyrate CoA ligase|unclassified	0.3037881003
+UniRef50_Q2CEC1: Putative phage tail minor protein	0.3037682950
+UniRef50_Q2CEC1: Putative phage tail minor protein|unclassified	0.3037682950
+UniRef50_UPI00042B93D3: Ribosomal protein S9 isoform 1	0.3037446904
+UniRef50_UPI00042B93D3: Ribosomal protein S9 isoform 1|unclassified	0.3037446904
+UniRef50_B9TBX5	0.3037290140
+UniRef50_B9TBX5|unclassified	0.3037290140
+UniRef50_UPI000248FDBC: dihydroorotate dehydrogenase 2	0.3037263529
+UniRef50_UPI000248FDBC: dihydroorotate dehydrogenase 2|unclassified	0.3037263529
+UniRef50_A0A022H1C7: DNA-binding protein	0.3036994701
+UniRef50_A0A022H1C7: DNA-binding protein|unclassified	0.3036994701
+UniRef50_Q9ZLE4: Succinyl-CoA:3-ketoacid coenzyme A transferase subunit B	0.3036975918
+UniRef50_Q9ZLE4: Succinyl-CoA:3-ketoacid coenzyme A transferase subunit B|unclassified	0.3036975918
+UniRef50_X1FS40: Marine sediment metagenome DNA, contig: S03H2_L06588 (Fragment)	0.3036579568
+UniRef50_X1FS40: Marine sediment metagenome DNA, contig: S03H2_L06588 (Fragment)|unclassified	0.3036579568
+UniRef50_E2XJR0	0.3036399816
+UniRef50_E2XJR0|unclassified	0.3036399816
+UniRef50_X1PNE8: Marine sediment metagenome DNA, contig: S06H3_S19702 (Fragment)	0.3036352104
+UniRef50_X1PNE8: Marine sediment metagenome DNA, contig: S06H3_S19702 (Fragment)|unclassified	0.3036352104
+UniRef50_F0MM85: Hemagglutinin/hemolysin family protein	0.3036286595
+UniRef50_F0MM85: Hemagglutinin/hemolysin family protein|g__Neisseria.s__Neisseria_meningitidis	0.3036286595
+UniRef50_UPI0003B63CD0: membrane protein	0.3036159510
+UniRef50_UPI0003B63CD0: membrane protein|unclassified	0.3036159510
+UniRef50_M0H819	0.3036055285
+UniRef50_M0H819|unclassified	0.3036055285
+UniRef50_C2S6Z8	0.3035908592
+UniRef50_C2S6Z8|unclassified	0.3035908592
+UniRef50_UPI0000E0F606: glycosyl transferase group 1	0.3035774560
+UniRef50_UPI0000E0F606: glycosyl transferase group 1|unclassified	0.3035774560
+UniRef50_UPI0004686B78: hypothetical protein	0.3035556321
+UniRef50_UPI0004686B78: hypothetical protein|unclassified	0.3035556321
+UniRef50_A0A015CJF0: DnaJ domain protein	0.3035528561
+UniRef50_A0A015CJF0: DnaJ domain protein|unclassified	0.3035528561
+UniRef50_X1F2Z7: Marine sediment metagenome DNA, contig: S01H4_S19036 (Fragment)	0.3035225610
+UniRef50_X1F2Z7: Marine sediment metagenome DNA, contig: S01H4_S19036 (Fragment)|unclassified	0.3035225610
+UniRef50_A0A031MEV9: MFS transporter	0.3035195438
+UniRef50_A0A031MEV9: MFS transporter|unclassified	0.3035195438
+UniRef50_X7YGE5: Putative groESL operon	0.3035000578
+UniRef50_X7YGE5: Putative groESL operon|unclassified	0.3035000578
+UniRef50_T8CCV0: Glutathione-regulated potassium-efflux system protein kefB	0.3034899477
+UniRef50_T8CCV0: Glutathione-regulated potassium-efflux system protein kefB|unclassified	0.3034899477
+UniRef50_UPI000463A980: integrase	0.3034705400
+UniRef50_UPI000463A980: integrase|unclassified	0.3034705400
+UniRef50_R6QPN1: MaoC domain-containing protein	0.3034498731
+UniRef50_R6QPN1: MaoC domain-containing protein|unclassified	0.3034498731
+UniRef50_A3D9R7	0.3034076844
+UniRef50_A3D9R7|unclassified	0.3034076844
+UniRef50_E9SKE1: Putative threonine synthase	0.3033925618
+UniRef50_E9SKE1: Putative threonine synthase|unclassified	0.3033925618
+UniRef50_UPI000317E488: hypothetical protein	0.3033462642
+UniRef50_UPI000317E488: hypothetical protein|unclassified	0.3033462642
+UniRef50_K7E4X4	0.3033267461
+UniRef50_K7E4X4|unclassified	0.3033267461
+UniRef50_UPI00035FDDA4: hypothetical protein	0.3033240329
+UniRef50_UPI00035FDDA4: hypothetical protein|unclassified	0.3033240329
+UniRef50_I0BSK3	0.3033013408
+UniRef50_I0BSK3|unclassified	0.3033013408
+UniRef50_M0Y9D6	0.3032986257
+UniRef50_M0Y9D6|unclassified	0.3032986257
+UniRef50_UPI000375676E: hypothetical protein	0.3032981189
+UniRef50_UPI000375676E: hypothetical protein|unclassified	0.3032981189
+UniRef50_A0A010RX92	0.3032969029
+UniRef50_A0A010RX92|unclassified	0.3032969029
+UniRef50_F1ZDB1	0.3032797052
+UniRef50_F1ZDB1|unclassified	0.3032797052
+UniRef50_UPI0001CE2814: PREDICTED: hypothetical protein	0.3032681047
+UniRef50_UPI0001CE2814: PREDICTED: hypothetical protein|unclassified	0.3032681047
+UniRef50_UPI0003A4C566: methyltransferase	0.3032613309
+UniRef50_UPI0003A4C566: methyltransferase|unclassified	0.3032613309
+UniRef50_U3THF7	0.3032418317
+UniRef50_U3THF7|unclassified	0.3032418317
+UniRef50_UPI00034BD8C9: hypothetical protein	0.3031225283
+UniRef50_UPI00034BD8C9: hypothetical protein|unclassified	0.3031225283
+UniRef50_UPI000372FE9C: molybdopterin guanine dinucleotide biosynthesis protein MoaE	0.3030916953
+UniRef50_UPI000372FE9C: molybdopterin guanine dinucleotide biosynthesis protein MoaE|unclassified	0.3030916953
+UniRef50_UPI0003800CEF: hypothetical protein	0.3030771634
+UniRef50_UPI0003800CEF: hypothetical protein|unclassified	0.3030771634
+UniRef50_H3WZT8	0.3030477950
+UniRef50_H3WZT8|unclassified	0.3030477950
+UniRef50_X1DN10: Marine sediment metagenome DNA, contig: S01H4_S04787 (Fragment)	0.3030281497
+UniRef50_X1DN10: Marine sediment metagenome DNA, contig: S01H4_S04787 (Fragment)|unclassified	0.3030281497
+UniRef50_UPI0004777E31: pantothenate ECF transporter	0.3030076176
+UniRef50_UPI0004777E31: pantothenate ECF transporter|unclassified	0.3030076176
+UniRef50_UPI000476F019: molybdenum ABC transporter permease	0.3030019087
+UniRef50_UPI000476F019: molybdenum ABC transporter permease|unclassified	0.3030019087
+UniRef50_UPI0003A69976: hypothetical protein	0.3029772885
+UniRef50_UPI0003A69976: hypothetical protein|unclassified	0.3029772885
+UniRef50_UPI0003B3103D: exodeoxyribonuclease III	0.3029438269
+UniRef50_UPI0003B3103D: exodeoxyribonuclease III|unclassified	0.3029438269
+UniRef50_A2BNB8	0.3029404983
+UniRef50_A2BNB8|unclassified	0.3029404983
+UniRef50_UPI0003B79903: bacitracin ABC transporter ATP-binding protein	0.3029302451
+UniRef50_UPI0003B79903: bacitracin ABC transporter ATP-binding protein|unclassified	0.3029302451
+UniRef50_UPI0003C164D4: PREDICTED: ABC transporter F family member 4-like	0.3029102409
+UniRef50_UPI0003C164D4: PREDICTED: ABC transporter F family member 4-like|unclassified	0.3029102409
+UniRef50_D5MJN8	0.3028891774
+UniRef50_D5MJN8|unclassified	0.3028891774
+UniRef50_UPI0003B4EABD: glutathione ABC transporter ATP-binding protein	0.3028682205
+UniRef50_UPI0003B4EABD: glutathione ABC transporter ATP-binding protein|unclassified	0.3028682205
+UniRef50_A1JNQ8	0.3028626931
+UniRef50_A1JNQ8|unclassified	0.3028626931
+UniRef50_Q2GCH6: Malate dehydrogenase	0.3028521402
+UniRef50_Q2GCH6: Malate dehydrogenase|unclassified	0.3028521402
+UniRef50_D0B9Z4: Usg family protein	0.3028371973
+UniRef50_D0B9Z4: Usg family protein|unclassified	0.3028371973
+UniRef50_UPI0002F0964C: hypothetical protein	0.3028067158
+UniRef50_UPI0002F0964C: hypothetical protein|unclassified	0.3028067158
+UniRef50_T0EEW1	0.3028026127
+UniRef50_T0EEW1|unclassified	0.3028026127
+UniRef50_Q0AHR1: Transcriptional regulator, BolA protein family	0.3027709041
+UniRef50_Q0AHR1: Transcriptional regulator, BolA protein family|unclassified	0.3027709041
+UniRef50_UPI000475B69C: phosphoserine aminotransferase	0.3027605369
+UniRef50_UPI000475B69C: phosphoserine aminotransferase|unclassified	0.3027605369
+UniRef50_UPI000378FC76: hypothetical protein	0.3027404811
+UniRef50_UPI000378FC76: hypothetical protein|unclassified	0.3027404811
+UniRef50_F9Q8N2: Putative acylphosphatase	0.3027179847
+UniRef50_F9Q8N2: Putative acylphosphatase|unclassified	0.3027179847
+UniRef50_S4XUX0	0.3026830979
+UniRef50_S4XUX0|unclassified	0.3026830979
+UniRef50_Q4L618: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.3026752949
+UniRef50_Q4L618: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.3026752949
+UniRef50_K2QCN9	0.3026686624
+UniRef50_K2QCN9|unclassified	0.3026686624
+UniRef50_B6J6Y3: Hypothetical membrane spanning protein	0.3026681602
+UniRef50_B6J6Y3: Hypothetical membrane spanning protein|unclassified	0.3026681602
+UniRef50_C3HTB2	0.3026577916
+UniRef50_C3HTB2|unclassified	0.3026577916
+UniRef50_UPI0003710A9E: hypothetical protein	0.3026499638
+UniRef50_UPI0003710A9E: hypothetical protein|unclassified	0.3026499638
+UniRef50_UPI000474EBFC: hypothetical protein, partial	0.3026464973
+UniRef50_UPI000474EBFC: hypothetical protein, partial|unclassified	0.3026464973
+UniRef50_I4SUQ9: ABC-2 type transporter (Fragment)	0.3026400238
+UniRef50_I4SUQ9: ABC-2 type transporter (Fragment)|unclassified	0.3026400238
+UniRef50_X7YZP6: Group II intron, maturase-specific domain protein	0.3026262800
+UniRef50_X7YZP6: Group II intron, maturase-specific domain protein|unclassified	0.3026262800
+UniRef50_UPI00047423C9: glycosyl transferase family 1	0.3026104273
+UniRef50_UPI00047423C9: glycosyl transferase family 1|unclassified	0.3026104273
+UniRef50_UPI00047131AC: methyltransferase	0.3025875787
+UniRef50_UPI00047131AC: methyltransferase|unclassified	0.3025875787
+UniRef50_I3E2U7	0.3025827218
+UniRef50_I3E2U7|unclassified	0.3025827218
+UniRef50_E8TP07	0.3025683855
+UniRef50_E8TP07|unclassified	0.3025683855
+UniRef50_T1EBV1: Cytochrome C	0.3025308611
+UniRef50_T1EBV1: Cytochrome C|unclassified	0.3025308611
+UniRef50_N6JAA9	0.3025276982
+UniRef50_N6JAA9|unclassified	0.3025276982
+UniRef50_UPI000225AEF7: D-amino acid aminotransferase	0.3024866024
+UniRef50_UPI000225AEF7: D-amino acid aminotransferase|unclassified	0.3024866024
+UniRef50_UPI0003B4F2BD: peptidase S41, partial	0.3024795045
+UniRef50_UPI0003B4F2BD: peptidase S41, partial|unclassified	0.3024795045
+UniRef50_V6F503: Transposase	0.3024764424
+UniRef50_V6F503: Transposase|unclassified	0.3024764424
+UniRef50_I0ULZ3	0.3024689391
+UniRef50_I0ULZ3|unclassified	0.3024689391
+UniRef50_Q9RZ58	0.3024644220
+UniRef50_Q9RZ58|unclassified	0.3024644220
+UniRef50_UPI00045E9DDE: hypothetical protein	0.3024362090
+UniRef50_UPI00045E9DDE: hypothetical protein|unclassified	0.3024362090
+UniRef50_A6VYB9: UPF0260 protein Mmwyl1_2529	0.3024323266
+UniRef50_A6VYB9: UPF0260 protein Mmwyl1_2529|unclassified	0.3024323266
+UniRef50_F1Z0Q7: TIGR01671 family protein	0.3023272399
+UniRef50_F1Z0Q7: TIGR01671 family protein|unclassified	0.3023272399
+UniRef50_H8GYP5	0.3023141196
+UniRef50_H8GYP5|unclassified	0.3023141196
+UniRef50_S6AM14	0.3022668129
+UniRef50_S6AM14|unclassified	0.3022668129
+UniRef50_UPI000406D91D: phosphoserine phosphatase	0.3022139209
+UniRef50_UPI000406D91D: phosphoserine phosphatase|unclassified	0.3022139209
+UniRef50_P20162: Lipopolysaccharide export system ATP-binding protein LptB (Fragment)	0.3022027053
+UniRef50_P20162: Lipopolysaccharide export system ATP-binding protein LptB (Fragment)|unclassified	0.3022027053
+UniRef50_UPI00036DCBB2: D-alanyl-D-alanine carboxypeptidase, partial	0.3022015281
+UniRef50_UPI00036DCBB2: D-alanyl-D-alanine carboxypeptidase, partial|unclassified	0.3022015281
+UniRef50_A4G431: Quinolinate synthase A	0.3021251459
+UniRef50_A4G431: Quinolinate synthase A|unclassified	0.3021251459
+UniRef50_UPI00037950A9: hypothetical protein	0.3021010759
+UniRef50_UPI00037950A9: hypothetical protein|unclassified	0.3021010759
+UniRef50_UPI0003637FFD: hypothetical protein	0.3020822425
+UniRef50_UPI0003637FFD: hypothetical protein|unclassified	0.3020822425
+UniRef50_Q6B458: 3-isopropylmalate dehydrogenase	0.3020810709
+UniRef50_Q6B458: 3-isopropylmalate dehydrogenase|unclassified	0.3020810709
+UniRef50_UPI000317B18D: hypothetical protein	0.3020408206
+UniRef50_UPI000317B18D: hypothetical protein|unclassified	0.3020408206
+UniRef50_W5X3Y6: 50S ribosomal protein L1	0.3020338840
+UniRef50_W5X3Y6: 50S ribosomal protein L1|unclassified	0.3020338840
+UniRef50_Q9VDT6: Putative ribosomal RNA methyltransferase CG11447	0.3020295003
+UniRef50_Q9VDT6: Putative ribosomal RNA methyltransferase CG11447|unclassified	0.3020295003
+UniRef50_B7V3Z1: Putative Holliday junction resolvase	0.3020061555
+UniRef50_B7V3Z1: Putative Holliday junction resolvase|unclassified	0.3020061555
+UniRef50_A0A059LEP7	0.3019889658
+UniRef50_A0A059LEP7|unclassified	0.3019889658
+UniRef50_D1CW91: Predicted protein	0.3019721443
+UniRef50_D1CW91: Predicted protein|unclassified	0.3019721443
+UniRef50_V4RET2	0.3019620711
+UniRef50_V4RET2|unclassified	0.3019620711
+UniRef50_Q472F7	0.3019556249
+UniRef50_Q472F7|unclassified	0.3019556249
+UniRef50_F3L538: Putative exported protein	0.3019442257
+UniRef50_F3L538: Putative exported protein|unclassified	0.3019442257
+UniRef50_UPI000364EE3F: hypothetical protein	0.3019216092
+UniRef50_UPI000364EE3F: hypothetical protein|unclassified	0.3019216092
+UniRef50_UPI00036AFA28: hypothetical protein, partial	0.3018805857
+UniRef50_UPI00036AFA28: hypothetical protein, partial|unclassified	0.3018805857
+UniRef50_UPI000348D28F: hypothetical protein	0.3018731041
+UniRef50_UPI000348D28F: hypothetical protein|unclassified	0.3018731041
+UniRef50_Q2CAA6	0.3018686478
+UniRef50_Q2CAA6|unclassified	0.3018686478
+UniRef50_UPI000225B39C: hypothetical protein	0.3018663755
+UniRef50_UPI000225B39C: hypothetical protein|unclassified	0.3018663755
+UniRef50_UPI00037F6FB0: hypothetical protein	0.3018407602
+UniRef50_UPI00037F6FB0: hypothetical protein|unclassified	0.3018407602
+UniRef50_A5PL98: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial	0.3018347906
+UniRef50_A5PL98: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial|unclassified	0.3018347906
+UniRef50_S6PQX7	0.3018203710
+UniRef50_S6PQX7|unclassified	0.3018203710
+UniRef50_I1FW98	0.3017968966
+UniRef50_I1FW98|unclassified	0.3017968966
+UniRef50_B0DZS5: Predicted protein	0.3017389236
+UniRef50_B0DZS5: Predicted protein|unclassified	0.3017389236
+UniRef50_D3A837	0.3017045494
+UniRef50_D3A837|unclassified	0.3017045494
+UniRef50_D8JIG5	0.3016933155
+UniRef50_D8JIG5|unclassified	0.3016933155
+UniRef50_B1ZHW3: 40-residue YVTN family beta-propeller repeat protein	0.3016775994
+UniRef50_B1ZHW3: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.3016775994
+UniRef50_U6ZZW8	0.3016759730
+UniRef50_U6ZZW8|unclassified	0.3016759730
+UniRef50_K8AM98	0.3016559965
+UniRef50_K8AM98|unclassified	0.3016559965
+UniRef50_A7BSV4: Oligopeptidase A	0.3016458591
+UniRef50_A7BSV4: Oligopeptidase A|unclassified	0.3016458591
+UniRef50_UPI000381DC49: hypothetical protein, partial	0.3016416580
+UniRef50_UPI000381DC49: hypothetical protein, partial|unclassified	0.3016416580
+UniRef50_X7F0E7	0.3015806063
+UniRef50_X7F0E7|unclassified	0.3015806063
+UniRef50_UPI00036ED5A7: hypothetical protein	0.3015739439
+UniRef50_UPI00036ED5A7: hypothetical protein|unclassified	0.3015739439
+UniRef50_U6N1Q3: Mitochondrial carrier domain-containing protein, putative (Fragment)	0.3015681544
+UniRef50_U6N1Q3: Mitochondrial carrier domain-containing protein, putative (Fragment)|unclassified	0.3015681544
+UniRef50_UPI000376E73C: hypothetical protein	0.3015375487
+UniRef50_UPI000376E73C: hypothetical protein|unclassified	0.3015375487
+UniRef50_UPI0003B5C100: TetR family transcriptional regulator	0.3014766503
+UniRef50_UPI0003B5C100: TetR family transcriptional regulator|unclassified	0.3014766503
+UniRef50_UPI000383BB8E: PREDICTED: serine/arginine repetitive matrix protein 1-like	0.3014623781
+UniRef50_UPI000383BB8E: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	0.3014623781
+UniRef50_A0A037W4W5	0.3014266017
+UniRef50_A0A037W4W5|unclassified	0.3014266017
+UniRef50_O31186: Alcohol dehydrogenase	0.3014080491
+UniRef50_O31186: Alcohol dehydrogenase|unclassified	0.3014080491
+UniRef50_UPI00047134BC: hypothetical protein	0.3014000129
+UniRef50_UPI00047134BC: hypothetical protein|unclassified	0.3014000129
+UniRef50_M2PFD7	0.3013956099
+UniRef50_M2PFD7|unclassified	0.3013956099
+UniRef50_UPI000360CD14: 3-methyladenine DNA glycosylase	0.3013940710
+UniRef50_UPI000360CD14: 3-methyladenine DNA glycosylase|unclassified	0.3013940710
+UniRef50_W7QEL4: Membrane protein	0.3013940043
+UniRef50_W7QEL4: Membrane protein|unclassified	0.3013940043
+UniRef50_W5ILA2	0.3013863078
+UniRef50_W5ILA2|unclassified	0.3013863078
+UniRef50_A0A032NY89	0.3013813933
+UniRef50_A0A032NY89|unclassified	0.3013813933
+UniRef50_UPI00039DF06E: hypothetical protein	0.3013621629
+UniRef50_UPI00039DF06E: hypothetical protein|unclassified	0.3013621629
+UniRef50_UPI000225FA9E: hypothetical protein	0.3013422452
+UniRef50_UPI000225FA9E: hypothetical protein|unclassified	0.3013422452
+UniRef50_UPI000360E9DE: hypothetical protein	0.3013276968
+UniRef50_UPI000360E9DE: hypothetical protein|unclassified	0.3013276968
+UniRef50_K7SD88: dGTPase	0.3012975366
+UniRef50_K7SD88: dGTPase|unclassified	0.3012975366
+UniRef50_I4ST20	0.3012873269
+UniRef50_I4ST20|unclassified	0.3012873269
+UniRef50_UPI00047ECE72: hypothetical protein, partial	0.3012296477
+UniRef50_UPI00047ECE72: hypothetical protein, partial|unclassified	0.3012296477
+UniRef50_A0A022G5P4: LuxR family transcriptional regulator	0.3012191088
+UniRef50_A0A022G5P4: LuxR family transcriptional regulator|unclassified	0.3012191088
+UniRef50_UPI00045EB0B3: phenylacetic acid degradation protein PaaI	0.3012034024
+UniRef50_UPI00045EB0B3: phenylacetic acid degradation protein PaaI|unclassified	0.3012034024
+UniRef50_Q1QMF0	0.3011893516
+UniRef50_Q1QMF0|unclassified	0.3011893516
+UniRef50_L0M0X9	0.3011782080
+UniRef50_L0M0X9|unclassified	0.3011782080
+UniRef50_W0BCX4	0.3011754422
+UniRef50_W0BCX4|unclassified	0.3011754422
+UniRef50_UPI00035EB648: hypothetical protein, partial	0.3011605584
+UniRef50_UPI00035EB648: hypothetical protein, partial|unclassified	0.3011605584
+UniRef50_D3CV24	0.3011598258
+UniRef50_D3CV24|unclassified	0.3011598258
+UniRef50_UPI000473354C: hypothetical protein, partial	0.3011463506
+UniRef50_UPI000473354C: hypothetical protein, partial|unclassified	0.3011463506
+UniRef50_I3X5Y9: Transposase IS4 family protein	0.3011071786
+UniRef50_I3X5Y9: Transposase IS4 family protein|unclassified	0.3011071786
+UniRef50_UPI00047ED185: hypothetical protein	0.3010940307
+UniRef50_UPI00047ED185: hypothetical protein|unclassified	0.3010940307
+UniRef50_R8MAG2	0.3010662091
+UniRef50_R8MAG2|unclassified	0.3010662091
+UniRef50_A1KWT1: Replication initiator protein A	0.3010562861
+UniRef50_A1KWT1: Replication initiator protein A|unclassified	0.3010562861
+UniRef50_O29581: Adenylate kinase	0.3010362860
+UniRef50_O29581: Adenylate kinase|unclassified	0.3010362860
+UniRef50_B5GFD4: Nogalamycin resistance protein SnorO	0.3010038759
+UniRef50_B5GFD4: Nogalamycin resistance protein SnorO|unclassified	0.3010038759
+UniRef50_UPI00016C558B: DNA gyrase subunit A	0.3010030309
+UniRef50_UPI00016C558B: DNA gyrase subunit A|unclassified	0.3010030309
+UniRef50_UPI00037EFDE6: hypothetical protein	0.3009966684
+UniRef50_UPI00037EFDE6: hypothetical protein|unclassified	0.3009966684
+UniRef50_G4B6N4	0.3009750413
+UniRef50_G4B6N4|unclassified	0.3009750413
+UniRef50_UPI0004295E45: lipoate--protein ligase	0.3009538570
+UniRef50_UPI0004295E45: lipoate--protein ligase|unclassified	0.3009538570
+UniRef50_UPI0003941799: PREDICTED: basic proline-rich protein-like	0.3009009078
+UniRef50_UPI0003941799: PREDICTED: basic proline-rich protein-like|unclassified	0.3009009078
+UniRef50_M4VPY4	0.3008646222
+UniRef50_M4VPY4|unclassified	0.3008646222
+UniRef50_K0SYY6	0.3008597526
+UniRef50_K0SYY6|unclassified	0.3008597526
+UniRef50_UPI0002375A77: extracellular solute-binding protein	0.3008589810
+UniRef50_UPI0002375A77: extracellular solute-binding protein|unclassified	0.3008589810
+UniRef50_B4V430: Secreted protein	0.3008517220
+UniRef50_B4V430: Secreted protein|unclassified	0.3008517220
+UniRef50_K7UZK8	0.3007900188
+UniRef50_K7UZK8|unclassified	0.3007900188
+UniRef50_C3BWI2: YbbR	0.3007537200
+UniRef50_C3BWI2: YbbR|unclassified	0.3007537200
+UniRef50_B9JTQ3: NAD-dependent formate dehydrogenase delta subunit	0.3007521075
+UniRef50_B9JTQ3: NAD-dependent formate dehydrogenase delta subunit|unclassified	0.3007521075
+UniRef50_UPI0004676226: hypothetical protein	0.3007088942
+UniRef50_UPI0004676226: hypothetical protein|unclassified	0.3007088942
+UniRef50_UPI000466829A: hypothetical protein	0.3006485072
+UniRef50_UPI000466829A: hypothetical protein|unclassified	0.3006485072
+UniRef50_G7U5G6	0.3006402145
+UniRef50_G7U5G6|unclassified	0.3006402145
+UniRef50_C7ZTS1	0.3006015112
+UniRef50_C7ZTS1|unclassified	0.3006015112
+UniRef50_UPI00030DAB0C: formate--tetrahydrofolate ligase	0.3005971141
+UniRef50_UPI00030DAB0C: formate--tetrahydrofolate ligase|unclassified	0.3005971141
+UniRef50_UPI00046A8E96: cytochrome C	0.3005959562
+UniRef50_UPI00046A8E96: cytochrome C|unclassified	0.3005959562
+UniRef50_Q322E2: IS2 ORF2	0.3005846289
+UniRef50_Q322E2: IS2 ORF2|unclassified	0.3005846289
+UniRef50_UPI00037E5BDF: hypothetical protein	0.3005785584
+UniRef50_UPI00037E5BDF: hypothetical protein|unclassified	0.3005785584
+UniRef50_UPI0002FFBB25: hypothetical protein	0.3005740263
+UniRef50_UPI0002FFBB25: hypothetical protein|unclassified	0.3005740263
+UniRef50_UPI0002C55C06	0.3005415020
+UniRef50_UPI0002C55C06|unclassified	0.3005415020
+UniRef50_Q8D7T8: D-ribose pyranase	0.3005409179
+UniRef50_Q8D7T8: D-ribose pyranase|unclassified	0.3005409179
+UniRef50_UPI0003B40C25: Fe-S protein	0.3005174949
+UniRef50_UPI0003B40C25: Fe-S protein|unclassified	0.3005174949
+UniRef50_UPI000359B485: PREDICTED: mitochondrial peptide methionine sulfoxide reductase isoform X2	0.3005150497
+UniRef50_UPI000359B485: PREDICTED: mitochondrial peptide methionine sulfoxide reductase isoform X2|unclassified	0.3005150497
+UniRef50_S2W0S5	0.3005083607
+UniRef50_S2W0S5|unclassified	0.3005083607
+UniRef50_G2IRE4: Nitrogen fixation protein FixH	0.3005066455
+UniRef50_G2IRE4: Nitrogen fixation protein FixH|unclassified	0.3005066455
+UniRef50_UPI0002E3844C: hypothetical protein	0.3004875740
+UniRef50_UPI0002E3844C: hypothetical protein|unclassified	0.3004875740
+UniRef50_Q55EK9: Pyridoxal kinase	0.3004603629
+UniRef50_Q55EK9: Pyridoxal kinase|unclassified	0.3004603629
+UniRef50_UPI0003771895: hypothetical protein, partial	0.3004332289
+UniRef50_UPI0003771895: hypothetical protein, partial|unclassified	0.3004332289
+UniRef50_UPI000467E030: calcium-binding protein, partial	0.3003850788
+UniRef50_UPI000467E030: calcium-binding protein, partial|unclassified	0.3003850788
+UniRef50_H3VIT7	0.3003548122
+UniRef50_H3VIT7|unclassified	0.3003548122
+UniRef50_D5X6H0	0.3003235664
+UniRef50_D5X6H0|unclassified	0.3003235664
+UniRef50_UPI00036BFBB7: hypothetical protein	0.3003201541
+UniRef50_UPI00036BFBB7: hypothetical protein|unclassified	0.3003201541
+UniRef50_U2NH71: MaoC domain-containing protein dehydratase	0.3003150575
+UniRef50_U2NH71: MaoC domain-containing protein dehydratase|unclassified	0.3003150575
+UniRef50_B6IVS2: Inner membrane protein, putative	0.3002949709
+UniRef50_B6IVS2: Inner membrane protein, putative|unclassified	0.3002949709
+UniRef50_UPI000470B6F6: DEAD/DEAH box helicase	0.3002477721
+UniRef50_UPI000470B6F6: DEAD/DEAH box helicase|unclassified	0.3002477721
+UniRef50_UPI0004775405: hypothetical protein, partial	0.3002363350
+UniRef50_UPI0004775405: hypothetical protein, partial|unclassified	0.3002363350
+UniRef50_A5M592	0.3002269496
+UniRef50_A5M592|unclassified	0.3002269496
+UniRef50_UPI00046CFC16: hypothetical protein	0.3002260347
+UniRef50_UPI00046CFC16: hypothetical protein|unclassified	0.3002260347
+UniRef50_UPI0001BF7409: hypothetical protein SMAC_09879, partial	0.3002142997
+UniRef50_UPI0001BF7409: hypothetical protein SMAC_09879, partial|unclassified	0.3002142997
+UniRef50_Q42577: NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial	0.3002102862
+UniRef50_Q42577: NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial|unclassified	0.3002102862
+UniRef50_Q4L4B4: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.3002064943
+UniRef50_Q4L4B4: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.3002064943
+UniRef50_UPI00046655C8: MULTISPECIES: MerR family transcriptional regulator	0.3001990959
+UniRef50_UPI00046655C8: MULTISPECIES: MerR family transcriptional regulator|unclassified	0.3001990959
+UniRef50_W9VB49: MTH1175-like domain family protein	0.3001971476
+UniRef50_W9VB49: MTH1175-like domain family protein|unclassified	0.3001971476
+UniRef50_L0FND5: Phage tail protein E	0.3001955845
+UniRef50_L0FND5: Phage tail protein E|unclassified	0.3001955845
+UniRef50_UPI00029A2592: dihydrolipoamide dehydrogenase, partial	0.3001749277
+UniRef50_UPI00029A2592: dihydrolipoamide dehydrogenase, partial|unclassified	0.3001749277
+UniRef50_W6WS83	0.3001732846
+UniRef50_W6WS83|unclassified	0.3001732846
+UniRef50_UPI000466E6FA: 3-oxoacyl-ACP synthase, partial	0.3000919241
+UniRef50_UPI000466E6FA: 3-oxoacyl-ACP synthase, partial|unclassified	0.3000919241
+UniRef50_UPI00037A2BE2: hypothetical protein	0.3000698826
+UniRef50_UPI00037A2BE2: hypothetical protein|unclassified	0.3000698826
+UniRef50_UPI000381814C: hypothetical protein	0.3000657250
+UniRef50_UPI000381814C: hypothetical protein|unclassified	0.3000657250
+UniRef50_UPI00035F4BA7: hypothetical protein	0.3000473207
+UniRef50_UPI00035F4BA7: hypothetical protein|unclassified	0.3000473207
+UniRef50_W0SBV7: Tripartite ATP-independent periplasmic transporter DctQ	0.3000231886
+UniRef50_W0SBV7: Tripartite ATP-independent periplasmic transporter DctQ|unclassified	0.3000231886
+UniRef50_O67611: Acyl carrier protein	0.3000064182
+UniRef50_O67611: Acyl carrier protein|unclassified	0.3000064182
+UniRef50_W1HQI6	0.2999946211
+UniRef50_W1HQI6|unclassified	0.2999946211
+UniRef50_I5C4G9: Polyhydroxyalkonate synthesis repressor PhaR	0.2999902673
+UniRef50_I5C4G9: Polyhydroxyalkonate synthesis repressor PhaR|unclassified	0.2999902673
+UniRef50_UPI0003B727B1: 50S ribosomal protein L24	0.2999733595
+UniRef50_UPI0003B727B1: 50S ribosomal protein L24|unclassified	0.2999733595
+UniRef50_UPI00045E83A4: hypothetical protein	0.2999639499
+UniRef50_UPI00045E83A4: hypothetical protein|unclassified	0.2999639499
+UniRef50_UPI000363D0BD: sulfonate ABC transporter ATP-binding lipoprotein	0.2999314742
+UniRef50_UPI000363D0BD: sulfonate ABC transporter ATP-binding lipoprotein|unclassified	0.2999314742
+UniRef50_G8PVW6: Protein containing DUF1348	0.2999300959
+UniRef50_G8PVW6: Protein containing DUF1348|unclassified	0.2999300959
+UniRef50_V8R296	0.2999189096
+UniRef50_V8R296|unclassified	0.2999189096
+UniRef50_D5AMW8	0.2998505788
+UniRef50_D5AMW8|unclassified	0.2998505788
+UniRef50_UPI0001FFDC99: DEAD/DEAH box helicase domain protein, partial	0.2998437970
+UniRef50_UPI0001FFDC99: DEAD/DEAH box helicase domain protein, partial|unclassified	0.2998437970
+UniRef50_UPI00028A16C6: hydrolase	0.2998378062
+UniRef50_UPI00028A16C6: hydrolase|unclassified	0.2998378062
+UniRef50_R1CYA6	0.2998270287
+UniRef50_R1CYA6|unclassified	0.2998270287
+UniRef50_UPI0004650AF8: hypothetical protein	0.2998072512
+UniRef50_UPI0004650AF8: hypothetical protein|unclassified	0.2998072512
+UniRef50_UPI0002628848: short-chain dehydrogenase	0.2997549632
+UniRef50_UPI0002628848: short-chain dehydrogenase|unclassified	0.2997549632
+UniRef50_X5PYX7	0.2996906867
+UniRef50_X5PYX7|unclassified	0.2996906867
+UniRef50_Q11F34	0.2996856732
+UniRef50_Q11F34|unclassified	0.2996856732
+UniRef50_C9A5T3	0.2996812475
+UniRef50_C9A5T3|unclassified	0.2996812475
+UniRef50_UPI0003694929: hypothetical protein	0.2996685612
+UniRef50_UPI0003694929: hypothetical protein|unclassified	0.2996685612
+UniRef50_C1DQS2: Ribonuclease 3	0.2996606255
+UniRef50_C1DQS2: Ribonuclease 3|unclassified	0.2996606255
+UniRef50_UPI0003B4CA69: mannose-1-phosphate guanyltransferase	0.2996275819
+UniRef50_UPI0003B4CA69: mannose-1-phosphate guanyltransferase|unclassified	0.2996275819
+UniRef50_W1VT81: Glutathione synthase (Fragment)	0.2996165958
+UniRef50_W1VT81: Glutathione synthase (Fragment)|unclassified	0.2996165958
+UniRef50_UPI00047ACB4C: amino acid permease, partial	0.2996141908
+UniRef50_UPI00047ACB4C: amino acid permease, partial|unclassified	0.2996141908
+UniRef50_UPI00046CEA56: hypothetical protein	0.2995956051
+UniRef50_UPI00046CEA56: hypothetical protein|unclassified	0.2995956051
+UniRef50_W4VGE3	0.2995825322
+UniRef50_W4VGE3|unclassified	0.2995825322
+UniRef50_W8S9D5: Tellurite resistance protein (TelA)	0.2995475417
+UniRef50_W8S9D5: Tellurite resistance protein (TelA)|unclassified	0.2995475417
+UniRef50_UPI0001584446: predicted protein	0.2995351956
+UniRef50_UPI0001584446: predicted protein|unclassified	0.2995351956
+UniRef50_UPI0004642331: hypothetical protein	0.2995134901
+UniRef50_UPI0004642331: hypothetical protein|unclassified	0.2995134901
+UniRef50_J0CD84	0.2995044753
+UniRef50_J0CD84|unclassified	0.2995044753
+UniRef50_UPI0004734B97: hypothetical protein	0.2994779015
+UniRef50_UPI0004734B97: hypothetical protein|unclassified	0.2994779015
+UniRef50_Q6A5L3: Putative 3-methyladenine DNA glycosylase	0.2994746480
+UniRef50_Q6A5L3: Putative 3-methyladenine DNA glycosylase|unclassified	0.2994746480
+UniRef50_Q834B4: Phosphate import ATP-binding protein PstB 1	0.2994481370
+UniRef50_Q834B4: Phosphate import ATP-binding protein PstB 1|unclassified	0.2994481370
+UniRef50_H3G8I8	0.2994395128
+UniRef50_H3G8I8|unclassified	0.2994395128
+UniRef50_Q88BP2	0.2993783560
+UniRef50_Q88BP2|unclassified	0.2993783560
+UniRef50_Q3JHX4	0.2993593996
+UniRef50_Q3JHX4|unclassified	0.2993593996
+UniRef50_A6W759	0.2993443687
+UniRef50_A6W759|unclassified	0.2993443687
+UniRef50_P26799: Adenosylhomocysteinase (Fragment)	0.2993038343
+UniRef50_P26799: Adenosylhomocysteinase (Fragment)|unclassified	0.2993038343
+UniRef50_UPI0003712D73: MULTISPECIES: hypothetical protein	0.2992640112
+UniRef50_UPI0003712D73: MULTISPECIES: hypothetical protein|unclassified	0.2992640112
+UniRef50_Q2SXQ4: Pyridoxamine kinase	0.2992512094
+UniRef50_Q2SXQ4: Pyridoxamine kinase|unclassified	0.2992512094
+UniRef50_T1YAZ9: Transposase	0.2992293738
+UniRef50_T1YAZ9: Transposase|unclassified	0.2992293738
+UniRef50_E5VNE0: DNA replication and repair protein RecF	0.2992235208
+UniRef50_E5VNE0: DNA replication and repair protein RecF|unclassified	0.2992235208
+UniRef50_G3J1B3: HupE/UreJ protein	0.2992165676
+UniRef50_G3J1B3: HupE/UreJ protein|unclassified	0.2992165676
+UniRef50_E8U6Y9	0.2992155881
+UniRef50_E8U6Y9|unclassified	0.2992155881
+UniRef50_UPI00035EC028: hypothetical protein	0.2991722537
+UniRef50_UPI00035EC028: hypothetical protein|unclassified	0.2991722537
+UniRef50_UPI00041A4561: hypothetical protein	0.2991537052
+UniRef50_UPI00041A4561: hypothetical protein|unclassified	0.2991537052
+UniRef50_UPI00036C6E58: hypothetical protein	0.2991411165
+UniRef50_UPI00036C6E58: hypothetical protein|unclassified	0.2991411165
+UniRef50_A7MPP5	0.2991086428
+UniRef50_A7MPP5|unclassified	0.2991086428
+UniRef50_UPI0002DDE7B4: nitrate/nitrite transport protein NarU	0.2990499452
+UniRef50_UPI0002DDE7B4: nitrate/nitrite transport protein NarU|unclassified	0.2990499452
+UniRef50_UPI0002899BE2: LysR family transcriptional regulator	0.2990478208
+UniRef50_UPI0002899BE2: LysR family transcriptional regulator|unclassified	0.2990478208
+UniRef50_Q9CHQ8: Dephospho-CoA kinase	0.2990416790
+UniRef50_Q9CHQ8: Dephospho-CoA kinase|unclassified	0.2990416790
+UniRef50_N6VGW8	0.2990340875
+UniRef50_N6VGW8|unclassified	0.2990340875
+UniRef50_UPI0003B71379: N-acetyltransferase	0.2989841688
+UniRef50_UPI0003B71379: N-acetyltransferase|unclassified	0.2989841688
+UniRef50_L1GFB8	0.2989822550
+UniRef50_L1GFB8|unclassified	0.2989822550
+UniRef50_UPI00036DA55D: hypothetical protein	0.2989763763
+UniRef50_UPI00036DA55D: hypothetical protein|unclassified	0.2989763763
+UniRef50_UPI00037FBF9D: hypothetical protein	0.2988822347
+UniRef50_UPI00037FBF9D: hypothetical protein|unclassified	0.2988822347
+UniRef50_M4SCZ6: PRC-barrel domain-containing protein	0.2988658231
+UniRef50_M4SCZ6: PRC-barrel domain-containing protein|unclassified	0.2988658231
+UniRef50_UPI0003B4A61E: DEAD/DEAH box helicase	0.2988517743
+UniRef50_UPI0003B4A61E: DEAD/DEAH box helicase|unclassified	0.2988517743
+UniRef50_UPI0003289BBA: PREDICTED: translation initiation factor IF-2-like	0.2988340645
+UniRef50_UPI0003289BBA: PREDICTED: translation initiation factor IF-2-like|unclassified	0.2988340645
+UniRef50_X6I1D3: Ester cyclase	0.2988245163
+UniRef50_X6I1D3: Ester cyclase|unclassified	0.2988245163
+UniRef50_D8ADR7	0.2987991778
+UniRef50_D8ADR7|unclassified	0.2987991778
+UniRef50_UPI00046278DB: long-chain fatty acid--CoA ligase, partial	0.2987155283
+UniRef50_UPI00046278DB: long-chain fatty acid--CoA ligase, partial|unclassified	0.2987155283
+UniRef50_Q51697: Isoquinoline 1-oxidoreductase subunit alpha	0.2987131305
+UniRef50_Q51697: Isoquinoline 1-oxidoreductase subunit alpha|unclassified	0.2987131305
+UniRef50_A4E9H7	0.2987127781
+UniRef50_A4E9H7|unclassified	0.2987127781
+UniRef50_A9M3R6: PilS cassette	0.2987086469
+UniRef50_A9M3R6: PilS cassette|unclassified	0.2987086469
+UniRef50_UPI000262730A: exodeoxyribonuclease III	0.2986774993
+UniRef50_UPI000262730A: exodeoxyribonuclease III|unclassified	0.2986774993
+UniRef50_UPI000361956A: hypothetical protein	0.2986497626
+UniRef50_UPI000361956A: hypothetical protein|unclassified	0.2986497626
+UniRef50_X1PEA5: Marine sediment metagenome DNA, contig: S06H3_S08967 (Fragment)	0.2986444367
+UniRef50_X1PEA5: Marine sediment metagenome DNA, contig: S06H3_S08967 (Fragment)|unclassified	0.2986444367
+UniRef50_UPI000472739A: membrane protein	0.2985532201
+UniRef50_UPI000472739A: membrane protein|unclassified	0.2985532201
+UniRef50_UPI0003802080: hypothetical protein	0.2985248250
+UniRef50_UPI0003802080: hypothetical protein|unclassified	0.2985248250
+UniRef50_UPI00046A45CC: ArsR family transcriptional regulator	0.2985151536
+UniRef50_UPI00046A45CC: ArsR family transcriptional regulator|unclassified	0.2985151536
+UniRef50_Y5FPX8	0.2984889453
+UniRef50_Y5FPX8|unclassified	0.2984889453
+UniRef50_O03554: Cytochrome c oxidase subunit 1 (Fragment)	0.2984856200
+UniRef50_O03554: Cytochrome c oxidase subunit 1 (Fragment)|unclassified	0.2984856200
+UniRef50_L0KSY2	0.2984766057
+UniRef50_L0KSY2|unclassified	0.2984766057
+UniRef50_A0A037VGU7	0.2984569387
+UniRef50_A0A037VGU7|unclassified	0.2984569387
+UniRef50_UPI000378688C: hypothetical protein	0.2984330032
+UniRef50_UPI000378688C: hypothetical protein|unclassified	0.2984330032
+UniRef50_UPI0003B738BF: O-acetylhomoserine aminocarboxypropyltransferase	0.2983931212
+UniRef50_UPI0003B738BF: O-acetylhomoserine aminocarboxypropyltransferase|unclassified	0.2983931212
+UniRef50_UPI00047C938B: cold-shock protein	0.2983659277
+UniRef50_UPI00047C938B: cold-shock protein|unclassified	0.2983659277
+UniRef50_UPI00046708E9: sirohydrochlorin ferrochelatase	0.2983434949
+UniRef50_UPI00046708E9: sirohydrochlorin ferrochelatase|unclassified	0.2983434949
+UniRef50_UPI0004410E83: hypothetical protein AURDEDRAFT_58877, partial	0.2983396159
+UniRef50_UPI0004410E83: hypothetical protein AURDEDRAFT_58877, partial|unclassified	0.2983396159
+UniRef50_UPI00039F8289: hypothetical protein	0.2983385755
+UniRef50_UPI00039F8289: hypothetical protein|unclassified	0.2983385755
+UniRef50_UPI0003B42974: ABC transporter ATP-binding protein	0.2983252551
+UniRef50_UPI0003B42974: ABC transporter ATP-binding protein|unclassified	0.2983252551
+UniRef50_X2NAE5	0.2983240206
+UniRef50_X2NAE5|unclassified	0.2983240206
+UniRef50_C7NG78	0.2983233093
+UniRef50_C7NG78|unclassified	0.2983233093
+UniRef50_C2S6Z9	0.2983166485
+UniRef50_C2S6Z9|unclassified	0.2983166485
+UniRef50_UPI00047DA8A6: transcriptional regulator	0.2983151921
+UniRef50_UPI00047DA8A6: transcriptional regulator|unclassified	0.2983151921
+UniRef50_V9G8C1: Transketolase	0.2983102546
+UniRef50_V9G8C1: Transketolase|unclassified	0.2983102546
+UniRef50_F3C2H3	0.2982831095
+UniRef50_F3C2H3|unclassified	0.2982831095
+UniRef50_UPI000440AFA0: hypothetical protein STEHIDRAFT_46064	0.2982629991
+UniRef50_UPI000440AFA0: hypothetical protein STEHIDRAFT_46064|unclassified	0.2982629991
+UniRef50_UPI00047A79FF: LysR family transcriptional regulator	0.2982507412
+UniRef50_UPI00047A79FF: LysR family transcriptional regulator|unclassified	0.2982507412
+UniRef50_W9T3Q4: RND efflux transporter	0.2982354012
+UniRef50_W9T3Q4: RND efflux transporter|unclassified	0.2982354012
+UniRef50_UPI0003C1AD3B: PREDICTED: peroxisomal multifunctional enzyme type 2-like	0.2982330039
+UniRef50_UPI0003C1AD3B: PREDICTED: peroxisomal multifunctional enzyme type 2-like|unclassified	0.2982330039
+UniRef50_U6D0R7: Tensin 3 (Fragment)	0.2982195230
+UniRef50_U6D0R7: Tensin 3 (Fragment)|unclassified	0.2982195230
+UniRef50_J2X9S2	0.2982011708
+UniRef50_J2X9S2|unclassified	0.2982011708
+UniRef50_F5XNW0	0.2981929236
+UniRef50_F5XNW0|unclassified	0.2981929236
+UniRef50_UPI00046FE274: hypothetical protein	0.2981864009
+UniRef50_UPI00046FE274: hypothetical protein|unclassified	0.2981864009
+UniRef50_W4M2P0	0.2981794631
+UniRef50_W4M2P0|unclassified	0.2981794631
+UniRef50_K1H2M5: Carbamoyl-phosphate synthase small chain	0.2981594769
+UniRef50_K1H2M5: Carbamoyl-phosphate synthase small chain|unclassified	0.2981594769
+UniRef50_P58402: Sensor protein EvgS	0.2981514609
+UniRef50_P58402: Sensor protein EvgS|g__Escherichia.s__Escherichia_coli	0.2981514609
+UniRef50_UPI00047A3A72: phosphate ABC transporter permease	0.2981469305
+UniRef50_UPI00047A3A72: phosphate ABC transporter permease|unclassified	0.2981469305
+UniRef50_UPI00047863ED: hypothetical protein	0.2981273461
+UniRef50_UPI00047863ED: hypothetical protein|unclassified	0.2981273461
+UniRef50_UPI0003B5F58F: anthranilate synthase subunit I	0.2981209469
+UniRef50_UPI0003B5F58F: anthranilate synthase subunit I|unclassified	0.2981209469
+UniRef50_C6XR84: NAD/NADP transhydrogenase alpha subunit-like protein	0.2981031419
+UniRef50_C6XR84: NAD/NADP transhydrogenase alpha subunit-like protein|unclassified	0.2981031419
+UniRef50_G8UTK4	0.2980741998
+UniRef50_G8UTK4|unclassified	0.2980741998
+UniRef50_U1CZI8	0.2980697889
+UniRef50_U1CZI8|unclassified	0.2980697889
+UniRef50_H0E9H7	0.2980630292
+UniRef50_H0E9H7|unclassified	0.2980630292
+UniRef50_UPI00046D54E5: hypothetical protein	0.2980353116
+UniRef50_UPI00046D54E5: hypothetical protein|unclassified	0.2980353116
+UniRef50_W4SND1	0.2980316217
+UniRef50_W4SND1|unclassified	0.2980316217
+UniRef50_C7BI91	0.2980177348
+UniRef50_C7BI91|unclassified	0.2980177348
+UniRef50_UPI00046CFAC8: hypothetical protein	0.2979866638
+UniRef50_UPI00046CFAC8: hypothetical protein|unclassified	0.2979866638
+UniRef50_UPI00046F7098: hypothetical protein	0.2979545545
+UniRef50_UPI00046F7098: hypothetical protein|unclassified	0.2979545545
+UniRef50_UPI000467B76B: NADH oxidase	0.2979177560
+UniRef50_UPI000467B76B: NADH oxidase|unclassified	0.2979177560
+UniRef50_UPI0003D746D3: PREDICTED: collagen alpha-1(II) chain-like	0.2978842748
+UniRef50_UPI0003D746D3: PREDICTED: collagen alpha-1(II) chain-like|unclassified	0.2978842748
+UniRef50_M9R8E0: Putative IS30 family transposase	0.2978806855
+UniRef50_M9R8E0: Putative IS30 family transposase|unclassified	0.2978806855
+UniRef50_Q0HTD8	0.2978775631
+UniRef50_Q0HTD8|unclassified	0.2978775631
+UniRef50_UPI00046FEF92: hypothetical protein	0.2978757713
+UniRef50_UPI00046FEF92: hypothetical protein|unclassified	0.2978757713
+UniRef50_U6LF73	0.2978638019
+UniRef50_U6LF73|unclassified	0.2978638019
+UniRef50_A1JL37: Oxygen-dependent coproporphyrinogen-III oxidase	0.2978590934
+UniRef50_A1JL37: Oxygen-dependent coproporphyrinogen-III oxidase|unclassified	0.2978590934
+UniRef50_U6GC00	0.2977863704
+UniRef50_U6GC00|unclassified	0.2977863704
+UniRef50_UPI000366D165: hypothetical protein	0.2977857467
+UniRef50_UPI000366D165: hypothetical protein|unclassified	0.2977857467
+UniRef50_UPI00047593DE: AsnC family transcriptional regulator	0.2977641068
+UniRef50_UPI00047593DE: AsnC family transcriptional regulator|unclassified	0.2977641068
+UniRef50_V6UL61	0.2977424802
+UniRef50_V6UL61|unclassified	0.2977424802
+UniRef50_UPI000366BF0F: hypothetical protein	0.2976821017
+UniRef50_UPI000366BF0F: hypothetical protein|unclassified	0.2976821017
+UniRef50_F9ZDK1	0.2976810552
+UniRef50_F9ZDK1|unclassified	0.2976810552
+UniRef50_B1N6K1	0.2976523884
+UniRef50_B1N6K1|unclassified	0.2976523884
+UniRef50_A3PPL7	0.2976312044
+UniRef50_A3PPL7|unclassified	0.2976312044
+UniRef50_Q8YIF7: ATP synthase beta subunit/transription termination factor rho	0.2976260346
+UniRef50_Q8YIF7: ATP synthase beta subunit/transription termination factor rho|unclassified	0.2976260346
+UniRef50_V5E5T1: Protein YgiW	0.2976178528
+UniRef50_V5E5T1: Protein YgiW|unclassified	0.2976178528
+UniRef50_I1R5B6	0.2976166418
+UniRef50_I1R5B6|unclassified	0.2976166418
+UniRef50_D3QER6: Transcriptional repressor of the fructose operon, DeoR family	0.2976124160
+UniRef50_D3QER6: Transcriptional repressor of the fructose operon, DeoR family|unclassified	0.2976124160
+UniRef50_W5X7W3: Preprotein translocase subunit SecA	0.2976092050
+UniRef50_W5X7W3: Preprotein translocase subunit SecA|unclassified	0.2976092050
+UniRef50_A0A033V872	0.2976031008
+UniRef50_A0A033V872|unclassified	0.2976031008
+UniRef50_UPI000378CC5B: hypothetical protein	0.2975695452
+UniRef50_UPI000378CC5B: hypothetical protein|unclassified	0.2975695452
+UniRef50_A0A024J8E7: Similar to Saccharomyces cerevisiae YEL050C RML2 Mitochondrial ribosomal protein of the large subunit	0.2975624412
+UniRef50_A0A024J8E7: Similar to Saccharomyces cerevisiae YEL050C RML2 Mitochondrial ribosomal protein of the large subunit|unclassified	0.2975624412
+UniRef50_E7MKD2	0.2975496424
+UniRef50_E7MKD2|unclassified	0.2975496424
+UniRef50_UPI0003682815: transcriptional regulator	0.2974833124
+UniRef50_UPI0003682815: transcriptional regulator|unclassified	0.2974833124
+UniRef50_Q8W2W6: Putative hyperpolarization-activated cation channel protein	0.2974803850
+UniRef50_Q8W2W6: Putative hyperpolarization-activated cation channel protein|unclassified	0.2974803850
+UniRef50_UPI00037CEA1F: hypothetical protein	0.2974614588
+UniRef50_UPI00037CEA1F: hypothetical protein|unclassified	0.2974614588
+UniRef50_Q6K3Q9	0.2974566866
+UniRef50_Q6K3Q9|unclassified	0.2974566866
+UniRef50_UPI00037E54B3: hypothetical protein	0.2974495512
+UniRef50_UPI00037E54B3: hypothetical protein|unclassified	0.2974495512
+UniRef50_B9LUV3: 6,7-dimethyl-8-ribityllumazine synthase	0.2974485773
+UniRef50_B9LUV3: 6,7-dimethyl-8-ribityllumazine synthase|unclassified	0.2974485773
+UniRef50_A5WAU3	0.2974285551
+UniRef50_A5WAU3|unclassified	0.2974285551
+UniRef50_Q0FGA1: ArsC family protein	0.2974210176
+UniRef50_Q0FGA1: ArsC family protein|unclassified	0.2974210176
+UniRef50_V8K2E0: Transposase	0.2974166675
+UniRef50_V8K2E0: Transposase|unclassified	0.2974166675
+UniRef50_E6RH94	0.2973536317
+UniRef50_E6RH94|unclassified	0.2973536317
+UniRef50_UPI000395B0F7: streptomycin 3''''''''-kinase	0.2973459517
+UniRef50_UPI000395B0F7: streptomycin 3''''''''-kinase|unclassified	0.2973459517
+UniRef50_X3WXP6	0.2973426473
+UniRef50_X3WXP6|unclassified	0.2973426473
+UniRef50_Q8TSH7: Malate dehydrogenase	0.2973370958
+UniRef50_Q8TSH7: Malate dehydrogenase|unclassified	0.2973370958
+UniRef50_UPI000248D539: transport system permease, partial	0.2973215468
+UniRef50_UPI000248D539: transport system permease, partial|unclassified	0.2973215468
+UniRef50_UPI0004646E46: hypothetical protein	0.2972822164
+UniRef50_UPI0004646E46: hypothetical protein|unclassified	0.2972822164
+UniRef50_Q02GC2: Type 4 fimbrial biogenesis protein PilY1	0.2972651605
+UniRef50_Q02GC2: Type 4 fimbrial biogenesis protein PilY1|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.2972651605
+UniRef50_UPI00020008D2: putative magnesium-translocating P-type ATPase	0.2972614611
+UniRef50_UPI00020008D2: putative magnesium-translocating P-type ATPase|unclassified	0.2972614611
+UniRef50_UPI0002BB2912: hypothetical protein	0.2972551206
+UniRef50_UPI0002BB2912: hypothetical protein|unclassified	0.2972551206
+UniRef50_UPI00037B3990: hypothetical protein	0.2972433192
+UniRef50_UPI00037B3990: hypothetical protein|unclassified	0.2972433192
+UniRef50_T0CZB4	0.2972411909
+UniRef50_T0CZB4|unclassified	0.2972411909
+UniRef50_UPI0004544631: PREDICTED: double-stranded RNA-specific adenosine deaminase-like, partial	0.2972354633
+UniRef50_UPI0004544631: PREDICTED: double-stranded RNA-specific adenosine deaminase-like, partial|unclassified	0.2972354633
+UniRef50_UPI0003644AAA: hypothetical protein, partial	0.2972182854
+UniRef50_UPI0003644AAA: hypothetical protein, partial|unclassified	0.2972182854
+UniRef50_A9E4Y0: Invasion associated family protein	0.2971834700
+UniRef50_A9E4Y0: Invasion associated family protein|unclassified	0.2971834700
+UniRef50_UPI0004756F41: hypothetical protein	0.2970940331
+UniRef50_UPI0004756F41: hypothetical protein|unclassified	0.2970940331
+UniRef50_S1T400	0.2970544695
+UniRef50_S1T400|unclassified	0.2970544695
+UniRef50_Q7NV93	0.2970193226
+UniRef50_Q7NV93|unclassified	0.2970193226
+UniRef50_UPI0002F8EAB4: hypothetical protein	0.2970061948
+UniRef50_UPI0002F8EAB4: hypothetical protein|unclassified	0.2970061948
+UniRef50_V6EAJ5: Flagellar motor rotation protein MotB	0.2969988997
+UniRef50_V6EAJ5: Flagellar motor rotation protein MotB|unclassified	0.2969988997
+UniRef50_Q9ZA63	0.2969511975
+UniRef50_Q9ZA63|unclassified	0.2969511975
+UniRef50_UPI00016C0B20: ABC transporter permease	0.2969393320
+UniRef50_UPI00016C0B20: ABC transporter permease|unclassified	0.2969393320
+UniRef50_UPI00047EDBEA: hypothetical protein	0.2969106837
+UniRef50_UPI00047EDBEA: hypothetical protein|unclassified	0.2969106837
+UniRef50_UPI0003003A21: hypothetical protein	0.2968671315
+UniRef50_UPI0003003A21: hypothetical protein|unclassified	0.2968671315
+UniRef50_W8RW52	0.2967503360
+UniRef50_W8RW52|unclassified	0.2967503360
+UniRef50_UPI00046A42D3: chorismate synthase	0.2967292619
+UniRef50_UPI00046A42D3: chorismate synthase|unclassified	0.2967292619
+UniRef50_UPI0002D2D74D: hypothetical protein	0.2967286412
+UniRef50_UPI0002D2D74D: hypothetical protein|unclassified	0.2967286412
+UniRef50_C4LBT6: CreA family protein	0.2967194131
+UniRef50_C4LBT6: CreA family protein|unclassified	0.2967194131
+UniRef50_UPI00036DDC01: hypothetical protein	0.2967003945
+UniRef50_UPI00036DDC01: hypothetical protein|unclassified	0.2967003945
+UniRef50_UPI00047CC138: carbamate kinase	0.2966913045
+UniRef50_UPI00047CC138: carbamate kinase|unclassified	0.2966913045
+UniRef50_G8AH05	0.2966820312
+UniRef50_G8AH05|unclassified	0.2966820312
+UniRef50_L8H1P2: Ubiquitin interaction motif domain containing protein (Fragment)	0.2966638755
+UniRef50_L8H1P2: Ubiquitin interaction motif domain containing protein (Fragment)|unclassified	0.2966638755
+UniRef50_UPI0003450573: hypothetical protein	0.2966581390
+UniRef50_UPI0003450573: hypothetical protein|unclassified	0.2966581390
+UniRef50_W0ZYU7: L,D-transpeptidase ErfK	0.2966580380
+UniRef50_W0ZYU7: L,D-transpeptidase ErfK|unclassified	0.2966580380
+UniRef50_UPI0002B4D2DC: PREDICTED: succinate-semialdehyde dehydrogenase (acetylating)-like	0.2966487630
+UniRef50_UPI0002B4D2DC: PREDICTED: succinate-semialdehyde dehydrogenase (acetylating)-like|unclassified	0.2966487630
+UniRef50_UPI00045461FB	0.2966421888
+UniRef50_UPI00045461FB|unclassified	0.2966421888
+UniRef50_UPI000441CD41: PREDICTED: basic proline-rich protein-like	0.2966055613
+UniRef50_UPI000441CD41: PREDICTED: basic proline-rich protein-like|unclassified	0.2966055613
+UniRef50_UPI000371FE16: hypothetical protein	0.2965999642
+UniRef50_UPI000371FE16: hypothetical protein|unclassified	0.2965999642
+UniRef50_UPI0004693869: hypothetical protein	0.2965758604
+UniRef50_UPI0004693869: hypothetical protein|unclassified	0.2965758604
+UniRef50_M0CK81: Nuclease (SNase domain-containing protein)	0.2965398567
+UniRef50_M0CK81: Nuclease (SNase domain-containing protein)|unclassified	0.2965398567
+UniRef50_UPI0003B7B946: polyvinylalcohol dehydrogenase, partial	0.2965209385
+UniRef50_UPI0003B7B946: polyvinylalcohol dehydrogenase, partial|unclassified	0.2965209385
+UniRef50_G9AGE3	0.2965094349
+UniRef50_G9AGE3|unclassified	0.2965094349
+UniRef50_UPI0003090BBE: chemotaxis protein CheY	0.2965049627
+UniRef50_UPI0003090BBE: chemotaxis protein CheY|unclassified	0.2965049627
+UniRef50_UPI0003B48A5B: hypothetical protein	0.2964713157
+UniRef50_UPI0003B48A5B: hypothetical protein|unclassified	0.2964713157
+UniRef50_Q3IFA0: Putative Holliday junction resolvase	0.2964167806
+UniRef50_Q3IFA0: Putative Holliday junction resolvase|unclassified	0.2964167806
+UniRef50_UPI00037DE0EA: hypothetical protein	0.2964099997
+UniRef50_UPI00037DE0EA: hypothetical protein|unclassified	0.2964099997
+UniRef50_UPI0003342D90: PREDICTED: basic proline-rich protein-like	0.2964011784
+UniRef50_UPI0003342D90: PREDICTED: basic proline-rich protein-like|unclassified	0.2964011784
+UniRef50_Q8DCB9: Non-canonical purine NTP pyrophosphatase	0.2963987199
+UniRef50_Q8DCB9: Non-canonical purine NTP pyrophosphatase|unclassified	0.2963987199
+UniRef50_Q4L979: Glycosyl-4,4'-diaponeurosporenoate acyltransferase	0.2963719178
+UniRef50_Q4L979: Glycosyl-4,4'-diaponeurosporenoate acyltransferase|unclassified	0.2963719178
+UniRef50_UPI0003B67EAC: phosphate ABC transporter ATP-binding protein	0.2963526737
+UniRef50_UPI0003B67EAC: phosphate ABC transporter ATP-binding protein|unclassified	0.2963526737
+UniRef50_UPI00047EE669: hypothetical protein	0.2963417318
+UniRef50_UPI00047EE669: hypothetical protein|unclassified	0.2963417318
+UniRef50_Q5HGR7	0.2963310899
+UniRef50_Q5HGR7|unclassified	0.2963310899
+UniRef50_Q9X327: PXO1-57	0.2963284825
+UniRef50_Q9X327: PXO1-57|unclassified	0.2963284825
+UniRef50_Q8N8N7-2: Isoform 2 of Prostaglandin reductase 2	0.2963228391
+UniRef50_Q8N8N7-2: Isoform 2 of Prostaglandin reductase 2|unclassified	0.2963228391
+UniRef50_UPI00038079F7: hypothetical protein	0.2962973615
+UniRef50_UPI00038079F7: hypothetical protein|unclassified	0.2962973615
+UniRef50_A0LJR4: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.2962512851
+UniRef50_A0LJR4: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.2962512851
+UniRef50_C4UBB8: sn-glycerol-3-phosphate-binding periplasmic protein ugpB	0.2962325988
+UniRef50_C4UBB8: sn-glycerol-3-phosphate-binding periplasmic protein ugpB|unclassified	0.2962325988
+UniRef50_M9RP28	0.2962060897
+UniRef50_M9RP28|unclassified	0.2962060897
+UniRef50_Q73CC7	0.2961959826
+UniRef50_Q73CC7|unclassified	0.2961959826
+UniRef50_V2DIK3	0.2961822834
+UniRef50_V2DIK3|unclassified	0.2961822834
+UniRef50_UPI00047EF387: hypothetical protein	0.2961574100
+UniRef50_UPI00047EF387: hypothetical protein|unclassified	0.2961574100
+UniRef50_A0A031K6Z2	0.2961403002
+UniRef50_A0A031K6Z2|unclassified	0.2961403002
+UniRef50_UPI0003B4F713: flavine monooxygenase	0.2961398293
+UniRef50_UPI0003B4F713: flavine monooxygenase|unclassified	0.2961398293
+UniRef50_A0A022RQY7	0.2961351923
+UniRef50_A0A022RQY7|unclassified	0.2961351923
+UniRef50_T2JWX2: Putative oxidoreductase	0.2961052379
+UniRef50_T2JWX2: Putative oxidoreductase|unclassified	0.2961052379
+UniRef50_UPI00036C04C4: baseplate assembly protein	0.2960850939
+UniRef50_UPI00036C04C4: baseplate assembly protein|unclassified	0.2960850939
+UniRef50_B5YVC4	0.2960756623
+UniRef50_B5YVC4|unclassified	0.2960756623
+UniRef50_UPI000373559D: hypothetical protein	0.2960521867
+UniRef50_UPI000373559D: hypothetical protein|unclassified	0.2960521867
+UniRef50_UPI0004689B76: ABC transporter ATP-binding protein	0.2960386564
+UniRef50_UPI0004689B76: ABC transporter ATP-binding protein|unclassified	0.2960386564
+UniRef50_UPI0002F0BE77: hypothetical protein	0.2960312312
+UniRef50_UPI0002F0BE77: hypothetical protein|unclassified	0.2960312312
+UniRef50_A1U6F9: 4-hydroxythreonine-4-phosphate dehydrogenase	0.2960292725
+UniRef50_A1U6F9: 4-hydroxythreonine-4-phosphate dehydrogenase|unclassified	0.2960292725
+UniRef50_K9AH16	0.2960166957
+UniRef50_K9AH16|unclassified	0.2960166957
+UniRef50_S5MQR6	0.2959902320
+UniRef50_S5MQR6|unclassified	0.2959902320
+UniRef50_A0A011TWN2	0.2959875820
+UniRef50_A0A011TWN2|unclassified	0.2959875820
+UniRef50_A0A024J9B5: Similar to Saccharomyces cerevisiae YNL284C MRPL10 Mitochondrial ribosomal protein of the large subunit	0.2959871324
+UniRef50_A0A024J9B5: Similar to Saccharomyces cerevisiae YNL284C MRPL10 Mitochondrial ribosomal protein of the large subunit|unclassified	0.2959871324
+UniRef50_UPI00047EF87F: adenine deaminase	0.2959797021
+UniRef50_UPI00047EF87F: adenine deaminase|unclassified	0.2959797021
+UniRef50_F3ZFF1	0.2959757323
+UniRef50_F3ZFF1|unclassified	0.2959757323
+UniRef50_A0A011NRP5: Tellurite resistance protein TerB	0.2959613301
+UniRef50_A0A011NRP5: Tellurite resistance protein TerB|unclassified	0.2959613301
+UniRef50_Q2CG67	0.2959571727
+UniRef50_Q2CG67|unclassified	0.2959571727
+UniRef50_K8WNC1: NAD-dependent epimerase/dehydratase	0.2959070155
+UniRef50_K8WNC1: NAD-dependent epimerase/dehydratase|unclassified	0.2959070155
+UniRef50_Q883I5: D-ribose pyranase	0.2958989966
+UniRef50_Q883I5: D-ribose pyranase|unclassified	0.2958989966
+UniRef50_Q41348: Probable pyridoxal biosynthesis protein PDX1 (Fragment)	0.2958868686
+UniRef50_Q41348: Probable pyridoxal biosynthesis protein PDX1 (Fragment)|unclassified	0.2958868686
+UniRef50_M5JQI6: Transposase IS66	0.2958806285
+UniRef50_M5JQI6: Transposase IS66|unclassified	0.2958806285
+UniRef50_W1XW56: GDP-L-fucose synthetase protein (Fragment)	0.2958509115
+UniRef50_W1XW56: GDP-L-fucose synthetase protein (Fragment)|unclassified	0.2958509115
+UniRef50_P54436: UPF0033 protein YrkI	0.2958154966
+UniRef50_P54436: UPF0033 protein YrkI|unclassified	0.2958154966
+UniRef50_D9VUU3: Predicted protein	0.2957907057
+UniRef50_D9VUU3: Predicted protein|unclassified	0.2957907057
+UniRef50_A6X690	0.2957776877
+UniRef50_A6X690|unclassified	0.2957776877
+UniRef50_C0KGL6: LysR family transcriptional regulator	0.2957566773
+UniRef50_C0KGL6: LysR family transcriptional regulator|unclassified	0.2957566773
+UniRef50_UPI00036AF80F: hypothetical protein	0.2957539057
+UniRef50_UPI00036AF80F: hypothetical protein|unclassified	0.2957539057
+UniRef50_A1WLW3	0.2957457960
+UniRef50_A1WLW3|unclassified	0.2957457960
+UniRef50_UPI0003B7617D: hypothetical protein	0.2957266373
+UniRef50_UPI0003B7617D: hypothetical protein|unclassified	0.2957266373
+UniRef50_UPI0002FDE1CC: hypothetical protein	0.2957158818
+UniRef50_UPI0002FDE1CC: hypothetical protein|unclassified	0.2957158818
+UniRef50_UPI0004228A87: hypothetical protein	0.2957053245
+UniRef50_UPI0004228A87: hypothetical protein|unclassified	0.2957053245
+UniRef50_R9XRL0: D-ribose ABC transporter ATP binding protein RbsA	0.2956755173
+UniRef50_R9XRL0: D-ribose ABC transporter ATP binding protein RbsA|unclassified	0.2956755173
+UniRef50_X1MF43: Marine sediment metagenome DNA, contig: S06H3_L01481 (Fragment)	0.2956703501
+UniRef50_X1MF43: Marine sediment metagenome DNA, contig: S06H3_L01481 (Fragment)|unclassified	0.2956703501
+UniRef50_A4WTJ9	0.2956669288
+UniRef50_A4WTJ9|unclassified	0.2956669288
+UniRef50_A6TD90	0.2956350508
+UniRef50_A6TD90|unclassified	0.2956350508
+UniRef50_UPI00035F5AA9: hypothetical protein	0.2955838876
+UniRef50_UPI00035F5AA9: hypothetical protein|unclassified	0.2955838876
+UniRef50_UPI00016C4C7D: molecular chaperone GroEL	0.2955805174
+UniRef50_UPI00016C4C7D: molecular chaperone GroEL|unclassified	0.2955805174
+UniRef50_V7EEB8: FlgD protein	0.2955775518
+UniRef50_V7EEB8: FlgD protein|unclassified	0.2955775518
+UniRef50_V6UN09	0.2955042542
+UniRef50_V6UN09|unclassified	0.2955042542
+UniRef50_A0A022H4X6: GntR family transcriptional regulator	0.2954778492
+UniRef50_A0A022H4X6: GntR family transcriptional regulator|unclassified	0.2954778492
+UniRef50_D7CTD2: PRC-barrel domain protein	0.2954488419
+UniRef50_D7CTD2: PRC-barrel domain protein|unclassified	0.2954488419
+UniRef50_UPI0003B74DC8: LexA family transcriptional regulator	0.2954241782
+UniRef50_UPI0003B74DC8: LexA family transcriptional regulator|unclassified	0.2954241782
+UniRef50_J6YWV0	0.2954192979
+UniRef50_J6YWV0|unclassified	0.2954192979
+UniRef50_B0RYS0: Ribosomal RNA small subunit methyltransferase G	0.2954191529
+UniRef50_B0RYS0: Ribosomal RNA small subunit methyltransferase G|unclassified	0.2954191529
+UniRef50_UPI0003B4984E: trehalose-phosphatase	0.2953922192
+UniRef50_UPI0003B4984E: trehalose-phosphatase|unclassified	0.2953922192
+UniRef50_C5AL70: NIPSNAP family protein	0.2953635415
+UniRef50_C5AL70: NIPSNAP family protein|unclassified	0.2953635415
+UniRef50_UPI0003B57214: TetR family transcriptional regulator	0.2952849278
+UniRef50_UPI0003B57214: TetR family transcriptional regulator|unclassified	0.2952849278
+UniRef50_UPI00035EC4D9: hypothetical protein, partial	0.2952472610
+UniRef50_UPI00035EC4D9: hypothetical protein, partial|unclassified	0.2952472610
+UniRef50_UPI0003735C5A: hypothetical protein	0.2952358139
+UniRef50_UPI0003735C5A: hypothetical protein|unclassified	0.2952358139
+UniRef50_Q9RFD5: Magnesium-chelatase subunit H	0.2952301453
+UniRef50_Q9RFD5: Magnesium-chelatase subunit H|unclassified	0.2952301453
+UniRef50_X1PDI0: Marine sediment metagenome DNA, contig: S06H3_S14222 (Fragment)	0.2952049203
+UniRef50_X1PDI0: Marine sediment metagenome DNA, contig: S06H3_S14222 (Fragment)|unclassified	0.2952049203
+UniRef50_UPI00036C31D6: succinylarginine dihydrolase, partial	0.2951928556
+UniRef50_UPI00036C31D6: succinylarginine dihydrolase, partial|unclassified	0.2951928556
+UniRef50_U1LA38	0.2951485755
+UniRef50_U1LA38|unclassified	0.2951485755
+UniRef50_N0B0S7: PspA/IM30	0.2951418493
+UniRef50_N0B0S7: PspA/IM30|unclassified	0.2951418493
+UniRef50_UPI0003B59F3E: iron ABC transporter substrate-binding protein	0.2951412482
+UniRef50_UPI0003B59F3E: iron ABC transporter substrate-binding protein|unclassified	0.2951412482
+UniRef50_K0T2B1	0.2950951447
+UniRef50_K0T2B1|unclassified	0.2950951447
+UniRef50_X0VZY3: Marine sediment metagenome DNA, contig: S01H1_S23136 (Fragment)	0.2950632129
+UniRef50_X0VZY3: Marine sediment metagenome DNA, contig: S01H1_S23136 (Fragment)|unclassified	0.2950632129
+UniRef50_D6Y411	0.2950483236
+UniRef50_D6Y411|unclassified	0.2950483236
+UniRef50_UPI00041214C6: biotin attachment protein	0.2950158830
+UniRef50_UPI00041214C6: biotin attachment protein|unclassified	0.2950158830
+UniRef50_UPI000376DDAB: hypothetical protein	0.2950100850
+UniRef50_UPI000376DDAB: hypothetical protein|unclassified	0.2950100850
+UniRef50_E7HN63: Cyanate transport cynX domain protein	0.2949646634
+UniRef50_E7HN63: Cyanate transport cynX domain protein|unclassified	0.2949646634
+UniRef50_UPI000404DCD1: hypothetical protein	0.2949597174
+UniRef50_UPI000404DCD1: hypothetical protein|unclassified	0.2949597174
+UniRef50_UPI00047B300A: hypothetical protein	0.2949384891
+UniRef50_UPI00047B300A: hypothetical protein|unclassified	0.2949384891
+UniRef50_S9TLY1	0.2949369169
+UniRef50_S9TLY1|unclassified	0.2949369169
+UniRef50_W8HHU8	0.2949304445
+UniRef50_W8HHU8|unclassified	0.2949304445
+UniRef50_UPI00046AD3AE: dihydroxy-acid dehydratase	0.2949134973
+UniRef50_UPI00046AD3AE: dihydroxy-acid dehydratase|unclassified	0.2949134973
+UniRef50_H3GXG0	0.2948786639
+UniRef50_H3GXG0|unclassified	0.2948786639
+UniRef50_UPI000376FBF5: hypothetical protein	0.2948515060
+UniRef50_UPI000376FBF5: hypothetical protein|unclassified	0.2948515060
+UniRef50_B3WUL9: IS2, transposase orfB	0.2947950560
+UniRef50_B3WUL9: IS2, transposase orfB|unclassified	0.2947950560
+UniRef50_UPI00047D654A: 8-amino-7-oxononanoate synthase	0.2947755712
+UniRef50_UPI00047D654A: 8-amino-7-oxononanoate synthase|unclassified	0.2947755712
+UniRef50_F6QXT6	0.2947361704
+UniRef50_F6QXT6|unclassified	0.2947361704
+UniRef50_K2B5G3	0.2947152868
+UniRef50_K2B5G3|unclassified	0.2947152868
+UniRef50_UPI00035F04F0: hypothetical protein	0.2946801282
+UniRef50_UPI00035F04F0: hypothetical protein|unclassified	0.2946801282
+UniRef50_N2ML48	0.2946619270
+UniRef50_N2ML48|unclassified	0.2946619270
+UniRef50_Q7ND90: Gll4346 protein	0.2946425887
+UniRef50_Q7ND90: Gll4346 protein|unclassified	0.2946425887
+UniRef50_UPI0003692650: hypothetical protein, partial	0.2946418970
+UniRef50_UPI0003692650: hypothetical protein, partial|unclassified	0.2946418970
+UniRef50_UPI0004772082: formate--tetrahydrofolate ligase	0.2946403678
+UniRef50_UPI0004772082: formate--tetrahydrofolate ligase|unclassified	0.2946403678
+UniRef50_A0A017Y9Y3	0.2945878125
+UniRef50_A0A017Y9Y3|unclassified	0.2945878125
+UniRef50_R5TD41: dGTPase	0.2945753225
+UniRef50_R5TD41: dGTPase|unclassified	0.2945753225
+UniRef50_G5KG73: FAD binding domain protein	0.2945478508
+UniRef50_G5KG73: FAD binding domain protein|unclassified	0.2945478508
+UniRef50_G2AMZ2: Intergenic-region protein (Fragment)	0.2945252228
+UniRef50_G2AMZ2: Intergenic-region protein (Fragment)|unclassified	0.2945252228
+UniRef50_UPI00046B0C4C: PREDICTED: phospholipid-metabolizing enzyme A-C1	0.2944961521
+UniRef50_UPI00046B0C4C: PREDICTED: phospholipid-metabolizing enzyme A-C1|unclassified	0.2944961521
+UniRef50_R0WUD1	0.2944820191
+UniRef50_R0WUD1|unclassified	0.2944820191
+UniRef50_UPI00046EEBC5: guanosine-3'',5''-bis(diphosphate) 3''-pyrophosphohydrolase, partial	0.2944386841
+UniRef50_UPI00046EEBC5: guanosine-3'',5''-bis(diphosphate) 3''-pyrophosphohydrolase, partial|unclassified	0.2944386841
+UniRef50_W4V4X6: NAD-dependent malic enzyme	0.2944075527
+UniRef50_W4V4X6: NAD-dependent malic enzyme|unclassified	0.2944075527
+UniRef50_UPI0004700850: membrane protein, partial	0.2943994551
+UniRef50_UPI0004700850: membrane protein, partial|unclassified	0.2943994551
+UniRef50_UPI0002896994: LuxR family transcriptional regulator	0.2943790756
+UniRef50_UPI0002896994: LuxR family transcriptional regulator|unclassified	0.2943790756
+UniRef50_J4VP36: DNA polymerase III, alpha subunit	0.2943773918
+UniRef50_J4VP36: DNA polymerase III, alpha subunit|g__Acinetobacter.s__Acinetobacter_baumannii	0.2943773918
+UniRef50_E4BFH6	0.2943660502
+UniRef50_E4BFH6|unclassified	0.2943660502
+UniRef50_B9KU41: Cytochrome c-type protein napC	0.2943643034
+UniRef50_B9KU41: Cytochrome c-type protein napC|unclassified	0.2943643034
+UniRef50_T5RVH3	0.2943487481
+UniRef50_T5RVH3|unclassified	0.2943487481
+UniRef50_UPI00047A0692: hypothetical protein	0.2943122835
+UniRef50_UPI00047A0692: hypothetical protein|unclassified	0.2943122835
+UniRef50_UPI000255621F: hypothetical protein	0.2943106329
+UniRef50_UPI000255621F: hypothetical protein|unclassified	0.2943106329
+UniRef50_F2U9B0	0.2943072711
+UniRef50_F2U9B0|unclassified	0.2943072711
+UniRef50_UPI0003B537EC: flagellar basal body rod protein FlgG, partial	0.2942955690
+UniRef50_UPI0003B537EC: flagellar basal body rod protein FlgG, partial|unclassified	0.2942955690
+UniRef50_V9CTQ1: Transcriptional regulator, AsnC family	0.2942920656
+UniRef50_V9CTQ1: Transcriptional regulator, AsnC family|unclassified	0.2942920656
+UniRef50_W8EY20	0.2942890746
+UniRef50_W8EY20|unclassified	0.2942890746
+UniRef50_F4GVW7	0.2942662535
+UniRef50_F4GVW7|unclassified	0.2942662535
+UniRef50_UPI0002D9C43C: diguanylate cyclase	0.2942562110
+UniRef50_UPI0002D9C43C: diguanylate cyclase|unclassified	0.2942562110
+UniRef50_C1N1C9: Predicted protein	0.2942536029
+UniRef50_C1N1C9: Predicted protein|unclassified	0.2942536029
+UniRef50_UPI000475A3D2: dehydrogenase	0.2942476619
+UniRef50_UPI000475A3D2: dehydrogenase|unclassified	0.2942476619
+UniRef50_B2SBF6: Homoserine O-succinyltransferase	0.2942336353
+UniRef50_B2SBF6: Homoserine O-succinyltransferase|unclassified	0.2942336353
+UniRef50_A0A011R4A0: Putative DNA-invertase from lambdoid prophage Rac	0.2942325301
+UniRef50_A0A011R4A0: Putative DNA-invertase from lambdoid prophage Rac|unclassified	0.2942325301
+UniRef50_B1LU13	0.2942150472
+UniRef50_B1LU13|unclassified	0.2942150472
+UniRef50_Q29RN5: LOC767890 protein (Fragment)	0.2942120804
+UniRef50_Q29RN5: LOC767890 protein (Fragment)|unclassified	0.2942120804
+UniRef50_W8AT56: Putative transposase, IS630 family	0.2942118948
+UniRef50_W8AT56: Putative transposase, IS630 family|unclassified	0.2942118948
+UniRef50_W0NGZ4: ABC transporter substrate-binding protein	0.2941467652
+UniRef50_W0NGZ4: ABC transporter substrate-binding protein|unclassified	0.2941467652
+UniRef50_UPI0003336CD7: PREDICTED: DNA dC-_dU-editing enzyme APOBEC-3D-like	0.2941332663
+UniRef50_UPI0003336CD7: PREDICTED: DNA dC-_dU-editing enzyme APOBEC-3D-like|unclassified	0.2941332663
+UniRef50_UPI00037E8952: hypothetical protein, partial	0.2941124258
+UniRef50_UPI00037E8952: hypothetical protein, partial|unclassified	0.2941124258
+UniRef50_UPI000470AA45: 3-phosphoshikimate 1-carboxyvinyltransferase, partial	0.2940832042
+UniRef50_UPI000470AA45: 3-phosphoshikimate 1-carboxyvinyltransferase, partial|unclassified	0.2940832042
+UniRef50_Q39NR5	0.2940811762
+UniRef50_Q39NR5|unclassified	0.2940811762
+UniRef50_W1H6W9: Maltose regulon regulatory protein MalI (Repressor for malXY)	0.2940810463
+UniRef50_W1H6W9: Maltose regulon regulatory protein MalI (Repressor for malXY)|unclassified	0.2940810463
+UniRef50_UPI000305AF6A: hypothetical protein	0.2940688244
+UniRef50_UPI000305AF6A: hypothetical protein|unclassified	0.2940688244
+UniRef50_A8TBH7	0.2940561488
+UniRef50_A8TBH7|unclassified	0.2940561488
+UniRef50_U3TWM5: Type VI secretion system, core protein	0.2940400575
+UniRef50_U3TWM5: Type VI secretion system, core protein|unclassified	0.2940400575
+UniRef50_B7CH35	0.2940330302
+UniRef50_B7CH35|unclassified	0.2940330302
+UniRef50_UPI000463AC00: RNA polymerase sigma factor RpoE	0.2940228454
+UniRef50_UPI000463AC00: RNA polymerase sigma factor RpoE|unclassified	0.2940228454
+UniRef50_Q1QVE2: BolA-like protein	0.2940207419
+UniRef50_Q1QVE2: BolA-like protein|unclassified	0.2940207419
+UniRef50_L0GYR3: Dinitrogenase iron-molybdenum cofactor biosynthesis protein	0.2939974275
+UniRef50_L0GYR3: Dinitrogenase iron-molybdenum cofactor biosynthesis protein|unclassified	0.2939974275
+UniRef50_A0A022M7G5: TonB-dependent receptor (Fragment)	0.2939935040
+UniRef50_A0A022M7G5: TonB-dependent receptor (Fragment)|unclassified	0.2939935040
+UniRef50_UPI0001FFE9A8: diguanylate cyclase	0.2939755783
+UniRef50_UPI0001FFE9A8: diguanylate cyclase|unclassified	0.2939755783
+UniRef50_Q3JPX4: Val start codon	0.2939600122
+UniRef50_Q3JPX4: Val start codon|unclassified	0.2939600122
+UniRef50_B6ZWA8	0.2939591395
+UniRef50_B6ZWA8|unclassified	0.2939591395
+UniRef50_UPI00047AF0A5: hypothetical protein, partial	0.2939485498
+UniRef50_UPI00047AF0A5: hypothetical protein, partial|unclassified	0.2939485498
+UniRef50_R4GJS7	0.2939408937
+UniRef50_R4GJS7|unclassified	0.2939408937
+UniRef50_Q9HUY1: Dihydrolipoyl dehydrogenase 3	0.2938869309
+UniRef50_Q9HUY1: Dihydrolipoyl dehydrogenase 3|unclassified	0.2938869309
+UniRef50_Q3JQL8: Bifunctional protein FolD	0.2938869062
+UniRef50_Q3JQL8: Bifunctional protein FolD|unclassified	0.2938869062
+UniRef50_UPI0002D512F5: hypothetical protein	0.2938665448
+UniRef50_UPI0002D512F5: hypothetical protein|unclassified	0.2938665448
+UniRef50_D1ZR99: Catabolic 3-dehydroquinase	0.2938450777
+UniRef50_D1ZR99: Catabolic 3-dehydroquinase|unclassified	0.2938450777
+UniRef50_H0G0N1	0.2938292577
+UniRef50_H0G0N1|unclassified	0.2938292577
+UniRef50_R9VSK1	0.2938286093
+UniRef50_R9VSK1|unclassified	0.2938286093
+UniRef50_C3JZP4: D-ribose pyranase	0.2938189179
+UniRef50_C3JZP4: D-ribose pyranase|unclassified	0.2938189179
+UniRef50_W8RV54	0.2937861825
+UniRef50_W8RV54|unclassified	0.2937861825
+UniRef50_UPI000370C620: hypothetical protein	0.2937605076
+UniRef50_UPI000370C620: hypothetical protein|unclassified	0.2937605076
+UniRef50_M2GPC3	0.2937515161
+UniRef50_M2GPC3|unclassified	0.2937515161
+UniRef50_X2NC52	0.2937511983
+UniRef50_X2NC52|unclassified	0.2937511983
+UniRef50_H9KBK9	0.2937494640
+UniRef50_H9KBK9|unclassified	0.2937494640
+UniRef50_UPI00037990D3: hypothetical protein, partial	0.2937482042
+UniRef50_UPI00037990D3: hypothetical protein, partial|unclassified	0.2937482042
+UniRef50_U5VZ18	0.2937336591
+UniRef50_U5VZ18|unclassified	0.2937336591
+UniRef50_UPI00037935B7: hypothetical protein	0.2936965138
+UniRef50_UPI00037935B7: hypothetical protein|unclassified	0.2936965138
+UniRef50_I2YJH1	0.2936922181
+UniRef50_I2YJH1|unclassified	0.2936922181
+UniRef50_W1JZG4: Transposase (Fragment)	0.2936782271
+UniRef50_W1JZG4: Transposase (Fragment)|unclassified	0.2936782271
+UniRef50_UPI0003B59FB7: aldehyde-activating protein	0.2936327304
+UniRef50_UPI0003B59FB7: aldehyde-activating protein|unclassified	0.2936327304
+UniRef50_UPI0004632595: hypothetical protein	0.2935762060
+UniRef50_UPI0004632595: hypothetical protein|unclassified	0.2935762060
+UniRef50_C2QRL4	0.2935756802
+UniRef50_C2QRL4|unclassified	0.2935756802
+UniRef50_UPI0003B31739: mannitol 2-dehydrogenase	0.2935649007
+UniRef50_UPI0003B31739: mannitol 2-dehydrogenase|unclassified	0.2935649007
+UniRef50_D8LC87	0.2935565946
+UniRef50_D8LC87|unclassified	0.2935565946
+UniRef50_UPI0003FF6A25: AsnC family transcriptional regulator	0.2935357514
+UniRef50_UPI0003FF6A25: AsnC family transcriptional regulator|unclassified	0.2935357514
+UniRef50_A5G0R5: Polyhydroxyalkonate synthesis repressor, PhaR	0.2935318922
+UniRef50_A5G0R5: Polyhydroxyalkonate synthesis repressor, PhaR|unclassified	0.2935318922
+UniRef50_UPI000467F92B: alginate O-acetyltransferase	0.2934810396
+UniRef50_UPI000467F92B: alginate O-acetyltransferase|unclassified	0.2934810396
+UniRef50_D6XXB5: TRAP transporter solute receptor, TAXI family	0.2934664880
+UniRef50_D6XXB5: TRAP transporter solute receptor, TAXI family|unclassified	0.2934664880
+UniRef50_UPI0004772A28: phospholipase	0.2934634235
+UniRef50_UPI0004772A28: phospholipase|unclassified	0.2934634235
+UniRef50_D9VBW9: Predicted protein	0.2934509588
+UniRef50_D9VBW9: Predicted protein|unclassified	0.2934509588
+UniRef50_UPI000464A86B: hypothetical protein	0.2934497760
+UniRef50_UPI000464A86B: hypothetical protein|unclassified	0.2934497760
+UniRef50_A0A020SCD2: Serine-aspartate repeat-containing protein D	0.2934327688
+UniRef50_A0A020SCD2: Serine-aspartate repeat-containing protein D|unclassified	0.2934327688
+UniRef50_C2CS58: Bacteriocin, lactococcin 972 family	0.2934188610
+UniRef50_C2CS58: Bacteriocin, lactococcin 972 family|unclassified	0.2934188610
+UniRef50_F8GYE9	0.2934097886
+UniRef50_F8GYE9|unclassified	0.2934097886
+UniRef50_H1QU98	0.2933547602
+UniRef50_H1QU98|unclassified	0.2933547602
+UniRef50_UPI000375AB7B: ribonucleotide reductase	0.2933417564
+UniRef50_UPI000375AB7B: ribonucleotide reductase|unclassified	0.2933417564
+UniRef50_V7FAD8	0.2932585935
+UniRef50_V7FAD8|unclassified	0.2932585935
+UniRef50_UPI0003FC72E9: hypothetical protein	0.2932118772
+UniRef50_UPI0003FC72E9: hypothetical protein|unclassified	0.2932118772
+UniRef50_Q3EXG3	0.2932022423
+UniRef50_Q3EXG3|unclassified	0.2932022423
+UniRef50_Q8ERU3: UPF0736 protein OB1207	0.2931926075
+UniRef50_Q8ERU3: UPF0736 protein OB1207|unclassified	0.2931926075
+UniRef50_R7PV73	0.2931692327
+UniRef50_R7PV73|unclassified	0.2931692327
+UniRef50_E3EZ15: Phage protein	0.2931593919
+UniRef50_E3EZ15: Phage protein|unclassified	0.2931593919
+UniRef50_W0TLM2: Phosphate-starvation-inducible E	0.2931580318
+UniRef50_W0TLM2: Phosphate-starvation-inducible E|unclassified	0.2931580318
+UniRef50_D6BB72: Predicted protein	0.2931183303
+UniRef50_D6BB72: Predicted protein|unclassified	0.2931183303
+UniRef50_F3Z6R0: Putative integral membrane efflux protein	0.2931171508
+UniRef50_F3Z6R0: Putative integral membrane efflux protein|unclassified	0.2931171508
+UniRef50_T1XU32: Lipoprotein, putative	0.2930998624
+UniRef50_T1XU32: Lipoprotein, putative|unclassified	0.2930998624
+UniRef50_UPI000367877B: hypothetical protein	0.2930798954
+UniRef50_UPI000367877B: hypothetical protein|unclassified	0.2930798954
+UniRef50_UPI00018514F4: hypothetical protein	0.2930529022
+UniRef50_UPI00018514F4: hypothetical protein|unclassified	0.2930529022
+UniRef50_R5CJ60	0.2930277615
+UniRef50_R5CJ60|unclassified	0.2930277615
+UniRef50_UPI0003B755FD: sugar ABC transporter permease	0.2930273148
+UniRef50_UPI0003B755FD: sugar ABC transporter permease|unclassified	0.2930273148
+UniRef50_Q8XJL2: Peptide deformylase 1	0.2930259572
+UniRef50_Q8XJL2: Peptide deformylase 1|unclassified	0.2930259572
+UniRef50_W6W1S3	0.2930219886
+UniRef50_W6W1S3|unclassified	0.2930219886
+UniRef50_C8S5D8	0.2930149440
+UniRef50_C8S5D8|unclassified	0.2930149440
+UniRef50_A0A023NPD4: Cupin	0.2930055204
+UniRef50_A0A023NPD4: Cupin|unclassified	0.2930055204
+UniRef50_UPI000382AD4D: hypothetical protein	0.2929957100
+UniRef50_UPI000382AD4D: hypothetical protein|unclassified	0.2929957100
+UniRef50_D5MMG8: Putative enzyme (3.4.-)	0.2929822732
+UniRef50_D5MMG8: Putative enzyme (3.4.-)|unclassified	0.2929822732
+UniRef50_W7DIL1: Shikimate 5-dehydrogenase	0.2929814311
+UniRef50_W7DIL1: Shikimate 5-dehydrogenase|unclassified	0.2929814311
+UniRef50_P31114: Heptaprenyl diphosphate synthase component 2	0.2929807265
+UniRef50_P31114: Heptaprenyl diphosphate synthase component 2|unclassified	0.2929807265
+UniRef50_UPI000262829F: rhodanese-related sulfurtransferase	0.2929794010
+UniRef50_UPI000262829F: rhodanese-related sulfurtransferase|unclassified	0.2929794010
+UniRef50_Q3JVV0	0.2929613361
+UniRef50_Q3JVV0|unclassified	0.2929613361
+UniRef50_UPI0003719EFF: hypothetical protein	0.2929447575
+UniRef50_UPI0003719EFF: hypothetical protein|unclassified	0.2929447575
+UniRef50_W7LMB8	0.2929115407
+UniRef50_W7LMB8|unclassified	0.2929115407
+UniRef50_UPI000475396E: carboxymuconolactone decarboxylase	0.2929105637
+UniRef50_UPI000475396E: carboxymuconolactone decarboxylase|unclassified	0.2929105637
+UniRef50_K4A7F2	0.2929105259
+UniRef50_K4A7F2|unclassified	0.2929105259
+UniRef50_G6C6Y3	0.2928946975
+UniRef50_G6C6Y3|unclassified	0.2928946975
+UniRef50_UPI000473C475: hypothetical protein, partial	0.2928825893
+UniRef50_UPI000473C475: hypothetical protein, partial|unclassified	0.2928825893
+UniRef50_UPI00036EF76B: hypothetical protein	0.2928726212
+UniRef50_UPI00036EF76B: hypothetical protein|unclassified	0.2928726212
+UniRef50_UPI00040BC9E5: butanediol dehydrogenase	0.2928394654
+UniRef50_UPI00040BC9E5: butanediol dehydrogenase|unclassified	0.2928394654
+UniRef50_UPI0003728287: MULTISPECIES: hypothetical protein	0.2928090016
+UniRef50_UPI0003728287: MULTISPECIES: hypothetical protein|unclassified	0.2928090016
+UniRef50_F8BLF2: TRAP transport system, small permease protein	0.2928020624
+UniRef50_F8BLF2: TRAP transport system, small permease protein|unclassified	0.2928020624
+UniRef50_UPI000225C1FF: CarD family transcriptional regulator	0.2927992170
+UniRef50_UPI000225C1FF: CarD family transcriptional regulator|unclassified	0.2927992170
+UniRef50_UPI00035CFCF8: hypothetical protein	0.2927818078
+UniRef50_UPI00035CFCF8: hypothetical protein|unclassified	0.2927818078
+UniRef50_UPI0003ABCC09: PREDICTED: collagen alpha-1(XVII) chain-like	0.2927601038
+UniRef50_UPI0003ABCC09: PREDICTED: collagen alpha-1(XVII) chain-like|unclassified	0.2927601038
+UniRef50_UPI00046EF0B0: hypothetical protein	0.2927592401
+UniRef50_UPI00046EF0B0: hypothetical protein|unclassified	0.2927592401
+UniRef50_UPI00034CEA42: hypothetical protein	0.2927578506
+UniRef50_UPI00034CEA42: hypothetical protein|unclassified	0.2927578506
+UniRef50_UPI00036AEEEE: hypothetical protein	0.2927458246
+UniRef50_UPI00036AEEEE: hypothetical protein|unclassified	0.2927458246
+UniRef50_T1BXX7: Diguanylate phosphodiesterase, predicted domain protein (Fragment)	0.2927395958
+UniRef50_T1BXX7: Diguanylate phosphodiesterase, predicted domain protein (Fragment)|unclassified	0.2927395958
+UniRef50_UPI0002B9B247: hypothetical protein, partial	0.2927133355
+UniRef50_UPI0002B9B247: hypothetical protein, partial|unclassified	0.2927133355
+UniRef50_UPI0003B60079: MFS transporter	0.2927130780
+UniRef50_UPI0003B60079: MFS transporter|unclassified	0.2927130780
+UniRef50_W5P3Y6	0.2927064680
+UniRef50_W5P3Y6|unclassified	0.2927064680
+UniRef50_B7KZS8	0.2926828957
+UniRef50_B7KZS8|unclassified	0.2926828957
+UniRef50_J9V2B0	0.2926667550
+UniRef50_J9V2B0|unclassified	0.2926667550
+UniRef50_P44624: 1,6-anhydro-N-acetylmuramyl-L-alanine amidase AmpD	0.2926276150
+UniRef50_P44624: 1,6-anhydro-N-acetylmuramyl-L-alanine amidase AmpD|unclassified	0.2926276150
+UniRef50_UPI0004776439: hypothetical protein	0.2925960822
+UniRef50_UPI0004776439: hypothetical protein|unclassified	0.2925960822
+UniRef50_C0FWN7	0.2925526701
+UniRef50_C0FWN7|unclassified	0.2925526701
+UniRef50_W0BAX6	0.2925481535
+UniRef50_W0BAX6|unclassified	0.2925481535
+UniRef50_A0RPD0: Flagella basal body P-ring formation protein FlgA, putative	0.2925320290
+UniRef50_A0RPD0: Flagella basal body P-ring formation protein FlgA, putative|unclassified	0.2925320290
+UniRef50_UPI00037ED2EA: hypothetical protein	0.2925303135
+UniRef50_UPI00037ED2EA: hypothetical protein|unclassified	0.2925303135
+UniRef50_UPI0003B3FC9F: biotin carboxylase, partial	0.2925299072
+UniRef50_UPI0003B3FC9F: biotin carboxylase, partial|unclassified	0.2925299072
+UniRef50_X3EKV6	0.2925166026
+UniRef50_X3EKV6|unclassified	0.2925166026
+UniRef50_UPI0001744E5F: methionine aminopeptidase	0.2924783517
+UniRef50_UPI0001744E5F: methionine aminopeptidase|unclassified	0.2924783517
+UniRef50_Q4UT86: NAD kinase	0.2924700223
+UniRef50_Q4UT86: NAD kinase|unclassified	0.2924700223
+UniRef50_Q3SUI1	0.2924625659
+UniRef50_Q3SUI1|unclassified	0.2924625659
+UniRef50_R7Q6X8: Stackhouse genomic scaffold, scaffold_120	0.2924559705
+UniRef50_R7Q6X8: Stackhouse genomic scaffold, scaffold_120|unclassified	0.2924559705
+UniRef50_UPI0001BF64A8: hypothetical protein SMAC_11040, partial	0.2924228979
+UniRef50_UPI0001BF64A8: hypothetical protein SMAC_11040, partial|unclassified	0.2924228979
+UniRef50_A3CTY6: Putative 3-methyladenine DNA glycosylase	0.2924076403
+UniRef50_A3CTY6: Putative 3-methyladenine DNA glycosylase|unclassified	0.2924076403
+UniRef50_A9BTA7: Non-canonical purine NTP pyrophosphatase	0.2923649183
+UniRef50_A9BTA7: Non-canonical purine NTP pyrophosphatase|unclassified	0.2923649183
+UniRef50_K2FAW5	0.2923619826
+UniRef50_K2FAW5|unclassified	0.2923619826
+UniRef50_UPI0003F8B338: dipicolinate synthase subunit A	0.2923597827
+UniRef50_UPI0003F8B338: dipicolinate synthase subunit A|unclassified	0.2923597827
+UniRef50_UPI00037D6715: hypothetical protein	0.2923295198
+UniRef50_UPI00037D6715: hypothetical protein|unclassified	0.2923295198
+UniRef50_O66821: Hypoxanthine-guanine phosphoribosyltransferase	0.2922697120
+UniRef50_O66821: Hypoxanthine-guanine phosphoribosyltransferase|unclassified	0.2922697120
+UniRef50_B0UT81: TM2 domain containing protein	0.2922473300
+UniRef50_B0UT81: TM2 domain containing protein|unclassified	0.2922473300
+UniRef50_Q2NHQ1: Imidazoleglycerol-phosphate dehydratase	0.2922062404
+UniRef50_Q2NHQ1: Imidazoleglycerol-phosphate dehydratase|unclassified	0.2922062404
+UniRef50_E9ZU27	0.2921951857
+UniRef50_E9ZU27|unclassified	0.2921951857
+UniRef50_B1YLE0: Triosephosphate isomerase	0.2921699237
+UniRef50_B1YLE0: Triosephosphate isomerase|unclassified	0.2921699237
+UniRef50_W8L4G2	0.2921561173
+UniRef50_W8L4G2|unclassified	0.2921561173
+UniRef50_D0X0Z3: UPF0227 protein, putative	0.2921512671
+UniRef50_D0X0Z3: UPF0227 protein, putative|unclassified	0.2921512671
+UniRef50_E3A521	0.2921353669
+UniRef50_E3A521|unclassified	0.2921353669
+UniRef50_A4B9N5	0.2920992602
+UniRef50_A4B9N5|unclassified	0.2920992602
+UniRef50_UPI0004215BEF: hypothetical protein	0.2920680580
+UniRef50_UPI0004215BEF: hypothetical protein|unclassified	0.2920680580
+UniRef50_Q2IH01: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.2920026487
+UniRef50_Q2IH01: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.2920026487
+UniRef50_UPI00042B0CC2: Non-intrinsic ABC protein 7 isoform 6	0.2919984107
+UniRef50_UPI00042B0CC2: Non-intrinsic ABC protein 7 isoform 6|unclassified	0.2919984107
+UniRef50_W0Z8D5	0.2919432356
+UniRef50_W0Z8D5|unclassified	0.2919432356
+UniRef50_UPI000237905A: HTH-type GntR family transcriptional regulator	0.2919079287
+UniRef50_UPI000237905A: HTH-type GntR family transcriptional regulator|unclassified	0.2919079287
+UniRef50_K6CG94: Spore envelope assembly protein	0.2918810692
+UniRef50_K6CG94: Spore envelope assembly protein|unclassified	0.2918810692
+UniRef50_R5P840	0.2918329687
+UniRef50_R5P840|unclassified	0.2918329687
+UniRef50_E2L4I7	0.2917772391
+UniRef50_E2L4I7|unclassified	0.2917772391
+UniRef50_B9DND6: Pyrrolidone-carboxylate peptidase	0.2917772174
+UniRef50_B9DND6: Pyrrolidone-carboxylate peptidase|unclassified	0.2917772174
+UniRef50_UPI000418EECA: alkane 1-monooxygenase	0.2917749338
+UniRef50_UPI000418EECA: alkane 1-monooxygenase|unclassified	0.2917749338
+UniRef50_UPI000328F577	0.2917559892
+UniRef50_UPI000328F577|unclassified	0.2917559892
+UniRef50_T1AIV4: Multidrug transporter (Fragment)	0.2917309697
+UniRef50_T1AIV4: Multidrug transporter (Fragment)|unclassified	0.2917309697
+UniRef50_P42693: Peptidyl-prolyl cis-trans isomerase	0.2917077476
+UniRef50_P42693: Peptidyl-prolyl cis-trans isomerase|unclassified	0.2917077476
+UniRef50_W4HMB3	0.2916828004
+UniRef50_W4HMB3|unclassified	0.2916828004
+UniRef50_C6AN40: Tellurite resistance protein TehB	0.2916707497
+UniRef50_C6AN40: Tellurite resistance protein TehB|unclassified	0.2916707497
+UniRef50_A0A024LAU7	0.2916557375
+UniRef50_A0A024LAU7|unclassified	0.2916557375
+UniRef50_B2NCJ4	0.2916557375
+UniRef50_B2NCJ4|unclassified	0.2916557375
+UniRef50_H2UEQ7	0.2916302129
+UniRef50_H2UEQ7|unclassified	0.2916302129
+UniRef50_UPI00034411B6: PREDICTED: translation initiation factor IF-2-like	0.2916179353
+UniRef50_UPI00034411B6: PREDICTED: translation initiation factor IF-2-like|unclassified	0.2916179353
+UniRef50_X1LC15: Marine sediment metagenome DNA, contig: S06H3_L02418	0.2915807243
+UniRef50_X1LC15: Marine sediment metagenome DNA, contig: S06H3_L02418|unclassified	0.2915807243
+UniRef50_UPI000472E48E: hypothetical protein	0.2915767112
+UniRef50_UPI000472E48E: hypothetical protein|unclassified	0.2915767112
+UniRef50_UPI00037D39C6: hypothetical protein	0.2915760364
+UniRef50_UPI00037D39C6: hypothetical protein|unclassified	0.2915760364
+UniRef50_UPI00047054BF: hypothetical protein	0.2915748635
+UniRef50_UPI00047054BF: hypothetical protein|unclassified	0.2915748635
+UniRef50_G0VNQ5: Lipoprotein	0.2915716797
+UniRef50_G0VNQ5: Lipoprotein|unclassified	0.2915716797
+UniRef50_Q11A36: Cobyrinic acid a,c-diamide synthase	0.2915497425
+UniRef50_Q11A36: Cobyrinic acid a,c-diamide synthase|unclassified	0.2915497425
+UniRef50_Q9JVX8: DNA polymerase III subunit alpha	0.2915451895
+UniRef50_Q9JVX8: DNA polymerase III subunit alpha|g__Neisseria.s__Neisseria_meningitidis	0.2915451895
+UniRef50_A8L8S5	0.2915304365
+UniRef50_A8L8S5|unclassified	0.2915304365
+UniRef50_E8S3F2	0.2914859671
+UniRef50_E8S3F2|unclassified	0.2914859671
+UniRef50_Q1GP77: Shikimate dehydrogenase	0.2914743947
+UniRef50_Q1GP77: Shikimate dehydrogenase|unclassified	0.2914743947
+UniRef50_E3EXD5: Flagellar basal-body rod protein FlgB, putative	0.2914653482
+UniRef50_E3EXD5: Flagellar basal-body rod protein FlgB, putative|unclassified	0.2914653482
+UniRef50_Q28V25: Holo-[acyl-carrier-protein] synthase	0.2914629611
+UniRef50_Q28V25: Holo-[acyl-carrier-protein] synthase|unclassified	0.2914629611
+UniRef50_A4ERT9	0.2914353297
+UniRef50_A4ERT9|unclassified	0.2914353297
+UniRef50_UPI000225E92A: nuclease	0.2914200000
+UniRef50_UPI000225E92A: nuclease|unclassified	0.2914200000
+UniRef50_Q6ZDY5	0.2914148164
+UniRef50_Q6ZDY5|unclassified	0.2914148164
+UniRef50_X1HTP5: Marine sediment metagenome DNA, contig: S03H2_S02619	0.2914059749
+UniRef50_X1HTP5: Marine sediment metagenome DNA, contig: S03H2_S02619|unclassified	0.2914059749
+UniRef50_UPI00037F520B: hypothetical protein, partial	0.2914009864
+UniRef50_UPI00037F520B: hypothetical protein, partial|unclassified	0.2914009864
+UniRef50_A6TTD6: Xanthine phosphoribosyltransferase	0.2913599679
+UniRef50_A6TTD6: Xanthine phosphoribosyltransferase|unclassified	0.2913599679
+UniRef50_S1GY28	0.2913497801
+UniRef50_S1GY28|unclassified	0.2913497801
+UniRef50_G3VCD6	0.2913385490
+UniRef50_G3VCD6|unclassified	0.2913385490
+UniRef50_F1W3L0	0.2913355886
+UniRef50_F1W3L0|unclassified	0.2913355886
+UniRef50_A3CNS9: Phosphoribosyl-AMP cyclohydrolase	0.2913128828
+UniRef50_A3CNS9: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.2913128828
+UniRef50_P44988: Probable 3-keto-L-gulonate-6-phosphate decarboxylase	0.2912937014
+UniRef50_P44988: Probable 3-keto-L-gulonate-6-phosphate decarboxylase|unclassified	0.2912937014
+UniRef50_S5YIS8: ABC Fe+3 siderophore transporter, periplasmic substrate-binding protein	0.2912857235
+UniRef50_S5YIS8: ABC Fe+3 siderophore transporter, periplasmic substrate-binding protein|unclassified	0.2912857235
+UniRef50_A0A037ZJ90	0.2912209294
+UniRef50_A0A037ZJ90|unclassified	0.2912209294
+UniRef50_K6ZH35	0.2912067711
+UniRef50_K6ZH35|unclassified	0.2912067711
+UniRef50_UPI00036DFED1: MULTISPECIES: hypothetical protein	0.2911933760
+UniRef50_UPI00036DFED1: MULTISPECIES: hypothetical protein|unclassified	0.2911933760
+UniRef50_K1YAY7	0.2911825091
+UniRef50_K1YAY7|unclassified	0.2911825091
+UniRef50_Q28NK4	0.2911374396
+UniRef50_Q28NK4|unclassified	0.2911374396
+UniRef50_UPI000466A22C: hypothetical protein, partial	0.2911357820
+UniRef50_UPI000466A22C: hypothetical protein, partial|unclassified	0.2911357820
+UniRef50_S9QP26	0.2911100095
+UniRef50_S9QP26|unclassified	0.2911100095
+UniRef50_U4V185	0.2911014175
+UniRef50_U4V185|unclassified	0.2911014175
+UniRef50_B0T316: Probable nicotinate-nucleotide adenylyltransferase	0.2911002109
+UniRef50_B0T316: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.2911002109
+UniRef50_B5RKM4: Glutathione-regulated potassium-efflux system ancillary protein KefF homolog	0.2910958002
+UniRef50_B5RKM4: Glutathione-regulated potassium-efflux system ancillary protein KefF homolog|unclassified	0.2910958002
+UniRef50_F9DZB5: IS861 transposase	0.2910933413
+UniRef50_F9DZB5: IS861 transposase|unclassified	0.2910933413
+UniRef50_R9JFL6	0.2910663781
+UniRef50_R9JFL6|unclassified	0.2910663781
+UniRef50_C3ILX2: Membrane associated protein	0.2910610178
+UniRef50_C3ILX2: Membrane associated protein|unclassified	0.2910610178
+UniRef50_F7L7N2	0.2910448187
+UniRef50_F7L7N2|unclassified	0.2910448187
+UniRef50_UPI0004691D57: hypothetical protein	0.2910445488
+UniRef50_UPI0004691D57: hypothetical protein|unclassified	0.2910445488
+UniRef50_W1JX79: Cysteine desulfurase activator complex subunit SufB (Fragment)	0.2910372535
+UniRef50_W1JX79: Cysteine desulfurase activator complex subunit SufB (Fragment)|unclassified	0.2910372535
+UniRef50_UPI000455DD45: ribosomal protein L17	0.2910182533
+UniRef50_UPI000455DD45: ribosomal protein L17|unclassified	0.2910182533
+UniRef50_UPI000375C3AC: hypothetical protein	0.2910137938
+UniRef50_UPI000375C3AC: hypothetical protein|unclassified	0.2910137938
+UniRef50_UPI0003F564FD: hypothetical protein	0.2910029725
+UniRef50_UPI0003F564FD: hypothetical protein|unclassified	0.2910029725
+UniRef50_UPI000191165B: hypothetical protein	0.2909897034
+UniRef50_UPI000191165B: hypothetical protein|unclassified	0.2909897034
+UniRef50_K8CFI0	0.2909603256
+UniRef50_K8CFI0|unclassified	0.2909603256
+UniRef50_P65871: 6-carboxy-5,6,7,8-tetrahydropterin synthase	0.2909559679
+UniRef50_P65871: 6-carboxy-5,6,7,8-tetrahydropterin synthase|unclassified	0.2909559679
+UniRef50_Q9S2L4: Probable proline iminopeptidase	0.2909477992
+UniRef50_Q9S2L4: Probable proline iminopeptidase|unclassified	0.2909477992
+UniRef50_K0Q3E4	0.2909364007
+UniRef50_K0Q3E4|unclassified	0.2909364007
+UniRef50_UPI00039A24A8: TetR family transcriptional regulator	0.2909354615
+UniRef50_UPI00039A24A8: TetR family transcriptional regulator|unclassified	0.2909354615
+UniRef50_B1K5C3: Transcriptional regulator/antitoxin, MazE	0.2909161573
+UniRef50_B1K5C3: Transcriptional regulator/antitoxin, MazE|unclassified	0.2909161573
+UniRef50_UPI000379F656: hypothetical protein	0.2909085594
+UniRef50_UPI000379F656: hypothetical protein|unclassified	0.2909085594
+UniRef50_UPI0003449BF9: acetolactate synthase	0.2908702268
+UniRef50_UPI0003449BF9: acetolactate synthase|unclassified	0.2908702268
+UniRef50_C1CMF4	0.2908562440
+UniRef50_C1CMF4|unclassified	0.2908562440
+UniRef50_B2WGR9: Catabolic 3-dehydroquinase	0.2908200703
+UniRef50_B2WGR9: Catabolic 3-dehydroquinase|unclassified	0.2908200703
+UniRef50_Q2BGB7	0.2907844517
+UniRef50_Q2BGB7|unclassified	0.2907844517
+UniRef50_W0DT11	0.2907790794
+UniRef50_W0DT11|unclassified	0.2907790794
+UniRef50_Q3JXW6	0.2907682316
+UniRef50_Q3JXW6|unclassified	0.2907682316
+UniRef50_M2TK48: Arsenate reductase	0.2907604503
+UniRef50_M2TK48: Arsenate reductase|unclassified	0.2907604503
+UniRef50_UPI00046A8024: hypothetical protein, partial	0.2906237320
+UniRef50_UPI00046A8024: hypothetical protein, partial|unclassified	0.2906237320
+UniRef50_F4RJG9	0.2906131938
+UniRef50_F4RJG9|unclassified	0.2906131938
+UniRef50_UPI00026C7067: site-specific recombinase XerD	0.2905679223
+UniRef50_UPI00026C7067: site-specific recombinase XerD|unclassified	0.2905679223
+UniRef50_C1DCA4: NADH-quinone oxidoreductase subunit B	0.2905280174
+UniRef50_C1DCA4: NADH-quinone oxidoreductase subunit B|unclassified	0.2905280174
+UniRef50_Q31DK9: Ribosomal RNA small subunit methyltransferase G	0.2905208054
+UniRef50_Q31DK9: Ribosomal RNA small subunit methyltransferase G|unclassified	0.2905208054
+UniRef50_UPI00037DFCBE: hypothetical protein	0.2904880442
+UniRef50_UPI00037DFCBE: hypothetical protein|unclassified	0.2904880442
+UniRef50_H3UP08: Cobalt transport protein	0.2904787200
+UniRef50_H3UP08: Cobalt transport protein|unclassified	0.2904787200
+UniRef50_I1PAF9	0.2904611091
+UniRef50_I1PAF9|unclassified	0.2904611091
+UniRef50_W1V0Y9	0.2904333217
+UniRef50_W1V0Y9|unclassified	0.2904333217
+UniRef50_E3YSL3: Pts system fructose-specific eiibc component	0.2904292549
+UniRef50_E3YSL3: Pts system fructose-specific eiibc component|unclassified	0.2904292549
+UniRef50_R7MK20: PTS system fructose-specific IIABC component	0.2904292549
+UniRef50_R7MK20: PTS system fructose-specific IIABC component|unclassified	0.2904292549
+UniRef50_UPI000471DB8D: Fur family transcriptional regulator	0.2904091553
+UniRef50_UPI000471DB8D: Fur family transcriptional regulator|unclassified	0.2904091553
+UniRef50_K2DBJ2	0.2903977546
+UniRef50_K2DBJ2|unclassified	0.2903977546
+UniRef50_D3NWD1	0.2903973210
+UniRef50_D3NWD1|unclassified	0.2903973210
+UniRef50_A0A059LAJ1	0.2903944666
+UniRef50_A0A059LAJ1|unclassified	0.2903944666
+UniRef50_A3JC42	0.2903802885
+UniRef50_A3JC42|unclassified	0.2903802885
+UniRef50_Q2GA52: Leucyl/phenylalanyl-tRNA--protein transferase	0.2903708149
+UniRef50_Q2GA52: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.2903708149
+UniRef50_A3VGD2	0.2903540487
+UniRef50_A3VGD2|unclassified	0.2903540487
+UniRef50_J9NSJ5	0.2903513937
+UniRef50_J9NSJ5|unclassified	0.2903513937
+UniRef50_UPI0003315C07: PREDICTED: elongation factor G, mitochondrial-like, partial	0.2903412716
+UniRef50_UPI0003315C07: PREDICTED: elongation factor G, mitochondrial-like, partial|unclassified	0.2903412716
+UniRef50_Q632I5: 2-succinylbenzoate--CoA ligase	0.2903360310
+UniRef50_Q632I5: 2-succinylbenzoate--CoA ligase|unclassified	0.2903360310
+UniRef50_UPI0003B531E1: cell division protein FtsE	0.2903071594
+UniRef50_UPI0003B531E1: cell division protein FtsE|unclassified	0.2903071594
+UniRef50_G6F2J5	0.2902869079
+UniRef50_G6F2J5|unclassified	0.2902869079
+UniRef50_I6KMM5	0.2902772378
+UniRef50_I6KMM5|unclassified	0.2902772378
+UniRef50_G1Q986	0.2902397349
+UniRef50_G1Q986|unclassified	0.2902397349
+UniRef50_UPI000468F104: hypothetical protein	0.2902225565
+UniRef50_UPI000468F104: hypothetical protein|unclassified	0.2902225565
+UniRef50_J8S002	0.2902163633
+UniRef50_J8S002|unclassified	0.2902163633
+UniRef50_UPI0003B6AAD5: hypothetical protein	0.2902155357
+UniRef50_UPI0003B6AAD5: hypothetical protein|unclassified	0.2902155357
+UniRef50_U0ZPN3	0.2902110121
+UniRef50_U0ZPN3|unclassified	0.2902110121
+UniRef50_Q8NE62: Choline dehydrogenase, mitochondrial	0.2902063847
+UniRef50_Q8NE62: Choline dehydrogenase, mitochondrial|unclassified	0.2902063847
+UniRef50_Q8ERS7: Bis(5'-nucleosyl)-tetraphosphatase PrpE [asymmetrical]	0.2902038264
+UniRef50_Q8ERS7: Bis(5'-nucleosyl)-tetraphosphatase PrpE [asymmetrical]|unclassified	0.2902038264
+UniRef50_G2KUB8	0.2901974406
+UniRef50_G2KUB8|unclassified	0.2901974406
+UniRef50_A3N055: Cyclic pyranopterin monophosphate synthase accessory protein	0.2901951541
+UniRef50_A3N055: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	0.2901951541
+UniRef50_E8UYL2	0.2901937132
+UniRef50_E8UYL2|unclassified	0.2901937132
+UniRef50_UPI000363F201: hypothetical protein	0.2901642675
+UniRef50_UPI000363F201: hypothetical protein|unclassified	0.2901642675
+UniRef50_UPI00046F4ADC: hypothetical protein	0.2901533482
+UniRef50_UPI00046F4ADC: hypothetical protein|unclassified	0.2901533482
+UniRef50_Q89SJ2: Blr2408 protein	0.2901395434
+UniRef50_Q89SJ2: Blr2408 protein|unclassified	0.2901395434
+UniRef50_A0A009XXP0: RecF/RecN/SMC N terminal domain protein	0.2901073397
+UniRef50_A0A009XXP0: RecF/RecN/SMC N terminal domain protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.2901073397
+UniRef50_UPI00045416B9: PREDICTED: LOW QUALITY PROTEIN: heat shock 70 kDa protein 4L-like, partial	0.2900774660
+UniRef50_UPI00045416B9: PREDICTED: LOW QUALITY PROTEIN: heat shock 70 kDa protein 4L-like, partial|unclassified	0.2900774660
+UniRef50_A8LQ48	0.2900231108
+UniRef50_A8LQ48|unclassified	0.2900231108
+UniRef50_UPI0003769405: hypothetical protein, partial	0.2899993187
+UniRef50_UPI0003769405: hypothetical protein, partial|unclassified	0.2899993187
+UniRef50_UPI0004772A0B: nicotinate-nucleotide adenylyltransferase	0.2899846428
+UniRef50_UPI0004772A0B: nicotinate-nucleotide adenylyltransferase|unclassified	0.2899846428
+UniRef50_UPI00037409D2: hypothetical protein	0.2899715283
+UniRef50_UPI00037409D2: hypothetical protein|unclassified	0.2899715283
+UniRef50_Q0MQH9: NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial	0.2899421364
+UniRef50_Q0MQH9: NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial|unclassified	0.2899421364
+UniRef50_K2I8R3	0.2898977746
+UniRef50_K2I8R3|unclassified	0.2898977746
+UniRef50_UPI0003AD535A: hypothetical protein	0.2898851472
+UniRef50_UPI0003AD535A: hypothetical protein|unclassified	0.2898851472
+UniRef50_P59191: UPF0225 protein CE1570	0.2898801207
+UniRef50_P59191: UPF0225 protein CE1570|unclassified	0.2898801207
+UniRef50_UPI00037CE028: hypothetical protein	0.2898685554
+UniRef50_UPI00037CE028: hypothetical protein|unclassified	0.2898685554
+UniRef50_UPI000476F280: hypothetical protein	0.2898613294
+UniRef50_UPI000476F280: hypothetical protein|unclassified	0.2898613294
+UniRef50_UPI000378F7C0: hypothetical protein	0.2898569824
+UniRef50_UPI000378F7C0: hypothetical protein|unclassified	0.2898569824
+UniRef50_UPI00036CCB42: hypothetical protein	0.2898428965
+UniRef50_UPI00036CCB42: hypothetical protein|unclassified	0.2898428965
+UniRef50_UPI00036E9C27: hypothetical protein	0.2898361020
+UniRef50_UPI00036E9C27: hypothetical protein|unclassified	0.2898361020
+UniRef50_N6V723	0.2898257869
+UniRef50_N6V723|unclassified	0.2898257869
+UniRef50_UPI00046A9E89: hypothetical protein	0.2898180272
+UniRef50_UPI00046A9E89: hypothetical protein|unclassified	0.2898180272
+UniRef50_Q9TM10: 1,4-Dihydroxy-2-naphthoyl-CoA synthase	0.2898138590
+UniRef50_Q9TM10: 1,4-Dihydroxy-2-naphthoyl-CoA synthase|unclassified	0.2898138590
+UniRef50_A0A022HZA0: Zonular occludens toxin family protein	0.2897823942
+UniRef50_A0A022HZA0: Zonular occludens toxin family protein|unclassified	0.2897823942
+UniRef50_F9YY53	0.2897710808
+UniRef50_F9YY53|g__Propionibacterium.s__Propionibacterium_acnes	0.2897710808
+UniRef50_K8BMS3: Fusaric acid resistance protein fusE	0.2897604978
+UniRef50_K8BMS3: Fusaric acid resistance protein fusE|unclassified	0.2897604978
+UniRef50_B5YKI3: NADH-quinone oxidoreductase subunit B 1	0.2897553615
+UniRef50_B5YKI3: NADH-quinone oxidoreductase subunit B 1|unclassified	0.2897553615
+UniRef50_UPI0004790007: hypothetical protein	0.2897024639
+UniRef50_UPI0004790007: hypothetical protein|unclassified	0.2897024639
+UniRef50_UPI000473A49C: hypothetical protein, partial	0.2896998421
+UniRef50_UPI000473A49C: hypothetical protein, partial|unclassified	0.2896998421
+UniRef50_UPI000381E037: MULTISPECIES: hypothetical protein	0.2896715834
+UniRef50_UPI000381E037: MULTISPECIES: hypothetical protein|unclassified	0.2896715834
+UniRef50_R8S9H8	0.2896693508
+UniRef50_R8S9H8|unclassified	0.2896693508
+UniRef50_I0H351	0.2896617747
+UniRef50_I0H351|unclassified	0.2896617747
+UniRef50_U3TSB6: TonB-dependent siderophore receptor	0.2896597305
+UniRef50_U3TSB6: TonB-dependent siderophore receptor|unclassified	0.2896597305
+UniRef50_W6KBC4	0.2896497722
+UniRef50_W6KBC4|unclassified	0.2896497722
+UniRef50_UPI00047C1A57: hypothetical protein	0.2896376703
+UniRef50_UPI00047C1A57: hypothetical protein|unclassified	0.2896376703
+UniRef50_UPI00047BB945: SAM-dependent methyltransferase	0.2896332968
+UniRef50_UPI00047BB945: SAM-dependent methyltransferase|unclassified	0.2896332968
+UniRef50_UPI000372B7CB: hypothetical protein	0.2895961588
+UniRef50_UPI000372B7CB: hypothetical protein|unclassified	0.2895961588
+UniRef50_UPI000470888A: hypothetical protein	0.2895893314
+UniRef50_UPI000470888A: hypothetical protein|unclassified	0.2895893314
+UniRef50_D6ANF2	0.2895493021
+UniRef50_D6ANF2|unclassified	0.2895493021
+UniRef50_V6JPJ0	0.2895226961
+UniRef50_V6JPJ0|unclassified	0.2895226961
+UniRef50_Q3JHB3	0.2895095496
+UniRef50_Q3JHB3|unclassified	0.2895095496
+UniRef50_UPI00047D766C: hypothetical protein, partial	0.2895064985
+UniRef50_UPI00047D766C: hypothetical protein, partial|unclassified	0.2895064985
+UniRef50_UPI00034B9016: ABC transporter permease	0.2894775415
+UniRef50_UPI00034B9016: ABC transporter permease|unclassified	0.2894775415
+UniRef50_UPI0004787C34: D-ala-D-ala transporter subunit	0.2894753319
+UniRef50_UPI0004787C34: D-ala-D-ala transporter subunit|unclassified	0.2894753319
+UniRef50_Q0A5L2	0.2894679281
+UniRef50_Q0A5L2|unclassified	0.2894679281
+UniRef50_D4MQV9	0.2894671101
+UniRef50_D4MQV9|unclassified	0.2894671101
+UniRef50_A3JWP3	0.2894608370
+UniRef50_A3JWP3|unclassified	0.2894608370
+UniRef50_Q3YS21: Acetylglutamate kinase	0.2894131411
+UniRef50_Q3YS21: Acetylglutamate kinase|unclassified	0.2894131411
+UniRef50_G0HAA3: Putative membrane protein	0.2894038381
+UniRef50_G0HAA3: Putative membrane protein|unclassified	0.2894038381
+UniRef50_F8KHZ0: Conserved membrane protein	0.2893672032
+UniRef50_F8KHZ0: Conserved membrane protein|unclassified	0.2893672032
+UniRef50_K2AXX8	0.2893642797
+UniRef50_K2AXX8|unclassified	0.2893642797
+UniRef50_D7A0A5: Phage head-tail adaptor	0.2893617648
+UniRef50_D7A0A5: Phage head-tail adaptor|unclassified	0.2893617648
+UniRef50_C2TQN3: Transcriptional regulator, ArsR	0.2893590711
+UniRef50_C2TQN3: Transcriptional regulator, ArsR|unclassified	0.2893590711
+UniRef50_U5SN53	0.2893574346
+UniRef50_U5SN53|unclassified	0.2893574346
+UniRef50_UPI00039B6E7E: fructoselysine transporter	0.2893158259
+UniRef50_UPI00039B6E7E: fructoselysine transporter|unclassified	0.2893158259
+UniRef50_UPI000466BB52: hypothetical protein	0.2893067321
+UniRef50_UPI000466BB52: hypothetical protein|unclassified	0.2893067321
+UniRef50_UPI0003792E4A: hypothetical protein	0.2892836759
+UniRef50_UPI0003792E4A: hypothetical protein|unclassified	0.2892836759
+UniRef50_UPI0003B42639: heme ABC transporter ATPase	0.2892528503
+UniRef50_UPI0003B42639: heme ABC transporter ATPase|unclassified	0.2892528503
+UniRef50_UPI00036CEAE9: hypothetical protein	0.2892343712
+UniRef50_UPI00036CEAE9: hypothetical protein|unclassified	0.2892343712
+UniRef50_UPI00031C8415: hypothetical protein	0.2891944766
+UniRef50_UPI00031C8415: hypothetical protein|unclassified	0.2891944766
+UniRef50_C3BLA6: Phosphoglycerate mutase	0.2891804361
+UniRef50_C3BLA6: Phosphoglycerate mutase|unclassified	0.2891804361
+UniRef50_R8T1N5	0.2891320799
+UniRef50_R8T1N5|unclassified	0.2891320799
+UniRef50_F7W8N3: WGS project CABT00000000 data, contig 2.46	0.2891178163
+UniRef50_F7W8N3: WGS project CABT00000000 data, contig 2.46|unclassified	0.2891178163
+UniRef50_U1SA58	0.2890485550
+UniRef50_U1SA58|unclassified	0.2890485550
+UniRef50_Q5KUX2: D-ribose pyranase	0.2890479867
+UniRef50_Q5KUX2: D-ribose pyranase|unclassified	0.2890479867
+UniRef50_K3ZPB9	0.2890384089
+UniRef50_K3ZPB9|unclassified	0.2890384089
+UniRef50_T1XMS4	0.2890173410
+UniRef50_T1XMS4|unclassified	0.2890173410
+UniRef50_U1ZE92	0.2890088574
+UniRef50_U1ZE92|unclassified	0.2890088574
+UniRef50_UPI000377E83F: hypothetical protein	0.2890018137
+UniRef50_UPI000377E83F: hypothetical protein|unclassified	0.2890018137
+UniRef50_UPI00035CC3C8: 50S ribosomal protein L18	0.2889801163
+UniRef50_UPI00035CC3C8: 50S ribosomal protein L18|unclassified	0.2889801163
+UniRef50_G0W8W8	0.2889676836
+UniRef50_G0W8W8|unclassified	0.2889676836
+UniRef50_UPI00039F44DE: UDP-N-acetylglucosamine pyrophosphorylase	0.2889657063
+UniRef50_UPI00039F44DE: UDP-N-acetylglucosamine pyrophosphorylase|unclassified	0.2889657063
+UniRef50_W0CH72	0.2889334215
+UniRef50_W0CH72|unclassified	0.2889334215
+UniRef50_U3H2M3	0.2889257538
+UniRef50_U3H2M3|unclassified	0.2889257538
+UniRef50_UPI0004751041: thiamine biosynthesis protein ApbE, partial	0.2888885978
+UniRef50_UPI0004751041: thiamine biosynthesis protein ApbE, partial|unclassified	0.2888885978
+UniRef50_UPI000262CB7E: transcriptional regulator	0.2888677454
+UniRef50_UPI000262CB7E: transcriptional regulator|unclassified	0.2888677454
+UniRef50_UPI0003804668: hypothetical protein, partial	0.2888658545
+UniRef50_UPI0003804668: hypothetical protein, partial|unclassified	0.2888658545
+UniRef50_A3TK64	0.2888463998
+UniRef50_A3TK64|unclassified	0.2888463998
+UniRef50_Q8T6Z1: Thioredoxin reductase (Fragment)	0.2888380470
+UniRef50_Q8T6Z1: Thioredoxin reductase (Fragment)|unclassified	0.2888380470
+UniRef50_Q479B1: D-amino acid dehydrogenase small subunit	0.2888349299
+UniRef50_Q479B1: D-amino acid dehydrogenase small subunit|unclassified	0.2888349299
+UniRef50_UPI0002192BB5: thymidylate kinase, partial	0.2888221491
+UniRef50_UPI0002192BB5: thymidylate kinase, partial|unclassified	0.2888221491
+UniRef50_UPI0004015F07: amino acid ABC transporter substrate-binding protein	0.2888086075
+UniRef50_UPI0004015F07: amino acid ABC transporter substrate-binding protein|unclassified	0.2888086075
+UniRef50_UPI00037E8315: hypothetical protein	0.2887758182
+UniRef50_UPI00037E8315: hypothetical protein|unclassified	0.2887758182
+UniRef50_UPI0002197A61: acetyltransferase	0.2887621258
+UniRef50_UPI0002197A61: acetyltransferase|unclassified	0.2887621258
+UniRef50_H8FXB3	0.2887395010
+UniRef50_H8FXB3|unclassified	0.2887395010
+UniRef50_F3F5R2: N-acetylmuramoyl-L-alanine amidase (Fragment)	0.2887238276
+UniRef50_F3F5R2: N-acetylmuramoyl-L-alanine amidase (Fragment)|unclassified	0.2887238276
+UniRef50_UPI0003822DD9: hypothetical protein	0.2887117747
+UniRef50_UPI0003822DD9: hypothetical protein|unclassified	0.2887117747
+UniRef50_UPI0003F904B8: hypothetical protein	0.2886708115
+UniRef50_UPI0003F904B8: hypothetical protein|unclassified	0.2886708115
+UniRef50_U4UZS3	0.2886615803
+UniRef50_U4UZS3|unclassified	0.2886615803
+UniRef50_UPI0003B6F169: NADH-ubiquinone oxidoreductase	0.2886501279
+UniRef50_UPI0003B6F169: NADH-ubiquinone oxidoreductase|unclassified	0.2886501279
+UniRef50_S5XSR9	0.2886422271
+UniRef50_S5XSR9|unclassified	0.2886422271
+UniRef50_UPI00046724DA: hypothetical protein	0.2885955514
+UniRef50_UPI00046724DA: hypothetical protein|unclassified	0.2885955514
+UniRef50_UPI00034472D6	0.2885643952
+UniRef50_UPI00034472D6|unclassified	0.2885643952
+UniRef50_UPI0002E05B85: hypothetical protein	0.2885571942
+UniRef50_UPI0002E05B85: hypothetical protein|unclassified	0.2885571942
+UniRef50_UPI0003C7DD8C: imidazole glycerol phosphate synthase	0.2885353419
+UniRef50_UPI0003C7DD8C: imidazole glycerol phosphate synthase|unclassified	0.2885353419
+UniRef50_P90463: Thymidylate synthase	0.2885221524
+UniRef50_P90463: Thymidylate synthase|unclassified	0.2885221524
+UniRef50_D4GJL5: UPF0246 protein PANA_0658	0.2884860741
+UniRef50_D4GJL5: UPF0246 protein PANA_0658|unclassified	0.2884860741
+UniRef50_UPI0002491C94: N-6 DNA methylase	0.2884858739
+UniRef50_UPI0002491C94: N-6 DNA methylase|unclassified	0.2884858739
+UniRef50_A6W322: Transposase IS4 family protein	0.2884787667
+UniRef50_A6W322: Transposase IS4 family protein|unclassified	0.2884787667
+UniRef50_W4VJK9: Oligopeptide transport system permease protein OppB	0.2884401670
+UniRef50_W4VJK9: Oligopeptide transport system permease protein OppB|unclassified	0.2884401670
+UniRef50_UPI0004690BFC: transposase	0.2884306224
+UniRef50_UPI0004690BFC: transposase|unclassified	0.2884306224
+UniRef50_T0KIY8	0.2884155757
+UniRef50_T0KIY8|unclassified	0.2884155757
+UniRef50_R0U5E9	0.2883780399
+UniRef50_R0U5E9|unclassified	0.2883780399
+UniRef50_UPI0003C77E7B: hypothetical protein	0.2883718813
+UniRef50_UPI0003C77E7B: hypothetical protein|unclassified	0.2883718813
+UniRef50_I4WU52	0.2883534977
+UniRef50_I4WU52|unclassified	0.2883534977
+UniRef50_L5ME78: Transforming acidic coiled-coil-containing protein 3	0.2883506344
+UniRef50_L5ME78: Transforming acidic coiled-coil-containing protein 3|unclassified	0.2883506344
+UniRef50_I2PC87: Hydrogenase-4 component A	0.2883386792
+UniRef50_I2PC87: Hydrogenase-4 component A|unclassified	0.2883386792
+UniRef50_A0A011A6W4	0.2883381384
+UniRef50_A0A011A6W4|unclassified	0.2883381384
+UniRef50_UPI0003787BF0: hypothetical protein	0.2883239450
+UniRef50_UPI0003787BF0: hypothetical protein|unclassified	0.2883239450
+UniRef50_U6KES5	0.2882958030
+UniRef50_U6KES5|unclassified	0.2882958030
+UniRef50_E3Z6R5: Ethanolamine utilization protein EutJ (Fragment)	0.2882920717
+UniRef50_E3Z6R5: Ethanolamine utilization protein EutJ (Fragment)|unclassified	0.2882920717
+UniRef50_A0A059ITV9	0.2882885856
+UniRef50_A0A059ITV9|unclassified	0.2882885856
+UniRef50_UPI000382AF27: hypothetical protein	0.2882815480
+UniRef50_UPI000382AF27: hypothetical protein|unclassified	0.2882815480
+UniRef50_P31891: Uptake hydrogenase large subunit	0.2882706506
+UniRef50_P31891: Uptake hydrogenase large subunit|unclassified	0.2882706506
+UniRef50_UPI0002D3DFAA: D-arabinose 5-phosphate isomerase	0.2882581627
+UniRef50_UPI0002D3DFAA: D-arabinose 5-phosphate isomerase|unclassified	0.2882581627
+UniRef50_UPI00037971B7: hypothetical protein	0.2882283181
+UniRef50_UPI00037971B7: hypothetical protein|unclassified	0.2882283181
+UniRef50_P51601: GTP cyclohydrolase 1	0.2882265817
+UniRef50_P51601: GTP cyclohydrolase 1|unclassified	0.2882265817
+UniRef50_UPI0003B6D6B9: DNA invertase	0.2882239902
+UniRef50_UPI0003B6D6B9: DNA invertase|unclassified	0.2882239902
+UniRef50_UPI0003B45945: glycosyl transferase	0.2881939752
+UniRef50_UPI0003B45945: glycosyl transferase|unclassified	0.2881939752
+UniRef50_F2TZ40	0.2881912378
+UniRef50_F2TZ40|unclassified	0.2881912378
+UniRef50_W1N460	0.2881891232
+UniRef50_W1N460|unclassified	0.2881891232
+UniRef50_N1MM41	0.2881814722
+UniRef50_N1MM41|unclassified	0.2881814722
+UniRef50_UPI0004669D64: transcriptional regulator	0.2881788811
+UniRef50_UPI0004669D64: transcriptional regulator|unclassified	0.2881788811
+UniRef50_W3V954	0.2881266936
+UniRef50_W3V954|unclassified	0.2881266936
+UniRef50_UPI0004440052: PREDICTED: serine/arginine repetitive matrix protein 1-like	0.2880452950
+UniRef50_UPI0004440052: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	0.2880452950
+UniRef50_A4XE90	0.2880277043
+UniRef50_A4XE90|unclassified	0.2880277043
+UniRef50_UPI00046A02CC: hypothetical protein	0.2880176079
+UniRef50_UPI00046A02CC: hypothetical protein|unclassified	0.2880176079
+UniRef50_UPI0004785413: hypothetical protein	0.2879700924
+UniRef50_UPI0004785413: hypothetical protein|unclassified	0.2879700924
+UniRef50_UPI00035E7B02: flavin reductase	0.2879662716
+UniRef50_UPI00035E7B02: flavin reductase|unclassified	0.2879662716
+UniRef50_Q2T3C7: Lipoprotein	0.2879612729
+UniRef50_Q2T3C7: Lipoprotein|unclassified	0.2879612729
+UniRef50_UPI000475A5B8: hypothetical protein	0.2879531883
+UniRef50_UPI000475A5B8: hypothetical protein|unclassified	0.2879531883
+UniRef50_T2SAT9	0.2879507008
+UniRef50_T2SAT9|unclassified	0.2879507008
+UniRef50_UPI0004747A12: ring-cleaving dioxygenase, partial	0.2879159874
+UniRef50_UPI0004747A12: ring-cleaving dioxygenase, partial|unclassified	0.2879159874
+UniRef50_B3D6R0	0.2879101332
+UniRef50_B3D6R0|unclassified	0.2879101332
+UniRef50_Q59JX1: Acidic repetitive protein	0.2879077231
+UniRef50_Q59JX1: Acidic repetitive protein|unclassified	0.2879077231
+UniRef50_Q7NZK4: C4-dicarboxylate transport system, permease small subunit	0.2878937014
+UniRef50_Q7NZK4: C4-dicarboxylate transport system, permease small subunit|unclassified	0.2878937014
+UniRef50_A0A024HXE1	0.2878663047
+UniRef50_A0A024HXE1|unclassified	0.2878663047
+UniRef50_UPI00031C032C: cytochrome C oxidase assembly protein	0.2878616686
+UniRef50_UPI00031C032C: cytochrome C oxidase assembly protein|unclassified	0.2878616686
+UniRef50_W6AMQ6	0.2878520740
+UniRef50_W6AMQ6|unclassified	0.2878520740
+UniRef50_A9D8H9	0.2878222663
+UniRef50_A9D8H9|unclassified	0.2878222663
+UniRef50_Q166C0	0.2878088926
+UniRef50_Q166C0|unclassified	0.2878088926
+UniRef50_UPI0003655A5A: hypothetical protein	0.2877965702
+UniRef50_UPI0003655A5A: hypothetical protein|unclassified	0.2877965702
+UniRef50_UPI00039B1E4A: hypothetical protein	0.2877905511
+UniRef50_UPI00039B1E4A: hypothetical protein|unclassified	0.2877905511
+UniRef50_D7FMR1	0.2877697842
+UniRef50_D7FMR1|unclassified	0.2877697842
+UniRef50_UPI0002559CCD: hypothetical protein	0.2877652601
+UniRef50_UPI0002559CCD: hypothetical protein|unclassified	0.2877652601
+UniRef50_M9RAR4	0.2877575706
+UniRef50_M9RAR4|unclassified	0.2877575706
+UniRef50_A0A059ECE9	0.2877155166
+UniRef50_A0A059ECE9|unclassified	0.2877155166
+UniRef50_R7A4Y7	0.2877146347
+UniRef50_R7A4Y7|unclassified	0.2877146347
+UniRef50_F6G433	0.2876861988
+UniRef50_F6G433|unclassified	0.2876861988
+UniRef50_L8XNP9: tRNA 2-thiocytidine biosynthesis protein TtcA	0.2876754654
+UniRef50_L8XNP9: tRNA 2-thiocytidine biosynthesis protein TtcA|unclassified	0.2876754654
+UniRef50_P0C0E8: Energy-coupling factor transporter ATP-binding protein EcfA1	0.2876271886
+UniRef50_P0C0E8: Energy-coupling factor transporter ATP-binding protein EcfA1|unclassified	0.2876271886
+UniRef50_P0CZ28: Energy-coupling factor transporter ATP-binding protein EcfA1	0.2876271886
+UniRef50_P0CZ28: Energy-coupling factor transporter ATP-binding protein EcfA1|unclassified	0.2876271886
+UniRef50_I3E330	0.2875857304
+UniRef50_I3E330|unclassified	0.2875857304
+UniRef50_UPI00047922E2: hypothetical protein	0.2875854457
+UniRef50_UPI00047922E2: hypothetical protein|unclassified	0.2875854457
+UniRef50_UPI00036E481B: hypothetical protein	0.2875664822
+UniRef50_UPI00036E481B: hypothetical protein|unclassified	0.2875664822
+UniRef50_V9ZNW6: Acyl-CoA thioesterase	0.2875424965
+UniRef50_V9ZNW6: Acyl-CoA thioesterase|unclassified	0.2875424965
+UniRef50_UPI0003B59F9C: universal stress protein A, partial	0.2875346592
+UniRef50_UPI0003B59F9C: universal stress protein A, partial|unclassified	0.2875346592
+UniRef50_A0A058Z1A8	0.2875215641
+UniRef50_A0A058Z1A8|unclassified	0.2875215641
+UniRef50_U6B4B7: Lipoprotein	0.2875105941
+UniRef50_U6B4B7: Lipoprotein|unclassified	0.2875105941
+UniRef50_UPI00035E1868: hypothetical protein	0.2875103488
+UniRef50_UPI00035E1868: hypothetical protein|unclassified	0.2875103488
+UniRef50_Q7NW80	0.2874889038
+UniRef50_Q7NW80|unclassified	0.2874889038
+UniRef50_UPI0004283028: dihydrodipicolinate reductase	0.2874814280
+UniRef50_UPI0004283028: dihydrodipicolinate reductase|unclassified	0.2874814280
+UniRef50_UPI0001DD0A5B: glucose-methanol-choline oxidoreductase	0.2874730363
+UniRef50_UPI0001DD0A5B: glucose-methanol-choline oxidoreductase|unclassified	0.2874730363
+UniRef50_Q492E1: Histidine--tRNA ligase	0.2874332350
+UniRef50_Q492E1: Histidine--tRNA ligase|unclassified	0.2874332350
+UniRef50_T5AHI9	0.2874306566
+UniRef50_T5AHI9|unclassified	0.2874306566
+UniRef50_X0P3U7	0.2874233929
+UniRef50_X0P3U7|unclassified	0.2874233929
+UniRef50_UPI00036FC269: MULTISPECIES: hypothetical protein	0.2873632868
+UniRef50_UPI00036FC269: MULTISPECIES: hypothetical protein|unclassified	0.2873632868
+UniRef50_Q6GIB4	0.2873561832
+UniRef50_Q6GIB4|unclassified	0.2873561832
+UniRef50_UPI0002F93554: hypothetical protein	0.2873321378
+UniRef50_UPI0002F93554: hypothetical protein|unclassified	0.2873321378
+UniRef50_V7Z2E2	0.2873248446
+UniRef50_V7Z2E2|unclassified	0.2873248446
+UniRef50_Z1ASX4	0.2873181915
+UniRef50_Z1ASX4|unclassified	0.2873181915
+UniRef50_UPI0003B6F5DE: peptidase, partial	0.2873155562
+UniRef50_UPI0003B6F5DE: peptidase, partial|unclassified	0.2873155562
+UniRef50_UPI00037B241C: hypothetical protein	0.2872190454
+UniRef50_UPI00037B241C: hypothetical protein|unclassified	0.2872190454
+UniRef50_K2J756: Lipoprotein	0.2871929069
+UniRef50_K2J756: Lipoprotein|unclassified	0.2871929069
+UniRef50_UPI0002558558: C4-dicarboxylate ABC transporter permease	0.2871919556
+UniRef50_UPI0002558558: C4-dicarboxylate ABC transporter permease|unclassified	0.2871919556
+UniRef50_UPI00034848D1: hypothetical protein	0.2871804729
+UniRef50_UPI00034848D1: hypothetical protein|unclassified	0.2871804729
+UniRef50_UPI0003B689DE: hypothetical protein, partial	0.2871754266
+UniRef50_UPI0003B689DE: hypothetical protein, partial|unclassified	0.2871754266
+UniRef50_D5ALL6	0.2871581340
+UniRef50_D5ALL6|unclassified	0.2871581340
+UniRef50_Q2C7C2	0.2871570142
+UniRef50_Q2C7C2|unclassified	0.2871570142
+UniRef50_L0RET5	0.2871365794
+UniRef50_L0RET5|unclassified	0.2871365794
+UniRef50_Q62KB8	0.2871265835
+UniRef50_Q62KB8|unclassified	0.2871265835
+UniRef50_UPI0004731617: hypothetical protein	0.2870643300
+UniRef50_UPI0004731617: hypothetical protein|unclassified	0.2870643300
+UniRef50_A4IU05	0.2870296961
+UniRef50_A4IU05|unclassified	0.2870296961
+UniRef50_T1DQ54: Putative dosage compensation complex subunit mle (Fragment)	0.2870264064
+UniRef50_T1DQ54: Putative dosage compensation complex subunit mle (Fragment)|unclassified	0.2870264064
+UniRef50_K4KI12: Isochorismate synthase	0.2869973284
+UniRef50_K4KI12: Isochorismate synthase|unclassified	0.2869973284
+UniRef50_UPI000373EC94: hypothetical protein	0.2869934067
+UniRef50_UPI000373EC94: hypothetical protein|unclassified	0.2869934067
+UniRef50_C4J2N4	0.2869820761
+UniRef50_C4J2N4|unclassified	0.2869820761
+UniRef50_UPI00047B3327: peroxiredoxin	0.2869814747
+UniRef50_UPI00047B3327: peroxiredoxin|unclassified	0.2869814747
+UniRef50_UPI00036D94AF: hypothetical protein	0.2869713568
+UniRef50_UPI00036D94AF: hypothetical protein|unclassified	0.2869713568
+UniRef50_UPI00028898B7: lytic transglycosylase, catalytic	0.2869607496
+UniRef50_UPI00028898B7: lytic transglycosylase, catalytic|unclassified	0.2869607496
+UniRef50_S3ZAJ9	0.2869308361
+UniRef50_S3ZAJ9|unclassified	0.2869308361
+UniRef50_UPI00044322BE	0.2869229809
+UniRef50_UPI00044322BE|unclassified	0.2869229809
+UniRef50_U6JTT0: Beta-tubulin cofactor d, putative	0.2869149823
+UniRef50_U6JTT0: Beta-tubulin cofactor d, putative|unclassified	0.2869149823
+UniRef50_N0BY82	0.2869070932
+UniRef50_N0BY82|unclassified	0.2869070932
+UniRef50_UPI0003A0B53A: RNA polymerase sigma54 factor	0.2869065788
+UniRef50_UPI0003A0B53A: RNA polymerase sigma54 factor|unclassified	0.2869065788
+UniRef50_B2VHU9: Adenine phosphoribosyltransferase	0.2869052173
+UniRef50_B2VHU9: Adenine phosphoribosyltransferase|unclassified	0.2869052173
+UniRef50_Q74HL8: NADH-dependent flavin reductase subunit 2	0.2869004666
+UniRef50_Q74HL8: NADH-dependent flavin reductase subunit 2|unclassified	0.2869004666
+UniRef50_A0A038FII5: Putative resolvase	0.2868967820
+UniRef50_A0A038FII5: Putative resolvase|unclassified	0.2868967820
+UniRef50_UPI0003B30ABB: sodium:calcium antiporter	0.2868921181
+UniRef50_UPI0003B30ABB: sodium:calcium antiporter|unclassified	0.2868921181
+UniRef50_V9WJH0	0.2868666552
+UniRef50_V9WJH0|unclassified	0.2868666552
+UniRef50_L8DWF8: Ferredoxin-dependent glutamate synthase 1	0.2868268671
+UniRef50_L8DWF8: Ferredoxin-dependent glutamate synthase 1|unclassified	0.2868268671
+UniRef50_UPI00040B8B62: cytochrome C biogenesis protein CcmF	0.2868159582
+UniRef50_UPI00040B8B62: cytochrome C biogenesis protein CcmF|unclassified	0.2868159582
+UniRef50_H3KGD4	0.2867902363
+UniRef50_H3KGD4|unclassified	0.2867902363
+UniRef50_UPI0002001E32: PilT domain-containing protein	0.2867287044
+UniRef50_UPI0002001E32: PilT domain-containing protein|unclassified	0.2867287044
+UniRef50_R5HR20	0.2867253623
+UniRef50_R5HR20|unclassified	0.2867253623
+UniRef50_A0A028VK75: ATPase	0.2866776785
+UniRef50_A0A028VK75: ATPase|unclassified	0.2866776785
+UniRef50_A0A033G8H1	0.2866719891
+UniRef50_A0A033G8H1|unclassified	0.2866719891
+UniRef50_X5IXK7: IS431mec, transposase	0.2866719891
+UniRef50_X5IXK7: IS431mec, transposase|unclassified	0.2866719891
+UniRef50_Y7FMH1	0.2866719891
+UniRef50_Y7FMH1|unclassified	0.2866719891
+UniRef50_A8LL15	0.2866662575
+UniRef50_A8LL15|unclassified	0.2866662575
+UniRef50_UPI0003663874: hypothetical protein	0.2866558332
+UniRef50_UPI0003663874: hypothetical protein|unclassified	0.2866558332
+UniRef50_UPI0003667A21: hypothetical protein	0.2866240145
+UniRef50_UPI0003667A21: hypothetical protein|unclassified	0.2866240145
+UniRef50_Q8PZP6: NH(3)-dependent NAD(+) synthetase	0.2866231844
+UniRef50_Q8PZP6: NH(3)-dependent NAD(+) synthetase|unclassified	0.2866231844
+UniRef50_Q31I68: Ribosomal RNA small subunit methyltransferase H	0.2866205052
+UniRef50_Q31I68: Ribosomal RNA small subunit methyltransferase H|unclassified	0.2866205052
+UniRef50_UPI00038103BA: hypothetical protein	0.2865766752
+UniRef50_UPI00038103BA: hypothetical protein|unclassified	0.2865766752
+UniRef50_D0PL31: Transcriptional regulator	0.2865737847
+UniRef50_D0PL31: Transcriptional regulator|unclassified	0.2865737847
+UniRef50_UPI00047A93E4: spermidine/putrescine ABC transporter ATP-binding protein	0.2865487929
+UniRef50_UPI00047A93E4: spermidine/putrescine ABC transporter ATP-binding protein|unclassified	0.2865487929
+UniRef50_UPI00037E5F5F: pilus assembly protein PilP	0.2864773140
+UniRef50_UPI00037E5F5F: pilus assembly protein PilP|unclassified	0.2864773140
+UniRef50_P48596: GTP cyclohydrolase 1	0.2864420762
+UniRef50_P48596: GTP cyclohydrolase 1|unclassified	0.2864420762
+UniRef50_UPI0000166C32: hypothetical protein	0.2864415248
+UniRef50_UPI0000166C32: hypothetical protein|unclassified	0.2864415248
+UniRef50_Q2NA61: NADH-quinone oxidoreductase subunit B	0.2864383346
+UniRef50_Q2NA61: NADH-quinone oxidoreductase subunit B|unclassified	0.2864383346
+UniRef50_Q1R1I5: Putative Holliday junction resolvase	0.2864356085
+UniRef50_Q1R1I5: Putative Holliday junction resolvase|unclassified	0.2864356085
+UniRef50_W5X2Q0	0.2864217925
+UniRef50_W5X2Q0|unclassified	0.2864217925
+UniRef50_A1WTI6: Anti-sigma-factor antagonist	0.2864082976
+UniRef50_A1WTI6: Anti-sigma-factor antagonist|unclassified	0.2864082976
+UniRef50_UPI000476E7CA: hypothetical protein, partial	0.2863969084
+UniRef50_UPI000476E7CA: hypothetical protein, partial|unclassified	0.2863969084
+UniRef50_Q46988: ORF14 (Fragment)	0.2863874196
+UniRef50_Q46988: ORF14 (Fragment)|unclassified	0.2863874196
+UniRef50_Q04DA2: 3-isopropylmalate dehydratase small subunit	0.2863745720
+UniRef50_Q04DA2: 3-isopropylmalate dehydratase small subunit|unclassified	0.2863745720
+UniRef50_S3MMW9	0.2863707078
+UniRef50_S3MMW9|unclassified	0.2863707078
+UniRef50_UPI00047A708D: uroporphyrin-III methyltransferase	0.2863447780
+UniRef50_UPI00047A708D: uroporphyrin-III methyltransferase|unclassified	0.2863447780
+UniRef50_W7NPF1: Inner membrane protein YidI	0.2863321646
+UniRef50_W7NPF1: Inner membrane protein YidI|unclassified	0.2863321646
+UniRef50_A0A059IMJ3: Invasion associated family protein	0.2863247050
+UniRef50_A0A059IMJ3: Invasion associated family protein|unclassified	0.2863247050
+UniRef50_G5NYU8: Baseplate assembly protein J	0.2863077808
+UniRef50_G5NYU8: Baseplate assembly protein J|unclassified	0.2863077808
+UniRef50_UPI0004700FE4: hypothetical protein	0.2862890412
+UniRef50_UPI0004700FE4: hypothetical protein|unclassified	0.2862890412
+UniRef50_UPI0003B677A0: trehalose-phosphatase	0.2862614462
+UniRef50_UPI0003B677A0: trehalose-phosphatase|unclassified	0.2862614462
+UniRef50_UPI00029166C3: 23S rRNA methyltransferase J	0.2862469387
+UniRef50_UPI00029166C3: 23S rRNA methyltransferase J|unclassified	0.2862469387
+UniRef50_A0A018BA28: Protein essC	0.2862325655
+UniRef50_A0A018BA28: Protein essC|unclassified	0.2862325655
+UniRef50_UPI0001D556A5: PREDICTED: hypothetical protein LOC100423481	0.2862228436
+UniRef50_UPI0001D556A5: PREDICTED: hypothetical protein LOC100423481|unclassified	0.2862228436
+UniRef50_UPI000255BA6E: general secretion pathway protein I	0.2862130635
+UniRef50_UPI000255BA6E: general secretion pathway protein I|unclassified	0.2862130635
+UniRef50_Q73RR6: Formate--tetrahydrofolate ligase	0.2861667315
+UniRef50_Q73RR6: Formate--tetrahydrofolate ligase|unclassified	0.2861667315
+UniRef50_UPI00029A29A8: oligo-1,6-glucosidase, partial	0.2861497913
+UniRef50_UPI00029A29A8: oligo-1,6-glucosidase, partial|unclassified	0.2861497913
+UniRef50_B9DK04	0.2861408114
+UniRef50_B9DK04|unclassified	0.2861408114
+UniRef50_G8PHZ9: Cyclase/dehydrase	0.2861384432
+UniRef50_G8PHZ9: Cyclase/dehydrase|unclassified	0.2861384432
+UniRef50_H3NTE5	0.2860917798
+UniRef50_H3NTE5|unclassified	0.2860917798
+UniRef50_G5MRS1: TldE/PmbA protein	0.2860906273
+UniRef50_G5MRS1: TldE/PmbA protein|unclassified	0.2860906273
+UniRef50_Q722V6: Homoserine O-acetyltransferase	0.2860890076
+UniRef50_Q722V6: Homoserine O-acetyltransferase|unclassified	0.2860890076
+UniRef50_V9VV66	0.2860846585
+UniRef50_V9VV66|unclassified	0.2860846585
+UniRef50_M2R9V5	0.2860723086
+UniRef50_M2R9V5|unclassified	0.2860723086
+UniRef50_UPI000306724C: thioredoxin	0.2860610515
+UniRef50_UPI000306724C: thioredoxin|unclassified	0.2860610515
+UniRef50_Q3JY01	0.2860535639
+UniRef50_Q3JY01|unclassified	0.2860535639
+UniRef50_UPI000388AA56: PREDICTED: mitochondrial peptide methionine sulfoxide reductase-like isoform X1	0.2860482329
+UniRef50_UPI000388AA56: PREDICTED: mitochondrial peptide methionine sulfoxide reductase-like isoform X1|unclassified	0.2860482329
+UniRef50_UPI000237E2D9: hypothetical protein	0.2859680112
+UniRef50_UPI000237E2D9: hypothetical protein|unclassified	0.2859680112
+UniRef50_UPI0003629460: hypothetical protein, partial	0.2859655309
+UniRef50_UPI0003629460: hypothetical protein, partial|unclassified	0.2859655309
+UniRef50_UPI00047C384C: hypothetical protein	0.2859574160
+UniRef50_UPI00047C384C: hypothetical protein|unclassified	0.2859574160
+UniRef50_E3DQN8: Lipoprotein	0.2859306418
+UniRef50_E3DQN8: Lipoprotein|unclassified	0.2859306418
+UniRef50_UPI00046741A1: hypothetical protein	0.2859171085
+UniRef50_UPI00046741A1: hypothetical protein|unclassified	0.2859171085
+UniRef50_Q65H34: Shikimate dehydrogenase	0.2858541178
+UniRef50_Q65H34: Shikimate dehydrogenase|unclassified	0.2858541178
+UniRef50_K9P787: Prevent-host-death family protein	0.2858476166
+UniRef50_K9P787: Prevent-host-death family protein|unclassified	0.2858476166
+UniRef50_A2SME8	0.2858264580
+UniRef50_A2SME8|unclassified	0.2858264580
+UniRef50_UPI00035E2D65: 4''''-phosphopantetheinyl transferase	0.2858131019
+UniRef50_UPI00035E2D65: 4''''-phosphopantetheinyl transferase|unclassified	0.2858131019
+UniRef50_B0V8Z8: ATP-dependent dsDNA exonuclease (Suppression of recBC)	0.2857959417
+UniRef50_B0V8Z8: ATP-dependent dsDNA exonuclease (Suppression of recBC)|g__Acinetobacter.s__Acinetobacter_baumannii	0.2857959417
+UniRef50_U2RU46	0.2857801468
+UniRef50_U2RU46|unclassified	0.2857801468
+UniRef50_A0A017HSJ2	0.2857799936
+UniRef50_A0A017HSJ2|unclassified	0.2857799936
+UniRef50_V9G9B3: Membrane protein, putative	0.2857635710
+UniRef50_V9G9B3: Membrane protein, putative|unclassified	0.2857635710
+UniRef50_Q83JX6	0.2857497118
+UniRef50_Q83JX6|unclassified	0.2857497118
+UniRef50_A0A016XKV2: Polyketide cyclase	0.2857493295
+UniRef50_A0A016XKV2: Polyketide cyclase|unclassified	0.2857493295
+UniRef50_D2BRG5: Transposase of IS1216E, IS6 family	0.2856891953
+UniRef50_D2BRG5: Transposase of IS1216E, IS6 family|unclassified	0.2856891953
+UniRef50_J9NXA3	0.2856814054
+UniRef50_J9NXA3|unclassified	0.2856814054
+UniRef50_K8BP08	0.2856196862
+UniRef50_K8BP08|unclassified	0.2856196862
+UniRef50_A0A034V5F2: TWiK family of potassium channels protein 7 (Fragment)	0.2856146251
+UniRef50_A0A034V5F2: TWiK family of potassium channels protein 7 (Fragment)|unclassified	0.2856146251
+UniRef50_Q7MGT0	0.2856074065
+UniRef50_Q7MGT0|unclassified	0.2856074065
+UniRef50_UPI0004786A9D: hypothetical protein, partial	0.2856054259
+UniRef50_UPI0004786A9D: hypothetical protein, partial|unclassified	0.2856054259
+UniRef50_UPI0004712631: metallophosphoesterase	0.2855818161
+UniRef50_UPI0004712631: metallophosphoesterase|unclassified	0.2855818161
+UniRef50_W7SQL2: LigA protein	0.2855420233
+UniRef50_W7SQL2: LigA protein|unclassified	0.2855420233
+UniRef50_J9GKH0	0.2855206423
+UniRef50_J9GKH0|unclassified	0.2855206423
+UniRef50_K1Z9X8	0.2855201544
+UniRef50_K1Z9X8|unclassified	0.2855201544
+UniRef50_S8VH52	0.2854578585
+UniRef50_S8VH52|unclassified	0.2854578585
+UniRef50_UPI000470B8F7: hypothetical protein	0.2854484239
+UniRef50_UPI000470B8F7: hypothetical protein|unclassified	0.2854484239
+UniRef50_UPI0003829C73: hypothetical protein	0.2854403237
+UniRef50_UPI0003829C73: hypothetical protein|unclassified	0.2854403237
+UniRef50_UPI0004706840: peptide ABC transporter permease	0.2854129524
+UniRef50_UPI0004706840: peptide ABC transporter permease|unclassified	0.2854129524
+UniRef50_F3HMU3: Putative monovalent cation/H+ antiporter subunit A (Fragment)	0.2854048384
+UniRef50_F3HMU3: Putative monovalent cation/H+ antiporter subunit A (Fragment)|unclassified	0.2854048384
+UniRef50_A9GUD6	0.2854024364
+UniRef50_A9GUD6|unclassified	0.2854024364
+UniRef50_UPI00037C472F: hypothetical protein, partial	0.2853916072
+UniRef50_UPI00037C472F: hypothetical protein, partial|unclassified	0.2853916072
+UniRef50_H5SB96: Circadian clock protein KaiC	0.2853775581
+UniRef50_H5SB96: Circadian clock protein KaiC|unclassified	0.2853775581
+UniRef50_UPI00035CE3F3: hypothetical protein	0.2853666426
+UniRef50_UPI00035CE3F3: hypothetical protein|unclassified	0.2853666426
+UniRef50_H0DP88	0.2853637916
+UniRef50_H0DP88|unclassified	0.2853637916
+UniRef50_W1EQ36: Protein ybjI	0.2853537705
+UniRef50_W1EQ36: Protein ybjI|unclassified	0.2853537705
+UniRef50_A0A011Q6F6: Ribosomal RNA small subunit methyltransferase I	0.2853455251
+UniRef50_A0A011Q6F6: Ribosomal RNA small subunit methyltransferase I|unclassified	0.2853455251
+UniRef50_UPI000441849F: hypothetical protein PUNSTDRAFT_139842	0.2853181914
+UniRef50_UPI000441849F: hypothetical protein PUNSTDRAFT_139842|unclassified	0.2853181914
+UniRef50_UPI0003B32D5A: flavin reductase	0.2853074212
+UniRef50_UPI0003B32D5A: flavin reductase|unclassified	0.2853074212
+UniRef50_A9KIA0: Adenine phosphoribosyltransferase	0.2852982841
+UniRef50_A9KIA0: Adenine phosphoribosyltransferase|unclassified	0.2852982841
+UniRef50_E1M0K3: N-acetyl-glucosamine matabolism	0.2852430756
+UniRef50_E1M0K3: N-acetyl-glucosamine matabolism|unclassified	0.2852430756
+UniRef50_UPI0003B5D053: transporter	0.2852348728
+UniRef50_UPI0003B5D053: transporter|unclassified	0.2852348728
+UniRef50_UPI00047DCF6D: dTDP-4-dehydrorhamnose 3,5-epimerase	0.2852338517
+UniRef50_UPI00047DCF6D: dTDP-4-dehydrorhamnose 3,5-epimerase|unclassified	0.2852338517
+UniRef50_UPI00040DB337: hypothetical protein	0.2852335578
+UniRef50_UPI00040DB337: hypothetical protein|unclassified	0.2852335578
+UniRef50_UPI0003688EFA: hypothetical protein	0.2851900686
+UniRef50_UPI0003688EFA: hypothetical protein|unclassified	0.2851900686
+UniRef50_G4R7W0: 1,4-lactonase	0.2851491603
+UniRef50_G4R7W0: 1,4-lactonase|unclassified	0.2851491603
+UniRef50_K6ZP91	0.2851288076
+UniRef50_K6ZP91|unclassified	0.2851288076
+UniRef50_UPI00037E2E0D: hypothetical protein	0.2850632870
+UniRef50_UPI00037E2E0D: hypothetical protein|unclassified	0.2850632870
+UniRef50_UPI00029A0F96: PfkB domain-containing protein	0.2850495866
+UniRef50_UPI00029A0F96: PfkB domain-containing protein|unclassified	0.2850495866
+UniRef50_UPI000416A546: hypothetical protein	0.2850463123
+UniRef50_UPI000416A546: hypothetical protein|unclassified	0.2850463123
+UniRef50_UPI00037E38CE: hypothetical protein	0.2850458961
+UniRef50_UPI00037E38CE: hypothetical protein|unclassified	0.2850458961
+UniRef50_A3TXB5	0.2850429529
+UniRef50_A3TXB5|unclassified	0.2850429529
+UniRef50_K9WCH6	0.2850240846
+UniRef50_K9WCH6|unclassified	0.2850240846
+UniRef50_A0A059IPV7	0.2850228129
+UniRef50_A0A059IPV7|unclassified	0.2850228129
+UniRef50_G7ZV51	0.2850085438
+UniRef50_G7ZV51|unclassified	0.2850085438
+UniRef50_UPI000382F9E7: hypothetical protein	0.2850056544
+UniRef50_UPI000382F9E7: hypothetical protein|unclassified	0.2850056544
+UniRef50_UPI0002F08F1B: hypothetical protein	0.2850011358
+UniRef50_UPI0002F08F1B: hypothetical protein|unclassified	0.2850011358
+UniRef50_UPI000363A82D: hypothetical protein	0.2849716978
+UniRef50_UPI000363A82D: hypothetical protein|unclassified	0.2849716978
+UniRef50_Q8A7Z4: Imidazole glycerol phosphate synthase subunit HisH	0.2849570781
+UniRef50_Q8A7Z4: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.2849570781
+UniRef50_X0SQ72: Marine sediment metagenome DNA, contig: S01H1_L04280 (Fragment)	0.2849524503
+UniRef50_X0SQ72: Marine sediment metagenome DNA, contig: S01H1_L04280 (Fragment)|unclassified	0.2849524503
+UniRef50_UPI0003510077	0.2849476386
+UniRef50_UPI0003510077|unclassified	0.2849476386
+UniRef50_H0DP54	0.2849343392
+UniRef50_H0DP54|unclassified	0.2849343392
+UniRef50_UPI00047751A2: peptidylprolyl isomerase	0.2849125207
+UniRef50_UPI00047751A2: peptidylprolyl isomerase|unclassified	0.2849125207
+UniRef50_U7PP10	0.2849096875
+UniRef50_U7PP10|unclassified	0.2849096875
+UniRef50_A7C2N6	0.2849068795
+UniRef50_A7C2N6|unclassified	0.2849068795
+UniRef50_UPI0002000915: NRPS/siderophore biosynthesis protein	0.2849002849
+UniRef50_UPI0002000915: NRPS/siderophore biosynthesis protein|unclassified	0.2849002849
+UniRef50_W9GZA2	0.2848602592
+UniRef50_W9GZA2|unclassified	0.2848602592
+UniRef50_H8FWZ2	0.2848569544
+UniRef50_H8FWZ2|unclassified	0.2848569544
+UniRef50_UPI000368F5AD: hypothetical protein	0.2848518849
+UniRef50_UPI000368F5AD: hypothetical protein|unclassified	0.2848518849
+UniRef50_S7WZ12	0.2848479829
+UniRef50_S7WZ12|unclassified	0.2848479829
+UniRef50_T9TBB8: Protein rfbJ	0.2848305001
+UniRef50_T9TBB8: Protein rfbJ|unclassified	0.2848305001
+UniRef50_UPI0003713CA2: hypothetical protein	0.2848003803
+UniRef50_UPI0003713CA2: hypothetical protein|unclassified	0.2848003803
+UniRef50_X0ZU83: Marine sediment metagenome DNA, contig: S01H4_L03416 (Fragment)	0.2847874644
+UniRef50_X0ZU83: Marine sediment metagenome DNA, contig: S01H4_L03416 (Fragment)|unclassified	0.2847874644
+UniRef50_R3P4E8	0.2847654877
+UniRef50_R3P4E8|unclassified	0.2847654877
+UniRef50_G5NGN1	0.2847494082
+UniRef50_G5NGN1|unclassified	0.2847494082
+UniRef50_A4INR2: Protein ArsC	0.2847142671
+UniRef50_A4INR2: Protein ArsC|unclassified	0.2847142671
+UniRef50_UPI00036022B7: hypothetical protein, partial	0.2846948880
+UniRef50_UPI00036022B7: hypothetical protein, partial|unclassified	0.2846948880
+UniRef50_UPI0003A6F007: MFS transporter	0.2846751417
+UniRef50_UPI0003A6F007: MFS transporter|unclassified	0.2846751417
+UniRef50_W1ESU4	0.2846724921
+UniRef50_W1ESU4|unclassified	0.2846724921
+UniRef50_UPI0003AE8A89: PREDICTED: trinucleotide repeat-containing gene 18 protein-like	0.2846588582
+UniRef50_UPI0003AE8A89: PREDICTED: trinucleotide repeat-containing gene 18 protein-like|unclassified	0.2846588582
+UniRef50_D8GYZ1	0.2845947105
+UniRef50_D8GYZ1|unclassified	0.2845947105
+UniRef50_F4DVM2	0.2845783171
+UniRef50_F4DVM2|unclassified	0.2845783171
+UniRef50_Q7UIA6: 3-isopropylmalate dehydratase small subunit	0.2845781470
+UniRef50_Q7UIA6: 3-isopropylmalate dehydratase small subunit|unclassified	0.2845781470
+UniRef50_W4VLE0	0.2845625359
+UniRef50_W4VLE0|unclassified	0.2845625359
+UniRef50_UPI0002D8AF13: hypothetical protein	0.2844938216
+UniRef50_UPI0002D8AF13: hypothetical protein|unclassified	0.2844938216
+UniRef50_A1SKT2	0.2844785383
+UniRef50_A1SKT2|unclassified	0.2844785383
+UniRef50_G5P4P7: AmpG permease	0.2844692603
+UniRef50_G5P4P7: AmpG permease|unclassified	0.2844692603
+UniRef50_W1VVZ5	0.2844070913
+UniRef50_W1VVZ5|unclassified	0.2844070913
+UniRef50_UPI0002378CB3: X-Pro dipeptidase	0.2843876353
+UniRef50_UPI0002378CB3: X-Pro dipeptidase|unclassified	0.2843876353
+UniRef50_UPI00047D2C54: DNA-3-methyladenine glycosylase	0.2843843535
+UniRef50_UPI00047D2C54: DNA-3-methyladenine glycosylase|unclassified	0.2843843535
+UniRef50_A8ZXR7: Phosphopantetheine adenylyltransferase	0.2843828322
+UniRef50_A8ZXR7: Phosphopantetheine adenylyltransferase|unclassified	0.2843828322
+UniRef50_T0SU50: ABC-2 family transporter protein	0.2843784673
+UniRef50_T0SU50: ABC-2 family transporter protein|unclassified	0.2843784673
+UniRef50_UPI0001744A09: Type III secretory pathway, component EscU	0.2843627720
+UniRef50_UPI0001744A09: Type III secretory pathway, component EscU|unclassified	0.2843627720
+UniRef50_E4N9L3	0.2843431920
+UniRef50_E4N9L3|unclassified	0.2843431920
+UniRef50_U3TQC5	0.2843426288
+UniRef50_U3TQC5|unclassified	0.2843426288
+UniRef50_UPI0002D5E75E: hypothetical protein	0.2843152190
+UniRef50_UPI0002D5E75E: hypothetical protein|unclassified	0.2843152190
+UniRef50_V9UQ05	0.2842454561
+UniRef50_V9UQ05|unclassified	0.2842454561
+UniRef50_UPI0004240F14: sodium:proton antiporter	0.2842374096
+UniRef50_UPI0004240F14: sodium:proton antiporter|unclassified	0.2842374096
+UniRef50_I3CJ15: ATPase involved in chromosome partitioning	0.2842371606
+UniRef50_I3CJ15: ATPase involved in chromosome partitioning|unclassified	0.2842371606
+UniRef50_X2NCX1	0.2842331030
+UniRef50_X2NCX1|unclassified	0.2842331030
+UniRef50_X2N8F2: Transcriptional regulator	0.2842307600
+UniRef50_X2N8F2: Transcriptional regulator|unclassified	0.2842307600
+UniRef50_UPI0004076A57: polyhydroxyalkanoate synthesis repressor	0.2842148399
+UniRef50_UPI0004076A57: polyhydroxyalkanoate synthesis repressor|unclassified	0.2842148399
+UniRef50_A0A017T8W3	0.2841716397
+UniRef50_A0A017T8W3|unclassified	0.2841716397
+UniRef50_Q89XZ9: Bll0156 protein	0.2841663011
+UniRef50_Q89XZ9: Bll0156 protein|unclassified	0.2841663011
+UniRef50_B2S8S9: Shikimate kinase	0.2841644354
+UniRef50_B2S8S9: Shikimate kinase|unclassified	0.2841644354
+UniRef50_Q2BZU0	0.2841636875
+UniRef50_Q2BZU0|unclassified	0.2841636875
+UniRef50_W1V8A3: Peptidase T (Fragment)	0.2841379077
+UniRef50_W1V8A3: Peptidase T (Fragment)|unclassified	0.2841379077
+UniRef50_V4AWI3	0.2841175313
+UniRef50_V4AWI3|unclassified	0.2841175313
+UniRef50_I1B1E7: Invasion associated locus B family protein	0.2841129454
+UniRef50_I1B1E7: Invasion associated locus B family protein|unclassified	0.2841129454
+UniRef50_UPI0003D0C408: PREDICTED: 39S ribosomal protein L36, mitochondrial	0.2841062739
+UniRef50_UPI0003D0C408: PREDICTED: 39S ribosomal protein L36, mitochondrial|unclassified	0.2841062739
+UniRef50_J9VPM9	0.2840992753
+UniRef50_J9VPM9|unclassified	0.2840992753
+UniRef50_X0VLJ4: Marine sediment metagenome DNA, contig: S01H1_S10413 (Fragment)	0.2840557495
+UniRef50_X0VLJ4: Marine sediment metagenome DNA, contig: S01H1_S10413 (Fragment)|unclassified	0.2840557495
+UniRef50_A0A059FC05: MaoC domain-containing protein	0.2840518255
+UniRef50_A0A059FC05: MaoC domain-containing protein|unclassified	0.2840518255
+UniRef50_A3CTR9: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.2840032537
+UniRef50_A3CTR9: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.2840032537
+UniRef50_G0AJA8: Sterol-binding domain protein	0.2839229668
+UniRef50_G0AJA8: Sterol-binding domain protein|unclassified	0.2839229668
+UniRef50_W2UWV7	0.2839094130
+UniRef50_W2UWV7|unclassified	0.2839094130
+UniRef50_X1D0K9: Marine sediment metagenome DNA, contig: S01H4_S11454	0.2839001276
+UniRef50_X1D0K9: Marine sediment metagenome DNA, contig: S01H4_S11454|unclassified	0.2839001276
+UniRef50_F5ZGQ1	0.2838825601
+UniRef50_F5ZGQ1|unclassified	0.2838825601
+UniRef50_UPI00037128EC: hypothetical protein	0.2838701189
+UniRef50_UPI00037128EC: hypothetical protein|unclassified	0.2838701189
+UniRef50_UPI00036A88A6: hypothetical protein	0.2838683434
+UniRef50_UPI00036A88A6: hypothetical protein|unclassified	0.2838683434
+UniRef50_J8KY00	0.2838679208
+UniRef50_J8KY00|unclassified	0.2838679208
+UniRef50_UPI000368DF15: hypothetical protein	0.2838234039
+UniRef50_UPI000368DF15: hypothetical protein|unclassified	0.2838234039
+UniRef50_UPI0004069A6C: hypothetical protein	0.2838102315
+UniRef50_UPI0004069A6C: hypothetical protein|unclassified	0.2838102315
+UniRef50_K6ZWK6	0.2838047871
+UniRef50_K6ZWK6|unclassified	0.2838047871
+UniRef50_UPI00046DDDBB: hypothetical protein	0.2837937074
+UniRef50_UPI00046DDDBB: hypothetical protein|unclassified	0.2837937074
+UniRef50_A5D373: Shikimate kinase	0.2837796624
+UniRef50_A5D373: Shikimate kinase|unclassified	0.2837796624
+UniRef50_X0YKE5: Marine sediment metagenome DNA, contig: S01H4_L02932 (Fragment)	0.2837791512
+UniRef50_X0YKE5: Marine sediment metagenome DNA, contig: S01H4_L02932 (Fragment)|unclassified	0.2837791512
+UniRef50_X1H5M2: Marine sediment metagenome DNA, contig: S03H2_L00670 (Fragment)	0.2837139250
+UniRef50_X1H5M2: Marine sediment metagenome DNA, contig: S03H2_L00670 (Fragment)|unclassified	0.2837139250
+UniRef50_UPI00036E614B: hypothetical protein	0.2836828404
+UniRef50_UPI00036E614B: hypothetical protein|unclassified	0.2836828404
+UniRef50_J3H3P3: Lipocalin (Fragment)	0.2836593137
+UniRef50_J3H3P3: Lipocalin (Fragment)|unclassified	0.2836593137
+UniRef50_UPI000369F333: hypothetical protein	0.2836306292
+UniRef50_UPI000369F333: hypothetical protein|unclassified	0.2836306292
+UniRef50_A6D8T5: Predicted Rossmann fold nucleotide-binding protein (Fragment)	0.2836068252
+UniRef50_A6D8T5: Predicted Rossmann fold nucleotide-binding protein (Fragment)|unclassified	0.2836068252
+UniRef50_A3UCX1	0.2835921749
+UniRef50_A3UCX1|unclassified	0.2835921749
+UniRef50_X1H097: Marine sediment metagenome DNA, contig: S03H2_L00535 (Fragment)	0.2835762243
+UniRef50_X1H097: Marine sediment metagenome DNA, contig: S03H2_L00535 (Fragment)|unclassified	0.2835762243
+UniRef50_G2RNW1: Membrane protein, putative	0.2835754505
+UniRef50_G2RNW1: Membrane protein, putative|unclassified	0.2835754505
+UniRef50_Q57NQ3	0.2835654558
+UniRef50_Q57NQ3|unclassified	0.2835654558
+UniRef50_P69000: Methionine aminopeptidase	0.2835299569
+UniRef50_P69000: Methionine aminopeptidase|unclassified	0.2835299569
+UniRef50_F0RPA5: Chlorite dismutase	0.2835246863
+UniRef50_F0RPA5: Chlorite dismutase|unclassified	0.2835246863
+UniRef50_Q6MJR9: Ribonuclease PH	0.2834928997
+UniRef50_Q6MJR9: Ribonuclease PH|unclassified	0.2834928997
+UniRef50_H1BY67: FeS cluster assembly protein sufB	0.2834832985
+UniRef50_H1BY67: FeS cluster assembly protein sufB|unclassified	0.2834832985
+UniRef50_W8XC49	0.2834764329
+UniRef50_W8XC49|unclassified	0.2834764329
+UniRef50_UPI0003B41656: hypothetical protein, partial	0.2834634860
+UniRef50_UPI0003B41656: hypothetical protein, partial|unclassified	0.2834634860
+UniRef50_Q8YFU1: 5-hydroxyisourate hydrolase	0.2834526722
+UniRef50_Q8YFU1: 5-hydroxyisourate hydrolase|unclassified	0.2834526722
+UniRef50_UPI0001585A8A: hypothetical protein BC1G_12575	0.2834505669
+UniRef50_UPI0001585A8A: hypothetical protein BC1G_12575|unclassified	0.2834505669
+UniRef50_K9G217	0.2834467120
+UniRef50_K9G217|unclassified	0.2834467120
+UniRef50_K5YUY4: Polyhydroxyalkanoate synthesis repressor PhaR	0.2834379818
+UniRef50_K5YUY4: Polyhydroxyalkanoate synthesis repressor PhaR|unclassified	0.2834379818
+UniRef50_K0RYE3	0.2834340580
+UniRef50_K0RYE3|unclassified	0.2834340580
+UniRef50_UPI00035E2C47: hypothetical protein	0.2834313888
+UniRef50_UPI00035E2C47: hypothetical protein|unclassified	0.2834313888
+UniRef50_UPI00046F5711: alpha-glucosidase, partial	0.2833999643
+UniRef50_UPI00046F5711: alpha-glucosidase, partial|unclassified	0.2833999643
+UniRef50_E3FHH9	0.2833869475
+UniRef50_E3FHH9|unclassified	0.2833869475
+UniRef50_UPI00039D1132: hydrolase	0.2833796505
+UniRef50_UPI00039D1132: hydrolase|unclassified	0.2833796505
+UniRef50_S9S8F9	0.2833780529
+UniRef50_S9S8F9|unclassified	0.2833780529
+UniRef50_B9TE86	0.2833745744
+UniRef50_B9TE86|unclassified	0.2833745744
+UniRef50_T1AP37: Type VI secretion-associated protein, ImpA family (Fragment)	0.2833402864
+UniRef50_T1AP37: Type VI secretion-associated protein, ImpA family (Fragment)|unclassified	0.2833402864
+UniRef50_UPI00038F68E2: hypothetical protein	0.2833081141
+UniRef50_UPI00038F68E2: hypothetical protein|unclassified	0.2833081141
+UniRef50_H2K480	0.2833080251
+UniRef50_H2K480|unclassified	0.2833080251
+UniRef50_UPI00037565A0: hypothetical protein	0.2833046404
+UniRef50_UPI00037565A0: hypothetical protein|unclassified	0.2833046404
+UniRef50_H1QF23: Ribonuclease PH	0.2833002860
+UniRef50_H1QF23: Ribonuclease PH|unclassified	0.2833002860
+UniRef50_R8G6J1	0.2832979771
+UniRef50_R8G6J1|unclassified	0.2832979771
+UniRef50_UPI0003B3D337: acetyl-CoA carboxylase subunit alpha, partial	0.2832862277
+UniRef50_UPI0003B3D337: acetyl-CoA carboxylase subunit alpha, partial|unclassified	0.2832862277
+UniRef50_V7EI41	0.2832836045
+UniRef50_V7EI41|unclassified	0.2832836045
+UniRef50_Q6DB87: Ribose import ATP-binding protein RbsA	0.2832643053
+UniRef50_Q6DB87: Ribose import ATP-binding protein RbsA|unclassified	0.2832643053
+UniRef50_A3JR12: Alpha-glucosides ABC transporter, substrate-binding protein	0.2832497381
+UniRef50_A3JR12: Alpha-glucosides ABC transporter, substrate-binding protein|unclassified	0.2832497381
+UniRef50_D2JGC9	0.2832319253
+UniRef50_D2JGC9|unclassified	0.2832319253
+UniRef50_UPI000474C8A5: hypothetical protein	0.2832314653
+UniRef50_UPI000474C8A5: hypothetical protein|unclassified	0.2832314653
+UniRef50_W0YQG2: NADH-dependent enoyl-ACP reductase	0.2832185471
+UniRef50_W0YQG2: NADH-dependent enoyl-ACP reductase|unclassified	0.2832185471
+UniRef50_UPI00037C203A: hypothetical protein	0.2832145147
+UniRef50_UPI00037C203A: hypothetical protein|unclassified	0.2832145147
+UniRef50_UPI0004704F72: hypothetical protein	0.2832102309
+UniRef50_UPI0004704F72: hypothetical protein|unclassified	0.2832102309
+UniRef50_K0SAS7	0.2832084074
+UniRef50_K0SAS7|unclassified	0.2832084074
+UniRef50_W5A348	0.2831909078
+UniRef50_W5A348|unclassified	0.2831909078
+UniRef50_UPI0003B5AA2E: urease subunit beta	0.2831788980
+UniRef50_UPI0003B5AA2E: urease subunit beta|unclassified	0.2831788980
+UniRef50_UPI00047CB6D2: hypothetical protein, partial	0.2831633087
+UniRef50_UPI00047CB6D2: hypothetical protein, partial|unclassified	0.2831633087
+UniRef50_UPI00036C6D8F: hypothetical protein	0.2831498461
+UniRef50_UPI00036C6D8F: hypothetical protein|unclassified	0.2831498461
+UniRef50_D7A155: Tripartite ATP-independent periplasmic transporter DctQ component	0.2831431076
+UniRef50_D7A155: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.2831431076
+UniRef50_G9NBA4	0.2831293796
+UniRef50_G9NBA4|unclassified	0.2831293796
+UniRef50_UPI0003763A90: hypothetical protein	0.2831283947
+UniRef50_UPI0003763A90: hypothetical protein|unclassified	0.2831283947
+UniRef50_A3QC83: Protein-L-isoaspartate O-methyltransferase	0.2831060884
+UniRef50_A3QC83: Protein-L-isoaspartate O-methyltransferase|unclassified	0.2831060884
+UniRef50_A5URZ0: Acyl carrier protein	0.2831046482
+UniRef50_A5URZ0: Acyl carrier protein|unclassified	0.2831046482
+UniRef50_F6BZ67	0.2830965373
+UniRef50_F6BZ67|unclassified	0.2830965373
+UniRef50_W6W3S8	0.2830889075
+UniRef50_W6W3S8|unclassified	0.2830889075
+UniRef50_V2KI01: Cytoplasmic protein	0.2830875931
+UniRef50_V2KI01: Cytoplasmic protein|unclassified	0.2830875931
+UniRef50_I9V7J9: Outer membrane protein HopL	0.2830455703
+UniRef50_I9V7J9: Outer membrane protein HopL|g__Helicobacter.s__Helicobacter_pylori	0.2830455703
+UniRef50_D4TU26	0.2830267615
+UniRef50_D4TU26|unclassified	0.2830267615
+UniRef50_U6M3I8	0.2830223489
+UniRef50_U6M3I8|unclassified	0.2830223489
+UniRef50_UPI00046B8737	0.2830039484
+UniRef50_UPI00046B8737|unclassified	0.2830039484
+UniRef50_G4LMD3	0.2830019631
+UniRef50_G4LMD3|unclassified	0.2830019631
+UniRef50_Q2W3H2: D-amino acid dehydrogenase small subunit	0.2830011139
+UniRef50_Q2W3H2: D-amino acid dehydrogenase small subunit|unclassified	0.2830011139
+UniRef50_C4XNW3: Chemotaxis protein MotA	0.2829975596
+UniRef50_C4XNW3: Chemotaxis protein MotA|unclassified	0.2829975596
+UniRef50_UPI00036BBCF4: MULTISPECIES: hypothetical protein	0.2829874778
+UniRef50_UPI00036BBCF4: MULTISPECIES: hypothetical protein|unclassified	0.2829874778
+UniRef50_UPI0004686580: hypothetical protein	0.2829654782
+UniRef50_UPI0004686580: hypothetical protein|unclassified	0.2829654782
+UniRef50_Q4L4G0: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.2829240421
+UniRef50_Q4L4G0: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.2829240421
+UniRef50_B5Y7R0: Glutamate--tRNA ligase	0.2829136596
+UniRef50_B5Y7R0: Glutamate--tRNA ligase|unclassified	0.2829136596
+UniRef50_UPI00047775E1: osmotically inducible protein C	0.2828738455
+UniRef50_UPI00047775E1: osmotically inducible protein C|unclassified	0.2828738455
+UniRef50_UPI000469FB83: hypothetical protein	0.2828676708
+UniRef50_UPI000469FB83: hypothetical protein|unclassified	0.2828676708
+UniRef50_E1VCJ9: UPF0225 protein HELO_2470	0.2828667412
+UniRef50_E1VCJ9: UPF0225 protein HELO_2470|unclassified	0.2828667412
+UniRef50_A8AII7	0.2828662361
+UniRef50_A8AII7|unclassified	0.2828662361
+UniRef50_UPI000364EDCC: hypothetical protein	0.2828524624
+UniRef50_UPI000364EDCC: hypothetical protein|unclassified	0.2828524624
+UniRef50_UPI00046F6709: hypothetical protein, partial	0.2828341964
+UniRef50_UPI00046F6709: hypothetical protein, partial|unclassified	0.2828341964
+UniRef50_Q07LR9: NLPA lipoprotein	0.2828305671
+UniRef50_Q07LR9: NLPA lipoprotein|unclassified	0.2828305671
+UniRef50_Q6ABR7: Cobalamin biosynthesis protein CobN	0.2828054299
+UniRef50_Q6ABR7: Cobalamin biosynthesis protein CobN|g__Propionibacterium.s__Propionibacterium_acnes	0.2828054299
+UniRef50_A6FAP1	0.2827977394
+UniRef50_A6FAP1|unclassified	0.2827977394
+UniRef50_J0MJ18	0.2827973967
+UniRef50_J0MJ18|unclassified	0.2827973967
+UniRef50_H9K6K8	0.2827926054
+UniRef50_H9K6K8|unclassified	0.2827926054
+UniRef50_UPI00036C9874: hypothetical protein	0.2827901369
+UniRef50_UPI00036C9874: hypothetical protein|unclassified	0.2827901369
+UniRef50_A9C190: Potassium-transporting ATPase A chain	0.2827396999
+UniRef50_A9C190: Potassium-transporting ATPase A chain|unclassified	0.2827396999
+UniRef50_UPI0003EBF830: PREDICTED: zinc finger protein 831	0.2827254736
+UniRef50_UPI0003EBF830: PREDICTED: zinc finger protein 831|unclassified	0.2827254736
+UniRef50_UPI0002883F24: peptide chain release factor 3, partial	0.2826718818
+UniRef50_UPI0002883F24: peptide chain release factor 3, partial|unclassified	0.2826718818
+UniRef50_F3ARP1	0.2826508596
+UniRef50_F3ARP1|unclassified	0.2826508596
+UniRef50_UPI00021952B3: ABC-type multidrug transport system, ATPase component	0.2826491228
+UniRef50_UPI00021952B3: ABC-type multidrug transport system, ATPase component|unclassified	0.2826491228
+UniRef50_UPI0002E0ABDD: hypothetical protein	0.2826414073
+UniRef50_UPI0002E0ABDD: hypothetical protein|unclassified	0.2826414073
+UniRef50_UPI000476A904: hypothetical protein	0.2826168114
+UniRef50_UPI000476A904: hypothetical protein|unclassified	0.2826168114
+UniRef50_UPI0004635F14: glutathione S-transferase	0.2825778875
+UniRef50_UPI0004635F14: glutathione S-transferase|unclassified	0.2825778875
+UniRef50_UPI0003461F29: hypothetical protein	0.2825656965
+UniRef50_UPI0003461F29: hypothetical protein|unclassified	0.2825656965
+UniRef50_R9RC45	0.2824883677
+UniRef50_R9RC45|unclassified	0.2824883677
+UniRef50_UPI00038EBCB6: PREDICTED: adenylate kinase isoenzyme 5-like isoform X1	0.2824844645
+UniRef50_UPI00038EBCB6: PREDICTED: adenylate kinase isoenzyme 5-like isoform X1|unclassified	0.2824844645
+UniRef50_A9V6T8: Predicted protein	0.2824697928
+UniRef50_A9V6T8: Predicted protein|unclassified	0.2824697928
+UniRef50_UPI00047C795E: hypothetical protein	0.2824627833
+UniRef50_UPI00047C795E: hypothetical protein|unclassified	0.2824627833
+UniRef50_R4Z0C6	0.2824602021
+UniRef50_R4Z0C6|unclassified	0.2824602021
+UniRef50_Q5ZI49: Ribose-phosphate pyrophosphokinase 2	0.2824163810
+UniRef50_Q5ZI49: Ribose-phosphate pyrophosphokinase 2|unclassified	0.2824163810
+UniRef50_UPI0002257056: PREDICTED: collagen alpha-1(II) chain-like	0.2823957004
+UniRef50_UPI0002257056: PREDICTED: collagen alpha-1(II) chain-like|unclassified	0.2823957004
+UniRef50_UPI00040E317A: hypoxanthine phosphoribosyltransferase	0.2823911996
+UniRef50_UPI00040E317A: hypoxanthine phosphoribosyltransferase|unclassified	0.2823911996
+UniRef50_UPI00026277B1: transketolase	0.2823857455
+UniRef50_UPI00026277B1: transketolase|unclassified	0.2823857455
+UniRef50_UPI000365AE7C: hypothetical protein	0.2823683783
+UniRef50_UPI000365AE7C: hypothetical protein|unclassified	0.2823683783
+UniRef50_F2J6H5	0.2823682636
+UniRef50_F2J6H5|unclassified	0.2823682636
+UniRef50_D0ZNY9	0.2823607325
+UniRef50_D0ZNY9|unclassified	0.2823607325
+UniRef50_P74038: Ribosomal RNA small subunit methyltransferase I	0.2823575734
+UniRef50_P74038: Ribosomal RNA small subunit methyltransferase I|unclassified	0.2823575734
+UniRef50_UPI0004779FFC: SecC motif-containing protein	0.2823569141
+UniRef50_UPI0004779FFC: SecC motif-containing protein|unclassified	0.2823569141
+UniRef50_X1D384: Marine sediment metagenome DNA, contig: S01H4_S10752 (Fragment)	0.2823176767
+UniRef50_X1D384: Marine sediment metagenome DNA, contig: S01H4_S10752 (Fragment)|unclassified	0.2823176767
+UniRef50_V0PCW1	0.2822880930
+UniRef50_V0PCW1|unclassified	0.2822880930
+UniRef50_A9CGA4	0.2822545950
+UniRef50_A9CGA4|unclassified	0.2822545950
+UniRef50_S2XR97	0.2822110279
+UniRef50_S2XR97|unclassified	0.2822110279
+UniRef50_Q0BQX7: Ribonuclease H	0.2822026581
+UniRef50_Q0BQX7: Ribonuclease H|unclassified	0.2822026581
+UniRef50_D4AUL4	0.2821982914
+UniRef50_D4AUL4|unclassified	0.2821982914
+UniRef50_UPI00031F8523: V-type sodium ATP synthase subunit J	0.2821524567
+UniRef50_UPI00031F8523: V-type sodium ATP synthase subunit J|unclassified	0.2821524567
+UniRef50_A0A059LD30	0.2821431168
+UniRef50_A0A059LD30|unclassified	0.2821431168
+UniRef50_UPI0003B3E508: ATP-dependent DNA helicase RecQ	0.2821374153
+UniRef50_UPI0003B3E508: ATP-dependent DNA helicase RecQ|unclassified	0.2821374153
+UniRef50_UPI00047E3099: antitermination protein NusG	0.2821167592
+UniRef50_UPI00047E3099: antitermination protein NusG|unclassified	0.2821167592
+UniRef50_UPI0002F0DA53: hypothetical protein	0.2821157405
+UniRef50_UPI0002F0DA53: hypothetical protein|unclassified	0.2821157405
+UniRef50_Q7SI97: L-lactate dehydrogenase	0.2821004213
+UniRef50_Q7SI97: L-lactate dehydrogenase|unclassified	0.2821004213
+UniRef50_Q08Q97	0.2820891916
+UniRef50_Q08Q97|unclassified	0.2820891916
+UniRef50_UPI00046AC673: hypothetical protein	0.2820864344
+UniRef50_UPI00046AC673: hypothetical protein|unclassified	0.2820864344
+UniRef50_UPI0003B3E18A: branched-chain amino acid transporter permease subunit LivH, partial	0.2820822872
+UniRef50_UPI0003B3E18A: branched-chain amino acid transporter permease subunit LivH, partial|unclassified	0.2820822872
+UniRef50_F0YF70	0.2820760767
+UniRef50_F0YF70|unclassified	0.2820760767
+UniRef50_UPI0004708F60: membrane protein	0.2820704946
+UniRef50_UPI0004708F60: membrane protein|unclassified	0.2820704946
+UniRef50_D5AH55	0.2820660911
+UniRef50_D5AH55|unclassified	0.2820660911
+UniRef50_E2SJA5	0.2820461837
+UniRef50_E2SJA5|unclassified	0.2820461837
+UniRef50_UPI0003643D4B: hypothetical protein	0.2820298396
+UniRef50_UPI0003643D4B: hypothetical protein|unclassified	0.2820298396
+UniRef50_UPI0003F8E50B: hypothetical protein	0.2820272414
+UniRef50_UPI0003F8E50B: hypothetical protein|unclassified	0.2820272414
+UniRef50_A9A5Y7: Inosine-5'-monophosphate dehydrogenase	0.2820145637
+UniRef50_A9A5Y7: Inosine-5'-monophosphate dehydrogenase|unclassified	0.2820145637
+UniRef50_UPI000373927B: hypothetical protein	0.2820082954
+UniRef50_UPI000373927B: hypothetical protein|unclassified	0.2820082954
+UniRef50_D5HC80	0.2818908125
+UniRef50_D5HC80|unclassified	0.2818908125
+UniRef50_Q2IPT7: Tyrosine--tRNA ligase	0.2818896338
+UniRef50_Q2IPT7: Tyrosine--tRNA ligase|unclassified	0.2818896338
+UniRef50_UPI00030A1D25: hypothetical protein	0.2818722281
+UniRef50_UPI00030A1D25: hypothetical protein|unclassified	0.2818722281
+UniRef50_C1MK19: Predicted protein	0.2818527283
+UniRef50_C1MK19: Predicted protein|unclassified	0.2818527283
+UniRef50_UPI000351149F: PREDICTED: sulfated surface glycoprotein 185-like	0.2818430161
+UniRef50_UPI000351149F: PREDICTED: sulfated surface glycoprotein 185-like|unclassified	0.2818430161
+UniRef50_J8ST30	0.2818338547
+UniRef50_J8ST30|unclassified	0.2818338547
+UniRef50_B9EB64: Bifunctional protein PyrR	0.2818110454
+UniRef50_B9EB64: Bifunctional protein PyrR|unclassified	0.2818110454
+UniRef50_W0IDK3: Transposase	0.2817898467
+UniRef50_W0IDK3: Transposase|unclassified	0.2817898467
+UniRef50_UPI00044173AC: hypothetical protein PUNSTDRAFT_134457	0.2817689867
+UniRef50_UPI00044173AC: hypothetical protein PUNSTDRAFT_134457|unclassified	0.2817689867
+UniRef50_UPI0003639180: hypothetical protein	0.2817211666
+UniRef50_UPI0003639180: hypothetical protein|unclassified	0.2817211666
+UniRef50_UPI0003653F55: hypothetical protein, partial	0.2817181541
+UniRef50_UPI0003653F55: hypothetical protein, partial|unclassified	0.2817181541
+UniRef50_X1I5X5: Marine sediment metagenome DNA, contig: S03H2_S03022	0.2816630099
+UniRef50_X1I5X5: Marine sediment metagenome DNA, contig: S03H2_S03022|unclassified	0.2816630099
+UniRef50_B8J215: Imidazole glycerol phosphate synthase subunit HisH	0.2816582619
+UniRef50_B8J215: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.2816582619
+UniRef50_F8JV11: Esterase/lipase/thioesterase	0.2816477224
+UniRef50_F8JV11: Esterase/lipase/thioesterase|unclassified	0.2816477224
+UniRef50_B7JI95	0.2816104888
+UniRef50_B7JI95|unclassified	0.2816104888
+UniRef50_I7EV17	0.2815894390
+UniRef50_I7EV17|unclassified	0.2815894390
+UniRef50_UPI00046F3756: 50S ribosomal protein L3	0.2815866193
+UniRef50_UPI00046F3756: 50S ribosomal protein L3|unclassified	0.2815866193
+UniRef50_UPI0002234D67: PREDICTED: 5-hydroxytryptamine receptor 3C-like	0.2815824663
+UniRef50_UPI0002234D67: PREDICTED: 5-hydroxytryptamine receptor 3C-like|unclassified	0.2815824663
+UniRef50_B5SL92: Abc transporter protein (Partial sequence n terminus)	0.2815800741
+UniRef50_B5SL92: Abc transporter protein (Partial sequence n terminus)|unclassified	0.2815800741
+UniRef50_UPI000365D184: hypothetical protein	0.2815793345
+UniRef50_UPI000365D184: hypothetical protein|unclassified	0.2815793345
+UniRef50_UPI000225F135: HNH endonuclease	0.2815731577
+UniRef50_UPI000225F135: HNH endonuclease|unclassified	0.2815731577
+UniRef50_J8VIL9	0.2815445284
+UniRef50_J8VIL9|unclassified	0.2815445284
+UniRef50_D8UGN4	0.2815315315
+UniRef50_D8UGN4|unclassified	0.2815315315
+UniRef50_F2QW98: Tricalbin-2	0.2815315315
+UniRef50_F2QW98: Tricalbin-2|unclassified	0.2815315315
+UniRef50_U3A6Y1	0.2815291007
+UniRef50_U3A6Y1|unclassified	0.2815291007
+UniRef50_Q03ZL6: Energy-coupling factor transporter ATP-binding protein EcfA1	0.2814898130
+UniRef50_Q03ZL6: Energy-coupling factor transporter ATP-binding protein EcfA1|unclassified	0.2814898130
+UniRef50_A0A011P431: 40-residue YVTN family beta-propeller repeat protein	0.2814774439
+UniRef50_A0A011P431: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.2814774439
+UniRef50_K5DVG6	0.2814595837
+UniRef50_K5DVG6|unclassified	0.2814595837
+UniRef50_UPI00037ACDF7: resolvase	0.2814591459
+UniRef50_UPI00037ACDF7: resolvase|unclassified	0.2814591459
+UniRef50_A6LC32: Homoserine O-succinyltransferase	0.2814415354
+UniRef50_A6LC32: Homoserine O-succinyltransferase|unclassified	0.2814415354
+UniRef50_A8TPR5: Flagellar FlaF family protein	0.2814102795
+UniRef50_A8TPR5: Flagellar FlaF family protein|unclassified	0.2814102795
+UniRef50_UPI00031B0CFA: hypothetical protein	0.2813974809
+UniRef50_UPI00031B0CFA: hypothetical protein|unclassified	0.2813974809
+UniRef50_R4X168: Protein tyrosine phosphatase	0.2813200880
+UniRef50_R4X168: Protein tyrosine phosphatase|unclassified	0.2813200880
+UniRef50_UPI00047EC1C4: PhoR family transcriptional regulator	0.2813141988
+UniRef50_UPI00047EC1C4: PhoR family transcriptional regulator|unclassified	0.2813141988
+UniRef50_W5X7C7: Dihydrolipoyl dehydrogenase	0.2813140683
+UniRef50_W5X7C7: Dihydrolipoyl dehydrogenase|unclassified	0.2813140683
+UniRef50_X6L280	0.2813100380
+UniRef50_X6L280|unclassified	0.2813100380
+UniRef50_UPI0003646FA9: hypothetical protein	0.2813047374
+UniRef50_UPI0003646FA9: hypothetical protein|unclassified	0.2813047374
+UniRef50_W4UB50: Adhesion protein	0.2812872283
+UniRef50_W4UB50: Adhesion protein|unclassified	0.2812872283
+UniRef50_M3JN73: Sulfate transporter	0.2812870679
+UniRef50_M3JN73: Sulfate transporter|unclassified	0.2812870679
+UniRef50_X0YII2: Marine sediment metagenome DNA, contig: S01H1_S43660 (Fragment)	0.2812867808
+UniRef50_X0YII2: Marine sediment metagenome DNA, contig: S01H1_S43660 (Fragment)|unclassified	0.2812867808
+UniRef50_I0K4C6: Transcriptional regulator, BadM/Rrf2 family	0.2812814316
+UniRef50_I0K4C6: Transcriptional regulator, BadM/Rrf2 family|unclassified	0.2812814316
+UniRef50_W8Q1T2	0.2812726708
+UniRef50_W8Q1T2|unclassified	0.2812726708
+UniRef50_W7V9F2: Fluoroacetate dehalogenase	0.2811814848
+UniRef50_W7V9F2: Fluoroacetate dehalogenase|unclassified	0.2811814848
+UniRef50_M3H3A2: CRISPR-associated helicase Cas3	0.2811661768
+UniRef50_M3H3A2: CRISPR-associated helicase Cas3|unclassified	0.2811661768
+UniRef50_G7G0D6	0.2811577553
+UniRef50_G7G0D6|unclassified	0.2811577553
+UniRef50_UPI000464582F: hypothetical protein, partial	0.2811265035
+UniRef50_UPI000464582F: hypothetical protein, partial|unclassified	0.2811265035
+UniRef50_UPI00026CB98B: resolvase domain-containing protein	0.2811183763
+UniRef50_UPI00026CB98B: resolvase domain-containing protein|unclassified	0.2811183763
+UniRef50_U6HCK7: Mitochondrial ribosomal protein l11	0.2810886413
+UniRef50_U6HCK7: Mitochondrial ribosomal protein l11|unclassified	0.2810886413
+UniRef50_UPI00041D4010: hypothetical protein	0.2810840985
+UniRef50_UPI00041D4010: hypothetical protein|unclassified	0.2810840985
+UniRef50_E4N178	0.2810789705
+UniRef50_E4N178|unclassified	0.2810789705
+UniRef50_U3U1J7	0.2810313753
+UniRef50_U3U1J7|unclassified	0.2810313753
+UniRef50_UPI000462178E: hypothetical protein TRAVEDRAFT_69476	0.2810225129
+UniRef50_UPI000462178E: hypothetical protein TRAVEDRAFT_69476|unclassified	0.2810225129
+UniRef50_Q10216	0.2810105512
+UniRef50_Q10216|unclassified	0.2810105512
+UniRef50_W4WAE5	0.2810085311
+UniRef50_W4WAE5|unclassified	0.2810085311
+UniRef50_L5MB93: Protein FAM110A	0.2810005348
+UniRef50_L5MB93: Protein FAM110A|unclassified	0.2810005348
+UniRef50_J3JQN0: Competence protein ComGF	0.2809608765
+UniRef50_J3JQN0: Competence protein ComGF|unclassified	0.2809608765
+UniRef50_B1L873: Imidazole glycerol phosphate synthase subunit HisF	0.2809435806
+UniRef50_B1L873: Imidazole glycerol phosphate synthase subunit HisF|unclassified	0.2809435806
+UniRef50_J4SHG0: PTS system N-acetylmuramic acid transporter subunits EIIBC	0.2809255235
+UniRef50_J4SHG0: PTS system N-acetylmuramic acid transporter subunits EIIBC|unclassified	0.2809255235
+UniRef50_A0B462	0.2808884772
+UniRef50_A0B462|unclassified	0.2808884772
+UniRef50_W0H0H8	0.2808790444
+UniRef50_W0H0H8|unclassified	0.2808790444
+UniRef50_A6TV86: Phage major tail protein, phi13 family	0.2808124398
+UniRef50_A6TV86: Phage major tail protein, phi13 family|unclassified	0.2808124398
+UniRef50_UPI00036DA83C: hypothetical protein	0.2808120530
+UniRef50_UPI00036DA83C: hypothetical protein|unclassified	0.2808120530
+UniRef50_UPI00047D345D: hypothetical protein	0.2808043120
+UniRef50_UPI00047D345D: hypothetical protein|unclassified	0.2808043120
+UniRef50_X1B5W7: Marine sediment metagenome DNA, contig: S01H4_S02462 (Fragment)	0.2808039297
+UniRef50_X1B5W7: Marine sediment metagenome DNA, contig: S01H4_S02462 (Fragment)|unclassified	0.2808039297
+UniRef50_T6HYQ6: Nitrite extrusion protein 2	0.2808033436
+UniRef50_T6HYQ6: Nitrite extrusion protein 2|unclassified	0.2808033436
+UniRef50_UPI000363D015: hypothetical protein, partial	0.2808024380
+UniRef50_UPI000363D015: hypothetical protein, partial|unclassified	0.2808024380
+UniRef50_UPI00047249EC: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase, partial	0.2807953595
+UniRef50_UPI00047249EC: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase, partial|unclassified	0.2807953595
+UniRef50_A4FPJ2: DNA-directed RNA polymerase subunit alpha	0.2807866996
+UniRef50_A4FPJ2: DNA-directed RNA polymerase subunit alpha|unclassified	0.2807866996
+UniRef50_V2GY54: AbrB family transcriptional regulator	0.2807455528
+UniRef50_V2GY54: AbrB family transcriptional regulator|unclassified	0.2807455528
+UniRef50_B6T974: Serine/arginine repetitive matrix protein 1	0.2807358186
+UniRef50_B6T974: Serine/arginine repetitive matrix protein 1|unclassified	0.2807358186
+UniRef50_Q5LX31: SN-glycerol-3-phosphate ABC transporter, periplasmic SN-glycerol-3-phosphate-binding protein	0.2806781007
+UniRef50_Q5LX31: SN-glycerol-3-phosphate ABC transporter, periplasmic SN-glycerol-3-phosphate-binding protein|unclassified	0.2806781007
+UniRef50_Q54K82	0.2806406401
+UniRef50_Q54K82|unclassified	0.2806406401
+UniRef50_UPI00039442E2: zinc-responsive transcriptional regulator	0.2806345095
+UniRef50_UPI00039442E2: zinc-responsive transcriptional regulator|unclassified	0.2806345095
+UniRef50_UPI0003621B4D: hypothetical protein	0.2806207679
+UniRef50_UPI0003621B4D: hypothetical protein|unclassified	0.2806207679
+UniRef50_E6PWM1: Glucose inhibited division protein A	0.2806039999
+UniRef50_E6PWM1: Glucose inhibited division protein A|unclassified	0.2806039999
+UniRef50_UPI000369BBD6: hypothetical protein, partial	0.2805821454
+UniRef50_UPI000369BBD6: hypothetical protein, partial|unclassified	0.2805821454
+UniRef50_UPI0002898699: glycosyl transferase family protein	0.2805552456
+UniRef50_UPI0002898699: glycosyl transferase family protein|unclassified	0.2805552456
+UniRef50_A4XVW5: Heat shock protein Hsp20	0.2805283309
+UniRef50_A4XVW5: Heat shock protein Hsp20|unclassified	0.2805283309
+UniRef50_W1K0Q1: CarD family transcriptional regulator (Fragment)	0.2805117286
+UniRef50_W1K0Q1: CarD family transcriptional regulator (Fragment)|unclassified	0.2805117286
+UniRef50_X0SWR3: Marine sediment metagenome DNA, contig: S01H1_L02753 (Fragment)	0.2805086497
+UniRef50_X0SWR3: Marine sediment metagenome DNA, contig: S01H1_L02753 (Fragment)|unclassified	0.2805086497
+UniRef50_UPI000440E9BF: hypothetical protein STEHIDRAFT_144286	0.2805049088
+UniRef50_UPI000440E9BF: hypothetical protein STEHIDRAFT_144286|unclassified	0.2805049088
+UniRef50_Q0JN66: Os01g0323600 protein (Fragment)	0.2804661318
+UniRef50_Q0JN66: Os01g0323600 protein (Fragment)|unclassified	0.2804661318
+UniRef50_UPI000466ADDD: sugar ABC transporter permease, partial	0.2804628697
+UniRef50_UPI000466ADDD: sugar ABC transporter permease, partial|unclassified	0.2804628697
+UniRef50_Q88QD0	0.2804380315
+UniRef50_Q88QD0|unclassified	0.2804380315
+UniRef50_UPI00047AA90B: hypothetical protein	0.2804307696
+UniRef50_UPI00047AA90B: hypothetical protein|unclassified	0.2804307696
+UniRef50_UPI0003FF5112: hypothetical protein	0.2804229240
+UniRef50_UPI0003FF5112: hypothetical protein|unclassified	0.2804229240
+UniRef50_UPI0003AE9B4B: PREDICTED: laforin, isoform 9-like	0.2804016330
+UniRef50_UPI0003AE9B4B: PREDICTED: laforin, isoform 9-like|unclassified	0.2804016330
+UniRef50_A5P853	0.2803911933
+UniRef50_A5P853|unclassified	0.2803911933
+UniRef50_Q4SV05: Chromosome undetermined SCAF13832, whole genome shotgun sequence	0.2803556208
+UniRef50_Q4SV05: Chromosome undetermined SCAF13832, whole genome shotgun sequence|unclassified	0.2803556208
+UniRef50_UPI000463567D: hypothetical protein, partial	0.2803511256
+UniRef50_UPI000463567D: hypothetical protein, partial|unclassified	0.2803511256
+UniRef50_UPI00040772DE: hypothetical protein	0.2803435406
+UniRef50_UPI00040772DE: hypothetical protein|unclassified	0.2803435406
+UniRef50_UPI00035DAE2D: hypothetical protein	0.2803427877
+UniRef50_UPI00035DAE2D: hypothetical protein|unclassified	0.2803427877
+UniRef50_D3SC43: UPF0125 protein TK90_2052	0.2803404339
+UniRef50_D3SC43: UPF0125 protein TK90_2052|unclassified	0.2803404339
+UniRef50_U5UNF2	0.2803378722
+UniRef50_U5UNF2|unclassified	0.2803378722
+UniRef50_S9QDF6	0.2803328075
+UniRef50_S9QDF6|unclassified	0.2803328075
+UniRef50_U6PXR5: ISE/inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_741	0.2803177529
+UniRef50_U6PXR5: ISE/inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_741|unclassified	0.2803177529
+UniRef50_UPI000371CC4C: hypothetical protein, partial	0.2802790111
+UniRef50_UPI000371CC4C: hypothetical protein, partial|unclassified	0.2802790111
+UniRef50_UPI00022CAA8B: PREDICTED: hypothetical protein LOC100750060	0.2802761472
+UniRef50_UPI00022CAA8B: PREDICTED: hypothetical protein LOC100750060|unclassified	0.2802761472
+UniRef50_A6V8C8	0.2802690583
+UniRef50_A6V8C8|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.2802690583
+UniRef50_UPI00046F3EB7: hypothetical protein	0.2802584501
+UniRef50_UPI00046F3EB7: hypothetical protein|unclassified	0.2802584501
+UniRef50_UPI0003F13263	0.2802378488
+UniRef50_UPI0003F13263|unclassified	0.2802378488
+UniRef50_W8VA31: Transposase	0.2802278422
+UniRef50_W8VA31: Transposase|unclassified	0.2802278422
+UniRef50_F2F0J5: General stress protein	0.2802225706
+UniRef50_F2F0J5: General stress protein|unclassified	0.2802225706
+UniRef50_W0RQV3	0.2801862667
+UniRef50_W0RQV3|unclassified	0.2801862667
+UniRef50_UPI00037EFEF4: hypothetical protein	0.2801699897
+UniRef50_UPI00037EFEF4: hypothetical protein|unclassified	0.2801699897
+UniRef50_U4TEI8	0.2801284355
+UniRef50_U4TEI8|unclassified	0.2801284355
+UniRef50_E6TT15	0.2801280547
+UniRef50_E6TT15|unclassified	0.2801280547
+UniRef50_R5XXY7	0.2800855742
+UniRef50_R5XXY7|unclassified	0.2800855742
+UniRef50_UPI000408E626: magnesium transporter CorA	0.2800557633
+UniRef50_UPI000408E626: magnesium transporter CorA|unclassified	0.2800557633
+UniRef50_UPI00037CE6E8: hypothetical protein	0.2800288787
+UniRef50_UPI00037CE6E8: hypothetical protein|unclassified	0.2800288787
+UniRef50_F2UDL8	0.2800245940
+UniRef50_F2UDL8|unclassified	0.2800245940
+UniRef50_Z2ECH0: Putative transcriptional accessory domain protein	0.2800139397
+UniRef50_Z2ECH0: Putative transcriptional accessory domain protein|unclassified	0.2800139397
+UniRef50_S0G4F9	0.2800129398
+UniRef50_S0G4F9|unclassified	0.2800129398
+UniRef50_S2Z4L4	0.2799850440
+UniRef50_S2Z4L4|unclassified	0.2799850440
+UniRef50_UPI00036E1A30: hypothetical protein	0.2799538730
+UniRef50_UPI00036E1A30: hypothetical protein|unclassified	0.2799538730
+UniRef50_E3YLY4: Pts system fructose-specific eiibc component (Fragment)	0.2799338004
+UniRef50_E3YLY4: Pts system fructose-specific eiibc component (Fragment)|unclassified	0.2799338004
+UniRef50_UPI0002E108A4: hypothetical protein	0.2799281073
+UniRef50_UPI0002E108A4: hypothetical protein|unclassified	0.2799281073
+UniRef50_D5AQA0	0.2799013717
+UniRef50_D5AQA0|unclassified	0.2799013717
+UniRef50_UPI00039A1A44: hypothetical protein	0.2798703327
+UniRef50_UPI00039A1A44: hypothetical protein|unclassified	0.2798703327
+UniRef50_UPI00040A7BC2: hypothetical protein	0.2798549392
+UniRef50_UPI00040A7BC2: hypothetical protein|unclassified	0.2798549392
+UniRef50_Q0G2K5: ParA-like protein	0.2798432867
+UniRef50_Q0G2K5: ParA-like protein|unclassified	0.2798432867
+UniRef50_UPI00026272F3: sn-glycerol-3-phosphate ABC transporter permease	0.2798083906
+UniRef50_UPI00026272F3: sn-glycerol-3-phosphate ABC transporter permease|unclassified	0.2798083906
+UniRef50_R7Q551: Stackhouse genomic scaffold, scaffold_121	0.2797834666
+UniRef50_R7Q551: Stackhouse genomic scaffold, scaffold_121|unclassified	0.2797834666
+UniRef50_UPI00034BD968: hypothetical protein	0.2797815769
+UniRef50_UPI00034BD968: hypothetical protein|unclassified	0.2797815769
+UniRef50_W5TLJ3	0.2797632733
+UniRef50_W5TLJ3|unclassified	0.2797632733
+UniRef50_F7ZBV3	0.2797427722
+UniRef50_F7ZBV3|unclassified	0.2797427722
+UniRef50_W4HIK8	0.2797210941
+UniRef50_W4HIK8|unclassified	0.2797210941
+UniRef50_G8VL08: ATP-dependent helicase HrpA	0.2797202797
+UniRef50_G8VL08: ATP-dependent helicase HrpA|g__Propionibacterium.s__Propionibacterium_acnes	0.2797202797
+UniRef50_A0L4I8: Transcriptional regulator, BolA protein family	0.2797049449
+UniRef50_A0L4I8: Transcriptional regulator, BolA protein family|unclassified	0.2797049449
+UniRef50_W1FUN8: Glutamate Aspartate periplasmic binding protein GltI (TC 3.A.1.3.4)	0.2796768209
+UniRef50_W1FUN8: Glutamate Aspartate periplasmic binding protein GltI (TC 3.A.1.3.4)|unclassified	0.2796768209
+UniRef50_UPI00036011C5: hypothetical protein	0.2796664045
+UniRef50_UPI00036011C5: hypothetical protein|unclassified	0.2796664045
+UniRef50_UPI000379C346: hypothetical protein	0.2796170605
+UniRef50_UPI000379C346: hypothetical protein|unclassified	0.2796170605
+UniRef50_UPI0004746099: sugar ABC transporter permease	0.2796167702
+UniRef50_UPI0004746099: sugar ABC transporter permease|unclassified	0.2796167702
+UniRef50_A8L6K4: LexA repressor	0.2796093601
+UniRef50_A8L6K4: LexA repressor|unclassified	0.2796093601
+UniRef50_F1VY45: Peptide chain release factor 3	0.2796071058
+UniRef50_F1VY45: Peptide chain release factor 3|unclassified	0.2796071058
+UniRef50_A6W8X3	0.2795525743
+UniRef50_A6W8X3|unclassified	0.2795525743
+UniRef50_E6WDK8	0.2795521220
+UniRef50_E6WDK8|unclassified	0.2795521220
+UniRef50_W6MBK4	0.2795456720
+UniRef50_W6MBK4|unclassified	0.2795456720
+UniRef50_UPI0003779D9A: hypothetical protein	0.2795073349
+UniRef50_UPI0003779D9A: hypothetical protein|unclassified	0.2795073349
+UniRef50_C1F9K5: Threonine--tRNA ligase	0.2794979623
+UniRef50_C1F9K5: Threonine--tRNA ligase|unclassified	0.2794979623
+UniRef50_O88166: 20.3K-like protein	0.2794900405
+UniRef50_O88166: 20.3K-like protein|unclassified	0.2794900405
+UniRef50_UPI0003AB7330	0.2794757881
+UniRef50_UPI0003AB7330|unclassified	0.2794757881
+UniRef50_UPI00047BEFD1: nucleotidyl transferase	0.2794729231
+UniRef50_UPI00047BEFD1: nucleotidyl transferase|unclassified	0.2794729231
+UniRef50_C2XNT5	0.2794674521
+UniRef50_C2XNT5|unclassified	0.2794674521
+UniRef50_E3I496: Polyhydroxyalkonate synthesis repressor, PhaR	0.2794633224
+UniRef50_E3I496: Polyhydroxyalkonate synthesis repressor, PhaR|unclassified	0.2794633224
+UniRef50_J0CH97	0.2794487370
+UniRef50_J0CH97|unclassified	0.2794487370
+UniRef50_UPI00047AE4DE: hypothetical protein	0.2794416216
+UniRef50_UPI00047AE4DE: hypothetical protein|unclassified	0.2794416216
+UniRef50_E7C3H5	0.2794382465
+UniRef50_E7C3H5|unclassified	0.2794382465
+UniRef50_UPI00029B2DE8: transcriptional regulator	0.2793926947
+UniRef50_UPI00029B2DE8: transcriptional regulator|unclassified	0.2793926947
+UniRef50_Q9YEB2: Histidine--tRNA ligase	0.2793921408
+UniRef50_Q9YEB2: Histidine--tRNA ligase|unclassified	0.2793921408
+UniRef50_I4EVD0	0.2793347104
+UniRef50_I4EVD0|unclassified	0.2793347104
+UniRef50_UPI000382D4BD: hypothetical protein	0.2793258968
+UniRef50_UPI000382D4BD: hypothetical protein|unclassified	0.2793258968
+UniRef50_A0A023XPV4	0.2793231746
+UniRef50_A0A023XPV4|unclassified	0.2793231746
+UniRef50_O28338: UPF0062 protein AF_1941	0.2793225006
+UniRef50_O28338: UPF0062 protein AF_1941|unclassified	0.2793225006
+UniRef50_B9NP31	0.2793110676
+UniRef50_B9NP31|unclassified	0.2793110676
+UniRef50_D5GJI1: Whole genome shotgun sequence assembly, scaffold_52, strain Mel28	0.2793007769
+UniRef50_D5GJI1: Whole genome shotgun sequence assembly, scaffold_52, strain Mel28|unclassified	0.2793007769
+UniRef50_A8LN79	0.2792923648
+UniRef50_A8LN79|unclassified	0.2792923648
+UniRef50_G7KR89	0.2792667838
+UniRef50_G7KR89|unclassified	0.2792667838
+UniRef50_X1HX76: Marine sediment metagenome DNA, contig: S03H2_S02763 (Fragment)	0.2792610519
+UniRef50_X1HX76: Marine sediment metagenome DNA, contig: S03H2_S02763 (Fragment)|unclassified	0.2792610519
+UniRef50_H0HYY4: Putative transposase	0.2792215718
+UniRef50_H0HYY4: Putative transposase|unclassified	0.2792215718
+UniRef50_Q1N9J0: Plasmid partitioning protein RepAa1	0.2791814623
+UniRef50_Q1N9J0: Plasmid partitioning protein RepAa1|unclassified	0.2791814623
+UniRef50_Q3JJ03	0.2791550058
+UniRef50_Q3JJ03|unclassified	0.2791550058
+UniRef50_G6XH84	0.2791515196
+UniRef50_G6XH84|unclassified	0.2791515196
+UniRef50_UPI000255A311: chemotaxis protein-glutamate methyltransferase CheR	0.2791441057
+UniRef50_UPI000255A311: chemotaxis protein-glutamate methyltransferase CheR|unclassified	0.2791441057
+UniRef50_UPI000471B010: hypothetical protein	0.2791390287
+UniRef50_UPI000471B010: hypothetical protein|unclassified	0.2791390287
+UniRef50_Q9ZKB2: Glucose-6-phosphate 1-dehydrogenase	0.2791347262
+UniRef50_Q9ZKB2: Glucose-6-phosphate 1-dehydrogenase|unclassified	0.2791347262
+UniRef50_E1SV82	0.2791288832
+UniRef50_E1SV82|unclassified	0.2791288832
+UniRef50_F3HH15	0.2791133369
+UniRef50_F3HH15|unclassified	0.2791133369
+UniRef50_J1R7G3: Transcriptional regulator, XRE family domain protein	0.2791065194
+UniRef50_J1R7G3: Transcriptional regulator, XRE family domain protein|unclassified	0.2791065194
+UniRef50_W4U7F7: Ribose ABC transport system	0.2790579268
+UniRef50_W4U7F7: Ribose ABC transport system|unclassified	0.2790579268
+UniRef50_A3VH21	0.2790394769
+UniRef50_A3VH21|unclassified	0.2790394769
+UniRef50_UPI00047E1114: hypothetical protein	0.2790364710
+UniRef50_UPI00047E1114: hypothetical protein|unclassified	0.2790364710
+UniRef50_X0ZT33: Marine sediment metagenome DNA, contig: S01H4_C03213 (Fragment)	0.2790313948
+UniRef50_X0ZT33: Marine sediment metagenome DNA, contig: S01H4_C03213 (Fragment)|unclassified	0.2790313948
+UniRef50_W8QU35	0.2790178445
+UniRef50_W8QU35|unclassified	0.2790178445
+UniRef50_UPI00027455D9	0.2790105938
+UniRef50_UPI00027455D9|unclassified	0.2790105938
+UniRef50_A1AZD4: Sarcosine oxidase, gamma subunit	0.2789905773
+UniRef50_A1AZD4: Sarcosine oxidase, gamma subunit|unclassified	0.2789905773
+UniRef50_UPI0002883A6F: hypothetical protein	0.2789771043
+UniRef50_UPI0002883A6F: hypothetical protein|unclassified	0.2789771043
+UniRef50_Q8R7K0: L-threonine 3-dehydrogenase	0.2788950686
+UniRef50_Q8R7K0: L-threonine 3-dehydrogenase|unclassified	0.2788950686
+UniRef50_UPI00042CD0F4	0.2788601012
+UniRef50_UPI00042CD0F4|unclassified	0.2788601012
+UniRef50_UPI0003B5C80F: hypothetical protein	0.2788566306
+UniRef50_UPI0003B5C80F: hypothetical protein|unclassified	0.2788566306
+UniRef50_UPI0003020997: hypothetical protein	0.2788423599
+UniRef50_UPI0003020997: hypothetical protein|unclassified	0.2788423599
+UniRef50_UPI00028877C9: hypothetical protein	0.2788328674
+UniRef50_UPI00028877C9: hypothetical protein|unclassified	0.2788328674
+UniRef50_UPI0003C1787E: PREDICTED: calcium-transporting ATPase, endoplasmic reticulum-type-like	0.2788309524
+UniRef50_UPI0003C1787E: PREDICTED: calcium-transporting ATPase, endoplasmic reticulum-type-like|unclassified	0.2788309524
+UniRef50_L9PLX0	0.2788285532
+UniRef50_L9PLX0|unclassified	0.2788285532
+UniRef50_Q12545: 3-isopropylmalate dehydrogenase	0.2788013162
+UniRef50_Q12545: 3-isopropylmalate dehydrogenase|unclassified	0.2788013162
+UniRef50_D5H605	0.2787754681
+UniRef50_D5H605|unclassified	0.2787754681
+UniRef50_B2EBP0	0.2787701984
+UniRef50_B2EBP0|unclassified	0.2787701984
+UniRef50_V6F518	0.2787406652
+UniRef50_V6F518|unclassified	0.2787406652
+UniRef50_UPI0003619853: hypothetical protein	0.2787135969
+UniRef50_UPI0003619853: hypothetical protein|unclassified	0.2787135969
+UniRef50_S6VQV4: GlcG protein (Fragment)	0.2786951671
+UniRef50_S6VQV4: GlcG protein (Fragment)|unclassified	0.2786951671
+UniRef50_UPI000444A373: hypothetical protein STEHIDRAFT_62958	0.2786900649
+UniRef50_UPI000444A373: hypothetical protein STEHIDRAFT_62958|unclassified	0.2786900649
+UniRef50_UPI00047D1010: phage-shock protein	0.2786789568
+UniRef50_UPI00047D1010: phage-shock protein|unclassified	0.2786789568
+UniRef50_B8GW56: Chromosome replication regulator protein HdaA	0.2786411869
+UniRef50_B8GW56: Chromosome replication regulator protein HdaA|unclassified	0.2786411869
+UniRef50_Q6H9A4	0.2786293052
+UniRef50_Q6H9A4|unclassified	0.2786293052
+UniRef50_K8G8E5	0.2786213873
+UniRef50_K8G8E5|unclassified	0.2786213873
+UniRef50_UPI000412CD03: hypothetical protein	0.2785832410
+UniRef50_UPI000412CD03: hypothetical protein|unclassified	0.2785832410
+UniRef50_X1FTR4: Marine sediment metagenome DNA, contig: S03H2_S01355 (Fragment)	0.2785526490
+UniRef50_X1FTR4: Marine sediment metagenome DNA, contig: S03H2_S01355 (Fragment)|unclassified	0.2785526490
+UniRef50_I9X0Z9	0.2785439019
+UniRef50_I9X0Z9|unclassified	0.2785439019
+UniRef50_UPI000463F993: hypothetical protein	0.2785350666
+UniRef50_UPI000463F993: hypothetical protein|unclassified	0.2785350666
+UniRef50_UPI000474EE1B: hypothetical protein	0.2785157908
+UniRef50_UPI000474EE1B: hypothetical protein|unclassified	0.2785157908
+UniRef50_UPI0003B5E791: excinuclease ABC subunit B	0.2785085394
+UniRef50_UPI0003B5E791: excinuclease ABC subunit B|unclassified	0.2785085394
+UniRef50_UPI0002F0DDC3: hypothetical protein	0.2785076848
+UniRef50_UPI0002F0DDC3: hypothetical protein|unclassified	0.2785076848
+UniRef50_J7L6H5: LVIVD repeat family protein	0.2784919445
+UniRef50_J7L6H5: LVIVD repeat family protein|unclassified	0.2784919445
+UniRef50_B6IZD5: Ribosomal RNA large subunit methyltransferase E	0.2784908526
+UniRef50_B6IZD5: Ribosomal RNA large subunit methyltransferase E|unclassified	0.2784908526
+UniRef50_N5WT08: YycH protein	0.2784813696
+UniRef50_N5WT08: YycH protein|unclassified	0.2784813696
+UniRef50_UPI000383F1E5: PREDICTED: basic proline-rich protein-like, partial	0.2784747965
+UniRef50_UPI000383F1E5: PREDICTED: basic proline-rich protein-like, partial|unclassified	0.2784747965
+UniRef50_Q6VY64	0.2784679427
+UniRef50_Q6VY64|unclassified	0.2784679427
+UniRef50_Q0C099: Glycerol-3-phosphate acyltransferase	0.2784379990
+UniRef50_Q0C099: Glycerol-3-phosphate acyltransferase|unclassified	0.2784379990
+UniRef50_UPI000374794B: hypothetical protein	0.2783847676
+UniRef50_UPI000374794B: hypothetical protein|unclassified	0.2783847676
+UniRef50_UPI00046D2B95: hypothetical protein	0.2783774218
+UniRef50_UPI00046D2B95: hypothetical protein|unclassified	0.2783774218
+UniRef50_V5WT82	0.2783707049
+UniRef50_V5WT82|unclassified	0.2783707049
+UniRef50_UPI000471098A: hypothetical protein, partial	0.2783617202
+UniRef50_UPI000471098A: hypothetical protein, partial|unclassified	0.2783617202
+UniRef50_G7W1T6	0.2783520313
+UniRef50_G7W1T6|unclassified	0.2783520313
+UniRef50_UPI000426690E: hypothetical protein	0.2783466994
+UniRef50_UPI000426690E: hypothetical protein|unclassified	0.2783466994
+UniRef50_UPI000225A9D1: peptide chain release factor h	0.2783334602
+UniRef50_UPI000225A9D1: peptide chain release factor h|unclassified	0.2783334602
+UniRef50_J0IPH4	0.2783282811
+UniRef50_J0IPH4|unclassified	0.2783282811
+UniRef50_UPI0004661BBA: hypothetical protein, partial	0.2783094555
+UniRef50_UPI0004661BBA: hypothetical protein, partial|unclassified	0.2783094555
+UniRef50_M5GWK2: 3-dehydroquinate synthase	0.2782980862
+UniRef50_M5GWK2: 3-dehydroquinate synthase|unclassified	0.2782980862
+UniRef50_UPI0002557CD2: choline transporter	0.2782914209
+UniRef50_UPI0002557CD2: choline transporter|unclassified	0.2782914209
+UniRef50_UPI0002631A0F: hypothetical protein	0.2782763586
+UniRef50_UPI0002631A0F: hypothetical protein|unclassified	0.2782763586
+UniRef50_UPI000347CBDD: ABC transporter ATP-binding protein	0.2782713629
+UniRef50_UPI000347CBDD: ABC transporter ATP-binding protein|unclassified	0.2782713629
+UniRef50_UPI0003697F83: GntR family transcriptional regulator	0.2782637762
+UniRef50_UPI0003697F83: GntR family transcriptional regulator|unclassified	0.2782637762
+UniRef50_UPI000287D575: putative short-chain dehydrogenase	0.2782539557
+UniRef50_UPI000287D575: putative short-chain dehydrogenase|unclassified	0.2782539557
+UniRef50_A0A009P2V5: HxlR-like helix-turn-helix family protein	0.2782398973
+UniRef50_A0A009P2V5: HxlR-like helix-turn-helix family protein|unclassified	0.2782398973
+UniRef50_UPI000378D94F: hypothetical protein, partial	0.2782034090
+UniRef50_UPI000378D94F: hypothetical protein, partial|unclassified	0.2782034090
+UniRef50_UPI0002196887: accessory secretory protein Asp2	0.2782032243
+UniRef50_UPI0002196887: accessory secretory protein Asp2|unclassified	0.2782032243
+UniRef50_B9A9U7	0.2781982603
+UniRef50_B9A9U7|unclassified	0.2781982603
+UniRef50_W4RXX9: Phage-related baseplate assembly protein	0.2781833648
+UniRef50_W4RXX9: Phage-related baseplate assembly protein|unclassified	0.2781833648
+UniRef50_UPI0003AA521B: molybdenum ABC transporter permease	0.2781828240
+UniRef50_UPI0003AA521B: molybdenum ABC transporter permease|unclassified	0.2781828240
+UniRef50_B7QI73: Mitochondrial associated cysteine-rich protein, putative (Fragment)	0.2781678059
+UniRef50_B7QI73: Mitochondrial associated cysteine-rich protein, putative (Fragment)|unclassified	0.2781678059
+UniRef50_D4MDT9	0.2781579127
+UniRef50_D4MDT9|unclassified	0.2781579127
+UniRef50_Q891M0: D-ribose pyranase	0.2781562349
+UniRef50_Q891M0: D-ribose pyranase|unclassified	0.2781562349
+UniRef50_K0SSL9	0.2781150666
+UniRef50_K0SSL9|unclassified	0.2781150666
+UniRef50_L4Q1V3	0.2780761356
+UniRef50_L4Q1V3|unclassified	0.2780761356
+UniRef50_UPI000367D1C3: hypothetical protein	0.2780686740
+UniRef50_UPI000367D1C3: hypothetical protein|unclassified	0.2780686740
+UniRef50_UPI0003B5C461: 30S ribosomal protein S4	0.2780622346
+UniRef50_UPI0003B5C461: 30S ribosomal protein S4|unclassified	0.2780622346
+UniRef50_F0GV07	0.2780579650
+UniRef50_F0GV07|unclassified	0.2780579650
+UniRef50_UPI00029CC4DC: UDP-N-acetylmuramate-L-alanine ligase, partial	0.2780548982
+UniRef50_UPI00029CC4DC: UDP-N-acetylmuramate-L-alanine ligase, partial|unclassified	0.2780548982
+UniRef50_UPI00046D17FD: hypothetical protein	0.2780536929
+UniRef50_UPI00046D17FD: hypothetical protein|unclassified	0.2780536929
+UniRef50_UPI000464D4D6: hydroxylamine reductase	0.2779133860
+UniRef50_UPI000464D4D6: hydroxylamine reductase|unclassified	0.2779133860
+UniRef50_F8GUB6	0.2779053784
+UniRef50_F8GUB6|unclassified	0.2779053784
+UniRef50_UPI0002EE4E70: D-amino acid dehydrogenase small subunit	0.2778832179
+UniRef50_UPI0002EE4E70: D-amino acid dehydrogenase small subunit|unclassified	0.2778832179
+UniRef50_R4GHX9	0.2778546759
+UniRef50_R4GHX9|unclassified	0.2778546759
+UniRef50_U0YRX0	0.2778347173
+UniRef50_U0YRX0|unclassified	0.2778347173
+UniRef50_A7HY57: Trigger factor	0.2778059846
+UniRef50_A7HY57: Trigger factor|unclassified	0.2778059846
+UniRef50_UPI00041436A6: hypothetical protein	0.2777991001
+UniRef50_UPI00041436A6: hypothetical protein|unclassified	0.2777991001
+UniRef50_E2NJJ5: Putative dGTPase	0.2777970017
+UniRef50_E2NJJ5: Putative dGTPase|unclassified	0.2777970017
+UniRef50_UPI0004742235: hypothetical protein, partial	0.2777659974
+UniRef50_UPI0004742235: hypothetical protein, partial|unclassified	0.2777659974
+UniRef50_UPI000464DC75: single-stranded DNA-binding protein	0.2777459702
+UniRef50_UPI000464DC75: single-stranded DNA-binding protein|unclassified	0.2777459702
+UniRef50_F0G7X4: NADH:ubiquinone oxidoreductase subunit L (Fragment)	0.2777358585
+UniRef50_F0G7X4: NADH:ubiquinone oxidoreductase subunit L (Fragment)|unclassified	0.2777358585
+UniRef50_B0MD46: Biotin-requiring enzyme	0.2777174872
+UniRef50_B0MD46: Biotin-requiring enzyme|unclassified	0.2777174872
+UniRef50_X1MDA3: Marine sediment metagenome DNA, contig: S06H3_L00116 (Fragment)	0.2776960393
+UniRef50_X1MDA3: Marine sediment metagenome DNA, contig: S06H3_L00116 (Fragment)|unclassified	0.2776960393
+UniRef50_Q164U2	0.2776728110
+UniRef50_Q164U2|unclassified	0.2776728110
+UniRef50_Q72C18: Acetylglutamate kinase	0.2776641727
+UniRef50_Q72C18: Acetylglutamate kinase|unclassified	0.2776641727
+UniRef50_I1PIR0	0.2776621766
+UniRef50_I1PIR0|unclassified	0.2776621766
+UniRef50_UPI00046D80E8: hypothetical protein	0.2776606605
+UniRef50_UPI00046D80E8: hypothetical protein|unclassified	0.2776606605
+UniRef50_F4D0T6	0.2776481050
+UniRef50_F4D0T6|unclassified	0.2776481050
+UniRef50_V4J6I3: N-methylhydantoinase A/acetone carboxylase, beta subunit (Fragment)	0.2776452793
+UniRef50_V4J6I3: N-methylhydantoinase A/acetone carboxylase, beta subunit (Fragment)|unclassified	0.2776452793
+UniRef50_P14503	0.2776409443
+UniRef50_P14503|unclassified	0.2776409443
+UniRef50_U1WYS6	0.2776365948
+UniRef50_U1WYS6|unclassified	0.2776365948
+UniRef50_UPI0003164CF9: hypothetical protein	0.2776015277
+UniRef50_UPI0003164CF9: hypothetical protein|unclassified	0.2776015277
+UniRef50_UPI000369508B: hypothetical protein	0.2775438483
+UniRef50_UPI000369508B: hypothetical protein|unclassified	0.2775438483
+UniRef50_D3DJX8: NAD-dependent formate dehydrogenase delta subunit	0.2775369817
+UniRef50_D3DJX8: NAD-dependent formate dehydrogenase delta subunit|unclassified	0.2775369817
+UniRef50_L1PLX0	0.2775362425
+UniRef50_L1PLX0|unclassified	0.2775362425
+UniRef50_L0LIX3	0.2775315757
+UniRef50_L0LIX3|unclassified	0.2775315757
+UniRef50_UPI0002D5E2BF: hypothetical protein	0.2774992887
+UniRef50_UPI0002D5E2BF: hypothetical protein|unclassified	0.2774992887
+UniRef50_A0A011NG99	0.2774806641
+UniRef50_A0A011NG99|unclassified	0.2774806641
+UniRef50_UPI000400283D: hypothetical protein	0.2774803680
+UniRef50_UPI000400283D: hypothetical protein|unclassified	0.2774803680
+UniRef50_UPI000190A758: pyrroline-5-carboxylate reductase, partial	0.2774235011
+UniRef50_UPI000190A758: pyrroline-5-carboxylate reductase, partial|unclassified	0.2774235011
+UniRef50_W4QVQ3: Aerobic glycerol-3-phosphate dehydrogenase	0.2774051381
+UniRef50_W4QVQ3: Aerobic glycerol-3-phosphate dehydrogenase|unclassified	0.2774051381
+UniRef50_UPI00046837B4: hypothetical protein	0.2774031908
+UniRef50_UPI00046837B4: hypothetical protein|unclassified	0.2774031908
+UniRef50_Q1IVP4: Glutamate--tRNA ligase 1	0.2774010338
+UniRef50_Q1IVP4: Glutamate--tRNA ligase 1|unclassified	0.2774010338
+UniRef50_UPI000273D0E2	0.2773659303
+UniRef50_UPI000273D0E2|unclassified	0.2773659303
+UniRef50_UPI000237DF5D: cobalamin adenosyltransferase family protein	0.2773483871
+UniRef50_UPI000237DF5D: cobalamin adenosyltransferase family protein|unclassified	0.2773483871
+UniRef50_F4KU39	0.2773375223
+UniRef50_F4KU39|unclassified	0.2773375223
+UniRef50_J8FNS4	0.2773121324
+UniRef50_J8FNS4|unclassified	0.2773121324
+UniRef50_R1D0R3	0.2772986869
+UniRef50_R1D0R3|unclassified	0.2772986869
+UniRef50_Q5NB22	0.2772332731
+UniRef50_Q5NB22|unclassified	0.2772332731
+UniRef50_UPI0004785717: hypothetical protein	0.2772279190
+UniRef50_UPI0004785717: hypothetical protein|unclassified	0.2772279190
+UniRef50_UPI0001AF2BB8: hypothetical protein	0.2772142683
+UniRef50_UPI0001AF2BB8: hypothetical protein|unclassified	0.2772142683
+UniRef50_K8PU85: Chaperone ClpB	0.2771979826
+UniRef50_K8PU85: Chaperone ClpB|unclassified	0.2771979826
+UniRef50_UPI000465D072: glucose-1-phosphate thymidylyltransferase	0.2771943758
+UniRef50_UPI000465D072: glucose-1-phosphate thymidylyltransferase|unclassified	0.2771943758
+UniRef50_UPI00046AB3FB: methyltransferase type 11, partial	0.2771897804
+UniRef50_UPI00046AB3FB: methyltransferase type 11, partial|unclassified	0.2771897804
+UniRef50_UPI000363FE3F: hypothetical protein	0.2771896682
+UniRef50_UPI000363FE3F: hypothetical protein|unclassified	0.2771896682
+UniRef50_A0A036VXI0	0.2771865334
+UniRef50_A0A036VXI0|unclassified	0.2771865334
+UniRef50_UPI00039A0000: hypothetical protein	0.2771814277
+UniRef50_UPI00039A0000: hypothetical protein|unclassified	0.2771814277
+UniRef50_UPI0004705DC9: RNA polymerase sigma factor, partial	0.2771705536
+UniRef50_UPI0004705DC9: RNA polymerase sigma factor, partial|unclassified	0.2771705536
+UniRef50_UPI000467B9AD: peptide ABC transporter ATP-binding protein	0.2771684276
+UniRef50_UPI000467B9AD: peptide ABC transporter ATP-binding protein|unclassified	0.2771684276
+UniRef50_UPI0002E03FC6: hemolysin	0.2771594882
+UniRef50_UPI0002E03FC6: hemolysin|unclassified	0.2771594882
+UniRef50_UPI00047DAEC8: hypothetical protein	0.2771173629
+UniRef50_UPI00047DAEC8: hypothetical protein|unclassified	0.2771173629
+UniRef50_Y8LDK0	0.2771007576
+UniRef50_Y8LDK0|unclassified	0.2771007576
+UniRef50_M4Z6Y0	0.2770939463
+UniRef50_M4Z6Y0|unclassified	0.2770939463
+UniRef50_W1C828: Molybdate metabolism regulator	0.2770850651
+UniRef50_W1C828: Molybdate metabolism regulator|g__Escherichia.s__Escherichia_coli	0.2770850651
+UniRef50_Q5Z5Z3	0.2770818034
+UniRef50_Q5Z5Z3|unclassified	0.2770818034
+UniRef50_UPI00036C22DF: hypothetical protein, partial	0.2770800983
+UniRef50_UPI00036C22DF: hypothetical protein, partial|unclassified	0.2770800983
+UniRef50_S5Y7P7	0.2770750404
+UniRef50_S5Y7P7|unclassified	0.2770750404
+UniRef50_W5X715: Dephospho-CoA kinase	0.2770567452
+UniRef50_W5X715: Dephospho-CoA kinase|unclassified	0.2770567452
+UniRef50_S9TGR1	0.2770459404
+UniRef50_S9TGR1|unclassified	0.2770459404
+UniRef50_I1AUI6: Ferrichrome ABC transporter periplasmic ferrichrome-binding protein FhuD-1	0.2770090553
+UniRef50_I1AUI6: Ferrichrome ABC transporter periplasmic ferrichrome-binding protein FhuD-1|unclassified	0.2770090553
+UniRef50_Q01A90: WGS project CAID00000000 data, contig chromosome 04	0.2769969328
+UniRef50_Q01A90: WGS project CAID00000000 data, contig chromosome 04|unclassified	0.2769969328
+UniRef50_UPI000237C688: ribulokinase	0.2769850639
+UniRef50_UPI000237C688: ribulokinase|unclassified	0.2769850639
+UniRef50_W5XBF7: Peptidase-like protein	0.2769807506
+UniRef50_W5XBF7: Peptidase-like protein|unclassified	0.2769807506
+UniRef50_UPI0003801895: hypothetical protein	0.2769679453
+UniRef50_UPI0003801895: hypothetical protein|unclassified	0.2769679453
+UniRef50_C0HG71	0.2769501758
+UniRef50_C0HG71|unclassified	0.2769501758
+UniRef50_S1SWK6	0.2769313219
+UniRef50_S1SWK6|unclassified	0.2769313219
+UniRef50_C6E3P1	0.2769299013
+UniRef50_C6E3P1|unclassified	0.2769299013
+UniRef50_Q3JJN6	0.2769263321
+UniRef50_Q3JJN6|unclassified	0.2769263321
+UniRef50_Z9VYD6	0.2769047427
+UniRef50_Z9VYD6|unclassified	0.2769047427
+UniRef50_H8GBA8	0.2768925467
+UniRef50_H8GBA8|unclassified	0.2768925467
+UniRef50_UPI000462C537: hypothetical protein	0.2768641705
+UniRef50_UPI000462C537: hypothetical protein|unclassified	0.2768641705
+UniRef50_A0A011ZWR5	0.2768614896
+UniRef50_A0A011ZWR5|unclassified	0.2768614896
+UniRef50_A8AQY2: Glycogen debranching enzyme	0.2768556481
+UniRef50_A8AQY2: Glycogen debranching enzyme|unclassified	0.2768556481
+UniRef50_Q32IZ1: IS2 ORF2	0.2768477317
+UniRef50_Q32IZ1: IS2 ORF2|unclassified	0.2768477317
+UniRef50_W1U046: Alanine dehydrogenase	0.2768007904
+UniRef50_W1U046: Alanine dehydrogenase|unclassified	0.2768007904
+UniRef50_T1BLX6: Cytosine deaminase (Fragment)	0.2767737247
+UniRef50_T1BLX6: Cytosine deaminase (Fragment)|unclassified	0.2767737247
+UniRef50_I2W1S0	0.2767705437
+UniRef50_I2W1S0|unclassified	0.2767705437
+UniRef50_UPI0002BC7439: hypothetical protein	0.2767696281
+UniRef50_UPI0002BC7439: hypothetical protein|unclassified	0.2767696281
+UniRef50_UPI0002ED1181: hypothetical protein	0.2767653290
+UniRef50_UPI0002ED1181: hypothetical protein|unclassified	0.2767653290
+UniRef50_E2XT96: Lactone-specific esterase	0.2767554174
+UniRef50_E2XT96: Lactone-specific esterase|unclassified	0.2767554174
+UniRef50_UPI00047B8AE7: phage baseplate protein	0.2767513221
+UniRef50_UPI00047B8AE7: phage baseplate protein|unclassified	0.2767513221
+UniRef50_J9NXK7	0.2767471811
+UniRef50_J9NXK7|unclassified	0.2767471811
+UniRef50_UPI00047A923E: hypothetical protein, partial	0.2767150525
+UniRef50_UPI00047A923E: hypothetical protein, partial|unclassified	0.2767150525
+UniRef50_UPI0001C39745: ABC-type dipeptide transport system, periplasmic component, partial	0.2766883200
+UniRef50_UPI0001C39745: ABC-type dipeptide transport system, periplasmic component, partial|unclassified	0.2766883200
+UniRef50_UPI000375F92B: hypothetical protein	0.2766853008
+UniRef50_UPI000375F92B: hypothetical protein|unclassified	0.2766853008
+UniRef50_UPI0003AF0A61: PREDICTED: myosin heavy chain IB-like	0.2766798045
+UniRef50_UPI0003AF0A61: PREDICTED: myosin heavy chain IB-like|unclassified	0.2766798045
+UniRef50_UPI0003B75E15: ABC transporter	0.2766735553
+UniRef50_UPI0003B75E15: ABC transporter|unclassified	0.2766735553
+UniRef50_UPI000360B039: hypothetical protein	0.2766676993
+UniRef50_UPI000360B039: hypothetical protein|unclassified	0.2766676993
+UniRef50_UPI000368C0CE: hypothetical protein	0.2766666468
+UniRef50_UPI000368C0CE: hypothetical protein|unclassified	0.2766666468
+UniRef50_UPI00029A9C91: phosphoribosylaminoimidazole carboxylase ATPase subunit, partial	0.2766095892
+UniRef50_UPI00029A9C91: phosphoribosylaminoimidazole carboxylase ATPase subunit, partial|unclassified	0.2766095892
+UniRef50_I8UJ33: Rhodanese domain-containing protein	0.2766050916
+UniRef50_I8UJ33: Rhodanese domain-containing protein|unclassified	0.2766050916
+UniRef50_G2UC16	0.2765878707
+UniRef50_G2UC16|unclassified	0.2765878707
+UniRef50_Q63VA4	0.2765769391
+UniRef50_Q63VA4|unclassified	0.2765769391
+UniRef50_UPI000367C16B: MULTISPECIES: hypothetical protein	0.2765711358
+UniRef50_UPI000367C16B: MULTISPECIES: hypothetical protein|unclassified	0.2765711358
+UniRef50_UPI0002D46590: hypothetical protein	0.2765709777
+UniRef50_UPI0002D46590: hypothetical protein|unclassified	0.2765709777
+UniRef50_W7HRL8	0.2765283776
+UniRef50_W7HRL8|unclassified	0.2765283776
+UniRef50_UPI000303E492: hypothetical protein	0.2765219091
+UniRef50_UPI000303E492: hypothetical protein|unclassified	0.2765219091
+UniRef50_UPI0004784FEB: TetR family transcriptional regulator	0.2765188702
+UniRef50_UPI0004784FEB: TetR family transcriptional regulator|unclassified	0.2765188702
+UniRef50_D1BRB3	0.2764906742
+UniRef50_D1BRB3|unclassified	0.2764906742
+UniRef50_Q89T28: D-amino acid dehydrogenase small subunit	0.2764759612
+UniRef50_Q89T28: D-amino acid dehydrogenase small subunit|unclassified	0.2764759612
+UniRef50_UPI00035F34EA: hypothetical protein	0.2764587598
+UniRef50_UPI00035F34EA: hypothetical protein|unclassified	0.2764587598
+UniRef50_C6AR36: SpoVR like protein	0.2764449766
+UniRef50_C6AR36: SpoVR like protein|unclassified	0.2764449766
+UniRef50_UPI00046D6464: translation factor Sua5	0.2764137076
+UniRef50_UPI00046D6464: translation factor Sua5|unclassified	0.2764137076
+UniRef50_UPI0003943B89: PREDICTED: transcription initiation factor TFIID subunit 4-like	0.2764049017
+UniRef50_UPI0003943B89: PREDICTED: transcription initiation factor TFIID subunit 4-like|unclassified	0.2764049017
+UniRef50_UPI00046D729E: hypothetical protein	0.2763935659
+UniRef50_UPI00046D729E: hypothetical protein|unclassified	0.2763935659
+UniRef50_UPI0003B76B88: membrane dipeptidase, partial	0.2763858522
+UniRef50_UPI0003B76B88: membrane dipeptidase, partial|unclassified	0.2763858522
+UniRef50_UPI000262A47D: AsnC family transcriptional regulator	0.2763806201
+UniRef50_UPI000262A47D: AsnC family transcriptional regulator|unclassified	0.2763806201
+UniRef50_F4DTR0	0.2763526104
+UniRef50_F4DTR0|unclassified	0.2763526104
+UniRef50_X1MJF3: Marine sediment metagenome DNA, contig: S06H3_C04512	0.2763234754
+UniRef50_X1MJF3: Marine sediment metagenome DNA, contig: S06H3_C04512|unclassified	0.2763234754
+UniRef50_Q839B2: Hypoxanthine-guanine phosphoribosyltransferase	0.2763117634
+UniRef50_Q839B2: Hypoxanthine-guanine phosphoribosyltransferase|unclassified	0.2763117634
+UniRef50_UPI0002E80A03: hypothetical protein	0.2762926887
+UniRef50_UPI0002E80A03: hypothetical protein|unclassified	0.2762926887
+UniRef50_W7WMV1: Neu5Ac permease	0.2762906026
+UniRef50_W7WMV1: Neu5Ac permease|unclassified	0.2762906026
+UniRef50_UPI0003604091: hypothetical protein	0.2762890555
+UniRef50_UPI0003604091: hypothetical protein|unclassified	0.2762890555
+UniRef50_J9PBA5	0.2762666290
+UniRef50_J9PBA5|unclassified	0.2762666290
+UniRef50_H0E4X1	0.2762058126
+UniRef50_H0E4X1|unclassified	0.2762058126
+UniRef50_L0GI71	0.2761808514
+UniRef50_L0GI71|unclassified	0.2761808514
+UniRef50_UPI0004112178: hypothetical protein	0.2761210934
+UniRef50_UPI0004112178: hypothetical protein|unclassified	0.2761210934
+UniRef50_UPI0002F819F8: hypothetical protein	0.2760670809
+UniRef50_UPI0002F819F8: hypothetical protein|unclassified	0.2760670809
+UniRef50_F0Y1G4	0.2760597974
+UniRef50_F0Y1G4|unclassified	0.2760597974
+UniRef50_UPI0004672B4F: hypothetical protein	0.2760225944
+UniRef50_UPI0004672B4F: hypothetical protein|unclassified	0.2760225944
+UniRef50_Q9ZUC2: Beta carbonic anhydrase 3	0.2760111664
+UniRef50_Q9ZUC2: Beta carbonic anhydrase 3|unclassified	0.2760111664
+UniRef50_UPI0003B55E69: membrane protein	0.2759367751
+UniRef50_UPI0003B55E69: membrane protein|unclassified	0.2759367751
+UniRef50_UPI00039A55CB: hypothetical protein	0.2759217056
+UniRef50_UPI00039A55CB: hypothetical protein|unclassified	0.2759217056
+UniRef50_R0ZXH9	0.2759032885
+UniRef50_R0ZXH9|unclassified	0.2759032885
+UniRef50_UPI0003B6A643: adenine phosphoribosyltransferase	0.2758941424
+UniRef50_UPI0003B6A643: adenine phosphoribosyltransferase|unclassified	0.2758941424
+UniRef50_UPI00035F25EC: hypothetical protein	0.2758732709
+UniRef50_UPI00035F25EC: hypothetical protein|unclassified	0.2758732709
+UniRef50_L3IBE2: Evolved beta-galactosidase subunit beta	0.2758564225
+UniRef50_L3IBE2: Evolved beta-galactosidase subunit beta|unclassified	0.2758564225
+UniRef50_UPI0003FA1B65: hypothetical protein	0.2758506462
+UniRef50_UPI0003FA1B65: hypothetical protein|unclassified	0.2758506462
+UniRef50_UPI00042714FE: hypothetical protein	0.2758388840
+UniRef50_UPI00042714FE: hypothetical protein|unclassified	0.2758388840
+UniRef50_A8LPN4: NIPSNAP family containing protein	0.2758360884
+UniRef50_A8LPN4: NIPSNAP family containing protein|unclassified	0.2758360884
+UniRef50_T1AQZ2: Phosphoribosylformylglycinamidine synthase (Fragment)	0.2758141530
+UniRef50_T1AQZ2: Phosphoribosylformylglycinamidine synthase (Fragment)|unclassified	0.2758141530
+UniRef50_E6MCJ0	0.2758123701
+UniRef50_E6MCJ0|unclassified	0.2758123701
+UniRef50_UPI00042C574A: PREDICTED: splicing factor, arginine/serine-rich 19-like	0.2758058436
+UniRef50_UPI00042C574A: PREDICTED: splicing factor, arginine/serine-rich 19-like|unclassified	0.2758058436
+UniRef50_UPI000262B8D8: phosphoesterase PA-phosphatase related protein	0.2758053479
+UniRef50_UPI000262B8D8: phosphoesterase PA-phosphatase related protein|unclassified	0.2758053479
+UniRef50_UPI0002885E8C: histidine kinase	0.2757961850
+UniRef50_UPI0002885E8C: histidine kinase|unclassified	0.2757961850
+UniRef50_B2A2D7: D-ribose pyranase	0.2757889780
+UniRef50_B2A2D7: D-ribose pyranase|unclassified	0.2757889780
+UniRef50_UPI000470DB04: hypothetical protein	0.2757228943
+UniRef50_UPI000470DB04: hypothetical protein|unclassified	0.2757228943
+UniRef50_J1IQI5: Cupin 4 family protein (Fragment)	0.2757033407
+UniRef50_J1IQI5: Cupin 4 family protein (Fragment)|unclassified	0.2757033407
+UniRef50_UPI00037C6E48: hypothetical protein, partial	0.2756924096
+UniRef50_UPI00037C6E48: hypothetical protein, partial|unclassified	0.2756924096
+UniRef50_W5XBE7: Organic solvent tolerance protein	0.2756857151
+UniRef50_W5XBE7: Organic solvent tolerance protein|unclassified	0.2756857151
+UniRef50_UPI00047E6CAE: macrolide ABC transporter ATP-binding protein	0.2756775764
+UniRef50_UPI00047E6CAE: macrolide ABC transporter ATP-binding protein|unclassified	0.2756775764
+UniRef50_UPI000288960A: sodium/calcium exchanger	0.2756741500
+UniRef50_UPI000288960A: sodium/calcium exchanger|unclassified	0.2756741500
+UniRef50_S3B3E9	0.2756496414
+UniRef50_S3B3E9|unclassified	0.2756496414
+UniRef50_S5YFQ1	0.2756457167
+UniRef50_S5YFQ1|unclassified	0.2756457167
+UniRef50_V3HM73	0.2756312050
+UniRef50_V3HM73|unclassified	0.2756312050
+UniRef50_UPI0003C83B40: PREDICTED: zinc finger protein 577	0.2756295039
+UniRef50_UPI0003C83B40: PREDICTED: zinc finger protein 577|unclassified	0.2756295039
+UniRef50_A0A017YAB0	0.2756112782
+UniRef50_A0A017YAB0|unclassified	0.2756112782
+UniRef50_UPI000225C163: chromosome partitioning protein ParB	0.2755930963
+UniRef50_UPI000225C163: chromosome partitioning protein ParB|unclassified	0.2755930963
+UniRef50_UPI00037FA516: hypothetical protein	0.2755889875
+UniRef50_UPI00037FA516: hypothetical protein|unclassified	0.2755889875
+UniRef50_L9M7Y3	0.2755578870
+UniRef50_L9M7Y3|unclassified	0.2755578870
+UniRef50_H5HH27	0.2755465911
+UniRef50_H5HH27|unclassified	0.2755465911
+UniRef50_D8NYU1	0.2755086440
+UniRef50_D8NYU1|unclassified	0.2755086440
+UniRef50_E6HEL9	0.2755046667
+UniRef50_E6HEL9|unclassified	0.2755046667
+UniRef50_F0LZF8: GGDEF family protein	0.2755011351
+UniRef50_F0LZF8: GGDEF family protein|unclassified	0.2755011351
+UniRef50_F2AEC6	0.2754995771
+UniRef50_F2AEC6|unclassified	0.2754995771
+UniRef50_UPI00047676D6: glyoxal reductase	0.2754630630
+UniRef50_UPI00047676D6: glyoxal reductase|unclassified	0.2754630630
+UniRef50_UPI00047574D4: tyrosyl-tRNA synthetase	0.2754560447
+UniRef50_UPI00047574D4: tyrosyl-tRNA synthetase|unclassified	0.2754560447
+UniRef50_X1NN73: Marine sediment metagenome DNA, contig: S06H3_S02623 (Fragment)	0.2754548634
+UniRef50_X1NN73: Marine sediment metagenome DNA, contig: S06H3_S02623 (Fragment)|unclassified	0.2754548634
+UniRef50_UPI0003F5A13E: hypothetical protein	0.2754530767
+UniRef50_UPI0003F5A13E: hypothetical protein|unclassified	0.2754530767
+UniRef50_J2RS11: Arabinose efflux permease family protein (Fragment)	0.2754483809
+UniRef50_J2RS11: Arabinose efflux permease family protein (Fragment)|unclassified	0.2754483809
+UniRef50_C0B5H8	0.2754422102
+UniRef50_C0B5H8|unclassified	0.2754422102
+UniRef50_Q5FPR0	0.2754397273
+UniRef50_Q5FPR0|unclassified	0.2754397273
+UniRef50_UPI000477E0BA: hypothetical protein	0.2754366146
+UniRef50_UPI000477E0BA: hypothetical protein|unclassified	0.2754366146
+UniRef50_J8V5V4	0.2754167937
+UniRef50_J8V5V4|unclassified	0.2754167937
+UniRef50_G2LHY1: von Willebrand factor type A domain protein	0.2754118736
+UniRef50_G2LHY1: von Willebrand factor type A domain protein|unclassified	0.2754118736
+UniRef50_UPI000380D40C: hypothetical protein	0.2754100294
+UniRef50_UPI000380D40C: hypothetical protein|unclassified	0.2754100294
+UniRef50_D5AU05	0.2754010396
+UniRef50_D5AU05|unclassified	0.2754010396
+UniRef50_Q2GC33: DNA-directed RNA polymerase subunit omega	0.2753862772
+UniRef50_Q2GC33: DNA-directed RNA polymerase subunit omega|unclassified	0.2753862772
+UniRef50_UPI0003728687: hypothetical protein	0.2753650970
+UniRef50_UPI0003728687: hypothetical protein|unclassified	0.2753650970
+UniRef50_J3NFB4	0.2753279201
+UniRef50_J3NFB4|unclassified	0.2753279201
+UniRef50_B2UUU1: Purine nucleoside phosphorylase DeoD-type	0.2753201631
+UniRef50_B2UUU1: Purine nucleoside phosphorylase DeoD-type|unclassified	0.2753201631
+UniRef50_UPI00036DA0AF: hypothetical protein	0.2752992578
+UniRef50_UPI00036DA0AF: hypothetical protein|unclassified	0.2752992578
+UniRef50_UPI0003BB97B6: PREDICTED: LOW QUALITY PROTEIN: collagen alpha-1(V) chain	0.2752980510
+UniRef50_UPI0003BB97B6: PREDICTED: LOW QUALITY PROTEIN: collagen alpha-1(V) chain|unclassified	0.2752980510
+UniRef50_UPI000476D67D: peptide ABC transporter permease	0.2752904979
+UniRef50_UPI000476D67D: peptide ABC transporter permease|unclassified	0.2752904979
+UniRef50_UPI0004793307: arginine ABC transporter ATP-binding protein	0.2752772741
+UniRef50_UPI0004793307: arginine ABC transporter ATP-binding protein|unclassified	0.2752772741
+UniRef50_F2UJQ2	0.2752762634
+UniRef50_F2UJQ2|unclassified	0.2752762634
+UniRef50_P11156: Ribonucleoside-diphosphate reductase subunit beta	0.2752665623
+UniRef50_P11156: Ribonucleoside-diphosphate reductase subunit beta|unclassified	0.2752665623
+UniRef50_Q6A7Y1: Glutamyl-Q tRNA(Asp) synthetase	0.2752656736
+UniRef50_Q6A7Y1: Glutamyl-Q tRNA(Asp) synthetase|unclassified	0.2752656736
+UniRef50_X1GYM7: Marine sediment metagenome DNA, contig: S03H2_S17910	0.2752557869
+UniRef50_X1GYM7: Marine sediment metagenome DNA, contig: S03H2_S17910|unclassified	0.2752557869
+UniRef50_Q1GG22	0.2752470758
+UniRef50_Q1GG22|unclassified	0.2752470758
+UniRef50_UPI0003767955: hypothetical protein, partial	0.2752373687
+UniRef50_UPI0003767955: hypothetical protein, partial|unclassified	0.2752373687
+UniRef50_F7CCI5	0.2752265073
+UniRef50_F7CCI5|unclassified	0.2752265073
+UniRef50_UPI00047BE4E5: membrane protein, partial	0.2752233859
+UniRef50_UPI00047BE4E5: membrane protein, partial|unclassified	0.2752233859
+UniRef50_L3S9H3: Ribonucleoside-diphosphate reductase subunit beta	0.2751952728
+UniRef50_L3S9H3: Ribonucleoside-diphosphate reductase subunit beta|unclassified	0.2751952728
+UniRef50_UPI000379EBC4: hypothetical protein	0.2751715638
+UniRef50_UPI000379EBC4: hypothetical protein|unclassified	0.2751715638
+UniRef50_UPI000479D811: hypothetical protein, partial	0.2751187926
+UniRef50_UPI000479D811: hypothetical protein, partial|unclassified	0.2751187926
+UniRef50_UPI00037D07C0: competence protein ComGC	0.2751012621
+UniRef50_UPI00037D07C0: competence protein ComGC|unclassified	0.2751012621
+UniRef50_UPI0003B304F4: chromosome-partitioning ATPase	0.2750494448
+UniRef50_UPI0003B304F4: chromosome-partitioning ATPase|unclassified	0.2750494448
+UniRef50_A1VXS2: GTP cyclohydrolase 1	0.2750439365
+UniRef50_A1VXS2: GTP cyclohydrolase 1|unclassified	0.2750439365
+UniRef50_B9AGP9	0.2750209378
+UniRef50_B9AGP9|unclassified	0.2750209378
+UniRef50_L8GKM7	0.2750040272
+UniRef50_L8GKM7|unclassified	0.2750040272
+UniRef50_UPI00046D3AA4: hypothetical protein	0.2750004013
+UniRef50_UPI00046D3AA4: hypothetical protein|unclassified	0.2750004013
+UniRef50_UPI0004726CE8: ABC transporter substrate-binding protein	0.2749905930
+UniRef50_UPI0004726CE8: ABC transporter substrate-binding protein|unclassified	0.2749905930
+UniRef50_A0A014NSW5	0.2749680583
+UniRef50_A0A014NSW5|unclassified	0.2749680583
+UniRef50_UPI000289D44B: AMP-dependent synthetase/ligase	0.2749445600
+UniRef50_UPI000289D44B: AMP-dependent synthetase/ligase|unclassified	0.2749445600
+UniRef50_R4M827: PE-PGRS family protein	0.2749339270
+UniRef50_R4M827: PE-PGRS family protein|unclassified	0.2749339270
+UniRef50_UPI000379E028: hypothetical protein	0.2749320713
+UniRef50_UPI000379E028: hypothetical protein|unclassified	0.2749320713
+UniRef50_UPI0003729094: hypothetical protein	0.2749171609
+UniRef50_UPI0003729094: hypothetical protein|unclassified	0.2749171609
+UniRef50_UPI0003EB3D8F: hypothetical protein	0.2749101326
+UniRef50_UPI0003EB3D8F: hypothetical protein|unclassified	0.2749101326
+UniRef50_D3URX0: NLP/P60 family protein	0.2748762262
+UniRef50_D3URX0: NLP/P60 family protein|unclassified	0.2748762262
+UniRef50_UPI0003958BDF: PREDICTED: mucin-19-like, partial	0.2748630487
+UniRef50_UPI0003958BDF: PREDICTED: mucin-19-like, partial|unclassified	0.2748630487
+UniRef50_P39800: N-acetylmuramoyl-L-alanine amidase XlyA	0.2748435491
+UniRef50_P39800: N-acetylmuramoyl-L-alanine amidase XlyA|unclassified	0.2748435491
+UniRef50_UPI000478BE00: peptidase M20	0.2748351133
+UniRef50_UPI000478BE00: peptidase M20|unclassified	0.2748351133
+UniRef50_A0A038FZN0	0.2748349313
+UniRef50_A0A038FZN0|unclassified	0.2748349313
+UniRef50_UPI00037F7F53: hypothetical protein	0.2748273047
+UniRef50_UPI00037F7F53: hypothetical protein|unclassified	0.2748273047
+UniRef50_R5PKX9: 6-pyruvoyl-tetrahydropterin synthase	0.2747979997
+UniRef50_R5PKX9: 6-pyruvoyl-tetrahydropterin synthase|unclassified	0.2747979997
+UniRef50_UPI00037045CB: hypothetical protein	0.2747887300
+UniRef50_UPI00037045CB: hypothetical protein|unclassified	0.2747887300
+UniRef50_R9DJM2	0.2747872881
+UniRef50_R9DJM2|unclassified	0.2747872881
+UniRef50_F6R4Y2	0.2747526824
+UniRef50_F6R4Y2|unclassified	0.2747526824
+UniRef50_UPI00036107E8: hypothetical protein	0.2747442575
+UniRef50_UPI00036107E8: hypothetical protein|unclassified	0.2747442575
+UniRef50_H1LH45	0.2747429330
+UniRef50_H1LH45|unclassified	0.2747429330
+UniRef50_C4S929: Phosphatase ybjI	0.2747315965
+UniRef50_C4S929: Phosphatase ybjI|unclassified	0.2747315965
+UniRef50_J1K3J5: Arsenate reductase (Glutaredoxin)	0.2747211104
+UniRef50_J1K3J5: Arsenate reductase (Glutaredoxin)|unclassified	0.2747211104
+UniRef50_UPI00047B371C: hypothetical protein, partial	0.2747136032
+UniRef50_UPI00047B371C: hypothetical protein, partial|unclassified	0.2747136032
+UniRef50_Q2W170	0.2747076192
+UniRef50_Q2W170|unclassified	0.2747076192
+UniRef50_W6M1C0	0.2746916606
+UniRef50_W6M1C0|unclassified	0.2746916606
+UniRef50_UPI0004631915: acetyltransferase	0.2746370891
+UniRef50_UPI0004631915: acetyltransferase|unclassified	0.2746370891
+UniRef50_D3V5W2: Insertion element iso-IS1N protein insA	0.2746366788
+UniRef50_D3V5W2: Insertion element iso-IS1N protein insA|unclassified	0.2746366788
+UniRef50_F4WWR8	0.2746001415
+UniRef50_F4WWR8|unclassified	0.2746001415
+UniRef50_W8KL45	0.2745971068
+UniRef50_W8KL45|unclassified	0.2745971068
+UniRef50_E3ZF24: M20/M25/M40 family peptidase (Fragment)	0.2745875533
+UniRef50_E3ZF24: M20/M25/M40 family peptidase (Fragment)|unclassified	0.2745875533
+UniRef50_Q9K1G3: Ribosomal RNA small subunit methyltransferase G	0.2745784369
+UniRef50_Q9K1G3: Ribosomal RNA small subunit methyltransferase G|unclassified	0.2745784369
+UniRef50_UPI0004654362: hypothetical protein, partial	0.2745257959
+UniRef50_UPI0004654362: hypothetical protein, partial|unclassified	0.2745257959
+UniRef50_UPI000262E85E: nucleoside-diphosphate sugar epimerase	0.2745240994
+UniRef50_UPI000262E85E: nucleoside-diphosphate sugar epimerase|unclassified	0.2745240994
+UniRef50_H3SBZ3	0.2745026754
+UniRef50_H3SBZ3|unclassified	0.2745026754
+UniRef50_Q47I24: Flagellar hook capping protein	0.2744939723
+UniRef50_Q47I24: Flagellar hook capping protein|unclassified	0.2744939723
+UniRef50_V8M0V2: DNA utilization protein HofP (Fragment)	0.2744874770
+UniRef50_V8M0V2: DNA utilization protein HofP (Fragment)|unclassified	0.2744874770
+UniRef50_A0AF79: Xylose isomerase	0.2744778202
+UniRef50_A0AF79: Xylose isomerase|unclassified	0.2744778202
+UniRef50_UPI000363EDC3: hypothetical protein	0.2744503379
+UniRef50_UPI000363EDC3: hypothetical protein|unclassified	0.2744503379
+UniRef50_Q1ARM2: Biotin/lipoyl attachment	0.2744333795
+UniRef50_Q1ARM2: Biotin/lipoyl attachment|unclassified	0.2744333795
+UniRef50_UPI00046CCCAD: hypothetical protein	0.2744244466
+UniRef50_UPI00046CCCAD: hypothetical protein|unclassified	0.2744244466
+UniRef50_A0A009N2B9: NMT1-like family protein	0.2744213311
+UniRef50_A0A009N2B9: NMT1-like family protein|unclassified	0.2744213311
+UniRef50_UPI000368C55E: hypothetical protein	0.2744201134
+UniRef50_UPI000368C55E: hypothetical protein|unclassified	0.2744201134
+UniRef50_K9DMW3	0.2743964408
+UniRef50_K9DMW3|unclassified	0.2743964408
+UniRef50_L5K7B6: Protein transport protein Sec24D	0.2743804692
+UniRef50_L5K7B6: Protein transport protein Sec24D|unclassified	0.2743804692
+UniRef50_X2MSC3	0.2743735181
+UniRef50_X2MSC3|unclassified	0.2743735181
+UniRef50_M2YID8	0.2743094268
+UniRef50_M2YID8|unclassified	0.2743094268
+UniRef50_V6UP91: 3-oxoadipate enol-lactonase (Fragment)	0.2742569499
+UniRef50_V6UP91: 3-oxoadipate enol-lactonase (Fragment)|unclassified	0.2742569499
+UniRef50_A5EL52	0.2742460324
+UniRef50_A5EL52|unclassified	0.2742460324
+UniRef50_UPI0003A8766A: hypothetical protein	0.2741928702
+UniRef50_UPI0003A8766A: hypothetical protein|unclassified	0.2741928702
+UniRef50_A8GKL4: Glutathione-regulated potassium-efflux system ancillary protein KefG	0.2741731854
+UniRef50_A8GKL4: Glutathione-regulated potassium-efflux system ancillary protein KefG|unclassified	0.2741731854
+UniRef50_UPI00045DC04C: PREDICTED: LOW QUALITY PROTEIN: phospholipid hydroperoxide glutathione peroxidase, mitochondrial	0.2741668340
+UniRef50_UPI00045DC04C: PREDICTED: LOW QUALITY PROTEIN: phospholipid hydroperoxide glutathione peroxidase, mitochondrial|unclassified	0.2741668340
+UniRef50_W1PK65	0.2741466458
+UniRef50_W1PK65|unclassified	0.2741466458
+UniRef50_A0A019D2D6	0.2741217872
+UniRef50_A0A019D2D6|unclassified	0.2741217872
+UniRef50_M9QZD6	0.2741040755
+UniRef50_M9QZD6|unclassified	0.2741040755
+UniRef50_UPI0002625B21: glyoxalase family protein	0.2740955029
+UniRef50_UPI0002625B21: glyoxalase family protein|unclassified	0.2740955029
+UniRef50_UPI0004144A3E: PTS sorbose transporter subunit IIC	0.2740901241
+UniRef50_UPI0004144A3E: PTS sorbose transporter subunit IIC|unclassified	0.2740901241
+UniRef50_UPI000382D4E3: hypothetical protein	0.2740887558
+UniRef50_UPI000382D4E3: hypothetical protein|unclassified	0.2740887558
+UniRef50_Q3JT36	0.2740886639
+UniRef50_Q3JT36|unclassified	0.2740886639
+UniRef50_UPI0003753EF0: hypothetical protein	0.2740794491
+UniRef50_UPI0003753EF0: hypothetical protein|unclassified	0.2740794491
+UniRef50_UPI000366AD02: hypothetical protein	0.2740789165
+UniRef50_UPI000366AD02: hypothetical protein|unclassified	0.2740789165
+UniRef50_UPI0003704D05: hypothetical protein	0.2740786294
+UniRef50_UPI0003704D05: hypothetical protein|unclassified	0.2740786294
+UniRef50_F3W425: Rhodanese-like domain protein	0.2740698412
+UniRef50_F3W425: Rhodanese-like domain protein|unclassified	0.2740698412
+UniRef50_UPI0004705D7C: hypothetical protein	0.2740296961
+UniRef50_UPI0004705D7C: hypothetical protein|unclassified	0.2740296961
+UniRef50_UPI0003B4A397: hypothetical protein, partial	0.2740282144
+UniRef50_UPI0003B4A397: hypothetical protein, partial|unclassified	0.2740282144
+UniRef50_Q88WU9: Threonine--tRNA ligase	0.2739834616
+UniRef50_Q88WU9: Threonine--tRNA ligase|unclassified	0.2739834616
+UniRef50_Q5GT94: 6,7-dimethyl-8-ribityllumazine synthase	0.2739710983
+UniRef50_Q5GT94: 6,7-dimethyl-8-ribityllumazine synthase|unclassified	0.2739710983
+UniRef50_UPI00046CE0B8: hypothetical protein	0.2739560945
+UniRef50_UPI00046CE0B8: hypothetical protein|unclassified	0.2739560945
+UniRef50_G0RGF1: Predicted protein	0.2739292457
+UniRef50_G0RGF1: Predicted protein|unclassified	0.2739292457
+UniRef50_Q8GR65: QbdB	0.2739256559
+UniRef50_Q8GR65: QbdB|unclassified	0.2739256559
+UniRef50_UPI0003F804C8: hypothetical protein	0.2739185367
+UniRef50_UPI0003F804C8: hypothetical protein|unclassified	0.2739185367
+UniRef50_UPI00036BE719: hypothetical protein	0.2738953718
+UniRef50_UPI00036BE719: hypothetical protein|unclassified	0.2738953718
+UniRef50_B1I4W9: Ribonuclease PH	0.2738830133
+UniRef50_B1I4W9: Ribonuclease PH|unclassified	0.2738830133
+UniRef50_UPI0003461ED2: TetR family transcriptional regulator	0.2738320643
+UniRef50_UPI0003461ED2: TetR family transcriptional regulator|unclassified	0.2738320643
+UniRef50_X0R0R8: Transcriptional regulator, HxlR family	0.2738059235
+UniRef50_X0R0R8: Transcriptional regulator, HxlR family|unclassified	0.2738059235
+UniRef50_UPI000289FCDF: shikimate kinase	0.2737847813
+UniRef50_UPI000289FCDF: shikimate kinase|unclassified	0.2737847813
+UniRef50_Q55749: Uroporphyrinogen-III C-methyltransferase	0.2737846107
+UniRef50_Q55749: Uroporphyrinogen-III C-methyltransferase|unclassified	0.2737846107
+UniRef50_A1IPV0	0.2737810226
+UniRef50_A1IPV0|unclassified	0.2737810226
+UniRef50_UPI00020D9DA5: hypothetical protein	0.2737764574
+UniRef50_UPI00020D9DA5: hypothetical protein|unclassified	0.2737764574
+UniRef50_R4SLJ1	0.2737694541
+UniRef50_R4SLJ1|unclassified	0.2737694541
+UniRef50_UPI000477B637: serine/threonine protein kinase	0.2737472553
+UniRef50_UPI000477B637: serine/threonine protein kinase|unclassified	0.2737472553
+UniRef50_Q9CUD7	0.2737261104
+UniRef50_Q9CUD7|unclassified	0.2737261104
+UniRef50_D3D3X9	0.2737170573
+UniRef50_D3D3X9|unclassified	0.2737170573
+UniRef50_Q56318	0.2736543356
+UniRef50_Q56318|unclassified	0.2736543356
+UniRef50_E9VB98: Bacteriophage V tail protein	0.2736234955
+UniRef50_E9VB98: Bacteriophage V tail protein|unclassified	0.2736234955
+UniRef50_UPI000474F85D: hypothetical protein, partial	0.2736065318
+UniRef50_UPI000474F85D: hypothetical protein, partial|unclassified	0.2736065318
+UniRef50_H1LIJ7	0.2735818701
+UniRef50_H1LIJ7|unclassified	0.2735818701
+UniRef50_B1HQN9: Oxidoreductase	0.2735746703
+UniRef50_B1HQN9: Oxidoreductase|unclassified	0.2735746703
+UniRef50_N1X248	0.2735596346
+UniRef50_N1X248|unclassified	0.2735596346
+UniRef50_UPI0003B3863F: carboxynorspermidine decarboxylase	0.2735500667
+UniRef50_UPI0003B3863F: carboxynorspermidine decarboxylase|unclassified	0.2735500667
+UniRef50_A5M7P7	0.2735275233
+UniRef50_A5M7P7|unclassified	0.2735275233
+UniRef50_V4QM28	0.2735164023
+UniRef50_V4QM28|unclassified	0.2735164023
+UniRef50_A0A042PYY0	0.2735049051
+UniRef50_A0A042PYY0|unclassified	0.2735049051
+UniRef50_E3I1T2: MazG family protein	0.2734841657
+UniRef50_E3I1T2: MazG family protein|unclassified	0.2734841657
+UniRef50_UPI00029AE339: oxygen-independent coproporphyrinogen III oxidase	0.2734611023
+UniRef50_UPI00029AE339: oxygen-independent coproporphyrinogen III oxidase|unclassified	0.2734611023
+UniRef50_I6GJ60: Endoribonuclease L-PSP family protein	0.2734538504
+UniRef50_I6GJ60: Endoribonuclease L-PSP family protein|unclassified	0.2734538504
+UniRef50_C6B9C2	0.2734473980
+UniRef50_C6B9C2|unclassified	0.2734473980
+UniRef50_C2N858	0.2734396275
+UniRef50_C2N858|unclassified	0.2734396275
+UniRef50_UPI0003EBD0D6: PREDICTED: GTP cyclohydrolase 1-like	0.2734193394
+UniRef50_UPI0003EBD0D6: PREDICTED: GTP cyclohydrolase 1-like|unclassified	0.2734193394
+UniRef50_UPI0003490C22: hypothetical protein	0.2733990620
+UniRef50_UPI0003490C22: hypothetical protein|unclassified	0.2733990620
+UniRef50_UPI000369BEC3: mandelate racemase	0.2733909537
+UniRef50_UPI000369BEC3: mandelate racemase|unclassified	0.2733909537
+UniRef50_Q7MUW1: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.2733815367
+UniRef50_Q7MUW1: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.2733815367
+UniRef50_Q2IPX3	0.2733555829
+UniRef50_Q2IPX3|unclassified	0.2733555829
+UniRef50_UPI00036587B3: hypothetical protein	0.2733482654
+UniRef50_UPI00036587B3: hypothetical protein|unclassified	0.2733482654
+UniRef50_W1FA01: UPF0319 protein YccT	0.2733314016
+UniRef50_W1FA01: UPF0319 protein YccT|unclassified	0.2733314016
+UniRef50_Q2RPU1: UPF0301 protein Rru_A3059	0.2733034631
+UniRef50_Q2RPU1: UPF0301 protein Rru_A3059|unclassified	0.2733034631
+UniRef50_UPI0003F9F77C: D-ribose transporter ATP-binding protein	0.2732900822
+UniRef50_UPI0003F9F77C: D-ribose transporter ATP-binding protein|unclassified	0.2732900822
+UniRef50_A0A031MFK8: Fe-S protein	0.2732664199
+UniRef50_A0A031MFK8: Fe-S protein|unclassified	0.2732664199
+UniRef50_UPI00036F0871: flagellin	0.2732401190
+UniRef50_UPI00036F0871: flagellin|unclassified	0.2732401190
+UniRef50_D5AN28: Membrane protein, putative	0.2732375325
+UniRef50_D5AN28: Membrane protein, putative|unclassified	0.2732375325
+UniRef50_UPI0003B6696B: Holliday junction resolvase	0.2732340501
+UniRef50_UPI0003B6696B: Holliday junction resolvase|unclassified	0.2732340501
+UniRef50_A0A016QN34	0.2732208513
+UniRef50_A0A016QN34|unclassified	0.2732208513
+UniRef50_U3I2V5	0.2731851686
+UniRef50_U3I2V5|unclassified	0.2731851686
+UniRef50_I2R8Z2	0.2731784708
+UniRef50_I2R8Z2|unclassified	0.2731784708
+UniRef50_A9GEI9: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	0.2731742643
+UniRef50_A9GEI9: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|unclassified	0.2731742643
+UniRef50_A3VCI7	0.2731634611
+UniRef50_A3VCI7|unclassified	0.2731634611
+UniRef50_J9GUG4: Integrase core domain protein	0.2731400905
+UniRef50_J9GUG4: Integrase core domain protein|unclassified	0.2731400905
+UniRef50_UPI0003C1A8F4	0.2731251648
+UniRef50_UPI0003C1A8F4|unclassified	0.2731251648
+UniRef50_UPI0004720155: hypothetical protein, partial	0.2731190405
+UniRef50_UPI0004720155: hypothetical protein, partial|unclassified	0.2731190405
+UniRef50_UPI0002375EA2: ABC transporter-like protein	0.2731055462
+UniRef50_UPI0002375EA2: ABC transporter-like protein|unclassified	0.2731055462
+UniRef50_UPI00047C36EB: hypothetical protein, partial	0.2730904589
+UniRef50_UPI00047C36EB: hypothetical protein, partial|unclassified	0.2730904589
+UniRef50_X8DD43: NrdI Flavodoxin like family protein	0.2730765187
+UniRef50_X8DD43: NrdI Flavodoxin like family protein|unclassified	0.2730765187
+UniRef50_B8R4J4	0.2730534388
+UniRef50_B8R4J4|unclassified	0.2730534388
+UniRef50_UPI0003B59080: carbon storage regulator	0.2730422254
+UniRef50_UPI0003B59080: carbon storage regulator|unclassified	0.2730422254
+UniRef50_UPI0001850CC8: 3-oxoacyl-(acyl carrier protein) synthase II	0.2730400679
+UniRef50_UPI0001850CC8: 3-oxoacyl-(acyl carrier protein) synthase II|unclassified	0.2730400679
+UniRef50_D9QGA7	0.2729949379
+UniRef50_D9QGA7|unclassified	0.2729949379
+UniRef50_UPI000469ABBE: antirepressor	0.2729842703
+UniRef50_UPI000469ABBE: antirepressor|unclassified	0.2729842703
+UniRef50_UPI00036EF51E: hypothetical protein	0.2729782669
+UniRef50_UPI00036EF51E: hypothetical protein|unclassified	0.2729782669
+UniRef50_UPI0003B4B8B6: DNA polymerase III subunit beta	0.2729738318
+UniRef50_UPI0003B4B8B6: DNA polymerase III subunit beta|unclassified	0.2729738318
+UniRef50_R8AF48: DNA single-strand annealing protein (Fragment)	0.2729658947
+UniRef50_R8AF48: DNA single-strand annealing protein (Fragment)|unclassified	0.2729658947
+UniRef50_J3I8M6	0.2729527139
+UniRef50_J3I8M6|unclassified	0.2729527139
+UniRef50_UPI000467263F: hypothetical protein, partial	0.2729458703
+UniRef50_UPI000467263F: hypothetical protein, partial|unclassified	0.2729458703
+UniRef50_Q06473: Cytochrome c oxidase subunit 1	0.2729406080
+UniRef50_Q06473: Cytochrome c oxidase subunit 1|unclassified	0.2729406080
+UniRef50_UPI000474822F: isocitrate dehydrogenase	0.2729365287
+UniRef50_UPI000474822F: isocitrate dehydrogenase|unclassified	0.2729365287
+UniRef50_UPI000425885C: ABC transporter	0.2729331518
+UniRef50_UPI000425885C: ABC transporter|unclassified	0.2729331518
+UniRef50_Q0FZ33	0.2729266639
+UniRef50_Q0FZ33|unclassified	0.2729266639
+UniRef50_A0A037ZMP0	0.2729170464
+UniRef50_A0A037ZMP0|unclassified	0.2729170464
+UniRef50_Q20ZG4	0.2729168278
+UniRef50_Q20ZG4|unclassified	0.2729168278
+UniRef50_C5C0B4: NAD-dependent epimerase/dehydratase	0.2728771650
+UniRef50_C5C0B4: NAD-dependent epimerase/dehydratase|unclassified	0.2728771650
+UniRef50_K7UZS6	0.2728692857
+UniRef50_K7UZS6|unclassified	0.2728692857
+UniRef50_UPI0003B50607: MarR family transcriptional regulator, partial	0.2728590987
+UniRef50_UPI0003B50607: MarR family transcriptional regulator, partial|unclassified	0.2728590987
+UniRef50_UPI000373FA13: hypothetical protein	0.2727952006
+UniRef50_UPI000373FA13: hypothetical protein|unclassified	0.2727952006
+UniRef50_D5AV16: Cobalamin biosynthesis protein CobD	0.2727588136
+UniRef50_D5AV16: Cobalamin biosynthesis protein CobD|unclassified	0.2727588136
+UniRef50_UPI000477F71F: aldehyde dehydrogenase	0.2727536720
+UniRef50_UPI000477F71F: aldehyde dehydrogenase|unclassified	0.2727536720
+UniRef50_UPI000472BCFB: hypothetical protein, partial	0.2727475469
+UniRef50_UPI000472BCFB: hypothetical protein, partial|unclassified	0.2727475469
+UniRef50_UPI0003A5CBBE: hypothetical protein	0.2727369038
+UniRef50_UPI0003A5CBBE: hypothetical protein|unclassified	0.2727369038
+UniRef50_B5FR07: UPF0319 protein YccT	0.2727324255
+UniRef50_B5FR07: UPF0319 protein YccT|unclassified	0.2727324255
+UniRef50_C6RGK7	0.2726968621
+UniRef50_C6RGK7|unclassified	0.2726968621
+UniRef50_F0GHP6: Amino acid transporter (Fragment)	0.2726894544
+UniRef50_F0GHP6: Amino acid transporter (Fragment)|unclassified	0.2726894544
+UniRef50_UPI000412FD11: membrane protein	0.2726455204
+UniRef50_UPI000412FD11: membrane protein|unclassified	0.2726455204
+UniRef50_F3LJR3: Outer membrane protein YfgL (Fragment)	0.2726427282
+UniRef50_F3LJR3: Outer membrane protein YfgL (Fragment)|unclassified	0.2726427282
+UniRef50_UPI00036C2E03: hypothetical protein	0.2726403655
+UniRef50_UPI00036C2E03: hypothetical protein|unclassified	0.2726403655
+UniRef50_UPI00037B45B8: phosphoheptose isomerase	0.2726359309
+UniRef50_UPI00037B45B8: phosphoheptose isomerase|unclassified	0.2726359309
+UniRef50_UPI00037724A7: hypothetical protein	0.2726281352
+UniRef50_UPI00037724A7: hypothetical protein|unclassified	0.2726281352
+UniRef50_V7D6H1	0.2726266777
+UniRef50_V7D6H1|unclassified	0.2726266777
+UniRef50_UPI0003637298: hypothetical protein	0.2726238397
+UniRef50_UPI0003637298: hypothetical protein|unclassified	0.2726238397
+UniRef50_J9G6L9: Secreted protein	0.2726201719
+UniRef50_J9G6L9: Secreted protein|unclassified	0.2726201719
+UniRef50_UPI000471CC86: C4-dicarboxylate ABC transporter substrate-binding protein	0.2726120328
+UniRef50_UPI000471CC86: C4-dicarboxylate ABC transporter substrate-binding protein|unclassified	0.2726120328
+UniRef50_A0A016QTH6: Cobyrinic acid a,c-diamide synthase	0.2725848598
+UniRef50_A0A016QTH6: Cobyrinic acid a,c-diamide synthase|unclassified	0.2725848598
+UniRef50_L8DXI7: Putative RNA-binding protein ylmH	0.2725820565
+UniRef50_L8DXI7: Putative RNA-binding protein ylmH|unclassified	0.2725820565
+UniRef50_UPI0001E89E27: hypothetical protein	0.2725815693
+UniRef50_UPI0001E89E27: hypothetical protein|unclassified	0.2725815693
+UniRef50_Q0FND4	0.2725611979
+UniRef50_Q0FND4|unclassified	0.2725611979
+UniRef50_B3QD72	0.2725480400
+UniRef50_B3QD72|unclassified	0.2725480400
+UniRef50_A4WR43	0.2725150166
+UniRef50_A4WR43|unclassified	0.2725150166
+UniRef50_UPI0004708DD6: hypothetical protein	0.2724921183
+UniRef50_UPI0004708DD6: hypothetical protein|unclassified	0.2724921183
+UniRef50_UPI000466807B: hypothetical protein	0.2724641271
+UniRef50_UPI000466807B: hypothetical protein|unclassified	0.2724641271
+UniRef50_UPI0004763030: alpha/beta hydrolase	0.2724629755
+UniRef50_UPI0004763030: alpha/beta hydrolase|unclassified	0.2724629755
+UniRef50_UPI00036FA050: hypothetical protein	0.2724409931
+UniRef50_UPI00036FA050: hypothetical protein|unclassified	0.2724409931
+UniRef50_J7N582	0.2724206945
+UniRef50_J7N582|unclassified	0.2724206945
+UniRef50_Q9KC40: Activation of KinB in the initiation of sporulation	0.2724167047
+UniRef50_Q9KC40: Activation of KinB in the initiation of sporulation|unclassified	0.2724167047
+UniRef50_UPI000479DE62: hypothetical protein	0.2724139324
+UniRef50_UPI000479DE62: hypothetical protein|unclassified	0.2724139324
+UniRef50_UPI000377873D: hypothetical protein	0.2723748856
+UniRef50_UPI000377873D: hypothetical protein|unclassified	0.2723748856
+UniRef50_E5R4J9: Predicted protein	0.2723712772
+UniRef50_E5R4J9: Predicted protein|unclassified	0.2723712772
+UniRef50_A0A031MHQ0: Tail protein	0.2723667876
+UniRef50_A0A031MHQ0: Tail protein|unclassified	0.2723667876
+UniRef50_I9BG49: Diguanylate cyclase	0.2723582115
+UniRef50_I9BG49: Diguanylate cyclase|unclassified	0.2723582115
+UniRef50_UPI000262CE83: molybdopterin biosynthesis protein MoeB	0.2723417899
+UniRef50_UPI000262CE83: molybdopterin biosynthesis protein MoeB|unclassified	0.2723417899
+UniRef50_Q0C1A6: Glutamate--tRNA ligase 1	0.2723273063
+UniRef50_Q0C1A6: Glutamate--tRNA ligase 1|unclassified	0.2723273063
+UniRef50_Q31EK3: Putative Holliday junction resolvase	0.2722869132
+UniRef50_Q31EK3: Putative Holliday junction resolvase|unclassified	0.2722869132
+UniRef50_A4WUN6: ChaC family protein	0.2722829068
+UniRef50_A4WUN6: ChaC family protein|unclassified	0.2722829068
+UniRef50_UPI000316E573: hypothetical protein	0.2722785196
+UniRef50_UPI000316E573: hypothetical protein|unclassified	0.2722785196
+UniRef50_F3N0C1: Fructose repressor	0.2722617712
+UniRef50_F3N0C1: Fructose repressor|unclassified	0.2722617712
+UniRef50_E5SAI1: Putative C2 domain protein	0.2721829069
+UniRef50_E5SAI1: Putative C2 domain protein|unclassified	0.2721829069
+UniRef50_R0S9J4	0.2721802050
+UniRef50_R0S9J4|unclassified	0.2721802050
+UniRef50_UPI000219207D: competence protein ComGC	0.2721468764
+UniRef50_UPI000219207D: competence protein ComGC|unclassified	0.2721468764
+UniRef50_R6RYR2	0.2721273125
+UniRef50_R6RYR2|unclassified	0.2721273125
+UniRef50_D5VGV1: Peroxyureidoacrylate/ureidoacrylate amidohydrolase RutB	0.2721252241
+UniRef50_D5VGV1: Peroxyureidoacrylate/ureidoacrylate amidohydrolase RutB|unclassified	0.2721252241
+UniRef50_UPI00035E6D97: citrate lyase subunit beta	0.2720877069
+UniRef50_UPI00035E6D97: citrate lyase subunit beta|unclassified	0.2720877069
+UniRef50_S9P8Y7	0.2720818431
+UniRef50_S9P8Y7|unclassified	0.2720818431
+UniRef50_T4MUH1	0.2720661408
+UniRef50_T4MUH1|unclassified	0.2720661408
+UniRef50_W6V4Z4	0.2720660500
+UniRef50_W6V4Z4|unclassified	0.2720660500
+UniRef50_UPI000299E436: putative oxidase	0.2720313651
+UniRef50_UPI000299E436: putative oxidase|unclassified	0.2720313651
+UniRef50_UPI0003602B13: hypothetical protein	0.2720106930
+UniRef50_UPI0003602B13: hypothetical protein|unclassified	0.2720106930
+UniRef50_Q28NM7	0.2719931183
+UniRef50_Q28NM7|unclassified	0.2719931183
+UniRef50_C1F6L5	0.2719872576
+UniRef50_C1F6L5|unclassified	0.2719872576
+UniRef50_A5K6W0	0.2719608376
+UniRef50_A5K6W0|unclassified	0.2719608376
+UniRef50_A3VVV7	0.2719474389
+UniRef50_A3VVV7|unclassified	0.2719474389
+UniRef50_Q3AD50: Imidazole glycerol phosphate synthase subunit HisH	0.2719130981
+UniRef50_Q3AD50: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.2719130981
+UniRef50_G5MMR6: Putative lipoprotein	0.2719006106
+UniRef50_G5MMR6: Putative lipoprotein|unclassified	0.2719006106
+UniRef50_D2NSF8	0.2718944830
+UniRef50_D2NSF8|unclassified	0.2718944830
+UniRef50_UPI00037DAA6A: MULTISPECIES: hypothetical protein	0.2718538790
+UniRef50_UPI00037DAA6A: MULTISPECIES: hypothetical protein|unclassified	0.2718538790
+UniRef50_B2GI94: Elongation factor P	0.2718248156
+UniRef50_B2GI94: Elongation factor P|unclassified	0.2718248156
+UniRef50_A0A024JBN6: Similar to Saccharomyces cerevisiae YKR097W PCK1 Phosphoenolpyruvate carboxykinase, partial (Partial) (Fragment)	0.2718054974
+UniRef50_A0A024JBN6: Similar to Saccharomyces cerevisiae YKR097W PCK1 Phosphoenolpyruvate carboxykinase, partial (Partial) (Fragment)|unclassified	0.2718054974
+UniRef50_UPI000364B3FB: hypothetical protein	0.2718010498
+UniRef50_UPI000364B3FB: hypothetical protein|unclassified	0.2718010498
+UniRef50_UPI0003C18F39: PREDICTED: protein RRP5 homolog	0.2717959182
+UniRef50_UPI0003C18F39: PREDICTED: protein RRP5 homolog|unclassified	0.2717959182
+UniRef50_A7IPE6	0.2717640351
+UniRef50_A7IPE6|unclassified	0.2717640351
+UniRef50_UPI0001BF61FF: hypothetical protein SMAC_10357, partial	0.2717232003
+UniRef50_UPI0001BF61FF: hypothetical protein SMAC_10357, partial|unclassified	0.2717232003
+UniRef50_Q0AMH8: UPF0301 protein Mmar10_2223	0.2717128064
+UniRef50_Q0AMH8: UPF0301 protein Mmar10_2223|unclassified	0.2717128064
+UniRef50_A3PP83	0.2717036791
+UniRef50_A3PP83|unclassified	0.2717036791
+UniRef50_F0SEF6: Transcriptional regulator, BadM/Rrf2 family	0.2716859635
+UniRef50_F0SEF6: Transcriptional regulator, BadM/Rrf2 family|unclassified	0.2716859635
+UniRef50_W8S5E9: ATP synthase protein I2	0.2716826504
+UniRef50_W8S5E9: ATP synthase protein I2|unclassified	0.2716826504
+UniRef50_UPI000255D460: deoxyribodipyrimidine photo-lyase	0.2716777353
+UniRef50_UPI000255D460: deoxyribodipyrimidine photo-lyase|unclassified	0.2716777353
+UniRef50_UPI000368B6A3: hypothetical protein, partial	0.2716702084
+UniRef50_UPI000368B6A3: hypothetical protein, partial|unclassified	0.2716702084
+UniRef50_Q98A81: Serine hydroxymethyltransferase 2	0.2716567998
+UniRef50_Q98A81: Serine hydroxymethyltransferase 2|unclassified	0.2716567998
+UniRef50_J0AYY3: Tripartite ATP-independent periplasmic transporter DctQ	0.2716423695
+UniRef50_J0AYY3: Tripartite ATP-independent periplasmic transporter DctQ|unclassified	0.2716423695
+UniRef50_N4WAZ5: Competence protein comGc-like protein	0.2716366601
+UniRef50_N4WAZ5: Competence protein comGc-like protein|unclassified	0.2716366601
+UniRef50_UPI000479D297: chemotaxis protein CheY	0.2716294084
+UniRef50_UPI000479D297: chemotaxis protein CheY|unclassified	0.2716294084
+UniRef50_Q59091: 3-oxoadipate CoA-transferase subunit B	0.2716213624
+UniRef50_Q59091: 3-oxoadipate CoA-transferase subunit B|unclassified	0.2716213624
+UniRef50_I4W9U8: Secretion protein HlyD family protein (Fragment)	0.2716115049
+UniRef50_I4W9U8: Secretion protein HlyD family protein (Fragment)|unclassified	0.2716115049
+UniRef50_A9GW65: Putative secreted protein	0.2715876843
+UniRef50_A9GW65: Putative secreted protein|unclassified	0.2715876843
+UniRef50_Q890Q5: Adenylate kinase	0.2715080587
+UniRef50_Q890Q5: Adenylate kinase|unclassified	0.2715080587
+UniRef50_UPI000328B79C: PREDICTED: basic proline-rich protein-like	0.2714477098
+UniRef50_UPI000328B79C: PREDICTED: basic proline-rich protein-like|unclassified	0.2714477098
+UniRef50_A1A270	0.2714047134
+UniRef50_A1A270|unclassified	0.2714047134
+UniRef50_UPI000361CE2F: hypothetical protein	0.2713844270
+UniRef50_UPI000361CE2F: hypothetical protein|unclassified	0.2713844270
+UniRef50_B0TQM3: 3-isopropylmalate dehydratase small subunit	0.2713837577
+UniRef50_B0TQM3: 3-isopropylmalate dehydratase small subunit|unclassified	0.2713837577
+UniRef50_M1FVA5: Replication protein	0.2713681790
+UniRef50_M1FVA5: Replication protein|unclassified	0.2713681790
+UniRef50_K8NVT8: Diguanylate cyclase (GGDEF) domain-containing protein	0.2713584273
+UniRef50_K8NVT8: Diguanylate cyclase (GGDEF) domain-containing protein|unclassified	0.2713584273
+UniRef50_UPI000418FC9B: biotin attachment protein	0.2713553196
+UniRef50_UPI000418FC9B: biotin attachment protein|unclassified	0.2713553196
+UniRef50_A0A017HJW3	0.2713328689
+UniRef50_A0A017HJW3|unclassified	0.2713328689
+UniRef50_UPI0004694768: hypothetical protein	0.2713325004
+UniRef50_UPI0004694768: hypothetical protein|unclassified	0.2713325004
+UniRef50_UPI0004711EBE: hypothetical protein, partial	0.2713205235
+UniRef50_UPI0004711EBE: hypothetical protein, partial|unclassified	0.2713205235
+UniRef50_UPI0003B72D59: GreA/GreB family elongation factor	0.2713046098
+UniRef50_UPI0003B72D59: GreA/GreB family elongation factor|unclassified	0.2713046098
+UniRef50_UPI0003729725: MULTISPECIES: hypothetical protein	0.2713045738
+UniRef50_UPI0003729725: MULTISPECIES: hypothetical protein|unclassified	0.2713045738
+UniRef50_Q8F6I3: Phosphoribosylformylglycinamidine synthase 2	0.2712964217
+UniRef50_Q8F6I3: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.2712964217
+UniRef50_V4LLI5	0.2712947473
+UniRef50_V4LLI5|unclassified	0.2712947473
+UniRef50_UPI0002ECBFBC: hypothetical protein	0.2712733941
+UniRef50_UPI0002ECBFBC: hypothetical protein|unclassified	0.2712733941
+UniRef50_C1N3Q1: Predicted protein	0.2712614181
+UniRef50_C1N3Q1: Predicted protein|unclassified	0.2712614181
+UniRef50_UPI0003676942: hypothetical protein	0.2712605034
+UniRef50_UPI0003676942: hypothetical protein|unclassified	0.2712605034
+UniRef50_A3PHF8	0.2712588903
+UniRef50_A3PHF8|unclassified	0.2712588903
+UniRef50_K0PLR6: Plasmid pSYMA complete sequence	0.2712258985
+UniRef50_K0PLR6: Plasmid pSYMA complete sequence|unclassified	0.2712258985
+UniRef50_I3GYQ4	0.2712232167
+UniRef50_I3GYQ4|g__Staphylococcus.s__Staphylococcus_aureus	0.2712232167
+UniRef50_UPI000464C485: peptide ABC transporter permease	0.2711915956
+UniRef50_UPI000464C485: peptide ABC transporter permease|unclassified	0.2711915956
+UniRef50_C9YMH6	0.2711842312
+UniRef50_C9YMH6|unclassified	0.2711842312
+UniRef50_Q3KFU0	0.2711835252
+UniRef50_Q3KFU0|unclassified	0.2711835252
+UniRef50_UPI00016C4069: transporter	0.2711813259
+UniRef50_UPI00016C4069: transporter|unclassified	0.2711813259
+UniRef50_L1LXY7: Thioredoxin domain-containing protein	0.2711544358
+UniRef50_L1LXY7: Thioredoxin domain-containing protein|unclassified	0.2711544358
+UniRef50_UPI00030E1E33: hypothetical protein	0.2711190869
+UniRef50_UPI00030E1E33: hypothetical protein|unclassified	0.2711190869
+UniRef50_UPI00045D5AD2: PREDICTED: synapsin-1-like	0.2710759536
+UniRef50_UPI00045D5AD2: PREDICTED: synapsin-1-like|unclassified	0.2710759536
+UniRef50_Q2GDJ8: NADH-quinone oxidoreductase subunit D	0.2710512609
+UniRef50_Q2GDJ8: NADH-quinone oxidoreductase subunit D|unclassified	0.2710512609
+UniRef50_F5ZLH1	0.2710204291
+UniRef50_F5ZLH1|unclassified	0.2710204291
+UniRef50_Q5WDV0: Mannitol-1-phosphate 5-dehydrogenase	0.2710123062
+UniRef50_Q5WDV0: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.2710123062
+UniRef50_S0J7L8	0.2709596482
+UniRef50_S0J7L8|unclassified	0.2709596482
+UniRef50_Q0SK18	0.2709506164
+UniRef50_Q0SK18|unclassified	0.2709506164
+UniRef50_Q7KS14: CG6695, isoform B	0.2709499933
+UniRef50_Q7KS14: CG6695, isoform B|unclassified	0.2709499933
+UniRef50_P11045: Dihydrofolate reductase	0.2709365048
+UniRef50_P11045: Dihydrofolate reductase|unclassified	0.2709365048
+UniRef50_J0HD17	0.2709342602
+UniRef50_J0HD17|unclassified	0.2709342602
+UniRef50_Q1N9Q9	0.2708930461
+UniRef50_Q1N9Q9|unclassified	0.2708930461
+UniRef50_UPI00037EEA47: hypothetical protein	0.2708786547
+UniRef50_UPI00037EEA47: hypothetical protein|unclassified	0.2708786547
+UniRef50_X1SCX4: Marine sediment metagenome DNA, contig: S12H4_S08631 (Fragment)	0.2708723977
+UniRef50_X1SCX4: Marine sediment metagenome DNA, contig: S12H4_S08631 (Fragment)|unclassified	0.2708723977
+UniRef50_V9GEY6: Selenophosphate-dependent tRNA 2-selenouridine synthase	0.2708412376
+UniRef50_V9GEY6: Selenophosphate-dependent tRNA 2-selenouridine synthase|unclassified	0.2708412376
+UniRef50_UPI00016AF4F1: ABC-transporter, partial	0.2708372231
+UniRef50_UPI00016AF4F1: ABC-transporter, partial|unclassified	0.2708372231
+UniRef50_M3HZS8	0.2708354738
+UniRef50_M3HZS8|unclassified	0.2708354738
+UniRef50_A8FUS8: Ribonuclease H	0.2708322570
+UniRef50_A8FUS8: Ribonuclease H|unclassified	0.2708322570
+UniRef50_B5EX72: Xylose isomerase	0.2708000623
+UniRef50_B5EX72: Xylose isomerase|unclassified	0.2708000623
+UniRef50_T4VQP1: Rhodanese-like domain protein	0.2707839198
+UniRef50_T4VQP1: Rhodanese-like domain protein|unclassified	0.2707839198
+UniRef50_K0N9U4	0.2707765466
+UniRef50_K0N9U4|unclassified	0.2707765466
+UniRef50_X1E382: Marine sediment metagenome DNA, contig: S03H2_C02340 (Fragment)	0.2707563553
+UniRef50_X1E382: Marine sediment metagenome DNA, contig: S03H2_C02340 (Fragment)|unclassified	0.2707563553
+UniRef50_D0ZD34	0.2707398790
+UniRef50_D0ZD34|unclassified	0.2707398790
+UniRef50_F7QRG4: Glyoxalase family protein	0.2707359031
+UniRef50_F7QRG4: Glyoxalase family protein|unclassified	0.2707359031
+UniRef50_A4IAV0: Proteophosphoglycan 5	0.2707313236
+UniRef50_A4IAV0: Proteophosphoglycan 5|unclassified	0.2707313236
+UniRef50_UPI0004771479: hypothetical protein, partial	0.2707277636
+UniRef50_UPI0004771479: hypothetical protein, partial|unclassified	0.2707277636
+UniRef50_Q8DHS3: Acyl carrier protein	0.2707275947
+UniRef50_Q8DHS3: Acyl carrier protein|unclassified	0.2707275947
+UniRef50_UPI0003A26981: hypothetical protein	0.2706836766
+UniRef50_UPI0003A26981: hypothetical protein|unclassified	0.2706836766
+UniRef50_UPI000464F14D: hypothetical protein	0.2706692461
+UniRef50_UPI000464F14D: hypothetical protein|unclassified	0.2706692461
+UniRef50_G7DHM9	0.2706618909
+UniRef50_G7DHM9|unclassified	0.2706618909
+UniRef50_A0A017HTW4: ChaC-like protein	0.2706601675
+UniRef50_A0A017HTW4: ChaC-like protein|unclassified	0.2706601675
+UniRef50_C0P5D7	0.2706313908
+UniRef50_C0P5D7|unclassified	0.2706313908
+UniRef50_UPI00045EC4A2: ABC transporter permease	0.2706272562
+UniRef50_UPI00045EC4A2: ABC transporter permease|unclassified	0.2706272562
+UniRef50_W2BTX5: Major tail protein, phi13 domain protein	0.2706217530
+UniRef50_W2BTX5: Major tail protein, phi13 domain protein|unclassified	0.2706217530
+UniRef50_B2S842: Porphobilinogen deaminase	0.2705930277
+UniRef50_B2S842: Porphobilinogen deaminase|unclassified	0.2705930277
+UniRef50_UPI0002743186	0.2705897262
+UniRef50_UPI0002743186|unclassified	0.2705897262
+UniRef50_UPI00026CCAA9: ferripyochelin-binding protein	0.2705644572
+UniRef50_UPI00026CCAA9: ferripyochelin-binding protein|unclassified	0.2705644572
+UniRef50_G6XX97: Putative NAD-specific glutamate dehydrogenase	0.2705613810
+UniRef50_G6XX97: Putative NAD-specific glutamate dehydrogenase|unclassified	0.2705613810
+UniRef50_UPI00047CA4F9: hypothetical protein	0.2705493749
+UniRef50_UPI00047CA4F9: hypothetical protein|unclassified	0.2705493749
+UniRef50_W7N1Q3	0.2705395447
+UniRef50_W7N1Q3|unclassified	0.2705395447
+UniRef50_Q94I86	0.2705314934
+UniRef50_Q94I86|unclassified	0.2705314934
+UniRef50_UPI000359E86E: PREDICTED: protein hairless	0.2705236562
+UniRef50_UPI000359E86E: PREDICTED: protein hairless|unclassified	0.2705236562
+UniRef50_G9AAG5	0.2705111576
+UniRef50_G9AAG5|unclassified	0.2705111576
+UniRef50_D7HWM3: Acetyl-CoA carboxylase alpha subunit	0.2705086132
+UniRef50_D7HWM3: Acetyl-CoA carboxylase alpha subunit|unclassified	0.2705086132
+UniRef50_UPI00035FEE6E: hypothetical protein	0.2705082028
+UniRef50_UPI00035FEE6E: hypothetical protein|unclassified	0.2705082028
+UniRef50_W8T0Q2	0.2704797028
+UniRef50_W8T0Q2|unclassified	0.2704797028
+UniRef50_F6AYB7: Lipoprotein	0.2704618281
+UniRef50_F6AYB7: Lipoprotein|unclassified	0.2704618281
+UniRef50_UPI000369505E: hypothetical protein	0.2704525699
+UniRef50_UPI000369505E: hypothetical protein|unclassified	0.2704525699
+UniRef50_UPI00037134C7: hypothetical protein	0.2704392489
+UniRef50_UPI00037134C7: hypothetical protein|unclassified	0.2704392489
+UniRef50_A0A059LE43	0.2704389675
+UniRef50_A0A059LE43|unclassified	0.2704389675
+UniRef50_S6NQT5	0.2704382252
+UniRef50_S6NQT5|unclassified	0.2704382252
+UniRef50_UPI000375DCF8: hypothetical protein, partial	0.2704215995
+UniRef50_UPI000375DCF8: hypothetical protein, partial|unclassified	0.2704215995
+UniRef50_H6SL17	0.2704147666
+UniRef50_H6SL17|unclassified	0.2704147666
+UniRef50_R7VFK0	0.2704085525
+UniRef50_R7VFK0|unclassified	0.2704085525
+UniRef50_UPI0001D5420A: PREDICTED: hypothetical protein LOC100423915	0.2704085479
+UniRef50_UPI0001D5420A: PREDICTED: hypothetical protein LOC100423915|unclassified	0.2704085479
+UniRef50_S5SES8	0.2703996756
+UniRef50_S5SES8|unclassified	0.2703996756
+UniRef50_P12288: Protein usg	0.2703795542
+UniRef50_P12288: Protein usg|unclassified	0.2703795542
+UniRef50_UPI00046E73D5: peptidase M16	0.2703770030
+UniRef50_UPI00046E73D5: peptidase M16|unclassified	0.2703770030
+UniRef50_Q4VRV8-2: Isoform TgIMPDH-S of Inosine-5'-monophosphate dehydrogenase	0.2703727736
+UniRef50_Q4VRV8-2: Isoform TgIMPDH-S of Inosine-5'-monophosphate dehydrogenase|unclassified	0.2703727736
+UniRef50_UPI000362D7F9: hypothetical protein	0.2703613260
+UniRef50_UPI000362D7F9: hypothetical protein|unclassified	0.2703613260
+UniRef50_UPI00036A764A: hypothetical protein	0.2703602339
+UniRef50_UPI00036A764A: hypothetical protein|unclassified	0.2703602339
+UniRef50_A3VGB9: Sugar ABC transporter, periplasmic sugar-binding protein (Fragment)	0.2703506786
+UniRef50_A3VGB9: Sugar ABC transporter, periplasmic sugar-binding protein (Fragment)|unclassified	0.2703506786
+UniRef50_UPI00040A54C7: cobalt transporter ATP-binding subunit	0.2703225653
+UniRef50_UPI00040A54C7: cobalt transporter ATP-binding subunit|unclassified	0.2703225653
+UniRef50_UPI000255BEE2: transcriptional activator, partial	0.2703120634
+UniRef50_UPI000255BEE2: transcriptional activator, partial|unclassified	0.2703120634
+UniRef50_L1Q6E2	0.2703111581
+UniRef50_L1Q6E2|unclassified	0.2703111581
+UniRef50_S6CZ78: Heat shock protein HSP20	0.2703051285
+UniRef50_S6CZ78: Heat shock protein HSP20|unclassified	0.2703051285
+UniRef50_UPI000370F363: hypothetical protein	0.2703045256
+UniRef50_UPI000370F363: hypothetical protein|unclassified	0.2703045256
+UniRef50_I1Y0E1	0.2702686882
+UniRef50_I1Y0E1|unclassified	0.2702686882
+UniRef50_S8D0L2	0.2702656436
+UniRef50_S8D0L2|unclassified	0.2702656436
+UniRef50_K1ZDA5	0.2702655769
+UniRef50_K1ZDA5|unclassified	0.2702655769
+UniRef50_UPI00037F4C0B: hypothetical protein	0.2702494817
+UniRef50_UPI00037F4C0B: hypothetical protein|unclassified	0.2702494817
+UniRef50_B4U7T6: Acyl carrier protein	0.2702484543
+UniRef50_B4U7T6: Acyl carrier protein|unclassified	0.2702484543
+UniRef50_Q3JP97	0.2702114036
+UniRef50_Q3JP97|unclassified	0.2702114036
+UniRef50_A0A027NJF2	0.2702031784
+UniRef50_A0A027NJF2|unclassified	0.2702031784
+UniRef50_UPI0004792BB7: cell division protein FtsL	0.2701646238
+UniRef50_UPI0004792BB7: cell division protein FtsL|unclassified	0.2701646238
+UniRef50_X8B574: PPE10 domain protein	0.2701054851
+UniRef50_X8B574: PPE10 domain protein|unclassified	0.2701054851
+UniRef50_D4DW15: Antirestriction protein	0.2701039582
+UniRef50_D4DW15: Antirestriction protein|unclassified	0.2701039582
+UniRef50_K5YP99: AsnC family transcriptional regulator	0.2700712815
+UniRef50_K5YP99: AsnC family transcriptional regulator|unclassified	0.2700712815
+UniRef50_W4TXB3: NADH-ubiquinone oxidoreductase	0.2700614804
+UniRef50_W4TXB3: NADH-ubiquinone oxidoreductase|unclassified	0.2700614804
+UniRef50_K1E310: FAD dependent oxidoreductase	0.2700544148
+UniRef50_K1E310: FAD dependent oxidoreductase|unclassified	0.2700544148
+UniRef50_K8WD83	0.2700538698
+UniRef50_K8WD83|unclassified	0.2700538698
+UniRef50_A0A011PV12: Sulfite exporter TauE/SafE	0.2700474936
+UniRef50_A0A011PV12: Sulfite exporter TauE/SafE|unclassified	0.2700474936
+UniRef50_UPI000380CF2F: hypothetical protein	0.2700372521
+UniRef50_UPI000380CF2F: hypothetical protein|unclassified	0.2700372521
+UniRef50_UPI0003689627: MULTISPECIES: 50S ribosomal protein L17	0.2700009349
+UniRef50_UPI0003689627: MULTISPECIES: 50S ribosomal protein L17|unclassified	0.2700009349
+UniRef50_UPI000479578E: dTDP-4-dehydrorhamnose 3,5-epimerase	0.2699835943
+UniRef50_UPI000479578E: dTDP-4-dehydrorhamnose 3,5-epimerase|unclassified	0.2699835943
+UniRef50_Q0QLF3: Nicotinate dehydrogenase small FeS subunit	0.2699515944
+UniRef50_Q0QLF3: Nicotinate dehydrogenase small FeS subunit|unclassified	0.2699515944
+UniRef50_B7J648: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.2699311515
+UniRef50_B7J648: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.2699311515
+UniRef50_Q8EN78: Ribose-5-phosphate isomerase A 1	0.2699296307
+UniRef50_Q8EN78: Ribose-5-phosphate isomerase A 1|unclassified	0.2699296307
+UniRef50_R0X5R6	0.2699093627
+UniRef50_R0X5R6|unclassified	0.2699093627
+UniRef50_K0TJC2	0.2698997357
+UniRef50_K0TJC2|unclassified	0.2698997357
+UniRef50_UPI00037341E7: hypothetical protein	0.2698985429
+UniRef50_UPI00037341E7: hypothetical protein|unclassified	0.2698985429
+UniRef50_K8B033	0.2698968160
+UniRef50_K8B033|unclassified	0.2698968160
+UniRef50_B9QJX3	0.2698963483
+UniRef50_B9QJX3|unclassified	0.2698963483
+UniRef50_B8IYG6: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.2698797877
+UniRef50_B8IYG6: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.2698797877
+UniRef50_E5V5A1	0.2698438856
+UniRef50_E5V5A1|unclassified	0.2698438856
+UniRef50_UPI000303013C: hypothetical protein	0.2698286554
+UniRef50_UPI000303013C: hypothetical protein|unclassified	0.2698286554
+UniRef50_L0BK20: Glucose starvation-inducible protein B General stress protein B	0.2698193877
+UniRef50_L0BK20: Glucose starvation-inducible protein B General stress protein B|unclassified	0.2698193877
+UniRef50_UPI0003B6E09E: ABC transporter	0.2698151860
+UniRef50_UPI0003B6E09E: ABC transporter|unclassified	0.2698151860
+UniRef50_UPI00047C4591: hypothetical protein	0.2697981145
+UniRef50_UPI00047C4591: hypothetical protein|unclassified	0.2697981145
+UniRef50_UPI0002F008CE: hypothetical protein	0.2697762116
+UniRef50_UPI0002F008CE: hypothetical protein|unclassified	0.2697762116
+UniRef50_UPI0003B33A16: PREDICTED: monofunctional C1-tetrahydrofolate synthase, mitochondrial-like, partial	0.2697656222
+UniRef50_UPI0003B33A16: PREDICTED: monofunctional C1-tetrahydrofolate synthase, mitochondrial-like, partial|unclassified	0.2697656222
+UniRef50_UPI0003B630A4: flagellar biosynthesis protein FliP, partial	0.2697631337
+UniRef50_UPI0003B630A4: flagellar biosynthesis protein FliP, partial|unclassified	0.2697631337
+UniRef50_X7YJE3	0.2697620295
+UniRef50_X7YJE3|unclassified	0.2697620295
+UniRef50_H3VI79	0.2697267053
+UniRef50_H3VI79|unclassified	0.2697267053
+UniRef50_S9Q8L7: XdhC protein (Assists in molybdopterin insertion into xanthine dehydrogenase)	0.2697244216
+UniRef50_S9Q8L7: XdhC protein (Assists in molybdopterin insertion into xanthine dehydrogenase)|unclassified	0.2697244216
+UniRef50_UPI0004747205: hypothetical protein	0.2697230905
+UniRef50_UPI0004747205: hypothetical protein|unclassified	0.2697230905
+UniRef50_X0SNQ0: Marine sediment metagenome DNA, contig: S01H1_L00377	0.2697226991
+UniRef50_X0SNQ0: Marine sediment metagenome DNA, contig: S01H1_L00377|unclassified	0.2697226991
+UniRef50_UPI0003B6DF37: phosphoenolpyruvate-protein phosphotransferase	0.2696893619
+UniRef50_UPI0003B6DF37: phosphoenolpyruvate-protein phosphotransferase|unclassified	0.2696893619
+UniRef50_UPI00035F8564: hypothetical protein	0.2696718281
+UniRef50_UPI00035F8564: hypothetical protein|unclassified	0.2696718281
+UniRef50_UPI0002E2718E: hypothetical protein	0.2696437069
+UniRef50_UPI0002E2718E: hypothetical protein|unclassified	0.2696437069
+UniRef50_UPI0004785010: exodeoxyribonuclease III	0.2696300254
+UniRef50_UPI0004785010: exodeoxyribonuclease III|unclassified	0.2696300254
+UniRef50_F0XWK7: Expressed protein (Fragment)	0.2696185798
+UniRef50_F0XWK7: Expressed protein (Fragment)|unclassified	0.2696185798
+UniRef50_A8AQZ6	0.2696085139
+UniRef50_A8AQZ6|unclassified	0.2696085139
+UniRef50_UPI00037C3716: hypothetical protein	0.2695954112
+UniRef50_UPI00037C3716: hypothetical protein|unclassified	0.2695954112
+UniRef50_UPI0004121BBA: molecular chaperone DnaJ	0.2695856871
+UniRef50_UPI0004121BBA: molecular chaperone DnaJ|unclassified	0.2695856871
+UniRef50_UPI00045E9718: arabinose isomerase	0.2695818942
+UniRef50_UPI00045E9718: arabinose isomerase|unclassified	0.2695818942
+UniRef50_R7IF37	0.2695546946
+UniRef50_R7IF37|unclassified	0.2695546946
+UniRef50_Q1GX56	0.2695464781
+UniRef50_Q1GX56|unclassified	0.2695464781
+UniRef50_E3EYW7	0.2695393389
+UniRef50_E3EYW7|unclassified	0.2695393389
+UniRef50_UPI0003B32207: adenosylcobinamide kinase	0.2695170407
+UniRef50_UPI0003B32207: adenosylcobinamide kinase|unclassified	0.2695170407
+UniRef50_Q4UU43: Imidazole glycerol phosphate synthase subunit HisH	0.2695019506
+UniRef50_Q4UU43: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.2695019506
+UniRef50_E4TQ46	0.2694448899
+UniRef50_E4TQ46|unclassified	0.2694448899
+UniRef50_UPI000314C40B: hypothetical protein	0.2694409863
+UniRef50_UPI000314C40B: hypothetical protein|unclassified	0.2694409863
+UniRef50_Q8D2W0: Bifunctional protein FolD	0.2694257237
+UniRef50_Q8D2W0: Bifunctional protein FolD|unclassified	0.2694257237
+UniRef50_UPI0001B43F6F: glycerol 3 phosphate dehydrogenase, partial	0.2694078025
+UniRef50_UPI0001B43F6F: glycerol 3 phosphate dehydrogenase, partial|unclassified	0.2694078025
+UniRef50_UPI00037451EF: hypothetical protein	0.2693995387
+UniRef50_UPI00037451EF: hypothetical protein|unclassified	0.2693995387
+UniRef50_I7F2J7	0.2693620748
+UniRef50_I7F2J7|unclassified	0.2693620748
+UniRef50_UPI0004729065: membrane protein	0.2693525493
+UniRef50_UPI0004729065: membrane protein|unclassified	0.2693525493
+UniRef50_UPI0004704A21: hypothetical protein	0.2693370181
+UniRef50_UPI0004704A21: hypothetical protein|unclassified	0.2693370181
+UniRef50_UPI0003B46D5A: GntR family transcriptional regulator	0.2692859052
+UniRef50_UPI0003B46D5A: GntR family transcriptional regulator|unclassified	0.2692859052
+UniRef50_UPI0003613988: hypothetical protein	0.2692719775
+UniRef50_UPI0003613988: hypothetical protein|unclassified	0.2692719775
+UniRef50_F6CJZ1: Redox-active disulfide protein 2	0.2692576770
+UniRef50_F6CJZ1: Redox-active disulfide protein 2|unclassified	0.2692576770
+UniRef50_UPI0003B4BD8A: Ktr system potassium transporter B	0.2692542671
+UniRef50_UPI0003B4BD8A: Ktr system potassium transporter B|unclassified	0.2692542671
+UniRef50_E1Z3X5	0.2692514809
+UniRef50_E1Z3X5|unclassified	0.2692514809
+UniRef50_Q30PY0: Imidazole glycerol phosphate synthase subunit HisH	0.2692407939
+UniRef50_Q30PY0: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.2692407939
+UniRef50_UPI0003B4C042: transcriptional regulator	0.2692091407
+UniRef50_UPI0003B4C042: transcriptional regulator|unclassified	0.2692091407
+UniRef50_F7VGT6	0.2691770032
+UniRef50_F7VGT6|unclassified	0.2691770032
+UniRef50_UPI0004753AD8: 5-formyltetrahydrofolate cyclo-ligase, partial	0.2691245911
+UniRef50_UPI0004753AD8: 5-formyltetrahydrofolate cyclo-ligase, partial|unclassified	0.2691245911
+UniRef50_UPI00026251C6: phosphate-starvation-inducible E	0.2690980777
+UniRef50_UPI00026251C6: phosphate-starvation-inducible E|unclassified	0.2690980777
+UniRef50_H3H4A8	0.2690972988
+UniRef50_H3H4A8|unclassified	0.2690972988
+UniRef50_W4QQ98	0.2690944311
+UniRef50_W4QQ98|unclassified	0.2690944311
+UniRef50_G2L5M3	0.2690934234
+UniRef50_G2L5M3|unclassified	0.2690934234
+UniRef50_UPI0004735E92: hypothetical protein	0.2690846702
+UniRef50_UPI0004735E92: hypothetical protein|unclassified	0.2690846702
+UniRef50_G8VI88: Molybdopterin-guanine dinucleotide biosynthesis protein A	0.2690493621
+UniRef50_G8VI88: Molybdopterin-guanine dinucleotide biosynthesis protein A|unclassified	0.2690493621
+UniRef50_P16524: Putative N-acetyl-LL-diaminopimelate aminotransferase	0.2690377276
+UniRef50_P16524: Putative N-acetyl-LL-diaminopimelate aminotransferase|unclassified	0.2690377276
+UniRef50_I4CXY6: Type 4 fimbrial biogenesis protein PilP	0.2690342991
+UniRef50_I4CXY6: Type 4 fimbrial biogenesis protein PilP|unclassified	0.2690342991
+UniRef50_UPI000360241C: hypothetical protein	0.2690318814
+UniRef50_UPI000360241C: hypothetical protein|unclassified	0.2690318814
+UniRef50_D7FHZ0	0.2689887417
+UniRef50_D7FHZ0|unclassified	0.2689887417
+UniRef50_UPI00026C8BCD: two-component response transcriptional regulator	0.2689669071
+UniRef50_UPI00026C8BCD: two-component response transcriptional regulator|unclassified	0.2689669071
+UniRef50_UPI0001D554A4: PREDICTED: hypothetical protein LOC716487	0.2689593632
+UniRef50_UPI0001D554A4: PREDICTED: hypothetical protein LOC716487|unclassified	0.2689593632
+UniRef50_I3UG87: ABC transporter	0.2689587335
+UniRef50_I3UG87: ABC transporter|unclassified	0.2689587335
+UniRef50_S6PAP7	0.2689397649
+UniRef50_S6PAP7|unclassified	0.2689397649
+UniRef50_UPI000366F4F8: hypothetical protein	0.2689350728
+UniRef50_UPI000366F4F8: hypothetical protein|unclassified	0.2689350728
+UniRef50_X2N359	0.2689030925
+UniRef50_X2N359|unclassified	0.2689030925
+UniRef50_G4RAM0	0.2689020064
+UniRef50_G4RAM0|unclassified	0.2689020064
+UniRef50_UPI0003EAABA8: PREDICTED: argininosuccinate lyase-like	0.2688833512
+UniRef50_UPI0003EAABA8: PREDICTED: argininosuccinate lyase-like|unclassified	0.2688833512
+UniRef50_UPI000360EB76: hypothetical protein, partial	0.2688771959
+UniRef50_UPI000360EB76: hypothetical protein, partial|unclassified	0.2688771959
+UniRef50_UPI0003B3DE81: thiamine pyrophosphokinase	0.2688430852
+UniRef50_UPI0003B3DE81: thiamine pyrophosphokinase|unclassified	0.2688430852
+UniRef50_UPI000262CBE2: tRNA 2-selenouridine synthase	0.2688417585
+UniRef50_UPI000262CBE2: tRNA 2-selenouridine synthase|unclassified	0.2688417585
+UniRef50_UPI0004656B3D: hypothetical protein, partial	0.2688294254
+UniRef50_UPI0004656B3D: hypothetical protein, partial|unclassified	0.2688294254
+UniRef50_D3VFL1	0.2687850734
+UniRef50_D3VFL1|unclassified	0.2687850734
+UniRef50_UPI0001D2D3B2: lytic transglycosylase	0.2687680852
+UniRef50_UPI0001D2D3B2: lytic transglycosylase|unclassified	0.2687680852
+UniRef50_UPI00037B32F5: hypothetical protein, partial	0.2687389684
+UniRef50_UPI00037B32F5: hypothetical protein, partial|unclassified	0.2687389684
+UniRef50_W8S0N6	0.2687298539
+UniRef50_W8S0N6|unclassified	0.2687298539
+UniRef50_UPI0004638FB0: multidrug ABC transporter ATP-binding protein	0.2687111511
+UniRef50_UPI0004638FB0: multidrug ABC transporter ATP-binding protein|unclassified	0.2687111511
+UniRef50_UPI00036F264D: imidazole glycerol phosphate synthase	0.2686915650
+UniRef50_UPI00036F264D: imidazole glycerol phosphate synthase|unclassified	0.2686915650
+UniRef50_UPI0003B779BE: spermidine/putrescine ABC transporter permease, partial	0.2686808486
+UniRef50_UPI0003B779BE: spermidine/putrescine ABC transporter permease, partial|unclassified	0.2686808486
+UniRef50_UPI0003D0BA23: PREDICTED: nitrilase homolog 1	0.2686677283
+UniRef50_UPI0003D0BA23: PREDICTED: nitrilase homolog 1|unclassified	0.2686677283
+UniRef50_UPI000465BD7B: hypothetical protein	0.2686510372
+UniRef50_UPI000465BD7B: hypothetical protein|unclassified	0.2686510372
+UniRef50_A0A014RM19: Putative transport protein	0.2686393592
+UniRef50_A0A014RM19: Putative transport protein|unclassified	0.2686393592
+UniRef50_F4FDU4	0.2686126952
+UniRef50_F4FDU4|unclassified	0.2686126952
+UniRef50_G6DP02	0.2686092589
+UniRef50_G6DP02|unclassified	0.2686092589
+UniRef50_UPI000345DC68: hypothetical protein	0.2685802835
+UniRef50_UPI000345DC68: hypothetical protein|unclassified	0.2685802835
+UniRef50_UPI00047709AD: multidrug transporter	0.2685063557
+UniRef50_UPI00047709AD: multidrug transporter|unclassified	0.2685063557
+UniRef50_UPI00036C1C78: hypothetical protein	0.2684654417
+UniRef50_UPI00036C1C78: hypothetical protein|unclassified	0.2684654417
+UniRef50_R5DEA1: Chaperone protein DnaJ	0.2684024193
+UniRef50_R5DEA1: Chaperone protein DnaJ|unclassified	0.2684024193
+UniRef50_B0RUI2: 4-hydroxythreonine-4-phosphate dehydrogenase	0.2683883427
+UniRef50_B0RUI2: 4-hydroxythreonine-4-phosphate dehydrogenase|unclassified	0.2683883427
+UniRef50_F7Y080	0.2683519292
+UniRef50_F7Y080|unclassified	0.2683519292
+UniRef50_W2SX73	0.2683434208
+UniRef50_W2SX73|unclassified	0.2683434208
+UniRef50_UPI0003B60C69: translation factor Sua5	0.2683420655
+UniRef50_UPI0003B60C69: translation factor Sua5|unclassified	0.2683420655
+UniRef50_UPI000303A9D6: peptide ABC transporter substrate-binding protein	0.2683412877
+UniRef50_UPI000303A9D6: peptide ABC transporter substrate-binding protein|unclassified	0.2683412877
+UniRef50_UPI0003B4462C: hypothetical protein, partial	0.2683344485
+UniRef50_UPI0003B4462C: hypothetical protein, partial|unclassified	0.2683344485
+UniRef50_UPI00036839CC: hypothetical protein, partial	0.2683307739
+UniRef50_UPI00036839CC: hypothetical protein, partial|unclassified	0.2683307739
+UniRef50_UPI00047EDF9B: glutamyl-tRNA synthetase	0.2682383275
+UniRef50_UPI00047EDF9B: glutamyl-tRNA synthetase|unclassified	0.2682383275
+UniRef50_UPI000308C80D: ATP--cobalamin adenosyltransferase	0.2682380655
+UniRef50_UPI000308C80D: ATP--cobalamin adenosyltransferase|unclassified	0.2682380655
+UniRef50_A0A023XJG8	0.2682262345
+UniRef50_A0A023XJG8|unclassified	0.2682262345
+UniRef50_UPI0002555FCE: imidazole glycerol-phosphate dehydratase/histidinol phosphatase, partial	0.2682228293
+UniRef50_UPI0002555FCE: imidazole glycerol-phosphate dehydratase/histidinol phosphatase, partial|unclassified	0.2682228293
+UniRef50_UPI0002EED4E0: hypothetical protein	0.2682206770
+UniRef50_UPI0002EED4E0: hypothetical protein|unclassified	0.2682206770
+UniRef50_UPI00047AC749: hypothetical protein	0.2682090584
+UniRef50_UPI00047AC749: hypothetical protein|unclassified	0.2682090584
+UniRef50_UPI00047C2A1A: hypothetical protein	0.2681936287
+UniRef50_UPI00047C2A1A: hypothetical protein|unclassified	0.2681936287
+UniRef50_UPI00037C52C2: hypothetical protein	0.2681857619
+UniRef50_UPI00037C52C2: hypothetical protein|unclassified	0.2681857619
+UniRef50_UPI000373CA50: hypothetical protein	0.2681791355
+UniRef50_UPI000373CA50: hypothetical protein|unclassified	0.2681791355
+UniRef50_U3HGL2	0.2681701257
+UniRef50_U3HGL2|unclassified	0.2681701257
+UniRef50_K9AHZ4: 6-pyruvoyl-tetrahydropterin synthase	0.2681418834
+UniRef50_K9AHZ4: 6-pyruvoyl-tetrahydropterin synthase|unclassified	0.2681418834
+UniRef50_I1ENI9	0.2681311668
+UniRef50_I1ENI9|unclassified	0.2681311668
+UniRef50_UPI0003647CB9: MULTISPECIES: hypothetical protein	0.2681285698
+UniRef50_UPI0003647CB9: MULTISPECIES: hypothetical protein|unclassified	0.2681285698
+UniRef50_UPI0003B3CCE7: competence protein ComJ	0.2680982064
+UniRef50_UPI0003B3CCE7: competence protein ComJ|unclassified	0.2680982064
+UniRef50_H4WPR1: Transposase	0.2680218607
+UniRef50_H4WPR1: Transposase|unclassified	0.2680218607
+UniRef50_UPI0003635BB4: hypothetical protein, partial	0.2680198394
+UniRef50_UPI0003635BB4: hypothetical protein, partial|unclassified	0.2680198394
+UniRef50_B7QVH2: Major facilitator superfamily protein	0.2680166831
+UniRef50_B7QVH2: Major facilitator superfamily protein|unclassified	0.2680166831
+UniRef50_C6XNE9	0.2680127090
+UniRef50_C6XNE9|unclassified	0.2680127090
+UniRef50_Q47G72: Dinitrogenase iron-molybdenum cofactor biosynthesis	0.2680078565
+UniRef50_Q47G72: Dinitrogenase iron-molybdenum cofactor biosynthesis|unclassified	0.2680078565
+UniRef50_UPI0003B75B4C: GntR family transcriptional regulator	0.2679772669
+UniRef50_UPI0003B75B4C: GntR family transcriptional regulator|unclassified	0.2679772669
+UniRef50_UPI00037747A7: hypothetical protein	0.2679757496
+UniRef50_UPI00037747A7: hypothetical protein|unclassified	0.2679757496
+UniRef50_UPI00047D2B4C: histidine utilization repressor	0.2679548247
+UniRef50_UPI00047D2B4C: histidine utilization repressor|unclassified	0.2679548247
+UniRef50_I9IAK6	0.2679401145
+UniRef50_I9IAK6|unclassified	0.2679401145
+UniRef50_V4RB74	0.2679364472
+UniRef50_V4RB74|unclassified	0.2679364472
+UniRef50_UPI0003506C1B: PREDICTED: WAS/WASL-interacting protein family member 1-like	0.2679254306
+UniRef50_UPI0003506C1B: PREDICTED: WAS/WASL-interacting protein family member 1-like|unclassified	0.2679254306
+UniRef50_Q3J8N5: Orotidine 5'-phosphate decarboxylase	0.2679195059
+UniRef50_Q3J8N5: Orotidine 5'-phosphate decarboxylase|unclassified	0.2679195059
+UniRef50_UPI0004770360: membrane protein	0.2679044214
+UniRef50_UPI0004770360: membrane protein|unclassified	0.2679044214
+UniRef50_H2SKM3	0.2678934480
+UniRef50_H2SKM3|unclassified	0.2678934480
+UniRef50_F9Y5F6: Coproporphyrinogen III oxidase	0.2678925338
+UniRef50_F9Y5F6: Coproporphyrinogen III oxidase|unclassified	0.2678925338
+UniRef50_UPI000289D647: acetylglutamate kinase	0.2678798384
+UniRef50_UPI000289D647: acetylglutamate kinase|unclassified	0.2678798384
+UniRef50_J7QNI5	0.2678763870
+UniRef50_J7QNI5|unclassified	0.2678763870
+UniRef50_Q3JKC5	0.2678687677
+UniRef50_Q3JKC5|unclassified	0.2678687677
+UniRef50_UPI0001FFE55B: large conductance mechanosensitive channel, partial	0.2678459414
+UniRef50_UPI0001FFE55B: large conductance mechanosensitive channel, partial|unclassified	0.2678459414
+UniRef50_D3VLF9: Transposase	0.2678426937
+UniRef50_D3VLF9: Transposase|unclassified	0.2678426937
+UniRef50_UPI00046EF858: hypothetical protein	0.2678370505
+UniRef50_UPI00046EF858: hypothetical protein|unclassified	0.2678370505
+UniRef50_UPI00021956F2: RNA-binding protein	0.2678309971
+UniRef50_UPI00021956F2: RNA-binding protein|unclassified	0.2678309971
+UniRef50_D0DB86	0.2678255625
+UniRef50_D0DB86|unclassified	0.2678255625
+UniRef50_UPI000304C6B6: hypothetical protein	0.2678042770
+UniRef50_UPI000304C6B6: hypothetical protein|unclassified	0.2678042770
+UniRef50_UPI00026CBCF3: hypothetical protein	0.2677920585
+UniRef50_UPI00026CBCF3: hypothetical protein|unclassified	0.2677920585
+UniRef50_UPI000314D0B7: hypothetical protein	0.2677720175
+UniRef50_UPI000314D0B7: hypothetical protein|unclassified	0.2677720175
+UniRef50_Q89AP3: Methionine aminopeptidase	0.2677684755
+UniRef50_Q89AP3: Methionine aminopeptidase|unclassified	0.2677684755
+UniRef50_A4WFL4: Glycogen debranching enzyme	0.2677620324
+UniRef50_A4WFL4: Glycogen debranching enzyme|unclassified	0.2677620324
+UniRef50_B4RA53	0.2677556934
+UniRef50_B4RA53|unclassified	0.2677556934
+UniRef50_UPI00037A0BEA: hypothetical protein	0.2677345381
+UniRef50_UPI00037A0BEA: hypothetical protein|unclassified	0.2677345381
+UniRef50_A6X187: Leucyl/phenylalanyl-tRNA--protein transferase	0.2677259866
+UniRef50_A6X187: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.2677259866
+UniRef50_A3SIY3	0.2677220995
+UniRef50_A3SIY3|unclassified	0.2677220995
+UniRef50_UPI0004742037: hypothetical protein, partial	0.2677093253
+UniRef50_UPI0004742037: hypothetical protein, partial|unclassified	0.2677093253
+UniRef50_UPI00047E8199: nitrogen fixation protein NifB	0.2677023210
+UniRef50_UPI00047E8199: nitrogen fixation protein NifB|unclassified	0.2677023210
+UniRef50_I7A9I7	0.2676492483
+UniRef50_I7A9I7|unclassified	0.2676492483
+UniRef50_E0XZF1	0.2676229436
+UniRef50_E0XZF1|unclassified	0.2676229436
+UniRef50_H3WV46	0.2676152691
+UniRef50_H3WV46|unclassified	0.2676152691
+UniRef50_UPI00047388A6: hypothetical protein	0.2676088698
+UniRef50_UPI00047388A6: hypothetical protein|unclassified	0.2676088698
+UniRef50_X7ZST3	0.2676077310
+UniRef50_X7ZST3|unclassified	0.2676077310
+UniRef50_N6YMH1: Tripartite ATP-independent periplasmic transporter DctQ component (Fragment)	0.2675888839
+UniRef50_N6YMH1: Tripartite ATP-independent periplasmic transporter DctQ component (Fragment)|unclassified	0.2675888839
+UniRef50_X0UW79: Marine sediment metagenome DNA, contig: S01H1_S15136 (Fragment)	0.2675410987
+UniRef50_X0UW79: Marine sediment metagenome DNA, contig: S01H1_S15136 (Fragment)|unclassified	0.2675410987
+UniRef50_B7GIC0: N-acetyldiaminopimelate deacetylase	0.2675317413
+UniRef50_B7GIC0: N-acetyldiaminopimelate deacetylase|unclassified	0.2675317413
+UniRef50_J9NYJ3	0.2675262263
+UniRef50_J9NYJ3|unclassified	0.2675262263
+UniRef50_A9GXZ3	0.2674999318
+UniRef50_A9GXZ3|unclassified	0.2674999318
+UniRef50_B2UZT8: D-ribose pyranase	0.2674731528
+UniRef50_B2UZT8: D-ribose pyranase|unclassified	0.2674731528
+UniRef50_UPI00036ADE0C: hypothetical protein	0.2674655642
+UniRef50_UPI00036ADE0C: hypothetical protein|unclassified	0.2674655642
+UniRef50_UPI00047D1DA4: methyltransferase	0.2674514524
+UniRef50_UPI00047D1DA4: methyltransferase|unclassified	0.2674514524
+UniRef50_UPI000382799A: hypothetical protein, partial	0.2674343495
+UniRef50_UPI000382799A: hypothetical protein, partial|unclassified	0.2674343495
+UniRef50_A6WAT7	0.2674236585
+UniRef50_A6WAT7|unclassified	0.2674236585
+UniRef50_A0ALI9: NLP/P60 family protein	0.2674207863
+UniRef50_A0ALI9: NLP/P60 family protein|unclassified	0.2674207863
+UniRef50_D9WUB5: Sporulation protein	0.2674191997
+UniRef50_D9WUB5: Sporulation protein|unclassified	0.2674191997
+UniRef50_UPI0004689F08: alanine acetyltransferase	0.2674144502
+UniRef50_UPI0004689F08: alanine acetyltransferase|unclassified	0.2674144502
+UniRef50_UPI000347C489: hypothetical protein	0.2673924208
+UniRef50_UPI000347C489: hypothetical protein|unclassified	0.2673924208
+UniRef50_UPI000454AB00: PREDICTED: eukaryotic translation initiation factor 3 subunit A-like isoform X1	0.2673802346
+UniRef50_UPI000454AB00: PREDICTED: eukaryotic translation initiation factor 3 subunit A-like isoform X1|unclassified	0.2673802346
+UniRef50_A8LJI8: Purine nucleoside phosphorylase DeoD-type	0.2673594564
+UniRef50_A8LJI8: Purine nucleoside phosphorylase DeoD-type|unclassified	0.2673594564
+UniRef50_Q2GLP6: Glutamate--tRNA ligase 1	0.2673575944
+UniRef50_Q2GLP6: Glutamate--tRNA ligase 1|unclassified	0.2673575944
+UniRef50_UPI0003B638D4: phosphopentomutase, partial	0.2673502980
+UniRef50_UPI0003B638D4: phosphopentomutase, partial|unclassified	0.2673502980
+UniRef50_V2Q968	0.2673502786
+UniRef50_V2Q968|unclassified	0.2673502786
+UniRef50_Q88GG4: Putative methyltransferase Cher3	0.2673322468
+UniRef50_Q88GG4: Putative methyltransferase Cher3|unclassified	0.2673322468
+UniRef50_V7CWH6	0.2673193891
+UniRef50_V7CWH6|unclassified	0.2673193891
+UniRef50_UPI000319F8B3: hypothetical protein	0.2672998072
+UniRef50_UPI000319F8B3: hypothetical protein|unclassified	0.2672998072
+UniRef50_UPI000305A67F: hypothetical protein	0.2672939177
+UniRef50_UPI000305A67F: hypothetical protein|unclassified	0.2672939177
+UniRef50_A7HWY8	0.2672870362
+UniRef50_A7HWY8|unclassified	0.2672870362
+UniRef50_S6CFR9: C-terminus of TRAP transporter substrate-binding protein	0.2672807620
+UniRef50_S6CFR9: C-terminus of TRAP transporter substrate-binding protein|unclassified	0.2672807620
+UniRef50_W4VL24: Na(+) H(+) antiporter subunit A	0.2672579827
+UniRef50_W4VL24: Na(+) H(+) antiporter subunit A|unclassified	0.2672579827
+UniRef50_Q7NIG8: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	0.2672500675
+UniRef50_Q7NIG8: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|unclassified	0.2672500675
+UniRef50_X1UWS6: Marine sediment metagenome DNA, contig: S12H4_S17567 (Fragment)	0.2672498713
+UniRef50_X1UWS6: Marine sediment metagenome DNA, contig: S12H4_S17567 (Fragment)|unclassified	0.2672498713
+UniRef50_UPI0004786532: hypothetical protein	0.2672441800
+UniRef50_UPI0004786532: hypothetical protein|unclassified	0.2672441800
+UniRef50_R8ZGG1: Putative ATPase	0.2672384195
+UniRef50_R8ZGG1: Putative ATPase|unclassified	0.2672384195
+UniRef50_S9QHL4	0.2672107797
+UniRef50_S9QHL4|unclassified	0.2672107797
+UniRef50_A0A010S1Q8	0.2671791720
+UniRef50_A0A010S1Q8|unclassified	0.2671791720
+UniRef50_UPI000364A00D: acetoin dehydrogenase, partial	0.2671718808
+UniRef50_UPI000364A00D: acetoin dehydrogenase, partial|unclassified	0.2671718808
+UniRef50_UPI0002884BE6: Zonular occludens toxin	0.2670778941
+UniRef50_UPI0002884BE6: Zonular occludens toxin|unclassified	0.2670778941
+UniRef50_U5HH68	0.2670764696
+UniRef50_U5HH68|unclassified	0.2670764696
+UniRef50_E2SYI7	0.2670487690
+UniRef50_E2SYI7|unclassified	0.2670487690
+UniRef50_H9KMQ7	0.2669754105
+UniRef50_H9KMQ7|unclassified	0.2669754105
+UniRef50_F3YB73: ABC transporter, substrate-binding protein	0.2669330230
+UniRef50_F3YB73: ABC transporter, substrate-binding protein|unclassified	0.2669330230
+UniRef50_F8CN14	0.2669186893
+UniRef50_F8CN14|unclassified	0.2669186893
+UniRef50_A4Y0T5	0.2669179339
+UniRef50_A4Y0T5|unclassified	0.2669179339
+UniRef50_UPI00047D4CFB: trehalose phosphatase	0.2669130163
+UniRef50_UPI00047D4CFB: trehalose phosphatase|unclassified	0.2669130163
+UniRef50_D9VBV2	0.2669120490
+UniRef50_D9VBV2|unclassified	0.2669120490
+UniRef50_E8Y0J9	0.2669012089
+UniRef50_E8Y0J9|unclassified	0.2669012089
+UniRef50_P58696: Asparagine--tRNA ligase	0.2669001001
+UniRef50_P58696: Asparagine--tRNA ligase|unclassified	0.2669001001
+UniRef50_UPI0003347A18: PREDICTED: pro-interleukin-16	0.2668801708
+UniRef50_UPI0003347A18: PREDICTED: pro-interleukin-16|unclassified	0.2668801708
+UniRef50_D0WQA6	0.2668733552
+UniRef50_D0WQA6|unclassified	0.2668733552
+UniRef50_J3LBM7	0.2668646692
+UniRef50_J3LBM7|unclassified	0.2668646692
+UniRef50_J5PJL7: Conjugal transfer protein TrbE (Fragment)	0.2668396890
+UniRef50_J5PJL7: Conjugal transfer protein TrbE (Fragment)|unclassified	0.2668396890
+UniRef50_UPI00037530DA: hypothetical protein	0.2668390344
+UniRef50_UPI00037530DA: hypothetical protein|unclassified	0.2668390344
+UniRef50_UPI000289C53C: glyceraldehyde-3-phosphate dehydrogenase	0.2668338717
+UniRef50_UPI000289C53C: glyceraldehyde-3-phosphate dehydrogenase|unclassified	0.2668338717
+UniRef50_UPI00036C730D: MFS transporter	0.2668333351
+UniRef50_UPI00036C730D: MFS transporter|unclassified	0.2668333351
+UniRef50_UPI000383C331: PREDICTED: formin-like protein 5-like	0.2667938285
+UniRef50_UPI000383C331: PREDICTED: formin-like protein 5-like|unclassified	0.2667938285
+UniRef50_UPI00036C6219: dynamin family protein	0.2667823119
+UniRef50_UPI00036C6219: dynamin family protein|unclassified	0.2667823119
+UniRef50_UPI00035D4AE6: hypothetical protein	0.2667420814
+UniRef50_UPI00035D4AE6: hypothetical protein|unclassified	0.2667420814
+UniRef50_A4VLE7	0.2667407389
+UniRef50_A4VLE7|unclassified	0.2667407389
+UniRef50_UPI0002D4EE34: hypothetical protein	0.2667380545
+UniRef50_UPI0002D4EE34: hypothetical protein|unclassified	0.2667380545
+UniRef50_R9S5L9: Fe-S protein	0.2667253302
+UniRef50_R9S5L9: Fe-S protein|unclassified	0.2667253302
+UniRef50_J8TM06: NAD dependent epimerase/dehydratase family protein	0.2667077610
+UniRef50_J8TM06: NAD dependent epimerase/dehydratase family protein|unclassified	0.2667077610
+UniRef50_UPI000464C738: hypothetical protein	0.2666603166
+UniRef50_UPI000464C738: hypothetical protein|unclassified	0.2666603166
+UniRef50_P26944: Cyclic pyranopterin monophosphate synthase accessory protein (Fragment)	0.2666563759
+UniRef50_P26944: Cyclic pyranopterin monophosphate synthase accessory protein (Fragment)|unclassified	0.2666563759
+UniRef50_S4W0C7: C1q-like domainmotif-containing	0.2666432378
+UniRef50_S4W0C7: C1q-like domainmotif-containing|unclassified	0.2666432378
+UniRef50_UPI000373AC76: hypothetical protein	0.2666282810
+UniRef50_UPI000373AC76: hypothetical protein|unclassified	0.2666282810
+UniRef50_Q08NW1	0.2665955745
+UniRef50_Q08NW1|unclassified	0.2665955745
+UniRef50_R4PX87	0.2665838395
+UniRef50_R4PX87|unclassified	0.2665838395
+UniRef50_K2EHC8	0.2665605868
+UniRef50_K2EHC8|unclassified	0.2665605868
+UniRef50_D3QGI4: Capsular polysaccharide synthesis enzyme Cap8M	0.2665409810
+UniRef50_D3QGI4: Capsular polysaccharide synthesis enzyme Cap8M|unclassified	0.2665409810
+UniRef50_H3RN29: Transposase, IS4 family	0.2665361031
+UniRef50_H3RN29: Transposase, IS4 family|unclassified	0.2665361031
+UniRef50_UPI00037557CA: hypothetical protein	0.2665176299
+UniRef50_UPI00037557CA: hypothetical protein|unclassified	0.2665176299
+UniRef50_UPI0004655488: hypothetical protein, partial	0.2665067568
+UniRef50_UPI0004655488: hypothetical protein, partial|unclassified	0.2665067568
+UniRef50_UPI000466E02A: hypothetical protein	0.2664628006
+UniRef50_UPI000466E02A: hypothetical protein|unclassified	0.2664628006
+UniRef50_UPI00035E8644: hypothetical protein, partial	0.2664500511
+UniRef50_UPI00035E8644: hypothetical protein, partial|unclassified	0.2664500511
+UniRef50_Q5E0X7: Anaerobic glycerol-3-phosphate dehydrogenase subunit B	0.2664271353
+UniRef50_Q5E0X7: Anaerobic glycerol-3-phosphate dehydrogenase subunit B|unclassified	0.2664271353
+UniRef50_UPI0002F4B1FA: hypothetical protein	0.2664193521
+UniRef50_UPI0002F4B1FA: hypothetical protein|unclassified	0.2664193521
+UniRef50_K0R8M8	0.2664080776
+UniRef50_K0R8M8|unclassified	0.2664080776
+UniRef50_UPI00047C9FBD: hypothetical protein, partial	0.2664044919
+UniRef50_UPI00047C9FBD: hypothetical protein, partial|unclassified	0.2664044919
+UniRef50_UPI00046E7E87: cystathionine gamma-synthase	0.2663873289
+UniRef50_UPI00046E7E87: cystathionine gamma-synthase|unclassified	0.2663873289
+UniRef50_R9V1F6	0.2663707234
+UniRef50_R9V1F6|unclassified	0.2663707234
+UniRef50_A9KCM9: BolA	0.2663651374
+UniRef50_A9KCM9: BolA|unclassified	0.2663651374
+UniRef50_L1J6T9	0.2663521428
+UniRef50_L1J6T9|unclassified	0.2663521428
+UniRef50_UPI0003657039: flagellar P-ring protein FlgI	0.2663325182
+UniRef50_UPI0003657039: flagellar P-ring protein FlgI|unclassified	0.2663325182
+UniRef50_X0ZN80: Marine sediment metagenome DNA, contig: S01H1_S38436 (Fragment)	0.2662779971
+UniRef50_X0ZN80: Marine sediment metagenome DNA, contig: S01H1_S38436 (Fragment)|unclassified	0.2662779971
+UniRef50_UPI00036C68DE: hypothetical protein	0.2662745694
+UniRef50_UPI00036C68DE: hypothetical protein|unclassified	0.2662745694
+UniRef50_UPI000350E784	0.2662459239
+UniRef50_UPI000350E784|unclassified	0.2662459239
+UniRef50_W5N2Q1	0.2662259562
+UniRef50_W5N2Q1|unclassified	0.2662259562
+UniRef50_Q6FUF3: GMP synthase [glutamine-hydrolyzing]	0.2662162664
+UniRef50_Q6FUF3: GMP synthase [glutamine-hydrolyzing]|unclassified	0.2662162664
+UniRef50_UPI000368C9A0: hypothetical protein	0.2662109005
+UniRef50_UPI000368C9A0: hypothetical protein|unclassified	0.2662109005
+UniRef50_I1FU63	0.2661823096
+UniRef50_I1FU63|unclassified	0.2661823096
+UniRef50_UPI000476AFBE: ABC transporter substrate-binding protein	0.2661701399
+UniRef50_UPI000476AFBE: ABC transporter substrate-binding protein|unclassified	0.2661701399
+UniRef50_L5MN85: Sulfate transporter	0.2661684110
+UniRef50_L5MN85: Sulfate transporter|unclassified	0.2661684110
+UniRef50_A0A023V5I1	0.2661669688
+UniRef50_A0A023V5I1|unclassified	0.2661669688
+UniRef50_A7GQE5	0.2661582839
+UniRef50_A7GQE5|unclassified	0.2661582839
+UniRef50_G6EUM9	0.2661485718
+UniRef50_G6EUM9|unclassified	0.2661485718
+UniRef50_UPI000462BF9A: acetyltransferase	0.2661309515
+UniRef50_UPI000462BF9A: acetyltransferase|unclassified	0.2661309515
+UniRef50_W6R8E6	0.2661274619
+UniRef50_W6R8E6|unclassified	0.2661274619
+UniRef50_UPI00036CC784: hypothetical protein	0.2661200082
+UniRef50_UPI00036CC784: hypothetical protein|unclassified	0.2661200082
+UniRef50_D6PKZ6	0.2661175082
+UniRef50_D6PKZ6|unclassified	0.2661175082
+UniRef50_Q1N6H9	0.2661131459
+UniRef50_Q1N6H9|unclassified	0.2661131459
+UniRef50_N4VEU4	0.2661040708
+UniRef50_N4VEU4|unclassified	0.2661040708
+UniRef50_UPI0003614507: hypothetical protein	0.2660845174
+UniRef50_UPI0003614507: hypothetical protein|unclassified	0.2660845174
+UniRef50_UPI0003796137: hypothetical protein	0.2660615439
+UniRef50_UPI0003796137: hypothetical protein|unclassified	0.2660615439
+UniRef50_B2V6Y7: Argininosuccinate lyase	0.2660094947
+UniRef50_B2V6Y7: Argininosuccinate lyase|unclassified	0.2660094947
+UniRef50_UPI00047C6448: ribosomal protein S3 (mitochondrion)	0.2659470075
+UniRef50_UPI00047C6448: ribosomal protein S3 (mitochondrion)|unclassified	0.2659470075
+UniRef50_UPI0003643B68: hypothetical protein	0.2659351549
+UniRef50_UPI0003643B68: hypothetical protein|unclassified	0.2659351549
+UniRef50_UPI00035F541F: hypothetical protein	0.2659224643
+UniRef50_UPI00035F541F: hypothetical protein|unclassified	0.2659224643
+UniRef50_UPI0004661E9D: hypothetical protein	0.2658969401
+UniRef50_UPI0004661E9D: hypothetical protein|unclassified	0.2658969401
+UniRef50_Z4ST54	0.2658958842
+UniRef50_Z4ST54|unclassified	0.2658958842
+UniRef50_UPI000310E039: hypothetical protein	0.2658878541
+UniRef50_UPI000310E039: hypothetical protein|unclassified	0.2658878541
+UniRef50_UPI00035A22D9: PREDICTED: 39S ribosomal protein L4, mitochondrial	0.2658755312
+UniRef50_UPI00035A22D9: PREDICTED: 39S ribosomal protein L4, mitochondrial|unclassified	0.2658755312
+UniRef50_D2TP41	0.2658689768
+UniRef50_D2TP41|unclassified	0.2658689768
+UniRef50_Q2NDS1: Arsenate reductase	0.2658423935
+UniRef50_Q2NDS1: Arsenate reductase|unclassified	0.2658423935
+UniRef50_UPI000374DE17: hypothetical protein	0.2658421995
+UniRef50_UPI000374DE17: hypothetical protein|unclassified	0.2658421995
+UniRef50_B2J6C6: Phosphopantetheine adenylyltransferase	0.2658317287
+UniRef50_B2J6C6: Phosphopantetheine adenylyltransferase|unclassified	0.2658317287
+UniRef50_UPI00035D318A: hypothetical protein	0.2657838293
+UniRef50_UPI00035D318A: hypothetical protein|unclassified	0.2657838293
+UniRef50_UPI0003756D2D: hypothetical protein, partial	0.2657441361
+UniRef50_UPI0003756D2D: hypothetical protein, partial|unclassified	0.2657441361
+UniRef50_A0LUZ1: LexA repressor	0.2657134962
+UniRef50_A0LUZ1: LexA repressor|unclassified	0.2657134962
+UniRef50_O26969	0.2657003450
+UniRef50_O26969|unclassified	0.2657003450
+UniRef50_X0PMY8	0.2656721354
+UniRef50_X0PMY8|unclassified	0.2656721354
+UniRef50_UPI000474AC5D: MT-A70 family protein	0.2656501281
+UniRef50_UPI000474AC5D: MT-A70 family protein|unclassified	0.2656501281
+UniRef50_UPI00046FCB1D: hypothetical protein	0.2656180549
+UniRef50_UPI00046FCB1D: hypothetical protein|unclassified	0.2656180549
+UniRef50_UPI00045EAF13: hypothetical protein	0.2656039391
+UniRef50_UPI00045EAF13: hypothetical protein|unclassified	0.2656039391
+UniRef50_A6FKW5	0.2656001439
+UniRef50_A6FKW5|unclassified	0.2656001439
+UniRef50_W1MNG9	0.2655731786
+UniRef50_W1MNG9|unclassified	0.2655731786
+UniRef50_A3DAN9	0.2655573800
+UniRef50_A3DAN9|unclassified	0.2655573800
+UniRef50_UPI00037E51E1: hypothetical protein	0.2655465443
+UniRef50_UPI00037E51E1: hypothetical protein|unclassified	0.2655465443
+UniRef50_J9NNJ6	0.2655255610
+UniRef50_J9NNJ6|unclassified	0.2655255610
+UniRef50_UPI00046B10DB: PREDICTED: serine/arginine repetitive matrix protein 1-like	0.2655072799
+UniRef50_UPI00046B10DB: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	0.2655072799
+UniRef50_UPI0003710D67: baseplate assembly protein	0.2655030542
+UniRef50_UPI0003710D67: baseplate assembly protein|unclassified	0.2655030542
+UniRef50_UPI000273B07F: PREDICTED: probable ATP-dependent RNA helicase DHX34-like, partial	0.2654251437
+UniRef50_UPI000273B07F: PREDICTED: probable ATP-dependent RNA helicase DHX34-like, partial|unclassified	0.2654251437
+UniRef50_R5KZF0: Phi13 family phage major tail protein	0.2653677556
+UniRef50_R5KZF0: Phi13 family phage major tail protein|unclassified	0.2653677556
+UniRef50_M4MGP6: NAD(P)H dehydrogenase	0.2653656491
+UniRef50_M4MGP6: NAD(P)H dehydrogenase|unclassified	0.2653656491
+UniRef50_UPI0002559F6C: aminopeptidase N, partial	0.2653592803
+UniRef50_UPI0002559F6C: aminopeptidase N, partial|unclassified	0.2653592803
+UniRef50_UPI00016A907F: benzoate transport protein	0.2653547829
+UniRef50_UPI00016A907F: benzoate transport protein|unclassified	0.2653547829
+UniRef50_O67869: Carbamoyl-phosphate synthase large chain, N-terminal section	0.2653467783
+UniRef50_O67869: Carbamoyl-phosphate synthase large chain, N-terminal section|unclassified	0.2653467783
+UniRef50_P44869: Ribosomal RNA small subunit methyltransferase D	0.2653365670
+UniRef50_P44869: Ribosomal RNA small subunit methyltransferase D|unclassified	0.2653365670
+UniRef50_UPI0004643E14: hypothetical protein	0.2653359561
+UniRef50_UPI0004643E14: hypothetical protein|unclassified	0.2653359561
+UniRef50_L0ET35	0.2653054701
+UniRef50_L0ET35|unclassified	0.2653054701
+UniRef50_A6V376	0.2652664089
+UniRef50_A6V376|unclassified	0.2652664089
+UniRef50_N0AHD0: NADH-dependent formate dehydrogenase delta subunit FdsD family protein	0.2652650336
+UniRef50_N0AHD0: NADH-dependent formate dehydrogenase delta subunit FdsD family protein|unclassified	0.2652650336
+UniRef50_R6C033: Thiazole biosynthesis protein ThiH	0.2652581970
+UniRef50_R6C033: Thiazole biosynthesis protein ThiH|unclassified	0.2652581970
+UniRef50_E9UWY9: LpqU protein	0.2652533007
+UniRef50_E9UWY9: LpqU protein|unclassified	0.2652533007
+UniRef50_UPI0003609B11: hypothetical protein	0.2652422057
+UniRef50_UPI0003609B11: hypothetical protein|unclassified	0.2652422057
+UniRef50_M5FHA1	0.2652315111
+UniRef50_M5FHA1|unclassified	0.2652315111
+UniRef50_W7ANC7: Putative lipoprotein	0.2652149732
+UniRef50_W7ANC7: Putative lipoprotein|unclassified	0.2652149732
+UniRef50_H5T727: General stress protein	0.2651964671
+UniRef50_H5T727: General stress protein|unclassified	0.2651964671
+UniRef50_S5S9Y1	0.2651917153
+UniRef50_S5S9Y1|unclassified	0.2651917153
+UniRef50_I0G816: Cyclase/dehydrase	0.2651653563
+UniRef50_I0G816: Cyclase/dehydrase|unclassified	0.2651653563
+UniRef50_N1M3K2	0.2651350974
+UniRef50_N1M3K2|unclassified	0.2651350974
+UniRef50_UPI0003CFC468: Pyruvate formate-lyase 1-activating enzyme	0.2651186305
+UniRef50_UPI0003CFC468: Pyruvate formate-lyase 1-activating enzyme|unclassified	0.2651186305
+UniRef50_UPI00046ACCFF: LacI family transcriptional regulator	0.2651136291
+UniRef50_UPI00046ACCFF: LacI family transcriptional regulator|unclassified	0.2651136291
+UniRef50_G2TMY6	0.2651066790
+UniRef50_G2TMY6|unclassified	0.2651066790
+UniRef50_I4YVM4	0.2651004785
+UniRef50_I4YVM4|unclassified	0.2651004785
+UniRef50_K0M560	0.2650997895
+UniRef50_K0M560|unclassified	0.2650997895
+UniRef50_UPI00023764EF: acetoacetyl-CoA reductase	0.2650769687
+UniRef50_UPI00023764EF: acetoacetyl-CoA reductase|unclassified	0.2650769687
+UniRef50_H1D8N3	0.2650603331
+UniRef50_H1D8N3|unclassified	0.2650603331
+UniRef50_K0CE71	0.2650549441
+UniRef50_K0CE71|unclassified	0.2650549441
+UniRef50_UPI0004408688: hypothetical protein FOMMEDRAFT_155281	0.2650531491
+UniRef50_UPI0004408688: hypothetical protein FOMMEDRAFT_155281|unclassified	0.2650531491
+UniRef50_C9XUE4: Ribonuclease D	0.2650445693
+UniRef50_C9XUE4: Ribonuclease D|unclassified	0.2650445693
+UniRef50_UPI0004195273: metallophosphoesterase	0.2650247653
+UniRef50_UPI0004195273: metallophosphoesterase|unclassified	0.2650247653
+UniRef50_C5YXP4	0.2650135312
+UniRef50_C5YXP4|unclassified	0.2650135312
+UniRef50_Q7N134: Complete genome; segment 13/17	0.2649862521
+UniRef50_Q7N134: Complete genome; segment 13/17|unclassified	0.2649862521
+UniRef50_X1VL55: Marine sediment metagenome DNA, contig: S12H4_S28382 (Fragment)	0.2649796814
+UniRef50_X1VL55: Marine sediment metagenome DNA, contig: S12H4_S28382 (Fragment)|unclassified	0.2649796814
+UniRef50_E8XMU8	0.2649691054
+UniRef50_E8XMU8|unclassified	0.2649691054
+UniRef50_UPI000360E2D7: hypothetical protein	0.2649458582
+UniRef50_UPI000360E2D7: hypothetical protein|unclassified	0.2649458582
+UniRef50_Q2RI74: Shikimate kinase	0.2649381071
+UniRef50_Q2RI74: Shikimate kinase|unclassified	0.2649381071
+UniRef50_Q4V2F4	0.2649345610
+UniRef50_Q4V2F4|unclassified	0.2649345610
+UniRef50_UPI0004748C07: NAD(P)-dependent oxidoreductase	0.2649083332
+UniRef50_UPI0004748C07: NAD(P)-dependent oxidoreductase|unclassified	0.2649083332
+UniRef50_UPI000369D268: hypothetical protein	0.2649078282
+UniRef50_UPI000369D268: hypothetical protein|unclassified	0.2649078282
+UniRef50_UPI000360D8B8: hypothetical protein, partial	0.2648834496
+UniRef50_UPI000360D8B8: hypothetical protein, partial|unclassified	0.2648834496
+UniRef50_Q9A311: UPF0301 protein CC_3395	0.2648745349
+UniRef50_Q9A311: UPF0301 protein CC_3395|unclassified	0.2648745349
+UniRef50_UPI000347561C: hypothetical protein	0.2648467010
+UniRef50_UPI000347561C: hypothetical protein|unclassified	0.2648467010
+UniRef50_UPI0003EB6268: hypothetical protein	0.2648459434
+UniRef50_UPI0003EB6268: hypothetical protein|unclassified	0.2648459434
+UniRef50_UPI00037C2AEE: hypothetical protein	0.2648203456
+UniRef50_UPI00037C2AEE: hypothetical protein|unclassified	0.2648203456
+UniRef50_R8C054	0.2648186894
+UniRef50_R8C054|unclassified	0.2648186894
+UniRef50_UPI0004172372: hypothetical protein	0.2647824457
+UniRef50_UPI0004172372: hypothetical protein|unclassified	0.2647824457
+UniRef50_L0DHI7: Putative nucleic acid-binding protein, contains PIN domain	0.2647732626
+UniRef50_L0DHI7: Putative nucleic acid-binding protein, contains PIN domain|unclassified	0.2647732626
+UniRef50_B9M627: Transcriptional regulator, BadM/Rrf2 family	0.2647705674
+UniRef50_B9M627: Transcriptional regulator, BadM/Rrf2 family|unclassified	0.2647705674
+UniRef50_UPI00016A2F14: potassium-transporting ATPase subunit A, partial	0.2647422657
+UniRef50_UPI00016A2F14: potassium-transporting ATPase subunit A, partial|unclassified	0.2647422657
+UniRef50_UPI00046EC1CC: hypothetical protein, partial	0.2647306968
+UniRef50_UPI00046EC1CC: hypothetical protein, partial|unclassified	0.2647306968
+UniRef50_UPI0003B3BD57: NUDIX hydrolase	0.2647182551
+UniRef50_UPI0003B3BD57: NUDIX hydrolase|unclassified	0.2647182551
+UniRef50_B9E6S1: Shikimate kinase	0.2647008941
+UniRef50_B9E6S1: Shikimate kinase|unclassified	0.2647008941
+UniRef50_UPI00047B81D3: chemotaxis protein CheR	0.2646722181
+UniRef50_UPI00047B81D3: chemotaxis protein CheR|unclassified	0.2646722181
+UniRef50_E4TPU1: Transcriptional regulator, BadM/Rrf2 family	0.2646522034
+UniRef50_E4TPU1: Transcriptional regulator, BadM/Rrf2 family|unclassified	0.2646522034
+UniRef50_B8BVS9	0.2646427865
+UniRef50_B8BVS9|unclassified	0.2646427865
+UniRef50_V2MVA5	0.2646280781
+UniRef50_V2MVA5|unclassified	0.2646280781
+UniRef50_UPI0004651078: biopolymer transporter ExbD	0.2646054304
+UniRef50_UPI0004651078: biopolymer transporter ExbD|unclassified	0.2646054304
+UniRef50_X1JM57: Marine sediment metagenome DNA, contig: S06H3_C02762	0.2645833035
+UniRef50_X1JM57: Marine sediment metagenome DNA, contig: S06H3_C02762|unclassified	0.2645833035
+UniRef50_UPI0003FD65A1: homoserine dehydrogenase	0.2645794814
+UniRef50_UPI0003FD65A1: homoserine dehydrogenase|unclassified	0.2645794814
+UniRef50_K0TLG1	0.2645464202
+UniRef50_K0TLG1|unclassified	0.2645464202
+UniRef50_X0T0E9: Marine sediment metagenome DNA, contig: S01H1_S01587 (Fragment)	0.2645049099
+UniRef50_X0T0E9: Marine sediment metagenome DNA, contig: S01H1_S01587 (Fragment)|unclassified	0.2645049099
+UniRef50_W4KMN3	0.2645025606
+UniRef50_W4KMN3|unclassified	0.2645025606
+UniRef50_A0A017HQX7: Phage terminase large subunit	0.2644436233
+UniRef50_A0A017HQX7: Phage terminase large subunit|unclassified	0.2644436233
+UniRef50_E3ZD11: ABC transporter, permease protein	0.2644400855
+UniRef50_E3ZD11: ABC transporter, permease protein|unclassified	0.2644400855
+UniRef50_UPI0002F4F624: hypothetical protein	0.2644395190
+UniRef50_UPI0002F4F624: hypothetical protein|unclassified	0.2644395190
+UniRef50_K2EEA8	0.2644345327
+UniRef50_K2EEA8|unclassified	0.2644345327
+UniRef50_A7HXI2	0.2644063839
+UniRef50_A7HXI2|unclassified	0.2644063839
+UniRef50_UPI00035C343F: hypothetical protein	0.2643384674
+UniRef50_UPI00035C343F: hypothetical protein|unclassified	0.2643384674
+UniRef50_A0A014H8V3: Thi4 family protein	0.2643177789
+UniRef50_A0A014H8V3: Thi4 family protein|unclassified	0.2643177789
+UniRef50_UPI00047AE18A: hypothetical protein, partial	0.2643039779
+UniRef50_UPI00047AE18A: hypothetical protein, partial|unclassified	0.2643039779
+UniRef50_Q7G604: F-box domain containing protein, expressed	0.2642915070
+UniRef50_Q7G604: F-box domain containing protein, expressed|unclassified	0.2642915070
+UniRef50_UPI000372F99D: hypothetical protein, partial	0.2642887199
+UniRef50_UPI000372F99D: hypothetical protein, partial|unclassified	0.2642887199
+UniRef50_UPI000289B612: luciferase-like monooxygenase	0.2642871899
+UniRef50_UPI000289B612: luciferase-like monooxygenase|unclassified	0.2642871899
+UniRef50_UPI0003B5E34E: hypothetical protein	0.2642681164
+UniRef50_UPI0003B5E34E: hypothetical protein|unclassified	0.2642681164
+UniRef50_UPI000420CB29: baseplate assembly protein	0.2642583984
+UniRef50_UPI000420CB29: baseplate assembly protein|unclassified	0.2642583984
+UniRef50_C9TVV5: Cyclase/dehydrase	0.2642454112
+UniRef50_C9TVV5: Cyclase/dehydrase|unclassified	0.2642454112
+UniRef50_A0A024HP91: Type 4 fimbrial biogenesis protein PilO	0.2642412605
+UniRef50_A0A024HP91: Type 4 fimbrial biogenesis protein PilO|unclassified	0.2642412605
+UniRef50_A5WC44: Membrane protein-like protein	0.2642382339
+UniRef50_A5WC44: Membrane protein-like protein|unclassified	0.2642382339
+UniRef50_M3GQN3	0.2642111205
+UniRef50_M3GQN3|unclassified	0.2642111205
+UniRef50_C0B445	0.2642061431
+UniRef50_C0B445|unclassified	0.2642061431
+UniRef50_X7X2Q6	0.2641971511
+UniRef50_X7X2Q6|unclassified	0.2641971511
+UniRef50_UPI00030168D3: hypothetical protein	0.2641899827
+UniRef50_UPI00030168D3: hypothetical protein|unclassified	0.2641899827
+UniRef50_UPI00045EA528: hypothetical protein	0.2641827492
+UniRef50_UPI00045EA528: hypothetical protein|unclassified	0.2641827492
+UniRef50_K7EGK9	0.2641411177
+UniRef50_K7EGK9|unclassified	0.2641411177
+UniRef50_UPI000375F5B7: hypothetical protein	0.2641309016
+UniRef50_UPI000375F5B7: hypothetical protein|unclassified	0.2641309016
+UniRef50_UPI00047DABB5: hypothetical protein	0.2640917851
+UniRef50_UPI00047DABB5: hypothetical protein|unclassified	0.2640917851
+UniRef50_UPI000366511D: hypothetical protein	0.2640862451
+UniRef50_UPI000366511D: hypothetical protein|unclassified	0.2640862451
+UniRef50_Q6AEK9: Ribonuclease PH	0.2640793408
+UniRef50_Q6AEK9: Ribonuclease PH|unclassified	0.2640793408
+UniRef50_A7IP97: NADH-quinone oxidoreductase subunit K	0.2640419851
+UniRef50_A7IP97: NADH-quinone oxidoreductase subunit K|unclassified	0.2640419851
+UniRef50_UPI000308374C: hypothetical protein	0.2640288142
+UniRef50_UPI000308374C: hypothetical protein|unclassified	0.2640288142
+UniRef50_W4JY78	0.2640091142
+UniRef50_W4JY78|unclassified	0.2640091142
+UniRef50_UPI00036AA55A: hypothetical protein	0.2639955838
+UniRef50_UPI00036AA55A: hypothetical protein|unclassified	0.2639955838
+UniRef50_UPI0004790220: 3-oxoacyl-ACP synthase	0.2639688972
+UniRef50_UPI0004790220: 3-oxoacyl-ACP synthase|unclassified	0.2639688972
+UniRef50_UPI000477B8A9: hypothetical protein, partial	0.2639452366
+UniRef50_UPI000477B8A9: hypothetical protein, partial|unclassified	0.2639452366
+UniRef50_S3CJX1: GPI anchored protein, putative	0.2639394633
+UniRef50_S3CJX1: GPI anchored protein, putative|unclassified	0.2639394633
+UniRef50_UPI00046842C9: hypothetical protein	0.2638891115
+UniRef50_UPI00046842C9: hypothetical protein|unclassified	0.2638891115
+UniRef50_UPI0004151BD9: plasmid partitioning protein ParA	0.2638875249
+UniRef50_UPI0004151BD9: plasmid partitioning protein ParA|unclassified	0.2638875249
+UniRef50_UPI00036B2209: hypothetical protein	0.2638864874
+UniRef50_UPI00036B2209: hypothetical protein|unclassified	0.2638864874
+UniRef50_UPI00036C1039: hypothetical protein	0.2638786003
+UniRef50_UPI00036C1039: hypothetical protein|unclassified	0.2638786003
+UniRef50_B6B432: Conserved domain protein	0.2638159188
+UniRef50_B6B432: Conserved domain protein|unclassified	0.2638159188
+UniRef50_UPI00047296E1: xanthine dehydrogenase	0.2638097813
+UniRef50_UPI00047296E1: xanthine dehydrogenase|unclassified	0.2638097813
+UniRef50_UPI00037B0949: hypothetical protein	0.2638012965
+UniRef50_UPI00037B0949: hypothetical protein|unclassified	0.2638012965
+UniRef50_N8Y2G0	0.2637961040
+UniRef50_N8Y2G0|unclassified	0.2637961040
+UniRef50_Q7WF76: Putative Holliday junction resolvase	0.2637797815
+UniRef50_Q7WF76: Putative Holliday junction resolvase|unclassified	0.2637797815
+UniRef50_UPI00037D20D9: 50S ribosomal protein L13	0.2637794691
+UniRef50_UPI00037D20D9: 50S ribosomal protein L13|unclassified	0.2637794691
+UniRef50_G8AQF4: Formate dehydrogenase delta subunit	0.2637743266
+UniRef50_G8AQF4: Formate dehydrogenase delta subunit|unclassified	0.2637743266
+UniRef50_J0HBN6	0.2637319786
+UniRef50_J0HBN6|unclassified	0.2637319786
+UniRef50_T5FLG4: Putative membrane protein	0.2637132436
+UniRef50_T5FLG4: Putative membrane protein|unclassified	0.2637132436
+UniRef50_UPI000367EFAE: hypothetical protein	0.2637025197
+UniRef50_UPI000367EFAE: hypothetical protein|unclassified	0.2637025197
+UniRef50_G0SAR5	0.2636777705
+UniRef50_G0SAR5|unclassified	0.2636777705
+UniRef50_UPI000372345A: hypothetical protein	0.2636629802
+UniRef50_UPI000372345A: hypothetical protein|unclassified	0.2636629802
+UniRef50_UPI0003B699F6: benzoate transporter	0.2636564543
+UniRef50_UPI0003B699F6: benzoate transporter|unclassified	0.2636564543
+UniRef50_V9AR48	0.2636292836
+UniRef50_V9AR48|unclassified	0.2636292836
+UniRef50_C9TQ56: TRAP dicarboxylate transporter	0.2635766800
+UniRef50_C9TQ56: TRAP dicarboxylate transporter|unclassified	0.2635766800
+UniRef50_G5JV61	0.2635726532
+UniRef50_G5JV61|unclassified	0.2635726532
+UniRef50_A0A011UII3	0.2635614300
+UniRef50_A0A011UII3|unclassified	0.2635614300
+UniRef50_V1KMZ0: Oxidoreductase	0.2635597054
+UniRef50_V1KMZ0: Oxidoreductase|unclassified	0.2635597054
+UniRef50_G6CAU6	0.2635254214
+UniRef50_G6CAU6|unclassified	0.2635254214
+UniRef50_UPI000377120A: hypothetical protein	0.2635197792
+UniRef50_UPI000377120A: hypothetical protein|unclassified	0.2635197792
+UniRef50_UPI00045D7CE7: PREDICTED: methyl-CpG-binding domain protein 2-like	0.2635124640
+UniRef50_UPI00045D7CE7: PREDICTED: methyl-CpG-binding domain protein 2-like|unclassified	0.2635124640
+UniRef50_A0A024EEF7	0.2635024831
+UniRef50_A0A024EEF7|unclassified	0.2635024831
+UniRef50_UPI0003EDA90F: porin	0.2634928385
+UniRef50_UPI0003EDA90F: porin|unclassified	0.2634928385
+UniRef50_X0ZYW1: Marine sediment metagenome DNA, contig: S01H4_C01266	0.2634870539
+UniRef50_X0ZYW1: Marine sediment metagenome DNA, contig: S01H4_C01266|unclassified	0.2634870539
+UniRef50_A8FCN2: N-acetyldiaminopimelate deacetylase	0.2634782034
+UniRef50_A8FCN2: N-acetyldiaminopimelate deacetylase|unclassified	0.2634782034
+UniRef50_A5VR47	0.2634672288
+UniRef50_A5VR47|unclassified	0.2634672288
+UniRef50_UPI0002F9EB26: hypothetical protein	0.2634349377
+UniRef50_UPI0002F9EB26: hypothetical protein|unclassified	0.2634349377
+UniRef50_E1HP77	0.2634089337
+UniRef50_E1HP77|unclassified	0.2634089337
+UniRef50_X5REA9	0.2634030944
+UniRef50_X5REA9|unclassified	0.2634030944
+UniRef50_J7Q6T5	0.2633828613
+UniRef50_J7Q6T5|unclassified	0.2633828613
+UniRef50_R1D5K5	0.2633724873
+UniRef50_R1D5K5|unclassified	0.2633724873
+UniRef50_UPI00029A5DDB: F0F1 ATP synthase subunit beta	0.2633687100
+UniRef50_UPI00029A5DDB: F0F1 ATP synthase subunit beta|unclassified	0.2633687100
+UniRef50_I0I0B9	0.2633609507
+UniRef50_I0I0B9|unclassified	0.2633609507
+UniRef50_K0S789	0.2633585155
+UniRef50_K0S789|unclassified	0.2633585155
+UniRef50_UPI000363E6FD: hypothetical protein	0.2633455809
+UniRef50_UPI000363E6FD: hypothetical protein|unclassified	0.2633455809
+UniRef50_UPI0002B45CA4: PREDICTED: riboflavin biosynthesis protein ribBA, chloroplastic-like	0.2633101649
+UniRef50_UPI0002B45CA4: PREDICTED: riboflavin biosynthesis protein ribBA, chloroplastic-like|unclassified	0.2633101649
+UniRef50_H1D9R7	0.2633098179
+UniRef50_H1D9R7|unclassified	0.2633098179
+UniRef50_UPI00045E7E19: uroporphyrin-III methyltransferase	0.2633021348
+UniRef50_UPI00045E7E19: uroporphyrin-III methyltransferase|unclassified	0.2633021348
+UniRef50_UPI0003B345A8: branched-chain amino acid aminotransferase	0.2632376246
+UniRef50_UPI0003B345A8: branched-chain amino acid aminotransferase|unclassified	0.2632376246
+UniRef50_C2GIT9	0.2631837569
+UniRef50_C2GIT9|unclassified	0.2631837569
+UniRef50_B9R471: Transporter, major facilitator family	0.2631677770
+UniRef50_B9R471: Transporter, major facilitator family|unclassified	0.2631677770
+UniRef50_UPI00045E7D30: hypothetical protein	0.2631600403
+UniRef50_UPI00045E7D30: hypothetical protein|unclassified	0.2631600403
+UniRef50_UPI0003726D73: hypothetical protein, partial	0.2631539256
+UniRef50_UPI0003726D73: hypothetical protein, partial|unclassified	0.2631539256
+UniRef50_A6FM33	0.2631528442
+UniRef50_A6FM33|unclassified	0.2631528442
+UniRef50_D5TSE5	0.2631478840
+UniRef50_D5TSE5|unclassified	0.2631478840
+UniRef50_A2TNS7	0.2631423054
+UniRef50_A2TNS7|unclassified	0.2631423054
+UniRef50_Q12V31: NH(3)-dependent NAD(+) synthetase	0.2631250345
+UniRef50_Q12V31: NH(3)-dependent NAD(+) synthetase|unclassified	0.2631250345
+UniRef50_UPI00027F1EE4	0.2631179376
+UniRef50_UPI00027F1EE4|unclassified	0.2631179376
+UniRef50_V9W7G7	0.2630873706
+UniRef50_V9W7G7|unclassified	0.2630873706
+UniRef50_F6AE44	0.2630554876
+UniRef50_F6AE44|unclassified	0.2630554876
+UniRef50_T1L1N9	0.2629967726
+UniRef50_T1L1N9|unclassified	0.2629967726
+UniRef50_Q1GV33	0.2629709214
+UniRef50_Q1GV33|unclassified	0.2629709214
+UniRef50_A0M7A9: Biotin synthase	0.2629645519
+UniRef50_A0M7A9: Biotin synthase|unclassified	0.2629645519
+UniRef50_Q8FJC7: DNA translocase FtsK	0.2629503024
+UniRef50_Q8FJC7: DNA translocase FtsK|g__Escherichia.s__Escherichia_coli	0.2629503024
+UniRef50_P61607: LexA repressor	0.2629236740
+UniRef50_P61607: LexA repressor|unclassified	0.2629236740
+UniRef50_A0A022L2T4	0.2628967191
+UniRef50_A0A022L2T4|unclassified	0.2628967191
+UniRef50_C3DBY4: Cystathionine beta-synthase	0.2628935168
+UniRef50_C3DBY4: Cystathionine beta-synthase|unclassified	0.2628935168
+UniRef50_UPI0003B768C4: MULTISPECIES: ribonuclease PH	0.2628645769
+UniRef50_UPI0003B768C4: MULTISPECIES: ribonuclease PH|unclassified	0.2628645769
+UniRef50_UPI0003AA29AA: flagellar basal body P-ring protein	0.2628611099
+UniRef50_UPI0003AA29AA: flagellar basal body P-ring protein|unclassified	0.2628611099
+UniRef50_A0A017Y7E3	0.2628610651
+UniRef50_A0A017Y7E3|unclassified	0.2628610651
+UniRef50_N6W5H5	0.2628195885
+UniRef50_N6W5H5|unclassified	0.2628195885
+UniRef50_UPI00036C607F: hypothetical protein	0.2628189778
+UniRef50_UPI00036C607F: hypothetical protein|unclassified	0.2628189778
+UniRef50_F1A2F8	0.2628143054
+UniRef50_F1A2F8|unclassified	0.2628143054
+UniRef50_UPI00041E2777: zinc protease	0.2628090132
+UniRef50_UPI00041E2777: zinc protease|unclassified	0.2628090132
+UniRef50_A8ZR93: Lytic transglycosylase catalytic	0.2627927322
+UniRef50_A8ZR93: Lytic transglycosylase catalytic|unclassified	0.2627927322
+UniRef50_UPI00046D310D: hypothetical protein	0.2627432684
+UniRef50_UPI00046D310D: hypothetical protein|unclassified	0.2627432684
+UniRef50_Q2CE76	0.2627222613
+UniRef50_Q2CE76|unclassified	0.2627222613
+UniRef50_B2TBF3	0.2627054046
+UniRef50_B2TBF3|unclassified	0.2627054046
+UniRef50_UPI0004651731: hypothetical protein, partial	0.2626948753
+UniRef50_UPI0004651731: hypothetical protein, partial|unclassified	0.2626948753
+UniRef50_X0PLV2: Excinuclease ABC	0.2626889734
+UniRef50_X0PLV2: Excinuclease ABC|unclassified	0.2626889734
+UniRef50_V4QLQ1	0.2626885577
+UniRef50_V4QLQ1|unclassified	0.2626885577
+UniRef50_UPI000378337E: hypothetical protein	0.2626875054
+UniRef50_UPI000378337E: hypothetical protein|unclassified	0.2626875054
+UniRef50_Q9RXT0: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.2626142578
+UniRef50_Q9RXT0: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.2626142578
+UniRef50_X6FNR2	0.2625485616
+UniRef50_X6FNR2|unclassified	0.2625485616
+UniRef50_G9ZT16: ComG operon protein 3 family protein	0.2625352854
+UniRef50_G9ZT16: ComG operon protein 3 family protein|unclassified	0.2625352854
+UniRef50_S5Y0L6	0.2625182355
+UniRef50_S5Y0L6|unclassified	0.2625182355
+UniRef50_UPI0003603E0E: hypothetical protein	0.2624989732
+UniRef50_UPI0003603E0E: hypothetical protein|unclassified	0.2624989732
+UniRef50_UPI0003B6F52D: hypothetical protein	0.2624502733
+UniRef50_UPI0003B6F52D: hypothetical protein|unclassified	0.2624502733
+UniRef50_W9DWH3	0.2624492959
+UniRef50_W9DWH3|unclassified	0.2624492959
+UniRef50_U6K627	0.2624339966
+UniRef50_U6K627|unclassified	0.2624339966
+UniRef50_B5JSU9	0.2624313627
+UniRef50_B5JSU9|unclassified	0.2624313627
+UniRef50_W8ZFK2	0.2624260371
+UniRef50_W8ZFK2|unclassified	0.2624260371
+UniRef50_UPI00029D9E8B: PREDICTED: phosphoglucomutase-like protein 5-like, partial	0.2624095598
+UniRef50_UPI00029D9E8B: PREDICTED: phosphoglucomutase-like protein 5-like, partial|unclassified	0.2624095598
+UniRef50_UPI0003714199: hypothetical protein	0.2624064252
+UniRef50_UPI0003714199: hypothetical protein|unclassified	0.2624064252
+UniRef50_G9QK14	0.2623953558
+UniRef50_G9QK14|unclassified	0.2623953558
+UniRef50_R4PLN2	0.2623870476
+UniRef50_R4PLN2|unclassified	0.2623870476
+UniRef50_U7QZ50	0.2623008481
+UniRef50_U7QZ50|unclassified	0.2623008481
+UniRef50_UPI0003B48EBA: N-acetyltransferase, partial	0.2622623514
+UniRef50_UPI0003B48EBA: N-acetyltransferase, partial|unclassified	0.2622623514
+UniRef50_UPI00037E07E8: hypothetical protein, partial	0.2621833438
+UniRef50_UPI00037E07E8: hypothetical protein, partial|unclassified	0.2621833438
+UniRef50_UPI0003665980: hypothetical protein	0.2621767377
+UniRef50_UPI0003665980: hypothetical protein|unclassified	0.2621767377
+UniRef50_Q9K8U9: Oligo-1,6-glucosidase	0.2621466512
+UniRef50_Q9K8U9: Oligo-1,6-glucosidase|unclassified	0.2621466512
+UniRef50_UPI000361E906: hypothetical protein	0.2621334410
+UniRef50_UPI000361E906: hypothetical protein|unclassified	0.2621334410
+UniRef50_UPI000375EF67: hypothetical protein	0.2621262170
+UniRef50_UPI000375EF67: hypothetical protein|unclassified	0.2621262170
+UniRef50_UPI000441854A: ribosomal protein L17	0.2621134348
+UniRef50_UPI000441854A: ribosomal protein L17|unclassified	0.2621134348
+UniRef50_D3P0H8: Transposase	0.2620792797
+UniRef50_D3P0H8: Transposase|unclassified	0.2620792797
+UniRef50_T0QDR6: Autoinducer-2 (AI-2) modifying protein LsrG	0.2620673083
+UniRef50_T0QDR6: Autoinducer-2 (AI-2) modifying protein LsrG|unclassified	0.2620673083
+UniRef50_Q1MNE3	0.2620618569
+UniRef50_Q1MNE3|unclassified	0.2620618569
+UniRef50_U3TK30: Iron-sulfur cluster assembly ATPase protein	0.2620607977
+UniRef50_U3TK30: Iron-sulfur cluster assembly ATPase protein|unclassified	0.2620607977
+UniRef50_L0MEY9	0.2620531087
+UniRef50_L0MEY9|unclassified	0.2620531087
+UniRef50_S9RV98	0.2620175286
+UniRef50_S9RV98|unclassified	0.2620175286
+UniRef50_W4UBB3: 2-amino-4-ketopentanoate thiolase	0.2620054404
+UniRef50_W4UBB3: 2-amino-4-ketopentanoate thiolase|unclassified	0.2620054404
+UniRef50_T9I5H2: Inner membrane transporter RhmT	0.2620042159
+UniRef50_T9I5H2: Inner membrane transporter RhmT|unclassified	0.2620042159
+UniRef50_UPI00039A1CD7: GDSL family lipase	0.2620007901
+UniRef50_UPI00039A1CD7: GDSL family lipase|unclassified	0.2620007901
+UniRef50_X0WED3: Marine sediment metagenome DNA, contig: S01H1_S32902 (Fragment)	0.2619743901
+UniRef50_X0WED3: Marine sediment metagenome DNA, contig: S01H1_S32902 (Fragment)|unclassified	0.2619743901
+UniRef50_B2IX22: Nucleoside diphosphate kinase	0.2619309948
+UniRef50_B2IX22: Nucleoside diphosphate kinase|unclassified	0.2619309948
+UniRef50_W9GWC0: Rrf2 family transcriptional regulator	0.2619113652
+UniRef50_W9GWC0: Rrf2 family transcriptional regulator|unclassified	0.2619113652
+UniRef50_V5EQM5	0.2619031868
+UniRef50_V5EQM5|unclassified	0.2619031868
+UniRef50_UPI0003B49D4F: phospholipase	0.2618955553
+UniRef50_UPI0003B49D4F: phospholipase|unclassified	0.2618955553
+UniRef50_Q2NCT3: Peptide deformylase	0.2618760731
+UniRef50_Q2NCT3: Peptide deformylase|unclassified	0.2618760731
+UniRef50_UPI0003B38912: hypothetical protein	0.2618674039
+UniRef50_UPI0003B38912: hypothetical protein|unclassified	0.2618674039
+UniRef50_K0CHJ7: BolA-like protein	0.2618586934
+UniRef50_K0CHJ7: BolA-like protein|unclassified	0.2618586934
+UniRef50_A6U8U1: IS66 Orf2 family protein	0.2618514862
+UniRef50_A6U8U1: IS66 Orf2 family protein|unclassified	0.2618514862
+UniRef50_R6Y7R5: Arabinose efflux permease family protein	0.2618425006
+UniRef50_R6Y7R5: Arabinose efflux permease family protein|unclassified	0.2618425006
+UniRef50_D1CA48: Nuclear export factor GLE1	0.2618060847
+UniRef50_D1CA48: Nuclear export factor GLE1|unclassified	0.2618060847
+UniRef50_C1EGE2: Predicted protein	0.2618010429
+UniRef50_C1EGE2: Predicted protein|unclassified	0.2618010429
+UniRef50_N6TUL7	0.2617962095
+UniRef50_N6TUL7|unclassified	0.2617962095
+UniRef50_B4FRE6	0.2617767098
+UniRef50_B4FRE6|unclassified	0.2617767098
+UniRef50_UPI00036F76A2: hypothetical protein	0.2617448223
+UniRef50_UPI00036F76A2: hypothetical protein|unclassified	0.2617448223
+UniRef50_UPI0004261724: hypothetical protein	0.2617345615
+UniRef50_UPI0004261724: hypothetical protein|unclassified	0.2617345615
+UniRef50_UPI0003728AAF: MULTISPECIES: hypothetical protein	0.2617044646
+UniRef50_UPI0003728AAF: MULTISPECIES: hypothetical protein|unclassified	0.2617044646
+UniRef50_P11160: Lipopolysaccharide export system ATP-binding protein LptB (Fragment)	0.2616971547
+UniRef50_P11160: Lipopolysaccharide export system ATP-binding protein LptB (Fragment)|unclassified	0.2616971547
+UniRef50_D9QVH2: UPF0178 protein Acear_0691	0.2616835550
+UniRef50_D9QVH2: UPF0178 protein Acear_0691|unclassified	0.2616835550
+UniRef50_K5VHW7: 6-pyruvoyl tetrahydropterin synthase family protein (Fragment)	0.2616410173
+UniRef50_K5VHW7: 6-pyruvoyl tetrahydropterin synthase family protein (Fragment)|unclassified	0.2616410173
+UniRef50_D7CVJ1: Transcriptional regulator, BadM/Rrf2 family	0.2616159963
+UniRef50_D7CVJ1: Transcriptional regulator, BadM/Rrf2 family|unclassified	0.2616159963
+UniRef50_R7KGT9	0.2615899120
+UniRef50_R7KGT9|unclassified	0.2615899120
+UniRef50_A3V0X0: Membrane protein, putative	0.2615849921
+UniRef50_A3V0X0: Membrane protein, putative|unclassified	0.2615849921
+UniRef50_UPI00047E3BE8: antibiotic ABC transporter ATP-binding protein	0.2615827318
+UniRef50_UPI00047E3BE8: antibiotic ABC transporter ATP-binding protein|unclassified	0.2615827318
+UniRef50_UPI0002B4638C: PREDICTED: translation factor GUF1 homolog, chloroplastic-like	0.2615774881
+UniRef50_UPI0002B4638C: PREDICTED: translation factor GUF1 homolog, chloroplastic-like|unclassified	0.2615774881
+UniRef50_A0A046SME3	0.2615556616
+UniRef50_A0A046SME3|unclassified	0.2615556616
+UniRef50_UPI00041F446B: ABC transporter	0.2615424232
+UniRef50_UPI00041F446B: ABC transporter|unclassified	0.2615424232
+UniRef50_P36007: Threo-3-hydroxyaspartate ammonia-lyase	0.2615217247
+UniRef50_P36007: Threo-3-hydroxyaspartate ammonia-lyase|unclassified	0.2615217247
+UniRef50_UPI00036B888E: hypothetical protein	0.2615171765
+UniRef50_UPI00036B888E: hypothetical protein|unclassified	0.2615171765
+UniRef50_UPI0003AE0E04	0.2614506166
+UniRef50_UPI0003AE0E04|unclassified	0.2614506166
+UniRef50_Q5H1A4: Transposase	0.2614477513
+UniRef50_Q5H1A4: Transposase|unclassified	0.2614477513
+UniRef50_UPI000468A625: ABC transporter ATP-binding protein	0.2614308789
+UniRef50_UPI000468A625: ABC transporter ATP-binding protein|unclassified	0.2614308789
+UniRef50_B0RWZ6	0.2614251891
+UniRef50_B0RWZ6|unclassified	0.2614251891
+UniRef50_F1U7I1	0.2614223651
+UniRef50_F1U7I1|unclassified	0.2614223651
+UniRef50_G2T6A4	0.2614115640
+UniRef50_G2T6A4|unclassified	0.2614115640
+UniRef50_UPI0002652736: PREDICTED: aldehyde dehydrogenase family 9 member A1-A-like	0.2614077934
+UniRef50_UPI0002652736: PREDICTED: aldehyde dehydrogenase family 9 member A1-A-like|unclassified	0.2614077934
+UniRef50_K8N6Z0	0.2613906569
+UniRef50_K8N6Z0|unclassified	0.2613906569
+UniRef50_B6IU75	0.2613748876
+UniRef50_B6IU75|unclassified	0.2613748876
+UniRef50_C2Z6P3: Enterotoxin	0.2613641752
+UniRef50_C2Z6P3: Enterotoxin|unclassified	0.2613641752
+UniRef50_Q6FC14	0.2613403958
+UniRef50_Q6FC14|unclassified	0.2613403958
+UniRef50_UPI0001FFDE62: resolvase domain-containing protein	0.2613380667
+UniRef50_UPI0001FFDE62: resolvase domain-containing protein|unclassified	0.2613380667
+UniRef50_Q32EN7	0.2613252227
+UniRef50_Q32EN7|unclassified	0.2613252227
+UniRef50_B4FRS7	0.2613203072
+UniRef50_B4FRS7|unclassified	0.2613203072
+UniRef50_Q0G3Q9: RrF2 family protein	0.2613179270
+UniRef50_Q0G3Q9: RrF2 family protein|unclassified	0.2613179270
+UniRef50_A0A016T0A4	0.2612943366
+UniRef50_A0A016T0A4|unclassified	0.2612943366
+UniRef50_M9D0U1	0.2612900532
+UniRef50_M9D0U1|unclassified	0.2612900532
+UniRef50_UPI0003B570ED: plasmid stablization protein ParB	0.2612810838
+UniRef50_UPI0003B570ED: plasmid stablization protein ParB|unclassified	0.2612810838
+UniRef50_U1D8Q6	0.2612770114
+UniRef50_U1D8Q6|unclassified	0.2612770114
+UniRef50_M2PQV7	0.2612662311
+UniRef50_M2PQV7|unclassified	0.2612662311
+UniRef50_Q6NDA8	0.2612636515
+UniRef50_Q6NDA8|unclassified	0.2612636515
+UniRef50_UPI0004688599: homocysteine methyltransferase	0.2611952978
+UniRef50_UPI0004688599: homocysteine methyltransferase|unclassified	0.2611952978
+UniRef50_R4X107: Anti-sigma-factor antagonist	0.2611770869
+UniRef50_R4X107: Anti-sigma-factor antagonist|unclassified	0.2611770869
+UniRef50_UPI0003B4774F: coproporphyrinogen III oxidase	0.2611759677
+UniRef50_UPI0003B4774F: coproporphyrinogen III oxidase|unclassified	0.2611759677
+UniRef50_UPI0004710C19: hypothetical protein	0.2611684152
+UniRef50_UPI0004710C19: hypothetical protein|unclassified	0.2611684152
+UniRef50_UPI00047722BC: chloramphenicol acetyltransferase	0.2611676289
+UniRef50_UPI00047722BC: chloramphenicol acetyltransferase|unclassified	0.2611676289
+UniRef50_UPI00017455BE: probable DNA repair exonuclease	0.2611606899
+UniRef50_UPI00017455BE: probable DNA repair exonuclease|unclassified	0.2611606899
+UniRef50_UPI0000167300: COG0174: Glutamine synthetase	0.2611344266
+UniRef50_UPI0000167300: COG0174: Glutamine synthetase|unclassified	0.2611344266
+UniRef50_X7Y8I7	0.2611185522
+UniRef50_X7Y8I7|unclassified	0.2611185522
+UniRef50_P80481: Succinate dehydrogenase cytochrome b560 subunit	0.2610868098
+UniRef50_P80481: Succinate dehydrogenase cytochrome b560 subunit|unclassified	0.2610868098
+UniRef50_X7FED8	0.2610747064
+UniRef50_X7FED8|unclassified	0.2610747064
+UniRef50_UPI000374923B: hypothetical protein, partial	0.2610490218
+UniRef50_UPI000374923B: hypothetical protein, partial|unclassified	0.2610490218
+UniRef50_A3AX69	0.2610310083
+UniRef50_A3AX69|unclassified	0.2610310083
+UniRef50_Q1GKJ0	0.2610300715
+UniRef50_Q1GKJ0|unclassified	0.2610300715
+UniRef50_E0TDZ6	0.2610275497
+UniRef50_E0TDZ6|unclassified	0.2610275497
+UniRef50_UPI000328F7E5: PREDICTED: mucin-1-like	0.2609983194
+UniRef50_UPI000328F7E5: PREDICTED: mucin-1-like|unclassified	0.2609983194
+UniRef50_S4N256	0.2609889251
+UniRef50_S4N256|unclassified	0.2609889251
+UniRef50_W1H2S5: Type IV fimbrial assembly protein PilC	0.2609761933
+UniRef50_W1H2S5: Type IV fimbrial assembly protein PilC|unclassified	0.2609761933
+UniRef50_Q634K1: Transposase	0.2609623334
+UniRef50_Q634K1: Transposase|unclassified	0.2609623334
+UniRef50_UPI00037BA9AE: hypothetical protein	0.2609602923
+UniRef50_UPI00037BA9AE: hypothetical protein|unclassified	0.2609602923
+UniRef50_Q3J7E7: Malate dehydrogenase	0.2609245456
+UniRef50_Q3J7E7: Malate dehydrogenase|unclassified	0.2609245456
+UniRef50_K7VT43	0.2609220180
+UniRef50_K7VT43|unclassified	0.2609220180
+UniRef50_F8GG26	0.2609184049
+UniRef50_F8GG26|unclassified	0.2609184049
+UniRef50_UPI0004709F4B: hypothetical protein	0.2609066689
+UniRef50_UPI0004709F4B: hypothetical protein|unclassified	0.2609066689
+UniRef50_A0A028X7D1: LPXTG cell wall anchor domain protein (Fragment)	0.2609018787
+UniRef50_A0A028X7D1: LPXTG cell wall anchor domain protein (Fragment)|unclassified	0.2609018787
+UniRef50_UPI00047B8B73: ABC transporter permease	0.2609000056
+UniRef50_UPI00047B8B73: ABC transporter permease|unclassified	0.2609000056
+UniRef50_C6V4Z3	0.2608982537
+UniRef50_C6V4Z3|unclassified	0.2608982537
+UniRef50_UPI0003B38EE4: multidrug transporter	0.2608922551
+UniRef50_UPI0003B38EE4: multidrug transporter|unclassified	0.2608922551
+UniRef50_UPI000362483E: hypothetical protein	0.2608922339
+UniRef50_UPI000362483E: hypothetical protein|unclassified	0.2608922339
+UniRef50_UPI00037450A2: hypothetical protein, partial	0.2608744077
+UniRef50_UPI00037450A2: hypothetical protein, partial|unclassified	0.2608744077
+UniRef50_Q88WP5: tRNA dimethylallyltransferase	0.2608237227
+UniRef50_Q88WP5: tRNA dimethylallyltransferase|unclassified	0.2608237227
+UniRef50_A0A017SZP2	0.2608222075
+UniRef50_A0A017SZP2|unclassified	0.2608222075
+UniRef50_E0N8C0	0.2608081660
+UniRef50_E0N8C0|unclassified	0.2608081660
+UniRef50_UPI000379035F: hypothetical protein	0.2607939930
+UniRef50_UPI000379035F: hypothetical protein|unclassified	0.2607939930
+UniRef50_D6K1U6: LuxR-family transcriptional regulator	0.2607658683
+UniRef50_D6K1U6: LuxR-family transcriptional regulator|unclassified	0.2607658683
+UniRef50_M9UY12	0.2607136679
+UniRef50_M9UY12|unclassified	0.2607136679
+UniRef50_UPI00029D91EA	0.2606654937
+UniRef50_UPI00029D91EA|unclassified	0.2606654937
+UniRef50_B1Y0T0: Protein-L-isoaspartate O-methyltransferase	0.2606638689
+UniRef50_B1Y0T0: Protein-L-isoaspartate O-methyltransferase|unclassified	0.2606638689
+UniRef50_U7HV52	0.2606626139
+UniRef50_U7HV52|unclassified	0.2606626139
+UniRef50_UPI0003B71BA4: ABC transporter permease, partial	0.2606608618
+UniRef50_UPI0003B71BA4: ABC transporter permease, partial|unclassified	0.2606608618
+UniRef50_F2L8H1: Heat shock protein	0.2606564321
+UniRef50_F2L8H1: Heat shock protein|unclassified	0.2606564321
+UniRef50_A6FB89: DNA integration/recombination/invertion protein	0.2606404327
+UniRef50_A6FB89: DNA integration/recombination/invertion protein|unclassified	0.2606404327
+UniRef50_G9E7X5: Protein fecR	0.2606174313
+UniRef50_G9E7X5: Protein fecR|unclassified	0.2606174313
+UniRef50_V7EGW4	0.2606138787
+UniRef50_V7EGW4|unclassified	0.2606138787
+UniRef50_Q3CYB2: Arsenate reductase	0.2605950239
+UniRef50_Q3CYB2: Arsenate reductase|unclassified	0.2605950239
+UniRef50_UPI000477945F: signal peptidase	0.2605834644
+UniRef50_UPI000477945F: signal peptidase|unclassified	0.2605834644
+UniRef50_UPI0004700444: hypothetical protein	0.2605591705
+UniRef50_UPI0004700444: hypothetical protein|unclassified	0.2605591705
+UniRef50_U7QZ32	0.2605532117
+UniRef50_U7QZ32|unclassified	0.2605532117
+UniRef50_UPI00035DB1EC: 50S ribosomal protein L3, partial	0.2605491949
+UniRef50_UPI00035DB1EC: 50S ribosomal protein L3, partial|unclassified	0.2605491949
+UniRef50_W4HHB0: Lipoprotein	0.2605482350
+UniRef50_W4HHB0: Lipoprotein|unclassified	0.2605482350
+UniRef50_UPI0002EB25EF: hypothetical protein	0.2605456216
+UniRef50_UPI0002EB25EF: hypothetical protein|unclassified	0.2605456216
+UniRef50_UPI00036D2492: hypothetical protein	0.2605126332
+UniRef50_UPI00036D2492: hypothetical protein|unclassified	0.2605126332
+UniRef50_H2IZU5: TIGR00156 family protein	0.2605121223
+UniRef50_H2IZU5: TIGR00156 family protein|unclassified	0.2605121223
+UniRef50_UPI0003B32B2D: glutathione ABC transporter ATP-binding protein	0.2604689060
+UniRef50_UPI0003B32B2D: glutathione ABC transporter ATP-binding protein|unclassified	0.2604689060
+UniRef50_E3J760	0.2604634136
+UniRef50_E3J760|unclassified	0.2604634136
+UniRef50_UPI00037A67A4: hypothetical protein	0.2604612691
+UniRef50_UPI00037A67A4: hypothetical protein|unclassified	0.2604612691
+UniRef50_K7EXQ4	0.2604356353
+UniRef50_K7EXQ4|unclassified	0.2604356353
+UniRef50_UPI0001B42DAA: hypothetical protein, partial	0.2604228178
+UniRef50_UPI0001B42DAA: hypothetical protein, partial|unclassified	0.2604228178
+UniRef50_K4HHP1	0.2604191420
+UniRef50_K4HHP1|unclassified	0.2604191420
+UniRef50_L1DZM9	0.2603415122
+UniRef50_L1DZM9|unclassified	0.2603415122
+UniRef50_C3A4M2	0.2603246141
+UniRef50_C3A4M2|unclassified	0.2603246141
+UniRef50_A6NPX7	0.2602953566
+UniRef50_A6NPX7|unclassified	0.2602953566
+UniRef50_UPI00037EF707: 3-methyladenine DNA glycosylase	0.2602712920
+UniRef50_UPI00037EF707: 3-methyladenine DNA glycosylase|unclassified	0.2602712920
+UniRef50_UPI00036F4733: hypothetical protein	0.2602462338
+UniRef50_UPI00036F4733: hypothetical protein|unclassified	0.2602462338
+UniRef50_M2P318	0.2602346673
+UniRef50_M2P318|unclassified	0.2602346673
+UniRef50_A0A026T9E5	0.2601828925
+UniRef50_A0A026T9E5|unclassified	0.2601828925
+UniRef50_E3DAW5: Transposase of insertion element IS911A	0.2601802853
+UniRef50_E3DAW5: Transposase of insertion element IS911A|unclassified	0.2601802853
+UniRef50_K2GJS9	0.2601755684
+UniRef50_K2GJS9|unclassified	0.2601755684
+UniRef50_UPI0004720299: hypothetical protein	0.2601746196
+UniRef50_UPI0004720299: hypothetical protein|unclassified	0.2601746196
+UniRef50_E0THP5	0.2601736243
+UniRef50_E0THP5|unclassified	0.2601736243
+UniRef50_UPI000407945C: hypothetical protein	0.2601708175
+UniRef50_UPI000407945C: hypothetical protein|unclassified	0.2601708175
+UniRef50_UPI0001745E56: ATPase components of ABC transporters with duplicated ATPase domains	0.2601529902
+UniRef50_UPI0001745E56: ATPase components of ABC transporters with duplicated ATPase domains|unclassified	0.2601529902
+UniRef50_UPI000255D60C: transposase IS3/IS911 family protein	0.2601286212
+UniRef50_UPI000255D60C: transposase IS3/IS911 family protein|unclassified	0.2601286212
+UniRef50_UPI00037B25EC: hypothetical protein	0.2600849661
+UniRef50_UPI00037B25EC: hypothetical protein|unclassified	0.2600849661
+UniRef50_A2RM12: Transcriptional regulator, DeoR family	0.2600808541
+UniRef50_A2RM12: Transcriptional regulator, DeoR family|unclassified	0.2600808541
+UniRef50_B9TEX5	0.2600746268
+UniRef50_B9TEX5|unclassified	0.2600746268
+UniRef50_F3ZGU5: Putative integral membrane protein	0.2600477099
+UniRef50_F3ZGU5: Putative integral membrane protein|unclassified	0.2600477099
+UniRef50_T0UWY2	0.2600470864
+UniRef50_T0UWY2|unclassified	0.2600470864
+UniRef50_F3GFB2: ABC transporter, substrate-binding protein, aliphatic sulfonate (Fragment)	0.2600443274
+UniRef50_F3GFB2: ABC transporter, substrate-binding protein, aliphatic sulfonate (Fragment)|unclassified	0.2600443274
+UniRef50_W0ZUH7	0.2600352967
+UniRef50_W0ZUH7|unclassified	0.2600352967
+UniRef50_UPI000465924F: hypothetical protein	0.2600134031
+UniRef50_UPI000465924F: hypothetical protein|unclassified	0.2600134031
+UniRef50_C8N9Y7	0.2599982653
+UniRef50_C8N9Y7|unclassified	0.2599982653
+UniRef50_J1ED08	0.2599957948
+UniRef50_J1ED08|unclassified	0.2599957948
+UniRef50_R5LWG8	0.2599614455
+UniRef50_R5LWG8|unclassified	0.2599614455
+UniRef50_UPI00038107A2: hypothetical protein	0.2599245538
+UniRef50_UPI00038107A2: hypothetical protein|unclassified	0.2599245538
+UniRef50_C6NXI4: Integrase, catalytic region	0.2599201388
+UniRef50_C6NXI4: Integrase, catalytic region|unclassified	0.2599201388
+UniRef50_M9RQV8	0.2599130223
+UniRef50_M9RQV8|unclassified	0.2599130223
+UniRef50_UPI0001E27CFA: DSBA oxidoreductase, partial	0.2599033958
+UniRef50_UPI0001E27CFA: DSBA oxidoreductase, partial|unclassified	0.2599033958
+UniRef50_UPI000367C3C5: hypothetical protein	0.2598907948
+UniRef50_UPI000367C3C5: hypothetical protein|unclassified	0.2598907948
+UniRef50_A0A011NS05	0.2598822059
+UniRef50_A0A011NS05|unclassified	0.2598822059
+UniRef50_G9W1N9: Enterobactin synthetase component F	0.2598752599
+UniRef50_G9W1N9: Enterobactin synthetase component F|g__Escherichia.s__Escherichia_coli	0.2598752599
+UniRef50_K4R856	0.2598747205
+UniRef50_K4R856|unclassified	0.2598747205
+UniRef50_N1ZDW1	0.2598736430
+UniRef50_N1ZDW1|unclassified	0.2598736430
+UniRef50_UPI00038EE146: PREDICTED: spidroin-1-like	0.2598633050
+UniRef50_UPI00038EE146: PREDICTED: spidroin-1-like|unclassified	0.2598633050
+UniRef50_M3DCH5: 3-deoxy-D-manno-octulosonic acid (KDO) 8-phosphate synthase	0.2598622430
+UniRef50_M3DCH5: 3-deoxy-D-manno-octulosonic acid (KDO) 8-phosphate synthase|unclassified	0.2598622430
+UniRef50_Q07792: Arylesterase	0.2598455771
+UniRef50_Q07792: Arylesterase|unclassified	0.2598455771
+UniRef50_UPI0003D2A318: homoserine dehydrogenase	0.2598386258
+UniRef50_UPI0003D2A318: homoserine dehydrogenase|unclassified	0.2598386258
+UniRef50_Q3JS13	0.2598280576
+UniRef50_Q3JS13|unclassified	0.2598280576
+UniRef50_Q16BY7: C4-dicarboxylate transport system, small permease protein, putative	0.2598219185
+UniRef50_Q16BY7: C4-dicarboxylate transport system, small permease protein, putative|unclassified	0.2598219185
+UniRef50_Q4L9T1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.2598122345
+UniRef50_Q4L9T1: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.2598122345
+UniRef50_A0A022LQG6: Glyoxalase	0.2597894090
+UniRef50_A0A022LQG6: Glyoxalase|unclassified	0.2597894090
+UniRef50_UPI0003622CBE: hypothetical protein	0.2597376691
+UniRef50_UPI0003622CBE: hypothetical protein|unclassified	0.2597376691
+UniRef50_Q2GYM4: Predicted protein	0.2597243695
+UniRef50_Q2GYM4: Predicted protein|unclassified	0.2597243695
+UniRef50_UPI0003B3AB91: D-arabinose 5-phosphate isomerase, partial	0.2597116434
+UniRef50_UPI0003B3AB91: D-arabinose 5-phosphate isomerase, partial|unclassified	0.2597116434
+UniRef50_UPI000475110F: cytidylyltransferase	0.2596889812
+UniRef50_UPI000475110F: cytidylyltransferase|unclassified	0.2596889812
+UniRef50_B1I504: Peptide deformylase	0.2596552081
+UniRef50_B1I504: Peptide deformylase|unclassified	0.2596552081
+UniRef50_UPI00036C8DDF: hypothetical protein	0.2596458776
+UniRef50_UPI00036C8DDF: hypothetical protein|unclassified	0.2596458776
+UniRef50_Q5LAB4: 3-isopropylmalate dehydrogenase	0.2596412846
+UniRef50_Q5LAB4: 3-isopropylmalate dehydrogenase|unclassified	0.2596412846
+UniRef50_P21912: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial	0.2596226414
+UniRef50_P21912: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial|unclassified	0.2596226414
+UniRef50_F0YFY7: Expressed protein (Fragment)	0.2595606738
+UniRef50_F0YFY7: Expressed protein (Fragment)|unclassified	0.2595606738
+UniRef50_UPI000425B436: hypothetical protein	0.2595292924
+UniRef50_UPI000425B436: hypothetical protein|unclassified	0.2595292924
+UniRef50_UPI0003163C51: hypothetical protein	0.2594848493
+UniRef50_UPI0003163C51: hypothetical protein|unclassified	0.2594848493
+UniRef50_F4QY29: Zinc-finger domain protein	0.2594769178
+UniRef50_F4QY29: Zinc-finger domain protein|unclassified	0.2594769178
+UniRef50_B9TFJ1	0.2594616329
+UniRef50_B9TFJ1|unclassified	0.2594616329
+UniRef50_UPI00046B7E26: PREDICTED: bone marrow stromal antigen 2	0.2594597754
+UniRef50_UPI00046B7E26: PREDICTED: bone marrow stromal antigen 2|unclassified	0.2594597754
+UniRef50_R4K5W8	0.2594290358
+UniRef50_R4K5W8|unclassified	0.2594290358
+UniRef50_P54570: ADP-ribose pyrophosphatase	0.2594183217
+UniRef50_P54570: ADP-ribose pyrophosphatase|unclassified	0.2594183217
+UniRef50_UPI0003B74B63: aldolase	0.2594033961
+UniRef50_UPI0003B74B63: aldolase|unclassified	0.2594033961
+UniRef50_G2TER8: YciI-like protein	0.2594004455
+UniRef50_G2TER8: YciI-like protein|unclassified	0.2594004455
+UniRef50_F3KEZ9: Carbon monoxide dehydrogenase large chain	0.2593894148
+UniRef50_F3KEZ9: Carbon monoxide dehydrogenase large chain|unclassified	0.2593894148
+UniRef50_C6SLW0: Transposase for insertion sequence element IS1106	0.2593800196
+UniRef50_C6SLW0: Transposase for insertion sequence element IS1106|unclassified	0.2593800196
+UniRef50_X2GQ78	0.2593387780
+UniRef50_X2GQ78|unclassified	0.2593387780
+UniRef50_UPI0004678A2B: cystathionine beta-lyase, partial	0.2593380377
+UniRef50_UPI0004678A2B: cystathionine beta-lyase, partial|unclassified	0.2593380377
+UniRef50_UPI00035C58A3: hypothetical protein	0.2593246543
+UniRef50_UPI00035C58A3: hypothetical protein|unclassified	0.2593246543
+UniRef50_UPI0004722F57: hypothetical protein	0.2593219139
+UniRef50_UPI0004722F57: hypothetical protein|unclassified	0.2593219139
+UniRef50_P50141: GTP cyclohydrolase 1	0.2593211911
+UniRef50_P50141: GTP cyclohydrolase 1|unclassified	0.2593211911
+UniRef50_D6V8I1	0.2592738452
+UniRef50_D6V8I1|unclassified	0.2592738452
+UniRef50_UPI000477801B: hypothetical protein	0.2592628723
+UniRef50_UPI000477801B: hypothetical protein|unclassified	0.2592628723
+UniRef50_UPI0003B32174: electron transporter RnfC	0.2592497595
+UniRef50_UPI0003B32174: electron transporter RnfC|unclassified	0.2592497595
+UniRef50_UPI000364980E: hypothetical protein	0.2592478419
+UniRef50_UPI000364980E: hypothetical protein|unclassified	0.2592478419
+UniRef50_B2W926: Predicted protein	0.2592474048
+UniRef50_B2W926: Predicted protein|unclassified	0.2592474048
+UniRef50_B9JDU5	0.2592457159
+UniRef50_B9JDU5|unclassified	0.2592457159
+UniRef50_S5Y0Q1: Replication initiator protein DnaA	0.2592387869
+UniRef50_S5Y0Q1: Replication initiator protein DnaA|unclassified	0.2592387869
+UniRef50_UPI00036068C9: hypothetical protein	0.2592356397
+UniRef50_UPI00036068C9: hypothetical protein|unclassified	0.2592356397
+UniRef50_U6M3Q7	0.2591911171
+UniRef50_U6M3Q7|unclassified	0.2591911171
+UniRef50_Q2IRS8: Periplasmic binding protein	0.2591836662
+UniRef50_Q2IRS8: Periplasmic binding protein|unclassified	0.2591836662
+UniRef50_UPI0004709C10: phosphopantetheine adenylyltransferase	0.2591574218
+UniRef50_UPI0004709C10: phosphopantetheine adenylyltransferase|unclassified	0.2591574218
+UniRef50_UPI0004164EBA: preprotein translocase subunit SecB	0.2591452088
+UniRef50_UPI0004164EBA: preprotein translocase subunit SecB|unclassified	0.2591452088
+UniRef50_Q9RZM4	0.2591179626
+UniRef50_Q9RZM4|unclassified	0.2591179626
+UniRef50_UPI0003A2225C: hypothetical protein	0.2591027727
+UniRef50_UPI0003A2225C: hypothetical protein|unclassified	0.2591027727
+UniRef50_Y3MAH8	0.2590242151
+UniRef50_Y3MAH8|unclassified	0.2590242151
+UniRef50_A5F1C1: D-ribose pyranase	0.2589854462
+UniRef50_A5F1C1: D-ribose pyranase|unclassified	0.2589854462
+UniRef50_K2AWF2: L-asparaginase II (Fragment)	0.2589832470
+UniRef50_K2AWF2: L-asparaginase II (Fragment)|unclassified	0.2589832470
+UniRef50_UPI00037C0AF6: hypothetical protein, partial	0.2589817140
+UniRef50_UPI00037C0AF6: hypothetical protein, partial|unclassified	0.2589817140
+UniRef50_UPI00036272CC: hypothetical protein	0.2589775927
+UniRef50_UPI00036272CC: hypothetical protein|unclassified	0.2589775927
+UniRef50_Q8VNR0: ST56 protein	0.2589733709
+UniRef50_Q8VNR0: ST56 protein|unclassified	0.2589733709
+UniRef50_G2TBH4: Cyclase/dehydrase	0.2589688874
+UniRef50_G2TBH4: Cyclase/dehydrase|unclassified	0.2589688874
+UniRef50_UPI0004700F13: hypothetical protein	0.2589298580
+UniRef50_UPI0004700F13: hypothetical protein|unclassified	0.2589298580
+UniRef50_UPI0003A7C65E: MULTISPECIES: carbamate kinase	0.2589282768
+UniRef50_UPI0003A7C65E: MULTISPECIES: carbamate kinase|unclassified	0.2589282768
+UniRef50_B7J9K5: Holo-[acyl-carrier-protein] synthase	0.2589167014
+UniRef50_B7J9K5: Holo-[acyl-carrier-protein] synthase|unclassified	0.2589167014
+UniRef50_C3LF10: Membrane protein, MmpL family	0.2588990755
+UniRef50_C3LF10: Membrane protein, MmpL family|unclassified	0.2588990755
+UniRef50_UPI0003513255	0.2588851212
+UniRef50_UPI0003513255|unclassified	0.2588851212
+UniRef50_UPI0001BF5AD6: hypothetical protein SMAC_10306, partial	0.2588772918
+UniRef50_UPI0001BF5AD6: hypothetical protein SMAC_10306, partial|unclassified	0.2588772918
+UniRef50_J0W6I5: Transposase (Fragment)	0.2588684620
+UniRef50_J0W6I5: Transposase (Fragment)|unclassified	0.2588684620
+UniRef50_H6LN03	0.2588634105
+UniRef50_H6LN03|unclassified	0.2588634105
+UniRef50_D5AKK7	0.2588497290
+UniRef50_D5AKK7|unclassified	0.2588497290
+UniRef50_V7FIU0	0.2588377985
+UniRef50_V7FIU0|unclassified	0.2588377985
+UniRef50_UPI0001D2D59A: acyltransferase 3	0.2588232948
+UniRef50_UPI0001D2D59A: acyltransferase 3|unclassified	0.2588232948
+UniRef50_Q2K2A5: Hypothetical conserved protein	0.2588145978
+UniRef50_Q2K2A5: Hypothetical conserved protein|unclassified	0.2588145978
+UniRef50_UPI00046A8244: hypothetical protein, partial	0.2588052607
+UniRef50_UPI00046A8244: hypothetical protein, partial|unclassified	0.2588052607
+UniRef50_UPI0003901D86: hypothetical protein	0.2588023612
+UniRef50_UPI0003901D86: hypothetical protein|unclassified	0.2588023612
+UniRef50_I3TQL0: Lactobacillus shifted protein	0.2588009285
+UniRef50_I3TQL0: Lactobacillus shifted protein|unclassified	0.2588009285
+UniRef50_P80480: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit	0.2587940588
+UniRef50_P80480: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit|unclassified	0.2587940588
+UniRef50_UPI00047E1625: hypothetical protein	0.2587833602
+UniRef50_UPI00047E1625: hypothetical protein|unclassified	0.2587833602
+UniRef50_K2JIJ7	0.2587734619
+UniRef50_K2JIJ7|unclassified	0.2587734619
+UniRef50_UPI00045D965A: PREDICTED: cathelicidin-3-like, partial	0.2587663005
+UniRef50_UPI00045D965A: PREDICTED: cathelicidin-3-like, partial|unclassified	0.2587663005
+UniRef50_UPI00047B031E: hypothetical protein	0.2587619358
+UniRef50_UPI00047B031E: hypothetical protein|unclassified	0.2587619358
+UniRef50_UPI000471D567: hypothetical protein, partial	0.2587479131
+UniRef50_UPI000471D567: hypothetical protein, partial|unclassified	0.2587479131
+UniRef50_Q7NIR9: Phosphoribosylformylglycinamidine synthase 2	0.2587457664
+UniRef50_Q7NIR9: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.2587457664
+UniRef50_UPI0002D2EA81: hypothetical protein	0.2587344709
+UniRef50_UPI0002D2EA81: hypothetical protein|unclassified	0.2587344709
+UniRef50_Q039B5: Imidazole glycerol phosphate synthase subunit HisF	0.2587330624
+UniRef50_Q039B5: Imidazole glycerol phosphate synthase subunit HisF|unclassified	0.2587330624
+UniRef50_UPI000466460D: hypothetical protein	0.2587150133
+UniRef50_UPI000466460D: hypothetical protein|unclassified	0.2587150133
+UniRef50_UPI000368AAAC: peptidase, partial	0.2587143980
+UniRef50_UPI000368AAAC: peptidase, partial|unclassified	0.2587143980
+UniRef50_UPI0003764B6A: hypothetical protein	0.2587120836
+UniRef50_UPI0003764B6A: hypothetical protein|unclassified	0.2587120836
+UniRef50_D4GML0	0.2587108876
+UniRef50_D4GML0|unclassified	0.2587108876
+UniRef50_UPI00046A82C0: 3-methyladenine DNA glycosylase	0.2587070229
+UniRef50_UPI00046A82C0: 3-methyladenine DNA glycosylase|unclassified	0.2587070229
+UniRef50_X5NY15: Oligopeptide-binding protein oppA	0.2587036806
+UniRef50_X5NY15: Oligopeptide-binding protein oppA|unclassified	0.2587036806
+UniRef50_UPI00036B762B: hypothetical protein, partial	0.2586988158
+UniRef50_UPI00036B762B: hypothetical protein, partial|unclassified	0.2586988158
+UniRef50_F1T6L7	0.2586975419
+UniRef50_F1T6L7|unclassified	0.2586975419
+UniRef50_W8UZE6: Transposase	0.2586718543
+UniRef50_W8UZE6: Transposase|unclassified	0.2586718543
+UniRef50_UPI0003B3AA51: formate dehydrogenase accessory protein FdhD	0.2586696685
+UniRef50_UPI0003B3AA51: formate dehydrogenase accessory protein FdhD|unclassified	0.2586696685
+UniRef50_UPI00047246AA: hypothetical protein	0.2586674473
+UniRef50_UPI00047246AA: hypothetical protein|unclassified	0.2586674473
+UniRef50_UPI00047C9C40: hypothetical protein	0.2586513480
+UniRef50_UPI00047C9C40: hypothetical protein|unclassified	0.2586513480
+UniRef50_K7SLZ0: Transcriptional regulator/antitoxin, MazE	0.2586469489
+UniRef50_K7SLZ0: Transcriptional regulator/antitoxin, MazE|unclassified	0.2586469489
+UniRef50_B7J8G6: Ribosomal RNA large subunit methyltransferase E	0.2586446579
+UniRef50_B7J8G6: Ribosomal RNA large subunit methyltransferase E|unclassified	0.2586446579
+UniRef50_UPI000185097B: xanthine permease	0.2586417388
+UniRef50_UPI000185097B: xanthine permease|unclassified	0.2586417388
+UniRef50_UPI00046FDA02: hypothetical protein	0.2586335076
+UniRef50_UPI00046FDA02: hypothetical protein|unclassified	0.2586335076
+UniRef50_Q16762: Thiosulfate sulfurtransferase	0.2585160189
+UniRef50_Q16762: Thiosulfate sulfurtransferase|unclassified	0.2585160189
+UniRef50_S5PD01: Response regulator	0.2585020735
+UniRef50_S5PD01: Response regulator|unclassified	0.2585020735
+UniRef50_UPI00034DE29F: hypothetical protein	0.2584763710
+UniRef50_UPI00034DE29F: hypothetical protein|unclassified	0.2584763710
+UniRef50_UPI00034F7428: PREDICTED: AP-1 complex subunit mu-1 isoform X1	0.2584689892
+UniRef50_UPI00034F7428: PREDICTED: AP-1 complex subunit mu-1 isoform X1|unclassified	0.2584689892
+UniRef50_Q9L3H1	0.2584494782
+UniRef50_Q9L3H1|unclassified	0.2584494782
+UniRef50_L0FKA9	0.2584480283
+UniRef50_L0FKA9|unclassified	0.2584480283
+UniRef50_UPI00016C46F4: hypothetical protein	0.2584444950
+UniRef50_UPI00016C46F4: hypothetical protein|unclassified	0.2584444950
+UniRef50_UPI00042B4F01: Xylose isomerase family protein isoform 4	0.2584051545
+UniRef50_UPI00042B4F01: Xylose isomerase family protein isoform 4|unclassified	0.2584051545
+UniRef50_UPI00047022DB: luciferase	0.2583996503
+UniRef50_UPI00047022DB: luciferase|unclassified	0.2583996503
+UniRef50_O62584: Thymidylate synthase 1/2	0.2583629087
+UniRef50_O62584: Thymidylate synthase 1/2|unclassified	0.2583629087
+UniRef50_L5S2T2	0.2583551596
+UniRef50_L5S2T2|unclassified	0.2583551596
+UniRef50_G7EGZ3: Lipoprotein-releasing system permease protein	0.2583459596
+UniRef50_G7EGZ3: Lipoprotein-releasing system permease protein|unclassified	0.2583459596
+UniRef50_UPI000364277A: hypothetical protein	0.2583377355
+UniRef50_UPI000364277A: hypothetical protein|unclassified	0.2583377355
+UniRef50_Q7P3Y5: NagD protein	0.2583039034
+UniRef50_Q7P3Y5: NagD protein|unclassified	0.2583039034
+UniRef50_UPI000378563E: hypothetical protein	0.2582824189
+UniRef50_UPI000378563E: hypothetical protein|unclassified	0.2582824189
+UniRef50_UPI0004764961: molecular chaperone GroEL	0.2582773693
+UniRef50_UPI0004764961: molecular chaperone GroEL|unclassified	0.2582773693
+UniRef50_UPI00036A37D7: hypothetical protein	0.2582755834
+UniRef50_UPI00036A37D7: hypothetical protein|unclassified	0.2582755834
+UniRef50_N6YIN7	0.2582623179
+UniRef50_N6YIN7|unclassified	0.2582623179
+UniRef50_A3K9M4: Transposase orfA IS5 family element	0.2582567647
+UniRef50_A3K9M4: Transposase orfA IS5 family element|unclassified	0.2582567647
+UniRef50_UPI00041536E5: hypothetical protein	0.2582482459
+UniRef50_UPI00041536E5: hypothetical protein|unclassified	0.2582482459
+UniRef50_Y1DU05: Long-chain fatty acid transporter	0.2582453853
+UniRef50_Y1DU05: Long-chain fatty acid transporter|unclassified	0.2582453853
+UniRef50_P39567: Putative inosine-5'-monophosphate dehydrogenase 1	0.2581811001
+UniRef50_P39567: Putative inosine-5'-monophosphate dehydrogenase 1|unclassified	0.2581811001
+UniRef50_UPI000477901C: hypothetical protein, partial	0.2581780359
+UniRef50_UPI000477901C: hypothetical protein, partial|unclassified	0.2581780359
+UniRef50_L3UKA2	0.2581327097
+UniRef50_L3UKA2|unclassified	0.2581327097
+UniRef50_K0RDN0	0.2581311306
+UniRef50_K0RDN0|unclassified	0.2581311306
+UniRef50_B5GD55	0.2580875517
+UniRef50_B5GD55|unclassified	0.2580875517
+UniRef50_UPI00047310EB: hypothetical protein	0.2580861737
+UniRef50_UPI00047310EB: hypothetical protein|unclassified	0.2580861737
+UniRef50_C0AUX1	0.2580565112
+UniRef50_C0AUX1|unclassified	0.2580565112
+UniRef50_V7CLV8	0.2580477911
+UniRef50_V7CLV8|unclassified	0.2580477911
+UniRef50_A0A034TNY7: Secreted and surface protein containing fasciclin-like repeat	0.2580447806
+UniRef50_A0A034TNY7: Secreted and surface protein containing fasciclin-like repeat|unclassified	0.2580447806
+UniRef50_I1F0D0	0.2580445093
+UniRef50_I1F0D0|unclassified	0.2580445093
+UniRef50_F2AKS8: Ferripyochelin-binding protein	0.2580434685
+UniRef50_F2AKS8: Ferripyochelin-binding protein|unclassified	0.2580434685
+UniRef50_Y4H7Q2	0.2580220105
+UniRef50_Y4H7Q2|unclassified	0.2580220105
+UniRef50_UPI0003728FFC: hypothetical protein	0.2580186372
+UniRef50_UPI0003728FFC: hypothetical protein|unclassified	0.2580186372
+UniRef50_S6V5G1: Radical SAM domain-containing protein (Fragment)	0.2580125216
+UniRef50_S6V5G1: Radical SAM domain-containing protein (Fragment)|unclassified	0.2580125216
+UniRef50_UPI00042CC86F	0.2580048186
+UniRef50_UPI00042CC86F|unclassified	0.2580048186
+UniRef50_V9QMH3	0.2580035120
+UniRef50_V9QMH3|unclassified	0.2580035120
+UniRef50_Q75FU1: Acetylglutamate kinase	0.2579698116
+UniRef50_Q75FU1: Acetylglutamate kinase|unclassified	0.2579698116
+UniRef50_Q04CU2: Predicted nucleoside-diphosphate-sugar epimerase	0.2579638963
+UniRef50_Q04CU2: Predicted nucleoside-diphosphate-sugar epimerase|unclassified	0.2579638963
+UniRef50_E3EYD1: Invasion associated locus B family protein	0.2579536045
+UniRef50_E3EYD1: Invasion associated locus B family protein|unclassified	0.2579536045
+UniRef50_UPI0004784BC0: ArsR family transcriptional regulator	0.2579520223
+UniRef50_UPI0004784BC0: ArsR family transcriptional regulator|unclassified	0.2579520223
+UniRef50_UPI0003B76181: hypothetical protein	0.2579389631
+UniRef50_UPI0003B76181: hypothetical protein|unclassified	0.2579389631
+UniRef50_L3UEQ5: Hydrogenase-4 component A	0.2579352167
+UniRef50_L3UEQ5: Hydrogenase-4 component A|unclassified	0.2579352167
+UniRef50_UPI00046875A3: ferritin	0.2579096114
+UniRef50_UPI00046875A3: ferritin|unclassified	0.2579096114
+UniRef50_UPI000470880B: hypothetical protein	0.2578779342
+UniRef50_UPI000470880B: hypothetical protein|unclassified	0.2578779342
+UniRef50_K8BQL1: Outer membrane lipoprotein YidQ	0.2578775960
+UniRef50_K8BQL1: Outer membrane lipoprotein YidQ|unclassified	0.2578775960
+UniRef50_E2XYA4: Cyclase/dehydrase	0.2578771504
+UniRef50_E2XYA4: Cyclase/dehydrase|unclassified	0.2578771504
+UniRef50_UPI0004705A42: major facilitator transporter, partial	0.2578303301
+UniRef50_UPI0004705A42: major facilitator transporter, partial|unclassified	0.2578303301
+UniRef50_UPI0004162B84: hypothetical protein	0.2577961900
+UniRef50_UPI0004162B84: hypothetical protein|unclassified	0.2577961900
+UniRef50_A0A016VZ49	0.2577583755
+UniRef50_A0A016VZ49|unclassified	0.2577583755
+UniRef50_L0MK58	0.2577496127
+UniRef50_L0MK58|unclassified	0.2577496127
+UniRef50_UPI0001913039: uracil permease	0.2577403275
+UniRef50_UPI0001913039: uracil permease|unclassified	0.2577403275
+UniRef50_C3X5J2	0.2577330815
+UniRef50_C3X5J2|unclassified	0.2577330815
+UniRef50_UPI0003B4526C: cytochrome C biogenesis protein	0.2577095388
+UniRef50_UPI0003B4526C: cytochrome C biogenesis protein|unclassified	0.2577095388
+UniRef50_M7EI95	0.2577007584
+UniRef50_M7EI95|unclassified	0.2577007584
+UniRef50_UPI00035DBFFC: hypothetical protein	0.2576975096
+UniRef50_UPI00035DBFFC: hypothetical protein|unclassified	0.2576975096
+UniRef50_UPI000363A104: potassium transporter Kef	0.2576793180
+UniRef50_UPI000363A104: potassium transporter Kef|unclassified	0.2576793180
+UniRef50_Q1IL91: NADH-quinone oxidoreductase subunit B 2	0.2576544967
+UniRef50_Q1IL91: NADH-quinone oxidoreductase subunit B 2|unclassified	0.2576544967
+UniRef50_UPI00000E271B: hypothetical protein SO_A0118	0.2576445538
+UniRef50_UPI00000E271B: hypothetical protein SO_A0118|unclassified	0.2576445538
+UniRef50_Q8VTT5: D-hydantoinase	0.2576175803
+UniRef50_Q8VTT5: D-hydantoinase|unclassified	0.2576175803
+UniRef50_C9YCW7	0.2576096923
+UniRef50_C9YCW7|unclassified	0.2576096923
+UniRef50_UPI000273CE56	0.2576092102
+UniRef50_UPI000273CE56|unclassified	0.2576092102
+UniRef50_J3N076	0.2575785643
+UniRef50_J3N076|unclassified	0.2575785643
+UniRef50_UPI0001FFF173: LmbE family protein, partial	0.2575254480
+UniRef50_UPI0001FFF173: LmbE family protein, partial|unclassified	0.2575254480
+UniRef50_P93306: NADH dehydrogenase [ubiquinone] iron-sulfur protein 2	0.2575130778
+UniRef50_P93306: NADH dehydrogenase [ubiquinone] iron-sulfur protein 2|unclassified	0.2575130778
+UniRef50_G8AXA5	0.2575116476
+UniRef50_G8AXA5|unclassified	0.2575116476
+UniRef50_Q2G3F4: Undecaprenyl-diphosphatase	0.2575094657
+UniRef50_Q2G3F4: Undecaprenyl-diphosphatase|unclassified	0.2575094657
+UniRef50_X4UV83: Sulfite oxidase subunit YedZ	0.2575032997
+UniRef50_X4UV83: Sulfite oxidase subunit YedZ|unclassified	0.2575032997
+UniRef50_UPI0004700D4E: hypothetical protein	0.2574963122
+UniRef50_UPI0004700D4E: hypothetical protein|unclassified	0.2574963122
+UniRef50_UPI00038304E6: hypothetical protein M271_24355	0.2574883339
+UniRef50_UPI00038304E6: hypothetical protein M271_24355|unclassified	0.2574883339
+UniRef50_I3UM60	0.2574867870
+UniRef50_I3UM60|unclassified	0.2574867870
+UniRef50_W5CQ63	0.2574802955
+UniRef50_W5CQ63|unclassified	0.2574802955
+UniRef50_UPI0004403F5A: PREDICTED: translation factor GUF1, mitochondrial isoform X7	0.2574758847
+UniRef50_UPI0004403F5A: PREDICTED: translation factor GUF1, mitochondrial isoform X7|unclassified	0.2574758847
+UniRef50_UPI00047A74F7: cystathionine gamma-synthase	0.2574622279
+UniRef50_UPI00047A74F7: cystathionine gamma-synthase|unclassified	0.2574622279
+UniRef50_K9B034: SceA protein	0.2574158318
+UniRef50_K9B034: SceA protein|unclassified	0.2574158318
+UniRef50_UPI000363D9BF: hypothetical protein, partial	0.2573861369
+UniRef50_UPI000363D9BF: hypothetical protein, partial|unclassified	0.2573861369
+UniRef50_Q217C7: ABC-type Co2+ transport system, periplasmic component	0.2573674264
+UniRef50_Q217C7: ABC-type Co2+ transport system, periplasmic component|unclassified	0.2573674264
+UniRef50_G2DTB6	0.2573450626
+UniRef50_G2DTB6|unclassified	0.2573450626
+UniRef50_C8S4K0	0.2573021720
+UniRef50_C8S4K0|unclassified	0.2573021720
+UniRef50_UPI00028835CE: glutamate dehydrogenase	0.2572905800
+UniRef50_UPI00028835CE: glutamate dehydrogenase|unclassified	0.2572905800
+UniRef50_Q4T085: Chromosome undetermined SCAF11289, whole genome shotgun sequence. (Fragment)	0.2572712114
+UniRef50_Q4T085: Chromosome undetermined SCAF11289, whole genome shotgun sequence. (Fragment)|unclassified	0.2572712114
+UniRef50_W0YMI4: GTP-binding protein LepA	0.2572484794
+UniRef50_W0YMI4: GTP-binding protein LepA|unclassified	0.2572484794
+UniRef50_UPI00035EC48D: metallophosphoesterase	0.2572335028
+UniRef50_UPI00035EC48D: metallophosphoesterase|unclassified	0.2572335028
+UniRef50_M5D5S2: Capsule assembly, only in sialic acid capsules	0.2572156081
+UniRef50_M5D5S2: Capsule assembly, only in sialic acid capsules|unclassified	0.2572156081
+UniRef50_UPI00035FBF92: hypothetical protein, partial	0.2572016461
+UniRef50_UPI00035FBF92: hypothetical protein, partial|unclassified	0.2572016461
+UniRef50_UPI0003718757: hypothetical protein	0.2571788997
+UniRef50_UPI0003718757: hypothetical protein|unclassified	0.2571788997
+UniRef50_F9T8M0	0.2571782213
+UniRef50_F9T8M0|unclassified	0.2571782213
+UniRef50_UPI0003462712: hypothetical protein	0.2571731276
+UniRef50_UPI0003462712: hypothetical protein|unclassified	0.2571731276
+UniRef50_W6L595: Genomic scaffold, scaffold_6	0.2571528019
+UniRef50_W6L595: Genomic scaffold, scaffold_6|unclassified	0.2571528019
+UniRef50_W4YP61	0.2571380772
+UniRef50_W4YP61|unclassified	0.2571380772
+UniRef50_I1R477	0.2571114198
+UniRef50_I1R477|unclassified	0.2571114198
+UniRef50_UPI00045E335F: PREDICTED: proline-rich proteoglycan 2-like	0.2571067012
+UniRef50_UPI00045E335F: PREDICTED: proline-rich proteoglycan 2-like|unclassified	0.2571067012
+UniRef50_UPI000225B945: hypothetical protein	0.2570950193
+UniRef50_UPI000225B945: hypothetical protein|unclassified	0.2570950193
+UniRef50_UPI00036D0344: hypothetical protein, partial	0.2570930509
+UniRef50_UPI00036D0344: hypothetical protein, partial|unclassified	0.2570930509
+UniRef50_B8FJP4: Phosphoglycerate kinase	0.2570838902
+UniRef50_B8FJP4: Phosphoglycerate kinase|unclassified	0.2570838902
+UniRef50_G6ENG5: ComG operon protein 2	0.2570429684
+UniRef50_G6ENG5: ComG operon protein 2|unclassified	0.2570429684
+UniRef50_T0UP00: Late competence protein ComGF, access of DNA to ComEA	0.2570230409
+UniRef50_T0UP00: Late competence protein ComGF, access of DNA to ComEA|unclassified	0.2570230409
+UniRef50_Q0ARE0	0.2570127871
+UniRef50_Q0ARE0|unclassified	0.2570127871
+UniRef50_V4RE09	0.2569844742
+UniRef50_V4RE09|unclassified	0.2569844742
+UniRef50_UPI0003B30938: thiol:disulfide interchange protein	0.2569839077
+UniRef50_UPI0003B30938: thiol:disulfide interchange protein|unclassified	0.2569839077
+UniRef50_UPI0004645BE9: membrane protein	0.2569835078
+UniRef50_UPI0004645BE9: membrane protein|unclassified	0.2569835078
+UniRef50_A0A022I9K8: Pirin family protein	0.2569453991
+UniRef50_A0A022I9K8: Pirin family protein|unclassified	0.2569453991
+UniRef50_D2MQC8: Prepilin-type cleavage/methylation N-terminal domain protein	0.2569443438
+UniRef50_D2MQC8: Prepilin-type cleavage/methylation N-terminal domain protein|unclassified	0.2569443438
+UniRef50_H0XZB6	0.2569373073
+UniRef50_H0XZB6|unclassified	0.2569373073
+UniRef50_UPI0003FC0328: hypothetical protein	0.2569103635
+UniRef50_UPI0003FC0328: hypothetical protein|unclassified	0.2569103635
+UniRef50_UPI00038330C2: PREDICTED: radical S-adenosyl methionine domain-containing protein 1, mitochondrial	0.2568954865
+UniRef50_UPI00038330C2: PREDICTED: radical S-adenosyl methionine domain-containing protein 1, mitochondrial|unclassified	0.2568954865
+UniRef50_A7ZG95	0.2568809073
+UniRef50_A7ZG95|unclassified	0.2568809073
+UniRef50_UPI0004675D08: hypothetical protein, partial	0.2568703902
+UniRef50_UPI0004675D08: hypothetical protein, partial|unclassified	0.2568703902
+UniRef50_UPI00047150D6: hypothetical protein	0.2568693106
+UniRef50_UPI00047150D6: hypothetical protein|unclassified	0.2568693106
+UniRef50_P9WP73: Oxygen-independent coproporphyrinogen-III oxidase-like protein Rv2388c	0.2568684509
+UniRef50_P9WP73: Oxygen-independent coproporphyrinogen-III oxidase-like protein Rv2388c|unclassified	0.2568684509
+UniRef50_E5U257	0.2568650821
+UniRef50_E5U257|unclassified	0.2568650821
+UniRef50_E6QK66	0.2568278438
+UniRef50_E6QK66|unclassified	0.2568278438
+UniRef50_Q218J4: Carbon monoxide dehydrogenase subunit G	0.2568223051
+UniRef50_Q218J4: Carbon monoxide dehydrogenase subunit G|unclassified	0.2568223051
+UniRef50_UPI00035EDF5B: hypothetical protein	0.2568151112
+UniRef50_UPI00035EDF5B: hypothetical protein|unclassified	0.2568151112
+UniRef50_A3VKE0	0.2568091195
+UniRef50_A3VKE0|unclassified	0.2568091195
+UniRef50_UPI00037E81FE: hypothetical protein	0.2567695578
+UniRef50_UPI00037E81FE: hypothetical protein|unclassified	0.2567695578
+UniRef50_UPI0002D3A412: hypothetical protein	0.2567669801
+UniRef50_UPI0002D3A412: hypothetical protein|unclassified	0.2567669801
+UniRef50_UPI000378D05D: hypothetical protein	0.2567340005
+UniRef50_UPI000378D05D: hypothetical protein|unclassified	0.2567340005
+UniRef50_UPI0003B59EC5: methyltransferase	0.2567270116
+UniRef50_UPI0003B59EC5: methyltransferase|unclassified	0.2567270116
+UniRef50_C8RZ04	0.2566963178
+UniRef50_C8RZ04|unclassified	0.2566963178
+UniRef50_T2LHY4	0.2566505634
+UniRef50_T2LHY4|unclassified	0.2566505634
+UniRef50_UPI0002F0F51D: hypothetical protein	0.2566489573
+UniRef50_UPI0002F0F51D: hypothetical protein|unclassified	0.2566489573
+UniRef50_UPI00036DE3F1: hypothetical protein	0.2566391588
+UniRef50_UPI00036DE3F1: hypothetical protein|unclassified	0.2566391588
+UniRef50_UPI0003604A76: hypothetical protein	0.2566346951
+UniRef50_UPI0003604A76: hypothetical protein|unclassified	0.2566346951
+UniRef50_UPI0002883E0D: DeoR family transcriptional regulator	0.2566235266
+UniRef50_UPI0002883E0D: DeoR family transcriptional regulator|unclassified	0.2566235266
+UniRef50_UPI000255BF67: heptaprenyl diphosphate synthase subunit II	0.2566115902
+UniRef50_UPI000255BF67: heptaprenyl diphosphate synthase subunit II|unclassified	0.2566115902
+UniRef50_UPI0004767239: imidazole glycerol phosphate synthase	0.2566093896
+UniRef50_UPI0004767239: imidazole glycerol phosphate synthase|unclassified	0.2566093896
+UniRef50_Q8DJ05: Magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase 1	0.2566015027
+UniRef50_Q8DJ05: Magnesium-protoporphyrin IX monomethyl ester [oxidative] cyclase 1|unclassified	0.2566015027
+UniRef50_UPI0003B74B1A: amino acid permease	0.2565892607
+UniRef50_UPI0003B74B1A: amino acid permease|unclassified	0.2565892607
+UniRef50_UPI000474CE19: hypothetical protein, partial	0.2565873354
+UniRef50_UPI000474CE19: hypothetical protein, partial|unclassified	0.2565873354
+UniRef50_UPI0002881E51: adaptor protein	0.2565783003
+UniRef50_UPI0002881E51: adaptor protein|unclassified	0.2565783003
+UniRef50_UPI000477C98F: hypothetical protein	0.2565599976
+UniRef50_UPI000477C98F: hypothetical protein|unclassified	0.2565599976
+UniRef50_UPI000395D19F: FlhB	0.2565431599
+UniRef50_UPI000395D19F: FlhB|unclassified	0.2565431599
+UniRef50_UPI00026263C9: amidase	0.2565209920
+UniRef50_UPI00026263C9: amidase|unclassified	0.2565209920
+UniRef50_UPI0004658FE1: hypothetical protein	0.2564917877
+UniRef50_UPI0004658FE1: hypothetical protein|unclassified	0.2564917877
+UniRef50_F0N1G5: Transcription-repair-coupling factor	0.2564760195
+UniRef50_F0N1G5: Transcription-repair-coupling factor|g__Neisseria.s__Neisseria_meningitidis	0.2564760195
+UniRef50_D4BBD9	0.2564690392
+UniRef50_D4BBD9|unclassified	0.2564690392
+UniRef50_I3BR70: Nitrate reductase cytochrome c-type subunit (NapB)	0.2564616514
+UniRef50_I3BR70: Nitrate reductase cytochrome c-type subunit (NapB)|unclassified	0.2564616514
+UniRef50_N9UR93	0.2564223151
+UniRef50_N9UR93|unclassified	0.2564223151
+UniRef50_K8YQR1: Response regulator receiver domain-containing protein (Fragment)	0.2564182077
+UniRef50_K8YQR1: Response regulator receiver domain-containing protein (Fragment)|unclassified	0.2564182077
+UniRef50_UPI000006751A: nitrogen regulatory protein PII-like protein	0.2564115942
+UniRef50_UPI000006751A: nitrogen regulatory protein PII-like protein|unclassified	0.2564115942
+UniRef50_UPI00047EED24: glycine/betaine ABC transporter	0.2563841333
+UniRef50_UPI00047EED24: glycine/betaine ABC transporter|unclassified	0.2563841333
+UniRef50_B9XI35	0.2563782397
+UniRef50_B9XI35|unclassified	0.2563782397
+UniRef50_F8UBV5: Gp45	0.2563735787
+UniRef50_F8UBV5: Gp45|unclassified	0.2563735787
+UniRef50_I3UFI4	0.2563695183
+UniRef50_I3UFI4|unclassified	0.2563695183
+UniRef50_V0HZJ9: Cysteine desulfurase ATPase component (Fragment)	0.2563553866
+UniRef50_V0HZJ9: Cysteine desulfurase ATPase component (Fragment)|unclassified	0.2563553866
+UniRef50_Q0F2E4: Diheme cytochrome c	0.2563446752
+UniRef50_Q0F2E4: Diheme cytochrome c|unclassified	0.2563446752
+UniRef50_A0A023XH87	0.2563445740
+UniRef50_A0A023XH87|unclassified	0.2563445740
+UniRef50_UPI00036BA72B: hypothetical protein	0.2563405574
+UniRef50_UPI00036BA72B: hypothetical protein|unclassified	0.2563405574
+UniRef50_UPI0003B40D78: sugar ABC transporter, partial	0.2563331780
+UniRef50_UPI0003B40D78: sugar ABC transporter, partial|unclassified	0.2563331780
+UniRef50_UPI0002379F69: alanine dehydrogenase	0.2563283464
+UniRef50_UPI0002379F69: alanine dehydrogenase|unclassified	0.2563283464
+UniRef50_J2H5V2	0.2563079170
+UniRef50_J2H5V2|unclassified	0.2563079170
+UniRef50_A1AYP2	0.2562944215
+UniRef50_A1AYP2|unclassified	0.2562944215
+UniRef50_W9EZY2: Transcriptional regulator	0.2562815867
+UniRef50_W9EZY2: Transcriptional regulator|unclassified	0.2562815867
+UniRef50_D3P1R8	0.2562665788
+UniRef50_D3P1R8|unclassified	0.2562665788
+UniRef50_G0EU06	0.2562478020
+UniRef50_G0EU06|unclassified	0.2562478020
+UniRef50_D4GLV8: YicN	0.2562399031
+UniRef50_D4GLV8: YicN|unclassified	0.2562399031
+UniRef50_UPI00047697C0: RNA polymerase sigma70 factor	0.2562373953
+UniRef50_UPI00047697C0: RNA polymerase sigma70 factor|unclassified	0.2562373953
+UniRef50_A9BDW2: Na+/melibiose symporter	0.2562275879
+UniRef50_A9BDW2: Na+/melibiose symporter|unclassified	0.2562275879
+UniRef50_A3ACY4	0.2562265724
+UniRef50_A3ACY4|unclassified	0.2562265724
+UniRef50_I3EXH8	0.2562224482
+UniRef50_I3EXH8|unclassified	0.2562224482
+UniRef50_Q8YN97: Ribose-phosphate pyrophosphokinase	0.2562159658
+UniRef50_Q8YN97: Ribose-phosphate pyrophosphokinase|unclassified	0.2562159658
+UniRef50_UPI00035D4F8C: hypothetical protein	0.2562134077
+UniRef50_UPI00035D4F8C: hypothetical protein|unclassified	0.2562134077
+UniRef50_UPI0003692D13: hypothetical protein	0.2562067381
+UniRef50_UPI0003692D13: hypothetical protein|unclassified	0.2562067381
+UniRef50_UPI00036C7A0B: hypothetical protein, partial	0.2561872662
+UniRef50_UPI00036C7A0B: hypothetical protein, partial|unclassified	0.2561872662
+UniRef50_R4X2B2: Cupin 2 conserved barrel	0.2561869031
+UniRef50_R4X2B2: Cupin 2 conserved barrel|unclassified	0.2561869031
+UniRef50_A7SV73: Predicted protein	0.2561783466
+UniRef50_A7SV73: Predicted protein|unclassified	0.2561783466
+UniRef50_UPI00036948E6: hypothetical protein	0.2561384571
+UniRef50_UPI00036948E6: hypothetical protein|unclassified	0.2561384571
+UniRef50_A0A032ZQV5	0.2560934820
+UniRef50_A0A032ZQV5|unclassified	0.2560934820
+UniRef50_UPI00038115B9: hypothetical protein	0.2560930404
+UniRef50_UPI00038115B9: hypothetical protein|unclassified	0.2560930404
+UniRef50_G2MHY8: Cupin 2 conserved barrel domain protein	0.2560584379
+UniRef50_G2MHY8: Cupin 2 conserved barrel domain protein|unclassified	0.2560584379
+UniRef50_B5I8H7: Esterase/lipase/thioesterase	0.2560384389
+UniRef50_B5I8H7: Esterase/lipase/thioesterase|unclassified	0.2560384389
+UniRef50_UPI0004649936: flagellin	0.2560244818
+UniRef50_UPI0004649936: flagellin|unclassified	0.2560244818
+UniRef50_W1U1V3: Nickel ABC transporter, permease subunit NikB	0.2560229228
+UniRef50_W1U1V3: Nickel ABC transporter, permease subunit NikB|unclassified	0.2560229228
+UniRef50_A0A035UC67	0.2560053933
+UniRef50_A0A035UC67|unclassified	0.2560053933
+UniRef50_Q7VDQ5: Imidazoleglycerol-phosphate dehydratase	0.2559922561
+UniRef50_Q7VDQ5: Imidazoleglycerol-phosphate dehydratase|unclassified	0.2559922561
+UniRef50_UPI00047B9195: MFS transporter	0.2559907713
+UniRef50_UPI00047B9195: MFS transporter|unclassified	0.2559907713
+UniRef50_Q08329: Ribosomal RNA small subunit methyltransferase I (Fragment)	0.2559703930
+UniRef50_Q08329: Ribosomal RNA small subunit methyltransferase I (Fragment)|unclassified	0.2559703930
+UniRef50_UPI00037796C2: hypothetical protein	0.2559687685
+UniRef50_UPI00037796C2: hypothetical protein|unclassified	0.2559687685
+UniRef50_B2VWD4: Predicted protein	0.2559670848
+UniRef50_B2VWD4: Predicted protein|unclassified	0.2559670848
+UniRef50_W2SPT9	0.2559657353
+UniRef50_W2SPT9|unclassified	0.2559657353
+UniRef50_L5JM43	0.2559647604
+UniRef50_L5JM43|unclassified	0.2559647604
+UniRef50_A0A023DKR6	0.2559328099
+UniRef50_A0A023DKR6|unclassified	0.2559328099
+UniRef50_C6D6B7: Extracellular solute-binding protein family 1	0.2559241706
+UniRef50_C6D6B7: Extracellular solute-binding protein family 1|unclassified	0.2559241706
+UniRef50_M9R3T5	0.2559033846
+UniRef50_M9R3T5|unclassified	0.2559033846
+UniRef50_UPI000467D816: cyclase	0.2558763066
+UniRef50_UPI000467D816: cyclase|unclassified	0.2558763066
+UniRef50_UPI0003901246: hypothetical protein	0.2558675818
+UniRef50_UPI0003901246: hypothetical protein|unclassified	0.2558675818
+UniRef50_UPI000466A069: DNA repair exonuclease	0.2558611724
+UniRef50_UPI000466A069: DNA repair exonuclease|unclassified	0.2558611724
+UniRef50_UPI0003771BFD: hypothetical protein	0.2558581914
+UniRef50_UPI0003771BFD: hypothetical protein|unclassified	0.2558581914
+UniRef50_A0A059IQW4: Transposase IS66	0.2558424397
+UniRef50_A0A059IQW4: Transposase IS66|unclassified	0.2558424397
+UniRef50_UPI0003787852: hypothetical protein	0.2558322061
+UniRef50_UPI0003787852: hypothetical protein|unclassified	0.2558322061
+UniRef50_D0LTZ5: SCP-like extracellular	0.2558212417
+UniRef50_D0LTZ5: SCP-like extracellular|unclassified	0.2558212417
+UniRef50_UPI000465CB11: choline dehydrogenase	0.2558080759
+UniRef50_UPI000465CB11: choline dehydrogenase|unclassified	0.2558080759
+UniRef50_UPI00029A05D3: threonyl-tRNA synthetase	0.2558056372
+UniRef50_UPI00029A05D3: threonyl-tRNA synthetase|unclassified	0.2558056372
+UniRef50_UPI00046D19BF: hypothetical protein	0.2557918924
+UniRef50_UPI00046D19BF: hypothetical protein|unclassified	0.2557918924
+UniRef50_UPI0003644DE3: hypothetical protein	0.2557904618
+UniRef50_UPI0003644DE3: hypothetical protein|unclassified	0.2557904618
+UniRef50_J8TW62: IS66 Orf2 family protein (Fragment)	0.2557843025
+UniRef50_J8TW62: IS66 Orf2 family protein (Fragment)|unclassified	0.2557843025
+UniRef50_W1JYZ3	0.2557735073
+UniRef50_W1JYZ3|unclassified	0.2557735073
+UniRef50_UPI0003B3C36A: nitrogen-fixing protein NifU	0.2557418723
+UniRef50_UPI0003B3C36A: nitrogen-fixing protein NifU|unclassified	0.2557418723
+UniRef50_F3U262: Tail sheath protein	0.2557252461
+UniRef50_F3U262: Tail sheath protein|unclassified	0.2557252461
+UniRef50_A4FBF7: Elongation factor P	0.2557107582
+UniRef50_A4FBF7: Elongation factor P|unclassified	0.2557107582
+UniRef50_UPI00036502F5: hypothetical protein	0.2556899873
+UniRef50_UPI00036502F5: hypothetical protein|unclassified	0.2556899873
+UniRef50_A9MF32: Protein-L-isoaspartate O-methyltransferase	0.2556316261
+UniRef50_A9MF32: Protein-L-isoaspartate O-methyltransferase|unclassified	0.2556316261
+UniRef50_J9P8Z1	0.2556031191
+UniRef50_J9P8Z1|unclassified	0.2556031191
+UniRef50_E3Q7K1	0.2555482144
+UniRef50_E3Q7K1|unclassified	0.2555482144
+UniRef50_N1LTV0	0.2555481059
+UniRef50_N1LTV0|unclassified	0.2555481059
+UniRef50_V4REQ5: Bacteriophytochrome heme oxygenase BphO	0.2555347824
+UniRef50_V4REQ5: Bacteriophytochrome heme oxygenase BphO|unclassified	0.2555347824
+UniRef50_D9Y290	0.2555335622
+UniRef50_D9Y290|unclassified	0.2555335622
+UniRef50_Z9W2S3	0.2555077170
+UniRef50_Z9W2S3|unclassified	0.2555077170
+UniRef50_UPI000255A889: TetR family transcriptional regulator	0.2554650608
+UniRef50_UPI000255A889: TetR family transcriptional regulator|unclassified	0.2554650608
+UniRef50_I7ITF3: NADH ubiquinone oxidoreductase subunit	0.2554628242
+UniRef50_I7ITF3: NADH ubiquinone oxidoreductase subunit|unclassified	0.2554628242
+UniRef50_J9YYX2	0.2554393501
+UniRef50_J9YYX2|unclassified	0.2554393501
+UniRef50_UPI0003711421: hypothetical protein, partial	0.2554202620
+UniRef50_UPI0003711421: hypothetical protein, partial|unclassified	0.2554202620
+UniRef50_M5Q4Y7	0.2554143414
+UniRef50_M5Q4Y7|unclassified	0.2554143414
+UniRef50_UPI0003EE9416: peptide ABC transporter permease, partial	0.2554040308
+UniRef50_UPI0003EE9416: peptide ABC transporter permease, partial|unclassified	0.2554040308
+UniRef50_UPI000333CE73	0.2553834486
+UniRef50_UPI000333CE73|unclassified	0.2553834486
+UniRef50_UPI00047EEAC2: hypothetical protein	0.2553662865
+UniRef50_UPI00047EEAC2: hypothetical protein|unclassified	0.2553662865
+UniRef50_B8EPE4: Phosphoribosylformylglycinamidine synthase, purS	0.2553563878
+UniRef50_B8EPE4: Phosphoribosylformylglycinamidine synthase, purS|unclassified	0.2553563878
+UniRef50_N6VF48: Phosphoribosylformylglycinamidine synthase, PurS component	0.2553563878
+UniRef50_N6VF48: Phosphoribosylformylglycinamidine synthase, PurS component|unclassified	0.2553563878
+UniRef50_A4WW71	0.2553242132
+UniRef50_A4WW71|unclassified	0.2553242132
+UniRef50_J0L942	0.2553098722
+UniRef50_J0L942|unclassified	0.2553098722
+UniRef50_A1BAY3	0.2552534536
+UniRef50_A1BAY3|unclassified	0.2552534536
+UniRef50_V6JB74: Thioesterase superfamily protein	0.2552492475
+UniRef50_V6JB74: Thioesterase superfamily protein|unclassified	0.2552492475
+UniRef50_UPI00040CCD4C: pseudouridine synthase	0.2552450092
+UniRef50_UPI00040CCD4C: pseudouridine synthase|unclassified	0.2552450092
+UniRef50_UPI00047CB349: DNA gyrase subunit B	0.2552434236
+UniRef50_UPI00047CB349: DNA gyrase subunit B|unclassified	0.2552434236
+UniRef50_X7UD14: Protein dipZ	0.2551894454
+UniRef50_X7UD14: Protein dipZ|unclassified	0.2551894454
+UniRef50_UPI0004050213: thiol:disulfide interchange protein	0.2551844381
+UniRef50_UPI0004050213: thiol:disulfide interchange protein|unclassified	0.2551844381
+UniRef50_F2USX4	0.2551671345
+UniRef50_F2USX4|unclassified	0.2551671345
+UniRef50_UPI0003C1B368	0.2551223800
+UniRef50_UPI0003C1B368|unclassified	0.2551223800
+UniRef50_I7BD99	0.2551100134
+UniRef50_I7BD99|unclassified	0.2551100134
+UniRef50_UPI00036CF9CE: hypothetical protein	0.2550930538
+UniRef50_UPI00036CF9CE: hypothetical protein|unclassified	0.2550930538
+UniRef50_Q8Y039: Protein-L-isoaspartate O-methyltransferase	0.2550659793
+UniRef50_Q8Y039: Protein-L-isoaspartate O-methyltransferase|unclassified	0.2550659793
+UniRef50_G8WNN7	0.2550485702
+UniRef50_G8WNN7|unclassified	0.2550485702
+UniRef50_X1HSZ2: Marine sediment metagenome DNA, contig: S03H2_S13488	0.2550383831
+UniRef50_X1HSZ2: Marine sediment metagenome DNA, contig: S03H2_S13488|unclassified	0.2550383831
+UniRef50_UPI00045E67CF: glycine cleavage system protein T	0.2550258532
+UniRef50_UPI00045E67CF: glycine cleavage system protein T|unclassified	0.2550258532
+UniRef50_UPI00037EF813: hypothetical protein	0.2550227504
+UniRef50_UPI00037EF813: hypothetical protein|unclassified	0.2550227504
+UniRef50_L0A178: Putative branched-chain amino acid permease (Azaleucine resistance)	0.2550219444
+UniRef50_L0A178: Putative branched-chain amino acid permease (Azaleucine resistance)|unclassified	0.2550219444
+UniRef50_W6E2J4	0.2550209971
+UniRef50_W6E2J4|unclassified	0.2550209971
+UniRef50_K2ACX9	0.2550162443
+UniRef50_K2ACX9|unclassified	0.2550162443
+UniRef50_UPI0004690624: calcium-binding protein	0.2550146790
+UniRef50_UPI0004690624: calcium-binding protein|unclassified	0.2550146790
+UniRef50_G4T369	0.2550004241
+UniRef50_G4T369|unclassified	0.2550004241
+UniRef50_W7QZ77	0.2549768716
+UniRef50_W7QZ77|unclassified	0.2549768716
+UniRef50_Q8K7Q2	0.2549708266
+UniRef50_Q8K7Q2|unclassified	0.2549708266
+UniRef50_W8RT61: Small heat shock protein	0.2549246869
+UniRef50_W8RT61: Small heat shock protein|unclassified	0.2549246869
+UniRef50_UPI00047A81A5: hypothetical protein	0.2549225877
+UniRef50_UPI00047A81A5: hypothetical protein|unclassified	0.2549225877
+UniRef50_UPI0003F6E280: molybdenum ABC transporter	0.2549146234
+UniRef50_UPI0003F6E280: molybdenum ABC transporter|unclassified	0.2549146234
+UniRef50_Q3J6M1: Ribosomal RNA small subunit methyltransferase G	0.2548927869
+UniRef50_Q3J6M1: Ribosomal RNA small subunit methyltransferase G|unclassified	0.2548927869
+UniRef50_B5GNG9	0.2548812468
+UniRef50_B5GNG9|unclassified	0.2548812468
+UniRef50_UPI0004653572: flagellar motor switch protein FliM	0.2548787434
+UniRef50_UPI0004653572: flagellar motor switch protein FliM|unclassified	0.2548787434
+UniRef50_J3EVG5	0.2548702043
+UniRef50_J3EVG5|unclassified	0.2548702043
+UniRef50_X6FRK1	0.2548560502
+UniRef50_X6FRK1|unclassified	0.2548560502
+UniRef50_A0FCS9: Transposase (Fragment)	0.2548481627
+UniRef50_A0FCS9: Transposase (Fragment)|unclassified	0.2548481627
+UniRef50_UPI0003784CC0: hypothetical protein	0.2548480261
+UniRef50_UPI0003784CC0: hypothetical protein|unclassified	0.2548480261
+UniRef50_J9NYV5	0.2548216037
+UniRef50_J9NYV5|unclassified	0.2548216037
+UniRef50_UPI000369AEF2: hypothetical protein	0.2548161672
+UniRef50_UPI000369AEF2: hypothetical protein|unclassified	0.2548161672
+UniRef50_UPI000361C9B9: hypothetical protein	0.2548122376
+UniRef50_UPI000361C9B9: hypothetical protein|unclassified	0.2548122376
+UniRef50_UPI0002E8DB59: hypothetical protein	0.2548002883
+UniRef50_UPI0002E8DB59: hypothetical protein|unclassified	0.2548002883
+UniRef50_K1Z9D8	0.2547968973
+UniRef50_K1Z9D8|unclassified	0.2547968973
+UniRef50_I6D5P8: Membrane-bound lytic murein transglycosylase D	0.2547882163
+UniRef50_I6D5P8: Membrane-bound lytic murein transglycosylase D|unclassified	0.2547882163
+UniRef50_M9SAJ4	0.2547591967
+UniRef50_M9SAJ4|unclassified	0.2547591967
+UniRef50_Q4L691: Phosphate import ATP-binding protein PstB	0.2547464886
+UniRef50_Q4L691: Phosphate import ATP-binding protein PstB|unclassified	0.2547464886
+UniRef50_B8IUM6: NnrUfamily protein	0.2547431818
+UniRef50_B8IUM6: NnrUfamily protein|unclassified	0.2547431818
+UniRef50_UPI0003728245: hypothetical protein	0.2547365846
+UniRef50_UPI0003728245: hypothetical protein|unclassified	0.2547365846
+UniRef50_UPI000400B075: hypothetical protein	0.2547328816
+UniRef50_UPI000400B075: hypothetical protein|unclassified	0.2547328816
+UniRef50_UPI00016C0351: 1-phosphofructokinase, partial	0.2547192732
+UniRef50_UPI00016C0351: 1-phosphofructokinase, partial|unclassified	0.2547192732
+UniRef50_J9PA20	0.2546927028
+UniRef50_J9PA20|unclassified	0.2546927028
+UniRef50_UPI0003AA7595: hypothetical protein	0.2546896002
+UniRef50_UPI0003AA7595: hypothetical protein|unclassified	0.2546896002
+UniRef50_C5QVJ3	0.2546895272
+UniRef50_C5QVJ3|unclassified	0.2546895272
+UniRef50_UPI0001B417EE: 50S ribosomal protein L6	0.2546378264
+UniRef50_UPI0001B417EE: 50S ribosomal protein L6|unclassified	0.2546378264
+UniRef50_A3MAD3	0.2546366019
+UniRef50_A3MAD3|unclassified	0.2546366019
+UniRef50_Q11S94: Biotin synthase	0.2546212858
+UniRef50_Q11S94: Biotin synthase|unclassified	0.2546212858
+UniRef50_UPI00016C59FB: Hemolysin-type calcium-binding region	0.2546124715
+UniRef50_UPI00016C59FB: Hemolysin-type calcium-binding region|unclassified	0.2546124715
+UniRef50_I3WYP7: Putative transcriptional regulator protein, AsnC family	0.2546091530
+UniRef50_I3WYP7: Putative transcriptional regulator protein, AsnC family|unclassified	0.2546091530
+UniRef50_UPI000200067F: ABC transporter ATP-binding subunit	0.2545978486
+UniRef50_UPI000200067F: ABC transporter ATP-binding subunit|unclassified	0.2545978486
+UniRef50_Q4FMW6: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.2545905880
+UniRef50_Q4FMW6: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.2545905880
+UniRef50_UPI0003B37C65: calcium-binding protein	0.2545737579
+UniRef50_UPI0003B37C65: calcium-binding protein|unclassified	0.2545737579
+UniRef50_UPI000328AD5C	0.2545727592
+UniRef50_UPI000328AD5C|unclassified	0.2545727592
+UniRef50_UPI00047AA7F8: hypothetical protein	0.2545701908
+UniRef50_UPI00047AA7F8: hypothetical protein|unclassified	0.2545701908
+UniRef50_B2J5F8: Malate dehydrogenase	0.2545600013
+UniRef50_B2J5F8: Malate dehydrogenase|unclassified	0.2545600013
+UniRef50_UPI0003941D95: PREDICTED: acyl-CoA dehydrogenase family member 9, mitochondrial-like, partial	0.2545523042
+UniRef50_UPI0003941D95: PREDICTED: acyl-CoA dehydrogenase family member 9, mitochondrial-like, partial|unclassified	0.2545523042
+UniRef50_V4QJ82: Thioredoxin reductase	0.2545296566
+UniRef50_V4QJ82: Thioredoxin reductase|unclassified	0.2545296566
+UniRef50_UPI0003D0B25A: PREDICTED: collagen alpha-1(XII) chain-like isoform X1	0.2544977786
+UniRef50_UPI0003D0B25A: PREDICTED: collagen alpha-1(XII) chain-like isoform X1|unclassified	0.2544977786
+UniRef50_A3W220	0.2544640945
+UniRef50_A3W220|unclassified	0.2544640945
+UniRef50_B9KUH0	0.2544138131
+UniRef50_B9KUH0|unclassified	0.2544138131
+UniRef50_UPI000381BCCD: hypothetical protein	0.2544111726
+UniRef50_UPI000381BCCD: hypothetical protein|unclassified	0.2544111726
+UniRef50_UPI00035DDF13: hypothetical protein, partial	0.2543916000
+UniRef50_UPI00035DDF13: hypothetical protein, partial|unclassified	0.2543916000
+UniRef50_UPI00035F42E3: hypothetical protein	0.2543712693
+UniRef50_UPI00035F42E3: hypothetical protein|unclassified	0.2543712693
+UniRef50_UPI00037FC1A9: hypothetical protein, partial	0.2543641295
+UniRef50_UPI00037FC1A9: hypothetical protein, partial|unclassified	0.2543641295
+UniRef50_Q4L5D8: Phosphopantetheine adenylyltransferase	0.2543552909
+UniRef50_Q4L5D8: Phosphopantetheine adenylyltransferase|unclassified	0.2543552909
+UniRef50_UPI000425C16C: hypothetical protein	0.2543533374
+UniRef50_UPI000425C16C: hypothetical protein|unclassified	0.2543533374
+UniRef50_UPI0003B52538: MerR family transcriptional regulator, partial	0.2543491163
+UniRef50_UPI0003B52538: MerR family transcriptional regulator, partial|unclassified	0.2543491163
+UniRef50_X3Z181	0.2543101201
+UniRef50_X3Z181|unclassified	0.2543101201
+UniRef50_UPI0003829518: hypothetical protein, partial	0.2542954308
+UniRef50_UPI0003829518: hypothetical protein, partial|unclassified	0.2542954308
+UniRef50_UPI00036F41B6: hypothetical protein	0.2542930847
+UniRef50_UPI00036F41B6: hypothetical protein|unclassified	0.2542930847
+UniRef50_D8SKP2	0.2542900592
+UniRef50_D8SKP2|unclassified	0.2542900592
+UniRef50_A9VYS2: PRC-barrel domain protein	0.2542872042
+UniRef50_A9VYS2: PRC-barrel domain protein|unclassified	0.2542872042
+UniRef50_B9EAM5	0.2542602507
+UniRef50_B9EAM5|unclassified	0.2542602507
+UniRef50_V5SG89	0.2542341355
+UniRef50_V5SG89|unclassified	0.2542341355
+UniRef50_A0A009EZ79: 3-(3-hydroxy-phenyl)propionate hydroxylase domain protein	0.2542333170
+UniRef50_A0A009EZ79: 3-(3-hydroxy-phenyl)propionate hydroxylase domain protein|unclassified	0.2542333170
+UniRef50_C1E503: Predicted protein	0.2542231426
+UniRef50_C1E503: Predicted protein|unclassified	0.2542231426
+UniRef50_I0YPT1: SKI-domain-containing protein	0.2542225823
+UniRef50_I0YPT1: SKI-domain-containing protein|unclassified	0.2542225823
+UniRef50_B9JG36	0.2541993479
+UniRef50_B9JG36|unclassified	0.2541993479
+UniRef50_UPI0003F18708: PREDICTED: ankyrin repeat domain-containing protein 10	0.2541891333
+UniRef50_UPI0003F18708: PREDICTED: ankyrin repeat domain-containing protein 10|unclassified	0.2541891333
+UniRef50_UPI00046CFD96: hypothetical protein	0.2541632280
+UniRef50_UPI00046CFD96: hypothetical protein|unclassified	0.2541632280
+UniRef50_B9FN73	0.2541603613
+UniRef50_B9FN73|unclassified	0.2541603613
+UniRef50_A0A017HBI0: Invasion associated family protein	0.2541485954
+UniRef50_A0A017HBI0: Invasion associated family protein|unclassified	0.2541485954
+UniRef50_UPI00037904B4: amino acid ABC transporter ATP-binding protein, partial	0.2541383766
+UniRef50_UPI00037904B4: amino acid ABC transporter ATP-binding protein, partial|unclassified	0.2541383766
+UniRef50_L0A408: Diguanylate cyclase (GGDEF) domain-containing protein	0.2541290803
+UniRef50_L0A408: Diguanylate cyclase (GGDEF) domain-containing protein|unclassified	0.2541290803
+UniRef50_UPI00037C584D: hypothetical protein	0.2541229223
+UniRef50_UPI00037C584D: hypothetical protein|unclassified	0.2541229223
+UniRef50_H0AAM1: FeS assembly ATPase SufC	0.2541168827
+UniRef50_H0AAM1: FeS assembly ATPase SufC|unclassified	0.2541168827
+UniRef50_UPI0003486BCB: hypothetical protein	0.2541122092
+UniRef50_UPI0003486BCB: hypothetical protein|unclassified	0.2541122092
+UniRef50_UPI00046295E8: transposase, partial	0.2541121930
+UniRef50_UPI00046295E8: transposase, partial|unclassified	0.2541121930
+UniRef50_P74104: Riboflavin biosynthesis protein RibBA	0.2540995405
+UniRef50_P74104: Riboflavin biosynthesis protein RibBA|unclassified	0.2540995405
+UniRef50_UPI0003F8247B: hypothetical protein	0.2540650407
+UniRef50_UPI0003F8247B: hypothetical protein|unclassified	0.2540650407
+UniRef50_L7K3Y5	0.2540620379
+UniRef50_L7K3Y5|unclassified	0.2540620379
+UniRef50_B1TEJ9	0.2540607142
+UniRef50_B1TEJ9|unclassified	0.2540607142
+UniRef50_UPI000376010F: hypothetical protein	0.2540414515
+UniRef50_UPI000376010F: hypothetical protein|unclassified	0.2540414515
+UniRef50_UPI0003F4919D: hypothetical protein TREMEDRAFT_64804	0.2540254789
+UniRef50_UPI0003F4919D: hypothetical protein TREMEDRAFT_64804|unclassified	0.2540254789
+UniRef50_A0A023E956	0.2540231479
+UniRef50_A0A023E956|unclassified	0.2540231479
+UniRef50_W4KUQ3: Cytochrome C biogenesis protein CcmI	0.2540195519
+UniRef50_W4KUQ3: Cytochrome C biogenesis protein CcmI|unclassified	0.2540195519
+UniRef50_UPI00047C3DB7: hypothetical protein	0.2540149231
+UniRef50_UPI00047C3DB7: hypothetical protein|unclassified	0.2540149231
+UniRef50_E1SVE3: Rhodanese domain protein	0.2540067074
+UniRef50_E1SVE3: Rhodanese domain protein|unclassified	0.2540067074
+UniRef50_F9KKI5	0.2539801959
+UniRef50_F9KKI5|unclassified	0.2539801959
+UniRef50_UPI00047A4382: hypothetical protein	0.2539772515
+UniRef50_UPI00047A4382: hypothetical protein|unclassified	0.2539772515
+UniRef50_A9IP04: Protein-L-isoaspartate O-methyltransferase	0.2539693985
+UniRef50_A9IP04: Protein-L-isoaspartate O-methyltransferase|unclassified	0.2539693985
+UniRef50_UPI00046C8F06: 50S ribosomal protein L1	0.2539602249
+UniRef50_UPI00046C8F06: 50S ribosomal protein L1|unclassified	0.2539602249
+UniRef50_UPI000473839B: coproporphyrinogen III oxidase, partial	0.2539286351
+UniRef50_UPI000473839B: coproporphyrinogen III oxidase, partial|unclassified	0.2539286351
+UniRef50_P0A543: Aspartate-semialdehyde dehydrogenase	0.2539191971
+UniRef50_P0A543: Aspartate-semialdehyde dehydrogenase|unclassified	0.2539191971
+UniRef50_UPI0002D46E5D: hypothetical protein	0.2539188172
+UniRef50_UPI0002D46E5D: hypothetical protein|unclassified	0.2539188172
+UniRef50_A0A011QRD8	0.2539085041
+UniRef50_A0A011QRD8|unclassified	0.2539085041
+UniRef50_R4LHW2	0.2538839280
+UniRef50_R4LHW2|unclassified	0.2538839280
+UniRef50_E1Z9M8	0.2538715410
+UniRef50_E1Z9M8|unclassified	0.2538715410
+UniRef50_UPI0003736343: hypothetical protein, partial	0.2538694146
+UniRef50_UPI0003736343: hypothetical protein, partial|unclassified	0.2538694146
+UniRef50_X1VBZ2: Marine sediment metagenome DNA, contig: S12H4_S17099	0.2538403549
+UniRef50_X1VBZ2: Marine sediment metagenome DNA, contig: S12H4_S17099|unclassified	0.2538403549
+UniRef50_U1J219	0.2538259667
+UniRef50_U1J219|unclassified	0.2538259667
+UniRef50_A6SX76	0.2538173639
+UniRef50_A6SX76|unclassified	0.2538173639
+UniRef50_H6SJ61: Phage SPO1 DNA polymerase-related protein	0.2537897352
+UniRef50_H6SJ61: Phage SPO1 DNA polymerase-related protein|unclassified	0.2537897352
+UniRef50_UPI000462EB12: hypothetical protein, partial	0.2537339838
+UniRef50_UPI000462EB12: hypothetical protein, partial|unclassified	0.2537339838
+UniRef50_C1CGH0	0.2537204280
+UniRef50_C1CGH0|unclassified	0.2537204280
+UniRef50_UPI000359D620: PREDICTED: fibroin heavy chain-like	0.2536870615
+UniRef50_UPI000359D620: PREDICTED: fibroin heavy chain-like|unclassified	0.2536870615
+UniRef50_A0A016QQV6	0.2536790576
+UniRef50_A0A016QQV6|unclassified	0.2536790576
+UniRef50_X4ZSH2: Nad(P)h dehydrogenase, quinone 2 like protein	0.2536003832
+UniRef50_X4ZSH2: Nad(P)h dehydrogenase, quinone 2 like protein|unclassified	0.2536003832
+UniRef50_Q8DJN7: Imidazole glycerol phosphate synthase subunit HisF	0.2535483036
+UniRef50_Q8DJN7: Imidazole glycerol phosphate synthase subunit HisF|unclassified	0.2535483036
+UniRef50_UPI000402B508: peptide deformylase	0.2535471125
+UniRef50_UPI000402B508: peptide deformylase|unclassified	0.2535471125
+UniRef50_UPI00046C9195: hypothetical protein	0.2535429599
+UniRef50_UPI00046C9195: hypothetical protein|unclassified	0.2535429599
+UniRef50_E0NCT7	0.2535391679
+UniRef50_E0NCT7|unclassified	0.2535391679
+UniRef50_UPI00029A151A: phosphate regulon transcriptional regulatory protein	0.2535350159
+UniRef50_UPI00029A151A: phosphate regulon transcriptional regulatory protein|unclassified	0.2535350159
+UniRef50_K2N1C1	0.2535125729
+UniRef50_K2N1C1|unclassified	0.2535125729
+UniRef50_H2K2L5: Anti-sigma factor	0.2534559191
+UniRef50_H2K2L5: Anti-sigma factor|unclassified	0.2534559191
+UniRef50_V9QQ79: Thioredoxin	0.2534409549
+UniRef50_V9QQ79: Thioredoxin|unclassified	0.2534409549
+UniRef50_B5YHP1: Adenylate kinase	0.2534389129
+UniRef50_B5YHP1: Adenylate kinase|unclassified	0.2534389129
+UniRef50_UPI0004786744: hypothetical protein	0.2533309694
+UniRef50_UPI0004786744: hypothetical protein|unclassified	0.2533309694
+UniRef50_UPI000364B567: hypothetical protein	0.2533219575
+UniRef50_UPI000364B567: hypothetical protein|unclassified	0.2533219575
+UniRef50_UPI000474F1D7: GntR family transcriptional regulator	0.2533142370
+UniRef50_UPI000474F1D7: GntR family transcriptional regulator|unclassified	0.2533142370
+UniRef50_UPI00016A8727: 1-phosphofructokinase, partial	0.2533068676
+UniRef50_UPI00016A8727: 1-phosphofructokinase, partial|unclassified	0.2533068676
+UniRef50_UPI0003B37862: spermidine/putrescine ABC transporter ATP-binding protein	0.2533052404
+UniRef50_UPI0003B37862: spermidine/putrescine ABC transporter ATP-binding protein|unclassified	0.2533052404
+UniRef50_C1DRB9: DSBA oxidoreductase	0.2532620237
+UniRef50_C1DRB9: DSBA oxidoreductase|unclassified	0.2532620237
+UniRef50_A9A450: Malate dehydrogenase	0.2532549938
+UniRef50_A9A450: Malate dehydrogenase|unclassified	0.2532549938
+UniRef50_Q8ZM06: 2,5-diketo-D-gluconic acid reductase A	0.2532526504
+UniRef50_Q8ZM06: 2,5-diketo-D-gluconic acid reductase A|unclassified	0.2532526504
+UniRef50_K0S2S0	0.2532488424
+UniRef50_K0S2S0|unclassified	0.2532488424
+UniRef50_E3IFS6	0.2532456912
+UniRef50_E3IFS6|unclassified	0.2532456912
+UniRef50_UPI00037583F2: hypothetical protein	0.2531852950
+UniRef50_UPI00037583F2: hypothetical protein|unclassified	0.2531852950
+UniRef50_E1ZBZ0	0.2531810298
+UniRef50_E1ZBZ0|unclassified	0.2531810298
+UniRef50_Q9Z6J2: Peptide deformylase	0.2531407658
+UniRef50_Q9Z6J2: Peptide deformylase|unclassified	0.2531407658
+UniRef50_UPI000262CA12: GntR family transcriptional regulator	0.2531356449
+UniRef50_UPI000262CA12: GntR family transcriptional regulator|unclassified	0.2531356449
+UniRef50_UPI00035FCF77: hypothetical protein, partial	0.2531039814
+UniRef50_UPI00035FCF77: hypothetical protein, partial|unclassified	0.2531039814
+UniRef50_F3SQA2: MutS family protein	0.2530988534
+UniRef50_F3SQA2: MutS family protein|unclassified	0.2530988534
+UniRef50_Q6A910: Orotate phosphoribosyltransferase	0.2530919114
+UniRef50_Q6A910: Orotate phosphoribosyltransferase|unclassified	0.2530919114
+UniRef50_UPI0002C563C9	0.2530845321
+UniRef50_UPI0002C563C9|unclassified	0.2530845321
+UniRef50_F3F5Q6	0.2530788846
+UniRef50_F3F5Q6|unclassified	0.2530788846
+UniRef50_UPI000378548E: hypothetical protein, partial	0.2530775527
+UniRef50_UPI000378548E: hypothetical protein, partial|unclassified	0.2530775527
+UniRef50_UPI000300DEBA: hypothetical protein	0.2530367694
+UniRef50_UPI000300DEBA: hypothetical protein|unclassified	0.2530367694
+UniRef50_UPI00016A6E25: hypothetical protein	0.2529983273
+UniRef50_UPI00016A6E25: hypothetical protein|unclassified	0.2529983273
+UniRef50_X1Y4J3: S-adenosylmethionine synthase	0.2529773705
+UniRef50_X1Y4J3: S-adenosylmethionine synthase|unclassified	0.2529773705
+UniRef50_UPI00016A5E81: transcriptional regulator, AraC family protein, partial	0.2529559503
+UniRef50_UPI00016A5E81: transcriptional regulator, AraC family protein, partial|unclassified	0.2529559503
+UniRef50_O05465: Beta-lactamase	0.2529457560
+UniRef50_O05465: Beta-lactamase|unclassified	0.2529457560
+UniRef50_F3HFY1: Transport-associated protein (Fragment)	0.2529343807
+UniRef50_F3HFY1: Transport-associated protein (Fragment)|unclassified	0.2529343807
+UniRef50_F8DER8	0.2529303763
+UniRef50_F8DER8|unclassified	0.2529303763
+UniRef50_A0A058ZPK5	0.2529295302
+UniRef50_A0A058ZPK5|unclassified	0.2529295302
+UniRef50_UPI000474476C: hypothetical protein	0.2529222145
+UniRef50_UPI000474476C: hypothetical protein|unclassified	0.2529222145
+UniRef50_A0A024HDA5: Hypothetical membrane protein	0.2529211568
+UniRef50_A0A024HDA5: Hypothetical membrane protein|unclassified	0.2529211568
+UniRef50_UPI000475888A: membane protease HflC	0.2528823840
+UniRef50_UPI000475888A: membane protease HflC|unclassified	0.2528823840
+UniRef50_U6G6B2	0.2528763161
+UniRef50_U6G6B2|unclassified	0.2528763161
+UniRef50_J3BMK3: Penicillin-binding protein, beta-lactamase class C	0.2528465160
+UniRef50_J3BMK3: Penicillin-binding protein, beta-lactamase class C|unclassified	0.2528465160
+UniRef50_UPI00047283E0: glutamine amidotransferase, partial	0.2528439457
+UniRef50_UPI00047283E0: glutamine amidotransferase, partial|unclassified	0.2528439457
+UniRef50_X1T915: Marine sediment metagenome DNA, contig: S12H4_L00374 (Fragment)	0.2528307370
+UniRef50_X1T915: Marine sediment metagenome DNA, contig: S12H4_L00374 (Fragment)|unclassified	0.2528307370
+UniRef50_UPI000364B97F: hypothetical protein	0.2528236806
+UniRef50_UPI000364B97F: hypothetical protein|unclassified	0.2528236806
+UniRef50_UPI0002FB164B: dihydrolipoamide dehydrogenase	0.2528099948
+UniRef50_UPI0002FB164B: dihydrolipoamide dehydrogenase|unclassified	0.2528099948
+UniRef50_UPI0003EDF954: PREDICTED: 28S ribosomal protein S9, mitochondrial-like	0.2528059397
+UniRef50_UPI0003EDF954: PREDICTED: 28S ribosomal protein S9, mitochondrial-like|unclassified	0.2528059397
+UniRef50_A0A024KID4: Rrf2 family transcriptional regulator	0.2527970987
+UniRef50_A0A024KID4: Rrf2 family transcriptional regulator|unclassified	0.2527970987
+UniRef50_A1B3F6: UPF0262 protein Pden_1958	0.2527537239
+UniRef50_A1B3F6: UPF0262 protein Pden_1958|unclassified	0.2527537239
+UniRef50_UPI0003776D22: hypothetical protein	0.2527287741
+UniRef50_UPI0003776D22: hypothetical protein|unclassified	0.2527287741
+UniRef50_Q9LEU8: Argininosuccinate lyase, chloroplastic	0.2527044314
+UniRef50_Q9LEU8: Argininosuccinate lyase, chloroplastic|unclassified	0.2527044314
+UniRef50_UPI00047A69B8: hypothetical protein	0.2527001439
+UniRef50_UPI00047A69B8: hypothetical protein|unclassified	0.2527001439
+UniRef50_Q28TM8: Lytic transglycosylase catalytic	0.2526959566
+UniRef50_Q28TM8: Lytic transglycosylase catalytic|unclassified	0.2526959566
+UniRef50_UPI000366DA44: hypothetical protein	0.2526913792
+UniRef50_UPI000366DA44: hypothetical protein|unclassified	0.2526913792
+UniRef50_UPI000368106C: 4-hydroxybenzoyl-CoA thioesterase	0.2526891425
+UniRef50_UPI000368106C: 4-hydroxybenzoyl-CoA thioesterase|unclassified	0.2526891425
+UniRef50_A2BIU4: S-methyl-5'-thioadenosine phosphorylase	0.2526885798
+UniRef50_A2BIU4: S-methyl-5'-thioadenosine phosphorylase|unclassified	0.2526885798
+UniRef50_I7EY46	0.2526653138
+UniRef50_I7EY46|unclassified	0.2526653138
+UniRef50_UPI000466AD6A: lytic transglycosylase	0.2526645298
+UniRef50_UPI000466AD6A: lytic transglycosylase|unclassified	0.2526645298
+UniRef50_UPI0003B687AA: hypothetical protein	0.2526555812
+UniRef50_UPI0003B687AA: hypothetical protein|unclassified	0.2526555812
+UniRef50_UPI0004790E72: membrane protein	0.2526464112
+UniRef50_UPI0004790E72: membrane protein|unclassified	0.2526464112
+UniRef50_X1QZ75: Marine sediment metagenome DNA, contig: S12H4_L05474	0.2526396138
+UniRef50_X1QZ75: Marine sediment metagenome DNA, contig: S12H4_L05474|unclassified	0.2526396138
+UniRef50_Q5NPF1: Putative Holliday junction resolvase	0.2526373509
+UniRef50_Q5NPF1: Putative Holliday junction resolvase|unclassified	0.2526373509
+UniRef50_D9RI97: KAP family P-loop domain	0.2526341175
+UniRef50_D9RI97: KAP family P-loop domain|unclassified	0.2526341175
+UniRef50_UPI0004774FEC: hypothetical protein	0.2526234898
+UniRef50_UPI0004774FEC: hypothetical protein|unclassified	0.2526234898
+UniRef50_P32728	0.2526060333
+UniRef50_P32728|unclassified	0.2526060333
+UniRef50_F5WYT4: Phosphatidylethanolamine-binding protein	0.2525917237
+UniRef50_F5WYT4: Phosphatidylethanolamine-binding protein|unclassified	0.2525917237
+UniRef50_W0H3A3	0.2525697402
+UniRef50_W0H3A3|unclassified	0.2525697402
+UniRef50_Q98II2: Msl2390 protein	0.2525391108
+UniRef50_Q98II2: Msl2390 protein|unclassified	0.2525391108
+UniRef50_G8UTA5	0.2525257019
+UniRef50_G8UTA5|unclassified	0.2525257019
+UniRef50_E6PH78	0.2524943602
+UniRef50_E6PH78|unclassified	0.2524943602
+UniRef50_E6QVF6	0.2524943602
+UniRef50_E6QVF6|unclassified	0.2524943602
+UniRef50_S6UZA8: Phospholipase D	0.2524921197
+UniRef50_S6UZA8: Phospholipase D|unclassified	0.2524921197
+UniRef50_UPI00047511DF: peptide ABC transporter permease	0.2524843300
+UniRef50_UPI00047511DF: peptide ABC transporter permease|unclassified	0.2524843300
+UniRef50_K1V047	0.2524826644
+UniRef50_K1V047|unclassified	0.2524826644
+UniRef50_A0A037GAB5	0.2524643721
+UniRef50_A0A037GAB5|unclassified	0.2524643721
+UniRef50_UPI000262D076: Holliday junction resolvase	0.2524633031
+UniRef50_UPI000262D076: Holliday junction resolvase|unclassified	0.2524633031
+UniRef50_UPI00047BE11B: hypothetical protein	0.2524461329
+UniRef50_UPI00047BE11B: hypothetical protein|unclassified	0.2524461329
+UniRef50_UPI0003AD17DC: hypothetical protein	0.2524370976
+UniRef50_UPI0003AD17DC: hypothetical protein|unclassified	0.2524370976
+UniRef50_UPI00046EE386: hypothetical protein	0.2524364765
+UniRef50_UPI00046EE386: hypothetical protein|unclassified	0.2524364765
+UniRef50_Q5GWQ0: Multimeric flavodoxin WrbA	0.2523904397
+UniRef50_Q5GWQ0: Multimeric flavodoxin WrbA|unclassified	0.2523904397
+UniRef50_Q46L72: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.2523585454
+UniRef50_Q46L72: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.2523585454
+UniRef50_UPI00047E625F: hypothetical protein	0.2523561906
+UniRef50_UPI00047E625F: hypothetical protein|unclassified	0.2523561906
+UniRef50_UPI00046EC63B: choline transporter	0.2523492302
+UniRef50_UPI00046EC63B: choline transporter|unclassified	0.2523492302
+UniRef50_UPI0003C191AD: PREDICTED: short/branched chain specific acyl-CoA dehydrogenase, mitochondrial-like, partial	0.2523341355
+UniRef50_UPI0003C191AD: PREDICTED: short/branched chain specific acyl-CoA dehydrogenase, mitochondrial-like, partial|unclassified	0.2523341355
+UniRef50_UPI000478606A: phosphodiesterase	0.2523072788
+UniRef50_UPI000478606A: phosphodiesterase|unclassified	0.2523072788
+UniRef50_U4M1X3	0.2523063442
+UniRef50_U4M1X3|unclassified	0.2523063442
+UniRef50_W9VJ37	0.2522807116
+UniRef50_W9VJ37|unclassified	0.2522807116
+UniRef50_UPI00037D2EDA: Fis family transcriptional regulator	0.2522748080
+UniRef50_UPI00037D2EDA: Fis family transcriptional regulator|unclassified	0.2522748080
+UniRef50_UPI00028A185F: transcriptional regulator	0.2522373006
+UniRef50_UPI00028A185F: transcriptional regulator|unclassified	0.2522373006
+UniRef50_UPI0004726C9E: hypothetical protein, partial	0.2522147042
+UniRef50_UPI0004726C9E: hypothetical protein, partial|unclassified	0.2522147042
+UniRef50_UPI00047AC4C6: hypothetical protein	0.2522109816
+UniRef50_UPI00047AC4C6: hypothetical protein|unclassified	0.2522109816
+UniRef50_I9LIE0	0.2521932957
+UniRef50_I9LIE0|unclassified	0.2521932957
+UniRef50_R1D9I4	0.2521911317
+UniRef50_R1D9I4|unclassified	0.2521911317
+UniRef50_U7JH15	0.2521897628
+UniRef50_U7JH15|unclassified	0.2521897628
+UniRef50_UPI00006CDD76: NADH-ubiquinone oxidoreductase 23 kDa subunit, mitochondrial precursor, putative	0.2521758814
+UniRef50_UPI00006CDD76: NADH-ubiquinone oxidoreductase 23 kDa subunit, mitochondrial precursor, putative|unclassified	0.2521758814
+UniRef50_UPI0003B5323B: hisitidine kinase	0.2521601004
+UniRef50_UPI0003B5323B: hisitidine kinase|unclassified	0.2521601004
+UniRef50_UPI0001E896F0: heavy metal translocating P-type ATPase	0.2521048240
+UniRef50_UPI0001E896F0: heavy metal translocating P-type ATPase|unclassified	0.2521048240
+UniRef50_I6TBR2: TM2 domain-containing protein	0.2521001764
+UniRef50_I6TBR2: TM2 domain-containing protein|unclassified	0.2521001764
+UniRef50_UPI000455F41A: S15/NS1 RNA-binding domain-containing protein	0.2520762470
+UniRef50_UPI000455F41A: S15/NS1 RNA-binding domain-containing protein|unclassified	0.2520762470
+UniRef50_A0A037ZQW3: Chromosome partitioning protein ParA	0.2520641444
+UniRef50_A0A037ZQW3: Chromosome partitioning protein ParA|unclassified	0.2520641444
+UniRef50_C2Z2I2: ATPase	0.2520534926
+UniRef50_C2Z2I2: ATPase|unclassified	0.2520534926
+UniRef50_A0A059AL55	0.2520369339
+UniRef50_A0A059AL55|unclassified	0.2520369339
+UniRef50_B8FQ92: Chorismate synthase	0.2520200944
+UniRef50_B8FQ92: Chorismate synthase|unclassified	0.2520200944
+UniRef50_UPI00036A6789: hypothetical protein	0.2519784787
+UniRef50_UPI00036A6789: hypothetical protein|unclassified	0.2519784787
+UniRef50_H1W4I3: Lsm14a protein (Fragment)	0.2519411129
+UniRef50_H1W4I3: Lsm14a protein (Fragment)|unclassified	0.2519411129
+UniRef50_O76511: Thymidylate synthase	0.2519321816
+UniRef50_O76511: Thymidylate synthase|unclassified	0.2519321816
+UniRef50_UPI0002F5E3FA: hypothetical protein	0.2519091317
+UniRef50_UPI0002F5E3FA: hypothetical protein|unclassified	0.2519091317
+UniRef50_G2PZZ8	0.2519018390
+UniRef50_G2PZZ8|unclassified	0.2519018390
+UniRef50_UPI0001850F0A: glycine/betaine ABC transporter	0.2518626890
+UniRef50_UPI0001850F0A: glycine/betaine ABC transporter|unclassified	0.2518626890
+UniRef50_UPI00047D2222: 3-keto-L-gulonate-6-phosphate decarboxylase	0.2518438482
+UniRef50_UPI00047D2222: 3-keto-L-gulonate-6-phosphate decarboxylase|unclassified	0.2518438482
+UniRef50_UPI00046E5BF5: molybdopterin converting factor	0.2518402756
+UniRef50_UPI00046E5BF5: molybdopterin converting factor|unclassified	0.2518402756
+UniRef50_D4GSF3: SAMP-activating enzyme E1	0.2518320725
+UniRef50_D4GSF3: SAMP-activating enzyme E1|unclassified	0.2518320725
+UniRef50_UPI00037AB018: hypothetical protein	0.2518304819
+UniRef50_UPI00037AB018: hypothetical protein|unclassified	0.2518304819
+UniRef50_C9A9A7	0.2518078953
+UniRef50_C9A9A7|unclassified	0.2518078953
+UniRef50_UPI000382F0DF: hypothetical protein, partial	0.2518051886
+UniRef50_UPI000382F0DF: hypothetical protein, partial|unclassified	0.2518051886
+UniRef50_J7V3V2	0.2517981230
+UniRef50_J7V3V2|unclassified	0.2517981230
+UniRef50_UPI00035D17F2: hypothetical protein, partial	0.2517927135
+UniRef50_UPI00035D17F2: hypothetical protein, partial|unclassified	0.2517927135
+UniRef50_Q92W60: Ribose import ATP-binding protein RbsA 2	0.2517635670
+UniRef50_Q92W60: Ribose import ATP-binding protein RbsA 2|unclassified	0.2517635670
+UniRef50_UPI0002BB5BE1: hypothetical protein	0.2517621547
+UniRef50_UPI0002BB5BE1: hypothetical protein|unclassified	0.2517621547
+UniRef50_C3B5L4: Drug resistance transporter, EmrB/QacA subfamily	0.2517561622
+UniRef50_C3B5L4: Drug resistance transporter, EmrB/QacA subfamily|unclassified	0.2517561622
+UniRef50_UPI000471B87D: oxidoreductase, partial	0.2517550800
+UniRef50_UPI000471B87D: oxidoreductase, partial|unclassified	0.2517550800
+UniRef50_Q6ZL46	0.2517480181
+UniRef50_Q6ZL46|unclassified	0.2517480181
+UniRef50_K0KGT8	0.2517324522
+UniRef50_K0KGT8|unclassified	0.2517324522
+UniRef50_G1UTW8	0.2517105576
+UniRef50_G1UTW8|unclassified	0.2517105576
+UniRef50_UPI0003621FD4: hypothetical protein, partial	0.2517098523
+UniRef50_UPI0003621FD4: hypothetical protein, partial|unclassified	0.2517098523
+UniRef50_K1SIE5	0.2516787181
+UniRef50_K1SIE5|unclassified	0.2516787181
+UniRef50_Q28NL2	0.2516675714
+UniRef50_Q28NL2|unclassified	0.2516675714
+UniRef50_G4XVC3: Protein Fam110a	0.2516243648
+UniRef50_G4XVC3: Protein Fam110a|unclassified	0.2516243648
+UniRef50_B8P4L0: Predicted protein	0.2516216574
+UniRef50_B8P4L0: Predicted protein|unclassified	0.2516216574
+UniRef50_UPI00028820DC: GntR family transcriptional regulator	0.2516215867
+UniRef50_UPI00028820DC: GntR family transcriptional regulator|unclassified	0.2516215867
+UniRef50_A3V2W0	0.2515766237
+UniRef50_A3V2W0|unclassified	0.2515766237
+UniRef50_S5XK36	0.2515725829
+UniRef50_S5XK36|unclassified	0.2515725829
+UniRef50_X2N0M4	0.2515724150
+UniRef50_X2N0M4|unclassified	0.2515724150
+UniRef50_UPI0003EB432B: transcriptional regulator, partial	0.2515108009
+UniRef50_UPI0003EB432B: transcriptional regulator, partial|unclassified	0.2515108009
+UniRef50_Q3SPN5	0.2514943054
+UniRef50_Q3SPN5|unclassified	0.2514943054
+UniRef50_Q393W7	0.2514502456
+UniRef50_Q393W7|unclassified	0.2514502456
+UniRef50_X2H351	0.2514499486
+UniRef50_X2H351|unclassified	0.2514499486
+UniRef50_H0DUX5: PF06900 family protein	0.2514419053
+UniRef50_H0DUX5: PF06900 family protein|unclassified	0.2514419053
+UniRef50_E3EZJ9	0.2514119518
+UniRef50_E3EZJ9|unclassified	0.2514119518
+UniRef50_R4U7Y9	0.2514090559
+UniRef50_R4U7Y9|unclassified	0.2514090559
+UniRef50_J1H1W6: Putative transposase	0.2514085545
+UniRef50_J1H1W6: Putative transposase|unclassified	0.2514085545
+UniRef50_D7BZE1	0.2514074290
+UniRef50_D7BZE1|unclassified	0.2514074290
+UniRef50_A7HF60: Tetratricopeptide TPR_4	0.2513814220
+UniRef50_A7HF60: Tetratricopeptide TPR_4|unclassified	0.2513814220
+UniRef50_Q39NK6: Endoribonuclease L-PSP	0.2513649214
+UniRef50_Q39NK6: Endoribonuclease L-PSP|unclassified	0.2513649214
+UniRef50_Q7VKM9: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase	0.2513317540
+UniRef50_Q7VKM9: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase|unclassified	0.2513317540
+UniRef50_UPI00047E043C: hypothetical protein	0.2513141528
+UniRef50_UPI00047E043C: hypothetical protein|unclassified	0.2513141528
+UniRef50_K8C2U5: IcmF-related protein	0.2513099635
+UniRef50_K8C2U5: IcmF-related protein|unclassified	0.2513099635
+UniRef50_M8DDY3: p-nitrophenylphosphatase	0.2512976774
+UniRef50_M8DDY3: p-nitrophenylphosphatase|unclassified	0.2512976774
+UniRef50_W6I279: MotA/TolQ/ExbB proton channel family protein	0.2512843070
+UniRef50_W6I279: MotA/TolQ/ExbB proton channel family protein|unclassified	0.2512843070
+UniRef50_UPI0004762A86: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase	0.2512605662
+UniRef50_UPI0004762A86: 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine pyrophosphokinase|unclassified	0.2512605662
+UniRef50_UPI000273E825	0.2512530916
+UniRef50_UPI000273E825|unclassified	0.2512530916
+UniRef50_S9P416	0.2512476417
+UniRef50_S9P416|unclassified	0.2512476417
+UniRef50_UPI0000141B05: PREDICTED: 5E5 antigen	0.2512260585
+UniRef50_UPI0000141B05: PREDICTED: 5E5 antigen|unclassified	0.2512260585
+UniRef50_UPI00047E19A4: ABC transporter ATP-binding protein	0.2512147803
+UniRef50_UPI00047E19A4: ABC transporter ATP-binding protein|unclassified	0.2512147803
+UniRef50_H5TUE9	0.2511426482
+UniRef50_H5TUE9|unclassified	0.2511426482
+UniRef50_UPI00036DC030: hypothetical protein	0.2511311426
+UniRef50_UPI00036DC030: hypothetical protein|unclassified	0.2511311426
+UniRef50_Q1JC52: NIF3-related protein	0.2511140483
+UniRef50_Q1JC52: NIF3-related protein|unclassified	0.2511140483
+UniRef50_UPI0003F56C19: hypothetical protein	0.2511099000
+UniRef50_UPI0003F56C19: hypothetical protein|unclassified	0.2511099000
+UniRef50_B7GHJ8: Histidinol-phosphate aminotransferase	0.2510694929
+UniRef50_B7GHJ8: Histidinol-phosphate aminotransferase|unclassified	0.2510694929
+UniRef50_UPI000464E9C2: hypothetical protein	0.2510380864
+UniRef50_UPI000464E9C2: hypothetical protein|unclassified	0.2510380864
+UniRef50_B2T8T4: NIPSNAP family containing protein	0.2510258502
+UniRef50_B2T8T4: NIPSNAP family containing protein|unclassified	0.2510258502
+UniRef50_F9SJR0	0.2509925921
+UniRef50_F9SJR0|unclassified	0.2509925921
+UniRef50_B5WIH3: Aldo/keto reductase	0.2509925699
+UniRef50_B5WIH3: Aldo/keto reductase|unclassified	0.2509925699
+UniRef50_UPI000349EE05: hypothetical protein	0.2509872052
+UniRef50_UPI000349EE05: hypothetical protein|unclassified	0.2509872052
+UniRef50_UPI0003822A28: hypothetical protein	0.2509872044
+UniRef50_UPI0003822A28: hypothetical protein|unclassified	0.2509872044
+UniRef50_UPI0003B46C76: hypothetical protein	0.2509836228
+UniRef50_UPI0003B46C76: hypothetical protein|unclassified	0.2509836228
+UniRef50_E5QS55	0.2509675994
+UniRef50_E5QS55|unclassified	0.2509675994
+UniRef50_UPI0003B6BBA6: glyoxalase	0.2509641194
+UniRef50_UPI0003B6BBA6: glyoxalase|unclassified	0.2509641194
+UniRef50_UPI0003B603EC: ribokinase	0.2509542900
+UniRef50_UPI0003B603EC: ribokinase|unclassified	0.2509542900
+UniRef50_F5R896	0.2509332965
+UniRef50_F5R896|unclassified	0.2509332965
+UniRef50_U2D9V5	0.2508940655
+UniRef50_U2D9V5|unclassified	0.2508940655
+UniRef50_F0ZIH9	0.2508897309
+UniRef50_F0ZIH9|unclassified	0.2508897309
+UniRef50_UPI0002628048: molybdenum ABC transporter substrate-binding protein precursor	0.2508623578
+UniRef50_UPI0002628048: molybdenum ABC transporter substrate-binding protein precursor|unclassified	0.2508623578
+UniRef50_A9DS49	0.2508348967
+UniRef50_A9DS49|unclassified	0.2508348967
+UniRef50_Q28UT2: Adenylate kinase	0.2508266026
+UniRef50_Q28UT2: Adenylate kinase|unclassified	0.2508266026
+UniRef50_UPI000470E709: hypothetical protein	0.2508177384
+UniRef50_UPI000470E709: hypothetical protein|unclassified	0.2508177384
+UniRef50_F4MY57	0.2508176544
+UniRef50_F4MY57|unclassified	0.2508176544
+UniRef50_F7SI65: DMT family permease (Fragment)	0.2508089637
+UniRef50_F7SI65: DMT family permease (Fragment)|unclassified	0.2508089637
+UniRef50_UPI000469FCDE: hypothetical protein	0.2507890973
+UniRef50_UPI000469FCDE: hypothetical protein|unclassified	0.2507890973
+UniRef50_X6GIE6	0.2507753917
+UniRef50_X6GIE6|unclassified	0.2507753917
+UniRef50_UPI0003F9ADEE: hypothetical protein	0.2507618180
+UniRef50_UPI0003F9ADEE: hypothetical protein|unclassified	0.2507618180
+UniRef50_W4HQ39: Fe3+-siderophore ABC transporter substrate-binding protein	0.2507358864
+UniRef50_W4HQ39: Fe3+-siderophore ABC transporter substrate-binding protein|unclassified	0.2507358864
+UniRef50_UPI000372A737: hypothetical protein	0.2507351667
+UniRef50_UPI000372A737: hypothetical protein|unclassified	0.2507351667
+UniRef50_P73346: UPF0145 protein sll118	0.2506882351
+UniRef50_P73346: UPF0145 protein sll118|unclassified	0.2506882351
+UniRef50_UPI00036542A6: hypothetical protein, partial	0.2506391914
+UniRef50_UPI00036542A6: hypothetical protein, partial|unclassified	0.2506391914
+UniRef50_N8ISB1: MazG family protein	0.2506271839
+UniRef50_N8ISB1: MazG family protein|unclassified	0.2506271839
+UniRef50_F2HLC6: Gls24 family general stress protein	0.2506203166
+UniRef50_F2HLC6: Gls24 family general stress protein|unclassified	0.2506203166
+UniRef50_N9QMK5	0.2506195285
+UniRef50_N9QMK5|unclassified	0.2506195285
+UniRef50_UPI0003769C11: hypothetical protein	0.2506177202
+UniRef50_UPI0003769C11: hypothetical protein|unclassified	0.2506177202
+UniRef50_UPI00037E5036: hypothetical protein	0.2506164938
+UniRef50_UPI00037E5036: hypothetical protein|unclassified	0.2506164938
+UniRef50_UPI0004732920: long-chain fatty acid--CoA ligase, partial	0.2506041626
+UniRef50_UPI0004732920: long-chain fatty acid--CoA ligase, partial|unclassified	0.2506041626
+UniRef50_UPI00042064A6: molecular chaperone DnaK	0.2505890729
+UniRef50_UPI00042064A6: molecular chaperone DnaK|unclassified	0.2505890729
+UniRef50_T5E2V5: ThiC-associated domain protein	0.2505763625
+UniRef50_T5E2V5: ThiC-associated domain protein|unclassified	0.2505763625
+UniRef50_A1B0C8	0.2505693523
+UniRef50_A1B0C8|unclassified	0.2505693523
+UniRef50_X1I9Y9: Marine sediment metagenome DNA, contig: S03H2_S05795 (Fragment)	0.2505548117
+UniRef50_X1I9Y9: Marine sediment metagenome DNA, contig: S03H2_S05795 (Fragment)|unclassified	0.2505548117
+UniRef50_UPI000477E4E0: glutathione peroxidase	0.2505529808
+UniRef50_UPI000477E4E0: glutathione peroxidase|unclassified	0.2505529808
+UniRef50_R9NMN5	0.2504970528
+UniRef50_R9NMN5|unclassified	0.2504970528
+UniRef50_UPI00046FABF2: chromosome partitioning protein ParB	0.2504869439
+UniRef50_UPI00046FABF2: chromosome partitioning protein ParB|unclassified	0.2504869439
+UniRef50_UPI0003707BF1: nucleoside hydrolase, partial	0.2504753090
+UniRef50_UPI0003707BF1: nucleoside hydrolase, partial|unclassified	0.2504753090
+UniRef50_Q3J7W9	0.2504630556
+UniRef50_Q3J7W9|unclassified	0.2504630556
+UniRef50_UPI00047921AE: hypothetical protein	0.2504594380
+UniRef50_UPI00047921AE: hypothetical protein|unclassified	0.2504594380
+UniRef50_UPI0004542BA1: PREDICTED: maleylacetoacetate isomerase-like, partial	0.2504580397
+UniRef50_UPI0004542BA1: PREDICTED: maleylacetoacetate isomerase-like, partial|unclassified	0.2504580397
+UniRef50_W8S1V4: ABC-type dipeptide transport system, periplasmic component	0.2504539449
+UniRef50_W8S1V4: ABC-type dipeptide transport system, periplasmic component|unclassified	0.2504539449
+UniRef50_A1T0P0: Pantothenate kinase	0.2504431074
+UniRef50_A1T0P0: Pantothenate kinase|unclassified	0.2504431074
+UniRef50_P28624: Imidazoleglycerol-phosphate dehydratase	0.2504258004
+UniRef50_P28624: Imidazoleglycerol-phosphate dehydratase|unclassified	0.2504258004
+UniRef50_UPI0003F64D82: hypothetical protein	0.2504053062
+UniRef50_UPI0003F64D82: hypothetical protein|unclassified	0.2504053062
+UniRef50_Q2RNN8: Transcriptional regulator, AsnC family	0.2504039675
+UniRef50_Q2RNN8: Transcriptional regulator, AsnC family|unclassified	0.2504039675
+UniRef50_UPI0003FD8434: hypothetical protein	0.2503853109
+UniRef50_UPI0003FD8434: hypothetical protein|unclassified	0.2503853109
+UniRef50_P04818: Thymidylate synthase	0.2503743830
+UniRef50_P04818: Thymidylate synthase|unclassified	0.2503743830
+UniRef50_UPI0003167F12: mannonate dehydratase	0.2503707055
+UniRef50_UPI0003167F12: mannonate dehydratase|unclassified	0.2503707055
+UniRef50_Q9REF4: 6,7-dimethyl-8-ribityllumazine synthase	0.2503202843
+UniRef50_Q9REF4: 6,7-dimethyl-8-ribityllumazine synthase|unclassified	0.2503202843
+UniRef50_H6SJB7: TRAP transporter solute receptor, TAXI family	0.2503158271
+UniRef50_H6SJB7: TRAP transporter solute receptor, TAXI family|unclassified	0.2503158271
+UniRef50_UPI00036140A6: hypothetical protein	0.2503099634
+UniRef50_UPI00036140A6: hypothetical protein|unclassified	0.2503099634
+UniRef50_H9UYL8: Transposase IS3/IS911 family protein	0.2503067074
+UniRef50_H9UYL8: Transposase IS3/IS911 family protein|unclassified	0.2503067074
+UniRef50_J9HAE0	0.2502886087
+UniRef50_J9HAE0|unclassified	0.2502886087
+UniRef50_W0YVS4: Respiratory nitrate reductase subunit beta	0.2502821337
+UniRef50_W0YVS4: Respiratory nitrate reductase subunit beta|unclassified	0.2502821337
+UniRef50_UPI0003C2A5BF: PREDICTED: GTP cyclohydrolase 1-like	0.2502772687
+UniRef50_UPI0003C2A5BF: PREDICTED: GTP cyclohydrolase 1-like|unclassified	0.2502772687
+UniRef50_Q7NC65: Glycerol kinase	0.2502761734
+UniRef50_Q7NC65: Glycerol kinase|unclassified	0.2502761734
+UniRef50_UPI0003639926: hypothetical protein	0.2502743604
+UniRef50_UPI0003639926: hypothetical protein|unclassified	0.2502743604
+UniRef50_V4JXV1	0.2502691290
+UniRef50_V4JXV1|unclassified	0.2502691290
+UniRef50_UPI00038123F9: cation:proton antiporter	0.2502499875
+UniRef50_UPI00038123F9: cation:proton antiporter|unclassified	0.2502499875
+UniRef50_Q0W3V7	0.2502397192
+UniRef50_Q0W3V7|unclassified	0.2502397192
+UniRef50_L1KIH9: LPXTG cell wall anchor domain protein	0.2502363741
+UniRef50_L1KIH9: LPXTG cell wall anchor domain protein|unclassified	0.2502363741
+UniRef50_J1BBD3	0.2502325463
+UniRef50_J1BBD3|unclassified	0.2502325463
+UniRef50_X4ZP56: Pirin family protein	0.2502060545
+UniRef50_X4ZP56: Pirin family protein|unclassified	0.2502060545
+UniRef50_C8RX78: Flagellar hook capping protein	0.2501917907
+UniRef50_C8RX78: Flagellar hook capping protein|unclassified	0.2501917907
+UniRef50_UPI00037A597A: MULTISPECIES: hypothetical protein	0.2501734006
+UniRef50_UPI00037A597A: MULTISPECIES: hypothetical protein|unclassified	0.2501734006
+UniRef50_UPI00029B4D3D: competence protein ComGC	0.2501702011
+UniRef50_UPI00029B4D3D: competence protein ComGC|unclassified	0.2501702011
+UniRef50_UPI000393D62B: PREDICTED: collagen alpha-1(I) chain-like	0.2501622250
+UniRef50_UPI000393D62B: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.2501622250
+UniRef50_S4P442: Electron transfer flavoprotein-ubiquinone oxidoreductase (Fragment)	0.2501256544
+UniRef50_S4P442: Electron transfer flavoprotein-ubiquinone oxidoreductase (Fragment)|unclassified	0.2501256544
+UniRef50_UPI000467A948: hypothetical protein	0.2501123182
+UniRef50_UPI000467A948: hypothetical protein|unclassified	0.2501123182
+UniRef50_UPI00046CFC68: hypothetical protein	0.2501002584
+UniRef50_UPI00046CFC68: hypothetical protein|unclassified	0.2501002584
+UniRef50_K8NX54	0.2500996630
+UniRef50_K8NX54|unclassified	0.2500996630
+UniRef50_UPI000475EE77: histidine kinase	0.2500798307
+UniRef50_UPI000475EE77: histidine kinase|unclassified	0.2500798307
+UniRef50_Q1I5V8: Ribonuclease 3	0.2500791423
+UniRef50_Q1I5V8: Ribonuclease 3|unclassified	0.2500791423
+UniRef50_UPI000472FBDB: S-formylglutathione hydrolase	0.2500480109
+UniRef50_UPI000472FBDB: S-formylglutathione hydrolase|unclassified	0.2500480109
+UniRef50_UPI0003B751CB: glucose dehydrogenase	0.2500356190
+UniRef50_UPI0003B751CB: glucose dehydrogenase|unclassified	0.2500356190
+UniRef50_D8LRY0	0.2500289119
+UniRef50_D8LRY0|unclassified	0.2500289119
+UniRef50_W5P1M6	0.2500278037
+UniRef50_W5P1M6|unclassified	0.2500278037
+UniRef50_UPI0004780BEC: alpha/beta hydrolase	0.2500274605
+UniRef50_UPI0004780BEC: alpha/beta hydrolase|unclassified	0.2500274605
+UniRef50_B5GQH0	0.2500193843
+UniRef50_B5GQH0|unclassified	0.2500193843
+UniRef50_A0A043WFQ4	0.2500087642
+UniRef50_A0A043WFQ4|unclassified	0.2500087642
+UniRef50_B6U1K0	0.2499783465
+UniRef50_B6U1K0|unclassified	0.2499783465
+UniRef50_V2C8E3	0.2499752661
+UniRef50_V2C8E3|unclassified	0.2499752661
+UniRef50_UPI0004706AC4: lipopolysaccharide biosynthesis protein	0.2499621907
+UniRef50_UPI0004706AC4: lipopolysaccharide biosynthesis protein|unclassified	0.2499621907
+UniRef50_B9JSW6: Pectin degradation protein	0.2499491989
+UniRef50_B9JSW6: Pectin degradation protein|unclassified	0.2499491989
+UniRef50_UPI00045E77FA: MarR family transcriptional regulator	0.2499396068
+UniRef50_UPI00045E77FA: MarR family transcriptional regulator|unclassified	0.2499396068
+UniRef50_B7RRM5: Cobyrinic Acid a,c-diamide synthase	0.2499335223
+UniRef50_B7RRM5: Cobyrinic Acid a,c-diamide synthase|unclassified	0.2499335223
+UniRef50_W8S4A8	0.2499187398
+UniRef50_W8S4A8|unclassified	0.2499187398
+UniRef50_S6AT29	0.2499086810
+UniRef50_S6AT29|unclassified	0.2499086810
+UniRef50_UPI00046543C3: hypothetical protein	0.2498972171
+UniRef50_UPI00046543C3: hypothetical protein|unclassified	0.2498972171
+UniRef50_UPI000470CCF6: hypothetical protein	0.2498684066
+UniRef50_UPI000470CCF6: hypothetical protein|unclassified	0.2498684066
+UniRef50_UPI000467A9B2: hypothetical protein	0.2498475226
+UniRef50_UPI000467A9B2: hypothetical protein|unclassified	0.2498475226
+UniRef50_P09143: Succinyl-CoA ligase [ADP-forming] subunit alpha	0.2498457190
+UniRef50_P09143: Succinyl-CoA ligase [ADP-forming] subunit alpha|unclassified	0.2498457190
+UniRef50_UPI00037562BD: hypothetical protein	0.2498371369
+UniRef50_UPI00037562BD: hypothetical protein|unclassified	0.2498371369
+UniRef50_UPI00029D68D7: PREDICTED: brain-specific angiogenesis inhibitor 1	0.2498322051
+UniRef50_UPI00029D68D7: PREDICTED: brain-specific angiogenesis inhibitor 1|unclassified	0.2498322051
+UniRef50_X7ZD87: Putative nLP/P60 protein	0.2497870407
+UniRef50_X7ZD87: Putative nLP/P60 protein|unclassified	0.2497870407
+UniRef50_UPI0002FD1B81: recombinase	0.2497281414
+UniRef50_UPI0002FD1B81: recombinase|unclassified	0.2497281414
+UniRef50_UPI00016A3D2B: multidrug resistance protein, partial	0.2497210816
+UniRef50_UPI00016A3D2B: multidrug resistance protein, partial|unclassified	0.2497210816
+UniRef50_UPI0003612C6D: hypothetical protein, partial	0.2497125908
+UniRef50_UPI0003612C6D: hypothetical protein, partial|unclassified	0.2497125908
+UniRef50_UPI00030D3ED5: hypothetical protein	0.2497094040
+UniRef50_UPI00030D3ED5: hypothetical protein|unclassified	0.2497094040
+UniRef50_Q11N32: Replication protein C	0.2497061697
+UniRef50_Q11N32: Replication protein C|unclassified	0.2497061697
+UniRef50_J7L957: Bacteriocin, lactococcin 972 family protein	0.2496722608
+UniRef50_J7L957: Bacteriocin, lactococcin 972 family protein|unclassified	0.2496722608
+UniRef50_E4PPY5: SAF domain protein	0.2496538150
+UniRef50_E4PPY5: SAF domain protein|unclassified	0.2496538150
+UniRef50_UPI0004648BE1: chemotaxis protein CheW	0.2496176291
+UniRef50_UPI0004648BE1: chemotaxis protein CheW|unclassified	0.2496176291
+UniRef50_E3YBS1: Protein gp20 (Fragment)	0.2496076268
+UniRef50_E3YBS1: Protein gp20 (Fragment)|unclassified	0.2496076268
+UniRef50_UPI0003B52212: transcriptional regulator	0.2495770134
+UniRef50_UPI0003B52212: transcriptional regulator|unclassified	0.2495770134
+UniRef50_UPI000470B55F: hypothetical protein	0.2495753864
+UniRef50_UPI000470B55F: hypothetical protein|unclassified	0.2495753864
+UniRef50_UPI0004787F15: Rrf2 family transcriptional regulator	0.2495515474
+UniRef50_UPI0004787F15: Rrf2 family transcriptional regulator|unclassified	0.2495515474
+UniRef50_A6WP83: Thioesterase superfamily protein	0.2495398112
+UniRef50_A6WP83: Thioesterase superfamily protein|unclassified	0.2495398112
+UniRef50_X6KKD3: Capsid protein	0.2495384726
+UniRef50_X6KKD3: Capsid protein|unclassified	0.2495384726
+UniRef50_A6KYZ4	0.2495373163
+UniRef50_A6KYZ4|unclassified	0.2495373163
+UniRef50_X4ZKX4: Short chain dehydrogenase family protein	0.2495219327
+UniRef50_X4ZKX4: Short chain dehydrogenase family protein|unclassified	0.2495219327
+UniRef50_D1BEK3	0.2495133960
+UniRef50_D1BEK3|unclassified	0.2495133960
+UniRef50_UPI0002F5268D: hypothetical protein	0.2495088079
+UniRef50_UPI0002F5268D: hypothetical protein|unclassified	0.2495088079
+UniRef50_B8GPV2: Shikimate kinase	0.2494492470
+UniRef50_B8GPV2: Shikimate kinase|unclassified	0.2494492470
+UniRef50_UPI00035E0033: hypothetical protein	0.2494387628
+UniRef50_UPI00035E0033: hypothetical protein|unclassified	0.2494387628
+UniRef50_R7HEP9	0.2494230983
+UniRef50_R7HEP9|unclassified	0.2494230983
+UniRef50_UPI00035CC3C1: hypothetical protein, partial	0.2494064217
+UniRef50_UPI00035CC3C1: hypothetical protein, partial|unclassified	0.2494064217
+UniRef50_Q9ZD73	0.2494036740
+UniRef50_Q9ZD73|unclassified	0.2494036740
+UniRef50_U6KFK3: Nuclease, putative	0.2494017796
+UniRef50_U6KFK3: Nuclease, putative|unclassified	0.2494017796
+UniRef50_G4T2Z6: Nickel-iron hydrogenase, accessory protein	0.2493912803
+UniRef50_G4T2Z6: Nickel-iron hydrogenase, accessory protein|unclassified	0.2493912803
+UniRef50_A0A018QXA5: Electron transport complex protein RnfC	0.2493840626
+UniRef50_A0A018QXA5: Electron transport complex protein RnfC|unclassified	0.2493840626
+UniRef50_R0B9U9	0.2493621477
+UniRef50_R0B9U9|unclassified	0.2493621477
+UniRef50_J4UL42	0.2493611719
+UniRef50_J4UL42|unclassified	0.2493611719
+UniRef50_UPI000197AB3D: hypothetical protein	0.2493569771
+UniRef50_UPI000197AB3D: hypothetical protein|unclassified	0.2493569771
+UniRef50_A3JPR2	0.2493344742
+UniRef50_A3JPR2|unclassified	0.2493344742
+UniRef50_UPI00037EDF1A: hypothetical protein	0.2492979799
+UniRef50_UPI00037EDF1A: hypothetical protein|unclassified	0.2492979799
+UniRef50_A8GM20	0.2492789049
+UniRef50_A8GM20|unclassified	0.2492789049
+UniRef50_Q9A3C8: UPF0260 protein CC_3276	0.2492632697
+UniRef50_Q9A3C8: UPF0260 protein CC_3276|unclassified	0.2492632697
+UniRef50_M8YLY0	0.2492609122
+UniRef50_M8YLY0|unclassified	0.2492609122
+UniRef50_R7VNV9: Propionyl-CoA carboxylase alpha chain, mitochondrial	0.2492530435
+UniRef50_R7VNV9: Propionyl-CoA carboxylase alpha chain, mitochondrial|unclassified	0.2492530435
+UniRef50_X2MY63	0.2492435827
+UniRef50_X2MY63|unclassified	0.2492435827
+UniRef50_UPI0002F267F7: hypothetical protein	0.2492326903
+UniRef50_UPI0002F267F7: hypothetical protein|unclassified	0.2492326903
+UniRef50_UPI0003AB043B: MFS transporter	0.2492232872
+UniRef50_UPI0003AB043B: MFS transporter|unclassified	0.2492232872
+UniRef50_UPI000440CBE5: PREDICTED: 5''''-nucleotidase	0.2492222959
+UniRef50_UPI000440CBE5: PREDICTED: 5''''-nucleotidase|unclassified	0.2492222959
+UniRef50_O87320: Putative aminotransferase AatC	0.2492141015
+UniRef50_O87320: Putative aminotransferase AatC|unclassified	0.2492141015
+UniRef50_UPI0003D71351: PREDICTED: phytosulfokine receptor 1-like	0.2492042755
+UniRef50_UPI0003D71351: PREDICTED: phytosulfokine receptor 1-like|unclassified	0.2492042755
+UniRef50_UPI0002492B0A: uroporphyrinogen-III C-methyltransferase	0.2491930759
+UniRef50_UPI0002492B0A: uroporphyrinogen-III C-methyltransferase|unclassified	0.2491930759
+UniRef50_UPI00037AA3EC: hypothetical protein	0.2491647233
+UniRef50_UPI00037AA3EC: hypothetical protein|unclassified	0.2491647233
+UniRef50_UPI000441C901: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, chloroplastic/mitochondrial-like	0.2491092641
+UniRef50_UPI000441C901: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, chloroplastic/mitochondrial-like|unclassified	0.2491092641
+UniRef50_UPI000366C56B: hypothetical protein	0.2491059020
+UniRef50_UPI000366C56B: hypothetical protein|unclassified	0.2491059020
+UniRef50_V4R1X6	0.2491031840
+UniRef50_V4R1X6|unclassified	0.2491031840
+UniRef50_G5Q0E7	0.2491022797
+UniRef50_G5Q0E7|unclassified	0.2491022797
+UniRef50_N2IXD0	0.2490988839
+UniRef50_N2IXD0|unclassified	0.2490988839
+UniRef50_Q0S519	0.2490834807
+UniRef50_Q0S519|unclassified	0.2490834807
+UniRef50_K2LBK5: 2,4-dihydroxyhept-2-ene-1,7-dioic acid aldolase	0.2490755891
+UniRef50_K2LBK5: 2,4-dihydroxyhept-2-ene-1,7-dioic acid aldolase|unclassified	0.2490755891
+UniRef50_A0A011AFH8: Fructose-2,6-bisphosphatase	0.2490626143
+UniRef50_A0A011AFH8: Fructose-2,6-bisphosphatase|unclassified	0.2490626143
+UniRef50_UPI000378DE9B: hypothetical protein	0.2490621105
+UniRef50_UPI000378DE9B: hypothetical protein|unclassified	0.2490621105
+UniRef50_Q5FQ35: Glutamate--tRNA ligase 2	0.2490608159
+UniRef50_Q5FQ35: Glutamate--tRNA ligase 2|unclassified	0.2490608159
+UniRef50_E3ZZ71: Stage III sporulation protein E (Fragment)	0.2490558321
+UniRef50_E3ZZ71: Stage III sporulation protein E (Fragment)|unclassified	0.2490558321
+UniRef50_G2C2A9	0.2490533676
+UniRef50_G2C2A9|unclassified	0.2490533676
+UniRef50_F5WGG8: Conserved domain protein	0.2490345324
+UniRef50_F5WGG8: Conserved domain protein|unclassified	0.2490345324
+UniRef50_M0MSA6: N-methylhydaintoinase A (Fragment)	0.2490319983
+UniRef50_M0MSA6: N-methylhydaintoinase A (Fragment)|unclassified	0.2490319983
+UniRef50_UPI0003B46C0A: FMN-dependent NADH-azoreductase	0.2490160477
+UniRef50_UPI0003B46C0A: FMN-dependent NADH-azoreductase|unclassified	0.2490160477
+UniRef50_UPI0004795AC6: hypothetical protein	0.2490014979
+UniRef50_UPI0004795AC6: hypothetical protein|unclassified	0.2490014979
+UniRef50_K7T5I3	0.2489839523
+UniRef50_K7T5I3|unclassified	0.2489839523
+UniRef50_C5X3K1	0.2489711817
+UniRef50_C5X3K1|unclassified	0.2489711817
+UniRef50_UPI00037CADCD: hypothetical protein	0.2489678133
+UniRef50_UPI00037CADCD: hypothetical protein|unclassified	0.2489678133
+UniRef50_L0KJN2	0.2489670763
+UniRef50_L0KJN2|unclassified	0.2489670763
+UniRef50_G2IST8: NifU-like protein	0.2489481318
+UniRef50_G2IST8: NifU-like protein|unclassified	0.2489481318
+UniRef50_UPI0001FFEFAC: ABC transporter, membrane spanning protein	0.2489341471
+UniRef50_UPI0001FFEFAC: ABC transporter, membrane spanning protein|unclassified	0.2489341471
+UniRef50_Z8HHJ2	0.2488864096
+UniRef50_Z8HHJ2|unclassified	0.2488864096
+UniRef50_UPI000360AFBD: hypothetical protein	0.2488497999
+UniRef50_UPI000360AFBD: hypothetical protein|unclassified	0.2488497999
+UniRef50_Q1RJU8: GTP-binding protein TypA	0.2488353597
+UniRef50_Q1RJU8: GTP-binding protein TypA|unclassified	0.2488353597
+UniRef50_P32395: Uroporphyrinogen decarboxylase	0.2488298235
+UniRef50_P32395: Uroporphyrinogen decarboxylase|unclassified	0.2488298235
+UniRef50_UPI00046FEF63: iron-dicitrate transporter subunit FecD	0.2488269240
+UniRef50_UPI00046FEF63: iron-dicitrate transporter subunit FecD|unclassified	0.2488269240
+UniRef50_D6GHI1	0.2488181717
+UniRef50_D6GHI1|unclassified	0.2488181717
+UniRef50_G4B1P6: D-galactose-binding periplasmic protein	0.2488125579
+UniRef50_G4B1P6: D-galactose-binding periplasmic protein|unclassified	0.2488125579
+UniRef50_C5X5H8	0.2488069767
+UniRef50_C5X5H8|unclassified	0.2488069767
+UniRef50_UPI000328DE01: PREDICTED: transcriptional regulator ICP27-like	0.2487846259
+UniRef50_UPI000328DE01: PREDICTED: transcriptional regulator ICP27-like|unclassified	0.2487846259
+UniRef50_UPI000313CECC: hypothetical protein	0.2487822210
+UniRef50_UPI000313CECC: hypothetical protein|unclassified	0.2487822210
+UniRef50_UPI00031187B6: hypothetical protein	0.2487708800
+UniRef50_UPI00031187B6: hypothetical protein|unclassified	0.2487708800
+UniRef50_UPI00036DCA2F: hypothetical protein	0.2487653941
+UniRef50_UPI00036DCA2F: hypothetical protein|unclassified	0.2487653941
+UniRef50_W7E2M1: Heme oxygenase	0.2487467247
+UniRef50_W7E2M1: Heme oxygenase|unclassified	0.2487467247
+UniRef50_P10738: rRNA adenine N-6-methyltransferase	0.2487460905
+UniRef50_P10738: rRNA adenine N-6-methyltransferase|unclassified	0.2487460905
+UniRef50_E1VAT8	0.2487454700
+UniRef50_E1VAT8|unclassified	0.2487454700
+UniRef50_H3NXJ0	0.2487271241
+UniRef50_H3NXJ0|unclassified	0.2487271241
+UniRef50_Q89P01: Blr3682 protein	0.2486536691
+UniRef50_Q89P01: Blr3682 protein|unclassified	0.2486536691
+UniRef50_U1MU14	0.2486492684
+UniRef50_U1MU14|unclassified	0.2486492684
+UniRef50_H8MLE9: Pirin family protein	0.2486371146
+UniRef50_H8MLE9: Pirin family protein|unclassified	0.2486371146
+UniRef50_B6WBV7: Glyoxalase family protein	0.2486319833
+UniRef50_B6WBV7: Glyoxalase family protein|unclassified	0.2486319833
+UniRef50_Q97BK5: Nucleoside diphosphate kinase	0.2485786186
+UniRef50_Q97BK5: Nucleoside diphosphate kinase|unclassified	0.2485786186
+UniRef50_UPI000289481B: 50S ribosomal protein L22	0.2485627165
+UniRef50_UPI000289481B: 50S ribosomal protein L22|unclassified	0.2485627165
+UniRef50_A0A038G9V0: Protein ImpB	0.2485460124
+UniRef50_A0A038G9V0: Protein ImpB|unclassified	0.2485460124
+UniRef50_UPI0004174C64: hypothetical protein	0.2485269343
+UniRef50_UPI0004174C64: hypothetical protein|unclassified	0.2485269343
+UniRef50_E4SJ75: Transposase	0.2485076803
+UniRef50_E4SJ75: Transposase|unclassified	0.2485076803
+UniRef50_R1CJT0	0.2484870083
+UniRef50_R1CJT0|unclassified	0.2484870083
+UniRef50_UPI000225A922: 5-aminolevulinate synthase	0.2484567946
+UniRef50_UPI000225A922: 5-aminolevulinate synthase|unclassified	0.2484567946
+UniRef50_A3Y661	0.2484471717
+UniRef50_A3Y661|unclassified	0.2484471717
+UniRef50_P35450: Elongation factor G, chloroplastic (Fragment)	0.2484417142
+UniRef50_P35450: Elongation factor G, chloroplastic (Fragment)|unclassified	0.2484417142
+UniRef50_I3IHT7: Heat shock protein Hsp20	0.2484325633
+UniRef50_I3IHT7: Heat shock protein Hsp20|unclassified	0.2484325633
+UniRef50_UPI00042B02BE: NADPH-dependent thioredoxin reductase A, putative	0.2484325046
+UniRef50_UPI00042B02BE: NADPH-dependent thioredoxin reductase A, putative|unclassified	0.2484325046
+UniRef50_I4YT79	0.2484197940
+UniRef50_I4YT79|unclassified	0.2484197940
+UniRef50_UPI00047AF505: antitermination protein NusG	0.2484157488
+UniRef50_UPI00047AF505: antitermination protein NusG|unclassified	0.2484157488
+UniRef50_P55674: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifN	0.2483862330
+UniRef50_P55674: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifN|unclassified	0.2483862330
+UniRef50_UPI0004762EE2: (2Fe-2S)-binding protein	0.2483717595
+UniRef50_UPI0004762EE2: (2Fe-2S)-binding protein|unclassified	0.2483717595
+UniRef50_UPI000413630E: peptidylprolyl isomerase	0.2483573838
+UniRef50_UPI000413630E: peptidylprolyl isomerase|unclassified	0.2483573838
+UniRef50_H3KHC4	0.2482844726
+UniRef50_H3KHC4|unclassified	0.2482844726
+UniRef50_W0CYP1: Peptide deformylase	0.2482614311
+UniRef50_W0CYP1: Peptide deformylase|unclassified	0.2482614311
+UniRef50_W8ADW9: NagD-like phosphatase	0.2482457755
+UniRef50_W8ADW9: NagD-like phosphatase|unclassified	0.2482457755
+UniRef50_X0SQX2: Marine sediment metagenome DNA, contig: S01H1_L02971 (Fragment)	0.2482223922
+UniRef50_X0SQX2: Marine sediment metagenome DNA, contig: S01H1_L02971 (Fragment)|unclassified	0.2482223922
+UniRef50_B2GCM0: Cyclic pyranopterin monophosphate synthase accessory protein	0.2482100756
+UniRef50_B2GCM0: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	0.2482100756
+UniRef50_UPI000462826B: hypothetical protein	0.2481943420
+UniRef50_UPI000462826B: hypothetical protein|unclassified	0.2481943420
+UniRef50_Q9FV81-2: Isoform 2 of Glutamyl-tRNA(Gln) amidotransferase subunit B, chloroplastic/mitochondrial	0.2481906448
+UniRef50_Q9FV81-2: Isoform 2 of Glutamyl-tRNA(Gln) amidotransferase subunit B, chloroplastic/mitochondrial|unclassified	0.2481906448
+UniRef50_B4RBF0	0.2481677176
+UniRef50_B4RBF0|unclassified	0.2481677176
+UniRef50_Q1RJ61	0.2481588728
+UniRef50_Q1RJ61|unclassified	0.2481588728
+UniRef50_A7V8J5	0.2481153199
+UniRef50_A7V8J5|unclassified	0.2481153199
+UniRef50_X1CL00: Marine sediment metagenome DNA, contig: S01H4_S18407 (Fragment)	0.2480859663
+UniRef50_X1CL00: Marine sediment metagenome DNA, contig: S01H4_S18407 (Fragment)|unclassified	0.2480859663
+UniRef50_UPI0003B3C839: 5-aminolevulic acid synthase	0.2480732324
+UniRef50_UPI0003B3C839: 5-aminolevulic acid synthase|unclassified	0.2480732324
+UniRef50_UPI0002D2F850: hypothetical protein	0.2480459935
+UniRef50_UPI0002D2F850: hypothetical protein|unclassified	0.2480459935
+UniRef50_E4XWU8: Whole genome shotgun assembly, reference scaffold set, scaffold scaffold_242	0.2480453639
+UniRef50_E4XWU8: Whole genome shotgun assembly, reference scaffold set, scaffold scaffold_242|unclassified	0.2480453639
+UniRef50_F0L6J8: Possible phage phi-C31 gp36-like protein / Major capsid protein, HK97 family	0.2480354402
+UniRef50_F0L6J8: Possible phage phi-C31 gp36-like protein / Major capsid protein, HK97 family|unclassified	0.2480354402
+UniRef50_UPI000479683F: hypothetical protein	0.2480215861
+UniRef50_UPI000479683F: hypothetical protein|unclassified	0.2480215861
+UniRef50_UPI0003EC0560: PREDICTED: transforming acidic coiled-coil-containing protein 3	0.2480158730
+UniRef50_UPI0003EC0560: PREDICTED: transforming acidic coiled-coil-containing protein 3|unclassified	0.2480158730
+UniRef50_I2RX71	0.2480126429
+UniRef50_I2RX71|unclassified	0.2480126429
+UniRef50_A0A059LCG0	0.2480046794
+UniRef50_A0A059LCG0|unclassified	0.2480046794
+UniRef50_K1Z534	0.2479886675
+UniRef50_K1Z534|unclassified	0.2479886675
+UniRef50_A0A023VAC3: Membrane protein	0.2479886000
+UniRef50_A0A023VAC3: Membrane protein|unclassified	0.2479886000
+UniRef50_UPI00036C0BD9: hypothetical protein	0.2479777344
+UniRef50_UPI00036C0BD9: hypothetical protein|unclassified	0.2479777344
+UniRef50_UPI00016AD465: hypothetical protein	0.2479622071
+UniRef50_UPI00016AD465: hypothetical protein|unclassified	0.2479622071
+UniRef50_UPI00046AD586: hypothetical protein	0.2479374184
+UniRef50_UPI00046AD586: hypothetical protein|unclassified	0.2479374184
+UniRef50_M9R4A4	0.2479336296
+UniRef50_M9R4A4|unclassified	0.2479336296
+UniRef50_UPI00035E2421: hypothetical protein	0.2479118456
+UniRef50_UPI00035E2421: hypothetical protein|unclassified	0.2479118456
+UniRef50_X0UUX3: Marine sediment metagenome DNA, contig: S01H1_S06706 (Fragment)	0.2478985600
+UniRef50_X0UUX3: Marine sediment metagenome DNA, contig: S01H1_S06706 (Fragment)|unclassified	0.2478985600
+UniRef50_W1N8H5	0.2478838387
+UniRef50_W1N8H5|unclassified	0.2478838387
+UniRef50_UPI0004051998: glycosyl transferase family 2	0.2478706369
+UniRef50_UPI0004051998: glycosyl transferase family 2|unclassified	0.2478706369
+UniRef50_UPI0003B42F1C: hypothetical protein	0.2478580354
+UniRef50_UPI0003B42F1C: hypothetical protein|unclassified	0.2478580354
+UniRef50_F3LCJ4: Putative transcriptional regulator	0.2478327254
+UniRef50_F3LCJ4: Putative transcriptional regulator|unclassified	0.2478327254
+UniRef50_UPI000377B5C3: hypothetical protein	0.2478054552
+UniRef50_UPI000377B5C3: hypothetical protein|unclassified	0.2478054552
+UniRef50_B1FS12	0.2477556080
+UniRef50_B1FS12|unclassified	0.2477556080
+UniRef50_UPI0003735D88: hypothetical protein	0.2477481924
+UniRef50_UPI0003735D88: hypothetical protein|unclassified	0.2477481924
+UniRef50_J9P3B1	0.2477326937
+UniRef50_J9P3B1|unclassified	0.2477326937
+UniRef50_UPI0003B307F8: aminotransferase class IV, partial	0.2477299653
+UniRef50_UPI0003B307F8: aminotransferase class IV, partial|unclassified	0.2477299653
+UniRef50_Q98PK9: Thioredoxin reductase	0.2476919266
+UniRef50_Q98PK9: Thioredoxin reductase|unclassified	0.2476919266
+UniRef50_UPI0002554F1F: ribose transport ATP-binding protein RbsA	0.2476907932
+UniRef50_UPI0002554F1F: ribose transport ATP-binding protein RbsA|unclassified	0.2476907932
+UniRef50_UPI0002625F3E: inner-membrane translocator	0.2476815295
+UniRef50_UPI0002625F3E: inner-membrane translocator|unclassified	0.2476815295
+UniRef50_UPI0001911376: DNA-binding transcriptional activator of porin biosynthesis, partial	0.2476767205
+UniRef50_UPI0001911376: DNA-binding transcriptional activator of porin biosynthesis, partial|unclassified	0.2476767205
+UniRef50_K2EQR3: Toluene tolerance protein Ttg2B	0.2476607744
+UniRef50_K2EQR3: Toluene tolerance protein Ttg2B|unclassified	0.2476607744
+UniRef50_UPI00047EA28F: hypothetical protein	0.2476515575
+UniRef50_UPI00047EA28F: hypothetical protein|unclassified	0.2476515575
+UniRef50_UPI00044228F6: PREDICTED: adenine/guanine permease AZG1-like, partial	0.2476044382
+UniRef50_UPI00044228F6: PREDICTED: adenine/guanine permease AZG1-like, partial|unclassified	0.2476044382
+UniRef50_UPI0002557992: transcriptional regulator protein	0.2476043516
+UniRef50_UPI0002557992: transcriptional regulator protein|unclassified	0.2476043516
+UniRef50_Q1QVF5: Phosphoheptose isomerase	0.2475679180
+UniRef50_Q1QVF5: Phosphoheptose isomerase|unclassified	0.2475679180
+UniRef50_G8WSA5: Esterase/lipase/thioesterase	0.2475672973
+UniRef50_G8WSA5: Esterase/lipase/thioesterase|unclassified	0.2475672973
+UniRef50_UPI00047B3977: hypothetical protein	0.2475320890
+UniRef50_UPI00047B3977: hypothetical protein|unclassified	0.2475320890
+UniRef50_F2EDD7: Predicted protein (Fragment)	0.2475319115
+UniRef50_F2EDD7: Predicted protein (Fragment)|unclassified	0.2475319115
+UniRef50_UPI0002558DE1: PQQ enzyme repeat domain-containing protein	0.2474944526
+UniRef50_UPI0002558DE1: PQQ enzyme repeat domain-containing protein|unclassified	0.2474944526
+UniRef50_UPI00036CE626: hypothetical protein	0.2474844026
+UniRef50_UPI00036CE626: hypothetical protein|unclassified	0.2474844026
+UniRef50_UPI0004645B4C: FMN-dependent NADH-azoreductase	0.2474629330
+UniRef50_UPI0004645B4C: FMN-dependent NADH-azoreductase|unclassified	0.2474629330
+UniRef50_D8JT89	0.2474377974
+UniRef50_D8JT89|unclassified	0.2474377974
+UniRef50_UPI00047D9DA7: membrane protein	0.2474294288
+UniRef50_UPI00047D9DA7: membrane protein|unclassified	0.2474294288
+UniRef50_K7YRX9: Phosphoribosylformylglycinamidine synthase, purS protein	0.2474294201
+UniRef50_K7YRX9: Phosphoribosylformylglycinamidine synthase, purS protein|unclassified	0.2474294201
+UniRef50_F0LTE4	0.2473950357
+UniRef50_F0LTE4|unclassified	0.2473950357
+UniRef50_I7DQH7	0.2473780060
+UniRef50_I7DQH7|unclassified	0.2473780060
+UniRef50_UPI00038411E9	0.2473496751
+UniRef50_UPI00038411E9|unclassified	0.2473496751
+UniRef50_V8NK60: Octapeptide-repeat protein T2 (Fragment)	0.2473426357
+UniRef50_V8NK60: Octapeptide-repeat protein T2 (Fragment)|unclassified	0.2473426357
+UniRef50_W9A418	0.2473356015
+UniRef50_W9A418|unclassified	0.2473356015
+UniRef50_R5WDU7: Chaperone protein DnaJ	0.2473342401
+UniRef50_R5WDU7: Chaperone protein DnaJ|unclassified	0.2473342401
+UniRef50_V6EZI7	0.2473042319
+UniRef50_V6EZI7|unclassified	0.2473042319
+UniRef50_UPI000299D35A: site-specific DNA methylase	0.2472945399
+UniRef50_UPI000299D35A: site-specific DNA methylase|unclassified	0.2472945399
+UniRef50_B5EPL8	0.2472790624
+UniRef50_B5EPL8|unclassified	0.2472790624
+UniRef50_UPI000363A65E: ABC transporter ATP-binding protein	0.2472758828
+UniRef50_UPI000363A65E: ABC transporter ATP-binding protein|unclassified	0.2472758828
+UniRef50_UPI000379EBD6: hypothetical protein	0.2472575499
+UniRef50_UPI000379EBD6: hypothetical protein|unclassified	0.2472575499
+UniRef50_U3U6G2: Chloramphenicol resistance protein	0.2472417041
+UniRef50_U3U6G2: Chloramphenicol resistance protein|unclassified	0.2472417041
+UniRef50_UPI0003B4FC81: catalase/hydroperoxidase HPI(I), partial	0.2472407600
+UniRef50_UPI0003B4FC81: catalase/hydroperoxidase HPI(I), partial|unclassified	0.2472407600
+UniRef50_X1DET6: Marine sediment metagenome DNA, contig: S01H4_S07909	0.2472362126
+UniRef50_X1DET6: Marine sediment metagenome DNA, contig: S01H4_S07909|unclassified	0.2472362126
+UniRef50_G2KNF1: Fe-S metabolism associated domain protein	0.2472042150
+UniRef50_G2KNF1: Fe-S metabolism associated domain protein|unclassified	0.2472042150
+UniRef50_I1Y681: Type-F conjugative transfer system protein TraW	0.2471997026
+UniRef50_I1Y681: Type-F conjugative transfer system protein TraW|unclassified	0.2471997026
+UniRef50_A0A036HU57	0.2471934620
+UniRef50_A0A036HU57|unclassified	0.2471934620
+UniRef50_UPI00045E74EB: hypothetical protein	0.2471527669
+UniRef50_UPI00045E74EB: hypothetical protein|unclassified	0.2471527669
+UniRef50_G5JJH8	0.2471422749
+UniRef50_G5JJH8|unclassified	0.2471422749
+UniRef50_UPI0003709BDF: hypothetical protein	0.2471160406
+UniRef50_UPI0003709BDF: hypothetical protein|unclassified	0.2471160406
+UniRef50_Q0F8U5	0.2470659498
+UniRef50_Q0F8U5|unclassified	0.2470659498
+UniRef50_Q1YU00: NADH:flavin oxidoreductase/NADH oxidase:FAD-dependent pyridinenucleotide-disulphide oxidoreductase (Fragment)	0.2470518503
+UniRef50_Q1YU00: NADH:flavin oxidoreductase/NADH oxidase:FAD-dependent pyridinenucleotide-disulphide oxidoreductase (Fragment)|unclassified	0.2470518503
+UniRef50_UPI000368B72A: hypothetical protein	0.2470489317
+UniRef50_UPI000368B72A: hypothetical protein|unclassified	0.2470489317
+UniRef50_UPI0004171A57: histidinol-phosphate aminotransferase	0.2470479689
+UniRef50_UPI0004171A57: histidinol-phosphate aminotransferase|unclassified	0.2470479689
+UniRef50_A0A011PTY7	0.2470341705
+UniRef50_A0A011PTY7|unclassified	0.2470341705
+UniRef50_Z5X6G1	0.2470340332
+UniRef50_Z5X6G1|unclassified	0.2470340332
+UniRef50_UPI000287EE3A: rhizobiocin/RTX toxin and hemolysin-type calcium binding protein	0.2470250031
+UniRef50_UPI000287EE3A: rhizobiocin/RTX toxin and hemolysin-type calcium binding protein|unclassified	0.2470250031
+UniRef50_U9Y5I1	0.2470248752
+UniRef50_U9Y5I1|unclassified	0.2470248752
+UniRef50_UPI000463B1CE: type III secretion system protein	0.2470135753
+UniRef50_UPI000463B1CE: type III secretion system protein|unclassified	0.2470135753
+UniRef50_C3AHJ7: Transcriptional regulator, ArsR	0.2469948895
+UniRef50_C3AHJ7: Transcriptional regulator, ArsR|unclassified	0.2469948895
+UniRef50_UPI0003B55038: hyaluronan synthase	0.2469402649
+UniRef50_UPI0003B55038: hyaluronan synthase|unclassified	0.2469402649
+UniRef50_UPI00046F60DA: hypothetical protein	0.2468911308
+UniRef50_UPI00046F60DA: hypothetical protein|unclassified	0.2468911308
+UniRef50_C4ZLQ1: BolA family protein	0.2468851620
+UniRef50_C4ZLQ1: BolA family protein|unclassified	0.2468851620
+UniRef50_UPI0003B7618A: chemotaxis protein CheY	0.2468680649
+UniRef50_UPI0003B7618A: chemotaxis protein CheY|unclassified	0.2468680649
+UniRef50_R9G7M5: Truncated putative replication initiation protein Rep	0.2468344898
+UniRef50_R9G7M5: Truncated putative replication initiation protein Rep|unclassified	0.2468344898
+UniRef50_A0A011P1Z9: Inner membrane protein YgaZ	0.2468050530
+UniRef50_A0A011P1Z9: Inner membrane protein YgaZ|unclassified	0.2468050530
+UniRef50_UPI00035C91C1: hypothetical protein	0.2467771874
+UniRef50_UPI00035C91C1: hypothetical protein|unclassified	0.2467771874
+UniRef50_UPI00029A3655: glycine/betaine ABC transporter	0.2467273999
+UniRef50_UPI00029A3655: glycine/betaine ABC transporter|unclassified	0.2467273999
+UniRef50_UPI00036ADD20: hypothetical protein	0.2467221922
+UniRef50_UPI00036ADD20: hypothetical protein|unclassified	0.2467221922
+UniRef50_M4XGN7	0.2467166462
+UniRef50_M4XGN7|unclassified	0.2467166462
+UniRef50_UPI0003805ECB: hypothetical protein	0.2467062293
+UniRef50_UPI0003805ECB: hypothetical protein|unclassified	0.2467062293
+UniRef50_F4DVA0: Membrane protein-like protein	0.2466767147
+UniRef50_F4DVA0: Membrane protein-like protein|unclassified	0.2466767147
+UniRef50_UPI0003671725: hypothetical protein	0.2466764454
+UniRef50_UPI0003671725: hypothetical protein|unclassified	0.2466764454
+UniRef50_UPI000380512A: hypothetical protein	0.2466686120
+UniRef50_UPI000380512A: hypothetical protein|unclassified	0.2466686120
+UniRef50_S4MHM8	0.2466412065
+UniRef50_S4MHM8|unclassified	0.2466412065
+UniRef50_X1UFE3: Marine sediment metagenome DNA, contig: S12H4_S11934 (Fragment)	0.2466308418
+UniRef50_X1UFE3: Marine sediment metagenome DNA, contig: S12H4_S11934 (Fragment)|unclassified	0.2466308418
+UniRef50_R1FI75	0.2466299004
+UniRef50_R1FI75|unclassified	0.2466299004
+UniRef50_UPI0003758259: MULTISPECIES: hypothetical protein	0.2466238513
+UniRef50_UPI0003758259: MULTISPECIES: hypothetical protein|unclassified	0.2466238513
+UniRef50_C9WZ56: Transcription-repair-coupling factor	0.2466091245
+UniRef50_C9WZ56: Transcription-repair-coupling factor|g__Neisseria.s__Neisseria_meningitidis	0.2466091245
+UniRef50_P12049: UPF0062 protein YexA	0.2465965042
+UniRef50_P12049: UPF0062 protein YexA|unclassified	0.2465965042
+UniRef50_A0A014L0D1: Polyketide cyclase	0.2465842318
+UniRef50_A0A014L0D1: Polyketide cyclase|unclassified	0.2465842318
+UniRef50_UPI00047E68F7: hypothetical protein	0.2465542074
+UniRef50_UPI00047E68F7: hypothetical protein|unclassified	0.2465542074
+UniRef50_UPI00036FF3AA: hypothetical protein	0.2465460620
+UniRef50_UPI00036FF3AA: hypothetical protein|unclassified	0.2465460620
+UniRef50_A0A024HXD0	0.2465431533
+UniRef50_A0A024HXD0|unclassified	0.2465431533
+UniRef50_B5E221	0.2465423000
+UniRef50_B5E221|unclassified	0.2465423000
+UniRef50_X2MGS1: Cytochrome C nitrite reductase	0.2465179695
+UniRef50_X2MGS1: Cytochrome C nitrite reductase|unclassified	0.2465179695
+UniRef50_B7J5S3: 3-isopropylmalate dehydratase small subunit	0.2464936400
+UniRef50_B7J5S3: 3-isopropylmalate dehydratase small subunit|unclassified	0.2464936400
+UniRef50_UPI000308327E: hypothetical protein	0.2464758290
+UniRef50_UPI000308327E: hypothetical protein|unclassified	0.2464758290
+UniRef50_Q8GJN6: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.2464577242
+UniRef50_Q8GJN6: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.2464577242
+UniRef50_UPI00044108AB: hypothetical protein AURDEDRAFT_124145	0.2464548895
+UniRef50_UPI00044108AB: hypothetical protein AURDEDRAFT_124145|unclassified	0.2464548895
+UniRef50_M4YWS7: Capsule biosynthesis protein	0.2464496710
+UniRef50_M4YWS7: Capsule biosynthesis protein|unclassified	0.2464496710
+UniRef50_D0B2L9: Predicted protein	0.2464337424
+UniRef50_D0B2L9: Predicted protein|unclassified	0.2464337424
+UniRef50_UPI00037CC457: hypothetical protein	0.2464218295
+UniRef50_UPI00037CC457: hypothetical protein|unclassified	0.2464218295
+UniRef50_A0A011MST9: Putative ATP-dependent protease	0.2464120683
+UniRef50_A0A011MST9: Putative ATP-dependent protease|unclassified	0.2464120683
+UniRef50_Q87ST5: 4-hydroxythreonine-4-phosphate dehydrogenase	0.2463756514
+UniRef50_Q87ST5: 4-hydroxythreonine-4-phosphate dehydrogenase|unclassified	0.2463756514
+UniRef50_C1D040	0.2463267063
+UniRef50_C1D040|unclassified	0.2463267063
+UniRef50_A4X067	0.2463131169
+UniRef50_A4X067|unclassified	0.2463131169
+UniRef50_S3E9N2	0.2463055790
+UniRef50_S3E9N2|unclassified	0.2463055790
+UniRef50_V8HFR8	0.2463054187
+UniRef50_V8HFR8|unclassified	0.2463054187
+UniRef50_W8HHE6: Glyoxalase domain-containing protein 5	0.2462913401
+UniRef50_W8HHE6: Glyoxalase domain-containing protein 5|unclassified	0.2462913401
+UniRef50_UPI0001BF7AAE: hypothetical protein SMAC_11437, partial	0.2462858712
+UniRef50_UPI0001BF7AAE: hypothetical protein SMAC_11437, partial|unclassified	0.2462858712
+UniRef50_Q2CH80	0.2462850442
+UniRef50_Q2CH80|unclassified	0.2462850442
+UniRef50_UPI0003C16102: PREDICTED: ribonucleoside-diphosphate reductase large subunit-like	0.2462845232
+UniRef50_UPI0003C16102: PREDICTED: ribonucleoside-diphosphate reductase large subunit-like|unclassified	0.2462845232
+UniRef50_Z2DB54	0.2462840408
+UniRef50_Z2DB54|unclassified	0.2462840408
+UniRef50_C6XRM5	0.2462767067
+UniRef50_C6XRM5|unclassified	0.2462767067
+UniRef50_C6XAM9	0.2462734911
+UniRef50_C6XAM9|unclassified	0.2462734911
+UniRef50_UPI00035CAB47: phosphoribosylglycinamide synthetase	0.2462563530
+UniRef50_UPI00035CAB47: phosphoribosylglycinamide synthetase|unclassified	0.2462563530
+UniRef50_U1SUV1	0.2462553983
+UniRef50_U1SUV1|unclassified	0.2462553983
+UniRef50_Q6A8Z5: tRNA dimethylallyltransferase	0.2462409134
+UniRef50_Q6A8Z5: tRNA dimethylallyltransferase|unclassified	0.2462409134
+UniRef50_UPI000464CEFC: MULTISPECIES: hypothetical protein	0.2462278518
+UniRef50_UPI000464CEFC: MULTISPECIES: hypothetical protein|unclassified	0.2462278518
+UniRef50_UPI000472020E: hypothetical protein	0.2462167127
+UniRef50_UPI000472020E: hypothetical protein|unclassified	0.2462167127
+UniRef50_UPI0004795A5A: hypothetical protein	0.2461733626
+UniRef50_UPI0004795A5A: hypothetical protein|unclassified	0.2461733626
+UniRef50_UPI0003790B82: hypothetical protein	0.2460958321
+UniRef50_UPI0003790B82: hypothetical protein|unclassified	0.2460958321
+UniRef50_UPI000371D807: hypothetical protein	0.2460190622
+UniRef50_UPI000371D807: hypothetical protein|unclassified	0.2460190622
+UniRef50_H3YPZ3	0.2459519020
+UniRef50_H3YPZ3|unclassified	0.2459519020
+UniRef50_W1FNB0: DTW domain containing protein	0.2459489648
+UniRef50_W1FNB0: DTW domain containing protein|unclassified	0.2459489648
+UniRef50_UPI00035C91DD: hypothetical protein, partial	0.2459475329
+UniRef50_UPI00035C91DD: hypothetical protein, partial|unclassified	0.2459475329
+UniRef50_Q7VNN7: Phosphopantetheine adenylyltransferase	0.2459383516
+UniRef50_Q7VNN7: Phosphopantetheine adenylyltransferase|unclassified	0.2459383516
+UniRef50_K7E1R2	0.2459233432
+UniRef50_K7E1R2|unclassified	0.2459233432
+UniRef50_UPI00035E0DA6: MULTISPECIES: thiamine monophosphate synthase	0.2459176984
+UniRef50_UPI00035E0DA6: MULTISPECIES: thiamine monophosphate synthase|unclassified	0.2459176984
+UniRef50_UPI000373827F: peptidase	0.2459166897
+UniRef50_UPI000373827F: peptidase|unclassified	0.2459166897
+UniRef50_V2B3M9: Oxidoreductase (Fragment)	0.2458986014
+UniRef50_V2B3M9: Oxidoreductase (Fragment)|unclassified	0.2458986014
+UniRef50_UPI0003C13804: PREDICTED: bifunctional methylenetetrahydrofolate dehydrogenase/cyclohydrolase, mitochondrial-like	0.2458834397
+UniRef50_UPI0003C13804: PREDICTED: bifunctional methylenetetrahydrofolate dehydrogenase/cyclohydrolase, mitochondrial-like|unclassified	0.2458834397
+UniRef50_UPI0004714FD5: hypothetical protein	0.2458764698
+UniRef50_UPI0004714FD5: hypothetical protein|unclassified	0.2458764698
+UniRef50_UPI00047E0836: hypothetical protein	0.2458402938
+UniRef50_UPI00047E0836: hypothetical protein|unclassified	0.2458402938
+UniRef50_UPI0002197648: orotidine 5''''-phosphate decarboxylase	0.2458285876
+UniRef50_UPI0002197648: orotidine 5''''-phosphate decarboxylase|unclassified	0.2458285876
+UniRef50_X1R1D8: Marine sediment metagenome DNA, contig: S12H4_L05591 (Fragment)	0.2458221425
+UniRef50_X1R1D8: Marine sediment metagenome DNA, contig: S12H4_L05591 (Fragment)|unclassified	0.2458221425
+UniRef50_UPI00037AE745: hypothetical protein	0.2457990131
+UniRef50_UPI00037AE745: hypothetical protein|unclassified	0.2457990131
+UniRef50_W1EU51: Putative nucleoside transporter YegT	0.2457895458
+UniRef50_W1EU51: Putative nucleoside transporter YegT|unclassified	0.2457895458
+UniRef50_B0KCP3	0.2457802316
+UniRef50_B0KCP3|unclassified	0.2457802316
+UniRef50_UPI000475660B: multidrug transporter	0.2457719623
+UniRef50_UPI000475660B: multidrug transporter|unclassified	0.2457719623
+UniRef50_C2KN50	0.2457521880
+UniRef50_C2KN50|unclassified	0.2457521880
+UniRef50_U1U465	0.2457500542
+UniRef50_U1U465|unclassified	0.2457500542
+UniRef50_W1BF78: Dipeptide transport system permease protein DppB (TC 3.A.1.5.2)	0.2457300948
+UniRef50_W1BF78: Dipeptide transport system permease protein DppB (TC 3.A.1.5.2)|unclassified	0.2457300948
+UniRef50_A2SD53: 8-amino-7-oxononanoate synthase	0.2457026799
+UniRef50_A2SD53: 8-amino-7-oxononanoate synthase|unclassified	0.2457026799
+UniRef50_A0A037XBS8: Cupin	0.2457006982
+UniRef50_A0A037XBS8: Cupin|unclassified	0.2457006982
+UniRef50_F9FAU9	0.2456983617
+UniRef50_F9FAU9|unclassified	0.2456983617
+UniRef50_Q2IM08	0.2456747022
+UniRef50_Q2IM08|unclassified	0.2456747022
+UniRef50_D6FRQ4	0.2456718324
+UniRef50_D6FRQ4|unclassified	0.2456718324
+UniRef50_UPI0003D0D2FE: PREDICTED: serine/arginine repetitive matrix protein 2-like	0.2456669328
+UniRef50_UPI0003D0D2FE: PREDICTED: serine/arginine repetitive matrix protein 2-like|unclassified	0.2456669328
+UniRef50_Q5R0J6: Predicted transcriptional regulator, BolA superfamily	0.2456553507
+UniRef50_Q5R0J6: Predicted transcriptional regulator, BolA superfamily|unclassified	0.2456553507
+UniRef50_W1B1P4	0.2456324928
+UniRef50_W1B1P4|unclassified	0.2456324928
+UniRef50_UPI0004799C0B: hemolysin-type calcium-binding protein	0.2456286871
+UniRef50_UPI0004799C0B: hemolysin-type calcium-binding protein|unclassified	0.2456286871
+UniRef50_UPI0004679F1B: hypothetical protein	0.2456273806
+UniRef50_UPI0004679F1B: hypothetical protein|unclassified	0.2456273806
+UniRef50_UPI00036930E8: hypothetical protein	0.2456150868
+UniRef50_UPI00036930E8: hypothetical protein|unclassified	0.2456150868
+UniRef50_Q4UTD4: Serine--tRNA ligase	0.2456010688
+UniRef50_Q4UTD4: Serine--tRNA ligase|unclassified	0.2456010688
+UniRef50_UPI00035E92E4: hypothetical protein	0.2455936310
+UniRef50_UPI00035E92E4: hypothetical protein|unclassified	0.2455936310
+UniRef50_Q31MP6: Diguanylate cyclase with GAF sensor	0.2455585627
+UniRef50_Q31MP6: Diguanylate cyclase with GAF sensor|unclassified	0.2455585627
+UniRef50_I1YI49: Putative membrane protein, clustering with ActP	0.2455293374
+UniRef50_I1YI49: Putative membrane protein, clustering with ActP|unclassified	0.2455293374
+UniRef50_Q2IQT7	0.2455169569
+UniRef50_Q2IQT7|unclassified	0.2455169569
+UniRef50_D4Z3J4	0.2455035206
+UniRef50_D4Z3J4|unclassified	0.2455035206
+UniRef50_UPI000444A8CA: hypothetical protein STEHIDRAFT_142383	0.2455016172
+UniRef50_UPI000444A8CA: hypothetical protein STEHIDRAFT_142383|unclassified	0.2455016172
+UniRef50_C6XCS8	0.2454427213
+UniRef50_C6XCS8|unclassified	0.2454427213
+UniRef50_M9LXS3	0.2453997134
+UniRef50_M9LXS3|unclassified	0.2453997134
+UniRef50_UPI0001DCFB76: hypothetical protein	0.2453987730
+UniRef50_UPI0001DCFB76: hypothetical protein|unclassified	0.2453987730
+UniRef50_UPI000472066C: hypothetical protein	0.2453882018
+UniRef50_UPI000472066C: hypothetical protein|unclassified	0.2453882018
+UniRef50_UPI000374B5C4: hypothetical protein	0.2453824423
+UniRef50_UPI000374B5C4: hypothetical protein|unclassified	0.2453824423
+UniRef50_UPI0003FB89BF: amino acid-binding ACT protein	0.2453573761
+UniRef50_UPI0003FB89BF: amino acid-binding ACT protein|unclassified	0.2453573761
+UniRef50_F5BG14: Major facilitator superfamily MFS_1 (Fragment)	0.2453570458
+UniRef50_F5BG14: Major facilitator superfamily MFS_1 (Fragment)|unclassified	0.2453570458
+UniRef50_Q1INX8: DGPFAETKE domain protein	0.2453510050
+UniRef50_Q1INX8: DGPFAETKE domain protein|unclassified	0.2453510050
+UniRef50_S6K9Z2	0.2453405151
+UniRef50_S6K9Z2|unclassified	0.2453405151
+UniRef50_E2QDF8: Phage lambda-related protein, Side tail fiber protein homolog	0.2453385672
+UniRef50_E2QDF8: Phage lambda-related protein, Side tail fiber protein homolog|g__Escherichia.s__Escherichia_coli	0.2453385672
+UniRef50_P94377: Catalase X	0.2453346656
+UniRef50_P94377: Catalase X|unclassified	0.2453346656
+UniRef50_UPI000372C446: hypothetical protein	0.2453185951
+UniRef50_UPI000372C446: hypothetical protein|unclassified	0.2453185951
+UniRef50_P59620: Bifunctional protein ArgH	0.2453032616
+UniRef50_P59620: Bifunctional protein ArgH|unclassified	0.2453032616
+UniRef50_UPI00046F1475: transcriptional regulator, partial	0.2453021084
+UniRef50_UPI00046F1475: transcriptional regulator, partial|unclassified	0.2453021084
+UniRef50_UPI000346262D: hypothetical protein	0.2452887188
+UniRef50_UPI000346262D: hypothetical protein|unclassified	0.2452887188
+UniRef50_UPI0003A73457: GntR family transcriptional regulator	0.2452791831
+UniRef50_UPI0003A73457: GntR family transcriptional regulator|unclassified	0.2452791831
+UniRef50_Q28KF3	0.2452605984
+UniRef50_Q28KF3|unclassified	0.2452605984
+UniRef50_A2RLV5: Holo-[acyl-carrier-protein] synthase	0.2452604992
+UniRef50_A2RLV5: Holo-[acyl-carrier-protein] synthase|unclassified	0.2452604992
+UniRef50_UPI0001FFFC4A: integral membrane protein, partial	0.2452374020
+UniRef50_UPI0001FFFC4A: integral membrane protein, partial|unclassified	0.2452374020
+UniRef50_D8LF55	0.2452072553
+UniRef50_D8LF55|unclassified	0.2452072553
+UniRef50_Q8K930: Putative Holliday junction resolvase	0.2451714954
+UniRef50_Q8K930: Putative Holliday junction resolvase|unclassified	0.2451714954
+UniRef50_UPI00038F0B6A: PREDICTED: DNA helicase MCM9-like	0.2451473197
+UniRef50_UPI00038F0B6A: PREDICTED: DNA helicase MCM9-like|unclassified	0.2451473197
+UniRef50_J9NX06	0.2450900962
+UniRef50_J9NX06|unclassified	0.2450900962
+UniRef50_UPI0003B56004: ribosome-binding factor A	0.2450815241
+UniRef50_UPI0003B56004: ribosome-binding factor A|unclassified	0.2450815241
+UniRef50_Q87YX3: Ureidoglycolate lyase	0.2450506454
+UniRef50_Q87YX3: Ureidoglycolate lyase|unclassified	0.2450506454
+UniRef50_D6Y8H8	0.2450460855
+UniRef50_D6Y8H8|unclassified	0.2450460855
+UniRef50_UPI000402E7C3: oxidoreductase	0.2450245532
+UniRef50_UPI000402E7C3: oxidoreductase|unclassified	0.2450245532
+UniRef50_UPI00046441BB: hypothetical protein, partial	0.2450231265
+UniRef50_UPI00046441BB: hypothetical protein, partial|unclassified	0.2450231265
+UniRef50_F3ZB63	0.2450107407
+UniRef50_F3ZB63|unclassified	0.2450107407
+UniRef50_UPI0003A8D0BE: hypothetical protein	0.2449947074
+UniRef50_UPI0003A8D0BE: hypothetical protein|unclassified	0.2449947074
+UniRef50_Q3JP83	0.2449501046
+UniRef50_Q3JP83|unclassified	0.2449501046
+UniRef50_UPI0003B6DB70: peptidase M16	0.2448813551
+UniRef50_UPI0003B6DB70: peptidase M16|unclassified	0.2448813551
+UniRef50_Q3AE81: Adenine deaminase 2	0.2448522805
+UniRef50_Q3AE81: Adenine deaminase 2|unclassified	0.2448522805
+UniRef50_UPI00046F1A3C: hypothetical protein	0.2448009431
+UniRef50_UPI00046F1A3C: hypothetical protein|unclassified	0.2448009431
+UniRef50_A7GXA8: Argininosuccinate lyase	0.2447558660
+UniRef50_A7GXA8: Argininosuccinate lyase|unclassified	0.2447558660
+UniRef50_Q8EDH1: 3-oxoacyl-[acyl-carrier-protein] synthase 3	0.2447459774
+UniRef50_Q8EDH1: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	0.2447459774
+UniRef50_UPI000443D6CC: PREDICTED: coproporphyrinogen-III oxidase, mitochondrial	0.2447352577
+UniRef50_UPI000443D6CC: PREDICTED: coproporphyrinogen-III oxidase, mitochondrial|unclassified	0.2447352577
+UniRef50_UPI0004692029: hypothetical protein	0.2446986353
+UniRef50_UPI0004692029: hypothetical protein|unclassified	0.2446986353
+UniRef50_UPI000469FAB8: MULTISPECIES: general secretion pathway protein GspI	0.2446836466
+UniRef50_UPI000469FAB8: MULTISPECIES: general secretion pathway protein GspI|unclassified	0.2446836466
+UniRef50_V2I118	0.2446694932
+UniRef50_V2I118|unclassified	0.2446694932
+UniRef50_F5XQE6	0.2446658430
+UniRef50_F5XQE6|unclassified	0.2446658430
+UniRef50_U4VB39	0.2446535385
+UniRef50_U4VB39|unclassified	0.2446535385
+UniRef50_U6H4I5	0.2446468292
+UniRef50_U6H4I5|unclassified	0.2446468292
+UniRef50_UPI00047A7A72: membrane protein	0.2446354920
+UniRef50_UPI00047A7A72: membrane protein|unclassified	0.2446354920
+UniRef50_K7RV74	0.2446203395
+UniRef50_K7RV74|unclassified	0.2446203395
+UniRef50_A3K323: Possible FlgD protein	0.2446180319
+UniRef50_A3K323: Possible FlgD protein|unclassified	0.2446180319
+UniRef50_UPI00036124D1: hypothetical protein, partial	0.2445991350
+UniRef50_UPI00036124D1: hypothetical protein, partial|unclassified	0.2445991350
+UniRef50_UPI00036BB2A6: hypothetical protein	0.2445966931
+UniRef50_UPI00036BB2A6: hypothetical protein|unclassified	0.2445966931
+UniRef50_C7DA27	0.2445963068
+UniRef50_C7DA27|unclassified	0.2445963068
+UniRef50_UPI000418256B: hypothetical protein	0.2445867325
+UniRef50_UPI000418256B: hypothetical protein|unclassified	0.2445867325
+UniRef50_I2XZQ4: Prophage tail fiber protein, N-terminal domain protein	0.2445626468
+UniRef50_I2XZQ4: Prophage tail fiber protein, N-terminal domain protein|unclassified	0.2445626468
+UniRef50_Q32IW7	0.2445128567
+UniRef50_Q32IW7|unclassified	0.2445128567
+UniRef50_UPI00041994DB: hypothetical protein	0.2445109769
+UniRef50_UPI00041994DB: hypothetical protein|unclassified	0.2445109769
+UniRef50_M6R7P6: PDZ domain protein	0.2444813453
+UniRef50_M6R7P6: PDZ domain protein|unclassified	0.2444813453
+UniRef50_UPI00035E0296: hypothetical protein	0.2444749106
+UniRef50_UPI00035E0296: hypothetical protein|unclassified	0.2444749106
+UniRef50_UPI0004795D22: hypothetical protein	0.2444700456
+UniRef50_UPI0004795D22: hypothetical protein|unclassified	0.2444700456
+UniRef50_H4BET6	0.2444687817
+UniRef50_H4BET6|unclassified	0.2444687817
+UniRef50_Q2CKE9	0.2444252242
+UniRef50_Q2CKE9|unclassified	0.2444252242
+UniRef50_UPI0003A03E70: FAD-dependent oxidoreductase	0.2444021199
+UniRef50_UPI0003A03E70: FAD-dependent oxidoreductase|unclassified	0.2444021199
+UniRef50_K7ABS1: Outer membrane porin	0.2443745353
+UniRef50_K7ABS1: Outer membrane porin|unclassified	0.2443745353
+UniRef50_B9EA76	0.2443303236
+UniRef50_B9EA76|unclassified	0.2443303236
+UniRef50_R7S2F1	0.2443195700
+UniRef50_R7S2F1|unclassified	0.2443195700
+UniRef50_Q5KWI5: Ribonuclease PH	0.2442870125
+UniRef50_Q5KWI5: Ribonuclease PH|unclassified	0.2442870125
+UniRef50_Q3JE53: Putative Holliday junction resolvase	0.2442838912
+UniRef50_Q3JE53: Putative Holliday junction resolvase|unclassified	0.2442838912
+UniRef50_P25053: Regulatory protein TenI	0.2442672058
+UniRef50_P25053: Regulatory protein TenI|unclassified	0.2442672058
+UniRef50_J3I4S8	0.2442671615
+UniRef50_J3I4S8|unclassified	0.2442671615
+UniRef50_UPI00046C11DD: PREDICTED: aquaporin-7 isoform X1	0.2442597057
+UniRef50_UPI00046C11DD: PREDICTED: aquaporin-7 isoform X1|unclassified	0.2442597057
+UniRef50_X0ZV97: Marine sediment metagenome DNA, contig: S01H4_C00028	0.2442528619
+UniRef50_X0ZV97: Marine sediment metagenome DNA, contig: S01H4_C00028|unclassified	0.2442528619
+UniRef50_I2B940	0.2442137087
+UniRef50_I2B940|unclassified	0.2442137087
+UniRef50_K4ASU3	0.2442052827
+UniRef50_K4ASU3|unclassified	0.2442052827
+UniRef50_E6VFQ7: Prevent-host-death family protein	0.2442008529
+UniRef50_E6VFQ7: Prevent-host-death family protein|unclassified	0.2442008529
+UniRef50_UPI00046FD040: TetR family transcriptional regulator	0.2441914680
+UniRef50_UPI00046FD040: TetR family transcriptional regulator|unclassified	0.2441914680
+UniRef50_UPI00016C3D7A: elongation factor Tu	0.2441845597
+UniRef50_UPI00016C3D7A: elongation factor Tu|unclassified	0.2441845597
+UniRef50_V6IBM9	0.2441544338
+UniRef50_V6IBM9|unclassified	0.2441544338
+UniRef50_F3DQN4: Luciferase family protein (Fragment)	0.2441371828
+UniRef50_F3DQN4: Luciferase family protein (Fragment)|unclassified	0.2441371828
+UniRef50_A0KAU0	0.2441221979
+UniRef50_A0KAU0|unclassified	0.2441221979
+UniRef50_B1VY94	0.2440913777
+UniRef50_B1VY94|unclassified	0.2440913777
+UniRef50_N0GIW1	0.2440173346
+UniRef50_N0GIW1|unclassified	0.2440173346
+UniRef50_F4TAI7: Mannitol-1-phosphate 5-dehydrogenase	0.2440138244
+UniRef50_F4TAI7: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.2440138244
+UniRef50_R8AND1: Peptidase	0.2439981569
+UniRef50_R8AND1: Peptidase|unclassified	0.2439981569
+UniRef50_E7QZM0: Extracellular solute-binding protein family 1	0.2439576565
+UniRef50_E7QZM0: Extracellular solute-binding protein family 1|unclassified	0.2439576565
+UniRef50_UPI00016C3B4E: SsrA-binding protein	0.2439370926
+UniRef50_UPI00016C3B4E: SsrA-binding protein|unclassified	0.2439370926
+UniRef50_K1XWH6	0.2438890615
+UniRef50_K1XWH6|unclassified	0.2438890615
+UniRef50_UPI00040CDDCD: cytochrome C oxidase assembly protein	0.2438764852
+UniRef50_UPI00040CDDCD: cytochrome C oxidase assembly protein|unclassified	0.2438764852
+UniRef50_UPI0004770645: arsenate reductase	0.2438754781
+UniRef50_UPI0004770645: arsenate reductase|unclassified	0.2438754781
+UniRef50_G2IT08	0.2438618102
+UniRef50_G2IT08|unclassified	0.2438618102
+UniRef50_A7HRV1	0.2438561114
+UniRef50_A7HRV1|unclassified	0.2438561114
+UniRef50_UPI00047011AC: hypothetical protein	0.2438086197
+UniRef50_UPI00047011AC: hypothetical protein|unclassified	0.2438086197
+UniRef50_B5BFM6	0.2438021088
+UniRef50_B5BFM6|unclassified	0.2438021088
+UniRef50_UPI00046A560F: LysR family transcriptional regulator	0.2437957067
+UniRef50_UPI00046A560F: LysR family transcriptional regulator|unclassified	0.2437957067
+UniRef50_B7G5K2: Predicted protein	0.2437717722
+UniRef50_B7G5K2: Predicted protein|unclassified	0.2437717722
+UniRef50_UPI00046F40AC: membrane protein	0.2437704363
+UniRef50_UPI00046F40AC: membrane protein|unclassified	0.2437704363
+UniRef50_UPI00029A4C12: acyl-CoA thioesterase, partial	0.2437693632
+UniRef50_UPI00029A4C12: acyl-CoA thioesterase, partial|unclassified	0.2437693632
+UniRef50_V6SAL7	0.2437632562
+UniRef50_V6SAL7|unclassified	0.2437632562
+UniRef50_I0DWZ9	0.2437290060
+UniRef50_I0DWZ9|unclassified	0.2437290060
+UniRef50_UPI000471C311: UTP--glucose-1-phosphate uridylyltransferase	0.2437202782
+UniRef50_UPI000471C311: UTP--glucose-1-phosphate uridylyltransferase|unclassified	0.2437202782
+UniRef50_UPI00037E8A23: hypothetical protein	0.2436900202
+UniRef50_UPI00037E8A23: hypothetical protein|unclassified	0.2436900202
+UniRef50_N0BFG1: Polyhydroxyalkonate synthesis repressor PhaR	0.2436870531
+UniRef50_N0BFG1: Polyhydroxyalkonate synthesis repressor PhaR|unclassified	0.2436870531
+UniRef50_Q3ERE1: Glyoxalase family protein	0.2436797651
+UniRef50_Q3ERE1: Glyoxalase family protein|unclassified	0.2436797651
+UniRef50_I1ARP2: Phage minor tail protein	0.2436625681
+UniRef50_I1ARP2: Phage minor tail protein|unclassified	0.2436625681
+UniRef50_A0QHS5	0.2436488839
+UniRef50_A0QHS5|unclassified	0.2436488839
+UniRef50_UPI00032974F0	0.2436393763
+UniRef50_UPI00032974F0|unclassified	0.2436393763
+UniRef50_UPI00031D006B: hypothetical protein	0.2436317817
+UniRef50_UPI00031D006B: hypothetical protein|unclassified	0.2436317817
+UniRef50_D6ATX0	0.2436211609
+UniRef50_D6ATX0|unclassified	0.2436211609
+UniRef50_A6EZ60: Alginate biosynthesis protein AlgJ	0.2436204342
+UniRef50_A6EZ60: Alginate biosynthesis protein AlgJ|unclassified	0.2436204342
+UniRef50_UPI000185FC5F: hypothetical protein TGME49_010350	0.2436202693
+UniRef50_UPI000185FC5F: hypothetical protein TGME49_010350|unclassified	0.2436202693
+UniRef50_Q2N805	0.2436197114
+UniRef50_Q2N805|unclassified	0.2436197114
+UniRef50_Q8DIA7: Phosphoribosylformylglycinamidine synthase 2	0.2436034947
+UniRef50_Q8DIA7: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.2436034947
+UniRef50_Q06ZX9	0.2435968662
+UniRef50_Q06ZX9|unclassified	0.2435968662
+UniRef50_UPI000475447F: hypothetical protein	0.2435832718
+UniRef50_UPI000475447F: hypothetical protein|unclassified	0.2435832718
+UniRef50_G7ZVN9	0.2435739540
+UniRef50_G7ZVN9|unclassified	0.2435739540
+UniRef50_UPI000376C41C: hypothetical protein	0.2435739134
+UniRef50_UPI000376C41C: hypothetical protein|unclassified	0.2435739134
+UniRef50_A0A059DWP9	0.2435492223
+UniRef50_A0A059DWP9|unclassified	0.2435492223
+UniRef50_A0A047EGF5: PE-PGRS family protein PE_PGRS16	0.2435458608
+UniRef50_A0A047EGF5: PE-PGRS family protein PE_PGRS16|unclassified	0.2435458608
+UniRef50_UPI00035FDB03: hypothetical protein	0.2435080012
+UniRef50_UPI00035FDB03: hypothetical protein|unclassified	0.2435080012
+UniRef50_B6EIJ9: Formate--tetrahydrofolate ligase	0.2434965739
+UniRef50_B6EIJ9: Formate--tetrahydrofolate ligase|unclassified	0.2434965739
+UniRef50_R7Q4F8: Stackhouse genomic scaffold, scaffold_111	0.2434943286
+UniRef50_R7Q4F8: Stackhouse genomic scaffold, scaffold_111|unclassified	0.2434943286
+UniRef50_S9TII9	0.2434899844
+UniRef50_S9TII9|unclassified	0.2434899844
+UniRef50_UPI00037AC7A3: hypothetical protein	0.2434424195
+UniRef50_UPI00037AC7A3: hypothetical protein|unclassified	0.2434424195
+UniRef50_UPI0001E2E6F3: transport system permease	0.2434414937
+UniRef50_UPI0001E2E6F3: transport system permease|unclassified	0.2434414937
+UniRef50_UPI000371DF51: hypothetical protein, partial	0.2434386905
+UniRef50_UPI000371DF51: hypothetical protein, partial|unclassified	0.2434386905
+UniRef50_Q67IV2	0.2434371559
+UniRef50_Q67IV2|unclassified	0.2434371559
+UniRef50_UPI000363EDFB: hypothetical protein	0.2434358026
+UniRef50_UPI000363EDFB: hypothetical protein|unclassified	0.2434358026
+UniRef50_UPI0003B4A86D: ABC transporter ATP-binding protein	0.2434271788
+UniRef50_UPI0003B4A86D: ABC transporter ATP-binding protein|unclassified	0.2434271788
+UniRef50_W1U7Z2: Peptidase, M56 family (Fragment)	0.2434271459
+UniRef50_W1U7Z2: Peptidase, M56 family (Fragment)|unclassified	0.2434271459
+UniRef50_F3X127: Hsp20/alpha crystallin family protein	0.2434251152
+UniRef50_F3X127: Hsp20/alpha crystallin family protein|unclassified	0.2434251152
+UniRef50_UPI000393EAE9: PREDICTED: collagen alpha-1(III) chain-like	0.2434204118
+UniRef50_UPI000393EAE9: PREDICTED: collagen alpha-1(III) chain-like|unclassified	0.2434204118
+UniRef50_Q0APY8: NADH-quinone oxidoreductase subunit C	0.2434104690
+UniRef50_Q0APY8: NADH-quinone oxidoreductase subunit C|unclassified	0.2434104690
+UniRef50_S6U5Y6: Rhodanese-like domain-containing protein (Fragment)	0.2433843257
+UniRef50_S6U5Y6: Rhodanese-like domain-containing protein (Fragment)|unclassified	0.2433843257
+UniRef50_UPI00029CD5A9: anaerobic ribonucleoside-triphosphate reductase activating protein, partial	0.2433786794
+UniRef50_UPI00029CD5A9: anaerobic ribonucleoside-triphosphate reductase activating protein, partial|unclassified	0.2433786794
+UniRef50_A1C3L9: Glycosyltransferase Gtf1	0.2433643776
+UniRef50_A1C3L9: Glycosyltransferase Gtf1|unclassified	0.2433643776
+UniRef50_P31833: Cytochrome c oxidase subunit 1	0.2433631397
+UniRef50_P31833: Cytochrome c oxidase subunit 1|unclassified	0.2433631397
+UniRef50_Q8ZA34: CDP-diacylglycerol pyrophosphatase	0.2433607007
+UniRef50_Q8ZA34: CDP-diacylglycerol pyrophosphatase|unclassified	0.2433607007
+UniRef50_M5DN28	0.2433549360
+UniRef50_M5DN28|unclassified	0.2433549360
+UniRef50_UPI00036B04FC: hypothetical protein	0.2433467434
+UniRef50_UPI00036B04FC: hypothetical protein|unclassified	0.2433467434
+UniRef50_UPI0003729AC8: hypothetical protein	0.2433350307
+UniRef50_UPI0003729AC8: hypothetical protein|unclassified	0.2433350307
+UniRef50_UPI0003A824A9: GCN5 family acetyltransferase	0.2432787791
+UniRef50_UPI0003A824A9: GCN5 family acetyltransferase|unclassified	0.2432787791
+UniRef50_UPI0004639F8A: hypothetical protein	0.2432753623
+UniRef50_UPI0004639F8A: hypothetical protein|unclassified	0.2432753623
+UniRef50_N1H8I1: YcjX	0.2432673737
+UniRef50_N1H8I1: YcjX|unclassified	0.2432673737
+UniRef50_UPI0002D81A7F: hypothetical protein	0.2432521515
+UniRef50_UPI0002D81A7F: hypothetical protein|unclassified	0.2432521515
+UniRef50_UPI0003A511CE: flagellar biosynthesis protein FlhB	0.2432444567
+UniRef50_UPI0003A511CE: flagellar biosynthesis protein FlhB|unclassified	0.2432444567
+UniRef50_M9R9F6: Ribonuclease BN-like protein	0.2432335446
+UniRef50_M9R9F6: Ribonuclease BN-like protein|unclassified	0.2432335446
+UniRef50_T0T4M3	0.2431970076
+UniRef50_T0T4M3|unclassified	0.2431970076
+UniRef50_F2UJH6: Coiled-coil-helix-coiled-coil-helix domain-containing protein 2	0.2431730501
+UniRef50_F2UJH6: Coiled-coil-helix-coiled-coil-helix domain-containing protein 2|unclassified	0.2431730501
+UniRef50_B7U9V5: Putative dimethylsulfoniopropionate-degrading enzyme (Fragment)	0.2431354731
+UniRef50_B7U9V5: Putative dimethylsulfoniopropionate-degrading enzyme (Fragment)|unclassified	0.2431354731
+UniRef50_W5XBE4: Transcriptional regulator NrdR	0.2431239642
+UniRef50_W5XBE4: Transcriptional regulator NrdR|unclassified	0.2431239642
+UniRef50_UPI00046600C4: branched-chain amino acid ABC transporter ATPase	0.2431058700
+UniRef50_UPI00046600C4: branched-chain amino acid ABC transporter ATPase|unclassified	0.2431058700
+UniRef50_UPI0004255353: hypothetical protein	0.2430742246
+UniRef50_UPI0004255353: hypothetical protein|unclassified	0.2430742246
+UniRef50_R7JDI9: Aluminum resistance protein	0.2430395873
+UniRef50_R7JDI9: Aluminum resistance protein|unclassified	0.2430395873
+UniRef50_A3JSW0	0.2430236684
+UniRef50_A3JSW0|unclassified	0.2430236684
+UniRef50_B1ZX06: ThiJ/PfpI domain protein	0.2430203757
+UniRef50_B1ZX06: ThiJ/PfpI domain protein|unclassified	0.2430203757
+UniRef50_UPI000466EB1A: hypothetical protein	0.2430066625
+UniRef50_UPI000466EB1A: hypothetical protein|unclassified	0.2430066625
+UniRef50_UPI00035ED229: hypothetical protein	0.2429999239
+UniRef50_UPI00035ED229: hypothetical protein|unclassified	0.2429999239
+UniRef50_UPI00047A4FE0: hypothetical protein	0.2429818889
+UniRef50_UPI00047A4FE0: hypothetical protein|unclassified	0.2429818889
+UniRef50_N9PCW2	0.2429701442
+UniRef50_N9PCW2|unclassified	0.2429701442
+UniRef50_Q9KSA4: Acylphosphatase	0.2429528566
+UniRef50_Q9KSA4: Acylphosphatase|unclassified	0.2429528566
+UniRef50_Q2YLI8: Probable nicotinate-nucleotide adenylyltransferase	0.2429310493
+UniRef50_Q2YLI8: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.2429310493
+UniRef50_UPI000376155F: hypothetical protein	0.2429149630
+UniRef50_UPI000376155F: hypothetical protein|unclassified	0.2429149630
+UniRef50_K0VFJ2	0.2429144619
+UniRef50_K0VFJ2|unclassified	0.2429144619
+UniRef50_UPI0003902815: Regulatory protein VanR	0.2429089607
+UniRef50_UPI0003902815: Regulatory protein VanR|unclassified	0.2429089607
+UniRef50_R7E7K8	0.2428827140
+UniRef50_R7E7K8|unclassified	0.2428827140
+UniRef50_Q8GU01: Penicillin-binding protein 2 (Fragment)	0.2428473523
+UniRef50_Q8GU01: Penicillin-binding protein 2 (Fragment)|unclassified	0.2428473523
+UniRef50_UPI0003AA4EEF: hypothetical protein	0.2428339901
+UniRef50_UPI0003AA4EEF: hypothetical protein|unclassified	0.2428339901
+UniRef50_P21332: Oligo-1,6-glucosidase	0.2428188872
+UniRef50_P21332: Oligo-1,6-glucosidase|unclassified	0.2428188872
+UniRef50_R0DQ90	0.2427889064
+UniRef50_R0DQ90|unclassified	0.2427889064
+UniRef50_B8IMD9	0.2427673804
+UniRef50_B8IMD9|unclassified	0.2427673804
+UniRef50_A8MFI5: Arginine repressor	0.2427452460
+UniRef50_A8MFI5: Arginine repressor|unclassified	0.2427452460
+UniRef50_UPI00046272AD: hypothetical protein	0.2427241594
+UniRef50_UPI00046272AD: hypothetical protein|unclassified	0.2427241594
+UniRef50_UPI00035C1059: hypothetical protein	0.2427145713
+UniRef50_UPI00035C1059: hypothetical protein|unclassified	0.2427145713
+UniRef50_Q01993: Riboflavin synthase	0.2427086601
+UniRef50_Q01993: Riboflavin synthase|unclassified	0.2427086601
+UniRef50_UPI000470E99A: hypothetical protein	0.2427080367
+UniRef50_UPI000470E99A: hypothetical protein|unclassified	0.2427080367
+UniRef50_UPI00046FC8D2: hypothetical protein	0.2427057985
+UniRef50_UPI00046FC8D2: hypothetical protein|unclassified	0.2427057985
+UniRef50_UPI0004648358: transposase	0.2427037938
+UniRef50_UPI0004648358: transposase|unclassified	0.2427037938
+UniRef50_Q1WV15: Holo-[acyl-carrier-protein] synthase	0.2426990331
+UniRef50_Q1WV15: Holo-[acyl-carrier-protein] synthase|unclassified	0.2426990331
+UniRef50_X2NC36: Iron-hydroxamate transporter substrate-binding subunit	0.2426932718
+UniRef50_X2NC36: Iron-hydroxamate transporter substrate-binding subunit|unclassified	0.2426932718
+UniRef50_UPI0004784EC8: glutamyl-tRNA ligase	0.2426840630
+UniRef50_UPI0004784EC8: glutamyl-tRNA ligase|unclassified	0.2426840630
+UniRef50_E8RT17: PilT protein domain protein	0.2426369192
+UniRef50_E8RT17: PilT protein domain protein|unclassified	0.2426369192
+UniRef50_UPI0003651143: cold-shock protein, partial	0.2426062346
+UniRef50_UPI0003651143: cold-shock protein, partial|unclassified	0.2426062346
+UniRef50_Q9SEY5: Probable acyl-activating enzyme 2	0.2425988253
+UniRef50_Q9SEY5: Probable acyl-activating enzyme 2|unclassified	0.2425988253
+UniRef50_UPI0002653AC6: PREDICTED: aminomethyltransferase, mitochondrial-like, partial	0.2425933124
+UniRef50_UPI0002653AC6: PREDICTED: aminomethyltransferase, mitochondrial-like, partial|unclassified	0.2425933124
+UniRef50_J9YZ62	0.2425693635
+UniRef50_J9YZ62|unclassified	0.2425693635
+UniRef50_D5C9N5: IS911 transposase orfB	0.2425482211
+UniRef50_D5C9N5: IS911 transposase orfB|unclassified	0.2425482211
+UniRef50_U4V8V7	0.2425178113
+UniRef50_U4V8V7|unclassified	0.2425178113
+UniRef50_E9F991: Cysteine synthase A	0.2425021864
+UniRef50_E9F991: Cysteine synthase A|unclassified	0.2425021864
+UniRef50_B7LMR0	0.2424761950
+UniRef50_B7LMR0|unclassified	0.2424761950
+UniRef50_UPI0003B74A81: hypothetical protein	0.2424672600
+UniRef50_UPI0003B74A81: hypothetical protein|unclassified	0.2424672600
+UniRef50_A0P4E5: Stability/partitioning determinant	0.2424520647
+UniRef50_A0P4E5: Stability/partitioning determinant|unclassified	0.2424520647
+UniRef50_A7FUT4: Arginine repressor	0.2424485656
+UniRef50_A7FUT4: Arginine repressor|unclassified	0.2424485656
+UniRef50_Q3JVX1	0.2424314063
+UniRef50_Q3JVX1|unclassified	0.2424314063
+UniRef50_UPI00037B779E: hypothetical protein	0.2424299574
+UniRef50_UPI00037B779E: hypothetical protein|unclassified	0.2424299574
+UniRef50_UPI00037C2E94: hypothetical protein	0.2424296787
+UniRef50_UPI00037C2E94: hypothetical protein|unclassified	0.2424296787
+UniRef50_C2PSL0	0.2424151097
+UniRef50_C2PSL0|unclassified	0.2424151097
+UniRef50_UPI0003B364F8: NADH-ubiquinone oxidoreductase	0.2424129821
+UniRef50_UPI0003B364F8: NADH-ubiquinone oxidoreductase|unclassified	0.2424129821
+UniRef50_UPI00040A32E7: hypothetical protein	0.2424042222
+UniRef50_UPI00040A32E7: hypothetical protein|unclassified	0.2424042222
+UniRef50_Q12455: Spermine synthase	0.2424011168
+UniRef50_Q12455: Spermine synthase|unclassified	0.2424011168
+UniRef50_R0F7E9: Molybdopterin-guanine dinucleotide biosynthesis protein MobA (Fragment)	0.2423861888
+UniRef50_R0F7E9: Molybdopterin-guanine dinucleotide biosynthesis protein MobA (Fragment)|unclassified	0.2423861888
+UniRef50_Q55480	0.2423808187
+UniRef50_Q55480|unclassified	0.2423808187
+UniRef50_UPI00037A1089: hypothetical protein	0.2423638300
+UniRef50_UPI00037A1089: hypothetical protein|unclassified	0.2423638300
+UniRef50_Q5V518: 3-isopropylmalate dehydratase large subunit	0.2423234444
+UniRef50_Q5V518: 3-isopropylmalate dehydratase large subunit|unclassified	0.2423234444
+UniRef50_UPI00046CFACA: hypothetical protein	0.2423068545
+UniRef50_UPI00046CFACA: hypothetical protein|unclassified	0.2423068545
+UniRef50_UPI00036BFCCB: hypothetical protein, partial	0.2423019092
+UniRef50_UPI00036BFCCB: hypothetical protein, partial|unclassified	0.2423019092
+UniRef50_A0A024HC07	0.2422939398
+UniRef50_A0A024HC07|unclassified	0.2422939398
+UniRef50_A0A011QNU3	0.2422801113
+UniRef50_A0A011QNU3|unclassified	0.2422801113
+UniRef50_A1B620	0.2422707255
+UniRef50_A1B620|unclassified	0.2422707255
+UniRef50_A9CLK4	0.2422471053
+UniRef50_A9CLK4|unclassified	0.2422471053
+UniRef50_V6P0M2: Flagellar motor protein MotB	0.2422468332
+UniRef50_V6P0M2: Flagellar motor protein MotB|unclassified	0.2422468332
+UniRef50_H4N3X4	0.2422312610
+UniRef50_H4N3X4|unclassified	0.2422312610
+UniRef50_UPI000474A9B6: hypothetical protein	0.2422055640
+UniRef50_UPI000474A9B6: hypothetical protein|unclassified	0.2422055640
+UniRef50_A0A024HP37	0.2421934979
+UniRef50_A0A024HP37|unclassified	0.2421934979
+UniRef50_R7LCZ1	0.2421716959
+UniRef50_R7LCZ1|unclassified	0.2421716959
+UniRef50_V5XUH0	0.2421695623
+UniRef50_V5XUH0|unclassified	0.2421695623
+UniRef50_UPI00037B1604: hypothetical protein	0.2421678061
+UniRef50_UPI00037B1604: hypothetical protein|unclassified	0.2421678061
+UniRef50_Q89I57: ABC transporter sugar-binding protein	0.2421556591
+UniRef50_Q89I57: ABC transporter sugar-binding protein|unclassified	0.2421556591
+UniRef50_UPI00045E8A17: mannitol dehydrogenase	0.2421429689
+UniRef50_UPI00045E8A17: mannitol dehydrogenase|unclassified	0.2421429689
+UniRef50_UPI00037ACD1B: hypothetical protein	0.2421351600
+UniRef50_UPI00037ACD1B: hypothetical protein|unclassified	0.2421351600
+UniRef50_UPI0004690D9F: hypothetical protein	0.2421287749
+UniRef50_UPI0004690D9F: hypothetical protein|unclassified	0.2421287749
+UniRef50_D8LG12: Pleckstrin homology domain	0.2420721375
+UniRef50_D8LG12: Pleckstrin homology domain|unclassified	0.2420721375
+UniRef50_Q6ALL4	0.2420614752
+UniRef50_Q6ALL4|unclassified	0.2420614752
+UniRef50_UPI00047D9073: hypothetical protein	0.2420370847
+UniRef50_UPI00047D9073: hypothetical protein|unclassified	0.2420370847
+UniRef50_UPI000472DFA0: hypothetical protein, partial	0.2420331927
+UniRef50_UPI000472DFA0: hypothetical protein, partial|unclassified	0.2420331927
+UniRef50_UPI000310DE08: hypothetical protein	0.2420165866
+UniRef50_UPI000310DE08: hypothetical protein|unclassified	0.2420165866
+UniRef50_Q88NS5: Pyridoxine/pyridoxamine 5'-phosphate oxidase	0.2420009960
+UniRef50_Q88NS5: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	0.2420009960
+UniRef50_J2JPQ3	0.2419759957
+UniRef50_J2JPQ3|unclassified	0.2419759957
+UniRef50_A0A017I949	0.2419729964
+UniRef50_A0A017I949|unclassified	0.2419729964
+UniRef50_Q4WFT3: GMP synthase [glutamine-hydrolyzing]	0.2419694530
+UniRef50_Q4WFT3: GMP synthase [glutamine-hydrolyzing]|unclassified	0.2419694530
+UniRef50_UPI0003767692: hypothetical protein	0.2419561623
+UniRef50_UPI0003767692: hypothetical protein|unclassified	0.2419561623
+UniRef50_UPI000288B881: ABC transporter ATP-binding protein	0.2419045988
+UniRef50_UPI000288B881: ABC transporter ATP-binding protein|unclassified	0.2419045988
+UniRef50_UPI0003B48120: aldehyde-activating protein	0.2419045336
+UniRef50_UPI0003B48120: aldehyde-activating protein|unclassified	0.2419045336
+UniRef50_UPI0003712C43: hypothetical protein	0.2418811577
+UniRef50_UPI0003712C43: hypothetical protein|unclassified	0.2418811577
+UniRef50_UPI000361DE73: hypothetical protein	0.2418690810
+UniRef50_UPI000361DE73: hypothetical protein|unclassified	0.2418690810
+UniRef50_S5Y902	0.2418684213
+UniRef50_S5Y902|unclassified	0.2418684213
+UniRef50_UPI000469BD09: hypothetical protein	0.2418609739
+UniRef50_UPI000469BD09: hypothetical protein|unclassified	0.2418609739
+UniRef50_A4W0U2: Transcriptional regulator of sugar metabolism	0.2418514491
+UniRef50_A4W0U2: Transcriptional regulator of sugar metabolism|unclassified	0.2418514491
+UniRef50_L4JUW1: Adhesin/invasin	0.2418379686
+UniRef50_L4JUW1: Adhesin/invasin|g__Escherichia.s__Escherichia_coli	0.2418379686
+UniRef50_UPI00045439C0: PREDICTED: adenosylhomocysteinase-like, partial	0.2418026108
+UniRef50_UPI00045439C0: PREDICTED: adenosylhomocysteinase-like, partial|unclassified	0.2418026108
+UniRef50_Q49WH7: Phosphoglucomutase	0.2418017781
+UniRef50_Q49WH7: Phosphoglucomutase|unclassified	0.2418017781
+UniRef50_UPI0003EAB153	0.2417999200
+UniRef50_UPI0003EAB153|unclassified	0.2417999200
+UniRef50_UPI0002626EAF: isoquinoline 1-oxidoreductase	0.2417821984
+UniRef50_UPI0002626EAF: isoquinoline 1-oxidoreductase|unclassified	0.2417821984
+UniRef50_K7TII7	0.2417434185
+UniRef50_K7TII7|unclassified	0.2417434185
+UniRef50_A0A022S8H0: Export membrane family protein	0.2417372723
+UniRef50_A0A022S8H0: Export membrane family protein|unclassified	0.2417372723
+UniRef50_E6VIZ9: PilT protein domain protein	0.2417259517
+UniRef50_E6VIZ9: PilT protein domain protein|unclassified	0.2417259517
+UniRef50_P9WNP4: 1,4-Dihydroxy-2-naphthoyl-CoA synthase	0.2417167215
+UniRef50_P9WNP4: 1,4-Dihydroxy-2-naphthoyl-CoA synthase|unclassified	0.2417167215
+UniRef50_I3F478	0.2417161394
+UniRef50_I3F478|unclassified	0.2417161394
+UniRef50_C7NKD3	0.2417089859
+UniRef50_C7NKD3|unclassified	0.2417089859
+UniRef50_UPI0002FED838: hypothetical protein	0.2416807955
+UniRef50_UPI0002FED838: hypothetical protein|unclassified	0.2416807955
+UniRef50_Q2N6F4: Probable nicotinate-nucleotide adenylyltransferase	0.2416772532
+UniRef50_Q2N6F4: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.2416772532
+UniRef50_J1SSI7	0.2416645998
+UniRef50_J1SSI7|unclassified	0.2416645998
+UniRef50_F3GJD9	0.2416544298
+UniRef50_F3GJD9|unclassified	0.2416544298
+UniRef50_F9HJK1	0.2416533629
+UniRef50_F9HJK1|unclassified	0.2416533629
+UniRef50_UPI00036CC394: hypothetical protein	0.2416327465
+UniRef50_UPI00036CC394: hypothetical protein|unclassified	0.2416327465
+UniRef50_A6FL01	0.2416206700
+UniRef50_A6FL01|unclassified	0.2416206700
+UniRef50_Q2CDG7: Flagellar protein FlaF, putative	0.2416132518
+UniRef50_Q2CDG7: Flagellar protein FlaF, putative|unclassified	0.2416132518
+UniRef50_R0UE42: Filamentous hemagglutinin family N-terminal domain protein	0.2416042522
+UniRef50_R0UE42: Filamentous hemagglutinin family N-terminal domain protein|g__Neisseria.s__Neisseria_meningitidis	0.2416042522
+UniRef50_A3JNS3	0.2416031506
+UniRef50_A3JNS3|unclassified	0.2416031506
+UniRef50_UPI0003F48DE7: hypothetical protein TREMEDRAFT_73795	0.2415949668
+UniRef50_UPI0003F48DE7: hypothetical protein TREMEDRAFT_73795|unclassified	0.2415949668
+UniRef50_A8LE49	0.2415482100
+UniRef50_A8LE49|unclassified	0.2415482100
+UniRef50_R1D8D4	0.2415458937
+UniRef50_R1D8D4|unclassified	0.2415458937
+UniRef50_K7AAR9: BolA-like protein	0.2415382219
+UniRef50_K7AAR9: BolA-like protein|unclassified	0.2415382219
+UniRef50_UPI000478E3AF: zinc protease	0.2415149285
+UniRef50_UPI000478E3AF: zinc protease|unclassified	0.2415149285
+UniRef50_A9IQB5	0.2415130986
+UniRef50_A9IQB5|unclassified	0.2415130986
+UniRef50_H3WFE1	0.2414726322
+UniRef50_H3WFE1|unclassified	0.2414726322
+UniRef50_E8W9I4	0.2414636089
+UniRef50_E8W9I4|unclassified	0.2414636089
+UniRef50_B4U896: Glutamate--tRNA ligase	0.2414572277
+UniRef50_B4U896: Glutamate--tRNA ligase|unclassified	0.2414572277
+UniRef50_F9UEB2	0.2414554793
+UniRef50_F9UEB2|unclassified	0.2414554793
+UniRef50_UPI000371B3BF: hypothetical protein	0.2414539713
+UniRef50_UPI000371B3BF: hypothetical protein|unclassified	0.2414539713
+UniRef50_B6B0I9: Conserved domain protein	0.2414427560
+UniRef50_B6B0I9: Conserved domain protein|unclassified	0.2414427560
+UniRef50_UPI0003B3E6FE: hypothetical protein	0.2414427560
+UniRef50_UPI0003B3E6FE: hypothetical protein|unclassified	0.2414427560
+UniRef50_S0JIA5	0.2414244114
+UniRef50_S0JIA5|unclassified	0.2414244114
+UniRef50_M2A9N7: Phosphodiesterase	0.2414093849
+UniRef50_M2A9N7: Phosphodiesterase|unclassified	0.2414093849
+UniRef50_S5DZD9	0.2413771348
+UniRef50_S5DZD9|unclassified	0.2413771348
+UniRef50_R6XPK5	0.2413750159
+UniRef50_R6XPK5|unclassified	0.2413750159
+UniRef50_UPI0004732E2B: hypothetical protein, partial	0.2413676992
+UniRef50_UPI0004732E2B: hypothetical protein, partial|unclassified	0.2413676992
+UniRef50_A9D8T7	0.2413496564
+UniRef50_A9D8T7|unclassified	0.2413496564
+UniRef50_UPI00035E5CA3: hypothetical protein	0.2413413197
+UniRef50_UPI00035E5CA3: hypothetical protein|unclassified	0.2413413197
+UniRef50_UPI000379BF66: hypothetical protein	0.2413299950
+UniRef50_UPI000379BF66: hypothetical protein|unclassified	0.2413299950
+UniRef50_UPI0002D9D34E: hypothetical protein	0.2413217144
+UniRef50_UPI0002D9D34E: hypothetical protein|unclassified	0.2413217144
+UniRef50_UPI000464F5B0: hypothetical protein	0.2413144792
+UniRef50_UPI000464F5B0: hypothetical protein|unclassified	0.2413144792
+UniRef50_G5R1K2: Putative lipoprotein yceB	0.2413063584
+UniRef50_G5R1K2: Putative lipoprotein yceB|unclassified	0.2413063584
+UniRef50_UPI000474FB8F: hypothetical protein	0.2412945895
+UniRef50_UPI000474FB8F: hypothetical protein|unclassified	0.2412945895
+UniRef50_B4KG22: GI21404	0.2412559695
+UniRef50_B4KG22: GI21404|unclassified	0.2412559695
+UniRef50_UPI00021972FD: DeoR family transcriptional regulator	0.2412310840
+UniRef50_UPI00021972FD: DeoR family transcriptional regulator|unclassified	0.2412310840
+UniRef50_W5IW87	0.2412237740
+UniRef50_W5IW87|unclassified	0.2412237740
+UniRef50_UPI00035FF879: hypothetical protein	0.2411992428
+UniRef50_UPI00035FF879: hypothetical protein|unclassified	0.2411992428
+UniRef50_X5FYX4	0.2411990556
+UniRef50_X5FYX4|unclassified	0.2411990556
+UniRef50_Q61503: 5'-nucleotidase	0.2411911272
+UniRef50_Q61503: 5'-nucleotidase|unclassified	0.2411911272
+UniRef50_M9R4F3	0.2411649832
+UniRef50_M9R4F3|unclassified	0.2411649832
+UniRef50_UPI00036DCC61: hypothetical protein	0.2411339400
+UniRef50_UPI00036DCC61: hypothetical protein|unclassified	0.2411339400
+UniRef50_UPI000379345E: hypothetical protein	0.2411164526
+UniRef50_UPI000379345E: hypothetical protein|unclassified	0.2411164526
+UniRef50_J2X9R6	0.2411163813
+UniRef50_J2X9R6|unclassified	0.2411163813
+UniRef50_Q8TVG3: Histidinol-phosphate aminotransferase	0.2411029490
+UniRef50_Q8TVG3: Histidinol-phosphate aminotransferase|unclassified	0.2411029490
+UniRef50_Q1IQS9: Chemotaxis response regulator protein-glutamate methylesterase 2	0.2410990418
+UniRef50_Q1IQS9: Chemotaxis response regulator protein-glutamate methylesterase 2|unclassified	0.2410990418
+UniRef50_J9YT54	0.2410934486
+UniRef50_J9YT54|unclassified	0.2410934486
+UniRef50_K0J394	0.2410804607
+UniRef50_K0J394|unclassified	0.2410804607
+UniRef50_A8F1C5: NADH-quinone oxidoreductase subunit D	0.2410591130
+UniRef50_A8F1C5: NADH-quinone oxidoreductase subunit D|unclassified	0.2410591130
+UniRef50_UPI00047AE13B: amino acid transporter	0.2410279708
+UniRef50_UPI00047AE13B: amino acid transporter|unclassified	0.2410279708
+UniRef50_B7MV77	0.2410223768
+UniRef50_B7MV77|unclassified	0.2410223768
+UniRef50_UPI0003B42505: RNA polymerase	0.2410142040
+UniRef50_UPI0003B42505: RNA polymerase|unclassified	0.2410142040
+UniRef50_UPI0003794D83: arabinose ABC transporter permease	0.2410057360
+UniRef50_UPI0003794D83: arabinose ABC transporter permease|unclassified	0.2410057360
+UniRef50_A7X3V1	0.2409998166
+UniRef50_A7X3V1|unclassified	0.2409998166
+UniRef50_UPI00046EDBF1: hypothetical protein	0.2409838748
+UniRef50_UPI00046EDBF1: hypothetical protein|unclassified	0.2409838748
+UniRef50_D2NS22: DsRNA-specific ribonuclease	0.2409787386
+UniRef50_D2NS22: DsRNA-specific ribonuclease|unclassified	0.2409787386
+UniRef50_N9BXR8	0.2409538759
+UniRef50_N9BXR8|unclassified	0.2409538759
+UniRef50_K0S5F8	0.2409532387
+UniRef50_K0S5F8|unclassified	0.2409532387
+UniRef50_UPI00037FE4DD: hypothetical protein	0.2409353669
+UniRef50_UPI00037FE4DD: hypothetical protein|unclassified	0.2409353669
+UniRef50_C8VXQ7: Prophage antirepressor	0.2409199281
+UniRef50_C8VXQ7: Prophage antirepressor|unclassified	0.2409199281
+UniRef50_UPI0003B370CA: taurine ABC transporter substrate-binding protein	0.2408538675
+UniRef50_UPI0003B370CA: taurine ABC transporter substrate-binding protein|unclassified	0.2408538675
+UniRef50_J9M0S8	0.2408346557
+UniRef50_J9M0S8|unclassified	0.2408346557
+UniRef50_UPI00037F43A5: hypothetical protein	0.2408071534
+UniRef50_UPI00037F43A5: hypothetical protein|unclassified	0.2408071534
+UniRef50_UPI0003706206: hypothetical protein	0.2407782385
+UniRef50_UPI0003706206: hypothetical protein|unclassified	0.2407782385
+UniRef50_UPI0003B6B16C: GumN family protein	0.2407347842
+UniRef50_UPI0003B6B16C: GumN family protein|unclassified	0.2407347842
+UniRef50_U6G712	0.2407318247
+UniRef50_U6G712|unclassified	0.2407318247
+UniRef50_X0RVF8: Asparagine synthase	0.2407118186
+UniRef50_X0RVF8: Asparagine synthase|unclassified	0.2407118186
+UniRef50_K9XUM6	0.2407086328
+UniRef50_K9XUM6|unclassified	0.2407086328
+UniRef50_UPI0000E0EF25: transcriptional regulator, TetR family protein	0.2407012580
+UniRef50_UPI0000E0EF25: transcriptional regulator, TetR family protein|unclassified	0.2407012580
+UniRef50_Q9RZI9	0.2406890366
+UniRef50_Q9RZI9|unclassified	0.2406890366
+UniRef50_UPI00047A5202: hypothetical protein	0.2406883797
+UniRef50_UPI00047A5202: hypothetical protein|unclassified	0.2406883797
+UniRef50_UPI0003C7E431: fluoroacetate dehalogenase	0.2406753067
+UniRef50_UPI0003C7E431: fluoroacetate dehalogenase|unclassified	0.2406753067
+UniRef50_UPI0003B7A911: ABC transporter permease	0.2406722032
+UniRef50_UPI0003B7A911: ABC transporter permease|unclassified	0.2406722032
+UniRef50_Q1NAS4	0.2406602777
+UniRef50_Q1NAS4|unclassified	0.2406602777
+UniRef50_K0CFL0	0.2406516011
+UniRef50_K0CFL0|unclassified	0.2406516011
+UniRef50_Y4BEA0	0.2406496696
+UniRef50_Y4BEA0|unclassified	0.2406496696
+UniRef50_L8E5H5: Phosphoribosylformylglycinamidine synthase 1	0.2406402022
+UniRef50_L8E5H5: Phosphoribosylformylglycinamidine synthase 1|unclassified	0.2406402022
+UniRef50_H4EPV0	0.2406386494
+UniRef50_H4EPV0|unclassified	0.2406386494
+UniRef50_M8LWU1	0.2406367156
+UniRef50_M8LWU1|unclassified	0.2406367156
+UniRef50_A0A029PSG2	0.2406111772
+UniRef50_A0A029PSG2|unclassified	0.2406111772
+UniRef50_UPI0003B3B62E: iron ABC transporter permease	0.2406038203
+UniRef50_UPI0003B3B62E: iron ABC transporter permease|unclassified	0.2406038203
+UniRef50_R9BRU5: Penicillin-binding protein (Fragment)	0.2406021995
+UniRef50_R9BRU5: Penicillin-binding protein (Fragment)|unclassified	0.2406021995
+UniRef50_UPI0003B3FB93: phosphoglyceromutase, partial	0.2406002628
+UniRef50_UPI0003B3FB93: phosphoglyceromutase, partial|unclassified	0.2406002628
+UniRef50_UPI0004268B7E: glyoxalase I	0.2406000328
+UniRef50_UPI0004268B7E: glyoxalase I|unclassified	0.2406000328
+UniRef50_J0V2E5: Fibronectin/fibrinogen binding domain protein	0.2405963582
+UniRef50_J0V2E5: Fibronectin/fibrinogen binding domain protein|unclassified	0.2405963582
+UniRef50_U3T6D3	0.2405889597
+UniRef50_U3T6D3|unclassified	0.2405889597
+UniRef50_UPI00020E408C	0.2405703190
+UniRef50_UPI00020E408C|unclassified	0.2405703190
+UniRef50_UPI00036A56E1: hypothetical protein	0.2405678337
+UniRef50_UPI00036A56E1: hypothetical protein|unclassified	0.2405678337
+UniRef50_D0WZN8: Putative fusaric acid resistance protein	0.2405660276
+UniRef50_D0WZN8: Putative fusaric acid resistance protein|unclassified	0.2405660276
+UniRef50_N6UYQ4	0.2405466364
+UniRef50_N6UYQ4|unclassified	0.2405466364
+UniRef50_B8JG15: Tripartite ATP-independent periplasmic transporter DctQ component	0.2405447862
+UniRef50_B8JG15: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.2405447862
+UniRef50_UPI0004786084: hypothetical protein	0.2405251144
+UniRef50_UPI0004786084: hypothetical protein|unclassified	0.2405251144
+UniRef50_UPI0003FA897E: hypothetical protein	0.2405184061
+UniRef50_UPI0003FA897E: hypothetical protein|unclassified	0.2405184061
+UniRef50_V1VP47	0.2405151001
+UniRef50_V1VP47|unclassified	0.2405151001
+UniRef50_W2A013	0.2405055949
+UniRef50_W2A013|unclassified	0.2405055949
+UniRef50_UPI00047B7957: hypothetical protein	0.2404995757
+UniRef50_UPI00047B7957: hypothetical protein|unclassified	0.2404995757
+UniRef50_T0NVA8	0.2404941377
+UniRef50_T0NVA8|unclassified	0.2404941377
+UniRef50_Q38V22: Ribosomal RNA small subunit methyltransferase A	0.2404690596
+UniRef50_Q38V22: Ribosomal RNA small subunit methyltransferase A|unclassified	0.2404690596
+UniRef50_A6U816: Putative Holliday junction resolvase	0.2404661432
+UniRef50_A6U816: Putative Holliday junction resolvase|unclassified	0.2404661432
+UniRef50_UPI00046CB08A: hypothetical protein	0.2404593191
+UniRef50_UPI00046CB08A: hypothetical protein|unclassified	0.2404593191
+UniRef50_UPI00041B7937: hypothetical protein	0.2404565541
+UniRef50_UPI00041B7937: hypothetical protein|unclassified	0.2404565541
+UniRef50_K8AFV1: Transcriptional regulator, AraC family	0.2404556473
+UniRef50_K8AFV1: Transcriptional regulator, AraC family|unclassified	0.2404556473
+UniRef50_UPI00036B5908: hypothetical protein	0.2404543442
+UniRef50_UPI00036B5908: hypothetical protein|unclassified	0.2404543442
+UniRef50_C7RR12: AzlC family protein	0.2404455645
+UniRef50_C7RR12: AzlC family protein|unclassified	0.2404455645
+UniRef50_Q03T56: Ribosomal RNA small subunit methyltransferase A	0.2404206794
+UniRef50_Q03T56: Ribosomal RNA small subunit methyltransferase A|unclassified	0.2404206794
+UniRef50_UPI00028A0D05: DNA polymerase III subunit epsilon	0.2404169656
+UniRef50_UPI00028A0D05: DNA polymerase III subunit epsilon|unclassified	0.2404169656
+UniRef50_K3ZIS6	0.2404167512
+UniRef50_K3ZIS6|unclassified	0.2404167512
+UniRef50_UPI00036D8096: hypothetical protein	0.2404092964
+UniRef50_UPI00036D8096: hypothetical protein|unclassified	0.2404092964
+UniRef50_UPI0003B34D8A: ribonuclease PH	0.2403866680
+UniRef50_UPI0003B34D8A: ribonuclease PH|unclassified	0.2403866680
+UniRef50_UPI000476F2A5: cobalt transporter ATP-binding subunit	0.2403694835
+UniRef50_UPI000476F2A5: cobalt transporter ATP-binding subunit|unclassified	0.2403694835
+UniRef50_C4J5L9	0.2403585643
+UniRef50_C4J5L9|unclassified	0.2403585643
+UniRef50_E0SX52: Predicted Fe-S oxidoreductase	0.2403483866
+UniRef50_E0SX52: Predicted Fe-S oxidoreductase|unclassified	0.2403483866
+UniRef50_L6QYP7	0.2403460618
+UniRef50_L6QYP7|unclassified	0.2403460618
+UniRef50_W0JP85	0.2403239495
+UniRef50_W0JP85|unclassified	0.2403239495
+UniRef50_V9ASX1: Putative filamentous hemagglutinin	0.2403131533
+UniRef50_V9ASX1: Putative filamentous hemagglutinin|unclassified	0.2403131533
+UniRef50_R7E1V4	0.2403019771
+UniRef50_R7E1V4|unclassified	0.2403019771
+UniRef50_K1V9D8	0.2403003786
+UniRef50_K1V9D8|unclassified	0.2403003786
+UniRef50_O68872	0.2402975246
+UniRef50_O68872|unclassified	0.2402975246
+UniRef50_UPI00042BDC6C: PREDICTED: LOW QUALITY PROTEIN: caskin-2	0.2402875452
+UniRef50_UPI00042BDC6C: PREDICTED: LOW QUALITY PROTEIN: caskin-2|unclassified	0.2402875452
+UniRef50_V2D476	0.2402804423
+UniRef50_V2D476|unclassified	0.2402804423
+UniRef50_UPI00035DB909: hypothetical protein	0.2402776524
+UniRef50_UPI00035DB909: hypothetical protein|unclassified	0.2402776524
+UniRef50_UPI0003709A53: hypothetical protein	0.2402712033
+UniRef50_UPI0003709A53: hypothetical protein|unclassified	0.2402712033
+UniRef50_P36204: Bifunctional PGK/TIM	0.2402428611
+UniRef50_P36204: Bifunctional PGK/TIM|unclassified	0.2402428611
+UniRef50_UPI0004719644: phosphoenolpyruvate carboxykinase	0.2402289996
+UniRef50_UPI0004719644: phosphoenolpyruvate carboxykinase|unclassified	0.2402289996
+UniRef50_E3PS16	0.2402002141
+UniRef50_E3PS16|unclassified	0.2402002141
+UniRef50_W4X8T8	0.2401913617
+UniRef50_W4X8T8|unclassified	0.2401913617
+UniRef50_UPI00047B0F01: peptide chain release factor H	0.2401566988
+UniRef50_UPI00047B0F01: peptide chain release factor H|unclassified	0.2401566988
+UniRef50_V7CD51	0.2401365940
+UniRef50_V7CD51|unclassified	0.2401365940
+UniRef50_A0A023GD91: Putative rna polymerase-associated protein ctr9 (Fragment)	0.2401184816
+UniRef50_A0A023GD91: Putative rna polymerase-associated protein ctr9 (Fragment)|unclassified	0.2401184816
+UniRef50_E7GA42	0.2401115682
+UniRef50_E7GA42|unclassified	0.2401115682
+UniRef50_K0N9V3	0.2400843708
+UniRef50_K0N9V3|unclassified	0.2400843708
+UniRef50_A9WGX6: Thioesterase superfamily protein	0.2400364590
+UniRef50_A9WGX6: Thioesterase superfamily protein|unclassified	0.2400364590
+UniRef50_UPI000378A561: BCCT transporter	0.2400346214
+UniRef50_UPI000378A561: BCCT transporter|unclassified	0.2400346214
+UniRef50_K0CFH0	0.2400269979
+UniRef50_K0CFH0|unclassified	0.2400269979
+UniRef50_F3M1V0	0.2400095000
+UniRef50_F3M1V0|unclassified	0.2400095000
+UniRef50_UPI00046A55CC: hypothetical protein	0.2400045190
+UniRef50_UPI00046A55CC: hypothetical protein|unclassified	0.2400045190
+UniRef50_UPI0004632ED2: hypothetical protein, partial	0.2399926159
+UniRef50_UPI0004632ED2: hypothetical protein, partial|unclassified	0.2399926159
+UniRef50_UPI0000E0FA06: cytidylate kinase, partial	0.2399393428
+UniRef50_UPI0000E0FA06: cytidylate kinase, partial|unclassified	0.2399393428
+UniRef50_Q54115	0.2399343463
+UniRef50_Q54115|unclassified	0.2399343463
+UniRef50_UPI0003B3C7A7: ligand-gated channel protein, partial	0.2399336917
+UniRef50_UPI0003B3C7A7: ligand-gated channel protein, partial|unclassified	0.2399336917
+UniRef50_V7YY07: Transketolase	0.2399322168
+UniRef50_V7YY07: Transketolase|unclassified	0.2399322168
+UniRef50_Q7VFS3: NADH-quinone oxidoreductase subunit B	0.2399303655
+UniRef50_Q7VFS3: NADH-quinone oxidoreductase subunit B|unclassified	0.2399303655
+UniRef50_J0HSI5	0.2399114633
+UniRef50_J0HSI5|unclassified	0.2399114633
+UniRef50_J5ICW8: Putative lysophospholipase	0.2399068439
+UniRef50_J5ICW8: Putative lysophospholipase|unclassified	0.2399068439
+UniRef50_G0JTD6: Plasmid pRiA4b ORF-3 family protein	0.2398868986
+UniRef50_G0JTD6: Plasmid pRiA4b ORF-3 family protein|unclassified	0.2398868986
+UniRef50_UPI0003FCBD37: hypothetical protein	0.2398634362
+UniRef50_UPI0003FCBD37: hypothetical protein|unclassified	0.2398634362
+UniRef50_B5XYH5: Tat-linked quality control protein TatD	0.2398613426
+UniRef50_B5XYH5: Tat-linked quality control protein TatD|unclassified	0.2398613426
+UniRef50_A0A059IP69: BolA family transcriptional regulator (Fragment)	0.2398576732
+UniRef50_A0A059IP69: BolA family transcriptional regulator (Fragment)|unclassified	0.2398576732
+UniRef50_O66849: Anthranilate synthase component 1	0.2398453065
+UniRef50_O66849: Anthranilate synthase component 1|unclassified	0.2398453065
+UniRef50_B2INZ3	0.2398420349
+UniRef50_B2INZ3|unclassified	0.2398420349
+UniRef50_UPI00038F56D4: Alkaline phosphatase synthesis transcriptional regulatory protein PhoP	0.2398387816
+UniRef50_UPI00038F56D4: Alkaline phosphatase synthesis transcriptional regulatory protein PhoP|unclassified	0.2398387816
+UniRef50_UPI00031CBF3C: hypothetical protein	0.2398213735
+UniRef50_UPI00031CBF3C: hypothetical protein|unclassified	0.2398213735
+UniRef50_UPI000380129E: hypothetical protein	0.2398165504
+UniRef50_UPI000380129E: hypothetical protein|unclassified	0.2398165504
+UniRef50_W1YMN4	0.2398118739
+UniRef50_W1YMN4|unclassified	0.2398118739
+UniRef50_UPI0003749CF6: hypothetical protein	0.2398015633
+UniRef50_UPI0003749CF6: hypothetical protein|unclassified	0.2398015633
+UniRef50_M0E159	0.2397934861
+UniRef50_M0E159|unclassified	0.2397934861
+UniRef50_M4CF36	0.2397917020
+UniRef50_M4CF36|unclassified	0.2397917020
+UniRef50_B9JE94: Insertion sequence transposase protein	0.2397734718
+UniRef50_B9JE94: Insertion sequence transposase protein|unclassified	0.2397734718
+UniRef50_UPI000374E0DC: hypothetical protein	0.2397714801
+UniRef50_UPI000374E0DC: hypothetical protein|unclassified	0.2397714801
+UniRef50_Q5SNI2	0.2397445132
+UniRef50_Q5SNI2|unclassified	0.2397445132
+UniRef50_UPI00030DD9C9: hypothetical protein	0.2397388488
+UniRef50_UPI00030DD9C9: hypothetical protein|unclassified	0.2397388488
+UniRef50_UPI00040EB463: ATP synthase F0 subunit I	0.2397199856
+UniRef50_UPI00040EB463: ATP synthase F0 subunit I|unclassified	0.2397199856
+UniRef50_C6XJP8: MazG family protein	0.2396785661
+UniRef50_C6XJP8: MazG family protein|unclassified	0.2396785661
+UniRef50_H7D9R4	0.2396666542
+UniRef50_H7D9R4|unclassified	0.2396666542
+UniRef50_UPI00047A40EF: hypothetical protein	0.2396517328
+UniRef50_UPI00047A40EF: hypothetical protein|unclassified	0.2396517328
+UniRef50_UPI00040951D8: 16S rRNA methyltransferase	0.2396435990
+UniRef50_UPI00040951D8: 16S rRNA methyltransferase|unclassified	0.2396435990
+UniRef50_D3QDX3	0.2396242862
+UniRef50_D3QDX3|unclassified	0.2396242862
+UniRef50_UPI000249288F: peptide ABC transporter ATP-binding protein	0.2396130982
+UniRef50_UPI000249288F: peptide ABC transporter ATP-binding protein|unclassified	0.2396130982
+UniRef50_F7JI19	0.2396107373
+UniRef50_F7JI19|unclassified	0.2396107373
+UniRef50_UPI000407FEEC: 2,4-dienoyl-CoA reductase	0.2395979316
+UniRef50_UPI000407FEEC: 2,4-dienoyl-CoA reductase|unclassified	0.2395979316
+UniRef50_UPI000252BB4B: PREDICTED: LOW QUALITY PROTEIN: elongation factor 4 2-like	0.2395918701
+UniRef50_UPI000252BB4B: PREDICTED: LOW QUALITY PROTEIN: elongation factor 4 2-like|unclassified	0.2395918701
+UniRef50_UPI000479F065: hypothetical protein	0.2395554125
+UniRef50_UPI000479F065: hypothetical protein|unclassified	0.2395554125
+UniRef50_A0A019YE60	0.2395190069
+UniRef50_A0A019YE60|unclassified	0.2395190069
+UniRef50_D2J9T4: Replication initiator protein A	0.2395050229
+UniRef50_D2J9T4: Replication initiator protein A|unclassified	0.2395050229
+UniRef50_UPI0003B3F986: esterase, partial	0.2394921422
+UniRef50_UPI0003B3F986: esterase, partial|unclassified	0.2394921422
+UniRef50_UPI00036A7350: hypothetical protein	0.2394897140
+UniRef50_UPI00036A7350: hypothetical protein|unclassified	0.2394897140
+UniRef50_C0QTN9: Ribonuclease PH	0.2394658967
+UniRef50_C0QTN9: Ribonuclease PH|unclassified	0.2394658967
+UniRef50_Q6FDN3: Glycerol kinase	0.2394584387
+UniRef50_Q6FDN3: Glycerol kinase|unclassified	0.2394584387
+UniRef50_UPI00046A20E1: ABC transporter permease	0.2394577041
+UniRef50_UPI00046A20E1: ABC transporter permease|unclassified	0.2394577041
+UniRef50_J9P8Y9	0.2394171486
+UniRef50_J9P8Y9|unclassified	0.2394171486
+UniRef50_UPI00026292D1: oligopeptide/dipeptide ABC transporter ATPase, partial	0.2394004577
+UniRef50_UPI00026292D1: oligopeptide/dipeptide ABC transporter ATPase, partial|unclassified	0.2394004577
+UniRef50_B0SZ50: NADH-quinone oxidoreductase subunit C	0.2393938330
+UniRef50_B0SZ50: NADH-quinone oxidoreductase subunit C|unclassified	0.2393938330
+UniRef50_UPI0002483F83: DNA methyltransferase	0.2393843992
+UniRef50_UPI0002483F83: DNA methyltransferase|unclassified	0.2393843992
+UniRef50_O67733: Probable branched-chain-amino-acid aminotransferase	0.2393764173
+UniRef50_O67733: Probable branched-chain-amino-acid aminotransferase|unclassified	0.2393764173
+UniRef50_B1YJ90: N-acetyldiaminopimelate deacetylase	0.2393568226
+UniRef50_B1YJ90: N-acetyldiaminopimelate deacetylase|unclassified	0.2393568226
+UniRef50_K9YB57: PUCC protein	0.2393477758
+UniRef50_K9YB57: PUCC protein|unclassified	0.2393477758
+UniRef50_UPI00046E5857: hypothetical protein	0.2393393104
+UniRef50_UPI00046E5857: hypothetical protein|unclassified	0.2393393104
+UniRef50_R1DJN2	0.2393004210
+UniRef50_R1DJN2|unclassified	0.2393004210
+UniRef50_UPI000379C912: hypothetical protein	0.2392969666
+UniRef50_UPI000379C912: hypothetical protein|unclassified	0.2392969666
+UniRef50_S5YWQ0	0.2392656363
+UniRef50_S5YWQ0|unclassified	0.2392656363
+UniRef50_UPI000472CEFD: glutathione ABC transporter substrate-binding protein	0.2392610168
+UniRef50_UPI000472CEFD: glutathione ABC transporter substrate-binding protein|unclassified	0.2392610168
+UniRef50_V1WVQ3	0.2392606889
+UniRef50_V1WVQ3|unclassified	0.2392606889
+UniRef50_R8BZQ5	0.2392546061
+UniRef50_R8BZQ5|unclassified	0.2392546061
+UniRef50_A0A011NTJ6: Outer membrane protein assembly factor BamE	0.2392503697
+UniRef50_A0A011NTJ6: Outer membrane protein assembly factor BamE|unclassified	0.2392503697
+UniRef50_G9EIS6	0.2392162438
+UniRef50_G9EIS6|unclassified	0.2392162438
+UniRef50_J8FB10: Beta-lactamase 2	0.2392121019
+UniRef50_J8FB10: Beta-lactamase 2|unclassified	0.2392121019
+UniRef50_Q03VY3: Histidinol-phosphate aminotransferase	0.2392044733
+UniRef50_Q03VY3: Histidinol-phosphate aminotransferase|unclassified	0.2392044733
+UniRef50_A9B9W7: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.2391895762
+UniRef50_A9B9W7: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.2391895762
+UniRef50_UPI00034B9571: hypothetical protein	0.2391861961
+UniRef50_UPI00034B9571: hypothetical protein|unclassified	0.2391861961
+UniRef50_Q44093: Phospho-2-dehydro-3-deoxyheptonate aldolase (Fragment)	0.2391792417
+UniRef50_Q44093: Phospho-2-dehydro-3-deoxyheptonate aldolase (Fragment)|unclassified	0.2391792417
+UniRef50_G9RRJ9	0.2391770569
+UniRef50_G9RRJ9|unclassified	0.2391770569
+UniRef50_UPI0003C767D3: hypothetical protein	0.2391335793
+UniRef50_UPI0003C767D3: hypothetical protein|unclassified	0.2391335793
+UniRef50_F6G8K0: Lipoprotein	0.2391321421
+UniRef50_F6G8K0: Lipoprotein|unclassified	0.2391321421
+UniRef50_Q3JV17	0.2391312449
+UniRef50_Q3JV17|unclassified	0.2391312449
+UniRef50_UPI0002D6E567: hypothetical protein	0.2391155282
+UniRef50_UPI0002D6E567: hypothetical protein|unclassified	0.2391155282
+UniRef50_UPI00046F612F: hypothetical protein	0.2391110202
+UniRef50_UPI00046F612F: hypothetical protein|unclassified	0.2391110202
+UniRef50_A0A023YU23	0.2390717488
+UniRef50_A0A023YU23|unclassified	0.2390717488
+UniRef50_UPI00046E763D: hypothetical protein	0.2390612475
+UniRef50_UPI00046E763D: hypothetical protein|unclassified	0.2390612475
+UniRef50_UPI00041FBFE4: transcriptional regulator	0.2390579494
+UniRef50_UPI00041FBFE4: transcriptional regulator|unclassified	0.2390579494
+UniRef50_W7VQX9: Spermidine/putrescine-binding periplasmic protein	0.2390515589
+UniRef50_W7VQX9: Spermidine/putrescine-binding periplasmic protein|unclassified	0.2390515589
+UniRef50_D4DUX5	0.2389757544
+UniRef50_D4DUX5|unclassified	0.2389757544
+UniRef50_W1JIH7: Penicillin-binding protein 1A (Fragment)	0.2389533392
+UniRef50_W1JIH7: Penicillin-binding protein 1A (Fragment)|unclassified	0.2389533392
+UniRef50_F7SR33	0.2389507027
+UniRef50_F7SR33|unclassified	0.2389507027
+UniRef50_B0SUT8	0.2389421991
+UniRef50_B0SUT8|unclassified	0.2389421991
+UniRef50_W1Y9H6: Histidine rich P type ATPase (Fragment)	0.2389365874
+UniRef50_W1Y9H6: Histidine rich P type ATPase (Fragment)|unclassified	0.2389365874
+UniRef50_K2HST1: ATP synthase F0, subunit I	0.2389048859
+UniRef50_K2HST1: ATP synthase F0, subunit I|unclassified	0.2389048859
+UniRef50_Q0AR63	0.2388368024
+UniRef50_Q0AR63|unclassified	0.2388368024
+UniRef50_UPI0004722DDF: hypothetical protein	0.2388325140
+UniRef50_UPI0004722DDF: hypothetical protein|unclassified	0.2388325140
+UniRef50_UPI0003297570: PREDICTED: putative L,D-transpeptidase YafK-like	0.2388167291
+UniRef50_UPI0003297570: PREDICTED: putative L,D-transpeptidase YafK-like|unclassified	0.2388167291
+UniRef50_B9DNY9: Peptide methionine sulfoxide reductase MsrB	0.2387775241
+UniRef50_B9DNY9: Peptide methionine sulfoxide reductase MsrB|unclassified	0.2387775241
+UniRef50_UPI00036EB160: hypothetical protein	0.2387607291
+UniRef50_UPI00036EB160: hypothetical protein|unclassified	0.2387607291
+UniRef50_UPI00047620B0: SAM-dependent methyltransferase	0.2387331094
+UniRef50_UPI00047620B0: SAM-dependent methyltransferase|unclassified	0.2387331094
+UniRef50_UPI00046D039C: aminopeptidase B	0.2387148615
+UniRef50_UPI00046D039C: aminopeptidase B|unclassified	0.2387148615
+UniRef50_A9U584: Predicted protein (Fragment)	0.2386780100
+UniRef50_A9U584: Predicted protein (Fragment)|unclassified	0.2386780100
+UniRef50_Q7UK64: Argininosuccinate lyase	0.2386406594
+UniRef50_Q7UK64: Argininosuccinate lyase|unclassified	0.2386406594
+UniRef50_UPI000288C1CF: hypothetical protein, partial	0.2386113680
+UniRef50_UPI000288C1CF: hypothetical protein, partial|unclassified	0.2386113680
+UniRef50_U9YRI3	0.2386039490
+UniRef50_U9YRI3|unclassified	0.2386039490
+UniRef50_UPI00038F535A: hypothetical protein	0.2385494169
+UniRef50_UPI00038F535A: hypothetical protein|unclassified	0.2385494169
+UniRef50_M6GJB4: N-terminal TM domain of oligopeptide transport permease C	0.2385148613
+UniRef50_M6GJB4: N-terminal TM domain of oligopeptide transport permease C|unclassified	0.2385148613
+UniRef50_UPI0003B7A34C: transcriptional regulator	0.2385057764
+UniRef50_UPI0003B7A34C: transcriptional regulator|unclassified	0.2385057764
+UniRef50_UPI00038F6AB4	0.2384534951
+UniRef50_UPI00038F6AB4|unclassified	0.2384534951
+UniRef50_G4QH13	0.2384461913
+UniRef50_G4QH13|unclassified	0.2384461913
+UniRef50_K9VLW4: Cobyrinic acid ac-diamide synthase	0.2384287913
+UniRef50_K9VLW4: Cobyrinic acid ac-diamide synthase|unclassified	0.2384287913
+UniRef50_D9QHP3	0.2384252766
+UniRef50_D9QHP3|unclassified	0.2384252766
+UniRef50_A5E8J8: Orotidine 5'-phosphate decarboxylase	0.2384173263
+UniRef50_A5E8J8: Orotidine 5'-phosphate decarboxylase|unclassified	0.2384173263
+UniRef50_UPI000380963E: hypothetical protein	0.2384143434
+UniRef50_UPI000380963E: hypothetical protein|unclassified	0.2384143434
+UniRef50_UPI0002F623C1: hypothetical protein	0.2384118980
+UniRef50_UPI0002F623C1: hypothetical protein|unclassified	0.2384118980
+UniRef50_UPI00037D91E8: hypothetical protein	0.2383982009
+UniRef50_UPI00037D91E8: hypothetical protein|unclassified	0.2383982009
+UniRef50_UPI0003955B38: hypothetical protein, partial	0.2383896252
+UniRef50_UPI0003955B38: hypothetical protein, partial|unclassified	0.2383896252
+UniRef50_UPI00037CC4BE: hypothetical protein	0.2383487180
+UniRef50_UPI00037CC4BE: hypothetical protein|unclassified	0.2383487180
+UniRef50_H1H5Q5	0.2383353646
+UniRef50_H1H5Q5|unclassified	0.2383353646
+UniRef50_G0A9R1: HupE-UreJ family metal transporter	0.2383267813
+UniRef50_G0A9R1: HupE-UreJ family metal transporter|unclassified	0.2383267813
+UniRef50_UPI0003B4EF1B: prolyl oligopeptidase, partial	0.2383021281
+UniRef50_UPI0003B4EF1B: prolyl oligopeptidase, partial|unclassified	0.2383021281
+UniRef50_UPI00028987E7: transcriptional regulator	0.2382983035
+UniRef50_UPI00028987E7: transcriptional regulator|unclassified	0.2382983035
+UniRef50_E5WMC0	0.2382868841
+UniRef50_E5WMC0|unclassified	0.2382868841
+UniRef50_X2H389	0.2382348102
+UniRef50_X2H389|unclassified	0.2382348102
+UniRef50_UPI000479F6B7: transporter	0.2382216319
+UniRef50_UPI000479F6B7: transporter|unclassified	0.2382216319
+UniRef50_C1KVA6: Glycine--tRNA ligase alpha subunit	0.2382202613
+UniRef50_C1KVA6: Glycine--tRNA ligase alpha subunit|unclassified	0.2382202613
+UniRef50_W9XPW3	0.2382162242
+UniRef50_W9XPW3|unclassified	0.2382162242
+UniRef50_A1JMA3: Formate--tetrahydrofolate ligase	0.2381911661
+UniRef50_A1JMA3: Formate--tetrahydrofolate ligase|unclassified	0.2381911661
+UniRef50_Q8VCN5: Cystathionine gamma-lyase	0.2381775968
+UniRef50_Q8VCN5: Cystathionine gamma-lyase|unclassified	0.2381775968
+UniRef50_UPI0003636D91: hypothetical protein	0.2381729414
+UniRef50_UPI0003636D91: hypothetical protein|unclassified	0.2381729414
+UniRef50_Q9CL21: ATP-dependent DNA helicase RecQ	0.2381683013
+UniRef50_Q9CL21: ATP-dependent DNA helicase RecQ|unclassified	0.2381683013
+UniRef50_C8CGI1	0.2381560180
+UniRef50_C8CGI1|unclassified	0.2381560180
+UniRef50_UPI000374E34E: hypothetical protein	0.2381495153
+UniRef50_UPI000374E34E: hypothetical protein|unclassified	0.2381495153
+UniRef50_W1E0Z8: Gifsy-2 prophage protein	0.2381436117
+UniRef50_W1E0Z8: Gifsy-2 prophage protein|unclassified	0.2381436117
+UniRef50_Q8PWS2: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.2380900030
+UniRef50_Q8PWS2: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.2380900030
+UniRef50_UPI0004737F0F: 50S ribosomal protein L4, partial	0.2380876271
+UniRef50_UPI0004737F0F: 50S ribosomal protein L4, partial|unclassified	0.2380876271
+UniRef50_F3LC68	0.2380865748
+UniRef50_F3LC68|unclassified	0.2380865748
+UniRef50_UPI0002656F17	0.2380829487
+UniRef50_UPI0002656F17|unclassified	0.2380829487
+UniRef50_UPI0003778CA4: hypothetical protein	0.2380742972
+UniRef50_UPI0003778CA4: hypothetical protein|unclassified	0.2380742972
+UniRef50_UPI00047A8814: hypothetical protein	0.2380643016
+UniRef50_UPI00047A8814: hypothetical protein|unclassified	0.2380643016
+UniRef50_J2LS56	0.2380624822
+UniRef50_J2LS56|unclassified	0.2380624822
+UniRef50_P42451: Uroporphyrinogen-III C-methyltransferase	0.2380414141
+UniRef50_P42451: Uroporphyrinogen-III C-methyltransferase|unclassified	0.2380414141
+UniRef50_A0A038I5C7	0.2380180293
+UniRef50_A0A038I5C7|unclassified	0.2380180293
+UniRef50_W0YKB8: Integral membrane protein	0.2380121700
+UniRef50_W0YKB8: Integral membrane protein|unclassified	0.2380121700
+UniRef50_F9YRZ6: HD domain-containing protein 2	0.2380080548
+UniRef50_F9YRZ6: HD domain-containing protein 2|unclassified	0.2380080548
+UniRef50_I4CB37: Molecular chaperone (Small heat shock protein)	0.2380076058
+UniRef50_I4CB37: Molecular chaperone (Small heat shock protein)|unclassified	0.2380076058
+UniRef50_B9TMK8	0.2379959790
+UniRef50_B9TMK8|unclassified	0.2379959790
+UniRef50_F2RHB6: Carboxymuconolactone decarboxylase	0.2379930045
+UniRef50_F2RHB6: Carboxymuconolactone decarboxylase|unclassified	0.2379930045
+UniRef50_UPI000464170B: hypothetical protein	0.2379799555
+UniRef50_UPI000464170B: hypothetical protein|unclassified	0.2379799555
+UniRef50_UPI00036FAE25: hypothetical protein, partial	0.2379759835
+UniRef50_UPI00036FAE25: hypothetical protein, partial|unclassified	0.2379759835
+UniRef50_Z2EMQ6: Flagellar hook-basal body family protein	0.2379722295
+UniRef50_Z2EMQ6: Flagellar hook-basal body family protein|unclassified	0.2379722295
+UniRef50_UPI00036AC02E: hypothetical protein	0.2379571003
+UniRef50_UPI00036AC02E: hypothetical protein|unclassified	0.2379571003
+UniRef50_X0RZM7: Marine sediment metagenome DNA, contig: S01H1_L03667 (Fragment)	0.2379567797
+UniRef50_X0RZM7: Marine sediment metagenome DNA, contig: S01H1_L03667 (Fragment)|unclassified	0.2379567797
+UniRef50_UPI0003B79A37: hypothetical protein	0.2379564232
+UniRef50_UPI0003B79A37: hypothetical protein|unclassified	0.2379564232
+UniRef50_W5X0D4: Low molecular weight heat shock protein	0.2379539082
+UniRef50_W5X0D4: Low molecular weight heat shock protein|unclassified	0.2379539082
+UniRef50_B1HNY1: UPF0738 protein Bsph_1225	0.2379518515
+UniRef50_B1HNY1: UPF0738 protein Bsph_1225|unclassified	0.2379518515
+UniRef50_F1L3M9: DnaJ subfamily B member 5	0.2379400952
+UniRef50_F1L3M9: DnaJ subfamily B member 5|unclassified	0.2379400952
+UniRef50_A1VVY8: LemA family protein	0.2379303373
+UniRef50_A1VVY8: LemA family protein|unclassified	0.2379303373
+UniRef50_UPI000262D0F5: aminopeptidase P	0.2379158084
+UniRef50_UPI000262D0F5: aminopeptidase P|unclassified	0.2379158084
+UniRef50_UPI0002884382: nucleoside-diphosphate-sugar epimerase	0.2379144847
+UniRef50_UPI0002884382: nucleoside-diphosphate-sugar epimerase|unclassified	0.2379144847
+UniRef50_W5XG77: Aluminum resistance protein	0.2378692213
+UniRef50_W5XG77: Aluminum resistance protein|unclassified	0.2378692213
+UniRef50_X8DRS2: Pyridoxal-phosphate dependent enzyme family protein	0.2378175056
+UniRef50_X8DRS2: Pyridoxal-phosphate dependent enzyme family protein|unclassified	0.2378175056
+UniRef50_E7C5A1: MoxR-like ATPases	0.2378035294
+UniRef50_E7C5A1: MoxR-like ATPases|unclassified	0.2378035294
+UniRef50_J0URR6	0.2378025381
+UniRef50_J0URR6|unclassified	0.2378025381
+UniRef50_A0A018R4T4: Nitrate reductase Z subunit alpha (Fragment)	0.2377799211
+UniRef50_A0A018R4T4: Nitrate reductase Z subunit alpha (Fragment)|unclassified	0.2377799211
+UniRef50_R1FAC3	0.2377475507
+UniRef50_R1FAC3|unclassified	0.2377475507
+UniRef50_UPI00036925F1: MULTISPECIES: hypothetical protein	0.2377262479
+UniRef50_UPI00036925F1: MULTISPECIES: hypothetical protein|unclassified	0.2377262479
+UniRef50_UPI0002D70490: hypothetical protein	0.2377052296
+UniRef50_UPI0002D70490: hypothetical protein|unclassified	0.2377052296
+UniRef50_A0A021EG63	0.2376963076
+UniRef50_A0A021EG63|unclassified	0.2376963076
+UniRef50_Q0A562	0.2376955027
+UniRef50_Q0A562|unclassified	0.2376955027
+UniRef50_X8AWJ3: CobQ/CobB/MinD/ParA nucleotide binding domain protein	0.2376438645
+UniRef50_X8AWJ3: CobQ/CobB/MinD/ParA nucleotide binding domain protein|unclassified	0.2376438645
+UniRef50_Q9KD44: DNA primase	0.2376399104
+UniRef50_Q9KD44: DNA primase|unclassified	0.2376399104
+UniRef50_UPI00029DA759	0.2375815130
+UniRef50_UPI00029DA759|unclassified	0.2375815130
+UniRef50_UPI0002629C4C: hypothetical protein, partial	0.2375806087
+UniRef50_UPI0002629C4C: hypothetical protein, partial|unclassified	0.2375806087
+UniRef50_Q7NZ19: Phosphopantetheine adenylyltransferase	0.2375641714
+UniRef50_Q7NZ19: Phosphopantetheine adenylyltransferase|unclassified	0.2375641714
+UniRef50_F5WTD3: ComG operon protein 3	0.2375466402
+UniRef50_F5WTD3: ComG operon protein 3|unclassified	0.2375466402
+UniRef50_UPI0003787C8C: hypothetical protein	0.2375348901
+UniRef50_UPI0003787C8C: hypothetical protein|unclassified	0.2375348901
+UniRef50_H3E8Q3	0.2375337386
+UniRef50_H3E8Q3|unclassified	0.2375337386
+UniRef50_W5XPA5: Transposase, IS4 family	0.2375296597
+UniRef50_W5XPA5: Transposase, IS4 family|unclassified	0.2375296597
+UniRef50_UPI0001CBC083: PREDICTED: NADH dehydrogenase [ubiquinone] iron-sulfur protein 2, mitochondrial-like	0.2374469435
+UniRef50_UPI0001CBC083: PREDICTED: NADH dehydrogenase [ubiquinone] iron-sulfur protein 2, mitochondrial-like|unclassified	0.2374469435
+UniRef50_UPI00036370AA: MULTISPECIES: hypothetical protein	0.2374417711
+UniRef50_UPI00036370AA: MULTISPECIES: hypothetical protein|unclassified	0.2374417711
+UniRef50_UPI0003B489CA: osmotically inducible protein C	0.2374104690
+UniRef50_UPI0003B489CA: osmotically inducible protein C|unclassified	0.2374104690
+UniRef50_D4XIF0: Histone deacetylase family (Fragment)	0.2373795137
+UniRef50_D4XIF0: Histone deacetylase family (Fragment)|unclassified	0.2373795137
+UniRef50_UPI0002C2F0D3	0.2373740737
+UniRef50_UPI0002C2F0D3|unclassified	0.2373740737
+UniRef50_W4CWU3: NAD(P)H oxidoreductase	0.2373725174
+UniRef50_W4CWU3: NAD(P)H oxidoreductase|unclassified	0.2373725174
+UniRef50_UPI0003B59D68: universal stress protein	0.2373642678
+UniRef50_UPI0003B59D68: universal stress protein|unclassified	0.2373642678
+UniRef50_UPI000441C458: PREDICTED: protein cordon-bleu	0.2373470579
+UniRef50_UPI000441C458: PREDICTED: protein cordon-bleu|unclassified	0.2373470579
+UniRef50_UPI00037CE51B: hypothetical protein	0.2373451729
+UniRef50_UPI00037CE51B: hypothetical protein|unclassified	0.2373451729
+UniRef50_UPI0003B44CF0: streptomycin 3''''''''-kinase	0.2373390901
+UniRef50_UPI0003B44CF0: streptomycin 3''''''''-kinase|unclassified	0.2373390901
+UniRef50_UPI000474E1B0: alcohol dehydrogenase	0.2373017130
+UniRef50_UPI000474E1B0: alcohol dehydrogenase|unclassified	0.2373017130
+UniRef50_P15567: Phosphoribosylaminoimidazole carboxylase	0.2372956642
+UniRef50_P15567: Phosphoribosylaminoimidazole carboxylase|unclassified	0.2372956642
+UniRef50_C5XGL1	0.2372780421
+UniRef50_C5XGL1|unclassified	0.2372780421
+UniRef50_UPI00047B2829: hypothetical protein	0.2372669013
+UniRef50_UPI00047B2829: hypothetical protein|unclassified	0.2372669013
+UniRef50_P63505: 4-aminobutyrate aminotransferase	0.2372534734
+UniRef50_P63505: 4-aminobutyrate aminotransferase|unclassified	0.2372534734
+UniRef50_A4U401	0.2372457603
+UniRef50_A4U401|unclassified	0.2372457603
+UniRef50_E3ZBY8: DHH subfamily 1 protein (Fragment)	0.2372173992
+UniRef50_E3ZBY8: DHH subfamily 1 protein (Fragment)|unclassified	0.2372173992
+UniRef50_P23686: S-adenosylmethionine synthase 1	0.2372139094
+UniRef50_P23686: S-adenosylmethionine synthase 1|unclassified	0.2372139094
+UniRef50_Q9R5L5: HSP62=62 kDa urease-associated heat shock protein (Fragment)	0.2371948214
+UniRef50_Q9R5L5: HSP62=62 kDa urease-associated heat shock protein (Fragment)|unclassified	0.2371948214
+UniRef50_UPI0001B4A0C7: hypothetical protein	0.2371657633
+UniRef50_UPI0001B4A0C7: hypothetical protein|unclassified	0.2371657633
+UniRef50_UPI0003626A85: hypothetical protein	0.2371574983
+UniRef50_UPI0003626A85: hypothetical protein|unclassified	0.2371574983
+UniRef50_UPI000474339B: hypothetical protein, partial	0.2371329030
+UniRef50_UPI000474339B: hypothetical protein, partial|unclassified	0.2371329030
+UniRef50_UPI00046990FD: O-acetylhomoserine aminocarboxypropyltransferase	0.2370556691
+UniRef50_UPI00046990FD: O-acetylhomoserine aminocarboxypropyltransferase|unclassified	0.2370556691
+UniRef50_T5YK95	0.2370526397
+UniRef50_T5YK95|unclassified	0.2370526397
+UniRef50_UPI0003B739FC: N-formylglutamate amidohydrolase	0.2370419867
+UniRef50_UPI0003B739FC: N-formylglutamate amidohydrolase|unclassified	0.2370419867
+UniRef50_Q4A028	0.2370351463
+UniRef50_Q4A028|unclassified	0.2370351463
+UniRef50_E8WN50: Transcriptional regulator, BadM/Rrf2 family	0.2370324714
+UniRef50_E8WN50: Transcriptional regulator, BadM/Rrf2 family|unclassified	0.2370324714
+UniRef50_X6HEY2	0.2370321354
+UniRef50_X6HEY2|unclassified	0.2370321354
+UniRef50_UPI0001D55F19: PREDICTED: CCAAT/enhancer-binding protein delta-like	0.2370173819
+UniRef50_UPI0001D55F19: PREDICTED: CCAAT/enhancer-binding protein delta-like|unclassified	0.2370173819
+UniRef50_UPI0004713C27: hypothetical protein	0.2370036808
+UniRef50_UPI0004713C27: hypothetical protein|unclassified	0.2370036808
+UniRef50_P20620: Nitrogenase molybdenum-iron protein alpha chain	0.2369952951
+UniRef50_P20620: Nitrogenase molybdenum-iron protein alpha chain|unclassified	0.2369952951
+UniRef50_UPI0003957006: PREDICTED: formin-like protein 5-like	0.2369682298
+UniRef50_UPI0003957006: PREDICTED: formin-like protein 5-like|unclassified	0.2369682298
+UniRef50_S6NUM0: Drug resistance transporter, EmrB/QacA family protein	0.2369660228
+UniRef50_S6NUM0: Drug resistance transporter, EmrB/QacA family protein|unclassified	0.2369660228
+UniRef50_UPI00037AB45F: hypothetical protein	0.2369580899
+UniRef50_UPI00037AB45F: hypothetical protein|unclassified	0.2369580899
+UniRef50_D5AL28	0.2369558063
+UniRef50_D5AL28|unclassified	0.2369558063
+UniRef50_W7W1D7: SpoVR family protein	0.2369247200
+UniRef50_W7W1D7: SpoVR family protein|unclassified	0.2369247200
+UniRef50_UPI000191270F: hypothetical protein, partial	0.2368536064
+UniRef50_UPI000191270F: hypothetical protein, partial|unclassified	0.2368536064
+UniRef50_D5AP22: Transglutaminase domain protein	0.2368435201
+UniRef50_D5AP22: Transglutaminase domain protein|unclassified	0.2368435201
+UniRef50_A8SBF8	0.2368389268
+UniRef50_A8SBF8|unclassified	0.2368389268
+UniRef50_W6RR50: ABC-type xylose transport system, periplasmic component	0.2368184518
+UniRef50_W6RR50: ABC-type xylose transport system, periplasmic component|unclassified	0.2368184518
+UniRef50_D3NRH5	0.2368153107
+UniRef50_D3NRH5|unclassified	0.2368153107
+UniRef50_Y7YR71	0.2367893263
+UniRef50_Y7YR71|unclassified	0.2367893263
+UniRef50_UPI0003F54DAC: hypothetical protein	0.2367379553
+UniRef50_UPI0003F54DAC: hypothetical protein|unclassified	0.2367379553
+UniRef50_A6LP26: Adenine phosphoribosyltransferase	0.2366862475
+UniRef50_A6LP26: Adenine phosphoribosyltransferase|unclassified	0.2366862475
+UniRef50_F7WGV5	0.2366759112
+UniRef50_F7WGV5|unclassified	0.2366759112
+UniRef50_UPI0001912A18: adenylosuccinate lyase, partial	0.2366703512
+UniRef50_UPI0001912A18: adenylosuccinate lyase, partial|unclassified	0.2366703512
+UniRef50_UPI00047BC3F9: peptidase S41	0.2366560472
+UniRef50_UPI00047BC3F9: peptidase S41|unclassified	0.2366560472
+UniRef50_R1EFG9	0.2366401061
+UniRef50_R1EFG9|unclassified	0.2366401061
+UniRef50_UPI0002DF600A: hypothetical protein	0.2366397579
+UniRef50_UPI0002DF600A: hypothetical protein|unclassified	0.2366397579
+UniRef50_L0A6W7	0.2366157908
+UniRef50_L0A6W7|unclassified	0.2366157908
+UniRef50_UPI00037C374A: hypothetical protein	0.2365877647
+UniRef50_UPI00037C374A: hypothetical protein|unclassified	0.2365877647
+UniRef50_UPI0004775CE7: hypothetical protein, partial	0.2365767646
+UniRef50_UPI0004775CE7: hypothetical protein, partial|unclassified	0.2365767646
+UniRef50_UPI00031D30B7: hypothetical protein	0.2365421482
+UniRef50_UPI00031D30B7: hypothetical protein|unclassified	0.2365421482
+UniRef50_UPI0003B617D5: DNA mismatch repair protein MutT	0.2365371298
+UniRef50_UPI0003B617D5: DNA mismatch repair protein MutT|unclassified	0.2365371298
+UniRef50_E6SMC9: AzlC family protein	0.2365236250
+UniRef50_E6SMC9: AzlC family protein|unclassified	0.2365236250
+UniRef50_W5X9Y2: ABC transporter related protein	0.2365095445
+UniRef50_W5X9Y2: ABC transporter related protein|unclassified	0.2365095445
+UniRef50_UPI000476CF6F: hypothetical protein, partial	0.2365022551
+UniRef50_UPI000476CF6F: hypothetical protein, partial|unclassified	0.2365022551
+UniRef50_Q2G9X5	0.2364797398
+UniRef50_Q2G9X5|unclassified	0.2364797398
+UniRef50_C7RGN9	0.2364757699
+UniRef50_C7RGN9|unclassified	0.2364757699
+UniRef50_C7NJ54	0.2364710908
+UniRef50_C7NJ54|unclassified	0.2364710908
+UniRef50_F7YGJ3: NAD-dependent formate dehydrogenase delta subunit	0.2364676654
+UniRef50_F7YGJ3: NAD-dependent formate dehydrogenase delta subunit|unclassified	0.2364676654
+UniRef50_L0DI16: Prevent-host-death family protein	0.2364480302
+UniRef50_L0DI16: Prevent-host-death family protein|unclassified	0.2364480302
+UniRef50_B7VJ61: Partial transposase (OrfB) of insertion sequence ISVisp4 IS3 family subgroup IS3	0.2364456409
+UniRef50_B7VJ61: Partial transposase (OrfB) of insertion sequence ISVisp4 IS3 family subgroup IS3|unclassified	0.2364456409
+UniRef50_UPI00035D35A4: hypothetical protein	0.2364260512
+UniRef50_UPI00035D35A4: hypothetical protein|unclassified	0.2364260512
+UniRef50_A0A011RLY2	0.2364222212
+UniRef50_A0A011RLY2|unclassified	0.2364222212
+UniRef50_A4Y6D1	0.2364133453
+UniRef50_A4Y6D1|unclassified	0.2364133453
+UniRef50_C7J7X8: Os10g0498100 protein	0.2364081623
+UniRef50_C7J7X8: Os10g0498100 protein|unclassified	0.2364081623
+UniRef50_UPI000395C101: GntR family transcriptional regulator	0.2363823843
+UniRef50_UPI000395C101: GntR family transcriptional regulator|unclassified	0.2363823843
+UniRef50_G8MAR3	0.2363680831
+UniRef50_G8MAR3|unclassified	0.2363680831
+UniRef50_Q1N689: 3-hydroxydecanoyl-ACP dehydratase	0.2363650478
+UniRef50_Q1N689: 3-hydroxydecanoyl-ACP dehydratase|unclassified	0.2363650478
+UniRef50_UPI0004651F70: hypothetical protein, partial	0.2362543511
+UniRef50_UPI0004651F70: hypothetical protein, partial|unclassified	0.2362543511
+UniRef50_UPI00038BBA6B: PREDICTED: atherin-like	0.2362436717
+UniRef50_UPI00038BBA6B: PREDICTED: atherin-like|unclassified	0.2362436717
+UniRef50_B1HZZ1: Lipoprotein	0.2362284162
+UniRef50_B1HZZ1: Lipoprotein|unclassified	0.2362284162
+UniRef50_J8RSG4	0.2362171495
+UniRef50_J8RSG4|unclassified	0.2362171495
+UniRef50_U4V848	0.2362074337
+UniRef50_U4V848|unclassified	0.2362074337
+UniRef50_V9ZRN4	0.2361940516
+UniRef50_V9ZRN4|unclassified	0.2361940516
+UniRef50_E3F1B7: Lipoprotein, putative	0.2361853919
+UniRef50_E3F1B7: Lipoprotein, putative|unclassified	0.2361853919
+UniRef50_UPI00037CA8BF: hypothetical protein	0.2361385851
+UniRef50_UPI00037CA8BF: hypothetical protein|unclassified	0.2361385851
+UniRef50_V2YKU9: Protein ynjB	0.2361183792
+UniRef50_V2YKU9: Protein ynjB|unclassified	0.2361183792
+UniRef50_UPI000288D07E: competence protein ComG	0.2361048199
+UniRef50_UPI000288D07E: competence protein ComG|unclassified	0.2361048199
+UniRef50_C3DFX9: Oligopeptide ABC transporter, permease	0.2361010171
+UniRef50_C3DFX9: Oligopeptide ABC transporter, permease|unclassified	0.2361010171
+UniRef50_W0Z440	0.2360982724
+UniRef50_W0Z440|unclassified	0.2360982724
+UniRef50_UPI000363AA5C: MULTISPECIES: hypothetical protein	0.2360971487
+UniRef50_UPI000363AA5C: MULTISPECIES: hypothetical protein|unclassified	0.2360971487
+UniRef50_UPI00016C4263: multi-sensor signal transduction histidine kinase	0.2360954074
+UniRef50_UPI00016C4263: multi-sensor signal transduction histidine kinase|unclassified	0.2360954074
+UniRef50_C6SHL5	0.2360900121
+UniRef50_C6SHL5|unclassified	0.2360900121
+UniRef50_UPI00036F4F1C: peptidase S8	0.2360717658
+UniRef50_UPI00036F4F1C: peptidase S8|unclassified	0.2360717658
+UniRef50_F6K0S0: Silk fibroin (Fragment)	0.2360683589
+UniRef50_F6K0S0: Silk fibroin (Fragment)|unclassified	0.2360683589
+UniRef50_O54408: GTP pyrophosphokinase	0.2360587960
+UniRef50_O54408: GTP pyrophosphokinase|unclassified	0.2360587960
+UniRef50_UPI00042A94E0: PREDICTED: 4-trimethylaminobutyraldehyde dehydrogenase	0.2360378487
+UniRef50_UPI00042A94E0: PREDICTED: 4-trimethylaminobutyraldehyde dehydrogenase|unclassified	0.2360378487
+UniRef50_UPI00037EA352: DNA repair protein RecF, partial	0.2360205894
+UniRef50_UPI00037EA352: DNA repair protein RecF, partial|unclassified	0.2360205894
+UniRef50_A0AKE9: UPF0348 protein lwe2063	0.2360043615
+UniRef50_A0AKE9: UPF0348 protein lwe2063|unclassified	0.2360043615
+UniRef50_A1T1B1	0.2359956203
+UniRef50_A1T1B1|unclassified	0.2359956203
+UniRef50_B4UJP0: Polysaccharide biosynthesis protein	0.2359694079
+UniRef50_B4UJP0: Polysaccharide biosynthesis protein|unclassified	0.2359694079
+UniRef50_UPI0003B4C98F: RpiR family transcriptional regulator	0.2359173733
+UniRef50_UPI0003B4C98F: RpiR family transcriptional regulator|unclassified	0.2359173733
+UniRef50_Q92M91: Holliday junction ATP-dependent DNA helicase RuvA	0.2359122620
+UniRef50_Q92M91: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.2359122620
+UniRef50_M5RI71: Isxac3 transposase	0.2358883802
+UniRef50_M5RI71: Isxac3 transposase|unclassified	0.2358883802
+UniRef50_B3SFD1	0.2358602197
+UniRef50_B3SFD1|unclassified	0.2358602197
+UniRef50_UPI0002B45411	0.2358577096
+UniRef50_UPI0002B45411|unclassified	0.2358577096
+UniRef50_W9R3M0: F-box/LRR-repeat protein 20	0.2358292203
+UniRef50_W9R3M0: F-box/LRR-repeat protein 20|unclassified	0.2358292203
+UniRef50_UPI0003B44775: NUDIX hydrolase	0.2358176247
+UniRef50_UPI0003B44775: NUDIX hydrolase|unclassified	0.2358176247
+UniRef50_W4T152	0.2358120061
+UniRef50_W4T152|unclassified	0.2358120061
+UniRef50_UPI000411C198: hypothetical protein	0.2358056270
+UniRef50_UPI000411C198: hypothetical protein|unclassified	0.2358056270
+UniRef50_E2ZP01	0.2357709538
+UniRef50_E2ZP01|unclassified	0.2357709538
+UniRef50_UPI00046EA948: peptide deformylase	0.2357564048
+UniRef50_UPI00046EA948: peptide deformylase|unclassified	0.2357564048
+UniRef50_M7NCI4	0.2357180745
+UniRef50_M7NCI4|unclassified	0.2357180745
+UniRef50_UPI0003694B5F: hypothetical protein	0.2356926609
+UniRef50_UPI0003694B5F: hypothetical protein|unclassified	0.2356926609
+UniRef50_K8E758	0.2356264761
+UniRef50_K8E758|unclassified	0.2356264761
+UniRef50_UPI0004722CE5: hypothetical protein	0.2356052240
+UniRef50_UPI0004722CE5: hypothetical protein|unclassified	0.2356052240
+UniRef50_UPI000363F603: NADH dehydrogenase subunit E	0.2355890919
+UniRef50_UPI000363F603: NADH dehydrogenase subunit E|unclassified	0.2355890919
+UniRef50_L3QDB7	0.2355741195
+UniRef50_L3QDB7|unclassified	0.2355741195
+UniRef50_H9K6W3: Aminomethyltransferase	0.2355597904
+UniRef50_H9K6W3: Aminomethyltransferase|unclassified	0.2355597904
+UniRef50_Q7N3Z6: D-amino acid dehydrogenase small subunit	0.2355574721
+UniRef50_Q7N3Z6: D-amino acid dehydrogenase small subunit|unclassified	0.2355574721
+UniRef50_UPI000376E605: hypothetical protein	0.2355446943
+UniRef50_UPI000376E605: hypothetical protein|unclassified	0.2355446943
+UniRef50_UPI0003B569D8: hypothetical protein	0.2355427502
+UniRef50_UPI0003B569D8: hypothetical protein|unclassified	0.2355427502
+UniRef50_C3H5Y3	0.2355108668
+UniRef50_C3H5Y3|unclassified	0.2355108668
+UniRef50_R6Y8V4	0.2355100305
+UniRef50_R6Y8V4|unclassified	0.2355100305
+UniRef50_B1ZHY9	0.2355073109
+UniRef50_B1ZHY9|unclassified	0.2355073109
+UniRef50_UPI0003799247: hypothetical protein	0.2355057755
+UniRef50_UPI0003799247: hypothetical protein|unclassified	0.2355057755
+UniRef50_E8SIY1	0.2354935870
+UniRef50_E8SIY1|unclassified	0.2354935870
+UniRef50_UPI00037B8503: hypothetical protein	0.2354830689
+UniRef50_UPI00037B8503: hypothetical protein|unclassified	0.2354830689
+UniRef50_D5WT20: Nuclear export factor GLE1	0.2354494928
+UniRef50_D5WT20: Nuclear export factor GLE1|unclassified	0.2354494928
+UniRef50_H6NRD9: PspA/IM30	0.2354403078
+UniRef50_H6NRD9: PspA/IM30|unclassified	0.2354403078
+UniRef50_UPI0003FEFECF: hypothetical protein	0.2354347862
+UniRef50_UPI0003FEFECF: hypothetical protein|unclassified	0.2354347862
+UniRef50_G8FVY7: Replication initiation protein RepC-2 (Fragment)	0.2354026708
+UniRef50_G8FVY7: Replication initiation protein RepC-2 (Fragment)|unclassified	0.2354026708
+UniRef50_X0X1B0: Marine sediment metagenome DNA, contig: S01H1_S18042 (Fragment)	0.2354018917
+UniRef50_X0X1B0: Marine sediment metagenome DNA, contig: S01H1_S18042 (Fragment)|unclassified	0.2354018917
+UniRef50_P50729: Probable ATP-dependent DNA helicase RecS	0.2353961435
+UniRef50_P50729: Probable ATP-dependent DNA helicase RecS|unclassified	0.2353961435
+UniRef50_P07607: Thymidylate synthase	0.2353755843
+UniRef50_P07607: Thymidylate synthase|unclassified	0.2353755843
+UniRef50_UPI0002FBD6FC: hypothetical protein	0.2352956250
+UniRef50_UPI0002FBD6FC: hypothetical protein|unclassified	0.2352956250
+UniRef50_X7CBF8	0.2352945504
+UniRef50_X7CBF8|unclassified	0.2352945504
+UniRef50_M9REI0	0.2352827507
+UniRef50_M9REI0|unclassified	0.2352827507
+UniRef50_P27603: P-protein	0.2352736634
+UniRef50_P27603: P-protein|unclassified	0.2352736634
+UniRef50_UPI00037DFA06: hypothetical protein	0.2352652406
+UniRef50_UPI00037DFA06: hypothetical protein|unclassified	0.2352652406
+UniRef50_UPI0002192F4A: ABC transporter ATP-binding protein	0.2352641886
+UniRef50_UPI0002192F4A: ABC transporter ATP-binding protein|unclassified	0.2352641886
+UniRef50_X1SJR5: Marine sediment metagenome DNA, contig: S12H4_C04921 (Fragment)	0.2352506188
+UniRef50_X1SJR5: Marine sediment metagenome DNA, contig: S12H4_C04921 (Fragment)|unclassified	0.2352506188
+UniRef50_UPI00034B623B: hypothetical protein	0.2352497470
+UniRef50_UPI00034B623B: hypothetical protein|unclassified	0.2352497470
+UniRef50_Q2BNE5	0.2352315270
+UniRef50_Q2BNE5|unclassified	0.2352315270
+UniRef50_UPI00034BC36E: hypothetical protein	0.2352302386
+UniRef50_UPI00034BC36E: hypothetical protein|unclassified	0.2352302386
+UniRef50_UPI0001CC37F5: ABC transporter, permease protein, partial	0.2352187861
+UniRef50_UPI0001CC37F5: ABC transporter, permease protein, partial|unclassified	0.2352187861
+UniRef50_UPI0003B6428F: prolipoprotein diacylglyceryl transferase	0.2351954524
+UniRef50_UPI0003B6428F: prolipoprotein diacylglyceryl transferase|unclassified	0.2351954524
+UniRef50_UPI0004544CD8: PREDICTED: glycine cleavage system H protein, mitochondrial isoform X2	0.2351883219
+UniRef50_UPI0004544CD8: PREDICTED: glycine cleavage system H protein, mitochondrial isoform X2|unclassified	0.2351883219
+UniRef50_V4QEP9: Cell division protein FtsE	0.2351789291
+UniRef50_V4QEP9: Cell division protein FtsE|unclassified	0.2351789291
+UniRef50_Q4L4H5: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.2351732300
+UniRef50_Q4L4H5: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.2351732300
+UniRef50_J9P2S8	0.2351714414
+UniRef50_J9P2S8|unclassified	0.2351714414
+UniRef50_F2DUH5: Predicted protein	0.2351710837
+UniRef50_F2DUH5: Predicted protein|unclassified	0.2351710837
+UniRef50_UPI0004639C57: di-/tricarboxylate transporter	0.2351695374
+UniRef50_UPI0004639C57: di-/tricarboxylate transporter|unclassified	0.2351695374
+UniRef50_M5J3I0	0.2351644832
+UniRef50_M5J3I0|unclassified	0.2351644832
+UniRef50_A4EHJ2	0.2351587178
+UniRef50_A4EHJ2|unclassified	0.2351587178
+UniRef50_UPI0003B46724: carbamate kinase	0.2351577413
+UniRef50_UPI0003B46724: carbamate kinase|unclassified	0.2351577413
+UniRef50_A1WR50	0.2351529564
+UniRef50_A1WR50|unclassified	0.2351529564
+UniRef50_O51087: Endoribonuclease YbeY	0.2351287671
+UniRef50_O51087: Endoribonuclease YbeY|unclassified	0.2351287671
+UniRef50_V4QFI1: TonB-dependent receptor	0.2351264556
+UniRef50_V4QFI1: TonB-dependent receptor|unclassified	0.2351264556
+UniRef50_UPI00036C6068: hypothetical protein	0.2351244899
+UniRef50_UPI00036C6068: hypothetical protein|unclassified	0.2351244899
+UniRef50_S3VU48: Prevent-host-death family protein	0.2351230495
+UniRef50_S3VU48: Prevent-host-death family protein|unclassified	0.2351230495
+UniRef50_UPI0004712377: hypothetical protein	0.2351112361
+UniRef50_UPI0004712377: hypothetical protein|unclassified	0.2351112361
+UniRef50_UPI00046737F8: hypothetical protein	0.2351091023
+UniRef50_UPI00046737F8: hypothetical protein|unclassified	0.2351091023
+UniRef50_M2UME2: Putative potassium transport flavoprotein	0.2350934941
+UniRef50_M2UME2: Putative potassium transport flavoprotein|unclassified	0.2350934941
+UniRef50_C6WX09: Class II aldolase/adducin family protein	0.2350872441
+UniRef50_C6WX09: Class II aldolase/adducin family protein|unclassified	0.2350872441
+UniRef50_D0CPI3: Peptidase U35, phage prohead HK97	0.2350816409
+UniRef50_D0CPI3: Peptidase U35, phage prohead HK97|unclassified	0.2350816409
+UniRef50_F1YW63	0.2350793709
+UniRef50_F1YW63|unclassified	0.2350793709
+UniRef50_UPI000262CC71: mannose-1-phosphate guanyltransferase	0.2350777614
+UniRef50_UPI000262CC71: mannose-1-phosphate guanyltransferase|unclassified	0.2350777614
+UniRef50_UPI000477575F: spermidine/putrescine ABC transporter substrate-binding protein	0.2350745300
+UniRef50_UPI000477575F: spermidine/putrescine ABC transporter substrate-binding protein|unclassified	0.2350745300
+UniRef50_UPI0003D0DACE	0.2350566201
+UniRef50_UPI0003D0DACE|unclassified	0.2350566201
+UniRef50_P07075: Anaerobic ribonucleoside-triphosphate reductase-activating protein	0.2350439307
+UniRef50_P07075: Anaerobic ribonucleoside-triphosphate reductase-activating protein|unclassified	0.2350439307
+UniRef50_A8N429	0.2350427398
+UniRef50_A8N429|unclassified	0.2350427398
+UniRef50_C0PF30	0.2349981646
+UniRef50_C0PF30|unclassified	0.2349981646
+UniRef50_P47295: Purine nucleoside phosphorylase DeoD-type	0.2349960756
+UniRef50_P47295: Purine nucleoside phosphorylase DeoD-type|unclassified	0.2349960756
+UniRef50_A9E033	0.2349877626
+UniRef50_A9E033|unclassified	0.2349877626
+UniRef50_UPI0003722446: hypothetical protein	0.2349812023
+UniRef50_UPI0003722446: hypothetical protein|unclassified	0.2349812023
+UniRef50_UPI00040902BB: transcriptional regulator	0.2349452180
+UniRef50_UPI00040902BB: transcriptional regulator|unclassified	0.2349452180
+UniRef50_UPI0003A51327: hypothetical protein	0.2349447624
+UniRef50_UPI0003A51327: hypothetical protein|unclassified	0.2349447624
+UniRef50_UPI00036F4A10: hypothetical protein	0.2349319497
+UniRef50_UPI00036F4A10: hypothetical protein|unclassified	0.2349319497
+UniRef50_UPI00045603F6: hypothetical protein PFL1_03459	0.2349191628
+UniRef50_UPI00045603F6: hypothetical protein PFL1_03459|unclassified	0.2349191628
+UniRef50_UPI00046C8E87: hypothetical protein	0.2349125095
+UniRef50_UPI00046C8E87: hypothetical protein|unclassified	0.2349125095
+UniRef50_UPI00039B40B0: hypothetical protein	0.2348890185
+UniRef50_UPI00039B40B0: hypothetical protein|unclassified	0.2348890185
+UniRef50_UPI00029AC1AE: succinate-semialdehyde dehydrogenase	0.2348788236
+UniRef50_UPI00029AC1AE: succinate-semialdehyde dehydrogenase|unclassified	0.2348788236
+UniRef50_B9XKA2	0.2348561374
+UniRef50_B9XKA2|unclassified	0.2348561374
+UniRef50_UPI00034B5777: hypothetical protein	0.2348551588
+UniRef50_UPI00034B5777: hypothetical protein|unclassified	0.2348551588
+UniRef50_Q0F4H6	0.2348505148
+UniRef50_Q0F4H6|unclassified	0.2348505148
+UniRef50_J9PA93	0.2348496600
+UniRef50_J9PA93|unclassified	0.2348496600
+UniRef50_UPI000466AF04: glycosyl transferase family 1	0.2348329232
+UniRef50_UPI000466AF04: glycosyl transferase family 1|unclassified	0.2348329232
+UniRef50_K0I1Z2	0.2348214327
+UniRef50_K0I1Z2|unclassified	0.2348214327
+UniRef50_UPI00046F7D51: hypothetical protein	0.2348205195
+UniRef50_UPI00046F7D51: hypothetical protein|unclassified	0.2348205195
+UniRef50_Q111C2: Cyclic pyranopterin monophosphate synthase accessory protein	0.2348132269
+UniRef50_Q111C2: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	0.2348132269
+UniRef50_A0A022GY86	0.2347757373
+UniRef50_A0A022GY86|unclassified	0.2347757373
+UniRef50_UPI00030293EE: hypothetical protein	0.2347461264
+UniRef50_UPI00030293EE: hypothetical protein|unclassified	0.2347461264
+UniRef50_UPI00037EFF4E: hypothetical protein	0.2347441351
+UniRef50_UPI00037EFF4E: hypothetical protein|unclassified	0.2347441351
+UniRef50_UPI00037DF050: hypothetical protein	0.2347351546
+UniRef50_UPI00037DF050: hypothetical protein|unclassified	0.2347351546
+UniRef50_F8ET19	0.2347316586
+UniRef50_F8ET19|unclassified	0.2347316586
+UniRef50_G8P663: Transcription termination like protein	0.2347146512
+UniRef50_G8P663: Transcription termination like protein|unclassified	0.2347146512
+UniRef50_I3XDK3	0.2347090583
+UniRef50_I3XDK3|unclassified	0.2347090583
+UniRef50_O87682: 6-hydroxypseudooxynicotine dehydrogenase complex subunit beta	0.2346844415
+UniRef50_O87682: 6-hydroxypseudooxynicotine dehydrogenase complex subunit beta|unclassified	0.2346844415
+UniRef50_Q7UNN9: Bifunctional protein FolD	0.2346819431
+UniRef50_Q7UNN9: Bifunctional protein FolD|unclassified	0.2346819431
+UniRef50_R0EUY0: NnrS family protein (Fragment)	0.2346558750
+UniRef50_R0EUY0: NnrS family protein (Fragment)|unclassified	0.2346558750
+UniRef50_UPI0004725AF9: hypothetical protein	0.2346404100
+UniRef50_UPI0004725AF9: hypothetical protein|unclassified	0.2346404100
+UniRef50_UPI0003B4809D: cold-shock protein	0.2346286351
+UniRef50_UPI0003B4809D: cold-shock protein|unclassified	0.2346286351
+UniRef50_W9WPJ4	0.2346209689
+UniRef50_W9WPJ4|unclassified	0.2346209689
+UniRef50_UPI0003B7A748: hypothetical protein	0.2346107946
+UniRef50_UPI0003B7A748: hypothetical protein|unclassified	0.2346107946
+UniRef50_UPI00037FEDEB: hypothetical protein	0.2346018307
+UniRef50_UPI00037FEDEB: hypothetical protein|unclassified	0.2346018307
+UniRef50_G5JNU8	0.2345816739
+UniRef50_G5JNU8|unclassified	0.2345816739
+UniRef50_Q03VI2: tRNA dimethylallyltransferase	0.2345772755
+UniRef50_Q03VI2: tRNA dimethylallyltransferase|unclassified	0.2345772755
+UniRef50_A3TX06	0.2345569977
+UniRef50_A3TX06|unclassified	0.2345569977
+UniRef50_G3UFS4	0.2345432857
+UniRef50_G3UFS4|unclassified	0.2345432857
+UniRef50_A3JWI1	0.2345423143
+UniRef50_A3JWI1|unclassified	0.2345423143
+UniRef50_C8RX55	0.2345349299
+UniRef50_C8RX55|unclassified	0.2345349299
+UniRef50_Q2PYC3	0.2345052910
+UniRef50_Q2PYC3|unclassified	0.2345052910
+UniRef50_V6M9W0	0.2345052039
+UniRef50_V6M9W0|unclassified	0.2345052039
+UniRef50_C3XBE9	0.2345029142
+UniRef50_C3XBE9|unclassified	0.2345029142
+UniRef50_UPI000476F9D9: esterase	0.2344901152
+UniRef50_UPI000476F9D9: esterase|unclassified	0.2344901152
+UniRef50_J0LAP9	0.2344829966
+UniRef50_J0LAP9|unclassified	0.2344829966
+UniRef50_M2SA23	0.2344230811
+UniRef50_M2SA23|unclassified	0.2344230811
+UniRef50_UPI00046A2D0B: NADPH-dependent FMN reductase	0.2344153727
+UniRef50_UPI00046A2D0B: NADPH-dependent FMN reductase|unclassified	0.2344153727
+UniRef50_R1FAR2	0.2344087521
+UniRef50_R1FAR2|unclassified	0.2344087521
+UniRef50_X1V7S4: Marine sediment metagenome DNA, contig: S12H4_S12338 (Fragment)	0.2343900860
+UniRef50_X1V7S4: Marine sediment metagenome DNA, contig: S12H4_S12338 (Fragment)|unclassified	0.2343900860
+UniRef50_E0SBU5: Possible lipoprotein	0.2343830259
+UniRef50_E0SBU5: Possible lipoprotein|unclassified	0.2343830259
+UniRef50_UPI00040B25DB: 4-hydroxyphenylacetate 3-monooxygenase	0.2343614875
+UniRef50_UPI00040B25DB: 4-hydroxyphenylacetate 3-monooxygenase|unclassified	0.2343614875
+UniRef50_A8L3Z7	0.2343501589
+UniRef50_A8L3Z7|unclassified	0.2343501589
+UniRef50_UPI000288FA64: peptide ABC transporter	0.2343069034
+UniRef50_UPI000288FA64: peptide ABC transporter|unclassified	0.2343069034
+UniRef50_X1DSN1: Marine sediment metagenome DNA, contig: S01H4_S11517 (Fragment)	0.2343016465
+UniRef50_X1DSN1: Marine sediment metagenome DNA, contig: S01H4_S11517 (Fragment)|unclassified	0.2343016465
+UniRef50_I4ZS29: Redox-active disulfide protein 2	0.2342862852
+UniRef50_I4ZS29: Redox-active disulfide protein 2|unclassified	0.2342862852
+UniRef50_Q7CWA6	0.2342735896
+UniRef50_Q7CWA6|unclassified	0.2342735896
+UniRef50_UPI0003B4EFCC: peptide ABC transporter substrate-binding protein, partial	0.2342695827
+UniRef50_UPI0003B4EFCC: peptide ABC transporter substrate-binding protein, partial|unclassified	0.2342695827
+UniRef50_UPI000367B310: hypothetical protein	0.2342625019
+UniRef50_UPI000367B310: hypothetical protein|unclassified	0.2342625019
+UniRef50_C6E3K3: Type VI secretion protein, VC_A0107 family	0.2342573873
+UniRef50_C6E3K3: Type VI secretion protein, VC_A0107 family|unclassified	0.2342573873
+UniRef50_Q8G5F0: Arginine biosynthesis bifunctional protein ArgJ	0.2342532609
+UniRef50_Q8G5F0: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.2342532609
+UniRef50_UPI0003EA9CC0: PREDICTED: formin-like protein 3-like, partial	0.2342453872
+UniRef50_UPI0003EA9CC0: PREDICTED: formin-like protein 3-like, partial|unclassified	0.2342453872
+UniRef50_UPI0004624B48: ABC transporter substrate-binding protein, partial	0.2342435034
+UniRef50_UPI0004624B48: ABC transporter substrate-binding protein, partial|unclassified	0.2342435034
+UniRef50_H9BX84: Pyrroloquinoline quinone biosynthesis protein PqqC	0.2342042373
+UniRef50_H9BX84: Pyrroloquinoline quinone biosynthesis protein PqqC|unclassified	0.2342042373
+UniRef50_M9R124	0.2341821866
+UniRef50_M9R124|unclassified	0.2341821866
+UniRef50_B7JI94	0.2341623509
+UniRef50_B7JI94|unclassified	0.2341623509
+UniRef50_UPI000472213B: hypothetical protein	0.2341095000
+UniRef50_UPI000472213B: hypothetical protein|unclassified	0.2341095000
+UniRef50_V4J656	0.2341074008
+UniRef50_V4J656|unclassified	0.2341074008
+UniRef50_U6K4H4	0.2340978726
+UniRef50_U6K4H4|unclassified	0.2340978726
+UniRef50_Q9KT77: Molybdopterin synthase catalytic subunit	0.2340952118
+UniRef50_Q9KT77: Molybdopterin synthase catalytic subunit|unclassified	0.2340952118
+UniRef50_UPI0003B36A34: glutathione peroxidase	0.2340913380
+UniRef50_UPI0003B36A34: glutathione peroxidase|unclassified	0.2340913380
+UniRef50_W8X8B8: LemA family protein	0.2340850201
+UniRef50_W8X8B8: LemA family protein|unclassified	0.2340850201
+UniRef50_A0A017HEL8: Molecular chaperone (Small heat shock protein)	0.2340842572
+UniRef50_A0A017HEL8: Molecular chaperone (Small heat shock protein)|unclassified	0.2340842572
+UniRef50_R5HAX2: Hemolysins and related proteins containing CBS domains	0.2340595375
+UniRef50_R5HAX2: Hemolysins and related proteins containing CBS domains|unclassified	0.2340595375
+UniRef50_V4Q962	0.2340430903
+UniRef50_V4Q962|unclassified	0.2340430903
+UniRef50_G8ATH1	0.2340427078
+UniRef50_G8ATH1|unclassified	0.2340427078
+UniRef50_D6Y179	0.2340339921
+UniRef50_D6Y179|unclassified	0.2340339921
+UniRef50_Q89LM0: Bll4524 protein	0.2340336524
+UniRef50_Q89LM0: Bll4524 protein|unclassified	0.2340336524
+UniRef50_UPI0003B66D88: biopolymer transporter TolR	0.2340272119
+UniRef50_UPI0003B66D88: biopolymer transporter TolR|unclassified	0.2340272119
+UniRef50_A0A023VIV5	0.2340120478
+UniRef50_A0A023VIV5|unclassified	0.2340120478
+UniRef50_Q3JPF1	0.2339968503
+UniRef50_Q3JPF1|unclassified	0.2339968503
+UniRef50_Q1PY54	0.2339881307
+UniRef50_Q1PY54|unclassified	0.2339881307
+UniRef50_UPI00047C45C3: hypothetical protein	0.2339833952
+UniRef50_UPI00047C45C3: hypothetical protein|unclassified	0.2339833952
+UniRef50_X2MFS1	0.2339628770
+UniRef50_X2MFS1|unclassified	0.2339628770
+UniRef50_UPI00035C09F2: hypothetical protein	0.2339601169
+UniRef50_UPI00035C09F2: hypothetical protein|unclassified	0.2339601169
+UniRef50_Q47AK8: Transcriptional regulator, BolA protein family	0.2339520759
+UniRef50_Q47AK8: Transcriptional regulator, BolA protein family|unclassified	0.2339520759
+UniRef50_W6K963	0.2339502814
+UniRef50_W6K963|unclassified	0.2339502814
+UniRef50_UPI0003175165: hypothetical protein	0.2339498815
+UniRef50_UPI0003175165: hypothetical protein|unclassified	0.2339498815
+UniRef50_UPI0004179663: hypothetical protein	0.2339222705
+UniRef50_UPI0004179663: hypothetical protein|unclassified	0.2339222705
+UniRef50_F0YGW9: Expressed protein (Fragment)	0.2339200508
+UniRef50_F0YGW9: Expressed protein (Fragment)|unclassified	0.2339200508
+UniRef50_UPI0003F4FF0F: MULTISPECIES: short-chain dehydrogenase	0.2338779130
+UniRef50_UPI0003F4FF0F: MULTISPECIES: short-chain dehydrogenase|unclassified	0.2338779130
+UniRef50_Q9M5K2: Dihydrolipoyl dehydrogenase 2, mitochondrial	0.2338771739
+UniRef50_Q9M5K2: Dihydrolipoyl dehydrogenase 2, mitochondrial|unclassified	0.2338771739
+UniRef50_UPI000367067F: chloroperoxidase, partial	0.2338742686
+UniRef50_UPI000367067F: chloroperoxidase, partial|unclassified	0.2338742686
+UniRef50_S2IZA5	0.2338738240
+UniRef50_S2IZA5|unclassified	0.2338738240
+UniRef50_A8GGN7: NAD(P)H dehydrogenase (Quinone)	0.2338721901
+UniRef50_A8GGN7: NAD(P)H dehydrogenase (Quinone)|unclassified	0.2338721901
+UniRef50_D1Y7A2	0.2338571202
+UniRef50_D1Y7A2|unclassified	0.2338571202
+UniRef50_UPI00035F4FB6: hypothetical protein	0.2338419840
+UniRef50_UPI00035F4FB6: hypothetical protein|unclassified	0.2338419840
+UniRef50_UPI000473D1F1: prolyl oligopeptidase, partial	0.2338123731
+UniRef50_UPI000473D1F1: prolyl oligopeptidase, partial|unclassified	0.2338123731
+UniRef50_A0A034UGM1	0.2337894245
+UniRef50_A0A034UGM1|unclassified	0.2337894245
+UniRef50_V4KYY3	0.2337747289
+UniRef50_V4KYY3|unclassified	0.2337747289
+UniRef50_UPI0001B432C9: monovalent cation/H+ antiporter subunit A	0.2337642469
+UniRef50_UPI0001B432C9: monovalent cation/H+ antiporter subunit A|unclassified	0.2337642469
+UniRef50_UPI00036DE1C8: hypothetical protein	0.2337215700
+UniRef50_UPI00036DE1C8: hypothetical protein|unclassified	0.2337215700
+UniRef50_UPI00046410D5: hypothetical protein	0.2337030637
+UniRef50_UPI00046410D5: hypothetical protein|unclassified	0.2337030637
+UniRef50_F4ANR3	0.2336936574
+UniRef50_F4ANR3|unclassified	0.2336936574
+UniRef50_D6ZZ04	0.2336750521
+UniRef50_D6ZZ04|unclassified	0.2336750521
+UniRef50_B8GZK4: Glycerol-3-phosphate acyltransferase	0.2336675118
+UniRef50_B8GZK4: Glycerol-3-phosphate acyltransferase|unclassified	0.2336675118
+UniRef50_U5BVI3	0.2336540039
+UniRef50_U5BVI3|unclassified	0.2336540039
+UniRef50_K2J5D9	0.2336453158
+UniRef50_K2J5D9|unclassified	0.2336453158
+UniRef50_A0L4S7: Cyclase/dehydrase	0.2336421474
+UniRef50_A0L4S7: Cyclase/dehydrase|unclassified	0.2336421474
+UniRef50_UPI00039F8870: zinc metalloprotease	0.2336397993
+UniRef50_UPI00039F8870: zinc metalloprotease|unclassified	0.2336397993
+UniRef50_UPI00036B4CF7: hypothetical protein	0.2336387190
+UniRef50_UPI00036B4CF7: hypothetical protein|unclassified	0.2336387190
+UniRef50_U5P663: Membrane protein	0.2336160385
+UniRef50_U5P663: Membrane protein|unclassified	0.2336160385
+UniRef50_UPI00047DBCAC: hypothetical protein	0.2335933884
+UniRef50_UPI00047DBCAC: hypothetical protein|unclassified	0.2335933884
+UniRef50_I2WDP4: Phage tail fiber repeat protein	0.2335716588
+UniRef50_I2WDP4: Phage tail fiber repeat protein|unclassified	0.2335716588
+UniRef50_G1XMI9	0.2335656868
+UniRef50_G1XMI9|unclassified	0.2335656868
+UniRef50_C7R549	0.2335416808
+UniRef50_C7R549|unclassified	0.2335416808
+UniRef50_F5W6V0: Conserved domain protein	0.2335412423
+UniRef50_F5W6V0: Conserved domain protein|unclassified	0.2335412423
+UniRef50_UPI0004679826: hypothetical protein	0.2335311255
+UniRef50_UPI0004679826: hypothetical protein|unclassified	0.2335311255
+UniRef50_W8VEF0	0.2334959516
+UniRef50_W8VEF0|unclassified	0.2334959516
+UniRef50_UPI0002EF4996: hypothetical protein	0.2334921452
+UniRef50_UPI0002EF4996: hypothetical protein|unclassified	0.2334921452
+UniRef50_UPI0004045148: DNA polymerase III subunit beta	0.2334881074
+UniRef50_UPI0004045148: DNA polymerase III subunit beta|unclassified	0.2334881074
+UniRef50_UPI0004671146: hypothetical protein	0.2334845950
+UniRef50_UPI0004671146: hypothetical protein|unclassified	0.2334845950
+UniRef50_UPI000380E313: hypothetical protein	0.2334789993
+UniRef50_UPI000380E313: hypothetical protein|unclassified	0.2334789993
+UniRef50_UPI0003649D67: hypothetical protein	0.2334673009
+UniRef50_UPI0003649D67: hypothetical protein|unclassified	0.2334673009
+UniRef50_D6ILX4: Predicted protein	0.2334624674
+UniRef50_D6ILX4: Predicted protein|unclassified	0.2334624674
+UniRef50_UPI0003EF3F53: membrane protein	0.2334441211
+UniRef50_UPI0003EF3F53: membrane protein|unclassified	0.2334441211
+UniRef50_Q2SPG9: Putative Holliday junction resolvase	0.2334391167
+UniRef50_Q2SPG9: Putative Holliday junction resolvase|unclassified	0.2334391167
+UniRef50_A8LKL1	0.2334298085
+UniRef50_A8LKL1|unclassified	0.2334298085
+UniRef50_Q7N3A3: Complete genome; segment 10/17	0.2334234370
+UniRef50_Q7N3A3: Complete genome; segment 10/17|unclassified	0.2334234370
+UniRef50_UPI0002378CB8: putative 6-phosphofructokinase, partial	0.2334215507
+UniRef50_UPI0002378CB8: putative 6-phosphofructokinase, partial|unclassified	0.2334215507
+UniRef50_Q391R7	0.2334088624
+UniRef50_Q391R7|unclassified	0.2334088624
+UniRef50_C1CA92: Mobile genetic element	0.2333752685
+UniRef50_C1CA92: Mobile genetic element|unclassified	0.2333752685
+UniRef50_D6Z743: Pyridoxal-5'-phosphate-dependent protein beta subunit	0.2333732401
+UniRef50_D6Z743: Pyridoxal-5'-phosphate-dependent protein beta subunit|unclassified	0.2333732401
+UniRef50_S9U7T2: Solute carrier family 39 (Zinc transporter), member 1/2/3	0.2333525736
+UniRef50_S9U7T2: Solute carrier family 39 (Zinc transporter), member 1/2/3|unclassified	0.2333525736
+UniRef50_C4XYJ5: Predicted protein	0.2333345936
+UniRef50_C4XYJ5: Predicted protein|unclassified	0.2333345936
+UniRef50_R5AAG1	0.2333187788
+UniRef50_R5AAG1|unclassified	0.2333187788
+UniRef50_UPI00047ABF4F: 3-methyladenine DNA glycosylase	0.2332692740
+UniRef50_UPI00047ABF4F: 3-methyladenine DNA glycosylase|unclassified	0.2332692740
+UniRef50_W4HGY2	0.2332316474
+UniRef50_W4HGY2|unclassified	0.2332316474
+UniRef50_UPI0003F7F30F: alpha-amylase	0.2332242512
+UniRef50_UPI0003F7F30F: alpha-amylase|unclassified	0.2332242512
+UniRef50_Q6N6L4: Phosphopantetheine adenylyltransferase	0.2332188065
+UniRef50_Q6N6L4: Phosphopantetheine adenylyltransferase|unclassified	0.2332188065
+UniRef50_H0DH19	0.2332065630
+UniRef50_H0DH19|unclassified	0.2332065630
+UniRef50_UPI000262AF83: anhydrase	0.2331999803
+UniRef50_UPI000262AF83: anhydrase|unclassified	0.2331999803
+UniRef50_UPI000374108B: hypothetical protein	0.2331851983
+UniRef50_UPI000374108B: hypothetical protein|unclassified	0.2331851983
+UniRef50_D1C3A9: Phosphoribosylformylglycinamidine synthase, purS	0.2331557218
+UniRef50_D1C3A9: Phosphoribosylformylglycinamidine synthase, purS|unclassified	0.2331557218
+UniRef50_A2CB56: Putative signal peptidase	0.2331349482
+UniRef50_A2CB56: Putative signal peptidase|unclassified	0.2331349482
+UniRef50_R7PVA8	0.2331299611
+UniRef50_R7PVA8|unclassified	0.2331299611
+UniRef50_UPI0003B6745E: hypothetical protein	0.2331229280
+UniRef50_UPI0003B6745E: hypothetical protein|unclassified	0.2331229280
+UniRef50_E1ZH87	0.2331141637
+UniRef50_E1ZH87|unclassified	0.2331141637
+UniRef50_V4ZND4	0.2331024058
+UniRef50_V4ZND4|unclassified	0.2331024058
+UniRef50_C4J675	0.2330945287
+UniRef50_C4J675|unclassified	0.2330945287
+UniRef50_UPI00036D9933: hypothetical protein, partial	0.2330811440
+UniRef50_UPI00036D9933: hypothetical protein, partial|unclassified	0.2330811440
+UniRef50_A4EQN9	0.2330731182
+UniRef50_A4EQN9|unclassified	0.2330731182
+UniRef50_UPI00037336F7: hypothetical protein	0.2330702012
+UniRef50_UPI00037336F7: hypothetical protein|unclassified	0.2330702012
+UniRef50_H2ICB8	0.2330697772
+UniRef50_H2ICB8|unclassified	0.2330697772
+UniRef50_UPI00047783E9: 3-mercaptopyruvate sulfurtransferase	0.2330581261
+UniRef50_UPI00047783E9: 3-mercaptopyruvate sulfurtransferase|unclassified	0.2330581261
+UniRef50_K0VIJ3: Replication initiation protein RepC	0.2330571648
+UniRef50_K0VIJ3: Replication initiation protein RepC|unclassified	0.2330571648
+UniRef50_K7UYX2	0.2330524525
+UniRef50_K7UYX2|unclassified	0.2330524525
+UniRef50_T1A0L9: Bacterio-opsin activator, HTH domain protein (Fragment)	0.2330504849
+UniRef50_T1A0L9: Bacterio-opsin activator, HTH domain protein (Fragment)|unclassified	0.2330504849
+UniRef50_A3SH60: BolA protein, truncation	0.2330457026
+UniRef50_A3SH60: BolA protein, truncation|unclassified	0.2330457026
+UniRef50_K3H334	0.2330177876
+UniRef50_K3H334|unclassified	0.2330177876
+UniRef50_D9W484: NAD(P)H oxidoreductase	0.2329965033
+UniRef50_D9W484: NAD(P)H oxidoreductase|unclassified	0.2329965033
+UniRef50_A6V2I4	0.2329450702
+UniRef50_A6V2I4|unclassified	0.2329450702
+UniRef50_B8F6C9: Biotin synthase	0.2329448191
+UniRef50_B8F6C9: Biotin synthase|unclassified	0.2329448191
+UniRef50_UPI00037B0FBB: hypothetical protein	0.2329433935
+UniRef50_UPI00037B0FBB: hypothetical protein|unclassified	0.2329433935
+UniRef50_UPI00034D1717: membrane protein	0.2328830690
+UniRef50_UPI00034D1717: membrane protein|unclassified	0.2328830690
+UniRef50_UPI000262D06B: coproporphyrinogen III oxidase	0.2328785370
+UniRef50_UPI000262D06B: coproporphyrinogen III oxidase|unclassified	0.2328785370
+UniRef50_UPI0003A1390E: hypothetical protein	0.2328710028
+UniRef50_UPI0003A1390E: hypothetical protein|unclassified	0.2328710028
+UniRef50_UPI0003777F18: chemotaxis protein CheY	0.2328370191
+UniRef50_UPI0003777F18: chemotaxis protein CheY|unclassified	0.2328370191
+UniRef50_UPI00047AEBCA: dihydrodipicolinate synthase	0.2328277056
+UniRef50_UPI00047AEBCA: dihydrodipicolinate synthase|unclassified	0.2328277056
+UniRef50_UPI00029A0E68: dgpfaetke family protein	0.2328087664
+UniRef50_UPI00029A0E68: dgpfaetke family protein|unclassified	0.2328087664
+UniRef50_Q46BU0	0.2328009959
+UniRef50_Q46BU0|unclassified	0.2328009959
+UniRef50_UPI0004653C6C: chemotaxis protein CheY, partial	0.2327712051
+UniRef50_UPI0004653C6C: chemotaxis protein CheY, partial|unclassified	0.2327712051
+UniRef50_UPI000379D46E: hypothetical protein	0.2327613636
+UniRef50_UPI000379D46E: hypothetical protein|unclassified	0.2327613636
+UniRef50_UPI0003FA71A7: hypothetical protein	0.2327606601
+UniRef50_UPI0003FA71A7: hypothetical protein|unclassified	0.2327606601
+UniRef50_W1X6H2: Flagellar basal-body rod protein FlgC	0.2327271517
+UniRef50_W1X6H2: Flagellar basal-body rod protein FlgC|unclassified	0.2327271517
+UniRef50_UPI000469723A: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	0.2327159018
+UniRef50_UPI000469723A: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.2327159018
+UniRef50_UPI00020AE5CD	0.2327090791
+UniRef50_UPI00020AE5CD|unclassified	0.2327090791
+UniRef50_Q89SD4: Blr2466 protein	0.2327008412
+UniRef50_Q89SD4: Blr2466 protein|unclassified	0.2327008412
+UniRef50_E6WHH1	0.2326976315
+UniRef50_E6WHH1|unclassified	0.2326976315
+UniRef50_UPI00047E58AE: hypothetical protein	0.2326872000
+UniRef50_UPI00047E58AE: hypothetical protein|unclassified	0.2326872000
+UniRef50_UPI0003B3FFBD: hypothetical protein	0.2326765888
+UniRef50_UPI0003B3FFBD: hypothetical protein|unclassified	0.2326765888
+UniRef50_UPI000466D262: hypothetical protein, partial	0.2326730237
+UniRef50_UPI000466D262: hypothetical protein, partial|unclassified	0.2326730237
+UniRef50_F9PFU0: Conserved domain protein	0.2326606935
+UniRef50_F9PFU0: Conserved domain protein|unclassified	0.2326606935
+UniRef50_UPI000314334B: hypothetical protein	0.2326208727
+UniRef50_UPI000314334B: hypothetical protein|unclassified	0.2326208727
+UniRef50_UPI000475E483: oxidoreductase, partial	0.2325924957
+UniRef50_UPI000475E483: oxidoreductase, partial|unclassified	0.2325924957
+UniRef50_W6X3Q8: NAD(P)H dehydrogenase (Quinone)	0.2325910417
+UniRef50_W6X3Q8: NAD(P)H dehydrogenase (Quinone)|unclassified	0.2325910417
+UniRef50_C4L8P2: Diguanylate cyclase	0.2325791200
+UniRef50_C4L8P2: Diguanylate cyclase|unclassified	0.2325791200
+UniRef50_C6E8N4: NADH-quinone oxidoreductase subunit B	0.2325365310
+UniRef50_C6E8N4: NADH-quinone oxidoreductase subunit B|unclassified	0.2325365310
+UniRef50_UPI0003B5D592: adenylosuccinate synthetase	0.2325288281
+UniRef50_UPI0003B5D592: adenylosuccinate synthetase|unclassified	0.2325288281
+UniRef50_Q6K9D9	0.2325116517
+UniRef50_Q6K9D9|unclassified	0.2325116517
+UniRef50_UPI0003A4606E: hypothetical protein	0.2324995820
+UniRef50_UPI0003A4606E: hypothetical protein|unclassified	0.2324995820
+UniRef50_UPI000467CDB0: homocysteine methyltransferase, partial	0.2324992902
+UniRef50_UPI000467CDB0: homocysteine methyltransferase, partial|unclassified	0.2324992902
+UniRef50_Q54UH8: D-3-phosphoglycerate dehydrogenase	0.2324825575
+UniRef50_Q54UH8: D-3-phosphoglycerate dehydrogenase|unclassified	0.2324825575
+UniRef50_UPI0002195926: spermidine/putrescine ABC transporter substrate-binding protein	0.2324729598
+UniRef50_UPI0002195926: spermidine/putrescine ABC transporter substrate-binding protein|unclassified	0.2324729598
+UniRef50_F2A3T6	0.2324573283
+UniRef50_F2A3T6|unclassified	0.2324573283
+UniRef50_UPI0003749BD2: hypothetical protein	0.2324431075
+UniRef50_UPI0003749BD2: hypothetical protein|unclassified	0.2324431075
+UniRef50_A5FEC6: N-acetyl-gamma-glutamyl-phosphate reductase	0.2323837030
+UniRef50_A5FEC6: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.2323837030
+UniRef50_UPI00047867E0: CpxR	0.2323627889
+UniRef50_UPI00047867E0: CpxR|unclassified	0.2323627889
+UniRef50_U5GC63	0.2323573618
+UniRef50_U5GC63|unclassified	0.2323573618
+UniRef50_A5V3V3: Putative Holliday junction resolvase	0.2323472056
+UniRef50_A5V3V3: Putative Holliday junction resolvase|unclassified	0.2323472056
+UniRef50_UPI00031BB974: antirepressor	0.2323363034
+UniRef50_UPI00031BB974: antirepressor|unclassified	0.2323363034
+UniRef50_D6SC91	0.2323331164
+UniRef50_D6SC91|unclassified	0.2323331164
+UniRef50_UPI00047342DF: hypothetical protein, partial	0.2323317262
+UniRef50_UPI00047342DF: hypothetical protein, partial|unclassified	0.2323317262
+UniRef50_UPI0003B63F85: cold-shock protein	0.2323297168
+UniRef50_UPI0003B63F85: cold-shock protein|unclassified	0.2323297168
+UniRef50_J9F7J7	0.2323193691
+UniRef50_J9F7J7|unclassified	0.2323193691
+UniRef50_UPI0004792802: transcription antiterminator NusG	0.2323145293
+UniRef50_UPI0004792802: transcription antiterminator NusG|unclassified	0.2323145293
+UniRef50_UPI0004649C8D: hypothetical protein	0.2322989373
+UniRef50_UPI0004649C8D: hypothetical protein|unclassified	0.2322989373
+UniRef50_UPI00047B06D7: acetyltransferase	0.2322952494
+UniRef50_UPI00047B06D7: acetyltransferase|unclassified	0.2322952494
+UniRef50_G8AUG5	0.2322829421
+UniRef50_G8AUG5|unclassified	0.2322829421
+UniRef50_UPI00037CD086: hypothetical protein	0.2322687633
+UniRef50_UPI00037CD086: hypothetical protein|unclassified	0.2322687633
+UniRef50_Q72RB6: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.2322659194
+UniRef50_Q72RB6: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.2322659194
+UniRef50_C1MUT0: Ubiquinol:cytochrome c oxidoreductase 14 kDa subunit-containing protein	0.2322475651
+UniRef50_C1MUT0: Ubiquinol:cytochrome c oxidoreductase 14 kDa subunit-containing protein|unclassified	0.2322475651
+UniRef50_V9GT05	0.2322464114
+UniRef50_V9GT05|unclassified	0.2322464114
+UniRef50_Q6MC00: Ribose-5-phosphate isomerase A	0.2322435729
+UniRef50_Q6MC00: Ribose-5-phosphate isomerase A|unclassified	0.2322435729
+UniRef50_UPI0000E11B6C: Hemolysin-type calcium-binding region	0.2322316219
+UniRef50_UPI0000E11B6C: Hemolysin-type calcium-binding region|unclassified	0.2322316219
+UniRef50_UPI00035C5B7D: hypothetical protein	0.2322288829
+UniRef50_UPI00035C5B7D: hypothetical protein|unclassified	0.2322288829
+UniRef50_A0A031GP97	0.2322171139
+UniRef50_A0A031GP97|unclassified	0.2322171139
+UniRef50_D3D092	0.2322169510
+UniRef50_D3D092|unclassified	0.2322169510
+UniRef50_UPI00046F93AF: hypothetical protein, partial	0.2322144195
+UniRef50_UPI00046F93AF: hypothetical protein, partial|unclassified	0.2322144195
+UniRef50_A1BAM5	0.2321964928
+UniRef50_A1BAM5|unclassified	0.2321964928
+UniRef50_Q97KH7: Phosphoribosyl-AMP cyclohydrolase	0.2321730635
+UniRef50_Q97KH7: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.2321730635
+UniRef50_R3KL63	0.2321475492
+UniRef50_R3KL63|unclassified	0.2321475492
+UniRef50_UPI0003903E68	0.2321138817
+UniRef50_UPI0003903E68|unclassified	0.2321138817
+UniRef50_UPI00037615C6: cold-shock protein	0.2320754959
+UniRef50_UPI00037615C6: cold-shock protein|unclassified	0.2320754959
+UniRef50_UPI00046E5591: hypothetical protein	0.2320740136
+UniRef50_UPI00046E5591: hypothetical protein|unclassified	0.2320740136
+UniRef50_UPI0004730689: hypothetical protein, partial	0.2320671137
+UniRef50_UPI0004730689: hypothetical protein, partial|unclassified	0.2320671137
+UniRef50_F7YWV7: Phosphoribosylformylglycinamidine synthase, purS	0.2320341704
+UniRef50_F7YWV7: Phosphoribosylformylglycinamidine synthase, purS|unclassified	0.2320341704
+UniRef50_UPI0004753E7E: polyamine ABC transporter substrate-binding protein	0.2320245387
+UniRef50_UPI0004753E7E: polyamine ABC transporter substrate-binding protein|unclassified	0.2320245387
+UniRef50_UPI000479BA9E: membrane protein	0.2320048893
+UniRef50_UPI000479BA9E: membrane protein|unclassified	0.2320048893
+UniRef50_C0XQC7	0.2319926919
+UniRef50_C0XQC7|unclassified	0.2319926919
+UniRef50_UPI0002557CA4: integrase catalytic subunit	0.2319926786
+UniRef50_UPI0002557CA4: integrase catalytic subunit|unclassified	0.2319926786
+UniRef50_L0KG96	0.2319919941
+UniRef50_L0KG96|unclassified	0.2319919941
+UniRef50_UPI0002375EA0: binding-protein-dependent transport systems inner membrane component, partial	0.2319896916
+UniRef50_UPI0002375EA0: binding-protein-dependent transport systems inner membrane component, partial|unclassified	0.2319896916
+UniRef50_X1FAX9: Marine sediment metagenome DNA, contig: S03H2_L06168 (Fragment)	0.2319789043
+UniRef50_X1FAX9: Marine sediment metagenome DNA, contig: S03H2_L06168 (Fragment)|unclassified	0.2319789043
+UniRef50_UPI000262C9D0: hypothetical protein	0.2319755118
+UniRef50_UPI000262C9D0: hypothetical protein|unclassified	0.2319755118
+UniRef50_D2ZUU5	0.2319725921
+UniRef50_D2ZUU5|unclassified	0.2319725921
+UniRef50_K9P7P3: Prevent-host-death family protein	0.2319470462
+UniRef50_K9P7P3: Prevent-host-death family protein|unclassified	0.2319470462
+UniRef50_UPI00016AA49B: ABC transporter, ATP-binding protein, partial	0.2319451223
+UniRef50_UPI00016AA49B: ABC transporter, ATP-binding protein, partial|unclassified	0.2319451223
+UniRef50_UPI0003B7299D: clan AA aspartic protease	0.2319432382
+UniRef50_UPI0003B7299D: clan AA aspartic protease|unclassified	0.2319432382
+UniRef50_F4D9A4	0.2319393541
+UniRef50_F4D9A4|unclassified	0.2319393541
+UniRef50_J0MY41: Class II aldolase/adducin N-terminal domain protein	0.2319304640
+UniRef50_J0MY41: Class II aldolase/adducin N-terminal domain protein|unclassified	0.2319304640
+UniRef50_UPI000470045E: amino acid permease	0.2319249945
+UniRef50_UPI000470045E: amino acid permease|unclassified	0.2319249945
+UniRef50_R4RZG4: Phospholipid-binding protein	0.2319245031
+UniRef50_R4RZG4: Phospholipid-binding protein|unclassified	0.2319245031
+UniRef50_Q08NR0	0.2319181587
+UniRef50_Q08NR0|unclassified	0.2319181587
+UniRef50_UPI000472D1A3: hypothetical protein	0.2319104740
+UniRef50_UPI000472D1A3: hypothetical protein|unclassified	0.2319104740
+UniRef50_G6M910: Putative membrane protein	0.2319069399
+UniRef50_G6M910: Putative membrane protein|unclassified	0.2319069399
+UniRef50_UPI00046F0297: hypothetical protein	0.2318983712
+UniRef50_UPI00046F0297: hypothetical protein|unclassified	0.2318983712
+UniRef50_C4L274: Mannitol-1-phosphate 5-dehydrogenase	0.2318835726
+UniRef50_C4L274: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.2318835726
+UniRef50_C5X174	0.2318803736
+UniRef50_C5X174|unclassified	0.2318803736
+UniRef50_A3VDL6: Carbon monoxide dehydrogenase operon G protein	0.2318790590
+UniRef50_A3VDL6: Carbon monoxide dehydrogenase operon G protein|unclassified	0.2318790590
+UniRef50_UPI00047D7213: antitermination protein NusG	0.2318746486
+UniRef50_UPI00047D7213: antitermination protein NusG|unclassified	0.2318746486
+UniRef50_A3SUZ9: Membrane protein, putative	0.2318741792
+UniRef50_A3SUZ9: Membrane protein, putative|unclassified	0.2318741792
+UniRef50_UPI0001D2F1B0: Rrf2 family transcriptional regulator	0.2318577623
+UniRef50_UPI0001D2F1B0: Rrf2 family transcriptional regulator|unclassified	0.2318577623
+UniRef50_A3UKD8	0.2318437748
+UniRef50_A3UKD8|unclassified	0.2318437748
+UniRef50_UPI00025586BB: nicotinate-nucleotide pyrophosphorylase	0.2318299309
+UniRef50_UPI00025586BB: nicotinate-nucleotide pyrophosphorylase|unclassified	0.2318299309
+UniRef50_H4CVY0: DUTP diphosphatase	0.2318261807
+UniRef50_H4CVY0: DUTP diphosphatase|unclassified	0.2318261807
+UniRef50_A0A018RFY3	0.2318108019
+UniRef50_A0A018RFY3|unclassified	0.2318108019
+UniRef50_J3IX66	0.2318031360
+UniRef50_J3IX66|unclassified	0.2318031360
+UniRef50_UPI00037567C1: hypothetical protein	0.2317879188
+UniRef50_UPI00037567C1: hypothetical protein|unclassified	0.2317879188
+UniRef50_J3IPS9	0.2317853040
+UniRef50_J3IPS9|unclassified	0.2317853040
+UniRef50_UPI000474B8D5: ABC transporter ATP-binding protein	0.2317767218
+UniRef50_UPI000474B8D5: ABC transporter ATP-binding protein|unclassified	0.2317767218
+UniRef50_UPI000477A83F: glyoxalase/bleomycin resistance protein/dioxygenase	0.2317363229
+UniRef50_UPI000477A83F: glyoxalase/bleomycin resistance protein/dioxygenase|unclassified	0.2317363229
+UniRef50_A0A017HUQ0: Exported protein	0.2317315950
+UniRef50_A0A017HUQ0: Exported protein|unclassified	0.2317315950
+UniRef50_UPI00030BB875: hypothetical protein	0.2317290059
+UniRef50_UPI00030BB875: hypothetical protein|unclassified	0.2317290059
+UniRef50_B2UMF9: Phosphate acyltransferase	0.2317259435
+UniRef50_B2UMF9: Phosphate acyltransferase|unclassified	0.2317259435
+UniRef50_Q0FFH0: Chaperone ClpB	0.2317235143
+UniRef50_Q0FFH0: Chaperone ClpB|unclassified	0.2317235143
+UniRef50_UPI0004697686: ribonuclease BN	0.2317111744
+UniRef50_UPI0004697686: ribonuclease BN|unclassified	0.2317111744
+UniRef50_V9VZQ0	0.2316937962
+UniRef50_V9VZQ0|unclassified	0.2316937962
+UniRef50_UPI00036C1C23: hypothetical protein	0.2316903166
+UniRef50_UPI00036C1C23: hypothetical protein|unclassified	0.2316903166
+UniRef50_UPI00036278A6: hypothetical protein	0.2316877774
+UniRef50_UPI00036278A6: hypothetical protein|unclassified	0.2316877774
+UniRef50_UPI00036EDF61: hypothetical protein	0.2316876623
+UniRef50_UPI00036EDF61: hypothetical protein|unclassified	0.2316876623
+UniRef50_UPI0004129CA1: MULTISPECIES: hypothetical protein	0.2316831351
+UniRef50_UPI0004129CA1: MULTISPECIES: hypothetical protein|unclassified	0.2316831351
+UniRef50_UPI000365A2A2: hypothetical protein	0.2316611663
+UniRef50_UPI000365A2A2: hypothetical protein|unclassified	0.2316611663
+UniRef50_UPI00035CDB3B: hypothetical protein	0.2316433433
+UniRef50_UPI00035CDB3B: hypothetical protein|unclassified	0.2316433433
+UniRef50_I3UH36	0.2316418030
+UniRef50_I3UH36|unclassified	0.2316418030
+UniRef50_UPI000468F8B5: hypothetical protein	0.2316170832
+UniRef50_UPI000468F8B5: hypothetical protein|unclassified	0.2316170832
+UniRef50_C3MI66: ABC transporter sugar-binding protein	0.2316046878
+UniRef50_C3MI66: ABC transporter sugar-binding protein|unclassified	0.2316046878
+UniRef50_P65393: Cyclic pyranopterin monophosphate synthase accessory protein 3	0.2316010762
+UniRef50_P65393: Cyclic pyranopterin monophosphate synthase accessory protein 3|unclassified	0.2316010762
+UniRef50_F9V989	0.2315996970
+UniRef50_F9V989|unclassified	0.2315996970
+UniRef50_UPI0004642424: hypothetical protein, partial	0.2315913340
+UniRef50_UPI0004642424: hypothetical protein, partial|unclassified	0.2315913340
+UniRef50_UPI00025587E8: phosphohydrolase	0.2315828583
+UniRef50_UPI00025587E8: phosphohydrolase|unclassified	0.2315828583
+UniRef50_Q9ZJT0: Methionine aminopeptidase	0.2315826490
+UniRef50_Q9ZJT0: Methionine aminopeptidase|unclassified	0.2315826490
+UniRef50_P19404: NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial	0.2315675520
+UniRef50_P19404: NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial|unclassified	0.2315675520
+UniRef50_U6G1Y3	0.2315455407
+UniRef50_U6G1Y3|unclassified	0.2315455407
+UniRef50_S2J6U5	0.2315377946
+UniRef50_S2J6U5|unclassified	0.2315377946
+UniRef50_M1FFP3: Arsenate reductase	0.2315363271
+UniRef50_M1FFP3: Arsenate reductase|unclassified	0.2315363271
+UniRef50_UPI0002DA4AA1: hypothetical protein	0.2315257797
+UniRef50_UPI0002DA4AA1: hypothetical protein|unclassified	0.2315257797
+UniRef50_UPI0004777D24: phosphate-starvation-inducible E	0.2315172478
+UniRef50_UPI0004777D24: phosphate-starvation-inducible E|unclassified	0.2315172478
+UniRef50_F7FDG5	0.2315077753
+UniRef50_F7FDG5|unclassified	0.2315077753
+UniRef50_UPI0002EF3F38: hypothetical protein	0.2315002569
+UniRef50_UPI0002EF3F38: hypothetical protein|unclassified	0.2315002569
+UniRef50_UPI000372E87D: hypothetical protein	0.2314425896
+UniRef50_UPI000372E87D: hypothetical protein|unclassified	0.2314425896
+UniRef50_UPI0004575852: PREDICTED: synaptopodin	0.2314093364
+UniRef50_UPI0004575852: PREDICTED: synaptopodin|unclassified	0.2314093364
+UniRef50_UPI00037AE98E: hypothetical protein	0.2314041056
+UniRef50_UPI00037AE98E: hypothetical protein|unclassified	0.2314041056
+UniRef50_Q9CK44	0.2313764180
+UniRef50_Q9CK44|unclassified	0.2313764180
+UniRef50_J9WRR1: Transketolase, thiamine diphosphate binding domain protein	0.2313261516
+UniRef50_J9WRR1: Transketolase, thiamine diphosphate binding domain protein|unclassified	0.2313261516
+UniRef50_UPI00040D363B: hypothetical protein	0.2313142754
+UniRef50_UPI00040D363B: hypothetical protein|unclassified	0.2313142754
+UniRef50_G6A8Q8	0.2312929558
+UniRef50_G6A8Q8|unclassified	0.2312929558
+UniRef50_A8YV22: ATP-dependent 6-phosphofructokinase	0.2312830851
+UniRef50_A8YV22: ATP-dependent 6-phosphofructokinase|unclassified	0.2312830851
+UniRef50_U4PWH4	0.2312788846
+UniRef50_U4PWH4|unclassified	0.2312788846
+UniRef50_Q5WFY6: tRNA dimethylallyltransferase	0.2312347660
+UniRef50_Q5WFY6: tRNA dimethylallyltransferase|unclassified	0.2312347660
+UniRef50_UPI00036A0071: hypothetical protein	0.2312226280
+UniRef50_UPI00036A0071: hypothetical protein|unclassified	0.2312226280
+UniRef50_D9WMQ1: Linear gramicidin synthetase LgrC	0.2312146391
+UniRef50_D9WMQ1: Linear gramicidin synthetase LgrC|unclassified	0.2312146391
+UniRef50_Q6AHH7: Mannitol-1-phosphate 5-dehydrogenase	0.2311986585
+UniRef50_Q6AHH7: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.2311986585
+UniRef50_E3EZS5	0.2311976777
+UniRef50_E3EZS5|unclassified	0.2311976777
+UniRef50_T1H9P5	0.2311957389
+UniRef50_T1H9P5|unclassified	0.2311957389
+UniRef50_K8D2K6: ABC-type nitrate/sulfonate/bicarbonate transport systems, periplasmic components	0.2311712098
+UniRef50_K8D2K6: ABC-type nitrate/sulfonate/bicarbonate transport systems, periplasmic components|unclassified	0.2311712098
+UniRef50_UPI00035E723E: hypothetical protein	0.2311457216
+UniRef50_UPI00035E723E: hypothetical protein|unclassified	0.2311457216
+UniRef50_UPI0003724245: hypothetical protein	0.2311442875
+UniRef50_UPI0003724245: hypothetical protein|unclassified	0.2311442875
+UniRef50_UPI000478C052: hypothetical protein	0.2311399754
+UniRef50_UPI000478C052: hypothetical protein|unclassified	0.2311399754
+UniRef50_E0MRP0	0.2311329552
+UniRef50_E0MRP0|unclassified	0.2311329552
+UniRef50_UPI0003B37305: damage-inducible protein	0.2311072320
+UniRef50_UPI0003B37305: damage-inducible protein|unclassified	0.2311072320
+UniRef50_I1EP99	0.2310873867
+UniRef50_I1EP99|unclassified	0.2310873867
+UniRef50_W0MSX5	0.2310846016
+UniRef50_W0MSX5|unclassified	0.2310846016
+UniRef50_O32142: 5-hydroxyisourate hydrolase	0.2310836228
+UniRef50_O32142: 5-hydroxyisourate hydrolase|unclassified	0.2310836228
+UniRef50_UPI00038323B5: PREDICTED: putative ribosomal RNA methyltransferase 2-like, partial	0.2310480692
+UniRef50_UPI00038323B5: PREDICTED: putative ribosomal RNA methyltransferase 2-like, partial|unclassified	0.2310480692
+UniRef50_UPI0002ED547D: hypothetical protein	0.2310288036
+UniRef50_UPI0002ED547D: hypothetical protein|unclassified	0.2310288036
+UniRef50_UPI00016C42F5: drug resistance transporter, EmrB/QacA subfamily protein, partial	0.2310015855
+UniRef50_UPI00016C42F5: drug resistance transporter, EmrB/QacA subfamily protein, partial|unclassified	0.2310015855
+UniRef50_W7BAI1	0.2309809097
+UniRef50_W7BAI1|unclassified	0.2309809097
+UniRef50_UPI000376F8EF: hypothetical protein, partial	0.2309318083
+UniRef50_UPI000376F8EF: hypothetical protein, partial|unclassified	0.2309318083
+UniRef50_D0GN30	0.2309298825
+UniRef50_D0GN30|unclassified	0.2309298825
+UniRef50_UPI000255E8AD: membrane protein	0.2309283887
+UniRef50_UPI000255E8AD: membrane protein|unclassified	0.2309283887
+UniRef50_UPI000478570E: ABC transporter ATP-binding protein	0.2309275674
+UniRef50_UPI000478570E: ABC transporter ATP-binding protein|unclassified	0.2309275674
+UniRef50_UPI0003730BA8: hypothetical protein, partial	0.2309240351
+UniRef50_UPI0003730BA8: hypothetical protein, partial|unclassified	0.2309240351
+UniRef50_O83833: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	0.2309131580
+UniRef50_O83833: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|unclassified	0.2309131580
+UniRef50_UPI0002EFC2F2: hypothetical protein	0.2309122771
+UniRef50_UPI0002EFC2F2: hypothetical protein|unclassified	0.2309122771
+UniRef50_UPI00022CAA5E: PREDICTED: bifunctional protein FolD-like	0.2309055840
+UniRef50_UPI00022CAA5E: PREDICTED: bifunctional protein FolD-like|unclassified	0.2309055840
+UniRef50_Q7CTM5: Replication protein C	0.2308929502
+UniRef50_Q7CTM5: Replication protein C|unclassified	0.2308929502
+UniRef50_V6JH33	0.2308915101
+UniRef50_V6JH33|unclassified	0.2308915101
+UniRef50_Q4JXU5: Aminomethyltransferase	0.2308898988
+UniRef50_Q4JXU5: Aminomethyltransferase|unclassified	0.2308898988
+UniRef50_UPI00036001EA: hypothetical protein	0.2308833791
+UniRef50_UPI00036001EA: hypothetical protein|unclassified	0.2308833791
+UniRef50_J8NGR9	0.2308619675
+UniRef50_J8NGR9|unclassified	0.2308619675
+UniRef50_Y9N4T8	0.2308614553
+UniRef50_Y9N4T8|unclassified	0.2308614553
+UniRef50_B9DVN8	0.2308583974
+UniRef50_B9DVN8|unclassified	0.2308583974
+UniRef50_F9S6N0: Putative permease large protein, C4-dicarboxylate transport system (Fragment)	0.2308466171
+UniRef50_F9S6N0: Putative permease large protein, C4-dicarboxylate transport system (Fragment)|unclassified	0.2308466171
+UniRef50_E1RMJ4	0.2308402585
+UniRef50_E1RMJ4|unclassified	0.2308402585
+UniRef50_UPI0003045C75: hypothetical protein	0.2308209149
+UniRef50_UPI0003045C75: hypothetical protein|unclassified	0.2308209149
+UniRef50_UPI00036983C7: hypothetical protein	0.2308119866
+UniRef50_UPI00036983C7: hypothetical protein|unclassified	0.2308119866
+UniRef50_UPI0003789CC6: hypothetical protein	0.2308023331
+UniRef50_UPI0003789CC6: hypothetical protein|unclassified	0.2308023331
+UniRef50_UPI000469EC3C: endonuclease	0.2308018437
+UniRef50_UPI000469EC3C: endonuclease|unclassified	0.2308018437
+UniRef50_UPI00035C1C63: hypothetical protein	0.2307869836
+UniRef50_UPI00035C1C63: hypothetical protein|unclassified	0.2307869836
+UniRef50_UPI000467AAAB: hypothetical protein, partial	0.2307815869
+UniRef50_UPI000467AAAB: hypothetical protein, partial|unclassified	0.2307815869
+UniRef50_H3K9W1	0.2307809769
+UniRef50_H3K9W1|unclassified	0.2307809769
+UniRef50_Q6UCA1	0.2307804670
+UniRef50_Q6UCA1|unclassified	0.2307804670
+UniRef50_UPI0003780513: hypothetical protein	0.2307778907
+UniRef50_UPI0003780513: hypothetical protein|unclassified	0.2307778907
+UniRef50_UPI00047BAE49: SAM-dependent methyltransferase	0.2307435317
+UniRef50_UPI00047BAE49: SAM-dependent methyltransferase|unclassified	0.2307435317
+UniRef50_C5FF74: Splicing factor 3B subunit 4	0.2306885368
+UniRef50_C5FF74: Splicing factor 3B subunit 4|unclassified	0.2306885368
+UniRef50_UPI0003F49ED6: hypothetical protein TREMEDRAFT_39067	0.2306353544
+UniRef50_UPI0003F49ED6: hypothetical protein TREMEDRAFT_39067|unclassified	0.2306353544
+UniRef50_UPI00046F8ED2: hypothetical protein	0.2306222782
+UniRef50_UPI00046F8ED2: hypothetical protein|unclassified	0.2306222782
+UniRef50_N2IAD7: Response regulator	0.2306106877
+UniRef50_N2IAD7: Response regulator|unclassified	0.2306106877
+UniRef50_UPI00047246FA: spermidine synthase	0.2305828312
+UniRef50_UPI00047246FA: spermidine synthase|unclassified	0.2305828312
+UniRef50_UPI00034C3EBC: hypothetical protein	0.2305775318
+UniRef50_UPI00034C3EBC: hypothetical protein|unclassified	0.2305775318
+UniRef50_I1F566	0.2305711645
+UniRef50_I1F566|unclassified	0.2305711645
+UniRef50_P94513: Sensor protein LytS	0.2305528019
+UniRef50_P94513: Sensor protein LytS|unclassified	0.2305528019
+UniRef50_Q3JUS7	0.2305376727
+UniRef50_Q3JUS7|unclassified	0.2305376727
+UniRef50_A7HX41: DNA-directed RNA polymerase subunit omega	0.2305066055
+UniRef50_A7HX41: DNA-directed RNA polymerase subunit omega|unclassified	0.2305066055
+UniRef50_UPI0004761289: hypothetical protein	0.2304958333
+UniRef50_UPI0004761289: hypothetical protein|unclassified	0.2304958333
+UniRef50_K7SW47	0.2304671338
+UniRef50_K7SW47|unclassified	0.2304671338
+UniRef50_UPI000471985A: FMN-dependent NADH-azoreductase	0.2304544951
+UniRef50_UPI000471985A: FMN-dependent NADH-azoreductase|unclassified	0.2304544951
+UniRef50_X1FTE7: Marine sediment metagenome DNA, contig: S03H2_C02087 (Fragment)	0.2304426941
+UniRef50_X1FTE7: Marine sediment metagenome DNA, contig: S03H2_C02087 (Fragment)|unclassified	0.2304426941
+UniRef50_I8QUD2	0.2304401229
+UniRef50_I8QUD2|unclassified	0.2304401229
+UniRef50_C6XL97	0.2304387440
+UniRef50_C6XL97|unclassified	0.2304387440
+UniRef50_M7ZWJ3	0.2304258718
+UniRef50_M7ZWJ3|unclassified	0.2304258718
+UniRef50_B3CQC3: Phosphoglycerate kinase	0.2304134188
+UniRef50_B3CQC3: Phosphoglycerate kinase|unclassified	0.2304134188
+UniRef50_H2CI20	0.2304121362
+UniRef50_H2CI20|unclassified	0.2304121362
+UniRef50_UPI0003F0E20A: PREDICTED: LOW QUALITY PROTEIN: E3 ubiquitin-protein ligase MARCH6	0.2304011950
+UniRef50_UPI0003F0E20A: PREDICTED: LOW QUALITY PROTEIN: E3 ubiquitin-protein ligase MARCH6|unclassified	0.2304011950
+UniRef50_UPI00041AEF17: choloylglycine hydrolase	0.2303911503
+UniRef50_UPI00041AEF17: choloylglycine hydrolase|unclassified	0.2303911503
+UniRef50_UPI000470E44E: hypothetical protein	0.2303835044
+UniRef50_UPI000470E44E: hypothetical protein|unclassified	0.2303835044
+UniRef50_UPI0003B50E60: D-mannonate oxidoreductase	0.2303428209
+UniRef50_UPI0003B50E60: D-mannonate oxidoreductase|unclassified	0.2303428209
+UniRef50_Q4FN39	0.2303199759
+UniRef50_Q4FN39|unclassified	0.2303199759
+UniRef50_UPI000348EEAA: RNA helicase	0.2302857655
+UniRef50_UPI000348EEAA: RNA helicase|unclassified	0.2302857655
+UniRef50_UPI0003738C3A: central glycolytic genes regulator	0.2302820909
+UniRef50_UPI0003738C3A: central glycolytic genes regulator|unclassified	0.2302820909
+UniRef50_UPI00047E3262: AraC family transcriptional regulator	0.2302663012
+UniRef50_UPI00047E3262: AraC family transcriptional regulator|unclassified	0.2302663012
+UniRef50_J2F2Q2	0.2302361193
+UniRef50_J2F2Q2|unclassified	0.2302361193
+UniRef50_N6Y459: BadM/Rrf2 family transcriptional regulator	0.2302359374
+UniRef50_N6Y459: BadM/Rrf2 family transcriptional regulator|unclassified	0.2302359374
+UniRef50_UPI0004720CF2: peptide ABC transporter substrate-binding protein	0.2302215701
+UniRef50_UPI0004720CF2: peptide ABC transporter substrate-binding protein|unclassified	0.2302215701
+UniRef50_UPI0002B4347F: PREDICTED: antigen WC1.1-like	0.2302025783
+UniRef50_UPI0002B4347F: PREDICTED: antigen WC1.1-like|unclassified	0.2302025783
+UniRef50_X1KYQ6: Marine sediment metagenome DNA, contig: S03H2_S26204 (Fragment)	0.2301754963
+UniRef50_X1KYQ6: Marine sediment metagenome DNA, contig: S03H2_S26204 (Fragment)|unclassified	0.2301754963
+UniRef50_K8B5J6: Sulfate permease	0.2301579865
+UniRef50_K8B5J6: Sulfate permease|unclassified	0.2301579865
+UniRef50_C2V3U3	0.2301481008
+UniRef50_C2V3U3|unclassified	0.2301481008
+UniRef50_P59831: Ribosomal large subunit pseudouridine synthase A	0.2301182378
+UniRef50_P59831: Ribosomal large subunit pseudouridine synthase A|unclassified	0.2301182378
+UniRef50_L8B9X0	0.2301047170
+UniRef50_L8B9X0|unclassified	0.2301047170
+UniRef50_UPI0003B31F78: alkaline phosphatase	0.2300877653
+UniRef50_UPI0003B31F78: alkaline phosphatase|unclassified	0.2300877653
+UniRef50_V1ICT2	0.2300664630
+UniRef50_V1ICT2|unclassified	0.2300664630
+UniRef50_UPI0004691928: transporter	0.2300425027
+UniRef50_UPI0004691928: transporter|unclassified	0.2300425027
+UniRef50_UPI0004651C83: hypothetical protein	0.2300296203
+UniRef50_UPI0004651C83: hypothetical protein|unclassified	0.2300296203
+UniRef50_UPI0003B74E51: cystathionine beta-lyase	0.2299799408
+UniRef50_UPI0003B74E51: cystathionine beta-lyase|unclassified	0.2299799408
+UniRef50_Q49YT2	0.2299792935
+UniRef50_Q49YT2|unclassified	0.2299792935
+UniRef50_UPI00034529EA: chromate transporter	0.2299664828
+UniRef50_UPI00034529EA: chromate transporter|unclassified	0.2299664828
+UniRef50_A0B9A2: Adenylate kinase	0.2299564165
+UniRef50_A0B9A2: Adenylate kinase|unclassified	0.2299564165
+UniRef50_C0AT36: GAF domain protein	0.2299528748
+UniRef50_C0AT36: GAF domain protein|unclassified	0.2299528748
+UniRef50_UPI0003318BBF	0.2299498963
+UniRef50_UPI0003318BBF|unclassified	0.2299498963
+UniRef50_V8P8B1: Zinc finger CCCH domain-containing protein 13 (Fragment)	0.2299485054
+UniRef50_V8P8B1: Zinc finger CCCH domain-containing protein 13 (Fragment)|unclassified	0.2299485054
+UniRef50_UPI000329E5F9: PREDICTED: LOW QUALITY PROTEIN: NAD(P) transhydrogenase, mitochondrial-like	0.2298970078
+UniRef50_UPI000329E5F9: PREDICTED: LOW QUALITY PROTEIN: NAD(P) transhydrogenase, mitochondrial-like|unclassified	0.2298970078
+UniRef50_UPI000194DB50	0.2298911901
+UniRef50_UPI000194DB50|unclassified	0.2298911901
+UniRef50_J9NWS4	0.2298896126
+UniRef50_J9NWS4|unclassified	0.2298896126
+UniRef50_X6L018	0.2298816073
+UniRef50_X6L018|unclassified	0.2298816073
+UniRef50_G9L9A1: NADH dehydrogenase I chain C,D (Fragment)	0.2298647650
+UniRef50_G9L9A1: NADH dehydrogenase I chain C,D (Fragment)|unclassified	0.2298647650
+UniRef50_L2EI99: Glyoxalase/bleomycin family protein	0.2298608318
+UniRef50_L2EI99: Glyoxalase/bleomycin family protein|unclassified	0.2298608318
+UniRef50_UPI0001851F83: sugar ABC transporter permease	0.2298060232
+UniRef50_UPI0001851F83: sugar ABC transporter permease|unclassified	0.2298060232
+UniRef50_F9HL28	0.2298001515
+UniRef50_F9HL28|unclassified	0.2298001515
+UniRef50_UPI00016C41FD: Prevent-host-death protein	0.2297875223
+UniRef50_UPI00016C41FD: Prevent-host-death protein|unclassified	0.2297875223
+UniRef50_Q4ULC5	0.2297822408
+UniRef50_Q4ULC5|unclassified	0.2297822408
+UniRef50_UPI00037DE697: hypothetical protein	0.2297711719
+UniRef50_UPI00037DE697: hypothetical protein|unclassified	0.2297711719
+UniRef50_UPI0002DC87B3: hypothetical protein	0.2297369388
+UniRef50_UPI0002DC87B3: hypothetical protein|unclassified	0.2297369388
+UniRef50_Q96BW5: Phosphotriesterase-related protein	0.2297152672
+UniRef50_Q96BW5: Phosphotriesterase-related protein|unclassified	0.2297152672
+UniRef50_UPI00016B0CF6: aldehyde dehydrogenase (NAD) family protein	0.2296903378
+UniRef50_UPI00016B0CF6: aldehyde dehydrogenase (NAD) family protein|unclassified	0.2296903378
+UniRef50_UPI0003EB292D: hypothetical protein	0.2296875294
+UniRef50_UPI0003EB292D: hypothetical protein|unclassified	0.2296875294
+UniRef50_P54965: Choloylglycine hydrolase	0.2296828879
+UniRef50_P54965: Choloylglycine hydrolase|unclassified	0.2296828879
+UniRef50_H0A701	0.2296517876
+UniRef50_H0A701|unclassified	0.2296517876
+UniRef50_A0A011PMD5	0.2296228890
+UniRef50_A0A011PMD5|unclassified	0.2296228890
+UniRef50_UPI00046CE8BE: hypothetical protein	0.2295805255
+UniRef50_UPI00046CE8BE: hypothetical protein|unclassified	0.2295805255
+UniRef50_UPI0003626AEB: hypothetical protein	0.2295515915
+UniRef50_UPI0003626AEB: hypothetical protein|unclassified	0.2295515915
+UniRef50_UPI0003F0D0BE: PREDICTED: probable D-lactate dehydrogenase, mitochondrial-like	0.2295479767
+UniRef50_UPI0003F0D0BE: PREDICTED: probable D-lactate dehydrogenase, mitochondrial-like|unclassified	0.2295479767
+UniRef50_M3FRE4	0.2295150727
+UniRef50_M3FRE4|unclassified	0.2295150727
+UniRef50_I6DPM0: HlyD family secretion protein	0.2295148730
+UniRef50_I6DPM0: HlyD family secretion protein|unclassified	0.2295148730
+UniRef50_UPI00024926A7: DNA-3-methyladenine glycosylase	0.2295137850
+UniRef50_UPI00024926A7: DNA-3-methyladenine glycosylase|unclassified	0.2295137850
+UniRef50_P95485: Ankyrin (Fragment)	0.2294806854
+UniRef50_P95485: Ankyrin (Fragment)|unclassified	0.2294806854
+UniRef50_T1CKZ6: Snf2 family protein	0.2294761658
+UniRef50_T1CKZ6: Snf2 family protein|unclassified	0.2294761658
+UniRef50_F9Y8T0	0.2294647249
+UniRef50_F9Y8T0|unclassified	0.2294647249
+UniRef50_Q28UZ5: Hypoxia induced protein conserved protein	0.2294374547
+UniRef50_Q28UZ5: Hypoxia induced protein conserved protein|unclassified	0.2294374547
+UniRef50_UPI000273DF52	0.2294303458
+UniRef50_UPI000273DF52|unclassified	0.2294303458
+UniRef50_UPI0004673E4F: hypothetical protein	0.2294294996
+UniRef50_UPI0004673E4F: hypothetical protein|unclassified	0.2294294996
+UniRef50_UPI0003817364: hypothetical protein	0.2294283757
+UniRef50_UPI0003817364: hypothetical protein|unclassified	0.2294283757
+UniRef50_V1LS09	0.2294245677
+UniRef50_V1LS09|unclassified	0.2294245677
+UniRef50_F6KLL6: Transcriptional regulator SrlR (Fragment)	0.2294046271
+UniRef50_F6KLL6: Transcriptional regulator SrlR (Fragment)|unclassified	0.2294046271
+UniRef50_UPI000370AC81: hypothetical protein, partial	0.2293965250
+UniRef50_UPI000370AC81: hypothetical protein, partial|unclassified	0.2293965250
+UniRef50_UPI000467FCE1: ABC transporter ATP-binding protein	0.2293710044
+UniRef50_UPI000467FCE1: ABC transporter ATP-binding protein|unclassified	0.2293710044
+UniRef50_UPI00047BD1F1: methionine gamma-lyase	0.2293555554
+UniRef50_UPI00047BD1F1: methionine gamma-lyase|unclassified	0.2293555554
+UniRef50_X7ED03	0.2293359371
+UniRef50_X7ED03|unclassified	0.2293359371
+UniRef50_A0A017HSQ6: Transport protein	0.2293224134
+UniRef50_A0A017HSQ6: Transport protein|unclassified	0.2293224134
+UniRef50_UPI00037C6DDE: hypothetical protein	0.2293047840
+UniRef50_UPI00037C6DDE: hypothetical protein|unclassified	0.2293047840
+UniRef50_W7CVX4	0.2292964278
+UniRef50_W7CVX4|unclassified	0.2292964278
+UniRef50_A0K3Z4	0.2292941642
+UniRef50_A0K3Z4|unclassified	0.2292941642
+UniRef50_A9MJC2: Probable 4-amino-4-deoxy-L-arabinose-phosphoundecaprenol flippase subunit ArnF	0.2292882688
+UniRef50_A9MJC2: Probable 4-amino-4-deoxy-L-arabinose-phosphoundecaprenol flippase subunit ArnF|unclassified	0.2292882688
+UniRef50_UPI0004715DE1: hypothetical protein	0.2292700055
+UniRef50_UPI0004715DE1: hypothetical protein|unclassified	0.2292700055
+UniRef50_UPI00034F3B4C: PREDICTED: diamine acetyltransferase 2-like isoform X2	0.2292344453
+UniRef50_UPI00034F3B4C: PREDICTED: diamine acetyltransferase 2-like isoform X2|unclassified	0.2292344453
+UniRef50_UPI000359B6F4: PREDICTED: 3''''-5'''' exoribonuclease 1-like	0.2292299905
+UniRef50_UPI000359B6F4: PREDICTED: 3''''-5'''' exoribonuclease 1-like|unclassified	0.2292299905
+UniRef50_UPI00036B4AC5: hypothetical protein	0.2292232633
+UniRef50_UPI00036B4AC5: hypothetical protein|unclassified	0.2292232633
+UniRef50_I3THL0	0.2292162385
+UniRef50_I3THL0|unclassified	0.2292162385
+UniRef50_Q04440: Cytochrome c oxidase subunit 1	0.2291661483
+UniRef50_Q04440: Cytochrome c oxidase subunit 1|unclassified	0.2291661483
+UniRef50_UPI00025577CA: CoA-transferase	0.2291628063
+UniRef50_UPI00025577CA: CoA-transferase|unclassified	0.2291628063
+UniRef50_A7IN93: Usg family protein	0.2291543836
+UniRef50_A7IN93: Usg family protein|unclassified	0.2291543836
+UniRef50_UPI00044166F3: Metallo-dependent phosphatase	0.2291516149
+UniRef50_UPI00044166F3: Metallo-dependent phosphatase|unclassified	0.2291516149
+UniRef50_UPI00028909B3: Sua5/YciO/YrdC/YwlC family protein, partial	0.2291378985
+UniRef50_UPI00028909B3: Sua5/YciO/YrdC/YwlC family protein, partial|unclassified	0.2291378985
+UniRef50_UPI0002744EBF	0.2291239796
+UniRef50_UPI0002744EBF|unclassified	0.2291239796
+UniRef50_F3IH85	0.2291226967
+UniRef50_F3IH85|unclassified	0.2291226967
+UniRef50_UPI00047EA51E: transcriptional regulator	0.2291041833
+UniRef50_UPI00047EA51E: transcriptional regulator|unclassified	0.2291041833
+UniRef50_E0XWD7	0.2290844600
+UniRef50_E0XWD7|unclassified	0.2290844600
+UniRef50_A0A024KVN6: Integrase catalytic subunit	0.2290499671
+UniRef50_A0A024KVN6: Integrase catalytic subunit|unclassified	0.2290499671
+UniRef50_Q3IF92	0.2290416000
+UniRef50_Q3IF92|unclassified	0.2290416000
+UniRef50_E8SP15	0.2290323473
+UniRef50_E8SP15|unclassified	0.2290323473
+UniRef50_V4PX87	0.2290279726
+UniRef50_V4PX87|unclassified	0.2290279726
+UniRef50_D3V3Z5	0.2290177209
+UniRef50_D3V3Z5|unclassified	0.2290177209
+UniRef50_B8GMV0: BolA family protein	0.2290115590
+UniRef50_B8GMV0: BolA family protein|unclassified	0.2290115590
+UniRef50_Q21FV1: BolA-like protein	0.2290115590
+UniRef50_Q21FV1: BolA-like protein|unclassified	0.2290115590
+UniRef50_A0A017HPH9	0.2289914107
+UniRef50_A0A017HPH9|unclassified	0.2289914107
+UniRef50_B8EPL9: UPF0301 protein Msil_1255	0.2289893128
+UniRef50_B8EPL9: UPF0301 protein Msil_1255|unclassified	0.2289893128
+UniRef50_UPI00036174CF: hypothetical protein	0.2289868105
+UniRef50_UPI00036174CF: hypothetical protein|unclassified	0.2289868105
+UniRef50_W7SAW4: LuxR-family transcriptional regulator	0.2289864622
+UniRef50_W7SAW4: LuxR-family transcriptional regulator|unclassified	0.2289864622
+UniRef50_UPI0002EA5515: glutathione reductase	0.2289820835
+UniRef50_UPI0002EA5515: glutathione reductase|unclassified	0.2289820835
+UniRef50_UPI000395E206: N-acetyl glucosamine/N-acetyl galactosamine epimerase	0.2289769393
+UniRef50_UPI000395E206: N-acetyl glucosamine/N-acetyl galactosamine epimerase|unclassified	0.2289769393
+UniRef50_UPI0003B72344: NADPH dependend quinone reductase	0.2289549128
+UniRef50_UPI0003B72344: NADPH dependend quinone reductase|unclassified	0.2289549128
+UniRef50_UPI0004684B95: hypothetical protein	0.2289496882
+UniRef50_UPI0004684B95: hypothetical protein|unclassified	0.2289496882
+UniRef50_UPI0003B737C0: Cro/Cl family transcriptional regulator	0.2289386402
+UniRef50_UPI0003B737C0: Cro/Cl family transcriptional regulator|unclassified	0.2289386402
+UniRef50_UPI000362B9D7: hypothetical protein	0.2289195057
+UniRef50_UPI000362B9D7: hypothetical protein|unclassified	0.2289195057
+UniRef50_UPI0002D79742: hypothetical protein	0.2289097076
+UniRef50_UPI0002D79742: hypothetical protein|unclassified	0.2289097076
+UniRef50_J9NVK5	0.2288721648
+UniRef50_J9NVK5|unclassified	0.2288721648
+UniRef50_Q9MA93: Glucose and ribitol dehydrogenase homolog 2	0.2288672979
+UniRef50_Q9MA93: Glucose and ribitol dehydrogenase homolog 2|unclassified	0.2288672979
+UniRef50_UPI0003B5555F: MFS transporter	0.2288449801
+UniRef50_UPI0003B5555F: MFS transporter|unclassified	0.2288449801
+UniRef50_W0CEI9	0.2288444712
+UniRef50_W0CEI9|unclassified	0.2288444712
+UniRef50_UPI0003B4CADE: multidrug transporter	0.2288325901
+UniRef50_UPI0003B4CADE: multidrug transporter|unclassified	0.2288325901
+UniRef50_I1PAG3	0.2288266787
+UniRef50_I1PAG3|unclassified	0.2288266787
+UniRef50_Q9HLK8: Inosine-5'-monophosphate dehydrogenase	0.2288109637
+UniRef50_Q9HLK8: Inosine-5'-monophosphate dehydrogenase|unclassified	0.2288109637
+UniRef50_UPI000369A32E: MULTISPECIES: hypothetical protein	0.2288010696
+UniRef50_UPI000369A32E: MULTISPECIES: hypothetical protein|unclassified	0.2288010696
+UniRef50_W0AHR7	0.2287858524
+UniRef50_W0AHR7|unclassified	0.2287858524
+UniRef50_D0LYV0	0.2287573686
+UniRef50_D0LYV0|unclassified	0.2287573686
+UniRef50_UPI00037014EA: hypothetical protein	0.2287309230
+UniRef50_UPI00037014EA: hypothetical protein|unclassified	0.2287309230
+UniRef50_UPI000470D1FC: hypothetical protein, partial	0.2287019005
+UniRef50_UPI000470D1FC: hypothetical protein, partial|unclassified	0.2287019005
+UniRef50_UPI0003505891	0.2286984861
+UniRef50_UPI0003505891|unclassified	0.2286984861
+UniRef50_UPI0003B7B948: methyltransferase, partial	0.2286937920
+UniRef50_UPI0003B7B948: methyltransferase, partial|unclassified	0.2286937920
+UniRef50_A8FDI9: tRNA dimethylallyltransferase	0.2286852851
+UniRef50_A8FDI9: tRNA dimethylallyltransferase|unclassified	0.2286852851
+UniRef50_D9QI86	0.2286809406
+UniRef50_D9QI86|unclassified	0.2286809406
+UniRef50_UPI00004C26C7: COG2177: Cell division protein, partial	0.2286700479
+UniRef50_UPI00004C26C7: COG2177: Cell division protein, partial|unclassified	0.2286700479
+UniRef50_J2RYH1	0.2286665704
+UniRef50_J2RYH1|unclassified	0.2286665704
+UniRef50_UPI00046743AE: ATPase, partial	0.2286598870
+UniRef50_UPI00046743AE: ATPase, partial|unclassified	0.2286598870
+UniRef50_R1D6J3	0.2286534659
+UniRef50_R1D6J3|unclassified	0.2286534659
+UniRef50_T1AYZ5: Oligopeptide permease ABC transporter membrane protein (Fragment)	0.2286456148
+UniRef50_T1AYZ5: Oligopeptide permease ABC transporter membrane protein (Fragment)|unclassified	0.2286456148
+UniRef50_B9LNN2: AzlC family protein	0.2286444017
+UniRef50_B9LNN2: AzlC family protein|unclassified	0.2286444017
+UniRef50_UPI000360B53A: hypothetical protein, partial	0.2286326175
+UniRef50_UPI000360B53A: hypothetical protein, partial|unclassified	0.2286326175
+UniRef50_UPI00034A3652: hypothetical protein	0.2286108065
+UniRef50_UPI00034A3652: hypothetical protein|unclassified	0.2286108065
+UniRef50_W1MQ11	0.2286035338
+UniRef50_W1MQ11|unclassified	0.2286035338
+UniRef50_UPI0004752D4B: hypothetical protein	0.2285963258
+UniRef50_UPI0004752D4B: hypothetical protein|unclassified	0.2285963258
+UniRef50_UPI000350C2AA: PREDICTED: formin-like protein 7-like	0.2285946427
+UniRef50_UPI000350C2AA: PREDICTED: formin-like protein 7-like|unclassified	0.2285946427
+UniRef50_UPI00046359F3: hypothetical protein	0.2285902174
+UniRef50_UPI00046359F3: hypothetical protein|unclassified	0.2285902174
+UniRef50_X1LB27: Marine sediment metagenome DNA, contig: S06H3_L05238 (Fragment)	0.2285793086
+UniRef50_X1LB27: Marine sediment metagenome DNA, contig: S06H3_L05238 (Fragment)|unclassified	0.2285793086
+UniRef50_C1D428	0.2285380106
+UniRef50_C1D428|unclassified	0.2285380106
+UniRef50_UPI00038F5BA6: hypothetical protein	0.2285332011
+UniRef50_UPI00038F5BA6: hypothetical protein|unclassified	0.2285332011
+UniRef50_Q5CEG8	0.2284928218
+UniRef50_Q5CEG8|unclassified	0.2284928218
+UniRef50_U6HQY7: Spermidine synthase	0.2284840915
+UniRef50_U6HQY7: Spermidine synthase|unclassified	0.2284840915
+UniRef50_B6IN23: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.2284789114
+UniRef50_B6IN23: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.2284789114
+UniRef50_UPI00037A9F4C: hypothetical protein	0.2284736480
+UniRef50_UPI00037A9F4C: hypothetical protein|unclassified	0.2284736480
+UniRef50_F3G6H6: AsmA family protein	0.2284655734
+UniRef50_F3G6H6: AsmA family protein|unclassified	0.2284655734
+UniRef50_UPI00045E834B: hypothetical protein	0.2284600780
+UniRef50_UPI00045E834B: hypothetical protein|unclassified	0.2284600780
+UniRef50_S7QA08	0.2284588735
+UniRef50_S7QA08|unclassified	0.2284588735
+UniRef50_B8EIH1: Type VI secretion protein, VC_A0107 family	0.2284404602
+UniRef50_B8EIH1: Type VI secretion protein, VC_A0107 family|unclassified	0.2284404602
+UniRef50_I5BWU6: 3-oxoadipate enol-lactonase	0.2284345095
+UniRef50_I5BWU6: 3-oxoadipate enol-lactonase|unclassified	0.2284345095
+UniRef50_I0IPS3	0.2284340002
+UniRef50_I0IPS3|unclassified	0.2284340002
+UniRef50_UPI0004277657: aromatic amino acid aminotransferase	0.2284235223
+UniRef50_UPI0004277657: aromatic amino acid aminotransferase|unclassified	0.2284235223
+UniRef50_Q8REG7: Phosphonates import ATP-binding protein PhnC	0.2284115997
+UniRef50_Q8REG7: Phosphonates import ATP-binding protein PhnC|unclassified	0.2284115997
+UniRef50_UPI000466242D: primosome assembly protein PriA	0.2284066203
+UniRef50_UPI000466242D: primosome assembly protein PriA|unclassified	0.2284066203
+UniRef50_UPI000468F3C7: peptide ABC transporter	0.2284046823
+UniRef50_UPI000468F3C7: peptide ABC transporter|unclassified	0.2284046823
+UniRef50_W4TUT3: Transglutaminase-like enzymes	0.2283745347
+UniRef50_W4TUT3: Transglutaminase-like enzymes|unclassified	0.2283745347
+UniRef50_UPI0004120031: glycerol-3-phosphate ABC transporter substrate-binding protein	0.2283359534
+UniRef50_UPI0004120031: glycerol-3-phosphate ABC transporter substrate-binding protein|unclassified	0.2283359534
+UniRef50_T0YTV4: Metallophosphoesterase (Fragment)	0.2283351070
+UniRef50_T0YTV4: Metallophosphoesterase (Fragment)|unclassified	0.2283351070
+UniRef50_U2EKV9: Rhodanese-like protein	0.2283146132
+UniRef50_U2EKV9: Rhodanese-like protein|unclassified	0.2283146132
+UniRef50_P93313: NADH-ubiquinone oxidoreductase chain 4	0.2283103145
+UniRef50_P93313: NADH-ubiquinone oxidoreductase chain 4|unclassified	0.2283103145
+UniRef50_UPI000395C282: TetR family transcriptional regulator	0.2283053119
+UniRef50_UPI000395C282: TetR family transcriptional regulator|unclassified	0.2283053119
+UniRef50_C6WI53	0.2282844137
+UniRef50_C6WI53|unclassified	0.2282844137
+UniRef50_Q8ZTB2: S-methyl-5'-thioadenosine phosphorylase	0.2282709479
+UniRef50_Q8ZTB2: S-methyl-5'-thioadenosine phosphorylase|unclassified	0.2282709479
+UniRef50_V6JSW4	0.2282501764
+UniRef50_V6JSW4|unclassified	0.2282501764
+UniRef50_T0I6W5	0.2282440591
+UniRef50_T0I6W5|unclassified	0.2282440591
+UniRef50_Q2NRC5: Putative rhamnulose-1-phosphate aldolase	0.2282418328
+UniRef50_Q2NRC5: Putative rhamnulose-1-phosphate aldolase|unclassified	0.2282418328
+UniRef50_UPI0003EAC1C0	0.2282303021
+UniRef50_UPI0003EAC1C0|unclassified	0.2282303021
+UniRef50_A0A024TTT6	0.2282006847
+UniRef50_A0A024TTT6|unclassified	0.2282006847
+UniRef50_C5D754: Probable molybdenum cofactor guanylyltransferase	0.2281956668
+UniRef50_C5D754: Probable molybdenum cofactor guanylyltransferase|unclassified	0.2281956668
+UniRef50_J2MVR4	0.2281944819
+UniRef50_J2MVR4|unclassified	0.2281944819
+UniRef50_A0A010RI82	0.2281784554
+UniRef50_A0A010RI82|unclassified	0.2281784554
+UniRef50_B2IKX3: Cupin 2 conserved barrel domain protein	0.2281701178
+UniRef50_B2IKX3: Cupin 2 conserved barrel domain protein|unclassified	0.2281701178
+UniRef50_P81140: Glutaryl-CoA dehydrogenase, mitochondrial (Fragment)	0.2281660430
+UniRef50_P81140: Glutaryl-CoA dehydrogenase, mitochondrial (Fragment)|unclassified	0.2281660430
+UniRef50_K9ALA1	0.2281628091
+UniRef50_K9ALA1|unclassified	0.2281628091
+UniRef50_UPI00047B282C: acetyltransferase	0.2281326238
+UniRef50_UPI00047B282C: acetyltransferase|unclassified	0.2281326238
+UniRef50_UPI0003B45643: glycosyl transferase family 1	0.2281156888
+UniRef50_UPI0003B45643: glycosyl transferase family 1|unclassified	0.2281156888
+UniRef50_UPI00034D5672: ABC transporter permease	0.2281151490
+UniRef50_UPI00034D5672: ABC transporter permease|unclassified	0.2281151490
+UniRef50_UPI0004674C38: hypothetical protein	0.2280849413
+UniRef50_UPI0004674C38: hypothetical protein|unclassified	0.2280849413
+UniRef50_Q5WHI2: Shikimate dehydrogenase	0.2280809884
+UniRef50_Q5WHI2: Shikimate dehydrogenase|unclassified	0.2280809884
+UniRef50_L2GG72: Retrograde regulation protein	0.2280715550
+UniRef50_L2GG72: Retrograde regulation protein|unclassified	0.2280715550
+UniRef50_Q840M2: FusA (Fragment)	0.2280684834
+UniRef50_Q840M2: FusA (Fragment)|unclassified	0.2280684834
+UniRef50_W9TJ26	0.2280660237
+UniRef50_W9TJ26|unclassified	0.2280660237
+UniRef50_W5L8S8	0.2280640022
+UniRef50_W5L8S8|unclassified	0.2280640022
+UniRef50_UPI0003A1CE06: ligand-binding protein SH3	0.2280558045
+UniRef50_UPI0003A1CE06: ligand-binding protein SH3|unclassified	0.2280558045
+UniRef50_M5C230	0.2280467362
+UniRef50_M5C230|unclassified	0.2280467362
+UniRef50_UPI000380B058: hypothetical protein	0.2280422911
+UniRef50_UPI000380B058: hypothetical protein|unclassified	0.2280422911
+UniRef50_Q6ASN4: GMP synthase [glutamine-hydrolyzing]	0.2280304341
+UniRef50_Q6ASN4: GMP synthase [glutamine-hydrolyzing]|unclassified	0.2280304341
+UniRef50_Q6LQ38: Acylphosphatase	0.2280287249
+UniRef50_Q6LQ38: Acylphosphatase|unclassified	0.2280287249
+UniRef50_UPI0004148AB3: alpha-amylase	0.2279928193
+UniRef50_UPI0004148AB3: alpha-amylase|unclassified	0.2279928193
+UniRef50_UPI00022603F9: hypothetical protein	0.2279847078
+UniRef50_UPI00022603F9: hypothetical protein|unclassified	0.2279847078
+UniRef50_Q8L940: Pyridoxal biosynthesis protein PDX1.3	0.2279845310
+UniRef50_Q8L940: Pyridoxal biosynthesis protein PDX1.3|unclassified	0.2279845310
+UniRef50_UPI000382C3F1: hypothetical protein	0.2279780579
+UniRef50_UPI000382C3F1: hypothetical protein|unclassified	0.2279780579
+UniRef50_UPI00035C3411: hypothetical protein	0.2279443338
+UniRef50_UPI00035C3411: hypothetical protein|unclassified	0.2279443338
+UniRef50_F9KKI6	0.2279344679
+UniRef50_F9KKI6|unclassified	0.2279344679
+UniRef50_UPI00028867F7: DNA-directed RNA polymerase subunit delta	0.2279278615
+UniRef50_UPI00028867F7: DNA-directed RNA polymerase subunit delta|unclassified	0.2279278615
+UniRef50_UPI0003B51C59: ABC transporter permease	0.2279146639
+UniRef50_UPI0003B51C59: ABC transporter permease|unclassified	0.2279146639
+UniRef50_Q98M90: Putative Holliday junction resolvase	0.2279132240
+UniRef50_Q98M90: Putative Holliday junction resolvase|unclassified	0.2279132240
+UniRef50_Q8DJI6: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	0.2279107315
+UniRef50_Q8DJI6: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|unclassified	0.2279107315
+UniRef50_C7J486: Os06g0602200 protein (Fragment)	0.2279046194
+UniRef50_C7J486: Os06g0602200 protein (Fragment)|unclassified	0.2279046194
+UniRef50_V5BTM3: Ribonuclease HII	0.2278905477
+UniRef50_V5BTM3: Ribonuclease HII|unclassified	0.2278905477
+UniRef50_Q2G732	0.2278753390
+UniRef50_Q2G732|unclassified	0.2278753390
+UniRef50_Q8F4Q4: Inosine-5'-monophosphate dehydrogenase	0.2278504564
+UniRef50_Q8F4Q4: Inosine-5'-monophosphate dehydrogenase|unclassified	0.2278504564
+UniRef50_S5SFD1	0.2278297652
+UniRef50_S5SFD1|unclassified	0.2278297652
+UniRef50_N6U8P8	0.2278263978
+UniRef50_N6U8P8|unclassified	0.2278263978
+UniRef50_UPI0004693688: hypothetical protein	0.2278203786
+UniRef50_UPI0004693688: hypothetical protein|unclassified	0.2278203786
+UniRef50_K2C0A1	0.2278155276
+UniRef50_K2C0A1|unclassified	0.2278155276
+UniRef50_Q8DFM1: Adenylate kinase	0.2277736475
+UniRef50_Q8DFM1: Adenylate kinase|unclassified	0.2277736475
+UniRef50_UPI0003B69909: FAD-binding molybdopterin dehydrogenase, partial	0.2277718406
+UniRef50_UPI0003B69909: FAD-binding molybdopterin dehydrogenase, partial|unclassified	0.2277718406
+UniRef50_UPI000474B543: ABC transporter	0.2277654278
+UniRef50_UPI000474B543: ABC transporter|unclassified	0.2277654278
+UniRef50_Q92Q49: Putative zinc metalloprotease R01501	0.2277634231
+UniRef50_Q92Q49: Putative zinc metalloprotease R01501|unclassified	0.2277634231
+UniRef50_D5XB19: Redox-active disulfide protein 2	0.2277463928
+UniRef50_D5XB19: Redox-active disulfide protein 2|unclassified	0.2277463928
+UniRef50_UPI0003635F6B: hypothetical protein	0.2277374199
+UniRef50_UPI0003635F6B: hypothetical protein|unclassified	0.2277374199
+UniRef50_UPI0003658821: hypothetical protein	0.2277336973
+UniRef50_UPI0003658821: hypothetical protein|unclassified	0.2277336973
+UniRef50_X4ZP44	0.2277302242
+UniRef50_X4ZP44|unclassified	0.2277302242
+UniRef50_E2ZWH6	0.2277264293
+UniRef50_E2ZWH6|unclassified	0.2277264293
+UniRef50_UPI0004649E38: hypothetical protein	0.2277160295
+UniRef50_UPI0004649E38: hypothetical protein|unclassified	0.2277160295
+UniRef50_M4W0Q9	0.2277001786
+UniRef50_M4W0Q9|unclassified	0.2277001786
+UniRef50_UPI0003B73A19: 5,10-methylenetetrahydrofolate reductase	0.2276760701
+UniRef50_UPI0003B73A19: 5,10-methylenetetrahydrofolate reductase|unclassified	0.2276760701
+UniRef50_Q5ZXZ3: Putative Holliday junction resolvase	0.2276684337
+UniRef50_Q5ZXZ3: Putative Holliday junction resolvase|unclassified	0.2276684337
+UniRef50_UPI0003808229: hypothetical protein, partial	0.2276543579
+UniRef50_UPI0003808229: hypothetical protein, partial|unclassified	0.2276543579
+UniRef50_Q1REC9	0.2276474982
+UniRef50_Q1REC9|unclassified	0.2276474982
+UniRef50_UPI00037C5051: hypothetical protein	0.2276461580
+UniRef50_UPI00037C5051: hypothetical protein|unclassified	0.2276461580
+UniRef50_UPI00047A7246: iron ABC transporter	0.2276270806
+UniRef50_UPI00047A7246: iron ABC transporter|unclassified	0.2276270806
+UniRef50_F7X1B7	0.2276254362
+UniRef50_F7X1B7|unclassified	0.2276254362
+UniRef50_Q2NV53	0.2276241740
+UniRef50_Q2NV53|unclassified	0.2276241740
+UniRef50_J0TZ47: TRAP-type C4-dicarboxylate transport system, small permease component	0.2276225442
+UniRef50_J0TZ47: TRAP-type C4-dicarboxylate transport system, small permease component|unclassified	0.2276225442
+UniRef50_V5CJ94: Anti-sigma factor antagonist	0.2276116437
+UniRef50_V5CJ94: Anti-sigma factor antagonist|unclassified	0.2276116437
+UniRef50_UPI00046D5729: hypothetical protein	0.2276089485
+UniRef50_UPI00046D5729: hypothetical protein|unclassified	0.2276089485
+UniRef50_UPI0003B62A81: shikimate kinase	0.2276045665
+UniRef50_UPI0003B62A81: shikimate kinase|unclassified	0.2276045665
+UniRef50_UPI00036A1AEA: hypothetical protein	0.2275703761
+UniRef50_UPI00036A1AEA: hypothetical protein|unclassified	0.2275703761
+UniRef50_UPI0001851416: ABC transporter ATP-binding protein	0.2275514743
+UniRef50_UPI0001851416: ABC transporter ATP-binding protein|unclassified	0.2275514743
+UniRef50_UPI00036C1061: hypothetical protein	0.2275451811
+UniRef50_UPI00036C1061: hypothetical protein|unclassified	0.2275451811
+UniRef50_A5D673: Ribosomal RNA small subunit methyltransferase A	0.2275412064
+UniRef50_A5D673: Ribosomal RNA small subunit methyltransferase A|unclassified	0.2275412064
+UniRef50_K2HGX5	0.2275332970
+UniRef50_K2HGX5|unclassified	0.2275332970
+UniRef50_UPI000424C5B3: antibiotic biosynthesis monooxygenase	0.2275296274
+UniRef50_UPI000424C5B3: antibiotic biosynthesis monooxygenase|unclassified	0.2275296274
+UniRef50_H3Y6A9: PF04507 domain protein	0.2274835988
+UniRef50_H3Y6A9: PF04507 domain protein|unclassified	0.2274835988
+UniRef50_V2TZN6: Long-chain fatty acid transporter	0.2274786283
+UniRef50_V2TZN6: Long-chain fatty acid transporter|unclassified	0.2274786283
+UniRef50_UPI00038155D2: hypothetical protein	0.2274737301
+UniRef50_UPI00038155D2: hypothetical protein|unclassified	0.2274737301
+UniRef50_A4VZ92: Histidine--tRNA ligase	0.2274693633
+UniRef50_A4VZ92: Histidine--tRNA ligase|unclassified	0.2274693633
+UniRef50_Q1J255: Hemin import ATP-binding protein HmuV	0.2274215987
+UniRef50_Q1J255: Hemin import ATP-binding protein HmuV|unclassified	0.2274215987
+UniRef50_UPI0002628EF5: alanine dehydrogenase, partial	0.2273911507
+UniRef50_UPI0002628EF5: alanine dehydrogenase, partial|unclassified	0.2273911507
+UniRef50_UPI00037924AF: hypothetical protein	0.2273457279
+UniRef50_UPI00037924AF: hypothetical protein|unclassified	0.2273457279
+UniRef50_I4YN13	0.2272888601
+UniRef50_I4YN13|unclassified	0.2272888601
+UniRef50_Y4Z196: Serine-aspartate repeat-containing protein C (Fragment)	0.2272765652
+UniRef50_Y4Z196: Serine-aspartate repeat-containing protein C (Fragment)|unclassified	0.2272765652
+UniRef50_UPI00037FB1C9: hypothetical protein	0.2272733951
+UniRef50_UPI00037FB1C9: hypothetical protein|unclassified	0.2272733951
+UniRef50_UPI00035F6847: cold-shock protein	0.2272722874
+UniRef50_UPI00035F6847: cold-shock protein|unclassified	0.2272722874
+UniRef50_Q21J87	0.2272661423
+UniRef50_Q21J87|unclassified	0.2272661423
+UniRef50_X1IDI1: Marine sediment metagenome DNA, contig: S03H2_S21559 (Fragment)	0.2272602049
+UniRef50_X1IDI1: Marine sediment metagenome DNA, contig: S03H2_S21559 (Fragment)|unclassified	0.2272602049
+UniRef50_Q8KBQ7: Glutaredoxin family protein	0.2272435457
+UniRef50_Q8KBQ7: Glutaredoxin family protein|unclassified	0.2272435457
+UniRef50_S3MK03	0.2272427602
+UniRef50_S3MK03|unclassified	0.2272427602
+UniRef50_U4VB50	0.2272128890
+UniRef50_U4VB50|unclassified	0.2272128890
+UniRef50_V6UNP6	0.2272077188
+UniRef50_V6UNP6|unclassified	0.2272077188
+UniRef50_M4HRQ0: Radical SAM protein, TIGR01212 family	0.2272043342
+UniRef50_M4HRQ0: Radical SAM protein, TIGR01212 family|unclassified	0.2272043342
+UniRef50_F7SKJ6: TMAO/DMSO reductase (Fragment)	0.2271701535
+UniRef50_F7SKJ6: TMAO/DMSO reductase (Fragment)|unclassified	0.2271701535
+UniRef50_X1TBK0: Marine sediment metagenome DNA, contig: S12H4_L07232 (Fragment)	0.2271663232
+UniRef50_X1TBK0: Marine sediment metagenome DNA, contig: S12H4_L07232 (Fragment)|unclassified	0.2271663232
+UniRef50_UPI00038BDB14: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1 isoform X2	0.2271658997
+UniRef50_UPI00038BDB14: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1 isoform X2|unclassified	0.2271658997
+UniRef50_UPI000365DC8F: hypothetical protein	0.2271569961
+UniRef50_UPI000365DC8F: hypothetical protein|unclassified	0.2271569961
+UniRef50_Q03G75: tRNA dimethylallyltransferase	0.2271289166
+UniRef50_Q03G75: tRNA dimethylallyltransferase|unclassified	0.2271289166
+UniRef50_UPI000328FD25: PREDICTED: basic proline-rich protein-like	0.2271222400
+UniRef50_UPI000328FD25: PREDICTED: basic proline-rich protein-like|unclassified	0.2271222400
+UniRef50_V9DT73	0.2271139748
+UniRef50_V9DT73|unclassified	0.2271139748
+UniRef50_Q9Z3S3: Probable oxidoreductase OrdL	0.2270896799
+UniRef50_Q9Z3S3: Probable oxidoreductase OrdL|unclassified	0.2270896799
+UniRef50_UPI00034D6EDA: hypothetical protein	0.2270801148
+UniRef50_UPI00034D6EDA: hypothetical protein|unclassified	0.2270801148
+UniRef50_B8D9X0: Putative Holliday junction resolvase	0.2270690920
+UniRef50_B8D9X0: Putative Holliday junction resolvase|unclassified	0.2270690920
+UniRef50_Q98P43: Msr9765 protein	0.2270609885
+UniRef50_Q98P43: Msr9765 protein|unclassified	0.2270609885
+UniRef50_UPI00032AC36F: PREDICTED: probable lactoylglutathione lyase, chloroplast-like	0.2270595824
+UniRef50_UPI00032AC36F: PREDICTED: probable lactoylglutathione lyase, chloroplast-like|unclassified	0.2270595824
+UniRef50_U3TT57: Long-chain fatty acid transport protein	0.2270579563
+UniRef50_U3TT57: Long-chain fatty acid transport protein|unclassified	0.2270579563
+UniRef50_UPI0002886B91: NAD-dependent malic enzyme 1	0.2270352673
+UniRef50_UPI0002886B91: NAD-dependent malic enzyme 1|unclassified	0.2270352673
+UniRef50_Q8R7X4: Adenylate kinase	0.2270271913
+UniRef50_Q8R7X4: Adenylate kinase|unclassified	0.2270271913
+UniRef50_UPI00035D2E6B: hypothetical protein	0.2270136322
+UniRef50_UPI00035D2E6B: hypothetical protein|unclassified	0.2270136322
+UniRef50_UPI0002F7A084: hypothetical protein	0.2270023453
+UniRef50_UPI0002F7A084: hypothetical protein|unclassified	0.2270023453
+UniRef50_R6HL19: PEBP family protein	0.2269997618
+UniRef50_R6HL19: PEBP family protein|unclassified	0.2269997618
+UniRef50_D8U8Q0	0.2269903697
+UniRef50_D8U8Q0|unclassified	0.2269903697
+UniRef50_G5QVR1: AmpG permease	0.2269721440
+UniRef50_G5QVR1: AmpG permease|unclassified	0.2269721440
+UniRef50_UPI000372FC38: hypothetical protein	0.2269304767
+UniRef50_UPI000372FC38: hypothetical protein|unclassified	0.2269304767
+UniRef50_U3C3P1	0.2269229176
+UniRef50_U3C3P1|unclassified	0.2269229176
+UniRef50_S5Y412	0.2268928848
+UniRef50_S5Y412|unclassified	0.2268928848
+UniRef50_UPI00041AB9A9: hypothetical protein	0.2268706021
+UniRef50_UPI00041AB9A9: hypothetical protein|unclassified	0.2268706021
+UniRef50_UPI00039B6A58: hypothetical protein	0.2268540279
+UniRef50_UPI00039B6A58: hypothetical protein|unclassified	0.2268540279
+UniRef50_D0FNY6	0.2268389576
+UniRef50_D0FNY6|unclassified	0.2268389576
+UniRef50_X7FAR5	0.2268219339
+UniRef50_X7FAR5|unclassified	0.2268219339
+UniRef50_D8U8L9	0.2267737415
+UniRef50_D8U8L9|unclassified	0.2267737415
+UniRef50_UPI0002628F4A: hypothetical protein, partial	0.2267720840
+UniRef50_UPI0002628F4A: hypothetical protein, partial|unclassified	0.2267720840
+UniRef50_A4WVC4: MJ0042 family finger-like protein	0.2267595988
+UniRef50_A4WVC4: MJ0042 family finger-like protein|unclassified	0.2267595988
+UniRef50_UPI00036B0594: hypothetical protein	0.2267573696
+UniRef50_UPI00036B0594: hypothetical protein|unclassified	0.2267573696
+UniRef50_UPI0004669946: histidine triad (HIT) protein	0.2267336105
+UniRef50_UPI0004669946: histidine triad (HIT) protein|unclassified	0.2267336105
+UniRef50_B4L492: GI15706	0.2267273996
+UniRef50_B4L492: GI15706|unclassified	0.2267273996
+UniRef50_Q48295: Carbamate kinase	0.2267159178
+UniRef50_Q48295: Carbamate kinase|unclassified	0.2267159178
+UniRef50_UPI0000057DE0: 50S ribosomal protein L4	0.2267054299
+UniRef50_UPI0000057DE0: 50S ribosomal protein L4|unclassified	0.2267054299
+UniRef50_UPI00031299A3: putrescine/spermidine ABC transporter substrate-binding protein	0.2266740565
+UniRef50_UPI00031299A3: putrescine/spermidine ABC transporter substrate-binding protein|unclassified	0.2266740565
+UniRef50_D5AL44	0.2266708433
+UniRef50_D5AL44|unclassified	0.2266708433
+UniRef50_R7F2D3	0.2266693571
+UniRef50_R7F2D3|unclassified	0.2266693571
+UniRef50_UPI0003B69AD7: curli production assembly protein CsgG	0.2266630157
+UniRef50_UPI0003B69AD7: curli production assembly protein CsgG|unclassified	0.2266630157
+UniRef50_B8FZA5: Peptidyl-tRNA hydrolase	0.2266513184
+UniRef50_B8FZA5: Peptidyl-tRNA hydrolase|unclassified	0.2266513184
+UniRef50_A3GTK1: D-galactose-binding periplasmic protein	0.2266416253
+UniRef50_A3GTK1: D-galactose-binding periplasmic protein|unclassified	0.2266416253
+UniRef50_A1RXU2: S-methyl-5'-thioadenosine phosphorylase	0.2266347987
+UniRef50_A1RXU2: S-methyl-5'-thioadenosine phosphorylase|unclassified	0.2266347987
+UniRef50_UPI000375DE20: DNA glycosylase	0.2266244762
+UniRef50_UPI000375DE20: DNA glycosylase|unclassified	0.2266244762
+UniRef50_A4J8G6: Alanine racemase	0.2266220269
+UniRef50_A4J8G6: Alanine racemase|unclassified	0.2266220269
+UniRef50_UPI0001D5409F: PREDICTED: hypothetical protein LOC100430438	0.2266073126
+UniRef50_UPI0001D5409F: PREDICTED: hypothetical protein LOC100430438|unclassified	0.2266073126
+UniRef50_A0A023MUY1: Iron-hydroxamate transporter substrate-binding subunit	0.2265764671
+UniRef50_A0A023MUY1: Iron-hydroxamate transporter substrate-binding subunit|unclassified	0.2265764671
+UniRef50_K8E1Z0	0.2265710680
+UniRef50_K8E1Z0|unclassified	0.2265710680
+UniRef50_W4HHT2	0.2265509444
+UniRef50_W4HHT2|unclassified	0.2265509444
+UniRef50_Z5XA58	0.2265492728
+UniRef50_Z5XA58|unclassified	0.2265492728
+UniRef50_G6TW34	0.2265460257
+UniRef50_G6TW34|unclassified	0.2265460257
+UniRef50_UPI0003743C49: recombinase	0.2265441287
+UniRef50_UPI0003743C49: recombinase|unclassified	0.2265441287
+UniRef50_M7A1X1	0.2265286020
+UniRef50_M7A1X1|unclassified	0.2265286020
+UniRef50_UPI0003B3DA0B: hypothetical protein	0.2265268537
+UniRef50_UPI0003B3DA0B: hypothetical protein|unclassified	0.2265268537
+UniRef50_P25605: Acetolactate synthase small subunit, mitochondrial	0.2265210932
+UniRef50_P25605: Acetolactate synthase small subunit, mitochondrial|unclassified	0.2265210932
+UniRef50_B2IH97: Cupin 2 conserved barrel domain protein	0.2264966049
+UniRef50_B2IH97: Cupin 2 conserved barrel domain protein|unclassified	0.2264966049
+UniRef50_F8L0F7: UPF0213 protein PA3854	0.2264921372
+UniRef50_F8L0F7: UPF0213 protein PA3854|unclassified	0.2264921372
+UniRef50_X1TSS7: Marine sediment metagenome DNA, contig: S12H4_S02338 (Fragment)	0.2264880031
+UniRef50_X1TSS7: Marine sediment metagenome DNA, contig: S12H4_S02338 (Fragment)|unclassified	0.2264880031
+UniRef50_UPI00047E3024: hypothetical protein	0.2264870937
+UniRef50_UPI00047E3024: hypothetical protein|unclassified	0.2264870937
+UniRef50_K7T015	0.2264811478
+UniRef50_K7T015|unclassified	0.2264811478
+UniRef50_UPI000365DBB0: hypothetical protein	0.2264641966
+UniRef50_UPI000365DBB0: hypothetical protein|unclassified	0.2264641966
+UniRef50_UPI00046227C9: WD40 repeat-like protein	0.2264333751
+UniRef50_UPI00046227C9: WD40 repeat-like protein|unclassified	0.2264333751
+UniRef50_UPI00022603F7: hypothetical protein	0.2264088809
+UniRef50_UPI00022603F7: hypothetical protein|unclassified	0.2264088809
+UniRef50_S6AGL0: LysR family transcriptional regulator CatR	0.2264083273
+UniRef50_S6AGL0: LysR family transcriptional regulator CatR|unclassified	0.2264083273
+UniRef50_UPI0002491571: tRNA delta(2)-isopentenylpyrophosphate transferase	0.2263973050
+UniRef50_UPI0002491571: tRNA delta(2)-isopentenylpyrophosphate transferase|unclassified	0.2263973050
+UniRef50_UPI000463BC2F: hypothetical protein	0.2263713122
+UniRef50_UPI000463BC2F: hypothetical protein|unclassified	0.2263713122
+UniRef50_W7W9M4: Putative membrane protein	0.2263602106
+UniRef50_W7W9M4: Putative membrane protein|unclassified	0.2263602106
+UniRef50_UPI0003AA01E7: beta-lactamase	0.2263520750
+UniRef50_UPI0003AA01E7: beta-lactamase|unclassified	0.2263520750
+UniRef50_UPI00037D85EC: hypothetical protein, partial	0.2263513185
+UniRef50_UPI00037D85EC: hypothetical protein, partial|unclassified	0.2263513185
+UniRef50_X0SMG4: Marine sediment metagenome DNA, contig: S01H1_C00372 (Fragment)	0.2263505122
+UniRef50_X0SMG4: Marine sediment metagenome DNA, contig: S01H1_C00372 (Fragment)|unclassified	0.2263505122
+UniRef50_UPI0001B41487: ATP-dependent protease ATP-binding subunit HslU	0.2263403467
+UniRef50_UPI0001B41487: ATP-dependent protease ATP-binding subunit HslU|unclassified	0.2263403467
+UniRef50_F9Y8H3	0.2263312249
+UniRef50_F9Y8H3|unclassified	0.2263312249
+UniRef50_UPI00035DDF67: hypothetical protein	0.2263207038
+UniRef50_UPI00035DDF67: hypothetical protein|unclassified	0.2263207038
+UniRef50_UPI00024931AE: DNA primase	0.2263199584
+UniRef50_UPI00024931AE: DNA primase|unclassified	0.2263199584
+UniRef50_UPI0004073FCC: dihydroxyacetone kinase	0.2263171800
+UniRef50_UPI0004073FCC: dihydroxyacetone kinase|unclassified	0.2263171800
+UniRef50_UPI00038091A0: hypothetical protein	0.2263048248
+UniRef50_UPI00038091A0: hypothetical protein|unclassified	0.2263048248
+UniRef50_Q2YNG3: Phosphoribosylformylglycinamidine synthase 1	0.2263005278
+UniRef50_Q2YNG3: Phosphoribosylformylglycinamidine synthase 1|unclassified	0.2263005278
+UniRef50_C8N6S7: Periplasmic binding protein	0.2262988186
+UniRef50_C8N6S7: Periplasmic binding protein|unclassified	0.2262988186
+UniRef50_A8TZ26	0.2262823508
+UniRef50_A8TZ26|unclassified	0.2262823508
+UniRef50_Q6FMA3: FK506-binding protein 1	0.2262708342
+UniRef50_Q6FMA3: FK506-binding protein 1|unclassified	0.2262708342
+UniRef50_UPI000379D83B: recombinase	0.2262534517
+UniRef50_UPI000379D83B: recombinase|unclassified	0.2262534517
+UniRef50_R7CC37	0.2262489945
+UniRef50_R7CC37|unclassified	0.2262489945
+UniRef50_J5GWQ6	0.2262469931
+UniRef50_J5GWQ6|unclassified	0.2262469931
+UniRef50_J1C070	0.2262322562
+UniRef50_J1C070|unclassified	0.2262322562
+UniRef50_UPI00036CA645: hypothetical protein	0.2262069491
+UniRef50_UPI00036CA645: hypothetical protein|unclassified	0.2262069491
+UniRef50_UPI00037E1669: hypothetical protein	0.2262023659
+UniRef50_UPI00037E1669: hypothetical protein|unclassified	0.2262023659
+UniRef50_UPI00021931F3: amino acid adenylation protein	0.2261931690
+UniRef50_UPI00021931F3: amino acid adenylation protein|unclassified	0.2261931690
+UniRef50_UPI00037CFCEC: hypothetical protein	0.2261869307
+UniRef50_UPI00037CFCEC: hypothetical protein|unclassified	0.2261869307
+UniRef50_UPI000382BC00: hypothetical protein	0.2261863993
+UniRef50_UPI000382BC00: hypothetical protein|unclassified	0.2261863993
+UniRef50_UPI00045E9E9F: hypothetical protein	0.2261717684
+UniRef50_UPI00045E9E9F: hypothetical protein|unclassified	0.2261717684
+UniRef50_UPI00035ED1F7: hypothetical protein, partial	0.2261641211
+UniRef50_UPI00035ED1F7: hypothetical protein, partial|unclassified	0.2261641211
+UniRef50_H0PVX4	0.2261590540
+UniRef50_H0PVX4|unclassified	0.2261590540
+UniRef50_J2E8D8: Lipoprotein, putative	0.2261575924
+UniRef50_J2E8D8: Lipoprotein, putative|unclassified	0.2261575924
+UniRef50_K8CQ67	0.2261419005
+UniRef50_K8CQ67|unclassified	0.2261419005
+UniRef50_UPI0003612F9F: hypothetical protein	0.2261400514
+UniRef50_UPI0003612F9F: hypothetical protein|unclassified	0.2261400514
+UniRef50_UPI00036ED2FF: hypothetical protein	0.2261333990
+UniRef50_UPI00036ED2FF: hypothetical protein|unclassified	0.2261333990
+UniRef50_E0TH82	0.2261060353
+UniRef50_E0TH82|unclassified	0.2261060353
+UniRef50_Q3YWH0: IS2 ORF2	0.2261041545
+UniRef50_Q3YWH0: IS2 ORF2|unclassified	0.2261041545
+UniRef50_I6H5S8: Putative cytoplasmic protein	0.2261015900
+UniRef50_I6H5S8: Putative cytoplasmic protein|unclassified	0.2261015900
+UniRef50_E0TAY9: TrwC protein	0.2260957224
+UniRef50_E0TAY9: TrwC protein|unclassified	0.2260957224
+UniRef50_UPI000444A20C: hypothetical protein STEHIDRAFT_66446	0.2260905408
+UniRef50_UPI000444A20C: hypothetical protein STEHIDRAFT_66446|unclassified	0.2260905408
+UniRef50_W7RY07	0.2260835601
+UniRef50_W7RY07|unclassified	0.2260835601
+UniRef50_G8LNG0	0.2260760450
+UniRef50_G8LNG0|unclassified	0.2260760450
+UniRef50_UPI0001746A57: GntR family transcriptional regulator	0.2260666735
+UniRef50_UPI0001746A57: GntR family transcriptional regulator|unclassified	0.2260666735
+UniRef50_UPI00024837DC: 50S ribosomal protein L15	0.2260500316
+UniRef50_UPI00024837DC: 50S ribosomal protein L15|unclassified	0.2260500316
+UniRef50_UPI00046EEAF8: hypothetical protein	0.2260411204
+UniRef50_UPI00046EEAF8: hypothetical protein|unclassified	0.2260411204
+UniRef50_F3ZHT2: Putative integral membrane protein	0.2260260815
+UniRef50_F3ZHT2: Putative integral membrane protein|unclassified	0.2260260815
+UniRef50_A0A058XKX7	0.2259827561
+UniRef50_A0A058XKX7|unclassified	0.2259827561
+UniRef50_F5LYR0: NnrS family protein	0.2259698382
+UniRef50_F5LYR0: NnrS family protein|unclassified	0.2259698382
+UniRef50_Q2GMF3	0.2259526982
+UniRef50_Q2GMF3|unclassified	0.2259526982
+UniRef50_UPI0003795B32: hypothetical protein	0.2259471324
+UniRef50_UPI0003795B32: hypothetical protein|unclassified	0.2259471324
+UniRef50_B8R957	0.2259458652
+UniRef50_B8R957|unclassified	0.2259458652
+UniRef50_B3WXF3: Glycolate oxidase iron-sulfur subunit	0.2259389433
+UniRef50_B3WXF3: Glycolate oxidase iron-sulfur subunit|unclassified	0.2259389433
+UniRef50_UPI000475DF58: MarR family transcriptional regulator	0.2259299980
+UniRef50_UPI000475DF58: MarR family transcriptional regulator|unclassified	0.2259299980
+UniRef50_B2GB57: Sugar phosphatase	0.2259272715
+UniRef50_B2GB57: Sugar phosphatase|unclassified	0.2259272715
+UniRef50_G5J8I8: Transposase, Tn3 family	0.2259216519
+UniRef50_G5J8I8: Transposase, Tn3 family|unclassified	0.2259216519
+UniRef50_E5AVT6: Transposase	0.2259095764
+UniRef50_E5AVT6: Transposase|unclassified	0.2259095764
+UniRef50_C9WLW9: Soluble diheme cytochrome c (Fragment)	0.2258755106
+UniRef50_C9WLW9: Soluble diheme cytochrome c (Fragment)|unclassified	0.2258755106
+UniRef50_A0A058TRY0: Putative membrane protein	0.2258718136
+UniRef50_A0A058TRY0: Putative membrane protein|unclassified	0.2258718136
+UniRef50_UPI0003C7FE12: cytochrome C biogenesis protein	0.2258718064
+UniRef50_UPI0003C7FE12: cytochrome C biogenesis protein|unclassified	0.2258718064
+UniRef50_UPI00036A7F13: hypothetical protein	0.2258665320
+UniRef50_UPI00036A7F13: hypothetical protein|unclassified	0.2258665320
+UniRef50_UPI00030684FA: hypothetical protein	0.2258576954
+UniRef50_UPI00030684FA: hypothetical protein|unclassified	0.2258576954
+UniRef50_K9T3D3: TRAP-type mannitol/chloroaromatic compound transport system, small permease component	0.2258546854
+UniRef50_K9T3D3: TRAP-type mannitol/chloroaromatic compound transport system, small permease component|unclassified	0.2258546854
+UniRef50_UPI0003C179AB: PREDICTED: 30S ribosomal protein S2, chloroplastic-like	0.2258544131
+UniRef50_UPI0003C179AB: PREDICTED: 30S ribosomal protein S2, chloroplastic-like|unclassified	0.2258544131
+UniRef50_S6AH82: Prevent-host-death family protein	0.2258381890
+UniRef50_S6AH82: Prevent-host-death family protein|unclassified	0.2258381890
+UniRef50_V1I307	0.2258274246
+UniRef50_V1I307|unclassified	0.2258274246
+UniRef50_UPI0003B70587: hypothetical protein	0.2258036625
+UniRef50_UPI0003B70587: hypothetical protein|unclassified	0.2258036625
+UniRef50_UPI00036647C3: hypothetical protein	0.2257812382
+UniRef50_UPI00036647C3: hypothetical protein|unclassified	0.2257812382
+UniRef50_A7MY01: Ribonuclease HII	0.2257721717
+UniRef50_A7MY01: Ribonuclease HII|unclassified	0.2257721717
+UniRef50_D3P5X8: SEC-C motif domain protein	0.2257602269
+UniRef50_D3P5X8: SEC-C motif domain protein|unclassified	0.2257602269
+UniRef50_UPI00036055AD: GTP cyclohydrolase I	0.2257535055
+UniRef50_UPI00036055AD: GTP cyclohydrolase I|unclassified	0.2257535055
+UniRef50_Q8RG83: Orotidine 5'-phosphate decarboxylase	0.2257489927
+UniRef50_Q8RG83: Orotidine 5'-phosphate decarboxylase|unclassified	0.2257489927
+UniRef50_Q8ZGW2: Molybdopterin synthase catalytic subunit	0.2257290999
+UniRef50_Q8ZGW2: Molybdopterin synthase catalytic subunit|unclassified	0.2257290999
+UniRef50_D0CUU0	0.2257215140
+UniRef50_D0CUU0|unclassified	0.2257215140
+UniRef50_K7F0F7	0.2257081350
+UniRef50_K7F0F7|unclassified	0.2257081350
+UniRef50_C7QKF9: YCII-related protein	0.2257040262
+UniRef50_C7QKF9: YCII-related protein|unclassified	0.2257040262
+UniRef50_A0A017HRH2	0.2257039419
+UniRef50_A0A017HRH2|unclassified	0.2257039419
+UniRef50_R5ET21: TM2 domain containing protein	0.2256843452
+UniRef50_R5ET21: TM2 domain containing protein|unclassified	0.2256843452
+UniRef50_Q4FQI2: Shikimate kinase	0.2256545887
+UniRef50_Q4FQI2: Shikimate kinase|unclassified	0.2256545887
+UniRef50_UPI00037675A5: hypothetical protein	0.2256474922
+UniRef50_UPI00037675A5: hypothetical protein|unclassified	0.2256474922
+UniRef50_UPI0004207E45: hypothetical protein	0.2256205966
+UniRef50_UPI0004207E45: hypothetical protein|unclassified	0.2256205966
+UniRef50_UPI00047151A0: hypothetical protein	0.2256142372
+UniRef50_UPI00047151A0: hypothetical protein|unclassified	0.2256142372
+UniRef50_UPI0003672FFD: hypothetical protein, partial	0.2256115540
+UniRef50_UPI0003672FFD: hypothetical protein, partial|unclassified	0.2256115540
+UniRef50_N9BDB1	0.2255974935
+UniRef50_N9BDB1|unclassified	0.2255974935
+UniRef50_U1AJR5	0.2255886155
+UniRef50_U1AJR5|unclassified	0.2255886155
+UniRef50_UPI00042C50B5: PREDICTED: 39S ribosomal protein L11, mitochondrial isoform X2	0.2255806894
+UniRef50_UPI00042C50B5: PREDICTED: 39S ribosomal protein L11, mitochondrial isoform X2|unclassified	0.2255806894
+UniRef50_B0T191: Putative Holliday junction resolvase	0.2255684174
+UniRef50_B0T191: Putative Holliday junction resolvase|unclassified	0.2255684174
+UniRef50_V4PXF5	0.2255555771
+UniRef50_V4PXF5|unclassified	0.2255555771
+UniRef50_S9QSJ6: Flagellar basal-body rod protein FlgF	0.2255547593
+UniRef50_S9QSJ6: Flagellar basal-body rod protein FlgF|unclassified	0.2255547593
+UniRef50_Q814N9: Octanoyl-[GcvH]:protein N-octanoyltransferase	0.2255532255
+UniRef50_Q814N9: Octanoyl-[GcvH]:protein N-octanoyltransferase|unclassified	0.2255532255
+UniRef50_X1NF36: Marine sediment metagenome DNA, contig: S06H3_C05729 (Fragment)	0.2255510044
+UniRef50_X1NF36: Marine sediment metagenome DNA, contig: S06H3_C05729 (Fragment)|unclassified	0.2255510044
+UniRef50_Q5E480: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase	0.2255444987
+UniRef50_Q5E480: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase|unclassified	0.2255444987
+UniRef50_D0WC80	0.2255324954
+UniRef50_D0WC80|unclassified	0.2255324954
+UniRef50_UPI00036C1ABA: DNA invertase	0.2254916004
+UniRef50_UPI00036C1ABA: DNA invertase|unclassified	0.2254916004
+UniRef50_S9R1C4: Enoyl-[acyl-carrier-protein] reductase (NADH)	0.2254849636
+UniRef50_S9R1C4: Enoyl-[acyl-carrier-protein] reductase (NADH)|unclassified	0.2254849636
+UniRef50_L4JFV3	0.2254755919
+UniRef50_L4JFV3|unclassified	0.2254755919
+UniRef50_UPI000350586A: PREDICTED: translation initiation factor IF-2-like	0.2254684704
+UniRef50_UPI000350586A: PREDICTED: translation initiation factor IF-2-like|unclassified	0.2254684704
+UniRef50_Q5Z778	0.2254624265
+UniRef50_Q5Z778|unclassified	0.2254624265
+UniRef50_D3NRR4	0.2254619061
+UniRef50_D3NRR4|unclassified	0.2254619061
+UniRef50_UPI00046669B1: hypothetical protein	0.2254593253
+UniRef50_UPI00046669B1: hypothetical protein|unclassified	0.2254593253
+UniRef50_V9WQF9	0.2254447475
+UniRef50_V9WQF9|unclassified	0.2254447475
+UniRef50_UPI00035C1945: hypothetical protein, partial	0.2254392069
+UniRef50_UPI00035C1945: hypothetical protein, partial|unclassified	0.2254392069
+UniRef50_UPI000312A54C: hypothetical protein	0.2254116097
+UniRef50_UPI000312A54C: hypothetical protein|unclassified	0.2254116097
+UniRef50_A5EXY9: Phosphopantetheine adenylyltransferase	0.2253845191
+UniRef50_A5EXY9: Phosphopantetheine adenylyltransferase|unclassified	0.2253845191
+UniRef50_W7RWX9: ArsC family protein	0.2253652361
+UniRef50_W7RWX9: ArsC family protein|unclassified	0.2253652361
+UniRef50_UPI0003B6F5B8: aspartate aminotransferase	0.2253604785
+UniRef50_UPI0003B6F5B8: aspartate aminotransferase|unclassified	0.2253604785
+UniRef50_UPI00037A97AD: hypothetical protein	0.2253443184
+UniRef50_UPI00037A97AD: hypothetical protein|unclassified	0.2253443184
+UniRef50_W8VCQ0	0.2253426469
+UniRef50_W8VCQ0|unclassified	0.2253426469
+UniRef50_UPI000237A558: molecular chaperone DnaK	0.2253292282
+UniRef50_UPI000237A558: molecular chaperone DnaK|unclassified	0.2253292282
+UniRef50_A8LGN1: Thioesterase superfamily protein	0.2253146048
+UniRef50_A8LGN1: Thioesterase superfamily protein|unclassified	0.2253146048
+UniRef50_UPI000360D05B: hypothetical protein	0.2253127260
+UniRef50_UPI000360D05B: hypothetical protein|unclassified	0.2253127260
+UniRef50_Q4ZNP2: Protein RnfH	0.2252601815
+UniRef50_Q4ZNP2: Protein RnfH|unclassified	0.2252601815
+UniRef50_W9VRQ0	0.2252570329
+UniRef50_W9VRQ0|unclassified	0.2252570329
+UniRef50_UPI0004761F50: iron ABC transporter ATP-binding protein	0.2252462477
+UniRef50_UPI0004761F50: iron ABC transporter ATP-binding protein|unclassified	0.2252462477
+UniRef50_UPI00037871A9: hypothetical protein	0.2252320165
+UniRef50_UPI00037871A9: hypothetical protein|unclassified	0.2252320165
+UniRef50_UPI00044077DF: carboxymuconolactone decarboxylase	0.2252302236
+UniRef50_UPI00044077DF: carboxymuconolactone decarboxylase|unclassified	0.2252302236
+UniRef50_UPI0003650983: hypothetical protein	0.2252219328
+UniRef50_UPI0003650983: hypothetical protein|unclassified	0.2252219328
+UniRef50_S9S8N1	0.2251831205
+UniRef50_S9S8N1|unclassified	0.2251831205
+UniRef50_U1BHJ6	0.2251797349
+UniRef50_U1BHJ6|unclassified	0.2251797349
+UniRef50_R5QQN1	0.2251698894
+UniRef50_R5QQN1|unclassified	0.2251698894
+UniRef50_UPI000379DC26: hypothetical protein	0.2251535094
+UniRef50_UPI000379DC26: hypothetical protein|unclassified	0.2251535094
+UniRef50_W1JU31	0.2251448741
+UniRef50_W1JU31|unclassified	0.2251448741
+UniRef50_H5WJP2: TRAP-type mannitol/chloroaromatic compound transport system, small permease component	0.2251385867
+UniRef50_H5WJP2: TRAP-type mannitol/chloroaromatic compound transport system, small permease component|unclassified	0.2251385867
+UniRef50_Q8TLL3: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	0.2251356387
+UniRef50_Q8TLL3: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|unclassified	0.2251356387
+UniRef50_UPI0003B41E95: beta-hexosaminidase	0.2251189060
+UniRef50_UPI0003B41E95: beta-hexosaminidase|unclassified	0.2251189060
+UniRef50_D0D5K2	0.2251186527
+UniRef50_D0D5K2|unclassified	0.2251186527
+UniRef50_UPI000368AEFC: hypothetical protein	0.2250989484
+UniRef50_UPI000368AEFC: hypothetical protein|unclassified	0.2250989484
+UniRef50_UPI0003B686D0: PREDICTED: 39S ribosomal protein L36, mitochondrial-like	0.2250914460
+UniRef50_UPI0003B686D0: PREDICTED: 39S ribosomal protein L36, mitochondrial-like|unclassified	0.2250914460
+UniRef50_UPI0004243274: hypothetical protein	0.2250817374
+UniRef50_UPI0004243274: hypothetical protein|unclassified	0.2250817374
+UniRef50_S9TY00: Heat shock protein 60, mitochondrial	0.2250663977
+UniRef50_S9TY00: Heat shock protein 60, mitochondrial|unclassified	0.2250663977
+UniRef50_X7FCK3: UPF0434 protein RISW2_12650	0.2250634748
+UniRef50_X7FCK3: UPF0434 protein RISW2_12650|unclassified	0.2250634748
+UniRef50_UPI00021965CD: 3-keto-L-gulonate-6-phosphate decarboxylase	0.2250366264
+UniRef50_UPI00021965CD: 3-keto-L-gulonate-6-phosphate decarboxylase|unclassified	0.2250366264
+UniRef50_UPI00034486CC	0.2250264671
+UniRef50_UPI00034486CC|unclassified	0.2250264671
+UniRef50_I9UVC5	0.2250204501
+UniRef50_I9UVC5|unclassified	0.2250204501
+UniRef50_L4PDD8	0.2250156784
+UniRef50_L4PDD8|unclassified	0.2250156784
+UniRef50_UPI0003697D46: hypothetical protein	0.2250115352
+UniRef50_UPI0003697D46: hypothetical protein|unclassified	0.2250115352
+UniRef50_UPI0003786FDC: MULTISPECIES: hypothetical protein	0.2250077628
+UniRef50_UPI0003786FDC: MULTISPECIES: hypothetical protein|unclassified	0.2250077628
+UniRef50_UPI00037E8593: hypothetical protein	0.2250037344
+UniRef50_UPI00037E8593: hypothetical protein|unclassified	0.2250037344
+UniRef50_UPI0004043C62: acetyltransferase	0.2249942805
+UniRef50_UPI0004043C62: acetyltransferase|unclassified	0.2249942805
+UniRef50_UPI000478B829: NADH-ubiquinone oxidoreductase subunit 4L	0.2249862172
+UniRef50_UPI000478B829: NADH-ubiquinone oxidoreductase subunit 4L|unclassified	0.2249862172
+UniRef50_G2UGP7: Putative membrane protein	0.2249733549
+UniRef50_G2UGP7: Putative membrane protein|unclassified	0.2249733549
+UniRef50_Q9RWI1	0.2249718785
+UniRef50_Q9RWI1|g__Deinococcus.s__Deinococcus_radiodurans	0.2249718785
+UniRef50_D7DK39	0.2249601193
+UniRef50_D7DK39|unclassified	0.2249601193
+UniRef50_Q1QZT6: Tripartite ATP-independent periplasmic transporter, DctQ component	0.2249572168
+UniRef50_Q1QZT6: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	0.2249572168
+UniRef50_W9BCF0: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	0.2249531138
+UniRef50_W9BCF0: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome|unclassified	0.2249531138
+UniRef50_W4U5J7: Hypothetical radical SAM family enzyme	0.2249513279
+UniRef50_W4U5J7: Hypothetical radical SAM family enzyme|unclassified	0.2249513279
+UniRef50_U6KAI1	0.2249489507
+UniRef50_U6KAI1|unclassified	0.2249489507
+UniRef50_UPI00034C8E0B: oxidoreductase	0.2249407723
+UniRef50_UPI00034C8E0B: oxidoreductase|unclassified	0.2249407723
+UniRef50_Q98MC1: Putative zinc metalloprotease mll0638	0.2249358301
+UniRef50_Q98MC1: Putative zinc metalloprotease mll0638|unclassified	0.2249358301
+UniRef50_H0JIX4	0.2249296519
+UniRef50_H0JIX4|unclassified	0.2249296519
+UniRef50_Q88ND5: Alginate biosynthesis protein AlgA	0.2248984063
+UniRef50_Q88ND5: Alginate biosynthesis protein AlgA|unclassified	0.2248984063
+UniRef50_T1AKA8: Membrane protein containing DUF979 (Fragment)	0.2248967476
+UniRef50_T1AKA8: Membrane protein containing DUF979 (Fragment)|unclassified	0.2248967476
+UniRef50_F5LPY1: PspA/IM30 family protein	0.2248938498
+UniRef50_F5LPY1: PspA/IM30 family protein|unclassified	0.2248938498
+UniRef50_B8HSV8: Anti-sigma-factor antagonist	0.2248776082
+UniRef50_B8HSV8: Anti-sigma-factor antagonist|unclassified	0.2248776082
+UniRef50_UPI00047E3C0E: hypothetical protein	0.2248439800
+UniRef50_UPI00047E3C0E: hypothetical protein|unclassified	0.2248439800
+UniRef50_UPI000477AE3E: hypothetical protein	0.2248388868
+UniRef50_UPI000477AE3E: hypothetical protein|unclassified	0.2248388868
+UniRef50_K1TA65: Secreted protein containing DUF454 (Fragment)	0.2248248686
+UniRef50_K1TA65: Secreted protein containing DUF454 (Fragment)|unclassified	0.2248248686
+UniRef50_UPI0003507592: PREDICTED: translation initiation factor IF-2-like	0.2248221843
+UniRef50_UPI0003507592: PREDICTED: translation initiation factor IF-2-like|unclassified	0.2248221843
+UniRef50_UPI000363A369: orotate phosphoribosyltransferase	0.2248104878
+UniRef50_UPI000363A369: orotate phosphoribosyltransferase|unclassified	0.2248104878
+UniRef50_UPI0003F4907A: hypothetical protein TREMEDRAFT_60098	0.2247973144
+UniRef50_UPI0003F4907A: hypothetical protein TREMEDRAFT_60098|unclassified	0.2247973144
+UniRef50_B1L5U5: Inosine-5'-monophosphate dehydrogenase	0.2247928918
+UniRef50_B1L5U5: Inosine-5'-monophosphate dehydrogenase|unclassified	0.2247928918
+UniRef50_Q5FQ98: Ribose-5-phosphate isomerase A	0.2247899665
+UniRef50_Q5FQ98: Ribose-5-phosphate isomerase A|unclassified	0.2247899665
+UniRef50_U6GMW1	0.2247850027
+UniRef50_U6GMW1|unclassified	0.2247850027
+UniRef50_Z4WLK7	0.2247700600
+UniRef50_Z4WLK7|unclassified	0.2247700600
+UniRef50_W9T208: AsmA family protein	0.2247669472
+UniRef50_W9T208: AsmA family protein|unclassified	0.2247669472
+UniRef50_UPI000479D5C7: ribosome-binding factor A	0.2247595701
+UniRef50_UPI000479D5C7: ribosome-binding factor A|unclassified	0.2247595701
+UniRef50_C3G6E1	0.2247530608
+UniRef50_C3G6E1|unclassified	0.2247530608
+UniRef50_A8LKW3	0.2247406903
+UniRef50_A8LKW3|unclassified	0.2247406903
+UniRef50_A7MQ05	0.2247353289
+UniRef50_A7MQ05|unclassified	0.2247353289
+UniRef50_UPI000477CD58: deaminase/reductase	0.2247083964
+UniRef50_UPI000477CD58: deaminase/reductase|unclassified	0.2247083964
+UniRef50_I9PT12	0.2246814376
+UniRef50_I9PT12|unclassified	0.2246814376
+UniRef50_M7YZS7	0.2246718854
+UniRef50_M7YZS7|unclassified	0.2246718854
+UniRef50_W7VQ87: Phytoene dehydrogenase (Fragment)	0.2246694169
+UniRef50_W7VQ87: Phytoene dehydrogenase (Fragment)|unclassified	0.2246694169
+UniRef50_A0LXJ9: Phosphoenolpyruvate carboxykinase [ATP]	0.2246557842
+UniRef50_A0LXJ9: Phosphoenolpyruvate carboxykinase [ATP]|unclassified	0.2246557842
+UniRef50_M7WTQ1: GDP/GTP exchange factor Sec2p	0.2246537471
+UniRef50_M7WTQ1: GDP/GTP exchange factor Sec2p|unclassified	0.2246537471
+UniRef50_B1J743: Ankyrin	0.2246359967
+UniRef50_B1J743: Ankyrin|unclassified	0.2246359967
+UniRef50_G0FQZ0	0.2246245865
+UniRef50_G0FQZ0|unclassified	0.2246245865
+UniRef50_D6CRU4	0.2246146394
+UniRef50_D6CRU4|unclassified	0.2246146394
+UniRef50_UPI00035F63ED: hypothetical protein	0.2246008631
+UniRef50_UPI00035F63ED: hypothetical protein|unclassified	0.2246008631
+UniRef50_D6SKT8: SAF domain protein	0.2245973576
+UniRef50_D6SKT8: SAF domain protein|unclassified	0.2245973576
+UniRef50_A5UR89: Rhodanese domain protein	0.2245834562
+UniRef50_A5UR89: Rhodanese domain protein|unclassified	0.2245834562
+UniRef50_UPI0003FDEE66: hypothetical protein	0.2245736330
+UniRef50_UPI0003FDEE66: hypothetical protein|unclassified	0.2245736330
+UniRef50_U9D253	0.2245695811
+UniRef50_U9D253|unclassified	0.2245695811
+UniRef50_K0UY27	0.2245534656
+UniRef50_K0UY27|unclassified	0.2245534656
+UniRef50_Q5ZEA4	0.2245494807
+UniRef50_Q5ZEA4|unclassified	0.2245494807
+UniRef50_UPI000440CB2B: PREDICTED: protein FAM208A-like	0.2245491097
+UniRef50_UPI000440CB2B: PREDICTED: protein FAM208A-like|unclassified	0.2245491097
+UniRef50_Q0ID97: Putative 3-methyladenine DNA glycosylase	0.2245447314
+UniRef50_Q0ID97: Putative 3-methyladenine DNA glycosylase|unclassified	0.2245447314
+UniRef50_UPI00035D2EF1: hypothetical protein	0.2245409091
+UniRef50_UPI00035D2EF1: hypothetical protein|unclassified	0.2245409091
+UniRef50_UPI000363666A: DHA1 family MFS transporter, partial	0.2245329431
+UniRef50_UPI000363666A: DHA1 family MFS transporter, partial|unclassified	0.2245329431
+UniRef50_UPI0002E03285: DNA invertase	0.2245133372
+UniRef50_UPI0002E03285: DNA invertase|unclassified	0.2245133372
+UniRef50_UPI0002F03396: diguanylate cyclase	0.2245084138
+UniRef50_UPI0002F03396: diguanylate cyclase|unclassified	0.2245084138
+UniRef50_Q2CIE7	0.2245059114
+UniRef50_Q2CIE7|unclassified	0.2245059114
+UniRef50_Q4P488	0.2244924161
+UniRef50_Q4P488|unclassified	0.2244924161
+UniRef50_D5DZK8: Glyoxalase family domain protein	0.2244812992
+UniRef50_D5DZK8: Glyoxalase family domain protein|unclassified	0.2244812992
+UniRef50_H5CG21: CPS-53 (KpLE1) prophage deoxyribonucleoside 5'-monophosphate phosphatase	0.2244784518
+UniRef50_H5CG21: CPS-53 (KpLE1) prophage deoxyribonucleoside 5'-monophosphate phosphatase|unclassified	0.2244784518
+UniRef50_UPI0003B61754: transporter	0.2244699382
+UniRef50_UPI0003B61754: transporter|unclassified	0.2244699382
+UniRef50_T2HEI5	0.2244641473
+UniRef50_T2HEI5|unclassified	0.2244641473
+UniRef50_D7ADE0: Cupin superfamily barrel domain protein	0.2244598064
+UniRef50_D7ADE0: Cupin superfamily barrel domain protein|unclassified	0.2244598064
+UniRef50_UPI0002E264F5: hypothetical protein	0.2244177898
+UniRef50_UPI0002E264F5: hypothetical protein|unclassified	0.2244177898
+UniRef50_G9ZIR7	0.2243738719
+UniRef50_G9ZIR7|unclassified	0.2243738719
+UniRef50_U5UKT2: Phosphatase/phosphohexomutase	0.2243644708
+UniRef50_U5UKT2: Phosphatase/phosphohexomutase|unclassified	0.2243644708
+UniRef50_W0HAR3: Lipoprotein, putative	0.2243289280
+UniRef50_W0HAR3: Lipoprotein, putative|unclassified	0.2243289280
+UniRef50_UPI000471E9CE: hypothetical protein	0.2242699338
+UniRef50_UPI000471E9CE: hypothetical protein|unclassified	0.2242699338
+UniRef50_G6EUL7	0.2242662704
+UniRef50_G6EUL7|unclassified	0.2242662704
+UniRef50_UPI0002E1B7CA: hypothetical protein	0.2242205899
+UniRef50_UPI0002E1B7CA: hypothetical protein|unclassified	0.2242205899
+UniRef50_B9TGH1	0.2242202343
+UniRef50_B9TGH1|unclassified	0.2242202343
+UniRef50_UPI0004629E28: hypothetical protein	0.2242035336
+UniRef50_UPI0004629E28: hypothetical protein|unclassified	0.2242035336
+UniRef50_R5NJH3: NLPA lipoprotein	0.2242007216
+UniRef50_R5NJH3: NLPA lipoprotein|unclassified	0.2242007216
+UniRef50_Q6NAT0: Holliday junction ATP-dependent DNA helicase RuvA	0.2241988683
+UniRef50_Q6NAT0: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.2241988683
+UniRef50_G4LBC3	0.2241940176
+UniRef50_G4LBC3|unclassified	0.2241940176
+UniRef50_V4ASQ8	0.2241203895
+UniRef50_V4ASQ8|unclassified	0.2241203895
+UniRef50_S5LY50	0.2241177795
+UniRef50_S5LY50|unclassified	0.2241177795
+UniRef50_UPI00037C4CDF: hypothetical protein	0.2240659040
+UniRef50_UPI00037C4CDF: hypothetical protein|unclassified	0.2240659040
+UniRef50_UPI000299DC4D: LuxR family transcriptional regulator, partial	0.2240632422
+UniRef50_UPI000299DC4D: LuxR family transcriptional regulator, partial|unclassified	0.2240632422
+UniRef50_R4LTT1	0.2240571664
+UniRef50_R4LTT1|unclassified	0.2240571664
+UniRef50_C7BSE0	0.2240518442
+UniRef50_C7BSE0|unclassified	0.2240518442
+UniRef50_B9J906	0.2240452924
+UniRef50_B9J906|unclassified	0.2240452924
+UniRef50_UPI00042CB237: PREDICTED: serine/arginine repetitive matrix protein 1-like	0.2240411001
+UniRef50_UPI00042CB237: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	0.2240411001
+UniRef50_C3AS77: ABC transporter, permease	0.2240149863
+UniRef50_C3AS77: ABC transporter, permease|unclassified	0.2240149863
+UniRef50_D3QDP6	0.2240021287
+UniRef50_D3QDP6|unclassified	0.2240021287
+UniRef50_H6SJ63: TPR repeat	0.2239921340
+UniRef50_H6SJ63: TPR repeat|unclassified	0.2239921340
+UniRef50_Q7X1N2: Lfe103p1 (Fragment)	0.2239608373
+UniRef50_Q7X1N2: Lfe103p1 (Fragment)|unclassified	0.2239608373
+UniRef50_UPI00047439EC: excinuclease ABC subunit B, partial	0.2238995144
+UniRef50_UPI00047439EC: excinuclease ABC subunit B, partial|unclassified	0.2238995144
+UniRef50_Q1GID4: Extracellular solute-binding protein family 1	0.2238825045
+UniRef50_Q1GID4: Extracellular solute-binding protein family 1|unclassified	0.2238825045
+UniRef50_Q92947: Glutaryl-CoA dehydrogenase, mitochondrial	0.2238578952
+UniRef50_Q92947: Glutaryl-CoA dehydrogenase, mitochondrial|unclassified	0.2238578952
+UniRef50_UPI0002EB6262: hypothetical protein	0.2238192064
+UniRef50_UPI0002EB6262: hypothetical protein|unclassified	0.2238192064
+UniRef50_UPI00047D4694: hypothetical protein	0.2237977923
+UniRef50_UPI00047D4694: hypothetical protein|unclassified	0.2237977923
+UniRef50_UPI0001D54991: PREDICTED: hypothetical protein LOC100430077	0.2237931246
+UniRef50_UPI0001D54991: PREDICTED: hypothetical protein LOC100430077|unclassified	0.2237931246
+UniRef50_UPI0001FFF2CD: ABC transporter-like protein, partial	0.2237895283
+UniRef50_UPI0001FFF2CD: ABC transporter-like protein, partial|unclassified	0.2237895283
+UniRef50_F2J139	0.2237889581
+UniRef50_F2J139|unclassified	0.2237889581
+UniRef50_UPI00045EB40F: histidine kinase	0.2237681007
+UniRef50_UPI00045EB40F: histidine kinase|unclassified	0.2237681007
+UniRef50_UPI0002DDECE5: hypothetical protein	0.2237578940
+UniRef50_UPI0002DDECE5: hypothetical protein|unclassified	0.2237578940
+UniRef50_UPI0002628E32: peptide chain release factor 3, partial	0.2237554410
+UniRef50_UPI0002628E32: peptide chain release factor 3, partial|unclassified	0.2237554410
+UniRef50_UPI00036BC580: hypothetical protein, partial	0.2237148006
+UniRef50_UPI00036BC580: hypothetical protein, partial|unclassified	0.2237148006
+UniRef50_UPI0003B58C59: ABC transporter ATP-binding protein	0.2237123987
+UniRef50_UPI0003B58C59: ABC transporter ATP-binding protein|unclassified	0.2237123987
+UniRef50_UPI000349BBCB: transcription factor WhiB	0.2237092751
+UniRef50_UPI000349BBCB: transcription factor WhiB|unclassified	0.2237092751
+UniRef50_C4LEY6: Beta-hexosaminidase	0.2237063765
+UniRef50_C4LEY6: Beta-hexosaminidase|unclassified	0.2237063765
+UniRef50_UPI00036C900D: hypothetical protein	0.2236981582
+UniRef50_UPI00036C900D: hypothetical protein|unclassified	0.2236981582
+UniRef50_B2IU46: Phosphoribosylformylglycinamidine synthase 2	0.2236967850
+UniRef50_B2IU46: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.2236967850
+UniRef50_UPI00046D8C73: alkylhydroperoxidase	0.2236498136
+UniRef50_UPI00046D8C73: alkylhydroperoxidase|unclassified	0.2236498136
+UniRef50_R8ZIB3	0.2236478073
+UniRef50_R8ZIB3|unclassified	0.2236478073
+UniRef50_UPI0002195761: ammonia permease	0.2236435499
+UniRef50_UPI0002195761: ammonia permease|unclassified	0.2236435499
+UniRef50_C9SY49: NADH-ubiquinone oxidoreductase 23 kDa subunit	0.2236131165
+UniRef50_C9SY49: NADH-ubiquinone oxidoreductase 23 kDa subunit|unclassified	0.2236131165
+UniRef50_UPI0004748402: hypothetical protein, partial	0.2236089397
+UniRef50_UPI0004748402: hypothetical protein, partial|unclassified	0.2236089397
+UniRef50_G2Y348	0.2235956077
+UniRef50_G2Y348|unclassified	0.2235956077
+UniRef50_UPI000262A3B1: ABC transporter ATP-binding protein, partial	0.2235707519
+UniRef50_UPI000262A3B1: ABC transporter ATP-binding protein, partial|unclassified	0.2235707519
+UniRef50_Q9HA92: Radical S-adenosyl methionine domain-containing protein 1, mitochondrial	0.2235677085
+UniRef50_Q9HA92: Radical S-adenosyl methionine domain-containing protein 1, mitochondrial|unclassified	0.2235677085
+UniRef50_X1GCZ0: Marine sediment metagenome DNA, contig: S03H2_L08887 (Fragment)	0.2235513548
+UniRef50_X1GCZ0: Marine sediment metagenome DNA, contig: S03H2_L08887 (Fragment)|unclassified	0.2235513548
+UniRef50_UPI000472F157: hypothetical protein, partial	0.2235504319
+UniRef50_UPI000472F157: hypothetical protein, partial|unclassified	0.2235504319
+UniRef50_W4PWQ5	0.2235458005
+UniRef50_W4PWQ5|unclassified	0.2235458005
+UniRef50_W7Q3C9	0.2235329859
+UniRef50_W7Q3C9|unclassified	0.2235329859
+UniRef50_UPI000469923D: 3-mercaptopyruvate sulfurtransferase	0.2235263824
+UniRef50_UPI000469923D: 3-mercaptopyruvate sulfurtransferase|unclassified	0.2235263824
+UniRef50_UPI0003B42FC3: chemotaxis protein	0.2235219155
+UniRef50_UPI0003B42FC3: chemotaxis protein|unclassified	0.2235219155
+UniRef50_L1IAJ4	0.2235178367
+UniRef50_L1IAJ4|unclassified	0.2235178367
+UniRef50_R1CLN1	0.2234817473
+UniRef50_R1CLN1|unclassified	0.2234817473
+UniRef50_UPI000376515D: hypothetical protein	0.2234780636
+UniRef50_UPI000376515D: hypothetical protein|unclassified	0.2234780636
+UniRef50_UPI000255BB2E: molybdopterin guanine dinucleotide biosynthesis protein MoaE	0.2234748841
+UniRef50_UPI000255BB2E: molybdopterin guanine dinucleotide biosynthesis protein MoaE|unclassified	0.2234748841
+UniRef50_I9CFE3: Transposase IS66	0.2234455218
+UniRef50_I9CFE3: Transposase IS66|unclassified	0.2234455218
+UniRef50_UPI000255D14E: uracil-xanthine permease	0.2234313063
+UniRef50_UPI000255D14E: uracil-xanthine permease|unclassified	0.2234313063
+UniRef50_UPI000463E95A: hypothetical protein	0.2234312874
+UniRef50_UPI000463E95A: hypothetical protein|unclassified	0.2234312874
+UniRef50_M9TYI3	0.2234251777
+UniRef50_M9TYI3|unclassified	0.2234251777
+UniRef50_O54068: UDP-glucose 6-dehydrogenase	0.2234071226
+UniRef50_O54068: UDP-glucose 6-dehydrogenase|unclassified	0.2234071226
+UniRef50_C3ARI5	0.2234001471
+UniRef50_C3ARI5|unclassified	0.2234001471
+UniRef50_V6F1U8	0.2233881469
+UniRef50_V6F1U8|unclassified	0.2233881469
+UniRef50_UPI000468C613: hypothetical protein	0.2233714161
+UniRef50_UPI000468C613: hypothetical protein|unclassified	0.2233714161
+UniRef50_A5UYT7: PUCC protein	0.2233434815
+UniRef50_A5UYT7: PUCC protein|unclassified	0.2233434815
+UniRef50_UPI0003B4152A: AppA/PpaA family photosynthesis gene regulator	0.2233279296
+UniRef50_UPI0003B4152A: AppA/PpaA family photosynthesis gene regulator|unclassified	0.2233279296
+UniRef50_X1C3T9: Marine sediment metagenome DNA, contig: S01H4_S13428 (Fragment)	0.2233216228
+UniRef50_X1C3T9: Marine sediment metagenome DNA, contig: S01H4_S13428 (Fragment)|unclassified	0.2233216228
+UniRef50_M4K0Y1	0.2233215940
+UniRef50_M4K0Y1|unclassified	0.2233215940
+UniRef50_Y2EMU9: Cell wall anchor protein	0.2232641215
+UniRef50_Y2EMU9: Cell wall anchor protein|unclassified	0.2232641215
+UniRef50_UPI00037DA311: hypothetical protein	0.2232571840
+UniRef50_UPI00037DA311: hypothetical protein|unclassified	0.2232571840
+UniRef50_P25026: Non-heme chloroperoxidase	0.2232528241
+UniRef50_P25026: Non-heme chloroperoxidase|unclassified	0.2232528241
+UniRef50_UPI000465DC6E: phosphonate ABC transporter ATPase	0.2232322479
+UniRef50_UPI000465DC6E: phosphonate ABC transporter ATPase|unclassified	0.2232322479
+UniRef50_V5HZC9	0.2232252885
+UniRef50_V5HZC9|unclassified	0.2232252885
+UniRef50_A0A011ME20	0.2231978065
+UniRef50_A0A011ME20|unclassified	0.2231978065
+UniRef50_N1WAP4: MAPEG family protein	0.2231817903
+UniRef50_N1WAP4: MAPEG family protein|unclassified	0.2231817903
+UniRef50_I4W6U8: Putative NAD-specific glutamate dehydrogenase	0.2231715773
+UniRef50_I4W6U8: Putative NAD-specific glutamate dehydrogenase|unclassified	0.2231715773
+UniRef50_UPI0003692B2B: hypothetical protein	0.2231288737
+UniRef50_UPI0003692B2B: hypothetical protein|unclassified	0.2231288737
+UniRef50_UPI00016A5E24: transcriptional regulator, LysR family protein, partial	0.2231193258
+UniRef50_UPI00016A5E24: transcriptional regulator, LysR family protein, partial|unclassified	0.2231193258
+UniRef50_UPI0003500B2C: PREDICTED: translation initiation factor IF-2-like	0.2231127688
+UniRef50_UPI0003500B2C: PREDICTED: translation initiation factor IF-2-like|unclassified	0.2231127688
+UniRef50_UPI000383F2C7: PREDICTED: 5-azacytidine-induced protein 1 isoform X2	0.2230615089
+UniRef50_UPI000383F2C7: PREDICTED: 5-azacytidine-induced protein 1 isoform X2|unclassified	0.2230615089
+UniRef50_E1Z5A1	0.2230436188
+UniRef50_E1Z5A1|unclassified	0.2230436188
+UniRef50_UPI00046FBC18: ribonucleoside-diphosphate reductase, partial	0.2230393062
+UniRef50_UPI00046FBC18: ribonucleoside-diphosphate reductase, partial|unclassified	0.2230393062
+UniRef50_UPI0001B439E2: hypothetical protein	0.2230223919
+UniRef50_UPI0001B439E2: hypothetical protein|unclassified	0.2230223919
+UniRef50_UPI00046EA5E6: hypothetical protein, partial	0.2230058401
+UniRef50_UPI00046EA5E6: hypothetical protein, partial|unclassified	0.2230058401
+UniRef50_G8V668	0.2230021362
+UniRef50_G8V668|unclassified	0.2230021362
+UniRef50_F3JVT7	0.2229918789
+UniRef50_F3JVT7|unclassified	0.2229918789
+UniRef50_I6W0V8: YeeU protein (Antitoxin to YeeV)	0.2229627033
+UniRef50_I6W0V8: YeeU protein (Antitoxin to YeeV)|unclassified	0.2229627033
+UniRef50_UPI0003B65F17: alanine acetyltransferase	0.2229401167
+UniRef50_UPI0003B65F17: alanine acetyltransferase|unclassified	0.2229401167
+UniRef50_UPI000465C2F0: pyridoxamine kinase	0.2229340949
+UniRef50_UPI000465C2F0: pyridoxamine kinase|unclassified	0.2229340949
+UniRef50_E7T4P0: MG(2+) CHELATASE FAMILY PROTEIN / ComM-related protein	0.2229281015
+UniRef50_E7T4P0: MG(2+) CHELATASE FAMILY PROTEIN / ComM-related protein|unclassified	0.2229281015
+UniRef50_K0VNG5: LemA family protein (Fragment)	0.2229133453
+UniRef50_K0VNG5: LemA family protein (Fragment)|unclassified	0.2229133453
+UniRef50_S3T9Z9	0.2229008334
+UniRef50_S3T9Z9|unclassified	0.2229008334
+UniRef50_A0A024E6Y5	0.2228842022
+UniRef50_A0A024E6Y5|unclassified	0.2228842022
+UniRef50_L7BUG1: GTP-binding protein TypA, BipA	0.2228818136
+UniRef50_L7BUG1: GTP-binding protein TypA, BipA|unclassified	0.2228818136
+UniRef50_W7SQ10	0.2228768153
+UniRef50_W7SQ10|unclassified	0.2228768153
+UniRef50_J3NB02	0.2228733854
+UniRef50_J3NB02|unclassified	0.2228733854
+UniRef50_Q8YR06: Phosphoribosylformylglycinamidine synthase 2	0.2228651512
+UniRef50_Q8YR06: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.2228651512
+UniRef50_UPI0004797EF0: transcriptional regulator	0.2228589889
+UniRef50_UPI0004797EF0: transcriptional regulator|unclassified	0.2228589889
+UniRef50_E1SBZ0: Recombinase	0.2228382569
+UniRef50_E1SBZ0: Recombinase|unclassified	0.2228382569
+UniRef50_H6CP54	0.2228300164
+UniRef50_H6CP54|unclassified	0.2228300164
+UniRef50_B6ZRG1	0.2228127933
+UniRef50_B6ZRG1|unclassified	0.2228127933
+UniRef50_UPI000372ED89: hypothetical protein	0.2228127594
+UniRef50_UPI000372ED89: hypothetical protein|unclassified	0.2228127594
+UniRef50_E5Y8Z7: Type IV secretion system protein VirB4	0.2228090184
+UniRef50_E5Y8Z7: Type IV secretion system protein VirB4|unclassified	0.2228090184
+UniRef50_UPI000370CB31: hypothetical protein	0.2228036074
+UniRef50_UPI000370CB31: hypothetical protein|unclassified	0.2228036074
+UniRef50_Q160V9	0.2228003386
+UniRef50_Q160V9|unclassified	0.2228003386
+UniRef50_UPI000464AFE5: hypothetical protein	0.2227923792
+UniRef50_UPI000464AFE5: hypothetical protein|unclassified	0.2227923792
+UniRef50_Q4ZCE0: ORF026	0.2227702441
+UniRef50_Q4ZCE0: ORF026|unclassified	0.2227702441
+UniRef50_UPI0002EEB552: hypothetical protein	0.2227582470
+UniRef50_UPI0002EEB552: hypothetical protein|unclassified	0.2227582470
+UniRef50_UPI000472B3B4: citrate synthase	0.2227579630
+UniRef50_UPI000472B3B4: citrate synthase|unclassified	0.2227579630
+UniRef50_UPI000360BCD1: hypothetical protein	0.2227558770
+UniRef50_UPI000360BCD1: hypothetical protein|unclassified	0.2227558770
+UniRef50_R7MRB7	0.2227557075
+UniRef50_R7MRB7|unclassified	0.2227557075
+UniRef50_UPI0001D2E741: chemotaxis protein CheR	0.2227512186
+UniRef50_UPI0001D2E741: chemotaxis protein CheR|unclassified	0.2227512186
+UniRef50_B2STT5: Exodeoxyribonuclease III	0.2227481307
+UniRef50_B2STT5: Exodeoxyribonuclease III|unclassified	0.2227481307
+UniRef50_B4VIX9	0.2227453926
+UniRef50_B4VIX9|unclassified	0.2227453926
+UniRef50_Q2NCH0	0.2227250346
+UniRef50_Q2NCH0|unclassified	0.2227250346
+UniRef50_Q4PJD9: Predicted acetyl-CoA carboxylase	0.2227085019
+UniRef50_Q4PJD9: Predicted acetyl-CoA carboxylase|unclassified	0.2227085019
+UniRef50_Q5YS08: Ribonuclease 3	0.2227064008
+UniRef50_Q5YS08: Ribonuclease 3|unclassified	0.2227064008
+UniRef50_UPI00040C5D48: ABC transporter	0.2226847501
+UniRef50_UPI00040C5D48: ABC transporter|unclassified	0.2226847501
+UniRef50_UPI000376D1CF: hypothetical protein	0.2226571010
+UniRef50_UPI000376D1CF: hypothetical protein|unclassified	0.2226571010
+UniRef50_UPI0003B3823A: cytochrome B6	0.2226485284
+UniRef50_UPI0003B3823A: cytochrome B6|unclassified	0.2226485284
+UniRef50_A1K320: PKHD-type hydroxylase azo0608	0.2226423751
+UniRef50_A1K320: PKHD-type hydroxylase azo0608|unclassified	0.2226423751
+UniRef50_R7ZJP9: NagD-like protein	0.2226057263
+UniRef50_R7ZJP9: NagD-like protein|unclassified	0.2226057263
+UniRef50_Q5VPC1	0.2225845351
+UniRef50_Q5VPC1|unclassified	0.2225845351
+UniRef50_C3ZAC4	0.2225590210
+UniRef50_C3ZAC4|unclassified	0.2225590210
+UniRef50_K8CZS4	0.2225587550
+UniRef50_K8CZS4|unclassified	0.2225587550
+UniRef50_F2EJC9: Predicted protein	0.2225542354
+UniRef50_F2EJC9: Predicted protein|unclassified	0.2225542354
+UniRef50_Q1YSV9	0.2225492764
+UniRef50_Q1YSV9|unclassified	0.2225492764
+UniRef50_UPI00036A06DD: hypothetical protein	0.2225274784
+UniRef50_UPI00036A06DD: hypothetical protein|unclassified	0.2225274784
+UniRef50_UPI000346B3B0: hypothetical protein	0.2224866069
+UniRef50_UPI000346B3B0: hypothetical protein|unclassified	0.2224866069
+UniRef50_G2GYE9: Localization of periplasmic protein complexes	0.2224843553
+UniRef50_G2GYE9: Localization of periplasmic protein complexes|unclassified	0.2224843553
+UniRef50_UPI0001D31FB8: hypothetical protein	0.2224779741
+UniRef50_UPI0001D31FB8: hypothetical protein|unclassified	0.2224779741
+UniRef50_J7QTA8: Putative DNA transposase	0.2224689511
+UniRef50_J7QTA8: Putative DNA transposase|unclassified	0.2224689511
+UniRef50_UPI00047A7925: nitrate reductase	0.2224588613
+UniRef50_UPI00047A7925: nitrate reductase|unclassified	0.2224588613
+UniRef50_UPI000465390E: hypothetical protein	0.2224522850
+UniRef50_UPI000465390E: hypothetical protein|unclassified	0.2224522850
+UniRef50_UPI00046D95EA: hypothetical protein	0.2224421243
+UniRef50_UPI00046D95EA: hypothetical protein|unclassified	0.2224421243
+UniRef50_Q9M315: 3-methyl-2-oxobutanoate hydroxymethyltransferase 2, mitochondrial	0.2224418955
+UniRef50_Q9M315: 3-methyl-2-oxobutanoate hydroxymethyltransferase 2, mitochondrial|unclassified	0.2224418955
+UniRef50_W0IHC4: Membrane protein	0.2224043046
+UniRef50_W0IHC4: Membrane protein|unclassified	0.2224043046
+UniRef50_UPI00047B38E5: dihydrodipicolinate reductase	0.2223980685
+UniRef50_UPI00047B38E5: dihydrodipicolinate reductase|unclassified	0.2223980685
+UniRef50_A1UUS5	0.2223624791
+UniRef50_A1UUS5|unclassified	0.2223624791
+UniRef50_UPI00037A985E: hypothetical protein	0.2223479906
+UniRef50_UPI00037A985E: hypothetical protein|unclassified	0.2223479906
+UniRef50_F7WRG0	0.2223425291
+UniRef50_F7WRG0|unclassified	0.2223425291
+UniRef50_A1AZP1	0.2223354623
+UniRef50_A1AZP1|unclassified	0.2223354623
+UniRef50_UPI00036AE10F: 30S ribosomal protein S2	0.2223341574
+UniRef50_UPI00036AE10F: 30S ribosomal protein S2|unclassified	0.2223341574
+UniRef50_UPI000373964F: hypothetical protein	0.2222880309
+UniRef50_UPI000373964F: hypothetical protein|unclassified	0.2222880309
+UniRef50_UPI000372025C: hypothetical protein	0.2222873489
+UniRef50_UPI000372025C: hypothetical protein|unclassified	0.2222873489
+UniRef50_D5Z124: Phosphoribosylformylglycinamidine synthase subunit I	0.2222627189
+UniRef50_D5Z124: Phosphoribosylformylglycinamidine synthase subunit I|unclassified	0.2222627189
+UniRef50_T8YYR7: Transcriptional regulator	0.2222593129
+UniRef50_T8YYR7: Transcriptional regulator|unclassified	0.2222593129
+UniRef50_UPI000462CFE2: hypothetical protein, partial	0.2222489834
+UniRef50_UPI000462CFE2: hypothetical protein, partial|unclassified	0.2222489834
+UniRef50_UPI0003B78493: 5-hydroxyisourate hydrolase	0.2222440482
+UniRef50_UPI0003B78493: 5-hydroxyisourate hydrolase|unclassified	0.2222440482
+UniRef50_K2D6N5	0.2222363434
+UniRef50_K2D6N5|unclassified	0.2222363434
+UniRef50_Q1M8E0: Methionine import ATP-binding protein MetN	0.2222295449
+UniRef50_Q1M8E0: Methionine import ATP-binding protein MetN|unclassified	0.2222295449
+UniRef50_X6JB28	0.2222270739
+UniRef50_X6JB28|unclassified	0.2222270739
+UniRef50_UPI00034AAE41: hypothetical protein	0.2222106479
+UniRef50_UPI00034AAE41: hypothetical protein|unclassified	0.2222106479
+UniRef50_C1MJW7: Predicted protein	0.2222055720
+UniRef50_C1MJW7: Predicted protein|unclassified	0.2222055720
+UniRef50_UPI0004776DB1: hypothetical protein, partial	0.2222043386
+UniRef50_UPI0004776DB1: hypothetical protein, partial|unclassified	0.2222043386
+UniRef50_A0A033UF50	0.2221930124
+UniRef50_A0A033UF50|unclassified	0.2221930124
+UniRef50_K2FGX9	0.2221585954
+UniRef50_K2FGX9|unclassified	0.2221585954
+UniRef50_UPI000225B461: hypothetical protein	0.2221330573
+UniRef50_UPI000225B461: hypothetical protein|unclassified	0.2221330573
+UniRef50_UPI0003822C7F: hypothetical protein	0.2221274540
+UniRef50_UPI0003822C7F: hypothetical protein|unclassified	0.2221274540
+UniRef50_A0A059IPF2: FlaF protein	0.2221135072
+UniRef50_A0A059IPF2: FlaF protein|unclassified	0.2221135072
+UniRef50_T0ZWG6: Phosphoribosylformylglycinamidine synthase I	0.2221080311
+UniRef50_T0ZWG6: Phosphoribosylformylglycinamidine synthase I|unclassified	0.2221080311
+UniRef50_UPI0001D55582: PREDICTED: pyridoxal kinase isoform 2	0.2221029497
+UniRef50_UPI0001D55582: PREDICTED: pyridoxal kinase isoform 2|unclassified	0.2221029497
+UniRef50_F9ZFS0	0.2220977206
+UniRef50_F9ZFS0|unclassified	0.2220977206
+UniRef50_UPI000359FA90: PREDICTED: NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial isoform X1	0.2220901910
+UniRef50_UPI000359FA90: PREDICTED: NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial isoform X1|unclassified	0.2220901910
+UniRef50_A0A059CGV2	0.2220739600
+UniRef50_A0A059CGV2|unclassified	0.2220739600
+UniRef50_UPI0003B4CE6B: hypothetical protein	0.2220717698
+UniRef50_UPI0003B4CE6B: hypothetical protein|unclassified	0.2220717698
+UniRef50_UPI000368E802: hypothetical protein	0.2220428900
+UniRef50_UPI000368E802: hypothetical protein|unclassified	0.2220428900
+UniRef50_U3JC27	0.2220129682
+UniRef50_U3JC27|unclassified	0.2220129682
+UniRef50_Q887Q9: Alginate biosynthesis protein AlgA	0.2220113798
+UniRef50_Q887Q9: Alginate biosynthesis protein AlgA|unclassified	0.2220113798
+UniRef50_B1N6N2: Putative hemolysin activator-related protein	0.2220076024
+UniRef50_B1N6N2: Putative hemolysin activator-related protein|unclassified	0.2220076024
+UniRef50_UPI00035F3E4C: hypothetical protein	0.2219937697
+UniRef50_UPI00035F3E4C: hypothetical protein|unclassified	0.2219937697
+UniRef50_Q8YHH1: Putative zinc metalloprotease BMEI0829	0.2219387533
+UniRef50_Q8YHH1: Putative zinc metalloprotease BMEI0829|unclassified	0.2219387533
+UniRef50_UPI00020D98C0: XRE family transcriptional regulator	0.2219193802
+UniRef50_UPI00020D98C0: XRE family transcriptional regulator|unclassified	0.2219193802
+UniRef50_O83806: Tyrosine--tRNA ligase	0.2218829479
+UniRef50_O83806: Tyrosine--tRNA ligase|unclassified	0.2218829479
+UniRef50_V4RDS5: RsbR, positive regulator of sigma-B	0.2218711284
+UniRef50_V4RDS5: RsbR, positive regulator of sigma-B|unclassified	0.2218711284
+UniRef50_UPI0002894832: isopropylmalate isomerase large subunit, partial	0.2218667288
+UniRef50_UPI0002894832: isopropylmalate isomerase large subunit, partial|unclassified	0.2218667288
+UniRef50_X2LI35: Phosphodiesterase	0.2218664799
+UniRef50_X2LI35: Phosphodiesterase|unclassified	0.2218664799
+UniRef50_W0E4L5: Phosphate-starvation-inducible E	0.2217844838
+UniRef50_W0E4L5: Phosphate-starvation-inducible E|unclassified	0.2217844838
+UniRef50_UPI00029AABD3: ribosome-binding factor A	0.2217718005
+UniRef50_UPI00029AABD3: ribosome-binding factor A|unclassified	0.2217718005
+UniRef50_UPI00037792DA: hypothetical protein	0.2217632971
+UniRef50_UPI00037792DA: hypothetical protein|unclassified	0.2217632971
+UniRef50_UPI000248490E: Resolvase	0.2217517518
+UniRef50_UPI000248490E: Resolvase|unclassified	0.2217517518
+UniRef50_G7ELT9	0.2217506572
+UniRef50_G7ELT9|unclassified	0.2217506572
+UniRef50_Q59695: Dihydrolipoyllysine-residue acetyltransferase component of acetoin cleaving system	0.2217432598
+UniRef50_Q59695: Dihydrolipoyllysine-residue acetyltransferase component of acetoin cleaving system|unclassified	0.2217432598
+UniRef50_UPI000374EE34: ABC transporter	0.2217382989
+UniRef50_UPI000374EE34: ABC transporter|unclassified	0.2217382989
+UniRef50_UPI0004076B6B: hypothetical protein	0.2217333047
+UniRef50_UPI0004076B6B: hypothetical protein|unclassified	0.2217333047
+UniRef50_D9V739: Predicted protein	0.2216626432
+UniRef50_D9V739: Predicted protein|unclassified	0.2216626432
+UniRef50_W4QCI9: Hemoprotein HemQ	0.2216539132
+UniRef50_W4QCI9: Hemoprotein HemQ|unclassified	0.2216539132
+UniRef50_B7Z0B8: CG10625, isoform I	0.2216312057
+UniRef50_B7Z0B8: CG10625, isoform I|unclassified	0.2216312057
+UniRef50_X3V4H5	0.2216213814
+UniRef50_X3V4H5|unclassified	0.2216213814
+UniRef50_E3A0A5: 2,4-dienoyl-CoA reductase FadH2	0.2216207794
+UniRef50_E3A0A5: 2,4-dienoyl-CoA reductase FadH2|unclassified	0.2216207794
+UniRef50_UPI00045E926A: hypothetical protein	0.2215877788
+UniRef50_UPI00045E926A: hypothetical protein|unclassified	0.2215877788
+UniRef50_Q3SUS4: PKHD-type hydroxylase Nwi_0701	0.2215719347
+UniRef50_Q3SUS4: PKHD-type hydroxylase Nwi_0701|unclassified	0.2215719347
+UniRef50_Q4JMZ8	0.2215694934
+UniRef50_Q4JMZ8|unclassified	0.2215694934
+UniRef50_B6ZWA9: Anaerobic nitric oxide reductase transcription regulator NorR	0.2215614867
+UniRef50_B6ZWA9: Anaerobic nitric oxide reductase transcription regulator NorR|unclassified	0.2215614867
+UniRef50_T7P7W5	0.2215133087
+UniRef50_T7P7W5|unclassified	0.2215133087
+UniRef50_U3K6T6	0.2215029627
+UniRef50_U3K6T6|unclassified	0.2215029627
+UniRef50_UPI0003EB37D1: cysteine methyltransferase, partial	0.2215011854
+UniRef50_UPI0003EB37D1: cysteine methyltransferase, partial|unclassified	0.2215011854
+UniRef50_UPI000417AABE: hypothetical protein	0.2214988412
+UniRef50_UPI000417AABE: hypothetical protein|unclassified	0.2214988412
+UniRef50_UPI0003A75D7C: lipase	0.2214987385
+UniRef50_UPI0003A75D7C: lipase|unclassified	0.2214987385
+UniRef50_UPI000471C72D: NAD-dependent malic enzyme 1	0.2214902585
+UniRef50_UPI000471C72D: NAD-dependent malic enzyme 1|unclassified	0.2214902585
+UniRef50_UPI0003B5E7F8: hypothetical protein	0.2214816689
+UniRef50_UPI0003B5E7F8: hypothetical protein|unclassified	0.2214816689
+UniRef50_UPI00036B96BE: hypothetical protein	0.2214777080
+UniRef50_UPI00036B96BE: hypothetical protein|unclassified	0.2214777080
+UniRef50_Q1QSX6	0.2214684058
+UniRef50_Q1QSX6|unclassified	0.2214684058
+UniRef50_L4IZR5	0.2214644553
+UniRef50_L4IZR5|unclassified	0.2214644553
+UniRef50_UPI00036E67B4: hypothetical protein	0.2214624938
+UniRef50_UPI00036E67B4: hypothetical protein|unclassified	0.2214624938
+UniRef50_UPI0003F8C100: hypothetical protein	0.2214624145
+UniRef50_UPI0003F8C100: hypothetical protein|unclassified	0.2214624145
+UniRef50_UPI000367D1F7: hypothetical protein	0.2214558324
+UniRef50_UPI000367D1F7: hypothetical protein|unclassified	0.2214558324
+UniRef50_UPI0003647621: hypothetical protein	0.2214468751
+UniRef50_UPI0003647621: hypothetical protein|unclassified	0.2214468751
+UniRef50_UPI000467F612: transporter	0.2214457712
+UniRef50_UPI000467F612: transporter|unclassified	0.2214457712
+UniRef50_U2R952	0.2214179353
+UniRef50_U2R952|unclassified	0.2214179353
+UniRef50_Q6G1N9: Shikimate kinase	0.2214013488
+UniRef50_Q6G1N9: Shikimate kinase|unclassified	0.2214013488
+UniRef50_UPI0004546D12	0.2213862793
+UniRef50_UPI0004546D12|unclassified	0.2213862793
+UniRef50_F5XZV5: Candidate signal transduction protein (Modulator protein rsbR), STAS domain protein	0.2213803770
+UniRef50_F5XZV5: Candidate signal transduction protein (Modulator protein rsbR), STAS domain protein|unclassified	0.2213803770
+UniRef50_UPI00047B3379: hypothetical protein	0.2213741151
+UniRef50_UPI00047B3379: hypothetical protein|unclassified	0.2213741151
+UniRef50_UPI0004635006: hypothetical protein	0.2213688593
+UniRef50_UPI0004635006: hypothetical protein|unclassified	0.2213688593
+UniRef50_UPI000262C1BF: adenosylcobinamide-phosphate synthase	0.2213509148
+UniRef50_UPI000262C1BF: adenosylcobinamide-phosphate synthase|unclassified	0.2213509148
+UniRef50_UPI000368BD92: hypothetical protein, partial	0.2213422702
+UniRef50_UPI000368BD92: hypothetical protein, partial|unclassified	0.2213422702
+UniRef50_UPI00016AED5A: transcriptional regulator, AraC family protein	0.2213394654
+UniRef50_UPI00016AED5A: transcriptional regulator, AraC family protein|unclassified	0.2213394654
+UniRef50_Q8ZXL4: NH(3)-dependent NAD(+) synthetase	0.2213367093
+UniRef50_Q8ZXL4: NH(3)-dependent NAD(+) synthetase|unclassified	0.2213367093
+UniRef50_UPI00037C704A: hypothetical protein	0.2213360711
+UniRef50_UPI00037C704A: hypothetical protein|unclassified	0.2213360711
+UniRef50_UPI0003AD1FB0: hypothetical protein	0.2213228688
+UniRef50_UPI0003AD1FB0: hypothetical protein|unclassified	0.2213228688
+UniRef50_G5Q0Y7: Conidiation-specific protein 10	0.2212903286
+UniRef50_G5Q0Y7: Conidiation-specific protein 10|unclassified	0.2212903286
+UniRef50_UPI00036D1788: MULTISPECIES: hypothetical protein	0.2212813844
+UniRef50_UPI00036D1788: MULTISPECIES: hypothetical protein|unclassified	0.2212813844
+UniRef50_UPI00047CE877: hypothetical protein, partial	0.2212807147
+UniRef50_UPI00047CE877: hypothetical protein, partial|unclassified	0.2212807147
+UniRef50_UPI0001FFF273: hypothetical protein, partial	0.2212652613
+UniRef50_UPI0001FFF273: hypothetical protein, partial|unclassified	0.2212652613
+UniRef50_UPI0003B6F045: AMP-dependent synthetase	0.2212400525
+UniRef50_UPI0003B6F045: AMP-dependent synthetase|unclassified	0.2212400525
+UniRef50_I1ARZ2	0.2212357323
+UniRef50_I1ARZ2|unclassified	0.2212357323
+UniRef50_W1IP62: Pyoverdine biosynthesis protein	0.2212335408
+UniRef50_W1IP62: Pyoverdine biosynthesis protein|unclassified	0.2212335408
+UniRef50_W0RBV9: LigA	0.2212242843
+UniRef50_W0RBV9: LigA|unclassified	0.2212242843
+UniRef50_W9EKW4	0.2212078260
+UniRef50_W9EKW4|unclassified	0.2212078260
+UniRef50_UPI00017466AB: NADH dehydrogenase subunit J	0.2211916787
+UniRef50_UPI00017466AB: NADH dehydrogenase subunit J|unclassified	0.2211916787
+UniRef50_UPI00042B4ED2: Purin 7 isoform 5	0.2211871166
+UniRef50_UPI00042B4ED2: Purin 7 isoform 5|unclassified	0.2211871166
+UniRef50_G8ML65: Transcriptional regulator/antitoxin, MazE	0.2211842121
+UniRef50_G8ML65: Transcriptional regulator/antitoxin, MazE|unclassified	0.2211842121
+UniRef50_A4A3M1	0.2211742414
+UniRef50_A4A3M1|unclassified	0.2211742414
+UniRef50_UPI000362608E: hypothetical protein	0.2211731032
+UniRef50_UPI000362608E: hypothetical protein|unclassified	0.2211731032
+UniRef50_UPI000476D930: phosphopantetheine adenylyltransferase	0.2211575423
+UniRef50_UPI000476D930: phosphopantetheine adenylyltransferase|unclassified	0.2211575423
+UniRef50_UPI0003B6353B: MerR family transcriptional regulator	0.2211504214
+UniRef50_UPI0003B6353B: MerR family transcriptional regulator|unclassified	0.2211504214
+UniRef50_E2SIQ7	0.2211182709
+UniRef50_E2SIQ7|unclassified	0.2211182709
+UniRef50_UPI00046F3F5A: hypothetical protein	0.2211029185
+UniRef50_UPI00046F3F5A: hypothetical protein|unclassified	0.2211029185
+UniRef50_UPI0003B67745: exonuclease, partial	0.2210754254
+UniRef50_UPI0003B67745: exonuclease, partial|unclassified	0.2210754254
+UniRef50_Q5LNT6: Crossover junction endodeoxyribonuclease RuvC	0.2210329976
+UniRef50_Q5LNT6: Crossover junction endodeoxyribonuclease RuvC|unclassified	0.2210329976
+UniRef50_UPI0004792DA6: DSBA oxidoreductase	0.2210259167
+UniRef50_UPI0004792DA6: DSBA oxidoreductase|unclassified	0.2210259167
+UniRef50_UPI00036E1D7A: hypothetical protein	0.2210152651
+UniRef50_UPI00036E1D7A: hypothetical protein|unclassified	0.2210152651
+UniRef50_J8V7W5	0.2209879322
+UniRef50_J8V7W5|unclassified	0.2209879322
+UniRef50_F3FMQ4: Putative lipoprotein (Fragment)	0.2209579248
+UniRef50_F3FMQ4: Putative lipoprotein (Fragment)|unclassified	0.2209579248
+UniRef50_R7PUN2: Chlamydial polymorphic outer membrane protein repeat-containing domain protein	0.2209448202
+UniRef50_R7PUN2: Chlamydial polymorphic outer membrane protein repeat-containing domain protein|unclassified	0.2209448202
+UniRef50_K8BCG4	0.2209190576
+UniRef50_K8BCG4|unclassified	0.2209190576
+UniRef50_UPI000372D278: hypothetical protein	0.2209048235
+UniRef50_UPI000372D278: hypothetical protein|unclassified	0.2209048235
+UniRef50_Q87DM8: Acetylornithine aminotransferase	0.2208985498
+UniRef50_Q87DM8: Acetylornithine aminotransferase|unclassified	0.2208985498
+UniRef50_UPI000470129B: hypothetical protein	0.2208980231
+UniRef50_UPI000470129B: hypothetical protein|unclassified	0.2208980231
+UniRef50_UPI00035E8D2C: methyltransferase	0.2208867163
+UniRef50_UPI00035E8D2C: methyltransferase|unclassified	0.2208867163
+UniRef50_Q65NA1: Mannitol-1-phosphate 5-dehydrogenase	0.2208849699
+UniRef50_Q65NA1: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.2208849699
+UniRef50_W4LSH7	0.2208847026
+UniRef50_W4LSH7|unclassified	0.2208847026
+UniRef50_C4J5Z5	0.2208783084
+UniRef50_C4J5Z5|unclassified	0.2208783084
+UniRef50_UPI0003782695: hypothetical protein	0.2208777554
+UniRef50_UPI0003782695: hypothetical protein|unclassified	0.2208777554
+UniRef50_UPI0004736BEB: hypothetical protein	0.2208658763
+UniRef50_UPI0004736BEB: hypothetical protein|unclassified	0.2208658763
+UniRef50_UPI000371BC44: hypothetical protein	0.2208271029
+UniRef50_UPI000371BC44: hypothetical protein|unclassified	0.2208271029
+UniRef50_UPI000219402C: hisitdine kinase	0.2208237812
+UniRef50_UPI000219402C: hisitdine kinase|unclassified	0.2208237812
+UniRef50_B9M8U3: 8-amino-7-oxononanoate synthase	0.2208215267
+UniRef50_B9M8U3: 8-amino-7-oxononanoate synthase|unclassified	0.2208215267
+UniRef50_K1UU32	0.2208126132
+UniRef50_K1UU32|unclassified	0.2208126132
+UniRef50_UPI000374716A: hypothetical protein	0.2208067426
+UniRef50_UPI000374716A: hypothetical protein|unclassified	0.2208067426
+UniRef50_Q47944: L-sorbose 1-dehydrogenase	0.2207921131
+UniRef50_Q47944: L-sorbose 1-dehydrogenase|unclassified	0.2207921131
+UniRef50_D4F7C3: TRAP transporter, DctQ-like membrane protein	0.2207812633
+UniRef50_D4F7C3: TRAP transporter, DctQ-like membrane protein|unclassified	0.2207812633
+UniRef50_O26663: Succinyl-CoA ligase [ADP-forming] subunit alpha	0.2207749522
+UniRef50_O26663: Succinyl-CoA ligase [ADP-forming] subunit alpha|unclassified	0.2207749522
+UniRef50_V5SG76: C4-dicarboxylate ABC transporter substrate-binding protein	0.2207726977
+UniRef50_V5SG76: C4-dicarboxylate ABC transporter substrate-binding protein|unclassified	0.2207726977
+UniRef50_Q46ZH2: Protein-L-isoaspartate O-methyltransferase	0.2207582022
+UniRef50_Q46ZH2: Protein-L-isoaspartate O-methyltransferase|unclassified	0.2207582022
+UniRef50_UPI000426573E: hypothetical protein	0.2207248076
+UniRef50_UPI000426573E: hypothetical protein|unclassified	0.2207248076
+UniRef50_N0EKQ5	0.2207084168
+UniRef50_N0EKQ5|unclassified	0.2207084168
+UniRef50_X2MCL9	0.2206938249
+UniRef50_X2MCL9|unclassified	0.2206938249
+UniRef50_V6A2C2	0.2206891579
+UniRef50_V6A2C2|unclassified	0.2206891579
+UniRef50_UPI00036BD2CD: hypothetical protein	0.2206781573
+UniRef50_UPI00036BD2CD: hypothetical protein|unclassified	0.2206781573
+UniRef50_S9QPU8	0.2206672703
+UniRef50_S9QPU8|unclassified	0.2206672703
+UniRef50_W4LYD3	0.2206579837
+UniRef50_W4LYD3|unclassified	0.2206579837
+UniRef50_A6EF92	0.2206328171
+UniRef50_A6EF92|unclassified	0.2206328171
+UniRef50_UPI000472D976: hypothetical protein	0.2206017673
+UniRef50_UPI000472D976: hypothetical protein|unclassified	0.2206017673
+UniRef50_Q68Y13: Zinc import ATP-binding protein ZnuC	0.2205778305
+UniRef50_Q68Y13: Zinc import ATP-binding protein ZnuC|unclassified	0.2205778305
+UniRef50_Q1YMK1: N-acetyl-gamma-glutamyl-phosphate reductase	0.2205646208
+UniRef50_Q1YMK1: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.2205646208
+UniRef50_UPI0002D4C97B: hypothetical protein	0.2205400205
+UniRef50_UPI0002D4C97B: hypothetical protein|unclassified	0.2205400205
+UniRef50_F6TQR8	0.2205089634
+UniRef50_F6TQR8|unclassified	0.2205089634
+UniRef50_UPI00036D8F07: hypothetical protein	0.2205067006
+UniRef50_UPI00036D8F07: hypothetical protein|unclassified	0.2205067006
+UniRef50_UPI0004636212: hypothetical protein	0.2204929016
+UniRef50_UPI0004636212: hypothetical protein|unclassified	0.2204929016
+UniRef50_UPI000255A5D8: carbon storage regulator	0.2204776804
+UniRef50_UPI000255A5D8: carbon storage regulator|unclassified	0.2204776804
+UniRef50_S5U768	0.2204700093
+UniRef50_S5U768|unclassified	0.2204700093
+UniRef50_UPI0003C1A297	0.2204586875
+UniRef50_UPI0003C1A297|unclassified	0.2204586875
+UniRef50_W5HBC6	0.2204518888
+UniRef50_W5HBC6|unclassified	0.2204518888
+UniRef50_V8P2V8: RNA-binding protein 25 (Fragment)	0.2204430928
+UniRef50_V8P2V8: RNA-binding protein 25 (Fragment)|unclassified	0.2204430928
+UniRef50_Q8Z1X1: Ribosomal RNA small subunit methyltransferase B	0.2204375714
+UniRef50_Q8Z1X1: Ribosomal RNA small subunit methyltransferase B|unclassified	0.2204375714
+UniRef50_K5YN86	0.2204266307
+UniRef50_K5YN86|unclassified	0.2204266307
+UniRef50_C1ABB1	0.2204175856
+UniRef50_C1ABB1|unclassified	0.2204175856
+UniRef50_UPI0003814739: hypothetical protein	0.2204173096
+UniRef50_UPI0003814739: hypothetical protein|unclassified	0.2204173096
+UniRef50_F3SCH8: Thymocyte nuclear protein 1	0.2204115107
+UniRef50_F3SCH8: Thymocyte nuclear protein 1|unclassified	0.2204115107
+UniRef50_Q8TZ14: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	0.2204031998
+UniRef50_Q8TZ14: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|unclassified	0.2204031998
+UniRef50_UPI0003722287: hypothetical protein	0.2203879938
+UniRef50_UPI0003722287: hypothetical protein|unclassified	0.2203879938
+UniRef50_V9FLN1	0.2203558070
+UniRef50_V9FLN1|unclassified	0.2203558070
+UniRef50_UPI0004677D66: DNA-3-methyladenine glycosylase	0.2203525735
+UniRef50_UPI0004677D66: DNA-3-methyladenine glycosylase|unclassified	0.2203525735
+UniRef50_Q8XZR3: Molybdopterin synthase catalytic subunit	0.2203521441
+UniRef50_Q8XZR3: Molybdopterin synthase catalytic subunit|unclassified	0.2203521441
+UniRef50_UPI0004774352: hypothetical protein	0.2203173166
+UniRef50_UPI0004774352: hypothetical protein|unclassified	0.2203173166
+UniRef50_UPI00047A5E1B: NADPH:quinone reductase	0.2203151048
+UniRef50_UPI00047A5E1B: NADPH:quinone reductase|unclassified	0.2203151048
+UniRef50_W1QTS1	0.2203132484
+UniRef50_W1QTS1|unclassified	0.2203132484
+UniRef50_W6ICP5: Methyl-accepting chemotaxis protein	0.2202521492
+UniRef50_W6ICP5: Methyl-accepting chemotaxis protein|unclassified	0.2202521492
+UniRef50_UPI00026C64ED: S-ribosylhomocysteinase	0.2202514587
+UniRef50_UPI00026C64ED: S-ribosylhomocysteinase|unclassified	0.2202514587
+UniRef50_UPI0003B3D29A: ATP-dependent protease	0.2202450093
+UniRef50_UPI0003B3D29A: ATP-dependent protease|unclassified	0.2202450093
+UniRef50_E4SP01	0.2202442187
+UniRef50_E4SP01|unclassified	0.2202442187
+UniRef50_A7Z463: Adenine deaminase	0.2202384731
+UniRef50_A7Z463: Adenine deaminase|unclassified	0.2202384731
+UniRef50_P55185	0.2202370407
+UniRef50_P55185|unclassified	0.2202370407
+UniRef50_B0T7I1: NIPSNAP family containing protein	0.2202241522
+UniRef50_B0T7I1: NIPSNAP family containing protein|unclassified	0.2202241522
+UniRef50_X1AEB8: Marine sediment metagenome DNA, contig: S01H4_L02505 (Fragment)	0.2201912515
+UniRef50_X1AEB8: Marine sediment metagenome DNA, contig: S01H4_L02505 (Fragment)|unclassified	0.2201912515
+UniRef50_W9B0K7: Klebsiella pneumoniae str. Kp52.145, plasmid I, complete genome	0.2201903415
+UniRef50_W9B0K7: Klebsiella pneumoniae str. Kp52.145, plasmid I, complete genome|unclassified	0.2201903415
+UniRef50_UPI00038FC93C: Stage V sporulation protein D	0.2201773929
+UniRef50_UPI00038FC93C: Stage V sporulation protein D|unclassified	0.2201773929
+UniRef50_G2GZ35: Paraquat-inducible protein B	0.2201673158
+UniRef50_G2GZ35: Paraquat-inducible protein B|unclassified	0.2201673158
+UniRef50_UPI0003AA1DC7: peptidase M16	0.2201556683
+UniRef50_UPI0003AA1DC7: peptidase M16|unclassified	0.2201556683
+UniRef50_X3F103	0.2201289628
+UniRef50_X3F103|unclassified	0.2201289628
+UniRef50_UPI00047C862B: cysteine synthase	0.2200742792
+UniRef50_UPI00047C862B: cysteine synthase|unclassified	0.2200742792
+UniRef50_W4LYZ3	0.2200240914
+UniRef50_W4LYZ3|unclassified	0.2200240914
+UniRef50_UPI0003FE1A49: 50S ribosomal protein L25	0.2200214084
+UniRef50_UPI0003FE1A49: 50S ribosomal protein L25|unclassified	0.2200214084
+UniRef50_UPI000402405B: hypothetical protein	0.2199913784
+UniRef50_UPI000402405B: hypothetical protein|unclassified	0.2199913784
+UniRef50_UPI0003F48EC1: hypothetical protein TREMEDRAFT_72210	0.2199900351
+UniRef50_UPI0003F48EC1: hypothetical protein TREMEDRAFT_72210|unclassified	0.2199900351
+UniRef50_UPI000380A2F5: hypothetical protein	0.2199841146
+UniRef50_UPI000380A2F5: hypothetical protein|unclassified	0.2199841146
+UniRef50_UPI0003746E84: hypothetical protein	0.2199757768
+UniRef50_UPI0003746E84: hypothetical protein|unclassified	0.2199757768
+UniRef50_W9H6Y5: Anti-sigma regulatory factor	0.2199717739
+UniRef50_W9H6Y5: Anti-sigma regulatory factor|unclassified	0.2199717739
+UniRef50_UPI0003C7F990: histidine kinase	0.2199675425
+UniRef50_UPI0003C7F990: histidine kinase|unclassified	0.2199675425
+UniRef50_UPI0003F86467: hypothetical protein	0.2199642726
+UniRef50_UPI0003F86467: hypothetical protein|unclassified	0.2199642726
+UniRef50_UPI0003781FDD: hypothetical protein, partial	0.2199620589
+UniRef50_UPI0003781FDD: hypothetical protein, partial|unclassified	0.2199620589
+UniRef50_B5SF72	0.2199576680
+UniRef50_B5SF72|unclassified	0.2199576680
+UniRef50_W1HNJ6: Oligopeptide transport system permease protein OppB (TC 3.A.1.5.1)	0.2199504080
+UniRef50_W1HNJ6: Oligopeptide transport system permease protein OppB (TC 3.A.1.5.1)|unclassified	0.2199504080
+UniRef50_UPI00046D5EB5: hypothetical protein	0.2199356448
+UniRef50_UPI00046D5EB5: hypothetical protein|unclassified	0.2199356448
+UniRef50_E5U6N0	0.2199337520
+UniRef50_E5U6N0|unclassified	0.2199337520
+UniRef50_G4R4C9	0.2199088260
+UniRef50_G4R4C9|unclassified	0.2199088260
+UniRef50_P49433: Glyceraldehyde-3-phosphate dehydrogenase 1	0.2198940841
+UniRef50_P49433: Glyceraldehyde-3-phosphate dehydrogenase 1|unclassified	0.2198940841
+UniRef50_B3RKL4	0.2198892988
+UniRef50_B3RKL4|unclassified	0.2198892988
+UniRef50_UPI000370EE5E: hypothetical protein	0.2198761799
+UniRef50_UPI000370EE5E: hypothetical protein|unclassified	0.2198761799
+UniRef50_P37567: Probable tRNA-dihydrouridine synthase 1	0.2198687987
+UniRef50_P37567: Probable tRNA-dihydrouridine synthase 1|unclassified	0.2198687987
+UniRef50_D7GAG5: Heat shock protein DnaJ (Fragment)	0.2198659839
+UniRef50_D7GAG5: Heat shock protein DnaJ (Fragment)|unclassified	0.2198659839
+UniRef50_UPI00037460EB: hypothetical protein	0.2198489042
+UniRef50_UPI00037460EB: hypothetical protein|unclassified	0.2198489042
+UniRef50_UPI0003B790C8: FAD-dependent oxidoreductase	0.2198320568
+UniRef50_UPI0003B790C8: FAD-dependent oxidoreductase|unclassified	0.2198320568
+UniRef50_UPI0001F85C49: biotin synthase-like protein	0.2198185052
+UniRef50_UPI0001F85C49: biotin synthase-like protein|unclassified	0.2198185052
+UniRef50_Q92GL1: DNA polymerase III subunit epsilon	0.2198041639
+UniRef50_Q92GL1: DNA polymerase III subunit epsilon|unclassified	0.2198041639
+UniRef50_Q2IIN3	0.2198039535
+UniRef50_Q2IIN3|unclassified	0.2198039535
+UniRef50_UPI0003619A46: lytic transglycosylase	0.2197962103
+UniRef50_UPI0003619A46: lytic transglycosylase|unclassified	0.2197962103
+UniRef50_A0A017HVI0: Mobile element protein	0.2197803529
+UniRef50_A0A017HVI0: Mobile element protein|unclassified	0.2197803529
+UniRef50_K1YGD5: Lytic transglycosylase catalytic	0.2197502716
+UniRef50_K1YGD5: Lytic transglycosylase catalytic|unclassified	0.2197502716
+UniRef50_UPI0004206311: 3-phosphoglycerate dehydrogenase	0.2197408050
+UniRef50_UPI0004206311: 3-phosphoglycerate dehydrogenase|unclassified	0.2197408050
+UniRef50_UPI00035D1D67: hypothetical protein	0.2197198708
+UniRef50_UPI00035D1D67: hypothetical protein|unclassified	0.2197198708
+UniRef50_Q2NBL5	0.2196989726
+UniRef50_Q2NBL5|unclassified	0.2196989726
+UniRef50_Q5E2E8: Bifunctional protein ArgH	0.2196868449
+UniRef50_Q5E2E8: Bifunctional protein ArgH|unclassified	0.2196868449
+UniRef50_E1DFB5: GAF domain protein	0.2196838157
+UniRef50_E1DFB5: GAF domain protein|unclassified	0.2196838157
+UniRef50_J0USZ4: ABC transporter permease protein	0.2196836186
+UniRef50_J0USZ4: ABC transporter permease protein|unclassified	0.2196836186
+UniRef50_F4QV59	0.2196464170
+UniRef50_F4QV59|unclassified	0.2196464170
+UniRef50_UPI00028822B1: hydrolase	0.2196432241
+UniRef50_UPI00028822B1: hydrolase|unclassified	0.2196432241
+UniRef50_UPI0003506132: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1 isoform X4	0.2196397885
+UniRef50_UPI0003506132: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1 isoform X4|unclassified	0.2196397885
+UniRef50_B4EXP7	0.2196388770
+UniRef50_B4EXP7|unclassified	0.2196388770
+UniRef50_UPI000289E1E5: sodium:proton antiporter	0.2196349440
+UniRef50_UPI000289E1E5: sodium:proton antiporter|unclassified	0.2196349440
+UniRef50_UPI000363ABA0: DNA invertase	0.2195920776
+UniRef50_UPI000363ABA0: DNA invertase|unclassified	0.2195920776
+UniRef50_A0R8M3	0.2195860047
+UniRef50_A0R8M3|unclassified	0.2195860047
+UniRef50_Q5KYK6: Mannitol-1-phosphate 5-dehydrogenase	0.2195768758
+UniRef50_Q5KYK6: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.2195768758
+UniRef50_UPI000310E170: hypothetical protein	0.2195751636
+UniRef50_UPI000310E170: hypothetical protein|unclassified	0.2195751636
+UniRef50_E9IC84	0.2195738961
+UniRef50_E9IC84|unclassified	0.2195738961
+UniRef50_A4EIP3	0.2195594130
+UniRef50_A4EIP3|unclassified	0.2195594130
+UniRef50_V7Y6S9: Type VI secretion protein (Fragment)	0.2195362035
+UniRef50_V7Y6S9: Type VI secretion protein (Fragment)|unclassified	0.2195362035
+UniRef50_UPI0003629F80: membrane protein, partial	0.2195334535
+UniRef50_UPI0003629F80: membrane protein, partial|unclassified	0.2195334535
+UniRef50_S2WWA6	0.2195182549
+UniRef50_S2WWA6|unclassified	0.2195182549
+UniRef50_Q7UKG6: Phosphopantetheine adenylyltransferase	0.2194839454
+UniRef50_Q7UKG6: Phosphopantetheine adenylyltransferase|unclassified	0.2194839454
+UniRef50_UPI0003B4E07A: peptide deformylase	0.2194692231
+UniRef50_UPI0003B4E07A: peptide deformylase|unclassified	0.2194692231
+UniRef50_G9A8N9	0.2194628445
+UniRef50_G9A8N9|unclassified	0.2194628445
+UniRef50_O34653: Fatty acid desaturase	0.2194622487
+UniRef50_O34653: Fatty acid desaturase|unclassified	0.2194622487
+UniRef50_B8IZ95: Glycine--tRNA ligase alpha subunit	0.2194604595
+UniRef50_B8IZ95: Glycine--tRNA ligase alpha subunit|unclassified	0.2194604595
+UniRef50_UPI00032A7314: PREDICTED: probable aquaporin NIP-type-like isoform X2	0.2194499766
+UniRef50_UPI00032A7314: PREDICTED: probable aquaporin NIP-type-like isoform X2|unclassified	0.2194499766
+UniRef50_A8I566: Putative transcriptional regulator	0.2194296999
+UniRef50_A8I566: Putative transcriptional regulator|unclassified	0.2194296999
+UniRef50_E4NBU8	0.2193951874
+UniRef50_E4NBU8|unclassified	0.2193951874
+UniRef50_Q92L68: Dual-specificity RNA methyltransferase RlmN	0.2193941767
+UniRef50_Q92L68: Dual-specificity RNA methyltransferase RlmN|unclassified	0.2193941767
+UniRef50_F3J1J3: Monofunctional biosynthetic peptidoglycan transglycosylase (Fragment)	0.2193895130
+UniRef50_F3J1J3: Monofunctional biosynthetic peptidoglycan transglycosylase (Fragment)|unclassified	0.2193895130
+UniRef50_UPI0002EF0037: hypothetical protein	0.2193885572
+UniRef50_UPI0002EF0037: hypothetical protein|unclassified	0.2193885572
+UniRef50_UPI000367DF3F: hypothetical protein	0.2193509083
+UniRef50_UPI000367DF3F: hypothetical protein|unclassified	0.2193509083
+UniRef50_V6PJZ4	0.2193478667
+UniRef50_V6PJZ4|unclassified	0.2193478667
+UniRef50_Q5HC37	0.2193439957
+UniRef50_Q5HC37|unclassified	0.2193439957
+UniRef50_UPI00031E0792: hypothetical protein	0.2193236491
+UniRef50_UPI00031E0792: hypothetical protein|unclassified	0.2193236491
+UniRef50_Q1AUT6: D-ribose pyranase 2	0.2193140759
+UniRef50_Q1AUT6: D-ribose pyranase 2|unclassified	0.2193140759
+UniRef50_UPI0004675F75: hypothetical protein	0.2193017588
+UniRef50_UPI0004675F75: hypothetical protein|unclassified	0.2193017588
+UniRef50_Q39RR0: Peptidyl-tRNA hydrolase	0.2192933069
+UniRef50_Q39RR0: Peptidyl-tRNA hydrolase|unclassified	0.2192933069
+UniRef50_M4R2Z9	0.2192806748
+UniRef50_M4R2Z9|unclassified	0.2192806748
+UniRef50_UPI00046F91FB: inner-membrane translocator	0.2192788635
+UniRef50_UPI00046F91FB: inner-membrane translocator|unclassified	0.2192788635
+UniRef50_Q4L926: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.2192675813
+UniRef50_Q4L926: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.2192675813
+UniRef50_M9SH64	0.2192624314
+UniRef50_M9SH64|unclassified	0.2192624314
+UniRef50_G2DF28	0.2192570745
+UniRef50_G2DF28|unclassified	0.2192570745
+UniRef50_UPI00042BD38E: PREDICTED: 39S ribosomal protein L11, mitochondrial isoform X1	0.2192463321
+UniRef50_UPI00042BD38E: PREDICTED: 39S ribosomal protein L11, mitochondrial isoform X1|unclassified	0.2192463321
+UniRef50_V4SUC5: Sensor histidine kinase	0.2192362729
+UniRef50_V4SUC5: Sensor histidine kinase|unclassified	0.2192362729
+UniRef50_UPI0004705FAD: hypothetical protein	0.2192267080
+UniRef50_UPI0004705FAD: hypothetical protein|unclassified	0.2192267080
+UniRef50_D0LUH5: Permease	0.2192182608
+UniRef50_D0LUH5: Permease|unclassified	0.2192182608
+UniRef50_UPI000395926A: hypothetical protein	0.2192162646
+UniRef50_UPI000395926A: hypothetical protein|unclassified	0.2192162646
+UniRef50_X1R9V8: Marine sediment metagenome DNA, contig: S06H3_S19117 (Fragment)	0.2192135271
+UniRef50_X1R9V8: Marine sediment metagenome DNA, contig: S06H3_S19117 (Fragment)|unclassified	0.2192135271
+UniRef50_A0A024KIQ9	0.2192068053
+UniRef50_A0A024KIQ9|unclassified	0.2192068053
+UniRef50_S3BAZ0	0.2191955704
+UniRef50_S3BAZ0|unclassified	0.2191955704
+UniRef50_Q2TTT5	0.2191929657
+UniRef50_Q2TTT5|unclassified	0.2191929657
+UniRef50_A0A017HTG6	0.2191825071
+UniRef50_A0A017HTG6|unclassified	0.2191825071
+UniRef50_I0L9N9	0.2191777973
+UniRef50_I0L9N9|unclassified	0.2191777973
+UniRef50_T5MRB2: TIGR00370 family protein	0.2191609248
+UniRef50_T5MRB2: TIGR00370 family protein|unclassified	0.2191609248
+UniRef50_J3SKY5: DUF1643 protein	0.2191494962
+UniRef50_J3SKY5: DUF1643 protein|unclassified	0.2191494962
+UniRef50_UPI00036B87E5: hypothetical protein	0.2191459091
+UniRef50_UPI00036B87E5: hypothetical protein|unclassified	0.2191459091
+UniRef50_R1G1S0	0.2191433200
+UniRef50_R1G1S0|unclassified	0.2191433200
+UniRef50_UPI00037C1E52: hypothetical protein	0.2191284698
+UniRef50_UPI00037C1E52: hypothetical protein|unclassified	0.2191284698
+UniRef50_UPI00041C714B: mechanosensitive ion channel protein MscL	0.2191221620
+UniRef50_UPI00041C714B: mechanosensitive ion channel protein MscL|unclassified	0.2191221620
+UniRef50_UPI0001E89827: hypothetical protein	0.2191123239
+UniRef50_UPI0001E89827: hypothetical protein|unclassified	0.2191123239
+UniRef50_UPI000470124A: hypothetical protein, partial	0.2191072556
+UniRef50_UPI000470124A: hypothetical protein, partial|unclassified	0.2191072556
+UniRef50_P13254: Methionine gamma-lyase	0.2191001909
+UniRef50_P13254: Methionine gamma-lyase|unclassified	0.2191001909
+UniRef50_UPI000312D337: hypothetical protein	0.2190991832
+UniRef50_UPI000312D337: hypothetical protein|unclassified	0.2190991832
+UniRef50_UPI00024935CA: phosphoenolpyruvate-dependent sugar phosphotransferase system EIIABC, glucose specific	0.2190976955
+UniRef50_UPI00024935CA: phosphoenolpyruvate-dependent sugar phosphotransferase system EIIABC, glucose specific|unclassified	0.2190976955
+UniRef50_UPI00046D8102: chemotaxis protein CheW	0.2190909964
+UniRef50_UPI00046D8102: chemotaxis protein CheW|unclassified	0.2190909964
+UniRef50_V4R6H1: ATPase AAA	0.2190907852
+UniRef50_V4R6H1: ATPase AAA|unclassified	0.2190907852
+UniRef50_S2ZVZ8	0.2190556407
+UniRef50_S2ZVZ8|unclassified	0.2190556407
+UniRef50_R3F5Y5	0.2190473290
+UniRef50_R3F5Y5|unclassified	0.2190473290
+UniRef50_UPI0003A21E3E: chemotaxis protein CheB	0.2190196351
+UniRef50_UPI0003A21E3E: chemotaxis protein CheB|unclassified	0.2190196351
+UniRef50_A0A038GD41: ISPsy24, transposase orfB	0.2190180028
+UniRef50_A0A038GD41: ISPsy24, transposase orfB|unclassified	0.2190180028
+UniRef50_P60539: Phosphoribosyl-ATP pyrophosphatase 2	0.2189994551
+UniRef50_P60539: Phosphoribosyl-ATP pyrophosphatase 2|unclassified	0.2189994551
+UniRef50_J0GLK5	0.2189514177
+UniRef50_J0GLK5|unclassified	0.2189514177
+UniRef50_UPI00046F61F0: hypothetical protein	0.2189435423
+UniRef50_UPI00046F61F0: hypothetical protein|unclassified	0.2189435423
+UniRef50_UPI0003AEA1B7: PREDICTED: formin-like protein 5-like	0.2189327571
+UniRef50_UPI0003AEA1B7: PREDICTED: formin-like protein 5-like|unclassified	0.2189327571
+UniRef50_UPI0002B4A09C: PREDICTED: serine/arginine repetitive matrix protein 4	0.2189315839
+UniRef50_UPI0002B4A09C: PREDICTED: serine/arginine repetitive matrix protein 4|unclassified	0.2189315839
+UniRef50_UPI0003DE8B77: PREDICTED: ornithine aminotransferase, mitochondrial-like	0.2189209504
+UniRef50_UPI0003DE8B77: PREDICTED: ornithine aminotransferase, mitochondrial-like|unclassified	0.2189209504
+UniRef50_W1FRZ8: Cytochrome c-type protein TorC	0.2189192361
+UniRef50_W1FRZ8: Cytochrome c-type protein TorC|unclassified	0.2189192361
+UniRef50_UPI00047B26D6: 30S ribosomal protein S2	0.2189151375
+UniRef50_UPI00047B26D6: 30S ribosomal protein S2|unclassified	0.2189151375
+UniRef50_UPI00035C946D: hypothetical protein	0.2188987602
+UniRef50_UPI00035C946D: hypothetical protein|unclassified	0.2188987602
+UniRef50_UPI000287C995: membrane protein	0.2188923653
+UniRef50_UPI000287C995: membrane protein|unclassified	0.2188923653
+UniRef50_Q88YZ4: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 1	0.2188660147
+UniRef50_Q88YZ4: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 1|unclassified	0.2188660147
+UniRef50_UPI00035E52FC: hypothetical protein	0.2188642753
+UniRef50_UPI00035E52FC: hypothetical protein|unclassified	0.2188642753
+UniRef50_UPI0002E0940E: hypothetical protein	0.2188636307
+UniRef50_UPI0002E0940E: hypothetical protein|unclassified	0.2188636307
+UniRef50_UPI0003670FEF: hypothetical protein	0.2188631407
+UniRef50_UPI0003670FEF: hypothetical protein|unclassified	0.2188631407
+UniRef50_Q0E488: Os02g0130900 protein (Fragment)	0.2188511797
+UniRef50_Q0E488: Os02g0130900 protein (Fragment)|unclassified	0.2188511797
+UniRef50_D3FVE1	0.2188068103
+UniRef50_D3FVE1|unclassified	0.2188068103
+UniRef50_UPI0002002282: glycosyltransferase	0.2187846480
+UniRef50_UPI0002002282: glycosyltransferase|unclassified	0.2187846480
+UniRef50_UPI0004728913: multidrug transporter	0.2187807451
+UniRef50_UPI0004728913: multidrug transporter|unclassified	0.2187807451
+UniRef50_D0R2I8	0.2187562538
+UniRef50_D0R2I8|unclassified	0.2187562538
+UniRef50_A4NFW9: Dipeptide transport system permease protein	0.2187395561
+UniRef50_A4NFW9: Dipeptide transport system permease protein|unclassified	0.2187395561
+UniRef50_UPI00047B22E6: spore gernimation protein GerA	0.2187385861
+UniRef50_UPI00047B22E6: spore gernimation protein GerA|unclassified	0.2187385861
+UniRef50_E3F2D0	0.2187341851
+UniRef50_E3F2D0|unclassified	0.2187341851
+UniRef50_J7QSC4	0.2187101905
+UniRef50_J7QSC4|unclassified	0.2187101905
+UniRef50_UPI000248D6E1: macrolide glycosyltransferase	0.2187062056
+UniRef50_UPI000248D6E1: macrolide glycosyltransferase|unclassified	0.2187062056
+UniRef50_V3HI95	0.2186988611
+UniRef50_V3HI95|unclassified	0.2186988611
+UniRef50_K0TM41	0.2186627912
+UniRef50_K0TM41|unclassified	0.2186627912
+UniRef50_UPI000454108C: PREDICTED: vegetative cell wall protein gp1-like	0.2186581638
+UniRef50_UPI000454108C: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.2186581638
+UniRef50_V7IHH1	0.2186489868
+UniRef50_V7IHH1|unclassified	0.2186489868
+UniRef50_T1C070	0.2186479483
+UniRef50_T1C070|unclassified	0.2186479483
+UniRef50_S2L5Z7: Alkaline phosphatase	0.2186472500
+UniRef50_S2L5Z7: Alkaline phosphatase|unclassified	0.2186472500
+UniRef50_UPI0003B4BF11: asparaginase	0.2186430863
+UniRef50_UPI0003B4BF11: asparaginase|unclassified	0.2186430863
+UniRef50_D9W6W3: Pyruvate dehydrogenase E1 component, beta subunit (Fragment)	0.2186386116
+UniRef50_D9W6W3: Pyruvate dehydrogenase E1 component, beta subunit (Fragment)|unclassified	0.2186386116
+UniRef50_A3CVN3	0.2186291184
+UniRef50_A3CVN3|unclassified	0.2186291184
+UniRef50_UPI00036F8F78: hypothetical protein	0.2186235766
+UniRef50_UPI00036F8F78: hypothetical protein|unclassified	0.2186235766
+UniRef50_V8HHN2	0.2185859051
+UniRef50_V8HHN2|unclassified	0.2185859051
+UniRef50_UPI000371DD5B: hypothetical protein	0.2185851061
+UniRef50_UPI000371DD5B: hypothetical protein|unclassified	0.2185851061
+UniRef50_T9FTY2	0.2185660296
+UniRef50_T9FTY2|unclassified	0.2185660296
+UniRef50_UPI0003635C43: hypothetical protein	0.2185505018
+UniRef50_UPI0003635C43: hypothetical protein|unclassified	0.2185505018
+UniRef50_UPI00047DBD37: hypothetical protein	0.2185466648
+UniRef50_UPI00047DBD37: hypothetical protein|unclassified	0.2185466648
+UniRef50_UPI000472E9A8: hypothetical protein	0.2185239899
+UniRef50_UPI000472E9A8: hypothetical protein|unclassified	0.2185239899
+UniRef50_J6CQ71	0.2184997215
+UniRef50_J6CQ71|unclassified	0.2184997215
+UniRef50_E3F1G2	0.2184957342
+UniRef50_E3F1G2|unclassified	0.2184957342
+UniRef50_V0WBM0	0.2184938221
+UniRef50_V0WBM0|unclassified	0.2184938221
+UniRef50_K0S333	0.2184869359
+UniRef50_K0S333|unclassified	0.2184869359
+UniRef50_S9N8L2	0.2184840288
+UniRef50_S9N8L2|unclassified	0.2184840288
+UniRef50_A0A011RQZ9: [FeFe] hydrogenase H-cluster maturation GTPase HydF	0.2184732408
+UniRef50_A0A011RQZ9: [FeFe] hydrogenase H-cluster maturation GTPase HydF|unclassified	0.2184732408
+UniRef50_G7Z5T4	0.2184676756
+UniRef50_G7Z5T4|unclassified	0.2184676756
+UniRef50_UPI00036F6DC6: hypothetical protein	0.2184652522
+UniRef50_UPI00036F6DC6: hypothetical protein|unclassified	0.2184652522
+UniRef50_UPI0003685B62: hypothetical protein	0.2184554363
+UniRef50_UPI0003685B62: hypothetical protein|unclassified	0.2184554363
+UniRef50_UPI000255B9CD: GntR family transcriptional regulator	0.2184334294
+UniRef50_UPI000255B9CD: GntR family transcriptional regulator|unclassified	0.2184334294
+UniRef50_UPI00020D9B27: glutathione peroxidase	0.2184264323
+UniRef50_UPI00020D9B27: glutathione peroxidase|unclassified	0.2184264323
+UniRef50_Q12WN0: Probable dihydroorotate dehydrogenase B (NAD(+)), electron transfer subunit	0.2184154765
+UniRef50_Q12WN0: Probable dihydroorotate dehydrogenase B (NAD(+)), electron transfer subunit|unclassified	0.2184154765
+UniRef50_H6NZA3	0.2184110842
+UniRef50_H6NZA3|unclassified	0.2184110842
+UniRef50_UPI00042155EA: hypothetical protein	0.2184019137
+UniRef50_UPI00042155EA: hypothetical protein|unclassified	0.2184019137
+UniRef50_W0A6S5	0.2184004780
+UniRef50_W0A6S5|unclassified	0.2184004780
+UniRef50_W1DUP8: tRNA (Uridine-5-oxyacetic acid methyl ester) 34 synthase	0.2183978564
+UniRef50_W1DUP8: tRNA (Uridine-5-oxyacetic acid methyl ester) 34 synthase|unclassified	0.2183978564
+UniRef50_S4RFI1	0.2183921774
+UniRef50_S4RFI1|unclassified	0.2183921774
+UniRef50_UPI000372C1FE: hypothetical protein, partial	0.2183802340
+UniRef50_UPI000372C1FE: hypothetical protein, partial|unclassified	0.2183802340
+UniRef50_UPI000463810E: branched-chain amino acid ABC transporter ATPase	0.2183798585
+UniRef50_UPI000463810E: branched-chain amino acid ABC transporter ATPase|unclassified	0.2183798585
+UniRef50_UPI00039E983D: acetylglutamate kinase	0.2183705018
+UniRef50_UPI00039E983D: acetylglutamate kinase|unclassified	0.2183705018
+UniRef50_UPI0004628F03: hypothetical protein	0.2183479548
+UniRef50_UPI0004628F03: hypothetical protein|unclassified	0.2183479548
+UniRef50_UPI00035C6F98: hypothetical protein	0.2183420168
+UniRef50_UPI00035C6F98: hypothetical protein|unclassified	0.2183420168
+UniRef50_UPI000361C323: hypothetical protein	0.2183394231
+UniRef50_UPI000361C323: hypothetical protein|unclassified	0.2183394231
+UniRef50_UPI000414057D: hypothetical protein	0.2183209521
+UniRef50_UPI000414057D: hypothetical protein|unclassified	0.2183209521
+UniRef50_A0A016XHX8: Major tail tube protein	0.2183087224
+UniRef50_A0A016XHX8: Major tail tube protein|unclassified	0.2183087224
+UniRef50_E9ZWE3	0.2183025387
+UniRef50_E9ZWE3|unclassified	0.2183025387
+UniRef50_UPI00037F4E7D: hypothetical protein	0.2182992808
+UniRef50_UPI00037F4E7D: hypothetical protein|unclassified	0.2182992808
+UniRef50_X1DZD1: Marine sediment metagenome DNA, contig: S03H2_C03692 (Fragment)	0.2182910266
+UniRef50_X1DZD1: Marine sediment metagenome DNA, contig: S03H2_C03692 (Fragment)|unclassified	0.2182910266
+UniRef50_D7C3J3	0.2182861832
+UniRef50_D7C3J3|unclassified	0.2182861832
+UniRef50_J8FXU9	0.2182828092
+UniRef50_J8FXU9|unclassified	0.2182828092
+UniRef50_A8L089	0.2182790713
+UniRef50_A8L089|unclassified	0.2182790713
+UniRef50_D2QKN1	0.2182723329
+UniRef50_D2QKN1|unclassified	0.2182723329
+UniRef50_Q2NCV6	0.2182694625
+UniRef50_Q2NCV6|unclassified	0.2182694625
+UniRef50_UPI00047C3ECE: hypothetical protein	0.2182675941
+UniRef50_UPI00047C3ECE: hypothetical protein|unclassified	0.2182675941
+UniRef50_Q5F8G2: Biotin synthase	0.2182666891
+UniRef50_Q5F8G2: Biotin synthase|unclassified	0.2182666891
+UniRef50_UPI0002D7F533: succinyl-CoA synthetase subunit alpha	0.2182633745
+UniRef50_UPI0002D7F533: succinyl-CoA synthetase subunit alpha|unclassified	0.2182633745
+UniRef50_D6ZIJ6	0.2182556108
+UniRef50_D6ZIJ6|unclassified	0.2182556108
+UniRef50_D3E2N2	0.2182443411
+UniRef50_D3E2N2|unclassified	0.2182443411
+UniRef50_A9KBL3: NADH-quinone oxidoreductase subunit I	0.2182352913
+UniRef50_A9KBL3: NADH-quinone oxidoreductase subunit I|unclassified	0.2182352913
+UniRef50_X0PPX0	0.2182308320
+UniRef50_X0PPX0|unclassified	0.2182308320
+UniRef50_A9MLG7	0.2182125749
+UniRef50_A9MLG7|unclassified	0.2182125749
+UniRef50_J9P8U5	0.2182059198
+UniRef50_J9P8U5|unclassified	0.2182059198
+UniRef50_B7Z712: 60 kDa heat shock protein, mitochondrial	0.2181947194
+UniRef50_B7Z712: 60 kDa heat shock protein, mitochondrial|unclassified	0.2181947194
+UniRef50_UPI000380F703: hypothetical protein	0.2181884103
+UniRef50_UPI000380F703: hypothetical protein|unclassified	0.2181884103
+UniRef50_B7VQD9	0.2181879948
+UniRef50_B7VQD9|unclassified	0.2181879948
+UniRef50_UPI000477B336: ABC transporter	0.2181875051
+UniRef50_UPI000477B336: ABC transporter|unclassified	0.2181875051
+UniRef50_S1T4I3: Putative M protein	0.2181796760
+UniRef50_S1T4I3: Putative M protein|unclassified	0.2181796760
+UniRef50_Q07NE0: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.2181765926
+UniRef50_Q07NE0: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.2181765926
+UniRef50_UPI00036C7E56: hypothetical protein	0.2181689104
+UniRef50_UPI00036C7E56: hypothetical protein|unclassified	0.2181689104
+UniRef50_UPI000475A83D: hypothetical protein	0.2181653189
+UniRef50_UPI000475A83D: hypothetical protein|unclassified	0.2181653189
+UniRef50_W5XCQ0	0.2181616409
+UniRef50_W5XCQ0|unclassified	0.2181616409
+UniRef50_W6EB09: SEC-C domain-containing protein	0.2181612421
+UniRef50_W6EB09: SEC-C domain-containing protein|unclassified	0.2181612421
+UniRef50_I1ILN4	0.2181581835
+UniRef50_I1ILN4|unclassified	0.2181581835
+UniRef50_H6PCX4: Competence protein	0.2181560333
+UniRef50_H6PCX4: Competence protein|unclassified	0.2181560333
+UniRef50_UPI000374B499: hypothetical protein	0.2181554512
+UniRef50_UPI000374B499: hypothetical protein|unclassified	0.2181554512
+UniRef50_UPI0002887461: glycerol-3-phosphate regulon repressor	0.2181099865
+UniRef50_UPI0002887461: glycerol-3-phosphate regulon repressor|unclassified	0.2181099865
+UniRef50_G6RIH0: Prepilin-type N-terminal cleavage/methylation domain protein	0.2181075755
+UniRef50_G6RIH0: Prepilin-type N-terminal cleavage/methylation domain protein|unclassified	0.2181075755
+UniRef50_J1GAF0	0.2180937268
+UniRef50_J1GAF0|unclassified	0.2180937268
+UniRef50_G7SYR2: Type II secretion system protein	0.2180871638
+UniRef50_G7SYR2: Type II secretion system protein|unclassified	0.2180871638
+UniRef50_W5X487: Peptidase M42 family protein	0.2180764363
+UniRef50_W5X487: Peptidase M42 family protein|unclassified	0.2180764363
+UniRef50_UPI000375784D: hypothetical protein	0.2180669380
+UniRef50_UPI000375784D: hypothetical protein|unclassified	0.2180669380
+UniRef50_A8AIB7	0.2180418331
+UniRef50_A8AIB7|unclassified	0.2180418331
+UniRef50_UPI0004725570: hypothetical protein, partial	0.2180332086
+UniRef50_UPI0004725570: hypothetical protein, partial|unclassified	0.2180332086
+UniRef50_UPI0003018046: hypothetical protein	0.2180173083
+UniRef50_UPI0003018046: hypothetical protein|unclassified	0.2180173083
+UniRef50_P22675: Argininosuccinate lyase	0.2180055108
+UniRef50_P22675: Argininosuccinate lyase|unclassified	0.2180055108
+UniRef50_UPI00041FAA33: hypothetical protein	0.2179939003
+UniRef50_UPI00041FAA33: hypothetical protein|unclassified	0.2179939003
+UniRef50_D1DJ22	0.2179509055
+UniRef50_D1DJ22|unclassified	0.2179509055
+UniRef50_B9KHI6	0.2179393823
+UniRef50_B9KHI6|unclassified	0.2179393823
+UniRef50_P58685: Arginine repressor	0.2179376706
+UniRef50_P58685: Arginine repressor|unclassified	0.2179376706
+UniRef50_W0HIQ9: YqjK2	0.2179228451
+UniRef50_W0HIQ9: YqjK2|unclassified	0.2179228451
+UniRef50_UPI0003717A9D: molybdopterin biosynthesis protein MoeZ, partial	0.2179183253
+UniRef50_UPI0003717A9D: molybdopterin biosynthesis protein MoeZ, partial|unclassified	0.2179183253
+UniRef50_A1TRM3: Alkanesulfonate monooxygenase	0.2179079021
+UniRef50_A1TRM3: Alkanesulfonate monooxygenase|unclassified	0.2179079021
+UniRef50_UPI0001D2E14D: trehalose-phosphatase	0.2178984538
+UniRef50_UPI0001D2E14D: trehalose-phosphatase|unclassified	0.2178984538
+UniRef50_UPI00047BB80D: hypothetical protein	0.2178968430
+UniRef50_UPI00047BB80D: hypothetical protein|unclassified	0.2178968430
+UniRef50_K2JGH1	0.2178808655
+UniRef50_K2JGH1|unclassified	0.2178808655
+UniRef50_UPI00036B05F9: 3-oxoacyl-ACP synthase, partial	0.2178619127
+UniRef50_UPI00036B05F9: 3-oxoacyl-ACP synthase, partial|unclassified	0.2178619127
+UniRef50_UPI00047E3CB9: hypothetical protein, partial	0.2178535519
+UniRef50_UPI00047E3CB9: hypothetical protein, partial|unclassified	0.2178535519
+UniRef50_R7ZA70	0.2178233883
+UniRef50_R7ZA70|unclassified	0.2178233883
+UniRef50_Q3BRK9	0.2178093707
+UniRef50_Q3BRK9|unclassified	0.2178093707
+UniRef50_O84561: Dihydrolipoyl dehydrogenase	0.2178017730
+UniRef50_O84561: Dihydrolipoyl dehydrogenase|unclassified	0.2178017730
+UniRef50_X1KR95: Marine sediment metagenome DNA, contig: S03H2_S30262 (Fragment)	0.2178017518
+UniRef50_X1KR95: Marine sediment metagenome DNA, contig: S03H2_S30262 (Fragment)|unclassified	0.2178017518
+UniRef50_A0A059IRR6	0.2178015985
+UniRef50_A0A059IRR6|unclassified	0.2178015985
+UniRef50_L9L9I5: POU domain, class 6, transcription factor 2	0.2178007684
+UniRef50_L9L9I5: POU domain, class 6, transcription factor 2|unclassified	0.2178007684
+UniRef50_UPI00037ACA41: hypothetical protein	0.2177989911
+UniRef50_UPI00037ACA41: hypothetical protein|unclassified	0.2177989911
+UniRef50_D3QEB3	0.2177900047
+UniRef50_D3QEB3|unclassified	0.2177900047
+UniRef50_D3VFP0	0.2177892552
+UniRef50_D3VFP0|unclassified	0.2177892552
+UniRef50_Q166R7	0.2177662131
+UniRef50_Q166R7|unclassified	0.2177662131
+UniRef50_A0A023DV68	0.2177560041
+UniRef50_A0A023DV68|unclassified	0.2177560041
+UniRef50_U3CJN0	0.2177454776
+UniRef50_U3CJN0|unclassified	0.2177454776
+UniRef50_E0MTZ8: Replication protein C	0.2177392390
+UniRef50_E0MTZ8: Replication protein C|unclassified	0.2177392390
+UniRef50_M4FJP7	0.2177362970
+UniRef50_M4FJP7|unclassified	0.2177362970
+UniRef50_I3FHN4	0.2177257133
+UniRef50_I3FHN4|unclassified	0.2177257133
+UniRef50_UPI00035FB10F: hypothetical protein, partial	0.2177178578
+UniRef50_UPI00035FB10F: hypothetical protein, partial|unclassified	0.2177178578
+UniRef50_UPI00029B35C7: transport protein	0.2177178564
+UniRef50_UPI00029B35C7: transport protein|unclassified	0.2177178564
+UniRef50_I4CEL2: Acyl dehydratase	0.2177104716
+UniRef50_I4CEL2: Acyl dehydratase|unclassified	0.2177104716
+UniRef50_Q89U82: Crossover junction endodeoxyribonuclease RuvC	0.2177017947
+UniRef50_Q89U82: Crossover junction endodeoxyribonuclease RuvC|unclassified	0.2177017947
+UniRef50_F8JDE1	0.2176866254
+UniRef50_F8JDE1|unclassified	0.2176866254
+UniRef50_UPI0004797880: hypothetical protein	0.2176666790
+UniRef50_UPI0004797880: hypothetical protein|unclassified	0.2176666790
+UniRef50_U6M3L3	0.2176278564
+UniRef50_U6M3L3|unclassified	0.2176278564
+UniRef50_B9NTP3	0.2176104568
+UniRef50_B9NTP3|unclassified	0.2176104568
+UniRef50_C0QGG3: DctQ1	0.2176031824
+UniRef50_C0QGG3: DctQ1|unclassified	0.2176031824
+UniRef50_Q9A545: 5-hydroxyisourate hydrolase	0.2175828220
+UniRef50_Q9A545: 5-hydroxyisourate hydrolase|unclassified	0.2175828220
+UniRef50_UPI00042B9582: Lactoylglutathione lyase family protein / glyoxalase I family protein isoform 2	0.2175814594
+UniRef50_UPI00042B9582: Lactoylglutathione lyase family protein / glyoxalase I family protein isoform 2|unclassified	0.2175814594
+UniRef50_UPI000479418A: hypothetical protein	0.2175599015
+UniRef50_UPI000479418A: hypothetical protein|unclassified	0.2175599015
+UniRef50_UPI00047D3526: hypothetical protein	0.2175596371
+UniRef50_UPI00047D3526: hypothetical protein|unclassified	0.2175596371
+UniRef50_W0YUS8	0.2175515504
+UniRef50_W0YUS8|unclassified	0.2175515504
+UniRef50_UPI00016C0321: short-chain dehydrogenase	0.2175410926
+UniRef50_UPI00016C0321: short-chain dehydrogenase|unclassified	0.2175410926
+UniRef50_Z9N3V0: Tandem five-TM protein	0.2175148941
+UniRef50_Z9N3V0: Tandem five-TM protein|unclassified	0.2175148941
+UniRef50_A0A029RWH2	0.2174946704
+UniRef50_A0A029RWH2|unclassified	0.2174946704
+UniRef50_B6IRU4	0.2174666846
+UniRef50_B6IRU4|unclassified	0.2174666846
+UniRef50_UPI000469D6A1: ABC transporter ATP-binding protein	0.2174615814
+UniRef50_UPI000469D6A1: ABC transporter ATP-binding protein|unclassified	0.2174615814
+UniRef50_K6PYD7	0.2174559009
+UniRef50_K6PYD7|unclassified	0.2174559009
+UniRef50_J0IVK0	0.2174496352
+UniRef50_J0IVK0|unclassified	0.2174496352
+UniRef50_A0A036XCZ6: UPF0758 protein	0.2174326312
+UniRef50_A0A036XCZ6: UPF0758 protein|unclassified	0.2174326312
+UniRef50_UPI000361D7A9: hypothetical protein	0.2174232492
+UniRef50_UPI000361D7A9: hypothetical protein|unclassified	0.2174232492
+UniRef50_A0A017HVD6: Putative permease often clustered with de novo purine synthesis	0.2174203307
+UniRef50_A0A017HVD6: Putative permease often clustered with de novo purine synthesis|unclassified	0.2174203307
+UniRef50_Q03FS5: Predicted nucleic-acid-binding protein implicated in transcription termination	0.2173965198
+UniRef50_Q03FS5: Predicted nucleic-acid-binding protein implicated in transcription termination|unclassified	0.2173965198
+UniRef50_L7WU44	0.2173764390
+UniRef50_L7WU44|unclassified	0.2173764390
+UniRef50_A8F4E1: Phosphopantetheine adenylyltransferase	0.2173552544
+UniRef50_A8F4E1: Phosphopantetheine adenylyltransferase|unclassified	0.2173552544
+UniRef50_Q9XAQ2: Peptide deformylase 3	0.2173543755
+UniRef50_Q9XAQ2: Peptide deformylase 3|unclassified	0.2173543755
+UniRef50_UPI000469E100: hypothetical protein	0.2173469777
+UniRef50_UPI000469E100: hypothetical protein|unclassified	0.2173469777
+UniRef50_K2JWT8	0.2173346881
+UniRef50_K2JWT8|unclassified	0.2173346881
+UniRef50_UPI00046EB4A8: hypothetical protein	0.2173208869
+UniRef50_UPI00046EB4A8: hypothetical protein|unclassified	0.2173208869
+UniRef50_UPI00047D168D: amino acid permease	0.2173193542
+UniRef50_UPI00047D168D: amino acid permease|unclassified	0.2173193542
+UniRef50_UPI00041E8F2C: hypothetical protein	0.2173104789
+UniRef50_UPI00041E8F2C: hypothetical protein|unclassified	0.2173104789
+UniRef50_I2JGL6: Toluene tolerance protein Ttg2F	0.2172671250
+UniRef50_I2JGL6: Toluene tolerance protein Ttg2F|unclassified	0.2172671250
+UniRef50_UPI00037F0C00: ABC transporter permease	0.2172529541
+UniRef50_UPI00037F0C00: ABC transporter permease|unclassified	0.2172529541
+UniRef50_M5RXJ5: Threonine dehydratase	0.2172444789
+UniRef50_M5RXJ5: Threonine dehydratase|unclassified	0.2172444789
+UniRef50_A9DZ75	0.2172335187
+UniRef50_A9DZ75|unclassified	0.2172335187
+UniRef50_U6MKQ5	0.2172282222
+UniRef50_U6MKQ5|unclassified	0.2172282222
+UniRef50_UPI00036588E6: hypothetical protein	0.2172273442
+UniRef50_UPI00036588E6: hypothetical protein|unclassified	0.2172273442
+UniRef50_UPI0003B78AD1: antitermination factor NusG	0.2172269907
+UniRef50_UPI0003B78AD1: antitermination factor NusG|unclassified	0.2172269907
+UniRef50_UPI00046EFAC6: cobalamin biosynthesis protein CobW	0.2172160694
+UniRef50_UPI00046EFAC6: cobalamin biosynthesis protein CobW|unclassified	0.2172160694
+UniRef50_B4EXS5: UPF0225 protein PMI1492	0.2172149723
+UniRef50_B4EXS5: UPF0225 protein PMI1492|unclassified	0.2172149723
+UniRef50_K0DCH6	0.2172080346
+UniRef50_K0DCH6|unclassified	0.2172080346
+UniRef50_E2NTA7	0.2171807988
+UniRef50_E2NTA7|unclassified	0.2171807988
+UniRef50_UPI000378EA4C: hypothetical protein	0.2171725950
+UniRef50_UPI000378EA4C: hypothetical protein|unclassified	0.2171725950
+UniRef50_S2UVR5: Sugar ABC transporter periplasmic protein (Fragment)	0.2171651167
+UniRef50_S2UVR5: Sugar ABC transporter periplasmic protein (Fragment)|unclassified	0.2171651167
+UniRef50_UPI00041C63CB: hypothetical protein	0.2171518256
+UniRef50_UPI00041C63CB: hypothetical protein|unclassified	0.2171518256
+UniRef50_D3D5C3	0.2171162060
+UniRef50_D3D5C3|unclassified	0.2171162060
+UniRef50_B9E805	0.2171155761
+UniRef50_B9E805|unclassified	0.2171155761
+UniRef50_UPI000255934B: hypothetical protein	0.2170923905
+UniRef50_UPI000255934B: hypothetical protein|unclassified	0.2170923905
+UniRef50_UPI000475F618: branched-chain amino acid ABC transporter substrate-binding protein	0.2170724221
+UniRef50_UPI000475F618: branched-chain amino acid ABC transporter substrate-binding protein|unclassified	0.2170724221
+UniRef50_Q1RHB5: Succinate dehydrogenase cytochrome b556 subunit	0.2170525360
+UniRef50_Q1RHB5: Succinate dehydrogenase cytochrome b556 subunit|unclassified	0.2170525360
+UniRef50_A0A009FVT3	0.2170501151
+UniRef50_A0A009FVT3|unclassified	0.2170501151
+UniRef50_N0B8U9: CarD family transcriptional regulator	0.2170424429
+UniRef50_N0B8U9: CarD family transcriptional regulator|unclassified	0.2170424429
+UniRef50_UPI00026CC0A8: cell wall hydrolase	0.2170281011
+UniRef50_UPI00026CC0A8: cell wall hydrolase|unclassified	0.2170281011
+UniRef50_B3JPS9	0.2170185114
+UniRef50_B3JPS9|unclassified	0.2170185114
+UniRef50_B8D963: Orotidine 5'-phosphate decarboxylase	0.2170120206
+UniRef50_B8D963: Orotidine 5'-phosphate decarboxylase|unclassified	0.2170120206
+UniRef50_B7KX11: Alkanesulfonate monooxygenase	0.2170060402
+UniRef50_B7KX11: Alkanesulfonate monooxygenase|unclassified	0.2170060402
+UniRef50_U2D8L0	0.2169942650
+UniRef50_U2D8L0|unclassified	0.2169942650
+UniRef50_P53580: Methionine aminopeptidase B	0.2169913167
+UniRef50_P53580: Methionine aminopeptidase B|unclassified	0.2169913167
+UniRef50_UPI00034DD817: hypothetical protein	0.2169779900
+UniRef50_UPI00034DD817: hypothetical protein|unclassified	0.2169779900
+UniRef50_B9KYD3: Ribose-5-phosphate isomerase A	0.2169624335
+UniRef50_B9KYD3: Ribose-5-phosphate isomerase A|unclassified	0.2169624335
+UniRef50_UPI00036C33CA: hypothetical protein, partial	0.2169579266
+UniRef50_UPI00036C33CA: hypothetical protein, partial|unclassified	0.2169579266
+UniRef50_UPI0004043DDF: aldo/keto reductase	0.2169569361
+UniRef50_UPI0004043DDF: aldo/keto reductase|unclassified	0.2169569361
+UniRef50_F9P8X7: Conserved domain protein	0.2169466935
+UniRef50_F9P8X7: Conserved domain protein|unclassified	0.2169466935
+UniRef50_W8YQG4	0.2169386917
+UniRef50_W8YQG4|unclassified	0.2169386917
+UniRef50_UPI0003B77433: hypothetical protein	0.2169386895
+UniRef50_UPI0003B77433: hypothetical protein|unclassified	0.2169386895
+UniRef50_K2AIH3	0.2169297712
+UniRef50_K2AIH3|unclassified	0.2169297712
+UniRef50_G8PN22	0.2168581279
+UniRef50_G8PN22|unclassified	0.2168581279
+UniRef50_UPI0004748547: transcriptional regulator	0.2168534830
+UniRef50_UPI0004748547: transcriptional regulator|unclassified	0.2168534830
+UniRef50_UPI0003EF909E: hypothetical protein	0.2168390694
+UniRef50_UPI0003EF909E: hypothetical protein|unclassified	0.2168390694
+UniRef50_UPI000471F1BE: pilus assembly protein	0.2168383168
+UniRef50_UPI000471F1BE: pilus assembly protein|unclassified	0.2168383168
+UniRef50_UPI00035066DC: PREDICTED: atherin-like	0.2168262910
+UniRef50_UPI00035066DC: PREDICTED: atherin-like|unclassified	0.2168262910
+UniRef50_UPI0003ADD90A: PREDICTED: serine/arginine repetitive matrix protein 3-like	0.2167825559
+UniRef50_UPI0003ADD90A: PREDICTED: serine/arginine repetitive matrix protein 3-like|unclassified	0.2167825559
+UniRef50_R7IGH5	0.2167799662
+UniRef50_R7IGH5|unclassified	0.2167799662
+UniRef50_Q835V5: Ribonuclease HIII	0.2167693406
+UniRef50_Q835V5: Ribonuclease HIII|unclassified	0.2167693406
+UniRef50_UPI000479D66D: isomerase	0.2167557202
+UniRef50_UPI000479D66D: isomerase|unclassified	0.2167557202
+UniRef50_V9TT48	0.2167311858
+UniRef50_V9TT48|unclassified	0.2167311858
+UniRef50_L8ME45	0.2166904342
+UniRef50_L8ME45|unclassified	0.2166904342
+UniRef50_B2W432: Predicted protein	0.2166780225
+UniRef50_B2W432: Predicted protein|unclassified	0.2166780225
+UniRef50_UPI00035C2648: acetyltransferase	0.2166764313
+UniRef50_UPI00035C2648: acetyltransferase|unclassified	0.2166764313
+UniRef50_B3EMR0: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.2166751931
+UniRef50_B3EMR0: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.2166751931
+UniRef50_D0D6C8: Conserved domain protein	0.2166614878
+UniRef50_D0D6C8: Conserved domain protein|unclassified	0.2166614878
+UniRef50_B8ZUE2: GMP synthase [glutamine-hydrolyzing]	0.2166576018
+UniRef50_B8ZUE2: GMP synthase [glutamine-hydrolyzing]|unclassified	0.2166576018
+UniRef50_D7GUI6: TRAP transporter solute receptor, TAXI family	0.2166529570
+UniRef50_D7GUI6: TRAP transporter solute receptor, TAXI family|unclassified	0.2166529570
+UniRef50_UPI0003B6312D: NADH-ubiquinone oxidoreductase subunit 6	0.2166273205
+UniRef50_UPI0003B6312D: NADH-ubiquinone oxidoreductase subunit 6|unclassified	0.2166273205
+UniRef50_H1W242	0.2166245061
+UniRef50_H1W242|unclassified	0.2166245061
+UniRef50_UPI00037EDF86: hypothetical protein	0.2166199331
+UniRef50_UPI00037EDF86: hypothetical protein|unclassified	0.2166199331
+UniRef50_N5A969	0.2165989802
+UniRef50_N5A969|unclassified	0.2165989802
+UniRef50_B6J6M4: Putative Holliday junction resolvase	0.2165877059
+UniRef50_B6J6M4: Putative Holliday junction resolvase|unclassified	0.2165877059
+UniRef50_T0ZWW9: FeS assembly ATPase SufC	0.2165570301
+UniRef50_T0ZWW9: FeS assembly ATPase SufC|unclassified	0.2165570301
+UniRef50_P47269: Fructose-bisphosphate aldolase	0.2165465016
+UniRef50_P47269: Fructose-bisphosphate aldolase|unclassified	0.2165465016
+UniRef50_A8LB23	0.2165378541
+UniRef50_A8LB23|unclassified	0.2165378541
+UniRef50_F7TAG9	0.2165287296
+UniRef50_F7TAG9|unclassified	0.2165287296
+UniRef50_UPI0003B538EF: oxidoreductase, partial	0.2165280427
+UniRef50_UPI0003B538EF: oxidoreductase, partial|unclassified	0.2165280427
+UniRef50_UPI000369BED8: hypothetical protein	0.2165237271
+UniRef50_UPI000369BED8: hypothetical protein|unclassified	0.2165237271
+UniRef50_V2ZHA3	0.2165122345
+UniRef50_V2ZHA3|unclassified	0.2165122345
+UniRef50_G7U7R4	0.2165043913
+UniRef50_G7U7R4|unclassified	0.2165043913
+UniRef50_UPI000363A7D4: hypothetical protein	0.2165026473
+UniRef50_UPI000363A7D4: hypothetical protein|unclassified	0.2165026473
+UniRef50_G5ZYS2	0.2165019347
+UniRef50_G5ZYS2|unclassified	0.2165019347
+UniRef50_Q3JSR8: Alkanesulfonate monooxygenase	0.2165011486
+UniRef50_Q3JSR8: Alkanesulfonate monooxygenase|unclassified	0.2165011486
+UniRef50_UPI0003AAE1F5: hypothetical protein	0.2164734217
+UniRef50_UPI0003AAE1F5: hypothetical protein|unclassified	0.2164734217
+UniRef50_R5C6F9	0.2164635556
+UniRef50_R5C6F9|unclassified	0.2164635556
+UniRef50_UPI0003B577FD: ATP-dependent DNA helicase PcrA	0.2164450971
+UniRef50_UPI0003B577FD: ATP-dependent DNA helicase PcrA|unclassified	0.2164450971
+UniRef50_W1MRL2	0.2163950160
+UniRef50_W1MRL2|unclassified	0.2163950160
+UniRef50_UPI0003B60958: porin	0.2163937224
+UniRef50_UPI0003B60958: porin|unclassified	0.2163937224
+UniRef50_UPI0002628E30: Sua5/YciO/YrdC/YwlC family protein	0.2163907897
+UniRef50_UPI0002628E30: Sua5/YciO/YrdC/YwlC family protein|unclassified	0.2163907897
+UniRef50_R2TC50	0.2163693766
+UniRef50_R2TC50|unclassified	0.2163693766
+UniRef50_N1MKS0	0.2163631120
+UniRef50_N1MKS0|unclassified	0.2163631120
+UniRef50_UPI00028934E4: ATP:corrinoid adenosyltransferase	0.2163560935
+UniRef50_UPI00028934E4: ATP:corrinoid adenosyltransferase|unclassified	0.2163560935
+UniRef50_F2DNI7: Predicted protein	0.2163454456
+UniRef50_F2DNI7: Predicted protein|unclassified	0.2163454456
+UniRef50_UPI00040EFCE1: hypothetical protein	0.2163300935
+UniRef50_UPI00040EFCE1: hypothetical protein|unclassified	0.2163300935
+UniRef50_UPI0003ADB717: PREDICTED: basic proline-rich protein-like	0.2163160545
+UniRef50_UPI0003ADB717: PREDICTED: basic proline-rich protein-like|unclassified	0.2163160545
+UniRef50_W7SCU3	0.2162838571
+UniRef50_W7SCU3|unclassified	0.2162838571
+UniRef50_A4SUL7: ParA family protein	0.2162703620
+UniRef50_A4SUL7: ParA family protein|unclassified	0.2162703620
+UniRef50_UPI000346A071: hypothetical protein	0.2162681544
+UniRef50_UPI000346A071: hypothetical protein|unclassified	0.2162681544
+UniRef50_X6L368	0.2162534973
+UniRef50_X6L368|unclassified	0.2162534973
+UniRef50_UPI00041694C7: Rrf2 family transcriptional regulator	0.2162474068
+UniRef50_UPI00041694C7: Rrf2 family transcriptional regulator|unclassified	0.2162474068
+UniRef50_G1L4H7	0.2162389210
+UniRef50_G1L4H7|unclassified	0.2162389210
+UniRef50_UPI00046E6D08: hypothetical protein	0.2162346804
+UniRef50_UPI00046E6D08: hypothetical protein|unclassified	0.2162346804
+UniRef50_G5JYZ7	0.2162306692
+UniRef50_G5JYZ7|unclassified	0.2162306692
+UniRef50_UPI00047BCAFB: hypothetical protein	0.2162199688
+UniRef50_UPI00047BCAFB: hypothetical protein|unclassified	0.2162199688
+UniRef50_A6LT23: Phosphoribosyl-AMP cyclohydrolase	0.2162073994
+UniRef50_A6LT23: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.2162073994
+UniRef50_R1FIG9	0.2162044754
+UniRef50_R1FIG9|unclassified	0.2162044754
+UniRef50_X1GXU9: Marine sediment metagenome DNA, contig: S03H2_S13902	0.2162000930
+UniRef50_X1GXU9: Marine sediment metagenome DNA, contig: S03H2_S13902|unclassified	0.2162000930
+UniRef50_UPI00037F4CD4: hypothetical protein	0.2161928442
+UniRef50_UPI00037F4CD4: hypothetical protein|unclassified	0.2161928442
+UniRef50_UPI0004259DFA: 50S ribosomal protein L25	0.2161807391
+UniRef50_UPI0004259DFA: 50S ribosomal protein L25|unclassified	0.2161807391
+UniRef50_UPI00035E18AF: hypothetical protein	0.2161736247
+UniRef50_UPI00035E18AF: hypothetical protein|unclassified	0.2161736247
+UniRef50_UPI000466F31B: hypothetical protein	0.2161712311
+UniRef50_UPI000466F31B: hypothetical protein|unclassified	0.2161712311
+UniRef50_X6L0W1	0.2161643267
+UniRef50_X6L0W1|unclassified	0.2161643267
+UniRef50_UPI0002FD279B: hypothetical protein	0.2161622984
+UniRef50_UPI0002FD279B: hypothetical protein|unclassified	0.2161622984
+UniRef50_V5SFC5	0.2161083195
+UniRef50_V5SFC5|unclassified	0.2161083195
+UniRef50_UPI0002E5FB4D: cytochrome C oxidase assembly protein	0.2161064752
+UniRef50_UPI0002E5FB4D: cytochrome C oxidase assembly protein|unclassified	0.2161064752
+UniRef50_UPI0003B30675: signal peptidase, partial	0.2161026597
+UniRef50_UPI0003B30675: signal peptidase, partial|unclassified	0.2161026597
+UniRef50_UPI00029B0F13: NADH dehydrogenase subunit D	0.2160971876
+UniRef50_UPI00029B0F13: NADH dehydrogenase subunit D|unclassified	0.2160971876
+UniRef50_UPI00037EA2E6: 50S ribosomal protein L22	0.2160912409
+UniRef50_UPI00037EA2E6: 50S ribosomal protein L22|unclassified	0.2160912409
+UniRef50_A0A059ITJ5: ABC transporter substrate-binding protein	0.2160753177
+UniRef50_A0A059ITJ5: ABC transporter substrate-binding protein|unclassified	0.2160753177
+UniRef50_R7YIE4	0.2160578589
+UniRef50_R7YIE4|unclassified	0.2160578589
+UniRef50_A0A059ISV6	0.2160471357
+UniRef50_A0A059ISV6|unclassified	0.2160471357
+UniRef50_UPI0004755CF8: hypothetical protein	0.2160448886
+UniRef50_UPI0004755CF8: hypothetical protein|unclassified	0.2160448886
+UniRef50_W4LMX2	0.2160091885
+UniRef50_W4LMX2|unclassified	0.2160091885
+UniRef50_C4S258: Proline/betaine transporter	0.2159977646
+UniRef50_C4S258: Proline/betaine transporter|unclassified	0.2159977646
+UniRef50_W5N4D2	0.2159827214
+UniRef50_W5N4D2|unclassified	0.2159827214
+UniRef50_UPI000395CB52	0.2159665323
+UniRef50_UPI000395CB52|unclassified	0.2159665323
+UniRef50_UPI00047ED515: cob(I)yrinic acid a c-diamide adenosyltransferase	0.2159633865
+UniRef50_UPI00047ED515: cob(I)yrinic acid a c-diamide adenosyltransferase|unclassified	0.2159633865
+UniRef50_W5FIG8	0.2159569025
+UniRef50_W5FIG8|unclassified	0.2159569025
+UniRef50_D2QMM0	0.2159540275
+UniRef50_D2QMM0|unclassified	0.2159540275
+UniRef50_C2CQD0: Bacteriocin, lactococcin 972 family	0.2159406245
+UniRef50_C2CQD0: Bacteriocin, lactococcin 972 family|unclassified	0.2159406245
+UniRef50_A6FPP5: Putative GAF sensor protein	0.2159382940
+UniRef50_A6FPP5: Putative GAF sensor protein|unclassified	0.2159382940
+UniRef50_A0A058ZFM5	0.2159181912
+UniRef50_A0A058ZFM5|unclassified	0.2159181912
+UniRef50_T1A1M3: Cobyrinic acid a,c-diamide synthase (Fragment)	0.2159154037
+UniRef50_T1A1M3: Cobyrinic acid a,c-diamide synthase (Fragment)|unclassified	0.2159154037
+UniRef50_Q9HHK0: Vng6359h	0.2159010275
+UniRef50_Q9HHK0: Vng6359h|unclassified	0.2159010275
+UniRef50_B7LPT8	0.2158869125
+UniRef50_B7LPT8|unclassified	0.2158869125
+UniRef50_A0A010RF54	0.2158846006
+UniRef50_A0A010RF54|unclassified	0.2158846006
+UniRef50_UPI0001FFF8A9: hypothetical protein, partial	0.2158810128
+UniRef50_UPI0001FFF8A9: hypothetical protein, partial|unclassified	0.2158810128
+UniRef50_P21911: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial	0.2158693044
+UniRef50_P21911: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial|unclassified	0.2158693044
+UniRef50_I1FUG0	0.2158526786
+UniRef50_I1FUG0|unclassified	0.2158526786
+UniRef50_UPI000016720D: hisitidine kinase	0.2158471028
+UniRef50_UPI000016720D: hisitidine kinase|unclassified	0.2158471028
+UniRef50_B7NUR7	0.2158461786
+UniRef50_B7NUR7|unclassified	0.2158461786
+UniRef50_UPI0004778BE4: hypothetical protein	0.2157900135
+UniRef50_UPI0004778BE4: hypothetical protein|unclassified	0.2157900135
+UniRef50_A8I3Y9: NADH-quinone oxidoreductase subunit C	0.2157788202
+UniRef50_A8I3Y9: NADH-quinone oxidoreductase subunit C|unclassified	0.2157788202
+UniRef50_I0VCL3	0.2157764645
+UniRef50_I0VCL3|unclassified	0.2157764645
+UniRef50_W1CHZ6	0.2157748572
+UniRef50_W1CHZ6|unclassified	0.2157748572
+UniRef50_UPI00047B72AD: hypothetical protein	0.2157491170
+UniRef50_UPI00047B72AD: hypothetical protein|unclassified	0.2157491170
+UniRef50_R5J8I0: Chaperone ClpB	0.2157490201
+UniRef50_R5J8I0: Chaperone ClpB|unclassified	0.2157490201
+UniRef50_UPI000262729C: glutathione ABC transporter permease	0.2157297518
+UniRef50_UPI000262729C: glutathione ABC transporter permease|unclassified	0.2157297518
+UniRef50_UPI00037394E3: hypothetical protein	0.2157277343
+UniRef50_UPI00037394E3: hypothetical protein|unclassified	0.2157277343
+UniRef50_A8LH75: Putative FHA domain containing protein	0.2156949055
+UniRef50_A8LH75: Putative FHA domain containing protein|unclassified	0.2156949055
+UniRef50_E8R1M1	0.2156945926
+UniRef50_E8R1M1|unclassified	0.2156945926
+UniRef50_UPI00037C4A3F: hypothetical protein	0.2156927423
+UniRef50_UPI00037C4A3F: hypothetical protein|unclassified	0.2156927423
+UniRef50_Q4L5N9: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.2156626478
+UniRef50_Q4L5N9: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.2156626478
+UniRef50_V6Q2X3	0.2156502124
+UniRef50_V6Q2X3|unclassified	0.2156502124
+UniRef50_Q6APZ3: Prolipoprotein diacylglyceryl transferase	0.2156403947
+UniRef50_Q6APZ3: Prolipoprotein diacylglyceryl transferase|unclassified	0.2156403947
+UniRef50_UPI0003778C22: hypothetical protein	0.2156342773
+UniRef50_UPI0003778C22: hypothetical protein|unclassified	0.2156342773
+UniRef50_UPI00039B45CB: hypothetical protein	0.2156237918
+UniRef50_UPI00039B45CB: hypothetical protein|unclassified	0.2156237918
+UniRef50_Q6FWS8: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial	0.2156172868
+UniRef50_Q6FWS8: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial|unclassified	0.2156172868
+UniRef50_Q3JIQ1	0.2156148102
+UniRef50_Q3JIQ1|unclassified	0.2156148102
+UniRef50_V6M0A3: Deacetylase	0.2156054160
+UniRef50_V6M0A3: Deacetylase|unclassified	0.2156054160
+UniRef50_Q24751: ATP synthase subunit beta, mitochondrial (Fragment)	0.2155990302
+UniRef50_Q24751: ATP synthase subunit beta, mitochondrial (Fragment)|unclassified	0.2155990302
+UniRef50_K6DHJ7: Dehydratase	0.2155914953
+UniRef50_K6DHJ7: Dehydratase|unclassified	0.2155914953
+UniRef50_Q1I7G9	0.2155848465
+UniRef50_Q1I7G9|unclassified	0.2155848465
+UniRef50_U1JUA1	0.2155735685
+UniRef50_U1JUA1|unclassified	0.2155735685
+UniRef50_E3JA76	0.2155407829
+UniRef50_E3JA76|unclassified	0.2155407829
+UniRef50_UPI000191271C: Rac prophage; protein, partial	0.2155372820
+UniRef50_UPI000191271C: Rac prophage; protein, partial|unclassified	0.2155372820
+UniRef50_S5KGZ8	0.2155256167
+UniRef50_S5KGZ8|unclassified	0.2155256167
+UniRef50_UPI000262ABB1: hypothetical protein	0.2155203309
+UniRef50_UPI000262ABB1: hypothetical protein|unclassified	0.2155203309
+UniRef50_H8GRT7	0.2155129958
+UniRef50_H8GRT7|unclassified	0.2155129958
+UniRef50_I0I8R1	0.2155125527
+UniRef50_I0I8R1|unclassified	0.2155125527
+UniRef50_B6ITD9	0.2154548922
+UniRef50_B6ITD9|unclassified	0.2154548922
+UniRef50_E3ZSD6: DoxX family protein	0.2154396698
+UniRef50_E3ZSD6: DoxX family protein|unclassified	0.2154396698
+UniRef50_UPI00035CD8A4: hypothetical protein	0.2154305519
+UniRef50_UPI00035CD8A4: hypothetical protein|unclassified	0.2154305519
+UniRef50_F3A9K7: Prepilin-type N-terminal cleavage/methylation domain-containing protein	0.2154075870
+UniRef50_F3A9K7: Prepilin-type N-terminal cleavage/methylation domain-containing protein|unclassified	0.2154075870
+UniRef50_UPI0003671810: hypothetical protein	0.2154025869
+UniRef50_UPI0003671810: hypothetical protein|unclassified	0.2154025869
+UniRef50_UPI0003F82984: damage-inducible protein CinA	0.2153849547
+UniRef50_UPI0003F82984: damage-inducible protein CinA|unclassified	0.2153849547
+UniRef50_G4B342: Hemolysin	0.2153799677
+UniRef50_G4B342: Hemolysin|unclassified	0.2153799677
+UniRef50_X2MA47	0.2153760438
+UniRef50_X2MA47|unclassified	0.2153760438
+UniRef50_UPI000422F603: organic hydroperoxide resistance protein	0.2153751842
+UniRef50_UPI000422F603: organic hydroperoxide resistance protein|unclassified	0.2153751842
+UniRef50_UPI00026282B1: Dipeptide transport system permease protein DppC, partial	0.2153517160
+UniRef50_UPI00026282B1: Dipeptide transport system permease protein DppC, partial|unclassified	0.2153517160
+UniRef50_UPI00036FB667: hypothetical protein	0.2153501370
+UniRef50_UPI00036FB667: hypothetical protein|unclassified	0.2153501370
+UniRef50_X2GQX5	0.2153418562
+UniRef50_X2GQX5|unclassified	0.2153418562
+UniRef50_E0Y2A1: TRAP-type C4-dicarboxylate transport system, large permease component	0.2153349263
+UniRef50_E0Y2A1: TRAP-type C4-dicarboxylate transport system, large permease component|unclassified	0.2153349263
+UniRef50_I2B7K4: Nickel/cobalt efflux protein RcnB	0.2153237592
+UniRef50_I2B7K4: Nickel/cobalt efflux protein RcnB|unclassified	0.2153237592
+UniRef50_UPI0002652BE7: PREDICTED: NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial-like	0.2153174640
+UniRef50_UPI0002652BE7: PREDICTED: NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial-like|unclassified	0.2153174640
+UniRef50_S5XPJ1: Phage portal protein	0.2153141892
+UniRef50_S5XPJ1: Phage portal protein|unclassified	0.2153141892
+UniRef50_J2PCH3	0.2153060730
+UniRef50_J2PCH3|unclassified	0.2153060730
+UniRef50_N0B087: Transporter	0.2153017345
+UniRef50_N0B087: Transporter|unclassified	0.2153017345
+UniRef50_A7X456: Truncated transposase	0.2152999296
+UniRef50_A7X456: Truncated transposase|unclassified	0.2152999296
+UniRef50_UPI0003B6334D: hypothetical protein, partial	0.2152816921
+UniRef50_UPI0003B6334D: hypothetical protein, partial|unclassified	0.2152816921
+UniRef50_UPI00046730D7: hypothetical protein	0.2152627448
+UniRef50_UPI00046730D7: hypothetical protein|unclassified	0.2152627448
+UniRef50_W5X5C9	0.2152480874
+UniRef50_W5X5C9|unclassified	0.2152480874
+UniRef50_Q5FJI8: Acyl carrier protein	0.2152400729
+UniRef50_Q5FJI8: Acyl carrier protein|unclassified	0.2152400729
+UniRef50_V7C557	0.2152095942
+UniRef50_V7C557|unclassified	0.2152095942
+UniRef50_E0WTV5: 3-hydroxydecanoyl-(Acyl carrier protein) dehydratase	0.2152053890
+UniRef50_E0WTV5: 3-hydroxydecanoyl-(Acyl carrier protein) dehydratase|unclassified	0.2152053890
+UniRef50_C1CT76	0.2151922399
+UniRef50_C1CT76|unclassified	0.2151922399
+UniRef50_V7EKK2	0.2151704378
+UniRef50_V7EKK2|unclassified	0.2151704378
+UniRef50_S7TQA5: UPF0260 protein ycgN	0.2151489311
+UniRef50_S7TQA5: UPF0260 protein ycgN|unclassified	0.2151489311
+UniRef50_UPI00016A5A21: ABC transporter permease	0.2151446335
+UniRef50_UPI00016A5A21: ABC transporter permease|unclassified	0.2151446335
+UniRef50_Q9EXV1: Coenzyme PQQ synthesis protein B	0.2151424038
+UniRef50_Q9EXV1: Coenzyme PQQ synthesis protein B|unclassified	0.2151424038
+UniRef50_UPI00047D70C4: hypothetical protein	0.2151302162
+UniRef50_UPI00047D70C4: hypothetical protein|unclassified	0.2151302162
+UniRef50_UPI000374BA37: hypothetical protein	0.2151152348
+UniRef50_UPI000374BA37: hypothetical protein|unclassified	0.2151152348
+UniRef50_UPI00029A8E8E: type I restriction enzyme EcoKI subunit R	0.2150900173
+UniRef50_UPI00029A8E8E: type I restriction enzyme EcoKI subunit R|unclassified	0.2150900173
+UniRef50_E6VQD8: Usg family protein	0.2150888776
+UniRef50_E6VQD8: Usg family protein|unclassified	0.2150888776
+UniRef50_UPI0003A20063: DNA-3-methyladenine glycosylase	0.2150815180
+UniRef50_UPI0003A20063: DNA-3-methyladenine glycosylase|unclassified	0.2150815180
+UniRef50_UPI0003342DB7: PREDICTED: EF-hand calcium-binding domain-containing protein 6	0.2150653727
+UniRef50_UPI0003342DB7: PREDICTED: EF-hand calcium-binding domain-containing protein 6|unclassified	0.2150653727
+UniRef50_A3SGM5	0.2150570914
+UniRef50_A3SGM5|unclassified	0.2150570914
+UniRef50_UPI000413C1F5: hypothetical protein	0.2150408557
+UniRef50_UPI000413C1F5: hypothetical protein|unclassified	0.2150408557
+UniRef50_UPI000381BBB2: hypothetical protein	0.2149801800
+UniRef50_UPI000381BBB2: hypothetical protein|unclassified	0.2149801800
+UniRef50_UPI0003B3D0B4: hypothetical protein, partial	0.2149793335
+UniRef50_UPI0003B3D0B4: hypothetical protein, partial|unclassified	0.2149793335
+UniRef50_UPI000463E2C6: 3-hydroxyacyl-CoA dehydrogenase	0.2149639096
+UniRef50_UPI000463E2C6: 3-hydroxyacyl-CoA dehydrogenase|unclassified	0.2149639096
+UniRef50_X0WP46: Marine sediment metagenome DNA, contig: S01H1_S29319 (Fragment)	0.2149585862
+UniRef50_X0WP46: Marine sediment metagenome DNA, contig: S01H1_S29319 (Fragment)|unclassified	0.2149585862
+UniRef50_A0A058TCG1: Threonine dehydratase (Fragment)	0.2149519613
+UniRef50_A0A058TCG1: Threonine dehydratase (Fragment)|unclassified	0.2149519613
+UniRef50_M0W567	0.2149438442
+UniRef50_M0W567|unclassified	0.2149438442
+UniRef50_UPI0003737ECB: hypothetical protein	0.2149404510
+UniRef50_UPI0003737ECB: hypothetical protein|unclassified	0.2149404510
+UniRef50_A9BJZ9: Imidazole glycerol phosphate synthase subunit HisF	0.2149366448
+UniRef50_A9BJZ9: Imidazole glycerol phosphate synthase subunit HisF|unclassified	0.2149366448
+UniRef50_UPI0002DB9C9F: transposase	0.2148794304
+UniRef50_UPI0002DB9C9F: transposase|unclassified	0.2148794304
+UniRef50_D2SC05	0.2148612425
+UniRef50_D2SC05|unclassified	0.2148612425
+UniRef50_UPI000303A99F: hypothetical protein	0.2148573177
+UniRef50_UPI000303A99F: hypothetical protein|unclassified	0.2148573177
+UniRef50_UPI00035E6B92: transcriptional regulator	0.2148335729
+UniRef50_UPI00035E6B92: transcriptional regulator|unclassified	0.2148335729
+UniRef50_UPI00029A22E1: rRNA adenine dimethylase	0.2148228168
+UniRef50_UPI00029A22E1: rRNA adenine dimethylase|unclassified	0.2148228168
+UniRef50_UPI0003B72D82: hypothetical protein	0.2148162046
+UniRef50_UPI0003B72D82: hypothetical protein|unclassified	0.2148162046
+UniRef50_I6H011	0.2148005013
+UniRef50_I6H011|unclassified	0.2148005013
+UniRef50_UPI000473EFF0: UDP-4-dehydro-6-deoxy-2-acetamido-D-glucose 4-reductase, partial	0.2147993013
+UniRef50_UPI000473EFF0: UDP-4-dehydro-6-deoxy-2-acetamido-D-glucose 4-reductase, partial|unclassified	0.2147993013
+UniRef50_UPI0004787665: amino acid ABC transporter permease	0.2147925710
+UniRef50_UPI0004787665: amino acid ABC transporter permease|unclassified	0.2147925710
+UniRef50_C8S461	0.2147848892
+UniRef50_C8S461|unclassified	0.2147848892
+UniRef50_A0A037XI45: Esterase	0.2147832168
+UniRef50_A0A037XI45: Esterase|unclassified	0.2147832168
+UniRef50_E8TBV9: Usg family protein	0.2147763620
+UniRef50_E8TBV9: Usg family protein|unclassified	0.2147763620
+UniRef50_E5VT69: HD domain-containing protein	0.2147512539
+UniRef50_E5VT69: HD domain-containing protein|unclassified	0.2147512539
+UniRef50_G3A3C4	0.2147237084
+UniRef50_G3A3C4|unclassified	0.2147237084
+UniRef50_A3MA74	0.2147159715
+UniRef50_A3MA74|unclassified	0.2147159715
+UniRef50_UPI00035D6469: isomerase	0.2146829703
+UniRef50_UPI00035D6469: isomerase|unclassified	0.2146829703
+UniRef50_F0G1L1: Rhodanese domain-containing protein (Fragment)	0.2146782507
+UniRef50_F0G1L1: Rhodanese domain-containing protein (Fragment)|unclassified	0.2146782507
+UniRef50_C7J8K6: Os11g0245100 protein	0.2146745497
+UniRef50_C7J8K6: Os11g0245100 protein|unclassified	0.2146745497
+UniRef50_P61649: Accessory gene regulator protein B	0.2146681165
+UniRef50_P61649: Accessory gene regulator protein B|unclassified	0.2146681165
+UniRef50_R1DBW6	0.2146614330
+UniRef50_R1DBW6|unclassified	0.2146614330
+UniRef50_K8AZZ3	0.2146518238
+UniRef50_K8AZZ3|unclassified	0.2146518238
+UniRef50_D3P4C5	0.2146460032
+UniRef50_D3P4C5|unclassified	0.2146460032
+UniRef50_X1CKD2: Marine sediment metagenome DNA, contig: S01H4_L06983 (Fragment)	0.2146428970
+UniRef50_X1CKD2: Marine sediment metagenome DNA, contig: S01H4_L06983 (Fragment)|unclassified	0.2146428970
+UniRef50_U6G6W4	0.2146383344
+UniRef50_U6G6W4|unclassified	0.2146383344
+UniRef50_Q31F68: Probable chemoreceptor glutamine deamidase CheD	0.2146161237
+UniRef50_Q31F68: Probable chemoreceptor glutamine deamidase CheD|unclassified	0.2146161237
+UniRef50_Q11D53: NAD(P)H dehydrogenase (Quinone)	0.2146020425
+UniRef50_Q11D53: NAD(P)H dehydrogenase (Quinone)|unclassified	0.2146020425
+UniRef50_H5BTV1: MASE1 family protein	0.2145981963
+UniRef50_H5BTV1: MASE1 family protein|unclassified	0.2145981963
+UniRef50_UPI000409B662: hypothetical protein	0.2145855221
+UniRef50_UPI000409B662: hypothetical protein|unclassified	0.2145855221
+UniRef50_V5PK16: Response regulator receiver protein ExsF	0.2145838204
+UniRef50_V5PK16: Response regulator receiver protein ExsF|unclassified	0.2145838204
+UniRef50_Q72BV2: Phosphopantetheine adenylyltransferase	0.2145620079
+UniRef50_Q72BV2: Phosphopantetheine adenylyltransferase|unclassified	0.2145620079
+UniRef50_UPI0003D0AE67: PREDICTED: serine/arginine repetitive matrix protein 1-like	0.2145561123
+UniRef50_UPI0003D0AE67: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	0.2145561123
+UniRef50_UPI0003774096: hypothetical protein	0.2145466034
+UniRef50_UPI0003774096: hypothetical protein|unclassified	0.2145466034
+UniRef50_UPI00036A4215: hypothetical protein	0.2145092952
+UniRef50_UPI00036A4215: hypothetical protein|unclassified	0.2145092952
+UniRef50_V3FXV4	0.2144900870
+UniRef50_V3FXV4|unclassified	0.2144900870
+UniRef50_S9RVU8: Mobile element protein	0.2144731673
+UniRef50_S9RVU8: Mobile element protein|unclassified	0.2144731673
+UniRef50_UPI0003683730: choline dehydrogenase, partial	0.2144585741
+UniRef50_UPI0003683730: choline dehydrogenase, partial|unclassified	0.2144585741
+UniRef50_C0Z8I6: Mannitol-1-phosphate 5-dehydrogenase	0.2144545748
+UniRef50_C0Z8I6: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.2144545748
+UniRef50_X0TKS1: Marine sediment metagenome DNA, contig: S01H1_L08189 (Fragment)	0.2144500218
+UniRef50_X0TKS1: Marine sediment metagenome DNA, contig: S01H1_L08189 (Fragment)|unclassified	0.2144500218
+UniRef50_W6QW46	0.2144483801
+UniRef50_W6QW46|unclassified	0.2144483801
+UniRef50_UPI000380B790: hypothetical protein	0.2144259547
+UniRef50_UPI000380B790: hypothetical protein|unclassified	0.2144259547
+UniRef50_UPI00047763C1: hypothetical protein, partial	0.2144139908
+UniRef50_UPI00047763C1: hypothetical protein, partial|unclassified	0.2144139908
+UniRef50_C1MXK8: Predicted protein	0.2144133837
+UniRef50_C1MXK8: Predicted protein|unclassified	0.2144133837
+UniRef50_W3YDU9: PF08349 domain protein (Fragment)	0.2144095487
+UniRef50_W3YDU9: PF08349 domain protein (Fragment)|unclassified	0.2144095487
+UniRef50_UPI0003765993: hypothetical protein	0.2143928530
+UniRef50_UPI0003765993: hypothetical protein|unclassified	0.2143928530
+UniRef50_E8RPH6	0.2143867396
+UniRef50_E8RPH6|unclassified	0.2143867396
+UniRef50_Q58997: Homoserine dehydrogenase	0.2143811337
+UniRef50_Q58997: Homoserine dehydrogenase|unclassified	0.2143811337
+UniRef50_UPI000470ABCD: hypothetical protein, partial	0.2143479564
+UniRef50_UPI000470ABCD: hypothetical protein, partial|unclassified	0.2143479564
+UniRef50_K2Q5M0	0.2143427618
+UniRef50_K2Q5M0|unclassified	0.2143427618
+UniRef50_UPI00035AFE0D: hypothetical protein	0.2143414612
+UniRef50_UPI00035AFE0D: hypothetical protein|unclassified	0.2143414612
+UniRef50_A0A022G4L0	0.2143301931
+UniRef50_A0A022G4L0|unclassified	0.2143301931
+UniRef50_W1FDC9: Putative lipoprotein yceB	0.2143282945
+UniRef50_W1FDC9: Putative lipoprotein yceB|unclassified	0.2143282945
+UniRef50_UPI00036D6CA9: hypothetical protein	0.2143220683
+UniRef50_UPI00036D6CA9: hypothetical protein|unclassified	0.2143220683
+UniRef50_M2TAB3: PhbF	0.2143149129
+UniRef50_M2TAB3: PhbF|unclassified	0.2143149129
+UniRef50_UPI0002481AAE: ATP-dependent DNA helicase	0.2143081743
+UniRef50_UPI0002481AAE: ATP-dependent DNA helicase|unclassified	0.2143081743
+UniRef50_R5UZC6	0.2142932827
+UniRef50_R5UZC6|unclassified	0.2142932827
+UniRef50_UPI000378DC18: hypothetical protein	0.2142900343
+UniRef50_UPI000378DC18: hypothetical protein|unclassified	0.2142900343
+UniRef50_F3R4K9: Phosphoglycerate mutase family protein	0.2142832039
+UniRef50_F3R4K9: Phosphoglycerate mutase family protein|unclassified	0.2142832039
+UniRef50_A3U1G0	0.2142799905
+UniRef50_A3U1G0|unclassified	0.2142799905
+UniRef50_S9RZ09	0.2142790052
+UniRef50_S9RZ09|unclassified	0.2142790052
+UniRef50_A9SQY9: Predicted protein	0.2142727673
+UniRef50_A9SQY9: Predicted protein|unclassified	0.2142727673
+UniRef50_U5USI5: Alanine dehydrogenase/PNT, N-terminal domain protein	0.2142696434
+UniRef50_U5USI5: Alanine dehydrogenase/PNT, N-terminal domain protein|unclassified	0.2142696434
+UniRef50_UPI0003B78451: Fur family transcriptional regulator	0.2142625408
+UniRef50_UPI0003B78451: Fur family transcriptional regulator|unclassified	0.2142625408
+UniRef50_UPI0003C1128E	0.2142605967
+UniRef50_UPI0003C1128E|unclassified	0.2142605967
+UniRef50_UPI00046A4480: hypothetical protein	0.2142479472
+UniRef50_UPI00046A4480: hypothetical protein|unclassified	0.2142479472
+UniRef50_UPI0003B36054: riboflavin synthase subunit alpha	0.2142441578
+UniRef50_UPI0003B36054: riboflavin synthase subunit alpha|unclassified	0.2142441578
+UniRef50_UPI000372D704: hypothetical protein, partial	0.2142372095
+UniRef50_UPI000372D704: hypothetical protein, partial|unclassified	0.2142372095
+UniRef50_UPI0003B5173E: hypothetical protein	0.2142241446
+UniRef50_UPI0003B5173E: hypothetical protein|unclassified	0.2142241446
+UniRef50_E4PYB9: Replication initiator protein	0.2142155043
+UniRef50_E4PYB9: Replication initiator protein|unclassified	0.2142155043
+UniRef50_UPI0003745A56: hypothetical protein	0.2142033967
+UniRef50_UPI0003745A56: hypothetical protein|unclassified	0.2142033967
+UniRef50_Q1DD82	0.2141929419
+UniRef50_Q1DD82|unclassified	0.2141929419
+UniRef50_UPI00035DAFCB: hypothetical protein	0.2141750506
+UniRef50_UPI00035DAFCB: hypothetical protein|unclassified	0.2141750506
+UniRef50_UPI000377E584: hypothetical protein	0.2141608119
+UniRef50_UPI000377E584: hypothetical protein|unclassified	0.2141608119
+UniRef50_R8ACP2	0.2141518412
+UniRef50_R8ACP2|unclassified	0.2141518412
+UniRef50_A0A011MYY6: Trans-aconitate 2-methyltransferase	0.2141356136
+UniRef50_A0A011MYY6: Trans-aconitate 2-methyltransferase|unclassified	0.2141356136
+UniRef50_UPI0004752E25: hypothetical protein, partial	0.2141268896
+UniRef50_UPI0004752E25: hypothetical protein, partial|unclassified	0.2141268896
+UniRef50_UPI000311159F: hypothetical protein	0.2141266074
+UniRef50_UPI000311159F: hypothetical protein|unclassified	0.2141266074
+UniRef50_J3P8C0	0.2141051507
+UniRef50_J3P8C0|unclassified	0.2141051507
+UniRef50_UPI000466DFF8: hypothetical protein, partial	0.2141033120
+UniRef50_UPI000466DFF8: hypothetical protein, partial|unclassified	0.2141033120
+UniRef50_Q1YT70	0.2141014452
+UniRef50_Q1YT70|unclassified	0.2141014452
+UniRef50_UPI000474972D: hypothetical protein, partial	0.2140940762
+UniRef50_UPI000474972D: hypothetical protein, partial|unclassified	0.2140940762
+UniRef50_A3SKB3: Possible FlgD protein	0.2140702269
+UniRef50_A3SKB3: Possible FlgD protein|unclassified	0.2140702269
+UniRef50_K6WI65	0.2140618361
+UniRef50_K6WI65|unclassified	0.2140618361
+UniRef50_UPI000462ED7D: hypothetical protein	0.2140591959
+UniRef50_UPI000462ED7D: hypothetical protein|unclassified	0.2140591959
+UniRef50_P50867: Cysteine synthase	0.2140442214
+UniRef50_P50867: Cysteine synthase|unclassified	0.2140442214
+UniRef50_UPI000477A811: hypothetical protein, partial	0.2140430812
+UniRef50_UPI000477A811: hypothetical protein, partial|unclassified	0.2140430812
+UniRef50_C2U781	0.2140257716
+UniRef50_C2U781|unclassified	0.2140257716
+UniRef50_UPI00047127B6: hypothetical protein	0.2140250343
+UniRef50_UPI00047127B6: hypothetical protein|unclassified	0.2140250343
+UniRef50_UPI0003B6F95F: tRNA delta(2)-isopentenylpyrophosphate transferase	0.2139936589
+UniRef50_UPI0003B6F95F: tRNA delta(2)-isopentenylpyrophosphate transferase|unclassified	0.2139936589
+UniRef50_K4RP34	0.2139872632
+UniRef50_K4RP34|unclassified	0.2139872632
+UniRef50_A9EEA9	0.2139764359
+UniRef50_A9EEA9|unclassified	0.2139764359
+UniRef50_UPI000255769E: alginate O-acetyltransferase	0.2139519688
+UniRef50_UPI000255769E: alginate O-acetyltransferase|unclassified	0.2139519688
+UniRef50_UPI00026573D2: PREDICTED: cystathionine beta-synthase-like	0.2139342839
+UniRef50_UPI00026573D2: PREDICTED: cystathionine beta-synthase-like|unclassified	0.2139342839
+UniRef50_A3DJK3: Energy-coupling factor transporter ATP-binding protein EcfA1	0.2139276621
+UniRef50_A3DJK3: Energy-coupling factor transporter ATP-binding protein EcfA1|unclassified	0.2139276621
+UniRef50_B8D0I2: Ribosomal RNA small subunit methyltransferase A	0.2139174807
+UniRef50_B8D0I2: Ribosomal RNA small subunit methyltransferase A|unclassified	0.2139174807
+UniRef50_A1TL07: Phosphoribosyl-AMP cyclohydrolase	0.2139117174
+UniRef50_A1TL07: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.2139117174
+UniRef50_UPI000350AD27: PREDICTED: tripartite motif-containing protein 65-like isoform X1	0.2139055079
+UniRef50_UPI000350AD27: PREDICTED: tripartite motif-containing protein 65-like isoform X1|unclassified	0.2139055079
+UniRef50_F4H3F2: ComEC/Rec2-related protein	0.2139037433
+UniRef50_F4H3F2: ComEC/Rec2-related protein|unclassified	0.2139037433
+UniRef50_C1DPC3: Cyclic pyranopterin monophosphate synthase accessory protein	0.2138954337
+UniRef50_C1DPC3: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	0.2138954337
+UniRef50_D4H299	0.2138844113
+UniRef50_D4H299|unclassified	0.2138844113
+UniRef50_R1D321	0.2138843260
+UniRef50_R1D321|unclassified	0.2138843260
+UniRef50_A0A031GDY5	0.2138768302
+UniRef50_A0A031GDY5|unclassified	0.2138768302
+UniRef50_UPI00046969A6: glutamine amidotransferase	0.2138700941
+UniRef50_UPI00046969A6: glutamine amidotransferase|unclassified	0.2138700941
+UniRef50_A0A021ZQ34: ThiC-associated domain protein	0.2138634431
+UniRef50_A0A021ZQ34: ThiC-associated domain protein|unclassified	0.2138634431
+UniRef50_UPI0002887E40: blue-light sensor BLUF	0.2138573404
+UniRef50_UPI0002887E40: blue-light sensor BLUF|unclassified	0.2138573404
+UniRef50_Q28W71	0.2138537736
+UniRef50_Q28W71|unclassified	0.2138537736
+UniRef50_A9D5S1: MazG family protein	0.2138453230
+UniRef50_A9D5S1: MazG family protein|unclassified	0.2138453230
+UniRef50_K5C8L6: Protein containing YCII-related domain protein	0.2138269526
+UniRef50_K5C8L6: Protein containing YCII-related domain protein|unclassified	0.2138269526
+UniRef50_UPI00047B8A9C: DeoR faimly transcriptional regulator	0.2137710874
+UniRef50_UPI00047B8A9C: DeoR faimly transcriptional regulator|unclassified	0.2137710874
+UniRef50_D7I2L2: Enzyme involved in the deoxyxylulose pathway of isoprenoid biosynthesis	0.2137542128
+UniRef50_D7I2L2: Enzyme involved in the deoxyxylulose pathway of isoprenoid biosynthesis|unclassified	0.2137542128
+UniRef50_Q8RKZ9	0.2137322723
+UniRef50_Q8RKZ9|unclassified	0.2137322723
+UniRef50_F9NYB1: RHS repeat-associated core domain protein	0.2137208805
+UniRef50_F9NYB1: RHS repeat-associated core domain protein|g__Propionibacterium.s__Propionibacterium_acnes	0.2137208805
+UniRef50_J7LBB4	0.2137155468
+UniRef50_J7LBB4|unclassified	0.2137155468
+UniRef50_UPI00036197F3: hypothetical protein	0.2137150128
+UniRef50_UPI00036197F3: hypothetical protein|unclassified	0.2137150128
+UniRef50_UPI0004292B6B: hypothetical protein	0.2136804700
+UniRef50_UPI0004292B6B: hypothetical protein|unclassified	0.2136804700
+UniRef50_UPI00037A2C8B: hypothetical protein	0.2136669342
+UniRef50_UPI00037A2C8B: hypothetical protein|unclassified	0.2136669342
+UniRef50_UPI00031EEB9E: hypothetical protein	0.2136455663
+UniRef50_UPI00031EEB9E: hypothetical protein|unclassified	0.2136455663
+UniRef50_UPI00037DD9E3: hypothetical protein, partial	0.2136278189
+UniRef50_UPI00037DD9E3: hypothetical protein, partial|unclassified	0.2136278189
+UniRef50_W7WQY0: Excinuclease ABC subunit C	0.2136082536
+UniRef50_W7WQY0: Excinuclease ABC subunit C|unclassified	0.2136082536
+UniRef50_Q07HH8	0.2135750317
+UniRef50_Q07HH8|unclassified	0.2135750317
+UniRef50_N4S0B6: Type-1V conjugative transfer system mating pair stabilization family protein	0.2135675449
+UniRef50_N4S0B6: Type-1V conjugative transfer system mating pair stabilization family protein|unclassified	0.2135675449
+UniRef50_UPI000344CD3A: hypothetical protein	0.2135513288
+UniRef50_UPI000344CD3A: hypothetical protein|unclassified	0.2135513288
+UniRef50_Q6LMR2	0.2135468784
+UniRef50_Q6LMR2|unclassified	0.2135468784
+UniRef50_Q9Y9H2: Tryptophan synthase beta chain 2	0.2135368952
+UniRef50_Q9Y9H2: Tryptophan synthase beta chain 2|unclassified	0.2135368952
+UniRef50_UPI00046665BB: DNA invertase, partial	0.2135338642
+UniRef50_UPI00046665BB: DNA invertase, partial|unclassified	0.2135338642
+UniRef50_F4LK38: DJ-1 family protein	0.2135210146
+UniRef50_F4LK38: DJ-1 family protein|unclassified	0.2135210146
+UniRef50_C1DFE7: Anti-sigma factor, FecR family	0.2135047315
+UniRef50_C1DFE7: Anti-sigma factor, FecR family|unclassified	0.2135047315
+UniRef50_R1EIT1	0.2134841647
+UniRef50_R1EIT1|unclassified	0.2134841647
+UniRef50_UPI0001850CF7: glycine/betaine ABC transporter ATPase	0.2134782786
+UniRef50_UPI0001850CF7: glycine/betaine ABC transporter ATPase|unclassified	0.2134782786
+UniRef50_K7TDT2: Putative transposase	0.2134742024
+UniRef50_K7TDT2: Putative transposase|unclassified	0.2134742024
+UniRef50_UPI00035F6F3F: hypothetical protein	0.2134696573
+UniRef50_UPI00035F6F3F: hypothetical protein|unclassified	0.2134696573
+UniRef50_W6AJ07	0.2134696132
+UniRef50_W6AJ07|unclassified	0.2134696132
+UniRef50_UPI0004658DB3: hypothetical protein	0.2134611719
+UniRef50_UPI0004658DB3: hypothetical protein|unclassified	0.2134611719
+UniRef50_Q74JW2: Peptide deformylase	0.2134572698
+UniRef50_Q74JW2: Peptide deformylase|unclassified	0.2134572698
+UniRef50_E6UGZ2: Shikimate/quinate 5-dehydrogenase	0.2134457499
+UniRef50_E6UGZ2: Shikimate/quinate 5-dehydrogenase|unclassified	0.2134457499
+UniRef50_Q2IL14: NADH-quinone oxidoreductase subunit I 2	0.2134371853
+UniRef50_Q2IL14: NADH-quinone oxidoreductase subunit I 2|unclassified	0.2134371853
+UniRef50_UPI00047023BD: O-succinylhomoserine sulfhydrylase	0.2134351508
+UniRef50_UPI00047023BD: O-succinylhomoserine sulfhydrylase|unclassified	0.2134351508
+UniRef50_C7QIF7	0.2134027911
+UniRef50_C7QIF7|unclassified	0.2134027911
+UniRef50_UPI00046CE54A: hypothetical protein	0.2134012308
+UniRef50_UPI00046CE54A: hypothetical protein|unclassified	0.2134012308
+UniRef50_L7MDX7: Putative tick transposon (Fragment)	0.2133900377
+UniRef50_L7MDX7: Putative tick transposon (Fragment)|unclassified	0.2133900377
+UniRef50_H1KC86	0.2133885481
+UniRef50_H1KC86|unclassified	0.2133885481
+UniRef50_UPI000370EAC4: hypothetical protein	0.2133858684
+UniRef50_UPI000370EAC4: hypothetical protein|unclassified	0.2133858684
+UniRef50_UPI00046D09E1: hypothetical protein	0.2133733660
+UniRef50_UPI00046D09E1: hypothetical protein|unclassified	0.2133733660
+UniRef50_B7L0N9	0.2133148621
+UniRef50_B7L0N9|unclassified	0.2133148621
+UniRef50_A3U2E2: Conserved hypothetical membrane/transport protein	0.2132854571
+UniRef50_A3U2E2: Conserved hypothetical membrane/transport protein|unclassified	0.2132854571
+UniRef50_UPI000310AB4D: hypothetical protein	0.2132761786
+UniRef50_UPI000310AB4D: hypothetical protein|unclassified	0.2132761786
+UniRef50_UPI00034F2599: PREDICTED: LOW QUALITY PROTEIN: protein FAM22C-like	0.2132750924
+UniRef50_UPI00034F2599: PREDICTED: LOW QUALITY PROTEIN: protein FAM22C-like|unclassified	0.2132750924
+UniRef50_UPI00027F2DD6	0.2132693212
+UniRef50_UPI00027F2DD6|unclassified	0.2132693212
+UniRef50_D3AW81	0.2132650885
+UniRef50_D3AW81|unclassified	0.2132650885
+UniRef50_H5YAN4: Transposase	0.2132230164
+UniRef50_H5YAN4: Transposase|unclassified	0.2132230164
+UniRef50_B3QK58	0.2131820988
+UniRef50_B3QK58|unclassified	0.2131820988
+UniRef50_A0A023X8D6: Transposase	0.2131584606
+UniRef50_A0A023X8D6: Transposase|unclassified	0.2131584606
+UniRef50_V4RKF1	0.2131416402
+UniRef50_V4RKF1|unclassified	0.2131416402
+UniRef50_B6A831: Putative L-xylulose-5-phosphate 3-epimerase-like (Fragment)	0.2131339605
+UniRef50_B6A831: Putative L-xylulose-5-phosphate 3-epimerase-like (Fragment)|unclassified	0.2131339605
+UniRef50_F6CYP6	0.2131267017
+UniRef50_F6CYP6|unclassified	0.2131267017
+UniRef50_UPI00038FD033: KDP operon transcriptional regulatory protein KdpE	0.2131188727
+UniRef50_UPI00038FD033: KDP operon transcriptional regulatory protein KdpE|unclassified	0.2131188727
+UniRef50_UPI0004773247: hypothetical protein	0.2131099712
+UniRef50_UPI0004773247: hypothetical protein|unclassified	0.2131099712
+UniRef50_J1QS47: Protein ydeP	0.2130967123
+UniRef50_J1QS47: Protein ydeP|unclassified	0.2130967123
+UniRef50_Q1QSW5: UPF0125 protein Csal_3099	0.2130936969
+UniRef50_Q1QSW5: UPF0125 protein Csal_3099|unclassified	0.2130936969
+UniRef50_R0DQ91	0.2130899431
+UniRef50_R0DQ91|unclassified	0.2130899431
+UniRef50_UPI0004724CFA: hypothetical protein	0.2130883212
+UniRef50_UPI0004724CFA: hypothetical protein|unclassified	0.2130883212
+UniRef50_UPI00036308A8: hypothetical protein	0.2130754797
+UniRef50_UPI00036308A8: hypothetical protein|unclassified	0.2130754797
+UniRef50_UPI000467B0DE: arginine ABC transporter ATP-binding protein	0.2130505979
+UniRef50_UPI000467B0DE: arginine ABC transporter ATP-binding protein|unclassified	0.2130505979
+UniRef50_UPI0003658182: hypothetical protein, partial	0.2130362908
+UniRef50_UPI0003658182: hypothetical protein, partial|unclassified	0.2130362908
+UniRef50_UPI00046930D8: LuxR family transcriptional regulator	0.2130112141
+UniRef50_UPI00046930D8: LuxR family transcriptional regulator|unclassified	0.2130112141
+UniRef50_J1GJV1: Arsenate reductase	0.2130060924
+UniRef50_J1GJV1: Arsenate reductase|unclassified	0.2130060924
+UniRef50_R4LN97	0.2130053165
+UniRef50_R4LN97|unclassified	0.2130053165
+UniRef50_O24990: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI	0.2129998273
+UniRef50_O24990: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI|unclassified	0.2129998273
+UniRef50_W0DVZ6	0.2129946138
+UniRef50_W0DVZ6|unclassified	0.2129946138
+UniRef50_A7HXD7: Carbon monoxide dehydrogenase subunit G	0.2129926415
+UniRef50_A7HXD7: Carbon monoxide dehydrogenase subunit G|unclassified	0.2129926415
+UniRef50_UPI0004713F87: hypothetical protein, partial	0.2129872048
+UniRef50_UPI0004713F87: hypothetical protein, partial|unclassified	0.2129872048
+UniRef50_UPI0001FFEA7A: ferredoxin	0.2129836215
+UniRef50_UPI0001FFEA7A: ferredoxin|unclassified	0.2129836215
+UniRef50_G8AZS6	0.2129640268
+UniRef50_G8AZS6|unclassified	0.2129640268
+UniRef50_A6TQQ4	0.2129639776
+UniRef50_A6TQQ4|unclassified	0.2129639776
+UniRef50_F4AHD9: Transcriptional regulator, HxlR family	0.2129479682
+UniRef50_F4AHD9: Transcriptional regulator, HxlR family|unclassified	0.2129479682
+UniRef50_UPI00046F9B01: hypothetical protein, partial	0.2129388607
+UniRef50_UPI00046F9B01: hypothetical protein, partial|unclassified	0.2129388607
+UniRef50_UPI0003816883: hypothetical protein	0.2129306421
+UniRef50_UPI0003816883: hypothetical protein|unclassified	0.2129306421
+UniRef50_V4G5H5: Heat shock protein IbpA	0.2129296958
+UniRef50_V4G5H5: Heat shock protein IbpA|unclassified	0.2129296958
+UniRef50_A5VZX6	0.2129286385
+UniRef50_A5VZX6|unclassified	0.2129286385
+UniRef50_K0R3E3	0.2129275131
+UniRef50_K0R3E3|unclassified	0.2129275131
+UniRef50_R8AT74: SecA regulator SecM	0.2129250695
+UniRef50_R8AT74: SecA regulator SecM|unclassified	0.2129250695
+UniRef50_B4UIZ5: Putative 3-methyladenine DNA glycosylase	0.2129020297
+UniRef50_B4UIZ5: Putative 3-methyladenine DNA glycosylase|unclassified	0.2129020297
+UniRef50_Q0W358: Imidazole glycerol phosphate synthase subunit HisF	0.2128955996
+UniRef50_Q0W358: Imidazole glycerol phosphate synthase subunit HisF|unclassified	0.2128955996
+UniRef50_X9N9G2	0.2128828156
+UniRef50_X9N9G2|unclassified	0.2128828156
+UniRef50_UPI0003345F86	0.2128725966
+UniRef50_UPI0003345F86|unclassified	0.2128725966
+UniRef50_UPI000371C01D: hypothetical protein	0.2128575226
+UniRef50_UPI000371C01D: hypothetical protein|unclassified	0.2128575226
+UniRef50_UPI000380E239: hypothetical protein	0.2128434174
+UniRef50_UPI000380E239: hypothetical protein|unclassified	0.2128434174
+UniRef50_UPI0003C8AB56: PREDICTED: 39S ribosomal protein L36, mitochondrial	0.2128383789
+UniRef50_UPI0003C8AB56: PREDICTED: 39S ribosomal protein L36, mitochondrial|unclassified	0.2128383789
+UniRef50_W4RVL5: N-acetyl-L,L-diaminopimelate deacetylase	0.2128192062
+UniRef50_W4RVL5: N-acetyl-L,L-diaminopimelate deacetylase|unclassified	0.2128192062
+UniRef50_UPI00028881DE: methylcitrate synthase, partial	0.2127947869
+UniRef50_UPI00028881DE: methylcitrate synthase, partial|unclassified	0.2127947869
+UniRef50_Q15ZR3: Transcriptional regulator, HxlR family	0.2127824109
+UniRef50_Q15ZR3: Transcriptional regulator, HxlR family|unclassified	0.2127824109
+UniRef50_UPI000472D6DF: hypothetical protein	0.2127656381
+UniRef50_UPI000472D6DF: hypothetical protein|unclassified	0.2127656381
+UniRef50_Q2IJC6: Hydroxyacylglutathione hydrolase	0.2127614262
+UniRef50_Q2IJC6: Hydroxyacylglutathione hydrolase|unclassified	0.2127614262
+UniRef50_UPI0003B702A5: peptide ABC transporter permease	0.2127486850
+UniRef50_UPI0003B702A5: peptide ABC transporter permease|unclassified	0.2127486850
+UniRef50_UPI0001695299: ABC transporter-like protein	0.2127422592
+UniRef50_UPI0001695299: ABC transporter-like protein|unclassified	0.2127422592
+UniRef50_N3Z787: C-terminal, D2-small domain, of ClpB family protein	0.2127361352
+UniRef50_N3Z787: C-terminal, D2-small domain, of ClpB family protein|unclassified	0.2127361352
+UniRef50_UPI0003B7B5C8: nitrogen regulatory protein P-II 1	0.2127331226
+UniRef50_UPI0003B7B5C8: nitrogen regulatory protein P-II 1|unclassified	0.2127331226
+UniRef50_UPI00046EE5F1: multidrug ABC transporter ATP-binding protein	0.2127076652
+UniRef50_UPI00046EE5F1: multidrug ABC transporter ATP-binding protein|unclassified	0.2127076652
+UniRef50_W7CV44	0.2127063869
+UniRef50_W7CV44|unclassified	0.2127063869
+UniRef50_T0MVJ6	0.2127040014
+UniRef50_T0MVJ6|unclassified	0.2127040014
+UniRef50_N4WPQ2	0.2126570253
+UniRef50_N4WPQ2|unclassified	0.2126570253
+UniRef50_Q9S2E2	0.2126413547
+UniRef50_Q9S2E2|unclassified	0.2126413547
+UniRef50_M1EC07: Adrenergic, beta-1-, receptor (Fragment)	0.2126399040
+UniRef50_M1EC07: Adrenergic, beta-1-, receptor (Fragment)|unclassified	0.2126399040
+UniRef50_UPI00045E6B47: Fis family transcriptional regulator	0.2126332924
+UniRef50_UPI00045E6B47: Fis family transcriptional regulator|unclassified	0.2126332924
+UniRef50_UPI000255C814: AraC family transcriptional regulator	0.2126313698
+UniRef50_UPI000255C814: AraC family transcriptional regulator|unclassified	0.2126313698
+UniRef50_Q54277: Dihydrofolate reductase	0.2125750755
+UniRef50_Q54277: Dihydrofolate reductase|unclassified	0.2125750755
+UniRef50_UPI0003B5AFF7: phosphohydrolase	0.2125672849
+UniRef50_UPI0003B5AFF7: phosphohydrolase|unclassified	0.2125672849
+UniRef50_P34030: DNA gyrase subunit A (Fragment)	0.2125658170
+UniRef50_P34030: DNA gyrase subunit A (Fragment)|unclassified	0.2125658170
+UniRef50_UPI000422021F: regulator	0.2125452955
+UniRef50_UPI000422021F: regulator|unclassified	0.2125452955
+UniRef50_UPI0003B56187: histidine kinase	0.2125261165
+UniRef50_UPI0003B56187: histidine kinase|unclassified	0.2125261165
+UniRef50_UPI0004725981: hypothetical protein	0.2125166606
+UniRef50_UPI0004725981: hypothetical protein|unclassified	0.2125166606
+UniRef50_A0A024JAB4: Similar to Saccharomyces cerevisiae YDR513W GRX2 Cytoplasmic glutaredoxin, thioltransferase,glutathione-dependent disulfide oxidoreductase involved in maintaining redox state of target proteins	0.2124957976
+UniRef50_A0A024JAB4: Similar to Saccharomyces cerevisiae YDR513W GRX2 Cytoplasmic glutaredoxin, thioltransferase,glutathione-dependent disulfide oxidoreductase involved in maintaining redox state of target proteins|unclassified	0.2124957976
+UniRef50_Q87XR0: Pyridoxine/pyridoxamine 5'-phosphate oxidase	0.2124729435
+UniRef50_Q87XR0: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	0.2124729435
+UniRef50_UPI00037D995A: hypothetical protein	0.2124399213
+UniRef50_UPI00037D995A: hypothetical protein|unclassified	0.2124399213
+UniRef50_UPI000467A91C: alkaline phosphatase, partial	0.2124354200
+UniRef50_UPI000467A91C: alkaline phosphatase, partial|unclassified	0.2124354200
+UniRef50_T1WAX8	0.2124195194
+UniRef50_T1WAX8|unclassified	0.2124195194
+UniRef50_UPI0002556225: TetR family transcriptional regulator	0.2124148417
+UniRef50_UPI0002556225: TetR family transcriptional regulator|unclassified	0.2124148417
+UniRef50_UPI0002885BAE: ABC transporter substrate-binding protein	0.2124037717
+UniRef50_UPI0002885BAE: ABC transporter substrate-binding protein|unclassified	0.2124037717
+UniRef50_Q8D7Y9: Putative phosphoenolpyruvate synthase regulatory protein	0.2123833543
+UniRef50_Q8D7Y9: Putative phosphoenolpyruvate synthase regulatory protein|unclassified	0.2123833543
+UniRef50_UPI0003B77732: ABC transporter permease	0.2123695392
+UniRef50_UPI0003B77732: ABC transporter permease|unclassified	0.2123695392
+UniRef50_Q6F7E4: Shikimate kinase	0.2123631835
+UniRef50_Q6F7E4: Shikimate kinase|unclassified	0.2123631835
+UniRef50_UPI0002628ACD: parB-like partition proteins	0.2123608420
+UniRef50_UPI0002628ACD: parB-like partition proteins|unclassified	0.2123608420
+UniRef50_A8AKQ6	0.2123531301
+UniRef50_A8AKQ6|unclassified	0.2123531301
+UniRef50_A5UHD3: Bifunctional protein GlmU	0.2123443617
+UniRef50_A5UHD3: Bifunctional protein GlmU|unclassified	0.2123443617
+UniRef50_UPI000428E453: multidrug transporter	0.2123375005
+UniRef50_UPI000428E453: multidrug transporter|unclassified	0.2123375005
+UniRef50_B3QYB6: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.2123199865
+UniRef50_B3QYB6: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.2123199865
+UniRef50_UPI00042A54EF: 2,5-diketo-D-gluconic acid reductase	0.2123108980
+UniRef50_UPI00042A54EF: 2,5-diketo-D-gluconic acid reductase|unclassified	0.2123108980
+UniRef50_D9XI44	0.2123085205
+UniRef50_D9XI44|unclassified	0.2123085205
+UniRef50_UPI00047768ED: hypothetical protein	0.2123002049
+UniRef50_UPI00047768ED: hypothetical protein|unclassified	0.2123002049
+UniRef50_K5XM67: Transglutaminase	0.2122946017
+UniRef50_K5XM67: Transglutaminase|unclassified	0.2122946017
+UniRef50_UPI0004704B3B: ABC transporter permease	0.2122875251
+UniRef50_UPI0004704B3B: ABC transporter permease|unclassified	0.2122875251
+UniRef50_UPI0004661C80: hypothetical protein, partial	0.2122635500
+UniRef50_UPI0004661C80: hypothetical protein, partial|unclassified	0.2122635500
+UniRef50_K6GS41: Winged helix-turn helix	0.2122597523
+UniRef50_K6GS41: Winged helix-turn helix|unclassified	0.2122597523
+UniRef50_A2WFF0	0.2122524188
+UniRef50_A2WFF0|unclassified	0.2122524188
+UniRef50_S5JZI7: Purine catabolism regulatory protein	0.2122459647
+UniRef50_S5JZI7: Purine catabolism regulatory protein|unclassified	0.2122459647
+UniRef50_S2QNE0: Glycerol-3-phosphate dehydrogenase (Fragment)	0.2122450050
+UniRef50_S2QNE0: Glycerol-3-phosphate dehydrogenase (Fragment)|unclassified	0.2122450050
+UniRef50_UPI0004023FD0: ABC transporter	0.2122420283
+UniRef50_UPI0004023FD0: ABC transporter|unclassified	0.2122420283
+UniRef50_D8JRT9: Peptidase S15	0.2122031162
+UniRef50_D8JRT9: Peptidase S15|unclassified	0.2122031162
+UniRef50_V7EEX5: SOUL heme-binding protein	0.2121778013
+UniRef50_V7EEX5: SOUL heme-binding protein|unclassified	0.2121778013
+UniRef50_UPI00036ADFC3: hypothetical protein	0.2121576760
+UniRef50_UPI00036ADFC3: hypothetical protein|unclassified	0.2121576760
+UniRef50_Q0C3U4: DNA-directed RNA polymerase subunit omega	0.2121544048
+UniRef50_Q0C3U4: DNA-directed RNA polymerase subunit omega|unclassified	0.2121544048
+UniRef50_UPI0004679EFE: 3-dehydroquinate dehydratase	0.2121482615
+UniRef50_UPI0004679EFE: 3-dehydroquinate dehydratase|unclassified	0.2121482615
+UniRef50_M3F6X1	0.2121470368
+UniRef50_M3F6X1|unclassified	0.2121470368
+UniRef50_UPI000462D767: hypothetical protein	0.2121395132
+UniRef50_UPI000462D767: hypothetical protein|unclassified	0.2121395132
+UniRef50_UPI0003783041: hypothetical protein	0.2121281378
+UniRef50_UPI0003783041: hypothetical protein|unclassified	0.2121281378
+UniRef50_A7HCR8: tRNA dimethylallyltransferase	0.2121141667
+UniRef50_A7HCR8: tRNA dimethylallyltransferase|unclassified	0.2121141667
+UniRef50_U6M2X4	0.2121116478
+UniRef50_U6M2X4|unclassified	0.2121116478
+UniRef50_UPI000363CB4B: hypothetical protein	0.2121088952
+UniRef50_UPI000363CB4B: hypothetical protein|unclassified	0.2121088952
+UniRef50_UPI000441E63E: PREDICTED: probable transcriptional regulator ycf27-like, partial	0.2120950535
+UniRef50_UPI000441E63E: PREDICTED: probable transcriptional regulator ycf27-like, partial|unclassified	0.2120950535
+UniRef50_A0A024EL91	0.2120813752
+UniRef50_A0A024EL91|unclassified	0.2120813752
+UniRef50_UPI00023B1DD2: PREDICTED: LOW QUALITY PROTEIN: medium-chain-fatty-acid--CoA ligase-like	0.2120659498
+UniRef50_UPI00023B1DD2: PREDICTED: LOW QUALITY PROTEIN: medium-chain-fatty-acid--CoA ligase-like|unclassified	0.2120659498
+UniRef50_A0P5U4	0.2120598204
+UniRef50_A0P5U4|unclassified	0.2120598204
+UniRef50_UPI00036DAA04: hypothetical protein	0.2120474623
+UniRef50_UPI00036DAA04: hypothetical protein|unclassified	0.2120474623
+UniRef50_N0AAU3: DSBA-like thioredoxin domain protein	0.2120377986
+UniRef50_N0AAU3: DSBA-like thioredoxin domain protein|unclassified	0.2120377986
+UniRef50_F2LRZ3	0.2120268078
+UniRef50_F2LRZ3|unclassified	0.2120268078
+UniRef50_B2GCR2: Chorismate synthase	0.2120017886
+UniRef50_B2GCR2: Chorismate synthase|unclassified	0.2120017886
+UniRef50_UPI0003B3717C: folylpolyglutamate synthase, partial	0.2119633133
+UniRef50_UPI0003B3717C: folylpolyglutamate synthase, partial|unclassified	0.2119633133
+UniRef50_UPI0003C13F57: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit A, chloroplastic/mitochondrial-like	0.2119627228
+UniRef50_UPI0003C13F57: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit A, chloroplastic/mitochondrial-like|unclassified	0.2119627228
+UniRef50_UPI0003F0C550: PREDICTED: phosphoglycerate kinase-like	0.2119526306
+UniRef50_UPI0003F0C550: PREDICTED: phosphoglycerate kinase-like|unclassified	0.2119526306
+UniRef50_UPI000365A05A: hypothetical protein	0.2119442649
+UniRef50_UPI000365A05A: hypothetical protein|unclassified	0.2119442649
+UniRef50_UPI000362278F: hypothetical protein	0.2119315855
+UniRef50_UPI000362278F: hypothetical protein|unclassified	0.2119315855
+UniRef50_UPI0003749DD6: hypothetical protein, partial	0.2119246360
+UniRef50_UPI0003749DD6: hypothetical protein, partial|unclassified	0.2119246360
+UniRef50_UPI00047EBBD2: hypothetical protein	0.2119072561
+UniRef50_UPI00047EBBD2: hypothetical protein|unclassified	0.2119072561
+UniRef50_UPI00039E139F: hypothetical protein	0.2118883870
+UniRef50_UPI00039E139F: hypothetical protein|unclassified	0.2118883870
+UniRef50_A0YHN8: Predicted Fe-S protein	0.2118751289
+UniRef50_A0YHN8: Predicted Fe-S protein|unclassified	0.2118751289
+UniRef50_K0TSP7	0.2118594170
+UniRef50_K0TSP7|unclassified	0.2118594170
+UniRef50_UPI0001FE2A0F: phospho-2-dehydro-3-deoxyheptonate aldolase	0.2118556947
+UniRef50_UPI0001FE2A0F: phospho-2-dehydro-3-deoxyheptonate aldolase|unclassified	0.2118556947
+UniRef50_Q2CG56	0.2118542164
+UniRef50_Q2CG56|unclassified	0.2118542164
+UniRef50_UPI0003C7E91A: GntR family transcriptional regulator, partial	0.2118499986
+UniRef50_UPI0003C7E91A: GntR family transcriptional regulator, partial|unclassified	0.2118499986
+UniRef50_A3WZ98: Phage holin, putative	0.2118448109
+UniRef50_A3WZ98: Phage holin, putative|unclassified	0.2118448109
+UniRef50_UPI00047E1486: hypothetical protein	0.2118320652
+UniRef50_UPI00047E1486: hypothetical protein|unclassified	0.2118320652
+UniRef50_A7IGL7: Fructose-1,6-bisphosphatase class 1 1	0.2118135097
+UniRef50_A7IGL7: Fructose-1,6-bisphosphatase class 1 1|unclassified	0.2118135097
+UniRef50_C5QLR6	0.2117880747
+UniRef50_C5QLR6|unclassified	0.2117880747
+UniRef50_Q7VF52: Phosphoribosylformylglycinamidine synthase 2	0.2117647525
+UniRef50_Q7VF52: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.2117647525
+UniRef50_UPI0003807DA7: hypothetical protein	0.2117636876
+UniRef50_UPI0003807DA7: hypothetical protein|unclassified	0.2117636876
+UniRef50_D3QE97	0.2117596983
+UniRef50_D3QE97|unclassified	0.2117596983
+UniRef50_Q3MEA8: GMP synthase [glutamine-hydrolyzing]	0.2117301681
+UniRef50_Q3MEA8: GMP synthase [glutamine-hydrolyzing]|unclassified	0.2117301681
+UniRef50_D5H4D6	0.2117272944
+UniRef50_D5H4D6|unclassified	0.2117272944
+UniRef50_W4HJT8	0.2117168320
+UniRef50_W4HJT8|unclassified	0.2117168320
+UniRef50_UPI0003C10113	0.2117145636
+UniRef50_UPI0003C10113|unclassified	0.2117145636
+UniRef50_A8AIH3	0.2116995996
+UniRef50_A8AIH3|unclassified	0.2116995996
+UniRef50_U2YPH1: Flagellar hook protein flgE	0.2116832168
+UniRef50_U2YPH1: Flagellar hook protein flgE|unclassified	0.2116832168
+UniRef50_UPI0002490746: DNA-3-methyladenine glycosylase I	0.2116787893
+UniRef50_UPI0002490746: DNA-3-methyladenine glycosylase I|unclassified	0.2116787893
+UniRef50_UPI0002738D1A	0.2116787608
+UniRef50_UPI0002738D1A|unclassified	0.2116787608
+UniRef50_B8D1K5: ATP-dependent 6-phosphofructokinase	0.2116698967
+UniRef50_B8D1K5: ATP-dependent 6-phosphofructokinase|unclassified	0.2116698967
+UniRef50_K7Z2Z8	0.2116675913
+UniRef50_K7Z2Z8|unclassified	0.2116675913
+UniRef50_Q3SMI5: Phosphoheptose isomerase	0.2116600829
+UniRef50_Q3SMI5: Phosphoheptose isomerase|unclassified	0.2116600829
+UniRef50_K0VQE2	0.2116335526
+UniRef50_K0VQE2|unclassified	0.2116335526
+UniRef50_S0ZSK0	0.2116321628
+UniRef50_S0ZSK0|unclassified	0.2116321628
+UniRef50_Q82JT9: Ribonuclease 3	0.2116303999
+UniRef50_Q82JT9: Ribonuclease 3|unclassified	0.2116303999
+UniRef50_UPI00037E5D8B: hypothetical protein	0.2116181210
+UniRef50_UPI00037E5D8B: hypothetical protein|unclassified	0.2116181210
+UniRef50_UPI0004687AF8: GCN5 family acetyltransferase	0.2116071273
+UniRef50_UPI0004687AF8: GCN5 family acetyltransferase|unclassified	0.2116071273
+UniRef50_UPI0004757934: acetyltransferase	0.2115894520
+UniRef50_UPI0004757934: acetyltransferase|unclassified	0.2115894520
+UniRef50_UPI0003815997: hypothetical protein	0.2115884748
+UniRef50_UPI0003815997: hypothetical protein|unclassified	0.2115884748
+UniRef50_F2N6U9	0.2115715169
+UniRef50_F2N6U9|unclassified	0.2115715169
+UniRef50_F8I872	0.2115647873
+UniRef50_F8I872|unclassified	0.2115647873
+UniRef50_UPI000255C3E1: hypothetical protein	0.2115452998
+UniRef50_UPI000255C3E1: hypothetical protein|unclassified	0.2115452998
+UniRef50_F7THI5	0.2115258028
+UniRef50_F7THI5|unclassified	0.2115258028
+UniRef50_UPI00029AF23E: hypothetical protein	0.2115245937
+UniRef50_UPI00029AF23E: hypothetical protein|unclassified	0.2115245937
+UniRef50_H9KPN8	0.2115198150
+UniRef50_H9KPN8|unclassified	0.2115198150
+UniRef50_UPI0003761216: hypothetical protein	0.2115195048
+UniRef50_UPI0003761216: hypothetical protein|unclassified	0.2115195048
+UniRef50_F8FMQ9	0.2115086648
+UniRef50_F8FMQ9|unclassified	0.2115086648
+UniRef50_UPI00035EDD99: hypothetical protein	0.2115037424
+UniRef50_UPI00035EDD99: hypothetical protein|unclassified	0.2115037424
+UniRef50_F6AD91: Tripartite ATP-independent periplasmic transporter DctQ component	0.2114960222
+UniRef50_F6AD91: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.2114960222
+UniRef50_V8QI00	0.2114870217
+UniRef50_V8QI00|unclassified	0.2114870217
+UniRef50_B9E6Y4: Shikimate dehydrogenase	0.2114769949
+UniRef50_B9E6Y4: Shikimate dehydrogenase|unclassified	0.2114769949
+UniRef50_C1DM90	0.2114763464
+UniRef50_C1DM90|unclassified	0.2114763464
+UniRef50_UPI000185EDCA: plectin, putative	0.2114745257
+UniRef50_UPI000185EDCA: plectin, putative|unclassified	0.2114745257
+UniRef50_UPI0002F3A690: hypothetical protein	0.2114719953
+UniRef50_UPI0002F3A690: hypothetical protein|unclassified	0.2114719953
+UniRef50_UPI0003B35218: C4-dicarboxylate ABC transporter substrate-binding protein, partial	0.2114451428
+UniRef50_UPI0003B35218: C4-dicarboxylate ABC transporter substrate-binding protein, partial|unclassified	0.2114451428
+UniRef50_A8ITI5: Predicted protein (Fragment)	0.2114388379
+UniRef50_A8ITI5: Predicted protein (Fragment)|unclassified	0.2114388379
+UniRef50_Q8W1X2: Pyridoxal kinase	0.2114323638
+UniRef50_Q8W1X2: Pyridoxal kinase|unclassified	0.2114323638
+UniRef50_D3P5R1	0.2114318411
+UniRef50_D3P5R1|unclassified	0.2114318411
+UniRef50_UPI00047D4BE3: hypothetical protein	0.2114302636
+UniRef50_UPI00047D4BE3: hypothetical protein|unclassified	0.2114302636
+UniRef50_U3JM61	0.2114113539
+UniRef50_U3JM61|unclassified	0.2114113539
+UniRef50_W5HK78	0.2113922221
+UniRef50_W5HK78|unclassified	0.2113922221
+UniRef50_UPI0003B6453D: hypothetical protein	0.2113838469
+UniRef50_UPI0003B6453D: hypothetical protein|unclassified	0.2113838469
+UniRef50_UPI0002F760D9: hypothetical protein	0.2113718030
+UniRef50_UPI0002F760D9: hypothetical protein|unclassified	0.2113718030
+UniRef50_Q11KX3	0.2113338207
+UniRef50_Q11KX3|unclassified	0.2113338207
+UniRef50_UPI00041DD57B: hypothetical protein	0.2113098580
+UniRef50_UPI00041DD57B: hypothetical protein|unclassified	0.2113098580
+UniRef50_UPI0002193054: transporter	0.2112915229
+UniRef50_UPI0002193054: transporter|unclassified	0.2112915229
+UniRef50_F0Y9V1: Expressed protein	0.2112824847
+UniRef50_F0Y9V1: Expressed protein|unclassified	0.2112824847
+UniRef50_Q160Y9: Zinc import ATP-binding protein ZnuC	0.2112450236
+UniRef50_Q160Y9: Zinc import ATP-binding protein ZnuC|unclassified	0.2112450236
+UniRef50_Q6A735: Cell envelope-related transcriptional attenuator	0.2112332417
+UniRef50_Q6A735: Cell envelope-related transcriptional attenuator|unclassified	0.2112332417
+UniRef50_X0YNP2: Marine sediment metagenome DNA, contig: S01H4_L01679 (Fragment)	0.2112195449
+UniRef50_X0YNP2: Marine sediment metagenome DNA, contig: S01H4_L01679 (Fragment)|unclassified	0.2112195449
+UniRef50_B0BSM5	0.2112154327
+UniRef50_B0BSM5|unclassified	0.2112154327
+UniRef50_UPI0002630C86: chemotaxis histidine protein kinase, partial	0.2112106993
+UniRef50_UPI0002630C86: chemotaxis histidine protein kinase, partial|unclassified	0.2112106993
+UniRef50_R5Q812	0.2112063280
+UniRef50_R5Q812|unclassified	0.2112063280
+UniRef50_A4WXK1	0.2112048774
+UniRef50_A4WXK1|unclassified	0.2112048774
+UniRef50_W5X752: Aldo/keto reductase	0.2111786219
+UniRef50_W5X752: Aldo/keto reductase|unclassified	0.2111786219
+UniRef50_W6QSM7	0.2111782464
+UniRef50_W6QSM7|unclassified	0.2111782464
+UniRef50_UPI000378DF42: hypothetical protein	0.2111764576
+UniRef50_UPI000378DF42: hypothetical protein|unclassified	0.2111764576
+UniRef50_I2F4T7	0.2111647428
+UniRef50_I2F4T7|unclassified	0.2111647428
+UniRef50_UPI00034D5BA5: hypothetical protein	0.2111589932
+UniRef50_UPI00034D5BA5: hypothetical protein|unclassified	0.2111589932
+UniRef50_E7DRS8: Cobyrinic acid a,c-diamide synthase (Fragment)	0.2111515754
+UniRef50_E7DRS8: Cobyrinic acid a,c-diamide synthase (Fragment)|unclassified	0.2111515754
+UniRef50_P39197: Phosphate acetyltransferase	0.2111387723
+UniRef50_P39197: Phosphate acetyltransferase|unclassified	0.2111387723
+UniRef50_B0TGU9: Phosphopantetheine adenylyltransferase	0.2111365654
+UniRef50_B0TGU9: Phosphopantetheine adenylyltransferase|unclassified	0.2111365654
+UniRef50_UPI00016ADA98: probable succinate-semialdehyde dehydrogenase oxidoreductase protein	0.2111341336
+UniRef50_UPI00016ADA98: probable succinate-semialdehyde dehydrogenase oxidoreductase protein|unclassified	0.2111341336
+UniRef50_UPI0004799CCD: hypothetical protein	0.2111188613
+UniRef50_UPI0004799CCD: hypothetical protein|unclassified	0.2111188613
+UniRef50_UPI0003743277: hypothetical protein	0.2111101757
+UniRef50_UPI0003743277: hypothetical protein|unclassified	0.2111101757
+UniRef50_F0F251	0.2111066482
+UniRef50_F0F251|unclassified	0.2111066482
+UniRef50_UPI00037129D4: hypothetical protein, partial	0.2111060689
+UniRef50_UPI00037129D4: hypothetical protein, partial|unclassified	0.2111060689
+UniRef50_UPI0003B5782E: antirepressor	0.2110988064
+UniRef50_UPI0003B5782E: antirepressor|unclassified	0.2110988064
+UniRef50_UPI00047DE132: membrane protein	0.2110965454
+UniRef50_UPI00047DE132: membrane protein|unclassified	0.2110965454
+UniRef50_Q2RLC2: SirA-like protein	0.2110941321
+UniRef50_Q2RLC2: SirA-like protein|unclassified	0.2110941321
+UniRef50_UPI0001B5A651: hypothetical protein	0.2110540556
+UniRef50_UPI0001B5A651: hypothetical protein|unclassified	0.2110540556
+UniRef50_Q5NXX0	0.2110406436
+UniRef50_Q5NXX0|unclassified	0.2110406436
+UniRef50_Q223D6: ATP synthase subunit beta 1	0.2110171719
+UniRef50_Q223D6: ATP synthase subunit beta 1|unclassified	0.2110171719
+UniRef50_UPI0003702830: hypothetical protein	0.2110123583
+UniRef50_UPI0003702830: hypothetical protein|unclassified	0.2110123583
+UniRef50_UPI00035CF794: hypothetical protein	0.2109804252
+UniRef50_UPI00035CF794: hypothetical protein|unclassified	0.2109804252
+UniRef50_Q9S0M1	0.2109763326
+UniRef50_Q9S0M1|unclassified	0.2109763326
+UniRef50_Q5GT42: NADH-quinone oxidoreductase subunit C	0.2109745425
+UniRef50_Q5GT42: NADH-quinone oxidoreductase subunit C|unclassified	0.2109745425
+UniRef50_B6ASY6	0.2109687305
+UniRef50_B6ASY6|unclassified	0.2109687305
+UniRef50_UPI0003466363: hypothetical protein	0.2109541762
+UniRef50_UPI0003466363: hypothetical protein|unclassified	0.2109541762
+UniRef50_W1FIW4	0.2109505259
+UniRef50_W1FIW4|unclassified	0.2109505259
+UniRef50_X1FUS0: Marine sediment metagenome DNA, contig: S01H4_S26143 (Fragment)	0.2109501773
+UniRef50_X1FUS0: Marine sediment metagenome DNA, contig: S01H4_S26143 (Fragment)|unclassified	0.2109501773
+UniRef50_UPI0004787718: hypothetical protein	0.2109466140
+UniRef50_UPI0004787718: hypothetical protein|unclassified	0.2109466140
+UniRef50_UPI000225F1AB: hypothetical protein	0.2109367214
+UniRef50_UPI000225F1AB: hypothetical protein|unclassified	0.2109367214
+UniRef50_UPI00036E451B: hypothetical protein, partial	0.2109272333
+UniRef50_UPI00036E451B: hypothetical protein, partial|unclassified	0.2109272333
+UniRef50_U1S1M7	0.2109189111
+UniRef50_U1S1M7|unclassified	0.2109189111
+UniRef50_UPI0004412F07: mitochondrial ribosomal protein subunit L2	0.2109174137
+UniRef50_UPI0004412F07: mitochondrial ribosomal protein subunit L2|unclassified	0.2109174137
+UniRef50_T1ADV2: Pyridine nucleotide transhydrogenase subunit alpha (Fragment)	0.2109054334
+UniRef50_T1ADV2: Pyridine nucleotide transhydrogenase subunit alpha (Fragment)|unclassified	0.2109054334
+UniRef50_Q2LQ82: Orotidine 5'-phosphate decarboxylase	0.2109024077
+UniRef50_Q2LQ82: Orotidine 5'-phosphate decarboxylase|unclassified	0.2109024077
+UniRef50_K0RMT8	0.2108995013
+UniRef50_K0RMT8|unclassified	0.2108995013
+UniRef50_D8AZE0	0.2108835832
+UniRef50_D8AZE0|unclassified	0.2108835832
+UniRef50_G2KLR2: Polyhydroxyalkanoate synthesis repressor PhaR	0.2108698273
+UniRef50_G2KLR2: Polyhydroxyalkanoate synthesis repressor PhaR|unclassified	0.2108698273
+UniRef50_M4X2Q0	0.2108101239
+UniRef50_M4X2Q0|unclassified	0.2108101239
+UniRef50_K0MXG6	0.2108028579
+UniRef50_K0MXG6|unclassified	0.2108028579
+UniRef50_UPI0004783317: GCN5 family acetyltransferase	0.2107841958
+UniRef50_UPI0004783317: GCN5 family acetyltransferase|unclassified	0.2107841958
+UniRef50_R5S9I0	0.2107626982
+UniRef50_R5S9I0|unclassified	0.2107626982
+UniRef50_X0TXG2: Marine sediment metagenome DNA, contig: S01H1_L09880 (Fragment)	0.2107624132
+UniRef50_X0TXG2: Marine sediment metagenome DNA, contig: S01H1_L09880 (Fragment)|unclassified	0.2107624132
+UniRef50_UPI0003784874: hypothetical protein	0.2107550735
+UniRef50_UPI0003784874: hypothetical protein|unclassified	0.2107550735
+UniRef50_UPI000370126B: hypothetical protein, partial	0.2107546377
+UniRef50_UPI000370126B: hypothetical protein, partial|unclassified	0.2107546377
+UniRef50_UPI00016AA247: glycolate oxidase	0.2107494666
+UniRef50_UPI00016AA247: glycolate oxidase|unclassified	0.2107494666
+UniRef50_K2P085: Aryl-alcohol dehydrogenase	0.2107356727
+UniRef50_K2P085: Aryl-alcohol dehydrogenase|unclassified	0.2107356727
+UniRef50_P40510: D-3-phosphoglycerate dehydrogenase 2	0.2107253295
+UniRef50_P40510: D-3-phosphoglycerate dehydrogenase 2|unclassified	0.2107253295
+UniRef50_Q3AAI8: Adenine phosphoribosyltransferase	0.2107192648
+UniRef50_Q3AAI8: Adenine phosphoribosyltransferase|unclassified	0.2107192648
+UniRef50_I0Z4C8	0.2107189116
+UniRef50_I0Z4C8|unclassified	0.2107189116
+UniRef50_UPI00047088D8: hypothetical protein	0.2106936973
+UniRef50_UPI00047088D8: hypothetical protein|unclassified	0.2106936973
+UniRef50_B9DML4: Accessory gene regulator protein B	0.2106927810
+UniRef50_B9DML4: Accessory gene regulator protein B|unclassified	0.2106927810
+UniRef50_K9E8R5	0.2106919267
+UniRef50_K9E8R5|unclassified	0.2106919267
+UniRef50_UPI00037F54A6: hypothetical protein	0.2106864093
+UniRef50_UPI00037F54A6: hypothetical protein|unclassified	0.2106864093
+UniRef50_UPI00037C5E81: hypothetical protein	0.2106683565
+UniRef50_UPI00037C5E81: hypothetical protein|unclassified	0.2106683565
+UniRef50_H3FTW8	0.2106635863
+UniRef50_H3FTW8|unclassified	0.2106635863
+UniRef50_UPI000464BDF6: amino acid permease	0.2106515373
+UniRef50_UPI000464BDF6: amino acid permease|unclassified	0.2106515373
+UniRef50_UPI0004294A5C: hypothetical protein	0.2106448461
+UniRef50_UPI0004294A5C: hypothetical protein|unclassified	0.2106448461
+UniRef50_R7WLZ5	0.2106327663
+UniRef50_R7WLZ5|unclassified	0.2106327663
+UniRef50_V7Z268	0.2106148327
+UniRef50_V7Z268|unclassified	0.2106148327
+UniRef50_D2JTI8: Immunodominant antigen A (Fragment)	0.2106124211
+UniRef50_D2JTI8: Immunodominant antigen A (Fragment)|unclassified	0.2106124211
+UniRef50_UPI0002F8810D: hypothetical protein	0.2105904352
+UniRef50_UPI0002F8810D: hypothetical protein|unclassified	0.2105904352
+UniRef50_UPI000472FB88: adenosylcobinamide kinase	0.2105888874
+UniRef50_UPI000472FB88: adenosylcobinamide kinase|unclassified	0.2105888874
+UniRef50_X1DP19: Marine sediment metagenome DNA, contig: S01H4_S15902	0.2105876547
+UniRef50_X1DP19: Marine sediment metagenome DNA, contig: S01H4_S15902|unclassified	0.2105876547
+UniRef50_I1EBV8	0.2105769295
+UniRef50_I1EBV8|unclassified	0.2105769295
+UniRef50_UPI00047014BF: imidazole glycerol phosphate synthase	0.2105519420
+UniRef50_UPI00047014BF: imidazole glycerol phosphate synthase|unclassified	0.2105519420
+UniRef50_UPI00035E2AD5: hypothetical protein	0.2105459880
+UniRef50_UPI00035E2AD5: hypothetical protein|unclassified	0.2105459880
+UniRef50_UPI000219798E: peptidase	0.2105333339
+UniRef50_UPI000219798E: peptidase|unclassified	0.2105333339
+UniRef50_I7E445	0.2105294309
+UniRef50_I7E445|unclassified	0.2105294309
+UniRef50_A1WFT0: Phosphoribosyl-AMP cyclohydrolase	0.2105148617
+UniRef50_A1WFT0: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.2105148617
+UniRef50_UPI0003B66A79: GntR family transcriptional regulator	0.2104812144
+UniRef50_UPI0003B66A79: GntR family transcriptional regulator|unclassified	0.2104812144
+UniRef50_F4QJY3	0.2104621369
+UniRef50_F4QJY3|unclassified	0.2104621369
+UniRef50_UPI000470320D: hypothetical protein	0.2104604362
+UniRef50_UPI000470320D: hypothetical protein|unclassified	0.2104604362
+UniRef50_U1ZXN8	0.2104456698
+UniRef50_U1ZXN8|unclassified	0.2104456698
+UniRef50_W6LQI4	0.2104389898
+UniRef50_W6LQI4|unclassified	0.2104389898
+UniRef50_X1MMR9: Marine sediment metagenome DNA, contig: S06H3_C05537	0.2104182330
+UniRef50_X1MMR9: Marine sediment metagenome DNA, contig: S06H3_C05537|unclassified	0.2104182330
+UniRef50_UPI00036F2709: LysR family transcriptional regulator	0.2104150384
+UniRef50_UPI00036F2709: LysR family transcriptional regulator|unclassified	0.2104150384
+UniRef50_UPI0004256F3A: fasciclin	0.2104131819
+UniRef50_UPI0004256F3A: fasciclin|unclassified	0.2104131819
+UniRef50_M5TYQ6	0.2103629908
+UniRef50_M5TYQ6|unclassified	0.2103629908
+UniRef50_X1UR31: Marine sediment metagenome DNA, contig: S12H4_S03148 (Fragment)	0.2103238093
+UniRef50_X1UR31: Marine sediment metagenome DNA, contig: S12H4_S03148 (Fragment)|unclassified	0.2103238093
+UniRef50_UPI0001E89D13: transcriptional regulator	0.2103226820
+UniRef50_UPI0001E89D13: transcriptional regulator|unclassified	0.2103226820
+UniRef50_UPI0003B419D0: hypothetical protein	0.2103195970
+UniRef50_UPI0003B419D0: hypothetical protein|unclassified	0.2103195970
+UniRef50_A0A034WN76	0.2103169372
+UniRef50_A0A034WN76|unclassified	0.2103169372
+UniRef50_UPI00037B8744: MULTISPECIES: hypothetical protein	0.2103038685
+UniRef50_UPI00037B8744: MULTISPECIES: hypothetical protein|unclassified	0.2103038685
+UniRef50_Q7UT33: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.2102960005
+UniRef50_Q7UT33: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.2102960005
+UniRef50_R5TFI8: Aluminum resistance protein	0.2102955777
+UniRef50_R5TFI8: Aluminum resistance protein|unclassified	0.2102955777
+UniRef50_UPI00036121C7: hypothetical protein, partial	0.2102906127
+UniRef50_UPI00036121C7: hypothetical protein, partial|unclassified	0.2102906127
+UniRef50_UPI00030520A7: hypothetical protein	0.2102829207
+UniRef50_UPI00030520A7: hypothetical protein|unclassified	0.2102829207
+UniRef50_UPI00037E8EC6: xylose isomerase, partial	0.2102657799
+UniRef50_UPI00037E8EC6: xylose isomerase, partial|unclassified	0.2102657799
+UniRef50_UPI00045E7F26: outer membrane protein assembly protein BamE	0.2102247242
+UniRef50_UPI00045E7F26: outer membrane protein assembly protein BamE|unclassified	0.2102247242
+UniRef50_UPI000255609B: histidyl-tRNA synthetase	0.2102144985
+UniRef50_UPI000255609B: histidyl-tRNA synthetase|unclassified	0.2102144985
+UniRef50_A0A058Z0I0	0.2101942853
+UniRef50_A0A058Z0I0|unclassified	0.2101942853
+UniRef50_UPI00046D439D: hypothetical protein	0.2101800946
+UniRef50_UPI00046D439D: hypothetical protein|unclassified	0.2101800946
+UniRef50_K2ASP7	0.2101744326
+UniRef50_K2ASP7|unclassified	0.2101744326
+UniRef50_Q03VR7: Ribosomal RNA small subunit methyltransferase A	0.2101458036
+UniRef50_Q03VR7: Ribosomal RNA small subunit methyltransferase A|unclassified	0.2101458036
+UniRef50_E6VNX0: Tripartite ATP-independent periplasmic transporter DctQ component	0.2101268061
+UniRef50_E6VNX0: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.2101268061
+UniRef50_UPI000465804D: hypothetical protein, partial	0.2101136448
+UniRef50_UPI000465804D: hypothetical protein, partial|unclassified	0.2101136448
+UniRef50_B1ZUJ0: NADH-quinone oxidoreductase subunit B 2	0.2101097446
+UniRef50_B1ZUJ0: NADH-quinone oxidoreductase subunit B 2|unclassified	0.2101097446
+UniRef50_U3U5J6	0.2100810574
+UniRef50_U3U5J6|unclassified	0.2100810574
+UniRef50_UPI0002192501: orotidine 5-phosphate decarboxylase	0.2100780990
+UniRef50_UPI0002192501: orotidine 5-phosphate decarboxylase|unclassified	0.2100780990
+UniRef50_W0IWL4: Twitching motility protein PilT	0.2100710307
+UniRef50_W0IWL4: Twitching motility protein PilT|unclassified	0.2100710307
+UniRef50_UPI0004710E5A: hypothetical protein	0.2100650207
+UniRef50_UPI0004710E5A: hypothetical protein|unclassified	0.2100650207
+UniRef50_C4ZA66: Xanthine phosphoribosyltransferase	0.2100573669
+UniRef50_C4ZA66: Xanthine phosphoribosyltransferase|unclassified	0.2100573669
+UniRef50_Q8TX83: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.2100517235
+UniRef50_Q8TX83: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.2100517235
+UniRef50_Q53168: LcrC protein	0.2100464996
+UniRef50_Q53168: LcrC protein|unclassified	0.2100464996
+UniRef50_UPI000377CE34: hypothetical protein	0.2100300225
+UniRef50_UPI000377CE34: hypothetical protein|unclassified	0.2100300225
+UniRef50_UPI00042CF608: PREDICTED: 3-mercaptopyruvate sulfurtransferase isoform X1	0.2100222301
+UniRef50_UPI00042CF608: PREDICTED: 3-mercaptopyruvate sulfurtransferase isoform X1|unclassified	0.2100222301
+UniRef50_M5TC97	0.2100094521
+UniRef50_M5TC97|unclassified	0.2100094521
+UniRef50_N0APM2: PspA/IM30	0.2099851101
+UniRef50_N0APM2: PspA/IM30|unclassified	0.2099851101
+UniRef50_B9L2B5: Phosphopantetheine adenylyltransferase	0.2099848615
+UniRef50_B9L2B5: Phosphopantetheine adenylyltransferase|unclassified	0.2099848615
+UniRef50_UPI0003B3057F: hypothetical protein	0.2099743956
+UniRef50_UPI0003B3057F: hypothetical protein|unclassified	0.2099743956
+UniRef50_UPI00035E4E1C: hypothetical protein	0.2099453747
+UniRef50_UPI00035E4E1C: hypothetical protein|unclassified	0.2099453747
+UniRef50_A8LL72	0.2099126210
+UniRef50_A8LL72|unclassified	0.2099126210
+UniRef50_B8D8E6: Phosphopantetheine adenylyltransferase	0.2099076721
+UniRef50_B8D8E6: Phosphopantetheine adenylyltransferase|unclassified	0.2099076721
+UniRef50_X1V1B7: Marine sediment metagenome DNA, contig: S12H4_S04001 (Fragment)	0.2098925945
+UniRef50_X1V1B7: Marine sediment metagenome DNA, contig: S12H4_S04001 (Fragment)|unclassified	0.2098925945
+UniRef50_M2TDC8	0.2098881988
+UniRef50_M2TDC8|unclassified	0.2098881988
+UniRef50_L6Y993: Electron transfer flavoprotein-ubiquinone oxidoreductase	0.2098773576
+UniRef50_L6Y993: Electron transfer flavoprotein-ubiquinone oxidoreductase|unclassified	0.2098773576
+UniRef50_UPI000362D14C: hypothetical protein, partial	0.2098770007
+UniRef50_UPI000362D14C: hypothetical protein, partial|unclassified	0.2098770007
+UniRef50_UPI000419EC0B: MFS transporter	0.2098568282
+UniRef50_UPI000419EC0B: MFS transporter|unclassified	0.2098568282
+UniRef50_B6AV02	0.2098538702
+UniRef50_B6AV02|unclassified	0.2098538702
+UniRef50_W7B5F9	0.2098307968
+UniRef50_W7B5F9|unclassified	0.2098307968
+UniRef50_Q1GIX4	0.2097938349
+UniRef50_Q1GIX4|unclassified	0.2097938349
+UniRef50_E3JT91	0.2097760914
+UniRef50_E3JT91|unclassified	0.2097760914
+UniRef50_UPI0003A99009: ABC transporter	0.2097620495
+UniRef50_UPI0003A99009: ABC transporter|unclassified	0.2097620495
+UniRef50_P49376: ATP synthase subunit beta, mitochondrial	0.2097596785
+UniRef50_P49376: ATP synthase subunit beta, mitochondrial|unclassified	0.2097596785
+UniRef50_UPI00037383FA: hypothetical protein	0.2097333159
+UniRef50_UPI00037383FA: hypothetical protein|unclassified	0.2097333159
+UniRef50_UPI00046C1EFC	0.2097154777
+UniRef50_UPI00046C1EFC|unclassified	0.2097154777
+UniRef50_UPI0003641739: hypothetical protein	0.2097143634
+UniRef50_UPI0003641739: hypothetical protein|unclassified	0.2097143634
+UniRef50_UPI00046C9D66: hypothetical protein	0.2096885402
+UniRef50_UPI00046C9D66: hypothetical protein|unclassified	0.2096885402
+UniRef50_X0VB27: Marine sediment metagenome DNA, contig: S01H1_S24328 (Fragment)	0.2096852249
+UniRef50_X0VB27: Marine sediment metagenome DNA, contig: S01H1_S24328 (Fragment)|unclassified	0.2096852249
+UniRef50_UPI0003B61981: hypothetical protein	0.2096616625
+UniRef50_UPI0003B61981: hypothetical protein|unclassified	0.2096616625
+UniRef50_X5PUY3	0.2096598374
+UniRef50_X5PUY3|unclassified	0.2096598374
+UniRef50_UPI00047E776F: hypothetical protein	0.2096585040
+UniRef50_UPI00047E776F: hypothetical protein|unclassified	0.2096585040
+UniRef50_UPI0003B71CCE: lytic transglycosylase, partial	0.2096402437
+UniRef50_UPI0003B71CCE: lytic transglycosylase, partial|unclassified	0.2096402437
+UniRef50_Q63Q93: Phosphoribosyl-AMP cyclohydrolase	0.2096267973
+UniRef50_Q63Q93: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.2096267973
+UniRef50_J0HEW3	0.2096097439
+UniRef50_J0HEW3|unclassified	0.2096097439
+UniRef50_UPI00047B05E0: hypothetical protein	0.2096061903
+UniRef50_UPI00047B05E0: hypothetical protein|unclassified	0.2096061903
+UniRef50_E4R8G4	0.2095900809
+UniRef50_E4R8G4|unclassified	0.2095900809
+UniRef50_W1S5X9	0.2095851202
+UniRef50_W1S5X9|unclassified	0.2095851202
+UniRef50_X5RK01	0.2095814938
+UniRef50_X5RK01|unclassified	0.2095814938
+UniRef50_UPI00036B404B: hypothetical protein	0.2095792816
+UniRef50_UPI00036B404B: hypothetical protein|unclassified	0.2095792816
+UniRef50_A0A019X8A1	0.2095727187
+UniRef50_A0A019X8A1|unclassified	0.2095727187
+UniRef50_UPI00037A3588: hypothetical protein	0.2095653613
+UniRef50_UPI00037A3588: hypothetical protein|unclassified	0.2095653613
+UniRef50_UPI0003B3E9E9: membrane protein	0.2095467582
+UniRef50_UPI0003B3E9E9: membrane protein|unclassified	0.2095467582
+UniRef50_UPI0003769784: hypothetical protein, partial	0.2095436443
+UniRef50_UPI0003769784: hypothetical protein, partial|unclassified	0.2095436443
+UniRef50_Q5P303	0.2095194987
+UniRef50_Q5P303|unclassified	0.2095194987
+UniRef50_B9EBP5	0.2095132760
+UniRef50_B9EBP5|unclassified	0.2095132760
+UniRef50_Q5KP44: Inosine-5'-monophosphate dehydrogenase	0.2095026262
+UniRef50_Q5KP44: Inosine-5'-monophosphate dehydrogenase|unclassified	0.2095026262
+UniRef50_UPI0001816E2D: putative phosphoribosylformylglycinamidine synthase protein, partial	0.2094996494
+UniRef50_UPI0001816E2D: putative phosphoribosylformylglycinamidine synthase protein, partial|unclassified	0.2094996494
+UniRef50_G5QU74	0.2094902843
+UniRef50_G5QU74|unclassified	0.2094902843
+UniRef50_C3DVG4: Reticulocyte binding protein	0.2094715823
+UniRef50_C3DVG4: Reticulocyte binding protein|unclassified	0.2094715823
+UniRef50_H2PBT9	0.2094682762
+UniRef50_H2PBT9|unclassified	0.2094682762
+UniRef50_UPI000255A647: hypothetical protein	0.2094671174
+UniRef50_UPI000255A647: hypothetical protein|unclassified	0.2094671174
+UniRef50_J3Q7B8	0.2094610497
+UniRef50_J3Q7B8|unclassified	0.2094610497
+UniRef50_B2GBA3: Peptide deformylase	0.2094563441
+UniRef50_B2GBA3: Peptide deformylase|unclassified	0.2094563441
+UniRef50_N6TUY9	0.2094505250
+UniRef50_N6TUY9|unclassified	0.2094505250
+UniRef50_A5G347: Transcriptional regulator, CarD family	0.2094503465
+UniRef50_A5G347: Transcriptional regulator, CarD family|unclassified	0.2094503465
+UniRef50_T1BV79: Potassium-transporting ATPase subunit B (Fragment)	0.2094453047
+UniRef50_T1BV79: Potassium-transporting ATPase subunit B (Fragment)|unclassified	0.2094453047
+UniRef50_F0DH94: Lipoprotein (Fragment)	0.2094412706
+UniRef50_F0DH94: Lipoprotein (Fragment)|unclassified	0.2094412706
+UniRef50_C4K4A0: Putative M23 peptidase family protein	0.2094371225
+UniRef50_C4K4A0: Putative M23 peptidase family protein|unclassified	0.2094371225
+UniRef50_Q936H1: Type 8 capsule synthesis gene	0.2094296023
+UniRef50_Q936H1: Type 8 capsule synthesis gene|unclassified	0.2094296023
+UniRef50_K0SY54	0.2094204495
+UniRef50_K0SY54|unclassified	0.2094204495
+UniRef50_D5ASW4: Flagellar biosynthesis/type III secretory pathway protein FliH	0.2094149001
+UniRef50_D5ASW4: Flagellar biosynthesis/type III secretory pathway protein FliH|unclassified	0.2094149001
+UniRef50_C8N6A0: LemA family protein	0.2094085206
+UniRef50_C8N6A0: LemA family protein|unclassified	0.2094085206
+UniRef50_UPI00040C55C7: glycine/betaine ABC transporter permease	0.2094031960
+UniRef50_UPI00040C55C7: glycine/betaine ABC transporter permease|unclassified	0.2094031960
+UniRef50_V3TQ97	0.2094021504
+UniRef50_V3TQ97|unclassified	0.2094021504
+UniRef50_UPI00035D922A: hypothetical protein	0.2093843868
+UniRef50_UPI00035D922A: hypothetical protein|unclassified	0.2093843868
+UniRef50_UPI0003C16903	0.2093684262
+UniRef50_UPI0003C16903|unclassified	0.2093684262
+UniRef50_W7QBD3	0.2093205410
+UniRef50_W7QBD3|unclassified	0.2093205410
+UniRef50_R6WJR7	0.2093172529
+UniRef50_R6WJR7|unclassified	0.2093172529
+UniRef50_UPI00037B1FF5: hypothetical protein	0.2093159019
+UniRef50_UPI00037B1FF5: hypothetical protein|unclassified	0.2093159019
+UniRef50_J0WVH5	0.2093095478
+UniRef50_J0WVH5|unclassified	0.2093095478
+UniRef50_G8AEJ9	0.2092939034
+UniRef50_G8AEJ9|unclassified	0.2092939034
+UniRef50_B2IWH8: Bifunctional protein PyrR	0.2092929065
+UniRef50_B2IWH8: Bifunctional protein PyrR|unclassified	0.2092929065
+UniRef50_A0LI45: Prevent-host-death family protein	0.2092264133
+UniRef50_A0LI45: Prevent-host-death family protein|unclassified	0.2092264133
+UniRef50_UPI0002E98488: hypothetical protein	0.2092199427
+UniRef50_UPI0002E98488: hypothetical protein|unclassified	0.2092199427
+UniRef50_V2CX28: Trp-repressor binding protein	0.2092148551
+UniRef50_V2CX28: Trp-repressor binding protein|unclassified	0.2092148551
+UniRef50_K2NZ38	0.2092130142
+UniRef50_K2NZ38|unclassified	0.2092130142
+UniRef50_N2KV62: Transposase IS66 family protein	0.2092126551
+UniRef50_N2KV62: Transposase IS66 family protein|unclassified	0.2092126551
+UniRef50_A6U5N2: Periplasmic binding protein/LacI transcriptional regulator	0.2092071541
+UniRef50_A6U5N2: Periplasmic binding protein/LacI transcriptional regulator|unclassified	0.2092071541
+UniRef50_UPI00036A0492: MULTISPECIES: hypothetical protein	0.2091973018
+UniRef50_UPI00036A0492: MULTISPECIES: hypothetical protein|unclassified	0.2091973018
+UniRef50_UPI00046F81B4: hypothetical protein	0.2091920723
+UniRef50_UPI00046F81B4: hypothetical protein|unclassified	0.2091920723
+UniRef50_UPI00029A37D1: sugar ABC transporter permease, partial	0.2091816903
+UniRef50_UPI00029A37D1: sugar ABC transporter permease, partial|unclassified	0.2091816903
+UniRef50_UPI0000E0E4AF: lysophospholipase	0.2091780481
+UniRef50_UPI0000E0E4AF: lysophospholipase|unclassified	0.2091780481
+UniRef50_V5XSJ4: Lipoprotein	0.2091191212
+UniRef50_V5XSJ4: Lipoprotein|unclassified	0.2091191212
+UniRef50_H3NF70	0.2091005206
+UniRef50_H3NF70|unclassified	0.2091005206
+UniRef50_F2J106	0.2090914974
+UniRef50_F2J106|unclassified	0.2090914974
+UniRef50_E0TB10: TraC	0.2090907463
+UniRef50_E0TB10: TraC|unclassified	0.2090907463
+UniRef50_UPI00029A646A: signal recognition particle protein Ffh	0.2090888149
+UniRef50_UPI00029A646A: signal recognition particle protein Ffh|unclassified	0.2090888149
+UniRef50_T1ZDK6	0.2090856906
+UniRef50_T1ZDK6|unclassified	0.2090856906
+UniRef50_A0A017T7C4	0.2090805489
+UniRef50_A0A017T7C4|unclassified	0.2090805489
+UniRef50_P18539: Beta-lactamase	0.2090798369
+UniRef50_P18539: Beta-lactamase|unclassified	0.2090798369
+UniRef50_UPI000470413F: hypothetical protein	0.2090650393
+UniRef50_UPI000470413F: hypothetical protein|unclassified	0.2090650393
+UniRef50_UPI00035933C0: PREDICTED: phenazine biosynthesis-like domain-containing protein 1-like	0.2090495922
+UniRef50_UPI00035933C0: PREDICTED: phenazine biosynthesis-like domain-containing protein 1-like|unclassified	0.2090495922
+UniRef50_S6HW34	0.2090456077
+UniRef50_S6HW34|unclassified	0.2090456077
+UniRef50_UPI0003762D52: hypothetical protein	0.2090445758
+UniRef50_UPI0003762D52: hypothetical protein|unclassified	0.2090445758
+UniRef50_UPI0003775761: hypothetical protein	0.2090380202
+UniRef50_UPI0003775761: hypothetical protein|unclassified	0.2090380202
+UniRef50_A4J2G8: Adenine phosphoribosyltransferase	0.2090026722
+UniRef50_A4J2G8: Adenine phosphoribosyltransferase|unclassified	0.2090026722
+UniRef50_UPI00047EF6CC: bis(5''-nucleosyl)-tetraphosphatase	0.2089994859
+UniRef50_UPI00047EF6CC: bis(5''-nucleosyl)-tetraphosphatase|unclassified	0.2089994859
+UniRef50_Q8D2B6	0.2089966490
+UniRef50_Q8D2B6|unclassified	0.2089966490
+UniRef50_UPI0004708144: hypothetical protein, partial	0.2089869149
+UniRef50_UPI0004708144: hypothetical protein, partial|unclassified	0.2089869149
+UniRef50_A0A023VDI9: Lipoprotein	0.2089805729
+UniRef50_A0A023VDI9: Lipoprotein|unclassified	0.2089805729
+UniRef50_V7Z9C6: Phage-related tail protein	0.2089642477
+UniRef50_V7Z9C6: Phage-related tail protein|unclassified	0.2089642477
+UniRef50_A8IPQ2	0.2089585124
+UniRef50_A8IPQ2|unclassified	0.2089585124
+UniRef50_F1SEV6	0.2089512939
+UniRef50_F1SEV6|unclassified	0.2089512939
+UniRef50_UPI00037ABBDF: hypothetical protein	0.2089484142
+UniRef50_UPI00037ABBDF: hypothetical protein|unclassified	0.2089484142
+UniRef50_S7RNH2	0.2089450944
+UniRef50_S7RNH2|unclassified	0.2089450944
+UniRef50_F6DA35	0.2089238097
+UniRef50_F6DA35|unclassified	0.2089238097
+UniRef50_UPI0000DAEAFB: hypothetical protein	0.2089072440
+UniRef50_UPI0000DAEAFB: hypothetical protein|unclassified	0.2089072440
+UniRef50_UPI000315F4DB: DNA polymerase III subunit epsilon	0.2089051890
+UniRef50_UPI000315F4DB: DNA polymerase III subunit epsilon|unclassified	0.2089051890
+UniRef50_UPI000225EB41: FAD-dependent oxidoreductase	0.2089026815
+UniRef50_UPI000225EB41: FAD-dependent oxidoreductase|unclassified	0.2089026815
+UniRef50_UPI0001CBB2C0: PREDICTED: 39S ribosomal protein L27, mitochondrial-like	0.2088981880
+UniRef50_UPI0001CBB2C0: PREDICTED: 39S ribosomal protein L27, mitochondrial-like|unclassified	0.2088981880
+UniRef50_UPI00046FAA89: hypothetical protein	0.2088844955
+UniRef50_UPI00046FAA89: hypothetical protein|unclassified	0.2088844955
+UniRef50_A0QV20: Ribonuclease 3	0.2088840755
+UniRef50_A0QV20: Ribonuclease 3|unclassified	0.2088840755
+UniRef50_UPI0004409E56: PREDICTED: skin secretory protein xP2-like	0.2088809959
+UniRef50_UPI0004409E56: PREDICTED: skin secretory protein xP2-like|unclassified	0.2088809959
+UniRef50_UPI0003B57132: hypothetical protein	0.2088809307
+UniRef50_UPI0003B57132: hypothetical protein|unclassified	0.2088809307
+UniRef50_H0P1J6	0.2088808582
+UniRef50_H0P1J6|unclassified	0.2088808582
+UniRef50_M1FDJ9	0.2088575490
+UniRef50_M1FDJ9|unclassified	0.2088575490
+UniRef50_A0A024KAR3	0.2088558099
+UniRef50_A0A024KAR3|unclassified	0.2088558099
+UniRef50_A0A037XBJ4: Transcriptional regulator	0.2088534246
+UniRef50_A0A037XBJ4: Transcriptional regulator|unclassified	0.2088534246
+UniRef50_UPI00046468A8: hypothetical protein	0.2088524185
+UniRef50_UPI00046468A8: hypothetical protein|unclassified	0.2088524185
+UniRef50_H0YUU4	0.2088488463
+UniRef50_H0YUU4|unclassified	0.2088488463
+UniRef50_T1DG41: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA (Fragment)	0.2088483339
+UniRef50_T1DG41: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA (Fragment)|unclassified	0.2088483339
+UniRef50_UPI00047E0A40: peptidase M48, partial	0.2088396038
+UniRef50_UPI00047E0A40: peptidase M48, partial|unclassified	0.2088396038
+UniRef50_UPI00038109FF: hypothetical protein	0.2088145584
+UniRef50_UPI00038109FF: hypothetical protein|unclassified	0.2088145584
+UniRef50_A7Z0L2: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.2087928125
+UniRef50_A7Z0L2: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.2087928125
+UniRef50_J3PE41	0.2087898101
+UniRef50_J3PE41|unclassified	0.2087898101
+UniRef50_Q04EY5: Energy-coupling factor transporter ATP-binding protein EcfA1	0.2087867717
+UniRef50_Q04EY5: Energy-coupling factor transporter ATP-binding protein EcfA1|unclassified	0.2087867717
+UniRef50_A6CRI2	0.2087753373
+UniRef50_A6CRI2|unclassified	0.2087753373
+UniRef50_W1XBH6	0.2087652402
+UniRef50_W1XBH6|unclassified	0.2087652402
+UniRef50_UPI000380522A: hypothetical protein	0.2087555746
+UniRef50_UPI000380522A: hypothetical protein|unclassified	0.2087555746
+UniRef50_UPI00037DCBDF: hypothetical protein	0.2087470620
+UniRef50_UPI00037DCBDF: hypothetical protein|unclassified	0.2087470620
+UniRef50_A0A011P8Z7	0.2087283890
+UniRef50_A0A011P8Z7|unclassified	0.2087283890
+UniRef50_UPI000289DD7B: protein export cytoplasm protein SecA ATPase RNA helicase	0.2087240891
+UniRef50_UPI000289DD7B: protein export cytoplasm protein SecA ATPase RNA helicase|unclassified	0.2087240891
+UniRef50_A8FF38	0.2087109207
+UniRef50_A8FF38|unclassified	0.2087109207
+UniRef50_B7KEP3: Bifunctional protein FolD	0.2087072899
+UniRef50_B7KEP3: Bifunctional protein FolD|unclassified	0.2087072899
+UniRef50_Q2LU82: Formate--tetrahydrofolate ligase	0.2086714158
+UniRef50_Q2LU82: Formate--tetrahydrofolate ligase|unclassified	0.2086714158
+UniRef50_UPI0004747D71: hypothetical protein	0.2086700087
+UniRef50_UPI0004747D71: hypothetical protein|unclassified	0.2086700087
+UniRef50_Q9JRW7: Biotin synthase	0.2086689886
+UniRef50_Q9JRW7: Biotin synthase|unclassified	0.2086689886
+UniRef50_UPI00035EE7D2: hypothetical protein	0.2086677919
+UniRef50_UPI00035EE7D2: hypothetical protein|unclassified	0.2086677919
+UniRef50_W1EHK5: Alkylated DNA repair protein AlkB	0.2086664277
+UniRef50_W1EHK5: Alkylated DNA repair protein AlkB|unclassified	0.2086664277
+UniRef50_UPI00046594C3: hypothetical protein	0.2086430166
+UniRef50_UPI00046594C3: hypothetical protein|unclassified	0.2086430166
+UniRef50_Q113S1: Putative 3-methyladenine DNA glycosylase	0.2086408293
+UniRef50_Q113S1: Putative 3-methyladenine DNA glycosylase|unclassified	0.2086408293
+UniRef50_L8UDA2: NADH-dependent enoyl-ACP reductase	0.2086343793
+UniRef50_L8UDA2: NADH-dependent enoyl-ACP reductase|unclassified	0.2086343793
+UniRef50_UPI0004684874: hypothetical protein	0.2086319402
+UniRef50_UPI0004684874: hypothetical protein|unclassified	0.2086319402
+UniRef50_UPI0004708F76: ABC transporter ATP-binding protein	0.2086308124
+UniRef50_UPI0004708F76: ABC transporter ATP-binding protein|unclassified	0.2086308124
+UniRef50_UPI00041B6F55: hypothetical protein	0.2086151644
+UniRef50_UPI00041B6F55: hypothetical protein|unclassified	0.2086151644
+UniRef50_R9CDD8: Flavocytochrome C	0.2086084758
+UniRef50_R9CDD8: Flavocytochrome C|unclassified	0.2086084758
+UniRef50_F0P4P5: Membrane protein, putative	0.2085879358
+UniRef50_F0P4P5: Membrane protein, putative|unclassified	0.2085879358
+UniRef50_P95907: Glycerol kinase 2	0.2085805697
+UniRef50_P95907: Glycerol kinase 2|unclassified	0.2085805697
+UniRef50_UPI0003695FD7: D-alanyl-D-alanine carboxypeptidase, partial	0.2085761536
+UniRef50_UPI0003695FD7: D-alanyl-D-alanine carboxypeptidase, partial|unclassified	0.2085761536
+UniRef50_J3BG65: Putative ATPase (Fragment)	0.2085662915
+UniRef50_J3BG65: Putative ATPase (Fragment)|unclassified	0.2085662915
+UniRef50_UPI00036486F4: hypothetical protein	0.2085639358
+UniRef50_UPI00036486F4: hypothetical protein|unclassified	0.2085639358
+UniRef50_UPI00047189D0: transposase	0.2085500081
+UniRef50_UPI00047189D0: transposase|unclassified	0.2085500081
+UniRef50_K2KCN1	0.2084888168
+UniRef50_K2KCN1|unclassified	0.2084888168
+UniRef50_W5BGQ3	0.2084707549
+UniRef50_W5BGQ3|unclassified	0.2084707549
+UniRef50_U9TNM9	0.2084554714
+UniRef50_U9TNM9|unclassified	0.2084554714
+UniRef50_A0A022MUG8	0.2084460028
+UniRef50_A0A022MUG8|unclassified	0.2084460028
+UniRef50_UPI000344BE75: hypothetical protein	0.2084421895
+UniRef50_UPI000344BE75: hypothetical protein|unclassified	0.2084421895
+UniRef50_UPI0004743A90: hypothetical protein, partial	0.2084331638
+UniRef50_UPI0004743A90: hypothetical protein, partial|unclassified	0.2084331638
+UniRef50_M4WR33	0.2084303143
+UniRef50_M4WR33|unclassified	0.2084303143
+UniRef50_UPI00036FA201: hypothetical protein	0.2084301286
+UniRef50_UPI00036FA201: hypothetical protein|unclassified	0.2084301286
+UniRef50_UPI00046ECF84: hypothetical protein, partial	0.2083951691
+UniRef50_UPI00046ECF84: hypothetical protein, partial|unclassified	0.2083951691
+UniRef50_J4SPI9	0.2083951112
+UniRef50_J4SPI9|unclassified	0.2083951112
+UniRef50_UPI00046D860E: hypothetical protein	0.2083780520
+UniRef50_UPI00046D860E: hypothetical protein|unclassified	0.2083780520
+UniRef50_UPI00037DF1FA: hypothetical protein, partial	0.2083744634
+UniRef50_UPI00037DF1FA: hypothetical protein, partial|unclassified	0.2083744634
+UniRef50_F3WY50	0.2083605736
+UniRef50_F3WY50|unclassified	0.2083605736
+UniRef50_UPI00047865B6: orotidine 5''-phosphate decarboxylase	0.2083471378
+UniRef50_UPI00047865B6: orotidine 5''-phosphate decarboxylase|unclassified	0.2083471378
+UniRef50_F2J0T4: Proline-rich region	0.2083392843
+UniRef50_F2J0T4: Proline-rich region|unclassified	0.2083392843
+UniRef50_UPI00037DA3B2: hypothetical protein	0.2083192400
+UniRef50_UPI00037DA3B2: hypothetical protein|unclassified	0.2083192400
+UniRef50_UPI000288E0DA: putative oxidoreductase	0.2083049830
+UniRef50_UPI000288E0DA: putative oxidoreductase|unclassified	0.2083049830
+UniRef50_F3ZDJ3	0.2083029017
+UniRef50_F3ZDJ3|unclassified	0.2083029017
+UniRef50_UPI000362591D: hypothetical protein	0.2082952542
+UniRef50_UPI000362591D: hypothetical protein|unclassified	0.2082952542
+UniRef50_UPI0004787829: transporter	0.2082862699
+UniRef50_UPI0004787829: transporter|unclassified	0.2082862699
+UniRef50_UPI00047C40EA: lysophospholipase	0.2082770311
+UniRef50_UPI00047C40EA: lysophospholipase|unclassified	0.2082770311
+UniRef50_UPI00036C9E20: hypothetical protein	0.2082658695
+UniRef50_UPI00036C9E20: hypothetical protein|unclassified	0.2082658695
+UniRef50_UPI0003957461: PREDICTED: proline-rich protein 2-like	0.2082574083
+UniRef50_UPI0003957461: PREDICTED: proline-rich protein 2-like|unclassified	0.2082574083
+UniRef50_V6UW82: Phosphate ABC transporter permease (Fragment)	0.2082448044
+UniRef50_V6UW82: Phosphate ABC transporter permease (Fragment)|unclassified	0.2082448044
+UniRef50_X1VYY9: Marine sediment metagenome DNA, contig: S12H4_S23188 (Fragment)	0.2082411980
+UniRef50_X1VYY9: Marine sediment metagenome DNA, contig: S12H4_S23188 (Fragment)|unclassified	0.2082411980
+UniRef50_UPI000360760D: hypothetical protein	0.2082400216
+UniRef50_UPI000360760D: hypothetical protein|unclassified	0.2082400216
+UniRef50_UPI00036AFE80: cell wall hydrolase	0.2082320080
+UniRef50_UPI00036AFE80: cell wall hydrolase|unclassified	0.2082320080
+UniRef50_UPI0003B65EDF: hypothetical protein	0.2082106177
+UniRef50_UPI0003B65EDF: hypothetical protein|unclassified	0.2082106177
+UniRef50_UPI00037A9B1E: hypothetical protein	0.2082004203
+UniRef50_UPI00037A9B1E: hypothetical protein|unclassified	0.2082004203
+UniRef50_W9T565	0.2081955788
+UniRef50_W9T565|unclassified	0.2081955788
+UniRef50_G9RNJ2	0.2081855213
+UniRef50_G9RNJ2|unclassified	0.2081855213
+UniRef50_A0A011RY06: Ribose and galactose chemoreceptor protein	0.2081789851
+UniRef50_A0A011RY06: Ribose and galactose chemoreceptor protein|unclassified	0.2081789851
+UniRef50_A0A017T615	0.2081744830
+UniRef50_A0A017T615|unclassified	0.2081744830
+UniRef50_M3Y6R0	0.2081743197
+UniRef50_M3Y6R0|unclassified	0.2081743197
+UniRef50_UPI0004660C96: amino acid lyase	0.2081664502
+UniRef50_UPI0004660C96: amino acid lyase|unclassified	0.2081664502
+UniRef50_N9XWE8	0.2081628629
+UniRef50_N9XWE8|unclassified	0.2081628629
+UniRef50_UPI00046F1A00: PTS lactose transporter subunit IIC, partial	0.2081262660
+UniRef50_UPI00046F1A00: PTS lactose transporter subunit IIC, partial|unclassified	0.2081262660
+UniRef50_P23382: Immune inhibitor A	0.2081014547
+UniRef50_P23382: Immune inhibitor A|unclassified	0.2081014547
+UniRef50_W7D2J3	0.2080973832
+UniRef50_W7D2J3|unclassified	0.2080973832
+UniRef50_W1F0U4	0.2080803174
+UniRef50_W1F0U4|unclassified	0.2080803174
+UniRef50_S5AT75	0.2080603822
+UniRef50_S5AT75|unclassified	0.2080603822
+UniRef50_W1FRC1: Co-activator of prophage gene expression IbrB	0.2080477107
+UniRef50_W1FRC1: Co-activator of prophage gene expression IbrB|unclassified	0.2080477107
+UniRef50_M3AIK5	0.2080284197
+UniRef50_M3AIK5|unclassified	0.2080284197
+UniRef50_UPI00021A3D4D: PREDICTED: homocysteine S-methyltransferase ybgG-like	0.2080126312
+UniRef50_UPI00021A3D4D: PREDICTED: homocysteine S-methyltransferase ybgG-like|unclassified	0.2080126312
+UniRef50_A9M4B9	0.2079514705
+UniRef50_A9M4B9|unclassified	0.2079514705
+UniRef50_I5C5U6	0.2079474964
+UniRef50_I5C5U6|unclassified	0.2079474964
+UniRef50_E1RPL7	0.2079434394
+UniRef50_E1RPL7|unclassified	0.2079434394
+UniRef50_UPI000378AB77: integrase	0.2079339660
+UniRef50_UPI000378AB77: integrase|unclassified	0.2079339660
+UniRef50_D2R401	0.2079297021
+UniRef50_D2R401|unclassified	0.2079297021
+UniRef50_UPI000252BAC1: PREDICTED: LOW QUALITY PROTEIN: catalase-like	0.2079257946
+UniRef50_UPI000252BAC1: PREDICTED: LOW QUALITY PROTEIN: catalase-like|unclassified	0.2079257946
+UniRef50_UPI000365A6F0: hypothetical protein	0.2079253768
+UniRef50_UPI000365A6F0: hypothetical protein|unclassified	0.2079253768
+UniRef50_A0A033UB34	0.2079063407
+UniRef50_A0A033UB34|unclassified	0.2079063407
+UniRef50_UPI000414328B: lactose ABC transporter permease	0.2078950886
+UniRef50_UPI000414328B: lactose ABC transporter permease|unclassified	0.2078950886
+UniRef50_UPI0003747DE2: hypothetical protein	0.2078950136
+UniRef50_UPI0003747DE2: hypothetical protein|unclassified	0.2078950136
+UniRef50_UPI00035D7083: hypothetical protein	0.2078941164
+UniRef50_UPI00035D7083: hypothetical protein|unclassified	0.2078941164
+UniRef50_UPI00037A176D: hypothetical protein	0.2078932135
+UniRef50_UPI00037A176D: hypothetical protein|unclassified	0.2078932135
+UniRef50_N4RQE5: Class II Aldolase and Adducin N-terminal domain protein	0.2078580294
+UniRef50_N4RQE5: Class II Aldolase and Adducin N-terminal domain protein|unclassified	0.2078580294
+UniRef50_Q5Z7E3	0.2078579199
+UniRef50_Q5Z7E3|unclassified	0.2078579199
+UniRef50_E1VNF9	0.2078505153
+UniRef50_E1VNF9|unclassified	0.2078505153
+UniRef50_Q73TT9	0.2078359689
+UniRef50_Q73TT9|unclassified	0.2078359689
+UniRef50_UPI00037710EA: hypothetical protein	0.2078358561
+UniRef50_UPI00037710EA: hypothetical protein|unclassified	0.2078358561
+UniRef50_UPI0003B4B1EC: hypothetical protein	0.2078336584
+UniRef50_UPI0003B4B1EC: hypothetical protein|unclassified	0.2078336584
+UniRef50_UPI0002F3F5B2: hypothetical protein	0.2078284545
+UniRef50_UPI0002F3F5B2: hypothetical protein|unclassified	0.2078284545
+UniRef50_UPI0003B66B24: molecular chaperone DnaK	0.2078162173
+UniRef50_UPI0003B66B24: molecular chaperone DnaK|unclassified	0.2078162173
+UniRef50_U5L4Y4: Membrane protein	0.2078001588
+UniRef50_U5L4Y4: Membrane protein|unclassified	0.2078001588
+UniRef50_A3SI31	0.2077994921
+UniRef50_A3SI31|unclassified	0.2077994921
+UniRef50_UPI0004071F66: deacetylase	0.2077727325
+UniRef50_UPI0004071F66: deacetylase|unclassified	0.2077727325
+UniRef50_UPI0004760C2B: alkylphosphonate ABC transporter substrate-binding protein	0.2077568853
+UniRef50_UPI0004760C2B: alkylphosphonate ABC transporter substrate-binding protein|unclassified	0.2077568853
+UniRef50_B9J9J2: Crossover junction endodeoxyribonuclease RuvC	0.2077517564
+UniRef50_B9J9J2: Crossover junction endodeoxyribonuclease RuvC|unclassified	0.2077517564
+UniRef50_UPI0003B71130: DNA-binding protein	0.2077447937
+UniRef50_UPI0003B71130: DNA-binding protein|unclassified	0.2077447937
+UniRef50_M3A5N9	0.2077328573
+UniRef50_M3A5N9|unclassified	0.2077328573
+UniRef50_L5KTT8	0.2077321325
+UniRef50_L5KTT8|unclassified	0.2077321325
+UniRef50_U3QLH4: Oxidoreductase	0.2077230234
+UniRef50_U3QLH4: Oxidoreductase|unclassified	0.2077230234
+UniRef50_UPI00035C1D96: hypothetical protein	0.2077129504
+UniRef50_UPI00035C1D96: hypothetical protein|unclassified	0.2077129504
+UniRef50_F5ZJ13: Tetra tricopeptide repeat family protein	0.2076862177
+UniRef50_F5ZJ13: Tetra tricopeptide repeat family protein|unclassified	0.2076862177
+UniRef50_UPI00038051F8: hypothetical protein	0.2076857692
+UniRef50_UPI00038051F8: hypothetical protein|unclassified	0.2076857692
+UniRef50_Q5LI12: Orotate phosphoribosyltransferase	0.2076745538
+UniRef50_Q5LI12: Orotate phosphoribosyltransferase|unclassified	0.2076745538
+UniRef50_D8ID07: MaoC domain protein dehydratase	0.2076692226
+UniRef50_D8ID07: MaoC domain protein dehydratase|unclassified	0.2076692226
+UniRef50_W8X7G5	0.2076649214
+UniRef50_W8X7G5|unclassified	0.2076649214
+UniRef50_A4F7J3: Lipoprotein	0.2076391313
+UniRef50_A4F7J3: Lipoprotein|unclassified	0.2076391313
+UniRef50_UPI000369D122: hypothetical protein	0.2076358803
+UniRef50_UPI000369D122: hypothetical protein|unclassified	0.2076358803
+UniRef50_V5XF48	0.2076326698
+UniRef50_V5XF48|unclassified	0.2076326698
+UniRef50_H4GDU5: Replication initiation family protein	0.2076282375
+UniRef50_H4GDU5: Replication initiation family protein|unclassified	0.2076282375
+UniRef50_UPI0003025696: hypothetical protein	0.2076182235
+UniRef50_UPI0003025696: hypothetical protein|unclassified	0.2076182235
+UniRef50_B4EZY6	0.2076132928
+UniRef50_B4EZY6|unclassified	0.2076132928
+UniRef50_T1C8V8: Prevent-host-death family protein	0.2076087914
+UniRef50_T1C8V8: Prevent-host-death family protein|unclassified	0.2076087914
+UniRef50_Y3TPI7	0.2076031638
+UniRef50_Y3TPI7|unclassified	0.2076031638
+UniRef50_K3ZUT6	0.2075824345
+UniRef50_K3ZUT6|unclassified	0.2075824345
+UniRef50_UPI0004737F94: penicillin-binding protein	0.2075822933
+UniRef50_UPI0004737F94: penicillin-binding protein|unclassified	0.2075822933
+UniRef50_E3EBR9	0.2075699279
+UniRef50_E3EBR9|unclassified	0.2075699279
+UniRef50_A6GW77: Biotin synthase	0.2075623084
+UniRef50_A6GW77: Biotin synthase|unclassified	0.2075623084
+UniRef50_H0TTK2	0.2075475010
+UniRef50_H0TTK2|unclassified	0.2075475010
+UniRef50_V8P671	0.2075342431
+UniRef50_V8P671|unclassified	0.2075342431
+UniRef50_UPI00035EAD94: hypothetical protein	0.2075297401
+UniRef50_UPI00035EAD94: hypothetical protein|unclassified	0.2075297401
+UniRef50_Q97F65: Thymidine kinase	0.2074885124
+UniRef50_Q97F65: Thymidine kinase|unclassified	0.2074885124
+UniRef50_Q58034: Putative fumarate hydratase subunit beta	0.2074759625
+UniRef50_Q58034: Putative fumarate hydratase subunit beta|unclassified	0.2074759625
+UniRef50_G2KQQ1	0.2074742295
+UniRef50_G2KQQ1|unclassified	0.2074742295
+UniRef50_UPI00035FE0CD: recombinase	0.2074735209
+UniRef50_UPI00035FE0CD: recombinase|unclassified	0.2074735209
+UniRef50_M2SBT2	0.2074313369
+UniRef50_M2SBT2|unclassified	0.2074313369
+UniRef50_U3B7B2	0.2074267488
+UniRef50_U3B7B2|unclassified	0.2074267488
+UniRef50_K1Z7W7	0.2074250525
+UniRef50_K1Z7W7|unclassified	0.2074250525
+UniRef50_K3K7Q1: Protein CreA	0.2074236475
+UniRef50_K3K7Q1: Protein CreA|unclassified	0.2074236475
+UniRef50_D5ALF6: NnrU family protein	0.2074163531
+UniRef50_D5ALF6: NnrU family protein|unclassified	0.2074163531
+UniRef50_F2ZBV1: 60 kDa chaperonin (Fragment)	0.2074018196
+UniRef50_F2ZBV1: 60 kDa chaperonin (Fragment)|unclassified	0.2074018196
+UniRef50_UPI00037B07A0: MULTISPECIES: hypothetical protein	0.2073914409
+UniRef50_UPI00037B07A0: MULTISPECIES: hypothetical protein|unclassified	0.2073914409
+UniRef50_UPI0002F511F9: cytochrome C oxidase subunit I	0.2073693074
+UniRef50_UPI0002F511F9: cytochrome C oxidase subunit I|unclassified	0.2073693074
+UniRef50_D0YT44	0.2073637426
+UniRef50_D0YT44|unclassified	0.2073637426
+UniRef50_Q5YRD1: Methionine import ATP-binding protein MetN	0.2073627463
+UniRef50_Q5YRD1: Methionine import ATP-binding protein MetN|unclassified	0.2073627463
+UniRef50_D7G171	0.2073622900
+UniRef50_D7G171|unclassified	0.2073622900
+UniRef50_UPI00037C93EA: hypothetical protein	0.2073599053
+UniRef50_UPI00037C93EA: hypothetical protein|unclassified	0.2073599053
+UniRef50_K0FMM2: BclA protein	0.2073522973
+UniRef50_K0FMM2: BclA protein|unclassified	0.2073522973
+UniRef50_UPI0003AD71E5: hypothetical protein	0.2073388366
+UniRef50_UPI0003AD71E5: hypothetical protein|unclassified	0.2073388366
+UniRef50_G0VM95: Inner membrane transport protein YhaO	0.2073269365
+UniRef50_G0VM95: Inner membrane transport protein YhaO|unclassified	0.2073269365
+UniRef50_G8AEA6	0.2072958794
+UniRef50_G8AEA6|unclassified	0.2072958794
+UniRef50_Q477B7: Phenylacetic acid degradation-related protein	0.2072933426
+UniRef50_Q477B7: Phenylacetic acid degradation-related protein|unclassified	0.2072933426
+UniRef50_B6IWR2	0.2072877358
+UniRef50_B6IWR2|unclassified	0.2072877358
+UniRef50_W9GXS7: Pilus biogenesis protein	0.2072776098
+UniRef50_W9GXS7: Pilus biogenesis protein|unclassified	0.2072776098
+UniRef50_UPI0003B33E14: threonine dehydratase, partial	0.2072629733
+UniRef50_UPI0003B33E14: threonine dehydratase, partial|unclassified	0.2072629733
+UniRef50_G9YEF0: Sporulation initiation inhibitor protein Soj domain protein	0.2072619204
+UniRef50_G9YEF0: Sporulation initiation inhibitor protein Soj domain protein|unclassified	0.2072619204
+UniRef50_W7QPD4	0.2072608906
+UniRef50_W7QPD4|unclassified	0.2072608906
+UniRef50_UPI0002653333	0.2072553680
+UniRef50_UPI0002653333|unclassified	0.2072553680
+UniRef50_C3M8S2: Holo-[acyl-carrier-protein] synthase	0.2072541095
+UniRef50_C3M8S2: Holo-[acyl-carrier-protein] synthase|unclassified	0.2072541095
+UniRef50_UPI00036E1CFF: hypothetical protein	0.2072484086
+UniRef50_UPI00036E1CFF: hypothetical protein|unclassified	0.2072484086
+UniRef50_Q7WEH6: Hemin import ATP-binding protein HmuV	0.2072435129
+UniRef50_Q7WEH6: Hemin import ATP-binding protein HmuV|unclassified	0.2072435129
+UniRef50_F0PBX1: Transposase, orfB, IS3 family protein	0.2072429467
+UniRef50_F0PBX1: Transposase, orfB, IS3 family protein|unclassified	0.2072429467
+UniRef50_K2DJQ9	0.2072264004
+UniRef50_K2DJQ9|unclassified	0.2072264004
+UniRef50_B1H930: Class C beta-lactamase, degenerate	0.2072232701
+UniRef50_B1H930: Class C beta-lactamase, degenerate|unclassified	0.2072232701
+UniRef50_UPI00047E0277: hypothetical protein	0.2072189068
+UniRef50_UPI00047E0277: hypothetical protein|unclassified	0.2072189068
+UniRef50_UPI000405783F: heme peroxidase	0.2072115878
+UniRef50_UPI000405783F: heme peroxidase|unclassified	0.2072115878
+UniRef50_W5IW44: Diguanylate cyclase	0.2072088892
+UniRef50_W5IW44: Diguanylate cyclase|unclassified	0.2072088892
+UniRef50_W6JW05	0.2071997989
+UniRef50_W6JW05|unclassified	0.2071997989
+UniRef50_R6QTT5	0.2071963570
+UniRef50_R6QTT5|unclassified	0.2071963570
+UniRef50_UPI0003491ACD: amidase	0.2071835564
+UniRef50_UPI0003491ACD: amidase|unclassified	0.2071835564
+UniRef50_X0YAI8: Marine sediment metagenome DNA, contig: S01H1_S38872 (Fragment)	0.2071793670
+UniRef50_X0YAI8: Marine sediment metagenome DNA, contig: S01H1_S38872 (Fragment)|unclassified	0.2071793670
+UniRef50_B9TQ51	0.2071720027
+UniRef50_B9TQ51|unclassified	0.2071720027
+UniRef50_UPI0002FD307E: hypothetical protein	0.2071583195
+UniRef50_UPI0002FD307E: hypothetical protein|unclassified	0.2071583195
+UniRef50_UPI00046A6AED: ABC transporter ATP-binding protein	0.2071563210
+UniRef50_UPI00046A6AED: ABC transporter ATP-binding protein|unclassified	0.2071563210
+UniRef50_L6QB28	0.2071262439
+UniRef50_L6QB28|unclassified	0.2071262439
+UniRef50_UPI0003179E71: hypothetical protein	0.2071217117
+UniRef50_UPI0003179E71: hypothetical protein|unclassified	0.2071217117
+UniRef50_I1AFI7	0.2071105493
+UniRef50_I1AFI7|unclassified	0.2071105493
+UniRef50_F3S3J9	0.2071029436
+UniRef50_F3S3J9|unclassified	0.2071029436
+UniRef50_X0Z2Z0: Marine sediment metagenome DNA, contig: S01H4_C03903 (Fragment)	0.2070957662
+UniRef50_X0Z2Z0: Marine sediment metagenome DNA, contig: S01H4_C03903 (Fragment)|unclassified	0.2070957662
+UniRef50_Q42891: Lactoylglutathione lyase	0.2070884770
+UniRef50_Q42891: Lactoylglutathione lyase|unclassified	0.2070884770
+UniRef50_UPI000464F030: hypothetical protein	0.2070627108
+UniRef50_UPI000464F030: hypothetical protein|unclassified	0.2070627108
+UniRef50_I3IDA6	0.2070561477
+UniRef50_I3IDA6|unclassified	0.2070561477
+UniRef50_K1T356: ABC-type polysaccharide/polyol phosphate export system, permease component (Fragment)	0.2070423304
+UniRef50_K1T356: ABC-type polysaccharide/polyol phosphate export system, permease component (Fragment)|unclassified	0.2070423304
+UniRef50_A1UR85: Holliday junction ATP-dependent DNA helicase RuvA	0.2070352230
+UniRef50_A1UR85: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.2070352230
+UniRef50_UPI000372FD5E: DNA helicase	0.2070340968
+UniRef50_UPI000372FD5E: DNA helicase|unclassified	0.2070340968
+UniRef50_R5XBW3: Carbonic anhydrase family 3	0.2069292165
+UniRef50_R5XBW3: Carbonic anhydrase family 3|unclassified	0.2069292165
+UniRef50_UPI000287B639: lactam utilization protein B	0.2069195014
+UniRef50_UPI000287B639: lactam utilization protein B|unclassified	0.2069195014
+UniRef50_UPI00035D89F3: hypothetical protein	0.2069163414
+UniRef50_UPI00035D89F3: hypothetical protein|unclassified	0.2069163414
+UniRef50_Q8IV48: 3'-5' exoribonuclease 1	0.2069141579
+UniRef50_Q8IV48: 3'-5' exoribonuclease 1|unclassified	0.2069141579
+UniRef50_J5VB85	0.2069108143
+UniRef50_J5VB85|unclassified	0.2069108143
+UniRef50_UPI00037B1DC7: hypothetical protein	0.2069086968
+UniRef50_UPI00037B1DC7: hypothetical protein|unclassified	0.2069086968
+UniRef50_X6JJJ8	0.2068785790
+UniRef50_X6JJJ8|unclassified	0.2068785790
+UniRef50_S9QUW7: Acetolactate synthase	0.2068458671
+UniRef50_S9QUW7: Acetolactate synthase|unclassified	0.2068458671
+UniRef50_UPI000477EDDF: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.2068440012
+UniRef50_UPI000477EDDF: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.2068440012
+UniRef50_UPI0003F1B0AA: PREDICTED: collagen alpha-1(I) chain-like	0.2068424797
+UniRef50_UPI0003F1B0AA: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.2068424797
+UniRef50_W5XGH3: TM2 domain-containing protein	0.2068257532
+UniRef50_W5XGH3: TM2 domain-containing protein|unclassified	0.2068257532
+UniRef50_UPI0002D588EE: hypothetical protein	0.2068223633
+UniRef50_UPI0002D588EE: hypothetical protein|unclassified	0.2068223633
+UniRef50_UPI0003B746E9: peptide ABC transporter ATPase	0.2068094903
+UniRef50_UPI0003B746E9: peptide ABC transporter ATPase|unclassified	0.2068094903
+UniRef50_UPI00036568A9: hypothetical protein	0.2067915596
+UniRef50_UPI00036568A9: hypothetical protein|unclassified	0.2067915596
+UniRef50_UPI000393F498: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase	0.2067729377
+UniRef50_UPI000393F498: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase|unclassified	0.2067729377
+UniRef50_E3I5C8: Phosphate-starvation-inducible E-like protein	0.2067578349
+UniRef50_E3I5C8: Phosphate-starvation-inducible E-like protein|unclassified	0.2067578349
+UniRef50_UPI00047DAD98: hypothetical protein	0.2067547468
+UniRef50_UPI00047DAD98: hypothetical protein|unclassified	0.2067547468
+UniRef50_C9TNI8: NAD-specific glutamate dehydrogenase	0.2067510096
+UniRef50_C9TNI8: NAD-specific glutamate dehydrogenase|unclassified	0.2067510096
+UniRef50_U0Z3B2	0.2067463641
+UniRef50_U0Z3B2|unclassified	0.2067463641
+UniRef50_UPI0003688E0C: hypothetical protein	0.2067452456
+UniRef50_UPI0003688E0C: hypothetical protein|unclassified	0.2067452456
+UniRef50_UPI000455EDC7: ribosomal protein L2	0.2067182861
+UniRef50_UPI000455EDC7: ribosomal protein L2|unclassified	0.2067182861
+UniRef50_UPI0002FFF8E0: hypothetical protein	0.2067104987
+UniRef50_UPI0002FFF8E0: hypothetical protein|unclassified	0.2067104987
+UniRef50_M1CWG1	0.2066813302
+UniRef50_M1CWG1|unclassified	0.2066813302
+UniRef50_UPI000478E057: ABC transporter	0.2066631897
+UniRef50_UPI000478E057: ABC transporter|unclassified	0.2066631897
+UniRef50_UPI0001D5E9B8	0.2066589264
+UniRef50_UPI0001D5E9B8|unclassified	0.2066589264
+UniRef50_UPI0003809CA6: hypothetical protein	0.2066517349
+UniRef50_UPI0003809CA6: hypothetical protein|unclassified	0.2066517349
+UniRef50_UPI0004657654: inactive regulatory protein	0.2066376868
+UniRef50_UPI0004657654: inactive regulatory protein|unclassified	0.2066376868
+UniRef50_Q6H3Y9: Atency associated nuclear antigen-like	0.2066308316
+UniRef50_Q6H3Y9: Atency associated nuclear antigen-like|unclassified	0.2066308316
+UniRef50_UPI00037D8E01: hypothetical protein	0.2066125580
+UniRef50_UPI00037D8E01: hypothetical protein|unclassified	0.2066125580
+UniRef50_E0RL12: Glucose starvation-inducible protein B (General stress protein B)	0.2066075723
+UniRef50_E0RL12: Glucose starvation-inducible protein B (General stress protein B)|unclassified	0.2066075723
+UniRef50_UPI0003C18A44: PREDICTED: electron transfer flavoprotein subunit beta-like, partial	0.2065976252
+UniRef50_UPI0003C18A44: PREDICTED: electron transfer flavoprotein subunit beta-like, partial|unclassified	0.2065976252
+UniRef50_UPI00035F36E5: hypothetical protein	0.2065925788
+UniRef50_UPI00035F36E5: hypothetical protein|unclassified	0.2065925788
+UniRef50_W1HR29: Putative metal chaperone, involved in Zn homeostasis, GTPase of COG0523 family	0.2065838287
+UniRef50_W1HR29: Putative metal chaperone, involved in Zn homeostasis, GTPase of COG0523 family|unclassified	0.2065838287
+UniRef50_UPI00047D9E04: hypothetical protein	0.2065642083
+UniRef50_UPI00047D9E04: hypothetical protein|unclassified	0.2065642083
+UniRef50_UPI0003B753D6: glutamyl-tRNA(Gln) amidotransferase	0.2065640405
+UniRef50_UPI0003B753D6: glutamyl-tRNA(Gln) amidotransferase|unclassified	0.2065640405
+UniRef50_N6X0P6	0.2065375505
+UniRef50_N6X0P6|unclassified	0.2065375505
+UniRef50_A0A030X9B9	0.2065366999
+UniRef50_A0A030X9B9|unclassified	0.2065366999
+UniRef50_UPI00040937D6: hypothetical protein	0.2065280462
+UniRef50_UPI00040937D6: hypothetical protein|unclassified	0.2065280462
+UniRef50_J7N045: Bacteriophage GP35 protein	0.2065030678
+UniRef50_J7N045: Bacteriophage GP35 protein|unclassified	0.2065030678
+UniRef50_M5K784	0.2064987616
+UniRef50_M5K784|unclassified	0.2064987616
+UniRef50_R1EHV1	0.2064979912
+UniRef50_R1EHV1|unclassified	0.2064979912
+UniRef50_UPI0004768D58: 3-mercaptopyruvate sulfurtransferase	0.2064883555
+UniRef50_UPI0004768D58: 3-mercaptopyruvate sulfurtransferase|unclassified	0.2064883555
+UniRef50_Q4R510: FAD-dependent oxidoreductase domain-containing protein 1	0.2064806275
+UniRef50_Q4R510: FAD-dependent oxidoreductase domain-containing protein 1|unclassified	0.2064806275
+UniRef50_H4GZ48	0.2064380977
+UniRef50_H4GZ48|unclassified	0.2064380977
+UniRef50_UPI00039BE224: TetR family transcriptional regulator	0.2064369197
+UniRef50_UPI00039BE224: TetR family transcriptional regulator|unclassified	0.2064369197
+UniRef50_UPI0003456B07: hypothetical protein	0.2064299010
+UniRef50_UPI0003456B07: hypothetical protein|unclassified	0.2064299010
+UniRef50_UPI00037DED21: hypothetical protein	0.2064296062
+UniRef50_UPI00037DED21: hypothetical protein|unclassified	0.2064296062
+UniRef50_UPI00040366D8: cardiolipin synthetase	0.2064206755
+UniRef50_UPI00040366D8: cardiolipin synthetase|unclassified	0.2064206755
+UniRef50_UPI000401BA02: HAD family hydrolase	0.2064191593
+UniRef50_UPI000401BA02: HAD family hydrolase|unclassified	0.2064191593
+UniRef50_UPI0002EFFE6E: hypothetical protein	0.2063825425
+UniRef50_UPI0002EFFE6E: hypothetical protein|unclassified	0.2063825425
+UniRef50_R9PQU8: Surface protein	0.2063783014
+UniRef50_R9PQU8: Surface protein|unclassified	0.2063783014
+UniRef50_UPI0003B730B5: hypothetical protein	0.2063782610
+UniRef50_UPI0003B730B5: hypothetical protein|unclassified	0.2063782610
+UniRef50_R0F7N9	0.2063635960
+UniRef50_R0F7N9|unclassified	0.2063635960
+UniRef50_E3NW25	0.2063313204
+UniRef50_E3NW25|unclassified	0.2063313204
+UniRef50_UPI0003665115: hypothetical protein	0.2063286113
+UniRef50_UPI0003665115: hypothetical protein|unclassified	0.2063286113
+UniRef50_UPI000056DCC0: L-serine dehydratase 1, truncated, partial	0.2062972593
+UniRef50_UPI000056DCC0: L-serine dehydratase 1, truncated, partial|unclassified	0.2062972593
+UniRef50_Q6BX45: FK506-binding protein 1	0.2062674555
+UniRef50_Q6BX45: FK506-binding protein 1|unclassified	0.2062674555
+UniRef50_F3ZHT3: Putative transcriptional regulator, MerR family protein	0.2062600872
+UniRef50_F3ZHT3: Putative transcriptional regulator, MerR family protein|unclassified	0.2062600872
+UniRef50_L5ZP76: Virulence effector protein	0.2062546293
+UniRef50_L5ZP76: Virulence effector protein|unclassified	0.2062546293
+UniRef50_O27554: Probable NH(3)-dependent NAD(+) synthetase	0.2062477584
+UniRef50_O27554: Probable NH(3)-dependent NAD(+) synthetase|unclassified	0.2062477584
+UniRef50_UPI0004731E84: protochlorophyllide oxidoreductase, partial	0.2062187391
+UniRef50_UPI0004731E84: protochlorophyllide oxidoreductase, partial|unclassified	0.2062187391
+UniRef50_UPI00035ED085: hypothetical protein	0.2062178146
+UniRef50_UPI00035ED085: hypothetical protein|unclassified	0.2062178146
+UniRef50_UPI0003D6E283: PREDICTED: LRR receptor-like serine/threonine-protein kinase GSO1-like	0.2062176823
+UniRef50_UPI0003D6E283: PREDICTED: LRR receptor-like serine/threonine-protein kinase GSO1-like|unclassified	0.2062176823
+UniRef50_UPI00028A3ACA: GTP-binding protein YchF, partial	0.2061965291
+UniRef50_UPI00028A3ACA: GTP-binding protein YchF, partial|unclassified	0.2061965291
+UniRef50_U2Z2W7: Methionine synthase I, cobalamin-binding domain	0.2061802978
+UniRef50_U2Z2W7: Methionine synthase I, cobalamin-binding domain|unclassified	0.2061802978
+UniRef50_A6X7L7: Replication protein C	0.2061748120
+UniRef50_A6X7L7: Replication protein C|unclassified	0.2061748120
+UniRef50_Q6FF55: Putative Holliday junction resolvase	0.2061728525
+UniRef50_Q6FF55: Putative Holliday junction resolvase|unclassified	0.2061728525
+UniRef50_UPI00030E86A7: hypothetical protein	0.2061719989
+UniRef50_UPI00030E86A7: hypothetical protein|unclassified	0.2061719989
+UniRef50_UPI000393C962: PREDICTED: ATP synthase lipid-binding protein, mitochondrial	0.2061713932
+UniRef50_UPI000393C962: PREDICTED: ATP synthase lipid-binding protein, mitochondrial|unclassified	0.2061713932
+UniRef50_UPI0003790E88: hypothetical protein	0.2061536585
+UniRef50_UPI0003790E88: hypothetical protein|unclassified	0.2061536585
+UniRef50_UPI0003FCCBAF: hypothetical protein	0.2061493747
+UniRef50_UPI0003FCCBAF: hypothetical protein|unclassified	0.2061493747
+UniRef50_B0C8D6: Glutamate--tRNA ligase	0.2061461727
+UniRef50_B0C8D6: Glutamate--tRNA ligase|unclassified	0.2061461727
+UniRef50_Q02250: Delta-aminolevulinic acid dehydratase	0.2061396168
+UniRef50_Q02250: Delta-aminolevulinic acid dehydratase|unclassified	0.2061396168
+UniRef50_D4HA15	0.2061332755
+UniRef50_D4HA15|unclassified	0.2061332755
+UniRef50_UPI0003B60977: membane protease HflC	0.2061276993
+UniRef50_UPI0003B60977: membane protease HflC|unclassified	0.2061276993
+UniRef50_E8R3M7: Short-chain dehydrogenase/reductase SDR	0.2061082550
+UniRef50_E8R3M7: Short-chain dehydrogenase/reductase SDR|unclassified	0.2061082550
+UniRef50_G8UJ46	0.2060719743
+UniRef50_G8UJ46|unclassified	0.2060719743
+UniRef50_D2VEI1: Predicted protein (Fragment)	0.2060481653
+UniRef50_D2VEI1: Predicted protein (Fragment)|unclassified	0.2060481653
+UniRef50_UPI00036B8CC1: hypothetical protein, partial	0.2060314303
+UniRef50_UPI00036B8CC1: hypothetical protein, partial|unclassified	0.2060314303
+UniRef50_F0VAA0	0.2060160821
+UniRef50_F0VAA0|unclassified	0.2060160821
+UniRef50_Q8D2A1: Biotin synthase	0.2060104768
+UniRef50_Q8D2A1: Biotin synthase|unclassified	0.2060104768
+UniRef50_UPI00015846CB: hypothetical protein BC1G_06473	0.2059865427
+UniRef50_UPI00015846CB: hypothetical protein BC1G_06473|unclassified	0.2059865427
+UniRef50_A0A008IXB2	0.2059787597
+UniRef50_A0A008IXB2|unclassified	0.2059787597
+UniRef50_UPI0001FFF2C2: dipeptide ABC transporter, partial	0.2059746436
+UniRef50_UPI0001FFF2C2: dipeptide ABC transporter, partial|unclassified	0.2059746436
+UniRef50_A0A059LBR4	0.2059538993
+UniRef50_A0A059LBR4|unclassified	0.2059538993
+UniRef50_H0R175: Threonine dehydratase (Fragment)	0.2059524619
+UniRef50_H0R175: Threonine dehydratase (Fragment)|unclassified	0.2059524619
+UniRef50_U2T4L2	0.2059422812
+UniRef50_U2T4L2|unclassified	0.2059422812
+UniRef50_P50620: Ribonucleoside-diphosphate reductase subunit alpha	0.2059307016
+UniRef50_P50620: Ribonucleoside-diphosphate reductase subunit alpha|unclassified	0.2059307016
+UniRef50_UPI00036FAF8D: hypothetical protein	0.2059266411
+UniRef50_UPI00036FAF8D: hypothetical protein|unclassified	0.2059266411
+UniRef50_UPI0004197675: hypothetical protein	0.2059159199
+UniRef50_UPI0004197675: hypothetical protein|unclassified	0.2059159199
+UniRef50_UPI00037650D9: hypothetical protein	0.2059146446
+UniRef50_UPI00037650D9: hypothetical protein|unclassified	0.2059146446
+UniRef50_UPI0003B50A22: amino acid lyase	0.2059052050
+UniRef50_UPI0003B50A22: amino acid lyase|unclassified	0.2059052050
+UniRef50_Q68D91-2: Isoform 2 of Metallo-beta-lactamase domain-containing protein 2	0.2059000434
+UniRef50_Q68D91-2: Isoform 2 of Metallo-beta-lactamase domain-containing protein 2|unclassified	0.2059000434
+UniRef50_A0P1B5: Putative translation initiation inhibitor	0.2058825647
+UniRef50_A0P1B5: Putative translation initiation inhibitor|unclassified	0.2058825647
+UniRef50_UPI000368312B: hypothetical protein	0.2058712946
+UniRef50_UPI000368312B: hypothetical protein|unclassified	0.2058712946
+UniRef50_W0SKF0	0.2058623336
+UniRef50_W0SKF0|unclassified	0.2058623336
+UniRef50_Q9AF01	0.2058618947
+UniRef50_Q9AF01|unclassified	0.2058618947
+UniRef50_UPI00047938D7: hypothetical protein, partial	0.2058544315
+UniRef50_UPI00047938D7: hypothetical protein, partial|unclassified	0.2058544315
+UniRef50_UPI000363972E: hypothetical protein, partial	0.2058460912
+UniRef50_UPI000363972E: hypothetical protein, partial|unclassified	0.2058460912
+UniRef50_UPI000262662B: hypothetical protein	0.2058443838
+UniRef50_UPI000262662B: hypothetical protein|unclassified	0.2058443838
+UniRef50_Q7U4M7: Oxygen-dependent coproporphyrinogen-III oxidase	0.2058207310
+UniRef50_Q7U4M7: Oxygen-dependent coproporphyrinogen-III oxidase|unclassified	0.2058207310
+UniRef50_S6GF76	0.2058195216
+UniRef50_S6GF76|unclassified	0.2058195216
+UniRef50_UPI0003808F10: hypothetical protein	0.2058157506
+UniRef50_UPI0003808F10: hypothetical protein|unclassified	0.2058157506
+UniRef50_K8AAY7: Cell wall endopeptidase, family M23/M37	0.2057905909
+UniRef50_K8AAY7: Cell wall endopeptidase, family M23/M37|unclassified	0.2057905909
+UniRef50_UPI0004642E22: hypothetical protein	0.2057899100
+UniRef50_UPI0004642E22: hypothetical protein|unclassified	0.2057899100
+UniRef50_A0A021X878	0.2057799594
+UniRef50_A0A021X878|unclassified	0.2057799594
+UniRef50_UPI0004690AE1: peptidase	0.2057770561
+UniRef50_UPI0004690AE1: peptidase|unclassified	0.2057770561
+UniRef50_C4LBY9	0.2057751679
+UniRef50_C4LBY9|unclassified	0.2057751679
+UniRef50_O75306: NADH dehydrogenase [ubiquinone] iron-sulfur protein 2, mitochondrial	0.2057731455
+UniRef50_O75306: NADH dehydrogenase [ubiquinone] iron-sulfur protein 2, mitochondrial|unclassified	0.2057731455
+UniRef50_UPI00047D5268: hypothetical protein	0.2057709409
+UniRef50_UPI00047D5268: hypothetical protein|unclassified	0.2057709409
+UniRef50_UPI000366D890: hypothetical protein	0.2057492396
+UniRef50_UPI000366D890: hypothetical protein|unclassified	0.2057492396
+UniRef50_G5K6N6	0.2057411216
+UniRef50_G5K6N6|unclassified	0.2057411216
+UniRef50_UPI00036E2533: hypothetical protein	0.2057368215
+UniRef50_UPI00036E2533: hypothetical protein|unclassified	0.2057368215
+UniRef50_B1YKR3: Shikimate dehydrogenase	0.2057365072
+UniRef50_B1YKR3: Shikimate dehydrogenase|unclassified	0.2057365072
+UniRef50_Q32FL7	0.2057286202
+UniRef50_Q32FL7|unclassified	0.2057286202
+UniRef50_V4EUL8	0.2057286202
+UniRef50_V4EUL8|unclassified	0.2057286202
+UniRef50_Q8RG98: ATP-dependent 6-phosphofructokinase	0.2057237271
+UniRef50_Q8RG98: ATP-dependent 6-phosphofructokinase|unclassified	0.2057237271
+UniRef50_UPI0003B569E4: hypothetical protein	0.2057064237
+UniRef50_UPI0003B569E4: hypothetical protein|unclassified	0.2057064237
+UniRef50_F2HG04: TraG/TraD family conjugation protein (TraG/TraD family protein)	0.2056989057
+UniRef50_F2HG04: TraG/TraD family conjugation protein (TraG/TraD family protein)|unclassified	0.2056989057
+UniRef50_K8AUG6	0.2056964201
+UniRef50_K8AUG6|unclassified	0.2056964201
+UniRef50_UPI00037DADC1: hypothetical protein	0.2056835270
+UniRef50_UPI00037DADC1: hypothetical protein|unclassified	0.2056835270
+UniRef50_UPI00036244E1: MULTISPECIES: hypothetical protein	0.2056773339
+UniRef50_UPI00036244E1: MULTISPECIES: hypothetical protein|unclassified	0.2056773339
+UniRef50_A4XRT3: Beta-lactamase domain protein	0.2056553113
+UniRef50_A4XRT3: Beta-lactamase domain protein|unclassified	0.2056553113
+UniRef50_UPI0004219822: hypothetical protein	0.2056238981
+UniRef50_UPI0004219822: hypothetical protein|unclassified	0.2056238981
+UniRef50_UPI000471477D: hypothetical protein	0.2056170277
+UniRef50_UPI000471477D: hypothetical protein|unclassified	0.2056170277
+UniRef50_C9SDY7	0.2055966514
+UniRef50_C9SDY7|unclassified	0.2055966514
+UniRef50_UPI000463625E: ABC transporter ATP-binding protein	0.2055881157
+UniRef50_UPI000463625E: ABC transporter ATP-binding protein|unclassified	0.2055881157
+UniRef50_U5LBL2: MFS transporter	0.2055474237
+UniRef50_U5LBL2: MFS transporter|unclassified	0.2055474237
+UniRef50_S2L1Q8: Ftsk gamma domain protein	0.2055465324
+UniRef50_S2L1Q8: Ftsk gamma domain protein|unclassified	0.2055465324
+UniRef50_UPI0003803D17: hypothetical protein	0.2055328018
+UniRef50_UPI0003803D17: hypothetical protein|unclassified	0.2055328018
+UniRef50_UPI000475E0B3: hypothetical protein	0.2055230939
+UniRef50_UPI000475E0B3: hypothetical protein|unclassified	0.2055230939
+UniRef50_UPI000382515A: hypothetical protein	0.2055189289
+UniRef50_UPI000382515A: hypothetical protein|unclassified	0.2055189289
+UniRef50_UPI000479495C: hypothetical protein	0.2055174258
+UniRef50_UPI000479495C: hypothetical protein|unclassified	0.2055174258
+UniRef50_UPI000366BB5A: hypothetical protein	0.2055167701
+UniRef50_UPI000366BB5A: hypothetical protein|unclassified	0.2055167701
+UniRef50_G8LFY7	0.2054996724
+UniRef50_G8LFY7|unclassified	0.2054996724
+UniRef50_UPI00042020EC: hypothetical protein	0.2054784644
+UniRef50_UPI00042020EC: hypothetical protein|unclassified	0.2054784644
+UniRef50_UPI0004574D6D: PREDICTED: histone H1.01-like, partial	0.2054779646
+UniRef50_UPI0004574D6D: PREDICTED: histone H1.01-like, partial|unclassified	0.2054779646
+UniRef50_UPI00047477FB: hypothetical protein, partial	0.2054434940
+UniRef50_UPI00047477FB: hypothetical protein, partial|unclassified	0.2054434940
+UniRef50_UPI000370ED97: hypothetical protein, partial	0.2054397828
+UniRef50_UPI000370ED97: hypothetical protein, partial|unclassified	0.2054397828
+UniRef50_UPI000262CC35: ribosomal-protein-alanine acetyltransferase	0.2054385023
+UniRef50_UPI000262CC35: ribosomal-protein-alanine acetyltransferase|unclassified	0.2054385023
+UniRef50_F4DUN6: Membrane protein-like protein	0.2054359686
+UniRef50_F4DUN6: Membrane protein-like protein|unclassified	0.2054359686
+UniRef50_E1ZMH6	0.2054310401
+UniRef50_E1ZMH6|unclassified	0.2054310401
+UniRef50_M4INN6: Rrf2 family protein	0.2054154425
+UniRef50_M4INN6: Rrf2 family protein|unclassified	0.2054154425
+UniRef50_Q73S23: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	0.2054124144
+UniRef50_Q73S23: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|unclassified	0.2054124144
+UniRef50_UPI00047BF161: cytochrome B559 subunit alpha	0.2054069368
+UniRef50_UPI00047BF161: cytochrome B559 subunit alpha|unclassified	0.2054069368
+UniRef50_Q57517	0.2053955521
+UniRef50_Q57517|unclassified	0.2053955521
+UniRef50_G7XF85: Conserved serine proline-rich protein	0.2053931964
+UniRef50_G7XF85: Conserved serine proline-rich protein|unclassified	0.2053931964
+UniRef50_A0A009SHB6: Substrate binding domain of ABC-type glycine betaine transport system family protein	0.2053838678
+UniRef50_A0A009SHB6: Substrate binding domain of ABC-type glycine betaine transport system family protein|unclassified	0.2053838678
+UniRef50_D4GS06: Citrate synthase	0.2053800523
+UniRef50_D4GS06: Citrate synthase|unclassified	0.2053800523
+UniRef50_X5UQQ3	0.2053739173
+UniRef50_X5UQQ3|unclassified	0.2053739173
+UniRef50_UPI000314B2B3: hypothetical protein	0.2053686037
+UniRef50_UPI000314B2B3: hypothetical protein|unclassified	0.2053686037
+UniRef50_H8P0F6: Cytoplasmic protein	0.2053586648
+UniRef50_H8P0F6: Cytoplasmic protein|unclassified	0.2053586648
+UniRef50_UPI00036BB28A: hypothetical protein	0.2053542698
+UniRef50_UPI00036BB28A: hypothetical protein|unclassified	0.2053542698
+UniRef50_Q5FCE4	0.2053469340
+UniRef50_Q5FCE4|unclassified	0.2053469340
+UniRef50_UPI0003B58311: citrate synthase, partial	0.2053398440
+UniRef50_UPI0003B58311: citrate synthase, partial|unclassified	0.2053398440
+UniRef50_UPI0003B6C708: argininosuccinate lyase	0.2052904682
+UniRef50_UPI0003B6C708: argininosuccinate lyase|unclassified	0.2052904682
+UniRef50_S2JDE2	0.2052891312
+UniRef50_S2JDE2|unclassified	0.2052891312
+UniRef50_E9G8I4	0.2052565620
+UniRef50_E9G8I4|unclassified	0.2052565620
+UniRef50_UPI000249107B: sodium:proton antiporter	0.2052512986
+UniRef50_UPI000249107B: sodium:proton antiporter|unclassified	0.2052512986
+UniRef50_UPI0003B6167B: 4''''-phosphopantetheinyl transferase	0.2052457008
+UniRef50_UPI0003B6167B: 4''''-phosphopantetheinyl transferase|unclassified	0.2052457008
+UniRef50_M3YM86	0.2052451799
+UniRef50_M3YM86|unclassified	0.2052451799
+UniRef50_B8A1X0	0.2052187058
+UniRef50_B8A1X0|unclassified	0.2052187058
+UniRef50_Q4FQ82	0.2052122967
+UniRef50_Q4FQ82|unclassified	0.2052122967
+UniRef50_A0A058Z6X5	0.2051991425
+UniRef50_A0A058Z6X5|unclassified	0.2051991425
+UniRef50_G4B7D1: ABC-2 type transporter	0.2051785411
+UniRef50_G4B7D1: ABC-2 type transporter|unclassified	0.2051785411
+UniRef50_I1QZW6	0.2051687976
+UniRef50_I1QZW6|unclassified	0.2051687976
+UniRef50_D9RI89	0.2051684227
+UniRef50_D9RI89|unclassified	0.2051684227
+UniRef50_UPI0004657597: hypothetical protein	0.2051672394
+UniRef50_UPI0004657597: hypothetical protein|unclassified	0.2051672394
+UniRef50_UPI000379916B: hypothetical protein	0.2051656109
+UniRef50_UPI000379916B: hypothetical protein|unclassified	0.2051656109
+UniRef50_UPI0003A06432: carboxymuconolactone decarboxylase	0.2051590810
+UniRef50_UPI0003A06432: carboxymuconolactone decarboxylase|unclassified	0.2051590810
+UniRef50_UPI0003F0D458	0.2051309655
+UniRef50_UPI0003F0D458|unclassified	0.2051309655
+UniRef50_D1C1E9	0.2051234419
+UniRef50_D1C1E9|unclassified	0.2051234419
+UniRef50_UPI0002631120: heavy metal translocating P-type ATPase	0.2051136284
+UniRef50_UPI0002631120: heavy metal translocating P-type ATPase|unclassified	0.2051136284
+UniRef50_UPI000362D732: hypothetical protein	0.2051038338
+UniRef50_UPI000362D732: hypothetical protein|unclassified	0.2051038338
+UniRef50_X3WHN6: Short-chain dehydrogenase (Fragment)	0.2050936997
+UniRef50_X3WHN6: Short-chain dehydrogenase (Fragment)|unclassified	0.2050936997
+UniRef50_UPI00029A6A8D: type IV pilus secretin PilQ	0.2050815130
+UniRef50_UPI00029A6A8D: type IV pilus secretin PilQ|unclassified	0.2050815130
+UniRef50_X2MBD9: PTS mannitol transporter subunit IIBC	0.2050713440
+UniRef50_X2MBD9: PTS mannitol transporter subunit IIBC|unclassified	0.2050713440
+UniRef50_UPI00024915C5: cobalt ABC transporter ATP-binding protein	0.2050659422
+UniRef50_UPI00024915C5: cobalt ABC transporter ATP-binding protein|unclassified	0.2050659422
+UniRef50_UPI0004697408: DNA processing protein	0.2050477908
+UniRef50_UPI0004697408: DNA processing protein|unclassified	0.2050477908
+UniRef50_UPI0003679A53: hypothetical protein	0.2050473613
+UniRef50_UPI0003679A53: hypothetical protein|unclassified	0.2050473613
+UniRef50_A7X3M6: Truncated transposase	0.2050457020
+UniRef50_A7X3M6: Truncated transposase|unclassified	0.2050457020
+UniRef50_UPI0003EB33E4: NHN endonuclease	0.2050434746
+UniRef50_UPI0003EB33E4: NHN endonuclease|unclassified	0.2050434746
+UniRef50_F7TQ11: Alanine racemase	0.2050418659
+UniRef50_F7TQ11: Alanine racemase|unclassified	0.2050418659
+UniRef50_P11454: Enterobactin synthase component F	0.2050344623
+UniRef50_P11454: Enterobactin synthase component F|unclassified	0.2050344623
+UniRef50_UPI00034FCC17	0.2050239349
+UniRef50_UPI00034FCC17|unclassified	0.2050239349
+UniRef50_E3Z582: Integral membrane protein	0.2050227528
+UniRef50_E3Z582: Integral membrane protein|unclassified	0.2050227528
+UniRef50_Q8YNJ3: Phosphate import ATP-binding protein PstB 3	0.2050157424
+UniRef50_Q8YNJ3: Phosphate import ATP-binding protein PstB 3|unclassified	0.2050157424
+UniRef50_UPI0003FB17E6: hypothetical protein	0.2050012558
+UniRef50_UPI0003FB17E6: hypothetical protein|unclassified	0.2050012558
+UniRef50_UPI00037A72C6: hypothetical protein, partial	0.2049967637
+UniRef50_UPI00037A72C6: hypothetical protein, partial|unclassified	0.2049967637
+UniRef50_F8HAQ2	0.2049378609
+UniRef50_F8HAQ2|unclassified	0.2049378609
+UniRef50_W5XA72: Transcriptional regulator	0.2049328455
+UniRef50_W5XA72: Transcriptional regulator|unclassified	0.2049328455
+UniRef50_UPI00031150F7: hypothetical protein	0.2049103732
+UniRef50_UPI00031150F7: hypothetical protein|unclassified	0.2049103732
+UniRef50_UPI0003FCF1A2: alanine racemase	0.2049028407
+UniRef50_UPI0003FCF1A2: alanine racemase|unclassified	0.2049028407
+UniRef50_UPI000475748B: hypothetical protein	0.2048959914
+UniRef50_UPI000475748B: hypothetical protein|unclassified	0.2048959914
+UniRef50_UPI0003B3520D: mannose-1-phosphate guanylyltransferase	0.2048466258
+UniRef50_UPI0003B3520D: mannose-1-phosphate guanylyltransferase|unclassified	0.2048466258
+UniRef50_UPI0004698FEC: anti-sigma regulatory factor	0.2048348016
+UniRef50_UPI0004698FEC: anti-sigma regulatory factor|unclassified	0.2048348016
+UniRef50_Q9AA76	0.2048269360
+UniRef50_Q9AA76|unclassified	0.2048269360
+UniRef50_C5WCE9: TFIIB like protein	0.2048193602
+UniRef50_C5WCE9: TFIIB like protein|unclassified	0.2048193602
+UniRef50_UPI0003B5F72E: hypothetical protein	0.2048139009
+UniRef50_UPI0003B5F72E: hypothetical protein|unclassified	0.2048139009
+UniRef50_K0E9J0	0.2048124340
+UniRef50_K0E9J0|unclassified	0.2048124340
+UniRef50_UPI000371310E: hypothetical protein, partial	0.2048062982
+UniRef50_UPI000371310E: hypothetical protein, partial|unclassified	0.2048062982
+UniRef50_M9Z693: Nitrite oxidordeuctase B subunit (Fragment)	0.2048027310
+UniRef50_M9Z693: Nitrite oxidordeuctase B subunit (Fragment)|unclassified	0.2048027310
+UniRef50_UPI000470EA3B: orotidine 5''-phosphate decarboxylase, partial	0.2047823361
+UniRef50_UPI000470EA3B: orotidine 5''-phosphate decarboxylase, partial|unclassified	0.2047823361
+UniRef50_UPI000474C879: 4''-phosphopantetheinyl transferase	0.2047645065
+UniRef50_UPI000474C879: 4''-phosphopantetheinyl transferase|unclassified	0.2047645065
+UniRef50_UPI00035FAB77: hypothetical protein	0.2047635893
+UniRef50_UPI00035FAB77: hypothetical protein|unclassified	0.2047635893
+UniRef50_UPI000475B264: glyoxal reductase	0.2047634745
+UniRef50_UPI000475B264: glyoxal reductase|unclassified	0.2047634745
+UniRef50_UPI0003B78332: diguanylate cyclase	0.2047479717
+UniRef50_UPI0003B78332: diguanylate cyclase|unclassified	0.2047479717
+UniRef50_V2EDG8: Porin thermoregulatory protein EnvY	0.2047155724
+UniRef50_V2EDG8: Porin thermoregulatory protein EnvY|unclassified	0.2047155724
+UniRef50_C0DYL5	0.2047108211
+UniRef50_C0DYL5|unclassified	0.2047108211
+UniRef50_H8JD33: Integrase catalytic subunit	0.2046954829
+UniRef50_H8JD33: Integrase catalytic subunit|unclassified	0.2046954829
+UniRef50_Q6CX30: FK506-binding protein 1	0.2046945817
+UniRef50_Q6CX30: FK506-binding protein 1|unclassified	0.2046945817
+UniRef50_I4TRA8: Putative inner membrane protein	0.2046695862
+UniRef50_I4TRA8: Putative inner membrane protein|unclassified	0.2046695862
+UniRef50_A8IEX2	0.2046571911
+UniRef50_A8IEX2|unclassified	0.2046571911
+UniRef50_Q4WHZ9: Inosine-5'-monophosphate dehydrogenase	0.2046454084
+UniRef50_Q4WHZ9: Inosine-5'-monophosphate dehydrogenase|unclassified	0.2046454084
+UniRef50_W7WAI9	0.2046043025
+UniRef50_W7WAI9|unclassified	0.2046043025
+UniRef50_UPI0003B5FC1D: 2-dehydro-3-deoxyphosphooctonate aldolase, partial	0.2045960368
+UniRef50_UPI0003B5FC1D: 2-dehydro-3-deoxyphosphooctonate aldolase, partial|unclassified	0.2045960368
+UniRef50_W5N4C4	0.2045826514
+UniRef50_W5N4C4|unclassified	0.2045826514
+UniRef50_J8D7E1	0.2045783099
+UniRef50_J8D7E1|unclassified	0.2045783099
+UniRef50_N0AI85	0.2045780169
+UniRef50_N0AI85|unclassified	0.2045780169
+UniRef50_UPI000476EAF4: sugar ABC transporter permease	0.2045732925
+UniRef50_UPI000476EAF4: sugar ABC transporter permease|unclassified	0.2045732925
+UniRef50_UPI0003B59697: transketolase	0.2045575636
+UniRef50_UPI0003B59697: transketolase|unclassified	0.2045575636
+UniRef50_UPI0003B4D513: PAS sensor protein	0.2045434799
+UniRef50_UPI0003B4D513: PAS sensor protein|unclassified	0.2045434799
+UniRef50_UPI0003F0F1D9: PREDICTED: solute carrier family 10 member 6-like, partial	0.2045223366
+UniRef50_UPI0003F0F1D9: PREDICTED: solute carrier family 10 member 6-like, partial|unclassified	0.2045223366
+UniRef50_Q0TB60	0.2045183766
+UniRef50_Q0TB60|unclassified	0.2045183766
+UniRef50_UPI0003639BCC: GntR family transcriptional regulator	0.2045102045
+UniRef50_UPI0003639BCC: GntR family transcriptional regulator|unclassified	0.2045102045
+UniRef50_A1TJP5: Transcriptional regulator/antitoxin, MazE	0.2045086139
+UniRef50_A1TJP5: Transcriptional regulator/antitoxin, MazE|unclassified	0.2045086139
+UniRef50_Q95748: NADH dehydrogenase [ubiquinone] iron-sulfur protein 3	0.2045080618
+UniRef50_Q95748: NADH dehydrogenase [ubiquinone] iron-sulfur protein 3|unclassified	0.2045080618
+UniRef50_UPI000477A5E2: esterase	0.2044872945
+UniRef50_UPI000477A5E2: esterase|unclassified	0.2044872945
+UniRef50_UPI000388FF1B: PREDICTED: succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial	0.2044565546
+UniRef50_UPI000388FF1B: PREDICTED: succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial|unclassified	0.2044565546
+UniRef50_UPI0003814B4D: hypothetical protein	0.2044498725
+UniRef50_UPI0003814B4D: hypothetical protein|unclassified	0.2044498725
+UniRef50_UPI000309721D: hypothetical protein	0.2044435464
+UniRef50_UPI000309721D: hypothetical protein|unclassified	0.2044435464
+UniRef50_X1FTG0: Marine sediment metagenome DNA, contig: S03H2_L08285 (Fragment)	0.2044371202
+UniRef50_X1FTG0: Marine sediment metagenome DNA, contig: S03H2_L08285 (Fragment)|unclassified	0.2044371202
+UniRef50_UPI000429C143: hypothetical protein	0.2044205585
+UniRef50_UPI000429C143: hypothetical protein|unclassified	0.2044205585
+UniRef50_K2JK23	0.2043920828
+UniRef50_K2JK23|unclassified	0.2043920828
+UniRef50_UPI00047540FD: ATP-dependent DNA helicase RecQ	0.2043436708
+UniRef50_UPI00047540FD: ATP-dependent DNA helicase RecQ|unclassified	0.2043436708
+UniRef50_J3EJ77: Type VI secretion protein, VC_A0107 family (Fragment)	0.2043224002
+UniRef50_J3EJ77: Type VI secretion protein, VC_A0107 family (Fragment)|unclassified	0.2043224002
+UniRef50_Q8TV83: Imidazole glycerol phosphate synthase subunit HisH	0.2042942981
+UniRef50_Q8TV83: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.2042942981
+UniRef50_UPI000375488A: hypothetical protein	0.2042912015
+UniRef50_UPI000375488A: hypothetical protein|unclassified	0.2042912015
+UniRef50_I1ECR9	0.2042819186
+UniRef50_I1ECR9|unclassified	0.2042819186
+UniRef50_W0Z3L8	0.2042756030
+UniRef50_W0Z3L8|unclassified	0.2042756030
+UniRef50_UPI000237F2C5: AbrB family transcriptional regulator	0.2042398408
+UniRef50_UPI000237F2C5: AbrB family transcriptional regulator|unclassified	0.2042398408
+UniRef50_R1EEU0	0.2042307122
+UniRef50_R1EEU0|unclassified	0.2042307122
+UniRef50_W1FFV4: Excinuclease ABC subunit C	0.2042293057
+UniRef50_W1FFV4: Excinuclease ABC subunit C|unclassified	0.2042293057
+UniRef50_K9XHI6: PilT domain-containing protein	0.2042209952
+UniRef50_K9XHI6: PilT domain-containing protein|unclassified	0.2042209952
+UniRef50_UPI00035C5F8A: hypothetical protein	0.2042191927
+UniRef50_UPI00035C5F8A: hypothetical protein|unclassified	0.2042191927
+UniRef50_UPI0003B3B85D: peptidase S41	0.2042152576
+UniRef50_UPI0003B3B85D: peptidase S41|unclassified	0.2042152576
+UniRef50_A8AKV6	0.2042147198
+UniRef50_A8AKV6|unclassified	0.2042147198
+UniRef50_Q2S2U6	0.2042047169
+UniRef50_Q2S2U6|unclassified	0.2042047169
+UniRef50_UPI0002658599: PREDICTED: ERI1 exoribonuclease 3-like	0.2042028282
+UniRef50_UPI0002658599: PREDICTED: ERI1 exoribonuclease 3-like|unclassified	0.2042028282
+UniRef50_UPI000368781F: ferredoxin	0.2042012781
+UniRef50_UPI000368781F: ferredoxin|unclassified	0.2042012781
+UniRef50_UPI00030A29FA: hypothetical protein	0.2041959501
+UniRef50_UPI00030A29FA: hypothetical protein|unclassified	0.2041959501
+UniRef50_UPI0003707915: hypothetical protein, partial	0.2041848358
+UniRef50_UPI0003707915: hypothetical protein, partial|unclassified	0.2041848358
+UniRef50_UPI0003494B0D: hypothetical protein	0.2041843945
+UniRef50_UPI0003494B0D: hypothetical protein|unclassified	0.2041843945
+UniRef50_D0LA73	0.2041766714
+UniRef50_D0LA73|unclassified	0.2041766714
+UniRef50_UPI0003C1975D	0.2041689724
+UniRef50_UPI0003C1975D|unclassified	0.2041689724
+UniRef50_UPI000185085B: tyrosyl-tRNA synthetase	0.2041679631
+UniRef50_UPI000185085B: tyrosyl-tRNA synthetase|unclassified	0.2041679631
+UniRef50_UPI00047E2780: ABC transporter ATP-binding protein	0.2041624006
+UniRef50_UPI00047E2780: ABC transporter ATP-binding protein|unclassified	0.2041624006
+UniRef50_Q13EH1: Transcriptional regulator, CarD family	0.2041571052
+UniRef50_Q13EH1: Transcriptional regulator, CarD family|unclassified	0.2041571052
+UniRef50_A0A058ZK83	0.2041442187
+UniRef50_A0A058ZK83|unclassified	0.2041442187
+UniRef50_UPI00037A7FFA: succinate-semialdehyde dehdyrogenase	0.2041381393
+UniRef50_UPI00037A7FFA: succinate-semialdehyde dehdyrogenase|unclassified	0.2041381393
+UniRef50_E3J6Y9: FAD dependent oxidoreductase	0.2041230009
+UniRef50_E3J6Y9: FAD dependent oxidoreductase|unclassified	0.2041230009
+UniRef50_M6C1D1: Putative beta-lactamase Bla2	0.2041142581
+UniRef50_M6C1D1: Putative beta-lactamase Bla2|unclassified	0.2041142581
+UniRef50_Q0K6L6: Ribosomal RNA small subunit methyltransferase H	0.2041067298
+UniRef50_Q0K6L6: Ribosomal RNA small subunit methyltransferase H|unclassified	0.2041067298
+UniRef50_UPI0003B3D851: single-stranded DNA-binding protein	0.2040726060
+UniRef50_UPI0003B3D851: single-stranded DNA-binding protein|unclassified	0.2040726060
+UniRef50_D9XJC0: Membrane protein (Fragment)	0.2040597824
+UniRef50_D9XJC0: Membrane protein (Fragment)|unclassified	0.2040597824
+UniRef50_UPI00035D02E2: hypothetical protein	0.2040512365
+UniRef50_UPI00035D02E2: hypothetical protein|unclassified	0.2040512365
+UniRef50_S2Y688	0.2040403552
+UniRef50_S2Y688|unclassified	0.2040403552
+UniRef50_UPI00036FFB6C: hypothetical protein	0.2040271293
+UniRef50_UPI00036FFB6C: hypothetical protein|unclassified	0.2040271293
+UniRef50_C2Y3Q6	0.2040207446
+UniRef50_C2Y3Q6|unclassified	0.2040207446
+UniRef50_UPI00047D1D3B: hypothetical protein	0.2040166447
+UniRef50_UPI00047D1D3B: hypothetical protein|unclassified	0.2040166447
+UniRef50_UPI000476D12B: MarR family transcriptional regulator	0.2040102126
+UniRef50_UPI000476D12B: MarR family transcriptional regulator|unclassified	0.2040102126
+UniRef50_Q73YR0: FtsQ	0.2039997033
+UniRef50_Q73YR0: FtsQ|unclassified	0.2039997033
+UniRef50_R1GYY2	0.2039856984
+UniRef50_R1GYY2|unclassified	0.2039856984
+UniRef50_UPI0003706B5C: hypothetical protein, partial	0.2039800008
+UniRef50_UPI0003706B5C: hypothetical protein, partial|unclassified	0.2039800008
+UniRef50_W0SBH1	0.2039703542
+UniRef50_W0SBH1|unclassified	0.2039703542
+UniRef50_C0P8W3	0.2039526887
+UniRef50_C0P8W3|unclassified	0.2039526887
+UniRef50_X3Y1W4	0.2039497296
+UniRef50_X3Y1W4|unclassified	0.2039497296
+UniRef50_C0N4E7: GIY-YIG catalytic domain, putative	0.2039479488
+UniRef50_C0N4E7: GIY-YIG catalytic domain, putative|unclassified	0.2039479488
+UniRef50_UPI00029A4154: hypothetical protein	0.2039294299
+UniRef50_UPI00029A4154: hypothetical protein|unclassified	0.2039294299
+UniRef50_UPI000362483A: hypothetical protein, partial	0.2039186649
+UniRef50_UPI000362483A: hypothetical protein, partial|unclassified	0.2039186649
+UniRef50_UPI0003B4A657: peptidase M22	0.2039167012
+UniRef50_UPI0003B4A657: peptidase M22|unclassified	0.2039167012
+UniRef50_X4RDF0: Autoinducer 2-binding protein lsrB	0.2039071499
+UniRef50_X4RDF0: Autoinducer 2-binding protein lsrB|unclassified	0.2039071499
+UniRef50_UPI0003956827: peptide ABC transporter permease	0.2039067049
+UniRef50_UPI0003956827: peptide ABC transporter permease|unclassified	0.2039067049
+UniRef50_K0JY23	0.2039052070
+UniRef50_K0JY23|unclassified	0.2039052070
+UniRef50_UPI000371C70F: hypothetical protein	0.2038966786
+UniRef50_UPI000371C70F: hypothetical protein|unclassified	0.2038966786
+UniRef50_Q7NMY2: Gsl0633 protein	0.2038956372
+UniRef50_Q7NMY2: Gsl0633 protein|unclassified	0.2038956372
+UniRef50_G8P2V7: Integral membrane protein	0.2038915545
+UniRef50_G8P2V7: Integral membrane protein|unclassified	0.2038915545
+UniRef50_Q10Y48: Uridylate kinase	0.2038900045
+UniRef50_Q10Y48: Uridylate kinase|unclassified	0.2038900045
+UniRef50_K2BT61	0.2038793129
+UniRef50_K2BT61|unclassified	0.2038793129
+UniRef50_UPI0003B45311: competence protein ComG	0.2038730955
+UniRef50_UPI0003B45311: competence protein ComG|unclassified	0.2038730955
+UniRef50_N0CAU4: ORFA, transposon ISSsa2	0.2038483908
+UniRef50_N0CAU4: ORFA, transposon ISSsa2|unclassified	0.2038483908
+UniRef50_C0ZHC9: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	0.2038321033
+UniRef50_C0ZHC9: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.2038321033
+UniRef50_F3ZFZ6	0.2037953701
+UniRef50_F3ZFZ6|unclassified	0.2037953701
+UniRef50_D4I0J4: Protein CreA	0.2037897910
+UniRef50_D4I0J4: Protein CreA|unclassified	0.2037897910
+UniRef50_H0W1N8	0.2037503545
+UniRef50_H0W1N8|unclassified	0.2037503545
+UniRef50_UPI000350731C: PREDICTED: caskin-2 isoform X7	0.2037489813
+UniRef50_UPI000350731C: PREDICTED: caskin-2 isoform X7|unclassified	0.2037489813
+UniRef50_A0A038FJI8	0.2037488740
+UniRef50_A0A038FJI8|unclassified	0.2037488740
+UniRef50_UPI0003640FF3: baseplate assembly protein	0.2037429487
+UniRef50_UPI0003640FF3: baseplate assembly protein|unclassified	0.2037429487
+UniRef50_K1T065: Cobyrinic acid ac-diamide synthase (Fragment)	0.2037389716
+UniRef50_K1T065: Cobyrinic acid ac-diamide synthase (Fragment)|unclassified	0.2037389716
+UniRef50_J9NXN3	0.2036845595
+UniRef50_J9NXN3|unclassified	0.2036845595
+UniRef50_F0V9N2	0.2036699480
+UniRef50_F0V9N2|unclassified	0.2036699480
+UniRef50_F8JXZ4: Putative Glycine-rich cell wall structural protein 1.8	0.2036587097
+UniRef50_F8JXZ4: Putative Glycine-rich cell wall structural protein 1.8|unclassified	0.2036587097
+UniRef50_UPI0003704086: hypothetical protein	0.2036204110
+UniRef50_UPI0003704086: hypothetical protein|unclassified	0.2036204110
+UniRef50_S6AHL1	0.2035929300
+UniRef50_S6AHL1|unclassified	0.2035929300
+UniRef50_UPI0003FE028E: hypothetical protein	0.2035853985
+UniRef50_UPI0003FE028E: hypothetical protein|unclassified	0.2035853985
+UniRef50_A9KM99: Peptide deformylase	0.2035659722
+UniRef50_A9KM99: Peptide deformylase|unclassified	0.2035659722
+UniRef50_UPI00035F8340: hypothetical protein	0.2035644681
+UniRef50_UPI00035F8340: hypothetical protein|unclassified	0.2035644681
+UniRef50_R4UKR0	0.2035626721
+UniRef50_R4UKR0|unclassified	0.2035626721
+UniRef50_UPI000374BAA7: hypothetical protein	0.2035598136
+UniRef50_UPI000374BAA7: hypothetical protein|unclassified	0.2035598136
+UniRef50_UPI0003B667B4: ABC transporter ATP-binding protein, partial	0.2035503971
+UniRef50_UPI0003B667B4: ABC transporter ATP-binding protein, partial|unclassified	0.2035503971
+UniRef50_H7P257: ComEC/Rec2-related domain protein	0.2035207974
+UniRef50_H7P257: ComEC/Rec2-related domain protein|unclassified	0.2035207974
+UniRef50_A0A023BCW4	0.2035130968
+UniRef50_A0A023BCW4|unclassified	0.2035130968
+UniRef50_H8FW24	0.2034775071
+UniRef50_H8FW24|unclassified	0.2034775071
+UniRef50_R6BG96: PF06114 domain protein	0.2034757838
+UniRef50_R6BG96: PF06114 domain protein|unclassified	0.2034757838
+UniRef50_P66667: Ribonuclease 3	0.2034648443
+UniRef50_P66667: Ribonuclease 3|unclassified	0.2034648443
+UniRef50_UPI00047E9906: methionine aminopeptidase	0.2034581465
+UniRef50_UPI00047E9906: methionine aminopeptidase|unclassified	0.2034581465
+UniRef50_X0W364: Marine sediment metagenome DNA, contig: S01H1_S12252 (Fragment)	0.2034492585
+UniRef50_X0W364: Marine sediment metagenome DNA, contig: S01H1_S12252 (Fragment)|unclassified	0.2034492585
+UniRef50_UPI000376710A: hypothetical protein, partial	0.2034485996
+UniRef50_UPI000376710A: hypothetical protein, partial|unclassified	0.2034485996
+UniRef50_E1V7V7: Diaminobutyrate--2-oxoglutarate transaminase	0.2034471257
+UniRef50_E1V7V7: Diaminobutyrate--2-oxoglutarate transaminase|unclassified	0.2034471257
+UniRef50_UPI0003827BFC: hypothetical protein	0.2034407349
+UniRef50_UPI0003827BFC: hypothetical protein|unclassified	0.2034407349
+UniRef50_E2XL29	0.2034375271
+UniRef50_E2XL29|unclassified	0.2034375271
+UniRef50_UPI00035E0126: hypothetical protein	0.2034366585
+UniRef50_UPI00035E0126: hypothetical protein|unclassified	0.2034366585
+UniRef50_UPI0001C39674: dehydrogenase	0.2034362294
+UniRef50_UPI0001C39674: dehydrogenase|unclassified	0.2034362294
+UniRef50_UPI00037A1640: hypothetical protein	0.2034068953
+UniRef50_UPI00037A1640: hypothetical protein|unclassified	0.2034068953
+UniRef50_J9YR28: Rhodanese-like domain-containing protein	0.2033961041
+UniRef50_J9YR28: Rhodanese-like domain-containing protein|unclassified	0.2033961041
+UniRef50_UPI00047DFBA3: ABC transporter permease	0.2033819790
+UniRef50_UPI00047DFBA3: ABC transporter permease|unclassified	0.2033819790
+UniRef50_H3ULH1	0.2033750526
+UniRef50_H3ULH1|unclassified	0.2033750526
+UniRef50_Q5WVI7	0.2033736430
+UniRef50_Q5WVI7|unclassified	0.2033736430
+UniRef50_Q9JVF4: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical	0.2033708948
+UniRef50_Q9JVF4: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical|unclassified	0.2033708948
+UniRef50_D0D7N1: Conserved domain protein	0.2033692066
+UniRef50_D0D7N1: Conserved domain protein|unclassified	0.2033692066
+UniRef50_A0A011NYY6: Gcv operon activator	0.2033541759
+UniRef50_A0A011NYY6: Gcv operon activator|unclassified	0.2033541759
+UniRef50_R9ZCH5: NAD(P)H dehydrogenase	0.2033354016
+UniRef50_R9ZCH5: NAD(P)H dehydrogenase|unclassified	0.2033354016
+UniRef50_Q0A8Z1: Ribonuclease 3	0.2033303411
+UniRef50_Q0A8Z1: Ribonuclease 3|unclassified	0.2033303411
+UniRef50_UPI000377441B: excinuclease ABC subunit C, partial	0.2033224726
+UniRef50_UPI000377441B: excinuclease ABC subunit C, partial|unclassified	0.2033224726
+UniRef50_UPI0002F9B62A: hypothetical protein	0.2033220852
+UniRef50_UPI0002F9B62A: hypothetical protein|unclassified	0.2033220852
+UniRef50_UPI000288F2D6: sugar ABC transporter	0.2033163406
+UniRef50_UPI000288F2D6: sugar ABC transporter|unclassified	0.2033163406
+UniRef50_UPI00035EDF20: hypothetical protein	0.2033036095
+UniRef50_UPI00035EDF20: hypothetical protein|unclassified	0.2033036095
+UniRef50_UPI0003F0D5BD: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1-like	0.2032967328
+UniRef50_UPI0003F0D5BD: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1-like|unclassified	0.2032967328
+UniRef50_G7J4W3	0.2032933523
+UniRef50_G7J4W3|unclassified	0.2032933523
+UniRef50_A9KF61: Thymidylate synthase	0.2032925483
+UniRef50_A9KF61: Thymidylate synthase|unclassified	0.2032925483
+UniRef50_W7ZIJ8	0.2032918982
+UniRef50_W7ZIJ8|unclassified	0.2032918982
+UniRef50_UPI00028A0860: alpha/beta hydrolase	0.2032844773
+UniRef50_UPI00028A0860: alpha/beta hydrolase|unclassified	0.2032844773
+UniRef50_UPI000299E46E: IS204/IS1001/IS1096/IS1165 family transposase, partial	0.2032827417
+UniRef50_UPI000299E46E: IS204/IS1001/IS1096/IS1165 family transposase, partial|unclassified	0.2032827417
+UniRef50_C1N9V7: Predicted protein	0.2032583933
+UniRef50_C1N9V7: Predicted protein|unclassified	0.2032583933
+UniRef50_UPI0004701EEF: PTS sugar transporter	0.2032561732
+UniRef50_UPI0004701EEF: PTS sugar transporter|unclassified	0.2032561732
+UniRef50_UPI00037B2F56: 3,4-dihydroxy-2-butanone 4-phosphate synthase, partial	0.2032440361
+UniRef50_UPI00037B2F56: 3,4-dihydroxy-2-butanone 4-phosphate synthase, partial|unclassified	0.2032440361
+UniRef50_UPI00035E8084: hypothetical protein	0.2032437447
+UniRef50_UPI00035E8084: hypothetical protein|unclassified	0.2032437447
+UniRef50_W6M6K6	0.2032421801
+UniRef50_W6M6K6|unclassified	0.2032421801
+UniRef50_L3HRE0	0.2032399676
+UniRef50_L3HRE0|unclassified	0.2032399676
+UniRef50_Q8D2J1: Orotidine 5'-phosphate decarboxylase	0.2032396668
+UniRef50_Q8D2J1: Orotidine 5'-phosphate decarboxylase|unclassified	0.2032396668
+UniRef50_C5B779: Protein CreA	0.2032369426
+UniRef50_C5B779: Protein CreA|unclassified	0.2032369426
+UniRef50_UPI00037DB1CE: hypothetical protein	0.2032301072
+UniRef50_UPI00037DB1CE: hypothetical protein|unclassified	0.2032301072
+UniRef50_T2GDK5	0.2032197058
+UniRef50_T2GDK5|unclassified	0.2032197058
+UniRef50_K8C391	0.2032183619
+UniRef50_K8C391|unclassified	0.2032183619
+UniRef50_V8N8B5: High mobility group nucleosome-binding domain-containing protein 5 (Fragment)	0.2032140530
+UniRef50_V8N8B5: High mobility group nucleosome-binding domain-containing protein 5 (Fragment)|unclassified	0.2032140530
+UniRef50_UPI00040794A2: hypothetical protein	0.2031908504
+UniRef50_UPI00040794A2: hypothetical protein|unclassified	0.2031908504
+UniRef50_E6PNX5	0.2031825255
+UniRef50_E6PNX5|unclassified	0.2031825255
+UniRef50_UPI000375356A: hypothetical protein	0.2031635529
+UniRef50_UPI000375356A: hypothetical protein|unclassified	0.2031635529
+UniRef50_Q8W593: Probable lactoylglutathione lyase, chloroplast	0.2031619466
+UniRef50_Q8W593: Probable lactoylglutathione lyase, chloroplast|unclassified	0.2031619466
+UniRef50_G5NIS6	0.2031454074
+UniRef50_G5NIS6|unclassified	0.2031454074
+UniRef50_C6BMQ0: Alanin-rich signal peptide protein	0.2031442741
+UniRef50_C6BMQ0: Alanin-rich signal peptide protein|unclassified	0.2031442741
+UniRef50_UPI0000056230: 50S ribosomal protein L22	0.2031414961
+UniRef50_UPI0000056230: 50S ribosomal protein L22|unclassified	0.2031414961
+UniRef50_UPI0004708756: curli production assembly/transport component CsgG	0.2031169206
+UniRef50_UPI0004708756: curli production assembly/transport component CsgG|unclassified	0.2031169206
+UniRef50_S6BTV6	0.2031126423
+UniRef50_S6BTV6|unclassified	0.2031126423
+UniRef50_UPI000255E4CF: GntR family transcriptional regulator	0.2031124381
+UniRef50_UPI000255E4CF: GntR family transcriptional regulator|unclassified	0.2031124381
+UniRef50_A0A024JQ60: Similar to Saccharomyces cerevisiae YKR097W PCK1 Phosphoenolpyruvate carboxykinase, partial (Partial) (Fragment)	0.2031060851
+UniRef50_A0A024JQ60: Similar to Saccharomyces cerevisiae YKR097W PCK1 Phosphoenolpyruvate carboxykinase, partial (Partial) (Fragment)|unclassified	0.2031060851
+UniRef50_A0A011RZJ1: 50S ribosomal protein L27	0.2030983164
+UniRef50_A0A011RZJ1: 50S ribosomal protein L27|unclassified	0.2030983164
+UniRef50_K8CVG3: IcmF-related protein	0.2030862536
+UniRef50_K8CVG3: IcmF-related protein|unclassified	0.2030862536
+UniRef50_UPI00047AA50C: hypothetical protein	0.2030675706
+UniRef50_UPI00047AA50C: hypothetical protein|unclassified	0.2030675706
+UniRef50_Q28W09	0.2030571778
+UniRef50_Q28W09|unclassified	0.2030571778
+UniRef50_UPI000424B474: DEAD/DEAH box helicase	0.2030386337
+UniRef50_UPI000424B474: DEAD/DEAH box helicase|unclassified	0.2030386337
+UniRef50_UPI000470BFD5: amino acid ABC transporter permease	0.2030384207
+UniRef50_UPI000470BFD5: amino acid ABC transporter permease|unclassified	0.2030384207
+UniRef50_UPI00016C406D: methylcitrate synthase	0.2030343325
+UniRef50_UPI00016C406D: methylcitrate synthase|unclassified	0.2030343325
+UniRef50_UPI0003682768: hypothetical protein	0.2030065453
+UniRef50_UPI0003682768: hypothetical protein|unclassified	0.2030065453
+UniRef50_A9W1N1: NADH-quinone oxidoreductase subunit C	0.2030061363
+UniRef50_A9W1N1: NADH-quinone oxidoreductase subunit C|unclassified	0.2030061363
+UniRef50_UPI0002627AC7: hypothetical protein	0.2030010689
+UniRef50_UPI0002627AC7: hypothetical protein|unclassified	0.2030010689
+UniRef50_UPI000363414D: hypothetical protein, partial	0.2029886115
+UniRef50_UPI000363414D: hypothetical protein, partial|unclassified	0.2029886115
+UniRef50_UPI0003B3F8DE: 6,7-dimethyl-8-ribityllumazine synthase	0.2029674289
+UniRef50_UPI0003B3F8DE: 6,7-dimethyl-8-ribityllumazine synthase|unclassified	0.2029674289
+UniRef50_UPI000465069F: mannose-1-phosphate guanyltransferase	0.2029557884
+UniRef50_UPI000465069F: mannose-1-phosphate guanyltransferase|unclassified	0.2029557884
+UniRef50_R7PYI5	0.2029263246
+UniRef50_R7PYI5|unclassified	0.2029263246
+UniRef50_C4L2Q6	0.2028817728
+UniRef50_C4L2Q6|unclassified	0.2028817728
+UniRef50_UPI0003628CAF: hypothetical protein	0.2028814454
+UniRef50_UPI0003628CAF: hypothetical protein|unclassified	0.2028814454
+UniRef50_UPI0002E7DEB5: hypothetical protein	0.2028654487
+UniRef50_UPI0002E7DEB5: hypothetical protein|unclassified	0.2028654487
+UniRef50_UPI0004694C70: glucosamine--fructose-6-phosphate aminotransferase	0.2028609879
+UniRef50_UPI0004694C70: glucosamine--fructose-6-phosphate aminotransferase|unclassified	0.2028609879
+UniRef50_Q3YS50	0.2028592411
+UniRef50_Q3YS50|unclassified	0.2028592411
+UniRef50_X8JDL5: Smr domain protein	0.2028397566
+UniRef50_X8JDL5: Smr domain protein|unclassified	0.2028397566
+UniRef50_A0A010ZL53: Putative translation initiation inhibitor, yjgF family	0.2028289706
+UniRef50_A0A010ZL53: Putative translation initiation inhibitor, yjgF family|unclassified	0.2028289706
+UniRef50_T6KQK7	0.2028135126
+UniRef50_T6KQK7|unclassified	0.2028135126
+UniRef50_UPI000463CED9: hypothetical protein, partial	0.2027969126
+UniRef50_UPI000463CED9: hypothetical protein, partial|unclassified	0.2027969126
+UniRef50_UPI000471ABE5: hypothetical protein, partial	0.2027698753
+UniRef50_UPI000471ABE5: hypothetical protein, partial|unclassified	0.2027698753
+UniRef50_D9QF39: SOUL heme-binding protein	0.2027536849
+UniRef50_D9QF39: SOUL heme-binding protein|unclassified	0.2027536849
+UniRef50_D2ZTF8: Putative bacterial lipoprotein (DUF799)	0.2027319177
+UniRef50_D2ZTF8: Putative bacterial lipoprotein (DUF799)|unclassified	0.2027319177
+UniRef50_UPI00037BE1B4: hypothetical protein	0.2027259203
+UniRef50_UPI00037BE1B4: hypothetical protein|unclassified	0.2027259203
+UniRef50_P63459: Malonyl CoA-acyl carrier protein transacylase	0.2027239266
+UniRef50_P63459: Malonyl CoA-acyl carrier protein transacylase|unclassified	0.2027239266
+UniRef50_C4U0L3: Protein pmbA	0.2027211073
+UniRef50_C4U0L3: Protein pmbA|unclassified	0.2027211073
+UniRef50_Q21DG3: Ribosomal RNA small subunit methyltransferase G	0.2027168854
+UniRef50_Q21DG3: Ribosomal RNA small subunit methyltransferase G|unclassified	0.2027168854
+UniRef50_B7P1V6	0.2027163998
+UniRef50_B7P1V6|unclassified	0.2027163998
+UniRef50_UPI00037EFBBE: ester cyclase	0.2027048932
+UniRef50_UPI00037EFBBE: ester cyclase|unclassified	0.2027048932
+UniRef50_F8FS64: Cupin 2 domain-containing protein	0.2026992220
+UniRef50_F8FS64: Cupin 2 domain-containing protein|unclassified	0.2026992220
+UniRef50_Q12BS8: Prolipoprotein diacylglyceryl transferase	0.2026902370
+UniRef50_Q12BS8: Prolipoprotein diacylglyceryl transferase|unclassified	0.2026902370
+UniRef50_C8UI68	0.2026738721
+UniRef50_C8UI68|unclassified	0.2026738721
+UniRef50_K6UQ90	0.2026639641
+UniRef50_K6UQ90|unclassified	0.2026639641
+UniRef50_UPI0002E9F138: hypothetical protein	0.2026419831
+UniRef50_UPI0002E9F138: hypothetical protein|unclassified	0.2026419831
+UniRef50_UPI0003755529: hypothetical protein	0.2026048094
+UniRef50_UPI0003755529: hypothetical protein|unclassified	0.2026048094
+UniRef50_C5YHF0	0.2025832659
+UniRef50_C5YHF0|unclassified	0.2025832659
+UniRef50_UPI00037E3140: hypothetical protein	0.2025757035
+UniRef50_UPI00037E3140: hypothetical protein|unclassified	0.2025757035
+UniRef50_E1D528: L-aspartate oxidase	0.2025665616
+UniRef50_E1D528: L-aspartate oxidase|unclassified	0.2025665616
+UniRef50_U5T6S5	0.2025630156
+UniRef50_U5T6S5|unclassified	0.2025630156
+UniRef50_UPI00046770C1: hypothetical protein	0.2025442983
+UniRef50_UPI00046770C1: hypothetical protein|unclassified	0.2025442983
+UniRef50_UPI0003A6EE6D: hypothetical protein	0.2025394686
+UniRef50_UPI0003A6EE6D: hypothetical protein|unclassified	0.2025394686
+UniRef50_R1D930	0.2025391399
+UniRef50_R1D930|unclassified	0.2025391399
+UniRef50_E6YU01	0.2025359845
+UniRef50_E6YU01|unclassified	0.2025359845
+UniRef50_UPI00036C1212: hypothetical protein	0.2025253951
+UniRef50_UPI00036C1212: hypothetical protein|unclassified	0.2025253951
+UniRef50_UPI00037624FA: hypothetical protein	0.2025107489
+UniRef50_UPI00037624FA: hypothetical protein|unclassified	0.2025107489
+UniRef50_L1DBY0	0.2025064000
+UniRef50_L1DBY0|unclassified	0.2025064000
+UniRef50_UPI00036DC86C: peptide ABC transporter permease	0.2024977616
+UniRef50_UPI00036DC86C: peptide ABC transporter permease|unclassified	0.2024977616
+UniRef50_C6XTL5: LemA family protein	0.2024918066
+UniRef50_C6XTL5: LemA family protein|unclassified	0.2024918066
+UniRef50_UPI000465A9FC: ArsR family transcriptional regulator	0.2024917378
+UniRef50_UPI000465A9FC: ArsR family transcriptional regulator|unclassified	0.2024917378
+UniRef50_UPI0004791D16: hypothetical protein	0.2024828720
+UniRef50_UPI0004791D16: hypothetical protein|unclassified	0.2024828720
+UniRef50_W1JHC6	0.2024730633
+UniRef50_W1JHC6|unclassified	0.2024730633
+UniRef50_UPI000252C861: PREDICTED: formate--tetrahydrofolate ligase 1-like, partial	0.2024676710
+UniRef50_UPI000252C861: PREDICTED: formate--tetrahydrofolate ligase 1-like, partial|unclassified	0.2024676710
+UniRef50_UPI000379A98F: hypothetical protein	0.2024672641
+UniRef50_UPI000379A98F: hypothetical protein|unclassified	0.2024672641
+UniRef50_B7ZZR8	0.2024638079
+UniRef50_B7ZZR8|unclassified	0.2024638079
+UniRef50_T0KUZ2	0.2024535722
+UniRef50_T0KUZ2|unclassified	0.2024535722
+UniRef50_L8Y1D7: Inner membrane protein yjcH	0.2024521732
+UniRef50_L8Y1D7: Inner membrane protein yjcH|unclassified	0.2024521732
+UniRef50_X3EPQ7: Membrane protein	0.2024520186
+UniRef50_X3EPQ7: Membrane protein|unclassified	0.2024520186
+UniRef50_F2AB70	0.2024425234
+UniRef50_F2AB70|unclassified	0.2024425234
+UniRef50_UPI000395C02F: hypothetical protein, partial	0.2024284468
+UniRef50_UPI000395C02F: hypothetical protein, partial|unclassified	0.2024284468
+UniRef50_UPI0003C7E218: hypothetical protein	0.2024268873
+UniRef50_UPI0003C7E218: hypothetical protein|unclassified	0.2024268873
+UniRef50_X1I3C3: Marine sediment metagenome DNA, contig: S03H2_S06908 (Fragment)	0.2024046177
+UniRef50_X1I3C3: Marine sediment metagenome DNA, contig: S03H2_S06908 (Fragment)|unclassified	0.2024046177
+UniRef50_UPI0003B74724: ubiquinol-cytochrome C reductase	0.2023830057
+UniRef50_UPI0003B74724: ubiquinol-cytochrome C reductase|unclassified	0.2023830057
+UniRef50_UPI0003621607: hypothetical protein	0.2023715294
+UniRef50_UPI0003621607: hypothetical protein|unclassified	0.2023715294
+UniRef50_UPI00047044FB: hypothetical protein	0.2023708872
+UniRef50_UPI00047044FB: hypothetical protein|unclassified	0.2023708872
+UniRef50_UPI000467A05D: hypothetical protein	0.2023654215
+UniRef50_UPI000467A05D: hypothetical protein|unclassified	0.2023654215
+UniRef50_UPI0003B5001E: translation initiation factor IF-3	0.2023545790
+UniRef50_UPI0003B5001E: translation initiation factor IF-3|unclassified	0.2023545790
+UniRef50_M3YEJ0	0.2023532265
+UniRef50_M3YEJ0|unclassified	0.2023532265
+UniRef50_UPI000463EC55: hypothetical protein	0.2023241997
+UniRef50_UPI000463EC55: hypothetical protein|unclassified	0.2023241997
+UniRef50_UPI000471133A: aminoglycoside phosphotransferase	0.2023173442
+UniRef50_UPI000471133A: aminoglycoside phosphotransferase|unclassified	0.2023173442
+UniRef50_UPI00046D1791: hypothetical protein	0.2023123060
+UniRef50_UPI00046D1791: hypothetical protein|unclassified	0.2023123060
+UniRef50_UPI0004154A70: hydroperoxidase	0.2023069906
+UniRef50_UPI0004154A70: hydroperoxidase|unclassified	0.2023069906
+UniRef50_UPI000467BC4F: hypothetical protein	0.2022814168
+UniRef50_UPI000467BC4F: hypothetical protein|unclassified	0.2022814168
+UniRef50_UPI00046C05A0: PREDICTED: LOW QUALITY PROTEIN: dihydrolipoyl dehydrogenase, mitochondrial	0.2022799809
+UniRef50_UPI00046C05A0: PREDICTED: LOW QUALITY PROTEIN: dihydrolipoyl dehydrogenase, mitochondrial|unclassified	0.2022799809
+UniRef50_UPI000411E306: indole-3-glycerol phosphate synthase	0.2022688307
+UniRef50_UPI000411E306: indole-3-glycerol phosphate synthase|unclassified	0.2022688307
+UniRef50_G8AXZ3	0.2022543287
+UniRef50_G8AXZ3|unclassified	0.2022543287
+UniRef50_Q31T42: IS2 ORF2	0.2022495183
+UniRef50_Q31T42: IS2 ORF2|unclassified	0.2022495183
+UniRef50_UPI00045EC0B1: hypothetical protein	0.2022270641
+UniRef50_UPI00045EC0B1: hypothetical protein|unclassified	0.2022270641
+UniRef50_UPI00035974DD: PREDICTED: regulating synaptic membrane exocytosis protein 2-like	0.2022244692
+UniRef50_UPI00035974DD: PREDICTED: regulating synaptic membrane exocytosis protein 2-like|unclassified	0.2022244692
+UniRef50_UPI0003629BA9: hypothetical protein	0.2021959062
+UniRef50_UPI0003629BA9: hypothetical protein|unclassified	0.2021959062
+UniRef50_P63811: Pantothenate kinase	0.2021839039
+UniRef50_P63811: Pantothenate kinase|unclassified	0.2021839039
+UniRef50_A4CHJ6	0.2021544999
+UniRef50_A4CHJ6|unclassified	0.2021544999
+UniRef50_W7D3J0: Recombination and DNA strand exchange inhibitor protein	0.2021477402
+UniRef50_W7D3J0: Recombination and DNA strand exchange inhibitor protein|unclassified	0.2021477402
+UniRef50_UPI0004746A8A: ammonia channel protein, partial	0.2021474900
+UniRef50_UPI0004746A8A: ammonia channel protein, partial|unclassified	0.2021474900
+UniRef50_UPI00029A6F6B: transporter, MFS family protein, partial	0.2021228583
+UniRef50_UPI00029A6F6B: transporter, MFS family protein, partial|unclassified	0.2021228583
+UniRef50_D3P107	0.2021066492
+UniRef50_D3P107|unclassified	0.2021066492
+UniRef50_UPI0001FFE3E3: nitrogen regulatory protein P-II, partial	0.2020988741
+UniRef50_UPI0001FFE3E3: nitrogen regulatory protein P-II, partial|unclassified	0.2020988741
+UniRef50_UPI000468B631: patatin	0.2020894422
+UniRef50_UPI000468B631: patatin|unclassified	0.2020894422
+UniRef50_UPI00046F04B8: hypothetical protein	0.2020823353
+UniRef50_UPI00046F04B8: hypothetical protein|unclassified	0.2020823353
+UniRef50_R7WRJ6	0.2020813000
+UniRef50_R7WRJ6|unclassified	0.2020813000
+UniRef50_UPI00037D50CB: hypothetical protein	0.2020714863
+UniRef50_UPI00037D50CB: hypothetical protein|unclassified	0.2020714863
+UniRef50_A8TJ56	0.2020701800
+UniRef50_A8TJ56|unclassified	0.2020701800
+UniRef50_UPI0003B5224F: DNA mismatch repair protein MutT	0.2020694250
+UniRef50_UPI0003B5224F: DNA mismatch repair protein MutT|unclassified	0.2020694250
+UniRef50_S5YDC7: Transposase	0.2020577423
+UniRef50_S5YDC7: Transposase|unclassified	0.2020577423
+UniRef50_D7FUD9	0.2020478890
+UniRef50_D7FUD9|unclassified	0.2020478890
+UniRef50_G4R6L2: Exported protein	0.2020368610
+UniRef50_G4R6L2: Exported protein|unclassified	0.2020368610
+UniRef50_L7ZFD3: Outer membrane protein	0.2020304225
+UniRef50_L7ZFD3: Outer membrane protein|unclassified	0.2020304225
+UniRef50_Q27828: Bifunctional dihydrofolate reductase-thymidylate synthase	0.2020284626
+UniRef50_Q27828: Bifunctional dihydrofolate reductase-thymidylate synthase|unclassified	0.2020284626
+UniRef50_T0TBW3: Late competence protein ComGD	0.2020024514
+UniRef50_T0TBW3: Late competence protein ComGD|unclassified	0.2020024514
+UniRef50_X8DM61: Aldehyde oxidase and xanthine dehydrogenase, a/b hammerhead domain protein	0.2019942319
+UniRef50_X8DM61: Aldehyde oxidase and xanthine dehydrogenase, a/b hammerhead domain protein|unclassified	0.2019942319
+UniRef50_UPI0004790305: hypothetical protein	0.2019807942
+UniRef50_UPI0004790305: hypothetical protein|unclassified	0.2019807942
+UniRef50_UPI00036CE4E5: hypothetical protein	0.2019800598
+UniRef50_UPI00036CE4E5: hypothetical protein|unclassified	0.2019800598
+UniRef50_F2LDL7: Diguanylate cyclase	0.2019646155
+UniRef50_F2LDL7: Diguanylate cyclase|unclassified	0.2019646155
+UniRef50_B0C6R3: Phosphoribosylformylglycinamidine synthase 2	0.2019339601
+UniRef50_B0C6R3: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.2019339601
+UniRef50_UPI0004761541: chemotaxis protein CheY	0.2019304693
+UniRef50_UPI0004761541: chemotaxis protein CheY|unclassified	0.2019304693
+UniRef50_UPI0002DC0303: hypothetical protein	0.2019071034
+UniRef50_UPI0002DC0303: hypothetical protein|unclassified	0.2019071034
+UniRef50_X2XBL9	0.2019026781
+UniRef50_X2XBL9|unclassified	0.2019026781
+UniRef50_UPI000375FCB8: hypothetical protein	0.2018679736
+UniRef50_UPI000375FCB8: hypothetical protein|unclassified	0.2018679736
+UniRef50_X5I4J1	0.2018583204
+UniRef50_X5I4J1|unclassified	0.2018583204
+UniRef50_Q6C159: YALI0F19030p	0.2018525938
+UniRef50_Q6C159: YALI0F19030p|unclassified	0.2018525938
+UniRef50_UPI000478A2BB: hypothetical protein	0.2018498917
+UniRef50_UPI000478A2BB: hypothetical protein|unclassified	0.2018498917
+UniRef50_F3THI6	0.2018473770
+UniRef50_F3THI6|unclassified	0.2018473770
+UniRef50_A0A023LBQ7	0.2018369478
+UniRef50_A0A023LBQ7|unclassified	0.2018369478
+UniRef50_UPI000288104D: ATP-dependent DNA helicase	0.2018235959
+UniRef50_UPI000288104D: ATP-dependent DNA helicase|unclassified	0.2018235959
+UniRef50_UPI0003EF2FDA: hypothetical protein	0.2018137890
+UniRef50_UPI0003EF2FDA: hypothetical protein|unclassified	0.2018137890
+UniRef50_H0A424	0.2018012555
+UniRef50_H0A424|unclassified	0.2018012555
+UniRef50_C0Z7P4: Pantothenate kinase	0.2017925213
+UniRef50_C0Z7P4: Pantothenate kinase|unclassified	0.2017925213
+UniRef50_UPI00016AF478: hypothetical protein	0.2017871244
+UniRef50_UPI00016AF478: hypothetical protein|unclassified	0.2017871244
+UniRef50_F2RAR1	0.2017844368
+UniRef50_F2RAR1|unclassified	0.2017844368
+UniRef50_J0JAB8: Molecular chaperone DnaK (Fragment)	0.2017719044
+UniRef50_J0JAB8: Molecular chaperone DnaK (Fragment)|unclassified	0.2017719044
+UniRef50_J9P1J0	0.2017573069
+UniRef50_J9P1J0|unclassified	0.2017573069
+UniRef50_F9P1Q2: TIGR01671 family protein	0.2017477412
+UniRef50_F9P1Q2: TIGR01671 family protein|unclassified	0.2017477412
+UniRef50_A1T726	0.2017430755
+UniRef50_A1T726|unclassified	0.2017430755
+UniRef50_A0A011R5S5: Serine/threonine-protein kinase PknB	0.2017412707
+UniRef50_A0A011R5S5: Serine/threonine-protein kinase PknB|unclassified	0.2017412707
+UniRef50_I4WXX6: Acyl carrier protein	0.2017401377
+UniRef50_I4WXX6: Acyl carrier protein|unclassified	0.2017401377
+UniRef50_F2D1I1: Predicted protein (Fragment)	0.2017271846
+UniRef50_F2D1I1: Predicted protein (Fragment)|unclassified	0.2017271846
+UniRef50_UPI0003903B1A	0.2017209773
+UniRef50_UPI0003903B1A|unclassified	0.2017209773
+UniRef50_UPI00035D833E: hypothetical protein	0.2017191237
+UniRef50_UPI00035D833E: hypothetical protein|unclassified	0.2017191237
+UniRef50_A4WS86	0.2017148521
+UniRef50_A4WS86|unclassified	0.2017148521
+UniRef50_A0A011ML55: Putative acrAB operon repressor	0.2017113390
+UniRef50_A0A011ML55: Putative acrAB operon repressor|unclassified	0.2017113390
+UniRef50_UPI000334079F: PREDICTED: translation initiation factor IF-2-like	0.2017083431
+UniRef50_UPI000334079F: PREDICTED: translation initiation factor IF-2-like|unclassified	0.2017083431
+UniRef50_UPI000374F459: hypothetical protein	0.2016863652
+UniRef50_UPI000374F459: hypothetical protein|unclassified	0.2016863652
+UniRef50_UPI000471FF73: hypothetical protein	0.2016821420
+UniRef50_UPI000471FF73: hypothetical protein|unclassified	0.2016821420
+UniRef50_UPI0003A558E8: hypothetical protein	0.2016774248
+UniRef50_UPI0003A558E8: hypothetical protein|unclassified	0.2016774248
+UniRef50_UPI0004713FE3: glycerol-3-phosphate acyltransferase	0.2016527657
+UniRef50_UPI0004713FE3: glycerol-3-phosphate acyltransferase|unclassified	0.2016527657
+UniRef50_V5C180: Sensor-like histidine kinase RcsD	0.2016481581
+UniRef50_V5C180: Sensor-like histidine kinase RcsD|unclassified	0.2016481581
+UniRef50_Q73H00: Glutamate--tRNA ligase 2	0.2016407538
+UniRef50_Q73H00: Glutamate--tRNA ligase 2|unclassified	0.2016407538
+UniRef50_UPI00035DB243: hypothetical protein	0.2016257591
+UniRef50_UPI00035DB243: hypothetical protein|unclassified	0.2016257591
+UniRef50_C1FQ40: Ribosomal RNA small subunit methyltransferase A	0.2016084505
+UniRef50_C1FQ40: Ribosomal RNA small subunit methyltransferase A|unclassified	0.2016084505
+UniRef50_UPI00046F4A68: xanthine dehydrogenase, partial	0.2016040898
+UniRef50_UPI00046F4A68: xanthine dehydrogenase, partial|unclassified	0.2016040898
+UniRef50_E8Z647	0.2015978329
+UniRef50_E8Z647|unclassified	0.2015978329
+UniRef50_UPI0003A0652D: peptidase C60	0.2015887899
+UniRef50_UPI0003A0652D: peptidase C60|unclassified	0.2015887899
+UniRef50_G4YDD7	0.2015816595
+UniRef50_G4YDD7|unclassified	0.2015816595
+UniRef50_R6D527: YbbR-like protein	0.2015117429
+UniRef50_R6D527: YbbR-like protein|unclassified	0.2015117429
+UniRef50_E7BFN4	0.2014815316
+UniRef50_E7BFN4|unclassified	0.2014815316
+UniRef50_UPI0003B73146: 3-ketoacyl-ACP reductase, partial	0.2014606758
+UniRef50_UPI0003B73146: 3-ketoacyl-ACP reductase, partial|unclassified	0.2014606758
+UniRef50_UPI0003B720CE: peptide ABC transporter permease	0.2014434570
+UniRef50_UPI0003B720CE: peptide ABC transporter permease|unclassified	0.2014434570
+UniRef50_Q9X351: PXO1-81	0.2014418642
+UniRef50_Q9X351: PXO1-81|unclassified	0.2014418642
+UniRef50_A6V1G2: tRNA pseudouridine synthase D	0.2014352674
+UniRef50_A6V1G2: tRNA pseudouridine synthase D|unclassified	0.2014352674
+UniRef50_UPI00041E2B4A: hypothetical protein	0.2014255298
+UniRef50_UPI00041E2B4A: hypothetical protein|unclassified	0.2014255298
+UniRef50_M9GJB7	0.2013912182
+UniRef50_M9GJB7|unclassified	0.2013912182
+UniRef50_UPI00037797C7: hypothetical protein	0.2013709766
+UniRef50_UPI00037797C7: hypothetical protein|unclassified	0.2013709766
+UniRef50_A4YJX9: Argininosuccinate synthase	0.2013707462
+UniRef50_A4YJX9: Argininosuccinate synthase|unclassified	0.2013707462
+UniRef50_Q0S2H3: Ketol-acid reductoisomerase	0.2013690389
+UniRef50_Q0S2H3: Ketol-acid reductoisomerase|unclassified	0.2013690389
+UniRef50_A8TBH9	0.2013462910
+UniRef50_A8TBH9|unclassified	0.2013462910
+UniRef50_D6LN78	0.2013269941
+UniRef50_D6LN78|unclassified	0.2013269941
+UniRef50_UPI000377E98F: hypothetical protein, partial	0.2013124780
+UniRef50_UPI000377E98F: hypothetical protein, partial|unclassified	0.2013124780
+UniRef50_UPI000424C9A9: hypothetical protein	0.2013122879
+UniRef50_UPI000424C9A9: hypothetical protein|unclassified	0.2013122879
+UniRef50_A5G0C2	0.2013010750
+UniRef50_A5G0C2|unclassified	0.2013010750
+UniRef50_UPI0003B72555: N(G),N(G)-dimethylarginine dimethylaminohydrolase	0.2012788919
+UniRef50_UPI0003B72555: N(G),N(G)-dimethylarginine dimethylaminohydrolase|unclassified	0.2012788919
+UniRef50_Q9T074: Phosphoenolpyruvate carboxykinase [ATP]	0.2012712881
+UniRef50_Q9T074: Phosphoenolpyruvate carboxykinase [ATP]|unclassified	0.2012712881
+UniRef50_UPI00039595AE: amino acid carrier protein	0.2012503877
+UniRef50_UPI00039595AE: amino acid carrier protein|unclassified	0.2012503877
+UniRef50_UPI00038198D7: hypothetical protein	0.2012172623
+UniRef50_UPI00038198D7: hypothetical protein|unclassified	0.2012172623
+UniRef50_UPI000366BE8B: hypothetical protein	0.2012153899
+UniRef50_UPI000366BE8B: hypothetical protein|unclassified	0.2012153899
+UniRef50_B8D004	0.2012135741
+UniRef50_B8D004|unclassified	0.2012135741
+UniRef50_UPI00036D97E3: hypothetical protein	0.2012041262
+UniRef50_UPI00036D97E3: hypothetical protein|unclassified	0.2012041262
+UniRef50_A0A017HN29	0.2012016208
+UniRef50_A0A017HN29|unclassified	0.2012016208
+UniRef50_Q2YBL2: Glycine--tRNA ligase alpha subunit	0.2011986783
+UniRef50_Q2YBL2: Glycine--tRNA ligase alpha subunit|unclassified	0.2011986783
+UniRef50_B3PEP2	0.2011865654
+UniRef50_B3PEP2|unclassified	0.2011865654
+UniRef50_R6HDW3: GTP-binding protein TypA/BipA	0.2011808509
+UniRef50_R6HDW3: GTP-binding protein TypA/BipA|unclassified	0.2011808509
+UniRef50_UPI0004629E58: preprotein translocase subunit YidC	0.2011723153
+UniRef50_UPI0004629E58: preprotein translocase subunit YidC|unclassified	0.2011723153
+UniRef50_UPI0003C7F041: urea ABC transporter ATP-binding protein	0.2011713406
+UniRef50_UPI0003C7F041: urea ABC transporter ATP-binding protein|unclassified	0.2011713406
+UniRef50_D6KC54	0.2011621397
+UniRef50_D6KC54|unclassified	0.2011621397
+UniRef50_B6IN25: Putative Holliday junction resolvase	0.2011571935
+UniRef50_B6IN25: Putative Holliday junction resolvase|unclassified	0.2011571935
+UniRef50_UPI00037BCC78: hypothetical protein, partial	0.2011515530
+UniRef50_UPI00037BCC78: hypothetical protein, partial|unclassified	0.2011515530
+UniRef50_UPI0003EE93F2: hypothetical protein	0.2011416499
+UniRef50_UPI0003EE93F2: hypothetical protein|unclassified	0.2011416499
+UniRef50_UPI00037AA64F: hypothetical protein	0.2011370310
+UniRef50_UPI00037AA64F: hypothetical protein|unclassified	0.2011370310
+UniRef50_Q2GDP4: Glutamate--tRNA ligase 1	0.2010885403
+UniRef50_Q2GDP4: Glutamate--tRNA ligase 1|unclassified	0.2010885403
+UniRef50_UPI000380B50B: hypothetical protein	0.2010796944
+UniRef50_UPI000380B50B: hypothetical protein|unclassified	0.2010796944
+UniRef50_UPI000470759E: ATP-dependent DNA helicase PcrA	0.2010491874
+UniRef50_UPI000470759E: ATP-dependent DNA helicase PcrA|unclassified	0.2010491874
+UniRef50_H0HPH5: Lytic transglycosylase, catalytic	0.2010244960
+UniRef50_H0HPH5: Lytic transglycosylase, catalytic|unclassified	0.2010244960
+UniRef50_UPI0000F2FDA5: methyltransferase	0.2010166357
+UniRef50_UPI0000F2FDA5: methyltransferase|unclassified	0.2010166357
+UniRef50_R8QKZ7: UPF0145 protein	0.2010049462
+UniRef50_R8QKZ7: UPF0145 protein|unclassified	0.2010049462
+UniRef50_Q3A6V2: Undecaprenyl-diphosphatase	0.2009967744
+UniRef50_Q3A6V2: Undecaprenyl-diphosphatase|unclassified	0.2009967744
+UniRef50_UPI000382EB64: hypothetical protein	0.2009936428
+UniRef50_UPI000382EB64: hypothetical protein|unclassified	0.2009936428
+UniRef50_I2JNE4	0.2009836211
+UniRef50_I2JNE4|unclassified	0.2009836211
+UniRef50_UPI0003AD7184: hypothetical protein	0.2009732561
+UniRef50_UPI0003AD7184: hypothetical protein|unclassified	0.2009732561
+UniRef50_UPI000376FB28: hypothetical protein	0.2009686316
+UniRef50_UPI000376FB28: hypothetical protein|unclassified	0.2009686316
+UniRef50_U2A6D4	0.2009564672
+UniRef50_U2A6D4|unclassified	0.2009564672
+UniRef50_Q8D337: Putative Holliday junction resolvase	0.2009560847
+UniRef50_Q8D337: Putative Holliday junction resolvase|unclassified	0.2009560847
+UniRef50_UPI0004232CBC: hypothetical protein	0.2009521075
+UniRef50_UPI0004232CBC: hypothetical protein|unclassified	0.2009521075
+UniRef50_M5C089	0.2009409528
+UniRef50_M5C089|unclassified	0.2009409528
+UniRef50_B0RCT8	0.2009369246
+UniRef50_B0RCT8|unclassified	0.2009369246
+UniRef50_E4U740: Nitrate reductase cytochrome c-type subunit (NapB)	0.2009298098
+UniRef50_E4U740: Nitrate reductase cytochrome c-type subunit (NapB)|unclassified	0.2009298098
+UniRef50_S0SK47	0.2009222243
+UniRef50_S0SK47|unclassified	0.2009222243
+UniRef50_UPI00035C7829: hypothetical protein	0.2009083342
+UniRef50_UPI00035C7829: hypothetical protein|unclassified	0.2009083342
+UniRef50_UPI0003A6077C: MULTISPECIES: phosphoenolpyruvate carboxykinase	0.2008871629
+UniRef50_UPI0003A6077C: MULTISPECIES: phosphoenolpyruvate carboxykinase|unclassified	0.2008871629
+UniRef50_UPI000262BAF1: baseplate assembly protein	0.2008854417
+UniRef50_UPI000262BAF1: baseplate assembly protein|unclassified	0.2008854417
+UniRef50_UPI00025579F9: primosomal protein DnaI	0.2008742345
+UniRef50_UPI00025579F9: primosomal protein DnaI|unclassified	0.2008742345
+UniRef50_Q2CII4	0.2008652361
+UniRef50_Q2CII4|unclassified	0.2008652361
+UniRef50_T2QCI3	0.2008187696
+UniRef50_T2QCI3|unclassified	0.2008187696
+UniRef50_A0A018SE61: Putative peptidase (Fragment)	0.2008053164
+UniRef50_A0A018SE61: Putative peptidase (Fragment)|unclassified	0.2008053164
+UniRef50_UPI0004643A37: hypothetical protein	0.2008026706
+UniRef50_UPI0004643A37: hypothetical protein|unclassified	0.2008026706
+UniRef50_UPI0003B5D016: hypothetical protein, partial	0.2007990711
+UniRef50_UPI0003B5D016: hypothetical protein, partial|unclassified	0.2007990711
+UniRef50_G5S9V7: Outer membrane lipoprotein YidQ	0.2007963636
+UniRef50_G5S9V7: Outer membrane lipoprotein YidQ|unclassified	0.2007963636
+UniRef50_Q1QD29: Phosphate-starvation-inducible E	0.2007920895
+UniRef50_Q1QD29: Phosphate-starvation-inducible E|unclassified	0.2007920895
+UniRef50_Q3ZXA9: Peptide deformylase	0.2007897396
+UniRef50_Q3ZXA9: Peptide deformylase|unclassified	0.2007897396
+UniRef50_W9T7P1	0.2007841307
+UniRef50_W9T7P1|unclassified	0.2007841307
+UniRef50_UPI00021929EA: putative O-sialoglycoprotein endopeptidase, partial	0.2007781361
+UniRef50_UPI00021929EA: putative O-sialoglycoprotein endopeptidase, partial|unclassified	0.2007781361
+UniRef50_UPI0004721544: hypothetical protein	0.2007720452
+UniRef50_UPI0004721544: hypothetical protein|unclassified	0.2007720452
+UniRef50_UPI00035E9EF0: hypothetical protein	0.2007324045
+UniRef50_UPI00035E9EF0: hypothetical protein|unclassified	0.2007324045
+UniRef50_D9UUH5: Predicted protein	0.2007165690
+UniRef50_D9UUH5: Predicted protein|unclassified	0.2007165690
+UniRef50_UPI0004638F66: hypothetical protein	0.2007132567
+UniRef50_UPI0004638F66: hypothetical protein|unclassified	0.2007132567
+UniRef50_UPI0004014281: 16S rRNA methyltransferase	0.2007091227
+UniRef50_UPI0004014281: 16S rRNA methyltransferase|unclassified	0.2007091227
+UniRef50_D5AV97	0.2007019690
+UniRef50_D5AV97|unclassified	0.2007019690
+UniRef50_Q9LDF4	0.2006704145
+UniRef50_Q9LDF4|unclassified	0.2006704145
+UniRef50_UPI00045E730E: hypothetical protein	0.2006614521
+UniRef50_UPI00045E730E: hypothetical protein|unclassified	0.2006614521
+UniRef50_A1UGC3	0.2006568989
+UniRef50_A1UGC3|unclassified	0.2006568989
+UniRef50_R5ZC42	0.2006550448
+UniRef50_R5ZC42|unclassified	0.2006550448
+UniRef50_B9L423	0.2006541179
+UniRef50_B9L423|unclassified	0.2006541179
+UniRef50_W8KJY3	0.2006500095
+UniRef50_W8KJY3|unclassified	0.2006500095
+UniRef50_C4TF86: ClpC (Fragment)	0.2006484867
+UniRef50_C4TF86: ClpC (Fragment)|unclassified	0.2006484867
+UniRef50_Q9XY92: Spermidine synthase	0.2006429032
+UniRef50_Q9XY92: Spermidine synthase|unclassified	0.2006429032
+UniRef50_UPI0003B5C889: 6-phosphofructokinase	0.2006312950
+UniRef50_UPI0003B5C889: 6-phosphofructokinase|unclassified	0.2006312950
+UniRef50_H1SIW1: AraC family transcriptional regulator (Fragment)	0.2006092827
+UniRef50_H1SIW1: AraC family transcriptional regulator (Fragment)|unclassified	0.2006092827
+UniRef50_Q9A5B6: Histidinol-phosphate aminotransferase 2	0.2006057278
+UniRef50_Q9A5B6: Histidinol-phosphate aminotransferase 2|unclassified	0.2006057278
+UniRef50_P45743: Isochorismatase	0.2005990162
+UniRef50_P45743: Isochorismatase|unclassified	0.2005990162
+UniRef50_F5Q6W4: Putative transposase	0.2005778693
+UniRef50_F5Q6W4: Putative transposase|unclassified	0.2005778693
+UniRef50_UPI00046B48C1: PREDICTED: LOW QUALITY PROTEIN: ras association domain-containing protein 7	0.2005628640
+UniRef50_UPI00046B48C1: PREDICTED: LOW QUALITY PROTEIN: ras association domain-containing protein 7|unclassified	0.2005628640
+UniRef50_UPI000474E087: hypothetical protein	0.2005593840
+UniRef50_UPI000474E087: hypothetical protein|unclassified	0.2005593840
+UniRef50_Q217W9: PilT protein	0.2005374142
+UniRef50_Q217W9: PilT protein|unclassified	0.2005374142
+UniRef50_UPI000289E08F: glutathione ABC transporter substrate-binding protein GsiB	0.2005199379
+UniRef50_UPI000289E08F: glutathione ABC transporter substrate-binding protein GsiB|unclassified	0.2005199379
+UniRef50_UPI0003604C27: hypothetical protein	0.2005139293
+UniRef50_UPI0003604C27: hypothetical protein|unclassified	0.2005139293
+UniRef50_UPI0002887CDE: polynucleotide phosphorylase/polyadenylase, partial	0.2005064276
+UniRef50_UPI0002887CDE: polynucleotide phosphorylase/polyadenylase, partial|unclassified	0.2005064276
+UniRef50_F7XB03: Transposase IS66	0.2004790072
+UniRef50_F7XB03: Transposase IS66|unclassified	0.2004790072
+UniRef50_UPI0003B75D35: hypothetical protein	0.2004755249
+UniRef50_UPI0003B75D35: hypothetical protein|unclassified	0.2004755249
+UniRef50_UPI0003781C56: 50S ribosomal protein L22	0.2004723691
+UniRef50_UPI0003781C56: 50S ribosomal protein L22|unclassified	0.2004723691
+UniRef50_P16133: Ribulose bisphosphate carboxylase small chain 5, chloroplastic	0.2004682524
+UniRef50_P16133: Ribulose bisphosphate carboxylase small chain 5, chloroplastic|unclassified	0.2004682524
+UniRef50_UPI000374C5FF: hypothetical protein	0.2004532967
+UniRef50_UPI000374C5FF: hypothetical protein|unclassified	0.2004532967
+UniRef50_UPI000473DF01: hypothetical protein	0.2004460078
+UniRef50_UPI000473DF01: hypothetical protein|unclassified	0.2004460078
+UniRef50_UPI00047BCCD8: hypothetical protein	0.2004371367
+UniRef50_UPI00047BCCD8: hypothetical protein|unclassified	0.2004371367
+UniRef50_UPI0002493016: NAD-dependent aldehyde dehydrogenase	0.2004215986
+UniRef50_UPI0002493016: NAD-dependent aldehyde dehydrogenase|unclassified	0.2004215986
+UniRef50_UPI0003C7E2AB: prevent-host-death protein	0.2003733230
+UniRef50_UPI0003C7E2AB: prevent-host-death protein|unclassified	0.2003733230
+UniRef50_X6K3D3	0.2003637456
+UniRef50_X6K3D3|unclassified	0.2003637456
+UniRef50_UPI00035E63FD: hypothetical protein	0.2003468711
+UniRef50_UPI00035E63FD: hypothetical protein|unclassified	0.2003468711
+UniRef50_W4TIW9	0.2003461827
+UniRef50_W4TIW9|unclassified	0.2003461827
+UniRef50_H3VIX7	0.2003450988
+UniRef50_H3VIX7|unclassified	0.2003450988
+UniRef50_UPI000382CFBB: hypothetical protein, partial	0.2003410363
+UniRef50_UPI000382CFBB: hypothetical protein, partial|unclassified	0.2003410363
+UniRef50_UPI00041FB703: cell division protein BolA	0.2003389385
+UniRef50_UPI00041FB703: cell division protein BolA|unclassified	0.2003389385
+UniRef50_UPI00047B72DC: mannitol dehydrogenase	0.2003278812
+UniRef50_UPI00047B72DC: mannitol dehydrogenase|unclassified	0.2003278812
+UniRef50_I3X6G1	0.2002989702
+UniRef50_I3X6G1|unclassified	0.2002989702
+UniRef50_UPI000367B022: hypothetical protein	0.2002923198
+UniRef50_UPI000367B022: hypothetical protein|unclassified	0.2002923198
+UniRef50_UPI0004718772: 30S ribosomal protein S2	0.2002900494
+UniRef50_UPI0004718772: 30S ribosomal protein S2|unclassified	0.2002900494
+UniRef50_UPI0003B6D093: C4-dicarboxylate ABC transporter permease	0.2002869930
+UniRef50_UPI0003B6D093: C4-dicarboxylate ABC transporter permease|unclassified	0.2002869930
+UniRef50_D5QHL7: YCII-related protein	0.2002855946
+UniRef50_D5QHL7: YCII-related protein|unclassified	0.2002855946
+UniRef50_X2HI42: YciL protein	0.2002855946
+UniRef50_X2HI42: YciL protein|unclassified	0.2002855946
+UniRef50_UPI0003B5B0C7: flagellin, partial	0.2002830012
+UniRef50_UPI0003B5B0C7: flagellin, partial|unclassified	0.2002830012
+UniRef50_UPI0003763331: hypothetical protein	0.2002823488
+UniRef50_UPI0003763331: hypothetical protein|unclassified	0.2002823488
+UniRef50_B8IET9	0.2002700990
+UniRef50_B8IET9|unclassified	0.2002700990
+UniRef50_UPI00045E6095: multidrug transporter	0.2002647614
+UniRef50_UPI00045E6095: multidrug transporter|unclassified	0.2002647614
+UniRef50_W7Q7Y7	0.2002620735
+UniRef50_W7Q7Y7|unclassified	0.2002620735
+UniRef50_M0SIT6	0.2002555367
+UniRef50_M0SIT6|unclassified	0.2002555367
+UniRef50_A0A059KMS6	0.2002442901
+UniRef50_A0A059KMS6|unclassified	0.2002442901
+UniRef50_A1B5T2	0.2002387713
+UniRef50_A1B5T2|unclassified	0.2002387713
+UniRef50_A9FGA8: Acylphosphatase	0.2002257168
+UniRef50_A9FGA8: Acylphosphatase|unclassified	0.2002257168
+UniRef50_UPI000381D2F2: hypothetical protein	0.2002215965
+UniRef50_UPI000381D2F2: hypothetical protein|unclassified	0.2002215965
+UniRef50_Q6LUK6: Carbamoyl-phosphate synthase small chain	0.2002062525
+UniRef50_Q6LUK6: Carbamoyl-phosphate synthase small chain|unclassified	0.2002062525
+UniRef50_I3S3Y8	0.2001997852
+UniRef50_I3S3Y8|unclassified	0.2001997852
+UniRef50_UPI0002DD4526: succinate dehydrogenase	0.2001959342
+UniRef50_UPI0002DD4526: succinate dehydrogenase|unclassified	0.2001959342
+UniRef50_B9L7V8: Acyl carrier protein	0.2001954261
+UniRef50_B9L7V8: Acyl carrier protein|unclassified	0.2001954261
+UniRef50_UPI000465B888: formate dehydrogenase	0.2001942015
+UniRef50_UPI000465B888: formate dehydrogenase|unclassified	0.2001942015
+UniRef50_UPI0004691430: hypothetical protein	0.2001893735
+UniRef50_UPI0004691430: hypothetical protein|unclassified	0.2001893735
+UniRef50_B8GY65: 3-isopropylmalate dehydratase small subunit	0.2001648419
+UniRef50_B8GY65: 3-isopropylmalate dehydratase small subunit|unclassified	0.2001648419
+UniRef50_R6J1R9	0.2001573458
+UniRef50_R6J1R9|unclassified	0.2001573458
+UniRef50_UPI00037783E8: hypothetical protein	0.2001419975
+UniRef50_UPI00037783E8: hypothetical protein|unclassified	0.2001419975
+UniRef50_A3ZRS7: Probable beta-lactamase regulatory protein	0.2001386582
+UniRef50_A3ZRS7: Probable beta-lactamase regulatory protein|unclassified	0.2001386582
+UniRef50_C3L407	0.2001306199
+UniRef50_C3L407|unclassified	0.2001306199
+UniRef50_UPI000379A499: hypothetical protein	0.2001215240
+UniRef50_UPI000379A499: hypothetical protein|unclassified	0.2001215240
+UniRef50_A9H4T8	0.2001194429
+UniRef50_A9H4T8|unclassified	0.2001194429
+UniRef50_B9KUF9	0.2001115055
+UniRef50_B9KUF9|unclassified	0.2001115055
+UniRef50_W2CS51	0.2001082482
+UniRef50_W2CS51|unclassified	0.2001082482
+UniRef50_UPI00030DE478: hypothetical protein	0.2000700863
+UniRef50_UPI00030DE478: hypothetical protein|unclassified	0.2000700863
+UniRef50_UPI0002EE5BF6: sulfate permease	0.2000650450
+UniRef50_UPI0002EE5BF6: sulfate permease|unclassified	0.2000650450
+UniRef50_UPI000288720B: flagellar biosynthetic protein FlhB	0.2000551159
+UniRef50_UPI000288720B: flagellar biosynthetic protein FlhB|unclassified	0.2000551159
+UniRef50_UPI00036E58C4: hypothetical protein	0.2000142796
+UniRef50_UPI00036E58C4: hypothetical protein|unclassified	0.2000142796
+UniRef50_K0S4W4	0.2000133437
+UniRef50_K0S4W4|unclassified	0.2000133437
+UniRef50_P20839: Inosine-5'-monophosphate dehydrogenase 1	0.2000126293
+UniRef50_P20839: Inosine-5'-monophosphate dehydrogenase 1|unclassified	0.2000126293
+UniRef50_D4GZ01: DNA gyrase subunit B	0.2000088502
+UniRef50_D4GZ01: DNA gyrase subunit B|unclassified	0.2000088502
+UniRef50_I1EPG5	0.2000052311
+UniRef50_I1EPG5|unclassified	0.2000052311
+UniRef50_UPI00046687D5: hypothetical protein	0.1999729755
+UniRef50_UPI00046687D5: hypothetical protein|unclassified	0.1999729755
+UniRef50_A0A023YKE2: LemA family protein	0.1999617526
+UniRef50_A0A023YKE2: LemA family protein|unclassified	0.1999617526
+UniRef50_D5AVK9: Molybdate-binding protein	0.1999415852
+UniRef50_D5AVK9: Molybdate-binding protein|unclassified	0.1999415852
+UniRef50_Q9ZDB6: Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB	0.1999358813
+UniRef50_Q9ZDB6: Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB|unclassified	0.1999358813
+UniRef50_D4HEW0	0.1999333587
+UniRef50_D4HEW0|unclassified	0.1999333587
+UniRef50_UPI0003796C9F: hypothetical protein, partial	0.1999184993
+UniRef50_UPI0003796C9F: hypothetical protein, partial|unclassified	0.1999184993
+UniRef50_UPI0004677A65: iron dicitrate transport regulator FecR	0.1999182600
+UniRef50_UPI0004677A65: iron dicitrate transport regulator FecR|unclassified	0.1999182600
+UniRef50_D8VMP8: PAS-GGDEF domain protein	0.1999049181
+UniRef50_D8VMP8: PAS-GGDEF domain protein|unclassified	0.1999049181
+UniRef50_G5QWA2: Enterobactin synthetase component F	0.1998940984
+UniRef50_G5QWA2: Enterobactin synthetase component F|unclassified	0.1998940984
+UniRef50_L6QZP5: L,D-transpeptidase	0.1998808257
+UniRef50_L6QZP5: L,D-transpeptidase|unclassified	0.1998808257
+UniRef50_Q8VAA1: Wsv001	0.1998800720
+UniRef50_Q8VAA1: Wsv001|unclassified	0.1998800720
+UniRef50_M9RDS3: FlgJ-like flagellar basal body rod protein	0.1998617643
+UniRef50_M9RDS3: FlgJ-like flagellar basal body rod protein|unclassified	0.1998617643
+UniRef50_UPI0004718473: hypothetical protein, partial	0.1998379329
+UniRef50_UPI0004718473: hypothetical protein, partial|unclassified	0.1998379329
+UniRef50_M4WU84	0.1998197055
+UniRef50_M4WU84|unclassified	0.1998197055
+UniRef50_UPI000368BA76: hypothetical protein, partial	0.1998041979
+UniRef50_UPI000368BA76: hypothetical protein, partial|unclassified	0.1998041979
+UniRef50_UPI00029B39E3: integrase catalytic subunit	0.1997908492
+UniRef50_UPI00029B39E3: integrase catalytic subunit|unclassified	0.1997908492
+UniRef50_B0C1T8: Undecaprenyl-diphosphatase	0.1997880180
+UniRef50_B0C1T8: Undecaprenyl-diphosphatase|unclassified	0.1997880180
+UniRef50_UPI00041D7A97: hypothetical protein	0.1997800564
+UniRef50_UPI00041D7A97: hypothetical protein|unclassified	0.1997800564
+UniRef50_UPI0002E8AE0D: hypothetical protein	0.1997798333
+UniRef50_UPI0002E8AE0D: hypothetical protein|unclassified	0.1997798333
+UniRef50_A5UKU3: Adhesin-like protein	0.1997674441
+UniRef50_A5UKU3: Adhesin-like protein|g__Methanobrevibacter.s__Methanobrevibacter_smithii	0.1821493625
+UniRef50_A5UKU3: Adhesin-like protein|unclassified	0.0176180816
+UniRef50_V4PMI1	0.1997648404
+UniRef50_V4PMI1|unclassified	0.1997648404
+UniRef50_UPI0003C1231C	0.1997524236
+UniRef50_UPI0003C1231C|unclassified	0.1997524236
+UniRef50_UPI0002D2C282: hypothetical protein	0.1997469607
+UniRef50_UPI0002D2C282: hypothetical protein|unclassified	0.1997469607
+UniRef50_UPI000225BAE3: 5''''-nucleotidase	0.1997098107
+UniRef50_UPI000225BAE3: 5''''-nucleotidase|unclassified	0.1997098107
+UniRef50_UPI00036C3B0D: hypothetical protein	0.1996743633
+UniRef50_UPI00036C3B0D: hypothetical protein|unclassified	0.1996743633
+UniRef50_Q2JTX6: Dihydroxy-acid dehydratase	0.1996568667
+UniRef50_Q2JTX6: Dihydroxy-acid dehydratase|unclassified	0.1996568667
+UniRef50_Q5WFU0	0.1996556745
+UniRef50_Q5WFU0|unclassified	0.1996556745
+UniRef50_UPI00047BCBC0: hypothetical protein	0.1996510679
+UniRef50_UPI00047BCBC0: hypothetical protein|unclassified	0.1996510679
+UniRef50_J8K691	0.1996400429
+UniRef50_J8K691|unclassified	0.1996400429
+UniRef50_UPI0003C7BDA2: fimbrial outer membrane usher protein SthC, partial	0.1996168567
+UniRef50_UPI0003C7BDA2: fimbrial outer membrane usher protein SthC, partial|unclassified	0.1996168567
+UniRef50_Q9VC54: CG6695, isoform A	0.1996117503
+UniRef50_Q9VC54: CG6695, isoform A|unclassified	0.1996117503
+UniRef50_UPI0003A7B7D7: hypothetical protein	0.1996054168
+UniRef50_UPI0003A7B7D7: hypothetical protein|unclassified	0.1996054168
+UniRef50_A4TVH3	0.1995922045
+UniRef50_A4TVH3|unclassified	0.1995922045
+UniRef50_B3DWT4: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.1995892825
+UniRef50_B3DWT4: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.1995892825
+UniRef50_UPI0002DCF1C5: hypothetical protein	0.1995862582
+UniRef50_UPI0002DCF1C5: hypothetical protein|unclassified	0.1995862582
+UniRef50_UPI00037F266C: hypothetical protein	0.1995855859
+UniRef50_UPI00037F266C: hypothetical protein|unclassified	0.1995855859
+UniRef50_UPI000362A55A: hypothetical protein, partial	0.1995806723
+UniRef50_UPI000362A55A: hypothetical protein, partial|unclassified	0.1995806723
+UniRef50_P39853: Capsular polysaccharide biosynthesis protein CapD	0.1995763296
+UniRef50_P39853: Capsular polysaccharide biosynthesis protein CapD|unclassified	0.1995763296
+UniRef50_B9IYZ4: Holliday junction ATP-dependent DNA helicase RuvB	0.1995743471
+UniRef50_B9IYZ4: Holliday junction ATP-dependent DNA helicase RuvB|unclassified	0.1995743471
+UniRef50_W8Y8N3: Genomic scaffold, Bacillus_thuringiensis_DB27_chromosome_scaffold04	0.1995655155
+UniRef50_W8Y8N3: Genomic scaffold, Bacillus_thuringiensis_DB27_chromosome_scaffold04|unclassified	0.1995655155
+UniRef50_N6UYT1	0.1995549626
+UniRef50_N6UYT1|unclassified	0.1995549626
+UniRef50_UPI00038241DA: hypothetical protein, partial	0.1995397110
+UniRef50_UPI00038241DA: hypothetical protein, partial|unclassified	0.1995397110
+UniRef50_UPI0004745CA2: stage V sporulation protein K	0.1995305269
+UniRef50_UPI0004745CA2: stage V sporulation protein K|unclassified	0.1995305269
+UniRef50_Q2G6Q8	0.1995166733
+UniRef50_Q2G6Q8|unclassified	0.1995166733
+UniRef50_UPI000379F4B7: hypothetical protein	0.1995162416
+UniRef50_UPI000379F4B7: hypothetical protein|unclassified	0.1995162416
+UniRef50_K8C9N4	0.1995123044
+UniRef50_K8C9N4|unclassified	0.1995123044
+UniRef50_H4UJG5	0.1995065336
+UniRef50_H4UJG5|unclassified	0.1995065336
+UniRef50_W5X2R3: Transcriptional regulator, AraC family	0.1995013483
+UniRef50_W5X2R3: Transcriptional regulator, AraC family|unclassified	0.1995013483
+UniRef50_UPI000361AD47: flagellar P-ring protein FlgI	0.1995010090
+UniRef50_UPI000361AD47: flagellar P-ring protein FlgI|unclassified	0.1995010090
+UniRef50_H1G375	0.1994926379
+UniRef50_H1G375|unclassified	0.1994926379
+UniRef50_Q2IUY3	0.1994922068
+UniRef50_Q2IUY3|unclassified	0.1994922068
+UniRef50_X5FKG8	0.1994796496
+UniRef50_X5FKG8|unclassified	0.1994796496
+UniRef50_P74587: Carbamoyl-phosphate synthase small chain	0.1994697213
+UniRef50_P74587: Carbamoyl-phosphate synthase small chain|unclassified	0.1994697213
+UniRef50_X3RV89: DNA utilization protein HofP (Fragment)	0.1994587666
+UniRef50_X3RV89: DNA utilization protein HofP (Fragment)|unclassified	0.1994587666
+UniRef50_S7VF17	0.1994583844
+UniRef50_S7VF17|unclassified	0.1994583844
+UniRef50_UPI00035E69D2: hypothetical protein	0.1994578767
+UniRef50_UPI00035E69D2: hypothetical protein|unclassified	0.1994578767
+UniRef50_A0A059LC79	0.1994527552
+UniRef50_A0A059LC79|unclassified	0.1994527552
+UniRef50_UPI0003783860: hypothetical protein	0.1994478370
+UniRef50_UPI0003783860: hypothetical protein|unclassified	0.1994478370
+UniRef50_UPI000441A65C: PREDICTED: peptidyl-prolyl cis-trans isomerase-like 3-like	0.1994336746
+UniRef50_UPI000441A65C: PREDICTED: peptidyl-prolyl cis-trans isomerase-like 3-like|unclassified	0.1994336746
+UniRef50_H4SSE2: Putative MFS family efflux protein	0.1994323372
+UniRef50_H4SSE2: Putative MFS family efflux protein|unclassified	0.1994323372
+UniRef50_Z2EFS0: MMPL family protein	0.1994291650
+UniRef50_Z2EFS0: MMPL family protein|unclassified	0.1994291650
+UniRef50_UPI0004713EE9: sugar ABC transporter permease	0.1994120960
+UniRef50_UPI0004713EE9: sugar ABC transporter permease|unclassified	0.1994120960
+UniRef50_D0CXH4: Amino acid regulated cytosolic protein	0.1993905863
+UniRef50_D0CXH4: Amino acid regulated cytosolic protein|unclassified	0.1993905863
+UniRef50_UPI00046D3F5C: PREDICTED: aldehyde dehydrogenase family 2 member B4, mitochondrial-like, partial	0.1993734800
+UniRef50_UPI00046D3F5C: PREDICTED: aldehyde dehydrogenase family 2 member B4, mitochondrial-like, partial|unclassified	0.1993734800
+UniRef50_F1Z1C1: TIGR01906 family protein	0.1993664102
+UniRef50_F1Z1C1: TIGR01906 family protein|unclassified	0.1993664102
+UniRef50_UPI000475C46A: hypothetical protein	0.1993603394
+UniRef50_UPI000475C46A: hypothetical protein|unclassified	0.1993603394
+UniRef50_B9TBU0	0.1993476096
+UniRef50_B9TBU0|unclassified	0.1993476096
+UniRef50_UPI0004734893: hypothetical protein, partial	0.1993436008
+UniRef50_UPI0004734893: hypothetical protein, partial|unclassified	0.1993436008
+UniRef50_UPI00037B5971: hypothetical protein	0.1993166315
+UniRef50_UPI00037B5971: hypothetical protein|unclassified	0.1993166315
+UniRef50_UPI000382B43E: hypothetical protein	0.1993163824
+UniRef50_UPI000382B43E: hypothetical protein|unclassified	0.1993163824
+UniRef50_Q11DH5: Holliday junction ATP-dependent DNA helicase RuvA	0.1993088389
+UniRef50_Q11DH5: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.1993088389
+UniRef50_W0H8T5: Lipoprotein	0.1993038797
+UniRef50_W0H8T5: Lipoprotein|unclassified	0.1993038797
+UniRef50_E8QXQ6: Magnesium protoporphyrin chelatase, putative	0.1993009519
+UniRef50_E8QXQ6: Magnesium protoporphyrin chelatase, putative|unclassified	0.1993009519
+UniRef50_R7RQU0: Membrane protein, putative	0.1992981983
+UniRef50_R7RQU0: Membrane protein, putative|unclassified	0.1992981983
+UniRef50_UPI00046D2C53: hypothetical protein	0.1992859586
+UniRef50_UPI00046D2C53: hypothetical protein|unclassified	0.1992859586
+UniRef50_UPI000474A653: guanine permease	0.1992782513
+UniRef50_UPI000474A653: guanine permease|unclassified	0.1992782513
+UniRef50_UPI00037B1D5D: hypothetical protein	0.1992579216
+UniRef50_UPI00037B1D5D: hypothetical protein|unclassified	0.1992579216
+UniRef50_A9MVN9	0.1992447678
+UniRef50_A9MVN9|unclassified	0.1992447678
+UniRef50_UPI0004711EDE: hypothetical protein, partial	0.1991985819
+UniRef50_UPI0004711EDE: hypothetical protein, partial|unclassified	0.1991985819
+UniRef50_C1AEG4: Hypothetical membrane protein	0.1991906834
+UniRef50_C1AEG4: Hypothetical membrane protein|unclassified	0.1991906834
+UniRef50_F2JXB8	0.1991550615
+UniRef50_F2JXB8|unclassified	0.1991550615
+UniRef50_A0A017HK54: Bmp family protein	0.1991470125
+UniRef50_A0A017HK54: Bmp family protein|unclassified	0.1991470125
+UniRef50_U9G1I6	0.1991445072
+UniRef50_U9G1I6|unclassified	0.1991445072
+UniRef50_UPI0002ADBB56	0.1991439323
+UniRef50_UPI0002ADBB56|unclassified	0.1991439323
+UniRef50_D0W128	0.1991432699
+UniRef50_D0W128|unclassified	0.1991432699
+UniRef50_J9CDN0	0.1991295485
+UniRef50_J9CDN0|unclassified	0.1991295485
+UniRef50_UPI000383FD7A: PREDICTED: collagen alpha-1(III) chain-like	0.1991239359
+UniRef50_UPI000383FD7A: PREDICTED: collagen alpha-1(III) chain-like|unclassified	0.1991239359
+UniRef50_R7S9T1	0.1991230060
+UniRef50_R7S9T1|unclassified	0.1991230060
+UniRef50_Q3A9L0: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.1991181576
+UniRef50_Q3A9L0: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.1991181576
+UniRef50_U5FUP4	0.1991164996
+UniRef50_U5FUP4|unclassified	0.1991164996
+UniRef50_I7LPB2: Late competence protein ComGB, access of DNA to ComEA	0.1991063936
+UniRef50_I7LPB2: Late competence protein ComGB, access of DNA to ComEA|unclassified	0.1991063936
+UniRef50_UPI00016A3ABA: iron-sulfur cluster binding protein, partial	0.1990599148
+UniRef50_UPI00016A3ABA: iron-sulfur cluster binding protein, partial|unclassified	0.1990599148
+UniRef50_G8WJX8	0.1990586218
+UniRef50_G8WJX8|unclassified	0.1990586218
+UniRef50_Q4JMP3: Predicted flagellum-specific muramidase	0.1990399180
+UniRef50_Q4JMP3: Predicted flagellum-specific muramidase|unclassified	0.1990399180
+UniRef50_Q98LB3: Dihydroxy-acid dehydratase 2	0.1990204798
+UniRef50_Q98LB3: Dihydroxy-acid dehydratase 2|unclassified	0.1990204798
+UniRef50_UPI000468CAC0: histidinol phosphatase	0.1990189183
+UniRef50_UPI000468CAC0: histidinol phosphatase|unclassified	0.1990189183
+UniRef50_U5L631: Membrane protein	0.1990030675
+UniRef50_U5L631: Membrane protein|unclassified	0.1990030675
+UniRef50_UPI00034A41B8: hypothetical protein	0.1990002918
+UniRef50_UPI00034A41B8: hypothetical protein|unclassified	0.1990002918
+UniRef50_Q0FH24	0.1989866755
+UniRef50_Q0FH24|unclassified	0.1989866755
+UniRef50_UPI0004195476: hypothetical protein	0.1989645393
+UniRef50_UPI0004195476: hypothetical protein|unclassified	0.1989645393
+UniRef50_UPI000346628F: hypothetical protein	0.1989571449
+UniRef50_UPI000346628F: hypothetical protein|unclassified	0.1989571449
+UniRef50_UPI00026579B9: PREDICTED: 3-oxoacyl-[acyl-carrier-protein] synthase 2-like, partial	0.1989491043
+UniRef50_UPI00026579B9: PREDICTED: 3-oxoacyl-[acyl-carrier-protein] synthase 2-like, partial|unclassified	0.1989491043
+UniRef50_UPI0004265248: hypothetical protein	0.1989458902
+UniRef50_UPI0004265248: hypothetical protein|unclassified	0.1989458902
+UniRef50_N0B321	0.1989315588
+UniRef50_N0B321|unclassified	0.1989315588
+UniRef50_UPI0001DECBA1: PREDICTED: forkhead box protein D2-like	0.1989247806
+UniRef50_UPI0001DECBA1: PREDICTED: forkhead box protein D2-like|unclassified	0.1989247806
+UniRef50_UPI0003719B0A: aconitate hydratase, partial	0.1989182250
+UniRef50_UPI0003719B0A: aconitate hydratase, partial|unclassified	0.1989182250
+UniRef50_H0YQH9	0.1989042066
+UniRef50_H0YQH9|unclassified	0.1989042066
+UniRef50_UPI000360BAB3: hypothetical protein	0.1988938308
+UniRef50_UPI000360BAB3: hypothetical protein|unclassified	0.1988938308
+UniRef50_UPI0004410872: NAD(P)-binding protein	0.1988931434
+UniRef50_UPI0004410872: NAD(P)-binding protein|unclassified	0.1988931434
+UniRef50_U8HH06	0.1988783119
+UniRef50_U8HH06|unclassified	0.1988783119
+UniRef50_P94364: Cytochrome bd ubiquinol oxidase subunit 1	0.1988781260
+UniRef50_P94364: Cytochrome bd ubiquinol oxidase subunit 1|unclassified	0.1988781260
+UniRef50_C2WGA5	0.1988721683
+UniRef50_C2WGA5|unclassified	0.1988721683
+UniRef50_UPI0004728F8A: hypothetical protein	0.1988645627
+UniRef50_UPI0004728F8A: hypothetical protein|unclassified	0.1988645627
+UniRef50_A0A013WI76: Pirin	0.1988595874
+UniRef50_A0A013WI76: Pirin|unclassified	0.1988595874
+UniRef50_UPI0004679508: hypothetical protein, partial	0.1988584611
+UniRef50_UPI0004679508: hypothetical protein, partial|unclassified	0.1988584611
+UniRef50_A1SSZ0	0.1988558015
+UniRef50_A1SSZ0|unclassified	0.1988558015
+UniRef50_UPI000359B177	0.1988529686
+UniRef50_UPI000359B177|unclassified	0.1988529686
+UniRef50_UPI0004636656: hypothetical protein	0.1988497351
+UniRef50_UPI0004636656: hypothetical protein|unclassified	0.1988497351
+UniRef50_UPI000364325F: hypothetical protein	0.1988342658
+UniRef50_UPI000364325F: hypothetical protein|unclassified	0.1988342658
+UniRef50_UPI00047E088E: NADPH-dependent FMN reductase	0.1988224145
+UniRef50_UPI00047E088E: NADPH-dependent FMN reductase|unclassified	0.1988224145
+UniRef50_UPI0002EC061F: hypothetical protein	0.1987954481
+UniRef50_UPI0002EC061F: hypothetical protein|unclassified	0.1987954481
+UniRef50_B5GRP8	0.1987883069
+UniRef50_B5GRP8|unclassified	0.1987883069
+UniRef50_Z5X4K7: Peptide chain release factor 3 (Fragment)	0.1987882925
+UniRef50_Z5X4K7: Peptide chain release factor 3 (Fragment)|unclassified	0.1987882925
+UniRef50_Q4TB48: Chromosome 13 SCAF7203, whole genome shotgun sequence. (Fragment)	0.1987867523
+UniRef50_Q4TB48: Chromosome 13 SCAF7203, whole genome shotgun sequence. (Fragment)|unclassified	0.1987867523
+UniRef50_UPI000005E426: hypothetical protein BU028	0.1987756101
+UniRef50_UPI000005E426: hypothetical protein BU028|unclassified	0.1987756101
+UniRef50_UPI00037F6832: hypothetical protein	0.1987715199
+UniRef50_UPI00037F6832: hypothetical protein|unclassified	0.1987715199
+UniRef50_UPI00047A6B84: PadR family transcriptional regulator	0.1987652090
+UniRef50_UPI00047A6B84: PadR family transcriptional regulator|unclassified	0.1987652090
+UniRef50_UPI00047E6831: membrane protein, partial	0.1987644224
+UniRef50_UPI00047E6831: membrane protein, partial|unclassified	0.1987644224
+UniRef50_UPI000464D4AE: hypothetical protein	0.1987230657
+UniRef50_UPI000464D4AE: hypothetical protein|unclassified	0.1987230657
+UniRef50_Q6YU37	0.1987143772
+UniRef50_Q6YU37|unclassified	0.1987143772
+UniRef50_R7QSL4: Stackhouse genomic scaffold, scaffold_63	0.1987117547
+UniRef50_R7QSL4: Stackhouse genomic scaffold, scaffold_63|unclassified	0.1987117547
+UniRef50_UPI00036710B5: hypothetical protein	0.1986925763
+UniRef50_UPI00036710B5: hypothetical protein|unclassified	0.1986925763
+UniRef50_UPI0003815113: hypothetical protein	0.1986886631
+UniRef50_UPI0003815113: hypothetical protein|unclassified	0.1986886631
+UniRef50_Q62MI4	0.1986851636
+UniRef50_Q62MI4|unclassified	0.1986851636
+UniRef50_UPI0002625BAA: peptide ABC transporter permease, partial	0.1986806927
+UniRef50_UPI0002625BAA: peptide ABC transporter permease, partial|unclassified	0.1986806927
+UniRef50_UPI0003623153: hypothetical protein	0.1986761729
+UniRef50_UPI0003623153: hypothetical protein|unclassified	0.1986761729
+UniRef50_I7DR67	0.1986760544
+UniRef50_I7DR67|unclassified	0.1986760544
+UniRef50_S7ZNG8	0.1986579753
+UniRef50_S7ZNG8|unclassified	0.1986579753
+UniRef50_UPI000262D1B8: amino acid ABC transporter, permease protein	0.1986536357
+UniRef50_UPI000262D1B8: amino acid ABC transporter, permease protein|unclassified	0.1986536357
+UniRef50_D9WG38	0.1986447978
+UniRef50_D9WG38|unclassified	0.1986447978
+UniRef50_X1HW00: Marine sediment metagenome DNA, contig: S03H2_S07416 (Fragment)	0.1986111409
+UniRef50_X1HW00: Marine sediment metagenome DNA, contig: S03H2_S07416 (Fragment)|unclassified	0.1986111409
+UniRef50_A3IQW1	0.1986088546
+UniRef50_A3IQW1|unclassified	0.1986088546
+UniRef50_UPI000465FD38: MULTISPECIES: branched-chain amino acid ABC transporter ATP-binding protein	0.1986000828
+UniRef50_UPI000465FD38: MULTISPECIES: branched-chain amino acid ABC transporter ATP-binding protein|unclassified	0.1986000828
+UniRef50_X4XRG8	0.1985802219
+UniRef50_X4XRG8|unclassified	0.1985802219
+UniRef50_F2FA59: Predicted redox protein, regulator of disulfide bond formation	0.1985534436
+UniRef50_F2FA59: Predicted redox protein, regulator of disulfide bond formation|unclassified	0.1985534436
+UniRef50_UPI0004726CDF: DNA polymerase III subunit alpha, partial	0.1985525754
+UniRef50_UPI0004726CDF: DNA polymerase III subunit alpha, partial|unclassified	0.1985525754
+UniRef50_S1NAS2	0.1985458366
+UniRef50_S1NAS2|unclassified	0.1985458366
+UniRef50_UPI000346A5C7: MULTISPECIES: hypothetical protein	0.1985442632
+UniRef50_UPI000346A5C7: MULTISPECIES: hypothetical protein|unclassified	0.1985442632
+UniRef50_UPI00036B1851: LysR family transcriptional regulator	0.1985375613
+UniRef50_UPI00036B1851: LysR family transcriptional regulator|unclassified	0.1985375613
+UniRef50_UPI0004778F57: hypothetical protein	0.1985249026
+UniRef50_UPI0004778F57: hypothetical protein|unclassified	0.1985249026
+UniRef50_E1VIN1	0.1985155047
+UniRef50_E1VIN1|unclassified	0.1985155047
+UniRef50_V4QME0: Folylpolyglutamate synthase (Fragment)	0.1985031777
+UniRef50_V4QME0: Folylpolyglutamate synthase (Fragment)|unclassified	0.1985031777
+UniRef50_UPI0002FE72BF: hypothetical protein	0.1984999905
+UniRef50_UPI0002FE72BF: hypothetical protein|unclassified	0.1984999905
+UniRef50_K8CQA5: Excinuclease ABC subunit C	0.1984946337
+UniRef50_K8CQA5: Excinuclease ABC subunit C|unclassified	0.1984946337
+UniRef50_B0SWB0: PE-PGRS family protein	0.1984879511
+UniRef50_B0SWB0: PE-PGRS family protein|unclassified	0.1984879511
+UniRef50_Y6NC96	0.1984776360
+UniRef50_Y6NC96|unclassified	0.1984776360
+UniRef50_X2LWE5: Colanic acid biosynthesis protein	0.1984753735
+UniRef50_X2LWE5: Colanic acid biosynthesis protein|unclassified	0.1984753735
+UniRef50_E5QWS7	0.1984622615
+UniRef50_E5QWS7|unclassified	0.1984622615
+UniRef50_S8CPY8: Phosphodiesterase	0.1984617503
+UniRef50_S8CPY8: Phosphodiesterase|unclassified	0.1984617503
+UniRef50_I1EWK7	0.1984561380
+UniRef50_I1EWK7|unclassified	0.1984561380
+UniRef50_UPI00040A6A6A: UDP pyrophosphate phosphatase	0.1984524163
+UniRef50_UPI00040A6A6A: UDP pyrophosphate phosphatase|unclassified	0.1984524163
+UniRef50_W8G6V2: Toxin Fic	0.1984505594
+UniRef50_W8G6V2: Toxin Fic|unclassified	0.1984505594
+UniRef50_Q9FCV3: Holo-[acyl-carrier-protein] synthase	0.1984428066
+UniRef50_Q9FCV3: Holo-[acyl-carrier-protein] synthase|unclassified	0.1984428066
+UniRef50_UPI00047CB9DF: 2-succinyl-6-hydroxy-2,4-cyclohexadiene-1-carboxylate synthase	0.1984422130
+UniRef50_UPI00047CB9DF: 2-succinyl-6-hydroxy-2,4-cyclohexadiene-1-carboxylate synthase|unclassified	0.1984422130
+UniRef50_G4RAK1	0.1984204536
+UniRef50_G4RAK1|unclassified	0.1984204536
+UniRef50_C0AUA2	0.1984000426
+UniRef50_C0AUA2|unclassified	0.1984000426
+UniRef50_UPI0003793A13: hypothetical protein	0.1983925311
+UniRef50_UPI0003793A13: hypothetical protein|unclassified	0.1983925311
+UniRef50_UPI000477BBDA: hypothetical protein	0.1983897947
+UniRef50_UPI000477BBDA: hypothetical protein|unclassified	0.1983897947
+UniRef50_A5VPS3	0.1983874613
+UniRef50_A5VPS3|unclassified	0.1983874613
+UniRef50_UPI00037C2750: hypothetical protein	0.1983851656
+UniRef50_UPI00037C2750: hypothetical protein|unclassified	0.1983851656
+UniRef50_UPI00039BDABD: hypothetical protein	0.1983715070
+UniRef50_UPI00039BDABD: hypothetical protein|unclassified	0.1983715070
+UniRef50_W1GWA4: GTP-binding protein TypA/BipA	0.1983601009
+UniRef50_W1GWA4: GTP-binding protein TypA/BipA|unclassified	0.1983601009
+UniRef50_A0A024J5X3: Similar to Saccharomyces cerevisiae YMR234W RNH1 Ribonuclease H1	0.1983524825
+UniRef50_A0A024J5X3: Similar to Saccharomyces cerevisiae YMR234W RNH1 Ribonuclease H1|unclassified	0.1983524825
+UniRef50_UPI00036C827F: hypothetical protein	0.1983494062
+UniRef50_UPI00036C827F: hypothetical protein|unclassified	0.1983494062
+UniRef50_UPI0003820A95: hypothetical protein	0.1983422916
+UniRef50_UPI0003820A95: hypothetical protein|unclassified	0.1983422916
+UniRef50_UPI000380CC39: hypothetical protein	0.1982931723
+UniRef50_UPI000380CC39: hypothetical protein|unclassified	0.1982931723
+UniRef50_X1E1V5: Marine sediment metagenome DNA, contig: S01H4_S22672 (Fragment)	0.1982818917
+UniRef50_X1E1V5: Marine sediment metagenome DNA, contig: S01H4_S22672 (Fragment)|unclassified	0.1982818917
+UniRef50_L0A7N0: Bacillithiol biosynthesis deacetylase BshB2	0.1982455884
+UniRef50_L0A7N0: Bacillithiol biosynthesis deacetylase BshB2|unclassified	0.1982455884
+UniRef50_UPI00037EE9B0: hypothetical protein	0.1982185967
+UniRef50_UPI00037EE9B0: hypothetical protein|unclassified	0.1982185967
+UniRef50_UPI0004746698: hypothetical protein, partial	0.1981840242
+UniRef50_UPI0004746698: hypothetical protein, partial|unclassified	0.1981840242
+UniRef50_UPI00036F706F: hypothetical protein	0.1981809156
+UniRef50_UPI00036F706F: hypothetical protein|unclassified	0.1981809156
+UniRef50_I2BRJ1: UPF0125 protein PflA506_4569	0.1981509514
+UniRef50_I2BRJ1: UPF0125 protein PflA506_4569|unclassified	0.1981509514
+UniRef50_UPI0001B4101D: thiamine biosynthesis protein ThiC	0.1981476792
+UniRef50_UPI0001B4101D: thiamine biosynthesis protein ThiC|unclassified	0.1981476792
+UniRef50_V4AJL6	0.1981464986
+UniRef50_V4AJL6|unclassified	0.1981464986
+UniRef50_P29444: Xylulose kinase	0.1981235637
+UniRef50_P29444: Xylulose kinase|unclassified	0.1981235637
+UniRef50_G4HQB7	0.1981213599
+UniRef50_G4HQB7|unclassified	0.1981213599
+UniRef50_UPI00041DA9A8: oxidoreductase	0.1981074269
+UniRef50_UPI00041DA9A8: oxidoreductase|unclassified	0.1981074269
+UniRef50_UPI0003B3C008: hypothetical protein	0.1980913545
+UniRef50_UPI0003B3C008: hypothetical protein|unclassified	0.1980913545
+UniRef50_UPI00029B0CD2: peroxiredoxin	0.1980881769
+UniRef50_UPI00029B0CD2: peroxiredoxin|unclassified	0.1980881769
+UniRef50_K1X949: SirA family protein (Fragment)	0.1980530210
+UniRef50_K1X949: SirA family protein (Fragment)|unclassified	0.1980530210
+UniRef50_W6J6L8	0.1980483996
+UniRef50_W6J6L8|unclassified	0.1980483996
+UniRef50_UPI00039C3A55: zinc metalloprotease	0.1980227650
+UniRef50_UPI00039C3A55: zinc metalloprotease|unclassified	0.1980227650
+UniRef50_E3A3D7	0.1980090144
+UniRef50_E3A3D7|unclassified	0.1980090144
+UniRef50_K0RLB7	0.1980063326
+UniRef50_K0RLB7|unclassified	0.1980063326
+UniRef50_UPI00037B922E: hypothetical protein	0.1979805386
+UniRef50_UPI00037B922E: hypothetical protein|unclassified	0.1979805386
+UniRef50_UPI0004697294: hypothetical protein	0.1979636195
+UniRef50_UPI0004697294: hypothetical protein|unclassified	0.1979636195
+UniRef50_B5PQF7: Molecular chaperone	0.1979485674
+UniRef50_B5PQF7: Molecular chaperone|unclassified	0.1979485674
+UniRef50_UPI000464C09A: GntR family transcriptional regulator, partial	0.1979342180
+UniRef50_UPI000464C09A: GntR family transcriptional regulator, partial|unclassified	0.1979342180
+UniRef50_I3XBF2	0.1979235178
+UniRef50_I3XBF2|unclassified	0.1979235178
+UniRef50_Q1NHL2: Transposase and inactivated derivative	0.1979224512
+UniRef50_Q1NHL2: Transposase and inactivated derivative|unclassified	0.1979224512
+UniRef50_UPI000472FB2F: MFS transporter, partial	0.1979178822
+UniRef50_UPI000472FB2F: MFS transporter, partial|unclassified	0.1979178822
+UniRef50_UPI00047681BE: alanine acetyltransferase	0.1979092596
+UniRef50_UPI00047681BE: alanine acetyltransferase|unclassified	0.1979092596
+UniRef50_UPI00035E7781: hypothetical protein, partial	0.1978734885
+UniRef50_UPI00035E7781: hypothetical protein, partial|unclassified	0.1978734885
+UniRef50_UPI00047276FD: hypothetical protein	0.1978679998
+UniRef50_UPI00047276FD: hypothetical protein|unclassified	0.1978679998
+UniRef50_UPI0002493F12: Esterase/lipase/thioesterase	0.1978646234
+UniRef50_UPI0002493F12: Esterase/lipase/thioesterase|unclassified	0.1978646234
+UniRef50_UPI0003B738D8: ABC transporter ATP-binding protein	0.1978537644
+UniRef50_UPI0003B738D8: ABC transporter ATP-binding protein|unclassified	0.1978537644
+UniRef50_P37725: Uroporphyrinogen-III C-methyltransferase	0.1978405125
+UniRef50_P37725: Uroporphyrinogen-III C-methyltransferase|unclassified	0.1978405125
+UniRef50_UPI0003C15AD5: PREDICTED: cystathionine gamma-synthase, chloroplastic-like	0.1978388236
+UniRef50_UPI0003C15AD5: PREDICTED: cystathionine gamma-synthase, chloroplastic-like|unclassified	0.1978388236
+UniRef50_UPI000225A97E: molecular chaperone DnaJ	0.1978257512
+UniRef50_UPI000225A97E: molecular chaperone DnaJ|unclassified	0.1978257512
+UniRef50_W9GPH4	0.1978231412
+UniRef50_W9GPH4|unclassified	0.1978231412
+UniRef50_A0A011RU24: Putative L-lactate dehydrogenase operon regulatory protein	0.1978012563
+UniRef50_A0A011RU24: Putative L-lactate dehydrogenase operon regulatory protein|unclassified	0.1978012563
+UniRef50_UPI0003B67DDA: hypothetical protein, partial	0.1977879780
+UniRef50_UPI0003B67DDA: hypothetical protein, partial|unclassified	0.1977879780
+UniRef50_UPI00046E7B83: hypothetical protein, partial	0.1977859761
+UniRef50_UPI00046E7B83: hypothetical protein, partial|unclassified	0.1977859761
+UniRef50_N0BKI7	0.1977738402
+UniRef50_N0BKI7|unclassified	0.1977738402
+UniRef50_UPI0003B4922D: aliphatic sulfonate ABC transporter ATP-binding protein	0.1977580211
+UniRef50_UPI0003B4922D: aliphatic sulfonate ABC transporter ATP-binding protein|unclassified	0.1977580211
+UniRef50_W1S615: Transposase	0.1977577031
+UniRef50_W1S615: Transposase|unclassified	0.1977577031
+UniRef50_UPI0004758BEC: Na+/Ca+ antiporter, CaCA family protein	0.1977463070
+UniRef50_UPI0004758BEC: Na+/Ca+ antiporter, CaCA family protein|unclassified	0.1977463070
+UniRef50_W7Z054	0.1977396690
+UniRef50_W7Z054|unclassified	0.1977396690
+UniRef50_UPI000467F2DE: general secretion pathway protein GspI	0.1977216704
+UniRef50_UPI000467F2DE: general secretion pathway protein GspI|unclassified	0.1977216704
+UniRef50_A0A026U713	0.1977097794
+UniRef50_A0A026U713|unclassified	0.1977097794
+UniRef50_Q9CE78: Histidine--tRNA ligase	0.1976951406
+UniRef50_Q9CE78: Histidine--tRNA ligase|unclassified	0.1976951406
+UniRef50_UPI0003FC5BE0: hypothetical protein	0.1976922093
+UniRef50_UPI0003FC5BE0: hypothetical protein|unclassified	0.1976922093
+UniRef50_UPI00037282E9: hypothetical protein	0.1976848134
+UniRef50_UPI00037282E9: hypothetical protein|unclassified	0.1976848134
+UniRef50_UPI0001F85CA4: biotin synthase-like protein	0.1976829274
+UniRef50_UPI0001F85CA4: biotin synthase-like protein|unclassified	0.1976829274
+UniRef50_UPI000376989D: hypothetical protein	0.1976662572
+UniRef50_UPI000376989D: hypothetical protein|unclassified	0.1976662572
+UniRef50_UPI000474DA0A: signal peptidase IB	0.1976523025
+UniRef50_UPI000474DA0A: signal peptidase IB|unclassified	0.1976523025
+UniRef50_K0RFL8	0.1976375157
+UniRef50_K0RFL8|unclassified	0.1976375157
+UniRef50_D6S5Q4	0.1976303121
+UniRef50_D6S5Q4|unclassified	0.1976303121
+UniRef50_UPI00046F4D7C: myo-inositol catabolism protein LolB	0.1976138802
+UniRef50_UPI00046F4D7C: myo-inositol catabolism protein LolB|unclassified	0.1976138802
+UniRef50_UPI0003767EB0: DNA glycosylase	0.1976118452
+UniRef50_UPI0003767EB0: DNA glycosylase|unclassified	0.1976118452
+UniRef50_UPI00046FB698: hypothetical protein, partial	0.1976072620
+UniRef50_UPI00046FB698: hypothetical protein, partial|unclassified	0.1976072620
+UniRef50_W1E1H7: Ribose ABC transport system, periplasmic ribose-binding protein RbsB (TC 3.A.1.2.1)	0.1976004602
+UniRef50_W1E1H7: Ribose ABC transport system, periplasmic ribose-binding protein RbsB (TC 3.A.1.2.1)|unclassified	0.1976004602
+UniRef50_C5E391: KLTH0H11330p	0.1975954964
+UniRef50_C5E391: KLTH0H11330p|unclassified	0.1975954964
+UniRef50_N3N816	0.1975913317
+UniRef50_N3N816|unclassified	0.1975913317
+UniRef50_V4H1U6	0.1975594676
+UniRef50_V4H1U6|unclassified	0.1975594676
+UniRef50_UPI0003A234CC: hypothetical protein	0.1975450050
+UniRef50_UPI0003A234CC: hypothetical protein|unclassified	0.1975450050
+UniRef50_H3UC52: Nitrate reductase delta subunit	0.1975422607
+UniRef50_H3UC52: Nitrate reductase delta subunit|unclassified	0.1975422607
+UniRef50_UPI0003608B98: hypothetical protein	0.1975279858
+UniRef50_UPI0003608B98: hypothetical protein|unclassified	0.1975279858
+UniRef50_D5DTH7: Lincomycin resistance protein PUTATIVE	0.1975165882
+UniRef50_D5DTH7: Lincomycin resistance protein PUTATIVE|unclassified	0.1975165882
+UniRef50_M4X3B3	0.1975111359
+UniRef50_M4X3B3|unclassified	0.1975111359
+UniRef50_T0ZK78	0.1975058726
+UniRef50_T0ZK78|unclassified	0.1975058726
+UniRef50_J3M427	0.1975051032
+UniRef50_J3M427|unclassified	0.1975051032
+UniRef50_UPI00035F619C: hypothetical protein	0.1975016481
+UniRef50_UPI00035F619C: hypothetical protein|unclassified	0.1975016481
+UniRef50_UPI00032B0880: PREDICTED: LOW QUALITY PROTEIN: baculoviral IAP repeat containing 7	0.1975005424
+UniRef50_UPI00032B0880: PREDICTED: LOW QUALITY PROTEIN: baculoviral IAP repeat containing 7|unclassified	0.1975005424
+UniRef50_UPI0003B69938: type 11 methyltransferase	0.1974889552
+UniRef50_UPI0003B69938: type 11 methyltransferase|unclassified	0.1974889552
+UniRef50_K4KRI1	0.1974709870
+UniRef50_K4KRI1|unclassified	0.1974709870
+UniRef50_B6BAZ3	0.1974580332
+UniRef50_B6BAZ3|unclassified	0.1974580332
+UniRef50_W6KME0: Putative polyhydroxyalkanoate synthesis repressor PhaR-like protein	0.1974455496
+UniRef50_W6KME0: Putative polyhydroxyalkanoate synthesis repressor PhaR-like protein|unclassified	0.1974455496
+UniRef50_Q1Q2Q1	0.1974323170
+UniRef50_Q1Q2Q1|unclassified	0.1974323170
+UniRef50_Q6D5V8	0.1974250152
+UniRef50_Q6D5V8|unclassified	0.1974250152
+UniRef50_UPI0001D2F064: adenosylcobinamide-phosphate synthase	0.1974199660
+UniRef50_UPI0001D2F064: adenosylcobinamide-phosphate synthase|unclassified	0.1974199660
+UniRef50_UPI0003B781A0: DNA repair protein RecO	0.1974167816
+UniRef50_UPI0003B781A0: DNA repair protein RecO|unclassified	0.1974167816
+UniRef50_UPI0003B51DAD: aconitate hydratase	0.1974060957
+UniRef50_UPI0003B51DAD: aconitate hydratase|unclassified	0.1974060957
+UniRef50_UPI000475F705: hypothetical protein	0.1973915249
+UniRef50_UPI000475F705: hypothetical protein|unclassified	0.1973915249
+UniRef50_UPI00039E00F5: DNA adenine methylase	0.1973914679
+UniRef50_UPI00039E00F5: DNA adenine methylase|unclassified	0.1973914679
+UniRef50_UPI000475028A: hypothetical protein, partial	0.1973824927
+UniRef50_UPI000475028A: hypothetical protein, partial|unclassified	0.1973824927
+UniRef50_UPI0003AD0B10: hypothetical protein	0.1973769803
+UniRef50_UPI0003AD0B10: hypothetical protein|unclassified	0.1973769803
+UniRef50_H1RZB0	0.1973606230
+UniRef50_H1RZB0|unclassified	0.1973606230
+UniRef50_M4X9F4	0.1973435401
+UniRef50_M4X9F4|unclassified	0.1973435401
+UniRef50_F0MZQ2	0.1973404362
+UniRef50_F0MZQ2|unclassified	0.1973404362
+UniRef50_UPI0002DD18E5: hypothetical protein	0.1973343338
+UniRef50_UPI0002DD18E5: hypothetical protein|unclassified	0.1973343338
+UniRef50_V4I3B0	0.1973326840
+UniRef50_V4I3B0|unclassified	0.1973326840
+UniRef50_Q9SAJ6: Glyceraldehyde-3-phosphate dehydrogenase GAPCP1, chloroplastic	0.1973215877
+UniRef50_Q9SAJ6: Glyceraldehyde-3-phosphate dehydrogenase GAPCP1, chloroplastic|unclassified	0.1973215877
+UniRef50_Q1QGJ1: Transposase IS66	0.1973138930
+UniRef50_Q1QGJ1: Transposase IS66|unclassified	0.1973138930
+UniRef50_W5X6E3: Dihydrodipicolinate synthetase	0.1973077364
+UniRef50_W5X6E3: Dihydrodipicolinate synthetase|unclassified	0.1973077364
+UniRef50_X0VZ98: Marine sediment metagenome DNA, contig: S01H1_S21912 (Fragment)	0.1972805221
+UniRef50_X0VZ98: Marine sediment metagenome DNA, contig: S01H1_S21912 (Fragment)|unclassified	0.1972805221
+UniRef50_UPI00047BCCCB: hypothetical protein	0.1972687213
+UniRef50_UPI00047BCCCB: hypothetical protein|unclassified	0.1972687213
+UniRef50_UPI00040D96DE: biotin synthase	0.1972579264
+UniRef50_UPI00040D96DE: biotin synthase|unclassified	0.1972579264
+UniRef50_UPI00034AAAAB: hypothetical protein	0.1972341106
+UniRef50_UPI00034AAAAB: hypothetical protein|unclassified	0.1972341106
+UniRef50_B9TFD6	0.1972190117
+UniRef50_B9TFD6|unclassified	0.1972190117
+UniRef50_A6V067	0.1972146429
+UniRef50_A6V067|unclassified	0.1972146429
+UniRef50_U5T4M4	0.1971978895
+UniRef50_U5T4M4|unclassified	0.1971978895
+UniRef50_UPI0003C17F6B: PREDICTED: zinc finger CCCH domain-containing protein 4, partial	0.1971958585
+UniRef50_UPI0003C17F6B: PREDICTED: zinc finger CCCH domain-containing protein 4, partial|unclassified	0.1971958585
+UniRef50_H2A564: Rhodanese-like domain protein	0.1971943828
+UniRef50_H2A564: Rhodanese-like domain protein|unclassified	0.1971943828
+UniRef50_UPI0002260B73: Membrane dipeptidase, partial	0.1971755583
+UniRef50_UPI0002260B73: Membrane dipeptidase, partial|unclassified	0.1971755583
+UniRef50_E1VBI4: Lipopeptide LppL	0.1971723094
+UniRef50_E1VBI4: Lipopeptide LppL|unclassified	0.1971723094
+UniRef50_M1FC64	0.1971667993
+UniRef50_M1FC64|unclassified	0.1971667993
+UniRef50_X1CV41: Marine sediment metagenome DNA, contig: S01H4_S00592 (Fragment)	0.1971494498
+UniRef50_X1CV41: Marine sediment metagenome DNA, contig: S01H4_S00592 (Fragment)|unclassified	0.1971494498
+UniRef50_UPI000374D277: hypothetical protein	0.1971426274
+UniRef50_UPI000374D277: hypothetical protein|unclassified	0.1971426274
+UniRef50_W6JDT4: Flagellar basal body rod modification protein FlgD	0.1971286233
+UniRef50_W6JDT4: Flagellar basal body rod modification protein FlgD|unclassified	0.1971286233
+UniRef50_R7AI62	0.1971184752
+UniRef50_R7AI62|unclassified	0.1971184752
+UniRef50_F2A477	0.1971146960
+UniRef50_F2A477|unclassified	0.1971146960
+UniRef50_F7ZDW7: Putative transposase, IS66	0.1970996007
+UniRef50_F7ZDW7: Putative transposase, IS66|unclassified	0.1970996007
+UniRef50_UPI00037DC4C2: hypothetical protein	0.1970964746
+UniRef50_UPI00037DC4C2: hypothetical protein|unclassified	0.1970964746
+UniRef50_UPI00046D564F: hypothetical protein	0.1970883785
+UniRef50_UPI00046D564F: hypothetical protein|unclassified	0.1970883785
+UniRef50_UPI00037FFDFC: hypothetical protein	0.1970837703
+UniRef50_UPI00037FFDFC: hypothetical protein|unclassified	0.1970837703
+UniRef50_K0TJC8	0.1970664966
+UniRef50_K0TJC8|unclassified	0.1970664966
+UniRef50_UPI000407E307: transcription accessory protein	0.1970403020
+UniRef50_UPI000407E307: transcription accessory protein|unclassified	0.1970403020
+UniRef50_B9NXD5	0.1970199295
+UniRef50_B9NXD5|unclassified	0.1970199295
+UniRef50_K8W5G9	0.1970104479
+UniRef50_K8W5G9|unclassified	0.1970104479
+UniRef50_UPI00032895A1: PREDICTED: threonine synthase-like 2 isoform 1	0.1970040486
+UniRef50_UPI00032895A1: PREDICTED: threonine synthase-like 2 isoform 1|unclassified	0.1970040486
+UniRef50_J7LD22	0.1969807450
+UniRef50_J7LD22|unclassified	0.1969807450
+UniRef50_UPI000374B566: hypothetical protein, partial	0.1969715165
+UniRef50_UPI000374B566: hypothetical protein, partial|unclassified	0.1969715165
+UniRef50_UPI00016C41FC: hypothetical protein	0.1969583151
+UniRef50_UPI00016C41FC: hypothetical protein|unclassified	0.1969583151
+UniRef50_J2YGZ8: FAD dependent oxidoreductase	0.1969519128
+UniRef50_J2YGZ8: FAD dependent oxidoreductase|unclassified	0.1969519128
+UniRef50_Q1II76: Bifunctional protein FolD	0.1969425575
+UniRef50_Q1II76: Bifunctional protein FolD|unclassified	0.1969425575
+UniRef50_X6C2K2: Head portal protein, HK97 family	0.1969346988
+UniRef50_X6C2K2: Head portal protein, HK97 family|unclassified	0.1969346988
+UniRef50_UPI00036C0008: hypothetical protein	0.1969246752
+UniRef50_UPI00036C0008: hypothetical protein|unclassified	0.1969246752
+UniRef50_UPI0002558D93: GntR family transcriptional regulator	0.1969179238
+UniRef50_UPI0002558D93: GntR family transcriptional regulator|unclassified	0.1969179238
+UniRef50_H3ZRV0	0.1969049158
+UniRef50_H3ZRV0|unclassified	0.1969049158
+UniRef50_R5RVQ5	0.1968928568
+UniRef50_R5RVQ5|unclassified	0.1968928568
+UniRef50_UPI00037D2969: hypothetical protein	0.1968885616
+UniRef50_UPI00037D2969: hypothetical protein|unclassified	0.1968885616
+UniRef50_W4TMV5	0.1968650283
+UniRef50_W4TMV5|unclassified	0.1968650283
+UniRef50_UPI0002739394: PREDICTED: DNA-directed RNA polymerase I subunit RPA1	0.1968503937
+UniRef50_UPI0002739394: PREDICTED: DNA-directed RNA polymerase I subunit RPA1|unclassified	0.1968503937
+UniRef50_B1YF32: Holo-[acyl-carrier-protein] synthase	0.1968412460
+UniRef50_B1YF32: Holo-[acyl-carrier-protein] synthase|unclassified	0.1968412460
+UniRef50_UPI00037AB0E6: hypothetical protein, partial	0.1968254045
+UniRef50_UPI00037AB0E6: hypothetical protein, partial|unclassified	0.1968254045
+UniRef50_Q8KG38: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	0.1968224417
+UniRef50_Q8KG38: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|unclassified	0.1968224417
+UniRef50_S6RTC6: Type IV pilus biogenesis protein PilN	0.1967909257
+UniRef50_S6RTC6: Type IV pilus biogenesis protein PilN|unclassified	0.1967909257
+UniRef50_I4BP36	0.1967908683
+UniRef50_I4BP36|unclassified	0.1967908683
+UniRef50_UPI00036EDC4E: hypothetical protein	0.1967558312
+UniRef50_UPI00036EDC4E: hypothetical protein|unclassified	0.1967558312
+UniRef50_B6HMK1: Pc21g21870 protein	0.1967381698
+UniRef50_B6HMK1: Pc21g21870 protein|unclassified	0.1967381698
+UniRef50_UPI000287AEAE: 1-deoxy-D-xylulose 5-phosphate reductoisomerase	0.1967302946
+UniRef50_UPI000287AEAE: 1-deoxy-D-xylulose 5-phosphate reductoisomerase|unclassified	0.1967302946
+UniRef50_B6AST4: OstA family protein	0.1967156065
+UniRef50_B6AST4: OstA family protein|unclassified	0.1967156065
+UniRef50_Q9KLJ6: Anaerobic glycerol-3-phosphate dehydrogenase subunit B	0.1967042124
+UniRef50_Q9KLJ6: Anaerobic glycerol-3-phosphate dehydrogenase subunit B|unclassified	0.1967042124
+UniRef50_UPI000378DFFE: DNA glycosylase	0.1966941926
+UniRef50_UPI000378DFFE: DNA glycosylase|unclassified	0.1966941926
+UniRef50_U1FWN3: Putative glucoamylase S1/S2	0.1966736353
+UniRef50_U1FWN3: Putative glucoamylase S1/S2|unclassified	0.1966736353
+UniRef50_W4HIV6	0.1966719496
+UniRef50_W4HIV6|unclassified	0.1966719496
+UniRef50_UPI000417151E: MULTISPECIES: carbon monoxide dehydrogenase	0.1966443142
+UniRef50_UPI000417151E: MULTISPECIES: carbon monoxide dehydrogenase|unclassified	0.1966443142
+UniRef50_UPI00031A7E0D: hypothetical protein	0.1966402793
+UniRef50_UPI00031A7E0D: hypothetical protein|unclassified	0.1966402793
+UniRef50_UPI00047B5729: hypothetical protein	0.1966370200
+UniRef50_UPI00047B5729: hypothetical protein|unclassified	0.1966370200
+UniRef50_J7TWG6	0.1966322962
+UniRef50_J7TWG6|unclassified	0.1966322962
+UniRef50_F3R6D9: Conserved domain protein	0.1966187501
+UniRef50_F3R6D9: Conserved domain protein|unclassified	0.1966187501
+UniRef50_UPI0004705425: hypothetical protein	0.1966182886
+UniRef50_UPI0004705425: hypothetical protein|unclassified	0.1966182886
+UniRef50_UPI0002F8A47D: hypothetical protein	0.1966057086
+UniRef50_UPI0002F8A47D: hypothetical protein|unclassified	0.1966057086
+UniRef50_V8A643	0.1965989410
+UniRef50_V8A643|unclassified	0.1965989410
+UniRef50_Q5NLR6: DNA-directed RNA polymerase subunit omega	0.1965857205
+UniRef50_Q5NLR6: DNA-directed RNA polymerase subunit omega|unclassified	0.1965857205
+UniRef50_A9UZI9: Predicted protein	0.1965388180
+UniRef50_A9UZI9: Predicted protein|unclassified	0.1965388180
+UniRef50_UPI00016A3766: tRNA pseudouridine synthase A, partial	0.1965373378
+UniRef50_UPI00016A3766: tRNA pseudouridine synthase A, partial|unclassified	0.1965373378
+UniRef50_UPI0003B544C4: TetR family transcriptional regulator	0.1965317410
+UniRef50_UPI0003B544C4: TetR family transcriptional regulator|unclassified	0.1965317410
+UniRef50_P58853: Histidine biosynthesis bifunctional protein HisIE	0.1965256744
+UniRef50_P58853: Histidine biosynthesis bifunctional protein HisIE|unclassified	0.1965256744
+UniRef50_U6KQN2	0.1965141818
+UniRef50_U6KQN2|unclassified	0.1965141818
+UniRef50_A0A024KJN3: FIG007785: exported protein	0.1965053402
+UniRef50_A0A024KJN3: FIG007785: exported protein|unclassified	0.1965053402
+UniRef50_UPI0003810A70: hypothetical protein	0.1964939528
+UniRef50_UPI0003810A70: hypothetical protein|unclassified	0.1964939528
+UniRef50_UPI000359FF0F: PREDICTED: 11-beta-hydroxysteroid dehydrogenase-like 4A-like	0.1964931234
+UniRef50_UPI000359FF0F: PREDICTED: 11-beta-hydroxysteroid dehydrogenase-like 4A-like|unclassified	0.1964931234
+UniRef50_A0A020GAK3	0.1964754363
+UniRef50_A0A020GAK3|unclassified	0.1964754363
+UniRef50_V6PMY0	0.1964717100
+UniRef50_V6PMY0|unclassified	0.1964717100
+UniRef50_UPI00030CEF5C: hypothetical protein	0.1964550136
+UniRef50_UPI00030CEF5C: hypothetical protein|unclassified	0.1964550136
+UniRef50_B2URB8: Ketol-acid reductoisomerase	0.1964494875
+UniRef50_B2URB8: Ketol-acid reductoisomerase|unclassified	0.1964494875
+UniRef50_S4YVS4	0.1964480951
+UniRef50_S4YVS4|unclassified	0.1964480951
+UniRef50_UPI0003B3394D: aminotransferase class I/II	0.1964332184
+UniRef50_UPI0003B3394D: aminotransferase class I/II|unclassified	0.1964332184
+UniRef50_D2BTU9	0.1964321038
+UniRef50_D2BTU9|unclassified	0.1964321038
+UniRef50_W4SG00	0.1964261189
+UniRef50_W4SG00|unclassified	0.1964261189
+UniRef50_R1CDN5	0.1964225693
+UniRef50_R1CDN5|unclassified	0.1964225693
+UniRef50_I7JVN9	0.1964102683
+UniRef50_I7JVN9|unclassified	0.1964102683
+UniRef50_UPI0004676CBF: biotin synthase	0.1964004549
+UniRef50_UPI0004676CBF: biotin synthase|unclassified	0.1964004549
+UniRef50_K2N5M6	0.1963961968
+UniRef50_K2N5M6|unclassified	0.1963961968
+UniRef50_A4VNP3: Ribosomal RNA large subunit methyltransferase E	0.1963901597
+UniRef50_A4VNP3: Ribosomal RNA large subunit methyltransferase E|unclassified	0.1963901597
+UniRef50_L7HXW0	0.1963780358
+UniRef50_L7HXW0|unclassified	0.1963780358
+UniRef50_UPI00047C2684: heme ABC transporter ATP-binding protein, partial	0.1963776941
+UniRef50_UPI00047C2684: heme ABC transporter ATP-binding protein, partial|unclassified	0.1963776941
+UniRef50_UPI00035E0585: hypothetical protein	0.1963685683
+UniRef50_UPI00035E0585: hypothetical protein|unclassified	0.1963685683
+UniRef50_UPI00032913FE: PREDICTED: collagen alpha-1(I) chain-like, partial	0.1963615648
+UniRef50_UPI00032913FE: PREDICTED: collagen alpha-1(I) chain-like, partial|unclassified	0.1963615648
+UniRef50_UPI0003649764: hypothetical protein	0.1963596027
+UniRef50_UPI0003649764: hypothetical protein|unclassified	0.1963596027
+UniRef50_U4V3Q8	0.1963579883
+UniRef50_U4V3Q8|unclassified	0.1963579883
+UniRef50_UPI0003B58FA6: carboxymuconolactone decarboxylase	0.1963479029
+UniRef50_UPI0003B58FA6: carboxymuconolactone decarboxylase|unclassified	0.1963479029
+UniRef50_Q9Y8B5: Mitochondrial-processing peptidase subunit beta	0.1963431290
+UniRef50_Q9Y8B5: Mitochondrial-processing peptidase subunit beta|unclassified	0.1963431290
+UniRef50_W4QGL3: Negative regulator of genetic competence MecA	0.1963326520
+UniRef50_W4QGL3: Negative regulator of genetic competence MecA|unclassified	0.1963326520
+UniRef50_A1TM49	0.1963283305
+UniRef50_A1TM49|unclassified	0.1963283305
+UniRef50_A0A011PV93: NADH-quinone oxidoreductase subunit M	0.1963259740
+UniRef50_A0A011PV93: NADH-quinone oxidoreductase subunit M|unclassified	0.1963259740
+UniRef50_J2P2T7	0.1963190546
+UniRef50_J2P2T7|unclassified	0.1963190546
+UniRef50_S4XQ06	0.1963102771
+UniRef50_S4XQ06|unclassified	0.1963102771
+UniRef50_UPI000319AFFD: hypothetical protein	0.1962880457
+UniRef50_UPI000319AFFD: hypothetical protein|unclassified	0.1962880457
+UniRef50_S9XSX4	0.1962839483
+UniRef50_S9XSX4|unclassified	0.1962839483
+UniRef50_Q7NWX3: Sulfate/thiosulfate import ATP-binding protein CysA 2	0.1962711424
+UniRef50_Q7NWX3: Sulfate/thiosulfate import ATP-binding protein CysA 2|unclassified	0.1962711424
+UniRef50_A4TL90	0.1962704242
+UniRef50_A4TL90|unclassified	0.1962704242
+UniRef50_P50096: Inosine-5'-monophosphate dehydrogenase 1	0.1962571482
+UniRef50_P50096: Inosine-5'-monophosphate dehydrogenase 1|unclassified	0.1962571482
+UniRef50_UPI00038177C4: hypothetical protein	0.1962560021
+UniRef50_UPI00038177C4: hypothetical protein|unclassified	0.1962560021
+UniRef50_G6CYT2: Arrestin domain containing 4	0.1962137372
+UniRef50_G6CYT2: Arrestin domain containing 4|unclassified	0.1962137372
+UniRef50_C5DAG0: Extracellular solute-binding protein family 1	0.1962094341
+UniRef50_C5DAG0: Extracellular solute-binding protein family 1|unclassified	0.1962094341
+UniRef50_UPI000378CCD3: hypothetical protein	0.1962085313
+UniRef50_UPI000378CCD3: hypothetical protein|unclassified	0.1962085313
+UniRef50_UPI0004785B73: hypothetical protein	0.1962035136
+UniRef50_UPI0004785B73: hypothetical protein|unclassified	0.1962035136
+UniRef50_UPI000410E849: hypothetical protein	0.1962035100
+UniRef50_UPI000410E849: hypothetical protein|unclassified	0.1962035100
+UniRef50_S2YM44	0.1962029815
+UniRef50_S2YM44|unclassified	0.1962029815
+UniRef50_F4DM38: Iron compound ABC transporter, periplasmic iron compound-binding protein	0.1961975828
+UniRef50_F4DM38: Iron compound ABC transporter, periplasmic iron compound-binding protein|unclassified	0.1961975828
+UniRef50_J3NCD0	0.1961897989
+UniRef50_J3NCD0|unclassified	0.1961897989
+UniRef50_UPI00036D316E: hypothetical protein	0.1961466267
+UniRef50_UPI00036D316E: hypothetical protein|unclassified	0.1961466267
+UniRef50_UPI00035D0C8E: hypothetical protein, partial	0.1961429071
+UniRef50_UPI00035D0C8E: hypothetical protein, partial|unclassified	0.1961429071
+UniRef50_B3DQ29: Elongation factor P	0.1961218697
+UniRef50_B3DQ29: Elongation factor P|unclassified	0.1961218697
+UniRef50_J9NZ66	0.1961171790
+UniRef50_J9NZ66|unclassified	0.1961171790
+UniRef50_P38422: D-alanyl-D-alanine carboxypeptidase DacF	0.1961095023
+UniRef50_P38422: D-alanyl-D-alanine carboxypeptidase DacF|unclassified	0.1961095023
+UniRef50_Q2CIP2	0.1960928357
+UniRef50_Q2CIP2|unclassified	0.1960928357
+UniRef50_UPI0003793A77: hypothetical protein	0.1960881132
+UniRef50_UPI0003793A77: hypothetical protein|unclassified	0.1960881132
+UniRef50_G5ML77: Long-chain fatty acid transport protein	0.1960863035
+UniRef50_G5ML77: Long-chain fatty acid transport protein|unclassified	0.1960863035
+UniRef50_UPI00036FA0E6: hypothetical protein	0.1960848433
+UniRef50_UPI00036FA0E6: hypothetical protein|unclassified	0.1960848433
+UniRef50_UPI00044496EC: mannitol-1-phosphate dehydrogenase M1PDH1	0.1960682469
+UniRef50_UPI00044496EC: mannitol-1-phosphate dehydrogenase M1PDH1|unclassified	0.1960682469
+UniRef50_V4I3S7: Integral membrane protein	0.1960526560
+UniRef50_V4I3S7: Integral membrane protein|unclassified	0.1960526560
+UniRef50_UPI0000166DA8: COG0583: Transcriptional regulator	0.1960473474
+UniRef50_UPI0000166DA8: COG0583: Transcriptional regulator|unclassified	0.1960473474
+UniRef50_E7S4L9	0.1960267339
+UniRef50_E7S4L9|unclassified	0.1960267339
+UniRef50_S5K798: Ethanolamine utilization protein EutJ	0.1960249227
+UniRef50_S5K798: Ethanolamine utilization protein EutJ|unclassified	0.1960249227
+UniRef50_UPI000406B82B: 2-dehydro-3-deoxygluconokinase	0.1960075835
+UniRef50_UPI000406B82B: 2-dehydro-3-deoxygluconokinase|unclassified	0.1960075835
+UniRef50_M5J0D6: LysR family transcriptional regulator	0.1960017659
+UniRef50_M5J0D6: LysR family transcriptional regulator|unclassified	0.1960017659
+UniRef50_C4KCX7: Gamma-aminobutyric acid A receptor, epsilon-like protein	0.1959934958
+UniRef50_C4KCX7: Gamma-aminobutyric acid A receptor, epsilon-like protein|unclassified	0.1959934958
+UniRef50_S9WAT8	0.1959730936
+UniRef50_S9WAT8|unclassified	0.1959730936
+UniRef50_D8BG56	0.1959680049
+UniRef50_D8BG56|unclassified	0.1959680049
+UniRef50_Q8U377: Diphthine synthase	0.1959608882
+UniRef50_Q8U377: Diphthine synthase|unclassified	0.1959608882
+UniRef50_X3PZA5: AraC family transcriptional regulator (Fragment)	0.1959581728
+UniRef50_X3PZA5: AraC family transcriptional regulator (Fragment)|unclassified	0.1959581728
+UniRef50_A1SF33: Pantothenate kinase	0.1959264099
+UniRef50_A1SF33: Pantothenate kinase|unclassified	0.1959264099
+UniRef50_N2J0R4	0.1959139029
+UniRef50_N2J0R4|unclassified	0.1959139029
+UniRef50_Q5WV69	0.1959014215
+UniRef50_Q5WV69|unclassified	0.1959014215
+UniRef50_A3U7W4	0.1958871003
+UniRef50_A3U7W4|unclassified	0.1958871003
+UniRef50_A3MIQ3: Ribosomal RNA large subunit methyltransferase E	0.1958846038
+UniRef50_A3MIQ3: Ribosomal RNA large subunit methyltransferase E|unclassified	0.1958846038
+UniRef50_B4F0Y2: UPF0231 protein PMI2039	0.1958721736
+UniRef50_B4F0Y2: UPF0231 protein PMI2039|unclassified	0.1958721736
+UniRef50_UPI00047D45C1: cysteine desulfurase	0.1958560288
+UniRef50_UPI00047D45C1: cysteine desulfurase|unclassified	0.1958560288
+UniRef50_UPI000410E6B0: hypothetical protein	0.1958309840
+UniRef50_UPI000410E6B0: hypothetical protein|unclassified	0.1958309840
+UniRef50_UPI00047172CD: microcin ABC transporter ATP-binding protein, partial	0.1958040751
+UniRef50_UPI00047172CD: microcin ABC transporter ATP-binding protein, partial|unclassified	0.1958040751
+UniRef50_B2V7W7: ATP-dependent 6-phosphofructokinase	0.1957983542
+UniRef50_B2V7W7: ATP-dependent 6-phosphofructokinase|unclassified	0.1957983542
+UniRef50_UPI0003B41673: protein hit	0.1957822364
+UniRef50_UPI0003B41673: protein hit|unclassified	0.1957822364
+UniRef50_I3TQB6	0.1957372483
+UniRef50_I3TQB6|unclassified	0.1957372483
+UniRef50_J9NNC9	0.1957348547
+UniRef50_J9NNC9|unclassified	0.1957348547
+UniRef50_UPI000363FB50: hypothetical protein	0.1957347372
+UniRef50_UPI000363FB50: hypothetical protein|unclassified	0.1957347372
+UniRef50_B4S8V7: Phosphoribosylformylglycinamidine synthase, purS	0.1957262529
+UniRef50_B4S8V7: Phosphoribosylformylglycinamidine synthase, purS|unclassified	0.1957262529
+UniRef50_J2Y3A1	0.1957192938
+UniRef50_J2Y3A1|unclassified	0.1957192938
+UniRef50_UPI000383BA43: PREDICTED: fibril-forming collagen alpha chain-like	0.1957107841
+UniRef50_UPI000383BA43: PREDICTED: fibril-forming collagen alpha chain-like|unclassified	0.1957107841
+UniRef50_Q1GP41: Porphobilinogen deaminase	0.1957024719
+UniRef50_Q1GP41: Porphobilinogen deaminase|unclassified	0.1957024719
+UniRef50_C1F933: Aminomethyltransferase	0.1957007496
+UniRef50_C1F933: Aminomethyltransferase|unclassified	0.1957007496
+UniRef50_UPI00047A4E82: hypothetical protein, partial	0.1956877810
+UniRef50_UPI00047A4E82: hypothetical protein, partial|unclassified	0.1956877810
+UniRef50_D2ZVT7	0.1956841081
+UniRef50_D2ZVT7|unclassified	0.1956841081
+UniRef50_UPI00036F52AB: hypothetical protein	0.1956613520
+UniRef50_UPI00036F52AB: hypothetical protein|unclassified	0.1956613520
+UniRef50_UPI000477B4E1: hypothetical protein	0.1956573823
+UniRef50_UPI000477B4E1: hypothetical protein|unclassified	0.1956573823
+UniRef50_A8LC93: NADH-quinone oxidoreductase subunit I	0.1956500336
+UniRef50_A8LC93: NADH-quinone oxidoreductase subunit I|unclassified	0.1956500336
+UniRef50_X1JLA8: Marine sediment metagenome DNA, contig: S03H2_S31835 (Fragment)	0.1956400015
+UniRef50_X1JLA8: Marine sediment metagenome DNA, contig: S03H2_S31835 (Fragment)|unclassified	0.1956400015
+UniRef50_UPI00001AD637: argininosuccinate lyase	0.1956368516
+UniRef50_UPI00001AD637: argininosuccinate lyase|unclassified	0.1956368516
+UniRef50_UPI00040B37CB: hypothetical protein	0.1956205061
+UniRef50_UPI00040B37CB: hypothetical protein|unclassified	0.1956205061
+UniRef50_F2A5X0: 6-pyruvoyl-tetrahydropterin synthase	0.1955556459
+UniRef50_F2A5X0: 6-pyruvoyl-tetrahydropterin synthase|unclassified	0.1955556459
+UniRef50_UPI0002E1D8FF: response regulator SirA	0.1955534598
+UniRef50_UPI0002E1D8FF: response regulator SirA|unclassified	0.1955534598
+UniRef50_UPI00026263AC: tRNA 2-methylthioadenosine synthase -like protein	0.1955435061
+UniRef50_UPI00026263AC: tRNA 2-methylthioadenosine synthase -like protein|unclassified	0.1955435061
+UniRef50_Q2W8X2	0.1955405123
+UniRef50_Q2W8X2|unclassified	0.1955405123
+UniRef50_UPI00034DD90F: N-acetyltransferase	0.1955160507
+UniRef50_UPI00034DD90F: N-acetyltransferase|unclassified	0.1955160507
+UniRef50_UPI0003B2EA53: transposase	0.1954985452
+UniRef50_UPI0003B2EA53: transposase|unclassified	0.1954985452
+UniRef50_UPI00046E6D58: hypothetical protein	0.1954907872
+UniRef50_UPI00046E6D58: hypothetical protein|unclassified	0.1954907872
+UniRef50_Q836R3: ATP-dependent 6-phosphofructokinase	0.1954871361
+UniRef50_Q836R3: ATP-dependent 6-phosphofructokinase|unclassified	0.1954871361
+UniRef50_H6SJN5	0.1954758836
+UniRef50_H6SJN5|unclassified	0.1954758836
+UniRef50_U8M265	0.1954725627
+UniRef50_U8M265|unclassified	0.1954725627
+UniRef50_I8V497	0.1954491269
+UniRef50_I8V497|unclassified	0.1954491269
+UniRef50_UPI000464B99E: adenylosuccinate lyase	0.1954387797
+UniRef50_UPI000464B99E: adenylosuccinate lyase|unclassified	0.1954387797
+UniRef50_W1K3W6	0.1954188129
+UniRef50_W1K3W6|unclassified	0.1954188129
+UniRef50_Q6YWN8: BKRF1 encodes EBNA-1 protein-like	0.1954137416
+UniRef50_Q6YWN8: BKRF1 encodes EBNA-1 protein-like|unclassified	0.1954137416
+UniRef50_T1C0K4: MraZ protein (Fragment)	0.1954099193
+UniRef50_T1C0K4: MraZ protein (Fragment)|unclassified	0.1954099193
+UniRef50_UPI00047A4425: hypothetical protein, partial	0.1954075351
+UniRef50_UPI00047A4425: hypothetical protein, partial|unclassified	0.1954075351
+UniRef50_E8SMB7	0.1953675241
+UniRef50_E8SMB7|unclassified	0.1953675241
+UniRef50_Q2YX12	0.1953552748
+UniRef50_Q2YX12|unclassified	0.1953552748
+UniRef50_X7ZA42: Integral membrane nitrite extrusion NarU domain protein	0.1953397624
+UniRef50_X7ZA42: Integral membrane nitrite extrusion NarU domain protein|unclassified	0.1953397624
+UniRef50_A1JNB2: Major tail tube protein	0.1953389743
+UniRef50_A1JNB2: Major tail tube protein|unclassified	0.1953389743
+UniRef50_O67315: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.1953384594
+UniRef50_O67315: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.1953384594
+UniRef50_B4FAT0: Adenylyltransferase and sulfurtransferase MOCS3-2	0.1953228235
+UniRef50_B4FAT0: Adenylyltransferase and sulfurtransferase MOCS3-2|unclassified	0.1953228235
+UniRef50_E6T239	0.1953203550
+UniRef50_E6T239|unclassified	0.1953203550
+UniRef50_Q31NY5: Prevent-host-death protein	0.1953154580
+UniRef50_Q31NY5: Prevent-host-death protein|unclassified	0.1953154580
+UniRef50_UPI0002FAFA3E: hypothetical protein	0.1953148187
+UniRef50_UPI0002FAFA3E: hypothetical protein|unclassified	0.1953148187
+UniRef50_UPI0003F49634: hypothetical protein TREMEDRAFT_67590	0.1953125000
+UniRef50_UPI0003F49634: hypothetical protein TREMEDRAFT_67590|unclassified	0.1953125000
+UniRef50_UPI0003F48E6E: hypothetical protein TREMEDRAFT_44294	0.1953104059
+UniRef50_UPI0003F48E6E: hypothetical protein TREMEDRAFT_44294|unclassified	0.1953104059
+UniRef50_UPI000378EDAF: hypothetical protein	0.1953021103
+UniRef50_UPI000378EDAF: hypothetical protein|unclassified	0.1953021103
+UniRef50_UPI00035EFE61: hypothetical protein	0.1952957048
+UniRef50_UPI00035EFE61: hypothetical protein|unclassified	0.1952957048
+UniRef50_UPI0003654BCD: hypothetical protein	0.1952943896
+UniRef50_UPI0003654BCD: hypothetical protein|unclassified	0.1952943896
+UniRef50_F3R0E5	0.1952860004
+UniRef50_F3R0E5|unclassified	0.1952860004
+UniRef50_UPI0003957ECC: PREDICTED: inactive serine/threonine-protein kinase VRK3-like	0.1952693756
+UniRef50_UPI0003957ECC: PREDICTED: inactive serine/threonine-protein kinase VRK3-like|unclassified	0.1952693756
+UniRef50_Q9CNN1: Acylphosphatase	0.1952623565
+UniRef50_Q9CNN1: Acylphosphatase|unclassified	0.1952623565
+UniRef50_B1ZZV2	0.1952529627
+UniRef50_B1ZZV2|unclassified	0.1952529627
+UniRef50_W1VVE9	0.1952334063
+UniRef50_W1VVE9|unclassified	0.1952334063
+UniRef50_S5S5F7: P-loop NTPase domain-containing protein	0.1952322489
+UniRef50_S5S5F7: P-loop NTPase domain-containing protein|unclassified	0.1952322489
+UniRef50_UPI000470006D: hypothetical protein	0.1952298657
+UniRef50_UPI000470006D: hypothetical protein|unclassified	0.1952298657
+UniRef50_E6LJA5	0.1952189841
+UniRef50_E6LJA5|unclassified	0.1952189841
+UniRef50_U3HRB8	0.1952170783
+UniRef50_U3HRB8|unclassified	0.1952170783
+UniRef50_B1HH65	0.1952024325
+UniRef50_B1HH65|unclassified	0.1952024325
+UniRef50_Q16E16: UPF0434 protein RD1_0037	0.1952007429
+UniRef50_Q16E16: UPF0434 protein RD1_0037|unclassified	0.1952007429
+UniRef50_UPI0000397D6E: COG0036: Pentose-5-phosphate-3-epimerase, partial	0.1951979421
+UniRef50_UPI0000397D6E: COG0036: Pentose-5-phosphate-3-epimerase, partial|unclassified	0.1951979421
+UniRef50_V8IRP8: Membrane protein	0.1951591525
+UniRef50_V8IRP8: Membrane protein|unclassified	0.1951591525
+UniRef50_Q9CN24: Molybdopterin synthase catalytic subunit	0.1951545382
+UniRef50_Q9CN24: Molybdopterin synthase catalytic subunit|unclassified	0.1951545382
+UniRef50_UPI0003B35337: metallophosphatase	0.1951455537
+UniRef50_UPI0003B35337: metallophosphatase|unclassified	0.1951455537
+UniRef50_Q2SSS4: Spermidine/putrescine import ATP-binding protein PotA	0.1951372315
+UniRef50_Q2SSS4: Spermidine/putrescine import ATP-binding protein PotA|unclassified	0.1951372315
+UniRef50_UPI00037A4D32: hypothetical protein	0.1951311034
+UniRef50_UPI00037A4D32: hypothetical protein|unclassified	0.1951311034
+UniRef50_UPI000360BC2C: hypothetical protein	0.1951104000
+UniRef50_UPI000360BC2C: hypothetical protein|unclassified	0.1951104000
+UniRef50_UPI00040DCB98: hypothetical protein	0.1951034036
+UniRef50_UPI00040DCB98: hypothetical protein|unclassified	0.1951034036
+UniRef50_UPI0003660656: hypothetical protein, partial	0.1950996029
+UniRef50_UPI0003660656: hypothetical protein, partial|unclassified	0.1950996029
+UniRef50_UPI00036C75A5: hypothetical protein	0.1950917564
+UniRef50_UPI00036C75A5: hypothetical protein|unclassified	0.1950917564
+UniRef50_A5G1V2	0.1950801887
+UniRef50_A5G1V2|unclassified	0.1950801887
+UniRef50_UPI0001746A5A: 2-dehydro-3-deoxyglucarate aldolase	0.1950641302
+UniRef50_UPI0001746A5A: 2-dehydro-3-deoxyglucarate aldolase|unclassified	0.1950641302
+UniRef50_UPI0003F9FAD8: hypothetical protein	0.1950568917
+UniRef50_UPI0003F9FAD8: hypothetical protein|unclassified	0.1950568917
+UniRef50_X1F515: Marine sediment metagenome DNA, contig: S03H2_C03805 (Fragment)	0.1950288129
+UniRef50_X1F515: Marine sediment metagenome DNA, contig: S03H2_C03805 (Fragment)|unclassified	0.1950288129
+UniRef50_V4YK35: Chemotaxis protein LafU	0.1949803875
+UniRef50_V4YK35: Chemotaxis protein LafU|unclassified	0.1949803875
+UniRef50_R7K0A6	0.1949650070
+UniRef50_R7K0A6|unclassified	0.1949650070
+UniRef50_W9V2Z5: GMP/IMP nucleotidase	0.1949575778
+UniRef50_W9V2Z5: GMP/IMP nucleotidase|unclassified	0.1949575778
+UniRef50_UPI0002489B60: hemolysin-type calcium-binding region	0.1949184314
+UniRef50_UPI0002489B60: hemolysin-type calcium-binding region|unclassified	0.1949184314
+UniRef50_S9SA83	0.1948842541
+UniRef50_S9SA83|unclassified	0.1948842541
+UniRef50_B0SGR5: Fe-S protein	0.1948689182
+UniRef50_B0SGR5: Fe-S protein|unclassified	0.1948689182
+UniRef50_C6CGB0: Tail X family protein	0.1948639045
+UniRef50_C6CGB0: Tail X family protein|unclassified	0.1948639045
+UniRef50_H0PZ39	0.1948492416
+UniRef50_H0PZ39|unclassified	0.1948492416
+UniRef50_Q4EPH4: ISLmo1, transposase OrfB, N-terminus	0.1948429651
+UniRef50_Q4EPH4: ISLmo1, transposase OrfB, N-terminus|unclassified	0.1948429651
+UniRef50_A4EG79	0.1948428017
+UniRef50_A4EG79|unclassified	0.1948428017
+UniRef50_J7QS02	0.1948423543
+UniRef50_J7QS02|unclassified	0.1948423543
+UniRef50_UPI00025590C5: protein YieF	0.1948405502
+UniRef50_UPI00025590C5: protein YieF|unclassified	0.1948405502
+UniRef50_G9A5Y6	0.1947750621
+UniRef50_G9A5Y6|unclassified	0.1947750621
+UniRef50_UPI0003C0FD3F	0.1947535481
+UniRef50_UPI0003C0FD3F|unclassified	0.1947535481
+UniRef50_UPI00047CD293: DNA recombination protein RecO	0.1947489872
+UniRef50_UPI00047CD293: DNA recombination protein RecO|unclassified	0.1947489872
+UniRef50_Q7V4J6: Acyl carrier protein	0.1947389626
+UniRef50_Q7V4J6: Acyl carrier protein|unclassified	0.1947389626
+UniRef50_UPI000395575D: signal peptide protein	0.1947220754
+UniRef50_UPI000395575D: signal peptide protein|unclassified	0.1947220754
+UniRef50_UPI00046313F5: translation initiation factor IF-3	0.1947214235
+UniRef50_UPI00046313F5: translation initiation factor IF-3|unclassified	0.1947214235
+UniRef50_UPI0003EB2596: hypothetical protein	0.1947045555
+UniRef50_UPI0003EB2596: hypothetical protein|unclassified	0.1947045555
+UniRef50_UPI0003B2E839: hypothetical protein	0.1946744714
+UniRef50_UPI0003B2E839: hypothetical protein|unclassified	0.1946744714
+UniRef50_C1DRK3	0.1946623168
+UniRef50_C1DRK3|unclassified	0.1946623168
+UniRef50_D6M5U2: Transcriptional regulator	0.1946395145
+UniRef50_D6M5U2: Transcriptional regulator|unclassified	0.1946395145
+UniRef50_D9WCB7: Coenzyme PQQ synthesis protein B (Fragment)	0.1946280860
+UniRef50_D9WCB7: Coenzyme PQQ synthesis protein B (Fragment)|unclassified	0.1946280860
+UniRef50_UPI00046AABC6: recombinase RecF	0.1946167630
+UniRef50_UPI00046AABC6: recombinase RecF|unclassified	0.1946167630
+UniRef50_UPI000237DD9B: helicase	0.1946024925
+UniRef50_UPI000237DD9B: helicase|unclassified	0.1946024925
+UniRef50_X5MFN1: Protein containing domains DUF403	0.1945926979
+UniRef50_X5MFN1: Protein containing domains DUF403|unclassified	0.1945926979
+UniRef50_B1F0F2: Lpxtg-motif cell wall anchor domain protein	0.1945733255
+UniRef50_B1F0F2: Lpxtg-motif cell wall anchor domain protein|unclassified	0.1945733255
+UniRef50_UPI0002E55B95: hypothetical protein	0.1945709417
+UniRef50_UPI0002E55B95: hypothetical protein|unclassified	0.1945709417
+UniRef50_I2IIG0: SH3 type 3 domain protein	0.1945704244
+UniRef50_I2IIG0: SH3 type 3 domain protein|unclassified	0.1945704244
+UniRef50_UPI000417D537: RNA-binding protein S4	0.1945660553
+UniRef50_UPI000417D537: RNA-binding protein S4|unclassified	0.1945660553
+UniRef50_UPI0003B3749D: 3-methyladenine DNA glycosylase	0.1945621424
+UniRef50_UPI0003B3749D: 3-methyladenine DNA glycosylase|unclassified	0.1945621424
+UniRef50_E6PY25	0.1945613183
+UniRef50_E6PY25|unclassified	0.1945613183
+UniRef50_Q4A111: Capsular polysaccharide synthesis protein	0.1945441580
+UniRef50_Q4A111: Capsular polysaccharide synthesis protein|unclassified	0.1945441580
+UniRef50_UPI00036127ED: hypothetical protein, partial	0.1945400994
+UniRef50_UPI00036127ED: hypothetical protein, partial|unclassified	0.1945400994
+UniRef50_I7EMK4	0.1945389800
+UniRef50_I7EMK4|unclassified	0.1945389800
+UniRef50_UPI00037F68CC: hypothetical protein	0.1945330624
+UniRef50_UPI00037F68CC: hypothetical protein|unclassified	0.1945330624
+UniRef50_U7U8I5	0.1945253182
+UniRef50_U7U8I5|unclassified	0.1945253182
+UniRef50_UPI0003B5CCA8: hypothetical protein	0.1945232941
+UniRef50_UPI0003B5CCA8: hypothetical protein|unclassified	0.1945232941
+UniRef50_UPI000375D5D1: hypothetical protein	0.1945213998
+UniRef50_UPI000375D5D1: hypothetical protein|unclassified	0.1945213998
+UniRef50_UPI0003B70939: FAD-containing monooxygenase EthA, partial	0.1945205338
+UniRef50_UPI0003B70939: FAD-containing monooxygenase EthA, partial|unclassified	0.1945205338
+UniRef50_UPI000479F271: hypothetical protein	0.1945097081
+UniRef50_UPI000479F271: hypothetical protein|unclassified	0.1945097081
+UniRef50_UPI0004291727: glycosyl transferase family 1	0.1945079193
+UniRef50_UPI0004291727: glycosyl transferase family 1|unclassified	0.1945079193
+UniRef50_C8S2N1	0.1944955783
+UniRef50_C8S2N1|unclassified	0.1944955783
+UniRef50_UPI0003B77F00: dipeptidase	0.1944924143
+UniRef50_UPI0003B77F00: dipeptidase|unclassified	0.1944924143
+UniRef50_B1VTN7: Cyclic pyranopterin monophosphate synthase accessory protein	0.1944883335
+UniRef50_B1VTN7: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	0.1944883335
+UniRef50_P70971	0.1944872790
+UniRef50_P70971|unclassified	0.1944872790
+UniRef50_UPI000362DE19: hypothetical protein	0.1944776128
+UniRef50_UPI000362DE19: hypothetical protein|unclassified	0.1944776128
+UniRef50_V1CIB0	0.1944756353
+UniRef50_V1CIB0|unclassified	0.1944756353
+UniRef50_UPI0004640E2C: acyl-phosphate glycerol 3-phosphate acyltransferase	0.1944755791
+UniRef50_UPI0004640E2C: acyl-phosphate glycerol 3-phosphate acyltransferase|unclassified	0.1944755791
+UniRef50_UPI00037129B0: hypothetical protein	0.1944729674
+UniRef50_UPI00037129B0: hypothetical protein|unclassified	0.1944729674
+UniRef50_UPI00036F03E5: hypothetical protein	0.1944423536
+UniRef50_UPI00036F03E5: hypothetical protein|unclassified	0.1944423536
+UniRef50_G2Q2W5	0.1944299630
+UniRef50_G2Q2W5|unclassified	0.1944299630
+UniRef50_B6U872	0.1944178744
+UniRef50_B6U872|unclassified	0.1944178744
+UniRef50_W3T3C5	0.1944041884
+UniRef50_W3T3C5|unclassified	0.1944041884
+UniRef50_UPI0003640AF3: hypothetical protein	0.1943569584
+UniRef50_UPI0003640AF3: hypothetical protein|unclassified	0.1943569584
+UniRef50_W0HQE6: Outer membrane lipoprotein	0.1943452502
+UniRef50_W0HQE6: Outer membrane lipoprotein|unclassified	0.1943452502
+UniRef50_UPI000375A953: hypothetical protein	0.1943444052
+UniRef50_UPI000375A953: hypothetical protein|unclassified	0.1943444052
+UniRef50_UPI000473BE46: hypothetical protein	0.1943421034
+UniRef50_UPI000473BE46: hypothetical protein|unclassified	0.1943421034
+UniRef50_Q59829: Putative cystathionine gamma-lyase	0.1943296706
+UniRef50_Q59829: Putative cystathionine gamma-lyase|unclassified	0.1943296706
+UniRef50_UPI000474379C: hypothetical protein, partial	0.1943209109
+UniRef50_UPI000474379C: hypothetical protein, partial|unclassified	0.1943209109
+UniRef50_K2EBF5	0.1943090527
+UniRef50_K2EBF5|unclassified	0.1943090527
+UniRef50_UPI0001A62C72: collagen alpha chain	0.1943054088
+UniRef50_UPI0001A62C72: collagen alpha chain|unclassified	0.1943054088
+UniRef50_Q1CYD8: Putative 3-methyladenine DNA glycosylase	0.1942977514
+UniRef50_Q1CYD8: Putative 3-methyladenine DNA glycosylase|unclassified	0.1942977514
+UniRef50_UPI000476C38C: hypothetical protein, partial	0.1942652052
+UniRef50_UPI000476C38C: hypothetical protein, partial|unclassified	0.1942652052
+UniRef50_B9T9P9	0.1942425529
+UniRef50_B9T9P9|unclassified	0.1942425529
+UniRef50_UPI000466346B: formate dehydrogenase	0.1942395573
+UniRef50_UPI000466346B: formate dehydrogenase|unclassified	0.1942395573
+UniRef50_J9PA81	0.1942370138
+UniRef50_J9PA81|unclassified	0.1942370138
+UniRef50_UPI0002C46A33	0.1942140122
+UniRef50_UPI0002C46A33|unclassified	0.1942140122
+UniRef50_UPI000237B759: RNA polymerase sigma factor SigF	0.1942088794
+UniRef50_UPI000237B759: RNA polymerase sigma factor SigF|unclassified	0.1942088794
+UniRef50_Q72ET7: ADP-L-glycero-D-manno-heptose-6-epimerase	0.1941971294
+UniRef50_Q72ET7: ADP-L-glycero-D-manno-heptose-6-epimerase|unclassified	0.1941971294
+UniRef50_D2YT43: UPF0067 protein yebR	0.1941953686
+UniRef50_D2YT43: UPF0067 protein yebR|unclassified	0.1941953686
+UniRef50_F7XF30: Transposase	0.1941892792
+UniRef50_F7XF30: Transposase|unclassified	0.1941892792
+UniRef50_A1B9K8: Zinc import ATP-binding protein ZnuC	0.1941800766
+UniRef50_A1B9K8: Zinc import ATP-binding protein ZnuC|unclassified	0.1941800766
+UniRef50_UPI00036DA056: hypothetical protein	0.1941751310
+UniRef50_UPI00036DA056: hypothetical protein|unclassified	0.1941751310
+UniRef50_UPI000476494E: camphor resistance protein CrcB	0.1941732411
+UniRef50_UPI000476494E: camphor resistance protein CrcB|unclassified	0.1941732411
+UniRef50_W0INN3: Glyoxalase	0.1941720618
+UniRef50_W0INN3: Glyoxalase|unclassified	0.1941720618
+UniRef50_O54608: UPF0033 protein VNG_5061C/VNG_5236C/VNG_6059C/VNG_6467C	0.1941616606
+UniRef50_O54608: UPF0033 protein VNG_5061C/VNG_5236C/VNG_6059C/VNG_6467C|unclassified	0.1941616606
+UniRef50_Q0S277: Probable dual-specificity RNA methyltransferase RlmN	0.1941579505
+UniRef50_Q0S277: Probable dual-specificity RNA methyltransferase RlmN|unclassified	0.1941579505
+UniRef50_A1WXT0: Zinc import ATP-binding protein ZnuC	0.1941556848
+UniRef50_A1WXT0: Zinc import ATP-binding protein ZnuC|unclassified	0.1941556848
+UniRef50_C4LL05: Adenylate kinase	0.1941298211
+UniRef50_C4LL05: Adenylate kinase|unclassified	0.1941298211
+UniRef50_U3U1D9	0.1941235006
+UniRef50_U3U1D9|unclassified	0.1941235006
+UniRef50_I9SEQ2	0.1941170685
+UniRef50_I9SEQ2|unclassified	0.1941170685
+UniRef50_UPI000317C35B: hypothetical protein	0.1940995706
+UniRef50_UPI000317C35B: hypothetical protein|unclassified	0.1940995706
+UniRef50_U1JJ60	0.1940978052
+UniRef50_U1JJ60|unclassified	0.1940978052
+UniRef50_UPI0001A622B4: methylthioadenosine phosphorylase	0.1940926367
+UniRef50_UPI0001A622B4: methylthioadenosine phosphorylase|unclassified	0.1940926367
+UniRef50_UPI00046A8E7F: acetyltransferase	0.1940726437
+UniRef50_UPI00046A8E7F: acetyltransferase|unclassified	0.1940726437
+UniRef50_J7PRA1: Internalin E (LPXTG motif)	0.1940725116
+UniRef50_J7PRA1: Internalin E (LPXTG motif)|unclassified	0.1940725116
+UniRef50_U1FPP9: Serine dehydratase alpha chain domain protein	0.1940635102
+UniRef50_U1FPP9: Serine dehydratase alpha chain domain protein|unclassified	0.1940635102
+UniRef50_UPI00042B3555: PfkB-like carbohydrate kinase family protein isoform 1	0.1940338239
+UniRef50_UPI00042B3555: PfkB-like carbohydrate kinase family protein isoform 1|unclassified	0.1940338239
+UniRef50_UPI000473A889: hypothetical protein, partial	0.1940322974
+UniRef50_UPI000473A889: hypothetical protein, partial|unclassified	0.1940322974
+UniRef50_UPI00046CCD8A: ABC transporter permease	0.1940283623
+UniRef50_UPI00046CCD8A: ABC transporter permease|unclassified	0.1940283623
+UniRef50_U2Z6N0: NAD-dependent formate dehydrogenase delta subunit	0.1940224214
+UniRef50_U2Z6N0: NAD-dependent formate dehydrogenase delta subunit|unclassified	0.1940224214
+UniRef50_UPI00036EC80A: hypothetical protein	0.1940166920
+UniRef50_UPI00036EC80A: hypothetical protein|unclassified	0.1940166920
+UniRef50_UPI000288CC1E: threonine dehydratase	0.1940083908
+UniRef50_UPI000288CC1E: threonine dehydratase|unclassified	0.1940083908
+UniRef50_UPI00016C586E: acetyltransferase	0.1939749390
+UniRef50_UPI00016C586E: acetyltransferase|unclassified	0.1939749390
+UniRef50_S3HIM3	0.1939709613
+UniRef50_S3HIM3|unclassified	0.1939709613
+UniRef50_E9MXH2: Clumping factor A (Fragment)	0.1939695195
+UniRef50_E9MXH2: Clumping factor A (Fragment)|unclassified	0.1939695195
+UniRef50_C4FLI9: Probable tRNA modification GTPase TrmE (Fragment)	0.1939597869
+UniRef50_C4FLI9: Probable tRNA modification GTPase TrmE (Fragment)|unclassified	0.1939597869
+UniRef50_UPI0003F05AC8: PREDICTED: propionyl-CoA carboxylase alpha chain, mitochondrial-like	0.1939580993
+UniRef50_UPI0003F05AC8: PREDICTED: propionyl-CoA carboxylase alpha chain, mitochondrial-like|unclassified	0.1939580993
+UniRef50_R6IUG6	0.1939469652
+UniRef50_R6IUG6|unclassified	0.1939469652
+UniRef50_W6LTK3: Permease family protein	0.1939367693
+UniRef50_W6LTK3: Permease family protein|unclassified	0.1939367693
+UniRef50_UPI0003EFA401: hypothetical protein	0.1939282925
+UniRef50_UPI0003EFA401: hypothetical protein|unclassified	0.1939282925
+UniRef50_UPI00037BBBAD: hypothetical protein	0.1938988091
+UniRef50_UPI00037BBBAD: hypothetical protein|unclassified	0.1938988091
+UniRef50_A4JK78: Phospholipase C	0.1938883750
+UniRef50_A4JK78: Phospholipase C|unclassified	0.1938883750
+UniRef50_B9MQ93: Ribosomal RNA small subunit methyltransferase H	0.1938742977
+UniRef50_B9MQ93: Ribosomal RNA small subunit methyltransferase H|unclassified	0.1938742977
+UniRef50_UPI00047A92C7: GntR family transcriptional regulator	0.1938660695
+UniRef50_UPI00047A92C7: GntR family transcriptional regulator|unclassified	0.1938660695
+UniRef50_UPI0003633465: hypothetical protein	0.1938377851
+UniRef50_UPI0003633465: hypothetical protein|unclassified	0.1938377851
+UniRef50_A0A024HFE7	0.1938327144
+UniRef50_A0A024HFE7|unclassified	0.1938327144
+UniRef50_P39816: Putative PTS system glucosamine-specific EIICBA component	0.1938314895
+UniRef50_P39816: Putative PTS system glucosamine-specific EIICBA component|unclassified	0.1938314895
+UniRef50_Q03283: Urease subunit beta	0.1938254440
+UniRef50_Q03283: Urease subunit beta|unclassified	0.1938254440
+UniRef50_UPI00042044E6: phosphatase	0.1938197115
+UniRef50_UPI00042044E6: phosphatase|unclassified	0.1938197115
+UniRef50_F8ABQ3: SirA-like domain-containing protein	0.1938170209
+UniRef50_F8ABQ3: SirA-like domain-containing protein|unclassified	0.1938170209
+UniRef50_W8ZDM8	0.1938025018
+UniRef50_W8ZDM8|unclassified	0.1938025018
+UniRef50_UPI000369CF88: hypothetical protein	0.1937883008
+UniRef50_UPI000369CF88: hypothetical protein|unclassified	0.1937883008
+UniRef50_C4L2D3: 4-hydroxy-tetrahydrodipicolinate reductase	0.1937829053
+UniRef50_C4L2D3: 4-hydroxy-tetrahydrodipicolinate reductase|unclassified	0.1937829053
+UniRef50_UPI000370383F: hypothetical protein	0.1937789803
+UniRef50_UPI000370383F: hypothetical protein|unclassified	0.1937789803
+UniRef50_UPI0003B50E9C: peroxidase	0.1937660032
+UniRef50_UPI0003B50E9C: peroxidase|unclassified	0.1937660032
+UniRef50_E1YBJ5	0.1937637035
+UniRef50_E1YBJ5|unclassified	0.1937637035
+UniRef50_Q9CEJ0: Cysteine--tRNA ligase	0.1937606847
+UniRef50_Q9CEJ0: Cysteine--tRNA ligase|unclassified	0.1937606847
+UniRef50_UPI0003F0B872	0.1937544928
+UniRef50_UPI0003F0B872|unclassified	0.1937544928
+UniRef50_Q0FDU0	0.1937481353
+UniRef50_Q0FDU0|unclassified	0.1937481353
+UniRef50_UPI0002BA1431: hypothetical protein	0.1937376916
+UniRef50_UPI0002BA1431: hypothetical protein|unclassified	0.1937376916
+UniRef50_UPI000472B556: hypothetical protein, partial	0.1937264588
+UniRef50_UPI000472B556: hypothetical protein, partial|unclassified	0.1937264588
+UniRef50_H1QFS1: Thiamine biosynthesis protein ThiC (Fragment)	0.1937244454
+UniRef50_H1QFS1: Thiamine biosynthesis protein ThiC (Fragment)|unclassified	0.1937244454
+UniRef50_G2R442	0.1937233630
+UniRef50_G2R442|unclassified	0.1937233630
+UniRef50_UPI000360C875: hypothetical protein	0.1936769354
+UniRef50_UPI000360C875: hypothetical protein|unclassified	0.1936769354
+UniRef50_H8HUR7: PE-PGRS family protein	0.1936586631
+UniRef50_H8HUR7: PE-PGRS family protein|unclassified	0.1936586631
+UniRef50_UPI0003813546: hypothetical protein	0.1936442793
+UniRef50_UPI0003813546: hypothetical protein|unclassified	0.1936442793
+UniRef50_UPI00036B1199: hypothetical protein	0.1936250347
+UniRef50_UPI00036B1199: hypothetical protein|unclassified	0.1936250347
+UniRef50_J8PEK3	0.1936160410
+UniRef50_J8PEK3|unclassified	0.1936160410
+UniRef50_UPI0004789AC6: hypothetical protein	0.1936117468
+UniRef50_UPI0004789AC6: hypothetical protein|unclassified	0.1936117468
+UniRef50_I0ZAW9	0.1936108429
+UniRef50_I0ZAW9|unclassified	0.1936108429
+UniRef50_P56468: Adenylosuccinate lyase	0.1936015784
+UniRef50_P56468: Adenylosuccinate lyase|unclassified	0.1936015784
+UniRef50_UPI00034ACF0F: hypothetical protein	0.1935906233
+UniRef50_UPI00034ACF0F: hypothetical protein|unclassified	0.1935906233
+UniRef50_Q089C0: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase	0.1935805509
+UniRef50_Q089C0: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase|unclassified	0.1935805509
+UniRef50_A3PPR0	0.1935730216
+UniRef50_A3PPR0|unclassified	0.1935730216
+UniRef50_UPI00042BA935: PREDICTED: WD repeat-containing protein 86, partial	0.1935537756
+UniRef50_UPI00042BA935: PREDICTED: WD repeat-containing protein 86, partial|unclassified	0.1935537756
+UniRef50_F3KX92: Tripartite ATP-independent periplasmic transporter DctQ	0.1935380547
+UniRef50_F3KX92: Tripartite ATP-independent periplasmic transporter DctQ|unclassified	0.1935380547
+UniRef50_UPI0002489F83: transglycosylase	0.1935298837
+UniRef50_UPI0002489F83: transglycosylase|unclassified	0.1935298837
+UniRef50_UPI00046938E6: amino acid permease	0.1935135829
+UniRef50_UPI00046938E6: amino acid permease|unclassified	0.1935135829
+UniRef50_UPI000475D591: dihydroxyacetone kinase	0.1935112171
+UniRef50_UPI000475D591: dihydroxyacetone kinase|unclassified	0.1935112171
+UniRef50_V6KQJ3: Pyoverdine biosynthesis protein PvcA	0.1935070777
+UniRef50_V6KQJ3: Pyoverdine biosynthesis protein PvcA|unclassified	0.1935070777
+UniRef50_UPI0003F5623F: hypothetical protein	0.1934913341
+UniRef50_UPI0003F5623F: hypothetical protein|unclassified	0.1934913341
+UniRef50_UPI00047224F7: hypothetical protein	0.1934901142
+UniRef50_UPI00047224F7: hypothetical protein|unclassified	0.1934901142
+UniRef50_B2A1L0	0.1934661653
+UniRef50_B2A1L0|unclassified	0.1934661653
+UniRef50_UPI000473A2A0: hypothetical protein	0.1934610176
+UniRef50_UPI000473A2A0: hypothetical protein|unclassified	0.1934610176
+UniRef50_UPI000363BEF2: hypothetical protein	0.1934528445
+UniRef50_UPI000363BEF2: hypothetical protein|unclassified	0.1934528445
+UniRef50_W5X9G9: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	0.1934506102
+UniRef50_W5X9G9: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|unclassified	0.1934506102
+UniRef50_H0K4B0: Cation transport ATPase	0.1934403067
+UniRef50_H0K4B0: Cation transport ATPase|unclassified	0.1934403067
+UniRef50_K2AJR2	0.1934137310
+UniRef50_K2AJR2|unclassified	0.1934137310
+UniRef50_Q5LMB8: Transcriptional regulator, putative	0.1934132043
+UniRef50_Q5LMB8: Transcriptional regulator, putative|unclassified	0.1934132043
+UniRef50_D5AN45	0.1934091225
+UniRef50_D5AN45|unclassified	0.1934091225
+UniRef50_A1U3P0: Ribonuclease HII	0.1933778498
+UniRef50_A1U3P0: Ribonuclease HII|unclassified	0.1933778498
+UniRef50_P45515: Cob(I)yrinic acid a,c-diamide adenosyltransferase	0.1933703719
+UniRef50_P45515: Cob(I)yrinic acid a,c-diamide adenosyltransferase|unclassified	0.1933703719
+UniRef50_R4YI13: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.1933703719
+UniRef50_R4YI13: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|unclassified	0.1933703719
+UniRef50_UPI0002375A90: CheA signal transduction histidine kinase	0.1933549766
+UniRef50_UPI0002375A90: CheA signal transduction histidine kinase|unclassified	0.1933549766
+UniRef50_P66878: Cobalamin biosynthesis protein CobIJ	0.1933269850
+UniRef50_P66878: Cobalamin biosynthesis protein CobIJ|unclassified	0.1933269850
+UniRef50_Q478J3	0.1933237886
+UniRef50_Q478J3|unclassified	0.1933237886
+UniRef50_S2WFX9	0.1933209191
+UniRef50_S2WFX9|unclassified	0.1933209191
+UniRef50_UPI0004637D11: mannonate dehydratase, partial	0.1933170521
+UniRef50_UPI0004637D11: mannonate dehydratase, partial|unclassified	0.1933170521
+UniRef50_UPI0003718E98: 30S ribosomal protein S1	0.1933157072
+UniRef50_UPI0003718E98: 30S ribosomal protein S1|unclassified	0.1933157072
+UniRef50_P46534: Orotate phosphoribosyltransferase	0.1932857623
+UniRef50_P46534: Orotate phosphoribosyltransferase|unclassified	0.1932857623
+UniRef50_H5RH55: Baseplate J-like family protein	0.1932457160
+UniRef50_H5RH55: Baseplate J-like family protein|unclassified	0.1932457160
+UniRef50_UPI00042B97A0: PREDICTED: TRIO and F-actin-binding protein	0.1932367150
+UniRef50_UPI00042B97A0: PREDICTED: TRIO and F-actin-binding protein|unclassified	0.1932367150
+UniRef50_UPI00046E84BE: hypothetical protein	0.1932333951
+UniRef50_UPI00046E84BE: hypothetical protein|unclassified	0.1932333951
+UniRef50_UPI0002559BDC: tripartite ATP-independent periplasmic transporter DctQ	0.1932198237
+UniRef50_UPI0002559BDC: tripartite ATP-independent periplasmic transporter DctQ|unclassified	0.1932198237
+UniRef50_UPI000392E29D: PREDICTED: methionine aminopeptidase 1D, mitochondrial	0.1932132640
+UniRef50_UPI000392E29D: PREDICTED: methionine aminopeptidase 1D, mitochondrial|unclassified	0.1932132640
+UniRef50_UPI0003A30A58: ribonuclease PH	0.1932014539
+UniRef50_UPI0003A30A58: ribonuclease PH|unclassified	0.1932014539
+UniRef50_UPI0004724BC6: hypothetical protein	0.1931935860
+UniRef50_UPI0004724BC6: hypothetical protein|unclassified	0.1931935860
+UniRef50_W4XPW1	0.1931848793
+UniRef50_W4XPW1|unclassified	0.1931848793
+UniRef50_K7ITA9	0.1931748196
+UniRef50_K7ITA9|unclassified	0.1931748196
+UniRef50_D1KB64: Oxygen-sensitive ribonucleoside-triphosphate reductase	0.1931626317
+UniRef50_D1KB64: Oxygen-sensitive ribonucleoside-triphosphate reductase|unclassified	0.1931626317
+UniRef50_UPI0004790384: hypothetical protein	0.1931347326
+UniRef50_UPI0004790384: hypothetical protein|unclassified	0.1931347326
+UniRef50_Q4FQJ9: Biotin synthase	0.1931270083
+UniRef50_Q4FQJ9: Biotin synthase|unclassified	0.1931270083
+UniRef50_Q2T751: Taurine import ATP-binding protein TauB	0.1931075509
+UniRef50_Q2T751: Taurine import ATP-binding protein TauB|unclassified	0.1931075509
+UniRef50_UPI000362CA7E: hypothetical protein	0.1930991184
+UniRef50_UPI000362CA7E: hypothetical protein|unclassified	0.1930991184
+UniRef50_UPI00026597D0: PREDICTED: protein IWS1 homolog	0.1930926321
+UniRef50_UPI00026597D0: PREDICTED: protein IWS1 homolog|unclassified	0.1930926321
+UniRef50_A1SKU9: SirA family protein	0.1930788379
+UniRef50_A1SKU9: SirA family protein|unclassified	0.1930788379
+UniRef50_Q3JU21	0.1930616161
+UniRef50_Q3JU21|unclassified	0.1930616161
+UniRef50_Q8TPK7	0.1930586029
+UniRef50_Q8TPK7|unclassified	0.1930586029
+UniRef50_K1TAI4	0.1930371908
+UniRef50_K1TAI4|unclassified	0.1930371908
+UniRef50_I6XTA1: UPF0225 protein HMPREF9154_3085	0.1930271894
+UniRef50_I6XTA1: UPF0225 protein HMPREF9154_3085|unclassified	0.1930271894
+UniRef50_X1K4A9: Marine sediment metagenome DNA, contig: S06H3_C01986 (Fragment)	0.1930263018
+UniRef50_X1K4A9: Marine sediment metagenome DNA, contig: S06H3_C01986 (Fragment)|unclassified	0.1930263018
+UniRef50_G1XW59: Lytic transglycosylase catalytic	0.1930261587
+UniRef50_G1XW59: Lytic transglycosylase catalytic|unclassified	0.1930261587
+UniRef50_UPI0003A37396: spermidine/putrescine ABC transporter substrate-binding protein	0.1930147768
+UniRef50_UPI0003A37396: spermidine/putrescine ABC transporter substrate-binding protein|unclassified	0.1930147768
+UniRef50_N7V1R0	0.1929990235
+UniRef50_N7V1R0|unclassified	0.1929990235
+UniRef50_S2ZWU0	0.1929766686
+UniRef50_S2ZWU0|unclassified	0.1929766686
+UniRef50_UPI00037E4DB6: hypothetical protein	0.1929608346
+UniRef50_UPI00037E4DB6: hypothetical protein|unclassified	0.1929608346
+UniRef50_W7PZ98	0.1929476972
+UniRef50_W7PZ98|unclassified	0.1929476972
+UniRef50_UPI000370A604: hypothetical protein	0.1929445940
+UniRef50_UPI000370A604: hypothetical protein|unclassified	0.1929445940
+UniRef50_I4MXA8	0.1929377878
+UniRef50_I4MXA8|unclassified	0.1929377878
+UniRef50_H2BCR0	0.1929345479
+UniRef50_H2BCR0|unclassified	0.1929345479
+UniRef50_B2T5I0: Ribonuclease HII	0.1929135454
+UniRef50_B2T5I0: Ribonuclease HII|unclassified	0.1929135454
+UniRef50_A0A011EDI0	0.1929131491
+UniRef50_A0A011EDI0|unclassified	0.1929131491
+UniRef50_UPI0003806C15: hypothetical protein	0.1929111779
+UniRef50_UPI0003806C15: hypothetical protein|unclassified	0.1929111779
+UniRef50_T0C715: Thioesterase family protein	0.1928923480
+UniRef50_T0C715: Thioesterase family protein|unclassified	0.1928923480
+UniRef50_Q62J88	0.1928755749
+UniRef50_Q62J88|unclassified	0.1928755749
+UniRef50_UPI0002625F5C: peptidoglycan glycosyltransferase	0.1928626429
+UniRef50_UPI0002625F5C: peptidoglycan glycosyltransferase|unclassified	0.1928626429
+UniRef50_O67550: 5'-3' exonuclease	0.1928603271
+UniRef50_O67550: 5'-3' exonuclease|unclassified	0.1928603271
+UniRef50_UPI00036AC238: hypothetical protein	0.1928567712
+UniRef50_UPI00036AC238: hypothetical protein|unclassified	0.1928567712
+UniRef50_UPI00046FD587: hypothetical protein	0.1928539107
+UniRef50_UPI00046FD587: hypothetical protein|unclassified	0.1928539107
+UniRef50_UPI00046F2188: hypothetical protein	0.1928492020
+UniRef50_UPI00046F2188: hypothetical protein|unclassified	0.1928492020
+UniRef50_T5LK77	0.1928394897
+UniRef50_T5LK77|unclassified	0.1928394897
+UniRef50_UPI0003B42BB6: GntR family transcriptional regulator	0.1928281403
+UniRef50_UPI0003B42BB6: GntR family transcriptional regulator|unclassified	0.1928281403
+UniRef50_UPI00036630BD: hypothetical protein, partial	0.1928219356
+UniRef50_UPI00036630BD: hypothetical protein, partial|unclassified	0.1928219356
+UniRef50_S0VKV5	0.1928022048
+UniRef50_S0VKV5|unclassified	0.1928022048
+UniRef50_UPI0003C1716B	0.1927809273
+UniRef50_UPI0003C1716B|unclassified	0.1927809273
+UniRef50_B1KP14	0.1927780273
+UniRef50_B1KP14|unclassified	0.1927780273
+UniRef50_UPI0004761EBF: cold-shock protein	0.1927780201
+UniRef50_UPI0004761EBF: cold-shock protein|unclassified	0.1927780201
+UniRef50_S9SA73	0.1927599314
+UniRef50_S9SA73|unclassified	0.1927599314
+UniRef50_Q48NG7: Thioredoxin domain protein, DsbA family	0.1927481975
+UniRef50_Q48NG7: Thioredoxin domain protein, DsbA family|unclassified	0.1927481975
+UniRef50_UPI00036DD1E3: hypothetical protein	0.1927369273
+UniRef50_UPI00036DD1E3: hypothetical protein|unclassified	0.1927369273
+UniRef50_M2ZZB3: Esterase	0.1927365920
+UniRef50_M2ZZB3: Esterase|unclassified	0.1927365920
+UniRef50_Q5T953: Immediate early response gene 5-like protein	0.1927169017
+UniRef50_Q5T953: Immediate early response gene 5-like protein|unclassified	0.1927169017
+UniRef50_UPI000466B878: potassium transporter KefB	0.1927106918
+UniRef50_UPI000466B878: potassium transporter KefB|unclassified	0.1927106918
+UniRef50_D5WT53: Prevent-host-death family protein	0.1926975030
+UniRef50_D5WT53: Prevent-host-death family protein|unclassified	0.1926975030
+UniRef50_N2IXS4	0.1926901714
+UniRef50_N2IXS4|unclassified	0.1926901714
+UniRef50_UPI0004681F99: hypothetical protein	0.1926794243
+UniRef50_UPI0004681F99: hypothetical protein|unclassified	0.1926794243
+UniRef50_UPI0004769CDD: 3-demethylubiquinone-9 3-methyltransferase	0.1926709207
+UniRef50_UPI0004769CDD: 3-demethylubiquinone-9 3-methyltransferase|unclassified	0.1926709207
+UniRef50_A3VKZ5	0.1926706325
+UniRef50_A3VKZ5|unclassified	0.1926706325
+UniRef50_B1ZJQ8: DNA-directed RNA polymerase subunit omega	0.1926650621
+UniRef50_B1ZJQ8: DNA-directed RNA polymerase subunit omega|unclassified	0.1926650621
+UniRef50_L9RUD5: Putative colanic acid biosynthesis protein	0.1926621960
+UniRef50_L9RUD5: Putative colanic acid biosynthesis protein|unclassified	0.1926621960
+UniRef50_P35150: D-alanyl-D-alanine carboxypeptidase DacB	0.1926452996
+UniRef50_P35150: D-alanyl-D-alanine carboxypeptidase DacB|unclassified	0.1926452996
+UniRef50_UPI0002C31F6C	0.1926412922
+UniRef50_UPI0002C31F6C|unclassified	0.1926412922
+UniRef50_UPI00044472AD: PREDICTED: polyadenylate-binding protein 4-like	0.1926405500
+UniRef50_UPI00044472AD: PREDICTED: polyadenylate-binding protein 4-like|unclassified	0.1926405500
+UniRef50_A6FQF3	0.1926245533
+UniRef50_A6FQF3|unclassified	0.1926245533
+UniRef50_L0EWG8: Soluble lytic murein transglycosylase	0.1926140113
+UniRef50_L0EWG8: Soluble lytic murein transglycosylase|unclassified	0.1926140113
+UniRef50_UPI0003C11530: PREDICTED: probable transcriptional regulator ycf27-like	0.1926102379
+UniRef50_UPI0003C11530: PREDICTED: probable transcriptional regulator ycf27-like|unclassified	0.1926102379
+UniRef50_Q6K3V8	0.1926049833
+UniRef50_Q6K3V8|unclassified	0.1926049833
+UniRef50_UPI0003A49249: metallophosphoesterase	0.1925983888
+UniRef50_UPI0003A49249: metallophosphoesterase|unclassified	0.1925983888
+UniRef50_UPI0004634FA1: hypothetical protein	0.1925708469
+UniRef50_UPI0004634FA1: hypothetical protein|unclassified	0.1925708469
+UniRef50_Q8LAX0: Homocysteine S-methyltransferase 3	0.1925607065
+UniRef50_Q8LAX0: Homocysteine S-methyltransferase 3|unclassified	0.1925607065
+UniRef50_UPI0004788CA9: hypothetical protein	0.1925529195
+UniRef50_UPI0004788CA9: hypothetical protein|unclassified	0.1925529195
+UniRef50_UPI00037546AE: hypothetical protein	0.1925305860
+UniRef50_UPI00037546AE: hypothetical protein|unclassified	0.1925305860
+UniRef50_Q04G65: Adenylate kinase	0.1925259885
+UniRef50_Q04G65: Adenylate kinase|unclassified	0.1925259885
+UniRef50_UPI00037921C5: hypothetical protein	0.1925216565
+UniRef50_UPI00037921C5: hypothetical protein|unclassified	0.1925216565
+UniRef50_UPI0003EB1598: hypothetical protein	0.1925192717
+UniRef50_UPI0003EB1598: hypothetical protein|unclassified	0.1925192717
+UniRef50_UPI0002D738C7: hypothetical protein	0.1925117336
+UniRef50_UPI0002D738C7: hypothetical protein|unclassified	0.1925117336
+UniRef50_UPI00039EAFFC: secretion protein HylD	0.1925105663
+UniRef50_UPI00039EAFFC: secretion protein HylD|unclassified	0.1925105663
+UniRef50_R2P5L9	0.1925072838
+UniRef50_R2P5L9|unclassified	0.1925072838
+UniRef50_UPI00046491BC: chemotaxis protein	0.1925070485
+UniRef50_UPI00046491BC: chemotaxis protein|unclassified	0.1925070485
+UniRef50_UPI000477BCFD: NAD(P)H nitroreductase YfkO	0.1925044285
+UniRef50_UPI000477BCFD: NAD(P)H nitroreductase YfkO|unclassified	0.1925044285
+UniRef50_C3AN84: Membrane associated protein	0.1924958664
+UniRef50_C3AN84: Membrane associated protein|unclassified	0.1924958664
+UniRef50_UPI000377572F: hypothetical protein	0.1924694575
+UniRef50_UPI000377572F: hypothetical protein|unclassified	0.1924694575
+UniRef50_UPI000467ACA1: hypothetical protein	0.1924383797
+UniRef50_UPI000467ACA1: hypothetical protein|unclassified	0.1924383797
+UniRef50_B7GFY3: Phage shock protein A	0.1924349291
+UniRef50_B7GFY3: Phage shock protein A|unclassified	0.1924349291
+UniRef50_G4R6E8	0.1924080940
+UniRef50_G4R6E8|unclassified	0.1924080940
+UniRef50_UPI0003A13667: chromosomal replication initiator, DnaA	0.1924067979
+UniRef50_UPI0003A13667: chromosomal replication initiator, DnaA|unclassified	0.1924067979
+UniRef50_UPI00030CFB49: DNA repair protein RecO	0.1924054057
+UniRef50_UPI00030CFB49: DNA repair protein RecO|unclassified	0.1924054057
+UniRef50_UPI00039558C1: ABC transporter permease	0.1923753654
+UniRef50_UPI00039558C1: ABC transporter permease|unclassified	0.1923753654
+UniRef50_UPI000381C57B: N-formimino-L-glutamate deiminase, partial	0.1923747592
+UniRef50_UPI000381C57B: N-formimino-L-glutamate deiminase, partial|unclassified	0.1923747592
+UniRef50_U2E2H2: Multidrug resistance efflux pump protein (Fragment)	0.1923532999
+UniRef50_U2E2H2: Multidrug resistance efflux pump protein (Fragment)|unclassified	0.1923532999
+UniRef50_C6J727	0.1923430474
+UniRef50_C6J727|unclassified	0.1923430474
+UniRef50_A4ZNV6: Truncated internalin A	0.1923382843
+UniRef50_A4ZNV6: Truncated internalin A|unclassified	0.1923382843
+UniRef50_Q0APB9: DNA-directed RNA polymerase subunit omega	0.1923263756
+UniRef50_Q0APB9: DNA-directed RNA polymerase subunit omega|unclassified	0.1923263756
+UniRef50_UPI0001B436BC: multidrug-efflux transporter, partial	0.1923237594
+UniRef50_UPI0001B436BC: multidrug-efflux transporter, partial|unclassified	0.1923237594
+UniRef50_F2I974	0.1923134100
+UniRef50_F2I974|unclassified	0.1923134100
+UniRef50_W6MEB7: Transposase	0.1923070379
+UniRef50_W6MEB7: Transposase|unclassified	0.1923070379
+UniRef50_W0J2E8	0.1922954413
+UniRef50_W0J2E8|unclassified	0.1922954413
+UniRef50_UPI00028A1DE1: deoxyribodipyrimidine photolyase, partial	0.1922924355
+UniRef50_UPI00028A1DE1: deoxyribodipyrimidine photolyase, partial|unclassified	0.1922924355
+UniRef50_U6GJZ6	0.1922775689
+UniRef50_U6GJZ6|unclassified	0.1922775689
+UniRef50_K8NIA1	0.1922690553
+UniRef50_K8NIA1|unclassified	0.1922690553
+UniRef50_Q7MUC6: Non-canonical purine NTP pyrophosphatase	0.1922406040
+UniRef50_Q7MUC6: Non-canonical purine NTP pyrophosphatase|unclassified	0.1922406040
+UniRef50_UPI000367658B: hypothetical protein	0.1922404559
+UniRef50_UPI000367658B: hypothetical protein|unclassified	0.1922404559
+UniRef50_UPI00037F5181: hypothetical protein	0.1922397466
+UniRef50_UPI00037F5181: hypothetical protein|unclassified	0.1922397466
+UniRef50_UPI000478591D: amino acid ABC transporter permease	0.1922396197
+UniRef50_UPI000478591D: amino acid ABC transporter permease|unclassified	0.1922396197
+UniRef50_UPI00029D989C: PREDICTED: putative NPIP-like protein LOC100132247-like, partial	0.1922190223
+UniRef50_UPI00029D989C: PREDICTED: putative NPIP-like protein LOC100132247-like, partial|unclassified	0.1922190223
+UniRef50_UPI00037A1823: CobW	0.1922167030
+UniRef50_UPI00037A1823: CobW|unclassified	0.1922167030
+UniRef50_UPI000475FACA: phage tail protein	0.1921903805
+UniRef50_UPI000475FACA: phage tail protein|unclassified	0.1921903805
+UniRef50_UPI00045EBAA8: surfeit 1	0.1921692690
+UniRef50_UPI00045EBAA8: surfeit 1|unclassified	0.1921692690
+UniRef50_UPI0003A0CBF8: MULTISPECIES: ribose-phosphate pyrophosphokinase	0.1921637210
+UniRef50_UPI0003A0CBF8: MULTISPECIES: ribose-phosphate pyrophosphokinase|unclassified	0.1921637210
+UniRef50_W1TK64	0.1921459944
+UniRef50_W1TK64|unclassified	0.1921459944
+UniRef50_P05378: Anthranilate synthase component 1	0.1921247299
+UniRef50_P05378: Anthranilate synthase component 1|unclassified	0.1921247299
+UniRef50_O03077: ATP synthase subunit beta, chloroplastic (Fragment)	0.1921209108
+UniRef50_O03077: ATP synthase subunit beta, chloroplastic (Fragment)|unclassified	0.1921209108
+UniRef50_Z5RM96	0.1921188518
+UniRef50_Z5RM96|unclassified	0.1921188518
+UniRef50_UPI0003F13BBE: PREDICTED: homeobox protein TGIF1-like	0.1921031132
+UniRef50_UPI0003F13BBE: PREDICTED: homeobox protein TGIF1-like|unclassified	0.1921031132
+UniRef50_UPI000395BB1D: hydroxyacid dehydrogenase	0.1920895286
+UniRef50_UPI000395BB1D: hydroxyacid dehydrogenase|unclassified	0.1920895286
+UniRef50_UPI000472E7B9: hypothetical protein	0.1920849498
+UniRef50_UPI000472E7B9: hypothetical protein|unclassified	0.1920849498
+UniRef50_UPI0003FBFEB1: penicillin-binding protein	0.1920711072
+UniRef50_UPI0003FBFEB1: penicillin-binding protein|unclassified	0.1920711072
+UniRef50_B3CV32: Tyrosine--tRNA ligase	0.1920635146
+UniRef50_B3CV32: Tyrosine--tRNA ligase|unclassified	0.1920635146
+UniRef50_UPI00038FE8C9: Probable tRNA threonylcarbamoyladenosine biosynthesis protein Gcp	0.1920627872
+UniRef50_UPI00038FE8C9: Probable tRNA threonylcarbamoyladenosine biosynthesis protein Gcp|unclassified	0.1920627872
+UniRef50_K4KIN4: Secretion protein HlyD family protein	0.1920619724
+UniRef50_K4KIN4: Secretion protein HlyD family protein|unclassified	0.1920619724
+UniRef50_A0KKF3: Acylphosphatase	0.1920588264
+UniRef50_A0KKF3: Acylphosphatase|unclassified	0.1920588264
+UniRef50_X0UID6: Marine sediment metagenome DNA, contig: S01H1_S14201	0.1920498598
+UniRef50_X0UID6: Marine sediment metagenome DNA, contig: S01H1_S14201|unclassified	0.1920498598
+UniRef50_A3UKH7	0.1920340861
+UniRef50_A3UKH7|unclassified	0.1920340861
+UniRef50_Q11DP5	0.1920322844
+UniRef50_Q11DP5|unclassified	0.1920322844
+UniRef50_W6F174	0.1919974883
+UniRef50_W6F174|unclassified	0.1919974883
+UniRef50_UPI00035CFEF3: hypothetical protein	0.1919821215
+UniRef50_UPI00035CFEF3: hypothetical protein|unclassified	0.1919821215
+UniRef50_A0A017HH24: Small heat shock protein	0.1919789826
+UniRef50_A0A017HH24: Small heat shock protein|unclassified	0.1919789826
+UniRef50_UPI00037C23DB: hypothetical protein	0.1919750146
+UniRef50_UPI00037C23DB: hypothetical protein|unclassified	0.1919750146
+UniRef50_UPI00041F6C82: hypothetical protein	0.1919384227
+UniRef50_UPI00041F6C82: hypothetical protein|unclassified	0.1919384227
+UniRef50_E6LD20	0.1919231153
+UniRef50_E6LD20|unclassified	0.1919231153
+UniRef50_A4E916	0.1919216445
+UniRef50_A4E916|unclassified	0.1919216445
+UniRef50_Q2Y5B5: Ribosomal RNA small subunit methyltransferase G	0.1919151511
+UniRef50_Q2Y5B5: Ribosomal RNA small subunit methyltransferase G|unclassified	0.1919151511
+UniRef50_D8MQ40	0.1919144188
+UniRef50_D8MQ40|unclassified	0.1919144188
+UniRef50_UPI0003A61D89: hypothetical protein	0.1919140933
+UniRef50_UPI0003A61D89: hypothetical protein|unclassified	0.1919140933
+UniRef50_UPI0003C7EA97: protein tyrosine kinase	0.1918997462
+UniRef50_UPI0003C7EA97: protein tyrosine kinase|unclassified	0.1918997462
+UniRef50_UPI00036891D5: hypothetical protein	0.1918852881
+UniRef50_UPI00036891D5: hypothetical protein|unclassified	0.1918852881
+UniRef50_UPI0003770934: hypothetical protein, partial	0.1918759941
+UniRef50_UPI0003770934: hypothetical protein, partial|unclassified	0.1918759941
+UniRef50_UPI000472B9A5: hypothetical protein	0.1918753902
+UniRef50_UPI000472B9A5: hypothetical protein|unclassified	0.1918753902
+UniRef50_G9RS55	0.1918611406
+UniRef50_G9RS55|unclassified	0.1918611406
+UniRef50_K7EGU5	0.1918601920
+UniRef50_K7EGU5|unclassified	0.1918601920
+UniRef50_E3EXA4: ABC transporter, substrate binding protein	0.1918570707
+UniRef50_E3EXA4: ABC transporter, substrate binding protein|unclassified	0.1918570707
+UniRef50_A4YNQ7: Fructose-1,6-bisphosphatase class 1	0.1918476698
+UniRef50_A4YNQ7: Fructose-1,6-bisphosphatase class 1|unclassified	0.1918476698
+UniRef50_A0A011RZV2	0.1918219776
+UniRef50_A0A011RZV2|unclassified	0.1918219776
+UniRef50_Q1IX28: Periplasmic YigE-like protein	0.1918188803
+UniRef50_Q1IX28: Periplasmic YigE-like protein|unclassified	0.1918188803
+UniRef50_UPI000404A670: ABC transporter permease	0.1918037035
+UniRef50_UPI000404A670: ABC transporter permease|unclassified	0.1918037035
+UniRef50_Q04614: NADH-ubiquinone oxidoreductase chain 4L	0.1917917084
+UniRef50_Q04614: NADH-ubiquinone oxidoreductase chain 4L|unclassified	0.1917917084
+UniRef50_X6ETW6: Membrane protein	0.1917694320
+UniRef50_X6ETW6: Membrane protein|unclassified	0.1917694320
+UniRef50_UPI000414286F: hypothetical protein	0.1917611428
+UniRef50_UPI000414286F: hypothetical protein|unclassified	0.1917611428
+UniRef50_W8U9R2: Type IV pilus assembly protein TapC	0.1917478054
+UniRef50_W8U9R2: Type IV pilus assembly protein TapC|unclassified	0.1917478054
+UniRef50_UPI00047AAFDF: alpha-L-glutamate ligase	0.1917251499
+UniRef50_UPI00047AAFDF: alpha-L-glutamate ligase|unclassified	0.1917251499
+UniRef50_R7LCT1	0.1917246273
+UniRef50_R7LCT1|unclassified	0.1917246273
+UniRef50_A5IJD3: Polyamine aminopropyl transferase	0.1917127005
+UniRef50_A5IJD3: Polyamine aminopropyl transferase|unclassified	0.1917127005
+UniRef50_Q7N5Z2: Acylphosphatase	0.1917014174
+UniRef50_Q7N5Z2: Acylphosphatase|unclassified	0.1917014174
+UniRef50_UPI0003658F8E: hypothetical protein, partial	0.1916976902
+UniRef50_UPI0003658F8E: hypothetical protein, partial|unclassified	0.1916976902
+UniRef50_UPI0003EF4414: hypothetical protein	0.1916692289
+UniRef50_UPI0003EF4414: hypothetical protein|unclassified	0.1916692289
+UniRef50_X1CKZ7: Marine sediment metagenome DNA, contig: S01H4_S21118	0.1916617122
+UniRef50_X1CKZ7: Marine sediment metagenome DNA, contig: S01H4_S21118|unclassified	0.1916617122
+UniRef50_UPI0004677159: hypothetical protein	0.1916594314
+UniRef50_UPI0004677159: hypothetical protein|unclassified	0.1916594314
+UniRef50_UPI000475A496: hypothetical protein	0.1916430214
+UniRef50_UPI000475A496: hypothetical protein|unclassified	0.1916430214
+UniRef50_UPI000378C139: hypothetical protein	0.1916421049
+UniRef50_UPI000378C139: hypothetical protein|unclassified	0.1916421049
+UniRef50_A0A023CZT6: Late competence protein ComGC	0.1916315640
+UniRef50_A0A023CZT6: Late competence protein ComGC|unclassified	0.1916315640
+UniRef50_Q6NEL2: Peptide methionine sulfoxide reductase MsrA	0.1916165301
+UniRef50_Q6NEL2: Peptide methionine sulfoxide reductase MsrA|unclassified	0.1916165301
+UniRef50_U6M5K1	0.1916132085
+UniRef50_U6M5K1|unclassified	0.1916132085
+UniRef50_W8U5C4: DUTPase	0.1916129728
+UniRef50_W8U5C4: DUTPase|unclassified	0.1916129728
+UniRef50_UPI00046F3249: hypothetical protein	0.1916064972
+UniRef50_UPI00046F3249: hypothetical protein|unclassified	0.1916064972
+UniRef50_Q3JCY7: Holo-[acyl-carrier-protein] synthase	0.1916060202
+UniRef50_Q3JCY7: Holo-[acyl-carrier-protein] synthase|unclassified	0.1916060202
+UniRef50_UPI000288C6B9: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA	0.1915717088
+UniRef50_UPI000288C6B9: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA|unclassified	0.1915717088
+UniRef50_M4HS21: Transposase, IS4 family	0.1915407053
+UniRef50_M4HS21: Transposase, IS4 family|unclassified	0.1915407053
+UniRef50_Q9FFF4: Acetolactate synthase small subunit 1, chloroplastic	0.1915358511
+UniRef50_Q9FFF4: Acetolactate synthase small subunit 1, chloroplastic|unclassified	0.1915358511
+UniRef50_UPI000181656F: hypothetical protein, partial	0.1915305195
+UniRef50_UPI000181656F: hypothetical protein, partial|unclassified	0.1915305195
+UniRef50_UPI000377D283: hypothetical protein	0.1915302635
+UniRef50_UPI000377D283: hypothetical protein|unclassified	0.1915302635
+UniRef50_UPI000348624A: hypothetical protein	0.1915298304
+UniRef50_UPI000348624A: hypothetical protein|unclassified	0.1915298304
+UniRef50_U4V4Z3: Beta-barrel assembly machine subunit BamF	0.1915288437
+UniRef50_U4V4Z3: Beta-barrel assembly machine subunit BamF|unclassified	0.1915288437
+UniRef50_UPI00037EA47E: hypothetical protein	0.1915237935
+UniRef50_UPI00037EA47E: hypothetical protein|unclassified	0.1915237935
+UniRef50_UPI00036F3E69: hypothetical protein	0.1915208566
+UniRef50_UPI00036F3E69: hypothetical protein|unclassified	0.1915208566
+UniRef50_UPI000475085D: Clp protease ATP-binding protein	0.1915140477
+UniRef50_UPI000475085D: Clp protease ATP-binding protein|unclassified	0.1915140477
+UniRef50_U3QNF2: Membrane protein	0.1915095135
+UniRef50_U3QNF2: Membrane protein|unclassified	0.1915095135
+UniRef50_D6C476	0.1915042195
+UniRef50_D6C476|unclassified	0.1915042195
+UniRef50_UPI00036837D3: hypothetical protein	0.1914997779
+UniRef50_UPI00036837D3: hypothetical protein|unclassified	0.1914997779
+UniRef50_UPI0004139E07: GntR family transcriptional regulator	0.1914831110
+UniRef50_UPI0004139E07: GntR family transcriptional regulator|unclassified	0.1914831110
+UniRef50_E8WLV9	0.1914807529
+UniRef50_E8WLV9|unclassified	0.1914807529
+UniRef50_UPI0003729498: antiporter, partial	0.1914782929
+UniRef50_UPI0003729498: antiporter, partial|unclassified	0.1914782929
+UniRef50_S6AQI0	0.1914659346
+UniRef50_S6AQI0|unclassified	0.1914659346
+UniRef50_O33655: Lactate 2-monooxygenase	0.1914628261
+UniRef50_O33655: Lactate 2-monooxygenase|unclassified	0.1914628261
+UniRef50_M9R6I4	0.1914052906
+UniRef50_M9R6I4|unclassified	0.1914052906
+UniRef50_UPI0004746364: ABC transporter ATP-binding protein	0.1913479951
+UniRef50_UPI0004746364: ABC transporter ATP-binding protein|unclassified	0.1913479951
+UniRef50_A0A024HXW4	0.1913468220
+UniRef50_A0A024HXW4|unclassified	0.1913468220
+UniRef50_UPI000422DBC0: MULTISPECIES: hypothetical protein	0.1913414494
+UniRef50_UPI000422DBC0: MULTISPECIES: hypothetical protein|unclassified	0.1913414494
+UniRef50_G2QL50	0.1913324304
+UniRef50_G2QL50|unclassified	0.1913324304
+UniRef50_UPI0003ACF26C: hypothetical protein	0.1913262971
+UniRef50_UPI0003ACF26C: hypothetical protein|unclassified	0.1913262971
+UniRef50_UPI000381B571: hypothetical protein	0.1913235190
+UniRef50_UPI000381B571: hypothetical protein|unclassified	0.1913235190
+UniRef50_UPI00047070F3: hypothetical protein	0.1913118467
+UniRef50_UPI00047070F3: hypothetical protein|unclassified	0.1913118467
+UniRef50_UPI00036A2F02: aldose sugar dehydrogenase YliI, partial	0.1913001035
+UniRef50_UPI00036A2F02: aldose sugar dehydrogenase YliI, partial|unclassified	0.1913001035
+UniRef50_B1M5G1	0.1912952746
+UniRef50_B1M5G1|unclassified	0.1912952746
+UniRef50_M4QZL8	0.1912883561
+UniRef50_M4QZL8|unclassified	0.1912883561
+UniRef50_K1DV80: Cupin superfamily protein	0.1912660792
+UniRef50_K1DV80: Cupin superfamily protein|unclassified	0.1912660792
+UniRef50_B6KAZ2	0.1912570312
+UniRef50_B6KAZ2|unclassified	0.1912570312
+UniRef50_V4X579	0.1912550229
+UniRef50_V4X579|unclassified	0.1912550229
+UniRef50_F6DA06	0.1912476323
+UniRef50_F6DA06|unclassified	0.1912476323
+UniRef50_UPI00035F60FF: hypothetical protein	0.1912446317
+UniRef50_UPI00035F60FF: hypothetical protein|unclassified	0.1912446317
+UniRef50_UPI00042036A2: flagellar hook protein FlgE	0.1912138771
+UniRef50_UPI00042036A2: flagellar hook protein FlgE|unclassified	0.1912138771
+UniRef50_W8SWR2: Fructose-bisphosphate aldolase	0.1911819376
+UniRef50_W8SWR2: Fructose-bisphosphate aldolase|unclassified	0.1911819376
+UniRef50_E8TJV3: YCII-related protein	0.1911554978
+UniRef50_E8TJV3: YCII-related protein|unclassified	0.1911554978
+UniRef50_W8Z0S3	0.1911554622
+UniRef50_W8Z0S3|unclassified	0.1911554622
+UniRef50_UPI000248EC13: arabinose 5-phosphate isomerase	0.1911535879
+UniRef50_UPI000248EC13: arabinose 5-phosphate isomerase|unclassified	0.1911535879
+UniRef50_A1AYV3: Tryptophan synthase alpha chain	0.1911427439
+UniRef50_A1AYV3: Tryptophan synthase alpha chain|unclassified	0.1911427439
+UniRef50_UPI000300B5EF: pyrroline-5-carboxylate dehydrogenase	0.1911424585
+UniRef50_UPI000300B5EF: pyrroline-5-carboxylate dehydrogenase|unclassified	0.1911424585
+UniRef50_P44123: 6-carboxy-5,6,7,8-tetrahydropterin synthase	0.1911386942
+UniRef50_P44123: 6-carboxy-5,6,7,8-tetrahydropterin synthase|unclassified	0.1911386942
+UniRef50_UPI0004682957: tRNA uridine 5-carboxymethylaminomethyl modification protein	0.1910832196
+UniRef50_UPI0004682957: tRNA uridine 5-carboxymethylaminomethyl modification protein|unclassified	0.1910832196
+UniRef50_B3W7E6: N-acetyldiaminopimelate deacetylase	0.1910783197
+UniRef50_B3W7E6: N-acetyldiaminopimelate deacetylase|unclassified	0.1910783197
+UniRef50_UPI00037EF484: hypothetical protein, partial	0.1910781520
+UniRef50_UPI00037EF484: hypothetical protein, partial|unclassified	0.1910781520
+UniRef50_UPI0003902AC6: hypothetical protein	0.1910720709
+UniRef50_UPI0003902AC6: hypothetical protein|unclassified	0.1910720709
+UniRef50_D4Z3C4	0.1910679856
+UniRef50_D4Z3C4|unclassified	0.1910679856
+UniRef50_UPI000237EE98: oxidoreductase	0.1910679570
+UniRef50_UPI000237EE98: oxidoreductase|unclassified	0.1910679570
+UniRef50_G9PVP0: L-ribulose-5-phosphate 4-epimerase	0.1910653701
+UniRef50_G9PVP0: L-ribulose-5-phosphate 4-epimerase|unclassified	0.1910653701
+UniRef50_X0SSD5: Marine sediment metagenome DNA, contig: S01H1_L05260 (Fragment)	0.1910406233
+UniRef50_X0SSD5: Marine sediment metagenome DNA, contig: S01H1_L05260 (Fragment)|unclassified	0.1910406233
+UniRef50_D6TVY7	0.1910382492
+UniRef50_D6TVY7|unclassified	0.1910382492
+UniRef50_A5V4D5	0.1910325374
+UniRef50_A5V4D5|unclassified	0.1910325374
+UniRef50_UPI00046C714E: hypothetical protein	0.1910294249
+UniRef50_UPI00046C714E: hypothetical protein|unclassified	0.1910294249
+UniRef50_UPI0002D6628B: hypothetical protein	0.1910188547
+UniRef50_UPI0002D6628B: hypothetical protein|unclassified	0.1910188547
+UniRef50_U4S781	0.1910112130
+UniRef50_U4S781|unclassified	0.1910112130
+UniRef50_V6H9Y5: 6-pyruvoyl tetrahydropterin synthase	0.1910002884
+UniRef50_V6H9Y5: 6-pyruvoyl tetrahydropterin synthase|unclassified	0.1910002884
+UniRef50_K6YV26	0.1909987265
+UniRef50_K6YV26|unclassified	0.1909987265
+UniRef50_Q5WFE6	0.1909970591
+UniRef50_Q5WFE6|unclassified	0.1909970591
+UniRef50_J9P7E4	0.1909939162
+UniRef50_J9P7E4|unclassified	0.1909939162
+UniRef50_A8LSF6	0.1909916316
+UniRef50_A8LSF6|unclassified	0.1909916316
+UniRef50_UPI00037BF8D0: hypothetical protein	0.1909902874
+UniRef50_UPI00037BF8D0: hypothetical protein|unclassified	0.1909902874
+UniRef50_A0A023RNH0	0.1909790096
+UniRef50_A0A023RNH0|unclassified	0.1909790096
+UniRef50_UPI000471A1D9: branched-chain amino acid transporter II carrier protein	0.1909572470
+UniRef50_UPI000471A1D9: branched-chain amino acid transporter II carrier protein|unclassified	0.1909572470
+UniRef50_A4C9C5	0.1909303181
+UniRef50_A4C9C5|unclassified	0.1909303181
+UniRef50_X1SQS0: Marine sediment metagenome DNA, contig: S12H4_S03749 (Fragment)	0.1909278704
+UniRef50_X1SQS0: Marine sediment metagenome DNA, contig: S12H4_S03749 (Fragment)|unclassified	0.1909278704
+UniRef50_UPI000404CD70: LysR family transcriptional regulator	0.1909269254
+UniRef50_UPI000404CD70: LysR family transcriptional regulator|unclassified	0.1909269254
+UniRef50_UPI00047944EA: hypothetical protein	0.1909183273
+UniRef50_UPI00047944EA: hypothetical protein|unclassified	0.1909183273
+UniRef50_D6EHT9: Nitrate reductase subunit beta NarH2	0.1909169248
+UniRef50_D6EHT9: Nitrate reductase subunit beta NarH2|unclassified	0.1909169248
+UniRef50_UPI0003605BA6: hypothetical protein, partial	0.1909098971
+UniRef50_UPI0003605BA6: hypothetical protein, partial|unclassified	0.1909098971
+UniRef50_UPI0004040B20: PTS sugar transporter subunit IIA	0.1909092136
+UniRef50_UPI0004040B20: PTS sugar transporter subunit IIA|unclassified	0.1909092136
+UniRef50_Q2S9Q5: Shikimate kinase	0.1908868205
+UniRef50_Q2S9Q5: Shikimate kinase|unclassified	0.1908868205
+UniRef50_UPI0002E62F3E: cold-shock protein	0.1908484210
+UniRef50_UPI0002E62F3E: cold-shock protein|unclassified	0.1908484210
+UniRef50_T2I1A7	0.1908447528
+UniRef50_T2I1A7|unclassified	0.1908447528
+UniRef50_UPI00035FC6CB: hypothetical protein	0.1908275002
+UniRef50_UPI00035FC6CB: hypothetical protein|unclassified	0.1908275002
+UniRef50_UPI000470D224: sugar ABC transporter permease	0.1908173485
+UniRef50_UPI000470D224: sugar ABC transporter permease|unclassified	0.1908173485
+UniRef50_X0VX75: Marine sediment metagenome DNA, contig: S01H1_S08108 (Fragment)	0.1908153098
+UniRef50_X0VX75: Marine sediment metagenome DNA, contig: S01H1_S08108 (Fragment)|unclassified	0.1908153098
+UniRef50_V8A535	0.1908057165
+UniRef50_V8A535|unclassified	0.1908057165
+UniRef50_UPI00046E5F78: hypothetical protein	0.1908006010
+UniRef50_UPI00046E5F78: hypothetical protein|unclassified	0.1908006010
+UniRef50_D4U0U9: Cell wall-binding repeat protein	0.1907925111
+UniRef50_D4U0U9: Cell wall-binding repeat protein|unclassified	0.1907925111
+UniRef50_UPI0003061140: hypothetical protein	0.1907831384
+UniRef50_UPI0003061140: hypothetical protein|unclassified	0.1907831384
+UniRef50_UPI0002D56393: hypothetical protein	0.1907678736
+UniRef50_UPI0002D56393: hypothetical protein|unclassified	0.1907678736
+UniRef50_UPI000376A042: hypothetical protein	0.1907644072
+UniRef50_UPI000376A042: hypothetical protein|unclassified	0.1907644072
+UniRef50_Q493F4: Putative Holliday junction resolvase	0.1907436406
+UniRef50_Q493F4: Putative Holliday junction resolvase|unclassified	0.1907436406
+UniRef50_UPI000468B1D5: hypothetical protein	0.1907302422
+UniRef50_UPI000468B1D5: hypothetical protein|unclassified	0.1907302422
+UniRef50_E1VM72: Type IV fimbrial biogenesis protein, involved in pilus assembly	0.1907266218
+UniRef50_E1VM72: Type IV fimbrial biogenesis protein, involved in pilus assembly|unclassified	0.1907266218
+UniRef50_UPI00037754B2: hypothetical protein	0.1907142108
+UniRef50_UPI00037754B2: hypothetical protein|unclassified	0.1907142108
+UniRef50_Q820V0: Holo-[acyl-carrier-protein] synthase	0.1906963408
+UniRef50_Q820V0: Holo-[acyl-carrier-protein] synthase|unclassified	0.1906963408
+UniRef50_UPI00036224FE: MULTISPECIES: hypothetical protein	0.1906930800
+UniRef50_UPI00036224FE: MULTISPECIES: hypothetical protein|unclassified	0.1906930800
+UniRef50_D4SNX0: Trap dicarboxylate transporter, dctm subunit	0.1906901737
+UniRef50_D4SNX0: Trap dicarboxylate transporter, dctm subunit|unclassified	0.1906901737
+UniRef50_Q3JC88: Ribosomal protein L11 methyltransferase	0.1906698495
+UniRef50_Q3JC88: Ribosomal protein L11 methyltransferase|unclassified	0.1906698495
+UniRef50_B2VKX1: UPF0225 protein ETA_15740	0.1906362696
+UniRef50_B2VKX1: UPF0225 protein ETA_15740|unclassified	0.1906362696
+UniRef50_UPI000364349F: hypothetical protein	0.1906341100
+UniRef50_UPI000364349F: hypothetical protein|unclassified	0.1906341100
+UniRef50_UPI00036D52D4: hypothetical protein	0.1906299756
+UniRef50_UPI00036D52D4: hypothetical protein|unclassified	0.1906299756
+UniRef50_K1SMD7: Radical SAM domain-containing protein (Fragment)	0.1906285842
+UniRef50_K1SMD7: Radical SAM domain-containing protein (Fragment)|unclassified	0.1906285842
+UniRef50_V9VSE2	0.1906225022
+UniRef50_V9VSE2|unclassified	0.1906225022
+UniRef50_UPI0002558DCB: heat shock protein HSP33	0.1906101090
+UniRef50_UPI0002558DCB: heat shock protein HSP33|unclassified	0.1906101090
+UniRef50_J2ED30	0.1906021211
+UniRef50_J2ED30|unclassified	0.1906021211
+UniRef50_F8JNJ0	0.1905922063
+UniRef50_F8JNJ0|unclassified	0.1905922063
+UniRef50_E1M0K4: N-acetyl-glucosamine matabolism	0.1905874329
+UniRef50_E1M0K4: N-acetyl-glucosamine matabolism|unclassified	0.1905874329
+UniRef50_T0TNK9	0.1905746854
+UniRef50_T0TNK9|unclassified	0.1905746854
+UniRef50_Q42684: Superoxide dismutase [Mn], mitochondrial	0.1905644480
+UniRef50_Q42684: Superoxide dismutase [Mn], mitochondrial|unclassified	0.1905644480
+UniRef50_UPI0003774F54: hypothetical protein	0.1905629891
+UniRef50_UPI0003774F54: hypothetical protein|unclassified	0.1905629891
+UniRef50_C0MHE9	0.1905610762
+UniRef50_C0MHE9|unclassified	0.1905610762
+UniRef50_UPI00036CCC09: hypothetical protein	0.1905460255
+UniRef50_UPI00036CCC09: hypothetical protein|unclassified	0.1905460255
+UniRef50_UPI00040AA97B: hypothetical protein	0.1905367284
+UniRef50_UPI00040AA97B: hypothetical protein|unclassified	0.1905367284
+UniRef50_UPI00035D66E8: hypothetical protein	0.1905247548
+UniRef50_UPI00035D66E8: hypothetical protein|unclassified	0.1905247548
+UniRef50_UPI000365634C: hypothetical protein	0.1905181842
+UniRef50_UPI000365634C: hypothetical protein|unclassified	0.1905181842
+UniRef50_UPI00037069DF: hypothetical protein	0.1905169220
+UniRef50_UPI00037069DF: hypothetical protein|unclassified	0.1905169220
+UniRef50_P49323: Non-heme chloroperoxidase	0.1905131277
+UniRef50_P49323: Non-heme chloroperoxidase|unclassified	0.1905131277
+UniRef50_UPI00037CFEA1: hypothetical protein	0.1905117231
+UniRef50_UPI00037CFEA1: hypothetical protein|unclassified	0.1905117231
+UniRef50_UPI000288F847: TRAP dicarboxylate transporter subunit DctP, partial	0.1905098881
+UniRef50_UPI000288F847: TRAP dicarboxylate transporter subunit DctP, partial|unclassified	0.1905098881
+UniRef50_C2UPC1: DNA gyrase subunit B	0.1905039253
+UniRef50_C2UPC1: DNA gyrase subunit B|unclassified	0.1905039253
+UniRef50_W5X8X9: 30S ribosomal protein S2	0.1904962056
+UniRef50_W5X8X9: 30S ribosomal protein S2|unclassified	0.1904962056
+UniRef50_UPI0003B369AA: ribonuclease III	0.1904838730
+UniRef50_UPI0003B369AA: ribonuclease III|unclassified	0.1904838730
+UniRef50_H4P2J4	0.1904644593
+UniRef50_H4P2J4|unclassified	0.1904644593
+UniRef50_M2NF25	0.1904492989
+UniRef50_M2NF25|unclassified	0.1904492989
+UniRef50_UPI0003B602C0: thioesterase	0.1904377358
+UniRef50_UPI0003B602C0: thioesterase|unclassified	0.1904377358
+UniRef50_Q6KZM3: Formate--tetrahydrofolate ligase	0.1904322879
+UniRef50_Q6KZM3: Formate--tetrahydrofolate ligase|unclassified	0.1904322879
+UniRef50_L8WPE0: Chromatin remodelling complex subunit domain-containing protein	0.1904266760
+UniRef50_L8WPE0: Chromatin remodelling complex subunit domain-containing protein|unclassified	0.1904266760
+UniRef50_UPI000476161E: HIT family hydrolase	0.1903937384
+UniRef50_UPI000476161E: HIT family hydrolase|unclassified	0.1903937384
+UniRef50_B2VD19: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.1903687610
+UniRef50_B2VD19: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.1903687610
+UniRef50_F7ZCM0: Thioesterase-like protein	0.1903600005
+UniRef50_F7ZCM0: Thioesterase-like protein|unclassified	0.1903600005
+UniRef50_UPI0004755FE8: HNH endonuclease	0.1903577862
+UniRef50_UPI0004755FE8: HNH endonuclease|unclassified	0.1903577862
+UniRef50_UPI000470ACF0: hypothetical protein, partial	0.1903518226
+UniRef50_UPI000470ACF0: hypothetical protein, partial|unclassified	0.1903518226
+UniRef50_X1PEF0: Marine sediment metagenome DNA, contig: S06H3_S20659	0.1903504905
+UniRef50_X1PEF0: Marine sediment metagenome DNA, contig: S06H3_S20659|unclassified	0.1903504905
+UniRef50_A4FA42	0.1903448132
+UniRef50_A4FA42|unclassified	0.1903448132
+UniRef50_U2TY54	0.1903303772
+UniRef50_U2TY54|unclassified	0.1903303772
+UniRef50_Q9JTQ0: Tryptophan--tRNA ligase	0.1903283974
+UniRef50_Q9JTQ0: Tryptophan--tRNA ligase|unclassified	0.1903283974
+UniRef50_UPI000366A351: hypothetical protein	0.1903238822
+UniRef50_UPI000366A351: hypothetical protein|unclassified	0.1903238822
+UniRef50_H1XMY5	0.1903044699
+UniRef50_H1XMY5|unclassified	0.1903044699
+UniRef50_UPI000373A3F0: hypothetical protein	0.1902962871
+UniRef50_UPI000373A3F0: hypothetical protein|unclassified	0.1902962871
+UniRef50_UPI0002B91868: hypothetical protein	0.1902941603
+UniRef50_UPI0002B91868: hypothetical protein|unclassified	0.1902941603
+UniRef50_A5F1A0: Probable chemoreceptor glutamine deamidase CheD	0.1902905158
+UniRef50_A5F1A0: Probable chemoreceptor glutamine deamidase CheD|unclassified	0.1902905158
+UniRef50_UPI00046FA1F7: hypothetical protein	0.1902898756
+UniRef50_UPI00046FA1F7: hypothetical protein|unclassified	0.1902898756
+UniRef50_J9GER2: ABC-type organic solvent resistance transport system permease protein	0.1902890030
+UniRef50_J9GER2: ABC-type organic solvent resistance transport system permease protein|unclassified	0.1902890030
+UniRef50_F9GPS6: Putative hydB/Nqo4-like protein	0.1902814623
+UniRef50_F9GPS6: Putative hydB/Nqo4-like protein|unclassified	0.1902814623
+UniRef50_T2BEP8	0.1902722537
+UniRef50_T2BEP8|unclassified	0.1902722537
+UniRef50_Q07L14: Oxaloacetate decarboxylase	0.1902307392
+UniRef50_Q07L14: Oxaloacetate decarboxylase|unclassified	0.1902307392
+UniRef50_W9CKC5	0.1902149337
+UniRef50_W9CKC5|unclassified	0.1902149337
+UniRef50_P45352: Thymidylate synthase	0.1902101467
+UniRef50_P45352: Thymidylate synthase|unclassified	0.1902101467
+UniRef50_UPI000262C9C7: cold-shock protein	0.1902051463
+UniRef50_UPI000262C9C7: cold-shock protein|unclassified	0.1902051463
+UniRef50_G7Z4U1	0.1901981990
+UniRef50_G7Z4U1|unclassified	0.1901981990
+UniRef50_UPI000440BEAF: PREDICTED: bifunctional methylenetetrahydrofolate dehydrogenase/cyclohydrolase, mitochondrial-like	0.1901620496
+UniRef50_UPI000440BEAF: PREDICTED: bifunctional methylenetetrahydrofolate dehydrogenase/cyclohydrolase, mitochondrial-like|unclassified	0.1901620496
+UniRef50_E3N5K5: CRE-PQN-75 protein	0.1901605355
+UniRef50_E3N5K5: CRE-PQN-75 protein|unclassified	0.1901605355
+UniRef50_UPI0002003BAB: metallophosphoesterase, partial	0.1901572065
+UniRef50_UPI0002003BAB: metallophosphoesterase, partial|unclassified	0.1901572065
+UniRef50_W1YMB5: Protein nrdI (Fragment)	0.1901556902
+UniRef50_W1YMB5: Protein nrdI (Fragment)|unclassified	0.1901556902
+UniRef50_X8AUG1: Phage resistance PglY domain protein	0.1901516592
+UniRef50_X8AUG1: Phage resistance PglY domain protein|unclassified	0.1901516592
+UniRef50_K2F7U3	0.1901396092
+UniRef50_K2F7U3|unclassified	0.1901396092
+UniRef50_S4RAN5	0.1901205422
+UniRef50_S4RAN5|unclassified	0.1901205422
+UniRef50_UPI00036F518E: hypothetical protein	0.1901189033
+UniRef50_UPI00036F518E: hypothetical protein|unclassified	0.1901189033
+UniRef50_UPI000255D182: putative monovalent cation/H+ antiporter subunit C	0.1901157490
+UniRef50_UPI000255D182: putative monovalent cation/H+ antiporter subunit C|unclassified	0.1901157490
+UniRef50_UPI000315C27E: hypothetical protein	0.1900750910
+UniRef50_UPI000315C27E: hypothetical protein|unclassified	0.1900750910
+UniRef50_UPI000380F27D: hypothetical protein	0.1900732033
+UniRef50_UPI000380F27D: hypothetical protein|unclassified	0.1900732033
+UniRef50_UPI000375D960: prephenate dehydratase, partial	0.1900717643
+UniRef50_UPI000375D960: prephenate dehydratase, partial|unclassified	0.1900717643
+UniRef50_F7QJV7: Glyoxalase family protein	0.1900703909
+UniRef50_F7QJV7: Glyoxalase family protein|unclassified	0.1900703909
+UniRef50_V5C9A8: Anthranilate 1,2-dioxygenase electron transfer component AntC	0.1900646209
+UniRef50_V5C9A8: Anthranilate 1,2-dioxygenase electron transfer component AntC|unclassified	0.1900646209
+UniRef50_U6LWS5	0.1900560714
+UniRef50_U6LWS5|unclassified	0.1900560714
+UniRef50_A0A011R9T0: Cyclolysin	0.1900447561
+UniRef50_A0A011R9T0: Cyclolysin|unclassified	0.1900447561
+UniRef50_UPI0003F086B1: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial-like	0.1900402726
+UniRef50_UPI0003F086B1: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial-like|unclassified	0.1900402726
+UniRef50_UPI0004735486: pyridoxine 5''-phosphate synthase, partial	0.1900064010
+UniRef50_UPI0004735486: pyridoxine 5''-phosphate synthase, partial|unclassified	0.1900064010
+UniRef50_UPI0003C17B90: PREDICTED: probable sulfate transport system permease protein cysT-like, partial	0.1900024323
+UniRef50_UPI0003C17B90: PREDICTED: probable sulfate transport system permease protein cysT-like, partial|unclassified	0.1900024323
+UniRef50_S9RTN4	0.1899867458
+UniRef50_S9RTN4|unclassified	0.1899867458
+UniRef50_UPI000373DA51: hypothetical protein	0.1899842138
+UniRef50_UPI000373DA51: hypothetical protein|unclassified	0.1899842138
+UniRef50_UPI0002000C91: iron ABC transporter, partial	0.1899817074
+UniRef50_UPI0002000C91: iron ABC transporter, partial|unclassified	0.1899817074
+UniRef50_W6MDG4	0.1899759824
+UniRef50_W6MDG4|unclassified	0.1899759824
+UniRef50_Q7UDG1: IS150 orfB	0.1899522246
+UniRef50_Q7UDG1: IS150 orfB|unclassified	0.1899522246
+UniRef50_UPI0003813929: hypothetical protein	0.1899475722
+UniRef50_UPI0003813929: hypothetical protein|unclassified	0.1899475722
+UniRef50_UPI00035D52F0: hypothetical protein	0.1899472157
+UniRef50_UPI00035D52F0: hypothetical protein|unclassified	0.1899472157
+UniRef50_UPI00047D54B2: DSBA oxidoreductase	0.1898975459
+UniRef50_UPI00047D54B2: DSBA oxidoreductase|unclassified	0.1898975459
+UniRef50_UPI00047A54E3: hypothetical protein	0.1898952282
+UniRef50_UPI00047A54E3: hypothetical protein|unclassified	0.1898952282
+UniRef50_Q7VPK3	0.1898882860
+UniRef50_Q7VPK3|unclassified	0.1898882860
+UniRef50_UPI00036B39CF: hypothetical protein	0.1898783185
+UniRef50_UPI00036B39CF: hypothetical protein|unclassified	0.1898783185
+UniRef50_M9GYL7	0.1898678080
+UniRef50_M9GYL7|unclassified	0.1898678080
+UniRef50_UPI0003B41990: GTP-binding protein YchF	0.1898674700
+UniRef50_UPI0003B41990: GTP-binding protein YchF|unclassified	0.1898674700
+UniRef50_UPI0003643F10: hypothetical protein	0.1898582418
+UniRef50_UPI0003643F10: hypothetical protein|unclassified	0.1898582418
+UniRef50_K2HHE6	0.1898419689
+UniRef50_K2HHE6|unclassified	0.1898419689
+UniRef50_UPI00036F6438: hypothetical protein	0.1898417397
+UniRef50_UPI00036F6438: hypothetical protein|unclassified	0.1898417397
+UniRef50_Q8X8M1	0.1898169368
+UniRef50_Q8X8M1|unclassified	0.1898169368
+UniRef50_Q07VH6: Tripartite ATP-independent periplasmic transporter, DctQ component	0.1898144893
+UniRef50_Q07VH6: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	0.1898144893
+UniRef50_UPI000368CAD9: hypothetical protein	0.1898077705
+UniRef50_UPI000368CAD9: hypothetical protein|unclassified	0.1898077705
+UniRef50_F8HGC4: Permease of the major facilitator family protein	0.1897892904
+UniRef50_F8HGC4: Permease of the major facilitator family protein|unclassified	0.1897892904
+UniRef50_D1YW51	0.1897788553
+UniRef50_D1YW51|unclassified	0.1897788553
+UniRef50_UPI00047574E6: thiol-disulfide oxidoreductase	0.1897678909
+UniRef50_UPI00047574E6: thiol-disulfide oxidoreductase|unclassified	0.1897678909
+UniRef50_UPI0002D3B267: seryl-tRNA synthetase	0.1897648104
+UniRef50_UPI0002D3B267: seryl-tRNA synthetase|unclassified	0.1897648104
+UniRef50_H4W333	0.1897240067
+UniRef50_H4W333|unclassified	0.1897240067
+UniRef50_UPI00016ACAAE: aminopeptidase N	0.1897226832
+UniRef50_UPI00016ACAAE: aminopeptidase N|unclassified	0.1897226832
+UniRef50_UPI0002000B04: hypothetical protein	0.1897127204
+UniRef50_UPI0002000B04: hypothetical protein|unclassified	0.1897127204
+UniRef50_V2PEB0: Virulence factor MviN (Fragment)	0.1897126916
+UniRef50_V2PEB0: Virulence factor MviN (Fragment)|unclassified	0.1897126916
+UniRef50_UPI0003621B43: hypothetical protein, partial	0.1896535574
+UniRef50_UPI0003621B43: hypothetical protein, partial|unclassified	0.1896535574
+UniRef50_UPI000469241B: hypothetical protein	0.1896296170
+UniRef50_UPI000469241B: hypothetical protein|unclassified	0.1896296170
+UniRef50_UPI000472D060: transposase	0.1896229872
+UniRef50_UPI000472D060: transposase|unclassified	0.1896229872
+UniRef50_L7EAU8	0.1896031663
+UniRef50_L7EAU8|unclassified	0.1896031663
+UniRef50_S9QM02: Phenylacetic acid degradation protein PaaD, thioesterase	0.1895968896
+UniRef50_S9QM02: Phenylacetic acid degradation protein PaaD, thioesterase|unclassified	0.1895968896
+UniRef50_J3A9Z2	0.1895796634
+UniRef50_J3A9Z2|unclassified	0.1895796634
+UniRef50_A6W2T4: Shikimate kinase	0.1895701409
+UniRef50_A6W2T4: Shikimate kinase|unclassified	0.1895701409
+UniRef50_UPI00035F655C: hypothetical protein	0.1895655098
+UniRef50_UPI00035F655C: hypothetical protein|unclassified	0.1895655098
+UniRef50_G8AN52	0.1895497793
+UniRef50_G8AN52|unclassified	0.1895497793
+UniRef50_M0S151	0.1895382501
+UniRef50_M0S151|unclassified	0.1895382501
+UniRef50_A0A034UU22	0.1895334055
+UniRef50_A0A034UU22|unclassified	0.1895334055
+UniRef50_UPI00047D5D57: 50S ribosomal protein L22	0.1895289408
+UniRef50_UPI00047D5D57: 50S ribosomal protein L22|unclassified	0.1895289408
+UniRef50_U2WQV4	0.1895231403
+UniRef50_U2WQV4|unclassified	0.1895231403
+UniRef50_Q5PGW9: UPF0502 protein YceH	0.1895122509
+UniRef50_Q5PGW9: UPF0502 protein YceH|unclassified	0.1895122509
+UniRef50_K0C6H8: DoxX subfamily, putative	0.1895036137
+UniRef50_K0C6H8: DoxX subfamily, putative|unclassified	0.1895036137
+UniRef50_Q3JIW0	0.1894906797
+UniRef50_Q3JIW0|unclassified	0.1894906797
+UniRef50_D9UFW6: Replication initiation protein (Fragment)	0.1894903293
+UniRef50_D9UFW6: Replication initiation protein (Fragment)|unclassified	0.1894903293
+UniRef50_UPI00016A96C1: serine/threonine protein kinase, partial	0.1894878478
+UniRef50_UPI00016A96C1: serine/threonine protein kinase, partial|unclassified	0.1894878478
+UniRef50_UPI0003D3A90F: ABC-type metal ion transport system	0.1894731513
+UniRef50_UPI0003D3A90F: ABC-type metal ion transport system|unclassified	0.1894731513
+UniRef50_UPI0004735CF4: hypothetical protein	0.1894626030
+UniRef50_UPI0004735CF4: hypothetical protein|unclassified	0.1894626030
+UniRef50_H1SU91	0.1894358066
+UniRef50_H1SU91|unclassified	0.1894358066
+UniRef50_UPI00039A620E: potassium transporter KefB	0.1894341214
+UniRef50_UPI00039A620E: potassium transporter KefB|unclassified	0.1894341214
+UniRef50_UPI0003C129CB: PREDICTED: cationic amino acid transporter 4, vacuolar-like	0.1894202558
+UniRef50_UPI0003C129CB: PREDICTED: cationic amino acid transporter 4, vacuolar-like|unclassified	0.1894202558
+UniRef50_A1RAY5: L-arabinose isomerase	0.1893816191
+UniRef50_A1RAY5: L-arabinose isomerase|unclassified	0.1893816191
+UniRef50_K7VMD3: ATP synthase subunit beta, mitochondrial	0.1893805854
+UniRef50_K7VMD3: ATP synthase subunit beta, mitochondrial|unclassified	0.1893805854
+UniRef50_UPI000382E8DC: hypothetical protein	0.1893744880
+UniRef50_UPI000382E8DC: hypothetical protein|unclassified	0.1893744880
+UniRef50_Q989H7: Nitrogen fixation protein FixH	0.1893615884
+UniRef50_Q989H7: Nitrogen fixation protein FixH|unclassified	0.1893615884
+UniRef50_UPI000465C8A9: MULTISPECIES: hypothetical protein	0.1893586617
+UniRef50_UPI000465C8A9: MULTISPECIES: hypothetical protein|unclassified	0.1893586617
+UniRef50_A6TFR2: Glycerol kinase	0.1893548061
+UniRef50_A6TFR2: Glycerol kinase|unclassified	0.1893548061
+UniRef50_UPI000379010F: hypothetical protein	0.1893323317
+UniRef50_UPI000379010F: hypothetical protein|unclassified	0.1893323317
+UniRef50_UPI00036B617A: hypothetical protein, partial	0.1893257556
+UniRef50_UPI00036B617A: hypothetical protein, partial|unclassified	0.1893257556
+UniRef50_UPI0003B65026: ABC transporter	0.1893057884
+UniRef50_UPI0003B65026: ABC transporter|unclassified	0.1893057884
+UniRef50_Q8NTE1: Dihydrolipoyl dehydrogenase	0.1893049258
+UniRef50_Q8NTE1: Dihydrolipoyl dehydrogenase|unclassified	0.1893049258
+UniRef50_UPI0004666B5F: transposase	0.1893010081
+UniRef50_UPI0004666B5F: transposase|unclassified	0.1893010081
+UniRef50_B1ZB60	0.1892983381
+UniRef50_B1ZB60|unclassified	0.1892983381
+UniRef50_UPI0003B7226F: chemotaxis protein CheY	0.1892831420
+UniRef50_UPI0003B7226F: chemotaxis protein CheY|unclassified	0.1892831420
+UniRef50_UPI0003773C0A: hypothetical protein	0.1892667967
+UniRef50_UPI0003773C0A: hypothetical protein|unclassified	0.1892667967
+UniRef50_Q1R155: Zinc import ATP-binding protein ZnuC	0.1892526608
+UniRef50_Q1R155: Zinc import ATP-binding protein ZnuC|unclassified	0.1892526608
+UniRef50_G9YIH7: Aluminum resistance protein (Fragment)	0.1892395341
+UniRef50_G9YIH7: Aluminum resistance protein (Fragment)|unclassified	0.1892395341
+UniRef50_UPI0001D30BC5: DNA topoisomerase I	0.1892259001
+UniRef50_UPI0001D30BC5: DNA topoisomerase I|unclassified	0.1892259001
+UniRef50_Q89W81: Putative phosphoribosylaminoimidazole-succinocarboxamide synthase B	0.1892034677
+UniRef50_Q89W81: Putative phosphoribosylaminoimidazole-succinocarboxamide synthase B|unclassified	0.1892034677
+UniRef50_M5B1K4: Quinone oxidoreductase 2	0.1891983027
+UniRef50_M5B1K4: Quinone oxidoreductase 2|unclassified	0.1891983027
+UniRef50_S1EIE9	0.1891904559
+UniRef50_S1EIE9|unclassified	0.1891904559
+UniRef50_UPI00036D425D: hypothetical protein	0.1891839369
+UniRef50_UPI00036D425D: hypothetical protein|unclassified	0.1891839369
+UniRef50_R0DT07: Peptidoglycan binding domain-containing protein	0.1891797579
+UniRef50_R0DT07: Peptidoglycan binding domain-containing protein|unclassified	0.1891797579
+UniRef50_G5B4N3	0.1891691154
+UniRef50_G5B4N3|unclassified	0.1891691154
+UniRef50_C5D4E6: Cyclic pyranopterin monophosphate synthase accessory protein	0.1891646532
+UniRef50_C5D4E6: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	0.1891646532
+UniRef50_Q2J0F2: NADH-quinone oxidoreductase subunit B	0.1891618210
+UniRef50_Q2J0F2: NADH-quinone oxidoreductase subunit B|unclassified	0.1891618210
+UniRef50_X0YBN7: Marine sediment metagenome DNA, contig: S01H1_S33451 (Fragment)	0.1891501263
+UniRef50_X0YBN7: Marine sediment metagenome DNA, contig: S01H1_S33451 (Fragment)|unclassified	0.1891501263
+UniRef50_UPI0004007D39: hypothetical protein	0.1891365651
+UniRef50_UPI0004007D39: hypothetical protein|unclassified	0.1891365651
+UniRef50_K0VMI3: NAD-dependent epimerase/dehydratase (Fragment)	0.1891336511
+UniRef50_K0VMI3: NAD-dependent epimerase/dehydratase (Fragment)|unclassified	0.1891336511
+UniRef50_UPI0002628A95: AMP-dependent synthetase and ligase	0.1891241036
+UniRef50_UPI0002628A95: AMP-dependent synthetase and ligase|unclassified	0.1891241036
+UniRef50_G4QVS8	0.1891238576
+UniRef50_G4QVS8|unclassified	0.1891238576
+UniRef50_X1H5Y2: Marine sediment metagenome DNA, contig: S03H2_S05338 (Fragment)	0.1890952500
+UniRef50_X1H5Y2: Marine sediment metagenome DNA, contig: S03H2_S05338 (Fragment)|unclassified	0.1890952500
+UniRef50_A7MR33	0.1890925621
+UniRef50_A7MR33|unclassified	0.1890925621
+UniRef50_W0QQV8	0.1890917203
+UniRef50_W0QQV8|unclassified	0.1890917203
+UniRef50_I0DXY9	0.1890811706
+UniRef50_I0DXY9|unclassified	0.1890811706
+UniRef50_A0A033UTM1	0.1890743413
+UniRef50_A0A033UTM1|unclassified	0.1890743413
+UniRef50_UPI00047DA123: FMN reductase	0.1890702817
+UniRef50_UPI00047DA123: FMN reductase|unclassified	0.1890702817
+UniRef50_UPI000378933B: hypothetical protein	0.1890659042
+UniRef50_UPI000378933B: hypothetical protein|unclassified	0.1890659042
+UniRef50_UPI0004635ACF: glutamate 5-kinase	0.1890514930
+UniRef50_UPI0004635ACF: glutamate 5-kinase|unclassified	0.1890514930
+UniRef50_H8MG60	0.1890163788
+UniRef50_H8MG60|unclassified	0.1890163788
+UniRef50_UPI0004002A98: peroxiredoxin	0.1890043888
+UniRef50_UPI0004002A98: peroxiredoxin|unclassified	0.1890043888
+UniRef50_UPI000465E9E9: hypothetical protein	0.1889996622
+UniRef50_UPI000465E9E9: hypothetical protein|unclassified	0.1889996622
+UniRef50_UPI0003EB5F8E: hypothetical protein	0.1889886795
+UniRef50_UPI0003EB5F8E: hypothetical protein|unclassified	0.1889886795
+UniRef50_Q8VL04: Arginine repressor	0.1889754600
+UniRef50_Q8VL04: Arginine repressor|unclassified	0.1889754600
+UniRef50_D3PLU1: Cupin	0.1889568444
+UniRef50_D3PLU1: Cupin|unclassified	0.1889568444
+UniRef50_W1FBP3: Putative lipoprotein yceB	0.1889440953
+UniRef50_W1FBP3: Putative lipoprotein yceB|unclassified	0.1889440953
+UniRef50_R8DSM4	0.1889277994
+UniRef50_R8DSM4|unclassified	0.1889277994
+UniRef50_UPI000382BD1F: single-stranded DNA-binding protein	0.1889140896
+UniRef50_UPI000382BD1F: single-stranded DNA-binding protein|unclassified	0.1889140896
+UniRef50_Q33752: Cytochrome c oxidase subunit 3 (Fragment)	0.1889066771
+UniRef50_Q33752: Cytochrome c oxidase subunit 3 (Fragment)|unclassified	0.1889066771
+UniRef50_J3DSD6	0.1889010922
+UniRef50_J3DSD6|unclassified	0.1889010922
+UniRef50_UPI00037D4375: hypothetical protein	0.1888900285
+UniRef50_UPI00037D4375: hypothetical protein|unclassified	0.1888900285
+UniRef50_Q6AJM7: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.1888888159
+UniRef50_Q6AJM7: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.1888888159
+UniRef50_P39658: Extracellular deoxyribonuclease	0.1888878002
+UniRef50_P39658: Extracellular deoxyribonuclease|unclassified	0.1888878002
+UniRef50_R7TU41	0.1888812373
+UniRef50_R7TU41|unclassified	0.1888812373
+UniRef50_F6AA27	0.1888732394
+UniRef50_F6AA27|unclassified	0.1888732394
+UniRef50_B8KVE4: YCII-related domain superfamily protein	0.1888544121
+UniRef50_B8KVE4: YCII-related domain superfamily protein|unclassified	0.1888544121
+UniRef50_P31883: Quinone-reactive Ni/Fe-hydrogenase large chain	0.1888477703
+UniRef50_P31883: Quinone-reactive Ni/Fe-hydrogenase large chain|unclassified	0.1888477703
+UniRef50_UPI000262CA62: cbbY	0.1888313021
+UniRef50_UPI000262CA62: cbbY|unclassified	0.1888313021
+UniRef50_UPI0003C7E84D: anti-sigma B factor antagonist	0.1888256353
+UniRef50_UPI0003C7E84D: anti-sigma B factor antagonist|unclassified	0.1888256353
+UniRef50_D3P471: Tripartite ATP-independent periplasmic transporter	0.1888150314
+UniRef50_D3P471: Tripartite ATP-independent periplasmic transporter|unclassified	0.1888150314
+UniRef50_UPI00036E07C4: hypothetical protein	0.1888099990
+UniRef50_UPI00036E07C4: hypothetical protein|unclassified	0.1888099990
+UniRef50_K0RZF7	0.1887985666
+UniRef50_K0RZF7|unclassified	0.1887985666
+UniRef50_P24808: N-acetylmuramoyl-L-alanine amidase CwlA	0.1887978077
+UniRef50_P24808: N-acetylmuramoyl-L-alanine amidase CwlA|unclassified	0.1887978077
+UniRef50_W5X7N1: Oxidoreductase domain protein	0.1887950890
+UniRef50_W5X7N1: Oxidoreductase domain protein|unclassified	0.1887950890
+UniRef50_D0D1Z1: Membrane protein	0.1887824302
+UniRef50_D0D1Z1: Membrane protein|unclassified	0.1887824302
+UniRef50_UPI0003AADB2D: formyl-CoA transferase	0.1887820076
+UniRef50_UPI0003AADB2D: formyl-CoA transferase|unclassified	0.1887820076
+UniRef50_UPI0002892693: acetolactate synthase large subunit, partial	0.1887735794
+UniRef50_UPI0002892693: acetolactate synthase large subunit, partial|unclassified	0.1887735794
+UniRef50_C5AJ04: Molybdopterin-guanine dinucleotide biosynthesis protein A	0.1887470824
+UniRef50_C5AJ04: Molybdopterin-guanine dinucleotide biosynthesis protein A|unclassified	0.1887470824
+UniRef50_UPI00046F2D18: glucose-6-phosphate dehydrogenase	0.1887419271
+UniRef50_UPI00046F2D18: glucose-6-phosphate dehydrogenase|unclassified	0.1887419271
+UniRef50_UPI0003B4FA4F: CopG family transcriptional regulator	0.1887392028
+UniRef50_UPI0003B4FA4F: CopG family transcriptional regulator|unclassified	0.1887392028
+UniRef50_C2GFR8	0.1887356569
+UniRef50_C2GFR8|unclassified	0.1887356569
+UniRef50_UPI000303671E: recombinase	0.1887270314
+UniRef50_UPI000303671E: recombinase|unclassified	0.1887270314
+UniRef50_S9R3R2: ATPase involved in DNA replication initiation	0.1887262263
+UniRef50_S9R3R2: ATPase involved in DNA replication initiation|unclassified	0.1887262263
+UniRef50_UPI000463FC69: hypothetical protein	0.1887245325
+UniRef50_UPI000463FC69: hypothetical protein|unclassified	0.1887245325
+UniRef50_I3I6K3	0.1887190072
+UniRef50_I3I6K3|unclassified	0.1887190072
+UniRef50_W4S157: Lipoprotein	0.1887124857
+UniRef50_W4S157: Lipoprotein|unclassified	0.1887124857
+UniRef50_UPI00016C38BC: purine-binding chemotaxis protein	0.1886850389
+UniRef50_UPI00016C38BC: purine-binding chemotaxis protein|unclassified	0.1886850389
+UniRef50_W9FRU9	0.1886773566
+UniRef50_W9FRU9|unclassified	0.1886773566
+UniRef50_U4QEL4	0.1886707942
+UniRef50_U4QEL4|unclassified	0.1886707942
+UniRef50_UPI0003084509: hypothetical protein	0.1886540178
+UniRef50_UPI0003084509: hypothetical protein|unclassified	0.1886540178
+UniRef50_UPI000469567D: transcriptional regulator	0.1886533756
+UniRef50_UPI000469567D: transcriptional regulator|unclassified	0.1886533756
+UniRef50_UPI000474D669: molecular chaperone DnaJ	0.1886456067
+UniRef50_UPI000474D669: molecular chaperone DnaJ|unclassified	0.1886456067
+UniRef50_F6IBV8	0.1886451690
+UniRef50_F6IBV8|unclassified	0.1886451690
+UniRef50_Q97QF9: Putative 3-isopropylmalate dehydratase small subunit	0.1886394175
+UniRef50_Q97QF9: Putative 3-isopropylmalate dehydratase small subunit|unclassified	0.1886394175
+UniRef50_O85342: Mannose-1-phosphate guanylyltransferase 2	0.1886373053
+UniRef50_O85342: Mannose-1-phosphate guanylyltransferase 2|unclassified	0.1886373053
+UniRef50_UPI00034B636B: hypothetical protein	0.1886107680
+UniRef50_UPI00034B636B: hypothetical protein|unclassified	0.1886107680
+UniRef50_A0A033UTP1	0.1886052114
+UniRef50_A0A033UTP1|unclassified	0.1886052114
+UniRef50_UPI00037DE98D: hypothetical protein	0.1885901182
+UniRef50_UPI00037DE98D: hypothetical protein|unclassified	0.1885901182
+UniRef50_J9Z1D2: Hypoxia-induced family protein	0.1885856388
+UniRef50_J9Z1D2: Hypoxia-induced family protein|unclassified	0.1885856388
+UniRef50_C9KJU7	0.1885794489
+UniRef50_C9KJU7|unclassified	0.1885794489
+UniRef50_UPI00029B072A: glutamyl-tRNA(Gln) amidotransferase subunit B	0.1885756268
+UniRef50_UPI00029B072A: glutamyl-tRNA(Gln) amidotransferase subunit B|unclassified	0.1885756268
+UniRef50_UPI0003C15F36	0.1885738029
+UniRef50_UPI0003C15F36|unclassified	0.1885738029
+UniRef50_Q2NT85: UPF0225 protein SG1365	0.1885663512
+UniRef50_Q2NT85: UPF0225 protein SG1365|unclassified	0.1885663512
+UniRef50_B7VHY7: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase	0.1885646958
+UniRef50_B7VHY7: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase|unclassified	0.1885646958
+UniRef50_UPI00042A7A25: hypothetical protein	0.1885538968
+UniRef50_UPI00042A7A25: hypothetical protein|unclassified	0.1885538968
+UniRef50_UPI0002FA2625: hypothetical protein	0.1885495544
+UniRef50_UPI0002FA2625: hypothetical protein|unclassified	0.1885495544
+UniRef50_A0A058ZCH7	0.1885369532
+UniRef50_A0A058ZCH7|unclassified	0.1885369532
+UniRef50_A0A011QY39: 3-isopropylmalate dehydrogenase	0.1885337530
+UniRef50_A0A011QY39: 3-isopropylmalate dehydrogenase|unclassified	0.1885337530
+UniRef50_UPI00036DB546: hypothetical protein	0.1885277802
+UniRef50_UPI00036DB546: hypothetical protein|unclassified	0.1885277802
+UniRef50_UPI00024882A3: putative hydrolase, partial	0.1885196690
+UniRef50_UPI00024882A3: putative hydrolase, partial|unclassified	0.1885196690
+UniRef50_UPI000362EB25: hypothetical protein	0.1885123572
+UniRef50_UPI000362EB25: hypothetical protein|unclassified	0.1885123572
+UniRef50_UPI0003793659: hypothetical protein	0.1885117608
+UniRef50_UPI0003793659: hypothetical protein|unclassified	0.1885117608
+UniRef50_UPI0003631E18: hypothetical protein	0.1884909425
+UniRef50_UPI0003631E18: hypothetical protein|unclassified	0.1884909425
+UniRef50_Q3KIA5: Protein RnfH	0.1884850513
+UniRef50_Q3KIA5: Protein RnfH|unclassified	0.1884850513
+UniRef50_X8AZ79: ArsC family protein	0.1884817060
+UniRef50_X8AZ79: ArsC family protein|unclassified	0.1884817060
+UniRef50_Q0BZU8: Putative Holliday junction resolvase	0.1884795647
+UniRef50_Q0BZU8: Putative Holliday junction resolvase|unclassified	0.1884795647
+UniRef50_C3DWD2	0.1884775050
+UniRef50_C3DWD2|unclassified	0.1884775050
+UniRef50_A0A011MPV3: Dual specificity phosphatase, catalytic domain protein	0.1884645502
+UniRef50_A0A011MPV3: Dual specificity phosphatase, catalytic domain protein|unclassified	0.1884645502
+UniRef50_Q15XW1: Membrane protein	0.1884444223
+UniRef50_Q15XW1: Membrane protein|unclassified	0.1884444223
+UniRef50_UPI0003812ABA: hypothetical protein	0.1884425433
+UniRef50_UPI0003812ABA: hypothetical protein|unclassified	0.1884425433
+UniRef50_UPI000479C6F6: isomerase	0.1884326589
+UniRef50_UPI000479C6F6: isomerase|unclassified	0.1884326589
+UniRef50_E1AHU5: Major ampullate spidroin (Fragment)	0.1884322781
+UniRef50_E1AHU5: Major ampullate spidroin (Fragment)|unclassified	0.1884322781
+UniRef50_UPI00029D8E6D	0.1884303719
+UniRef50_UPI00029D8E6D|unclassified	0.1884303719
+UniRef50_UPI00039E23C8: cytidylate kinase	0.1884269452
+UniRef50_UPI00039E23C8: cytidylate kinase|unclassified	0.1884269452
+UniRef50_U6JXG8	0.1884027632
+UniRef50_U6JXG8|unclassified	0.1884027632
+UniRef50_C1N8X0: Predicted protein	0.1884002863
+UniRef50_C1N8X0: Predicted protein|unclassified	0.1884002863
+UniRef50_UPI0004213A8C: peptidase A8	0.1883985197
+UniRef50_UPI0004213A8C: peptidase A8|unclassified	0.1883985197
+UniRef50_X1CDQ4: Marine sediment metagenome DNA, contig: S01H4_S09778 (Fragment)	0.1883806478
+UniRef50_X1CDQ4: Marine sediment metagenome DNA, contig: S01H4_S09778 (Fragment)|unclassified	0.1883806478
+UniRef50_J8B2S1	0.1883699474
+UniRef50_J8B2S1|unclassified	0.1883699474
+UniRef50_UPI00037E65FE: MULTISPECIES: hypothetical protein	0.1883676949
+UniRef50_UPI00037E65FE: MULTISPECIES: hypothetical protein|unclassified	0.1883676949
+UniRef50_N9UZQ2: Transketolase, putative (Fragment)	0.1883659606
+UniRef50_N9UZQ2: Transketolase, putative (Fragment)|unclassified	0.1883659606
+UniRef50_UPI0004704187: alanine racemase	0.1883552646
+UniRef50_UPI0004704187: alanine racemase|unclassified	0.1883552646
+UniRef50_E6UVY9: YCII-related protein	0.1883547316
+UniRef50_E6UVY9: YCII-related protein|unclassified	0.1883547316
+UniRef50_UPI0004571B3D: PREDICTED: LOW QUALITY PROTEIN: elongation factor Tu, mitochondrial	0.1883505432
+UniRef50_UPI0004571B3D: PREDICTED: LOW QUALITY PROTEIN: elongation factor Tu, mitochondrial|unclassified	0.1883505432
+UniRef50_R4GH96	0.1883384625
+UniRef50_R4GH96|unclassified	0.1883384625
+UniRef50_UPI00037341DE: hypothetical protein	0.1883273427
+UniRef50_UPI00037341DE: hypothetical protein|unclassified	0.1883273427
+UniRef50_A0RBM3: Phosphoribosyl-AMP cyclohydrolase	0.1883215036
+UniRef50_A0RBM3: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.1883215036
+UniRef50_C5Q3T5	0.1883172356
+UniRef50_C5Q3T5|unclassified	0.1883172356
+UniRef50_UPI000262637C: putative oxidoreductase	0.1883136942
+UniRef50_UPI000262637C: putative oxidoreductase|unclassified	0.1883136942
+UniRef50_UPI000472868E: ABC transporter ATP-binding protein	0.1883133778
+UniRef50_UPI000472868E: ABC transporter ATP-binding protein|unclassified	0.1883133778
+UniRef50_R6F307: Auxiliary transport protein membrane fusion protein (MFP) family protein	0.1883089322
+UniRef50_R6F307: Auxiliary transport protein membrane fusion protein (MFP) family protein|unclassified	0.1883089322
+UniRef50_K7KA74	0.1883032002
+UniRef50_K7KA74|unclassified	0.1883032002
+UniRef50_UPI0003B6FEE3: peptidase	0.1882996413
+UniRef50_UPI0003B6FEE3: peptidase|unclassified	0.1882996413
+UniRef50_UPI000299DE22: insertion element transposase	0.1882889858
+UniRef50_UPI000299DE22: insertion element transposase|unclassified	0.1882889858
+UniRef50_A3V9A6	0.1882728488
+UniRef50_A3V9A6|unclassified	0.1882728488
+UniRef50_V5CDW3: RNA polymerase sigma-54 factor RpoN	0.1882723349
+UniRef50_V5CDW3: RNA polymerase sigma-54 factor RpoN|unclassified	0.1882723349
+UniRef50_F3WMS6	0.1882585356
+UniRef50_F3WMS6|unclassified	0.1882585356
+UniRef50_UPI00035F8CCA: hypothetical protein	0.1882346164
+UniRef50_UPI00035F8CCA: hypothetical protein|unclassified	0.1882346164
+UniRef50_UPI00046B1B81: PREDICTED: succinyl-CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial	0.1881764517
+UniRef50_UPI00046B1B81: PREDICTED: succinyl-CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial|unclassified	0.1881764517
+UniRef50_UPI0002DB6B05: hypothetical protein	0.1881597939
+UniRef50_UPI0002DB6B05: hypothetical protein|unclassified	0.1881597939
+UniRef50_S3B6J3	0.1881518545
+UniRef50_S3B6J3|unclassified	0.1881518545
+UniRef50_A4EPW2	0.1881270133
+UniRef50_A4EPW2|unclassified	0.1881270133
+UniRef50_UPI000477A59D: MFS transporter	0.1881226742
+UniRef50_UPI000477A59D: MFS transporter|unclassified	0.1881226742
+UniRef50_UPI000343F83A	0.1881204319
+UniRef50_UPI000343F83A|unclassified	0.1881204319
+UniRef50_V7EH29	0.1881167345
+UniRef50_V7EH29|unclassified	0.1881167345
+UniRef50_UPI00047204A9: hypothetical protein	0.1881160734
+UniRef50_UPI00047204A9: hypothetical protein|unclassified	0.1881160734
+UniRef50_O33774: Imidazole glycerol phosphate synthase subunit HisF	0.1881104945
+UniRef50_O33774: Imidazole glycerol phosphate synthase subunit HisF|unclassified	0.1881104945
+UniRef50_Q49ZM1	0.1880891787
+UniRef50_Q49ZM1|unclassified	0.1880891787
+UniRef50_Q485F4: Ribonuclease HII	0.1880712243
+UniRef50_Q485F4: Ribonuclease HII|unclassified	0.1880712243
+UniRef50_K9L524	0.1880625039
+UniRef50_K9L524|unclassified	0.1880625039
+UniRef50_K4R4D4	0.1880361931
+UniRef50_K4R4D4|unclassified	0.1880361931
+UniRef50_F4LAM5	0.1880316357
+UniRef50_F4LAM5|unclassified	0.1880316357
+UniRef50_X1D3Z2: Marine sediment metagenome DNA, contig: S01H4_S12865 (Fragment)	0.1880311384
+UniRef50_X1D3Z2: Marine sediment metagenome DNA, contig: S01H4_S12865 (Fragment)|unclassified	0.1880311384
+UniRef50_UPI00042794A8: hypothetical protein	0.1880291655
+UniRef50_UPI00042794A8: hypothetical protein|unclassified	0.1880291655
+UniRef50_Q8YE59: Tryptophan synthase alpha chain	0.1880067649
+UniRef50_Q8YE59: Tryptophan synthase alpha chain|unclassified	0.1880067649
+UniRef50_E6YJ53	0.1880030418
+UniRef50_E6YJ53|unclassified	0.1880030418
+UniRef50_UPI000419CD8D: hypothetical protein	0.1879999673
+UniRef50_UPI000419CD8D: hypothetical protein|unclassified	0.1879999673
+UniRef50_M1SBP7: Outer membrane lipoprotein YidQ	0.1879936710
+UniRef50_M1SBP7: Outer membrane lipoprotein YidQ|unclassified	0.1879936710
+UniRef50_UPI00047D9CAF: hypothetical protein	0.1879894959
+UniRef50_UPI00047D9CAF: hypothetical protein|unclassified	0.1879894959
+UniRef50_S0K1V8	0.1879411071
+UniRef50_S0K1V8|unclassified	0.1879411071
+UniRef50_C3AGF0: YbbR	0.1879340907
+UniRef50_C3AGF0: YbbR|unclassified	0.1879340907
+UniRef50_H1XQ53: Anti-sigma-factor antagonist	0.1879016201
+UniRef50_H1XQ53: Anti-sigma-factor antagonist|unclassified	0.1879016201
+UniRef50_UPI00046DB2FC: PREDICTED: glycine--tRNA ligase 2, chloroplastic/mitochondrial-like, partial	0.1878958877
+UniRef50_UPI00046DB2FC: PREDICTED: glycine--tRNA ligase 2, chloroplastic/mitochondrial-like, partial|unclassified	0.1878958877
+UniRef50_F9Q8N4: Hydrogenase 4 subunit B domain protein	0.1878954582
+UniRef50_F9Q8N4: Hydrogenase 4 subunit B domain protein|unclassified	0.1878954582
+UniRef50_UPI0002F45A92: hypothetical protein	0.1878879517
+UniRef50_UPI0002F45A92: hypothetical protein|unclassified	0.1878879517
+UniRef50_U7G8A4	0.1878779727
+UniRef50_U7G8A4|unclassified	0.1878779727
+UniRef50_UPI0003703F7D: GntR family transcriptional regulator	0.1878694708
+UniRef50_UPI0003703F7D: GntR family transcriptional regulator|unclassified	0.1878694708
+UniRef50_Q46WL9: Phosphoribosyl-AMP cyclohydrolase	0.1878570371
+UniRef50_Q46WL9: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.1878570371
+UniRef50_Q6CD43: YALI0C03916p	0.1878503636
+UniRef50_Q6CD43: YALI0C03916p|unclassified	0.1878503636
+UniRef50_UPI000468247A: polyamine ABC transporter permease	0.1878256825
+UniRef50_UPI000468247A: polyamine ABC transporter permease|unclassified	0.1878256825
+UniRef50_S7YYI2	0.1878219154
+UniRef50_S7YYI2|unclassified	0.1878219154
+UniRef50_Q08432: Cystathionine beta-lyase PatB	0.1878102046
+UniRef50_Q08432: Cystathionine beta-lyase PatB|unclassified	0.1878102046
+UniRef50_A5V195: Beta-lactamase domain protein	0.1877925600
+UniRef50_A5V195: Beta-lactamase domain protein|unclassified	0.1877925600
+UniRef50_S1SXR1	0.1877918925
+UniRef50_S1SXR1|unclassified	0.1877918925
+UniRef50_UPI00046FF377: chemotaxis protein CheA	0.1877834420
+UniRef50_UPI00046FF377: chemotaxis protein CheA|unclassified	0.1877834420
+UniRef50_A4BCM8: Acylphosphatase, putative	0.1877700707
+UniRef50_A4BCM8: Acylphosphatase, putative|unclassified	0.1877700707
+UniRef50_UPI00036BFACB: hypothetical protein	0.1877692771
+UniRef50_UPI00036BFACB: hypothetical protein|unclassified	0.1877692771
+UniRef50_UPI000359BC58	0.1877603866
+UniRef50_UPI000359BC58|unclassified	0.1877603866
+UniRef50_F3U269: Phage tail protein D	0.1877561584
+UniRef50_F3U269: Phage tail protein D|unclassified	0.1877561584
+UniRef50_Q09545: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial	0.1877513688
+UniRef50_Q09545: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial|unclassified	0.1877513688
+UniRef50_UPI00037AD75F: hypothetical protein	0.1877286456
+UniRef50_UPI00037AD75F: hypothetical protein|unclassified	0.1877286456
+UniRef50_I3AYY7	0.1877144460
+UniRef50_I3AYY7|unclassified	0.1877144460
+UniRef50_UPI00046CFAB7: hypothetical protein	0.1877056187
+UniRef50_UPI00046CFAB7: hypothetical protein|unclassified	0.1877056187
+UniRef50_T0P1M3	0.1877002777
+UniRef50_T0P1M3|unclassified	0.1877002777
+UniRef50_V8HAI2	0.1877002470
+UniRef50_V8HAI2|unclassified	0.1877002470
+UniRef50_X0ZSE3: Marine sediment metagenome DNA, contig: S01H4_L00675 (Fragment)	0.1876866318
+UniRef50_X0ZSE3: Marine sediment metagenome DNA, contig: S01H4_L00675 (Fragment)|unclassified	0.1876866318
+UniRef50_W9GUG6	0.1876741981
+UniRef50_W9GUG6|unclassified	0.1876741981
+UniRef50_E3F2Z6	0.1876726969
+UniRef50_E3F2Z6|unclassified	0.1876726969
+UniRef50_C3LC13	0.1876631193
+UniRef50_C3LC13|unclassified	0.1876631193
+UniRef50_H0DJE3: HTH domain protein	0.1876417382
+UniRef50_H0DJE3: HTH domain protein|unclassified	0.1876417382
+UniRef50_S5XWH0	0.1876363986
+UniRef50_S5XWH0|unclassified	0.1876363986
+UniRef50_J9P8Q4	0.1876362630
+UniRef50_J9P8Q4|unclassified	0.1876362630
+UniRef50_UPI000471CC61: hypothetical protein	0.1876126713
+UniRef50_UPI000471CC61: hypothetical protein|unclassified	0.1876126713
+UniRef50_UPI0003634116: hypothetical protein	0.1876058238
+UniRef50_UPI0003634116: hypothetical protein|unclassified	0.1876058238
+UniRef50_UPI00045E902C: MFS transporter	0.1875970186
+UniRef50_UPI00045E902C: MFS transporter|unclassified	0.1875970186
+UniRef50_P26907: Glucose starvation-inducible protein B	0.1875851445
+UniRef50_P26907: Glucose starvation-inducible protein B|unclassified	0.1875851445
+UniRef50_D2JBZ4: Replication initiator protein A	0.1875749652
+UniRef50_D2JBZ4: Replication initiator protein A|unclassified	0.1875749652
+UniRef50_Q2W519: DNA-directed RNA polymerase subunit omega	0.1875717887
+UniRef50_Q2W519: DNA-directed RNA polymerase subunit omega|unclassified	0.1875717887
+UniRef50_W7CBE0	0.1875593396
+UniRef50_W7CBE0|unclassified	0.1875593396
+UniRef50_UPI00046602F6: bacitracin ABC transporter ATP-binding protein	0.1875524445
+UniRef50_UPI00046602F6: bacitracin ABC transporter ATP-binding protein|unclassified	0.1875524445
+UniRef50_P16440: Riboflavin synthase	0.1875521817
+UniRef50_P16440: Riboflavin synthase|unclassified	0.1875521817
+UniRef50_A4EKQ0	0.1875510804
+UniRef50_A4EKQ0|unclassified	0.1875510804
+UniRef50_Q9FX54: Glyceraldehyde-3-phosphate dehydrogenase GAPC2, cytosolic	0.1875509523
+UniRef50_Q9FX54: Glyceraldehyde-3-phosphate dehydrogenase GAPC2, cytosolic|unclassified	0.1875509523
+UniRef50_W4HJM0: Flagellar biosynthesis/type III secretory pathway protein FliH	0.1875179647
+UniRef50_W4HJM0: Flagellar biosynthesis/type III secretory pathway protein FliH|unclassified	0.1875179647
+UniRef50_Q1N0L5	0.1874903647
+UniRef50_Q1N0L5|unclassified	0.1874903647
+UniRef50_UPI00035F5944: hypothetical protein	0.1874899961
+UniRef50_UPI00035F5944: hypothetical protein|unclassified	0.1874899961
+UniRef50_A6T0L6	0.1874840421
+UniRef50_A6T0L6|unclassified	0.1874840421
+UniRef50_S3B3E5	0.1874796876
+UniRef50_S3B3E5|unclassified	0.1874796876
+UniRef50_F5ZJS8: Competence protein	0.1874789734
+UniRef50_F5ZJS8: Competence protein|unclassified	0.1874789734
+UniRef50_I7AZC1: Acyl-CoA synthetase	0.1874730080
+UniRef50_I7AZC1: Acyl-CoA synthetase|unclassified	0.1874730080
+UniRef50_UPI0003802618: hypothetical protein	0.1874693993
+UniRef50_UPI0003802618: hypothetical protein|unclassified	0.1874693993
+UniRef50_UPI0003B7A0EC: porin, partial	0.1874606366
+UniRef50_UPI0003B7A0EC: porin, partial|unclassified	0.1874606366
+UniRef50_W1JW74	0.1874480992
+UniRef50_W1JW74|unclassified	0.1874480992
+UniRef50_UPI000359AB86: PREDICTED: P granule abnormality protein 1-like	0.1874426982
+UniRef50_UPI000359AB86: PREDICTED: P granule abnormality protein 1-like|unclassified	0.1874426982
+UniRef50_J3MYG4	0.1874410234
+UniRef50_J3MYG4|unclassified	0.1874410234
+UniRef50_UPI00034DE84F: ABC transporter permease	0.1874248913
+UniRef50_UPI00034DE84F: ABC transporter permease|unclassified	0.1874248913
+UniRef50_UPI000375D941: hypothetical protein	0.1874180011
+UniRef50_UPI000375D941: hypothetical protein|unclassified	0.1874180011
+UniRef50_UPI00047BC6CD: hypothetical protein	0.1874147505
+UniRef50_UPI00047BC6CD: hypothetical protein|unclassified	0.1874147505
+UniRef50_Z2DH07: Cytochrome C	0.1873929953
+UniRef50_Z2DH07: Cytochrome C|unclassified	0.1873929953
+UniRef50_UPI000372A27D: hypothetical protein	0.1873903329
+UniRef50_UPI000372A27D: hypothetical protein|unclassified	0.1873903329
+UniRef50_J7WNE5	0.1873755388
+UniRef50_J7WNE5|unclassified	0.1873755388
+UniRef50_Q09DS6	0.1873727795
+UniRef50_Q09DS6|unclassified	0.1873727795
+UniRef50_UPI000367AEFC: hypothetical protein, partial	0.1873578223
+UniRef50_UPI000367AEFC: hypothetical protein, partial|unclassified	0.1873578223
+UniRef50_UPI000365958D: hypothetical protein	0.1873407486
+UniRef50_UPI000365958D: hypothetical protein|unclassified	0.1873407486
+UniRef50_K0WTS4	0.1873233070
+UniRef50_K0WTS4|unclassified	0.1873233070
+UniRef50_S2JRD0	0.1873197060
+UniRef50_S2JRD0|unclassified	0.1873197060
+UniRef50_R4GFK6	0.1873120978
+UniRef50_R4GFK6|unclassified	0.1873120978
+UniRef50_Z5R973	0.1872978148
+UniRef50_Z5R973|unclassified	0.1872978148
+UniRef50_X2N8Z3	0.1872904629
+UniRef50_X2N8Z3|unclassified	0.1872904629
+UniRef50_UPI00044221DF	0.1872836067
+UniRef50_UPI00044221DF|unclassified	0.1872836067
+UniRef50_UPI000185F617: GTP-binding protein lepA, putative	0.1872810539
+UniRef50_UPI000185F617: GTP-binding protein lepA, putative|unclassified	0.1872810539
+UniRef50_Q8Y303: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	0.1872754620
+UniRef50_Q8Y303: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|unclassified	0.1872754620
+UniRef50_UPI0002195AA2: peptidase	0.1872695540
+UniRef50_UPI0002195AA2: peptidase|unclassified	0.1872695540
+UniRef50_W0HGZ5	0.1872415066
+UniRef50_W0HGZ5|unclassified	0.1872415066
+UniRef50_B5LTR0	0.1872352153
+UniRef50_B5LTR0|unclassified	0.1872352153
+UniRef50_Q9S0M0	0.1872324247
+UniRef50_Q9S0M0|unclassified	0.1872324247
+UniRef50_UPI00046807CF: tRNA delta(2)-isopentenylpyrophosphate transferase	0.1872313931
+UniRef50_UPI00046807CF: tRNA delta(2)-isopentenylpyrophosphate transferase|unclassified	0.1872313931
+UniRef50_UPI000479B390: hypothetical protein	0.1871995191
+UniRef50_UPI000479B390: hypothetical protein|unclassified	0.1871995191
+UniRef50_UPI00037911F9: hypothetical protein	0.1871879633
+UniRef50_UPI00037911F9: hypothetical protein|unclassified	0.1871879633
+UniRef50_B5WQJ9: Transcriptional activator, TenA family	0.1871786908
+UniRef50_B5WQJ9: Transcriptional activator, TenA family|unclassified	0.1871786908
+UniRef50_L1IU10	0.1871762961
+UniRef50_L1IU10|unclassified	0.1871762961
+UniRef50_C9CRW2: TraI	0.1871618632
+UniRef50_C9CRW2: TraI|unclassified	0.1871618632
+UniRef50_X1V014: Marine sediment metagenome DNA, contig: S12H4_S26813 (Fragment)	0.1871571763
+UniRef50_X1V014: Marine sediment metagenome DNA, contig: S12H4_S26813 (Fragment)|unclassified	0.1871571763
+UniRef50_C1CER1: Mobile genetic element	0.1871405455
+UniRef50_C1CER1: Mobile genetic element|unclassified	0.1871405455
+UniRef50_V0XTY4	0.1871234997
+UniRef50_V0XTY4|unclassified	0.1871234997
+UniRef50_UPI0004769471: hypothetical protein	0.1871206551
+UniRef50_UPI0004769471: hypothetical protein|unclassified	0.1871206551
+UniRef50_UPI000464ACD7: hypothetical protein	0.1871138942
+UniRef50_UPI000464ACD7: hypothetical protein|unclassified	0.1871138942
+UniRef50_UPI0003629AF0: 50S ribosomal protein L22	0.1871053408
+UniRef50_UPI0003629AF0: 50S ribosomal protein L22|unclassified	0.1871053408
+UniRef50_UPI0004673ACF: hypothetical protein	0.1871032841
+UniRef50_UPI0004673ACF: hypothetical protein|unclassified	0.1871032841
+UniRef50_Q898T4: LemA-like protein	0.1870989351
+UniRef50_Q898T4: LemA-like protein|unclassified	0.1870989351
+UniRef50_C7G7V6	0.1870855669
+UniRef50_C7G7V6|unclassified	0.1870855669
+UniRef50_UPI0002B49AD0: PREDICTED: serine hydroxymethyltransferase, cytosolic-like isoform 1	0.1870738041
+UniRef50_UPI0002B49AD0: PREDICTED: serine hydroxymethyltransferase, cytosolic-like isoform 1|unclassified	0.1870738041
+UniRef50_W9VNT7	0.1870605841
+UniRef50_W9VNT7|unclassified	0.1870605841
+UniRef50_UPI000255A1E5: multi anti extrusion protein MatE	0.1870561522
+UniRef50_UPI000255A1E5: multi anti extrusion protein MatE|unclassified	0.1870561522
+UniRef50_Q2N5N3	0.1870538506
+UniRef50_Q2N5N3|unclassified	0.1870538506
+UniRef50_A0A011Q7U4: Holliday junction DNA helicase RuvB	0.1870483604
+UniRef50_A0A011Q7U4: Holliday junction DNA helicase RuvB|unclassified	0.1870483604
+UniRef50_X8C7Q8: Cell envelope-related transcriptional attenuator domain protein	0.1870286567
+UniRef50_X8C7Q8: Cell envelope-related transcriptional attenuator domain protein|unclassified	0.1870286567
+UniRef50_UPI0004785D9F: hypothetical protein	0.1869943238
+UniRef50_UPI0004785D9F: hypothetical protein|unclassified	0.1869943238
+UniRef50_L9M0Y9: Prokaryotic JAB domain-like protein (Fragment)	0.1869934443
+UniRef50_L9M0Y9: Prokaryotic JAB domain-like protein (Fragment)|unclassified	0.1869934443
+UniRef50_UPI00036E5A30: hypothetical protein	0.1869830825
+UniRef50_UPI00036E5A30: hypothetical protein|unclassified	0.1869830825
+UniRef50_J7MQ65: Similar to secreted protein, putative, N-terminal part	0.1869829377
+UniRef50_J7MQ65: Similar to secreted protein, putative, N-terminal part|unclassified	0.1869829377
+UniRef50_UPI00047B1B95: ABC transporter permease	0.1869485780
+UniRef50_UPI00047B1B95: ABC transporter permease|unclassified	0.1869485780
+UniRef50_UPI0001B42B88: geranyltranstransferase	0.1869404989
+UniRef50_UPI0001B42B88: geranyltranstransferase|unclassified	0.1869404989
+UniRef50_UPI00035C7A3A: hypothetical protein	0.1869382392
+UniRef50_UPI00035C7A3A: hypothetical protein|unclassified	0.1869382392
+UniRef50_UPI000474FA07: hypothetical protein	0.1869353834
+UniRef50_UPI000474FA07: hypothetical protein|unclassified	0.1869353834
+UniRef50_K1SMV9: Rhamnulose-1-phosphate aldolase (Fragment)	0.1869148624
+UniRef50_K1SMV9: Rhamnulose-1-phosphate aldolase (Fragment)|unclassified	0.1869148624
+UniRef50_A6QF79	0.1869062177
+UniRef50_A6QF79|unclassified	0.1869062177
+UniRef50_UPI00036F024D: hypothetical protein	0.1869059211
+UniRef50_UPI00036F024D: hypothetical protein|unclassified	0.1869059211
+UniRef50_F6FZS9	0.1869023638
+UniRef50_F6FZS9|unclassified	0.1869023638
+UniRef50_Q2NIS4: Uridylate kinase	0.1868987866
+UniRef50_Q2NIS4: Uridylate kinase|unclassified	0.1868987866
+UniRef50_T0IJL1	0.1868855316
+UniRef50_T0IJL1|unclassified	0.1868855316
+UniRef50_UPI00035A2923: PREDICTED: thioredoxin, mitochondrial-like	0.1868796514
+UniRef50_UPI00035A2923: PREDICTED: thioredoxin, mitochondrial-like|unclassified	0.1868796514
+UniRef50_E2XK35: Type IV pilus assembly protein	0.1868594523
+UniRef50_E2XK35: Type IV pilus assembly protein|unclassified	0.1868594523
+UniRef50_D4GJK9: Protein CreA	0.1868532471
+UniRef50_D4GJK9: Protein CreA|unclassified	0.1868532471
+UniRef50_M7Y6P5	0.1868345223
+UniRef50_M7Y6P5|unclassified	0.1868345223
+UniRef50_B3PE41: Rrf2 family protein	0.1868264972
+UniRef50_B3PE41: Rrf2 family protein|unclassified	0.1868264972
+UniRef50_UPI0002484A6D: hemolysin-type calcium-binding region	0.1868036565
+UniRef50_UPI0002484A6D: hemolysin-type calcium-binding region|unclassified	0.1868036565
+UniRef50_E1SCF3: Protein CreA	0.1867983660
+UniRef50_E1SCF3: Protein CreA|unclassified	0.1867983660
+UniRef50_X0UE20: Marine sediment metagenome DNA, contig: S01H1_L10466 (Fragment)	0.1867968684
+UniRef50_X0UE20: Marine sediment metagenome DNA, contig: S01H1_L10466 (Fragment)|unclassified	0.1867968684
+UniRef50_UPI00035EEA2D: hypothetical protein	0.1867835412
+UniRef50_UPI00035EEA2D: hypothetical protein|unclassified	0.1867835412
+UniRef50_UPI000255B733: peroxiredoxin, ohr subfamily protein	0.1867776950
+UniRef50_UPI000255B733: peroxiredoxin, ohr subfamily protein|unclassified	0.1867776950
+UniRef50_UPI000361AB23: hypothetical protein	0.1867738786
+UniRef50_UPI000361AB23: hypothetical protein|unclassified	0.1867738786
+UniRef50_I3TKS5: Transglutaminase domain protein	0.1867647546
+UniRef50_I3TKS5: Transglutaminase domain protein|unclassified	0.1867647546
+UniRef50_UPI0004692E36: hypothetical protein	0.1867635203
+UniRef50_UPI0004692E36: hypothetical protein|unclassified	0.1867635203
+UniRef50_UPI000360EF04: hypothetical protein	0.1867574848
+UniRef50_UPI000360EF04: hypothetical protein|unclassified	0.1867574848
+UniRef50_UPI00047B798B: glycine cleavage system potein H	0.1867546446
+UniRef50_UPI00047B798B: glycine cleavage system potein H|unclassified	0.1867546446
+UniRef50_Q9RHV4: Sakacin A production response regulator	0.1867360943
+UniRef50_Q9RHV4: Sakacin A production response regulator|unclassified	0.1867360943
+UniRef50_UPI0003822A6B: hypothetical protein, partial	0.1867249294
+UniRef50_UPI0003822A6B: hypothetical protein, partial|unclassified	0.1867249294
+UniRef50_UPI000377490D: hypothetical protein	0.1867213805
+UniRef50_UPI000377490D: hypothetical protein|unclassified	0.1867213805
+UniRef50_UPI000367883E: hypothetical protein, partial	0.1867116518
+UniRef50_UPI000367883E: hypothetical protein, partial|unclassified	0.1867116518
+UniRef50_D5DEH5: Bacillolysin	0.1866996215
+UniRef50_D5DEH5: Bacillolysin|unclassified	0.1866996215
+UniRef50_UPI000470B3CF: ribosome-binding factor A	0.1866968761
+UniRef50_UPI000470B3CF: ribosome-binding factor A|unclassified	0.1866968761
+UniRef50_UPI00046ED6F6: hypothetical protein	0.1866773470
+UniRef50_UPI00046ED6F6: hypothetical protein|unclassified	0.1866773470
+UniRef50_A0A011R2E5	0.1866627230
+UniRef50_A0A011R2E5|unclassified	0.1866627230
+UniRef50_W7NBP5	0.1866590159
+UniRef50_W7NBP5|unclassified	0.1866590159
+UniRef50_UPI00046F677B: hypothetical protein	0.1866569282
+UniRef50_UPI00046F677B: hypothetical protein|unclassified	0.1866569282
+UniRef50_D9TCM9	0.1866540177
+UniRef50_D9TCM9|unclassified	0.1866540177
+UniRef50_UPI0001A4290B: transcriptional regulator of multidrug resistance genes	0.1866529891
+UniRef50_UPI0001A4290B: transcriptional regulator of multidrug resistance genes|unclassified	0.1866529891
+UniRef50_S6AGE8	0.1866519210
+UniRef50_S6AGE8|unclassified	0.1866519210
+UniRef50_UPI00046730B1: type II and III secretion system protein family protein	0.1866368406
+UniRef50_UPI00046730B1: type II and III secretion system protein family protein|unclassified	0.1866368406
+UniRef50_UPI0002DC8A37: hypothetical protein	0.1866155546
+UniRef50_UPI0002DC8A37: hypothetical protein|unclassified	0.1866155546
+UniRef50_B7KQL9: Radical SAM domain-containing protein	0.1866126458
+UniRef50_B7KQL9: Radical SAM domain-containing protein|unclassified	0.1866126458
+UniRef50_E0THB8: Transcriptional regulator	0.1865854771
+UniRef50_E0THB8: Transcriptional regulator|unclassified	0.1865854771
+UniRef50_Q3SEU9: Phosphoribosyl-AMP cyclohydrolase	0.1865708100
+UniRef50_Q3SEU9: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.1865708100
+UniRef50_UPI0004743E0C: beta-lactamase, partial	0.1865705503
+UniRef50_UPI0004743E0C: beta-lactamase, partial|unclassified	0.1865705503
+UniRef50_UPI0004560385: hypothetical protein PFL1_03770	0.1865693776
+UniRef50_UPI0004560385: hypothetical protein PFL1_03770|unclassified	0.1865693776
+UniRef50_U3AHF1	0.1865618987
+UniRef50_U3AHF1|unclassified	0.1865618987
+UniRef50_UPI00036C4785: hypothetical protein, partial	0.1865527163
+UniRef50_UPI00036C4785: hypothetical protein, partial|unclassified	0.1865527163
+UniRef50_UPI000248DA1A: hypothetical protein	0.1865373853
+UniRef50_UPI000248DA1A: hypothetical protein|unclassified	0.1865373853
+UniRef50_Q8RBD9: Soluble lytic murein transglycosylase and related regulatory proteins (Some contain LysM/invasin domains)	0.1865306081
+UniRef50_Q8RBD9: Soluble lytic murein transglycosylase and related regulatory proteins (Some contain LysM/invasin domains)|unclassified	0.1865306081
+UniRef50_G8SMS4: ABC transporter ATP binding/permease	0.1865292541
+UniRef50_G8SMS4: ABC transporter ATP binding/permease|unclassified	0.1865292541
+UniRef50_Q5LP30: Valine--tRNA ligase	0.1865277057
+UniRef50_Q5LP30: Valine--tRNA ligase|unclassified	0.1865277057
+UniRef50_UPI00035E84CF: hypothetical protein	0.1865191865
+UniRef50_UPI00035E84CF: hypothetical protein|unclassified	0.1865191865
+UniRef50_W9WZ32	0.1865135597
+UniRef50_W9WZ32|unclassified	0.1865135597
+UniRef50_P07287: rRNA adenine N-6-methyltransferase	0.1864964195
+UniRef50_P07287: rRNA adenine N-6-methyltransferase|unclassified	0.1864964195
+UniRef50_UPI00036C37A7: hypothetical protein	0.1864963694
+UniRef50_UPI00036C37A7: hypothetical protein|unclassified	0.1864963694
+UniRef50_UPI00042CF6B2	0.1864887875
+UniRef50_UPI00042CF6B2|unclassified	0.1864887875
+UniRef50_UPI00036C59B9: hypothetical protein	0.1864870255
+UniRef50_UPI00036C59B9: hypothetical protein|unclassified	0.1864870255
+UniRef50_UPI0002880FB3: FAD dependent oxidoreductase	0.1864639039
+UniRef50_UPI0002880FB3: FAD dependent oxidoreductase|unclassified	0.1864639039
+UniRef50_UPI00016AE5F7: AraC family transcriptional regulator	0.1864532190
+UniRef50_UPI00016AE5F7: AraC family transcriptional regulator|unclassified	0.1864532190
+UniRef50_UPI000464F2B8: acetyltransferase	0.1864429199
+UniRef50_UPI000464F2B8: acetyltransferase|unclassified	0.1864429199
+UniRef50_Q724H7: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase 1	0.1864389649
+UniRef50_Q724H7: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase 1|unclassified	0.1864389649
+UniRef50_UPI0002EC1250: patatin	0.1864284003
+UniRef50_UPI0002EC1250: patatin|unclassified	0.1864284003
+UniRef50_X2ME08	0.1864187981
+UniRef50_X2ME08|unclassified	0.1864187981
+UniRef50_UPI0003EA9F92: PREDICTED: LOW QUALITY PROTEIN: probable 1-deoxy-D-xylulose-5-phosphate synthase 2, chloroplastic-like	0.1864037045
+UniRef50_UPI0003EA9F92: PREDICTED: LOW QUALITY PROTEIN: probable 1-deoxy-D-xylulose-5-phosphate synthase 2, chloroplastic-like|unclassified	0.1864037045
+UniRef50_UPI0002D58E1B: hypothetical protein	0.1863772342
+UniRef50_UPI0002D58E1B: hypothetical protein|unclassified	0.1863772342
+UniRef50_H5WLK8: MAPEG family	0.1863720001
+UniRef50_H5WLK8: MAPEG family|unclassified	0.1863720001
+UniRef50_R1C053	0.1863660889
+UniRef50_R1C053|unclassified	0.1863660889
+UniRef50_D1FI19: TRAP dicarboxylate transporter (Fragment)	0.1863585343
+UniRef50_D1FI19: TRAP dicarboxylate transporter (Fragment)|unclassified	0.1863585343
+UniRef50_O19889: Uroporphyrinogen-III C-methyltransferase	0.1863557125
+UniRef50_O19889: Uroporphyrinogen-III C-methyltransferase|unclassified	0.1863557125
+UniRef50_A0A022NGW7	0.1863068043
+UniRef50_A0A022NGW7|unclassified	0.1863068043
+UniRef50_I2EIT6	0.1862867278
+UniRef50_I2EIT6|unclassified	0.1862867278
+UniRef50_G6C2D9	0.1862858157
+UniRef50_G6C2D9|unclassified	0.1862858157
+UniRef50_UPI000467D824: heme oxygenase	0.1862741476
+UniRef50_UPI000467D824: heme oxygenase|unclassified	0.1862741476
+UniRef50_UPI00047C9351: hypothetical protein, partial	0.1862682870
+UniRef50_UPI00047C9351: hypothetical protein, partial|unclassified	0.1862682870
+UniRef50_UPI000382A304: hypothetical protein	0.1862654800
+UniRef50_UPI000382A304: hypothetical protein|unclassified	0.1862654800
+UniRef50_C6HIT7: NADH-ubiquinone oxidoreductase 51 kDa subunit	0.1862467654
+UniRef50_C6HIT7: NADH-ubiquinone oxidoreductase 51 kDa subunit|unclassified	0.1862467654
+UniRef50_UPI000478601F: pyruvate kinase	0.1862300495
+UniRef50_UPI000478601F: pyruvate kinase|unclassified	0.1862300495
+UniRef50_I7L6K8: Rhodanese-like domain protein	0.1862259537
+UniRef50_I7L6K8: Rhodanese-like domain protein|unclassified	0.1862259537
+UniRef50_K2CFL6	0.1862221015
+UniRef50_K2CFL6|unclassified	0.1862221015
+UniRef50_K7UQG2	0.1862115290
+UniRef50_K7UQG2|unclassified	0.1862115290
+UniRef50_A3PXT6: Phosphopantetheine adenylyltransferase	0.1861942098
+UniRef50_A3PXT6: Phosphopantetheine adenylyltransferase|unclassified	0.1861942098
+UniRef50_UPI00037FACA1: hypothetical protein	0.1861937772
+UniRef50_UPI00037FACA1: hypothetical protein|unclassified	0.1861937772
+UniRef50_UPI0002556351: ABC transporter ATP-binding protein	0.1861849495
+UniRef50_UPI0002556351: ABC transporter ATP-binding protein|unclassified	0.1861849495
+UniRef50_UPI00046A8E92: hypothetical protein	0.1861834993
+UniRef50_UPI00046A8E92: hypothetical protein|unclassified	0.1861834993
+UniRef50_UPI00047CDE44: hypothetical protein	0.1861636128
+UniRef50_UPI00047CDE44: hypothetical protein|unclassified	0.1861636128
+UniRef50_UPI0003B6A2F1: exoribonuclease R	0.1861547995
+UniRef50_UPI0003B6A2F1: exoribonuclease R|unclassified	0.1861547995
+UniRef50_C5F5V4	0.1861509112
+UniRef50_C5F5V4|unclassified	0.1861509112
+UniRef50_UPI0003692945: hypothetical protein	0.1861507979
+UniRef50_UPI0003692945: hypothetical protein|unclassified	0.1861507979
+UniRef50_F9NYN7: Conserved domain protein	0.1861373589
+UniRef50_F9NYN7: Conserved domain protein|unclassified	0.1861373589
+UniRef50_W6KA24	0.1861253203
+UniRef50_W6KA24|unclassified	0.1861253203
+UniRef50_UPI0003B54DE9: peptide chain release factor 3	0.1861096705
+UniRef50_UPI0003B54DE9: peptide chain release factor 3|unclassified	0.1861096705
+UniRef50_A9Z0W9: Putative diguanylate cyclase (Fragment)	0.1860727725
+UniRef50_A9Z0W9: Putative diguanylate cyclase (Fragment)|unclassified	0.1860727725
+UniRef50_B5ZE07: Heat shock protein Hsp20	0.1860655371
+UniRef50_B5ZE07: Heat shock protein Hsp20|unclassified	0.1860655371
+UniRef50_V3D4R0	0.1860637505
+UniRef50_V3D4R0|unclassified	0.1860637505
+UniRef50_W0YM16: ImpA domain-containing protein	0.1860506578
+UniRef50_W0YM16: ImpA domain-containing protein|unclassified	0.1860506578
+UniRef50_UPI0003ACBE81	0.1860432682
+UniRef50_UPI0003ACBE81|unclassified	0.1860432682
+UniRef50_UPI0003B406C8: NAD dependent epimerase/dehydratase	0.1860416860
+UniRef50_UPI0003B406C8: NAD dependent epimerase/dehydratase|unclassified	0.1860416860
+UniRef50_UPI00046AA0BD: hypothetical protein	0.1860367162
+UniRef50_UPI00046AA0BD: hypothetical protein|unclassified	0.1860367162
+UniRef50_A0A023B6Q5	0.1860324509
+UniRef50_A0A023B6Q5|unclassified	0.1860324509
+UniRef50_F0LWQ7	0.1860266634
+UniRef50_F0LWQ7|unclassified	0.1860266634
+UniRef50_A0A011Q8A5	0.1860250984
+UniRef50_A0A011Q8A5|unclassified	0.1860250984
+UniRef50_H1LCR4: GIY-YIG catalytic domain protein	0.1860143493
+UniRef50_H1LCR4: GIY-YIG catalytic domain protein|unclassified	0.1860143493
+UniRef50_Q8XVE6: Indole-3-glycerol phosphate synthase 1	0.1860120569
+UniRef50_Q8XVE6: Indole-3-glycerol phosphate synthase 1|unclassified	0.1860120569
+UniRef50_UPI0004642794: BolA family transcriptional regulator	0.1860019785
+UniRef50_UPI0004642794: BolA family transcriptional regulator|unclassified	0.1860019785
+UniRef50_UPI00036B670D: hypothetical protein	0.1859859529
+UniRef50_UPI00036B670D: hypothetical protein|unclassified	0.1859859529
+UniRef50_R6MUH8	0.1859830044
+UniRef50_R6MUH8|unclassified	0.1859830044
+UniRef50_E7N9S4	0.1859820985
+UniRef50_E7N9S4|unclassified	0.1859820985
+UniRef50_A5EJD2: Leucyl/phenylalanyl-tRNA--protein transferase	0.1859795383
+UniRef50_A5EJD2: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.1859795383
+UniRef50_UPI0003809DD9: hypothetical protein	0.1859780455
+UniRef50_UPI0003809DD9: hypothetical protein|unclassified	0.1859780455
+UniRef50_UPI000470D4BA: amino acid permease, partial	0.1859700656
+UniRef50_UPI000470D4BA: amino acid permease, partial|unclassified	0.1859700656
+UniRef50_C3GCM7: Collagen adhesion protein	0.1859367739
+UniRef50_C3GCM7: Collagen adhesion protein|unclassified	0.1859367739
+UniRef50_UPI000473C800: hypothetical protein, partial	0.1859313316
+UniRef50_UPI000473C800: hypothetical protein, partial|unclassified	0.1859313316
+UniRef50_H3G3P1	0.1859219883
+UniRef50_H3G3P1|unclassified	0.1859219883
+UniRef50_W4L9V6	0.1859196824
+UniRef50_W4L9V6|unclassified	0.1859196824
+UniRef50_Q6AJF8: 3-oxoacyl-[acyl-carrier-protein] synthase 3	0.1858984084
+UniRef50_Q6AJF8: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	0.1858984084
+UniRef50_U7P6U3	0.1858886565
+UniRef50_U7P6U3|unclassified	0.1858886565
+UniRef50_A3VAF9: Transcriptional regulator	0.1858754575
+UniRef50_A3VAF9: Transcriptional regulator|unclassified	0.1858754575
+UniRef50_UPI000367510D: hypothetical protein	0.1858733358
+UniRef50_UPI000367510D: hypothetical protein|unclassified	0.1858733358
+UniRef50_UPI0004668E65: hypothetical protein	0.1858577648
+UniRef50_UPI0004668E65: hypothetical protein|unclassified	0.1858577648
+UniRef50_UPI0003B6D483: hypothetical protein	0.1858475668
+UniRef50_UPI0003B6D483: hypothetical protein|unclassified	0.1858475668
+UniRef50_P06576: ATP synthase subunit beta, mitochondrial	0.1858431689
+UniRef50_P06576: ATP synthase subunit beta, mitochondrial|unclassified	0.1858431689
+UniRef50_P56480: ATP synthase subunit beta, mitochondrial	0.1858431689
+UniRef50_P56480: ATP synthase subunit beta, mitochondrial|unclassified	0.1858431689
+UniRef50_B1TES8	0.1858321443
+UniRef50_B1TES8|unclassified	0.1858321443
+UniRef50_UPI00035F9B9D: hypothetical protein	0.1858302680
+UniRef50_UPI00035F9B9D: hypothetical protein|unclassified	0.1858302680
+UniRef50_P31373: Cystathionine gamma-lyase	0.1858223746
+UniRef50_P31373: Cystathionine gamma-lyase|unclassified	0.1858223746
+UniRef50_UPI000472E79E: flagellar biosynthesis protein FlhB	0.1858111044
+UniRef50_UPI000472E79E: flagellar biosynthesis protein FlhB|unclassified	0.1858111044
+UniRef50_D8TNC3	0.1858045336
+UniRef50_D8TNC3|unclassified	0.1858045336
+UniRef50_UPI0003B51919: LysR family transcriptional regulator	0.1857972227
+UniRef50_UPI0003B51919: LysR family transcriptional regulator|unclassified	0.1857972227
+UniRef50_UPI0003B4A50C: hypothetical protein, partial	0.1857764170
+UniRef50_UPI0003B4A50C: hypothetical protein, partial|unclassified	0.1857764170
+UniRef50_S6CIR3	0.1857519812
+UniRef50_S6CIR3|unclassified	0.1857519812
+UniRef50_W5X8F6: Response regulator receiver domain-containing protein	0.1857422465
+UniRef50_W5X8F6: Response regulator receiver domain-containing protein|unclassified	0.1857422465
+UniRef50_S0KY85	0.1857378570
+UniRef50_S0KY85|unclassified	0.1857378570
+UniRef50_Q57I19: Putative bifunctional cytochrome c-type biogenesis protein CcmAE	0.1857196492
+UniRef50_Q57I19: Putative bifunctional cytochrome c-type biogenesis protein CcmAE|unclassified	0.1857196492
+UniRef50_Q8PHQ3: Aliphatic sulfonates import ATP-binding protein SsuB 2	0.1857145876
+UniRef50_Q8PHQ3: Aliphatic sulfonates import ATP-binding protein SsuB 2|unclassified	0.1857145876
+UniRef50_UPI0004654759: hypothetical protein, partial	0.1856983372
+UniRef50_UPI0004654759: hypothetical protein, partial|unclassified	0.1856983372
+UniRef50_UPI00030F43CB: hypothetical protein	0.1856964690
+UniRef50_UPI00030F43CB: hypothetical protein|unclassified	0.1856964690
+UniRef50_K4QLR4	0.1856879744
+UniRef50_K4QLR4|unclassified	0.1856879744
+UniRef50_P73450: Nitrate transport ATP-binding protein NrtC	0.1856866353
+UniRef50_P73450: Nitrate transport ATP-binding protein NrtC|unclassified	0.1856866353
+UniRef50_G2KR61: Usg-like family protein	0.1856545818
+UniRef50_G2KR61: Usg-like family protein|unclassified	0.1856545818
+UniRef50_P71013: Signal peptidase I T	0.1856530856
+UniRef50_P71013: Signal peptidase I T|unclassified	0.1856530856
+UniRef50_UPI0003736046: hypothetical protein	0.1856202950
+UniRef50_UPI0003736046: hypothetical protein|unclassified	0.1856202950
+UniRef50_F4M844: Immunobinding protein B IbrB	0.1856143117
+UniRef50_F4M844: Immunobinding protein B IbrB|unclassified	0.1856143117
+UniRef50_A4WN46: Dihydroxy-acid dehydratase	0.1856137833
+UniRef50_A4WN46: Dihydroxy-acid dehydratase|unclassified	0.1856137833
+UniRef50_G7VUW1	0.1856115382
+UniRef50_G7VUW1|unclassified	0.1856115382
+UniRef50_UPI000328A30D: PREDICTED: L-amino-acid oxidase-like	0.1856102759
+UniRef50_UPI000328A30D: PREDICTED: L-amino-acid oxidase-like|unclassified	0.1856102759
+UniRef50_UPI000465DC9F: hypothetical protein	0.1856005131
+UniRef50_UPI000465DC9F: hypothetical protein|unclassified	0.1856005131
+UniRef50_Q28PK8	0.1855879393
+UniRef50_Q28PK8|unclassified	0.1855879393
+UniRef50_UPI000225B453: superfamily II DNA/RNA helicase	0.1855737838
+UniRef50_UPI000225B453: superfamily II DNA/RNA helicase|unclassified	0.1855737838
+UniRef50_S3J1S9	0.1855733563
+UniRef50_S3J1S9|unclassified	0.1855733563
+UniRef50_UPI0003501881: PREDICTED: skin secretory protein xP2-like	0.1855499657
+UniRef50_UPI0003501881: PREDICTED: skin secretory protein xP2-like|unclassified	0.1855499657
+UniRef50_F9UHG1: Putative solute symporter protein	0.1855461420
+UniRef50_F9UHG1: Putative solute symporter protein|unclassified	0.1855461420
+UniRef50_UPI0003B5754D: 30S ribosomal protein S2	0.1855410891
+UniRef50_UPI0003B5754D: 30S ribosomal protein S2|unclassified	0.1855410891
+UniRef50_UPI00040F6D8A: hypothetical protein	0.1855298495
+UniRef50_UPI00040F6D8A: hypothetical protein|unclassified	0.1855298495
+UniRef50_Q64VL7	0.1855157193
+UniRef50_Q64VL7|unclassified	0.1855157193
+UniRef50_UPI000474260B: DNA gyrase subunit B	0.1855037534
+UniRef50_UPI000474260B: DNA gyrase subunit B|unclassified	0.1855037534
+UniRef50_F3GTJ6: ABC-type polar amino acid transport system ATPase component	0.1855032783
+UniRef50_F3GTJ6: ABC-type polar amino acid transport system ATPase component|unclassified	0.1855032783
+UniRef50_O67581: Malate dehydrogenase 2	0.1854865548
+UniRef50_O67581: Malate dehydrogenase 2|unclassified	0.1854865548
+UniRef50_B4FRK9	0.1854557227
+UniRef50_B4FRK9|unclassified	0.1854557227
+UniRef50_Q0F3C9	0.1854353851
+UniRef50_Q0F3C9|unclassified	0.1854353851
+UniRef50_P57022: Bactoprenol glucosyl transferase	0.1854305471
+UniRef50_P57022: Bactoprenol glucosyl transferase|unclassified	0.1854305471
+UniRef50_UPI0003608D8E: hypothetical protein	0.1854120836
+UniRef50_UPI0003608D8E: hypothetical protein|unclassified	0.1854120836
+UniRef50_UPI000465F820: peptide ABC transporter permease	0.1854002321
+UniRef50_UPI000465F820: peptide ABC transporter permease|unclassified	0.1854002321
+UniRef50_UPI00037BDD3D: hypothetical protein, partial	0.1853968928
+UniRef50_UPI00037BDD3D: hypothetical protein, partial|unclassified	0.1853968928
+UniRef50_UPI000252B2C6: PREDICTED: LOW QUALITY PROTEIN: glycerol kinase-like	0.1853951348
+UniRef50_UPI000252B2C6: PREDICTED: LOW QUALITY PROTEIN: glycerol kinase-like|unclassified	0.1853951348
+UniRef50_UPI00032A0816: PREDICTED: 2-methylcitrate dehydratase-like	0.1853866066
+UniRef50_UPI00032A0816: PREDICTED: 2-methylcitrate dehydratase-like|unclassified	0.1853866066
+UniRef50_K0N2I3	0.1853829009
+UniRef50_K0N2I3|unclassified	0.1853829009
+UniRef50_G9AI86	0.1853666621
+UniRef50_G9AI86|unclassified	0.1853666621
+UniRef50_UPI000225C0BC: Holliday junction ATP-dependent DNA helicase ruvA	0.1853465157
+UniRef50_UPI000225C0BC: Holliday junction ATP-dependent DNA helicase ruvA|unclassified	0.1853465157
+UniRef50_G5PMJ5	0.1853368517
+UniRef50_G5PMJ5|unclassified	0.1853368517
+UniRef50_UPI0003AB9209	0.1853272679
+UniRef50_UPI0003AB9209|unclassified	0.1853272679
+UniRef50_UPI0002193AE6: excinuclease ABC subunit A	0.1853038303
+UniRef50_UPI0002193AE6: excinuclease ABC subunit A|unclassified	0.1853038303
+UniRef50_UPI000345EF10: hypothetical protein	0.1852972141
+UniRef50_UPI000345EF10: hypothetical protein|unclassified	0.1852972141
+UniRef50_F9DPQ2: Protein of hypothetical function UPF0223	0.1852942970
+UniRef50_F9DPQ2: Protein of hypothetical function UPF0223|unclassified	0.1852942970
+UniRef50_UPI00036264D9: hypothetical protein	0.1852889194
+UniRef50_UPI00036264D9: hypothetical protein|unclassified	0.1852889194
+UniRef50_UPI0003B3ECFC: hypothetical protein, partial	0.1852858764
+UniRef50_UPI0003B3ECFC: hypothetical protein, partial|unclassified	0.1852858764
+UniRef50_Q5P082: Holo-[acyl-carrier-protein] synthase	0.1852854698
+UniRef50_Q5P082: Holo-[acyl-carrier-protein] synthase|unclassified	0.1852854698
+UniRef50_P55357: Mannose-1-phosphate guanylyltransferase	0.1852815950
+UniRef50_P55357: Mannose-1-phosphate guanylyltransferase|unclassified	0.1852815950
+UniRef50_A9EEQ6: TRAP transporter, DctM subunit	0.1852740296
+UniRef50_A9EEQ6: TRAP transporter, DctM subunit|unclassified	0.1852740296
+UniRef50_W4QA55: Transcription accessory protein	0.1852558718
+UniRef50_W4QA55: Transcription accessory protein|unclassified	0.1852558718
+UniRef50_Q9I785	0.1852504500
+UniRef50_Q9I785|unclassified	0.1852504500
+UniRef50_U6LS15	0.1852370372
+UniRef50_U6LS15|unclassified	0.1852370372
+UniRef50_UPI00047E113B: hypothetical protein	0.1852362578
+UniRef50_UPI00047E113B: hypothetical protein|unclassified	0.1852362578
+UniRef50_F5ZJY8: Membrane protein	0.1852275269
+UniRef50_F5ZJY8: Membrane protein|unclassified	0.1852275269
+UniRef50_UPI0003C1AA09	0.1852270732
+UniRef50_UPI0003C1AA09|unclassified	0.1852270732
+UniRef50_UPI0003B6A60F: hypothetical protein	0.1852245718
+UniRef50_UPI0003B6A60F: hypothetical protein|unclassified	0.1852245718
+UniRef50_UPI00037EDDB2: hypothetical protein	0.1852224524
+UniRef50_UPI00037EDDB2: hypothetical protein|unclassified	0.1852224524
+UniRef50_J8ZV48	0.1852058577
+UniRef50_J8ZV48|unclassified	0.1852058577
+UniRef50_UPI0003B50A5D: cytochrome C biogenesis protein CcmE	0.1852048585
+UniRef50_UPI0003B50A5D: cytochrome C biogenesis protein CcmE|unclassified	0.1852048585
+UniRef50_D8UGB7	0.1851436788
+UniRef50_D8UGB7|unclassified	0.1851436788
+UniRef50_Q8RIK9: Cysteine--tRNA ligase	0.1851339955
+UniRef50_Q8RIK9: Cysteine--tRNA ligase|unclassified	0.1851339955
+UniRef50_W1FEU3: LppC putative lipoprotein	0.1851299133
+UniRef50_W1FEU3: LppC putative lipoprotein|unclassified	0.1851299133
+UniRef50_UPI0003B66746: RNA polymerase sigma factor RpoD, partial	0.1851262350
+UniRef50_UPI0003B66746: RNA polymerase sigma factor RpoD, partial|unclassified	0.1851262350
+UniRef50_I1QUG7	0.1851202145
+UniRef50_I1QUG7|unclassified	0.1851202145
+UniRef50_UPI0003653AAE: hypothetical protein	0.1851145282
+UniRef50_UPI0003653AAE: hypothetical protein|unclassified	0.1851145282
+UniRef50_UPI000375FDF1: hypothetical protein	0.1851118375
+UniRef50_UPI000375FDF1: hypothetical protein|unclassified	0.1851118375
+UniRef50_UPI0004638DB9: hypothetical protein	0.1850714029
+UniRef50_UPI0004638DB9: hypothetical protein|unclassified	0.1850714029
+UniRef50_UPI00037F9339: hypothetical protein	0.1850549663
+UniRef50_UPI00037F9339: hypothetical protein|unclassified	0.1850549663
+UniRef50_UPI0003B5AEEE: sensor histidine kinase	0.1850542851
+UniRef50_UPI0003B5AEEE: sensor histidine kinase|unclassified	0.1850542851
+UniRef50_UPI000362D029: hypothetical protein	0.1850345092
+UniRef50_UPI000362D029: hypothetical protein|unclassified	0.1850345092
+UniRef50_UPI00036610BE: hypothetical protein	0.1850293213
+UniRef50_UPI00036610BE: hypothetical protein|unclassified	0.1850293213
+UniRef50_UPI00047E7FE7: hypothetical protein	0.1850062309
+UniRef50_UPI00047E7FE7: hypothetical protein|unclassified	0.1850062309
+UniRef50_UPI00035F7440: GTP-binding protein Der	0.1849932032
+UniRef50_UPI00035F7440: GTP-binding protein Der|unclassified	0.1849932032
+UniRef50_A9B2Q5: Aminomethyltransferase	0.1849691483
+UniRef50_A9B2Q5: Aminomethyltransferase|unclassified	0.1849691483
+UniRef50_B9NXT7: Lytic transglycosylase, catalytic	0.1849549494
+UniRef50_B9NXT7: Lytic transglycosylase, catalytic|unclassified	0.1849549494
+UniRef50_UPI00037BA482: hypothetical protein	0.1849472647
+UniRef50_UPI00037BA482: hypothetical protein|unclassified	0.1849472647
+UniRef50_UPI000467EEF3: amino acid transporter LysE	0.1849386769
+UniRef50_UPI000467EEF3: amino acid transporter LysE|unclassified	0.1849386769
+UniRef50_UPI000307C90C: hypothetical protein	0.1849328527
+UniRef50_UPI000307C90C: hypothetical protein|unclassified	0.1849328527
+UniRef50_UPI0003749619: hypothetical protein	0.1849269645
+UniRef50_UPI0003749619: hypothetical protein|unclassified	0.1849269645
+UniRef50_R9IJG8: Chromosome partitioning protein	0.1849258885
+UniRef50_R9IJG8: Chromosome partitioning protein|unclassified	0.1849258885
+UniRef50_UPI0003739DA9: hypothetical protein	0.1849222599
+UniRef50_UPI0003739DA9: hypothetical protein|unclassified	0.1849222599
+UniRef50_UPI00046FF595: methyltransferase	0.1848845345
+UniRef50_UPI00046FF595: methyltransferase|unclassified	0.1848845345
+UniRef50_R5B425	0.1848713900
+UniRef50_R5B425|unclassified	0.1848713900
+UniRef50_UPI000364FA10: hypothetical protein	0.1848673110
+UniRef50_UPI000364FA10: hypothetical protein|unclassified	0.1848673110
+UniRef50_W4RKR6: Transketolase	0.1848624522
+UniRef50_W4RKR6: Transketolase|unclassified	0.1848624522
+UniRef50_UPI0003FCA199: hypothetical protein	0.1848515532
+UniRef50_UPI0003FCA199: hypothetical protein|unclassified	0.1848515532
+UniRef50_UPI0003B39CF0: sigma-B/F/G subfamily RNA polymerase sigma-28 factor	0.1848344411
+UniRef50_UPI0003B39CF0: sigma-B/F/G subfamily RNA polymerase sigma-28 factor|unclassified	0.1848344411
+UniRef50_I7G695	0.1848289532
+UniRef50_I7G695|unclassified	0.1848289532
+UniRef50_D0CY96: Peptidase U35, phage prohead HK97	0.1848111374
+UniRef50_D0CY96: Peptidase U35, phage prohead HK97|unclassified	0.1848111374
+UniRef50_B1ZI45	0.1848083316
+UniRef50_B1ZI45|unclassified	0.1848083316
+UniRef50_UPI000475A6B5: hypothetical protein	0.1847956599
+UniRef50_UPI000475A6B5: hypothetical protein|unclassified	0.1847956599
+UniRef50_F6AJL4	0.1847917779
+UniRef50_F6AJL4|unclassified	0.1847917779
+UniRef50_D3A5A7	0.1847889248
+UniRef50_D3A5A7|unclassified	0.1847889248
+UniRef50_Q58375: Uroporphyrinogen-III C-methyltransferase	0.1847872306
+UniRef50_Q58375: Uroporphyrinogen-III C-methyltransferase|unclassified	0.1847872306
+UniRef50_K0WPU5	0.1847753329
+UniRef50_K0WPU5|unclassified	0.1847753329
+UniRef50_Q12XB4: Diphthine synthase	0.1847722499
+UniRef50_Q12XB4: Diphthine synthase|unclassified	0.1847722499
+UniRef50_UPI0003766A44: hypothetical protein	0.1847442932
+UniRef50_UPI0003766A44: hypothetical protein|unclassified	0.1847442932
+UniRef50_U6MR10	0.1847404397
+UniRef50_U6MR10|unclassified	0.1847404397
+UniRef50_U2B0M6	0.1847291541
+UniRef50_U2B0M6|unclassified	0.1847291541
+UniRef50_V6KFE4	0.1847281836
+UniRef50_V6KFE4|unclassified	0.1847281836
+UniRef50_UPI0004689CAB: hypothetical protein	0.1847200104
+UniRef50_UPI0004689CAB: hypothetical protein|unclassified	0.1847200104
+UniRef50_Q8XU08	0.1847180426
+UniRef50_Q8XU08|unclassified	0.1847180426
+UniRef50_O86567: Aminomethyltransferase	0.1846939704
+UniRef50_O86567: Aminomethyltransferase|unclassified	0.1846939704
+UniRef50_UPI0003EF428F: 2,4-dienoyl-CoA reductase	0.1846628575
+UniRef50_UPI0003EF428F: 2,4-dienoyl-CoA reductase|unclassified	0.1846628575
+UniRef50_C6VL47: Oxidoreductase (Putative)	0.1846565052
+UniRef50_C6VL47: Oxidoreductase (Putative)|unclassified	0.1846565052
+UniRef50_UPI000417E79D: hypothetical protein	0.1846367897
+UniRef50_UPI000417E79D: hypothetical protein|unclassified	0.1846367897
+UniRef50_UPI0003775EA0: 30S ribosomal protein S4, partial	0.1846202305
+UniRef50_UPI0003775EA0: 30S ribosomal protein S4, partial|unclassified	0.1846202305
+UniRef50_UPI000362AF8F: citrate (pro-3S)-lyase, partial	0.1846201719
+UniRef50_UPI000362AF8F: citrate (pro-3S)-lyase, partial|unclassified	0.1846201719
+UniRef50_UPI0004573603: PREDICTED: transcription elongation regulator 1 isoform X5	0.1846087363
+UniRef50_UPI0004573603: PREDICTED: transcription elongation regulator 1 isoform X5|unclassified	0.1846087363
+UniRef50_K0CBT4	0.1846062025
+UniRef50_K0CBT4|unclassified	0.1846062025
+UniRef50_P54304: Oxygen-independent coproporphyrinogen-III oxidase-like protein YqeR	0.1845849667
+UniRef50_P54304: Oxygen-independent coproporphyrinogen-III oxidase-like protein YqeR|unclassified	0.1845849667
+UniRef50_C3DV41: Hypothetical conjugation protein	0.1845726899
+UniRef50_C3DV41: Hypothetical conjugation protein|unclassified	0.1845726899
+UniRef50_UPI000471048B: hypothetical protein, partial	0.1845706220
+UniRef50_UPI000471048B: hypothetical protein, partial|unclassified	0.1845706220
+UniRef50_B8KL81	0.1845647376
+UniRef50_B8KL81|unclassified	0.1845647376
+UniRef50_UPI00036954F0: hypothetical protein	0.1845599806
+UniRef50_UPI00036954F0: hypothetical protein|unclassified	0.1845599806
+UniRef50_UPI000287F633: D-amino acid dehydrogenase	0.1845545529
+UniRef50_UPI000287F633: D-amino acid dehydrogenase|unclassified	0.1845545529
+UniRef50_B6ISA4	0.1845385468
+UniRef50_B6ISA4|unclassified	0.1845385468
+UniRef50_V4RCH7	0.1845297145
+UniRef50_V4RCH7|unclassified	0.1845297145
+UniRef50_UPI00047E31BE: methionine aminopeptidase	0.1845250518
+UniRef50_UPI00047E31BE: methionine aminopeptidase|unclassified	0.1845250518
+UniRef50_UPI000368EE76: hypothetical protein, partial	0.1845202864
+UniRef50_UPI000368EE76: hypothetical protein, partial|unclassified	0.1845202864
+UniRef50_UPI0003650948: hypothetical protein, partial	0.1844995029
+UniRef50_UPI0003650948: hypothetical protein, partial|unclassified	0.1844995029
+UniRef50_C2TR09	0.1844885636
+UniRef50_C2TR09|unclassified	0.1844885636
+UniRef50_Q9ZDG4: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI	0.1844808678
+UniRef50_Q9ZDG4: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI|unclassified	0.1844808678
+UniRef50_UPI00037E6FEA: hypothetical protein	0.1844675524
+UniRef50_UPI00037E6FEA: hypothetical protein|unclassified	0.1844675524
+UniRef50_UPI0003AD30EE: cold-shock protein	0.1844495935
+UniRef50_UPI0003AD30EE: cold-shock protein|unclassified	0.1844495935
+UniRef50_A5L6U3: Acylphosphatase	0.1844445394
+UniRef50_A5L6U3: Acylphosphatase|unclassified	0.1844445394
+UniRef50_B9HS46	0.1844362817
+UniRef50_B9HS46|unclassified	0.1844362817
+UniRef50_X8J0W2	0.1844344209
+UniRef50_X8J0W2|unclassified	0.1844344209
+UniRef50_UPI000375B506: hypothetical protein	0.1844307162
+UniRef50_UPI000375B506: hypothetical protein|unclassified	0.1844307162
+UniRef50_UPI000465DFFA: histidine kinase	0.1844045896
+UniRef50_UPI000465DFFA: histidine kinase|unclassified	0.1844045896
+UniRef50_R9LV44	0.1844006228
+UniRef50_R9LV44|unclassified	0.1844006228
+UniRef50_D8TQ43	0.1843997787
+UniRef50_D8TQ43|unclassified	0.1843997787
+UniRef50_UPI000478D6DD: transcriptional regulator	0.1843929106
+UniRef50_UPI000478D6DD: transcriptional regulator|unclassified	0.1843929106
+UniRef50_UPI00046768AB: hypothetical protein	0.1843698351
+UniRef50_UPI00046768AB: hypothetical protein|unclassified	0.1843698351
+UniRef50_Q65RE3	0.1843631097
+UniRef50_Q65RE3|unclassified	0.1843631097
+UniRef50_K9E087	0.1843491123
+UniRef50_K9E087|unclassified	0.1843491123
+UniRef50_UPI000225B969: conjugal transfer protein TraC	0.1843386878
+UniRef50_UPI000225B969: conjugal transfer protein TraC|unclassified	0.1843386878
+UniRef50_X6MXZ9	0.1843348295
+UniRef50_X6MXZ9|unclassified	0.1843348295
+UniRef50_UPI0002657849: PREDICTED: putative ribosomal RNA methyltransferase CG11447-like	0.1843346398
+UniRef50_UPI0002657849: PREDICTED: putative ribosomal RNA methyltransferase CG11447-like|unclassified	0.1843346398
+UniRef50_UPI000420BD3D: phospholipase	0.1843307981
+UniRef50_UPI000420BD3D: phospholipase|unclassified	0.1843307981
+UniRef50_V6PCA1	0.1843223539
+UniRef50_V6PCA1|unclassified	0.1843223539
+UniRef50_B9EUP4	0.1843208997
+UniRef50_B9EUP4|unclassified	0.1843208997
+UniRef50_E3EZG9	0.1843161774
+UniRef50_E3EZG9|unclassified	0.1843161774
+UniRef50_U6GUF5	0.1843155705
+UniRef50_U6GUF5|unclassified	0.1843155705
+UniRef50_UPI000443281C: PREDICTED: LOW QUALITY PROTEIN: GC-rich sequence DNA-binding factor 2	0.1843151923
+UniRef50_UPI000443281C: PREDICTED: LOW QUALITY PROTEIN: GC-rich sequence DNA-binding factor 2|unclassified	0.1843151923
+UniRef50_UPI0003ADBFFE: PREDICTED: interferon regulatory factor 4	0.1843070706
+UniRef50_UPI0003ADBFFE: PREDICTED: interferon regulatory factor 4|unclassified	0.1843070706
+UniRef50_UPI0003F107C2	0.1842943201
+UniRef50_UPI0003F107C2|unclassified	0.1842943201
+UniRef50_UPI000200107B: putative NAD-specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ	0.1842613690
+UniRef50_UPI000200107B: putative NAD-specific glutamate dehydrogenase encoded in antisense gene pair with dnaKJ|unclassified	0.1842613690
+UniRef50_UPI0002F2229A: hypothetical protein	0.1842612489
+UniRef50_UPI0002F2229A: hypothetical protein|unclassified	0.1842612489
+UniRef50_R6HHQ3	0.1842520673
+UniRef50_R6HHQ3|unclassified	0.1842520673
+UniRef50_K6X876: Putative aldo/keto reductase	0.1842475050
+UniRef50_K6X876: Putative aldo/keto reductase|unclassified	0.1842475050
+UniRef50_UPI0003AAF3AA: cystathionine beta-lyase	0.1842357528
+UniRef50_UPI0003AAF3AA: cystathionine beta-lyase|unclassified	0.1842357528
+UniRef50_UPI00036E303C: hypothetical protein, partial	0.1842303853
+UniRef50_UPI00036E303C: hypothetical protein, partial|unclassified	0.1842303853
+UniRef50_S3ZAU1: Putative NAD(P)H oxidoreductase YcaK	0.1842092312
+UniRef50_S3ZAU1: Putative NAD(P)H oxidoreductase YcaK|unclassified	0.1842092312
+UniRef50_UPI00016C3AC8: Na+/H+ antiporter	0.1842001680
+UniRef50_UPI00016C3AC8: Na+/H+ antiporter|unclassified	0.1842001680
+UniRef50_UPI000426481D: hypothetical protein	0.1841792659
+UniRef50_UPI000426481D: hypothetical protein|unclassified	0.1841792659
+UniRef50_Q2P3Y4: Serine--tRNA ligase	0.1841709683
+UniRef50_Q2P3Y4: Serine--tRNA ligase|unclassified	0.1841709683
+UniRef50_J3CXJ3: N-methylhydantoinase A/acetone carboxylase, beta subunit (Fragment)	0.1841674962
+UniRef50_J3CXJ3: N-methylhydantoinase A/acetone carboxylase, beta subunit (Fragment)|unclassified	0.1841674962
+UniRef50_A0A029N2S7	0.1841664639
+UniRef50_A0A029N2S7|unclassified	0.1841664639
+UniRef50_D5BUC9	0.1841516116
+UniRef50_D5BUC9|unclassified	0.1841516116
+UniRef50_Q81ZF5: Methionine import ATP-binding protein MetN 2	0.1841503974
+UniRef50_Q81ZF5: Methionine import ATP-binding protein MetN 2|unclassified	0.1841503974
+UniRef50_S5HSW3	0.1841460076
+UniRef50_S5HSW3|unclassified	0.1841460076
+UniRef50_UPI0003C01E81	0.1841263502
+UniRef50_UPI0003C01E81|unclassified	0.1841263502
+UniRef50_Q609Y2: Orotidine 5'-phosphate decarboxylase	0.1841202895
+UniRef50_Q609Y2: Orotidine 5'-phosphate decarboxylase|unclassified	0.1841202895
+UniRef50_F0FGQ0	0.1841103296
+UniRef50_F0FGQ0|unclassified	0.1841103296
+UniRef50_J6LH83: PE-PGRS family protein	0.1841053172
+UniRef50_J6LH83: PE-PGRS family protein|unclassified	0.1841053172
+UniRef50_G5QPZ2: Protein T24A6.7	0.1841028010
+UniRef50_G5QPZ2: Protein T24A6.7|unclassified	0.1841028010
+UniRef50_S5U2F9	0.1840936637
+UniRef50_S5U2F9|unclassified	0.1840936637
+UniRef50_V9GHA4: Magnesium and cobalt efflux protein CorC	0.1840871799
+UniRef50_V9GHA4: Magnesium and cobalt efflux protein CorC|unclassified	0.1840871799
+UniRef50_R1CV54	0.1840530454
+UniRef50_R1CV54|unclassified	0.1840530454
+UniRef50_UPI0002D66CA5: hypothetical protein	0.1840325489
+UniRef50_UPI0002D66CA5: hypothetical protein|unclassified	0.1840325489
+UniRef50_V9C5G3: Siderophore-interacting protein	0.1840109292
+UniRef50_V9C5G3: Siderophore-interacting protein|unclassified	0.1840109292
+UniRef50_UPI000378A168: hypothetical protein	0.1840066723
+UniRef50_UPI000378A168: hypothetical protein|unclassified	0.1840066723
+UniRef50_UPI0004635A7D: hypothetical protein	0.1840013524
+UniRef50_UPI0004635A7D: hypothetical protein|unclassified	0.1840013524
+UniRef50_X2H7I4	0.1839945965
+UniRef50_X2H7I4|unclassified	0.1839945965
+UniRef50_A0A059LAI1	0.1839884535
+UniRef50_A0A059LAI1|unclassified	0.1839884535
+UniRef50_U9GUQ4	0.1839851885
+UniRef50_U9GUQ4|unclassified	0.1839851885
+UniRef50_M1YXF3	0.1839551061
+UniRef50_M1YXF3|unclassified	0.1839551061
+UniRef50_UPI0003F09A6B: PREDICTED: protein lin-28 homolog B-like, partial	0.1839238689
+UniRef50_UPI0003F09A6B: PREDICTED: protein lin-28 homolog B-like, partial|unclassified	0.1839238689
+UniRef50_UPI0002558E18: hypothetical protein	0.1839230657
+UniRef50_UPI0002558E18: hypothetical protein|unclassified	0.1839230657
+UniRef50_A3WKI4	0.1839136878
+UniRef50_A3WKI4|unclassified	0.1839136878
+UniRef50_A3SIU3: Phenylacetic acid degradation-related protein	0.1839013857
+UniRef50_A3SIU3: Phenylacetic acid degradation-related protein|unclassified	0.1839013857
+UniRef50_A0A024JQL9: Similar to Saccharomyces cerevisiae YBR146W MRPS9 Mitochondrial ribosomal protein of the small subunit	0.1838889796
+UniRef50_A0A024JQL9: Similar to Saccharomyces cerevisiae YBR146W MRPS9 Mitochondrial ribosomal protein of the small subunit|unclassified	0.1838889796
+UniRef50_UPI0003C13170: PREDICTED: hybrid signal transduction histidine kinase A-like	0.1838859442
+UniRef50_UPI0003C13170: PREDICTED: hybrid signal transduction histidine kinase A-like|unclassified	0.1838859442
+UniRef50_H2AEH0: Vegetative incompatibility protein HET-E-1	0.1838849463
+UniRef50_H2AEH0: Vegetative incompatibility protein HET-E-1|unclassified	0.1838849463
+UniRef50_UPI00042B81D2: Ribosomal protein L1p/L10e family, putative isoform 1	0.1838709244
+UniRef50_UPI00042B81D2: Ribosomal protein L1p/L10e family, putative isoform 1|unclassified	0.1838709244
+UniRef50_UPI0003C12792: PREDICTED: hydroxyacyl-coenzyme A dehydrogenase, mitochondrial-like, partial	0.1838703621
+UniRef50_UPI0003C12792: PREDICTED: hydroxyacyl-coenzyme A dehydrogenase, mitochondrial-like, partial|unclassified	0.1838703621
+UniRef50_V7YYZ7	0.1838696546
+UniRef50_V7YYZ7|unclassified	0.1838696546
+UniRef50_O34932: Dephospho-CoA kinase	0.1838673333
+UniRef50_O34932: Dephospho-CoA kinase|unclassified	0.1838673333
+UniRef50_UPI000350CE44: PREDICTED: collagen alpha-1(I) chain-like, partial	0.1838541307
+UniRef50_UPI000350CE44: PREDICTED: collagen alpha-1(I) chain-like, partial|unclassified	0.1838541307
+UniRef50_UPI000382E61F: hypothetical protein, partial	0.1838541208
+UniRef50_UPI000382E61F: hypothetical protein, partial|unclassified	0.1838541208
+UniRef50_B9TMS7	0.1838523268
+UniRef50_B9TMS7|unclassified	0.1838523268
+UniRef50_P51754: Nitrogenase molybdenum-iron protein beta chain	0.1838408400
+UniRef50_P51754: Nitrogenase molybdenum-iron protein beta chain|unclassified	0.1838408400
+UniRef50_G9ZGF7	0.1838395432
+UniRef50_G9ZGF7|unclassified	0.1838395432
+UniRef50_UPI00042431D1: hypothetical protein	0.1838164561
+UniRef50_UPI00042431D1: hypothetical protein|unclassified	0.1838164561
+UniRef50_L1BUX8	0.1838096537
+UniRef50_L1BUX8|unclassified	0.1838096537
+UniRef50_M4XKV6: RhuM protein	0.1838091380
+UniRef50_M4XKV6: RhuM protein|unclassified	0.1838091380
+UniRef50_Q53WI3	0.1838007458
+UniRef50_Q53WI3|unclassified	0.1838007458
+UniRef50_D2AJG0	0.1837905759
+UniRef50_D2AJG0|unclassified	0.1837905759
+UniRef50_UPI00046CF768: hypothetical protein	0.1837891125
+UniRef50_UPI00046CF768: hypothetical protein|unclassified	0.1837891125
+UniRef50_UPI0003B45185: DNA-directed RNA polymerase subunit alpha	0.1837861709
+UniRef50_UPI0003B45185: DNA-directed RNA polymerase subunit alpha|unclassified	0.1837861709
+UniRef50_UPI0003B57BB7: 30S ribosomal protein S2, partial	0.1837635464
+UniRef50_UPI0003B57BB7: 30S ribosomal protein S2, partial|unclassified	0.1837635464
+UniRef50_C7J8R2: Os11g0597800 protein	0.1837590125
+UniRef50_C7J8R2: Os11g0597800 protein|unclassified	0.1837590125
+UniRef50_A7HQY8	0.1837420920
+UniRef50_A7HQY8|unclassified	0.1837420920
+UniRef50_G2RUX1: ABC transporter	0.1837349499
+UniRef50_G2RUX1: ABC transporter|unclassified	0.1837349499
+UniRef50_UPI000382A817: hypothetical protein	0.1837227788
+UniRef50_UPI000382A817: hypothetical protein|unclassified	0.1837227788
+UniRef50_UPI00046D65E7: hypothetical protein	0.1837065737
+UniRef50_UPI00046D65E7: hypothetical protein|unclassified	0.1837065737
+UniRef50_UPI000262CF31: Inner membrane arginine ABC transporter permease	0.1837038256
+UniRef50_UPI000262CF31: Inner membrane arginine ABC transporter permease|unclassified	0.1837038256
+UniRef50_T8SKQ2	0.1836862223
+UniRef50_T8SKQ2|unclassified	0.1836862223
+UniRef50_V4R1A3	0.1836724354
+UniRef50_V4R1A3|unclassified	0.1836724354
+UniRef50_UPI00036847EE: hypothetical protein	0.1836615402
+UniRef50_UPI00036847EE: hypothetical protein|unclassified	0.1836615402
+UniRef50_H0TXR5	0.1836532318
+UniRef50_H0TXR5|unclassified	0.1836532318
+UniRef50_UPI00037F1D2C: hypothetical protein	0.1836390722
+UniRef50_UPI00037F1D2C: hypothetical protein|unclassified	0.1836390722
+UniRef50_M3YE72	0.1836272017
+UniRef50_M3YE72|unclassified	0.1836272017
+UniRef50_B1VDP6: 6,7-dimethyl-8-ribityllumazine synthase	0.1836205044
+UniRef50_B1VDP6: 6,7-dimethyl-8-ribityllumazine synthase|unclassified	0.1836205044
+UniRef50_UPI00046FBE0E: purine-nucleoside phosphorylase	0.1836199191
+UniRef50_UPI00046FBE0E: purine-nucleoside phosphorylase|unclassified	0.1836199191
+UniRef50_L0GWW9	0.1836134361
+UniRef50_L0GWW9|unclassified	0.1836134361
+UniRef50_X0W0Y6: Marine sediment metagenome DNA, contig: S01H1_S21842 (Fragment)	0.1835869618
+UniRef50_X0W0Y6: Marine sediment metagenome DNA, contig: S01H1_S21842 (Fragment)|unclassified	0.1835869618
+UniRef50_UPI0003FB549E: hypothetical protein	0.1835830627
+UniRef50_UPI0003FB549E: hypothetical protein|unclassified	0.1835830627
+UniRef50_D7KPN3: Predicted protein	0.1835741772
+UniRef50_D7KPN3: Predicted protein|unclassified	0.1835741772
+UniRef50_D3R283: Transcriptional regulator, PadR family	0.1835611265
+UniRef50_D3R283: Transcriptional regulator, PadR family|unclassified	0.1835611265
+UniRef50_UPI0003B78F72: hypothetical protein	0.1835596466
+UniRef50_UPI0003B78F72: hypothetical protein|unclassified	0.1835596466
+UniRef50_A0A011S8G4	0.1835313608
+UniRef50_A0A011S8G4|unclassified	0.1835313608
+UniRef50_U1X3M3	0.1835303648
+UniRef50_U1X3M3|unclassified	0.1835303648
+UniRef50_UPI0003156351: hypothetical protein	0.1835250025
+UniRef50_UPI0003156351: hypothetical protein|unclassified	0.1835250025
+UniRef50_Q48838: Probable L-serine dehydratase, alpha chain (Fragment)	0.1835050492
+UniRef50_Q48838: Probable L-serine dehydratase, alpha chain (Fragment)|unclassified	0.1835050492
+UniRef50_A5CF65: Peptide deformylase	0.1834968631
+UniRef50_A5CF65: Peptide deformylase|unclassified	0.1834968631
+UniRef50_B9KYD8: NAD(P) transhydrogenase, alpha-2 subunit	0.1834966293
+UniRef50_B9KYD8: NAD(P) transhydrogenase, alpha-2 subunit|unclassified	0.1834966293
+UniRef50_Q8D1U5: Protein NrdI	0.1834943591
+UniRef50_Q8D1U5: Protein NrdI|unclassified	0.1834943591
+UniRef50_UPI00047988FF: hypothetical protein	0.1834880123
+UniRef50_UPI00047988FF: hypothetical protein|unclassified	0.1834880123
+UniRef50_S5TX37	0.1834832252
+UniRef50_S5TX37|unclassified	0.1834832252
+UniRef50_UPI0003B3B295: adenylate kinase	0.1834770522
+UniRef50_UPI0003B3B295: adenylate kinase|unclassified	0.1834770522
+UniRef50_UPI00036F6996: hypothetical protein	0.1834402753
+UniRef50_UPI00036F6996: hypothetical protein|unclassified	0.1834402753
+UniRef50_UPI0003123F96: hypothetical protein	0.1834392444
+UniRef50_UPI0003123F96: hypothetical protein|unclassified	0.1834392444
+UniRef50_UPI000360A512: single-stranded DNA-binding protein, partial	0.1834360793
+UniRef50_UPI000360A512: single-stranded DNA-binding protein, partial|unclassified	0.1834360793
+UniRef50_UPI0002F2DA04: hypothetical protein	0.1834254240
+UniRef50_UPI0002F2DA04: hypothetical protein|unclassified	0.1834254240
+UniRef50_G2QJ28	0.1833975133
+UniRef50_G2QJ28|unclassified	0.1833975133
+UniRef50_P37943: Signal peptidase I P	0.1833723108
+UniRef50_P37943: Signal peptidase I P|unclassified	0.1833723108
+UniRef50_UPI000310734F: hypothetical protein	0.1833643409
+UniRef50_UPI000310734F: hypothetical protein|unclassified	0.1833643409
+UniRef50_A0A024J4K6: Transposase	0.1833524285
+UniRef50_A0A024J4K6: Transposase|unclassified	0.1833524285
+UniRef50_UPI000362F6A7: hypothetical protein	0.1833387332
+UniRef50_UPI000362F6A7: hypothetical protein|unclassified	0.1833387332
+UniRef50_UPI0003B78019: S-adenosylmethionine tRNA ribosyltransferase	0.1833359814
+UniRef50_UPI0003B78019: S-adenosylmethionine tRNA ribosyltransferase|unclassified	0.1833359814
+UniRef50_B0K8B2: Chorismate synthase	0.1833277615
+UniRef50_B0K8B2: Chorismate synthase|unclassified	0.1833277615
+UniRef50_D8IMD2: Cobalt transport permease protein	0.1833167328
+UniRef50_D8IMD2: Cobalt transport permease protein|unclassified	0.1833167328
+UniRef50_UPI00034C5F83: hypothetical protein	0.1833143217
+UniRef50_UPI00034C5F83: hypothetical protein|unclassified	0.1833143217
+UniRef50_Q5WLV8: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	0.1833136744
+UniRef50_Q5WLV8: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.1833136744
+UniRef50_V5U3S2	0.1832049671
+UniRef50_V5U3S2|unclassified	0.1832049671
+UniRef50_UPI0004796554: MerR family transcriptional regulator	0.1832038966
+UniRef50_UPI0004796554: MerR family transcriptional regulator|unclassified	0.1832038966
+UniRef50_UPI000347052C: hypothetical protein	0.1831966481
+UniRef50_UPI000347052C: hypothetical protein|unclassified	0.1831966481
+UniRef50_UPI00046F8956: NAD(P)H dehydrogenase	0.1831952354
+UniRef50_UPI00046F8956: NAD(P)H dehydrogenase|unclassified	0.1831952354
+UniRef50_G8Q3H2: Phage baseplate assembly protein J	0.1831815078
+UniRef50_G8Q3H2: Phage baseplate assembly protein J|unclassified	0.1831815078
+UniRef50_T0UIX1: ATP-dependent nuclease, subunit B	0.1831703660
+UniRef50_T0UIX1: ATP-dependent nuclease, subunit B|unclassified	0.1831703660
+UniRef50_UPI00045E1E30: PREDICTED: proline-rich receptor-like protein kinase PERK9	0.1831647199
+UniRef50_UPI00045E1E30: PREDICTED: proline-rich receptor-like protein kinase PERK9|unclassified	0.1831647199
+UniRef50_M3EQY2	0.1831452447
+UniRef50_M3EQY2|unclassified	0.1831452447
+UniRef50_UPI00035105A6: PREDICTED: CASP-like protein Sb04g002820-like	0.1831431057
+UniRef50_UPI00035105A6: PREDICTED: CASP-like protein Sb04g002820-like|unclassified	0.1831431057
+UniRef50_Q0ANY0: Glycerol-3-phosphate acyltransferase	0.1831427101
+UniRef50_Q0ANY0: Glycerol-3-phosphate acyltransferase|unclassified	0.1831427101
+UniRef50_I7EGV7	0.1831348466
+UniRef50_I7EGV7|unclassified	0.1831348466
+UniRef50_I8T658	0.1831282115
+UniRef50_I8T658|unclassified	0.1831282115
+UniRef50_I3TVI5	0.1831223511
+UniRef50_I3TVI5|unclassified	0.1831223511
+UniRef50_UPI0004716880: hypothetical protein, partial	0.1831006420
+UniRef50_UPI0004716880: hypothetical protein, partial|unclassified	0.1831006420
+UniRef50_I0GVK5	0.1830857333
+UniRef50_I0GVK5|unclassified	0.1830857333
+UniRef50_C7J906: Os11g0644500 protein (Fragment)	0.1830826561
+UniRef50_C7J906: Os11g0644500 protein (Fragment)|unclassified	0.1830826561
+UniRef50_D7W4Z4	0.1830786209
+UniRef50_D7W4Z4|unclassified	0.1830786209
+UniRef50_B4DT69: Dihydrolipoyl dehydrogenase, mitochondrial	0.1830693194
+UniRef50_B4DT69: Dihydrolipoyl dehydrogenase, mitochondrial|unclassified	0.1830693194
+UniRef50_UPI0004635914: hypothetical protein, partial	0.1830686372
+UniRef50_UPI0004635914: hypothetical protein, partial|unclassified	0.1830686372
+UniRef50_UPI0003A089A8: hypothetical protein	0.1830666537
+UniRef50_UPI0003A089A8: hypothetical protein|unclassified	0.1830666537
+UniRef50_S2VXK0	0.1830469087
+UniRef50_S2VXK0|unclassified	0.1830469087
+UniRef50_J9P815	0.1830458022
+UniRef50_J9P815|unclassified	0.1830458022
+UniRef50_L1MI93	0.1830306206
+UniRef50_L1MI93|unclassified	0.1830306206
+UniRef50_Q1YDT2	0.1830235361
+UniRef50_Q1YDT2|unclassified	0.1830235361
+UniRef50_W6I3F6: Cupin superfamily protein	0.1830214675
+UniRef50_W6I3F6: Cupin superfamily protein|unclassified	0.1830214675
+UniRef50_UPI0002740EC8: PREDICTED: proline-rich protein 18	0.1830204628
+UniRef50_UPI0002740EC8: PREDICTED: proline-rich protein 18|unclassified	0.1830204628
+UniRef50_C7D5N3: Outer membrane transporter, ompp1/fadl/todx family	0.1830202896
+UniRef50_C7D5N3: Outer membrane transporter, ompp1/fadl/todx family|unclassified	0.1830202896
+UniRef50_UPI00046865DF: hypothetical protein	0.1830192692
+UniRef50_UPI00046865DF: hypothetical protein|unclassified	0.1830192692
+UniRef50_J4J5P9	0.1830018302
+UniRef50_J4J5P9|unclassified	0.1830018302
+UniRef50_F8J7S2	0.1829934426
+UniRef50_F8J7S2|unclassified	0.1829934426
+UniRef50_Q0G5M2	0.1829832698
+UniRef50_Q0G5M2|unclassified	0.1829832698
+UniRef50_UPI00047D8236: hypothetical protein, partial	0.1829812803
+UniRef50_UPI00047D8236: hypothetical protein, partial|unclassified	0.1829812803
+UniRef50_C0HHH0	0.1829699477
+UniRef50_C0HHH0|unclassified	0.1829699477
+UniRef50_UPI00036D8769: hypothetical protein	0.1829678189
+UniRef50_UPI00036D8769: hypothetical protein|unclassified	0.1829678189
+UniRef50_UPI000375D747: cold-shock protein	0.1829605854
+UniRef50_UPI000375D747: cold-shock protein|unclassified	0.1829605854
+UniRef50_UPI00034577DF: hypothetical protein	0.1829331273
+UniRef50_UPI00034577DF: hypothetical protein|unclassified	0.1829331273
+UniRef50_A1UR86: Crossover junction endodeoxyribonuclease RuvC	0.1829262944
+UniRef50_A1UR86: Crossover junction endodeoxyribonuclease RuvC|unclassified	0.1829262944
+UniRef50_E6V4B8	0.1829230570
+UniRef50_E6V4B8|unclassified	0.1829230570
+UniRef50_UPI0003670F2C: hypothetical protein	0.1829033510
+UniRef50_UPI0003670F2C: hypothetical protein|unclassified	0.1829033510
+UniRef50_Q983B0: 6,7-dimethyl-8-ribityllumazine synthase 1	0.1828887649
+UniRef50_Q983B0: 6,7-dimethyl-8-ribityllumazine synthase 1|unclassified	0.1828887649
+UniRef50_UPI0004771555: hypothetical protein	0.1828672744
+UniRef50_UPI0004771555: hypothetical protein|unclassified	0.1828672744
+UniRef50_T0MQ15	0.1828646668
+UniRef50_T0MQ15|unclassified	0.1828646668
+UniRef50_Q9B6E7: Cytochrome c oxidase subunit 1	0.1828294555
+UniRef50_Q9B6E7: Cytochrome c oxidase subunit 1|unclassified	0.1828294555
+UniRef50_E0IB50	0.1828289009
+UniRef50_E0IB50|unclassified	0.1828289009
+UniRef50_UPI00024926FA: UDP-N-acetylenolpyruvoylglucosamine reductase	0.1828255521
+UniRef50_UPI00024926FA: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.1828255521
+UniRef50_P50656: Cytochrome c oxidase subunit 1 (Fragment)	0.1828149411
+UniRef50_P50656: Cytochrome c oxidase subunit 1 (Fragment)|unclassified	0.1828149411
+UniRef50_Q47KH4: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.1828038510
+UniRef50_Q47KH4: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.1828038510
+UniRef50_R7XLR7: Lipid-transfer protein	0.1827772620
+UniRef50_R7XLR7: Lipid-transfer protein|unclassified	0.1827772620
+UniRef50_Q55842: UPF0062 protein slr0519	0.1827695446
+UniRef50_Q55842: UPF0062 protein slr0519|unclassified	0.1827695446
+UniRef50_UPI00046B0ABB: amino acid transporter	0.1827685089
+UniRef50_UPI00046B0ABB: amino acid transporter|unclassified	0.1827685089
+UniRef50_A6TKL7	0.1827640062
+UniRef50_A6TKL7|unclassified	0.1827640062
+UniRef50_U2QZS1	0.1827548378
+UniRef50_U2QZS1|unclassified	0.1827548378
+UniRef50_T2Q2Y7	0.1827451857
+UniRef50_T2Q2Y7|unclassified	0.1827451857
+UniRef50_M9VDD9: Periplasmic binding protein	0.1827450361
+UniRef50_M9VDD9: Periplasmic binding protein|unclassified	0.1827450361
+UniRef50_R5UIT5: L-ribulose-5-phosphate 4-epimerase	0.1827276694
+UniRef50_R5UIT5: L-ribulose-5-phosphate 4-epimerase|unclassified	0.1827276694
+UniRef50_P22045: Prostaglandin F synthase	0.1827112296
+UniRef50_P22045: Prostaglandin F synthase|unclassified	0.1827112296
+UniRef50_UPI000373FC02: LysR family transcriptional regulator, partial	0.1827021195
+UniRef50_UPI000373FC02: LysR family transcriptional regulator, partial|unclassified	0.1827021195
+UniRef50_Q891S2: 4-hydroxy-tetrahydrodipicolinate reductase	0.1827016737
+UniRef50_Q891S2: 4-hydroxy-tetrahydrodipicolinate reductase|unclassified	0.1827016737
+UniRef50_UPI0003694C24: hypothetical protein	0.1826947091
+UniRef50_UPI0003694C24: hypothetical protein|unclassified	0.1826947091
+UniRef50_K2E4Y4	0.1826844393
+UniRef50_K2E4Y4|unclassified	0.1826844393
+UniRef50_X1V3H3: Marine sediment metagenome DNA, contig: S12H4_S08025 (Fragment)	0.1826455935
+UniRef50_X1V3H3: Marine sediment metagenome DNA, contig: S12H4_S08025 (Fragment)|unclassified	0.1826455935
+UniRef50_D8PMT1	0.1826428878
+UniRef50_D8PMT1|unclassified	0.1826428878
+UniRef50_G9AGE6	0.1826278395
+UniRef50_G9AGE6|unclassified	0.1826278395
+UniRef50_UPI00036DE46F: hypothetical protein	0.1826090107
+UniRef50_UPI00036DE46F: hypothetical protein|unclassified	0.1826090107
+UniRef50_A6X846	0.1825979368
+UniRef50_A6X846|unclassified	0.1825979368
+UniRef50_UPI00016C406B: hypothetical protein	0.1825965285
+UniRef50_UPI00016C406B: hypothetical protein|unclassified	0.1825965285
+UniRef50_H3V8Z5: PF07252 domain protein	0.1825956476
+UniRef50_H3V8Z5: PF07252 domain protein|unclassified	0.1825956476
+UniRef50_E6S0A0	0.1825936744
+UniRef50_E6S0A0|unclassified	0.1825936744
+UniRef50_UPI0004714520: hypothetical protein	0.1825875015
+UniRef50_UPI0004714520: hypothetical protein|unclassified	0.1825875015
+UniRef50_I7ES66: TRAP transporter, subunit DctM	0.1825869552
+UniRef50_I7ES66: TRAP transporter, subunit DctM|unclassified	0.1825869552
+UniRef50_UPI0001746395: Gluconate transporter	0.1825699372
+UniRef50_UPI0001746395: Gluconate transporter|unclassified	0.1825699372
+UniRef50_A2SMC9: Phosphoheptose isomerase	0.1825585422
+UniRef50_A2SMC9: Phosphoheptose isomerase|unclassified	0.1825585422
+UniRef50_S9QRL9: Ribulose-5-phosphate 4-epimerase	0.1825518657
+UniRef50_S9QRL9: Ribulose-5-phosphate 4-epimerase|unclassified	0.1825518657
+UniRef50_Q96CU9: FAD-dependent oxidoreductase domain-containing protein 1	0.1825211626
+UniRef50_Q96CU9: FAD-dependent oxidoreductase domain-containing protein 1|unclassified	0.1825211626
+UniRef50_Q2TA32: Thymidylate synthase	0.1825075297
+UniRef50_Q2TA32: Thymidylate synthase|unclassified	0.1825075297
+UniRef50_E9BW21	0.1825029797
+UniRef50_E9BW21|unclassified	0.1825029797
+UniRef50_Q3AB53: S-adenosylmethionine decarboxylase proenzyme	0.1824799147
+UniRef50_Q3AB53: S-adenosylmethionine decarboxylase proenzyme|unclassified	0.1824799147
+UniRef50_P00471: Thymidylate synthase	0.1824769952
+UniRef50_P00471: Thymidylate synthase|unclassified	0.1824769952
+UniRef50_UPI0003A07669: hypothetical protein	0.1824612889
+UniRef50_UPI0003A07669: hypothetical protein|unclassified	0.1824612889
+UniRef50_J1K020	0.1824595245
+UniRef50_J1K020|unclassified	0.1824595245
+UniRef50_T0TT19: Putative NagD-like phosphatase	0.1824595141
+UniRef50_T0TT19: Putative NagD-like phosphatase|unclassified	0.1824595141
+UniRef50_Q9KSF9: Asparagine--tRNA ligase	0.1824564892
+UniRef50_Q9KSF9: Asparagine--tRNA ligase|unclassified	0.1824564892
+UniRef50_E3FK63	0.1824483225
+UniRef50_E3FK63|unclassified	0.1824483225
+UniRef50_Q9SI75: Elongation factor G, chloroplastic	0.1824458562
+UniRef50_Q9SI75: Elongation factor G, chloroplastic|unclassified	0.1824458562
+UniRef50_W1ERH1: L,D-transpeptidase ErfK	0.1824313087
+UniRef50_W1ERH1: L,D-transpeptidase ErfK|unclassified	0.1824313087
+UniRef50_Q2WCP4: Transposase	0.1824308657
+UniRef50_Q2WCP4: Transposase|unclassified	0.1824308657
+UniRef50_S2LYV0: Acetylornithine deacetylase/succinyl-diaminopimelate desuccinylase-like protein	0.1824239431
+UniRef50_S2LYV0: Acetylornithine deacetylase/succinyl-diaminopimelate desuccinylase-like protein|unclassified	0.1824239431
+UniRef50_UPI000382BE6D: hypothetical protein	0.1824166292
+UniRef50_UPI000382BE6D: hypothetical protein|unclassified	0.1824166292
+UniRef50_UPI0003946175: PREDICTED: 5''''-nucleotidase isoform X2	0.1824095429
+UniRef50_UPI0003946175: PREDICTED: 5''''-nucleotidase isoform X2|unclassified	0.1824095429
+UniRef50_A6V3L3	0.1823848987
+UniRef50_A6V3L3|unclassified	0.1823848987
+UniRef50_Q9ZKX5: Catalase	0.1823771556
+UniRef50_Q9ZKX5: Catalase|unclassified	0.1823771556
+UniRef50_A4SG19: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.1823761253
+UniRef50_A4SG19: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.1823761253
+UniRef50_UPI00047C5895: hypothetical protein	0.1823690072
+UniRef50_UPI00047C5895: hypothetical protein|unclassified	0.1823690072
+UniRef50_X1BNR5: Marine sediment metagenome DNA, contig: S01H4_L04396 (Fragment)	0.1823507686
+UniRef50_X1BNR5: Marine sediment metagenome DNA, contig: S01H4_L04396 (Fragment)|unclassified	0.1823507686
+UniRef50_W1VJD0	0.1823357176
+UniRef50_W1VJD0|unclassified	0.1823357176
+UniRef50_UPI000372E7C8: hypothetical protein	0.1823239763
+UniRef50_UPI000372E7C8: hypothetical protein|unclassified	0.1823239763
+UniRef50_T7QPV5: UPF0192 protein yfaS	0.1823172899
+UniRef50_T7QPV5: UPF0192 protein yfaS|unclassified	0.1823172899
+UniRef50_UPI00047CE0C7: hypothetical protein	0.1823140535
+UniRef50_UPI00047CE0C7: hypothetical protein|unclassified	0.1823140535
+UniRef50_Q0B7K1: NIPSNAP family containing protein	0.1823077593
+UniRef50_Q0B7K1: NIPSNAP family containing protein|unclassified	0.1823077593
+UniRef50_J3I1E6	0.1822799897
+UniRef50_J3I1E6|unclassified	0.1822799897
+UniRef50_D7AYN1: Bacteriocin, lactococcin 972 family	0.1822731284
+UniRef50_D7AYN1: Bacteriocin, lactococcin 972 family|unclassified	0.1822731284
+UniRef50_UPI0003B358DF: flagellar biosynthesis regulatory protein FlaF	0.1822671248
+UniRef50_UPI0003B358DF: flagellar biosynthesis regulatory protein FlaF|unclassified	0.1822671248
+UniRef50_UPI000255BC43: gamma-aminobutyrate permease, partial	0.1822642559
+UniRef50_UPI000255BC43: gamma-aminobutyrate permease, partial|unclassified	0.1822642559
+UniRef50_UPI00036AA0CC: hypothetical protein	0.1822631408
+UniRef50_UPI00036AA0CC: hypothetical protein|unclassified	0.1822631408
+UniRef50_H0Q563: 40-residue YVTN family beta-propeller repeat protein	0.1822320889
+UniRef50_H0Q563: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.1822320889
+UniRef50_V7Z6F7	0.1822151024
+UniRef50_V7Z6F7|unclassified	0.1822151024
+UniRef50_G6EN85	0.1821987717
+UniRef50_G6EN85|unclassified	0.1821987717
+UniRef50_Q0I781: Membrane protein, putative	0.1821970323
+UniRef50_Q0I781: Membrane protein, putative|unclassified	0.1821970323
+UniRef50_F8JSQ7	0.1821751702
+UniRef50_F8JSQ7|unclassified	0.1821751702
+UniRef50_A0A011THB4	0.1821637799
+UniRef50_A0A011THB4|unclassified	0.1821637799
+UniRef50_UPI0002D91A1A: single-stranded DNA-binding protein	0.1821575397
+UniRef50_UPI0002D91A1A: single-stranded DNA-binding protein|unclassified	0.1821575397
+UniRef50_UPI0003A50B9C: hypothetical protein	0.1821534163
+UniRef50_UPI0003A50B9C: hypothetical protein|unclassified	0.1821534163
+UniRef50_A0LA39: Indole-3-glycerol phosphate synthase	0.1821513742
+UniRef50_A0LA39: Indole-3-glycerol phosphate synthase|unclassified	0.1821513742
+UniRef50_UPI000441931B: PREDICTED: probable sulfate/thiosulfate import ATP-binding protein CysA-like	0.1821401470
+UniRef50_UPI000441931B: PREDICTED: probable sulfate/thiosulfate import ATP-binding protein CysA-like|unclassified	0.1821401470
+UniRef50_C9AD17	0.1821343724
+UniRef50_C9AD17|unclassified	0.1821343724
+UniRef50_A0A013BVI8	0.1821027180
+UniRef50_A0A013BVI8|unclassified	0.1821027180
+UniRef50_UPI00047C17DE: hypothetical protein	0.1821027174
+UniRef50_UPI00047C17DE: hypothetical protein|unclassified	0.1821027174
+UniRef50_UPI000413ED9F: central glycolytic genes regulator	0.1820898369
+UniRef50_UPI000413ED9F: central glycolytic genes regulator|unclassified	0.1820898369
+UniRef50_UPI0003822EF9: hypothetical protein	0.1820890917
+UniRef50_UPI0003822EF9: hypothetical protein|unclassified	0.1820890917
+UniRef50_D2ZPN4: Putative toxin-antitoxin system toxin component, PIN family	0.1820788969
+UniRef50_D2ZPN4: Putative toxin-antitoxin system toxin component, PIN family|unclassified	0.1820788969
+UniRef50_U6N5D8	0.1820611851
+UniRef50_U6N5D8|unclassified	0.1820611851
+UniRef50_Q28PB4	0.1820572631
+UniRef50_Q28PB4|unclassified	0.1820572631
+UniRef50_B5ZJ07: Polyhydroxyalkonate synthesis repressor, PhaR	0.1820467323
+UniRef50_B5ZJ07: Polyhydroxyalkonate synthesis repressor, PhaR|unclassified	0.1820467323
+UniRef50_UPI000371346A: hypothetical protein	0.1820415839
+UniRef50_UPI000371346A: hypothetical protein|unclassified	0.1820415839
+UniRef50_C8S343	0.1820385100
+UniRef50_C8S343|unclassified	0.1820385100
+UniRef50_C0ZDV1: UPF0398 protein BBR47_29830	0.1820382122
+UniRef50_C0ZDV1: UPF0398 protein BBR47_29830|unclassified	0.1820382122
+UniRef50_Q1C5H7: Peptidase B	0.1820337908
+UniRef50_Q1C5H7: Peptidase B|unclassified	0.1820337908
+UniRef50_UPI0003A37E8C: protease	0.1820278495
+UniRef50_UPI0003A37E8C: protease|unclassified	0.1820278495
+UniRef50_UPI0002630287: hypothetical protein	0.1819754532
+UniRef50_UPI0002630287: hypothetical protein|unclassified	0.1819754532
+UniRef50_UPI00045EA5EB: hypothetical protein	0.1819673383
+UniRef50_UPI00045EA5EB: hypothetical protein|unclassified	0.1819673383
+UniRef50_W7Y929: Sensory box/GGDEF family protein	0.1819557808
+UniRef50_W7Y929: Sensory box/GGDEF family protein|unclassified	0.1819557808
+UniRef50_UPI0003C7550C: hypothetical protein	0.1819402552
+UniRef50_UPI0003C7550C: hypothetical protein|unclassified	0.1819402552
+UniRef50_S9S860	0.1819121497
+UniRef50_S9S860|unclassified	0.1819121497
+UniRef50_C9RWI1: Extracellular solute-binding protein family 1	0.1819084377
+UniRef50_C9RWI1: Extracellular solute-binding protein family 1|unclassified	0.1819084377
+UniRef50_B7RSE7: Plasmid partitioning protein RepA	0.1819060897
+UniRef50_B7RSE7: Plasmid partitioning protein RepA|unclassified	0.1819060897
+UniRef50_UPI0003317F07	0.1818983539
+UniRef50_UPI0003317F07|unclassified	0.1818983539
+UniRef50_UPI0003B338C3: ABC transporter permease	0.1818931201
+UniRef50_UPI0003B338C3: ABC transporter permease|unclassified	0.1818931201
+UniRef50_UPI000379505E: hypothetical protein	0.1818786163
+UniRef50_UPI000379505E: hypothetical protein|unclassified	0.1818786163
+UniRef50_UPI000425661A: hypothetical protein	0.1818749354
+UniRef50_UPI000425661A: hypothetical protein|unclassified	0.1818749354
+UniRef50_UPI00016A3D53: hypothetical protein	0.1818680251
+UniRef50_UPI00016A3D53: hypothetical protein|unclassified	0.1818680251
+UniRef50_C3LCV7	0.1818673538
+UniRef50_C3LCV7|unclassified	0.1818673538
+UniRef50_G8B0F2	0.1818304994
+UniRef50_G8B0F2|unclassified	0.1818304994
+UniRef50_W0Z270: SNARE associated Golgi protein	0.1818241690
+UniRef50_W0Z270: SNARE associated Golgi protein|unclassified	0.1818241690
+UniRef50_W1EKY6: Fusaric acid resistance protein fusE	0.1818215386
+UniRef50_W1EKY6: Fusaric acid resistance protein fusE|unclassified	0.1818215386
+UniRef50_G7M5V5: MORN repeat-containing protein	0.1818023077
+UniRef50_G7M5V5: MORN repeat-containing protein|unclassified	0.1818023077
+UniRef50_E4WW13: Whole genome shotgun assembly, reference scaffold set, scaffold scaffold_3	0.1817919799
+UniRef50_E4WW13: Whole genome shotgun assembly, reference scaffold set, scaffold scaffold_3|unclassified	0.1817919799
+UniRef50_UPI0003709C0F: hypothetical protein	0.1817836461
+UniRef50_UPI0003709C0F: hypothetical protein|unclassified	0.1817836461
+UniRef50_UPI00046D0AE5: 30S ribosomal protein S2	0.1817791637
+UniRef50_UPI00046D0AE5: 30S ribosomal protein S2|unclassified	0.1817791637
+UniRef50_G8PN37: sn-glycerol-3-phosphate-binding periplasmic protein UgpB	0.1817657887
+UniRef50_G8PN37: sn-glycerol-3-phosphate-binding periplasmic protein UgpB|unclassified	0.1817657887
+UniRef50_UPI0004440E21: PREDICTED: vegetative cell wall protein gp1-like	0.1817620438
+UniRef50_UPI0004440E21: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.1817620438
+UniRef50_M4WUA8	0.1817610001
+UniRef50_M4WUA8|unclassified	0.1817610001
+UniRef50_B2UEP9: Pirin domain protein	0.1817557146
+UniRef50_B2UEP9: Pirin domain protein|unclassified	0.1817557146
+UniRef50_UPI000427AAEA: oxidoreductase	0.1817506927
+UniRef50_UPI000427AAEA: oxidoreductase|unclassified	0.1817506927
+UniRef50_G6D8V7: Putative BTB/POZ domain-containing protein 7	0.1817421882
+UniRef50_G6D8V7: Putative BTB/POZ domain-containing protein 7|unclassified	0.1817421882
+UniRef50_C1DGM5	0.1817369633
+UniRef50_C1DGM5|unclassified	0.1817369633
+UniRef50_W5Y8P3	0.1817352955
+UniRef50_W5Y8P3|unclassified	0.1817352955
+UniRef50_UPI0003C7CD76: hypothetical protein	0.1817330375
+UniRef50_UPI0003C7CD76: hypothetical protein|unclassified	0.1817330375
+UniRef50_UPI00035FB5C7: hypothetical protein	0.1817238766
+UniRef50_UPI00035FB5C7: hypothetical protein|unclassified	0.1817238766
+UniRef50_J8ZNA7	0.1817234739
+UniRef50_J8ZNA7|unclassified	0.1817234739
+UniRef50_V5VA04: Hemolysin-type calcium-binding domain-containing protein	0.1817190623
+UniRef50_V5VA04: Hemolysin-type calcium-binding domain-containing protein|g__Acinetobacter.s__Acinetobacter_baumannii	0.1817190623
+UniRef50_UPI0003772CF0: MULTISPECIES: hypothetical protein	0.1817142488
+UniRef50_UPI0003772CF0: MULTISPECIES: hypothetical protein|unclassified	0.1817142488
+UniRef50_W6L3I5: Genomic scaffold, scaffold_5	0.1817137130
+UniRef50_W6L3I5: Genomic scaffold, scaffold_5|unclassified	0.1817137130
+UniRef50_P43784: Dihydrolipoyl dehydrogenase	0.1817102604
+UniRef50_P43784: Dihydrolipoyl dehydrogenase|unclassified	0.1817102604
+UniRef50_I3U9I7: Phosphomethylpyrimidine synthase ThiC	0.1816775059
+UniRef50_I3U9I7: Phosphomethylpyrimidine synthase ThiC|unclassified	0.1816775059
+UniRef50_L0GQ86	0.1816648305
+UniRef50_L0GQ86|unclassified	0.1816648305
+UniRef50_UPI000374D549: hypothetical protein	0.1816499024
+UniRef50_UPI000374D549: hypothetical protein|unclassified	0.1816499024
+UniRef50_D0PN08: Predicted protein	0.1816436075
+UniRef50_D0PN08: Predicted protein|unclassified	0.1816436075
+UniRef50_A0A024HX75	0.1816358595
+UniRef50_A0A024HX75|unclassified	0.1816358595
+UniRef50_UPI000477D28E: hypothetical protein	0.1816316061
+UniRef50_UPI000477D28E: hypothetical protein|unclassified	0.1816316061
+UniRef50_Q9WZG8: Ribosomal RNA small subunit methyltransferase I	0.1816287313
+UniRef50_Q9WZG8: Ribosomal RNA small subunit methyltransferase I|unclassified	0.1816287313
+UniRef50_UPI0003124421: hypothetical protein	0.1816082306
+UniRef50_UPI0003124421: hypothetical protein|unclassified	0.1816082306
+UniRef50_UPI00041DC7DE: DNA-dependent helicase II	0.1816034803
+UniRef50_UPI00041DC7DE: DNA-dependent helicase II|unclassified	0.1816034803
+UniRef50_S6ALQ8: Tripartite ATP-independent periplasmic transporter DctQ component	0.1815874142
+UniRef50_S6ALQ8: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.1815874142
+UniRef50_Q6W210: Bifunctional protein FolD	0.1815854463
+UniRef50_Q6W210: Bifunctional protein FolD|unclassified	0.1815854463
+UniRef50_Q822W9: Tryptophan synthase beta chain 1	0.1815622912
+UniRef50_Q822W9: Tryptophan synthase beta chain 1|unclassified	0.1815622912
+UniRef50_X2NCN5	0.1815613218
+UniRef50_X2NCN5|unclassified	0.1815613218
+UniRef50_B9MM59: Formate--tetrahydrofolate ligase	0.1815603327
+UniRef50_B9MM59: Formate--tetrahydrofolate ligase|unclassified	0.1815603327
+UniRef50_UPI0003782EF0: hypothetical protein	0.1815565324
+UniRef50_UPI0003782EF0: hypothetical protein|unclassified	0.1815565324
+UniRef50_A0A031C949	0.1815452167
+UniRef50_A0A031C949|unclassified	0.1815452167
+UniRef50_UPI00037267FC: hypothetical protein	0.1815291233
+UniRef50_UPI00037267FC: hypothetical protein|unclassified	0.1815291233
+UniRef50_UPI00042813E9: hydrogenase 2 large subunit	0.1814988738
+UniRef50_UPI00042813E9: hydrogenase 2 large subunit|unclassified	0.1814988738
+UniRef50_X7F4D9	0.1814785812
+UniRef50_X7F4D9|unclassified	0.1814785812
+UniRef50_A0A059IRW0: ATPase (Fragment)	0.1814747934
+UniRef50_A0A059IRW0: ATPase (Fragment)|unclassified	0.1814747934
+UniRef50_T1FB30	0.1814654839
+UniRef50_T1FB30|unclassified	0.1814654839
+UniRef50_W7DH31	0.1814626087
+UniRef50_W7DH31|unclassified	0.1814626087
+UniRef50_UPI0003B60F28: 4-aminobutyrate aminotransferase, partial	0.1814583268
+UniRef50_UPI0003B60F28: 4-aminobutyrate aminotransferase, partial|unclassified	0.1814583268
+UniRef50_UPI000475C363: GntR family transcriptional regulator	0.1814581776
+UniRef50_UPI000475C363: GntR family transcriptional regulator|unclassified	0.1814581776
+UniRef50_L2IC96	0.1814348034
+UniRef50_L2IC96|unclassified	0.1814348034
+UniRef50_B1PCJ9: InlGA (Fragment)	0.1814320328
+UniRef50_B1PCJ9: InlGA (Fragment)|unclassified	0.1814320328
+UniRef50_O74197: Phosphoribosylaminoimidazole carboxylase	0.1814199708
+UniRef50_O74197: Phosphoribosylaminoimidazole carboxylase|unclassified	0.1814199708
+UniRef50_Q1QVP8	0.1814083691
+UniRef50_Q1QVP8|unclassified	0.1814083691
+UniRef50_S9Q8F9	0.1814082976
+UniRef50_S9Q8F9|unclassified	0.1814082976
+UniRef50_UPI00047E1B85: hypothetical protein	0.1814025602
+UniRef50_UPI00047E1B85: hypothetical protein|unclassified	0.1814025602
+UniRef50_A5DB51: Riboflavin synthase	0.1814022024
+UniRef50_A5DB51: Riboflavin synthase|unclassified	0.1814022024
+UniRef50_F7ZEU0	0.1813866580
+UniRef50_F7ZEU0|unclassified	0.1813866580
+UniRef50_B0T314	0.1813664514
+UniRef50_B0T314|unclassified	0.1813664514
+UniRef50_F8IB09: SirA family protein	0.1813069565
+UniRef50_F8IB09: SirA family protein|unclassified	0.1813069565
+UniRef50_UPI0001CBB500: PREDICTED: RNA-binding protein FUS-like isoform X1	0.1813055985
+UniRef50_UPI0001CBB500: PREDICTED: RNA-binding protein FUS-like isoform X1|unclassified	0.1813055985
+UniRef50_R9C0T7: Threonine dehydratase (Fragment)	0.1812947522
+UniRef50_R9C0T7: Threonine dehydratase (Fragment)|unclassified	0.1812947522
+UniRef50_D9PFW3: Protein-export membrane protein (Fragment)	0.1812808773
+UniRef50_D9PFW3: Protein-export membrane protein (Fragment)|unclassified	0.1812808773
+UniRef50_D6TC11	0.1812683893
+UniRef50_D6TC11|unclassified	0.1812683893
+UniRef50_UPI00037E9975: 30S ribosomal protein S2	0.1812478985
+UniRef50_UPI00037E9975: 30S ribosomal protein S2|unclassified	0.1812478985
+UniRef50_A6DUS0: CarR	0.1812358099
+UniRef50_A6DUS0: CarR|unclassified	0.1812358099
+UniRef50_M2FX35	0.1812174558
+UniRef50_M2FX35|unclassified	0.1812174558
+UniRef50_G4HNG6: Aldo/keto reductase	0.1812127090
+UniRef50_G4HNG6: Aldo/keto reductase|unclassified	0.1812127090
+UniRef50_S5E5W6: Competence protein CglB	0.1811857835
+UniRef50_S5E5W6: Competence protein CglB|unclassified	0.1811857835
+UniRef50_F3CE91: Alginate regulatory protein AlgP (Fragment)	0.1811479728
+UniRef50_F3CE91: Alginate regulatory protein AlgP (Fragment)|unclassified	0.1811479728
+UniRef50_D3SCK7: RES domain protein	0.1811462803
+UniRef50_D3SCK7: RES domain protein|unclassified	0.1811462803
+UniRef50_V5C9C8: Transposase	0.1811249467
+UniRef50_V5C9C8: Transposase|unclassified	0.1811249467
+UniRef50_H9KM75	0.1811140144
+UniRef50_H9KM75|unclassified	0.1811140144
+UniRef50_W4K585	0.1811090558
+UniRef50_W4K585|unclassified	0.1811090558
+UniRef50_UPI00036586AB: hypothetical protein	0.1811040578
+UniRef50_UPI00036586AB: hypothetical protein|unclassified	0.1811040578
+UniRef50_UPI00047AFC40: hypothetical protein	0.1810867240
+UniRef50_UPI00047AFC40: hypothetical protein|unclassified	0.1810867240
+UniRef50_UPI0002F0BE06: hypothetical protein	0.1810795769
+UniRef50_UPI0002F0BE06: hypothetical protein|unclassified	0.1810795769
+UniRef50_UPI000381F19C: hypothetical protein	0.1810787961
+UniRef50_UPI000381F19C: hypothetical protein|unclassified	0.1810787961
+UniRef50_UPI000463B6AC: molybdopterin biosynthesis-like protein MoeZ	0.1810780323
+UniRef50_UPI000463B6AC: molybdopterin biosynthesis-like protein MoeZ|unclassified	0.1810780323
+UniRef50_UPI0004745C76: hypothetical protein	0.1810731681
+UniRef50_UPI0004745C76: hypothetical protein|unclassified	0.1810731681
+UniRef50_UPI000368B910: hypothetical protein	0.1810667527
+UniRef50_UPI000368B910: hypothetical protein|unclassified	0.1810667527
+UniRef50_UPI00047C95EE: flagellar basal-body rod protein FlgB	0.1810628544
+UniRef50_UPI00047C95EE: flagellar basal-body rod protein FlgB|unclassified	0.1810628544
+UniRef50_UPI00046337B7: transcriptional regulator	0.1810598202
+UniRef50_UPI00046337B7: transcriptional regulator|unclassified	0.1810598202
+UniRef50_Q9RWC7: Arginine repressor	0.1810493336
+UniRef50_Q9RWC7: Arginine repressor|unclassified	0.1810493336
+UniRef50_L8FCK2	0.1810444035
+UniRef50_L8FCK2|unclassified	0.1810444035
+UniRef50_K8NWZ3	0.1810346310
+UniRef50_K8NWZ3|unclassified	0.1810346310
+UniRef50_J8VFN2: TolQ	0.1810321957
+UniRef50_J8VFN2: TolQ|unclassified	0.1810321957
+UniRef50_UPI0002FAB7D0: hypothetical protein	0.1810277042
+UniRef50_UPI0002FAB7D0: hypothetical protein|unclassified	0.1810277042
+UniRef50_UPI000472416E: hypothetical protein	0.1810200494
+UniRef50_UPI000472416E: hypothetical protein|unclassified	0.1810200494
+UniRef50_R6ESV1	0.1810125362
+UniRef50_R6ESV1|unclassified	0.1810125362
+UniRef50_UPI000402DE31: hypothetical protein	0.1810097235
+UniRef50_UPI000402DE31: hypothetical protein|unclassified	0.1810097235
+UniRef50_U9PX82: Type VI secretion system FHA domain-containing protein	0.1810073290
+UniRef50_U9PX82: Type VI secretion system FHA domain-containing protein|unclassified	0.1810073290
+UniRef50_Q7UVG9: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.1809955001
+UniRef50_Q7UVG9: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.1809955001
+UniRef50_UPI00037044F7: hypothetical protein	0.1809736156
+UniRef50_UPI00037044F7: hypothetical protein|unclassified	0.1809736156
+UniRef50_C1DGX7	0.1809622031
+UniRef50_C1DGX7|unclassified	0.1809622031
+UniRef50_T1BQW6: ABC-2 type transporter (Fragment)	0.1809618971
+UniRef50_T1BQW6: ABC-2 type transporter (Fragment)|unclassified	0.1809618971
+UniRef50_UPI00044034F7: PREDICTED: N-acetylaspartate synthetase	0.1809588658
+UniRef50_UPI00044034F7: PREDICTED: N-acetylaspartate synthetase|unclassified	0.1809588658
+UniRef50_UPI00038408AD: PREDICTED: formin-like protein 3-like	0.1809549042
+UniRef50_UPI00038408AD: PREDICTED: formin-like protein 3-like|unclassified	0.1809549042
+UniRef50_K2F4P4	0.1809464637
+UniRef50_K2F4P4|unclassified	0.1809464637
+UniRef50_UPI000364F3E3: hypothetical protein	0.1809414586
+UniRef50_UPI000364F3E3: hypothetical protein|unclassified	0.1809414586
+UniRef50_F0YEP9	0.1809375996
+UniRef50_F0YEP9|unclassified	0.1809375996
+UniRef50_F7S1Y5: RecF (Fragment)	0.1809329071
+UniRef50_F7S1Y5: RecF (Fragment)|unclassified	0.1809329071
+UniRef50_B8EJI5: Holliday junction ATP-dependent DNA helicase RuvA	0.1809326617
+UniRef50_B8EJI5: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.1809326617
+UniRef50_M4WXY2	0.1809220559
+UniRef50_M4WXY2|unclassified	0.1809220559
+UniRef50_UPI00035F2A9D: hypothetical protein	0.1809212901
+UniRef50_UPI00035F2A9D: hypothetical protein|unclassified	0.1809212901
+UniRef50_UPI0003B3FBF9: MULTISPECIES: carbon storage regulator	0.1809212901
+UniRef50_UPI0003B3FBF9: MULTISPECIES: carbon storage regulator|unclassified	0.1809212901
+UniRef50_UPI00034A4595: hypothetical protein	0.1809042897
+UniRef50_UPI00034A4595: hypothetical protein|unclassified	0.1809042897
+UniRef50_A4XVG9	0.1808882051
+UniRef50_A4XVG9|unclassified	0.1808882051
+UniRef50_X6EP54	0.1808844443
+UniRef50_X6EP54|unclassified	0.1808844443
+UniRef50_UPI00047AC919: hypothetical protein	0.1808772216
+UniRef50_UPI00047AC919: hypothetical protein|unclassified	0.1808772216
+UniRef50_J4TVD5	0.1808769636
+UniRef50_J4TVD5|unclassified	0.1808769636
+UniRef50_A3S8Z1: Outer membrane porin	0.1808747609
+UniRef50_A3S8Z1: Outer membrane porin|unclassified	0.1808747609
+UniRef50_UPI00036F79EF: hypothetical protein	0.1808711769
+UniRef50_UPI00036F79EF: hypothetical protein|unclassified	0.1808711769
+UniRef50_UPI000375C4EA: hypothetical protein	0.1808653816
+UniRef50_UPI000375C4EA: hypothetical protein|unclassified	0.1808653816
+UniRef50_H1SID4	0.1808499629
+UniRef50_H1SID4|unclassified	0.1808499629
+UniRef50_S6DU29	0.1808369037
+UniRef50_S6DU29|unclassified	0.1808369037
+UniRef50_UPI0003B367DD: 50S ribosomal protein L22	0.1808339624
+UniRef50_UPI0003B367DD: 50S ribosomal protein L22|unclassified	0.1808339624
+UniRef50_V5SG04: NAD/NADP transhydrogenase subunit alpha	0.1808246133
+UniRef50_V5SG04: NAD/NADP transhydrogenase subunit alpha|unclassified	0.1808246133
+UniRef50_UPI00046EC5F8: N-formylglutamate amidohydrolase	0.1808186149
+UniRef50_UPI00046EC5F8: N-formylglutamate amidohydrolase|unclassified	0.1808186149
+UniRef50_K2A0Z6	0.1808161638
+UniRef50_K2A0Z6|unclassified	0.1808161638
+UniRef50_Q87CM2: Ketol-acid reductoisomerase	0.1808098165
+UniRef50_Q87CM2: Ketol-acid reductoisomerase|unclassified	0.1808098165
+UniRef50_UPI000420E82E: hypothetical protein	0.1808018854
+UniRef50_UPI000420E82E: hypothetical protein|unclassified	0.1808018854
+UniRef50_UPI00036F39F5: hypothetical protein	0.1808003575
+UniRef50_UPI00036F39F5: hypothetical protein|unclassified	0.1808003575
+UniRef50_U1ER62: Membrane protein	0.1807838581
+UniRef50_U1ER62: Membrane protein|unclassified	0.1807838581
+UniRef50_F6YF66	0.1807696074
+UniRef50_F6YF66|unclassified	0.1807696074
+UniRef50_UPI0002490372: choloylglycine hydrolase	0.1807646179
+UniRef50_UPI0002490372: choloylglycine hydrolase|unclassified	0.1807646179
+UniRef50_Q7NV70	0.1807578261
+UniRef50_Q7NV70|unclassified	0.1807578261
+UniRef50_UPI000465E2F8: hypothetical protein	0.1807401313
+UniRef50_UPI000465E2F8: hypothetical protein|unclassified	0.1807401313
+UniRef50_O67736: Bifunctional protein FolD	0.1807102923
+UniRef50_O67736: Bifunctional protein FolD|unclassified	0.1807102923
+UniRef50_M7WR37	0.1807031101
+UniRef50_M7WR37|unclassified	0.1807031101
+UniRef50_F3MY06: Aldo/keto reductase (Fragment)	0.1806923251
+UniRef50_F3MY06: Aldo/keto reductase (Fragment)|unclassified	0.1806923251
+UniRef50_A0A022M296: Short-chain dehydrogenase (Fragment)	0.1806913660
+UniRef50_A0A022M296: Short-chain dehydrogenase (Fragment)|unclassified	0.1806913660
+UniRef50_A8L741: Putative glyoxalase family protein	0.1806828576
+UniRef50_A8L741: Putative glyoxalase family protein|unclassified	0.1806828576
+UniRef50_T0ZCE6: Thiamine biosynthesis protein ThiC (Fragment)	0.1806360837
+UniRef50_T0ZCE6: Thiamine biosynthesis protein ThiC (Fragment)|unclassified	0.1806360837
+UniRef50_W9C461: Fe-S oxidoreductase	0.1806308924
+UniRef50_W9C461: Fe-S oxidoreductase|unclassified	0.1806308924
+UniRef50_T1ZL16	0.1806297308
+UniRef50_T1ZL16|unclassified	0.1806297308
+UniRef50_UPI000289EBDC: response regulator receiver	0.1806290485
+UniRef50_UPI000289EBDC: response regulator receiver|unclassified	0.1806290485
+UniRef50_UPI0003122681: hypothetical protein	0.1806149108
+UniRef50_UPI0003122681: hypothetical protein|unclassified	0.1806149108
+UniRef50_H8FV08	0.1806000348
+UniRef50_H8FV08|unclassified	0.1806000348
+UniRef50_F8G2S0	0.1805883435
+UniRef50_F8G2S0|unclassified	0.1805883435
+UniRef50_A3JUE4	0.1805875787
+UniRef50_A3JUE4|unclassified	0.1805875787
+UniRef50_U8L494	0.1805812031
+UniRef50_U8L494|unclassified	0.1805812031
+UniRef50_UPI0002887069: aldehyde dehydrogenase	0.1805742825
+UniRef50_UPI0002887069: aldehyde dehydrogenase|unclassified	0.1805742825
+UniRef50_F6AD47	0.1805717774
+UniRef50_F6AD47|unclassified	0.1805717774
+UniRef50_V8NVA5: Vegetative cell wall protein gp1	0.1805539468
+UniRef50_V8NVA5: Vegetative cell wall protein gp1|unclassified	0.1805539468
+UniRef50_K5ZH15: UPF0301 protein MXAZACID_13641	0.1805498407
+UniRef50_K5ZH15: UPF0301 protein MXAZACID_13641|unclassified	0.1805498407
+UniRef50_F8JQP0	0.1805445073
+UniRef50_F8JQP0|unclassified	0.1805445073
+UniRef50_UPI00041FCE8E: 16S rRNA methyltransferase	0.1805403218
+UniRef50_UPI00041FCE8E: 16S rRNA methyltransferase|unclassified	0.1805403218
+UniRef50_L0MGU1	0.1805293159
+UniRef50_L0MGU1|unclassified	0.1805293159
+UniRef50_UPI00029ADE28: 50S ribosomal protein L22	0.1805251822
+UniRef50_UPI00029ADE28: 50S ribosomal protein L22|unclassified	0.1805251822
+UniRef50_UPI0004548432: PREDICTED: multidrug and toxin extrusion protein 1-like	0.1805180980
+UniRef50_UPI0004548432: PREDICTED: multidrug and toxin extrusion protein 1-like|unclassified	0.1805180980
+UniRef50_UPI000362617D: hypothetical protein	0.1805145898
+UniRef50_UPI000362617D: hypothetical protein|unclassified	0.1805145898
+UniRef50_R0YL20: Filamentous hemagglutinin family N-terminal domain protein	0.1805054152
+UniRef50_R0YL20: Filamentous hemagglutinin family N-terminal domain protein|g__Neisseria.s__Neisseria_meningitidis	0.1805054152
+UniRef50_UPI0002FEF94F: hypothetical protein	0.1804772455
+UniRef50_UPI0002FEF94F: hypothetical protein|unclassified	0.1804772455
+UniRef50_Q97R65: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit	0.1804713431
+UniRef50_Q97R65: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit|unclassified	0.1804713431
+UniRef50_UPI000364EA04: GntR family transcriptional regulator	0.1804677438
+UniRef50_UPI000364EA04: GntR family transcriptional regulator|unclassified	0.1804677438
+UniRef50_E0RCX2	0.1804515619
+UniRef50_E0RCX2|unclassified	0.1804515619
+UniRef50_R6CQR9	0.1804510367
+UniRef50_R6CQR9|unclassified	0.1804510367
+UniRef50_D5X776: Cobyrinic acid ac-diamide synthase	0.1804416622
+UniRef50_D5X776: Cobyrinic acid ac-diamide synthase|unclassified	0.1804416622
+UniRef50_UPI0002F44DE1: amino acid dehydrogenase	0.1804400823
+UniRef50_UPI0002F44DE1: amino acid dehydrogenase|unclassified	0.1804400823
+UniRef50_UPI00035E58D5: hypothetical protein	0.1804180429
+UniRef50_UPI00035E58D5: hypothetical protein|unclassified	0.1804180429
+UniRef50_C1E6Z7: Predicted protein	0.1804066816
+UniRef50_C1E6Z7: Predicted protein|unclassified	0.1804066816
+UniRef50_A3X0Y5	0.1803763543
+UniRef50_A3X0Y5|unclassified	0.1803763543
+UniRef50_E5V1V5: Rhodanese domain-containing protein	0.1802933291
+UniRef50_E5V1V5: Rhodanese domain-containing protein|unclassified	0.1802933291
+UniRef50_Q5FPZ9: Holo-[acyl-carrier-protein] synthase	0.1802911854
+UniRef50_Q5FPZ9: Holo-[acyl-carrier-protein] synthase|unclassified	0.1802911854
+UniRef50_A6X7C7: Tripartite ATP-independent periplasmic transporter DctQ component	0.1802809927
+UniRef50_A6X7C7: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.1802809927
+UniRef50_F6ADU2	0.1802674237
+UniRef50_F6ADU2|unclassified	0.1802674237
+UniRef50_B1HUI4: Shikimate dehydrogenase	0.1802594381
+UniRef50_B1HUI4: Shikimate dehydrogenase|unclassified	0.1802594381
+UniRef50_A6FVX6: Transcriptional regulator, MarR family protein	0.1802574306
+UniRef50_A6FVX6: Transcriptional regulator, MarR family protein|unclassified	0.1802574306
+UniRef50_M1PJW1	0.1802523949
+UniRef50_M1PJW1|unclassified	0.1802523949
+UniRef50_Q79CP2	0.1802387258
+UniRef50_Q79CP2|unclassified	0.1802387258
+UniRef50_D4H966	0.1802317544
+UniRef50_D4H966|unclassified	0.1802317544
+UniRef50_I3UC51: Putative monovalent cation/H+ antiporter subunit A	0.1802223512
+UniRef50_I3UC51: Putative monovalent cation/H+ antiporter subunit A|unclassified	0.1802223512
+UniRef50_UPI00028865EF: hypothetical protein	0.1802117760
+UniRef50_UPI00028865EF: hypothetical protein|unclassified	0.1802117760
+UniRef50_UPI000378CCBF: hypothetical protein	0.1802066342
+UniRef50_UPI000378CCBF: hypothetical protein|unclassified	0.1802066342
+UniRef50_B9E7V3	0.1801970400
+UniRef50_B9E7V3|unclassified	0.1801970400
+UniRef50_C3QRE5	0.1801796811
+UniRef50_C3QRE5|unclassified	0.1801796811
+UniRef50_UPI000287C458: spore germination protein	0.1801695863
+UniRef50_UPI000287C458: spore germination protein|unclassified	0.1801695863
+UniRef50_UPI0002EF8F5D: hypothetical protein	0.1801625379
+UniRef50_UPI0002EF8F5D: hypothetical protein|unclassified	0.1801625379
+UniRef50_UPI000360A00D: phage tail protein	0.1801319512
+UniRef50_UPI000360A00D: phage tail protein|unclassified	0.1801319512
+UniRef50_S1R726	0.1801292282
+UniRef50_S1R726|unclassified	0.1801292282
+UniRef50_W8RSN9: Peptidoglycan binding protein domain protein	0.1801286423
+UniRef50_W8RSN9: Peptidoglycan binding protein domain protein|unclassified	0.1801286423
+UniRef50_UPI00035D46D2: hypothetical protein	0.1800687969
+UniRef50_UPI00035D46D2: hypothetical protein|unclassified	0.1800687969
+UniRef50_UPI000362A126: hypothetical protein	0.1800629326
+UniRef50_UPI000362A126: hypothetical protein|unclassified	0.1800629326
+UniRef50_X1EG70: Marine sediment metagenome DNA, contig: S01H4_S19652 (Fragment)	0.1800358776
+UniRef50_X1EG70: Marine sediment metagenome DNA, contig: S01H4_S19652 (Fragment)|unclassified	0.1800358776
+UniRef50_N4VJD3	0.1800265501
+UniRef50_N4VJD3|unclassified	0.1800265501
+UniRef50_J1E8C3	0.1800181100
+UniRef50_J1E8C3|unclassified	0.1800181100
+UniRef50_Q5QZK7: Ribonuclease HII	0.1800142702
+UniRef50_Q5QZK7: Ribonuclease HII|unclassified	0.1800142702
+UniRef50_UPI00036C89F9: hypothetical protein	0.1800137668
+UniRef50_UPI00036C89F9: hypothetical protein|unclassified	0.1800137668
+UniRef50_UPI00039EDB60: choline ABC transporter permease	0.1800093082
+UniRef50_UPI00039EDB60: choline ABC transporter permease|unclassified	0.1800093082
+UniRef50_Q9KDW4: S-adenosylmethionine decarboxylase proenzyme 1	0.1800004091
+UniRef50_Q9KDW4: S-adenosylmethionine decarboxylase proenzyme 1|unclassified	0.1800004091
+UniRef50_UPI0002197FD3: IS3 family transposase B, partial	0.1799979728
+UniRef50_UPI0002197FD3: IS3 family transposase B, partial|unclassified	0.1799979728
+UniRef50_H4N6N6	0.1799836961
+UniRef50_H4N6N6|unclassified	0.1799836961
+UniRef50_A3ACF3: Adenylyltransferase and sulfurtransferase MOCS3	0.1799761945
+UniRef50_A3ACF3: Adenylyltransferase and sulfurtransferase MOCS3|unclassified	0.1799761945
+UniRef50_E1HSB0	0.1799545392
+UniRef50_E1HSB0|unclassified	0.1799545392
+UniRef50_UPI000398EF0E: PREDICTED: LOW QUALITY PROTEIN: glyoxalase domain-containing protein 5-like	0.1799509412
+UniRef50_UPI000398EF0E: PREDICTED: LOW QUALITY PROTEIN: glyoxalase domain-containing protein 5-like|unclassified	0.1799509412
+UniRef50_A0A022NS63	0.1799339933
+UniRef50_A0A022NS63|unclassified	0.1799339933
+UniRef50_UPI0004631839: hypothetical protein	0.1799274326
+UniRef50_UPI0004631839: hypothetical protein|unclassified	0.1799274326
+UniRef50_I1PEC5	0.1798967578
+UniRef50_I1PEC5|unclassified	0.1798967578
+UniRef50_UPI0003631AB4: hypothetical protein, partial	0.1798818601
+UniRef50_UPI0003631AB4: hypothetical protein, partial|unclassified	0.1798818601
+UniRef50_Q15TJ8: PKHD-type hydroxylase Patl_2273	0.1798539597
+UniRef50_Q15TJ8: PKHD-type hydroxylase Patl_2273|unclassified	0.1798539597
+UniRef50_X1F267: Marine sediment metagenome DNA, contig: S03H2_L03257 (Fragment)	0.1798445271
+UniRef50_X1F267: Marine sediment metagenome DNA, contig: S03H2_L03257 (Fragment)|unclassified	0.1798445271
+UniRef50_B7I2N1: Protein YaaA	0.1798330012
+UniRef50_B7I2N1: Protein YaaA|unclassified	0.1798330012
+UniRef50_P50383: Tryptophan synthase beta chain 1	0.1798304033
+UniRef50_P50383: Tryptophan synthase beta chain 1|unclassified	0.1798304033
+UniRef50_UPI000344FAE6: hypothetical protein	0.1798268433
+UniRef50_UPI000344FAE6: hypothetical protein|unclassified	0.1798268433
+UniRef50_N9K3K4	0.1798231887
+UniRef50_N9K3K4|unclassified	0.1798231887
+UniRef50_Q0H8Y0: Probable intron-encoded endonuclease aI4	0.1797987691
+UniRef50_Q0H8Y0: Probable intron-encoded endonuclease aI4|unclassified	0.1797987691
+UniRef50_UPI00037303EC: hypothetical protein	0.1797919215
+UniRef50_UPI00037303EC: hypothetical protein|unclassified	0.1797919215
+UniRef50_C3E3W4	0.1797873865
+UniRef50_C3E3W4|unclassified	0.1797873865
+UniRef50_Q1GCN6	0.1797850129
+UniRef50_Q1GCN6|unclassified	0.1797850129
+UniRef50_W4UW89: Phosphoglycerate mutase family	0.1797813909
+UniRef50_W4UW89: Phosphoglycerate mutase family|unclassified	0.1797813909
+UniRef50_UPI000174604E: hypothetical protein	0.1797405559
+UniRef50_UPI000174604E: hypothetical protein|unclassified	0.1797405559
+UniRef50_A7IB90	0.1797376720
+UniRef50_A7IB90|unclassified	0.1797376720
+UniRef50_Q05763: Bifunctional dihydrofolate reductase-thymidylate synthase 2	0.1797350658
+UniRef50_Q05763: Bifunctional dihydrofolate reductase-thymidylate synthase 2|unclassified	0.1797350658
+UniRef50_E1V710	0.1797198460
+UniRef50_E1V710|unclassified	0.1797198460
+UniRef50_U3U2D6	0.1796970187
+UniRef50_U3U2D6|unclassified	0.1796970187
+UniRef50_K0CH74	0.1796716593
+UniRef50_K0CH74|unclassified	0.1796716593
+UniRef50_E0SW91	0.1796640162
+UniRef50_E0SW91|unclassified	0.1796640162
+UniRef50_K5BGS2	0.1796568658
+UniRef50_K5BGS2|unclassified	0.1796568658
+UniRef50_G3IRF3: Baseplate J family protein	0.1796468083
+UniRef50_G3IRF3: Baseplate J family protein|unclassified	0.1796468083
+UniRef50_UPI0003A4D539: single-stranded DNA-binding protein	0.1796408500
+UniRef50_UPI0003A4D539: single-stranded DNA-binding protein|unclassified	0.1796408500
+UniRef50_W4TGT9: Membrane protein	0.1796334303
+UniRef50_W4TGT9: Membrane protein|unclassified	0.1796334303
+UniRef50_UPI0003750E13: hypothetical protein	0.1796231066
+UniRef50_UPI0003750E13: hypothetical protein|unclassified	0.1796231066
+UniRef50_Q2RBC8: Expressed protein	0.1796182794
+UniRef50_Q2RBC8: Expressed protein|unclassified	0.1796182794
+UniRef50_UPI0002D50174: hypothetical protein	0.1796180719
+UniRef50_UPI0002D50174: hypothetical protein|unclassified	0.1796180719
+UniRef50_UPI00047D04C1: hypothetical protein	0.1796009932
+UniRef50_UPI00047D04C1: hypothetical protein|unclassified	0.1796009932
+UniRef50_I3TXX8: Aldo/keto reductase	0.1795863723
+UniRef50_I3TXX8: Aldo/keto reductase|unclassified	0.1795863723
+UniRef50_UPI00037A3CF4: hypothetical protein	0.1795792882
+UniRef50_UPI00037A3CF4: hypothetical protein|unclassified	0.1795792882
+UniRef50_UPI000378C128: hypothetical protein	0.1795714177
+UniRef50_UPI000378C128: hypothetical protein|unclassified	0.1795714177
+UniRef50_UPI000479C1A2: hypothetical protein	0.1795702344
+UniRef50_UPI000479C1A2: hypothetical protein|unclassified	0.1795702344
+UniRef50_A0A011RLE4: Rhodanese-like domain protein	0.1795699124
+UniRef50_A0A011RLE4: Rhodanese-like domain protein|unclassified	0.1795699124
+UniRef50_UPI00036921B4: hypothetical protein	0.1795639072
+UniRef50_UPI00036921B4: hypothetical protein|unclassified	0.1795639072
+UniRef50_G0U2J2	0.1795608592
+UniRef50_G0U2J2|unclassified	0.1795608592
+UniRef50_D4DML3	0.1795474462
+UniRef50_D4DML3|unclassified	0.1795474462
+UniRef50_Q16CY1	0.1795433534
+UniRef50_Q16CY1|unclassified	0.1795433534
+UniRef50_S6K109	0.1795426424
+UniRef50_S6K109|unclassified	0.1795426424
+UniRef50_UPI0003F1AFEC: PREDICTED: putative ciliary rootlet coiled-coil protein-like 3 protein-like	0.1795332136
+UniRef50_UPI0003F1AFEC: PREDICTED: putative ciliary rootlet coiled-coil protein-like 3 protein-like|unclassified	0.1795332136
+UniRef50_UPI00026C6485: hypothetical protein	0.1795100759
+UniRef50_UPI00026C6485: hypothetical protein|unclassified	0.1795100759
+UniRef50_UPI0003773C52: hypothetical protein	0.1794947176
+UniRef50_UPI0003773C52: hypothetical protein|unclassified	0.1794947176
+UniRef50_W5X9G4: Methylthioadenosine phosphorylase	0.1794797225
+UniRef50_W5X9G4: Methylthioadenosine phosphorylase|unclassified	0.1794797225
+UniRef50_E0TIB8: Oligoketide cyclase	0.1794764806
+UniRef50_E0TIB8: Oligoketide cyclase|unclassified	0.1794764806
+UniRef50_F2LNV1	0.1794643643
+UniRef50_F2LNV1|unclassified	0.1794643643
+UniRef50_K1Z738	0.1794623442
+UniRef50_K1Z738|unclassified	0.1794623442
+UniRef50_V4RGG7: Phage major capsid protein	0.1794529539
+UniRef50_V4RGG7: Phage major capsid protein|unclassified	0.1794529539
+UniRef50_C1D5R6: Membrane protein	0.1794483102
+UniRef50_C1D5R6: Membrane protein|unclassified	0.1794483102
+UniRef50_Q0J6K8: Os08g0300300 protein (Fragment)	0.1794439911
+UniRef50_Q0J6K8: Os08g0300300 protein (Fragment)|unclassified	0.1794439911
+UniRef50_UPI00042422DA: NAD(P)H dehydrogenase	0.1794409422
+UniRef50_UPI00042422DA: NAD(P)H dehydrogenase|unclassified	0.1794409422
+UniRef50_K1BXA7: Two-component sensor (Fragment)	0.1794356745
+UniRef50_K1BXA7: Two-component sensor (Fragment)|unclassified	0.1794356745
+UniRef50_UPI0004651DCC: ABC transporter	0.1794307995
+UniRef50_UPI0004651DCC: ABC transporter|unclassified	0.1794307995
+UniRef50_D6GRX0	0.1794243301
+UniRef50_D6GRX0|unclassified	0.1794243301
+UniRef50_F4N6V7: Epimerase family protein yfcH	0.1794193620
+UniRef50_F4N6V7: Epimerase family protein yfcH|unclassified	0.1794193620
+UniRef50_M5F480	0.1793846531
+UniRef50_M5F480|unclassified	0.1793846531
+UniRef50_UPI000248A403: acyl-CoA thioesterase	0.1793806646
+UniRef50_UPI000248A403: acyl-CoA thioesterase|unclassified	0.1793806646
+UniRef50_UPI0002376863: rod shape-determining protein mrec, partial	0.1793708956
+UniRef50_UPI0002376863: rod shape-determining protein mrec, partial|unclassified	0.1793708956
+UniRef50_K2DQ88	0.1793686922
+UniRef50_K2DQ88|unclassified	0.1793686922
+UniRef50_Q837B3: Methionine--tRNA ligase	0.1793491545
+UniRef50_Q837B3: Methionine--tRNA ligase|unclassified	0.1793491545
+UniRef50_UPI0004683FC2: type III secretion system protein	0.1793391754
+UniRef50_UPI0004683FC2: type III secretion system protein|unclassified	0.1793391754
+UniRef50_A0A024NRS6: Phage protein, HK97 gp10 family	0.1793318502
+UniRef50_A0A024NRS6: Phage protein, HK97 gp10 family|unclassified	0.1793318502
+UniRef50_R4Y998: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.1792936037
+UniRef50_R4Y998: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|unclassified	0.1792936037
+UniRef50_UPI0003716923: hypothetical protein	0.1792853664
+UniRef50_UPI0003716923: hypothetical protein|unclassified	0.1792853664
+UniRef50_UPI00037FD51B: hypothetical protein	0.1792722076
+UniRef50_UPI00037FD51B: hypothetical protein|unclassified	0.1792722076
+UniRef50_D8J0P8: Quinohemoprotein alcohol dehydrogenase protein	0.1792593047
+UniRef50_D8J0P8: Quinohemoprotein alcohol dehydrogenase protein|unclassified	0.1792593047
+UniRef50_UPI00036EC9BA: hypothetical protein	0.1792565829
+UniRef50_UPI00036EC9BA: hypothetical protein|unclassified	0.1792565829
+UniRef50_F8G199	0.1792524293
+UniRef50_F8G199|unclassified	0.1792524293
+UniRef50_UPI0004737E6F: hypothetical protein	0.1792385132
+UniRef50_UPI0004737E6F: hypothetical protein|unclassified	0.1792385132
+UniRef50_A0A016RSC1	0.1792384180
+UniRef50_A0A016RSC1|unclassified	0.1792384180
+UniRef50_Q09816: S-methyl-5'-thioadenosine phosphorylase	0.1792383690
+UniRef50_Q09816: S-methyl-5'-thioadenosine phosphorylase|unclassified	0.1792383690
+UniRef50_UPI00047BD555: membrane protein	0.1792048145
+UniRef50_UPI00047BD555: membrane protein|unclassified	0.1792048145
+UniRef50_UPI0003EBE04C: PREDICTED: 28S ribosomal protein S9, mitochondrial-like	0.1792025466
+UniRef50_UPI0003EBE04C: PREDICTED: 28S ribosomal protein S9, mitochondrial-like|unclassified	0.1792025466
+UniRef50_P28628: Signal peptidase I S	0.1791535107
+UniRef50_P28628: Signal peptidase I S|unclassified	0.1791535107
+UniRef50_UPI0002E6C331: hypothetical protein	0.1791326764
+UniRef50_UPI0002E6C331: hypothetical protein|unclassified	0.1791326764
+UniRef50_B2GBB0: Phosphopantetheine adenylyltransferase	0.1791287366
+UniRef50_B2GBB0: Phosphopantetheine adenylyltransferase|unclassified	0.1791287366
+UniRef50_UPI000368346E: hypothetical protein	0.1791099647
+UniRef50_UPI000368346E: hypothetical protein|unclassified	0.1791099647
+UniRef50_A7HC61: LexA repressor	0.1791078856
+UniRef50_A7HC61: LexA repressor|unclassified	0.1791078856
+UniRef50_V4L8B5	0.1791049835
+UniRef50_V4L8B5|unclassified	0.1791049835
+UniRef50_K1TW55	0.1790821021
+UniRef50_K1TW55|unclassified	0.1790821021
+UniRef50_M4JHU5	0.1790794481
+UniRef50_M4JHU5|unclassified	0.1790794481
+UniRef50_Q094I2	0.1790751652
+UniRef50_Q094I2|unclassified	0.1790751652
+UniRef50_UPI000225B6E6: flagellar biosynthesis protein FlhB	0.1790566416
+UniRef50_UPI000225B6E6: flagellar biosynthesis protein FlhB|unclassified	0.1790566416
+UniRef50_UPI0004651252: molecular chaperone DnaK	0.1790543865
+UniRef50_UPI0004651252: molecular chaperone DnaK|unclassified	0.1790543865
+UniRef50_UPI00046B0047: NAD-dependent dehydratase	0.1790449974
+UniRef50_UPI00046B0047: NAD-dependent dehydratase|unclassified	0.1790449974
+UniRef50_G8VBC9: Adhesion protein-associated protein	0.1790124723
+UniRef50_G8VBC9: Adhesion protein-associated protein|unclassified	0.1790124723
+UniRef50_UPI000255DDC9: hypothetical protein	0.1789981577
+UniRef50_UPI000255DDC9: hypothetical protein|unclassified	0.1789981577
+UniRef50_X5IEK4: Putative endolysin	0.1789636083
+UniRef50_X5IEK4: Putative endolysin|unclassified	0.1789636083
+UniRef50_U6GJF4	0.1789532264
+UniRef50_U6GJF4|unclassified	0.1789532264
+UniRef50_UPI0003799A1D: hypothetical protein	0.1789466385
+UniRef50_UPI0003799A1D: hypothetical protein|unclassified	0.1789466385
+UniRef50_D5WTB1: SirA family protein	0.1789393565
+UniRef50_D5WTB1: SirA family protein|unclassified	0.1789393565
+UniRef50_Q818I1: Superoxide dismutase [Mn] 1	0.1789360842
+UniRef50_Q818I1: Superoxide dismutase [Mn] 1|unclassified	0.1789360842
+UniRef50_K5Z205: Recombination protein F (Fragment)	0.1789322121
+UniRef50_K5Z205: Recombination protein F (Fragment)|unclassified	0.1789322121
+UniRef50_W7D528	0.1789255975
+UniRef50_W7D528|unclassified	0.1789255975
+UniRef50_A1UFI0: Putative transglycosylase associated protein	0.1789227894
+UniRef50_A1UFI0: Putative transglycosylase associated protein|unclassified	0.1789227894
+UniRef50_P21264: Phosphoribosylaminoimidazole carboxylase	0.1789122531
+UniRef50_P21264: Phosphoribosylaminoimidazole carboxylase|unclassified	0.1789122531
+UniRef50_Q89B29: Ribosomal RNA small subunit methyltransferase D	0.1789073578
+UniRef50_Q89B29: Ribosomal RNA small subunit methyltransferase D|unclassified	0.1789073578
+UniRef50_U7PJZ4	0.1788956977
+UniRef50_U7PJZ4|unclassified	0.1788956977
+UniRef50_J9P613	0.1788899345
+UniRef50_J9P613|unclassified	0.1788899345
+UniRef50_K8W6Z9	0.1788537230
+UniRef50_K8W6Z9|unclassified	0.1788537230
+UniRef50_M2XMH8: DNA polymerase II large subunit	0.1788417639
+UniRef50_M2XMH8: DNA polymerase II large subunit|unclassified	0.1788417639
+UniRef50_UPI0004769C60: hypothetical protein	0.1788220978
+UniRef50_UPI0004769C60: hypothetical protein|unclassified	0.1788220978
+UniRef50_V6V6C7: Peptidase P60 (Fragment)	0.1787996792
+UniRef50_V6V6C7: Peptidase P60 (Fragment)|unclassified	0.1787996792
+UniRef50_UPI0003011CF5: hypothetical protein	0.1787991891
+UniRef50_UPI0003011CF5: hypothetical protein|unclassified	0.1787991891
+UniRef50_R1E2E9	0.1787722313
+UniRef50_R1E2E9|unclassified	0.1787722313
+UniRef50_G0D2V3: YeeV-YeeU toxin-antitoxin system toxin protein	0.1787656110
+UniRef50_G0D2V3: YeeV-YeeU toxin-antitoxin system toxin protein|unclassified	0.1787656110
+UniRef50_Q0H8X8: Probable intron-encoded endonuclease aI2	0.1787595575
+UniRef50_Q0H8X8: Probable intron-encoded endonuclease aI2|unclassified	0.1787595575
+UniRef50_UPI000174506B: hypothetical protein	0.1787538038
+UniRef50_UPI000174506B: hypothetical protein|unclassified	0.1787538038
+UniRef50_UPI0003B5B625: dihydrofolate reductase	0.1787522078
+UniRef50_UPI0003B5B625: dihydrofolate reductase|unclassified	0.1787522078
+UniRef50_UPI00047C87A8: hypothetical protein	0.1787512809
+UniRef50_UPI00047C87A8: hypothetical protein|unclassified	0.1787512809
+UniRef50_UPI000287CF8F: thioredoxin	0.1787430948
+UniRef50_UPI000287CF8F: thioredoxin|unclassified	0.1787430948
+UniRef50_X0ZKY8: Marine sediment metagenome DNA, contig: S01H4_L01056 (Fragment)	0.1787373969
+UniRef50_X0ZKY8: Marine sediment metagenome DNA, contig: S01H4_L01056 (Fragment)|unclassified	0.1787373969
+UniRef50_UPI0004090BEE: hypothetical protein	0.1787337352
+UniRef50_UPI0004090BEE: hypothetical protein|unclassified	0.1787337352
+UniRef50_UPI00040184F1: hypothetical protein	0.1787269025
+UniRef50_UPI00040184F1: hypothetical protein|unclassified	0.1787269025
+UniRef50_UPI0003B538E4: hypothetical protein	0.1787072188
+UniRef50_UPI0003B538E4: hypothetical protein|unclassified	0.1787072188
+UniRef50_Q8TM02: CoB--CoM heterodisulfide reductase 1 iron-sulfur subunit A	0.1787067159
+UniRef50_Q8TM02: CoB--CoM heterodisulfide reductase 1 iron-sulfur subunit A|unclassified	0.1787067159
+UniRef50_A8MF40: 4-hydroxy-tetrahydrodipicolinate synthase	0.1786951518
+UniRef50_A8MF40: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.1786951518
+UniRef50_F8XGF4: Acetyl-CoA carboxylase, biotin carboxyl carrier protein	0.1786945353
+UniRef50_F8XGF4: Acetyl-CoA carboxylase, biotin carboxyl carrier protein|unclassified	0.1786945353
+UniRef50_UPI0003B51BB3: diguanylate cyclase	0.1786924740
+UniRef50_UPI0003B51BB3: diguanylate cyclase|unclassified	0.1786924740
+UniRef50_E9T970	0.1786912078
+UniRef50_E9T970|unclassified	0.1786912078
+UniRef50_X1JCY2: Marine sediment metagenome DNA, contig: S06H3_C00025	0.1786700499
+UniRef50_X1JCY2: Marine sediment metagenome DNA, contig: S06H3_C00025|unclassified	0.1786700499
+UniRef50_UPI00046F8B19: hypothetical protein	0.1786616263
+UniRef50_UPI00046F8B19: hypothetical protein|unclassified	0.1786616263
+UniRef50_X1Q1I0: Marine sediment metagenome DNA, contig: S12H4_C02989	0.1786503839
+UniRef50_X1Q1I0: Marine sediment metagenome DNA, contig: S12H4_C02989|unclassified	0.1786503839
+UniRef50_UPI000468EE55: ATP-dependent DNA helicase PcrA	0.1786426926
+UniRef50_UPI000468EE55: ATP-dependent DNA helicase PcrA|unclassified	0.1786426926
+UniRef50_Q9PC25: Glycine--tRNA ligase alpha subunit	0.1786385911
+UniRef50_Q9PC25: Glycine--tRNA ligase alpha subunit|unclassified	0.1786385911
+UniRef50_I3CCU8: Dihem cytochrome c	0.1786331548
+UniRef50_I3CCU8: Dihem cytochrome c|unclassified	0.1786331548
+UniRef50_R6IUV8: Protein containing DUF1013	0.1786175100
+UniRef50_R6IUV8: Protein containing DUF1013|unclassified	0.1786175100
+UniRef50_UPI0002F90E7D: hypothetical protein	0.1786165873
+UniRef50_UPI0002F90E7D: hypothetical protein|unclassified	0.1786165873
+UniRef50_F2A8G4: 6-pyruvoyl-tetrahydropterin synthase	0.1786165219
+UniRef50_F2A8G4: 6-pyruvoyl-tetrahydropterin synthase|unclassified	0.1786165219
+UniRef50_UPI0004653E29: multidrug transporter	0.1786031394
+UniRef50_UPI0004653E29: multidrug transporter|unclassified	0.1786031394
+UniRef50_UPI0003613828: hypothetical protein	0.1785973723
+UniRef50_UPI0003613828: hypothetical protein|unclassified	0.1785973723
+UniRef50_G1TF83	0.1785882905
+UniRef50_G1TF83|unclassified	0.1785882905
+UniRef50_S6ETI6	0.1785879290
+UniRef50_S6ETI6|unclassified	0.1785879290
+UniRef50_Q72LZ4: S-methyl-5'-thioadenosine phosphorylase	0.1785763154
+UniRef50_Q72LZ4: S-methyl-5'-thioadenosine phosphorylase|unclassified	0.1785763154
+UniRef50_E3A421	0.1785742330
+UniRef50_E3A421|unclassified	0.1785742330
+UniRef50_A0A031HUP7	0.1785555370
+UniRef50_A0A031HUP7|unclassified	0.1785555370
+UniRef50_W3TTT4	0.1785308795
+UniRef50_W3TTT4|unclassified	0.1785308795
+UniRef50_Q60DA1	0.1785175638
+UniRef50_Q60DA1|unclassified	0.1785175638
+UniRef50_UPI00031B783E: hypothetical protein	0.1785141796
+UniRef50_UPI00031B783E: hypothetical protein|unclassified	0.1785141796
+UniRef50_B8IPI3: 6,7-dimethyl-8-ribityllumazine synthase	0.1785036292
+UniRef50_B8IPI3: 6,7-dimethyl-8-ribityllumazine synthase|unclassified	0.1785036292
+UniRef50_UPI0002DE4840: AraC family transcriptional regulator	0.1784998611
+UniRef50_UPI0002DE4840: AraC family transcriptional regulator|unclassified	0.1784998611
+UniRef50_P30335: Nitrogen regulatory protein	0.1784940670
+UniRef50_P30335: Nitrogen regulatory protein|unclassified	0.1784940670
+UniRef50_UPI0003B4A52D: MFS transporter	0.1784815477
+UniRef50_UPI0003B4A52D: MFS transporter|unclassified	0.1784815477
+UniRef50_Q4DRG1: MaoC-like dehydratase, putative	0.1784543742
+UniRef50_Q4DRG1: MaoC-like dehydratase, putative|unclassified	0.1784543742
+UniRef50_V7HX59: Alkaline shock protein	0.1784453323
+UniRef50_V7HX59: Alkaline shock protein|unclassified	0.1784453323
+UniRef50_B4S5H3: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.1784251733
+UniRef50_B4S5H3: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.1784251733
+UniRef50_UPI0004699B79: hypothetical protein	0.1784233120
+UniRef50_UPI0004699B79: hypothetical protein|unclassified	0.1784233120
+UniRef50_UPI0001DD0EBB: gamma-glutamyl kinase	0.1783981321
+UniRef50_UPI0001DD0EBB: gamma-glutamyl kinase|unclassified	0.1783981321
+UniRef50_X1TJ77: Marine sediment metagenome DNA, contig: S12H4_S00763 (Fragment)	0.1783885049
+UniRef50_X1TJ77: Marine sediment metagenome DNA, contig: S12H4_S00763 (Fragment)|unclassified	0.1783885049
+UniRef50_UPI000374B195: hypothetical protein	0.1783823884
+UniRef50_UPI000374B195: hypothetical protein|unclassified	0.1783823884
+UniRef50_V6PRE7: Peripheral inner membrane phage-shock protein	0.1783666660
+UniRef50_V6PRE7: Peripheral inner membrane phage-shock protein|unclassified	0.1783666660
+UniRef50_H4FA07: Pirin domain protein (Fragment)	0.1783506860
+UniRef50_H4FA07: Pirin domain protein (Fragment)|unclassified	0.1783506860
+UniRef50_UPI00041E0388: hypothetical protein	0.1783484599
+UniRef50_UPI00041E0388: hypothetical protein|unclassified	0.1783484599
+UniRef50_X0RUF2: Marine sediment metagenome DNA, contig: S01H1_L06177 (Fragment)	0.1783385929
+UniRef50_X0RUF2: Marine sediment metagenome DNA, contig: S01H1_L06177 (Fragment)|unclassified	0.1783385929
+UniRef50_E8XYF5: Tat-linked quality control protein TatD	0.1783384223
+UniRef50_E8XYF5: Tat-linked quality control protein TatD|unclassified	0.1783384223
+UniRef50_Q8KA73: Putative phosphatase BUsg_029	0.1783249778
+UniRef50_Q8KA73: Putative phosphatase BUsg_029|unclassified	0.1783249778
+UniRef50_UPI0003A09863: C4-dicarboxylate ABC transporter permease	0.1783236586
+UniRef50_UPI0003A09863: C4-dicarboxylate ABC transporter permease|unclassified	0.1783236586
+UniRef50_U3KRA1	0.1783159921
+UniRef50_U3KRA1|unclassified	0.1783159921
+UniRef50_E1ZT92	0.1783070048
+UniRef50_E1ZT92|unclassified	0.1783070048
+UniRef50_Q0C348: Histidinol-phosphate aminotransferase	0.1783048655
+UniRef50_Q0C348: Histidinol-phosphate aminotransferase|unclassified	0.1783048655
+UniRef50_UPI00046D89CC: hypothetical protein	0.1782953470
+UniRef50_UPI00046D89CC: hypothetical protein|unclassified	0.1782953470
+UniRef50_UPI00046554AE: elongation factor G	0.1782937915
+UniRef50_UPI00046554AE: elongation factor G|unclassified	0.1782937915
+UniRef50_UPI00047A25C0: 4-diphosphocytidyl-2C-methyl-D-erythritol kinase	0.1782703727
+UniRef50_UPI00047A25C0: 4-diphosphocytidyl-2C-methyl-D-erythritol kinase|unclassified	0.1782703727
+UniRef50_UPI0003B438BD: GCN5 family acetyltransferase	0.1782633991
+UniRef50_UPI0003B438BD: GCN5 family acetyltransferase|unclassified	0.1782633991
+UniRef50_Q33845: Cytochrome c oxidase subunit 3 (Fragment)	0.1782473661
+UniRef50_Q33845: Cytochrome c oxidase subunit 3 (Fragment)|unclassified	0.1782473661
+UniRef50_A0A028ZGM8: Transposase	0.1782454767
+UniRef50_A0A028ZGM8: Transposase|unclassified	0.1782454767
+UniRef50_V9GR57	0.1782402721
+UniRef50_V9GR57|unclassified	0.1782402721
+UniRef50_M0SUV4	0.1782329396
+UniRef50_M0SUV4|unclassified	0.1782329396
+UniRef50_UPI000378FB7D: hypothetical protein	0.1782176450
+UniRef50_UPI000378FB7D: hypothetical protein|unclassified	0.1782176450
+UniRef50_UPI0004730E83: hypothetical protein, partial	0.1782031480
+UniRef50_UPI0004730E83: hypothetical protein, partial|unclassified	0.1782031480
+UniRef50_L2Z7T0	0.1781947375
+UniRef50_L2Z7T0|unclassified	0.1781947375
+UniRef50_Q5WEG9: Dephospho-CoA kinase	0.1781925217
+UniRef50_Q5WEG9: Dephospho-CoA kinase|unclassified	0.1781925217
+UniRef50_G2Z8U2	0.1781803701
+UniRef50_G2Z8U2|unclassified	0.1781803701
+UniRef50_W6KFD1	0.1781664024
+UniRef50_W6KFD1|unclassified	0.1781664024
+UniRef50_UPI0003750432: hypothetical protein, partial	0.1781469761
+UniRef50_UPI0003750432: hypothetical protein, partial|unclassified	0.1781469761
+UniRef50_UPI0003B7973B: camphor resistance protein CrcB	0.1781436633
+UniRef50_UPI0003B7973B: camphor resistance protein CrcB|unclassified	0.1781436633
+UniRef50_UPI000328B62B: PREDICTED: formin-like protein 5-like	0.1781371424
+UniRef50_UPI000328B62B: PREDICTED: formin-like protein 5-like|unclassified	0.1781371424
+UniRef50_A9M8W7: Phosphatidylserine decarboxylase proenzyme	0.1781346178
+UniRef50_A9M8W7: Phosphatidylserine decarboxylase proenzyme|unclassified	0.1781346178
+UniRef50_W6MC79	0.1781316669
+UniRef50_W6MC79|unclassified	0.1781316669
+UniRef50_Q71IG3: N-acetyl glucosamine catabolic protein (Fragment)	0.1781201194
+UniRef50_Q71IG3: N-acetyl glucosamine catabolic protein (Fragment)|unclassified	0.1781201194
+UniRef50_UPI0003B64521: hypothetical protein	0.1780993264
+UniRef50_UPI0003B64521: hypothetical protein|unclassified	0.1780993264
+UniRef50_UPI0003B540C8: aspartate racemase	0.1780844026
+UniRef50_UPI0003B540C8: aspartate racemase|unclassified	0.1780844026
+UniRef50_K0PRJ7	0.1780832002
+UniRef50_K0PRJ7|unclassified	0.1780832002
+UniRef50_UPI000329D11A: PREDICTED: L-lactate dehydrogenase [cytochrome]-like	0.1780795663
+UniRef50_UPI000329D11A: PREDICTED: L-lactate dehydrogenase [cytochrome]-like|unclassified	0.1780795663
+UniRef50_UPI00035C43D8: hypothetical protein	0.1780739007
+UniRef50_UPI00035C43D8: hypothetical protein|unclassified	0.1780739007
+UniRef50_U5QMU6: FHA domain-containing protein	0.1780664926
+UniRef50_U5QMU6: FHA domain-containing protein|unclassified	0.1780664926
+UniRef50_UPI0003B6DAAE: potassium transporter TrkA	0.1780625407
+UniRef50_UPI0003B6DAAE: potassium transporter TrkA|unclassified	0.1780625407
+UniRef50_UPI000225ABB3: Glycine cleavage system T protein	0.1780536453
+UniRef50_UPI000225ABB3: Glycine cleavage system T protein|unclassified	0.1780536453
+UniRef50_B7S2H4: Pyridoxal-phosphate dependent enzyme superfamily protein	0.1780336421
+UniRef50_B7S2H4: Pyridoxal-phosphate dependent enzyme superfamily protein|unclassified	0.1780336421
+UniRef50_UPI000470FDAA: hypothetical protein	0.1780334807
+UniRef50_UPI000470FDAA: hypothetical protein|unclassified	0.1780334807
+UniRef50_Q8YPE1: Acetyl-coenzyme A synthetase	0.1780319723
+UniRef50_Q8YPE1: Acetyl-coenzyme A synthetase|unclassified	0.1780319723
+UniRef50_D0CPE7	0.1780316381
+UniRef50_D0CPE7|unclassified	0.1780316381
+UniRef50_P94428: Succinate-semialdehyde dehydrogenase [NADP(+)]	0.1780230384
+UniRef50_P94428: Succinate-semialdehyde dehydrogenase [NADP(+)]|unclassified	0.1780230384
+UniRef50_UPI0003B44F9E: riboflavin synthase subunit alpha	0.1780215836
+UniRef50_UPI0003B44F9E: riboflavin synthase subunit alpha|unclassified	0.1780215836
+UniRef50_UPI00047623D5: hypothetical protein	0.1780061680
+UniRef50_UPI00047623D5: hypothetical protein|unclassified	0.1780061680
+UniRef50_A0A011NGP1	0.1779948781
+UniRef50_A0A011NGP1|unclassified	0.1779948781
+UniRef50_UPI000194D0F2: PREDICTED: interleukin-1 receptor-associated kinase-like 2-like	0.1779925041
+UniRef50_UPI000194D0F2: PREDICTED: interleukin-1 receptor-associated kinase-like 2-like|unclassified	0.1779925041
+UniRef50_UPI0003B71047: ArsR family transcriptional regulator	0.1779764604
+UniRef50_UPI0003B71047: ArsR family transcriptional regulator|unclassified	0.1779764604
+UniRef50_V1H7R1	0.1779756568
+UniRef50_V1H7R1|unclassified	0.1779756568
+UniRef50_Q7NZP2: Sigma-B regulator protein	0.1779508809
+UniRef50_Q7NZP2: Sigma-B regulator protein|unclassified	0.1779508809
+UniRef50_UPI00037C3443: hypothetical protein	0.1779400814
+UniRef50_UPI00037C3443: hypothetical protein|unclassified	0.1779400814
+UniRef50_UPI000475A4FE: hypothetical protein	0.1779385082
+UniRef50_UPI000475A4FE: hypothetical protein|unclassified	0.1779385082
+UniRef50_UPI000300C9AC: heme ABC transporter ATP-binding protein	0.1779227217
+UniRef50_UPI000300C9AC: heme ABC transporter ATP-binding protein|unclassified	0.1779227217
+UniRef50_UPI0003B43FF0: biopolymer transporter ExbD	0.1779106059
+UniRef50_UPI0003B43FF0: biopolymer transporter ExbD|unclassified	0.1779106059
+UniRef50_UPI00037914E8: hypothetical protein	0.1779074430
+UniRef50_UPI00037914E8: hypothetical protein|unclassified	0.1779074430
+UniRef50_F2A4Q4	0.1778991306
+UniRef50_F2A4Q4|unclassified	0.1778991306
+UniRef50_UPI0003B7607C: 50S ribosomal protein L13	0.1778830144
+UniRef50_UPI0003B7607C: 50S ribosomal protein L13|unclassified	0.1778830144
+UniRef50_UPI0003B5A12D: FAD-dependent oxidoreductase	0.1778727950
+UniRef50_UPI0003B5A12D: FAD-dependent oxidoreductase|unclassified	0.1778727950
+UniRef50_F3R0E6: Cobalt transport protein	0.1778695956
+UniRef50_F3R0E6: Cobalt transport protein|unclassified	0.1778695956
+UniRef50_P51995: NAD(P) transhydrogenase subunit alpha part 2	0.1778430473
+UniRef50_P51995: NAD(P) transhydrogenase subunit alpha part 2|unclassified	0.1778430473
+UniRef50_UPI0004416931: hypothetical protein PUNSTDRAFT_43263	0.1778352077
+UniRef50_UPI0004416931: hypothetical protein PUNSTDRAFT_43263|unclassified	0.1778352077
+UniRef50_UPI000364F8BD: hypothetical protein	0.1778131087
+UniRef50_UPI000364F8BD: hypothetical protein|unclassified	0.1778131087
+UniRef50_A7HR41: Usg family protein	0.1778030058
+UniRef50_A7HR41: Usg family protein|unclassified	0.1778030058
+UniRef50_UPI000368182E: hypothetical protein	0.1777953586
+UniRef50_UPI000368182E: hypothetical protein|unclassified	0.1777953586
+UniRef50_UPI0003702A80: hypothetical protein	0.1777676537
+UniRef50_UPI0003702A80: hypothetical protein|unclassified	0.1777676537
+UniRef50_S2QYH4: HD domain-containing protein (Fragment)	0.1777520468
+UniRef50_S2QYH4: HD domain-containing protein (Fragment)|unclassified	0.1777520468
+UniRef50_Q0H8Y1: Probable intron-encoded endonuclease aI5	0.1777322902
+UniRef50_Q0H8Y1: Probable intron-encoded endonuclease aI5|unclassified	0.1777322902
+UniRef50_Q0FZ74	0.1777317683
+UniRef50_Q0FZ74|unclassified	0.1777317683
+UniRef50_UPI000475640B: pilus assembly protein CpaF	0.1777289374
+UniRef50_UPI000475640B: pilus assembly protein CpaF|unclassified	0.1777289374
+UniRef50_I6ZGW2: Type IV pilus biogenesis/stability protein PilW	0.1777211415
+UniRef50_I6ZGW2: Type IV pilus biogenesis/stability protein PilW|unclassified	0.1777211415
+UniRef50_A0A018RQQ4	0.1777035060
+UniRef50_A0A018RQQ4|unclassified	0.1777035060
+UniRef50_UPI00047A8D49: hypothetical protein	0.1776779368
+UniRef50_UPI00047A8D49: hypothetical protein|unclassified	0.1776779368
+UniRef50_UPI000360BB74: hypothetical protein	0.1776630313
+UniRef50_UPI000360BB74: hypothetical protein|unclassified	0.1776630313
+UniRef50_A6L1E7: Thymidine kinase	0.1776553818
+UniRef50_A6L1E7: Thymidine kinase|unclassified	0.1776553818
+UniRef50_Q8ZIL5: Carbamoyl-phosphate synthase small chain	0.1776528313
+UniRef50_Q8ZIL5: Carbamoyl-phosphate synthase small chain|unclassified	0.1776528313
+UniRef50_J9P9C8	0.1776518274
+UniRef50_J9P9C8|unclassified	0.1776518274
+UniRef50_F5X488: Competence protein ComGF	0.1776435668
+UniRef50_F5X488: Competence protein ComGF|unclassified	0.1776435668
+UniRef50_UPI00047A3273: oxidoreductase	0.1776411292
+UniRef50_UPI00047A3273: oxidoreductase|unclassified	0.1776411292
+UniRef50_O07597: D-alanine aminotransferase	0.1776259253
+UniRef50_O07597: D-alanine aminotransferase|unclassified	0.1776259253
+UniRef50_UPI00027F40A7	0.1776256805
+UniRef50_UPI00027F40A7|unclassified	0.1776256805
+UniRef50_M9X3D8: ABC transporter	0.1776229968
+UniRef50_M9X3D8: ABC transporter|unclassified	0.1776229968
+UniRef50_UPI0003B6D50F: magnesium transporter	0.1776096683
+UniRef50_UPI0003B6D50F: magnesium transporter|unclassified	0.1776096683
+UniRef50_UPI0003781939: 30S ribosomal protein S2	0.1776066352
+UniRef50_UPI0003781939: 30S ribosomal protein S2|unclassified	0.1776066352
+UniRef50_C1N6D6: Predicted protein	0.1776056245
+UniRef50_C1N6D6: Predicted protein|unclassified	0.1776056245
+UniRef50_J9NYT9	0.1775982707
+UniRef50_J9NYT9|unclassified	0.1775982707
+UniRef50_UPI0003B5B58C: GTP-binding protein, partial	0.1775930842
+UniRef50_UPI0003B5B58C: GTP-binding protein, partial|unclassified	0.1775930842
+UniRef50_UPI0002C2F07F: PREDICTED: mitochondrial dimethyladenosine transferase 1-like	0.1775925536
+UniRef50_UPI0002C2F07F: PREDICTED: mitochondrial dimethyladenosine transferase 1-like|unclassified	0.1775925536
+UniRef50_UPI0003636026: hypothetical protein	0.1775882419
+UniRef50_UPI0003636026: hypothetical protein|unclassified	0.1775882419
+UniRef50_C1FHC6: Predicted protein	0.1775863934
+UniRef50_C1FHC6: Predicted protein|unclassified	0.1775863934
+UniRef50_J9YQS0	0.1775845313
+UniRef50_J9YQS0|unclassified	0.1775845313
+UniRef50_J3VSL4: Metalloendopeptidase-like membrane protein	0.1775687940
+UniRef50_J3VSL4: Metalloendopeptidase-like membrane protein|unclassified	0.1775687940
+UniRef50_Q82GT2	0.1775600386
+UniRef50_Q82GT2|unclassified	0.1775600386
+UniRef50_UPI00035E37F7: hypothetical protein	0.1775538532
+UniRef50_UPI00035E37F7: hypothetical protein|unclassified	0.1775538532
+UniRef50_UPI000273BF3C: PREDICTED: 3''''-5'''' exoribonuclease 1	0.1775315487
+UniRef50_UPI000273BF3C: PREDICTED: 3''''-5'''' exoribonuclease 1|unclassified	0.1775315487
+UniRef50_W1NKY9	0.1775307105
+UniRef50_W1NKY9|unclassified	0.1775307105
+UniRef50_Q16AF8	0.1775279606
+UniRef50_Q16AF8|unclassified	0.1775279606
+UniRef50_U0EMV0	0.1775189215
+UniRef50_U0EMV0|unclassified	0.1775189215
+UniRef50_A3K858	0.1775132253
+UniRef50_A3K858|unclassified	0.1775132253
+UniRef50_UPI00038F3ABF: Nickel transport system permease protein NikB	0.1774765750
+UniRef50_UPI00038F3ABF: Nickel transport system permease protein NikB|unclassified	0.1774765750
+UniRef50_A6V513	0.1774622893
+UniRef50_A6V513|unclassified	0.1774622893
+UniRef50_UPI0004767838: hypothetical protein	0.1774540048
+UniRef50_UPI0004767838: hypothetical protein|unclassified	0.1774540048
+UniRef50_T0ZNX6: Inner-membrane translocator (Fragment)	0.1774460182
+UniRef50_T0ZNX6: Inner-membrane translocator (Fragment)|unclassified	0.1774460182
+UniRef50_UPI00036523CE: hypothetical protein	0.1774456798
+UniRef50_UPI00036523CE: hypothetical protein|unclassified	0.1774456798
+UniRef50_Q62KH7	0.1774385654
+UniRef50_Q62KH7|unclassified	0.1774385654
+UniRef50_UPI0003623100: hypothetical protein	0.1774378334
+UniRef50_UPI0003623100: hypothetical protein|unclassified	0.1774378334
+UniRef50_K1ZY74	0.1774265895
+UniRef50_K1ZY74|unclassified	0.1774265895
+UniRef50_UPI00037C43AF: hypothetical protein	0.1774077997
+UniRef50_UPI00037C43AF: hypothetical protein|unclassified	0.1774077997
+UniRef50_UPI0002B9DCCD: hypothetical protein, partial	0.1773972133
+UniRef50_UPI0002B9DCCD: hypothetical protein, partial|unclassified	0.1773972133
+UniRef50_B6GEL4: DnaJ domain protein (Fragment)	0.1773902881
+UniRef50_B6GEL4: DnaJ domain protein (Fragment)|unclassified	0.1773902881
+UniRef50_UPI00036AE96C: hypothetical protein	0.1773869789
+UniRef50_UPI00036AE96C: hypothetical protein|unclassified	0.1773869789
+UniRef50_A0A026T9X5: IbrB domain protein (Fragment)	0.1773851057
+UniRef50_A0A026T9X5: IbrB domain protein (Fragment)|unclassified	0.1773851057
+UniRef50_UPI0002B42CAE: PREDICTED: ABC transporter B family member 25-like	0.1773835372
+UniRef50_UPI0002B42CAE: PREDICTED: ABC transporter B family member 25-like|unclassified	0.1773835372
+UniRef50_UPI00034504C5: MULTISPECIES: hypothetical protein	0.1773812683
+UniRef50_UPI00034504C5: MULTISPECIES: hypothetical protein|unclassified	0.1773812683
+UniRef50_F2LJJ8: Type VI secretion protein, EvpB/VC_A0108 family	0.1773795494
+UniRef50_F2LJJ8: Type VI secretion protein, EvpB/VC_A0108 family|unclassified	0.1773795494
+UniRef50_Q91EZ0: ORF65 similar to AcMNPV ORF79	0.1773736176
+UniRef50_Q91EZ0: ORF65 similar to AcMNPV ORF79|unclassified	0.1773736176
+UniRef50_UPI0003FACA60: hypothetical protein	0.1773691470
+UniRef50_UPI0003FACA60: hypothetical protein|unclassified	0.1773691470
+UniRef50_E0SEQ2: Conserved outer membrane protein	0.1773603139
+UniRef50_E0SEQ2: Conserved outer membrane protein|unclassified	0.1773603139
+UniRef50_UPI0003D0EE6E: PREDICTED: zinc finger protein 316-like	0.1773530471
+UniRef50_UPI0003D0EE6E: PREDICTED: zinc finger protein 316-like|unclassified	0.1773530471
+UniRef50_UPI000367449E: integrase	0.1773477251
+UniRef50_UPI000367449E: integrase|unclassified	0.1773477251
+UniRef50_Q09BZ8	0.1773385780
+UniRef50_Q09BZ8|unclassified	0.1773385780
+UniRef50_Q1QRB2: Phage portal protein, HK97	0.1773341519
+UniRef50_Q1QRB2: Phage portal protein, HK97|unclassified	0.1773341519
+UniRef50_UPI0003449C87: hypothetical protein	0.1773105389
+UniRef50_UPI0003449C87: hypothetical protein|unclassified	0.1773105389
+UniRef50_UPI000350E40B	0.1773082608
+UniRef50_UPI000350E40B|unclassified	0.1773082608
+UniRef50_UPI000219440C: amino acid transporter	0.1772953866
+UniRef50_UPI000219440C: amino acid transporter|unclassified	0.1772953866
+UniRef50_UPI000308B01A: hypothetical protein	0.1772734296
+UniRef50_UPI000308B01A: hypothetical protein|unclassified	0.1772734296
+UniRef50_X1E4N0: Marine sediment metagenome DNA, contig: S03H2_C02380 (Fragment)	0.1772700989
+UniRef50_X1E4N0: Marine sediment metagenome DNA, contig: S03H2_C02380 (Fragment)|unclassified	0.1772700989
+UniRef50_R1EK52	0.1772655055
+UniRef50_R1EK52|unclassified	0.1772655055
+UniRef50_H3NW92: GMP synthase family protein	0.1772630500
+UniRef50_H3NW92: GMP synthase family protein|unclassified	0.1772630500
+UniRef50_S9QNA3	0.1772599332
+UniRef50_S9QNA3|unclassified	0.1772599332
+UniRef50_UPI00035E54FD: hypothetical protein	0.1772576158
+UniRef50_UPI00035E54FD: hypothetical protein|unclassified	0.1772576158
+UniRef50_S3ZSK2	0.1772481004
+UniRef50_S3ZSK2|unclassified	0.1772481004
+UniRef50_UPI0003B59C0B: dihydroorotase	0.1772462295
+UniRef50_UPI0003B59C0B: dihydroorotase|unclassified	0.1772462295
+UniRef50_W5NDV8	0.1772118210
+UniRef50_W5NDV8|unclassified	0.1772118210
+UniRef50_UPI0003B595B1: hypothetical protein	0.1772094316
+UniRef50_UPI0003B595B1: hypothetical protein|unclassified	0.1772094316
+UniRef50_E8W378: Transglycosylase-associated protein	0.1772015311
+UniRef50_E8W378: Transglycosylase-associated protein|unclassified	0.1772015311
+UniRef50_J7QU41: SOUL heme-binding protein	0.1771949211
+UniRef50_J7QU41: SOUL heme-binding protein|unclassified	0.1771949211
+UniRef50_Q5L8Z8: Malate dehydrogenase	0.1771857007
+UniRef50_Q5L8Z8: Malate dehydrogenase|unclassified	0.1771857007
+UniRef50_K0PIK9: Transposase	0.1771849447
+UniRef50_K0PIK9: Transposase|unclassified	0.1771849447
+UniRef50_UPI0003B3A68D: membrane protein	0.1771611514
+UniRef50_UPI0003B3A68D: membrane protein|unclassified	0.1771611514
+UniRef50_C4IYT1	0.1771512802
+UniRef50_C4IYT1|unclassified	0.1771512802
+UniRef50_UPI0003743EE1: hypothetical protein	0.1771477940
+UniRef50_UPI0003743EE1: hypothetical protein|unclassified	0.1771477940
+UniRef50_Q6MZ12: Methylocystis strain SC2 clone, complete sequence	0.1771218168
+UniRef50_Q6MZ12: Methylocystis strain SC2 clone, complete sequence|unclassified	0.1771218168
+UniRef50_H8GXK1: Coenzyme F390 synthetase FtsA	0.1771186476
+UniRef50_H8GXK1: Coenzyme F390 synthetase FtsA|unclassified	0.1771186476
+UniRef50_W1F3Z8	0.1771117331
+UniRef50_W1F3Z8|unclassified	0.1771117331
+UniRef50_UPI0002896BA9: transcriptional regulator	0.1771071503
+UniRef50_UPI0002896BA9: transcriptional regulator|unclassified	0.1771071503
+UniRef50_Q0RRW7: NADH-quinone oxidoreductase subunit B	0.1770880297
+UniRef50_Q0RRW7: NADH-quinone oxidoreductase subunit B|unclassified	0.1770880297
+UniRef50_C5QYB1: KxYKxGKxW signal domain protein (Fragment)	0.1770804293
+UniRef50_C5QYB1: KxYKxGKxW signal domain protein (Fragment)|unclassified	0.1770804293
+UniRef50_UPI000463775C: hypothetical protein	0.1770789756
+UniRef50_UPI000463775C: hypothetical protein|unclassified	0.1770789756
+UniRef50_UPI0003618A83: hypothetical protein	0.1770778540
+UniRef50_UPI0003618A83: hypothetical protein|unclassified	0.1770778540
+UniRef50_A0A011PB48	0.1770625836
+UniRef50_A0A011PB48|unclassified	0.1770625836
+UniRef50_C1CEF7: Mobile genetic element	0.1770618547
+UniRef50_C1CEF7: Mobile genetic element|unclassified	0.1770618547
+UniRef50_UPI00036F770E: hypothetical protein	0.1770584208
+UniRef50_UPI00036F770E: hypothetical protein|unclassified	0.1770584208
+UniRef50_I4N1L8	0.1770358082
+UniRef50_I4N1L8|unclassified	0.1770358082
+UniRef50_W1UZN3	0.1770224819
+UniRef50_W1UZN3|unclassified	0.1770224819
+UniRef50_UPI00036A8298: hypothetical protein	0.1770166491
+UniRef50_UPI00036A8298: hypothetical protein|unclassified	0.1770166491
+UniRef50_F7Y8L2	0.1769928009
+UniRef50_F7Y8L2|unclassified	0.1769928009
+UniRef50_UPI000478777B: adenosine deaminase	0.1769796662
+UniRef50_UPI000478777B: adenosine deaminase|unclassified	0.1769796662
+UniRef50_W8TZV3	0.1769684260
+UniRef50_W8TZV3|unclassified	0.1769684260
+UniRef50_Q5M0P7: Bifunctional protein FolD	0.1769662905
+UniRef50_Q5M0P7: Bifunctional protein FolD|unclassified	0.1769662905
+UniRef50_UPI0003955356: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase	0.1769466576
+UniRef50_UPI0003955356: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase|unclassified	0.1769466576
+UniRef50_UPI0003B3C2F9: alpha-amylase	0.1769435457
+UniRef50_UPI0003B3C2F9: alpha-amylase|unclassified	0.1769435457
+UniRef50_UPI0003711D48: hypothetical protein	0.1769174993
+UniRef50_UPI0003711D48: hypothetical protein|unclassified	0.1769174993
+UniRef50_UPI00041E685D: hypothetical protein	0.1769172403
+UniRef50_UPI00041E685D: hypothetical protein|unclassified	0.1769172403
+UniRef50_A8LHV9	0.1769062790
+UniRef50_A8LHV9|unclassified	0.1769062790
+UniRef50_UPI00047DAAEF: pyruvate kinase	0.1768955716
+UniRef50_UPI00047DAAEF: pyruvate kinase|unclassified	0.1768955716
+UniRef50_J6CZV2	0.1768922894
+UniRef50_J6CZV2|unclassified	0.1768922894
+UniRef50_S5E625	0.1768911125
+UniRef50_S5E625|unclassified	0.1768911125
+UniRef50_W5XAY0: SsrA-binding protein	0.1768902833
+UniRef50_W5XAY0: SsrA-binding protein|unclassified	0.1768902833
+UniRef50_UPI00037E2E44: hypothetical protein	0.1768835236
+UniRef50_UPI00037E2E44: hypothetical protein|unclassified	0.1768835236
+UniRef50_UPI00036A2ED5: 50S ribosomal protein L22	0.1768818334
+UniRef50_UPI00036A2ED5: 50S ribosomal protein L22|unclassified	0.1768818334
+UniRef50_UPI0001FFEB4F: putative monooxygenase	0.1768670102
+UniRef50_UPI0001FFEB4F: putative monooxygenase|unclassified	0.1768670102
+UniRef50_UPI00037CB0E7: hypothetical protein	0.1768649573
+UniRef50_UPI00037CB0E7: hypothetical protein|unclassified	0.1768649573
+UniRef50_W6KAJ6: BRO family, N-terminal domain protein. Phage-related DNA binding protein	0.1768532069
+UniRef50_W6KAJ6: BRO family, N-terminal domain protein. Phage-related DNA binding protein|unclassified	0.1768532069
+UniRef50_UPI0003B589A1: cell wall hydrolase	0.1768413110
+UniRef50_UPI0003B589A1: cell wall hydrolase|unclassified	0.1768413110
+UniRef50_K8AF48: Phage tail sheath monomer	0.1768039651
+UniRef50_K8AF48: Phage tail sheath monomer|unclassified	0.1768039651
+UniRef50_UPI0004655B4D: chemotaxis protein CheY	0.1767926982
+UniRef50_UPI0004655B4D: chemotaxis protein CheY|unclassified	0.1767926982
+UniRef50_UPI000374A3CD: hypothetical protein	0.1767875617
+UniRef50_UPI000374A3CD: hypothetical protein|unclassified	0.1767875617
+UniRef50_A0A011QS82: Chemotaxis protein methyltransferase	0.1767722632
+UniRef50_A0A011QS82: Chemotaxis protein methyltransferase|unclassified	0.1767722632
+UniRef50_UPI00036E03E7: hypothetical protein	0.1767695860
+UniRef50_UPI00036E03E7: hypothetical protein|unclassified	0.1767695860
+UniRef50_R9CAH0: Cobalt transporter	0.1767691027
+UniRef50_R9CAH0: Cobalt transporter|unclassified	0.1767691027
+UniRef50_A7FFL7: Protein NrdI	0.1767657982
+UniRef50_A7FFL7: Protein NrdI|unclassified	0.1767657982
+UniRef50_F3FWR5: Potassium-transporting ATPase subunit B (Fragment)	0.1767530927
+UniRef50_F3FWR5: Potassium-transporting ATPase subunit B (Fragment)|unclassified	0.1767530927
+UniRef50_UPI00046848B4: hypothetical protein	0.1767419282
+UniRef50_UPI00046848B4: hypothetical protein|unclassified	0.1767419282
+UniRef50_D2NR17: Transcriptional regulator	0.1767391826
+UniRef50_D2NR17: Transcriptional regulator|unclassified	0.1767391826
+UniRef50_M4TUX6: Outer membrane lipoprotein YidQ	0.1767304480
+UniRef50_M4TUX6: Outer membrane lipoprotein YidQ|unclassified	0.1767304480
+UniRef50_Q88ED7	0.1767136969
+UniRef50_Q88ED7|unclassified	0.1767136969
+UniRef50_R7TUW4	0.1767079598
+UniRef50_R7TUW4|unclassified	0.1767079598
+UniRef50_B7HXK9: ThiJ/pfpI family protein	0.1766977755
+UniRef50_B7HXK9: ThiJ/pfpI family protein|unclassified	0.1766977755
+UniRef50_UPI000467665A: hypothetical protein	0.1766950792
+UniRef50_UPI000467665A: hypothetical protein|unclassified	0.1766950792
+UniRef50_V5PPY8: NIPSNAP family containing protein	0.1766886845
+UniRef50_V5PPY8: NIPSNAP family containing protein|unclassified	0.1766886845
+UniRef50_Q54UT1	0.1766886043
+UniRef50_Q54UT1|unclassified	0.1766886043
+UniRef50_UPI0002E9E64B: dihydrofolate reductase	0.1766543763
+UniRef50_UPI0002E9E64B: dihydrofolate reductase|unclassified	0.1766543763
+UniRef50_UPI00047D3DBB: hypothetical protein	0.1766446732
+UniRef50_UPI00047D3DBB: hypothetical protein|unclassified	0.1766446732
+UniRef50_W2CJ91	0.1766422891
+UniRef50_W2CJ91|unclassified	0.1766422891
+UniRef50_UPI0003632A72: hypothetical protein	0.1766344275
+UniRef50_UPI0003632A72: hypothetical protein|unclassified	0.1766344275
+UniRef50_UPI00029A2835: HAD superfamily hydrolase, partial	0.1766325060
+UniRef50_UPI00029A2835: HAD superfamily hydrolase, partial|unclassified	0.1766325060
+UniRef50_U4V654	0.1766264265
+UniRef50_U4V654|unclassified	0.1766264265
+UniRef50_Q1H276: UPF0125 protein Mfla_1143	0.1766235383
+UniRef50_Q1H276: UPF0125 protein Mfla_1143|unclassified	0.1766235383
+UniRef50_V9VUC0	0.1766218807
+UniRef50_V9VUC0|unclassified	0.1766218807
+UniRef50_UPI00046AD89E: hypothetical protein	0.1766018919
+UniRef50_UPI00046AD89E: hypothetical protein|unclassified	0.1766018919
+UniRef50_UPI00024917F8: transcriptional regulator	0.1765951095
+UniRef50_UPI00024917F8: transcriptional regulator|unclassified	0.1765951095
+UniRef50_V9UJE4	0.1765835438
+UniRef50_V9UJE4|unclassified	0.1765835438
+UniRef50_UPI00047B8AE5: acetylornithine aminotransferase	0.1765827590
+UniRef50_UPI00047B8AE5: acetylornithine aminotransferase|unclassified	0.1765827590
+UniRef50_A5CX20: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.1765819037
+UniRef50_A5CX20: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.1765819037
+UniRef50_A1S3X2	0.1765812020
+UniRef50_A1S3X2|unclassified	0.1765812020
+UniRef50_Z5XCN9	0.1765805970
+UniRef50_Z5XCN9|unclassified	0.1765805970
+UniRef50_UPI0004757BB8: C4-dicarboxylate ABC transporter substrate-binding protein, partial	0.1765770651
+UniRef50_UPI0004757BB8: C4-dicarboxylate ABC transporter substrate-binding protein, partial|unclassified	0.1765770651
+UniRef50_X7UI62: PPE family protein	0.1765716143
+UniRef50_X7UI62: PPE family protein|unclassified	0.1765716143
+UniRef50_B6AXL4	0.1765650242
+UniRef50_B6AXL4|unclassified	0.1765650242
+UniRef50_UPI0003745D8E: hypothetical protein	0.1765639916
+UniRef50_UPI0003745D8E: hypothetical protein|unclassified	0.1765639916
+UniRef50_Q3JUH4	0.1765450477
+UniRef50_Q3JUH4|unclassified	0.1765450477
+UniRef50_UPI0004715BAF: hypothetical protein	0.1765376159
+UniRef50_UPI0004715BAF: hypothetical protein|unclassified	0.1765376159
+UniRef50_X0XY46: Marine sediment metagenome DNA, contig: S01H1_S33010	0.1765340907
+UniRef50_X0XY46: Marine sediment metagenome DNA, contig: S01H1_S33010|unclassified	0.1765340907
+UniRef50_UPI0003739549: hypothetical protein	0.1765211614
+UniRef50_UPI0003739549: hypothetical protein|unclassified	0.1765211614
+UniRef50_M4TT34: Glycine cleavage system transcriptional repressor	0.1765163917
+UniRef50_M4TT34: Glycine cleavage system transcriptional repressor|unclassified	0.1765163917
+UniRef50_B7RQ96: Protein-export membrane protein SecD	0.1765055885
+UniRef50_B7RQ96: Protein-export membrane protein SecD|unclassified	0.1765055885
+UniRef50_F8CGQ9	0.1764979989
+UniRef50_F8CGQ9|unclassified	0.1764979989
+UniRef50_Q4VRV8: Inosine-5'-monophosphate dehydrogenase	0.1764833151
+UniRef50_Q4VRV8: Inosine-5'-monophosphate dehydrogenase|unclassified	0.1764833151
+UniRef50_UPI00036EC8AD: hypothetical protein	0.1764689255
+UniRef50_UPI00036EC8AD: hypothetical protein|unclassified	0.1764689255
+UniRef50_A7NR36: DNA-directed RNA polymerase subunit alpha	0.1764521475
+UniRef50_A7NR36: DNA-directed RNA polymerase subunit alpha|unclassified	0.1764521475
+UniRef50_UPI00046ABB70: hypothetical protein	0.1764459082
+UniRef50_UPI00046ABB70: hypothetical protein|unclassified	0.1764459082
+UniRef50_R2QYL5	0.1764375353
+UniRef50_R2QYL5|unclassified	0.1764375353
+UniRef50_UPI00034B714A: hypothetical protein	0.1764040702
+UniRef50_UPI00034B714A: hypothetical protein|unclassified	0.1764040702
+UniRef50_R7G7D8: Carbamoyl-phosphate synthase small chain	0.1763632801
+UniRef50_R7G7D8: Carbamoyl-phosphate synthase small chain|unclassified	0.1763632801
+UniRef50_Q1LHJ9: Ribosomal RNA small subunit methyltransferase G	0.1763589004
+UniRef50_Q1LHJ9: Ribosomal RNA small subunit methyltransferase G|unclassified	0.1763589004
+UniRef50_C0R175: 4-hydroxy-tetrahydrodipicolinate reductase	0.1763366093
+UniRef50_C0R175: 4-hydroxy-tetrahydrodipicolinate reductase|unclassified	0.1763366093
+UniRef50_E1I411	0.1763316002
+UniRef50_E1I411|unclassified	0.1763316002
+UniRef50_UPI00034B0D3D: hypothetical protein	0.1763198195
+UniRef50_UPI00034B0D3D: hypothetical protein|unclassified	0.1763198195
+UniRef50_M5J6F3	0.1763148467
+UniRef50_M5J6F3|unclassified	0.1763148467
+UniRef50_UPI00039B5846: hypothetical protein	0.1763099911
+UniRef50_UPI00039B5846: hypothetical protein|unclassified	0.1763099911
+UniRef50_Q2T8Y5: Chemotaxis response regulator protein-glutamate methylesterase 3	0.1763087235
+UniRef50_Q2T8Y5: Chemotaxis response regulator protein-glutamate methylesterase 3|unclassified	0.1763087235
+UniRef50_Q9L730: SanE	0.1762964625
+UniRef50_Q9L730: SanE|unclassified	0.1762964625
+UniRef50_A6SV19: Glycine--tRNA ligase alpha subunit	0.1762939728
+UniRef50_A6SV19: Glycine--tRNA ligase alpha subunit|unclassified	0.1762939728
+UniRef50_UPI00046F49D4: hypothetical protein	0.1762687288
+UniRef50_UPI00046F49D4: hypothetical protein|unclassified	0.1762687288
+UniRef50_Y5NMP1: Glyoxalase	0.1762400231
+UniRef50_Y5NMP1: Glyoxalase|unclassified	0.1762400231
+UniRef50_S6SYH6: Lipoprotein (Fragment)	0.1762133676
+UniRef50_S6SYH6: Lipoprotein (Fragment)|unclassified	0.1762133676
+UniRef50_UPI000237A07B: hypothetical protein	0.1761913458
+UniRef50_UPI000237A07B: hypothetical protein|unclassified	0.1761913458
+UniRef50_Q47GV2: Phosphopantetheine-binding protein	0.1761763490
+UniRef50_Q47GV2: Phosphopantetheine-binding protein|unclassified	0.1761763490
+UniRef50_P38025: Phosphoribosylaminoimidazole-succinocarboxamide synthase, chloroplastic	0.1761695388
+UniRef50_P38025: Phosphoribosylaminoimidazole-succinocarboxamide synthase, chloroplastic|unclassified	0.1761695388
+UniRef50_UPI000473EAD9: hypothetical protein, partial	0.1761621131
+UniRef50_UPI000473EAD9: hypothetical protein, partial|unclassified	0.1761621131
+UniRef50_UPI000476C792: membrane protein	0.1761477534
+UniRef50_UPI000476C792: membrane protein|unclassified	0.1761477534
+UniRef50_L6T5N5: CRISPR-associated helicase Cas3 (Fragment)	0.1761439053
+UniRef50_L6T5N5: CRISPR-associated helicase Cas3 (Fragment)|unclassified	0.1761439053
+UniRef50_R5G2K8	0.1761404871
+UniRef50_R5G2K8|unclassified	0.1761404871
+UniRef50_UPI00040EE52B: hypothetical protein	0.1760824333
+UniRef50_UPI00040EE52B: hypothetical protein|unclassified	0.1760824333
+UniRef50_UPI000475C23A: xylulose kinase	0.1760780992
+UniRef50_UPI000475C23A: xylulose kinase|unclassified	0.1760780992
+UniRef50_UPI00035FFE38: chloramphenicol acetyltransferase	0.1760747378
+UniRef50_UPI00035FFE38: chloramphenicol acetyltransferase|unclassified	0.1760747378
+UniRef50_S9S7B6	0.1760745169
+UniRef50_S9S7B6|unclassified	0.1760745169
+UniRef50_O04916: Aconitate hydratase, cytoplasmic (Fragment)	0.1760607093
+UniRef50_O04916: Aconitate hydratase, cytoplasmic (Fragment)|unclassified	0.1760607093
+UniRef50_W2E6P8: Phage-related protein	0.1760596363
+UniRef50_W2E6P8: Phage-related protein|unclassified	0.1760596363
+UniRef50_UPI0003290178: PREDICTED: probable palmitoyltransferase ZDHHC23	0.1760579977
+UniRef50_UPI0003290178: PREDICTED: probable palmitoyltransferase ZDHHC23|unclassified	0.1760579977
+UniRef50_UPI00026CD0CC: pilus biogenesis protein	0.1760524747
+UniRef50_UPI00026CD0CC: pilus biogenesis protein|unclassified	0.1760524747
+UniRef50_I9KFS6	0.1760168486
+UniRef50_I9KFS6|unclassified	0.1760168486
+UniRef50_UPI0004416304: hypothetical protein PUNSTDRAFT_44496	0.1760146127
+UniRef50_UPI0004416304: hypothetical protein PUNSTDRAFT_44496|unclassified	0.1760146127
+UniRef50_UPI00037405C1: hypothetical protein	0.1760087273
+UniRef50_UPI00037405C1: hypothetical protein|unclassified	0.1760087273
+UniRef50_UPI00021A5DF1: PREDICTED: carbamoyl-phosphate synthase large chain-like, partial	0.1760031895
+UniRef50_UPI00021A5DF1: PREDICTED: carbamoyl-phosphate synthase large chain-like, partial|unclassified	0.1760031895
+UniRef50_UPI00035DA6A9: hypothetical protein	0.1759762129
+UniRef50_UPI00035DA6A9: hypothetical protein|unclassified	0.1759762129
+UniRef50_T1H9I8	0.1759756569
+UniRef50_T1H9I8|unclassified	0.1759756569
+UniRef50_UPI0003B62F85: damage-inducible protein CinA	0.1759645139
+UniRef50_UPI0003B62F85: damage-inducible protein CinA|unclassified	0.1759645139
+UniRef50_Q8G7I0: Ribonuclease PH	0.1759525178
+UniRef50_Q8G7I0: Ribonuclease PH|unclassified	0.1759525178
+UniRef50_A6VY43: Tripartite ATP-independent periplasmic transporter DctQ component	0.1759489603
+UniRef50_A6VY43: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.1759489603
+UniRef50_UPI0002B4D965: PREDICTED: LOW QUALITY PROTEIN: ribonuclease ZC3H12A	0.1759466924
+UniRef50_UPI0002B4D965: PREDICTED: LOW QUALITY PROTEIN: ribonuclease ZC3H12A|unclassified	0.1759466924
+UniRef50_UPI0003D01AE8: putative formate transporter 1	0.1759372075
+UniRef50_UPI0003D01AE8: putative formate transporter 1|unclassified	0.1759372075
+UniRef50_A6TWL0: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.1759308431
+UniRef50_A6TWL0: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.1759308431
+UniRef50_Q9SPK5: Formate--tetrahydrofolate ligase	0.1758979368
+UniRef50_Q9SPK5: Formate--tetrahydrofolate ligase|unclassified	0.1758979368
+UniRef50_UPI000262679B: KpsF/GutQ family protein	0.1758967751
+UniRef50_UPI000262679B: KpsF/GutQ family protein|unclassified	0.1758967751
+UniRef50_Q0AYL3: Chemotaxis response regulator protein-glutamate methylesterase 1	0.1758847946
+UniRef50_Q0AYL3: Chemotaxis response regulator protein-glutamate methylesterase 1|unclassified	0.1758847946
+UniRef50_L2J8X8	0.1758835194
+UniRef50_L2J8X8|unclassified	0.1758835194
+UniRef50_X1BUI6: Marine sediment metagenome DNA, contig: S01H4_S04915	0.1758717950
+UniRef50_X1BUI6: Marine sediment metagenome DNA, contig: S01H4_S04915|unclassified	0.1758717950
+UniRef50_W8ZDB9	0.1758711050
+UniRef50_W8ZDB9|unclassified	0.1758711050
+UniRef50_A3S0Z7: NAD(FAD)-utilizing dehydrogenases	0.1758665364
+UniRef50_A3S0Z7: NAD(FAD)-utilizing dehydrogenases|unclassified	0.1758665364
+UniRef50_F7RVC2	0.1758523739
+UniRef50_F7RVC2|unclassified	0.1758523739
+UniRef50_B9K422: Transposase	0.1758369937
+UniRef50_B9K422: Transposase|unclassified	0.1758369937
+UniRef50_P46245: Phospho-2-dehydro-3-deoxyheptonate aldolase, Trp-sensitive	0.1758292298
+UniRef50_P46245: Phospho-2-dehydro-3-deoxyheptonate aldolase, Trp-sensitive|unclassified	0.1758292298
+UniRef50_UPI0003198A97: hypothetical protein	0.1758279466
+UniRef50_UPI0003198A97: hypothetical protein|unclassified	0.1758279466
+UniRef50_B8H627: Ribonuclease 3	0.1758176335
+UniRef50_B8H627: Ribonuclease 3|unclassified	0.1758176335
+UniRef50_D8S7Q1	0.1758109178
+UniRef50_D8S7Q1|unclassified	0.1758109178
+UniRef50_A8JAG0: Predicted protein	0.1758087201
+UniRef50_A8JAG0: Predicted protein|unclassified	0.1758087201
+UniRef50_E1ZEP2: Expressed protein	0.1758087201
+UniRef50_E1ZEP2: Expressed protein|unclassified	0.1758087201
+UniRef50_K2K7W6	0.1758048784
+UniRef50_K2K7W6|unclassified	0.1758048784
+UniRef50_F3KEQ3	0.1758012758
+UniRef50_F3KEQ3|unclassified	0.1758012758
+UniRef50_UPI0004193325: hypothetical protein	0.1757922523
+UniRef50_UPI0004193325: hypothetical protein|unclassified	0.1757922523
+UniRef50_Q12K67	0.1757871733
+UniRef50_Q12K67|unclassified	0.1757871733
+UniRef50_L0A7Q9: TRAP-type C4-dicarboxylate transport system, small permease component	0.1757829943
+UniRef50_L0A7Q9: TRAP-type C4-dicarboxylate transport system, small permease component|unclassified	0.1757829943
+UniRef50_UPI00039FC08C: acylphosphatase	0.1757667971
+UniRef50_UPI00039FC08C: acylphosphatase|unclassified	0.1757667971
+UniRef50_UPI000255C1EB: DNA-3-methyladenine glycosylase I	0.1757537589
+UniRef50_UPI000255C1EB: DNA-3-methyladenine glycosylase I|unclassified	0.1757537589
+UniRef50_J9H1V0	0.1757446758
+UniRef50_J9H1V0|unclassified	0.1757446758
+UniRef50_D2U0H9	0.1757384800
+UniRef50_D2U0H9|unclassified	0.1757384800
+UniRef50_UPI00046E3F17: transcriptional regulator	0.1757374475
+UniRef50_UPI00046E3F17: transcriptional regulator|unclassified	0.1757374475
+UniRef50_UPI0003A07059: virulence factor MviN	0.1757357190
+UniRef50_UPI0003A07059: virulence factor MviN|unclassified	0.1757357190
+UniRef50_A7HWN1	0.1757212720
+UniRef50_A7HWN1|unclassified	0.1757212720
+UniRef50_Q98I87: Carbamoyl-phosphate synthase large chain	0.1757208436
+UniRef50_Q98I87: Carbamoyl-phosphate synthase large chain|unclassified	0.1757208436
+UniRef50_E3EXY1	0.1757096030
+UniRef50_E3EXY1|unclassified	0.1757096030
+UniRef50_X1PRM6: Marine sediment metagenome DNA, contig: S06H3_S20016	0.1757073918
+UniRef50_X1PRM6: Marine sediment metagenome DNA, contig: S06H3_S20016|unclassified	0.1757073918
+UniRef50_UPI000478C7E6: potassium transporter TrkA	0.1756742204
+UniRef50_UPI000478C7E6: potassium transporter TrkA|unclassified	0.1756742204
+UniRef50_R6ZDN0	0.1756579908
+UniRef50_R6ZDN0|unclassified	0.1756579908
+UniRef50_UPI00033172AA: PREDICTED: ADP-ribosylation factor-like protein 6-interacting protein 4-like, partial	0.1756538253
+UniRef50_UPI00033172AA: PREDICTED: ADP-ribosylation factor-like protein 6-interacting protein 4-like, partial|unclassified	0.1756538253
+UniRef50_UPI000472C3D3: hypothetical protein	0.1756475230
+UniRef50_UPI000472C3D3: hypothetical protein|unclassified	0.1756475230
+UniRef50_Q39FG9	0.1756391603
+UniRef50_Q39FG9|unclassified	0.1756391603
+UniRef50_UPI0004782736: lysine transporter LysE	0.1756360793
+UniRef50_UPI0004782736: lysine transporter LysE|unclassified	0.1756360793
+UniRef50_V4ZLT7	0.1756234633
+UniRef50_V4ZLT7|unclassified	0.1756234633
+UniRef50_X0W7N6: Marine sediment metagenome DNA, contig: S01H1_S18748 (Fragment)	0.1756215317
+UniRef50_X0W7N6: Marine sediment metagenome DNA, contig: S01H1_S18748 (Fragment)|unclassified	0.1756215317
+UniRef50_Q1LF95: Cupin 2, conserved barrel	0.1756123667
+UniRef50_Q1LF95: Cupin 2, conserved barrel|unclassified	0.1756123667
+UniRef50_UPI000381DABE: glycosyl transferase	0.1755854340
+UniRef50_UPI000381DABE: glycosyl transferase|unclassified	0.1755854340
+UniRef50_UPI0002D9D87B: hypothetical protein	0.1755854072
+UniRef50_UPI0002D9D87B: hypothetical protein|unclassified	0.1755854072
+UniRef50_F1VXE0: Structural constituent of cell wall	0.1755828058
+UniRef50_F1VXE0: Structural constituent of cell wall|unclassified	0.1755828058
+UniRef50_F0YB09	0.1755615153
+UniRef50_F0YB09|unclassified	0.1755615153
+UniRef50_UPI0002491333: PhoP family transcriptional regulator	0.1755606883
+UniRef50_UPI0002491333: PhoP family transcriptional regulator|unclassified	0.1755606883
+UniRef50_UPI00037F0170: hypothetical protein	0.1755545792
+UniRef50_UPI00037F0170: hypothetical protein|unclassified	0.1755545792
+UniRef50_UPI0004164110: signal peptidase IB	0.1755517333
+UniRef50_UPI0004164110: signal peptidase IB|unclassified	0.1755517333
+UniRef50_K8ELH1	0.1755462329
+UniRef50_K8ELH1|unclassified	0.1755462329
+UniRef50_UPI00036B3AAC: hypothetical protein	0.1755438210
+UniRef50_UPI00036B3AAC: hypothetical protein|unclassified	0.1755438210
+UniRef50_UPI00036DBF3D: hypothetical protein, partial	0.1755422423
+UniRef50_UPI00036DBF3D: hypothetical protein, partial|unclassified	0.1755422423
+UniRef50_E3DH63: Aldo-keto reductase family 1 member C1	0.1755415153
+UniRef50_E3DH63: Aldo-keto reductase family 1 member C1|unclassified	0.1755415153
+UniRef50_UPI0003616A00: hypothetical protein	0.1755360111
+UniRef50_UPI0003616A00: hypothetical protein|unclassified	0.1755360111
+UniRef50_G9PM07	0.1755349183
+UniRef50_G9PM07|unclassified	0.1755349183
+UniRef50_Q5CVD5	0.1755348151
+UniRef50_Q5CVD5|unclassified	0.1755348151
+UniRef50_UPI000368B7D0: hypothetical protein	0.1755267669
+UniRef50_UPI000368B7D0: hypothetical protein|unclassified	0.1755267669
+UniRef50_UPI0003AB2F70: zinc transporter	0.1755238447
+UniRef50_UPI0003AB2F70: zinc transporter|unclassified	0.1755238447
+UniRef50_UPI0002F66B6C: hypothetical protein	0.1755235431
+UniRef50_UPI0002F66B6C: hypothetical protein|unclassified	0.1755235431
+UniRef50_J9DHG0	0.1755159964
+UniRef50_J9DHG0|unclassified	0.1755159964
+UniRef50_A6TFW2: 2-aminoethylphosphonate--pyruvate transaminase	0.1755129223
+UniRef50_A6TFW2: 2-aminoethylphosphonate--pyruvate transaminase|unclassified	0.1755129223
+UniRef50_UPI0000E0FEEC: transposase	0.1755061205
+UniRef50_UPI0000E0FEEC: transposase|unclassified	0.1755061205
+UniRef50_A0A058V7Z7: Histone deacetylase family protein	0.1754809952
+UniRef50_A0A058V7Z7: Histone deacetylase family protein|unclassified	0.1754809952
+UniRef50_UPI000472C224: hypothetical protein	0.1754551854
+UniRef50_UPI000472C224: hypothetical protein|unclassified	0.1754551854
+UniRef50_D6EKY2: Integral membrane protein (Fragment)	0.1754285833
+UniRef50_D6EKY2: Integral membrane protein (Fragment)|unclassified	0.1754285833
+UniRef50_F5Y1L9: Candidate membrane protein	0.1754282835
+UniRef50_F5Y1L9: Candidate membrane protein|unclassified	0.1754282835
+UniRef50_D3ZPT0: Protein RGD1566084	0.1754137202
+UniRef50_D3ZPT0: Protein RGD1566084|unclassified	0.1754137202
+UniRef50_UPI0003687C24: hypothetical protein, partial	0.1754056582
+UniRef50_UPI0003687C24: hypothetical protein, partial|unclassified	0.1754056582
+UniRef50_UPI0002629825: monosaccharide ABC transporter ATP-binding protein	0.1753586459
+UniRef50_UPI0002629825: monosaccharide ABC transporter ATP-binding protein|unclassified	0.1753586459
+UniRef50_W9H6K8: Carbon monoxide dehydrogenase subunit G	0.1753473734
+UniRef50_W9H6K8: Carbon monoxide dehydrogenase subunit G|unclassified	0.1753473734
+UniRef50_L2I7K0	0.1753454893
+UniRef50_L2I7K0|unclassified	0.1753454893
+UniRef50_E1HGD0	0.1753413126
+UniRef50_E1HGD0|unclassified	0.1753413126
+UniRef50_UPI000237AD0D: Luciferase-like monooxygenase	0.1753175842
+UniRef50_UPI000237AD0D: Luciferase-like monooxygenase|unclassified	0.1753175842
+UniRef50_UPI000479951F: PTS glucose transporter subunit IIA	0.1752897879
+UniRef50_UPI000479951F: PTS glucose transporter subunit IIA|unclassified	0.1752897879
+UniRef50_UPI00036B3D28: hypothetical protein	0.1752854027
+UniRef50_UPI00036B3D28: hypothetical protein|unclassified	0.1752854027
+UniRef50_UPI00046D20F3: choline transporter	0.1752806229
+UniRef50_UPI00046D20F3: choline transporter|unclassified	0.1752806229
+UniRef50_A5D504: N-acetyl-gamma-glutamyl-phosphate reductase	0.1752653076
+UniRef50_A5D504: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.1752653076
+UniRef50_P22142: NADH-ubiquinone oxidoreductase 49 kDa subunit, mitochondrial	0.1752512980
+UniRef50_P22142: NADH-ubiquinone oxidoreductase 49 kDa subunit, mitochondrial|unclassified	0.1752512980
+UniRef50_A0A037Z3Z8	0.1752470413
+UniRef50_A0A037Z3Z8|unclassified	0.1752470413
+UniRef50_H7CIC3: Transposase	0.1752432975
+UniRef50_H7CIC3: Transposase|unclassified	0.1752432975
+UniRef50_P08038: Extracellular deoxyribonuclease	0.1752335841
+UniRef50_P08038: Extracellular deoxyribonuclease|unclassified	0.1752335841
+UniRef50_Q5QU71	0.1752225393
+UniRef50_Q5QU71|unclassified	0.1752225393
+UniRef50_U1GGD8	0.1752123819
+UniRef50_U1GGD8|unclassified	0.1752123819
+UniRef50_A1RCX4	0.1752034620
+UniRef50_A1RCX4|unclassified	0.1752034620
+UniRef50_UPI000360B26D: hypothetical protein	0.1751976263
+UniRef50_UPI000360B26D: hypothetical protein|unclassified	0.1751976263
+UniRef50_K2E3Q0	0.1751950285
+UniRef50_K2E3Q0|unclassified	0.1751950285
+UniRef50_UPI0002BA2677: hypothetical protein, partial	0.1751831542
+UniRef50_UPI0002BA2677: hypothetical protein, partial|unclassified	0.1751831542
+UniRef50_UPI00042517AA: coproporphyrinogen III oxidase	0.1751738701
+UniRef50_UPI00042517AA: coproporphyrinogen III oxidase|unclassified	0.1751738701
+UniRef50_P0DD00: Peptidase T	0.1751690096
+UniRef50_P0DD00: Peptidase T|unclassified	0.1751690096
+UniRef50_D2U3Z3	0.1751628998
+UniRef50_D2U3Z3|unclassified	0.1751628998
+UniRef50_Q07465: Ribonuclease	0.1751557742
+UniRef50_Q07465: Ribonuclease|unclassified	0.1751557742
+UniRef50_UPI0004775FD4: hypothetical protein	0.1751543555
+UniRef50_UPI0004775FD4: hypothetical protein|unclassified	0.1751543555
+UniRef50_E7AA65: Dipeptide transport system permease protein	0.1751500910
+UniRef50_E7AA65: Dipeptide transport system permease protein|unclassified	0.1751500910
+UniRef50_U3H3E4	0.1751459898
+UniRef50_U3H3E4|unclassified	0.1751459898
+UniRef50_A0A033UUN1	0.1751322102
+UniRef50_A0A033UUN1|unclassified	0.1751322102
+UniRef50_T1H9K4	0.1751296057
+UniRef50_T1H9K4|unclassified	0.1751296057
+UniRef50_J3DLS7	0.1751228615
+UniRef50_J3DLS7|unclassified	0.1751228615
+UniRef50_E3C7W0: Transposase, IS4 family	0.1751092539
+UniRef50_E3C7W0: Transposase, IS4 family|unclassified	0.1751092539
+UniRef50_UPI00037AD0F3: hypothetical protein	0.1750946938
+UniRef50_UPI00037AD0F3: hypothetical protein|unclassified	0.1750946938
+UniRef50_A7Z1L9: Holo-[acyl-carrier-protein] synthase	0.1750933988
+UniRef50_A7Z1L9: Holo-[acyl-carrier-protein] synthase|unclassified	0.1750933988
+UniRef50_A8FA63: Holo-[acyl-carrier-protein] synthase	0.1750933988
+UniRef50_A8FA63: Holo-[acyl-carrier-protein] synthase|unclassified	0.1750933988
+UniRef50_G5QK83: Transcription-repair coupling factor	0.1750867582
+UniRef50_G5QK83: Transcription-repair coupling factor|unclassified	0.1750867582
+UniRef50_J1YLA7	0.1750698627
+UniRef50_J1YLA7|unclassified	0.1750698627
+UniRef50_A6EWF4	0.1750595119
+UniRef50_A6EWF4|unclassified	0.1750595119
+UniRef50_UPI000362D291: hypothetical protein	0.1750591863
+UniRef50_UPI000362D291: hypothetical protein|unclassified	0.1750591863
+UniRef50_UPI00039AB780: elongation factor P	0.1750482928
+UniRef50_UPI00039AB780: elongation factor P|unclassified	0.1750482928
+UniRef50_I3CCR9: TRAP transporter solute receptor, TAXI family	0.1750223073
+UniRef50_I3CCR9: TRAP transporter solute receptor, TAXI family|unclassified	0.1750223073
+UniRef50_E3IXL7	0.1750176523
+UniRef50_E3IXL7|unclassified	0.1750176523
+UniRef50_K1V650: Acetyl/propionyl-CoA carboxylase, alpha subunit	0.1750173446
+UniRef50_K1V650: Acetyl/propionyl-CoA carboxylase, alpha subunit|unclassified	0.1750173446
+UniRef50_UPI0003632F21: hypothetical protein	0.1750119476
+UniRef50_UPI0003632F21: hypothetical protein|unclassified	0.1750119476
+UniRef50_UPI0004794A74: hypothetical protein	0.1750008974
+UniRef50_UPI0004794A74: hypothetical protein|unclassified	0.1750008974
+UniRef50_A4SPR6: 8-amino-7-oxononanoate synthase	0.1749980119
+UniRef50_A4SPR6: 8-amino-7-oxononanoate synthase|unclassified	0.1749980119
+UniRef50_P11908: Ribose-phosphate pyrophosphokinase 2	0.1749956566
+UniRef50_P11908: Ribose-phosphate pyrophosphokinase 2|unclassified	0.1749956566
+UniRef50_A3X358	0.1749857178
+UniRef50_A3X358|unclassified	0.1749857178
+UniRef50_A7I8N1: Adenine deaminase	0.1749830295
+UniRef50_A7I8N1: Adenine deaminase|unclassified	0.1749830295
+UniRef50_A4HM87: Proteophosphoglycan ppg4	0.1749776537
+UniRef50_A4HM87: Proteophosphoglycan ppg4|unclassified	0.1749776537
+UniRef50_UPI000368FB55: hypothetical protein	0.1749593117
+UniRef50_UPI000368FB55: hypothetical protein|unclassified	0.1749593117
+UniRef50_G4NXH8	0.1749573629
+UniRef50_G4NXH8|unclassified	0.1749573629
+UniRef50_C4LD03: Prolipoprotein diacylglyceryl transferase	0.1749537392
+UniRef50_C4LD03: Prolipoprotein diacylglyceryl transferase|unclassified	0.1749537392
+UniRef50_F6BRF1	0.1749445690
+UniRef50_F6BRF1|unclassified	0.1749445690
+UniRef50_Q948T6: Lactoylglutathione lyase	0.1749430571
+UniRef50_Q948T6: Lactoylglutathione lyase|unclassified	0.1749430571
+UniRef50_UPI00046638E1: ADP-ribose pyrophosphatase	0.1749316613
+UniRef50_UPI00046638E1: ADP-ribose pyrophosphatase|unclassified	0.1749316613
+UniRef50_UPI0001F859DE: oligopeptide ABC transporter-like protein	0.1749289664
+UniRef50_UPI0001F859DE: oligopeptide ABC transporter-like protein|unclassified	0.1749289664
+UniRef50_UPI000477014A: hypothetical protein	0.1749101962
+UniRef50_UPI000477014A: hypothetical protein|unclassified	0.1749101962
+UniRef50_UPI0003A57D80: hypothetical protein	0.1749073898
+UniRef50_UPI0003A57D80: hypothetical protein|unclassified	0.1749073898
+UniRef50_UPI00036C5DD6: hypothetical protein	0.1749016118
+UniRef50_UPI00036C5DD6: hypothetical protein|unclassified	0.1749016118
+UniRef50_C5X4G4	0.1748996253
+UniRef50_C5X4G4|unclassified	0.1748996253
+UniRef50_B9D5D5	0.1748816833
+UniRef50_B9D5D5|unclassified	0.1748816833
+UniRef50_UPI0003B6D344: MarR family transcriptional regulator	0.1748794350
+UniRef50_UPI0003B6D344: MarR family transcriptional regulator|unclassified	0.1748794350
+UniRef50_A9A3N5: S-methyl-5'-thioadenosine phosphorylase	0.1748724380
+UniRef50_A9A3N5: S-methyl-5'-thioadenosine phosphorylase|unclassified	0.1748724380
+UniRef50_B6VMG8	0.1748682247
+UniRef50_B6VMG8|unclassified	0.1748682247
+UniRef50_R6DP97	0.1748651839
+UniRef50_R6DP97|unclassified	0.1748651839
+UniRef50_UPI000287FF1F: Fe-S cluster assembly protein SufD	0.1748636253
+UniRef50_UPI000287FF1F: Fe-S cluster assembly protein SufD|unclassified	0.1748636253
+UniRef50_Q89A37: Mannitol-1-phosphate 5-dehydrogenase	0.1748550143
+UniRef50_Q89A37: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.1748550143
+UniRef50_B9TPJ2	0.1748471783
+UniRef50_B9TPJ2|unclassified	0.1748471783
+UniRef50_Q0BTI5: Phosphoribosyl-AMP cyclohydrolase	0.1748411292
+UniRef50_Q0BTI5: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.1748411292
+UniRef50_G5IIY2	0.1748398388
+UniRef50_G5IIY2|unclassified	0.1748398388
+UniRef50_Q2SMN3: Protein RnfH	0.1748242735
+UniRef50_Q2SMN3: Protein RnfH|unclassified	0.1748242735
+UniRef50_H2FX27	0.1748171746
+UniRef50_H2FX27|unclassified	0.1748171746
+UniRef50_C9R627	0.1748134078
+UniRef50_C9R627|unclassified	0.1748134078
+UniRef50_UPI0002889002: GTP-binding protein YsxC, partial	0.1747952848
+UniRef50_UPI0002889002: GTP-binding protein YsxC, partial|unclassified	0.1747952848
+UniRef50_UPI00036B9C36: hypothetical protein	0.1747865342
+UniRef50_UPI00036B9C36: hypothetical protein|unclassified	0.1747865342
+UniRef50_UPI0003B66C10: ABC transporter permease	0.1747842522
+UniRef50_UPI0003B66C10: ABC transporter permease|unclassified	0.1747842522
+UniRef50_UPI000369C939: hypothetical protein	0.1747841426
+UniRef50_UPI000369C939: hypothetical protein|unclassified	0.1747841426
+UniRef50_D3QF25	0.1747670643
+UniRef50_D3QF25|unclassified	0.1747670643
+UniRef50_W7SSQ1: GGDEF domain protein	0.1747598489
+UniRef50_W7SSQ1: GGDEF domain protein|unclassified	0.1747598489
+UniRef50_D2PTZ5	0.1747566869
+UniRef50_D2PTZ5|unclassified	0.1747566869
+UniRef50_E0XX45	0.1747317622
+UniRef50_E0XX45|unclassified	0.1747317622
+UniRef50_A1L2A3	0.1747250172
+UniRef50_A1L2A3|unclassified	0.1747250172
+UniRef50_F2AHF8	0.1747211342
+UniRef50_F2AHF8|unclassified	0.1747211342
+UniRef50_W5XBV2: SNO glutamine amidotransferase	0.1747030761
+UniRef50_W5XBV2: SNO glutamine amidotransferase|unclassified	0.1747030761
+UniRef50_B9JZ65	0.1747024298
+UniRef50_B9JZ65|unclassified	0.1747024298
+UniRef50_F0F1P7: LysM domain protein (Fragment)	0.1746964315
+UniRef50_F0F1P7: LysM domain protein (Fragment)|unclassified	0.1746964315
+UniRef50_UPI000471343A: hypothetical protein	0.1746949453
+UniRef50_UPI000471343A: hypothetical protein|unclassified	0.1746949453
+UniRef50_A4T3P6	0.1746847142
+UniRef50_A4T3P6|unclassified	0.1746847142
+UniRef50_UPI0003FA02C9: hypothetical protein	0.1746736237
+UniRef50_UPI0003FA02C9: hypothetical protein|unclassified	0.1746736237
+UniRef50_UPI0003B63556: acetyltransferase	0.1746733847
+UniRef50_UPI0003B63556: acetyltransferase|unclassified	0.1746733847
+UniRef50_G3Z6Q7: UPF0125 protein HMPREF1028_02272	0.1746602719
+UniRef50_G3Z6Q7: UPF0125 protein HMPREF1028_02272|unclassified	0.1746602719
+UniRef50_UPI00034AC213: hypothetical protein	0.1746564436
+UniRef50_UPI00034AC213: hypothetical protein|unclassified	0.1746564436
+UniRef50_R5UDR3: UPF0145 protein HMPREF9141_0178	0.1746371524
+UniRef50_R5UDR3: UPF0145 protein HMPREF9141_0178|unclassified	0.1746371524
+UniRef50_UPI00037A79C0: hypothetical protein	0.1745903029
+UniRef50_UPI00037A79C0: hypothetical protein|unclassified	0.1745903029
+UniRef50_A5GQQ3: Permease of the major facilitator superfamily	0.1745788925
+UniRef50_A5GQQ3: Permease of the major facilitator superfamily|unclassified	0.1745788925
+UniRef50_UPI0002555E12: dihydrofolate reductase	0.1745559768
+UniRef50_UPI0002555E12: dihydrofolate reductase|unclassified	0.1745559768
+UniRef50_U1GML6	0.1745434717
+UniRef50_U1GML6|unclassified	0.1745434717
+UniRef50_UPI000479DF45: hypothetical protein	0.1745402835
+UniRef50_UPI000479DF45: hypothetical protein|unclassified	0.1745402835
+UniRef50_B3QKL6	0.1745319093
+UniRef50_B3QKL6|unclassified	0.1745319093
+UniRef50_Q4V6C0: IP05284p (Fragment)	0.1745310720
+UniRef50_Q4V6C0: IP05284p (Fragment)|unclassified	0.1745310720
+UniRef50_Q3JSQ4	0.1745236776
+UniRef50_Q3JSQ4|unclassified	0.1745236776
+UniRef50_UPI0003710CB2: hypothetical protein	0.1745110795
+UniRef50_UPI0003710CB2: hypothetical protein|unclassified	0.1745110795
+UniRef50_UPI00037631DF: hypothetical protein	0.1745041652
+UniRef50_UPI00037631DF: hypothetical protein|unclassified	0.1745041652
+UniRef50_I6I3S7: Phage shock protein C	0.1745008020
+UniRef50_I6I3S7: Phage shock protein C|unclassified	0.1745008020
+UniRef50_UPI00047D7FE0: ATP F0F1 synthase subunit B	0.1744918641
+UniRef50_UPI00047D7FE0: ATP F0F1 synthase subunit B|unclassified	0.1744918641
+UniRef50_A0A011Q2M3	0.1744917246
+UniRef50_A0A011Q2M3|unclassified	0.1744917246
+UniRef50_UPI0003D774BB	0.1744907788
+UniRef50_UPI0003D774BB|unclassified	0.1744907788
+UniRef50_UPI0003FBDCA0: hypothetical protein	0.1744859110
+UniRef50_UPI0003FBDCA0: hypothetical protein|unclassified	0.1744859110
+UniRef50_K5YVJ1: Putative transporter	0.1744779867
+UniRef50_K5YVJ1: Putative transporter|unclassified	0.1744779867
+UniRef50_UPI0003672906: hypothetical protein	0.1744489651
+UniRef50_UPI0003672906: hypothetical protein|unclassified	0.1744489651
+UniRef50_UPI000377EB6A: hypothetical protein	0.1744487275
+UniRef50_UPI000377EB6A: hypothetical protein|unclassified	0.1744487275
+UniRef50_UPI00047136C1: AraC family transcriptional regulator	0.1744411586
+UniRef50_UPI00047136C1: AraC family transcriptional regulator|unclassified	0.1744411586
+UniRef50_C7R8G9	0.1744343703
+UniRef50_C7R8G9|unclassified	0.1744343703
+UniRef50_V5XRA6: ABC superfamily ATP binding cassette transporter, substrate-binding protein	0.1743749427
+UniRef50_V5XRA6: ABC superfamily ATP binding cassette transporter, substrate-binding protein|unclassified	0.1743749427
+UniRef50_UPI0004643C01: hypothetical protein, partial	0.1743747675
+UniRef50_UPI0004643C01: hypothetical protein, partial|unclassified	0.1743747675
+UniRef50_UPI000371F0C9: hypothetical protein	0.1743724895
+UniRef50_UPI000371F0C9: hypothetical protein|unclassified	0.1743724895
+UniRef50_Y4CF84	0.1743638184
+UniRef50_Y4CF84|unclassified	0.1743638184
+UniRef50_X1IHG2: Marine sediment metagenome DNA, contig: S03H2_S28336 (Fragment)	0.1743587481
+UniRef50_X1IHG2: Marine sediment metagenome DNA, contig: S03H2_S28336 (Fragment)|unclassified	0.1743587481
+UniRef50_P18120: 3-isopropylmalate dehydrogenase	0.1743290521
+UniRef50_P18120: 3-isopropylmalate dehydrogenase|unclassified	0.1743290521
+UniRef50_E3HHW2: Pirin C-terminal cupin domain protein 2	0.1743286934
+UniRef50_E3HHW2: Pirin C-terminal cupin domain protein 2|unclassified	0.1743286934
+UniRef50_A0A017SM38	0.1743094450
+UniRef50_A0A017SM38|unclassified	0.1743094450
+UniRef50_Q21JY3	0.1743089034
+UniRef50_Q21JY3|unclassified	0.1743089034
+UniRef50_Q9V813: S-methyl-5'-thioadenosine phosphorylase	0.1743033430
+UniRef50_Q9V813: S-methyl-5'-thioadenosine phosphorylase|unclassified	0.1743033430
+UniRef50_F8TVB7	0.1742846521
+UniRef50_F8TVB7|unclassified	0.1742846521
+UniRef50_Q53554: Citrate synthase	0.1742794079
+UniRef50_Q53554: Citrate synthase|unclassified	0.1742794079
+UniRef50_UPI0003C1577F: PREDICTED: gamma-aminobutyrate transaminase POP2, mitochondrial-like	0.1742688463
+UniRef50_UPI0003C1577F: PREDICTED: gamma-aminobutyrate transaminase POP2, mitochondrial-like|unclassified	0.1742688463
+UniRef50_UPI0003694753: hypothetical protein, partial	0.1742599259
+UniRef50_UPI0003694753: hypothetical protein, partial|unclassified	0.1742599259
+UniRef50_E6SEP0	0.1742428789
+UniRef50_E6SEP0|unclassified	0.1742428789
+UniRef50_R4ZXI1: Iron compound ABC uptake transporter substrate-binding protein PiuA	0.1742358906
+UniRef50_R4ZXI1: Iron compound ABC uptake transporter substrate-binding protein PiuA|unclassified	0.1742358906
+UniRef50_A9MY34	0.1742214114
+UniRef50_A9MY34|unclassified	0.1742214114
+UniRef50_C3XWW9	0.1742182851
+UniRef50_C3XWW9|unclassified	0.1742182851
+UniRef50_UPI00036B111A: hypothetical protein	0.1741966957
+UniRef50_UPI00036B111A: hypothetical protein|unclassified	0.1741966957
+UniRef50_UPI0003FB001A: glycosyl transferase family 2	0.1741772445
+UniRef50_UPI0003FB001A: glycosyl transferase family 2|unclassified	0.1741772445
+UniRef50_UPI0003B482CD: 50S ribosomal protein L25	0.1741730952
+UniRef50_UPI0003B482CD: 50S ribosomal protein L25|unclassified	0.1741730952
+UniRef50_UPI000370724F: hypothetical protein	0.1741680903
+UniRef50_UPI000370724F: hypothetical protein|unclassified	0.1741680903
+UniRef50_A0LH56: Bifunctional protein PyrR	0.1741618345
+UniRef50_A0LH56: Bifunctional protein PyrR|unclassified	0.1741618345
+UniRef50_W9TCA4: Pirin	0.1741515139
+UniRef50_W9TCA4: Pirin|unclassified	0.1741515139
+UniRef50_A1TN83: Ribonuclease HII	0.1741514576
+UniRef50_A1TN83: Ribonuclease HII|unclassified	0.1741514576
+UniRef50_UPI0004677ABB: hypothetical protein	0.1741249844
+UniRef50_UPI0004677ABB: hypothetical protein|unclassified	0.1741249844
+UniRef50_D6WC74	0.1741197025
+UniRef50_D6WC74|unclassified	0.1741197025
+UniRef50_UPI00047CCC8E: nitrate ABC transporter permease	0.1741175223
+UniRef50_UPI00047CCC8E: nitrate ABC transporter permease|unclassified	0.1741175223
+UniRef50_B1M288	0.1741141115
+UniRef50_B1M288|unclassified	0.1741141115
+UniRef50_M4YVY6: Cytoplasmic protein	0.1741097603
+UniRef50_M4YVY6: Cytoplasmic protein|unclassified	0.1741097603
+UniRef50_B9E6Y0	0.1741029015
+UniRef50_B9E6Y0|unclassified	0.1741029015
+UniRef50_X6VD20	0.1740961981
+UniRef50_X6VD20|unclassified	0.1740961981
+UniRef50_W0ITU8	0.1740928819
+UniRef50_W0ITU8|unclassified	0.1740928819
+UniRef50_S0FUN2: Phage major tail protein, phi13 family	0.1740684176
+UniRef50_S0FUN2: Phage major tail protein, phi13 family|unclassified	0.1740684176
+UniRef50_UPI00014AD6BB: MULTISPECIES: single-stranded DNA-binding protein	0.1740650430
+UniRef50_UPI00014AD6BB: MULTISPECIES: single-stranded DNA-binding protein|unclassified	0.1740650430
+UniRef50_P40880: Carbonic anhydrase, chloroplastic	0.1740539622
+UniRef50_P40880: Carbonic anhydrase, chloroplastic|unclassified	0.1740539622
+UniRef50_A0A024QCJ7: Putative iron-regulated membrane protein	0.1740448268
+UniRef50_A0A024QCJ7: Putative iron-regulated membrane protein|unclassified	0.1740448268
+UniRef50_UPI000359CA24: PREDICTED: protein MTO1 homolog, mitochondrial-like	0.1740208264
+UniRef50_UPI000359CA24: PREDICTED: protein MTO1 homolog, mitochondrial-like|unclassified	0.1740208264
+UniRef50_A0A052IJM6: HD domain protein	0.1740170212
+UniRef50_A0A052IJM6: HD domain protein|unclassified	0.1740170212
+UniRef50_E0TFU4: ATP synthase subunit D	0.1740142983
+UniRef50_E0TFU4: ATP synthase subunit D|unclassified	0.1740142983
+UniRef50_R6Q3D5	0.1740009329
+UniRef50_R6Q3D5|unclassified	0.1740009329
+UniRef50_Q21QC8	0.1739868004
+UniRef50_Q21QC8|unclassified	0.1739868004
+UniRef50_H3C963	0.1739745669
+UniRef50_H3C963|unclassified	0.1739745669
+UniRef50_UPI00047B8059: hypothetical protein	0.1739730264
+UniRef50_UPI00047B8059: hypothetical protein|unclassified	0.1739730264
+UniRef50_UPI00036BE306: hypothetical protein, partial	0.1739583404
+UniRef50_UPI00036BE306: hypothetical protein, partial|unclassified	0.1739583404
+UniRef50_UPI00047933CE: hypothetical protein	0.1739481298
+UniRef50_UPI00047933CE: hypothetical protein|unclassified	0.1739481298
+UniRef50_X1HDM6: Marine sediment metagenome DNA, contig: S03H2_S10407 (Fragment)	0.1739404404
+UniRef50_X1HDM6: Marine sediment metagenome DNA, contig: S03H2_S10407 (Fragment)|unclassified	0.1739404404
+UniRef50_A0A024JM98: Similar to Saccharomyces cerevisiae YCR088W ABP1 Actin binding protein of the cortical actin cytoskeleton	0.1739252039
+UniRef50_A0A024JM98: Similar to Saccharomyces cerevisiae YCR088W ABP1 Actin binding protein of the cortical actin cytoskeleton|unclassified	0.1739252039
+UniRef50_UPI0003613FA3: hypothetical protein	0.1739121314
+UniRef50_UPI0003613FA3: hypothetical protein|unclassified	0.1739121314
+UniRef50_UPI0003750892: hypothetical protein	0.1739102961
+UniRef50_UPI0003750892: hypothetical protein|unclassified	0.1739102961
+UniRef50_Q3SKU1: Holo-[acyl-carrier-protein] synthase	0.1739027447
+UniRef50_Q3SKU1: Holo-[acyl-carrier-protein] synthase|unclassified	0.1739027447
+UniRef50_Q0VM97: Lipoprotein, putative	0.1738938503
+UniRef50_Q0VM97: Lipoprotein, putative|unclassified	0.1738938503
+UniRef50_UPI0004664650: hypothetical protein	0.1738937149
+UniRef50_UPI0004664650: hypothetical protein|unclassified	0.1738937149
+UniRef50_UPI0003292DB3: PREDICTED: alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase 2	0.1738855492
+UniRef50_UPI0003292DB3: PREDICTED: alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase 2|unclassified	0.1738855492
+UniRef50_UPI000420139C: alpha/beta hydrolase	0.1738669769
+UniRef50_UPI000420139C: alpha/beta hydrolase|unclassified	0.1738669769
+UniRef50_UPI0003774708: hypothetical protein	0.1738590209
+UniRef50_UPI0003774708: hypothetical protein|unclassified	0.1738590209
+UniRef50_Q1GQI3: Phosphoribosyl-ATP pyrophosphatase	0.1738567767
+UniRef50_Q1GQI3: Phosphoribosyl-ATP pyrophosphatase|unclassified	0.1738567767
+UniRef50_K0K6Y3	0.1738548366
+UniRef50_K0K6Y3|unclassified	0.1738548366
+UniRef50_Q833W8: Tagatose 1,6-diphosphate aldolase 2	0.1738508278
+UniRef50_Q833W8: Tagatose 1,6-diphosphate aldolase 2|unclassified	0.1738508278
+UniRef50_UPI0004676098: hypothetical protein	0.1738405517
+UniRef50_UPI0004676098: hypothetical protein|unclassified	0.1738405517
+UniRef50_Q8K9R9: Phosphoheptose isomerase	0.1738336893
+UniRef50_Q8K9R9: Phosphoheptose isomerase|unclassified	0.1738336893
+UniRef50_X1U678: Marine sediment metagenome DNA, contig: S12H4_S12739 (Fragment)	0.1738335323
+UniRef50_X1U678: Marine sediment metagenome DNA, contig: S12H4_S12739 (Fragment)|unclassified	0.1738335323
+UniRef50_UPI0003B36713: RNA-binding protein	0.1738302410
+UniRef50_UPI0003B36713: RNA-binding protein|unclassified	0.1738302410
+UniRef50_X1PZR0: Marine sediment metagenome DNA, contig: S06H3_S23935 (Fragment)	0.1738105320
+UniRef50_X1PZR0: Marine sediment metagenome DNA, contig: S06H3_S23935 (Fragment)|unclassified	0.1738105320
+UniRef50_UPI00047DE6E3: hypothetical protein	0.1738089063
+UniRef50_UPI00047DE6E3: hypothetical protein|unclassified	0.1738089063
+UniRef50_UPI000366D18B: hypothetical protein	0.1737789186
+UniRef50_UPI000366D18B: hypothetical protein|unclassified	0.1737789186
+UniRef50_UPI00041C458B: GTP-binding protein	0.1737689648
+UniRef50_UPI00041C458B: GTP-binding protein|unclassified	0.1737689648
+UniRef50_UPI00036FB196: hypothetical protein	0.1737414284
+UniRef50_UPI00036FB196: hypothetical protein|unclassified	0.1737414284
+UniRef50_Q07J88	0.1737404401
+UniRef50_Q07J88|unclassified	0.1737404401
+UniRef50_UPI0003594302: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1-like isoform X1	0.1737354446
+UniRef50_UPI0003594302: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1-like isoform X1|unclassified	0.1737354446
+UniRef50_W5X9X6	0.1737070169
+UniRef50_W5X9X6|unclassified	0.1737070169
+UniRef50_P0A5T7: Formyltetrahydrofolate deformylase	0.1736944710
+UniRef50_P0A5T7: Formyltetrahydrofolate deformylase|unclassified	0.1736944710
+UniRef50_A1K3T2: Phosphoheptose isomerase	0.1736854580
+UniRef50_A1K3T2: Phosphoheptose isomerase|unclassified	0.1736854580
+UniRef50_X1TQX4: Marine sediment metagenome DNA, contig: S12H4_S02280	0.1736740036
+UniRef50_X1TQX4: Marine sediment metagenome DNA, contig: S12H4_S02280|unclassified	0.1736740036
+UniRef50_A0A028BGM5	0.1736640156
+UniRef50_A0A028BGM5|unclassified	0.1736640156
+UniRef50_UPI0003B5F4E2: N-acetyl-gamma-glutamyl-phosphate reductase	0.1736612927
+UniRef50_UPI0003B5F4E2: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.1736612927
+UniRef50_P19366: ATP synthase subunit beta, chloroplastic	0.1736605012
+UniRef50_P19366: ATP synthase subunit beta, chloroplastic|unclassified	0.1736605012
+UniRef50_E3ZEZ3	0.1736597619
+UniRef50_E3ZEZ3|unclassified	0.1736597619
+UniRef50_A9B5I3: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.1736525660
+UniRef50_A9B5I3: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.1736525660
+UniRef50_J3QJK4	0.1736506940
+UniRef50_J3QJK4|unclassified	0.1736506940
+UniRef50_A4XLL8: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	0.1736184604
+UniRef50_A4XLL8: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.1736184604
+UniRef50_B6IPP2: YCII-related protein, putative	0.1736047770
+UniRef50_B6IPP2: YCII-related protein, putative|unclassified	0.1736047770
+UniRef50_UPI00036EC432: hypothetical protein	0.1735995668
+UniRef50_UPI00036EC432: hypothetical protein|unclassified	0.1735995668
+UniRef50_B9Y1B2	0.1735982646
+UniRef50_B9Y1B2|unclassified	0.1735982646
+UniRef50_UPI00035F2032: hypothetical protein	0.1735982224
+UniRef50_UPI00035F2032: hypothetical protein|unclassified	0.1735982224
+UniRef50_K8MTE0	0.1735976803
+UniRef50_K8MTE0|unclassified	0.1735976803
+UniRef50_I2JKJ5: Bifunctional adenylate cyclase/hybrid sensor diguanylate cyclase/response regulator	0.1735829019
+UniRef50_I2JKJ5: Bifunctional adenylate cyclase/hybrid sensor diguanylate cyclase/response regulator|unclassified	0.1735829019
+UniRef50_X8NAU0	0.1735827097
+UniRef50_X8NAU0|unclassified	0.1735827097
+UniRef50_M5AE11	0.1735705375
+UniRef50_M5AE11|unclassified	0.1735705375
+UniRef50_UPI0002491C83: Fe-S cluster assembly protein SufD	0.1735622084
+UniRef50_UPI0002491C83: Fe-S cluster assembly protein SufD|unclassified	0.1735622084
+UniRef50_UPI000464E243: short-chain dehydrogenase	0.1735581942
+UniRef50_UPI000464E243: short-chain dehydrogenase|unclassified	0.1735581942
+UniRef50_UPI00047122FB: MarR family transcriptional regulator	0.1735543157
+UniRef50_UPI00047122FB: MarR family transcriptional regulator|unclassified	0.1735543157
+UniRef50_Z5X8Q5: Heme-binding protein	0.1735388790
+UniRef50_Z5X8Q5: Heme-binding protein|unclassified	0.1735388790
+UniRef50_UPI000373BFCA: hypothetical protein	0.1735136851
+UniRef50_UPI000373BFCA: hypothetical protein|unclassified	0.1735136851
+UniRef50_UPI0003298C8F: PREDICTED: D-alanine--D-alanine ligase A-like, partial	0.1734949932
+UniRef50_UPI0003298C8F: PREDICTED: D-alanine--D-alanine ligase A-like, partial|unclassified	0.1734949932
+UniRef50_K6WSM8	0.1734844143
+UniRef50_K6WSM8|unclassified	0.1734844143
+UniRef50_UPI0004026661: RNA helicase	0.1734839033
+UniRef50_UPI0004026661: RNA helicase|unclassified	0.1734839033
+UniRef50_UPI000328A627: PREDICTED: basic proline-rich protein-like	0.1734782521
+UniRef50_UPI000328A627: PREDICTED: basic proline-rich protein-like|unclassified	0.1734782521
+UniRef50_UPI00042541FF: hypothetical protein	0.1734625029
+UniRef50_UPI00042541FF: hypothetical protein|unclassified	0.1734625029
+UniRef50_UPI0003F0B748: PREDICTED: RNA-binding protein FUS-like isoform X2	0.1734382944
+UniRef50_UPI0003F0B748: PREDICTED: RNA-binding protein FUS-like isoform X2|unclassified	0.1734382944
+UniRef50_UPI0002BA1B2C: glutathione-regulated potassium-efflux system protein KefB	0.1734373456
+UniRef50_UPI0002BA1B2C: glutathione-regulated potassium-efflux system protein KefB|unclassified	0.1734373456
+UniRef50_A0A022L587	0.1734234745
+UniRef50_A0A022L587|unclassified	0.1734234745
+UniRef50_W4Z6Y3	0.1734162036
+UniRef50_W4Z6Y3|unclassified	0.1734162036
+UniRef50_UPI000378D6CD: hypothetical protein	0.1734029486
+UniRef50_UPI000378D6CD: hypothetical protein|unclassified	0.1734029486
+UniRef50_A7MXL0: Prolipoprotein diacylglyceryl transferase	0.1733949419
+UniRef50_A7MXL0: Prolipoprotein diacylglyceryl transferase|unclassified	0.1733949419
+UniRef50_UPI0003AA4737: LuxR family transcriptional regulator	0.1733844289
+UniRef50_UPI0003AA4737: LuxR family transcriptional regulator|unclassified	0.1733844289
+UniRef50_UPI0003060D6D: hypothetical protein	0.1733834394
+UniRef50_UPI0003060D6D: hypothetical protein|unclassified	0.1733834394
+UniRef50_UPI0003654508: hypothetical protein	0.1733768975
+UniRef50_UPI0003654508: hypothetical protein|unclassified	0.1733768975
+UniRef50_UPI00038FC5BC: hypothetical protein, partial	0.1733762465
+UniRef50_UPI00038FC5BC: hypothetical protein, partial|unclassified	0.1733762465
+UniRef50_UPI0003B547DF: damage-inducible protein	0.1733761326
+UniRef50_UPI0003B547DF: damage-inducible protein|unclassified	0.1733761326
+UniRef50_A0A022HYN1: Zonular occludens toxin family protein	0.1733723765
+UniRef50_A0A022HYN1: Zonular occludens toxin family protein|unclassified	0.1733723765
+UniRef50_UPI0003600874: hypothetical protein, partial	0.1733673586
+UniRef50_UPI0003600874: hypothetical protein, partial|unclassified	0.1733673586
+UniRef50_D4GL57	0.1733659118
+UniRef50_D4GL57|unclassified	0.1733659118
+UniRef50_UPI000478B90B: hypothetical protein, partial	0.1733630801
+UniRef50_UPI000478B90B: hypothetical protein, partial|unclassified	0.1733630801
+UniRef50_UPI000366F2B2: hypothetical protein	0.1733525166
+UniRef50_UPI000366F2B2: hypothetical protein|unclassified	0.1733525166
+UniRef50_UPI000379680D: hypothetical protein	0.1733228793
+UniRef50_UPI000379680D: hypothetical protein|unclassified	0.1733228793
+UniRef50_K2H9P2: Cbb3-type cytochrome c oxidase CcoQ subunit	0.1733192016
+UniRef50_K2H9P2: Cbb3-type cytochrome c oxidase CcoQ subunit|unclassified	0.1733192016
+UniRef50_A9WS29	0.1732660333
+UniRef50_A9WS29|unclassified	0.1732660333
+UniRef50_P48261: Anthranilate synthase component 2	0.1732649827
+UniRef50_P48261: Anthranilate synthase component 2|unclassified	0.1732649827
+UniRef50_Q8K9D8: 6-carboxy-5,6,7,8-tetrahydropterin synthase	0.1732287110
+UniRef50_Q8K9D8: 6-carboxy-5,6,7,8-tetrahydropterin synthase|unclassified	0.1732287110
+UniRef50_UPI000381C95D: hypothetical protein	0.1732275447
+UniRef50_UPI000381C95D: hypothetical protein|unclassified	0.1732275447
+UniRef50_UPI0003755FC8: hypothetical protein	0.1732116252
+UniRef50_UPI0003755FC8: hypothetical protein|unclassified	0.1732116252
+UniRef50_A0A017HQ45	0.1732067462
+UniRef50_A0A017HQ45|unclassified	0.1732067462
+UniRef50_W6W535: Anti-FecI sigma factor, FecR	0.1731896268
+UniRef50_W6W535: Anti-FecI sigma factor, FecR|unclassified	0.1731896268
+UniRef50_UPI00035EC56E: hypothetical protein	0.1731812910
+UniRef50_UPI00035EC56E: hypothetical protein|unclassified	0.1731812910
+UniRef50_U6L3G8	0.1731644103
+UniRef50_U6L3G8|unclassified	0.1731644103
+UniRef50_UPI000479D633: hypothetical protein	0.1731640265
+UniRef50_UPI000479D633: hypothetical protein|unclassified	0.1731640265
+UniRef50_N0RNG8	0.1731546485
+UniRef50_N0RNG8|unclassified	0.1731546485
+UniRef50_UPI0002003A9E: L-serine ammonia-lyase, partial	0.1731530006
+UniRef50_UPI0002003A9E: L-serine ammonia-lyase, partial|unclassified	0.1731530006
+UniRef50_UPI0003C147A2: PREDICTED: heat shock 70 kDa protein, mitochondrial-like	0.1731509596
+UniRef50_UPI0003C147A2: PREDICTED: heat shock 70 kDa protein, mitochondrial-like|unclassified	0.1731509596
+UniRef50_UPI0002003862: NADH dehydrogenase, partial	0.1731418572
+UniRef50_UPI0002003862: NADH dehydrogenase, partial|unclassified	0.1731418572
+UniRef50_K0JTK8	0.1731361154
+UniRef50_K0JTK8|unclassified	0.1731361154
+UniRef50_K2JPR7	0.1731353859
+UniRef50_K2JPR7|unclassified	0.1731353859
+UniRef50_C4L8C0	0.1731272440
+UniRef50_C4L8C0|unclassified	0.1731272440
+UniRef50_Q11G38	0.1730894571
+UniRef50_Q11G38|unclassified	0.1730894571
+UniRef50_A0A058ZPA6	0.1730776008
+UniRef50_A0A058ZPA6|unclassified	0.1730776008
+UniRef50_UPI000418069B: ABC transporter	0.1730685789
+UniRef50_UPI000418069B: ABC transporter|unclassified	0.1730685789
+UniRef50_UPI000362D145: hypothetical protein	0.1730508461
+UniRef50_UPI000362D145: hypothetical protein|unclassified	0.1730508461
+UniRef50_B5WQ03	0.1730392212
+UniRef50_B5WQ03|unclassified	0.1730392212
+UniRef50_K7E367	0.1730156674
+UniRef50_K7E367|unclassified	0.1730156674
+UniRef50_UPI00046AE517: hypothetical protein	0.1730021455
+UniRef50_UPI00046AE517: hypothetical protein|unclassified	0.1730021455
+UniRef50_A6L170: NADH-quinone oxidoreductase subunit B	0.1729981276
+UniRef50_A6L170: NADH-quinone oxidoreductase subunit B|unclassified	0.1729981276
+UniRef50_UPI0002D2633F: 3-isopropylmalate dehydrogenase	0.1729866710
+UniRef50_UPI0002D2633F: 3-isopropylmalate dehydrogenase|unclassified	0.1729866710
+UniRef50_Q16DV7: 1-deoxy-D-xylulose-5-phosphate synthase 1	0.1729832489
+UniRef50_Q16DV7: 1-deoxy-D-xylulose-5-phosphate synthase 1|unclassified	0.1729832489
+UniRef50_UPI0003609C50: MULTISPECIES: hypothetical protein	0.1729677808
+UniRef50_UPI0003609C50: MULTISPECIES: hypothetical protein|unclassified	0.1729677808
+UniRef50_UPI00046EB4AA: hypothetical protein, partial	0.1729463759
+UniRef50_UPI00046EB4AA: hypothetical protein, partial|unclassified	0.1729463759
+UniRef50_UPI000345E65D: hypothetical protein	0.1729354613
+UniRef50_UPI000345E65D: hypothetical protein|unclassified	0.1729354613
+UniRef50_Q1QMP2: Orotidine 5'-phosphate decarboxylase	0.1729243534
+UniRef50_Q1QMP2: Orotidine 5'-phosphate decarboxylase|unclassified	0.1729243534
+UniRef50_Q3K4L7: DNA-directed RNA polymerase subunit omega	0.1729127823
+UniRef50_Q3K4L7: DNA-directed RNA polymerase subunit omega|unclassified	0.1729127823
+UniRef50_UPI000366D08A: hypothetical protein	0.1728996697
+UniRef50_UPI000366D08A: hypothetical protein|unclassified	0.1728996697
+UniRef50_W8G4H7: Major tail tube protein	0.1728418035
+UniRef50_W8G4H7: Major tail tube protein|unclassified	0.1728418035
+UniRef50_E4KNG4	0.1728149083
+UniRef50_E4KNG4|unclassified	0.1728149083
+UniRef50_F3X6D3	0.1728124592
+UniRef50_F3X6D3|unclassified	0.1728124592
+UniRef50_UPI00040C080C: hypothetical protein	0.1727962066
+UniRef50_UPI00040C080C: hypothetical protein|unclassified	0.1727962066
+UniRef50_UPI00037813C2: hypothetical protein	0.1727943746
+UniRef50_UPI00037813C2: hypothetical protein|unclassified	0.1727943746
+UniRef50_UPI00016AC68F: transport protein, partial	0.1727923631
+UniRef50_UPI00016AC68F: transport protein, partial|unclassified	0.1727923631
+UniRef50_UPI0003659021: MULTISPECIES: hypothetical protein	0.1727918080
+UniRef50_UPI0003659021: MULTISPECIES: hypothetical protein|unclassified	0.1727918080
+UniRef50_A4CBI0	0.1727902073
+UniRef50_A4CBI0|unclassified	0.1727902073
+UniRef50_K2C9Y9	0.1727719112
+UniRef50_K2C9Y9|unclassified	0.1727719112
+UniRef50_UPI00036159B5: 30S ribosomal protein S2	0.1727448659
+UniRef50_UPI00036159B5: 30S ribosomal protein S2|unclassified	0.1727448659
+UniRef50_I6E4A3: RES family domain protein	0.1727425291
+UniRef50_I6E4A3: RES family domain protein|unclassified	0.1727425291
+UniRef50_C9SS96	0.1727363734
+UniRef50_C9SS96|unclassified	0.1727363734
+UniRef50_UPI000373AFB5: hypothetical protein	0.1727183498
+UniRef50_UPI000373AFB5: hypothetical protein|unclassified	0.1727183498
+UniRef50_UPI00041BD145: hypothetical protein	0.1727079537
+UniRef50_UPI00041BD145: hypothetical protein|unclassified	0.1727079537
+UniRef50_B3EDR6: SirA family protein	0.1726987448
+UniRef50_B3EDR6: SirA family protein|unclassified	0.1726987448
+UniRef50_UPI00044020B0: PREDICTED: succinyl-CoA:3-ketoacid coenzyme A transferase 2, mitochondrial-like, partial	0.1726875163
+UniRef50_UPI00044020B0: PREDICTED: succinyl-CoA:3-ketoacid coenzyme A transferase 2, mitochondrial-like, partial|unclassified	0.1726875163
+UniRef50_UPI00047A6911: hypothetical protein	0.1726683403
+UniRef50_UPI00047A6911: hypothetical protein|unclassified	0.1726683403
+UniRef50_C0MFF3	0.1726650712
+UniRef50_C0MFF3|unclassified	0.1726650712
+UniRef50_UPI00046D46EC: PTS sugar transporter subunit IIA	0.1726647898
+UniRef50_UPI00046D46EC: PTS sugar transporter subunit IIA|unclassified	0.1726647898
+UniRef50_UPI0003B59385: molybdopterin biosynthesis protein MoeB	0.1726610853
+UniRef50_UPI0003B59385: molybdopterin biosynthesis protein MoeB|unclassified	0.1726610853
+UniRef50_G2PZY4	0.1726468265
+UniRef50_G2PZY4|unclassified	0.1726468265
+UniRef50_UPI0004668C37: hypothetical protein	0.1726362417
+UniRef50_UPI0004668C37: hypothetical protein|unclassified	0.1726362417
+UniRef50_UPI000441ECFE: PREDICTED: homeobox protein box-5-like	0.1726231525
+UniRef50_UPI000441ECFE: PREDICTED: homeobox protein box-5-like|unclassified	0.1726231525
+UniRef50_I3F4R4	0.1725892381
+UniRef50_I3F4R4|unclassified	0.1725892381
+UniRef50_T0VCJ2	0.1725739673
+UniRef50_T0VCJ2|unclassified	0.1725739673
+UniRef50_UPI00044124E5: PH domain-like protein, partial	0.1725730564
+UniRef50_UPI00044124E5: PH domain-like protein, partial|unclassified	0.1725730564
+UniRef50_F9PED5: Competence protein	0.1725668325
+UniRef50_F9PED5: Competence protein|unclassified	0.1725668325
+UniRef50_R6MKK0: Transcriptional regulator PadR family protein	0.1725474590
+UniRef50_R6MKK0: Transcriptional regulator PadR family protein|unclassified	0.1725474590
+UniRef50_P52024: DNA polymerase III subunit delta'	0.1725422688
+UniRef50_P52024: DNA polymerase III subunit delta'|unclassified	0.1725422688
+UniRef50_UPI00037D9A37: hypothetical protein	0.1725120011
+UniRef50_UPI00037D9A37: hypothetical protein|unclassified	0.1725120011
+UniRef50_C6XIH6: Transcriptional regulator, HxlR family	0.1725029266
+UniRef50_C6XIH6: Transcriptional regulator, HxlR family|unclassified	0.1725029266
+UniRef50_UPI000379A4AF: hypothetical protein	0.1724902148
+UniRef50_UPI000379A4AF: hypothetical protein|unclassified	0.1724902148
+UniRef50_X1SHF8: Marine sediment metagenome DNA, contig: S12H4_S08764 (Fragment)	0.1724808887
+UniRef50_X1SHF8: Marine sediment metagenome DNA, contig: S12H4_S08764 (Fragment)|unclassified	0.1724808887
+UniRef50_UPI0003622857: hypothetical protein, partial	0.1724669514
+UniRef50_UPI0003622857: hypothetical protein, partial|unclassified	0.1724669514
+UniRef50_Q1LNF6: Uridylate kinase	0.1724577178
+UniRef50_Q1LNF6: Uridylate kinase|unclassified	0.1724577178
+UniRef50_R6YL47	0.1724370077
+UniRef50_R6YL47|unclassified	0.1724370077
+UniRef50_Q1YHA3	0.1724134123
+UniRef50_Q1YHA3|unclassified	0.1724134123
+UniRef50_Q8EU37: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	0.1723951900
+UniRef50_Q8EU37: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.1723951900
+UniRef50_UPI000464D2A1: peptidase M32	0.1723910194
+UniRef50_UPI000464D2A1: peptidase M32|unclassified	0.1723910194
+UniRef50_U6GFE8	0.1723909333
+UniRef50_U6GFE8|unclassified	0.1723909333
+UniRef50_V7Z4V7: Cysteine synthase	0.1723738240
+UniRef50_V7Z4V7: Cysteine synthase|unclassified	0.1723738240
+UniRef50_W4U711: Ribonuclease PH	0.1723732354
+UniRef50_W4U711: Ribonuclease PH|unclassified	0.1723732354
+UniRef50_UPI0002ED894A: hypothetical protein	0.1723706836
+UniRef50_UPI0002ED894A: hypothetical protein|unclassified	0.1723706836
+UniRef50_UPI00035DB23E: hypothetical protein	0.1723502546
+UniRef50_UPI00035DB23E: hypothetical protein|unclassified	0.1723502546
+UniRef50_UPI0001CC2736: transcriptional activator MltR, partial	0.1723466539
+UniRef50_UPI0001CC2736: transcriptional activator MltR, partial|unclassified	0.1723466539
+UniRef50_UPI000376D3D0: GTP-binding protein YsxC	0.1723387969
+UniRef50_UPI000376D3D0: GTP-binding protein YsxC|unclassified	0.1723387969
+UniRef50_UPI00029AA5EC: Fe-S oxidoreductase	0.1723290496
+UniRef50_UPI00029AA5EC: Fe-S oxidoreductase|unclassified	0.1723290496
+UniRef50_R4WEH1: Unkown protein (Fragment)	0.1723201567
+UniRef50_R4WEH1: Unkown protein (Fragment)|unclassified	0.1723201567
+UniRef50_B9JPQ6	0.1723103313
+UniRef50_B9JPQ6|unclassified	0.1723103313
+UniRef50_T0Z4X5	0.1723060666
+UniRef50_T0Z4X5|unclassified	0.1723060666
+UniRef50_S5EQK1	0.1723022144
+UniRef50_S5EQK1|unclassified	0.1723022144
+UniRef50_Q7WVF3	0.1722922871
+UniRef50_Q7WVF3|unclassified	0.1722922871
+UniRef50_N0ABX3: Recombinase family protein	0.1722871320
+UniRef50_N0ABX3: Recombinase family protein|unclassified	0.1722871320
+UniRef50_V6F2D8: Transposase	0.1722740730
+UniRef50_V6F2D8: Transposase|unclassified	0.1722740730
+UniRef50_UPI000474D8DD: glutathione S-transferase	0.1722582501
+UniRef50_UPI000474D8DD: glutathione S-transferase|unclassified	0.1722582501
+UniRef50_D6HTY1: Predicted protein	0.1722541620
+UniRef50_D6HTY1: Predicted protein|unclassified	0.1722541620
+UniRef50_I0LIW9	0.1722527947
+UniRef50_I0LIW9|unclassified	0.1722527947
+UniRef50_UPI0003138F9F: hypothetical protein	0.1722177986
+UniRef50_UPI0003138F9F: hypothetical protein|unclassified	0.1722177986
+UniRef50_UPI00035FCFAE: hypothetical protein	0.1722146547
+UniRef50_UPI00035FCFAE: hypothetical protein|unclassified	0.1722146547
+UniRef50_U5FHG2	0.1722057333
+UniRef50_U5FHG2|unclassified	0.1722057333
+UniRef50_A0A024KGU5	0.1721904052
+UniRef50_A0A024KGU5|unclassified	0.1721904052
+UniRef50_O50236: Carbamoyl-phosphate synthase large chain	0.1721840868
+UniRef50_O50236: Carbamoyl-phosphate synthase large chain|unclassified	0.1721840868
+UniRef50_P48932: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit	0.1721837242
+UniRef50_P48932: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit|unclassified	0.1721837242
+UniRef50_G0S175	0.1721819799
+UniRef50_G0S175|unclassified	0.1721819799
+UniRef50_F7XF56: Transposase	0.1721750848
+UniRef50_F7XF56: Transposase|unclassified	0.1721750848
+UniRef50_M5YMI4: LemA family protein	0.1721659041
+UniRef50_M5YMI4: LemA family protein|unclassified	0.1721659041
+UniRef50_L1J009	0.1721630946
+UniRef50_L1J009|unclassified	0.1721630946
+UniRef50_UPI000414CEF0: ATP-dependent DNA helicase PcrA	0.1721435627
+UniRef50_UPI000414CEF0: ATP-dependent DNA helicase PcrA|unclassified	0.1721435627
+UniRef50_UPI00047691BC: hemolysin D	0.1721266224
+UniRef50_UPI00047691BC: hemolysin D|unclassified	0.1721266224
+UniRef50_UPI00036675F3: hypothetical protein	0.1721203586
+UniRef50_UPI00036675F3: hypothetical protein|unclassified	0.1721203586
+UniRef50_R7WTN7	0.1721004219
+UniRef50_R7WTN7|unclassified	0.1721004219
+UniRef50_U2KRP8	0.1720934937
+UniRef50_U2KRP8|unclassified	0.1720934937
+UniRef50_S5TZZ6	0.1720920988
+UniRef50_S5TZZ6|unclassified	0.1720920988
+UniRef50_UPI00037A8ED7: hypothetical protein	0.1720892674
+UniRef50_UPI00037A8ED7: hypothetical protein|unclassified	0.1720892674
+UniRef50_UPI00047351CC: haloacid dehalogenase, partial	0.1720793961
+UniRef50_UPI00047351CC: haloacid dehalogenase, partial|unclassified	0.1720793961
+UniRef50_UPI000472D8E3: hypothetical protein	0.1720540801
+UniRef50_UPI000472D8E3: hypothetical protein|unclassified	0.1720540801
+UniRef50_UPI00036AFA97: hypothetical protein	0.1720387335
+UniRef50_UPI00036AFA97: hypothetical protein|unclassified	0.1720387335
+UniRef50_Q38854: 1-deoxy-D-xylulose-5-phosphate synthase, chloroplastic	0.1720286595
+UniRef50_Q38854: 1-deoxy-D-xylulose-5-phosphate synthase, chloroplastic|unclassified	0.1720286595
+UniRef50_UPI00035103A5: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1 isoform X2	0.1720014064
+UniRef50_UPI00035103A5: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1 isoform X2|unclassified	0.1720014064
+UniRef50_UPI0002197716: 4-phosphopantetheinyl transferase	0.1719994796
+UniRef50_UPI0002197716: 4-phosphopantetheinyl transferase|unclassified	0.1719994796
+UniRef50_Q73RB6: Pyrrolidone-carboxylate peptidase	0.1719867145
+UniRef50_Q73RB6: Pyrrolidone-carboxylate peptidase|unclassified	0.1719867145
+UniRef50_X0XHN3: Marine sediment metagenome DNA, contig: S01H1_S40282 (Fragment)	0.1719764500
+UniRef50_X0XHN3: Marine sediment metagenome DNA, contig: S01H1_S40282 (Fragment)|unclassified	0.1719764500
+UniRef50_UPI00046E9450: hypothetical protein	0.1719754029
+UniRef50_UPI00046E9450: hypothetical protein|unclassified	0.1719754029
+UniRef50_UPI00036A80AE: hypothetical protein	0.1719690111
+UniRef50_UPI00036A80AE: hypothetical protein|unclassified	0.1719690111
+UniRef50_P18155: Bifunctional methylenetetrahydrofolate dehydrogenase/cyclohydrolase, mitochondrial	0.1719676027
+UniRef50_P18155: Bifunctional methylenetetrahydrofolate dehydrogenase/cyclohydrolase, mitochondrial|unclassified	0.1719676027
+UniRef50_Q28S78: YjeF-related protein-like protein	0.1719606325
+UniRef50_Q28S78: YjeF-related protein-like protein|unclassified	0.1719606325
+UniRef50_UPI000479500C: D-beta-hydroxybutyrate dehydrogenase	0.1719535780
+UniRef50_UPI000479500C: D-beta-hydroxybutyrate dehydrogenase|unclassified	0.1719535780
+UniRef50_UPI000375048D: hypothetical protein, partial	0.1719437429
+UniRef50_UPI000375048D: hypothetical protein, partial|unclassified	0.1719437429
+UniRef50_C5TJM9	0.1719433054
+UniRef50_C5TJM9|unclassified	0.1719433054
+UniRef50_UPI0003B381A2: TetR family transcriptional regulator	0.1719200509
+UniRef50_UPI0003B381A2: TetR family transcriptional regulator|unclassified	0.1719200509
+UniRef50_W0RSQ0	0.1719124145
+UniRef50_W0RSQ0|unclassified	0.1719124145
+UniRef50_N6UY44	0.1718997202
+UniRef50_N6UY44|unclassified	0.1718997202
+UniRef50_A1APQ8: Succinyl-CoA ligase [ADP-forming] subunit beta	0.1718867024
+UniRef50_A1APQ8: Succinyl-CoA ligase [ADP-forming] subunit beta|unclassified	0.1718867024
+UniRef50_UPI000408C071: hypothetical protein	0.1718758049
+UniRef50_UPI000408C071: hypothetical protein|unclassified	0.1718758049
+UniRef50_UPI000470465A: hypothetical protein, partial	0.1718756440
+UniRef50_UPI000470465A: hypothetical protein, partial|unclassified	0.1718756440
+UniRef50_UPI000471FDE5: membrane protein	0.1718697544
+UniRef50_UPI000471FDE5: membrane protein|unclassified	0.1718697544
+UniRef50_UPI00047E1D1E: hypothetical protein	0.1718481125
+UniRef50_UPI00047E1D1E: hypothetical protein|unclassified	0.1718481125
+UniRef50_Q5GWB1	0.1718394748
+UniRef50_Q5GWB1|unclassified	0.1718394748
+UniRef50_X1EG68: Marine sediment metagenome DNA, contig: S03H2_L07793 (Fragment)	0.1718357788
+UniRef50_X1EG68: Marine sediment metagenome DNA, contig: S03H2_L07793 (Fragment)|unclassified	0.1718357788
+UniRef50_D2TVS1: Glucose-1-phosphatase/inositol phosphatase	0.1718294182
+UniRef50_D2TVS1: Glucose-1-phosphatase/inositol phosphatase|unclassified	0.1718294182
+UniRef50_N6VD20	0.1718047447
+UniRef50_N6VD20|unclassified	0.1718047447
+UniRef50_A8LNH8	0.1718023445
+UniRef50_A8LNH8|unclassified	0.1718023445
+UniRef50_Q836B6: Membrane protein	0.1717880606
+UniRef50_Q836B6: Membrane protein|unclassified	0.1717880606
+UniRef50_UPI0003793B11: hypothetical protein, partial	0.1717789196
+UniRef50_UPI0003793B11: hypothetical protein, partial|unclassified	0.1717789196
+UniRef50_B9MKG1: Adenylate kinase	0.1717726660
+UniRef50_B9MKG1: Adenylate kinase|unclassified	0.1717726660
+UniRef50_P35721: Succinate dehydrogenase cytochrome b560 subunit	0.1717607676
+UniRef50_P35721: Succinate dehydrogenase cytochrome b560 subunit|unclassified	0.1717607676
+UniRef50_UPI0003B76C42: hypothetical protein, partial	0.1717341715
+UniRef50_UPI0003B76C42: hypothetical protein, partial|unclassified	0.1717341715
+UniRef50_A6X2B0	0.1717325699
+UniRef50_A6X2B0|unclassified	0.1717325699
+UniRef50_UPI0002B9FC27: hypothetical protein	0.1717167950
+UniRef50_UPI0002B9FC27: hypothetical protein|unclassified	0.1717167950
+UniRef50_E3F0T3	0.1717143479
+UniRef50_E3F0T3|unclassified	0.1717143479
+UniRef50_D5VJR9	0.1717125044
+UniRef50_D5VJR9|unclassified	0.1717125044
+UniRef50_L0KMK0	0.1716959869
+UniRef50_L0KMK0|unclassified	0.1716959869
+UniRef50_UPI00036CDC10: hypothetical protein	0.1716889677
+UniRef50_UPI00036CDC10: hypothetical protein|unclassified	0.1716889677
+UniRef50_UPI0002196F63: membrane protein	0.1716863411
+UniRef50_UPI0002196F63: membrane protein|unclassified	0.1716863411
+UniRef50_UPI0001584ECB: hypothetical protein BC1G_08527	0.1716862801
+UniRef50_UPI0001584ECB: hypothetical protein BC1G_08527|unclassified	0.1716862801
+UniRef50_UPI0004703E6D: hypothetical protein	0.1716652947
+UniRef50_UPI0004703E6D: hypothetical protein|unclassified	0.1716652947
+UniRef50_X1GU01: Marine sediment metagenome DNA, contig: S03H2_L05043 (Fragment)	0.1716588694
+UniRef50_X1GU01: Marine sediment metagenome DNA, contig: S03H2_L05043 (Fragment)|unclassified	0.1716588694
+UniRef50_I0HMS9	0.1716519152
+UniRef50_I0HMS9|unclassified	0.1716519152
+UniRef50_G4LJR4: Alginate regulatory protein	0.1716457472
+UniRef50_G4LJR4: Alginate regulatory protein|unclassified	0.1716457472
+UniRef50_Q3DQU3	0.1716422747
+UniRef50_Q3DQU3|unclassified	0.1716422747
+UniRef50_UPI00030D195C: GTP pyrophosphokinase	0.1716409057
+UniRef50_UPI00030D195C: GTP pyrophosphokinase|unclassified	0.1716409057
+UniRef50_V9WCE8: Diguanylate cyclase	0.1716367448
+UniRef50_V9WCE8: Diguanylate cyclase|unclassified	0.1716367448
+UniRef50_W5XCM9: Lipopolysaccharide biosynthesis protein	0.1716331798
+UniRef50_W5XCM9: Lipopolysaccharide biosynthesis protein|unclassified	0.1716331798
+UniRef50_UPI0002191DC5: putative amino-acid ABC transporter binding protein	0.1716272616
+UniRef50_UPI0002191DC5: putative amino-acid ABC transporter binding protein|unclassified	0.1716272616
+UniRef50_UPI0003782926: hypothetical protein	0.1716172494
+UniRef50_UPI0003782926: hypothetical protein|unclassified	0.1716172494
+UniRef50_UPI0003EDBEBD: PREDICTED: electron transfer flavoprotein-ubiquinone oxidoreductase, mitochondrial-like	0.1716059127
+UniRef50_UPI0003EDBEBD: PREDICTED: electron transfer flavoprotein-ubiquinone oxidoreductase, mitochondrial-like|unclassified	0.1716059127
+UniRef50_UPI00037C8975: hypothetical protein	0.1715930723
+UniRef50_UPI00037C8975: hypothetical protein|unclassified	0.1715930723
+UniRef50_UPI0003EC2A72: PREDICTED: probable cationic amino acid transporter-like	0.1715849140
+UniRef50_UPI0003EC2A72: PREDICTED: probable cationic amino acid transporter-like|unclassified	0.1715849140
+UniRef50_M4X369	0.1715808465
+UniRef50_M4X369|unclassified	0.1715808465
+UniRef50_UPI0003673178: hypothetical protein	0.1715768896
+UniRef50_UPI0003673178: hypothetical protein|unclassified	0.1715768896
+UniRef50_R5J6H5: YlxR	0.1715740629
+UniRef50_R5J6H5: YlxR|unclassified	0.1715740629
+UniRef50_F0NT85: Transposase, IS4 family	0.1715642054
+UniRef50_F0NT85: Transposase, IS4 family|unclassified	0.1715642054
+UniRef50_A3JV16: DedA family protein	0.1715562238
+UniRef50_A3JV16: DedA family protein|unclassified	0.1715562238
+UniRef50_Q67JB9: Ribosomal RNA small subunit methyltransferase A	0.1715336020
+UniRef50_Q67JB9: Ribosomal RNA small subunit methyltransferase A|unclassified	0.1715336020
+UniRef50_UPI00041D62EE: hypothetical protein	0.1715129681
+UniRef50_UPI00041D62EE: hypothetical protein|unclassified	0.1715129681
+UniRef50_UPI00047414ED: cytochrome C biogenesis protein CcmE, partial	0.1715004489
+UniRef50_UPI00047414ED: cytochrome C biogenesis protein CcmE, partial|unclassified	0.1715004489
+UniRef50_O07356: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifN	0.1714706866
+UniRef50_O07356: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifN|unclassified	0.1714706866
+UniRef50_UPI00037E1EAE: short-chain dehydrogenase	0.1714695774
+UniRef50_UPI00037E1EAE: short-chain dehydrogenase|unclassified	0.1714695774
+UniRef50_F9PAI9: Smr domain protein	0.1714627195
+UniRef50_F9PAI9: Smr domain protein|unclassified	0.1714627195
+UniRef50_X1WS88	0.1714530991
+UniRef50_X1WS88|unclassified	0.1714530991
+UniRef50_UPI00047AC989: hypothetical protein	0.1714455936
+UniRef50_UPI00047AC989: hypothetical protein|unclassified	0.1714455936
+UniRef50_UPI0003787620: hypothetical protein	0.1714362328
+UniRef50_UPI0003787620: hypothetical protein|unclassified	0.1714362328
+UniRef50_UPI00037433EB: hypothetical protein	0.1714205947
+UniRef50_UPI00037433EB: hypothetical protein|unclassified	0.1714205947
+UniRef50_Q21ET8	0.1714168470
+UniRef50_Q21ET8|unclassified	0.1714168470
+UniRef50_UPI00046AE874: gluconolactonase	0.1713916479
+UniRef50_UPI00046AE874: gluconolactonase|unclassified	0.1713916479
+UniRef50_S5XXW1: Flagellar basal body-associated protein FliL	0.1713864995
+UniRef50_S5XXW1: Flagellar basal body-associated protein FliL|unclassified	0.1713864995
+UniRef50_UPI00035F5DAE: hypothetical protein	0.1713613765
+UniRef50_UPI00035F5DAE: hypothetical protein|unclassified	0.1713613765
+UniRef50_X3WWJ9	0.1713553510
+UniRef50_X3WWJ9|unclassified	0.1713553510
+UniRef50_G6CFI4: HD domain protein	0.1713541593
+UniRef50_G6CFI4: HD domain protein|unclassified	0.1713541593
+UniRef50_UPI00047712C5: hypothetical protein	0.1713417672
+UniRef50_UPI00047712C5: hypothetical protein|unclassified	0.1713417672
+UniRef50_Q8TWX0: Carbamoyl-phosphate synthase large chain, N-terminal section	0.1713411128
+UniRef50_Q8TWX0: Carbamoyl-phosphate synthase large chain, N-terminal section|unclassified	0.1713411128
+UniRef50_W5X634: Putative family S53 non-peptidase-like protein	0.1713409732
+UniRef50_W5X634: Putative family S53 non-peptidase-like protein|unclassified	0.1713409732
+UniRef50_V5ERF8	0.1713291435
+UniRef50_V5ERF8|unclassified	0.1713291435
+UniRef50_A3D1K8: Rhodanese domain protein	0.1713109836
+UniRef50_A3D1K8: Rhodanese domain protein|unclassified	0.1713109836
+UniRef50_Q3JNN4	0.1713004479
+UniRef50_Q3JNN4|unclassified	0.1713004479
+UniRef50_U6LDP6	0.1712879778
+UniRef50_U6LDP6|unclassified	0.1712879778
+UniRef50_UPI0004780E74: hypothetical protein	0.1712779860
+UniRef50_UPI0004780E74: hypothetical protein|unclassified	0.1712779860
+UniRef50_I9PDK2: UPF0145 protein YbjQ domain protein	0.1712686469
+UniRef50_I9PDK2: UPF0145 protein YbjQ domain protein|unclassified	0.1712686469
+UniRef50_A9FKI0: Heat shock protein, Hsp20 family	0.1712586953
+UniRef50_A9FKI0: Heat shock protein, Hsp20 family|unclassified	0.1712586953
+UniRef50_UPI0002F6860E: hypothetical protein	0.1712123687
+UniRef50_UPI0002F6860E: hypothetical protein|unclassified	0.1712123687
+UniRef50_I5BS22: DnaJ-like heat shock protein	0.1712093257
+UniRef50_I5BS22: DnaJ-like heat shock protein|unclassified	0.1712093257
+UniRef50_UPI0003688934: hypothetical protein	0.1711946414
+UniRef50_UPI0003688934: hypothetical protein|unclassified	0.1711946414
+UniRef50_B7VBB0: Putative phosphoenolpyruvate synthase regulatory protein	0.1711918114
+UniRef50_B7VBB0: Putative phosphoenolpyruvate synthase regulatory protein|unclassified	0.1711918114
+UniRef50_W4UBQ1: Vitamin B12 ABC transporter	0.1711836063
+UniRef50_W4UBQ1: Vitamin B12 ABC transporter|unclassified	0.1711836063
+UniRef50_UPI0003623E68: hypothetical protein	0.1711719130
+UniRef50_UPI0003623E68: hypothetical protein|unclassified	0.1711719130
+UniRef50_Q3ARM4: Peptidyl-tRNA hydrolase	0.1711647778
+UniRef50_Q3ARM4: Peptidyl-tRNA hydrolase|unclassified	0.1711647778
+UniRef50_G8VJT5: Lysophospholipase	0.1711532463
+UniRef50_G8VJT5: Lysophospholipase|unclassified	0.1711532463
+UniRef50_V7D3S5	0.1711453338
+UniRef50_V7D3S5|unclassified	0.1711453338
+UniRef50_A3MMR3: 6,7-dimethyl-8-ribityllumazine synthase	0.1711357274
+UniRef50_A3MMR3: 6,7-dimethyl-8-ribityllumazine synthase|unclassified	0.1711357274
+UniRef50_UPI000440E981: PREDICTED: methionine synthase	0.1711319357
+UniRef50_UPI000440E981: PREDICTED: methionine synthase|unclassified	0.1711319357
+UniRef50_F5L317	0.1711158807
+UniRef50_F5L317|unclassified	0.1711158807
+UniRef50_B9ISU4	0.1711051419
+UniRef50_B9ISU4|unclassified	0.1711051419
+UniRef50_B3CL83: Adenylosuccinate synthetase	0.1711030197
+UniRef50_B3CL83: Adenylosuccinate synthetase|unclassified	0.1711030197
+UniRef50_UPI0004643C73: MULTISPECIES: hypothetical protein	0.1710929847
+UniRef50_UPI0004643C73: MULTISPECIES: hypothetical protein|unclassified	0.1710929847
+UniRef50_Q8VMX4: Putative multidrug resistance pump (Fragment)	0.1710914084
+UniRef50_Q8VMX4: Putative multidrug resistance pump (Fragment)|unclassified	0.1710914084
+UniRef50_E8KBP6: HD domain protein	0.1710900988
+UniRef50_E8KBP6: HD domain protein|unclassified	0.1710900988
+UniRef50_U1L4H5	0.1710879526
+UniRef50_U1L4H5|unclassified	0.1710879526
+UniRef50_F6E617	0.1710815361
+UniRef50_F6E617|unclassified	0.1710815361
+UniRef50_C3DEH4: ATPase	0.1710774242
+UniRef50_C3DEH4: ATPase|unclassified	0.1710774242
+UniRef50_UPI0003B50A60: cell division protein FtsE	0.1710650497
+UniRef50_UPI0003B50A60: cell division protein FtsE|unclassified	0.1710650497
+UniRef50_UPI000465C017: ferredoxin	0.1710648831
+UniRef50_UPI000465C017: ferredoxin|unclassified	0.1710648831
+UniRef50_E1ZM28: Expressed protein	0.1710506358
+UniRef50_E1ZM28: Expressed protein|unclassified	0.1710506358
+UniRef50_F2D1Z4: Predicted protein (Fragment)	0.1710455163
+UniRef50_F2D1Z4: Predicted protein (Fragment)|unclassified	0.1710455163
+UniRef50_T1C713: Major facilitator transporter (Fragment)	0.1710392137
+UniRef50_T1C713: Major facilitator transporter (Fragment)|unclassified	0.1710392137
+UniRef50_A5F3F4: Vibriobactin-specific isochorismatase	0.1710338536
+UniRef50_A5F3F4: Vibriobactin-specific isochorismatase|unclassified	0.1710338536
+UniRef50_R6IK84: Lipoprotein	0.1710310070
+UniRef50_R6IK84: Lipoprotein|unclassified	0.1710310070
+UniRef50_Q83HF6: Ribonuclease PH	0.1710241012
+UniRef50_Q83HF6: Ribonuclease PH|unclassified	0.1710241012
+UniRef50_Q0ASX6	0.1710120955
+UniRef50_Q0ASX6|unclassified	0.1710120955
+UniRef50_UPI0002DBCE2A: hypothetical protein	0.1710072180
+UniRef50_UPI0002DBCE2A: hypothetical protein|unclassified	0.1710072180
+UniRef50_UPI00036A3BE1: hypothetical protein	0.1709699266
+UniRef50_UPI00036A3BE1: hypothetical protein|unclassified	0.1709699266
+UniRef50_K7DZE2	0.1709687615
+UniRef50_K7DZE2|unclassified	0.1709687615
+UniRef50_F7ZCB4	0.1709680569
+UniRef50_F7ZCB4|unclassified	0.1709680569
+UniRef50_A6W7W9: Probable dual-specificity RNA methyltransferase RlmN	0.1709407019
+UniRef50_A6W7W9: Probable dual-specificity RNA methyltransferase RlmN|unclassified	0.1709407019
+UniRef50_H8W590: UPF0125 protein MARHY3210	0.1709311831
+UniRef50_H8W590: UPF0125 protein MARHY3210|unclassified	0.1709311831
+UniRef50_UPI000368A0D4: RNA polymerase sigma factor, partial	0.1708993601
+UniRef50_UPI000368A0D4: RNA polymerase sigma factor, partial|unclassified	0.1708993601
+UniRef50_J9RWY1	0.1708964903
+UniRef50_J9RWY1|unclassified	0.1708964903
+UniRef50_M1F8U5: Integrase	0.1708906577
+UniRef50_M1F8U5: Integrase|unclassified	0.1708906577
+UniRef50_UPI0003B55AAB: GntR family transcriptional regulator	0.1708872843
+UniRef50_UPI0003B55AAB: GntR family transcriptional regulator|unclassified	0.1708872843
+UniRef50_V4RPL2	0.1708785391
+UniRef50_V4RPL2|unclassified	0.1708785391
+UniRef50_UPI000475A22E: hypothetical protein	0.1708580992
+UniRef50_UPI000475A22E: hypothetical protein|unclassified	0.1708580992
+UniRef50_UPI00036607A3: hypothetical protein, partial	0.1708328812
+UniRef50_UPI00036607A3: hypothetical protein, partial|unclassified	0.1708328812
+UniRef50_UPI00036194A5: membrane protein	0.1708223038
+UniRef50_UPI00036194A5: membrane protein|unclassified	0.1708223038
+UniRef50_UPI00037E574B: hypothetical protein	0.1707821770
+UniRef50_UPI00037E574B: hypothetical protein|unclassified	0.1707821770
+UniRef50_UPI00016C377D: RNA polymerase, sigma-24 subunit, ECF subfamily protein	0.1707378110
+UniRef50_UPI00016C377D: RNA polymerase, sigma-24 subunit, ECF subfamily protein|unclassified	0.1707378110
+UniRef50_UPI000409E1BE: hypothetical protein	0.1707373572
+UniRef50_UPI000409E1BE: hypothetical protein|unclassified	0.1707373572
+UniRef50_UPI00047CE436: hypothetical protein	0.1707345410
+UniRef50_UPI00047CE436: hypothetical protein|unclassified	0.1707345410
+UniRef50_UPI00047DA4D7: hypothetical protein	0.1707163491
+UniRef50_UPI00047DA4D7: hypothetical protein|unclassified	0.1707163491
+UniRef50_W4Q6X3: Phytoene dehydrogenase	0.1707109960
+UniRef50_W4Q6X3: Phytoene dehydrogenase|unclassified	0.1707109960
+UniRef50_UPI00005B8FE9: formate dehydrogenase 2, alpha subunit (nonfunctional, N-terminal part, interrupted by ISH)	0.1707059440
+UniRef50_UPI00005B8FE9: formate dehydrogenase 2, alpha subunit (nonfunctional, N-terminal part, interrupted by ISH)|unclassified	0.1707059440
+UniRef50_X2MB21: DNA utilization protein HofP	0.1707033232
+UniRef50_X2MB21: DNA utilization protein HofP|unclassified	0.1707033232
+UniRef50_A8J1K2: Predicted protein (Fragment)	0.1707002875
+UniRef50_A8J1K2: Predicted protein (Fragment)|unclassified	0.1707002875
+UniRef50_UPI000465AFEA: GABA permease	0.1707000435
+UniRef50_UPI000465AFEA: GABA permease|unclassified	0.1707000435
+UniRef50_UPI0003735DC2: hypothetical protein	0.1706797930
+UniRef50_UPI0003735DC2: hypothetical protein|unclassified	0.1706797930
+UniRef50_I9I049	0.1706391798
+UniRef50_I9I049|unclassified	0.1706391798
+UniRef50_D3ZUH5: Protein RGD1566084	0.1706267084
+UniRef50_D3ZUH5: Protein RGD1566084|unclassified	0.1706267084
+UniRef50_A3MZB9: Bifunctional protein PyrR	0.1706222968
+UniRef50_A3MZB9: Bifunctional protein PyrR|unclassified	0.1706222968
+UniRef50_A0RAR3	0.1706126887
+UniRef50_A0RAR3|unclassified	0.1706126887
+UniRef50_UPI000462F2A4: hypothetical protein	0.1706086353
+UniRef50_UPI000462F2A4: hypothetical protein|unclassified	0.1706086353
+UniRef50_Q9CD72: ATP-dependent DNA helicase UvrD1	0.1705958687
+UniRef50_Q9CD72: ATP-dependent DNA helicase UvrD1|unclassified	0.1705958687
+UniRef50_I1EKV9	0.1705686602
+UniRef50_I1EKV9|unclassified	0.1705686602
+UniRef50_UPI000373702C: hypothetical protein	0.1705647499
+UniRef50_UPI000373702C: hypothetical protein|unclassified	0.1705647499
+UniRef50_S9QI37	0.1705581835
+UniRef50_S9QI37|unclassified	0.1705581835
+UniRef50_J9U6H3	0.1705316770
+UniRef50_J9U6H3|unclassified	0.1705316770
+UniRef50_UPI0003B3AA9D: alpha-amylase	0.1705029829
+UniRef50_UPI0003B3AA9D: alpha-amylase|unclassified	0.1705029829
+UniRef50_UPI0003FBB672: dTDP-4-dehydrorhamnose 3,5-epimerase	0.1704992773
+UniRef50_UPI0003FBB672: dTDP-4-dehydrorhamnose 3,5-epimerase|unclassified	0.1704992773
+UniRef50_UPI0003127861: hypothetical protein	0.1704977666
+UniRef50_UPI0003127861: hypothetical protein|unclassified	0.1704977666
+UniRef50_UPI000367ED7B: hypothetical protein	0.1704965696
+UniRef50_UPI000367ED7B: hypothetical protein|unclassified	0.1704965696
+UniRef50_UPI00047B6331: glycosyl transferase	0.1704878654
+UniRef50_UPI00047B6331: glycosyl transferase|unclassified	0.1704878654
+UniRef50_UPI00037E38E9: hypothetical protein, partial	0.1704705149
+UniRef50_UPI00037E38E9: hypothetical protein, partial|unclassified	0.1704705149
+UniRef50_M3Z3B9	0.1704671320
+UniRef50_M3Z3B9|unclassified	0.1704671320
+UniRef50_B3PBH5: Ribosomal protein L11 methyltransferase	0.1704644247
+UniRef50_B3PBH5: Ribosomal protein L11 methyltransferase|unclassified	0.1704644247
+UniRef50_R7TC30	0.1704541589
+UniRef50_R7TC30|unclassified	0.1704541589
+UniRef50_A8LT04: Lytic transglycosylase catalytic	0.1704502961
+UniRef50_A8LT04: Lytic transglycosylase catalytic|unclassified	0.1704502961
+UniRef50_E4RJP6	0.1704432842
+UniRef50_E4RJP6|unclassified	0.1704432842
+UniRef50_UPI0004757299: hypothetical protein	0.1704386925
+UniRef50_UPI0004757299: hypothetical protein|unclassified	0.1704386925
+UniRef50_J2LBZ8: Acyl carrier protein	0.1704286544
+UniRef50_J2LBZ8: Acyl carrier protein|unclassified	0.1704286544
+UniRef50_T0YRQ4: Cysteine desulfurase activator complex subunit SufB (Fragment)	0.1704278877
+UniRef50_T0YRQ4: Cysteine desulfurase activator complex subunit SufB (Fragment)|unclassified	0.1704278877
+UniRef50_UPI0003751B9D: hypothetical protein	0.1704267851
+UniRef50_UPI0003751B9D: hypothetical protein|unclassified	0.1704267851
+UniRef50_B4UAT5: MJ0042 family finger-like protein	0.1704259408
+UniRef50_B4UAT5: MJ0042 family finger-like protein|unclassified	0.1704259408
+UniRef50_I7DQC5	0.1704237805
+UniRef50_I7DQC5|unclassified	0.1704237805
+UniRef50_X6KUX9	0.1704237805
+UniRef50_X6KUX9|unclassified	0.1704237805
+UniRef50_UPI00036A0075: hypothetical protein	0.1704164821
+UniRef50_UPI00036A0075: hypothetical protein|unclassified	0.1704164821
+UniRef50_UPI0004672656: MULTISPECIES: TetR family transcriptional regulator	0.1703986590
+UniRef50_UPI0004672656: MULTISPECIES: TetR family transcriptional regulator|unclassified	0.1703986590
+UniRef50_UPI0003B5F396: sugar ABC transporter permease	0.1703960106
+UniRef50_UPI0003B5F396: sugar ABC transporter permease|unclassified	0.1703960106
+UniRef50_L6ZSK9	0.1703931794
+UniRef50_L6ZSK9|unclassified	0.1703931794
+UniRef50_UPI00030A3B63: hypothetical protein	0.1703894059
+UniRef50_UPI00030A3B63: hypothetical protein|unclassified	0.1703894059
+UniRef50_UPI000362B170: hypothetical protein	0.1703817570
+UniRef50_UPI000362B170: hypothetical protein|unclassified	0.1703817570
+UniRef50_K8E4Y5	0.1703700934
+UniRef50_K8E4Y5|unclassified	0.1703700934
+UniRef50_W8F058	0.1703681036
+UniRef50_W8F058|unclassified	0.1703681036
+UniRef50_I0UJD1: Transposase, part of IS element	0.1703647903
+UniRef50_I0UJD1: Transposase, part of IS element|unclassified	0.1703647903
+UniRef50_UPI00047E1F76: hypothetical protein	0.1703598846
+UniRef50_UPI00047E1F76: hypothetical protein|unclassified	0.1703598846
+UniRef50_UPI00036B1589: hypothetical protein	0.1703390597
+UniRef50_UPI00036B1589: hypothetical protein|unclassified	0.1703390597
+UniRef50_UPI0002895D29: nitrate/sulfonate ABC transporter permease, partial	0.1703314391
+UniRef50_UPI0002895D29: nitrate/sulfonate ABC transporter permease, partial|unclassified	0.1703314391
+UniRef50_Q869S7: Succinyl-CoA ligase [GDP-forming] subunit beta, mitochondrial	0.1703263309
+UniRef50_Q869S7: Succinyl-CoA ligase [GDP-forming] subunit beta, mitochondrial|unclassified	0.1703263309
+UniRef50_K2MD54	0.1703256720
+UniRef50_K2MD54|unclassified	0.1703256720
+UniRef50_UPI0003B66D29: MULTISPECIES: 50S ribosomal protein L22	0.1703105472
+UniRef50_UPI0003B66D29: MULTISPECIES: 50S ribosomal protein L22|unclassified	0.1703105472
+UniRef50_UPI000368E720: hypothetical protein	0.1702620472
+UniRef50_UPI000368E720: hypothetical protein|unclassified	0.1702620472
+UniRef50_UPI0003694550: hypothetical protein	0.1702596437
+UniRef50_UPI0003694550: hypothetical protein|unclassified	0.1702596437
+UniRef50_R4X5W4	0.1702519334
+UniRef50_R4X5W4|unclassified	0.1702519334
+UniRef50_K2JDP8	0.1702436717
+UniRef50_K2JDP8|unclassified	0.1702436717
+UniRef50_B1YJW5: Non-canonical purine NTP pyrophosphatase	0.1702284023
+UniRef50_B1YJW5: Non-canonical purine NTP pyrophosphatase|unclassified	0.1702284023
+UniRef50_B7CUX0	0.1702173356
+UniRef50_B7CUX0|unclassified	0.1702173356
+UniRef50_I4CRK2	0.1702137501
+UniRef50_I4CRK2|unclassified	0.1702137501
+UniRef50_UPI000273AAE5: PREDICTED: phosphoglycerate kinase 1-like	0.1702100577
+UniRef50_UPI000273AAE5: PREDICTED: phosphoglycerate kinase 1-like|unclassified	0.1702100577
+UniRef50_UPI0003B33F05: cell division protein FtsW, partial	0.1702095303
+UniRef50_UPI0003B33F05: cell division protein FtsW, partial|unclassified	0.1702095303
+UniRef50_M2JL47: Putative transposase fregment	0.1702005179
+UniRef50_M2JL47: Putative transposase fregment|unclassified	0.1702005179
+UniRef50_UPI0003804C63: hypothetical protein	0.1701991840
+UniRef50_UPI0003804C63: hypothetical protein|unclassified	0.1701991840
+UniRef50_K1KHQ2	0.1701964624
+UniRef50_K1KHQ2|unclassified	0.1701964624
+UniRef50_F3FGH0: Putative lipoprotein (Fragment)	0.1701856498
+UniRef50_F3FGH0: Putative lipoprotein (Fragment)|unclassified	0.1701856498
+UniRef50_UPI00047861B5: hypothetical protein	0.1701846245
+UniRef50_UPI00047861B5: hypothetical protein|unclassified	0.1701846245
+UniRef50_Y0DUE2	0.1701766371
+UniRef50_Y0DUE2|unclassified	0.1701766371
+UniRef50_Q97KN0: Adenine deaminase	0.1701730152
+UniRef50_Q97KN0: Adenine deaminase|unclassified	0.1701730152
+UniRef50_UPI000429297D: biopolymer transporter ExbD	0.1701675981
+UniRef50_UPI000429297D: biopolymer transporter ExbD|unclassified	0.1701675981
+UniRef50_UPI000474EB89: choline transporter	0.1701573834
+UniRef50_UPI000474EB89: choline transporter|unclassified	0.1701573834
+UniRef50_H6SQR1	0.1701528175
+UniRef50_H6SQR1|unclassified	0.1701528175
+UniRef50_T2RGV0: SH3 domain protein	0.1701526686
+UniRef50_T2RGV0: SH3 domain protein|unclassified	0.1701526686
+UniRef50_X1GCV8: Marine sediment metagenome DNA, contig: S03H2_C02777	0.1701457751
+UniRef50_X1GCV8: Marine sediment metagenome DNA, contig: S03H2_C02777|unclassified	0.1701457751
+UniRef50_B4SL82: Ribosomal protein L11 methyltransferase	0.1701420579
+UniRef50_B4SL82: Ribosomal protein L11 methyltransferase|unclassified	0.1701420579
+UniRef50_UPI00041DFD64: hypothetical protein	0.1701293024
+UniRef50_UPI00041DFD64: hypothetical protein|unclassified	0.1701293024
+UniRef50_G3IM91: PR domain zinc finger protein 16	0.1701185775
+UniRef50_G3IM91: PR domain zinc finger protein 16|unclassified	0.1701185775
+UniRef50_B6J887: Orotidine 5'-phosphate decarboxylase	0.1701165549
+UniRef50_B6J887: Orotidine 5'-phosphate decarboxylase|unclassified	0.1701165549
+UniRef50_UPI00036C23A5: histidine kinase	0.1701144494
+UniRef50_UPI00036C23A5: histidine kinase|unclassified	0.1701144494
+UniRef50_UPI0003784C09: hypothetical protein, partial	0.1700873183
+UniRef50_UPI0003784C09: hypothetical protein, partial|unclassified	0.1700873183
+UniRef50_UPI00036D446F: hypothetical protein	0.1700830642
+UniRef50_UPI00036D446F: hypothetical protein|unclassified	0.1700830642
+UniRef50_F9PQH3: Cobalt transport protein	0.1700823733
+UniRef50_F9PQH3: Cobalt transport protein|unclassified	0.1700823733
+UniRef50_Q4KC87: Fe(3+) ions import ATP-binding protein FbpC	0.1700608279
+UniRef50_Q4KC87: Fe(3+) ions import ATP-binding protein FbpC|unclassified	0.1700608279
+UniRef50_A0A024DZ75	0.1700604516
+UniRef50_A0A024DZ75|unclassified	0.1700604516
+UniRef50_X8JCV2	0.1700596302
+UniRef50_X8JCV2|unclassified	0.1700596302
+UniRef50_UPI000476CE7F: formyltetrahydrofolate deformylase	0.1700512347
+UniRef50_UPI000476CE7F: formyltetrahydrofolate deformylase|unclassified	0.1700512347
+UniRef50_UPI00046D3AE3: hypothetical protein	0.1700505662
+UniRef50_UPI00046D3AE3: hypothetical protein|unclassified	0.1700505662
+UniRef50_UPI00046D83DE: hypothetical protein	0.1700491474
+UniRef50_UPI00046D83DE: hypothetical protein|unclassified	0.1700491474
+UniRef50_N9V5G1: SecC motif-containing protein	0.1700365365
+UniRef50_N9V5G1: SecC motif-containing protein|unclassified	0.1700365365
+UniRef50_UPI00047D0C6C: hypothetical protein	0.1700358578
+UniRef50_UPI00047D0C6C: hypothetical protein|unclassified	0.1700358578
+UniRef50_B8ERF2: Transcriptional regulator, CarD family	0.1700312609
+UniRef50_B8ERF2: Transcriptional regulator, CarD family|unclassified	0.1700312609
+UniRef50_UPI00034575CD: hypothetical protein	0.1699924718
+UniRef50_UPI00034575CD: hypothetical protein|unclassified	0.1699924718
+UniRef50_F7JIJ0	0.1699870215
+UniRef50_F7JIJ0|unclassified	0.1699870215
+UniRef50_Q2W3Z4: Predicted membrane protein	0.1699811918
+UniRef50_Q2W3Z4: Predicted membrane protein|unclassified	0.1699811918
+UniRef50_UPI00035D9339: hypothetical protein, partial	0.1699799011
+UniRef50_UPI00035D9339: hypothetical protein, partial|unclassified	0.1699799011
+UniRef50_S9QTV5	0.1699673357
+UniRef50_S9QTV5|unclassified	0.1699673357
+UniRef50_UPI00040A6B89: alanine acetyltransferase	0.1699613823
+UniRef50_UPI00040A6B89: alanine acetyltransferase|unclassified	0.1699613823
+UniRef50_Q2G607: Phosphate import ATP-binding protein PstB	0.1699545577
+UniRef50_Q2G607: Phosphate import ATP-binding protein PstB|unclassified	0.1699545577
+UniRef50_A0A033UXG3	0.1699361767
+UniRef50_A0A033UXG3|unclassified	0.1699361767
+UniRef50_UPI00037E68C3: hypothetical protein	0.1699328753
+UniRef50_UPI00037E68C3: hypothetical protein|unclassified	0.1699328753
+UniRef50_UPI0002260023: ABC transporter	0.1699314598
+UniRef50_UPI0002260023: ABC transporter|unclassified	0.1699314598
+UniRef50_E0SK44: Conserved protein	0.1699296981
+UniRef50_E0SK44: Conserved protein|unclassified	0.1699296981
+UniRef50_UPI0001B43CF2: hypothetical protein, partial	0.1699223116
+UniRef50_UPI0001B43CF2: hypothetical protein, partial|unclassified	0.1699223116
+UniRef50_L0A0T1: Putative phosphatase, C-terminal domain of histone macro H2A1 like protein	0.1699222352
+UniRef50_L0A0T1: Putative phosphatase, C-terminal domain of histone macro H2A1 like protein|unclassified	0.1699222352
+UniRef50_Q9KDD8: Uridine kinase	0.1699188201
+UniRef50_Q9KDD8: Uridine kinase|unclassified	0.1699188201
+UniRef50_UPI00035C5E4E: hypothetical protein	0.1699141057
+UniRef50_UPI00035C5E4E: hypothetical protein|unclassified	0.1699141057
+UniRef50_I0G241	0.1699140785
+UniRef50_I0G241|unclassified	0.1699140785
+UniRef50_UPI0004710EE3: hypothetical protein	0.1698876437
+UniRef50_UPI0004710EE3: hypothetical protein|unclassified	0.1698876437
+UniRef50_M1WVR1	0.1698723582
+UniRef50_M1WVR1|unclassified	0.1698723582
+UniRef50_UPI000440C47D: PREDICTED: manganese-dependent ADP-ribose/CDP-alcohol diphosphatase-like isoform X2	0.1698700162
+UniRef50_UPI000440C47D: PREDICTED: manganese-dependent ADP-ribose/CDP-alcohol diphosphatase-like isoform X2|unclassified	0.1698700162
+UniRef50_UPI00037B93A9: NAD-dependent dehydratase, partial	0.1698615935
+UniRef50_UPI00037B93A9: NAD-dependent dehydratase, partial|unclassified	0.1698615935
+UniRef50_UPI000374ED14: hypothetical protein	0.1698435528
+UniRef50_UPI000374ED14: hypothetical protein|unclassified	0.1698435528
+UniRef50_U2XK65: Sugar ABC transporter substrate-binding protein	0.1698414978
+UniRef50_U2XK65: Sugar ABC transporter substrate-binding protein|unclassified	0.1698414978
+UniRef50_UPI0003D2F2ED: arac-type DNA-binding domain-containing protein	0.1698339594
+UniRef50_UPI0003D2F2ED: arac-type DNA-binding domain-containing protein|unclassified	0.1698339594
+UniRef50_A4WZN5	0.1698283370
+UniRef50_A4WZN5|unclassified	0.1698283370
+UniRef50_Q2IL11: NADH-quinone oxidoreductase subunit A	0.1698001691
+UniRef50_Q2IL11: NADH-quinone oxidoreductase subunit A|unclassified	0.1698001691
+UniRef50_UPI00047C9A63: hypothetical protein	0.1697816413
+UniRef50_UPI00047C9A63: hypothetical protein|unclassified	0.1697816413
+UniRef50_L8BDK8: Sodium/hydrogen exchanger family protein	0.1697735465
+UniRef50_L8BDK8: Sodium/hydrogen exchanger family protein|unclassified	0.1697735465
+UniRef50_Q7N451: UPF0225 protein plu2503	0.1697713419
+UniRef50_Q7N451: UPF0225 protein plu2503|unclassified	0.1697713419
+UniRef50_UPI000372B622: hypothetical protein	0.1697683816
+UniRef50_UPI000372B622: hypothetical protein|unclassified	0.1697683816
+UniRef50_Q04JH4: Triosephosphate isomerase	0.1697625446
+UniRef50_Q04JH4: Triosephosphate isomerase|unclassified	0.1697625446
+UniRef50_UPI00030B446C: hypothetical protein	0.1697476570
+UniRef50_UPI00030B446C: hypothetical protein|unclassified	0.1697476570
+UniRef50_W7Z301	0.1697420685
+UniRef50_W7Z301|unclassified	0.1697420685
+UniRef50_A8LLG1	0.1697419419
+UniRef50_A8LLG1|unclassified	0.1697419419
+UniRef50_UPI000368D6F0: hypothetical protein	0.1697376316
+UniRef50_UPI000368D6F0: hypothetical protein|unclassified	0.1697376316
+UniRef50_UPI000464DEA2: hypothetical protein	0.1697346997
+UniRef50_UPI000464DEA2: hypothetical protein|unclassified	0.1697346997
+UniRef50_A4XYY3: Probable nicotinate-nucleotide adenylyltransferase	0.1697332772
+UniRef50_A4XYY3: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.1697332772
+UniRef50_X1LFP4: Marine sediment metagenome DNA, contig: S06H3_C00676 (Fragment)	0.1697312776
+UniRef50_X1LFP4: Marine sediment metagenome DNA, contig: S06H3_C00676 (Fragment)|unclassified	0.1697312776
+UniRef50_UPI0003B5EE2B: glutamine amidotransferase	0.1697276005
+UniRef50_UPI0003B5EE2B: glutamine amidotransferase|unclassified	0.1697276005
+UniRef50_A5GMN1: Glycine--tRNA ligase alpha subunit	0.1696930229
+UniRef50_A5GMN1: Glycine--tRNA ligase alpha subunit|unclassified	0.1696930229
+UniRef50_W4ALQ8	0.1696901071
+UniRef50_W4ALQ8|unclassified	0.1696901071
+UniRef50_A6CJT6	0.1696883776
+UniRef50_A6CJT6|unclassified	0.1696883776
+UniRef50_A1TQQ7: Lytic transglycosylase, catalytic	0.1696817864
+UniRef50_A1TQQ7: Lytic transglycosylase, catalytic|unclassified	0.1696817864
+UniRef50_P20186	0.1696677038
+UniRef50_P20186|unclassified	0.1696677038
+UniRef50_P55611: Probable trehalose-phosphate phosphatase	0.1696394588
+UniRef50_P55611: Probable trehalose-phosphate phosphatase|unclassified	0.1696394588
+UniRef50_Q5ZS58: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.1696314531
+UniRef50_Q5ZS58: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.1696314531
+UniRef50_UPI00016A93BF: xylulokinase, partial	0.1696270864
+UniRef50_UPI00016A93BF: xylulokinase, partial|unclassified	0.1696270864
+UniRef50_Q1PY50	0.1696231383
+UniRef50_Q1PY50|unclassified	0.1696231383
+UniRef50_Q9R6K9: Tiorf50 protein	0.1696209729
+UniRef50_Q9R6K9: Tiorf50 protein|unclassified	0.1696209729
+UniRef50_B5YJD3: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	0.1696148604
+UniRef50_B5YJD3: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.1696148604
+UniRef50_K0SWW4	0.1696037908
+UniRef50_K0SWW4|unclassified	0.1696037908
+UniRef50_UPI0004699006: acetylglucosaminyldiphospho-UDP acetyl-beta-D-mannosaminyltransferase	0.1696022888
+UniRef50_UPI0004699006: acetylglucosaminyldiphospho-UDP acetyl-beta-D-mannosaminyltransferase|unclassified	0.1696022888
+UniRef50_I4L2C3	0.1695961090
+UniRef50_I4L2C3|unclassified	0.1695961090
+UniRef50_UPI000381FE83: ribosome-binding factor A	0.1695857152
+UniRef50_UPI000381FE83: ribosome-binding factor A|unclassified	0.1695857152
+UniRef50_UPI0002891AB1: MsbA	0.1695756922
+UniRef50_UPI0002891AB1: MsbA|unclassified	0.1695756922
+UniRef50_X1SN80: Marine sediment metagenome DNA, contig: S12H4_S01016	0.1695679667
+UniRef50_X1SN80: Marine sediment metagenome DNA, contig: S12H4_S01016|unclassified	0.1695679667
+UniRef50_V1SF62: Outer membrane-specific lipoprotein transporter subunit LolE	0.1695670291
+UniRef50_V1SF62: Outer membrane-specific lipoprotein transporter subunit LolE|unclassified	0.1695670291
+UniRef50_Q2C597: Hypothetical esterase/lipase ybfF	0.1695628454
+UniRef50_Q2C597: Hypothetical esterase/lipase ybfF|unclassified	0.1695628454
+UniRef50_R5FFX0	0.1695571888
+UniRef50_R5FFX0|unclassified	0.1695571888
+UniRef50_UPI00028886C3: acetylornithine deacetylase	0.1695570159
+UniRef50_UPI00028886C3: acetylornithine deacetylase|unclassified	0.1695570159
+UniRef50_UPI000470D0F7: hypothetical protein	0.1695148584
+UniRef50_UPI000470D0F7: hypothetical protein|unclassified	0.1695148584
+UniRef50_G8P9V9: Oligoendopeptidase F	0.1695066153
+UniRef50_G8P9V9: Oligoendopeptidase F|unclassified	0.1695066153
+UniRef50_UPI000237DC3E: hypothetical protein	0.1694861639
+UniRef50_UPI000237DC3E: hypothetical protein|unclassified	0.1694861639
+UniRef50_UPI00035EE4F1: hypothetical protein, partial	0.1694732487
+UniRef50_UPI00035EE4F1: hypothetical protein, partial|unclassified	0.1694732487
+UniRef50_D5Z039	0.1694710262
+UniRef50_D5Z039|unclassified	0.1694710262
+UniRef50_UPI000467BD3F: signal peptidase I	0.1694570686
+UniRef50_UPI000467BD3F: signal peptidase I|unclassified	0.1694570686
+UniRef50_UPI0003B52280: diguanylate cyclase	0.1694419980
+UniRef50_UPI0003B52280: diguanylate cyclase|unclassified	0.1694419980
+UniRef50_UPI000472F760: hypothetical protein	0.1694412927
+UniRef50_UPI000472F760: hypothetical protein|unclassified	0.1694412927
+UniRef50_C0BG39	0.1694171310
+UniRef50_C0BG39|unclassified	0.1694171310
+UniRef50_UPI00037D293D: hypothetical protein	0.1693992723
+UniRef50_UPI00037D293D: hypothetical protein|unclassified	0.1693992723
+UniRef50_E8KIP2: STAS domain protein	0.1693965755
+UniRef50_E8KIP2: STAS domain protein|unclassified	0.1693965755
+UniRef50_UPI000410B078: ABC transporter ATP-binding protein	0.1693906041
+UniRef50_UPI000410B078: ABC transporter ATP-binding protein|unclassified	0.1693906041
+UniRef50_X1WKZ8	0.1693585496
+UniRef50_X1WKZ8|unclassified	0.1693585496
+UniRef50_J2DHS3	0.1693447999
+UniRef50_J2DHS3|unclassified	0.1693447999
+UniRef50_UPI00047212B5: spermidine/putrescine ABC transporter substrate-binding protein	0.1693141621
+UniRef50_UPI00047212B5: spermidine/putrescine ABC transporter substrate-binding protein|unclassified	0.1693141621
+UniRef50_T1AMS3: Metallophosphoesterase (Fragment)	0.1692935725
+UniRef50_T1AMS3: Metallophosphoesterase (Fragment)|unclassified	0.1692935725
+UniRef50_UPI0003B6357F: hypothetical protein	0.1692919562
+UniRef50_UPI0003B6357F: hypothetical protein|unclassified	0.1692919562
+UniRef50_U2YP12	0.1692794975
+UniRef50_U2YP12|unclassified	0.1692794975
+UniRef50_W6K5U2	0.1692753167
+UniRef50_W6K5U2|unclassified	0.1692753167
+UniRef50_C6CR45	0.1692695845
+UniRef50_C6CR45|unclassified	0.1692695845
+UniRef50_V6U838	0.1692564356
+UniRef50_V6U838|unclassified	0.1692564356
+UniRef50_UPI00036C70D3: hypothetical protein	0.1692526084
+UniRef50_UPI00036C70D3: hypothetical protein|unclassified	0.1692526084
+UniRef50_UPI0003F94B6D: hypothetical protein	0.1692497899
+UniRef50_UPI0003F94B6D: hypothetical protein|unclassified	0.1692497899
+UniRef50_UPI0002630DD8: transposase IS3/IS911 family protein	0.1692428572
+UniRef50_UPI0002630DD8: transposase IS3/IS911 family protein|unclassified	0.1692428572
+UniRef50_UPI0002192621: hypothetical protein	0.1692359152
+UniRef50_UPI0002192621: hypothetical protein|unclassified	0.1692359152
+UniRef50_B8I601: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.1692308704
+UniRef50_B8I601: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.1692308704
+UniRef50_W5YA96: Anthranilate synthase component II	0.1692010764
+UniRef50_W5YA96: Anthranilate synthase component II|unclassified	0.1692010764
+UniRef50_F0KXB4	0.1691897154
+UniRef50_F0KXB4|unclassified	0.1691897154
+UniRef50_UPI0003795936: hypothetical protein	0.1691830556
+UniRef50_UPI0003795936: hypothetical protein|unclassified	0.1691830556
+UniRef50_UPI00044416EA: PREDICTED: LOW QUALITY PROTEIN: filaggrin-2-like	0.1691814749
+UniRef50_UPI00044416EA: PREDICTED: LOW QUALITY PROTEIN: filaggrin-2-like|unclassified	0.1691814749
+UniRef50_UPI0002D6DB8A: hypothetical protein	0.1691756365
+UniRef50_UPI0002D6DB8A: hypothetical protein|unclassified	0.1691756365
+UniRef50_T8XPN6: Poly-beta-1,6-N-acetyl-D-glucosamine export protein	0.1691668325
+UniRef50_T8XPN6: Poly-beta-1,6-N-acetyl-D-glucosamine export protein|unclassified	0.1691668325
+UniRef50_M5E763: UPF0225 protein TOL_2899	0.1691645040
+UniRef50_M5E763: UPF0225 protein TOL_2899|unclassified	0.1691645040
+UniRef50_UPI00037E5D09: LuxR family transcriptional regulator	0.1691568348
+UniRef50_UPI00037E5D09: LuxR family transcriptional regulator|unclassified	0.1691568348
+UniRef50_UPI00040D8CBE: potassium transporter KefB	0.1691356001
+UniRef50_UPI00040D8CBE: potassium transporter KefB|unclassified	0.1691356001
+UniRef50_UPI000255605C: ABC transporter ATP-binding protein	0.1691310824
+UniRef50_UPI000255605C: ABC transporter ATP-binding protein|unclassified	0.1691310824
+UniRef50_B5YDB0: Thymidine kinase	0.1691104849
+UniRef50_B5YDB0: Thymidine kinase|unclassified	0.1691104849
+UniRef50_UPI00047C2D77: MFS transporter	0.1691013985
+UniRef50_UPI00047C2D77: MFS transporter|unclassified	0.1691013985
+UniRef50_UPI0003B40A32: GntR family transcriptional regulator	0.1690765068
+UniRef50_UPI0003B40A32: GntR family transcriptional regulator|unclassified	0.1690765068
+UniRef50_W8YLN4	0.1690716104
+UniRef50_W8YLN4|unclassified	0.1690716104
+UniRef50_W8YS59	0.1690662801
+UniRef50_W8YS59|unclassified	0.1690662801
+UniRef50_G8VSS3: Baseplate assembly protein J	0.1690528316
+UniRef50_G8VSS3: Baseplate assembly protein J|unclassified	0.1690528316
+UniRef50_Q49ZS1	0.1690254117
+UniRef50_Q49ZS1|unclassified	0.1690254117
+UniRef50_D9WR73: Anti-sigma B factor RsbT	0.1690248622
+UniRef50_D9WR73: Anti-sigma B factor RsbT|unclassified	0.1690248622
+UniRef50_M9RCR3	0.1690041330
+UniRef50_M9RCR3|unclassified	0.1690041330
+UniRef50_A8LJS3	0.1690035701
+UniRef50_A8LJS3|unclassified	0.1690035701
+UniRef50_UPI000465A316: hypothetical protein, partial	0.1689828533
+UniRef50_UPI000465A316: hypothetical protein, partial|unclassified	0.1689828533
+UniRef50_A0A059IKH6	0.1689561359
+UniRef50_A0A059IKH6|unclassified	0.1689561359
+UniRef50_Q7NLT7: Leucyl/phenylalanyl-tRNA--protein transferase	0.1689434479
+UniRef50_Q7NLT7: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.1689434479
+UniRef50_UPI000371C3A6: hypothetical protein	0.1689405618
+UniRef50_UPI000371C3A6: hypothetical protein|unclassified	0.1689405618
+UniRef50_A1B402	0.1689402650
+UniRef50_A1B402|unclassified	0.1689402650
+UniRef50_P15378: Type 4 prepilin-like proteins leader peptide-processing enzyme	0.1689398097
+UniRef50_P15378: Type 4 prepilin-like proteins leader peptide-processing enzyme|unclassified	0.1689398097
+UniRef50_V1K456	0.1689221669
+UniRef50_V1K456|unclassified	0.1689221669
+UniRef50_UPI00036D76F1: hypothetical protein	0.1689213693
+UniRef50_UPI00036D76F1: hypothetical protein|unclassified	0.1689213693
+UniRef50_Q0BQ22: Usg protein	0.1689034756
+UniRef50_Q0BQ22: Usg protein|unclassified	0.1689034756
+UniRef50_C7D6S0	0.1688984288
+UniRef50_C7D6S0|unclassified	0.1688984288
+UniRef50_C5C6R4	0.1688889357
+UniRef50_C5C6R4|unclassified	0.1688889357
+UniRef50_UPI000475AEB0: sulfonate ABC transporter ATP-binding protein	0.1688771289
+UniRef50_UPI000475AEB0: sulfonate ABC transporter ATP-binding protein|unclassified	0.1688771289
+UniRef50_W6RHL2: DNA end-binding protein Ku	0.1688680331
+UniRef50_W6RHL2: DNA end-binding protein Ku|unclassified	0.1688680331
+UniRef50_C6MAY4	0.1688666763
+UniRef50_C6MAY4|unclassified	0.1688666763
+UniRef50_UPI00047171CA: sprT, partial	0.1688547819
+UniRef50_UPI00047171CA: sprT, partial|unclassified	0.1688547819
+UniRef50_W7ICE6	0.1688470877
+UniRef50_W7ICE6|unclassified	0.1688470877
+UniRef50_M1P7F7: Cytoplasmic membrane protein	0.1688276349
+UniRef50_M1P7F7: Cytoplasmic membrane protein|unclassified	0.1688276349
+UniRef50_F2PQ83	0.1688249444
+UniRef50_F2PQ83|unclassified	0.1688249444
+UniRef50_K7U5I5	0.1688232668
+UniRef50_K7U5I5|unclassified	0.1688232668
+UniRef50_S5XKC6: HemY domain-containing protein	0.1688200285
+UniRef50_S5XKC6: HemY domain-containing protein|unclassified	0.1688200285
+UniRef50_UPI00037266DC: hypothetical protein	0.1688018839
+UniRef50_UPI00037266DC: hypothetical protein|unclassified	0.1688018839
+UniRef50_R1CEY1	0.1687955079
+UniRef50_R1CEY1|unclassified	0.1687955079
+UniRef50_A5D2A7: S-adenosylmethionine decarboxylase proenzyme	0.1687801863
+UniRef50_A5D2A7: S-adenosylmethionine decarboxylase proenzyme|unclassified	0.1687801863
+UniRef50_U4V241: Sodium/hydrogen exchanger family	0.1687719146
+UniRef50_U4V241: Sodium/hydrogen exchanger family|unclassified	0.1687719146
+UniRef50_R5GI81	0.1687667991
+UniRef50_R5GI81|unclassified	0.1687667991
+UniRef50_UPI0002E99FC0: hypothetical protein	0.1687525035
+UniRef50_UPI0002E99FC0: hypothetical protein|unclassified	0.1687525035
+UniRef50_A0A058SPM6: Putative colanic acid biosynthesis protein	0.1687505900
+UniRef50_A0A058SPM6: Putative colanic acid biosynthesis protein|unclassified	0.1687505900
+UniRef50_B3HEL0	0.1687430829
+UniRef50_B3HEL0|unclassified	0.1687430829
+UniRef50_UPI0003644ABC: hypothetical protein	0.1687365707
+UniRef50_UPI0003644ABC: hypothetical protein|unclassified	0.1687365707
+UniRef50_A0A033V2V9	0.1687296676
+UniRef50_A0A033V2V9|unclassified	0.1687296676
+UniRef50_UPI0002556201: beta-ketoacyl synthase	0.1687291948
+UniRef50_UPI0002556201: beta-ketoacyl synthase|unclassified	0.1687291948
+UniRef50_UPI000378579F: hypothetical protein	0.1687273986
+UniRef50_UPI000378579F: hypothetical protein|unclassified	0.1687273986
+UniRef50_R8GK15	0.1686986432
+UniRef50_R8GK15|unclassified	0.1686986432
+UniRef50_UPI0004268C03: hypothetical protein	0.1686894291
+UniRef50_UPI0004268C03: hypothetical protein|unclassified	0.1686894291
+UniRef50_UPI0003642DB5: hypothetical protein	0.1686720817
+UniRef50_UPI0003642DB5: hypothetical protein|unclassified	0.1686720817
+UniRef50_B4E787: DsbA-thioredoxin family protein	0.1686634198
+UniRef50_B4E787: DsbA-thioredoxin family protein|unclassified	0.1686634198
+UniRef50_UPI00039010C7: hypothetical protein	0.1686533619
+UniRef50_UPI00039010C7: hypothetical protein|unclassified	0.1686533619
+UniRef50_UPI000395ADC3: PREDICTED: transcription initiation factor TFIID subunit 4-like	0.1686024385
+UniRef50_UPI000395ADC3: PREDICTED: transcription initiation factor TFIID subunit 4-like|unclassified	0.1686024385
+UniRef50_UPI00037D7B24: hypothetical protein	0.1685737534
+UniRef50_UPI00037D7B24: hypothetical protein|unclassified	0.1685737534
+UniRef50_UPI000476DD64: acetolactate synthase catalytic subunit	0.1685736763
+UniRef50_UPI000476DD64: acetolactate synthase catalytic subunit|unclassified	0.1685736763
+UniRef50_R7UXT3	0.1685607242
+UniRef50_R7UXT3|unclassified	0.1685607242
+UniRef50_UPI00035C6E64: hypothetical protein, partial	0.1685438358
+UniRef50_UPI00035C6E64: hypothetical protein, partial|unclassified	0.1685438358
+UniRef50_V7EPA0: Glucose starvation-inducible protein B	0.1685365218
+UniRef50_V7EPA0: Glucose starvation-inducible protein B|unclassified	0.1685365218
+UniRef50_UPI00029D79B4: PREDICTED: 40S ribosomal protein S15-like	0.1685301440
+UniRef50_UPI00029D79B4: PREDICTED: 40S ribosomal protein S15-like|unclassified	0.1685301440
+UniRef50_UPI0003646E8E: hypothetical protein, partial	0.1685191619
+UniRef50_UPI0003646E8E: hypothetical protein, partial|unclassified	0.1685191619
+UniRef50_A0PXX7: Energy-coupling factor transporter ATP-binding protein EcfA1	0.1685187970
+UniRef50_A0PXX7: Energy-coupling factor transporter ATP-binding protein EcfA1|unclassified	0.1685187970
+UniRef50_C0Z6T1: N-acetyl-gamma-glutamyl-phosphate reductase	0.1685183551
+UniRef50_C0Z6T1: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.1685183551
+UniRef50_K2HM53: Senescence marker protein-30 (SMP-30)	0.1685169736
+UniRef50_K2HM53: Senescence marker protein-30 (SMP-30)|unclassified	0.1685169736
+UniRef50_Q5LMH8: RNA pyrophosphohydrolase	0.1685158136
+UniRef50_Q5LMH8: RNA pyrophosphohydrolase|unclassified	0.1685158136
+UniRef50_UPI00037FD309: hypothetical protein	0.1685065924
+UniRef50_UPI00037FD309: hypothetical protein|unclassified	0.1685065924
+UniRef50_Q2SM53: SufE protein probably involved in Fe-S center assembly	0.1685044894
+UniRef50_Q2SM53: SufE protein probably involved in Fe-S center assembly|unclassified	0.1685044894
+UniRef50_G0E1L5: UPF0502 protein EAE_16310	0.1684941108
+UniRef50_G0E1L5: UPF0502 protein EAE_16310|unclassified	0.1684941108
+UniRef50_A6H1R4: NADH-quinone oxidoreductase subunit A	0.1684824070
+UniRef50_A6H1R4: NADH-quinone oxidoreductase subunit A|unclassified	0.1684824070
+UniRef50_Q8RDC8: Ribosomal RNA small subunit methyltransferase A	0.1684751572
+UniRef50_Q8RDC8: Ribosomal RNA small subunit methyltransferase A|unclassified	0.1684751572
+UniRef50_UPI000411F9DF: hypothetical protein	0.1684480354
+UniRef50_UPI000411F9DF: hypothetical protein|unclassified	0.1684480354
+UniRef50_J6LAU7: Exopolyphosphatase	0.1684453673
+UniRef50_J6LAU7: Exopolyphosphatase|unclassified	0.1684453673
+UniRef50_Q2K6L3: sn-glycerol-3-phosphate import ATP-binding protein UgpC 1	0.1684383155
+UniRef50_Q2K6L3: sn-glycerol-3-phosphate import ATP-binding protein UgpC 1|unclassified	0.1684383155
+UniRef50_Q2FNC6: von Willebrand factor, type A	0.1684344374
+UniRef50_Q2FNC6: von Willebrand factor, type A|unclassified	0.1684344374
+UniRef50_UPI0003765EEA: hypothetical protein	0.1684066865
+UniRef50_UPI0003765EEA: hypothetical protein|unclassified	0.1684066865
+UniRef50_N2J5D2	0.1684065277
+UniRef50_N2J5D2|unclassified	0.1684065277
+UniRef50_D5EK79	0.1683959371
+UniRef50_D5EK79|unclassified	0.1683959371
+UniRef50_A8IL90: Predicted protein	0.1683896019
+UniRef50_A8IL90: Predicted protein|unclassified	0.1683896019
+UniRef50_UPI0003F49601: hypothetical protein TREMEDRAFT_38243	0.1683745011
+UniRef50_UPI0003F49601: hypothetical protein TREMEDRAFT_38243|unclassified	0.1683745011
+UniRef50_A1WW41: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase	0.1683632881
+UniRef50_A1WW41: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase|unclassified	0.1683632881
+UniRef50_UPI000455E4AF: glutathione degradosome	0.1683568665
+UniRef50_UPI000455E4AF: glutathione degradosome|unclassified	0.1683568665
+UniRef50_P93345: Putative carbamoyl phosphate synthetase, large chain (Fragment)	0.1683343299
+UniRef50_P93345: Putative carbamoyl phosphate synthetase, large chain (Fragment)|unclassified	0.1683343299
+UniRef50_UPI0003453892: hypothetical protein	0.1683285796
+UniRef50_UPI0003453892: hypothetical protein|unclassified	0.1683285796
+UniRef50_P42064: Oligopeptide transport ATP-binding protein AppD	0.1683261346
+UniRef50_P42064: Oligopeptide transport ATP-binding protein AppD|unclassified	0.1683261346
+UniRef50_W7CAQ1	0.1683237483
+UniRef50_W7CAQ1|unclassified	0.1683237483
+UniRef50_UPI000478CD68: translation initiation factor IF-2	0.1683103167
+UniRef50_UPI000478CD68: translation initiation factor IF-2|unclassified	0.1683103167
+UniRef50_Q87CZ0: Endonuclease V	0.1683027551
+UniRef50_Q87CZ0: Endonuclease V|unclassified	0.1683027551
+UniRef50_Q02SP1	0.1682978615
+UniRef50_Q02SP1|unclassified	0.1682978615
+UniRef50_L0MJV5: Type VI secretion protein IcmF	0.1682916855
+UniRef50_L0MJV5: Type VI secretion protein IcmF|unclassified	0.1682916855
+UniRef50_UPI00016A43A2: UvrD/REP helicase, partial	0.1682827351
+UniRef50_UPI00016A43A2: UvrD/REP helicase, partial|unclassified	0.1682827351
+UniRef50_X1R4V0: Marine sediment metagenome DNA, contig: S06H3_S20267 (Fragment)	0.1682720656
+UniRef50_X1R4V0: Marine sediment metagenome DNA, contig: S06H3_S20267 (Fragment)|unclassified	0.1682720656
+UniRef50_UPI0003B418EB: ribonuclease	0.1682595686
+UniRef50_UPI0003B418EB: ribonuclease|unclassified	0.1682595686
+UniRef50_U7NRP4	0.1682562353
+UniRef50_U7NRP4|unclassified	0.1682562353
+UniRef50_UPI00037E93F7: hypothetical protein	0.1682476695
+UniRef50_UPI00037E93F7: hypothetical protein|unclassified	0.1682476695
+UniRef50_Q0AME6: Arsenate reductase-like protein	0.1682430853
+UniRef50_Q0AME6: Arsenate reductase-like protein|unclassified	0.1682430853
+UniRef50_UPI000470EFB6: magnesium transporter CorA, partial	0.1682230627
+UniRef50_UPI000470EFB6: magnesium transporter CorA, partial|unclassified	0.1682230627
+UniRef50_UPI0004795315: acyl-phosphate glycerol 3-phosphate acyltransferase	0.1682215111
+UniRef50_UPI0004795315: acyl-phosphate glycerol 3-phosphate acyltransferase|unclassified	0.1682215111
+UniRef50_UPI00037B45E9: GTPase Era	0.1682121391
+UniRef50_UPI00037B45E9: GTPase Era|unclassified	0.1682121391
+UniRef50_UPI0004240114: ABC transporter ATP-binding protein	0.1682115825
+UniRef50_UPI0004240114: ABC transporter ATP-binding protein|unclassified	0.1682115825
+UniRef50_X8CKI5: CobQ/CobB/MinD/ParA nucleotide binding domain protein	0.1682010065
+UniRef50_X8CKI5: CobQ/CobB/MinD/ParA nucleotide binding domain protein|unclassified	0.1682010065
+UniRef50_UPI0004774299: aldehyde dehydrogenase, partial	0.1681996531
+UniRef50_UPI0004774299: aldehyde dehydrogenase, partial|unclassified	0.1681996531
+UniRef50_UPI000464996F: hypothetical protein	0.1681976907
+UniRef50_UPI000464996F: hypothetical protein|unclassified	0.1681976907
+UniRef50_UPI0004710EDE: hypothetical protein	0.1681960988
+UniRef50_UPI0004710EDE: hypothetical protein|unclassified	0.1681960988
+UniRef50_Q1GHV9: YjeF-related protein-like protein	0.1681769565
+UniRef50_Q1GHV9: YjeF-related protein-like protein|unclassified	0.1681769565
+UniRef50_Q08YP5	0.1681751933
+UniRef50_Q08YP5|unclassified	0.1681751933
+UniRef50_UPI00034B193F: hypothetical protein	0.1681748189
+UniRef50_UPI00034B193F: hypothetical protein|unclassified	0.1681748189
+UniRef50_J2MPR2: Type IV pilus biogenesis protein PilP	0.1681736198
+UniRef50_J2MPR2: Type IV pilus biogenesis protein PilP|unclassified	0.1681736198
+UniRef50_Q1LNK1	0.1681711931
+UniRef50_Q1LNK1|unclassified	0.1681711931
+UniRef50_UPI0004255E92: adenylosuccinate synthetase	0.1681362814
+UniRef50_UPI0004255E92: adenylosuccinate synthetase|unclassified	0.1681362814
+UniRef50_UPI0003C1A91A: PREDICTED: prostaglandin F synthase-like	0.1681332020
+UniRef50_UPI0003C1A91A: PREDICTED: prostaglandin F synthase-like|unclassified	0.1681332020
+UniRef50_UPI00035E5C37: hypothetical protein	0.1681292666
+UniRef50_UPI00035E5C37: hypothetical protein|unclassified	0.1681292666
+UniRef50_V7HCR8	0.1681274373
+UniRef50_V7HCR8|unclassified	0.1681274373
+UniRef50_UPI00047873F0: hypothetical protein	0.1681180792
+UniRef50_UPI00047873F0: hypothetical protein|unclassified	0.1681180792
+UniRef50_T0S2T4: PF08338 domain protein	0.1680956229
+UniRef50_T0S2T4: PF08338 domain protein|unclassified	0.1680956229
+UniRef50_UPI00041E727D: hypothetical protein	0.1680813829
+UniRef50_UPI00041E727D: hypothetical protein|unclassified	0.1680813829
+UniRef50_M1ZEG1	0.1680714824
+UniRef50_M1ZEG1|unclassified	0.1680714824
+UniRef50_G4E3T8: Putative solute symporter protein	0.1680708680
+UniRef50_G4E3T8: Putative solute symporter protein|unclassified	0.1680708680
+UniRef50_S6AUV7	0.1680678516
+UniRef50_S6AUV7|unclassified	0.1680678516
+UniRef50_B9TGU7	0.1680664259
+UniRef50_B9TGU7|unclassified	0.1680664259
+UniRef50_W0CM28: Cysteine synthase	0.1680513949
+UniRef50_W0CM28: Cysteine synthase|unclassified	0.1680513949
+UniRef50_A0A033N546	0.1680509524
+UniRef50_A0A033N546|unclassified	0.1680509524
+UniRef50_D6Y490: MaoC domain protein dehydratase	0.1680436016
+UniRef50_D6Y490: MaoC domain protein dehydratase|unclassified	0.1680436016
+UniRef50_P53780: Cystathionine beta-lyase, chloroplastic	0.1680417143
+UniRef50_P53780: Cystathionine beta-lyase, chloroplastic|unclassified	0.1680417143
+UniRef50_UPI0002B4A0D6: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial-like, partial	0.1680400019
+UniRef50_UPI0002B4A0D6: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial-like, partial|unclassified	0.1680400019
+UniRef50_M5DW33: Type 4 fimbrial biogenesis protein PilN	0.1680376374
+UniRef50_M5DW33: Type 4 fimbrial biogenesis protein PilN|unclassified	0.1680376374
+UniRef50_UPI00037CB222: hypothetical protein	0.1680286548
+UniRef50_UPI00037CB222: hypothetical protein|unclassified	0.1680286548
+UniRef50_E1V6H8	0.1680151198
+UniRef50_E1V6H8|unclassified	0.1680151198
+UniRef50_UPI0003646AB7: hypothetical protein	0.1680079402
+UniRef50_UPI0003646AB7: hypothetical protein|unclassified	0.1680079402
+UniRef50_Q43316: Porphobilinogen deaminase, chloroplastic	0.1680068442
+UniRef50_Q43316: Porphobilinogen deaminase, chloroplastic|unclassified	0.1680068442
+UniRef50_UPI00046A028D: polysaccharide deacetylase	0.1680044482
+UniRef50_UPI00046A028D: polysaccharide deacetylase|unclassified	0.1680044482
+UniRef50_B5DSZ2: GA28693	0.1680005375
+UniRef50_B5DSZ2: GA28693|unclassified	0.1680005375
+UniRef50_H0JDJ2: Putative lipoprotein	0.1679797821
+UniRef50_H0JDJ2: Putative lipoprotein|unclassified	0.1679797821
+UniRef50_UPI0004635973: fumarate hydratase	0.1679732441
+UniRef50_UPI0004635973: fumarate hydratase|unclassified	0.1679732441
+UniRef50_G5LTR3: TRAP-type C4-dicarboxylate transport system large permease (Fragment)	0.1679671705
+UniRef50_G5LTR3: TRAP-type C4-dicarboxylate transport system large permease (Fragment)|unclassified	0.1679671705
+UniRef50_B7LTE9: Transporter	0.1679663733
+UniRef50_B7LTE9: Transporter|unclassified	0.1679663733
+UniRef50_UPI000421D403: 5-deoxyglucuronate isomerase	0.1679654108
+UniRef50_UPI000421D403: 5-deoxyglucuronate isomerase|unclassified	0.1679654108
+UniRef50_X0T6M0: Marine sediment metagenome DNA, contig: S01H1_L00467 (Fragment)	0.1679634727
+UniRef50_X0T6M0: Marine sediment metagenome DNA, contig: S01H1_L00467 (Fragment)|unclassified	0.1679634727
+UniRef50_B3YAA0: Type VI secretion protein, family	0.1679622469
+UniRef50_B3YAA0: Type VI secretion protein, family|unclassified	0.1679622469
+UniRef50_L0MK27	0.1679568248
+UniRef50_L0MK27|unclassified	0.1679568248
+UniRef50_Q2GK85: Malate dehydrogenase	0.1679409138
+UniRef50_Q2GK85: Malate dehydrogenase|unclassified	0.1679409138
+UniRef50_B2UX19: Phosphoribosyl-AMP cyclohydrolase	0.1679263678
+UniRef50_B2UX19: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.1679263678
+UniRef50_UPI0003B692BB: hypothetical protein	0.1679219797
+UniRef50_UPI0003B692BB: hypothetical protein|unclassified	0.1679219797
+UniRef50_B0UCI6: Thioesterase superfamily protein	0.1679032775
+UniRef50_B0UCI6: Thioesterase superfamily protein|unclassified	0.1679032775
+UniRef50_UPI00035DE99C: hypothetical protein	0.1678955377
+UniRef50_UPI00035DE99C: hypothetical protein|unclassified	0.1678955377
+UniRef50_UPI0003B43A41: adenylosuccinate lyase	0.1678879261
+UniRef50_UPI0003B43A41: adenylosuccinate lyase|unclassified	0.1678879261
+UniRef50_E0XW78: Phosphoribosylformylglycinamidine (Fgam) synthase, purs component	0.1678850996
+UniRef50_E0XW78: Phosphoribosylformylglycinamidine (Fgam) synthase, purs component|unclassified	0.1678850996
+UniRef50_Q44473: Pyruvate kinase	0.1678793232
+UniRef50_Q44473: Pyruvate kinase|unclassified	0.1678793232
+UniRef50_UPI00047AE721: C4-dicarboxylate ABC transporter permease	0.1678725516
+UniRef50_UPI00047AE721: C4-dicarboxylate ABC transporter permease|unclassified	0.1678725516
+UniRef50_A4EPM0	0.1678492708
+UniRef50_A4EPM0|unclassified	0.1678492708
+UniRef50_X6MFA3	0.1678337431
+UniRef50_X6MFA3|unclassified	0.1678337431
+UniRef50_A0A023MWA7: Nitrite reductase	0.1678280565
+UniRef50_A0A023MWA7: Nitrite reductase|unclassified	0.1678280565
+UniRef50_S4MIU4	0.1678265594
+UniRef50_S4MIU4|unclassified	0.1678265594
+UniRef50_W1UKD1: Cobalt ABC transporter, ATPase subunit (Fragment)	0.1678211572
+UniRef50_W1UKD1: Cobalt ABC transporter, ATPase subunit (Fragment)|unclassified	0.1678211572
+UniRef50_X1BEL6: Marine sediment metagenome DNA, contig: S01H4_S02471 (Fragment)	0.1678083418
+UniRef50_X1BEL6: Marine sediment metagenome DNA, contig: S01H4_S02471 (Fragment)|unclassified	0.1678083418
+UniRef50_U3U2C5	0.1677993081
+UniRef50_U3U2C5|unclassified	0.1677993081
+UniRef50_D8EFV6	0.1677969868
+UniRef50_D8EFV6|unclassified	0.1677969868
+UniRef50_D9T5Q5	0.1677913668
+UniRef50_D9T5Q5|unclassified	0.1677913668
+UniRef50_G2QP26	0.1677913645
+UniRef50_G2QP26|unclassified	0.1677913645
+UniRef50_A0A031UV61	0.1677832298
+UniRef50_A0A031UV61|unclassified	0.1677832298
+UniRef50_V5VEN2: Excinuclease ABC, A subunit	0.1677633173
+UniRef50_V5VEN2: Excinuclease ABC, A subunit|unclassified	0.1677633173
+UniRef50_L1KZ53	0.1677615848
+UniRef50_L1KZ53|unclassified	0.1677615848
+UniRef50_I8ALV9: Beta-lactamase II	0.1677609798
+UniRef50_I8ALV9: Beta-lactamase II|unclassified	0.1677609798
+UniRef50_A0A011M2S9: SOUL heme-binding protein	0.1677478713
+UniRef50_A0A011M2S9: SOUL heme-binding protein|unclassified	0.1677478713
+UniRef50_Q5FQE8: Leucyl/phenylalanyl-tRNA--protein transferase	0.1677468057
+UniRef50_Q5FQE8: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.1677468057
+UniRef50_H1LUK9	0.1677413312
+UniRef50_H1LUK9|unclassified	0.1677413312
+UniRef50_UPI0003749705: hypothetical protein	0.1677388615
+UniRef50_UPI0003749705: hypothetical protein|unclassified	0.1677388615
+UniRef50_UPI0004635F62: hypothetical protein, partial	0.1677160264
+UniRef50_UPI0004635F62: hypothetical protein, partial|unclassified	0.1677160264
+UniRef50_G0MS24	0.1677132699
+UniRef50_G0MS24|unclassified	0.1677132699
+UniRef50_A1KS46	0.1677088173
+UniRef50_A1KS46|unclassified	0.1677088173
+UniRef50_UPI0002DB530E: hypothetical protein	0.1676990312
+UniRef50_UPI0002DB530E: hypothetical protein|unclassified	0.1676990312
+UniRef50_X1VXP3: Marine sediment metagenome DNA, contig: S12H4_S26953 (Fragment)	0.1676817981
+UniRef50_X1VXP3: Marine sediment metagenome DNA, contig: S12H4_S26953 (Fragment)|unclassified	0.1676817981
+UniRef50_UPI0003B500DF: ribosomal large subunit pseudouridine synthase C	0.1676771212
+UniRef50_UPI0003B500DF: ribosomal large subunit pseudouridine synthase C|unclassified	0.1676771212
+UniRef50_G7M9H7	0.1676606619
+UniRef50_G7M9H7|unclassified	0.1676606619
+UniRef50_C5BP64: Ribosomal protein L11 methyltransferase	0.1676555967
+UniRef50_C5BP64: Ribosomal protein L11 methyltransferase|unclassified	0.1676555967
+UniRef50_UPI00041BEBD9: MULTISPECIES: luciferase	0.1676444792
+UniRef50_UPI00041BEBD9: MULTISPECIES: luciferase|unclassified	0.1676444792
+UniRef50_V5PKI4	0.1676385577
+UniRef50_V5PKI4|unclassified	0.1676385577
+UniRef50_UPI000475FB40: hypothetical protein, partial	0.1676173734
+UniRef50_UPI000475FB40: hypothetical protein, partial|unclassified	0.1676173734
+UniRef50_UPI0002557A47: hypothetical protein	0.1676168745
+UniRef50_UPI0002557A47: hypothetical protein|unclassified	0.1676168745
+UniRef50_Q9KF57: Phosphoribosylformylglycinamidine synthase 2	0.1676159827
+UniRef50_Q9KF57: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.1676159827
+UniRef50_J0YM26	0.1676096521
+UniRef50_J0YM26|unclassified	0.1676096521
+UniRef50_V1F594: Colanic acid biosynthesis protein	0.1676079241
+UniRef50_V1F594: Colanic acid biosynthesis protein|unclassified	0.1676079241
+UniRef50_Q87VV7: Probable nicotinate-nucleotide adenylyltransferase	0.1676053416
+UniRef50_Q87VV7: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.1676053416
+UniRef50_K9ZWQ1	0.1675810199
+UniRef50_K9ZWQ1|unclassified	0.1675810199
+UniRef50_UPI00023753BD: Short-chain dehydrogenase/reductase SDR	0.1675808370
+UniRef50_UPI00023753BD: Short-chain dehydrogenase/reductase SDR|unclassified	0.1675808370
+UniRef50_UPI00047190EE: cell division protein ZipA, partial	0.1675733444
+UniRef50_UPI00047190EE: cell division protein ZipA, partial|unclassified	0.1675733444
+UniRef50_G9A7N2	0.1675509458
+UniRef50_G9A7N2|unclassified	0.1675509458
+UniRef50_UPI00037E5998: MULTISPECIES: hypothetical protein	0.1675382245
+UniRef50_UPI00037E5998: MULTISPECIES: hypothetical protein|unclassified	0.1675382245
+UniRef50_UPI00036F59FC: hypothetical protein	0.1675369195
+UniRef50_UPI00036F59FC: hypothetical protein|unclassified	0.1675369195
+UniRef50_UPI00036B8817: hypothetical protein	0.1675294035
+UniRef50_UPI00036B8817: hypothetical protein|unclassified	0.1675294035
+UniRef50_UPI0003B5A1E7: amino acid ABC transporter permease	0.1675209745
+UniRef50_UPI0003B5A1E7: amino acid ABC transporter permease|unclassified	0.1675209745
+UniRef50_W1D4Z1	0.1675150401
+UniRef50_W1D4Z1|unclassified	0.1675150401
+UniRef50_UPI0004743595: hypothetical protein, partial	0.1674953198
+UniRef50_UPI0004743595: hypothetical protein, partial|unclassified	0.1674953198
+UniRef50_V3TXF2	0.1674856099
+UniRef50_V3TXF2|unclassified	0.1674856099
+UniRef50_K9X052	0.1674843870
+UniRef50_K9X052|unclassified	0.1674843870
+UniRef50_A3M865	0.1674761347
+UniRef50_A3M865|g__Acinetobacter.s__Acinetobacter_baumannii	0.1674761347
+UniRef50_J0R461: DnaD domain protein	0.1674587936
+UniRef50_J0R461: DnaD domain protein|unclassified	0.1674587936
+UniRef50_R9PQX7	0.1674515856
+UniRef50_R9PQX7|unclassified	0.1674515856
+UniRef50_UPI0004781063: peptide ABC transporter substrate-binding protein	0.1674397931
+UniRef50_UPI0004781063: peptide ABC transporter substrate-binding protein|unclassified	0.1674397931
+UniRef50_UPI0003B52B26: ABC transporter	0.1674349977
+UniRef50_UPI0003B52B26: ABC transporter|unclassified	0.1674349977
+UniRef50_B1X1Y0	0.1674300939
+UniRef50_B1X1Y0|unclassified	0.1674300939
+UniRef50_W5X8Z0: Ribose-phosphate pyrophosphokinase	0.1674289135
+UniRef50_W5X8Z0: Ribose-phosphate pyrophosphokinase|unclassified	0.1674289135
+UniRef50_H6MWX3: Putative integrase catalytic region	0.1674023859
+UniRef50_H6MWX3: Putative integrase catalytic region|unclassified	0.1674023859
+UniRef50_UPI00034AE262: hypothetical protein	0.1673932744
+UniRef50_UPI00034AE262: hypothetical protein|unclassified	0.1673932744
+UniRef50_X1YQ65	0.1673728389
+UniRef50_X1YQ65|unclassified	0.1673728389
+UniRef50_Q5LUR8: Zinc import ATP-binding protein ZnuC	0.1673628209
+UniRef50_Q5LUR8: Zinc import ATP-binding protein ZnuC|unclassified	0.1673628209
+UniRef50_F4EC58	0.1673442350
+UniRef50_F4EC58|unclassified	0.1673442350
+UniRef50_R5QLK2: UPF0301 protein BN820_01713	0.1673433062
+UniRef50_R5QLK2: UPF0301 protein BN820_01713|unclassified	0.1673433062
+UniRef50_A7GVW6: Ribosomal RNA small subunit methyltransferase A	0.1673340996
+UniRef50_A7GVW6: Ribosomal RNA small subunit methyltransferase A|unclassified	0.1673340996
+UniRef50_Q35826: Cytochrome c oxidase subunit 3 (Fragment)	0.1673322240
+UniRef50_Q35826: Cytochrome c oxidase subunit 3 (Fragment)|unclassified	0.1673322240
+UniRef50_UPI0002895A1F: signal peptidase	0.1673295272
+UniRef50_UPI0002895A1F: signal peptidase|unclassified	0.1673295272
+UniRef50_UPI0003F54605: aldehyde dehydrogenase	0.1673252780
+UniRef50_UPI0003F54605: aldehyde dehydrogenase|unclassified	0.1673252780
+UniRef50_UPI0003656AE1: hypothetical protein	0.1673219667
+UniRef50_UPI0003656AE1: hypothetical protein|unclassified	0.1673219667
+UniRef50_UPI00037EE45F: hypothetical protein	0.1673211246
+UniRef50_UPI00037EE45F: hypothetical protein|unclassified	0.1673211246
+UniRef50_UPI0003640029: hypothetical protein	0.1673201974
+UniRef50_UPI0003640029: hypothetical protein|unclassified	0.1673201974
+UniRef50_D2BM72	0.1673189102
+UniRef50_D2BM72|unclassified	0.1673189102
+UniRef50_D8F9L8	0.1673067797
+UniRef50_D8F9L8|unclassified	0.1673067797
+UniRef50_UPI000464287A: glycerol-3-phosphate transporter permease	0.1673054814
+UniRef50_UPI000464287A: glycerol-3-phosphate transporter permease|unclassified	0.1673054814
+UniRef50_Q8R966: Triosephosphate isomerase	0.1673021980
+UniRef50_Q8R966: Triosephosphate isomerase|unclassified	0.1673021980
+UniRef50_I8I5T4	0.1672999265
+UniRef50_I8I5T4|unclassified	0.1672999265
+UniRef50_UPI0003B42EFF: cytochrome C biogenesis protein	0.1672754422
+UniRef50_UPI0003B42EFF: cytochrome C biogenesis protein|unclassified	0.1672754422
+UniRef50_A1S6D4: Cytidylate kinase	0.1672740729
+UniRef50_A1S6D4: Cytidylate kinase|unclassified	0.1672740729
+UniRef50_E3F346: Methionine-binding lipoprotein	0.1672701709
+UniRef50_E3F346: Methionine-binding lipoprotein|unclassified	0.1672701709
+UniRef50_UPI00036A8875: hypothetical protein	0.1672596738
+UniRef50_UPI00036A8875: hypothetical protein|unclassified	0.1672596738
+UniRef50_UPI00036C2B1F: hypothetical protein	0.1672588098
+UniRef50_UPI00036C2B1F: hypothetical protein|unclassified	0.1672588098
+UniRef50_K2DS47	0.1672585036
+UniRef50_K2DS47|unclassified	0.1672585036
+UniRef50_P06225: DNA polymerase	0.1672408275
+UniRef50_P06225: DNA polymerase|unclassified	0.1672408275
+UniRef50_UPI00037064FF: hypothetical protein	0.1672398247
+UniRef50_UPI00037064FF: hypothetical protein|unclassified	0.1672398247
+UniRef50_UPI000468C77F: hypothetical protein	0.1672170741
+UniRef50_UPI000468C77F: hypothetical protein|unclassified	0.1672170741
+UniRef50_A1SPT8: Phosphoribosylformylglycinamidine synthase 2	0.1672039250
+UniRef50_A1SPT8: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.1672039250
+UniRef50_UPI00030DFE79: hypothetical protein	0.1671995019
+UniRef50_UPI00030DFE79: hypothetical protein|unclassified	0.1671995019
+UniRef50_B5ERH7	0.1671917782
+UniRef50_B5ERH7|unclassified	0.1671917782
+UniRef50_B9DT03: Putative membrane protein	0.1671914543
+UniRef50_B9DT03: Putative membrane protein|unclassified	0.1671914543
+UniRef50_X6EE61	0.1671895558
+UniRef50_X6EE61|unclassified	0.1671895558
+UniRef50_A0A022M3T2: Oxidoreductase (Fragment)	0.1671683178
+UniRef50_A0A022M3T2: Oxidoreductase (Fragment)|unclassified	0.1671683178
+UniRef50_Q15PV4: Heat shock protein Hsp20	0.1671432144
+UniRef50_Q15PV4: Heat shock protein Hsp20|unclassified	0.1671432144
+UniRef50_UPI0004740A93: citrate synthase, partial	0.1671313374
+UniRef50_UPI0004740A93: citrate synthase, partial|unclassified	0.1671313374
+UniRef50_X1GD02: Marine sediment metagenome DNA, contig: S03H2_S03205 (Fragment)	0.1671307418
+UniRef50_X1GD02: Marine sediment metagenome DNA, contig: S03H2_S03205 (Fragment)|unclassified	0.1671307418
+UniRef50_Q01V55: Dihydroorotase	0.1671172060
+UniRef50_Q01V55: Dihydroorotase|unclassified	0.1671172060
+UniRef50_UPI0002E9E685: hypothetical protein	0.1671155122
+UniRef50_UPI0002E9E685: hypothetical protein|unclassified	0.1671155122
+UniRef50_N1X287	0.1671022384
+UniRef50_N1X287|unclassified	0.1671022384
+UniRef50_O67604: Riboflavin synthase	0.1670949867
+UniRef50_O67604: Riboflavin synthase|unclassified	0.1670949867
+UniRef50_X1RQI5: Marine sediment metagenome DNA, contig: S12H4_L02323	0.1670816749
+UniRef50_X1RQI5: Marine sediment metagenome DNA, contig: S12H4_L02323|unclassified	0.1670816749
+UniRef50_G2SQR7: ComG operon protein 3	0.1670719999
+UniRef50_G2SQR7: ComG operon protein 3|unclassified	0.1670719999
+UniRef50_UPI0004638A75: hypothetical protein	0.1670691693
+UniRef50_UPI0004638A75: hypothetical protein|unclassified	0.1670691693
+UniRef50_UPI000255C9BF: glycine betaine transporter	0.1670480584
+UniRef50_UPI000255C9BF: glycine betaine transporter|unclassified	0.1670480584
+UniRef50_U6Z4K6	0.1670375831
+UniRef50_U6Z4K6|unclassified	0.1670375831
+UniRef50_J3L617	0.1670363553
+UniRef50_J3L617|unclassified	0.1670363553
+UniRef50_UPI000476D921: acetyl-CoA carboxylase	0.1670087423
+UniRef50_UPI000476D921: acetyl-CoA carboxylase|unclassified	0.1670087423
+UniRef50_UPI0004644785: transcriptional regulator	0.1669945351
+UniRef50_UPI0004644785: transcriptional regulator|unclassified	0.1669945351
+UniRef50_Q08WQ3	0.1669895337
+UniRef50_Q08WQ3|unclassified	0.1669895337
+UniRef50_T1XUI1	0.1669779316
+UniRef50_T1XUI1|unclassified	0.1669779316
+UniRef50_A0A031JSK7: FAD dependent oxidoreductase	0.1669699839
+UniRef50_A0A031JSK7: FAD dependent oxidoreductase|unclassified	0.1669699839
+UniRef50_Q9FZ42: Glucose and ribitol dehydrogenase homolog 1	0.1669686295
+UniRef50_Q9FZ42: Glucose and ribitol dehydrogenase homolog 1|unclassified	0.1669686295
+UniRef50_A3JT15: Putative FtsL	0.1669501658
+UniRef50_A3JT15: Putative FtsL|unclassified	0.1669501658
+UniRef50_UPI000360B3FA: hypothetical protein	0.1669463102
+UniRef50_UPI000360B3FA: hypothetical protein|unclassified	0.1669463102
+UniRef50_UPI0003476310: sugar ABC transporter permease	0.1669399727
+UniRef50_UPI0003476310: sugar ABC transporter permease|unclassified	0.1669399727
+UniRef50_F4VD40: Protein RutD (Pyrimidine utilization protein D)	0.1669210793
+UniRef50_F4VD40: Protein RutD (Pyrimidine utilization protein D)|unclassified	0.1669210793
+UniRef50_UPI00046774FB: ACP synthase	0.1669022724
+UniRef50_UPI00046774FB: ACP synthase|unclassified	0.1669022724
+UniRef50_UPI0003600109: hypothetical protein	0.1668964912
+UniRef50_UPI0003600109: hypothetical protein|unclassified	0.1668964912
+UniRef50_UPI000456151B: hypothetical protein PFL1_04047	0.1668943312
+UniRef50_UPI000456151B: hypothetical protein PFL1_04047|unclassified	0.1668943312
+UniRef50_M2KU47	0.1668909202
+UniRef50_M2KU47|unclassified	0.1668909202
+UniRef50_Q652Y2	0.1668882197
+UniRef50_Q652Y2|unclassified	0.1668882197
+UniRef50_UPI00046A0693: guanine permease	0.1668876786
+UniRef50_UPI00046A0693: guanine permease|unclassified	0.1668876786
+UniRef50_UPI0002DC2CDA: hypothetical protein	0.1668731048
+UniRef50_UPI0002DC2CDA: hypothetical protein|unclassified	0.1668731048
+UniRef50_UPI000475BFDE: hypothetical protein	0.1668629457
+UniRef50_UPI000475BFDE: hypothetical protein|unclassified	0.1668629457
+UniRef50_C7RN59	0.1668519680
+UniRef50_C7RN59|unclassified	0.1668519680
+UniRef50_Q87B10: Tryptophan--tRNA ligase	0.1668507966
+UniRef50_Q87B10: Tryptophan--tRNA ligase|unclassified	0.1668507966
+UniRef50_UPI00037CB2FD: hypothetical protein	0.1668437420
+UniRef50_UPI00037CB2FD: hypothetical protein|unclassified	0.1668437420
+UniRef50_UPI00036E5016: hypothetical protein	0.1668433680
+UniRef50_UPI00036E5016: hypothetical protein|unclassified	0.1668433680
+UniRef50_UPI0002653427	0.1668410703
+UniRef50_UPI0002653427|unclassified	0.1668410703
+UniRef50_UPI0003B3B38B: fumarylacetoacetate hydrolase	0.1668378417
+UniRef50_UPI0003B3B38B: fumarylacetoacetate hydrolase|unclassified	0.1668378417
+UniRef50_UPI0003B543B8: DNA repair protein RecO	0.1668342450
+UniRef50_UPI0003B543B8: DNA repair protein RecO|unclassified	0.1668342450
+UniRef50_H7LIA1	0.1668246288
+UniRef50_H7LIA1|unclassified	0.1668246288
+UniRef50_K0TRQ9: Glyoxalase	0.1668189887
+UniRef50_K0TRQ9: Glyoxalase|unclassified	0.1668189887
+UniRef50_Q1IPE7: NADH-quinone oxidoreductase subunit B 1	0.1668066746
+UniRef50_Q1IPE7: NADH-quinone oxidoreductase subunit B 1|unclassified	0.1668066746
+UniRef50_UPI000368CD4B: hypothetical protein	0.1668010805
+UniRef50_UPI000368CD4B: hypothetical protein|unclassified	0.1668010805
+UniRef50_B0RVB2: Ribosomal RNA small subunit methyltransferase H	0.1668005319
+UniRef50_B0RVB2: Ribosomal RNA small subunit methyltransferase H|unclassified	0.1668005319
+UniRef50_W9BUU1	0.1667926698
+UniRef50_W9BUU1|unclassified	0.1667926698
+UniRef50_R6SQF4	0.1667821309
+UniRef50_R6SQF4|unclassified	0.1667821309
+UniRef50_UPI00037C78A1: hypothetical protein	0.1667730943
+UniRef50_UPI00037C78A1: hypothetical protein|unclassified	0.1667730943
+UniRef50_D8J6S5	0.1667698012
+UniRef50_D8J6S5|unclassified	0.1667698012
+UniRef50_L0JYU8	0.1667645677
+UniRef50_L0JYU8|unclassified	0.1667645677
+UniRef50_H7FVF1: Beta-lactamase	0.1667625398
+UniRef50_H7FVF1: Beta-lactamase|unclassified	0.1667625398
+UniRef50_W5X869: S-methyl-5'-thioadenosine phosphorylase	0.1667478074
+UniRef50_W5X869: S-methyl-5'-thioadenosine phosphorylase|unclassified	0.1667478074
+UniRef50_UPI00045EAF7F: amidase	0.1667436280
+UniRef50_UPI00045EAF7F: amidase|unclassified	0.1667436280
+UniRef50_H0YH04: DnaJ homolog subfamily B member 5 (Fragment)	0.1667413274
+UniRef50_H0YH04: DnaJ homolog subfamily B member 5 (Fragment)|unclassified	0.1667413274
+UniRef50_UPI000237AE14: spermidine/putrescine ABC transporter ATPase subunit	0.1667411213
+UniRef50_UPI000237AE14: spermidine/putrescine ABC transporter ATPase subunit|unclassified	0.1667411213
+UniRef50_UPI00037DB04A: hypothetical protein	0.1667381837
+UniRef50_UPI00037DB04A: hypothetical protein|unclassified	0.1667381837
+UniRef50_P46561: ATP synthase subunit beta, mitochondrial	0.1667134791
+UniRef50_P46561: ATP synthase subunit beta, mitochondrial|unclassified	0.1667134791
+UniRef50_R5XYA5	0.1666995000
+UniRef50_R5XYA5|unclassified	0.1666995000
+UniRef50_UPI00037A84FF: XRE family transcriptional regulator	0.1666849400
+UniRef50_UPI00037A84FF: XRE family transcriptional regulator|unclassified	0.1666849400
+UniRef50_D4MSU9	0.1666781319
+UniRef50_D4MSU9|unclassified	0.1666781319
+UniRef50_C0QDY4: 3-isopropylmalate dehydratase small subunit	0.1666636228
+UniRef50_C0QDY4: 3-isopropylmalate dehydratase small subunit|unclassified	0.1666636228
+UniRef50_F8J628	0.1666605286
+UniRef50_F8J628|unclassified	0.1666605286
+UniRef50_A8JCJ5: Predicted protein (Fragment)	0.1666599122
+UniRef50_A8JCJ5: Predicted protein (Fragment)|unclassified	0.1666599122
+UniRef50_UPI0004732744: hypothetical protein, partial	0.1666460356
+UniRef50_UPI0004732744: hypothetical protein, partial|unclassified	0.1666460356
+UniRef50_UPI00037601CA: hypothetical protein	0.1666407808
+UniRef50_UPI00037601CA: hypothetical protein|unclassified	0.1666407808
+UniRef50_C4ZIQ5: Transcriptional regulator, BadM/Rrf2 family	0.1666293257
+UniRef50_C4ZIQ5: Transcriptional regulator, BadM/Rrf2 family|unclassified	0.1666293257
+UniRef50_UPI0001B4460C: methyltransferase, partial	0.1666090807
+UniRef50_UPI0001B4460C: methyltransferase, partial|unclassified	0.1666090807
+UniRef50_D0J1F6: Tripartite ATP-independent periplasmic	0.1666007492
+UniRef50_D0J1F6: Tripartite ATP-independent periplasmic|unclassified	0.1666007492
+UniRef50_UPI0003175B32: hypothetical protein	0.1665767578
+UniRef50_UPI0003175B32: hypothetical protein|unclassified	0.1665767578
+UniRef50_H3G2E2	0.1665692483
+UniRef50_H3G2E2|unclassified	0.1665692483
+UniRef50_K4FDK4	0.1665600722
+UniRef50_K4FDK4|unclassified	0.1665600722
+UniRef50_UPI00034C1BA9: hypothetical protein	0.1665573588
+UniRef50_UPI00034C1BA9: hypothetical protein|unclassified	0.1665573588
+UniRef50_UPI00046F5CF3: hypothetical protein, partial	0.1665466500
+UniRef50_UPI00046F5CF3: hypothetical protein, partial|unclassified	0.1665466500
+UniRef50_A0A024HCD0	0.1665357742
+UniRef50_A0A024HCD0|unclassified	0.1665357742
+UniRef50_W4SPZ4	0.1665274533
+UniRef50_W4SPZ4|unclassified	0.1665274533
+UniRef50_UPI0003B52BBA: camphor resistance protein CrcB	0.1665270130
+UniRef50_UPI0003B52BBA: camphor resistance protein CrcB|unclassified	0.1665270130
+UniRef50_UPI0003AD3579: hypothetical protein	0.1665236088
+UniRef50_UPI0003AD3579: hypothetical protein|unclassified	0.1665236088
+UniRef50_UPI000370C8AB: 30S ribosomal protein S17	0.1665229357
+UniRef50_UPI000370C8AB: 30S ribosomal protein S17|unclassified	0.1665229357
+UniRef50_Q0A911: Beta-hexosaminidase	0.1665096624
+UniRef50_Q0A911: Beta-hexosaminidase|unclassified	0.1665096624
+UniRef50_A0A011QHT3	0.1665060463
+UniRef50_A0A011QHT3|unclassified	0.1665060463
+UniRef50_UPI00020E3E1E: PREDICTED: cytoskeleton-associated protein 4	0.1664961871
+UniRef50_UPI00020E3E1E: PREDICTED: cytoskeleton-associated protein 4|unclassified	0.1664961871
+UniRef50_UPI000190DC33: putative racemase	0.1664939060
+UniRef50_UPI000190DC33: putative racemase|unclassified	0.1664939060
+UniRef50_R1E6P6	0.1664908669
+UniRef50_R1E6P6|unclassified	0.1664908669
+UniRef50_D8LK02	0.1664792345
+UniRef50_D8LK02|unclassified	0.1664792345
+UniRef50_UPI000225F139: peptidase U35, phage prohead HK97	0.1664671808
+UniRef50_UPI000225F139: peptidase U35, phage prohead HK97|unclassified	0.1664671808
+UniRef50_C6XJS7: Membrane protein	0.1664602608
+UniRef50_C6XJS7: Membrane protein|unclassified	0.1664602608
+UniRef50_I3UCK5: Lipocalin	0.1664574345
+UniRef50_I3UCK5: Lipocalin|unclassified	0.1664574345
+UniRef50_K1E1R3: Exodeoxyribonuclease V subunit gamma	0.1664466632
+UniRef50_K1E1R3: Exodeoxyribonuclease V subunit gamma|unclassified	0.1664466632
+UniRef50_UPI0004413908: hypothetical protein AURDEDRAFT_109777	0.1664432218
+UniRef50_UPI0004413908: hypothetical protein AURDEDRAFT_109777|unclassified	0.1664432218
+UniRef50_Q2G9L9: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.1664410389
+UniRef50_Q2G9L9: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.1664410389
+UniRef50_UPI0002C58F62	0.1664395146
+UniRef50_UPI0002C58F62|unclassified	0.1664395146
+UniRef50_D7N6D8: Cysteine desulfurase ATPase component domain protein	0.1664237267
+UniRef50_D7N6D8: Cysteine desulfurase ATPase component domain protein|unclassified	0.1664237267
+UniRef50_F4DX46	0.1664236485
+UniRef50_F4DX46|unclassified	0.1664236485
+UniRef50_UPI0004541D3D: PREDICTED: succinyl-CoA:3-ketoacid coenzyme A transferase 1, mitochondrial	0.1664193847
+UniRef50_UPI0004541D3D: PREDICTED: succinyl-CoA:3-ketoacid coenzyme A transferase 1, mitochondrial|unclassified	0.1664193847
+UniRef50_B4U8W2: Polyamine aminopropyl transferase	0.1664175704
+UniRef50_B4U8W2: Polyamine aminopropyl transferase|unclassified	0.1664175704
+UniRef50_Q55798: 6-carboxy-5,6,7,8-tetrahydropterin synthase	0.1664025635
+UniRef50_Q55798: 6-carboxy-5,6,7,8-tetrahydropterin synthase|unclassified	0.1664025635
+UniRef50_V8HB71: Transposase (Fragment)	0.1663943242
+UniRef50_V8HB71: Transposase (Fragment)|unclassified	0.1663943242
+UniRef50_UPI00023768E3: flagellar motor stator protein MotA, partial	0.1663878282
+UniRef50_UPI00023768E3: flagellar motor stator protein MotA, partial|unclassified	0.1663878282
+UniRef50_UPI00036C176D: hypothetical protein	0.1663812693
+UniRef50_UPI00036C176D: hypothetical protein|unclassified	0.1663812693
+UniRef50_UPI0003652F52: hypothetical protein	0.1663776247
+UniRef50_UPI0003652F52: hypothetical protein|unclassified	0.1663776247
+UniRef50_UPI000380E1DF: hypothetical protein	0.1663670468
+UniRef50_UPI000380E1DF: hypothetical protein|unclassified	0.1663670468
+UniRef50_U2Z6J9	0.1663669702
+UniRef50_U2Z6J9|unclassified	0.1663669702
+UniRef50_UPI000349890F: histidine kinase	0.1663552696
+UniRef50_UPI000349890F: histidine kinase|unclassified	0.1663552696
+UniRef50_UPI00047C08AE: hypothetical protein	0.1663506448
+UniRef50_UPI00047C08AE: hypothetical protein|unclassified	0.1663506448
+UniRef50_UPI00038F73EB: Bifunctional protein PyrR	0.1663272602
+UniRef50_UPI00038F73EB: Bifunctional protein PyrR|unclassified	0.1663272602
+UniRef50_UPI00047BADE2: hypothetical protein	0.1663162774
+UniRef50_UPI00047BADE2: hypothetical protein|unclassified	0.1663162774
+UniRef50_UPI00037E7A2D: hypothetical protein	0.1663156432
+UniRef50_UPI00037E7A2D: hypothetical protein|unclassified	0.1663156432
+UniRef50_UPI0002F16745: hypothetical protein	0.1663034550
+UniRef50_UPI0002F16745: hypothetical protein|unclassified	0.1663034550
+UniRef50_UPI0003138738: hypothetical protein	0.1662783013
+UniRef50_UPI0003138738: hypothetical protein|unclassified	0.1662783013
+UniRef50_I9ML82: Arsenical pump-driving ATPase ArsA (Fragment)	0.1662652585
+UniRef50_I9ML82: Arsenical pump-driving ATPase ArsA (Fragment)|unclassified	0.1662652585
+UniRef50_UPI0003818EB1: hypothetical protein	0.1662646243
+UniRef50_UPI0003818EB1: hypothetical protein|unclassified	0.1662646243
+UniRef50_Q1LT89: NADH-quinone oxidoreductase subunit A	0.1662450714
+UniRef50_Q1LT89: NADH-quinone oxidoreductase subunit A|unclassified	0.1662450714
+UniRef50_Q45918: Orotate phosphoribosyltransferase	0.1662444205
+UniRef50_Q45918: Orotate phosphoribosyltransferase|unclassified	0.1662444205
+UniRef50_UPI00016A5F2C: deoxyribodipyrimidine photolyase, partial	0.1662266726
+UniRef50_UPI00016A5F2C: deoxyribodipyrimidine photolyase, partial|unclassified	0.1662266726
+UniRef50_UPI0004077648: MULTISPECIES: cobalamin biosynthesis protein	0.1662224767
+UniRef50_UPI0004077648: MULTISPECIES: cobalamin biosynthesis protein|unclassified	0.1662224767
+UniRef50_R0EPC6: Alanine dehydrogenase, ald	0.1662091626
+UniRef50_R0EPC6: Alanine dehydrogenase, ald|unclassified	0.1662091626
+UniRef50_UPI000469423C: ligand-gated channel protein	0.1662015464
+UniRef50_UPI000469423C: ligand-gated channel protein|unclassified	0.1662015464
+UniRef50_L6Z0T6	0.1662011029
+UniRef50_L6Z0T6|unclassified	0.1662011029
+UniRef50_G5LKX8: Potassium-transporting ATPase B chain	0.1661901429
+UniRef50_G5LKX8: Potassium-transporting ATPase B chain|unclassified	0.1661901429
+UniRef50_F3Y9E7: Transcriptional repressor of the fructose operon, DeoR family	0.1661767443
+UniRef50_F3Y9E7: Transcriptional repressor of the fructose operon, DeoR family|unclassified	0.1661767443
+UniRef50_UPI000376AD8E: hypothetical protein	0.1661490808
+UniRef50_UPI000376AD8E: hypothetical protein|unclassified	0.1661490808
+UniRef50_A2WDQ8: Small-conductance mechanosensitive channel (Fragment)	0.1661338291
+UniRef50_A2WDQ8: Small-conductance mechanosensitive channel (Fragment)|unclassified	0.1661338291
+UniRef50_UPI0003FD1830: hypothetical protein	0.1661143788
+UniRef50_UPI0003FD1830: hypothetical protein|unclassified	0.1661143788
+UniRef50_V9WGH4	0.1661120553
+UniRef50_V9WGH4|unclassified	0.1661120553
+UniRef50_K9EXS5	0.1661011428
+UniRef50_K9EXS5|unclassified	0.1661011428
+UniRef50_UPI0003A83AD4: BCCT transporter	0.1660750441
+UniRef50_UPI0003A83AD4: BCCT transporter|unclassified	0.1660750441
+UniRef50_F2KIF9	0.1660652210
+UniRef50_F2KIF9|unclassified	0.1660652210
+UniRef50_UPI0001850BB3: signal peptidase	0.1660628646
+UniRef50_UPI0001850BB3: signal peptidase|unclassified	0.1660628646
+UniRef50_Q73T96	0.1660575831
+UniRef50_Q73T96|unclassified	0.1660575831
+UniRef50_R5HIQ1	0.1660560517
+UniRef50_R5HIQ1|unclassified	0.1660560517
+UniRef50_UPI00037E75D4: hypothetical protein	0.1660320795
+UniRef50_UPI00037E75D4: hypothetical protein|unclassified	0.1660320795
+UniRef50_UPI000288C5FC: alanine racemase, partial	0.1660192292
+UniRef50_UPI000288C5FC: alanine racemase, partial|unclassified	0.1660192292
+UniRef50_UPI000463E516: hypothetical protein	0.1660188858
+UniRef50_UPI000463E516: hypothetical protein|unclassified	0.1660188858
+UniRef50_UPI0002625D39: hypothetical protein	0.1659975123
+UniRef50_UPI0002625D39: hypothetical protein|unclassified	0.1659975123
+UniRef50_UPI00045EBC8D: hypothetical protein	0.1659898801
+UniRef50_UPI00045EBC8D: hypothetical protein|unclassified	0.1659898801
+UniRef50_Q4UTY2	0.1659885778
+UniRef50_Q4UTY2|unclassified	0.1659885778
+UniRef50_W6BZ44: Cupin domain protein	0.1659813062
+UniRef50_W6BZ44: Cupin domain protein|unclassified	0.1659813062
+UniRef50_UPI000378B1E2: hypothetical protein, partial	0.1659720894
+UniRef50_UPI000378B1E2: hypothetical protein, partial|unclassified	0.1659720894
+UniRef50_V4JK74	0.1659686348
+UniRef50_V4JK74|unclassified	0.1659686348
+UniRef50_UPI0003D085B1: PREDICTED: spermidine/spermine N(1)-acetyltransferase-like protein 1-like isoform X1	0.1659516626
+UniRef50_UPI0003D085B1: PREDICTED: spermidine/spermine N(1)-acetyltransferase-like protein 1-like isoform X1|unclassified	0.1659516626
+UniRef50_U6HZM2: Eri1 exoribonuclease 2	0.1659324063
+UniRef50_U6HZM2: Eri1 exoribonuclease 2|unclassified	0.1659324063
+UniRef50_UPI000366BB43: hypothetical protein	0.1659322593
+UniRef50_UPI000366BB43: hypothetical protein|unclassified	0.1659322593
+UniRef50_Q3DHS7	0.1659292612
+UniRef50_Q3DHS7|unclassified	0.1659292612
+UniRef50_UPI00045EA0CF: LysR family transcriptional regulator	0.1659000677
+UniRef50_UPI00045EA0CF: LysR family transcriptional regulator|unclassified	0.1659000677
+UniRef50_W0AEH5	0.1658998249
+UniRef50_W0AEH5|unclassified	0.1658998249
+UniRef50_W5X8M6: Homoserine dehydrogenase	0.1658980655
+UniRef50_W5X8M6: Homoserine dehydrogenase|unclassified	0.1658980655
+UniRef50_W5M854	0.1658798545
+UniRef50_W5M854|unclassified	0.1658798545
+UniRef50_UPI000468ED30: hypothetical protein	0.1658725177
+UniRef50_UPI000468ED30: hypothetical protein|unclassified	0.1658725177
+UniRef50_UPI00036F0458: hypothetical protein	0.1658583443
+UniRef50_UPI00036F0458: hypothetical protein|unclassified	0.1658583443
+UniRef50_I2FCL1	0.1658563856
+UniRef50_I2FCL1|unclassified	0.1658563856
+UniRef50_I9LLN8: Xanthine/uracil/vitamin C permease (Fragment)	0.1658548328
+UniRef50_I9LLN8: Xanthine/uracil/vitamin C permease (Fragment)|unclassified	0.1658548328
+UniRef50_UPI000473E2AF: hypothetical protein	0.1658488851
+UniRef50_UPI000473E2AF: hypothetical protein|unclassified	0.1658488851
+UniRef50_R7QRZ6: Stackhouse genomic scaffold, scaffold_85	0.1658486994
+UniRef50_R7QRZ6: Stackhouse genomic scaffold, scaffold_85|unclassified	0.1658486994
+UniRef50_C3KN74: Putative C4-dicarboxylate transport system, permease protein	0.1658474068
+UniRef50_C3KN74: Putative C4-dicarboxylate transport system, permease protein|unclassified	0.1658474068
+UniRef50_UPI0001BC2CC2: glyoxalase/bleomycin resistance protein/dioxygenase	0.1658248802
+UniRef50_UPI0001BC2CC2: glyoxalase/bleomycin resistance protein/dioxygenase|unclassified	0.1658248802
+UniRef50_E8KW15: TM2 domain protein	0.1658193163
+UniRef50_E8KW15: TM2 domain protein|unclassified	0.1658193163
+UniRef50_UPI00036FC1AC: hypothetical protein	0.1657981839
+UniRef50_UPI00036FC1AC: hypothetical protein|unclassified	0.1657981839
+UniRef50_C2QMV0	0.1657921447
+UniRef50_C2QMV0|unclassified	0.1657921447
+UniRef50_UPI00025565F8: thiamine biosynthesis protein ThiH	0.1657869639
+UniRef50_UPI00025565F8: thiamine biosynthesis protein ThiH|unclassified	0.1657869639
+UniRef50_S5Z930: Phage-shock protein	0.1657849664
+UniRef50_S5Z930: Phage-shock protein|unclassified	0.1657849664
+UniRef50_UPI00047C5809: short-chain dehydrogenase	0.1657824031
+UniRef50_UPI00047C5809: short-chain dehydrogenase|unclassified	0.1657824031
+UniRef50_S7Z9P2	0.1657779207
+UniRef50_S7Z9P2|unclassified	0.1657779207
+UniRef50_UPI0004762EFD: cytochrome C transmembrane protein	0.1657757595
+UniRef50_UPI0004762EFD: cytochrome C transmembrane protein|unclassified	0.1657757595
+UniRef50_UPI0003C7F3E1: protein tyrosine kinase	0.1657753018
+UniRef50_UPI0003C7F3E1: protein tyrosine kinase|unclassified	0.1657753018
+UniRef50_UPI0002196CA9: ribose transporter	0.1657744402
+UniRef50_UPI0002196CA9: ribose transporter|unclassified	0.1657744402
+UniRef50_V1IGT9: tRNA 2-selenouridine synthase	0.1657647696
+UniRef50_V1IGT9: tRNA 2-selenouridine synthase|unclassified	0.1657647696
+UniRef50_J2UJI7: Transcriptional regulator	0.1657539448
+UniRef50_J2UJI7: Transcriptional regulator|unclassified	0.1657539448
+UniRef50_UPI0003A18348: hypothetical protein	0.1657201685
+UniRef50_UPI0003A18348: hypothetical protein|unclassified	0.1657201685
+UniRef50_UPI000469B3B9: DeoR faimly transcriptional regulator	0.1656919070
+UniRef50_UPI000469B3B9: DeoR faimly transcriptional regulator|unclassified	0.1656919070
+UniRef50_UPI00034A6A03: diguanylate cyclase	0.1656822620
+UniRef50_UPI00034A6A03: diguanylate cyclase|unclassified	0.1656822620
+UniRef50_Q0FDN7: Esterase/lipase/thioesterase	0.1656808356
+UniRef50_Q0FDN7: Esterase/lipase/thioesterase|unclassified	0.1656808356
+UniRef50_UPI0004750092: HAD family hydrolase	0.1656717135
+UniRef50_UPI0004750092: HAD family hydrolase|unclassified	0.1656717135
+UniRef50_A3BDB1	0.1656695382
+UniRef50_A3BDB1|unclassified	0.1656695382
+UniRef50_UPI000349FCA6: hypothetical protein	0.1656593021
+UniRef50_UPI000349FCA6: hypothetical protein|unclassified	0.1656593021
+UniRef50_W5X880: Aminomethyltransferase	0.1656464252
+UniRef50_W5X880: Aminomethyltransferase|unclassified	0.1656464252
+UniRef50_UPI000466B8BE: ATP-dependent DNA helicase RecQ	0.1656394600
+UniRef50_UPI000466B8BE: ATP-dependent DNA helicase RecQ|unclassified	0.1656394600
+UniRef50_L1P2N4	0.1656277741
+UniRef50_L1P2N4|unclassified	0.1656277741
+UniRef50_UPI0004670C84: Rrf2 family transcriptional regulator	0.1656214119
+UniRef50_UPI0004670C84: Rrf2 family transcriptional regulator|unclassified	0.1656214119
+UniRef50_UPI0003B7B17F: D-Ala-D-Ala carboxypeptidase	0.1656144906
+UniRef50_UPI0003B7B17F: D-Ala-D-Ala carboxypeptidase|unclassified	0.1656144906
+UniRef50_A0KFN8: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase	0.1656131942
+UniRef50_A0KFN8: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase|unclassified	0.1656131942
+UniRef50_Q9SLN5: Methionine aminopeptidase 1A	0.1656068159
+UniRef50_Q9SLN5: Methionine aminopeptidase 1A|unclassified	0.1656068159
+UniRef50_UPI00036191C4: hypothetical protein	0.1655583722
+UniRef50_UPI00036191C4: hypothetical protein|unclassified	0.1655583722
+UniRef50_UPI00035EEE45: hypothetical protein	0.1655430953
+UniRef50_UPI00035EEE45: hypothetical protein|unclassified	0.1655430953
+UniRef50_F2F6P2: Predicted sugar phosphatase of the HAD superfamily	0.1655265094
+UniRef50_F2F6P2: Predicted sugar phosphatase of the HAD superfamily|unclassified	0.1655265094
+UniRef50_UPI00036BA2FA: hypothetical protein	0.1655035402
+UniRef50_UPI00036BA2FA: hypothetical protein|unclassified	0.1655035402
+UniRef50_Q6A9E9: Conserved protein DUF181	0.1654909360
+UniRef50_Q6A9E9: Conserved protein DUF181|unclassified	0.1654909360
+UniRef50_G5LK96: Putative cytoplasmic protein	0.1654837674
+UniRef50_G5LK96: Putative cytoplasmic protein|unclassified	0.1654837674
+UniRef50_V5XQH9	0.1654742630
+UniRef50_V5XQH9|unclassified	0.1654742630
+UniRef50_C5Y7E8	0.1654668560
+UniRef50_C5Y7E8|unclassified	0.1654668560
+UniRef50_UPI0004105AFF: methionine aminopeptidase	0.1654632033
+UniRef50_UPI0004105AFF: methionine aminopeptidase|unclassified	0.1654632033
+UniRef50_UPI000376927D: hypothetical protein	0.1654618443
+UniRef50_UPI000376927D: hypothetical protein|unclassified	0.1654618443
+UniRef50_M7XPZ7	0.1654533422
+UniRef50_M7XPZ7|unclassified	0.1654533422
+UniRef50_UPI000420B7BC: O-acetylhomoserine aminocarboxypropyltransferase	0.1654454322
+UniRef50_UPI000420B7BC: O-acetylhomoserine aminocarboxypropyltransferase|unclassified	0.1654454322
+UniRef50_UPI00047CA294: ATP-dependent DNA helicase PcrA	0.1654433363
+UniRef50_UPI00047CA294: ATP-dependent DNA helicase PcrA|unclassified	0.1654433363
+UniRef50_UPI0003B512B4: peptidase M16	0.1654296852
+UniRef50_UPI0003B512B4: peptidase M16|unclassified	0.1654296852
+UniRef50_W7Q3X6	0.1654179276
+UniRef50_W7Q3X6|unclassified	0.1654179276
+UniRef50_P21561	0.1654021076
+UniRef50_P21561|unclassified	0.1654021076
+UniRef50_UPI000369E1E2: hypothetical protein	0.1653862299
+UniRef50_UPI000369E1E2: hypothetical protein|unclassified	0.1653862299
+UniRef50_UPI00040BCC61: hypothetical protein	0.1653858722
+UniRef50_UPI00040BCC61: hypothetical protein|unclassified	0.1653858722
+UniRef50_U7G864	0.1653823219
+UniRef50_U7G864|unclassified	0.1653823219
+UniRef50_F1T3P5: Transcriptional regulator, PadR family	0.1653795517
+UniRef50_F1T3P5: Transcriptional regulator, PadR family|unclassified	0.1653795517
+UniRef50_UPI00041554DE: hypothetical protein	0.1653735947
+UniRef50_UPI00041554DE: hypothetical protein|unclassified	0.1653735947
+UniRef50_UPI0003B3D82C: DNA polymerase III subunit epsilon	0.1653703907
+UniRef50_UPI0003B3D82C: DNA polymerase III subunit epsilon|unclassified	0.1653703907
+UniRef50_R9JM56	0.1653700525
+UniRef50_R9JM56|unclassified	0.1653700525
+UniRef50_UPI000476BFB6: hypothetical protein	0.1653624705
+UniRef50_UPI000476BFB6: hypothetical protein|unclassified	0.1653624705
+UniRef50_UPI00036577C7: hypothetical protein	0.1653373006
+UniRef50_UPI00036577C7: hypothetical protein|unclassified	0.1653373006
+UniRef50_A6UU49: Diphthine synthase	0.1653367276
+UniRef50_A6UU49: Diphthine synthase|unclassified	0.1653367276
+UniRef50_M4GAF5	0.1653258179
+UniRef50_M4GAF5|unclassified	0.1653258179
+UniRef50_I7LSN1: Glucitol operon activator protein	0.1653255994
+UniRef50_I7LSN1: Glucitol operon activator protein|unclassified	0.1653255994
+UniRef50_K1LFR3	0.1652930394
+UniRef50_K1LFR3|unclassified	0.1652930394
+UniRef50_X0UW58: Marine sediment metagenome DNA, contig: S01H1_S13328 (Fragment)	0.1652894907
+UniRef50_X0UW58: Marine sediment metagenome DNA, contig: S01H1_S13328 (Fragment)|unclassified	0.1652894907
+UniRef50_UPI0003807304: hypothetical protein, partial	0.1652823825
+UniRef50_UPI0003807304: hypothetical protein, partial|unclassified	0.1652823825
+UniRef50_C0HH28	0.1652699087
+UniRef50_C0HH28|unclassified	0.1652699087
+UniRef50_UPI00037F0C3A: hypothetical protein	0.1652570155
+UniRef50_UPI00037F0C3A: hypothetical protein|unclassified	0.1652570155
+UniRef50_UPI0004713B14: hypothetical protein	0.1652429903
+UniRef50_UPI0004713B14: hypothetical protein|unclassified	0.1652429903
+UniRef50_UPI00047B0C06: hypothetical protein	0.1652384522
+UniRef50_UPI00047B0C06: hypothetical protein|unclassified	0.1652384522
+UniRef50_H0T6D0	0.1652375800
+UniRef50_H0T6D0|unclassified	0.1652375800
+UniRef50_C8S086: Putative lipoprotein	0.1652329531
+UniRef50_C8S086: Putative lipoprotein|unclassified	0.1652329531
+UniRef50_G5FLZ8	0.1652267414
+UniRef50_G5FLZ8|unclassified	0.1652267414
+UniRef50_A0A011QYY7: L-threonine dehydratase biosynthetic IlvA	0.1652242435
+UniRef50_A0A011QYY7: L-threonine dehydratase biosynthetic IlvA|unclassified	0.1652242435
+UniRef50_UPI0002FE1572: hypothetical protein	0.1652089021
+UniRef50_UPI0002FE1572: hypothetical protein|unclassified	0.1652089021
+UniRef50_W6MSS4: Genomic scaffold, Kuraishia_capsulata_scaffold_7	0.1651938195
+UniRef50_W6MSS4: Genomic scaffold, Kuraishia_capsulata_scaffold_7|unclassified	0.1651938195
+UniRef50_P09622: Dihydrolipoyl dehydrogenase, mitochondrial	0.1651925811
+UniRef50_P09622: Dihydrolipoyl dehydrogenase, mitochondrial|unclassified	0.1651925811
+UniRef50_D7I4E2: Integral membrane protein	0.1651921064
+UniRef50_D7I4E2: Integral membrane protein|unclassified	0.1651921064
+UniRef50_UPI00044359FB: PREDICTED: WAS/WASL-interacting protein family member 3-like	0.1651858417
+UniRef50_UPI00044359FB: PREDICTED: WAS/WASL-interacting protein family member 3-like|unclassified	0.1651858417
+UniRef50_Q28JJ5: Flagellar protein putative	0.1651838714
+UniRef50_Q28JJ5: Flagellar protein putative|unclassified	0.1651838714
+UniRef50_R5KG87: AAA domain / AAA domain multi-domain protein	0.1651625721
+UniRef50_R5KG87: AAA domain / AAA domain multi-domain protein|unclassified	0.1651625721
+UniRef50_Q93YZ7: Acetolactate synthase small subunit 2, chloroplastic	0.1651473123
+UniRef50_Q93YZ7: Acetolactate synthase small subunit 2, chloroplastic|unclassified	0.1651473123
+UniRef50_G8W3E6	0.1651417632
+UniRef50_G8W3E6|unclassified	0.1651417632
+UniRef50_U5MBJ0: TenA family transcriptional regulator	0.1651417632
+UniRef50_U5MBJ0: TenA family transcriptional regulator|unclassified	0.1651417632
+UniRef50_A0JXD6	0.1651392699
+UniRef50_A0JXD6|unclassified	0.1651392699
+UniRef50_UPI0004786463: hypothetical protein	0.1651355047
+UniRef50_UPI0004786463: hypothetical protein|unclassified	0.1651355047
+UniRef50_UPI0003B50013: hypothetical protein	0.1651121814
+UniRef50_UPI0003B50013: hypothetical protein|unclassified	0.1651121814
+UniRef50_R0F1N6	0.1651036802
+UniRef50_R0F1N6|unclassified	0.1651036802
+UniRef50_UPI0003B6E045: dehydrogenase	0.1650968733
+UniRef50_UPI0003B6E045: dehydrogenase|unclassified	0.1650968733
+UniRef50_T2GFI0: Putative anti-sigma regulatory factor	0.1650907859
+UniRef50_T2GFI0: Putative anti-sigma regulatory factor|unclassified	0.1650907859
+UniRef50_UPI0003B6C406: 3-oxoacyl-ACP synthase, partial	0.1650866920
+UniRef50_UPI0003B6C406: 3-oxoacyl-ACP synthase, partial|unclassified	0.1650866920
+UniRef50_U1QIR3	0.1650830085
+UniRef50_U1QIR3|unclassified	0.1650830085
+UniRef50_Y9SW57	0.1650794494
+UniRef50_Y9SW57|unclassified	0.1650794494
+UniRef50_S3EL65: LemA family protein	0.1650728520
+UniRef50_S3EL65: LemA family protein|unclassified	0.1650728520
+UniRef50_A0A059FNS0: Polyhydroxyalkanoate synthesis repressor PhaR	0.1650528341
+UniRef50_A0A059FNS0: Polyhydroxyalkanoate synthesis repressor PhaR|unclassified	0.1650528341
+UniRef50_P54383: Farnesyl diphosphate synthase	0.1650521567
+UniRef50_P54383: Farnesyl diphosphate synthase|unclassified	0.1650521567
+UniRef50_K2J9K1	0.1650081078
+UniRef50_K2J9K1|unclassified	0.1650081078
+UniRef50_B9E7P2	0.1650079136
+UniRef50_B9E7P2|unclassified	0.1650079136
+UniRef50_J5VTR4	0.1650009095
+UniRef50_J5VTR4|unclassified	0.1650009095
+UniRef50_UPI000444A25C: putative cyclase	0.1649771329
+UniRef50_UPI000444A25C: putative cyclase|unclassified	0.1649771329
+UniRef50_C4Z3J8: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.1649700966
+UniRef50_C4Z3J8: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.1649700966
+UniRef50_UPI00037DC162: hypothetical protein	0.1649690086
+UniRef50_UPI00037DC162: hypothetical protein|unclassified	0.1649690086
+UniRef50_R0P817	0.1649576406
+UniRef50_R0P817|unclassified	0.1649576406
+UniRef50_R1DN65	0.1649529576
+UniRef50_R1DN65|unclassified	0.1649529576
+UniRef50_UPI00046AD33D: hypothetical protein	0.1649472444
+UniRef50_UPI00046AD33D: hypothetical protein|unclassified	0.1649472444
+UniRef50_T5AJG0	0.1649249992
+UniRef50_T5AJG0|unclassified	0.1649249992
+UniRef50_UPI00036FF501: hypothetical protein	0.1649214622
+UniRef50_UPI00036FF501: hypothetical protein|unclassified	0.1649214622
+UniRef50_F3KBK1: tRNA-(Ms[2]io[6]A)-hydroxylase	0.1649135893
+UniRef50_F3KBK1: tRNA-(Ms[2]io[6]A)-hydroxylase|unclassified	0.1649135893
+UniRef50_B1ZC14	0.1648860726
+UniRef50_B1ZC14|unclassified	0.1648860726
+UniRef50_H5UTL4	0.1648753458
+UniRef50_H5UTL4|unclassified	0.1648753458
+UniRef50_X7C592	0.1648658382
+UniRef50_X7C592|unclassified	0.1648658382
+UniRef50_UPI00046CDCC8: hypothetical protein	0.1648649077
+UniRef50_UPI00046CDCC8: hypothetical protein|unclassified	0.1648649077
+UniRef50_UPI000471B809: hypothetical protein	0.1648450419
+UniRef50_UPI000471B809: hypothetical protein|unclassified	0.1648450419
+UniRef50_UPI000380BB63: hypothetical protein, partial	0.1648429084
+UniRef50_UPI000380BB63: hypothetical protein, partial|unclassified	0.1648429084
+UniRef50_G2TD66: Regulatory inactivation of DnaA Hda protein	0.1648413771
+UniRef50_G2TD66: Regulatory inactivation of DnaA Hda protein|unclassified	0.1648413771
+UniRef50_UPI00046B2A31: PREDICTED: EF-hand domain-containing family member B	0.1648367943
+UniRef50_UPI00046B2A31: PREDICTED: EF-hand domain-containing family member B|unclassified	0.1648367943
+UniRef50_UPI0003B4FB20: GntR family transcriptional regulator, partial	0.1648277902
+UniRef50_UPI0003B4FB20: GntR family transcriptional regulator, partial|unclassified	0.1648277902
+UniRef50_A9A4N5: Bifunctional protein FolD	0.1648266707
+UniRef50_A9A4N5: Bifunctional protein FolD|unclassified	0.1648266707
+UniRef50_UPI00046691CC: hypothetical protein, partial	0.1648247684
+UniRef50_UPI00046691CC: hypothetical protein, partial|unclassified	0.1648247684
+UniRef50_H9KP60	0.1648226758
+UniRef50_H9KP60|unclassified	0.1648226758
+UniRef50_UPI0003A8FF09: hypothetical protein	0.1648211898
+UniRef50_UPI0003A8FF09: hypothetical protein|unclassified	0.1648211898
+UniRef50_A0A010ITK8	0.1648027908
+UniRef50_A0A010ITK8|unclassified	0.1648027908
+UniRef50_UPI00036479B7: hypothetical protein	0.1648022786
+UniRef50_UPI00036479B7: hypothetical protein|unclassified	0.1648022786
+UniRef50_B7UZY0	0.1647954212
+UniRef50_B7UZY0|unclassified	0.1647954212
+UniRef50_UPI00037273BD: hypothetical protein, partial	0.1647920672
+UniRef50_UPI00037273BD: hypothetical protein, partial|unclassified	0.1647920672
+UniRef50_Q0JLS5: Os01g0575200 protein (Fragment)	0.1647886682
+UniRef50_Q0JLS5: Os01g0575200 protein (Fragment)|unclassified	0.1647886682
+UniRef50_UPI00047BA3FA: response regulator receiver protein	0.1647849186
+UniRef50_UPI00047BA3FA: response regulator receiver protein|unclassified	0.1647849186
+UniRef50_A1R1C4: Urease subunit beta	0.1647819567
+UniRef50_A1R1C4: Urease subunit beta|unclassified	0.1647819567
+UniRef50_E8U4S5	0.1647734588
+UniRef50_E8U4S5|unclassified	0.1647734588
+UniRef50_UPI0004724E83: hypothetical protein	0.1647647394
+UniRef50_UPI0004724E83: hypothetical protein|unclassified	0.1647647394
+UniRef50_UPI0002D7CF6D: hypothetical protein	0.1647618620
+UniRef50_UPI0002D7CF6D: hypothetical protein|unclassified	0.1647618620
+UniRef50_UPI0002D5FA3B: hypothetical protein	0.1647615099
+UniRef50_UPI0002D5FA3B: hypothetical protein|unclassified	0.1647615099
+UniRef50_W5XBN6: Ribosomal silencing factor RsfS	0.1647602644
+UniRef50_W5XBN6: Ribosomal silencing factor RsfS|unclassified	0.1647602644
+UniRef50_P31765: Aldose 1-epimerase	0.1647516990
+UniRef50_P31765: Aldose 1-epimerase|unclassified	0.1647516990
+UniRef50_S4XXY7	0.1647241253
+UniRef50_S4XXY7|unclassified	0.1647241253
+UniRef50_UPI0003B3866E: hypothetical protein	0.1647222414
+UniRef50_UPI0003B3866E: hypothetical protein|unclassified	0.1647222414
+UniRef50_B2KCN5: Dihydroorotase	0.1646892861
+UniRef50_B2KCN5: Dihydroorotase|unclassified	0.1646892861
+UniRef50_UPI0001923EDA	0.1646864877
+UniRef50_UPI0001923EDA|unclassified	0.1646864877
+UniRef50_UPI0002FA5086: hypothetical protein	0.1646820462
+UniRef50_UPI0002FA5086: hypothetical protein|unclassified	0.1646820462
+UniRef50_D6EMG2: Transcriptional regulator	0.1646787100
+UniRef50_D6EMG2: Transcriptional regulator|unclassified	0.1646787100
+UniRef50_K0R863	0.1646712044
+UniRef50_K0R863|unclassified	0.1646712044
+UniRef50_UPI0003C11AE9: PREDICTED: putative aldehyde dehydrogenase family 7 member A1 homolog	0.1646633618
+UniRef50_UPI0003C11AE9: PREDICTED: putative aldehyde dehydrogenase family 7 member A1 homolog|unclassified	0.1646633618
+UniRef50_UPI000360A0FF: phosphoribosylglycinamide synthetase	0.1646572777
+UniRef50_UPI000360A0FF: phosphoribosylglycinamide synthetase|unclassified	0.1646572777
+UniRef50_UPI000359A359	0.1646541934
+UniRef50_UPI000359A359|unclassified	0.1646541934
+UniRef50_R6H6G3	0.1646537521
+UniRef50_R6H6G3|unclassified	0.1646537521
+UniRef50_F8D8N4	0.1646520844
+UniRef50_F8D8N4|unclassified	0.1646520844
+UniRef50_Q1QC42: Pyridoxal-5'-phosphate-dependent enzyme, beta subunit	0.1646456036
+UniRef50_Q1QC42: Pyridoxal-5'-phosphate-dependent enzyme, beta subunit|unclassified	0.1646456036
+UniRef50_UPI0003B401D2: phosphoglycerate kinase	0.1646389184
+UniRef50_UPI0003B401D2: phosphoglycerate kinase|unclassified	0.1646389184
+UniRef50_UPI0003B573D9: hypothetical protein, partial	0.1646367658
+UniRef50_UPI0003B573D9: hypothetical protein, partial|unclassified	0.1646367658
+UniRef50_UPI00046890BA: hypothetical protein, partial	0.1646246784
+UniRef50_UPI00046890BA: hypothetical protein, partial|unclassified	0.1646246784
+UniRef50_Q1Q8K4: Phosphate import ATP-binding protein PstB	0.1646091268
+UniRef50_Q1Q8K4: Phosphate import ATP-binding protein PstB|unclassified	0.1646091268
+UniRef50_UPI0001C39687: ATPase component of various ABC-type transport systems with duplicated ATPase domain, partial	0.1645848918
+UniRef50_UPI0001C39687: ATPase component of various ABC-type transport systems with duplicated ATPase domain, partial|unclassified	0.1645848918
+UniRef50_U2SDU2: Macro domain protein	0.1645791854
+UniRef50_U2SDU2: Macro domain protein|unclassified	0.1645791854
+UniRef50_T0T951	0.1645656597
+UniRef50_T0T951|unclassified	0.1645656597
+UniRef50_UPI000262634A: dihydropyrimidine dehydrogenase subunit A	0.1645600379
+UniRef50_UPI000262634A: dihydropyrimidine dehydrogenase subunit A|unclassified	0.1645600379
+UniRef50_K0NNH8: SEC-C motif protein	0.1645590194
+UniRef50_K0NNH8: SEC-C motif protein|unclassified	0.1645590194
+UniRef50_UPI00045EBB65: TetR family transcriptional regulator	0.1645541028
+UniRef50_UPI00045EBB65: TetR family transcriptional regulator|unclassified	0.1645541028
+UniRef50_M9RI58	0.1645513721
+UniRef50_M9RI58|unclassified	0.1645513721
+UniRef50_Q5LNI0: Cobalamin biosynthesis protein CobD	0.1645462806
+UniRef50_Q5LNI0: Cobalamin biosynthesis protein CobD|unclassified	0.1645462806
+UniRef50_A4E751	0.1645347497
+UniRef50_A4E751|unclassified	0.1645347497
+UniRef50_Q9KTY5: Inositol-1-monophosphatase	0.1645336746
+UniRef50_Q9KTY5: Inositol-1-monophosphatase|unclassified	0.1645336746
+UniRef50_B3PI74: Type 4 fimbrial biogenesis protein PilN	0.1645301199
+UniRef50_B3PI74: Type 4 fimbrial biogenesis protein PilN|unclassified	0.1645301199
+UniRef50_R0DKH2: Binding-protein-dependent transport systems inner membrane component (Fragment)	0.1645279557
+UniRef50_R0DKH2: Binding-protein-dependent transport systems inner membrane component (Fragment)|unclassified	0.1645279557
+UniRef50_K4ZQ72	0.1645179491
+UniRef50_K4ZQ72|unclassified	0.1645179491
+UniRef50_UPI0003643033: hypothetical protein, partial	0.1644990448
+UniRef50_UPI0003643033: hypothetical protein, partial|unclassified	0.1644990448
+UniRef50_Q8A624: ATP-dependent 6-phosphofructokinase 2	0.1644693968
+UniRef50_Q8A624: ATP-dependent 6-phosphofructokinase 2|unclassified	0.1644693968
+UniRef50_UPI00030CBF93: hypothetical protein	0.1644668272
+UniRef50_UPI00030CBF93: hypothetical protein|unclassified	0.1644668272
+UniRef50_UPI0003288CA5: PREDICTED: spidroin-1-like	0.1644394324
+UniRef50_UPI0003288CA5: PREDICTED: spidroin-1-like|unclassified	0.1644394324
+UniRef50_UPI0003959BE1: PREDICTED: basic proline-rich protein-like	0.1644246349
+UniRef50_UPI0003959BE1: PREDICTED: basic proline-rich protein-like|unclassified	0.1644246349
+UniRef50_Q2NAH9	0.1644221303
+UniRef50_Q2NAH9|unclassified	0.1644221303
+UniRef50_Q9KU46: Lipoprotein signal peptidase	0.1644173806
+UniRef50_Q9KU46: Lipoprotein signal peptidase|unclassified	0.1644173806
+UniRef50_B2SAG4: Fructose-1,6-bisphosphatase class 1	0.1644045150
+UniRef50_B2SAG4: Fructose-1,6-bisphosphatase class 1|unclassified	0.1644045150
+UniRef50_W1MKF8	0.1643817044
+UniRef50_W1MKF8|unclassified	0.1643817044
+UniRef50_C3TWR4: Hoar	0.1643745528
+UniRef50_C3TWR4: Hoar|unclassified	0.1643745528
+UniRef50_UPI000380F370: hypothetical protein	0.1643589356
+UniRef50_UPI000380F370: hypothetical protein|unclassified	0.1643589356
+UniRef50_C5BD16: Adenylate kinase	0.1643568076
+UniRef50_C5BD16: Adenylate kinase|unclassified	0.1643568076
+UniRef50_UPI00037C2E36: hypothetical protein	0.1643509770
+UniRef50_UPI00037C2E36: hypothetical protein|unclassified	0.1643509770
+UniRef50_X0X745: Marine sediment metagenome DNA, contig: S01H1_S29912 (Fragment)	0.1643482383
+UniRef50_X0X745: Marine sediment metagenome DNA, contig: S01H1_S29912 (Fragment)|unclassified	0.1643482383
+UniRef50_A3UXL8	0.1643428701
+UniRef50_A3UXL8|unclassified	0.1643428701
+UniRef50_A0A017SV29	0.1643426926
+UniRef50_A0A017SV29|unclassified	0.1643426926
+UniRef50_Q2VLH1: Major ampullate spidroin 2 (Fragment)	0.1643191170
+UniRef50_Q2VLH1: Major ampullate spidroin 2 (Fragment)|unclassified	0.1643191170
+UniRef50_UPI0002555E19: hydrolases of HD superfamily protein	0.1643189402
+UniRef50_UPI0002555E19: hydrolases of HD superfamily protein|unclassified	0.1643189402
+UniRef50_UPI0001B42D95: bifunctional homocysteine S-methyltransferase/5,10-methylenetetrahydrofolate reductase protein, partial	0.1643180915
+UniRef50_UPI0001B42D95: bifunctional homocysteine S-methyltransferase/5,10-methylenetetrahydrofolate reductase protein, partial|unclassified	0.1643180915
+UniRef50_P0CQ36: Phosphoribosylaminoimidazole carboxylase	0.1643156635
+UniRef50_P0CQ36: Phosphoribosylaminoimidazole carboxylase|unclassified	0.1643156635
+UniRef50_UPI0003725E13: hypothetical protein, partial	0.1642895500
+UniRef50_UPI0003725E13: hypothetical protein, partial|unclassified	0.1642895500
+UniRef50_UPI0003B7AF8F: septation ring formation regulator EzrA	0.1642862085
+UniRef50_UPI0003B7AF8F: septation ring formation regulator EzrA|unclassified	0.1642862085
+UniRef50_UPI0003B7683B: polar amino acid ABC transporter permease	0.1642828883
+UniRef50_UPI0003B7683B: polar amino acid ABC transporter permease|unclassified	0.1642828883
+UniRef50_Q3JAS8	0.1642760282
+UniRef50_Q3JAS8|unclassified	0.1642760282
+UniRef50_Q9AF05	0.1642689707
+UniRef50_Q9AF05|unclassified	0.1642689707
+UniRef50_UPI0003B6AFA9: glycerol-3-phosphate dehydrogenase	0.1642655627
+UniRef50_UPI0003B6AFA9: glycerol-3-phosphate dehydrogenase|unclassified	0.1642655627
+UniRef50_UPI00035D1F28: geranylgeranyl pyrophosphate synthase	0.1642608177
+UniRef50_UPI00035D1F28: geranylgeranyl pyrophosphate synthase|unclassified	0.1642608177
+UniRef50_UPI00029A19D9: 3-oxoacyl-(acyl-carrier-protein) reductase	0.1642474531
+UniRef50_UPI00029A19D9: 3-oxoacyl-(acyl-carrier-protein) reductase|unclassified	0.1642474531
+UniRef50_UPI0003B45AF6: NADPH:quinone reductase	0.1642308639
+UniRef50_UPI0003B45AF6: NADPH:quinone reductase|unclassified	0.1642308639
+UniRef50_A1BHE5: Chorismate synthase	0.1642282754
+UniRef50_A1BHE5: Chorismate synthase|unclassified	0.1642282754
+UniRef50_K0QZ42	0.1642042752
+UniRef50_K0QZ42|unclassified	0.1642042752
+UniRef50_R6U6H0	0.1641907489
+UniRef50_R6U6H0|unclassified	0.1641907489
+UniRef50_X5TGC9	0.1641854372
+UniRef50_X5TGC9|unclassified	0.1641854372
+UniRef50_UPI00047B354D: hypothetical protein	0.1641819706
+UniRef50_UPI00047B354D: hypothetical protein|unclassified	0.1641819706
+UniRef50_UPI0003B7726E: ABC transporter permease	0.1641486453
+UniRef50_UPI0003B7726E: ABC transporter permease|unclassified	0.1641486453
+UniRef50_A0A023XG24	0.1641481556
+UniRef50_A0A023XG24|unclassified	0.1641481556
+UniRef50_A1W8H0: Ribosomal RNA large subunit methyltransferase E	0.1641424084
+UniRef50_A1W8H0: Ribosomal RNA large subunit methyltransferase E|unclassified	0.1641424084
+UniRef50_UPI00047BFE08: hypothetical protein	0.1641391323
+UniRef50_UPI00047BFE08: hypothetical protein|unclassified	0.1641391323
+UniRef50_X0RQN0: 2-keto-3-deoxy-L-fuconate dehydrogenase	0.1641383332
+UniRef50_X0RQN0: 2-keto-3-deoxy-L-fuconate dehydrogenase|unclassified	0.1641383332
+UniRef50_B6J4A3: Shikimate kinase	0.1641351227
+UniRef50_B6J4A3: Shikimate kinase|unclassified	0.1641351227
+UniRef50_S4NRC8	0.1641289806
+UniRef50_S4NRC8|unclassified	0.1641289806
+UniRef50_UPI00037416C8: hypothetical protein	0.1641191744
+UniRef50_UPI00037416C8: hypothetical protein|unclassified	0.1641191744
+UniRef50_X7YAW2	0.1641163919
+UniRef50_X7YAW2|unclassified	0.1641163919
+UniRef50_E1ZI00	0.1641155796
+UniRef50_E1ZI00|unclassified	0.1641155796
+UniRef50_UPI0000557872: hemolysin E	0.1641122510
+UniRef50_UPI0000557872: hemolysin E|unclassified	0.1641122510
+UniRef50_F0DFZ2	0.1641121829
+UniRef50_F0DFZ2|unclassified	0.1641121829
+UniRef50_G5Q7B6: Prepilin peptidase dependent protein B	0.1641058623
+UniRef50_G5Q7B6: Prepilin peptidase dependent protein B|unclassified	0.1641058623
+UniRef50_UPI0004683C75: hypothetical protein	0.1641041216
+UniRef50_UPI0004683C75: hypothetical protein|unclassified	0.1641041216
+UniRef50_UPI00021A4812: PREDICTED: 28S ribosomal protein S18c, mitochondrial-like	0.1640719468
+UniRef50_UPI00021A4812: PREDICTED: 28S ribosomal protein S18c, mitochondrial-like|unclassified	0.1640719468
+UniRef50_L5K4Z5: Ankyrin repeat domain-containing protein 50	0.1640704932
+UniRef50_L5K4Z5: Ankyrin repeat domain-containing protein 50|unclassified	0.1640704932
+UniRef50_UPI00047996F1: hypothetical protein	0.1640620589
+UniRef50_UPI00047996F1: hypothetical protein|unclassified	0.1640620589
+UniRef50_H0SBK8	0.1640547252
+UniRef50_H0SBK8|unclassified	0.1640547252
+UniRef50_Q8VNM5: Orf513 protein	0.1640511138
+UniRef50_Q8VNM5: Orf513 protein|unclassified	0.1640511138
+UniRef50_K1ZHX8: ThiJ/PfpI	0.1640431868
+UniRef50_K1ZHX8: ThiJ/PfpI|unclassified	0.1640431868
+UniRef50_A1U6D8: Membrane protein-like protein	0.1640396927
+UniRef50_A1U6D8: Membrane protein-like protein|unclassified	0.1640396927
+UniRef50_UPI0001D61AB0	0.1640384272
+UniRef50_UPI0001D61AB0|unclassified	0.1640384272
+UniRef50_UPI0003A59893: formate dehydrogenase	0.1640207502
+UniRef50_UPI0003A59893: formate dehydrogenase|unclassified	0.1640207502
+UniRef50_UPI0004687371: hypothetical protein	0.1640066361
+UniRef50_UPI0004687371: hypothetical protein|unclassified	0.1640066361
+UniRef50_UPI0004773A20: transcriptional regulator	0.1640019160
+UniRef50_UPI0004773A20: transcriptional regulator|unclassified	0.1640019160
+UniRef50_UPI000379A013: hypothetical protein	0.1639997406
+UniRef50_UPI000379A013: hypothetical protein|unclassified	0.1639997406
+UniRef50_S3IIC1: Prepilin-type cleavage/methylation protein	0.1639994031
+UniRef50_S3IIC1: Prepilin-type cleavage/methylation protein|unclassified	0.1639994031
+UniRef50_UPI000365FC2A: hypothetical protein, partial	0.1639832847
+UniRef50_UPI000365FC2A: hypothetical protein, partial|unclassified	0.1639832847
+UniRef50_UPI00045E7231: hypothetical protein	0.1639810189
+UniRef50_UPI00045E7231: hypothetical protein|unclassified	0.1639810189
+UniRef50_M3J9Y6: tRNA modification GTPase TrmE (Fragment)	0.1639738218
+UniRef50_M3J9Y6: tRNA modification GTPase TrmE (Fragment)|unclassified	0.1639738218
+UniRef50_D4F4I6	0.1639618252
+UniRef50_D4F4I6|unclassified	0.1639618252
+UniRef50_A3JG79	0.1639504398
+UniRef50_A3JG79|unclassified	0.1639504398
+UniRef50_A6E2Z7	0.1639483894
+UniRef50_A6E2Z7|unclassified	0.1639483894
+UniRef50_Q8X1P0: Catalase	0.1639473778
+UniRef50_Q8X1P0: Catalase|unclassified	0.1639473778
+UniRef50_UPI00045DC843: PREDICTED: proline-rich protein HaeIII subfamily 1-like	0.1639386207
+UniRef50_UPI00045DC843: PREDICTED: proline-rich protein HaeIII subfamily 1-like|unclassified	0.1639386207
+UniRef50_U3TZC9	0.1639336436
+UniRef50_U3TZC9|unclassified	0.1639336436
+UniRef50_W8AF36	0.1639027560
+UniRef50_W8AF36|unclassified	0.1639027560
+UniRef50_W1HEW1: DNA topology modulation protein	0.1638842359
+UniRef50_W1HEW1: DNA topology modulation protein|unclassified	0.1638842359
+UniRef50_UPI0003AECF44: PREDICTED: HERV-R_7q21.2 provirus ancestral Env polyprotein isoform X3	0.1638796454
+UniRef50_UPI0003AECF44: PREDICTED: HERV-R_7q21.2 provirus ancestral Env polyprotein isoform X3|unclassified	0.1638796454
+UniRef50_UPI0002FE50F2: ABC transporter ATP-binding protein	0.1638778744
+UniRef50_UPI0002FE50F2: ABC transporter ATP-binding protein|unclassified	0.1638778744
+UniRef50_UPI00047E49EC: UDP pyrophosphate phosphatase	0.1638749793
+UniRef50_UPI00047E49EC: UDP pyrophosphate phosphatase|unclassified	0.1638749793
+UniRef50_A5ECA5: Transposase	0.1638722616
+UniRef50_A5ECA5: Transposase|unclassified	0.1638722616
+UniRef50_B6G0W5: Redox-active disulfide protein 2	0.1638707634
+UniRef50_B6G0W5: Redox-active disulfide protein 2|unclassified	0.1638707634
+UniRef50_UPI000287BD0C: iron-siderophore uptake system transmembrane protein	0.1638654183
+UniRef50_UPI000287BD0C: iron-siderophore uptake system transmembrane protein|unclassified	0.1638654183
+UniRef50_E1PKG3: Putative aliphatic sulfonates-binding protein	0.1638529710
+UniRef50_E1PKG3: Putative aliphatic sulfonates-binding protein|unclassified	0.1638529710
+UniRef50_X3EY52: GTPase	0.1638489068
+UniRef50_X3EY52: GTPase|unclassified	0.1638489068
+UniRef50_UPI00036FEB5A: hypothetical protein	0.1638476844
+UniRef50_UPI00036FEB5A: hypothetical protein|unclassified	0.1638476844
+UniRef50_UPI00036225CA: hypothetical protein	0.1638391357
+UniRef50_UPI00036225CA: hypothetical protein|unclassified	0.1638391357
+UniRef50_S7UVJ8	0.1638183725
+UniRef50_S7UVJ8|unclassified	0.1638183725
+UniRef50_UPI00037B0199: hypothetical protein	0.1638164164
+UniRef50_UPI00037B0199: hypothetical protein|unclassified	0.1638164164
+UniRef50_Q67KH9: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.1637978038
+UniRef50_Q67KH9: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.1637978038
+UniRef50_UPI00034B152D: hypothetical protein	0.1637841717
+UniRef50_UPI00034B152D: hypothetical protein|unclassified	0.1637841717
+UniRef50_A4EJR2	0.1637581062
+UniRef50_A4EJR2|unclassified	0.1637581062
+UniRef50_B4V0E4	0.1637571903
+UniRef50_B4V0E4|unclassified	0.1637571903
+UniRef50_UPI000441080A: Diaminopimelate epimerase-like protein	0.1637522041
+UniRef50_UPI000441080A: Diaminopimelate epimerase-like protein|unclassified	0.1637522041
+UniRef50_D4SX59	0.1637510345
+UniRef50_D4SX59|unclassified	0.1637510345
+UniRef50_Q3JTD2	0.1637477000
+UniRef50_Q3JTD2|unclassified	0.1637477000
+UniRef50_D8LUB2: EsV-1-7	0.1637414157
+UniRef50_D8LUB2: EsV-1-7|unclassified	0.1637414157
+UniRef50_Q9ZJI6: Ribonuclease J	0.1637288349
+UniRef50_Q9ZJI6: Ribonuclease J|unclassified	0.1637288349
+UniRef50_UPI00035F1290: hypothetical protein	0.1637220568
+UniRef50_UPI00035F1290: hypothetical protein|unclassified	0.1637220568
+UniRef50_UPI0003B7B45E: hydrolase	0.1637169308
+UniRef50_UPI0003B7B45E: hydrolase|unclassified	0.1637169308
+UniRef50_UPI00029A566E: glycoside hydrolase family protein	0.1637149787
+UniRef50_UPI00029A566E: glycoside hydrolase family protein|unclassified	0.1637149787
+UniRef50_UPI00030B67A6: hypothetical protein	0.1637149687
+UniRef50_UPI00030B67A6: hypothetical protein|unclassified	0.1637149687
+UniRef50_I0TN84	0.1637045730
+UniRef50_I0TN84|unclassified	0.1637045730
+UniRef50_M4TQ85: Short-chain dehydrogenase/reductase SDR	0.1637032396
+UniRef50_M4TQ85: Short-chain dehydrogenase/reductase SDR|unclassified	0.1637032396
+UniRef50_UPI00036B4EC1: hypothetical protein	0.1636970208
+UniRef50_UPI00036B4EC1: hypothetical protein|unclassified	0.1636970208
+UniRef50_C2MJU5: Oligopeptide ABC transporter, oligopeptide-binding protein	0.1636879078
+UniRef50_C2MJU5: Oligopeptide ABC transporter, oligopeptide-binding protein|unclassified	0.1636879078
+UniRef50_UPI0003002FCB: hypothetical protein	0.1636859406
+UniRef50_UPI0003002FCB: hypothetical protein|unclassified	0.1636859406
+UniRef50_X1BI18: Marine sediment metagenome DNA, contig: S01H4_S13841	0.1636812938
+UniRef50_X1BI18: Marine sediment metagenome DNA, contig: S01H4_S13841|unclassified	0.1636812938
+UniRef50_T1WCB4: Intracellular multiplication and human macrophage-killing (Fragment)	0.1636748126
+UniRef50_T1WCB4: Intracellular multiplication and human macrophage-killing (Fragment)|unclassified	0.1636748126
+UniRef50_UPI0004026C93: ABC transporter permease	0.1636716881
+UniRef50_UPI0004026C93: ABC transporter permease|unclassified	0.1636716881
+UniRef50_UPI00035F21CD: hypothetical protein	0.1636627882
+UniRef50_UPI00035F21CD: hypothetical protein|unclassified	0.1636627882
+UniRef50_Q75J36	0.1636563120
+UniRef50_Q75J36|unclassified	0.1636563120
+UniRef50_K7EHF7	0.1636299720
+UniRef50_K7EHF7|unclassified	0.1636299720
+UniRef50_UPI00035C8CB7: hypothetical protein	0.1636289085
+UniRef50_UPI00035C8CB7: hypothetical protein|unclassified	0.1636289085
+UniRef50_A9VQ13	0.1636233707
+UniRef50_A9VQ13|unclassified	0.1636233707
+UniRef50_A1UJA1: PE-PGRS family protein	0.1636229661
+UniRef50_A1UJA1: PE-PGRS family protein|unclassified	0.1636229661
+UniRef50_UPI00037D43AF: hypothetical protein	0.1636104453
+UniRef50_UPI00037D43AF: hypothetical protein|unclassified	0.1636104453
+UniRef50_W0LAC5	0.1636093815
+UniRef50_W0LAC5|unclassified	0.1636093815
+UniRef50_X7XXZ1	0.1635923606
+UniRef50_X7XXZ1|unclassified	0.1635923606
+UniRef50_UPI0003B3E4F4: shikimate dehydrogenase	0.1635859487
+UniRef50_UPI0003B3E4F4: shikimate dehydrogenase|unclassified	0.1635859487
+UniRef50_M5JU21	0.1635733285
+UniRef50_M5JU21|unclassified	0.1635733285
+UniRef50_K0K2F2	0.1635651595
+UniRef50_K0K2F2|unclassified	0.1635651595
+UniRef50_UPI00037E6109: hypothetical protein	0.1635636412
+UniRef50_UPI00037E6109: hypothetical protein|unclassified	0.1635636412
+UniRef50_UPI0004729BC1: cation diffusion facilitator family transporter	0.1635608379
+UniRef50_UPI0004729BC1: cation diffusion facilitator family transporter|unclassified	0.1635608379
+UniRef50_R9R098	0.1635378788
+UniRef50_R9R098|unclassified	0.1635378788
+UniRef50_Q3JRE6	0.1635230282
+UniRef50_Q3JRE6|unclassified	0.1635230282
+UniRef50_Q82DM5: Adenylate kinase	0.1635042568
+UniRef50_Q82DM5: Adenylate kinase|unclassified	0.1635042568
+UniRef50_S4XSU0	0.1634776374
+UniRef50_S4XSU0|unclassified	0.1634776374
+UniRef50_UPI000379B196: hypothetical protein	0.1634662780
+UniRef50_UPI000379B196: hypothetical protein|unclassified	0.1634662780
+UniRef50_UPI0003802C7D: hypothetical protein	0.1634610111
+UniRef50_UPI0003802C7D: hypothetical protein|unclassified	0.1634610111
+UniRef50_X0YBU1: Marine sediment metagenome DNA, contig: S01H1_S41904 (Fragment)	0.1634477252
+UniRef50_X0YBU1: Marine sediment metagenome DNA, contig: S01H1_S41904 (Fragment)|unclassified	0.1634477252
+UniRef50_Q8R7S6: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.1634443610
+UniRef50_Q8R7S6: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.1634443610
+UniRef50_B1GBJ2	0.1634414242
+UniRef50_B1GBJ2|unclassified	0.1634414242
+UniRef50_A0A010E970	0.1634409121
+UniRef50_A0A010E970|unclassified	0.1634409121
+UniRef50_UPI00047CAA5D: cob(I)yrinic acid a c-diamide adenosyltransferase	0.1634340312
+UniRef50_UPI00047CAA5D: cob(I)yrinic acid a c-diamide adenosyltransferase|unclassified	0.1634340312
+UniRef50_E1W4N2	0.1634330646
+UniRef50_E1W4N2|unclassified	0.1634330646
+UniRef50_B7FV11: Predicted protein (Fragment)	0.1634307860
+UniRef50_B7FV11: Predicted protein (Fragment)|unclassified	0.1634307860
+UniRef50_UPI000464ABE7: hypothetical protein	0.1634118157
+UniRef50_UPI000464ABE7: hypothetical protein|unclassified	0.1634118157
+UniRef50_Q5E305	0.1634102327
+UniRef50_Q5E305|unclassified	0.1634102327
+UniRef50_H1FIN1: UPF0047 protein yjbQ	0.1633969832
+UniRef50_H1FIN1: UPF0047 protein yjbQ|unclassified	0.1633969832
+UniRef50_F0XVC3	0.1633968543
+UniRef50_F0XVC3|unclassified	0.1633968543
+UniRef50_UPI000377338C: hypothetical protein	0.1633953275
+UniRef50_UPI000377338C: hypothetical protein|unclassified	0.1633953275
+UniRef50_UPI0003732A38: hypothetical protein	0.1633941514
+UniRef50_UPI0003732A38: hypothetical protein|unclassified	0.1633941514
+UniRef50_C1D0Z6: Thymidine kinase	0.1633853812
+UniRef50_C1D0Z6: Thymidine kinase|unclassified	0.1633853812
+UniRef50_Q4A0K1	0.1633700199
+UniRef50_Q4A0K1|unclassified	0.1633700199
+UniRef50_UPI000373EEF8: MULTISPECIES: hypothetical protein	0.1633455487
+UniRef50_UPI000373EEF8: MULTISPECIES: hypothetical protein|unclassified	0.1633455487
+UniRef50_UPI00037C2BCE: hypothetical protein	0.1633454485
+UniRef50_UPI00037C2BCE: hypothetical protein|unclassified	0.1633454485
+UniRef50_UPI00037E3718: hypothetical protein	0.1633354280
+UniRef50_UPI00037E3718: hypothetical protein|unclassified	0.1633354280
+UniRef50_UPI0003738137: hypothetical protein	0.1633341035
+UniRef50_UPI0003738137: hypothetical protein|unclassified	0.1633341035
+UniRef50_A6SUB0	0.1633272393
+UniRef50_A6SUB0|unclassified	0.1633272393
+UniRef50_B2WPE8: Predicted protein	0.1633259979
+UniRef50_B2WPE8: Predicted protein|unclassified	0.1633259979
+UniRef50_W1YLW1: Hydrogenase (NiFe) small subunit HydA (Fragment)	0.1633259451
+UniRef50_W1YLW1: Hydrogenase (NiFe) small subunit HydA (Fragment)|unclassified	0.1633259451
+UniRef50_R7NTH8	0.1633235097
+UniRef50_R7NTH8|unclassified	0.1633235097
+UniRef50_Q3JRP1: Protein-L-isoaspartate O-methyltransferase	0.1632966792
+UniRef50_Q3JRP1: Protein-L-isoaspartate O-methyltransferase|unclassified	0.1632966792
+UniRef50_Q9ZHS8: Stage IV sporulation protein B (Fragment)	0.1632863848
+UniRef50_Q9ZHS8: Stage IV sporulation protein B (Fragment)|unclassified	0.1632863848
+UniRef50_C7D6Q8: Lipoprotein, putative	0.1632763239
+UniRef50_C7D6Q8: Lipoprotein, putative|unclassified	0.1632763239
+UniRef50_UPI0003ABC61E: PREDICTED: 40S ribosomal protein S15-like	0.1632630723
+UniRef50_UPI0003ABC61E: PREDICTED: 40S ribosomal protein S15-like|unclassified	0.1632630723
+UniRef50_S9TEG5: General secretory system II protein E domain-containing protein	0.1632625780
+UniRef50_S9TEG5: General secretory system II protein E domain-containing protein|unclassified	0.1632625780
+UniRef50_E0TD74	0.1632514458
+UniRef50_E0TD74|unclassified	0.1632514458
+UniRef50_M6NTQ5: N-terminal TM domain of oligopeptide transport permease C	0.1632429871
+UniRef50_M6NTQ5: N-terminal TM domain of oligopeptide transport permease C|unclassified	0.1632429871
+UniRef50_UPI00041F08CB: MULTISPECIES: amino acid ABC transporter ATPase	0.1632376203
+UniRef50_UPI00041F08CB: MULTISPECIES: amino acid ABC transporter ATPase|unclassified	0.1632376203
+UniRef50_UPI0002C45EDC	0.1632319323
+UniRef50_UPI0002C45EDC|unclassified	0.1632319323
+UniRef50_UPI00026C5825: D-ribose pyranase	0.1632301718
+UniRef50_UPI00026C5825: D-ribose pyranase|unclassified	0.1632301718
+UniRef50_A7N872	0.1632241562
+UniRef50_A7N872|unclassified	0.1632241562
+UniRef50_V7EI63: Flagellar motor protein MotB	0.1632234989
+UniRef50_V7EI63: Flagellar motor protein MotB|unclassified	0.1632234989
+UniRef50_K4IEB3	0.1632217737
+UniRef50_K4IEB3|unclassified	0.1632217737
+UniRef50_UPI0003F5184A: hypothetical protein	0.1632213087
+UniRef50_UPI0003F5184A: hypothetical protein|unclassified	0.1632213087
+UniRef50_UPI0002235F3A: PREDICTED: hypothetical protein LOC100673424	0.1632098917
+UniRef50_UPI0002235F3A: PREDICTED: hypothetical protein LOC100673424|unclassified	0.1632098917
+UniRef50_UPI0002BC6165: bacterioferritin comigratory protein	0.1632072092
+UniRef50_UPI0002BC6165: bacterioferritin comigratory protein|unclassified	0.1632072092
+UniRef50_UPI000463F84F: 50S ribosomal protein L21	0.1632044422
+UniRef50_UPI000463F84F: 50S ribosomal protein L21|unclassified	0.1632044422
+UniRef50_UPI00036E853F: hypothetical protein, partial	0.1631936760
+UniRef50_UPI00036E853F: hypothetical protein, partial|unclassified	0.1631936760
+UniRef50_E7GTR3	0.1631871495
+UniRef50_E7GTR3|unclassified	0.1631871495
+UniRef50_UPI00047D8DA0: methionine aminopeptidase	0.1631803442
+UniRef50_UPI00047D8DA0: methionine aminopeptidase|unclassified	0.1631803442
+UniRef50_D9WPR1	0.1631674281
+UniRef50_D9WPR1|unclassified	0.1631674281
+UniRef50_UPI000287ABE1: transketolase	0.1631601678
+UniRef50_UPI000287ABE1: transketolase|unclassified	0.1631601678
+UniRef50_UPI0002EE51E7: hypothetical protein	0.1631532909
+UniRef50_UPI0002EE51E7: hypothetical protein|unclassified	0.1631532909
+UniRef50_H0J9D4	0.1631516870
+UniRef50_H0J9D4|unclassified	0.1631516870
+UniRef50_F9F8K2	0.1631391256
+UniRef50_F9F8K2|unclassified	0.1631391256
+UniRef50_UPI00026C4EFE: hypothetical protein	0.1631389319
+UniRef50_UPI00026C4EFE: hypothetical protein|unclassified	0.1631389319
+UniRef50_W7ZDU7	0.1631229622
+UniRef50_W7ZDU7|unclassified	0.1631229622
+UniRef50_F4D8W0	0.1631201068
+UniRef50_F4D8W0|unclassified	0.1631201068
+UniRef50_K2JRB4	0.1631148706
+UniRef50_K2JRB4|unclassified	0.1631148706
+UniRef50_UPI0003C12600	0.1631074118
+UniRef50_UPI0003C12600|unclassified	0.1631074118
+UniRef50_UPI000288B14E: transposase	0.1631016068
+UniRef50_UPI000288B14E: transposase|unclassified	0.1631016068
+UniRef50_G5JDC1	0.1630959147
+UniRef50_G5JDC1|unclassified	0.1630959147
+UniRef50_U3HLD7	0.1630888801
+UniRef50_U3HLD7|unclassified	0.1630888801
+UniRef50_E1WYW8	0.1630865936
+UniRef50_E1WYW8|unclassified	0.1630865936
+UniRef50_S6BJV3	0.1630860163
+UniRef50_S6BJV3|unclassified	0.1630860163
+UniRef50_UPI0003B4B204: hypothetical protein	0.1630776960
+UniRef50_UPI0003B4B204: hypothetical protein|unclassified	0.1630776960
+UniRef50_K0RCG6	0.1630739970
+UniRef50_K0RCG6|unclassified	0.1630739970
+UniRef50_UPI000361113C: hypothetical protein	0.1630660610
+UniRef50_UPI000361113C: hypothetical protein|unclassified	0.1630660610
+UniRef50_R5ELQ2: Topology modulation protein	0.1630590737
+UniRef50_R5ELQ2: Topology modulation protein|unclassified	0.1630590737
+UniRef50_K6W7J0	0.1630488167
+UniRef50_K6W7J0|unclassified	0.1630488167
+UniRef50_P24270: Catalase	0.1630462879
+UniRef50_P24270: Catalase|unclassified	0.1630462879
+UniRef50_J4VUC7: Glucan 1, 4-alpha-glucosidase	0.1630444473
+UniRef50_J4VUC7: Glucan 1, 4-alpha-glucosidase|unclassified	0.1630444473
+UniRef50_UPI00036CAB27: hypothetical protein	0.1630393406
+UniRef50_UPI00036CAB27: hypothetical protein|unclassified	0.1630393406
+UniRef50_K2GNH4	0.1630103021
+UniRef50_K2GNH4|unclassified	0.1630103021
+UniRef50_UPI0004754876: shikimate kinase	0.1630018619
+UniRef50_UPI0004754876: shikimate kinase|unclassified	0.1630018619
+UniRef50_I3U950	0.1629992593
+UniRef50_I3U950|unclassified	0.1629992593
+UniRef50_E4LMM6: HD domain protein	0.1629884376
+UniRef50_E4LMM6: HD domain protein|unclassified	0.1629884376
+UniRef50_UPI00045E7AE4: hypothetical protein	0.1629752661
+UniRef50_UPI00045E7AE4: hypothetical protein|unclassified	0.1629752661
+UniRef50_UPI0004284CC7: hypothetical protein	0.1629665032
+UniRef50_UPI0004284CC7: hypothetical protein|unclassified	0.1629665032
+UniRef50_UPI00046AEF19: hypothetical protein	0.1629650998
+UniRef50_UPI00046AEF19: hypothetical protein|unclassified	0.1629650998
+UniRef50_UPI00046CE89C: hypothetical protein	0.1629628343
+UniRef50_UPI00046CE89C: hypothetical protein|unclassified	0.1629628343
+UniRef50_UPI000441B666: PREDICTED: heat shock 70 kDa protein cognate 5-like	0.1629568127
+UniRef50_UPI000441B666: PREDICTED: heat shock 70 kDa protein cognate 5-like|unclassified	0.1629568127
+UniRef50_A1SRV2: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase	0.1629532221
+UniRef50_A1SRV2: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase|unclassified	0.1629532221
+UniRef50_A0A031JDD6: Taurine ABC transporter, periplasmic binding protein	0.1629517205
+UniRef50_A0A031JDD6: Taurine ABC transporter, periplasmic binding protein|unclassified	0.1629517205
+UniRef50_R6CQ31	0.1629502527
+UniRef50_R6CQ31|unclassified	0.1629502527
+UniRef50_A3VZS1	0.1629454928
+UniRef50_A3VZS1|unclassified	0.1629454928
+UniRef50_UPI0004636678: hypothetical protein	0.1629449245
+UniRef50_UPI0004636678: hypothetical protein|unclassified	0.1629449245
+UniRef50_UPI000474DEAF: hypothetical protein	0.1629361200
+UniRef50_UPI000474DEAF: hypothetical protein|unclassified	0.1629361200
+UniRef50_X2M3J7: Virulence protein	0.1629247969
+UniRef50_X2M3J7: Virulence protein|unclassified	0.1629247969
+UniRef50_UPI000362D231: hypothetical protein	0.1629247513
+UniRef50_UPI000362D231: hypothetical protein|unclassified	0.1629247513
+UniRef50_UPI0002892669: transporter	0.1629244075
+UniRef50_UPI0002892669: transporter|unclassified	0.1629244075
+UniRef50_W6M800	0.1629227396
+UniRef50_W6M800|unclassified	0.1629227396
+UniRef50_Q83CY8: Putative peroxiredoxin bcp	0.1629066246
+UniRef50_Q83CY8: Putative peroxiredoxin bcp|unclassified	0.1629066246
+UniRef50_UPI0003714284: formate hydrogenlyase subunit 3, partial	0.1628968900
+UniRef50_UPI0003714284: formate hydrogenlyase subunit 3, partial|unclassified	0.1628968900
+UniRef50_L8GQZ7: Aldo/keto reductase	0.1628819812
+UniRef50_L8GQZ7: Aldo/keto reductase|unclassified	0.1628819812
+UniRef50_Q07596: Nisin leader peptide-processing serine protease NisP	0.1628782500
+UniRef50_Q07596: Nisin leader peptide-processing serine protease NisP|unclassified	0.1628782500
+UniRef50_A4WVU5	0.1628697024
+UniRef50_A4WVU5|unclassified	0.1628697024
+UniRef50_F9AWD5: Cupin domain protein	0.1628690309
+UniRef50_F9AWD5: Cupin domain protein|unclassified	0.1628690309
+UniRef50_UPI000423E6F5: hypothetical protein	0.1628672738
+UniRef50_UPI000423E6F5: hypothetical protein|unclassified	0.1628672738
+UniRef50_C1DIS6: Heat shock Hsp20 protein	0.1628661065
+UniRef50_C1DIS6: Heat shock Hsp20 protein|unclassified	0.1628661065
+UniRef50_UPI00047B597D: ABC transporter ATP-binding protein	0.1628545371
+UniRef50_UPI00047B597D: ABC transporter ATP-binding protein|unclassified	0.1628545371
+UniRef50_H1QUA4: GTP-binding protein TypA/BipA (Fragment)	0.1628499041
+UniRef50_H1QUA4: GTP-binding protein TypA/BipA (Fragment)|unclassified	0.1628499041
+UniRef50_X0PKD3	0.1628350164
+UniRef50_X0PKD3|unclassified	0.1628350164
+UniRef50_Q016J7: GTP-binding protein (ISS)	0.1628199934
+UniRef50_Q016J7: GTP-binding protein (ISS)|unclassified	0.1628199934
+UniRef50_UPI000363615D: hypothetical protein	0.1628176598
+UniRef50_UPI000363615D: hypothetical protein|unclassified	0.1628176598
+UniRef50_C5CI63: Adenine deaminase	0.1628111247
+UniRef50_C5CI63: Adenine deaminase|unclassified	0.1628111247
+UniRef50_UPI00035F95D5: hypothetical protein	0.1628055894
+UniRef50_UPI00035F95D5: hypothetical protein|unclassified	0.1628055894
+UniRef50_UPI000377EE06: hypothetical protein	0.1628046449
+UniRef50_UPI000377EE06: hypothetical protein|unclassified	0.1628046449
+UniRef50_F5Y1L1	0.1628031351
+UniRef50_F5Y1L1|unclassified	0.1628031351
+UniRef50_UPI00037405EC: hypothetical protein	0.1627980320
+UniRef50_UPI00037405EC: hypothetical protein|unclassified	0.1627980320
+UniRef50_UPI00032A0F3F: PREDICTED: UDP-2,3-diacylglucosamine hydrolase-like	0.1627952339
+UniRef50_UPI00032A0F3F: PREDICTED: UDP-2,3-diacylglucosamine hydrolase-like|unclassified	0.1627952339
+UniRef50_C7LRL0	0.1627785689
+UniRef50_C7LRL0|unclassified	0.1627785689
+UniRef50_UPI000237ECD8: transposase	0.1627736089
+UniRef50_UPI000237ECD8: transposase|unclassified	0.1627736089
+UniRef50_A3TYQ1: Lipoprotein, putative	0.1627666954
+UniRef50_A3TYQ1: Lipoprotein, putative|unclassified	0.1627666954
+UniRef50_W1SKR2	0.1627629169
+UniRef50_W1SKR2|unclassified	0.1627629169
+UniRef50_UPI00037F80AD: hypothetical protein, partial	0.1627549614
+UniRef50_UPI00037F80AD: hypothetical protein, partial|unclassified	0.1627549614
+UniRef50_UPI00047BCD55: hypothetical protein	0.1627325181
+UniRef50_UPI00047BCD55: hypothetical protein|unclassified	0.1627325181
+UniRef50_R5SDQ5	0.1627261286
+UniRef50_R5SDQ5|unclassified	0.1627261286
+UniRef50_F4Y2F9	0.1627007480
+UniRef50_F4Y2F9|unclassified	0.1627007480
+UniRef50_O83369: FKBP-type peptidyl-prolyl cis-trans isomerase SlyD	0.1626839749
+UniRef50_O83369: FKBP-type peptidyl-prolyl cis-trans isomerase SlyD|unclassified	0.1626839749
+UniRef50_C6L5U9: Nitrous oxide reductase (Fragment)	0.1626758030
+UniRef50_C6L5U9: Nitrous oxide reductase (Fragment)|unclassified	0.1626758030
+UniRef50_I3U8R2: GAF domain-containing protein	0.1626654046
+UniRef50_I3U8R2: GAF domain-containing protein|unclassified	0.1626654046
+UniRef50_UPI00037F5A09: hypothetical protein	0.1626623614
+UniRef50_UPI00037F5A09: hypothetical protein|unclassified	0.1626623614
+UniRef50_UPI00037E7CAE: hypothetical protein	0.1626615979
+UniRef50_UPI00037E7CAE: hypothetical protein|unclassified	0.1626615979
+UniRef50_UPI0003B5B026: zinc metalloprotease	0.1626599460
+UniRef50_UPI0003B5B026: zinc metalloprotease|unclassified	0.1626599460
+UniRef50_UPI0003FF3EB6: hypothetical protein	0.1626563021
+UniRef50_UPI0003FF3EB6: hypothetical protein|unclassified	0.1626563021
+UniRef50_Q4UMP4	0.1626446645
+UniRef50_Q4UMP4|unclassified	0.1626446645
+UniRef50_UPI000348E5BA: transcriptional regulator	0.1626432200
+UniRef50_UPI000348E5BA: transcriptional regulator|unclassified	0.1626432200
+UniRef50_U6L8S8	0.1626417616
+UniRef50_U6L8S8|unclassified	0.1626417616
+UniRef50_UPI000369FD87: hypothetical protein	0.1626254226
+UniRef50_UPI000369FD87: hypothetical protein|unclassified	0.1626254226
+UniRef50_UPI00037B53BC: hypothetical protein	0.1626217467
+UniRef50_UPI00037B53BC: hypothetical protein|unclassified	0.1626217467
+UniRef50_F7D7M9	0.1626160438
+UniRef50_F7D7M9|unclassified	0.1626160438
+UniRef50_G6A2B1	0.1625693931
+UniRef50_G6A2B1|unclassified	0.1625693931
+UniRef50_K1S1N6: Phosphatidylserine/phosphatidylglycerophosphate/ cardiolipin synthase (Fragment)	0.1625626481
+UniRef50_K1S1N6: Phosphatidylserine/phosphatidylglycerophosphate/ cardiolipin synthase (Fragment)|unclassified	0.1625626481
+UniRef50_W7PYR9	0.1625542744
+UniRef50_W7PYR9|unclassified	0.1625542744
+UniRef50_F7YZS7	0.1625535908
+UniRef50_F7YZS7|unclassified	0.1625535908
+UniRef50_UPI0004722C63: hypothetical protein	0.1625444534
+UniRef50_UPI0004722C63: hypothetical protein|unclassified	0.1625444534
+UniRef50_UPI000363C5FE: hypothetical protein	0.1625412877
+UniRef50_UPI000363C5FE: hypothetical protein|unclassified	0.1625412877
+UniRef50_S6P6C6	0.1625398046
+UniRef50_S6P6C6|unclassified	0.1625398046
+UniRef50_M1WNY6	0.1625375116
+UniRef50_M1WNY6|unclassified	0.1625375116
+UniRef50_U5VH97	0.1625278052
+UniRef50_U5VH97|unclassified	0.1625278052
+UniRef50_E1CPU5: ABC transporter permease (Fragment)	0.1625018450
+UniRef50_E1CPU5: ABC transporter permease (Fragment)|unclassified	0.1625018450
+UniRef50_UPI000365F7F9: hypothetical protein	0.1624899922
+UniRef50_UPI000365F7F9: hypothetical protein|unclassified	0.1624899922
+UniRef50_UPI0003726B40: NUDIX hydrolase	0.1624758791
+UniRef50_UPI0003726B40: NUDIX hydrolase|unclassified	0.1624758791
+UniRef50_UPI00047042B3: protoheme IX farnesyltransferase, partial	0.1624687015
+UniRef50_UPI00047042B3: protoheme IX farnesyltransferase, partial|unclassified	0.1624687015
+UniRef50_UPI00037547C0: hypothetical protein	0.1624660993
+UniRef50_UPI00037547C0: hypothetical protein|unclassified	0.1624660993
+UniRef50_UPI0003763BEB: hypothetical protein	0.1624497215
+UniRef50_UPI0003763BEB: hypothetical protein|unclassified	0.1624497215
+UniRef50_W4LYN6	0.1624394238
+UniRef50_W4LYN6|unclassified	0.1624394238
+UniRef50_T1BIE6	0.1624271464
+UniRef50_T1BIE6|unclassified	0.1624271464
+UniRef50_W5X8H4: Peptidyl-prolyl cis-trans isomerase	0.1624129447
+UniRef50_W5X8H4: Peptidyl-prolyl cis-trans isomerase|unclassified	0.1624129447
+UniRef50_D8ME78: Alkaline shock protein	0.1624078691
+UniRef50_D8ME78: Alkaline shock protein|unclassified	0.1624078691
+UniRef50_UPI0004719AE4: hypothetical protein, partial	0.1624043970
+UniRef50_UPI0004719AE4: hypothetical protein, partial|unclassified	0.1624043970
+UniRef50_G7GT89	0.1623990518
+UniRef50_G7GT89|unclassified	0.1623990518
+UniRef50_D8Q117	0.1623924193
+UniRef50_D8Q117|unclassified	0.1623924193
+UniRef50_R9E370	0.1623874457
+UniRef50_R9E370|unclassified	0.1623874457
+UniRef50_X1C061: Marine sediment metagenome DNA, contig: S01H4_S12931 (Fragment)	0.1623817457
+UniRef50_X1C061: Marine sediment metagenome DNA, contig: S01H4_S12931 (Fragment)|unclassified	0.1623817457
+UniRef50_UPI0004763F0C: GTP-binding protein Era, partial	0.1623810839
+UniRef50_UPI0004763F0C: GTP-binding protein Era, partial|unclassified	0.1623810839
+UniRef50_UPI00036EDE06: hypothetical protein	0.1623797682
+UniRef50_UPI00036EDE06: hypothetical protein|unclassified	0.1623797682
+UniRef50_A4IR78: Putative Holliday junction resolvase	0.1623590288
+UniRef50_A4IR78: Putative Holliday junction resolvase|unclassified	0.1623590288
+UniRef50_UPI00046C2B50: PREDICTED: recombination repair protein 1-like	0.1623563602
+UniRef50_UPI00046C2B50: PREDICTED: recombination repair protein 1-like|unclassified	0.1623563602
+UniRef50_G2WVV9: DUF814 domain-containing protein	0.1623481429
+UniRef50_G2WVV9: DUF814 domain-containing protein|unclassified	0.1623481429
+UniRef50_Q1AXG3: Periplasmic binding protein/LacI transcriptional regulator	0.1623432645
+UniRef50_Q1AXG3: Periplasmic binding protein/LacI transcriptional regulator|unclassified	0.1623432645
+UniRef50_O59265: Tryptophan synthase beta chain	0.1623368388
+UniRef50_O59265: Tryptophan synthase beta chain|unclassified	0.1623368388
+UniRef50_P08738: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifN	0.1623299314
+UniRef50_P08738: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifN|unclassified	0.1623299314
+UniRef50_UPI00047D9921: iron transporter FeoB	0.1623249768
+UniRef50_UPI00047D9921: iron transporter FeoB|unclassified	0.1623249768
+UniRef50_UPI00035C3849: hypothetical protein	0.1623135097
+UniRef50_UPI00035C3849: hypothetical protein|unclassified	0.1623135097
+UniRef50_A0LC14: Ribosomal RNA large subunit methyltransferase E	0.1623133720
+UniRef50_A0LC14: Ribosomal RNA large subunit methyltransferase E|unclassified	0.1623133720
+UniRef50_UPI0003786399: hypothetical protein, partial	0.1623096390
+UniRef50_UPI0003786399: hypothetical protein, partial|unclassified	0.1623096390
+UniRef50_UPI00047361F3: hypothetical protein	0.1622936599
+UniRef50_UPI00047361F3: hypothetical protein|unclassified	0.1622936599
+UniRef50_D9QH68	0.1622693745
+UniRef50_D9QH68|unclassified	0.1622693745
+UniRef50_Q1NKH6: TM2	0.1622662802
+UniRef50_Q1NKH6: TM2|unclassified	0.1622662802
+UniRef50_I0D5W1	0.1622661419
+UniRef50_I0D5W1|unclassified	0.1622661419
+UniRef50_UPI00044149CA: hypothetical protein AURDEDRAFT_115522	0.1622649660
+UniRef50_UPI00044149CA: hypothetical protein AURDEDRAFT_115522|unclassified	0.1622649660
+UniRef50_V9H6U9	0.1622631161
+UniRef50_V9H6U9|unclassified	0.1622631161
+UniRef50_A8LUK5: Partitioning protein ParB	0.1622484148
+UniRef50_A8LUK5: Partitioning protein ParB|unclassified	0.1622484148
+UniRef50_B9TBF7	0.1622395180
+UniRef50_B9TBF7|unclassified	0.1622395180
+UniRef50_UPI00040879CF: MULTISPECIES: hypothetical protein	0.1622349525
+UniRef50_UPI00040879CF: MULTISPECIES: hypothetical protein|unclassified	0.1622349525
+UniRef50_UPI0002C3DF90: malic enzyme, putative	0.1622342720
+UniRef50_UPI0002C3DF90: malic enzyme, putative|unclassified	0.1622342720
+UniRef50_UPI000372D48D: hypothetical protein	0.1622240858
+UniRef50_UPI000372D48D: hypothetical protein|unclassified	0.1622240858
+UniRef50_J5JUQ0	0.1622194603
+UniRef50_J5JUQ0|unclassified	0.1622194603
+UniRef50_D8TNQ9	0.1622168309
+UniRef50_D8TNQ9|unclassified	0.1622168309
+UniRef50_UPI000465930A: MULTISPECIES: patatin	0.1622102909
+UniRef50_UPI000465930A: MULTISPECIES: patatin|unclassified	0.1622102909
+UniRef50_K8N788	0.1622058032
+UniRef50_K8N788|unclassified	0.1622058032
+UniRef50_J9NT05	0.1622043574
+UniRef50_J9NT05|unclassified	0.1622043574
+UniRef50_UPI0003782A09: hypothetical protein	0.1622028236
+UniRef50_UPI0003782A09: hypothetical protein|unclassified	0.1622028236
+UniRef50_UPI0003B47644: ABC transporter	0.1621891593
+UniRef50_UPI0003B47644: ABC transporter|unclassified	0.1621891593
+UniRef50_UPI00035CE5D2: hypothetical protein, partial	0.1621867909
+UniRef50_UPI00035CE5D2: hypothetical protein, partial|unclassified	0.1621867909
+UniRef50_UPI0003B4B924: hypothetical protein	0.1621640367
+UniRef50_UPI0003B4B924: hypothetical protein|unclassified	0.1621640367
+UniRef50_K9VRD1: Beta-Ig-H3/fasciclin	0.1621594635
+UniRef50_K9VRD1: Beta-Ig-H3/fasciclin|unclassified	0.1621594635
+UniRef50_UPI0003B31F76: hypothetical protein	0.1621428697
+UniRef50_UPI0003B31F76: hypothetical protein|unclassified	0.1621428697
+UniRef50_B0KFU0: Transport-associated	0.1621396338
+UniRef50_B0KFU0: Transport-associated|unclassified	0.1621396338
+UniRef50_Q21TC3: Putative prolin-rich exported protein	0.1621359910
+UniRef50_Q21TC3: Putative prolin-rich exported protein|unclassified	0.1621359910
+UniRef50_UPI00036E096B: hypothetical protein, partial	0.1621291485
+UniRef50_UPI00036E096B: hypothetical protein, partial|unclassified	0.1621291485
+UniRef50_UPI00036CA0F6: hypothetical protein	0.1621241485
+UniRef50_UPI00036CA0F6: hypothetical protein|unclassified	0.1621241485
+UniRef50_UPI0004769729: thioesterase	0.1621235654
+UniRef50_UPI0004769729: thioesterase|unclassified	0.1621235654
+UniRef50_F1Z557: Acyl carrier protein	0.1621196764
+UniRef50_F1Z557: Acyl carrier protein|unclassified	0.1621196764
+UniRef50_F9I029: YhjV	0.1621066690
+UniRef50_F9I029: YhjV|unclassified	0.1621066690
+UniRef50_UPI0003B47E1D: glucose dehydrogenase	0.1620998833
+UniRef50_UPI0003B47E1D: glucose dehydrogenase|unclassified	0.1620998833
+UniRef50_O85346	0.1620631520
+UniRef50_O85346|unclassified	0.1620631520
+UniRef50_J9Z0V0: Phosphate-starvation-inducible PsiE family protein	0.1620593361
+UniRef50_J9Z0V0: Phosphate-starvation-inducible PsiE family protein|unclassified	0.1620593361
+UniRef50_UPI00036443D8: hypothetical protein	0.1620545775
+UniRef50_UPI00036443D8: hypothetical protein|unclassified	0.1620545775
+UniRef50_W0BA95: RES domain protein	0.1620413875
+UniRef50_W0BA95: RES domain protein|unclassified	0.1620413875
+UniRef50_Q6A823	0.1620299541
+UniRef50_Q6A823|unclassified	0.1620299541
+UniRef50_Q65UG3: Zinc import ATP-binding protein ZnuC	0.1620215474
+UniRef50_Q65UG3: Zinc import ATP-binding protein ZnuC|unclassified	0.1620215474
+UniRef50_M2U5I8	0.1620205451
+UniRef50_M2U5I8|unclassified	0.1620205451
+UniRef50_UPI0001BC2D00: helicase	0.1620089819
+UniRef50_UPI0001BC2D00: helicase|unclassified	0.1620089819
+UniRef50_UPI000395A6A3: trehalose-phosphatase	0.1620084917
+UniRef50_UPI000395A6A3: trehalose-phosphatase|unclassified	0.1620084917
+UniRef50_UPI000378DAE5: hypothetical protein	0.1620066784
+UniRef50_UPI000378DAE5: hypothetical protein|unclassified	0.1620066784
+UniRef50_C5EA99	0.1620063497
+UniRef50_C5EA99|unclassified	0.1620063497
+UniRef50_Q1GIB2	0.1619973391
+UniRef50_Q1GIB2|unclassified	0.1619973391
+UniRef50_UPI0003627025: hypothetical protein	0.1619940136
+UniRef50_UPI0003627025: hypothetical protein|unclassified	0.1619940136
+UniRef50_Q2J8T7: NAD/NADP transhydrogenase alpha subunit-like	0.1619933738
+UniRef50_Q2J8T7: NAD/NADP transhydrogenase alpha subunit-like|unclassified	0.1619933738
+UniRef50_UPI0004648B0E: short-chain dehydrogenase, partial	0.1619927244
+UniRef50_UPI0004648B0E: short-chain dehydrogenase, partial|unclassified	0.1619927244
+UniRef50_UPI000262CC40: 23S rRNA pseudouridine synthase D	0.1619870471
+UniRef50_UPI000262CC40: 23S rRNA pseudouridine synthase D|unclassified	0.1619870471
+UniRef50_UPI00047D420D: hypothetical protein	0.1619866707
+UniRef50_UPI00047D420D: hypothetical protein|unclassified	0.1619866707
+UniRef50_B7ICX1: S-adenosylmethionine decarboxylase proenzyme	0.1619836687
+UniRef50_B7ICX1: S-adenosylmethionine decarboxylase proenzyme|unclassified	0.1619836687
+UniRef50_UPI00047D4A4F: hypothetical protein	0.1619779857
+UniRef50_UPI00047D4A4F: hypothetical protein|unclassified	0.1619779857
+UniRef50_M4AFD6	0.1619773458
+UniRef50_M4AFD6|unclassified	0.1619773458
+UniRef50_H1SQ24: Bacteriocin	0.1619727305
+UniRef50_H1SQ24: Bacteriocin|unclassified	0.1619727305
+UniRef50_UPI00045D739F	0.1619720345
+UniRef50_UPI00045D739F|unclassified	0.1619720345
+UniRef50_UPI0003834F1F: PREDICTED: nitrilase homolog 1, partial	0.1619704750
+UniRef50_UPI0003834F1F: PREDICTED: nitrilase homolog 1, partial|unclassified	0.1619704750
+UniRef50_UPI0003641FE7: hypothetical protein	0.1619703305
+UniRef50_UPI0003641FE7: hypothetical protein|unclassified	0.1619703305
+UniRef50_UPI00036E77AE: methylcitrate synthase, partial	0.1619487421
+UniRef50_UPI00036E77AE: methylcitrate synthase, partial|unclassified	0.1619487421
+UniRef50_UPI000366FC51: hypothetical protein, partial	0.1619267138
+UniRef50_UPI000366FC51: hypothetical protein, partial|unclassified	0.1619267138
+UniRef50_UPI000477E749: hypothetical protein	0.1619186896
+UniRef50_UPI000477E749: hypothetical protein|unclassified	0.1619186896
+UniRef50_A6DX66: Flagellar MotB protein	0.1619007463
+UniRef50_A6DX66: Flagellar MotB protein|unclassified	0.1619007463
+UniRef50_L2QLI9	0.1618919440
+UniRef50_L2QLI9|unclassified	0.1618919440
+UniRef50_UPI0003B5466F: peroxiredoxin	0.1618904599
+UniRef50_UPI0003B5466F: peroxiredoxin|unclassified	0.1618904599
+UniRef50_Q3JLB2	0.1618903331
+UniRef50_Q3JLB2|unclassified	0.1618903331
+UniRef50_F3QD71	0.1618799988
+UniRef50_F3QD71|unclassified	0.1618799988
+UniRef50_UPI0003B55D68: acetoacetyl-CoA reductase	0.1618748222
+UniRef50_UPI0003B55D68: acetoacetyl-CoA reductase|unclassified	0.1618748222
+UniRef50_UPI0004243999: preprotein translocase subunit SecD	0.1618723869
+UniRef50_UPI0004243999: preprotein translocase subunit SecD|unclassified	0.1618723869
+UniRef50_UPI000169B0D8: N-acetylmuramoyl-L-alanine amidase AmiC precursor, partial	0.1618678578
+UniRef50_UPI000169B0D8: N-acetylmuramoyl-L-alanine amidase AmiC precursor, partial|unclassified	0.1618678578
+UniRef50_UPI0004792537: hypothetical protein	0.1618671728
+UniRef50_UPI0004792537: hypothetical protein|unclassified	0.1618671728
+UniRef50_UPI00047AB801: hypothetical protein	0.1618653280
+UniRef50_UPI00047AB801: hypothetical protein|unclassified	0.1618653280
+UniRef50_N6VC63	0.1618645778
+UniRef50_N6VC63|unclassified	0.1618645778
+UniRef50_W9VIQ5	0.1618627246
+UniRef50_W9VIQ5|unclassified	0.1618627246
+UniRef50_UPI0003697455: hypothetical protein, partial	0.1618506440
+UniRef50_UPI0003697455: hypothetical protein, partial|unclassified	0.1618506440
+UniRef50_UPI00047B86D1: transporter	0.1618263356
+UniRef50_UPI00047B86D1: transporter|unclassified	0.1618263356
+UniRef50_C1FHD3: Predicted protein	0.1618171952
+UniRef50_C1FHD3: Predicted protein|unclassified	0.1618171952
+UniRef50_E3NVD5	0.1617986162
+UniRef50_E3NVD5|unclassified	0.1617986162
+UniRef50_UPI0004667BCE: hypothetical protein	0.1617766629
+UniRef50_UPI0004667BCE: hypothetical protein|unclassified	0.1617766629
+UniRef50_UPI0004745709: iron-hydroxamate transporter permease subunit, partial	0.1617616169
+UniRef50_UPI0004745709: iron-hydroxamate transporter permease subunit, partial|unclassified	0.1617616169
+UniRef50_UPI00047156C0: hypothetical protein	0.1617435157
+UniRef50_UPI00047156C0: hypothetical protein|unclassified	0.1617435157
+UniRef50_Q1I926: Putative glutamate--cysteine ligase 2	0.1617299362
+UniRef50_Q1I926: Putative glutamate--cysteine ligase 2|unclassified	0.1617299362
+UniRef50_UPI00046D1393: transcription elongation factor GreA	0.1617226924
+UniRef50_UPI00046D1393: transcription elongation factor GreA|unclassified	0.1617226924
+UniRef50_UPI00047CE519: hypothetical protein	0.1617159685
+UniRef50_UPI00047CE519: hypothetical protein|unclassified	0.1617159685
+UniRef50_UPI0003B382C1: hypothetical protein	0.1617058611
+UniRef50_UPI0003B382C1: hypothetical protein|unclassified	0.1617058611
+UniRef50_N0B5D8: Usg family protein	0.1616961772
+UniRef50_N0B5D8: Usg family protein|unclassified	0.1616961772
+UniRef50_A0A011SS88	0.1616943519
+UniRef50_A0A011SS88|unclassified	0.1616943519
+UniRef50_UPI000051043B: threonine aldolase	0.1616624045
+UniRef50_UPI000051043B: threonine aldolase|unclassified	0.1616624045
+UniRef50_C4RNS6	0.1616577862
+UniRef50_C4RNS6|unclassified	0.1616577862
+UniRef50_UPI00039469B8: PREDICTED: flocculation protein FLO11-like isoform X1	0.1616480437
+UniRef50_UPI00039469B8: PREDICTED: flocculation protein FLO11-like isoform X1|unclassified	0.1616480437
+UniRef50_UPI00047EFE2E: hypothetical protein	0.1616430407
+UniRef50_UPI00047EFE2E: hypothetical protein|unclassified	0.1616430407
+UniRef50_A2RJT9: Dihydroorotate dehydrogenase A (fumarate)	0.1616365315
+UniRef50_A2RJT9: Dihydroorotate dehydrogenase A (fumarate)|unclassified	0.1616365315
+UniRef50_W7WUA9	0.1616214573
+UniRef50_W7WUA9|unclassified	0.1616214573
+UniRef50_UPI000289F083: SMR family multidrug resistance protein	0.1616209970
+UniRef50_UPI000289F083: SMR family multidrug resistance protein|unclassified	0.1616209970
+UniRef50_UPI000375541B: hypothetical protein	0.1616056388
+UniRef50_UPI000375541B: hypothetical protein|unclassified	0.1616056388
+UniRef50_UPI00037F7662: hypothetical protein	0.1616032764
+UniRef50_UPI00037F7662: hypothetical protein|unclassified	0.1616032764
+UniRef50_F8EE99	0.1616022793
+UniRef50_F8EE99|unclassified	0.1616022793
+UniRef50_UPI0003B3DFA2: glycosyl transferase	0.1615994832
+UniRef50_UPI0003B3DFA2: glycosyl transferase|unclassified	0.1615994832
+UniRef50_UPI000468F8C8: hypothetical protein	0.1615894222
+UniRef50_UPI000468F8C8: hypothetical protein|unclassified	0.1615894222
+UniRef50_I4BAW9: Nicotinamide nucleotide transhydrogenase subunit alpha	0.1615858702
+UniRef50_I4BAW9: Nicotinamide nucleotide transhydrogenase subunit alpha|unclassified	0.1615858702
+UniRef50_A0A015J1B9	0.1615855660
+UniRef50_A0A015J1B9|unclassified	0.1615855660
+UniRef50_W1JGR6	0.1615814392
+UniRef50_W1JGR6|unclassified	0.1615814392
+UniRef50_C4UJI6	0.1615794176
+UniRef50_C4UJI6|unclassified	0.1615794176
+UniRef50_UPI000288C8A0: dihydroorotate dehydrogenase 2, partial	0.1615764868
+UniRef50_UPI000288C8A0: dihydroorotate dehydrogenase 2, partial|unclassified	0.1615764868
+UniRef50_D8JW50	0.1615762986
+UniRef50_D8JW50|unclassified	0.1615762986
+UniRef50_X1YKE3	0.1615708198
+UniRef50_X1YKE3|unclassified	0.1615708198
+UniRef50_UPI0004785795: D-ribose transporter subunit RbsB	0.1615678060
+UniRef50_UPI0004785795: D-ribose transporter subunit RbsB|unclassified	0.1615678060
+UniRef50_A8MM69: TRAP transporter solute receptor, TAXI family	0.1615639285
+UniRef50_A8MM69: TRAP transporter solute receptor, TAXI family|unclassified	0.1615639285
+UniRef50_UPI000472AA4C: hypothetical protein	0.1615580144
+UniRef50_UPI000472AA4C: hypothetical protein|unclassified	0.1615580144
+UniRef50_K2IVI6	0.1615550924
+UniRef50_K2IVI6|unclassified	0.1615550924
+UniRef50_A0A022H505: LacI family transcriptional regulator	0.1615506112
+UniRef50_A0A022H505: LacI family transcriptional regulator|unclassified	0.1615506112
+UniRef50_UPI00036386CD: hypothetical protein	0.1615294922
+UniRef50_UPI00036386CD: hypothetical protein|unclassified	0.1615294922
+UniRef50_UPI00035CCE55: type II and III secretion system protein	0.1615159520
+UniRef50_UPI00035CCE55: type II and III secretion system protein|unclassified	0.1615159520
+UniRef50_Q1NJP5: Lipoprotein, putative	0.1615155621
+UniRef50_Q1NJP5: Lipoprotein, putative|unclassified	0.1615155621
+UniRef50_UPI00029ADD3E: protein AmpG	0.1615044311
+UniRef50_UPI00029ADD3E: protein AmpG|unclassified	0.1615044311
+UniRef50_UPI00040FC3C0: resolvase	0.1615007417
+UniRef50_UPI00040FC3C0: resolvase|unclassified	0.1615007417
+UniRef50_B8D1G6: N-acetyl-gamma-glutamyl-phosphate reductase	0.1614999096
+UniRef50_B8D1G6: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.1614999096
+UniRef50_A6UCY7: Diguanylate cyclase	0.1614916871
+UniRef50_A6UCY7: Diguanylate cyclase|unclassified	0.1614916871
+UniRef50_G7QIX7	0.1614873311
+UniRef50_G7QIX7|unclassified	0.1614873311
+UniRef50_O34714: Oxalate decarboxylase OxdC	0.1614750124
+UniRef50_O34714: Oxalate decarboxylase OxdC|unclassified	0.1614750124
+UniRef50_UPI000473944A: hypothetical protein, partial	0.1614748711
+UniRef50_UPI000473944A: hypothetical protein, partial|unclassified	0.1614748711
+UniRef50_Q89AR9: NAD kinase	0.1614717230
+UniRef50_Q89AR9: NAD kinase|unclassified	0.1614717230
+UniRef50_UPI00037EC417: hypothetical protein, partial	0.1614621814
+UniRef50_UPI00037EC417: hypothetical protein, partial|unclassified	0.1614621814
+UniRef50_UPI0003773660: hypothetical protein	0.1614574860
+UniRef50_UPI0003773660: hypothetical protein|unclassified	0.1614574860
+UniRef50_UPI00047D528B: peptidase T, partial	0.1614534328
+UniRef50_UPI00047D528B: peptidase T, partial|unclassified	0.1614534328
+UniRef50_U2FR71: Putative conserved inner membrane protein	0.1614495913
+UniRef50_U2FR71: Putative conserved inner membrane protein|unclassified	0.1614495913
+UniRef50_UPI00036368B6: antirepressor	0.1614452259
+UniRef50_UPI00036368B6: antirepressor|unclassified	0.1614452259
+UniRef50_UPI000371498A: hypothetical protein	0.1614406767
+UniRef50_UPI000371498A: hypothetical protein|unclassified	0.1614406767
+UniRef50_X1BU65: Marine sediment metagenome DNA, contig: S01H4_S03412 (Fragment)	0.1614266813
+UniRef50_X1BU65: Marine sediment metagenome DNA, contig: S01H4_S03412 (Fragment)|unclassified	0.1614266813
+UniRef50_UPI00036A674F: hypothetical protein	0.1614150375
+UniRef50_UPI00036A674F: hypothetical protein|unclassified	0.1614150375
+UniRef50_M0W352	0.1614144783
+UniRef50_M0W352|unclassified	0.1614144783
+UniRef50_UPI000475B54A: serine protease	0.1614127946
+UniRef50_UPI000475B54A: serine protease|unclassified	0.1614127946
+UniRef50_UPI0004761E7A: hypothetical protein	0.1613928424
+UniRef50_UPI0004761E7A: hypothetical protein|unclassified	0.1613928424
+UniRef50_UPI000380DE50: hypothetical protein	0.1613713439
+UniRef50_UPI000380DE50: hypothetical protein|unclassified	0.1613713439
+UniRef50_A8V4L3: N-methylhydantoinase A (Fragment)	0.1613404663
+UniRef50_A8V4L3: N-methylhydantoinase A (Fragment)|unclassified	0.1613404663
+UniRef50_Q89AT8: NADH-quinone oxidoreductase subunit J	0.1613345486
+UniRef50_Q89AT8: NADH-quinone oxidoreductase subunit J|unclassified	0.1613345486
+UniRef50_H5KQH0	0.1612887165
+UniRef50_H5KQH0|unclassified	0.1612887165
+UniRef50_UPI000378E627: hypothetical protein	0.1612752047
+UniRef50_UPI000378E627: hypothetical protein|unclassified	0.1612752047
+UniRef50_V4QT88	0.1612681861
+UniRef50_V4QT88|unclassified	0.1612681861
+UniRef50_L0EI69	0.1612467773
+UniRef50_L0EI69|unclassified	0.1612467773
+UniRef50_UPI00047E155B: succinate dehydrogenase	0.1612434834
+UniRef50_UPI00047E155B: succinate dehydrogenase|unclassified	0.1612434834
+UniRef50_T1CJM8: UDP-N-acetylglucosamine pyrophosphorylase (Fragment)	0.1612406574
+UniRef50_T1CJM8: UDP-N-acetylglucosamine pyrophosphorylase (Fragment)|unclassified	0.1612406574
+UniRef50_UPI00046717E0: hypothetical protein, partial	0.1612264969
+UniRef50_UPI00046717E0: hypothetical protein, partial|unclassified	0.1612264969
+UniRef50_UPI0002F04565: hypothetical protein	0.1612212621
+UniRef50_UPI0002F04565: hypothetical protein|unclassified	0.1612212621
+UniRef50_F2BGG4: GIY-YIG catalytic domain protein	0.1612198066
+UniRef50_F2BGG4: GIY-YIG catalytic domain protein|unclassified	0.1612198066
+UniRef50_UPI000255B920: cold-shock DNA-binding domain-containing protein	0.1612053606
+UniRef50_UPI000255B920: cold-shock DNA-binding domain-containing protein|unclassified	0.1612053606
+UniRef50_Q1CG91: Methionine import ATP-binding protein MetN 1	0.1612001702
+UniRef50_Q1CG91: Methionine import ATP-binding protein MetN 1|unclassified	0.1612001702
+UniRef50_UPI0003A28CDF: competence protein	0.1611998062
+UniRef50_UPI0003A28CDF: competence protein|unclassified	0.1611998062
+UniRef50_D5Z453: Threonine dehydratase	0.1611858377
+UniRef50_D5Z453: Threonine dehydratase|unclassified	0.1611858377
+UniRef50_W8YS72	0.1611843434
+UniRef50_W8YS72|unclassified	0.1611843434
+UniRef50_V8AM48	0.1611784940
+UniRef50_V8AM48|unclassified	0.1611784940
+UniRef50_UPI0003B57EA3: GDSL family lipase	0.1611707071
+UniRef50_UPI0003B57EA3: GDSL family lipase|unclassified	0.1611707071
+UniRef50_A0A010PM14: Aldo/keto reductase	0.1611694889
+UniRef50_A0A010PM14: Aldo/keto reductase|unclassified	0.1611694889
+UniRef50_UPI000474AE61: TetR family transcriptional regulator	0.1611553403
+UniRef50_UPI000474AE61: TetR family transcriptional regulator|unclassified	0.1611553403
+UniRef50_N7N3A6	0.1611354616
+UniRef50_N7N3A6|unclassified	0.1611354616
+UniRef50_F3T6C6: Conserved domain protein	0.1611213789
+UniRef50_F3T6C6: Conserved domain protein|unclassified	0.1611213789
+UniRef50_D9VSA1: Predicted protein	0.1611194456
+UniRef50_D9VSA1: Predicted protein|unclassified	0.1611194456
+UniRef50_B6YRK7: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.1611093961
+UniRef50_B6YRK7: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.1611093961
+UniRef50_UPI00047A2C04: haloacid dehalogenase, partial	0.1611034396
+UniRef50_UPI00047A2C04: haloacid dehalogenase, partial|unclassified	0.1611034396
+UniRef50_K0R217	0.1610879034
+UniRef50_K0R217|unclassified	0.1610879034
+UniRef50_A8FSE0: Holo-[acyl-carrier-protein] synthase	0.1610854077
+UniRef50_A8FSE0: Holo-[acyl-carrier-protein] synthase|unclassified	0.1610854077
+UniRef50_A0A017HNY4: Paraquat-inducible protein B	0.1610850247
+UniRef50_A0A017HNY4: Paraquat-inducible protein B|unclassified	0.1610850247
+UniRef50_F0PDK0	0.1610835309
+UniRef50_F0PDK0|unclassified	0.1610835309
+UniRef50_UPI0003B72BEB: serine/threonine dehydratase	0.1610751708
+UniRef50_UPI0003B72BEB: serine/threonine dehydratase|unclassified	0.1610751708
+UniRef50_UPI00035D65E8: cold-shock protein	0.1610735955
+UniRef50_UPI00035D65E8: cold-shock protein|unclassified	0.1610735955
+UniRef50_A9E4J2	0.1610710237
+UniRef50_A9E4J2|unclassified	0.1610710237
+UniRef50_F6CY95: UPF0125 protein Mar181_0357	0.1610551592
+UniRef50_F6CY95: UPF0125 protein Mar181_0357|unclassified	0.1610551592
+UniRef50_UPI00047AC0D4: hypothetical protein	0.1610544990
+UniRef50_UPI00047AC0D4: hypothetical protein|unclassified	0.1610544990
+UniRef50_UPI00037715B7: hypothetical protein, partial	0.1610448080
+UniRef50_UPI00037715B7: hypothetical protein, partial|unclassified	0.1610448080
+UniRef50_E9C2Q0: Srrm2 protein	0.1610355178
+UniRef50_E9C2Q0: Srrm2 protein|unclassified	0.1610355178
+UniRef50_UPI0000220F38: C. briggsae CBR-NHR-222 protein	0.1610331956
+UniRef50_UPI0000220F38: C. briggsae CBR-NHR-222 protein|unclassified	0.1610331956
+UniRef50_UPI000362A26E: hypothetical protein	0.1610320111
+UniRef50_UPI000362A26E: hypothetical protein|unclassified	0.1610320111
+UniRef50_UPI00045421DD: PREDICTED: TBC1 domain family member 16	0.1610314005
+UniRef50_UPI00045421DD: PREDICTED: TBC1 domain family member 16|unclassified	0.1610314005
+UniRef50_D5C1M7	0.1610305958
+UniRef50_D5C1M7|unclassified	0.1610305958
+UniRef50_UPI0003B79A6E: pantothenate kinase, partial	0.1610196108
+UniRef50_UPI0003B79A6E: pantothenate kinase, partial|unclassified	0.1610196108
+UniRef50_UPI0003641212: hypothetical protein	0.1610132865
+UniRef50_UPI0003641212: hypothetical protein|unclassified	0.1610132865
+UniRef50_UPI00036E3AFB: hypothetical protein	0.1610094140
+UniRef50_UPI00036E3AFB: hypothetical protein|unclassified	0.1610094140
+UniRef50_UPI0004212635: GntR family transcriptional regulator	0.1609809197
+UniRef50_UPI0004212635: GntR family transcriptional regulator|unclassified	0.1609809197
+UniRef50_Q3T046: 3-hydroxybutyrate dehydrogenase type 2	0.1609751820
+UniRef50_Q3T046: 3-hydroxybutyrate dehydrogenase type 2|unclassified	0.1609751820
+UniRef50_UPI000365881D: UDP-N-acetylmuramate--alanine ligase, partial	0.1609684779
+UniRef50_UPI000365881D: UDP-N-acetylmuramate--alanine ligase, partial|unclassified	0.1609684779
+UniRef50_S9UQG0	0.1609633204
+UniRef50_S9UQG0|unclassified	0.1609633204
+UniRef50_UPI00035DD0A3: hypothetical protein	0.1609599733
+UniRef50_UPI00035DD0A3: hypothetical protein|unclassified	0.1609599733
+UniRef50_UPI00029A7A9B: 30S ribosomal protein S17	0.1609526249
+UniRef50_UPI00029A7A9B: 30S ribosomal protein S17|unclassified	0.1609526249
+UniRef50_A8F453: Carbamoyl-phosphate synthase large chain	0.1609496084
+UniRef50_A8F453: Carbamoyl-phosphate synthase large chain|unclassified	0.1609496084
+UniRef50_UPI0004686FFD: hypothetical protein	0.1609433843
+UniRef50_UPI0004686FFD: hypothetical protein|unclassified	0.1609433843
+UniRef50_U3U2S7	0.1609420723
+UniRef50_U3U2S7|unclassified	0.1609420723
+UniRef50_B8GUF9: PKHD-type hydroxylase Tgr7_2199	0.1609375336
+UniRef50_B8GUF9: PKHD-type hydroxylase Tgr7_2199|unclassified	0.1609375336
+UniRef50_UPI000379B10E: hypothetical protein	0.1609355800
+UniRef50_UPI000379B10E: hypothetical protein|unclassified	0.1609355800
+UniRef50_UPI0003B6FF8D: fructose 1,6-bisphosphatase	0.1609352382
+UniRef50_UPI0003B6FF8D: fructose 1,6-bisphosphatase|unclassified	0.1609352382
+UniRef50_UPI00046F8C08: hypothetical protein	0.1609246316
+UniRef50_UPI00046F8C08: hypothetical protein|unclassified	0.1609246316
+UniRef50_UPI000380EB94: hypothetical protein, partial	0.1609236675
+UniRef50_UPI000380EB94: hypothetical protein, partial|unclassified	0.1609236675
+UniRef50_UPI0003488344: hypothetical protein	0.1609195929
+UniRef50_UPI0003488344: hypothetical protein|unclassified	0.1609195929
+UniRef50_UPI0003B58F95: peptidase M19	0.1609195234
+UniRef50_UPI0003B58F95: peptidase M19|unclassified	0.1609195234
+UniRef50_F3KGR3	0.1608930404
+UniRef50_F3KGR3|unclassified	0.1608930404
+UniRef50_H0P3C7	0.1608921941
+UniRef50_H0P3C7|unclassified	0.1608921941
+UniRef50_UPI00047211A0: ubiquinol oxidase subunit II	0.1608914521
+UniRef50_UPI00047211A0: ubiquinol oxidase subunit II|unclassified	0.1608914521
+UniRef50_UPI0003A88A02: molecular chaperone Hsp33	0.1608913739
+UniRef50_UPI0003A88A02: molecular chaperone Hsp33|unclassified	0.1608913739
+UniRef50_UPI00036476ED: hypothetical protein	0.1608913700
+UniRef50_UPI00036476ED: hypothetical protein|unclassified	0.1608913700
+UniRef50_W1A6N9	0.1608872981
+UniRef50_W1A6N9|unclassified	0.1608872981
+UniRef50_F3KHX6: ABC-type transport system involved in Fe-S cluster assembly, ATPase component	0.1608690443
+UniRef50_F3KHX6: ABC-type transport system involved in Fe-S cluster assembly, ATPase component|unclassified	0.1608690443
+UniRef50_A7HTM8: Arsenate reductase and related	0.1608658771
+UniRef50_A7HTM8: Arsenate reductase and related|unclassified	0.1608658771
+UniRef50_UPI0002F30CDF: hypothetical protein	0.1608529905
+UniRef50_UPI0002F30CDF: hypothetical protein|unclassified	0.1608529905
+UniRef50_UPI0003824844: hypothetical protein	0.1608518140
+UniRef50_UPI0003824844: hypothetical protein|unclassified	0.1608518140
+UniRef50_UPI00046D0079: hypothetical protein	0.1608507517
+UniRef50_UPI00046D0079: hypothetical protein|unclassified	0.1608507517
+UniRef50_V8N3G1: Splicing regulatory glutamine/lysine-rich protein 1 (Fragment)	0.1608450752
+UniRef50_V8N3G1: Splicing regulatory glutamine/lysine-rich protein 1 (Fragment)|unclassified	0.1608450752
+UniRef50_X1FV54: Marine sediment metagenome DNA, contig: S03H2_S06615	0.1608336434
+UniRef50_X1FV54: Marine sediment metagenome DNA, contig: S03H2_S06615|unclassified	0.1608336434
+UniRef50_UPI0004785335: hypothetical protein	0.1608204490
+UniRef50_UPI0004785335: hypothetical protein|unclassified	0.1608204490
+UniRef50_UPI0003FDE0CA: hypothetical protein	0.1608112471
+UniRef50_UPI0003FDE0CA: hypothetical protein|unclassified	0.1608112471
+UniRef50_Y5PA95	0.1608079454
+UniRef50_Y5PA95|unclassified	0.1608079454
+UniRef50_UPI0003B75910: MerR family transcriptional regulator	0.1608012462
+UniRef50_UPI0003B75910: MerR family transcriptional regulator|unclassified	0.1608012462
+UniRef50_UPI000370AEFE: hypothetical protein	0.1607884446
+UniRef50_UPI000370AEFE: hypothetical protein|unclassified	0.1607884446
+UniRef50_I4KSZ6: Sigma factor regulatory protein, FecR/PupR family	0.1607881668
+UniRef50_I4KSZ6: Sigma factor regulatory protein, FecR/PupR family|unclassified	0.1607881668
+UniRef50_UPI00040EC427: hypothetical protein	0.1607847493
+UniRef50_UPI00040EC427: hypothetical protein|unclassified	0.1607847493
+UniRef50_H7V759	0.1607706429
+UniRef50_H7V759|unclassified	0.1607706429
+UniRef50_Q2RG05: Transcriptional regulator, PadR family	0.1607585021
+UniRef50_Q2RG05: Transcriptional regulator, PadR family|unclassified	0.1607585021
+UniRef50_Q8EN87: Mannitol-1-phosphate 5-dehydrogenase	0.1607548495
+UniRef50_Q8EN87: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.1607548495
+UniRef50_UPI000469CEC8: hypothetical protein	0.1607530830
+UniRef50_UPI000469CEC8: hypothetical protein|unclassified	0.1607530830
+UniRef50_Q31I51: Zinc import ATP-binding protein ZnuC	0.1607511268
+UniRef50_Q31I51: Zinc import ATP-binding protein ZnuC|unclassified	0.1607511268
+UniRef50_UPI00047E3055: GCN5 family acetyltransferase	0.1607398310
+UniRef50_UPI00047E3055: GCN5 family acetyltransferase|unclassified	0.1607398310
+UniRef50_UPI000443AC0A: PREDICTED: skin secretory protein xP2-like	0.1607304242
+UniRef50_UPI000443AC0A: PREDICTED: skin secretory protein xP2-like|unclassified	0.1607304242
+UniRef50_W2UZF0	0.1607292068
+UniRef50_W2UZF0|unclassified	0.1607292068
+UniRef50_I6FIU4	0.1607283043
+UniRef50_I6FIU4|unclassified	0.1607283043
+UniRef50_A4SL03: Phosphodiesterase	0.1607214466
+UniRef50_A4SL03: Phosphodiesterase|unclassified	0.1607214466
+UniRef50_UPI0003F5D4EB: dihydroxynaphthoic acid synthetase	0.1607126811
+UniRef50_UPI0003F5D4EB: dihydroxynaphthoic acid synthetase|unclassified	0.1607126811
+UniRef50_X2H3H3: Protein sprT	0.1607071187
+UniRef50_X2H3H3: Protein sprT|unclassified	0.1607071187
+UniRef50_UPI00047A932E: stage V sporulation protein K	0.1607034726
+UniRef50_UPI00047A932E: stage V sporulation protein K|unclassified	0.1607034726
+UniRef50_U5H8T5	0.1607027799
+UniRef50_U5H8T5|unclassified	0.1607027799
+UniRef50_UPI000470373F: amidophosphoribosyltransferase, partial	0.1607018234
+UniRef50_UPI000470373F: amidophosphoribosyltransferase, partial|unclassified	0.1607018234
+UniRef50_UPI00046F6062: hypothetical protein	0.1606936674
+UniRef50_UPI00046F6062: hypothetical protein|unclassified	0.1606936674
+UniRef50_M5F2W7	0.1606912854
+UniRef50_M5F2W7|unclassified	0.1606912854
+UniRef50_U3TWH0	0.1606911798
+UniRef50_U3TWH0|unclassified	0.1606911798
+UniRef50_UPI00046D7550: hypothetical protein	0.1606777045
+UniRef50_UPI00046D7550: hypothetical protein|unclassified	0.1606777045
+UniRef50_B4FT48	0.1606677531
+UniRef50_B4FT48|unclassified	0.1606677531
+UniRef50_Q7NAC1: Complete genome; segment 1/17	0.1606616800
+UniRef50_Q7NAC1: Complete genome; segment 1/17|unclassified	0.1606616800
+UniRef50_UPI0003B47824: nitrogen regulatory protein	0.1606611241
+UniRef50_UPI0003B47824: nitrogen regulatory protein|unclassified	0.1606611241
+UniRef50_UPI00047E842D: DNA recombination protein RecO	0.1606413958
+UniRef50_UPI00047E842D: DNA recombination protein RecO|unclassified	0.1606413958
+UniRef50_Q5WAV8: UDP-N-acetylenolpyruvoylglucosamine reductase	0.1606406997
+UniRef50_Q5WAV8: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.1606406997
+UniRef50_Q7NTN6: Ribose import ATP-binding protein RbsA	0.1606356212
+UniRef50_Q7NTN6: Ribose import ATP-binding protein RbsA|unclassified	0.1606356212
+UniRef50_W4K806	0.1606330832
+UniRef50_W4K806|unclassified	0.1606330832
+UniRef50_UPI00047D6BC3: hypothetical protein	0.1605950103
+UniRef50_UPI00047D6BC3: hypothetical protein|unclassified	0.1605950103
+UniRef50_UPI00036A8D72: hypothetical protein	0.1605904541
+UniRef50_UPI00036A8D72: hypothetical protein|unclassified	0.1605904541
+UniRef50_X6KWE6	0.1605742547
+UniRef50_X6KWE6|unclassified	0.1605742547
+UniRef50_T0ZG21: Transposase (Fragment)	0.1605720651
+UniRef50_T0ZG21: Transposase (Fragment)|unclassified	0.1605720651
+UniRef50_R6Q1T4: Transcriptional regulator DeoR family	0.1605653739
+UniRef50_R6Q1T4: Transcriptional regulator DeoR family|unclassified	0.1605653739
+UniRef50_UPI000467E530: MULTISPECIES: hypothetical protein	0.1605350753
+UniRef50_UPI000467E530: MULTISPECIES: hypothetical protein|unclassified	0.1605350753
+UniRef50_E4LER7	0.1605336984
+UniRef50_E4LER7|unclassified	0.1605336984
+UniRef50_Q2SWF4: Protein-L-isoaspartate O-methyltransferase	0.1605277561
+UniRef50_Q2SWF4: Protein-L-isoaspartate O-methyltransferase|unclassified	0.1605277561
+UniRef50_E8NHZ2	0.1605264594
+UniRef50_E8NHZ2|unclassified	0.1605264594
+UniRef50_UPI000368B278: hypothetical protein	0.1605257863
+UniRef50_UPI000368B278: hypothetical protein|unclassified	0.1605257863
+UniRef50_UPI00006CBA16: Carbonic anhydrase family protein	0.1605237795
+UniRef50_UPI00006CBA16: Carbonic anhydrase family protein|unclassified	0.1605237795
+UniRef50_UPI00029AD41A: hypothetical protein	0.1605211982
+UniRef50_UPI00029AD41A: hypothetical protein|unclassified	0.1605211982
+UniRef50_R7DM37	0.1605157902
+UniRef50_R7DM37|unclassified	0.1605157902
+UniRef50_UPI00034C518A: hypothetical protein	0.1605027289
+UniRef50_UPI00034C518A: hypothetical protein|unclassified	0.1605027289
+UniRef50_UPI0004074116: hypothetical protein	0.1604948145
+UniRef50_UPI0004074116: hypothetical protein|unclassified	0.1604948145
+UniRef50_UPI000374F4C3: hypothetical protein	0.1604848565
+UniRef50_UPI000374F4C3: hypothetical protein|unclassified	0.1604848565
+UniRef50_C4ZEG7: UDP-N-acetylenolpyruvoylglucosamine reductase	0.1604645392
+UniRef50_C4ZEG7: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.1604645392
+UniRef50_UPI0004686F41: hypothetical protein	0.1604642674
+UniRef50_UPI0004686F41: hypothetical protein|unclassified	0.1604642674
+UniRef50_UPI000470A397: 30S ribosomal protein S2, partial	0.1604632042
+UniRef50_UPI000470A397: 30S ribosomal protein S2, partial|unclassified	0.1604632042
+UniRef50_Q966L6: Protein LET-504	0.1604605166
+UniRef50_Q966L6: Protein LET-504|unclassified	0.1604605166
+UniRef50_UPI0003F8EF5E: hypothetical protein	0.1604545662
+UniRef50_UPI0003F8EF5E: hypothetical protein|unclassified	0.1604545662
+UniRef50_J9NYE7	0.1604483424
+UniRef50_J9NYE7|unclassified	0.1604483424
+UniRef50_UPI0004761455: hypothetical protein	0.1604472566
+UniRef50_UPI0004761455: hypothetical protein|unclassified	0.1604472566
+UniRef50_Q39LS9	0.1604394004
+UniRef50_Q39LS9|unclassified	0.1604394004
+UniRef50_Q0BWU4: Phosphoribosyl-AMP cyclohydrolase	0.1604344566
+UniRef50_Q0BWU4: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.1604344566
+UniRef50_F2JTX7: MazG family protein	0.1604063769
+UniRef50_F2JTX7: MazG family protein|unclassified	0.1604063769
+UniRef50_UPI0003B4600B: ribonuclease, partial	0.1603928569
+UniRef50_UPI0003B4600B: ribonuclease, partial|unclassified	0.1603928569
+UniRef50_UPI0003B6EF1B: dihydroxyacetone kinase	0.1603885538
+UniRef50_UPI0003B6EF1B: dihydroxyacetone kinase|unclassified	0.1603885538
+UniRef50_G2LSE4	0.1603722799
+UniRef50_G2LSE4|unclassified	0.1603722799
+UniRef50_S2XCJ5	0.1603690334
+UniRef50_S2XCJ5|unclassified	0.1603690334
+UniRef50_UPI0004743B7A: hypothetical protein, partial	0.1603671086
+UniRef50_UPI0004743B7A: hypothetical protein, partial|unclassified	0.1603671086
+UniRef50_C6WXK0: Excinuclease ABC C subunit domain protein	0.1603658969
+UniRef50_C6WXK0: Excinuclease ABC C subunit domain protein|unclassified	0.1603658969
+UniRef50_B2JFL4	0.1603624473
+UniRef50_B2JFL4|unclassified	0.1603624473
+UniRef50_UPI00035EF636: hypothetical protein	0.1603539722
+UniRef50_UPI00035EF636: hypothetical protein|unclassified	0.1603539722
+UniRef50_C0ARV4	0.1603516795
+UniRef50_C0ARV4|unclassified	0.1603516795
+UniRef50_UPI00037EAB74: hypothetical protein	0.1603508050
+UniRef50_UPI00037EAB74: hypothetical protein|unclassified	0.1603508050
+UniRef50_Q2RT88: DNA-directed RNA polymerase subunit omega	0.1603424502
+UniRef50_Q2RT88: DNA-directed RNA polymerase subunit omega|unclassified	0.1603424502
+UniRef50_I7DCH3	0.1603390128
+UniRef50_I7DCH3|unclassified	0.1603390128
+UniRef50_UPI000478418E: hypothetical protein	0.1603387583
+UniRef50_UPI000478418E: hypothetical protein|unclassified	0.1603387583
+UniRef50_X1S549: Marine sediment metagenome DNA, contig: S12H4_C00879	0.1603303487
+UniRef50_X1S549: Marine sediment metagenome DNA, contig: S12H4_C00879|unclassified	0.1603303487
+UniRef50_U6H7V4	0.1603224254
+UniRef50_U6H7V4|unclassified	0.1603224254
+UniRef50_Q5E4P9: Acylphosphatase	0.1603135799
+UniRef50_Q5E4P9: Acylphosphatase|unclassified	0.1603135799
+UniRef50_B9L2E2: DedA family	0.1603109301
+UniRef50_B9L2E2: DedA family|unclassified	0.1603109301
+UniRef50_UPI00046EC144: UDP pyrophosphate phosphatase	0.1603050632
+UniRef50_UPI00046EC144: UDP pyrophosphate phosphatase|unclassified	0.1603050632
+UniRef50_Q18J88: Thymidine kinase	0.1602809581
+UniRef50_Q18J88: Thymidine kinase|unclassified	0.1602809581
+UniRef50_Q132J0	0.1602692087
+UniRef50_Q132J0|unclassified	0.1602692087
+UniRef50_J7LER8: Bacteriocin, lactococcin 972 family protein	0.1602626112
+UniRef50_J7LER8: Bacteriocin, lactococcin 972 family protein|unclassified	0.1602626112
+UniRef50_G4CFL2	0.1602405249
+UniRef50_G4CFL2|unclassified	0.1602405249
+UniRef50_A0A013SUS4: NMT1-like family protein	0.1602380133
+UniRef50_A0A013SUS4: NMT1-like family protein|unclassified	0.1602380133
+UniRef50_B0T157: Endoribonuclease YbeY	0.1602318902
+UniRef50_B0T157: Endoribonuclease YbeY|unclassified	0.1602318902
+UniRef50_UPI0003094A6C: hypothetical protein	0.1602305688
+UniRef50_UPI0003094A6C: hypothetical protein|unclassified	0.1602305688
+UniRef50_UPI0003677F15: hypothetical protein	0.1602285305
+UniRef50_UPI0003677F15: hypothetical protein|unclassified	0.1602285305
+UniRef50_R6PLE5	0.1602244464
+UniRef50_R6PLE5|unclassified	0.1602244464
+UniRef50_M3I999	0.1602172125
+UniRef50_M3I999|unclassified	0.1602172125
+UniRef50_UPI000289FD65: 4-aminobutyrate aminotransferase	0.1602135822
+UniRef50_UPI000289FD65: 4-aminobutyrate aminotransferase|unclassified	0.1602135822
+UniRef50_UPI000364254B: hypothetical protein	0.1602110765
+UniRef50_UPI000364254B: hypothetical protein|unclassified	0.1602110765
+UniRef50_UPI00035DF3B0: Tat pathway signal protein	0.1602094503
+UniRef50_UPI00035DF3B0: Tat pathway signal protein|unclassified	0.1602094503
+UniRef50_F6BNG2	0.1602059916
+UniRef50_F6BNG2|unclassified	0.1602059916
+UniRef50_UPI0004017F7C: transcriptional regulator	0.1601983642
+UniRef50_UPI0004017F7C: transcriptional regulator|unclassified	0.1601983642
+UniRef50_A1B953	0.1601950294
+UniRef50_A1B953|unclassified	0.1601950294
+UniRef50_Q50245: ORF492	0.1601831040
+UniRef50_Q50245: ORF492|unclassified	0.1601831040
+UniRef50_UPI00045E7BD4: hypothetical protein	0.1601810319
+UniRef50_UPI00045E7BD4: hypothetical protein|unclassified	0.1601810319
+UniRef50_UPI0003F0EEE2: PREDICTED: vegetative cell wall protein gp1-like	0.1601780379
+UniRef50_UPI0003F0EEE2: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.1601780379
+UniRef50_A0A014M623	0.1601731614
+UniRef50_A0A014M623|unclassified	0.1601731614
+UniRef50_Q1QLY5	0.1601730375
+UniRef50_Q1QLY5|unclassified	0.1601730375
+UniRef50_F6EQ34: BH1004 protein	0.1601574408
+UniRef50_F6EQ34: BH1004 protein|unclassified	0.1601574408
+UniRef50_H7D137	0.1601542125
+UniRef50_H7D137|unclassified	0.1601542125
+UniRef50_UPI00047E1505: chemotaxis protein CheY	0.1601508476
+UniRef50_UPI00047E1505: chemotaxis protein CheY|unclassified	0.1601508476
+UniRef50_A0A011NP07: 4-alpha-glucanotransferase	0.1601376837
+UniRef50_A0A011NP07: 4-alpha-glucanotransferase|unclassified	0.1601376837
+UniRef50_UPI0004793420: hypothetical protein	0.1601284891
+UniRef50_UPI0004793420: hypothetical protein|unclassified	0.1601284891
+UniRef50_UPI000478F558: hypothetical protein	0.1601256964
+UniRef50_UPI000478F558: hypothetical protein|unclassified	0.1601256964
+UniRef50_UPI0002375E2E: secretion protein HlyD	0.1601188885
+UniRef50_UPI0002375E2E: secretion protein HlyD|unclassified	0.1601188885
+UniRef50_UPI0004640D77: hypothetical protein	0.1601084700
+UniRef50_UPI0004640D77: hypothetical protein|unclassified	0.1601084700
+UniRef50_UPI00037027CB: hypothetical protein	0.1601082720
+UniRef50_UPI00037027CB: hypothetical protein|unclassified	0.1601082720
+UniRef50_P37543	0.1601013146
+UniRef50_P37543|unclassified	0.1601013146
+UniRef50_UPI000463847D: hypothetical protein	0.1600963910
+UniRef50_UPI000463847D: hypothetical protein|unclassified	0.1600963910
+UniRef50_P54947: Putative phosphatase YxeH	0.1600795717
+UniRef50_P54947: Putative phosphatase YxeH|unclassified	0.1600795717
+UniRef50_X8F6T6: LysE type translocator family protein	0.1600680327
+UniRef50_X8F6T6: LysE type translocator family protein|unclassified	0.1600680327
+UniRef50_T6NGV3: Alkaline phosphatase	0.1600575903
+UniRef50_T6NGV3: Alkaline phosphatase|unclassified	0.1600575903
+UniRef50_A0A058ZGI8	0.1600541069
+UniRef50_A0A058ZGI8|unclassified	0.1600541069
+UniRef50_W4RTV0	0.1600402334
+UniRef50_W4RTV0|unclassified	0.1600402334
+UniRef50_G5LQP3: Putative heat shock protein YegD (Fragment)	0.1600274735
+UniRef50_G5LQP3: Putative heat shock protein YegD (Fragment)|unclassified	0.1600274735
+UniRef50_W1J861: Insertion element IS1 1/2/3/5/6 protein insA (IS1a/IS1b/IS1c/IS1d) (Modular protein)	0.1600097907
+UniRef50_W1J861: Insertion element IS1 1/2/3/5/6 protein insA (IS1a/IS1b/IS1c/IS1d) (Modular protein)|unclassified	0.1600097907
+UniRef50_Q31N84: 3-oxoacyl-[acyl-carrier-protein] synthase 3	0.1600073410
+UniRef50_Q31N84: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	0.1600073410
+UniRef50_F5T052: Putative membrane protein	0.1599681917
+UniRef50_F5T052: Putative membrane protein|unclassified	0.1599681917
+UniRef50_UPI00042B1A5C: Coproporphyrinogen III oxidase isoform 4, partial	0.1599641136
+UniRef50_UPI00042B1A5C: Coproporphyrinogen III oxidase isoform 4, partial|unclassified	0.1599641136
+UniRef50_UPI0003EAA8C0: PREDICTED: cyclin-dependent kinase 13-like	0.1599595223
+UniRef50_UPI0003EAA8C0: PREDICTED: cyclin-dependent kinase 13-like|unclassified	0.1599595223
+UniRef50_UPI00038FF2DE: hypothetical protein	0.1599549178
+UniRef50_UPI00038FF2DE: hypothetical protein|unclassified	0.1599549178
+UniRef50_Q3JMF5	0.1599540835
+UniRef50_Q3JMF5|unclassified	0.1599540835
+UniRef50_D4MGV9: Replication initiator protein A (RepA) N-terminus	0.1599532364
+UniRef50_D4MGV9: Replication initiator protein A (RepA) N-terminus|unclassified	0.1599532364
+UniRef50_U6N0Z9	0.1599398675
+UniRef50_U6N0Z9|unclassified	0.1599398675
+UniRef50_B1BA52	0.1599322269
+UniRef50_B1BA52|unclassified	0.1599322269
+UniRef50_UPI0004636386: hypothetical protein	0.1599103904
+UniRef50_UPI0004636386: hypothetical protein|unclassified	0.1599103904
+UniRef50_UPI00036184DA: hypothetical protein	0.1599095887
+UniRef50_UPI00036184DA: hypothetical protein|unclassified	0.1599095887
+UniRef50_Q4JIZ0: Putative internalin protein (Fragment)	0.1598965382
+UniRef50_Q4JIZ0: Putative internalin protein (Fragment)|unclassified	0.1598965382
+UniRef50_UPI00046AEB45: hypothetical protein	0.1598950175
+UniRef50_UPI00046AEB45: hypothetical protein|unclassified	0.1598950175
+UniRef50_Q3ZX40: Formate--tetrahydrofolate ligase	0.1598906221
+UniRef50_Q3ZX40: Formate--tetrahydrofolate ligase|unclassified	0.1598906221
+UniRef50_UPI00036691E9: hypothetical protein	0.1598901048
+UniRef50_UPI00036691E9: hypothetical protein|unclassified	0.1598901048
+UniRef50_UPI0004779366: serine protease	0.1598839922
+UniRef50_UPI0004779366: serine protease|unclassified	0.1598839922
+UniRef50_UPI00036C85EF: hypothetical protein	0.1598833641
+UniRef50_UPI00036C85EF: hypothetical protein|unclassified	0.1598833641
+UniRef50_U7P9C2	0.1598771288
+UniRef50_U7P9C2|unclassified	0.1598771288
+UniRef50_UPI000407D76B: hypothetical protein	0.1598763646
+UniRef50_UPI000407D76B: hypothetical protein|unclassified	0.1598763646
+UniRef50_A0A059FDQ3: BolA family protein	0.1598752395
+UniRef50_A0A059FDQ3: BolA family protein|unclassified	0.1598752395
+UniRef50_UPI00047295CA: hypothetical protein	0.1598726321
+UniRef50_UPI00047295CA: hypothetical protein|unclassified	0.1598726321
+UniRef50_UPI000288B084: binding-protein-dependent transport systems inner membrane component	0.1598683991
+UniRef50_UPI000288B084: binding-protein-dependent transport systems inner membrane component|unclassified	0.1598683991
+UniRef50_H8WEE8	0.1598681684
+UniRef50_H8WEE8|unclassified	0.1598681684
+UniRef50_A4VRK8: Monofunctional biosynthetic peptidoglycan transglycosylase	0.1598640552
+UniRef50_A4VRK8: Monofunctional biosynthetic peptidoglycan transglycosylase|unclassified	0.1598640552
+UniRef50_C1L2X6: UDP-N-acetylenolpyruvoylglucosamine reductase	0.1598572376
+UniRef50_C1L2X6: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.1598572376
+UniRef50_UPI0003B5B66A: single-stranded DNA-binding protein	0.1598320223
+UniRef50_UPI0003B5B66A: single-stranded DNA-binding protein|unclassified	0.1598320223
+UniRef50_UPI0003C13A29: PREDICTED: heat shock 70 kDa protein, mitochondrial-like	0.1598314442
+UniRef50_UPI0003C13A29: PREDICTED: heat shock 70 kDa protein, mitochondrial-like|unclassified	0.1598314442
+UniRef50_Q55863: Pyruvate kinase 1	0.1598190041
+UniRef50_Q55863: Pyruvate kinase 1|unclassified	0.1598190041
+UniRef50_UPI000465C5E8: peptide ABC transporter permease	0.1598067576
+UniRef50_UPI000465C5E8: peptide ABC transporter permease|unclassified	0.1598067576
+UniRef50_A0A024G3T5: Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_13_length_192192	0.1598049367
+UniRef50_A0A024G3T5: Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_13_length_192192|unclassified	0.1598049367
+UniRef50_V9AWT6: PF11906 family protein	0.1597977555
+UniRef50_V9AWT6: PF11906 family protein|unclassified	0.1597977555
+UniRef50_UPI0002895865: GntR family transcriptional regulator	0.1597963872
+UniRef50_UPI0002895865: GntR family transcriptional regulator|unclassified	0.1597963872
+UniRef50_C3LV18	0.1597916134
+UniRef50_C3LV18|unclassified	0.1597916134
+UniRef50_D0R2C0	0.1597875778
+UniRef50_D0R2C0|unclassified	0.1597875778
+UniRef50_Q8X4H6	0.1597422194
+UniRef50_Q8X4H6|unclassified	0.1597422194
+UniRef50_A8TS80: Beta-lactamase-like protein	0.1597218163
+UniRef50_A8TS80: Beta-lactamase-like protein|unclassified	0.1597218163
+UniRef50_UPI00047A72D8: hypothetical protein	0.1597137813
+UniRef50_UPI00047A72D8: hypothetical protein|unclassified	0.1597137813
+UniRef50_B4RHN4: Twin-arginine translocation pathway signal	0.1596937542
+UniRef50_B4RHN4: Twin-arginine translocation pathway signal|unclassified	0.1596937542
+UniRef50_F0XY63	0.1596933887
+UniRef50_F0XY63|unclassified	0.1596933887
+UniRef50_UPI00035E9CDA: hypothetical protein	0.1596700232
+UniRef50_UPI00035E9CDA: hypothetical protein|unclassified	0.1596700232
+UniRef50_Q11DH4: Crossover junction endodeoxyribonuclease RuvC	0.1596693062
+UniRef50_Q11DH4: Crossover junction endodeoxyribonuclease RuvC|unclassified	0.1596693062
+UniRef50_A1BEP5: Quinolinate synthase A	0.1596670413
+UniRef50_A1BEP5: Quinolinate synthase A|unclassified	0.1596670413
+UniRef50_C7DDZ3	0.1596579484
+UniRef50_C7DDZ3|unclassified	0.1596579484
+UniRef50_UPI00036379E0: hypothetical protein	0.1596483028
+UniRef50_UPI00036379E0: hypothetical protein|unclassified	0.1596483028
+UniRef50_Q24X66: tRNA dimethylallyltransferase	0.1596481429
+UniRef50_Q24X66: tRNA dimethylallyltransferase|unclassified	0.1596481429
+UniRef50_P0CD78: Phosphoglycerate kinase	0.1596409517
+UniRef50_P0CD78: Phosphoglycerate kinase|unclassified	0.1596409517
+UniRef50_W0ABZ9	0.1596385057
+UniRef50_W0ABZ9|unclassified	0.1596385057
+UniRef50_UPI000364D077: hypothetical protein	0.1596322906
+UniRef50_UPI000364D077: hypothetical protein|unclassified	0.1596322906
+UniRef50_UPI0003B4230B: cytochrome C	0.1596281561
+UniRef50_UPI0003B4230B: cytochrome C|unclassified	0.1596281561
+UniRef50_UPI0003B5660A: thioredoxin	0.1596273575
+UniRef50_UPI0003B5660A: thioredoxin|unclassified	0.1596273575
+UniRef50_Q1GSV9: RNA pyrophosphohydrolase	0.1596242113
+UniRef50_Q1GSV9: RNA pyrophosphohydrolase|unclassified	0.1596242113
+UniRef50_UPI0003713CBC: hypothetical protein	0.1595838646
+UniRef50_UPI0003713CBC: hypothetical protein|unclassified	0.1595838646
+UniRef50_Q2BNX4	0.1595688584
+UniRef50_Q2BNX4|unclassified	0.1595688584
+UniRef50_L0WJ61	0.1595659510
+UniRef50_L0WJ61|unclassified	0.1595659510
+UniRef50_H8MMU8: HSP20 family protein	0.1595645282
+UniRef50_H8MMU8: HSP20 family protein|unclassified	0.1595645282
+UniRef50_P54420: Asparagine synthetase [glutamine-hydrolyzing] 1	0.1595629898
+UniRef50_P54420: Asparagine synthetase [glutamine-hydrolyzing] 1|unclassified	0.1595629898
+UniRef50_UPI0004723955: flagellar biosynthesis protein flip	0.1595513102
+UniRef50_UPI0004723955: flagellar biosynthesis protein flip|unclassified	0.1595513102
+UniRef50_Q8G7H1: Ribonuclease 3	0.1595498101
+UniRef50_Q8G7H1: Ribonuclease 3|unclassified	0.1595498101
+UniRef50_UPI000262E803: acetyltransferase	0.1595466748
+UniRef50_UPI000262E803: acetyltransferase|unclassified	0.1595466748
+UniRef50_Q04GN2: Predicted nucleic-acid-binding protein implicated in transcription termination	0.1595463138
+UniRef50_Q04GN2: Predicted nucleic-acid-binding protein implicated in transcription termination|unclassified	0.1595463138
+UniRef50_UPI0003774561: hypothetical protein	0.1595439460
+UniRef50_UPI0003774561: hypothetical protein|unclassified	0.1595439460
+UniRef50_V6F621	0.1595240192
+UniRef50_V6F621|unclassified	0.1595240192
+UniRef50_UPI0002E94BF6: hypothetical protein	0.1595148630
+UniRef50_UPI0002E94BF6: hypothetical protein|unclassified	0.1595148630
+UniRef50_I7ES48: Protein YciI	0.1595021575
+UniRef50_I7ES48: Protein YciI|unclassified	0.1595021575
+UniRef50_M9RD55: Protein YciI	0.1595021575
+UniRef50_M9RD55: Protein YciI|unclassified	0.1595021575
+UniRef50_UPI00047BFB23: hypothetical protein	0.1594910726
+UniRef50_UPI00047BFB23: hypothetical protein|unclassified	0.1594910726
+UniRef50_UPI0004408DA8: ribosomal protein S5 domain 2-like protein	0.1594889294
+UniRef50_UPI0004408DA8: ribosomal protein S5 domain 2-like protein|unclassified	0.1594889294
+UniRef50_UPI00036EA77A: hypothetical protein	0.1594857450
+UniRef50_UPI00036EA77A: hypothetical protein|unclassified	0.1594857450
+UniRef50_UPI00046ED06C: peptide ABC transporter substrate-binding protein	0.1594828377
+UniRef50_UPI00046ED06C: peptide ABC transporter substrate-binding protein|unclassified	0.1594828377
+UniRef50_UPI0002FFFD86: hypothetical protein	0.1594775821
+UniRef50_UPI0002FFFD86: hypothetical protein|unclassified	0.1594775821
+UniRef50_C5Z6C4	0.1594744410
+UniRef50_C5Z6C4|unclassified	0.1594744410
+UniRef50_K3ZVA7	0.1594697217
+UniRef50_K3ZVA7|unclassified	0.1594697217
+UniRef50_UPI000367E2ED: hypothetical protein	0.1594597822
+UniRef50_UPI000367E2ED: hypothetical protein|unclassified	0.1594597822
+UniRef50_UPI000300A99C: hypothetical protein	0.1594418466
+UniRef50_UPI000300A99C: hypothetical protein|unclassified	0.1594418466
+UniRef50_UPI0003B7A909: 4''''-phosphopantetheinyl transferase	0.1594170652
+UniRef50_UPI0003B7A909: 4''''-phosphopantetheinyl transferase|unclassified	0.1594170652
+UniRef50_UPI00037371AF: hypothetical protein	0.1594134941
+UniRef50_UPI00037371AF: hypothetical protein|unclassified	0.1594134941
+UniRef50_U5X2B2	0.1594097729
+UniRef50_U5X2B2|unclassified	0.1594097729
+UniRef50_R7PVP5	0.1593940621
+UniRef50_R7PVP5|unclassified	0.1593940621
+UniRef50_A0A022GKC1	0.1593926741
+UniRef50_A0A022GKC1|unclassified	0.1593926741
+UniRef50_A4VQW2	0.1593855715
+UniRef50_A4VQW2|unclassified	0.1593855715
+UniRef50_UPI00037AD5A1: hypothetical protein	0.1593702173
+UniRef50_UPI00037AD5A1: hypothetical protein|unclassified	0.1593702173
+UniRef50_A0L482: N-acetyl-gamma-glutamyl-phosphate reductase	0.1593684134
+UniRef50_A0L482: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.1593684134
+UniRef50_H3B979	0.1593670847
+UniRef50_H3B979|unclassified	0.1593670847
+UniRef50_UPI000377D62F: hypothetical protein	0.1593651891
+UniRef50_UPI000377D62F: hypothetical protein|unclassified	0.1593651891
+UniRef50_UPI000349FE04: hypothetical protein	0.1593625498
+UniRef50_UPI000349FE04: hypothetical protein|unclassified	0.1593625498
+UniRef50_C0HIK5	0.1593587135
+UniRef50_C0HIK5|unclassified	0.1593587135
+UniRef50_UPI00037AEAD0: hypothetical protein	0.1593537163
+UniRef50_UPI00037AEAD0: hypothetical protein|unclassified	0.1593537163
+UniRef50_A8H1B8	0.1593333827
+UniRef50_A8H1B8|unclassified	0.1593333827
+UniRef50_V4QD05: Fimbrial protein	0.1593305728
+UniRef50_V4QD05: Fimbrial protein|unclassified	0.1593305728
+UniRef50_UPI0003793433: hypothetical protein	0.1593297676
+UniRef50_UPI0003793433: hypothetical protein|unclassified	0.1593297676
+UniRef50_E3D7M6	0.1593210041
+UniRef50_E3D7M6|unclassified	0.1593210041
+UniRef50_Q5L3G7: Holo-[acyl-carrier-protein] synthase	0.1593062466
+UniRef50_Q5L3G7: Holo-[acyl-carrier-protein] synthase|unclassified	0.1593062466
+UniRef50_A5WEH0: Sulfate adenylyltransferase	0.1593038912
+UniRef50_A5WEH0: Sulfate adenylyltransferase|unclassified	0.1593038912
+UniRef50_Q7WH63: Pyridoxine 5'-phosphate synthase	0.1593012302
+UniRef50_Q7WH63: Pyridoxine 5'-phosphate synthase|unclassified	0.1593012302
+UniRef50_UPI000288AA6A: riboflavin synthase subunit alpha	0.1592917265
+UniRef50_UPI000288AA6A: riboflavin synthase subunit alpha|unclassified	0.1592917265
+UniRef50_UPI0002002889: hypothetical protein	0.1592834889
+UniRef50_UPI0002002889: hypothetical protein|unclassified	0.1592834889
+UniRef50_UPI000472EB58: hypothetical protein	0.1592718092
+UniRef50_UPI000472EB58: hypothetical protein|unclassified	0.1592718092
+UniRef50_S3BZ34	0.1592714004
+UniRef50_S3BZ34|unclassified	0.1592714004
+UniRef50_G9AIM1	0.1592700725
+UniRef50_G9AIM1|unclassified	0.1592700725
+UniRef50_G6CVQ9: Putative forked protein	0.1592669570
+UniRef50_G6CVQ9: Putative forked protein|unclassified	0.1592669570
+UniRef50_F8K1Z0	0.1592628122
+UniRef50_F8K1Z0|unclassified	0.1592628122
+UniRef50_U3PDZ1: Inosine 5-monophosphate dehydrogenase	0.1592554256
+UniRef50_U3PDZ1: Inosine 5-monophosphate dehydrogenase|unclassified	0.1592554256
+UniRef50_UPI00029A537B: transposase	0.1592452001
+UniRef50_UPI00029A537B: transposase|unclassified	0.1592452001
+UniRef50_U3TTJ6	0.1592309293
+UniRef50_U3TTJ6|unclassified	0.1592309293
+UniRef50_A3DGF9: Urease subunit beta	0.1592304123
+UniRef50_A3DGF9: Urease subunit beta|unclassified	0.1592304123
+UniRef50_A8MLB2: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase	0.1592265352
+UniRef50_A8MLB2: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|unclassified	0.1592265352
+UniRef50_UPI0004756747: 6,7-dimethyl-8-ribityllumazine synthase	0.1592160674
+UniRef50_UPI0004756747: 6,7-dimethyl-8-ribityllumazine synthase|unclassified	0.1592160674
+UniRef50_J2IBZ2	0.1592130004
+UniRef50_J2IBZ2|unclassified	0.1592130004
+UniRef50_A0A024L957	0.1592103168
+UniRef50_A0A024L957|g__Escherichia.s__Escherichia_coli	0.1592103168
+UniRef50_U7A5A7	0.1591882105
+UniRef50_U7A5A7|unclassified	0.1591882105
+UniRef50_A3E2C5: WfbD	0.1591612779
+UniRef50_A3E2C5: WfbD|unclassified	0.1591612779
+UniRef50_UPI0003458FD8: hypothetical protein	0.1591550084
+UniRef50_UPI0003458FD8: hypothetical protein|unclassified	0.1591550084
+UniRef50_Q8DM24: Ribonuclease H	0.1591430805
+UniRef50_Q8DM24: Ribonuclease H|unclassified	0.1591430805
+UniRef50_UPI0003A03A32: methyltransferase	0.1591312148
+UniRef50_UPI0003A03A32: methyltransferase|unclassified	0.1591312148
+UniRef50_UPI0003B71F4A: cell wall hydrolase	0.1591299896
+UniRef50_UPI0003B71F4A: cell wall hydrolase|unclassified	0.1591299896
+UniRef50_J9P2V2	0.1591248686
+UniRef50_J9P2V2|unclassified	0.1591248686
+UniRef50_UPI00046975C0: chromate transporter	0.1591203270
+UniRef50_UPI00046975C0: chromate transporter|unclassified	0.1591203270
+UniRef50_UPI00047218D6: peptide deformylase	0.1591127782
+UniRef50_UPI00047218D6: peptide deformylase|unclassified	0.1591127782
+UniRef50_UPI0003679B46: hypothetical protein	0.1590919523
+UniRef50_UPI0003679B46: hypothetical protein|unclassified	0.1590919523
+UniRef50_J1R4W4: Peptidase S15	0.1590883553
+UniRef50_J1R4W4: Peptidase S15|unclassified	0.1590883553
+UniRef50_UPI000404A8B9: hypothetical protein	0.1590860281
+UniRef50_UPI000404A8B9: hypothetical protein|unclassified	0.1590860281
+UniRef50_A8IRR9: Plastid lipid associated protein	0.1590787835
+UniRef50_A8IRR9: Plastid lipid associated protein|unclassified	0.1590787835
+UniRef50_Q9RWS6	0.1590786656
+UniRef50_Q9RWS6|unclassified	0.1590786656
+UniRef50_Q0FHI5	0.1590751953
+UniRef50_Q0FHI5|unclassified	0.1590751953
+UniRef50_X1MC39: Marine sediment metagenome DNA, contig: S06H3_L00920	0.1590686020
+UniRef50_X1MC39: Marine sediment metagenome DNA, contig: S06H3_L00920|unclassified	0.1590686020
+UniRef50_UPI00036645C7: hypothetical protein	0.1590536525
+UniRef50_UPI00036645C7: hypothetical protein|unclassified	0.1590536525
+UniRef50_U4V3H3	0.1590534053
+UniRef50_U4V3H3|unclassified	0.1590534053
+UniRef50_UPI000407B4E8: 5-methyltetrahydrofolate--homocysteine methyltransferase	0.1590528594
+UniRef50_UPI000407B4E8: 5-methyltetrahydrofolate--homocysteine methyltransferase|unclassified	0.1590528594
+UniRef50_UPI0002192826: biotin permease BioY	0.1590420567
+UniRef50_UPI0002192826: biotin permease BioY|unclassified	0.1590420567
+UniRef50_UPI00004C26CC: COG0561: Predicted hydrolases of the HAD superfamily	0.1590400393
+UniRef50_UPI00004C26CC: COG0561: Predicted hydrolases of the HAD superfamily|unclassified	0.1590400393
+UniRef50_UPI00036ED8BF: hypothetical protein	0.1590148749
+UniRef50_UPI00036ED8BF: hypothetical protein|unclassified	0.1590148749
+UniRef50_UPI0003781A4D: hypothetical protein	0.1589903276
+UniRef50_UPI0003781A4D: hypothetical protein|unclassified	0.1589903276
+UniRef50_M7AY30: Copper-exporting ATPase	0.1589801577
+UniRef50_M7AY30: Copper-exporting ATPase|unclassified	0.1589801577
+UniRef50_UPI0002E17ECF: hypothetical protein	0.1589691463
+UniRef50_UPI0002E17ECF: hypothetical protein|unclassified	0.1589691463
+UniRef50_S3CBH2	0.1589654914
+UniRef50_S3CBH2|unclassified	0.1589654914
+UniRef50_UPI00035DC90E: hypothetical protein	0.1589289938
+UniRef50_UPI00035DC90E: hypothetical protein|unclassified	0.1589289938
+UniRef50_R7EGC5	0.1589281591
+UniRef50_R7EGC5|unclassified	0.1589281591
+UniRef50_E0WRU7	0.1589246205
+UniRef50_E0WRU7|unclassified	0.1589246205
+UniRef50_C1N707: Predicted protein	0.1589229723
+UniRef50_C1N707: Predicted protein|unclassified	0.1589229723
+UniRef50_UPI0003A12BDB: TetR family transcriptional regulator	0.1589221112
+UniRef50_UPI0003A12BDB: TetR family transcriptional regulator|unclassified	0.1589221112
+UniRef50_UPI000381526E: hypothetical protein	0.1589146813
+UniRef50_UPI000381526E: hypothetical protein|unclassified	0.1589146813
+UniRef50_X2MPV6: Colanic acid biosynthesis protein	0.1589121762
+UniRef50_X2MPV6: Colanic acid biosynthesis protein|unclassified	0.1589121762
+UniRef50_UPI00026286FB: diaminopimelate decarboxylase, partial	0.1589099110
+UniRef50_UPI00026286FB: diaminopimelate decarboxylase, partial|unclassified	0.1589099110
+UniRef50_UPI0002FD2950: hypothetical protein	0.1589092161
+UniRef50_UPI0002FD2950: hypothetical protein|unclassified	0.1589092161
+UniRef50_O34767: Oxalate decarboxylase OxdD	0.1589016553
+UniRef50_O34767: Oxalate decarboxylase OxdD|unclassified	0.1589016553
+UniRef50_UPI0003C13530: PREDICTED: peroxiredoxin-2E-1, chloroplastic-like, partial	0.1589004115
+UniRef50_UPI0003C13530: PREDICTED: peroxiredoxin-2E-1, chloroplastic-like, partial|unclassified	0.1589004115
+UniRef50_UPI000467E4D6: hypothetical protein, partial	0.1588905706
+UniRef50_UPI000467E4D6: hypothetical protein, partial|unclassified	0.1588905706
+UniRef50_Q11KK6	0.1588889282
+UniRef50_Q11KK6|unclassified	0.1588889282
+UniRef50_W7DPL8	0.1588695651
+UniRef50_W7DPL8|unclassified	0.1588695651
+UniRef50_Q54T46: Probable Xaa-Pro aminopeptidase 3	0.1588570715
+UniRef50_Q54T46: Probable Xaa-Pro aminopeptidase 3|unclassified	0.1588570715
+UniRef50_UPI00031B9CF0: baseplate assembly protein	0.1588545926
+UniRef50_UPI00031B9CF0: baseplate assembly protein|unclassified	0.1588545926
+UniRef50_A9CH11: NAD-dependent formate dehydrogenase delta subunit	0.1588369711
+UniRef50_A9CH11: NAD-dependent formate dehydrogenase delta subunit|unclassified	0.1588369711
+UniRef50_UPI0004770BBC: sulfate transporter	0.1587888476
+UniRef50_UPI0004770BBC: sulfate transporter|unclassified	0.1587888476
+UniRef50_UPI000466D29D: hypothetical protein	0.1587865825
+UniRef50_UPI000466D29D: hypothetical protein|unclassified	0.1587865825
+UniRef50_UPI000378771A: hypothetical protein	0.1587686019
+UniRef50_UPI000378771A: hypothetical protein|unclassified	0.1587686019
+UniRef50_Q9ZIG2: Thymidine kinase	0.1587649603
+UniRef50_Q9ZIG2: Thymidine kinase|unclassified	0.1587649603
+UniRef50_UPI0003007821: hypothetical protein	0.1587585663
+UniRef50_UPI0003007821: hypothetical protein|unclassified	0.1587585663
+UniRef50_UPI000382CC4C: hypothetical protein	0.1587519426
+UniRef50_UPI000382CC4C: hypothetical protein|unclassified	0.1587519426
+UniRef50_F2AB81	0.1587511038
+UniRef50_F2AB81|unclassified	0.1587511038
+UniRef50_X0W747: Marine sediment metagenome DNA, contig: S01H1_S12359 (Fragment)	0.1587461697
+UniRef50_X0W747: Marine sediment metagenome DNA, contig: S01H1_S12359 (Fragment)|unclassified	0.1587461697
+UniRef50_UPI000472234B: membrane protein	0.1587405065
+UniRef50_UPI000472234B: membrane protein|unclassified	0.1587405065
+UniRef50_UPI00038053ED: hypothetical protein	0.1587385620
+UniRef50_UPI00038053ED: hypothetical protein|unclassified	0.1587385620
+UniRef50_K1YPZ6	0.1587289809
+UniRef50_K1YPZ6|unclassified	0.1587289809
+UniRef50_UPI0003B55499: flagellar basal body rod modification protein FlgD	0.1587226284
+UniRef50_UPI0003B55499: flagellar basal body rod modification protein FlgD|unclassified	0.1587226284
+UniRef50_UPI000375A3E4: hypothetical protein	0.1587198193
+UniRef50_UPI000375A3E4: hypothetical protein|unclassified	0.1587198193
+UniRef50_UPI00042388D4: oxidoreductase	0.1587134827
+UniRef50_UPI00042388D4: oxidoreductase|unclassified	0.1587134827
+UniRef50_A7FB75	0.1587021075
+UniRef50_A7FB75|unclassified	0.1587021075
+UniRef50_P65239: Ribose-phosphate pyrophosphokinase 1	0.1587020601
+UniRef50_P65239: Ribose-phosphate pyrophosphokinase 1|unclassified	0.1587020601
+UniRef50_Q899I4: Peptidyl-tRNA hydrolase	0.1586964420
+UniRef50_Q899I4: Peptidyl-tRNA hydrolase|unclassified	0.1586964420
+UniRef50_B9KPG8	0.1586925225
+UniRef50_B9KPG8|unclassified	0.1586925225
+UniRef50_UPI00035E8B7E: hypothetical protein	0.1586849896
+UniRef50_UPI00035E8B7E: hypothetical protein|unclassified	0.1586849896
+UniRef50_UPI00021965BD: xylulokinase	0.1586780140
+UniRef50_UPI00021965BD: xylulokinase|unclassified	0.1586780140
+UniRef50_A8HQT7	0.1586763118
+UniRef50_A8HQT7|unclassified	0.1586763118
+UniRef50_UPI00047EC165: hypothetical protein	0.1586626104
+UniRef50_UPI00047EC165: hypothetical protein|unclassified	0.1586626104
+UniRef50_E3ZVB3: Cell surface protein	0.1586515054
+UniRef50_E3ZVB3: Cell surface protein|unclassified	0.1586515054
+UniRef50_UPI000395D3CA: PREDICTED: serine/arginine repetitive matrix protein 2-like	0.1586398131
+UniRef50_UPI000395D3CA: PREDICTED: serine/arginine repetitive matrix protein 2-like|unclassified	0.1586398131
+UniRef50_X7V406	0.1586233601
+UniRef50_X7V406|unclassified	0.1586233601
+UniRef50_B1CAC5: Putative L-ribulose-5-phosphate 4-epimerase	0.1586176458
+UniRef50_B1CAC5: Putative L-ribulose-5-phosphate 4-epimerase|unclassified	0.1586176458
+UniRef50_K9GXP7	0.1586175361
+UniRef50_K9GXP7|unclassified	0.1586175361
+UniRef50_UPI0003815DCD: hypothetical protein	0.1586160636
+UniRef50_UPI0003815DCD: hypothetical protein|unclassified	0.1586160636
+UniRef50_UPI00037155DE: hypothetical protein	0.1586154269
+UniRef50_UPI00037155DE: hypothetical protein|unclassified	0.1586154269
+UniRef50_G2FFR6	0.1586126991
+UniRef50_G2FFR6|unclassified	0.1586126991
+UniRef50_UPI00016C3A8C: deoxyguanosinetriphosphate triphosphohydrolase-like protein	0.1586027304
+UniRef50_UPI00016C3A8C: deoxyguanosinetriphosphate triphosphohydrolase-like protein|unclassified	0.1586027304
+UniRef50_UPI00041EF0AD: hypothetical protein	0.1585657123
+UniRef50_UPI00041EF0AD: hypothetical protein|unclassified	0.1585657123
+UniRef50_UPI000427A5E5: hypothetical protein	0.1585529988
+UniRef50_UPI000427A5E5: hypothetical protein|unclassified	0.1585529988
+UniRef50_UPI0003B55D8E: pyruvate kinase	0.1585499724
+UniRef50_UPI0003B55D8E: pyruvate kinase|unclassified	0.1585499724
+UniRef50_UPI000368F783: hypothetical protein	0.1585351826
+UniRef50_UPI000368F783: hypothetical protein|unclassified	0.1585351826
+UniRef50_L8H2D0: DIL domain containing protein	0.1585318038
+UniRef50_L8H2D0: DIL domain containing protein|unclassified	0.1585318038
+UniRef50_UPI00047AC07F: hypothetical protein	0.1585084208
+UniRef50_UPI00047AC07F: hypothetical protein|unclassified	0.1585084208
+UniRef50_J6YZ50	0.1584939441
+UniRef50_J6YZ50|unclassified	0.1584939441
+UniRef50_UPI0003B3E409: 50S ribosomal protein L25	0.1584849990
+UniRef50_UPI0003B3E409: 50S ribosomal protein L25|unclassified	0.1584849990
+UniRef50_UPI00016C0F03: peptidyl-tRNA hydrolase	0.1584789058
+UniRef50_UPI00016C0F03: peptidyl-tRNA hydrolase|unclassified	0.1584789058
+UniRef50_UPI0002D43251: hypothetical protein	0.1584654202
+UniRef50_UPI0002D43251: hypothetical protein|unclassified	0.1584654202
+UniRef50_L3LR74	0.1584650555
+UniRef50_L3LR74|unclassified	0.1584650555
+UniRef50_UPI000374958E: hypothetical protein	0.1584594248
+UniRef50_UPI000374958E: hypothetical protein|unclassified	0.1584594248
+UniRef50_B0SHK4: Argininosuccinate lyase	0.1584548624
+UniRef50_B0SHK4: Argininosuccinate lyase|unclassified	0.1584548624
+UniRef50_UPI00037539AF: S-adenosylmethionine synthetase	0.1584496990
+UniRef50_UPI00037539AF: S-adenosylmethionine synthetase|unclassified	0.1584496990
+UniRef50_UPI000378FFA7: hypothetical protein	0.1584186258
+UniRef50_UPI000378FFA7: hypothetical protein|unclassified	0.1584186258
+UniRef50_F6F295: YCII-related protein	0.1584117515
+UniRef50_F6F295: YCII-related protein|unclassified	0.1584117515
+UniRef50_P26507: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifN	0.1584105488
+UniRef50_P26507: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifN|unclassified	0.1584105488
+UniRef50_UPI0001746401: hypothetical protein	0.1584092665
+UniRef50_UPI0001746401: hypothetical protein|unclassified	0.1584092665
+UniRef50_UPI0003EAA907: PREDICTED: aquaporin NIP1-4-like	0.1583936182
+UniRef50_UPI0003EAA907: PREDICTED: aquaporin NIP1-4-like|unclassified	0.1583936182
+UniRef50_UPI0003D76D6C: PREDICTED: probable LRR receptor-like serine/threonine-protein kinase At4g36180-like isoform X1	0.1583879177
+UniRef50_UPI0003D76D6C: PREDICTED: probable LRR receptor-like serine/threonine-protein kinase At4g36180-like isoform X1|unclassified	0.1583879177
+UniRef50_UPI00046A529C: hypothetical protein	0.1583761802
+UniRef50_UPI00046A529C: hypothetical protein|unclassified	0.1583761802
+UniRef50_A0A034SLU2	0.1583733886
+UniRef50_A0A034SLU2|unclassified	0.1583733886
+UniRef50_UPI0002F51484: hypothetical protein	0.1583709884
+UniRef50_UPI0002F51484: hypothetical protein|unclassified	0.1583709884
+UniRef50_UPI00036C01EA: hypothetical protein	0.1583703987
+UniRef50_UPI00036C01EA: hypothetical protein|unclassified	0.1583703987
+UniRef50_UPI00047E8C5B: hypothetical protein	0.1583600070
+UniRef50_UPI00047E8C5B: hypothetical protein|unclassified	0.1583600070
+UniRef50_Q12LS2: Phenylacetic acid degradation-related protein	0.1583546982
+UniRef50_Q12LS2: Phenylacetic acid degradation-related protein|unclassified	0.1583546982
+UniRef50_UPI0003B6C781: amidohydrolase	0.1583426136
+UniRef50_UPI0003B6C781: amidohydrolase|unclassified	0.1583426136
+UniRef50_UPI0002F1CE00: hypothetical protein	0.1583400735
+UniRef50_UPI0002F1CE00: hypothetical protein|unclassified	0.1583400735
+UniRef50_UPI0003786CA7: hypothetical protein	0.1583398375
+UniRef50_UPI0003786CA7: hypothetical protein|unclassified	0.1583398375
+UniRef50_UPI00035C1045: hypothetical protein	0.1583362425
+UniRef50_UPI00035C1045: hypothetical protein|unclassified	0.1583362425
+UniRef50_UPI000467973F: hypothetical protein	0.1583331505
+UniRef50_UPI000467973F: hypothetical protein|unclassified	0.1583331505
+UniRef50_UPI0001A44C65: transketolase, partial	0.1582998731
+UniRef50_UPI0001A44C65: transketolase, partial|unclassified	0.1582998731
+UniRef50_UPI000462994E: hypothetical protein	0.1582896993
+UniRef50_UPI000462994E: hypothetical protein|unclassified	0.1582896993
+UniRef50_UPI0002F1552A: hypothetical protein	0.1582848912
+UniRef50_UPI0002F1552A: hypothetical protein|unclassified	0.1582848912
+UniRef50_UPI00045EA79E: hypothetical protein, partial	0.1582714057
+UniRef50_UPI00045EA79E: hypothetical protein, partial|unclassified	0.1582714057
+UniRef50_U3KJ42	0.1582661848
+UniRef50_U3KJ42|unclassified	0.1582661848
+UniRef50_A3JSS4	0.1582524190
+UniRef50_A3JSS4|unclassified	0.1582524190
+UniRef50_UPI00046A5360: GntR family transcriptional regulator	0.1582474908
+UniRef50_UPI00046A5360: GntR family transcriptional regulator|unclassified	0.1582474908
+UniRef50_UPI00037E0088: hypothetical protein	0.1582368579
+UniRef50_UPI00037E0088: hypothetical protein|unclassified	0.1582368579
+UniRef50_UPI00036E3263: hypothetical protein, partial	0.1582300515
+UniRef50_UPI00036E3263: hypothetical protein, partial|unclassified	0.1582300515
+UniRef50_UPI000364D448: hypothetical protein	0.1582287820
+UniRef50_UPI000364D448: hypothetical protein|unclassified	0.1582287820
+UniRef50_UPI000372E9F0: hypothetical protein	0.1582274209
+UniRef50_UPI000372E9F0: hypothetical protein|unclassified	0.1582274209
+UniRef50_F6AFJ3	0.1582226195
+UniRef50_F6AFJ3|unclassified	0.1582226195
+UniRef50_D0D708: ISSpo9, transposase	0.1582166681
+UniRef50_D0D708: ISSpo9, transposase|unclassified	0.1582166681
+UniRef50_UPI0003B5A96F: hypothetical protein	0.1581237401
+UniRef50_UPI0003B5A96F: hypothetical protein|unclassified	0.1581237401
+UniRef50_UPI000249160D: sensor histidine kinase	0.1581212641
+UniRef50_UPI000249160D: sensor histidine kinase|unclassified	0.1581212641
+UniRef50_Q040L6: Pyrrolidone-carboxylate peptidase	0.1581162760
+UniRef50_Q040L6: Pyrrolidone-carboxylate peptidase|unclassified	0.1581162760
+UniRef50_X7F7W6	0.1581009058
+UniRef50_X7F7W6|unclassified	0.1581009058
+UniRef50_UPI000474A923: N-acetylglucosamine-6-phosphate deacetylase	0.1580975995
+UniRef50_UPI000474A923: N-acetylglucosamine-6-phosphate deacetylase|unclassified	0.1580975995
+UniRef50_A9WSA8: Carbamoyl-phosphate synthase large chain	0.1580973716
+UniRef50_A9WSA8: Carbamoyl-phosphate synthase large chain|unclassified	0.1580973716
+UniRef50_P04040: Catalase	0.1580842162
+UniRef50_P04040: Catalase|unclassified	0.1580842162
+UniRef50_A0A011R0J1: GDP-L-fucose synthase	0.1580789788
+UniRef50_A0A011R0J1: GDP-L-fucose synthase|unclassified	0.1580789788
+UniRef50_F1LHT5: GTP-binding protein lepA	0.1580765963
+UniRef50_F1LHT5: GTP-binding protein lepA|unclassified	0.1580765963
+UniRef50_A0A034T9Q0	0.1580688500
+UniRef50_A0A034T9Q0|unclassified	0.1580688500
+UniRef50_X1DCS5: Marine sediment metagenome DNA, contig: S01H4_S15462	0.1580636268
+UniRef50_X1DCS5: Marine sediment metagenome DNA, contig: S01H4_S15462|unclassified	0.1580636268
+UniRef50_A4WYI8	0.1580593795
+UniRef50_A4WYI8|unclassified	0.1580593795
+UniRef50_UPI00035CB123: hypothetical protein	0.1580579646
+UniRef50_UPI00035CB123: hypothetical protein|unclassified	0.1580579646
+UniRef50_UPI0003A50DF1: hypothetical protein	0.1580111917
+UniRef50_UPI0003A50DF1: hypothetical protein|unclassified	0.1580111917
+UniRef50_UPI000412F481: hypothetical protein	0.1580104335
+UniRef50_UPI000412F481: hypothetical protein|unclassified	0.1580104335
+UniRef50_E5Y8Y5	0.1580070400
+UniRef50_E5Y8Y5|unclassified	0.1580070400
+UniRef50_UPI000363404F: MULTISPECIES: hypothetical protein	0.1579970943
+UniRef50_UPI000363404F: MULTISPECIES: hypothetical protein|unclassified	0.1579970943
+UniRef50_Q46D93: Acetylglutamate kinase	0.1579933031
+UniRef50_Q46D93: Acetylglutamate kinase|unclassified	0.1579933031
+UniRef50_UPI0002DA19B1: hypothetical protein	0.1579474534
+UniRef50_UPI0002DA19B1: hypothetical protein|unclassified	0.1579474534
+UniRef50_F0Y0E3: Expressed protein (Fragment)	0.1579314211
+UniRef50_F0Y0E3: Expressed protein (Fragment)|unclassified	0.1579314211
+UniRef50_UPI00045D969B: PREDICTED: splicing factor, arginine/serine-rich 19-like	0.1578903280
+UniRef50_UPI00045D969B: PREDICTED: splicing factor, arginine/serine-rich 19-like|unclassified	0.1578903280
+UniRef50_Q3JRY4	0.1578747145
+UniRef50_Q3JRY4|unclassified	0.1578747145
+UniRef50_V7ZEQ2: Phage-related baseplate assembly protein	0.1578550771
+UniRef50_V7ZEQ2: Phage-related baseplate assembly protein|unclassified	0.1578550771
+UniRef50_A0LK48: Cytidylate kinase	0.1578426021
+UniRef50_A0LK48: Cytidylate kinase|unclassified	0.1578426021
+UniRef50_D2R5X2	0.1578406091
+UniRef50_D2R5X2|unclassified	0.1578406091
+UniRef50_A6WKC8: UPF0246 protein Shew185_1115	0.1578333446
+UniRef50_A6WKC8: UPF0246 protein Shew185_1115|unclassified	0.1578333446
+UniRef50_C5M4C3: Predicted protein	0.1578170571
+UniRef50_C5M4C3: Predicted protein|unclassified	0.1578170571
+UniRef50_UPI000378074F: hypothetical protein, partial	0.1578141415
+UniRef50_UPI000378074F: hypothetical protein, partial|unclassified	0.1578141415
+UniRef50_W1HZL6	0.1577937350
+UniRef50_W1HZL6|unclassified	0.1577937350
+UniRef50_UPI0003B4577C: glycerophosphoryl diester phosphodiesterase	0.1577892981
+UniRef50_UPI0003B4577C: glycerophosphoryl diester phosphodiesterase|unclassified	0.1577892981
+UniRef50_UPI0003B332AD: methyltransferase	0.1577647111
+UniRef50_UPI0003B332AD: methyltransferase|unclassified	0.1577647111
+UniRef50_J7YFN8	0.1577590785
+UniRef50_J7YFN8|unclassified	0.1577590785
+UniRef50_P96060: 2-aminoethylphosphonate--pyruvate transaminase	0.1577437074
+UniRef50_P96060: 2-aminoethylphosphonate--pyruvate transaminase|unclassified	0.1577437074
+UniRef50_K9ARB7	0.1577359427
+UniRef50_K9ARB7|unclassified	0.1577359427
+UniRef50_UPI000377859E: hypothetical protein	0.1577333775
+UniRef50_UPI000377859E: hypothetical protein|unclassified	0.1577333775
+UniRef50_S7VZN7	0.1577318525
+UniRef50_S7VZN7|unclassified	0.1577318525
+UniRef50_UPI00037965EC: hypothetical protein	0.1577291545
+UniRef50_UPI00037965EC: hypothetical protein|unclassified	0.1577291545
+UniRef50_K0CEM4	0.1577269338
+UniRef50_K0CEM4|unclassified	0.1577269338
+UniRef50_M7XCW4: Sodium:solute symporter associated protein	0.1577262143
+UniRef50_M7XCW4: Sodium:solute symporter associated protein|unclassified	0.1577262143
+UniRef50_UPI000463F374: Fe-S protein	0.1577211658
+UniRef50_UPI000463F374: Fe-S protein|unclassified	0.1577211658
+UniRef50_Q9P2R7: Succinyl-CoA ligase [ADP-forming] subunit beta, mitochondrial	0.1577207624
+UniRef50_Q9P2R7: Succinyl-CoA ligase [ADP-forming] subunit beta, mitochondrial|unclassified	0.1577207624
+UniRef50_X5IS93	0.1577161045
+UniRef50_X5IS93|unclassified	0.1577161045
+UniRef50_Q98ET9: Usg protein-Caulobacter crescentus	0.1577091108
+UniRef50_Q98ET9: Usg protein-Caulobacter crescentus|unclassified	0.1577091108
+UniRef50_UPI0003B39AC9: hypothetical protein	0.1576892028
+UniRef50_UPI0003B39AC9: hypothetical protein|unclassified	0.1576892028
+UniRef50_Q8A1G8: Acetate kinase	0.1576767675
+UniRef50_Q8A1G8: Acetate kinase|unclassified	0.1576767675
+UniRef50_D3V1L9	0.1576701099
+UniRef50_D3V1L9|unclassified	0.1576701099
+UniRef50_B0RZT0: Adenylate kinase	0.1576475399
+UniRef50_B0RZT0: Adenylate kinase|unclassified	0.1576475399
+UniRef50_UPI00040C37BB: peptide chain release factor 3	0.1576394505
+UniRef50_UPI00040C37BB: peptide chain release factor 3|unclassified	0.1576394505
+UniRef50_L0SAB5: Fusion of IS1381 orf A and B	0.1576302848
+UniRef50_L0SAB5: Fusion of IS1381 orf A and B|unclassified	0.1576302848
+UniRef50_C7R9A6	0.1576045395
+UniRef50_C7R9A6|unclassified	0.1576045395
+UniRef50_UPI00035CBBF7: hypothetical protein	0.1576019749
+UniRef50_UPI00035CBBF7: hypothetical protein|unclassified	0.1576019749
+UniRef50_UPI00037D81C0: hypothetical protein	0.1575814641
+UniRef50_UPI00037D81C0: hypothetical protein|unclassified	0.1575814641
+UniRef50_UPI00047DD927: damage-inducible protein CinA	0.1575659146
+UniRef50_UPI00047DD927: damage-inducible protein CinA|unclassified	0.1575659146
+UniRef50_UPI000462949C: hypothetical protein	0.1575549524
+UniRef50_UPI000462949C: hypothetical protein|unclassified	0.1575549524
+UniRef50_K1ZX87	0.1575426219
+UniRef50_K1ZX87|unclassified	0.1575426219
+UniRef50_UPI00047B26FB: glyoxalase	0.1575260964
+UniRef50_UPI00047B26FB: glyoxalase|unclassified	0.1575260964
+UniRef50_X2H729: Lysine decarboxylase family	0.1575202435
+UniRef50_X2H729: Lysine decarboxylase family|unclassified	0.1575202435
+UniRef50_U1HV48	0.1575165087
+UniRef50_U1HV48|unclassified	0.1575165087
+UniRef50_K7E2E1	0.1575100171
+UniRef50_K7E2E1|unclassified	0.1575100171
+UniRef50_A9WWI1: Crossover junction endodeoxyribonuclease RuvC	0.1575067422
+UniRef50_A9WWI1: Crossover junction endodeoxyribonuclease RuvC|unclassified	0.1575067422
+UniRef50_UPI00039E17CB: sodium:calcium antiporter	0.1575050433
+UniRef50_UPI00039E17CB: sodium:calcium antiporter|unclassified	0.1575050433
+UniRef50_UPI0003B3DF34: peptidase	0.1575044104
+UniRef50_UPI0003B3DF34: peptidase|unclassified	0.1575044104
+UniRef50_U1E7I8	0.1575000490
+UniRef50_U1E7I8|unclassified	0.1575000490
+UniRef50_UPI0003824623: hypothetical protein	0.1574992870
+UniRef50_UPI0003824623: hypothetical protein|unclassified	0.1574992870
+UniRef50_M9RSJ5: Putative IS66 family mobile element ORF2-like protein	0.1574962100
+UniRef50_M9RSJ5: Putative IS66 family mobile element ORF2-like protein|unclassified	0.1574962100
+UniRef50_UPI000468F00D: PEP synthetase regulatory protein	0.1574927582
+UniRef50_UPI000468F00D: PEP synthetase regulatory protein|unclassified	0.1574927582
+UniRef50_P51599: GTP cyclohydrolase 1	0.1574826919
+UniRef50_P51599: GTP cyclohydrolase 1|unclassified	0.1574826919
+UniRef50_UPI0003B73669: ATP-dependent protease	0.1574816726
+UniRef50_UPI0003B73669: ATP-dependent protease|unclassified	0.1574816726
+UniRef50_N8BB20	0.1574734432
+UniRef50_N8BB20|unclassified	0.1574734432
+UniRef50_UPI0003C13152	0.1574661270
+UniRef50_UPI0003C13152|unclassified	0.1574661270
+UniRef50_A7HMP1: S-adenosylmethionine decarboxylase proenzyme	0.1574560349
+UniRef50_A7HMP1: S-adenosylmethionine decarboxylase proenzyme|unclassified	0.1574560349
+UniRef50_UPI0004728867: hypothetical protein	0.1574498332
+UniRef50_UPI0004728867: hypothetical protein|unclassified	0.1574498332
+UniRef50_A7MH45	0.1574160599
+UniRef50_A7MH45|unclassified	0.1574160599
+UniRef50_Q1YFC9: Possible OstA family protein	0.1574155196
+UniRef50_Q1YFC9: Possible OstA family protein|unclassified	0.1574155196
+UniRef50_F4H0U7	0.1574075973
+UniRef50_F4H0U7|unclassified	0.1574075973
+UniRef50_UPI0003796BA8: hypothetical protein	0.1574065849
+UniRef50_UPI0003796BA8: hypothetical protein|unclassified	0.1574065849
+UniRef50_W0ABQ7	0.1573985014
+UniRef50_W0ABQ7|unclassified	0.1573985014
+UniRef50_X0YTR7: Marine sediment metagenome DNA, contig: S01H4_L00468 (Fragment)	0.1573980231
+UniRef50_X0YTR7: Marine sediment metagenome DNA, contig: S01H4_L00468 (Fragment)|unclassified	0.1573980231
+UniRef50_B3PNT4: UPF0262 protein RHECIAT_CH0000657	0.1573946841
+UniRef50_B3PNT4: UPF0262 protein RHECIAT_CH0000657|unclassified	0.1573946841
+UniRef50_UPI000463AEFD: ammonia monooxygenase	0.1573933762
+UniRef50_UPI000463AEFD: ammonia monooxygenase|unclassified	0.1573933762
+UniRef50_S9QX63	0.1573917036
+UniRef50_S9QX63|unclassified	0.1573917036
+UniRef50_UPI00037A114F: hypothetical protein, partial	0.1573824221
+UniRef50_UPI00037A114F: hypothetical protein, partial|unclassified	0.1573824221
+UniRef50_P50186: NaeI very short patch repair endonuclease	0.1573682076
+UniRef50_P50186: NaeI very short patch repair endonuclease|unclassified	0.1573682076
+UniRef50_UPI0003F05D85: PREDICTED: 3''''-5'''' exoribonuclease 1-like	0.1573525359
+UniRef50_UPI0003F05D85: PREDICTED: 3''''-5'''' exoribonuclease 1-like|unclassified	0.1573525359
+UniRef50_Q8D820: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase	0.1573521726
+UniRef50_Q8D820: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase|unclassified	0.1573521726
+UniRef50_UPI00047A5E1C: N-acetylmannosaminyltransferase	0.1573498292
+UniRef50_UPI00047A5E1C: N-acetylmannosaminyltransferase|unclassified	0.1573498292
+UniRef50_UPI00046BB579	0.1573440535
+UniRef50_UPI00046BB579|unclassified	0.1573440535
+UniRef50_A0A031GY82: EVE domain containing protein	0.1573299184
+UniRef50_A0A031GY82: EVE domain containing protein|unclassified	0.1573299184
+UniRef50_UPI0003AF0828: PREDICTED: collagen alpha-1(III) chain-like	0.1573201368
+UniRef50_UPI0003AF0828: PREDICTED: collagen alpha-1(III) chain-like|unclassified	0.1573201368
+UniRef50_UPI0003B77FDC: peptidyl-tRNA hydrolase	0.1573170894
+UniRef50_UPI0003B77FDC: peptidyl-tRNA hydrolase|unclassified	0.1573170894
+UniRef50_UPI0003FE0ED1: hypothetical protein	0.1573103867
+UniRef50_UPI0003FE0ED1: hypothetical protein|unclassified	0.1573103867
+UniRef50_UPI0003B4612F: hypothetical protein	0.1573056365
+UniRef50_UPI0003B4612F: hypothetical protein|unclassified	0.1573056365
+UniRef50_G4R6U6: YciL protein	0.1572970795
+UniRef50_G4R6U6: YciL protein|unclassified	0.1572970795
+UniRef50_UPI00029B2684: D-gluconate kinase	0.1572953260
+UniRef50_UPI00029B2684: D-gluconate kinase|unclassified	0.1572953260
+UniRef50_UPI000365C5B2: hypothetical protein	0.1572873085
+UniRef50_UPI000365C5B2: hypothetical protein|unclassified	0.1572873085
+UniRef50_B9J031	0.1572697897
+UniRef50_B9J031|unclassified	0.1572697897
+UniRef50_UPI00036F2F70: hypothetical protein	0.1572602004
+UniRef50_UPI00036F2F70: hypothetical protein|unclassified	0.1572602004
+UniRef50_Q9RSY5: Thymidine kinase	0.1572555190
+UniRef50_Q9RSY5: Thymidine kinase|unclassified	0.1572555190
+UniRef50_E5V4W8	0.1572522126
+UniRef50_E5V4W8|unclassified	0.1572522126
+UniRef50_UPI0004707CA7: hypothetical protein	0.1572447428
+UniRef50_UPI0004707CA7: hypothetical protein|unclassified	0.1572447428
+UniRef50_UPI0003C10FC0	0.1572437778
+UniRef50_UPI0003C10FC0|unclassified	0.1572437778
+UniRef50_O08399: DNA gyrase subunit B	0.1572118071
+UniRef50_O08399: DNA gyrase subunit B|unclassified	0.1572118071
+UniRef50_U6K160	0.1571912769
+UniRef50_U6K160|unclassified	0.1571912769
+UniRef50_T0SCX8	0.1571909597
+UniRef50_T0SCX8|unclassified	0.1571909597
+UniRef50_S9RSY5: Tellurite resistance protein (TelA)	0.1571869176
+UniRef50_S9RSY5: Tellurite resistance protein (TelA)|unclassified	0.1571869176
+UniRef50_UPI00046643A1: hypothetical protein	0.1571628142
+UniRef50_UPI00046643A1: hypothetical protein|unclassified	0.1571628142
+UniRef50_UPI000378145E: hypothetical protein	0.1571621568
+UniRef50_UPI000378145E: hypothetical protein|unclassified	0.1571621568
+UniRef50_W9VFI4: ABC-type enterochelin transport system, ATPase component	0.1571616701
+UniRef50_W9VFI4: ABC-type enterochelin transport system, ATPase component|unclassified	0.1571616701
+UniRef50_R6N3Y6	0.1571486250
+UniRef50_R6N3Y6|unclassified	0.1571486250
+UniRef50_Q0BMK6: S-adenosylmethionine:tRNA ribosyltransferase-isomerase	0.1571449579
+UniRef50_Q0BMK6: S-adenosylmethionine:tRNA ribosyltransferase-isomerase|unclassified	0.1571449579
+UniRef50_X5MEJ3	0.1571409641
+UniRef50_X5MEJ3|unclassified	0.1571409641
+UniRef50_E2RPM1	0.1571328032
+UniRef50_E2RPM1|unclassified	0.1571328032
+UniRef50_UPI0003B74BB0: Na(+)-translocating NADH-quinone reductase subunit A	0.1571310757
+UniRef50_UPI0003B74BB0: Na(+)-translocating NADH-quinone reductase subunit A|unclassified	0.1571310757
+UniRef50_UPI0003701881: hypothetical protein	0.1571294541
+UniRef50_UPI0003701881: hypothetical protein|unclassified	0.1571294541
+UniRef50_B2JED1: 6,7-dimethyl-8-ribityllumazine synthase	0.1571184941
+UniRef50_B2JED1: 6,7-dimethyl-8-ribityllumazine synthase|unclassified	0.1571184941
+UniRef50_UPI00037329E4: hypothetical protein	0.1571164164
+UniRef50_UPI00037329E4: hypothetical protein|unclassified	0.1571164164
+UniRef50_P15689: NADH-ubiquinone oxidoreductase 49 kDa subunit	0.1571048439
+UniRef50_P15689: NADH-ubiquinone oxidoreductase 49 kDa subunit|unclassified	0.1571048439
+UniRef50_U2TU65: Pkn9 associate protein 1	0.1571032998
+UniRef50_U2TU65: Pkn9 associate protein 1|unclassified	0.1571032998
+UniRef50_UPI00038130B3: hypothetical protein	0.1571026299
+UniRef50_UPI00038130B3: hypothetical protein|unclassified	0.1571026299
+UniRef50_S9S7R4	0.1570944348
+UniRef50_S9S7R4|unclassified	0.1570944348
+UniRef50_UPI0004729281: inositol monophosphatase	0.1570916978
+UniRef50_UPI0004729281: inositol monophosphatase|unclassified	0.1570916978
+UniRef50_UPI00031A53C3: hypothetical protein	0.1570893677
+UniRef50_UPI00031A53C3: hypothetical protein|unclassified	0.1570893677
+UniRef50_U3AUS9: Transcriptional regulator, XRE family	0.1570840355
+UniRef50_U3AUS9: Transcriptional regulator, XRE family|unclassified	0.1570840355
+UniRef50_A7GRY9: UPF0223 protein Bcer98_2663	0.1570724937
+UniRef50_A7GRY9: UPF0223 protein Bcer98_2663|unclassified	0.1570724937
+UniRef50_UPI00046FEA0F: hypothetical protein, partial	0.1570711836
+UniRef50_UPI00046FEA0F: hypothetical protein, partial|unclassified	0.1570711836
+UniRef50_UPI0003695FD6: membrane protein	0.1570523250
+UniRef50_UPI0003695FD6: membrane protein|unclassified	0.1570523250
+UniRef50_UPI0004743F92: GMP synthase, partial	0.1570426205
+UniRef50_UPI0004743F92: GMP synthase, partial|unclassified	0.1570426205
+UniRef50_UPI00037DF951: hypothetical protein	0.1570410839
+UniRef50_UPI00037DF951: hypothetical protein|unclassified	0.1570410839
+UniRef50_Q3SNY6: UPF0301 protein Nwi_2752	0.1570366522
+UniRef50_Q3SNY6: UPF0301 protein Nwi_2752|unclassified	0.1570366522
+UniRef50_B8DVI9: Uracil phosphoribosyltransferase	0.1570307415
+UniRef50_B8DVI9: Uracil phosphoribosyltransferase|unclassified	0.1570307415
+UniRef50_UPI0001C193FA: hypothetical protein	0.1570283654
+UniRef50_UPI0001C193FA: hypothetical protein|unclassified	0.1570283654
+UniRef50_UPI00037D0E25: hypothetical protein, partial	0.1570171245
+UniRef50_UPI00037D0E25: hypothetical protein, partial|unclassified	0.1570171245
+UniRef50_UPI00047841C3: aminopeptidase	0.1569870813
+UniRef50_UPI00047841C3: aminopeptidase|unclassified	0.1569870813
+UniRef50_Q28QF9: Hemin import ATP-binding protein HmuV	0.1569751559
+UniRef50_Q28QF9: Hemin import ATP-binding protein HmuV|unclassified	0.1569751559
+UniRef50_UPI00046ED1E9: ABC transporter permease	0.1569737447
+UniRef50_UPI00046ED1E9: ABC transporter permease|unclassified	0.1569737447
+UniRef50_UPI000398F226: PREDICTED: mucin-5AC-like	0.1569684992
+UniRef50_UPI000398F226: PREDICTED: mucin-5AC-like|unclassified	0.1569684992
+UniRef50_UPI000475010A: CoA-transferase	0.1569605486
+UniRef50_UPI000475010A: CoA-transferase|unclassified	0.1569605486
+UniRef50_F2AG40	0.1569512946
+UniRef50_F2AG40|unclassified	0.1569512946
+UniRef50_UPI00047BD9B6: hypothetical protein	0.1569501898
+UniRef50_UPI00047BD9B6: hypothetical protein|unclassified	0.1569501898
+UniRef50_C5D4Z1: Putative Holliday junction resolvase	0.1569494721
+UniRef50_C5D4Z1: Putative Holliday junction resolvase|unclassified	0.1569494721
+UniRef50_UPI0002490138: dipeptide-binding protein DppE	0.1569286910
+UniRef50_UPI0002490138: dipeptide-binding protein DppE|unclassified	0.1569286910
+UniRef50_UPI000362104F: hypothetical protein	0.1569230257
+UniRef50_UPI000362104F: hypothetical protein|unclassified	0.1569230257
+UniRef50_UPI00037C05D9: hypothetical protein	0.1569211019
+UniRef50_UPI00037C05D9: hypothetical protein|unclassified	0.1569211019
+UniRef50_U4Q5R2: Lytic murein transglycosylase	0.1569153278
+UniRef50_U4Q5R2: Lytic murein transglycosylase|unclassified	0.1569153278
+UniRef50_Q67KF8: Phosphoribosylformylglycinamidine synthase 2	0.1569007923
+UniRef50_Q67KF8: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.1569007923
+UniRef50_K8CVY3: ClpB protein	0.1568931849
+UniRef50_K8CVY3: ClpB protein|unclassified	0.1568931849
+UniRef50_UPI000472A183: methyltransferase	0.1568526894
+UniRef50_UPI000472A183: methyltransferase|unclassified	0.1568526894
+UniRef50_Q2QHJ4: Transketolase 1 isozyme (Fragment)	0.1568410464
+UniRef50_Q2QHJ4: Transketolase 1 isozyme (Fragment)|unclassified	0.1568410464
+UniRef50_D5PCT4: Transglycosylase associated protein	0.1568360106
+UniRef50_D5PCT4: Transglycosylase associated protein|unclassified	0.1568360106
+UniRef50_UPI0002E0BEDB: hypothetical protein	0.1568341517
+UniRef50_UPI0002E0BEDB: hypothetical protein|unclassified	0.1568341517
+UniRef50_UPI0002E9DAE2: hypothetical protein	0.1568256440
+UniRef50_UPI0002E9DAE2: hypothetical protein|unclassified	0.1568256440
+UniRef50_Q7UUW5: UPF0145 protein RB3016	0.1568225428
+UniRef50_Q7UUW5: UPF0145 protein RB3016|unclassified	0.1568225428
+UniRef50_UPI0002E8080B: hypothetical protein	0.1568199130
+UniRef50_UPI0002E8080B: hypothetical protein|unclassified	0.1568199130
+UniRef50_UPI000476E737: 16S rRNA methyltransferase	0.1568171111
+UniRef50_UPI000476E737: 16S rRNA methyltransferase|unclassified	0.1568171111
+UniRef50_Q890M4: Cysteine--tRNA ligase	0.1568037056
+UniRef50_Q890M4: Cysteine--tRNA ligase|unclassified	0.1568037056
+UniRef50_UPI0004727F6C: major facilitator transporter	0.1568010721
+UniRef50_UPI0004727F6C: major facilitator transporter|unclassified	0.1568010721
+UniRef50_UPI00025579AA: hypothetical protein	0.1567918193
+UniRef50_UPI00025579AA: hypothetical protein|unclassified	0.1567918193
+UniRef50_UPI000464DFD5: hypothetical protein	0.1567918193
+UniRef50_UPI000464DFD5: hypothetical protein|unclassified	0.1567918193
+UniRef50_Q3A8X5: Ribosomal RNA small subunit methyltransferase A	0.1567727418
+UniRef50_Q3A8X5: Ribosomal RNA small subunit methyltransferase A|unclassified	0.1567727418
+UniRef50_UPI000248DDD1: sugar ABC transporter permease	0.1567577195
+UniRef50_UPI000248DDD1: sugar ABC transporter permease|unclassified	0.1567577195
+UniRef50_UPI000468E0D7: peptidase U35	0.1567559250
+UniRef50_UPI000468E0D7: peptidase U35|unclassified	0.1567559250
+UniRef50_Q6CGD7: YALI0A20174p	0.1567213810
+UniRef50_Q6CGD7: YALI0A20174p|unclassified	0.1567213810
+UniRef50_P39071: 2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase	0.1567208293
+UniRef50_P39071: 2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase|unclassified	0.1567208293
+UniRef50_UPI000375F210: anti-anti-sigma factor	0.1567196642
+UniRef50_UPI000375F210: anti-anti-sigma factor|unclassified	0.1567196642
+UniRef50_A6L4N0: 2-aminoethylphosphonate--pyruvate transaminase	0.1567133274
+UniRef50_A6L4N0: 2-aminoethylphosphonate--pyruvate transaminase|unclassified	0.1567133274
+UniRef50_UPI00029A9C8A	0.1567089878
+UniRef50_UPI00029A9C8A|unclassified	0.1567089878
+UniRef50_C1MSW0: Predicted protein	0.1566962795
+UniRef50_C1MSW0: Predicted protein|unclassified	0.1566962795
+UniRef50_UPI0004215E13: signal peptidase I	0.1566954566
+UniRef50_UPI0004215E13: signal peptidase I|unclassified	0.1566954566
+UniRef50_UPI0002558FAC: high-affinity zinc transporter periplasmic component	0.1566814258
+UniRef50_UPI0002558FAC: high-affinity zinc transporter periplasmic component|unclassified	0.1566814258
+UniRef50_F2D4Y5: Predicted protein (Fragment)	0.1566808505
+UniRef50_F2D4Y5: Predicted protein (Fragment)|unclassified	0.1566808505
+UniRef50_A9M9V6: NAD-specific glutamate dehydrogenase	0.1566766333
+UniRef50_A9M9V6: NAD-specific glutamate dehydrogenase|unclassified	0.1566766333
+UniRef50_UPI000381D8C1: hypothetical protein	0.1566755855
+UniRef50_UPI000381D8C1: hypothetical protein|unclassified	0.1566755855
+UniRef50_UPI00036BAFAD: hypothetical protein	0.1566747823
+UniRef50_UPI00036BAFAD: hypothetical protein|unclassified	0.1566747823
+UniRef50_X0QNA5: ATPase component of general energizing module of ECF transporters	0.1566724017
+UniRef50_X0QNA5: ATPase component of general energizing module of ECF transporters|unclassified	0.1566724017
+UniRef50_R1AXT6	0.1566686763
+UniRef50_R1AXT6|unclassified	0.1566686763
+UniRef50_UPI0004636A39: ribulose-phosphate 3-epimerase	0.1566613418
+UniRef50_UPI0004636A39: ribulose-phosphate 3-epimerase|unclassified	0.1566613418
+UniRef50_UPI00047AEF1D: dephospho-CoA kinase	0.1566508008
+UniRef50_UPI00047AEF1D: dephospho-CoA kinase|unclassified	0.1566508008
+UniRef50_E3F4F2	0.1566476270
+UniRef50_E3F4F2|unclassified	0.1566476270
+UniRef50_Q1QII0	0.1566230077
+UniRef50_Q1QII0|unclassified	0.1566230077
+UniRef50_A0A024DSN7: Membrane associated protein	0.1566199895
+UniRef50_A0A024DSN7: Membrane associated protein|unclassified	0.1566199895
+UniRef50_UPI0002E69439: hypothetical protein	0.1566139418
+UniRef50_UPI0002E69439: hypothetical protein|unclassified	0.1566139418
+UniRef50_C3X191	0.1565960701
+UniRef50_C3X191|unclassified	0.1565960701
+UniRef50_F7ZHN3	0.1565839206
+UniRef50_F7ZHN3|unclassified	0.1565839206
+UniRef50_F3GLA1	0.1565746797
+UniRef50_F3GLA1|unclassified	0.1565746797
+UniRef50_I2C1F3: Inhibition of the autophosphorylation reaction of KinA	0.1565714464
+UniRef50_I2C1F3: Inhibition of the autophosphorylation reaction of KinA|unclassified	0.1565714464
+UniRef50_UPI0003B5ECA2: DNA-directed RNA polymerase subunit omega	0.1565662645
+UniRef50_UPI0003B5ECA2: DNA-directed RNA polymerase subunit omega|unclassified	0.1565662645
+UniRef50_Q73HV5: Glutamate--tRNA ligase 1	0.1565621266
+UniRef50_Q73HV5: Glutamate--tRNA ligase 1|unclassified	0.1565621266
+UniRef50_Q7VRM5: Diaminopimelate epimerase	0.1565484867
+UniRef50_Q7VRM5: Diaminopimelate epimerase|unclassified	0.1565484867
+UniRef50_W5XTT8	0.1565451095
+UniRef50_W5XTT8|unclassified	0.1565451095
+UniRef50_X7F5H4	0.1565447015
+UniRef50_X7F5H4|unclassified	0.1565447015
+UniRef50_UPI0003B42AB6: damage-inducible protein	0.1565365125
+UniRef50_UPI0003B42AB6: damage-inducible protein|unclassified	0.1565365125
+UniRef50_M4G361	0.1565170155
+UniRef50_M4G361|unclassified	0.1565170155
+UniRef50_UPI0003B4DFFC: 50S ribosomal protein L18	0.1565168318
+UniRef50_UPI0003B4DFFC: 50S ribosomal protein L18|unclassified	0.1565168318
+UniRef50_UPI000050F88B: asparaginase	0.1564844735
+UniRef50_UPI000050F88B: asparaginase|unclassified	0.1564844735
+UniRef50_UPI00036F52B7: hypothetical protein	0.1564765476
+UniRef50_UPI00036F52B7: hypothetical protein|unclassified	0.1564765476
+UniRef50_A3DP41: NH(3)-dependent NAD(+) synthetase	0.1564688066
+UniRef50_A3DP41: NH(3)-dependent NAD(+) synthetase|unclassified	0.1564688066
+UniRef50_UPI000474CEA6: cytochrome C biogenesis protein CcmE, partial	0.1564590452
+UniRef50_UPI000474CEA6: cytochrome C biogenesis protein CcmE, partial|unclassified	0.1564590452
+UniRef50_D5RPK9	0.1564580692
+UniRef50_D5RPK9|unclassified	0.1564580692
+UniRef50_C0W8P9	0.1564541410
+UniRef50_C0W8P9|unclassified	0.1564541410
+UniRef50_UPI0003B6FDF2: flagellar biosynthesis protein FliP	0.1564361303
+UniRef50_UPI0003B6FDF2: flagellar biosynthesis protein FliP|unclassified	0.1564361303
+UniRef50_UPI000367F04F: potassium-transporting ATPase subunit A	0.1564055028
+UniRef50_UPI000367F04F: potassium-transporting ATPase subunit A|unclassified	0.1564055028
+UniRef50_Q0APK9	0.1563771472
+UniRef50_Q0APK9|unclassified	0.1563771472
+UniRef50_UPI000470CDA4: tryptophan synthase subunit alpha	0.1563760041
+UniRef50_UPI000470CDA4: tryptophan synthase subunit alpha|unclassified	0.1563760041
+UniRef50_E8U983: GAF domain protein	0.1563626631
+UniRef50_E8U983: GAF domain protein|unclassified	0.1563626631
+UniRef50_A0A037YUC7: Peptidase, M56 family	0.1563591578
+UniRef50_A0A037YUC7: Peptidase, M56 family|unclassified	0.1563591578
+UniRef50_UPI00031CD3FF: hypothetical protein	0.1563575713
+UniRef50_UPI00031CD3FF: hypothetical protein|unclassified	0.1563575713
+UniRef50_W9A4Q2	0.1563485848
+UniRef50_W9A4Q2|unclassified	0.1563485848
+UniRef50_J7N103: Cell wall surface anchor family protein (LPXTG motif)	0.1563448793
+UniRef50_J7N103: Cell wall surface anchor family protein (LPXTG motif)|unclassified	0.1563448793
+UniRef50_UPI000465532B: cystathionine gamma-synthase	0.1563443904
+UniRef50_UPI000465532B: cystathionine gamma-synthase|unclassified	0.1563443904
+UniRef50_UPI00040205B3: hypothetical protein	0.1563376085
+UniRef50_UPI00040205B3: hypothetical protein|unclassified	0.1563376085
+UniRef50_UPI0003AF1E76: PREDICTED: vegetative cell wall protein gp1-like	0.1563306696
+UniRef50_UPI0003AF1E76: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.1563306696
+UniRef50_A0A018B251	0.1563291495
+UniRef50_A0A018B251|unclassified	0.1563291495
+UniRef50_W5XBG0: Leucyl/phenylalanyl-tRNA--protein transferase	0.1563164468
+UniRef50_W5XBG0: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.1563164468
+UniRef50_X0YES7: Marine sediment metagenome DNA, contig: S01H1_S35530 (Fragment)	0.1562905631
+UniRef50_X0YES7: Marine sediment metagenome DNA, contig: S01H1_S35530 (Fragment)|unclassified	0.1562905631
+UniRef50_UPI0003FDB00F: hypothetical protein	0.1562871742
+UniRef50_UPI0003FDB00F: hypothetical protein|unclassified	0.1562871742
+UniRef50_UPI00046E93BA: Holliday junction resolvase	0.1562755171
+UniRef50_UPI00046E93BA: Holliday junction resolvase|unclassified	0.1562755171
+UniRef50_UPI0003607777: hypothetical protein, partial	0.1562717333
+UniRef50_UPI0003607777: hypothetical protein, partial|unclassified	0.1562717333
+UniRef50_D9XC46: Integral membrane protein	0.1562632370
+UniRef50_D9XC46: Integral membrane protein|unclassified	0.1562632370
+UniRef50_UPI00047018E8: hypothetical protein	0.1562483707
+UniRef50_UPI00047018E8: hypothetical protein|unclassified	0.1562483707
+UniRef50_UPI0003B40293: hypothetical protein	0.1562435644
+UniRef50_UPI0003B40293: hypothetical protein|unclassified	0.1562435644
+UniRef50_UPI0003B5B399: BCCT transporter	0.1562318520
+UniRef50_UPI0003B5B399: BCCT transporter|unclassified	0.1562318520
+UniRef50_UPI0003B760AC: citrate synthase, partial	0.1562296227
+UniRef50_UPI0003B760AC: citrate synthase, partial|unclassified	0.1562296227
+UniRef50_X0SJV0: Marine sediment metagenome DNA, contig: S01H1_L05490 (Fragment)	0.1562276435
+UniRef50_X0SJV0: Marine sediment metagenome DNA, contig: S01H1_L05490 (Fragment)|unclassified	0.1562276435
+UniRef50_M4EPP1	0.1562265105
+UniRef50_M4EPP1|unclassified	0.1562265105
+UniRef50_UPI0004697DC4: hypothetical protein	0.1562233349
+UniRef50_UPI0004697DC4: hypothetical protein|unclassified	0.1562233349
+UniRef50_UPI000262A471: transcriptional regulator	0.1562117834
+UniRef50_UPI000262A471: transcriptional regulator|unclassified	0.1562117834
+UniRef50_X6L121: Flp pilus assembly protein CpaE (Fragment)	0.1562010020
+UniRef50_X6L121: Flp pilus assembly protein CpaE (Fragment)|unclassified	0.1562010020
+UniRef50_R5BZK4	0.1561896250
+UniRef50_R5BZK4|unclassified	0.1561896250
+UniRef50_UPI00035D38ED: MULTISPECIES: hypothetical protein	0.1561819326
+UniRef50_UPI00035D38ED: MULTISPECIES: hypothetical protein|unclassified	0.1561819326
+UniRef50_UPI0003810CDE: hypothetical protein, partial	0.1561751361
+UniRef50_UPI0003810CDE: hypothetical protein, partial|unclassified	0.1561751361
+UniRef50_UPI0003614932: hypothetical protein	0.1561512752
+UniRef50_UPI0003614932: hypothetical protein|unclassified	0.1561512752
+UniRef50_D0IWU5	0.1561204063
+UniRef50_D0IWU5|unclassified	0.1561204063
+UniRef50_I3YWE8: Threonine dehydratase	0.1561178270
+UniRef50_I3YWE8: Threonine dehydratase|unclassified	0.1561178270
+UniRef50_UPI00026CA0DF: carbamoyl-phosphate synthase subunit L, partial	0.1561077628
+UniRef50_UPI00026CA0DF: carbamoyl-phosphate synthase subunit L, partial|unclassified	0.1561077628
+UniRef50_UPI000472FB1A: Xaa-Pro aminopeptidase	0.1560999939
+UniRef50_UPI000472FB1A: Xaa-Pro aminopeptidase|unclassified	0.1560999939
+UniRef50_C5AWD1	0.1560781475
+UniRef50_C5AWD1|unclassified	0.1560781475
+UniRef50_UPI0004687877: hypothetical protein	0.1560769217
+UniRef50_UPI0004687877: hypothetical protein|unclassified	0.1560769217
+UniRef50_Q8VNT5	0.1560758954
+UniRef50_Q8VNT5|unclassified	0.1560758954
+UniRef50_UPI0004633E56: cytochrome C biogenesis protein, partial	0.1560684007
+UniRef50_UPI0004633E56: cytochrome C biogenesis protein, partial|unclassified	0.1560684007
+UniRef50_Q2BMK0	0.1560660853
+UniRef50_Q2BMK0|unclassified	0.1560660853
+UniRef50_Q7MLR9: UPF0225 protein VV1358	0.1560640977
+UniRef50_Q7MLR9: UPF0225 protein VV1358|unclassified	0.1560640977
+UniRef50_UPI0002490BAD: competence damage-inducible protein A	0.1560493105
+UniRef50_UPI0002490BAD: competence damage-inducible protein A|unclassified	0.1560493105
+UniRef50_UPI00046BB227: PREDICTED: hydroxyethylthiazole kinase-like	0.1560331899
+UniRef50_UPI00046BB227: PREDICTED: hydroxyethylthiazole kinase-like|unclassified	0.1560331899
+UniRef50_UPI00047EFD30: hypothetical protein	0.1560315884
+UniRef50_UPI00047EFD30: hypothetical protein|unclassified	0.1560315884
+UniRef50_K0DJ37: 3-oxoadipate enol-lactonase	0.1560275504
+UniRef50_K0DJ37: 3-oxoadipate enol-lactonase|unclassified	0.1560275504
+UniRef50_UPI000475CB6C: methionine synthase	0.1559932353
+UniRef50_UPI000475CB6C: methionine synthase|unclassified	0.1559932353
+UniRef50_Y8LVH6: ABC transporter, permease	0.1559925627
+UniRef50_Y8LVH6: ABC transporter, permease|unclassified	0.1559925627
+UniRef50_A2RNS4	0.1559860800
+UniRef50_A2RNS4|unclassified	0.1559860800
+UniRef50_Q9KN37: Ribose import ATP-binding protein RbsA	0.1559834055
+UniRef50_Q9KN37: Ribose import ATP-binding protein RbsA|unclassified	0.1559834055
+UniRef50_Q92210: Phosphoribosylaminoimidazole carboxylase	0.1559788536
+UniRef50_Q92210: Phosphoribosylaminoimidazole carboxylase|unclassified	0.1559788536
+UniRef50_A5DQQ1	0.1559714283
+UniRef50_A5DQQ1|unclassified	0.1559714283
+UniRef50_P19672: Putative rRNA methyltransferase YqxC	0.1559684233
+UniRef50_P19672: Putative rRNA methyltransferase YqxC|unclassified	0.1559684233
+UniRef50_UPI0003823048: hypothetical protein	0.1559615451
+UniRef50_UPI0003823048: hypothetical protein|unclassified	0.1559615451
+UniRef50_J6TF68: Phage portal protein, HK97 family	0.1559594127
+UniRef50_J6TF68: Phage portal protein, HK97 family|unclassified	0.1559594127
+UniRef50_A4FIA9	0.1559539525
+UniRef50_A4FIA9|unclassified	0.1559539525
+UniRef50_Q221I1: Chemotaxis response regulator protein-glutamate methylesterase 1	0.1559478371
+UniRef50_Q221I1: Chemotaxis response regulator protein-glutamate methylesterase 1|unclassified	0.1559478371
+UniRef50_UPI0003F05B1B: PREDICTED: cationic amino acid transporter 4-like	0.1559176192
+UniRef50_UPI0003F05B1B: PREDICTED: cationic amino acid transporter 4-like|unclassified	0.1559176192
+UniRef50_Q9F9J0: Hypothetical CdoFa	0.1559011682
+UniRef50_Q9F9J0: Hypothetical CdoFa|unclassified	0.1559011682
+UniRef50_X6L6H4	0.1558949678
+UniRef50_X6L6H4|unclassified	0.1558949678
+UniRef50_G7DQZ4	0.1558891866
+UniRef50_G7DQZ4|unclassified	0.1558891866
+UniRef50_UPI000476756C: acyl-CoA thioesterase	0.1558883620
+UniRef50_UPI000476756C: acyl-CoA thioesterase|unclassified	0.1558883620
+UniRef50_Q04DM7: 3-oxoacyl-[acyl-carrier-protein] synthase 3	0.1558726442
+UniRef50_Q04DM7: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	0.1558726442
+UniRef50_T0TXS8: Substrate-specific component of predicted cobalamin ECF transporter	0.1558635509
+UniRef50_T0TXS8: Substrate-specific component of predicted cobalamin ECF transporter|unclassified	0.1558635509
+UniRef50_F3C6B8	0.1558540640
+UniRef50_F3C6B8|unclassified	0.1558540640
+UniRef50_UPI00037516DE: O-acetylhomoserine (thiol)-lyase, partial	0.1558514679
+UniRef50_UPI00037516DE: O-acetylhomoserine (thiol)-lyase, partial|unclassified	0.1558514679
+UniRef50_I8U9Q7	0.1558488861
+UniRef50_I8U9Q7|unclassified	0.1558488861
+UniRef50_R4LV36	0.1558392903
+UniRef50_R4LV36|unclassified	0.1558392903
+UniRef50_UPI0000557739: hypothetical protein	0.1558328389
+UniRef50_UPI0000557739: hypothetical protein|unclassified	0.1558328389
+UniRef50_UPI0003B3F639: thioredoxin	0.1558326733
+UniRef50_UPI0003B3F639: thioredoxin|unclassified	0.1558326733
+UniRef50_UPI0001E89D91: Transcriptional regulator of sugar metabolism	0.1558126911
+UniRef50_UPI0001E89D91: Transcriptional regulator of sugar metabolism|unclassified	0.1558126911
+UniRef50_A3T3C2	0.1557987287
+UniRef50_A3T3C2|unclassified	0.1557987287
+UniRef50_UPI00029AEFE9: DNA topoisomerase I subunit omega	0.1557885863
+UniRef50_UPI00029AEFE9: DNA topoisomerase I subunit omega|unclassified	0.1557885863
+UniRef50_UPI00030C79EC: hypothetical protein	0.1557863120
+UniRef50_UPI00030C79EC: hypothetical protein|unclassified	0.1557863120
+UniRef50_J3PLS0	0.1557829063
+UniRef50_J3PLS0|unclassified	0.1557829063
+UniRef50_W5X3U5: CinA-like protein	0.1557629918
+UniRef50_W5X3U5: CinA-like protein|unclassified	0.1557629918
+UniRef50_UPI00046ADE6A: hypothetical protein	0.1557362504
+UniRef50_UPI00046ADE6A: hypothetical protein|unclassified	0.1557362504
+UniRef50_B7A106: SpoVR like family protein	0.1557320312
+UniRef50_B7A106: SpoVR like family protein|unclassified	0.1557320312
+UniRef50_UPI0004639765: hypothetical protein, partial	0.1557277308
+UniRef50_UPI0004639765: hypothetical protein, partial|unclassified	0.1557277308
+UniRef50_B8KQR9: Transcriptional regulator	0.1557197694
+UniRef50_B8KQR9: Transcriptional regulator|unclassified	0.1557197694
+UniRef50_UPI000329A978	0.1557191349
+UniRef50_UPI000329A978|unclassified	0.1557191349
+UniRef50_Z5F7S7	0.1557066951
+UniRef50_Z5F7S7|unclassified	0.1557066951
+UniRef50_UPI00046FCB34: carbon-nitrogen hydrolase, partial	0.1557007494
+UniRef50_UPI00046FCB34: carbon-nitrogen hydrolase, partial|unclassified	0.1557007494
+UniRef50_UPI00036F2919: hypothetical protein	0.1556899414
+UniRef50_UPI00036F2919: hypothetical protein|unclassified	0.1556899414
+UniRef50_Q46WJ3: Shikimate kinase	0.1556833084
+UniRef50_Q46WJ3: Shikimate kinase|unclassified	0.1556833084
+UniRef50_B9XTM7	0.1556653475
+UniRef50_B9XTM7|unclassified	0.1556653475
+UniRef50_M2NL79	0.1556619685
+UniRef50_M2NL79|unclassified	0.1556619685
+UniRef50_UPI000255F4E2: hypothetical protein, partial	0.1556551075
+UniRef50_UPI000255F4E2: hypothetical protein, partial|unclassified	0.1556551075
+UniRef50_UPI00037E97F8: hypothetical protein	0.1556108282
+UniRef50_UPI00037E97F8: hypothetical protein|unclassified	0.1556108282
+UniRef50_A9EAJ0	0.1556049307
+UniRef50_A9EAJ0|unclassified	0.1556049307
+UniRef50_K3XR83	0.1555993877
+UniRef50_K3XR83|unclassified	0.1555993877
+UniRef50_L8E4A2: Macro domain-containing protein lmo2759	0.1555930004
+UniRef50_L8E4A2: Macro domain-containing protein lmo2759|unclassified	0.1555930004
+UniRef50_F4C9G0: ATPase	0.1555887455
+UniRef50_F4C9G0: ATPase|unclassified	0.1555887455
+UniRef50_Q6MRL7: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.1555848754
+UniRef50_Q6MRL7: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.1555848754
+UniRef50_UPI0003B3B122: peptide ABC transporter substrate-binding protein	0.1555744424
+UniRef50_UPI0003B3B122: peptide ABC transporter substrate-binding protein|unclassified	0.1555744424
+UniRef50_UPI00047D7B73: hypothetical protein	0.1555688927
+UniRef50_UPI00047D7B73: hypothetical protein|unclassified	0.1555688927
+UniRef50_V8N321: Serine/arginine repetitive matrix protein 2 (Fragment)	0.1555571649
+UniRef50_V8N321: Serine/arginine repetitive matrix protein 2 (Fragment)|unclassified	0.1555571649
+UniRef50_UPI000467BFBE: hypothetical protein	0.1555515230
+UniRef50_UPI000467BFBE: hypothetical protein|unclassified	0.1555515230
+UniRef50_UPI0004729376: transcriptional regulator	0.1555448471
+UniRef50_UPI0004729376: transcriptional regulator|unclassified	0.1555448471
+UniRef50_Q1QPW6: Acetate kinase	0.1555445755
+UniRef50_Q1QPW6: Acetate kinase|unclassified	0.1555445755
+UniRef50_UPI00016C447C: multi-sensor hybrid histidine kinase	0.1555320215
+UniRef50_UPI00016C447C: multi-sensor hybrid histidine kinase|unclassified	0.1555320215
+UniRef50_F0LEQ2	0.1555245556
+UniRef50_F0LEQ2|unclassified	0.1555245556
+UniRef50_O27955: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.1555160210
+UniRef50_O27955: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.1555160210
+UniRef50_UPI0002558606: malate synthase, partial	0.1555061525
+UniRef50_UPI0002558606: malate synthase, partial|unclassified	0.1555061525
+UniRef50_UPI0003788CE2: hypothetical protein	0.1554996405
+UniRef50_UPI0003788CE2: hypothetical protein|unclassified	0.1554996405
+UniRef50_UPI00035A2594: PREDICTED: protein starmaker-like	0.1554979929
+UniRef50_UPI00035A2594: PREDICTED: protein starmaker-like|unclassified	0.1554979929
+UniRef50_A8HR36: Peptidase	0.1554965404
+UniRef50_A8HR36: Peptidase|unclassified	0.1554965404
+UniRef50_UPI0003822C1C: hypothetical protein	0.1554851697
+UniRef50_UPI0003822C1C: hypothetical protein|unclassified	0.1554851697
+UniRef50_F8IFU6: LmbE family protein	0.1554837706
+UniRef50_F8IFU6: LmbE family protein|unclassified	0.1554837706
+UniRef50_E4R6W1	0.1554815171
+UniRef50_E4R6W1|unclassified	0.1554815171
+UniRef50_R6ZDU9: Protein translocase subunit SecA	0.1554805379
+UniRef50_R6ZDU9: Protein translocase subunit SecA|unclassified	0.1554805379
+UniRef50_UPI000472AF89: hypothetical protein, partial	0.1554653659
+UniRef50_UPI000472AF89: hypothetical protein, partial|unclassified	0.1554653659
+UniRef50_UPI00041EC5EE: DNA polymerase III subunit alpha	0.1554625288
+UniRef50_UPI00041EC5EE: DNA polymerase III subunit alpha|unclassified	0.1554625288
+UniRef50_UPI00046F7510: hypothetical protein	0.1554619234
+UniRef50_UPI00046F7510: hypothetical protein|unclassified	0.1554619234
+UniRef50_UPI00036ED489: hypothetical protein	0.1554616889
+UniRef50_UPI00036ED489: hypothetical protein|unclassified	0.1554616889
+UniRef50_UPI0003B35DE4: short-chain dehydrogenase	0.1554473722
+UniRef50_UPI0003B35DE4: short-chain dehydrogenase|unclassified	0.1554473722
+UniRef50_C1A4V6	0.1554432280
+UniRef50_C1A4V6|unclassified	0.1554432280
+UniRef50_A0A009FI12	0.1554322856
+UniRef50_A0A009FI12|unclassified	0.1554322856
+UniRef50_X0RZB2: Marine sediment metagenome DNA, contig: S01H1_L01951 (Fragment)	0.1554303222
+UniRef50_X0RZB2: Marine sediment metagenome DNA, contig: S01H1_L01951 (Fragment)|unclassified	0.1554303222
+UniRef50_G2XMI1: Hypothetical_protein	0.1554219118
+UniRef50_G2XMI1: Hypothetical_protein|unclassified	0.1554219118
+UniRef50_UPI00047C726F: hypothetical protein	0.1554088849
+UniRef50_UPI00047C726F: hypothetical protein|unclassified	0.1554088849
+UniRef50_UPI000303A2B1: hypothetical protein	0.1554004957
+UniRef50_UPI000303A2B1: hypothetical protein|unclassified	0.1554004957
+UniRef50_UPI0001E893ED: ABC transporter-like protein	0.1553977599
+UniRef50_UPI0001E893ED: ABC transporter-like protein|unclassified	0.1553977599
+UniRef50_E1PK67	0.1553689233
+UniRef50_E1PK67|unclassified	0.1553689233
+UniRef50_UPI00036CE8A3: hypothetical protein	0.1553682852
+UniRef50_UPI00036CE8A3: hypothetical protein|unclassified	0.1553682852
+UniRef50_UPI0003658F8B: hypothetical protein	0.1553516482
+UniRef50_UPI0003658F8B: hypothetical protein|unclassified	0.1553516482
+UniRef50_O87008: NADH:FAD oxidoreductase	0.1553507370
+UniRef50_O87008: NADH:FAD oxidoreductase|unclassified	0.1553507370
+UniRef50_UPI00036F0C78: hypothetical protein	0.1553276235
+UniRef50_UPI00036F0C78: hypothetical protein|unclassified	0.1553276235
+UniRef50_UPI0003B5E83D: hypothetical protein	0.1553136073
+UniRef50_UPI0003B5E83D: hypothetical protein|unclassified	0.1553136073
+UniRef50_UPI000476EE94: LysR family transcriptional regulator	0.1553066780
+UniRef50_UPI000476EE94: LysR family transcriptional regulator|unclassified	0.1553066780
+UniRef50_UPI0003B62A98: hypothetical protein	0.1552988889
+UniRef50_UPI0003B62A98: hypothetical protein|unclassified	0.1552988889
+UniRef50_C3CQK9	0.1552811834
+UniRef50_C3CQK9|unclassified	0.1552811834
+UniRef50_UPI00046CC73E: PREDICTED: nucleolin 1 isoform X1	0.1552669822
+UniRef50_UPI00046CC73E: PREDICTED: nucleolin 1 isoform X1|unclassified	0.1552669822
+UniRef50_UPI00047E3906: hypothetical protein	0.1552657067
+UniRef50_UPI00047E3906: hypothetical protein|unclassified	0.1552657067
+UniRef50_H0DKT7	0.1552599930
+UniRef50_H0DKT7|unclassified	0.1552599930
+UniRef50_K0SL07	0.1552406647
+UniRef50_K0SL07|unclassified	0.1552406647
+UniRef50_X1MBI4: Marine sediment metagenome DNA, contig: S06H3_L08330 (Fragment)	0.1552387012
+UniRef50_X1MBI4: Marine sediment metagenome DNA, contig: S06H3_L08330 (Fragment)|unclassified	0.1552387012
+UniRef50_P13716: Delta-aminolevulinic acid dehydratase	0.1552375104
+UniRef50_P13716: Delta-aminolevulinic acid dehydratase|unclassified	0.1552375104
+UniRef50_U2J9F5	0.1552347750
+UniRef50_U2J9F5|unclassified	0.1552347750
+UniRef50_Q2GI73: Glycerol-3-phosphate acyltransferase	0.1552208029
+UniRef50_Q2GI73: Glycerol-3-phosphate acyltransferase|unclassified	0.1552208029
+UniRef50_V3H5M7	0.1552161135
+UniRef50_V3H5M7|unclassified	0.1552161135
+UniRef50_W6KQQ4: Genomic scaffold, scaffold_19	0.1552054321
+UniRef50_W6KQQ4: Genomic scaffold, scaffold_19|unclassified	0.1552054321
+UniRef50_X1FIN3: Marine sediment metagenome DNA, contig: S03H2_L03692 (Fragment)	0.1552053202
+UniRef50_X1FIN3: Marine sediment metagenome DNA, contig: S03H2_L03692 (Fragment)|unclassified	0.1552053202
+UniRef50_D8U0M8	0.1551863361
+UniRef50_D8U0M8|unclassified	0.1551863361
+UniRef50_E2Q677: Transcriptional regulator	0.1551852665
+UniRef50_E2Q677: Transcriptional regulator|unclassified	0.1551852665
+UniRef50_UPI0004776897: 50S ribosomal protein L21	0.1551809803
+UniRef50_UPI0004776897: 50S ribosomal protein L21|unclassified	0.1551809803
+UniRef50_UPI0002491AE0: arabinose isomerase	0.1551803641
+UniRef50_UPI0002491AE0: arabinose isomerase|unclassified	0.1551803641
+UniRef50_UPI00020005FA: LysR family transcriptional regulator	0.1551747230
+UniRef50_UPI00020005FA: LysR family transcriptional regulator|unclassified	0.1551747230
+UniRef50_UPI00047D16E0: hypothetical protein	0.1551728638
+UniRef50_UPI00047D16E0: hypothetical protein|unclassified	0.1551728638
+UniRef50_UPI000273E344	0.1551703518
+UniRef50_UPI000273E344|unclassified	0.1551703518
+UniRef50_UPI00036B9450: hypothetical protein	0.1551452125
+UniRef50_UPI00036B9450: hypothetical protein|unclassified	0.1551452125
+UniRef50_A2EXK6	0.1551443827
+UniRef50_A2EXK6|unclassified	0.1551443827
+UniRef50_Q11MX1	0.1551439180
+UniRef50_Q11MX1|unclassified	0.1551439180
+UniRef50_S9QAC1: Mobile element protein	0.1551407817
+UniRef50_S9QAC1: Mobile element protein|unclassified	0.1551407817
+UniRef50_Q2S4S2: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.1551389080
+UniRef50_Q2S4S2: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.1551389080
+UniRef50_W4SVI6	0.1551225150
+UniRef50_W4SVI6|unclassified	0.1551225150
+UniRef50_E1SEE3: Gene D protein (GpD)	0.1551173745
+UniRef50_E1SEE3: Gene D protein (GpD)|unclassified	0.1551173745
+UniRef50_UPI00046D684B: hypothetical protein	0.1551162058
+UniRef50_UPI00046D684B: hypothetical protein|unclassified	0.1551162058
+UniRef50_D5AN46: Mammalian cell entry related domain protein	0.1551028183
+UniRef50_D5AN46: Mammalian cell entry related domain protein|unclassified	0.1551028183
+UniRef50_K8WI73	0.1550980605
+UniRef50_K8WI73|unclassified	0.1550980605
+UniRef50_UPI0002F4F56A: hypothetical protein	0.1550957359
+UniRef50_UPI0002F4F56A: hypothetical protein|unclassified	0.1550957359
+UniRef50_UPI00034B5792: hypothetical protein	0.1550931887
+UniRef50_UPI00034B5792: hypothetical protein|unclassified	0.1550931887
+UniRef50_UPI00046610C2: sugar ABC transporter ATP-binding protein	0.1550767516
+UniRef50_UPI00046610C2: sugar ABC transporter ATP-binding protein|unclassified	0.1550767516
+UniRef50_A4SAR9: Predicted protein	0.1550720075
+UniRef50_A4SAR9: Predicted protein|unclassified	0.1550720075
+UniRef50_U3TN39: Mobilization protein	0.1550628801
+UniRef50_U3TN39: Mobilization protein|unclassified	0.1550628801
+UniRef50_F6SFR9	0.1550590854
+UniRef50_F6SFR9|unclassified	0.1550590854
+UniRef50_UPI000441600D: SSU ribosomal protein S9P	0.1550314394
+UniRef50_UPI000441600D: SSU ribosomal protein S9P|unclassified	0.1550314394
+UniRef50_C3KB42	0.1550275893
+UniRef50_C3KB42|unclassified	0.1550275893
+UniRef50_UPI000366DCD3: hypothetical protein	0.1550246072
+UniRef50_UPI000366DCD3: hypothetical protein|unclassified	0.1550246072
+UniRef50_Q9UYX0: Probable L-threonine 3-dehydrogenase	0.1550101782
+UniRef50_Q9UYX0: Probable L-threonine 3-dehydrogenase|unclassified	0.1550101782
+UniRef50_Q2SL45: Predicted signal transduction protein	0.1549989747
+UniRef50_Q2SL45: Predicted signal transduction protein|unclassified	0.1549989747
+UniRef50_L2V4H8: Inner membrane transporter RhmT	0.1549914011
+UniRef50_L2V4H8: Inner membrane transporter RhmT|unclassified	0.1549914011
+UniRef50_W3RG67: Protein usg	0.1549851404
+UniRef50_W3RG67: Protein usg|unclassified	0.1549851404
+UniRef50_UPI0003B30E86: chemotaxis protein CheW	0.1549830717
+UniRef50_UPI0003B30E86: chemotaxis protein CheW|unclassified	0.1549830717
+UniRef50_UPI00046C8BA3: hypothetical protein	0.1549815388
+UniRef50_UPI00046C8BA3: hypothetical protein|unclassified	0.1549815388
+UniRef50_UPI000262CF1C: aminomethyltransferase	0.1549784060
+UniRef50_UPI000262CF1C: aminomethyltransferase|unclassified	0.1549784060
+UniRef50_UPI00046CA959: NADH-quinone oxidoreductase subunit M	0.1549701148
+UniRef50_UPI00046CA959: NADH-quinone oxidoreductase subunit M|unclassified	0.1549701148
+UniRef50_X1JY82: Marine sediment metagenome DNA, contig: S03H2_S15032 (Fragment)	0.1549553434
+UniRef50_X1JY82: Marine sediment metagenome DNA, contig: S03H2_S15032 (Fragment)|unclassified	0.1549553434
+UniRef50_UPI00036F2150: hypothetical protein	0.1549467000
+UniRef50_UPI00036F2150: hypothetical protein|unclassified	0.1549467000
+UniRef50_UPI00016AC3D5: xylulose kinase, partial	0.1549410274
+UniRef50_UPI00016AC3D5: xylulose kinase, partial|unclassified	0.1549410274
+UniRef50_UPI000426D32E: hypothetical protein	0.1549381385
+UniRef50_UPI000426D32E: hypothetical protein|unclassified	0.1549381385
+UniRef50_UPI0003741D7C: hypothetical protein	0.1549317188
+UniRef50_UPI0003741D7C: hypothetical protein|unclassified	0.1549317188
+UniRef50_Q5NP09: Leucyl/phenylalanyl-tRNA--protein transferase	0.1549237266
+UniRef50_Q5NP09: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.1549237266
+UniRef50_I1ARC7: Transposase	0.1549068589
+UniRef50_I1ARC7: Transposase|unclassified	0.1549068589
+UniRef50_UPI0004798573: hypothetical protein	0.1549054665
+UniRef50_UPI0004798573: hypothetical protein|unclassified	0.1549054665
+UniRef50_S4YFV2	0.1548944597
+UniRef50_S4YFV2|unclassified	0.1548944597
+UniRef50_UPI00047BF29E: hypothetical protein	0.1548827226
+UniRef50_UPI00047BF29E: hypothetical protein|unclassified	0.1548827226
+UniRef50_Q92506: Estradiol 17-beta-dehydrogenase 8	0.1548692281
+UniRef50_Q92506: Estradiol 17-beta-dehydrogenase 8|unclassified	0.1548692281
+UniRef50_R5AYM2	0.1548688748
+UniRef50_R5AYM2|unclassified	0.1548688748
+UniRef50_F6ICF6	0.1548424051
+UniRef50_F6ICF6|unclassified	0.1548424051
+UniRef50_UPI0003B45615: thioesterase	0.1548397805
+UniRef50_UPI0003B45615: thioesterase|unclassified	0.1548397805
+UniRef50_Q99707: Methionine synthase	0.1548342618
+UniRef50_Q99707: Methionine synthase|unclassified	0.1548342618
+UniRef50_A3T1F2: Lipoprotein, putative	0.1548335778
+UniRef50_A3T1F2: Lipoprotein, putative|unclassified	0.1548335778
+UniRef50_Q9RYA2	0.1548065151
+UniRef50_Q9RYA2|unclassified	0.1548065151
+UniRef50_U5MY44: Phospholipid-binding protein	0.1547934993
+UniRef50_U5MY44: Phospholipid-binding protein|unclassified	0.1547934993
+UniRef50_UPI0003903630: Transcriptional regulatory protein YvrH	0.1547756380
+UniRef50_UPI0003903630: Transcriptional regulatory protein YvrH|unclassified	0.1547756380
+UniRef50_UPI000475712A: MFS transporter	0.1547579227
+UniRef50_UPI000475712A: MFS transporter|unclassified	0.1547579227
+UniRef50_Q47XB5: Imidazole glycerol phosphate synthase subunit HisH	0.1547577273
+UniRef50_Q47XB5: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.1547577273
+UniRef50_Q2SNA3	0.1547573974
+UniRef50_Q2SNA3|unclassified	0.1547573974
+UniRef50_UPI0000557724: COG1620: L-lactate permease	0.1547391053
+UniRef50_UPI0000557724: COG1620: L-lactate permease|unclassified	0.1547391053
+UniRef50_K4KLC1	0.1547337236
+UniRef50_K4KLC1|unclassified	0.1547337236
+UniRef50_M9R6X4	0.1547241982
+UniRef50_M9R6X4|unclassified	0.1547241982
+UniRef50_UPI00047A5231: hypothetical protein	0.1547202191
+UniRef50_UPI00047A5231: hypothetical protein|unclassified	0.1547202191
+UniRef50_UPI00036443ED: hypothetical protein	0.1547184256
+UniRef50_UPI00036443ED: hypothetical protein|unclassified	0.1547184256
+UniRef50_UPI000369F77F: hypothetical protein, partial	0.1547177001
+UniRef50_UPI000369F77F: hypothetical protein, partial|unclassified	0.1547177001
+UniRef50_UPI0004696E1B: molecular chaperone Hsp33	0.1547056422
+UniRef50_UPI0004696E1B: molecular chaperone Hsp33|unclassified	0.1547056422
+UniRef50_Q28NS3	0.1546897666
+UniRef50_Q28NS3|unclassified	0.1546897666
+UniRef50_UPI00035C23CC: spermidine/putrescine ABC transporter ATP-binding protein	0.1546825808
+UniRef50_UPI00035C23CC: spermidine/putrescine ABC transporter ATP-binding protein|unclassified	0.1546825808
+UniRef50_X1U0I3: Marine sediment metagenome DNA, contig: S12H4_S05203 (Fragment)	0.1546710955
+UniRef50_X1U0I3: Marine sediment metagenome DNA, contig: S12H4_S05203 (Fragment)|unclassified	0.1546710955
+UniRef50_V6EZP6	0.1546686245
+UniRef50_V6EZP6|unclassified	0.1546686245
+UniRef50_H1RZJ9: Twin-arginine translocation pathway signal	0.1546656666
+UniRef50_H1RZJ9: Twin-arginine translocation pathway signal|unclassified	0.1546656666
+UniRef50_H2ITE9	0.1546608700
+UniRef50_H2ITE9|unclassified	0.1546608700
+UniRef50_Q4L5P7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.1546557484
+UniRef50_Q4L5P7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.1546557484
+UniRef50_X0MZK9	0.1546551191
+UniRef50_X0MZK9|unclassified	0.1546551191
+UniRef50_I3TQJ9: Carbon monoxide dehydrogenase subunit G	0.1546510419
+UniRef50_I3TQJ9: Carbon monoxide dehydrogenase subunit G|unclassified	0.1546510419
+UniRef50_T0NFV6	0.1546484981
+UniRef50_T0NFV6|unclassified	0.1546484981
+UniRef50_UPI0004720532: 3-hydroxy-3-methylglutaryl-CoA synthase	0.1546474615
+UniRef50_UPI0004720532: 3-hydroxy-3-methylglutaryl-CoA synthase|unclassified	0.1546474615
+UniRef50_G0LPP3	0.1546461655
+UniRef50_G0LPP3|unclassified	0.1546461655
+UniRef50_UPI00047D65B5: response regulator receiver protein	0.1546432480
+UniRef50_UPI00047D65B5: response regulator receiver protein|unclassified	0.1546432480
+UniRef50_R7QGB5: Stackhouse genomic scaffold, scaffold_309	0.1546384853
+UniRef50_R7QGB5: Stackhouse genomic scaffold, scaffold_309|unclassified	0.1546384853
+UniRef50_H8HNS9	0.1546293921
+UniRef50_H8HNS9|unclassified	0.1546293921
+UniRef50_Q72VI6: Aminomethyltransferase	0.1546274443
+UniRef50_Q72VI6: Aminomethyltransferase|unclassified	0.1546274443
+UniRef50_UPI000372E1B1: hypothetical protein	0.1546237961
+UniRef50_UPI000372E1B1: hypothetical protein|unclassified	0.1546237961
+UniRef50_UPI00036F2C3B: hypothetical protein	0.1546145603
+UniRef50_UPI00036F2C3B: hypothetical protein|unclassified	0.1546145603
+UniRef50_A0L486: DNA-directed RNA polymerase subunit omega	0.1546023867
+UniRef50_A0L486: DNA-directed RNA polymerase subunit omega|unclassified	0.1546023867
+UniRef50_UPI0002EE97B2: hypothetical protein	0.1545905901
+UniRef50_UPI0002EE97B2: hypothetical protein|unclassified	0.1545905901
+UniRef50_UPI000411CCC0: hypothetical protein	0.1545904801
+UniRef50_UPI000411CCC0: hypothetical protein|unclassified	0.1545904801
+UniRef50_X6L196	0.1545812132
+UniRef50_X6L196|unclassified	0.1545812132
+UniRef50_Q1Q889: Zinc import ATP-binding protein ZnuC	0.1545671677
+UniRef50_Q1Q889: Zinc import ATP-binding protein ZnuC|unclassified	0.1545671677
+UniRef50_UPI0000557913: COG0477: Permeases of the major facilitator superfamily, partial	0.1545646906
+UniRef50_UPI0000557913: COG0477: Permeases of the major facilitator superfamily, partial|unclassified	0.1545646906
+UniRef50_UPI0003656929: MULTISPECIES: hypothetical protein	0.1545565991
+UniRef50_UPI0003656929: MULTISPECIES: hypothetical protein|unclassified	0.1545565991
+UniRef50_UPI0003818D29: hypothetical protein	0.1545453280
+UniRef50_UPI0003818D29: hypothetical protein|unclassified	0.1545453280
+UniRef50_W9D579	0.1545448062
+UniRef50_W9D579|unclassified	0.1545448062
+UniRef50_Q9FJP9: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit 3, mitochondrial	0.1545376199
+UniRef50_Q9FJP9: Succinate dehydrogenase [ubiquinone] iron-sulfur subunit 3, mitochondrial|unclassified	0.1545376199
+UniRef50_X1L7L0: Marine sediment metagenome DNA, contig: S06H3_L00859 (Fragment)	0.1545367761
+UniRef50_X1L7L0: Marine sediment metagenome DNA, contig: S06H3_L00859 (Fragment)|unclassified	0.1545367761
+UniRef50_N0AUQ9: 2-amino-4-ketopentanoate thiolase (AKPT), alpha subunit	0.1545364434
+UniRef50_N0AUQ9: 2-amino-4-ketopentanoate thiolase (AKPT), alpha subunit|unclassified	0.1545364434
+UniRef50_E3LBP8	0.1545317665
+UniRef50_E3LBP8|unclassified	0.1545317665
+UniRef50_Q9X7M4: N(G),N(G)-dimethylarginine dimethylaminohydrolase	0.1545179106
+UniRef50_Q9X7M4: N(G),N(G)-dimethylarginine dimethylaminohydrolase|unclassified	0.1545179106
+UniRef50_E3BJ01: C4-dicarboxylate transport system, small permease protein, putative	0.1545163406
+UniRef50_E3BJ01: C4-dicarboxylate transport system, small permease protein, putative|unclassified	0.1545163406
+UniRef50_D2UA73	0.1545113212
+UniRef50_D2UA73|unclassified	0.1545113212
+UniRef50_UPI0003B76C22: ABC transporter permease	0.1544865048
+UniRef50_UPI0003B76C22: ABC transporter permease|unclassified	0.1544865048
+UniRef50_UPI000474C7BC: hypothetical protein, partial	0.1544853132
+UniRef50_UPI000474C7BC: hypothetical protein, partial|unclassified	0.1544853132
+UniRef50_K7WE45	0.1544795471
+UniRef50_K7WE45|unclassified	0.1544795471
+UniRef50_UPI00035D48FE: hypothetical protein	0.1544290618
+UniRef50_UPI00035D48FE: hypothetical protein|unclassified	0.1544290618
+UniRef50_UPI000262CB84: xylulokinase	0.1544202135
+UniRef50_UPI000262CB84: xylulokinase|unclassified	0.1544202135
+UniRef50_Q3IMV2: Dihydroxy-acid dehydratase	0.1544023727
+UniRef50_Q3IMV2: Dihydroxy-acid dehydratase|unclassified	0.1544023727
+UniRef50_A0A011QW65: Peroxiredoxin OsmC	0.1543994738
+UniRef50_A0A011QW65: Peroxiredoxin OsmC|unclassified	0.1543994738
+UniRef50_K4YQH4: Peptidase S14, ClpP	0.1543710742
+UniRef50_K4YQH4: Peptidase S14, ClpP|unclassified	0.1543710742
+UniRef50_T5BQJ5	0.1543645350
+UniRef50_T5BQJ5|unclassified	0.1543645350
+UniRef50_D2S651	0.1543635789
+UniRef50_D2S651|unclassified	0.1543635789
+UniRef50_S3ZKS6	0.1543551026
+UniRef50_S3ZKS6|unclassified	0.1543551026
+UniRef50_A3VHI7	0.1543535512
+UniRef50_A3VHI7|unclassified	0.1543535512
+UniRef50_F2B298: Archaeal DNA polymerase II, large subunit	0.1543492196
+UniRef50_F2B298: Archaeal DNA polymerase II, large subunit|unclassified	0.1543492196
+UniRef50_UPI0004135EFA: ATP-dependent DNA helicase RecQ	0.1543475405
+UniRef50_UPI0004135EFA: ATP-dependent DNA helicase RecQ|unclassified	0.1543475405
+UniRef50_UPI000462BEE8: hypothetical protein	0.1543443681
+UniRef50_UPI000462BEE8: hypothetical protein|unclassified	0.1543443681
+UniRef50_Q9RRX9: Probable L-asparaginase	0.1543317092
+UniRef50_Q9RRX9: Probable L-asparaginase|unclassified	0.1543317092
+UniRef50_D4F483	0.1543312468
+UniRef50_D4F483|unclassified	0.1543312468
+UniRef50_A6D404: ComM-related protein	0.1543205066
+UniRef50_A6D404: ComM-related protein|unclassified	0.1543205066
+UniRef50_A6F0X3: Transcription-repair coupling factor	0.1543154165
+UniRef50_A6F0X3: Transcription-repair coupling factor|unclassified	0.1543154165
+UniRef50_UPI0003C7D137: GntR family transcriptional regulator, partial	0.1543137214
+UniRef50_UPI0003C7D137: GntR family transcriptional regulator, partial|unclassified	0.1543137214
+UniRef50_UPI00046939D9: hypothetical protein	0.1543124647
+UniRef50_UPI00046939D9: hypothetical protein|unclassified	0.1543124647
+UniRef50_UPI00047B3B23: hypothetical protein	0.1542844384
+UniRef50_UPI00047B3B23: hypothetical protein|unclassified	0.1542844384
+UniRef50_P62421: Phosphoglycerate kinase	0.1542835673
+UniRef50_P62421: Phosphoglycerate kinase|unclassified	0.1542835673
+UniRef50_UPI00032895ED: PREDICTED: translation initiation factor IF-2-like, partial	0.1542807683
+UniRef50_UPI00032895ED: PREDICTED: translation initiation factor IF-2-like, partial|unclassified	0.1542807683
+UniRef50_UPI0003B5E509: 2-isopropylmalate synthase	0.1542800031
+UniRef50_UPI0003B5E509: 2-isopropylmalate synthase|unclassified	0.1542800031
+UniRef50_Q7W9W5	0.1542771229
+UniRef50_Q7W9W5|unclassified	0.1542771229
+UniRef50_UPI0003C10B0B: PREDICTED: methionine aminopeptidase 1-like	0.1542754215
+UniRef50_UPI0003C10B0B: PREDICTED: methionine aminopeptidase 1-like|unclassified	0.1542754215
+UniRef50_UPI0003C1AAEB: PREDICTED: imidazole glycerol phosphate synthase subunit hisH-like	0.1542668111
+UniRef50_UPI0003C1AAEB: PREDICTED: imidazole glycerol phosphate synthase subunit hisH-like|unclassified	0.1542668111
+UniRef50_Q0CKM9: Predicted protein	0.1542629813
+UniRef50_Q0CKM9: Predicted protein|unclassified	0.1542629813
+UniRef50_G8WU80	0.1542618087
+UniRef50_G8WU80|unclassified	0.1542618087
+UniRef50_A0A013L1Y3: DoxX family protein	0.1542568009
+UniRef50_A0A013L1Y3: DoxX family protein|unclassified	0.1542568009
+UniRef50_A3SID6: Cation transport protein ChaC, putative	0.1542401292
+UniRef50_A3SID6: Cation transport protein ChaC, putative|unclassified	0.1542401292
+UniRef50_I3TJE3: Putative FecR	0.1542342233
+UniRef50_I3TJE3: Putative FecR|unclassified	0.1542342233
+UniRef50_G8PAY3: Prolyl oligopeptidase family protein	0.1542127905
+UniRef50_G8PAY3: Prolyl oligopeptidase family protein|unclassified	0.1542127905
+UniRef50_UPI000479F518: 3-demethylubiquinone-9 3-methyltransferase	0.1542014418
+UniRef50_UPI000479F518: 3-demethylubiquinone-9 3-methyltransferase|unclassified	0.1542014418
+UniRef50_G4B526: Electron transport complex protein RnfC	0.1541855324
+UniRef50_G4B526: Electron transport complex protein RnfC|unclassified	0.1541855324
+UniRef50_UPI0003809E76: hypothetical protein	0.1541718700
+UniRef50_UPI0003809E76: hypothetical protein|unclassified	0.1541718700
+UniRef50_UPI000370B856: hypothetical protein	0.1541614946
+UniRef50_UPI000370B856: hypothetical protein|unclassified	0.1541614946
+UniRef50_A6D355	0.1541605992
+UniRef50_A6D355|unclassified	0.1541605992
+UniRef50_K0VXX1	0.1541584638
+UniRef50_K0VXX1|unclassified	0.1541584638
+UniRef50_UPI0003B73755: ribulose-phosphate 3-epimerase	0.1541496325
+UniRef50_UPI0003B73755: ribulose-phosphate 3-epimerase|unclassified	0.1541496325
+UniRef50_U1W1Q2	0.1541479338
+UniRef50_U1W1Q2|unclassified	0.1541479338
+UniRef50_E9A6A3	0.1541469954
+UniRef50_E9A6A3|unclassified	0.1541469954
+UniRef50_A6GSA2	0.1541448938
+UniRef50_A6GSA2|unclassified	0.1541448938
+UniRef50_L1K6Q6	0.1541142681
+UniRef50_L1K6Q6|unclassified	0.1541142681
+UniRef50_C4KDB8	0.1541085256
+UniRef50_C4KDB8|unclassified	0.1541085256
+UniRef50_UPI0002555659: inner-membrane translocator	0.1541037961
+UniRef50_UPI0002555659: inner-membrane translocator|unclassified	0.1541037961
+UniRef50_UPI00040B7BF1: hypothetical protein	0.1540920390
+UniRef50_UPI00040B7BF1: hypothetical protein|unclassified	0.1540920390
+UniRef50_UPI0002DCF9D3: hypothetical protein	0.1540869200
+UniRef50_UPI0002DCF9D3: hypothetical protein|unclassified	0.1540869200
+UniRef50_UPI0003B31F28: mannitol-1-phosphate 5-dehydrogenase	0.1540824494
+UniRef50_UPI0003B31F28: mannitol-1-phosphate 5-dehydrogenase|unclassified	0.1540824494
+UniRef50_UPI000255C6FB: ADP-ribose pyrophosphatase	0.1540686114
+UniRef50_UPI000255C6FB: ADP-ribose pyrophosphatase|unclassified	0.1540686114
+UniRef50_Q022D1	0.1540616963
+UniRef50_Q022D1|unclassified	0.1540616963
+UniRef50_UPI000377F867: hypothetical protein, partial	0.1540611762
+UniRef50_UPI000377F867: hypothetical protein, partial|unclassified	0.1540611762
+UniRef50_Q92405: Catalase B	0.1540444957
+UniRef50_Q92405: Catalase B|unclassified	0.1540444957
+UniRef50_Q99L13: 3-hydroxyisobutyrate dehydrogenase, mitochondrial	0.1540422151
+UniRef50_Q99L13: 3-hydroxyisobutyrate dehydrogenase, mitochondrial|unclassified	0.1540422151
+UniRef50_A0Q087: Elongation factor P	0.1540396343
+UniRef50_A0Q087: Elongation factor P|unclassified	0.1540396343
+UniRef50_UPI000379976F: hypothetical protein	0.1540209471
+UniRef50_UPI000379976F: hypothetical protein|unclassified	0.1540209471
+UniRef50_Q7WH65: Beta-hexosaminidase	0.1540167450
+UniRef50_Q7WH65: Beta-hexosaminidase|unclassified	0.1540167450
+UniRef50_V4ZLE5	0.1540120129
+UniRef50_V4ZLE5|unclassified	0.1540120129
+UniRef50_J0TZT0	0.1540075800
+UniRef50_J0TZT0|unclassified	0.1540075800
+UniRef50_UPI00040C441F: PTS glucose transporter subunit IIB	0.1539958168
+UniRef50_UPI00040C441F: PTS glucose transporter subunit IIB|unclassified	0.1539958168
+UniRef50_UPI00047CBBFB: 2-amino-4-ketopentanoate thiolase	0.1539952938
+UniRef50_UPI00047CBBFB: 2-amino-4-ketopentanoate thiolase|unclassified	0.1539952938
+UniRef50_C2PZY8	0.1539919343
+UniRef50_C2PZY8|unclassified	0.1539919343
+UniRef50_M7ADI3	0.1539802285
+UniRef50_M7ADI3|unclassified	0.1539802285
+UniRef50_L7WQ66	0.1539772874
+UniRef50_L7WQ66|unclassified	0.1539772874
+UniRef50_UPI0003494CA9: hypothetical protein	0.1539633814
+UniRef50_UPI0003494CA9: hypothetical protein|unclassified	0.1539633814
+UniRef50_Q1WV68: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	0.1539483701
+UniRef50_Q1WV68: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.1539483701
+UniRef50_UPI0001BC9123: hypothetical protein, partial	0.1539345133
+UniRef50_UPI0001BC9123: hypothetical protein, partial|unclassified	0.1539345133
+UniRef50_W0M3M5: RNA pseudouridine synthase family protein	0.1539327261
+UniRef50_W0M3M5: RNA pseudouridine synthase family protein|unclassified	0.1539327261
+UniRef50_UPI000237687D: glycine betaine ABC transporter substrate-binding protein	0.1539176585
+UniRef50_UPI000237687D: glycine betaine ABC transporter substrate-binding protein|unclassified	0.1539176585
+UniRef50_X7E553: Glucose dehydrogenase	0.1539172897
+UniRef50_X7E553: Glucose dehydrogenase|unclassified	0.1539172897
+UniRef50_A4XVG5: tRNA--hydroxylase	0.1539160558
+UniRef50_A4XVG5: tRNA--hydroxylase|unclassified	0.1539160558
+UniRef50_B7RH15: Zinc-finger protein	0.1539095039
+UniRef50_B7RH15: Zinc-finger protein|unclassified	0.1539095039
+UniRef50_UPI0002B99C68: hypothetical protein	0.1539070715
+UniRef50_UPI0002B99C68: hypothetical protein|unclassified	0.1539070715
+UniRef50_D8THG8	0.1539044096
+UniRef50_D8THG8|unclassified	0.1539044096
+UniRef50_UPI00046EE9C0: hypothetical protein	0.1539030353
+UniRef50_UPI00046EE9C0: hypothetical protein|unclassified	0.1539030353
+UniRef50_Q9UVC0: Glyceraldehyde-3-phosphate dehydrogenase	0.1539026474
+UniRef50_Q9UVC0: Glyceraldehyde-3-phosphate dehydrogenase|unclassified	0.1539026474
+UniRef50_C4J173	0.1538919649
+UniRef50_C4J173|unclassified	0.1538919649
+UniRef50_UPI00037B050D: MULTISPECIES: hypothetical protein	0.1538915085
+UniRef50_UPI00037B050D: MULTISPECIES: hypothetical protein|unclassified	0.1538915085
+UniRef50_UPI000407C5D8: acyl-CoA dehydrogenase	0.1538860012
+UniRef50_UPI000407C5D8: acyl-CoA dehydrogenase|unclassified	0.1538860012
+UniRef50_L5MZM0: Phage major tail protein, phi13 family	0.1538851388
+UniRef50_L5MZM0: Phage major tail protein, phi13 family|unclassified	0.1538851388
+UniRef50_Q1AVY9: Carbamoyl-phosphate synthase large chain	0.1538809281
+UniRef50_Q1AVY9: Carbamoyl-phosphate synthase large chain|unclassified	0.1538809281
+UniRef50_UPI00046B91D1	0.1538735420
+UniRef50_UPI00046B91D1|unclassified	0.1538735420
+UniRef50_R5I6E4	0.1538730824
+UniRef50_R5I6E4|unclassified	0.1538730824
+UniRef50_E4N1C0	0.1538675476
+UniRef50_E4N1C0|unclassified	0.1538675476
+UniRef50_UPI0001850D64: sun protein	0.1538666954
+UniRef50_UPI0001850D64: sun protein|unclassified	0.1538666954
+UniRef50_UPI000273C7FC: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial	0.1538632369
+UniRef50_UPI000273C7FC: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial|unclassified	0.1538632369
+UniRef50_UPI00046D6EBB: hypothetical protein	0.1538554346
+UniRef50_UPI00046D6EBB: hypothetical protein|unclassified	0.1538554346
+UniRef50_J5MZZ7	0.1538509902
+UniRef50_J5MZZ7|unclassified	0.1538509902
+UniRef50_Q7MN25: Methionine import ATP-binding protein MetN	0.1538076919
+UniRef50_Q7MN25: Methionine import ATP-binding protein MetN|unclassified	0.1538076919
+UniRef50_F0VBH0	0.1537988311
+UniRef50_F0VBH0|unclassified	0.1537988311
+UniRef50_B8FMK3	0.1537919046
+UniRef50_B8FMK3|unclassified	0.1537919046
+UniRef50_C5BEA5	0.1537774826
+UniRef50_C5BEA5|unclassified	0.1537774826
+UniRef50_Q46BL0: S-adenosyl-L-methionine-dependent uroporphyrinogen III methyltransferase	0.1537665363
+UniRef50_Q46BL0: S-adenosyl-L-methionine-dependent uroporphyrinogen III methyltransferase|unclassified	0.1537665363
+UniRef50_D8FNL3	0.1537601586
+UniRef50_D8FNL3|unclassified	0.1537601586
+UniRef50_UPI00022348D0: PREDICTED: WAP four-disulfide core domain protein 2-like	0.1537482006
+UniRef50_UPI00022348D0: PREDICTED: WAP four-disulfide core domain protein 2-like|unclassified	0.1537482006
+UniRef50_UPI00040F0FB4: cobalt ABC transporter permease	0.1537456398
+UniRef50_UPI00040F0FB4: cobalt ABC transporter permease|unclassified	0.1537456398
+UniRef50_A3TUW7	0.1537420358
+UniRef50_A3TUW7|unclassified	0.1537420358
+UniRef50_Q54DD3: Aminomethyltransferase, mitochondrial	0.1537261531
+UniRef50_Q54DD3: Aminomethyltransferase, mitochondrial|unclassified	0.1537261531
+UniRef50_W1HQM5: TldE protein, part of TldE/TldD proteolytic complex	0.1537249873
+UniRef50_W1HQM5: TldE protein, part of TldE/TldD proteolytic complex|unclassified	0.1537249873
+UniRef50_UPI0003FE3085: chemotaxis protein CheA	0.1537119886
+UniRef50_UPI0003FE3085: chemotaxis protein CheA|unclassified	0.1537119886
+UniRef50_UPI000416FC07: ADP-ribose pyrophosphatase	0.1537037840
+UniRef50_UPI000416FC07: ADP-ribose pyrophosphatase|unclassified	0.1537037840
+UniRef50_UPI0003F4C8E7: hypothetical protein	0.1537004188
+UniRef50_UPI0003F4C8E7: hypothetical protein|unclassified	0.1537004188
+UniRef50_UPI00016C532F: competence protein	0.1536987908
+UniRef50_UPI00016C532F: competence protein|unclassified	0.1536987908
+UniRef50_Q1YDQ2: Putative pectin degradation protein	0.1536951835
+UniRef50_Q1YDQ2: Putative pectin degradation protein|unclassified	0.1536951835
+UniRef50_X3EPV1	0.1536931756
+UniRef50_X3EPV1|unclassified	0.1536931756
+UniRef50_UPI000400E776: hypothetical protein	0.1536833110
+UniRef50_UPI000400E776: hypothetical protein|unclassified	0.1536833110
+UniRef50_W7DCK2	0.1536796044
+UniRef50_W7DCK2|unclassified	0.1536796044
+UniRef50_UPI000379F765: hypothetical protein	0.1536696713
+UniRef50_UPI000379F765: hypothetical protein|unclassified	0.1536696713
+UniRef50_UPI00031BF86F: hypothetical protein	0.1536534428
+UniRef50_UPI00031BF86F: hypothetical protein|unclassified	0.1536534428
+UniRef50_UPI0004799891: ABC transporter	0.1536533287
+UniRef50_UPI0004799891: ABC transporter|unclassified	0.1536533287
+UniRef50_Q1GEK5	0.1536517977
+UniRef50_Q1GEK5|unclassified	0.1536517977
+UniRef50_UPI00037EA4C1: hypothetical protein	0.1536439779
+UniRef50_UPI00037EA4C1: hypothetical protein|unclassified	0.1536439779
+UniRef50_UPI000400534F: transposase	0.1536386779
+UniRef50_UPI000400534F: transposase|unclassified	0.1536386779
+UniRef50_J3N4P5	0.1536351850
+UniRef50_J3N4P5|unclassified	0.1536351850
+UniRef50_U1PY59	0.1536137052
+UniRef50_U1PY59|unclassified	0.1536137052
+UniRef50_F0HFQ0	0.1536122324
+UniRef50_F0HFQ0|unclassified	0.1536122324
+UniRef50_UPI0004630E03: hypothetical protein	0.1535942101
+UniRef50_UPI0004630E03: hypothetical protein|unclassified	0.1535942101
+UniRef50_UPI000368594E: hypothetical protein	0.1535783415
+UniRef50_UPI000368594E: hypothetical protein|unclassified	0.1535783415
+UniRef50_A1B4F1: UPF0758 protein Pden_2304	0.1535756917
+UniRef50_A1B4F1: UPF0758 protein Pden_2304|unclassified	0.1535756917
+UniRef50_UPI0002DF80A5: hypothetical protein	0.1535661313
+UniRef50_UPI0002DF80A5: hypothetical protein|unclassified	0.1535661313
+UniRef50_UPI00046F6E01: hypothetical protein	0.1535610956
+UniRef50_UPI00046F6E01: hypothetical protein|unclassified	0.1535610956
+UniRef50_UPI00047E83A1: amino acid ABC transporter permease	0.1535445664
+UniRef50_UPI00047E83A1: amino acid ABC transporter permease|unclassified	0.1535445664
+UniRef50_Q2SME6	0.1535403027
+UniRef50_Q2SME6|unclassified	0.1535403027
+UniRef50_UPI000367681C: hypothetical protein	0.1535234100
+UniRef50_UPI000367681C: hypothetical protein|unclassified	0.1535234100
+UniRef50_D8JJJ8: NmrA family protein	0.1535116785
+UniRef50_D8JJJ8: NmrA family protein|unclassified	0.1535116785
+UniRef50_UPI00036A4E56: hypothetical protein	0.1534975746
+UniRef50_UPI00036A4E56: hypothetical protein|unclassified	0.1534975746
+UniRef50_C3ZTP4	0.1534869404
+UniRef50_C3ZTP4|unclassified	0.1534869404
+UniRef50_UPI00041B6381: hypothetical protein	0.1534693566
+UniRef50_UPI00041B6381: hypothetical protein|unclassified	0.1534693566
+UniRef50_UPI0004573771: PREDICTED: succinyl-CoA:3-ketoacid coenzyme A transferase 1, mitochondrial-like	0.1534673447
+UniRef50_UPI0004573771: PREDICTED: succinyl-CoA:3-ketoacid coenzyme A transferase 1, mitochondrial-like|unclassified	0.1534673447
+UniRef50_D5AUT4	0.1534671076
+UniRef50_D5AUT4|unclassified	0.1534671076
+UniRef50_W1UNI1	0.1534653689
+UniRef50_W1UNI1|unclassified	0.1534653689
+UniRef50_K1YU66	0.1534448111
+UniRef50_K1YU66|unclassified	0.1534448111
+UniRef50_UPI000381B208: amino acid ABC transporter ATPase	0.1534255783
+UniRef50_UPI000381B208: amino acid ABC transporter ATPase|unclassified	0.1534255783
+UniRef50_UPI0004418234: release factor H-coupled R	0.1534205141
+UniRef50_UPI0004418234: release factor H-coupled R|unclassified	0.1534205141
+UniRef50_UPI0003727421: hypothetical protein	0.1534089940
+UniRef50_UPI0003727421: hypothetical protein|unclassified	0.1534089940
+UniRef50_UPI000380004D: hypothetical protein	0.1533865150
+UniRef50_UPI000380004D: hypothetical protein|unclassified	0.1533865150
+UniRef50_UPI000403999E: hypothetical protein	0.1533838567
+UniRef50_UPI000403999E: hypothetical protein|unclassified	0.1533838567
+UniRef50_H0BXW0: Pyruvate ferredoxin/flavodoxin oxidoreductase	0.1533753513
+UniRef50_H0BXW0: Pyruvate ferredoxin/flavodoxin oxidoreductase|unclassified	0.1533753513
+UniRef50_D9RD07	0.1533747473
+UniRef50_D9RD07|unclassified	0.1533747473
+UniRef50_UPI00047152B8: glucitol operon activator	0.1533718023
+UniRef50_UPI00047152B8: glucitol operon activator|unclassified	0.1533718023
+UniRef50_Q2RRP2: Fructose-1,6-bisphosphatase class 1	0.1533687737
+UniRef50_Q2RRP2: Fructose-1,6-bisphosphatase class 1|unclassified	0.1533687737
+UniRef50_UPI000367E6B7: hypothetical protein	0.1533612563
+UniRef50_UPI000367E6B7: hypothetical protein|unclassified	0.1533612563
+UniRef50_J9P5P7	0.1533562583
+UniRef50_J9P5P7|unclassified	0.1533562583
+UniRef50_UPI000467756F: N-succinylarginine dihydrolase, partial	0.1533472580
+UniRef50_UPI000467756F: N-succinylarginine dihydrolase, partial|unclassified	0.1533472580
+UniRef50_UPI000317DCBC: hypothetical protein	0.1533378651
+UniRef50_UPI000317DCBC: hypothetical protein|unclassified	0.1533378651
+UniRef50_Q4JUY7: Ribonuclease 3	0.1533105249
+UniRef50_Q4JUY7: Ribonuclease 3|unclassified	0.1533105249
+UniRef50_J8EJF8: LPXTG-domain-containing protein cell wall anchor domain	0.1532769207
+UniRef50_J8EJF8: LPXTG-domain-containing protein cell wall anchor domain|unclassified	0.1532769207
+UniRef50_W4FDA5	0.1532715447
+UniRef50_W4FDA5|unclassified	0.1532715447
+UniRef50_A5UCT5	0.1532598617
+UniRef50_A5UCT5|unclassified	0.1532598617
+UniRef50_S0G3P6: TRAP-type C4-dicarboxylate transporter permease, small subunit DctQ	0.1532593651
+UniRef50_S0G3P6: TRAP-type C4-dicarboxylate transporter permease, small subunit DctQ|unclassified	0.1532593651
+UniRef50_UPI0003B6FFFD: hemolysin	0.1532453682
+UniRef50_UPI0003B6FFFD: hemolysin|unclassified	0.1532453682
+UniRef50_Q48JY0: Dihydroorotate dehydrogenase (quinone)	0.1532324848
+UniRef50_Q48JY0: Dihydroorotate dehydrogenase (quinone)|unclassified	0.1532324848
+UniRef50_A0A031MEU2: ATPase	0.1532295357
+UniRef50_A0A031MEU2: ATPase|unclassified	0.1532295357
+UniRef50_UPI000478DA96: hypothetical protein	0.1532274875
+UniRef50_UPI000478DA96: hypothetical protein|unclassified	0.1532274875
+UniRef50_Q9CKJ2: L-threonine dehydratase biosynthetic IlvA	0.1532158340
+UniRef50_Q9CKJ2: L-threonine dehydratase biosynthetic IlvA|unclassified	0.1532158340
+UniRef50_A5FVR2: Carbon monoxide dehydrogenase subunit G	0.1532016446
+UniRef50_A5FVR2: Carbon monoxide dehydrogenase subunit G|unclassified	0.1532016446
+UniRef50_Q31PQ9: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	0.1531967731
+UniRef50_Q31PQ9: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|unclassified	0.1531967731
+UniRef50_UPI000363FBF4: hypothetical protein	0.1531943433
+UniRef50_UPI000363FBF4: hypothetical protein|unclassified	0.1531943433
+UniRef50_UPI0003B4CD08: type III secretion protein	0.1531936144
+UniRef50_UPI0003B4CD08: type III secretion protein|unclassified	0.1531936144
+UniRef50_UPI0003775EDE: hypothetical protein	0.1531845654
+UniRef50_UPI0003775EDE: hypothetical protein|unclassified	0.1531845654
+UniRef50_K9H7M1	0.1531821911
+UniRef50_K9H7M1|unclassified	0.1531821911
+UniRef50_N0C6R0: Competence protein ComYD	0.1531794424
+UniRef50_N0C6R0: Competence protein ComYD|unclassified	0.1531794424
+UniRef50_L0DM84	0.1531668057
+UniRef50_L0DM84|unclassified	0.1531668057
+UniRef50_UPI00037F6F67: hypothetical protein	0.1531622669
+UniRef50_UPI00037F6F67: hypothetical protein|unclassified	0.1531622669
+UniRef50_G4RBN8: Transglycosylase SLT domain protein	0.1531602344
+UniRef50_G4RBN8: Transglycosylase SLT domain protein|unclassified	0.1531602344
+UniRef50_K0K7M7	0.1531579385
+UniRef50_K0K7M7|unclassified	0.1531579385
+UniRef50_UPI00036E2B4B: hypothetical protein	0.1531482057
+UniRef50_UPI00036E2B4B: hypothetical protein|unclassified	0.1531482057
+UniRef50_K8E6Y3: GGDEF motif membrane protein	0.1531397067
+UniRef50_K8E6Y3: GGDEF motif membrane protein|unclassified	0.1531397067
+UniRef50_K0YWQ0: Protein sprT	0.1531262238
+UniRef50_K0YWQ0: Protein sprT|unclassified	0.1531262238
+UniRef50_UPI000362AC26: hypothetical protein	0.1531040923
+UniRef50_UPI000362AC26: hypothetical protein|unclassified	0.1531040923
+UniRef50_U2SGB1: Imelysin (Fragment)	0.1531020404
+UniRef50_U2SGB1: Imelysin (Fragment)|unclassified	0.1531020404
+UniRef50_D2U2S0	0.1530945690
+UniRef50_D2U2S0|unclassified	0.1530945690
+UniRef50_UPI0001744BD8: hypothetical protein	0.1530927432
+UniRef50_UPI0001744BD8: hypothetical protein|unclassified	0.1530927432
+UniRef50_B4RBB2	0.1530904852
+UniRef50_B4RBB2|unclassified	0.1530904852
+UniRef50_UPI00020D99AC: biotin biosynthesis protein BioC	0.1530850654
+UniRef50_UPI00020D99AC: biotin biosynthesis protein BioC|unclassified	0.1530850654
+UniRef50_A7BWG5	0.1530783473
+UniRef50_A7BWG5|unclassified	0.1530783473
+UniRef50_V4QHA7: ABC transporter permease	0.1530749576
+UniRef50_V4QHA7: ABC transporter permease|unclassified	0.1530749576
+UniRef50_UPI000469BC33: sodium:solute symporter	0.1530627143
+UniRef50_UPI000469BC33: sodium:solute symporter|unclassified	0.1530627143
+UniRef50_J9NST0	0.1530621847
+UniRef50_J9NST0|unclassified	0.1530621847
+UniRef50_UPI0004727BF9: hypothetical protein, partial	0.1530385641
+UniRef50_UPI0004727BF9: hypothetical protein, partial|unclassified	0.1530385641
+UniRef50_H6PBT2	0.1530358342
+UniRef50_H6PBT2|unclassified	0.1530358342
+UniRef50_K2AN26	0.1530277662
+UniRef50_K2AN26|unclassified	0.1530277662
+UniRef50_F5Z1N3	0.1530214830
+UniRef50_F5Z1N3|unclassified	0.1530214830
+UniRef50_UPI000362E53A: hypothetical protein	0.1530194868
+UniRef50_UPI000362E53A: hypothetical protein|unclassified	0.1530194868
+UniRef50_UPI000381B7DA: hypothetical protein	0.1530191263
+UniRef50_UPI000381B7DA: hypothetical protein|unclassified	0.1530191263
+UniRef50_Q8GCY1: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex	0.1530176686
+UniRef50_Q8GCY1: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|unclassified	0.1530176686
+UniRef50_Q7UKV0: Peptidyl-tRNA hydrolase	0.1530160873
+UniRef50_Q7UKV0: Peptidyl-tRNA hydrolase|unclassified	0.1530160873
+UniRef50_UPI00047D7A7D: D-mannonate oxidoreductase	0.1530145934
+UniRef50_UPI00047D7A7D: D-mannonate oxidoreductase|unclassified	0.1530145934
+UniRef50_Q4T2R9: Chromosome undetermined SCAF10201, whole genome shotgun sequence. (Fragment)	0.1530009493
+UniRef50_Q4T2R9: Chromosome undetermined SCAF10201, whole genome shotgun sequence. (Fragment)|unclassified	0.1530009493
+UniRef50_A5CWU3: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.1529954922
+UniRef50_A5CWU3: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.1529954922
+UniRef50_Q4JXF0: Phosphoribosylformylglycinamidine synthase 2	0.1529920122
+UniRef50_Q4JXF0: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.1529920122
+UniRef50_F3P4A4: Periplasmic binding protein	0.1529866214
+UniRef50_F3P4A4: Periplasmic binding protein|unclassified	0.1529866214
+UniRef50_K1ZS39	0.1529834417
+UniRef50_K1ZS39|unclassified	0.1529834417
+UniRef50_UPI00047BBE4C: HAD family hydrolase, partial	0.1529823628
+UniRef50_UPI00047BBE4C: HAD family hydrolase, partial|unclassified	0.1529823628
+UniRef50_UPI00032AB070	0.1529816126
+UniRef50_UPI00032AB070|unclassified	0.1529816126
+UniRef50_E8TT02: Thioesterase superfamily protein	0.1529738394
+UniRef50_E8TT02: Thioesterase superfamily protein|unclassified	0.1529738394
+UniRef50_UPI00036A7FB4: hypothetical protein	0.1529558738
+UniRef50_UPI00036A7FB4: hypothetical protein|unclassified	0.1529558738
+UniRef50_UPI00036BB920: hypothetical protein	0.1529531487
+UniRef50_UPI00036BB920: hypothetical protein|unclassified	0.1529531487
+UniRef50_UPI0003B2F374: MULTISPECIES: cobalamin biosynthesis protein	0.1529507087
+UniRef50_UPI0003B2F374: MULTISPECIES: cobalamin biosynthesis protein|unclassified	0.1529507087
+UniRef50_UPI0003292B2A: PREDICTED: epstein-Barr nuclear antigen 1-like	0.1529300510
+UniRef50_UPI0003292B2A: PREDICTED: epstein-Barr nuclear antigen 1-like|unclassified	0.1529300510
+UniRef50_UPI000375DAED: ABC transporter permease	0.1529231039
+UniRef50_UPI000375DAED: ABC transporter permease|unclassified	0.1529231039
+UniRef50_UPI00037DC53F: hypothetical protein	0.1529091191
+UniRef50_UPI00037DC53F: hypothetical protein|unclassified	0.1529091191
+UniRef50_UPI00047A7BCB: hypothetical protein	0.1529008913
+UniRef50_UPI00047A7BCB: hypothetical protein|unclassified	0.1529008913
+UniRef50_K2HCM4: Integrase catalytic subunit	0.1528957094
+UniRef50_K2HCM4: Integrase catalytic subunit|unclassified	0.1528957094
+UniRef50_B8KL15: Pirin family protein	0.1528919308
+UniRef50_B8KL15: Pirin family protein|unclassified	0.1528919308
+UniRef50_UPI00035D3C73: hypothetical protein	0.1528901311
+UniRef50_UPI00035D3C73: hypothetical protein|unclassified	0.1528901311
+UniRef50_P18185: Carbamoyl-phosphate synthase arginine-specific large chain	0.1528809047
+UniRef50_P18185: Carbamoyl-phosphate synthase arginine-specific large chain|unclassified	0.1528809047
+UniRef50_UPI0003769BCB: hypothetical protein	0.1528732479
+UniRef50_UPI0003769BCB: hypothetical protein|unclassified	0.1528732479
+UniRef50_Q1AWF5: Putative 3-methyladenine DNA glycosylase	0.1528536824
+UniRef50_Q1AWF5: Putative 3-methyladenine DNA glycosylase|unclassified	0.1528536824
+UniRef50_Q57763: S-adenosylmethionine decarboxylase proenzyme	0.1528508119
+UniRef50_Q57763: S-adenosylmethionine decarboxylase proenzyme|unclassified	0.1528508119
+UniRef50_M9R4E7: DUF2147 family protein	0.1528462939
+UniRef50_M9R4E7: DUF2147 family protein|unclassified	0.1528462939
+UniRef50_Q2LUS9: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.1528048167
+UniRef50_Q2LUS9: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.1528048167
+UniRef50_Q83HZ6: Uridylate kinase	0.1528006720
+UniRef50_Q83HZ6: Uridylate kinase|unclassified	0.1528006720
+UniRef50_R1EHQ3	0.1527994213
+UniRef50_R1EHQ3|unclassified	0.1527994213
+UniRef50_UPI0003D2D966: phosphate acyltransferase	0.1527963248
+UniRef50_UPI0003D2D966: phosphate acyltransferase|unclassified	0.1527963248
+UniRef50_D0D5X3: Probable transposase for transposon	0.1527828407
+UniRef50_D0D5X3: Probable transposase for transposon|unclassified	0.1527828407
+UniRef50_UPI000370A530: hypothetical protein	0.1527796265
+UniRef50_UPI000370A530: hypothetical protein|unclassified	0.1527796265
+UniRef50_B5F6R0: D-tagatose-1,6-bisphosphate aldolase subunit GatZ	0.1527750860
+UniRef50_B5F6R0: D-tagatose-1,6-bisphosphate aldolase subunit GatZ|unclassified	0.1527750860
+UniRef50_Q9ZNR6: Probable pyridoxal biosynthesis protein PDX1.2	0.1527717337
+UniRef50_Q9ZNR6: Probable pyridoxal biosynthesis protein PDX1.2|unclassified	0.1527717337
+UniRef50_UPI000464FCE7: hypothetical protein	0.1527705751
+UniRef50_UPI000464FCE7: hypothetical protein|unclassified	0.1527705751
+UniRef50_UPI0003B42D92: GntR family transcriptional regulator	0.1527494587
+UniRef50_UPI0003B42D92: GntR family transcriptional regulator|unclassified	0.1527494587
+UniRef50_UPI0002889211: glucosamine--fructose-6-phosphate aminotransferase (isomerizing), partial	0.1527475129
+UniRef50_UPI0002889211: glucosamine--fructose-6-phosphate aminotransferase (isomerizing), partial|unclassified	0.1527475129
+UniRef50_UPI00037A936B: hypothetical protein	0.1527432620
+UniRef50_UPI00037A936B: hypothetical protein|unclassified	0.1527432620
+UniRef50_Z9EI33: Siderophore staphylobactin biosynthesis protein SbnI	0.1527394460
+UniRef50_Z9EI33: Siderophore staphylobactin biosynthesis protein SbnI|unclassified	0.1527394460
+UniRef50_A9W2T1	0.1527353558
+UniRef50_A9W2T1|unclassified	0.1527353558
+UniRef50_UPI0003615671: hypothetical protein	0.1527040434
+UniRef50_UPI0003615671: hypothetical protein|unclassified	0.1527040434
+UniRef50_UPI000455E675: NAD(P)-binding protein	0.1526916450
+UniRef50_UPI000455E675: NAD(P)-binding protein|unclassified	0.1526916450
+UniRef50_UPI000382E87C: hypothetical protein	0.1526762149
+UniRef50_UPI000382E87C: hypothetical protein|unclassified	0.1526762149
+UniRef50_A4W3H4: Ribosomal RNA small subunit methyltransferase H	0.1526566680
+UniRef50_A4W3H4: Ribosomal RNA small subunit methyltransferase H|unclassified	0.1526566680
+UniRef50_Q6CGG3: FK506-binding protein 2	0.1526535864
+UniRef50_Q6CGG3: FK506-binding protein 2|unclassified	0.1526535864
+UniRef50_UPI00021943ED: bifunctional homocysteine S-methyltransferase/5,10-methylenetetrahydrofolate reductase protein	0.1526466830
+UniRef50_UPI00021943ED: bifunctional homocysteine S-methyltransferase/5,10-methylenetetrahydrofolate reductase protein|unclassified	0.1526466830
+UniRef50_UPI0002F2E85A: hypothetical protein	0.1526423535
+UniRef50_UPI0002F2E85A: hypothetical protein|unclassified	0.1526423535
+UniRef50_U5LB55	0.1526398532
+UniRef50_U5LB55|unclassified	0.1526398532
+UniRef50_S5DUH3: Acetoin reductase	0.1526398445
+UniRef50_S5DUH3: Acetoin reductase|unclassified	0.1526398445
+UniRef50_Q4FQA2	0.1526398000
+UniRef50_Q4FQA2|unclassified	0.1526398000
+UniRef50_E8SJY5	0.1526364679
+UniRef50_E8SJY5|unclassified	0.1526364679
+UniRef50_UPI00029AD767: Gnt-II system L-idonate transporter IdnT	0.1526335510
+UniRef50_UPI00029AD767: Gnt-II system L-idonate transporter IdnT|unclassified	0.1526335510
+UniRef50_D3HML5	0.1526150508
+UniRef50_D3HML5|unclassified	0.1526150508
+UniRef50_R4RUH4	0.1526107273
+UniRef50_R4RUH4|unclassified	0.1526107273
+UniRef50_U5V5C3: Putative nRPS/PKS	0.1526047030
+UniRef50_U5V5C3: Putative nRPS/PKS|unclassified	0.1526047030
+UniRef50_UPI00047A8C52: MFS sugar transporter	0.1526035052
+UniRef50_UPI00047A8C52: MFS sugar transporter|unclassified	0.1526035052
+UniRef50_UPI00034B3708: hypothetical protein	0.1526014317
+UniRef50_UPI00034B3708: hypothetical protein|unclassified	0.1526014317
+UniRef50_UPI00037186C5: hypothetical protein, partial	0.1525802413
+UniRef50_UPI00037186C5: hypothetical protein, partial|unclassified	0.1525802413
+UniRef50_M9R839	0.1525753103
+UniRef50_M9R839|unclassified	0.1525753103
+UniRef50_T1BZW1: Signal peptidase I	0.1525666180
+UniRef50_T1BZW1: Signal peptidase I|unclassified	0.1525666180
+UniRef50_UPI00046A5F3F: hypothetical protein	0.1525653708
+UniRef50_UPI00046A5F3F: hypothetical protein|unclassified	0.1525653708
+UniRef50_UPI0003AD2C67: hypothetical protein	0.1525628527
+UniRef50_UPI0003AD2C67: hypothetical protein|unclassified	0.1525628527
+UniRef50_N0DXM0: Integral membrane protein (Modular protein)	0.1525605311
+UniRef50_N0DXM0: Integral membrane protein (Modular protein)|unclassified	0.1525605311
+UniRef50_UPI00036B333E: hypothetical protein	0.1525597098
+UniRef50_UPI00036B333E: hypothetical protein|unclassified	0.1525597098
+UniRef50_J9P2K7	0.1525558243
+UniRef50_J9P2K7|unclassified	0.1525558243
+UniRef50_UPI0002E64728: hypothetical protein	0.1525477247
+UniRef50_UPI0002E64728: hypothetical protein|unclassified	0.1525477247
+UniRef50_F7TRV7	0.1525461640
+UniRef50_F7TRV7|unclassified	0.1525461640
+UniRef50_Q2W9R7: Phosphatidylserine decarboxylase proenzyme	0.1525393780
+UniRef50_Q2W9R7: Phosphatidylserine decarboxylase proenzyme|unclassified	0.1525393780
+UniRef50_UPI00037A066C: hypothetical protein	0.1525369843
+UniRef50_UPI00037A066C: hypothetical protein|unclassified	0.1525369843
+UniRef50_UPI0003B4C0BA: radical SAM protein	0.1525339472
+UniRef50_UPI0003B4C0BA: radical SAM protein|unclassified	0.1525339472
+UniRef50_M3YRF2	0.1525271809
+UniRef50_M3YRF2|unclassified	0.1525271809
+UniRef50_UPI0004632840: hypothetical protein	0.1525197348
+UniRef50_UPI0004632840: hypothetical protein|unclassified	0.1525197348
+UniRef50_UPI00039EE191: GTP-binding protein YchF	0.1524990677
+UniRef50_UPI00039EE191: GTP-binding protein YchF|unclassified	0.1524990677
+UniRef50_W5TN10	0.1524911728
+UniRef50_W5TN10|unclassified	0.1524911728
+UniRef50_UPI0002E0235A: hypothetical protein	0.1524867714
+UniRef50_UPI0002E0235A: hypothetical protein|unclassified	0.1524867714
+UniRef50_UPI0004629CB4: hypothetical protein	0.1524859967
+UniRef50_UPI0004629CB4: hypothetical protein|unclassified	0.1524859967
+UniRef50_UPI00024845D8: acetyltransferase	0.1524851554
+UniRef50_UPI00024845D8: acetyltransferase|unclassified	0.1524851554
+UniRef50_UPI00035FCA89: hypothetical protein	0.1524728962
+UniRef50_UPI00035FCA89: hypothetical protein|unclassified	0.1524728962
+UniRef50_Q1QU74: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase	0.1524579037
+UniRef50_Q1QU74: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|unclassified	0.1524579037
+UniRef50_A3QBT1: Holo-[acyl-carrier-protein] synthase	0.1524556937
+UniRef50_A3QBT1: Holo-[acyl-carrier-protein] synthase|unclassified	0.1524556937
+UniRef50_Q12X34	0.1524165931
+UniRef50_Q12X34|unclassified	0.1524165931
+UniRef50_T0N5V1	0.1524061415
+UniRef50_T0N5V1|unclassified	0.1524061415
+UniRef50_U1CYM6	0.1523866273
+UniRef50_U1CYM6|unclassified	0.1523866273
+UniRef50_W7ZLI2: PTS system, mannitol-specific IIB component	0.1523783760
+UniRef50_W7ZLI2: PTS system, mannitol-specific IIB component|unclassified	0.1523783760
+UniRef50_F3N0H6: TPR repeats containing protein	0.1523771430
+UniRef50_F3N0H6: TPR repeats containing protein|unclassified	0.1523771430
+UniRef50_UPI00047E79AF: hypothetical protein	0.1523761273
+UniRef50_UPI00047E79AF: hypothetical protein|unclassified	0.1523761273
+UniRef50_W1JPE5	0.1523757346
+UniRef50_W1JPE5|unclassified	0.1523757346
+UniRef50_S7PYD5	0.1523676928
+UniRef50_S7PYD5|unclassified	0.1523676928
+UniRef50_UPI000464E914: HNH endonuclease	0.1523668021
+UniRef50_UPI000464E914: HNH endonuclease|unclassified	0.1523668021
+UniRef50_R4V728: GMP synthase	0.1523347716
+UniRef50_R4V728: GMP synthase|unclassified	0.1523347716
+UniRef50_W1GJP9: Stage V sporulation protein involved in spore cortex synthesis (SpoVR)	0.1523344743
+UniRef50_W1GJP9: Stage V sporulation protein involved in spore cortex synthesis (SpoVR)|unclassified	0.1523344743
+UniRef50_S8KKR5: Carbamoyl phosphate synthase small subunit	0.1522994509
+UniRef50_S8KKR5: Carbamoyl phosphate synthase small subunit|unclassified	0.1522994509
+UniRef50_F3FPX7: Putative lipoprotein (Fragment)	0.1522969916
+UniRef50_F3FPX7: Putative lipoprotein (Fragment)|unclassified	0.1522969916
+UniRef50_UPI00035F7621: hypothetical protein	0.1522823543
+UniRef50_UPI00035F7621: hypothetical protein|unclassified	0.1522823543
+UniRef50_P42269: 5-carboxymethyl-2-hydroxymuconate semialdehyde dehydrogenase	0.1522471542
+UniRef50_P42269: 5-carboxymethyl-2-hydroxymuconate semialdehyde dehydrogenase|unclassified	0.1522471542
+UniRef50_S5YV90	0.1522429425
+UniRef50_S5YV90|unclassified	0.1522429425
+UniRef50_UPI0003B3DD40: PhoP family transcriptional regulator	0.1522138975
+UniRef50_UPI0003B3DD40: PhoP family transcriptional regulator|unclassified	0.1522138975
+UniRef50_UPI000225B6D4: ribonuclease D	0.1522127888
+UniRef50_UPI000225B6D4: ribonuclease D|unclassified	0.1522127888
+UniRef50_Q7NSY9	0.1522025263
+UniRef50_Q7NSY9|unclassified	0.1522025263
+UniRef50_D3VGH0: Putative mating pair stabilization protein	0.1522017939
+UniRef50_D3VGH0: Putative mating pair stabilization protein|unclassified	0.1522017939
+UniRef50_A6UK37: Periplasmic binding protein/LacI transcriptional regulator	0.1522004628
+UniRef50_A6UK37: Periplasmic binding protein/LacI transcriptional regulator|unclassified	0.1522004628
+UniRef50_UPI00037F1905: hypothetical protein	0.1521791593
+UniRef50_UPI00037F1905: hypothetical protein|unclassified	0.1521791593
+UniRef50_Q11KM4: O-antigen polymerase	0.1521676898
+UniRef50_Q11KM4: O-antigen polymerase|unclassified	0.1521676898
+UniRef50_L5WFQ8: Decarboxylate transporter	0.1521599037
+UniRef50_L5WFQ8: Decarboxylate transporter|unclassified	0.1521599037
+UniRef50_B9JGE0	0.1521540637
+UniRef50_B9JGE0|unclassified	0.1521540637
+UniRef50_P31937: 3-hydroxyisobutyrate dehydrogenase, mitochondrial	0.1521190136
+UniRef50_P31937: 3-hydroxyisobutyrate dehydrogenase, mitochondrial|unclassified	0.1521190136
+UniRef50_UPI000467657D: hypothetical protein	0.1521143900
+UniRef50_UPI000467657D: hypothetical protein|unclassified	0.1521143900
+UniRef50_UPI0003620285: hypothetical protein	0.1520687051
+UniRef50_UPI0003620285: hypothetical protein|unclassified	0.1520687051
+UniRef50_U1LF87	0.1520682468
+UniRef50_U1LF87|unclassified	0.1520682468
+UniRef50_UPI0004759334: hypothetical protein	0.1520648685
+UniRef50_UPI0004759334: hypothetical protein|unclassified	0.1520648685
+UniRef50_Q97C45: Carbamate kinase	0.1520583391
+UniRef50_Q97C45: Carbamate kinase|unclassified	0.1520583391
+UniRef50_D7V0F2	0.1520566461
+UniRef50_D7V0F2|unclassified	0.1520566461
+UniRef50_UPI000378F680: hypothetical protein	0.1520435484
+UniRef50_UPI000378F680: hypothetical protein|unclassified	0.1520435484
+UniRef50_C3H4B9: Response regulator aspartate phosphatase	0.1520307906
+UniRef50_C3H4B9: Response regulator aspartate phosphatase|unclassified	0.1520307906
+UniRef50_UPI00036946D1: hypothetical protein	0.1520236921
+UniRef50_UPI00036946D1: hypothetical protein|unclassified	0.1520236921
+UniRef50_UPI0004639EBF: hypothetical protein, partial	0.1520213485
+UniRef50_UPI0004639EBF: hypothetical protein, partial|unclassified	0.1520213485
+UniRef50_UPI0003B31EFA: cold-shock protein	0.1520160400
+UniRef50_UPI0003B31EFA: cold-shock protein|unclassified	0.1520160400
+UniRef50_UPI0004674AE1: glycerophosphodiester phosphodiesterase, partial	0.1520057918
+UniRef50_UPI0004674AE1: glycerophosphodiester phosphodiesterase, partial|unclassified	0.1520057918
+UniRef50_UPI000464EBB9: peptide ABC transporter permease	0.1520005391
+UniRef50_UPI000464EBB9: peptide ABC transporter permease|unclassified	0.1520005391
+UniRef50_M9RNM0	0.1519917511
+UniRef50_M9RNM0|unclassified	0.1519917511
+UniRef50_UPI00046EFA48: hypothetical protein	0.1519903040
+UniRef50_UPI00046EFA48: hypothetical protein|unclassified	0.1519903040
+UniRef50_I0DQJ1	0.1519865504
+UniRef50_I0DQJ1|unclassified	0.1519865504
+UniRef50_UPI000366C76B: hypothetical protein	0.1519789531
+UniRef50_UPI000366C76B: hypothetical protein|unclassified	0.1519789531
+UniRef50_UPI00037EC779: hypothetical protein	0.1519781862
+UniRef50_UPI00037EC779: hypothetical protein|unclassified	0.1519781862
+UniRef50_UPI000376DAF8: hypothetical protein	0.1519687002
+UniRef50_UPI000376DAF8: hypothetical protein|unclassified	0.1519687002
+UniRef50_UPI000349DAF0: hypothetical protein	0.1519608116
+UniRef50_UPI000349DAF0: hypothetical protein|unclassified	0.1519608116
+UniRef50_A5D508: Carbamoyl-phosphate synthase large chain	0.1519542392
+UniRef50_A5D508: Carbamoyl-phosphate synthase large chain|unclassified	0.1519542392
+UniRef50_UPI000467C382: hypothetical protein, partial	0.1519311520
+UniRef50_UPI000467C382: hypothetical protein, partial|unclassified	0.1519311520
+UniRef50_O68823: DNA polymerase III subunit chi	0.1519241353
+UniRef50_O68823: DNA polymerase III subunit chi|unclassified	0.1519241353
+UniRef50_L8MS48	0.1518954666
+UniRef50_L8MS48|unclassified	0.1518954666
+UniRef50_UPI00039B1B0F: general secretion pathway protein I	0.1518721242
+UniRef50_UPI00039B1B0F: general secretion pathway protein I|unclassified	0.1518721242
+UniRef50_UPI00036CE213: MULTISPECIES: Fis family transcriptional regulator	0.1518553049
+UniRef50_UPI00036CE213: MULTISPECIES: Fis family transcriptional regulator|unclassified	0.1518553049
+UniRef50_UPI0003B2F6BE: aspartyl/glutamyl-tRNA amidotransferase subunit B	0.1518520326
+UniRef50_UPI0003B2F6BE: aspartyl/glutamyl-tRNA amidotransferase subunit B|unclassified	0.1518520326
+UniRef50_X3JCR2	0.1518402804
+UniRef50_X3JCR2|unclassified	0.1518402804
+UniRef50_UPI00036D58A4: hypothetical protein	0.1518358494
+UniRef50_UPI00036D58A4: hypothetical protein|unclassified	0.1518358494
+UniRef50_UPI00046F9A55: UDP-N-acetylenolpyruvoylglucosamine reductase, partial	0.1518338389
+UniRef50_UPI00046F9A55: UDP-N-acetylenolpyruvoylglucosamine reductase, partial|unclassified	0.1518338389
+UniRef50_UPI000370852C: hypothetical protein, partial	0.1518319847
+UniRef50_UPI000370852C: hypothetical protein, partial|unclassified	0.1518319847
+UniRef50_UPI00047B0F79: ATP-dependent DNA helicase PcrA	0.1518201592
+UniRef50_UPI00047B0F79: ATP-dependent DNA helicase PcrA|unclassified	0.1518201592
+UniRef50_F6D7Z2	0.1518103629
+UniRef50_F6D7Z2|unclassified	0.1518103629
+UniRef50_UPI00037F264B: hypothetical protein	0.1518098060
+UniRef50_UPI00037F264B: hypothetical protein|unclassified	0.1518098060
+UniRef50_UPI00036E7529: hypothetical protein	0.1517992871
+UniRef50_UPI00036E7529: hypothetical protein|unclassified	0.1517992871
+UniRef50_UPI000362CC0C: hypothetical protein	0.1517921508
+UniRef50_UPI000362CC0C: hypothetical protein|unclassified	0.1517921508
+UniRef50_A5FHP3: Malate dehydrogenase	0.1517897983
+UniRef50_A5FHP3: Malate dehydrogenase|unclassified	0.1517897983
+UniRef50_UPI000378560A: hypothetical protein, partial	0.1517893689
+UniRef50_UPI000378560A: hypothetical protein, partial|unclassified	0.1517893689
+UniRef50_UPI000360C537: hypothetical protein	0.1517801730
+UniRef50_UPI000360C537: hypothetical protein|unclassified	0.1517801730
+UniRef50_X0Z6H2: Marine sediment metagenome DNA, contig: S01H4_L02664	0.1517726386
+UniRef50_X0Z6H2: Marine sediment metagenome DNA, contig: S01H4_L02664|unclassified	0.1517726386
+UniRef50_UPI00046F8D3D: hypothetical protein, partial	0.1517677173
+UniRef50_UPI00046F8D3D: hypothetical protein, partial|unclassified	0.1517677173
+UniRef50_E3F288	0.1517633397
+UniRef50_E3F288|unclassified	0.1517633397
+UniRef50_V2JCF4	0.1517581436
+UniRef50_V2JCF4|unclassified	0.1517581436
+UniRef50_UPI0004561260: hypothetical protein PFL1_00427	0.1517271147
+UniRef50_UPI0004561260: hypothetical protein PFL1_00427|unclassified	0.1517271147
+UniRef50_UPI00037969BC: hypothetical protein	0.1517257603
+UniRef50_UPI00037969BC: hypothetical protein|unclassified	0.1517257603
+UniRef50_A0A059IQJ7	0.1517090486
+UniRef50_A0A059IQJ7|unclassified	0.1517090486
+UniRef50_A4Y589: Homoserine O-succinyltransferase	0.1517089962
+UniRef50_A4Y589: Homoserine O-succinyltransferase|unclassified	0.1517089962
+UniRef50_UPI0001D2E33B: ABC-type nitrate/sulfonate/bicarbonate transport system ATPase component	0.1516974088
+UniRef50_UPI0001D2E33B: ABC-type nitrate/sulfonate/bicarbonate transport system ATPase component|unclassified	0.1516974088
+UniRef50_U5WYU9	0.1516972563
+UniRef50_U5WYU9|unclassified	0.1516972563
+UniRef50_T1BYX3	0.1516882028
+UniRef50_T1BYX3|unclassified	0.1516882028
+UniRef50_UPI0002F538D8: hypothetical protein	0.1516830821
+UniRef50_UPI0002F538D8: hypothetical protein|unclassified	0.1516830821
+UniRef50_X2H4Y7: UPF0125 protein SALWKB2_1097	0.1516795069
+UniRef50_X2H4Y7: UPF0125 protein SALWKB2_1097|unclassified	0.1516795069
+UniRef50_K1XHK8: IR4 protein	0.1516786513
+UniRef50_K1XHK8: IR4 protein|unclassified	0.1516786513
+UniRef50_Q4FU55: NADH-quinone oxidoreductase subunit K	0.1516737474
+UniRef50_Q4FU55: NADH-quinone oxidoreductase subunit K|unclassified	0.1516737474
+UniRef50_UPI00046961AC: transcriptional regulator	0.1516713734
+UniRef50_UPI00046961AC: transcriptional regulator|unclassified	0.1516713734
+UniRef50_UPI0002E60156: hypothetical protein	0.1516693897
+UniRef50_UPI0002E60156: hypothetical protein|unclassified	0.1516693897
+UniRef50_UPI0003B47F79: membrane protein	0.1516538203
+UniRef50_UPI0003B47F79: membrane protein|unclassified	0.1516538203
+UniRef50_UPI0003C1A4EF: PREDICTED: DNA-directed RNA polymerase subunit alpha-like	0.1516511563
+UniRef50_UPI0003C1A4EF: PREDICTED: DNA-directed RNA polymerase subunit alpha-like|unclassified	0.1516511563
+UniRef50_E3EXU0	0.1516482492
+UniRef50_E3EXU0|unclassified	0.1516482492
+UniRef50_G7Z413	0.1516456619
+UniRef50_G7Z413|unclassified	0.1516456619
+UniRef50_G9A2B9	0.1516222636
+UniRef50_G9A2B9|unclassified	0.1516222636
+UniRef50_C9YG26	0.1516185857
+UniRef50_C9YG26|unclassified	0.1516185857
+UniRef50_UPI00047EECA9: hypothetical protein	0.1516183553
+UniRef50_UPI00047EECA9: hypothetical protein|unclassified	0.1516183553
+UniRef50_UPI000371850A: hypothetical protein	0.1516178633
+UniRef50_UPI000371850A: hypothetical protein|unclassified	0.1516178633
+UniRef50_F0T771	0.1516105705
+UniRef50_F0T771|unclassified	0.1516105705
+UniRef50_U9T899	0.1515986903
+UniRef50_U9T899|unclassified	0.1515986903
+UniRef50_Q7MVV7: Thymidine kinase	0.1515770462
+UniRef50_Q7MVV7: Thymidine kinase|unclassified	0.1515770462
+UniRef50_Q2CIA8	0.1515768355
+UniRef50_Q2CIA8|unclassified	0.1515768355
+UniRef50_UPI0003B48512: ABC transporter substrate-binding protein	0.1515712535
+UniRef50_UPI0003B48512: ABC transporter substrate-binding protein|unclassified	0.1515712535
+UniRef50_UPI00036EA2E0: hypothetical protein	0.1515468456
+UniRef50_UPI00036EA2E0: hypothetical protein|unclassified	0.1515468456
+UniRef50_UPI0003A267F5: hypothetical protein	0.1515447798
+UniRef50_UPI0003A267F5: hypothetical protein|unclassified	0.1515447798
+UniRef50_E3EX83	0.1515382287
+UniRef50_E3EX83|unclassified	0.1515382287
+UniRef50_UPI000406EA27: transposase	0.1515213284
+UniRef50_UPI000406EA27: transposase|unclassified	0.1515213284
+UniRef50_UPI0003B638F3: NADH-quinone oxidoreductase subunit C	0.1515157878
+UniRef50_UPI0003B638F3: NADH-quinone oxidoreductase subunit C|unclassified	0.1515157878
+UniRef50_U6GKY1	0.1515133519
+UniRef50_U6GKY1|unclassified	0.1515133519
+UniRef50_A9VZ27: BolA family protein	0.1515072910
+UniRef50_A9VZ27: BolA family protein|unclassified	0.1515072910
+UniRef50_UPI0004262E77: hypothetical protein	0.1514870569
+UniRef50_UPI0004262E77: hypothetical protein|unclassified	0.1514870569
+UniRef50_UPI000363B64B: hypothetical protein	0.1514801726
+UniRef50_UPI000363B64B: hypothetical protein|unclassified	0.1514801726
+UniRef50_UPI000248C867: glycerophosphoryl diester phosphodiesterase family protein	0.1514710941
+UniRef50_UPI000248C867: glycerophosphoryl diester phosphodiesterase family protein|unclassified	0.1514710941
+UniRef50_UPI0003B61A7D: MAPEG family	0.1514695888
+UniRef50_UPI0003B61A7D: MAPEG family|unclassified	0.1514695888
+UniRef50_R5PFJ0	0.1514551002
+UniRef50_R5PFJ0|unclassified	0.1514551002
+UniRef50_UPI0003EBF881: PREDICTED: glutamate dehydrogenase 1, mitochondrial-like, partial	0.1514405210
+UniRef50_UPI0003EBF881: PREDICTED: glutamate dehydrogenase 1, mitochondrial-like, partial|unclassified	0.1514405210
+UniRef50_R7NTE2: TonB-dependent receptor plug domain protein	0.1514346487
+UniRef50_R7NTE2: TonB-dependent receptor plug domain protein|unclassified	0.1514346487
+UniRef50_I6S4A9: Type IV pilus modification protein PilV	0.1514167228
+UniRef50_I6S4A9: Type IV pilus modification protein PilV|unclassified	0.1514167228
+UniRef50_UPI00035FB32E: hypothetical protein, partial	0.1514054504
+UniRef50_UPI00035FB32E: hypothetical protein, partial|unclassified	0.1514054504
+UniRef50_F3WSY6: MazG family protein	0.1513990771
+UniRef50_F3WSY6: MazG family protein|unclassified	0.1513990771
+UniRef50_A0A033TLC6	0.1513916350
+UniRef50_A0A033TLC6|unclassified	0.1513916350
+UniRef50_UPI00036E381B: hypothetical protein	0.1513891240
+UniRef50_UPI00036E381B: hypothetical protein|unclassified	0.1513891240
+UniRef50_W8RT71	0.1513874994
+UniRef50_W8RT71|unclassified	0.1513874994
+UniRef50_L8BQX8	0.1513839763
+UniRef50_L8BQX8|unclassified	0.1513839763
+UniRef50_I4D4X7	0.1513801809
+UniRef50_I4D4X7|unclassified	0.1513801809
+UniRef50_UPI0002D3C2A9: MULTISPECIES: hypothetical protein	0.1513645282
+UniRef50_UPI0002D3C2A9: MULTISPECIES: hypothetical protein|unclassified	0.1513645282
+UniRef50_UPI00026C7A81: pirin	0.1513475679
+UniRef50_UPI00026C7A81: pirin|unclassified	0.1513475679
+UniRef50_I6R4V1: Putative outer membrane protein (Fragment)	0.1513402407
+UniRef50_I6R4V1: Putative outer membrane protein (Fragment)|unclassified	0.1513402407
+UniRef50_UPI00037D0F95: hypothetical protein	0.1513169383
+UniRef50_UPI00037D0F95: hypothetical protein|unclassified	0.1513169383
+UniRef50_Q31HN9: Holo-[acyl-carrier-protein] synthase	0.1513110054
+UniRef50_Q31HN9: Holo-[acyl-carrier-protein] synthase|unclassified	0.1513110054
+UniRef50_UPI000299FC82: MotA/TolQ/ExbB proton channel	0.1513101541
+UniRef50_UPI000299FC82: MotA/TolQ/ExbB proton channel|unclassified	0.1513101541
+UniRef50_UPI0004711F33: hypothetical protein	0.1513056840
+UniRef50_UPI0004711F33: hypothetical protein|unclassified	0.1513056840
+UniRef50_B0U942: LemA family protein	0.1513042867
+UniRef50_B0U942: LemA family protein|unclassified	0.1513042867
+UniRef50_UPI000444934A: hypothetical protein STEHIDRAFT_148098	0.1513005071
+UniRef50_UPI000444934A: hypothetical protein STEHIDRAFT_148098|unclassified	0.1513005071
+UniRef50_UPI0002889D51: hypothetical protein	0.1512901275
+UniRef50_UPI0002889D51: hypothetical protein|unclassified	0.1512901275
+UniRef50_UPI0004019D7C: hypothetical protein	0.1512744774
+UniRef50_UPI0004019D7C: hypothetical protein|unclassified	0.1512744774
+UniRef50_B9MIC3	0.1512679225
+UniRef50_B9MIC3|unclassified	0.1512679225
+UniRef50_UPI00037D79FE: hypothetical protein	0.1512558434
+UniRef50_UPI00037D79FE: hypothetical protein|unclassified	0.1512558434
+UniRef50_UPI000477E4D3: hypothetical protein	0.1512494293
+UniRef50_UPI000477E4D3: hypothetical protein|unclassified	0.1512494293
+UniRef50_P24893: Cytochrome c oxidase subunit 1	0.1512431536
+UniRef50_P24893: Cytochrome c oxidase subunit 1|unclassified	0.1512431536
+UniRef50_P55170: Nitrogenase molybdenum-iron protein alpha chain	0.1512377887
+UniRef50_P55170: Nitrogenase molybdenum-iron protein alpha chain|unclassified	0.1512377887
+UniRef50_M9VCZ7	0.1512257951
+UniRef50_M9VCZ7|unclassified	0.1512257951
+UniRef50_UPI0003828223: hypothetical protein	0.1512071243
+UniRef50_UPI0003828223: hypothetical protein|unclassified	0.1512071243
+UniRef50_UPI00030C6615: ATPase AAA	0.1512044594
+UniRef50_UPI00030C6615: ATPase AAA|unclassified	0.1512044594
+UniRef50_UPI00036E67D0: hypothetical protein	0.1512029161
+UniRef50_UPI00036E67D0: hypothetical protein|unclassified	0.1512029161
+UniRef50_S4P3V2: UPF0047 protein C4A8.02c (Fragment)	0.1511995733
+UniRef50_S4P3V2: UPF0047 protein C4A8.02c (Fragment)|unclassified	0.1511995733
+UniRef50_M7TDD9	0.1511962616
+UniRef50_M7TDD9|unclassified	0.1511962616
+UniRef50_UPI000376F465: hypothetical protein	0.1511873628
+UniRef50_UPI000376F465: hypothetical protein|unclassified	0.1511873628
+UniRef50_Q7M8H4: 7-cyano-7-deazaguanine synthase	0.1511842905
+UniRef50_Q7M8H4: 7-cyano-7-deazaguanine synthase|unclassified	0.1511842905
+UniRef50_F9ZYI1: DoxX family protein	0.1511828161
+UniRef50_F9ZYI1: DoxX family protein|unclassified	0.1511828161
+UniRef50_Q2RZV3: ATP synthase subunit beta	0.1511486963
+UniRef50_Q2RZV3: ATP synthase subunit beta|unclassified	0.1511486963
+UniRef50_A0A024HJV7	0.1511433539
+UniRef50_A0A024HJV7|unclassified	0.1511433539
+UniRef50_Q89IC6: Blr5713 protein	0.1511055600
+UniRef50_Q89IC6: Blr5713 protein|unclassified	0.1511055600
+UniRef50_B4RDA5	0.1510903266
+UniRef50_B4RDA5|unclassified	0.1510903266
+UniRef50_UPI00045E24AF: PREDICTED: prostamide/prostaglandin F synthase isoform X1	0.1510889251
+UniRef50_UPI00045E24AF: PREDICTED: prostamide/prostaglandin F synthase isoform X1|unclassified	0.1510889251
+UniRef50_B8B7S4	0.1510889037
+UniRef50_B8B7S4|unclassified	0.1510889037
+UniRef50_UPI0004650828: hypothetical protein	0.1510675543
+UniRef50_UPI0004650828: hypothetical protein|unclassified	0.1510675543
+UniRef50_UPI00046F1426: hypothetical protein	0.1510456085
+UniRef50_UPI00046F1426: hypothetical protein|unclassified	0.1510456085
+UniRef50_UPI00035CF64D: hypothetical protein	0.1510358667
+UniRef50_UPI00035CF64D: hypothetical protein|unclassified	0.1510358667
+UniRef50_U5L718	0.1510266018
+UniRef50_U5L718|unclassified	0.1510266018
+UniRef50_UPI0003B6BA24: GTPase Era	0.1510210917
+UniRef50_UPI0003B6BA24: GTPase Era|unclassified	0.1510210917
+UniRef50_V6HDY5: IS66 family element, Orf2 protein	0.1510185318
+UniRef50_V6HDY5: IS66 family element, Orf2 protein|unclassified	0.1510185318
+UniRef50_UPI00042B2DF2: Mitochondrial ribosomal L11-like protein	0.1510137195
+UniRef50_UPI00042B2DF2: Mitochondrial ribosomal L11-like protein|unclassified	0.1510137195
+UniRef50_W6ASC1	0.1510018853
+UniRef50_W6ASC1|unclassified	0.1510018853
+UniRef50_UPI000474B689: hypothetical protein	0.1509876538
+UniRef50_UPI000474B689: hypothetical protein|unclassified	0.1509876538
+UniRef50_C6X192: Transcriptional regulator, PadR family	0.1509834511
+UniRef50_C6X192: Transcriptional regulator, PadR family|unclassified	0.1509834511
+UniRef50_UPI000370423B: hypothetical protein, partial	0.1509698765
+UniRef50_UPI000370423B: hypothetical protein, partial|unclassified	0.1509698765
+UniRef50_X2NBL4	0.1509660908
+UniRef50_X2NBL4|unclassified	0.1509660908
+UniRef50_UPI0002626748: hypothetical protein	0.1509643431
+UniRef50_UPI0002626748: hypothetical protein|unclassified	0.1509643431
+UniRef50_UPI0003DEA73F: PREDICTED: adenylyl-sulfate kinase, chloroplastic-like isoform X1	0.1509603685
+UniRef50_UPI0003DEA73F: PREDICTED: adenylyl-sulfate kinase, chloroplastic-like isoform X1|unclassified	0.1509603685
+UniRef50_UPI000424F3F7: 2-hydroxyacid dehydrogenase	0.1509486393
+UniRef50_UPI000424F3F7: 2-hydroxyacid dehydrogenase|unclassified	0.1509486393
+UniRef50_F8JCE4	0.1509307014
+UniRef50_F8JCE4|unclassified	0.1509307014
+UniRef50_UPI0003B3CC7C: methyltransferase	0.1509238739
+UniRef50_UPI0003B3CC7C: methyltransferase|unclassified	0.1509238739
+UniRef50_U6L5K4	0.1509143951
+UniRef50_U6L5K4|unclassified	0.1509143951
+UniRef50_UPI00037A3195: hypothetical protein, partial	0.1509047050
+UniRef50_UPI00037A3195: hypothetical protein, partial|unclassified	0.1509047050
+UniRef50_UPI0004092420: hypothetical protein	0.1509041026
+UniRef50_UPI0004092420: hypothetical protein|unclassified	0.1509041026
+UniRef50_UPI00036CD6E5: hypothetical protein	0.1508894159
+UniRef50_UPI00036CD6E5: hypothetical protein|unclassified	0.1508894159
+UniRef50_UPI0003B553F2: hypothetical protein, partial	0.1508766715
+UniRef50_UPI0003B553F2: hypothetical protein, partial|unclassified	0.1508766715
+UniRef50_UPI00016C54C0: histidinol dehydrogenase	0.1508758160
+UniRef50_UPI00016C54C0: histidinol dehydrogenase|unclassified	0.1508758160
+UniRef50_Q6SZP3: Putative 50S ribosomal subunit protein (Fragment)	0.1508677802
+UniRef50_Q6SZP3: Putative 50S ribosomal subunit protein (Fragment)|unclassified	0.1508677802
+UniRef50_P44758: Hybrid peroxiredoxin hyPrx5	0.1508649149
+UniRef50_P44758: Hybrid peroxiredoxin hyPrx5|unclassified	0.1508649149
+UniRef50_UPI0003D71F05: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial isoform X4	0.1508582852
+UniRef50_UPI0003D71F05: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial isoform X4|unclassified	0.1508582852
+UniRef50_J7QGI2: Escherichia coli IMT2125 genomic chromosome, IMT2125	0.1508477055
+UniRef50_J7QGI2: Escherichia coli IMT2125 genomic chromosome, IMT2125|unclassified	0.1508477055
+UniRef50_UPI00047341A0: 3-isopropylmalate dehydrogenase, partial	0.1508464897
+UniRef50_UPI00047341A0: 3-isopropylmalate dehydrogenase, partial|unclassified	0.1508464897
+UniRef50_C0P9M7	0.1508451479
+UniRef50_C0P9M7|unclassified	0.1508451479
+UniRef50_UPI00037E43BB: hypothetical protein	0.1508409861
+UniRef50_UPI00037E43BB: hypothetical protein|unclassified	0.1508409861
+UniRef50_D4KEB2: ABC-type cobalt transport system, permease component CbiQ and related transporters	0.1508388273
+UniRef50_D4KEB2: ABC-type cobalt transport system, permease component CbiQ and related transporters|unclassified	0.1508388273
+UniRef50_B2S9C4: Orotidine 5'-phosphate decarboxylase	0.1508385089
+UniRef50_B2S9C4: Orotidine 5'-phosphate decarboxylase|unclassified	0.1508385089
+UniRef50_R1EL10	0.1508243882
+UniRef50_R1EL10|unclassified	0.1508243882
+UniRef50_X0XKB2: Marine sediment metagenome DNA, contig: S01H1_S37789 (Fragment)	0.1508146538
+UniRef50_X0XKB2: Marine sediment metagenome DNA, contig: S01H1_S37789 (Fragment)|unclassified	0.1508146538
+UniRef50_UPI00016A50E7: 2-nitropropane dioxygenase, NPD, partial	0.1508064562
+UniRef50_UPI00016A50E7: 2-nitropropane dioxygenase, NPD, partial|unclassified	0.1508064562
+UniRef50_V5PXG1	0.1507646269
+UniRef50_V5PXG1|unclassified	0.1507646269
+UniRef50_C3A4E4	0.1507635236
+UniRef50_C3A4E4|unclassified	0.1507635236
+UniRef50_E4PPI0: UPF0125 protein HP15_3087	0.1507630475
+UniRef50_E4PPI0: UPF0125 protein HP15_3087|unclassified	0.1507630475
+UniRef50_UPI00040819A1: molybdenum cofactor biosynthesis protein MoaC	0.1507442633
+UniRef50_UPI00040819A1: molybdenum cofactor biosynthesis protein MoaC|unclassified	0.1507442633
+UniRef50_Q21FF5: DGPFAETKE domain protein	0.1507388453
+UniRef50_Q21FF5: DGPFAETKE domain protein|unclassified	0.1507388453
+UniRef50_Q6AAT0: Cysteine--tRNA ligase	0.1507332919
+UniRef50_Q6AAT0: Cysteine--tRNA ligase|unclassified	0.1507332919
+UniRef50_J9ABQ4	0.1507315723
+UniRef50_J9ABQ4|unclassified	0.1507315723
+UniRef50_W4N4Q3	0.1507305193
+UniRef50_W4N4Q3|unclassified	0.1507305193
+UniRef50_R6GWD9: GTP-binding protein TypA	0.1507239203
+UniRef50_R6GWD9: GTP-binding protein TypA|unclassified	0.1507239203
+UniRef50_R5RLW6: TIGR00159 family protein	0.1507201319
+UniRef50_R5RLW6: TIGR00159 family protein|unclassified	0.1507201319
+UniRef50_UPI00045E7782: xanthine dehydrogenase	0.1507179841
+UniRef50_UPI00045E7782: xanthine dehydrogenase|unclassified	0.1507179841
+UniRef50_U6ANV5	0.1507159005
+UniRef50_U6ANV5|g__Pseudomonas.s__Pseudomonas_aeruginosa	0.1507159005
+UniRef50_UPI00021928D0: 3-keto-L-gulonate-6-phosphate decarboxylase, partial	0.1506943134
+UniRef50_UPI00021928D0: 3-keto-L-gulonate-6-phosphate decarboxylase, partial|unclassified	0.1506943134
+UniRef50_UPI000383B0B4: PREDICTED: fibril-forming collagen alpha chain-like	0.1506834796
+UniRef50_UPI000383B0B4: PREDICTED: fibril-forming collagen alpha chain-like|unclassified	0.1506834796
+UniRef50_A0A032A4G9	0.1506682550
+UniRef50_A0A032A4G9|unclassified	0.1506682550
+UniRef50_F8FFA0: YtsP	0.1506626692
+UniRef50_F8FFA0: YtsP|unclassified	0.1506626692
+UniRef50_U3TJF0: UPF0176 protein SDSE167_1417	0.1506610031
+UniRef50_U3TJF0: UPF0176 protein SDSE167_1417|unclassified	0.1506610031
+UniRef50_Q6I3D4	0.1506554070
+UniRef50_Q6I3D4|unclassified	0.1506554070
+UniRef50_Q9CBW1: Dihydrofolate reductase	0.1506147676
+UniRef50_Q9CBW1: Dihydrofolate reductase|unclassified	0.1506147676
+UniRef50_UPI000360CFF1: hypothetical protein	0.1505996992
+UniRef50_UPI000360CFF1: hypothetical protein|unclassified	0.1505996992
+UniRef50_B3QR98: DNA-directed RNA polymerase subunit alpha	0.1505989283
+UniRef50_B3QR98: DNA-directed RNA polymerase subunit alpha|unclassified	0.1505989283
+UniRef50_UPI00035DAB70: hypothetical protein	0.1505955773
+UniRef50_UPI00035DAB70: hypothetical protein|unclassified	0.1505955773
+UniRef50_E9E8J7	0.1505722402
+UniRef50_E9E8J7|unclassified	0.1505722402
+UniRef50_E6Q6J2: Thioesterase superfamily	0.1505702585
+UniRef50_E6Q6J2: Thioesterase superfamily|unclassified	0.1505702585
+UniRef50_M5BDN7	0.1505692636
+UniRef50_M5BDN7|unclassified	0.1505692636
+UniRef50_UPI000374DF31: hypothetical protein	0.1505687149
+UniRef50_UPI000374DF31: hypothetical protein|unclassified	0.1505687149
+UniRef50_UPI0003696B03: hypothetical protein	0.1505418884
+UniRef50_UPI0003696B03: hypothetical protein|unclassified	0.1505418884
+UniRef50_K2DYM9: Pilus assembly protein PilC (Fragment)	0.1505375234
+UniRef50_K2DYM9: Pilus assembly protein PilC (Fragment)|unclassified	0.1505375234
+UniRef50_UPI0002DA03C1: hypothetical protein	0.1505251613
+UniRef50_UPI0002DA03C1: hypothetical protein|unclassified	0.1505251613
+UniRef50_UPI000263030B: myosin-cross-reactive antigen	0.1505241649
+UniRef50_UPI000263030B: myosin-cross-reactive antigen|unclassified	0.1505241649
+UniRef50_UPI0003714141: hypothetical protein	0.1505008226
+UniRef50_UPI0003714141: hypothetical protein|unclassified	0.1505008226
+UniRef50_UPI00016B0847: ABC transporter, ATP-binding protein domain protein, partial	0.1504906972
+UniRef50_UPI00016B0847: ABC transporter, ATP-binding protein domain protein, partial|unclassified	0.1504906972
+UniRef50_L1JWK7	0.1504890820
+UniRef50_L1JWK7|unclassified	0.1504890820
+UniRef50_UPI000469E31A: hypothetical protein	0.1504851531
+UniRef50_UPI000469E31A: hypothetical protein|unclassified	0.1504851531
+UniRef50_UPI00047E15BC: hypothetical protein	0.1504809684
+UniRef50_UPI00047E15BC: hypothetical protein|unclassified	0.1504809684
+UniRef50_W1Y8D8: Chaperone protein ClpB (Fragment)	0.1504719005
+UniRef50_W1Y8D8: Chaperone protein ClpB (Fragment)|unclassified	0.1504719005
+UniRef50_UPI00037150B0: hypothetical protein	0.1504669563
+UniRef50_UPI00037150B0: hypothetical protein|unclassified	0.1504669563
+UniRef50_UPI0003724FBD: hypothetical protein	0.1504618703
+UniRef50_UPI0003724FBD: hypothetical protein|unclassified	0.1504618703
+UniRef50_UPI0004692324: hypothetical protein	0.1504581177
+UniRef50_UPI0004692324: hypothetical protein|unclassified	0.1504581177
+UniRef50_G0HCK5	0.1504578858
+UniRef50_G0HCK5|unclassified	0.1504578858
+UniRef50_G8PG31: Ferric anguibactin-binding protein	0.1504433824
+UniRef50_G8PG31: Ferric anguibactin-binding protein|unclassified	0.1504433824
+UniRef50_UPI0003C7B457: elongation factor G	0.1504415772
+UniRef50_UPI0003C7B457: elongation factor G|unclassified	0.1504415772
+UniRef50_UPI0004679F99: hypothetical protein	0.1504389844
+UniRef50_UPI0004679F99: hypothetical protein|unclassified	0.1504389844
+UniRef50_C7NTI4: Oxidoreductase	0.1503941848
+UniRef50_C7NTI4: Oxidoreductase|unclassified	0.1503941848
+UniRef50_V5SF50: 3-dehydroquinate dehydratase	0.1503796724
+UniRef50_V5SF50: 3-dehydroquinate dehydratase|unclassified	0.1503796724
+UniRef50_UPI0004630917: hypothetical protein	0.1503764257
+UniRef50_UPI0004630917: hypothetical protein|unclassified	0.1503764257
+UniRef50_P9WMY4: GDP-mannose-dependent alpha-mannosyltransferase	0.1503700279
+UniRef50_P9WMY4: GDP-mannose-dependent alpha-mannosyltransferase|unclassified	0.1503700279
+UniRef50_UPI0002375AF0: molybdopterin biosynthesis MoaE	0.1503643284
+UniRef50_UPI0002375AF0: molybdopterin biosynthesis MoaE|unclassified	0.1503643284
+UniRef50_UPI0003777847: hypothetical protein	0.1503608303
+UniRef50_UPI0003777847: hypothetical protein|unclassified	0.1503608303
+UniRef50_UPI000478E007: hypothetical protein	0.1503537724
+UniRef50_UPI000478E007: hypothetical protein|unclassified	0.1503537724
+UniRef50_I1XI19	0.1503515456
+UniRef50_I1XI19|unclassified	0.1503515456
+UniRef50_Q57CX9: Uridylate kinase	0.1503486306
+UniRef50_Q57CX9: Uridylate kinase|unclassified	0.1503486306
+UniRef50_Q8YHH4: Uridylate kinase	0.1503486306
+UniRef50_Q8YHH4: Uridylate kinase|unclassified	0.1503486306
+UniRef50_UPI000478BF60: UDP pyrophosphate phosphatase	0.1503360966
+UniRef50_UPI000478BF60: UDP pyrophosphate phosphatase|unclassified	0.1503360966
+UniRef50_D4YX66: Pirin-related protein	0.1503352096
+UniRef50_D4YX66: Pirin-related protein|unclassified	0.1503352096
+UniRef50_UPI00046688A3: hypothetical protein, partial	0.1503348750
+UniRef50_UPI00046688A3: hypothetical protein, partial|unclassified	0.1503348750
+UniRef50_UPI0003EE7EAE: acetyl-CoA acetyltransferase	0.1503328637
+UniRef50_UPI0003EE7EAE: acetyl-CoA acetyltransferase|unclassified	0.1503328637
+UniRef50_U6LJB2	0.1503228679
+UniRef50_U6LJB2|unclassified	0.1503228679
+UniRef50_H8J9W8	0.1503185289
+UniRef50_H8J9W8|unclassified	0.1503185289
+UniRef50_C4Y543	0.1503136203
+UniRef50_C4Y543|unclassified	0.1503136203
+UniRef50_Q9RTA6	0.1502830502
+UniRef50_Q9RTA6|unclassified	0.1502830502
+UniRef50_Q2SP67: ABC-type metal ion transport system, periplasmic component/surface adhesin	0.1502771488
+UniRef50_Q2SP67: ABC-type metal ion transport system, periplasmic component/surface adhesin|unclassified	0.1502771488
+UniRef50_A1AZ02	0.1502614405
+UniRef50_A1AZ02|unclassified	0.1502614405
+UniRef50_UPI00036B1E93: hypothetical protein	0.1502434320
+UniRef50_UPI00036B1E93: hypothetical protein|unclassified	0.1502434320
+UniRef50_UPI000288BB54: hypothetical protein	0.1502406526
+UniRef50_UPI000288BB54: hypothetical protein|unclassified	0.1502406526
+UniRef50_UPI00037E3FD0: hypothetical protein	0.1502248546
+UniRef50_UPI00037E3FD0: hypothetical protein|unclassified	0.1502248546
+UniRef50_V4QV27: Enoyl-CoA hydratase	0.1502005331
+UniRef50_V4QV27: Enoyl-CoA hydratase|unclassified	0.1502005331
+UniRef50_UPI00036F5917: hypothetical protein	0.1501996229
+UniRef50_UPI00036F5917: hypothetical protein|unclassified	0.1501996229
+UniRef50_B0TVV8: Adenylosuccinate synthetase	0.1501940255
+UniRef50_B0TVV8: Adenylosuccinate synthetase|unclassified	0.1501940255
+UniRef50_UPI00046B9AFC: PREDICTED: aldose 1-epimerase-like	0.1501803033
+UniRef50_UPI00046B9AFC: PREDICTED: aldose 1-epimerase-like|unclassified	0.1501803033
+UniRef50_UPI00036A2733: hypothetical protein	0.1501778614
+UniRef50_UPI00036A2733: hypothetical protein|unclassified	0.1501778614
+UniRef50_UPI000369E32A: single-stranded DNA-binding protein	0.1501764987
+UniRef50_UPI000369E32A: single-stranded DNA-binding protein|unclassified	0.1501764987
+UniRef50_P42449: Isocitrate lyase	0.1501729546
+UniRef50_P42449: Isocitrate lyase|unclassified	0.1501729546
+UniRef50_UPI000378E1A2: hypothetical protein	0.1501688477
+UniRef50_UPI000378E1A2: hypothetical protein|unclassified	0.1501688477
+UniRef50_L8F2E8	0.1501628476
+UniRef50_L8F2E8|unclassified	0.1501628476
+UniRef50_UPI000368693F: hypothetical protein, partial	0.1501602262
+UniRef50_UPI000368693F: hypothetical protein, partial|unclassified	0.1501602262
+UniRef50_UPI000470A4C8: RNA pyrophosphohydrolase	0.1501583231
+UniRef50_UPI000470A4C8: RNA pyrophosphohydrolase|unclassified	0.1501583231
+UniRef50_UPI0003B78B56: acetolactate synthase	0.1501393444
+UniRef50_UPI0003B78B56: acetolactate synthase|unclassified	0.1501393444
+UniRef50_UPI000360EF37: hypothetical protein, partial	0.1501276470
+UniRef50_UPI000360EF37: hypothetical protein, partial|unclassified	0.1501276470
+UniRef50_UPI0004625A4E: molybdenum cofactor biosynthesis protein A, partial	0.1501132633
+UniRef50_UPI0004625A4E: molybdenum cofactor biosynthesis protein A, partial|unclassified	0.1501132633
+UniRef50_Q81K13: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 1	0.1501025831
+UniRef50_Q81K13: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 1|unclassified	0.1501025831
+UniRef50_UPI0003B301E5: molybdopterin biosynthesis protein MoeB	0.1500944948
+UniRef50_UPI0003B301E5: molybdopterin biosynthesis protein MoeB|unclassified	0.1500944948
+UniRef50_B7LBZ3	0.1500835293
+UniRef50_B7LBZ3|unclassified	0.1500835293
+UniRef50_UPI0004719EAD: ATPase	0.1500795044
+UniRef50_UPI0004719EAD: ATPase|unclassified	0.1500795044
+UniRef50_UPI00016C0C9C: hypothetical protein	0.1500744491
+UniRef50_UPI00016C0C9C: hypothetical protein|unclassified	0.1500744491
+UniRef50_W9GEY0	0.1500733527
+UniRef50_W9GEY0|unclassified	0.1500733527
+UniRef50_U4V451	0.1500615711
+UniRef50_U4V451|unclassified	0.1500615711
+UniRef50_Q7UJC4: Phosphoribosyl-AMP cyclohydrolase	0.1500592114
+UniRef50_Q7UJC4: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.1500592114
+UniRef50_A0A023GFN3: Putative swap mrna splicing regulator (Fragment)	0.1500425680
+UniRef50_A0A023GFN3: Putative swap mrna splicing regulator (Fragment)|unclassified	0.1500425680
+UniRef50_UPI00047845D7: hypothetical protein	0.1500314182
+UniRef50_UPI00047845D7: hypothetical protein|unclassified	0.1500314182
+UniRef50_UPI000289A42B: phage protein	0.1500262703
+UniRef50_UPI000289A42B: phage protein|unclassified	0.1500262703
+UniRef50_UPI00020D97DB: xanthine phosphoribosyltransferase	0.1500200173
+UniRef50_UPI00020D97DB: xanthine phosphoribosyltransferase|unclassified	0.1500200173
+UniRef50_C1D4X3: DUF526 domain containing protein	0.1500170887
+UniRef50_C1D4X3: DUF526 domain containing protein|unclassified	0.1500170887
+UniRef50_UPI0003A59A55: chorismate synthase	0.1499933673
+UniRef50_UPI0003A59A55: chorismate synthase|unclassified	0.1499933673
+UniRef50_UPI00044341F7: PREDICTED: collagen alpha-1(I) chain-like	0.1499933207
+UniRef50_UPI00044341F7: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.1499933207
+UniRef50_F3Q358	0.1499882505
+UniRef50_F3Q358|unclassified	0.1499882505
+UniRef50_R7B6C4	0.1499699454
+UniRef50_R7B6C4|unclassified	0.1499699454
+UniRef50_D9V5U8: Predicted protein	0.1499682927
+UniRef50_D9V5U8: Predicted protein|unclassified	0.1499682927
+UniRef50_Q57417: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.1499597163
+UniRef50_Q57417: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.1499597163
+UniRef50_UPI000345BCCA: hypothetical protein	0.1499576105
+UniRef50_UPI000345BCCA: hypothetical protein|unclassified	0.1499576105
+UniRef50_F3Z677: Putative GTP-dependent nucleic acid-binding protein EngD	0.1499521952
+UniRef50_F3Z677: Putative GTP-dependent nucleic acid-binding protein EngD|unclassified	0.1499521952
+UniRef50_UPI0004700B89: hypothetical protein	0.1499482186
+UniRef50_UPI0004700B89: hypothetical protein|unclassified	0.1499482186
+UniRef50_D5GYD1: Alkaline shock protein	0.1499436473
+UniRef50_D5GYD1: Alkaline shock protein|unclassified	0.1499436473
+UniRef50_UPI0003C12053	0.1499411881
+UniRef50_UPI0003C12053|unclassified	0.1499411881
+UniRef50_A8M621: NADH-quinone oxidoreductase subunit B 2	0.1499406082
+UniRef50_A8M621: NADH-quinone oxidoreductase subunit B 2|unclassified	0.1499406082
+UniRef50_UPI00016B220F: threonine dehydratase	0.1499337900
+UniRef50_UPI00016B220F: threonine dehydratase|unclassified	0.1499337900
+UniRef50_B9MPF7: Histidine--tRNA ligase	0.1499248009
+UniRef50_B9MPF7: Histidine--tRNA ligase|unclassified	0.1499248009
+UniRef50_S9QR10: Exopolyphosphatase	0.1499247646
+UniRef50_S9QR10: Exopolyphosphatase|unclassified	0.1499247646
+UniRef50_Q9AQC8: 3-isopropylmalate dehydrogenase (Fragment)	0.1499240515
+UniRef50_Q9AQC8: 3-isopropylmalate dehydrogenase (Fragment)|unclassified	0.1499240515
+UniRef50_UPI00026562D1: PREDICTED: LOW QUALITY PROTEIN: potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel 2	0.1499191024
+UniRef50_UPI00026562D1: PREDICTED: LOW QUALITY PROTEIN: potassium/sodium hyperpolarization-activated cyclic nucleotide-gated channel 2|unclassified	0.1499191024
+UniRef50_A1VGE5: Adenine deaminase	0.1499040340
+UniRef50_A1VGE5: Adenine deaminase|unclassified	0.1499040340
+UniRef50_UPI000225BE36: ATP-dependent DNA helicase	0.1498987271
+UniRef50_UPI000225BE36: ATP-dependent DNA helicase|unclassified	0.1498987271
+UniRef50_B2UBH0: Carbon monoxide dehydrogenase subunit G	0.1498925329
+UniRef50_B2UBH0: Carbon monoxide dehydrogenase subunit G|unclassified	0.1498925329
+UniRef50_UPI0004249469: hypothetical protein	0.1498922154
+UniRef50_UPI0004249469: hypothetical protein|unclassified	0.1498922154
+UniRef50_S6HUT6: Type 4 fimbrial biogenesis protein PilN	0.1498764922
+UniRef50_S6HUT6: Type 4 fimbrial biogenesis protein PilN|unclassified	0.1498764922
+UniRef50_Q11RE2: ATP-dependent 6-phosphofructokinase	0.1498746564
+UniRef50_Q11RE2: ATP-dependent 6-phosphofructokinase|unclassified	0.1498746564
+UniRef50_UPI000475EB05: hypothetical protein, partial	0.1498640126
+UniRef50_UPI000475EB05: hypothetical protein, partial|unclassified	0.1498640126
+UniRef50_UPI0003AFAFF5: PREDICTED: cationic amino acid transporter 4, partial	0.1498587213
+UniRef50_UPI0003AFAFF5: PREDICTED: cationic amino acid transporter 4, partial|unclassified	0.1498587213
+UniRef50_UPI00036C0568: hypothetical protein	0.1498573287
+UniRef50_UPI00036C0568: hypothetical protein|unclassified	0.1498573287
+UniRef50_UPI000367E141: hypothetical protein	0.1498531872
+UniRef50_UPI000367E141: hypothetical protein|unclassified	0.1498531872
+UniRef50_UPI00034789FE: hypothetical protein	0.1498412305
+UniRef50_UPI00034789FE: hypothetical protein|unclassified	0.1498412305
+UniRef50_UPI00037D2065: hypothetical protein	0.1498244563
+UniRef50_UPI00037D2065: hypothetical protein|unclassified	0.1498244563
+UniRef50_UPI0003823A9F: hypothetical protein	0.1497927136
+UniRef50_UPI0003823A9F: hypothetical protein|unclassified	0.1497927136
+UniRef50_Q0UTS5	0.1497894215
+UniRef50_Q0UTS5|unclassified	0.1497894215
+UniRef50_UPI0002C3334A: PREDICTED: stomatin-like protein 2-like	0.1497836722
+UniRef50_UPI0002C3334A: PREDICTED: stomatin-like protein 2-like|unclassified	0.1497836722
+UniRef50_A8LE21: Peptide deformylase	0.1497762733
+UniRef50_A8LE21: Peptide deformylase|unclassified	0.1497762733
+UniRef50_UPI0003EF779D: hypothetical protein, partial	0.1497666023
+UniRef50_UPI0003EF779D: hypothetical protein, partial|unclassified	0.1497666023
+UniRef50_D0K3B6	0.1497649070
+UniRef50_D0K3B6|unclassified	0.1497649070
+UniRef50_UPI0003B77BB3: ATPase AAA, partial	0.1497609915
+UniRef50_UPI0003B77BB3: ATPase AAA, partial|unclassified	0.1497609915
+UniRef50_K7E3A5	0.1497526217
+UniRef50_K7E3A5|unclassified	0.1497526217
+UniRef50_X2LYK6: Nitrite reductase	0.1497388049
+UniRef50_X2LYK6: Nitrite reductase|unclassified	0.1497388049
+UniRef50_C3MZM4: Nucleoside diphosphate kinase	0.1497387730
+UniRef50_C3MZM4: Nucleoside diphosphate kinase|unclassified	0.1497387730
+UniRef50_UPI0003B7AA4B: iron transporter	0.1497366977
+UniRef50_UPI0003B7AA4B: iron transporter|unclassified	0.1497366977
+UniRef50_D0CTG3	0.1497331269
+UniRef50_D0CTG3|unclassified	0.1497331269
+UniRef50_UPI000378C8E7: hypothetical protein	0.1497243159
+UniRef50_UPI000378C8E7: hypothetical protein|unclassified	0.1497243159
+UniRef50_UPI000475FA61: membrane protein	0.1497161184
+UniRef50_UPI000475FA61: membrane protein|unclassified	0.1497161184
+UniRef50_Q6ARF1: Cytochrome c-552	0.1497081217
+UniRef50_Q6ARF1: Cytochrome c-552|unclassified	0.1497081217
+UniRef50_R5IFX8	0.1497029882
+UniRef50_R5IFX8|unclassified	0.1497029882
+UniRef50_V2Y529	0.1497022503
+UniRef50_V2Y529|unclassified	0.1497022503
+UniRef50_Q9CGM3: Putative GTP cyclohydrolase 1 type 2	0.1496769366
+UniRef50_Q9CGM3: Putative GTP cyclohydrolase 1 type 2|unclassified	0.1496769366
+UniRef50_UPI0003B710BC: hypothetical protein	0.1496686013
+UniRef50_UPI0003B710BC: hypothetical protein|unclassified	0.1496686013
+UniRef50_UPI00037FCFC2: hypothetical protein, partial	0.1496597375
+UniRef50_UPI00037FCFC2: hypothetical protein, partial|unclassified	0.1496597375
+UniRef50_V9B5C8: Transketolase, thiamine pyrophosphate-binding domain protein	0.1496568335
+UniRef50_V9B5C8: Transketolase, thiamine pyrophosphate-binding domain protein|unclassified	0.1496568335
+UniRef50_S5QWU4: Phosphoglycerate mutase family protein, putative	0.1496540916
+UniRef50_S5QWU4: Phosphoglycerate mutase family protein, putative|unclassified	0.1496540916
+UniRef50_B0TY89: Threonine--tRNA ligase	0.1496232044
+UniRef50_B0TY89: Threonine--tRNA ligase|unclassified	0.1496232044
+UniRef50_R9YPM3	0.1495971490
+UniRef50_R9YPM3|unclassified	0.1495971490
+UniRef50_UPI000475E604: hypothetical protein	0.1495966694
+UniRef50_UPI000475E604: hypothetical protein|unclassified	0.1495966694
+UniRef50_UPI0003734BFD: transaldolase, partial	0.1495946073
+UniRef50_UPI0003734BFD: transaldolase, partial|unclassified	0.1495946073
+UniRef50_X1NRC9: Marine sediment metagenome DNA, contig: S06H3_S02731	0.1495883896
+UniRef50_X1NRC9: Marine sediment metagenome DNA, contig: S06H3_S02731|unclassified	0.1495883896
+UniRef50_R8CLI1	0.1495863689
+UniRef50_R8CLI1|unclassified	0.1495863689
+UniRef50_UPI0004719EAE: hypothetical protein	0.1495693182
+UniRef50_UPI0004719EAE: hypothetical protein|unclassified	0.1495693182
+UniRef50_P26839: Virginiamycin A acetyltransferase	0.1495682983
+UniRef50_P26839: Virginiamycin A acetyltransferase|unclassified	0.1495682983
+UniRef50_G7Z3F3	0.1495649381
+UniRef50_G7Z3F3|unclassified	0.1495649381
+UniRef50_UPI000376FEE1: hypothetical protein	0.1495552268
+UniRef50_UPI000376FEE1: hypothetical protein|unclassified	0.1495552268
+UniRef50_Z5XA37: Quinolinate synthetase	0.1495537764
+UniRef50_Z5XA37: Quinolinate synthetase|unclassified	0.1495537764
+UniRef50_UPI0002E168C7: hypothetical protein	0.1495530458
+UniRef50_UPI0002E168C7: hypothetical protein|unclassified	0.1495530458
+UniRef50_J9NWX0	0.1495496863
+UniRef50_J9NWX0|unclassified	0.1495496863
+UniRef50_R5GK07: Bile acid 7-dehydroxylase 1/3	0.1495014628
+UniRef50_R5GK07: Bile acid 7-dehydroxylase 1/3|unclassified	0.1495014628
+UniRef50_V7I460: Portal protein (Fragment)	0.1494883397
+UniRef50_V7I460: Portal protein (Fragment)|unclassified	0.1494883397
+UniRef50_UPI0003C138DF: PREDICTED: probable carboxypeptidase ATEG_02905-like	0.1494766016
+UniRef50_UPI0003C138DF: PREDICTED: probable carboxypeptidase ATEG_02905-like|unclassified	0.1494766016
+UniRef50_UPI00041F5BCB: inositol monophosphatase	0.1494753442
+UniRef50_UPI00041F5BCB: inositol monophosphatase|unclassified	0.1494753442
+UniRef50_D8JZC4	0.1494710168
+UniRef50_D8JZC4|unclassified	0.1494710168
+UniRef50_UPI0004721ED5: 3-hydroxyisobutyrate dehydrogenase	0.1494652282
+UniRef50_UPI0004721ED5: 3-hydroxyisobutyrate dehydrogenase|unclassified	0.1494652282
+UniRef50_G5ZXS6: UPF0301 protein HIMB100_00008270	0.1494557048
+UniRef50_G5ZXS6: UPF0301 protein HIMB100_00008270|unclassified	0.1494557048
+UniRef50_UPI00035F2B7D: MULTISPECIES: transaldolase	0.1494444030
+UniRef50_UPI00035F2B7D: MULTISPECIES: transaldolase|unclassified	0.1494444030
+UniRef50_Q4FMA8: TRAP-type mannitol/chloroaromatic compound transport system	0.1494342171
+UniRef50_Q4FMA8: TRAP-type mannitol/chloroaromatic compound transport system|unclassified	0.1494342171
+UniRef50_UPI0003B3DE24: multidrug ABC transporter ATP-binding protein	0.1494283087
+UniRef50_UPI0003B3DE24: multidrug ABC transporter ATP-binding protein|unclassified	0.1494283087
+UniRef50_B2IGZ3: DedA family	0.1494195160
+UniRef50_B2IGZ3: DedA family|unclassified	0.1494195160
+UniRef50_UPI000466F1BE: hypothetical protein	0.1493970429
+UniRef50_UPI000466F1BE: hypothetical protein|unclassified	0.1493970429
+UniRef50_UPI0003B6C4C4: xylose ABC transporter ATP-binding protein	0.1493869201
+UniRef50_UPI0003B6C4C4: xylose ABC transporter ATP-binding protein|unclassified	0.1493869201
+UniRef50_UPI000442239B: PREDICTED: basic proline-rich protein-like	0.1493694299
+UniRef50_UPI000442239B: PREDICTED: basic proline-rich protein-like|unclassified	0.1493694299
+UniRef50_B1J3M3	0.1493569166
+UniRef50_B1J3M3|unclassified	0.1493569166
+UniRef50_C5N5Q7	0.1493557289
+UniRef50_C5N5Q7|unclassified	0.1493557289
+UniRef50_B2ICH3: 6,7-dimethyl-8-ribityllumazine synthase	0.1493536874
+UniRef50_B2ICH3: 6,7-dimethyl-8-ribityllumazine synthase|unclassified	0.1493536874
+UniRef50_UPI0003B5310F: hypothetical protein	0.1493416606
+UniRef50_UPI0003B5310F: hypothetical protein|unclassified	0.1493416606
+UniRef50_UPI000255E033: 4-aminobutyrate aminotransferase	0.1493371664
+UniRef50_UPI000255E033: 4-aminobutyrate aminotransferase|unclassified	0.1493371664
+UniRef50_UPI000365B19B: hypothetical protein	0.1493277582
+UniRef50_UPI000365B19B: hypothetical protein|unclassified	0.1493277582
+UniRef50_UPI0004664FEE: hypothetical protein	0.1493230820
+UniRef50_UPI0004664FEE: hypothetical protein|unclassified	0.1493230820
+UniRef50_P42463: Acetolactate synthase large subunit	0.1493192167
+UniRef50_P42463: Acetolactate synthase large subunit|unclassified	0.1493192167
+UniRef50_W7CL06: Putative autolysin (Amidase)	0.1493131239
+UniRef50_W7CL06: Putative autolysin (Amidase)|unclassified	0.1493131239
+UniRef50_F7VZU7: WGS project CABT00000000 data, contig 2.16	0.1493071553
+UniRef50_F7VZU7: WGS project CABT00000000 data, contig 2.16|unclassified	0.1493071553
+UniRef50_E0MR38: Transglutaminase family protein	0.1492875015
+UniRef50_E0MR38: Transglutaminase family protein|unclassified	0.1492875015
+UniRef50_UPI000380F219: hypothetical protein	0.1492748958
+UniRef50_UPI000380F219: hypothetical protein|unclassified	0.1492748958
+UniRef50_UPI0002C3D857: malic enzyme, putative	0.1492746105
+UniRef50_UPI0002C3D857: malic enzyme, putative|unclassified	0.1492746105
+UniRef50_UPI00029A351F: ATPase, AAA family domain-containing protein	0.1492724092
+UniRef50_UPI00029A351F: ATPase, AAA family domain-containing protein|unclassified	0.1492724092
+UniRef50_R8QYR0	0.1492666703
+UniRef50_R8QYR0|unclassified	0.1492666703
+UniRef50_UPI00030FBE36: hypothetical protein	0.1492637171
+UniRef50_UPI00030FBE36: hypothetical protein|unclassified	0.1492637171
+UniRef50_UPI0003733AFD: hypothetical protein	0.1492607125
+UniRef50_UPI0003733AFD: hypothetical protein|unclassified	0.1492607125
+UniRef50_W4LNF0	0.1492338811
+UniRef50_W4LNF0|unclassified	0.1492338811
+UniRef50_W6PLZ7	0.1492324979
+UniRef50_W6PLZ7|unclassified	0.1492324979
+UniRef50_UPI00037A6F5F: hypothetical protein	0.1492313191
+UniRef50_UPI00037A6F5F: hypothetical protein|unclassified	0.1492313191
+UniRef50_M4JLP2	0.1492091913
+UniRef50_M4JLP2|g__Escherichia.s__Escherichia_coli	0.1492091913
+UniRef50_D9VMQ2: Predicted protein	0.1491893072
+UniRef50_D9VMQ2: Predicted protein|unclassified	0.1491893072
+UniRef50_UPI0004686C3F: hypothetical protein	0.1491878932
+UniRef50_UPI0004686C3F: hypothetical protein|unclassified	0.1491878932
+UniRef50_E1ZU44	0.1491764709
+UniRef50_E1ZU44|unclassified	0.1491764709
+UniRef50_UPI00033459C6: PREDICTED: LOW QUALITY PROTEIN: mucin-5AC	0.1491646778
+UniRef50_UPI00033459C6: PREDICTED: LOW QUALITY PROTEIN: mucin-5AC|unclassified	0.1491646778
+UniRef50_UPI00036DC256: MULTISPECIES: hypothetical protein	0.1491610872
+UniRef50_UPI00036DC256: MULTISPECIES: hypothetical protein|unclassified	0.1491610872
+UniRef50_E6N0Q8	0.1491383417
+UniRef50_E6N0Q8|unclassified	0.1491383417
+UniRef50_A7RFE3: Predicted protein (Fragment)	0.1491366374
+UniRef50_A7RFE3: Predicted protein (Fragment)|unclassified	0.1491366374
+UniRef50_UPI0003B44E57: NUDIX hydrolase	0.1491335848
+UniRef50_UPI0003B44E57: NUDIX hydrolase|unclassified	0.1491335848
+UniRef50_Q2K6Q4: Zinc import ATP-binding protein ZnuC	0.1491259279
+UniRef50_Q2K6Q4: Zinc import ATP-binding protein ZnuC|unclassified	0.1491259279
+UniRef50_UPI0003820A79: hypothetical protein	0.1490879912
+UniRef50_UPI0003820A79: hypothetical protein|unclassified	0.1490879912
+UniRef50_UPI00040120BC: hypothetical protein	0.1490856464
+UniRef50_UPI00040120BC: hypothetical protein|unclassified	0.1490856464
+UniRef50_UPI0004763321: thioesterase	0.1490813671
+UniRef50_UPI0004763321: thioesterase|unclassified	0.1490813671
+UniRef50_UPI0003B4DD27: hypothetical protein	0.1490641162
+UniRef50_UPI0003B4DD27: hypothetical protein|unclassified	0.1490641162
+UniRef50_UPI000477A38C: molybdopterin biosynthesis protein MoeB	0.1490640236
+UniRef50_UPI000477A38C: molybdopterin biosynthesis protein MoeB|unclassified	0.1490640236
+UniRef50_Q28UZ1	0.1490484743
+UniRef50_Q28UZ1|unclassified	0.1490484743
+UniRef50_J7Q770: CarD family transcriptional regulator	0.1490478764
+UniRef50_J7Q770: CarD family transcriptional regulator|unclassified	0.1490478764
+UniRef50_UPI000288FEC4: cystathionine beta-lyase	0.1490374062
+UniRef50_UPI000288FEC4: cystathionine beta-lyase|unclassified	0.1490374062
+UniRef50_UPI000255C7E1: uroporphyrin-III C/tetrapyrrole (Corrin/Porphyrin) methyltransferase	0.1490332774
+UniRef50_UPI000255C7E1: uroporphyrin-III C/tetrapyrrole (Corrin/Porphyrin) methyltransferase|unclassified	0.1490332774
+UniRef50_UPI00016A291A: hypothetical protein	0.1490101031
+UniRef50_UPI00016A291A: hypothetical protein|unclassified	0.1490101031
+UniRef50_P20708: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex	0.1490092290
+UniRef50_P20708: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|unclassified	0.1490092290
+UniRef50_D7CQR4: Tripartite ATP-independent periplasmic transporter DctQ component	0.1490053691
+UniRef50_D7CQR4: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.1490053691
+UniRef50_C1EHB1: Predicted protein	0.1490009630
+UniRef50_C1EHB1: Predicted protein|unclassified	0.1490009630
+UniRef50_UPI00036F0DA2: hypothetical protein	0.1489989678
+UniRef50_UPI00036F0DA2: hypothetical protein|unclassified	0.1489989678
+UniRef50_UPI0003900E45: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.1489987469
+UniRef50_UPI0003900E45: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.1489987469
+UniRef50_P9WKE4: Pyruvate kinase	0.1489967351
+UniRef50_P9WKE4: Pyruvate kinase|unclassified	0.1489967351
+UniRef50_I1AQ90: Putative transposase (Fragment)	0.1489895558
+UniRef50_I1AQ90: Putative transposase (Fragment)|unclassified	0.1489895558
+UniRef50_Q0AZJ3: Chorismate synthase	0.1489892454
+UniRef50_Q0AZJ3: Chorismate synthase|unclassified	0.1489892454
+UniRef50_Q6D4Q8: UPF0225 protein ECA2332	0.1489869380
+UniRef50_Q6D4Q8: UPF0225 protein ECA2332|unclassified	0.1489869380
+UniRef50_UPI0004713D39: phenylacetic acid degradation protein	0.1489761358
+UniRef50_UPI0004713D39: phenylacetic acid degradation protein|unclassified	0.1489761358
+UniRef50_D7B233	0.1489727927
+UniRef50_D7B233|unclassified	0.1489727927
+UniRef50_B2A8E3: Argininosuccinate lyase	0.1489653048
+UniRef50_B2A8E3: Argininosuccinate lyase|unclassified	0.1489653048
+UniRef50_R9PMU8	0.1489566458
+UniRef50_R9PMU8|unclassified	0.1489566458
+UniRef50_M8ZRG7: HsdM N-terminal domain protein	0.1489544394
+UniRef50_M8ZRG7: HsdM N-terminal domain protein|unclassified	0.1489544394
+UniRef50_UPI00029AEE62: diaminopimelate epimerase	0.1489491180
+UniRef50_UPI00029AEE62: diaminopimelate epimerase|unclassified	0.1489491180
+UniRef50_UPI00029A4174: ABC transporter ATP-binding protein	0.1489389083
+UniRef50_UPI00029A4174: ABC transporter ATP-binding protein|unclassified	0.1489389083
+UniRef50_UPI000373730F: hypothetical protein	0.1489331058
+UniRef50_UPI000373730F: hypothetical protein|unclassified	0.1489331058
+UniRef50_I7E2G7	0.1489265644
+UniRef50_I7E2G7|unclassified	0.1489265644
+UniRef50_B6VL36	0.1489193367
+UniRef50_B6VL36|unclassified	0.1489193367
+UniRef50_Q8Y6E5: Adenine deaminase	0.1489186126
+UniRef50_Q8Y6E5: Adenine deaminase|unclassified	0.1489186126
+UniRef50_C0QWI9	0.1489071861
+UniRef50_C0QWI9|unclassified	0.1489071861
+UniRef50_A0K716: Monosaccharide ABC transporter substrate-binding protein, CUT2 family	0.1489040498
+UniRef50_A0K716: Monosaccharide ABC transporter substrate-binding protein, CUT2 family|unclassified	0.1489040498
+UniRef50_C0XQT2	0.1489017568
+UniRef50_C0XQT2|unclassified	0.1489017568
+UniRef50_F5XDU3	0.1488886933
+UniRef50_F5XDU3|unclassified	0.1488886933
+UniRef50_UPI000234064C: mitochondrial ribosomal protein S18C	0.1488852902
+UniRef50_UPI000234064C: mitochondrial ribosomal protein S18C|unclassified	0.1488852902
+UniRef50_G2JLT4	0.1488638937
+UniRef50_G2JLT4|unclassified	0.1488638937
+UniRef50_K6CZH6: ABC transporter	0.1488474652
+UniRef50_K6CZH6: ABC transporter|unclassified	0.1488474652
+UniRef50_UPI0003D0A591: PREDICTED: formin-like protein 16-like	0.1488430020
+UniRef50_UPI0003D0A591: PREDICTED: formin-like protein 16-like|unclassified	0.1488430020
+UniRef50_UPI0004785F5C: hypothetical protein	0.1488219086
+UniRef50_UPI0004785F5C: hypothetical protein|unclassified	0.1488219086
+UniRef50_UPI00037A9071: hypothetical protein	0.1488213966
+UniRef50_UPI00037A9071: hypothetical protein|unclassified	0.1488213966
+UniRef50_UPI00047780B8: acyl-CoA synthetase	0.1488210608
+UniRef50_UPI00047780B8: acyl-CoA synthetase|unclassified	0.1488210608
+UniRef50_C6NS61: 2-isopropylmalate synthase	0.1488160597
+UniRef50_C6NS61: 2-isopropylmalate synthase|unclassified	0.1488160597
+UniRef50_UPI0002894F04: hypothetical protein	0.1488105218
+UniRef50_UPI0002894F04: hypothetical protein|unclassified	0.1488105218
+UniRef50_UPI0003602726: hypothetical protein	0.1488061711
+UniRef50_UPI0003602726: hypothetical protein|unclassified	0.1488061711
+UniRef50_UPI0003B71E48: RNA polymerase subunit sigma-54	0.1487973759
+UniRef50_UPI0003B71E48: RNA polymerase subunit sigma-54|unclassified	0.1487973759
+UniRef50_P28345: Malate synthase, glyoxysomal	0.1487641253
+UniRef50_P28345: Malate synthase, glyoxysomal|unclassified	0.1487641253
+UniRef50_UPI0004669561: hypothetical protein	0.1487636463
+UniRef50_UPI0004669561: hypothetical protein|unclassified	0.1487636463
+UniRef50_UPI00037915F2: hypothetical protein, partial	0.1487604457
+UniRef50_UPI00037915F2: hypothetical protein, partial|unclassified	0.1487604457
+UniRef50_UPI0003B52C1D: tRNA uridine 5-carboxymethylaminomethyl modification protein	0.1487522814
+UniRef50_UPI0003B52C1D: tRNA uridine 5-carboxymethylaminomethyl modification protein|unclassified	0.1487522814
+UniRef50_UPI00040403E9: hypothetical protein	0.1487456181
+UniRef50_UPI00040403E9: hypothetical protein|unclassified	0.1487456181
+UniRef50_UPI00036FD9CA: hypothetical protein	0.1487375716
+UniRef50_UPI00036FD9CA: hypothetical protein|unclassified	0.1487375716
+UniRef50_A4CMU2	0.1487223301
+UniRef50_A4CMU2|unclassified	0.1487223301
+UniRef50_UPI000474B898: membrane protein	0.1487199152
+UniRef50_UPI000474B898: membrane protein|unclassified	0.1487199152
+UniRef50_V5FJ92	0.1487198996
+UniRef50_V5FJ92|unclassified	0.1487198996
+UniRef50_UPI000470AFA8: oligo-1,6-glucosidase	0.1486888362
+UniRef50_UPI000470AFA8: oligo-1,6-glucosidase|unclassified	0.1486888362
+UniRef50_UPI0002888B71: ABC transporter ATPase, partial	0.1486822269
+UniRef50_UPI0002888B71: ABC transporter ATPase, partial|unclassified	0.1486822269
+UniRef50_UPI0003A39DCC: MFS transporter	0.1486784903
+UniRef50_UPI0003A39DCC: MFS transporter|unclassified	0.1486784903
+UniRef50_F3KXN6: Integrase catalytic region	0.1486703470
+UniRef50_F3KXN6: Integrase catalytic region|unclassified	0.1486703470
+UniRef50_UPI00047D1FCE: 8-oxoguanine DNA glycosylase	0.1486595602
+UniRef50_UPI00047D1FCE: 8-oxoguanine DNA glycosylase|unclassified	0.1486595602
+UniRef50_D4LHG7: Ribulose-5-phosphate 4-epimerase and related epimerases and aldolases	0.1486491831
+UniRef50_D4LHG7: Ribulose-5-phosphate 4-epimerase and related epimerases and aldolases|unclassified	0.1486491831
+UniRef50_M8DHZ0: Major facilitator transporter	0.1486367065
+UniRef50_M8DHZ0: Major facilitator transporter|unclassified	0.1486367065
+UniRef50_C5ABB6: Baseplate J family protein	0.1486284682
+UniRef50_C5ABB6: Baseplate J family protein|unclassified	0.1486284682
+UniRef50_UPI0003707FEC: hypothetical protein	0.1486208191
+UniRef50_UPI0003707FEC: hypothetical protein|unclassified	0.1486208191
+UniRef50_UPI000468FE24: (2Fe-2S)-binding protein	0.1486178744
+UniRef50_UPI000468FE24: (2Fe-2S)-binding protein|unclassified	0.1486178744
+UniRef50_K4Q9X0: Transposase	0.1486135546
+UniRef50_K4Q9X0: Transposase|unclassified	0.1486135546
+UniRef50_W5WEF8	0.1486132627
+UniRef50_W5WEF8|unclassified	0.1486132627
+UniRef50_E1MA13: Membrane protein	0.1486100178
+UniRef50_E1MA13: Membrane protein|unclassified	0.1486100178
+UniRef50_UPI0004410CB8: ClpX, ATPase regulatory subunit	0.1485985964
+UniRef50_UPI0004410CB8: ClpX, ATPase regulatory subunit|unclassified	0.1485985964
+UniRef50_A3MFR5: NADH-quinone oxidoreductase subunit B 2	0.1485873169
+UniRef50_A3MFR5: NADH-quinone oxidoreductase subunit B 2|unclassified	0.1485873169
+UniRef50_D3A160	0.1485785339
+UniRef50_D3A160|unclassified	0.1485785339
+UniRef50_L0A294	0.1485714652
+UniRef50_L0A294|unclassified	0.1485714652
+UniRef50_UPI000360C821: MULTISPECIES: hypothetical protein	0.1485536498
+UniRef50_UPI000360C821: MULTISPECIES: hypothetical protein|unclassified	0.1485536498
+UniRef50_UPI00046F0789: multidrug MFS transporter	0.1485520234
+UniRef50_UPI00046F0789: multidrug MFS transporter|unclassified	0.1485520234
+UniRef50_V7Z610: Haloacid dehalogenase	0.1485108338
+UniRef50_V7Z610: Haloacid dehalogenase|unclassified	0.1485108338
+UniRef50_F2EQS7	0.1485007760
+UniRef50_F2EQS7|unclassified	0.1485007760
+UniRef50_F7WNA1: Carboxyl esterase	0.1484820897
+UniRef50_F7WNA1: Carboxyl esterase|unclassified	0.1484820897
+UniRef50_UPI00040DD3BD: MttB family protein	0.1484685704
+UniRef50_UPI00040DD3BD: MttB family protein|unclassified	0.1484685704
+UniRef50_UPI0003B6246C: sodium/hydrogen exchanger	0.1484654248
+UniRef50_UPI0003B6246C: sodium/hydrogen exchanger|unclassified	0.1484654248
+UniRef50_UPI00034CC892: hypothetical protein	0.1484616610
+UniRef50_UPI00034CC892: hypothetical protein|unclassified	0.1484616610
+UniRef50_B0C8Q6: Acylphosphatase	0.1484554450
+UniRef50_B0C8Q6: Acylphosphatase|unclassified	0.1484554450
+UniRef50_X1T4G6: Marine sediment metagenome DNA, contig: S12H4_L07698 (Fragment)	0.1484513035
+UniRef50_X1T4G6: Marine sediment metagenome DNA, contig: S12H4_L07698 (Fragment)|unclassified	0.1484513035
+UniRef50_UPI00047C3395: hypothetical protein	0.1484466753
+UniRef50_UPI00047C3395: hypothetical protein|unclassified	0.1484466753
+UniRef50_UPI00047CBC2F: diacylglycerol kinase	0.1484464306
+UniRef50_UPI00047CBC2F: diacylglycerol kinase|unclassified	0.1484464306
+UniRef50_UPI0003B6A42C: DNA helicase	0.1484458374
+UniRef50_UPI0003B6A42C: DNA helicase|unclassified	0.1484458374
+UniRef50_UPI0003343F1A: PREDICTED: peptide methionine sulfoxide reductase MsrA-like	0.1484438472
+UniRef50_UPI0003343F1A: PREDICTED: peptide methionine sulfoxide reductase MsrA-like|unclassified	0.1484438472
+UniRef50_Q1WTM3: Adenine deaminase	0.1484338357
+UniRef50_Q1WTM3: Adenine deaminase|unclassified	0.1484338357
+UniRef50_S6TRP1: Threonine dehydratase	0.1484318484
+UniRef50_S6TRP1: Threonine dehydratase|unclassified	0.1484318484
+UniRef50_N5G047	0.1484210616
+UniRef50_N5G047|unclassified	0.1484210616
+UniRef50_UPI0003648162: hypothetical protein, partial	0.1484004562
+UniRef50_UPI0003648162: hypothetical protein, partial|unclassified	0.1484004562
+UniRef50_A0A011P168: 2,4-dienoyl-CoA reductase [NADPH]	0.1483998568
+UniRef50_A0A011P168: 2,4-dienoyl-CoA reductase [NADPH]|unclassified	0.1483998568
+UniRef50_U6N963: Anaphase-promoting complex subunit 10 domain-containing protein, putative	0.1483979566
+UniRef50_U6N963: Anaphase-promoting complex subunit 10 domain-containing protein, putative|unclassified	0.1483979566
+UniRef50_E1X8K7: Conserved protein	0.1483941016
+UniRef50_E1X8K7: Conserved protein|unclassified	0.1483941016
+UniRef50_A9H3Z8	0.1483793456
+UniRef50_A9H3Z8|unclassified	0.1483793456
+UniRef50_UPI0001B4603F: exodeoxyribonuclease V, alpha subunit, partial	0.1483770035
+UniRef50_UPI0001B4603F: exodeoxyribonuclease V, alpha subunit, partial|unclassified	0.1483770035
+UniRef50_UPI0002003503: ABC transporter, ATP-binding protein, partial	0.1483737867
+UniRef50_UPI0002003503: ABC transporter, ATP-binding protein, partial|unclassified	0.1483737867
+UniRef50_UPI000289856C: HIT family hydrolase, diadenosine tetraphosphate hydrolase	0.1483734626
+UniRef50_UPI000289856C: HIT family hydrolase, diadenosine tetraphosphate hydrolase|unclassified	0.1483734626
+UniRef50_D4MUI2	0.1483712324
+UniRef50_D4MUI2|unclassified	0.1483712324
+UniRef50_U3HM10	0.1483681026
+UniRef50_U3HM10|unclassified	0.1483681026
+UniRef50_F4DPL6	0.1483644257
+UniRef50_F4DPL6|unclassified	0.1483644257
+UniRef50_Q87BX0: Phage-related protein	0.1483405616
+UniRef50_Q87BX0: Phage-related protein|unclassified	0.1483405616
+UniRef50_UPI0004085A75: hypothetical protein	0.1483271490
+UniRef50_UPI0004085A75: hypothetical protein|unclassified	0.1483271490
+UniRef50_P54978: Phytoene desaturase (lycopene-forming)	0.1483228092
+UniRef50_P54978: Phytoene desaturase (lycopene-forming)|unclassified	0.1483228092
+UniRef50_UPI00047190DF: haloacid dehalogenase	0.1483036895
+UniRef50_UPI00047190DF: haloacid dehalogenase|unclassified	0.1483036895
+UniRef50_B1W1Y7: Putative 3-methyladenine DNA glycosylase	0.1482996908
+UniRef50_B1W1Y7: Putative 3-methyladenine DNA glycosylase|unclassified	0.1482996908
+UniRef50_UPI00029A3992: ribulose-5-phosphate 3-epimerase	0.1482952408
+UniRef50_UPI00029A3992: ribulose-5-phosphate 3-epimerase|unclassified	0.1482952408
+UniRef50_UPI0003674E2C: hypothetical protein	0.1482826165
+UniRef50_UPI0003674E2C: hypothetical protein|unclassified	0.1482826165
+UniRef50_T1MAW2	0.1482804977
+UniRef50_T1MAW2|unclassified	0.1482804977
+UniRef50_A0A059ITT8	0.1482756627
+UniRef50_A0A059ITT8|unclassified	0.1482756627
+UniRef50_UPI000465698B: hypothetical protein, partial	0.1482750147
+UniRef50_UPI000465698B: hypothetical protein, partial|unclassified	0.1482750147
+UniRef50_Q4SWT1: Chromosome undetermined SCAF13528, whole genome shotgun sequence	0.1482690342
+UniRef50_Q4SWT1: Chromosome undetermined SCAF13528, whole genome shotgun sequence|unclassified	0.1482690342
+UniRef50_UPI0003704FD1: hypothetical protein	0.1482492911
+UniRef50_UPI0003704FD1: hypothetical protein|unclassified	0.1482492911
+UniRef50_UPI000469349E: ribonuclease HII	0.1482489716
+UniRef50_UPI000469349E: ribonuclease HII|unclassified	0.1482489716
+UniRef50_UPI00047AA312: hypothetical protein	0.1482485257
+UniRef50_UPI00047AA312: hypothetical protein|unclassified	0.1482485257
+UniRef50_K7SRA5: Esterase/lipase/thioesterase	0.1482430301
+UniRef50_K7SRA5: Esterase/lipase/thioesterase|unclassified	0.1482430301
+UniRef50_UPI000479F495: oxidoreductase	0.1482352275
+UniRef50_UPI000479F495: oxidoreductase|unclassified	0.1482352275
+UniRef50_UPI000378B2D1: hypothetical protein	0.1482343446
+UniRef50_UPI000378B2D1: hypothetical protein|unclassified	0.1482343446
+UniRef50_V6L3I8	0.1482328732
+UniRef50_V6L3I8|unclassified	0.1482328732
+UniRef50_UPI000471DD8A: hypothetical protein	0.1482243539
+UniRef50_UPI000471DD8A: hypothetical protein|unclassified	0.1482243539
+UniRef50_V9AUV8	0.1481950681
+UniRef50_V9AUV8|unclassified	0.1481950681
+UniRef50_UPI000369E578: hypothetical protein, partial	0.1481820660
+UniRef50_UPI000369E578: hypothetical protein, partial|unclassified	0.1481820660
+UniRef50_R0XQP3	0.1481722410
+UniRef50_R0XQP3|unclassified	0.1481722410
+UniRef50_UPI00037C8813: hypothetical protein	0.1481643038
+UniRef50_UPI00037C8813: hypothetical protein|unclassified	0.1481643038
+UniRef50_E2LHW2	0.1481490614
+UniRef50_E2LHW2|unclassified	0.1481490614
+UniRef50_UPI000467D217: hypothetical protein, partial	0.1481447511
+UniRef50_UPI000467D217: hypothetical protein, partial|unclassified	0.1481447511
+UniRef50_C5WY70	0.1481289716
+UniRef50_C5WY70|unclassified	0.1481289716
+UniRef50_K0RTS6	0.1481254929
+UniRef50_K0RTS6|unclassified	0.1481254929
+UniRef50_UPI00026583C0: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1-like	0.1481217843
+UniRef50_UPI00026583C0: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1-like|unclassified	0.1481217843
+UniRef50_V8MQ36: Transposase ISSpo9	0.1481135168
+UniRef50_V8MQ36: Transposase ISSpo9|unclassified	0.1481135168
+UniRef50_UPI000441E5AE: PREDICTED: adenylyltransferase and sulfurtransferase MOCS3-like, partial	0.1481075856
+UniRef50_UPI000441E5AE: PREDICTED: adenylyltransferase and sulfurtransferase MOCS3-like, partial|unclassified	0.1481075856
+UniRef50_E3CIV1: Phosphoglycerate mutase family protein	0.1481024567
+UniRef50_E3CIV1: Phosphoglycerate mutase family protein|unclassified	0.1481024567
+UniRef50_X5TR50	0.1481006250
+UniRef50_X5TR50|unclassified	0.1481006250
+UniRef50_E6SIF3	0.1480886820
+UniRef50_E6SIF3|unclassified	0.1480886820
+UniRef50_UPI00046657E8: hypothetical protein	0.1480885104
+UniRef50_UPI00046657E8: hypothetical protein|unclassified	0.1480885104
+UniRef50_UPI0004756711: hypothetical protein	0.1480883734
+UniRef50_UPI0004756711: hypothetical protein|unclassified	0.1480883734
+UniRef50_E2LMJ8	0.1480634582
+UniRef50_E2LMJ8|unclassified	0.1480634582
+UniRef50_UPI00037353A9: glutamine synthetase	0.1480576915
+UniRef50_UPI00037353A9: glutamine synthetase|unclassified	0.1480576915
+UniRef50_UPI00037C80E9: DNA polymerase III subunit epsilon	0.1480514462
+UniRef50_UPI00037C80E9: DNA polymerase III subunit epsilon|unclassified	0.1480514462
+UniRef50_H6PCX7: Late competence protein ComGG	0.1480416395
+UniRef50_H6PCX7: Late competence protein ComGG|unclassified	0.1480416395
+UniRef50_F2ZMW7	0.1480357792
+UniRef50_F2ZMW7|unclassified	0.1480357792
+UniRef50_UPI000350B110	0.1480293996
+UniRef50_UPI000350B110|unclassified	0.1480293996
+UniRef50_J4SFS9	0.1480172605
+UniRef50_J4SFS9|unclassified	0.1480172605
+UniRef50_A7HTG1	0.1480168441
+UniRef50_A7HTG1|unclassified	0.1480168441
+UniRef50_K0KAV4	0.1480094677
+UniRef50_K0KAV4|unclassified	0.1480094677
+UniRef50_L8A918: Glucitol operon activator protein	0.1480087192
+UniRef50_L8A918: Glucitol operon activator protein|unclassified	0.1480087192
+UniRef50_UPI00046853C2: riboflavin synthase subunit alpha	0.1479975996
+UniRef50_UPI00046853C2: riboflavin synthase subunit alpha|unclassified	0.1479975996
+UniRef50_UPI00036E2509: hypothetical protein	0.1479755188
+UniRef50_UPI00036E2509: hypothetical protein|unclassified	0.1479755188
+UniRef50_F8FI99: UPF0398 protein KNP414_05478	0.1479694217
+UniRef50_F8FI99: UPF0398 protein KNP414_05478|unclassified	0.1479694217
+UniRef50_H1Q6H1	0.1479667281
+UniRef50_H1Q6H1|unclassified	0.1479667281
+UniRef50_K9DEI0	0.1479575422
+UniRef50_K9DEI0|unclassified	0.1479575422
+UniRef50_V4ZGQ4	0.1479508803
+UniRef50_V4ZGQ4|unclassified	0.1479508803
+UniRef50_J0D4G5	0.1479354513
+UniRef50_J0D4G5|unclassified	0.1479354513
+UniRef50_A0A059IT32	0.1479343101
+UniRef50_A0A059IT32|unclassified	0.1479343101
+UniRef50_V7EJY0	0.1479257395
+UniRef50_V7EJY0|unclassified	0.1479257395
+UniRef50_UPI00028929E9: iron ABC transporter permease	0.1479251452
+UniRef50_UPI00028929E9: iron ABC transporter permease|unclassified	0.1479251452
+UniRef50_A0A058ZPH8	0.1478990078
+UniRef50_A0A058ZPH8|unclassified	0.1478990078
+UniRef50_UPI000262CF64: shikimate kinase	0.1478939179
+UniRef50_UPI000262CF64: shikimate kinase|unclassified	0.1478939179
+UniRef50_UPI0003AD52C2: hypothetical protein	0.1478924611
+UniRef50_UPI0003AD52C2: hypothetical protein|unclassified	0.1478924611
+UniRef50_G6A120	0.1478900740
+UniRef50_G6A120|unclassified	0.1478900740
+UniRef50_UPI000471011A: hypothetical protein	0.1478806621
+UniRef50_UPI000471011A: hypothetical protein|unclassified	0.1478806621
+UniRef50_P0A2L2: UPF0047 protein YjbQ	0.1478703487
+UniRef50_P0A2L2: UPF0047 protein YjbQ|unclassified	0.1478703487
+UniRef50_UPI00016C089F: competence damage-inducible protein A	0.1478479369
+UniRef50_UPI00016C089F: competence damage-inducible protein A|unclassified	0.1478479369
+UniRef50_Q5QLN4	0.1478118672
+UniRef50_Q5QLN4|unclassified	0.1478118672
+UniRef50_K9XZH0	0.1478015869
+UniRef50_K9XZH0|unclassified	0.1478015869
+UniRef50_W7CCL5: UPF0398 protein BTHER_06135	0.1477992543
+UniRef50_W7CCL5: UPF0398 protein BTHER_06135|unclassified	0.1477992543
+UniRef50_E8U6R6	0.1477827883
+UniRef50_E8U6R6|unclassified	0.1477827883
+UniRef50_Q984P0: Molybdopterin synthase catalytic subunit	0.1477795046
+UniRef50_Q984P0: Molybdopterin synthase catalytic subunit|unclassified	0.1477795046
+UniRef50_Q097V6: NTR	0.1477769633
+UniRef50_Q097V6: NTR|unclassified	0.1477769633
+UniRef50_UPI00035F05D7: hypothetical protein	0.1477691777
+UniRef50_UPI00035F05D7: hypothetical protein|unclassified	0.1477691777
+UniRef50_Q4BUD1	0.1477621411
+UniRef50_Q4BUD1|unclassified	0.1477621411
+UniRef50_C7NFA1	0.1477571746
+UniRef50_C7NFA1|unclassified	0.1477571746
+UniRef50_UPI0004723CF7: succinate dehydrogenase	0.1477522737
+UniRef50_UPI0004723CF7: succinate dehydrogenase|unclassified	0.1477522737
+UniRef50_UPI00036DD021: hypothetical protein	0.1477499173
+UniRef50_UPI00036DD021: hypothetical protein|unclassified	0.1477499173
+UniRef50_D9WVR9: Putative PE-PGRS family protein	0.1477456412
+UniRef50_D9WVR9: Putative PE-PGRS family protein|unclassified	0.1477456412
+UniRef50_B3HH44: Tail protein	0.1477444868
+UniRef50_B3HH44: Tail protein|unclassified	0.1477444868
+UniRef50_C6D465	0.1477407723
+UniRef50_C6D465|unclassified	0.1477407723
+UniRef50_Q4THG1: Chromosome undetermined SCAF2968, whole genome shotgun sequence. (Fragment)	0.1477384470
+UniRef50_Q4THG1: Chromosome undetermined SCAF2968, whole genome shotgun sequence. (Fragment)|unclassified	0.1477384470
+UniRef50_UPI0002E168A4: hypothetical protein	0.1477288535
+UniRef50_UPI0002E168A4: hypothetical protein|unclassified	0.1477288535
+UniRef50_UPI0003B76377: inorganic polyphosphate/ATP-NAD kinase	0.1477280940
+UniRef50_UPI0003B76377: inorganic polyphosphate/ATP-NAD kinase|unclassified	0.1477280940
+UniRef50_E3INU3	0.1477218101
+UniRef50_E3INU3|unclassified	0.1477218101
+UniRef50_U5A6D8	0.1477194660
+UniRef50_U5A6D8|unclassified	0.1477194660
+UniRef50_UPI00046669DC: hypothetical protein	0.1477061902
+UniRef50_UPI00046669DC: hypothetical protein|unclassified	0.1477061902
+UniRef50_A0A014MRU3	0.1476999397
+UniRef50_A0A014MRU3|unclassified	0.1476999397
+UniRef50_K2HE50: Pyrrolo-quinoline quinone	0.1476990252
+UniRef50_K2HE50: Pyrrolo-quinoline quinone|unclassified	0.1476990252
+UniRef50_UPI000360D022: hypothetical protein	0.1476983511
+UniRef50_UPI000360D022: hypothetical protein|unclassified	0.1476983511
+UniRef50_J2NMI5: Putative transposase	0.1476953008
+UniRef50_J2NMI5: Putative transposase|unclassified	0.1476953008
+UniRef50_E3EXE9	0.1476904271
+UniRef50_E3EXE9|unclassified	0.1476904271
+UniRef50_A0A013I2H1	0.1476889105
+UniRef50_A0A013I2H1|unclassified	0.1476889105
+UniRef50_P45302: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex	0.1476798336
+UniRef50_P45302: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|unclassified	0.1476798336
+UniRef50_UPI0004777D5E: competence protein	0.1476676388
+UniRef50_UPI0004777D5E: competence protein|unclassified	0.1476676388
+UniRef50_J8ET85: YD repeat (Two copies)	0.1476593456
+UniRef50_J8ET85: YD repeat (Two copies)|unclassified	0.1476593456
+UniRef50_B2A2N1: Ribonuclease 3	0.1476502938
+UniRef50_B2A2N1: Ribonuclease 3|unclassified	0.1476502938
+UniRef50_UPI00022CA85B: PREDICTED: hypothetical protein LOC100743994	0.1476490700
+UniRef50_UPI00022CA85B: PREDICTED: hypothetical protein LOC100743994|unclassified	0.1476490700
+UniRef50_B7JGF8: Enterotoxin	0.1476481887
+UniRef50_B7JGF8: Enterotoxin|unclassified	0.1476481887
+UniRef50_Q2H3Y0	0.1476423215
+UniRef50_Q2H3Y0|unclassified	0.1476423215
+UniRef50_V4JG08	0.1476316473
+UniRef50_V4JG08|unclassified	0.1476316473
+UniRef50_UPI00046328AB: hypothetical protein	0.1476306409
+UniRef50_UPI00046328AB: hypothetical protein|unclassified	0.1476306409
+UniRef50_UPI00047D0052: hypothetical protein, partial	0.1476115982
+UniRef50_UPI00047D0052: hypothetical protein, partial|unclassified	0.1476115982
+UniRef50_UPI00047DB175: beta-lactamase	0.1475846431
+UniRef50_UPI00047DB175: beta-lactamase|unclassified	0.1475846431
+UniRef50_B6YQD4: Homoserine O-succinyltransferase	0.1475767783
+UniRef50_B6YQD4: Homoserine O-succinyltransferase|unclassified	0.1475767783
+UniRef50_UPI0004707087: amino acid ABC transporter permease	0.1475651075
+UniRef50_UPI0004707087: amino acid ABC transporter permease|unclassified	0.1475651075
+UniRef50_A8LKJ2: SOUL heme-binding protein	0.1475597331
+UniRef50_A8LKJ2: SOUL heme-binding protein|unclassified	0.1475597331
+UniRef50_A4J0Y3: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.1475510983
+UniRef50_A4J0Y3: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.1475510983
+UniRef50_UPI00035FE648: hypothetical protein	0.1475480171
+UniRef50_UPI00035FE648: hypothetical protein|unclassified	0.1475480171
+UniRef50_A5D5L4: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.1475353538
+UniRef50_A5D5L4: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.1475353538
+UniRef50_UPI000477CB4F: competence protein	0.1475305410
+UniRef50_UPI000477CB4F: competence protein|unclassified	0.1475305410
+UniRef50_E9CMJ1: Putative conserved protein (Fragment)	0.1475265592
+UniRef50_E9CMJ1: Putative conserved protein (Fragment)|unclassified	0.1475265592
+UniRef50_UPI0002F85C08: hypothetical protein	0.1475215602
+UniRef50_UPI0002F85C08: hypothetical protein|unclassified	0.1475215602
+UniRef50_UPI0000227051: hypothetical protein	0.1475162303
+UniRef50_UPI0000227051: hypothetical protein|unclassified	0.1475162303
+UniRef50_UPI0003A730C5: pyruvate kinase	0.1475061919
+UniRef50_UPI0003A730C5: pyruvate kinase|unclassified	0.1475061919
+UniRef50_UPI0003AEB97B: PREDICTED: myosin IC heavy chain-like	0.1475038544
+UniRef50_UPI0003AEB97B: PREDICTED: myosin IC heavy chain-like|unclassified	0.1475038544
+UniRef50_UPI0003B6C3E5: 6-phosphofructokinase	0.1474963398
+UniRef50_UPI0003B6C3E5: 6-phosphofructokinase|unclassified	0.1474963398
+UniRef50_C3Z9G8	0.1474846701
+UniRef50_C3Z9G8|unclassified	0.1474846701
+UniRef50_UPI000476013A: hypothetical protein	0.1474757603
+UniRef50_UPI000476013A: hypothetical protein|unclassified	0.1474757603
+UniRef50_UPI000471EA8E: hypothetical protein, partial	0.1474539505
+UniRef50_UPI000471EA8E: hypothetical protein, partial|unclassified	0.1474539505
+UniRef50_UPI00046FFC4F: hypothetical protein	0.1474473269
+UniRef50_UPI00046FFC4F: hypothetical protein|unclassified	0.1474473269
+UniRef50_UPI0003800F45: hypothetical protein, partial	0.1474427931
+UniRef50_UPI0003800F45: hypothetical protein, partial|unclassified	0.1474427931
+UniRef50_UPI000237AAE1: ABC transporter	0.1474340118
+UniRef50_UPI000237AAE1: ABC transporter|unclassified	0.1474340118
+UniRef50_Z5SAF9	0.1474293519
+UniRef50_Z5SAF9|unclassified	0.1474293519
+UniRef50_UPI0002196D36: cobalt ABC transporter ATP-binding protein	0.1474279717
+UniRef50_UPI0002196D36: cobalt ABC transporter ATP-binding protein|unclassified	0.1474279717
+UniRef50_A7IN87	0.1474269109
+UniRef50_A7IN87|unclassified	0.1474269109
+UniRef50_B2I0Y3: Pirin-related protein	0.1474237804
+UniRef50_B2I0Y3: Pirin-related protein|unclassified	0.1474237804
+UniRef50_UPI0004421F02: PREDICTED: prostaglandin reductase 2	0.1474216723
+UniRef50_UPI0004421F02: PREDICTED: prostaglandin reductase 2|unclassified	0.1474216723
+UniRef50_U5UHM1	0.1474148830
+UniRef50_U5UHM1|unclassified	0.1474148830
+UniRef50_L8DZR6: Internalin-J	0.1474123780
+UniRef50_L8DZR6: Internalin-J|unclassified	0.1474123780
+UniRef50_S5YCF8	0.1473996044
+UniRef50_S5YCF8|unclassified	0.1473996044
+UniRef50_UPI0003813AFA: hypothetical protein	0.1473959817
+UniRef50_UPI0003813AFA: hypothetical protein|unclassified	0.1473959817
+UniRef50_Q81II2: Arginine regulator	0.1473955305
+UniRef50_Q81II2: Arginine regulator|unclassified	0.1473955305
+UniRef50_F2RM33: Recombinase A (Fragment)	0.1473925110
+UniRef50_F2RM33: Recombinase A (Fragment)|unclassified	0.1473925110
+UniRef50_UPI000310FAA6: hypothetical protein	0.1473907484
+UniRef50_UPI000310FAA6: hypothetical protein|unclassified	0.1473907484
+UniRef50_UPI0002197873: ribulose-phosphate 3-epimerase	0.1473776482
+UniRef50_UPI0002197873: ribulose-phosphate 3-epimerase|unclassified	0.1473776482
+UniRef50_UPI0004545041: PREDICTED: mycophenolic acid acyl-glucuronide esterase, mitochondrial isoform X3	0.1473767472
+UniRef50_UPI0004545041: PREDICTED: mycophenolic acid acyl-glucuronide esterase, mitochondrial isoform X3|unclassified	0.1473767472
+UniRef50_UPI000463A6B8: carbonic anhydrase	0.1473743885
+UniRef50_UPI000463A6B8: carbonic anhydrase|unclassified	0.1473743885
+UniRef50_UPI0003B50A76: amino acid ABC transporter substrate-binding protein	0.1473738895
+UniRef50_UPI0003B50A76: amino acid ABC transporter substrate-binding protein|unclassified	0.1473738895
+UniRef50_Q1YDH0	0.1473688895
+UniRef50_Q1YDH0|unclassified	0.1473688895
+UniRef50_UPI0004790903: hypothetical protein	0.1473640736
+UniRef50_UPI0004790903: hypothetical protein|unclassified	0.1473640736
+UniRef50_K3YLU3	0.1473580652
+UniRef50_K3YLU3|unclassified	0.1473580652
+UniRef50_UPI00037AC6AF: hypothetical protein	0.1473575892
+UniRef50_UPI00037AC6AF: hypothetical protein|unclassified	0.1473575892
+UniRef50_UPI000477C3DA: MULTISPECIES: transcriptional regulator	0.1473546400
+UniRef50_UPI000477C3DA: MULTISPECIES: transcriptional regulator|unclassified	0.1473546400
+UniRef50_Q7MHF8: Predicted membrane protein	0.1473538387
+UniRef50_Q7MHF8: Predicted membrane protein|unclassified	0.1473538387
+UniRef50_V9WKD4	0.1473480691
+UniRef50_V9WKD4|unclassified	0.1473480691
+UniRef50_UPI0003620BC4: hypothetical protein	0.1473479746
+UniRef50_UPI0003620BC4: hypothetical protein|unclassified	0.1473479746
+UniRef50_UPI0002BC466A: hypothetical protein, partial	0.1473405550
+UniRef50_UPI0002BC466A: hypothetical protein, partial|unclassified	0.1473405550
+UniRef50_Q2SCI9	0.1473364632
+UniRef50_Q2SCI9|unclassified	0.1473364632
+UniRef50_A0A017HMU8: Membrane protein	0.1473214832
+UniRef50_A0A017HMU8: Membrane protein|unclassified	0.1473214832
+UniRef50_UPI000470C0E3: branched-chain amino acid ABC transporter, partial	0.1472983832
+UniRef50_UPI000470C0E3: branched-chain amino acid ABC transporter, partial|unclassified	0.1472983832
+UniRef50_Q1DCX8: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	0.1472946321
+UniRef50_Q1DCX8: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|unclassified	0.1472946321
+UniRef50_UPI00040634CB: hypothetical protein	0.1472870607
+UniRef50_UPI00040634CB: hypothetical protein|unclassified	0.1472870607
+UniRef50_B9TLT4	0.1472669383
+UniRef50_B9TLT4|unclassified	0.1472669383
+UniRef50_E6VUG8	0.1472458717
+UniRef50_E6VUG8|unclassified	0.1472458717
+UniRef50_G9XHX4	0.1472195164
+UniRef50_G9XHX4|unclassified	0.1472195164
+UniRef50_Q7XIN0	0.1472171217
+UniRef50_Q7XIN0|unclassified	0.1472171217
+UniRef50_UPI000273E85C	0.1472110879
+UniRef50_UPI000273E85C|unclassified	0.1472110879
+UniRef50_UPI00021962A1: ABC-type polar amino acid transport system, ATPase component, partial	0.1472048555
+UniRef50_UPI00021962A1: ABC-type polar amino acid transport system, ATPase component, partial|unclassified	0.1472048555
+UniRef50_UPI00035116CC: PREDICTED: myosin heavy chain IB-like, partial	0.1472046468
+UniRef50_UPI00035116CC: PREDICTED: myosin heavy chain IB-like, partial|unclassified	0.1472046468
+UniRef50_UPI0004753B7F: hypothetical protein	0.1471915612
+UniRef50_UPI0004753B7F: hypothetical protein|unclassified	0.1471915612
+UniRef50_K0J3D5: Transposase	0.1471833740
+UniRef50_K0J3D5: Transposase|unclassified	0.1471833740
+UniRef50_A3VJI1	0.1471832394
+UniRef50_A3VJI1|unclassified	0.1471832394
+UniRef50_P70685: Glyceraldehyde-3-phosphate dehydrogenase (Fragment)	0.1471739579
+UniRef50_P70685: Glyceraldehyde-3-phosphate dehydrogenase (Fragment)|unclassified	0.1471739579
+UniRef50_Q1RH95: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	0.1471665134
+UniRef50_Q1RH95: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|unclassified	0.1471665134
+UniRef50_UPI000380AFF0: hypothetical protein	0.1471639420
+UniRef50_UPI000380AFF0: hypothetical protein|unclassified	0.1471639420
+UniRef50_UPI00047DE858: ABC transporter ATPase	0.1471618813
+UniRef50_UPI00047DE858: ABC transporter ATPase|unclassified	0.1471618813
+UniRef50_UPI000371FDBF: hypothetical protein	0.1471544256
+UniRef50_UPI000371FDBF: hypothetical protein|unclassified	0.1471544256
+UniRef50_UPI0002558AA1: lipoprotein Lppl	0.1471531858
+UniRef50_UPI0002558AA1: lipoprotein Lppl|unclassified	0.1471531858
+UniRef50_UPI0002557290: 2,3-dihydroxybenzoate-2,3-dehydrogenase	0.1471528736
+UniRef50_UPI0002557290: 2,3-dihydroxybenzoate-2,3-dehydrogenase|unclassified	0.1471528736
+UniRef50_UPI0003946402: PTS sugar transporter	0.1471515501
+UniRef50_UPI0003946402: PTS sugar transporter|unclassified	0.1471515501
+UniRef50_B5SKG1	0.1471498013
+UniRef50_B5SKG1|unclassified	0.1471498013
+UniRef50_C5BCZ6	0.1471480543
+UniRef50_C5BCZ6|unclassified	0.1471480543
+UniRef50_UPI00041460F6: carbonate dehydratase	0.1471433511
+UniRef50_UPI00041460F6: carbonate dehydratase|unclassified	0.1471433511
+UniRef50_UPI000379C639: hypothetical protein	0.1471404482
+UniRef50_UPI000379C639: hypothetical protein|unclassified	0.1471404482
+UniRef50_K6DGW2	0.1471342042
+UniRef50_K6DGW2|unclassified	0.1471342042
+UniRef50_UPI00035CA244: hypothetical protein	0.1471340467
+UniRef50_UPI00035CA244: hypothetical protein|unclassified	0.1471340467
+UniRef50_F9WQX4	0.1471325886
+UniRef50_F9WQX4|unclassified	0.1471325886
+UniRef50_E8RUK0: MaoC domain protein dehydratase	0.1471289747
+UniRef50_E8RUK0: MaoC domain protein dehydratase|unclassified	0.1471289747
+UniRef50_L2Z1A8: Antitoxin YeeU	0.1471233286
+UniRef50_L2Z1A8: Antitoxin YeeU|unclassified	0.1471233286
+UniRef50_B2A8B8	0.1471193167
+UniRef50_B2A8B8|unclassified	0.1471193167
+UniRef50_UPI00037764D1: hypothetical protein	0.1471189475
+UniRef50_UPI00037764D1: hypothetical protein|unclassified	0.1471189475
+UniRef50_Q9KWU8: DNA-directed RNA polymerase subunit alpha	0.1471136918
+UniRef50_Q9KWU8: DNA-directed RNA polymerase subunit alpha|unclassified	0.1471136918
+UniRef50_UPI0004643B97: hypothetical protein	0.1471026598
+UniRef50_UPI0004643B97: hypothetical protein|unclassified	0.1471026598
+UniRef50_UPI00046F74A5: hypothetical protein, partial	0.1470872533
+UniRef50_UPI00046F74A5: hypothetical protein, partial|unclassified	0.1470872533
+UniRef50_A3PPN2	0.1470810067
+UniRef50_A3PPN2|unclassified	0.1470810067
+UniRef50_K6S1F0	0.1470718159
+UniRef50_K6S1F0|unclassified	0.1470718159
+UniRef50_UPI00046CD5BB: hypothetical protein	0.1470717448
+UniRef50_UPI00046CD5BB: hypothetical protein|unclassified	0.1470717448
+UniRef50_UPI0003B72BB9: hypothetical protein	0.1470371705
+UniRef50_UPI0003B72BB9: hypothetical protein|unclassified	0.1470371705
+UniRef50_A9MJX6	0.1470337462
+UniRef50_A9MJX6|unclassified	0.1470337462
+UniRef50_UPI000424D3E5: hypothetical protein	0.1470277653
+UniRef50_UPI000424D3E5: hypothetical protein|unclassified	0.1470277653
+UniRef50_UPI00036EF2C3: hypothetical protein	0.1470272495
+UniRef50_UPI00036EF2C3: hypothetical protein|unclassified	0.1470272495
+UniRef50_UPI000375C291: hypothetical protein	0.1470265328
+UniRef50_UPI000375C291: hypothetical protein|unclassified	0.1470265328
+UniRef50_UPI0002627EFE: pseudouridine synthase	0.1470021973
+UniRef50_UPI0002627EFE: pseudouridine synthase|unclassified	0.1470021973
+UniRef50_A4AA56	0.1469944106
+UniRef50_A4AA56|unclassified	0.1469944106
+UniRef50_UPI00047AB05A: ABC transporter substrate-binding protein, partial	0.1469940118
+UniRef50_UPI00047AB05A: ABC transporter substrate-binding protein, partial|unclassified	0.1469940118
+UniRef50_UPI0003723B23: hypothetical protein	0.1469895576
+UniRef50_UPI0003723B23: hypothetical protein|unclassified	0.1469895576
+UniRef50_A0A011MLC5: YCII-related domain protein	0.1469846463
+UniRef50_A0A011MLC5: YCII-related domain protein|unclassified	0.1469846463
+UniRef50_M1T3E3: Thioesterase superfamily protein	0.1469819975
+UniRef50_M1T3E3: Thioesterase superfamily protein|unclassified	0.1469819975
+UniRef50_A0A020XT22	0.1469783354
+UniRef50_A0A020XT22|unclassified	0.1469783354
+UniRef50_UPI0002887E27: anthranilate synthase, component I, partial	0.1469414667
+UniRef50_UPI0002887E27: anthranilate synthase, component I, partial|unclassified	0.1469414667
+UniRef50_UPI00047B3496: molybdenum cofactor biosynthesis protein MoeB	0.1469243416
+UniRef50_UPI00047B3496: molybdenum cofactor biosynthesis protein MoeB|unclassified	0.1469243416
+UniRef50_A6Q574: S-adenosylmethionine decarboxylase proenzyme	0.1469108394
+UniRef50_A6Q574: S-adenosylmethionine decarboxylase proenzyme|unclassified	0.1469108394
+UniRef50_M8BC96: Phenol hydroxylase	0.1469053644
+UniRef50_M8BC96: Phenol hydroxylase|unclassified	0.1469053644
+UniRef50_UPI0003826CF4: hypothetical protein	0.1469041739
+UniRef50_UPI0003826CF4: hypothetical protein|unclassified	0.1469041739
+UniRef50_UPI000368758C: hypothetical protein	0.1468956564
+UniRef50_UPI000368758C: hypothetical protein|unclassified	0.1468956564
+UniRef50_D8TTJ3	0.1468913468
+UniRef50_D8TTJ3|unclassified	0.1468913468
+UniRef50_UPI000473818F: hypothetical protein, partial	0.1468845119
+UniRef50_UPI000473818F: hypothetical protein, partial|unclassified	0.1468845119
+UniRef50_UPI0003A020D2: LysR family transcriptional regulator	0.1468819369
+UniRef50_UPI0003A020D2: LysR family transcriptional regulator|unclassified	0.1468819369
+UniRef50_UPI0003739184: hypothetical protein	0.1468616426
+UniRef50_UPI0003739184: hypothetical protein|unclassified	0.1468616426
+UniRef50_E5YFM8	0.1468104151
+UniRef50_E5YFM8|unclassified	0.1468104151
+UniRef50_Q7MTW1: Cytochrome c-552	0.1467957750
+UniRef50_Q7MTW1: Cytochrome c-552|unclassified	0.1467957750
+UniRef50_B9IRA8	0.1467945589
+UniRef50_B9IRA8|unclassified	0.1467945589
+UniRef50_A0A037XB09: C4-dicarboxylate ABC transporter permease	0.1467881498
+UniRef50_A0A037XB09: C4-dicarboxylate ABC transporter permease|unclassified	0.1467881498
+UniRef50_UPI000372E06A: hypothetical protein	0.1467837852
+UniRef50_UPI000372E06A: hypothetical protein|unclassified	0.1467837852
+UniRef50_UPI0002491A92: 16S rRNA methyltransferase	0.1467795868
+UniRef50_UPI0002491A92: 16S rRNA methyltransferase|unclassified	0.1467795868
+UniRef50_UPI0003B648C1: ABC transporter ATP-binding protein	0.1467795830
+UniRef50_UPI0003B648C1: ABC transporter ATP-binding protein|unclassified	0.1467795830
+UniRef50_C4LGQ2: Putative lysophospholipase	0.1467780745
+UniRef50_C4LGQ2: Putative lysophospholipase|unclassified	0.1467780745
+UniRef50_P25851: Fructose-1,6-bisphosphatase, chloroplastic	0.1467753710
+UniRef50_P25851: Fructose-1,6-bisphosphatase, chloroplastic|unclassified	0.1467753710
+UniRef50_UPI0002195A53: cysteinyl-tRNA synthetase	0.1467697415
+UniRef50_UPI0002195A53: cysteinyl-tRNA synthetase|unclassified	0.1467697415
+UniRef50_Q88G50	0.1467599946
+UniRef50_Q88G50|unclassified	0.1467599946
+UniRef50_Q82GB8: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase	0.1467574967
+UniRef50_Q82GB8: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase|unclassified	0.1467574967
+UniRef50_UPI0004417264: hypothetical protein PUNSTDRAFT_142556	0.1467563563
+UniRef50_UPI0004417264: hypothetical protein PUNSTDRAFT_142556|unclassified	0.1467563563
+UniRef50_UPI00036871BE: 7-cyano-7-deazaguanine reductase	0.1467385655
+UniRef50_UPI00036871BE: 7-cyano-7-deazaguanine reductase|unclassified	0.1467385655
+UniRef50_B7KCX9: Adenylosuccinate synthetase	0.1467382354
+UniRef50_B7KCX9: Adenylosuccinate synthetase|unclassified	0.1467382354
+UniRef50_UPI0003780E79: hypothetical protein	0.1467360485
+UniRef50_UPI0003780E79: hypothetical protein|unclassified	0.1467360485
+UniRef50_G9NIT8	0.1467342618
+UniRef50_G9NIT8|unclassified	0.1467342618
+UniRef50_A6V647	0.1467253313
+UniRef50_A6V647|unclassified	0.1467253313
+UniRef50_UPI00035C4F7A: hypothetical protein	0.1467222801
+UniRef50_UPI00035C4F7A: hypothetical protein|unclassified	0.1467222801
+UniRef50_R7RW37	0.1467210970
+UniRef50_R7RW37|unclassified	0.1467210970
+UniRef50_W7CA14: MFS transporter permease	0.1467190516
+UniRef50_W7CA14: MFS transporter permease|unclassified	0.1467190516
+UniRef50_A1W5W7: SwissProt accession number P19593-like protein	0.1467085329
+UniRef50_A1W5W7: SwissProt accession number P19593-like protein|unclassified	0.1467085329
+UniRef50_UPI0003B58132: hypothetical protein	0.1467023667
+UniRef50_UPI0003B58132: hypothetical protein|unclassified	0.1467023667
+UniRef50_UPI0002DCAD24: hypothetical protein	0.1466951677
+UniRef50_UPI0002DCAD24: hypothetical protein|unclassified	0.1466951677
+UniRef50_UPI000361F512: hypothetical protein	0.1466920464
+UniRef50_UPI000361F512: hypothetical protein|unclassified	0.1466920464
+UniRef50_UPI00039561E5: PREDICTED: sperm-associated antigen 5	0.1466874379
+UniRef50_UPI00039561E5: PREDICTED: sperm-associated antigen 5|unclassified	0.1466874379
+UniRef50_Q9WZT7: Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB	0.1466751333
+UniRef50_Q9WZT7: Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB|unclassified	0.1466751333
+UniRef50_U7FJA8	0.1466748191
+UniRef50_U7FJA8|unclassified	0.1466748191
+UniRef50_Q2SSX9: Thymidine kinase	0.1466703345
+UniRef50_Q2SSX9: Thymidine kinase|unclassified	0.1466703345
+UniRef50_UPI0003802C1B: hypothetical protein	0.1466654748
+UniRef50_UPI0003802C1B: hypothetical protein|unclassified	0.1466654748
+UniRef50_X1T9N6: Marine sediment metagenome DNA, contig: S12H4_L01085	0.1466608557
+UniRef50_X1T9N6: Marine sediment metagenome DNA, contig: S12H4_L01085|unclassified	0.1466608557
+UniRef50_Q2RK39: Orotidine 5'-phosphate decarboxylase	0.1466244511
+UniRef50_Q2RK39: Orotidine 5'-phosphate decarboxylase|unclassified	0.1466244511
+UniRef50_Q9ZJ75: Ribulose-phosphate 3-epimerase	0.1466153705
+UniRef50_Q9ZJ75: Ribulose-phosphate 3-epimerase|unclassified	0.1466153705
+UniRef50_UPI00047ADF97: ribose ABC transporter ATP-binding protein	0.1466128759
+UniRef50_UPI00047ADF97: ribose ABC transporter ATP-binding protein|unclassified	0.1466128759
+UniRef50_R8BHP6	0.1466103232
+UniRef50_R8BHP6|unclassified	0.1466103232
+UniRef50_UPI0003FABC74: hypothetical protein	0.1466065514
+UniRef50_UPI0003FABC74: hypothetical protein|unclassified	0.1466065514
+UniRef50_UPI000377FE31: hypothetical protein	0.1466047878
+UniRef50_UPI000377FE31: hypothetical protein|unclassified	0.1466047878
+UniRef50_A5FIF9: Potassium-transporting ATPase A chain	0.1465987218
+UniRef50_A5FIF9: Potassium-transporting ATPase A chain|unclassified	0.1465987218
+UniRef50_F0LQA1	0.1465901882
+UniRef50_F0LQA1|unclassified	0.1465901882
+UniRef50_F7RZF4	0.1465899783
+UniRef50_F7RZF4|unclassified	0.1465899783
+UniRef50_UPI000474EFCF: hypothetical protein	0.1465875768
+UniRef50_UPI000474EFCF: hypothetical protein|unclassified	0.1465875768
+UniRef50_UPI0003B6B338: aspartate racemase	0.1465570209
+UniRef50_UPI0003B6B338: aspartate racemase|unclassified	0.1465570209
+UniRef50_UPI0003EC3EE0: PREDICTED: cytoplasmic aconitate hydratase-like	0.1465494126
+UniRef50_UPI0003EC3EE0: PREDICTED: cytoplasmic aconitate hydratase-like|unclassified	0.1465494126
+UniRef50_Q2NVM1: Protein-L-isoaspartate O-methyltransferase	0.1465349629
+UniRef50_Q2NVM1: Protein-L-isoaspartate O-methyltransferase|unclassified	0.1465349629
+UniRef50_UPI0004776CE3: alanine acetyltransferase	0.1465289055
+UniRef50_UPI0004776CE3: alanine acetyltransferase|unclassified	0.1465289055
+UniRef50_C3NRK1	0.1465135006
+UniRef50_C3NRK1|unclassified	0.1465135006
+UniRef50_UPI0003C1981F	0.1464955186
+UniRef50_UPI0003C1981F|unclassified	0.1464955186
+UniRef50_Q87JE8: Catalase	0.1464939259
+UniRef50_Q87JE8: Catalase|unclassified	0.1464939259
+UniRef50_B3QUX5: NADH-quinone oxidoreductase subunit A 1	0.1464893581
+UniRef50_B3QUX5: NADH-quinone oxidoreductase subunit A 1|unclassified	0.1464893581
+UniRef50_L8N0M9	0.1464721320
+UniRef50_L8N0M9|unclassified	0.1464721320
+UniRef50_UPI000473E527: hypothetical protein, partial	0.1464689843
+UniRef50_UPI000473E527: hypothetical protein, partial|unclassified	0.1464689843
+UniRef50_UPI0004057B1E: hypothetical protein	0.1464637178
+UniRef50_UPI0004057B1E: hypothetical protein|unclassified	0.1464637178
+UniRef50_UPI0003752BA6: hypothetical protein	0.1464397678
+UniRef50_UPI0003752BA6: hypothetical protein|unclassified	0.1464397678
+UniRef50_UPI00036086A4: hypothetical protein	0.1464297575
+UniRef50_UPI00036086A4: hypothetical protein|unclassified	0.1464297575
+UniRef50_P54123: Ribonuclease J	0.1464141793
+UniRef50_P54123: Ribonuclease J|unclassified	0.1464141793
+UniRef50_S8FPQ2	0.1464084832
+UniRef50_S8FPQ2|unclassified	0.1464084832
+UniRef50_UPI0003B774DC: MFS transporter	0.1463812514
+UniRef50_UPI0003B774DC: MFS transporter|unclassified	0.1463812514
+UniRef50_Q8EUX2: Tyrosine--tRNA ligase	0.1463811908
+UniRef50_Q8EUX2: Tyrosine--tRNA ligase|unclassified	0.1463811908
+UniRef50_D6M286: Tat (Twin-arginine translocation) pathway signal sequence	0.1463805033
+UniRef50_D6M286: Tat (Twin-arginine translocation) pathway signal sequence|unclassified	0.1463805033
+UniRef50_UPI0002ED9F2F: hypothetical protein	0.1463611984
+UniRef50_UPI0002ED9F2F: hypothetical protein|unclassified	0.1463611984
+UniRef50_U3U0C8: Type VI secretion system, core protein	0.1463611080
+UniRef50_U3U0C8: Type VI secretion system, core protein|unclassified	0.1463611080
+UniRef50_A8FEL7: Glycerol-3-phosphate dehydrogenase [NAD(P)+]	0.1463569494
+UniRef50_A8FEL7: Glycerol-3-phosphate dehydrogenase [NAD(P)+]|unclassified	0.1463569494
+UniRef50_W9EDM6: Alkaline shock protein	0.1463511797
+UniRef50_W9EDM6: Alkaline shock protein|unclassified	0.1463511797
+UniRef50_UPI00016A8DCD: transcriptional regulator, AraC family protein, partial	0.1463480735
+UniRef50_UPI00016A8DCD: transcriptional regulator, AraC family protein, partial|unclassified	0.1463480735
+UniRef50_UPI00036A7102: hypothetical protein	0.1463190963
+UniRef50_UPI00036A7102: hypothetical protein|unclassified	0.1463190963
+UniRef50_UPI000255F40D: hypothetical protein	0.1463098347
+UniRef50_UPI000255F40D: hypothetical protein|unclassified	0.1463098347
+UniRef50_UPI000471D3EB: pseudouridine synthase	0.1462883240
+UniRef50_UPI000471D3EB: pseudouridine synthase|unclassified	0.1462883240
+UniRef50_UPI000463681D: transcriptional regulator, partial	0.1462842787
+UniRef50_UPI000463681D: transcriptional regulator, partial|unclassified	0.1462842787
+UniRef50_Q4UNK0: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	0.1462817571
+UniRef50_Q4UNK0: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|unclassified	0.1462817571
+UniRef50_UPI000367FC54: hypothetical protein	0.1462386546
+UniRef50_UPI000367FC54: hypothetical protein|unclassified	0.1462386546
+UniRef50_K7U8Q8	0.1462242880
+UniRef50_K7U8Q8|unclassified	0.1462242880
+UniRef50_UPI0002F2BA6C: phosphoglyceromutase	0.1462078302
+UniRef50_UPI0002F2BA6C: phosphoglyceromutase|unclassified	0.1462078302
+UniRef50_F0XZ87	0.1462009287
+UniRef50_F0XZ87|unclassified	0.1462009287
+UniRef50_W7Q065	0.1462003965
+UniRef50_W7Q065|unclassified	0.1462003965
+UniRef50_UPI0004214622: 2-nitropropane dioxygenase	0.1461942711
+UniRef50_UPI0004214622: 2-nitropropane dioxygenase|unclassified	0.1461942711
+UniRef50_M9RMI2: LysR family transcriptional regulator	0.1461929895
+UniRef50_M9RMI2: LysR family transcriptional regulator|unclassified	0.1461929895
+UniRef50_UPI0003A09CD9: ABC transporter	0.1461654829
+UniRef50_UPI0003A09CD9: ABC transporter|unclassified	0.1461654829
+UniRef50_D2R1Q0	0.1461614939
+UniRef50_D2R1Q0|unclassified	0.1461614939
+UniRef50_UPI0003EE0CC7: PREDICTED: d-3-phosphoglycerate dehydrogenase-like	0.1461581637
+UniRef50_UPI0003EE0CC7: PREDICTED: d-3-phosphoglycerate dehydrogenase-like|unclassified	0.1461581637
+UniRef50_UPI00042B2928: Chloroplast heat shock protein 70 isoform 1	0.1461529222
+UniRef50_UPI00042B2928: Chloroplast heat shock protein 70 isoform 1|unclassified	0.1461529222
+UniRef50_B4EWK4: Phage shock protein C	0.1461523885
+UniRef50_B4EWK4: Phage shock protein C|unclassified	0.1461523885
+UniRef50_U4W1Q6	0.1461510411
+UniRef50_U4W1Q6|unclassified	0.1461510411
+UniRef50_S2PJT8: Transcriptional accessory protein (Fragment)	0.1461392935
+UniRef50_S2PJT8: Transcriptional accessory protein (Fragment)|unclassified	0.1461392935
+UniRef50_UPI00035DA755: hypothetical protein	0.1461391146
+UniRef50_UPI00035DA755: hypothetical protein|unclassified	0.1461391146
+UniRef50_R4T5D9	0.1461062631
+UniRef50_R4T5D9|unclassified	0.1461062631
+UniRef50_UPI00046EBCB1: hypothetical protein	0.1461012611
+UniRef50_UPI00046EBCB1: hypothetical protein|unclassified	0.1461012611
+UniRef50_UPI000328C9B2: PREDICTED: translation initiation factor IF-2-like	0.1461010614
+UniRef50_UPI000328C9B2: PREDICTED: translation initiation factor IF-2-like|unclassified	0.1461010614
+UniRef50_UPI000378540B: hypothetical protein	0.1460936226
+UniRef50_UPI000378540B: hypothetical protein|unclassified	0.1460936226
+UniRef50_Q3AC58: Ribonuclease 3	0.1460903822
+UniRef50_Q3AC58: Ribonuclease 3|unclassified	0.1460903822
+UniRef50_P26840: Probable macrolide acetyltransferase (Fragment)	0.1460880018
+UniRef50_P26840: Probable macrolide acetyltransferase (Fragment)|unclassified	0.1460880018
+UniRef50_Q1AW66: Uridylate kinase	0.1460872664
+UniRef50_Q1AW66: Uridylate kinase|unclassified	0.1460872664
+UniRef50_C1MKI4: Predicted protein (Fragment)	0.1460848402
+UniRef50_C1MKI4: Predicted protein (Fragment)|unclassified	0.1460848402
+UniRef50_X0YLP3: Marine sediment metagenome DNA, contig: S01H1_S33769 (Fragment)	0.1460842601
+UniRef50_X0YLP3: Marine sediment metagenome DNA, contig: S01H1_S33769 (Fragment)|unclassified	0.1460842601
+UniRef50_F6AE29: Transport-associated protein	0.1460825097
+UniRef50_F6AE29: Transport-associated protein|unclassified	0.1460825097
+UniRef50_K6ZCZ9	0.1460822212
+UniRef50_K6ZCZ9|unclassified	0.1460822212
+UniRef50_T1AHT1: Conjugal transfer protein TrbE (Fragment)	0.1460651147
+UniRef50_T1AHT1: Conjugal transfer protein TrbE (Fragment)|unclassified	0.1460651147
+UniRef50_UPI00042907AA: hypothetical protein	0.1460612154
+UniRef50_UPI00042907AA: hypothetical protein|unclassified	0.1460612154
+UniRef50_A6FPS5: Putative insertion sequence transposase protein, IS66 family	0.1460468392
+UniRef50_A6FPS5: Putative insertion sequence transposase protein, IS66 family|unclassified	0.1460468392
+UniRef50_S5CX64	0.1460450926
+UniRef50_S5CX64|unclassified	0.1460450926
+UniRef50_UPI0003688AF0: hypothetical protein, partial	0.1460434602
+UniRef50_UPI0003688AF0: hypothetical protein, partial|unclassified	0.1460434602
+UniRef50_UPI000315DD30: hypothetical protein	0.1460378683
+UniRef50_UPI000315DD30: hypothetical protein|unclassified	0.1460378683
+UniRef50_F0XYR5	0.1460376181
+UniRef50_F0XYR5|unclassified	0.1460376181
+UniRef50_UPI00030E3E58: hypothetical protein	0.1460367247
+UniRef50_UPI00030E3E58: hypothetical protein|unclassified	0.1460367247
+UniRef50_V5MKX1	0.1460344440
+UniRef50_V5MKX1|unclassified	0.1460344440
+UniRef50_UPI0002558CA8: membrane protein	0.1460338983
+UniRef50_UPI0002558CA8: membrane protein|unclassified	0.1460338983
+UniRef50_A0A029LKQ2: Transposase IS66 family protein	0.1460276250
+UniRef50_A0A029LKQ2: Transposase IS66 family protein|unclassified	0.1460276250
+UniRef50_Q3JNN0	0.1460212506
+UniRef50_Q3JNN0|unclassified	0.1460212506
+UniRef50_UPI00037A827E: hypothetical protein	0.1460016193
+UniRef50_UPI00037A827E: hypothetical protein|unclassified	0.1460016193
+UniRef50_UPI00041261C3: hypothetical protein	0.1460010728
+UniRef50_UPI00041261C3: hypothetical protein|unclassified	0.1460010728
+UniRef50_UPI00040FD25C: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.1459927740
+UniRef50_UPI00040FD25C: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.1459927740
+UniRef50_D7T7Z6	0.1459900860
+UniRef50_D7T7Z6|unclassified	0.1459900860
+UniRef50_J8V8U1: Secretion protein HlyD family protein	0.1459871887
+UniRef50_J8V8U1: Secretion protein HlyD family protein|unclassified	0.1459871887
+UniRef50_UPI000470D66D: EvpB family type VI secretion protein	0.1459857347
+UniRef50_UPI000470D66D: EvpB family type VI secretion protein|unclassified	0.1459857347
+UniRef50_UPI00030EB494: hypothetical protein	0.1459831674
+UniRef50_UPI00030EB494: hypothetical protein|unclassified	0.1459831674
+UniRef50_N9UIE3	0.1459812345
+UniRef50_N9UIE3|unclassified	0.1459812345
+UniRef50_A4EA23	0.1459692081
+UniRef50_A4EA23|unclassified	0.1459692081
+UniRef50_UPI00036C5675: hypothetical protein, partial	0.1459641464
+UniRef50_UPI00036C5675: hypothetical protein, partial|unclassified	0.1459641464
+UniRef50_K2IW44	0.1459553232
+UniRef50_K2IW44|unclassified	0.1459553232
+UniRef50_UPI00046754A5: inositol monophosphatase	0.1459539538
+UniRef50_UPI00046754A5: inositol monophosphatase|unclassified	0.1459539538
+UniRef50_W9TNH1	0.1459501609
+UniRef50_W9TNH1|unclassified	0.1459501609
+UniRef50_UPI00046FA3C7: hypothetical protein, partial	0.1459450661
+UniRef50_UPI00046FA3C7: hypothetical protein, partial|unclassified	0.1459450661
+UniRef50_A8GIF9: Ribosomal RNA large subunit methyltransferase M	0.1459395031
+UniRef50_A8GIF9: Ribosomal RNA large subunit methyltransferase M|unclassified	0.1459395031
+UniRef50_UPI000346D1E3: hypothetical protein	0.1459066883
+UniRef50_UPI000346D1E3: hypothetical protein|unclassified	0.1459066883
+UniRef50_UPI000316FC8F: hypothetical protein	0.1459042662
+UniRef50_UPI000316FC8F: hypothetical protein|unclassified	0.1459042662
+UniRef50_Q3Z629: N-acetyl-gamma-glutamyl-phosphate reductase	0.1458988432
+UniRef50_Q3Z629: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.1458988432
+UniRef50_UPI000382EDF5: hypothetical protein	0.1458978652
+UniRef50_UPI000382EDF5: hypothetical protein|unclassified	0.1458978652
+UniRef50_UPI0004751448: hypothetical protein	0.1458963444
+UniRef50_UPI0004751448: hypothetical protein|unclassified	0.1458963444
+UniRef50_D3RNE4: Tripartite ATP-independent periplasmic transporter DctQ component	0.1458914597
+UniRef50_D3RNE4: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.1458914597
+UniRef50_B8DQF0: Excinuclease ABC C subunit domain protein	0.1458881197
+UniRef50_B8DQF0: Excinuclease ABC C subunit domain protein|unclassified	0.1458881197
+UniRef50_UPI00037B1D08: hypothetical protein	0.1458874703
+UniRef50_UPI00037B1D08: hypothetical protein|unclassified	0.1458874703
+UniRef50_UPI00018167BC: putative redox regulated molecular chaperone heat-shock-like (partial sequence n terminus) protein	0.1458861136
+UniRef50_UPI00018167BC: putative redox regulated molecular chaperone heat-shock-like (partial sequence n terminus) protein|unclassified	0.1458861136
+UniRef50_Q3JG41	0.1458664047
+UniRef50_Q3JG41|unclassified	0.1458664047
+UniRef50_UPI000473EC6D: MFS transporter	0.1458604532
+UniRef50_UPI000473EC6D: MFS transporter|unclassified	0.1458604532
+UniRef50_UPI00046C943F: transporter	0.1458513170
+UniRef50_UPI00046C943F: transporter|unclassified	0.1458513170
+UniRef50_X5P8X6	0.1458365335
+UniRef50_X5P8X6|unclassified	0.1458365335
+UniRef50_UPI00040EC8B0: hypothetical protein	0.1458270944
+UniRef50_UPI00040EC8B0: hypothetical protein|unclassified	0.1458270944
+UniRef50_UPI0000550F5E: hypothetical protein	0.1458244321
+UniRef50_UPI0000550F5E: hypothetical protein|unclassified	0.1458244321
+UniRef50_W6X9A2	0.1458219374
+UniRef50_W6X9A2|unclassified	0.1458219374
+UniRef50_A3Q0D6: Urease subunit beta	0.1458133777
+UniRef50_A3Q0D6: Urease subunit beta|unclassified	0.1458133777
+UniRef50_UPI000463C6BF: hypothetical protein	0.1458132800
+UniRef50_UPI000463C6BF: hypothetical protein|unclassified	0.1458132800
+UniRef50_UPI00047102E8: hypothetical protein, partial	0.1457958951
+UniRef50_UPI00047102E8: hypothetical protein, partial|unclassified	0.1457958951
+UniRef50_UPI000369D70D: hypothetical protein	0.1457750350
+UniRef50_UPI000369D70D: hypothetical protein|unclassified	0.1457750350
+UniRef50_UPI0003622E8E: hypothetical protein	0.1457543432
+UniRef50_UPI0003622E8E: hypothetical protein|unclassified	0.1457543432
+UniRef50_Q8QNC0: EsV-1-162	0.1457519533
+UniRef50_Q8QNC0: EsV-1-162|unclassified	0.1457519533
+UniRef50_R5LJ16: Putative phage terminase large subunit	0.1457496762
+UniRef50_R5LJ16: Putative phage terminase large subunit|unclassified	0.1457496762
+UniRef50_Q07KZ5	0.1457374737
+UniRef50_Q07KZ5|unclassified	0.1457374737
+UniRef50_UPI0002744CB9	0.1457258953
+UniRef50_UPI0002744CB9|unclassified	0.1457258953
+UniRef50_UPI000393D5D5: electron transfer flavoprotein subunit beta	0.1457248158
+UniRef50_UPI000393D5D5: electron transfer flavoprotein subunit beta|unclassified	0.1457248158
+UniRef50_UPI00037C3339: hypothetical protein	0.1457188562
+UniRef50_UPI00037C3339: hypothetical protein|unclassified	0.1457188562
+UniRef50_UPI00047DE100: hypothetical protein	0.1457152061
+UniRef50_UPI00047DE100: hypothetical protein|unclassified	0.1457152061
+UniRef50_UPI00035C394A: hypothetical protein	0.1457069050
+UniRef50_UPI00035C394A: hypothetical protein|unclassified	0.1457069050
+UniRef50_Q1MRW8: Adenylosuccinate synthetase	0.1457052372
+UniRef50_Q1MRW8: Adenylosuccinate synthetase|unclassified	0.1457052372
+UniRef50_W9EUH9	0.1456990605
+UniRef50_W9EUH9|unclassified	0.1456990605
+UniRef50_R4I009	0.1456683376
+UniRef50_R4I009|unclassified	0.1456683376
+UniRef50_UPI000477AE8C: membrane protein	0.1456656715
+UniRef50_UPI000477AE8C: membrane protein|unclassified	0.1456656715
+UniRef50_UPI000289739C: amino acid carrier protein, partial	0.1456615986
+UniRef50_UPI000289739C: amino acid carrier protein, partial|unclassified	0.1456615986
+UniRef50_W1JJ37	0.1456494051
+UniRef50_W1JJ37|unclassified	0.1456494051
+UniRef50_UPI00030625AA: hypothetical protein	0.1456361428
+UniRef50_UPI00030625AA: hypothetical protein|unclassified	0.1456361428
+UniRef50_G9ZUR2: Usg-like family protein	0.1456232241
+UniRef50_G9ZUR2: Usg-like family protein|unclassified	0.1456232241
+UniRef50_UPI0003708E44: hypothetical protein	0.1456195989
+UniRef50_UPI0003708E44: hypothetical protein|unclassified	0.1456195989
+UniRef50_UPI0002558E0C: SMP-30/gluconolaconase/LRE-like region	0.1456149507
+UniRef50_UPI0002558E0C: SMP-30/gluconolaconase/LRE-like region|unclassified	0.1456149507
+UniRef50_UPI00046AFA00: hypothetical protein	0.1456050625
+UniRef50_UPI00046AFA00: hypothetical protein|unclassified	0.1456050625
+UniRef50_Q6ALW6: tRNA dimethylallyltransferase	0.1456030218
+UniRef50_Q6ALW6: tRNA dimethylallyltransferase|unclassified	0.1456030218
+UniRef50_UPI000287EC10: ABC transporter permease, partial	0.1456024925
+UniRef50_UPI000287EC10: ABC transporter permease, partial|unclassified	0.1456024925
+UniRef50_UPI0004708731: hypothetical protein	0.1455995210
+UniRef50_UPI0004708731: hypothetical protein|unclassified	0.1455995210
+UniRef50_F4QVK3: NifU-like protein	0.1455811705
+UniRef50_F4QVK3: NifU-like protein|unclassified	0.1455811705
+UniRef50_X0TEL2: Marine sediment metagenome DNA, contig: S01H1_C01185 (Fragment)	0.1455682345
+UniRef50_X0TEL2: Marine sediment metagenome DNA, contig: S01H1_C01185 (Fragment)|unclassified	0.1455682345
+UniRef50_UPI00032A0494: PREDICTED: epimerase family protein YfcH-like	0.1455678259
+UniRef50_UPI00032A0494: PREDICTED: epimerase family protein YfcH-like|unclassified	0.1455678259
+UniRef50_Q0A8Y7: Holo-[acyl-carrier-protein] synthase	0.1455578002
+UniRef50_Q0A8Y7: Holo-[acyl-carrier-protein] synthase|unclassified	0.1455578002
+UniRef50_UPI0003654EA0: hypothetical protein	0.1455556476
+UniRef50_UPI0003654EA0: hypothetical protein|unclassified	0.1455556476
+UniRef50_A0A023X118	0.1455508731
+UniRef50_A0A023X118|unclassified	0.1455508731
+UniRef50_W5XC72: Excinuclease ABC subunit C	0.1455395944
+UniRef50_W5XC72: Excinuclease ABC subunit C|unclassified	0.1455395944
+UniRef50_UPI000328B5D2: PREDICTED: transcription initiation factor TFIID subunit 4-like	0.1455354898
+UniRef50_UPI000328B5D2: PREDICTED: transcription initiation factor TFIID subunit 4-like|unclassified	0.1455354898
+UniRef50_Q1G991: Orotidine 5'-phosphate decarboxylase	0.1455164812
+UniRef50_Q1G991: Orotidine 5'-phosphate decarboxylase|unclassified	0.1455164812
+UniRef50_K8E7N5	0.1455138357
+UniRef50_K8E7N5|unclassified	0.1455138357
+UniRef50_UPI00047DCA63: hypothetical protein	0.1455128727
+UniRef50_UPI00047DCA63: hypothetical protein|unclassified	0.1455128727
+UniRef50_UPI00036DF5AD: hypothetical protein	0.1455045728
+UniRef50_UPI00036DF5AD: hypothetical protein|unclassified	0.1455045728
+UniRef50_O66107: Ribulose-phosphate 3-epimerase	0.1455018162
+UniRef50_O66107: Ribulose-phosphate 3-epimerase|unclassified	0.1455018162
+UniRef50_UPI0004674070: hypothetical protein	0.1454992534
+UniRef50_UPI0004674070: hypothetical protein|unclassified	0.1454992534
+UniRef50_B2KC44: Phosphoglycerate kinase	0.1454988512
+UniRef50_B2KC44: Phosphoglycerate kinase|unclassified	0.1454988512
+UniRef50_Q2W0G6: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	0.1454959007
+UniRef50_Q2W0G6: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.1454959007
+UniRef50_Q59977: Citrate synthase	0.1454908498
+UniRef50_Q59977: Citrate synthase|unclassified	0.1454908498
+UniRef50_K2PHP8	0.1454896076
+UniRef50_K2PHP8|unclassified	0.1454896076
+UniRef50_A1AXZ8	0.1454862287
+UniRef50_A1AXZ8|unclassified	0.1454862287
+UniRef50_B4I0D5: GM12471	0.1454625581
+UniRef50_B4I0D5: GM12471|unclassified	0.1454625581
+UniRef50_UPI000373FE9D: hypothetical protein	0.1454550343
+UniRef50_UPI000373FE9D: hypothetical protein|unclassified	0.1454550343
+UniRef50_V9VSI5: Short-chain dehydrogenase	0.1454541232
+UniRef50_V9VSI5: Short-chain dehydrogenase|unclassified	0.1454541232
+UniRef50_UPI000376BFE7: hypothetical protein, partial	0.1454525471
+UniRef50_UPI000376BFE7: hypothetical protein, partial|unclassified	0.1454525471
+UniRef50_UPI0004692FA3: hypothetical protein, partial	0.1454523474
+UniRef50_UPI0004692FA3: hypothetical protein, partial|unclassified	0.1454523474
+UniRef50_D1YC34	0.1454481655
+UniRef50_D1YC34|unclassified	0.1454481655
+UniRef50_B7UT13	0.1454436339
+UniRef50_B7UT13|unclassified	0.1454436339
+UniRef50_B6E1V0: ATPase (Fragment)	0.1454342470
+UniRef50_B6E1V0: ATPase (Fragment)|unclassified	0.1454342470
+UniRef50_Q83EH9: ATP-dependent 6-phosphofructokinase	0.1454333642
+UniRef50_Q83EH9: ATP-dependent 6-phosphofructokinase|unclassified	0.1454333642
+UniRef50_UPI00036EFE7D: hypothetical protein	0.1454289289
+UniRef50_UPI00036EFE7D: hypothetical protein|unclassified	0.1454289289
+UniRef50_UPI00029AC90B: hypothetical protein	0.1454271935
+UniRef50_UPI00029AC90B: hypothetical protein|unclassified	0.1454271935
+UniRef50_R9L2Z7	0.1454237643
+UniRef50_R9L2Z7|unclassified	0.1454237643
+UniRef50_UPI0003677212: hypothetical protein	0.1454222394
+UniRef50_UPI0003677212: hypothetical protein|unclassified	0.1454222394
+UniRef50_O67730: Quinolinate synthase A	0.1454158776
+UniRef50_O67730: Quinolinate synthase A|unclassified	0.1454158776
+UniRef50_UPI0001B439E6: hypothetical protein, partial	0.1454050452
+UniRef50_UPI0001B439E6: hypothetical protein, partial|unclassified	0.1454050452
+UniRef50_UPI00037CF988: hypothetical protein	0.1454021306
+UniRef50_UPI00037CF988: hypothetical protein|unclassified	0.1454021306
+UniRef50_D2ZKL4: Phage Tail Protein X	0.1453983540
+UniRef50_D2ZKL4: Phage Tail Protein X|unclassified	0.1453983540
+UniRef50_UPI0004670897: shikimate kinase	0.1453770856
+UniRef50_UPI0004670897: shikimate kinase|unclassified	0.1453770856
+UniRef50_UPI00039D719D: DNA-binding protein	0.1453696248
+UniRef50_UPI00039D719D: DNA-binding protein|unclassified	0.1453696248
+UniRef50_Y2YAU5	0.1453611380
+UniRef50_Y2YAU5|unclassified	0.1453611380
+UniRef50_Q04C46: Holo-[acyl-carrier-protein] synthase	0.1453595551
+UniRef50_Q04C46: Holo-[acyl-carrier-protein] synthase|unclassified	0.1453595551
+UniRef50_UPI0004765AD1: uracil phosphoribosyltransferase	0.1453586138
+UniRef50_UPI0004765AD1: uracil phosphoribosyltransferase|unclassified	0.1453586138
+UniRef50_UPI0003638900: hypothetical protein	0.1453479966
+UniRef50_UPI0003638900: hypothetical protein|unclassified	0.1453479966
+UniRef50_Q6YPR6: Spermidine/putrescine import ATP-binding protein PotA	0.1453466919
+UniRef50_Q6YPR6: Spermidine/putrescine import ATP-binding protein PotA|unclassified	0.1453466919
+UniRef50_Q25AC2: H0425E08.13 protein	0.1453404356
+UniRef50_Q25AC2: H0425E08.13 protein|unclassified	0.1453404356
+UniRef50_UPI000361562B: hypothetical protein, partial	0.1453180351
+UniRef50_UPI000361562B: hypothetical protein, partial|unclassified	0.1453180351
+UniRef50_UPI000408A979: ABC transporter substrate-binding protein	0.1453107173
+UniRef50_UPI000408A979: ABC transporter substrate-binding protein|unclassified	0.1453107173
+UniRef50_UPI000400047B: peptide ABC transporter permease	0.1453054160
+UniRef50_UPI000400047B: peptide ABC transporter permease|unclassified	0.1453054160
+UniRef50_H4DBM0: AMP-binding enzyme family protein	0.1452995720
+UniRef50_H4DBM0: AMP-binding enzyme family protein|unclassified	0.1452995720
+UniRef50_W7DM95	0.1452974900
+UniRef50_W7DM95|unclassified	0.1452974900
+UniRef50_Q5NNV1: 5'-nucleotidase SurE	0.1452949391
+UniRef50_Q5NNV1: 5'-nucleotidase SurE|unclassified	0.1452949391
+UniRef50_UPI0003649940: hypothetical protein	0.1452924911
+UniRef50_UPI0003649940: hypothetical protein|unclassified	0.1452924911
+UniRef50_O32472: (R)-specific enoyl-CoA hydratase	0.1452889413
+UniRef50_O32472: (R)-specific enoyl-CoA hydratase|unclassified	0.1452889413
+UniRef50_Q8ELA5: Methionine import ATP-binding protein MetN 4	0.1452836638
+UniRef50_Q8ELA5: Methionine import ATP-binding protein MetN 4|unclassified	0.1452836638
+UniRef50_F7Q1E0: Carbonic anhydrase Gamma family Zn-dependent enzyme protein	0.1452825645
+UniRef50_F7Q1E0: Carbonic anhydrase Gamma family Zn-dependent enzyme protein|unclassified	0.1452825645
+UniRef50_D8LB80	0.1452811829
+UniRef50_D8LB80|unclassified	0.1452811829
+UniRef50_B8DVE0: Ketol-acid reductoisomerase	0.1452796054
+UniRef50_B8DVE0: Ketol-acid reductoisomerase|unclassified	0.1452796054
+UniRef50_UPI0003B51C09: sugar ABC transporter permease	0.1452761325
+UniRef50_UPI0003B51C09: sugar ABC transporter permease|unclassified	0.1452761325
+UniRef50_R6R9C6: Phage major tail protein phi13 family	0.1452706182
+UniRef50_R6R9C6: Phage major tail protein phi13 family|unclassified	0.1452706182
+UniRef50_UPI000252BB00: PREDICTED: LOW QUALITY PROTEIN: DEAD-box ATP-dependent RNA helicase CshA-like	0.1452652651
+UniRef50_UPI000252BB00: PREDICTED: LOW QUALITY PROTEIN: DEAD-box ATP-dependent RNA helicase CshA-like|unclassified	0.1452652651
+UniRef50_W8GBP8	0.1452607347
+UniRef50_W8GBP8|unclassified	0.1452607347
+UniRef50_L0A7U4: ATPase involved in chromosome partitioning	0.1452580325
+UniRef50_L0A7U4: ATPase involved in chromosome partitioning|unclassified	0.1452580325
+UniRef50_UPI0003B68FBD: pseudouridine synthase	0.1452488730
+UniRef50_UPI0003B68FBD: pseudouridine synthase|unclassified	0.1452488730
+UniRef50_K0A867: LemA protein	0.1452438769
+UniRef50_K0A867: LemA protein|unclassified	0.1452438769
+UniRef50_UPI000471040B: hypothetical protein	0.1452416385
+UniRef50_UPI000471040B: hypothetical protein|unclassified	0.1452416385
+UniRef50_A4A451: Transcriptional regulator, HxlR family	0.1452371049
+UniRef50_A4A451: Transcriptional regulator, HxlR family|unclassified	0.1452371049
+UniRef50_UPI0003ACD77D	0.1452294476
+UniRef50_UPI0003ACD77D|unclassified	0.1452294476
+UniRef50_UPI000380DE08: hypothetical protein	0.1452173943
+UniRef50_UPI000380DE08: hypothetical protein|unclassified	0.1452173943
+UniRef50_O31688: Zinc-transporting ATPase	0.1452165893
+UniRef50_O31688: Zinc-transporting ATPase|unclassified	0.1452165893
+UniRef50_UPI00046731A3: hypothetical protein, partial	0.1452162609
+UniRef50_UPI00046731A3: hypothetical protein, partial|unclassified	0.1452162609
+UniRef50_D5RUB7	0.1452087120
+UniRef50_D5RUB7|unclassified	0.1452087120
+UniRef50_F7QTX4	0.1452037970
+UniRef50_F7QTX4|unclassified	0.1452037970
+UniRef50_B8GX09: Endoribonuclease YbeY	0.1452037106
+UniRef50_B8GX09: Endoribonuclease YbeY|unclassified	0.1452037106
+UniRef50_UPI00047AA84B: cyclodextrin-binding protein	0.1451914340
+UniRef50_UPI00047AA84B: cyclodextrin-binding protein|unclassified	0.1451914340
+UniRef50_R6Y7A2: Alpha-N-acetylglucosaminidase	0.1451904088
+UniRef50_R6Y7A2: Alpha-N-acetylglucosaminidase|unclassified	0.1451904088
+UniRef50_F9XQK8	0.1451878999
+UniRef50_F9XQK8|unclassified	0.1451878999
+UniRef50_D8ULY9	0.1451795532
+UniRef50_D8ULY9|unclassified	0.1451795532
+UniRef50_UPI00025578B3: 3-oxoacyl-ACP reductase	0.1451772611
+UniRef50_UPI00025578B3: 3-oxoacyl-ACP reductase|unclassified	0.1451772611
+UniRef50_Q8PMH5	0.1451721167
+UniRef50_Q8PMH5|unclassified	0.1451721167
+UniRef50_UPI000373543A: hypothetical protein	0.1451706829
+UniRef50_UPI000373543A: hypothetical protein|unclassified	0.1451706829
+UniRef50_T1AAK3: Pyridoxal-5'-phosphate-dependent enzyme, beta subunit (Fragment)	0.1451507215
+UniRef50_T1AAK3: Pyridoxal-5'-phosphate-dependent enzyme, beta subunit (Fragment)|unclassified	0.1451507215
+UniRef50_UPI000361A3EB: hypothetical protein	0.1451456100
+UniRef50_UPI000361A3EB: hypothetical protein|unclassified	0.1451456100
+UniRef50_S6SYK4: Alkanesulfonate transporter substrate-binding subunit	0.1451422636
+UniRef50_S6SYK4: Alkanesulfonate transporter substrate-binding subunit|unclassified	0.1451422636
+UniRef50_B4H9Z5: GL20668	0.1451365796
+UniRef50_B4H9Z5: GL20668|unclassified	0.1451365796
+UniRef50_A7MXI6: RNA polymerase subunit sigma-32	0.1451300236
+UniRef50_A7MXI6: RNA polymerase subunit sigma-32|unclassified	0.1451300236
+UniRef50_A5CWJ8: Holo-[acyl-carrier-protein] synthase	0.1451270918
+UniRef50_A5CWJ8: Holo-[acyl-carrier-protein] synthase|unclassified	0.1451270918
+UniRef50_H5T409: ABC transporter substrate-binding protein	0.1451261437
+UniRef50_H5T409: ABC transporter substrate-binding protein|unclassified	0.1451261437
+UniRef50_UPI000478C596: hypothetical protein	0.1451147437
+UniRef50_UPI000478C596: hypothetical protein|unclassified	0.1451147437
+UniRef50_C0AUK2	0.1451143307
+UniRef50_C0AUK2|unclassified	0.1451143307
+UniRef50_UPI0003EBB7C5: PREDICTED: lon protease homolog 2, peroxisomal	0.1451129218
+UniRef50_UPI0003EBB7C5: PREDICTED: lon protease homolog 2, peroxisomal|unclassified	0.1451129218
+UniRef50_V7DBD7	0.1451109728
+UniRef50_V7DBD7|unclassified	0.1451109728
+UniRef50_UPI00047B0772: hypothetical protein	0.1450979491
+UniRef50_UPI00047B0772: hypothetical protein|unclassified	0.1450979491
+UniRef50_Q7MF00: Anaerobic glycerol-3-phosphate dehydrogenase subunit B	0.1450978753
+UniRef50_Q7MF00: Anaerobic glycerol-3-phosphate dehydrogenase subunit B|unclassified	0.1450978753
+UniRef50_T0ZIE3: KaiC	0.1450977640
+UniRef50_T0ZIE3: KaiC|unclassified	0.1450977640
+UniRef50_UPI00047EC453: hypothetical protein	0.1450977153
+UniRef50_UPI00047EC453: hypothetical protein|unclassified	0.1450977153
+UniRef50_UPI0003A6CC26: hypothetical protein	0.1450959593
+UniRef50_UPI0003A6CC26: hypothetical protein|unclassified	0.1450959593
+UniRef50_W4HQN5	0.1450844052
+UniRef50_W4HQN5|unclassified	0.1450844052
+UniRef50_B1GZJ8: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.1450822388
+UniRef50_B1GZJ8: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.1450822388
+UniRef50_A3SIS8	0.1450806230
+UniRef50_A3SIS8|unclassified	0.1450806230
+UniRef50_I7BZ98	0.1450642422
+UniRef50_I7BZ98|unclassified	0.1450642422
+UniRef50_Q6FDN2	0.1450599755
+UniRef50_Q6FDN2|unclassified	0.1450599755
+UniRef50_UPI0003720F40: hypothetical protein, partial	0.1450538699
+UniRef50_UPI0003720F40: hypothetical protein, partial|unclassified	0.1450538699
+UniRef50_D4BJI6	0.1450488892
+UniRef50_D4BJI6|unclassified	0.1450488892
+UniRef50_T1AKA9: Beta-lactamase class C (Fragment)	0.1450463246
+UniRef50_T1AKA9: Beta-lactamase class C (Fragment)|unclassified	0.1450463246
+UniRef50_UPI00035F9B1F: hypothetical protein	0.1450461444
+UniRef50_UPI00035F9B1F: hypothetical protein|unclassified	0.1450461444
+UniRef50_UPI00035E5B14: hypothetical protein	0.1450312249
+UniRef50_UPI00035E5B14: hypothetical protein|unclassified	0.1450312249
+UniRef50_UPI00038117C3: hypothetical protein	0.1450276409
+UniRef50_UPI00038117C3: hypothetical protein|unclassified	0.1450276409
+UniRef50_I1QQ05	0.1450028493
+UniRef50_I1QQ05|unclassified	0.1450028493
+UniRef50_UPI0003818E4F: hypothetical protein	0.1449800175
+UniRef50_UPI0003818E4F: hypothetical protein|unclassified	0.1449800175
+UniRef50_UPI0004249615: fructose 1,6-bisphosphatase	0.1449784123
+UniRef50_UPI0004249615: fructose 1,6-bisphosphatase|unclassified	0.1449784123
+UniRef50_UPI00047AA5CF: hypothetical protein, partial	0.1449770294
+UniRef50_UPI00047AA5CF: hypothetical protein, partial|unclassified	0.1449770294
+UniRef50_UPI000225AEC6: DNA-directed RNA polymerase, omega subunit, putative	0.1449732773
+UniRef50_UPI000225AEC6: DNA-directed RNA polymerase, omega subunit, putative|unclassified	0.1449732773
+UniRef50_L4PGS0: Antitoxin YeeU	0.1449727745
+UniRef50_L4PGS0: Antitoxin YeeU|unclassified	0.1449727745
+UniRef50_UPI0004781051: peptide ABC transporter permease	0.1449695149
+UniRef50_UPI0004781051: peptide ABC transporter permease|unclassified	0.1449695149
+UniRef50_UPI000368B34F: hypothetical protein	0.1449680366
+UniRef50_UPI000368B34F: hypothetical protein|unclassified	0.1449680366
+UniRef50_J1F996	0.1449655311
+UniRef50_J1F996|unclassified	0.1449655311
+UniRef50_UPI0004663C80: coproporphyrinogen III oxidase	0.1449598922
+UniRef50_UPI0004663C80: coproporphyrinogen III oxidase|unclassified	0.1449598922
+UniRef50_UPI0003C7ADB6: hypothetical protein, partial	0.1449328763
+UniRef50_UPI0003C7ADB6: hypothetical protein, partial|unclassified	0.1449328763
+UniRef50_U4T031	0.1449129986
+UniRef50_U4T031|unclassified	0.1449129986
+UniRef50_UPI000382C774: hypothetical protein	0.1449085621
+UniRef50_UPI000382C774: hypothetical protein|unclassified	0.1449085621
+UniRef50_UPI0003804935: hypothetical protein	0.1449082717
+UniRef50_UPI0003804935: hypothetical protein|unclassified	0.1449082717
+UniRef50_UPI000364ACBB: hypothetical protein	0.1448959667
+UniRef50_UPI000364ACBB: hypothetical protein|unclassified	0.1448959667
+UniRef50_UPI00018506DA: deaminase reductase	0.1448923155
+UniRef50_UPI00018506DA: deaminase reductase|unclassified	0.1448923155
+UniRef50_B5SCC9: Vgr-related protein	0.1448751878
+UniRef50_B5SCC9: Vgr-related protein|unclassified	0.1448751878
+UniRef50_UPI0003B46B1B: glutathione peroxidase, partial	0.1448721330
+UniRef50_UPI0003B46B1B: glutathione peroxidase, partial|unclassified	0.1448721330
+UniRef50_UPI0004708426: hypothetical protein, partial	0.1448615270
+UniRef50_UPI0004708426: hypothetical protein, partial|unclassified	0.1448615270
+UniRef50_K0K2V8	0.1448532843
+UniRef50_K0K2V8|unclassified	0.1448532843
+UniRef50_U4V3Y3: Tellurite resistance protein TehB	0.1448514282
+UniRef50_U4V3Y3: Tellurite resistance protein TehB|unclassified	0.1448514282
+UniRef50_I0GDF4	0.1448471145
+UniRef50_I0GDF4|unclassified	0.1448471145
+UniRef50_W7CXY8: Wall-associated protein (Fragment)	0.1448459730
+UniRef50_W7CXY8: Wall-associated protein (Fragment)|unclassified	0.1448459730
+UniRef50_UPI000475CBB8: SAM-dependent methyltransferase	0.1448428448
+UniRef50_UPI000475CBB8: SAM-dependent methyltransferase|unclassified	0.1448428448
+UniRef50_UPI0003176417: hypothetical protein	0.1448393213
+UniRef50_UPI0003176417: hypothetical protein|unclassified	0.1448393213
+UniRef50_UPI0003790D19: hypothetical protein	0.1448167962
+UniRef50_UPI0003790D19: hypothetical protein|unclassified	0.1448167962
+UniRef50_C3AI25	0.1448163859
+UniRef50_C3AI25|unclassified	0.1448163859
+UniRef50_UPI00045EBB2D: carbapenem-hydrolyzing beta-lactamase BlaB-1	0.1448157866
+UniRef50_UPI00045EBB2D: carbapenem-hydrolyzing beta-lactamase BlaB-1|unclassified	0.1448157866
+UniRef50_V6EIY8	0.1448122574
+UniRef50_V6EIY8|unclassified	0.1448122574
+UniRef50_E2Q705	0.1448095346
+UniRef50_E2Q705|unclassified	0.1448095346
+UniRef50_Q2RZH4: Thymidine kinase	0.1448092718
+UniRef50_Q2RZH4: Thymidine kinase|unclassified	0.1448092718
+UniRef50_UPI00035F8AB1: hypothetical protein	0.1447811685
+UniRef50_UPI00035F8AB1: hypothetical protein|unclassified	0.1447811685
+UniRef50_UPI000346DC0F: hypothetical protein	0.1447795318
+UniRef50_UPI000346DC0F: hypothetical protein|unclassified	0.1447795318
+UniRef50_UPI0002F5B1BD: hypothetical protein	0.1447597052
+UniRef50_UPI0002F5B1BD: hypothetical protein|unclassified	0.1447597052
+UniRef50_UPI000373D5AE: hypothetical protein	0.1447515941
+UniRef50_UPI000373D5AE: hypothetical protein|unclassified	0.1447515941
+UniRef50_Q2S4B9: Leucyl/phenylalanyl-tRNA--protein transferase	0.1447466319
+UniRef50_Q2S4B9: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.1447466319
+UniRef50_B8C850	0.1447309674
+UniRef50_B8C850|unclassified	0.1447309674
+UniRef50_W7TA02	0.1447301167
+UniRef50_W7TA02|unclassified	0.1447301167
+UniRef50_K0T232	0.1447162436
+UniRef50_K0T232|unclassified	0.1447162436
+UniRef50_UPI0003FD107E: phosphoglycerate mutase	0.1447058341
+UniRef50_UPI0003FD107E: phosphoglycerate mutase|unclassified	0.1447058341
+UniRef50_H9KKZ5	0.1446990715
+UniRef50_H9KKZ5|unclassified	0.1446990715
+UniRef50_C7TJX1: Alkaline shock protein, Gls24 family	0.1446953287
+UniRef50_C7TJX1: Alkaline shock protein, Gls24 family|unclassified	0.1446953287
+UniRef50_UPI000465F37A: ABC transporter	0.1446928637
+UniRef50_UPI000465F37A: ABC transporter|unclassified	0.1446928637
+UniRef50_Q9PAM0: Inositol-1-monophosphatase	0.1446892186
+UniRef50_Q9PAM0: Inositol-1-monophosphatase|unclassified	0.1446892186
+UniRef50_UPI0003EA8458: PREDICTED: alanine--glyoxylate aminotransferase 2, mitochondrial-like	0.1446846344
+UniRef50_UPI0003EA8458: PREDICTED: alanine--glyoxylate aminotransferase 2, mitochondrial-like|unclassified	0.1446846344
+UniRef50_Q7VLN2: Cyclic pyranopterin monophosphate synthase accessory protein	0.1446836380
+UniRef50_Q7VLN2: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	0.1446836380
+UniRef50_E0CTY1: Glutamyl-tRNA(Gln) amidotransferase subunit A, chloroplastic/mitochondrial	0.1446710216
+UniRef50_E0CTY1: Glutamyl-tRNA(Gln) amidotransferase subunit A, chloroplastic/mitochondrial|unclassified	0.1446710216
+UniRef50_N9WEN9	0.1446701697
+UniRef50_N9WEN9|unclassified	0.1446701697
+UniRef50_UPI00047C9347: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.1446613228
+UniRef50_UPI00047C9347: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.1446613228
+UniRef50_UPI0002FA4ABF: hypothetical protein	0.1446523359
+UniRef50_UPI0002FA4ABF: hypothetical protein|unclassified	0.1446523359
+UniRef50_UPI00036089CB: hypothetical protein	0.1446505135
+UniRef50_UPI00036089CB: hypothetical protein|unclassified	0.1446505135
+UniRef50_Q7NIJ4: Gll2189 protein	0.1446444122
+UniRef50_Q7NIJ4: Gll2189 protein|unclassified	0.1446444122
+UniRef50_UPI0002559C24: arginine succinyltransferase	0.1446336809
+UniRef50_UPI0002559C24: arginine succinyltransferase|unclassified	0.1446336809
+UniRef50_V2AZ64: Phage tail protein	0.1446327011
+UniRef50_V2AZ64: Phage tail protein|unclassified	0.1446327011
+UniRef50_K6PY84: Flagellar basal body protein	0.1446279204
+UniRef50_K6PY84: Flagellar basal body protein|unclassified	0.1446279204
+UniRef50_UPI0001911F18: hypothetical protein, partial	0.1446278251
+UniRef50_UPI0001911F18: hypothetical protein, partial|unclassified	0.1446278251
+UniRef50_UPI00046B3ED1: PREDICTED: ornithine carbamoyltransferase, mitochondrial-like, partial	0.1446261160
+UniRef50_UPI00046B3ED1: PREDICTED: ornithine carbamoyltransferase, mitochondrial-like, partial|unclassified	0.1446261160
+UniRef50_UPI00047ABF41: hypothetical protein	0.1446167844
+UniRef50_UPI00047ABF41: hypothetical protein|unclassified	0.1446167844
+UniRef50_UPI000288BDAF: cold-shock protein	0.1446073995
+UniRef50_UPI000288BDAF: cold-shock protein|unclassified	0.1446073995
+UniRef50_R5UMD4	0.1446022841
+UniRef50_R5UMD4|unclassified	0.1446022841
+UniRef50_A1VSI1: Phage tail E family protein	0.1445992269
+UniRef50_A1VSI1: Phage tail E family protein|unclassified	0.1445992269
+UniRef50_UPI0004226290: MarR family transcriptional regulator	0.1445493594
+UniRef50_UPI0004226290: MarR family transcriptional regulator|unclassified	0.1445493594
+UniRef50_UPI00036EA5F9: hypothetical protein, partial	0.1445467223
+UniRef50_UPI00036EA5F9: hypothetical protein, partial|unclassified	0.1445467223
+UniRef50_E7TH07	0.1445385832
+UniRef50_E7TH07|unclassified	0.1445385832
+UniRef50_P12063: Tyrosine--tRNA ligase, mitochondrial	0.1445266461
+UniRef50_P12063: Tyrosine--tRNA ligase, mitochondrial|unclassified	0.1445266461
+UniRef50_UPI00016C35F3: probable MoxR-related protein, partial	0.1445245610
+UniRef50_UPI00016C35F3: probable MoxR-related protein, partial|unclassified	0.1445245610
+UniRef50_UPI000361588B: hypothetical protein	0.1445195505
+UniRef50_UPI000361588B: hypothetical protein|unclassified	0.1445195505
+UniRef50_A4XUP3: Putative glutamate--cysteine ligase 2	0.1445006258
+UniRef50_A4XUP3: Putative glutamate--cysteine ligase 2|unclassified	0.1445006258
+UniRef50_UPI00047E98D7: hypothetical protein	0.1444855330
+UniRef50_UPI00047E98D7: hypothetical protein|unclassified	0.1444855330
+UniRef50_Q6MPV7: Dual-specificity RNA methyltransferase RlmN	0.1444820819
+UniRef50_Q6MPV7: Dual-specificity RNA methyltransferase RlmN|unclassified	0.1444820819
+UniRef50_M9R9P7	0.1444781286
+UniRef50_M9R9P7|unclassified	0.1444781286
+UniRef50_A5EIH7	0.1444765614
+UniRef50_A5EIH7|unclassified	0.1444765614
+UniRef50_V4RP20	0.1444674451
+UniRef50_V4RP20|unclassified	0.1444674451
+UniRef50_UPI0004693686: ABC transporter permease	0.1444660227
+UniRef50_UPI0004693686: ABC transporter permease|unclassified	0.1444660227
+UniRef50_Q03V72: Holo-[acyl-carrier-protein] synthase	0.1444658528
+UniRef50_Q03V72: Holo-[acyl-carrier-protein] synthase|unclassified	0.1444658528
+UniRef50_UPI000379A5C4: hypothetical protein	0.1444641657
+UniRef50_UPI000379A5C4: hypothetical protein|unclassified	0.1444641657
+UniRef50_UPI000367BCF6: hypothetical protein	0.1444510341
+UniRef50_UPI000367BCF6: hypothetical protein|unclassified	0.1444510341
+UniRef50_UPI000376DCF8: hypothetical protein	0.1444506686
+UniRef50_UPI000376DCF8: hypothetical protein|unclassified	0.1444506686
+UniRef50_K7E6J9	0.1444471103
+UniRef50_K7E6J9|unclassified	0.1444471103
+UniRef50_G1Y0U9	0.1444470022
+UniRef50_G1Y0U9|unclassified	0.1444470022
+UniRef50_UPI0003C1000B: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial-like	0.1444433130
+UniRef50_UPI0003C1000B: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial-like|unclassified	0.1444433130
+UniRef50_C8P5G2: Raf-like protein	0.1444386569
+UniRef50_C8P5G2: Raf-like protein|unclassified	0.1444386569
+UniRef50_UPI000363A8BB: hypothetical protein	0.1444248917
+UniRef50_UPI000363A8BB: hypothetical protein|unclassified	0.1444248917
+UniRef50_A3CQD9	0.1444227719
+UniRef50_A3CQD9|unclassified	0.1444227719
+UniRef50_UPI0003FA4841: hypothetical protein	0.1444139798
+UniRef50_UPI0003FA4841: hypothetical protein|unclassified	0.1444139798
+UniRef50_UPI0004419F5D	0.1443910547
+UniRef50_UPI0004419F5D|unclassified	0.1443910547
+UniRef50_UPI00029B186D: histidine biosynthesis bifunctional protein hisIE, partial	0.1443768368
+UniRef50_UPI00029B186D: histidine biosynthesis bifunctional protein hisIE, partial|unclassified	0.1443768368
+UniRef50_X1R855: Marine sediment metagenome DNA, contig: S12H4_C00353 (Fragment)	0.1443765200
+UniRef50_X1R855: Marine sediment metagenome DNA, contig: S12H4_C00353 (Fragment)|unclassified	0.1443765200
+UniRef50_Q0W5C5	0.1443735517
+UniRef50_Q0W5C5|unclassified	0.1443735517
+UniRef50_A5FW26: MaoC domain protein dehydratase	0.1443698142
+UniRef50_A5FW26: MaoC domain protein dehydratase|unclassified	0.1443698142
+UniRef50_UPI00034A1EBD: lysine transporter LysE	0.1443646773
+UniRef50_UPI00034A1EBD: lysine transporter LysE|unclassified	0.1443646773
+UniRef50_UPI00021A5775: PREDICTED: ribosomal RNA small subunit methyltransferase H-like	0.1443619779
+UniRef50_UPI00021A5775: PREDICTED: ribosomal RNA small subunit methyltransferase H-like|unclassified	0.1443619779
+UniRef50_A8G7R7	0.1443605107
+UniRef50_A8G7R7|unclassified	0.1443605107
+UniRef50_W5X7D6: Polysaccharide deacetylase	0.1443592971
+UniRef50_W5X7D6: Polysaccharide deacetylase|unclassified	0.1443592971
+UniRef50_UPI000425B488: hypothetical protein	0.1443566648
+UniRef50_UPI000425B488: hypothetical protein|unclassified	0.1443566648
+UniRef50_UPI000225C104: PhoP family transcriptional regulator	0.1443531754
+UniRef50_UPI000225C104: PhoP family transcriptional regulator|unclassified	0.1443531754
+UniRef50_A0A038HZQ1: TRAP transporter, DctM-like membrane domain protein	0.1443526365
+UniRef50_A0A038HZQ1: TRAP transporter, DctM-like membrane domain protein|unclassified	0.1443526365
+UniRef50_A4VGQ1: Cytoplasmic membrane protein	0.1443354449
+UniRef50_A4VGQ1: Cytoplasmic membrane protein|unclassified	0.1443354449
+UniRef50_B2V2P3: Potassium-transporting ATPase B chain	0.1443340604
+UniRef50_B2V2P3: Potassium-transporting ATPase B chain|unclassified	0.1443340604
+UniRef50_UPI00047A10FA: phosphoribosylformylglycinamidine synthase	0.1443289902
+UniRef50_UPI00047A10FA: phosphoribosylformylglycinamidine synthase|unclassified	0.1443289902
+UniRef50_UPI00046782B3: hypothetical protein	0.1443276865
+UniRef50_UPI00046782B3: hypothetical protein|unclassified	0.1443276865
+UniRef50_X1T676: Marine sediment metagenome DNA, contig: S12H4_L00199	0.1443050915
+UniRef50_X1T676: Marine sediment metagenome DNA, contig: S12H4_L00199|unclassified	0.1443050915
+UniRef50_UPI0003AE08B4: PREDICTED: basic proline-rich protein-like	0.1442778483
+UniRef50_UPI0003AE08B4: PREDICTED: basic proline-rich protein-like|unclassified	0.1442778483
+UniRef50_UPI00036C4F08: hypothetical protein	0.1442680200
+UniRef50_UPI00036C4F08: hypothetical protein|unclassified	0.1442680200
+UniRef50_UPI0003B6E12D: membrane protein	0.1442671339
+UniRef50_UPI0003B6E12D: membrane protein|unclassified	0.1442671339
+UniRef50_UPI00037DD48E: hypothetical protein	0.1442644170
+UniRef50_UPI00037DD48E: hypothetical protein|unclassified	0.1442644170
+UniRef50_B8CW21: tRNA (guanine-N(1)-)-methyltransferase	0.1442589585
+UniRef50_B8CW21: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.1442589585
+UniRef50_UPI000372156F: hypothetical protein	0.1442543118
+UniRef50_UPI000372156F: hypothetical protein|unclassified	0.1442543118
+UniRef50_C9CU41	0.1442450369
+UniRef50_C9CU41|unclassified	0.1442450369
+UniRef50_Q6LQV5	0.1442444950
+UniRef50_Q6LQV5|unclassified	0.1442444950
+UniRef50_Q1RHA1: Signal peptidase I	0.1442242521
+UniRef50_Q1RHA1: Signal peptidase I|unclassified	0.1442242521
+UniRef50_UPI00037C253B: alcohol dehydrogenase	0.1442223105
+UniRef50_UPI00037C253B: alcohol dehydrogenase|unclassified	0.1442223105
+UniRef50_UPI000378AE4A: O-acetylhomoserine aminocarboxypropyltransferase	0.1442219263
+UniRef50_UPI000378AE4A: O-acetylhomoserine aminocarboxypropyltransferase|unclassified	0.1442219263
+UniRef50_UPI0002895799: methyl-accepting chemotaxis protein	0.1442174478
+UniRef50_UPI0002895799: methyl-accepting chemotaxis protein|unclassified	0.1442174478
+UniRef50_R7UQ24	0.1442154591
+UniRef50_R7UQ24|unclassified	0.1442154591
+UniRef50_UPI0002895DAD: glycerophosphoryl diester phosphodiesterase	0.1442149184
+UniRef50_UPI0002895DAD: glycerophosphoryl diester phosphodiesterase|unclassified	0.1442149184
+UniRef50_C0AXX7	0.1442134716
+UniRef50_C0AXX7|unclassified	0.1442134716
+UniRef50_UPI000422A93E: hypothetical protein	0.1442080521
+UniRef50_UPI000422A93E: hypothetical protein|unclassified	0.1442080521
+UniRef50_Q1QV27	0.1442069275
+UniRef50_Q1QV27|unclassified	0.1442069275
+UniRef50_UPI000467728E: ABC transporter ATP-binding protein	0.1441963181
+UniRef50_UPI000467728E: ABC transporter ATP-binding protein|unclassified	0.1441963181
+UniRef50_B5YI28: S-adenosylmethionine decarboxylase proenzyme	0.1441773745
+UniRef50_B5YI28: S-adenosylmethionine decarboxylase proenzyme|unclassified	0.1441773745
+UniRef50_A8LRK8	0.1441738494
+UniRef50_A8LRK8|unclassified	0.1441738494
+UniRef50_UPI0003639910: hypothetical protein	0.1441718474
+UniRef50_UPI0003639910: hypothetical protein|unclassified	0.1441718474
+UniRef50_UPI000365B8C2: hypothetical protein	0.1441647436
+UniRef50_UPI000365B8C2: hypothetical protein|unclassified	0.1441647436
+UniRef50_UPI00031FAD47: hypothetical protein	0.1441525340
+UniRef50_UPI00031FAD47: hypothetical protein|unclassified	0.1441525340
+UniRef50_A3JSZ9: Thioesterase superfamily protein	0.1441501800
+UniRef50_A3JSZ9: Thioesterase superfamily protein|unclassified	0.1441501800
+UniRef50_UPI000405AABA: biotin biosynthesis protein BioY	0.1441477535
+UniRef50_UPI000405AABA: biotin biosynthesis protein BioY|unclassified	0.1441477535
+UniRef50_UPI00036F4A99: hypothetical protein, partial	0.1441410597
+UniRef50_UPI00036F4A99: hypothetical protein, partial|unclassified	0.1441410597
+UniRef50_E3EYG8	0.1441349034
+UniRef50_E3EYG8|unclassified	0.1441349034
+UniRef50_I0JNK1	0.1441315423
+UniRef50_I0JNK1|unclassified	0.1441315423
+UniRef50_UPI00046FEBEB: hypothetical protein	0.1441271352
+UniRef50_UPI00046FEBEB: hypothetical protein|unclassified	0.1441271352
+UniRef50_G7R4L9	0.1441253031
+UniRef50_G7R4L9|unclassified	0.1441253031
+UniRef50_Q1D0T1: UDP-N-acetylmuramate--L-alanine ligase	0.1441223251
+UniRef50_Q1D0T1: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.1441223251
+UniRef50_C6R725	0.1441117635
+UniRef50_C6R725|unclassified	0.1441117635
+UniRef50_UPI0004766E4B: hemolysin secretion protein D	0.1440997769
+UniRef50_UPI0004766E4B: hemolysin secretion protein D|unclassified	0.1440997769
+UniRef50_W4VKV0: Chromosome (Plasmid) partitioning protein ParA	0.1440968175
+UniRef50_W4VKV0: Chromosome (Plasmid) partitioning protein ParA|unclassified	0.1440968175
+UniRef50_P50059: Superoxide dismutase [Mn] 2	0.1440960177
+UniRef50_P50059: Superoxide dismutase [Mn] 2|unclassified	0.1440960177
+UniRef50_L8H3Y9	0.1440930677
+UniRef50_L8H3Y9|unclassified	0.1440930677
+UniRef50_D8PXI9	0.1440916618
+UniRef50_D8PXI9|unclassified	0.1440916618
+UniRef50_UPI000369DAD8: hypothetical protein	0.1440889401
+UniRef50_UPI000369DAD8: hypothetical protein|unclassified	0.1440889401
+UniRef50_UPI00037553D8: hypothetical protein, partial	0.1440877760
+UniRef50_UPI00037553D8: hypothetical protein, partial|unclassified	0.1440877760
+UniRef50_UPI000469FB20: NUDIX hydrolase	0.1440736325
+UniRef50_UPI000469FB20: NUDIX hydrolase|unclassified	0.1440736325
+UniRef50_A0A018ZXW4: Molybdopterin-guanine dinucleotide biosynthesis protein MobA	0.1440584031
+UniRef50_A0A018ZXW4: Molybdopterin-guanine dinucleotide biosynthesis protein MobA|unclassified	0.1440584031
+UniRef50_B1GZT3: Chorismate synthase	0.1440552579
+UniRef50_B1GZT3: Chorismate synthase|unclassified	0.1440552579
+UniRef50_UPI00038132E3: hypothetical protein	0.1440430944
+UniRef50_UPI00038132E3: hypothetical protein|unclassified	0.1440430944
+UniRef50_UPI000371715C: hypothetical protein	0.1440269676
+UniRef50_UPI000371715C: hypothetical protein|unclassified	0.1440269676
+UniRef50_Q59447: Cysteine synthase	0.1440251536
+UniRef50_Q59447: Cysteine synthase|unclassified	0.1440251536
+UniRef50_R4Y5R0: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.1439945731
+UniRef50_R4Y5R0: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|unclassified	0.1439945731
+UniRef50_Q3JTQ7: Phage terminase, large subunit, putative	0.1439863006
+UniRef50_Q3JTQ7: Phage terminase, large subunit, putative|unclassified	0.1439863006
+UniRef50_D5QCV2: Heat shock protein Hsp20	0.1439830448
+UniRef50_D5QCV2: Heat shock protein Hsp20|unclassified	0.1439830448
+UniRef50_D2J9T5: Replication protein	0.1439819991
+UniRef50_D2J9T5: Replication protein|unclassified	0.1439819991
+UniRef50_Q9S208: Putative 3-methyladenine DNA glycosylase	0.1439729237
+UniRef50_Q9S208: Putative 3-methyladenine DNA glycosylase|unclassified	0.1439729237
+UniRef50_B4RA78: Regulatory protein, TetR	0.1439724619
+UniRef50_B4RA78: Regulatory protein, TetR|unclassified	0.1439724619
+UniRef50_A1B1I1: Leucyl/phenylalanyl-tRNA--protein transferase	0.1439704083
+UniRef50_A1B1I1: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.1439704083
+UniRef50_O23814: Probable phospholipid hydroperoxide glutathione peroxidase	0.1439685646
+UniRef50_O23814: Probable phospholipid hydroperoxide glutathione peroxidase|unclassified	0.1439685646
+UniRef50_A6WWR5: Ureidoglycolate lyase	0.1439673833
+UniRef50_A6WWR5: Ureidoglycolate lyase|unclassified	0.1439673833
+UniRef50_P19906: Nitrogen regulation protein NtrB	0.1439159069
+UniRef50_P19906: Nitrogen regulation protein NtrB|unclassified	0.1439159069
+UniRef50_UPI00036DDC82: hypothetical protein	0.1439030861
+UniRef50_UPI00036DDC82: hypothetical protein|unclassified	0.1439030861
+UniRef50_X0PNW8: DNA gyrase subunit B	0.1439014121
+UniRef50_X0PNW8: DNA gyrase subunit B|unclassified	0.1439014121
+UniRef50_UPI0004704BE4: hypothetical protein, partial	0.1438998049
+UniRef50_UPI0004704BE4: hypothetical protein, partial|unclassified	0.1438998049
+UniRef50_UPI00035C4CDB: hypothetical protein	0.1438989883
+UniRef50_UPI00035C4CDB: hypothetical protein|unclassified	0.1438989883
+UniRef50_UPI00035CEAF5: hypothetical protein	0.1438980824
+UniRef50_UPI00035CEAF5: hypothetical protein|unclassified	0.1438980824
+UniRef50_UPI000372D4DD: hypothetical protein	0.1438936892
+UniRef50_UPI000372D4DD: hypothetical protein|unclassified	0.1438936892
+UniRef50_UPI0002899E20: cystathionine beta-lyase	0.1438736296
+UniRef50_UPI0002899E20: cystathionine beta-lyase|unclassified	0.1438736296
+UniRef50_UPI0004639C84: oligopeptidase PepB	0.1438725565
+UniRef50_UPI0004639C84: oligopeptidase PepB|unclassified	0.1438725565
+UniRef50_R8G653	0.1438593967
+UniRef50_R8G653|unclassified	0.1438593967
+UniRef50_D1A9F3	0.1438493593
+UniRef50_D1A9F3|unclassified	0.1438493593
+UniRef50_UPI000364E75E: hypothetical protein	0.1438429925
+UniRef50_UPI000364E75E: hypothetical protein|unclassified	0.1438429925
+UniRef50_UPI00035C19B6: hypothetical protein	0.1438409710
+UniRef50_UPI00035C19B6: hypothetical protein|unclassified	0.1438409710
+UniRef50_UPI0004031443: hypothetical protein	0.1438408742
+UniRef50_UPI0004031443: hypothetical protein|unclassified	0.1438408742
+UniRef50_K0YWF0	0.1438401168
+UniRef50_K0YWF0|unclassified	0.1438401168
+UniRef50_W1KWW8: Lytic transglycosylase	0.1438284899
+UniRef50_W1KWW8: Lytic transglycosylase|unclassified	0.1438284899
+UniRef50_M1VUG6	0.1438274093
+UniRef50_M1VUG6|unclassified	0.1438274093
+UniRef50_UPI0002039613: PREDICTED: 28S ribosomal protein S18c, mitochondrial-like	0.1438270414
+UniRef50_UPI0002039613: PREDICTED: 28S ribosomal protein S18c, mitochondrial-like|unclassified	0.1438270414
+UniRef50_UPI00022CADD1: PREDICTED: hypothetical protein LOC100746834	0.1438132953
+UniRef50_UPI00022CADD1: PREDICTED: hypothetical protein LOC100746834|unclassified	0.1438132953
+UniRef50_B0NKK0	0.1438001595
+UniRef50_B0NKK0|unclassified	0.1438001595
+UniRef50_F7ZL04	0.1437941105
+UniRef50_F7ZL04|unclassified	0.1437941105
+UniRef50_A0A017TIS1: PKD domain containing protein	0.1437801593
+UniRef50_A0A017TIS1: PKD domain containing protein|unclassified	0.1437801593
+UniRef50_UPI0002194C57: membrane protein	0.1437762557
+UniRef50_UPI0002194C57: membrane protein|unclassified	0.1437762557
+UniRef50_UPI000185D9AD: hypothetical protein TGME49_059160	0.1437679600
+UniRef50_UPI000185D9AD: hypothetical protein TGME49_059160|unclassified	0.1437679600
+UniRef50_UPI000262CE92: pyrroloquinoline quinone biosynthesis protein PqqB	0.1437575687
+UniRef50_UPI000262CE92: pyrroloquinoline quinone biosynthesis protein PqqB|unclassified	0.1437575687
+UniRef50_UPI0003B704F5: 1-acyl-sn-glycerol-3-phosphate acyltransferase	0.1437493779
+UniRef50_UPI0003B704F5: 1-acyl-sn-glycerol-3-phosphate acyltransferase|unclassified	0.1437493779
+UniRef50_UPI00036009B3: hypothetical protein	0.1437468265
+UniRef50_UPI00036009B3: hypothetical protein|unclassified	0.1437468265
+UniRef50_UPI0002236760: PREDICTED: zinc finger matrin-type protein 1-like	0.1437434019
+UniRef50_UPI0002236760: PREDICTED: zinc finger matrin-type protein 1-like|unclassified	0.1437434019
+UniRef50_P45419: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase	0.1437345396
+UniRef50_P45419: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase|unclassified	0.1437345396
+UniRef50_UPI0004676DDF: hypothetical protein	0.1437312527
+UniRef50_UPI0004676DDF: hypothetical protein|unclassified	0.1437312527
+UniRef50_H5UKB7	0.1437246174
+UniRef50_H5UKB7|unclassified	0.1437246174
+UniRef50_UPI000393CC0B	0.1437209998
+UniRef50_UPI000393CC0B|unclassified	0.1437209998
+UniRef50_UPI0004731B78: 4-alpha-glucanotransferase, partial	0.1436939579
+UniRef50_UPI0004731B78: 4-alpha-glucanotransferase, partial|unclassified	0.1436939579
+UniRef50_UPI00041D354E: MarR family transcriptional regulator	0.1436782011
+UniRef50_UPI00041D354E: MarR family transcriptional regulator|unclassified	0.1436782011
+UniRef50_UPI000262EF8E: LacI family transcriptional regulator, partial	0.1436681795
+UniRef50_UPI000262EF8E: LacI family transcriptional regulator, partial|unclassified	0.1436681795
+UniRef50_UPI000370DA1C: hypothetical protein	0.1436645486
+UniRef50_UPI000370DA1C: hypothetical protein|unclassified	0.1436645486
+UniRef50_UPI00030E8238: hypothetical protein	0.1436492125
+UniRef50_UPI00030E8238: hypothetical protein|unclassified	0.1436492125
+UniRef50_R7TAM2	0.1436481895
+UniRef50_R7TAM2|unclassified	0.1436481895
+UniRef50_UPI00047BA852: hypothetical protein	0.1436321803
+UniRef50_UPI00047BA852: hypothetical protein|unclassified	0.1436321803
+UniRef50_UPI000471C549: hypothetical protein	0.1436310842
+UniRef50_UPI000471C549: hypothetical protein|unclassified	0.1436310842
+UniRef50_Q8G564: Cystathionine beta-synthase	0.1436279651
+UniRef50_Q8G564: Cystathionine beta-synthase|unclassified	0.1436279651
+UniRef50_M4K9P7	0.1436248599
+UniRef50_M4K9P7|unclassified	0.1436248599
+UniRef50_Q8K9N2: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex	0.1436219634
+UniRef50_Q8K9N2: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|unclassified	0.1436219634
+UniRef50_UPI0003AD9B4B: PREDICTED: arginine/serine-rich protein 45-like	0.1436128765
+UniRef50_UPI0003AD9B4B: PREDICTED: arginine/serine-rich protein 45-like|unclassified	0.1436128765
+UniRef50_D5ALT4	0.1436111467
+UniRef50_D5ALT4|unclassified	0.1436111467
+UniRef50_E5U6M9	0.1436107046
+UniRef50_E5U6M9|unclassified	0.1436107046
+UniRef50_UPI0002E9BD4F: hypothetical protein	0.1436091288
+UniRef50_UPI0002E9BD4F: hypothetical protein|unclassified	0.1436091288
+UniRef50_J3CG78: Soluble lytic murein transglycosylase-like protein	0.1436063428
+UniRef50_J3CG78: Soluble lytic murein transglycosylase-like protein|unclassified	0.1436063428
+UniRef50_UPI000381292E: hypothetical protein, partial	0.1435774099
+UniRef50_UPI000381292E: hypothetical protein, partial|unclassified	0.1435774099
+UniRef50_UPI0003B48E1B: ADP ribose pyrophosphatase	0.1435663074
+UniRef50_UPI0003B48E1B: ADP ribose pyrophosphatase|unclassified	0.1435663074
+UniRef50_B8EK13: Ribonuclease 3	0.1435642326
+UniRef50_B8EK13: Ribonuclease 3|unclassified	0.1435642326
+UniRef50_UPI00036489B0: hypothetical protein	0.1435608913
+UniRef50_UPI00036489B0: hypothetical protein|unclassified	0.1435608913
+UniRef50_G9ZLK6: UvrC Helix-hairpin-helix	0.1435409550
+UniRef50_G9ZLK6: UvrC Helix-hairpin-helix|unclassified	0.1435409550
+UniRef50_A9WI79	0.1435370856
+UniRef50_A9WI79|unclassified	0.1435370856
+UniRef50_C1E796: Predicted protein	0.1435267215
+UniRef50_C1E796: Predicted protein|unclassified	0.1435267215
+UniRef50_K5A7H4: ABC transporter, solute-binding protein	0.1435246883
+UniRef50_K5A7H4: ABC transporter, solute-binding protein|unclassified	0.1435246883
+UniRef50_UPI00036CE764: RNA-binding protein	0.1435231493
+UniRef50_UPI00036CE764: RNA-binding protein|unclassified	0.1435231493
+UniRef50_S9QJV0	0.1435226918
+UniRef50_S9QJV0|unclassified	0.1435226918
+UniRef50_UPI00036A6E66: hypothetical protein	0.1434942814
+UniRef50_UPI00036A6E66: hypothetical protein|unclassified	0.1434942814
+UniRef50_UPI00020E4158	0.1434922937
+UniRef50_UPI00020E4158|unclassified	0.1434922937
+UniRef50_UPI000471AABA: hypothetical protein	0.1434921628
+UniRef50_UPI000471AABA: hypothetical protein|unclassified	0.1434921628
+UniRef50_UPI00047E7661: hypothetical protein	0.1434920503
+UniRef50_UPI00047E7661: hypothetical protein|unclassified	0.1434920503
+UniRef50_UPI0003B31866: amino acid transporter	0.1434915672
+UniRef50_UPI0003B31866: amino acid transporter|unclassified	0.1434915672
+UniRef50_UPI000454729B: PREDICTED: serine/arginine repetitive matrix protein 3-like	0.1434795253
+UniRef50_UPI000454729B: PREDICTED: serine/arginine repetitive matrix protein 3-like|unclassified	0.1434795253
+UniRef50_I0DZQ0: Lipoprotein	0.1434747956
+UniRef50_I0DZQ0: Lipoprotein|unclassified	0.1434747956
+UniRef50_X0V3Z0: Marine sediment metagenome DNA, contig: S01H1_S03741 (Fragment)	0.1434725497
+UniRef50_X0V3Z0: Marine sediment metagenome DNA, contig: S01H1_S03741 (Fragment)|unclassified	0.1434725497
+UniRef50_UPI000467AF5F: hypothetical protein	0.1434710932
+UniRef50_UPI000467AF5F: hypothetical protein|unclassified	0.1434710932
+UniRef50_UPI0003B73A84: cation:proton antiporter	0.1434656029
+UniRef50_UPI0003B73A84: cation:proton antiporter|unclassified	0.1434656029
+UniRef50_S4NQ19	0.1434584566
+UniRef50_S4NQ19|unclassified	0.1434584566
+UniRef50_Q058E7: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	0.1434560134
+UniRef50_Q058E7: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.1434560134
+UniRef50_Q8UGD5: Ribosomal RNA small subunit methyltransferase A	0.1434533958
+UniRef50_Q8UGD5: Ribosomal RNA small subunit methyltransferase A|unclassified	0.1434533958
+UniRef50_UPI00047D607A: ribulose-phosphate 3-epimerase	0.1434508243
+UniRef50_UPI00047D607A: ribulose-phosphate 3-epimerase|unclassified	0.1434508243
+UniRef50_V6JPX0	0.1434464408
+UniRef50_V6JPX0|unclassified	0.1434464408
+UniRef50_UPI000379C92D: hypothetical protein	0.1434461869
+UniRef50_UPI000379C92D: hypothetical protein|unclassified	0.1434461869
+UniRef50_UPI0000165EE8: hypothetical protein DR_A0025	0.1434406958
+UniRef50_UPI0000165EE8: hypothetical protein DR_A0025|unclassified	0.1434406958
+UniRef50_UPI00036A30E6: hypothetical protein	0.1434356665
+UniRef50_UPI00036A30E6: hypothetical protein|unclassified	0.1434356665
+UniRef50_UPI00047B6853: NAD-binding oxidoreductase	0.1434327493
+UniRef50_UPI00047B6853: NAD-binding oxidoreductase|unclassified	0.1434327493
+UniRef50_UPI0003B41E80: flagellar biosynthesis protein FliR	0.1434280799
+UniRef50_UPI0003B41E80: flagellar biosynthesis protein FliR|unclassified	0.1434280799
+UniRef50_Q6Z321: Epstein-Barr virus EBNA-1-like	0.1434238792
+UniRef50_Q6Z321: Epstein-Barr virus EBNA-1-like|unclassified	0.1434238792
+UniRef50_UPI00036F81DF: ABC transporter permease	0.1434116081
+UniRef50_UPI00036F81DF: ABC transporter permease|unclassified	0.1434116081
+UniRef50_UPI00038F2DE3	0.1433978798
+UniRef50_UPI00038F2DE3|unclassified	0.1433978798
+UniRef50_S6AAK1	0.1433968422
+UniRef50_S6AAK1|unclassified	0.1433968422
+UniRef50_Q8EPR9: Histidine--tRNA ligase	0.1433958506
+UniRef50_Q8EPR9: Histidine--tRNA ligase|unclassified	0.1433958506
+UniRef50_UPI000412C9C3: hypothetical protein	0.1433944720
+UniRef50_UPI000412C9C3: hypothetical protein|unclassified	0.1433944720
+UniRef50_P30648: Probable deoxycytidylate deaminase	0.1433886518
+UniRef50_P30648: Probable deoxycytidylate deaminase|unclassified	0.1433886518
+UniRef50_E2SB30: Transglutaminase-like protein	0.1433725536
+UniRef50_E2SB30: Transglutaminase-like protein|unclassified	0.1433725536
+UniRef50_UPI00037FB943: hypothetical protein	0.1433711773
+UniRef50_UPI00037FB943: hypothetical protein|unclassified	0.1433711773
+UniRef50_Q1YJC8	0.1433630170
+UniRef50_Q1YJC8|unclassified	0.1433630170
+UniRef50_B1Y6S6: Diaminopimelate epimerase	0.1433623855
+UniRef50_B1Y6S6: Diaminopimelate epimerase|unclassified	0.1433623855
+UniRef50_T0SI50: Branched-chain amino acid ABC transporter (Fragment)	0.1433605144
+UniRef50_T0SI50: Branched-chain amino acid ABC transporter (Fragment)|unclassified	0.1433605144
+UniRef50_Q2WAJ8: Chemotaxis response regulator protein-glutamate methylesterase 1	0.1433454724
+UniRef50_Q2WAJ8: Chemotaxis response regulator protein-glutamate methylesterase 1|unclassified	0.1433454724
+UniRef50_UPI00035D3125: hypothetical protein	0.1433449936
+UniRef50_UPI00035D3125: hypothetical protein|unclassified	0.1433449936
+UniRef50_A5G938: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.1433370041
+UniRef50_A5G938: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.1433370041
+UniRef50_UPI00036BE90B: hypothetical protein	0.1433132227
+UniRef50_UPI00036BE90B: hypothetical protein|unclassified	0.1433132227
+UniRef50_D2S345	0.1433116719
+UniRef50_D2S345|unclassified	0.1433116719
+UniRef50_Q28NI7: ATP-dependent Clp protease proteolytic subunit	0.1432964206
+UniRef50_Q28NI7: ATP-dependent Clp protease proteolytic subunit|unclassified	0.1432964206
+UniRef50_A4WWE4: Peptidase U35, phage prohead HK97	0.1432894814
+UniRef50_A4WWE4: Peptidase U35, phage prohead HK97|unclassified	0.1432894814
+UniRef50_P10518: Delta-aminolevulinic acid dehydratase	0.1432800740
+UniRef50_P10518: Delta-aminolevulinic acid dehydratase|unclassified	0.1432800740
+UniRef50_Q0BPM0: Transporter	0.1432690057
+UniRef50_Q0BPM0: Transporter|unclassified	0.1432690057
+UniRef50_D7FWY8	0.1432582220
+UniRef50_D7FWY8|unclassified	0.1432582220
+UniRef50_UPI0002491D2E: biotin biosynthesis protein BioC	0.1432542757
+UniRef50_UPI0002491D2E: biotin biosynthesis protein BioC|unclassified	0.1432542757
+UniRef50_UPI00028897BB: electron transfer flavoprotein subunit beta	0.1432514101
+UniRef50_UPI00028897BB: electron transfer flavoprotein subunit beta|unclassified	0.1432514101
+UniRef50_M7CXG0	0.1432482285
+UniRef50_M7CXG0|unclassified	0.1432482285
+UniRef50_U5ZMI4: UDP-N-acetylglucosamine 4,6-dehydratase	0.1432060642
+UniRef50_U5ZMI4: UDP-N-acetylglucosamine 4,6-dehydratase|unclassified	0.1432060642
+UniRef50_UPI0002B44F99	0.1432021147
+UniRef50_UPI0002B44F99|unclassified	0.1432021147
+UniRef50_UPI000478FA68: hypothetical protein	0.1432018152
+UniRef50_UPI000478FA68: hypothetical protein|unclassified	0.1432018152
+UniRef50_UPI0003685E50: cysteine ABC transporter permease	0.1431795342
+UniRef50_UPI0003685E50: cysteine ABC transporter permease|unclassified	0.1431795342
+UniRef50_UPI00046564CD: hypothetical protein	0.1431694912
+UniRef50_UPI00046564CD: hypothetical protein|unclassified	0.1431694912
+UniRef50_L1IUP0	0.1431660423
+UniRef50_L1IUP0|unclassified	0.1431660423
+UniRef50_UPI0004722EB3: hypothetical protein	0.1431589141
+UniRef50_UPI0004722EB3: hypothetical protein|unclassified	0.1431589141
+UniRef50_A0A011PJY5: Carbonic anhydrase	0.1431479944
+UniRef50_A0A011PJY5: Carbonic anhydrase|unclassified	0.1431479944
+UniRef50_UPI00037FAF38: hypothetical protein	0.1431411525
+UniRef50_UPI00037FAF38: hypothetical protein|unclassified	0.1431411525
+UniRef50_E6RJY5	0.1431384976
+UniRef50_E6RJY5|unclassified	0.1431384976
+UniRef50_UPI0004690E63: hypothetical protein	0.1431258939
+UniRef50_UPI0004690E63: hypothetical protein|unclassified	0.1431258939
+UniRef50_F5S493: Glutamate/aspartate ABC superfamily ATP binding cassette transporter, binding protein	0.1431093659
+UniRef50_F5S493: Glutamate/aspartate ABC superfamily ATP binding cassette transporter, binding protein|unclassified	0.1431093659
+UniRef50_K2JDL0: Transglycosylase	0.1430918871
+UniRef50_K2JDL0: Transglycosylase|unclassified	0.1430918871
+UniRef50_X6KWG2	0.1430851875
+UniRef50_X6KWG2|unclassified	0.1430851875
+UniRef50_UPI0004719DED: hypothetical protein	0.1430844090
+UniRef50_UPI0004719DED: hypothetical protein|unclassified	0.1430844090
+UniRef50_W1Q3U7	0.1430840672
+UniRef50_W1Q3U7|unclassified	0.1430840672
+UniRef50_UPI000441BADB: PREDICTED: probable nicotinate phosphoribosyltransferase-like	0.1430756333
+UniRef50_UPI000441BADB: PREDICTED: probable nicotinate phosphoribosyltransferase-like|unclassified	0.1430756333
+UniRef50_UPI0003615879: hypothetical protein	0.1430726793
+UniRef50_UPI0003615879: hypothetical protein|unclassified	0.1430726793
+UniRef50_UPI00036B1DE9: hypothetical protein	0.1430648768
+UniRef50_UPI00036B1DE9: hypothetical protein|unclassified	0.1430648768
+UniRef50_G7ZR08	0.1430584077
+UniRef50_G7ZR08|unclassified	0.1430584077
+UniRef50_UPI0003617A84: single-stranded DNA-binding protein	0.1430570121
+UniRef50_UPI0003617A84: single-stranded DNA-binding protein|unclassified	0.1430570121
+UniRef50_K7WBA5	0.1430455253
+UniRef50_K7WBA5|unclassified	0.1430455253
+UniRef50_UPI000225AFB7: geranyltranstransferase	0.1430403577
+UniRef50_UPI000225AFB7: geranyltranstransferase|unclassified	0.1430403577
+UniRef50_UPI000382CB80: hypothetical protein	0.1430366277
+UniRef50_UPI000382CB80: hypothetical protein|unclassified	0.1430366277
+UniRef50_UPI000362A1E5: hypothetical protein	0.1430336127
+UniRef50_UPI000362A1E5: hypothetical protein|unclassified	0.1430336127
+UniRef50_UPI0003C182D9: PREDICTED: glutathione S-transferase domain-containing protein DDB_G0280881-like	0.1430050600
+UniRef50_UPI0003C182D9: PREDICTED: glutathione S-transferase domain-containing protein DDB_G0280881-like|unclassified	0.1430050600
+UniRef50_UPI0003469149: hypothetical protein	0.1430044666
+UniRef50_UPI0003469149: hypothetical protein|unclassified	0.1430044666
+UniRef50_UPI000477A7DD: biopolymer transporter ExbD	0.1430012769
+UniRef50_UPI000477A7DD: biopolymer transporter ExbD|unclassified	0.1430012769
+UniRef50_P05165: Propionyl-CoA carboxylase alpha chain, mitochondrial	0.1429950751
+UniRef50_P05165: Propionyl-CoA carboxylase alpha chain, mitochondrial|unclassified	0.1429950751
+UniRef50_H2JU45	0.1429902947
+UniRef50_H2JU45|unclassified	0.1429902947
+UniRef50_UPI000262CCDC: Mutator MutT protein	0.1429835351
+UniRef50_UPI000262CCDC: Mutator MutT protein|unclassified	0.1429835351
+UniRef50_UPI000361B1C3: hypothetical protein, partial	0.1429635684
+UniRef50_UPI000361B1C3: hypothetical protein, partial|unclassified	0.1429635684
+UniRef50_UPI00044122C0: hypothetical protein AURDEDRAFT_112062	0.1429634736
+UniRef50_UPI00044122C0: hypothetical protein AURDEDRAFT_112062|unclassified	0.1429634736
+UniRef50_Q10663: Bifunctional glyoxylate cycle protein	0.1429570433
+UniRef50_Q10663: Bifunctional glyoxylate cycle protein|unclassified	0.1429570433
+UniRef50_T1XKP4: Tripartite ATP-independent periplasmic transporter, DctQ component	0.1429277691
+UniRef50_T1XKP4: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	0.1429277691
+UniRef50_R1GR95	0.1429176555
+UniRef50_R1GR95|unclassified	0.1429176555
+UniRef50_W0A5X6	0.1429155222
+UniRef50_W0A5X6|unclassified	0.1429155222
+UniRef50_K8NKY8: TIGR00370 family protein	0.1428935162
+UniRef50_K8NKY8: TIGR00370 family protein|unclassified	0.1428935162
+UniRef50_UPI0003760A3E: hypothetical protein	0.1428902965
+UniRef50_UPI0003760A3E: hypothetical protein|unclassified	0.1428902965
+UniRef50_W6JZB9	0.1428896267
+UniRef50_W6JZB9|unclassified	0.1428896267
+UniRef50_B0T2M6	0.1428782171
+UniRef50_B0T2M6|unclassified	0.1428782171
+UniRef50_S6R380: Secretion protein HlyD	0.1428636734
+UniRef50_S6R380: Secretion protein HlyD|unclassified	0.1428636734
+UniRef50_R3DCL8	0.1428635006
+UniRef50_R3DCL8|unclassified	0.1428635006
+UniRef50_UPI00036F30A5: hypothetical protein	0.1428543175
+UniRef50_UPI00036F30A5: hypothetical protein|unclassified	0.1428543175
+UniRef50_I1B2Z6: Cytochrome c oxidase, cbb3-type, subunit IV	0.1428543058
+UniRef50_I1B2Z6: Cytochrome c oxidase, cbb3-type, subunit IV|unclassified	0.1428543058
+UniRef50_UPI000380648A: hypothetical protein	0.1428435188
+UniRef50_UPI000380648A: hypothetical protein|unclassified	0.1428435188
+UniRef50_Q03UU4: Ketol-acid reductoisomerase	0.1428430891
+UniRef50_Q03UU4: Ketol-acid reductoisomerase|unclassified	0.1428430891
+UniRef50_UPI0003690E18: hypothetical protein	0.1428406925
+UniRef50_UPI0003690E18: hypothetical protein|unclassified	0.1428406925
+UniRef50_UPI0004666FAD: hypothetical protein	0.1428278645
+UniRef50_UPI0004666FAD: hypothetical protein|unclassified	0.1428278645
+UniRef50_M0N0Z7	0.1428257810
+UniRef50_M0N0Z7|unclassified	0.1428257810
+UniRef50_UPI000368EF58: hypothetical protein	0.1428180619
+UniRef50_UPI000368EF58: hypothetical protein|unclassified	0.1428180619
+UniRef50_C2D601: Transposase, IS4 family	0.1427989551
+UniRef50_C2D601: Transposase, IS4 family|unclassified	0.1427989551
+UniRef50_A6T3U1	0.1427954755
+UniRef50_A6T3U1|unclassified	0.1427954755
+UniRef50_UPI00047CA1F4: hypothetical protein	0.1427850832
+UniRef50_UPI00047CA1F4: hypothetical protein|unclassified	0.1427850832
+UniRef50_W5X5Z9: Putative bile acid beta-glucosidase	0.1427764066
+UniRef50_W5X5Z9: Putative bile acid beta-glucosidase|unclassified	0.1427764066
+UniRef50_C7QGA3	0.1427680692
+UniRef50_C7QGA3|unclassified	0.1427680692
+UniRef50_X1TA63: Marine sediment metagenome DNA, contig: S12H4_S09595 (Fragment)	0.1427543821
+UniRef50_X1TA63: Marine sediment metagenome DNA, contig: S12H4_S09595 (Fragment)|unclassified	0.1427543821
+UniRef50_UPI000477A18F: zinc protease	0.1427443477
+UniRef50_UPI000477A18F: zinc protease|unclassified	0.1427443477
+UniRef50_O65396: Aminomethyltransferase, mitochondrial	0.1427417378
+UniRef50_O65396: Aminomethyltransferase, mitochondrial|unclassified	0.1427417378
+UniRef50_UPI00037AFA99: hypothetical protein	0.1427384918
+UniRef50_UPI00037AFA99: hypothetical protein|unclassified	0.1427384918
+UniRef50_J9DL69	0.1427217960
+UniRef50_J9DL69|unclassified	0.1427217960
+UniRef50_UPI00037ACA58: hypothetical protein, partial	0.1427061626
+UniRef50_UPI00037ACA58: hypothetical protein, partial|unclassified	0.1427061626
+UniRef50_UPI00025590C0: flagellar biosynthesis/type III secretory pathway protein FliH	0.1427061196
+UniRef50_UPI00025590C0: flagellar biosynthesis/type III secretory pathway protein FliH|unclassified	0.1427061196
+UniRef50_UPI00047DA4D0: iron transporter FeoB	0.1427032645
+UniRef50_UPI00047DA4D0: iron transporter FeoB|unclassified	0.1427032645
+UniRef50_UPI00037423BF: hypothetical protein, partial	0.1427009552
+UniRef50_UPI00037423BF: hypothetical protein, partial|unclassified	0.1427009552
+UniRef50_UPI0003643D4F: hypothetical protein	0.1427007812
+UniRef50_UPI0003643D4F: hypothetical protein|unclassified	0.1427007812
+UniRef50_UPI0003720D0F: hypothetical protein	0.1426896696
+UniRef50_UPI0003720D0F: hypothetical protein|unclassified	0.1426896696
+UniRef50_D6K8U6: ATPase	0.1426889552
+UniRef50_D6K8U6: ATPase|unclassified	0.1426889552
+UniRef50_W8R4T4	0.1426872269
+UniRef50_W8R4T4|unclassified	0.1426872269
+UniRef50_R4K3M1: Phosphoglycerate mutase family protein, putative	0.1426865976
+UniRef50_R4K3M1: Phosphoglycerate mutase family protein, putative|unclassified	0.1426865976
+UniRef50_UPI000374C4B3: hypothetical protein	0.1426799411
+UniRef50_UPI000374C4B3: hypothetical protein|unclassified	0.1426799411
+UniRef50_UPI00038256A0: hypothetical protein, partial	0.1426684104
+UniRef50_UPI00038256A0: hypothetical protein, partial|unclassified	0.1426684104
+UniRef50_P19670: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 2	0.1426661780
+UniRef50_P19670: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 2|unclassified	0.1426661780
+UniRef50_UPI000372E25B: hypothetical protein	0.1426588768
+UniRef50_UPI000372E25B: hypothetical protein|unclassified	0.1426588768
+UniRef50_UPI00029A9E86: camphor resistance protein CrcB	0.1426578914
+UniRef50_UPI00029A9E86: camphor resistance protein CrcB|unclassified	0.1426578914
+UniRef50_S5Q4A1	0.1426524824
+UniRef50_S5Q4A1|unclassified	0.1426524824
+UniRef50_UPI000476A297: nitrogen regulatory protein	0.1426428512
+UniRef50_UPI000476A297: nitrogen regulatory protein|unclassified	0.1426428512
+UniRef50_J0G1R9	0.1426415917
+UniRef50_J0G1R9|unclassified	0.1426415917
+UniRef50_Q02CT4: NADH-quinone oxidoreductase subunit K 1	0.1426400888
+UniRef50_Q02CT4: NADH-quinone oxidoreductase subunit K 1|unclassified	0.1426400888
+UniRef50_Q37379: NADH-ubiquinone oxidoreductase chain 4L	0.1426400888
+UniRef50_Q37379: NADH-ubiquinone oxidoreductase chain 4L|unclassified	0.1426400888
+UniRef50_UPI00037AB817: hypothetical protein	0.1426374380
+UniRef50_UPI00037AB817: hypothetical protein|unclassified	0.1426374380
+UniRef50_UPI0003821846: hypothetical protein	0.1426315708
+UniRef50_UPI0003821846: hypothetical protein|unclassified	0.1426315708
+UniRef50_S9SK01	0.1426310756
+UniRef50_S9SK01|unclassified	0.1426310756
+UniRef50_UPI0004722800: AraC family transcriptional regulator	0.1426304786
+UniRef50_UPI0004722800: AraC family transcriptional regulator|unclassified	0.1426304786
+UniRef50_B6JDP8: Gene transfer agent-like protein	0.1426288916
+UniRef50_B6JDP8: Gene transfer agent-like protein|unclassified	0.1426288916
+UniRef50_A3V9P5	0.1426280058
+UniRef50_A3V9P5|unclassified	0.1426280058
+UniRef50_W8BRR9	0.1426250456
+UniRef50_W8BRR9|unclassified	0.1426250456
+UniRef50_UPI00046FFE40: hypothetical protein	0.1426242023
+UniRef50_UPI00046FFE40: hypothetical protein|unclassified	0.1426242023
+UniRef50_K5YQ73: Baseplate J-like protein	0.1426146580
+UniRef50_K5YQ73: Baseplate J-like protein|unclassified	0.1426146580
+UniRef50_UPI00019126C4: hypothetical protein, partial	0.1426112969
+UniRef50_UPI00019126C4: hypothetical protein, partial|unclassified	0.1426112969
+UniRef50_UPI0004706FF9: Fe-S cluster assembly protein SufD	0.1426068728
+UniRef50_UPI0004706FF9: Fe-S cluster assembly protein SufD|unclassified	0.1426068728
+UniRef50_D6PKK3	0.1426061267
+UniRef50_D6PKK3|unclassified	0.1426061267
+UniRef50_UPI000388FD53: PREDICTED: serine/arginine repetitive matrix protein 1	0.1425680345
+UniRef50_UPI000388FD53: PREDICTED: serine/arginine repetitive matrix protein 1|unclassified	0.1425680345
+UniRef50_B4BM32: TRAP C4-dicarboxylate transport system permease DctM subunit	0.1425634309
+UniRef50_B4BM32: TRAP C4-dicarboxylate transport system permease DctM subunit|unclassified	0.1425634309
+UniRef50_UPI00047B7ECA: peroxiredoxin	0.1425551133
+UniRef50_UPI00047B7ECA: peroxiredoxin|unclassified	0.1425551133
+UniRef50_UPI000470AE13: hypothetical protein	0.1425494430
+UniRef50_UPI000470AE13: hypothetical protein|unclassified	0.1425494430
+UniRef50_Q8K9A4: Diaminohydroxyphosphoribosylamino-pyrimidine deaminase	0.1425425887
+UniRef50_Q8K9A4: Diaminohydroxyphosphoribosylamino-pyrimidine deaminase|unclassified	0.1425425887
+UniRef50_UPI0002374DF8: 30S ribosomal protein S2, partial	0.1425226395
+UniRef50_UPI0002374DF8: 30S ribosomal protein S2, partial|unclassified	0.1425226395
+UniRef50_UPI000379BE3C: hypothetical protein	0.1425174096
+UniRef50_UPI000379BE3C: hypothetical protein|unclassified	0.1425174096
+UniRef50_F2MN23: Decarboxylase	0.1425065095
+UniRef50_F2MN23: Decarboxylase|unclassified	0.1425065095
+UniRef50_Q89JQ6: Bll5216 protein	0.1425050610
+UniRef50_Q89JQ6: Bll5216 protein|unclassified	0.1425050610
+UniRef50_UPI000382B7EC: hypothetical protein	0.1425007389
+UniRef50_UPI000382B7EC: hypothetical protein|unclassified	0.1425007389
+UniRef50_UPI00041C20AD: hypothetical protein	0.1424948992
+UniRef50_UPI00041C20AD: hypothetical protein|unclassified	0.1424948992
+UniRef50_UPI000262577A: single-stranded DNA-binding protein	0.1424912241
+UniRef50_UPI000262577A: single-stranded DNA-binding protein|unclassified	0.1424912241
+UniRef50_UPI000262DA51: GntR family transcriptional regulator	0.1424901308
+UniRef50_UPI000262DA51: GntR family transcriptional regulator|unclassified	0.1424901308
+UniRef50_R5A691: Fumarate reductase/succinate dehydrogenase flavoprotein domain protein	0.1424873705
+UniRef50_R5A691: Fumarate reductase/succinate dehydrogenase flavoprotein domain protein|unclassified	0.1424873705
+UniRef50_UPI0003670352: chemotaxis protein CheW	0.1424748565
+UniRef50_UPI0003670352: chemotaxis protein CheW|unclassified	0.1424748565
+UniRef50_G2TAZ8	0.1424738395
+UniRef50_G2TAZ8|unclassified	0.1424738395
+UniRef50_UPI000469F608: hypothetical protein	0.1424719707
+UniRef50_UPI000469F608: hypothetical protein|unclassified	0.1424719707
+UniRef50_B0TBZ6	0.1424522857
+UniRef50_B0TBZ6|unclassified	0.1424522857
+UniRef50_Q8A8R5: ATP-dependent 6-phosphofructokinase 1	0.1424489070
+UniRef50_Q8A8R5: ATP-dependent 6-phosphofructokinase 1|unclassified	0.1424489070
+UniRef50_J3MZQ8	0.1424280552
+UniRef50_J3MZQ8|unclassified	0.1424280552
+UniRef50_B6TMR3	0.1424204285
+UniRef50_B6TMR3|unclassified	0.1424204285
+UniRef50_X6L494	0.1424186770
+UniRef50_X6L494|unclassified	0.1424186770
+UniRef50_UPI0003B3B04C: MFS transporter	0.1424162467
+UniRef50_UPI0003B3B04C: MFS transporter|unclassified	0.1424162467
+UniRef50_UPI000378C904: hypothetical protein	0.1424133453
+UniRef50_UPI000378C904: hypothetical protein|unclassified	0.1424133453
+UniRef50_P56912: NADH-quinone oxidoreductase subunit F 1	0.1424104171
+UniRef50_P56912: NADH-quinone oxidoreductase subunit F 1|unclassified	0.1424104171
+UniRef50_Q1AU97: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha	0.1424059294
+UniRef50_Q1AU97: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|unclassified	0.1424059294
+UniRef50_G5KUR8: Mg chelatase-like protein	0.1424055765
+UniRef50_G5KUR8: Mg chelatase-like protein|unclassified	0.1424055765
+UniRef50_U1MD60: Nucleotide-binding protein	0.1424035610
+UniRef50_U1MD60: Nucleotide-binding protein|unclassified	0.1424035610
+UniRef50_Q2P0U3: Tryptophan synthase alpha chain	0.1424026277
+UniRef50_Q2P0U3: Tryptophan synthase alpha chain|unclassified	0.1424026277
+UniRef50_Q81G03: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.1423920613
+UniRef50_Q81G03: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.1423920613
+UniRef50_UPI000379ACEB: hypothetical protein	0.1423781847
+UniRef50_UPI000379ACEB: hypothetical protein|unclassified	0.1423781847
+UniRef50_UPI000237B138: phage terminase, small subunit, P27 family protein	0.1423762478
+UniRef50_UPI000237B138: phage terminase, small subunit, P27 family protein|unclassified	0.1423762478
+UniRef50_Q2S9E0: Predicted membrane protein	0.1423731734
+UniRef50_Q2S9E0: Predicted membrane protein|unclassified	0.1423731734
+UniRef50_UPI000469537A: HAD family hydrolase	0.1423676845
+UniRef50_UPI000469537A: HAD family hydrolase|unclassified	0.1423676845
+UniRef50_C2V4A2: Phage replication protein	0.1423547515
+UniRef50_C2V4A2: Phage replication protein|unclassified	0.1423547515
+UniRef50_UPI000225B750: 4''''-phosphopantetheinyl transferase	0.1423541040
+UniRef50_UPI000225B750: 4''''-phosphopantetheinyl transferase|unclassified	0.1423541040
+UniRef50_D5RTD5	0.1423527279
+UniRef50_D5RTD5|unclassified	0.1423527279
+UniRef50_UPI00046A1BAE: hypothetical protein	0.1423380421
+UniRef50_UPI00046A1BAE: hypothetical protein|unclassified	0.1423380421
+UniRef50_S5GIH3: Antitoxin	0.1423362233
+UniRef50_S5GIH3: Antitoxin|unclassified	0.1423362233
+UniRef50_UPI0003035AF2: hypothetical protein	0.1423298386
+UniRef50_UPI0003035AF2: hypothetical protein|unclassified	0.1423298386
+UniRef50_F5T5X5	0.1423281871
+UniRef50_F5T5X5|unclassified	0.1423281871
+UniRef50_K2K6X0: HlyD family secretion protein	0.1423228544
+UniRef50_K2K6X0: HlyD family secretion protein|unclassified	0.1423228544
+UniRef50_A2C9Z7: Quinolinate synthase A	0.1423121290
+UniRef50_A2C9Z7: Quinolinate synthase A|unclassified	0.1423121290
+UniRef50_A0A037XG38: Glyoxalase	0.1423116053
+UniRef50_A0A037XG38: Glyoxalase|unclassified	0.1423116053
+UniRef50_A3K8J0: Lipoprotein, putative	0.1423086045
+UniRef50_A3K8J0: Lipoprotein, putative|unclassified	0.1423086045
+UniRef50_D5APN2	0.1423034021
+UniRef50_D5APN2|unclassified	0.1423034021
+UniRef50_D8P6P8: Transposase	0.1423021757
+UniRef50_D8P6P8: Transposase|unclassified	0.1423021757
+UniRef50_C3LL78: Peptidase, M23/M37 family protein	0.1422934482
+UniRef50_C3LL78: Peptidase, M23/M37 family protein|unclassified	0.1422934482
+UniRef50_R0D1R5	0.1422922635
+UniRef50_R0D1R5|unclassified	0.1422922635
+UniRef50_UPI000378C7F0: hypothetical protein	0.1422910376
+UniRef50_UPI000378C7F0: hypothetical protein|unclassified	0.1422910376
+UniRef50_UPI00037C5489: hypothetical protein	0.1422822413
+UniRef50_UPI00037C5489: hypothetical protein|unclassified	0.1422822413
+UniRef50_UPI000288FA8C: alcohol dehydrogenase GroES domain-containing protein	0.1422795413
+UniRef50_UPI000288FA8C: alcohol dehydrogenase GroES domain-containing protein|unclassified	0.1422795413
+UniRef50_UPI00016C4061: DNA polymerase I (PolI)	0.1422687135
+UniRef50_UPI00016C4061: DNA polymerase I (PolI)|unclassified	0.1422687135
+UniRef50_UPI0004076D2C: hypothetical protein	0.1422610691
+UniRef50_UPI0004076D2C: hypothetical protein|unclassified	0.1422610691
+UniRef50_K0XA72	0.1422587442
+UniRef50_K0XA72|unclassified	0.1422587442
+UniRef50_UPI000378B4BF: hypothetical protein	0.1422509350
+UniRef50_UPI000378B4BF: hypothetical protein|unclassified	0.1422509350
+UniRef50_UPI00040A4A10: betaine-aldehyde dehydrogenase	0.1422455957
+UniRef50_UPI00040A4A10: betaine-aldehyde dehydrogenase|unclassified	0.1422455957
+UniRef50_UPI0003753359: hypothetical protein	0.1422322241
+UniRef50_UPI0003753359: hypothetical protein|unclassified	0.1422322241
+UniRef50_UPI0003B56F06: pyruvate kinase	0.1422088607
+UniRef50_UPI0003B56F06: pyruvate kinase|unclassified	0.1422088607
+UniRef50_R9AJC6	0.1422076810
+UniRef50_R9AJC6|unclassified	0.1422076810
+UniRef50_F2NQ68: Ferripyochelin-binding protein	0.1421969961
+UniRef50_F2NQ68: Ferripyochelin-binding protein|unclassified	0.1421969961
+UniRef50_UPI0003C16BB8: PREDICTED: 30S ribosomal protein S5, chloroplastic-like	0.1421947141
+UniRef50_UPI0003C16BB8: PREDICTED: 30S ribosomal protein S5, chloroplastic-like|unclassified	0.1421947141
+UniRef50_M3AAL9: Secretory lipase	0.1421793214
+UniRef50_M3AAL9: Secretory lipase|unclassified	0.1421793214
+UniRef50_UPI00046C903F: hypothetical protein	0.1421555285
+UniRef50_UPI00046C903F: hypothetical protein|unclassified	0.1421555285
+UniRef50_UPI00037A5602: hypothetical protein	0.1421459574
+UniRef50_UPI00037A5602: hypothetical protein|unclassified	0.1421459574
+UniRef50_UPI0003B642D7: MarR family transcriptional regulator	0.1421458375
+UniRef50_UPI0003B642D7: MarR family transcriptional regulator|unclassified	0.1421458375
+UniRef50_UPI00047B1856: hypothetical protein	0.1421439074
+UniRef50_UPI00047B1856: hypothetical protein|unclassified	0.1421439074
+UniRef50_B7IWC4: BclA protein	0.1421432668
+UniRef50_B7IWC4: BclA protein|unclassified	0.1421432668
+UniRef50_UPI0002DA07C4: aldehyde-activating protein	0.1421376168
+UniRef50_UPI0002DA07C4: aldehyde-activating protein|unclassified	0.1421376168
+UniRef50_UPI00036F308A: hypothetical protein	0.1421354722
+UniRef50_UPI00036F308A: hypothetical protein|unclassified	0.1421354722
+UniRef50_Q2QBA5: RNA-binding tegument protein	0.1421287054
+UniRef50_Q2QBA5: RNA-binding tegument protein|unclassified	0.1421287054
+UniRef50_B9DN29: 6,7-dimethyl-8-ribityllumazine synthase	0.1421101473
+UniRef50_B9DN29: 6,7-dimethyl-8-ribityllumazine synthase|unclassified	0.1421101473
+UniRef50_G8PLF5: TRAP transporter solute receptor, TAXI family	0.1421095173
+UniRef50_G8PLF5: TRAP transporter solute receptor, TAXI family|unclassified	0.1421095173
+UniRef50_I0VGT1	0.1421007309
+UniRef50_I0VGT1|unclassified	0.1421007309
+UniRef50_O66839: Probable 6-oxopurine nucleoside phosphorylase	0.1420972275
+UniRef50_O66839: Probable 6-oxopurine nucleoside phosphorylase|unclassified	0.1420972275
+UniRef50_Q4K7H5: Putative glutamate--cysteine ligase 2	0.1420736699
+UniRef50_Q4K7H5: Putative glutamate--cysteine ligase 2|unclassified	0.1420736699
+UniRef50_M9BYG0	0.1420713852
+UniRef50_M9BYG0|unclassified	0.1420713852
+UniRef50_UPI00020D96F2: protein-tyrosine-phosphatase	0.1420613739
+UniRef50_UPI00020D96F2: protein-tyrosine-phosphatase|unclassified	0.1420613739
+UniRef50_N3JWN5	0.1420611510
+UniRef50_N3JWN5|unclassified	0.1420611510
+UniRef50_T0SHL8	0.1420505845
+UniRef50_T0SHL8|unclassified	0.1420505845
+UniRef50_UPI00046FA567: phytoene dehydrogenase	0.1420441293
+UniRef50_UPI00046FA567: phytoene dehydrogenase|unclassified	0.1420441293
+UniRef50_UPI000369A9E8: single-stranded DNA-binding protein	0.1420432862
+UniRef50_UPI000369A9E8: single-stranded DNA-binding protein|unclassified	0.1420432862
+UniRef50_M7ZA52	0.1420352502
+UniRef50_M7ZA52|unclassified	0.1420352502
+UniRef50_Q1CX41: Rrf2 family protein	0.1420342847
+UniRef50_Q1CX41: Rrf2 family protein|unclassified	0.1420342847
+UniRef50_UPI000470C939: 5''-nucleotidase	0.1420246491
+UniRef50_UPI000470C939: 5''-nucleotidase|unclassified	0.1420246491
+UniRef50_UPI0004783ADB: cell wall hydrolase	0.1420060950
+UniRef50_UPI0004783ADB: cell wall hydrolase|unclassified	0.1420060950
+UniRef50_A0A058Z3I4	0.1419773393
+UniRef50_A0A058Z3I4|unclassified	0.1419773393
+UniRef50_B7GG14	0.1419750972
+UniRef50_B7GG14|unclassified	0.1419750972
+UniRef50_UPI0004767068: PTS lactose transporter subunit IIC	0.1419726867
+UniRef50_UPI0004767068: PTS lactose transporter subunit IIC|unclassified	0.1419726867
+UniRef50_D5AUV7	0.1419725665
+UniRef50_D5AUV7|unclassified	0.1419725665
+UniRef50_K2M4Q0	0.1419669979
+UniRef50_K2M4Q0|unclassified	0.1419669979
+UniRef50_H4F6M5	0.1419658293
+UniRef50_H4F6M5|unclassified	0.1419658293
+UniRef50_M7Y5D5	0.1419612310
+UniRef50_M7Y5D5|unclassified	0.1419612310
+UniRef50_X8FCL5: C-terminal regulatory domain of Threonine dehydratase family protein	0.1419544232
+UniRef50_X8FCL5: C-terminal regulatory domain of Threonine dehydratase family protein|unclassified	0.1419544232
+UniRef50_UPI00035DC582: hypothetical protein	0.1419449435
+UniRef50_UPI00035DC582: hypothetical protein|unclassified	0.1419449435
+UniRef50_Q18CD1: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.1419423812
+UniRef50_Q18CD1: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.1419423812
+UniRef50_UPI0002485EB3: hypothetical protein	0.1419390984
+UniRef50_UPI0002485EB3: hypothetical protein|unclassified	0.1419390984
+UniRef50_UPI0003695176: hypothetical protein	0.1419334707
+UniRef50_UPI0003695176: hypothetical protein|unclassified	0.1419334707
+UniRef50_V6UYS5	0.1419214275
+UniRef50_V6UYS5|unclassified	0.1419214275
+UniRef50_W5XCV9: Hsp90 ATPase activator family protein, putative	0.1419022493
+UniRef50_W5XCV9: Hsp90 ATPase activator family protein, putative|unclassified	0.1419022493
+UniRef50_UPI0004723F15: hypothetical protein	0.1418984800
+UniRef50_UPI0004723F15: hypothetical protein|unclassified	0.1418984800
+UniRef50_UPI000368C29C: ABC transporter permease	0.1418923865
+UniRef50_UPI000368C29C: ABC transporter permease|unclassified	0.1418923865
+UniRef50_Q7NFY1: Chorismate synthase	0.1418878004
+UniRef50_Q7NFY1: Chorismate synthase|unclassified	0.1418878004
+UniRef50_UPI0002E997BB: hypothetical protein	0.1418845792
+UniRef50_UPI0002E997BB: hypothetical protein|unclassified	0.1418845792
+UniRef50_UPI000441D972	0.1418733797
+UniRef50_UPI000441D972|unclassified	0.1418733797
+UniRef50_UPI0003629E39: hypothetical protein	0.1418616180
+UniRef50_UPI0003629E39: hypothetical protein|unclassified	0.1418616180
+UniRef50_X1PEH4: Marine sediment metagenome DNA, contig: S06H3_S09274 (Fragment)	0.1418605146
+UniRef50_X1PEH4: Marine sediment metagenome DNA, contig: S06H3_S09274 (Fragment)|unclassified	0.1418605146
+UniRef50_W1Y5T8: Nitrate reductase, beta subunit (Fragment)	0.1418590243
+UniRef50_W1Y5T8: Nitrate reductase, beta subunit (Fragment)|unclassified	0.1418590243
+UniRef50_UPI0003B77367: 2Fe-2S ferredoxin	0.1418511929
+UniRef50_UPI0003B77367: 2Fe-2S ferredoxin|unclassified	0.1418511929
+UniRef50_E0TB06	0.1418452756
+UniRef50_E0TB06|unclassified	0.1418452756
+UniRef50_K2IJJ6	0.1418433943
+UniRef50_K2IJJ6|unclassified	0.1418433943
+UniRef50_Q8N8N7: Prostaglandin reductase 2	0.1418433795
+UniRef50_Q8N8N7: Prostaglandin reductase 2|unclassified	0.1418433795
+UniRef50_UPI000370601D: hypothetical protein	0.1418368482
+UniRef50_UPI000370601D: hypothetical protein|unclassified	0.1418368482
+UniRef50_Q1IMM4: tRNA (guanine-N(1)-)-methyltransferase	0.1418292057
+UniRef50_Q1IMM4: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.1418292057
+UniRef50_O67343: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.1418134882
+UniRef50_O67343: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.1418134882
+UniRef50_UPI000467D18B: hypothetical protein, partial	0.1418115542
+UniRef50_UPI000467D18B: hypothetical protein, partial|unclassified	0.1418115542
+UniRef50_UPI00035DA0EB: hypothetical protein	0.1417785871
+UniRef50_UPI00035DA0EB: hypothetical protein|unclassified	0.1417785871
+UniRef50_M8DIE0: NADPH-dependent 2,4-dienoyl-CoA reductase	0.1417700689
+UniRef50_M8DIE0: NADPH-dependent 2,4-dienoyl-CoA reductase|unclassified	0.1417700689
+UniRef50_UPI000369B8BF: hypothetical protein, partial	0.1417623540
+UniRef50_UPI000369B8BF: hypothetical protein, partial|unclassified	0.1417623540
+UniRef50_D3QDR5: UPF0223 protein SLGD_01778	0.1417596408
+UniRef50_D3QDR5: UPF0223 protein SLGD_01778|unclassified	0.1417596408
+UniRef50_UPI00037FF34B: hypothetical protein	0.1417554621
+UniRef50_UPI00037FF34B: hypothetical protein|unclassified	0.1417554621
+UniRef50_UPI000472AF60: hypothetical protein	0.1417521422
+UniRef50_UPI000472AF60: hypothetical protein|unclassified	0.1417521422
+UniRef50_UPI00037F4484: ADP-ribose pyrophosphatase	0.1417364867
+UniRef50_UPI00037F4484: ADP-ribose pyrophosphatase|unclassified	0.1417364867
+UniRef50_A4AHN3	0.1417342211
+UniRef50_A4AHN3|unclassified	0.1417342211
+UniRef50_UPI000289E55D: guanine deaminase, partial	0.1417335661
+UniRef50_UPI000289E55D: guanine deaminase, partial|unclassified	0.1417335661
+UniRef50_T2AJH5	0.1417132349
+UniRef50_T2AJH5|unclassified	0.1417132349
+UniRef50_Q2N9Y3: RNA pyrophosphohydrolase	0.1417130736
+UniRef50_Q2N9Y3: RNA pyrophosphohydrolase|unclassified	0.1417130736
+UniRef50_P11586: C-1-tetrahydrofolate synthase, cytoplasmic	0.1417114706
+UniRef50_P11586: C-1-tetrahydrofolate synthase, cytoplasmic|unclassified	0.1417114706
+UniRef50_UPI00036A3F04: hypothetical protein	0.1416891565
+UniRef50_UPI00036A3F04: hypothetical protein|unclassified	0.1416891565
+UniRef50_UPI00037C1688: hypothetical protein	0.1416883912
+UniRef50_UPI00037C1688: hypothetical protein|unclassified	0.1416883912
+UniRef50_G2T0R3: Cupin 2 conserved barrel domain protein	0.1416764341
+UniRef50_G2T0R3: Cupin 2 conserved barrel domain protein|unclassified	0.1416764341
+UniRef50_V2S597	0.1416750447
+UniRef50_V2S597|unclassified	0.1416750447
+UniRef50_UPI0003B7881F: membrane protein	0.1416701857
+UniRef50_UPI0003B7881F: membrane protein|unclassified	0.1416701857
+UniRef50_R9KUT5	0.1416657212
+UniRef50_R9KUT5|unclassified	0.1416657212
+UniRef50_UPI00047B842C: hypothetical protein	0.1416457130
+UniRef50_UPI00047B842C: hypothetical protein|unclassified	0.1416457130
+UniRef50_A0A033UV95	0.1416446927
+UniRef50_A0A033UV95|unclassified	0.1416446927
+UniRef50_D6ZD34	0.1416434899
+UniRef50_D6ZD34|unclassified	0.1416434899
+UniRef50_Q28Q97	0.1416339643
+UniRef50_Q28Q97|unclassified	0.1416339643
+UniRef50_S6MTH8	0.1416321533
+UniRef50_S6MTH8|unclassified	0.1416321533
+UniRef50_Q8FUU5: Zinc import ATP-binding protein ZnuC	0.1416232632
+UniRef50_Q8FUU5: Zinc import ATP-binding protein ZnuC|unclassified	0.1416232632
+UniRef50_Q42676: Transketolase, chloroplastic (Fragment)	0.1416169154
+UniRef50_Q42676: Transketolase, chloroplastic (Fragment)|unclassified	0.1416169154
+UniRef50_UPI00036D46A6: hypothetical protein	0.1416160111
+UniRef50_UPI00036D46A6: hypothetical protein|unclassified	0.1416160111
+UniRef50_UPI000348F8F8: hypothetical protein	0.1416042263
+UniRef50_UPI000348F8F8: hypothetical protein|unclassified	0.1416042263
+UniRef50_UPI00047247B1: hypothetical protein	0.1416019032
+UniRef50_UPI00047247B1: hypothetical protein|unclassified	0.1416019032
+UniRef50_UPI0003F0A9A6: PREDICTED: 28S ribosomal protein S9, mitochondrial-like	0.1415983705
+UniRef50_UPI0003F0A9A6: PREDICTED: 28S ribosomal protein S9, mitochondrial-like|unclassified	0.1415983705
+UniRef50_UPI00036C1E72: hypothetical protein	0.1415914297
+UniRef50_UPI00036C1E72: hypothetical protein|unclassified	0.1415914297
+UniRef50_W4YFY3	0.1415865569
+UniRef50_W4YFY3|unclassified	0.1415865569
+UniRef50_F3YCZ6: General stress protein	0.1415789904
+UniRef50_F3YCZ6: General stress protein|unclassified	0.1415789904
+UniRef50_UPI00036C4733: hypothetical protein	0.1415695397
+UniRef50_UPI00036C4733: hypothetical protein|unclassified	0.1415695397
+UniRef50_Q46Q46	0.1415643878
+UniRef50_Q46Q46|unclassified	0.1415643878
+UniRef50_I3TJX2	0.1415585185
+UniRef50_I3TJX2|unclassified	0.1415585185
+UniRef50_UPI000375E551: hypothetical protein, partial	0.1415508519
+UniRef50_UPI000375E551: hypothetical protein, partial|unclassified	0.1415508519
+UniRef50_Q2SHH4	0.1415471602
+UniRef50_Q2SHH4|unclassified	0.1415471602
+UniRef50_M0CE30: Nuclease (SNase domain-containing protein)	0.1415023795
+UniRef50_M0CE30: Nuclease (SNase domain-containing protein)|unclassified	0.1415023795
+UniRef50_W6RQ95	0.1415005510
+UniRef50_W6RQ95|unclassified	0.1415005510
+UniRef50_T2QWT3: ABC transporter permease	0.1414972113
+UniRef50_T2QWT3: ABC transporter permease|unclassified	0.1414972113
+UniRef50_K6QBU0: DnaD domain-containing protein	0.1414961071
+UniRef50_K6QBU0: DnaD domain-containing protein|unclassified	0.1414961071
+UniRef50_UPI00035EEEBA: hypothetical protein	0.1414863551
+UniRef50_UPI00035EEEBA: hypothetical protein|unclassified	0.1414863551
+UniRef50_V8G857: Membrane protein	0.1414742004
+UniRef50_V8G857: Membrane protein|unclassified	0.1414742004
+UniRef50_UPI0003B61198: cobalt ABC transporter ATP-binding protein	0.1414720614
+UniRef50_UPI0003B61198: cobalt ABC transporter ATP-binding protein|unclassified	0.1414720614
+UniRef50_UPI0003688B5E: hypothetical protein, partial	0.1414696457
+UniRef50_UPI0003688B5E: hypothetical protein, partial|unclassified	0.1414696457
+UniRef50_UPI0004791B5B: transposase	0.1414653821
+UniRef50_UPI0004791B5B: transposase|unclassified	0.1414653821
+UniRef50_Q82BX4: Probable 5-dehydro-4-deoxyglucarate dehydratase 2	0.1414650927
+UniRef50_Q82BX4: Probable 5-dehydro-4-deoxyglucarate dehydratase 2|unclassified	0.1414650927
+UniRef50_Q5TF43: Acetyl-coenzyme A synthetase 2-like, mitochondrial	0.1414550546
+UniRef50_Q5TF43: Acetyl-coenzyme A synthetase 2-like, mitochondrial|unclassified	0.1414550546
+UniRef50_Q49Z31: D-alanine--D-alanine ligase	0.1414457663
+UniRef50_Q49Z31: D-alanine--D-alanine ligase|unclassified	0.1414457663
+UniRef50_H8W5V4	0.1414344828
+UniRef50_H8W5V4|unclassified	0.1414344828
+UniRef50_X0TJ86: Marine sediment metagenome DNA, contig: S01H1_L09457 (Fragment)	0.1414276542
+UniRef50_X0TJ86: Marine sediment metagenome DNA, contig: S01H1_L09457 (Fragment)|unclassified	0.1414276542
+UniRef50_A7HQG2: UPF0262 protein Plav_0522	0.1414222848
+UniRef50_A7HQG2: UPF0262 protein Plav_0522|unclassified	0.1414222848
+UniRef50_Q9A8I5: Phosphate acyltransferase	0.1414149741
+UniRef50_Q9A8I5: Phosphate acyltransferase|unclassified	0.1414149741
+UniRef50_A3X5B5	0.1414015776
+UniRef50_A3X5B5|unclassified	0.1414015776
+UniRef50_UPI00036BDC09: hypothetical protein	0.1413985653
+UniRef50_UPI00036BDC09: hypothetical protein|unclassified	0.1413985653
+UniRef50_UPI00016AA1DD: ABC transporter, ATP-binding protein, partial	0.1413940349
+UniRef50_UPI00016AA1DD: ABC transporter, ATP-binding protein, partial|unclassified	0.1413940349
+UniRef50_K2KJA8	0.1413641901
+UniRef50_K2KJA8|unclassified	0.1413641901
+UniRef50_J7KZJ5: Formate-dependent nitrite reductase complex subunit NrfF	0.1413632703
+UniRef50_J7KZJ5: Formate-dependent nitrite reductase complex subunit NrfF|unclassified	0.1413632703
+UniRef50_UPI0002658671: PREDICTED: succinate dehydrogenase cytochrome b560 subunit, mitochondrial-like	0.1413614790
+UniRef50_UPI0002658671: PREDICTED: succinate dehydrogenase cytochrome b560 subunit, mitochondrial-like|unclassified	0.1413614790
+UniRef50_F4REI7	0.1413472304
+UniRef50_F4REI7|unclassified	0.1413472304
+UniRef50_UPI00016AC33B: malto-oligosyltrehalose synthase, partial	0.1413391044
+UniRef50_UPI00016AC33B: malto-oligosyltrehalose synthase, partial|unclassified	0.1413391044
+UniRef50_R1G1T2	0.1413377505
+UniRef50_R1G1T2|unclassified	0.1413377505
+UniRef50_UPI0004706EF5: hypothetical protein	0.1413343778
+UniRef50_UPI0004706EF5: hypothetical protein|unclassified	0.1413343778
+UniRef50_H0DJE4: Putative lipoprotein	0.1413309822
+UniRef50_H0DJE4: Putative lipoprotein|unclassified	0.1413309822
+UniRef50_UPI00036AFA15: hypothetical protein	0.1413301811
+UniRef50_UPI00036AFA15: hypothetical protein|unclassified	0.1413301811
+UniRef50_UPI0002D9CED7: hypothetical protein	0.1413231349
+UniRef50_UPI0002D9CED7: hypothetical protein|unclassified	0.1413231349
+UniRef50_Q84630	0.1413189151
+UniRef50_Q84630|unclassified	0.1413189151
+UniRef50_UPI00042C3CC5: PREDICTED: protein MTO1 homolog, mitochondrial	0.1413160716
+UniRef50_UPI00042C3CC5: PREDICTED: protein MTO1 homolog, mitochondrial|unclassified	0.1413160716
+UniRef50_D4Z5T9	0.1412987021
+UniRef50_D4Z5T9|unclassified	0.1412987021
+UniRef50_Q9LBG2: Levodione reductase	0.1412978381
+UniRef50_Q9LBG2: Levodione reductase|unclassified	0.1412978381
+UniRef50_UPI00047002F3: hypothetical protein	0.1412950629
+UniRef50_UPI00047002F3: hypothetical protein|unclassified	0.1412950629
+UniRef50_UPI0004686D51: hypothetical protein	0.1412890367
+UniRef50_UPI0004686D51: hypothetical protein|unclassified	0.1412890367
+UniRef50_UPI0004786076: acetolactate synthase catalytic subunit	0.1412755443
+UniRef50_UPI0004786076: acetolactate synthase catalytic subunit|unclassified	0.1412755443
+UniRef50_E6WGB3: MazG family protein	0.1412603410
+UniRef50_E6WGB3: MazG family protein|unclassified	0.1412603410
+UniRef50_O34391: N-acetylmuramoyl-L-alanine amidase XlyB	0.1412590137
+UniRef50_O34391: N-acetylmuramoyl-L-alanine amidase XlyB|unclassified	0.1412590137
+UniRef50_UPI00047C1586: hypothetical protein	0.1412573364
+UniRef50_UPI00047C1586: hypothetical protein|unclassified	0.1412573364
+UniRef50_P75059: Spermidine/putrescine import ATP-binding protein PotA	0.1412555609
+UniRef50_P75059: Spermidine/putrescine import ATP-binding protein PotA|unclassified	0.1412555609
+UniRef50_UPI000478D511: hypothetical protein	0.1412490279
+UniRef50_UPI000478D511: hypothetical protein|unclassified	0.1412490279
+UniRef50_UPI000474637D: hypothetical protein	0.1412482125
+UniRef50_UPI000474637D: hypothetical protein|unclassified	0.1412482125
+UniRef50_G2DGI6: Proton-translocating NADH-quinone oxidoreductase, chain M	0.1412466717
+UniRef50_G2DGI6: Proton-translocating NADH-quinone oxidoreductase, chain M|unclassified	0.1412466717
+UniRef50_I5C3B5: Excinuclease ABC subunit C	0.1412253403
+UniRef50_I5C3B5: Excinuclease ABC subunit C|unclassified	0.1412253403
+UniRef50_UPI000477BC75: transcriptional regulator	0.1412141741
+UniRef50_UPI000477BC75: transcriptional regulator|unclassified	0.1412141741
+UniRef50_UPI00039B7C9F: hypothetical protein	0.1411925391
+UniRef50_UPI00039B7C9F: hypothetical protein|unclassified	0.1411925391
+UniRef50_X2H6J9: DedA family inner membrane protein YqjA	0.1411866301
+UniRef50_X2H6J9: DedA family inner membrane protein YqjA|unclassified	0.1411866301
+UniRef50_Q852F2	0.1411738486
+UniRef50_Q852F2|unclassified	0.1411738486
+UniRef50_UPI000255B9A9: oxidoreductase	0.1411688381
+UniRef50_UPI000255B9A9: oxidoreductase|unclassified	0.1411688381
+UniRef50_UPI0003943901: PREDICTED: transcription initiation factor TFIID subunit 4-like	0.1411593713
+UniRef50_UPI0003943901: PREDICTED: transcription initiation factor TFIID subunit 4-like|unclassified	0.1411593713
+UniRef50_UPI0003FB5316: glutamate--cysteine ligase	0.1411564170
+UniRef50_UPI0003FB5316: glutamate--cysteine ligase|unclassified	0.1411564170
+UniRef50_P53401: Succinyl-CoA ligase [GDP-forming] subunit alpha-3, mitochondrial	0.1411530036
+UniRef50_P53401: Succinyl-CoA ligase [GDP-forming] subunit alpha-3, mitochondrial|unclassified	0.1411530036
+UniRef50_UPI0004655942: hypothetical protein	0.1411493650
+UniRef50_UPI0004655942: hypothetical protein|unclassified	0.1411493650
+UniRef50_UPI0002197930: transcriptional regulator	0.1411492561
+UniRef50_UPI0002197930: transcriptional regulator|unclassified	0.1411492561
+UniRef50_A1VM60: NADH-quinone oxidoreductase subunit A	0.1411366003
+UniRef50_A1VM60: NADH-quinone oxidoreductase subunit A|unclassified	0.1411366003
+UniRef50_Q2S026: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	0.1411255040
+UniRef50_Q2S026: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|unclassified	0.1411255040
+UniRef50_K0NC27: Putative acyl-carrier protein-like protein	0.1411203243
+UniRef50_K0NC27: Putative acyl-carrier protein-like protein|unclassified	0.1411203243
+UniRef50_UPI00037F0F1F: hypothetical protein	0.1411154190
+UniRef50_UPI00037F0F1F: hypothetical protein|unclassified	0.1411154190
+UniRef50_Q96397: LRG5	0.1411134994
+UniRef50_Q96397: LRG5|unclassified	0.1411134994
+UniRef50_Q9SS01: Benzoate--CoA ligase, peroxisomal	0.1410916780
+UniRef50_Q9SS01: Benzoate--CoA ligase, peroxisomal|unclassified	0.1410916780
+UniRef50_UPI000464AB46: hypothetical protein	0.1410895002
+UniRef50_UPI000464AB46: hypothetical protein|unclassified	0.1410895002
+UniRef50_UPI0002881118: ribosome biogenesis GTPase ObgE	0.1410872159
+UniRef50_UPI0002881118: ribosome biogenesis GTPase ObgE|unclassified	0.1410872159
+UniRef50_UPI00036AD709: hypothetical protein	0.1410850298
+UniRef50_UPI00036AD709: hypothetical protein|unclassified	0.1410850298
+UniRef50_UPI0003B555DD: iron ABC transporter ATP-binding protein	0.1410791602
+UniRef50_UPI0003B555DD: iron ABC transporter ATP-binding protein|unclassified	0.1410791602
+UniRef50_Q31LB7: Carbamoyl-phosphate synthase small chain	0.1410778774
+UniRef50_Q31LB7: Carbamoyl-phosphate synthase small chain|unclassified	0.1410778774
+UniRef50_Q0W939	0.1410760027
+UniRef50_Q0W939|unclassified	0.1410760027
+UniRef50_F0M756	0.1410752787
+UniRef50_F0M756|unclassified	0.1410752787
+UniRef50_F0Y6B5	0.1410750836
+UniRef50_F0Y6B5|unclassified	0.1410750836
+UniRef50_UPI000464CD1C: hypothetical protein	0.1410716166
+UniRef50_UPI000464CD1C: hypothetical protein|unclassified	0.1410716166
+UniRef50_B5ZBN2: Ribosomal RNA small subunit methyltransferase H	0.1410713573
+UniRef50_B5ZBN2: Ribosomal RNA small subunit methyltransferase H|unclassified	0.1410713573
+UniRef50_UPI000289CB7D: alkyl hydroperoxide reductase/ thiol specific antioxidant/ Mal allergen	0.1410668261
+UniRef50_UPI000289CB7D: alkyl hydroperoxide reductase/ thiol specific antioxidant/ Mal allergen|unclassified	0.1410668261
+UniRef50_UPI00016C400D: multi-sensor hybrid histidine kinase	0.1410580972
+UniRef50_UPI00016C400D: multi-sensor hybrid histidine kinase|unclassified	0.1410580972
+UniRef50_E6YUC3	0.1410546594
+UniRef50_E6YUC3|unclassified	0.1410546594
+UniRef50_Q49UD2	0.1410517556
+UniRef50_Q49UD2|unclassified	0.1410517556
+UniRef50_UPI0001DD012D: carbamate kinase	0.1410499405
+UniRef50_UPI0001DD012D: carbamate kinase|unclassified	0.1410499405
+UniRef50_UPI0003649CA5: hypothetical protein	0.1410487827
+UniRef50_UPI0003649CA5: hypothetical protein|unclassified	0.1410487827
+UniRef50_X1E421: Marine sediment metagenome DNA, contig: S01H4_S19033 (Fragment)	0.1410388153
+UniRef50_X1E421: Marine sediment metagenome DNA, contig: S01H4_S19033 (Fragment)|unclassified	0.1410388153
+UniRef50_UPI00047CC03D: threonine transporter	0.1410327095
+UniRef50_UPI00047CC03D: threonine transporter|unclassified	0.1410327095
+UniRef50_T3QN35: Putative GTP-binding protein typA/bipA	0.1410325688
+UniRef50_T3QN35: Putative GTP-binding protein typA/bipA|unclassified	0.1410325688
+UniRef50_B0CG85	0.1410244435
+UniRef50_B0CG85|unclassified	0.1410244435
+UniRef50_Q01T92: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	0.1410235053
+UniRef50_Q01T92: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|unclassified	0.1410235053
+UniRef50_X2LQY2	0.1410218333
+UniRef50_X2LQY2|unclassified	0.1410218333
+UniRef50_W1AEU8: Long-chain fatty acid transport protein	0.1409977336
+UniRef50_W1AEU8: Long-chain fatty acid transport protein|unclassified	0.1409977336
+UniRef50_UPI0003A0B379: MULTISPECIES: cell division protein FtsZ	0.1409921194
+UniRef50_UPI0003A0B379: MULTISPECIES: cell division protein FtsZ|unclassified	0.1409921194
+UniRef50_UPI0003B4FA0A: coproporphyrinogen III oxidase	0.1409921121
+UniRef50_UPI0003B4FA0A: coproporphyrinogen III oxidase|unclassified	0.1409921121
+UniRef50_W5X4V3	0.1409893727
+UniRef50_W5X4V3|unclassified	0.1409893727
+UniRef50_A0A024TW04: Secondary thiamine-phosphate synthase enzyme, variant	0.1409812442
+UniRef50_A0A024TW04: Secondary thiamine-phosphate synthase enzyme, variant|unclassified	0.1409812442
+UniRef50_UPI00038004D1: hypothetical protein	0.1409810400
+UniRef50_UPI00038004D1: hypothetical protein|unclassified	0.1409810400
+UniRef50_UPI000462E49A: hypothetical protein	0.1409728508
+UniRef50_UPI000462E49A: hypothetical protein|unclassified	0.1409728508
+UniRef50_O87386: Sarcosine oxidase subunit alpha	0.1409687020
+UniRef50_O87386: Sarcosine oxidase subunit alpha|unclassified	0.1409687020
+UniRef50_Z0S0A2	0.1409684284
+UniRef50_Z0S0A2|unclassified	0.1409684284
+UniRef50_H0NQH6	0.1409578445
+UniRef50_H0NQH6|unclassified	0.1409578445
+UniRef50_UPI00037D6E97: hypothetical protein	0.1409431948
+UniRef50_UPI00037D6E97: hypothetical protein|unclassified	0.1409431948
+UniRef50_UPI0004671CFD: hypothetical protein	0.1409397553
+UniRef50_UPI0004671CFD: hypothetical protein|unclassified	0.1409397553
+UniRef50_Q8RBE5: Dephospho-CoA kinase	0.1409397504
+UniRef50_Q8RBE5: Dephospho-CoA kinase|unclassified	0.1409397504
+UniRef50_F0P106: Thioesterase superfamily protein	0.1409279705
+UniRef50_F0P106: Thioesterase superfamily protein|unclassified	0.1409279705
+UniRef50_B0S155: Phosphopantetheine adenylyltransferase	0.1409148920
+UniRef50_B0S155: Phosphopantetheine adenylyltransferase|unclassified	0.1409148920
+UniRef50_H5UNV1	0.1409146762
+UniRef50_H5UNV1|unclassified	0.1409146762
+UniRef50_UPI00047BBB3D: hypothetical protein	0.1409138829
+UniRef50_UPI00047BBB3D: hypothetical protein|unclassified	0.1409138829
+UniRef50_UPI00037357A0: hypothetical protein	0.1409088170
+UniRef50_UPI00037357A0: hypothetical protein|unclassified	0.1409088170
+UniRef50_UPI00047855C0: excinuclease ABC subunit A	0.1409059711
+UniRef50_UPI00047855C0: excinuclease ABC subunit A|unclassified	0.1409059711
+UniRef50_P73534: Pyruvate kinase 2	0.1408912171
+UniRef50_P73534: Pyruvate kinase 2|unclassified	0.1408912171
+UniRef50_W9TKR5: Membrane protein component of ABC phosphate transporter	0.1408875329
+UniRef50_W9TKR5: Membrane protein component of ABC phosphate transporter|unclassified	0.1408875329
+UniRef50_E1SDM2	0.1408807670
+UniRef50_E1SDM2|unclassified	0.1408807670
+UniRef50_K0HWJ1	0.1408777727
+UniRef50_K0HWJ1|unclassified	0.1408777727
+UniRef50_K2GME8	0.1408737272
+UniRef50_K2GME8|unclassified	0.1408737272
+UniRef50_UPI000405017D: acyl-phosphate glycerol 3-phosphate acyltransferase	0.1408647085
+UniRef50_UPI000405017D: acyl-phosphate glycerol 3-phosphate acyltransferase|unclassified	0.1408647085
+UniRef50_F8S306: Putative NADH-quinone oxidoreductase	0.1408612141
+UniRef50_F8S306: Putative NADH-quinone oxidoreductase|unclassified	0.1408612141
+UniRef50_H5NT97	0.1408553435
+UniRef50_H5NT97|unclassified	0.1408553435
+UniRef50_UPI0002FCC6BE: hypothetical protein	0.1408406656
+UniRef50_UPI0002FCC6BE: hypothetical protein|unclassified	0.1408406656
+UniRef50_X1GKM5: Marine sediment metagenome DNA, contig: S03H2_L02798 (Fragment)	0.1408379950
+UniRef50_X1GKM5: Marine sediment metagenome DNA, contig: S03H2_L02798 (Fragment)|unclassified	0.1408379950
+UniRef50_D0BJH8	0.1408199837
+UniRef50_D0BJH8|unclassified	0.1408199837
+UniRef50_J4HWP4	0.1408054069
+UniRef50_J4HWP4|unclassified	0.1408054069
+UniRef50_UPI0003B396E9: pyruvate kinase, partial	0.1407956681
+UniRef50_UPI0003B396E9: pyruvate kinase, partial|unclassified	0.1407956681
+UniRef50_UPI0002E75F6C: hypothetical protein	0.1407947783
+UniRef50_UPI0002E75F6C: hypothetical protein|unclassified	0.1407947783
+UniRef50_UPI0002378711: hypothetical protein	0.1407830960
+UniRef50_UPI0002378711: hypothetical protein|unclassified	0.1407830960
+UniRef50_UPI0003755588: hypothetical protein	0.1407719456
+UniRef50_UPI0003755588: hypothetical protein|unclassified	0.1407719456
+UniRef50_UPI0003042C15: hypothetical protein	0.1407579201
+UniRef50_UPI0003042C15: hypothetical protein|unclassified	0.1407579201
+UniRef50_UPI0003B72DF0: GntR family transcriptional regulator	0.1407540633
+UniRef50_UPI0003B72DF0: GntR family transcriptional regulator|unclassified	0.1407540633
+UniRef50_UPI0004708F5B: ABC transporter substrate-binding protein, partial	0.1407540502
+UniRef50_UPI0004708F5B: ABC transporter substrate-binding protein, partial|unclassified	0.1407540502
+UniRef50_Q49016: Arabinose transport protein (Fragment)	0.1407513966
+UniRef50_Q49016: Arabinose transport protein (Fragment)|unclassified	0.1407513966
+UniRef50_UPI0002490914: transcriptional regulator	0.1407268391
+UniRef50_UPI0002490914: transcriptional regulator|unclassified	0.1407268391
+UniRef50_UPI0003B46DF8: ABC transporter permease	0.1407242365
+UniRef50_UPI0003B46DF8: ABC transporter permease|unclassified	0.1407242365
+UniRef50_F2DRZ2: Predicted protein (Fragment)	0.1407220564
+UniRef50_F2DRZ2: Predicted protein (Fragment)|unclassified	0.1407220564
+UniRef50_Q6YPZ6: tRNA N6-adenosine threonylcarbamoyltransferase	0.1407113308
+UniRef50_Q6YPZ6: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.1407113308
+UniRef50_B2II06	0.1407106577
+UniRef50_B2II06|unclassified	0.1407106577
+UniRef50_UPI0004786CD9: hypothetical protein	0.1407095666
+UniRef50_UPI0004786CD9: hypothetical protein|unclassified	0.1407095666
+UniRef50_C1DJ40: Regulatory protein	0.1406890915
+UniRef50_C1DJ40: Regulatory protein|unclassified	0.1406890915
+UniRef50_UPI0003B64407: ATP-dependent DNA helicase RecQ	0.1406795549
+UniRef50_UPI0003B64407: ATP-dependent DNA helicase RecQ|unclassified	0.1406795549
+UniRef50_Q8PIU9	0.1406616461
+UniRef50_Q8PIU9|unclassified	0.1406616461
+UniRef50_J3LQ87	0.1406373270
+UniRef50_J3LQ87|unclassified	0.1406373270
+UniRef50_B3R4F4	0.1406267302
+UniRef50_B3R4F4|unclassified	0.1406267302
+UniRef50_Q7Z895: Dihydroorotate dehydrogenase (fumarate)	0.1406226789
+UniRef50_Q7Z895: Dihydroorotate dehydrogenase (fumarate)|unclassified	0.1406226789
+UniRef50_W0YPV2	0.1406194116
+UniRef50_W0YPV2|unclassified	0.1406194116
+UniRef50_C0QI21: N-acetyl-gamma-glutamyl-phosphate reductase	0.1406187331
+UniRef50_C0QI21: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.1406187331
+UniRef50_UPI00040FDD4B: hypothetical protein	0.1406150212
+UniRef50_UPI00040FDD4B: hypothetical protein|unclassified	0.1406150212
+UniRef50_UPI0004625764: hypothetical protein	0.1406024929
+UniRef50_UPI0004625764: hypothetical protein|unclassified	0.1406024929
+UniRef50_UPI00037C1F05: hypothetical protein	0.1405999608
+UniRef50_UPI00037C1F05: hypothetical protein|unclassified	0.1405999608
+UniRef50_E1SQ34: tRNA-hydroxylase	0.1405952700
+UniRef50_E1SQ34: tRNA-hydroxylase|unclassified	0.1405952700
+UniRef50_UPI0003635A0A: hypothetical protein	0.1405918238
+UniRef50_UPI0003635A0A: hypothetical protein|unclassified	0.1405918238
+UniRef50_N0B4W3	0.1405912866
+UniRef50_N0B4W3|unclassified	0.1405912866
+UniRef50_UPI000237E47D: transposase	0.1405862637
+UniRef50_UPI000237E47D: transposase|unclassified	0.1405862637
+UniRef50_UPI0003B4ACB7: chemotaxis protein CheB	0.1405761682
+UniRef50_UPI0003B4ACB7: chemotaxis protein CheB|unclassified	0.1405761682
+UniRef50_UPI0003608764: hypothetical protein	0.1405727677
+UniRef50_UPI0003608764: hypothetical protein|unclassified	0.1405727677
+UniRef50_UPI00047E9E45: RpiR family transcriptional regulator	0.1405702942
+UniRef50_UPI00047E9E45: RpiR family transcriptional regulator|unclassified	0.1405702942
+UniRef50_T1WBV8: NAD(P)-binding Rossmann-like domain (Fragment)	0.1405638840
+UniRef50_T1WBV8: NAD(P)-binding Rossmann-like domain (Fragment)|unclassified	0.1405638840
+UniRef50_UPI000249006B: magnesium transport protein, partial	0.1405601357
+UniRef50_UPI000249006B: magnesium transport protein, partial|unclassified	0.1405601357
+UniRef50_UPI000369FD00: hypothetical protein	0.1405585175
+UniRef50_UPI000369FD00: hypothetical protein|unclassified	0.1405585175
+UniRef50_P27868: Acetolactate synthase (Fragment)	0.1405424465
+UniRef50_P27868: Acetolactate synthase (Fragment)|unclassified	0.1405424465
+UniRef50_A0A011NK38	0.1405393185
+UniRef50_A0A011NK38|unclassified	0.1405393185
+UniRef50_P75167: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	0.1405390864
+UniRef50_P75167: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|unclassified	0.1405390864
+UniRef50_Q1QZ88: YgfB and YecA	0.1405337757
+UniRef50_Q1QZ88: YgfB and YecA|unclassified	0.1405337757
+UniRef50_UPI00046354D6: short-chain dehydrogenase	0.1405313378
+UniRef50_UPI00046354D6: short-chain dehydrogenase|unclassified	0.1405313378
+UniRef50_W5D354	0.1405205436
+UniRef50_W5D354|unclassified	0.1405205436
+UniRef50_UPI00039D3042: LysR family transcriptional regulator	0.1405060002
+UniRef50_UPI00039D3042: LysR family transcriptional regulator|unclassified	0.1405060002
+UniRef50_U6AAW1	0.1405003138
+UniRef50_U6AAW1|unclassified	0.1405003138
+UniRef50_UPI00046A5C9E: branched-chain amino acid ABC transporter substrate-binding protein	0.1404919393
+UniRef50_UPI00046A5C9E: branched-chain amino acid ABC transporter substrate-binding protein|unclassified	0.1404919393
+UniRef50_M3V2X9	0.1404823844
+UniRef50_M3V2X9|unclassified	0.1404823844
+UniRef50_E8MZM1	0.1404820726
+UniRef50_E8MZM1|unclassified	0.1404820726
+UniRef50_C5D012: Thioesterase superfamily protein	0.1404765408
+UniRef50_C5D012: Thioesterase superfamily protein|unclassified	0.1404765408
+UniRef50_UPI0004725F12: hypothetical protein, partial	0.1404606474
+UniRef50_UPI0004725F12: hypothetical protein, partial|unclassified	0.1404606474
+UniRef50_UPI00037830BD: hypothetical protein	0.1404604867
+UniRef50_UPI00037830BD: hypothetical protein|unclassified	0.1404604867
+UniRef50_UPI0002FA2CC7: hypothetical protein	0.1404542655
+UniRef50_UPI0002FA2CC7: hypothetical protein|unclassified	0.1404542655
+UniRef50_UPI0003C112FF: PREDICTED: acetolactate synthase, mitochondrial-like	0.1404515672
+UniRef50_UPI0003C112FF: PREDICTED: acetolactate synthase, mitochondrial-like|unclassified	0.1404515672
+UniRef50_UPI0003A66B4D: phosphatidylserine decarboxylase	0.1404396230
+UniRef50_UPI0003A66B4D: phosphatidylserine decarboxylase|unclassified	0.1404396230
+UniRef50_R2TGK0	0.1404375398
+UniRef50_R2TGK0|unclassified	0.1404375398
+UniRef50_UPI00029A6E2A: haloacid dehalogenase	0.1404294914
+UniRef50_UPI00029A6E2A: haloacid dehalogenase|unclassified	0.1404294914
+UniRef50_Q5KWI6: Non-canonical purine NTP pyrophosphatase	0.1404277549
+UniRef50_Q5KWI6: Non-canonical purine NTP pyrophosphatase|unclassified	0.1404277549
+UniRef50_UPI000378D9A5: hypothetical protein	0.1404206615
+UniRef50_UPI000378D9A5: hypothetical protein|unclassified	0.1404206615
+UniRef50_UPI00036619EB: hypothetical protein	0.1404123008
+UniRef50_UPI00036619EB: hypothetical protein|unclassified	0.1404123008
+UniRef50_F8H4I1	0.1404117533
+UniRef50_F8H4I1|unclassified	0.1404117533
+UniRef50_S9QV26: TRAP-type transport system, small permease component, predicted N-acetylneuraminate transporter	0.1404086879
+UniRef50_S9QV26: TRAP-type transport system, small permease component, predicted N-acetylneuraminate transporter|unclassified	0.1404086879
+UniRef50_UPI0003B65FC7: hypothetical protein	0.1404055913
+UniRef50_UPI0003B65FC7: hypothetical protein|unclassified	0.1404055913
+UniRef50_UPI00046D7B04: RNA polymerase sigma 70	0.1403988175
+UniRef50_UPI00046D7B04: RNA polymerase sigma 70|unclassified	0.1403988175
+UniRef50_P57245: Carbamoyl-phosphate synthase small chain	0.1403885482
+UniRef50_P57245: Carbamoyl-phosphate synthase small chain|unclassified	0.1403885482
+UniRef50_N6V4C3	0.1403841261
+UniRef50_N6V4C3|unclassified	0.1403841261
+UniRef50_UPI0004638311: ribonucleoside-triphosphate reductase activating protein	0.1403814642
+UniRef50_UPI0004638311: ribonucleoside-triphosphate reductase activating protein|unclassified	0.1403814642
+UniRef50_UPI00047C2B15: membrane protein	0.1403712327
+UniRef50_UPI00047C2B15: membrane protein|unclassified	0.1403712327
+UniRef50_UPI00024870CC: phosphoribosylaminoimidazole carboxylase ATPase subunit, partial	0.1403646537
+UniRef50_UPI00024870CC: phosphoribosylaminoimidazole carboxylase ATPase subunit, partial|unclassified	0.1403646537
+UniRef50_Q72L31: Uroporphyrinogen decarboxylase	0.1403568860
+UniRef50_Q72L31: Uroporphyrinogen decarboxylase|unclassified	0.1403568860
+UniRef50_UPI000473814E: hypothetical protein, partial	0.1403546623
+UniRef50_UPI000473814E: hypothetical protein, partial|unclassified	0.1403546623
+UniRef50_UPI000219711C: branched-chain amino acid transporter II carrier protein	0.1403511001
+UniRef50_UPI000219711C: branched-chain amino acid transporter II carrier protein|unclassified	0.1403511001
+UniRef50_X1F1Y2: Marine sediment metagenome DNA, contig: S03H2_L04519 (Fragment)	0.1403459859
+UniRef50_X1F1Y2: Marine sediment metagenome DNA, contig: S03H2_L04519 (Fragment)|unclassified	0.1403459859
+UniRef50_UPI00036F944D: MULTISPECIES: 50S ribosomal protein L22	0.1403452189
+UniRef50_UPI00036F944D: MULTISPECIES: 50S ribosomal protein L22|unclassified	0.1403452189
+UniRef50_I1B0C8	0.1403379999
+UniRef50_I1B0C8|unclassified	0.1403379999
+UniRef50_UPI0001FFECE5: modular polyketide synthase, partial	0.1403347223
+UniRef50_UPI0001FFECE5: modular polyketide synthase, partial|unclassified	0.1403347223
+UniRef50_UPI00037FFB66: hypothetical protein, partial	0.1403324645
+UniRef50_UPI00037FFB66: hypothetical protein, partial|unclassified	0.1403324645
+UniRef50_Q9JZ07: Inositol-1-monophosphatase	0.1403274789
+UniRef50_Q9JZ07: Inositol-1-monophosphatase|unclassified	0.1403274789
+UniRef50_UPI0001912722: putative sensor protein, partial	0.1403242145
+UniRef50_UPI0001912722: putative sensor protein, partial|unclassified	0.1403242145
+UniRef50_G9ZZH4: Metallo-beta-lactamase domain protein	0.1403188843
+UniRef50_G9ZZH4: Metallo-beta-lactamase domain protein|unclassified	0.1403188843
+UniRef50_UPI000367A428: MULTISPECIES: hypothetical protein	0.1403012559
+UniRef50_UPI000367A428: MULTISPECIES: hypothetical protein|unclassified	0.1403012559
+UniRef50_UPI00037F9050: hypothetical protein	0.1403010973
+UniRef50_UPI00037F9050: hypothetical protein|unclassified	0.1403010973
+UniRef50_P29148: Bacillolysin	0.1402996742
+UniRef50_P29148: Bacillolysin|unclassified	0.1402996742
+UniRef50_X0WIE6: Marine sediment metagenome DNA, contig: S01H1_S30489 (Fragment)	0.1402957795
+UniRef50_X0WIE6: Marine sediment metagenome DNA, contig: S01H1_S30489 (Fragment)|unclassified	0.1402957795
+UniRef50_F7BZR7	0.1402798210
+UniRef50_F7BZR7|unclassified	0.1402798210
+UniRef50_UPI000366E821: hypothetical protein	0.1402745834
+UniRef50_UPI000366E821: hypothetical protein|unclassified	0.1402745834
+UniRef50_E0RGN7	0.1402737519
+UniRef50_E0RGN7|unclassified	0.1402737519
+UniRef50_H2G856: Putative terminase large subunit	0.1402669959
+UniRef50_H2G856: Putative terminase large subunit|unclassified	0.1402669959
+UniRef50_B8KM54: Ribonuclease BN	0.1402573735
+UniRef50_B8KM54: Ribonuclease BN|unclassified	0.1402573735
+UniRef50_UPI0002557ECE: hypothetical protein	0.1402496655
+UniRef50_UPI0002557ECE: hypothetical protein|unclassified	0.1402496655
+UniRef50_V6F4M2	0.1402482301
+UniRef50_V6F4M2|unclassified	0.1402482301
+UniRef50_UPI00037CBE46: hypothetical protein	0.1402426021
+UniRef50_UPI00037CBE46: hypothetical protein|unclassified	0.1402426021
+UniRef50_B8DJ60: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	0.1402393390
+UniRef50_B8DJ60: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|unclassified	0.1402393390
+UniRef50_K6GG24: Protein PsiE	0.1402324457
+UniRef50_K6GG24: Protein PsiE|unclassified	0.1402324457
+UniRef50_UPI00037AD344: hypothetical protein	0.1402263336
+UniRef50_UPI00037AD344: hypothetical protein|unclassified	0.1402263336
+UniRef50_K5YIR0: Molecular chaperone	0.1402241189
+UniRef50_K5YIR0: Molecular chaperone|unclassified	0.1402241189
+UniRef50_UPI0003C257FE: PREDICTED: putative nuclease HARBI1-like isoform X2	0.1402143801
+UniRef50_UPI0003C257FE: PREDICTED: putative nuclease HARBI1-like isoform X2|unclassified	0.1402143801
+UniRef50_UPI000345BBD3: hypothetical protein	0.1402138807
+UniRef50_UPI000345BBD3: hypothetical protein|unclassified	0.1402138807
+UniRef50_Q8A1F7: Elongation factor P	0.1402136227
+UniRef50_Q8A1F7: Elongation factor P|unclassified	0.1402136227
+UniRef50_UPI000262CE21: multi-sensor hybrid histidine kinase, partial	0.1402121517
+UniRef50_UPI000262CE21: multi-sensor hybrid histidine kinase, partial|unclassified	0.1402121517
+UniRef50_F4NJG0	0.1402115678
+UniRef50_F4NJG0|unclassified	0.1402115678
+UniRef50_UPI00035A1EA0: PREDICTED: delta-aminolevulinic acid dehydratase	0.1402097134
+UniRef50_UPI00035A1EA0: PREDICTED: delta-aminolevulinic acid dehydratase|unclassified	0.1402097134
+UniRef50_U5V3P6: IcmF1 domain protein	0.1402078573
+UniRef50_U5V3P6: IcmF1 domain protein|unclassified	0.1402078573
+UniRef50_Q5WKY5: 6-phospho-5-dehydro-2-deoxy-D-gluconate aldolase	0.1402039104
+UniRef50_Q5WKY5: 6-phospho-5-dehydro-2-deoxy-D-gluconate aldolase|unclassified	0.1402039104
+UniRef50_A4X039	0.1402012010
+UniRef50_A4X039|unclassified	0.1402012010
+UniRef50_UPI00046AD2D4: hypothetical protein	0.1401993245
+UniRef50_UPI00046AD2D4: hypothetical protein|unclassified	0.1401993245
+UniRef50_Q1ISS4: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	0.1401839858
+UniRef50_Q1ISS4: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|unclassified	0.1401839858
+UniRef50_E1QGZ1: ABC-type transporter, permease protein	0.1401817228
+UniRef50_E1QGZ1: ABC-type transporter, permease protein|unclassified	0.1401817228
+UniRef50_Q2CAI1	0.1401805700
+UniRef50_Q2CAI1|unclassified	0.1401805700
+UniRef50_UPI000252B349: PREDICTED: DNA gyrase subunit B-like, partial	0.1401797499
+UniRef50_UPI000252B349: PREDICTED: DNA gyrase subunit B-like, partial|unclassified	0.1401797499
+UniRef50_S9RRM6: High-affinity K+ transport system, ATPase chain B	0.1401770509
+UniRef50_S9RRM6: High-affinity K+ transport system, ATPase chain B|unclassified	0.1401770509
+UniRef50_UPI00020D9EF8: potassium-transporting ATPase subunit B, partial	0.1401721643
+UniRef50_UPI00020D9EF8: potassium-transporting ATPase subunit B, partial|unclassified	0.1401721643
+UniRef50_Q491L0: ComG operon protein 4	0.1401651054
+UniRef50_Q491L0: ComG operon protein 4|unclassified	0.1401651054
+UniRef50_UPI0003B61251: elongation factor P	0.1401591886
+UniRef50_UPI0003B61251: elongation factor P|unclassified	0.1401591886
+UniRef50_UPI0003F5CF23: lipoate--protein ligase	0.1401543002
+UniRef50_UPI0003F5CF23: lipoate--protein ligase|unclassified	0.1401543002
+UniRef50_F9VSE4: Threonine dehydratase	0.1401456485
+UniRef50_F9VSE4: Threonine dehydratase|unclassified	0.1401456485
+UniRef50_UPI0003FA120A: hypothetical protein	0.1401283049
+UniRef50_UPI0003FA120A: hypothetical protein|unclassified	0.1401283049
+UniRef50_UPI0003B3F387: hypothetical protein	0.1401212955
+UniRef50_UPI0003B3F387: hypothetical protein|unclassified	0.1401212955
+UniRef50_UPI00047C3270: multidrug MFS transporter	0.1400985976
+UniRef50_UPI00047C3270: multidrug MFS transporter|unclassified	0.1400985976
+UniRef50_UPI000307F825: hypothetical protein	0.1400919964
+UniRef50_UPI000307F825: hypothetical protein|unclassified	0.1400919964
+UniRef50_UPI0003446A9B	0.1400860097
+UniRef50_UPI0003446A9B|unclassified	0.1400860097
+UniRef50_K8PCU8	0.1400743356
+UniRef50_K8PCU8|unclassified	0.1400743356
+UniRef50_Q9CPY0: Putative ribosomal RNA methyltransferase 2	0.1400711774
+UniRef50_Q9CPY0: Putative ribosomal RNA methyltransferase 2|unclassified	0.1400711774
+UniRef50_Q75M73	0.1400631743
+UniRef50_Q75M73|unclassified	0.1400631743
+UniRef50_R6JM85: L-serine dehydratase	0.1400573639
+UniRef50_R6JM85: L-serine dehydratase|unclassified	0.1400573639
+UniRef50_UPI0004707731: hypothetical protein, partial	0.1400573458
+UniRef50_UPI0004707731: hypothetical protein, partial|unclassified	0.1400573458
+UniRef50_H8I854	0.1400363164
+UniRef50_H8I854|unclassified	0.1400363164
+UniRef50_UPI00046CDE56: hypothetical protein	0.1400347551
+UniRef50_UPI00046CDE56: hypothetical protein|unclassified	0.1400347551
+UniRef50_UPI00047969EC: ferrichrome ABC transporter	0.1400341209
+UniRef50_UPI00047969EC: ferrichrome ABC transporter|unclassified	0.1400341209
+UniRef50_UPI0004640089: acetylornithine deacetylase	0.1400318329
+UniRef50_UPI0004640089: acetylornithine deacetylase|unclassified	0.1400318329
+UniRef50_T1A128: GTP-binding protein TypA (Fragment)	0.1400188375
+UniRef50_T1A128: GTP-binding protein TypA (Fragment)|unclassified	0.1400188375
+UniRef50_E8T215: Lytic transglycosylase catalytic	0.1400152075
+UniRef50_E8T215: Lytic transglycosylase catalytic|unclassified	0.1400152075
+UniRef50_U6N0Y3: Alanine dehydrogenase, putative	0.1400143940
+UniRef50_U6N0Y3: Alanine dehydrogenase, putative|unclassified	0.1400143940
+UniRef50_E0MMN1	0.1400128829
+UniRef50_E0MMN1|unclassified	0.1400128829
+UniRef50_UPI00047A49C5: ABC transporter permease	0.1400018033
+UniRef50_UPI00047A49C5: ABC transporter permease|unclassified	0.1400018033
+UniRef50_UPI00046F3DA4: cell surface protein	0.1400013860
+UniRef50_UPI00046F3DA4: cell surface protein|unclassified	0.1400013860
+UniRef50_X4ZLP1: Major facilitator superfamily MFS_1 domain protein	0.1399918696
+UniRef50_X4ZLP1: Major facilitator superfamily MFS_1 domain protein|unclassified	0.1399918696
+UniRef50_Q2S4I7	0.1399906788
+UniRef50_Q2S4I7|unclassified	0.1399906788
+UniRef50_UPI0003751654: hypothetical protein	0.1399831773
+UniRef50_UPI0003751654: hypothetical protein|unclassified	0.1399831773
+UniRef50_Q6Z103: Myosin heavy chain homolog-like protein	0.1399775311
+UniRef50_Q6Z103: Myosin heavy chain homolog-like protein|unclassified	0.1399775311
+UniRef50_I6X0E0: Lipoprotein	0.1399652153
+UniRef50_I6X0E0: Lipoprotein|unclassified	0.1399652153
+UniRef50_X6KZ67	0.1399600114
+UniRef50_X6KZ67|unclassified	0.1399600114
+UniRef50_I2B8G6	0.1399510739
+UniRef50_I2B8G6|unclassified	0.1399510739
+UniRef50_UPI0003812972: hypothetical protein	0.1399508763
+UniRef50_UPI0003812972: hypothetical protein|unclassified	0.1399508763
+UniRef50_A1BAJ5	0.1399482900
+UniRef50_A1BAJ5|unclassified	0.1399482900
+UniRef50_H8FTA3	0.1399392135
+UniRef50_H8FTA3|unclassified	0.1399392135
+UniRef50_Q11SW8: Lipoprotein-releasing system ATP-binding protein LolD	0.1399329941
+UniRef50_Q11SW8: Lipoprotein-releasing system ATP-binding protein LolD|unclassified	0.1399329941
+UniRef50_UPI000455FDEB: hypothetical protein CONPUDRAFT_131066	0.1399223346
+UniRef50_UPI000455FDEB: hypothetical protein CONPUDRAFT_131066|unclassified	0.1399223346
+UniRef50_J8DVT0	0.1399202124
+UniRef50_J8DVT0|unclassified	0.1399202124
+UniRef50_X1T0J1: Marine sediment metagenome DNA, contig: S12H4_L04166	0.1399171177
+UniRef50_X1T0J1: Marine sediment metagenome DNA, contig: S12H4_L04166|unclassified	0.1399171177
+UniRef50_Q823M8: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha	0.1399133127
+UniRef50_Q823M8: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|unclassified	0.1399133127
+UniRef50_UPI000406F7B4: MULTISPECIES: hypothetical protein	0.1399035631
+UniRef50_UPI000406F7B4: MULTISPECIES: hypothetical protein|unclassified	0.1399035631
+UniRef50_Q2L2E4: Phage protein	0.1398748099
+UniRef50_Q2L2E4: Phage protein|unclassified	0.1398748099
+UniRef50_G5JL12	0.1398739009
+UniRef50_G5JL12|unclassified	0.1398739009
+UniRef50_UPI00037A67FF: hypothetical protein	0.1398573757
+UniRef50_UPI00037A67FF: hypothetical protein|unclassified	0.1398573757
+UniRef50_X1NIH3: Marine sediment metagenome DNA, contig: S06H3_S09497 (Fragment)	0.1398532831
+UniRef50_X1NIH3: Marine sediment metagenome DNA, contig: S06H3_S09497 (Fragment)|unclassified	0.1398532831
+UniRef50_X6FLI4	0.1398470477
+UniRef50_X6FLI4|unclassified	0.1398470477
+UniRef50_UPI0003B36CFD: flagellar hook protein FlgE	0.1398467472
+UniRef50_UPI0003B36CFD: flagellar hook protein FlgE|unclassified	0.1398467472
+UniRef50_UPI00036A13AE: hypothetical protein	0.1398432141
+UniRef50_UPI00036A13AE: hypothetical protein|unclassified	0.1398432141
+UniRef50_UPI0002626701: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.1398394165
+UniRef50_UPI0002626701: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.1398394165
+UniRef50_UPI0004662556: hypothetical protein	0.1398343200
+UniRef50_UPI0004662556: hypothetical protein|unclassified	0.1398343200
+UniRef50_Q5ZZU2: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	0.1398338958
+UniRef50_Q5ZZU2: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|unclassified	0.1398338958
+UniRef50_UPI0003134158: hypothetical protein	0.1398263198
+UniRef50_UPI0003134158: hypothetical protein|unclassified	0.1398263198
+UniRef50_Q3DMF0	0.1397999969
+UniRef50_Q3DMF0|unclassified	0.1397999969
+UniRef50_D5VI41	0.1397902073
+UniRef50_D5VI41|unclassified	0.1397902073
+UniRef50_X7V429: HD domain protein	0.1397788772
+UniRef50_X7V429: HD domain protein|unclassified	0.1397788772
+UniRef50_UPI0002FC37AF: hypothetical protein	0.1397711296
+UniRef50_UPI0002FC37AF: hypothetical protein|unclassified	0.1397711296
+UniRef50_Q4L8Z7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.1397629027
+UniRef50_Q4L8Z7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.1397629027
+UniRef50_Q6N6C1: Ribonuclease 3	0.1397618663
+UniRef50_Q6N6C1: Ribonuclease 3|unclassified	0.1397618663
+UniRef50_Q9KIW7: Pentaphosphate guanosine-3'-pyrophosphorylase (Fragment)	0.1397600510
+UniRef50_Q9KIW7: Pentaphosphate guanosine-3'-pyrophosphorylase (Fragment)|unclassified	0.1397600510
+UniRef50_A5EY11: Ribosomal RNA small subunit methyltransferase H	0.1397404613
+UniRef50_A5EY11: Ribosomal RNA small subunit methyltransferase H|unclassified	0.1397404613
+UniRef50_UPI00036EC63D: hypothetical protein	0.1397369998
+UniRef50_UPI00036EC63D: hypothetical protein|unclassified	0.1397369998
+UniRef50_UPI00047B45F5: tricarboxylic transport membrane protein	0.1397276325
+UniRef50_UPI00047B45F5: tricarboxylic transport membrane protein|unclassified	0.1397276325
+UniRef50_Q9RSJ6: DNA-directed RNA polymerase subunit alpha	0.1397242229
+UniRef50_Q9RSJ6: DNA-directed RNA polymerase subunit alpha|unclassified	0.1397242229
+UniRef50_K7V3T8	0.1397146205
+UniRef50_K7V3T8|unclassified	0.1397146205
+UniRef50_A0A021X0H2: Soluble lytic murein transglycosylase	0.1397029050
+UniRef50_A0A021X0H2: Soluble lytic murein transglycosylase|unclassified	0.1397029050
+UniRef50_K0HLP5: Cell envelope-related transcriptional attenuator	0.1397006925
+UniRef50_K0HLP5: Cell envelope-related transcriptional attenuator|unclassified	0.1397006925
+UniRef50_UPI0003650CF8: hypothetical protein	0.1396915991
+UniRef50_UPI0003650CF8: hypothetical protein|unclassified	0.1396915991
+UniRef50_F5I377	0.1396907278
+UniRef50_F5I377|unclassified	0.1396907278
+UniRef50_UPI000255C58A: amino acid permease-associated protein, partial	0.1396838035
+UniRef50_UPI000255C58A: amino acid permease-associated protein, partial|unclassified	0.1396838035
+UniRef50_W8YPX4	0.1396790145
+UniRef50_W8YPX4|unclassified	0.1396790145
+UniRef50_G2DBS7: IncF plasmid conjugative transfer pilus assembly protein TraC	0.1396466435
+UniRef50_G2DBS7: IncF plasmid conjugative transfer pilus assembly protein TraC|unclassified	0.1396466435
+UniRef50_K0F1W6: HxlR family transcriptional regulator	0.1396405504
+UniRef50_K0F1W6: HxlR family transcriptional regulator|unclassified	0.1396405504
+UniRef50_B7FLU8	0.1396338137
+UniRef50_B7FLU8|unclassified	0.1396338137
+UniRef50_UPI000373BA6A: hypothetical protein	0.1396323999
+UniRef50_UPI000373BA6A: hypothetical protein|unclassified	0.1396323999
+UniRef50_A3X4G6: Antirepressor protein ant	0.1396196787
+UniRef50_A3X4G6: Antirepressor protein ant|unclassified	0.1396196787
+UniRef50_UPI0003618D05: sensor histidine kinase	0.1396093986
+UniRef50_UPI0003618D05: sensor histidine kinase|unclassified	0.1396093986
+UniRef50_A6TLV2	0.1396052146
+UniRef50_A6TLV2|unclassified	0.1396052146
+UniRef50_X1H4N6: Marine sediment metagenome DNA, contig: S03H2_S02643	0.1396050614
+UniRef50_X1H4N6: Marine sediment metagenome DNA, contig: S03H2_S02643|unclassified	0.1396050614
+UniRef50_Q82Z75: Sensor protein LytS	0.1395985137
+UniRef50_Q82Z75: Sensor protein LytS|unclassified	0.1395985137
+UniRef50_W1Q1Z0: ABC-2 type transporter	0.1395795952
+UniRef50_W1Q1Z0: ABC-2 type transporter|unclassified	0.1395795952
+UniRef50_Q6L2D8: Pyridoxal biosynthesis lyase PdxS	0.1395754710
+UniRef50_Q6L2D8: Pyridoxal biosynthesis lyase PdxS|unclassified	0.1395754710
+UniRef50_D4GLM6: PpdB	0.1395740635
+UniRef50_D4GLM6: PpdB|unclassified	0.1395740635
+UniRef50_UPI00037F1CB1: hypothetical protein	0.1395663397
+UniRef50_UPI00037F1CB1: hypothetical protein|unclassified	0.1395663397
+UniRef50_R6UMN9: L-serine dehydratase alpha chain	0.1395648032
+UniRef50_R6UMN9: L-serine dehydratase alpha chain|unclassified	0.1395648032
+UniRef50_UPI000418F39C: glycosyl transferase	0.1395546523
+UniRef50_UPI000418F39C: glycosyl transferase|unclassified	0.1395546523
+UniRef50_UPI0003109B51: hypothetical protein	0.1395536964
+UniRef50_UPI0003109B51: hypothetical protein|unclassified	0.1395536964
+UniRef50_UPI000381BF9B: hypothetical protein	0.1395479440
+UniRef50_UPI000381BF9B: hypothetical protein|unclassified	0.1395479440
+UniRef50_UPI00046E81BB: acetamidase/formamidase	0.1395449900
+UniRef50_UPI00046E81BB: acetamidase/formamidase|unclassified	0.1395449900
+UniRef50_UPI000468220F: hypothetical protein	0.1395446241
+UniRef50_UPI000468220F: hypothetical protein|unclassified	0.1395446241
+UniRef50_B5XYW4: Cyclic pyranopterin monophosphate synthase accessory protein	0.1395422748
+UniRef50_B5XYW4: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	0.1395422748
+UniRef50_A0A029L5P5: Baseplate J-like family protein	0.1395183513
+UniRef50_A0A029L5P5: Baseplate J-like family protein|unclassified	0.1395183513
+UniRef50_UPI00036B75AE: hypothetical protein, partial	0.1395169499
+UniRef50_UPI00036B75AE: hypothetical protein, partial|unclassified	0.1395169499
+UniRef50_UPI00044073AC: ECH-domain-containing protein	0.1395001114
+UniRef50_UPI00044073AC: ECH-domain-containing protein|unclassified	0.1395001114
+UniRef50_UPI00047B54F5: hypothetical protein	0.1394985619
+UniRef50_UPI00047B54F5: hypothetical protein|unclassified	0.1394985619
+UniRef50_UPI000360D1BC: hypothetical protein	0.1394843531
+UniRef50_UPI000360D1BC: hypothetical protein|unclassified	0.1394843531
+UniRef50_A0A028WY26: PF04507 domain protein	0.1394813753
+UniRef50_A0A028WY26: PF04507 domain protein|unclassified	0.1394813753
+UniRef50_UPI00046D3849: gamma-glutamyl kinase	0.1394794619
+UniRef50_UPI00046D3849: gamma-glutamyl kinase|unclassified	0.1394794619
+UniRef50_V9AWK3: Putative membrane protein	0.1394676039
+UniRef50_V9AWK3: Putative membrane protein|unclassified	0.1394676039
+UniRef50_UPI0003B68CA0: ABC transporter	0.1394651481
+UniRef50_UPI0003B68CA0: ABC transporter|unclassified	0.1394651481
+UniRef50_Z5X6F0	0.1394597950
+UniRef50_Z5X6F0|unclassified	0.1394597950
+UniRef50_UPI0003B56752: ABC transporter ATP-binding protein, partial	0.1394504773
+UniRef50_UPI0003B56752: ABC transporter ATP-binding protein, partial|unclassified	0.1394504773
+UniRef50_Q96528: Catalase-1	0.1394502661
+UniRef50_Q96528: Catalase-1|unclassified	0.1394502661
+UniRef50_Q3AZQ2	0.1394455078
+UniRef50_Q3AZQ2|unclassified	0.1394455078
+UniRef50_M1Z980	0.1394391173
+UniRef50_M1Z980|unclassified	0.1394391173
+UniRef50_Q57AV8: Arginine biosynthesis bifunctional protein ArgJ	0.1394390006
+UniRef50_Q57AV8: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.1394390006
+UniRef50_E6U8X0: IS66 Orf2 family protein	0.1394330767
+UniRef50_E6U8X0: IS66 Orf2 family protein|unclassified	0.1394330767
+UniRef50_UPI000479160F: hypothetical protein	0.1394281706
+UniRef50_UPI000479160F: hypothetical protein|unclassified	0.1394281706
+UniRef50_R1EP73	0.1394193765
+UniRef50_R1EP73|unclassified	0.1394193765
+UniRef50_B7RYY7: UPF0126 domain protein	0.1394052730
+UniRef50_B7RYY7: UPF0126 domain protein|unclassified	0.1394052730
+UniRef50_B1ME21: Protein NrdI	0.1394026983
+UniRef50_B1ME21: Protein NrdI|unclassified	0.1394026983
+UniRef50_UPI0003B76F9E: 4''''-phosphopantetheinyl transferase	0.1393944246
+UniRef50_UPI0003B76F9E: 4''''-phosphopantetheinyl transferase|unclassified	0.1393944246
+UniRef50_F4PTN3	0.1393913169
+UniRef50_F4PTN3|unclassified	0.1393913169
+UniRef50_UPI0003FF6C70: RNA polymerase sigma 70	0.1393857685
+UniRef50_UPI0003FF6C70: RNA polymerase sigma 70|unclassified	0.1393857685
+UniRef50_J7U4L1: ABC-type multidrug transport system, permease component	0.1393797958
+UniRef50_J7U4L1: ABC-type multidrug transport system, permease component|unclassified	0.1393797958
+UniRef50_T1A5I4: Plasmid pRiA4b ORF-3 family protein (Fragment)	0.1393775013
+UniRef50_T1A5I4: Plasmid pRiA4b ORF-3 family protein (Fragment)|unclassified	0.1393775013
+UniRef50_W7QGE9	0.1393696832
+UniRef50_W7QGE9|unclassified	0.1393696832
+UniRef50_Q1AU56: DNA-directed RNA polymerase subunit alpha	0.1393693572
+UniRef50_Q1AU56: DNA-directed RNA polymerase subunit alpha|unclassified	0.1393693572
+UniRef50_UPI000373B743: hypothetical protein	0.1393601277
+UniRef50_UPI000373B743: hypothetical protein|unclassified	0.1393601277
+UniRef50_E1UTD4	0.1393515735
+UniRef50_E1UTD4|unclassified	0.1393515735
+UniRef50_UPI0004783684: ammonia monooxygenase	0.1393486122
+UniRef50_UPI0004783684: ammonia monooxygenase|unclassified	0.1393486122
+UniRef50_V4IZA4	0.1393365977
+UniRef50_V4IZA4|unclassified	0.1393365977
+UniRef50_UPI000262CC5B: nucleotidyl transferase family protein	0.1393234564
+UniRef50_UPI000262CC5B: nucleotidyl transferase family protein|unclassified	0.1393234564
+UniRef50_G6YLR4: NnrS	0.1393230774
+UniRef50_G6YLR4: NnrS|unclassified	0.1393230774
+UniRef50_L8NDK1: LabA-like protein	0.1393109646
+UniRef50_L8NDK1: LabA-like protein|unclassified	0.1393109646
+UniRef50_UPI0003B78CEE: AbrB family transcriptional regulator	0.1393035986
+UniRef50_UPI0003B78CEE: AbrB family transcriptional regulator|unclassified	0.1393035986
+UniRef50_UPI00035EF400: hypothetical protein	0.1393004786
+UniRef50_UPI00035EF400: hypothetical protein|unclassified	0.1393004786
+UniRef50_Q89IB6: Phosphoribosylformylglycinamidine synthase 1	0.1392865405
+UniRef50_Q89IB6: Phosphoribosylformylglycinamidine synthase 1|unclassified	0.1392865405
+UniRef50_UPI0001D2E129: cytochrome o ubiquinol oxidase subunit IV	0.1392767206
+UniRef50_UPI0001D2E129: cytochrome o ubiquinol oxidase subunit IV|unclassified	0.1392767206
+UniRef50_Q9CN96: UPF0260 protein PM0539	0.1392719394
+UniRef50_Q9CN96: UPF0260 protein PM0539|unclassified	0.1392719394
+UniRef50_Q08880: DNA polymerase III subunit epsilon	0.1392714483
+UniRef50_Q08880: DNA polymerase III subunit epsilon|unclassified	0.1392714483
+UniRef50_A0A023X3T3	0.1392713135
+UniRef50_A0A023X3T3|unclassified	0.1392713135
+UniRef50_G3VHK8	0.1392650513
+UniRef50_G3VHK8|unclassified	0.1392650513
+UniRef50_UPI000376A35A: hypothetical protein, partial	0.1392633142
+UniRef50_UPI000376A35A: hypothetical protein, partial|unclassified	0.1392633142
+UniRef50_W7YQJ5: L-serine dehydratase	0.1392505299
+UniRef50_W7YQJ5: L-serine dehydratase|unclassified	0.1392505299
+UniRef50_Z5D0N7	0.1392362209
+UniRef50_Z5D0N7|unclassified	0.1392362209
+UniRef50_P27697: Probable serine/threonine-protein kinase COQ8, mitochondrial	0.1392223498
+UniRef50_P27697: Probable serine/threonine-protein kinase COQ8, mitochondrial|unclassified	0.1392223498
+UniRef50_J1BAF1: Oxidoreductase, aldo/keto reductase domain protein	0.1392163711
+UniRef50_J1BAF1: Oxidoreductase, aldo/keto reductase domain protein|unclassified	0.1392163711
+UniRef50_Q98EG6: Mll4253 protein	0.1392104136
+UniRef50_Q98EG6: Mll4253 protein|unclassified	0.1392104136
+UniRef50_UPI00038154C1: hypothetical protein	0.1392073304
+UniRef50_UPI00038154C1: hypothetical protein|unclassified	0.1392073304
+UniRef50_UPI00019130FE: hypothetical protein, partial	0.1392004998
+UniRef50_UPI00019130FE: hypothetical protein, partial|unclassified	0.1392004998
+UniRef50_V4PBX4	0.1392002825
+UniRef50_V4PBX4|unclassified	0.1392002825
+UniRef50_Q5R110: Holo-[acyl-carrier-protein] synthase	0.1391838719
+UniRef50_Q5R110: Holo-[acyl-carrier-protein] synthase|unclassified	0.1391838719
+UniRef50_Q0AG56: S-adenosylmethionine:tRNA ribosyltransferase-isomerase	0.1391780333
+UniRef50_Q0AG56: S-adenosylmethionine:tRNA ribosyltransferase-isomerase|unclassified	0.1391780333
+UniRef50_A0A059G782	0.1391661633
+UniRef50_A0A059G782|unclassified	0.1391661633
+UniRef50_A6UIU8: IS66 Orf2 family protein	0.1391527756
+UniRef50_A6UIU8: IS66 Orf2 family protein|unclassified	0.1391527756
+UniRef50_M1FGT5: tRNA-(Ms[2]io[6]A)-hydroxylase	0.1391393542
+UniRef50_M1FGT5: tRNA-(Ms[2]io[6]A)-hydroxylase|unclassified	0.1391393542
+UniRef50_Q3AEU3: Uroporphyrinogen decarboxylase	0.1391251789
+UniRef50_Q3AEU3: Uroporphyrinogen decarboxylase|unclassified	0.1391251789
+UniRef50_J3JYQ9	0.1391159882
+UniRef50_J3JYQ9|unclassified	0.1391159882
+UniRef50_UPI00036E2511: hypothetical protein	0.1391127542
+UniRef50_UPI00036E2511: hypothetical protein|unclassified	0.1391127542
+UniRef50_C4ZAL6	0.1391100948
+UniRef50_C4ZAL6|unclassified	0.1391100948
+UniRef50_B2S7Z7: RNA pyrophosphohydrolase	0.1391070644
+UniRef50_B2S7Z7: RNA pyrophosphohydrolase|unclassified	0.1391070644
+UniRef50_U2A9K9	0.1391037665
+UniRef50_U2A9K9|unclassified	0.1391037665
+UniRef50_UPI000367487C: hypothetical protein	0.1391033719
+UniRef50_UPI000367487C: hypothetical protein|unclassified	0.1391033719
+UniRef50_F4H2Z9	0.1391015561
+UniRef50_F4H2Z9|unclassified	0.1391015561
+UniRef50_UPI0003FA9C69: major facilitator transporter	0.1390879615
+UniRef50_UPI0003FA9C69: major facilitator transporter|unclassified	0.1390879615
+UniRef50_UPI000273DB8A	0.1390876998
+UniRef50_UPI000273DB8A|unclassified	0.1390876998
+UniRef50_UPI0004782022: peptide ABC transporter permease	0.1390762888
+UniRef50_UPI0004782022: peptide ABC transporter permease|unclassified	0.1390762888
+UniRef50_UPI0003B56FA7: peptidase U35	0.1390742144
+UniRef50_UPI0003B56FA7: peptidase U35|unclassified	0.1390742144
+UniRef50_UPI0003701E96: MULTISPECIES: hypothetical protein	0.1389986479
+UniRef50_UPI0003701E96: MULTISPECIES: hypothetical protein|unclassified	0.1389986479
+UniRef50_F8IMA6: Transposase	0.1389962907
+UniRef50_F8IMA6: Transposase|unclassified	0.1389962907
+UniRef50_Q5AG45	0.1389891649
+UniRef50_Q5AG45|unclassified	0.1389891649
+UniRef50_UPI0004720A76: 3-oxoadipate:succinyl-CoA transferase	0.1389859000
+UniRef50_UPI0004720A76: 3-oxoadipate:succinyl-CoA transferase|unclassified	0.1389859000
+UniRef50_C3YAX6	0.1389781100
+UniRef50_C3YAX6|unclassified	0.1389781100
+UniRef50_UPI00037E168E: hypothetical protein	0.1389763337
+UniRef50_UPI00037E168E: hypothetical protein|unclassified	0.1389763337
+UniRef50_D8LMK0	0.1389643121
+UniRef50_D8LMK0|unclassified	0.1389643121
+UniRef50_UPI0004707893: gluconate transporter	0.1389560179
+UniRef50_UPI0004707893: gluconate transporter|unclassified	0.1389560179
+UniRef50_L7WZ12: RND efflux transporter	0.1389493838
+UniRef50_L7WZ12: RND efflux transporter|unclassified	0.1389493838
+UniRef50_S4R8B6	0.1389474146
+UniRef50_S4R8B6|unclassified	0.1389474146
+UniRef50_UPI000424F2DF: hypothetical protein	0.1389470927
+UniRef50_UPI000424F2DF: hypothetical protein|unclassified	0.1389470927
+UniRef50_UPI0002036974: PREDICTED: peptide methionine sulfoxide reductase msrA-like	0.1389419355
+UniRef50_UPI0002036974: PREDICTED: peptide methionine sulfoxide reductase msrA-like|unclassified	0.1389419355
+UniRef50_K1DYQ3: Dipeptide ABC transporter periplasmic protein	0.1389384382
+UniRef50_K1DYQ3: Dipeptide ABC transporter periplasmic protein|unclassified	0.1389384382
+UniRef50_R7HDA7	0.1389379972
+UniRef50_R7HDA7|unclassified	0.1389379972
+UniRef50_UPI0003F88D67: hypothetical protein	0.1389288725
+UniRef50_UPI0003F88D67: hypothetical protein|unclassified	0.1389288725
+UniRef50_UPI0004715F2C: ATP-dependent DNA helicase RecQ	0.1389243623
+UniRef50_UPI0004715F2C: ATP-dependent DNA helicase RecQ|unclassified	0.1389243623
+UniRef50_UPI0001745DE2: iojap-like protein	0.1389118804
+UniRef50_UPI0001745DE2: iojap-like protein|unclassified	0.1389118804
+UniRef50_UPI000475FEFF: FAD-binding protein	0.1388997048
+UniRef50_UPI000475FEFF: FAD-binding protein|unclassified	0.1388997048
+UniRef50_U6M452	0.1388888889
+UniRef50_U6M452|unclassified	0.1388888889
+UniRef50_W6RIP4	0.1388817367
+UniRef50_W6RIP4|unclassified	0.1388817367
+UniRef50_K0B3T0: Biotin biosynthesis protein BioX	0.1388770792
+UniRef50_K0B3T0: Biotin biosynthesis protein BioX|unclassified	0.1388770792
+UniRef50_Q1GJB3: Protein NrdI	0.1388646572
+UniRef50_Q1GJB3: Protein NrdI|unclassified	0.1388646572
+UniRef50_UPI00040E8046: hypothetical protein	0.1388627704
+UniRef50_UPI00040E8046: hypothetical protein|unclassified	0.1388627704
+UniRef50_UPI0002DBC754: hypothetical protein	0.1388603509
+UniRef50_UPI0002DBC754: hypothetical protein|unclassified	0.1388603509
+UniRef50_UPI00046D4F30: hypothetical protein	0.1388588568
+UniRef50_UPI00046D4F30: hypothetical protein|unclassified	0.1388588568
+UniRef50_UPI0003690223: hypothetical protein	0.1388565840
+UniRef50_UPI0003690223: hypothetical protein|unclassified	0.1388565840
+UniRef50_UPI000395A213: ABC transporter substrate-binding protein	0.1388502786
+UniRef50_UPI000395A213: ABC transporter substrate-binding protein|unclassified	0.1388502786
+UniRef50_UPI0003956071: PREDICTED: NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial	0.1388460386
+UniRef50_UPI0003956071: PREDICTED: NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial|unclassified	0.1388460386
+UniRef50_U7A277	0.1388292689
+UniRef50_U7A277|unclassified	0.1388292689
+UniRef50_J3XF98: Response regulator aspartate phosphatase	0.1388262009
+UniRef50_J3XF98: Response regulator aspartate phosphatase|unclassified	0.1388262009
+UniRef50_UPI000465952B: membane protease HflC	0.1388182530
+UniRef50_UPI000465952B: membane protease HflC|unclassified	0.1388182530
+UniRef50_UPI0003746865: hypothetical protein	0.1388154592
+UniRef50_UPI0003746865: hypothetical protein|unclassified	0.1388154592
+UniRef50_X1CK96: Marine sediment metagenome DNA, contig: S01H4_S07070 (Fragment)	0.1388129422
+UniRef50_X1CK96: Marine sediment metagenome DNA, contig: S01H4_S07070 (Fragment)|unclassified	0.1388129422
+UniRef50_UPI0004663F53: hypothetical protein	0.1388105356
+UniRef50_UPI0004663F53: hypothetical protein|unclassified	0.1388105356
+UniRef50_B8H089: SOUL domain heme-binding protein	0.1388021439
+UniRef50_B8H089: SOUL domain heme-binding protein|unclassified	0.1388021439
+UniRef50_UPI0003FAD082: hypothetical protein	0.1388002629
+UniRef50_UPI0003FAD082: hypothetical protein|unclassified	0.1388002629
+UniRef50_K0T111	0.1387946658
+UniRef50_K0T111|unclassified	0.1387946658
+UniRef50_X2HCW4: Lipoprotein, putative	0.1387931645
+UniRef50_X2HCW4: Lipoprotein, putative|unclassified	0.1387931645
+UniRef50_UPI0003EC17DE: PREDICTED: methionine synthase-like	0.1387836371
+UniRef50_UPI0003EC17DE: PREDICTED: methionine synthase-like|unclassified	0.1387836371
+UniRef50_UPI0003114B76: hypothetical protein	0.1387780808
+UniRef50_UPI0003114B76: hypothetical protein|unclassified	0.1387780808
+UniRef50_D0HVP8: MazG protein	0.1387763480
+UniRef50_D0HVP8: MazG protein|unclassified	0.1387763480
+UniRef50_H5V0C2: Prepilin peptidase-dependent protein B	0.1387693525
+UniRef50_H5V0C2: Prepilin peptidase-dependent protein B|unclassified	0.1387693525
+UniRef50_F4PJS9	0.1387640519
+UniRef50_F4PJS9|unclassified	0.1387640519
+UniRef50_UPI000466FA22: hypothetical protein	0.1387517684
+UniRef50_UPI000466FA22: hypothetical protein|unclassified	0.1387517684
+UniRef50_P44434: Histidine biosynthesis bifunctional protein HisIE	0.1387230921
+UniRef50_P44434: Histidine biosynthesis bifunctional protein HisIE|unclassified	0.1387230921
+UniRef50_UPI00036718DA: hypothetical protein	0.1387171912
+UniRef50_UPI00036718DA: hypothetical protein|unclassified	0.1387171912
+UniRef50_UPI0003820D7B: hypothetical protein	0.1387090671
+UniRef50_UPI0003820D7B: hypothetical protein|unclassified	0.1387090671
+UniRef50_S6L323: Tfp pilus assembly protein PilX-like protein	0.1387039741
+UniRef50_S6L323: Tfp pilus assembly protein PilX-like protein|unclassified	0.1387039741
+UniRef50_UPI000348E813: beta-lactamase	0.1386771028
+UniRef50_UPI000348E813: beta-lactamase|unclassified	0.1386771028
+UniRef50_D2T5I5	0.1386745166
+UniRef50_D2T5I5|unclassified	0.1386745166
+UniRef50_S2QYX1: Transcriptional accessory protein	0.1386666976
+UniRef50_S2QYX1: Transcriptional accessory protein|unclassified	0.1386666976
+UniRef50_U3K3X9	0.1386510108
+UniRef50_U3K3X9|unclassified	0.1386510108
+UniRef50_UPI0002EA5586: hypothetical protein	0.1386465593
+UniRef50_UPI0002EA5586: hypothetical protein|unclassified	0.1386465593
+UniRef50_O41971	0.1386420452
+UniRef50_O41971|unclassified	0.1386420452
+UniRef50_K2BSH5: YvcK (Fragment)	0.1386396988
+UniRef50_K2BSH5: YvcK (Fragment)|unclassified	0.1386396988
+UniRef50_A7H6S8: Chorismate synthase	0.1386323166
+UniRef50_A7H6S8: Chorismate synthase|unclassified	0.1386323166
+UniRef50_UPI00045E814C: molybdenum cofactor biosynthesis protein MoaA	0.1386278441
+UniRef50_UPI00045E814C: molybdenum cofactor biosynthesis protein MoaA|unclassified	0.1386278441
+UniRef50_O83293: Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB	0.1386202245
+UniRef50_O83293: Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB|unclassified	0.1386202245
+UniRef50_U1KF16	0.1385992363
+UniRef50_U1KF16|unclassified	0.1385992363
+UniRef50_A0A034K393	0.1385977617
+UniRef50_A0A034K393|unclassified	0.1385977617
+UniRef50_UPI0003775D8A: hypothetical protein	0.1385944857
+UniRef50_UPI0003775D8A: hypothetical protein|unclassified	0.1385944857
+UniRef50_P9WGB4: O-succinylhomoserine sulfhydrylase	0.1385872717
+UniRef50_P9WGB4: O-succinylhomoserine sulfhydrylase|unclassified	0.1385872717
+UniRef50_UPI00046CD945: hypothetical protein	0.1385868445
+UniRef50_UPI00046CD945: hypothetical protein|unclassified	0.1385868445
+UniRef50_UPI00047026FA: hypothetical protein	0.1385839276
+UniRef50_UPI00047026FA: hypothetical protein|unclassified	0.1385839276
+UniRef50_U2SYT7	0.1385531713
+UniRef50_U2SYT7|unclassified	0.1385531713
+UniRef50_UPI0004156576: MULTISPECIES: general secretion pathway protein GspI	0.1385476264
+UniRef50_UPI0004156576: MULTISPECIES: general secretion pathway protein GspI|unclassified	0.1385476264
+UniRef50_UPI00040687FC: hypothetical protein	0.1385402846
+UniRef50_UPI00040687FC: hypothetical protein|unclassified	0.1385402846
+UniRef50_UPI00047E8469: RNA-binding protein S4	0.1385329859
+UniRef50_UPI00047E8469: RNA-binding protein S4|unclassified	0.1385329859
+UniRef50_Q9EYV3: Orotidine 5'-phosphate decarboxylase	0.1385293598
+UniRef50_Q9EYV3: Orotidine 5'-phosphate decarboxylase|unclassified	0.1385293598
+UniRef50_UPI000401E192: hypothetical protein	0.1385281536
+UniRef50_UPI000401E192: hypothetical protein|unclassified	0.1385281536
+UniRef50_UPI000252B72D	0.1385244732
+UniRef50_UPI000252B72D|unclassified	0.1385244732
+UniRef50_X1BPY3: Marine sediment metagenome DNA, contig: S01H4_S04302 (Fragment)	0.1385123170
+UniRef50_X1BPY3: Marine sediment metagenome DNA, contig: S01H4_S04302 (Fragment)|unclassified	0.1385123170
+UniRef50_UPI00016AB558: major facilitator family transporter, partial	0.1385119581
+UniRef50_UPI00016AB558: major facilitator family transporter, partial|unclassified	0.1385119581
+UniRef50_W4K286	0.1385052790
+UniRef50_W4K286|unclassified	0.1385052790
+UniRef50_UPI00047785F0: cyclase	0.1385036279
+UniRef50_UPI00047785F0: cyclase|unclassified	0.1385036279
+UniRef50_V6Z2R1: Competence protein	0.1385033730
+UniRef50_V6Z2R1: Competence protein|unclassified	0.1385033730
+UniRef50_G7UQ58: GIY-YIG nuclease superfamily protein	0.1384974657
+UniRef50_G7UQ58: GIY-YIG nuclease superfamily protein|unclassified	0.1384974657
+UniRef50_UPI0002F20618: hypothetical protein	0.1384918450
+UniRef50_UPI0002F20618: hypothetical protein|unclassified	0.1384918450
+UniRef50_R5SSW0	0.1384901227
+UniRef50_R5SSW0|unclassified	0.1384901227
+UniRef50_Q74IP8: Ribonuclease 3	0.1384760433
+UniRef50_Q74IP8: Ribonuclease 3|unclassified	0.1384760433
+UniRef50_UPI0003B524CB: hypothetical protein	0.1384747698
+UniRef50_UPI0003B524CB: hypothetical protein|unclassified	0.1384747698
+UniRef50_M4JR52: Fructose-bisphosphate aldolase class II	0.1384677237
+UniRef50_M4JR52: Fructose-bisphosphate aldolase class II|unclassified	0.1384677237
+UniRef50_UPI0003A9894A: peptidase M22	0.1384648059
+UniRef50_UPI0003A9894A: peptidase M22|unclassified	0.1384648059
+UniRef50_W0NHR5: Replication initiation protein	0.1384508677
+UniRef50_W0NHR5: Replication initiation protein|unclassified	0.1384508677
+UniRef50_B6ATW4: Thioesterase superfamily	0.1384462155
+UniRef50_B6ATW4: Thioesterase superfamily|unclassified	0.1384462155
+UniRef50_UPI0003704CF4: hypothetical protein	0.1384373371
+UniRef50_UPI0003704CF4: hypothetical protein|unclassified	0.1384373371
+UniRef50_UPI0002886E96: bioY family protein	0.1384350051
+UniRef50_UPI0002886E96: bioY family protein|unclassified	0.1384350051
+UniRef50_V5PB64: Ribonuclease PH	0.1384342430
+UniRef50_V5PB64: Ribonuclease PH|unclassified	0.1384342430
+UniRef50_B4RCU4: Ribonuclease 3	0.1384081236
+UniRef50_B4RCU4: Ribonuclease 3|unclassified	0.1384081236
+UniRef50_UPI000428D882: chemotaxis protein	0.1383961672
+UniRef50_UPI000428D882: chemotaxis protein|unclassified	0.1383961672
+UniRef50_UPI000479C781: hypothetical protein	0.1383702730
+UniRef50_UPI000479C781: hypothetical protein|unclassified	0.1383702730
+UniRef50_UPI0003B6979D: thioredoxin reductase	0.1383323270
+UniRef50_UPI0003B6979D: thioredoxin reductase|unclassified	0.1383323270
+UniRef50_Q9X2I8: Glutamate--tRNA ligase 2	0.1383252105
+UniRef50_Q9X2I8: Glutamate--tRNA ligase 2|unclassified	0.1383252105
+UniRef50_K0R889	0.1383226131
+UniRef50_K0R889|unclassified	0.1383226131
+UniRef50_A3WYF9: Putative FecR	0.1382933270
+UniRef50_A3WYF9: Putative FecR|unclassified	0.1382933270
+UniRef50_C2SBV8	0.1382909190
+UniRef50_C2SBV8|unclassified	0.1382909190
+UniRef50_Q28PK5: Guanylate kinase	0.1382894014
+UniRef50_Q28PK5: Guanylate kinase|unclassified	0.1382894014
+UniRef50_M0Q4N8: Phage shock protein C	0.1382874408
+UniRef50_M0Q4N8: Phage shock protein C|unclassified	0.1382874408
+UniRef50_A1WXS8: Phosphoribosyl-AMP cyclohydrolase	0.1382863880
+UniRef50_A1WXS8: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.1382863880
+UniRef50_I0UAY5: Glucitol/sorbitol operon activator protein, gutM family	0.1382817797
+UniRef50_I0UAY5: Glucitol/sorbitol operon activator protein, gutM family|unclassified	0.1382817797
+UniRef50_B7VQP3: NH(3)-dependent NAD(+) synthetase	0.1382804778
+UniRef50_B7VQP3: NH(3)-dependent NAD(+) synthetase|unclassified	0.1382804778
+UniRef50_S9QNY9	0.1382747304
+UniRef50_S9QNY9|unclassified	0.1382747304
+UniRef50_UPI0003697C7E: hypothetical protein	0.1382726995
+UniRef50_UPI0003697C7E: hypothetical protein|unclassified	0.1382726995
+UniRef50_UPI0004696A10: tRNA hydroxylase	0.1382446665
+UniRef50_UPI0004696A10: tRNA hydroxylase|unclassified	0.1382446665
+UniRef50_V8B4F2	0.1382419776
+UniRef50_V8B4F2|unclassified	0.1382419776
+UniRef50_Q65DQ3: Putative heme-dependent peroxidase BLi03998	0.1382353586
+UniRef50_Q65DQ3: Putative heme-dependent peroxidase BLi03998|unclassified	0.1382353586
+UniRef50_A0A037ZP84	0.1382337680
+UniRef50_A0A037ZP84|unclassified	0.1382337680
+UniRef50_R7X640: ATPase	0.1382269760
+UniRef50_R7X640: ATPase|unclassified	0.1382269760
+UniRef50_C1D8A6: D-ribose pyranase	0.1382115900
+UniRef50_C1D8A6: D-ribose pyranase|unclassified	0.1382115900
+UniRef50_A7Z5S1: Peptide methionine sulfoxide reductase MsrB	0.1382103946
+UniRef50_A7Z5S1: Peptide methionine sulfoxide reductase MsrB|unclassified	0.1382103946
+UniRef50_UPI0003FCB399: hypothetical protein	0.1382066969
+UniRef50_UPI0003FCB399: hypothetical protein|unclassified	0.1382066969
+UniRef50_V9VQG9: Zinc-finger protein	0.1382049846
+UniRef50_V9VQG9: Zinc-finger protein|unclassified	0.1382049846
+UniRef50_UPI00046FA912: ABC transporter substrate-binding protein, partial	0.1381997070
+UniRef50_UPI00046FA912: ABC transporter substrate-binding protein, partial|unclassified	0.1381997070
+UniRef50_UPI000466A147: hypothetical protein	0.1381849185
+UniRef50_UPI000466A147: hypothetical protein|unclassified	0.1381849185
+UniRef50_I0KVQ6	0.1381825457
+UniRef50_I0KVQ6|unclassified	0.1381825457
+UniRef50_Q7U0N5: Fructose-1,6-bisphosphatase class 2	0.1381775538
+UniRef50_Q7U0N5: Fructose-1,6-bisphosphatase class 2|unclassified	0.1381775538
+UniRef50_A9BIU9: Adenine deaminase	0.1381722698
+UniRef50_A9BIU9: Adenine deaminase|unclassified	0.1381722698
+UniRef50_UPI0003661A78: hypothetical protein	0.1381711777
+UniRef50_UPI0003661A78: hypothetical protein|unclassified	0.1381711777
+UniRef50_UPI00047A6B44: hypothetical protein	0.1381682491
+UniRef50_UPI00047A6B44: hypothetical protein|unclassified	0.1381682491
+UniRef50_L9RZI8	0.1381600113
+UniRef50_L9RZI8|unclassified	0.1381600113
+UniRef50_D3QHE2	0.1381578913
+UniRef50_D3QHE2|unclassified	0.1381578913
+UniRef50_J5PL88: Rubredoxin	0.1381341781
+UniRef50_J5PL88: Rubredoxin|unclassified	0.1381341781
+UniRef50_UPI000255683A: hypothetical protein	0.1381321747
+UniRef50_UPI000255683A: hypothetical protein|unclassified	0.1381321747
+UniRef50_UPI000463C82A: aldehyde reductase	0.1381307950
+UniRef50_UPI000463C82A: aldehyde reductase|unclassified	0.1381307950
+UniRef50_UPI00047BA782: major facilitator transporter	0.1381265903
+UniRef50_UPI00047BA782: major facilitator transporter|unclassified	0.1381265903
+UniRef50_UPI0004754557: gluconate kinase	0.1381025909
+UniRef50_UPI0004754557: gluconate kinase|unclassified	0.1381025909
+UniRef50_K1GXU1: UPF0225 protein	0.1380949993
+UniRef50_K1GXU1: UPF0225 protein|unclassified	0.1380949993
+UniRef50_N6YNZ6: Thioesterase superfamily protein	0.1380876431
+UniRef50_N6YNZ6: Thioesterase superfamily protein|unclassified	0.1380876431
+UniRef50_Q0BZZ7: Leucyl/phenylalanyl-tRNA--protein transferase	0.1380849335
+UniRef50_Q0BZZ7: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.1380849335
+UniRef50_UPI0004283D17: hypothetical protein	0.1380848899
+UniRef50_UPI0004283D17: hypothetical protein|unclassified	0.1380848899
+UniRef50_UPI000377FC08: LuxR family transcriptional regulator	0.1380844775
+UniRef50_UPI000377FC08: LuxR family transcriptional regulator|unclassified	0.1380844775
+UniRef50_K8C1N9: TRAP-type C4-dicarboxylate transport system,large permease component	0.1380814398
+UniRef50_K8C1N9: TRAP-type C4-dicarboxylate transport system,large permease component|unclassified	0.1380814398
+UniRef50_G3BCN3	0.1380800627
+UniRef50_G3BCN3|unclassified	0.1380800627
+UniRef50_UPI0002882CC1: biopolymer transporter TolR	0.1380767864
+UniRef50_UPI0002882CC1: biopolymer transporter TolR|unclassified	0.1380767864
+UniRef50_UPI0003B4F0F2: hypothetical protein	0.1380743849
+UniRef50_UPI0003B4F0F2: hypothetical protein|unclassified	0.1380743849
+UniRef50_UPI00016AC2B6: putative ABC transporter, permease protein, partial	0.1380695026
+UniRef50_UPI00016AC2B6: putative ABC transporter, permease protein, partial|unclassified	0.1380695026
+UniRef50_UPI00037918AC: hypothetical protein	0.1380502280
+UniRef50_UPI00037918AC: hypothetical protein|unclassified	0.1380502280
+UniRef50_Q09AC4	0.1380457303
+UniRef50_Q09AC4|unclassified	0.1380457303
+UniRef50_UPI0004785D8D: hypothetical protein	0.1380153201
+UniRef50_UPI0004785D8D: hypothetical protein|unclassified	0.1380153201
+UniRef50_UPI00036034F2: hypothetical protein	0.1380129973
+UniRef50_UPI00036034F2: hypothetical protein|unclassified	0.1380129973
+UniRef50_UPI000478621D: hypothetical protein	0.1380073927
+UniRef50_UPI000478621D: hypothetical protein|unclassified	0.1380073927
+UniRef50_V7IMI7: Sugar-binding domain protein	0.1379945864
+UniRef50_V7IMI7: Sugar-binding domain protein|unclassified	0.1379945864
+UniRef50_UPI000473AECE: 4-alpha-glucanotransferase	0.1379838182
+UniRef50_UPI000473AECE: 4-alpha-glucanotransferase|unclassified	0.1379838182
+UniRef50_UPI0004075F22: hypothetical protein	0.1379830606
+UniRef50_UPI0004075F22: hypothetical protein|unclassified	0.1379830606
+UniRef50_UPI000376B206: hypothetical protein	0.1379816646
+UniRef50_UPI000376B206: hypothetical protein|unclassified	0.1379816646
+UniRef50_M2PRH7: DNA topology modulation protein	0.1379780220
+UniRef50_M2PRH7: DNA topology modulation protein|unclassified	0.1379780220
+UniRef50_UPI000287BDFA: ATPase	0.1379711319
+UniRef50_UPI000287BDFA: ATPase|unclassified	0.1379711319
+UniRef50_A0A023CUC6: Cystathionine beta-synthase	0.1379623560
+UniRef50_A0A023CUC6: Cystathionine beta-synthase|unclassified	0.1379623560
+UniRef50_UPI0000E25499	0.1379464392
+UniRef50_UPI0000E25499|unclassified	0.1379464392
+UniRef50_A3SMT4	0.1379375099
+UniRef50_A3SMT4|unclassified	0.1379375099
+UniRef50_UPI000463035D: hypothetical protein	0.1379312057
+UniRef50_UPI000463035D: hypothetical protein|unclassified	0.1379312057
+UniRef50_UPI0003828BB7: hypothetical protein, partial	0.1379196223
+UniRef50_UPI0003828BB7: hypothetical protein, partial|unclassified	0.1379196223
+UniRef50_UPI00036A287C: hypothetical protein	0.1379170792
+UniRef50_UPI00036A287C: hypothetical protein|unclassified	0.1379170792
+UniRef50_M3YNX9	0.1379168273
+UniRef50_M3YNX9|unclassified	0.1379168273
+UniRef50_X2LYU6	0.1379134418
+UniRef50_X2LYU6|unclassified	0.1379134418
+UniRef50_UPI000463660E: hypothetical protein	0.1379024209
+UniRef50_UPI000463660E: hypothetical protein|unclassified	0.1379024209
+UniRef50_G9ZWE5	0.1378985738
+UniRef50_G9ZWE5|unclassified	0.1378985738
+UniRef50_UPI0004705C07: hypothetical protein	0.1378708376
+UniRef50_UPI0004705C07: hypothetical protein|unclassified	0.1378708376
+UniRef50_A3CTF1: Nucleoside diphosphate kinase	0.1378604569
+UniRef50_A3CTF1: Nucleoside diphosphate kinase|unclassified	0.1378604569
+UniRef50_H1G027	0.1378567657
+UniRef50_H1G027|unclassified	0.1378567657
+UniRef50_A8GES6: D-serine dehydratase	0.1378510371
+UniRef50_A8GES6: D-serine dehydratase|unclassified	0.1378510371
+UniRef50_A0QRG8: GDP-mannose-dependent alpha-mannosyltransferase	0.1378363693
+UniRef50_A0QRG8: GDP-mannose-dependent alpha-mannosyltransferase|unclassified	0.1378363693
+UniRef50_UPI00035C9549: hypothetical protein	0.1378321381
+UniRef50_UPI00035C9549: hypothetical protein|unclassified	0.1378321381
+UniRef50_UPI00037F5AC8: hypothetical protein	0.1378310721
+UniRef50_UPI00037F5AC8: hypothetical protein|unclassified	0.1378310721
+UniRef50_A6L2R5: L-arabinose isomerase	0.1378274931
+UniRef50_A6L2R5: L-arabinose isomerase|unclassified	0.1378274931
+UniRef50_Q67NU0: Cytidylate kinase	0.1378231689
+UniRef50_Q67NU0: Cytidylate kinase|unclassified	0.1378231689
+UniRef50_U6IFI6: Succinate dehydrogenase (Ubiquinone) iron sulfur	0.1378204385
+UniRef50_U6IFI6: Succinate dehydrogenase (Ubiquinone) iron sulfur|unclassified	0.1378204385
+UniRef50_K5Z7S6	0.1378186182
+UniRef50_K5Z7S6|unclassified	0.1378186182
+UniRef50_UPI00047043AC: hypothetical protein	0.1378031878
+UniRef50_UPI00047043AC: hypothetical protein|unclassified	0.1378031878
+UniRef50_M0KG12	0.1377695956
+UniRef50_M0KG12|unclassified	0.1377695956
+UniRef50_UPI0003062627: hypothetical protein	0.1377649503
+UniRef50_UPI0003062627: hypothetical protein|unclassified	0.1377649503
+UniRef50_X1VHG5: Marine sediment metagenome DNA, contig: S12H4_S20726 (Fragment)	0.1377544288
+UniRef50_X1VHG5: Marine sediment metagenome DNA, contig: S12H4_S20726 (Fragment)|unclassified	0.1377544288
+UniRef50_A0A023XBC4: Heat shock protein	0.1377301523
+UniRef50_A0A023XBC4: Heat shock protein|unclassified	0.1377301523
+UniRef50_UPI00038096BE: hypothetical protein	0.1377265115
+UniRef50_UPI00038096BE: hypothetical protein|unclassified	0.1377265115
+UniRef50_UPI000474B1BB: endonuclease	0.1377261470
+UniRef50_UPI000474B1BB: endonuclease|unclassified	0.1377261470
+UniRef50_A5N7H7: Elongation factor P	0.1377256438
+UniRef50_A5N7H7: Elongation factor P|unclassified	0.1377256438
+UniRef50_UPI00037820E1: hypothetical protein	0.1377249822
+UniRef50_UPI00037820E1: hypothetical protein|unclassified	0.1377249822
+UniRef50_UPI000346F2C3: hypothetical protein	0.1377223682
+UniRef50_UPI000346F2C3: hypothetical protein|unclassified	0.1377223682
+UniRef50_UPI00037EAB28: hypothetical protein	0.1376934286
+UniRef50_UPI00037EAB28: hypothetical protein|unclassified	0.1376934286
+UniRef50_UPI00036B0F2C: hypothetical protein	0.1376862164
+UniRef50_UPI00036B0F2C: hypothetical protein|unclassified	0.1376862164
+UniRef50_UPI00047987B6: hypothetical protein	0.1376739342
+UniRef50_UPI00047987B6: hypothetical protein|unclassified	0.1376739342
+UniRef50_F9YBY3	0.1376594894
+UniRef50_F9YBY3|unclassified	0.1376594894
+UniRef50_A4BC43	0.1376377195
+UniRef50_A4BC43|unclassified	0.1376377195
+UniRef50_D5E2Q6	0.1376368785
+UniRef50_D5E2Q6|unclassified	0.1376368785
+UniRef50_G9ZW36	0.1376247855
+UniRef50_G9ZW36|unclassified	0.1376247855
+UniRef50_UPI00045E7816: hypothetical protein	0.1376232268
+UniRef50_UPI00045E7816: hypothetical protein|unclassified	0.1376232268
+UniRef50_L7VR70: ABC-type transport system involved in resistance to organic solvents, auxiliary component	0.1376215967
+UniRef50_L7VR70: ABC-type transport system involved in resistance to organic solvents, auxiliary component|unclassified	0.1376215967
+UniRef50_UPI00046413C1: hypothetical protein	0.1376208376
+UniRef50_UPI00046413C1: hypothetical protein|unclassified	0.1376208376
+UniRef50_H8L2K1: Phage-related baseplate assembly protein	0.1375960683
+UniRef50_H8L2K1: Phage-related baseplate assembly protein|unclassified	0.1375960683
+UniRef50_UPI000380F022: hypothetical protein	0.1375958355
+UniRef50_UPI000380F022: hypothetical protein|unclassified	0.1375958355
+UniRef50_Q4L6V5: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.1375924051
+UniRef50_Q4L6V5: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.1375924051
+UniRef50_X1NTG9: Marine sediment metagenome DNA, contig: S06H3_S02183 (Fragment)	0.1375870691
+UniRef50_X1NTG9: Marine sediment metagenome DNA, contig: S06H3_S02183 (Fragment)|unclassified	0.1375870691
+UniRef50_UPI0002559D36: D-mannonate oxidoreductase	0.1375781560
+UniRef50_UPI0002559D36: D-mannonate oxidoreductase|unclassified	0.1375781560
+UniRef50_V4ISG8	0.1375776547
+UniRef50_V4ISG8|unclassified	0.1375776547
+UniRef50_Q09BH0	0.1375680141
+UniRef50_Q09BH0|unclassified	0.1375680141
+UniRef50_UPI0003657C17: hypothetical protein, partial	0.1375656190
+UniRef50_UPI0003657C17: hypothetical protein, partial|unclassified	0.1375656190
+UniRef50_UPI00047AAF7D: hypothetical protein, partial	0.1375561410
+UniRef50_UPI00047AAF7D: hypothetical protein, partial|unclassified	0.1375561410
+UniRef50_Q9RYM9	0.1375546875
+UniRef50_Q9RYM9|unclassified	0.1375546875
+UniRef50_UPI00039575E7: LysR family transcriptional regulator	0.1375532307
+UniRef50_UPI00039575E7: LysR family transcriptional regulator|unclassified	0.1375532307
+UniRef50_UPI0003774A72: hypothetical protein	0.1375430159
+UniRef50_UPI0003774A72: hypothetical protein|unclassified	0.1375430159
+UniRef50_D9QJI4: MaoC domain protein dehydratase	0.1375121368
+UniRef50_D9QJI4: MaoC domain protein dehydratase|unclassified	0.1375121368
+UniRef50_C7J669: Os08g0229701 protein	0.1375092236
+UniRef50_C7J669: Os08g0229701 protein|unclassified	0.1375092236
+UniRef50_UPI000368C1C4: hypothetical protein	0.1375027489
+UniRef50_UPI000368C1C4: hypothetical protein|unclassified	0.1375027489
+UniRef50_UPI000347E3AB: sodium:alanine symporter	0.1374849152
+UniRef50_UPI000347E3AB: sodium:alanine symporter|unclassified	0.1374849152
+UniRef50_H2JQ73	0.1374774936
+UniRef50_H2JQ73|unclassified	0.1374774936
+UniRef50_Q9T189: Gp35	0.1374755012
+UniRef50_Q9T189: Gp35|unclassified	0.1374755012
+UniRef50_K1WM50	0.1374611370
+UniRef50_K1WM50|unclassified	0.1374611370
+UniRef50_UPI000382A6D1: hypothetical protein	0.1374567791
+UniRef50_UPI000382A6D1: hypothetical protein|unclassified	0.1374567791
+UniRef50_UPI0002E8829E: hypothetical protein	0.1374563429
+UniRef50_UPI0002E8829E: hypothetical protein|unclassified	0.1374563429
+UniRef50_UPI0003F76B26: transcriptional regulator	0.1374508920
+UniRef50_UPI0003F76B26: transcriptional regulator|unclassified	0.1374508920
+UniRef50_Q5F6G1: UPF0213 protein NGO1598	0.1374434664
+UniRef50_Q5F6G1: UPF0213 protein NGO1598|unclassified	0.1374434664
+UniRef50_D2ZMW6	0.1374405055
+UniRef50_D2ZMW6|unclassified	0.1374405055
+UniRef50_UPI0004776F8A: hypothetical protein	0.1374313536
+UniRef50_UPI0004776F8A: hypothetical protein|unclassified	0.1374313536
+UniRef50_H0RQG8: Putative GDP-fucose synthetase	0.1374245884
+UniRef50_H0RQG8: Putative GDP-fucose synthetase|unclassified	0.1374245884
+UniRef50_E4PLW9	0.1374221949
+UniRef50_E4PLW9|unclassified	0.1374221949
+UniRef50_D2VS44: Predicted protein	0.1373794308
+UniRef50_D2VS44: Predicted protein|unclassified	0.1373794308
+UniRef50_Q02XM8: D-ribose pyranase	0.1373769458
+UniRef50_Q02XM8: D-ribose pyranase|unclassified	0.1373769458
+UniRef50_Q1YDL9	0.1373658952
+UniRef50_Q1YDL9|unclassified	0.1373658952
+UniRef50_W1FYR9: Probable exported protein YPO4070	0.1373622369
+UniRef50_W1FYR9: Probable exported protein YPO4070|unclassified	0.1373622369
+UniRef50_X0XCM7: Marine sediment metagenome DNA, contig: S01H1_S25428	0.1373615327
+UniRef50_X0XCM7: Marine sediment metagenome DNA, contig: S01H1_S25428|unclassified	0.1373615327
+UniRef50_I0IJ24	0.1373482489
+UniRef50_I0IJ24|unclassified	0.1373482489
+UniRef50_UPI0003739377: hypothetical protein	0.1373446876
+UniRef50_UPI0003739377: hypothetical protein|unclassified	0.1373446876
+UniRef50_UPI00047A14E1: hypothetical protein, partial	0.1373433043
+UniRef50_UPI00047A14E1: hypothetical protein, partial|unclassified	0.1373433043
+UniRef50_A8ZUH7: Holliday junction ATP-dependent DNA helicase RuvB	0.1373364184
+UniRef50_A8ZUH7: Holliday junction ATP-dependent DNA helicase RuvB|unclassified	0.1373364184
+UniRef50_F3G5K6: GGDEF domain-containing protein (Fragment)	0.1373343834
+UniRef50_F3G5K6: GGDEF domain-containing protein (Fragment)|unclassified	0.1373343834
+UniRef50_D6WX52	0.1373187133
+UniRef50_D6WX52|unclassified	0.1373187133
+UniRef50_A3P6S9: NH(3)-dependent NAD(+) synthetase	0.1373077117
+UniRef50_A3P6S9: NH(3)-dependent NAD(+) synthetase|unclassified	0.1373077117
+UniRef50_UPI0002DAD5B4: hypothetical protein	0.1373022865
+UniRef50_UPI0002DAD5B4: hypothetical protein|unclassified	0.1373022865
+UniRef50_UPI00047C4A63: hypothetical protein	0.1372959854
+UniRef50_UPI00047C4A63: hypothetical protein|unclassified	0.1372959854
+UniRef50_UPI000478C895: xylulose kinase	0.1372879310
+UniRef50_UPI000478C895: xylulose kinase|unclassified	0.1372879310
+UniRef50_C9JF41: Transcription cofactor HES-6 (Fragment)	0.1372841808
+UniRef50_C9JF41: Transcription cofactor HES-6 (Fragment)|unclassified	0.1372841808
+UniRef50_A7SK30: Predicted protein	0.1372802280
+UniRef50_A7SK30: Predicted protein|unclassified	0.1372802280
+UniRef50_UPI000348EBB4: hypothetical protein	0.1372714492
+UniRef50_UPI000348EBB4: hypothetical protein|unclassified	0.1372714492
+UniRef50_UPI0003725ACF: MULTISPECIES: hypothetical protein	0.1372668012
+UniRef50_UPI0003725ACF: MULTISPECIES: hypothetical protein|unclassified	0.1372668012
+UniRef50_K9S963	0.1372569333
+UniRef50_K9S963|unclassified	0.1372569333
+UniRef50_UPI0003B6AB5A: ABC transporter permease	0.1372556891
+UniRef50_UPI0003B6AB5A: ABC transporter permease|unclassified	0.1372556891
+UniRef50_Q56126: Outer membrane protein	0.1372525349
+UniRef50_Q56126: Outer membrane protein|unclassified	0.1372525349
+UniRef50_UPI0003B31318: flagellin	0.1372163483
+UniRef50_UPI0003B31318: flagellin|unclassified	0.1372163483
+UniRef50_C6ABJ5: sn-glycerol-3-phosphate-binding periplasmic protein UgpB	0.1372160341
+UniRef50_C6ABJ5: sn-glycerol-3-phosphate-binding periplasmic protein UgpB|unclassified	0.1372160341
+UniRef50_A0A024PWE0	0.1371854810
+UniRef50_A0A024PWE0|unclassified	0.1371854810
+UniRef50_D5TVM9	0.1371502198
+UniRef50_D5TVM9|unclassified	0.1371502198
+UniRef50_K9HH59	0.1371491387
+UniRef50_K9HH59|unclassified	0.1371491387
+UniRef50_UPI00047AE2E4: hypothetical protein	0.1371370572
+UniRef50_UPI00047AE2E4: hypothetical protein|unclassified	0.1371370572
+UniRef50_W2F0V6: Aldo/keto reductase	0.1371280377
+UniRef50_W2F0V6: Aldo/keto reductase|unclassified	0.1371280377
+UniRef50_UPI000465DFCD: hypothetical protein	0.1371232549
+UniRef50_UPI000465DFCD: hypothetical protein|unclassified	0.1371232549
+UniRef50_J9P027	0.1371138858
+UniRef50_J9P027|unclassified	0.1371138858
+UniRef50_UPI00037EF460: hypothetical protein	0.1371099631
+UniRef50_UPI00037EF460: hypothetical protein|unclassified	0.1371099631
+UniRef50_R9LSU9	0.1370976042
+UniRef50_R9LSU9|unclassified	0.1370976042
+UniRef50_UPI0004628C07: hypothetical protein	0.1370975619
+UniRef50_UPI0004628C07: hypothetical protein|unclassified	0.1370975619
+UniRef50_UPI000376F60F: hypothetical protein	0.1370892276
+UniRef50_UPI000376F60F: hypothetical protein|unclassified	0.1370892276
+UniRef50_F6INU8: TrwC protein	0.1370836799
+UniRef50_F6INU8: TrwC protein|unclassified	0.1370836799
+UniRef50_UPI000289CFE9: protein smf	0.1370820112
+UniRef50_UPI000289CFE9: protein smf|unclassified	0.1370820112
+UniRef50_UPI0004661825: ABC transporter substrate-binding protein	0.1370771015
+UniRef50_UPI0004661825: ABC transporter substrate-binding protein|unclassified	0.1370771015
+UniRef50_B1Y2J2	0.1370764880
+UniRef50_B1Y2J2|unclassified	0.1370764880
+UniRef50_B7VMP1	0.1370712867
+UniRef50_B7VMP1|unclassified	0.1370712867
+UniRef50_UPI0003660489: hypothetical protein, partial	0.1370528682
+UniRef50_UPI0003660489: hypothetical protein, partial|unclassified	0.1370528682
+UniRef50_UPI000255BF7E: amidohydrolase	0.1370506201
+UniRef50_UPI000255BF7E: amidohydrolase|unclassified	0.1370506201
+UniRef50_Q7V1J0	0.1370496908
+UniRef50_Q7V1J0|unclassified	0.1370496908
+UniRef50_F2K2P3	0.1370423026
+UniRef50_F2K2P3|unclassified	0.1370423026
+UniRef50_A9B6X5: Glutamate 5-kinase	0.1370395576
+UniRef50_A9B6X5: Glutamate 5-kinase|unclassified	0.1370395576
+UniRef50_UPI0002D903BA: hypothetical protein	0.1370286026
+UniRef50_UPI0002D903BA: hypothetical protein|unclassified	0.1370286026
+UniRef50_E8R2M8	0.1370265506
+UniRef50_E8R2M8|unclassified	0.1370265506
+UniRef50_X1DZT3: Marine sediment metagenome DNA, contig: S01H4_S24283 (Fragment)	0.1370249095
+UniRef50_X1DZT3: Marine sediment metagenome DNA, contig: S01H4_S24283 (Fragment)|unclassified	0.1370249095
+UniRef50_Q9ZE99: Prolipoprotein diacylglyceryl transferase	0.1370223175
+UniRef50_Q9ZE99: Prolipoprotein diacylglyceryl transferase|unclassified	0.1370223175
+UniRef50_Q8EMP4: L-arabinose isomerase	0.1370160048
+UniRef50_Q8EMP4: L-arabinose isomerase|unclassified	0.1370160048
+UniRef50_F3NQ08: Secreted protein	0.1370150300
+UniRef50_F3NQ08: Secreted protein|unclassified	0.1370150300
+UniRef50_UPI00047CA931: hypothetical protein	0.1370122454
+UniRef50_UPI00047CA931: hypothetical protein|unclassified	0.1370122454
+UniRef50_UPI00041D40CF: ribulose-phosphate 3-epimerase	0.1369992583
+UniRef50_UPI00041D40CF: ribulose-phosphate 3-epimerase|unclassified	0.1369992583
+UniRef50_L0DXK8: Phosphate-starvation-inducible E-like protein	0.1369836158
+UniRef50_L0DXK8: Phosphate-starvation-inducible E-like protein|unclassified	0.1369836158
+UniRef50_UPI0003B37D77: C4-dicarboxylate ABC transporter	0.1369726131
+UniRef50_UPI0003B37D77: C4-dicarboxylate ABC transporter|unclassified	0.1369726131
+UniRef50_B6IN16	0.1369723078
+UniRef50_B6IN16|unclassified	0.1369723078
+UniRef50_E8SP16	0.1369683968
+UniRef50_E8SP16|unclassified	0.1369683968
+UniRef50_R5GDX6	0.1369670585
+UniRef50_R5GDX6|unclassified	0.1369670585
+UniRef50_E3XRL2	0.1369660651
+UniRef50_E3XRL2|unclassified	0.1369660651
+UniRef50_UPI000372E9CC: hypothetical protein	0.1369467465
+UniRef50_UPI000372E9CC: hypothetical protein|unclassified	0.1369467465
+UniRef50_UPI0003B419EF: serine/threonine protein phosphatase	0.1369445358
+UniRef50_UPI0003B419EF: serine/threonine protein phosphatase|unclassified	0.1369445358
+UniRef50_UPI0003B4E531: sodium:alanine symporter	0.1369420318
+UniRef50_UPI0003B4E531: sodium:alanine symporter|unclassified	0.1369420318
+UniRef50_UPI000374EDBB: hypothetical protein, partial	0.1369269886
+UniRef50_UPI000374EDBB: hypothetical protein, partial|unclassified	0.1369269886
+UniRef50_Q7VMY6: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	0.1369256234
+UniRef50_Q7VMY6: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.1369256234
+UniRef50_T0THX7: Xaa-Pro dipeptidase	0.1369247627
+UniRef50_T0THX7: Xaa-Pro dipeptidase|unclassified	0.1369247627
+UniRef50_G2I414: DNA primase domain protein	0.1369190422
+UniRef50_G2I414: DNA primase domain protein|unclassified	0.1369190422
+UniRef50_Q796Y8: Putative peroxiredoxin YgaF	0.1368976221
+UniRef50_Q796Y8: Putative peroxiredoxin YgaF|unclassified	0.1368976221
+UniRef50_UPI00037BA0F7: hypothetical protein	0.1368976221
+UniRef50_UPI00037BA0F7: hypothetical protein|unclassified	0.1368976221
+UniRef50_V6TMV2: Variant-specific surface protein (Fragment)	0.1368952561
+UniRef50_V6TMV2: Variant-specific surface protein (Fragment)|unclassified	0.1368952561
+UniRef50_U7JJA9	0.1368896870
+UniRef50_U7JJA9|unclassified	0.1368896870
+UniRef50_B8DTW3: Carbamoyl-phosphate synthase large chain	0.1368778292
+UniRef50_B8DTW3: Carbamoyl-phosphate synthase large chain|unclassified	0.1368778292
+UniRef50_UPI00047E261E: amino acid ABC transporter permease	0.1368631440
+UniRef50_UPI00047E261E: amino acid ABC transporter permease|unclassified	0.1368631440
+UniRef50_UPI0001E89C93: camphor resistance protein CrcB	0.1368612016
+UniRef50_UPI0001E89C93: camphor resistance protein CrcB|unclassified	0.1368612016
+UniRef50_UPI00037A172E: hypothetical protein	0.1368498332
+UniRef50_UPI00037A172E: hypothetical protein|unclassified	0.1368498332
+UniRef50_UPI0003B425E4: RNA-binding protein S4	0.1368493305
+UniRef50_UPI0003B425E4: RNA-binding protein S4|unclassified	0.1368493305
+UniRef50_D5BNR0	0.1368378905
+UniRef50_D5BNR0|unclassified	0.1368378905
+UniRef50_UPI0003D24095: PREDICTED: LOW QUALITY PROTEIN: NADH-ubiquinone oxidoreductase chain 6-like	0.1368340013
+UniRef50_UPI0003D24095: PREDICTED: LOW QUALITY PROTEIN: NADH-ubiquinone oxidoreductase chain 6-like|unclassified	0.1368340013
+UniRef50_M5QAC2: Surface protein SdrI	0.1368338027
+UniRef50_M5QAC2: Surface protein SdrI|unclassified	0.1368338027
+UniRef50_UPI000360EAE7: hypothetical protein, partial	0.1368281492
+UniRef50_UPI000360EAE7: hypothetical protein, partial|unclassified	0.1368281492
+UniRef50_W1YQV5	0.1368233943
+UniRef50_W1YQV5|unclassified	0.1368233943
+UniRef50_UPI0003B594BF: thiol:disulfide interchange protein	0.1368116134
+UniRef50_UPI0003B594BF: thiol:disulfide interchange protein|unclassified	0.1368116134
+UniRef50_I4PND3	0.1368058029
+UniRef50_I4PND3|unclassified	0.1368058029
+UniRef50_U2QKQ1: TIGR00159 family protein	0.1368026430
+UniRef50_U2QKQ1: TIGR00159 family protein|unclassified	0.1368026430
+UniRef50_Q2RS90	0.1367941111
+UniRef50_Q2RS90|unclassified	0.1367941111
+UniRef50_A8LN95	0.1367935304
+UniRef50_A8LN95|unclassified	0.1367935304
+UniRef50_K1YF72	0.1367814365
+UniRef50_K1YF72|unclassified	0.1367814365
+UniRef50_A7SGV1: Predicted protein	0.1367649018
+UniRef50_A7SGV1: Predicted protein|unclassified	0.1367649018
+UniRef50_UPI00037791F6: hypothetical protein	0.1367568160
+UniRef50_UPI00037791F6: hypothetical protein|unclassified	0.1367568160
+UniRef50_B2VFU4: Prepilin peptidase dependent protein B	0.1367332144
+UniRef50_B2VFU4: Prepilin peptidase dependent protein B|unclassified	0.1367332144
+UniRef50_D8S962	0.1367198720
+UniRef50_D8S962|unclassified	0.1367198720
+UniRef50_A0A021WXJ4	0.1367022822
+UniRef50_A0A021WXJ4|unclassified	0.1367022822
+UniRef50_V4RLZ5: Exopolysaccharide synthesis, ExoD	0.1366867311
+UniRef50_V4RLZ5: Exopolysaccharide synthesis, ExoD|unclassified	0.1366867311
+UniRef50_UPI0003ACA711: PREDICTED: LOW QUALITY PROTEIN: keratin 74	0.1366851654
+UniRef50_UPI0003ACA711: PREDICTED: LOW QUALITY PROTEIN: keratin 74|unclassified	0.1366851654
+UniRef50_W1FDD9: Malonate utilization transcriptional regulator	0.1366805595
+UniRef50_W1FDD9: Malonate utilization transcriptional regulator|unclassified	0.1366805595
+UniRef50_UPI0003B4081B: biotin biosynthesis protein BioY	0.1366799859
+UniRef50_UPI0003B4081B: biotin biosynthesis protein BioY|unclassified	0.1366799859
+UniRef50_UPI00036510B6: hypothetical protein	0.1366794148
+UniRef50_UPI00036510B6: hypothetical protein|unclassified	0.1366794148
+UniRef50_UPI000255B7E6: aldose 1-epimerase family protein	0.1366772965
+UniRef50_UPI000255B7E6: aldose 1-epimerase family protein|unclassified	0.1366772965
+UniRef50_UPI0002F47A97: hypothetical protein	0.1366719371
+UniRef50_UPI0002F47A97: hypothetical protein|unclassified	0.1366719371
+UniRef50_UPI000255E693: GNAT family acetyltransferase	0.1366671757
+UniRef50_UPI000255E693: GNAT family acetyltransferase|unclassified	0.1366671757
+UniRef50_S5UDX9: Lipoprotein	0.1366660682
+UniRef50_S5UDX9: Lipoprotein|unclassified	0.1366660682
+UniRef50_UPI0003607183: hypothetical protein	0.1366532292
+UniRef50_UPI0003607183: hypothetical protein|unclassified	0.1366532292
+UniRef50_UPI000462F29E: hypothetical protein	0.1366266964
+UniRef50_UPI000462F29E: hypothetical protein|unclassified	0.1366266964
+UniRef50_UPI000478731D: hypothetical protein	0.1366193939
+UniRef50_UPI000478731D: hypothetical protein|unclassified	0.1366193939
+UniRef50_A9WNC8: ATP synthase subunit beta	0.1366192496
+UniRef50_A9WNC8: ATP synthase subunit beta|unclassified	0.1366192496
+UniRef50_A1TL08: Phosphoribosyl-ATP pyrophosphatase	0.1366160201
+UniRef50_A1TL08: Phosphoribosyl-ATP pyrophosphatase|unclassified	0.1366160201
+UniRef50_X6HY29	0.1366091331
+UniRef50_X6HY29|unclassified	0.1366091331
+UniRef50_Q2RM79: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.1365885033
+UniRef50_Q2RM79: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.1365885033
+UniRef50_B2IJG0: 5'-nucleotidase SurE	0.1365850005
+UniRef50_B2IJG0: 5'-nucleotidase SurE|unclassified	0.1365850005
+UniRef50_UPI0003776400: hypothetical protein	0.1365809514
+UniRef50_UPI0003776400: hypothetical protein|unclassified	0.1365809514
+UniRef50_UPI0003AB28A0: histidine kinase	0.1365787263
+UniRef50_UPI0003AB28A0: histidine kinase|unclassified	0.1365787263
+UniRef50_J8AVI3	0.1365754569
+UniRef50_J8AVI3|unclassified	0.1365754569
+UniRef50_G7WMN6: Carbonate dehydratase	0.1365712346
+UniRef50_G7WMN6: Carbonate dehydratase|unclassified	0.1365712346
+UniRef50_UPI00028851EE: ferredoxin, partial	0.1365679560
+UniRef50_UPI00028851EE: ferredoxin, partial|unclassified	0.1365679560
+UniRef50_UPI000466E743: alcohol dehydrogenase	0.1365412275
+UniRef50_UPI000466E743: alcohol dehydrogenase|unclassified	0.1365412275
+UniRef50_B0S1L6: Arginine repressor	0.1365406490
+UniRef50_B0S1L6: Arginine repressor|unclassified	0.1365406490
+UniRef50_R1D7N2	0.1365381435
+UniRef50_R1D7N2|unclassified	0.1365381435
+UniRef50_UPI00037D7347: hypothetical protein, partial	0.1365333158
+UniRef50_UPI00037D7347: hypothetical protein, partial|unclassified	0.1365333158
+UniRef50_B8PN79: Predicted protein	0.1365315484
+UniRef50_B8PN79: Predicted protein|unclassified	0.1365315484
+UniRef50_UPI0004172D57: hypothetical protein	0.1365167307
+UniRef50_UPI0004172D57: hypothetical protein|unclassified	0.1365167307
+UniRef50_UPI000379DD95: hypothetical protein	0.1365104830
+UniRef50_UPI000379DD95: hypothetical protein|unclassified	0.1365104830
+UniRef50_UPI00036E7276: cold-shock protein	0.1365075309
+UniRef50_UPI00036E7276: cold-shock protein|unclassified	0.1365075309
+UniRef50_S2Z333	0.1364988875
+UniRef50_S2Z333|unclassified	0.1364988875
+UniRef50_UPI0003A13680: transcriptional regulator	0.1364963923
+UniRef50_UPI0003A13680: transcriptional regulator|unclassified	0.1364963923
+UniRef50_E2RFM7	0.1364921231
+UniRef50_E2RFM7|unclassified	0.1364921231
+UniRef50_UPI00037AF703: hypothetical protein	0.1364920471
+UniRef50_UPI00037AF703: hypothetical protein|unclassified	0.1364920471
+UniRef50_K8ZFE2: Acyl carrier protein 3	0.1364809349
+UniRef50_K8ZFE2: Acyl carrier protein 3|unclassified	0.1364809349
+UniRef50_R1CBA4	0.1364775849
+UniRef50_R1CBA4|unclassified	0.1364775849
+UniRef50_G9ZWE9	0.1364665472
+UniRef50_G9ZWE9|unclassified	0.1364665472
+UniRef50_Q5JGT7: Thymidine kinase	0.1364551337
+UniRef50_Q5JGT7: Thymidine kinase|unclassified	0.1364551337
+UniRef50_UPI00024900E6: ABC transporter periplasmic protein, partial	0.1364532756
+UniRef50_UPI00024900E6: ABC transporter periplasmic protein, partial|unclassified	0.1364532756
+UniRef50_R6SKH3: Beta-hydroxyacyl-(Acyl-carrier-protein) dehydratase FabZ	0.1364450819
+UniRef50_R6SKH3: Beta-hydroxyacyl-(Acyl-carrier-protein) dehydratase FabZ|unclassified	0.1364450819
+UniRef50_UPI00046B3F64: PREDICTED: N-terminal EF-hand calcium-binding protein 3-like	0.1364423588
+UniRef50_UPI00046B3F64: PREDICTED: N-terminal EF-hand calcium-binding protein 3-like|unclassified	0.1364423588
+UniRef50_Q67P19: NADH-quinone oxidoreductase subunit D 1	0.1364416432
+UniRef50_Q67P19: NADH-quinone oxidoreductase subunit D 1|unclassified	0.1364416432
+UniRef50_UPI000375A791: hypothetical protein	0.1364397789
+UniRef50_UPI000375A791: hypothetical protein|unclassified	0.1364397789
+UniRef50_G4TDN7	0.1364371826
+UniRef50_G4TDN7|unclassified	0.1364371826
+UniRef50_A0A022G4G2: LysR family transcriptional regulator	0.1364353191
+UniRef50_A0A022G4G2: LysR family transcriptional regulator|unclassified	0.1364353191
+UniRef50_R5RIK6	0.1364334083
+UniRef50_R5RIK6|unclassified	0.1364334083
+UniRef50_UPI0004749A8E: hypothetical protein, partial	0.1364151594
+UniRef50_UPI0004749A8E: hypothetical protein, partial|unclassified	0.1364151594
+UniRef50_UPI000348B263: hypothetical protein	0.1363940213
+UniRef50_UPI000348B263: hypothetical protein|unclassified	0.1363940213
+UniRef50_R9IBY8: Redox-active disulfide protein 2	0.1363854255
+UniRef50_R9IBY8: Redox-active disulfide protein 2|unclassified	0.1363854255
+UniRef50_UPI00035F1073: hypothetical protein	0.1363585506
+UniRef50_UPI00035F1073: hypothetical protein|unclassified	0.1363585506
+UniRef50_UPI00036E9616: alpha-L-fucosidase	0.1363579324
+UniRef50_UPI00036E9616: alpha-L-fucosidase|unclassified	0.1363579324
+UniRef50_A4Y379: UPF0231 protein Sputcn32_0682	0.1363486410
+UniRef50_A4Y379: UPF0231 protein Sputcn32_0682|unclassified	0.1363486410
+UniRef50_UPI00037C97BD: hypothetical protein	0.1363484457
+UniRef50_UPI00037C97BD: hypothetical protein|unclassified	0.1363484457
+UniRef50_Q3JT34	0.1363483724
+UniRef50_Q3JT34|unclassified	0.1363483724
+UniRef50_UPI00029AF0CE: hypothetical protein	0.1363306768
+UniRef50_UPI00029AF0CE: hypothetical protein|unclassified	0.1363306768
+UniRef50_UPI0003B5901A: pilus biogenesis protein	0.1363173154
+UniRef50_UPI0003B5901A: pilus biogenesis protein|unclassified	0.1363173154
+UniRef50_V9VWI4: Plasmid stablization protein ParB	0.1363133884
+UniRef50_V9VWI4: Plasmid stablization protein ParB|unclassified	0.1363133884
+UniRef50_Q2FR55: Bifunctional protein FolD	0.1362939839
+UniRef50_Q2FR55: Bifunctional protein FolD|unclassified	0.1362939839
+UniRef50_G4R928: Flagellar basal-body rod modification protein FlgD	0.1362933882
+UniRef50_G4R928: Flagellar basal-body rod modification protein FlgD|unclassified	0.1362933882
+UniRef50_B7KNT0: ATP-dependent Clp protease proteolytic subunit	0.1362884307
+UniRef50_B7KNT0: ATP-dependent Clp protease proteolytic subunit|unclassified	0.1362884307
+UniRef50_B2JGP0: Thioesterase superfamily protein	0.1362857842
+UniRef50_B2JGP0: Thioesterase superfamily protein|unclassified	0.1362857842
+UniRef50_UPI0004675420: phosphoribosylformylglycinamidine synthase, partial	0.1362835148
+UniRef50_UPI0004675420: phosphoribosylformylglycinamidine synthase, partial|unclassified	0.1362835148
+UniRef50_UPI00035CECD6: 8-amino-7-oxononanoate synthase, partial	0.1362553788
+UniRef50_UPI00035CECD6: 8-amino-7-oxononanoate synthase, partial|unclassified	0.1362553788
+UniRef50_UPI00046EE358: hypothetical protein, partial	0.1362447893
+UniRef50_UPI00046EE358: hypothetical protein, partial|unclassified	0.1362447893
+UniRef50_UPI0002627725: senescence marker protein-30	0.1362394005
+UniRef50_UPI0002627725: senescence marker protein-30|unclassified	0.1362394005
+UniRef50_UPI00036947AC: hypothetical protein	0.1362240786
+UniRef50_UPI00036947AC: hypothetical protein|unclassified	0.1362240786
+UniRef50_UPI0003654F74: hypothetical protein	0.1362140698
+UniRef50_UPI0003654F74: hypothetical protein|unclassified	0.1362140698
+UniRef50_UPI00047884C1: cobalamin biosynthesis protein	0.1361994745
+UniRef50_UPI00047884C1: cobalamin biosynthesis protein|unclassified	0.1361994745
+UniRef50_W7DAT6	0.1361922951
+UniRef50_W7DAT6|unclassified	0.1361922951
+UniRef50_O67262: Diaminopimelate decarboxylase	0.1361894842
+UniRef50_O67262: Diaminopimelate decarboxylase|unclassified	0.1361894842
+UniRef50_D7FS85	0.1361860048
+UniRef50_D7FS85|unclassified	0.1361860048
+UniRef50_A0B2R8	0.1361676378
+UniRef50_A0B2R8|unclassified	0.1361676378
+UniRef50_R7MN39: ComG operon protein 6	0.1361673770
+UniRef50_R7MN39: ComG operon protein 6|unclassified	0.1361673770
+UniRef50_H0IXK2: Sensory box/GGDEF family protein	0.1361458043
+UniRef50_H0IXK2: Sensory box/GGDEF family protein|unclassified	0.1361458043
+UniRef50_UPI00036BCB4B: hypothetical protein	0.1361449294
+UniRef50_UPI00036BCB4B: hypothetical protein|unclassified	0.1361449294
+UniRef50_I7HLS3	0.1361363056
+UniRef50_I7HLS3|unclassified	0.1361363056
+UniRef50_Q1C1Y5: Thiamine import ATP-binding protein ThiQ	0.1361358071
+UniRef50_Q1C1Y5: Thiamine import ATP-binding protein ThiQ|unclassified	0.1361358071
+UniRef50_K2D3U6	0.1361350349
+UniRef50_K2D3U6|unclassified	0.1361350349
+UniRef50_B8D1K3: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.1361293732
+UniRef50_B8D1K3: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.1361293732
+UniRef50_G2X7Q2	0.1361238514
+UniRef50_G2X7Q2|unclassified	0.1361238514
+UniRef50_UPI0003771F70: ABC transporter permease	0.1361234023
+UniRef50_UPI0003771F70: ABC transporter permease|unclassified	0.1361234023
+UniRef50_UPI000287DD74: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.1361105677
+UniRef50_UPI000287DD74: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.1361105677
+UniRef50_UPI00046B4F5A: PREDICTED: succinate--hydroxymethylglutarate CoA-transferase, partial	0.1361026221
+UniRef50_UPI00046B4F5A: PREDICTED: succinate--hydroxymethylglutarate CoA-transferase, partial|unclassified	0.1361026221
+UniRef50_Q6JHU0: PEP148R-like	0.1360730753
+UniRef50_Q6JHU0: PEP148R-like|unclassified	0.1360730753
+UniRef50_I5CB19: Integrase catalytic subunit (Fragment)	0.1360641249
+UniRef50_I5CB19: Integrase catalytic subunit (Fragment)|unclassified	0.1360641249
+UniRef50_A0A017HNY0: Dipeptide transport system permease protein DppC	0.1360596125
+UniRef50_A0A017HNY0: Dipeptide transport system permease protein DppC|unclassified	0.1360596125
+UniRef50_UPI000328B20F: PREDICTED: vegetative cell wall protein gp1-like	0.1360584434
+UniRef50_UPI000328B20F: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.1360584434
+UniRef50_D0ZGY6: Predicted lipoprotein	0.1360566189
+UniRef50_D0ZGY6: Predicted lipoprotein|unclassified	0.1360566189
+UniRef50_X2MRY8	0.1360469751
+UniRef50_X2MRY8|unclassified	0.1360469751
+UniRef50_E6UVZ0: YCII-related protein	0.1360465406
+UniRef50_E6UVZ0: YCII-related protein|unclassified	0.1360465406
+UniRef50_UPI00035DBD0C: hypothetical protein	0.1360390340
+UniRef50_UPI00035DBD0C: hypothetical protein|unclassified	0.1360390340
+UniRef50_W4HPR7	0.1360277884
+UniRef50_W4HPR7|unclassified	0.1360277884
+UniRef50_A6DZ34: Phenylacetic acid degradation-related protein	0.1360201855
+UniRef50_A6DZ34: Phenylacetic acid degradation-related protein|unclassified	0.1360201855
+UniRef50_X6L2B7	0.1360200133
+UniRef50_X6L2B7|unclassified	0.1360200133
+UniRef50_Q8VT11: AgrC (Fragment)	0.1360174197
+UniRef50_Q8VT11: AgrC (Fragment)|unclassified	0.1360174197
+UniRef50_A0R066: Branched-chain-amino-acid aminotransferase	0.1360083311
+UniRef50_A0R066: Branched-chain-amino-acid aminotransferase|unclassified	0.1360083311
+UniRef50_W5ETK5	0.1360047479
+UniRef50_W5ETK5|unclassified	0.1360047479
+UniRef50_UPI000464BD68: hypothetical protein	0.1359846358
+UniRef50_UPI000464BD68: hypothetical protein|unclassified	0.1359846358
+UniRef50_UPI0003B400B5: capsular polysaccharide biosynthesis protein	0.1359839585
+UniRef50_UPI0003B400B5: capsular polysaccharide biosynthesis protein|unclassified	0.1359839585
+UniRef50_UPI00035F5A9E: S-adenosylmethionine decarboxylase	0.1359803426
+UniRef50_UPI00035F5A9E: S-adenosylmethionine decarboxylase|unclassified	0.1359803426
+UniRef50_UPI00029A6F8D: FKBP-type peptidylprolyl isomerase	0.1359783974
+UniRef50_UPI00029A6F8D: FKBP-type peptidylprolyl isomerase|unclassified	0.1359783974
+UniRef50_W6MRP9: Genomic scaffold, Kuraishia_capsulata_scaffold_6	0.1359736937
+UniRef50_W6MRP9: Genomic scaffold, Kuraishia_capsulata_scaffold_6|unclassified	0.1359736937
+UniRef50_UPI000289F13B: L-aspartate oxidase	0.1359614755
+UniRef50_UPI000289F13B: L-aspartate oxidase|unclassified	0.1359614755
+UniRef50_F9FC42	0.1359605304
+UniRef50_F9FC42|unclassified	0.1359605304
+UniRef50_UPI0004414ED3: SSU ribosomal protein S9P	0.1359561923
+UniRef50_UPI0004414ED3: SSU ribosomal protein S9P|unclassified	0.1359561923
+UniRef50_UPI000470D270: hypothetical protein, partial	0.1359535803
+UniRef50_UPI000470D270: hypothetical protein, partial|unclassified	0.1359535803
+UniRef50_P35159: Ribosomal large subunit pseudouridine synthase B	0.1359326224
+UniRef50_P35159: Ribosomal large subunit pseudouridine synthase B|unclassified	0.1359326224
+UniRef50_UPI000248CCAE: histidine kinase	0.1359242851
+UniRef50_UPI000248CCAE: histidine kinase|unclassified	0.1359242851
+UniRef50_A7IPS6	0.1359164253
+UniRef50_A7IPS6|unclassified	0.1359164253
+UniRef50_P56908: NADH-quinone oxidoreductase subunit D 2	0.1359133152
+UniRef50_P56908: NADH-quinone oxidoreductase subunit D 2|unclassified	0.1359133152
+UniRef50_Q48BK0: Glucans biosynthesis protein D	0.1359126886
+UniRef50_Q48BK0: Glucans biosynthesis protein D|unclassified	0.1359126886
+UniRef50_UPI00046D6A56: hypothetical protein	0.1359106445
+UniRef50_UPI00046D6A56: hypothetical protein|unclassified	0.1359106445
+UniRef50_UPI000472FC33: 50S ribosomal protein L21	0.1359070018
+UniRef50_UPI000472FC33: 50S ribosomal protein L21|unclassified	0.1359070018
+UniRef50_UPI0003752D0D: hypothetical protein	0.1359022355
+UniRef50_UPI0003752D0D: hypothetical protein|unclassified	0.1359022355
+UniRef50_V5UAT4	0.1359018494
+UniRef50_V5UAT4|unclassified	0.1359018494
+UniRef50_K9IFC3: Purine nucleosidase	0.1358839717
+UniRef50_K9IFC3: Purine nucleosidase|unclassified	0.1358839717
+UniRef50_UPI000364120D: hypothetical protein, partial	0.1358804574
+UniRef50_UPI000364120D: hypothetical protein, partial|unclassified	0.1358804574
+UniRef50_A1S9S6	0.1358732085
+UniRef50_A1S9S6|unclassified	0.1358732085
+UniRef50_K8AF35: Iron binding protein SufA for iron-sulfur cluster assembly	0.1358453412
+UniRef50_K8AF35: Iron binding protein SufA for iron-sulfur cluster assembly|unclassified	0.1358453412
+UniRef50_UPI0004642B19: TetR family transcriptional regulator	0.1358419197
+UniRef50_UPI0004642B19: TetR family transcriptional regulator|unclassified	0.1358419197
+UniRef50_Q2S0W2: Chorismate synthase	0.1358375220
+UniRef50_Q2S0W2: Chorismate synthase|unclassified	0.1358375220
+UniRef50_Q54776: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.1358359515
+UniRef50_Q54776: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.1358359515
+UniRef50_N6I0F4	0.1358187102
+UniRef50_N6I0F4|unclassified	0.1358187102
+UniRef50_UPI0003B61C67: 50S ribosomal protein L4	0.1358179561
+UniRef50_UPI0003B61C67: 50S ribosomal protein L4|unclassified	0.1358179561
+UniRef50_UPI00035C2F71: hypothetical protein	0.1358126813
+UniRef50_UPI00035C2F71: hypothetical protein|unclassified	0.1358126813
+UniRef50_UPI000465AFB9: D-ribose transporter ATP-binding protein	0.1358042696
+UniRef50_UPI000465AFB9: D-ribose transporter ATP-binding protein|unclassified	0.1358042696
+UniRef50_UPI000463ED31: MerR family transcriptional regulator, partial	0.1357810198
+UniRef50_UPI000463ED31: MerR family transcriptional regulator, partial|unclassified	0.1357810198
+UniRef50_UPI00047227D5: hypothetical protein	0.1357646191
+UniRef50_UPI00047227D5: hypothetical protein|unclassified	0.1357646191
+UniRef50_UPI0003B44F91: 16S rRNA methyltransferase	0.1357571246
+UniRef50_UPI0003B44F91: 16S rRNA methyltransferase|unclassified	0.1357571246
+UniRef50_UPI00039F6CD4: glutathione ABC transporter permease	0.1357548772
+UniRef50_UPI00039F6CD4: glutathione ABC transporter permease|unclassified	0.1357548772
+UniRef50_X0WBP4: Marine sediment metagenome DNA, contig: S01H1_S11176	0.1357507314
+UniRef50_X0WBP4: Marine sediment metagenome DNA, contig: S01H1_S11176|unclassified	0.1357507314
+UniRef50_G4B986: NlpD protein	0.1357498162
+UniRef50_G4B986: NlpD protein|unclassified	0.1357498162
+UniRef50_UPI0003942D97: PREDICTED: GRAM domain-containing protein 1A-like isoform X1	0.1357459792
+UniRef50_UPI0003942D97: PREDICTED: GRAM domain-containing protein 1A-like isoform X1|unclassified	0.1357459792
+UniRef50_UPI0003AE0E87: PREDICTED: basic proline-rich protein-like	0.1357407959
+UniRef50_UPI0003AE0E87: PREDICTED: basic proline-rich protein-like|unclassified	0.1357407959
+UniRef50_UPI00046E8FA2: hypothetical protein	0.1357370430
+UniRef50_UPI00046E8FA2: hypothetical protein|unclassified	0.1357370430
+UniRef50_A0A014Q0Z8	0.1357337272
+UniRef50_A0A014Q0Z8|unclassified	0.1357337272
+UniRef50_UPI0000E116E2: two component LuxR family transcriptional regulator	0.1357298596
+UniRef50_UPI0000E116E2: two component LuxR family transcriptional regulator|unclassified	0.1357298596
+UniRef50_UPI0003B50FDF: cysteinyl-tRNA synthetase	0.1357270474
+UniRef50_UPI0003B50FDF: cysteinyl-tRNA synthetase|unclassified	0.1357270474
+UniRef50_W7B2M1	0.1357218445
+UniRef50_W7B2M1|unclassified	0.1357218445
+UniRef50_UPI00047EB0D1: hypothetical protein	0.1357202216
+UniRef50_UPI00047EB0D1: hypothetical protein|unclassified	0.1357202216
+UniRef50_UPI0003B695AD: long-chain fatty acid--CoA ligase, partial	0.1357146091
+UniRef50_UPI0003B695AD: long-chain fatty acid--CoA ligase, partial|unclassified	0.1357146091
+UniRef50_J9A8Y2	0.1357131330
+UniRef50_J9A8Y2|unclassified	0.1357131330
+UniRef50_UPI00031506B1: hypothetical protein	0.1356988900
+UniRef50_UPI00031506B1: hypothetical protein|unclassified	0.1356988900
+UniRef50_A8TWR2	0.1356935727
+UniRef50_A8TWR2|unclassified	0.1356935727
+UniRef50_UPI00035FC212: hypothetical protein	0.1356816240
+UniRef50_UPI00035FC212: hypothetical protein|unclassified	0.1356816240
+UniRef50_H6SQM6	0.1356716827
+UniRef50_H6SQM6|unclassified	0.1356716827
+UniRef50_UPI0002E8C668: hypothetical protein	0.1356680812
+UniRef50_UPI0002E8C668: hypothetical protein|unclassified	0.1356680812
+UniRef50_J9P3M7	0.1356658543
+UniRef50_J9P3M7|unclassified	0.1356658543
+UniRef50_R7VMX8: Ribosome-binding protein 1	0.1356601593
+UniRef50_R7VMX8: Ribosome-binding protein 1|unclassified	0.1356601593
+UniRef50_Q976J7: HTH-type transcriptional regulator LysM	0.1356594256
+UniRef50_Q976J7: HTH-type transcriptional regulator LysM|unclassified	0.1356594256
+UniRef50_A4WYA2	0.1356341429
+UniRef50_A4WYA2|unclassified	0.1356341429
+UniRef50_P61783: Imidazole glycerol phosphate synthase subunit HisH 2	0.1356325587
+UniRef50_P61783: Imidazole glycerol phosphate synthase subunit HisH 2|unclassified	0.1356325587
+UniRef50_A0LV48: Probable dual-specificity RNA methyltransferase RlmN	0.1356322726
+UniRef50_A0LV48: Probable dual-specificity RNA methyltransferase RlmN|unclassified	0.1356322726
+UniRef50_UPI0003EE6852: hypothetical protein	0.1356266232
+UniRef50_UPI0003EE6852: hypothetical protein|unclassified	0.1356266232
+UniRef50_R4KHS7	0.1356221334
+UniRef50_R4KHS7|unclassified	0.1356221334
+UniRef50_UPI0003B678D8: ABC transporter substrate-binding protein	0.1356155073
+UniRef50_UPI0003B678D8: ABC transporter substrate-binding protein|unclassified	0.1356155073
+UniRef50_W6KBL9: UPF0262 protein MGMAQ_2482	0.1356108116
+UniRef50_W6KBL9: UPF0262 protein MGMAQ_2482|unclassified	0.1356108116
+UniRef50_K2AEZ4	0.1355906584
+UniRef50_K2AEZ4|unclassified	0.1355906584
+UniRef50_UPI0001850D56: YvrB	0.1355787420
+UniRef50_UPI0001850D56: YvrB|unclassified	0.1355787420
+UniRef50_T0TL61: Lactose transport regulator (Fragment)	0.1355783439
+UniRef50_T0TL61: Lactose transport regulator (Fragment)|unclassified	0.1355783439
+UniRef50_UPI000462A89B: RNA-binding protein	0.1355636276
+UniRef50_UPI000462A89B: RNA-binding protein|unclassified	0.1355636276
+UniRef50_UPI00035F8C2A: hypothetical protein	0.1355604651
+UniRef50_UPI00035F8C2A: hypothetical protein|unclassified	0.1355604651
+UniRef50_Q4FP40: RNA pyrophosphohydrolase	0.1355588093
+UniRef50_Q4FP40: RNA pyrophosphohydrolase|unclassified	0.1355588093
+UniRef50_D0Z8H8	0.1355578943
+UniRef50_D0Z8H8|unclassified	0.1355578943
+UniRef50_UPI00036ECD5C: hypothetical protein	0.1355531215
+UniRef50_UPI00036ECD5C: hypothetical protein|unclassified	0.1355531215
+UniRef50_B8FP23: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.1355528109
+UniRef50_B8FP23: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.1355528109
+UniRef50_M2TF44	0.1355476117
+UniRef50_M2TF44|unclassified	0.1355476117
+UniRef50_L8U5L6: tRNA pseudouridine synthase A	0.1355462725
+UniRef50_L8U5L6: tRNA pseudouridine synthase A|unclassified	0.1355462725
+UniRef50_D6E829	0.1355420868
+UniRef50_D6E829|unclassified	0.1355420868
+UniRef50_U3U4J5: AraC family transcriptional regulator	0.1355351771
+UniRef50_U3U4J5: AraC family transcriptional regulator|unclassified	0.1355351771
+UniRef50_UPI0003B78E3A: GntR family transcriptional regulator	0.1355178272
+UniRef50_UPI0003B78E3A: GntR family transcriptional regulator|unclassified	0.1355178272
+UniRef50_UPI000366D9A0: hypothetical protein, partial	0.1355023201
+UniRef50_UPI000366D9A0: hypothetical protein, partial|unclassified	0.1355023201
+UniRef50_B2A685: Cyclic pyranopterin monophosphate synthase accessory protein	0.1354954063
+UniRef50_B2A685: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	0.1354954063
+UniRef50_UPI0003634996: hypothetical protein	0.1354862662
+UniRef50_UPI0003634996: hypothetical protein|unclassified	0.1354862662
+UniRef50_UPI000248601C: hypothetical protein	0.1354735252
+UniRef50_UPI000248601C: hypothetical protein|unclassified	0.1354735252
+UniRef50_W5V371: Protein TonB	0.1354672373
+UniRef50_W5V371: Protein TonB|unclassified	0.1354672373
+UniRef50_UPI000468BCD1: hypothetical protein	0.1354606452
+UniRef50_UPI000468BCD1: hypothetical protein|unclassified	0.1354606452
+UniRef50_K1E5L6: Coagulation factor 5/8 type domain-containing protein	0.1354600324
+UniRef50_K1E5L6: Coagulation factor 5/8 type domain-containing protein|unclassified	0.1354600324
+UniRef50_Q8FT12: Tryptophan synthase beta chain 2	0.1354538802
+UniRef50_Q8FT12: Tryptophan synthase beta chain 2|unclassified	0.1354538802
+UniRef50_UPI0003DE9A9C: PREDICTED: elongation factor Tu, mitochondrial-like	0.1354538598
+UniRef50_UPI0003DE9A9C: PREDICTED: elongation factor Tu, mitochondrial-like|unclassified	0.1354538598
+UniRef50_F6CZ53: Cupin 2 conserved barrel domain protein	0.1354507912
+UniRef50_F6CZ53: Cupin 2 conserved barrel domain protein|unclassified	0.1354507912
+UniRef50_B5EKE1: IS66 Orf2 family protein	0.1354486700
+UniRef50_B5EKE1: IS66 Orf2 family protein|unclassified	0.1354486700
+UniRef50_Q5CQR3	0.1354462290
+UniRef50_Q5CQR3|unclassified	0.1354462290
+UniRef50_S6W6G8: ISPsy25, transposase (Fragment)	0.1354456186
+UniRef50_S6W6G8: ISPsy25, transposase (Fragment)|unclassified	0.1354456186
+UniRef50_UPI0003B6144F: Asp/Glu/hydantoin racemase	0.1354449793
+UniRef50_UPI0003B6144F: Asp/Glu/hydantoin racemase|unclassified	0.1354449793
+UniRef50_UPI00045DB8F8: PREDICTED: serine/threonine-protein phosphatase 1 regulatory subunit 10	0.1354350497
+UniRef50_UPI00045DB8F8: PREDICTED: serine/threonine-protein phosphatase 1 regulatory subunit 10|unclassified	0.1354350497
+UniRef50_UPI0002F42045: hypothetical protein	0.1354342953
+UniRef50_UPI0002F42045: hypothetical protein|unclassified	0.1354342953
+UniRef50_UPI000367FC90: hypothetical protein	0.1354331222
+UniRef50_UPI000367FC90: hypothetical protein|unclassified	0.1354331222
+UniRef50_G9PKM7	0.1354318809
+UniRef50_G9PKM7|unclassified	0.1354318809
+UniRef50_A7ZB61: Periplasmic protein	0.1354239103
+UniRef50_A7ZB61: Periplasmic protein|unclassified	0.1354239103
+UniRef50_Q2GBA4: Crossover junction endodeoxyribonuclease RuvC	0.1354237854
+UniRef50_Q2GBA4: Crossover junction endodeoxyribonuclease RuvC|unclassified	0.1354237854
+UniRef50_L4FV79	0.1354212035
+UniRef50_L4FV79|unclassified	0.1354212035
+UniRef50_UPI00041A9154: hypothetical protein	0.1354182248
+UniRef50_UPI00041A9154: hypothetical protein|unclassified	0.1354182248
+UniRef50_UPI00029A33C4: transcriptional regulator	0.1354176964
+UniRef50_UPI00029A33C4: transcriptional regulator|unclassified	0.1354176964
+UniRef50_UPI00046619E7: hydrogenase 2 large subunit	0.1354167857
+UniRef50_UPI00046619E7: hydrogenase 2 large subunit|unclassified	0.1354167857
+UniRef50_A0QX20: Aconitate hydratase	0.1354163971
+UniRef50_A0QX20: Aconitate hydratase|unclassified	0.1354163971
+UniRef50_W1DRK5	0.1354038749
+UniRef50_W1DRK5|unclassified	0.1354038749
+UniRef50_A0A033UF44	0.1354012435
+UniRef50_A0A033UF44|unclassified	0.1354012435
+UniRef50_R5QF49: Fumarate reductase/succinate dehydrogenase flavoprotein domain protein	0.1353925765
+UniRef50_R5QF49: Fumarate reductase/succinate dehydrogenase flavoprotein domain protein|unclassified	0.1353925765
+UniRef50_UPI0003707B6D: hypothetical protein	0.1353916429
+UniRef50_UPI0003707B6D: hypothetical protein|unclassified	0.1353916429
+UniRef50_UPI0002B4D8B3: PREDICTED: deleted in malignant brain tumors 1 protein-like, partial	0.1353912808
+UniRef50_UPI0002B4D8B3: PREDICTED: deleted in malignant brain tumors 1 protein-like, partial|unclassified	0.1353912808
+UniRef50_R2SP79	0.1353750894
+UniRef50_R2SP79|unclassified	0.1353750894
+UniRef50_A5N5W0: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.1353644159
+UniRef50_A5N5W0: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.1353644159
+UniRef50_UPI0003F7E5CF: hypothetical protein	0.1353617876
+UniRef50_UPI0003F7E5CF: hypothetical protein|unclassified	0.1353617876
+UniRef50_A0A059FND2: LemA family protein	0.1353382775
+UniRef50_A0A059FND2: LemA family protein|unclassified	0.1353382775
+UniRef50_U2SC34: Electron transfer flavoprotein FAD-binding domain protein (Fragment)	0.1353346481
+UniRef50_U2SC34: Electron transfer flavoprotein FAD-binding domain protein (Fragment)|unclassified	0.1353346481
+UniRef50_UPI0003C8E764: PREDICTED: S-formylglutathione hydrolase-like	0.1353277497
+UniRef50_UPI0003C8E764: PREDICTED: S-formylglutathione hydrolase-like|unclassified	0.1353277497
+UniRef50_K5VZH6	0.1353222895
+UniRef50_K5VZH6|unclassified	0.1353222895
+UniRef50_UPI000371A8B3: hypothetical protein	0.1353191383
+UniRef50_UPI000371A8B3: hypothetical protein|unclassified	0.1353191383
+UniRef50_X2H7G4: Cell wall endopeptidase, family M23/M37	0.1353050167
+UniRef50_X2H7G4: Cell wall endopeptidase, family M23/M37|unclassified	0.1353050167
+UniRef50_G1TW64	0.1353042138
+UniRef50_G1TW64|unclassified	0.1353042138
+UniRef50_UPI0002DBC96E: hypothetical protein	0.1353039636
+UniRef50_UPI0002DBC96E: hypothetical protein|unclassified	0.1353039636
+UniRef50_UPI0003784AB5: hypothetical protein	0.1352978570
+UniRef50_UPI0003784AB5: hypothetical protein|unclassified	0.1352978570
+UniRef50_M3EH54: Phosphoesterase	0.1352901882
+UniRef50_M3EH54: Phosphoesterase|unclassified	0.1352901882
+UniRef50_UPI000474E39D: hypothetical protein	0.1352761595
+UniRef50_UPI000474E39D: hypothetical protein|unclassified	0.1352761595
+UniRef50_UPI00030A3A3A: hypothetical protein	0.1352677938
+UniRef50_UPI00030A3A3A: hypothetical protein|unclassified	0.1352677938
+UniRef50_A0A023VS51	0.1352630375
+UniRef50_A0A023VS51|unclassified	0.1352630375
+UniRef50_UPI000377F48E: MULTISPECIES: hypothetical protein	0.1352532095
+UniRef50_UPI000377F48E: MULTISPECIES: hypothetical protein|unclassified	0.1352532095
+UniRef50_UPI0002D49B6F: hypothetical protein	0.1352477294
+UniRef50_UPI0002D49B6F: hypothetical protein|unclassified	0.1352477294
+UniRef50_Q2NA45	0.1352453063
+UniRef50_Q2NA45|unclassified	0.1352453063
+UniRef50_G5KE18: Phage portal-like protein	0.1352287261
+UniRef50_G5KE18: Phage portal-like protein|unclassified	0.1352287261
+UniRef50_UPI000370B8C5: hypothetical protein	0.1352244474
+UniRef50_UPI000370B8C5: hypothetical protein|unclassified	0.1352244474
+UniRef50_M2YHM6: NADPH:quinone oxidoreductase 2	0.1352117976
+UniRef50_M2YHM6: NADPH:quinone oxidoreductase 2|unclassified	0.1352117976
+UniRef50_F2E8Q7: Predicted protein (Fragment)	0.1352014359
+UniRef50_F2E8Q7: Predicted protein (Fragment)|unclassified	0.1352014359
+UniRef50_W3KJ45: Periplasmic protein, PF09992 family	0.1351916672
+UniRef50_W3KJ45: Periplasmic protein, PF09992 family|unclassified	0.1351916672
+UniRef50_E6SIX1	0.1351881198
+UniRef50_E6SIX1|unclassified	0.1351881198
+UniRef50_A0A011RRL0: Glycine dehydrogenase [decarboxylating]	0.1351858394
+UniRef50_A0A011RRL0: Glycine dehydrogenase [decarboxylating]|unclassified	0.1351858394
+UniRef50_K2CLV1	0.1351846578
+UniRef50_K2CLV1|unclassified	0.1351846578
+UniRef50_UPI00037629F2: hypothetical protein	0.1351735387
+UniRef50_UPI00037629F2: hypothetical protein|unclassified	0.1351735387
+UniRef50_D0CS35	0.1351656720
+UniRef50_D0CS35|unclassified	0.1351656720
+UniRef50_J7QSJ3: Escherichia coli IMT2125 genomic chromosome, IMT2125 (Fragment)	0.1351501763
+UniRef50_J7QSJ3: Escherichia coli IMT2125 genomic chromosome, IMT2125 (Fragment)|unclassified	0.1351501763
+UniRef50_Q09751: Lactoylglutathione lyase	0.1351422796
+UniRef50_Q09751: Lactoylglutathione lyase|unclassified	0.1351422796
+UniRef50_U5X589: Dehydrogenase	0.1351397791
+UniRef50_U5X589: Dehydrogenase|unclassified	0.1351397791
+UniRef50_UPI0003728158: hypothetical protein	0.1351382822
+UniRef50_UPI0003728158: hypothetical protein|unclassified	0.1351382822
+UniRef50_J9NZQ0	0.1351353523
+UniRef50_J9NZQ0|unclassified	0.1351353523
+UniRef50_UPI0004729FC6: asparaginase	0.1351342863
+UniRef50_UPI0004729FC6: asparaginase|unclassified	0.1351342863
+UniRef50_UPI0001910939: iron ABC transporter permease	0.1351315973
+UniRef50_UPI0001910939: iron ABC transporter permease|unclassified	0.1351315973
+UniRef50_Q83EC8: Lipoprotein signal peptidase	0.1351284988
+UniRef50_Q83EC8: Lipoprotein signal peptidase|unclassified	0.1351284988
+UniRef50_A7HHW3: RES domain protein	0.1351280676
+UniRef50_A7HHW3: RES domain protein|unclassified	0.1351280676
+UniRef50_UPI000255B62E: conjugal transfer protein TraR	0.1351239362
+UniRef50_UPI000255B62E: conjugal transfer protein TraR|unclassified	0.1351239362
+UniRef50_UPI000468A5C8: multidrug ABC transporter ATP-binding protein	0.1351018810
+UniRef50_UPI000468A5C8: multidrug ABC transporter ATP-binding protein|unclassified	0.1351018810
+UniRef50_Q0APE5	0.1350825391
+UniRef50_Q0APE5|unclassified	0.1350825391
+UniRef50_Q3JFF6	0.1350736132
+UniRef50_Q3JFF6|unclassified	0.1350736132
+UniRef50_M3Z6H8	0.1350722391
+UniRef50_M3Z6H8|unclassified	0.1350722391
+UniRef50_V4KU43	0.1350694198
+UniRef50_V4KU43|unclassified	0.1350694198
+UniRef50_UPI00037FDE39: histidinol-phosphate aminotransferase, partial	0.1350615580
+UniRef50_UPI00037FDE39: histidinol-phosphate aminotransferase, partial|unclassified	0.1350615580
+UniRef50_UPI000462C6A7: PREDICTED: estradiol 17-beta-dehydrogenase 8	0.1350599367
+UniRef50_UPI000462C6A7: PREDICTED: estradiol 17-beta-dehydrogenase 8|unclassified	0.1350599367
+UniRef50_T2F8G8: Type IV prepilin peptidase	0.1350428425
+UniRef50_T2F8G8: Type IV prepilin peptidase|unclassified	0.1350428425
+UniRef50_O75489: NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial	0.1350417864
+UniRef50_O75489: NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial|unclassified	0.1350417864
+UniRef50_W8AHJ7: Chromosome (Plasmid) partitioning protein ParA / sporulation initiation inhibitor protein Soj	0.1350289050
+UniRef50_W8AHJ7: Chromosome (Plasmid) partitioning protein ParA / sporulation initiation inhibitor protein Soj|unclassified	0.1350289050
+UniRef50_P55468: dTDP-4-dehydrorhamnose 3,5-epimerase	0.1350284914
+UniRef50_P55468: dTDP-4-dehydrorhamnose 3,5-epimerase|unclassified	0.1350284914
+UniRef50_UPI00046A3517: hypothetical protein	0.1350236714
+UniRef50_UPI00046A3517: hypothetical protein|unclassified	0.1350236714
+UniRef50_UPI000470E01F: transposase	0.1350146064
+UniRef50_UPI000470E01F: transposase|unclassified	0.1350146064
+UniRef50_UPI00037D9946: hypothetical protein	0.1350079014
+UniRef50_UPI00037D9946: hypothetical protein|unclassified	0.1350079014
+UniRef50_Q836D3: S-ribosylhomocysteine lyase	0.1349970266
+UniRef50_Q836D3: S-ribosylhomocysteine lyase|unclassified	0.1349970266
+UniRef50_UPI00047A3292: hypothetical protein	0.1349961201
+UniRef50_UPI00047A3292: hypothetical protein|unclassified	0.1349961201
+UniRef50_A9M1F1: Ferric enterobactin transporter binding protein	0.1349763773
+UniRef50_A9M1F1: Ferric enterobactin transporter binding protein|unclassified	0.1349763773
+UniRef50_W2SVS8	0.1349743788
+UniRef50_W2SVS8|unclassified	0.1349743788
+UniRef50_A0A017J343: Lipopolysaccharide biosynthesis wzxC domain protein	0.1349557740
+UniRef50_A0A017J343: Lipopolysaccharide biosynthesis wzxC domain protein|unclassified	0.1349557740
+UniRef50_V7Z695	0.1349483785
+UniRef50_V7Z695|unclassified	0.1349483785
+UniRef50_F0L4J7: Terminase large subunit	0.1349426564
+UniRef50_F0L4J7: Terminase large subunit|unclassified	0.1349426564
+UniRef50_UPI00016C4C09: dihydrodipicolinate reductase	0.1349403762
+UniRef50_UPI00016C4C09: dihydrodipicolinate reductase|unclassified	0.1349403762
+UniRef50_UPI000262500B: dihydropteroate synthase	0.1349365679
+UniRef50_UPI000262500B: dihydropteroate synthase|unclassified	0.1349365679
+UniRef50_Q07H98: Holliday junction ATP-dependent DNA helicase RuvB	0.1349303516
+UniRef50_Q07H98: Holliday junction ATP-dependent DNA helicase RuvB|unclassified	0.1349303516
+UniRef50_UPI00037CD1D3: hypothetical protein	0.1349177181
+UniRef50_UPI00037CD1D3: hypothetical protein|unclassified	0.1349177181
+UniRef50_UPI00041C6338: hydrolase	0.1349173186
+UniRef50_UPI00041C6338: hydrolase|unclassified	0.1349173186
+UniRef50_I7EYS6	0.1349133053
+UniRef50_I7EYS6|unclassified	0.1349133053
+UniRef50_Q02Y75: Xylose isomerase	0.1349132366
+UniRef50_Q02Y75: Xylose isomerase|unclassified	0.1349132366
+UniRef50_UPI0001FFE008: error-prone DNA polymerase	0.1348995696
+UniRef50_UPI0001FFE008: error-prone DNA polymerase|unclassified	0.1348995696
+UniRef50_F2SU08	0.1348962047
+UniRef50_F2SU08|unclassified	0.1348962047
+UniRef50_N3H3N3: ThiC-associated domain protein	0.1348949450
+UniRef50_N3H3N3: ThiC-associated domain protein|unclassified	0.1348949450
+UniRef50_B2KCE9: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.1348914642
+UniRef50_B2KCE9: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.1348914642
+UniRef50_UPI0003F6BFF6: hypothetical protein	0.1348797186
+UniRef50_UPI0003F6BFF6: hypothetical protein|unclassified	0.1348797186
+UniRef50_UPI0004543B67: PREDICTED: LOW QUALITY PROTEIN: kell blood group glycoprotein homolog, partial	0.1348763200
+UniRef50_UPI0004543B67: PREDICTED: LOW QUALITY PROTEIN: kell blood group glycoprotein homolog, partial|unclassified	0.1348763200
+UniRef50_F2TBG9	0.1348680956
+UniRef50_F2TBG9|unclassified	0.1348680956
+UniRef50_UPI0003B43537: permease	0.1348671211
+UniRef50_UPI0003B43537: permease|unclassified	0.1348671211
+UniRef50_UPI00039BA005: ABC transporter permease	0.1348416546
+UniRef50_UPI00039BA005: ABC transporter permease|unclassified	0.1348416546
+UniRef50_Q5YNX9	0.1348355113
+UniRef50_Q5YNX9|unclassified	0.1348355113
+UniRef50_A8ZUC6: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.1348338955
+UniRef50_A8ZUC6: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.1348338955
+UniRef50_K2BFX9: Cytochrome c oxidase accessory protein CcoG	0.1348091365
+UniRef50_K2BFX9: Cytochrome c oxidase accessory protein CcoG|unclassified	0.1348091365
+UniRef50_UPI000262CFB4: hypothetical protein	0.1347920867
+UniRef50_UPI000262CFB4: hypothetical protein|unclassified	0.1347920867
+UniRef50_UPI00036C549B: hypothetical protein, partial	0.1347838515
+UniRef50_UPI00036C549B: hypothetical protein, partial|unclassified	0.1347838515
+UniRef50_C4LD11: Lipoprotein signal peptidase	0.1347806846
+UniRef50_C4LD11: Lipoprotein signal peptidase|unclassified	0.1347806846
+UniRef50_Q08654: Bifunctional protein TrpGD	0.1347770132
+UniRef50_Q08654: Bifunctional protein TrpGD|unclassified	0.1347770132
+UniRef50_UPI000471290E: C4-dicarboxylate ABC transporter	0.1347742591
+UniRef50_UPI000471290E: C4-dicarboxylate ABC transporter|unclassified	0.1347742591
+UniRef50_N9SYB2	0.1347587711
+UniRef50_N9SYB2|unclassified	0.1347587711
+UniRef50_UPI00036D2F05: hypothetical protein	0.1347237891
+UniRef50_UPI00036D2F05: hypothetical protein|unclassified	0.1347237891
+UniRef50_W0HJ29	0.1347169986
+UniRef50_W0HJ29|unclassified	0.1347169986
+UniRef50_UPI0004680597: hypothetical protein	0.1347021042
+UniRef50_UPI0004680597: hypothetical protein|unclassified	0.1347021042
+UniRef50_D3NVE0	0.1346792350
+UniRef50_D3NVE0|unclassified	0.1346792350
+UniRef50_U4VFT2	0.1346785646
+UniRef50_U4VFT2|unclassified	0.1346785646
+UniRef50_UPI0003F4B23B: oligo-1,6-glucosidase	0.1346695822
+UniRef50_UPI0003F4B23B: oligo-1,6-glucosidase|unclassified	0.1346695822
+UniRef50_Q56213: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	0.1346638951
+UniRef50_Q56213: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|unclassified	0.1346638951
+UniRef50_V9WSA6: Plasmid replication protein RepC	0.1346577569
+UniRef50_V9WSA6: Plasmid replication protein RepC|unclassified	0.1346577569
+UniRef50_UPI000365BDB0: hypothetical protein, partial	0.1346457212
+UniRef50_UPI000365BDB0: hypothetical protein, partial|unclassified	0.1346457212
+UniRef50_UPI0003111719: FAD-containing monooxygenase EthA	0.1346420803
+UniRef50_UPI0003111719: FAD-containing monooxygenase EthA|unclassified	0.1346420803
+UniRef50_A8F8I3: Phosphoribosylformylglycinamidine synthase 2	0.1346379001
+UniRef50_A8F8I3: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.1346379001
+UniRef50_K1R9M4: Phage terminase, large subunit	0.1346370626
+UniRef50_K1R9M4: Phage terminase, large subunit|unclassified	0.1346370626
+UniRef50_UPI0002899EA1: N-acyl-L-amino acid amidohydrolase	0.1346344486
+UniRef50_UPI0002899EA1: N-acyl-L-amino acid amidohydrolase|unclassified	0.1346344486
+UniRef50_T1BVM0: Nicotinamide nucleotide transhydrogenase, subunit alpha	0.1346336664
+UniRef50_T1BVM0: Nicotinamide nucleotide transhydrogenase, subunit alpha|unclassified	0.1346336664
+UniRef50_UPI00047BEFD4: HAD family hydrolase	0.1346101843
+UniRef50_UPI00047BEFD4: HAD family hydrolase|unclassified	0.1346101843
+UniRef50_B6VLW9: Putative bacteriophage protein	0.1345987565
+UniRef50_B6VLW9: Putative bacteriophage protein|unclassified	0.1345987565
+UniRef50_UPI0003B3A135: bacitracin ABC transporter ATP-binding protein	0.1345986537
+UniRef50_UPI0003B3A135: bacitracin ABC transporter ATP-binding protein|unclassified	0.1345986537
+UniRef50_UPI0004623795: hypothetical protein TRAVEDRAFT_64908	0.1345844628
+UniRef50_UPI0004623795: hypothetical protein TRAVEDRAFT_64908|unclassified	0.1345844628
+UniRef50_A9CLS9	0.1345837229
+UniRef50_A9CLS9|unclassified	0.1345837229
+UniRef50_K0VID4: Replication initiation protein RepC	0.1345733259
+UniRef50_K0VID4: Replication initiation protein RepC|unclassified	0.1345733259
+UniRef50_P57389: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex	0.1345696422
+UniRef50_P57389: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|unclassified	0.1345696422
+UniRef50_UPI00036BAADF: hypothetical protein	0.1345684897
+UniRef50_UPI00036BAADF: hypothetical protein|unclassified	0.1345684897
+UniRef50_E6WPU6: Integral membrane-like protein	0.1345557681
+UniRef50_E6WPU6: Integral membrane-like protein|unclassified	0.1345557681
+UniRef50_UPI000375F1F2: hypothetical protein	0.1345305632
+UniRef50_UPI000375F1F2: hypothetical protein|unclassified	0.1345305632
+UniRef50_UPI00037C0FB7: hypothetical protein, partial	0.1345200983
+UniRef50_UPI00037C0FB7: hypothetical protein, partial|unclassified	0.1345200983
+UniRef50_UPI00046D5EE9: 3-oxoacyl-ACP synthase	0.1345187260
+UniRef50_UPI00046D5EE9: 3-oxoacyl-ACP synthase|unclassified	0.1345187260
+UniRef50_UPI0003657FC4: hypothetical protein	0.1345175283
+UniRef50_UPI0003657FC4: hypothetical protein|unclassified	0.1345175283
+UniRef50_UPI00034A9B47: hypothetical protein	0.1345169426
+UniRef50_UPI00034A9B47: hypothetical protein|unclassified	0.1345169426
+UniRef50_G2PEG4: Transcriptional regulator, HxlR family	0.1344871620
+UniRef50_G2PEG4: Transcriptional regulator, HxlR family|unclassified	0.1344871620
+UniRef50_K1TVZ4: Anthranilate synthase component II (Fragment)	0.1344822121
+UniRef50_K1TVZ4: Anthranilate synthase component II (Fragment)|unclassified	0.1344822121
+UniRef50_UPI0003789F55: hypothetical protein	0.1344667036
+UniRef50_UPI0003789F55: hypothetical protein|unclassified	0.1344667036
+UniRef50_E3L9A9	0.1344526263
+UniRef50_E3L9A9|unclassified	0.1344526263
+UniRef50_UPI000225BA04: aminoglycoside phosphotransferase	0.1344458672
+UniRef50_UPI000225BA04: aminoglycoside phosphotransferase|unclassified	0.1344458672
+UniRef50_UPI00041F0E09: hypothetical protein	0.1344435746
+UniRef50_UPI00041F0E09: hypothetical protein|unclassified	0.1344435746
+UniRef50_UPI00035D750F: hypothetical protein	0.1344381846
+UniRef50_UPI00035D750F: hypothetical protein|unclassified	0.1344381846
+UniRef50_C0WSI7	0.1344329883
+UniRef50_C0WSI7|unclassified	0.1344329883
+UniRef50_Q06VE0	0.1344295969
+UniRef50_Q06VE0|unclassified	0.1344295969
+UniRef50_W4U254: Phage terminase large subunit	0.1344289267
+UniRef50_W4U254: Phage terminase large subunit|unclassified	0.1344289267
+UniRef50_Q89IM0: Blr5614 protein	0.1344271807
+UniRef50_Q89IM0: Blr5614 protein|unclassified	0.1344271807
+UniRef50_Q1GGT9: Phosphoribosyl-AMP cyclohydrolase	0.1344236256
+UniRef50_Q1GGT9: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.1344236256
+UniRef50_K8BR71	0.1344169529
+UniRef50_K8BR71|unclassified	0.1344169529
+UniRef50_L2F8J3	0.1344143279
+UniRef50_L2F8J3|unclassified	0.1344143279
+UniRef50_Q92SI5: Endoribonuclease YbeY	0.1343992504
+UniRef50_Q92SI5: Endoribonuclease YbeY|unclassified	0.1343992504
+UniRef50_UPI0003F8E44A: nitrogenase molybdenum-iron protein subunit alpha	0.1343885633
+UniRef50_UPI0003F8E44A: nitrogenase molybdenum-iron protein subunit alpha|unclassified	0.1343885633
+UniRef50_R1D0M5	0.1343784494
+UniRef50_R1D0M5|unclassified	0.1343784494
+UniRef50_UPI000414829C: hypothetical protein	0.1343744025
+UniRef50_UPI000414829C: hypothetical protein|unclassified	0.1343744025
+UniRef50_V2UZA7	0.1343700689
+UniRef50_V2UZA7|unclassified	0.1343700689
+UniRef50_A0AK10: CCA-adding enzyme	0.1343674491
+UniRef50_A0AK10: CCA-adding enzyme|unclassified	0.1343674491
+UniRef50_E7B8C6: Srfb	0.1343652888
+UniRef50_E7B8C6: Srfb|unclassified	0.1343652888
+UniRef50_UPI00037EABE9: hypothetical protein	0.1343647867
+UniRef50_UPI00037EABE9: hypothetical protein|unclassified	0.1343647867
+UniRef50_UPI00036E664A: hypothetical protein	0.1343620849
+UniRef50_UPI00036E664A: hypothetical protein|unclassified	0.1343620849
+UniRef50_E4V0D6	0.1343572104
+UniRef50_E4V0D6|unclassified	0.1343572104
+UniRef50_O03063: ATP synthase subunit beta, chloroplastic (Fragment)	0.1343546881
+UniRef50_O03063: ATP synthase subunit beta, chloroplastic (Fragment)|unclassified	0.1343546881
+UniRef50_K3YAB8	0.1343504087
+UniRef50_K3YAB8|unclassified	0.1343504087
+UniRef50_L1KK62: SAF domain protein	0.1343494154
+UniRef50_L1KK62: SAF domain protein|unclassified	0.1343494154
+UniRef50_R9IVY1	0.1343221463
+UniRef50_R9IVY1|unclassified	0.1343221463
+UniRef50_M5J361	0.1343136249
+UniRef50_M5J361|unclassified	0.1343136249
+UniRef50_L6ZMW4: Ethanolamine utilization protein EutJ (Fragment)	0.1343132026
+UniRef50_L6ZMW4: Ethanolamine utilization protein EutJ (Fragment)|unclassified	0.1343132026
+UniRef50_I1LH04	0.1343016176
+UniRef50_I1LH04|unclassified	0.1343016176
+UniRef50_UPI000474B155: hypothetical protein	0.1343004843
+UniRef50_UPI000474B155: hypothetical protein|unclassified	0.1343004843
+UniRef50_UPI0003757984: hypothetical protein	0.1342918907
+UniRef50_UPI0003757984: hypothetical protein|unclassified	0.1342918907
+UniRef50_A9B437: DNA-directed RNA polymerase subunit alpha	0.1342871039
+UniRef50_A9B437: DNA-directed RNA polymerase subunit alpha|unclassified	0.1342871039
+UniRef50_F9L2H1	0.1342741785
+UniRef50_F9L2H1|unclassified	0.1342741785
+UniRef50_D0LK45	0.1342729316
+UniRef50_D0LK45|unclassified	0.1342729316
+UniRef50_L1KX98	0.1342631436
+UniRef50_L1KX98|unclassified	0.1342631436
+UniRef50_U3KC48	0.1342617030
+UniRef50_U3KC48|unclassified	0.1342617030
+UniRef50_UPI000474DED0: hypothetical protein	0.1342606202
+UniRef50_UPI000474DED0: hypothetical protein|unclassified	0.1342606202
+UniRef50_R5AUS4	0.1342546787
+UniRef50_R5AUS4|unclassified	0.1342546787
+UniRef50_V8IF29: Membrane protein	0.1342532801
+UniRef50_V8IF29: Membrane protein|unclassified	0.1342532801
+UniRef50_F1Z9C6: GpE+E	0.1342298808
+UniRef50_F1Z9C6: GpE+E|unclassified	0.1342298808
+UniRef50_L8DQB8: Internalin-J	0.1342298446
+UniRef50_L8DQB8: Internalin-J|unclassified	0.1342298446
+UniRef50_A4XE00: Cobyrinic acid a,c-diamide synthase	0.1342284511
+UniRef50_A4XE00: Cobyrinic acid a,c-diamide synthase|unclassified	0.1342284511
+UniRef50_UPI000472DC5E: hypothetical protein	0.1342273751
+UniRef50_UPI000472DC5E: hypothetical protein|unclassified	0.1342273751
+UniRef50_UPI00037FA6EB: hypothetical protein	0.1342267160
+UniRef50_UPI00037FA6EB: hypothetical protein|unclassified	0.1342267160
+UniRef50_A7SRB2: Predicted protein	0.1342172216
+UniRef50_A7SRB2: Predicted protein|unclassified	0.1342172216
+UniRef50_UPI000466704B: hypothetical protein, partial	0.1342126354
+UniRef50_UPI000466704B: hypothetical protein, partial|unclassified	0.1342126354
+UniRef50_S1FXN2	0.1342091199
+UniRef50_S1FXN2|unclassified	0.1342091199
+UniRef50_UPI0003D768D4: PREDICTED: homeobox protein HMX1 isoform X1	0.1342073675
+UniRef50_UPI0003D768D4: PREDICTED: homeobox protein HMX1 isoform X1|unclassified	0.1342073675
+UniRef50_UPI000465D536: hypothetical protein	0.1341917509
+UniRef50_UPI000465D536: hypothetical protein|unclassified	0.1341917509
+UniRef50_A6FMH5	0.1341887660
+UniRef50_A6FMH5|unclassified	0.1341887660
+UniRef50_UPI0003AD0F18: hypothetical protein	0.1341885422
+UniRef50_UPI0003AD0F18: hypothetical protein|unclassified	0.1341885422
+UniRef50_UPI00016A644E: phosphoenolpyruvate synthase	0.1341704386
+UniRef50_UPI00016A644E: phosphoenolpyruvate synthase|unclassified	0.1341704386
+UniRef50_A3V3Q1	0.1341569378
+UniRef50_A3V3Q1|unclassified	0.1341569378
+UniRef50_A1AT17: Cobyrinic acid A,C-diamide synthase	0.1341541791
+UniRef50_A1AT17: Cobyrinic acid A,C-diamide synthase|unclassified	0.1341541791
+UniRef50_S6C323	0.1341441280
+UniRef50_S6C323|unclassified	0.1341441280
+UniRef50_UPI00046EAF7B: hypothetical protein, partial	0.1341371468
+UniRef50_UPI00046EAF7B: hypothetical protein, partial|unclassified	0.1341371468
+UniRef50_P56109: Fructose-bisphosphate aldolase	0.1341317542
+UniRef50_P56109: Fructose-bisphosphate aldolase|unclassified	0.1341317542
+UniRef50_Q89AN3: DNA polymerase III subunit epsilon	0.1341210725
+UniRef50_Q89AN3: DNA polymerase III subunit epsilon|unclassified	0.1341210725
+UniRef50_UPI000360FDAB: hypothetical protein	0.1341168211
+UniRef50_UPI000360FDAB: hypothetical protein|unclassified	0.1341168211
+UniRef50_UPI0004743039: hypothetical protein	0.1341107488
+UniRef50_UPI0004743039: hypothetical protein|unclassified	0.1341107488
+UniRef50_UPI00021A5788: PREDICTED: transcriptional regulatory protein CusR-like	0.1341085710
+UniRef50_UPI00021A5788: PREDICTED: transcriptional regulatory protein CusR-like|unclassified	0.1341085710
+UniRef50_UPI0002D360E1: hypothetical protein	0.1341077833
+UniRef50_UPI0002D360E1: hypothetical protein|unclassified	0.1341077833
+UniRef50_G5JI67	0.1341055924
+UniRef50_G5JI67|unclassified	0.1341055924
+UniRef50_UPI00031B06C3: hypothetical protein	0.1341009045
+UniRef50_UPI00031B06C3: hypothetical protein|unclassified	0.1341009045
+UniRef50_Q98CW9: Mll4969 protein	0.1340991968
+UniRef50_Q98CW9: Mll4969 protein|unclassified	0.1340991968
+UniRef50_UPI00046C924F: hypothetical protein	0.1340917776
+UniRef50_UPI00046C924F: hypothetical protein|unclassified	0.1340917776
+UniRef50_UPI000360F81F: hypothetical protein	0.1340899527
+UniRef50_UPI000360F81F: hypothetical protein|unclassified	0.1340899527
+UniRef50_T1I8J2	0.1340809308
+UniRef50_T1I8J2|unclassified	0.1340809308
+UniRef50_UPI000373602A: hypothetical protein	0.1340804418
+UniRef50_UPI000373602A: hypothetical protein|unclassified	0.1340804418
+UniRef50_UPI000372BC5E: hypothetical protein, partial	0.1340751172
+UniRef50_UPI000372BC5E: hypothetical protein, partial|unclassified	0.1340751172
+UniRef50_UPI00037E876F: hypothetical protein	0.1340750012
+UniRef50_UPI00037E876F: hypothetical protein|unclassified	0.1340750012
+UniRef50_UPI000376DF81: hypothetical protein	0.1340712775
+UniRef50_UPI000376DF81: hypothetical protein|unclassified	0.1340712775
+UniRef50_L8Y0Z6: HTH-type transcriptional repressor NsrR	0.1340705490
+UniRef50_L8Y0Z6: HTH-type transcriptional repressor NsrR|unclassified	0.1340705490
+UniRef50_E0UUR1: Class II aldolase/adducin family protein	0.1340593128
+UniRef50_E0UUR1: Class II aldolase/adducin family protein|unclassified	0.1340593128
+UniRef50_U3U3S4: NAD(P)H dehydrogenase (Quinone)	0.1340565656
+UniRef50_U3U3S4: NAD(P)H dehydrogenase (Quinone)|unclassified	0.1340565656
+UniRef50_UPI0002F7FD1B: hypothetical protein	0.1340550382
+UniRef50_UPI0002F7FD1B: hypothetical protein|unclassified	0.1340550382
+UniRef50_UPI00036644EB: hypothetical protein	0.1340487529
+UniRef50_UPI00036644EB: hypothetical protein|unclassified	0.1340487529
+UniRef50_UPI0003F80239: hypothetical protein	0.1340426417
+UniRef50_UPI0003F80239: hypothetical protein|unclassified	0.1340426417
+UniRef50_UPI0003F78D63: hypothetical protein	0.1340418528
+UniRef50_UPI0003F78D63: hypothetical protein|unclassified	0.1340418528
+UniRef50_UPI00036094D7: hypothetical protein	0.1340365118
+UniRef50_UPI00036094D7: hypothetical protein|unclassified	0.1340365118
+UniRef50_UPI0004633E17: dTDP-4-dehydrorhamnose 3,5-epimerase	0.1340349292
+UniRef50_UPI0004633E17: dTDP-4-dehydrorhamnose 3,5-epimerase|unclassified	0.1340349292
+UniRef50_UPI000368247E: hypothetical protein	0.1340204031
+UniRef50_UPI000368247E: hypothetical protein|unclassified	0.1340204031
+UniRef50_F0YDM5	0.1340117648
+UniRef50_F0YDM5|unclassified	0.1340117648
+UniRef50_A0A059ISQ7	0.1340106119
+UniRef50_A0A059ISQ7|unclassified	0.1340106119
+UniRef50_F2NJW6: Lytic transglycosylase catalytic	0.1340104368
+UniRef50_F2NJW6: Lytic transglycosylase catalytic|unclassified	0.1340104368
+UniRef50_F5M171	0.1340034021
+UniRef50_F5M171|unclassified	0.1340034021
+UniRef50_R6M449	0.1340030926
+UniRef50_R6M449|unclassified	0.1340030926
+UniRef50_V6UC46	0.1339938450
+UniRef50_V6UC46|unclassified	0.1339938450
+UniRef50_E1W4Y0	0.1339927780
+UniRef50_E1W4Y0|unclassified	0.1339927780
+UniRef50_UPI0003C1377F: PREDICTED: 3-hydroxybutyrate dehydrogenase type 2-like	0.1339835755
+UniRef50_UPI0003C1377F: PREDICTED: 3-hydroxybutyrate dehydrogenase type 2-like|unclassified	0.1339835755
+UniRef50_UPI0001DD0CDF: flagellar hook capping protein	0.1339830223
+UniRef50_UPI0001DD0CDF: flagellar hook capping protein|unclassified	0.1339830223
+UniRef50_A3PW97: Adenosylhomocysteinase	0.1339667010
+UniRef50_A3PW97: Adenosylhomocysteinase|unclassified	0.1339667010
+UniRef50_T1CEP2: DnaK suppressor protein (Fragment)	0.1339595554
+UniRef50_T1CEP2: DnaK suppressor protein (Fragment)|unclassified	0.1339595554
+UniRef50_UPI00046F0373: ATP-dependent DNA helicase PcrA	0.1339582266
+UniRef50_UPI00046F0373: ATP-dependent DNA helicase PcrA|unclassified	0.1339582266
+UniRef50_UPI0003717BEB: diguanylate cyclase	0.1339576527
+UniRef50_UPI0003717BEB: diguanylate cyclase|unclassified	0.1339576527
+UniRef50_UPI00047933C3: peptide permease BMEII0860	0.1339544298
+UniRef50_UPI00047933C3: peptide permease BMEII0860|unclassified	0.1339544298
+UniRef50_UPI0002F5C7CD: alpha/beta hydrolase	0.1339531324
+UniRef50_UPI0002F5C7CD: alpha/beta hydrolase|unclassified	0.1339531324
+UniRef50_Q28QA8: Sarcosine oxidase gamma subunit	0.1339366408
+UniRef50_Q28QA8: Sarcosine oxidase gamma subunit|unclassified	0.1339366408
+UniRef50_A9D6B9	0.1339269022
+UniRef50_A9D6B9|unclassified	0.1339269022
+UniRef50_F7RPV8	0.1339268520
+UniRef50_F7RPV8|unclassified	0.1339268520
+UniRef50_M4XH88	0.1339233623
+UniRef50_M4XH88|unclassified	0.1339233623
+UniRef50_G9R8E5	0.1339171732
+UniRef50_G9R8E5|unclassified	0.1339171732
+UniRef50_P25078: Deoxyribodipyrimidine photo-lyase	0.1339115909
+UniRef50_P25078: Deoxyribodipyrimidine photo-lyase|unclassified	0.1339115909
+UniRef50_B6XGE2: Putative dGTPase	0.1338955395
+UniRef50_B6XGE2: Putative dGTPase|unclassified	0.1338955395
+UniRef50_K0RRK0	0.1338758260
+UniRef50_K0RRK0|unclassified	0.1338758260
+UniRef50_D2N8C2	0.1338697529
+UniRef50_D2N8C2|unclassified	0.1338697529
+UniRef50_UPI000477B3C9: esterase	0.1338549356
+UniRef50_UPI000477B3C9: esterase|unclassified	0.1338549356
+UniRef50_S5TN93: Bll5866 protein	0.1338544064
+UniRef50_S5TN93: Bll5866 protein|unclassified	0.1338544064
+UniRef50_S8BZ83	0.1338416220
+UniRef50_S8BZ83|unclassified	0.1338416220
+UniRef50_K2BCC1	0.1338385441
+UniRef50_K2BCC1|unclassified	0.1338385441
+UniRef50_D8U003	0.1338276066
+UniRef50_D8U003|unclassified	0.1338276066
+UniRef50_UPI00047229F6: hypothetical protein	0.1338228433
+UniRef50_UPI00047229F6: hypothetical protein|unclassified	0.1338228433
+UniRef50_A0A009G339: HlyD secretion family protein	0.1338181108
+UniRef50_A0A009G339: HlyD secretion family protein|unclassified	0.1338181108
+UniRef50_I9P427: Flagellar basal-body rod protein	0.1338149487
+UniRef50_I9P427: Flagellar basal-body rod protein|unclassified	0.1338149487
+UniRef50_S3XXK6	0.1338116080
+UniRef50_S3XXK6|unclassified	0.1338116080
+UniRef50_B2U7R1: NADH-quinone oxidoreductase subunit A	0.1337786148
+UniRef50_B2U7R1: NADH-quinone oxidoreductase subunit A|unclassified	0.1337786148
+UniRef50_Q5X449	0.1337780997
+UniRef50_Q5X449|unclassified	0.1337780997
+UniRef50_D1ARM4	0.1337722810
+UniRef50_D1ARM4|unclassified	0.1337722810
+UniRef50_A7N581: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta 2	0.1337702023
+UniRef50_A7N581: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta 2|unclassified	0.1337702023
+UniRef50_Q728P4: Adenosylmethionine-8-amino-7-oxononanoate aminotransferase	0.1337362901
+UniRef50_Q728P4: Adenosylmethionine-8-amino-7-oxononanoate aminotransferase|unclassified	0.1337362901
+UniRef50_A4J659: NADH-quinone oxidoreductase subunit B	0.1337201579
+UniRef50_A4J659: NADH-quinone oxidoreductase subunit B|unclassified	0.1337201579
+UniRef50_A5UNJ4: Adhesin-like protein	0.1336911722
+UniRef50_A5UNJ4: Adhesin-like protein|unclassified	0.1336911722
+UniRef50_Q9CIR1: tRNA N6-adenosine threonylcarbamoyltransferase	0.1336884695
+UniRef50_Q9CIR1: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.1336884695
+UniRef50_C0Z8P2: Lipoprotein	0.1336883301
+UniRef50_C0Z8P2: Lipoprotein|unclassified	0.1336883301
+UniRef50_O77834: Peroxiredoxin-6	0.1336531712
+UniRef50_O77834: Peroxiredoxin-6|unclassified	0.1336531712
+UniRef50_P30041: Peroxiredoxin-6	0.1336531712
+UniRef50_P30041: Peroxiredoxin-6|unclassified	0.1336531712
+UniRef50_Q5XAK0: Alpha-glycerophosphate oxidase	0.1336405649
+UniRef50_Q5XAK0: Alpha-glycerophosphate oxidase|unclassified	0.1336405649
+UniRef50_UPI00040DE41D: GntR family transcriptional regulator	0.1336300823
+UniRef50_UPI00040DE41D: GntR family transcriptional regulator|unclassified	0.1336300823
+UniRef50_UPI00041E6C1A: hypothetical protein	0.1336253899
+UniRef50_UPI00041E6C1A: hypothetical protein|unclassified	0.1336253899
+UniRef50_UPI000362F2F6: hypothetical protein	0.1336184481
+UniRef50_UPI000362F2F6: hypothetical protein|unclassified	0.1336184481
+UniRef50_UPI0004700EA0: urocanate hydratase, partial	0.1336131291
+UniRef50_UPI0004700EA0: urocanate hydratase, partial|unclassified	0.1336131291
+UniRef50_UPI00046F371B: chorismate synthase	0.1336097832
+UniRef50_UPI00046F371B: chorismate synthase|unclassified	0.1336097832
+UniRef50_UPI0003F0B276: PREDICTED: cationic amino acid transporter 4-like	0.1336084391
+UniRef50_UPI0003F0B276: PREDICTED: cationic amino acid transporter 4-like|unclassified	0.1336084391
+UniRef50_J1HLJ2: PF06224 family protein	0.1336079771
+UniRef50_J1HLJ2: PF06224 family protein|unclassified	0.1336079771
+UniRef50_C5AH73: FimV C-terminal domain-containing protein	0.1335960690
+UniRef50_C5AH73: FimV C-terminal domain-containing protein|unclassified	0.1335960690
+UniRef50_Q82BB8: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 1	0.1335930165
+UniRef50_Q82BB8: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 1|unclassified	0.1335930165
+UniRef50_A8LL41: MJ0042 family finger-like protein	0.1335859074
+UniRef50_A8LL41: MJ0042 family finger-like protein|unclassified	0.1335859074
+UniRef50_I6Y1G9: Putative membrane protein	0.1335800012
+UniRef50_I6Y1G9: Putative membrane protein|unclassified	0.1335800012
+UniRef50_UPI000225ECE6: hypothetical protein	0.1335743181
+UniRef50_UPI000225ECE6: hypothetical protein|unclassified	0.1335743181
+UniRef50_A0A011P7D3: Transposase	0.1335570911
+UniRef50_A0A011P7D3: Transposase|unclassified	0.1335570911
+UniRef50_UPI0003491081: hypothetical protein	0.1335494071
+UniRef50_UPI0003491081: hypothetical protein|unclassified	0.1335494071
+UniRef50_UPI0003675596: hypothetical protein	0.1335494071
+UniRef50_UPI0003675596: hypothetical protein|unclassified	0.1335494071
+UniRef50_S2K1W7	0.1335470722
+UniRef50_S2K1W7|unclassified	0.1335470722
+UniRef50_X6PNZ5: Lipoprotein	0.1335447868
+UniRef50_X6PNZ5: Lipoprotein|unclassified	0.1335447868
+UniRef50_UPI000262D182: tRNA modification GTPase TrmE	0.1335268830
+UniRef50_UPI000262D182: tRNA modification GTPase TrmE|unclassified	0.1335268830
+UniRef50_X0X471: Marine sediment metagenome DNA, contig: S01H1_S30434 (Fragment)	0.1335099179
+UniRef50_X0X471: Marine sediment metagenome DNA, contig: S01H1_S30434 (Fragment)|unclassified	0.1335099179
+UniRef50_Q89AJ6: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex	0.1335061521
+UniRef50_Q89AJ6: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|unclassified	0.1335061521
+UniRef50_UPI0003B5440C: histidine kinase	0.1334775683
+UniRef50_UPI0003B5440C: histidine kinase|unclassified	0.1334775683
+UniRef50_UPI00038FBBAF: Putative methyltransferase	0.1334698017
+UniRef50_UPI00038FBBAF: Putative methyltransferase|unclassified	0.1334698017
+UniRef50_E2PXX4: Putative regulator	0.1334484284
+UniRef50_E2PXX4: Putative regulator|unclassified	0.1334484284
+UniRef50_C3CBV7	0.1334461659
+UniRef50_C3CBV7|unclassified	0.1334461659
+UniRef50_U6GFY6	0.1334460858
+UniRef50_U6GFY6|unclassified	0.1334460858
+UniRef50_M5A578	0.1334449994
+UniRef50_M5A578|unclassified	0.1334449994
+UniRef50_A1TYV6: Pilus assembly protein, PilO	0.1334449592
+UniRef50_A1TYV6: Pilus assembly protein, PilO|unclassified	0.1334449592
+UniRef50_UPI000364B5C2: hypothetical protein	0.1334442448
+UniRef50_UPI000364B5C2: hypothetical protein|unclassified	0.1334442448
+UniRef50_UPI0000DB7F4F: PREDICTED: putative ATP-dependent Clp protease proteolytic subunit, mitochondrial-like, partial	0.1334379798
+UniRef50_UPI0000DB7F4F: PREDICTED: putative ATP-dependent Clp protease proteolytic subunit, mitochondrial-like, partial|unclassified	0.1334379798
+UniRef50_F6N8F1: Fibroin (Fragment)	0.1334340556
+UniRef50_F6N8F1: Fibroin (Fragment)|unclassified	0.1334340556
+UniRef50_M6VVW5: PF12769 domain protein	0.1334324126
+UniRef50_M6VVW5: PF12769 domain protein|unclassified	0.1334324126
+UniRef50_E7NEK0: Ade1p	0.1334308149
+UniRef50_E7NEK0: Ade1p|unclassified	0.1334308149
+UniRef50_UPI00047DFB5E: hypothetical protein	0.1334275703
+UniRef50_UPI00047DFB5E: hypothetical protein|unclassified	0.1334275703
+UniRef50_A0A016UJ97	0.1334247121
+UniRef50_A0A016UJ97|unclassified	0.1334247121
+UniRef50_D5DDX0	0.1334239714
+UniRef50_D5DDX0|unclassified	0.1334239714
+UniRef50_UPI00045E4DF5: PREDICTED: selenoprotein O isoform X2	0.1334203246
+UniRef50_UPI00045E4DF5: PREDICTED: selenoprotein O isoform X2|unclassified	0.1334203246
+UniRef50_UPI00039A65D3: MULTISPECIES: adenylosuccinate synthetase	0.1334146684
+UniRef50_UPI00039A65D3: MULTISPECIES: adenylosuccinate synthetase|unclassified	0.1334146684
+UniRef50_UPI00039FEEE3: hypothetical protein	0.1334144069
+UniRef50_UPI00039FEEE3: hypothetical protein|unclassified	0.1334144069
+UniRef50_A4SYS9: Transglutaminase, N-terminal domain protein	0.1334007809
+UniRef50_A4SYS9: Transglutaminase, N-terminal domain protein|unclassified	0.1334007809
+UniRef50_A6VM92	0.1333939046
+UniRef50_A6VM92|unclassified	0.1333939046
+UniRef50_UPI000474F879: hypothetical protein	0.1333938524
+UniRef50_UPI000474F879: hypothetical protein|unclassified	0.1333938524
+UniRef50_X1ATH4: Marine sediment metagenome DNA, contig: S01H4_L07106 (Fragment)	0.1333909667
+UniRef50_X1ATH4: Marine sediment metagenome DNA, contig: S01H4_L07106 (Fragment)|unclassified	0.1333909667
+UniRef50_UPI00037862F0: hypothetical protein	0.1333853990
+UniRef50_UPI00037862F0: hypothetical protein|unclassified	0.1333853990
+UniRef50_UPI00037D8839: hypothetical protein	0.1333830848
+UniRef50_UPI00037D8839: hypothetical protein|unclassified	0.1333830848
+UniRef50_E3EXQ5	0.1333817264
+UniRef50_E3EXQ5|unclassified	0.1333817264
+UniRef50_UPI00036AF0AB: hypothetical protein	0.1333816917
+UniRef50_UPI00036AF0AB: hypothetical protein|unclassified	0.1333816917
+UniRef50_Q1D2K0: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	0.1333677370
+UniRef50_Q1D2K0: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.1333677370
+UniRef50_Q38XW7: Phosphoribosylformylglycinamidine synthase 2	0.1333667963
+UniRef50_Q38XW7: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.1333667963
+UniRef50_Q7W2B7: Shikimate kinase	0.1333521259
+UniRef50_Q7W2B7: Shikimate kinase|unclassified	0.1333521259
+UniRef50_Q21YC7: NADH-quinone oxidoreductase subunit A	0.1333512766
+UniRef50_Q21YC7: NADH-quinone oxidoreductase subunit A|unclassified	0.1333512766
+UniRef50_UPI000361AF30: hypothetical protein	0.1333499726
+UniRef50_UPI000361AF30: hypothetical protein|unclassified	0.1333499726
+UniRef50_UPI0003013AD2: hypothetical protein	0.1333492856
+UniRef50_UPI0003013AD2: hypothetical protein|unclassified	0.1333492856
+UniRef50_UPI000470C485: hypothetical protein	0.1333492805
+UniRef50_UPI000470C485: hypothetical protein|unclassified	0.1333492805
+UniRef50_UPI000478FCEB: alkyl hydroperoxide reductase	0.1333478883
+UniRef50_UPI000478FCEB: alkyl hydroperoxide reductase|unclassified	0.1333478883
+UniRef50_UPI00036F961E: hypothetical protein	0.1333411847
+UniRef50_UPI00036F961E: hypothetical protein|unclassified	0.1333411847
+UniRef50_R0DVQ8	0.1333353580
+UniRef50_R0DVQ8|unclassified	0.1333353580
+UniRef50_K9YAE2	0.1333341845
+UniRef50_K9YAE2|unclassified	0.1333341845
+UniRef50_UPI0002652323: PREDICTED: CUB and sushi domain-containing protein 1-like	0.1333247995
+UniRef50_UPI0002652323: PREDICTED: CUB and sushi domain-containing protein 1-like|unclassified	0.1333247995
+UniRef50_F2MJL8: Replication initiation/membrane attachment protein	0.1332917309
+UniRef50_F2MJL8: Replication initiation/membrane attachment protein|unclassified	0.1332917309
+UniRef50_UPI000288AE42: MarR family transcriptional regulator	0.1332912982
+UniRef50_UPI000288AE42: MarR family transcriptional regulator|unclassified	0.1332912982
+UniRef50_T2LDT1	0.1332894728
+UniRef50_T2LDT1|unclassified	0.1332894728
+UniRef50_X4B6N1	0.1332850750
+UniRef50_X4B6N1|unclassified	0.1332850750
+UniRef50_UPI00046D0423: mannonate dehydratase, partial	0.1332823543
+UniRef50_UPI00046D0423: mannonate dehydratase, partial|unclassified	0.1332823543
+UniRef50_A0A024L193	0.1332706482
+UniRef50_A0A024L193|unclassified	0.1332706482
+UniRef50_R5NE80	0.1332692895
+UniRef50_R5NE80|unclassified	0.1332692895
+UniRef50_Q476L2	0.1332684604
+UniRef50_Q476L2|unclassified	0.1332684604
+UniRef50_UPI0002559097: membrane protein	0.1332661151
+UniRef50_UPI0002559097: membrane protein|unclassified	0.1332661151
+UniRef50_B9MN03: UDP-N-acetylenolpyruvoylglucosamine reductase	0.1332657218
+UniRef50_B9MN03: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.1332657218
+UniRef50_UPI0004774024: hypothetical protein	0.1332518175
+UniRef50_UPI0004774024: hypothetical protein|unclassified	0.1332518175
+UniRef50_UPI0002DDB2FE: hypothetical protein	0.1332488430
+UniRef50_UPI0002DDB2FE: hypothetical protein|unclassified	0.1332488430
+UniRef50_UPI0002197447: ABC transporter ATP-binding protein	0.1332453738
+UniRef50_UPI0002197447: ABC transporter ATP-binding protein|unclassified	0.1332453738
+UniRef50_K6VBL3: Type IV secretion system family protein	0.1332393979
+UniRef50_K6VBL3: Type IV secretion system family protein|unclassified	0.1332393979
+UniRef50_W0H9P1	0.1332331182
+UniRef50_W0H9P1|unclassified	0.1332331182
+UniRef50_UPI00037543E9: cold-shock protein	0.1332297032
+UniRef50_UPI00037543E9: cold-shock protein|unclassified	0.1332297032
+UniRef50_W7WPL6: Type IV secretion system protein virB4	0.1332228416
+UniRef50_W7WPL6: Type IV secretion system protein virB4|unclassified	0.1332228416
+UniRef50_UPI000365A141: hypothetical protein	0.1332212247
+UniRef50_UPI000365A141: hypothetical protein|unclassified	0.1332212247
+UniRef50_F8JQM1	0.1332147050
+UniRef50_F8JQM1|unclassified	0.1332147050
+UniRef50_A6H086: Potassium-transporting ATPase A chain	0.1332094249
+UniRef50_A6H086: Potassium-transporting ATPase A chain|unclassified	0.1332094249
+UniRef50_UPI00036FC1C6: hypothetical protein	0.1332036162
+UniRef50_UPI00036FC1C6: hypothetical protein|unclassified	0.1332036162
+UniRef50_A9BJB2: Glutamate--tRNA ligase 1	0.1332015132
+UniRef50_A9BJB2: Glutamate--tRNA ligase 1|unclassified	0.1332015132
+UniRef50_Q2Y8M6: N-succinylarginine dihydrolase	0.1331948214
+UniRef50_Q2Y8M6: N-succinylarginine dihydrolase|unclassified	0.1331948214
+UniRef50_Q93XI4: N-carbamoylputrescine amidase	0.1331847586
+UniRef50_Q93XI4: N-carbamoylputrescine amidase|unclassified	0.1331847586
+UniRef50_UPI0003B46F8F: hypothetical protein	0.1331829125
+UniRef50_UPI0003B46F8F: hypothetical protein|unclassified	0.1331829125
+UniRef50_D3X510: Granule bound starch synthase (Fragment)	0.1331762215
+UniRef50_D3X510: Granule bound starch synthase (Fragment)|unclassified	0.1331762215
+UniRef50_Q608P3: Coenzyme PQQ synthesis protein B	0.1331634428
+UniRef50_Q608P3: Coenzyme PQQ synthesis protein B|unclassified	0.1331634428
+UniRef50_UPI0004645B86: hypothetical protein	0.1331592700
+UniRef50_UPI0004645B86: hypothetical protein|unclassified	0.1331592700
+UniRef50_UPI00028977BC: antibiotic transporter	0.1331555109
+UniRef50_UPI00028977BC: antibiotic transporter|unclassified	0.1331555109
+UniRef50_UPI0003B4BDEF: thioesterase	0.1331451196
+UniRef50_UPI0003B4BDEF: thioesterase|unclassified	0.1331451196
+UniRef50_UPI00036BBAA6: hypothetical protein, partial	0.1331411937
+UniRef50_UPI00036BBAA6: hypothetical protein, partial|unclassified	0.1331411937
+UniRef50_X6FSP9	0.1331407453
+UniRef50_X6FSP9|unclassified	0.1331407453
+UniRef50_UPI00035D0F9F: hypothetical protein, partial	0.1331357140
+UniRef50_UPI00035D0F9F: hypothetical protein, partial|unclassified	0.1331357140
+UniRef50_S4NIM9	0.1331268116
+UniRef50_S4NIM9|unclassified	0.1331268116
+UniRef50_V7ECZ5	0.1331265988
+UniRef50_V7ECZ5|unclassified	0.1331265988
+UniRef50_B2V4B1: Peptide deformylase	0.1331235475
+UniRef50_B2V4B1: Peptide deformylase|unclassified	0.1331235475
+UniRef50_UPI000362AEF0: hypothetical protein	0.1331209697
+UniRef50_UPI000362AEF0: hypothetical protein|unclassified	0.1331209697
+UniRef50_W1QBV5: Monomeric glyoxalase I	0.1331190008
+UniRef50_W1QBV5: Monomeric glyoxalase I|unclassified	0.1331190008
+UniRef50_B9TEU6	0.1331179627
+UniRef50_B9TEU6|unclassified	0.1331179627
+UniRef50_W7WH83: VWA domain containing CoxE-like protein	0.1331016288
+UniRef50_W7WH83: VWA domain containing CoxE-like protein|unclassified	0.1331016288
+UniRef50_D7UXM6: Nuclear export factor GLE1	0.1330998037
+UniRef50_D7UXM6: Nuclear export factor GLE1|unclassified	0.1330998037
+UniRef50_A7GKW1: Cna B domain protein	0.1330924800
+UniRef50_A7GKW1: Cna B domain protein|unclassified	0.1330924800
+UniRef50_UPI00029B2B81: methylated-DNA--[protein]-cysteine S-methyltransferase	0.1330897865
+UniRef50_UPI00029B2B81: methylated-DNA--[protein]-cysteine S-methyltransferase|unclassified	0.1330897865
+UniRef50_Q5FAD3: Shikimate kinase	0.1330877265
+UniRef50_Q5FAD3: Shikimate kinase|unclassified	0.1330877265
+UniRef50_C1KYK6	0.1330851496
+UniRef50_C1KYK6|unclassified	0.1330851496
+UniRef50_UPI000416F2B1: alpha-amylase	0.1330761733
+UniRef50_UPI000416F2B1: alpha-amylase|unclassified	0.1330761733
+UniRef50_UPI00046CAC7D: hypothetical protein	0.1330709054
+UniRef50_UPI00046CAC7D: hypothetical protein|unclassified	0.1330709054
+UniRef50_P16006: Deoxycytidylate deaminase	0.1330608658
+UniRef50_P16006: Deoxycytidylate deaminase|unclassified	0.1330608658
+UniRef50_UPI000392D5B7: PREDICTED: ephrin-A4-like	0.1330413047
+UniRef50_UPI000392D5B7: PREDICTED: ephrin-A4-like|unclassified	0.1330413047
+UniRef50_UPI0003676E77: hypothetical protein	0.1330333845
+UniRef50_UPI0003676E77: hypothetical protein|unclassified	0.1330333845
+UniRef50_UPI00047772EE: hypothetical protein	0.1330287960
+UniRef50_UPI00047772EE: hypothetical protein|unclassified	0.1330287960
+UniRef50_A4YME6	0.1330133983
+UniRef50_A4YME6|unclassified	0.1330133983
+UniRef50_Q0BT56: Crossover junction endodeoxyribonuclease RuvC	0.1330058283
+UniRef50_Q0BT56: Crossover junction endodeoxyribonuclease RuvC|unclassified	0.1330058283
+UniRef50_UPI000379F901: hypothetical protein	0.1329974238
+UniRef50_UPI000379F901: hypothetical protein|unclassified	0.1329974238
+UniRef50_O28912: Phosphate import ATP-binding protein PstB	0.1329887107
+UniRef50_O28912: Phosphate import ATP-binding protein PstB|unclassified	0.1329887107
+UniRef50_P44482: 2-dehydro-3-deoxygluconokinase	0.1329808076
+UniRef50_P44482: 2-dehydro-3-deoxygluconokinase|unclassified	0.1329808076
+UniRef50_UPI00037AE633: hypothetical protein	0.1329806309
+UniRef50_UPI00037AE633: hypothetical protein|unclassified	0.1329806309
+UniRef50_UPI00029B288C: integrase catalytic subunit	0.1329435076
+UniRef50_UPI00029B288C: integrase catalytic subunit|unclassified	0.1329435076
+UniRef50_I0DWE6: Stringent starvation protein A	0.1329329360
+UniRef50_I0DWE6: Stringent starvation protein A|unclassified	0.1329329360
+UniRef50_UPI00037C72D9: hypothetical protein	0.1329205732
+UniRef50_UPI00037C72D9: hypothetical protein|unclassified	0.1329205732
+UniRef50_UPI00036B83EF: hypothetical protein	0.1329146379
+UniRef50_UPI00036B83EF: hypothetical protein|unclassified	0.1329146379
+UniRef50_W1JW65	0.1329127303
+UniRef50_W1JW65|unclassified	0.1329127303
+UniRef50_X6PFK4	0.1328994491
+UniRef50_X6PFK4|unclassified	0.1328994491
+UniRef50_Q3JSM3	0.1328917929
+UniRef50_Q3JSM3|unclassified	0.1328917929
+UniRef50_V9VTD6	0.1328815339
+UniRef50_V9VTD6|unclassified	0.1328815339
+UniRef50_UPI00047AB688: acetylglutamate kinase	0.1328712290
+UniRef50_UPI00047AB688: acetylglutamate kinase|unclassified	0.1328712290
+UniRef50_UPI000479C226: hypothetical protein	0.1328671595
+UniRef50_UPI000479C226: hypothetical protein|unclassified	0.1328671595
+UniRef50_N9ZY49	0.1328478152
+UniRef50_N9ZY49|unclassified	0.1328478152
+UniRef50_N2WBD2	0.1328461334
+UniRef50_N2WBD2|unclassified	0.1328461334
+UniRef50_W8S8B2: Pe-pgrs family protein	0.1328361644
+UniRef50_W8S8B2: Pe-pgrs family protein|unclassified	0.1328361644
+UniRef50_UPI0003709308: hypothetical protein	0.1328355141
+UniRef50_UPI0003709308: hypothetical protein|unclassified	0.1328355141
+UniRef50_E8W2E0	0.1328277766
+UniRef50_E8W2E0|unclassified	0.1328277766
+UniRef50_UPI0002B8D6C5: PREDICTED: succinate dehydrogenase cytochrome b560 subunit, mitochondrial-like	0.1328113895
+UniRef50_UPI0002B8D6C5: PREDICTED: succinate dehydrogenase cytochrome b560 subunit, mitochondrial-like|unclassified	0.1328113895
+UniRef50_A6RGF3: Mannitol-1-phosphate 5-dehydrogenase	0.1328108027
+UniRef50_A6RGF3: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.1328108027
+UniRef50_U5WXX0: Heme-binding protein	0.1328045608
+UniRef50_U5WXX0: Heme-binding protein|unclassified	0.1328045608
+UniRef50_UPI00037267D6: hypothetical protein, partial	0.1327991821
+UniRef50_UPI00037267D6: hypothetical protein, partial|unclassified	0.1327991821
+UniRef50_A8T8T9: 2,4-dienoyl-CoA reductase	0.1327958608
+UniRef50_A8T8T9: 2,4-dienoyl-CoA reductase|unclassified	0.1327958608
+UniRef50_D5AAZ0	0.1327854110
+UniRef50_D5AAZ0|unclassified	0.1327854110
+UniRef50_UPI000395B7B5: PREDICTED: U4/U6.U5 tri-snRNP-associated protein 1	0.1327786115
+UniRef50_UPI000395B7B5: PREDICTED: U4/U6.U5 tri-snRNP-associated protein 1|unclassified	0.1327786115
+UniRef50_UPI00037BEAF5: hypothetical protein	0.1327764819
+UniRef50_UPI00037BEAF5: hypothetical protein|unclassified	0.1327764819
+UniRef50_UPI0001FFE2B2: MarR family transcriptional regulator	0.1327659327
+UniRef50_UPI0001FFE2B2: MarR family transcriptional regulator|unclassified	0.1327659327
+UniRef50_M1JH82	0.1327535648
+UniRef50_M1JH82|unclassified	0.1327535648
+UniRef50_W5XHE8	0.1327437720
+UniRef50_W5XHE8|unclassified	0.1327437720
+UniRef50_UPI00047C6CFE: hypothetical protein	0.1327429540
+UniRef50_UPI00047C6CFE: hypothetical protein|unclassified	0.1327429540
+UniRef50_D8UAN8	0.1327422745
+UniRef50_D8UAN8|unclassified	0.1327422745
+UniRef50_UPI0003B6FD69: NADPH:quinone oxidoreductase, partial	0.1327395024
+UniRef50_UPI0003B6FD69: NADPH:quinone oxidoreductase, partial|unclassified	0.1327395024
+UniRef50_UPI00037E9D63: hypothetical protein	0.1327374138
+UniRef50_UPI00037E9D63: hypothetical protein|unclassified	0.1327374138
+UniRef50_UPI000289DB8C: AsnC family transcriptional regulator	0.1327372217
+UniRef50_UPI000289DB8C: AsnC family transcriptional regulator|unclassified	0.1327372217
+UniRef50_UPI000346E0F1: (Fe-S)-binding protein	0.1327212482
+UniRef50_UPI000346E0F1: (Fe-S)-binding protein|unclassified	0.1327212482
+UniRef50_UPI000472714C: hypothetical protein	0.1327107740
+UniRef50_UPI000472714C: hypothetical protein|unclassified	0.1327107740
+UniRef50_A7INT2	0.1326909553
+UniRef50_A7INT2|unclassified	0.1326909553
+UniRef50_I4XZ82	0.1326907607
+UniRef50_I4XZ82|unclassified	0.1326907607
+UniRef50_A3X8X4	0.1326906926
+UniRef50_A3X8X4|unclassified	0.1326906926
+UniRef50_UPI000470F3D8: hypothetical protein	0.1326870995
+UniRef50_UPI000470F3D8: hypothetical protein|unclassified	0.1326870995
+UniRef50_I6ZAP6	0.1326843356
+UniRef50_I6ZAP6|unclassified	0.1326843356
+UniRef50_Q18C32: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.1326783374
+UniRef50_Q18C32: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.1326783374
+UniRef50_UPI00036C6884: hypothetical protein	0.1326775599
+UniRef50_UPI00036C6884: hypothetical protein|unclassified	0.1326775599
+UniRef50_UPI00046931C3: hypothetical protein	0.1326651176
+UniRef50_UPI00046931C3: hypothetical protein|unclassified	0.1326651176
+UniRef50_UPI000375418C: hypothetical protein	0.1326588822
+UniRef50_UPI000375418C: hypothetical protein|unclassified	0.1326588822
+UniRef50_A5FVX2: DNA-directed RNA polymerase subunit omega	0.1326556757
+UniRef50_A5FVX2: DNA-directed RNA polymerase subunit omega|unclassified	0.1326556757
+UniRef50_Q7NK73: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.1326499733
+UniRef50_Q7NK73: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.1326499733
+UniRef50_G8WN72: Tetratricopeptide TPR_4	0.1326491093
+UniRef50_G8WN72: Tetratricopeptide TPR_4|unclassified	0.1326491093
+UniRef50_G2GZR3	0.1326306064
+UniRef50_G2GZR3|unclassified	0.1326306064
+UniRef50_Q99LJ6: Glutathione peroxidase 7	0.1326279900
+UniRef50_Q99LJ6: Glutathione peroxidase 7|unclassified	0.1326279900
+UniRef50_UPI0003447A9F: PREDICTED: progestin and adipoQ receptor family member 6 isoform X4	0.1326245173
+UniRef50_UPI0003447A9F: PREDICTED: progestin and adipoQ receptor family member 6 isoform X4|unclassified	0.1326245173
+UniRef50_Q2KXM4: Pyridoxine 5'-phosphate synthase	0.1326156148
+UniRef50_Q2KXM4: Pyridoxine 5'-phosphate synthase|unclassified	0.1326156148
+UniRef50_UPI00046F34F7: glycosyl transferase family 39	0.1326057306
+UniRef50_UPI00046F34F7: glycosyl transferase family 39|unclassified	0.1326057306
+UniRef50_A1AWJ5: Diaminopimelate epimerase	0.1325836888
+UniRef50_A1AWJ5: Diaminopimelate epimerase|unclassified	0.1325836888
+UniRef50_A3JLI9	0.1325751878
+UniRef50_A3JLI9|unclassified	0.1325751878
+UniRef50_M6FTS0: AAA domain protein	0.1325680330
+UniRef50_M6FTS0: AAA domain protein|unclassified	0.1325680330
+UniRef50_L8H3U8	0.1325639982
+UniRef50_L8H3U8|unclassified	0.1325639982
+UniRef50_UPI0003B4DF40: zinc chelation protein SecC	0.1325476312
+UniRef50_UPI0003B4DF40: zinc chelation protein SecC|unclassified	0.1325476312
+UniRef50_UPI00036E0FE3: hypothetical protein	0.1325459016
+UniRef50_UPI00036E0FE3: hypothetical protein|unclassified	0.1325459016
+UniRef50_UPI00036CACDD: hypothetical protein	0.1325175085
+UniRef50_UPI00036CACDD: hypothetical protein|unclassified	0.1325175085
+UniRef50_UPI00029AC67E: 3-oxoacyl-ACP synthase	0.1325148025
+UniRef50_UPI00029AC67E: 3-oxoacyl-ACP synthase|unclassified	0.1325148025
+UniRef50_UPI00037C9109: hypothetical protein	0.1324902720
+UniRef50_UPI00037C9109: hypothetical protein|unclassified	0.1324902720
+UniRef50_A3SZB9	0.1324877149
+UniRef50_A3SZB9|unclassified	0.1324877149
+UniRef50_UPI000471D941: hypothetical protein	0.1324694426
+UniRef50_UPI000471D941: hypothetical protein|unclassified	0.1324694426
+UniRef50_UPI00046EE1B6: hypothetical protein, partial	0.1324626568
+UniRef50_UPI00046EE1B6: hypothetical protein, partial|unclassified	0.1324626568
+UniRef50_B2IBI7	0.1324474746
+UniRef50_B2IBI7|unclassified	0.1324474746
+UniRef50_UPI000476341B: major facilitator transporter	0.1324379325
+UniRef50_UPI000476341B: major facilitator transporter|unclassified	0.1324379325
+UniRef50_R9MHI1	0.1324306857
+UniRef50_R9MHI1|unclassified	0.1324306857
+UniRef50_UPI00047B6C68: hypothetical protein	0.1324285504
+UniRef50_UPI00047B6C68: hypothetical protein|unclassified	0.1324285504
+UniRef50_UPI00042C3977: PREDICTED: proline-rich protein HaeIII subfamily 1-like	0.1324275489
+UniRef50_UPI00042C3977: PREDICTED: proline-rich protein HaeIII subfamily 1-like|unclassified	0.1324275489
+UniRef50_UPI00037C37FD: hypothetical protein	0.1324240759
+UniRef50_UPI00037C37FD: hypothetical protein|unclassified	0.1324240759
+UniRef50_E1W5S2: Predicted inner membrane protein	0.1324236012
+UniRef50_E1W5S2: Predicted inner membrane protein|unclassified	0.1324236012
+UniRef50_UPI000181653B: putative cation efflux protein	0.1324140006
+UniRef50_UPI000181653B: putative cation efflux protein|unclassified	0.1324140006
+UniRef50_B2UC97	0.1324132647
+UniRef50_B2UC97|unclassified	0.1324132647
+UniRef50_UPI00046CF33E: flagellar basal body rod protein FlgG	0.1324121816
+UniRef50_UPI00046CF33E: flagellar basal body rod protein FlgG|unclassified	0.1324121816
+UniRef50_Q47684: Antitoxin YafW	0.1324066917
+UniRef50_Q47684: Antitoxin YafW|unclassified	0.1324066917
+UniRef50_UPI00034BF683: hypothetical protein	0.1324021229
+UniRef50_UPI00034BF683: hypothetical protein|unclassified	0.1324021229
+UniRef50_UPI0003684D9A: hypothetical protein	0.1323974824
+UniRef50_UPI0003684D9A: hypothetical protein|unclassified	0.1323974824
+UniRef50_X1Q0H7: Marine sediment metagenome DNA, contig: S12H4_C04340 (Fragment)	0.1323971018
+UniRef50_X1Q0H7: Marine sediment metagenome DNA, contig: S12H4_C04340 (Fragment)|unclassified	0.1323971018
+UniRef50_M9RI44: Invasion protein B-like protein	0.1323955645
+UniRef50_M9RI44: Invasion protein B-like protein|unclassified	0.1323955645
+UniRef50_Q89XI0: Bll0334 protein	0.1323921293
+UniRef50_Q89XI0: Bll0334 protein|unclassified	0.1323921293
+UniRef50_UPI00036187AE: hypothetical protein, partial	0.1323918963
+UniRef50_UPI00036187AE: hypothetical protein, partial|unclassified	0.1323918963
+UniRef50_Q88CV2: 3-dehydroquinate synthase	0.1323903753
+UniRef50_Q88CV2: 3-dehydroquinate synthase|unclassified	0.1323903753
+UniRef50_H5SYI3	0.1323824278
+UniRef50_H5SYI3|unclassified	0.1323824278
+UniRef50_UPI000255BA65: potassium transporter	0.1323766640
+UniRef50_UPI000255BA65: potassium transporter|unclassified	0.1323766640
+UniRef50_UPI0003663AE3: hypothetical protein	0.1323737844
+UniRef50_UPI0003663AE3: hypothetical protein|unclassified	0.1323737844
+UniRef50_UPI000373168E: hypothetical protein	0.1323612760
+UniRef50_UPI000373168E: hypothetical protein|unclassified	0.1323612760
+UniRef50_UPI000472DB0F: hypothetical protein	0.1323605842
+UniRef50_UPI000472DB0F: hypothetical protein|unclassified	0.1323605842
+UniRef50_R5IBX6	0.1323504594
+UniRef50_R5IBX6|unclassified	0.1323504594
+UniRef50_B6G1I7: Transcriptional regulator SrlR family protein	0.1323380093
+UniRef50_B6G1I7: Transcriptional regulator SrlR family protein|unclassified	0.1323380093
+UniRef50_UPI0004773262: aldehyde oxidoreductase	0.1323324337
+UniRef50_UPI0004773262: aldehyde oxidoreductase|unclassified	0.1323324337
+UniRef50_L5N6N7: Transducer protein Htr38 (Fragment)	0.1323221070
+UniRef50_L5N6N7: Transducer protein Htr38 (Fragment)|unclassified	0.1323221070
+UniRef50_UPI000469984F: hypothetical protein	0.1322918512
+UniRef50_UPI000469984F: hypothetical protein|unclassified	0.1322918512
+UniRef50_UPI0002F55BB0: hypothetical protein	0.1322856598
+UniRef50_UPI0002F55BB0: hypothetical protein|unclassified	0.1322856598
+UniRef50_UPI0004716887: hypothetical protein, partial	0.1322853578
+UniRef50_UPI0004716887: hypothetical protein, partial|unclassified	0.1322853578
+UniRef50_UPI0002BBA067: hypothetical protein	0.1322824989
+UniRef50_UPI0002BBA067: hypothetical protein|unclassified	0.1322824989
+UniRef50_W7CX29	0.1322708125
+UniRef50_W7CX29|unclassified	0.1322708125
+UniRef50_UPI0003B55B65: N-acetyltransferase GCN5	0.1322695895
+UniRef50_UPI0003B55B65: N-acetyltransferase GCN5|unclassified	0.1322695895
+UniRef50_Q75JG8: Diphthine synthase	0.1322674656
+UniRef50_Q75JG8: Diphthine synthase|unclassified	0.1322674656
+UniRef50_B5WVI9: Cyanate permease-like protein (Fragment)	0.1322673499
+UniRef50_B5WVI9: Cyanate permease-like protein (Fragment)|unclassified	0.1322673499
+UniRef50_UPI0003FCFBC7: GTP-binding protein Era	0.1322627042
+UniRef50_UPI0003FCFBC7: GTP-binding protein Era|unclassified	0.1322627042
+UniRef50_A6X6K2: Extracellular solute-binding protein family 1	0.1322622515
+UniRef50_A6X6K2: Extracellular solute-binding protein family 1|unclassified	0.1322622515
+UniRef50_I1EUA2	0.1322603639
+UniRef50_I1EUA2|unclassified	0.1322603639
+UniRef50_UPI0003661FA3: methionyl-tRNA synthetase	0.1322575340
+UniRef50_UPI0003661FA3: methionyl-tRNA synthetase|unclassified	0.1322575340
+UniRef50_W7SAH3	0.1322521605
+UniRef50_W7SAH3|unclassified	0.1322521605
+UniRef50_UPI00038BCAC8: PREDICTED: interleukin-12 receptor subunit beta-1	0.1322498074
+UniRef50_UPI00038BCAC8: PREDICTED: interleukin-12 receptor subunit beta-1|unclassified	0.1322498074
+UniRef50_UPI0003C12721: PREDICTED: NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial-like	0.1322477629
+UniRef50_UPI0003C12721: PREDICTED: NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial-like|unclassified	0.1322477629
+UniRef50_F4DLS1	0.1322259996
+UniRef50_F4DLS1|unclassified	0.1322259996
+UniRef50_D5TL02	0.1322246979
+UniRef50_D5TL02|unclassified	0.1322246979
+UniRef50_UPI0004751C0C: hypothetical protein	0.1322239756
+UniRef50_UPI0004751C0C: hypothetical protein|unclassified	0.1322239756
+UniRef50_UPI0003799DCC: hypothetical protein	0.1322177164
+UniRef50_UPI0003799DCC: hypothetical protein|unclassified	0.1322177164
+UniRef50_U3H5D3	0.1322109638
+UniRef50_U3H5D3|unclassified	0.1322109638
+UniRef50_UPI0004692F45: pseudouridine synthase	0.1322105164
+UniRef50_UPI0004692F45: pseudouridine synthase|unclassified	0.1322105164
+UniRef50_R1E1X5	0.1322096766
+UniRef50_R1E1X5|unclassified	0.1322096766
+UniRef50_A4XV62	0.1322076256
+UniRef50_A4XV62|unclassified	0.1322076256
+UniRef50_Q83JV1: IS911 ORF2	0.1322054856
+UniRef50_Q83JV1: IS911 ORF2|unclassified	0.1322054856
+UniRef50_UPI00045E9580: macrolide ABC transporter ATP-binding protein	0.1322008368
+UniRef50_UPI00045E9580: macrolide ABC transporter ATP-binding protein|unclassified	0.1322008368
+UniRef50_L8XTT9	0.1321913798
+UniRef50_L8XTT9|unclassified	0.1321913798
+UniRef50_T1Y555: Chromosome partitioning protein ParB	0.1321882674
+UniRef50_T1Y555: Chromosome partitioning protein ParB|unclassified	0.1321882674
+UniRef50_UPI0003B31562: biopolymer transportern ExbD	0.1321728330
+UniRef50_UPI0003B31562: biopolymer transportern ExbD|unclassified	0.1321728330
+UniRef50_N9B8S8	0.1321545658
+UniRef50_N9B8S8|unclassified	0.1321545658
+UniRef50_UPI000465A700: hypothetical protein	0.1321438031
+UniRef50_UPI000465A700: hypothetical protein|unclassified	0.1321438031
+UniRef50_UPI0003B41C7E: haloacid dehalogenase	0.1321421797
+UniRef50_UPI0003B41C7E: haloacid dehalogenase|unclassified	0.1321421797
+UniRef50_UPI0002627881: hypothetical protein	0.1321174137
+UniRef50_UPI0002627881: hypothetical protein|unclassified	0.1321174137
+UniRef50_A3JA38	0.1321005429
+UniRef50_A3JA38|unclassified	0.1321005429
+UniRef50_UPI00037248C3: hypothetical protein	0.1320759826
+UniRef50_UPI00037248C3: hypothetical protein|unclassified	0.1320759826
+UniRef50_D7EM87: Predicted protein	0.1320584736
+UniRef50_D7EM87: Predicted protein|unclassified	0.1320584736
+UniRef50_UPI000467C7F7: hypothetical protein	0.1320488944
+UniRef50_UPI000467C7F7: hypothetical protein|unclassified	0.1320488944
+UniRef50_U5Q1X8: Urease subunit gamma	0.1320434000
+UniRef50_U5Q1X8: Urease subunit gamma|unclassified	0.1320434000
+UniRef50_A9M0U6: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase	0.1320393890
+UniRef50_A9M0U6: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|unclassified	0.1320393890
+UniRef50_UPI0003601561: hypothetical protein	0.1320345329
+UniRef50_UPI0003601561: hypothetical protein|unclassified	0.1320345329
+UniRef50_A4J0Y9: Cysteine--tRNA ligase	0.1320222120
+UniRef50_A4J0Y9: Cysteine--tRNA ligase|unclassified	0.1320222120
+UniRef50_UPI0004726BAE: multidrug transporter, partial	0.1320162088
+UniRef50_UPI0004726BAE: multidrug transporter, partial|unclassified	0.1320162088
+UniRef50_B8G317: Histone deacetylase superfamily	0.1320126849
+UniRef50_B8G317: Histone deacetylase superfamily|unclassified	0.1320126849
+UniRef50_H0DQ14	0.1319851325
+UniRef50_H0DQ14|unclassified	0.1319851325
+UniRef50_Q58337: Putative GTP cyclohydrolase 1 type 2	0.1319750923
+UniRef50_Q58337: Putative GTP cyclohydrolase 1 type 2|unclassified	0.1319750923
+UniRef50_UPI00037FE3FF: hypothetical protein	0.1319711888
+UniRef50_UPI00037FE3FF: hypothetical protein|unclassified	0.1319711888
+UniRef50_UPI0003724D69: hypothetical protein	0.1319711169
+UniRef50_UPI0003724D69: hypothetical protein|unclassified	0.1319711169
+UniRef50_UPI0003B58DA3: aldose 1-epimerase	0.1319705354
+UniRef50_UPI0003B58DA3: aldose 1-epimerase|unclassified	0.1319705354
+UniRef50_M3F475	0.1319650623
+UniRef50_M3F475|unclassified	0.1319650623
+UniRef50_Q8GW72: Alpha-L-fucosidase 1	0.1319627655
+UniRef50_Q8GW72: Alpha-L-fucosidase 1|unclassified	0.1319627655
+UniRef50_A0A037ZI77	0.1319539951
+UniRef50_A0A037ZI77|unclassified	0.1319539951
+UniRef50_UPI00045EBAFF: hypothetical protein	0.1319334990
+UniRef50_UPI00045EBAFF: hypothetical protein|unclassified	0.1319334990
+UniRef50_S5SLF3: sn-glycerol-3-phosphate ABC transporter substrate-binding protein UgpB 1	0.1319257708
+UniRef50_S5SLF3: sn-glycerol-3-phosphate ABC transporter substrate-binding protein UgpB 1|unclassified	0.1319257708
+UniRef50_E8JHI4	0.1319178607
+UniRef50_E8JHI4|unclassified	0.1319178607
+UniRef50_S5YZ78: Thioesterase	0.1319150830
+UniRef50_S5YZ78: Thioesterase|unclassified	0.1319150830
+UniRef50_A0QL30	0.1318985384
+UniRef50_A0QL30|unclassified	0.1318985384
+UniRef50_W8Z0J6: Putative toxin-antitoxin system, toxin component	0.1318920744
+UniRef50_W8Z0J6: Putative toxin-antitoxin system, toxin component|unclassified	0.1318920744
+UniRef50_F3ZHE7: Putative rhamnose ABC transporter, rhamnose-binding protein	0.1318920406
+UniRef50_F3ZHE7: Putative rhamnose ABC transporter, rhamnose-binding protein|unclassified	0.1318920406
+UniRef50_Q65ID2: Peptide methionine sulfoxide reductase MsrB	0.1318864613
+UniRef50_Q65ID2: Peptide methionine sulfoxide reductase MsrB|unclassified	0.1318864613
+UniRef50_UPI0002376BC8: GntR family transcriptional regulator with aminotransferase domain, partial	0.1318751913
+UniRef50_UPI0002376BC8: GntR family transcriptional regulator with aminotransferase domain, partial|unclassified	0.1318751913
+UniRef50_UPI00041E8C4C: hypothetical protein	0.1318574008
+UniRef50_UPI00041E8C4C: hypothetical protein|unclassified	0.1318574008
+UniRef50_UPI0003B392E0: hypothetical protein	0.1318488864
+UniRef50_UPI0003B392E0: hypothetical protein|unclassified	0.1318488864
+UniRef50_U6HVE2: NADH dehydrogenase (Ubiquinone) iron sulfur	0.1318378907
+UniRef50_U6HVE2: NADH dehydrogenase (Ubiquinone) iron sulfur|unclassified	0.1318378907
+UniRef50_U1KCM3	0.1318232633
+UniRef50_U1KCM3|unclassified	0.1318232633
+UniRef50_UPI0004781A72: galactose-1-epimerase	0.1318209474
+UniRef50_UPI0004781A72: galactose-1-epimerase|unclassified	0.1318209474
+UniRef50_Q7TUW5: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO	0.1318159431
+UniRef50_Q7TUW5: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|unclassified	0.1318159431
+UniRef50_UPI00036C9F1B: hypothetical protein	0.1318132169
+UniRef50_UPI00036C9F1B: hypothetical protein|unclassified	0.1318132169
+UniRef50_H7D699: UvrABC system protein C	0.1318100790
+UniRef50_H7D699: UvrABC system protein C|unclassified	0.1318100790
+UniRef50_UPI000479ED1E: 50S ribosomal protein L4	0.1318047940
+UniRef50_UPI000479ED1E: 50S ribosomal protein L4|unclassified	0.1318047940
+UniRef50_UPI00047ED552: hypothetical protein	0.1318000322
+UniRef50_UPI00047ED552: hypothetical protein|unclassified	0.1318000322
+UniRef50_D3QFG1	0.1317924163
+UniRef50_D3QFG1|unclassified	0.1317924163
+UniRef50_UPI000475E4F0: response regulator receiver protein	0.1317910603
+UniRef50_UPI000475E4F0: response regulator receiver protein|unclassified	0.1317910603
+UniRef50_UPI00046A0FAC: hypothetical protein	0.1317894419
+UniRef50_UPI00046A0FAC: hypothetical protein|unclassified	0.1317894419
+UniRef50_UPI0003B4CB27: MarR family transcriptional regulator	0.1317824521
+UniRef50_UPI0003B4CB27: MarR family transcriptional regulator|unclassified	0.1317824521
+UniRef50_F3X262	0.1317822108
+UniRef50_F3X262|unclassified	0.1317822108
+UniRef50_A4SR46: Short-chain dehydrogenase/reductase	0.1317708298
+UniRef50_A4SR46: Short-chain dehydrogenase/reductase|unclassified	0.1317708298
+UniRef50_M4Z7B7	0.1317704553
+UniRef50_M4Z7B7|unclassified	0.1317704553
+UniRef50_UPI0002559D0F: major facilitator transporter	0.1317596741
+UniRef50_UPI0002559D0F: major facilitator transporter|unclassified	0.1317596741
+UniRef50_UPI000463359A: hypothetical protein	0.1317524536
+UniRef50_UPI000463359A: hypothetical protein|unclassified	0.1317524536
+UniRef50_X6NXH3	0.1317518797
+UniRef50_X6NXH3|unclassified	0.1317518797
+UniRef50_T0HZN7	0.1317383119
+UniRef50_T0HZN7|unclassified	0.1317383119
+UniRef50_UPI000471EE06: cob(I)yrinic acid a c-diamide adenosyltransferase, partial	0.1317328166
+UniRef50_UPI000471EE06: cob(I)yrinic acid a c-diamide adenosyltransferase, partial|unclassified	0.1317328166
+UniRef50_S3C8S1	0.1317295514
+UniRef50_S3C8S1|unclassified	0.1317295514
+UniRef50_F9XG43	0.1317227594
+UniRef50_F9XG43|unclassified	0.1317227594
+UniRef50_UPI0003B71734: hypothetical protein	0.1317180602
+UniRef50_UPI0003B71734: hypothetical protein|unclassified	0.1317180602
+UniRef50_UPI000422DD08: glutathione ABC transporter permease	0.1317073335
+UniRef50_UPI000422DD08: glutathione ABC transporter permease|unclassified	0.1317073335
+UniRef50_UPI00036D7E11: hypothetical protein	0.1317054763
+UniRef50_UPI00036D7E11: hypothetical protein|unclassified	0.1317054763
+UniRef50_UPI0002889804: carbamoyl phosphate synthase small subunit	0.1317022506
+UniRef50_UPI0002889804: carbamoyl phosphate synthase small subunit|unclassified	0.1317022506
+UniRef50_UPI00047D022C: hypothetical protein	0.1316791832
+UniRef50_UPI00047D022C: hypothetical protein|unclassified	0.1316791832
+UniRef50_UPI00037FDA57: hypothetical protein	0.1316746482
+UniRef50_UPI00037FDA57: hypothetical protein|unclassified	0.1316746482
+UniRef50_X1F3U5: Marine sediment metagenome DNA, contig: S03H2_L04624 (Fragment)	0.1316721795
+UniRef50_X1F3U5: Marine sediment metagenome DNA, contig: S03H2_L04624 (Fragment)|unclassified	0.1316721795
+UniRef50_A8LE95	0.1316715216
+UniRef50_A8LE95|unclassified	0.1316715216
+UniRef50_P37333: Biphenyl dioxygenase subunit alpha	0.1316611834
+UniRef50_P37333: Biphenyl dioxygenase subunit alpha|unclassified	0.1316611834
+UniRef50_S2WA26	0.1316575046
+UniRef50_S2WA26|unclassified	0.1316575046
+UniRef50_A5FVE4	0.1316528788
+UniRef50_A5FVE4|unclassified	0.1316528788
+UniRef50_UPI0004675B6B: hypothetical protein	0.1316478748
+UniRef50_UPI0004675B6B: hypothetical protein|unclassified	0.1316478748
+UniRef50_UPI00046E92A1: camphor resistance protein CrcB	0.1316458970
+UniRef50_UPI00046E92A1: camphor resistance protein CrcB|unclassified	0.1316458970
+UniRef50_S5XWM7	0.1316246754
+UniRef50_S5XWM7|unclassified	0.1316246754
+UniRef50_UPI00021977EF: alkaline shock protein	0.1316241455
+UniRef50_UPI00021977EF: alkaline shock protein|unclassified	0.1316241455
+UniRef50_W4V496: Alkaline shock protein	0.1316236014
+UniRef50_W4V496: Alkaline shock protein|unclassified	0.1316236014
+UniRef50_J0L0H3: Cell wall anchor domain-containing protein	0.1316138326
+UniRef50_J0L0H3: Cell wall anchor domain-containing protein|unclassified	0.1316138326
+UniRef50_Q3A248: Phosphopentomutase	0.1316097666
+UniRef50_Q3A248: Phosphopentomutase|unclassified	0.1316097666
+UniRef50_R5JX92	0.1315996510
+UniRef50_R5JX92|unclassified	0.1315996510
+UniRef50_K4HIZ1: DnaJ related protein	0.1315894058
+UniRef50_K4HIZ1: DnaJ related protein|unclassified	0.1315894058
+UniRef50_B2GC19: Peptidase T	0.1315852024
+UniRef50_B2GC19: Peptidase T|unclassified	0.1315852024
+UniRef50_UPI0001C37E7F: helicase c2	0.1315705671
+UniRef50_UPI0001C37E7F: helicase c2|unclassified	0.1315705671
+UniRef50_R6MKH6	0.1315689677
+UniRef50_R6MKH6|unclassified	0.1315689677
+UniRef50_UPI00047B8BC4: hypothetical protein	0.1315584187
+UniRef50_UPI00047B8BC4: hypothetical protein|unclassified	0.1315584187
+UniRef50_Q8RG52: Lysine--tRNA ligase	0.1315567926
+UniRef50_Q8RG52: Lysine--tRNA ligase|unclassified	0.1315567926
+UniRef50_UPI000370F6D2: hypothetical protein	0.1315555516
+UniRef50_UPI000370F6D2: hypothetical protein|unclassified	0.1315555516
+UniRef50_UPI0004763B56: membrane protein	0.1315521533
+UniRef50_UPI0004763B56: membrane protein|unclassified	0.1315521533
+UniRef50_T0T191	0.1315515632
+UniRef50_T0T191|unclassified	0.1315515632
+UniRef50_B0ABK1	0.1315487127
+UniRef50_B0ABK1|unclassified	0.1315487127
+UniRef50_UPI0003C10B73: PREDICTED: probable 1-aminocyclopropane-1-carboxylate deaminase-like	0.1315471857
+UniRef50_UPI0003C10B73: PREDICTED: probable 1-aminocyclopropane-1-carboxylate deaminase-like|unclassified	0.1315471857
+UniRef50_UPI000370FB27: hypothetical protein	0.1315443887
+UniRef50_UPI000370FB27: hypothetical protein|unclassified	0.1315443887
+UniRef50_UPI00003BBD94: YALI0C00407p	0.1315416080
+UniRef50_UPI00003BBD94: YALI0C00407p|unclassified	0.1315416080
+UniRef50_A0A058YZC5	0.1315265525
+UniRef50_A0A058YZC5|unclassified	0.1315265525
+UniRef50_R6MWI6	0.1315208549
+UniRef50_R6MWI6|unclassified	0.1315208549
+UniRef50_UPI00034B82F7: hypothetical protein	0.1315201323
+UniRef50_UPI00034B82F7: hypothetical protein|unclassified	0.1315201323
+UniRef50_P55503	0.1315153253
+UniRef50_P55503|unclassified	0.1315153253
+UniRef50_W0BHE5: ABC-type transport system involved in Fe-S cluster assembly, ATPase component	0.1315126893
+UniRef50_W0BHE5: ABC-type transport system involved in Fe-S cluster assembly, ATPase component|unclassified	0.1315126893
+UniRef50_UPI00035D3781: hypothetical protein	0.1315076194
+UniRef50_UPI00035D3781: hypothetical protein|unclassified	0.1315076194
+UniRef50_L1IBC0	0.1315006423
+UniRef50_L1IBC0|unclassified	0.1315006423
+UniRef50_Q7UJ19: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.1314909139
+UniRef50_Q7UJ19: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.1314909139
+UniRef50_UPI00037AEF72: hypothetical protein	0.1314762785
+UniRef50_UPI00037AEF72: hypothetical protein|unclassified	0.1314762785
+UniRef50_UPI0003C37C1D: PREDICTED: probable 39S ribosomal protein L24, mitochondrial-like	0.1314692354
+UniRef50_UPI0003C37C1D: PREDICTED: probable 39S ribosomal protein L24, mitochondrial-like|unclassified	0.1314692354
+UniRef50_K7S7X3	0.1314690044
+UniRef50_K7S7X3|unclassified	0.1314690044
+UniRef50_UPI00047C3535: GTP-binding protein	0.1314684301
+UniRef50_UPI00047C3535: GTP-binding protein|unclassified	0.1314684301
+UniRef50_UPI000345C74C: hypothetical protein	0.1314606749
+UniRef50_UPI000345C74C: hypothetical protein|unclassified	0.1314606749
+UniRef50_R1D179	0.1314551609
+UniRef50_R1D179|unclassified	0.1314551609
+UniRef50_UPI000262873B: ABC transporter ATP-binding protein	0.1314381397
+UniRef50_UPI000262873B: ABC transporter ATP-binding protein|unclassified	0.1314381397
+UniRef50_UPI00037C7F8C: hypothetical protein	0.1314022889
+UniRef50_UPI00037C7F8C: hypothetical protein|unclassified	0.1314022889
+UniRef50_J2UR22: Putative chitinase	0.1314004999
+UniRef50_J2UR22: Putative chitinase|unclassified	0.1314004999
+UniRef50_O67939: Undecaprenyl-diphosphatase	0.1313866455
+UniRef50_O67939: Undecaprenyl-diphosphatase|unclassified	0.1313866455
+UniRef50_O67061: 4-hydroxy-tetrahydrodipicolinate reductase	0.1313786652
+UniRef50_O67061: 4-hydroxy-tetrahydrodipicolinate reductase|unclassified	0.1313786652
+UniRef50_H0HX43: Transposase	0.1313740052
+UniRef50_H0HX43: Transposase|unclassified	0.1313740052
+UniRef50_P74061: Ribulose-phosphate 3-epimerase	0.1313733547
+UniRef50_P74061: Ribulose-phosphate 3-epimerase|unclassified	0.1313733547
+UniRef50_UPI00039CF468: Polyribonucleotide nucleotidyltransferase (polynucleotide phosphorylase)	0.1313713511
+UniRef50_UPI00039CF468: Polyribonucleotide nucleotidyltransferase (polynucleotide phosphorylase)|unclassified	0.1313713511
+UniRef50_B4FA97	0.1313710062
+UniRef50_B4FA97|unclassified	0.1313710062
+UniRef50_K2EGX4	0.1313565250
+UniRef50_K2EGX4|unclassified	0.1313565250
+UniRef50_UPI00047BA8A9: hypothetical protein	0.1313522332
+UniRef50_UPI00047BA8A9: hypothetical protein|unclassified	0.1313522332
+UniRef50_N2ATH6	0.1313342959
+UniRef50_N2ATH6|unclassified	0.1313342959
+UniRef50_D5UKE3: LPXTG-motif cell wall anchor domain protein	0.1313150368
+UniRef50_D5UKE3: LPXTG-motif cell wall anchor domain protein|unclassified	0.1313150368
+UniRef50_I0JKD3	0.1313144581
+UniRef50_I0JKD3|unclassified	0.1313144581
+UniRef50_N0C944	0.1313108764
+UniRef50_N0C944|unclassified	0.1313108764
+UniRef50_A8IC84: Lipoprotein	0.1312840546
+UniRef50_A8IC84: Lipoprotein|unclassified	0.1312840546
+UniRef50_UPI0002DB754C: hypothetical protein	0.1312807512
+UniRef50_UPI0002DB754C: hypothetical protein|unclassified	0.1312807512
+UniRef50_UPI0003721D70: hypothetical protein	0.1312777370
+UniRef50_UPI0003721D70: hypothetical protein|unclassified	0.1312777370
+UniRef50_UPI0002ADAE60	0.1312760293
+UniRef50_UPI0002ADAE60|unclassified	0.1312760293
+UniRef50_UPI00036ECEC1: hypothetical protein, partial	0.1312662645
+UniRef50_UPI00036ECEC1: hypothetical protein, partial|unclassified	0.1312662645
+UniRef50_V5GC35: Transposase	0.1312606342
+UniRef50_V5GC35: Transposase|unclassified	0.1312606342
+UniRef50_S9RI76: Porin	0.1312539586
+UniRef50_S9RI76: Porin|unclassified	0.1312539586
+UniRef50_U1G9K8	0.1312508203
+UniRef50_U1G9K8|unclassified	0.1312508203
+UniRef50_UPI000463870F: hypothetical protein	0.1312476530
+UniRef50_UPI000463870F: hypothetical protein|unclassified	0.1312476530
+UniRef50_UPI00040116B4: sugar ABC transporter	0.1312356134
+UniRef50_UPI00040116B4: sugar ABC transporter|unclassified	0.1312356134
+UniRef50_V7EMQ8	0.1312346114
+UniRef50_V7EMQ8|unclassified	0.1312346114
+UniRef50_UPI000248D54F: phosphofructokinase	0.1312241925
+UniRef50_UPI000248D54F: phosphofructokinase|unclassified	0.1312241925
+UniRef50_C4XRJ2: LemA family protein	0.1312210746
+UniRef50_C4XRJ2: LemA family protein|unclassified	0.1312210746
+UniRef50_UPI0003B38ED8: hypothetical protein	0.1312139615
+UniRef50_UPI0003B38ED8: hypothetical protein|unclassified	0.1312139615
+UniRef50_Q4JTG9: Methionine import ATP-binding protein MetN	0.1312042181
+UniRef50_Q4JTG9: Methionine import ATP-binding protein MetN|unclassified	0.1312042181
+UniRef50_Q9TKX3: Sulfate/thiosulfate import ATP-binding protein CysA	0.1312025726
+UniRef50_Q9TKX3: Sulfate/thiosulfate import ATP-binding protein CysA|unclassified	0.1312025726
+UniRef50_UPI0002FA2E2D: hypothetical protein	0.1311935981
+UniRef50_UPI0002FA2E2D: hypothetical protein|unclassified	0.1311935981
+UniRef50_UPI0003786162: hypothetical protein	0.1311740318
+UniRef50_UPI0003786162: hypothetical protein|unclassified	0.1311740318
+UniRef50_P51012: Ribulose-phosphate 3-epimerase	0.1311708249
+UniRef50_P51012: Ribulose-phosphate 3-epimerase|unclassified	0.1311708249
+UniRef50_L5LEM3: Kelch domain-containing protein 7B	0.1311636584
+UniRef50_L5LEM3: Kelch domain-containing protein 7B|unclassified	0.1311636584
+UniRef50_UPI00037C7CA6: hypothetical protein	0.1311621636
+UniRef50_UPI00037C7CA6: hypothetical protein|unclassified	0.1311621636
+UniRef50_UPI00040107BB: glycosyl transferase family 39	0.1311609833
+UniRef50_UPI00040107BB: glycosyl transferase family 39|unclassified	0.1311609833
+UniRef50_UPI00038FBDD6: UPF0135 protein BH1380	0.1311545114
+UniRef50_UPI00038FBDD6: UPF0135 protein BH1380|unclassified	0.1311545114
+UniRef50_L6QAX3: Uptake hydrogenase small subunit	0.1311496459
+UniRef50_L6QAX3: Uptake hydrogenase small subunit|unclassified	0.1311496459
+UniRef50_C0AZF6	0.1311414621
+UniRef50_C0AZF6|unclassified	0.1311414621
+UniRef50_R5QMT0: ABC transporter permease protein	0.1311238242
+UniRef50_R5QMT0: ABC transporter permease protein|unclassified	0.1311238242
+UniRef50_Q080R9: Beta-hexosaminidase	0.1311232104
+UniRef50_Q080R9: Beta-hexosaminidase|unclassified	0.1311232104
+UniRef50_UPI00046A585D: phenazine biosynthesis protein PhzF	0.1311134162
+UniRef50_UPI00046A585D: phenazine biosynthesis protein PhzF|unclassified	0.1311134162
+UniRef50_UPI00047CC111: GCN5 family acetyltransferase	0.1311133906
+UniRef50_UPI00047CC111: GCN5 family acetyltransferase|unclassified	0.1311133906
+UniRef50_UPI0003B4D014: hypothetical protein	0.1311085487
+UniRef50_UPI0003B4D014: hypothetical protein|unclassified	0.1311085487
+UniRef50_S0RSE8	0.1311034480
+UniRef50_S0RSE8|unclassified	0.1311034480
+UniRef50_UPI0003F52DD5: hypothetical protein	0.1310982562
+UniRef50_UPI0003F52DD5: hypothetical protein|unclassified	0.1310982562
+UniRef50_X4ZTD3: Sporulation protein yyac	0.1310978502
+UniRef50_X4ZTD3: Sporulation protein yyac|unclassified	0.1310978502
+UniRef50_D8UH87	0.1310969167
+UniRef50_D8UH87|unclassified	0.1310969167
+UniRef50_Q72VI7: Glycine cleavage system H protein	0.1310839407
+UniRef50_Q72VI7: Glycine cleavage system H protein|unclassified	0.1310839407
+UniRef50_J8F1R2	0.1310748215
+UniRef50_J8F1R2|unclassified	0.1310748215
+UniRef50_M4TWP3	0.1310737944
+UniRef50_M4TWP3|unclassified	0.1310737944
+UniRef50_Q9ZH21: UDP-N-acetylglucosamine 1-carboxyvinyltransferase (Fragment)	0.1310644577
+UniRef50_Q9ZH21: UDP-N-acetylglucosamine 1-carboxyvinyltransferase (Fragment)|unclassified	0.1310644577
+UniRef50_X0TRL2: Marine sediment metagenome DNA, contig: S01H1_S03333 (Fragment)	0.1310622883
+UniRef50_X0TRL2: Marine sediment metagenome DNA, contig: S01H1_S03333 (Fragment)|unclassified	0.1310622883
+UniRef50_UPI000237E9F9: esterase/lipase, partial	0.1310585086
+UniRef50_UPI000237E9F9: esterase/lipase, partial|unclassified	0.1310585086
+UniRef50_UPI0003B5FBDB: phosphonate metabolism protein PhnM	0.1310576010
+UniRef50_UPI0003B5FBDB: phosphonate metabolism protein PhnM|unclassified	0.1310576010
+UniRef50_UPI000161F393: predicted protein	0.1310559825
+UniRef50_UPI000161F393: predicted protein|unclassified	0.1310559825
+UniRef50_I6ET96: YaiL	0.1310526112
+UniRef50_I6ET96: YaiL|unclassified	0.1310526112
+UniRef50_F0B8K8	0.1310318137
+UniRef50_F0B8K8|unclassified	0.1310318137
+UniRef50_P50853: Riboflavin biosynthesis protein RibD	0.1310303601
+UniRef50_P50853: Riboflavin biosynthesis protein RibD|unclassified	0.1310303601
+UniRef50_K2GJZ2	0.1310294276
+UniRef50_K2GJZ2|unclassified	0.1310294276
+UniRef50_A0LJM6: NADH-quinone oxidoreductase subunit A	0.1310264389
+UniRef50_A0LJM6: NADH-quinone oxidoreductase subunit A|unclassified	0.1310264389
+UniRef50_UPI0002E5F87E: hypothetical protein	0.1310243206
+UniRef50_UPI0002E5F87E: hypothetical protein|unclassified	0.1310243206
+UniRef50_D5MLT1: Putative esterase/lipase	0.1310103348
+UniRef50_D5MLT1: Putative esterase/lipase|unclassified	0.1310103348
+UniRef50_UPI0004732957: hypothetical protein, partial	0.1310066130
+UniRef50_UPI0004732957: hypothetical protein, partial|unclassified	0.1310066130
+UniRef50_J0R746	0.1309910380
+UniRef50_J0R746|unclassified	0.1309910380
+UniRef50_UPI0003B2EA23: glutathione ABC transporter permease	0.1309872432
+UniRef50_UPI0003B2EA23: glutathione ABC transporter permease|unclassified	0.1309872432
+UniRef50_W8S2Y2	0.1309830306
+UniRef50_W8S2Y2|unclassified	0.1309830306
+UniRef50_D4ZLT7	0.1309687395
+UniRef50_D4ZLT7|unclassified	0.1309687395
+UniRef50_W7AZN4: Toxin expression-transcriptional accessory protein	0.1309583409
+UniRef50_W7AZN4: Toxin expression-transcriptional accessory protein|unclassified	0.1309583409
+UniRef50_A0A011U926: Polymerase	0.1309543551
+UniRef50_A0A011U926: Polymerase|unclassified	0.1309543551
+UniRef50_UPI000373BE1A: hypothetical protein	0.1309506809
+UniRef50_UPI000373BE1A: hypothetical protein|unclassified	0.1309506809
+UniRef50_UPI000347DE5C: hypothetical protein	0.1309450691
+UniRef50_UPI000347DE5C: hypothetical protein|unclassified	0.1309450691
+UniRef50_UPI00046489F4: ABC transporter ATPase, partial	0.1309344929
+UniRef50_UPI00046489F4: ABC transporter ATPase, partial|unclassified	0.1309344929
+UniRef50_UPI00034A60BC: hypothetical protein	0.1309298839
+UniRef50_UPI00034A60BC: hypothetical protein|unclassified	0.1309298839
+UniRef50_UPI000309D5D4: hypothetical protein	0.1309273393
+UniRef50_UPI000309D5D4: hypothetical protein|unclassified	0.1309273393
+UniRef50_UPI0004646B5A: hypothetical protein	0.1309270250
+UniRef50_UPI0004646B5A: hypothetical protein|unclassified	0.1309270250
+UniRef50_UPI00025589D0: porin	0.1309195452
+UniRef50_UPI00025589D0: porin|unclassified	0.1309195452
+UniRef50_U6LEL4	0.1309150539
+UniRef50_U6LEL4|unclassified	0.1309150539
+UniRef50_UPI0002556088: ORFA, transposon ISSsa2	0.1309109223
+UniRef50_UPI0002556088: ORFA, transposon ISSsa2|unclassified	0.1309109223
+UniRef50_UPI000395E302: PREDICTED: vegetative cell wall protein gp1-like	0.1309060728
+UniRef50_UPI000395E302: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.1309060728
+UniRef50_UPI0004786127: iron transporter FeoB	0.1309030381
+UniRef50_UPI0004786127: iron transporter FeoB|unclassified	0.1309030381
+UniRef50_W7PQ55	0.1309017823
+UniRef50_W7PQ55|unclassified	0.1309017823
+UniRef50_S1GTK1: Outer membrane protein YejO	0.1309013237
+UniRef50_S1GTK1: Outer membrane protein YejO|unclassified	0.1309013237
+UniRef50_K8GK25	0.1308929238
+UniRef50_K8GK25|unclassified	0.1308929238
+UniRef50_Q1GCB3	0.1308880327
+UniRef50_Q1GCB3|unclassified	0.1308880327
+UniRef50_C8W561: SpoVR family protein	0.1308736841
+UniRef50_C8W561: SpoVR family protein|unclassified	0.1308736841
+UniRef50_A8NWM3: Pre-mRNA-splicing factor CWC21	0.1308725176
+UniRef50_A8NWM3: Pre-mRNA-splicing factor CWC21|unclassified	0.1308725176
+UniRef50_UPI0004794A3D: hypothetical protein	0.1308691829
+UniRef50_UPI0004794A3D: hypothetical protein|unclassified	0.1308691829
+UniRef50_UPI000478D099: hypothetical protein	0.1308675956
+UniRef50_UPI000478D099: hypothetical protein|unclassified	0.1308675956
+UniRef50_UPI00037D9C70: hypothetical protein	0.1308576117
+UniRef50_UPI00037D9C70: hypothetical protein|unclassified	0.1308576117
+UniRef50_K0IH53	0.1308538189
+UniRef50_K0IH53|unclassified	0.1308538189
+UniRef50_K7EFH4	0.1308272244
+UniRef50_K7EFH4|unclassified	0.1308272244
+UniRef50_T1BLW6: Peptidase U62, modulator of DNA gyrase (Fragment)	0.1308225064
+UniRef50_T1BLW6: Peptidase U62, modulator of DNA gyrase (Fragment)|unclassified	0.1308225064
+UniRef50_T1IR03	0.1308215594
+UniRef50_T1IR03|unclassified	0.1308215594
+UniRef50_UPI00038015E1: hypothetical protein	0.1308197483
+UniRef50_UPI00038015E1: hypothetical protein|unclassified	0.1308197483
+UniRef50_A3V832	0.1308191434
+UniRef50_A3V832|unclassified	0.1308191434
+UniRef50_UPI00035CE7DE: hypothetical protein	0.1308167617
+UniRef50_UPI00035CE7DE: hypothetical protein|unclassified	0.1308167617
+UniRef50_UPI00041F822A: iron transporter FeoB	0.1308021074
+UniRef50_UPI00041F822A: iron transporter FeoB|unclassified	0.1308021074
+UniRef50_B4RFF2: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	0.1307809105
+UniRef50_B4RFF2: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.1307809105
+UniRef50_UPI00036C9A3E: hypothetical protein	0.1307797102
+UniRef50_UPI00036C9A3E: hypothetical protein|unclassified	0.1307797102
+UniRef50_UPI000476474A: cell wall hydrolase	0.1307626203
+UniRef50_UPI000476474A: cell wall hydrolase|unclassified	0.1307626203
+UniRef50_UPI000371AE89: hypothetical protein	0.1307611807
+UniRef50_UPI000371AE89: hypothetical protein|unclassified	0.1307611807
+UniRef50_UPI0003735CBD: hypothetical protein	0.1307534891
+UniRef50_UPI0003735CBD: hypothetical protein|unclassified	0.1307534891
+UniRef50_UPI0003B3B0EE: MFS transporter	0.1307475876
+UniRef50_UPI0003B3B0EE: MFS transporter|unclassified	0.1307475876
+UniRef50_C5CH05: MaoC domain protein dehydratase	0.1307447567
+UniRef50_C5CH05: MaoC domain protein dehydratase|unclassified	0.1307447567
+UniRef50_UPI00039EDC1A: hypothetical protein	0.1307363340
+UniRef50_UPI00039EDC1A: hypothetical protein|unclassified	0.1307363340
+UniRef50_L7Y0M6: Putative transcriptional regulator	0.1307353794
+UniRef50_L7Y0M6: Putative transcriptional regulator|unclassified	0.1307353794
+UniRef50_I3THI3	0.1307292867
+UniRef50_I3THI3|unclassified	0.1307292867
+UniRef50_J0CC52: Transposase	0.1307285733
+UniRef50_J0CC52: Transposase|unclassified	0.1307285733
+UniRef50_R4JW19: Phosphoglycerate mutase family	0.1307183732
+UniRef50_R4JW19: Phosphoglycerate mutase family|unclassified	0.1307183732
+UniRef50_W5BDK7	0.1307150461
+UniRef50_W5BDK7|unclassified	0.1307150461
+UniRef50_K8BKY4: Paraquat-inducible protein B	0.1307115632
+UniRef50_K8BKY4: Paraquat-inducible protein B|unclassified	0.1307115632
+UniRef50_UPI0002481C5F: transposase Tn3 family protein, partial	0.1306716643
+UniRef50_UPI0002481C5F: transposase Tn3 family protein, partial|unclassified	0.1306716643
+UniRef50_F7Z0C6	0.1306528285
+UniRef50_F7Z0C6|unclassified	0.1306528285
+UniRef50_UPI000476CC34: hypothetical protein	0.1306427318
+UniRef50_UPI000476CC34: hypothetical protein|unclassified	0.1306427318
+UniRef50_UPI00036F6E99: hypothetical protein	0.1306308352
+UniRef50_UPI00036F6E99: hypothetical protein|unclassified	0.1306308352
+UniRef50_UPI000474C330: hypothetical protein	0.1306282540
+UniRef50_UPI000474C330: hypothetical protein|unclassified	0.1306282540
+UniRef50_UPI00024929D9: putative N-acylamino acid racemase	0.1306253082
+UniRef50_UPI00024929D9: putative N-acylamino acid racemase|unclassified	0.1306253082
+UniRef50_E1ZAA9	0.1306173202
+UniRef50_E1ZAA9|unclassified	0.1306173202
+UniRef50_UPI0003B5BA4B: NUDIX hydrolase	0.1305870563
+UniRef50_UPI0003B5BA4B: NUDIX hydrolase|unclassified	0.1305870563
+UniRef50_F4CB42: Short chain dehydrogenase	0.1305864926
+UniRef50_F4CB42: Short chain dehydrogenase|unclassified	0.1305864926
+UniRef50_UPI0003061C7C: hypothetical protein	0.1305863109
+UniRef50_UPI0003061C7C: hypothetical protein|unclassified	0.1305863109
+UniRef50_UPI0003B562B3: hydrolase	0.1305816872
+UniRef50_UPI0003B562B3: hydrolase|unclassified	0.1305816872
+UniRef50_D1KCM1	0.1305720401
+UniRef50_D1KCM1|unclassified	0.1305720401
+UniRef50_B6AZX3: Lipoprotein, putative	0.1305572815
+UniRef50_B6AZX3: Lipoprotein, putative|unclassified	0.1305572815
+UniRef50_D8LRU5: Novel Sm-like protein with long N-and C-terminal domains	0.1305518130
+UniRef50_D8LRU5: Novel Sm-like protein with long N-and C-terminal domains|unclassified	0.1305518130
+UniRef50_UPI00038C40E9	0.1305408579
+UniRef50_UPI00038C40E9|unclassified	0.1305408579
+UniRef50_G8AST2: Chromosome partitioning protein	0.1305381107
+UniRef50_G8AST2: Chromosome partitioning protein|unclassified	0.1305381107
+UniRef50_UPI00037FD8E4: hypothetical protein	0.1305322799
+UniRef50_UPI00037FD8E4: hypothetical protein|unclassified	0.1305322799
+UniRef50_B9E752	0.1305071404
+UniRef50_B9E752|unclassified	0.1305071404
+UniRef50_Q5HAU5: DNA-directed RNA polymerase subunit alpha	0.1305060439
+UniRef50_Q5HAU5: DNA-directed RNA polymerase subunit alpha|unclassified	0.1305060439
+UniRef50_G8Q5W7	0.1305058774
+UniRef50_G8Q5W7|unclassified	0.1305058774
+UniRef50_W5X7F1: Band 7 protein	0.1305040883
+UniRef50_W5X7F1: Band 7 protein|unclassified	0.1305040883
+UniRef50_F9V6B3: Competence protein ComGF	0.1304993550
+UniRef50_F9V6B3: Competence protein ComGF|unclassified	0.1304993550
+UniRef50_B8ZR59: Ribonuclease PH	0.1304959477
+UniRef50_B8ZR59: Ribonuclease PH|unclassified	0.1304959477
+UniRef50_UPI00039F2091: potassium transporter	0.1304945554
+UniRef50_UPI00039F2091: potassium transporter|unclassified	0.1304945554
+UniRef50_UPI0003772B3C: hypothetical protein	0.1304842697
+UniRef50_UPI0003772B3C: hypothetical protein|unclassified	0.1304842697
+UniRef50_UPI00036E169E: hypothetical protein	0.1304660049
+UniRef50_UPI00036E169E: hypothetical protein|unclassified	0.1304660049
+UniRef50_P57819: D-alanine--D-alanine ligase	0.1304578299
+UniRef50_P57819: D-alanine--D-alanine ligase|unclassified	0.1304578299
+UniRef50_L7U528	0.1304562692
+UniRef50_L7U528|unclassified	0.1304562692
+UniRef50_R7U6D1	0.1304541668
+UniRef50_R7U6D1|unclassified	0.1304541668
+UniRef50_T0FGA8	0.1304467064
+UniRef50_T0FGA8|unclassified	0.1304467064
+UniRef50_UPI000474B713: phosphoglucomutase	0.1304432887
+UniRef50_UPI000474B713: phosphoglucomutase|unclassified	0.1304432887
+UniRef50_UPI0003B4EA07: transposase ISSod13	0.1304400577
+UniRef50_UPI0003B4EA07: transposase ISSod13|unclassified	0.1304400577
+UniRef50_UPI000469F9CA: hypothetical protein	0.1304282946
+UniRef50_UPI000469F9CA: hypothetical protein|unclassified	0.1304282946
+UniRef50_UPI00036A8806: hypothetical protein	0.1304192917
+UniRef50_UPI00036A8806: hypothetical protein|unclassified	0.1304192917
+UniRef50_A0A029L0Z7	0.1304182729
+UniRef50_A0A029L0Z7|unclassified	0.1304182729
+UniRef50_UPI000225DE65: nitrogen regulatory IIA	0.1304150247
+UniRef50_UPI000225DE65: nitrogen regulatory IIA|unclassified	0.1304150247
+UniRef50_K9EXD7	0.1304025758
+UniRef50_K9EXD7|unclassified	0.1304025758
+UniRef50_UPI0002DC39FE: hypothetical protein	0.1304011957
+UniRef50_UPI0002DC39FE: hypothetical protein|unclassified	0.1304011957
+UniRef50_UPI000478594F: hypothetical protein	0.1303974823
+UniRef50_UPI000478594F: hypothetical protein|unclassified	0.1303974823
+UniRef50_UPI0003B7021A: amino acid transporter	0.1303931900
+UniRef50_UPI0003B7021A: amino acid transporter|unclassified	0.1303931900
+UniRef50_UPI00037A750F: hypothetical protein	0.1303759476
+UniRef50_UPI00037A750F: hypothetical protein|unclassified	0.1303759476
+UniRef50_E9BZT6: Membrane protein	0.1303673596
+UniRef50_E9BZT6: Membrane protein|unclassified	0.1303673596
+UniRef50_UPI00046FDAB2: hypothetical protein, partial	0.1303672815
+UniRef50_UPI00046FDAB2: hypothetical protein, partial|unclassified	0.1303672815
+UniRef50_D8LMU4	0.1303656838
+UniRef50_D8LMU4|unclassified	0.1303656838
+UniRef50_B6IUB6: Conserved domain protein	0.1303650129
+UniRef50_B6IUB6: Conserved domain protein|unclassified	0.1303650129
+UniRef50_UPI0003818A60: hypothetical protein	0.1303645750
+UniRef50_UPI0003818A60: hypothetical protein|unclassified	0.1303645750
+UniRef50_UPI000421DF3C: HAD family hydrolase	0.1303525695
+UniRef50_UPI000421DF3C: HAD family hydrolase|unclassified	0.1303525695
+UniRef50_UPI0003B4235D: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.1303490489
+UniRef50_UPI0003B4235D: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.1303490489
+UniRef50_W1XT28	0.1303348301
+UniRef50_W1XT28|unclassified	0.1303348301
+UniRef50_U7QWG6	0.1303131666
+UniRef50_U7QWG6|unclassified	0.1303131666
+UniRef50_A0YFJ4	0.1303123582
+UniRef50_A0YFJ4|unclassified	0.1303123582
+UniRef50_F8UHK9: IS4 family transposase (Fragment)	0.1303097615
+UniRef50_F8UHK9: IS4 family transposase (Fragment)|unclassified	0.1303097615
+UniRef50_T8LYJ4	0.1302925179
+UniRef50_T8LYJ4|unclassified	0.1302925179
+UniRef50_UPI0003F91B01: hypothetical protein	0.1302913892
+UniRef50_UPI0003F91B01: hypothetical protein|unclassified	0.1302913892
+UniRef50_A6VBS6: Polypeptide-transport-associated domain protein, ShlB-type	0.1302831672
+UniRef50_A6VBS6: Polypeptide-transport-associated domain protein, ShlB-type|unclassified	0.1302831672
+UniRef50_A9K9Q2	0.1302658103
+UniRef50_A9K9Q2|unclassified	0.1302658103
+UniRef50_UPI00037DE4E4: MULTISPECIES: hypothetical protein	0.1302650339
+UniRef50_UPI00037DE4E4: MULTISPECIES: hypothetical protein|unclassified	0.1302650339
+UniRef50_UPI00034D1C35: hypothetical protein	0.1302587766
+UniRef50_UPI00034D1C35: hypothetical protein|unclassified	0.1302587766
+UniRef50_D3F1V0	0.1302559821
+UniRef50_D3F1V0|unclassified	0.1302559821
+UniRef50_J3QBR8	0.1302532820
+UniRef50_J3QBR8|unclassified	0.1302532820
+UniRef50_UPI0003B71B68: molybdopterin dehydrogenase, partial	0.1302514283
+UniRef50_UPI0003B71B68: molybdopterin dehydrogenase, partial|unclassified	0.1302514283
+UniRef50_W0A7J8	0.1302471472
+UniRef50_W0A7J8|unclassified	0.1302471472
+UniRef50_S6AVL7	0.1302455459
+UniRef50_S6AVL7|unclassified	0.1302455459
+UniRef50_Q6BA76	0.1302387619
+UniRef50_Q6BA76|unclassified	0.1302387619
+UniRef50_UPI00046F57AB: 2-oxoglutarate dehydrogenase	0.1302364386
+UniRef50_UPI00046F57AB: 2-oxoglutarate dehydrogenase|unclassified	0.1302364386
+UniRef50_UPI0003721B05: hypothetical protein	0.1302287564
+UniRef50_UPI0003721B05: hypothetical protein|unclassified	0.1302287564
+UniRef50_K2LMR8: 3-beta-hydroxy-delta(5)-steroid dehydrogenase	0.1302238333
+UniRef50_K2LMR8: 3-beta-hydroxy-delta(5)-steroid dehydrogenase|unclassified	0.1302238333
+UniRef50_D2Z287: Prophage antirepressor	0.1302184414
+UniRef50_D2Z287: Prophage antirepressor|unclassified	0.1302184414
+UniRef50_R4WPX6	0.1302115300
+UniRef50_R4WPX6|unclassified	0.1302115300
+UniRef50_UPI0004193FC8: D-arabinose 5-phosphate isomerase	0.1302103529
+UniRef50_UPI0004193FC8: D-arabinose 5-phosphate isomerase|unclassified	0.1302103529
+UniRef50_UPI000380836E: hypothetical protein	0.1302061840
+UniRef50_UPI000380836E: hypothetical protein|unclassified	0.1302061840
+UniRef50_Q823P5: Na(+)-translocating NADH-quinone reductase subunit E	0.1302051539
+UniRef50_Q823P5: Na(+)-translocating NADH-quinone reductase subunit E|unclassified	0.1302051539
+UniRef50_A8L8P5: UPF0225 protein Franean1_5815	0.1301965932
+UniRef50_A8L8P5: UPF0225 protein Franean1_5815|unclassified	0.1301965932
+UniRef50_A7HG76: LigA	0.1301798127
+UniRef50_A7HG76: LigA|unclassified	0.1301798127
+UniRef50_UPI0002D8E1D6: hypothetical protein	0.1301795287
+UniRef50_UPI0002D8E1D6: hypothetical protein|unclassified	0.1301795287
+UniRef50_E4U6C3: Extracellular solute-binding protein family 1	0.1301791628
+UniRef50_E4U6C3: Extracellular solute-binding protein family 1|unclassified	0.1301791628
+UniRef50_X7E0I6	0.1301768118
+UniRef50_X7E0I6|unclassified	0.1301768118
+UniRef50_O33367: DNA gyrase subunit B	0.1301719383
+UniRef50_O33367: DNA gyrase subunit B|unclassified	0.1301719383
+UniRef50_UPI0003616B47: hypothetical protein	0.1301696970
+UniRef50_UPI0003616B47: hypothetical protein|unclassified	0.1301696970
+UniRef50_UPI000371D403: hypothetical protein	0.1301651292
+UniRef50_UPI000371D403: hypothetical protein|unclassified	0.1301651292
+UniRef50_C5WFG9: Transposase	0.1301572672
+UniRef50_C5WFG9: Transposase|unclassified	0.1301572672
+UniRef50_UPI0003759A53: hypothetical protein, partial	0.1301419053
+UniRef50_UPI0003759A53: hypothetical protein, partial|unclassified	0.1301419053
+UniRef50_UPI000476A5C0: aldo/keto reductase	0.1301372710
+UniRef50_UPI000476A5C0: aldo/keto reductase|unclassified	0.1301372710
+UniRef50_E8XXL4: ABC-2 type transporter	0.1301297844
+UniRef50_E8XXL4: ABC-2 type transporter|unclassified	0.1301297844
+UniRef50_UPI00021A4B49: PREDICTED: ATP-dependent Clp protease ATP-binding subunit clpX-like, mitochondrial-like	0.1301178956
+UniRef50_UPI00021A4B49: PREDICTED: ATP-dependent Clp protease ATP-binding subunit clpX-like, mitochondrial-like|unclassified	0.1301178956
+UniRef50_W6K5Z0	0.1301149071
+UniRef50_W6K5Z0|unclassified	0.1301149071
+UniRef50_A0A017HJE1: Family finger-like domain protein	0.1301102103
+UniRef50_A0A017HJE1: Family finger-like domain protein|unclassified	0.1301102103
+UniRef50_R4MA21	0.1301101015
+UniRef50_R4MA21|unclassified	0.1301101015
+UniRef50_UPI0004655B17: hypothetical protein	0.1301086736
+UniRef50_UPI0004655B17: hypothetical protein|unclassified	0.1301086736
+UniRef50_B5DHA4: GA25291	0.1301038445
+UniRef50_B5DHA4: GA25291|unclassified	0.1301038445
+UniRef50_H9ULD9: GMP synthase family protein	0.1300988416
+UniRef50_H9ULD9: GMP synthase family protein|unclassified	0.1300988416
+UniRef50_UPI000382E0FA: hypothetical protein	0.1300933083
+UniRef50_UPI000382E0FA: hypothetical protein|unclassified	0.1300933083
+UniRef50_Q7NDJ2: Endonuclease V	0.1300910433
+UniRef50_Q7NDJ2: Endonuclease V|unclassified	0.1300910433
+UniRef50_UPI0001CE1D52	0.1300842717
+UniRef50_UPI0001CE1D52|unclassified	0.1300842717
+UniRef50_UPI0004715894: glucose dehydrogenase, partial	0.1300778808
+UniRef50_UPI0004715894: glucose dehydrogenase, partial|unclassified	0.1300778808
+UniRef50_W7SMQ0: PE-PGRS family protein	0.1300677472
+UniRef50_W7SMQ0: PE-PGRS family protein|unclassified	0.1300677472
+UniRef50_W7TC28	0.1300615618
+UniRef50_W7TC28|unclassified	0.1300615618
+UniRef50_UPI000402D1DD: methyltransferase type 11	0.1300491143
+UniRef50_UPI000402D1DD: methyltransferase type 11|unclassified	0.1300491143
+UniRef50_A8NZD9: Nuclear protein localization	0.1300490121
+UniRef50_A8NZD9: Nuclear protein localization|unclassified	0.1300490121
+UniRef50_E2RL98	0.1300433404
+UniRef50_E2RL98|unclassified	0.1300433404
+UniRef50_Q5V5Y2: Formate--tetrahydrofolate ligase	0.1300404040
+UniRef50_Q5V5Y2: Formate--tetrahydrofolate ligase|unclassified	0.1300404040
+UniRef50_UPI000420523B: hypothetical protein	0.1300392664
+UniRef50_UPI000420523B: hypothetical protein|unclassified	0.1300392664
+UniRef50_Q6SJ08: Conjugal transfer mating pair stabilization protein	0.1300274648
+UniRef50_Q6SJ08: Conjugal transfer mating pair stabilization protein|unclassified	0.1300274648
+UniRef50_A3U071	0.1300170862
+UniRef50_A3U071|unclassified	0.1300170862
+UniRef50_F5XF13	0.1299965830
+UniRef50_F5XF13|unclassified	0.1299965830
+UniRef50_X1TQM6: Marine sediment metagenome DNA, contig: S12H4_S00953 (Fragment)	0.1299942077
+UniRef50_X1TQM6: Marine sediment metagenome DNA, contig: S12H4_S00953 (Fragment)|unclassified	0.1299942077
+UniRef50_P55353: GDP-L-fucose synthase	0.1299849798
+UniRef50_P55353: GDP-L-fucose synthase|unclassified	0.1299849798
+UniRef50_UPI000378A2B6: hypothetical protein	0.1299845536
+UniRef50_UPI000378A2B6: hypothetical protein|unclassified	0.1299845536
+UniRef50_R7LRD9	0.1299762763
+UniRef50_R7LRD9|unclassified	0.1299762763
+UniRef50_UPI0003826F97: hypothetical protein, partial	0.1299739081
+UniRef50_UPI0003826F97: hypothetical protein, partial|unclassified	0.1299739081
+UniRef50_N6WFN7: Peptidase PmbA	0.1299665811
+UniRef50_N6WFN7: Peptidase PmbA|unclassified	0.1299665811
+UniRef50_UPI0002EF2687: hypothetical protein	0.1299582940
+UniRef50_UPI0002EF2687: hypothetical protein|unclassified	0.1299582940
+UniRef50_UPI000428E51D: hypothetical protein	0.1299555802
+UniRef50_UPI000428E51D: hypothetical protein|unclassified	0.1299555802
+UniRef50_UPI00047242E7: 3-hydroxybutyryl-CoA dehydrogenase	0.1299536774
+UniRef50_UPI00047242E7: 3-hydroxybutyryl-CoA dehydrogenase|unclassified	0.1299536774
+UniRef50_UPI00030B5AAD: hypothetical protein	0.1299417050
+UniRef50_UPI00030B5AAD: hypothetical protein|unclassified	0.1299417050
+UniRef50_Q89VT1: Blr0964 protein	0.1299398078
+UniRef50_Q89VT1: Blr0964 protein|unclassified	0.1299398078
+UniRef50_A3PQL8: Tripartite ATP-independent periplasmic transporter, DctQ component	0.1299307493
+UniRef50_A3PQL8: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	0.1299307493
+UniRef50_UPI00038114B4: hypothetical protein	0.1299209279
+UniRef50_UPI00038114B4: hypothetical protein|unclassified	0.1299209279
+UniRef50_UPI00031A50D8: hypothetical protein	0.1299191515
+UniRef50_UPI00031A50D8: hypothetical protein|unclassified	0.1299191515
+UniRef50_UPI0001E8977F: nucleoside hydrolase	0.1299165784
+UniRef50_UPI0001E8977F: nucleoside hydrolase|unclassified	0.1299165784
+UniRef50_UPI000378F1E3: hypothetical protein	0.1299161195
+UniRef50_UPI000378F1E3: hypothetical protein|unclassified	0.1299161195
+UniRef50_UPI0003EDEE13: DNA polymerase, partial	0.1299114057
+UniRef50_UPI0003EDEE13: DNA polymerase, partial|unclassified	0.1299114057
+UniRef50_R0JW27	0.1299051301
+UniRef50_R0JW27|unclassified	0.1299051301
+UniRef50_UPI0002FF8BB6: ABC transporter	0.1298955110
+UniRef50_UPI0002FF8BB6: ABC transporter|unclassified	0.1298955110
+UniRef50_Q0AB25: Ribosomal protein L11 methyltransferase	0.1298868824
+UniRef50_Q0AB25: Ribosomal protein L11 methyltransferase|unclassified	0.1298868824
+UniRef50_UPI0003B5C685: hypothetical protein	0.1298856620
+UniRef50_UPI0003B5C685: hypothetical protein|unclassified	0.1298856620
+UniRef50_UPI0003B67B3B: hypothetical protein	0.1298808206
+UniRef50_UPI0003B67B3B: hypothetical protein|unclassified	0.1298808206
+UniRef50_UPI000237738E: ModE family transcriptional regulator, partial	0.1298763712
+UniRef50_UPI000237738E: ModE family transcriptional regulator, partial|unclassified	0.1298763712
+UniRef50_E3BKP2: Short chain dehydrogenase	0.1298742026
+UniRef50_E3BKP2: Short chain dehydrogenase|unclassified	0.1298742026
+UniRef50_UPI00036064D5: hypothetical protein	0.1298642486
+UniRef50_UPI00036064D5: hypothetical protein|unclassified	0.1298642486
+UniRef50_U4ANZ0: Cell wall-associated surface protein	0.1298558756
+UniRef50_U4ANZ0: Cell wall-associated surface protein|unclassified	0.1298558756
+UniRef50_A5V6E6	0.1298539493
+UniRef50_A5V6E6|unclassified	0.1298539493
+UniRef50_R1DMF2	0.1298413890
+UniRef50_R1DMF2|unclassified	0.1298413890
+UniRef50_U1GJH2	0.1298330473
+UniRef50_U1GJH2|unclassified	0.1298330473
+UniRef50_S9S351: Gluconolactonase	0.1298320668
+UniRef50_S9S351: Gluconolactonase|unclassified	0.1298320668
+UniRef50_P49016: Demethylmenaquinone methyltransferase	0.1298307362
+UniRef50_P49016: Demethylmenaquinone methyltransferase|unclassified	0.1298307362
+UniRef50_UPI000300932B: hypothetical protein	0.1298298009
+UniRef50_UPI000300932B: hypothetical protein|unclassified	0.1298298009
+UniRef50_G9ENE9	0.1298113400
+UniRef50_G9ENE9|unclassified	0.1298113400
+UniRef50_Q8CYM9	0.1298108168
+UniRef50_Q8CYM9|unclassified	0.1298108168
+UniRef50_UPI000426A521: dihydrolipoamide succinyltransferase	0.1298091995
+UniRef50_UPI000426A521: dihydrolipoamide succinyltransferase|unclassified	0.1298091995
+UniRef50_U6MW74: WD domain, G-beta repeat-containing protein, putative	0.1298082619
+UniRef50_U6MW74: WD domain, G-beta repeat-containing protein, putative|unclassified	0.1298082619
+UniRef50_O32544: TraN	0.1298065794
+UniRef50_O32544: TraN|unclassified	0.1298065794
+UniRef50_UPI00037D5622: hypothetical protein	0.1298020640
+UniRef50_UPI00037D5622: hypothetical protein|unclassified	0.1298020640
+UniRef50_Q6T6K9: Xylose isomerase	0.1297957729
+UniRef50_Q6T6K9: Xylose isomerase|unclassified	0.1297957729
+UniRef50_UPI00029A559A: acetate/CoA ligase	0.1297878853
+UniRef50_UPI00029A559A: acetate/CoA ligase|unclassified	0.1297878853
+UniRef50_A6TJB9	0.1297851782
+UniRef50_A6TJB9|unclassified	0.1297851782
+UniRef50_Z2DBY9: Glycolate oxidase	0.1297632942
+UniRef50_Z2DBY9: Glycolate oxidase|unclassified	0.1297632942
+UniRef50_UPI000463A773: MULTISPECIES: aminotransferase	0.1297610621
+UniRef50_UPI000463A773: MULTISPECIES: aminotransferase|unclassified	0.1297610621
+UniRef50_UPI00046F7609: hypothetical protein	0.1297511130
+UniRef50_UPI00046F7609: hypothetical protein|unclassified	0.1297511130
+UniRef50_UPI000395E276: LysR family transcriptional regulator	0.1297497355
+UniRef50_UPI000395E276: LysR family transcriptional regulator|unclassified	0.1297497355
+UniRef50_N9Y1P5	0.1297492028
+UniRef50_N9Y1P5|unclassified	0.1297492028
+UniRef50_UPI00036D22A3: hypothetical protein	0.1297428213
+UniRef50_UPI00036D22A3: hypothetical protein|unclassified	0.1297428213
+UniRef50_C9RSR6	0.1297103518
+UniRef50_C9RSR6|unclassified	0.1297103518
+UniRef50_A0A023EC48	0.1297063286
+UniRef50_A0A023EC48|unclassified	0.1297063286
+UniRef50_UPI00047C4D4C: hypothetical protein	0.1297050151
+UniRef50_UPI00047C4D4C: hypothetical protein|unclassified	0.1297050151
+UniRef50_K0SA81	0.1297009029
+UniRef50_K0SA81|unclassified	0.1297009029
+UniRef50_H0YYM6	0.1296941700
+UniRef50_H0YYM6|unclassified	0.1296941700
+UniRef50_UPI0002F0AFD4: glycerol-3-phosphate dehydrogenase	0.1296940673
+UniRef50_UPI0002F0AFD4: glycerol-3-phosphate dehydrogenase|unclassified	0.1296940673
+UniRef50_J9HFG4: AAEL017117-PA	0.1296865959
+UniRef50_J9HFG4: AAEL017117-PA|unclassified	0.1296865959
+UniRef50_W9VR13: UPF0260 protein D791_00187	0.1296836887
+UniRef50_W9VR13: UPF0260 protein D791_00187|unclassified	0.1296836887
+UniRef50_UPI0002DCA303: hypothetical protein	0.1296594966
+UniRef50_UPI0002DCA303: hypothetical protein|unclassified	0.1296594966
+UniRef50_UPI00037C787C: hypothetical protein, partial	0.1296527259
+UniRef50_UPI00037C787C: hypothetical protein, partial|unclassified	0.1296527259
+UniRef50_UPI00045EA883: lysophospholipase	0.1296516625
+UniRef50_UPI00045EA883: lysophospholipase|unclassified	0.1296516625
+UniRef50_P56607	0.1296499236
+UniRef50_P56607|unclassified	0.1296499236
+UniRef50_W4U8H5: TsaD/Kae1/Qri7 protein	0.1296379264
+UniRef50_W4U8H5: TsaD/Kae1/Qri7 protein|unclassified	0.1296379264
+UniRef50_W4UM07: TsaD/Kae1/Qri7 protein	0.1296379264
+UniRef50_W4UM07: TsaD/Kae1/Qri7 protein|unclassified	0.1296379264
+UniRef50_R8PCW5	0.1296371832
+UniRef50_R8PCW5|unclassified	0.1296371832
+UniRef50_UPI00037AE230: hypothetical protein	0.1296283490
+UniRef50_UPI00037AE230: hypothetical protein|unclassified	0.1296283490
+UniRef50_UPI00040DC67E: hypothetical protein	0.1296248288
+UniRef50_UPI00040DC67E: hypothetical protein|unclassified	0.1296248288
+UniRef50_UPI000479E1B9: biotin biosynthesis protein BioY	0.1296171546
+UniRef50_UPI000479E1B9: biotin biosynthesis protein BioY|unclassified	0.1296171546
+UniRef50_UPI000376C8ED: hypothetical protein	0.1296067428
+UniRef50_UPI000376C8ED: hypothetical protein|unclassified	0.1296067428
+UniRef50_T0S2R5	0.1296033710
+UniRef50_T0S2R5|unclassified	0.1296033710
+UniRef50_UPI0003753459: hypothetical protein	0.1296001144
+UniRef50_UPI0003753459: hypothetical protein|unclassified	0.1296001144
+UniRef50_UPI00036B5161: hypothetical protein	0.1295997551
+UniRef50_UPI00036B5161: hypothetical protein|unclassified	0.1295997551
+UniRef50_UPI0002192307: hypothetical protein	0.1295905861
+UniRef50_UPI0002192307: hypothetical protein|unclassified	0.1295905861
+UniRef50_UPI0002ED0F4A: hypothetical protein	0.1295872399
+UniRef50_UPI0002ED0F4A: hypothetical protein|unclassified	0.1295872399
+UniRef50_UPI000262D12A: protein-L-isoaspartate O-methyltransferase	0.1295858317
+UniRef50_UPI000262D12A: protein-L-isoaspartate O-methyltransferase|unclassified	0.1295858317
+UniRef50_A5G6M1: Tryptophan synthase alpha chain	0.1295792309
+UniRef50_A5G6M1: Tryptophan synthase alpha chain|unclassified	0.1295792309
+UniRef50_W7X173	0.1295791497
+UniRef50_W7X173|unclassified	0.1295791497
+UniRef50_UPI0003186761: hypothetical protein	0.1295789433
+UniRef50_UPI0003186761: hypothetical protein|unclassified	0.1295789433
+UniRef50_UPI000347DC95: farnesyl-diphosphate synthase	0.1295757424
+UniRef50_UPI000347DC95: farnesyl-diphosphate synthase|unclassified	0.1295757424
+UniRef50_H4TPV7: Immunoglobulin-binding regulator A-like protein	0.1295721894
+UniRef50_H4TPV7: Immunoglobulin-binding regulator A-like protein|unclassified	0.1295721894
+UniRef50_Q07422: Bifunctional dihydrofolate reductase-thymidylate synthase	0.1295696165
+UniRef50_Q07422: Bifunctional dihydrofolate reductase-thymidylate synthase|unclassified	0.1295696165
+UniRef50_UPI00047917CC: hypothetical protein	0.1295618217
+UniRef50_UPI00047917CC: hypothetical protein|unclassified	0.1295618217
+UniRef50_UPI000467C040: glycine/betaine ABC transporter ATP-binding protein	0.1295595556
+UniRef50_UPI000467C040: glycine/betaine ABC transporter ATP-binding protein|unclassified	0.1295595556
+UniRef50_UPI000365A456: hypothetical protein	0.1295510030
+UniRef50_UPI000365A456: hypothetical protein|unclassified	0.1295510030
+UniRef50_U6MX15	0.1295504599
+UniRef50_U6MX15|unclassified	0.1295504599
+UniRef50_T0TGW4	0.1295487336
+UniRef50_T0TGW4|unclassified	0.1295487336
+UniRef50_UPI0004674650: hypothetical protein	0.1295440394
+UniRef50_UPI0004674650: hypothetical protein|unclassified	0.1295440394
+UniRef50_K4KWX0: Heat shock protein	0.1295359395
+UniRef50_K4KWX0: Heat shock protein|unclassified	0.1295359395
+UniRef50_D3VBM2	0.1295333390
+UniRef50_D3VBM2|unclassified	0.1295333390
+UniRef50_A3YTK8: MazG	0.1295332244
+UniRef50_A3YTK8: MazG|unclassified	0.1295332244
+UniRef50_K9H1K5	0.1295250420
+UniRef50_K9H1K5|unclassified	0.1295250420
+UniRef50_Q7MWU9: Holliday junction DNA helicase RuvB	0.1295229083
+UniRef50_Q7MWU9: Holliday junction DNA helicase RuvB|unclassified	0.1295229083
+UniRef50_J8NWB6: YD repeat (Two copies) (Fragment)	0.1295025226
+UniRef50_J8NWB6: YD repeat (Two copies) (Fragment)|unclassified	0.1295025226
+UniRef50_UPI00047A3795: hypothetical protein	0.1294899350
+UniRef50_UPI00047A3795: hypothetical protein|unclassified	0.1294899350
+UniRef50_Q9LR75: Coproporphyrinogen-III oxidase 1, chloroplastic	0.1294899286
+UniRef50_Q9LR75: Coproporphyrinogen-III oxidase 1, chloroplastic|unclassified	0.1294899286
+UniRef50_O33579: Phosphoadenosine phosphosulfate reductase (Fragment)	0.1294879980
+UniRef50_O33579: Phosphoadenosine phosphosulfate reductase (Fragment)|unclassified	0.1294879980
+UniRef50_UPI0003029904: hypothetical protein	0.1294820666
+UniRef50_UPI0003029904: hypothetical protein|unclassified	0.1294820666
+UniRef50_UPI00034D4180: hypothetical protein	0.1294797183
+UniRef50_UPI00034D4180: hypothetical protein|unclassified	0.1294797183
+UniRef50_UPI000477CEDF: hypothetical protein	0.1294792919
+UniRef50_UPI000477CEDF: hypothetical protein|unclassified	0.1294792919
+UniRef50_Q7U4L7: S-adenosylmethionine decarboxylase proenzyme	0.1294774763
+UniRef50_Q7U4L7: S-adenosylmethionine decarboxylase proenzyme|unclassified	0.1294774763
+UniRef50_W1KSH2	0.1294680950
+UniRef50_W1KSH2|unclassified	0.1294680950
+UniRef50_Q165Q3	0.1294652496
+UniRef50_Q165Q3|unclassified	0.1294652496
+UniRef50_Q561X9: 3-hydroxybutyrate dehydrogenase type 2	0.1294505525
+UniRef50_Q561X9: 3-hydroxybutyrate dehydrogenase type 2|unclassified	0.1294505525
+UniRef50_UPI000374D78C: hypothetical protein	0.1294497809
+UniRef50_UPI000374D78C: hypothetical protein|unclassified	0.1294497809
+UniRef50_D0KM52	0.1294393082
+UniRef50_D0KM52|unclassified	0.1294393082
+UniRef50_UPI0002D38F48: hypothetical protein	0.1294373914
+UniRef50_UPI0002D38F48: hypothetical protein|unclassified	0.1294373914
+UniRef50_UPI0004782D06: hypothetical protein	0.1294372009
+UniRef50_UPI0004782D06: hypothetical protein|unclassified	0.1294372009
+UniRef50_R7LD69	0.1294366912
+UniRef50_R7LD69|unclassified	0.1294366912
+UniRef50_B9JT91: Metallo-beta-lactamase superfamily protein	0.1294342454
+UniRef50_B9JT91: Metallo-beta-lactamase superfamily protein|unclassified	0.1294342454
+UniRef50_R4ZVK8: Transcriptional repressor of the fructose operon, DeoR family	0.1294169981
+UniRef50_R4ZVK8: Transcriptional repressor of the fructose operon, DeoR family|unclassified	0.1294169981
+UniRef50_UPI00034B02F3: hypothetical protein	0.1294140735
+UniRef50_UPI00034B02F3: hypothetical protein|unclassified	0.1294140735
+UniRef50_UPI0003B44C16: ATP-binding protein	0.1293939964
+UniRef50_UPI0003B44C16: ATP-binding protein|unclassified	0.1293939964
+UniRef50_A5UXK1: NADH-quinone oxidoreductase subunit B 1	0.1293851870
+UniRef50_A5UXK1: NADH-quinone oxidoreductase subunit B 1|unclassified	0.1293851870
+UniRef50_UPI00037EBCF0: hypothetical protein	0.1293845058
+UniRef50_UPI00037EBCF0: hypothetical protein|unclassified	0.1293845058
+UniRef50_X1HZW5: Marine sediment metagenome DNA, contig: S03H2_S03569 (Fragment)	0.1293645943
+UniRef50_X1HZW5: Marine sediment metagenome DNA, contig: S03H2_S03569 (Fragment)|unclassified	0.1293645943
+UniRef50_M1NMK8	0.1293640812
+UniRef50_M1NMK8|unclassified	0.1293640812
+UniRef50_Q1QVM0	0.1293331952
+UniRef50_Q1QVM0|unclassified	0.1293331952
+UniRef50_UPI00046FBF5E: butanol dehydrogenase, partial	0.1293271615
+UniRef50_UPI00046FBF5E: butanol dehydrogenase, partial|unclassified	0.1293271615
+UniRef50_N2ADP9	0.1293180835
+UniRef50_N2ADP9|unclassified	0.1293180835
+UniRef50_Q8BIG7: Catechol O-methyltransferase domain-containing protein 1	0.1293154190
+UniRef50_Q8BIG7: Catechol O-methyltransferase domain-containing protein 1|unclassified	0.1293154190
+UniRef50_UPI000371F5FC: hypothetical protein	0.1293116290
+UniRef50_UPI000371F5FC: hypothetical protein|unclassified	0.1293116290
+UniRef50_UPI0003B4BCE4: metallophosphoesterase	0.1292995256
+UniRef50_UPI0003B4BCE4: metallophosphoesterase|unclassified	0.1292995256
+UniRef50_R8AV39: Lipoprotein	0.1292920647
+UniRef50_R8AV39: Lipoprotein|unclassified	0.1292920647
+UniRef50_Q4JXJ2: Cysteine--tRNA ligase	0.1292818438
+UniRef50_Q4JXJ2: Cysteine--tRNA ligase|unclassified	0.1292818438
+UniRef50_UPI0004209B97: MULTISPECIES: phosphate ABC transporter permease	0.1292690967
+UniRef50_UPI0004209B97: MULTISPECIES: phosphate ABC transporter permease|unclassified	0.1292690967
+UniRef50_Q5FQC5: Holliday junction ATP-dependent DNA helicase RuvA	0.1292611621
+UniRef50_Q5FQC5: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.1292611621
+UniRef50_UPI00037B12FC: hypothetical protein	0.1292598081
+UniRef50_UPI00037B12FC: hypothetical protein|unclassified	0.1292598081
+UniRef50_C2YCK1: Pyridoxal phosphate-dependent deaminase	0.1292458484
+UniRef50_C2YCK1: Pyridoxal phosphate-dependent deaminase|unclassified	0.1292458484
+UniRef50_Q8S0V8: Splicing coactivator subunit-like protein	0.1292360154
+UniRef50_Q8S0V8: Splicing coactivator subunit-like protein|unclassified	0.1292360154
+UniRef50_UPI00036C3708: hypothetical protein	0.1292307987
+UniRef50_UPI00036C3708: hypothetical protein|unclassified	0.1292307987
+UniRef50_UPI000363D7F1: hypothetical protein	0.1292207133
+UniRef50_UPI000363D7F1: hypothetical protein|unclassified	0.1292207133
+UniRef50_UPI00047A6B23: NAD(FAD)-utilizing dehydrogenase	0.1292082970
+UniRef50_UPI00047A6B23: NAD(FAD)-utilizing dehydrogenase|unclassified	0.1292082970
+UniRef50_K2SD14	0.1291993466
+UniRef50_K2SD14|unclassified	0.1291993466
+UniRef50_A4BBI5	0.1291964613
+UniRef50_A4BBI5|unclassified	0.1291964613
+UniRef50_H9KKG5	0.1291917549
+UniRef50_H9KKG5|unclassified	0.1291917549
+UniRef50_W1JV41	0.1291778130
+UniRef50_W1JV41|unclassified	0.1291778130
+UniRef50_UPI000454A485: PREDICTED: zinc finger protein 641 isoform X1	0.1291691394
+UniRef50_UPI000454A485: PREDICTED: zinc finger protein 641 isoform X1|unclassified	0.1291691394
+UniRef50_L7X126	0.1291476563
+UniRef50_L7X126|unclassified	0.1291476563
+UniRef50_UPI00038C1177	0.1291468421
+UniRef50_UPI00038C1177|unclassified	0.1291468421
+UniRef50_UPI00030E59D2: hypothetical protein	0.1291404541
+UniRef50_UPI00030E59D2: hypothetical protein|unclassified	0.1291404541
+UniRef50_Q7UM14: Tyrosine--tRNA ligase	0.1291370178
+UniRef50_Q7UM14: Tyrosine--tRNA ligase|unclassified	0.1291370178
+UniRef50_E0MQF9: Nutrient deprivation-induced protein	0.1291353148
+UniRef50_E0MQF9: Nutrient deprivation-induced protein|unclassified	0.1291353148
+UniRef50_UPI000414C8E2: SAM-dependent methyltransferase	0.1291344185
+UniRef50_UPI000414C8E2: SAM-dependent methyltransferase|unclassified	0.1291344185
+UniRef50_UPI00045E6DF6: hypothetical protein	0.1291217578
+UniRef50_UPI00045E6DF6: hypothetical protein|unclassified	0.1291217578
+UniRef50_UPI000375E6F1: hypothetical protein	0.1291096569
+UniRef50_UPI000375E6F1: hypothetical protein|unclassified	0.1291096569
+UniRef50_UPI0004709C15: ATPase	0.1291078139
+UniRef50_UPI0004709C15: ATPase|unclassified	0.1291078139
+UniRef50_UPI0003647782: hypothetical protein	0.1291052336
+UniRef50_UPI0003647782: hypothetical protein|unclassified	0.1291052336
+UniRef50_G2KW94	0.1290984482
+UniRef50_G2KW94|unclassified	0.1290984482
+UniRef50_UPI0004744F51: hypothetical protein	0.1290926213
+UniRef50_UPI0004744F51: hypothetical protein|unclassified	0.1290926213
+UniRef50_UPI00036892F4: polyamine ABC transporter permease	0.1290706105
+UniRef50_UPI00036892F4: polyamine ABC transporter permease|unclassified	0.1290706105
+UniRef50_Q2N948: Endoribonuclease YbeY	0.1290564346
+UniRef50_Q2N948: Endoribonuclease YbeY|unclassified	0.1290564346
+UniRef50_UPI0003732AC1: hypothetical protein	0.1290543700
+UniRef50_UPI0003732AC1: hypothetical protein|unclassified	0.1290543700
+UniRef50_UPI000255C532: hypothetical protein	0.1290495392
+UniRef50_UPI000255C532: hypothetical protein|unclassified	0.1290495392
+UniRef50_F3ZHY8: Putative lipoyl synthase	0.1290483091
+UniRef50_F3ZHY8: Putative lipoyl synthase|unclassified	0.1290483091
+UniRef50_V5EAA2: ABC-type multidrug transport system, permease component	0.1290430588
+UniRef50_V5EAA2: ABC-type multidrug transport system, permease component|unclassified	0.1290430588
+UniRef50_P37544: Ribosomal RNA small subunit methyltransferase I	0.1290405176
+UniRef50_P37544: Ribosomal RNA small subunit methyltransferase I|unclassified	0.1290405176
+UniRef50_UPI00037146A2: hypothetical protein, partial	0.1290366973
+UniRef50_UPI00037146A2: hypothetical protein, partial|unclassified	0.1290366973
+UniRef50_N1MTT8	0.1290355225
+UniRef50_N1MTT8|unclassified	0.1290355225
+UniRef50_X2MH02	0.1290291201
+UniRef50_X2MH02|unclassified	0.1290291201
+UniRef50_UPI00038F9E6F: DNA polymerase III subunit alpha, partial	0.1290130748
+UniRef50_UPI00038F9E6F: DNA polymerase III subunit alpha, partial|unclassified	0.1290130748
+UniRef50_T0M3P7	0.1290016618
+UniRef50_T0M3P7|unclassified	0.1290016618
+UniRef50_W5XAZ0: OmpR family two-component response regulator	0.1289970421
+UniRef50_W5XAZ0: OmpR family two-component response regulator|unclassified	0.1289970421
+UniRef50_B2V9E3: Quinolinate synthase A	0.1289961498
+UniRef50_B2V9E3: Quinolinate synthase A|unclassified	0.1289961498
+UniRef50_O67505: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI	0.1289907568
+UniRef50_O67505: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI|unclassified	0.1289907568
+UniRef50_UPI0002374B27: tRNA modification GTPase TrmE, partial	0.1289874825
+UniRef50_UPI0002374B27: tRNA modification GTPase TrmE, partial|unclassified	0.1289874825
+UniRef50_P22302: Superoxide dismutase [Fe], chloroplastic (Fragment)	0.1289862109
+UniRef50_P22302: Superoxide dismutase [Fe], chloroplastic (Fragment)|unclassified	0.1289862109
+UniRef50_UPI000479E1B3: hypothetical protein	0.1289851314
+UniRef50_UPI000479E1B3: hypothetical protein|unclassified	0.1289851314
+UniRef50_W9BU60: Pyridoxal-5'-phosphate-dependent protein (Fragment)	0.1289816703
+UniRef50_W9BU60: Pyridoxal-5'-phosphate-dependent protein (Fragment)|unclassified	0.1289816703
+UniRef50_H8GI81	0.1289798034
+UniRef50_H8GI81|unclassified	0.1289798034
+UniRef50_D2P376	0.1289774844
+UniRef50_D2P376|unclassified	0.1289774844
+UniRef50_UPI0003C19C11: PREDICTED: c-1-tetrahydrofolate synthase, cytoplasmic	0.1289664389
+UniRef50_UPI0003C19C11: PREDICTED: c-1-tetrahydrofolate synthase, cytoplasmic|unclassified	0.1289664389
+UniRef50_Q58595: 2-isopropylmalate synthase	0.1289639002
+UniRef50_Q58595: 2-isopropylmalate synthase|unclassified	0.1289639002
+UniRef50_F0YT02	0.1289432714
+UniRef50_F0YT02|unclassified	0.1289432714
+UniRef50_Q07838: Acetamidase	0.1289380563
+UniRef50_Q07838: Acetamidase|unclassified	0.1289380563
+UniRef50_C7THL8: Phage-related protein	0.1289348178
+UniRef50_C7THL8: Phage-related protein|unclassified	0.1289348178
+UniRef50_A9W758: Usg family protein	0.1289324491
+UniRef50_A9W758: Usg family protein|unclassified	0.1289324491
+UniRef50_W7ASC4	0.1289320690
+UniRef50_W7ASC4|unclassified	0.1289320690
+UniRef50_UPI000471F916: histidine kinase	0.1289287477
+UniRef50_UPI000471F916: histidine kinase|unclassified	0.1289287477
+UniRef50_L5JSH0: Peripheral-type benzodiazepine receptor-associated protein 1	0.1289230312
+UniRef50_L5JSH0: Peripheral-type benzodiazepine receptor-associated protein 1|unclassified	0.1289230312
+UniRef50_UPI0003043A8A: hypothetical protein	0.1289115764
+UniRef50_UPI0003043A8A: hypothetical protein|unclassified	0.1289115764
+UniRef50_UPI00047C25CC: cytochrome D ubiquinol oxidase subunit II	0.1289012007
+UniRef50_UPI00047C25CC: cytochrome D ubiquinol oxidase subunit II|unclassified	0.1289012007
+UniRef50_UPI0003F0DCE2: PREDICTED: alpha-enolase-like	0.1288996360
+UniRef50_UPI0003F0DCE2: PREDICTED: alpha-enolase-like|unclassified	0.1288996360
+UniRef50_V8UW02	0.1288901960
+UniRef50_V8UW02|unclassified	0.1288901960
+UniRef50_UPI00045E15E3: PREDICTED: basic proline-rich protein	0.1288881257
+UniRef50_UPI00045E15E3: PREDICTED: basic proline-rich protein|unclassified	0.1288881257
+UniRef50_UPI0003759CC8: hypothetical protein	0.1288877563
+UniRef50_UPI0003759CC8: hypothetical protein|unclassified	0.1288877563
+UniRef50_UPI0003B5C0FA: heme iron utilization protein	0.1288647013
+UniRef50_UPI0003B5C0FA: heme iron utilization protein|unclassified	0.1288647013
+UniRef50_J9GTH9: Membrane protein	0.1288581738
+UniRef50_J9GTH9: Membrane protein|unclassified	0.1288581738
+UniRef50_X5WUC6	0.1288480176
+UniRef50_X5WUC6|unclassified	0.1288480176
+UniRef50_UPI000467D00A: hypothetical protein	0.1288468681
+UniRef50_UPI000467D00A: hypothetical protein|unclassified	0.1288468681
+UniRef50_UPI0004639744: hypothetical protein	0.1288441910
+UniRef50_UPI0004639744: hypothetical protein|unclassified	0.1288441910
+UniRef50_UPI00035D7215: ferredoxin	0.1288369254
+UniRef50_UPI00035D7215: ferredoxin|unclassified	0.1288369254
+UniRef50_UPI000287AA16: putative acyl-CoA synthetase, partial	0.1288170059
+UniRef50_UPI000287AA16: putative acyl-CoA synthetase, partial|unclassified	0.1288170059
+UniRef50_S5KKJ7: Cell wall surface anchor protein	0.1288139905
+UniRef50_S5KKJ7: Cell wall surface anchor protein|unclassified	0.1288139905
+UniRef50_UPI00042B3070	0.1288111708
+UniRef50_UPI00042B3070|unclassified	0.1288111708
+UniRef50_UPI00047712C8: peptidase S49	0.1288093489
+UniRef50_UPI00047712C8: peptidase S49|unclassified	0.1288093489
+UniRef50_UPI0003B32379: thiamine biosynthesis lipoprotein ApbE	0.1288068113
+UniRef50_UPI0003B32379: thiamine biosynthesis lipoprotein ApbE|unclassified	0.1288068113
+UniRef50_UPI00047DB8CE: hypothetical protein	0.1287976834
+UniRef50_UPI00047DB8CE: hypothetical protein|unclassified	0.1287976834
+UniRef50_UPI0003810DDB: hypothetical protein	0.1287961857
+UniRef50_UPI0003810DDB: hypothetical protein|unclassified	0.1287961857
+UniRef50_V5SDA3: Transglutaminase	0.1287948715
+UniRef50_V5SDA3: Transglutaminase|unclassified	0.1287948715
+UniRef50_Q8FQP9	0.1287890790
+UniRef50_Q8FQP9|unclassified	0.1287890790
+UniRef50_Q164G0	0.1287874914
+UniRef50_Q164G0|unclassified	0.1287874914
+UniRef50_UPI000378FF4D: hypothetical protein	0.1287774061
+UniRef50_UPI000378FF4D: hypothetical protein|unclassified	0.1287774061
+UniRef50_UPI0003677181: hypothetical protein	0.1287741706
+UniRef50_UPI0003677181: hypothetical protein|unclassified	0.1287741706
+UniRef50_N1UR30: Glycogen synthase	0.1287738948
+UniRef50_N1UR30: Glycogen synthase|unclassified	0.1287738948
+UniRef50_UPI000462E986: hypothetical protein	0.1287704529
+UniRef50_UPI000462E986: hypothetical protein|unclassified	0.1287704529
+UniRef50_A5VCY9: Polyribonucleotide nucleotidyltransferase	0.1287614231
+UniRef50_A5VCY9: Polyribonucleotide nucleotidyltransferase|unclassified	0.1287614231
+UniRef50_Q9Z670: Gluconate permease	0.1287379863
+UniRef50_Q9Z670: Gluconate permease|unclassified	0.1287379863
+UniRef50_E5AW01: TRAW PROTEIN	0.1287374358
+UniRef50_E5AW01: TRAW PROTEIN|unclassified	0.1287374358
+UniRef50_A3VL52	0.1287218261
+UniRef50_A3VL52|unclassified	0.1287218261
+UniRef50_UPI00035F8FEB: hypothetical protein	0.1287178933
+UniRef50_UPI00035F8FEB: hypothetical protein|unclassified	0.1287178933
+UniRef50_UPI00035EC4C2: hypothetical protein	0.1287121101
+UniRef50_UPI00035EC4C2: hypothetical protein|unclassified	0.1287121101
+UniRef50_UPI000366B651: hypothetical protein	0.1287105084
+UniRef50_UPI000366B651: hypothetical protein|unclassified	0.1287105084
+UniRef50_T1KTX7	0.1287022771
+UniRef50_T1KTX7|unclassified	0.1287022771
+UniRef50_R5NGU9	0.1286997087
+UniRef50_R5NGU9|unclassified	0.1286997087
+UniRef50_UPI0002FFF629: hypothetical protein	0.1286987970
+UniRef50_UPI0002FFF629: hypothetical protein|unclassified	0.1286987970
+UniRef50_Q7WTJ2: Phenol hydroxylase P5 protein	0.1286982340
+UniRef50_Q7WTJ2: Phenol hydroxylase P5 protein|unclassified	0.1286982340
+UniRef50_V8G0U5: MutT/NUDIX family protein	0.1286952655
+UniRef50_V8G0U5: MutT/NUDIX family protein|unclassified	0.1286952655
+UniRef50_UPI0004633751: hypothetical protein	0.1286915944
+UniRef50_UPI0004633751: hypothetical protein|unclassified	0.1286915944
+UniRef50_UPI00047A7135: hypothetical protein	0.1286914168
+UniRef50_UPI00047A7135: hypothetical protein|unclassified	0.1286914168
+UniRef50_Q2LUE0: Tryptophan synthase alpha chain	0.1286893932
+UniRef50_Q2LUE0: Tryptophan synthase alpha chain|unclassified	0.1286893932
+UniRef50_Q3JCF3	0.1286644581
+UniRef50_Q3JCF3|unclassified	0.1286644581
+UniRef50_X6JIV8	0.1286111927
+UniRef50_X6JIV8|unclassified	0.1286111927
+UniRef50_B6IME3	0.1286090981
+UniRef50_B6IME3|unclassified	0.1286090981
+UniRef50_Q7VG78: Probable GMP synthase [glutamine-hydrolyzing]	0.1286063383
+UniRef50_Q7VG78: Probable GMP synthase [glutamine-hydrolyzing]|unclassified	0.1286063383
+UniRef50_UPI0001B4375B: hypothetical protein, partial	0.1285864508
+UniRef50_UPI0001B4375B: hypothetical protein, partial|unclassified	0.1285864508
+UniRef50_A1ARJ7: 3-dehydroquinate dehydratase	0.1285742079
+UniRef50_A1ARJ7: 3-dehydroquinate dehydratase|unclassified	0.1285742079
+UniRef50_N2IX51	0.1285683141
+UniRef50_N2IX51|unclassified	0.1285683141
+UniRef50_UPI00047CADCA: hypothetical protein	0.1285603446
+UniRef50_UPI00047CADCA: hypothetical protein|unclassified	0.1285603446
+UniRef50_F6BYA7: WGR domain-containing protein	0.1285593574
+UniRef50_F6BYA7: WGR domain-containing protein|unclassified	0.1285593574
+UniRef50_UPI0003B56BAA: hypothetical protein	0.1285471398
+UniRef50_UPI0003B56BAA: hypothetical protein|unclassified	0.1285471398
+UniRef50_W0NGJ1	0.1285277597
+UniRef50_W0NGJ1|unclassified	0.1285277597
+UniRef50_H8GQK8: Zonula occludens toxin	0.1285274208
+UniRef50_H8GQK8: Zonula occludens toxin|unclassified	0.1285274208
+UniRef50_UPI0001E8EA4E: phosphoribosylaminoimidazole carboxylase ATPase subunit	0.1285151678
+UniRef50_UPI0001E8EA4E: phosphoribosylaminoimidazole carboxylase ATPase subunit|unclassified	0.1285151678
+UniRef50_W1EM92: FIG001614: Membrane protein	0.1285107425
+UniRef50_W1EM92: FIG001614: Membrane protein|unclassified	0.1285107425
+UniRef50_C2P4B6: Response regulator aspartate phosphatase	0.1284976549
+UniRef50_C2P4B6: Response regulator aspartate phosphatase|unclassified	0.1284976549
+UniRef50_U6MVP9	0.1284874338
+UniRef50_U6MVP9|unclassified	0.1284874338
+UniRef50_F0YCB9	0.1284865260
+UniRef50_F0YCB9|unclassified	0.1284865260
+UniRef50_A0A024EMT6	0.1284675313
+UniRef50_A0A024EMT6|unclassified	0.1284675313
+UniRef50_UPI0003668562: glutamine amidotransferase	0.1284664946
+UniRef50_UPI0003668562: glutamine amidotransferase|unclassified	0.1284664946
+UniRef50_UPI0003C104A0	0.1284645551
+UniRef50_UPI0003C104A0|unclassified	0.1284645551
+UniRef50_UPI000377E502: hypothetical protein	0.1284576484
+UniRef50_UPI000377E502: hypothetical protein|unclassified	0.1284576484
+UniRef50_UPI00047539FF: orotate phosphoribosyltransferase	0.1284536051
+UniRef50_UPI00047539FF: orotate phosphoribosyltransferase|unclassified	0.1284536051
+UniRef50_UPI000374B03A: attachment protein	0.1284525535
+UniRef50_UPI000374B03A: attachment protein|unclassified	0.1284525535
+UniRef50_UPI0003A35A7A: potassium transporter TrkA	0.1284477313
+UniRef50_UPI0003A35A7A: potassium transporter TrkA|unclassified	0.1284477313
+UniRef50_UPI00047E27F1: ribonuclease T	0.1284471873
+UniRef50_UPI00047E27F1: ribonuclease T|unclassified	0.1284471873
+UniRef50_UPI0003F99D38: hypothetical protein	0.1284415711
+UniRef50_UPI0003F99D38: hypothetical protein|unclassified	0.1284415711
+UniRef50_H5YRD9	0.1284307356
+UniRef50_H5YRD9|unclassified	0.1284307356
+UniRef50_UPI0002BA6E86: hypothetical protein	0.1284272756
+UniRef50_UPI0002BA6E86: hypothetical protein|unclassified	0.1284272756
+UniRef50_A0A011QAN2	0.1284240521
+UniRef50_A0A011QAN2|unclassified	0.1284240521
+UniRef50_I0QL15	0.1284231398
+UniRef50_I0QL15|unclassified	0.1284231398
+UniRef50_A5G2W1: Carbohydrate ABC transporter substrate-binding protein, CUT1 family	0.1284200561
+UniRef50_A5G2W1: Carbohydrate ABC transporter substrate-binding protein, CUT1 family|unclassified	0.1284200561
+UniRef50_G9YRQ6	0.1284042708
+UniRef50_G9YRQ6|unclassified	0.1284042708
+UniRef50_UPI00047AB54F: hypothetical protein	0.1283955846
+UniRef50_UPI00047AB54F: hypothetical protein|unclassified	0.1283955846
+UniRef50_UPI00046314C8: hypothetical protein	0.1283914244
+UniRef50_UPI00046314C8: hypothetical protein|unclassified	0.1283914244
+UniRef50_UPI0003815B20: hypothetical protein	0.1283873455
+UniRef50_UPI0003815B20: hypothetical protein|unclassified	0.1283873455
+UniRef50_UPI000476EB30: hypothetical protein	0.1283830106
+UniRef50_UPI000476EB30: hypothetical protein|unclassified	0.1283830106
+UniRef50_T1AAP3: Type IV secretion system protein VirB4 (Fragment)	0.1283829802
+UniRef50_T1AAP3: Type IV secretion system protein VirB4 (Fragment)|unclassified	0.1283829802
+UniRef50_H2FU57	0.1283824323
+UniRef50_H2FU57|unclassified	0.1283824323
+UniRef50_UPI0003627E6E: hypothetical protein	0.1283821335
+UniRef50_UPI0003627E6E: hypothetical protein|unclassified	0.1283821335
+UniRef50_UPI0003B72485: folylpolyglutamate synthase	0.1283805962
+UniRef50_UPI0003B72485: folylpolyglutamate synthase|unclassified	0.1283805962
+UniRef50_UPI000472F505: cation transporter	0.1283548569
+UniRef50_UPI000472F505: cation transporter|unclassified	0.1283548569
+UniRef50_P44771: Putative phosphatase HI_0597	0.1283495273
+UniRef50_P44771: Putative phosphatase HI_0597|unclassified	0.1283495273
+UniRef50_K0CMF4: NmrA family transcriptional regulator	0.1283457023
+UniRef50_K0CMF4: NmrA family transcriptional regulator|unclassified	0.1283457023
+UniRef50_UPI0003F1BDEE	0.1283367556
+UniRef50_UPI0003F1BDEE|unclassified	0.1283367556
+UniRef50_UPI00037EFD8C: hypothetical protein	0.1283353394
+UniRef50_UPI00037EFD8C: hypothetical protein|unclassified	0.1283353394
+UniRef50_UPI00026266EE: thioredoxin	0.1283163473
+UniRef50_UPI00026266EE: thioredoxin|unclassified	0.1283163473
+UniRef50_B7GHS8: CCA-adding enzyme	0.1283152070
+UniRef50_B7GHS8: CCA-adding enzyme|unclassified	0.1283152070
+UniRef50_X7YZZ8: Secretory lipase family protein	0.1283068182
+UniRef50_X7YZZ8: Secretory lipase family protein|unclassified	0.1283068182
+UniRef50_V8CKJ0	0.1282942105
+UniRef50_V8CKJ0|unclassified	0.1282942105
+UniRef50_K4KFY1: Excinuclease ABC subunit C domain-containing protein	0.1282933867
+UniRef50_K4KFY1: Excinuclease ABC subunit C domain-containing protein|unclassified	0.1282933867
+UniRef50_S9S6W9: Putative membrane protein	0.1282896969
+UniRef50_S9S6W9: Putative membrane protein|unclassified	0.1282896969
+UniRef50_UPI00044166EA: hypothetical protein PUNSTDRAFT_118027	0.1282831114
+UniRef50_UPI00044166EA: hypothetical protein PUNSTDRAFT_118027|unclassified	0.1282831114
+UniRef50_UPI00046A723D: quinol oxidase subunit 2	0.1282709756
+UniRef50_UPI00046A723D: quinol oxidase subunit 2|unclassified	0.1282709756
+UniRef50_I0KZH4	0.1282697975
+UniRef50_I0KZH4|unclassified	0.1282697975
+UniRef50_K7RQL5: Male sterility domain-containing protein	0.1282584112
+UniRef50_K7RQL5: Male sterility domain-containing protein|unclassified	0.1282584112
+UniRef50_UPI000380CEA3: hypothetical protein	0.1282567145
+UniRef50_UPI000380CEA3: hypothetical protein|unclassified	0.1282567145
+UniRef50_X0Z651: Marine sediment metagenome DNA, contig: S01H4_L02637	0.1282464297
+UniRef50_X0Z651: Marine sediment metagenome DNA, contig: S01H4_L02637|unclassified	0.1282464297
+UniRef50_UPI0003B65FB6: MULTISPECIES: cell division protein FtsZ	0.1282414138
+UniRef50_UPI0003B65FB6: MULTISPECIES: cell division protein FtsZ|unclassified	0.1282414138
+UniRef50_A5UZW4: Triosephosphate isomerase	0.1282409240
+UniRef50_A5UZW4: Triosephosphate isomerase|unclassified	0.1282409240
+UniRef50_X8M558: PF13099 domain protein	0.1282271279
+UniRef50_X8M558: PF13099 domain protein|unclassified	0.1282271279
+UniRef50_C5BMI1: Alkaline phosphatase-like protein	0.1282270386
+UniRef50_C5BMI1: Alkaline phosphatase-like protein|unclassified	0.1282270386
+UniRef50_UPI0003677725: hypothetical protein	0.1282263023
+UniRef50_UPI0003677725: hypothetical protein|unclassified	0.1282263023
+UniRef50_C4WJ28: LemA family protein	0.1282242124
+UniRef50_C4WJ28: LemA family protein|unclassified	0.1282242124
+UniRef50_UPI00036CDE0A: hypothetical protein	0.1282233004
+UniRef50_UPI00036CDE0A: hypothetical protein|unclassified	0.1282233004
+UniRef50_C6S4Z8	0.1282155201
+UniRef50_C6S4Z8|unclassified	0.1282155201
+UniRef50_A4VI67: Type 4 fimbrial biogenesis protein PilX	0.1282145023
+UniRef50_A4VI67: Type 4 fimbrial biogenesis protein PilX|unclassified	0.1282145023
+UniRef50_D5X173	0.1282045917
+UniRef50_D5X173|unclassified	0.1282045917
+UniRef50_D3ELV2: Cupin 2 conserved barrel domain protein	0.1282025862
+UniRef50_D3ELV2: Cupin 2 conserved barrel domain protein|unclassified	0.1282025862
+UniRef50_P42673: Pyrrolidone-carboxylate peptidase	0.1281739695
+UniRef50_P42673: Pyrrolidone-carboxylate peptidase|unclassified	0.1281739695
+UniRef50_UPI000375E5AB: hypothetical protein	0.1281638898
+UniRef50_UPI000375E5AB: hypothetical protein|unclassified	0.1281638898
+UniRef50_X2MBV9: Ribosome maturation protein RimP	0.1281615217
+UniRef50_X2MBV9: Ribosome maturation protein RimP|unclassified	0.1281615217
+UniRef50_UPI00046352F2: hypothetical protein	0.1281607631
+UniRef50_UPI00046352F2: hypothetical protein|unclassified	0.1281607631
+UniRef50_I7FQD7: Alpha-tubulin (Fragment)	0.1281585354
+UniRef50_I7FQD7: Alpha-tubulin (Fragment)|unclassified	0.1281585354
+UniRef50_Q07MV8	0.1281543420
+UniRef50_Q07MV8|unclassified	0.1281543420
+UniRef50_UPI0004418B4E: PREDICTED: adenylosuccinate lyase-like	0.1281524941
+UniRef50_UPI0004418B4E: PREDICTED: adenylosuccinate lyase-like|unclassified	0.1281524941
+UniRef50_UPI000455E3F5: hypothetical protein CONPUDRAFT_88180	0.1281366820
+UniRef50_UPI000455E3F5: hypothetical protein CONPUDRAFT_88180|unclassified	0.1281366820
+UniRef50_C7NBJ6	0.1281269303
+UniRef50_C7NBJ6|unclassified	0.1281269303
+UniRef50_UPI000478FE4D: glycine/betaine ABC transporter substrate-binding protein	0.1281183708
+UniRef50_UPI000478FE4D: glycine/betaine ABC transporter substrate-binding protein|unclassified	0.1281183708
+UniRef50_C8PV29	0.1281022979
+UniRef50_C8PV29|unclassified	0.1281022979
+UniRef50_UPI0001BC2B26: Resolvase domain protein	0.1281018423
+UniRef50_UPI0001BC2B26: Resolvase domain protein|unclassified	0.1281018423
+UniRef50_UPI000374F1B4: hypothetical protein	0.1280999316
+UniRef50_UPI000374F1B4: hypothetical protein|unclassified	0.1280999316
+UniRef50_Q02130: Histidine biosynthesis bifunctional protein HisIE	0.1280877107
+UniRef50_Q02130: Histidine biosynthesis bifunctional protein HisIE|unclassified	0.1280877107
+UniRef50_G4KU43: Putative transposase	0.1280736570
+UniRef50_G4KU43: Putative transposase|unclassified	0.1280736570
+UniRef50_E3CJ84	0.1280734806
+UniRef50_E3CJ84|unclassified	0.1280734806
+UniRef50_E4A243: YunF (Fragment)	0.1280711493
+UniRef50_E4A243: YunF (Fragment)|unclassified	0.1280711493
+UniRef50_UPI0004779D0F: penicillin-binding protein	0.1280656208
+UniRef50_UPI0004779D0F: penicillin-binding protein|unclassified	0.1280656208
+UniRef50_Q1D3F9: FHA domain protein	0.1280606139
+UniRef50_Q1D3F9: FHA domain protein|unclassified	0.1280606139
+UniRef50_UPI00021977C8: Appr-1-p processing domain protein	0.1280276278
+UniRef50_UPI00021977C8: Appr-1-p processing domain protein|unclassified	0.1280276278
+UniRef50_B0TCA6: N-acetyl-gamma-glutamyl-phosphate reductase	0.1280187050
+UniRef50_B0TCA6: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.1280187050
+UniRef50_UPI00047D2895: thiamine biosynthesis protein ApbE	0.1280176657
+UniRef50_UPI00047D2895: thiamine biosynthesis protein ApbE|unclassified	0.1280176657
+UniRef50_T2J2D2	0.1280165749
+UniRef50_T2J2D2|unclassified	0.1280165749
+UniRef50_W5X3P5: Ammonium transporter	0.1279914532
+UniRef50_W5X3P5: Ammonium transporter|unclassified	0.1279914532
+UniRef50_UPI0004133718: phosphopantetheine adenylyltransferase	0.1279893567
+UniRef50_UPI0004133718: phosphopantetheine adenylyltransferase|unclassified	0.1279893567
+UniRef50_M5PEW3: Peptide deformylase	0.1279868817
+UniRef50_M5PEW3: Peptide deformylase|unclassified	0.1279868817
+UniRef50_UPI0003B44FF8: N-acetylglucosamine-1-phosphate uridyltransferase, partial	0.1279797095
+UniRef50_UPI0003B44FF8: N-acetylglucosamine-1-phosphate uridyltransferase, partial|unclassified	0.1279797095
+UniRef50_UPI0003B417A1: Holliday junction resolvase	0.1279689202
+UniRef50_UPI0003B417A1: Holliday junction resolvase|unclassified	0.1279689202
+UniRef50_Q9CEC5: Homoserine O-succinyltransferase	0.1279660635
+UniRef50_Q9CEC5: Homoserine O-succinyltransferase|unclassified	0.1279660635
+UniRef50_D8HGC2	0.1279451149
+UniRef50_D8HGC2|unclassified	0.1279451149
+UniRef50_U1DA21	0.1279443508
+UniRef50_U1DA21|unclassified	0.1279443508
+UniRef50_D8FZ53	0.1279437940
+UniRef50_D8FZ53|unclassified	0.1279437940
+UniRef50_UPI0003D3EF7F: transcriptional regulator	0.1279373155
+UniRef50_UPI0003D3EF7F: transcriptional regulator|unclassified	0.1279373155
+UniRef50_E4L2K9	0.1279310488
+UniRef50_E4L2K9|unclassified	0.1279310488
+UniRef50_UPI0000123685: C. briggsae CBR-GEI-7 protein, partial	0.1279284812
+UniRef50_UPI0000123685: C. briggsae CBR-GEI-7 protein, partial|unclassified	0.1279284812
+UniRef50_M0H948	0.1279252215
+UniRef50_M0H948|unclassified	0.1279252215
+UniRef50_UPI00033456CD: PREDICTED: collagen alpha-1(III) chain-like	0.1279251780
+UniRef50_UPI00033456CD: PREDICTED: collagen alpha-1(III) chain-like|unclassified	0.1279251780
+UniRef50_UPI000372C8E5: hypothetical protein, partial	0.1279159091
+UniRef50_UPI000372C8E5: hypothetical protein, partial|unclassified	0.1279159091
+UniRef50_Q8A9V4: ATP synthase subunit beta	0.1279058397
+UniRef50_Q8A9V4: ATP synthase subunit beta|unclassified	0.1279058397
+UniRef50_UPI0001CB9AD0: PREDICTED: glucose dehydrogenase [FAD, quinone]-like	0.1279050610
+UniRef50_UPI0001CB9AD0: PREDICTED: glucose dehydrogenase [FAD, quinone]-like|unclassified	0.1279050610
+UniRef50_Q6AIT3	0.1278982350
+UniRef50_Q6AIT3|unclassified	0.1278982350
+UniRef50_UPI000374056E: hypothetical protein	0.1278960633
+UniRef50_UPI000374056E: hypothetical protein|unclassified	0.1278960633
+UniRef50_UPI00046A12DF: hypothetical protein	0.1278938290
+UniRef50_UPI00046A12DF: hypothetical protein|unclassified	0.1278938290
+UniRef50_X1CXM9: Marine sediment metagenome DNA, contig: S01H4_S18796 (Fragment)	0.1278827966
+UniRef50_X1CXM9: Marine sediment metagenome DNA, contig: S01H4_S18796 (Fragment)|unclassified	0.1278827966
+UniRef50_C2VAE4: Peptidase, M23/M37	0.1278758375
+UniRef50_C2VAE4: Peptidase, M23/M37|unclassified	0.1278758375
+UniRef50_UPI000471CA1B: hypothetical protein	0.1278635077
+UniRef50_UPI000471CA1B: hypothetical protein|unclassified	0.1278635077
+UniRef50_UPI0003C763B8: large membrane protein	0.1278538550
+UniRef50_UPI0003C763B8: large membrane protein|unclassified	0.1278538550
+UniRef50_C7CKD2	0.1278387695
+UniRef50_C7CKD2|unclassified	0.1278387695
+UniRef50_G9ZGA2: Transglycosylase SLT domain protein	0.1278374723
+UniRef50_G9ZGA2: Transglycosylase SLT domain protein|unclassified	0.1278374723
+UniRef50_UPI00038FF0AB: Ribonuclease H	0.1278332716
+UniRef50_UPI00038FF0AB: Ribonuclease H|unclassified	0.1278332716
+UniRef50_UPI000363E6FA: hypothetical protein	0.1278058365
+UniRef50_UPI000363E6FA: hypothetical protein|unclassified	0.1278058365
+UniRef50_Q2J862: Acetylglutamate kinase	0.1278007947
+UniRef50_Q2J862: Acetylglutamate kinase|unclassified	0.1278007947
+UniRef50_UPI00039A51D4: heme lyase subunit CcmF	0.1277978250
+UniRef50_UPI00039A51D4: heme lyase subunit CcmF|unclassified	0.1277978250
+UniRef50_UPI00047B18D5: hypothetical protein	0.1277925205
+UniRef50_UPI00047B18D5: hypothetical protein|unclassified	0.1277925205
+UniRef50_A0A059FRS7: Tripartite ATP-independent periplasmic transporter DctQ	0.1277882027
+UniRef50_A0A059FRS7: Tripartite ATP-independent periplasmic transporter DctQ|unclassified	0.1277882027
+UniRef50_C5AKK1	0.1277843497
+UniRef50_C5AKK1|unclassified	0.1277843497
+UniRef50_W4QPQ8: Na(+)/H(+) antiporter subunit B	0.1277840058
+UniRef50_W4QPQ8: Na(+)/H(+) antiporter subunit B|unclassified	0.1277840058
+UniRef50_Q8D384: YebA protein	0.1277837198
+UniRef50_Q8D384: YebA protein|unclassified	0.1277837198
+UniRef50_G5MVH4	0.1277769540
+UniRef50_G5MVH4|unclassified	0.1277769540
+UniRef50_UPI00047C0151: hypothetical protein	0.1277767923
+UniRef50_UPI00047C0151: hypothetical protein|unclassified	0.1277767923
+UniRef50_E2NSK7	0.1277755751
+UniRef50_E2NSK7|unclassified	0.1277755751
+UniRef50_N6ZKL2: Glycolate oxidase iron-sulfur subunit (Fragment)	0.1277682047
+UniRef50_N6ZKL2: Glycolate oxidase iron-sulfur subunit (Fragment)|unclassified	0.1277682047
+UniRef50_UPI0003075BE3: mannitol 2-dehydrogenase	0.1277668109
+UniRef50_UPI0003075BE3: mannitol 2-dehydrogenase|unclassified	0.1277668109
+UniRef50_X6L6R2: MFS transporter (Fragment)	0.1277652520
+UniRef50_X6L6R2: MFS transporter (Fragment)|unclassified	0.1277652520
+UniRef50_F9Q5L3	0.1277632012
+UniRef50_F9Q5L3|unclassified	0.1277632012
+UniRef50_Q6ZW19: cDNA FLJ41761 fis, clone IMR322003675	0.1277519214
+UniRef50_Q6ZW19: cDNA FLJ41761 fis, clone IMR322003675|unclassified	0.1277519214
+UniRef50_V3GUH2: HK97 family phage portal protein	0.1277491852
+UniRef50_V3GUH2: HK97 family phage portal protein|unclassified	0.1277491852
+UniRef50_UPI00046A47AD: hypothetical protein	0.1277453685
+UniRef50_UPI00046A47AD: hypothetical protein|unclassified	0.1277453685
+UniRef50_UPI0003B3E5D2: methylmalonyl-CoA mutase	0.1277389603
+UniRef50_UPI0003B3E5D2: methylmalonyl-CoA mutase|unclassified	0.1277389603
+UniRef50_R4UFD5: Carboxyl esterase	0.1277339554
+UniRef50_R4UFD5: Carboxyl esterase|unclassified	0.1277339554
+UniRef50_UPI00036E41C5: hypothetical protein	0.1277262795
+UniRef50_UPI00036E41C5: hypothetical protein|unclassified	0.1277262795
+UniRef50_E3IR85: Peptidase S14 ClpP	0.1277197944
+UniRef50_E3IR85: Peptidase S14 ClpP|unclassified	0.1277197944
+UniRef50_UPI00035FD138: hypothetical protein	0.1277187588
+UniRef50_UPI00035FD138: hypothetical protein|unclassified	0.1277187588
+UniRef50_W2D1I8	0.1277072584
+UniRef50_W2D1I8|unclassified	0.1277072584
+UniRef50_A6UE13	0.1277063694
+UniRef50_A6UE13|unclassified	0.1277063694
+UniRef50_Q0A7X8: Leucyl/phenylalanyl-tRNA--protein transferase	0.1277063546
+UniRef50_Q0A7X8: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.1277063546
+UniRef50_UPI00047AED65: hypothetical protein	0.1277044718
+UniRef50_UPI00047AED65: hypothetical protein|unclassified	0.1277044718
+UniRef50_UPI00037DC452: hypothetical protein, partial	0.1277021914
+UniRef50_UPI00037DC452: hypothetical protein, partial|unclassified	0.1277021914
+UniRef50_A8F4M2: UDP-N-acetylenolpyruvoylglucosamine reductase	0.1277005499
+UniRef50_A8F4M2: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.1277005499
+UniRef50_UPI0003A73695: hypothetical protein	0.1276988054
+UniRef50_UPI0003A73695: hypothetical protein|unclassified	0.1276988054
+UniRef50_S4AAN9	0.1276776902
+UniRef50_S4AAN9|unclassified	0.1276776902
+UniRef50_R5PX38: Sec-C domain-containing protein domain-containing protein	0.1276768855
+UniRef50_R5PX38: Sec-C domain-containing protein domain-containing protein|unclassified	0.1276768855
+UniRef50_UPI000471E4EF: hypothetical protein, partial	0.1276748358
+UniRef50_UPI000471E4EF: hypothetical protein, partial|unclassified	0.1276748358
+UniRef50_Q92ID7: NADH-quinone oxidoreductase subunit C	0.1276628227
+UniRef50_Q92ID7: NADH-quinone oxidoreductase subunit C|unclassified	0.1276628227
+UniRef50_UPI0004097C5D: dihydroxyacetone kinase	0.1276619600
+UniRef50_UPI0004097C5D: dihydroxyacetone kinase|unclassified	0.1276619600
+UniRef50_A0A058ZEV1	0.1276531180
+UniRef50_A0A058ZEV1|unclassified	0.1276531180
+UniRef50_UPI0003662C27: hypothetical protein, partial	0.1276502714
+UniRef50_UPI0003662C27: hypothetical protein, partial|unclassified	0.1276502714
+UniRef50_F2D102: Predicted protein	0.1276363743
+UniRef50_F2D102: Predicted protein|unclassified	0.1276363743
+UniRef50_UPI00047C82E1: hypothetical protein	0.1276163237
+UniRef50_UPI00047C82E1: hypothetical protein|unclassified	0.1276163237
+UniRef50_UPI000367B671: hypothetical protein	0.1275874953
+UniRef50_UPI000367B671: hypothetical protein|unclassified	0.1275874953
+UniRef50_R4YW23: Chromosome partitioning protein transcriptional regulator	0.1275870762
+UniRef50_R4YW23: Chromosome partitioning protein transcriptional regulator|unclassified	0.1275870762
+UniRef50_UPI00047DB2B8: glutathione peroxidase	0.1275805405
+UniRef50_UPI00047DB2B8: glutathione peroxidase|unclassified	0.1275805405
+UniRef50_UPI0004658DF8: hypothetical protein	0.1275546412
+UniRef50_UPI0004658DF8: hypothetical protein|unclassified	0.1275546412
+UniRef50_UPI0004560947: hypothetical protein PFL1_00311	0.1275382518
+UniRef50_UPI0004560947: hypothetical protein PFL1_00311|unclassified	0.1275382518
+UniRef50_E4L537	0.1275364171
+UniRef50_E4L537|unclassified	0.1275364171
+UniRef50_UPI000304D536: hypothetical protein	0.1275357905
+UniRef50_UPI000304D536: hypothetical protein|unclassified	0.1275357905
+UniRef50_UPI000478211F: hypothetical protein	0.1275300042
+UniRef50_UPI000478211F: hypothetical protein|unclassified	0.1275300042
+UniRef50_W4TRB0: Iron-sulfur cluster assembly ATPase protein SufC	0.1275262931
+UniRef50_W4TRB0: Iron-sulfur cluster assembly ATPase protein SufC|unclassified	0.1275262931
+UniRef50_UPI00047E8000: hypothetical protein	0.1275215502
+UniRef50_UPI00047E8000: hypothetical protein|unclassified	0.1275215502
+UniRef50_Q5FNB9: Small heat shock protein	0.1275112998
+UniRef50_Q5FNB9: Small heat shock protein|unclassified	0.1275112998
+UniRef50_S6NMI9	0.1274858137
+UniRef50_S6NMI9|unclassified	0.1274858137
+UniRef50_D9VTA9: Predicted protein	0.1274827706
+UniRef50_D9VTA9: Predicted protein|unclassified	0.1274827706
+UniRef50_H4FBV6: Lytic transglycosylase catalytic	0.1274801355
+UniRef50_H4FBV6: Lytic transglycosylase catalytic|unclassified	0.1274801355
+UniRef50_UPI0004561653: hypothetical protein PFL1_00418	0.1274674618
+UniRef50_UPI0004561653: hypothetical protein PFL1_00418|unclassified	0.1274674618
+UniRef50_UPI00034496F2: hypothetical protein	0.1274643798
+UniRef50_UPI00034496F2: hypothetical protein|unclassified	0.1274643798
+UniRef50_H9U1A6: Rv3683 (Fragment)	0.1274591763
+UniRef50_H9U1A6: Rv3683 (Fragment)|unclassified	0.1274591763
+UniRef50_UPI0003655C04: hypothetical protein	0.1274581995
+UniRef50_UPI0003655C04: hypothetical protein|unclassified	0.1274581995
+UniRef50_A0A023B4Y6	0.1274575049
+UniRef50_A0A023B4Y6|unclassified	0.1274575049
+UniRef50_Q9KCA2: BH1671 protein	0.1274517167
+UniRef50_Q9KCA2: BH1671 protein|unclassified	0.1274517167
+UniRef50_UPI000479AAE0: hypothetical protein	0.1274448560
+UniRef50_UPI000479AAE0: hypothetical protein|unclassified	0.1274448560
+UniRef50_Q31FG2: Lipid A export ATP-binding/permease protein MsbA	0.1274442392
+UniRef50_Q31FG2: Lipid A export ATP-binding/permease protein MsbA|unclassified	0.1274442392
+UniRef50_P0ADG2: Acetolactate synthase isozyme 2 small subunit	0.1274398473
+UniRef50_P0ADG2: Acetolactate synthase isozyme 2 small subunit|unclassified	0.1274398473
+UniRef50_M1CWM1	0.1274394140
+UniRef50_M1CWM1|unclassified	0.1274394140
+UniRef50_UPI00036969A8: hypothetical protein	0.1274274460
+UniRef50_UPI00036969A8: hypothetical protein|unclassified	0.1274274460
+UniRef50_R6NYX6	0.1274033571
+UniRef50_R6NYX6|unclassified	0.1274033571
+UniRef50_UPI000379F19F: hypothetical protein	0.1274016453
+UniRef50_UPI000379F19F: hypothetical protein|unclassified	0.1274016453
+UniRef50_U2FG82: Putative surface protein responsible for cell interaction contains cell adhesion domain containing p	0.1273968241
+UniRef50_U2FG82: Putative surface protein responsible for cell interaction contains cell adhesion domain containing p|unclassified	0.1273968241
+UniRef50_Q2YW26	0.1273841921
+UniRef50_Q2YW26|unclassified	0.1273841921
+UniRef50_A7HZ84: Endoribonuclease YbeY	0.1273714575
+UniRef50_A7HZ84: Endoribonuclease YbeY|unclassified	0.1273714575
+UniRef50_I4CX00: Type 4 fimbrial biogenesis protein PilX	0.1273655843
+UniRef50_I4CX00: Type 4 fimbrial biogenesis protein PilX|unclassified	0.1273655843
+UniRef50_S9UMA7	0.1273609559
+UniRef50_S9UMA7|unclassified	0.1273609559
+UniRef50_UPI0003C757EC: LuxR family transcriptional regulator	0.1273585630
+UniRef50_UPI0003C757EC: LuxR family transcriptional regulator|unclassified	0.1273585630
+UniRef50_G2UKJ0	0.1273563323
+UniRef50_G2UKJ0|unclassified	0.1273563323
+UniRef50_J0QZG9	0.1273451356
+UniRef50_J0QZG9|unclassified	0.1273451356
+UniRef50_UPI00037A2D68: S-adenosylmethionine decarboxylase	0.1273355935
+UniRef50_UPI00037A2D68: S-adenosylmethionine decarboxylase|unclassified	0.1273355935
+UniRef50_Q9WZ28: Carbamoyl-phosphate synthase small chain	0.1273278853
+UniRef50_Q9WZ28: Carbamoyl-phosphate synthase small chain|unclassified	0.1273278853
+UniRef50_J8TQP9	0.1273238331
+UniRef50_J8TQP9|unclassified	0.1273238331
+UniRef50_A5EYT7: NH(3)-dependent NAD(+) synthetase	0.1273204229
+UniRef50_A5EYT7: NH(3)-dependent NAD(+) synthetase|unclassified	0.1273204229
+UniRef50_I9A4C1: Pirin-related protein	0.1273045459
+UniRef50_I9A4C1: Pirin-related protein|unclassified	0.1273045459
+UniRef50_W3Y8C3: Relaxase/mobilization nuclease domain protein (Fragment)	0.1272931335
+UniRef50_W3Y8C3: Relaxase/mobilization nuclease domain protein (Fragment)|unclassified	0.1272931335
+UniRef50_R6S5Y7: LemA family protein	0.1272895243
+UniRef50_R6S5Y7: LemA family protein|unclassified	0.1272895243
+UniRef50_UPI0001F85E2B: multiple sugar-binding transporter-like protein	0.1272888365
+UniRef50_UPI0001F85E2B: multiple sugar-binding transporter-like protein|unclassified	0.1272888365
+UniRef50_UPI00036C5E23: hypothetical protein	0.1272843278
+UniRef50_UPI00036C5E23: hypothetical protein|unclassified	0.1272843278
+UniRef50_UPI0004692F7D: hypothetical protein	0.1272797316
+UniRef50_UPI0004692F7D: hypothetical protein|unclassified	0.1272797316
+UniRef50_Q74KF8: Phosphate import ATP-binding protein PstB 2	0.1272771548
+UniRef50_Q74KF8: Phosphate import ATP-binding protein PstB 2|unclassified	0.1272771548
+UniRef50_K2JFM7: Lipoprotein	0.1272538941
+UniRef50_K2JFM7: Lipoprotein|unclassified	0.1272538941
+UniRef50_M3XSS0	0.1272493313
+UniRef50_M3XSS0|unclassified	0.1272493313
+UniRef50_G6YE31	0.1272468080
+UniRef50_G6YE31|unclassified	0.1272468080
+UniRef50_X1B932: Marine sediment metagenome DNA, contig: S01H4_S02554 (Fragment)	0.1272389579
+UniRef50_X1B932: Marine sediment metagenome DNA, contig: S01H4_S02554 (Fragment)|unclassified	0.1272389579
+UniRef50_UPI000473E17A: hypothetical protein, partial	0.1272376710
+UniRef50_UPI000473E17A: hypothetical protein, partial|unclassified	0.1272376710
+UniRef50_L7G4H1	0.1272354624
+UniRef50_L7G4H1|unclassified	0.1272354624
+UniRef50_E2XJR2: MFS transporter, CP family, cyanate transporter	0.1272342792
+UniRef50_E2XJR2: MFS transporter, CP family, cyanate transporter|unclassified	0.1272342792
+UniRef50_UPI0001E89E89: gamma-glutamyltranspeptidase	0.1272317751
+UniRef50_UPI0001E89E89: gamma-glutamyltranspeptidase|unclassified	0.1272317751
+UniRef50_X1TQP3: Marine sediment metagenome DNA, contig: S12H4_S16198 (Fragment)	0.1272291950
+UniRef50_X1TQP3: Marine sediment metagenome DNA, contig: S12H4_S16198 (Fragment)|unclassified	0.1272291950
+UniRef50_UPI0003EA80F4: PREDICTED: acyl-CoA-binding domain-containing protein 4-like	0.1272201654
+UniRef50_UPI0003EA80F4: PREDICTED: acyl-CoA-binding domain-containing protein 4-like|unclassified	0.1272201654
+UniRef50_UPI0004653B0B: nickel transporter permease NikB	0.1272129626
+UniRef50_UPI0004653B0B: nickel transporter permease NikB|unclassified	0.1272129626
+UniRef50_UPI000287F5D4: prolipoprotein diacylglyceryl transferase	0.1272126403
+UniRef50_UPI000287F5D4: prolipoprotein diacylglyceryl transferase|unclassified	0.1272126403
+UniRef50_H2CA16: CRISPR-associated helicase, Cas3 family	0.1271928690
+UniRef50_H2CA16: CRISPR-associated helicase, Cas3 family|unclassified	0.1271928690
+UniRef50_I0JH16	0.1271919559
+UniRef50_I0JH16|unclassified	0.1271919559
+UniRef50_R5P7Q5: Alpha-N-acetylglucosaminidase	0.1271792116
+UniRef50_R5P7Q5: Alpha-N-acetylglucosaminidase|unclassified	0.1271792116
+UniRef50_P47686: Peptide methionine sulfoxide reductase MsrB	0.1271716598
+UniRef50_P47686: Peptide methionine sulfoxide reductase MsrB|unclassified	0.1271716598
+UniRef50_UPI0003B33564: 5-dehydro-4-deoxyglucarate dehydratase	0.1271624558
+UniRef50_UPI0003B33564: 5-dehydro-4-deoxyglucarate dehydratase|unclassified	0.1271624558
+UniRef50_F8JU12	0.1271571503
+UniRef50_F8JU12|unclassified	0.1271571503
+UniRef50_UPI000465C725: hypothetical protein	0.1271363911
+UniRef50_UPI000465C725: hypothetical protein|unclassified	0.1271363911
+UniRef50_A9GA28: PE-PGRS family protein	0.1271317703
+UniRef50_A9GA28: PE-PGRS family protein|unclassified	0.1271317703
+UniRef50_UPI000258F095: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1-like	0.1271258661
+UniRef50_UPI000258F095: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1-like|unclassified	0.1271258661
+UniRef50_U3UA35: Regulatory protein HrpB	0.1271224538
+UniRef50_U3UA35: Regulatory protein HrpB|unclassified	0.1271224538
+UniRef50_UPI00047C4DD1: DEAD/DEAH box helicase	0.1271189674
+UniRef50_UPI00047C4DD1: DEAD/DEAH box helicase|unclassified	0.1271189674
+UniRef50_G8N152	0.1271154588
+UniRef50_G8N152|unclassified	0.1271154588
+UniRef50_UPI000468CBD2: PTS cellobiose transporter subunit IIC	0.1271087573
+UniRef50_UPI000468CBD2: PTS cellobiose transporter subunit IIC|unclassified	0.1271087573
+UniRef50_G7LV33: Major facilitator superfamily MFS_1	0.1271045386
+UniRef50_G7LV33: Major facilitator superfamily MFS_1|unclassified	0.1271045386
+UniRef50_UPI0003807495: hypothetical protein, partial	0.1270986666
+UniRef50_UPI0003807495: hypothetical protein, partial|unclassified	0.1270986666
+UniRef50_UPI0002195FE5: peptidase	0.1270917049
+UniRef50_UPI0002195FE5: peptidase|unclassified	0.1270917049
+UniRef50_P37008	0.1270859136
+UniRef50_P37008|unclassified	0.1270859136
+UniRef50_UPI0003686489: hypothetical protein	0.1270792467
+UniRef50_UPI0003686489: hypothetical protein|unclassified	0.1270792467
+UniRef50_F3G839	0.1270715408
+UniRef50_F3G839|unclassified	0.1270715408
+UniRef50_K0NL99	0.1270712398
+UniRef50_K0NL99|unclassified	0.1270712398
+UniRef50_C0B1M8	0.1270653574
+UniRef50_C0B1M8|unclassified	0.1270653574
+UniRef50_F3W5L8: Fumarate reductase/succinate dehydrogenase flavodomain protein	0.1270222468
+UniRef50_F3W5L8: Fumarate reductase/succinate dehydrogenase flavodomain protein|unclassified	0.1270222468
+UniRef50_C3ECQ2: TPR domain protein	0.1269974302
+UniRef50_C3ECQ2: TPR domain protein|unclassified	0.1269974302
+UniRef50_UPI0002F8AC80: hypothetical protein	0.1269974099
+UniRef50_UPI0002F8AC80: hypothetical protein|unclassified	0.1269974099
+UniRef50_UPI0003B6B909: ABC transporter	0.1269968147
+UniRef50_UPI0003B6B909: ABC transporter|unclassified	0.1269968147
+UniRef50_F0D3B7	0.1269848587
+UniRef50_F0D3B7|unclassified	0.1269848587
+UniRef50_Q7VIU4: Prolipoprotein diacylglyceryl transferase	0.1269805840
+UniRef50_Q7VIU4: Prolipoprotein diacylglyceryl transferase|unclassified	0.1269805840
+UniRef50_B8D8A8: Diaminopimelate epimerase	0.1269793237
+UniRef50_B8D8A8: Diaminopimelate epimerase|unclassified	0.1269793237
+UniRef50_V4WK28	0.1269767631
+UniRef50_V4WK28|unclassified	0.1269767631
+UniRef50_I4D5X2	0.1269695295
+UniRef50_I4D5X2|unclassified	0.1269695295
+UniRef50_Q93Z96: Coproporphyrinogen-III oxidase 2, chloroplastic	0.1269634737
+UniRef50_Q93Z96: Coproporphyrinogen-III oxidase 2, chloroplastic|unclassified	0.1269634737
+UniRef50_U6IF34: Heat shock protein 71 kDa protein	0.1269634292
+UniRef50_U6IF34: Heat shock protein 71 kDa protein|unclassified	0.1269634292
+UniRef50_Q7NS67: UPF0225 protein CV_3559	0.1269547627
+UniRef50_Q7NS67: UPF0225 protein CV_3559|unclassified	0.1269547627
+UniRef50_A8F257: Holo-[acyl-carrier-protein] synthase	0.1269524699
+UniRef50_A8F257: Holo-[acyl-carrier-protein] synthase|unclassified	0.1269524699
+UniRef50_UPI00037B1859: hypothetical protein	0.1269467688
+UniRef50_UPI00037B1859: hypothetical protein|unclassified	0.1269467688
+UniRef50_UPI000454A132: PREDICTED: armadillo repeat protein deleted in velo-cardio-facial syndrome-like, partial	0.1269340583
+UniRef50_UPI000454A132: PREDICTED: armadillo repeat protein deleted in velo-cardio-facial syndrome-like, partial|unclassified	0.1269340583
+UniRef50_UPI000379875F: hypothetical protein	0.1269332882
+UniRef50_UPI000379875F: hypothetical protein|unclassified	0.1269332882
+UniRef50_H9KE53	0.1269315613
+UniRef50_H9KE53|unclassified	0.1269315613
+UniRef50_M3VMM8: Insoluble matrix protein	0.1269311004
+UniRef50_M3VMM8: Insoluble matrix protein|unclassified	0.1269311004
+UniRef50_W0N7Z9: Membrane protein	0.1269225295
+UniRef50_W0N7Z9: Membrane protein|unclassified	0.1269225295
+UniRef50_UPI00045E9C41: hypothetical protein	0.1269185273
+UniRef50_UPI00045E9C41: hypothetical protein|unclassified	0.1269185273
+UniRef50_P21311: Retron EC67 DNA adenine methylase	0.1269129446
+UniRef50_P21311: Retron EC67 DNA adenine methylase|unclassified	0.1269129446
+UniRef50_D5P6N9	0.1269060718
+UniRef50_D5P6N9|unclassified	0.1269060718
+UniRef50_K2HLI7: Flagellar biosynthesis/type III secretory pathway protein FliH	0.1269023320
+UniRef50_K2HLI7: Flagellar biosynthesis/type III secretory pathway protein FliH|unclassified	0.1269023320
+UniRef50_Q390V3: 5'-nucleotidase SurE 1	0.1269009648
+UniRef50_Q390V3: 5'-nucleotidase SurE 1|unclassified	0.1269009648
+UniRef50_A0A038FQY7	0.1268996716
+UniRef50_A0A038FQY7|unclassified	0.1268996716
+UniRef50_Q487E8: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase	0.1268971126
+UniRef50_Q487E8: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|unclassified	0.1268971126
+UniRef50_UPI0003B68D44: peptide ABC transporter ATP-binding protein	0.1268835889
+UniRef50_UPI0003B68D44: peptide ABC transporter ATP-binding protein|unclassified	0.1268835889
+UniRef50_C2LZ77	0.1268811872
+UniRef50_C2LZ77|unclassified	0.1268811872
+UniRef50_UPI00036EB496: hypothetical protein	0.1268774495
+UniRef50_UPI00036EB496: hypothetical protein|unclassified	0.1268774495
+UniRef50_UPI000382DA82: hypothetical protein	0.1268772836
+UniRef50_UPI000382DA82: hypothetical protein|unclassified	0.1268772836
+UniRef50_A5V3M9: N-succinylarginine dihydrolase	0.1268592880
+UniRef50_A5V3M9: N-succinylarginine dihydrolase|unclassified	0.1268592880
+UniRef50_UPI000463A678: hypothetical protein, partial	0.1268589080
+UniRef50_UPI000463A678: hypothetical protein, partial|unclassified	0.1268589080
+UniRef50_A0NTD2	0.1268579465
+UniRef50_A0NTD2|unclassified	0.1268579465
+UniRef50_G0DWG7	0.1268405588
+UniRef50_G0DWG7|unclassified	0.1268405588
+UniRef50_I3AQ20: Putative chaperone (Fragment)	0.1268362268
+UniRef50_I3AQ20: Putative chaperone (Fragment)|unclassified	0.1268362268
+UniRef50_UPI000237B76B: Siderophore staphylobactin biosynthesis protein SbnE	0.1268362051
+UniRef50_UPI000237B76B: Siderophore staphylobactin biosynthesis protein SbnE|unclassified	0.1268362051
+UniRef50_UPI0003956B7A: PREDICTED: low-density lipoprotein receptor class A domain-containing protein 3	0.1268356038
+UniRef50_UPI0003956B7A: PREDICTED: low-density lipoprotein receptor class A domain-containing protein 3|unclassified	0.1268356038
+UniRef50_Q5JFN5: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.1268051668
+UniRef50_Q5JFN5: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.1268051668
+UniRef50_H7G238	0.1268020823
+UniRef50_H7G238|unclassified	0.1268020823
+UniRef50_UPI0004758F45: flagellar biosynthesis protein flip	0.1267980318
+UniRef50_UPI0004758F45: flagellar biosynthesis protein flip|unclassified	0.1267980318
+UniRef50_UPI00039C866C: biopolymer transporter ExbD	0.1267917510
+UniRef50_UPI00039C866C: biopolymer transporter ExbD|unclassified	0.1267917510
+UniRef50_I1ELS0	0.1267847318
+UniRef50_I1ELS0|unclassified	0.1267847318
+UniRef50_UPI0004735386: hypothetical protein, partial	0.1267824616
+UniRef50_UPI0004735386: hypothetical protein, partial|unclassified	0.1267824616
+UniRef50_M7F3Y3: Proline/betaine transporter	0.1267460093
+UniRef50_M7F3Y3: Proline/betaine transporter|unclassified	0.1267460093
+UniRef50_G0GQB1	0.1267445934
+UniRef50_G0GQB1|unclassified	0.1267445934
+UniRef50_R7F196	0.1267443010
+UniRef50_R7F196|unclassified	0.1267443010
+UniRef50_F8JJ47	0.1267416222
+UniRef50_F8JJ47|unclassified	0.1267416222
+UniRef50_UPI0002557D62: preprotein translocase subunit SecD, partial	0.1267302146
+UniRef50_UPI0002557D62: preprotein translocase subunit SecD, partial|unclassified	0.1267302146
+UniRef50_UPI00026CC5AD: histidine kinase	0.1267214929
+UniRef50_UPI00026CC5AD: histidine kinase|unclassified	0.1267214929
+UniRef50_UPI000370F5E4: hypothetical protein, partial	0.1267040581
+UniRef50_UPI000370F5E4: hypothetical protein, partial|unclassified	0.1267040581
+UniRef50_W7D9V1: Peptidoglycan lytic protein P45	0.1267018437
+UniRef50_W7D9V1: Peptidoglycan lytic protein P45|unclassified	0.1267018437
+UniRef50_P45313: Probable arabinose 5-phosphate isomerase	0.1266960100
+UniRef50_P45313: Probable arabinose 5-phosphate isomerase|unclassified	0.1266960100
+UniRef50_P23526: Adenosylhomocysteinase	0.1266943354
+UniRef50_P23526: Adenosylhomocysteinase|unclassified	0.1266943354
+UniRef50_W4HZ56	0.1266872377
+UniRef50_W4HZ56|unclassified	0.1266872377
+UniRef50_UPI00047B955B: hypothetical protein	0.1266793656
+UniRef50_UPI00047B955B: hypothetical protein|unclassified	0.1266793656
+UniRef50_UPI000476E6E7: lysyl-tRNA synthetase	0.1266738340
+UniRef50_UPI000476E6E7: lysyl-tRNA synthetase|unclassified	0.1266738340
+UniRef50_UPI0003688E90: hypothetical protein	0.1266726980
+UniRef50_UPI0003688E90: hypothetical protein|unclassified	0.1266726980
+UniRef50_U1XZU3: HxxPF-repeated domain protein	0.1266660861
+UniRef50_U1XZU3: HxxPF-repeated domain protein|unclassified	0.1266660861
+UniRef50_R7YSY8	0.1266660199
+UniRef50_R7YSY8|unclassified	0.1266660199
+UniRef50_UPI0003C16579: PREDICTED: elongation factor Ts 1, mitochondrial-like	0.1266599265
+UniRef50_UPI0003C16579: PREDICTED: elongation factor Ts 1, mitochondrial-like|unclassified	0.1266599265
+UniRef50_UPI0003805E06: hypothetical protein	0.1266556681
+UniRef50_UPI0003805E06: hypothetical protein|unclassified	0.1266556681
+UniRef50_A3Z8F7	0.1266554917
+UniRef50_A3Z8F7|unclassified	0.1266554917
+UniRef50_UPI00046BF056: PREDICTED: cystathionine gamma-lyase isoform X1	0.1266427043
+UniRef50_UPI00046BF056: PREDICTED: cystathionine gamma-lyase isoform X1|unclassified	0.1266427043
+UniRef50_UPI0003B408EC: 3-oxoacyl-ACP reductase	0.1266381941
+UniRef50_UPI0003B408EC: 3-oxoacyl-ACP reductase|unclassified	0.1266381941
+UniRef50_UPI000344C199: hypothetical protein	0.1266345378
+UniRef50_UPI000344C199: hypothetical protein|unclassified	0.1266345378
+UniRef50_UPI0002379CD5: IS5 family transposase OrfA	0.1266254171
+UniRef50_UPI0002379CD5: IS5 family transposase OrfA|unclassified	0.1266254171
+UniRef50_K7YZI3	0.1266215848
+UniRef50_K7YZI3|unclassified	0.1266215848
+UniRef50_UPI0002376BF5: Bcr/CflA subfamily drug resistance transporter, partial	0.1266197124
+UniRef50_UPI0002376BF5: Bcr/CflA subfamily drug resistance transporter, partial|unclassified	0.1266197124
+UniRef50_UPI00036E6761: hypothetical protein	0.1266007621
+UniRef50_UPI00036E6761: hypothetical protein|unclassified	0.1266007621
+UniRef50_UPI0004769652: hypothetical protein	0.1265985635
+UniRef50_UPI0004769652: hypothetical protein|unclassified	0.1265985635
+UniRef50_UPI0003B572C4: chromosome condensation protein CrcB	0.1265857520
+UniRef50_UPI0003B572C4: chromosome condensation protein CrcB|unclassified	0.1265857520
+UniRef50_A9AYE8: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	0.1265803370
+UniRef50_A9AYE8: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|unclassified	0.1265803370
+UniRef50_UPI0003681CA6: hypothetical protein	0.1265790518
+UniRef50_UPI0003681CA6: hypothetical protein|unclassified	0.1265790518
+UniRef50_UPI00046ECD0C: hypothetical protein	0.1265665755
+UniRef50_UPI00046ECD0C: hypothetical protein|unclassified	0.1265665755
+UniRef50_Q87GX2: Peptidase T	0.1265621731
+UniRef50_Q87GX2: Peptidase T|unclassified	0.1265621731
+UniRef50_UPI0003B6DF38: signal peptidase	0.1265601608
+UniRef50_UPI0003B6DF38: signal peptidase|unclassified	0.1265601608
+UniRef50_E9VKS6: Phage DNA packaging protein Nu1 (Fragment)	0.1265574300
+UniRef50_E9VKS6: Phage DNA packaging protein Nu1 (Fragment)|unclassified	0.1265574300
+UniRef50_UPI0002DD1F24: hypothetical protein	0.1265509938
+UniRef50_UPI0002DD1F24: hypothetical protein|unclassified	0.1265509938
+UniRef50_UPI0004625A7F: PREDICTED: 39S ribosomal protein L36, mitochondrial	0.1265502782
+UniRef50_UPI0004625A7F: PREDICTED: 39S ribosomal protein L36, mitochondrial|unclassified	0.1265502782
+UniRef50_UPI0003629D64: hypothetical protein	0.1265413528
+UniRef50_UPI0003629D64: hypothetical protein|unclassified	0.1265413528
+UniRef50_F9Y4N3	0.1265312585
+UniRef50_F9Y4N3|unclassified	0.1265312585
+UniRef50_UPI0003FC4BCC: hypothetical protein	0.1265230110
+UniRef50_UPI0003FC4BCC: hypothetical protein|unclassified	0.1265230110
+UniRef50_N0BAE4	0.1265213390
+UniRef50_N0BAE4|unclassified	0.1265213390
+UniRef50_B4MSX4: GK19813	0.1265212789
+UniRef50_B4MSX4: GK19813|unclassified	0.1265212789
+UniRef50_UPI0003A3851F: hypothetical protein	0.1265170634
+UniRef50_UPI0003A3851F: hypothetical protein|unclassified	0.1265170634
+UniRef50_J8N9B6: TQXA domain-containing protein	0.1265155003
+UniRef50_J8N9B6: TQXA domain-containing protein|unclassified	0.1265155003
+UniRef50_Q2LR47: UDP-N-acetylmuramate--L-alanine ligase	0.1265133454
+UniRef50_Q2LR47: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.1265133454
+UniRef50_X2NCS3	0.1265020397
+UniRef50_X2NCS3|unclassified	0.1265020397
+UniRef50_Q2SSQ6: ATP-dependent 6-phosphofructokinase	0.1265015136
+UniRef50_Q2SSQ6: ATP-dependent 6-phosphofructokinase|unclassified	0.1265015136
+UniRef50_UPI00035C95CB: hypothetical protein, partial	0.1264994397
+UniRef50_UPI00035C95CB: hypothetical protein, partial|unclassified	0.1264994397
+UniRef50_UPI00047B556C: hypothetical protein	0.1264975117
+UniRef50_UPI00047B556C: hypothetical protein|unclassified	0.1264975117
+UniRef50_W4QLZ9: HD domain protein	0.1264655585
+UniRef50_W4QLZ9: HD domain protein|unclassified	0.1264655585
+UniRef50_B2S8E3: Lipoprotein signal peptidase	0.1264643135
+UniRef50_B2S8E3: Lipoprotein signal peptidase|unclassified	0.1264643135
+UniRef50_A1DNU3	0.1264594001
+UniRef50_A1DNU3|unclassified	0.1264594001
+UniRef50_UPI000477E108: oxidoreductase	0.1264511832
+UniRef50_UPI000477E108: oxidoreductase|unclassified	0.1264511832
+UniRef50_UPI0003B31B3C: thiamin pyrophosphokinase	0.1264503795
+UniRef50_UPI0003B31B3C: thiamin pyrophosphokinase|unclassified	0.1264503795
+UniRef50_W1ACQ2: Transcriptional regulator, putative	0.1264490488
+UniRef50_W1ACQ2: Transcriptional regulator, putative|unclassified	0.1264490488
+UniRef50_UPI000472ECAA: UDP-N-acetylmuramate--alanine ligase	0.1264484265
+UniRef50_UPI000472ECAA: UDP-N-acetylmuramate--alanine ligase|unclassified	0.1264484265
+UniRef50_Z5X8L5: Glycerol-3-phosphate dehydrogenase	0.1264477397
+UniRef50_Z5X8L5: Glycerol-3-phosphate dehydrogenase|unclassified	0.1264477397
+UniRef50_UPI0003494E28: fatty acid desaturase	0.1264422076
+UniRef50_UPI0003494E28: fatty acid desaturase|unclassified	0.1264422076
+UniRef50_UPI000370A1E3: hypothetical protein	0.1264417706
+UniRef50_UPI000370A1E3: hypothetical protein|unclassified	0.1264417706
+UniRef50_A4GA34	0.1264339453
+UniRef50_A4GA34|unclassified	0.1264339453
+UniRef50_UPI0003715434: hypothetical protein	0.1264329652
+UniRef50_UPI0003715434: hypothetical protein|unclassified	0.1264329652
+UniRef50_X1P4W6: Marine sediment metagenome DNA, contig: S06H3_S18972 (Fragment)	0.1264295950
+UniRef50_X1P4W6: Marine sediment metagenome DNA, contig: S06H3_S18972 (Fragment)|unclassified	0.1264295950
+UniRef50_UPI00036BB2B7: hypothetical protein	0.1264267771
+UniRef50_UPI00036BB2B7: hypothetical protein|unclassified	0.1264267771
+UniRef50_X1JCC9: Marine sediment metagenome DNA, contig: S06H3_C02408 (Fragment)	0.1264129994
+UniRef50_X1JCC9: Marine sediment metagenome DNA, contig: S06H3_C02408 (Fragment)|unclassified	0.1264129994
+UniRef50_UPI000443EAB6: PREDICTED: proline-rich protein 2-like	0.1264112698
+UniRef50_UPI000443EAB6: PREDICTED: proline-rich protein 2-like|unclassified	0.1264112698
+UniRef50_UPI00034A58CD: hypothetical protein	0.1264097489
+UniRef50_UPI00034A58CD: hypothetical protein|unclassified	0.1264097489
+UniRef50_Q2RNB6: Phosphatidylserine decarboxylase proenzyme	0.1263846482
+UniRef50_Q2RNB6: Phosphatidylserine decarboxylase proenzyme|unclassified	0.1263846482
+UniRef50_W5ACA9	0.1263784969
+UniRef50_W5ACA9|unclassified	0.1263784969
+UniRef50_Q6KIP2: Spermidine/putrescine import ATP-binding protein PotA	0.1263748438
+UniRef50_Q6KIP2: Spermidine/putrescine import ATP-binding protein PotA|unclassified	0.1263748438
+UniRef50_H0JH83: Lipoprotein	0.1263689530
+UniRef50_H0JH83: Lipoprotein|unclassified	0.1263689530
+UniRef50_Q0RJU2	0.1263679857
+UniRef50_Q0RJU2|unclassified	0.1263679857
+UniRef50_UPI00036B8932: hypothetical protein	0.1263666206
+UniRef50_UPI00036B8932: hypothetical protein|unclassified	0.1263666206
+UniRef50_UPI0003B334FD: LuxR family transcriptional regulator	0.1263661765
+UniRef50_UPI0003B334FD: LuxR family transcriptional regulator|unclassified	0.1263661765
+UniRef50_C8S240	0.1263631574
+UniRef50_C8S240|unclassified	0.1263631574
+UniRef50_UPI0004626FE7: hypothetical protein	0.1263622191
+UniRef50_UPI0004626FE7: hypothetical protein|unclassified	0.1263622191
+UniRef50_B3EFT2: Phosphoribosyl-AMP cyclohydrolase	0.1263468715
+UniRef50_B3EFT2: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.1263468715
+UniRef50_UPI0001F2729C: mannitol 2-dehydrogenase	0.1263389810
+UniRef50_UPI0001F2729C: mannitol 2-dehydrogenase|unclassified	0.1263389810
+UniRef50_F9MSP3: HD domain protein	0.1263119235
+UniRef50_F9MSP3: HD domain protein|unclassified	0.1263119235
+UniRef50_UPI0003B74FD0: 4-diphosphocytidyl-2C-methyl-D-erythritol kinase	0.1263070890
+UniRef50_UPI0003B74FD0: 4-diphosphocytidyl-2C-methyl-D-erythritol kinase|unclassified	0.1263070890
+UniRef50_UPI0003FD634F: hypothetical protein	0.1262966337
+UniRef50_UPI0003FD634F: hypothetical protein|unclassified	0.1262966337
+UniRef50_UPI000467033F: hypothetical protein	0.1262933727
+UniRef50_UPI000467033F: hypothetical protein|unclassified	0.1262933727
+UniRef50_Q07NA0: Putative FecR	0.1262871091
+UniRef50_Q07NA0: Putative FecR|unclassified	0.1262871091
+UniRef50_K0RWI6	0.1262775223
+UniRef50_K0RWI6|unclassified	0.1262775223
+UniRef50_UPI0003C772AD: hypothetical protein	0.1262593092
+UniRef50_UPI0003C772AD: hypothetical protein|unclassified	0.1262593092
+UniRef50_B0CQ90: Predicted protein	0.1262539311
+UniRef50_B0CQ90: Predicted protein|unclassified	0.1262539311
+UniRef50_UPI0002F01115: hypothetical protein	0.1262525176
+UniRef50_UPI0002F01115: hypothetical protein|unclassified	0.1262525176
+UniRef50_UPI00035F6127: hypothetical protein	0.1262436466
+UniRef50_UPI00035F6127: hypothetical protein|unclassified	0.1262436466
+UniRef50_UPI0002556FCA: major facilitator family transporter, partial	0.1262397439
+UniRef50_UPI0002556FCA: major facilitator family transporter, partial|unclassified	0.1262397439
+UniRef50_K4MG34: Beta-Ig-H3/fasciclin	0.1262359039
+UniRef50_K4MG34: Beta-Ig-H3/fasciclin|unclassified	0.1262359039
+UniRef50_A6L4L7: ATP synthase subunit beta	0.1262330471
+UniRef50_A6L4L7: ATP synthase subunit beta|unclassified	0.1262330471
+UniRef50_P39207: Nucleoside diphosphate kinase 1	0.1262289033
+UniRef50_P39207: Nucleoside diphosphate kinase 1|unclassified	0.1262289033
+UniRef50_M5DVC6: UPF0234 protein TOL_2827	0.1262175689
+UniRef50_M5DVC6: UPF0234 protein TOL_2827|unclassified	0.1262175689
+UniRef50_A9MKW8	0.1262061990
+UniRef50_A9MKW8|unclassified	0.1262061990
+UniRef50_UPI00046FC247: hypothetical protein, partial	0.1262009552
+UniRef50_UPI00046FC247: hypothetical protein, partial|unclassified	0.1262009552
+UniRef50_Q5GX46	0.1261972285
+UniRef50_Q5GX46|unclassified	0.1261972285
+UniRef50_UPI0003B6B449: transporter	0.1261892399
+UniRef50_UPI0003B6B449: transporter|unclassified	0.1261892399
+UniRef50_S5F215	0.1261872074
+UniRef50_S5F215|unclassified	0.1261872074
+UniRef50_W4XB65	0.1261837113
+UniRef50_W4XB65|unclassified	0.1261837113
+UniRef50_UPI0000E0F4A9: hypothetical protein	0.1261772716
+UniRef50_UPI0000E0F4A9: hypothetical protein|unclassified	0.1261772716
+UniRef50_UPI00030767B4: hypothetical protein	0.1261732908
+UniRef50_UPI00030767B4: hypothetical protein|unclassified	0.1261732908
+UniRef50_W6LYT1: SufE protein probably involved in Fe-S center assembly	0.1261728146
+UniRef50_W6LYT1: SufE protein probably involved in Fe-S center assembly|unclassified	0.1261728146
+UniRef50_UPI0002558D3C: LysR	0.1261714663
+UniRef50_UPI0002558D3C: LysR|unclassified	0.1261714663
+UniRef50_UPI000379EBB9: hypothetical protein	0.1261709029
+UniRef50_UPI000379EBB9: hypothetical protein|unclassified	0.1261709029
+UniRef50_UPI000315C379: hypothetical protein	0.1261655629
+UniRef50_UPI000315C379: hypothetical protein|unclassified	0.1261655629
+UniRef50_UPI0003B569CE: DEAD/DEAH box helicase	0.1261631997
+UniRef50_UPI0003B569CE: DEAD/DEAH box helicase|unclassified	0.1261631997
+UniRef50_UPI0003EDAA5E: Vanillate O-demethylase oxidoreductase	0.1261619830
+UniRef50_UPI0003EDAA5E: Vanillate O-demethylase oxidoreductase|unclassified	0.1261619830
+UniRef50_A0A015JXL2	0.1261588840
+UniRef50_A0A015JXL2|unclassified	0.1261588840
+UniRef50_G4SY04	0.1261556365
+UniRef50_G4SY04|unclassified	0.1261556365
+UniRef50_A1YZZ8: Phage endolysin	0.1261545460
+UniRef50_A1YZZ8: Phage endolysin|unclassified	0.1261545460
+UniRef50_UPI0003729E53: hypothetical protein	0.1261414688
+UniRef50_UPI0003729E53: hypothetical protein|unclassified	0.1261414688
+UniRef50_F9NYN4: Conserved domain protein	0.1261413160
+UniRef50_F9NYN4: Conserved domain protein|unclassified	0.1261413160
+UniRef50_UPI0004645D4C: hypothetical protein	0.1261345302
+UniRef50_UPI0004645D4C: hypothetical protein|unclassified	0.1261345302
+UniRef50_D0ZLL9	0.1261220862
+UniRef50_D0ZLL9|unclassified	0.1261220862
+UniRef50_A0A017HQT2	0.1261208412
+UniRef50_A0A017HQT2|unclassified	0.1261208412
+UniRef50_UPI00026CD1C9: MFS transporter	0.1261142194
+UniRef50_UPI00026CD1C9: MFS transporter|unclassified	0.1261142194
+UniRef50_UPI000174692C: spermidine/putrescine ABC transporter ATP-binding protein	0.1261140000
+UniRef50_UPI000174692C: spermidine/putrescine ABC transporter ATP-binding protein|unclassified	0.1261140000
+UniRef50_D3PML9: Tripartite ATP-independent periplasmic transporter DctQ component	0.1261042358
+UniRef50_D3PML9: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.1261042358
+UniRef50_P62417: Phosphoglycerate kinase	0.1261017070
+UniRef50_P62417: Phosphoglycerate kinase|unclassified	0.1261017070
+UniRef50_UPI000475BA70: hypothetical protein, partial	0.1260969713
+UniRef50_UPI000475BA70: hypothetical protein, partial|unclassified	0.1260969713
+UniRef50_P37251: Acetolactate synthase large subunit	0.1260939896
+UniRef50_P37251: Acetolactate synthase large subunit|unclassified	0.1260939896
+UniRef50_M4MY88	0.1260933690
+UniRef50_M4MY88|unclassified	0.1260933690
+UniRef50_A5INL8: D-ribose pyranase	0.1260813016
+UniRef50_A5INL8: D-ribose pyranase|unclassified	0.1260813016
+UniRef50_UPI0003739A6D: hypothetical protein	0.1260754260
+UniRef50_UPI0003739A6D: hypothetical protein|unclassified	0.1260754260
+UniRef50_UPI00041D865E: peptide ABC transporter permease	0.1260751660
+UniRef50_UPI00041D865E: peptide ABC transporter permease|unclassified	0.1260751660
+UniRef50_W8RVI9: Iron-sulfur cluster assembly ATPase protein SufC	0.1260735627
+UniRef50_W8RVI9: Iron-sulfur cluster assembly ATPase protein SufC|unclassified	0.1260735627
+UniRef50_Q8CZ55	0.1260733560
+UniRef50_Q8CZ55|unclassified	0.1260733560
+UniRef50_UPI000469A681: hypothetical protein	0.1260727646
+UniRef50_UPI000469A681: hypothetical protein|unclassified	0.1260727646
+UniRef50_I3UYI1	0.1260622999
+UniRef50_I3UYI1|unclassified	0.1260622999
+UniRef50_UPI00037F0084: hypothetical protein	0.1260449389
+UniRef50_UPI00037F0084: hypothetical protein|unclassified	0.1260449389
+UniRef50_UPI000381DD4B: hypothetical protein	0.1260437905
+UniRef50_UPI000381DD4B: hypothetical protein|unclassified	0.1260437905
+UniRef50_K7V7I1	0.1260434651
+UniRef50_K7V7I1|unclassified	0.1260434651
+UniRef50_UPI00037DEEAD: hypothetical protein	0.1260411606
+UniRef50_UPI00037DEEAD: hypothetical protein|unclassified	0.1260411606
+UniRef50_D5U413	0.1260402090
+UniRef50_D5U413|unclassified	0.1260402090
+UniRef50_UPI0004414F12: HIT-like protein	0.1260299907
+UniRef50_UPI0004414F12: HIT-like protein|unclassified	0.1260299907
+UniRef50_UPI00036BFBD9: hypothetical protein	0.1260163390
+UniRef50_UPI00036BFBD9: hypothetical protein|unclassified	0.1260163390
+UniRef50_F2ABS9	0.1260106873
+UniRef50_F2ABS9|unclassified	0.1260106873
+UniRef50_UPI000466C8E1: hypothetical protein	0.1260087746
+UniRef50_UPI000466C8E1: hypothetical protein|unclassified	0.1260087746
+UniRef50_C4B0W6	0.1260044628
+UniRef50_C4B0W6|unclassified	0.1260044628
+UniRef50_Q2IMD4: Chorismate synthase	0.1259858466
+UniRef50_Q2IMD4: Chorismate synthase|unclassified	0.1259858466
+UniRef50_A3V864	0.1259821185
+UniRef50_A3V864|unclassified	0.1259821185
+UniRef50_F3GFM1	0.1259787615
+UniRef50_F3GFM1|unclassified	0.1259787615
+UniRef50_S4IIM8	0.1259714925
+UniRef50_S4IIM8|unclassified	0.1259714925
+UniRef50_A0RKF7: Lipoyl synthase	0.1259697641
+UniRef50_A0RKF7: Lipoyl synthase|unclassified	0.1259697641
+UniRef50_P0DJF8: S-methyl-5'-thioadenosine phosphorylase	0.1259621067
+UniRef50_P0DJF8: S-methyl-5'-thioadenosine phosphorylase|unclassified	0.1259621067
+UniRef50_G0SUT5: Autotransporter-associated beta strand repeat protein	0.1259536918
+UniRef50_G0SUT5: Autotransporter-associated beta strand repeat protein|unclassified	0.1259536918
+UniRef50_UPI0002492BAD: sugar ABC transporter ATPase	0.1259514812
+UniRef50_UPI0002492BAD: sugar ABC transporter ATPase|unclassified	0.1259514812
+UniRef50_G7UEA5: Phage baseplate assembly protein J	0.1259478409
+UniRef50_G7UEA5: Phage baseplate assembly protein J|unclassified	0.1259478409
+UniRef50_Q5NR24: Glutamate 5-kinase	0.1259381345
+UniRef50_Q5NR24: Glutamate 5-kinase|unclassified	0.1259381345
+UniRef50_UPI00031F2072: hypothetical protein	0.1259324846
+UniRef50_UPI00031F2072: hypothetical protein|unclassified	0.1259324846
+UniRef50_Q3EN50	0.1259300106
+UniRef50_Q3EN50|unclassified	0.1259300106
+UniRef50_Q86AV6: Citrate synthase	0.1259272460
+UniRef50_Q86AV6: Citrate synthase|unclassified	0.1259272460
+UniRef50_UPI00035EB80A: hypothetical protein	0.1259211638
+UniRef50_UPI00035EB80A: hypothetical protein|unclassified	0.1259211638
+UniRef50_A1B1T6	0.1259207234
+UniRef50_A1B1T6|unclassified	0.1259207234
+UniRef50_C7D895	0.1259136092
+UniRef50_C7D895|unclassified	0.1259136092
+UniRef50_UPI0003787717: hypothetical protein	0.1259099144
+UniRef50_UPI0003787717: hypothetical protein|unclassified	0.1259099144
+UniRef50_P13995: Bifunctional methylenetetrahydrofolate dehydrogenase/cyclohydrolase, mitochondrial	0.1259079251
+UniRef50_P13995: Bifunctional methylenetetrahydrofolate dehydrogenase/cyclohydrolase, mitochondrial|unclassified	0.1259079251
+UniRef50_UPI0004704CFF: cation:proton antiporter	0.1259001224
+UniRef50_UPI0004704CFF: cation:proton antiporter|unclassified	0.1259001224
+UniRef50_S5YT94: DsbA oxidoreductase	0.1258982315
+UniRef50_S5YT94: DsbA oxidoreductase|unclassified	0.1258982315
+UniRef50_C6B6S2: Cupin 2 conserved barrel domain protein	0.1258897489
+UniRef50_C6B6S2: Cupin 2 conserved barrel domain protein|unclassified	0.1258897489
+UniRef50_Q5WH73: Peptide methionine sulfoxide reductase MsrB	0.1258896634
+UniRef50_Q5WH73: Peptide methionine sulfoxide reductase MsrB|unclassified	0.1258896634
+UniRef50_P44905	0.1258797589
+UniRef50_P44905|unclassified	0.1258797589
+UniRef50_UPI0003826EC3: hypothetical protein	0.1258794671
+UniRef50_UPI0003826EC3: hypothetical protein|unclassified	0.1258794671
+UniRef50_UPI0003B40465: sugar phosphate phosphatase	0.1258710574
+UniRef50_UPI0003B40465: sugar phosphate phosphatase|unclassified	0.1258710574
+UniRef50_Q19QT7: Cystathionine gamma-lyase	0.1258676533
+UniRef50_Q19QT7: Cystathionine gamma-lyase|unclassified	0.1258676533
+UniRef50_X1VWX7: Marine sediment metagenome DNA, contig: S12H4_S13116 (Fragment)	0.1258664987
+UniRef50_X1VWX7: Marine sediment metagenome DNA, contig: S12H4_S13116 (Fragment)|unclassified	0.1258664987
+UniRef50_S6URD9	0.1258611121
+UniRef50_S6URD9|unclassified	0.1258611121
+UniRef50_UPI0003C1ACBA: PREDICTED: probable 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase-like	0.1258607916
+UniRef50_UPI0003C1ACBA: PREDICTED: probable 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase-like|unclassified	0.1258607916
+UniRef50_UPI00037AF9BE: hypothetical protein	0.1258581460
+UniRef50_UPI00037AF9BE: hypothetical protein|unclassified	0.1258581460
+UniRef50_UPI000382EE40: hypothetical protein	0.1258562070
+UniRef50_UPI000382EE40: hypothetical protein|unclassified	0.1258562070
+UniRef50_A3ZQQ3	0.1258557435
+UniRef50_A3ZQQ3|unclassified	0.1258557435
+UniRef50_UPI00036A7209: hypothetical protein	0.1258530424
+UniRef50_UPI00036A7209: hypothetical protein|unclassified	0.1258530424
+UniRef50_UPI00030B31C1: magnesium chelatase	0.1258517201
+UniRef50_UPI00030B31C1: magnesium chelatase|unclassified	0.1258517201
+UniRef50_UPI0002630101: AraC family transcriptional regulator	0.1258404116
+UniRef50_UPI0002630101: AraC family transcriptional regulator|unclassified	0.1258404116
+UniRef50_G0D4K4	0.1258329418
+UniRef50_G0D4K4|unclassified	0.1258329418
+UniRef50_A9NFE8: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.1258270773
+UniRef50_A9NFE8: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.1258270773
+UniRef50_A7NJJ5: Electron transport protein SCO1/SenC	0.1258261055
+UniRef50_A7NJJ5: Electron transport protein SCO1/SenC|unclassified	0.1258261055
+UniRef50_UPI0002E5C1ED: ubiquinol-cytochrome C reductase	0.1258219711
+UniRef50_UPI0002E5C1ED: ubiquinol-cytochrome C reductase|unclassified	0.1258219711
+UniRef50_K2FEX6	0.1258152386
+UniRef50_K2FEX6|unclassified	0.1258152386
+UniRef50_UPI0004746720: hypothetical protein	0.1258148505
+UniRef50_UPI0004746720: hypothetical protein|unclassified	0.1258148505
+UniRef50_A0A011PH95	0.1258015514
+UniRef50_A0A011PH95|unclassified	0.1258015514
+UniRef50_O32129: Lipoyl synthase	0.1257851462
+UniRef50_O32129: Lipoyl synthase|unclassified	0.1257851462
+UniRef50_F7NQM8	0.1257785972
+UniRef50_F7NQM8|unclassified	0.1257785972
+UniRef50_UPI00047EF134: hypothetical protein	0.1257762136
+UniRef50_UPI00047EF134: hypothetical protein|unclassified	0.1257762136
+UniRef50_UPI00037D0EDB: hypothetical protein	0.1257682363
+UniRef50_UPI00037D0EDB: hypothetical protein|unclassified	0.1257682363
+UniRef50_UPI000379E1B7: hypothetical protein	0.1257679919
+UniRef50_UPI000379E1B7: hypothetical protein|unclassified	0.1257679919
+UniRef50_UPI00034A6DA4: TetR family transcriptional regulator	0.1257638067
+UniRef50_UPI00034A6DA4: TetR family transcriptional regulator|unclassified	0.1257638067
+UniRef50_J1EAV0: Localization of periplasmic protein complex (Fragment)	0.1257510332
+UniRef50_J1EAV0: Localization of periplasmic protein complex (Fragment)|unclassified	0.1257510332
+UniRef50_Q5H485: IS1478 transposase	0.1257445569
+UniRef50_Q5H485: IS1478 transposase|unclassified	0.1257445569
+UniRef50_UPI00046CF31E: hypothetical protein	0.1257398771
+UniRef50_UPI00046CF31E: hypothetical protein|unclassified	0.1257398771
+UniRef50_UPI00016C4E11: putative Protein phosphatase	0.1257397342
+UniRef50_UPI00016C4E11: putative Protein phosphatase|unclassified	0.1257397342
+UniRef50_UPI0003637379: hypothetical protein	0.1257380860
+UniRef50_UPI0003637379: hypothetical protein|unclassified	0.1257380860
+UniRef50_UPI00037AFD85: hypothetical protein	0.1257258473
+UniRef50_UPI00037AFD85: hypothetical protein|unclassified	0.1257258473
+UniRef50_UPI00029B56F4: dihydroorotate dehydrogenase	0.1257022103
+UniRef50_UPI00029B56F4: dihydroorotate dehydrogenase|unclassified	0.1257022103
+UniRef50_M1V973: Probable ribonuclease R	0.1256921067
+UniRef50_M1V973: Probable ribonuclease R|unclassified	0.1256921067
+UniRef50_A0A023RFR7	0.1256744031
+UniRef50_A0A023RFR7|unclassified	0.1256744031
+UniRef50_P21276: Superoxide dismutase [Fe] 1, chloroplastic	0.1256672563
+UniRef50_P21276: Superoxide dismutase [Fe] 1, chloroplastic|unclassified	0.1256672563
+UniRef50_UPI0003C10DF6	0.1256441155
+UniRef50_UPI0003C10DF6|unclassified	0.1256441155
+UniRef50_UPI00035C38C8: single-stranded DNA-binding protein	0.1256365524
+UniRef50_UPI00035C38C8: single-stranded DNA-binding protein|unclassified	0.1256365524
+UniRef50_UPI00036E7582: hypothetical protein	0.1256351804
+UniRef50_UPI00036E7582: hypothetical protein|unclassified	0.1256351804
+UniRef50_A5CWY8: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	0.1256259146
+UniRef50_A5CWY8: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.1256259146
+UniRef50_P21108: Ribose-phosphate pyrophosphokinase 3	0.1256200367
+UniRef50_P21108: Ribose-phosphate pyrophosphokinase 3|unclassified	0.1256200367
+UniRef50_UPI0004695664: hypothetical protein	0.1256194767
+UniRef50_UPI0004695664: hypothetical protein|unclassified	0.1256194767
+UniRef50_UPI0004698548: hypothetical protein	0.1256162407
+UniRef50_UPI0004698548: hypothetical protein|unclassified	0.1256162407
+UniRef50_Q5BIK5: RH55750p	0.1256130748
+UniRef50_Q5BIK5: RH55750p|unclassified	0.1256130748
+UniRef50_UPI0002FD1145: hypothetical protein	0.1256070851
+UniRef50_UPI0002FD1145: hypothetical protein|unclassified	0.1256070851
+UniRef50_G0CKP3	0.1256042063
+UniRef50_G0CKP3|unclassified	0.1256042063
+UniRef50_D0CS40: Outer membrane transporter, ompp1/fadl/todx family	0.1256001532
+UniRef50_D0CS40: Outer membrane transporter, ompp1/fadl/todx family|unclassified	0.1256001532
+UniRef50_UPI0003B4904A: hypothetical protein	0.1255849735
+UniRef50_UPI0003B4904A: hypothetical protein|unclassified	0.1255849735
+UniRef50_Q8YUR4: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	0.1255824960
+UniRef50_Q8YUR4: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|unclassified	0.1255824960
+UniRef50_R4ZBS0: Competence protein ComGF	0.1255766262
+UniRef50_R4ZBS0: Competence protein ComGF|unclassified	0.1255766262
+UniRef50_UPI00046FF5CF: glycerol-3-phosphate ABC transporter substrate-binding protein	0.1255726832
+UniRef50_UPI00046FF5CF: glycerol-3-phosphate ABC transporter substrate-binding protein|unclassified	0.1255726832
+UniRef50_R4MXP6: PPE family protein	0.1255690443
+UniRef50_R4MXP6: PPE family protein|unclassified	0.1255690443
+UniRef50_UPI00047C1003: 30S ribosomal protein S2	0.1255687715
+UniRef50_UPI00047C1003: 30S ribosomal protein S2|unclassified	0.1255687715
+UniRef50_A7BUA2: Periplasmic nitrate reductase small subunit	0.1255681529
+UniRef50_A7BUA2: Periplasmic nitrate reductase small subunit|unclassified	0.1255681529
+UniRef50_O31766	0.1255567114
+UniRef50_O31766|unclassified	0.1255567114
+UniRef50_O57672: Glyceraldehyde-3-phosphate dehydrogenase (Fragment)	0.1255545156
+UniRef50_O57672: Glyceraldehyde-3-phosphate dehydrogenase (Fragment)|unclassified	0.1255545156
+UniRef50_Q9AI36: Phosphoheptose isomerase	0.1255543847
+UniRef50_Q9AI36: Phosphoheptose isomerase|unclassified	0.1255543847
+UniRef50_G8SAR7	0.1255230827
+UniRef50_G8SAR7|unclassified	0.1255230827
+UniRef50_UPI0004662AFB: hypothetical protein	0.1255204841
+UniRef50_UPI0004662AFB: hypothetical protein|unclassified	0.1255204841
+UniRef50_F9WJN6: WGS project CAEQ00000000 data, annotated contig 932	0.1255164465
+UniRef50_F9WJN6: WGS project CAEQ00000000 data, annotated contig 932|unclassified	0.1255164465
+UniRef50_U6B751	0.1255108551
+UniRef50_U6B751|unclassified	0.1255108551
+UniRef50_UPI000470F815: alcohol dehydrogenase	0.1255090173
+UniRef50_UPI000470F815: alcohol dehydrogenase|unclassified	0.1255090173
+UniRef50_D9X888: Integral membrane protein	0.1255076722
+UniRef50_D9X888: Integral membrane protein|unclassified	0.1255076722
+UniRef50_UPI0003B792B2: FAD-dependent oxidoreductase	0.1255014654
+UniRef50_UPI0003B792B2: FAD-dependent oxidoreductase|unclassified	0.1255014654
+UniRef50_B3EH35: Ribonuclease H	0.1254994082
+UniRef50_B3EH35: Ribonuclease H|unclassified	0.1254994082
+UniRef50_UPI00031319BC: hypothetical protein	0.1254974259
+UniRef50_UPI00031319BC: hypothetical protein|unclassified	0.1254974259
+UniRef50_C7LYU3: SirA family protein	0.1254897514
+UniRef50_C7LYU3: SirA family protein|unclassified	0.1254897514
+UniRef50_V7BUX0	0.1254845793
+UniRef50_V7BUX0|unclassified	0.1254845793
+UniRef50_S1RQ64	0.1254729200
+UniRef50_S1RQ64|unclassified	0.1254729200
+UniRef50_M0QAU2: Cytochrome c-type biogenesis protein CcmH	0.1254504228
+UniRef50_M0QAU2: Cytochrome c-type biogenesis protein CcmH|unclassified	0.1254504228
+UniRef50_UPI000465ED07: oxidoreductase	0.1254410359
+UniRef50_UPI000465ED07: oxidoreductase|unclassified	0.1254410359
+UniRef50_UPI000237739A: flagellin domain-containing protein, partial	0.1254310642
+UniRef50_UPI000237739A: flagellin domain-containing protein, partial|unclassified	0.1254310642
+UniRef50_F4H898: CRISPR-associated HD domain protein	0.1254155647
+UniRef50_F4H898: CRISPR-associated HD domain protein|unclassified	0.1254155647
+UniRef50_C6L1J0: Putative membrane protein (Fragment)	0.1254137864
+UniRef50_C6L1J0: Putative membrane protein (Fragment)|unclassified	0.1254137864
+UniRef50_H8K359	0.1254097004
+UniRef50_H8K359|unclassified	0.1254097004
+UniRef50_Q5CPU9	0.1254013602
+UniRef50_Q5CPU9|unclassified	0.1254013602
+UniRef50_UPI000479BB9F: hypothetical protein	0.1254011374
+UniRef50_UPI000479BB9F: hypothetical protein|unclassified	0.1254011374
+UniRef50_UPI0003502114: PREDICTED: LOW QUALITY PROTEIN: 30S ribosomal protein S19-like	0.1253740145
+UniRef50_UPI0003502114: PREDICTED: LOW QUALITY PROTEIN: 30S ribosomal protein S19-like|unclassified	0.1253740145
+UniRef50_I0QZT4	0.1253700088
+UniRef50_I0QZT4|unclassified	0.1253700088
+UniRef50_UPI00047E64E1: CreA	0.1253644314
+UniRef50_UPI00047E64E1: CreA|unclassified	0.1253644314
+UniRef50_Q0AY75: UDP-N-acetylenolpyruvoylglucosamine reductase	0.1253602810
+UniRef50_Q0AY75: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.1253602810
+UniRef50_W4LWW2	0.1253561649
+UniRef50_W4LWW2|unclassified	0.1253561649
+UniRef50_W5GQY5	0.1253544179
+UniRef50_W5GQY5|unclassified	0.1253544179
+UniRef50_S0V048	0.1253488383
+UniRef50_S0V048|unclassified	0.1253488383
+UniRef50_UPI0003F4E8F3: hypothetical protein	0.1253458288
+UniRef50_UPI0003F4E8F3: hypothetical protein|unclassified	0.1253458288
+UniRef50_UPI00036CF283: hypothetical protein, partial	0.1253407100
+UniRef50_UPI00036CF283: hypothetical protein, partial|unclassified	0.1253407100
+UniRef50_K7SH99: Oxidoreductase, putative	0.1253392821
+UniRef50_K7SH99: Oxidoreductase, putative|unclassified	0.1253392821
+UniRef50_UPI00047BAEB0: hypothetical protein	0.1253370442
+UniRef50_UPI00047BAEB0: hypothetical protein|unclassified	0.1253370442
+UniRef50_UPI000289EFF3: 50S ribosomal protein L4	0.1253108526
+UniRef50_UPI000289EFF3: 50S ribosomal protein L4|unclassified	0.1253108526
+UniRef50_G8RA57: Tandem lipo protein within Pathogenicity island	0.1253023616
+UniRef50_G8RA57: Tandem lipo protein within Pathogenicity island|unclassified	0.1253023616
+UniRef50_A6GGW9: Pkn9 associate protein 1 (Fragment)	0.1252859565
+UniRef50_A6GGW9: Pkn9 associate protein 1 (Fragment)|unclassified	0.1252859565
+UniRef50_UPI00036DDF11: hypothetical protein	0.1252846648
+UniRef50_UPI00036DDF11: hypothetical protein|unclassified	0.1252846648
+UniRef50_D6T008	0.1252815862
+UniRef50_D6T008|unclassified	0.1252815862
+UniRef50_R6WAT8: Annexin	0.1252493443
+UniRef50_R6WAT8: Annexin|unclassified	0.1252493443
+UniRef50_UPI0004659C6E: hypothetical protein	0.1252474931
+UniRef50_UPI0004659C6E: hypothetical protein|unclassified	0.1252474931
+UniRef50_UPI00037C96DC: hypothetical protein	0.1252309710
+UniRef50_UPI00037C96DC: hypothetical protein|unclassified	0.1252309710
+UniRef50_UPI00035E1B99: hypothetical protein	0.1252252255
+UniRef50_UPI00035E1B99: hypothetical protein|unclassified	0.1252252255
+UniRef50_A3X7H4: Flagellar hook protein FlgE, putative	0.1251990509
+UniRef50_A3X7H4: Flagellar hook protein FlgE, putative|unclassified	0.1251990509
+UniRef50_A0A058U031: YXWGXW repeat protein	0.1251898402
+UniRef50_A0A058U031: YXWGXW repeat protein|unclassified	0.1251898402
+UniRef50_Q4HZI0: Diphthine synthase	0.1251867050
+UniRef50_Q4HZI0: Diphthine synthase|unclassified	0.1251867050
+UniRef50_J0GKS8	0.1251858078
+UniRef50_J0GKS8|unclassified	0.1251858078
+UniRef50_Q0H8W8: NADH-ubiquinone oxidoreductase chain 6	0.1251845931
+UniRef50_Q0H8W8: NADH-ubiquinone oxidoreductase chain 6|unclassified	0.1251845931
+UniRef50_Q8NSL1: 2-methylcitrate synthase 2	0.1251789016
+UniRef50_Q8NSL1: 2-methylcitrate synthase 2|unclassified	0.1251789016
+UniRef50_UPI0003B6CB15: AsnC family transcriptional regulator	0.1251781670
+UniRef50_UPI0003B6CB15: AsnC family transcriptional regulator|unclassified	0.1251781670
+UniRef50_UPI00037EE9D4: hypothetical protein, partial	0.1251756449
+UniRef50_UPI00037EE9D4: hypothetical protein, partial|unclassified	0.1251756449
+UniRef50_UPI000471BC01: hypothetical protein	0.1251698118
+UniRef50_UPI000471BC01: hypothetical protein|unclassified	0.1251698118
+UniRef50_Q1IXG7: Thioesterase superfamily	0.1251661779
+UniRef50_Q1IXG7: Thioesterase superfamily|unclassified	0.1251661779
+UniRef50_UPI0002896389: alanine racemase domain-containing protein, partial	0.1251640566
+UniRef50_UPI0002896389: alanine racemase domain-containing protein, partial|unclassified	0.1251640566
+UniRef50_K0QYQ2	0.1251581960
+UniRef50_K0QYQ2|unclassified	0.1251581960
+UniRef50_UPI0004633AFB: relaxase	0.1251527502
+UniRef50_UPI0004633AFB: relaxase|unclassified	0.1251527502
+UniRef50_UPI0002492490: L-serine ammonia-lyase beta subunit, partial	0.1251507351
+UniRef50_UPI0002492490: L-serine ammonia-lyase beta subunit, partial|unclassified	0.1251507351
+UniRef50_A0A059A963	0.1251377487
+UniRef50_A0A059A963|unclassified	0.1251377487
+UniRef50_J0UXH2	0.1251253178
+UniRef50_J0UXH2|unclassified	0.1251253178
+UniRef50_V6D7S3	0.1251196077
+UniRef50_V6D7S3|unclassified	0.1251196077
+UniRef50_UPI0004676B57: GntR family transcriptional regulator	0.1251158761
+UniRef50_UPI0004676B57: GntR family transcriptional regulator|unclassified	0.1251158761
+UniRef50_UPI000476BFED: hypothetical protein	0.1251046040
+UniRef50_UPI000476BFED: hypothetical protein|unclassified	0.1251046040
+UniRef50_UPI0003723E28: hypothetical protein	0.1251042436
+UniRef50_UPI0003723E28: hypothetical protein|unclassified	0.1251042436
+UniRef50_UPI000479952A: hypothetical protein	0.1250882494
+UniRef50_UPI000479952A: hypothetical protein|unclassified	0.1250882494
+UniRef50_H0FC00: Anti-sigma factor FoxR	0.1250574299
+UniRef50_H0FC00: Anti-sigma factor FoxR|unclassified	0.1250574299
+UniRef50_A0A023B068	0.1250563441
+UniRef50_A0A023B068|unclassified	0.1250563441
+UniRef50_T0UPU0: Late competence protein ComEC, DNA transport	0.1250533086
+UniRef50_T0UPU0: Late competence protein ComEC, DNA transport|unclassified	0.1250533086
+UniRef50_UPI00037C0828: hypothetical protein	0.1250458075
+UniRef50_UPI00037C0828: hypothetical protein|unclassified	0.1250458075
+UniRef50_UPI00042A8DFA: hypothetical protein	0.1250401440
+UniRef50_UPI00042A8DFA: hypothetical protein|unclassified	0.1250401440
+UniRef50_J2FD51	0.1250376831
+UniRef50_J2FD51|unclassified	0.1250376831
+UniRef50_UPI0002627B9A: 50S ribosomal protein L4	0.1250375492
+UniRef50_UPI0002627B9A: 50S ribosomal protein L4|unclassified	0.1250375492
+UniRef50_C9CZZ0: Type I secretion membrane fusion protein, HlyD	0.1250315990
+UniRef50_C9CZZ0: Type I secretion membrane fusion protein, HlyD|unclassified	0.1250315990
+UniRef50_Q0I3E8	0.1250259790
+UniRef50_Q0I3E8|unclassified	0.1250259790
+UniRef50_UPI000255BE74: amino acid ABC transporter substrate-binding protein/permease, partial	0.1250251544
+UniRef50_UPI000255BE74: amino acid ABC transporter substrate-binding protein/permease, partial|unclassified	0.1250251544
+UniRef50_UPI00047D17AA: hypothetical protein	0.1250183188
+UniRef50_UPI00047D17AA: hypothetical protein|unclassified	0.1250183188
+UniRef50_UPI00036F1E56: hypothetical protein	0.1250048552
+UniRef50_UPI00036F1E56: hypothetical protein|unclassified	0.1250048552
+UniRef50_Z5X7S9: Membrane protein	0.1250026129
+UniRef50_Z5X7S9: Membrane protein|unclassified	0.1250026129
+UniRef50_UPI00047924B0: membrane protein	0.1249986561
+UniRef50_UPI00047924B0: membrane protein|unclassified	0.1249986561
+UniRef50_Q3JFY3: 200 kDa antigen p200, putative	0.1249969011
+UniRef50_Q3JFY3: 200 kDa antigen p200, putative|unclassified	0.1249969011
+UniRef50_A0LHK5: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.1249891778
+UniRef50_A0LHK5: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.1249891778
+UniRef50_X7Z663: PE-PGRS family protein	0.1249607491
+UniRef50_X7Z663: PE-PGRS family protein|unclassified	0.1249607491
+UniRef50_UPI000360D09E: hypothetical protein	0.1249551457
+UniRef50_UPI000360D09E: hypothetical protein|unclassified	0.1249551457
+UniRef50_UPI0003664CEF: hypothetical protein	0.1249488706
+UniRef50_UPI0003664CEF: hypothetical protein|unclassified	0.1249488706
+UniRef50_W0IWY4: Diguanylate cyclase	0.1249462177
+UniRef50_W0IWY4: Diguanylate cyclase|unclassified	0.1249462177
+UniRef50_UPI00047BE341: septum formation initiator	0.1249441712
+UniRef50_UPI00047BE341: septum formation initiator|unclassified	0.1249441712
+UniRef50_UPI0003C19B5B	0.1249435407
+UniRef50_UPI0003C19B5B|unclassified	0.1249435407
+UniRef50_UPI00035DD0F8: hypothetical protein	0.1249425064
+UniRef50_UPI00035DD0F8: hypothetical protein|unclassified	0.1249425064
+UniRef50_UPI00046A9133: hypothetical protein	0.1249343125
+UniRef50_UPI00046A9133: hypothetical protein|unclassified	0.1249343125
+UniRef50_Q5X822: Diaminopimelate epimerase	0.1249313046
+UniRef50_Q5X822: Diaminopimelate epimerase|unclassified	0.1249313046
+UniRef50_P37786: Protein RfbJ	0.1249116998
+UniRef50_P37786: Protein RfbJ|unclassified	0.1249116998
+UniRef50_UPI00047072EA: protein rfbJ	0.1249116998
+UniRef50_UPI00047072EA: protein rfbJ|unclassified	0.1249116998
+UniRef50_UPI0003614958: hypothetical protein	0.1249063272
+UniRef50_UPI0003614958: hypothetical protein|unclassified	0.1249063272
+UniRef50_W9AI61: UPF0223 protein BN988_00832	0.1249061876
+UniRef50_W9AI61: UPF0223 protein BN988_00832|unclassified	0.1249061876
+UniRef50_UPI000381D79B: hypothetical protein	0.1249050985
+UniRef50_UPI000381D79B: hypothetical protein|unclassified	0.1249050985
+UniRef50_Q5P7J7: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.1249018366
+UniRef50_Q5P7J7: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.1249018366
+UniRef50_F8JYE9	0.1249009575
+UniRef50_F8JYE9|unclassified	0.1249009575
+UniRef50_UPI0002558E19: chemotaxis protein CheY	0.1248894452
+UniRef50_UPI0002558E19: chemotaxis protein CheY|unclassified	0.1248894452
+UniRef50_UPI0001E895C3: 3-mercaptopyruvate sulfurtransferase	0.1248768122
+UniRef50_UPI0001E895C3: 3-mercaptopyruvate sulfurtransferase|unclassified	0.1248768122
+UniRef50_H2RF65	0.1248764927
+UniRef50_H2RF65|unclassified	0.1248764927
+UniRef50_Q7MDF5: Peptidase T	0.1248721925
+UniRef50_Q7MDF5: Peptidase T|unclassified	0.1248721925
+UniRef50_E3Z0I1: CCA-adding enzyme (Fragment)	0.1248709636
+UniRef50_E3Z0I1: CCA-adding enzyme (Fragment)|unclassified	0.1248709636
+UniRef50_W1XXP0: Alpha-glycerophosphate oxidase (Fragment)	0.1248683469
+UniRef50_W1XXP0: Alpha-glycerophosphate oxidase (Fragment)|unclassified	0.1248683469
+UniRef50_UPI000467180A: aldehyde-activating protein	0.1248647630
+UniRef50_UPI000467180A: aldehyde-activating protein|unclassified	0.1248647630
+UniRef50_A0A059FU98: Dehydrogenase	0.1248611615
+UniRef50_A0A059FU98: Dehydrogenase|unclassified	0.1248611615
+UniRef50_UPI00042C608A: PREDICTED: monofunctional C1-tetrahydrofolate synthase, mitochondrial-like, partial	0.1248558654
+UniRef50_UPI00042C608A: PREDICTED: monofunctional C1-tetrahydrofolate synthase, mitochondrial-like, partial|unclassified	0.1248558654
+UniRef50_UPI00047CC791: hypothetical protein	0.1248534818
+UniRef50_UPI00047CC791: hypothetical protein|unclassified	0.1248534818
+UniRef50_UPI00035F935F: hypothetical protein	0.1248307854
+UniRef50_UPI00035F935F: hypothetical protein|unclassified	0.1248307854
+UniRef50_C7IZP3: Os03g0157900 protein (Fragment)	0.1248095767
+UniRef50_C7IZP3: Os03g0157900 protein (Fragment)|unclassified	0.1248095767
+UniRef50_Q1INK4	0.1248031024
+UniRef50_Q1INK4|unclassified	0.1248031024
+UniRef50_F3Z9J3: Putative cell shape-determining protein MreB	0.1248014469
+UniRef50_F3Z9J3: Putative cell shape-determining protein MreB|unclassified	0.1248014469
+UniRef50_H0E6A4: Oxidoreductase putative	0.1247963571
+UniRef50_H0E6A4: Oxidoreductase putative|unclassified	0.1247963571
+UniRef50_UPI000475E032: hypothetical protein	0.1247819021
+UniRef50_UPI000475E032: hypothetical protein|unclassified	0.1247819021
+UniRef50_UPI000465F3B0: hypothetical protein, partial	0.1247738487
+UniRef50_UPI000465F3B0: hypothetical protein, partial|unclassified	0.1247738487
+UniRef50_P55480	0.1247712641
+UniRef50_P55480|unclassified	0.1247712641
+UniRef50_UPI0003B54B86: alcohol dehydrogenase	0.1247624654
+UniRef50_UPI0003B54B86: alcohol dehydrogenase|unclassified	0.1247624654
+UniRef50_UPI00038149B3: hypothetical protein	0.1247602363
+UniRef50_UPI00038149B3: hypothetical protein|unclassified	0.1247602363
+UniRef50_UPI000362A912: hypothetical protein	0.1247598479
+UniRef50_UPI000362A912: hypothetical protein|unclassified	0.1247598479
+UniRef50_UPI00046D93F6: 30S ribosomal protein S2	0.1247490435
+UniRef50_UPI00046D93F6: 30S ribosomal protein S2|unclassified	0.1247490435
+UniRef50_UPI0003721143: hypothetical protein	0.1247449600
+UniRef50_UPI0003721143: hypothetical protein|unclassified	0.1247449600
+UniRef50_G6A4S6	0.1247402573
+UniRef50_G6A4S6|unclassified	0.1247402573
+UniRef50_UPI00036DD5B9: hypothetical protein	0.1247388534
+UniRef50_UPI00036DD5B9: hypothetical protein|unclassified	0.1247388534
+UniRef50_K6PZ35	0.1247336821
+UniRef50_K6PZ35|unclassified	0.1247336821
+UniRef50_R7ZYU2	0.1247320164
+UniRef50_R7ZYU2|unclassified	0.1247320164
+UniRef50_K9TWX9	0.1247255779
+UniRef50_K9TWX9|unclassified	0.1247255779
+UniRef50_UPI0004009643: triosephosphate isomerase	0.1247220105
+UniRef50_UPI0004009643: triosephosphate isomerase|unclassified	0.1247220105
+UniRef50_UPI00035E9C46: hypothetical protein	0.1247174411
+UniRef50_UPI00035E9C46: hypothetical protein|unclassified	0.1247174411
+UniRef50_C4L896: Phosphodiesterase, MJ0936 family	0.1247148463
+UniRef50_C4L896: Phosphodiesterase, MJ0936 family|unclassified	0.1247148463
+UniRef50_UPI0004713CDC: methionine synthase, partial	0.1247108119
+UniRef50_UPI0004713CDC: methionine synthase, partial|unclassified	0.1247108119
+UniRef50_UPI0003B31878: hypothetical protein	0.1247105471
+UniRef50_UPI0003B31878: hypothetical protein|unclassified	0.1247105471
+UniRef50_T9ITI5	0.1247067634
+UniRef50_T9ITI5|unclassified	0.1247067634
+UniRef50_UPI00046A7BF1: ABC transporter permease	0.1247064908
+UniRef50_UPI00046A7BF1: ABC transporter permease|unclassified	0.1247064908
+UniRef50_Q4SYA1: Chromosome undetermined SCAF12132, whole genome shotgun sequence. (Fragment)	0.1247038582
+UniRef50_Q4SYA1: Chromosome undetermined SCAF12132, whole genome shotgun sequence. (Fragment)|unclassified	0.1247038582
+UniRef50_I2CQ32	0.1246938464
+UniRef50_I2CQ32|unclassified	0.1246938464
+UniRef50_Q08MS8	0.1246920964
+UniRef50_Q08MS8|unclassified	0.1246920964
+UniRef50_UPI000350DC2D: PREDICTED: protein argonaute PNH1-like	0.1246908991
+UniRef50_UPI000350DC2D: PREDICTED: protein argonaute PNH1-like|unclassified	0.1246908991
+UniRef50_G3J2K3	0.1246888927
+UniRef50_G3J2K3|unclassified	0.1246888927
+UniRef50_UPI00028A3C1C: beta-lactamase	0.1246828183
+UniRef50_UPI00028A3C1C: beta-lactamase|unclassified	0.1246828183
+UniRef50_UPI0002FDEEA6: hypothetical protein	0.1246817160
+UniRef50_UPI0002FDEEA6: hypothetical protein|unclassified	0.1246817160
+UniRef50_UPI0002892E41: flagellin	0.1246755107
+UniRef50_UPI0002892E41: flagellin|unclassified	0.1246755107
+UniRef50_UPI00037CE5E8: hypothetical protein	0.1246750834
+UniRef50_UPI00037CE5E8: hypothetical protein|unclassified	0.1246750834
+UniRef50_UPI00042A3DBC: hypothetical protein	0.1246664583
+UniRef50_UPI00042A3DBC: hypothetical protein|unclassified	0.1246664583
+UniRef50_D6S3K9: Phosphoglycerate mutase family protein	0.1246627552
+UniRef50_D6S3K9: Phosphoglycerate mutase family protein|unclassified	0.1246627552
+UniRef50_UPI000373A7E6: 50S ribosomal protein L11 methyltransferase	0.1246603746
+UniRef50_UPI000373A7E6: 50S ribosomal protein L11 methyltransferase|unclassified	0.1246603746
+UniRef50_UPI0003C19D83	0.1246426839
+UniRef50_UPI0003C19D83|unclassified	0.1246426839
+UniRef50_UPI0004721439: hypothetical protein	0.1246423131
+UniRef50_UPI0004721439: hypothetical protein|unclassified	0.1246423131
+UniRef50_A5EHA8	0.1246365302
+UniRef50_A5EHA8|unclassified	0.1246365302
+UniRef50_UPI0003679237: hypothetical protein, partial	0.1246326017
+UniRef50_UPI0003679237: hypothetical protein, partial|unclassified	0.1246326017
+UniRef50_UPI0003608471: hypothetical protein	0.1246220574
+UniRef50_UPI0003608471: hypothetical protein|unclassified	0.1246220574
+UniRef50_UPI0003F08F9D: PREDICTED: sorbitol dehydrogenase-like	0.1246196457
+UniRef50_UPI0003F08F9D: PREDICTED: sorbitol dehydrogenase-like|unclassified	0.1246196457
+UniRef50_Q14P38: Hypothetical glucose inhibited protein n-terminal and c-terminal truncated	0.1246134027
+UniRef50_Q14P38: Hypothetical glucose inhibited protein n-terminal and c-terminal truncated|unclassified	0.1246134027
+UniRef50_A5EUU1	0.1246071373
+UniRef50_A5EUU1|unclassified	0.1246071373
+UniRef50_Q1IUF1: tRNA N6-adenosine threonylcarbamoyltransferase	0.1246011563
+UniRef50_Q1IUF1: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.1246011563
+UniRef50_H5NJS4: FabA-like domain protein	0.1246004453
+UniRef50_H5NJS4: FabA-like domain protein|unclassified	0.1246004453
+UniRef50_U7NQY0	0.1245904341
+UniRef50_U7NQY0|unclassified	0.1245904341
+UniRef50_UPI0003AD5DDE: hypothetical protein	0.1245893747
+UniRef50_UPI0003AD5DDE: hypothetical protein|unclassified	0.1245893747
+UniRef50_UPI0003774D8A: MULTISPECIES: hypothetical protein	0.1245806590
+UniRef50_UPI0003774D8A: MULTISPECIES: hypothetical protein|unclassified	0.1245806590
+UniRef50_R7XRL8: NmrA family protein	0.1245770291
+UniRef50_R7XRL8: NmrA family protein|unclassified	0.1245770291
+UniRef50_D1FMX0: InlA	0.1245767804
+UniRef50_D1FMX0: InlA|unclassified	0.1245767804
+UniRef50_UPI000475C41D: siderophore ABC transporter permease	0.1245703431
+UniRef50_UPI000475C41D: siderophore ABC transporter permease|unclassified	0.1245703431
+UniRef50_UPI0003F6CCF6: hypothetical protein	0.1245681155
+UniRef50_UPI0003F6CCF6: hypothetical protein|unclassified	0.1245681155
+UniRef50_UPI0004713B45: molecular chaperone GroEL	0.1245576225
+UniRef50_UPI0004713B45: molecular chaperone GroEL|unclassified	0.1245576225
+UniRef50_Q9N0B4: Unnamed protein product	0.1245555943
+UniRef50_Q9N0B4: Unnamed protein product|unclassified	0.1245555943
+UniRef50_Q1QWN8	0.1245550153
+UniRef50_Q1QWN8|unclassified	0.1245550153
+UniRef50_UPI0003B5FD41: hypothetical protein	0.1245529677
+UniRef50_UPI0003B5FD41: hypothetical protein|unclassified	0.1245529677
+UniRef50_A0KFV8: Integral membrane protein	0.1245419523
+UniRef50_A0KFV8: Integral membrane protein|unclassified	0.1245419523
+UniRef50_UPI00037902FF: hypothetical protein	0.1245280681
+UniRef50_UPI00037902FF: hypothetical protein|unclassified	0.1245280681
+UniRef50_UPI0002EAAA26: hypothetical protein	0.1245234594
+UniRef50_UPI0002EAAA26: hypothetical protein|unclassified	0.1245234594
+UniRef50_U3U8P3: UPF0234 protein HHS_07990	0.1245233734
+UniRef50_U3U8P3: UPF0234 protein HHS_07990|unclassified	0.1245233734
+UniRef50_UPI0003B7AB15: magnesium chelatase	0.1245190141
+UniRef50_UPI0003B7AB15: magnesium chelatase|unclassified	0.1245190141
+UniRef50_UPI0003A500E7: hypothetical protein	0.1245142722
+UniRef50_UPI0003A500E7: hypothetical protein|unclassified	0.1245142722
+UniRef50_UPI0004695C3C: electron transfer flavoprotein subunit alpha, partial	0.1245083139
+UniRef50_UPI0004695C3C: electron transfer flavoprotein subunit alpha, partial|unclassified	0.1245083139
+UniRef50_UPI000471A944: DNA helicase II, partial	0.1245001011
+UniRef50_UPI000471A944: DNA helicase II, partial|unclassified	0.1245001011
+UniRef50_A0A017HAA4	0.1244968739
+UniRef50_A0A017HAA4|unclassified	0.1244968739
+UniRef50_UPI00035E7441: hypothetical protein	0.1244926529
+UniRef50_UPI00035E7441: hypothetical protein|unclassified	0.1244926529
+UniRef50_U4V1I7	0.1244895794
+UniRef50_U4V1I7|unclassified	0.1244895794
+UniRef50_J6UBH4: Carbon monoxide dehydrogenase G protein	0.1244867382
+UniRef50_J6UBH4: Carbon monoxide dehydrogenase G protein|unclassified	0.1244867382
+UniRef50_R5PQB3: AmiC protein	0.1244857732
+UniRef50_R5PQB3: AmiC protein|unclassified	0.1244857732
+UniRef50_UPI0003753812: hypothetical protein	0.1244823316
+UniRef50_UPI0003753812: hypothetical protein|unclassified	0.1244823316
+UniRef50_UPI00036BD4E6: hypothetical protein	0.1244741268
+UniRef50_UPI00036BD4E6: hypothetical protein|unclassified	0.1244741268
+UniRef50_UPI00035D3A13: hypothetical protein	0.1244704361
+UniRef50_UPI00035D3A13: hypothetical protein|unclassified	0.1244704361
+UniRef50_UPI00045E7085: hypothetical protein	0.1244695825
+UniRef50_UPI00045E7085: hypothetical protein|unclassified	0.1244695825
+UniRef50_Q88UE0: Imidazoleglycerol-phosphate dehydratase	0.1244685106
+UniRef50_Q88UE0: Imidazoleglycerol-phosphate dehydratase|unclassified	0.1244685106
+UniRef50_UPI0003AD49CC: hypothetical protein	0.1244672740
+UniRef50_UPI0003AD49CC: hypothetical protein|unclassified	0.1244672740
+UniRef50_X1B9K9: Marine sediment metagenome DNA, contig: S01H4_L06676 (Fragment)	0.1244568569
+UniRef50_X1B9K9: Marine sediment metagenome DNA, contig: S01H4_L06676 (Fragment)|unclassified	0.1244568569
+UniRef50_UPI00037BF977: MULTISPECIES: SAM-dependent methlyltransferase	0.1244470490
+UniRef50_UPI00037BF977: MULTISPECIES: SAM-dependent methlyltransferase|unclassified	0.1244470490
+UniRef50_UPI00035EE9A3: hypothetical protein	0.1244368394
+UniRef50_UPI00035EE9A3: hypothetical protein|unclassified	0.1244368394
+UniRef50_G8URU6: Pyoverdine biosynthesis protein PvcA	0.1244315621
+UniRef50_G8URU6: Pyoverdine biosynthesis protein PvcA|unclassified	0.1244315621
+UniRef50_S3FTD7: Pirin-like protein (Fragment)	0.1244283708
+UniRef50_S3FTD7: Pirin-like protein (Fragment)|unclassified	0.1244283708
+UniRef50_UPI000472497A: hypothetical protein, partial	0.1243991275
+UniRef50_UPI000472497A: hypothetical protein, partial|unclassified	0.1243991275
+UniRef50_UPI0004665DC9: NUDIX hydrolase	0.1243942577
+UniRef50_UPI0004665DC9: NUDIX hydrolase|unclassified	0.1243942577
+UniRef50_F2G1Y4	0.1243858013
+UniRef50_F2G1Y4|unclassified	0.1243858013
+UniRef50_Q09049: Cytochrome bd ubiquinol oxidase subunit 1	0.1243829881
+UniRef50_Q09049: Cytochrome bd ubiquinol oxidase subunit 1|unclassified	0.1243829881
+UniRef50_Q1I431	0.1243820504
+UniRef50_Q1I431|unclassified	0.1243820504
+UniRef50_Q08WY9	0.1243762407
+UniRef50_Q08WY9|unclassified	0.1243762407
+UniRef50_F6F2B2: FAD-dependent pyridine nucleotide-disulfide oxidoreductase	0.1243687063
+UniRef50_F6F2B2: FAD-dependent pyridine nucleotide-disulfide oxidoreductase|unclassified	0.1243687063
+UniRef50_UPI000359F496: PREDICTED: 60 kDa heat shock protein, mitochondrial-like	0.1243612402
+UniRef50_UPI000359F496: PREDICTED: 60 kDa heat shock protein, mitochondrial-like|unclassified	0.1243612402
+UniRef50_A4J0P1: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	0.1243567777
+UniRef50_A4J0P1: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.1243567777
+UniRef50_UPI000475FA76: hypothetical protein	0.1243562378
+UniRef50_UPI000475FA76: hypothetical protein|unclassified	0.1243562378
+UniRef50_UPI0003AF618D: PREDICTED: basic proline-rich protein-like	0.1243536829
+UniRef50_UPI0003AF618D: PREDICTED: basic proline-rich protein-like|unclassified	0.1243536829
+UniRef50_A0A023YHP1	0.1243519241
+UniRef50_A0A023YHP1|unclassified	0.1243519241
+UniRef50_J2Q7D9: Putative membrane protein, putative virulence factor (Fragment)	0.1243497580
+UniRef50_J2Q7D9: Putative membrane protein, putative virulence factor (Fragment)|unclassified	0.1243497580
+UniRef50_UPI0001F85C3E: ABC transporter-like protein	0.1243435795
+UniRef50_UPI0001F85C3E: ABC transporter-like protein|unclassified	0.1243435795
+UniRef50_UPI000333DE3B: PREDICTED: 39S ribosomal protein L36, mitochondrial	0.1243114761
+UniRef50_UPI000333DE3B: PREDICTED: 39S ribosomal protein L36, mitochondrial|unclassified	0.1243114761
+UniRef50_UPI00045EA377: secondary thiamine-phosphate synthase	0.1243004262
+UniRef50_UPI00045EA377: secondary thiamine-phosphate synthase|unclassified	0.1243004262
+UniRef50_UPI0003B55347: prolipoprotein diacylglyceryl transferase	0.1243002676
+UniRef50_UPI0003B55347: prolipoprotein diacylglyceryl transferase|unclassified	0.1243002676
+UniRef50_D8UC86	0.1242834289
+UniRef50_D8UC86|unclassified	0.1242834289
+UniRef50_UPI000470B6E3: hypothetical protein	0.1242815221
+UniRef50_UPI000470B6E3: hypothetical protein|unclassified	0.1242815221
+UniRef50_D8JG63	0.1242779187
+UniRef50_D8JG63|unclassified	0.1242779187
+UniRef50_D9QK96: FAD dependent oxidoreductase	0.1242669640
+UniRef50_D9QK96: FAD dependent oxidoreductase|unclassified	0.1242669640
+UniRef50_UPI00040DE7DB: hypothetical protein	0.1242659391
+UniRef50_UPI00040DE7DB: hypothetical protein|unclassified	0.1242659391
+UniRef50_UPI0003B6272C: 30S ribosomal protein S2, partial	0.1242655429
+UniRef50_UPI0003B6272C: 30S ribosomal protein S2, partial|unclassified	0.1242655429
+UniRef50_UPI0004796185: 16S rRNA methyltransferase	0.1242650117
+UniRef50_UPI0004796185: 16S rRNA methyltransferase|unclassified	0.1242650117
+UniRef50_UPI000255651A: ammonium transporter, partial	0.1242640484
+UniRef50_UPI000255651A: ammonium transporter, partial|unclassified	0.1242640484
+UniRef50_O47492: NADH-ubiquinone oxidoreductase chain 4L	0.1242494244
+UniRef50_O47492: NADH-ubiquinone oxidoreductase chain 4L|unclassified	0.1242494244
+UniRef50_Q1QGB6: PRC-barrel	0.1242425509
+UniRef50_Q1QGB6: PRC-barrel|unclassified	0.1242425509
+UniRef50_E1ZPF1	0.1242398562
+UniRef50_E1ZPF1|unclassified	0.1242398562
+UniRef50_UPI0003B6B053: tryptophan synthase subunit alpha	0.1242385373
+UniRef50_UPI0003B6B053: tryptophan synthase subunit alpha|unclassified	0.1242385373
+UniRef50_E3HCS4: TRAP transporter solute receptor, TAXI family	0.1242286438
+UniRef50_E3HCS4: TRAP transporter solute receptor, TAXI family|unclassified	0.1242286438
+UniRef50_E3F4E1	0.1242270897
+UniRef50_E3F4E1|unclassified	0.1242270897
+UniRef50_UPI000368F4C0: hypothetical protein, partial	0.1242247482
+UniRef50_UPI000368F4C0: hypothetical protein, partial|unclassified	0.1242247482
+UniRef50_P66898: L-threonine dehydratase biosynthetic IlvA	0.1242215491
+UniRef50_P66898: L-threonine dehydratase biosynthetic IlvA|unclassified	0.1242215491
+UniRef50_Q4L8G0: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.1242174673
+UniRef50_Q4L8G0: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.1242174673
+UniRef50_UPI0003B3F32A: molecular chaperone DnaK	0.1242152066
+UniRef50_UPI0003B3F32A: molecular chaperone DnaK|unclassified	0.1242152066
+UniRef50_S0KKF8	0.1242060677
+UniRef50_S0KKF8|unclassified	0.1242060677
+UniRef50_UPI000185D902: hypothetical protein TGME49_044730	0.1241927471
+UniRef50_UPI000185D902: hypothetical protein TGME49_044730|unclassified	0.1241927471
+UniRef50_UPI000382255A: MULTISPECIES: hypothetical protein	0.1241915395
+UniRef50_UPI000382255A: MULTISPECIES: hypothetical protein|unclassified	0.1241915395
+UniRef50_M7N0H7	0.1241914120
+UniRef50_M7N0H7|unclassified	0.1241914120
+UniRef50_A3UJQ9	0.1241893033
+UniRef50_A3UJQ9|unclassified	0.1241893033
+UniRef50_Q3JIK9	0.1241885998
+UniRef50_Q3JIK9|unclassified	0.1241885998
+UniRef50_UPI0004278554: hypothetical protein	0.1241850758
+UniRef50_UPI0004278554: hypothetical protein|unclassified	0.1241850758
+UniRef50_I6AYQ2	0.1241828241
+UniRef50_I6AYQ2|unclassified	0.1241828241
+UniRef50_D2Z8D8: Lipoprotein	0.1241818474
+UniRef50_D2Z8D8: Lipoprotein|unclassified	0.1241818474
+UniRef50_Q00673: Probable NADH-ubiquinone oxidoreductase 30.4 kDa subunit, mitochondrial	0.1241748701
+UniRef50_Q00673: Probable NADH-ubiquinone oxidoreductase 30.4 kDa subunit, mitochondrial|unclassified	0.1241748701
+UniRef50_UPI00046D1D34: hypothetical protein	0.1241689162
+UniRef50_UPI00046D1D34: hypothetical protein|unclassified	0.1241689162
+UniRef50_D3QI13	0.1241562213
+UniRef50_D3QI13|unclassified	0.1241562213
+UniRef50_UPI0003F8165B: hypothetical protein	0.1241547507
+UniRef50_UPI0003F8165B: hypothetical protein|unclassified	0.1241547507
+UniRef50_UPI0002F83B32: hypothetical protein	0.1241451204
+UniRef50_UPI0002F83B32: hypothetical protein|unclassified	0.1241451204
+UniRef50_Q5FJG5: Bifunctional protein FolD	0.1241322235
+UniRef50_Q5FJG5: Bifunctional protein FolD|unclassified	0.1241322235
+UniRef50_UPI00047AEC83: chemotaxis protein CheY	0.1241264963
+UniRef50_UPI00047AEC83: chemotaxis protein CheY|unclassified	0.1241264963
+UniRef50_UPI0004784EFD: hypothetical protein, partial	0.1241198398
+UniRef50_UPI0004784EFD: hypothetical protein, partial|unclassified	0.1241198398
+UniRef50_UPI000374642A: hypothetical protein	0.1241169794
+UniRef50_UPI000374642A: hypothetical protein|unclassified	0.1241169794
+UniRef50_UPI0004791B4F: autoinducer 2 import system permease LsrD	0.1241108431
+UniRef50_UPI0004791B4F: autoinducer 2 import system permease LsrD|unclassified	0.1241108431
+UniRef50_B9L1K2: Probable HspC2 heat shock protein	0.1240936018
+UniRef50_B9L1K2: Probable HspC2 heat shock protein|unclassified	0.1240936018
+UniRef50_UPI00047478E9: hypothetical protein	0.1240844602
+UniRef50_UPI00047478E9: hypothetical protein|unclassified	0.1240844602
+UniRef50_UPI00045E9959: sarcosine oxidase subunit alpha	0.1240610612
+UniRef50_UPI00045E9959: sarcosine oxidase subunit alpha|unclassified	0.1240610612
+UniRef50_K3XLK6	0.1240551045
+UniRef50_K3XLK6|unclassified	0.1240551045
+UniRef50_UPI000383B298: PREDICTED: cystathionine gamma-lyase	0.1240511061
+UniRef50_UPI000383B298: PREDICTED: cystathionine gamma-lyase|unclassified	0.1240511061
+UniRef50_M7R9X6	0.1240252864
+UniRef50_M7R9X6|unclassified	0.1240252864
+UniRef50_A0A024Q2U6: Putative lipoprotein	0.1240118423
+UniRef50_A0A024Q2U6: Putative lipoprotein|unclassified	0.1240118423
+UniRef50_B9JC34	0.1240106530
+UniRef50_B9JC34|unclassified	0.1240106530
+UniRef50_Q9KMY6: Peptidase T	0.1240077439
+UniRef50_Q9KMY6: Peptidase T|unclassified	0.1240077439
+UniRef50_Q5HT48: Holliday junction ATP-dependent DNA helicase RuvB	0.1240064702
+UniRef50_Q5HT48: Holliday junction ATP-dependent DNA helicase RuvB|unclassified	0.1240064702
+UniRef50_UPI00035C5909: hypothetical protein	0.1239994673
+UniRef50_UPI00035C5909: hypothetical protein|unclassified	0.1239994673
+UniRef50_Q91FT0: Putative GIY-YIG domain-containing protein 242L	0.1239935313
+UniRef50_Q91FT0: Putative GIY-YIG domain-containing protein 242L|unclassified	0.1239935313
+UniRef50_UPI0003686C32: hypothetical protein	0.1239896908
+UniRef50_UPI0003686C32: hypothetical protein|unclassified	0.1239896908
+UniRef50_Q826Q0: Peptide deformylase 2	0.1239866190
+UniRef50_Q826Q0: Peptide deformylase 2|unclassified	0.1239866190
+UniRef50_E2Q1H6	0.1239850464
+UniRef50_E2Q1H6|unclassified	0.1239850464
+UniRef50_A7BCW8: Cell wall-binding repeat protein	0.1239684391
+UniRef50_A7BCW8: Cell wall-binding repeat protein|unclassified	0.1239684391
+UniRef50_UPI00036C1571: hypothetical protein	0.1239652405
+UniRef50_UPI00036C1571: hypothetical protein|unclassified	0.1239652405
+UniRef50_D9Q4Y0: YibE/F family protein	0.1239569158
+UniRef50_D9Q4Y0: YibE/F family protein|unclassified	0.1239569158
+UniRef50_UPI000349F337: hypothetical protein	0.1239435922
+UniRef50_UPI000349F337: hypothetical protein|unclassified	0.1239435922
+UniRef50_UPI0003013893: hypothetical protein	0.1239426743
+UniRef50_UPI0003013893: hypothetical protein|unclassified	0.1239426743
+UniRef50_UPI00022CADA2: PREDICTED: asparaginyl-tRNA synthetase-like	0.1239362710
+UniRef50_UPI00022CADA2: PREDICTED: asparaginyl-tRNA synthetase-like|unclassified	0.1239362710
+UniRef50_UPI0001DD07FB: hypothetical protein	0.1239254613
+UniRef50_UPI0001DD07FB: hypothetical protein|unclassified	0.1239254613
+UniRef50_I4YUU7: Soluble lytic murein transglycosylase-like protein	0.1239213864
+UniRef50_I4YUU7: Soluble lytic murein transglycosylase-like protein|unclassified	0.1239213864
+UniRef50_C3CU52: Response regulator aspartate phosphatase	0.1239189184
+UniRef50_C3CU52: Response regulator aspartate phosphatase|unclassified	0.1239189184
+UniRef50_G0JXR7	0.1239082185
+UniRef50_G0JXR7|unclassified	0.1239082185
+UniRef50_UPI000225BB15: hemolysin-like protein	0.1239080655
+UniRef50_UPI000225BB15: hemolysin-like protein|unclassified	0.1239080655
+UniRef50_UPI00046C1753: PREDICTED: serine/arginine repetitive matrix protein 1 isoform X1	0.1239067593
+UniRef50_UPI00046C1753: PREDICTED: serine/arginine repetitive matrix protein 1 isoform X1|unclassified	0.1239067593
+UniRef50_UPI00044207B4: PREDICTED: glycine dehydrogenase (decarboxylating), mitochondrial-like, partial	0.1239060470
+UniRef50_UPI00044207B4: PREDICTED: glycine dehydrogenase (decarboxylating), mitochondrial-like, partial|unclassified	0.1239060470
+UniRef50_T0ZU94: GTP-binding protein typA/bipA-like protein (Fragment)	0.1239042148
+UniRef50_T0ZU94: GTP-binding protein typA/bipA-like protein (Fragment)|unclassified	0.1239042148
+UniRef50_K8NJS6	0.1239037956
+UniRef50_K8NJS6|unclassified	0.1239037956
+UniRef50_UPI0004719CD0: hypothetical protein	0.1238819247
+UniRef50_UPI0004719CD0: hypothetical protein|unclassified	0.1238819247
+UniRef50_UPI00046FE351: Zn-dependent hydrolase	0.1238669509
+UniRef50_UPI00046FE351: Zn-dependent hydrolase|unclassified	0.1238669509
+UniRef50_UPI0004756882: major facilitator transporter	0.1238650722
+UniRef50_UPI0004756882: major facilitator transporter|unclassified	0.1238650722
+UniRef50_UPI00035CE0CD: hypothetical protein	0.1238624603
+UniRef50_UPI00035CE0CD: hypothetical protein|unclassified	0.1238624603
+UniRef50_A4VGB2	0.1238582763
+UniRef50_A4VGB2|unclassified	0.1238582763
+UniRef50_G3ZV06: PspE protein	0.1238487116
+UniRef50_G3ZV06: PspE protein|unclassified	0.1238487116
+UniRef50_H0DEP3	0.1238470325
+UniRef50_H0DEP3|unclassified	0.1238470325
+UniRef50_Q0F8L1	0.1238465748
+UniRef50_Q0F8L1|unclassified	0.1238465748
+UniRef50_UPI00037E7AB2: hypothetical protein	0.1238444981
+UniRef50_UPI00037E7AB2: hypothetical protein|unclassified	0.1238444981
+UniRef50_UPI0003B77E9C: transcriptional regulator	0.1238410628
+UniRef50_UPI0003B77E9C: transcriptional regulator|unclassified	0.1238410628
+UniRef50_Q9S1G2: DNA polymerase I	0.1238405190
+UniRef50_Q9S1G2: DNA polymerase I|unclassified	0.1238405190
+UniRef50_E1ZRG4	0.1238354905
+UniRef50_E1ZRG4|unclassified	0.1238354905
+UniRef50_UPI0003600771: hypothetical protein	0.1238263155
+UniRef50_UPI0003600771: hypothetical protein|unclassified	0.1238263155
+UniRef50_UPI000375C1B4: hypothetical protein	0.1238252164
+UniRef50_UPI000375C1B4: hypothetical protein|unclassified	0.1238252164
+UniRef50_UPI00037F4A27: hypothetical protein	0.1238213234
+UniRef50_UPI00037F4A27: hypothetical protein|unclassified	0.1238213234
+UniRef50_E8RQ10	0.1238138125
+UniRef50_E8RQ10|unclassified	0.1238138125
+UniRef50_UPI0003721E18: hypothetical protein	0.1238113193
+UniRef50_UPI0003721E18: hypothetical protein|unclassified	0.1238113193
+UniRef50_UPI00047A056C: hypothetical protein	0.1238083767
+UniRef50_UPI00047A056C: hypothetical protein|unclassified	0.1238083767
+UniRef50_X0W6C2: Marine sediment metagenome DNA, contig: S01H1_S18045 (Fragment)	0.1238005166
+UniRef50_X0W6C2: Marine sediment metagenome DNA, contig: S01H1_S18045 (Fragment)|unclassified	0.1238005166
+UniRef50_UPI000367CCF5: hypothetical protein	0.1237857728
+UniRef50_UPI000367CCF5: hypothetical protein|unclassified	0.1237857728
+UniRef50_I4XY14: Inner membrane protein, CreD family	0.1237737011
+UniRef50_I4XY14: Inner membrane protein, CreD family|unclassified	0.1237737011
+UniRef50_A0LGY7: Holliday junction ATP-dependent DNA helicase RuvA	0.1237655979
+UniRef50_A0LGY7: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.1237655979
+UniRef50_X7F2R0: Membrane protein	0.1237631356
+UniRef50_X7F2R0: Membrane protein|unclassified	0.1237631356
+UniRef50_C3P7X7: 3-dehydroquinate dehydratase	0.1237568951
+UniRef50_C3P7X7: 3-dehydroquinate dehydratase|unclassified	0.1237568951
+UniRef50_UPI0003769F11: hypothetical protein, partial	0.1237542988
+UniRef50_UPI0003769F11: hypothetical protein, partial|unclassified	0.1237542988
+UniRef50_U2X987: Flppilus assembly protein CpaB	0.1237509395
+UniRef50_U2X987: Flppilus assembly protein CpaB|unclassified	0.1237509395
+UniRef50_Q65PC9: Serine acetyltransferase	0.1237411869
+UniRef50_Q65PC9: Serine acetyltransferase|unclassified	0.1237411869
+UniRef50_UPI00047E24F2: spermidine/putrescine ABC transporter substrate-binding protein	0.1237342598
+UniRef50_UPI00047E24F2: spermidine/putrescine ABC transporter substrate-binding protein|unclassified	0.1237342598
+UniRef50_I6H5I8: ABC transporter, periplasmic solute-binding domain protein (Fragment)	0.1237304942
+UniRef50_I6H5I8: ABC transporter, periplasmic solute-binding domain protein (Fragment)|unclassified	0.1237304942
+UniRef50_UPI0002ADB971	0.1237274404
+UniRef50_UPI0002ADB971|unclassified	0.1237274404
+UniRef50_UPI000472D654: hypothetical protein	0.1237215512
+UniRef50_UPI000472D654: hypothetical protein|unclassified	0.1237215512
+UniRef50_G9YD47	0.1237211531
+UniRef50_G9YD47|unclassified	0.1237211531
+UniRef50_UPI0003B3011B: hypothetical protein	0.1237195161
+UniRef50_UPI0003B3011B: hypothetical protein|unclassified	0.1237195161
+UniRef50_G8UTE8: Integral membrane protein	0.1237127195
+UniRef50_G8UTE8: Integral membrane protein|unclassified	0.1237127195
+UniRef50_UPI00037692DA: hypothetical protein	0.1237027396
+UniRef50_UPI00037692DA: hypothetical protein|unclassified	0.1237027396
+UniRef50_B0S8V3: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.1237008827
+UniRef50_B0S8V3: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.1237008827
+UniRef50_UPI0003B5AA99: dehydrogenase	0.1236999498
+UniRef50_UPI0003B5AA99: dehydrogenase|unclassified	0.1236999498
+UniRef50_W0RF38: YCII-related protein	0.1236999498
+UniRef50_W0RF38: YCII-related protein|unclassified	0.1236999498
+UniRef50_UPI0003B2FE9D: osmotically inducible protein OsmC	0.1236998991
+UniRef50_UPI0003B2FE9D: osmotically inducible protein OsmC|unclassified	0.1236998991
+UniRef50_E6TZH6	0.1236975249
+UniRef50_E6TZH6|unclassified	0.1236975249
+UniRef50_C7M2V3: UPF0234 protein Afer_0379	0.1236932176
+UniRef50_C7M2V3: UPF0234 protein Afer_0379|unclassified	0.1236932176
+UniRef50_Q02VX0: Phosphopantetheine adenylyltransferase	0.1236884254
+UniRef50_Q02VX0: Phosphopantetheine adenylyltransferase|unclassified	0.1236884254
+UniRef50_UPI00023772DA: putative transmembrane efflux protein of the MFS type	0.1236828193
+UniRef50_UPI00023772DA: putative transmembrane efflux protein of the MFS type|unclassified	0.1236828193
+UniRef50_UPI00036AA1CD: hypothetical protein	0.1236792984
+UniRef50_UPI00036AA1CD: hypothetical protein|unclassified	0.1236792984
+UniRef50_UPI0003AE18C2: PREDICTED: basic proline-rich protein-like	0.1236782431
+UniRef50_UPI0003AE18C2: PREDICTED: basic proline-rich protein-like|unclassified	0.1236782431
+UniRef50_UPI0001F2A777: hypothetical protein AOR_1_134104	0.1236741798
+UniRef50_UPI0001F2A777: hypothetical protein AOR_1_134104|unclassified	0.1236741798
+UniRef50_UPI00047B06F8: glyoxylate reductase	0.1236668557
+UniRef50_UPI00047B06F8: glyoxylate reductase|unclassified	0.1236668557
+UniRef50_UPI00047845D5: hypothetical protein	0.1236546253
+UniRef50_UPI00047845D5: hypothetical protein|unclassified	0.1236546253
+UniRef50_UPI00047052D1: transcriptional regulator	0.1236517457
+UniRef50_UPI00047052D1: transcriptional regulator|unclassified	0.1236517457
+UniRef50_X6UPA4: L-ribulose-5-phosphate 4-epimerase	0.1236491440
+UniRef50_X6UPA4: L-ribulose-5-phosphate 4-epimerase|unclassified	0.1236491440
+UniRef50_D9VJ87	0.1236370259
+UniRef50_D9VJ87|unclassified	0.1236370259
+UniRef50_Q1Q9B2	0.1236328902
+UniRef50_Q1Q9B2|unclassified	0.1236328902
+UniRef50_UPI0004782D2D: sulfite oxidase	0.1236325082
+UniRef50_UPI0004782D2D: sulfite oxidase|unclassified	0.1236325082
+UniRef50_UPI00035D6CA5: hypothetical protein	0.1236255270
+UniRef50_UPI00035D6CA5: hypothetical protein|unclassified	0.1236255270
+UniRef50_UPI00026C846C: two-component response transcriptional regulator	0.1236097227
+UniRef50_UPI00026C846C: two-component response transcriptional regulator|unclassified	0.1236097227
+UniRef50_E3EWZ2: Metallo-beta-lactamase family protein, putative	0.1236078028
+UniRef50_E3EWZ2: Metallo-beta-lactamase family protein, putative|unclassified	0.1236078028
+UniRef50_B0TDT3: Stage v sporulation protein r	0.1236077294
+UniRef50_B0TDT3: Stage v sporulation protein r|unclassified	0.1236077294
+UniRef50_UPI0003B3D4FC: purine nucleoside phosphorylase	0.1236047206
+UniRef50_UPI0003B3D4FC: purine nucleoside phosphorylase|unclassified	0.1236047206
+UniRef50_UPI0003797426: amino acid ABC transporter substrate-binding protein	0.1235970058
+UniRef50_UPI0003797426: amino acid ABC transporter substrate-binding protein|unclassified	0.1235970058
+UniRef50_I1F5A5	0.1235894851
+UniRef50_I1F5A5|unclassified	0.1235894851
+UniRef50_N1ZBF8	0.1235872265
+UniRef50_N1ZBF8|unclassified	0.1235872265
+UniRef50_UPI0003791F83: pilus assembly protein CpaC	0.1235672647
+UniRef50_UPI0003791F83: pilus assembly protein CpaC|unclassified	0.1235672647
+UniRef50_UPI000428BFC2: esterase	0.1235579051
+UniRef50_UPI000428BFC2: esterase|unclassified	0.1235579051
+UniRef50_UPI00036B2583: MULTISPECIES: 50S ribosomal protein L4	0.1235548905
+UniRef50_UPI00036B2583: MULTISPECIES: 50S ribosomal protein L4|unclassified	0.1235548905
+UniRef50_E7QPJ4	0.1235501269
+UniRef50_E7QPJ4|unclassified	0.1235501269
+UniRef50_UPI000366B330: hypothetical protein	0.1235489300
+UniRef50_UPI000366B330: hypothetical protein|unclassified	0.1235489300
+UniRef50_UPI0004220690: dihydrolipoamide dehydrogenase	0.1235476367
+UniRef50_UPI0004220690: dihydrolipoamide dehydrogenase|unclassified	0.1235476367
+UniRef50_Q13Q00: Oxaloacetate decarboxylase	0.1235433835
+UniRef50_Q13Q00: Oxaloacetate decarboxylase|unclassified	0.1235433835
+UniRef50_K7EHQ0	0.1235302110
+UniRef50_K7EHQ0|unclassified	0.1235302110
+UniRef50_U1GAF4	0.1235299696
+UniRef50_U1GAF4|unclassified	0.1235299696
+UniRef50_UPI00047EF55F: amidohydrolase	0.1235243620
+UniRef50_UPI00047EF55F: amidohydrolase|unclassified	0.1235243620
+UniRef50_UPI00047A4903: beta-lactamase	0.1235175584
+UniRef50_UPI00047A4903: beta-lactamase|unclassified	0.1235175584
+UniRef50_Q2IF47	0.1235144067
+UniRef50_Q2IF47|unclassified	0.1235144067
+UniRef50_UPI0003B5EAE0: oxidoreductase	0.1235071258
+UniRef50_UPI0003B5EAE0: oxidoreductase|unclassified	0.1235071258
+UniRef50_A4ADB7	0.1235063822
+UniRef50_A4ADB7|unclassified	0.1235063822
+UniRef50_Q181G8: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	0.1234916866
+UniRef50_Q181G8: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.1234916866
+UniRef50_UPI0004798264: hypothetical protein	0.1234897327
+UniRef50_UPI0004798264: hypothetical protein|unclassified	0.1234897327
+UniRef50_UPI000368DDF5: hypothetical protein	0.1234847384
+UniRef50_UPI000368DDF5: hypothetical protein|unclassified	0.1234847384
+UniRef50_UPI00034604EB: hypothetical protein	0.1234737782
+UniRef50_UPI00034604EB: hypothetical protein|unclassified	0.1234737782
+UniRef50_UPI0002375A66: phenylacetic acid degradation-like protein, partial	0.1234735855
+UniRef50_UPI0002375A66: phenylacetic acid degradation-like protein, partial|unclassified	0.1234735855
+UniRef50_UPI000469CEAC: ribonucleotide-diphosphate reductase subunit alpha, partial	0.1234735661
+UniRef50_UPI000469CEAC: ribonucleotide-diphosphate reductase subunit alpha, partial|unclassified	0.1234735661
+UniRef50_J0ZFK8: Type IV secretion system protein virB4	0.1234559897
+UniRef50_J0ZFK8: Type IV secretion system protein virB4|unclassified	0.1234559897
+UniRef50_UPI0003712D9F: cold-shock protein	0.1234551219
+UniRef50_UPI0003712D9F: cold-shock protein|unclassified	0.1234551219
+UniRef50_W6M3N0: Transcriptional regulatory protein (Modular protein)	0.1234534240
+UniRef50_W6M3N0: Transcriptional regulatory protein (Modular protein)|unclassified	0.1234534240
+UniRef50_X6L1I8	0.1234508223
+UniRef50_X6L1I8|unclassified	0.1234508223
+UniRef50_W1XS31	0.1234498976
+UniRef50_W1XS31|unclassified	0.1234498976
+UniRef50_B8BKP3	0.1234426660
+UniRef50_B8BKP3|unclassified	0.1234426660
+UniRef50_B1L765: Glyoxylate reductase	0.1234374976
+UniRef50_B1L765: Glyoxylate reductase|unclassified	0.1234374976
+UniRef50_Q8NT41: GDP-mannose-dependent alpha-mannosyltransferase	0.1234372251
+UniRef50_Q8NT41: GDP-mannose-dependent alpha-mannosyltransferase|unclassified	0.1234372251
+UniRef50_UPI00046ECC38: multidrug ABC transporter ATPase, partial	0.1234328317
+UniRef50_UPI00046ECC38: multidrug ABC transporter ATPase, partial|unclassified	0.1234328317
+UniRef50_X4QYD5: Ribonucleotide reductase	0.1234300542
+UniRef50_X4QYD5: Ribonucleotide reductase|unclassified	0.1234300542
+UniRef50_H0PRM0	0.1234294072
+UniRef50_H0PRM0|unclassified	0.1234294072
+UniRef50_Q21BL5: IS66 Orf2 like	0.1234276552
+UniRef50_Q21BL5: IS66 Orf2 like|unclassified	0.1234276552
+UniRef50_UPI000366C818: hypothetical protein	0.1234153892
+UniRef50_UPI000366C818: hypothetical protein|unclassified	0.1234153892
+UniRef50_UPI0003EF5F00: hypothetical protein	0.1234109126
+UniRef50_UPI0003EF5F00: hypothetical protein|unclassified	0.1234109126
+UniRef50_I8T6C1: Molybdopterin oxidoreductase (Fragment)	0.1234102122
+UniRef50_I8T6C1: Molybdopterin oxidoreductase (Fragment)|unclassified	0.1234102122
+UniRef50_A3YAB4: Putative SprT protein	0.1234080196
+UniRef50_A3YAB4: Putative SprT protein|unclassified	0.1234080196
+UniRef50_UPI000413D010: flagellin	0.1234044311
+UniRef50_UPI000413D010: flagellin|unclassified	0.1234044311
+UniRef50_UPI0002492D8D: transketolase	0.1234021725
+UniRef50_UPI0002492D8D: transketolase|unclassified	0.1234021725
+UniRef50_UPI000237AE8F: citrate synthase	0.1233987207
+UniRef50_UPI000237AE8F: citrate synthase|unclassified	0.1233987207
+UniRef50_F0P3P4: Truncated DNA repair protein RadC	0.1233973676
+UniRef50_F0P3P4: Truncated DNA repair protein RadC|unclassified	0.1233973676
+UniRef50_UPI00029A9E3B: RNA-binding protein	0.1233764628
+UniRef50_UPI00029A9E3B: RNA-binding protein|unclassified	0.1233764628
+UniRef50_UPI0004761C50: hypothetical protein	0.1233727102
+UniRef50_UPI0004761C50: hypothetical protein|unclassified	0.1233727102
+UniRef50_UPI000366EBC9: hypothetical protein	0.1233712627
+UniRef50_UPI000366EBC9: hypothetical protein|unclassified	0.1233712627
+UniRef50_B1J5I2: Phage protein	0.1233648653
+UniRef50_B1J5I2: Phage protein|unclassified	0.1233648653
+UniRef50_UPI000225A8FE: hypothetical protein	0.1233604229
+UniRef50_UPI000225A8FE: hypothetical protein|unclassified	0.1233604229
+UniRef50_H0Y8K0: Stress-70 protein, mitochondrial (Fragment)	0.1233575778
+UniRef50_H0Y8K0: Stress-70 protein, mitochondrial (Fragment)|unclassified	0.1233575778
+UniRef50_UPI00047DCD06: hypothetical protein	0.1233575347
+UniRef50_UPI00047DCD06: hypothetical protein|unclassified	0.1233575347
+UniRef50_UPI0003600B9A: endonuclease	0.1233554121
+UniRef50_UPI0003600B9A: endonuclease|unclassified	0.1233554121
+UniRef50_F7XFK3: Transposase	0.1233522405
+UniRef50_F7XFK3: Transposase|unclassified	0.1233522405
+UniRef50_UPI0004670A2B: lipolytic protein G-D-S-L family	0.1233477028
+UniRef50_UPI0004670A2B: lipolytic protein G-D-S-L family|unclassified	0.1233477028
+UniRef50_UPI000255D0B5: transporter	0.1233453388
+UniRef50_UPI000255D0B5: transporter|unclassified	0.1233453388
+UniRef50_UPI0003613069: hypothetical protein, partial	0.1233363334
+UniRef50_UPI0003613069: hypothetical protein, partial|unclassified	0.1233363334
+UniRef50_UPI0003B571D7: NAD synthetase	0.1233257477
+UniRef50_UPI0003B571D7: NAD synthetase|unclassified	0.1233257477
+UniRef50_UPI000308AEA8: hypothetical protein	0.1233252364
+UniRef50_UPI000308AEA8: hypothetical protein|unclassified	0.1233252364
+UniRef50_Q15VF0: DoxX	0.1233231400
+UniRef50_Q15VF0: DoxX|unclassified	0.1233231400
+UniRef50_H0E593: Transcriptional regulator HxlR family	0.1233144263
+UniRef50_H0E593: Transcriptional regulator HxlR family|unclassified	0.1233144263
+UniRef50_UPI00047BB1A3: hypothetical protein	0.1233057573
+UniRef50_UPI00047BB1A3: hypothetical protein|unclassified	0.1233057573
+UniRef50_UPI000462DC6C: hypothetical protein	0.1233010964
+UniRef50_UPI000462DC6C: hypothetical protein|unclassified	0.1233010964
+UniRef50_F8G3T7: O-antigen polymerase	0.1232981549
+UniRef50_F8G3T7: O-antigen polymerase|unclassified	0.1232981549
+UniRef50_UPI0003627E1F: hypothetical protein	0.1232965357
+UniRef50_UPI0003627E1F: hypothetical protein|unclassified	0.1232965357
+UniRef50_Q16E08: Outer membrane porin, putative	0.1232941294
+UniRef50_Q16E08: Outer membrane porin, putative|unclassified	0.1232941294
+UniRef50_R6TT37	0.1232920513
+UniRef50_R6TT37|unclassified	0.1232920513
+UniRef50_UPI00047ECE5E: hypothetical protein	0.1232886125
+UniRef50_UPI00047ECE5E: hypothetical protein|unclassified	0.1232886125
+UniRef50_Q9X015: Nucleoside triphosphate pyrophosphohydrolase/pyrophosphatase MazG	0.1232791138
+UniRef50_Q9X015: Nucleoside triphosphate pyrophosphohydrolase/pyrophosphatase MazG|unclassified	0.1232791138
+UniRef50_UPI00035E88B5: endonuclease	0.1232668140
+UniRef50_UPI00035E88B5: endonuclease|unclassified	0.1232668140
+UniRef50_UPI000382BCA5: hypothetical protein	0.1232486515
+UniRef50_UPI000382BCA5: hypothetical protein|unclassified	0.1232486515
+UniRef50_N1MRD2: Mobile element protein	0.1232287794
+UniRef50_N1MRD2: Mobile element protein|unclassified	0.1232287794
+UniRef50_P0A5K5: Cyclic pyranopterin monophosphate synthase accessory protein 1	0.1232286417
+UniRef50_P0A5K5: Cyclic pyranopterin monophosphate synthase accessory protein 1|unclassified	0.1232286417
+UniRef50_UPI00035D3834: hypothetical protein, partial	0.1232211640
+UniRef50_UPI00035D3834: hypothetical protein, partial|unclassified	0.1232211640
+UniRef50_D9ULK3: Secreted serine-rich protein	0.1232134894
+UniRef50_D9ULK3: Secreted serine-rich protein|unclassified	0.1232134894
+UniRef50_A0P313: NAD(P)H:quinone oxidoreductase	0.1232100875
+UniRef50_A0P313: NAD(P)H:quinone oxidoreductase|unclassified	0.1232100875
+UniRef50_G2YLI0	0.1232085657
+UniRef50_G2YLI0|unclassified	0.1232085657
+UniRef50_W0Z6N6: Rhs element Vgr protein	0.1231890089
+UniRef50_W0Z6N6: Rhs element Vgr protein|unclassified	0.1231890089
+UniRef50_UPI000476D6FD: hypothetical protein	0.1231878000
+UniRef50_UPI000476D6FD: hypothetical protein|unclassified	0.1231878000
+UniRef50_F0SFE0: Type VI secretion protein, EvpB/VC_A0108 family	0.1231863176
+UniRef50_F0SFE0: Type VI secretion protein, EvpB/VC_A0108 family|unclassified	0.1231863176
+UniRef50_F2MMN9: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit	0.1231846288
+UniRef50_F2MMN9: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit|unclassified	0.1231846288
+UniRef50_UPI0003789BA4: hypothetical protein	0.1231712675
+UniRef50_UPI0003789BA4: hypothetical protein|unclassified	0.1231712675
+UniRef50_C2Y3R6: Reticulocyte binding protein	0.1231642904
+UniRef50_C2Y3R6: Reticulocyte binding protein|unclassified	0.1231642904
+UniRef50_W4PGX2	0.1231604747
+UniRef50_W4PGX2|unclassified	0.1231604747
+UniRef50_E7RWS2: TRAP transporter solute receptor, TAXI family	0.1231596881
+UniRef50_E7RWS2: TRAP transporter solute receptor, TAXI family|unclassified	0.1231596881
+UniRef50_UPI0003715A93: phosphoribosylglycinamide synthetase	0.1231554200
+UniRef50_UPI0003715A93: phosphoribosylglycinamide synthetase|unclassified	0.1231554200
+UniRef50_UPI0004714610: hypothetical protein	0.1231540852
+UniRef50_UPI0004714610: hypothetical protein|unclassified	0.1231540852
+UniRef50_Q38XI1: Phosphopentomutase	0.1231530467
+UniRef50_Q38XI1: Phosphopentomutase|unclassified	0.1231530467
+UniRef50_Q5NNB4: N-succinylarginine dihydrolase	0.1231513591
+UniRef50_Q5NNB4: N-succinylarginine dihydrolase|unclassified	0.1231513591
+UniRef50_UPI00047100D4: hypothetical protein	0.1231475038
+UniRef50_UPI00047100D4: hypothetical protein|unclassified	0.1231475038
+UniRef50_U4K948	0.1231443349
+UniRef50_U4K948|unclassified	0.1231443349
+UniRef50_A9HC14: Probable nicotinate-nucleotide adenylyltransferase	0.1231418609
+UniRef50_A9HC14: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.1231418609
+UniRef50_K2I3J7: Lipoprotein, putative	0.1231394586
+UniRef50_K2I3J7: Lipoprotein, putative|unclassified	0.1231394586
+UniRef50_UPI000470E103: hypothetical protein	0.1231331231
+UniRef50_UPI000470E103: hypothetical protein|unclassified	0.1231331231
+UniRef50_UPI0002FBC9AA: hypothetical protein	0.1231298558
+UniRef50_UPI0002FBC9AA: hypothetical protein|unclassified	0.1231298558
+UniRef50_UPI000382632C: hypothetical protein	0.1231296039
+UniRef50_UPI000382632C: hypothetical protein|unclassified	0.1231296039
+UniRef50_A0KMW0: Immunogenic protein	0.1231284224
+UniRef50_A0KMW0: Immunogenic protein|unclassified	0.1231284224
+UniRef50_S9A1Q2	0.1231220459
+UniRef50_S9A1Q2|unclassified	0.1231220459
+UniRef50_UPI000288A6F1: TRAP dicarboxylate transporter subunit DctP	0.1231205695
+UniRef50_UPI000288A6F1: TRAP dicarboxylate transporter subunit DctP|unclassified	0.1231205695
+UniRef50_C1F905: Peptidyl-tRNA hydrolase	0.1231152775
+UniRef50_C1F905: Peptidyl-tRNA hydrolase|unclassified	0.1231152775
+UniRef50_Q1J163: Elongation factor P	0.1230927400
+UniRef50_Q1J163: Elongation factor P|unclassified	0.1230927400
+UniRef50_C6NRJ9: Amino acid permease family protein	0.1230916762
+UniRef50_C6NRJ9: Amino acid permease family protein|unclassified	0.1230916762
+UniRef50_UPI00035ED814: hypothetical protein, partial	0.1230876767
+UniRef50_UPI00035ED814: hypothetical protein, partial|unclassified	0.1230876767
+UniRef50_U7DL69: Membrane protein	0.1230780485
+UniRef50_U7DL69: Membrane protein|unclassified	0.1230780485
+UniRef50_UPI000474ADA6: HAD family hydrolase	0.1230743148
+UniRef50_UPI000474ADA6: HAD family hydrolase|unclassified	0.1230743148
+UniRef50_Q9AAL4: N-succinylarginine dihydrolase 1	0.1230454886
+UniRef50_Q9AAL4: N-succinylarginine dihydrolase 1|unclassified	0.1230454886
+UniRef50_UPI0003717F60: hypothetical protein	0.1230445435
+UniRef50_UPI0003717F60: hypothetical protein|unclassified	0.1230445435
+UniRef50_UPI0003B4315C: hypothetical protein, partial	0.1230393934
+UniRef50_UPI0003B4315C: hypothetical protein, partial|unclassified	0.1230393934
+UniRef50_UPI00047B881B: hypothetical protein	0.1230368713
+UniRef50_UPI00047B881B: hypothetical protein|unclassified	0.1230368713
+UniRef50_UPI0003AE2DCF: PREDICTED: basic proline-rich protein-like	0.1230368137
+UniRef50_UPI0003AE2DCF: PREDICTED: basic proline-rich protein-like|unclassified	0.1230368137
+UniRef50_B0BXC2: Holliday junction ATP-dependent DNA helicase RuvA	0.1230085837
+UniRef50_B0BXC2: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.1230085837
+UniRef50_K2N4I5	0.1230053540
+UniRef50_K2N4I5|unclassified	0.1230053540
+UniRef50_UPI0004701F6D: hypothetical protein, partial	0.1229948966
+UniRef50_UPI0004701F6D: hypothetical protein, partial|unclassified	0.1229948966
+UniRef50_UPI00038256C0: hypothetical protein	0.1229939295
+UniRef50_UPI00038256C0: hypothetical protein|unclassified	0.1229939295
+UniRef50_O83668: Fructose-bisphosphate aldolase	0.1229906602
+UniRef50_O83668: Fructose-bisphosphate aldolase|unclassified	0.1229906602
+UniRef50_W7Q851	0.1229885380
+UniRef50_W7Q851|unclassified	0.1229885380
+UniRef50_UPI0003B6E357: hypothetical protein	0.1229552997
+UniRef50_UPI0003B6E357: hypothetical protein|unclassified	0.1229552997
+UniRef50_C5BHA4: Ribosomal RNA large subunit methyltransferase M	0.1229534019
+UniRef50_C5BHA4: Ribosomal RNA large subunit methyltransferase M|unclassified	0.1229534019
+UniRef50_UPI00046D32C4: hypothetical protein	0.1229493722
+UniRef50_UPI00046D32C4: hypothetical protein|unclassified	0.1229493722
+UniRef50_Q472A3: Phenylacetic acid degradation-related protein	0.1229438760
+UniRef50_Q472A3: Phenylacetic acid degradation-related protein|unclassified	0.1229438760
+UniRef50_U1U8K1	0.1229379242
+UniRef50_U1U8K1|unclassified	0.1229379242
+UniRef50_UPI0003B5C8B3: spore coat protein, partial	0.1229335962
+UniRef50_UPI0003B5C8B3: spore coat protein, partial|unclassified	0.1229335962
+UniRef50_UPI0004651FAC: hypothetical protein, partial	0.1229213537
+UniRef50_UPI0004651FAC: hypothetical protein, partial|unclassified	0.1229213537
+UniRef50_X0Y939: Marine sediment metagenome DNA, contig: S01H1_S41796 (Fragment)	0.1229201228
+UniRef50_X0Y939: Marine sediment metagenome DNA, contig: S01H1_S41796 (Fragment)|unclassified	0.1229201228
+UniRef50_UPI0003685D17: hypothetical protein	0.1229145743
+UniRef50_UPI0003685D17: hypothetical protein|unclassified	0.1229145743
+UniRef50_UPI00047D9DB1: iron transporter FeoB	0.1229083139
+UniRef50_UPI00047D9DB1: iron transporter FeoB|unclassified	0.1229083139
+UniRef50_UPI00035E4699: hypothetical protein	0.1228983672
+UniRef50_UPI00035E4699: hypothetical protein|unclassified	0.1228983672
+UniRef50_G2I884	0.1228937167
+UniRef50_G2I884|unclassified	0.1228937167
+UniRef50_UPI000377DF0F: hypothetical protein	0.1228898181
+UniRef50_UPI000377DF0F: hypothetical protein|unclassified	0.1228898181
+UniRef50_UPI0003664DB3: hypothetical protein	0.1228780248
+UniRef50_UPI0003664DB3: hypothetical protein|unclassified	0.1228780248
+UniRef50_Q9ZH77: Malate synthase	0.1228726034
+UniRef50_Q9ZH77: Malate synthase|unclassified	0.1228726034
+UniRef50_P17815: Malate synthase, glyoxysomal	0.1228687380
+UniRef50_P17815: Malate synthase, glyoxysomal|unclassified	0.1228687380
+UniRef50_D0D644: Transglutaminase domain protein	0.1228675593
+UniRef50_D0D644: Transglutaminase domain protein|unclassified	0.1228675593
+UniRef50_H7KDR0: Anaphase-promoting complex, cyclosome, subunit 3 family protein	0.1228656992
+UniRef50_H7KDR0: Anaphase-promoting complex, cyclosome, subunit 3 family protein|unclassified	0.1228656992
+UniRef50_J9P6K5	0.1228609134
+UniRef50_J9P6K5|unclassified	0.1228609134
+UniRef50_UPI00037DB3D6: hypothetical protein	0.1228390754
+UniRef50_UPI00037DB3D6: hypothetical protein|unclassified	0.1228390754
+UniRef50_B8A191	0.1228313941
+UniRef50_B8A191|unclassified	0.1228313941
+UniRef50_UPI000255F19E: hypothetical protein	0.1228167811
+UniRef50_UPI000255F19E: hypothetical protein|unclassified	0.1228167811
+UniRef50_R6UK77	0.1228104432
+UniRef50_R6UK77|unclassified	0.1228104432
+UniRef50_UPI000379D203: hypothetical protein, partial	0.1228077025
+UniRef50_UPI000379D203: hypothetical protein, partial|unclassified	0.1228077025
+UniRef50_R7EZG6	0.1228022650
+UniRef50_R7EZG6|unclassified	0.1228022650
+UniRef50_A4VRC5	0.1227995112
+UniRef50_A4VRC5|unclassified	0.1227995112
+UniRef50_Q2NBB9	0.1227898792
+UniRef50_Q2NBB9|unclassified	0.1227898792
+UniRef50_I0XHP1	0.1227751921
+UniRef50_I0XHP1|unclassified	0.1227751921
+UniRef50_UPI0003840079: PREDICTED: iron-responsive element-binding protein 2	0.1227740565
+UniRef50_UPI0003840079: PREDICTED: iron-responsive element-binding protein 2|unclassified	0.1227740565
+UniRef50_Q6YY67	0.1227653186
+UniRef50_Q6YY67|unclassified	0.1227653186
+UniRef50_W5AKW1	0.1227597203
+UniRef50_W5AKW1|unclassified	0.1227597203
+UniRef50_V5FP79	0.1227591369
+UniRef50_V5FP79|unclassified	0.1227591369
+UniRef50_H2G6W3: Protein NrdI	0.1227582197
+UniRef50_H2G6W3: Protein NrdI|unclassified	0.1227582197
+UniRef50_UPI00036754A0: hypothetical protein	0.1227481274
+UniRef50_UPI00036754A0: hypothetical protein|unclassified	0.1227481274
+UniRef50_UPI00047C9CC6: hypothetical protein	0.1227366225
+UniRef50_UPI00047C9CC6: hypothetical protein|unclassified	0.1227366225
+UniRef50_Q13126: S-methyl-5'-thioadenosine phosphorylase	0.1227346832
+UniRef50_Q13126: S-methyl-5'-thioadenosine phosphorylase|unclassified	0.1227346832
+UniRef50_R9U1G0	0.1227302570
+UniRef50_R9U1G0|unclassified	0.1227302570
+UniRef50_W8UDK0: UPF0502 protein LC20_02414	0.1227283474
+UniRef50_W8UDK0: UPF0502 protein LC20_02414|unclassified	0.1227283474
+UniRef50_UPI0003C774EB: pyoverdine biosynthesis protein	0.1227233227
+UniRef50_UPI0003C774EB: pyoverdine biosynthesis protein|unclassified	0.1227233227
+UniRef50_A0A011P4I3: Protease production enhancer protein	0.1227136092
+UniRef50_A0A011P4I3: Protease production enhancer protein|unclassified	0.1227136092
+UniRef50_UPI00035CD1FF: hypothetical protein	0.1227098340
+UniRef50_UPI00035CD1FF: hypothetical protein|unclassified	0.1227098340
+UniRef50_UPI00047D9616: helicase Cas3	0.1227093700
+UniRef50_UPI00047D9616: helicase Cas3|unclassified	0.1227093700
+UniRef50_UPI0003B5B0A8: UDP-phosphate galactose phosphotransferase	0.1227038316
+UniRef50_UPI0003B5B0A8: UDP-phosphate galactose phosphotransferase|unclassified	0.1227038316
+UniRef50_A4EHP4: MJ0042 family finger-like domain protein	0.1227025634
+UniRef50_A4EHP4: MJ0042 family finger-like domain protein|unclassified	0.1227025634
+UniRef50_W4FWB3	0.1227005430
+UniRef50_W4FWB3|unclassified	0.1227005430
+UniRef50_A4EAU0	0.1226911573
+UniRef50_A4EAU0|unclassified	0.1226911573
+UniRef50_UPI00035D24EF: hypothetical protein	0.1226871193
+UniRef50_UPI00035D24EF: hypothetical protein|unclassified	0.1226871193
+UniRef50_R5IIY6	0.1226862247
+UniRef50_R5IIY6|unclassified	0.1226862247
+UniRef50_UPI0004220C01: SAM-dependent methlyltransferase	0.1226836122
+UniRef50_UPI0004220C01: SAM-dependent methlyltransferase|unclassified	0.1226836122
+UniRef50_Q2RMU6: Heat shock protein Hsp20	0.1226777021
+UniRef50_Q2RMU6: Heat shock protein Hsp20|unclassified	0.1226777021
+UniRef50_UPI00047719C7: hypothetical protein	0.1226757185
+UniRef50_UPI00047719C7: hypothetical protein|unclassified	0.1226757185
+UniRef50_U3JHG3	0.1226697386
+UniRef50_U3JHG3|unclassified	0.1226697386
+UniRef50_G2MSN3: Glucitol operon activator	0.1226643001
+UniRef50_G2MSN3: Glucitol operon activator|unclassified	0.1226643001
+UniRef50_UPI00028830BD: magnesium chelatase	0.1226617389
+UniRef50_UPI00028830BD: magnesium chelatase|unclassified	0.1226617389
+UniRef50_UPI000373D399: hypothetical protein	0.1226563501
+UniRef50_UPI000373D399: hypothetical protein|unclassified	0.1226563501
+UniRef50_C6CEU3: Ribosomal RNA large subunit methyltransferase M	0.1226435244
+UniRef50_C6CEU3: Ribosomal RNA large subunit methyltransferase M|unclassified	0.1226435244
+UniRef50_A0A022GYH1	0.1226358768
+UniRef50_A0A022GYH1|unclassified	0.1226358768
+UniRef50_UPI00035D626C: hypothetical protein	0.1226267385
+UniRef50_UPI00035D626C: hypothetical protein|unclassified	0.1226267385
+UniRef50_B2AP02: Podospora anserina S mat+ genomic DNA chromosome 7, supercontig 3	0.1225921597
+UniRef50_B2AP02: Podospora anserina S mat+ genomic DNA chromosome 7, supercontig 3|unclassified	0.1225921597
+UniRef50_UPI00047ED9DC: glycyl-tRNA synthetase subunit beta	0.1225882511
+UniRef50_UPI00047ED9DC: glycyl-tRNA synthetase subunit beta|unclassified	0.1225882511
+UniRef50_UPI00046BF57D: PREDICTED: citrate lyase subunit beta-like protein, mitochondrial	0.1225815601
+UniRef50_UPI00046BF57D: PREDICTED: citrate lyase subunit beta-like protein, mitochondrial|unclassified	0.1225815601
+UniRef50_UPI00036BD889: hypothetical protein	0.1225788195
+UniRef50_UPI00036BD889: hypothetical protein|unclassified	0.1225788195
+UniRef50_A6CSH6	0.1225732459
+UniRef50_A6CSH6|unclassified	0.1225732459
+UniRef50_P44297: UPF0231 protein HI_1724	0.1225644115
+UniRef50_P44297: UPF0231 protein HI_1724|unclassified	0.1225644115
+UniRef50_Q7VR12: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase	0.1225620150
+UniRef50_Q7VR12: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase|unclassified	0.1225620150
+UniRef50_X1EDA5: Marine sediment metagenome DNA, contig: S03H2_C01525 (Fragment)	0.1225590934
+UniRef50_X1EDA5: Marine sediment metagenome DNA, contig: S03H2_C01525 (Fragment)|unclassified	0.1225590934
+UniRef50_UPI00036396B4: hypothetical protein	0.1225575847
+UniRef50_UPI00036396B4: hypothetical protein|unclassified	0.1225575847
+UniRef50_UPI0001850E36: tRNA CCA-pyrophosphorylase	0.1225565631
+UniRef50_UPI0001850E36: tRNA CCA-pyrophosphorylase|unclassified	0.1225565631
+UniRef50_R9LTB5: L-ribulose-5-phosphate 4-epimerase	0.1225547402
+UniRef50_R9LTB5: L-ribulose-5-phosphate 4-epimerase|unclassified	0.1225547402
+UniRef50_UPI0003159ED7: hypothetical protein	0.1225512201
+UniRef50_UPI0003159ED7: hypothetical protein|unclassified	0.1225512201
+UniRef50_Q2NG70: Conserved hypothetical membrane-spanning protein	0.1225475113
+UniRef50_Q2NG70: Conserved hypothetical membrane-spanning protein|unclassified	0.1225475113
+UniRef50_Q8FMN9: Phosphate import ATP-binding protein PstB	0.1225468683
+UniRef50_Q8FMN9: Phosphate import ATP-binding protein PstB|unclassified	0.1225468683
+UniRef50_K2BDU4	0.1225465347
+UniRef50_K2BDU4|unclassified	0.1225465347
+UniRef50_I1I7W5	0.1225459237
+UniRef50_I1I7W5|unclassified	0.1225459237
+UniRef50_C9MZY6: Protein TraX	0.1225444512
+UniRef50_C9MZY6: Protein TraX|unclassified	0.1225444512
+UniRef50_UPI0003C17DF0: PREDICTED: lon protease homolog, mitochondrial-like, partial	0.1225427357
+UniRef50_UPI0003C17DF0: PREDICTED: lon protease homolog, mitochondrial-like, partial|unclassified	0.1225427357
+UniRef50_A0A022LXH8: LysR family transcriptional regulator (Fragment)	0.1225394833
+UniRef50_A0A022LXH8: LysR family transcriptional regulator (Fragment)|unclassified	0.1225394833
+UniRef50_Q82VF1: S-adenosylmethionine:tRNA ribosyltransferase-isomerase	0.1225097213
+UniRef50_Q82VF1: S-adenosylmethionine:tRNA ribosyltransferase-isomerase|unclassified	0.1225097213
+UniRef50_U7V892: Putative copper-sensing transcriptional repressor CsoR	0.1225015973
+UniRef50_U7V892: Putative copper-sensing transcriptional repressor CsoR|unclassified	0.1225015973
+UniRef50_UPI000252BB02: PREDICTED: cysteine--tRNA ligase-like, partial	0.1225010536
+UniRef50_UPI000252BB02: PREDICTED: cysteine--tRNA ligase-like, partial|unclassified	0.1225010536
+UniRef50_Q8NXB2	0.1224964938
+UniRef50_Q8NXB2|unclassified	0.1224964938
+UniRef50_Q46167: AraD protein (Fragment)	0.1224815688
+UniRef50_Q46167: AraD protein (Fragment)|unclassified	0.1224815688
+UniRef50_E5G5K3: Putative conjugative transfer protein	0.1224612175
+UniRef50_E5G5K3: Putative conjugative transfer protein|unclassified	0.1224612175
+UniRef50_C2XMN3	0.1224606594
+UniRef50_C2XMN3|unclassified	0.1224606594
+UniRef50_UPI0004703495: hypothetical protein	0.1224499727
+UniRef50_UPI0004703495: hypothetical protein|unclassified	0.1224499727
+UniRef50_N0DYS1	0.1224488291
+UniRef50_N0DYS1|unclassified	0.1224488291
+UniRef50_A0YAX6	0.1224422479
+UniRef50_A0YAX6|unclassified	0.1224422479
+UniRef50_UPI00026C7577: oxidoreductase	0.1224413208
+UniRef50_UPI00026C7577: oxidoreductase|unclassified	0.1224413208
+UniRef50_UPI000479B291: nitrogenase molybdenum-iron protein subunit beta	0.1224388526
+UniRef50_UPI000479B291: nitrogenase molybdenum-iron protein subunit beta|unclassified	0.1224388526
+UniRef50_W5X8Y0: Peptidase M48	0.1224363863
+UniRef50_W5X8Y0: Peptidase M48|unclassified	0.1224363863
+UniRef50_D6LVX3: Predicted protein	0.1224336618
+UniRef50_D6LVX3: Predicted protein|unclassified	0.1224336618
+UniRef50_UPI00035D0534: hypothetical protein	0.1224258551
+UniRef50_UPI00035D0534: hypothetical protein|unclassified	0.1224258551
+UniRef50_D7GTN9: Predicted phosphatase homologous to the C-terminal domain of histone macroH2A1	0.1224219487
+UniRef50_D7GTN9: Predicted phosphatase homologous to the C-terminal domain of histone macroH2A1|unclassified	0.1224219487
+UniRef50_P72785: 4-alpha-glucanotransferase	0.1224075241
+UniRef50_P72785: 4-alpha-glucanotransferase|unclassified	0.1224075241
+UniRef50_D7CR59: Excinuclease ABC C subunit domain protein	0.1224058788
+UniRef50_D7CR59: Excinuclease ABC C subunit domain protein|unclassified	0.1224058788
+UniRef50_O75439: Mitochondrial-processing peptidase subunit beta	0.1224053567
+UniRef50_O75439: Mitochondrial-processing peptidase subunit beta|unclassified	0.1224053567
+UniRef50_D6HYN0	0.1224032167
+UniRef50_D6HYN0|unclassified	0.1224032167
+UniRef50_UPI0003FCF25B: hypothetical protein	0.1223969305
+UniRef50_UPI0003FCF25B: hypothetical protein|unclassified	0.1223969305
+UniRef50_U2FW82: Membrane lipoprotein	0.1223891311
+UniRef50_U2FW82: Membrane lipoprotein|unclassified	0.1223891311
+UniRef50_K6Y167	0.1223888377
+UniRef50_K6Y167|unclassified	0.1223888377
+UniRef50_UPI0003730BCE: hypothetical protein	0.1223825178
+UniRef50_UPI0003730BCE: hypothetical protein|unclassified	0.1223825178
+UniRef50_UPI00036CB585: hypothetical protein	0.1223755810
+UniRef50_UPI00036CB585: hypothetical protein|unclassified	0.1223755810
+UniRef50_A7BYF4: Integral membrane protein	0.1223743733
+UniRef50_A7BYF4: Integral membrane protein|unclassified	0.1223743733
+UniRef50_UPI000303924B: hypothetical protein	0.1223726623
+UniRef50_UPI000303924B: hypothetical protein|unclassified	0.1223726623
+UniRef50_UPI000308C935: hypothetical protein	0.1223698140
+UniRef50_UPI000308C935: hypothetical protein|unclassified	0.1223698140
+UniRef50_UPI000476B824: CpxR	0.1223586968
+UniRef50_UPI000476B824: CpxR|unclassified	0.1223586968
+UniRef50_D1CTL6	0.1223511543
+UniRef50_D1CTL6|unclassified	0.1223511543
+UniRef50_X0PFJ6: Cytosine deaminase	0.1223493228
+UniRef50_X0PFJ6: Cytosine deaminase|unclassified	0.1223493228
+UniRef50_Q725Q3: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	0.1223395875
+UniRef50_Q725Q3: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.1223395875
+UniRef50_UPI0002F158F5: hypothetical protein	0.1223337815
+UniRef50_UPI0002F158F5: hypothetical protein|unclassified	0.1223337815
+UniRef50_V5ZNZ0	0.1223216398
+UniRef50_V5ZNZ0|unclassified	0.1223216398
+UniRef50_UPI0003637125: hypothetical protein	0.1223215418
+UniRef50_UPI0003637125: hypothetical protein|unclassified	0.1223215418
+UniRef50_UPI0003B75C4F: amino acid ABC transporter permease	0.1222940269
+UniRef50_UPI0003B75C4F: amino acid ABC transporter permease|unclassified	0.1222940269
+UniRef50_B8FTH9	0.1222855565
+UniRef50_B8FTH9|unclassified	0.1222855565
+UniRef50_UPI00036D5F0C: hypothetical protein	0.1222824687
+UniRef50_UPI00036D5F0C: hypothetical protein|unclassified	0.1222824687
+UniRef50_UPI0004415C53: hypothetical protein DICSQDRAFT_160326	0.1222808373
+UniRef50_UPI0004415C53: hypothetical protein DICSQDRAFT_160326|unclassified	0.1222808373
+UniRef50_Q6MAG4: Holo-[acyl-carrier-protein] synthase	0.1222740040
+UniRef50_Q6MAG4: Holo-[acyl-carrier-protein] synthase|unclassified	0.1222740040
+UniRef50_UPI000361AE71: hypothetical protein	0.1222708346
+UniRef50_UPI000361AE71: hypothetical protein|unclassified	0.1222708346
+UniRef50_Q9FCA2: Peptide deformylase 2	0.1222677825
+UniRef50_Q9FCA2: Peptide deformylase 2|unclassified	0.1222677825
+UniRef50_UPI00037C6C2F: hypothetical protein	0.1222660169
+UniRef50_UPI00037C6C2F: hypothetical protein|unclassified	0.1222660169
+UniRef50_UPI00047880B1: hypothetical protein	0.1222644865
+UniRef50_UPI00047880B1: hypothetical protein|unclassified	0.1222644865
+UniRef50_UPI00046ADB83: hypothetical protein	0.1222399253
+UniRef50_UPI00046ADB83: hypothetical protein|unclassified	0.1222399253
+UniRef50_Q9RZP0: Potassium-transporting ATPase B chain	0.1222345480
+UniRef50_Q9RZP0: Potassium-transporting ATPase B chain|unclassified	0.1222345480
+UniRef50_A8MLB1: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.1222261046
+UniRef50_A8MLB1: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.1222261046
+UniRef50_UPI000364FD31: transporter	0.1222227037
+UniRef50_UPI000364FD31: transporter|unclassified	0.1222227037
+UniRef50_Q6NAT5: Beta-lactamase-like	0.1222208739
+UniRef50_Q6NAT5: Beta-lactamase-like|unclassified	0.1222208739
+UniRef50_UPI00042B88CF: Phosphoenolpyruvate carboxylase family protein isoform 3	0.1222075443
+UniRef50_UPI00042B88CF: Phosphoenolpyruvate carboxylase family protein isoform 3|unclassified	0.1222075443
+UniRef50_K0K8L9: dTDP-4-dehydrorhamnose reductase	0.1222016539
+UniRef50_K0K8L9: dTDP-4-dehydrorhamnose reductase|unclassified	0.1222016539
+UniRef50_UPI0003771DAE: hypothetical protein	0.1221902491
+UniRef50_UPI0003771DAE: hypothetical protein|unclassified	0.1221902491
+UniRef50_L7ULN7: DGPF domain-containing protein	0.1221868119
+UniRef50_L7ULN7: DGPF domain-containing protein|unclassified	0.1221868119
+UniRef50_UPI00046E97C7: hypothetical protein	0.1221858257
+UniRef50_UPI00046E97C7: hypothetical protein|unclassified	0.1221858257
+UniRef50_Q8Y8Q5: Calcium-transporting ATPase lmo0841	0.1221772529
+UniRef50_Q8Y8Q5: Calcium-transporting ATPase lmo0841|unclassified	0.1221772529
+UniRef50_B0K280: Mannitol-1-phosphate 5-dehydrogenase	0.1221742562
+UniRef50_B0K280: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.1221742562
+UniRef50_UPI0003345023	0.1221730766
+UniRef50_UPI0003345023|unclassified	0.1221730766
+UniRef50_UPI0004693B80: ammonia monooxygenase	0.1221660880
+UniRef50_UPI0004693B80: ammonia monooxygenase|unclassified	0.1221660880
+UniRef50_W4D6C3: von Willebrand factor type A (Fragment)	0.1221516998
+UniRef50_W4D6C3: von Willebrand factor type A (Fragment)|unclassified	0.1221516998
+UniRef50_UPI000406C54D: multidrug MFS transporter	0.1221410119
+UniRef50_UPI000406C54D: multidrug MFS transporter|unclassified	0.1221410119
+UniRef50_A0A021A780: Phage protein	0.1221314133
+UniRef50_A0A021A780: Phage protein|unclassified	0.1221314133
+UniRef50_I9L3W9: Phospholipid-binding protein	0.1221155970
+UniRef50_I9L3W9: Phospholipid-binding protein|unclassified	0.1221155970
+UniRef50_UPI0003B77570: methyltransferase	0.1221132019
+UniRef50_UPI0003B77570: methyltransferase|unclassified	0.1221132019
+UniRef50_X8DD30: C-terminal regulatory domain of Threonine dehydratase family protein	0.1221122452
+UniRef50_X8DD30: C-terminal regulatory domain of Threonine dehydratase family protein|unclassified	0.1221122452
+UniRef50_W7X3T8	0.1221061868
+UniRef50_W7X3T8|unclassified	0.1221061868
+UniRef50_UPI00037B64B8: MULTISPECIES: urea ABC transporter ATP-binding protein	0.1221059144
+UniRef50_UPI00037B64B8: MULTISPECIES: urea ABC transporter ATP-binding protein|unclassified	0.1221059144
+UniRef50_UPI000299DD27: signal recognition particle protein, partial	0.1220969925
+UniRef50_UPI000299DD27: signal recognition particle protein, partial|unclassified	0.1220969925
+UniRef50_UPI00039A5D07: penicillin-binding protein 1A	0.1220914547
+UniRef50_UPI00039A5D07: penicillin-binding protein 1A|unclassified	0.1220914547
+UniRef50_UPI0003B3448B: glycosyl transferase family 1	0.1220844385
+UniRef50_UPI0003B3448B: glycosyl transferase family 1|unclassified	0.1220844385
+UniRef50_B9QVQ6: SEC-C motif domain protein	0.1220805985
+UniRef50_B9QVQ6: SEC-C motif domain protein|unclassified	0.1220805985
+UniRef50_UPI0003B3352C: peptidase M48	0.1220796002
+UniRef50_UPI0003B3352C: peptidase M48|unclassified	0.1220796002
+UniRef50_UPI00036E5569: hypothetical protein	0.1220637217
+UniRef50_UPI00036E5569: hypothetical protein|unclassified	0.1220637217
+UniRef50_UPI00036D4795: hypothetical protein	0.1220629624
+UniRef50_UPI00036D4795: hypothetical protein|unclassified	0.1220629624
+UniRef50_UPI00035F4E5E: hypothetical protein	0.1220619008
+UniRef50_UPI00035F4E5E: hypothetical protein|unclassified	0.1220619008
+UniRef50_X7XNE2	0.1220604112
+UniRef50_X7XNE2|unclassified	0.1220604112
+UniRef50_A0A016XDF6: Diguanylate cyclase	0.1220495055
+UniRef50_A0A016XDF6: Diguanylate cyclase|unclassified	0.1220495055
+UniRef50_B4SCX8: Phosphoribosyl-AMP cyclohydrolase	0.1220476812
+UniRef50_B4SCX8: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.1220476812
+UniRef50_UPI00037A68E8: MULTISPECIES: hypothetical protein	0.1220430622
+UniRef50_UPI00037A68E8: MULTISPECIES: hypothetical protein|unclassified	0.1220430622
+UniRef50_Q21AQ3	0.1220404512
+UniRef50_Q21AQ3|unclassified	0.1220404512
+UniRef50_UPI00035F4F82: hypothetical protein	0.1220169516
+UniRef50_UPI00035F4F82: hypothetical protein|unclassified	0.1220169516
+UniRef50_UPI00036E8D7F: hypothetical protein	0.1220013010
+UniRef50_UPI00036E8D7F: hypothetical protein|unclassified	0.1220013010
+UniRef50_Q9PGW2	0.1219997493
+UniRef50_Q9PGW2|unclassified	0.1219997493
+UniRef50_B2UNJ3: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.1219990029
+UniRef50_B2UNJ3: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.1219990029
+UniRef50_I0U3Y5	0.1219984457
+UniRef50_I0U3Y5|unclassified	0.1219984457
+UniRef50_A0A024DYE8: Peptidase, M23/M37	0.1219967412
+UniRef50_A0A024DYE8: Peptidase, M23/M37|unclassified	0.1219967412
+UniRef50_UPI00047AA55A: phosphopantetheine adenylyltransferase	0.1219933817
+UniRef50_UPI00047AA55A: phosphopantetheine adenylyltransferase|unclassified	0.1219933817
+UniRef50_R5RKD2	0.1219890590
+UniRef50_R5RKD2|unclassified	0.1219890590
+UniRef50_Q7VFF8: Argininosuccinate lyase	0.1219890204
+UniRef50_Q7VFF8: Argininosuccinate lyase|unclassified	0.1219890204
+UniRef50_UPI00036F6A1E: hypothetical protein	0.1219782872
+UniRef50_UPI00036F6A1E: hypothetical protein|unclassified	0.1219782872
+UniRef50_UPI00037E157B: hypothetical protein	0.1219774340
+UniRef50_UPI00037E157B: hypothetical protein|unclassified	0.1219774340
+UniRef50_K8Z2D7	0.1219727355
+UniRef50_K8Z2D7|unclassified	0.1219727355
+UniRef50_M2QWV6	0.1219664529
+UniRef50_M2QWV6|unclassified	0.1219664529
+UniRef50_UPI0003760B03: hypothetical protein	0.1219636329
+UniRef50_UPI0003760B03: hypothetical protein|unclassified	0.1219636329
+UniRef50_Q6HGD0	0.1219279156
+UniRef50_Q6HGD0|unclassified	0.1219279156
+UniRef50_UPI000287FE98: aldehyde oxidoreductase	0.1219105683
+UniRef50_UPI000287FE98: aldehyde oxidoreductase|unclassified	0.1219105683
+UniRef50_UPI00037FB428: LysR family transcriptional regulator	0.1219080116
+UniRef50_UPI00037FB428: LysR family transcriptional regulator|unclassified	0.1219080116
+UniRef50_UPI000262D1ED: winged helix family two component transcriptional regulator	0.1219041437
+UniRef50_UPI000262D1ED: winged helix family two component transcriptional regulator|unclassified	0.1219041437
+UniRef50_UPI00031B4A51: hypothetical protein	0.1218937203
+UniRef50_UPI00031B4A51: hypothetical protein|unclassified	0.1218937203
+UniRef50_R7PUZ8: Gp5 C-repeat family protein	0.1218902843
+UniRef50_R7PUZ8: Gp5 C-repeat family protein|unclassified	0.1218902843
+UniRef50_W5X6C6: NADP oxidoreductase coenzyme F420-dependent	0.1218889083
+UniRef50_W5X6C6: NADP oxidoreductase coenzyme F420-dependent|unclassified	0.1218889083
+UniRef50_UPI0003B62CCC: electron transporter RnfB	0.1218873143
+UniRef50_UPI0003B62CCC: electron transporter RnfB|unclassified	0.1218873143
+UniRef50_J0JP26: Lipocalin	0.1218789996
+UniRef50_J0JP26: Lipocalin|unclassified	0.1218789996
+UniRef50_UPI00047A420C: hypothetical protein	0.1218759350
+UniRef50_UPI00047A420C: hypothetical protein|unclassified	0.1218759350
+UniRef50_W8YJN0	0.1218730556
+UniRef50_W8YJN0|unclassified	0.1218730556
+UniRef50_UPI00046424D4: membrane protein	0.1218718599
+UniRef50_UPI00046424D4: membrane protein|unclassified	0.1218718599
+UniRef50_UPI0003611858: hypothetical protein	0.1218716102
+UniRef50_UPI0003611858: hypothetical protein|unclassified	0.1218716102
+UniRef50_UPI000367806A: hypothetical protein, partial	0.1218682380
+UniRef50_UPI000367806A: hypothetical protein, partial|unclassified	0.1218682380
+UniRef50_B3KWK6: Alpha-L-iduronidase	0.1218650525
+UniRef50_B3KWK6: Alpha-L-iduronidase|unclassified	0.1218650525
+UniRef50_N2J195	0.1218609870
+UniRef50_N2J195|unclassified	0.1218609870
+UniRef50_UPI000470D609: hypothetical protein	0.1218557098
+UniRef50_UPI000470D609: hypothetical protein|unclassified	0.1218557098
+UniRef50_UPI000374608B: hypothetical protein	0.1218538543
+UniRef50_UPI000374608B: hypothetical protein|unclassified	0.1218538543
+UniRef50_X0SDU2: Marine sediment metagenome DNA, contig: S01H1_L03994 (Fragment)	0.1218517648
+UniRef50_X0SDU2: Marine sediment metagenome DNA, contig: S01H1_L03994 (Fragment)|unclassified	0.1218517648
+UniRef50_UPI000472E26A: CDP-diacylglycerol pyrophosphatase, partial	0.1218504686
+UniRef50_UPI000472E26A: CDP-diacylglycerol pyrophosphatase, partial|unclassified	0.1218504686
+UniRef50_UPI0003C13F84: PREDICTED: dihydroorotate dehydrogenase (quinone), mitochondrial-like	0.1218449250
+UniRef50_UPI0003C13F84: PREDICTED: dihydroorotate dehydrogenase (quinone), mitochondrial-like|unclassified	0.1218449250
+UniRef50_Q5V5M1: Nucleoside diphosphate kinase	0.1218357861
+UniRef50_Q5V5M1: Nucleoside diphosphate kinase|unclassified	0.1218357861
+UniRef50_UPI0004788A28: AsnC family transcriptional regulator	0.1218326876
+UniRef50_UPI0004788A28: AsnC family transcriptional regulator|unclassified	0.1218326876
+UniRef50_D3L931	0.1218289234
+UniRef50_D3L931|unclassified	0.1218289234
+UniRef50_UPI00022CA5D3: PREDICTED: hypothetical protein LOC100749974	0.1218100152
+UniRef50_UPI00022CA5D3: PREDICTED: hypothetical protein LOC100749974|unclassified	0.1218100152
+UniRef50_UPI00047CCBE9: hypothetical protein, partial	0.1218046180
+UniRef50_UPI00047CCBE9: hypothetical protein, partial|unclassified	0.1218046180
+UniRef50_F7U168: Spore germination protein XB	0.1218043510
+UniRef50_F7U168: Spore germination protein XB|unclassified	0.1218043510
+UniRef50_G0A0E6	0.1217946929
+UniRef50_G0A0E6|unclassified	0.1217946929
+UniRef50_Q9CZB0: Succinate dehydrogenase cytochrome b560 subunit, mitochondrial	0.1217900636
+UniRef50_Q9CZB0: Succinate dehydrogenase cytochrome b560 subunit, mitochondrial|unclassified	0.1217900636
+UniRef50_I6Y4U3: NAD-dependent malic enzyme	0.1217861798
+UniRef50_I6Y4U3: NAD-dependent malic enzyme|unclassified	0.1217861798
+UniRef50_X0WZP3: Marine sediment metagenome DNA, contig: S01H1_S33036 (Fragment)	0.1217771936
+UniRef50_X0WZP3: Marine sediment metagenome DNA, contig: S01H1_S33036 (Fragment)|unclassified	0.1217771936
+UniRef50_UPI0004712019: hypothetical protein	0.1217728265
+UniRef50_UPI0004712019: hypothetical protein|unclassified	0.1217728265
+UniRef50_Q97GH9: Acetylornithine aminotransferase	0.1217683867
+UniRef50_Q97GH9: Acetylornithine aminotransferase|unclassified	0.1217683867
+UniRef50_D3S955	0.1217626059
+UniRef50_D3S955|unclassified	0.1217626059
+UniRef50_M4UA11	0.1217616802
+UniRef50_M4UA11|unclassified	0.1217616802
+UniRef50_UPI00036C9CB5: hypothetical protein	0.1217598167
+UniRef50_UPI00036C9CB5: hypothetical protein|unclassified	0.1217598167
+UniRef50_UPI00047E7FFD: membrane protein	0.1217547183
+UniRef50_UPI00047E7FFD: membrane protein|unclassified	0.1217547183
+UniRef50_F4BS35	0.1217545895
+UniRef50_F4BS35|unclassified	0.1217545895
+UniRef50_UPI00036A2D38: hypothetical protein	0.1217545015
+UniRef50_UPI00036A2D38: hypothetical protein|unclassified	0.1217545015
+UniRef50_L0MX66: YibN	0.1217382948
+UniRef50_L0MX66: YibN|unclassified	0.1217382948
+UniRef50_UPI000478DCA0: hypothetical protein	0.1217382658
+UniRef50_UPI000478DCA0: hypothetical protein|unclassified	0.1217382658
+UniRef50_W9DBU2	0.1217369531
+UniRef50_W9DBU2|unclassified	0.1217369531
+UniRef50_Q2G5Y5: NADH-quinone oxidoreductase subunit C	0.1217324046
+UniRef50_Q2G5Y5: NADH-quinone oxidoreductase subunit C|unclassified	0.1217324046
+UniRef50_A0A024E920	0.1217282649
+UniRef50_A0A024E920|unclassified	0.1217282649
+UniRef50_X1JWW4: Marine sediment metagenome DNA, contig: S03H2_S22116 (Fragment)	0.1217244952
+UniRef50_X1JWW4: Marine sediment metagenome DNA, contig: S03H2_S22116 (Fragment)|unclassified	0.1217244952
+UniRef50_E7J7U9	0.1217209351
+UniRef50_E7J7U9|unclassified	0.1217209351
+UniRef50_X1VA64: Marine sediment metagenome DNA, contig: S12H4_S03204	0.1217171605
+UniRef50_X1VA64: Marine sediment metagenome DNA, contig: S12H4_S03204|unclassified	0.1217171605
+UniRef50_UPI0002BB307C: hypothetical protein, partial	0.1217104473
+UniRef50_UPI0002BB307C: hypothetical protein, partial|unclassified	0.1217104473
+UniRef50_A5VUP8: RrF2 family protein	0.1217076381
+UniRef50_A5VUP8: RrF2 family protein|unclassified	0.1217076381
+UniRef50_Q5P4L6: Predicted transcriptional regulator	0.1217076381
+UniRef50_Q5P4L6: Predicted transcriptional regulator|unclassified	0.1217076381
+UniRef50_B2A170: Carbamoyl-phosphate synthase large chain	0.1216966622
+UniRef50_B2A170: Carbamoyl-phosphate synthase large chain|unclassified	0.1216966622
+UniRef50_X8AP60: Recombination O family protein	0.1216955698
+UniRef50_X8AP60: Recombination O family protein|unclassified	0.1216955698
+UniRef50_Q0RFD5: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.1216939255
+UniRef50_Q0RFD5: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.1216939255
+UniRef50_Q8TIS9: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.1216920433
+UniRef50_Q8TIS9: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.1216920433
+UniRef50_A9WA88: Xanthine phosphoribosyltransferase	0.1216762220
+UniRef50_A9WA88: Xanthine phosphoribosyltransferase|unclassified	0.1216762220
+UniRef50_UPI0003FED169: hypothetical protein	0.1216741652
+UniRef50_UPI0003FED169: hypothetical protein|unclassified	0.1216741652
+UniRef50_C6RIF2	0.1216713545
+UniRef50_C6RIF2|unclassified	0.1216713545
+UniRef50_P45858: 2-methylcitrate synthase	0.1216674467
+UniRef50_P45858: 2-methylcitrate synthase|unclassified	0.1216674467
+UniRef50_S8N5S2	0.1216665074
+UniRef50_S8N5S2|unclassified	0.1216665074
+UniRef50_UPI00037C48F4: hypothetical protein	0.1216650885
+UniRef50_UPI00037C48F4: hypothetical protein|unclassified	0.1216650885
+UniRef50_P65396: Molybdopterin synthase catalytic subunit	0.1216604207
+UniRef50_P65396: Molybdopterin synthase catalytic subunit|unclassified	0.1216604207
+UniRef50_UPI00047271AF: acyl-CoA dehydrogenase	0.1216574269
+UniRef50_UPI00047271AF: acyl-CoA dehydrogenase|unclassified	0.1216574269
+UniRef50_T1CR22: Site-specific recombinase	0.1216549682
+UniRef50_T1CR22: Site-specific recombinase|unclassified	0.1216549682
+UniRef50_UPI00038278FF: hypothetical protein, partial	0.1216415861
+UniRef50_UPI00038278FF: hypothetical protein, partial|unclassified	0.1216415861
+UniRef50_UPI00036E83AE: hypothetical protein, partial	0.1216384359
+UniRef50_UPI00036E83AE: hypothetical protein, partial|unclassified	0.1216384359
+UniRef50_UPI000382DE8E: MULTISPECIES: hypothetical protein	0.1216331092
+UniRef50_UPI000382DE8E: MULTISPECIES: hypothetical protein|unclassified	0.1216331092
+UniRef50_UPI00037E8529: hypothetical protein	0.1216296396
+UniRef50_UPI00037E8529: hypothetical protein|unclassified	0.1216296396
+UniRef50_Q9JSQ9: Dihydrofolate reductase	0.1216240500
+UniRef50_Q9JSQ9: Dihydrofolate reductase|unclassified	0.1216240500
+UniRef50_Q7V558: S-adenosylmethionine decarboxylase proenzyme	0.1216184544
+UniRef50_Q7V558: S-adenosylmethionine decarboxylase proenzyme|unclassified	0.1216184544
+UniRef50_U3QH21: Phenylacetic acid degradation protein	0.1216130404
+UniRef50_U3QH21: Phenylacetic acid degradation protein|unclassified	0.1216130404
+UniRef50_P19685: Superoxide dismutase [Fe]	0.1216101562
+UniRef50_P19685: Superoxide dismutase [Fe]|unclassified	0.1216101562
+UniRef50_UPI00034FD7AE: PREDICTED: filaggrin-2	0.1216101180
+UniRef50_UPI00034FD7AE: PREDICTED: filaggrin-2|unclassified	0.1216101180
+UniRef50_B9MJR9: ATP phosphoribosyltransferase	0.1215971602
+UniRef50_B9MJR9: ATP phosphoribosyltransferase|unclassified	0.1215971602
+UniRef50_P51767: Baseplate assembly protein J	0.1215966284
+UniRef50_P51767: Baseplate assembly protein J|unclassified	0.1215966284
+UniRef50_UPI00037FB965: glucose 6-phosphate dehydrogenase	0.1215892973
+UniRef50_UPI00037FB965: glucose 6-phosphate dehydrogenase|unclassified	0.1215892973
+UniRef50_Q2RFS8: Energy-coupling factor transporter ATP-binding protein EcfA	0.1215748114
+UniRef50_Q2RFS8: Energy-coupling factor transporter ATP-binding protein EcfA|unclassified	0.1215748114
+UniRef50_UPI0003697137: cupin, partial	0.1215734652
+UniRef50_UPI0003697137: cupin, partial|unclassified	0.1215734652
+UniRef50_X0W5G8: Marine sediment metagenome DNA, contig: S01H1_S20018 (Fragment)	0.1215570213
+UniRef50_X0W5G8: Marine sediment metagenome DNA, contig: S01H1_S20018 (Fragment)|unclassified	0.1215570213
+UniRef50_UPI0001E2AEC5: hypothetical protein, partial	0.1215565328
+UniRef50_UPI0001E2AEC5: hypothetical protein, partial|unclassified	0.1215565328
+UniRef50_UPI000225B90C: folylpolyglutamate synthase	0.1215552506
+UniRef50_UPI000225B90C: folylpolyglutamate synthase|unclassified	0.1215552506
+UniRef50_UPI0003C1126B: PREDICTED: ABC transporter F family member 5-like	0.1215470613
+UniRef50_UPI0003C1126B: PREDICTED: ABC transporter F family member 5-like|unclassified	0.1215470613
+UniRef50_G4C9K2	0.1215432943
+UniRef50_G4C9K2|unclassified	0.1215432943
+UniRef50_Q28Q85	0.1215346343
+UniRef50_Q28Q85|unclassified	0.1215346343
+UniRef50_UPI000473B2B9: enoyl-ACP reductase, partial	0.1215333130
+UniRef50_UPI000473B2B9: enoyl-ACP reductase, partial|unclassified	0.1215333130
+UniRef50_UPI0004779965: phenylacetic acid degradation protein	0.1215263328
+UniRef50_UPI0004779965: phenylacetic acid degradation protein|unclassified	0.1215263328
+UniRef50_D7B4A1	0.1215263198
+UniRef50_D7B4A1|unclassified	0.1215263198
+UniRef50_UPI0004640DF8: ABC transporter permease	0.1215260955
+UniRef50_UPI0004640DF8: ABC transporter permease|unclassified	0.1215260955
+UniRef50_UPI00047A6DCB: ModE family transcriptional regulator	0.1215253147
+UniRef50_UPI00047A6DCB: ModE family transcriptional regulator|unclassified	0.1215253147
+UniRef50_UPI0003619BED: hypothetical protein	0.1215225549
+UniRef50_UPI0003619BED: hypothetical protein|unclassified	0.1215225549
+UniRef50_U7DLD3: ATPase	0.1215220255
+UniRef50_U7DLD3: ATPase|unclassified	0.1215220255
+UniRef50_UPI00036D8DFB: hypothetical protein, partial	0.1215213800
+UniRef50_UPI00036D8DFB: hypothetical protein, partial|unclassified	0.1215213800
+UniRef50_K2BGW8	0.1215206401
+UniRef50_K2BGW8|unclassified	0.1215206401
+UniRef50_UPI000467AEF3: diaminopimelate decarboxylase	0.1215181857
+UniRef50_UPI000467AEF3: diaminopimelate decarboxylase|unclassified	0.1215181857
+UniRef50_UPI0003B50144: chromosomal replication initiator protein DnaA, partial	0.1215169676
+UniRef50_UPI0003B50144: chromosomal replication initiator protein DnaA, partial|unclassified	0.1215169676
+UniRef50_UPI000473F09C: cysteine protease	0.1215158862
+UniRef50_UPI000473F09C: cysteine protease|unclassified	0.1215158862
+UniRef50_UPI0003EE27E1: PREDICTED: ATP-binding cassette sub-family B member 9-like	0.1215149948
+UniRef50_UPI0003EE27E1: PREDICTED: ATP-binding cassette sub-family B member 9-like|unclassified	0.1215149948
+UniRef50_B8GPJ2	0.1214994853
+UniRef50_B8GPJ2|unclassified	0.1214994853
+UniRef50_UPI0002626C4E: Tagatose-bisphosphate aldolase	0.1214994034
+UniRef50_UPI0002626C4E: Tagatose-bisphosphate aldolase|unclassified	0.1214994034
+UniRef50_UPI00035D82C8: DNA glycosylase	0.1214974504
+UniRef50_UPI00035D82C8: DNA glycosylase|unclassified	0.1214974504
+UniRef50_A0A059IUP8: Thioredoxin	0.1214962505
+UniRef50_A0A059IUP8: Thioredoxin|unclassified	0.1214962505
+UniRef50_W8YES5	0.1214928872
+UniRef50_W8YES5|unclassified	0.1214928872
+UniRef50_F8JCB0	0.1214890952
+UniRef50_F8JCB0|unclassified	0.1214890952
+UniRef50_UPI0003652380: hypothetical protein	0.1214845239
+UniRef50_UPI0003652380: hypothetical protein|unclassified	0.1214845239
+UniRef50_Q7X3G5: Acyclic carotenoid 1,2-hydratase	0.1214808992
+UniRef50_Q7X3G5: Acyclic carotenoid 1,2-hydratase|unclassified	0.1214808992
+UniRef50_Q2J9C8: Pyoverdine biosynthesis	0.1214763307
+UniRef50_Q2J9C8: Pyoverdine biosynthesis|unclassified	0.1214763307
+UniRef50_UPI000394315E: PREDICTED: probable D-lactate dehydrogenase, mitochondrial, partial	0.1214751379
+UniRef50_UPI000394315E: PREDICTED: probable D-lactate dehydrogenase, mitochondrial, partial|unclassified	0.1214751379
+UniRef50_UPI0003B3C03B: NADPH:quinone reductase	0.1214669128
+UniRef50_UPI0003B3C03B: NADPH:quinone reductase|unclassified	0.1214669128
+UniRef50_N9AML8: Protein YibB	0.1214646526
+UniRef50_N9AML8: Protein YibB|unclassified	0.1214646526
+UniRef50_UPI0003B652E5: surfeit locus 1 family protein	0.1214603466
+UniRef50_UPI0003B652E5: surfeit locus 1 family protein|unclassified	0.1214603466
+UniRef50_Q9LBW4: 3-hexulose-6-phosphate synthase	0.1214602653
+UniRef50_Q9LBW4: 3-hexulose-6-phosphate synthase|unclassified	0.1214602653
+UniRef50_UPI000382B615: hypothetical protein	0.1214578371
+UniRef50_UPI000382B615: hypothetical protein|unclassified	0.1214578371
+UniRef50_UPI00046F011E: hypothetical protein	0.1214531265
+UniRef50_UPI00046F011E: hypothetical protein|unclassified	0.1214531265
+UniRef50_UPI00040E8B25: MULTISPECIES: hypothetical protein	0.1214515892
+UniRef50_UPI00040E8B25: MULTISPECIES: hypothetical protein|unclassified	0.1214515892
+UniRef50_UPI0002F7EB96: hypothetical protein	0.1214478519
+UniRef50_UPI0002F7EB96: hypothetical protein|unclassified	0.1214478519
+UniRef50_F0QBV6: Diguanylate cyclase	0.1214443202
+UniRef50_F0QBV6: Diguanylate cyclase|unclassified	0.1214443202
+UniRef50_H8NHM3	0.1214429793
+UniRef50_H8NHM3|unclassified	0.1214429793
+UniRef50_N1NPE8	0.1214375157
+UniRef50_N1NPE8|unclassified	0.1214375157
+UniRef50_D4TMH2: DNA repair protein radC-like protein	0.1214327091
+UniRef50_D4TMH2: DNA repair protein radC-like protein|unclassified	0.1214327091
+UniRef50_UPI0004656AF6: magnesium chelatase	0.1214281200
+UniRef50_UPI0004656AF6: magnesium chelatase|unclassified	0.1214281200
+UniRef50_UPI00046A9C57: hypothetical protein, partial	0.1214213306
+UniRef50_UPI00046A9C57: hypothetical protein, partial|unclassified	0.1214213306
+UniRef50_C8BNW5: Putative type III effector protein	0.1214180266
+UniRef50_C8BNW5: Putative type III effector protein|unclassified	0.1214180266
+UniRef50_X5PPP6	0.1214139567
+UniRef50_X5PPP6|unclassified	0.1214139567
+UniRef50_E3ZD23: Internalin A (Fragment)	0.1214135871
+UniRef50_E3ZD23: Internalin A (Fragment)|unclassified	0.1214135871
+UniRef50_UPI000470D09E: hypothetical protein	0.1214090038
+UniRef50_UPI000470D09E: hypothetical protein|unclassified	0.1214090038
+UniRef50_UPI000329BFBC: PREDICTED: vanillate O-demethylase oxidoreductase-like	0.1214039505
+UniRef50_UPI000329BFBC: PREDICTED: vanillate O-demethylase oxidoreductase-like|unclassified	0.1214039505
+UniRef50_UPI0004653C3F: hypothetical protein, partial	0.1213971964
+UniRef50_UPI0004653C3F: hypothetical protein, partial|unclassified	0.1213971964
+UniRef50_B0TIM6: D-ribose pyranase	0.1213929178
+UniRef50_B0TIM6: D-ribose pyranase|unclassified	0.1213929178
+UniRef50_Q820S3: Holliday junction ATP-dependent DNA helicase RuvA	0.1213814013
+UniRef50_Q820S3: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.1213814013
+UniRef50_B9KGP6: Protoheme IX farnesyltransferase	0.1213795187
+UniRef50_B9KGP6: Protoheme IX farnesyltransferase|unclassified	0.1213795187
+UniRef50_F2K4L3: YecA family protein	0.1213702388
+UniRef50_F2K4L3: YecA family protein|unclassified	0.1213702388
+UniRef50_UPI0003FBF87D: hypothetical protein	0.1213678248
+UniRef50_UPI0003FBF87D: hypothetical protein|unclassified	0.1213678248
+UniRef50_Q2VZB1: Oligoketide cyclase/lipid transport protein	0.1213668331
+UniRef50_Q2VZB1: Oligoketide cyclase/lipid transport protein|unclassified	0.1213668331
+UniRef50_UPI0003B64F06: ferredoxin	0.1213647799
+UniRef50_UPI0003B64F06: ferredoxin|unclassified	0.1213647799
+UniRef50_UPI000366203C: hypothetical protein	0.1213524150
+UniRef50_UPI000366203C: hypothetical protein|unclassified	0.1213524150
+UniRef50_UPI00045E4A7C: PREDICTED: proline-rich protein HaeIII subfamily 1-like	0.1213507366
+UniRef50_UPI00045E4A7C: PREDICTED: proline-rich protein HaeIII subfamily 1-like|unclassified	0.1213507366
+UniRef50_P35170: Phospho-2-dehydro-3-deoxyheptonate aldolase	0.1213449770
+UniRef50_P35170: Phospho-2-dehydro-3-deoxyheptonate aldolase|unclassified	0.1213449770
+UniRef50_B1YKT1: Ribosomal protein L11 methyltransferase	0.1213392497
+UniRef50_B1YKT1: Ribosomal protein L11 methyltransferase|unclassified	0.1213392497
+UniRef50_UPI000376AF30: hypothetical protein	0.1213324528
+UniRef50_UPI000376AF30: hypothetical protein|unclassified	0.1213324528
+UniRef50_UPI0003822288: hypothetical protein	0.1213311445
+UniRef50_UPI0003822288: hypothetical protein|unclassified	0.1213311445
+UniRef50_H0A863	0.1213284422
+UniRef50_H0A863|unclassified	0.1213284422
+UniRef50_UPI0003690A51: hypothetical protein	0.1213268515
+UniRef50_UPI0003690A51: hypothetical protein|unclassified	0.1213268515
+UniRef50_UPI0003AA0243: quinone oxidoreductase	0.1213162225
+UniRef50_UPI0003AA0243: quinone oxidoreductase|unclassified	0.1213162225
+UniRef50_UPI000466458A: DNA gyrase subunit B	0.1213134282
+UniRef50_UPI000466458A: DNA gyrase subunit B|unclassified	0.1213134282
+UniRef50_K9S6C0: Beta-Ig-H3/fasciclin	0.1213042316
+UniRef50_K9S6C0: Beta-Ig-H3/fasciclin|unclassified	0.1213042316
+UniRef50_UPI000365A6ED: hypothetical protein	0.1212854448
+UniRef50_UPI000365A6ED: hypothetical protein|unclassified	0.1212854448
+UniRef50_D7FPY9	0.1212806570
+UniRef50_D7FPY9|unclassified	0.1212806570
+UniRef50_D8U3W2: Metalloproteinase, extracellular matrix glycoprotein VMP28	0.1212773515
+UniRef50_D8U3W2: Metalloproteinase, extracellular matrix glycoprotein VMP28|unclassified	0.1212773515
+UniRef50_UPI000474B984: sugar ABC transporter ATP-binding protein	0.1212670283
+UniRef50_UPI000474B984: sugar ABC transporter ATP-binding protein|unclassified	0.1212670283
+UniRef50_UPI0003EC0186: PREDICTED: betaine aldehyde dehydrogenase-like	0.1212505153
+UniRef50_UPI0003EC0186: PREDICTED: betaine aldehyde dehydrogenase-like|unclassified	0.1212505153
+UniRef50_UPI00036D0E4D: hypothetical protein	0.1212441359
+UniRef50_UPI00036D0E4D: hypothetical protein|unclassified	0.1212441359
+UniRef50_UPI0003B74A3C: ser/threonine protein phosphatase	0.1212358845
+UniRef50_UPI0003B74A3C: ser/threonine protein phosphatase|unclassified	0.1212358845
+UniRef50_G5JQJ5	0.1212331868
+UniRef50_G5JQJ5|unclassified	0.1212331868
+UniRef50_UPI000454108F: PREDICTED: mitogen-activated protein kinase kinase kinase 19	0.1212290691
+UniRef50_UPI000454108F: PREDICTED: mitogen-activated protein kinase kinase kinase 19|unclassified	0.1212290691
+UniRef50_UPI000468714B: hypothetical protein	0.1212238408
+UniRef50_UPI000468714B: hypothetical protein|unclassified	0.1212238408
+UniRef50_UPI00036E9886: hypothetical protein	0.1212217334
+UniRef50_UPI00036E9886: hypothetical protein|unclassified	0.1212217334
+UniRef50_UPI0003BCFABD: PREDICTED: cystathionine beta-synthase-like	0.1212202423
+UniRef50_UPI0003BCFABD: PREDICTED: cystathionine beta-synthase-like|unclassified	0.1212202423
+UniRef50_A7HGV2: tRNA pseudouridine synthase D	0.1212167427
+UniRef50_A7HGV2: tRNA pseudouridine synthase D|unclassified	0.1212167427
+UniRef50_UPI00046EFFA5: hypothetical protein, partial	0.1212134207
+UniRef50_UPI00046EFFA5: hypothetical protein, partial|unclassified	0.1212134207
+UniRef50_H0DIH6	0.1212126006
+UniRef50_H0DIH6|unclassified	0.1212126006
+UniRef50_R5FR54	0.1212063685
+UniRef50_R5FR54|unclassified	0.1212063685
+UniRef50_A4IS03: S-ribosylhomocysteine lyase	0.1212036049
+UniRef50_A4IS03: S-ribosylhomocysteine lyase|unclassified	0.1212036049
+UniRef50_Q1AVY7: Dihydroorotase	0.1212034477
+UniRef50_Q1AVY7: Dihydroorotase|unclassified	0.1212034477
+UniRef50_UPI000463FB65: dehydrogenase	0.1211963484
+UniRef50_UPI000463FB65: dehydrogenase|unclassified	0.1211963484
+UniRef50_P43776: Dihydropteroate synthase	0.1211914387
+UniRef50_P43776: Dihydropteroate synthase|unclassified	0.1211914387
+UniRef50_Q15WU6	0.1211906315
+UniRef50_Q15WU6|unclassified	0.1211906315
+UniRef50_UPI00047EE3D3: hypothetical protein	0.1211890863
+UniRef50_UPI00047EE3D3: hypothetical protein|unclassified	0.1211890863
+UniRef50_A0A011NYR8	0.1211884198
+UniRef50_A0A011NYR8|unclassified	0.1211884198
+UniRef50_F8KNH0	0.1211865870
+UniRef50_F8KNH0|unclassified	0.1211865870
+UniRef50_Q3AMY6: Ribonuclease PH	0.1211840786
+UniRef50_Q3AMY6: Ribonuclease PH|unclassified	0.1211840786
+UniRef50_UPI000464111A: single-stranded DNA-binding protein, partial	0.1211790562
+UniRef50_UPI000464111A: single-stranded DNA-binding protein, partial|unclassified	0.1211790562
+UniRef50_UPI00047A4A30: hypothetical protein	0.1211732095
+UniRef50_UPI00047A4A30: hypothetical protein|unclassified	0.1211732095
+UniRef50_Q2W2A3: Holliday junction ATP-dependent DNA helicase RuvA	0.1211687844
+UniRef50_Q2W2A3: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.1211687844
+UniRef50_UPI000369A0DF: hypothetical protein	0.1211622775
+UniRef50_UPI000369A0DF: hypothetical protein|unclassified	0.1211622775
+UniRef50_B6VKX1: PvpA	0.1211581595
+UniRef50_B6VKX1: PvpA|unclassified	0.1211581595
+UniRef50_UPI000463E866: 3-demethylubiquinone-9 3-methyltransferase	0.1211547349
+UniRef50_UPI000463E866: 3-demethylubiquinone-9 3-methyltransferase|unclassified	0.1211547349
+UniRef50_UPI0003A28760: glycine cleavage system protein T	0.1211515956
+UniRef50_UPI0003A28760: glycine cleavage system protein T|unclassified	0.1211515956
+UniRef50_UPI000361FEED: hypothetical protein	0.1211429936
+UniRef50_UPI000361FEED: hypothetical protein|unclassified	0.1211429936
+UniRef50_K2F9P5	0.1211186894
+UniRef50_K2F9P5|unclassified	0.1211186894
+UniRef50_N0BCG1: Thioesterase superfamily protein	0.1211181350
+UniRef50_N0BCG1: Thioesterase superfamily protein|unclassified	0.1211181350
+UniRef50_UPI000441306E: HSP20-like chaperone	0.1211151960
+UniRef50_UPI000441306E: HSP20-like chaperone|unclassified	0.1211151960
+UniRef50_W2UZV9	0.1211029720
+UniRef50_W2UZV9|unclassified	0.1211029720
+UniRef50_A0A011NQR2: Endonuclease III	0.1210929482
+UniRef50_A0A011NQR2: Endonuclease III|unclassified	0.1210929482
+UniRef50_R6E4P6: Serine type site-specific recombinase	0.1210859369
+UniRef50_R6E4P6: Serine type site-specific recombinase|unclassified	0.1210859369
+UniRef50_W1FA81	0.1210755587
+UniRef50_W1FA81|unclassified	0.1210755587
+UniRef50_Q6N9P0	0.1210729348
+UniRef50_Q6N9P0|unclassified	0.1210729348
+UniRef50_UPI0002557A4A: hypothetical protein, partial	0.1210678236
+UniRef50_UPI0002557A4A: hypothetical protein, partial|unclassified	0.1210678236
+UniRef50_UPI0004736936: hypothetical protein, partial	0.1210665068
+UniRef50_UPI0004736936: hypothetical protein, partial|unclassified	0.1210665068
+UniRef50_UPI0003B3FFE1: zinc-binding dehydrogenase	0.1210515953
+UniRef50_UPI0003B3FFE1: zinc-binding dehydrogenase|unclassified	0.1210515953
+UniRef50_B4RXM9: Holo-[acyl-carrier-protein] synthase	0.1210474486
+UniRef50_B4RXM9: Holo-[acyl-carrier-protein] synthase|unclassified	0.1210474486
+UniRef50_UPI0003FC1C0D: sarcosine oxidase subunit delta	0.1210270057
+UniRef50_UPI0003FC1C0D: sarcosine oxidase subunit delta|unclassified	0.1210270057
+UniRef50_B9MFT0: Diaminopimelate epimerase	0.1210257893
+UniRef50_B9MFT0: Diaminopimelate epimerase|unclassified	0.1210257893
+UniRef50_UPI0004704008: hypothetical protein	0.1210233409
+UniRef50_UPI0004704008: hypothetical protein|unclassified	0.1210233409
+UniRef50_A0LC99: MazG family protein	0.1210049547
+UniRef50_A0LC99: MazG family protein|unclassified	0.1210049547
+UniRef50_UPI00036F3F50: hypothetical protein	0.1210041306
+UniRef50_UPI00036F3F50: hypothetical protein|unclassified	0.1210041306
+UniRef50_UPI00037DBCEA: hypothetical protein, partial	0.1209979996
+UniRef50_UPI00037DBCEA: hypothetical protein, partial|unclassified	0.1209979996
+UniRef50_G2IQS5: Putative esterase	0.1209835171
+UniRef50_G2IQS5: Putative esterase|unclassified	0.1209835171
+UniRef50_W4TIC1: Lysophospholipase L2	0.1209766036
+UniRef50_W4TIC1: Lysophospholipase L2|unclassified	0.1209766036
+UniRef50_G8B172	0.1209733014
+UniRef50_G8B172|unclassified	0.1209733014
+UniRef50_UPI00047C41FE: inner-membrane translocator	0.1209717053
+UniRef50_UPI00047C41FE: inner-membrane translocator|unclassified	0.1209717053
+UniRef50_H0Y9X4: Radical S-adenosyl methionine domain-containing protein 1, mitochondrial (Fragment)	0.1209706493
+UniRef50_H0Y9X4: Radical S-adenosyl methionine domain-containing protein 1, mitochondrial (Fragment)|unclassified	0.1209706493
+UniRef50_E4A1V2: Gp52	0.1209618073
+UniRef50_E4A1V2: Gp52|unclassified	0.1209618073
+UniRef50_UPI0004650CBC: hypothetical protein	0.1209569674
+UniRef50_UPI0004650CBC: hypothetical protein|unclassified	0.1209569674
+UniRef50_M6TK04	0.1209442185
+UniRef50_M6TK04|unclassified	0.1209442185
+UniRef50_UPI000429CF2B: phosphoserine phosphatase	0.1209411558
+UniRef50_UPI000429CF2B: phosphoserine phosphatase|unclassified	0.1209411558
+UniRef50_C0XT97	0.1209410070
+UniRef50_C0XT97|unclassified	0.1209410070
+UniRef50_Q83I82: Ribonuclease 3	0.1209392114
+UniRef50_Q83I82: Ribonuclease 3|unclassified	0.1209392114
+UniRef50_UPI000374124B: hypothetical protein	0.1209337440
+UniRef50_UPI000374124B: hypothetical protein|unclassified	0.1209337440
+UniRef50_UPI0003667AFE: hypothetical protein	0.1209216467
+UniRef50_UPI0003667AFE: hypothetical protein|unclassified	0.1209216467
+UniRef50_UPI0003B399BE: hypothetical protein	0.1209214575
+UniRef50_UPI0003B399BE: hypothetical protein|unclassified	0.1209214575
+UniRef50_M6TCA5: Transcriptional regulator domain protein	0.1209210906
+UniRef50_M6TCA5: Transcriptional regulator domain protein|unclassified	0.1209210906
+UniRef50_UPI00036F47A3: hypothetical protein	0.1209205647
+UniRef50_UPI00036F47A3: hypothetical protein|unclassified	0.1209205647
+UniRef50_UPI000364A7D1: hypothetical protein	0.1209136926
+UniRef50_UPI000364A7D1: hypothetical protein|unclassified	0.1209136926
+UniRef50_W8UYG9	0.1209045923
+UniRef50_W8UYG9|unclassified	0.1209045923
+UniRef50_UPI000477426C: diguanylate cyclase	0.1209019230
+UniRef50_UPI000477426C: diguanylate cyclase|unclassified	0.1209019230
+UniRef50_Q03TX3: Xylose isomerase	0.1209012467
+UniRef50_Q03TX3: Xylose isomerase|unclassified	0.1209012467
+UniRef50_G8ALV9	0.1208967374
+UniRef50_G8ALV9|unclassified	0.1208967374
+UniRef50_UPI0003B651DF: ABC transporter permease	0.1208930694
+UniRef50_UPI0003B651DF: ABC transporter permease|unclassified	0.1208930694
+UniRef50_UPI0003AA57B2: sodium:proton antiporter	0.1208848865
+UniRef50_UPI0003AA57B2: sodium:proton antiporter|unclassified	0.1208848865
+UniRef50_UPI00036E4101: hypothetical protein	0.1208846132
+UniRef50_UPI00036E4101: hypothetical protein|unclassified	0.1208846132
+UniRef50_UPI00026CB5E4: integrase	0.1208719623
+UniRef50_UPI00026CB5E4: integrase|unclassified	0.1208719623
+UniRef50_A0A017HUK9	0.1208667245
+UniRef50_A0A017HUK9|unclassified	0.1208667245
+UniRef50_UPI00046BF66F: phospho-2-dehydro-3-deoxyheptonate aldolase	0.1208659244
+UniRef50_UPI00046BF66F: phospho-2-dehydro-3-deoxyheptonate aldolase|unclassified	0.1208659244
+UniRef50_UPI000477B526: hypothetical protein	0.1208643244
+UniRef50_UPI000477B526: hypothetical protein|unclassified	0.1208643244
+UniRef50_UPI00036AAD2F: hypothetical protein, partial	0.1208496940
+UniRef50_UPI00036AAD2F: hypothetical protein, partial|unclassified	0.1208496940
+UniRef50_A0A017HJJ0	0.1208468741
+UniRef50_A0A017HJJ0|unclassified	0.1208468741
+UniRef50_UPI00036C09B6: hypothetical protein	0.1208344496
+UniRef50_UPI00036C09B6: hypothetical protein|unclassified	0.1208344496
+UniRef50_UPI000457364A: PREDICTED: fatty-acid amide hydrolase 2 isoform X1	0.1208314557
+UniRef50_UPI000457364A: PREDICTED: fatty-acid amide hydrolase 2 isoform X1|unclassified	0.1208314557
+UniRef50_A4XJ81: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	0.1208291198
+UniRef50_A4XJ81: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|unclassified	0.1208291198
+UniRef50_UPI000466FB72: nitrogen regulation protein NR(I)	0.1208201019
+UniRef50_UPI000466FB72: nitrogen regulation protein NR(I)|unclassified	0.1208201019
+UniRef50_UPI0002D4FA5D: hypothetical protein	0.1208128491
+UniRef50_UPI0002D4FA5D: hypothetical protein|unclassified	0.1208128491
+UniRef50_S9QHG5: ABC-type dipeptide transport system, periplasmic component	0.1208060035
+UniRef50_S9QHG5: ABC-type dipeptide transport system, periplasmic component|unclassified	0.1208060035
+UniRef50_H5SHT7: ABC-2 type transport system permease protein	0.1208017188
+UniRef50_H5SHT7: ABC-2 type transport system permease protein|unclassified	0.1208017188
+UniRef50_M0P4U3: AzlC family protein	0.1208011738
+UniRef50_M0P4U3: AzlC family protein|unclassified	0.1208011738
+UniRef50_A3JZP6	0.1207967585
+UniRef50_A3JZP6|unclassified	0.1207967585
+UniRef50_C5B8X4: MazG family protein	0.1207956817
+UniRef50_C5B8X4: MazG family protein|unclassified	0.1207956817
+UniRef50_UPI00036549F5: hypothetical protein	0.1207956641
+UniRef50_UPI00036549F5: hypothetical protein|unclassified	0.1207956641
+UniRef50_I8Z0P2	0.1207944025
+UniRef50_I8Z0P2|unclassified	0.1207944025
+UniRef50_D6XC51: Transcriptional regulator	0.1207878039
+UniRef50_D6XC51: Transcriptional regulator|unclassified	0.1207878039
+UniRef50_UPI00037ABD43: hypothetical protein	0.1207815131
+UniRef50_UPI00037ABD43: hypothetical protein|unclassified	0.1207815131
+UniRef50_K2JUW4	0.1207808544
+UniRef50_K2JUW4|unclassified	0.1207808544
+UniRef50_C5Q5X6: Cna protein B-type domain protein (Fragment)	0.1207757894
+UniRef50_C5Q5X6: Cna protein B-type domain protein (Fragment)|unclassified	0.1207757894
+UniRef50_Q13EK9: Endoribonuclease YbeY	0.1207735542
+UniRef50_Q13EK9: Endoribonuclease YbeY|unclassified	0.1207735542
+UniRef50_UPI000255A8EC: membrane protein	0.1207708456
+UniRef50_UPI000255A8EC: membrane protein|unclassified	0.1207708456
+UniRef50_X8EZN6: LysR substrate binding domain protein	0.1207688167
+UniRef50_X8EZN6: LysR substrate binding domain protein|unclassified	0.1207688167
+UniRef50_UPI0003B309A2: flagellin	0.1207640677
+UniRef50_UPI0003B309A2: flagellin|unclassified	0.1207640677
+UniRef50_W4X6Z1	0.1207620185
+UniRef50_W4X6Z1|unclassified	0.1207620185
+UniRef50_Q8REM9: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO	0.1207613863
+UniRef50_Q8REM9: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|unclassified	0.1207613863
+UniRef50_X6KZ16	0.1207577360
+UniRef50_X6KZ16|unclassified	0.1207577360
+UniRef50_K0YWY6	0.1207558221
+UniRef50_K0YWY6|unclassified	0.1207558221
+UniRef50_S5VYD2	0.1207409688
+UniRef50_S5VYD2|unclassified	0.1207409688
+UniRef50_Q9RXT3: Phosphoribosylformylglycinamidine synthase 1	0.1207356333
+UniRef50_Q9RXT3: Phosphoribosylformylglycinamidine synthase 1|unclassified	0.1207356333
+UniRef50_S5Y1Y1	0.1207348346
+UniRef50_S5Y1Y1|unclassified	0.1207348346
+UniRef50_UPI000410ACA5: membrane protein	0.1207309782
+UniRef50_UPI000410ACA5: membrane protein|unclassified	0.1207309782
+UniRef50_UPI0003504180: PREDICTED: translation initiation factor IF-2-like	0.1207309590
+UniRef50_UPI0003504180: PREDICTED: translation initiation factor IF-2-like|unclassified	0.1207309590
+UniRef50_UPI00036CC7E4: hypothetical protein	0.1207132070
+UniRef50_UPI00036CC7E4: hypothetical protein|unclassified	0.1207132070
+UniRef50_UPI0002559ED6: enoyl-CoA hydratase	0.1207108707
+UniRef50_UPI0002559ED6: enoyl-CoA hydratase|unclassified	0.1207108707
+UniRef50_Q2RJX2: Ribonuclease 3	0.1207023008
+UniRef50_Q2RJX2: Ribonuclease 3|unclassified	0.1207023008
+UniRef50_UPI000364A77B: hypothetical protein	0.1206996174
+UniRef50_UPI000364A77B: hypothetical protein|unclassified	0.1206996174
+UniRef50_G2DMH5	0.1206902867
+UniRef50_G2DMH5|unclassified	0.1206902867
+UniRef50_W8S2L4	0.1206838816
+UniRef50_W8S2L4|unclassified	0.1206838816
+UniRef50_UPI000471A4D9: hypothetical protein	0.1206814676
+UniRef50_UPI000471A4D9: hypothetical protein|unclassified	0.1206814676
+UniRef50_UPI0003B6BB10: shikimate dehydrogenase	0.1206779003
+UniRef50_UPI0003B6BB10: shikimate dehydrogenase|unclassified	0.1206779003
+UniRef50_UPI00036239CD: hypothetical protein	0.1206700702
+UniRef50_UPI00036239CD: hypothetical protein|unclassified	0.1206700702
+UniRef50_UPI00036C882B: cystathionine beta-lyase, partial	0.1206641365
+UniRef50_UPI00036C882B: cystathionine beta-lyase, partial|unclassified	0.1206641365
+UniRef50_UPI0003B637FE: glycerophosphoryl diester phosphodiesterase	0.1206638438
+UniRef50_UPI0003B637FE: glycerophosphoryl diester phosphodiesterase|unclassified	0.1206638438
+UniRef50_UPI00047D3690: RNA polymerase	0.1206619971
+UniRef50_UPI00047D3690: RNA polymerase|unclassified	0.1206619971
+UniRef50_I7EDS7	0.1206451112
+UniRef50_I7EDS7|unclassified	0.1206451112
+UniRef50_UPI00046D6061: hypothetical protein	0.1206411259
+UniRef50_UPI00046D6061: hypothetical protein|unclassified	0.1206411259
+UniRef50_UPI00046E6269: hypothetical protein, partial	0.1206335547
+UniRef50_UPI00046E6269: hypothetical protein, partial|unclassified	0.1206335547
+UniRef50_Q7WFR5: Ribosomal RNA small subunit methyltransferase H	0.1206251073
+UniRef50_Q7WFR5: Ribosomal RNA small subunit methyltransferase H|unclassified	0.1206251073
+UniRef50_H0UJX7: T5orf172 domain-containing protein	0.1206128217
+UniRef50_H0UJX7: T5orf172 domain-containing protein|unclassified	0.1206128217
+UniRef50_UPI00041228B4: hypothetical protein	0.1206105819
+UniRef50_UPI00041228B4: hypothetical protein|unclassified	0.1206105819
+UniRef50_UPI0003CFEAD7: hypothetical protein P148_SR1C00001G0643	0.1206097698
+UniRef50_UPI0003CFEAD7: hypothetical protein P148_SR1C00001G0643|unclassified	0.1206097698
+UniRef50_UPI00036B613D: hypothetical protein	0.1206091161
+UniRef50_UPI00036B613D: hypothetical protein|unclassified	0.1206091161
+UniRef50_H9K3J1	0.1206028022
+UniRef50_H9K3J1|unclassified	0.1206028022
+UniRef50_W6AM89	0.1205978190
+UniRef50_W6AM89|unclassified	0.1205978190
+UniRef50_UPI000365FB55: hypothetical protein	0.1205838014
+UniRef50_UPI000365FB55: hypothetical protein|unclassified	0.1205838014
+UniRef50_Q31J61: tRNA pseudouridine synthase D	0.1205797865
+UniRef50_Q31J61: tRNA pseudouridine synthase D|unclassified	0.1205797865
+UniRef50_F9M5N8: Competence protein	0.1205662350
+UniRef50_F9M5N8: Competence protein|unclassified	0.1205662350
+UniRef50_Q1AP19: ErhM	0.1205552334
+UniRef50_Q1AP19: ErhM|unclassified	0.1205552334
+UniRef50_UPI0004702F17: hypothetical protein	0.1205531049
+UniRef50_UPI0004702F17: hypothetical protein|unclassified	0.1205531049
+UniRef50_A7HFS9	0.1205498004
+UniRef50_A7HFS9|unclassified	0.1205498004
+UniRef50_E3Z4S9: Cell wall-associated protein (Fragment)	0.1205491648
+UniRef50_E3Z4S9: Cell wall-associated protein (Fragment)|unclassified	0.1205491648
+UniRef50_UPI000464DBDB: iron dicitrate transport regulator FecR	0.1205464836
+UniRef50_UPI000464DBDB: iron dicitrate transport regulator FecR|unclassified	0.1205464836
+UniRef50_UPI0003B6DB9D: anthranilate synthase subunit I	0.1205424301
+UniRef50_UPI0003B6DB9D: anthranilate synthase subunit I|unclassified	0.1205424301
+UniRef50_UPI00030C5DC3: hypothetical protein	0.1205358220
+UniRef50_UPI00030C5DC3: hypothetical protein|unclassified	0.1205358220
+UniRef50_B0X1V5: Molybdopterin synthase catalytic subunit	0.1205332023
+UniRef50_B0X1V5: Molybdopterin synthase catalytic subunit|unclassified	0.1205332023
+UniRef50_UPI0003B52A97: ribonuclease	0.1205247008
+UniRef50_UPI0003B52A97: ribonuclease|unclassified	0.1205247008
+UniRef50_R1DLE7	0.1205226191
+UniRef50_R1DLE7|unclassified	0.1205226191
+UniRef50_UPI00036605E2: hypothetical protein	0.1205214711
+UniRef50_UPI00036605E2: hypothetical protein|unclassified	0.1205214711
+UniRef50_S5SWC1: NAD(P)-binding domain-containing protein	0.1205132728
+UniRef50_S5SWC1: NAD(P)-binding domain-containing protein|unclassified	0.1205132728
+UniRef50_F2A2H2	0.1204906504
+UniRef50_F2A2H2|unclassified	0.1204906504
+UniRef50_Q8VQB0: Cytochrome c (Fragment)	0.1204849084
+UniRef50_Q8VQB0: Cytochrome c (Fragment)|unclassified	0.1204849084
+UniRef50_UPI0004666A3A: ABC transporter	0.1204804461
+UniRef50_UPI0004666A3A: ABC transporter|unclassified	0.1204804461
+UniRef50_V4T164	0.1204802002
+UniRef50_V4T164|unclassified	0.1204802002
+UniRef50_H6LP90	0.1204741983
+UniRef50_H6LP90|unclassified	0.1204741983
+UniRef50_F8IKT8	0.1204679630
+UniRef50_F8IKT8|unclassified	0.1204679630
+UniRef50_U3K4R1	0.1204649235
+UniRef50_U3K4R1|unclassified	0.1204649235
+UniRef50_Q1IZX0: NADH-quinone oxidoreductase subunit D	0.1204625577
+UniRef50_Q1IZX0: NADH-quinone oxidoreductase subunit D|unclassified	0.1204625577
+UniRef50_UPI0002624881: maleylacetoacetate isomerase	0.1204608235
+UniRef50_UPI0002624881: maleylacetoacetate isomerase|unclassified	0.1204608235
+UniRef50_E9D7A6	0.1204442396
+UniRef50_E9D7A6|unclassified	0.1204442396
+UniRef50_U4VGM5	0.1204411076
+UniRef50_U4VGM5|unclassified	0.1204411076
+UniRef50_J8UXY7: Flagellar motor protein MotA	0.1204393004
+UniRef50_J8UXY7: Flagellar motor protein MotA|unclassified	0.1204393004
+UniRef50_UPI000474C4AE: hypothetical protein, partial	0.1204331904
+UniRef50_UPI000474C4AE: hypothetical protein, partial|unclassified	0.1204331904
+UniRef50_UPI0004701FCB: formate dehydrogenase, partial	0.1204038992
+UniRef50_UPI0004701FCB: formate dehydrogenase, partial|unclassified	0.1204038992
+UniRef50_Q88WG8: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 2	0.1204038726
+UniRef50_Q88WG8: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 2|unclassified	0.1204038726
+UniRef50_UPI00025561EE: acetyl transferase	0.1203905331
+UniRef50_UPI00025561EE: acetyl transferase|unclassified	0.1203905331
+UniRef50_N6W331	0.1203896698
+UniRef50_N6W331|unclassified	0.1203896698
+UniRef50_UPI00047227EE: hypothetical protein	0.1203865745
+UniRef50_UPI00047227EE: hypothetical protein|unclassified	0.1203865745
+UniRef50_E6TTA4: Cobalt transport protein	0.1203840917
+UniRef50_E6TTA4: Cobalt transport protein|unclassified	0.1203840917
+UniRef50_UPI00037F5E94: hypothetical protein	0.1203782567
+UniRef50_UPI00037F5E94: hypothetical protein|unclassified	0.1203782567
+UniRef50_Q0JPS1: Os01g0206200 protein (Fragment)	0.1203760324
+UniRef50_Q0JPS1: Os01g0206200 protein (Fragment)|unclassified	0.1203760324
+UniRef50_UPI00036E74B5: hypothetical protein	0.1203719576
+UniRef50_UPI00036E74B5: hypothetical protein|unclassified	0.1203719576
+UniRef50_UPI000375919B: hypothetical protein	0.1203495188
+UniRef50_UPI000375919B: hypothetical protein|unclassified	0.1203495188
+UniRef50_G7UTB8	0.1203419400
+UniRef50_G7UTB8|unclassified	0.1203419400
+UniRef50_B8G2Q5: Cytidylate kinase	0.1203414788
+UniRef50_B8G2Q5: Cytidylate kinase|unclassified	0.1203414788
+UniRef50_T4W233: YopX family protein	0.1203368661
+UniRef50_T4W233: YopX family protein|unclassified	0.1203368661
+UniRef50_UPI0003B7A028: GntR family transcriptional regulator	0.1203254540
+UniRef50_UPI0003B7A028: GntR family transcriptional regulator|unclassified	0.1203254540
+UniRef50_UPI0002880DE8: glucitol operon activator	0.1203188622
+UniRef50_UPI0002880DE8: glucitol operon activator|unclassified	0.1203188622
+UniRef50_UPI0003AD1102: hypothetical protein	0.1203184847
+UniRef50_UPI0003AD1102: hypothetical protein|unclassified	0.1203184847
+UniRef50_UPI00035E0900: hypothetical protein	0.1203179988
+UniRef50_UPI00035E0900: hypothetical protein|unclassified	0.1203179988
+UniRef50_X5UQR6	0.1203133680
+UniRef50_X5UQR6|unclassified	0.1203133680
+UniRef50_V4B580	0.1203087920
+UniRef50_V4B580|unclassified	0.1203087920
+UniRef50_UPI000472FBAE: 5-methyltetrahydrofolate--homocysteine methyltransferase	0.1202979955
+UniRef50_UPI000472FBAE: 5-methyltetrahydrofolate--homocysteine methyltransferase|unclassified	0.1202979955
+UniRef50_UPI0003B44CA4: nucleoside triphosphate pyrophosphohydrolase	0.1202968419
+UniRef50_UPI0003B44CA4: nucleoside triphosphate pyrophosphohydrolase|unclassified	0.1202968419
+UniRef50_G9ADV3	0.1202965220
+UniRef50_G9ADV3|unclassified	0.1202965220
+UniRef50_UPI0004768688: LacI family transcriptional regulator	0.1202764847
+UniRef50_UPI0004768688: LacI family transcriptional regulator|unclassified	0.1202764847
+UniRef50_H0E8T1: LigA	0.1202715589
+UniRef50_H0E8T1: LigA|unclassified	0.1202715589
+UniRef50_UPI0003F63092: hypothetical protein	0.1202611640
+UniRef50_UPI0003F63092: hypothetical protein|unclassified	0.1202611640
+UniRef50_X6F1R2: Oxidoreductase	0.1202456714
+UniRef50_X6F1R2: Oxidoreductase|unclassified	0.1202456714
+UniRef50_A9V6A7: Predicted protein	0.1202319414
+UniRef50_A9V6A7: Predicted protein|unclassified	0.1202319414
+UniRef50_UPI000377791A: hypothetical protein	0.1202276046
+UniRef50_UPI000377791A: hypothetical protein|unclassified	0.1202276046
+UniRef50_UPI00039B7A7E: aldehyde-activating protein	0.1202231381
+UniRef50_UPI00039B7A7E: aldehyde-activating protein|unclassified	0.1202231381
+UniRef50_B3PD57: L-arabinose isomerase	0.1202188825
+UniRef50_B3PD57: L-arabinose isomerase|unclassified	0.1202188825
+UniRef50_UPI0004662E4F: 3-oxoacid CoA-transferase, partial	0.1202188419
+UniRef50_UPI0004662E4F: 3-oxoacid CoA-transferase, partial|unclassified	0.1202188419
+UniRef50_U5VRF9: Sex pilus assembly and synthesis protein	0.1202066425
+UniRef50_U5VRF9: Sex pilus assembly and synthesis protein|unclassified	0.1202066425
+UniRef50_UPI000471DB3E: hypothetical protein	0.1202039639
+UniRef50_UPI000471DB3E: hypothetical protein|unclassified	0.1202039639
+UniRef50_F2IW34: Thioesterase family protein	0.1202009485
+UniRef50_F2IW34: Thioesterase family protein|unclassified	0.1202009485
+UniRef50_A7ZPY3: 3-phenylpropionate/cinnamic acid dioxygenase ferredoxin subunit	0.1201981369
+UniRef50_A7ZPY3: 3-phenylpropionate/cinnamic acid dioxygenase ferredoxin subunit|unclassified	0.1201981369
+UniRef50_UPI00046F4CEB: hypothetical protein	0.1201958676
+UniRef50_UPI00046F4CEB: hypothetical protein|unclassified	0.1201958676
+UniRef50_UPI0003820F64: hypothetical protein	0.1201944550
+UniRef50_UPI0003820F64: hypothetical protein|unclassified	0.1201944550
+UniRef50_UPI000474BB14: ferredoxin oxidoreductase	0.1201890685
+UniRef50_UPI000474BB14: ferredoxin oxidoreductase|unclassified	0.1201890685
+UniRef50_X1WZE2	0.1201848364
+UniRef50_X1WZE2|unclassified	0.1201848364
+UniRef50_UPI0003B51FC9: LysR family transcriptional regulator	0.1201841390
+UniRef50_UPI0003B51FC9: LysR family transcriptional regulator|unclassified	0.1201841390
+UniRef50_F4EFP5	0.1201769517
+UniRef50_F4EFP5|unclassified	0.1201769517
+UniRef50_UPI00016C0A47: Sodium/proline symporter	0.1201676067
+UniRef50_UPI00016C0A47: Sodium/proline symporter|unclassified	0.1201676067
+UniRef50_B4RHK3	0.1201648988
+UniRef50_B4RHK3|unclassified	0.1201648988
+UniRef50_X0UC79: Marine sediment metagenome DNA, contig: S01H1_S02577 (Fragment)	0.1201594666
+UniRef50_X0UC79: Marine sediment metagenome DNA, contig: S01H1_S02577 (Fragment)|unclassified	0.1201594666
+UniRef50_UPI00046AF034: carbohydrate kinase	0.1201482642
+UniRef50_UPI00046AF034: carbohydrate kinase|unclassified	0.1201482642
+UniRef50_UPI0003B3EBD2: MarR family transcriptional regulator	0.1201401368
+UniRef50_UPI0003B3EBD2: MarR family transcriptional regulator|unclassified	0.1201401368
+UniRef50_UPI0003BB74C6: PREDICTED: lactoylglutathione lyase	0.1201295158
+UniRef50_UPI0003BB74C6: PREDICTED: lactoylglutathione lyase|unclassified	0.1201295158
+UniRef50_H8GHT7: Fe2+-dicitrate sensor, membrane component	0.1201190461
+UniRef50_H8GHT7: Fe2+-dicitrate sensor, membrane component|unclassified	0.1201190461
+UniRef50_UPI00045EC585: hypothetical protein	0.1200996107
+UniRef50_UPI00045EC585: hypothetical protein|unclassified	0.1200996107
+UniRef50_UPI00017452A7: Dihydrofolate reductase	0.1200926694
+UniRef50_UPI00017452A7: Dihydrofolate reductase|unclassified	0.1200926694
+UniRef50_UPI0002625766: hypothetical protein	0.1200914707
+UniRef50_UPI0002625766: hypothetical protein|unclassified	0.1200914707
+UniRef50_Q2N8P9: Membrane protein, putative	0.1200849585
+UniRef50_Q2N8P9: Membrane protein, putative|unclassified	0.1200849585
+UniRef50_UPI0004086366: hypothetical protein	0.1200751789
+UniRef50_UPI0004086366: hypothetical protein|unclassified	0.1200751789
+UniRef50_UPI00029D9620: PREDICTED: phosphoribosylformylglycinamidine cyclo-ligase-like	0.1200738918
+UniRef50_UPI00029D9620: PREDICTED: phosphoribosylformylglycinamidine cyclo-ligase-like|unclassified	0.1200738918
+UniRef50_UPI000473CDCF: hypothetical protein	0.1200689780
+UniRef50_UPI000473CDCF: hypothetical protein|unclassified	0.1200689780
+UniRef50_W0ZC25	0.1200645239
+UniRef50_W0ZC25|unclassified	0.1200645239
+UniRef50_K8E7P9	0.1200585463
+UniRef50_K8E7P9|unclassified	0.1200585463
+UniRef50_U1G994: Putative adhesion protein-like protein	0.1200520611
+UniRef50_U1G994: Putative adhesion protein-like protein|unclassified	0.1200520611
+UniRef50_X1FSK7: Marine sediment metagenome DNA, contig: S03H2_L05294 (Fragment)	0.1200513417
+UniRef50_X1FSK7: Marine sediment metagenome DNA, contig: S03H2_L05294 (Fragment)|unclassified	0.1200513417
+UniRef50_R6UTM8	0.1200484464
+UniRef50_R6UTM8|unclassified	0.1200484464
+UniRef50_Q9A3G6: Crossover junction endodeoxyribonuclease RuvC	0.1200449765
+UniRef50_Q9A3G6: Crossover junction endodeoxyribonuclease RuvC|unclassified	0.1200449765
+UniRef50_I6AD38: Rhodanese domain protein	0.1200421588
+UniRef50_I6AD38: Rhodanese domain protein|unclassified	0.1200421588
+UniRef50_UPI00029CCE10: 50S ribosomal protein L21, partial	0.1200416579
+UniRef50_UPI00029CCE10: 50S ribosomal protein L21, partial|unclassified	0.1200416579
+UniRef50_UPI00036A966F: hypothetical protein	0.1200407692
+UniRef50_UPI00036A966F: hypothetical protein|unclassified	0.1200407692
+UniRef50_I0HXP3	0.1200391797
+UniRef50_I0HXP3|unclassified	0.1200391797
+UniRef50_UPI000302491D: hypothetical protein	0.1200303801
+UniRef50_UPI000302491D: hypothetical protein|unclassified	0.1200303801
+UniRef50_UPI0004006422: hypothetical protein	0.1200285225
+UniRef50_UPI0004006422: hypothetical protein|unclassified	0.1200285225
+UniRef50_UPI0003B74D40: transferase	0.1200196254
+UniRef50_UPI0003B74D40: transferase|unclassified	0.1200196254
+UniRef50_E3NWX2	0.1200098848
+UniRef50_E3NWX2|unclassified	0.1200098848
+UniRef50_UPI00037F0D69: hypothetical protein	0.1200053490
+UniRef50_UPI00037F0D69: hypothetical protein|unclassified	0.1200053490
+UniRef50_UPI0001BF765C: hypothetical protein SMAC_10727, partial	0.1200003260
+UniRef50_UPI0001BF765C: hypothetical protein SMAC_10727, partial|unclassified	0.1200003260
+UniRef50_H7CR74: Internalin P4	0.1199883042
+UniRef50_H7CR74: Internalin P4|unclassified	0.1199883042
+UniRef50_UPI000476B935: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase, partial	0.1199768910
+UniRef50_UPI000476B935: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase, partial|unclassified	0.1199768910
+UniRef50_UPI000262C262: transposase	0.1199695390
+UniRef50_UPI000262C262: transposase|unclassified	0.1199695390
+UniRef50_UPI0004444F4F: PREDICTED: protamine-3	0.1199678314
+UniRef50_UPI0004444F4F: PREDICTED: protamine-3|unclassified	0.1199678314
+UniRef50_A3UK35	0.1199645377
+UniRef50_A3UK35|unclassified	0.1199645377
+UniRef50_UPI0003F4A454: hypothetical protein TREMEDRAFT_73314	0.1199638351
+UniRef50_UPI0003F4A454: hypothetical protein TREMEDRAFT_73314|unclassified	0.1199638351
+UniRef50_UPI0003B3D425: hypothetical protein	0.1199589940
+UniRef50_UPI0003B3D425: hypothetical protein|unclassified	0.1199589940
+UniRef50_Q67TP0: Vegetative cell wall protein gp1-like	0.1199546559
+UniRef50_Q67TP0: Vegetative cell wall protein gp1-like|unclassified	0.1199546559
+UniRef50_UPI000237EFC0: transposase	0.1199480318
+UniRef50_UPI000237EFC0: transposase|unclassified	0.1199480318
+UniRef50_A0A014LBA0: Transposase	0.1199465112
+UniRef50_A0A014LBA0: Transposase|unclassified	0.1199465112
+UniRef50_C9CRP0	0.1199321814
+UniRef50_C9CRP0|unclassified	0.1199321814
+UniRef50_A0A022GSW2: Sulfonate ABC transporter substrate-binding protein	0.1199263251
+UniRef50_A0A022GSW2: Sulfonate ABC transporter substrate-binding protein|unclassified	0.1199263251
+UniRef50_Q6MLR5: Ribonuclease 3	0.1199260595
+UniRef50_Q6MLR5: Ribonuclease 3|unclassified	0.1199260595
+UniRef50_I3TWX0: Cystathionine beta-synthase	0.1199171815
+UniRef50_I3TWX0: Cystathionine beta-synthase|unclassified	0.1199171815
+UniRef50_P96666	0.1198841852
+UniRef50_P96666|unclassified	0.1198841852
+UniRef50_UPI0003777932: hypothetical protein	0.1198658538
+UniRef50_UPI0003777932: hypothetical protein|unclassified	0.1198658538
+UniRef50_Q2N9S1: Probable alpha-L-glutamate ligase	0.1198657094
+UniRef50_Q2N9S1: Probable alpha-L-glutamate ligase|unclassified	0.1198657094
+UniRef50_A6FYJ0: tRNA (Ms[2]io[6]A)-hydroxylase	0.1198597527
+UniRef50_A6FYJ0: tRNA (Ms[2]io[6]A)-hydroxylase|unclassified	0.1198597527
+UniRef50_UPI0002490252: phospholipid-binding protein	0.1198582625
+UniRef50_UPI0002490252: phospholipid-binding protein|unclassified	0.1198582625
+UniRef50_UPI000440A1B8: PREDICTED: probable D-lactate dehydrogenase, mitochondrial-like	0.1198508395
+UniRef50_UPI000440A1B8: PREDICTED: probable D-lactate dehydrogenase, mitochondrial-like|unclassified	0.1198508395
+UniRef50_K9IDN1: Lactose PTS family porter repressor	0.1198359675
+UniRef50_K9IDN1: Lactose PTS family porter repressor|unclassified	0.1198359675
+UniRef50_V4P9A6	0.1198346315
+UniRef50_V4P9A6|unclassified	0.1198346315
+UniRef50_I0DVD3	0.1198344821
+UniRef50_I0DVD3|unclassified	0.1198344821
+UniRef50_UPI000472BA56: hypothetical protein, partial	0.1198297477
+UniRef50_UPI000472BA56: hypothetical protein, partial|unclassified	0.1198297477
+UniRef50_G4FCK3	0.1198291503
+UniRef50_G4FCK3|unclassified	0.1198291503
+UniRef50_K7AW96: Lipoprotein	0.1198271966
+UniRef50_K7AW96: Lipoprotein|unclassified	0.1198271966
+UniRef50_UPI000422BD2A: hypothetical protein	0.1198120872
+UniRef50_UPI000422BD2A: hypothetical protein|unclassified	0.1198120872
+UniRef50_UPI00016AAE0C: acetylpolyamine aminohydrolase	0.1198071569
+UniRef50_UPI00016AAE0C: acetylpolyamine aminohydrolase|unclassified	0.1198071569
+UniRef50_UPI0003B57C26: type I secretion protein	0.1198045470
+UniRef50_UPI0003B57C26: type I secretion protein|unclassified	0.1198045470
+UniRef50_UPI0001744332: bifunctional methionine sulfoxide reductase A/B protein	0.1197978931
+UniRef50_UPI0001744332: bifunctional methionine sulfoxide reductase A/B protein|unclassified	0.1197978931
+UniRef50_W6GK44: Transposase IS431	0.1197866826
+UniRef50_W6GK44: Transposase IS431|unclassified	0.1197866826
+UniRef50_UPI00036B6106: hypothetical protein	0.1197835434
+UniRef50_UPI00036B6106: hypothetical protein|unclassified	0.1197835434
+UniRef50_P36551: Oxygen-dependent coproporphyrinogen-III oxidase, mitochondrial	0.1197692567
+UniRef50_P36551: Oxygen-dependent coproporphyrinogen-III oxidase, mitochondrial|unclassified	0.1197692567
+UniRef50_UPI0001851242: N-acetylglucosamine-6-phosphate isomerase	0.1197579491
+UniRef50_UPI0001851242: N-acetylglucosamine-6-phosphate isomerase|unclassified	0.1197579491
+UniRef50_A5GS55	0.1197575143
+UniRef50_A5GS55|unclassified	0.1197575143
+UniRef50_I8R6Q9: Excinuclease ABC, subunit A	0.1197542841
+UniRef50_I8R6Q9: Excinuclease ABC, subunit A|unclassified	0.1197542841
+UniRef50_UPI000379C5CE: hypothetical protein	0.1197518464
+UniRef50_UPI000379C5CE: hypothetical protein|unclassified	0.1197518464
+UniRef50_S5XS61	0.1197506837
+UniRef50_S5XS61|unclassified	0.1197506837
+UniRef50_D2UBU1	0.1197479067
+UniRef50_D2UBU1|unclassified	0.1197479067
+UniRef50_UPI00040DB2E3: heme ABC transporter ATP-binding protein	0.1197473312
+UniRef50_UPI00040DB2E3: heme ABC transporter ATP-binding protein|unclassified	0.1197473312
+UniRef50_W6QTH0: Sialic acid TRAP transporter permease protein siaT	0.1197423003
+UniRef50_W6QTH0: Sialic acid TRAP transporter permease protein siaT|unclassified	0.1197423003
+UniRef50_UPI00022CA8B2: PREDICTED: diaminopimelate epimerase-like	0.1197360771
+UniRef50_UPI00022CA8B2: PREDICTED: diaminopimelate epimerase-like|unclassified	0.1197360771
+UniRef50_F7U0V8: Spermidine/putrescine import ATP-binding protein PotA	0.1197264944
+UniRef50_F7U0V8: Spermidine/putrescine import ATP-binding protein PotA|unclassified	0.1197264944
+UniRef50_UPI0004266E9B: hypothetical protein	0.1197058730
+UniRef50_UPI0004266E9B: hypothetical protein|unclassified	0.1197058730
+UniRef50_H9K6Y4	0.1197006194
+UniRef50_H9K6Y4|unclassified	0.1197006194
+UniRef50_U7HNR9	0.1197001817
+UniRef50_U7HNR9|unclassified	0.1197001817
+UniRef50_UPI000363D669: hypothetical protein	0.1196898758
+UniRef50_UPI000363D669: hypothetical protein|unclassified	0.1196898758
+UniRef50_M1V6H0	0.1196896554
+UniRef50_M1V6H0|unclassified	0.1196896554
+UniRef50_C6SMI2	0.1196786375
+UniRef50_C6SMI2|unclassified	0.1196786375
+UniRef50_V4KQV4	0.1196727395
+UniRef50_V4KQV4|unclassified	0.1196727395
+UniRef50_U3JD09	0.1196694861
+UniRef50_U3JD09|unclassified	0.1196694861
+UniRef50_U5VCJ7	0.1196609576
+UniRef50_U5VCJ7|unclassified	0.1196609576
+UniRef50_UPI00036FB25E: GMP synthase	0.1196598103
+UniRef50_UPI00036FB25E: GMP synthase|unclassified	0.1196598103
+UniRef50_UPI00036CA565: 50S ribosomal protein L4	0.1196585107
+UniRef50_UPI00036CA565: 50S ribosomal protein L4|unclassified	0.1196585107
+UniRef50_H7DAE8	0.1196539648
+UniRef50_H7DAE8|unclassified	0.1196539648
+UniRef50_Q54SE2: Peroxiredoxin-like protein DDB_G0282517, mitochondrial	0.1196463499
+UniRef50_Q54SE2: Peroxiredoxin-like protein DDB_G0282517, mitochondrial|unclassified	0.1196463499
+UniRef50_N7EGC1	0.1196451696
+UniRef50_N7EGC1|unclassified	0.1196451696
+UniRef50_F9F624	0.1196282457
+UniRef50_F9F624|unclassified	0.1196282457
+UniRef50_UPI0004651131: hypothetical protein	0.1196172446
+UniRef50_UPI0004651131: hypothetical protein|unclassified	0.1196172446
+UniRef50_F8JCZ4	0.1196067459
+UniRef50_F8JCZ4|unclassified	0.1196067459
+UniRef50_A0A022NW28	0.1196000754
+UniRef50_A0A022NW28|unclassified	0.1196000754
+UniRef50_G6ENG1: ComG operon protein 6	0.1195998003
+UniRef50_G6ENG1: ComG operon protein 6|unclassified	0.1195998003
+UniRef50_UPI0003657242: hypothetical protein	0.1195909557
+UniRef50_UPI0003657242: hypothetical protein|unclassified	0.1195909557
+UniRef50_A9FR00: Crossover junction endodeoxyribonuclease RuvC	0.1195905615
+UniRef50_A9FR00: Crossover junction endodeoxyribonuclease RuvC|unclassified	0.1195905615
+UniRef50_C5CVZ9: Phosphopantetheine-binding	0.1195680334
+UniRef50_C5CVZ9: Phosphopantetheine-binding|unclassified	0.1195680334
+UniRef50_UPI0003604B3F: hypothetical protein	0.1195581153
+UniRef50_UPI0003604B3F: hypothetical protein|unclassified	0.1195581153
+UniRef50_C2L1A1	0.1195396458
+UniRef50_C2L1A1|unclassified	0.1195396458
+UniRef50_A9CK85: Dihydroorotate dehydrogenase (quinone)	0.1195396369
+UniRef50_A9CK85: Dihydroorotate dehydrogenase (quinone)|unclassified	0.1195396369
+UniRef50_UPI000328C17B: PREDICTED: transient receptor potential cation channel subfamily M member 1	0.1195271608
+UniRef50_UPI000328C17B: PREDICTED: transient receptor potential cation channel subfamily M member 1|unclassified	0.1195271608
+UniRef50_I1F5H5	0.1195224325
+UniRef50_I1F5H5|unclassified	0.1195224325
+UniRef50_UPI00047BCB0B: hypothetical protein	0.1195216959
+UniRef50_UPI00047BCB0B: hypothetical protein|unclassified	0.1195216959
+UniRef50_E4NDX2: Putative beta-lactamase	0.1195026408
+UniRef50_E4NDX2: Putative beta-lactamase|unclassified	0.1195026408
+UniRef50_X0ZDV1: Marine sediment metagenome DNA, contig: S01H4_C05554 (Fragment)	0.1194947383
+UniRef50_X0ZDV1: Marine sediment metagenome DNA, contig: S01H4_C05554 (Fragment)|unclassified	0.1194947383
+UniRef50_UPI00047D2A46: camphor resistance protein CrcB	0.1194889205
+UniRef50_UPI00047D2A46: camphor resistance protein CrcB|unclassified	0.1194889205
+UniRef50_U6IKF5: Adenylyltransferase and sulfurtransferase	0.1194774751
+UniRef50_U6IKF5: Adenylyltransferase and sulfurtransferase|unclassified	0.1194774751
+UniRef50_W9SY31: Transcriptional regulator of acetoin catabolism,PspF-family protein	0.1194737957
+UniRef50_W9SY31: Transcriptional regulator of acetoin catabolism,PspF-family protein|unclassified	0.1194737957
+UniRef50_UPI00036FEB03: hypothetical protein	0.1194605960
+UniRef50_UPI00036FEB03: hypothetical protein|unclassified	0.1194605960
+UniRef50_UPI00037FF954: hypothetical protein	0.1194601215
+UniRef50_UPI00037FF954: hypothetical protein|unclassified	0.1194601215
+UniRef50_Q122D9: Transcriptional regulator, BadM/Rrf2 family	0.1194578923
+UniRef50_Q122D9: Transcriptional regulator, BadM/Rrf2 family|unclassified	0.1194578923
+UniRef50_UPI0001CBAA68: PREDICTED: 17-beta-hydroxysteroid dehydrogenase 13-like, partial	0.1194574787
+UniRef50_UPI0001CBAA68: PREDICTED: 17-beta-hydroxysteroid dehydrogenase 13-like, partial|unclassified	0.1194574787
+UniRef50_T7QTV8	0.1194441017
+UniRef50_T7QTV8|unclassified	0.1194441017
+UniRef50_UPI0001744A1D: biotin synthase	0.1194428180
+UniRef50_UPI0001744A1D: biotin synthase|unclassified	0.1194428180
+UniRef50_K2BYG0	0.1194408090
+UniRef50_K2BYG0|unclassified	0.1194408090
+UniRef50_A0A023P0W1	0.1194325895
+UniRef50_A0A023P0W1|unclassified	0.1194325895
+UniRef50_G6CLR5	0.1194197765
+UniRef50_G6CLR5|unclassified	0.1194197765
+UniRef50_E8MYD9: Major facilitator superfamily transporter	0.1194086163
+UniRef50_E8MYD9: Major facilitator superfamily transporter|unclassified	0.1194086163
+UniRef50_UPI000472D9DE: hypothetical protein	0.1194000675
+UniRef50_UPI000472D9DE: hypothetical protein|unclassified	0.1194000675
+UniRef50_UPI0003F0CA7D: PREDICTED: methionine--tRNA ligase, cytoplasmic-like, partial	0.1193936141
+UniRef50_UPI0003F0CA7D: PREDICTED: methionine--tRNA ligase, cytoplasmic-like, partial|unclassified	0.1193936141
+UniRef50_X1CFG7: Marine sediment metagenome DNA, contig: S01H4_S05878	0.1193936091
+UniRef50_X1CFG7: Marine sediment metagenome DNA, contig: S01H4_S05878|unclassified	0.1193936091
+UniRef50_J5Q5S2	0.1193914453
+UniRef50_J5Q5S2|unclassified	0.1193914453
+UniRef50_UPI0003F519B8: hypothetical protein	0.1193903591
+UniRef50_UPI0003F519B8: hypothetical protein|unclassified	0.1193903591
+UniRef50_K9P5C4: Growth regulator	0.1193868187
+UniRef50_K9P5C4: Growth regulator|unclassified	0.1193868187
+UniRef50_U3TSV6	0.1193770968
+UniRef50_U3TSV6|unclassified	0.1193770968
+UniRef50_I4API8: Mg-chelatase subunit ChlI	0.1193737070
+UniRef50_I4API8: Mg-chelatase subunit ChlI|unclassified	0.1193737070
+UniRef50_R7CN74	0.1193723979
+UniRef50_R7CN74|unclassified	0.1193723979
+UniRef50_Q6MEK1: Ribonuclease 3	0.1193618609
+UniRef50_Q6MEK1: Ribonuclease 3|unclassified	0.1193618609
+UniRef50_R8LDK7	0.1193526785
+UniRef50_R8LDK7|unclassified	0.1193526785
+UniRef50_Q81QB6: Methylmalonate semialdehyde dehydrogenase [acylating] 2	0.1193412972
+UniRef50_Q81QB6: Methylmalonate semialdehyde dehydrogenase [acylating] 2|unclassified	0.1193412972
+UniRef50_UPI0002DB1CFA: hypothetical protein	0.1193398239
+UniRef50_UPI0002DB1CFA: hypothetical protein|unclassified	0.1193398239
+UniRef50_UPI0003676CBF: hypothetical protein	0.1193379647
+UniRef50_UPI0003676CBF: hypothetical protein|unclassified	0.1193379647
+UniRef50_W0HYD2: Putative lipoprotein	0.1193346892
+UniRef50_W0HYD2: Putative lipoprotein|unclassified	0.1193346892
+UniRef50_UPI00047C8D08: hypothetical protein	0.1193340990
+UniRef50_UPI00047C8D08: hypothetical protein|unclassified	0.1193340990
+UniRef50_A0A032QPM3	0.1193339624
+UniRef50_A0A032QPM3|unclassified	0.1193339624
+UniRef50_UPI00047017D2: hypothetical protein	0.1193278562
+UniRef50_UPI00047017D2: hypothetical protein|unclassified	0.1193278562
+UniRef50_UPI000376D12A: hypothetical protein	0.1193262631
+UniRef50_UPI000376D12A: hypothetical protein|unclassified	0.1193262631
+UniRef50_I6F8V0	0.1193251988
+UniRef50_I6F8V0|unclassified	0.1193251988
+UniRef50_UPI000473E619: alkaline phosphatase, partial	0.1193118826
+UniRef50_UPI000473E619: alkaline phosphatase, partial|unclassified	0.1193118826
+UniRef50_UPI000379A242: hypothetical protein	0.1192989558
+UniRef50_UPI000379A242: hypothetical protein|unclassified	0.1192989558
+UniRef50_UPI00047842A9: diaminopimelate epimerase	0.1192848072
+UniRef50_UPI00047842A9: diaminopimelate epimerase|unclassified	0.1192848072
+UniRef50_C1C1P8: Proline synthetase co-transcribed bacterial homolog protein	0.1192631924
+UniRef50_C1C1P8: Proline synthetase co-transcribed bacterial homolog protein|unclassified	0.1192631924
+UniRef50_O66126: Farnesyl diphosphate synthase	0.1192470534
+UniRef50_O66126: Farnesyl diphosphate synthase|unclassified	0.1192470534
+UniRef50_UPI000366C0D7: hypothetical protein	0.1192370195
+UniRef50_UPI000366C0D7: hypothetical protein|unclassified	0.1192370195
+UniRef50_UPI00037D7A30: hypothetical protein	0.1192328186
+UniRef50_UPI00037D7A30: hypothetical protein|unclassified	0.1192328186
+UniRef50_UPI00036D110C: hypothetical protein	0.1192281038
+UniRef50_UPI00036D110C: hypothetical protein|unclassified	0.1192281038
+UniRef50_UPI0003823608: hypothetical protein	0.1192275564
+UniRef50_UPI0003823608: hypothetical protein|unclassified	0.1192275564
+UniRef50_UPI00047D10D8: xylulose kinase	0.1192255900
+UniRef50_UPI00047D10D8: xylulose kinase|unclassified	0.1192255900
+UniRef50_A3SH59	0.1192218688
+UniRef50_A3SH59|unclassified	0.1192218688
+UniRef50_E8U2Z7: Putative GAF sensor protein	0.1192141823
+UniRef50_E8U2Z7: Putative GAF sensor protein|unclassified	0.1192141823
+UniRef50_J9NVS9	0.1192023302
+UniRef50_J9NVS9|unclassified	0.1192023302
+UniRef50_O28596: Probable tRNA pseudouridine synthase D	0.1192014661
+UniRef50_O28596: Probable tRNA pseudouridine synthase D|unclassified	0.1192014661
+UniRef50_UPI00042A134A: phenazine biosynthesis protein PhzF	0.1191955178
+UniRef50_UPI00042A134A: phenazine biosynthesis protein PhzF|unclassified	0.1191955178
+UniRef50_UPI0003A61917: hypothetical protein	0.1191933485
+UniRef50_UPI0003A61917: hypothetical protein|unclassified	0.1191933485
+UniRef50_Q1IIL2: Chorismate synthase	0.1191824258
+UniRef50_Q1IIL2: Chorismate synthase|unclassified	0.1191824258
+UniRef50_A0A059DM35	0.1191743149
+UniRef50_A0A059DM35|unclassified	0.1191743149
+UniRef50_UPI0004649ADE: hypothetical protein	0.1191718700
+UniRef50_UPI0004649ADE: hypothetical protein|unclassified	0.1191718700
+UniRef50_UPI0003C1294F: PREDICTED: probable polyol transporter 3-like	0.1191708239
+UniRef50_UPI0003C1294F: PREDICTED: probable polyol transporter 3-like|unclassified	0.1191708239
+UniRef50_UPI00046CF290: molecular chaperone DnaJ, partial	0.1191694269
+UniRef50_UPI00046CF290: molecular chaperone DnaJ, partial|unclassified	0.1191694269
+UniRef50_S6GP00	0.1191630730
+UniRef50_S6GP00|unclassified	0.1191630730
+UniRef50_UPI0002D7F2D9: hypothetical protein	0.1191615162
+UniRef50_UPI0002D7F2D9: hypothetical protein|unclassified	0.1191615162
+UniRef50_Q67K77: Holo-[acyl-carrier-protein] synthase	0.1191498242
+UniRef50_Q67K77: Holo-[acyl-carrier-protein] synthase|unclassified	0.1191498242
+UniRef50_M0UCQ8	0.1191272401
+UniRef50_M0UCQ8|unclassified	0.1191272401
+UniRef50_A2C638: Holliday junction ATP-dependent DNA helicase RuvB	0.1191210648
+UniRef50_A2C638: Holliday junction ATP-dependent DNA helicase RuvB|unclassified	0.1191210648
+UniRef50_R0EVA8	0.1191126294
+UniRef50_R0EVA8|unclassified	0.1191126294
+UniRef50_UPI000262CD79: rRNA maturation factor	0.1191061086
+UniRef50_UPI000262CD79: rRNA maturation factor|unclassified	0.1191061086
+UniRef50_UPI00016B2498: polysaccharide ABC transporter ATP-binding protein	0.1191060721
+UniRef50_UPI00016B2498: polysaccharide ABC transporter ATP-binding protein|unclassified	0.1191060721
+UniRef50_Q9Z913: Putative GMP synthase [glutamine-hydrolyzing]	0.1191056189
+UniRef50_Q9Z913: Putative GMP synthase [glutamine-hydrolyzing]|unclassified	0.1191056189
+UniRef50_A4Z264: UPF0262 protein BRADO6636	0.1191017549
+UniRef50_A4Z264: UPF0262 protein BRADO6636|unclassified	0.1191017549
+UniRef50_UPI0001745B56: putative permease of ABC transporter	0.1190985933
+UniRef50_UPI0001745B56: putative permease of ABC transporter|unclassified	0.1190985933
+UniRef50_Q9Z7H0: Uridine kinase	0.1190890560
+UniRef50_Q9Z7H0: Uridine kinase|unclassified	0.1190890560
+UniRef50_K8E4H3: DnaD and phage-associated domain protein	0.1190763686
+UniRef50_K8E4H3: DnaD and phage-associated domain protein|unclassified	0.1190763686
+UniRef50_B2ULR4: Bifunctional protein PyrR	0.1190756972
+UniRef50_B2ULR4: Bifunctional protein PyrR|unclassified	0.1190756972
+UniRef50_UPI00021A5BBA: PREDICTED: spermidine synthase-like, partial	0.1190636953
+UniRef50_UPI00021A5BBA: PREDICTED: spermidine synthase-like, partial|unclassified	0.1190636953
+UniRef50_P56062: Citrate synthase	0.1190630064
+UniRef50_P56062: Citrate synthase|unclassified	0.1190630064
+UniRef50_UPI00047119E7: hypothetical protein	0.1190579842
+UniRef50_UPI00047119E7: hypothetical protein|unclassified	0.1190579842
+UniRef50_UPI00035060FA: PREDICTED: serine/arginine repetitive matrix protein 1-like isoform X3	0.1190557197
+UniRef50_UPI00035060FA: PREDICTED: serine/arginine repetitive matrix protein 1-like isoform X3|unclassified	0.1190557197
+UniRef50_UPI0002880E3C: outer membrane usher protein	0.1190545861
+UniRef50_UPI0002880E3C: outer membrane usher protein|unclassified	0.1190545861
+UniRef50_Q2LWY9: Ribonuclease H	0.1190469984
+UniRef50_Q2LWY9: Ribonuclease H|unclassified	0.1190469984
+UniRef50_UPI00047643BC: hypothetical protein	0.1190458168
+UniRef50_UPI00047643BC: hypothetical protein|unclassified	0.1190458168
+UniRef50_Q9CHX0: Release factor glutamine methyltransferase	0.1190452339
+UniRef50_Q9CHX0: Release factor glutamine methyltransferase|unclassified	0.1190452339
+UniRef50_UPI000399101D: PREDICTED: kelch domain-containing protein 7A	0.1190449199
+UniRef50_UPI000399101D: PREDICTED: kelch domain-containing protein 7A|unclassified	0.1190449199
+UniRef50_UPI0003DF7732: PREDICTED: coiled-coil domain-containing protein 39-like	0.1190334020
+UniRef50_UPI0003DF7732: PREDICTED: coiled-coil domain-containing protein 39-like|unclassified	0.1190334020
+UniRef50_UPI00037883B0: hypothetical protein, partial	0.1190224822
+UniRef50_UPI00037883B0: hypothetical protein, partial|unclassified	0.1190224822
+UniRef50_U7JQA0	0.1190208182
+UniRef50_U7JQA0|unclassified	0.1190208182
+UniRef50_UPI0002ADAD5E	0.1190156299
+UniRef50_UPI0002ADAD5E|unclassified	0.1190156299
+UniRef50_Q8UA46: Mannonate dehydratase 2	0.1190148716
+UniRef50_Q8UA46: Mannonate dehydratase 2|unclassified	0.1190148716
+UniRef50_H3LB18	0.1189953964
+UniRef50_H3LB18|unclassified	0.1189953964
+UniRef50_Q28PU9: Membrane protein involved in aromatic hydrocarbon degradation	0.1189920140
+UniRef50_Q28PU9: Membrane protein involved in aromatic hydrocarbon degradation|unclassified	0.1189920140
+UniRef50_Q4MUY4	0.1189909139
+UniRef50_Q4MUY4|unclassified	0.1189909139
+UniRef50_UPI0004695D8E: glutathione-dependent formaldehyde-activating protein	0.1189883018
+UniRef50_UPI0004695D8E: glutathione-dependent formaldehyde-activating protein|unclassified	0.1189883018
+UniRef50_UPI0003C189D4: PREDICTED: ribonucleoside-diphosphate reductase large subunit-like	0.1189842448
+UniRef50_UPI0003C189D4: PREDICTED: ribonucleoside-diphosphate reductase large subunit-like|unclassified	0.1189842448
+UniRef50_UPI0004799EB7: hypothetical protein	0.1189675976
+UniRef50_UPI0004799EB7: hypothetical protein|unclassified	0.1189675976
+UniRef50_UPI0002F817F3: hypothetical protein	0.1189590977
+UniRef50_UPI0002F817F3: hypothetical protein|unclassified	0.1189590977
+UniRef50_A4F8X7: PE-PGRS family protein	0.1189567625
+UniRef50_A4F8X7: PE-PGRS family protein|unclassified	0.1189567625
+UniRef50_B7GXW5: Poly(3-hydroxyalkanoate) depolymerase	0.1189455443
+UniRef50_B7GXW5: Poly(3-hydroxyalkanoate) depolymerase|unclassified	0.1189455443
+UniRef50_UPI00046591E2: D-mannonate oxidoreductase	0.1189387808
+UniRef50_UPI00046591E2: D-mannonate oxidoreductase|unclassified	0.1189387808
+UniRef50_F3L0R4: UPF0246 protein YaaA (Fragment)	0.1189353037
+UniRef50_F3L0R4: UPF0246 protein YaaA (Fragment)|unclassified	0.1189353037
+UniRef50_A0LUK5: Holliday junction ATP-dependent DNA helicase RuvB	0.1189259499
+UniRef50_A0LUK5: Holliday junction ATP-dependent DNA helicase RuvB|unclassified	0.1189259499
+UniRef50_UPI000362C8FC: hypothetical protein	0.1189250636
+UniRef50_UPI000362C8FC: hypothetical protein|unclassified	0.1189250636
+UniRef50_UPI0003A3B951: hypothetical protein	0.1189248038
+UniRef50_UPI0003A3B951: hypothetical protein|unclassified	0.1189248038
+UniRef50_UPI0002197320: magnesium transporter	0.1189237622
+UniRef50_UPI0002197320: magnesium transporter|unclassified	0.1189237622
+UniRef50_U5A614: Protein sprT	0.1189197716
+UniRef50_U5A614: Protein sprT|unclassified	0.1189197716
+UniRef50_M3YWL2	0.1189161932
+UniRef50_M3YWL2|unclassified	0.1189161932
+UniRef50_UPI00046F5B27: cytosine deaminase, partial	0.1188989597
+UniRef50_UPI00046F5B27: cytosine deaminase, partial|unclassified	0.1188989597
+UniRef50_A7GM37: ATP-dependent helicase/nuclease subunit A	0.1188979342
+UniRef50_A7GM37: ATP-dependent helicase/nuclease subunit A|unclassified	0.1188979342
+UniRef50_F0YRS1	0.1188978453
+UniRef50_F0YRS1|unclassified	0.1188978453
+UniRef50_H9GVL1	0.1188936481
+UniRef50_H9GVL1|unclassified	0.1188936481
+UniRef50_UPI0003710984: hypothetical protein	0.1188844559
+UniRef50_UPI0003710984: hypothetical protein|unclassified	0.1188844559
+UniRef50_UPI00047D4C07: coproporphyrinogen III oxidase	0.1188771066
+UniRef50_UPI00047D4C07: coproporphyrinogen III oxidase|unclassified	0.1188771066
+UniRef50_A1B8V9: Chromosome partitioning protein	0.1188765776
+UniRef50_A1B8V9: Chromosome partitioning protein|unclassified	0.1188765776
+UniRef50_UPI000464F527: chloroperoxidase	0.1188757465
+UniRef50_UPI000464F527: chloroperoxidase|unclassified	0.1188757465
+UniRef50_Q7U5G1: Acetolactate synthase large subunit	0.1188747559
+UniRef50_Q7U5G1: Acetolactate synthase large subunit|unclassified	0.1188747559
+UniRef50_UPI0001BF6B59: hypothetical protein SMAC_09738	0.1188601443
+UniRef50_UPI0001BF6B59: hypothetical protein SMAC_09738|unclassified	0.1188601443
+UniRef50_E0UD17: Prophage antirepressor	0.1188599407
+UniRef50_E0UD17: Prophage antirepressor|unclassified	0.1188599407
+UniRef50_H8NQW9	0.1188483424
+UniRef50_H8NQW9|unclassified	0.1188483424
+UniRef50_U5N662	0.1188299493
+UniRef50_U5N662|unclassified	0.1188299493
+UniRef50_UPI000367BC1F: hypothetical protein	0.1188299493
+UniRef50_UPI000367BC1F: hypothetical protein|unclassified	0.1188299493
+UniRef50_Q5LMW0: Ribonuclease HII	0.1188295778
+UniRef50_Q5LMW0: Ribonuclease HII|unclassified	0.1188295778
+UniRef50_K2G8W9	0.1188259254
+UniRef50_K2G8W9|unclassified	0.1188259254
+UniRef50_S9SZC4	0.1188240545
+UniRef50_S9SZC4|unclassified	0.1188240545
+UniRef50_Z5X3R4: Aconitate hydratase	0.1188184258
+UniRef50_Z5X3R4: Aconitate hydratase|unclassified	0.1188184258
+UniRef50_UPI00036DEA43: hypothetical protein	0.1188181398
+UniRef50_UPI00036DEA43: hypothetical protein|unclassified	0.1188181398
+UniRef50_G4RA98	0.1188156303
+UniRef50_G4RA98|unclassified	0.1188156303
+UniRef50_UPI0002376815: prolyl aminopeptidase, partial	0.1188123064
+UniRef50_UPI0002376815: prolyl aminopeptidase, partial|unclassified	0.1188123064
+UniRef50_V4PBE3	0.1188089381
+UniRef50_V4PBE3|unclassified	0.1188089381
+UniRef50_UPI0002378A0F: hypothetical protein	0.1188037263
+UniRef50_UPI0002378A0F: hypothetical protein|unclassified	0.1188037263
+UniRef50_E6AJM5	0.1187994685
+UniRef50_E6AJM5|unclassified	0.1187994685
+UniRef50_UPI0004781031: HAD family hydrolase	0.1187960445
+UniRef50_UPI0004781031: HAD family hydrolase|unclassified	0.1187960445
+UniRef50_Q9RU97: NADH-quinone oxidoreductase subunit K	0.1187879113
+UniRef50_Q9RU97: NADH-quinone oxidoreductase subunit K|unclassified	0.1187879113
+UniRef50_D9Y0L7: D-threo-aldose 1-dehydrogenase (Fragment)	0.1187808471
+UniRef50_D9Y0L7: D-threo-aldose 1-dehydrogenase (Fragment)|unclassified	0.1187808471
+UniRef50_B5DIK7: Acp32CD	0.1187800325
+UniRef50_B5DIK7: Acp32CD|unclassified	0.1187800325
+UniRef50_H5TGI6: Peptidase C56 family protein	0.1187744257
+UniRef50_H5TGI6: Peptidase C56 family protein|unclassified	0.1187744257
+UniRef50_UPI0003B46133: PREDICTED: coiled-coil domain-containing protein 80-like	0.1187606069
+UniRef50_UPI0003B46133: PREDICTED: coiled-coil domain-containing protein 80-like|unclassified	0.1187606069
+UniRef50_A7DZR2: Phage shock protein C (Fragment)	0.1187590334
+UniRef50_A7DZR2: Phage shock protein C (Fragment)|unclassified	0.1187590334
+UniRef50_UPI0003708B64: hypothetical protein	0.1187571016
+UniRef50_UPI0003708B64: hypothetical protein|unclassified	0.1187571016
+UniRef50_E9CQN4: Putative molybdopterin-guanine dinucleotide synthase (Fragment)	0.1187429274
+UniRef50_E9CQN4: Putative molybdopterin-guanine dinucleotide synthase (Fragment)|unclassified	0.1187429274
+UniRef50_I3ZB99: Anti-anti-sigma regulatory factor (Antagonist of anti-sigma factor)	0.1187418440
+UniRef50_I3ZB99: Anti-anti-sigma regulatory factor (Antagonist of anti-sigma factor)|unclassified	0.1187418440
+UniRef50_UPI00046BBD67: PREDICTED: synaptic vesicle membrane protein VAT-1 homolog	0.1187412842
+UniRef50_UPI00046BBD67: PREDICTED: synaptic vesicle membrane protein VAT-1 homolog|unclassified	0.1187412842
+UniRef50_R6FTX5: TM2 domain protein	0.1187281237
+UniRef50_R6FTX5: TM2 domain protein|unclassified	0.1187281237
+UniRef50_UPI0004643E21: hypothetical protein	0.1187155726
+UniRef50_UPI0004643E21: hypothetical protein|unclassified	0.1187155726
+UniRef50_E4QLW6	0.1187148807
+UniRef50_E4QLW6|unclassified	0.1187148807
+UniRef50_U2QFY3	0.1187078190
+UniRef50_U2QFY3|unclassified	0.1187078190
+UniRef50_UPI0003B4E2DA: cytochrome C, partial	0.1186975151
+UniRef50_UPI0003B4E2DA: cytochrome C, partial|unclassified	0.1186975151
+UniRef50_UPI00016A93CA: cell division protein FtsK, partial	0.1186902875
+UniRef50_UPI00016A93CA: cell division protein FtsK, partial|unclassified	0.1186902875
+UniRef50_Q3ZWQ5: Phosphopantetheine adenylyltransferase	0.1186867295
+UniRef50_Q3ZWQ5: Phosphopantetheine adenylyltransferase|unclassified	0.1186867295
+UniRef50_UPI00037FD009: hypothetical protein	0.1186813723
+UniRef50_UPI00037FD009: hypothetical protein|unclassified	0.1186813723
+UniRef50_UPI0002FF4D44: hypothetical protein	0.1186492916
+UniRef50_UPI0002FF4D44: hypothetical protein|unclassified	0.1186492916
+UniRef50_UPI0004689ED6: ferrichrome ABC transporter permease	0.1186442615
+UniRef50_UPI0004689ED6: ferrichrome ABC transporter permease|unclassified	0.1186442615
+UniRef50_UPI00037EC44A: hypothetical protein	0.1186407470
+UniRef50_UPI00037EC44A: hypothetical protein|unclassified	0.1186407470
+UniRef50_UPI0003AD44D6: hypothetical protein	0.1186376638
+UniRef50_UPI0003AD44D6: hypothetical protein|unclassified	0.1186376638
+UniRef50_UPI000476C43C: cell division protein FtsZ	0.1186304511
+UniRef50_UPI000476C43C: cell division protein FtsZ|unclassified	0.1186304511
+UniRef50_UPI0003047492: hypothetical protein	0.1186261210
+UniRef50_UPI0003047492: hypothetical protein|unclassified	0.1186261210
+UniRef50_UPI000464F624: carbonic anhydrase	0.1186251745
+UniRef50_UPI000464F624: carbonic anhydrase|unclassified	0.1186251745
+UniRef50_M9RPK0	0.1186233548
+UniRef50_M9RPK0|unclassified	0.1186233548
+UniRef50_B7L0W1: Transglutaminase domain protein	0.1186161541
+UniRef50_B7L0W1: Transglutaminase domain protein|unclassified	0.1186161541
+UniRef50_UPI0004674A22: hypothetical protein	0.1186129327
+UniRef50_UPI0004674A22: hypothetical protein|unclassified	0.1186129327
+UniRef50_UPI000479DD3D: acetylornithine deacetylase	0.1186095634
+UniRef50_UPI000479DD3D: acetylornithine deacetylase|unclassified	0.1186095634
+UniRef50_Q6G070: Phosphatidylserine decarboxylase proenzyme	0.1186094387
+UniRef50_Q6G070: Phosphatidylserine decarboxylase proenzyme|unclassified	0.1186094387
+UniRef50_UPI0002F6015E: hypothetical protein	0.1186081812
+UniRef50_UPI0002F6015E: hypothetical protein|unclassified	0.1186081812
+UniRef50_UPI0004237B2E: hypothetical protein	0.1185988272
+UniRef50_UPI0004237B2E: hypothetical protein|unclassified	0.1185988272
+UniRef50_UPI0003C143DF: PREDICTED: mitogen-activated protein kinase kinase kinase 14-like isoform X6	0.1185949623
+UniRef50_UPI0003C143DF: PREDICTED: mitogen-activated protein kinase kinase kinase 14-like isoform X6|unclassified	0.1185949623
+UniRef50_Q98EZ4: Glutamate 5-kinase 1	0.1185857746
+UniRef50_Q98EZ4: Glutamate 5-kinase 1|unclassified	0.1185857746
+UniRef50_UPI00021974F8: DeoR family transcriptional regulator	0.1185786928
+UniRef50_UPI00021974F8: DeoR family transcriptional regulator|unclassified	0.1185786928
+UniRef50_D8JRR5: Heat shock protein Hsp20	0.1185750981
+UniRef50_D8JRR5: Heat shock protein Hsp20|unclassified	0.1185750981
+UniRef50_D1ABT4: Transglutaminase domain protein	0.1185727106
+UniRef50_D1ABT4: Transglutaminase domain protein|unclassified	0.1185727106
+UniRef50_UPI00047C43B7: deoxyguanosinetriphosphate triphosphohydrolase	0.1185694630
+UniRef50_UPI00047C43B7: deoxyguanosinetriphosphate triphosphohydrolase|unclassified	0.1185694630
+UniRef50_UPI000289B3EE: succinyl-CoA:3-ketoacid-coenzyme A transferase subunit B	0.1185691042
+UniRef50_UPI000289B3EE: succinyl-CoA:3-ketoacid-coenzyme A transferase subunit B|unclassified	0.1185691042
+UniRef50_O51069: Chemotaxis protein methyltransferase	0.1185681276
+UniRef50_O51069: Chemotaxis protein methyltransferase|unclassified	0.1185681276
+UniRef50_UPI0002D60E46: hypothetical protein	0.1185670627
+UniRef50_UPI0002D60E46: hypothetical protein|unclassified	0.1185670627
+UniRef50_UPI000363AE14: hypothetical protein	0.1185620066
+UniRef50_UPI000363AE14: hypothetical protein|unclassified	0.1185620066
+UniRef50_A0A011PK79: Glucose-inhibited division protein A	0.1185560754
+UniRef50_A0A011PK79: Glucose-inhibited division protein A|unclassified	0.1185560754
+UniRef50_I6GF16: D-methionine-binding lipoprotein metQ	0.1185545247
+UniRef50_I6GF16: D-methionine-binding lipoprotein metQ|unclassified	0.1185545247
+UniRef50_UPI00047D2686: hypothetical protein	0.1185478035
+UniRef50_UPI00047D2686: hypothetical protein|unclassified	0.1185478035
+UniRef50_UPI0004671C29: calcium ABC transporter ATPase	0.1185476370
+UniRef50_UPI0004671C29: calcium ABC transporter ATPase|unclassified	0.1185476370
+UniRef50_UPI000378F310: hypothetical protein	0.1185440375
+UniRef50_UPI000378F310: hypothetical protein|unclassified	0.1185440375
+UniRef50_UPI000379FCD4: transcriptional regulator	0.1185291232
+UniRef50_UPI000379FCD4: transcriptional regulator|unclassified	0.1185291232
+UniRef50_B1J8P2: Glucose dehydrogenase-like protein	0.1185270516
+UniRef50_B1J8P2: Glucose dehydrogenase-like protein|unclassified	0.1185270516
+UniRef50_J1B8E9	0.1185237783
+UniRef50_J1B8E9|unclassified	0.1185237783
+UniRef50_UPI00037C81CE: hypothetical protein	0.1184989599
+UniRef50_UPI00037C81CE: hypothetical protein|unclassified	0.1184989599
+UniRef50_C2YJQ7: 40-residue YVTN family beta-propeller repeat protein	0.1184978236
+UniRef50_C2YJQ7: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.1184978236
+UniRef50_X8CBL8	0.1184900277
+UniRef50_X8CBL8|unclassified	0.1184900277
+UniRef50_B7GU76	0.1184878069
+UniRef50_B7GU76|unclassified	0.1184878069
+UniRef50_W0BET7	0.1184866275
+UniRef50_W0BET7|unclassified	0.1184866275
+UniRef50_UPI000463ECD6: hypothetical protein	0.1184741523
+UniRef50_UPI000463ECD6: hypothetical protein|unclassified	0.1184741523
+UniRef50_UPI0004754A11: RNA polymerase subunit sigma-24	0.1184661841
+UniRef50_UPI0004754A11: RNA polymerase subunit sigma-24|unclassified	0.1184661841
+UniRef50_UPI000415BCBB: MarR family transcriptional regulator	0.1184553599
+UniRef50_UPI000415BCBB: MarR family transcriptional regulator|unclassified	0.1184553599
+UniRef50_UPI00046E67BF: hypothetical protein	0.1184503489
+UniRef50_UPI00046E67BF: hypothetical protein|unclassified	0.1184503489
+UniRef50_R8QZ34	0.1184368885
+UniRef50_R8QZ34|unclassified	0.1184368885
+UniRef50_UPI00035F8274: hypothetical protein	0.1184278378
+UniRef50_UPI00035F8274: hypothetical protein|unclassified	0.1184278378
+UniRef50_O23255: Adenosylhomocysteinase 1	0.1184199108
+UniRef50_O23255: Adenosylhomocysteinase 1|unclassified	0.1184199108
+UniRef50_UPI0004214BAF: phospho-2-dehydro-3-deoxyheptonate aldolase	0.1184122720
+UniRef50_UPI0004214BAF: phospho-2-dehydro-3-deoxyheptonate aldolase|unclassified	0.1184122720
+UniRef50_K0T5A7	0.1184099888
+UniRef50_K0T5A7|unclassified	0.1184099888
+UniRef50_W4SKX2	0.1183939277
+UniRef50_W4SKX2|unclassified	0.1183939277
+UniRef50_UPI0001D31362: amino acid permease-associated region	0.1183884504
+UniRef50_UPI0001D31362: amino acid permease-associated region|unclassified	0.1183884504
+UniRef50_UPI00047D0EF5: alcohol dehydrogenase, partial	0.1183765360
+UniRef50_UPI00047D0EF5: alcohol dehydrogenase, partial|unclassified	0.1183765360
+UniRef50_UPI000376E02A: hypothetical protein	0.1183704774
+UniRef50_UPI000376E02A: hypothetical protein|unclassified	0.1183704774
+UniRef50_P26189: Regulatory protein ada	0.1183581223
+UniRef50_P26189: Regulatory protein ada|unclassified	0.1183581223
+UniRef50_B8J249: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.1183562657
+UniRef50_B8J249: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.1183562657
+UniRef50_UPI000364EF61: hypothetical protein	0.1183385149
+UniRef50_UPI000364EF61: hypothetical protein|unclassified	0.1183385149
+UniRef50_UPI000255D009: biotin transporter BioY	0.1183195729
+UniRef50_UPI000255D009: biotin transporter BioY|unclassified	0.1183195729
+UniRef50_B5JP00: Rrf2 family protein (Putative transcriptional regulator)	0.1183041103
+UniRef50_B5JP00: Rrf2 family protein (Putative transcriptional regulator)|unclassified	0.1183041103
+UniRef50_W1VNJ4	0.1182999058
+UniRef50_W1VNJ4|unclassified	0.1182999058
+UniRef50_Q9A2G9: Heat shock protein, Hsp20 family	0.1182966653
+UniRef50_Q9A2G9: Heat shock protein, Hsp20 family|unclassified	0.1182966653
+UniRef50_UPI000289FF2D: alcohol dehydrogenase	0.1182903640
+UniRef50_UPI000289FF2D: alcohol dehydrogenase|unclassified	0.1182903640
+UniRef50_UPI000308EC67: hypothetical protein	0.1182860465
+UniRef50_UPI000308EC67: hypothetical protein|unclassified	0.1182860465
+UniRef50_UPI0004648F01: ferrichrome ABC transporter permease	0.1182842513
+UniRef50_UPI0004648F01: ferrichrome ABC transporter permease|unclassified	0.1182842513
+UniRef50_UPI00035D78BE: hypothetical protein	0.1182814046
+UniRef50_UPI00035D78BE: hypothetical protein|unclassified	0.1182814046
+UniRef50_UPI0004631B53: hypothetical protein	0.1182799588
+UniRef50_UPI0004631B53: hypothetical protein|unclassified	0.1182799588
+UniRef50_UPI0004793EA5: hypothetical protein	0.1182353864
+UniRef50_UPI0004793EA5: hypothetical protein|unclassified	0.1182353864
+UniRef50_Q21H27	0.1182342160
+UniRef50_Q21H27|unclassified	0.1182342160
+UniRef50_J3UVY1	0.1182190203
+UniRef50_J3UVY1|unclassified	0.1182190203
+UniRef50_T2G7U7: Putative integral membrane protein MviN	0.1182189773
+UniRef50_T2G7U7: Putative integral membrane protein MviN|unclassified	0.1182189773
+UniRef50_UPI00036452A7: hypothetical protein	0.1182139503
+UniRef50_UPI00036452A7: hypothetical protein|unclassified	0.1182139503
+UniRef50_C6UDK4: Antitoxin of the YeeV-YeeU toxin-antitoxin system	0.1182002035
+UniRef50_C6UDK4: Antitoxin of the YeeV-YeeU toxin-antitoxin system|unclassified	0.1182002035
+UniRef50_UPI000289F813: pyrroloquinoline quinone biosynthesis protein PqqB	0.1181946266
+UniRef50_UPI000289F813: pyrroloquinoline quinone biosynthesis protein PqqB|unclassified	0.1181946266
+UniRef50_UPI0003658D46: hypothetical protein	0.1181934712
+UniRef50_UPI0003658D46: hypothetical protein|unclassified	0.1181934712
+UniRef50_K1ZVZ4	0.1181814489
+UniRef50_K1ZVZ4|unclassified	0.1181814489
+UniRef50_F7GDE8	0.1181781442
+UniRef50_F7GDE8|unclassified	0.1181781442
+UniRef50_G7UZQ7: Integrase core domain protein	0.1181709127
+UniRef50_G7UZQ7: Integrase core domain protein|unclassified	0.1181709127
+UniRef50_UPI00036B6846: glycerol-3-phosphate dehydrogenase	0.1181588642
+UniRef50_UPI00036B6846: glycerol-3-phosphate dehydrogenase|unclassified	0.1181588642
+UniRef50_X0RY08: Marine sediment metagenome DNA, contig: S01H1_L03204 (Fragment)	0.1181565603
+UniRef50_X0RY08: Marine sediment metagenome DNA, contig: S01H1_L03204 (Fragment)|unclassified	0.1181565603
+UniRef50_UPI00036F4CA5: hypothetical protein	0.1181558870
+UniRef50_UPI00036F4CA5: hypothetical protein|unclassified	0.1181558870
+UniRef50_UPI00035F508C: hypothetical protein	0.1181535376
+UniRef50_UPI00035F508C: hypothetical protein|unclassified	0.1181535376
+UniRef50_X0WLY9: Marine sediment metagenome DNA, contig: S01H1_S08972	0.1181533125
+UniRef50_X0WLY9: Marine sediment metagenome DNA, contig: S01H1_S08972|unclassified	0.1181533125
+UniRef50_UPI00041B2B5D: hypothetical protein	0.1181508481
+UniRef50_UPI00041B2B5D: hypothetical protein|unclassified	0.1181508481
+UniRef50_N9U3Z5	0.1181485511
+UniRef50_N9U3Z5|unclassified	0.1181485511
+UniRef50_W6IDM0	0.1181466914
+UniRef50_W6IDM0|unclassified	0.1181466914
+UniRef50_UPI00047C0BC1: ribosomal RNA large subunit methyltransferase N, partial	0.1181448475
+UniRef50_UPI00047C0BC1: ribosomal RNA large subunit methyltransferase N, partial|unclassified	0.1181448475
+UniRef50_Q02AY2: Beta-lactamase domain protein	0.1181390297
+UniRef50_Q02AY2: Beta-lactamase domain protein|unclassified	0.1181390297
+UniRef50_B7WQA6: Integrase, catalytic region	0.1181365798
+UniRef50_B7WQA6: Integrase, catalytic region|unclassified	0.1181365798
+UniRef50_UPI00036C6AF0: hypothetical protein	0.1181354619
+UniRef50_UPI00036C6AF0: hypothetical protein|unclassified	0.1181354619
+UniRef50_X1GWK8: Marine sediment metagenome DNA, contig: S03H2_S06658 (Fragment)	0.1181341478
+UniRef50_X1GWK8: Marine sediment metagenome DNA, contig: S03H2_S06658 (Fragment)|unclassified	0.1181341478
+UniRef50_B1M0V9	0.1181257715
+UniRef50_B1M0V9|unclassified	0.1181257715
+UniRef50_M5JBG9: Nucleoside-diphosphate sugar epimerase	0.1181241173
+UniRef50_M5JBG9: Nucleoside-diphosphate sugar epimerase|unclassified	0.1181241173
+UniRef50_UPI0004672B58: glycolate oxidase iron-sulfur subunit	0.1181139022
+UniRef50_UPI0004672B58: glycolate oxidase iron-sulfur subunit|unclassified	0.1181139022
+UniRef50_UPI0004164BA4: hypothetical protein	0.1181105863
+UniRef50_UPI0004164BA4: hypothetical protein|unclassified	0.1181105863
+UniRef50_UPI0003623CB6: hypothetical protein	0.1181038930
+UniRef50_UPI0003623CB6: hypothetical protein|unclassified	0.1181038930
+UniRef50_R5P601: Anthranilate synthase component II	0.1180975748
+UniRef50_R5P601: Anthranilate synthase component II|unclassified	0.1180975748
+UniRef50_UPI00037EB789: hypothetical protein	0.1180884488
+UniRef50_UPI00037EB789: hypothetical protein|unclassified	0.1180884488
+UniRef50_N0CF67	0.1180879132
+UniRef50_N0CF67|unclassified	0.1180879132
+UniRef50_UPI00036ED9BB: thymidylate synthase	0.1180851242
+UniRef50_UPI00036ED9BB: thymidylate synthase|unclassified	0.1180851242
+UniRef50_U4C1B9	0.1180836394
+UniRef50_U4C1B9|unclassified	0.1180836394
+UniRef50_UPI00040E124F: sodium:proton antiporter	0.1180712858
+UniRef50_UPI00040E124F: sodium:proton antiporter|unclassified	0.1180712858
+UniRef50_UPI0003B7A308: MarR family transcriptional regulator	0.1180667780
+UniRef50_UPI0003B7A308: MarR family transcriptional regulator|unclassified	0.1180667780
+UniRef50_F3LBJ2: TIGR01671 family protein	0.1180586514
+UniRef50_F3LBJ2: TIGR01671 family protein|unclassified	0.1180586514
+UniRef50_Q5LRL4: Outer membrane transporter, OMPP1/FadL/TodX family	0.1180527498
+UniRef50_Q5LRL4: Outer membrane transporter, OMPP1/FadL/TodX family|unclassified	0.1180527498
+UniRef50_UPI000363E08E: hypothetical protein	0.1180386120
+UniRef50_UPI000363E08E: hypothetical protein|unclassified	0.1180386120
+UniRef50_N9YTW0	0.1180368096
+UniRef50_N9YTW0|unclassified	0.1180368096
+UniRef50_M0FRQ0: Phenol hydroxylase	0.1180318102
+UniRef50_M0FRQ0: Phenol hydroxylase|unclassified	0.1180318102
+UniRef50_UPI00047099C8: hypothetical protein	0.1180306295
+UniRef50_UPI00047099C8: hypothetical protein|unclassified	0.1180306295
+UniRef50_UPI0003B4649C: TetR family transcriptional regulator	0.1180258356
+UniRef50_UPI0003B4649C: TetR family transcriptional regulator|unclassified	0.1180258356
+UniRef50_UPI0003808530: hypothetical protein	0.1180243342
+UniRef50_UPI0003808530: hypothetical protein|unclassified	0.1180243342
+UniRef50_U2QVL4	0.1180188767
+UniRef50_U2QVL4|unclassified	0.1180188767
+UniRef50_UPI00029B09D5: CRISPR-associated protein Csn1	0.1180184418
+UniRef50_UPI00029B09D5: CRISPR-associated protein Csn1|unclassified	0.1180184418
+UniRef50_UPI0003119A73: hypothetical protein	0.1180175314
+UniRef50_UPI0003119A73: hypothetical protein|unclassified	0.1180175314
+UniRef50_H6SRC9: NnrS	0.1180172277
+UniRef50_H6SRC9: NnrS|unclassified	0.1180172277
+UniRef50_Q3JTH0	0.1180121138
+UniRef50_Q3JTH0|unclassified	0.1180121138
+UniRef50_B2UMF1: 4-hydroxy-tetrahydrodipicolinate reductase	0.1180105492
+UniRef50_B2UMF1: 4-hydroxy-tetrahydrodipicolinate reductase|unclassified	0.1180105492
+UniRef50_UPI0001E89E10: glycosyl transferase group 1	0.1180100629
+UniRef50_UPI0001E89E10: glycosyl transferase group 1|unclassified	0.1180100629
+UniRef50_UPI00035F3E28: hypothetical protein	0.1180010937
+UniRef50_UPI00035F3E28: hypothetical protein|unclassified	0.1180010937
+UniRef50_E1DMV6	0.1180005603
+UniRef50_E1DMV6|unclassified	0.1180005603
+UniRef50_UPI000478E02C: hypothetical protein	0.1179961963
+UniRef50_UPI000478E02C: hypothetical protein|unclassified	0.1179961963
+UniRef50_UPI0003B70B68: hypothetical protein, partial	0.1179884234
+UniRef50_UPI0003B70B68: hypothetical protein, partial|unclassified	0.1179884234
+UniRef50_UPI0003B433F0: chromate transporter	0.1179788755
+UniRef50_UPI0003B433F0: chromate transporter|unclassified	0.1179788755
+UniRef50_UPI0003B50DA2: alkyl hydroperoxide reductase	0.1179727199
+UniRef50_UPI0003B50DA2: alkyl hydroperoxide reductase|unclassified	0.1179727199
+UniRef50_K3V7P3	0.1179672276
+UniRef50_K3V7P3|unclassified	0.1179672276
+UniRef50_D8F7U5: Conserved domain protein	0.1179587118
+UniRef50_D8F7U5: Conserved domain protein|unclassified	0.1179587118
+UniRef50_UPI0004741E58: hypothetical protein, partial	0.1179211228
+UniRef50_UPI0004741E58: hypothetical protein, partial|unclassified	0.1179211228
+UniRef50_UPI0003DE8355	0.1179107442
+UniRef50_UPI0003DE8355|unclassified	0.1179107442
+UniRef50_X4ZDM0	0.1179043344
+UniRef50_X4ZDM0|unclassified	0.1179043344
+UniRef50_X1NXQ8: Marine sediment metagenome DNA, contig: S06H3_S14032	0.1179002992
+UniRef50_X1NXQ8: Marine sediment metagenome DNA, contig: S06H3_S14032|unclassified	0.1179002992
+UniRef50_W1F253: TRAP-type C4-dicarboxylate transport system, large permease component	0.1178964925
+UniRef50_W1F253: TRAP-type C4-dicarboxylate transport system, large permease component|unclassified	0.1178964925
+UniRef50_UPI0004726F0A: hypothetical protein	0.1178946121
+UniRef50_UPI0004726F0A: hypothetical protein|unclassified	0.1178946121
+UniRef50_T0DA68	0.1178936720
+UniRef50_T0DA68|unclassified	0.1178936720
+UniRef50_Q9Y9P6	0.1178930815
+UniRef50_Q9Y9P6|unclassified	0.1178930815
+UniRef50_UPI000373141D: single-stranded DNA-binding protein	0.1178854616
+UniRef50_UPI000373141D: single-stranded DNA-binding protein|unclassified	0.1178854616
+UniRef50_A0A014P1X0	0.1178839005
+UniRef50_A0A014P1X0|unclassified	0.1178839005
+UniRef50_U4UYH8	0.1178777895
+UniRef50_U4UYH8|unclassified	0.1178777895
+UniRef50_W7U2M8	0.1178772094
+UniRef50_W7U2M8|unclassified	0.1178772094
+UniRef50_UPI00037BA794: hypothetical protein	0.1178764796
+UniRef50_UPI00037BA794: hypothetical protein|unclassified	0.1178764796
+UniRef50_H9UN03	0.1178739787
+UniRef50_H9UN03|unclassified	0.1178739787
+UniRef50_UPI000477A9F4: dehydrogenase	0.1178650465
+UniRef50_UPI000477A9F4: dehydrogenase|unclassified	0.1178650465
+UniRef50_B7JYJ9: Quinolinate synthase A	0.1178629306
+UniRef50_B7JYJ9: Quinolinate synthase A|unclassified	0.1178629306
+UniRef50_UPI000255F373: hypothetical protein	0.1178464561
+UniRef50_UPI000255F373: hypothetical protein|unclassified	0.1178464561
+UniRef50_UPI000477C8E3: electron transporter RnfB	0.1178401199
+UniRef50_UPI000477C8E3: electron transporter RnfB|unclassified	0.1178401199
+UniRef50_P37369: Superoxide dismutase [Fe]	0.1178371116
+UniRef50_P37369: Superoxide dismutase [Fe]|unclassified	0.1178371116
+UniRef50_P27747: Dihydrolipoyllysine-residue acetyltransferase component of acetoin cleaving system	0.1178168351
+UniRef50_P27747: Dihydrolipoyllysine-residue acetyltransferase component of acetoin cleaving system|unclassified	0.1178168351
+UniRef50_UPI0003672B52: hypothetical protein	0.1177934992
+UniRef50_UPI0003672B52: hypothetical protein|unclassified	0.1177934992
+UniRef50_UPI00046523D9: LuxR family transcriptional regulator	0.1177932538
+UniRef50_UPI00046523D9: LuxR family transcriptional regulator|unclassified	0.1177932538
+UniRef50_UPI0002196C98: carbamate kinase	0.1177918143
+UniRef50_UPI0002196C98: carbamate kinase|unclassified	0.1177918143
+UniRef50_Q7W4T9: Holliday junction ATP-dependent DNA helicase RuvA	0.1177799547
+UniRef50_Q7W4T9: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.1177799547
+UniRef50_Z5X4T2	0.1177698759
+UniRef50_Z5X4T2|unclassified	0.1177698759
+UniRef50_UPI000470E3CB: hypothetical protein	0.1177683565
+UniRef50_UPI000470E3CB: hypothetical protein|unclassified	0.1177683565
+UniRef50_L3TRR7	0.1177652149
+UniRef50_L3TRR7|unclassified	0.1177652149
+UniRef50_U5L7Z0	0.1177438928
+UniRef50_U5L7Z0|unclassified	0.1177438928
+UniRef50_W0BE39: Putative integral membrane protein	0.1177426895
+UniRef50_W0BE39: Putative integral membrane protein|unclassified	0.1177426895
+UniRef50_V5MEM5: Collagenase	0.1177408150
+UniRef50_V5MEM5: Collagenase|unclassified	0.1177408150
+UniRef50_UPI00016BFEF2: coproporphyrinogen III oxidase	0.1177311775
+UniRef50_UPI00016BFEF2: coproporphyrinogen III oxidase|unclassified	0.1177311775
+UniRef50_UPI000470FDE7: hypothetical protein	0.1177201055
+UniRef50_UPI000470FDE7: hypothetical protein|unclassified	0.1177201055
+UniRef50_F0J1Y6: Small heat shock protein	0.1177185919
+UniRef50_F0J1Y6: Small heat shock protein|unclassified	0.1177185919
+UniRef50_UPI0004795F7E: hypothetical protein	0.1177082821
+UniRef50_UPI0004795F7E: hypothetical protein|unclassified	0.1177082821
+UniRef50_A5CX97: Ribosomal RNA small subunit methyltransferase H	0.1177080932
+UniRef50_A5CX97: Ribosomal RNA small subunit methyltransferase H|unclassified	0.1177080932
+UniRef50_UPI0003A2516F: ferredoxin	0.1177008353
+UniRef50_UPI0003A2516F: ferredoxin|unclassified	0.1177008353
+UniRef50_UPI0004740531: hypothetical protein, partial	0.1176925715
+UniRef50_UPI0004740531: hypothetical protein, partial|unclassified	0.1176925715
+UniRef50_UPI0003B73316: TetR family transcriptional regulator	0.1176874756
+UniRef50_UPI0003B73316: TetR family transcriptional regulator|unclassified	0.1176874756
+UniRef50_UPI00035D05AC: hypothetical protein	0.1176870857
+UniRef50_UPI00035D05AC: hypothetical protein|unclassified	0.1176870857
+UniRef50_UPI00037D6194: hypothetical protein, partial	0.1176738014
+UniRef50_UPI00037D6194: hypothetical protein, partial|unclassified	0.1176738014
+UniRef50_UPI000375CF35: hypothetical protein	0.1176710937
+UniRef50_UPI000375CF35: hypothetical protein|unclassified	0.1176710937
+UniRef50_S7PS19	0.1176693107
+UniRef50_S7PS19|unclassified	0.1176693107
+UniRef50_UPI00036CA500: hypothetical protein, partial	0.1176640669
+UniRef50_UPI00036CA500: hypothetical protein, partial|unclassified	0.1176640669
+UniRef50_F8DL52: Rhodanese-like protein	0.1176634365
+UniRef50_F8DL52: Rhodanese-like protein|unclassified	0.1176634365
+UniRef50_K2FQ17	0.1176550913
+UniRef50_K2FQ17|unclassified	0.1176550913
+UniRef50_UPI000479052C: GntR family transcriptional regulator	0.1176536166
+UniRef50_UPI000479052C: GntR family transcriptional regulator|unclassified	0.1176536166
+UniRef50_UPI0003721863: hypothetical protein	0.1176501541
+UniRef50_UPI0003721863: hypothetical protein|unclassified	0.1176501541
+UniRef50_UPI00016BFC87: ribonuclease III	0.1176433556
+UniRef50_UPI00016BFC87: ribonuclease III|unclassified	0.1176433556
+UniRef50_UPI0003629D72: 4''''-phosphopantetheinyl transferase	0.1176411468
+UniRef50_UPI0003629D72: 4''''-phosphopantetheinyl transferase|unclassified	0.1176411468
+UniRef50_D0CXT7	0.1176409784
+UniRef50_D0CXT7|unclassified	0.1176409784
+UniRef50_Q2W3V9: Hydrogenase expression/formation protein hupT	0.1176355869
+UniRef50_Q2W3V9: Hydrogenase expression/formation protein hupT|unclassified	0.1176355869
+UniRef50_Q3JT09	0.1176295803
+UniRef50_Q3JT09|unclassified	0.1176295803
+UniRef50_A0A015MBX3: Reticulocyte-binding protein	0.1176283177
+UniRef50_A0A015MBX3: Reticulocyte-binding protein|unclassified	0.1176283177
+UniRef50_UPI00035DAF18: hypothetical protein	0.1176281201
+UniRef50_UPI00035DAF18: hypothetical protein|unclassified	0.1176281201
+UniRef50_UPI000422882E: short-chain dehydrogenase	0.1176275145
+UniRef50_UPI000422882E: short-chain dehydrogenase|unclassified	0.1176275145
+UniRef50_A0A017HVI1: Integral membrane protein	0.1176242628
+UniRef50_A0A017HVI1: Integral membrane protein|unclassified	0.1176242628
+UniRef50_UPI00041BC991: mechanosensitive ion channel protein MscL	0.1176232237
+UniRef50_UPI00041BC991: mechanosensitive ion channel protein MscL|unclassified	0.1176232237
+UniRef50_UPI000237EBEE: transposase IS3 family protein	0.1176137017
+UniRef50_UPI000237EBEE: transposase IS3 family protein|unclassified	0.1176137017
+UniRef50_UPI00047995E8: potassium transporter	0.1176110758
+UniRef50_UPI00047995E8: potassium transporter|unclassified	0.1176110758
+UniRef50_UPI00035F0F27: hypothetical protein	0.1176099225
+UniRef50_UPI00035F0F27: hypothetical protein|unclassified	0.1176099225
+UniRef50_UPI00047E8CB8: hypothetical protein	0.1176020774
+UniRef50_UPI00047E8CB8: hypothetical protein|unclassified	0.1176020774
+UniRef50_Q3EJQ9: Collagen adhesion protein	0.1175997453
+UniRef50_Q3EJQ9: Collagen adhesion protein|unclassified	0.1175997453
+UniRef50_M3XFR4	0.1175995859
+UniRef50_M3XFR4|unclassified	0.1175995859
+UniRef50_Q2S9Q3: Tfp pilus assembly protein PilP	0.1175974875
+UniRef50_Q2S9Q3: Tfp pilus assembly protein PilP|unclassified	0.1175974875
+UniRef50_C9M5I8: Membrane protein	0.1175968315
+UniRef50_C9M5I8: Membrane protein|unclassified	0.1175968315
+UniRef50_Q6F1J0: Adenine phosphoribosyltransferase	0.1175952949
+UniRef50_Q6F1J0: Adenine phosphoribosyltransferase|unclassified	0.1175952949
+UniRef50_UPI00046FC736: hypothetical protein	0.1175929755
+UniRef50_UPI00046FC736: hypothetical protein|unclassified	0.1175929755
+UniRef50_P54472: Putative GTP cyclohydrolase 1 type 2	0.1175900572
+UniRef50_P54472: Putative GTP cyclohydrolase 1 type 2|unclassified	0.1175900572
+UniRef50_UPI00046CCFC3	0.1175817393
+UniRef50_UPI00046CCFC3|unclassified	0.1175817393
+UniRef50_Q2LQU2: Porphobilinogen deaminase	0.1175740560
+UniRef50_Q2LQU2: Porphobilinogen deaminase|unclassified	0.1175740560
+UniRef50_V8QA83	0.1175707788
+UniRef50_V8QA83|unclassified	0.1175707788
+UniRef50_UPI0004674DF5: amino acid permease	0.1175665021
+UniRef50_UPI0004674DF5: amino acid permease|unclassified	0.1175665021
+UniRef50_B7M3G3	0.1175664178
+UniRef50_B7M3G3|unclassified	0.1175664178
+UniRef50_Q5SI49: tRNA pseudouridine synthase D	0.1175461189
+UniRef50_Q5SI49: tRNA pseudouridine synthase D|unclassified	0.1175461189
+UniRef50_K1Z6Z3	0.1175393134
+UniRef50_K1Z6Z3|unclassified	0.1175393134
+UniRef50_UPI0002E43044: hypothetical protein	0.1175351955
+UniRef50_UPI0002E43044: hypothetical protein|unclassified	0.1175351955
+UniRef50_C4KZ14: Octanoyl-[GcvH]:protein N-octanoyltransferase	0.1175346070
+UniRef50_C4KZ14: Octanoyl-[GcvH]:protein N-octanoyltransferase|unclassified	0.1175346070
+UniRef50_UPI000418217F: thiol:disulfide interchange protein	0.1175102345
+UniRef50_UPI000418217F: thiol:disulfide interchange protein|unclassified	0.1175102345
+UniRef50_K9DHZ5: Inner membrane transporter YhaO	0.1175056751
+UniRef50_K9DHZ5: Inner membrane transporter YhaO|unclassified	0.1175056751
+UniRef50_Q54QE4: Bifunctional purine synthesis protein purC/E	0.1174998897
+UniRef50_Q54QE4: Bifunctional purine synthesis protein purC/E|unclassified	0.1174998897
+UniRef50_R1F3C2	0.1174714153
+UniRef50_R1F3C2|unclassified	0.1174714153
+UniRef50_B7GQS6: Phosphoribosyl-AMP cyclohydrolase	0.1174698174
+UniRef50_B7GQS6: Phosphoribosyl-AMP cyclohydrolase|unclassified	0.1174698174
+UniRef50_Q7UF86: Ribonuclease H	0.1174691799
+UniRef50_Q7UF86: Ribonuclease H|unclassified	0.1174691799
+UniRef50_B5GV18: NAD dependent epimerase/dehydratase family protein (Fragment)	0.1174676168
+UniRef50_B5GV18: NAD dependent epimerase/dehydratase family protein (Fragment)|unclassified	0.1174676168
+UniRef50_C0QHR6: UgpB	0.1174617083
+UniRef50_C0QHR6: UgpB|unclassified	0.1174617083
+UniRef50_UPI00037402FA: hypothetical protein	0.1174609816
+UniRef50_UPI00037402FA: hypothetical protein|unclassified	0.1174609816
+UniRef50_UPI000262CDEC: ribosome maturation protein RimP	0.1174606416
+UniRef50_UPI000262CDEC: ribosome maturation protein RimP|unclassified	0.1174606416
+UniRef50_UPI0003B39917: flagellar hook-associated protein FlgK	0.1174598234
+UniRef50_UPI0003B39917: flagellar hook-associated protein FlgK|unclassified	0.1174598234
+UniRef50_UPI0003775E14: hypothetical protein	0.1174562271
+UniRef50_UPI0003775E14: hypothetical protein|unclassified	0.1174562271
+UniRef50_A1R8N0: tRNA N6-adenosine threonylcarbamoyltransferase	0.1174488066
+UniRef50_A1R8N0: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.1174488066
+UniRef50_F8XTY1	0.1174473702
+UniRef50_F8XTY1|unclassified	0.1174473702
+UniRef50_W8S326	0.1174453198
+UniRef50_W8S326|unclassified	0.1174453198
+UniRef50_F0PKX1: Membrane associated protein	0.1174426306
+UniRef50_F0PKX1: Membrane associated protein|unclassified	0.1174426306
+UniRef50_W0YWB6: Protein PelB	0.1174398121
+UniRef50_W0YWB6: Protein PelB|unclassified	0.1174398121
+UniRef50_UPI00047D4ABF: hypothetical protein	0.1174247941
+UniRef50_UPI00047D4ABF: hypothetical protein|unclassified	0.1174247941
+UniRef50_Q6NGH3: Ribonuclease 3	0.1174072545
+UniRef50_Q6NGH3: Ribonuclease 3|unclassified	0.1174072545
+UniRef50_X1UQ77: Marine sediment metagenome DNA, contig: S12H4_S05709	0.1173999320
+UniRef50_X1UQ77: Marine sediment metagenome DNA, contig: S12H4_S05709|unclassified	0.1173999320
+UniRef50_UPI0002196E5D: biotin biosynthesis protein BioY	0.1173987741
+UniRef50_UPI0002196E5D: biotin biosynthesis protein BioY|unclassified	0.1173987741
+UniRef50_UPI000471EE26: DoxX family protein	0.1173867870
+UniRef50_UPI000471EE26: DoxX family protein|unclassified	0.1173867870
+UniRef50_I1ZKN3	0.1173840325
+UniRef50_I1ZKN3|unclassified	0.1173840325
+UniRef50_Q09632	0.1173829518
+UniRef50_Q09632|unclassified	0.1173829518
+UniRef50_UPI0003705FDB: TetR family transcriptional regulator	0.1173808698
+UniRef50_UPI0003705FDB: TetR family transcriptional regulator|unclassified	0.1173808698
+UniRef50_UPI00036EF237: hypothetical protein, partial	0.1173733075
+UniRef50_UPI00036EF237: hypothetical protein, partial|unclassified	0.1173733075
+UniRef50_UPI0004689A16: hypothetical protein	0.1173627775
+UniRef50_UPI0004689A16: hypothetical protein|unclassified	0.1173627775
+UniRef50_UPI0002DF908D: hypothetical protein	0.1173533366
+UniRef50_UPI0002DF908D: hypothetical protein|unclassified	0.1173533366
+UniRef50_UPI0004666C08: LysR family transcriptional regulator, partial	0.1173374511
+UniRef50_UPI0004666C08: LysR family transcriptional regulator, partial|unclassified	0.1173374511
+UniRef50_H2CKM3	0.1173286380
+UniRef50_H2CKM3|unclassified	0.1173286380
+UniRef50_UPI0003700BA9: hypothetical protein	0.1173128894
+UniRef50_UPI0003700BA9: hypothetical protein|unclassified	0.1173128894
+UniRef50_A0LG94: Lytic transglycosylase, catalytic	0.1173089608
+UniRef50_A0LG94: Lytic transglycosylase, catalytic|unclassified	0.1173089608
+UniRef50_A9WJ95: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	0.1173089528
+UniRef50_A9WJ95: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|unclassified	0.1173089528
+UniRef50_UPI0003721231: hypothetical protein	0.1172930308
+UniRef50_UPI0003721231: hypothetical protein|unclassified	0.1172930308
+UniRef50_U0B293	0.1172882946
+UniRef50_U0B293|unclassified	0.1172882946
+UniRef50_UPI00037C2A85: hypothetical protein	0.1172876762
+UniRef50_UPI00037C2A85: hypothetical protein|unclassified	0.1172876762
+UniRef50_M5DTI1	0.1172792587
+UniRef50_M5DTI1|unclassified	0.1172792587
+UniRef50_X7EIA1	0.1172718243
+UniRef50_X7EIA1|unclassified	0.1172718243
+UniRef50_UPI0004077040: hypothetical protein	0.1172701330
+UniRef50_UPI0004077040: hypothetical protein|unclassified	0.1172701330
+UniRef50_UPI0003B6297C: MULTISPECIES: ribulose-phosphate 3-epimerase	0.1172620052
+UniRef50_UPI0003B6297C: MULTISPECIES: ribulose-phosphate 3-epimerase|unclassified	0.1172620052
+UniRef50_UPI000345F502: hypothetical protein	0.1172507814
+UniRef50_UPI000345F502: hypothetical protein|unclassified	0.1172507814
+UniRef50_A4CBF5	0.1172465327
+UniRef50_A4CBF5|unclassified	0.1172465327
+UniRef50_UPI00036C9169: hypothetical protein	0.1172455144
+UniRef50_UPI00036C9169: hypothetical protein|unclassified	0.1172455144
+UniRef50_B2S6Z5: ATP/GTP-binding site motif A (P-loop)	0.1172440479
+UniRef50_B2S6Z5: ATP/GTP-binding site motif A (P-loop)|unclassified	0.1172440479
+UniRef50_A6B8S0: Glutathione-regulated potassium-efflux system ancillary protein KefG	0.1172422758
+UniRef50_A6B8S0: Glutathione-regulated potassium-efflux system ancillary protein KefG|unclassified	0.1172422758
+UniRef50_O93627: Ribulose bisphosphate carboxylase	0.1172405003
+UniRef50_O93627: Ribulose bisphosphate carboxylase|unclassified	0.1172405003
+UniRef50_UPI0002491573: N-acylamino acid racemase	0.1172318317
+UniRef50_UPI0002491573: N-acylamino acid racemase|unclassified	0.1172318317
+UniRef50_UPI0002B93C15: Phosphopentomutase	0.1172295177
+UniRef50_UPI0002B93C15: Phosphopentomutase|unclassified	0.1172295177
+UniRef50_W4HD77: Enoyl-(Acyl-carrier-protein) reductase	0.1172224601
+UniRef50_W4HD77: Enoyl-(Acyl-carrier-protein) reductase|unclassified	0.1172224601
+UniRef50_L4XTB1	0.1172132937
+UniRef50_L4XTB1|unclassified	0.1172132937
+UniRef50_I8QY02	0.1172021569
+UniRef50_I8QY02|unclassified	0.1172021569
+UniRef50_P54391	0.1172011939
+UniRef50_P54391|unclassified	0.1172011939
+UniRef50_D5UP71: Solute-binding protein	0.1171897797
+UniRef50_D5UP71: Solute-binding protein|unclassified	0.1171897797
+UniRef50_UPI00047CB426: hypothetical protein	0.1171860931
+UniRef50_UPI00047CB426: hypothetical protein|unclassified	0.1171860931
+UniRef50_UPI00047A00D8: glutathione peroxidase	0.1171831763
+UniRef50_UPI00047A00D8: glutathione peroxidase|unclassified	0.1171831763
+UniRef50_UPI000365EE3F: hypothetical protein, partial	0.1171791066
+UniRef50_UPI000365EE3F: hypothetical protein, partial|unclassified	0.1171791066
+UniRef50_B2PW39	0.1171717241
+UniRef50_B2PW39|unclassified	0.1171717241
+UniRef50_UPI000376960F: hypothetical protein	0.1171697114
+UniRef50_UPI000376960F: hypothetical protein|unclassified	0.1171697114
+UniRef50_UPI0003762CE6: MULTISPECIES: 50S ribosomal protein L4	0.1171651612
+UniRef50_UPI0003762CE6: MULTISPECIES: 50S ribosomal protein L4|unclassified	0.1171651612
+UniRef50_A9EWC9: Probable PE_PGRS family protein	0.1171621615
+UniRef50_A9EWC9: Probable PE_PGRS family protein|unclassified	0.1171621615
+UniRef50_P45361: 3-hydroxybutyryl-CoA dehydratase (Fragment)	0.1171602103
+UniRef50_P45361: 3-hydroxybutyryl-CoA dehydratase (Fragment)|unclassified	0.1171602103
+UniRef50_UPI0002197354: uracil phosphoribosyltransferase	0.1171489326
+UniRef50_UPI0002197354: uracil phosphoribosyltransferase|unclassified	0.1171489326
+UniRef50_UPI0003B7B17E: hypothetical protein	0.1171485933
+UniRef50_UPI0003B7B17E: hypothetical protein|unclassified	0.1171485933
+UniRef50_A9U781: Predicted protein (Fragment)	0.1171473942
+UniRef50_A9U781: Predicted protein (Fragment)|unclassified	0.1171473942
+UniRef50_UPI000466CF44: hypothetical protein, partial	0.1171460384
+UniRef50_UPI000466CF44: hypothetical protein, partial|unclassified	0.1171460384
+UniRef50_UPI00031FC917: hypothetical protein	0.1171443813
+UniRef50_UPI00031FC917: hypothetical protein|unclassified	0.1171443813
+UniRef50_R9TG32	0.1171358008
+UniRef50_R9TG32|unclassified	0.1171358008
+UniRef50_I2LZL4: Transposase (Fragment)	0.1171287578
+UniRef50_I2LZL4: Transposase (Fragment)|unclassified	0.1171287578
+UniRef50_F8I6T1: Aldo/keto reductase	0.1171217376
+UniRef50_F8I6T1: Aldo/keto reductase|unclassified	0.1171217376
+UniRef50_Q4FQ44: tRNA (guanine-N(1)-)-methyltransferase	0.1171152237
+UniRef50_Q4FQ44: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.1171152237
+UniRef50_UPI00046491EF: sugar kinase	0.1171147789
+UniRef50_UPI00046491EF: sugar kinase|unclassified	0.1171147789
+UniRef50_UPI00036EFA36: hypothetical protein	0.1171000041
+UniRef50_UPI00036EFA36: hypothetical protein|unclassified	0.1171000041
+UniRef50_UPI00028857F6: menaquinone-specific isochorismate synthase	0.1170977413
+UniRef50_UPI00028857F6: menaquinone-specific isochorismate synthase|unclassified	0.1170977413
+UniRef50_UPI000399D476: hemolysin expression modulating protein	0.1170895358
+UniRef50_UPI000399D476: hemolysin expression modulating protein|unclassified	0.1170895358
+UniRef50_Q1GI58	0.1170857845
+UniRef50_Q1GI58|unclassified	0.1170857845
+UniRef50_R5PRP6	0.1170829294
+UniRef50_R5PRP6|unclassified	0.1170829294
+UniRef50_X6KZY5	0.1170784979
+UniRef50_X6KZY5|unclassified	0.1170784979
+UniRef50_UPI00037171CE: hypothetical protein, partial	0.1170783044
+UniRef50_UPI00037171CE: hypothetical protein, partial|unclassified	0.1170783044
+UniRef50_O31875: Ribonucleoside-diphosphate reductase NrdEB subunit alpha	0.1170762062
+UniRef50_O31875: Ribonucleoside-diphosphate reductase NrdEB subunit alpha|unclassified	0.1170762062
+UniRef50_UPI0004784B81: phosphoesterase	0.1170757778
+UniRef50_UPI0004784B81: phosphoesterase|unclassified	0.1170757778
+UniRef50_UPI00037F9810: hypothetical protein	0.1170567585
+UniRef50_UPI00037F9810: hypothetical protein|unclassified	0.1170567585
+UniRef50_UPI0003099509: hypothetical protein	0.1170457030
+UniRef50_UPI0003099509: hypothetical protein|unclassified	0.1170457030
+UniRef50_S4XSY7	0.1170329751
+UniRef50_S4XSY7|unclassified	0.1170329751
+UniRef50_UPI0003B48412: thiamine biosynthesis protein ThiF	0.1170179111
+UniRef50_UPI0003B48412: thiamine biosynthesis protein ThiF|unclassified	0.1170179111
+UniRef50_UPI0003785E9A: hypothetical protein	0.1170165623
+UniRef50_UPI0003785E9A: hypothetical protein|unclassified	0.1170165623
+UniRef50_X1UE99: Marine sediment metagenome DNA, contig: S12H4_S13108 (Fragment)	0.1170085230
+UniRef50_X1UE99: Marine sediment metagenome DNA, contig: S12H4_S13108 (Fragment)|unclassified	0.1170085230
+UniRef50_A9IXE5: 4-hydroxy-tetrahydrodipicolinate reductase	0.1170081752
+UniRef50_A9IXE5: 4-hydroxy-tetrahydrodipicolinate reductase|unclassified	0.1170081752
+UniRef50_UPI0003C10E99	0.1170034269
+UniRef50_UPI0003C10E99|unclassified	0.1170034269
+UniRef50_UPI000262729B: diguanylate cyclase	0.1170000973
+UniRef50_UPI000262729B: diguanylate cyclase|unclassified	0.1170000973
+UniRef50_UPI0002193DDE: ABC transporter ATP-binding protein, partial	0.1169863754
+UniRef50_UPI0002193DDE: ABC transporter ATP-binding protein, partial|unclassified	0.1169863754
+UniRef50_UPI000237D26D: XRE family transcriptional regulator	0.1169848148
+UniRef50_UPI000237D26D: XRE family transcriptional regulator|unclassified	0.1169848148
+UniRef50_UPI000225AC36: RNAse E	0.1169737021
+UniRef50_UPI000225AC36: RNAse E|unclassified	0.1169737021
+UniRef50_X3EWC3	0.1169732548
+UniRef50_X3EWC3|unclassified	0.1169732548
+UniRef50_B9G9Z4	0.1169627907
+UniRef50_B9G9Z4|unclassified	0.1169627907
+UniRef50_G9ZZD9	0.1169622416
+UniRef50_G9ZZD9|unclassified	0.1169622416
+UniRef50_UPI000363A9F6: alcohol dehydrogenase	0.1169595139
+UniRef50_UPI000363A9F6: alcohol dehydrogenase|unclassified	0.1169595139
+UniRef50_X7EA08	0.1169512264
+UniRef50_X7EA08|unclassified	0.1169512264
+UniRef50_B4RF27	0.1169463868
+UniRef50_B4RF27|unclassified	0.1169463868
+UniRef50_UPI00025562E9: transcription-repair coupling factor, partial	0.1169455813
+UniRef50_UPI00025562E9: transcription-repair coupling factor, partial|unclassified	0.1169455813
+UniRef50_UPI0003807C57: hypothetical protein	0.1169424075
+UniRef50_UPI0003807C57: hypothetical protein|unclassified	0.1169424075
+UniRef50_B6BB82	0.1169393486
+UniRef50_B6BB82|unclassified	0.1169393486
+UniRef50_UPI0003827792: hypothetical protein	0.1169344425
+UniRef50_UPI0003827792: hypothetical protein|unclassified	0.1169344425
+UniRef50_R8BTP6	0.1169266762
+UniRef50_R8BTP6|unclassified	0.1169266762
+UniRef50_UPI000263088A: diguanylate cyclase	0.1169249048
+UniRef50_UPI000263088A: diguanylate cyclase|unclassified	0.1169249048
+UniRef50_G2TCY0: Ethanolamine utilization protein EutJ	0.1169199321
+UniRef50_G2TCY0: Ethanolamine utilization protein EutJ|unclassified	0.1169199321
+UniRef50_UPI00016B263F: molecular chaperone GroEL	0.1169119095
+UniRef50_UPI00016B263F: molecular chaperone GroEL|unclassified	0.1169119095
+UniRef50_UPI0004169BE3: ribonuclease	0.1168884949
+UniRef50_UPI0004169BE3: ribonuclease|unclassified	0.1168884949
+UniRef50_UPI00047675B7: iron ABC transporter	0.1168881255
+UniRef50_UPI00047675B7: iron ABC transporter|unclassified	0.1168881255
+UniRef50_Q0QEP2: ATP synthase subunit beta, mitochondrial (Fragment)	0.1168878376
+UniRef50_Q0QEP2: ATP synthase subunit beta, mitochondrial (Fragment)|unclassified	0.1168878376
+UniRef50_D4GDQ1: YgdR	0.1168792111
+UniRef50_D4GDQ1: YgdR|unclassified	0.1168792111
+UniRef50_UPI000475E9ED: ABC transporter	0.1168704782
+UniRef50_UPI000475E9ED: ABC transporter|unclassified	0.1168704782
+UniRef50_UPI00046CABE9: hypothetical protein	0.1168661468
+UniRef50_UPI00046CABE9: hypothetical protein|unclassified	0.1168661468
+UniRef50_A9WCK1: Forkhead-associated protein	0.1168621094
+UniRef50_A9WCK1: Forkhead-associated protein|unclassified	0.1168621094
+UniRef50_I4BF20	0.1168525168
+UniRef50_I4BF20|unclassified	0.1168525168
+UniRef50_G2Q5T8	0.1168410320
+UniRef50_G2Q5T8|unclassified	0.1168410320
+UniRef50_Q92V09: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase 2	0.1168383390
+UniRef50_Q92V09: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase 2|unclassified	0.1168383390
+UniRef50_Q183T0: Bifunctional phosphonoacetaldehyde hydrolase/aminoethylphosphonate transaminase	0.1168309396
+UniRef50_Q183T0: Bifunctional phosphonoacetaldehyde hydrolase/aminoethylphosphonate transaminase|unclassified	0.1168309396
+UniRef50_A9BJV3: UDP-N-acetylenolpyruvoylglucosamine reductase	0.1168273148
+UniRef50_A9BJV3: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.1168273148
+UniRef50_UPI0003B3F83E: ModE family transcriptional regulator	0.1168260134
+UniRef50_UPI0003B3F83E: ModE family transcriptional regulator|unclassified	0.1168260134
+UniRef50_W5XE90: Serine/threonine protein kinase	0.1168197890
+UniRef50_W5XE90: Serine/threonine protein kinase|unclassified	0.1168197890
+UniRef50_F0VPM3	0.1168184541
+UniRef50_F0VPM3|unclassified	0.1168184541
+UniRef50_UPI0003661C1B: hypothetical protein	0.1168135867
+UniRef50_UPI0003661C1B: hypothetical protein|unclassified	0.1168135867
+UniRef50_UPI00037BB32E: hypothetical protein	0.1168077973
+UniRef50_UPI00037BB32E: hypothetical protein|unclassified	0.1168077973
+UniRef50_UPI0003B30136: calcium sensor EFh	0.1168025620
+UniRef50_UPI0003B30136: calcium sensor EFh|unclassified	0.1168025620
+UniRef50_A1TYH9	0.1168016299
+UniRef50_A1TYH9|unclassified	0.1168016299
+UniRef50_D1AEJ5: Transcriptional regulator, HxlR family	0.1167594255
+UniRef50_D1AEJ5: Transcriptional regulator, HxlR family|unclassified	0.1167594255
+UniRef50_J7QH11	0.1167517475
+UniRef50_J7QH11|unclassified	0.1167517475
+UniRef50_P54610: Homocitrate synthase	0.1167509552
+UniRef50_P54610: Homocitrate synthase|unclassified	0.1167509552
+UniRef50_UPI0003781064: hypothetical protein	0.1167460353
+UniRef50_UPI0003781064: hypothetical protein|unclassified	0.1167460353
+UniRef50_E1VNH4	0.1167459902
+UniRef50_E1VNH4|unclassified	0.1167459902
+UniRef50_U3K301	0.1167364333
+UniRef50_U3K301|unclassified	0.1167364333
+UniRef50_UPI00036E6452: hypothetical protein	0.1167283132
+UniRef50_UPI00036E6452: hypothetical protein|unclassified	0.1167283132
+UniRef50_UPI00035D0403: hypothetical protein	0.1167225419
+UniRef50_UPI00035D0403: hypothetical protein|unclassified	0.1167225419
+UniRef50_Q03Q51: Phosphopentomutase	0.1167172626
+UniRef50_Q03Q51: Phosphopentomutase|unclassified	0.1167172626
+UniRef50_UPI0003065169: hypothetical protein	0.1167168902
+UniRef50_UPI0003065169: hypothetical protein|unclassified	0.1167168902
+UniRef50_UPI000371DB11: hypothetical protein	0.1167151620
+UniRef50_UPI000371DB11: hypothetical protein|unclassified	0.1167151620
+UniRef50_A0A026XM12	0.1167133520
+UniRef50_A0A026XM12|unclassified	0.1167133520
+UniRef50_UPI0004683656: aspartate aminotransferase	0.1167051305
+UniRef50_UPI0004683656: aspartate aminotransferase|unclassified	0.1167051305
+UniRef50_K5BU84	0.1166988502
+UniRef50_K5BU84|unclassified	0.1166988502
+UniRef50_UPI000371E9AF: hypothetical protein, partial	0.1166877851
+UniRef50_UPI000371E9AF: hypothetical protein, partial|unclassified	0.1166877851
+UniRef50_O67691: Phosphoribosylformylglycinamidine synthase 2	0.1166764067
+UniRef50_O67691: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.1166764067
+UniRef50_UPI00046405CC: MULTISPECIES: hypothetical protein	0.1166715941
+UniRef50_UPI00046405CC: MULTISPECIES: hypothetical protein|unclassified	0.1166715941
+UniRef50_UPI00047598BE: MFS transporter	0.1166638246
+UniRef50_UPI00047598BE: MFS transporter|unclassified	0.1166638246
+UniRef50_UPI0002FF342B: hypothetical protein	0.1166569474
+UniRef50_UPI0002FF342B: hypothetical protein|unclassified	0.1166569474
+UniRef50_UPI0003B3062B: hypothetical protein	0.1166539186
+UniRef50_UPI0003B3062B: hypothetical protein|unclassified	0.1166539186
+UniRef50_UPI0002889BF9: ATPase AAA, partial	0.1166481871
+UniRef50_UPI0002889BF9: ATPase AAA, partial|unclassified	0.1166481871
+UniRef50_T0BAQ6: SPP1 family phage head morphogenesis protein	0.1166475954
+UniRef50_T0BAQ6: SPP1 family phage head morphogenesis protein|unclassified	0.1166475954
+UniRef50_G2PFD3	0.1166465954
+UniRef50_G2PFD3|unclassified	0.1166465954
+UniRef50_C6BUI7: Phosphoglycerate kinase	0.1166400028
+UniRef50_C6BUI7: Phosphoglycerate kinase|unclassified	0.1166400028
+UniRef50_UPI0004637872: hypothetical protein, partial	0.1166389505
+UniRef50_UPI0004637872: hypothetical protein, partial|unclassified	0.1166389505
+UniRef50_L8E5L1: Mitochondrial import inner membrane translocase subunit TIM50-B	0.1166261525
+UniRef50_L8E5L1: Mitochondrial import inner membrane translocase subunit TIM50-B|unclassified	0.1166261525
+UniRef50_F6GCA1: LemA family protein	0.1166152156
+UniRef50_F6GCA1: LemA family protein|unclassified	0.1166152156
+UniRef50_UPI00047609A3: hypothetical protein	0.1166114470
+UniRef50_UPI00047609A3: hypothetical protein|unclassified	0.1166114470
+UniRef50_B0RI14: Putative integral membrane protein	0.1166053715
+UniRef50_B0RI14: Putative integral membrane protein|unclassified	0.1166053715
+UniRef50_U2R557: Raf-like protein	0.1166041920
+UniRef50_U2R557: Raf-like protein|unclassified	0.1166041920
+UniRef50_UPI00035E6FC6: hemolysin D	0.1165959713
+UniRef50_UPI00035E6FC6: hemolysin D|unclassified	0.1165959713
+UniRef50_Q8YAM6: ATP synthase subunit beta 1	0.1165864042
+UniRef50_Q8YAM6: ATP synthase subunit beta 1|unclassified	0.1165864042
+UniRef50_E8NIV6: Sel1	0.1165810236
+UniRef50_E8NIV6: Sel1|unclassified	0.1165810236
+UniRef50_UPI00047D5ABB: hypothetical protein	0.1165799330
+UniRef50_UPI00047D5ABB: hypothetical protein|unclassified	0.1165799330
+UniRef50_UPI0002EDDB23: hypothetical protein	0.1165705240
+UniRef50_UPI0002EDDB23: hypothetical protein|unclassified	0.1165705240
+UniRef50_A0A021VRI7	0.1165639246
+UniRef50_A0A021VRI7|unclassified	0.1165639246
+UniRef50_UPI0002652B07: PREDICTED: cationic amino acid transporter 3-like	0.1165638609
+UniRef50_UPI0002652B07: PREDICTED: cationic amino acid transporter 3-like|unclassified	0.1165638609
+UniRef50_UPI0003804921: hypothetical protein	0.1165519194
+UniRef50_UPI0003804921: hypothetical protein|unclassified	0.1165519194
+UniRef50_UPI0003F9230C: GntR family transcriptional regulator	0.1165516961
+UniRef50_UPI0003F9230C: GntR family transcriptional regulator|unclassified	0.1165516961
+UniRef50_UPI00037A3AE6: hypothetical protein	0.1165514792
+UniRef50_UPI00037A3AE6: hypothetical protein|unclassified	0.1165514792
+UniRef50_UPI0003820CC8: hypothetical protein	0.1165498631
+UniRef50_UPI0003820CC8: hypothetical protein|unclassified	0.1165498631
+UniRef50_UPI0003B396DC: homocysteine methyltransferase	0.1165338403
+UniRef50_UPI0003B396DC: homocysteine methyltransferase|unclassified	0.1165338403
+UniRef50_UPI000470681A: hypothetical protein	0.1165298967
+UniRef50_UPI000470681A: hypothetical protein|unclassified	0.1165298967
+UniRef50_R6CU36	0.1165172130
+UniRef50_R6CU36|unclassified	0.1165172130
+UniRef50_W4HNS9: SMP-30/gluconolaconase/LRE-like region	0.1165051147
+UniRef50_W4HNS9: SMP-30/gluconolaconase/LRE-like region|unclassified	0.1165051147
+UniRef50_W4QZW3: Stage IV sporulation protein B	0.1164923368
+UniRef50_W4QZW3: Stage IV sporulation protein B|unclassified	0.1164923368
+UniRef50_UPI00030F8C02: hypothetical protein	0.1164877148
+UniRef50_UPI00030F8C02: hypothetical protein|unclassified	0.1164877148
+UniRef50_UPI000366EC17: hypothetical protein	0.1164772244
+UniRef50_UPI000366EC17: hypothetical protein|unclassified	0.1164772244
+UniRef50_G8PPI1: Short chain dehydrogenase	0.1164730784
+UniRef50_G8PPI1: Short chain dehydrogenase|unclassified	0.1164730784
+UniRef50_UPI00036CEA65: hypothetical protein	0.1164689767
+UniRef50_UPI00036CEA65: hypothetical protein|unclassified	0.1164689767
+UniRef50_UPI00037DDE2A: hypothetical protein	0.1164518435
+UniRef50_UPI00037DDE2A: hypothetical protein|unclassified	0.1164518435
+UniRef50_V4QDJ7: Multidrug transporter	0.1164339284
+UniRef50_V4QDJ7: Multidrug transporter|unclassified	0.1164339284
+UniRef50_UPI0003B30607: transcriptional regulator	0.1164327101
+UniRef50_UPI0003B30607: transcriptional regulator|unclassified	0.1164327101
+UniRef50_R1FET0	0.1164308322
+UniRef50_R1FET0|unclassified	0.1164308322
+UniRef50_UPI000379FDE6: hypothetical protein	0.1164183761
+UniRef50_UPI000379FDE6: hypothetical protein|unclassified	0.1164183761
+UniRef50_X6DH48	0.1164107359
+UniRef50_X6DH48|unclassified	0.1164107359
+UniRef50_UPI00047C6099: xanthine dehydrogenase	0.1164075552
+UniRef50_UPI00047C6099: xanthine dehydrogenase|unclassified	0.1164075552
+UniRef50_Q023V7: Chorismate synthase	0.1164073061
+UniRef50_Q023V7: Chorismate synthase|unclassified	0.1164073061
+UniRef50_S6USP0: Lipoprotein	0.1164037017
+UniRef50_S6USP0: Lipoprotein|unclassified	0.1164037017
+UniRef50_L7DLP0: Transcriptional regulator	0.1164015019
+UniRef50_L7DLP0: Transcriptional regulator|unclassified	0.1164015019
+UniRef50_B6BA58	0.1163992097
+UniRef50_B6BA58|unclassified	0.1163992097
+UniRef50_F3ZJR3	0.1163928983
+UniRef50_F3ZJR3|unclassified	0.1163928983
+UniRef50_Q9UYV8: Nitrilase	0.1163889096
+UniRef50_Q9UYV8: Nitrilase|unclassified	0.1163889096
+UniRef50_A2RLU5: Bifunctional protein FolD	0.1163839568
+UniRef50_A2RLU5: Bifunctional protein FolD|unclassified	0.1163839568
+UniRef50_UPI000377D66B: hypothetical protein	0.1163759417
+UniRef50_UPI000377D66B: hypothetical protein|unclassified	0.1163759417
+UniRef50_UPI00037499ED: hypothetical protein	0.1163757502
+UniRef50_UPI00037499ED: hypothetical protein|unclassified	0.1163757502
+UniRef50_UPI0003B45101: recombinase RecF	0.1163632281
+UniRef50_UPI0003B45101: recombinase RecF|unclassified	0.1163632281
+UniRef50_R6GV45: Relaxase/Mobilisation nuclease domain	0.1163607526
+UniRef50_R6GV45: Relaxase/Mobilisation nuclease domain|unclassified	0.1163607526
+UniRef50_C4Z552: Porphobilinogen deaminase	0.1163508673
+UniRef50_C4Z552: Porphobilinogen deaminase|unclassified	0.1163508673
+UniRef50_UPI0004708203: hypothetical protein	0.1163318500
+UniRef50_UPI0004708203: hypothetical protein|unclassified	0.1163318500
+UniRef50_UPI000377D8E1: hypothetical protein	0.1163301055
+UniRef50_UPI000377D8E1: hypothetical protein|unclassified	0.1163301055
+UniRef50_A0A059BZN8	0.1163283283
+UniRef50_A0A059BZN8|unclassified	0.1163283283
+UniRef50_Q098R9	0.1163223617
+UniRef50_Q098R9|unclassified	0.1163223617
+UniRef50_UPI000479C1CD: hypothetical protein	0.1163155345
+UniRef50_UPI000479C1CD: hypothetical protein|unclassified	0.1163155345
+UniRef50_UPI0003B3C220: DNA repair protein RecO, partial	0.1163136045
+UniRef50_UPI0003B3C220: DNA repair protein RecO, partial|unclassified	0.1163136045
+UniRef50_U3U4T1	0.1163121683
+UniRef50_U3U4T1|unclassified	0.1163121683
+UniRef50_UPI000361EC0C: hypothetical protein	0.1163104695
+UniRef50_UPI000361EC0C: hypothetical protein|unclassified	0.1163104695
+UniRef50_UPI0003B5D4F6: hypothetical protein	0.1162655661
+UniRef50_UPI0003B5D4F6: hypothetical protein|unclassified	0.1162655661
+UniRef50_UPI000402CC46: hypothetical protein	0.1162636078
+UniRef50_UPI000402CC46: hypothetical protein|unclassified	0.1162636078
+UniRef50_UPI00047D7354: GDP-L-fucose synthase	0.1162591897
+UniRef50_UPI00047D7354: GDP-L-fucose synthase|unclassified	0.1162591897
+UniRef50_B9THM3	0.1162584290
+UniRef50_B9THM3|unclassified	0.1162584290
+UniRef50_C2QP94: Response regulator aspartate phosphatase	0.1162552152
+UniRef50_C2QP94: Response regulator aspartate phosphatase|unclassified	0.1162552152
+UniRef50_P44723: Nucleoside triphosphate pyrophosphohydrolase	0.1162447153
+UniRef50_P44723: Nucleoside triphosphate pyrophosphohydrolase|unclassified	0.1162447153
+UniRef50_O43414: ERI1 exoribonuclease 3	0.1162432850
+UniRef50_O43414: ERI1 exoribonuclease 3|unclassified	0.1162432850
+UniRef50_W6K9L9	0.1162344658
+UniRef50_W6K9L9|unclassified	0.1162344658
+UniRef50_F3YLI5: Na(+)/H(+) antiporter subunit B	0.1162326634
+UniRef50_F3YLI5: Na(+)/H(+) antiporter subunit B|unclassified	0.1162326634
+UniRef50_UPI0004715202: chromosome segregation protein ScpB	0.1162299536
+UniRef50_UPI0004715202: chromosome segregation protein ScpB|unclassified	0.1162299536
+UniRef50_B3CM46: RNA pyrophosphohydrolase	0.1162193217
+UniRef50_B3CM46: RNA pyrophosphohydrolase|unclassified	0.1162193217
+UniRef50_N8HHC2: YaeC family lipoprotein	0.1162146208
+UniRef50_N8HHC2: YaeC family lipoprotein|unclassified	0.1162146208
+UniRef50_UPI0004775370: hypothetical protein	0.1162134299
+UniRef50_UPI0004775370: hypothetical protein|unclassified	0.1162134299
+UniRef50_P93033: Fumarate hydratase 1, mitochondrial	0.1162123716
+UniRef50_P93033: Fumarate hydratase 1, mitochondrial|unclassified	0.1162123716
+UniRef50_W5X9N6: Halogenase	0.1161925828
+UniRef50_W5X9N6: Halogenase|unclassified	0.1161925828
+UniRef50_G5S1P2	0.1161906610
+UniRef50_G5S1P2|unclassified	0.1161906610
+UniRef50_UPI0003148A34: hypothetical protein	0.1161874538
+UniRef50_UPI0003148A34: hypothetical protein|unclassified	0.1161874538
+UniRef50_V6MNR2	0.1161849855
+UniRef50_V6MNR2|unclassified	0.1161849855
+UniRef50_Q1R183: Sulfoacetaldehyde reductase	0.1161817808
+UniRef50_Q1R183: Sulfoacetaldehyde reductase|unclassified	0.1161817808
+UniRef50_Q86HF4: Molybdopterin synthase catalytic subunit	0.1161807218
+UniRef50_Q86HF4: Molybdopterin synthase catalytic subunit|unclassified	0.1161807218
+UniRef50_UPI00046D747A: hypothetical protein	0.1161776229
+UniRef50_UPI00046D747A: hypothetical protein|unclassified	0.1161776229
+UniRef50_F1PXV5	0.1161754172
+UniRef50_F1PXV5|unclassified	0.1161754172
+UniRef50_UPI000474C8D4: translation initiation factor IF-3	0.1161608296
+UniRef50_UPI000474C8D4: translation initiation factor IF-3|unclassified	0.1161608296
+UniRef50_UPI000348A11C: hypothetical protein	0.1161429110
+UniRef50_UPI000348A11C: hypothetical protein|unclassified	0.1161429110
+UniRef50_UPI000370FF6F: hypothetical protein	0.1161291541
+UniRef50_UPI000370FF6F: hypothetical protein|unclassified	0.1161291541
+UniRef50_J4GJ09	0.1161290178
+UniRef50_J4GJ09|unclassified	0.1161290178
+UniRef50_UPI00046A41A6: hypothetical protein	0.1161230460
+UniRef50_UPI00046A41A6: hypothetical protein|unclassified	0.1161230460
+UniRef50_UPI000181639B: alcohol dehydrogenase	0.1161222073
+UniRef50_UPI000181639B: alcohol dehydrogenase|unclassified	0.1161222073
+UniRef50_C0RLW2: Mannonate dehydratase	0.1161214117
+UniRef50_C0RLW2: Mannonate dehydratase|unclassified	0.1161214117
+UniRef50_UPI00047DC8F9: epimerase	0.1161200099
+UniRef50_UPI00047DC8F9: epimerase|unclassified	0.1161200099
+UniRef50_Q88PJ9: Type IV pili biogenesis protein PilF	0.1161162229
+UniRef50_Q88PJ9: Type IV pili biogenesis protein PilF|unclassified	0.1161162229
+UniRef50_UPI00035D39B4: hypothetical protein	0.1161058108
+UniRef50_UPI00035D39B4: hypothetical protein|unclassified	0.1161058108
+UniRef50_UPI0004630B37: pilus assembly protein PilP	0.1161043457
+UniRef50_UPI0004630B37: pilus assembly protein PilP|unclassified	0.1161043457
+UniRef50_D7BD64	0.1161017329
+UniRef50_D7BD64|unclassified	0.1161017329
+UniRef50_P11018: Major intracellular serine protease	0.1161002526
+UniRef50_P11018: Major intracellular serine protease|unclassified	0.1161002526
+UniRef50_U5UU73	0.1160983343
+UniRef50_U5UU73|unclassified	0.1160983343
+UniRef50_X1LPM1: Marine sediment metagenome DNA, contig: S06H3_S00105 (Fragment)	0.1160972608
+UniRef50_X1LPM1: Marine sediment metagenome DNA, contig: S06H3_S00105 (Fragment)|unclassified	0.1160972608
+UniRef50_Q9RRJ1: Nucleoside diphosphate kinase	0.1160892434
+UniRef50_Q9RRJ1: Nucleoside diphosphate kinase|unclassified	0.1160892434
+UniRef50_UPI00045E72F1: hypothetical protein	0.1160858795
+UniRef50_UPI00045E72F1: hypothetical protein|unclassified	0.1160858795
+UniRef50_UPI0003A374B9: ribonuclease 3	0.1160796555
+UniRef50_UPI0003A374B9: ribonuclease 3|unclassified	0.1160796555
+UniRef50_UPI00040408E0: hypothetical protein	0.1160793134
+UniRef50_UPI00040408E0: hypothetical protein|unclassified	0.1160793134
+UniRef50_UPI00046D8C56: hypothetical protein	0.1160702360
+UniRef50_UPI00046D8C56: hypothetical protein|unclassified	0.1160702360
+UniRef50_A9BM25: Thioesterase superfamily protein	0.1160658534
+UniRef50_A9BM25: Thioesterase superfamily protein|unclassified	0.1160658534
+UniRef50_Q2NIM1: Thymidine kinase	0.1160520499
+UniRef50_Q2NIM1: Thymidine kinase|unclassified	0.1160520499
+UniRef50_UPI0003B46179: phytoene dehydrogenase, partial	0.1160478761
+UniRef50_UPI0003B46179: phytoene dehydrogenase, partial|unclassified	0.1160478761
+UniRef50_UPI0003AEBAC4: PREDICTED: zinc finger protein 318 isoform X2	0.1160428375
+UniRef50_UPI0003AEBAC4: PREDICTED: zinc finger protein 318 isoform X2|unclassified	0.1160428375
+UniRef50_UPI000466DC48: glycine dehydrogenase	0.1160422447
+UniRef50_UPI000466DC48: glycine dehydrogenase|unclassified	0.1160422447
+UniRef50_UPI00037C5B58: hypothetical protein	0.1160419226
+UniRef50_UPI00037C5B58: hypothetical protein|unclassified	0.1160419226
+UniRef50_UPI00035E63B0: hypothetical protein	0.1160386931
+UniRef50_UPI00035E63B0: hypothetical protein|unclassified	0.1160386931
+UniRef50_UPI00028948BE: MORN repeat-containing protein	0.1160357277
+UniRef50_UPI00028948BE: MORN repeat-containing protein|unclassified	0.1160357277
+UniRef50_F5REV2	0.1160286438
+UniRef50_F5REV2|unclassified	0.1160286438
+UniRef50_Q92I89: Holliday junction ATP-dependent DNA helicase RuvA	0.1160271630
+UniRef50_Q92I89: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.1160271630
+UniRef50_UPI0002630D1B: hypothetical protein	0.1160243332
+UniRef50_UPI0002630D1B: hypothetical protein|unclassified	0.1160243332
+UniRef50_UPI00036B9E06: hypothetical protein	0.1160186988
+UniRef50_UPI00036B9E06: hypothetical protein|unclassified	0.1160186988
+UniRef50_C3E1T1: Response regulator aspartate phosphatase	0.1160165574
+UniRef50_C3E1T1: Response regulator aspartate phosphatase|unclassified	0.1160165574
+UniRef50_UPI00039D0420: hypothetical protein	0.1160066989
+UniRef50_UPI00039D0420: hypothetical protein|unclassified	0.1160066989
+UniRef50_F7Z3K5: UPF0223 protein BCO26_0969	0.1159843171
+UniRef50_F7Z3K5: UPF0223 protein BCO26_0969|unclassified	0.1159843171
+UniRef50_E2ZSG3: Glycolate oxidase, iron-sulfur subunit	0.1159690453
+UniRef50_E2ZSG3: Glycolate oxidase, iron-sulfur subunit|unclassified	0.1159690453
+UniRef50_UPI0003621C43: hypothetical protein	0.1159676084
+UniRef50_UPI0003621C43: hypothetical protein|unclassified	0.1159676084
+UniRef50_G2J955: Putative phenylacetic acid degradation thioesterase	0.1159593590
+UniRef50_G2J955: Putative phenylacetic acid degradation thioesterase|unclassified	0.1159593590
+UniRef50_UPI00047A97FE: 4-amino-4-deoxychorismate lyase	0.1159516588
+UniRef50_UPI00047A97FE: 4-amino-4-deoxychorismate lyase|unclassified	0.1159516588
+UniRef50_E4N8R6	0.1159516307
+UniRef50_E4N8R6|unclassified	0.1159516307
+UniRef50_A6EE81	0.1159382157
+UniRef50_A6EE81|unclassified	0.1159382157
+UniRef50_D5V9S8: Membrane protein	0.1159336605
+UniRef50_D5V9S8: Membrane protein|unclassified	0.1159336605
+UniRef50_F7TRS8	0.1159232018
+UniRef50_F7TRS8|unclassified	0.1159232018
+UniRef50_B2A076: Pyrrolo-quinoline quinone	0.1159130602
+UniRef50_B2A076: Pyrrolo-quinoline quinone|unclassified	0.1159130602
+UniRef50_UPI00032A20C5: PREDICTED: protein MTO1 homolog, mitochondrial-like	0.1159104283
+UniRef50_UPI00032A20C5: PREDICTED: protein MTO1 homolog, mitochondrial-like|unclassified	0.1159104283
+UniRef50_UPI000289601B: membrane protein	0.1159071970
+UniRef50_UPI000289601B: membrane protein|unclassified	0.1159071970
+UniRef50_K0CAN2: Thioesterase family protein	0.1158960871
+UniRef50_K0CAN2: Thioesterase family protein|unclassified	0.1158960871
+UniRef50_W7BZ58: Peptidoglycan lytic protein P45	0.1158944274
+UniRef50_W7BZ58: Peptidoglycan lytic protein P45|unclassified	0.1158944274
+UniRef50_UPI0004666A9C: AraC family transcriptional regulator	0.1158934135
+UniRef50_UPI0004666A9C: AraC family transcriptional regulator|unclassified	0.1158934135
+UniRef50_A0A011PNT7: N-acetylmuramoyl-L-alanine amidase AmiC	0.1158919657
+UniRef50_A0A011PNT7: N-acetylmuramoyl-L-alanine amidase AmiC|unclassified	0.1158919657
+UniRef50_UPI0004416713: hypothetical protein PUNSTDRAFT_136796	0.1158764879
+UniRef50_UPI0004416713: hypothetical protein PUNSTDRAFT_136796|unclassified	0.1158764879
+UniRef50_A5V3M3: Transglutaminase, N-terminal domain protein	0.1158720853
+UniRef50_A5V3M3: Transglutaminase, N-terminal domain protein|unclassified	0.1158720853
+UniRef50_UPI000470E379: hypothetical protein, partial	0.1158696341
+UniRef50_UPI000470E379: hypothetical protein, partial|unclassified	0.1158696341
+UniRef50_A7IKV8	0.1158629566
+UniRef50_A7IKV8|unclassified	0.1158629566
+UniRef50_T0UJ26: Fibronectin/fibrinogen-binding protein	0.1158624250
+UniRef50_T0UJ26: Fibronectin/fibrinogen-binding protein|unclassified	0.1158624250
+UniRef50_R4GHY1	0.1158370380
+UniRef50_R4GHY1|unclassified	0.1158370380
+UniRef50_A9VXT4: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO	0.1158301701
+UniRef50_A9VXT4: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|unclassified	0.1158301701
+UniRef50_A5IAB5: Short chain dehydrogenase	0.1158236003
+UniRef50_A5IAB5: Short chain dehydrogenase|unclassified	0.1158236003
+UniRef50_UPI0003B6F938: LysR family transcriptional regulator	0.1158015360
+UniRef50_UPI0003B6F938: LysR family transcriptional regulator|unclassified	0.1158015360
+UniRef50_UPI00046EF909: transketolase, partial	0.1158005191
+UniRef50_UPI00046EF909: transketolase, partial|unclassified	0.1158005191
+UniRef50_UPI00036B729E: hypothetical protein	0.1157999552
+UniRef50_UPI00036B729E: hypothetical protein|unclassified	0.1157999552
+UniRef50_X1N0L4: Marine sediment metagenome DNA, contig: S06H3_S18185 (Fragment)	0.1157897646
+UniRef50_X1N0L4: Marine sediment metagenome DNA, contig: S06H3_S18185 (Fragment)|unclassified	0.1157897646
+UniRef50_UPI0004631ABE: histidine kinase	0.1157781565
+UniRef50_UPI0004631ABE: histidine kinase|unclassified	0.1157781565
+UniRef50_UPI0003622EE4: hypothetical protein	0.1157717346
+UniRef50_UPI0003622EE4: hypothetical protein|unclassified	0.1157717346
+UniRef50_UPI000416EAAC: hypothetical protein	0.1157565287
+UniRef50_UPI000416EAAC: hypothetical protein|unclassified	0.1157565287
+UniRef50_U7PWZ9	0.1157540618
+UniRef50_U7PWZ9|unclassified	0.1157540618
+UniRef50_UPI0002F34B76: hypothetical protein	0.1157526338
+UniRef50_UPI0002F34B76: hypothetical protein|unclassified	0.1157526338
+UniRef50_UPI000474BB68: O-sialoglycoprotein endopeptidase, partial	0.1157521121
+UniRef50_UPI000474BB68: O-sialoglycoprotein endopeptidase, partial|unclassified	0.1157521121
+UniRef50_UPI00037D9D80: hypothetical protein	0.1157502491
+UniRef50_UPI00037D9D80: hypothetical protein|unclassified	0.1157502491
+UniRef50_UPI00036BACC2: hypothetical protein	0.1157473759
+UniRef50_UPI00036BACC2: hypothetical protein|unclassified	0.1157473759
+UniRef50_C5NYS3: UPF0473 protein GEMHA0001_0613	0.1157462698
+UniRef50_C5NYS3: UPF0473 protein GEMHA0001_0613|unclassified	0.1157462698
+UniRef50_H5T9F2: GAF domain-containing protein A	0.1157436741
+UniRef50_H5T9F2: GAF domain-containing protein A|unclassified	0.1157436741
+UniRef50_UPI00024849FE: RTX toxins and related Ca2+-binding protein-like protein	0.1157430326
+UniRef50_UPI00024849FE: RTX toxins and related Ca2+-binding protein-like protein|unclassified	0.1157430326
+UniRef50_B9QF11: UBX domain-containing protein	0.1157384728
+UniRef50_B9QF11: UBX domain-containing protein|unclassified	0.1157384728
+UniRef50_Z2DBK4	0.1157358715
+UniRef50_Z2DBK4|unclassified	0.1157358715
+UniRef50_W4HQH1	0.1157341580
+UniRef50_W4HQH1|unclassified	0.1157341580
+UniRef50_UPI00036DF5BA: hypothetical protein	0.1157321658
+UniRef50_UPI00036DF5BA: hypothetical protein|unclassified	0.1157321658
+UniRef50_UPI0002ECFE09: hypothetical protein	0.1157189435
+UniRef50_UPI0002ECFE09: hypothetical protein|unclassified	0.1157189435
+UniRef50_F3J2W3: AsmA family protein (Fragment)	0.1157082585
+UniRef50_F3J2W3: AsmA family protein (Fragment)|unclassified	0.1157082585
+UniRef50_UPI0003690414: hypothetical protein	0.1156996714
+UniRef50_UPI0003690414: hypothetical protein|unclassified	0.1156996714
+UniRef50_UPI00034AB3F1: peptide ABC transporter ATPase	0.1156973266
+UniRef50_UPI00034AB3F1: peptide ABC transporter ATPase|unclassified	0.1156973266
+UniRef50_UPI00036966F0: 30S ribosomal protein S2	0.1156971760
+UniRef50_UPI00036966F0: 30S ribosomal protein S2|unclassified	0.1156971760
+UniRef50_UPI000361DFFE: hypothetical protein	0.1156894032
+UniRef50_UPI000361DFFE: hypothetical protein|unclassified	0.1156894032
+UniRef50_J7QL92	0.1156847165
+UniRef50_J7QL92|unclassified	0.1156847165
+UniRef50_UPI0003B4FDE9: N-acetylglutamate synthase	0.1156645545
+UniRef50_UPI0003B4FDE9: N-acetylglutamate synthase|unclassified	0.1156645545
+UniRef50_A3WML2: Heparinase II/III-like	0.1156562637
+UniRef50_A3WML2: Heparinase II/III-like|unclassified	0.1156562637
+UniRef50_Q52880: Chemotaxis protein CheA	0.1156512569
+UniRef50_Q52880: Chemotaxis protein CheA|unclassified	0.1156512569
+UniRef50_UPI0003C1AF0C	0.1156331892
+UniRef50_UPI0003C1AF0C|unclassified	0.1156331892
+UniRef50_B9TMP8	0.1156184614
+UniRef50_B9TMP8|unclassified	0.1156184614
+UniRef50_A2FBD4: Alanine dehydrogenase 2, putative	0.1156038521
+UniRef50_A2FBD4: Alanine dehydrogenase 2, putative|unclassified	0.1156038521
+UniRef50_B4SIA9: DGPFAETKE family protein	0.1155993801
+UniRef50_B4SIA9: DGPFAETKE family protein|unclassified	0.1155993801
+UniRef50_J0PVQ9	0.1155959591
+UniRef50_J0PVQ9|unclassified	0.1155959591
+UniRef50_W1PEW2	0.1155955212
+UniRef50_W1PEW2|unclassified	0.1155955212
+UniRef50_UPI000174553D: hypothetical protein	0.1155918937
+UniRef50_UPI000174553D: hypothetical protein|unclassified	0.1155918937
+UniRef50_N1MNF9: Type cbb3 cytochrome oxidase biogenesis protein CcoH	0.1155815848
+UniRef50_N1MNF9: Type cbb3 cytochrome oxidase biogenesis protein CcoH|unclassified	0.1155815848
+UniRef50_K8E1W4	0.1155805371
+UniRef50_K8E1W4|unclassified	0.1155805371
+UniRef50_UPI000380847F: hypothetical protein	0.1155698723
+UniRef50_UPI000380847F: hypothetical protein|unclassified	0.1155698723
+UniRef50_UPI000474B28E: hypothetical protein	0.1155644347
+UniRef50_UPI000474B28E: hypothetical protein|unclassified	0.1155644347
+UniRef50_UPI0003B2EB2A: glycerol kinase	0.1155580274
+UniRef50_UPI0003B2EB2A: glycerol kinase|unclassified	0.1155580274
+UniRef50_UPI00035DAD03: hypothetical protein	0.1155549665
+UniRef50_UPI00035DAD03: hypothetical protein|unclassified	0.1155549665
+UniRef50_UPI000381892F: hypothetical protein	0.1155519186
+UniRef50_UPI000381892F: hypothetical protein|unclassified	0.1155519186
+UniRef50_F9I030	0.1155499448
+UniRef50_F9I030|unclassified	0.1155499448
+UniRef50_Q0APZ9: 8-amino-7-oxononanoate synthase	0.1155496253
+UniRef50_Q0APZ9: 8-amino-7-oxononanoate synthase|unclassified	0.1155496253
+UniRef50_J8THT6: HTH-type transcriptional regulator	0.1155491017
+UniRef50_J8THT6: HTH-type transcriptional regulator|unclassified	0.1155491017
+UniRef50_E8XRU5	0.1155430248
+UniRef50_E8XRU5|unclassified	0.1155430248
+UniRef50_J3DD56	0.1155401400
+UniRef50_J3DD56|unclassified	0.1155401400
+UniRef50_UPI0002DC070B: hypothetical protein	0.1155383189
+UniRef50_UPI0002DC070B: hypothetical protein|unclassified	0.1155383189
+UniRef50_UPI00036FEA5C: hypothetical protein	0.1155317529
+UniRef50_UPI00036FEA5C: hypothetical protein|unclassified	0.1155317529
+UniRef50_UPI0002DC9866: hypothetical protein	0.1155246244
+UniRef50_UPI0002DC9866: hypothetical protein|unclassified	0.1155246244
+UniRef50_U4V1K6	0.1155158283
+UniRef50_U4V1K6|unclassified	0.1155158283
+UniRef50_R6MFZ2: MazG family protein	0.1154917419
+UniRef50_R6MFZ2: MazG family protein|unclassified	0.1154917419
+UniRef50_UPI0003B328A7: magnesium chelatase	0.1154875383
+UniRef50_UPI0003B328A7: magnesium chelatase|unclassified	0.1154875383
+UniRef50_Q2RKY6: Ribosomal protein L11 methyltransferase	0.1154785164
+UniRef50_Q2RKY6: Ribosomal protein L11 methyltransferase|unclassified	0.1154785164
+UniRef50_C6SPT4	0.1154773917
+UniRef50_C6SPT4|unclassified	0.1154773917
+UniRef50_UPI0001CBA7DC: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1-like	0.1154725441
+UniRef50_UPI0001CBA7DC: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1-like|unclassified	0.1154725441
+UniRef50_C1D5E9: TRAP-type mannitol/chloroaromatic compound transport system, small permease component	0.1154662686
+UniRef50_C1D5E9: TRAP-type mannitol/chloroaromatic compound transport system, small permease component|unclassified	0.1154662686
+UniRef50_B3PIK6	0.1154645499
+UniRef50_B3PIK6|unclassified	0.1154645499
+UniRef50_Q892J3: Chorismate synthase	0.1154576126
+UniRef50_Q892J3: Chorismate synthase|unclassified	0.1154576126
+UniRef50_UPI0003B33998: glucose dehydrogenase	0.1154543097
+UniRef50_UPI0003B33998: glucose dehydrogenase|unclassified	0.1154543097
+UniRef50_K4PMR7	0.1154535404
+UniRef50_K4PMR7|unclassified	0.1154535404
+UniRef50_UPI0003B63B72: biopolymer transporter ExbD	0.1154351577
+UniRef50_UPI0003B63B72: biopolymer transporter ExbD|unclassified	0.1154351577
+UniRef50_B5DTS4: GA23149	0.1154349615
+UniRef50_B5DTS4: GA23149|unclassified	0.1154349615
+UniRef50_F7NY43	0.1154306523
+UniRef50_F7NY43|unclassified	0.1154306523
+UniRef50_A1WYD5: Siroheme synthase 2	0.1154283906
+UniRef50_A1WYD5: Siroheme synthase 2|unclassified	0.1154283906
+UniRef50_UPI0003672F43: hypothetical protein	0.1154274771
+UniRef50_UPI0003672F43: hypothetical protein|unclassified	0.1154274771
+UniRef50_UPI0003FD2753: hexapeptide transferase	0.1154237535
+UniRef50_UPI0003FD2753: hexapeptide transferase|unclassified	0.1154237535
+UniRef50_L8E4Z1	0.1154188404
+UniRef50_L8E4Z1|unclassified	0.1154188404
+UniRef50_K0HCY6: Transposase	0.1154162639
+UniRef50_K0HCY6: Transposase|unclassified	0.1154162639
+UniRef50_UPI0004655B63: hypothetical protein	0.1154068090
+UniRef50_UPI0004655B63: hypothetical protein|unclassified	0.1154068090
+UniRef50_UPI0003C1A6D9: PREDICTED: short-chain specific acyl-CoA dehydrogenase, mitochondrial-like	0.1154045805
+UniRef50_UPI0003C1A6D9: PREDICTED: short-chain specific acyl-CoA dehydrogenase, mitochondrial-like|unclassified	0.1154045805
+UniRef50_R5EGP1: Hemolysins and related proteins containing CBS domains	0.1154038111
+UniRef50_R5EGP1: Hemolysins and related proteins containing CBS domains|unclassified	0.1154038111
+UniRef50_E6Q264	0.1154019367
+UniRef50_E6Q264|unclassified	0.1154019367
+UniRef50_Q4FNE4: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.1153877238
+UniRef50_Q4FNE4: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.1153877238
+UniRef50_Q31E66: Imidazole glycerol phosphate synthase subunit HisH	0.1153810832
+UniRef50_Q31E66: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.1153810832
+UniRef50_P19623: Spermidine synthase	0.1153638298
+UniRef50_P19623: Spermidine synthase|unclassified	0.1153638298
+UniRef50_K4HZB7: Phage baseplate assembly protein gpJ	0.1153612056
+UniRef50_K4HZB7: Phage baseplate assembly protein gpJ|unclassified	0.1153612056
+UniRef50_P57884: Homoserine O-acetyltransferase	0.1153548853
+UniRef50_P57884: Homoserine O-acetyltransferase|unclassified	0.1153548853
+UniRef50_P08080: 5-aminolevulinate synthase	0.1153518312
+UniRef50_P08080: 5-aminolevulinate synthase|unclassified	0.1153518312
+UniRef50_W5X6F3: ECF subfamily RNA polymerase sigma factor	0.1153475594
+UniRef50_W5X6F3: ECF subfamily RNA polymerase sigma factor|unclassified	0.1153475594
+UniRef50_D9WZT8: WD-40 repeat-containing protein	0.1153382356
+UniRef50_D9WZT8: WD-40 repeat-containing protein|unclassified	0.1153382356
+UniRef50_G8AZZ1	0.1153381408
+UniRef50_G8AZZ1|unclassified	0.1153381408
+UniRef50_R6GAB3	0.1153331253
+UniRef50_R6GAB3|unclassified	0.1153331253
+UniRef50_UPI00047ED6FC: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.1153221665
+UniRef50_UPI00047ED6FC: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.1153221665
+UniRef50_E1R8Z7: NmrA family protein	0.1153189555
+UniRef50_E1R8Z7: NmrA family protein|unclassified	0.1153189555
+UniRef50_UPI0001745568: 4-alpha-glucanotransferase	0.1153168414
+UniRef50_UPI0001745568: 4-alpha-glucanotransferase|unclassified	0.1153168414
+UniRef50_UPI0002DCEE9A: hypothetical protein	0.1153111738
+UniRef50_UPI0002DCEE9A: hypothetical protein|unclassified	0.1153111738
+UniRef50_UPI00046D500B: hypothetical protein	0.1153107871
+UniRef50_UPI00046D500B: hypothetical protein|unclassified	0.1153107871
+UniRef50_P60966: Prolipoprotein diacylglyceryl transferase	0.1153100373
+UniRef50_P60966: Prolipoprotein diacylglyceryl transferase|unclassified	0.1153100373
+UniRef50_R7LBR3	0.1153095565
+UniRef50_R7LBR3|unclassified	0.1153095565
+UniRef50_U0EEM2	0.1153073383
+UniRef50_U0EEM2|unclassified	0.1153073383
+UniRef50_F0ZUP4	0.1153046202
+UniRef50_F0ZUP4|unclassified	0.1153046202
+UniRef50_T0SY49	0.1153033109
+UniRef50_T0SY49|unclassified	0.1153033109
+UniRef50_UPI0004065375: glutathione S-transferase	0.1152882421
+UniRef50_UPI0004065375: glutathione S-transferase|unclassified	0.1152882421
+UniRef50_B9E8D3	0.1152842368
+UniRef50_B9E8D3|unclassified	0.1152842368
+UniRef50_UPI00034DCD19: hypothetical protein	0.1152798512
+UniRef50_UPI00034DCD19: hypothetical protein|unclassified	0.1152798512
+UniRef50_UPI00038FA867: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase, partial	0.1152788652
+UniRef50_UPI00038FA867: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase, partial|unclassified	0.1152788652
+UniRef50_UPI0002558FBE: hypothetical protein	0.1152675998
+UniRef50_UPI0002558FBE: hypothetical protein|unclassified	0.1152675998
+UniRef50_UPI000371F13D: hypothetical protein, partial	0.1152654155
+UniRef50_UPI000371F13D: hypothetical protein, partial|unclassified	0.1152654155
+UniRef50_U3HWK1	0.1152508696
+UniRef50_U3HWK1|unclassified	0.1152508696
+UniRef50_UPI0002FB146F: 30S ribosomal protein S2	0.1152506502
+UniRef50_UPI0002FB146F: 30S ribosomal protein S2|unclassified	0.1152506502
+UniRef50_UPI000475821E: hydrolase	0.1152471648
+UniRef50_UPI000475821E: hydrolase|unclassified	0.1152471648
+UniRef50_UPI00037404C6: endonuclease	0.1152399871
+UniRef50_UPI00037404C6: endonuclease|unclassified	0.1152399871
+UniRef50_UPI000377D7B1: ABC transporter	0.1152124671
+UniRef50_UPI000377D7B1: ABC transporter|unclassified	0.1152124671
+UniRef50_W5X3E8: Methyltransferase family protein	0.1152102460
+UniRef50_W5X3E8: Methyltransferase family protein|unclassified	0.1152102460
+UniRef50_R7T3N1	0.1152094729
+UniRef50_R7T3N1|unclassified	0.1152094729
+UniRef50_UPI0002376C16: 3-oxoacid CoA-transferase subunit beta	0.1152089931
+UniRef50_UPI0002376C16: 3-oxoacid CoA-transferase subunit beta|unclassified	0.1152089931
+UniRef50_B5HQU2: Export protein	0.1152086562
+UniRef50_B5HQU2: Export protein|unclassified	0.1152086562
+UniRef50_X5FWW7: DetA	0.1152026110
+UniRef50_X5FWW7: DetA|unclassified	0.1152026110
+UniRef50_UPI0003B62DFC: phosphonate metabolism protein PhnM	0.1152018885
+UniRef50_UPI0003B62DFC: phosphonate metabolism protein PhnM|unclassified	0.1152018885
+UniRef50_D0S8P7	0.1151999059
+UniRef50_D0S8P7|unclassified	0.1151999059
+UniRef50_B0TX18: tRNA (guanine-N(1)-)-methyltransferase	0.1151993009
+UniRef50_B0TX18: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.1151993009
+UniRef50_N8YCG4	0.1151987669
+UniRef50_N8YCG4|unclassified	0.1151987669
+UniRef50_UPI0003945D12: PREDICTED: ribonuclease P protein subunit p30	0.1151932997
+UniRef50_UPI0003945D12: PREDICTED: ribonuclease P protein subunit p30|unclassified	0.1151932997
+UniRef50_UPI00046A807C: thioredoxin	0.1151896249
+UniRef50_UPI00046A807C: thioredoxin|unclassified	0.1151896249
+UniRef50_UPI0004267EB0: short-chain dehydrogenase	0.1151813252
+UniRef50_UPI0004267EB0: short-chain dehydrogenase|unclassified	0.1151813252
+UniRef50_UPI000367B767: hypothetical protein	0.1151793015
+UniRef50_UPI000367B767: hypothetical protein|unclassified	0.1151793015
+UniRef50_W0BGV9: Carbamoylphosphate synthase small subunit	0.1151752903
+UniRef50_W0BGV9: Carbamoylphosphate synthase small subunit|unclassified	0.1151752903
+UniRef50_P45878: Peptidyl-prolyl cis-trans isomerase FKBP2	0.1151691103
+UniRef50_P45878: Peptidyl-prolyl cis-trans isomerase FKBP2|unclassified	0.1151691103
+UniRef50_UPI0002FE2E6B: hypothetical protein	0.1151675655
+UniRef50_UPI0002FE2E6B: hypothetical protein|unclassified	0.1151675655
+UniRef50_Q1QMD6	0.1151661977
+UniRef50_Q1QMD6|unclassified	0.1151661977
+UniRef50_UPI00035EAAD0: hypothetical protein	0.1151620414
+UniRef50_UPI00035EAAD0: hypothetical protein|unclassified	0.1151620414
+UniRef50_UPI0001744B3D: possible HAD superfamily hydrolase	0.1151611628
+UniRef50_UPI0001744B3D: possible HAD superfamily hydrolase|unclassified	0.1151611628
+UniRef50_UPI00041D9070: hypothetical protein	0.1151521841
+UniRef50_UPI00041D9070: hypothetical protein|unclassified	0.1151521841
+UniRef50_UPI0003B67C0C: hypothetical protein	0.1151451333
+UniRef50_UPI0003B67C0C: hypothetical protein|unclassified	0.1151451333
+UniRef50_UPI00037267AF: hypothetical protein	0.1151439880
+UniRef50_UPI00037267AF: hypothetical protein|unclassified	0.1151439880
+UniRef50_UPI000369DDA4: hypothetical protein	0.1151317425
+UniRef50_UPI000369DDA4: hypothetical protein|unclassified	0.1151317425
+UniRef50_UPI000347D8D7: hypothetical protein	0.1151302959
+UniRef50_UPI000347D8D7: hypothetical protein|unclassified	0.1151302959
+UniRef50_UPI000366D5B1: hypothetical protein	0.1151210065
+UniRef50_UPI000366D5B1: hypothetical protein|unclassified	0.1151210065
+UniRef50_UPI000225B45E: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	0.1151196665
+UniRef50_UPI000225B45E: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.1151196665
+UniRef50_UPI000468A19B: hypothetical protein	0.1151061075
+UniRef50_UPI000468A19B: hypothetical protein|unclassified	0.1151061075
+UniRef50_A0A018S3I1	0.1151048139
+UniRef50_A0A018S3I1|unclassified	0.1151048139
+UniRef50_UPI00047A1464: MerR family transcriptional regulator	0.1151046630
+UniRef50_UPI00047A1464: MerR family transcriptional regulator|unclassified	0.1151046630
+UniRef50_U7G0Z6	0.1150975476
+UniRef50_U7G0Z6|unclassified	0.1150975476
+UniRef50_UPI000371AA0D: hypothetical protein	0.1150863595
+UniRef50_UPI000371AA0D: hypothetical protein|unclassified	0.1150863595
+UniRef50_A9ANT9: DGPFAETKE family protein	0.1150814069
+UniRef50_A9ANT9: DGPFAETKE family protein|unclassified	0.1150814069
+UniRef50_Q5SJM4: Quinolinate synthase A	0.1150632519
+UniRef50_Q5SJM4: Quinolinate synthase A|unclassified	0.1150632519
+UniRef50_D8M8T2: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_6	0.1150606805
+UniRef50_D8M8T2: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_6|unclassified	0.1150606805
+UniRef50_Q2KUS4: Glutamate-1-semialdehyde 2,1-aminomutase	0.1150602704
+UniRef50_Q2KUS4: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.1150602704
+UniRef50_UPI000378AC9F: hypothetical protein	0.1150560048
+UniRef50_UPI000378AC9F: hypothetical protein|unclassified	0.1150560048
+UniRef50_UPI00022CAA7F: PREDICTED: hypothetical protein LOC100749335	0.1150515187
+UniRef50_UPI00022CAA7F: PREDICTED: hypothetical protein LOC100749335|unclassified	0.1150515187
+UniRef50_UPI000288CA53: molecular chaperone DnaK, partial	0.1150293677
+UniRef50_UPI000288CA53: molecular chaperone DnaK, partial|unclassified	0.1150293677
+UniRef50_N6Z714	0.1150243623
+UniRef50_N6Z714|unclassified	0.1150243623
+UniRef50_A5PBK9	0.1150012004
+UniRef50_A5PBK9|unclassified	0.1150012004
+UniRef50_UPI0003B3F958: Hsp33 chaperonin	0.1149983066
+UniRef50_UPI0003B3F958: Hsp33 chaperonin|unclassified	0.1149983066
+UniRef50_UPI00046B026F: hypothetical protein	0.1149883316
+UniRef50_UPI00046B026F: hypothetical protein|unclassified	0.1149883316
+UniRef50_T0CBW4: KipI	0.1149862759
+UniRef50_T0CBW4: KipI|unclassified	0.1149862759
+UniRef50_B5Y5X7: Permease	0.1149816668
+UniRef50_B5Y5X7: Permease|unclassified	0.1149816668
+UniRef50_UPI0003612D69: hypothetical protein	0.1149727112
+UniRef50_UPI0003612D69: hypothetical protein|unclassified	0.1149727112
+UniRef50_UPI00047DB4F1: hypothetical protein	0.1149664055
+UniRef50_UPI00047DB4F1: hypothetical protein|unclassified	0.1149664055
+UniRef50_UPI0003B59E42: transcriptional regulator	0.1149572875
+UniRef50_UPI0003B59E42: transcriptional regulator|unclassified	0.1149572875
+UniRef50_UPI00042B2E4A: AMP-dependent synthetase and ligase family protein, putative	0.1149535443
+UniRef50_UPI00042B2E4A: AMP-dependent synthetase and ligase family protein, putative|unclassified	0.1149535443
+UniRef50_P44854	0.1149489190
+UniRef50_P44854|unclassified	0.1149489190
+UniRef50_UPI000381F263: hypothetical protein	0.1149436639
+UniRef50_UPI000381F263: hypothetical protein|unclassified	0.1149436639
+UniRef50_Q0RUL6	0.1149423980
+UniRef50_Q0RUL6|unclassified	0.1149423980
+UniRef50_K2GQQ1	0.1149340418
+UniRef50_K2GQQ1|unclassified	0.1149340418
+UniRef50_W7B1X6	0.1149282258
+UniRef50_W7B1X6|unclassified	0.1149282258
+UniRef50_UPI0004725C09: amidase	0.1149176457
+UniRef50_UPI0004725C09: amidase|unclassified	0.1149176457
+UniRef50_K8WFR6: Plasmid-related antirestriction protein	0.1149145147
+UniRef50_K8WFR6: Plasmid-related antirestriction protein|unclassified	0.1149145147
+UniRef50_UPI000476F6C8: hypothetical protein	0.1149138459
+UniRef50_UPI000476F6C8: hypothetical protein|unclassified	0.1149138459
+UniRef50_R7AXX0	0.1149089533
+UniRef50_R7AXX0|unclassified	0.1149089533
+UniRef50_UPI00046CBCB0: membrane protein	0.1149079086
+UniRef50_UPI00046CBCB0: membrane protein|unclassified	0.1149079086
+UniRef50_X2MW63	0.1149063497
+UniRef50_X2MW63|unclassified	0.1149063497
+UniRef50_K8BVK5	0.1149049523
+UniRef50_K8BVK5|unclassified	0.1149049523
+UniRef50_UPI00036F49F7: hypothetical protein	0.1149015691
+UniRef50_UPI00036F49F7: hypothetical protein|unclassified	0.1149015691
+UniRef50_B8H5R1: C4-dicarboxylate transport system, small permease component	0.1149006957
+UniRef50_B8H5R1: C4-dicarboxylate transport system, small permease component|unclassified	0.1149006957
+UniRef50_UPI0003678583: hypothetical protein	0.1149001131
+UniRef50_UPI0003678583: hypothetical protein|unclassified	0.1149001131
+UniRef50_UPI0003B309D7: LysR family transcriptional regulator	0.1148908686
+UniRef50_UPI0003B309D7: LysR family transcriptional regulator|unclassified	0.1148908686
+UniRef50_F7YLR6	0.1148904286
+UniRef50_F7YLR6|unclassified	0.1148904286
+UniRef50_A0A033UYA4	0.1148773129
+UniRef50_A0A033UYA4|unclassified	0.1148773129
+UniRef50_T0CM57: HD domain protein	0.1148723626
+UniRef50_T0CM57: HD domain protein|unclassified	0.1148723626
+UniRef50_W0Z2L3: PAS/PAC sensor-containing diguanylate cyclase/phosphodiesterase	0.1148614806
+UniRef50_W0Z2L3: PAS/PAC sensor-containing diguanylate cyclase/phosphodiesterase|unclassified	0.1148614806
+UniRef50_UPI000463B214: electron transporter RnfC	0.1148580238
+UniRef50_UPI000463B214: electron transporter RnfC|unclassified	0.1148580238
+UniRef50_UPI00036C156F: hypothetical protein	0.1148522630
+UniRef50_UPI00036C156F: hypothetical protein|unclassified	0.1148522630
+UniRef50_A3VW90	0.1148459459
+UniRef50_A3VW90|unclassified	0.1148459459
+UniRef50_UPI0003B736B6: hypothetical protein	0.1148407112
+UniRef50_UPI0003B736B6: hypothetical protein|unclassified	0.1148407112
+UniRef50_S0ACB3	0.1148374837
+UniRef50_S0ACB3|unclassified	0.1148374837
+UniRef50_A0A023UUI0	0.1148361671
+UniRef50_A0A023UUI0|unclassified	0.1148361671
+UniRef50_W5XAK2: Citrate synthase	0.1148354593
+UniRef50_W5XAK2: Citrate synthase|unclassified	0.1148354593
+UniRef50_F3J9K3: Putative lipoprotein (Fragment)	0.1148187074
+UniRef50_F3J9K3: Putative lipoprotein (Fragment)|unclassified	0.1148187074
+UniRef50_UPI00045E8969: hypothetical protein	0.1148152901
+UniRef50_UPI00045E8969: hypothetical protein|unclassified	0.1148152901
+UniRef50_Q134N9: Methionine import ATP-binding protein MetN	0.1148087854
+UniRef50_Q134N9: Methionine import ATP-binding protein MetN|unclassified	0.1148087854
+UniRef50_A1SET2: Cyclic pyranopterin monophosphate synthase accessory protein	0.1148078155
+UniRef50_A1SET2: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	0.1148078155
+UniRef50_F7QGF0	0.1148071946
+UniRef50_F7QGF0|unclassified	0.1148071946
+UniRef50_Q2A1S3	0.1148064600
+UniRef50_Q2A1S3|unclassified	0.1148064600
+UniRef50_UPI000234E316	0.1148002168
+UniRef50_UPI000234E316|unclassified	0.1148002168
+UniRef50_UPI000263050C: tryptophan synthase subunit alpha, partial	0.1147935851
+UniRef50_UPI000263050C: tryptophan synthase subunit alpha, partial|unclassified	0.1147935851
+UniRef50_UPI0003B4B69A: GntR family transcriptional regulator	0.1147804023
+UniRef50_UPI0003B4B69A: GntR family transcriptional regulator|unclassified	0.1147804023
+UniRef50_UPI000473D3FB: ATP-sulfurylase, partial	0.1147783027
+UniRef50_UPI000473D3FB: ATP-sulfurylase, partial|unclassified	0.1147783027
+UniRef50_UPI0003702B06: hypothetical protein	0.1147754439
+UniRef50_UPI0003702B06: hypothetical protein|unclassified	0.1147754439
+UniRef50_Q81L09: S-adenosylmethionine decarboxylase proenzyme 1	0.1147742047
+UniRef50_Q81L09: S-adenosylmethionine decarboxylase proenzyme 1|unclassified	0.1147742047
+UniRef50_E5V3Y1: Glucitol operon activator protein	0.1147674389
+UniRef50_E5V3Y1: Glucitol operon activator protein|unclassified	0.1147674389
+UniRef50_UPI00035C429C: hypothetical protein	0.1147577324
+UniRef50_UPI00035C429C: hypothetical protein|unclassified	0.1147577324
+UniRef50_UPI0001E2BDA8: homocitrate synthase	0.1147518797
+UniRef50_UPI0001E2BDA8: homocitrate synthase|unclassified	0.1147518797
+UniRef50_UPI00047EA8B8: hypothetical protein	0.1147496836
+UniRef50_UPI00047EA8B8: hypothetical protein|unclassified	0.1147496836
+UniRef50_W8X3W8	0.1147407858
+UniRef50_W8X3W8|unclassified	0.1147407858
+UniRef50_UPI0004789DF3: hypothetical protein	0.1147303194
+UniRef50_UPI0004789DF3: hypothetical protein|unclassified	0.1147303194
+UniRef50_B4U238: Mannonate dehydratase	0.1147297225
+UniRef50_B4U238: Mannonate dehydratase|unclassified	0.1147297225
+UniRef50_UPI0003A20B15: SAM-dependent methyltransferase	0.1147287804
+UniRef50_UPI0003A20B15: SAM-dependent methyltransferase|unclassified	0.1147287804
+UniRef50_I2MUJ9: Fibronectin type III domain-containing protein (Fragment)	0.1147243557
+UniRef50_I2MUJ9: Fibronectin type III domain-containing protein (Fragment)|unclassified	0.1147243557
+UniRef50_A6UX68	0.1147175133
+UniRef50_A6UX68|unclassified	0.1147175133
+UniRef50_D8LCI5	0.1147156044
+UniRef50_D8LCI5|unclassified	0.1147156044
+UniRef50_S9ULD0	0.1147018321
+UniRef50_S9ULD0|unclassified	0.1147018321
+UniRef50_UPI0002493F15: oxidoreductase	0.1146988481
+UniRef50_UPI0002493F15: oxidoreductase|unclassified	0.1146988481
+UniRef50_UPI000369FA29: hypothetical protein	0.1146909693
+UniRef50_UPI000369FA29: hypothetical protein|unclassified	0.1146909693
+UniRef50_UPI00037E18D8: hypothetical protein	0.1146899655
+UniRef50_UPI00037E18D8: hypothetical protein|unclassified	0.1146899655
+UniRef50_X1F4A1: Marine sediment metagenome DNA, contig: S03H2_C02106 (Fragment)	0.1146885432
+UniRef50_X1F4A1: Marine sediment metagenome DNA, contig: S03H2_C02106 (Fragment)|unclassified	0.1146885432
+UniRef50_UPI00036CA33F: hypothetical protein	0.1146853605
+UniRef50_UPI00036CA33F: hypothetical protein|unclassified	0.1146853605
+UniRef50_B2TTG2: IbrB protein	0.1146789059
+UniRef50_B2TTG2: IbrB protein|unclassified	0.1146789059
+UniRef50_UPI0003645411: hypothetical protein	0.1146765916
+UniRef50_UPI0003645411: hypothetical protein|unclassified	0.1146765916
+UniRef50_UPI00036B9667: hypothetical protein	0.1146748511
+UniRef50_UPI00036B9667: hypothetical protein|unclassified	0.1146748511
+UniRef50_UPI0003142AAC: hypothetical protein	0.1146578359
+UniRef50_UPI0003142AAC: hypothetical protein|unclassified	0.1146578359
+UniRef50_UPI00028904E4: two-component response regulator	0.1146490800
+UniRef50_UPI00028904E4: two-component response regulator|unclassified	0.1146490800
+UniRef50_UPI00037AB7BC: hypothetical protein	0.1146345317
+UniRef50_UPI00037AB7BC: hypothetical protein|unclassified	0.1146345317
+UniRef50_UPI00047B1B5F: methionine ABC transporter ATP-binding protein	0.1146342090
+UniRef50_UPI00047B1B5F: methionine ABC transporter ATP-binding protein|unclassified	0.1146342090
+UniRef50_U5LCP0	0.1146313366
+UniRef50_U5LCP0|unclassified	0.1146313366
+UniRef50_UPI0004677F69: oxidoreductase, partial	0.1146282636
+UniRef50_UPI0004677F69: oxidoreductase, partial|unclassified	0.1146282636
+UniRef50_Q0SIK5	0.1146199536
+UniRef50_Q0SIK5|unclassified	0.1146199536
+UniRef50_UPI0003957091	0.1146160698
+UniRef50_UPI0003957091|unclassified	0.1146160698
+UniRef50_UPI00030D3128: glycerol-3-phosphate ABC transporter permease	0.1146080011
+UniRef50_UPI00030D3128: glycerol-3-phosphate ABC transporter permease|unclassified	0.1146080011
+UniRef50_UPI00036B74A6: hypothetical protein, partial	0.1146034738
+UniRef50_UPI00036B74A6: hypothetical protein, partial|unclassified	0.1146034738
+UniRef50_UPI000262C94B: short chain dehydrogenase/reductase family oxidoreductase	0.1145979615
+UniRef50_UPI000262C94B: short chain dehydrogenase/reductase family oxidoreductase|unclassified	0.1145979615
+UniRef50_Q00719: O-methyltransferase MdmC	0.1145946383
+UniRef50_Q00719: O-methyltransferase MdmC|unclassified	0.1145946383
+UniRef50_Q4D3W2: Dihydroorotate dehydrogenase (fumarate)	0.1145892824
+UniRef50_Q4D3W2: Dihydroorotate dehydrogenase (fumarate)|unclassified	0.1145892824
+UniRef50_Q2CA79	0.1145822579
+UniRef50_Q2CA79|unclassified	0.1145822579
+UniRef50_UPI0004655A42: MULTISPECIES: 3-dehydroquinate dehydratase	0.1145754929
+UniRef50_UPI0004655A42: MULTISPECIES: 3-dehydroquinate dehydratase|unclassified	0.1145754929
+UniRef50_Q02254: Nucleoside diphosphate kinase 1	0.1145718277
+UniRef50_Q02254: Nucleoside diphosphate kinase 1|unclassified	0.1145718277
+UniRef50_Q2SSQ8: Glycerol kinase	0.1145713927
+UniRef50_Q2SSQ8: Glycerol kinase|unclassified	0.1145713927
+UniRef50_L1M8P2: Relaxase/mobilization nuclease domain protein	0.1145509638
+UniRef50_L1M8P2: Relaxase/mobilization nuclease domain protein|unclassified	0.1145509638
+UniRef50_UPI000467E1F1: hypothetical protein	0.1145436373
+UniRef50_UPI000467E1F1: hypothetical protein|unclassified	0.1145436373
+UniRef50_UPI0003787C04: hypothetical protein	0.1145401076
+UniRef50_UPI0003787C04: hypothetical protein|unclassified	0.1145401076
+UniRef50_UPI0003EE05C6: PREDICTED: protein-arginine deiminase type-2	0.1145357100
+UniRef50_UPI0003EE05C6: PREDICTED: protein-arginine deiminase type-2|unclassified	0.1145357100
+UniRef50_T1BIJ5: Appr-1-p processing domain-containing protein	0.1145215944
+UniRef50_T1BIJ5: Appr-1-p processing domain-containing protein|unclassified	0.1145215944
+UniRef50_M2VRH1: Insertion element, IS3 family protein	0.1145178490
+UniRef50_M2VRH1: Insertion element, IS3 family protein|unclassified	0.1145178490
+UniRef50_H6N9H4: GsiB2	0.1145176953
+UniRef50_H6N9H4: GsiB2|unclassified	0.1145176953
+UniRef50_UPI00047ACFC0: glutamyl-tRNA amidotransferase	0.1145142654
+UniRef50_UPI00047ACFC0: glutamyl-tRNA amidotransferase|unclassified	0.1145142654
+UniRef50_E8T732: Carbon monoxide dehydrogenase subunit G	0.1144994861
+UniRef50_E8T732: Carbon monoxide dehydrogenase subunit G|unclassified	0.1144994861
+UniRef50_Q7NGP3: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.1144958263
+UniRef50_Q7NGP3: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.1144958263
+UniRef50_Q92TW1: Ureidoglycolate lyase 2	0.1144860046
+UniRef50_Q92TW1: Ureidoglycolate lyase 2|unclassified	0.1144860046
+UniRef50_UPI000467F7F6: hypothetical protein	0.1144818722
+UniRef50_UPI000467F7F6: hypothetical protein|unclassified	0.1144818722
+UniRef50_Q1MS07: Phosphate acyltransferase	0.1144731794
+UniRef50_Q1MS07: Phosphate acyltransferase|unclassified	0.1144731794
+UniRef50_A1ASF5: Crossover junction endodeoxyribonuclease RuvC	0.1144676657
+UniRef50_A1ASF5: Crossover junction endodeoxyribonuclease RuvC|unclassified	0.1144676657
+UniRef50_Q75TQ7: Transposase of IS663	0.1144666197
+UniRef50_Q75TQ7: Transposase of IS663|unclassified	0.1144666197
+UniRef50_UPI00037A40AF: hypothetical protein	0.1144649269
+UniRef50_UPI00037A40AF: hypothetical protein|unclassified	0.1144649269
+UniRef50_UPI0003805653: dehydrogenase	0.1144643176
+UniRef50_UPI0003805653: dehydrogenase|unclassified	0.1144643176
+UniRef50_UPI0003A5820E: sodium:sulfate symporter	0.1144636370
+UniRef50_UPI0003A5820E: sodium:sulfate symporter|unclassified	0.1144636370
+UniRef50_UPI00046A73E3: nitrate ABC transporter ATP-binding protein	0.1144558839
+UniRef50_UPI00046A73E3: nitrate ABC transporter ATP-binding protein|unclassified	0.1144558839
+UniRef50_A3JQ23	0.1144486774
+UniRef50_A3JQ23|unclassified	0.1144486774
+UniRef50_W9U9U2	0.1144368502
+UniRef50_W9U9U2|unclassified	0.1144368502
+UniRef50_S6I4Z2: Gluconate 5-dehydrogenase protein	0.1144311454
+UniRef50_S6I4Z2: Gluconate 5-dehydrogenase protein|unclassified	0.1144311454
+UniRef50_E7RVE1: ABC transporter substrate binding protein	0.1144184434
+UniRef50_E7RVE1: ABC transporter substrate binding protein|unclassified	0.1144184434
+UniRef50_UPI00046AC45C: hypothetical protein	0.1144149423
+UniRef50_UPI00046AC45C: hypothetical protein|unclassified	0.1144149423
+UniRef50_UPI0002D72F69: hypothetical protein	0.1144128593
+UniRef50_UPI0002D72F69: hypothetical protein|unclassified	0.1144128593
+UniRef50_UPI00016C048C: 4-diphosphocytidyl-2C-methyl-D-erythritol kinase	0.1144080742
+UniRef50_UPI00016C048C: 4-diphosphocytidyl-2C-methyl-D-erythritol kinase|unclassified	0.1144080742
+UniRef50_UPI0004799ACD: hypothetical protein	0.1144070727
+UniRef50_UPI0004799ACD: hypothetical protein|unclassified	0.1144070727
+UniRef50_B8FMU1: Probable nicotinate-nucleotide adenylyltransferase	0.1143990101
+UniRef50_B8FMU1: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.1143990101
+UniRef50_UPI0003B5D657: NAD-dependent malic enzyme 1	0.1143974741
+UniRef50_UPI0003B5D657: NAD-dependent malic enzyme 1|unclassified	0.1143974741
+UniRef50_UPI0004777C32: glutamine amidotransferase	0.1143961075
+UniRef50_UPI0004777C32: glutamine amidotransferase|unclassified	0.1143961075
+UniRef50_UPI00046CE21C: hypoxanthine phosphoribosyltransferase	0.1143908790
+UniRef50_UPI00046CE21C: hypoxanthine phosphoribosyltransferase|unclassified	0.1143908790
+UniRef50_A0A024R014: RAN binding protein 9, isoform CRA_b	0.1143838524
+UniRef50_A0A024R014: RAN binding protein 9, isoform CRA_b|unclassified	0.1143838524
+UniRef50_Q9CEV7: Oligoendopeptidase F homolog	0.1143803203
+UniRef50_Q9CEV7: Oligoendopeptidase F homolog|unclassified	0.1143803203
+UniRef50_K2I489	0.1143794425
+UniRef50_K2I489|unclassified	0.1143794425
+UniRef50_UPI0003B58728: peptidase	0.1143660007
+UniRef50_UPI0003B58728: peptidase|unclassified	0.1143660007
+UniRef50_UPI000467EC73: formate dehydrogenase	0.1143659528
+UniRef50_UPI000467EC73: formate dehydrogenase|unclassified	0.1143659528
+UniRef50_R7F6T9: LemA family protein	0.1143431065
+UniRef50_R7F6T9: LemA family protein|unclassified	0.1143431065
+UniRef50_I3V282	0.1143407479
+UniRef50_I3V282|unclassified	0.1143407479
+UniRef50_K7KP59	0.1143374782
+UniRef50_K7KP59|unclassified	0.1143374782
+UniRef50_UPI00030F1B20: hypothetical protein	0.1143329935
+UniRef50_UPI00030F1B20: hypothetical protein|unclassified	0.1143329935
+UniRef50_V4R0T5: Hemolysin D	0.1143329049
+UniRef50_V4R0T5: Hemolysin D|unclassified	0.1143329049
+UniRef50_UPI00037CCDB1: hypothetical protein	0.1143241083
+UniRef50_UPI00037CCDB1: hypothetical protein|unclassified	0.1143241083
+UniRef50_F2IXW7: Rhodanese	0.1143224997
+UniRef50_F2IXW7: Rhodanese|unclassified	0.1143224997
+UniRef50_A0A059G6X4: Beta/gamma crystallin domain-containing protein	0.1143161582
+UniRef50_A0A059G6X4: Beta/gamma crystallin domain-containing protein|unclassified	0.1143161582
+UniRef50_UPI0003B7011B: ABC transporter	0.1143092343
+UniRef50_UPI0003B7011B: ABC transporter|unclassified	0.1143092343
+UniRef50_W7PU65	0.1143037118
+UniRef50_W7PU65|unclassified	0.1143037118
+UniRef50_Q8TK95: Bifunctional protein FolD	0.1142976055
+UniRef50_Q8TK95: Bifunctional protein FolD|unclassified	0.1142976055
+UniRef50_P59522: Ribosomal RNA small subunit methyltransferase H	0.1142942498
+UniRef50_P59522: Ribosomal RNA small subunit methyltransferase H|unclassified	0.1142942498
+UniRef50_A0A059G974: SufE family Fe-S metabolism protein	0.1142853326
+UniRef50_A0A059G974: SufE family Fe-S metabolism protein|unclassified	0.1142853326
+UniRef50_UPI00035E324B: hypothetical protein	0.1142800402
+UniRef50_UPI00035E324B: hypothetical protein|unclassified	0.1142800402
+UniRef50_UPI000367E3FA: hypothetical protein	0.1142768907
+UniRef50_UPI000367E3FA: hypothetical protein|unclassified	0.1142768907
+UniRef50_E6SM65	0.1142721483
+UniRef50_E6SM65|unclassified	0.1142721483
+UniRef50_W4ZCQ5	0.1142658429
+UniRef50_W4ZCQ5|unclassified	0.1142658429
+UniRef50_B2TIY3: Glucitol operon activator protein	0.1142621476
+UniRef50_B2TIY3: Glucitol operon activator protein|unclassified	0.1142621476
+UniRef50_UPI000225C1E8: arginine/agmatine antiporter	0.1142607475
+UniRef50_UPI000225C1E8: arginine/agmatine antiporter|unclassified	0.1142607475
+UniRef50_X2JPI4	0.1142605058
+UniRef50_X2JPI4|unclassified	0.1142605058
+UniRef50_UPI0003ADCF18: PREDICTED: splicing factor, arginine/serine-rich 19-like	0.1142597271
+UniRef50_UPI0003ADCF18: PREDICTED: splicing factor, arginine/serine-rich 19-like|unclassified	0.1142597271
+UniRef50_UPI0003453F9A: hypothetical protein	0.1142576395
+UniRef50_UPI0003453F9A: hypothetical protein|unclassified	0.1142576395
+UniRef50_Q88G66	0.1142479279
+UniRef50_Q88G66|unclassified	0.1142479279
+UniRef50_UPI0003B4E52C: peptidase T	0.1142468809
+UniRef50_UPI0003B4E52C: peptidase T|unclassified	0.1142468809
+UniRef50_UPI0003B336F8: cation transporter, partial	0.1142459436
+UniRef50_UPI0003B336F8: cation transporter, partial|unclassified	0.1142459436
+UniRef50_UPI0003B47443: peptidase S11	0.1142338020
+UniRef50_UPI0003B47443: peptidase S11|unclassified	0.1142338020
+UniRef50_E4PKV1: Flagellar motor protein MotB	0.1142277662
+UniRef50_E4PKV1: Flagellar motor protein MotB|unclassified	0.1142277662
+UniRef50_V4RSV9	0.1142270158
+UniRef50_V4RSV9|unclassified	0.1142270158
+UniRef50_UPI000050F857: peptide ABC transporter ATPase	0.1142193431
+UniRef50_UPI000050F857: peptide ABC transporter ATPase|unclassified	0.1142193431
+UniRef50_A0PP75: Acetylglutamate kinase	0.1142182179
+UniRef50_A0PP75: Acetylglutamate kinase|unclassified	0.1142182179
+UniRef50_G2QWI0	0.1142146205
+UniRef50_G2QWI0|unclassified	0.1142146205
+UniRef50_A3DJF6: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.1142129924
+UniRef50_A3DJF6: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.1142129924
+UniRef50_UPI00045E60A7: hypothetical protein	0.1142117397
+UniRef50_UPI00045E60A7: hypothetical protein|unclassified	0.1142117397
+UniRef50_E9C820	0.1142105149
+UniRef50_E9C820|unclassified	0.1142105149
+UniRef50_D0JKL5	0.1142077259
+UniRef50_D0JKL5|unclassified	0.1142077259
+UniRef50_UPI0003B71CA9: type VI secretion protein	0.1142060389
+UniRef50_UPI0003B71CA9: type VI secretion protein|unclassified	0.1142060389
+UniRef50_UPI0001FFDC96: C4-dicarboxylate ABC transporter substrate-binding protein	0.1141904203
+UniRef50_UPI0001FFDC96: C4-dicarboxylate ABC transporter substrate-binding protein|unclassified	0.1141904203
+UniRef50_H0KCQ5	0.1141892901
+UniRef50_H0KCQ5|unclassified	0.1141892901
+UniRef50_Q03CK3: Pyrrolidone-carboxylate peptidase	0.1141879129
+UniRef50_Q03CK3: Pyrrolidone-carboxylate peptidase|unclassified	0.1141879129
+UniRef50_H8KZE7: Type VI secretion protein, VC_A0107 family	0.1141807099
+UniRef50_H8KZE7: Type VI secretion protein, VC_A0107 family|unclassified	0.1141807099
+UniRef50_UPI0003B73920: LuxR family transcriptional regulator	0.1141716074
+UniRef50_UPI0003B73920: LuxR family transcriptional regulator|unclassified	0.1141716074
+UniRef50_A1B630	0.1141662390
+UniRef50_A1B630|unclassified	0.1141662390
+UniRef50_UPI000479EB25: hypothetical protein	0.1141619412
+UniRef50_UPI000479EB25: hypothetical protein|unclassified	0.1141619412
+UniRef50_UPI00047D1D43: hypothetical protein	0.1141610777
+UniRef50_UPI00047D1D43: hypothetical protein|unclassified	0.1141610777
+UniRef50_UPI00047BBB2A: protein phosphatase	0.1141499083
+UniRef50_UPI00047BBB2A: protein phosphatase|unclassified	0.1141499083
+UniRef50_UPI0001E89969: ribonuclease, Rne/Rng family	0.1141443635
+UniRef50_UPI0001E89969: ribonuclease, Rne/Rng family|unclassified	0.1141443635
+UniRef50_UPI00045EB593: hypothetical protein	0.1141413176
+UniRef50_UPI00045EB593: hypothetical protein|unclassified	0.1141413176
+UniRef50_Q8NQ46: Peptide deformylase 1	0.1141396665
+UniRef50_Q8NQ46: Peptide deformylase 1|unclassified	0.1141396665
+UniRef50_F6ETZ4: Thioesterase superfamily protein	0.1141390332
+UniRef50_F6ETZ4: Thioesterase superfamily protein|unclassified	0.1141390332
+UniRef50_R8Q219	0.1141368486
+UniRef50_R8Q219|unclassified	0.1141368486
+UniRef50_E3I978	0.1141346441
+UniRef50_E3I978|unclassified	0.1141346441
+UniRef50_S3X9I7	0.1141333385
+UniRef50_S3X9I7|unclassified	0.1141333385
+UniRef50_Q38V64: Alanine racemase	0.1141315608
+UniRef50_Q38V64: Alanine racemase|unclassified	0.1141315608
+UniRef50_UPI0003AE0059: PREDICTED: tetra-peptide repeat homeobox protein 1-like	0.1141260194
+UniRef50_UPI0003AE0059: PREDICTED: tetra-peptide repeat homeobox protein 1-like|unclassified	0.1141260194
+UniRef50_W8AW03: Integral membrane protein	0.1141238584
+UniRef50_W8AW03: Integral membrane protein|unclassified	0.1141238584
+UniRef50_K0S7T3	0.1141129078
+UniRef50_K0S7T3|unclassified	0.1141129078
+UniRef50_A2SNG4	0.1141127169
+UniRef50_A2SNG4|unclassified	0.1141127169
+UniRef50_D0DC69: Pectin degradation protein	0.1141126982
+UniRef50_D0DC69: Pectin degradation protein|unclassified	0.1141126982
+UniRef50_UPI00035C7D9D: hypothetical protein, partial	0.1140950345
+UniRef50_UPI00035C7D9D: hypothetical protein, partial|unclassified	0.1140950345
+UniRef50_UPI00036DD8CF: hypothetical protein	0.1140926304
+UniRef50_UPI00036DD8CF: hypothetical protein|unclassified	0.1140926304
+UniRef50_UPI000262CF13: tyrosine recombinase XerC	0.1140819848
+UniRef50_UPI000262CF13: tyrosine recombinase XerC|unclassified	0.1140819848
+UniRef50_A6FD16	0.1140762495
+UniRef50_A6FD16|unclassified	0.1140762495
+UniRef50_UPI000409F17A: hypothetical protein	0.1140728788
+UniRef50_UPI000409F17A: hypothetical protein|unclassified	0.1140728788
+UniRef50_UPI00030D0252: hypothetical protein	0.1140703975
+UniRef50_UPI00030D0252: hypothetical protein|unclassified	0.1140703975
+UniRef50_UPI0004742416: hypothetical protein, partial	0.1140625392
+UniRef50_UPI0004742416: hypothetical protein, partial|unclassified	0.1140625392
+UniRef50_UPI0004681C8E: hypothetical protein, partial	0.1140589524
+UniRef50_UPI0004681C8E: hypothetical protein, partial|unclassified	0.1140589524
+UniRef50_Q67J65: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 3	0.1140514862
+UniRef50_Q67J65: UDP-N-acetylglucosamine 1-carboxyvinyltransferase 3|unclassified	0.1140514862
+UniRef50_A8FSI3: Lipoprotein signal peptidase	0.1140430678
+UniRef50_A8FSI3: Lipoprotein signal peptidase|unclassified	0.1140430678
+UniRef50_UPI0003B4CFB7: magnesium chelatase, partial	0.1140396507
+UniRef50_UPI0003B4CFB7: magnesium chelatase, partial|unclassified	0.1140396507
+UniRef50_UPI00036B1698: hypothetical protein	0.1140352143
+UniRef50_UPI00036B1698: hypothetical protein|unclassified	0.1140352143
+UniRef50_N8ET27	0.1140324934
+UniRef50_N8ET27|unclassified	0.1140324934
+UniRef50_UPI00037CA473: hypothetical protein	0.1140309495
+UniRef50_UPI00037CA473: hypothetical protein|unclassified	0.1140309495
+UniRef50_S6DB49: Transposase, IS4	0.1140293289
+UniRef50_S6DB49: Transposase, IS4|unclassified	0.1140293289
+UniRef50_B7J583: DNA-directed RNA polymerase subunit omega	0.1140239991
+UniRef50_B7J583: DNA-directed RNA polymerase subunit omega|unclassified	0.1140239991
+UniRef50_UPI00040E1503: hypothetical protein	0.1140221701
+UniRef50_UPI00040E1503: hypothetical protein|unclassified	0.1140221701
+UniRef50_UPI0003343B95: PREDICTED: collagen alpha-1(I) chain-like	0.1140182629
+UniRef50_UPI0003343B95: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.1140182629
+UniRef50_Q09C64	0.1140140344
+UniRef50_Q09C64|unclassified	0.1140140344
+UniRef50_UPI00046B6905: hypothetical protein	0.1140098763
+UniRef50_UPI00046B6905: hypothetical protein|unclassified	0.1140098763
+UniRef50_UPI00037AA648: hypothetical protein	0.1140029752
+UniRef50_UPI00037AA648: hypothetical protein|unclassified	0.1140029752
+UniRef50_UPI0000561425: proline racemase, partial	0.1140026997
+UniRef50_UPI0000561425: proline racemase, partial|unclassified	0.1140026997
+UniRef50_UPI0003B71FD3: ATPase	0.1140005884
+UniRef50_UPI0003B71FD3: ATPase|unclassified	0.1140005884
+UniRef50_UPI00047049E8: membrane protein	0.1139924098
+UniRef50_UPI00047049E8: membrane protein|unclassified	0.1139924098
+UniRef50_O67610: 3-oxoacyl-[acyl-carrier-protein] reductase FabG	0.1139886896
+UniRef50_O67610: 3-oxoacyl-[acyl-carrier-protein] reductase FabG|unclassified	0.1139886896
+UniRef50_Q165N6	0.1139880713
+UniRef50_Q165N6|unclassified	0.1139880713
+UniRef50_UPI00041E6F1B: 2-nitropropane dioxygenase	0.1139763181
+UniRef50_UPI00041E6F1B: 2-nitropropane dioxygenase|unclassified	0.1139763181
+UniRef50_K5YK33: Putative lipoprotein	0.1139684254
+UniRef50_K5YK33: Putative lipoprotein|unclassified	0.1139684254
+UniRef50_UPI0003724908: hypothetical protein	0.1139682998
+UniRef50_UPI0003724908: hypothetical protein|unclassified	0.1139682998
+UniRef50_U3TW49	0.1139605761
+UniRef50_U3TW49|unclassified	0.1139605761
+UniRef50_B1YJI3	0.1139587168
+UniRef50_B1YJI3|unclassified	0.1139587168
+UniRef50_UPI0003B50997: nucleoside triphosphate pyrophosphohydrolase	0.1139560436
+UniRef50_UPI0003B50997: nucleoside triphosphate pyrophosphohydrolase|unclassified	0.1139560436
+UniRef50_UPI0003780756: SAM-dependent methyltransferase	0.1139472881
+UniRef50_UPI0003780756: SAM-dependent methyltransferase|unclassified	0.1139472881
+UniRef50_S6SZE2	0.1139377333
+UniRef50_S6SZE2|unclassified	0.1139377333
+UniRef50_UPI0003777308: hypothetical protein	0.1139331428
+UniRef50_UPI0003777308: hypothetical protein|unclassified	0.1139331428
+UniRef50_UPI00047B1E03: hypothetical protein	0.1139266507
+UniRef50_UPI00047B1E03: hypothetical protein|unclassified	0.1139266507
+UniRef50_UPI00040E3674: ABC transporter permease	0.1139259579
+UniRef50_UPI00040E3674: ABC transporter permease|unclassified	0.1139259579
+UniRef50_A8FU66: Short chain dehydrogenase	0.1139179103
+UniRef50_A8FU66: Short chain dehydrogenase|unclassified	0.1139179103
+UniRef50_F4L0T3: Short-chain dehydrogenase/reductase SDR	0.1139179103
+UniRef50_F4L0T3: Short-chain dehydrogenase/reductase SDR|unclassified	0.1139179103
+UniRef50_I7YRC5	0.1139135741
+UniRef50_I7YRC5|unclassified	0.1139135741
+UniRef50_M0X5A1	0.1139129146
+UniRef50_M0X5A1|unclassified	0.1139129146
+UniRef50_UPI00046FFDD3: iron-dicitrate transporter subunit FecD	0.1139100304
+UniRef50_UPI00046FFDD3: iron-dicitrate transporter subunit FecD|unclassified	0.1139100304
+UniRef50_UPI0003F1217F: PREDICTED: T-lymphocyte activation antigen CD80	0.1139083640
+UniRef50_UPI0003F1217F: PREDICTED: T-lymphocyte activation antigen CD80|unclassified	0.1139083640
+UniRef50_A0A059NBI7	0.1138965446
+UniRef50_A0A059NBI7|unclassified	0.1138965446
+UniRef50_UPI00037A802C: hypothetical protein	0.1138880078
+UniRef50_UPI00037A802C: hypothetical protein|unclassified	0.1138880078
+UniRef50_UPI0003B42254: CDP-diacylglycerol-glycerol-3-phosphate 3-phosphatidyltransferase	0.1138824283
+UniRef50_UPI0003B42254: CDP-diacylglycerol-glycerol-3-phosphate 3-phosphatidyltransferase|unclassified	0.1138824283
+UniRef50_U6GA17	0.1138723495
+UniRef50_U6GA17|unclassified	0.1138723495
+UniRef50_V4QDB4: Protein hupE	0.1138722459
+UniRef50_V4QDB4: Protein hupE|unclassified	0.1138722459
+UniRef50_A0A011R3T0: Formate dehydrogenase H	0.1138667862
+UniRef50_A0A011R3T0: Formate dehydrogenase H|unclassified	0.1138667862
+UniRef50_K4CVK6	0.1138641848
+UniRef50_K4CVK6|unclassified	0.1138641848
+UniRef50_J3QJD6	0.1138637098
+UniRef50_J3QJD6|unclassified	0.1138637098
+UniRef50_W5T9B1	0.1138572810
+UniRef50_W5T9B1|unclassified	0.1138572810
+UniRef50_A0A038H8I0: Thioesterase	0.1138540064
+UniRef50_A0A038H8I0: Thioesterase|unclassified	0.1138540064
+UniRef50_X7EHP2: Porin	0.1138531999
+UniRef50_X7EHP2: Porin|unclassified	0.1138531999
+UniRef50_UPI000287FA63: ATP synthase subunit B	0.1138413744
+UniRef50_UPI000287FA63: ATP synthase subunit B|unclassified	0.1138413744
+UniRef50_UPI00047C4FEB: RNA methyltransferase	0.1138382215
+UniRef50_UPI00047C4FEB: RNA methyltransferase|unclassified	0.1138382215
+UniRef50_P44931: tRNA-specific adenosine deaminase	0.1138342942
+UniRef50_P44931: tRNA-specific adenosine deaminase|unclassified	0.1138342942
+UniRef50_UPI00039E7036: DNAse	0.1138227516
+UniRef50_UPI00039E7036: DNAse|unclassified	0.1138227516
+UniRef50_UPI0003787252: hypothetical protein	0.1138001063
+UniRef50_UPI0003787252: hypothetical protein|unclassified	0.1138001063
+UniRef50_UPI0003A228A1: MULTISPECIES: DNAse	0.1137955871
+UniRef50_UPI0003A228A1: MULTISPECIES: DNAse|unclassified	0.1137955871
+UniRef50_UPI0003B62FF7: glutamine synthetase	0.1137916763
+UniRef50_UPI0003B62FF7: glutamine synthetase|unclassified	0.1137916763
+UniRef50_F8F0F6: Appr-1-p processing domain protein	0.1137816655
+UniRef50_F8F0F6: Appr-1-p processing domain protein|unclassified	0.1137816655
+UniRef50_X6FLX7: C4-dicarboxylate ABC transporter	0.1137628736
+UniRef50_X6FLX7: C4-dicarboxylate ABC transporter|unclassified	0.1137628736
+UniRef50_I1AXC0	0.1137613087
+UniRef50_I1AXC0|unclassified	0.1137613087
+UniRef50_UPI000462FA1E: hypothetical protein	0.1137590216
+UniRef50_UPI000462FA1E: hypothetical protein|unclassified	0.1137590216
+UniRef50_UPI000365C936: hypothetical protein	0.1137543355
+UniRef50_UPI000365C936: hypothetical protein|unclassified	0.1137543355
+UniRef50_F4NX63	0.1137534030
+UniRef50_F4NX63|unclassified	0.1137534030
+UniRef50_U6H505	0.1137457744
+UniRef50_U6H505|unclassified	0.1137457744
+UniRef50_UPI0003073010: ribose operon repressor	0.1137296488
+UniRef50_UPI0003073010: ribose operon repressor|unclassified	0.1137296488
+UniRef50_UPI0002ECBDBC: hypothetical protein	0.1137271853
+UniRef50_UPI0002ECBDBC: hypothetical protein|unclassified	0.1137271853
+UniRef50_L8E176: Internalin-A	0.1137182557
+UniRef50_L8E176: Internalin-A|unclassified	0.1137182557
+UniRef50_UPI00047D67EB: thioredoxin reductase	0.1137106985
+UniRef50_UPI00047D67EB: thioredoxin reductase|unclassified	0.1137106985
+UniRef50_I6DK23	0.1137096870
+UniRef50_I6DK23|unclassified	0.1137096870
+UniRef50_UPI00047B67C0: hypothetical protein	0.1137086423
+UniRef50_UPI00047B67C0: hypothetical protein|unclassified	0.1137086423
+UniRef50_UPI00036BEE0E: hypothetical protein	0.1137003546
+UniRef50_UPI00036BEE0E: hypothetical protein|unclassified	0.1137003546
+UniRef50_G5K418	0.1136938037
+UniRef50_G5K418|unclassified	0.1136938037
+UniRef50_UPI000225ABC2: NUDIX hydrolase	0.1136905831
+UniRef50_UPI000225ABC2: NUDIX hydrolase|unclassified	0.1136905831
+UniRef50_UPI00045DCA4E: PREDICTED: suppressor APC domain-containing protein 2 isoform X1	0.1136851717
+UniRef50_UPI00045DCA4E: PREDICTED: suppressor APC domain-containing protein 2 isoform X1|unclassified	0.1136851717
+UniRef50_UPI0003767F7B: hypothetical protein	0.1136781964
+UniRef50_UPI0003767F7B: hypothetical protein|unclassified	0.1136781964
+UniRef50_O24339: Catalase	0.1136744915
+UniRef50_O24339: Catalase|unclassified	0.1136744915
+UniRef50_UPI00037F416E: hypothetical protein	0.1136719721
+UniRef50_UPI00037F416E: hypothetical protein|unclassified	0.1136719721
+UniRef50_UPI00042CE0FF: PREDICTED: NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial-like, partial	0.1136586715
+UniRef50_UPI00042CE0FF: PREDICTED: NADH dehydrogenase [ubiquinone] flavoprotein 2, mitochondrial-like, partial|unclassified	0.1136586715
+UniRef50_N4X4L5	0.1136483634
+UniRef50_N4X4L5|unclassified	0.1136483634
+UniRef50_Q1MR60: Glutamate--tRNA ligase	0.1136427675
+UniRef50_Q1MR60: Glutamate--tRNA ligase|unclassified	0.1136427675
+UniRef50_R9V357	0.1136418356
+UniRef50_R9V357|unclassified	0.1136418356
+UniRef50_B8FFG4: Band 7 protein	0.1136383666
+UniRef50_B8FFG4: Band 7 protein|unclassified	0.1136383666
+UniRef50_UPI000470ED8E: hypothetical protein, partial	0.1136206528
+UniRef50_UPI000470ED8E: hypothetical protein, partial|unclassified	0.1136206528
+UniRef50_UPI000383163D: hypothetical protein	0.1136085823
+UniRef50_UPI000383163D: hypothetical protein|unclassified	0.1136085823
+UniRef50_A8LAX8	0.1136013505
+UniRef50_A8LAX8|unclassified	0.1136013505
+UniRef50_P65498: Quinolinate synthase A	0.1135968602
+UniRef50_P65498: Quinolinate synthase A|unclassified	0.1135968602
+UniRef50_UPI0003B63BD8: chromate transporter	0.1135910149
+UniRef50_UPI0003B63BD8: chromate transporter|unclassified	0.1135910149
+UniRef50_UPI00042A4C3D: hypothetical protein	0.1135908354
+UniRef50_UPI00042A4C3D: hypothetical protein|unclassified	0.1135908354
+UniRef50_UPI00036B73FA: hypothetical protein	0.1135893077
+UniRef50_UPI00036B73FA: hypothetical protein|unclassified	0.1135893077
+UniRef50_UPI00046A3637: phosphatidylethanolamine N-methyltransferase	0.1135795310
+UniRef50_UPI00046A3637: phosphatidylethanolamine N-methyltransferase|unclassified	0.1135795310
+UniRef50_UPI0003670E0E: hypothetical protein	0.1135738945
+UniRef50_UPI0003670E0E: hypothetical protein|unclassified	0.1135738945
+UniRef50_UPI00046A706B: hypothetical protein	0.1135636532
+UniRef50_UPI00046A706B: hypothetical protein|unclassified	0.1135636532
+UniRef50_U3BC68	0.1135591662
+UniRef50_U3BC68|unclassified	0.1135591662
+UniRef50_Q49XL0	0.1135446138
+UniRef50_Q49XL0|unclassified	0.1135446138
+UniRef50_UPI000378CF57: hypothetical protein	0.1135440549
+UniRef50_UPI000378CF57: hypothetical protein|unclassified	0.1135440549
+UniRef50_X3K6W4	0.1135372997
+UniRef50_X3K6W4|unclassified	0.1135372997
+UniRef50_X0Z184: Marine sediment metagenome DNA, contig: S01H1_S41450 (Fragment)	0.1135361255
+UniRef50_X0Z184: Marine sediment metagenome DNA, contig: S01H1_S41450 (Fragment)|unclassified	0.1135361255
+UniRef50_UPI00034B9202: hypothetical protein	0.1135331637
+UniRef50_UPI00034B9202: hypothetical protein|unclassified	0.1135331637
+UniRef50_UPI00046FB92C: ribonuclease I	0.1135326269
+UniRef50_UPI00046FB92C: ribonuclease I|unclassified	0.1135326269
+UniRef50_I3TH67: Zinc-finger protein	0.1135292869
+UniRef50_I3TH67: Zinc-finger protein|unclassified	0.1135292869
+UniRef50_UPI0003B3E522: hypothetical protein	0.1135285585
+UniRef50_UPI0003B3E522: hypothetical protein|unclassified	0.1135285585
+UniRef50_Q2GDD8: 3-oxoacyl-[acyl-carrier-protein] synthase 3	0.1135285356
+UniRef50_Q2GDD8: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	0.1135285356
+UniRef50_A4X0B2	0.1135273411
+UniRef50_A4X0B2|unclassified	0.1135273411
+UniRef50_A0A026F717: Autoinducer 2-binding protein lsrB	0.1135014430
+UniRef50_A0A026F717: Autoinducer 2-binding protein lsrB|unclassified	0.1135014430
+UniRef50_A0A024HPI3: Hypothetical secreted protein	0.1135007977
+UniRef50_A0A024HPI3: Hypothetical secreted protein|unclassified	0.1135007977
+UniRef50_Q0AWZ8: Chemotaxis response regulator protein-glutamate methylesterase 3	0.1135004865
+UniRef50_Q0AWZ8: Chemotaxis response regulator protein-glutamate methylesterase 3|unclassified	0.1135004865
+UniRef50_U7FN85	0.1134973252
+UniRef50_U7FN85|unclassified	0.1134973252
+UniRef50_UPI0003B6C534: FAD-dependent oxidoreductase, partial	0.1134904750
+UniRef50_UPI0003B6C534: FAD-dependent oxidoreductase, partial|unclassified	0.1134904750
+UniRef50_V4JAU3	0.1134858609
+UniRef50_V4JAU3|unclassified	0.1134858609
+UniRef50_UPI00047CC978: hypothetical protein	0.1134724951
+UniRef50_UPI00047CC978: hypothetical protein|unclassified	0.1134724951
+UniRef50_A3K1Y9	0.1134611618
+UniRef50_A3K1Y9|unclassified	0.1134611618
+UniRef50_Z2DT28	0.1134501070
+UniRef50_Z2DT28|unclassified	0.1134501070
+UniRef50_UPI00037075A9: hypothetical protein	0.1134384321
+UniRef50_UPI00037075A9: hypothetical protein|unclassified	0.1134384321
+UniRef50_UPI0003689E29: hypothetical protein	0.1134381682
+UniRef50_UPI0003689E29: hypothetical protein|unclassified	0.1134381682
+UniRef50_UPI00035E32A2: hypothetical protein	0.1134295551
+UniRef50_UPI00035E32A2: hypothetical protein|unclassified	0.1134295551
+UniRef50_W9C3F0	0.1134232847
+UniRef50_W9C3F0|unclassified	0.1134232847
+UniRef50_A1JMP2: Nicotinate phosphoribosyltransferase	0.1134199292
+UniRef50_A1JMP2: Nicotinate phosphoribosyltransferase|unclassified	0.1134199292
+UniRef50_UPI00026CCB87: carbamoyl phosphate synthase small subunit, partial	0.1134195097
+UniRef50_UPI00026CCB87: carbamoyl phosphate synthase small subunit, partial|unclassified	0.1134195097
+UniRef50_UPI0004764B37: phosphoglyceromutase	0.1134153224
+UniRef50_UPI0004764B37: phosphoglyceromutase|unclassified	0.1134153224
+UniRef50_F0SPT4: YCII-related protein	0.1134113792
+UniRef50_F0SPT4: YCII-related protein|unclassified	0.1134113792
+UniRef50_UPI00046469DD: competence protein	0.1133943108
+UniRef50_UPI00046469DD: competence protein|unclassified	0.1133943108
+UniRef50_M4MH47: Cytochrome c binding protein	0.1133925251
+UniRef50_M4MH47: Cytochrome c binding protein|unclassified	0.1133925251
+UniRef50_UPI00016A6611: RND efflux system, outer membrane lipoprotein, NodT family, partial	0.1133901801
+UniRef50_UPI00016A6611: RND efflux system, outer membrane lipoprotein, NodT family, partial|unclassified	0.1133901801
+UniRef50_D3FUZ6	0.1133867528
+UniRef50_D3FUZ6|unclassified	0.1133867528
+UniRef50_U1ZTK2	0.1133860910
+UniRef50_U1ZTK2|unclassified	0.1133860910
+UniRef50_K5ZQ63	0.1133816301
+UniRef50_K5ZQ63|unclassified	0.1133816301
+UniRef50_A0A029LQE7	0.1133786848
+UniRef50_A0A029LQE7|unclassified	0.1133786848
+UniRef50_UPI00037FDED0: 30S ribosomal protein S1, partial	0.1133753284
+UniRef50_UPI00037FDED0: 30S ribosomal protein S1, partial|unclassified	0.1133753284
+UniRef50_F0SNC4	0.1133752756
+UniRef50_F0SNC4|unclassified	0.1133752756
+UniRef50_W6TXH2	0.1133717919
+UniRef50_W6TXH2|unclassified	0.1133717919
+UniRef50_UPI0003AEE1CA: PREDICTED: GTP cyclohydrolase 1-like	0.1133668685
+UniRef50_UPI0003AEE1CA: PREDICTED: GTP cyclohydrolase 1-like|unclassified	0.1133668685
+UniRef50_J1PG59: Fibronectin/fibrinogen binding domain protein	0.1133607293
+UniRef50_J1PG59: Fibronectin/fibrinogen binding domain protein|unclassified	0.1133607293
+UniRef50_UPI0002F80699: hypothetical protein	0.1133586497
+UniRef50_UPI0002F80699: hypothetical protein|unclassified	0.1133586497
+UniRef50_UPI00046FA017: oxidoreductase	0.1133457935
+UniRef50_UPI00046FA017: oxidoreductase|unclassified	0.1133457935
+UniRef50_UPI00047099D4: hypothetical protein	0.1133413984
+UniRef50_UPI00047099D4: hypothetical protein|unclassified	0.1133413984
+UniRef50_UPI0001E89769: hypothetical protein	0.1133374183
+UniRef50_UPI0001E89769: hypothetical protein|unclassified	0.1133374183
+UniRef50_F8JB05	0.1133361926
+UniRef50_F8JB05|unclassified	0.1133361926
+UniRef50_UPI00035FFDF1: hypothetical protein, partial	0.1133289197
+UniRef50_UPI00035FFDF1: hypothetical protein, partial|unclassified	0.1133289197
+UniRef50_UPI0003A45EE2: alkyl hydroperoxide reductase	0.1133146714
+UniRef50_UPI0003A45EE2: alkyl hydroperoxide reductase|unclassified	0.1133146714
+UniRef50_A5EF64	0.1133057101
+UniRef50_A5EF64|unclassified	0.1133057101
+UniRef50_R7AHD8	0.1132979054
+UniRef50_R7AHD8|unclassified	0.1132979054
+UniRef50_UPI000262A4B3: zinc protease	0.1132946645
+UniRef50_UPI000262A4B3: zinc protease|unclassified	0.1132946645
+UniRef50_UPI0003B34618: hypothetical protein	0.1132897552
+UniRef50_UPI0003B34618: hypothetical protein|unclassified	0.1132897552
+UniRef50_A0KNV0: Conserved domain protein	0.1132832204
+UniRef50_A0KNV0: Conserved domain protein|unclassified	0.1132832204
+UniRef50_P26885: Peptidyl-prolyl cis-trans isomerase FKBP2	0.1132810921
+UniRef50_P26885: Peptidyl-prolyl cis-trans isomerase FKBP2|unclassified	0.1132810921
+UniRef50_UPI000424F639: hypothetical protein	0.1132796564
+UniRef50_UPI000424F639: hypothetical protein|unclassified	0.1132796564
+UniRef50_UPI0004708FDA: hypothetical protein	0.1132791470
+UniRef50_UPI0004708FDA: hypothetical protein|unclassified	0.1132791470
+UniRef50_UPI00040CA38E: SAM-dependent methyltransferase	0.1132595588
+UniRef50_UPI00040CA38E: SAM-dependent methyltransferase|unclassified	0.1132595588
+UniRef50_D4JZW0: Virulence protein	0.1132585109
+UniRef50_D4JZW0: Virulence protein|unclassified	0.1132585109
+UniRef50_R1B708	0.1132515531
+UniRef50_R1B708|unclassified	0.1132515531
+UniRef50_UPI00037C86FD: hypothetical protein	0.1132401831
+UniRef50_UPI00037C86FD: hypothetical protein|unclassified	0.1132401831
+UniRef50_UPI000262C9D9: glucose sorbosone dehydrogenase	0.1132394315
+UniRef50_UPI000262C9D9: glucose sorbosone dehydrogenase|unclassified	0.1132394315
+UniRef50_P64185: Glycerol-3-phosphate dehydrogenase 2	0.1132360581
+UniRef50_P64185: Glycerol-3-phosphate dehydrogenase 2|unclassified	0.1132360581
+UniRef50_D3FXC3: LPXTG-motif cell wall anchor domain protein	0.1132333343
+UniRef50_D3FXC3: LPXTG-motif cell wall anchor domain protein|unclassified	0.1132333343
+UniRef50_UPI0002003940: tRNA isopentenyltransferase, partial	0.1132319598
+UniRef50_UPI0002003940: tRNA isopentenyltransferase, partial|unclassified	0.1132319598
+UniRef50_G0A9D9	0.1132292589
+UniRef50_G0A9D9|unclassified	0.1132292589
+UniRef50_J9NYW3	0.1132289976
+UniRef50_J9NYW3|unclassified	0.1132289976
+UniRef50_M2YIP9: Sulfate transporter	0.1132173172
+UniRef50_M2YIP9: Sulfate transporter|unclassified	0.1132173172
+UniRef50_UPI00036FDAD0: hypothetical protein	0.1132129501
+UniRef50_UPI00036FDAD0: hypothetical protein|unclassified	0.1132129501
+UniRef50_UPI00041C72E6: hypothetical protein	0.1132021911
+UniRef50_UPI00041C72E6: hypothetical protein|unclassified	0.1132021911
+UniRef50_G8DGG3	0.1131999540
+UniRef50_G8DGG3|unclassified	0.1131999540
+UniRef50_UPI0003FBE7B3: hypothetical protein	0.1131925722
+UniRef50_UPI0003FBE7B3: hypothetical protein|unclassified	0.1131925722
+UniRef50_UPI000470534B: hypothetical protein, partial	0.1131903315
+UniRef50_UPI000470534B: hypothetical protein, partial|unclassified	0.1131903315
+UniRef50_Q7S1Y1	0.1131880860
+UniRef50_Q7S1Y1|unclassified	0.1131880860
+UniRef50_UPI00047D9E69: ABC transporter ATP-binding protein	0.1131732533
+UniRef50_UPI00047D9E69: ABC transporter ATP-binding protein|unclassified	0.1131732533
+UniRef50_UPI00035C27FD: hypothetical protein	0.1131727095
+UniRef50_UPI00035C27FD: hypothetical protein|unclassified	0.1131727095
+UniRef50_E3EZ53: 27 kDa outer membrane protein, putative	0.1131706878
+UniRef50_E3EZ53: 27 kDa outer membrane protein, putative|unclassified	0.1131706878
+UniRef50_UPI0003159FA7: hypothetical protein	0.1131649922
+UniRef50_UPI0003159FA7: hypothetical protein|unclassified	0.1131649922
+UniRef50_E8SEL2	0.1131642601
+UniRef50_E8SEL2|unclassified	0.1131642601
+UniRef50_UPI0003650BE9: hypothetical protein	0.1131537834
+UniRef50_UPI0003650BE9: hypothetical protein|unclassified	0.1131537834
+UniRef50_UPI00035DA66F: hypothetical protein	0.1131480730
+UniRef50_UPI00035DA66F: hypothetical protein|unclassified	0.1131480730
+UniRef50_UPI000379B915: hypothetical protein	0.1131418979
+UniRef50_UPI000379B915: hypothetical protein|unclassified	0.1131418979
+UniRef50_UPI0003B3E90C: haloacid dehalogenase	0.1131391193
+UniRef50_UPI0003B3E90C: haloacid dehalogenase|unclassified	0.1131391193
+UniRef50_P23105: 2-hydroxymuconic semialdehyde dehydrogenase	0.1131364124
+UniRef50_P23105: 2-hydroxymuconic semialdehyde dehydrogenase|unclassified	0.1131364124
+UniRef50_UPI000479F530: ABC transporter	0.1131346112
+UniRef50_UPI000479F530: ABC transporter|unclassified	0.1131346112
+UniRef50_UPI0004654C4E: hypothetical protein	0.1131343736
+UniRef50_UPI0004654C4E: hypothetical protein|unclassified	0.1131343736
+UniRef50_A6E1F6	0.1131310872
+UniRef50_A6E1F6|unclassified	0.1131310872
+UniRef50_UPI00036733B1: MULTISPECIES: hypothetical protein	0.1131159447
+UniRef50_UPI00036733B1: MULTISPECIES: hypothetical protein|unclassified	0.1131159447
+UniRef50_X1NC07: Marine sediment metagenome DNA, contig: S06H3_S17222	0.1131040492
+UniRef50_X1NC07: Marine sediment metagenome DNA, contig: S06H3_S17222|unclassified	0.1131040492
+UniRef50_UPI00046ED66D: aminotransferase	0.1131013277
+UniRef50_UPI00046ED66D: aminotransferase|unclassified	0.1131013277
+UniRef50_UPI00047590CD: hypothetical protein, partial	0.1131008882
+UniRef50_UPI00047590CD: hypothetical protein, partial|unclassified	0.1131008882
+UniRef50_UPI000398FF39: PREDICTED: macrophage-capping protein-like	0.1130998970
+UniRef50_UPI000398FF39: PREDICTED: macrophage-capping protein-like|unclassified	0.1130998970
+UniRef50_UPI00046998A8: preprotein translocase subunit SecD	0.1130967111
+UniRef50_UPI00046998A8: preprotein translocase subunit SecD|unclassified	0.1130967111
+UniRef50_UPI00035F165C: hypothetical protein	0.1130927949
+UniRef50_UPI00035F165C: hypothetical protein|unclassified	0.1130927949
+UniRef50_A4J5C3: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	0.1130915763
+UniRef50_A4J5C3: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.1130915763
+UniRef50_UPI0002191618: 6-phospho-beta-glucosidase	0.1130829508
+UniRef50_UPI0002191618: 6-phospho-beta-glucosidase|unclassified	0.1130829508
+UniRef50_D9UKD4: Predicted protein	0.1130656311
+UniRef50_D9UKD4: Predicted protein|unclassified	0.1130656311
+UniRef50_A7I854: 4-hydroxy-tetrahydrodipicolinate reductase	0.1130637509
+UniRef50_A7I854: 4-hydroxy-tetrahydrodipicolinate reductase|unclassified	0.1130637509
+UniRef50_UPI00047D2B8D: cytochrome BD ubiquinol oxidase subunit II	0.1130565035
+UniRef50_UPI00047D2B8D: cytochrome BD ubiquinol oxidase subunit II|unclassified	0.1130565035
+UniRef50_UPI0002658D4B: PREDICTED: epidermal retinol dehydrogenase 2-like	0.1130242318
+UniRef50_UPI0002658D4B: PREDICTED: epidermal retinol dehydrogenase 2-like|unclassified	0.1130242318
+UniRef50_Q15W23	0.1130178125
+UniRef50_Q15W23|unclassified	0.1130178125
+UniRef50_Q5LXZ9: Argininosuccinate lyase	0.1130081021
+UniRef50_Q5LXZ9: Argininosuccinate lyase|unclassified	0.1130081021
+UniRef50_I3TRT4	0.1130023592
+UniRef50_I3TRT4|unclassified	0.1130023592
+UniRef50_UPI00035C28A5: hypothetical protein, partial	0.1129799428
+UniRef50_UPI00035C28A5: hypothetical protein, partial|unclassified	0.1129799428
+UniRef50_H6SIV9	0.1129770530
+UniRef50_H6SIV9|unclassified	0.1129770530
+UniRef50_UPI00036D0AD1: hypothetical protein	0.1129720916
+UniRef50_UPI00036D0AD1: hypothetical protein|unclassified	0.1129720916
+UniRef50_F0ZVJ1	0.1129629437
+UniRef50_F0ZVJ1|unclassified	0.1129629437
+UniRef50_Q87M60: Galactokinase	0.1129622241
+UniRef50_Q87M60: Galactokinase|unclassified	0.1129622241
+UniRef50_C5BMV7: RES	0.1129600573
+UniRef50_C5BMV7: RES|unclassified	0.1129600573
+UniRef50_U6LYK8	0.1129521469
+UniRef50_U6LYK8|unclassified	0.1129521469
+UniRef50_Q6ANV2: Homoserine O-acetyltransferase	0.1129511556
+UniRef50_Q6ANV2: Homoserine O-acetyltransferase|unclassified	0.1129511556
+UniRef50_UPI000479F72A: hypothetical protein	0.1129499522
+UniRef50_UPI000479F72A: hypothetical protein|unclassified	0.1129499522
+UniRef50_UPI000361E4A2: hypothetical protein	0.1129455642
+UniRef50_UPI000361E4A2: hypothetical protein|unclassified	0.1129455642
+UniRef50_C0D059	0.1129440504
+UniRef50_C0D059|unclassified	0.1129440504
+UniRef50_UPI0003B47F6F: 50S ribosomal protein L11 methyltransferase	0.1129392405
+UniRef50_UPI0003B47F6F: 50S ribosomal protein L11 methyltransferase|unclassified	0.1129392405
+UniRef50_UPI0003819143: 30S ribosomal protein S5	0.1129382318
+UniRef50_UPI0003819143: 30S ribosomal protein S5|unclassified	0.1129382318
+UniRef50_Q9SFH9: Delta-aminolevulinic acid dehydratase 1, chloroplastic	0.1129146139
+UniRef50_Q9SFH9: Delta-aminolevulinic acid dehydratase 1, chloroplastic|unclassified	0.1129146139
+UniRef50_UPI0003AEA2A6: PREDICTED: LOW QUALITY PROTEIN: human immunodeficiency virus type I enhancer binding protein 3	0.1129070266
+UniRef50_UPI0003AEA2A6: PREDICTED: LOW QUALITY PROTEIN: human immunodeficiency virus type I enhancer binding protein 3|unclassified	0.1129070266
+UniRef50_F0Y325	0.1129050469
+UniRef50_F0Y325|unclassified	0.1129050469
+UniRef50_Q2W0P3: Exopolyphosphatase	0.1129034890
+UniRef50_Q2W0P3: Exopolyphosphatase|unclassified	0.1129034890
+UniRef50_B3S4Z8	0.1129034646
+UniRef50_B3S4Z8|unclassified	0.1129034646
+UniRef50_A6WBD8: NmrA family protein	0.1128800855
+UniRef50_A6WBD8: NmrA family protein|unclassified	0.1128800855
+UniRef50_UPI0002630664: dTDP-4-dehydrorhamnose reductase	0.1128673731
+UniRef50_UPI0002630664: dTDP-4-dehydrorhamnose reductase|unclassified	0.1128673731
+UniRef50_UPI0003B5A522: dihydrofolate reductase	0.1128656764
+UniRef50_UPI0003B5A522: dihydrofolate reductase|unclassified	0.1128656764
+UniRef50_UPI0003782DAF: hypothetical protein	0.1128652085
+UniRef50_UPI0003782DAF: hypothetical protein|unclassified	0.1128652085
+UniRef50_Q0IAG5	0.1128615464
+UniRef50_Q0IAG5|unclassified	0.1128615464
+UniRef50_UPI00035C36B2: hypothetical protein	0.1128581725
+UniRef50_UPI00035C36B2: hypothetical protein|unclassified	0.1128581725
+UniRef50_K7U3I9	0.1128496358
+UniRef50_K7U3I9|unclassified	0.1128496358
+UniRef50_A1WX39: Cyclase/dehydrase	0.1128473166
+UniRef50_A1WX39: Cyclase/dehydrase|unclassified	0.1128473166
+UniRef50_B7GHR6	0.1128328928
+UniRef50_B7GHR6|unclassified	0.1128328928
+UniRef50_UPI000288E38C: 5-oxoprolinase	0.1128259390
+UniRef50_UPI000288E38C: 5-oxoprolinase|unclassified	0.1128259390
+UniRef50_B5H2Y1	0.1128226947
+UniRef50_B5H2Y1|unclassified	0.1128226947
+UniRef50_A0A058ZHT5	0.1128197853
+UniRef50_A0A058ZHT5|unclassified	0.1128197853
+UniRef50_UPI00036E5648: hypothetical protein	0.1128193483
+UniRef50_UPI00036E5648: hypothetical protein|unclassified	0.1128193483
+UniRef50_UPI00047780D2: alanine dehydrogenase	0.1128089573
+UniRef50_UPI00047780D2: alanine dehydrogenase|unclassified	0.1128089573
+UniRef50_U3STI5	0.1127863875
+UniRef50_U3STI5|unclassified	0.1127863875
+UniRef50_UPI000300B491: hypothetical protein	0.1127830338
+UniRef50_UPI000300B491: hypothetical protein|unclassified	0.1127830338
+UniRef50_G7D3W1	0.1127782947
+UniRef50_G7D3W1|unclassified	0.1127782947
+UniRef50_UPI000467379F: hypothetical protein	0.1127672922
+UniRef50_UPI000467379F: hypothetical protein|unclassified	0.1127672922
+UniRef50_B2A6Z3: Triosephosphate isomerase	0.1127567433
+UniRef50_B2A6Z3: Triosephosphate isomerase|unclassified	0.1127567433
+UniRef50_Q8ZKA8: Epoxyqueuosine reductase	0.1127549054
+UniRef50_Q8ZKA8: Epoxyqueuosine reductase|unclassified	0.1127549054
+UniRef50_Q8KC37	0.1127526885
+UniRef50_Q8KC37|unclassified	0.1127526885
+UniRef50_A4ER59	0.1127412077
+UniRef50_A4ER59|unclassified	0.1127412077
+UniRef50_U6JRA6	0.1127346115
+UniRef50_U6JRA6|unclassified	0.1127346115
+UniRef50_J2NSY8	0.1127231047
+UniRef50_J2NSY8|unclassified	0.1127231047
+UniRef50_A0A011MCU9: Dihem cytochrome c	0.1127117676
+UniRef50_A0A011MCU9: Dihem cytochrome c|unclassified	0.1127117676
+UniRef50_A0YFM4	0.1126939619
+UniRef50_A0YFM4|unclassified	0.1126939619
+UniRef50_W4RHV4: Phosphoesterase	0.1126925834
+UniRef50_W4RHV4: Phosphoesterase|unclassified	0.1126925834
+UniRef50_UPI0002D42EAE: hypothetical protein	0.1126903048
+UniRef50_UPI0002D42EAE: hypothetical protein|unclassified	0.1126903048
+UniRef50_Q2VZA7	0.1126882566
+UniRef50_Q2VZA7|unclassified	0.1126882566
+UniRef50_Q2SRZ3: Adenine phosphoribosyltransferase	0.1126862677
+UniRef50_Q2SRZ3: Adenine phosphoribosyltransferase|unclassified	0.1126862677
+UniRef50_L0LQY6	0.1126856367
+UniRef50_L0LQY6|unclassified	0.1126856367
+UniRef50_X6PGB4	0.1126813959
+UniRef50_X6PGB4|unclassified	0.1126813959
+UniRef50_UPI000362D292: hypothetical protein	0.1126810655
+UniRef50_UPI000362D292: hypothetical protein|unclassified	0.1126810655
+UniRef50_UPI00016C35B9: multifunctional fatty acid oxidation complex subunit alpha	0.1126794108
+UniRef50_UPI00016C35B9: multifunctional fatty acid oxidation complex subunit alpha|unclassified	0.1126794108
+UniRef50_UPI0003704F36: SpoVR family protein, partial	0.1126702272
+UniRef50_UPI0003704F36: SpoVR family protein, partial|unclassified	0.1126702272
+UniRef50_W7SDA6: LigA protein	0.1126538613
+UniRef50_W7SDA6: LigA protein|unclassified	0.1126538613
+UniRef50_UPI000362B874: hypothetical protein	0.1126498184
+UniRef50_UPI000362B874: hypothetical protein|unclassified	0.1126498184
+UniRef50_UPI000317D125: hypothetical protein	0.1126497315
+UniRef50_UPI000317D125: hypothetical protein|unclassified	0.1126497315
+UniRef50_I2B5X4: Prepilin peptidase dependent protein B	0.1126480636
+UniRef50_I2B5X4: Prepilin peptidase dependent protein B|unclassified	0.1126480636
+UniRef50_UPI0003B4F317: ABC transporter ATP-binding protein, partial	0.1126445477
+UniRef50_UPI0003B4F317: ABC transporter ATP-binding protein, partial|unclassified	0.1126445477
+UniRef50_W5XB53: Putative hydrolase	0.1126197350
+UniRef50_W5XB53: Putative hydrolase|unclassified	0.1126197350
+UniRef50_Q9LYB4: Probable glutathione peroxidase 5	0.1126093009
+UniRef50_Q9LYB4: Probable glutathione peroxidase 5|unclassified	0.1126093009
+UniRef50_S6AFH3	0.1125960952
+UniRef50_S6AFH3|unclassified	0.1125960952
+UniRef50_B8DDV4: Peptidoglycan bound protein	0.1125948857
+UniRef50_B8DDV4: Peptidoglycan bound protein|unclassified	0.1125948857
+UniRef50_E9DR63	0.1125928978
+UniRef50_E9DR63|unclassified	0.1125928978
+UniRef50_E6PPL3: Putative permease	0.1125921369
+UniRef50_E6PPL3: Putative permease|unclassified	0.1125921369
+UniRef50_I0VI98: Rhamnulose-1-phosphate aldolase	0.1125881575
+UniRef50_I0VI98: Rhamnulose-1-phosphate aldolase|unclassified	0.1125881575
+UniRef50_S6D6P3: WGR domain-containing protein	0.1125866787
+UniRef50_S6D6P3: WGR domain-containing protein|unclassified	0.1125866787
+UniRef50_Q5H1F4: Ribonuclease HII	0.1125821075
+UniRef50_Q5H1F4: Ribonuclease HII|unclassified	0.1125821075
+UniRef50_UPI00031C00D7: hypothetical protein	0.1125769996
+UniRef50_UPI00031C00D7: hypothetical protein|unclassified	0.1125769996
+UniRef50_W2UZ14	0.1125692772
+UniRef50_W2UZ14|unclassified	0.1125692772
+UniRef50_V5FCZ6	0.1125559745
+UniRef50_V5FCZ6|unclassified	0.1125559745
+UniRef50_U6LXV1	0.1125557716
+UniRef50_U6LXV1|unclassified	0.1125557716
+UniRef50_Q0TMD2	0.1125501986
+UniRef50_Q0TMD2|unclassified	0.1125501986
+UniRef50_X1EPX1: Marine sediment metagenome DNA, contig: S01H4_S21280 (Fragment)	0.1125357918
+UniRef50_X1EPX1: Marine sediment metagenome DNA, contig: S01H4_S21280 (Fragment)|unclassified	0.1125357918
+UniRef50_UPI0003598449: PREDICTED: sperm acrosomal protein FSA-ACR.1-like	0.1125349803
+UniRef50_UPI0003598449: PREDICTED: sperm acrosomal protein FSA-ACR.1-like|unclassified	0.1125349803
+UniRef50_C2Z180	0.1125266998
+UniRef50_C2Z180|unclassified	0.1125266998
+UniRef50_W7ZWC1: Glyoxalase family protein	0.1125182927
+UniRef50_W7ZWC1: Glyoxalase family protein|unclassified	0.1125182927
+UniRef50_UPI000262CF2F: amino acid ABC transporter	0.1125131484
+UniRef50_UPI000262CF2F: amino acid ABC transporter|unclassified	0.1125131484
+UniRef50_UPI00047EFDED: hypothetical protein	0.1125047476
+UniRef50_UPI00047EFDED: hypothetical protein|unclassified	0.1125047476
+UniRef50_B0U1D6: Orotidine 5'-phosphate decarboxylase	0.1125043949
+UniRef50_B0U1D6: Orotidine 5'-phosphate decarboxylase|unclassified	0.1125043949
+UniRef50_D9URJ4: Thiamine S protein (Fragment)	0.1125032478
+UniRef50_D9URJ4: Thiamine S protein (Fragment)|unclassified	0.1125032478
+UniRef50_B0UQ04: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	0.1124995051
+UniRef50_B0UQ04: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|unclassified	0.1124995051
+UniRef50_H3F815	0.1124950089
+UniRef50_H3F815|unclassified	0.1124950089
+UniRef50_I3BUG2: Putative lipoprotein	0.1124933634
+UniRef50_I3BUG2: Putative lipoprotein|unclassified	0.1124933634
+UniRef50_X1YFL0: Delta-aminolevulinic acid dehydratase	0.1124930678
+UniRef50_X1YFL0: Delta-aminolevulinic acid dehydratase|unclassified	0.1124930678
+UniRef50_UPI0003685FBA: hypothetical protein	0.1124879546
+UniRef50_UPI0003685FBA: hypothetical protein|unclassified	0.1124879546
+UniRef50_Q2YQS6: Endoribonuclease YbeY	0.1124857148
+UniRef50_Q2YQS6: Endoribonuclease YbeY|unclassified	0.1124857148
+UniRef50_UPI000377F438: hypothetical protein	0.1124836907
+UniRef50_UPI000377F438: hypothetical protein|unclassified	0.1124836907
+UniRef50_F0DH60	0.1124738359
+UniRef50_F0DH60|unclassified	0.1124738359
+UniRef50_D3UME2	0.1124711125
+UniRef50_D3UME2|unclassified	0.1124711125
+UniRef50_U6JPQ8	0.1124672433
+UniRef50_U6JPQ8|unclassified	0.1124672433
+UniRef50_UPI00037F315F: hypothetical protein	0.1124671439
+UniRef50_UPI00037F315F: hypothetical protein|unclassified	0.1124671439
+UniRef50_E6QHC2: ORFB of ISCARN48, IS66 family	0.1124659138
+UniRef50_E6QHC2: ORFB of ISCARN48, IS66 family|unclassified	0.1124659138
+UniRef50_UPI0003B6467E: hypothetical protein	0.1124538723
+UniRef50_UPI0003B6467E: hypothetical protein|unclassified	0.1124538723
+UniRef50_E8LQJ4	0.1124493060
+UniRef50_E8LQJ4|unclassified	0.1124493060
+UniRef50_UPI00037FA0C8: hypothetical protein	0.1124421921
+UniRef50_UPI00037FA0C8: hypothetical protein|unclassified	0.1124421921
+UniRef50_UPI00035E6BB4: terminase	0.1124395575
+UniRef50_UPI00035E6BB4: terminase|unclassified	0.1124395575
+UniRef50_UPI00036E6B66: MULTISPECIES: 50S ribosomal protein L22	0.1124310040
+UniRef50_UPI00036E6B66: MULTISPECIES: 50S ribosomal protein L22|unclassified	0.1124310040
+UniRef50_P31074: Dihydrofolate reductase	0.1124235040
+UniRef50_P31074: Dihydrofolate reductase|unclassified	0.1124235040
+UniRef50_A1S1L7: Rhodanese-like protein	0.1124223498
+UniRef50_A1S1L7: Rhodanese-like protein|unclassified	0.1124223498
+UniRef50_T0HC64	0.1124142768
+UniRef50_T0HC64|unclassified	0.1124142768
+UniRef50_UPI00034D8309: hypothetical protein	0.1124128001
+UniRef50_UPI00034D8309: hypothetical protein|unclassified	0.1124128001
+UniRef50_R5TNZ5: Biotin-dependent carboxylase domain protein	0.1124090491
+UniRef50_R5TNZ5: Biotin-dependent carboxylase domain protein|unclassified	0.1124090491
+UniRef50_UPI000473FF1D: hypothetical protein, partial	0.1124051047
+UniRef50_UPI000473FF1D: hypothetical protein, partial|unclassified	0.1124051047
+UniRef50_UPI0003B43349: cell division protein FtsZ	0.1123976089
+UniRef50_UPI0003B43349: cell division protein FtsZ|unclassified	0.1123976089
+UniRef50_F9F419	0.1123918153
+UniRef50_F9F419|unclassified	0.1123918153
+UniRef50_UPI0003617A41: hypothetical protein	0.1123867596
+UniRef50_UPI0003617A41: hypothetical protein|unclassified	0.1123867596
+UniRef50_L1JP14	0.1123785981
+UniRef50_L1JP14|unclassified	0.1123785981
+UniRef50_UPI00047572A2: tRNA delta(2)-isopentenylpyrophosphate transferase	0.1123776745
+UniRef50_UPI00047572A2: tRNA delta(2)-isopentenylpyrophosphate transferase|unclassified	0.1123776745
+UniRef50_S6AEM3	0.1123725706
+UniRef50_S6AEM3|unclassified	0.1123725706
+UniRef50_UPI00035F5471: hypothetical protein	0.1123621375
+UniRef50_UPI00035F5471: hypothetical protein|unclassified	0.1123621375
+UniRef50_I1ASL4: Esterase EstC, putative	0.1123585633
+UniRef50_I1ASL4: Esterase EstC, putative|unclassified	0.1123585633
+UniRef50_E3YL49: TM2 domain-containing protein	0.1123576154
+UniRef50_E3YL49: TM2 domain-containing protein|unclassified	0.1123576154
+UniRef50_UPI00037D94C9: hypothetical protein, partial	0.1123504215
+UniRef50_UPI00037D94C9: hypothetical protein, partial|unclassified	0.1123504215
+UniRef50_UPI0004432FDF: PREDICTED: nitrilase homolog 1 isoform X2	0.1123442054
+UniRef50_UPI0004432FDF: PREDICTED: nitrilase homolog 1 isoform X2|unclassified	0.1123442054
+UniRef50_UPI000345A6D3: hypothetical protein	0.1123433477
+UniRef50_UPI000345A6D3: hypothetical protein|unclassified	0.1123433477
+UniRef50_UPI000383E553: PREDICTED: collagen alpha-1(III) chain isoform X3	0.1123408285
+UniRef50_UPI000383E553: PREDICTED: collagen alpha-1(III) chain isoform X3|unclassified	0.1123408285
+UniRef50_UPI00035F75BD: hypothetical protein	0.1123332355
+UniRef50_UPI00035F75BD: hypothetical protein|unclassified	0.1123332355
+UniRef50_P15531: Nucleoside diphosphate kinase A	0.1123295482
+UniRef50_P15531: Nucleoside diphosphate kinase A|unclassified	0.1123295482
+UniRef50_P15532: Nucleoside diphosphate kinase A	0.1123295482
+UniRef50_P15532: Nucleoside diphosphate kinase A|unclassified	0.1123295482
+UniRef50_X8AWD6: UvrABC system A domain protein	0.1123284412
+UniRef50_X8AWD6: UvrABC system A domain protein|unclassified	0.1123284412
+UniRef50_UPI00046280A0: hypothetical protein	0.1123191521
+UniRef50_UPI00046280A0: hypothetical protein|unclassified	0.1123191521
+UniRef50_UPI000350387A: PREDICTED: proto-oncogene tyrosine-protein kinase LCK isoform X7	0.1123189080
+UniRef50_UPI000350387A: PREDICTED: proto-oncogene tyrosine-protein kinase LCK isoform X7|unclassified	0.1123189080
+UniRef50_UPI0002E3178D: hypothetical protein	0.1123144614
+UniRef50_UPI0002E3178D: hypothetical protein|unclassified	0.1123144614
+UniRef50_UPI0002E6FAFB: hypothetical protein	0.1123100916
+UniRef50_UPI0002E6FAFB: hypothetical protein|unclassified	0.1123100916
+UniRef50_UPI00035CF4CC: hypothetical protein	0.1123019700
+UniRef50_UPI00035CF4CC: hypothetical protein|unclassified	0.1123019700
+UniRef50_Q9KES5: BH0774 protein	0.1122915371
+UniRef50_Q9KES5: BH0774 protein|unclassified	0.1122915371
+UniRef50_A0A017HRS1: Transcriptional regulator, XRE family	0.1122908108
+UniRef50_A0A017HRS1: Transcriptional regulator, XRE family|unclassified	0.1122908108
+UniRef50_Q5V600: Dihydrofolate reductase 2	0.1122784314
+UniRef50_Q5V600: Dihydrofolate reductase 2|unclassified	0.1122784314
+UniRef50_UPI000393D5F8: PREDICTED: basic proline-rich protein-like	0.1122780272
+UniRef50_UPI000393D5F8: PREDICTED: basic proline-rich protein-like|unclassified	0.1122780272
+UniRef50_UPI00029AFB3C: stringent starvation protein A	0.1122759058
+UniRef50_UPI00029AFB3C: stringent starvation protein A|unclassified	0.1122759058
+UniRef50_K1VSX7	0.1122747058
+UniRef50_K1VSX7|unclassified	0.1122747058
+UniRef50_UPI00046982ED: tyrosine recombinase XerC	0.1122721741
+UniRef50_UPI00046982ED: tyrosine recombinase XerC|unclassified	0.1122721741
+UniRef50_A5WGP3	0.1122678584
+UniRef50_A5WGP3|unclassified	0.1122678584
+UniRef50_K2G268	0.1122599596
+UniRef50_K2G268|unclassified	0.1122599596
+UniRef50_U1YFI3	0.1122535988
+UniRef50_U1YFI3|unclassified	0.1122535988
+UniRef50_I4K3T8: Flp pilus assembly lipoprotein TadD	0.1122535462
+UniRef50_I4K3T8: Flp pilus assembly lipoprotein TadD|unclassified	0.1122535462
+UniRef50_UPI00037E769C: hypothetical protein	0.1122337191
+UniRef50_UPI00037E769C: hypothetical protein|unclassified	0.1122337191
+UniRef50_B4R9K5	0.1122330781
+UniRef50_B4R9K5|unclassified	0.1122330781
+UniRef50_UPI0003B75AFC: membrane protein	0.1122296456
+UniRef50_UPI0003B75AFC: membrane protein|unclassified	0.1122296456
+UniRef50_UPI0003C1848F	0.1122258864
+UniRef50_UPI0003C1848F|unclassified	0.1122258864
+UniRef50_Q89K88: Phosphate acyltransferase	0.1122108747
+UniRef50_Q89K88: Phosphate acyltransferase|unclassified	0.1122108747
+UniRef50_UPI00030BB0CC: hypothetical protein	0.1122081428
+UniRef50_UPI00030BB0CC: hypothetical protein|unclassified	0.1122081428
+UniRef50_UPI000478461E: zinc-binding protein	0.1122071340
+UniRef50_UPI000478461E: zinc-binding protein|unclassified	0.1122071340
+UniRef50_S7PNM3	0.1121954669
+UniRef50_S7PNM3|unclassified	0.1121954669
+UniRef50_UPI0003036081: hypothetical protein	0.1121875667
+UniRef50_UPI0003036081: hypothetical protein|unclassified	0.1121875667
+UniRef50_UPI00042A31DC: hypothetical protein	0.1121874219
+UniRef50_UPI00042A31DC: hypothetical protein|unclassified	0.1121874219
+UniRef50_P41027: Signal peptidase I	0.1121854443
+UniRef50_P41027: Signal peptidase I|unclassified	0.1121854443
+UniRef50_Q06I87: Fasciclin-like protein FLA19	0.1121711788
+UniRef50_Q06I87: Fasciclin-like protein FLA19|unclassified	0.1121711788
+UniRef50_W5X8N4: RNA polymerase sigma factor SigE	0.1121604759
+UniRef50_W5X8N4: RNA polymerase sigma factor SigE|unclassified	0.1121604759
+UniRef50_U6IGR1: Peptide methionine sulfoxide reductase	0.1121375738
+UniRef50_U6IGR1: Peptide methionine sulfoxide reductase|unclassified	0.1121375738
+UniRef50_UPI0003A43618: hypothetical protein	0.1121327471
+UniRef50_UPI0003A43618: hypothetical protein|unclassified	0.1121327471
+UniRef50_S6APX7	0.1121251385
+UniRef50_S6APX7|unclassified	0.1121251385
+UniRef50_UPI00047092CA: hypothetical protein	0.1121195246
+UniRef50_UPI00047092CA: hypothetical protein|unclassified	0.1121195246
+UniRef50_UPI00036CDA7D: hypothetical protein, partial	0.1121153832
+UniRef50_UPI00036CDA7D: hypothetical protein, partial|unclassified	0.1121153832
+UniRef50_Q1DEH5: DGPF domain protein	0.1121055356
+UniRef50_Q1DEH5: DGPF domain protein|unclassified	0.1121055356
+UniRef50_UPI00047B1676: hypothetical protein	0.1120995382
+UniRef50_UPI00047B1676: hypothetical protein|unclassified	0.1120995382
+UniRef50_UPI00035C519B: hypothetical protein	0.1120993968
+UniRef50_UPI00035C519B: hypothetical protein|unclassified	0.1120993968
+UniRef50_UPI00047E3C66: ATPase	0.1120979360
+UniRef50_UPI00047E3C66: ATPase|unclassified	0.1120979360
+UniRef50_F5MXW8: Baseplate J-like family protein	0.1120956023
+UniRef50_F5MXW8: Baseplate J-like family protein|unclassified	0.1120956023
+UniRef50_X8DM60	0.1120816348
+UniRef50_X8DM60|unclassified	0.1120816348
+UniRef50_B4UFY0: Holliday junction ATP-dependent DNA helicase RuvA	0.1120784343
+UniRef50_B4UFY0: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.1120784343
+UniRef50_UPI0004625430: PREDICTED: alpha-enolase-like, partial	0.1120735304
+UniRef50_UPI0004625430: PREDICTED: alpha-enolase-like, partial|unclassified	0.1120735304
+UniRef50_UPI00037547C2: hypothetical protein	0.1120727754
+UniRef50_UPI00037547C2: hypothetical protein|unclassified	0.1120727754
+UniRef50_Q8AAB1: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	0.1120665368
+UniRef50_Q8AAB1: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|unclassified	0.1120665368
+UniRef50_UPI00047BF436: histidine ammonia-lyase, partial	0.1120611224
+UniRef50_UPI00047BF436: histidine ammonia-lyase, partial|unclassified	0.1120611224
+UniRef50_UPI0004785BAC: hypothetical protein	0.1120605503
+UniRef50_UPI0004785BAC: hypothetical protein|unclassified	0.1120605503
+UniRef50_UPI00047B93C9: hypothetical protein	0.1120498555
+UniRef50_UPI00047B93C9: hypothetical protein|unclassified	0.1120498555
+UniRef50_UPI0004447914	0.1120460759
+UniRef50_UPI0004447914|unclassified	0.1120460759
+UniRef50_UPI000375C6BD: MULTISPECIES: hypothetical protein	0.1120387284
+UniRef50_UPI000375C6BD: MULTISPECIES: hypothetical protein|unclassified	0.1120387284
+UniRef50_B0NLN7	0.1120380876
+UniRef50_B0NLN7|unclassified	0.1120380876
+UniRef50_UPI00046F1E3C: hypothetical protein	0.1120340574
+UniRef50_UPI00046F1E3C: hypothetical protein|unclassified	0.1120340574
+UniRef50_D6M3V3: Peptidase C14, caspase catalytic subunit p20	0.1120291573
+UniRef50_D6M3V3: Peptidase C14, caspase catalytic subunit p20|unclassified	0.1120291573
+UniRef50_UPI000478BABE: ferredoxin	0.1120086073
+UniRef50_UPI000478BABE: ferredoxin|unclassified	0.1120086073
+UniRef50_UPI00046BAF80	0.1120028562
+UniRef50_UPI00046BAF80|unclassified	0.1120028562
+UniRef50_Q6F0T3: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO 2	0.1119986245
+UniRef50_Q6F0T3: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO 2|unclassified	0.1119986245
+UniRef50_D3A3L2	0.1119916517
+UniRef50_D3A3L2|unclassified	0.1119916517
+UniRef50_UPI000378FF99: hypothetical protein	0.1119836446
+UniRef50_UPI000378FF99: hypothetical protein|unclassified	0.1119836446
+UniRef50_X0TD33: Marine sediment metagenome DNA, contig: S01H1_S02768 (Fragment)	0.1119801843
+UniRef50_X0TD33: Marine sediment metagenome DNA, contig: S01H1_S02768 (Fragment)|unclassified	0.1119801843
+UniRef50_B6W8Z1: PTS system mannitol-specific EIICBA component family protein (Fragment)	0.1119664492
+UniRef50_B6W8Z1: PTS system mannitol-specific EIICBA component family protein (Fragment)|unclassified	0.1119664492
+UniRef50_Q4SRV8: Chromosome undetermined SCAF14488, whole genome shotgun sequence	0.1119547003
+UniRef50_Q4SRV8: Chromosome undetermined SCAF14488, whole genome shotgun sequence|unclassified	0.1119547003
+UniRef50_UPI00037E40A9: hypothetical protein	0.1119486999
+UniRef50_UPI00037E40A9: hypothetical protein|unclassified	0.1119486999
+UniRef50_L8Y687	0.1119474238
+UniRef50_L8Y687|unclassified	0.1119474238
+UniRef50_S6HL40: Phage protein	0.1119368454
+UniRef50_S6HL40: Phage protein|unclassified	0.1119368454
+UniRef50_UPI0002486918: N-formylglutamate amidohydrolase	0.1119310549
+UniRef50_UPI0002486918: N-formylglutamate amidohydrolase|unclassified	0.1119310549
+UniRef50_UPI00046ABA5E: hypothetical protein	0.1119205072
+UniRef50_UPI00046ABA5E: hypothetical protein|unclassified	0.1119205072
+UniRef50_UPI0004785A11: uroporphyrin-III methyltransferase	0.1119112825
+UniRef50_UPI0004785A11: uroporphyrin-III methyltransferase|unclassified	0.1119112825
+UniRef50_UPI000470CB6A: hypothetical protein, partial	0.1119101140
+UniRef50_UPI000470CB6A: hypothetical protein, partial|unclassified	0.1119101140
+UniRef50_UPI0003AA32DA: hypothetical protein	0.1119094410
+UniRef50_UPI0003AA32DA: hypothetical protein|unclassified	0.1119094410
+UniRef50_C0EIK3	0.1118895019
+UniRef50_C0EIK3|unclassified	0.1118895019
+UniRef50_A5VBZ8: DNA-directed RNA polymerase subunit beta	0.1118893178
+UniRef50_A5VBZ8: DNA-directed RNA polymerase subunit beta|unclassified	0.1118893178
+UniRef50_UPI00047A74FB: hypothetical protein	0.1118803730
+UniRef50_UPI00047A74FB: hypothetical protein|unclassified	0.1118803730
+UniRef50_C0R5K8: Dihydroorotase	0.1118789476
+UniRef50_C0R5K8: Dihydroorotase|unclassified	0.1118789476
+UniRef50_UPI000344BA64: hypothetical protein	0.1118725273
+UniRef50_UPI000344BA64: hypothetical protein|unclassified	0.1118725273
+UniRef50_UPI000376FC87: hypothetical protein	0.1118671271
+UniRef50_UPI000376FC87: hypothetical protein|unclassified	0.1118671271
+UniRef50_W4KLS1	0.1118655824
+UniRef50_W4KLS1|unclassified	0.1118655824
+UniRef50_Q093G7	0.1118651760
+UniRef50_Q093G7|unclassified	0.1118651760
+UniRef50_I0I1B3	0.1118495070
+UniRef50_I0I1B3|unclassified	0.1118495070
+UniRef50_W5X9M8: Type I phosphodiesterase/nucleotide pyrophosphatase	0.1118382384
+UniRef50_W5X9M8: Type I phosphodiesterase/nucleotide pyrophosphatase|unclassified	0.1118382384
+UniRef50_W6JSK3	0.1118317033
+UniRef50_W6JSK3|unclassified	0.1118317033
+UniRef50_S6KVM5	0.1118294211
+UniRef50_S6KVM5|unclassified	0.1118294211
+UniRef50_I7DMA9	0.1118293586
+UniRef50_I7DMA9|unclassified	0.1118293586
+UniRef50_UPI0002FA14B0: hypothetical protein	0.1118269528
+UniRef50_UPI0002FA14B0: hypothetical protein|unclassified	0.1118269528
+UniRef50_UPI000369BCDF: hypothetical protein, partial	0.1118191780
+UniRef50_UPI000369BCDF: hypothetical protein, partial|unclassified	0.1118191780
+UniRef50_A0M4U6: Phosphopantetheine adenylyltransferase	0.1118072030
+UniRef50_A0M4U6: Phosphopantetheine adenylyltransferase|unclassified	0.1118072030
+UniRef50_Q2S3A7: Phosphoglycerate kinase	0.1118040430
+UniRef50_Q2S3A7: Phosphoglycerate kinase|unclassified	0.1118040430
+UniRef50_U2FX42	0.1117952625
+UniRef50_U2FX42|unclassified	0.1117952625
+UniRef50_I0IAA9	0.1117869755
+UniRef50_I0IAA9|unclassified	0.1117869755
+UniRef50_UPI00036BA4D1: hypothetical protein	0.1117857815
+UniRef50_UPI00036BA4D1: hypothetical protein|unclassified	0.1117857815
+UniRef50_B9L170: NADH-quinone oxidoreductase subunit B	0.1117849162
+UniRef50_B9L170: NADH-quinone oxidoreductase subunit B|unclassified	0.1117849162
+UniRef50_UPI00035CAFD9: peroxidase	0.1117739879
+UniRef50_UPI00035CAFD9: peroxidase|unclassified	0.1117739879
+UniRef50_UPI00031618D7: hypothetical protein	0.1117657308
+UniRef50_UPI00031618D7: hypothetical protein|unclassified	0.1117657308
+UniRef50_UPI00045E4BCD: PREDICTED: collagen alpha-2(I) chain-like	0.1117617873
+UniRef50_UPI00045E4BCD: PREDICTED: collagen alpha-2(I) chain-like|unclassified	0.1117617873
+UniRef50_UPI0003747923: hypothetical protein	0.1117611088
+UniRef50_UPI0003747923: hypothetical protein|unclassified	0.1117611088
+UniRef50_UPI00047DCFEE: MarR family transcriptional regulator	0.1117577551
+UniRef50_UPI00047DCFEE: MarR family transcriptional regulator|unclassified	0.1117577551
+UniRef50_UPI000419C854: hypothetical protein	0.1117561463
+UniRef50_UPI000419C854: hypothetical protein|unclassified	0.1117561463
+UniRef50_J9NYD9	0.1117486727
+UniRef50_J9NYD9|unclassified	0.1117486727
+UniRef50_UPI00032995A5	0.1117446801
+UniRef50_UPI00032995A5|unclassified	0.1117446801
+UniRef50_D5V480	0.1117425473
+UniRef50_D5V480|unclassified	0.1117425473
+UniRef50_E9EZI9	0.1117394678
+UniRef50_E9EZI9|unclassified	0.1117394678
+UniRef50_W9UBH0	0.1117309369
+UniRef50_W9UBH0|unclassified	0.1117309369
+UniRef50_UPI000467EF6A: YgfB and YecA protein	0.1117263369
+UniRef50_UPI000467EF6A: YgfB and YecA protein|unclassified	0.1117263369
+UniRef50_UPI000441DE45: PREDICTED: serine/arginine repetitive matrix protein 2-like isoform X3	0.1117239388
+UniRef50_UPI000441DE45: PREDICTED: serine/arginine repetitive matrix protein 2-like isoform X3|unclassified	0.1117239388
+UniRef50_A0A023BW71: Phenylacetic acid degradation protein PaaI	0.1117231094
+UniRef50_A0A023BW71: Phenylacetic acid degradation protein PaaI|unclassified	0.1117231094
+UniRef50_UPI00047B868B: hypothetical protein	0.1117212955
+UniRef50_UPI00047B868B: hypothetical protein|unclassified	0.1117212955
+UniRef50_D3PQJ8: Thioesterase superfamily protein	0.1117201518
+UniRef50_D3PQJ8: Thioesterase superfamily protein|unclassified	0.1117201518
+UniRef50_UPI00040973E2: hypothetical protein	0.1117028479
+UniRef50_UPI00040973E2: hypothetical protein|unclassified	0.1117028479
+UniRef50_X7EK56	0.1117020226
+UniRef50_X7EK56|unclassified	0.1117020226
+UniRef50_A0KN91: Probable nicotinate-nucleotide adenylyltransferase	0.1116955319
+UniRef50_A0KN91: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.1116955319
+UniRef50_X1M7F5: Marine sediment metagenome DNA, contig: S06H3_L06376 (Fragment)	0.1116702320
+UniRef50_X1M7F5: Marine sediment metagenome DNA, contig: S06H3_L06376 (Fragment)|unclassified	0.1116702320
+UniRef50_UPI00045E76FD: hypothetical protein	0.1116639258
+UniRef50_UPI00045E76FD: hypothetical protein|unclassified	0.1116639258
+UniRef50_UPI0004027131: MULTISPECIES: hypothetical protein	0.1116610123
+UniRef50_UPI0004027131: MULTISPECIES: hypothetical protein|unclassified	0.1116610123
+UniRef50_UPI00036D2E96: hypothetical protein	0.1116600190
+UniRef50_UPI00036D2E96: hypothetical protein|unclassified	0.1116600190
+UniRef50_B9YDM9	0.1116586018
+UniRef50_B9YDM9|unclassified	0.1116586018
+UniRef50_UPI00047E8FE9: hypothetical protein	0.1116493856
+UniRef50_UPI00047E8FE9: hypothetical protein|unclassified	0.1116493856
+UniRef50_X1YIC8	0.1116473891
+UniRef50_X1YIC8|unclassified	0.1116473891
+UniRef50_UPI00040A2CED: orotate phosphoribosyltransferase	0.1116397095
+UniRef50_UPI00040A2CED: orotate phosphoribosyltransferase|unclassified	0.1116397095
+UniRef50_UPI0003B5691C: signal peptidase	0.1116385164
+UniRef50_UPI0003B5691C: signal peptidase|unclassified	0.1116385164
+UniRef50_G9ZMQ3: Bacterial peptidase A24 protein	0.1116376616
+UniRef50_G9ZMQ3: Bacterial peptidase A24 protein|unclassified	0.1116376616
+UniRef50_UPI00036F5244: hypothetical protein	0.1116374108
+UniRef50_UPI00036F5244: hypothetical protein|unclassified	0.1116374108
+UniRef50_UPI0003B478D0: 50S ribosomal protein L4	0.1116356392
+UniRef50_UPI0003B478D0: 50S ribosomal protein L4|unclassified	0.1116356392
+UniRef50_UPI0003B5CC50: hypothetical protein	0.1116142971
+UniRef50_UPI0003B5CC50: hypothetical protein|unclassified	0.1116142971
+UniRef50_Q6MDQ6: NADH-quinone oxidoreductase subunit K	0.1116113779
+UniRef50_Q6MDQ6: NADH-quinone oxidoreductase subunit K|unclassified	0.1116113779
+UniRef50_E6U1A9	0.1116094642
+UniRef50_E6U1A9|unclassified	0.1116094642
+UniRef50_UPI000360F7E6: hypothetical protein	0.1115994047
+UniRef50_UPI000360F7E6: hypothetical protein|unclassified	0.1115994047
+UniRef50_C6D029: Major facilitator superfamily MFS_1	0.1115926757
+UniRef50_C6D029: Major facilitator superfamily MFS_1|unclassified	0.1115926757
+UniRef50_UPI000473AD3E: LysR family transcriptional regulator	0.1115911476
+UniRef50_UPI000473AD3E: LysR family transcriptional regulator|unclassified	0.1115911476
+UniRef50_UPI0004245E45: GTP-binding protein Der	0.1115730584
+UniRef50_UPI0004245E45: GTP-binding protein Der|unclassified	0.1115730584
+UniRef50_UPI00021924F9: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alani ne ligase, partial	0.1115706838
+UniRef50_UPI00021924F9: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alani ne ligase, partial|unclassified	0.1115706838
+UniRef50_C6HTX4: Probable conjugal transfer protein (TrbE)	0.1115682839
+UniRef50_C6HTX4: Probable conjugal transfer protein (TrbE)|unclassified	0.1115682839
+UniRef50_A7FPN7: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	0.1115675411
+UniRef50_A7FPN7: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|unclassified	0.1115675411
+UniRef50_UPI0004745C07: ferrichrome ABC transporter permease	0.1115645286
+UniRef50_UPI0004745C07: ferrichrome ABC transporter permease|unclassified	0.1115645286
+UniRef50_UPI00047D7963: cell division protein FtsK	0.1115304283
+UniRef50_UPI00047D7963: cell division protein FtsK|unclassified	0.1115304283
+UniRef50_H0S165: Putative transposase	0.1115301325
+UniRef50_H0S165: Putative transposase|unclassified	0.1115301325
+UniRef50_Q834B3: Phosphate import ATP-binding protein PstB 2	0.1115246004
+UniRef50_Q834B3: Phosphate import ATP-binding protein PstB 2|unclassified	0.1115246004
+UniRef50_UPI00026C8563: anthranilate synthase subunit I	0.1115113835
+UniRef50_UPI00026C8563: anthranilate synthase subunit I|unclassified	0.1115113835
+UniRef50_X1YF14	0.1114900725
+UniRef50_X1YF14|unclassified	0.1114900725
+UniRef50_R4ZTL4	0.1114876037
+UniRef50_R4ZTL4|unclassified	0.1114876037
+UniRef50_UPI000370F15C: hypothetical protein	0.1114870068
+UniRef50_UPI000370F15C: hypothetical protein|unclassified	0.1114870068
+UniRef50_I0CNI8	0.1114813501
+UniRef50_I0CNI8|unclassified	0.1114813501
+UniRef50_A1TXE9: OmpA/MotB domain protein	0.1114779866
+UniRef50_A1TXE9: OmpA/MotB domain protein|unclassified	0.1114779866
+UniRef50_Q65U29: Homoserine O-acetyltransferase	0.1114753283
+UniRef50_Q65U29: Homoserine O-acetyltransferase|unclassified	0.1114753283
+UniRef50_F7ZKB0	0.1114584508
+UniRef50_F7ZKB0|unclassified	0.1114584508
+UniRef50_UPI0002884AE4: crcb	0.1114544468
+UniRef50_UPI0002884AE4: crcb|unclassified	0.1114544468
+UniRef50_D3QHD4	0.1114443929
+UniRef50_D3QHD4|unclassified	0.1114443929
+UniRef50_A1B1I0	0.1114429683
+UniRef50_A1B1I0|unclassified	0.1114429683
+UniRef50_R7XX41: Cobyrinic acid a,c-diamide synthase	0.1114362759
+UniRef50_R7XX41: Cobyrinic acid a,c-diamide synthase|unclassified	0.1114362759
+UniRef50_M5FLI1	0.1114359964
+UniRef50_M5FLI1|unclassified	0.1114359964
+UniRef50_A6GUR7: Probable conjugal transfer protein TrbE (Fragment)	0.1114223542
+UniRef50_A6GUR7: Probable conjugal transfer protein TrbE (Fragment)|unclassified	0.1114223542
+UniRef50_A9NGK6: Glycerol-3-phosphate dehydrogenase [NAD(P)+]	0.1114202191
+UniRef50_A9NGK6: Glycerol-3-phosphate dehydrogenase [NAD(P)+]|unclassified	0.1114202191
+UniRef50_UPI00032A201E: PREDICTED: LOW QUALITY PROTEIN: UPF0234 protein CKO_02735-like	0.1114095484
+UniRef50_UPI00032A201E: PREDICTED: LOW QUALITY PROTEIN: UPF0234 protein CKO_02735-like|unclassified	0.1114095484
+UniRef50_J8JJJ5	0.1114073593
+UniRef50_J8JJJ5|unclassified	0.1114073593
+UniRef50_UPI00037A56E2: hypothetical protein	0.1114070957
+UniRef50_UPI00037A56E2: hypothetical protein|unclassified	0.1114070957
+UniRef50_UPI00036E0B46: hypothetical protein	0.1114067663
+UniRef50_UPI00036E0B46: hypothetical protein|unclassified	0.1114067663
+UniRef50_P59576: Carbamoyl-phosphate synthase small chain	0.1114066517
+UniRef50_P59576: Carbamoyl-phosphate synthase small chain|unclassified	0.1114066517
+UniRef50_UPI00046F45E9: acetolactate synthase, partial	0.1113913076
+UniRef50_UPI00046F45E9: acetolactate synthase, partial|unclassified	0.1113913076
+UniRef50_UPI000401B683: hypothetical protein	0.1113911149
+UniRef50_UPI000401B683: hypothetical protein|unclassified	0.1113911149
+UniRef50_UPI0004666EB5: peptide ABC transporter permease	0.1113865335
+UniRef50_UPI0004666EB5: peptide ABC transporter permease|unclassified	0.1113865335
+UniRef50_UPI000475107A: hypothetical protein	0.1113760131
+UniRef50_UPI000475107A: hypothetical protein|unclassified	0.1113760131
+UniRef50_UPI00035E1FFA: transcriptional regulator	0.1113662172
+UniRef50_UPI00035E1FFA: transcriptional regulator|unclassified	0.1113662172
+UniRef50_B6U1Z9	0.1113659342
+UniRef50_B6U1Z9|unclassified	0.1113659342
+UniRef50_UPI0002557EAC: metallophosphoesterase, partial	0.1113593616
+UniRef50_UPI0002557EAC: metallophosphoesterase, partial|unclassified	0.1113593616
+UniRef50_B8CIL0	0.1113583347
+UniRef50_B8CIL0|unclassified	0.1113583347
+UniRef50_UPI0003472821: hypothetical protein	0.1113516076
+UniRef50_UPI0003472821: hypothetical protein|unclassified	0.1113516076
+UniRef50_I6RAM1	0.1113477246
+UniRef50_I6RAM1|unclassified	0.1113477246
+UniRef50_R5HAC8: Transposase domain (DUF772)	0.1113473083
+UniRef50_R5HAC8: Transposase domain (DUF772)|unclassified	0.1113473083
+UniRef50_K5I0R7	0.1113441098
+UniRef50_K5I0R7|unclassified	0.1113441098
+UniRef50_UPI00046F6DE4: hypothetical protein, partial	0.1113395528
+UniRef50_UPI00046F6DE4: hypothetical protein, partial|unclassified	0.1113395528
+UniRef50_Q9MB35: Peroxiredoxin Q, chloroplastic (Fragment)	0.1113394824
+UniRef50_Q9MB35: Peroxiredoxin Q, chloroplastic (Fragment)|unclassified	0.1113394824
+UniRef50_Q747Q3: Glutamate 5-kinase	0.1113388951
+UniRef50_Q747Q3: Glutamate 5-kinase|unclassified	0.1113388951
+UniRef50_UPI000380077B: hypothetical protein	0.1113360214
+UniRef50_UPI000380077B: hypothetical protein|unclassified	0.1113360214
+UniRef50_V6Z4L0: Competence protein ComGF	0.1113305384
+UniRef50_V6Z4L0: Competence protein ComGF|unclassified	0.1113305384
+UniRef50_UPI0003F80964: succinate-semialdehyde dehydrogenase	0.1113206167
+UniRef50_UPI0003F80964: succinate-semialdehyde dehydrogenase|unclassified	0.1113206167
+UniRef50_T3PCK3: Transcriptional regulator family protein	0.1113106090
+UniRef50_T3PCK3: Transcriptional regulator family protein|unclassified	0.1113106090
+UniRef50_G9ZU59: Peptidase, M23 family (Fragment)	0.1113030870
+UniRef50_G9ZU59: Peptidase, M23 family (Fragment)|unclassified	0.1113030870
+UniRef50_UPI0003FBECCD: flagellin	0.1113010023
+UniRef50_UPI0003FBECCD: flagellin|unclassified	0.1113010023
+UniRef50_UPI000371D657: hypothetical protein	0.1112948385
+UniRef50_UPI000371D657: hypothetical protein|unclassified	0.1112948385
+UniRef50_UPI00036B4CDF: sugar ABC transporter permease	0.1112912236
+UniRef50_UPI00036B4CDF: sugar ABC transporter permease|unclassified	0.1112912236
+UniRef50_UPI0003B65F02: 3-hydroxyacyl-CoA dehydrogenase	0.1112868253
+UniRef50_UPI0003B65F02: 3-hydroxyacyl-CoA dehydrogenase|unclassified	0.1112868253
+UniRef50_UPI000365C0B1: hypothetical protein	0.1112852330
+UniRef50_UPI000365C0B1: hypothetical protein|unclassified	0.1112852330
+UniRef50_X7YY04	0.1112690108
+UniRef50_X7YY04|unclassified	0.1112690108
+UniRef50_UPI00041DCBBC: hypothetical protein	0.1112606790
+UniRef50_UPI00041DCBBC: hypothetical protein|unclassified	0.1112606790
+UniRef50_UPI00041C8BDD: RNA helicase	0.1112593968
+UniRef50_UPI00041C8BDD: RNA helicase|unclassified	0.1112593968
+UniRef50_UPI000374342C: hypothetical protein	0.1112591444
+UniRef50_UPI000374342C: hypothetical protein|unclassified	0.1112591444
+UniRef50_Q4UQZ8: Adenosylhomocysteinase	0.1112556019
+UniRef50_Q4UQZ8: Adenosylhomocysteinase|unclassified	0.1112556019
+UniRef50_UPI00037E0BE4: hypothetical protein, partial	0.1112466873
+UniRef50_UPI00037E0BE4: hypothetical protein, partial|unclassified	0.1112466873
+UniRef50_UPI000468BDC5: esterase	0.1112457372
+UniRef50_UPI000468BDC5: esterase|unclassified	0.1112457372
+UniRef50_UPI0004707B2E: hypothetical protein	0.1112426820
+UniRef50_UPI0004707B2E: hypothetical protein|unclassified	0.1112426820
+UniRef50_UPI0003720699: phosphodiesterase	0.1112415014
+UniRef50_UPI0003720699: phosphodiesterase|unclassified	0.1112415014
+UniRef50_M4K4N2: Putative magnesium chelatase protein	0.1112350904
+UniRef50_M4K4N2: Putative magnesium chelatase protein|unclassified	0.1112350904
+UniRef50_Q2SVU4: Ribose import ATP-binding protein RbsA 1	0.1112341637
+UniRef50_Q2SVU4: Ribose import ATP-binding protein RbsA 1|unclassified	0.1112341637
+UniRef50_UPI00035E6092: hypothetical protein	0.1112302968
+UniRef50_UPI00035E6092: hypothetical protein|unclassified	0.1112302968
+UniRef50_P44318: Exodeoxyribonuclease III	0.1112294132
+UniRef50_P44318: Exodeoxyribonuclease III|unclassified	0.1112294132
+UniRef50_UPI000367E175: hypothetical protein	0.1112284345
+UniRef50_UPI000367E175: hypothetical protein|unclassified	0.1112284345
+UniRef50_UPI0003AE9576: PREDICTED: propionyl-CoA carboxylase alpha chain, mitochondrial-like	0.1112190929
+UniRef50_UPI0003AE9576: PREDICTED: propionyl-CoA carboxylase alpha chain, mitochondrial-like|unclassified	0.1112190929
+UniRef50_Q0RQR9: Urease subunit beta	0.1112158687
+UniRef50_Q0RQR9: Urease subunit beta|unclassified	0.1112158687
+UniRef50_X1UFM7: Marine sediment metagenome DNA, contig: S12H4_S01826 (Fragment)	0.1112134546
+UniRef50_X1UFM7: Marine sediment metagenome DNA, contig: S12H4_S01826 (Fragment)|unclassified	0.1112134546
+UniRef50_UPI000479D5FF: hypothetical protein	0.1112055490
+UniRef50_UPI000479D5FF: hypothetical protein|unclassified	0.1112055490
+UniRef50_UPI00047D5E54: myo-inositol catabolism protein IolB	0.1112012644
+UniRef50_UPI00047D5E54: myo-inositol catabolism protein IolB|unclassified	0.1112012644
+UniRef50_I8AL56	0.1111997617
+UniRef50_I8AL56|unclassified	0.1111997617
+UniRef50_UPI00035C9482: hypothetical protein	0.1111971592
+UniRef50_UPI00035C9482: hypothetical protein|unclassified	0.1111971592
+UniRef50_H3ZDM7: G3E family GTPase	0.1111967609
+UniRef50_H3ZDM7: G3E family GTPase|unclassified	0.1111967609
+UniRef50_UPI00042A1E91: hypothetical protein	0.1111935557
+UniRef50_UPI00042A1E91: hypothetical protein|unclassified	0.1111935557
+UniRef50_M1WSJ3: Protein CreA	0.1111872330
+UniRef50_M1WSJ3: Protein CreA|unclassified	0.1111872330
+UniRef50_UPI000470DE86: hypothetical protein	0.1111843400
+UniRef50_UPI000470DE86: hypothetical protein|unclassified	0.1111843400
+UniRef50_UPI0003304FE8: ABC transporter	0.1111826014
+UniRef50_UPI0003304FE8: ABC transporter|unclassified	0.1111826014
+UniRef50_UPI0003999EDA: AMP-dependent synthetase	0.1111817809
+UniRef50_UPI0003999EDA: AMP-dependent synthetase|unclassified	0.1111817809
+UniRef50_E5ZI51: GIY-YIG catalytic domain protein	0.1111802082
+UniRef50_E5ZI51: GIY-YIG catalytic domain protein|unclassified	0.1111802082
+UniRef50_UPI0003AAA542: ferredoxin	0.1111766256
+UniRef50_UPI0003AAA542: ferredoxin|unclassified	0.1111766256
+UniRef50_V0MJJ1	0.1111765347
+UniRef50_V0MJJ1|unclassified	0.1111765347
+UniRef50_UPI00039552EF: sprT	0.1111640826
+UniRef50_UPI00039552EF: sprT|unclassified	0.1111640826
+UniRef50_A0QJB3: Polyphosphate kinase	0.1111603878
+UniRef50_A0QJB3: Polyphosphate kinase|unclassified	0.1111603878
+UniRef50_A3VBK9: MJ0042 family finger-like domain protein	0.1111520116
+UniRef50_A3VBK9: MJ0042 family finger-like domain protein|unclassified	0.1111520116
+UniRef50_UPI0004757EA5: pyridoxal-5''-phosphate-dependent protein	0.1111519837
+UniRef50_UPI0004757EA5: pyridoxal-5''-phosphate-dependent protein|unclassified	0.1111519837
+UniRef50_F0Y4M5	0.1111440417
+UniRef50_F0Y4M5|unclassified	0.1111440417
+UniRef50_UPI00031E5C6B: hypothetical protein	0.1111354040
+UniRef50_UPI00031E5C6B: hypothetical protein|unclassified	0.1111354040
+UniRef50_R0K911	0.1111276726
+UniRef50_R0K911|unclassified	0.1111276726
+UniRef50_UPI0004561A79: hypothetical protein PFL1_00340	0.1111262638
+UniRef50_UPI0004561A79: hypothetical protein PFL1_00340|unclassified	0.1111262638
+UniRef50_A5G7C7: Cyclic pyranopterin monophosphate synthase accessory protein	0.1111255277
+UniRef50_A5G7C7: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	0.1111255277
+UniRef50_Q9RSI9: Phosphopentomutase	0.1111231877
+UniRef50_Q9RSI9: Phosphopentomutase|unclassified	0.1111231877
+UniRef50_B9IFC4: Acetolactate synthase family protein	0.1111093859
+UniRef50_B9IFC4: Acetolactate synthase family protein|unclassified	0.1111093859
+UniRef50_UPI00037C49B3: hypothetical protein	0.1110938098
+UniRef50_UPI00037C49B3: hypothetical protein|unclassified	0.1110938098
+UniRef50_B9JYP8: Adenine deaminase	0.1110911673
+UniRef50_B9JYP8: Adenine deaminase|unclassified	0.1110911673
+UniRef50_UPI00047CBCCD: 4-alpha-glucanotransferase	0.1110873238
+UniRef50_UPI00047CBCCD: 4-alpha-glucanotransferase|unclassified	0.1110873238
+UniRef50_A9KM95: Probable dual-specificity RNA methyltransferase RlmN	0.1110820072
+UniRef50_A9KM95: Probable dual-specificity RNA methyltransferase RlmN|unclassified	0.1110820072
+UniRef50_P25819: Catalase-2	0.1110776145
+UniRef50_P25819: Catalase-2|unclassified	0.1110776145
+UniRef50_UPI000471CB28: HrcA family transcriptional regulator	0.1110713217
+UniRef50_UPI000471CB28: HrcA family transcriptional regulator|unclassified	0.1110713217
+UniRef50_UPI0002B4BC1C	0.1110696060
+UniRef50_UPI0002B4BC1C|unclassified	0.1110696060
+UniRef50_B1GYM8: UDP-N-acetylmuramate--L-alanine ligase	0.1110641225
+UniRef50_B1GYM8: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.1110641225
+UniRef50_UPI0004758DC8: hypothetical protein	0.1110618332
+UniRef50_UPI0004758DC8: hypothetical protein|unclassified	0.1110618332
+UniRef50_H1SJ19: RND efflux system, outer membrane lipoprotein, NodT (Fragment)	0.1110593146
+UniRef50_H1SJ19: RND efflux system, outer membrane lipoprotein, NodT (Fragment)|unclassified	0.1110593146
+UniRef50_R7UN34	0.1110506579
+UniRef50_R7UN34|unclassified	0.1110506579
+UniRef50_Q28VU6	0.1110471919
+UniRef50_Q28VU6|unclassified	0.1110471919
+UniRef50_UPI0003672F84: hypothetical protein	0.1110468799
+UniRef50_UPI0003672F84: hypothetical protein|unclassified	0.1110468799
+UniRef50_O84823: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	0.1110385076
+UniRef50_O84823: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|unclassified	0.1110385076
+UniRef50_L5LQK2: Myocilin	0.1110378620
+UniRef50_L5LQK2: Myocilin|unclassified	0.1110378620
+UniRef50_UPI0003B7276C: adenylylsulfate kinase	0.1110178760
+UniRef50_UPI0003B7276C: adenylylsulfate kinase|unclassified	0.1110178760
+UniRef50_UPI00036497D2: hypothetical protein	0.1110138458
+UniRef50_UPI00036497D2: hypothetical protein|unclassified	0.1110138458
+UniRef50_UPI0002DEBBB7: hypothetical protein	0.1110114449
+UniRef50_UPI0002DEBBB7: hypothetical protein|unclassified	0.1110114449
+UniRef50_UPI0003B5D84E: Holliday junction DNA helicase RuvB	0.1110098773
+UniRef50_UPI0003B5D84E: Holliday junction DNA helicase RuvB|unclassified	0.1110098773
+UniRef50_P20170: Anthranilate synthase component 1	0.1110082733
+UniRef50_P20170: Anthranilate synthase component 1|unclassified	0.1110082733
+UniRef50_UPI00036F996B: hypothetical protein	0.1109975336
+UniRef50_UPI00036F996B: hypothetical protein|unclassified	0.1109975336
+UniRef50_UPI00046A0C20: preprotein translocase subunit TatD	0.1109955795
+UniRef50_UPI00046A0C20: preprotein translocase subunit TatD|unclassified	0.1109955795
+UniRef50_I6EKH9: FAD binding domain protein	0.1109933574
+UniRef50_I6EKH9: FAD binding domain protein|unclassified	0.1109933574
+UniRef50_UPI0003A01A04: N-acetylmuramoyl-L-alanine amidase	0.1109933414
+UniRef50_UPI0003A01A04: N-acetylmuramoyl-L-alanine amidase|unclassified	0.1109933414
+UniRef50_UPI000237B3C3: hypothetical protein	0.1109916701
+UniRef50_UPI000237B3C3: hypothetical protein|unclassified	0.1109916701
+UniRef50_Q7N772: Protein NrdI	0.1109705858
+UniRef50_Q7N772: Protein NrdI|unclassified	0.1109705858
+UniRef50_UPI00032A152E: PREDICTED: biuret hydrolase-like	0.1109662870
+UniRef50_UPI00032A152E: PREDICTED: biuret hydrolase-like|unclassified	0.1109662870
+UniRef50_P42015: PTS system glucose-specific EIICBA component (Fragment)	0.1109627766
+UniRef50_P42015: PTS system glucose-specific EIICBA component (Fragment)|unclassified	0.1109627766
+UniRef50_M5IQH8: Ferric iron ABC transporter, iron-binding protein	0.1109618405
+UniRef50_M5IQH8: Ferric iron ABC transporter, iron-binding protein|unclassified	0.1109618405
+UniRef50_U6J469: NADH dehydrogenase ubiquinone iron sulfur	0.1109542688
+UniRef50_U6J469: NADH dehydrogenase ubiquinone iron sulfur|unclassified	0.1109542688
+UniRef50_K2PTZ4: Transposase	0.1109457362
+UniRef50_K2PTZ4: Transposase|unclassified	0.1109457362
+UniRef50_L1IVD9	0.1109292340
+UniRef50_L1IVD9|unclassified	0.1109292340
+UniRef50_A4IJA6: Thymidylate kinase	0.1109224670
+UniRef50_A4IJA6: Thymidylate kinase|unclassified	0.1109224670
+UniRef50_E6WPS1: Appr-1-p processing domain protein	0.1109172354
+UniRef50_E6WPS1: Appr-1-p processing domain protein|unclassified	0.1109172354
+UniRef50_Q0A5K0: Succinyl-CoA ligase [ADP-forming] subunit beta	0.1109108016
+UniRef50_Q0A5K0: Succinyl-CoA ligase [ADP-forming] subunit beta|unclassified	0.1109108016
+UniRef50_R1E5Z4: Protein midA	0.1109025538
+UniRef50_R1E5Z4: Protein midA|unclassified	0.1109025538
+UniRef50_Q06464: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	0.1109002632
+UniRef50_Q06464: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|unclassified	0.1109002632
+UniRef50_V4Z3A5	0.1108997708
+UniRef50_V4Z3A5|unclassified	0.1108997708
+UniRef50_C9ACD2	0.1108886224
+UniRef50_C9ACD2|unclassified	0.1108886224
+UniRef50_K4ADF5	0.1108735230
+UniRef50_K4ADF5|unclassified	0.1108735230
+UniRef50_UPI000255EED3: acetolactate synthase 3 regulatory subunit	0.1108721312
+UniRef50_UPI000255EED3: acetolactate synthase 3 regulatory subunit|unclassified	0.1108721312
+UniRef50_Q39XE0: 8-amino-7-oxononanoate synthase	0.1108706837
+UniRef50_Q39XE0: 8-amino-7-oxononanoate synthase|unclassified	0.1108706837
+UniRef50_UPI0003B51AF6: MULTISPECIES: 2-hydroxyhepta-2,4-diene-1,7-dioate isomerase	0.1108617566
+UniRef50_UPI0003B51AF6: MULTISPECIES: 2-hydroxyhepta-2,4-diene-1,7-dioate isomerase|unclassified	0.1108617566
+UniRef50_UPI00045EC567: hypothetical protein	0.1108519587
+UniRef50_UPI00045EC567: hypothetical protein|unclassified	0.1108519587
+UniRef50_UPI0002886327: zinc protease	0.1108468937
+UniRef50_UPI0002886327: zinc protease|unclassified	0.1108468937
+UniRef50_UPI0002652283	0.1108349657
+UniRef50_UPI0002652283|unclassified	0.1108349657
+UniRef50_UPI0003763272: hypothetical protein, partial	0.1108214511
+UniRef50_UPI0003763272: hypothetical protein, partial|unclassified	0.1108214511
+UniRef50_UPI000379A6AD: 30S ribosomal protein S4	0.1108051956
+UniRef50_UPI000379A6AD: 30S ribosomal protein S4|unclassified	0.1108051956
+UniRef50_UPI00047631DF: thiol:disulfide interchange protein	0.1107845373
+UniRef50_UPI00047631DF: thiol:disulfide interchange protein|unclassified	0.1107845373
+UniRef50_UPI0002D35E4D: DNA polymerase III subunit epsilon	0.1107801190
+UniRef50_UPI0002D35E4D: DNA polymerase III subunit epsilon|unclassified	0.1107801190
+UniRef50_UPI000161C3F6: glycine cleavage system H protein	0.1107717056
+UniRef50_UPI000161C3F6: glycine cleavage system H protein|unclassified	0.1107717056
+UniRef50_UPI0003B62CD8: Cro/Cl family transcriptional regulator	0.1107492028
+UniRef50_UPI0003B62CD8: Cro/Cl family transcriptional regulator|unclassified	0.1107492028
+UniRef50_F0EQ50: Putative transketolase	0.1107407733
+UniRef50_F0EQ50: Putative transketolase|unclassified	0.1107407733
+UniRef50_V7I1L3: Enoyl-CoA hydratase	0.1107379172
+UniRef50_V7I1L3: Enoyl-CoA hydratase|unclassified	0.1107379172
+UniRef50_Q820V5: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI	0.1107282204
+UniRef50_Q820V5: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI|unclassified	0.1107282204
+UniRef50_V8P3M6: Protein argonaute-2 (Fragment)	0.1107262999
+UniRef50_V8P3M6: Protein argonaute-2 (Fragment)|unclassified	0.1107262999
+UniRef50_A0A037ZP56	0.1107248789
+UniRef50_A0A037ZP56|unclassified	0.1107248789
+UniRef50_UPI000237D17A: LSU ribosomal protein l17p	0.1107101544
+UniRef50_UPI000237D17A: LSU ribosomal protein l17p|unclassified	0.1107101544
+UniRef50_UPI00036676CD: hypothetical protein	0.1107094084
+UniRef50_UPI00036676CD: hypothetical protein|unclassified	0.1107094084
+UniRef50_C8RQR5: LemA family protein	0.1107068356
+UniRef50_C8RQR5: LemA family protein|unclassified	0.1107068356
+UniRef50_UPI0003B333E4: hypothetical protein	0.1107068228
+UniRef50_UPI0003B333E4: hypothetical protein|unclassified	0.1107068228
+UniRef50_P17896: SpoIVB peptidase	0.1107047726
+UniRef50_P17896: SpoIVB peptidase|unclassified	0.1107047726
+UniRef50_M1Z917	0.1107043009
+UniRef50_M1Z917|unclassified	0.1107043009
+UniRef50_UPI000470BA01: serine dehydratase	0.1107036486
+UniRef50_UPI000470BA01: serine dehydratase|unclassified	0.1107036486
+UniRef50_UPI00045EB86B: hypothetical protein	0.1107031860
+UniRef50_UPI00045EB86B: hypothetical protein|unclassified	0.1107031860
+UniRef50_UPI0003758B1C: hypothetical protein	0.1107024434
+UniRef50_UPI0003758B1C: hypothetical protein|unclassified	0.1107024434
+UniRef50_W7VW27	0.1106973513
+UniRef50_W7VW27|unclassified	0.1106973513
+UniRef50_UPI000287D850: sugar ABC transporter substrate-binding protein	0.1106893060
+UniRef50_UPI000287D850: sugar ABC transporter substrate-binding protein|unclassified	0.1106893060
+UniRef50_UPI00040E87BA: acetyltransferase	0.1106871927
+UniRef50_UPI00040E87BA: acetyltransferase|unclassified	0.1106871927
+UniRef50_S5VUA1: ATP/GTP-binding protein	0.1106863308
+UniRef50_S5VUA1: ATP/GTP-binding protein|unclassified	0.1106863308
+UniRef50_A5KWV1: Putative chaperone	0.1106781798
+UniRef50_A5KWV1: Putative chaperone|unclassified	0.1106781798
+UniRef50_UPI00037CAA58: hypothetical protein	0.1106615576
+UniRef50_UPI00037CAA58: hypothetical protein|unclassified	0.1106615576
+UniRef50_UPI0003C902A9: PREDICTED: V-set and immunoglobulin domain-containing protein 2	0.1106484080
+UniRef50_UPI0003C902A9: PREDICTED: V-set and immunoglobulin domain-containing protein 2|unclassified	0.1106484080
+UniRef50_UPI0003638C38: hypothetical protein, partial	0.1106450258
+UniRef50_UPI0003638C38: hypothetical protein, partial|unclassified	0.1106450258
+UniRef50_I1HFT3	0.1106335820
+UniRef50_I1HFT3|unclassified	0.1106335820
+UniRef50_U9VTQ0	0.1106329760
+UniRef50_U9VTQ0|unclassified	0.1106329760
+UniRef50_X2MT93: SpoVR family protein	0.1106319949
+UniRef50_X2MT93: SpoVR family protein|unclassified	0.1106319949
+UniRef50_G5S0F2	0.1106296431
+UniRef50_G5S0F2|unclassified	0.1106296431
+UniRef50_UPI00036F145F: hypothetical protein	0.1106205603
+UniRef50_UPI00036F145F: hypothetical protein|unclassified	0.1106205603
+UniRef50_UPI0003B36EFF: membrane protein	0.1106129949
+UniRef50_UPI0003B36EFF: membrane protein|unclassified	0.1106129949
+UniRef50_UPI00035E131B: hypothetical protein	0.1106067200
+UniRef50_UPI00035E131B: hypothetical protein|unclassified	0.1106067200
+UniRef50_L1PFA1	0.1105874412
+UniRef50_L1PFA1|unclassified	0.1105874412
+UniRef50_UPI0004786ABC: hypothetical protein	0.1105684907
+UniRef50_UPI0004786ABC: hypothetical protein|unclassified	0.1105684907
+UniRef50_UPI00036C3395: hypothetical protein	0.1105617435
+UniRef50_UPI00036C3395: hypothetical protein|unclassified	0.1105617435
+UniRef50_UPI0003AF2178: PREDICTED: collagen alpha-1(I) chain-like	0.1105566559
+UniRef50_UPI0003AF2178: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.1105566559
+UniRef50_C9CRN3: ISAfe4, transposase Orf3	0.1105524209
+UniRef50_C9CRN3: ISAfe4, transposase Orf3|unclassified	0.1105524209
+UniRef50_UPI00016C5967: fatty acid synthesis protein	0.1105512836
+UniRef50_UPI00016C5967: fatty acid synthesis protein|unclassified	0.1105512836
+UniRef50_C2TR10	0.1105471171
+UniRef50_C2TR10|unclassified	0.1105471171
+UniRef50_UPI000381A9B8: hypothetical protein	0.1105406955
+UniRef50_UPI000381A9B8: hypothetical protein|unclassified	0.1105406955
+UniRef50_Q6XYZ4: Energy-coupling factor transporter ATP-binding protein EcfA1	0.1105363785
+UniRef50_Q6XYZ4: Energy-coupling factor transporter ATP-binding protein EcfA1|unclassified	0.1105363785
+UniRef50_UPI0003B31354: hypothetical protein	0.1105225514
+UniRef50_UPI0003B31354: hypothetical protein|unclassified	0.1105225514
+UniRef50_UPI0002E15CBB: hypothetical protein	0.1105210100
+UniRef50_UPI0002E15CBB: hypothetical protein|unclassified	0.1105210100
+UniRef50_S5AGQ7: DoxX protein	0.1105186480
+UniRef50_S5AGQ7: DoxX protein|unclassified	0.1105186480
+UniRef50_G8LD06: Virulence Protein SrfB	0.1105097320
+UniRef50_G8LD06: Virulence Protein SrfB|unclassified	0.1105097320
+UniRef50_A0A011R4M2: N-formylmethionyl-tRNA deformylase	0.1105059049
+UniRef50_A0A011R4M2: N-formylmethionyl-tRNA deformylase|unclassified	0.1105059049
+UniRef50_R2R8D8	0.1105015025
+UniRef50_R2R8D8|unclassified	0.1105015025
+UniRef50_UPI00047A9DFE: cysteine methyltransferase	0.1104891963
+UniRef50_UPI00047A9DFE: cysteine methyltransferase|unclassified	0.1104891963
+UniRef50_K5YJB6: Putative esterase	0.1104890578
+UniRef50_K5YJB6: Putative esterase|unclassified	0.1104890578
+UniRef50_A7IQG0	0.1104877803
+UniRef50_A7IQG0|unclassified	0.1104877803
+UniRef50_M9RH87	0.1104795590
+UniRef50_M9RH87|unclassified	0.1104795590
+UniRef50_Q1J3M1: Diguanylate cyclase with GAF sensor	0.1104768743
+UniRef50_Q1J3M1: Diguanylate cyclase with GAF sensor|unclassified	0.1104768743
+UniRef50_UPI000479E693: ribonuclease	0.1104709408
+UniRef50_UPI000479E693: ribonuclease|unclassified	0.1104709408
+UniRef50_M5G240	0.1104707122
+UniRef50_M5G240|unclassified	0.1104707122
+UniRef50_UPI0002557F03: major facilitator superfamily MFS_1	0.1104532369
+UniRef50_UPI0002557F03: major facilitator superfamily MFS_1|unclassified	0.1104532369
+UniRef50_G2IIB3: UPF0301 protein SLG_23610	0.1104472273
+UniRef50_G2IIB3: UPF0301 protein SLG_23610|unclassified	0.1104472273
+UniRef50_UPI0003757BE0: hypothetical protein	0.1104435502
+UniRef50_UPI0003757BE0: hypothetical protein|unclassified	0.1104435502
+UniRef50_T0RY50: LemA family protein	0.1104433837
+UniRef50_T0RY50: LemA family protein|unclassified	0.1104433837
+UniRef50_UPI00021A573D: PREDICTED: glutathione transport system permease protein gsiC-like	0.1104424074
+UniRef50_UPI00021A573D: PREDICTED: glutathione transport system permease protein gsiC-like|unclassified	0.1104424074
+UniRef50_UPI00046EFA69: tagatose-bisphosphate aldolase	0.1104422850
+UniRef50_UPI00046EFA69: tagatose-bisphosphate aldolase|unclassified	0.1104422850
+UniRef50_X1YHV7: Catalase	0.1104398636
+UniRef50_X1YHV7: Catalase|unclassified	0.1104398636
+UniRef50_D5VG70: Putative GAF sensor protein	0.1104246671
+UniRef50_D5VG70: Putative GAF sensor protein|unclassified	0.1104246671
+UniRef50_UPI0004764F09: hypothetical protein	0.1104233738
+UniRef50_UPI0004764F09: hypothetical protein|unclassified	0.1104233738
+UniRef50_UPI00035ED201: hypothetical protein	0.1104172106
+UniRef50_UPI00035ED201: hypothetical protein|unclassified	0.1104172106
+UniRef50_UPI0003314CA4	0.1104068368
+UniRef50_UPI0003314CA4|unclassified	0.1104068368
+UniRef50_I4C647: Putative virion core protein (Lumpy skin disease virus)	0.1103909605
+UniRef50_I4C647: Putative virion core protein (Lumpy skin disease virus)|unclassified	0.1103909605
+UniRef50_N6VD86: Cytoplasmic membrane protein	0.1103823321
+UniRef50_N6VD86: Cytoplasmic membrane protein|unclassified	0.1103823321
+UniRef50_W0MVX4: DSBA oxidoreductase	0.1103685924
+UniRef50_W0MVX4: DSBA oxidoreductase|unclassified	0.1103685924
+UniRef50_M2NKV9	0.1103537479
+UniRef50_M2NKV9|unclassified	0.1103537479
+UniRef50_UPI00036A5281: hypothetical protein	0.1103531908
+UniRef50_UPI00036A5281: hypothetical protein|unclassified	0.1103531908
+UniRef50_Q9XTI0: Probable 3-hydroxyisobutyrate dehydrogenase, mitochondrial	0.1103490785
+UniRef50_Q9XTI0: Probable 3-hydroxyisobutyrate dehydrogenase, mitochondrial|unclassified	0.1103490785
+UniRef50_R6TF23: Phosphoesterase	0.1103374013
+UniRef50_R6TF23: Phosphoesterase|unclassified	0.1103374013
+UniRef50_UPI00035F1A33: hypothetical protein	0.1103349421
+UniRef50_UPI00035F1A33: hypothetical protein|unclassified	0.1103349421
+UniRef50_UPI00036DE01E: hypothetical protein	0.1103308625
+UniRef50_UPI00036DE01E: hypothetical protein|unclassified	0.1103308625
+UniRef50_UPI00036B758D: hypothetical protein	0.1103285226
+UniRef50_UPI00036B758D: hypothetical protein|unclassified	0.1103285226
+UniRef50_UPI0003112AFB: zinc ABC transporter ATP-binding protein	0.1103099406
+UniRef50_UPI0003112AFB: zinc ABC transporter ATP-binding protein|unclassified	0.1103099406
+UniRef50_Q491X2: Phosphopantetheine adenylyltransferase	0.1103030243
+UniRef50_Q491X2: Phosphopantetheine adenylyltransferase|unclassified	0.1103030243
+UniRef50_V6JJA7: Membrane protein	0.1102992844
+UniRef50_V6JJA7: Membrane protein|unclassified	0.1102992844
+UniRef50_Q5ZWB8: UPF0234 protein lpg1167	0.1102983650
+UniRef50_Q5ZWB8: UPF0234 protein lpg1167|unclassified	0.1102983650
+UniRef50_D8LFI7: Hypothetical leucine rich repeat protein	0.1102975807
+UniRef50_D8LFI7: Hypothetical leucine rich repeat protein|unclassified	0.1102975807
+UniRef50_I1I770	0.1102819533
+UniRef50_I1I770|unclassified	0.1102819533
+UniRef50_UPI000366D55E: hypothetical protein, partial	0.1102777760
+UniRef50_UPI000366D55E: hypothetical protein, partial|unclassified	0.1102777760
+UniRef50_UPI0004777ACC: cytochrome C oxidase assembly protein	0.1102675819
+UniRef50_UPI0004777ACC: cytochrome C oxidase assembly protein|unclassified	0.1102675819
+UniRef50_Q11MG4: Carbon monoxide dehydrogenase subunit G	0.1102656328
+UniRef50_Q11MG4: Carbon monoxide dehydrogenase subunit G|unclassified	0.1102656328
+UniRef50_A7EVF4: Molybdopterin synthase catalytic subunit	0.1102623686
+UniRef50_A7EVF4: Molybdopterin synthase catalytic subunit|unclassified	0.1102623686
+UniRef50_X1KMN7: Marine sediment metagenome DNA, contig: S06H3_C03534	0.1102601577
+UniRef50_X1KMN7: Marine sediment metagenome DNA, contig: S06H3_C03534|unclassified	0.1102601577
+UniRef50_UPI00035EB9CB: hypothetical protein	0.1102520065
+UniRef50_UPI00035EB9CB: hypothetical protein|unclassified	0.1102520065
+UniRef50_UPI0003D2D950: hypothetical protein	0.1102468466
+UniRef50_UPI0003D2D950: hypothetical protein|unclassified	0.1102468466
+UniRef50_P44701: ATP-dependent RNA helicase SrmB	0.1102410539
+UniRef50_P44701: ATP-dependent RNA helicase SrmB|unclassified	0.1102410539
+UniRef50_J8RTN8: Cupin	0.1102409660
+UniRef50_J8RTN8: Cupin|unclassified	0.1102409660
+UniRef50_UPI0003673FB4: hypothetical protein	0.1102310665
+UniRef50_UPI0003673FB4: hypothetical protein|unclassified	0.1102310665
+UniRef50_E6V5S3: Carbon monoxide dehydrogenase subunit G	0.1102282604
+UniRef50_E6V5S3: Carbon monoxide dehydrogenase subunit G|unclassified	0.1102282604
+UniRef50_UPI0003722DD0: hypothetical protein	0.1102256267
+UniRef50_UPI0003722DD0: hypothetical protein|unclassified	0.1102256267
+UniRef50_T1B4M3: YCII-related domain-like protein	0.1102158107
+UniRef50_T1B4M3: YCII-related domain-like protein|unclassified	0.1102158107
+UniRef50_F4N5F0	0.1102117700
+UniRef50_F4N5F0|unclassified	0.1102117700
+UniRef50_UPI0002631758: branched-chain alpha-keto acid dehydrogenase subunit E2, partial	0.1102107717
+UniRef50_UPI0002631758: branched-chain alpha-keto acid dehydrogenase subunit E2, partial|unclassified	0.1102107717
+UniRef50_D8IQA1: Fe2+-dicitrate sensor, membrane component protein	0.1102085292
+UniRef50_D8IQA1: Fe2+-dicitrate sensor, membrane component protein|unclassified	0.1102085292
+UniRef50_UPI000374DB26: hypothetical protein, partial	0.1102075972
+UniRef50_UPI000374DB26: hypothetical protein, partial|unclassified	0.1102075972
+UniRef50_V6KGQ9	0.1102060403
+UniRef50_V6KGQ9|unclassified	0.1102060403
+UniRef50_UPI00029B5291: hypothetical protein, partial	0.1102012546
+UniRef50_UPI00029B5291: hypothetical protein, partial|unclassified	0.1102012546
+UniRef50_Q2LVL0: Lipid A export ATP-binding/permease protein MsbA	0.1102009988
+UniRef50_Q2LVL0: Lipid A export ATP-binding/permease protein MsbA|unclassified	0.1102009988
+UniRef50_UPI0004445EDA: PREDICTED: lactoylglutathione lyase-like	0.1101984137
+UniRef50_UPI0004445EDA: PREDICTED: lactoylglutathione lyase-like|unclassified	0.1101984137
+UniRef50_UPI00047B4025: hypothetical protein	0.1101905546
+UniRef50_UPI00047B4025: hypothetical protein|unclassified	0.1101905546
+UniRef50_B8HXM8: tRNA-hydroxylase	0.1101735221
+UniRef50_B8HXM8: tRNA-hydroxylase|unclassified	0.1101735221
+UniRef50_G2DEC1: EAL/GGDEF domain signal transduction protein	0.1101729250
+UniRef50_G2DEC1: EAL/GGDEF domain signal transduction protein|unclassified	0.1101729250
+UniRef50_D5DPW2	0.1101696082
+UniRef50_D5DPW2|unclassified	0.1101696082
+UniRef50_UPI0003A5F511: membrane protein	0.1101682489
+UniRef50_UPI0003A5F511: membrane protein|unclassified	0.1101682489
+UniRef50_UPI0003F7DFC2: hypothetical protein	0.1101579447
+UniRef50_UPI0003F7DFC2: hypothetical protein|unclassified	0.1101579447
+UniRef50_UPI0002EAC6F7: hypothetical protein	0.1101426627
+UniRef50_UPI0002EAC6F7: hypothetical protein|unclassified	0.1101426627
+UniRef50_Q39R83: Dephospho-CoA kinase	0.1101407214
+UniRef50_Q39R83: Dephospho-CoA kinase|unclassified	0.1101407214
+UniRef50_UPI0003C17609: PREDICTED: adenylosuccinate synthetase 1, chloroplastic-like, partial	0.1101324903
+UniRef50_UPI0003C17609: PREDICTED: adenylosuccinate synthetase 1, chloroplastic-like, partial|unclassified	0.1101324903
+UniRef50_UPI000361E6E2: hypothetical protein	0.1101152051
+UniRef50_UPI000361E6E2: hypothetical protein|unclassified	0.1101152051
+UniRef50_A4VSK6	0.1101138642
+UniRef50_A4VSK6|unclassified	0.1101138642
+UniRef50_M4EHE6	0.1101133476
+UniRef50_M4EHE6|unclassified	0.1101133476
+UniRef50_UPI00046F039B: DNA gyrase subunit B	0.1101005214
+UniRef50_UPI00046F039B: DNA gyrase subunit B|unclassified	0.1101005214
+UniRef50_UPI00047B4AE1: hypothetical protein	0.1100923433
+UniRef50_UPI00047B4AE1: hypothetical protein|unclassified	0.1100923433
+UniRef50_Q5P6G9: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.1100820409
+UniRef50_Q5P6G9: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.1100820409
+UniRef50_UPI00016A5EA5: CAIB/BAIF family protein, partial	0.1100716063
+UniRef50_UPI00016A5EA5: CAIB/BAIF family protein, partial|unclassified	0.1100716063
+UniRef50_U1HBD5: D-3-phosphoglycerate dehydrogenase	0.1100608675
+UniRef50_U1HBD5: D-3-phosphoglycerate dehydrogenase|unclassified	0.1100608675
+UniRef50_UPI00036255BA: hypothetical protein	0.1100540294
+UniRef50_UPI00036255BA: hypothetical protein|unclassified	0.1100540294
+UniRef50_UPI00037E4C41: hypothetical protein, partial	0.1100453473
+UniRef50_UPI00037E4C41: hypothetical protein, partial|unclassified	0.1100453473
+UniRef50_J8BWJ3	0.1100410371
+UniRef50_J8BWJ3|unclassified	0.1100410371
+UniRef50_UPI000375E5A5: hypothetical protein	0.1100401946
+UniRef50_UPI000375E5A5: hypothetical protein|unclassified	0.1100401946
+UniRef50_B9QHN7: Fop carboxy-terminal duplication domain protein	0.1100301642
+UniRef50_B9QHN7: Fop carboxy-terminal duplication domain protein|unclassified	0.1100301642
+UniRef50_Q0BGD7: Putative ribose/galactose/methyl galactoside import ATP-binding protein 1	0.1100220493
+UniRef50_Q0BGD7: Putative ribose/galactose/methyl galactoside import ATP-binding protein 1|unclassified	0.1100220493
+UniRef50_L1AUR2: Putative rhsE (Fragment)	0.1100131420
+UniRef50_L1AUR2: Putative rhsE (Fragment)|unclassified	0.1100131420
+UniRef50_V1HUM9: Methyl-accepting chemotaxis protein	0.1100096079
+UniRef50_V1HUM9: Methyl-accepting chemotaxis protein|unclassified	0.1100096079
+UniRef50_C1MZG0: Predicted protein	0.1100073062
+UniRef50_C1MZG0: Predicted protein|unclassified	0.1100073062
+UniRef50_I2BWM5: Membrane protein, UPF0126 family	0.1100012300
+UniRef50_I2BWM5: Membrane protein, UPF0126 family|unclassified	0.1100012300
+UniRef50_C3ECK5	0.1099955805
+UniRef50_C3ECK5|unclassified	0.1099955805
+UniRef50_UPI0003C169CE: PREDICTED: triosephosphate isomerase-like	0.1099797457
+UniRef50_UPI0003C169CE: PREDICTED: triosephosphate isomerase-like|unclassified	0.1099797457
+UniRef50_Q3ZXS0: NADH-quinone oxidoreductase subunit B	0.1099777037
+UniRef50_Q3ZXS0: NADH-quinone oxidoreductase subunit B|unclassified	0.1099777037
+UniRef50_K2G5M6	0.1099753124
+UniRef50_K2G5M6|unclassified	0.1099753124
+UniRef50_F2U7G5	0.1099720140
+UniRef50_F2U7G5|unclassified	0.1099720140
+UniRef50_X4UFA5	0.1099716291
+UniRef50_X4UFA5|unclassified	0.1099716291
+UniRef50_D4J2U6	0.1099512622
+UniRef50_D4J2U6|unclassified	0.1099512622
+UniRef50_UPI0003F8C513: acetolactate synthase	0.1099507556
+UniRef50_UPI0003F8C513: acetolactate synthase|unclassified	0.1099507556
+UniRef50_X7F761: Rhodanese	0.1099385168
+UniRef50_X7F761: Rhodanese|unclassified	0.1099385168
+UniRef50_UPI0002EDF843: hypothetical protein	0.1099363817
+UniRef50_UPI0002EDF843: hypothetical protein|unclassified	0.1099363817
+UniRef50_A1WWP8: Siroheme synthase 1	0.1099356138
+UniRef50_A1WWP8: Siroheme synthase 1|unclassified	0.1099356138
+UniRef50_L8JDL8	0.1099344538
+UniRef50_L8JDL8|unclassified	0.1099344538
+UniRef50_Q1YMY0	0.1099334212
+UniRef50_Q1YMY0|unclassified	0.1099334212
+UniRef50_E5YBU0	0.1099271046
+UniRef50_E5YBU0|unclassified	0.1099271046
+UniRef50_UPI0003B6010A: lipoprotein signal peptidase	0.1099226949
+UniRef50_UPI0003B6010A: lipoprotein signal peptidase|unclassified	0.1099226949
+UniRef50_X2GK46	0.1099179382
+UniRef50_X2GK46|unclassified	0.1099179382
+UniRef50_UPI00037C4F55: hypothetical protein	0.1099078163
+UniRef50_UPI00037C4F55: hypothetical protein|unclassified	0.1099078163
+UniRef50_UPI00038302DD: hypothetical protein	0.1099044413
+UniRef50_UPI00038302DD: hypothetical protein|unclassified	0.1099044413
+UniRef50_G2DKC2: AAA ATPase family protein	0.1099002431
+UniRef50_G2DKC2: AAA ATPase family protein|unclassified	0.1099002431
+UniRef50_UPI00046FCB87: hypothetical protein	0.1099000056
+UniRef50_UPI00046FCB87: hypothetical protein|unclassified	0.1099000056
+UniRef50_A0LUA6	0.1098921680
+UniRef50_A0LUA6|unclassified	0.1098921680
+UniRef50_D1BQH9	0.1098921198
+UniRef50_D1BQH9|unclassified	0.1098921198
+UniRef50_R8API0: Hydrogenase-1 operon protein HyaF, putative	0.1098728428
+UniRef50_R8API0: Hydrogenase-1 operon protein HyaF, putative|unclassified	0.1098728428
+UniRef50_A4EUM0: Cation transport protein ChaC, putative	0.1098719492
+UniRef50_A4EUM0: Cation transport protein ChaC, putative|unclassified	0.1098719492
+UniRef50_A0A024EGA0	0.1098708156
+UniRef50_A0A024EGA0|unclassified	0.1098708156
+UniRef50_UPI0003B78686: polyamine ABC transporter permease, partial	0.1098685590
+UniRef50_UPI0003B78686: polyamine ABC transporter permease, partial|unclassified	0.1098685590
+UniRef50_F8JXJ3	0.1098667602
+UniRef50_F8JXJ3|unclassified	0.1098667602
+UniRef50_D8UDA4	0.1098614633
+UniRef50_D8UDA4|unclassified	0.1098614633
+UniRef50_K0RDX1	0.1098593617
+UniRef50_K0RDX1|unclassified	0.1098593617
+UniRef50_UPI0003698A73: hypothetical protein	0.1098470512
+UniRef50_UPI0003698A73: hypothetical protein|unclassified	0.1098470512
+UniRef50_A1TRW2: Ankyrin	0.1098446190
+UniRef50_A1TRW2: Ankyrin|unclassified	0.1098446190
+UniRef50_A3SHV2: Two-component response regulator	0.1098440602
+UniRef50_A3SHV2: Two-component response regulator|unclassified	0.1098440602
+UniRef50_W9G7U1	0.1098434653
+UniRef50_W9G7U1|unclassified	0.1098434653
+UniRef50_UPI000372373D: hypothetical protein	0.1098420510
+UniRef50_UPI000372373D: hypothetical protein|unclassified	0.1098420510
+UniRef50_A4XQW1: Tfp pilus assembly protein PilX-like protein	0.1098390019
+UniRef50_A4XQW1: Tfp pilus assembly protein PilX-like protein|unclassified	0.1098390019
+UniRef50_UPI00036681CD: transposase IS3	0.1098355260
+UniRef50_UPI00036681CD: transposase IS3|unclassified	0.1098355260
+UniRef50_UPI0004748C48: hypothetical protein, partial	0.1098353314
+UniRef50_UPI0004748C48: hypothetical protein, partial|unclassified	0.1098353314
+UniRef50_UPI000374491A: hypothetical protein, partial	0.1098284915
+UniRef50_UPI000374491A: hypothetical protein, partial|unclassified	0.1098284915
+UniRef50_W7PWI7	0.1098160607
+UniRef50_W7PWI7|unclassified	0.1098160607
+UniRef50_UPI000248604B: hypothetical protein	0.1098132330
+UniRef50_UPI000248604B: hypothetical protein|unclassified	0.1098132330
+UniRef50_P21852: Periplasmic [NiFe] hydrogenase large subunit	0.1098052866
+UniRef50_P21852: Periplasmic [NiFe] hydrogenase large subunit|unclassified	0.1098052866
+UniRef50_UPI00036495C3: hypothetical protein	0.1098044378
+UniRef50_UPI00036495C3: hypothetical protein|unclassified	0.1098044378
+UniRef50_UPI0003737277: hypothetical protein	0.1098034579
+UniRef50_UPI0003737277: hypothetical protein|unclassified	0.1098034579
+UniRef50_Q47480: ORF146	0.1097911907
+UniRef50_Q47480: ORF146|unclassified	0.1097911907
+UniRef50_F6GAA5	0.1097888087
+UniRef50_F6GAA5|unclassified	0.1097888087
+UniRef50_UPI000406D313: GNAT family acetyltransferase	0.1097825456
+UniRef50_UPI000406D313: GNAT family acetyltransferase|unclassified	0.1097825456
+UniRef50_Q67KN6: NADH-quinone oxidoreductase subunit B 2	0.1097801240
+UniRef50_Q67KN6: NADH-quinone oxidoreductase subunit B 2|unclassified	0.1097801240
+UniRef50_UPI00046F7312: hypothetical protein	0.1097687419
+UniRef50_UPI00046F7312: hypothetical protein|unclassified	0.1097687419
+UniRef50_C0D0V3	0.1097570278
+UniRef50_C0D0V3|unclassified	0.1097570278
+UniRef50_K0S2B3	0.1097509160
+UniRef50_K0S2B3|unclassified	0.1097509160
+UniRef50_X6KV32	0.1097504921
+UniRef50_X6KV32|unclassified	0.1097504921
+UniRef50_W5XAN5	0.1097461776
+UniRef50_W5XAN5|unclassified	0.1097461776
+UniRef50_UPI00047BCA12: HNH endonuclease	0.1097395067
+UniRef50_UPI00047BCA12: HNH endonuclease|unclassified	0.1097395067
+UniRef50_UPI00046495D0: antibiotic ABC transporter ATP-binding protein	0.1097346754
+UniRef50_UPI00046495D0: antibiotic ABC transporter ATP-binding protein|unclassified	0.1097346754
+UniRef50_UPI00016A4104: Succinate-semialdehyde dehydrogenase (NAD(P)(+))	0.1097331012
+UniRef50_UPI00016A4104: Succinate-semialdehyde dehydrogenase (NAD(P)(+))|unclassified	0.1097331012
+UniRef50_C7BHM9	0.1097275203
+UniRef50_C7BHM9|unclassified	0.1097275203
+UniRef50_Q1MZ78	0.1097119639
+UniRef50_Q1MZ78|unclassified	0.1097119639
+UniRef50_UPI000361AD9C: hypothetical protein	0.1097013288
+UniRef50_UPI000361AD9C: hypothetical protein|unclassified	0.1097013288
+UniRef50_Q2NIS7: Triosephosphate isomerase	0.1096951056
+UniRef50_Q2NIS7: Triosephosphate isomerase|unclassified	0.1096951056
+UniRef50_B7P675	0.1096950920
+UniRef50_B7P675|unclassified	0.1096950920
+UniRef50_B1M9A2: ABC transporter substrate-binding protein	0.1096892562
+UniRef50_B1M9A2: ABC transporter substrate-binding protein|unclassified	0.1096892562
+UniRef50_P45172: Peptidase T	0.1096797031
+UniRef50_P45172: Peptidase T|unclassified	0.1096797031
+UniRef50_UPI00036D95BA: hypothetical protein	0.1096779375
+UniRef50_UPI00036D95BA: hypothetical protein|unclassified	0.1096779375
+UniRef50_D5VLC0: SNARE associated Golgi protein-associated protein	0.1096708395
+UniRef50_D5VLC0: SNARE associated Golgi protein-associated protein|unclassified	0.1096708395
+UniRef50_Q9A699: DedA family protein	0.1096708395
+UniRef50_Q9A699: DedA family protein|unclassified	0.1096708395
+UniRef50_UPI00036A2D10: hypothetical protein, partial	0.1096596552
+UniRef50_UPI00036A2D10: hypothetical protein, partial|unclassified	0.1096596552
+UniRef50_U3THX2	0.1096530823
+UniRef50_U3THX2|unclassified	0.1096530823
+UniRef50_UPI000360F677: hypothetical protein	0.1096512687
+UniRef50_UPI000360F677: hypothetical protein|unclassified	0.1096512687
+UniRef50_UPI0003B72AD8: hypothetical protein	0.1096488469
+UniRef50_UPI0003B72AD8: hypothetical protein|unclassified	0.1096488469
+UniRef50_UPI00047412E3: hypothetical protein, partial	0.1096374497
+UniRef50_UPI00047412E3: hypothetical protein, partial|unclassified	0.1096374497
+UniRef50_J3C3Q8: ABC-type transport system, involved in lipoprotein release, permease component (Fragment)	0.1096128541
+UniRef50_J3C3Q8: ABC-type transport system, involved in lipoprotein release, permease component (Fragment)|unclassified	0.1096128541
+UniRef50_UPI0002EB61A9: hypothetical protein	0.1096108251
+UniRef50_UPI0002EB61A9: hypothetical protein|unclassified	0.1096108251
+UniRef50_V6EWF8	0.1096107337
+UniRef50_V6EWF8|unclassified	0.1096107337
+UniRef50_X1SF25: Marine sediment metagenome DNA, contig: S12H4_C00581	0.1096098444
+UniRef50_X1SF25: Marine sediment metagenome DNA, contig: S12H4_C00581|unclassified	0.1096098444
+UniRef50_UPI0003B6A997: endonuclease	0.1096093869
+UniRef50_UPI0003B6A997: endonuclease|unclassified	0.1096093869
+UniRef50_UPI000368BE46: hypothetical protein	0.1096077028
+UniRef50_UPI000368BE46: hypothetical protein|unclassified	0.1096077028
+UniRef50_UPI00035F96A3: hypothetical protein	0.1096042530
+UniRef50_UPI00035F96A3: hypothetical protein|unclassified	0.1096042530
+UniRef50_A0A017IAI8: AraC-type transcriptional regulator family protein	0.1095978453
+UniRef50_A0A017IAI8: AraC-type transcriptional regulator family protein|unclassified	0.1095978453
+UniRef50_Q98457	0.1095917935
+UniRef50_Q98457|unclassified	0.1095917935
+UniRef50_W8RTF1: Integral membrane protein	0.1095900071
+UniRef50_W8RTF1: Integral membrane protein|unclassified	0.1095900071
+UniRef50_UPI00047054F2: hypothetical protein, partial	0.1095805117
+UniRef50_UPI00047054F2: hypothetical protein, partial|unclassified	0.1095805117
+UniRef50_I9Q169	0.1095709691
+UniRef50_I9Q169|unclassified	0.1095709691
+UniRef50_UPI00034BD3ED: hypothetical protein	0.1095685340
+UniRef50_UPI00034BD3ED: hypothetical protein|unclassified	0.1095685340
+UniRef50_C2MVF2	0.1095683509
+UniRef50_C2MVF2|unclassified	0.1095683509
+UniRef50_Q6F2T6	0.1095608997
+UniRef50_Q6F2T6|unclassified	0.1095608997
+UniRef50_C4LA07: Rhodanese domain protein	0.1095585697
+UniRef50_C4LA07: Rhodanese domain protein|unclassified	0.1095585697
+UniRef50_L0EH94: Arabinose efflux permease family protein	0.1095569149
+UniRef50_L0EH94: Arabinose efflux permease family protein|unclassified	0.1095569149
+UniRef50_UPI000478E4CD: hypothetical protein	0.1095547220
+UniRef50_UPI000478E4CD: hypothetical protein|unclassified	0.1095547220
+UniRef50_UPI0004659A64: hypothetical protein	0.1095531748
+UniRef50_UPI0004659A64: hypothetical protein|unclassified	0.1095531748
+UniRef50_UPI00046F1E88: hypothetical protein	0.1095427243
+UniRef50_UPI00046F1E88: hypothetical protein|unclassified	0.1095427243
+UniRef50_UPI0004219893: hypothetical protein	0.1095422309
+UniRef50_UPI0004219893: hypothetical protein|unclassified	0.1095422309
+UniRef50_UPI000421C3E9: sulfate ABC transporter ATPase	0.1095396898
+UniRef50_UPI000421C3E9: sulfate ABC transporter ATPase|unclassified	0.1095396898
+UniRef50_S6HIL0	0.1095388161
+UniRef50_S6HIL0|unclassified	0.1095388161
+UniRef50_UPI0003AEC138: PREDICTED: collagen alpha-1(I) chain-like, partial	0.1095174841
+UniRef50_UPI0003AEC138: PREDICTED: collagen alpha-1(I) chain-like, partial|unclassified	0.1095174841
+UniRef50_Q6G082: Ribonuclease 3	0.1095097035
+UniRef50_Q6G082: Ribonuclease 3|unclassified	0.1095097035
+UniRef50_M1W2U9	0.1095092513
+UniRef50_M1W2U9|unclassified	0.1095092513
+UniRef50_UPI0003F0A793	0.1095077972
+UniRef50_UPI0003F0A793|unclassified	0.1095077972
+UniRef50_D6GRJ0: Relaxase/mobilization nuclease domain protein	0.1095053664
+UniRef50_D6GRJ0: Relaxase/mobilization nuclease domain protein|unclassified	0.1095053664
+UniRef50_D1QMA1	0.1095022180
+UniRef50_D1QMA1|unclassified	0.1095022180
+UniRef50_I0HQC6: NnrS family protein	0.1095018723
+UniRef50_I0HQC6: NnrS family protein|unclassified	0.1095018723
+UniRef50_A0A058Z6X2	0.1094951676
+UniRef50_A0A058Z6X2|unclassified	0.1094951676
+UniRef50_A0A033V5C1	0.1094946872
+UniRef50_A0A033V5C1|unclassified	0.1094946872
+UniRef50_UPI000378C0D5: hypothetical protein	0.1094938961
+UniRef50_UPI000378C0D5: hypothetical protein|unclassified	0.1094938961
+UniRef50_UPI000468F8E2: cystathionine beta-lyase	0.1094930737
+UniRef50_UPI000468F8E2: cystathionine beta-lyase|unclassified	0.1094930737
+UniRef50_J8V180	0.1094891473
+UniRef50_J8V180|unclassified	0.1094891473
+UniRef50_UPI00047CC4E1: hypothetical protein	0.1094889871
+UniRef50_UPI00047CC4E1: hypothetical protein|unclassified	0.1094889871
+UniRef50_UPI00035D9DA9: hypothetical protein	0.1094877376
+UniRef50_UPI00035D9DA9: hypothetical protein|unclassified	0.1094877376
+UniRef50_L2LUI2	0.1094818182
+UniRef50_L2LUI2|unclassified	0.1094818182
+UniRef50_UPI000255F8A9: cation transport ATPase	0.1094791612
+UniRef50_UPI000255F8A9: cation transport ATPase|unclassified	0.1094791612
+UniRef50_UPI00020030C4: hypothetical protein	0.1094709013
+UniRef50_UPI00020030C4: hypothetical protein|unclassified	0.1094709013
+UniRef50_UPI00026306BC: gluconate transporter	0.1094569698
+UniRef50_UPI00026306BC: gluconate transporter|unclassified	0.1094569698
+UniRef50_UPI00037CC8E0: hypothetical protein	0.1094559131
+UniRef50_UPI00037CC8E0: hypothetical protein|unclassified	0.1094559131
+UniRef50_D7AAV7	0.1094551155
+UniRef50_D7AAV7|unclassified	0.1094551155
+UniRef50_UPI0003B36894: hypothetical protein	0.1094520697
+UniRef50_UPI0003B36894: hypothetical protein|unclassified	0.1094520697
+UniRef50_UPI00047262F8: hypothetical protein	0.1094425614
+UniRef50_UPI00047262F8: hypothetical protein|unclassified	0.1094425614
+UniRef50_D0L496	0.1094358444
+UniRef50_D0L496|unclassified	0.1094358444
+UniRef50_A1WYZ3: Probable nicotinate-nucleotide adenylyltransferase	0.1094315814
+UniRef50_A1WYZ3: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.1094315814
+UniRef50_P56935: 3-isopropylmalate dehydratase small subunit	0.1094309811
+UniRef50_P56935: 3-isopropylmalate dehydratase small subunit|unclassified	0.1094309811
+UniRef50_K0PIB1	0.1094275836
+UniRef50_K0PIB1|unclassified	0.1094275836
+UniRef50_UPI00025564A7: 16S rRNA methyltransferase	0.1094152585
+UniRef50_UPI00025564A7: 16S rRNA methyltransferase|unclassified	0.1094152585
+UniRef50_UPI000248FFA9: NGG1p interacting factor 3 protein, NIF3	0.1094107248
+UniRef50_UPI000248FFA9: NGG1p interacting factor 3 protein, NIF3|unclassified	0.1094107248
+UniRef50_UPI00041078B2: sulfurtransferase	0.1094049835
+UniRef50_UPI00041078B2: sulfurtransferase|unclassified	0.1094049835
+UniRef50_UPI0003B3BC8C: biotin synthase	0.1094023078
+UniRef50_UPI0003B3BC8C: biotin synthase|unclassified	0.1094023078
+UniRef50_UPI0000E11708: beta-hexosaminidase	0.1093867201
+UniRef50_UPI0000E11708: beta-hexosaminidase|unclassified	0.1093867201
+UniRef50_W5X630: Putative OsmC-like protein	0.1093863905
+UniRef50_W5X630: Putative OsmC-like protein|unclassified	0.1093863905
+UniRef50_UPI000472FD2F: hypothetical protein	0.1093844410
+UniRef50_UPI000472FD2F: hypothetical protein|unclassified	0.1093844410
+UniRef50_Q2LSL8: Chemotaxis protein	0.1093782114
+UniRef50_Q2LSL8: Chemotaxis protein|unclassified	0.1093782114
+UniRef50_UPI0002BA4193: hypothetical protein	0.1093709713
+UniRef50_UPI0002BA4193: hypothetical protein|unclassified	0.1093709713
+UniRef50_M5BAZ5	0.1093703380
+UniRef50_M5BAZ5|unclassified	0.1093703380
+UniRef50_I0G3U5: Dicarboxylate transporter membrane protein	0.1093685475
+UniRef50_I0G3U5: Dicarboxylate transporter membrane protein|unclassified	0.1093685475
+UniRef50_E8LF44: BioX family protein	0.1093672319
+UniRef50_E8LF44: BioX family protein|unclassified	0.1093672319
+UniRef50_K2H7W5	0.1093602800
+UniRef50_K2H7W5|unclassified	0.1093602800
+UniRef50_F5NZP6: YhaO	0.1093581322
+UniRef50_F5NZP6: YhaO|unclassified	0.1093581322
+UniRef50_W9V2J4: Pilus assembly protein, PilP	0.1093484076
+UniRef50_W9V2J4: Pilus assembly protein, PilP|unclassified	0.1093484076
+UniRef50_F5SR33	0.1093453943
+UniRef50_F5SR33|unclassified	0.1093453943
+UniRef50_UPI000347FD93: hypothetical protein	0.1093439111
+UniRef50_UPI000347FD93: hypothetical protein|unclassified	0.1093439111
+UniRef50_X4Z4W5	0.1093376728
+UniRef50_X4Z4W5|unclassified	0.1093376728
+UniRef50_UPI00035E5E43: phosphoadenosine phosphosulfate reductase	0.1093351253
+UniRef50_UPI00035E5E43: phosphoadenosine phosphosulfate reductase|unclassified	0.1093351253
+UniRef50_UPI0003FE234D: hypothetical protein	0.1093334417
+UniRef50_UPI0003FE234D: hypothetical protein|unclassified	0.1093334417
+UniRef50_J8GA47	0.1093329107
+UniRef50_J8GA47|unclassified	0.1093329107
+UniRef50_I9KL58	0.1093315921
+UniRef50_I9KL58|unclassified	0.1093315921
+UniRef50_UPI00047C35C2: hypothetical protein	0.1093309372
+UniRef50_UPI00047C35C2: hypothetical protein|unclassified	0.1093309372
+UniRef50_UPI0003BD7FE7	0.1093267212
+UniRef50_UPI0003BD7FE7|unclassified	0.1093267212
+UniRef50_F4HEQ1: Lipoprotein	0.1093256505
+UniRef50_F4HEQ1: Lipoprotein|unclassified	0.1093256505
+UniRef50_Q08TK0	0.1093243848
+UniRef50_Q08TK0|unclassified	0.1093243848
+UniRef50_UPI00046E6745: GntR family transcriptional regulator	0.1093227695
+UniRef50_UPI00046E6745: GntR family transcriptional regulator|unclassified	0.1093227695
+UniRef50_P54458: Putative methyltransferase YqeM	0.1093216116
+UniRef50_P54458: Putative methyltransferase YqeM|unclassified	0.1093216116
+UniRef50_Q8P5Q4: Acetylornithine aminotransferase	0.1093200956
+UniRef50_Q8P5Q4: Acetylornithine aminotransferase|unclassified	0.1093200956
+UniRef50_UPI00047A6BB5: hypothetical protein	0.1093102879
+UniRef50_UPI00047A6BB5: hypothetical protein|unclassified	0.1093102879
+UniRef50_Q4PDQ3	0.1093082726
+UniRef50_Q4PDQ3|unclassified	0.1093082726
+UniRef50_UPI000476A08E: hypothetical protein	0.1093068899
+UniRef50_UPI000476A08E: hypothetical protein|unclassified	0.1093068899
+UniRef50_L0D5P4	0.1093024678
+UniRef50_L0D5P4|unclassified	0.1093024678
+UniRef50_M0TK60	0.1093016559
+UniRef50_M0TK60|unclassified	0.1093016559
+UniRef50_Q216Y2: MaoC-like dehydratase	0.1093012012
+UniRef50_Q216Y2: MaoC-like dehydratase|unclassified	0.1093012012
+UniRef50_B2SSQ5: MazG family protein	0.1092950124
+UniRef50_B2SSQ5: MazG family protein|unclassified	0.1092950124
+UniRef50_UPI0004627B5D: PREDICTED: serine/arginine repetitive matrix protein 2 isoform X1	0.1092855869
+UniRef50_UPI0004627B5D: PREDICTED: serine/arginine repetitive matrix protein 2 isoform X1|unclassified	0.1092855869
+UniRef50_I4Z4F5: Lipoprotein	0.1092810286
+UniRef50_I4Z4F5: Lipoprotein|unclassified	0.1092810286
+UniRef50_B2HMM7: Transcriptional regulatory protein	0.1092739443
+UniRef50_B2HMM7: Transcriptional regulatory protein|unclassified	0.1092739443
+UniRef50_K2J9X9: DsbA oxidoreductase	0.1092603822
+UniRef50_K2J9X9: DsbA oxidoreductase|unclassified	0.1092603822
+UniRef50_UPI00024929AC: HAD superfamily hydrolase	0.1092589343
+UniRef50_UPI00024929AC: HAD superfamily hydrolase|unclassified	0.1092589343
+UniRef50_UPI00038242BD: hypothetical protein, partial	0.1092579115
+UniRef50_UPI00038242BD: hypothetical protein, partial|unclassified	0.1092579115
+UniRef50_A9WA74: LPXTG-motif cell wall anchor domain protein	0.1092541840
+UniRef50_A9WA74: LPXTG-motif cell wall anchor domain protein|unclassified	0.1092541840
+UniRef50_Q3JBU7: Cyclase/dehydrase	0.1092496094
+UniRef50_Q3JBU7: Cyclase/dehydrase|unclassified	0.1092496094
+UniRef50_UPI0002F47899: hypothetical protein	0.1092490743
+UniRef50_UPI0002F47899: hypothetical protein|unclassified	0.1092490743
+UniRef50_UPI0003F7E462: hypothetical protein	0.1092483023
+UniRef50_UPI0003F7E462: hypothetical protein|unclassified	0.1092483023
+UniRef50_UPI000479DC3A: hypothetical protein	0.1092441608
+UniRef50_UPI000479DC3A: hypothetical protein|unclassified	0.1092441608
+UniRef50_V4RNA8	0.1092431107
+UniRef50_V4RNA8|unclassified	0.1092431107
+UniRef50_UPI0003B79DA9: biotin biosynthesis protein BioC	0.1092313527
+UniRef50_UPI0003B79DA9: biotin biosynthesis protein BioC|unclassified	0.1092313527
+UniRef50_D7FZM3	0.1092240570
+UniRef50_D7FZM3|unclassified	0.1092240570
+UniRef50_UPI00026CB5A4: Crp/Fnr family transcription regulator	0.1092180548
+UniRef50_UPI00026CB5A4: Crp/Fnr family transcription regulator|unclassified	0.1092180548
+UniRef50_G8B0S1	0.1092142995
+UniRef50_G8B0S1|unclassified	0.1092142995
+UniRef50_UPI0004709FDA: molybdenum ABC transporter permease, partial	0.1092045515
+UniRef50_UPI0004709FDA: molybdenum ABC transporter permease, partial|unclassified	0.1092045515
+UniRef50_UPI00036688D0: hypothetical protein, partial	0.1092009729
+UniRef50_UPI00036688D0: hypothetical protein, partial|unclassified	0.1092009729
+UniRef50_UPI0003718D41: hypothetical protein	0.1091969966
+UniRef50_UPI0003718D41: hypothetical protein|unclassified	0.1091969966
+UniRef50_Q3AVP2: Cyclic pyranopterin monophosphate synthase accessory protein	0.1091919069
+UniRef50_Q3AVP2: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	0.1091919069
+UniRef50_UPI000469439E: hypothetical protein, partial	0.1091841676
+UniRef50_UPI000469439E: hypothetical protein, partial|unclassified	0.1091841676
+UniRef50_UPI000478FE81: ATP-dependent DNA helicase PcrA	0.1091841675
+UniRef50_UPI000478FE81: ATP-dependent DNA helicase PcrA|unclassified	0.1091841675
+UniRef50_UPI0003FF1B10: hypothetical protein	0.1091835174
+UniRef50_UPI0003FF1B10: hypothetical protein|unclassified	0.1091835174
+UniRef50_R1FS00	0.1091741941
+UniRef50_R1FS00|unclassified	0.1091741941
+UniRef50_UPI0003C19FB7: PREDICTED: lon protease homolog 2, peroxisomal-like	0.1091734030
+UniRef50_UPI0003C19FB7: PREDICTED: lon protease homolog 2, peroxisomal-like|unclassified	0.1091734030
+UniRef50_M5EE95	0.1091733380
+UniRef50_M5EE95|unclassified	0.1091733380
+UniRef50_Q5M2T6: ATP-dependent helicase/deoxyribonuclease subunit B	0.1091710238
+UniRef50_Q5M2T6: ATP-dependent helicase/deoxyribonuclease subunit B|unclassified	0.1091710238
+UniRef50_N8SB10	0.1091702655
+UniRef50_N8SB10|unclassified	0.1091702655
+UniRef50_G9ZD87	0.1091692286
+UniRef50_G9ZD87|unclassified	0.1091692286
+UniRef50_Q6NAB4	0.1091674479
+UniRef50_Q6NAB4|unclassified	0.1091674479
+UniRef50_UPI0003612EB0: hypothetical protein	0.1091626844
+UniRef50_UPI0003612EB0: hypothetical protein|unclassified	0.1091626844
+UniRef50_UPI00037962EA: hypothetical protein	0.1091601532
+UniRef50_UPI00037962EA: hypothetical protein|unclassified	0.1091601532
+UniRef50_A0A024HWP0	0.1091580284
+UniRef50_A0A024HWP0|unclassified	0.1091580284
+UniRef50_W8YT37	0.1091574692
+UniRef50_W8YT37|unclassified	0.1091574692
+UniRef50_B5YFB4: MazG	0.1091459855
+UniRef50_B5YFB4: MazG|unclassified	0.1091459855
+UniRef50_UPI000174552F: ribonuclease III	0.1091454313
+UniRef50_UPI000174552F: ribonuclease III|unclassified	0.1091454313
+UniRef50_UPI0003B5626D: sodium:proton antiporter	0.1091429114
+UniRef50_UPI0003B5626D: sodium:proton antiporter|unclassified	0.1091429114
+UniRef50_UPI0003B35B48: hypothetical protein	0.1091427526
+UniRef50_UPI0003B35B48: hypothetical protein|unclassified	0.1091427526
+UniRef50_Q28L44	0.1091316350
+UniRef50_Q28L44|unclassified	0.1091316350
+UniRef50_A0LNI2: tRNA N6-adenosine threonylcarbamoyltransferase	0.1091244515
+UniRef50_A0LNI2: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.1091244515
+UniRef50_UPI0003B46920: RNA polymerase subunit sigma24	0.1091171712
+UniRef50_UPI0003B46920: RNA polymerase subunit sigma24|unclassified	0.1091171712
+UniRef50_UPI000381BCDA: hypothetical protein, partial	0.1091114304
+UniRef50_UPI000381BCDA: hypothetical protein, partial|unclassified	0.1091114304
+UniRef50_C2SN31: Response regulator	0.1091097877
+UniRef50_C2SN31: Response regulator|unclassified	0.1091097877
+UniRef50_L7HVL8	0.1091081658
+UniRef50_L7HVL8|unclassified	0.1091081658
+UniRef50_UPI0003B7986D: glycine/betaine ABC transporter	0.1091077548
+UniRef50_UPI0003B7986D: glycine/betaine ABC transporter|unclassified	0.1091077548
+UniRef50_A0A011MK47: Sulfate starvation-induced protein 7	0.1091037418
+UniRef50_A0A011MK47: Sulfate starvation-induced protein 7|unclassified	0.1091037418
+UniRef50_A6FH96: Putative cytoplasmic protein	0.1090965751
+UniRef50_A6FH96: Putative cytoplasmic protein|unclassified	0.1090965751
+UniRef50_F6EHR5: Putative lipase/esterase LipG	0.1090893679
+UniRef50_F6EHR5: Putative lipase/esterase LipG|unclassified	0.1090893679
+UniRef50_A7K9U1	0.1090885887
+UniRef50_A7K9U1|unclassified	0.1090885887
+UniRef50_UPI0003B51A23: signal recognition particle protein Srp54	0.1090867276
+UniRef50_UPI0003B51A23: signal recognition particle protein Srp54|unclassified	0.1090867276
+UniRef50_Q03NY8: Arginine deiminase	0.1090802339
+UniRef50_Q03NY8: Arginine deiminase|unclassified	0.1090802339
+UniRef50_UPI0003758A25: hypothetical protein	0.1090787596
+UniRef50_UPI0003758A25: hypothetical protein|unclassified	0.1090787596
+UniRef50_UPI000380E82E: hypothetical protein	0.1090760802
+UniRef50_UPI000380E82E: hypothetical protein|unclassified	0.1090760802
+UniRef50_Q58626: Pyruvate carboxylase subunit A	0.1090715747
+UniRef50_Q58626: Pyruvate carboxylase subunit A|unclassified	0.1090715747
+UniRef50_A0A023BGU5	0.1090711595
+UniRef50_A0A023BGU5|unclassified	0.1090711595
+UniRef50_UPI00045E81E0: acetolactate synthase	0.1090635986
+UniRef50_UPI00045E81E0: acetolactate synthase|unclassified	0.1090635986
+UniRef50_A5CEP5: Ribonuclease H	0.1090464049
+UniRef50_A5CEP5: Ribonuclease H|unclassified	0.1090464049
+UniRef50_UPI000304D4C5: hypothetical protein	0.1090455511
+UniRef50_UPI000304D4C5: hypothetical protein|unclassified	0.1090455511
+UniRef50_X1KVS4: Marine sediment metagenome DNA, contig: S03H2_S23453 (Fragment)	0.1090447053
+UniRef50_X1KVS4: Marine sediment metagenome DNA, contig: S03H2_S23453 (Fragment)|unclassified	0.1090447053
+UniRef50_UPI0003B624C3: xanthine dehydrogenase	0.1090442012
+UniRef50_UPI0003B624C3: xanthine dehydrogenase|unclassified	0.1090442012
+UniRef50_UPI00047CFA7B: transcriptional regulatory protein LPC_0711	0.1090406856
+UniRef50_UPI00047CFA7B: transcriptional regulatory protein LPC_0711|unclassified	0.1090406856
+UniRef50_B8J6J0	0.1090405794
+UniRef50_B8J6J0|unclassified	0.1090405794
+UniRef50_UPI00037ED8F7: hypothetical protein	0.1090387195
+UniRef50_UPI00037ED8F7: hypothetical protein|unclassified	0.1090387195
+UniRef50_Q9VMP9: Glucosamine-6-phosphate isomerase	0.1090379994
+UniRef50_Q9VMP9: Glucosamine-6-phosphate isomerase|unclassified	0.1090379994
+UniRef50_UPI0003B56E34: dihydrolipoyllysine succinyltransferase	0.1090291166
+UniRef50_UPI0003B56E34: dihydrolipoyllysine succinyltransferase|unclassified	0.1090291166
+UniRef50_UPI0003AF7A99: PREDICTED: xylose isomerase-like isoform X2	0.1090257161
+UniRef50_UPI0003AF7A99: PREDICTED: xylose isomerase-like isoform X2|unclassified	0.1090257161
+UniRef50_UPI00039F2C6B: molecular chaperone DnaK	0.1090219884
+UniRef50_UPI00039F2C6B: molecular chaperone DnaK|unclassified	0.1090219884
+UniRef50_A7C5Z5	0.1090214824
+UniRef50_A7C5Z5|unclassified	0.1090214824
+UniRef50_Q6EP60	0.1090065857
+UniRef50_Q6EP60|unclassified	0.1090065857
+UniRef50_UPI0004786C80: hypothetical protein	0.1089977849
+UniRef50_UPI0004786C80: hypothetical protein|unclassified	0.1089977849
+UniRef50_P42313: Putative 23S rRNA (guanine-N(1)-)-methyltransferase YxjB	0.1089949818
+UniRef50_P42313: Putative 23S rRNA (guanine-N(1)-)-methyltransferase YxjB|unclassified	0.1089949818
+UniRef50_UPI0003803BE1: hypothetical protein	0.1089935914
+UniRef50_UPI0003803BE1: hypothetical protein|unclassified	0.1089935914
+UniRef50_UPI000369CDF9: hypothetical protein	0.1089900711
+UniRef50_UPI000369CDF9: hypothetical protein|unclassified	0.1089900711
+UniRef50_UPI00036D594A: hypothetical protein	0.1089849517
+UniRef50_UPI00036D594A: hypothetical protein|unclassified	0.1089849517
+UniRef50_UPI00046F1C5B: hypothetical protein	0.1089843582
+UniRef50_UPI00046F1C5B: hypothetical protein|unclassified	0.1089843582
+UniRef50_UPI0004687366: hypothetical protein	0.1089784220
+UniRef50_UPI0004687366: hypothetical protein|unclassified	0.1089784220
+UniRef50_R7A3A7: Chaperone protein DnaJ	0.1089731782
+UniRef50_R7A3A7: Chaperone protein DnaJ|unclassified	0.1089731782
+UniRef50_R5HP67	0.1089724299
+UniRef50_R5HP67|unclassified	0.1089724299
+UniRef50_A1A1J0: Prolipoprotein diacylglyceryl transferase	0.1089626958
+UniRef50_A1A1J0: Prolipoprotein diacylglyceryl transferase|unclassified	0.1089626958
+UniRef50_Q797S1: Putative PTS system EIIBC component YbbF	0.1089579917
+UniRef50_Q797S1: Putative PTS system EIIBC component YbbF|unclassified	0.1089579917
+UniRef50_UPI00046D5497: quinolinate synthetase	0.1089568378
+UniRef50_UPI00046D5497: quinolinate synthetase|unclassified	0.1089568378
+UniRef50_UPI00046E82BD: aldehyde reductase	0.1089501821
+UniRef50_UPI00046E82BD: aldehyde reductase|unclassified	0.1089501821
+UniRef50_C7JH45: Phage/plasmid primase P4	0.1089378745
+UniRef50_C7JH45: Phage/plasmid primase P4|unclassified	0.1089378745
+UniRef50_UPI0002BE8D2D: unnamed protein product	0.1089321940
+UniRef50_UPI0002BE8D2D: unnamed protein product|unclassified	0.1089321940
+UniRef50_UPI0003B3F916: LysR family transcriptional regulator	0.1089206214
+UniRef50_UPI0003B3F916: LysR family transcriptional regulator|unclassified	0.1089206214
+UniRef50_UPI00036F2B38: hypothetical protein	0.1089183978
+UniRef50_UPI00036F2B38: hypothetical protein|unclassified	0.1089183978
+UniRef50_UPI0004633380: hypothetical protein	0.1089032181
+UniRef50_UPI0004633380: hypothetical protein|unclassified	0.1089032181
+UniRef50_UPI00036D5029: hypothetical protein	0.1089031479
+UniRef50_UPI00036D5029: hypothetical protein|unclassified	0.1089031479
+UniRef50_G2GEP0	0.1088931367
+UniRef50_G2GEP0|unclassified	0.1088931367
+UniRef50_D2UDL2	0.1088863105
+UniRef50_D2UDL2|unclassified	0.1088863105
+UniRef50_E3BT79: TM2 domain protein	0.1088853050
+UniRef50_E3BT79: TM2 domain protein|unclassified	0.1088853050
+UniRef50_UPI00037AF766: hypothetical protein	0.1088801643
+UniRef50_UPI00037AF766: hypothetical protein|unclassified	0.1088801643
+UniRef50_B2RH63: 3-oxoacyl-[acyl-carrier-protein] synthase 3	0.1088791528
+UniRef50_B2RH63: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	0.1088791528
+UniRef50_A4EG25	0.1088767033
+UniRef50_A4EG25|unclassified	0.1088767033
+UniRef50_UPI0003824EF6: acetyl-CoA acetyltransferase	0.1088759880
+UniRef50_UPI0003824EF6: acetyl-CoA acetyltransferase|unclassified	0.1088759880
+UniRef50_X3YK28	0.1088752826
+UniRef50_X3YK28|unclassified	0.1088752826
+UniRef50_U4SKD3	0.1088749786
+UniRef50_U4SKD3|unclassified	0.1088749786
+UniRef50_F2ENL3	0.1088735203
+UniRef50_F2ENL3|unclassified	0.1088735203
+UniRef50_UPI000415A98C: 3-hexulose-6-phosphate synthase	0.1088712391
+UniRef50_UPI000415A98C: 3-hexulose-6-phosphate synthase|unclassified	0.1088712391
+UniRef50_UPI00036B2BD6: hypothetical protein	0.1088601686
+UniRef50_UPI00036B2BD6: hypothetical protein|unclassified	0.1088601686
+UniRef50_F7NU20	0.1088474828
+UniRef50_F7NU20|unclassified	0.1088474828
+UniRef50_L0DL64: 6-pyruvoyl-tetrahydropterin synthase	0.1088433964
+UniRef50_L0DL64: 6-pyruvoyl-tetrahydropterin synthase|unclassified	0.1088433964
+UniRef50_D2SDF5	0.1088383593
+UniRef50_D2SDF5|unclassified	0.1088383593
+UniRef50_UPI0003B77512: 2,5-diketo-D-gluconic acid reductase	0.1088273820
+UniRef50_UPI0003B77512: 2,5-diketo-D-gluconic acid reductase|unclassified	0.1088273820
+UniRef50_X7XSU4: PE family protein	0.1088238251
+UniRef50_X7XSU4: PE family protein|unclassified	0.1088238251
+UniRef50_R1CZD3	0.1088234428
+UniRef50_R1CZD3|unclassified	0.1088234428
+UniRef50_UPI0002ADB961	0.1088212257
+UniRef50_UPI0002ADB961|unclassified	0.1088212257
+UniRef50_UPI0003B36AE5: ABC transporter permease	0.1088201257
+UniRef50_UPI0003B36AE5: ABC transporter permease|unclassified	0.1088201257
+UniRef50_UPI000363EFB4: hypothetical protein	0.1088196896
+UniRef50_UPI000363EFB4: hypothetical protein|unclassified	0.1088196896
+UniRef50_U7J5E9	0.1088166845
+UniRef50_U7J5E9|unclassified	0.1088166845
+UniRef50_A3K5H9	0.1088067061
+UniRef50_A3K5H9|unclassified	0.1088067061
+UniRef50_UPI000375394B: hypothetical protein	0.1088037994
+UniRef50_UPI000375394B: hypothetical protein|unclassified	0.1088037994
+UniRef50_UPI0003770906: membrane protein	0.1087986349
+UniRef50_UPI0003770906: membrane protein|unclassified	0.1087986349
+UniRef50_UPI00046CA7DF: PREDICTED: GMP synthase [glutamine-hydrolyzing]	0.1087926929
+UniRef50_UPI00046CA7DF: PREDICTED: GMP synthase [glutamine-hydrolyzing]|unclassified	0.1087926929
+UniRef50_UPI000426F849: hypothetical protein	0.1087891072
+UniRef50_UPI000426F849: hypothetical protein|unclassified	0.1087891072
+UniRef50_K1T508: Excinuclease ABC, A subunit (Fragment)	0.1087753230
+UniRef50_K1T508: Excinuclease ABC, A subunit (Fragment)|unclassified	0.1087753230
+UniRef50_UPI000456173C: hypothetical protein PFL1_01203	0.1087707263
+UniRef50_UPI000456173C: hypothetical protein PFL1_01203|unclassified	0.1087707263
+UniRef50_UPI000328C1DB: PREDICTED: translation initiation factor IF-2-like	0.1087680971
+UniRef50_UPI000328C1DB: PREDICTED: translation initiation factor IF-2-like|unclassified	0.1087680971
+UniRef50_UPI0003B525B3: histidine kinase	0.1087599445
+UniRef50_UPI0003B525B3: histidine kinase|unclassified	0.1087599445
+UniRef50_UPI0003809B2B: hypothetical protein	0.1087550177
+UniRef50_UPI0003809B2B: hypothetical protein|unclassified	0.1087550177
+UniRef50_UPI000376921C: hypothetical protein	0.1087474532
+UniRef50_UPI000376921C: hypothetical protein|unclassified	0.1087474532
+UniRef50_B3PI75: PilO	0.1087424499
+UniRef50_B3PI75: PilO|unclassified	0.1087424499
+UniRef50_UPI000190F922: leucyl/phenylalanyl-tRNA--protein transferase	0.1087251144
+UniRef50_UPI000190F922: leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.1087251144
+UniRef50_C5FQ38: Extracellular serine-threonine rich protein	0.1087243539
+UniRef50_C5FQ38: Extracellular serine-threonine rich protein|unclassified	0.1087243539
+UniRef50_UPI00036ED797: hypothetical protein	0.1087221759
+UniRef50_UPI00036ED797: hypothetical protein|unclassified	0.1087221759
+UniRef50_T0UVV6: YjeF protein	0.1087185103
+UniRef50_T0UVV6: YjeF protein|unclassified	0.1087185103
+UniRef50_UPI00042678B2: hypothetical protein	0.1087103739
+UniRef50_UPI00042678B2: hypothetical protein|unclassified	0.1087103739
+UniRef50_T4ZZ82	0.1087102958
+UniRef50_T4ZZ82|unclassified	0.1087102958
+UniRef50_B9KZP8: N-acetyl-gamma-glutamyl-phosphate reductase	0.1087062509
+UniRef50_B9KZP8: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.1087062509
+UniRef50_D8JX66	0.1086972089
+UniRef50_D8JX66|unclassified	0.1086972089
+UniRef50_D5ILC1: Heavy chain fibroin (Fragment)	0.1086953459
+UniRef50_D5ILC1: Heavy chain fibroin (Fragment)|unclassified	0.1086953459
+UniRef50_UPI0004749CAE: ketodeoxygluconokinase	0.1086879984
+UniRef50_UPI0004749CAE: ketodeoxygluconokinase|unclassified	0.1086879984
+UniRef50_UPI0004777E62: molecular chaperone GroES	0.1086782253
+UniRef50_UPI0004777E62: molecular chaperone GroES|unclassified	0.1086782253
+UniRef50_C5YXG0	0.1086772446
+UniRef50_C5YXG0|unclassified	0.1086772446
+UniRef50_Q18AR0: Acetyl-CoA acetyltransferase	0.1086593399
+UniRef50_Q18AR0: Acetyl-CoA acetyltransferase|unclassified	0.1086593399
+UniRef50_F3KGM0: 21 kDa hemolysin	0.1086557714
+UniRef50_F3KGM0: 21 kDa hemolysin|unclassified	0.1086557714
+UniRef50_I8S860: Aminotransferase class-III (Fragment)	0.1086444400
+UniRef50_I8S860: Aminotransferase class-III (Fragment)|unclassified	0.1086444400
+UniRef50_Q0AQZ6	0.1086398477
+UniRef50_Q0AQZ6|unclassified	0.1086398477
+UniRef50_Q1AVI6: NADH-quinone oxidoreductase subunit D	0.1086137890
+UniRef50_Q1AVI6: NADH-quinone oxidoreductase subunit D|unclassified	0.1086137890
+UniRef50_U2BE16	0.1086110457
+UniRef50_U2BE16|unclassified	0.1086110457
+UniRef50_J0WXD9	0.1086075833
+UniRef50_J0WXD9|unclassified	0.1086075833
+UniRef50_UPI00047080BC: hypothetical protein	0.1086051281
+UniRef50_UPI00047080BC: hypothetical protein|unclassified	0.1086051281
+UniRef50_U6KMU3: Importin alpha, putative	0.1085836482
+UniRef50_U6KMU3: Importin alpha, putative|unclassified	0.1085836482
+UniRef50_UPI00037BFAD6: hypothetical protein	0.1085730286
+UniRef50_UPI00037BFAD6: hypothetical protein|unclassified	0.1085730286
+UniRef50_UPI0003A42E4C: hypothetical protein	0.1085708179
+UniRef50_UPI0003A42E4C: hypothetical protein|unclassified	0.1085708179
+UniRef50_UPI00035FDC08: hypothetical protein	0.1085625679
+UniRef50_UPI00035FDC08: hypothetical protein|unclassified	0.1085625679
+UniRef50_UPI00030B98BE: hypothetical protein	0.1085572941
+UniRef50_UPI00030B98BE: hypothetical protein|unclassified	0.1085572941
+UniRef50_O67298: Methionine--tRNA ligase	0.1085572387
+UniRef50_O67298: Methionine--tRNA ligase|unclassified	0.1085572387
+UniRef50_C0HDW7	0.1085510016
+UniRef50_C0HDW7|unclassified	0.1085510016
+UniRef50_R6EHK4: Chinitase domain protein	0.1085506884
+UniRef50_R6EHK4: Chinitase domain protein|unclassified	0.1085506884
+UniRef50_A1BAR3: Tripartite ATP-independent periplasmic transporter, DctQ component	0.1085500543
+UniRef50_A1BAR3: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	0.1085500543
+UniRef50_Q1GRP7: Phosphatidylserine decarboxylase proenzyme	0.1085383578
+UniRef50_Q1GRP7: Phosphatidylserine decarboxylase proenzyme|unclassified	0.1085383578
+UniRef50_UPI0003B5359C: hypothetical protein	0.1085344397
+UniRef50_UPI0003B5359C: hypothetical protein|unclassified	0.1085344397
+UniRef50_W6RN10	0.1085217274
+UniRef50_W6RN10|unclassified	0.1085217274
+UniRef50_UPI000369E2AC: hypothetical protein	0.1085145106
+UniRef50_UPI000369E2AC: hypothetical protein|unclassified	0.1085145106
+UniRef50_UPI000376ED73: hypothetical protein	0.1085085021
+UniRef50_UPI000376ED73: hypothetical protein|unclassified	0.1085085021
+UniRef50_UPI00038F0753	0.1085033714
+UniRef50_UPI00038F0753|unclassified	0.1085033714
+UniRef50_UPI0003101844: hypothetical protein	0.1085032692
+UniRef50_UPI0003101844: hypothetical protein|unclassified	0.1085032692
+UniRef50_H3MF17: Transposase insN for insertion sequence element IS911A	0.1085015496
+UniRef50_H3MF17: Transposase insN for insertion sequence element IS911A|unclassified	0.1085015496
+UniRef50_Q9C9G2: Probable acyl-activating enzyme 22	0.1084822390
+UniRef50_Q9C9G2: Probable acyl-activating enzyme 22|unclassified	0.1084822390
+UniRef50_I0WD09: Transcriptional regulator	0.1084743605
+UniRef50_I0WD09: Transcriptional regulator|unclassified	0.1084743605
+UniRef50_UPI000465860E: membrane protein	0.1084722653
+UniRef50_UPI000465860E: membrane protein|unclassified	0.1084722653
+UniRef50_J9P642	0.1084606334
+UniRef50_J9P642|unclassified	0.1084606334
+UniRef50_UPI0003C0FE00: PREDICTED: NADH-ubiquinone oxidoreductase chain 1-like	0.1084579388
+UniRef50_UPI0003C0FE00: PREDICTED: NADH-ubiquinone oxidoreductase chain 1-like|unclassified	0.1084579388
+UniRef50_A6KZR2: Phosphopantetheine adenylyltransferase	0.1084520368
+UniRef50_A6KZR2: Phosphopantetheine adenylyltransferase|unclassified	0.1084520368
+UniRef50_UPI000464FC0E: acetylpolyamine aminohydrolase	0.1084512875
+UniRef50_UPI000464FC0E: acetylpolyamine aminohydrolase|unclassified	0.1084512875
+UniRef50_UPI00037A8E11: hypothetical protein	0.1084503720
+UniRef50_UPI00037A8E11: hypothetical protein|unclassified	0.1084503720
+UniRef50_UPI0002DE3B74: hypothetical protein	0.1084440918
+UniRef50_UPI0002DE3B74: hypothetical protein|unclassified	0.1084440918
+UniRef50_UPI0003764F6C: hypothetical protein	0.1084325456
+UniRef50_UPI0003764F6C: hypothetical protein|unclassified	0.1084325456
+UniRef50_R5TV55	0.1084294023
+UniRef50_R5TV55|unclassified	0.1084294023
+UniRef50_UPI00035E24A0: hypothetical protein	0.1084292021
+UniRef50_UPI00035E24A0: hypothetical protein|unclassified	0.1084292021
+UniRef50_K1X7T9	0.1084138677
+UniRef50_K1X7T9|unclassified	0.1084138677
+UniRef50_G8APJ3: Putative ABC transporter, permease protein	0.1084137733
+UniRef50_G8APJ3: Putative ABC transporter, permease protein|unclassified	0.1084137733
+UniRef50_UPI000377BB0C: hypothetical protein	0.1084128581
+UniRef50_UPI000377BB0C: hypothetical protein|unclassified	0.1084128581
+UniRef50_B0VBR0	0.1084082594
+UniRef50_B0VBR0|unclassified	0.1084082594
+UniRef50_Q9AJF7: Peptide methionine sulfoxide reductase MsrA	0.1083995054
+UniRef50_Q9AJF7: Peptide methionine sulfoxide reductase MsrA|unclassified	0.1083995054
+UniRef50_N8Z5H6	0.1083988798
+UniRef50_N8Z5H6|unclassified	0.1083988798
+UniRef50_UPI00037948E9: hypothetical protein	0.1083951496
+UniRef50_UPI00037948E9: hypothetical protein|unclassified	0.1083951496
+UniRef50_Q92IT1: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	0.1083926290
+UniRef50_Q92IT1: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.1083926290
+UniRef50_B2TI01: Asparagine--tRNA ligase	0.1083775082
+UniRef50_B2TI01: Asparagine--tRNA ligase|unclassified	0.1083775082
+UniRef50_A0A024IF51: 3-oxoadipate enol-lactonase	0.1083763052
+UniRef50_A0A024IF51: 3-oxoadipate enol-lactonase|unclassified	0.1083763052
+UniRef50_V5PU13	0.1083752894
+UniRef50_V5PU13|unclassified	0.1083752894
+UniRef50_UPI0003655D18: hypothetical protein	0.1083752200
+UniRef50_UPI0003655D18: hypothetical protein|unclassified	0.1083752200
+UniRef50_UPI000299DF64: tRNA 2-selenouridine synthase	0.1083725965
+UniRef50_UPI000299DF64: tRNA 2-selenouridine synthase|unclassified	0.1083725965
+UniRef50_UPI00036BACF4: hypothetical protein, partial	0.1083625212
+UniRef50_UPI00036BACF4: hypothetical protein, partial|unclassified	0.1083625212
+UniRef50_T1BLN4	0.1083620665
+UniRef50_T1BLN4|unclassified	0.1083620665
+UniRef50_I4W9L7: Lipase LipA (L.pneumophila) (Fragment)	0.1083587810
+UniRef50_I4W9L7: Lipase LipA (L.pneumophila) (Fragment)|unclassified	0.1083587810
+UniRef50_S5YR15	0.1083506115
+UniRef50_S5YR15|unclassified	0.1083506115
+UniRef50_UPI00036660A7: hypothetical protein	0.1083487171
+UniRef50_UPI00036660A7: hypothetical protein|unclassified	0.1083487171
+UniRef50_R4XYW7: Sigma factor regulator VreR (Cytoplasmic membrane-localized) of trans-envelope signaling system	0.1083481029
+UniRef50_R4XYW7: Sigma factor regulator VreR (Cytoplasmic membrane-localized) of trans-envelope signaling system|unclassified	0.1083481029
+UniRef50_G7U9V5	0.1083445854
+UniRef50_G7U9V5|unclassified	0.1083445854
+UniRef50_UPI0003B58F4B: histidine kinase	0.1083445180
+UniRef50_UPI0003B58F4B: histidine kinase|unclassified	0.1083445180
+UniRef50_U6Q447	0.1083354368
+UniRef50_U6Q447|unclassified	0.1083354368
+UniRef50_UPI000418D373: hypothetical protein	0.1083328400
+UniRef50_UPI000418D373: hypothetical protein|unclassified	0.1083328400
+UniRef50_UPI000367B1CC: hypothetical protein	0.1083246056
+UniRef50_UPI000367B1CC: hypothetical protein|unclassified	0.1083246056
+UniRef50_UPI0003654D15: hypothetical protein	0.1083189623
+UniRef50_UPI0003654D15: hypothetical protein|unclassified	0.1083189623
+UniRef50_UPI0001850F25: thiosulfate sulfurtransferase	0.1083188953
+UniRef50_UPI0001850F25: thiosulfate sulfurtransferase|unclassified	0.1083188953
+UniRef50_UPI00036DF0C5: hypothetical protein	0.1083158259
+UniRef50_UPI00036DF0C5: hypothetical protein|unclassified	0.1083158259
+UniRef50_V5C9G3	0.1083008771
+UniRef50_V5C9G3|unclassified	0.1083008771
+UniRef50_N9VR01: Sugar ABC transporter periplasmic ligand binding protein	0.1082986883
+UniRef50_N9VR01: Sugar ABC transporter periplasmic ligand binding protein|unclassified	0.1082986883
+UniRef50_UPI00031A1FA6: hypothetical protein	0.1082948304
+UniRef50_UPI00031A1FA6: hypothetical protein|unclassified	0.1082948304
+UniRef50_UPI0003C13D8C: PREDICTED: probable D-lactate dehydrogenase, mitochondrial-like	0.1082783599
+UniRef50_UPI0003C13D8C: PREDICTED: probable D-lactate dehydrogenase, mitochondrial-like|unclassified	0.1082783599
+UniRef50_UPI000469B51D: hypothetical protein	0.1082702802
+UniRef50_UPI000469B51D: hypothetical protein|unclassified	0.1082702802
+UniRef50_UPI00035C6517: hypothetical protein	0.1082680467
+UniRef50_UPI00035C6517: hypothetical protein|unclassified	0.1082680467
+UniRef50_UPI000363456D: hypothetical protein	0.1082661341
+UniRef50_UPI000363456D: hypothetical protein|unclassified	0.1082661341
+UniRef50_UPI00036D56CC: hypothetical protein	0.1082631203
+UniRef50_UPI00036D56CC: hypothetical protein|unclassified	0.1082631203
+UniRef50_Q15PI0: MazG family protein	0.1082621110
+UniRef50_Q15PI0: MazG family protein|unclassified	0.1082621110
+UniRef50_Q97L67: Altronate oxidoreductase	0.1082578186
+UniRef50_Q97L67: Altronate oxidoreductase|unclassified	0.1082578186
+UniRef50_H8L5N0: MazG family protein	0.1082472048
+UniRef50_H8L5N0: MazG family protein|unclassified	0.1082472048
+UniRef50_F0XVT1	0.1082471800
+UniRef50_F0XVT1|unclassified	0.1082471800
+UniRef50_UPI00047CC63D: peptidase	0.1082470181
+UniRef50_UPI00047CC63D: peptidase|unclassified	0.1082470181
+UniRef50_W7X4B8: Putative permease	0.1082461297
+UniRef50_W7X4B8: Putative permease|unclassified	0.1082461297
+UniRef50_Q98KP1: Cobyrinic acid A,C-diamide synthase	0.1082394640
+UniRef50_Q98KP1: Cobyrinic acid A,C-diamide synthase|unclassified	0.1082394640
+UniRef50_UPI00037A50A0: hypothetical protein	0.1082338212
+UniRef50_UPI00037A50A0: hypothetical protein|unclassified	0.1082338212
+UniRef50_UPI0002624A61: succinylarginine dihydrolase	0.1082268763
+UniRef50_UPI0002624A61: succinylarginine dihydrolase|unclassified	0.1082268763
+UniRef50_UPI00047763D0: metal ABC transporter permease	0.1082233958
+UniRef50_UPI00047763D0: metal ABC transporter permease|unclassified	0.1082233958
+UniRef50_UPI000472A537: hypothetical protein, partial	0.1082223751
+UniRef50_UPI000472A537: hypothetical protein, partial|unclassified	0.1082223751
+UniRef50_UPI0002625F14: peptide ABC transporter	0.1082191479
+UniRef50_UPI0002625F14: peptide ABC transporter|unclassified	0.1082191479
+UniRef50_Q06986: E3 ubiquitin-protein ligase SIAH2	0.1082184278
+UniRef50_Q06986: E3 ubiquitin-protein ligase SIAH2|unclassified	0.1082184278
+UniRef50_UPI00041ED9A0: MFS transporter	0.1082177555
+UniRef50_UPI00041ED9A0: MFS transporter|unclassified	0.1082177555
+UniRef50_Q8Y2K1: Macro domain-containing protein RSc0334	0.1082122047
+UniRef50_Q8Y2K1: Macro domain-containing protein RSc0334|unclassified	0.1082122047
+UniRef50_UPI0003690746: hypothetical protein	0.1082115657
+UniRef50_UPI0003690746: hypothetical protein|unclassified	0.1082115657
+UniRef50_Q0B438: DGPFAETKE family protein	0.1082003755
+UniRef50_Q0B438: DGPFAETKE family protein|unclassified	0.1082003755
+UniRef50_A5EFP4	0.1081952087
+UniRef50_A5EFP4|unclassified	0.1081952087
+UniRef50_UPI000472C676: peptidase T	0.1081927119
+UniRef50_UPI000472C676: peptidase T|unclassified	0.1081927119
+UniRef50_Q11EH0: Ureidoglycolate lyase	0.1081864686
+UniRef50_Q11EH0: Ureidoglycolate lyase|unclassified	0.1081864686
+UniRef50_UPI0003B364FB: LacI family transcription regulator	0.1081859182
+UniRef50_UPI0003B364FB: LacI family transcription regulator|unclassified	0.1081859182
+UniRef50_P00911: Indole-3-glycerol phosphate synthase	0.1081823822
+UniRef50_P00911: Indole-3-glycerol phosphate synthase|unclassified	0.1081823822
+UniRef50_UPI000468F3A1: LacI family transcriptional regulator	0.1081801402
+UniRef50_UPI000468F3A1: LacI family transcriptional regulator|unclassified	0.1081801402
+UniRef50_E6SJV1: TRAP transporter solute receptor, TAXI family	0.1081762651
+UniRef50_E6SJV1: TRAP transporter solute receptor, TAXI family|unclassified	0.1081762651
+UniRef50_B4SQ62: UPF0276 protein Smal_1305	0.1081732567
+UniRef50_B4SQ62: UPF0276 protein Smal_1305|unclassified	0.1081732567
+UniRef50_UPI0004728507: MULTISPECIES: hypothetical protein	0.1081681910
+UniRef50_UPI0004728507: MULTISPECIES: hypothetical protein|unclassified	0.1081681910
+UniRef50_H0E5U4: Glyoxalase family protein	0.1081462330
+UniRef50_H0E5U4: Glyoxalase family protein|unclassified	0.1081462330
+UniRef50_D5UZF7	0.1081388573
+UniRef50_D5UZF7|unclassified	0.1081388573
+UniRef50_F0JDX7: Metallo-beta-lactamase family protein	0.1081381507
+UniRef50_F0JDX7: Metallo-beta-lactamase family protein|unclassified	0.1081381507
+UniRef50_N4R546	0.1081249955
+UniRef50_N4R546|unclassified	0.1081249955
+UniRef50_C2NAV4: Response regulator aspartate phosphatase	0.1080917877
+UniRef50_C2NAV4: Response regulator aspartate phosphatase|unclassified	0.1080917877
+UniRef50_S9RPX9: Integral membrane protein	0.1080583655
+UniRef50_S9RPX9: Integral membrane protein|unclassified	0.1080583655
+UniRef50_UPI0002625F55: winged helix family two component transcriptional regulator	0.1080561500
+UniRef50_UPI0002625F55: winged helix family two component transcriptional regulator|unclassified	0.1080561500
+UniRef50_Q5ZEI2	0.1080523551
+UniRef50_Q5ZEI2|unclassified	0.1080523551
+UniRef50_J9ZA59	0.1080508847
+UniRef50_J9ZA59|unclassified	0.1080508847
+UniRef50_H8GX99: Minor tail protein gp26-related protein	0.1080459043
+UniRef50_H8GX99: Minor tail protein gp26-related protein|unclassified	0.1080459043
+UniRef50_A0A011M2C2: Lipopolysaccharide export system ATP-binding protein LptB	0.1080437335
+UniRef50_A0A011M2C2: Lipopolysaccharide export system ATP-binding protein LptB|unclassified	0.1080437335
+UniRef50_D8TXD4	0.1080360558
+UniRef50_D8TXD4|unclassified	0.1080360558
+UniRef50_UPI0004738B2C: hypothetical protein	0.1080326694
+UniRef50_UPI0004738B2C: hypothetical protein|unclassified	0.1080326694
+UniRef50_UPI000380237F: hypothetical protein, partial	0.1080301873
+UniRef50_UPI000380237F: hypothetical protein, partial|unclassified	0.1080301873
+UniRef50_UPI00047DCA9C: hypothetical protein	0.1080218697
+UniRef50_UPI00047DCA9C: hypothetical protein|unclassified	0.1080218697
+UniRef50_UPI000360BC8C: hypothetical protein	0.1080216764
+UniRef50_UPI000360BC8C: hypothetical protein|unclassified	0.1080216764
+UniRef50_S8AX05: NLPA family lipoprotein	0.1080112358
+UniRef50_S8AX05: NLPA family lipoprotein|unclassified	0.1080112358
+UniRef50_UPI00037651B9: hypothetical protein	0.1080090354
+UniRef50_UPI00037651B9: hypothetical protein|unclassified	0.1080090354
+UniRef50_UPI000362A221: 50S ribosomal protein L20	0.1080002041
+UniRef50_UPI000362A221: 50S ribosomal protein L20|unclassified	0.1080002041
+UniRef50_T0T6P4	0.1079970687
+UniRef50_T0T6P4|unclassified	0.1079970687
+UniRef50_X8E0U8: ArsC family protein	0.1079929784
+UniRef50_X8E0U8: ArsC family protein|unclassified	0.1079929784
+UniRef50_Q9BUT1: 3-hydroxybutyrate dehydrogenase type 2	0.1079902338
+UniRef50_Q9BUT1: 3-hydroxybutyrate dehydrogenase type 2|unclassified	0.1079902338
+UniRef50_UPI000377A416: hypothetical protein	0.1079746737
+UniRef50_UPI000377A416: hypothetical protein|unclassified	0.1079746737
+UniRef50_U1EMQ9: Transcriptional regulator	0.1079726467
+UniRef50_U1EMQ9: Transcriptional regulator|unclassified	0.1079726467
+UniRef50_UPI00046BA7EF: PREDICTED: NADPH-dependent codeinone reductase 1-1-like	0.1079720709
+UniRef50_UPI00046BA7EF: PREDICTED: NADPH-dependent codeinone reductase 1-1-like|unclassified	0.1079720709
+UniRef50_L7WZV3: Cobalamin synthesis protein/P47K family protein	0.1079530087
+UniRef50_L7WZV3: Cobalamin synthesis protein/P47K family protein|unclassified	0.1079530087
+UniRef50_UPI00035D583A: hypothetical protein	0.1079315876
+UniRef50_UPI00035D583A: hypothetical protein|unclassified	0.1079315876
+UniRef50_U6GGV5	0.1079287798
+UniRef50_U6GGV5|unclassified	0.1079287798
+UniRef50_B3QY05	0.1079280876
+UniRef50_B3QY05|unclassified	0.1079280876
+UniRef50_UPI00040677FA: ATPase	0.1079227512
+UniRef50_UPI00040677FA: ATPase|unclassified	0.1079227512
+UniRef50_UPI0001744B11: AraC family transcriptional regulator	0.1079221124
+UniRef50_UPI0001744B11: AraC family transcriptional regulator|unclassified	0.1079221124
+UniRef50_K6ZS06	0.1079206359
+UniRef50_K6ZS06|unclassified	0.1079206359
+UniRef50_D6A7X9	0.1079086777
+UniRef50_D6A7X9|unclassified	0.1079086777
+UniRef50_Q8RQP4: NADP-specific glutamate dehydrogenase	0.1079042992
+UniRef50_Q8RQP4: NADP-specific glutamate dehydrogenase|unclassified	0.1079042992
+UniRef50_S3CNA2	0.1079010970
+UniRef50_S3CNA2|unclassified	0.1079010970
+UniRef50_G9ZSS7: NLPA lipoprotein	0.1078884341
+UniRef50_G9ZSS7: NLPA lipoprotein|unclassified	0.1078884341
+UniRef50_B9NT82	0.1078816642
+UniRef50_B9NT82|unclassified	0.1078816642
+UniRef50_X1SPJ7: Marine sediment metagenome DNA, contig: S12H4_S01057 (Fragment)	0.1078802863
+UniRef50_X1SPJ7: Marine sediment metagenome DNA, contig: S12H4_S01057 (Fragment)|unclassified	0.1078802863
+UniRef50_A0RH88: tRNA dimethylallyltransferase	0.1078797994
+UniRef50_A0RH88: tRNA dimethylallyltransferase|unclassified	0.1078797994
+UniRef50_UPI00016A7482: intracellular protease, PfpI family protein, partial	0.1078762837
+UniRef50_UPI00016A7482: intracellular protease, PfpI family protein, partial|unclassified	0.1078762837
+UniRef50_F0VQ37	0.1078748652
+UniRef50_F0VQ37|unclassified	0.1078748652
+UniRef50_UPI000248CF72: binding-protein-dependent transport systems inner membrane component	0.1078585090
+UniRef50_UPI000248CF72: binding-protein-dependent transport systems inner membrane component|unclassified	0.1078585090
+UniRef50_P45207: Stringent starvation protein A homolog	0.1078513891
+UniRef50_P45207: Stringent starvation protein A homolog|unclassified	0.1078513891
+UniRef50_U6HHG3: Thymidylate synthase	0.1078470674
+UniRef50_U6HHG3: Thymidylate synthase|unclassified	0.1078470674
+UniRef50_S9QK94: Lipoprotein NlpD	0.1078459982
+UniRef50_S9QK94: Lipoprotein NlpD|unclassified	0.1078459982
+UniRef50_UPI000469D217: 23S rRNA methyltransferase	0.1078449789
+UniRef50_UPI000469D217: 23S rRNA methyltransferase|unclassified	0.1078449789
+UniRef50_UPI0002FEF856: hypothetical protein	0.1078437520
+UniRef50_UPI0002FEF856: hypothetical protein|unclassified	0.1078437520
+UniRef50_X2LZV9	0.1078385202
+UniRef50_X2LZV9|unclassified	0.1078385202
+UniRef50_UPI00040DDCCC: hypothetical protein	0.1078371983
+UniRef50_UPI00040DDCCC: hypothetical protein|unclassified	0.1078371983
+UniRef50_Q5ZUG5: Methionine import ATP-binding protein MetN	0.1078321465
+UniRef50_Q5ZUG5: Methionine import ATP-binding protein MetN|unclassified	0.1078321465
+UniRef50_X1R0N7: Marine sediment metagenome DNA, contig: S06H3_S20864 (Fragment)	0.1078293969
+UniRef50_X1R0N7: Marine sediment metagenome DNA, contig: S06H3_S20864 (Fragment)|unclassified	0.1078293969
+UniRef50_D8THS2: Pathogenesis-related protein 1-like protein	0.1078212837
+UniRef50_D8THS2: Pathogenesis-related protein 1-like protein|unclassified	0.1078212837
+UniRef50_UPI0003B6975E: TonB-denpendent receptor	0.1078191714
+UniRef50_UPI0003B6975E: TonB-denpendent receptor|unclassified	0.1078191714
+UniRef50_G8SLI2	0.1078189324
+UniRef50_G8SLI2|unclassified	0.1078189324
+UniRef50_UPI000467C880: hypothetical protein	0.1078185786
+UniRef50_UPI000467C880: hypothetical protein|unclassified	0.1078185786
+UniRef50_A9FRC1: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO	0.1078116282
+UniRef50_A9FRC1: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|unclassified	0.1078116282
+UniRef50_S6ALP5	0.1078095139
+UniRef50_S6ALP5|unclassified	0.1078095139
+UniRef50_UPI000473D99A: phosphoheptose isomerase	0.1078094238
+UniRef50_UPI000473D99A: phosphoheptose isomerase|unclassified	0.1078094238
+UniRef50_UPI00038FE453	0.1078087426
+UniRef50_UPI00038FE453|unclassified	0.1078087426
+UniRef50_UPI000262FCFE: transketolase, partial	0.1077967520
+UniRef50_UPI000262FCFE: transketolase, partial|unclassified	0.1077967520
+UniRef50_UPI00037EBC15: hypothetical protein	0.1077935956
+UniRef50_UPI00037EBC15: hypothetical protein|unclassified	0.1077935956
+UniRef50_UPI00026CC5BB: hypothetical protein	0.1077907944
+UniRef50_UPI00026CC5BB: hypothetical protein|unclassified	0.1077907944
+UniRef50_UPI00046D3094: Fis family transcriptional regulator	0.1077814481
+UniRef50_UPI00046D3094: Fis family transcriptional regulator|unclassified	0.1077814481
+UniRef50_N1ZIV9	0.1077727835
+UniRef50_N1ZIV9|unclassified	0.1077727835
+UniRef50_UPI00036A2F27: hypothetical protein	0.1077648273
+UniRef50_UPI00036A2F27: hypothetical protein|unclassified	0.1077648273
+UniRef50_P58939: Carbamoyl-phosphate synthase large chain	0.1077647249
+UniRef50_P58939: Carbamoyl-phosphate synthase large chain|unclassified	0.1077647249
+UniRef50_UPI00037FAEB8: ABC transporter	0.1077555729
+UniRef50_UPI00037FAEB8: ABC transporter|unclassified	0.1077555729
+UniRef50_V6UR09	0.1077528435
+UniRef50_V6UR09|unclassified	0.1077528435
+UniRef50_UPI000372D109: hypothetical protein	0.1077479924
+UniRef50_UPI000372D109: hypothetical protein|unclassified	0.1077479924
+UniRef50_B0BWR2: Phosphatidylserine decarboxylase proenzyme	0.1077422065
+UniRef50_B0BWR2: Phosphatidylserine decarboxylase proenzyme|unclassified	0.1077422065
+UniRef50_T0IMD9	0.1077393542
+UniRef50_T0IMD9|unclassified	0.1077393542
+UniRef50_UPI0003506419	0.1077238622
+UniRef50_UPI0003506419|unclassified	0.1077238622
+UniRef50_UPI00041E61C7: lytic transglycosylase	0.1077154083
+UniRef50_UPI00041E61C7: lytic transglycosylase|unclassified	0.1077154083
+UniRef50_UPI00037E7F9C: hypothetical protein	0.1077137734
+UniRef50_UPI00037E7F9C: hypothetical protein|unclassified	0.1077137734
+UniRef50_UPI0003606567: hypothetical protein, partial	0.1077040751
+UniRef50_UPI0003606567: hypothetical protein, partial|unclassified	0.1077040751
+UniRef50_Q1N6E8	0.1076992256
+UniRef50_Q1N6E8|unclassified	0.1076992256
+UniRef50_UPI000475BB69: hypothetical protein	0.1076979573
+UniRef50_UPI000475BB69: hypothetical protein|unclassified	0.1076979573
+UniRef50_UPI00030D8C00: hypothetical protein	0.1076794997
+UniRef50_UPI00030D8C00: hypothetical protein|unclassified	0.1076794997
+UniRef50_M1GD04	0.1076764406
+UniRef50_M1GD04|unclassified	0.1076764406
+UniRef50_C9EH32: GroEL (Fragment)	0.1076711449
+UniRef50_C9EH32: GroEL (Fragment)|unclassified	0.1076711449
+UniRef50_UPI0003DF54DA: PREDICTED: ornithine aminotransferase, mitochondrial-like isoform X2	0.1076619005
+UniRef50_UPI0003DF54DA: PREDICTED: ornithine aminotransferase, mitochondrial-like isoform X2|unclassified	0.1076619005
+UniRef50_UPI000364556F: hypothetical protein	0.1076587734
+UniRef50_UPI000364556F: hypothetical protein|unclassified	0.1076587734
+UniRef50_Q3C117: ATP synthase subunit B (Fragment)	0.1076556391
+UniRef50_Q3C117: ATP synthase subunit B (Fragment)|unclassified	0.1076556391
+UniRef50_P39648: Octanoyl-[GcvH]:protein N-octanoyltransferase	0.1076480827
+UniRef50_P39648: Octanoyl-[GcvH]:protein N-octanoyltransferase|unclassified	0.1076480827
+UniRef50_A3N967: Ribose ABC transporter, periplasmic ribose-binding protein	0.1076453559
+UniRef50_A3N967: Ribose ABC transporter, periplasmic ribose-binding protein|unclassified	0.1076453559
+UniRef50_UPI00047A3CEB: hypothetical protein	0.1076449688
+UniRef50_UPI00047A3CEB: hypothetical protein|unclassified	0.1076449688
+UniRef50_UPI00029AFEA1: methionyl-tRNA formyltransferase	0.1076263749
+UniRef50_UPI00029AFEA1: methionyl-tRNA formyltransferase|unclassified	0.1076263749
+UniRef50_M9R7C5: MotB-like flagellar motor protein	0.1076224826
+UniRef50_M9R7C5: MotB-like flagellar motor protein|unclassified	0.1076224826
+UniRef50_B8DJK7: Elongation factor P	0.1076174374
+UniRef50_B8DJK7: Elongation factor P|unclassified	0.1076174374
+UniRef50_A7IGH8: Heat shock protein DnaJ domain protein	0.1076150354
+UniRef50_A7IGH8: Heat shock protein DnaJ domain protein|unclassified	0.1076150354
+UniRef50_A9GRJ8	0.1076109550
+UniRef50_A9GRJ8|unclassified	0.1076109550
+UniRef50_UPI00037DB2CF: hypothetical protein	0.1075962068
+UniRef50_UPI00037DB2CF: hypothetical protein|unclassified	0.1075962068
+UniRef50_UPI0003B3EDA1: ABC transporter ATP-binding protein	0.1075951966
+UniRef50_UPI0003B3EDA1: ABC transporter ATP-binding protein|unclassified	0.1075951966
+UniRef50_C0PP80	0.1075951423
+UniRef50_C0PP80|unclassified	0.1075951423
+UniRef50_C4LE50	0.1075798187
+UniRef50_C4LE50|unclassified	0.1075798187
+UniRef50_UPI000473D6A4: 16S rRNA methyltransferase, partial	0.1075714192
+UniRef50_UPI000473D6A4: 16S rRNA methyltransferase, partial|unclassified	0.1075714192
+UniRef50_W0NKB8: Cupin	0.1075562903
+UniRef50_W0NKB8: Cupin|unclassified	0.1075562903
+UniRef50_K2MV23	0.1075551463
+UniRef50_K2MV23|unclassified	0.1075551463
+UniRef50_UPI000287F385: 3-hydroxy-acyl-CoA dehydrogenase	0.1075551417
+UniRef50_UPI000287F385: 3-hydroxy-acyl-CoA dehydrogenase|unclassified	0.1075551417
+UniRef50_UPI0001FFF018: AMP-dependent synthetase	0.1075489502
+UniRef50_UPI0001FFF018: AMP-dependent synthetase|unclassified	0.1075489502
+UniRef50_UPI0003B5C558: ABC transporter ATP-binding protein	0.1075466980
+UniRef50_UPI0003B5C558: ABC transporter ATP-binding protein|unclassified	0.1075466980
+UniRef50_UPI0003B4EBE8: B/F/G subfamily RNA polymerase sigma-28 subunit	0.1075379319
+UniRef50_UPI0003B4EBE8: B/F/G subfamily RNA polymerase sigma-28 subunit|unclassified	0.1075379319
+UniRef50_R9ITT5	0.1075318869
+UniRef50_R9ITT5|unclassified	0.1075318869
+UniRef50_F2K4L5	0.1075269879
+UniRef50_F2K4L5|unclassified	0.1075269879
+UniRef50_M1PJ51	0.1075231645
+UniRef50_M1PJ51|unclassified	0.1075231645
+UniRef50_A0A022FUV3: Enoyl-CoA hydratase	0.1075175316
+UniRef50_A0A022FUV3: Enoyl-CoA hydratase|unclassified	0.1075175316
+UniRef50_UPI0003EDAB70: hypothetical protein, partial	0.1075166201
+UniRef50_UPI0003EDAB70: hypothetical protein, partial|unclassified	0.1075166201
+UniRef50_UPI00046F4247: MarR family transcriptional regulator	0.1075160563
+UniRef50_UPI00046F4247: MarR family transcriptional regulator|unclassified	0.1075160563
+UniRef50_D7G0X0: EsV-1-7	0.1075085072
+UniRef50_D7G0X0: EsV-1-7|unclassified	0.1075085072
+UniRef50_UPI0002F7FDFF: elongation factor 3	0.1074931617
+UniRef50_UPI0002F7FDFF: elongation factor 3|unclassified	0.1074931617
+UniRef50_E1DDS4: Putative permease protein	0.1074911914
+UniRef50_E1DDS4: Putative permease protein|unclassified	0.1074911914
+UniRef50_UPI00031D9BC6: hypothetical protein	0.1074884348
+UniRef50_UPI00031D9BC6: hypothetical protein|unclassified	0.1074884348
+UniRef50_A3TW76: Putative porin	0.1074875560
+UniRef50_A3TW76: Putative porin|unclassified	0.1074875560
+UniRef50_UPI0004717EC9: hypothetical protein, partial	0.1074852125
+UniRef50_UPI0004717EC9: hypothetical protein, partial|unclassified	0.1074852125
+UniRef50_UPI00046D149F: hypothetical protein	0.1074834669
+UniRef50_UPI00046D149F: hypothetical protein|unclassified	0.1074834669
+UniRef50_UPI000316D8EB: hypothetical protein	0.1074761884
+UniRef50_UPI000316D8EB: hypothetical protein|unclassified	0.1074761884
+UniRef50_UPI00047601D3: phosphohydrolase	0.1074658711
+UniRef50_UPI00047601D3: phosphohydrolase|unclassified	0.1074658711
+UniRef50_UPI0004194F45: hypothetical protein	0.1074497463
+UniRef50_UPI0004194F45: hypothetical protein|unclassified	0.1074497463
+UniRef50_UPI000477FDFD: hemolysin III	0.1074421410
+UniRef50_UPI000477FDFD: hemolysin III|unclassified	0.1074421410
+UniRef50_F5RGS0	0.1074330131
+UniRef50_F5RGS0|unclassified	0.1074330131
+UniRef50_C6XMU8: Flagellar FlaF family protein	0.1074304679
+UniRef50_C6XMU8: Flagellar FlaF family protein|unclassified	0.1074304679
+UniRef50_I3THB6	0.1074301256
+UniRef50_I3THB6|unclassified	0.1074301256
+UniRef50_UPI0003B5825C: hypothetical protein	0.1074228574
+UniRef50_UPI0003B5825C: hypothetical protein|unclassified	0.1074228574
+UniRef50_A0A024KIY7: Exopolysaccharide production protein ExoQ	0.1074112891
+UniRef50_A0A024KIY7: Exopolysaccharide production protein ExoQ|unclassified	0.1074112891
+UniRef50_Q7D9H6: Carboxyl esterase	0.1074072196
+UniRef50_Q7D9H6: Carboxyl esterase|unclassified	0.1074072196
+UniRef50_UPI000418DF96: hypothetical protein	0.1073997173
+UniRef50_UPI000418DF96: hypothetical protein|unclassified	0.1073997173
+UniRef50_UPI00036CABD5: hypothetical protein	0.1073966861
+UniRef50_UPI00036CABD5: hypothetical protein|unclassified	0.1073966861
+UniRef50_R6Z8P0	0.1073808965
+UniRef50_R6Z8P0|unclassified	0.1073808965
+UniRef50_F4H872: Permease	0.1073769191
+UniRef50_F4H872: Permease|unclassified	0.1073769191
+UniRef50_S5XYI6	0.1073631145
+UniRef50_S5XYI6|unclassified	0.1073631145
+UniRef50_UPI00046F01F9: mannose-1-phosphate guanylyltransferase, partial	0.1073555465
+UniRef50_UPI00046F01F9: mannose-1-phosphate guanylyltransferase, partial|unclassified	0.1073555465
+UniRef50_UPI0002895A81: dipeptide-binding ABC transporter, periplasmic substrate-binding component (TC 3.A.1.5.2)	0.1073510280
+UniRef50_UPI0002895A81: dipeptide-binding ABC transporter, periplasmic substrate-binding component (TC 3.A.1.5.2)|unclassified	0.1073510280
+UniRef50_UPI0003783400: hypothetical protein	0.1073387900
+UniRef50_UPI0003783400: hypothetical protein|unclassified	0.1073387900
+UniRef50_W2UWL9: Peptidase M37	0.1073379444
+UniRef50_W2UWL9: Peptidase M37|unclassified	0.1073379444
+UniRef50_A4IGH2: Radical S-adenosyl methionine domain-containing protein 1, mitochondrial	0.1073253615
+UniRef50_A4IGH2: Radical S-adenosyl methionine domain-containing protein 1, mitochondrial|unclassified	0.1073253615
+UniRef50_UPI00035C4CBC: hypothetical protein	0.1073252585
+UniRef50_UPI00035C4CBC: hypothetical protein|unclassified	0.1073252585
+UniRef50_UPI0003738363: hypothetical protein	0.1073059904
+UniRef50_UPI0003738363: hypothetical protein|unclassified	0.1073059904
+UniRef50_K4Z6D6	0.1073058787
+UniRef50_K4Z6D6|unclassified	0.1073058787
+UniRef50_E8RC09	0.1072956445
+UniRef50_E8RC09|unclassified	0.1072956445
+UniRef50_UPI00046CDC5D: hypothetical protein	0.1072927631
+UniRef50_UPI00046CDC5D: hypothetical protein|unclassified	0.1072927631
+UniRef50_S2XB36: KxYKxGKxW signal peptide	0.1072914123
+UniRef50_S2XB36: KxYKxGKxW signal peptide|unclassified	0.1072914123
+UniRef50_I4AQK6: Putative virion core protein (Lumpy skin disease virus)	0.1072858781
+UniRef50_I4AQK6: Putative virion core protein (Lumpy skin disease virus)|unclassified	0.1072858781
+UniRef50_UPI00040D856B: hypothetical protein	0.1072827450
+UniRef50_UPI00040D856B: hypothetical protein|unclassified	0.1072827450
+UniRef50_F3GG14: Type VI secretion protein IcmF (Fragment)	0.1072771523
+UniRef50_F3GG14: Type VI secretion protein IcmF (Fragment)|unclassified	0.1072771523
+UniRef50_D7GCU5: ATP-dependent 6-phosphofructokinase	0.1072753569
+UniRef50_D7GCU5: ATP-dependent 6-phosphofructokinase|unclassified	0.1072753569
+UniRef50_UPI0004075AA3: riboflavin biosynthesis protein RibD	0.1072705342
+UniRef50_UPI0004075AA3: riboflavin biosynthesis protein RibD|unclassified	0.1072705342
+UniRef50_UPI000373190C: hypothetical protein	0.1072649320
+UniRef50_UPI000373190C: hypothetical protein|unclassified	0.1072649320
+UniRef50_UPI000468F00F: hypothetical protein	0.1072486627
+UniRef50_UPI000468F00F: hypothetical protein|unclassified	0.1072486627
+UniRef50_G5R4W0: Decarboxylase family protein	0.1072397664
+UniRef50_G5R4W0: Decarboxylase family protein|unclassified	0.1072397664
+UniRef50_UPI00041BEA8C: sarcosine oxidase subunit alpha	0.1072394913
+UniRef50_UPI00041BEA8C: sarcosine oxidase subunit alpha|unclassified	0.1072394913
+UniRef50_I3D8Q5: PF04222 domain protein	0.1072381086
+UniRef50_I3D8Q5: PF04222 domain protein|unclassified	0.1072381086
+UniRef50_W7CN55	0.1072325076
+UniRef50_W7CN55|unclassified	0.1072325076
+UniRef50_M0V1N5	0.1072320185
+UniRef50_M0V1N5|unclassified	0.1072320185
+UniRef50_A7C6L8: Excinuclease ABC subunit A	0.1072281541
+UniRef50_A7C6L8: Excinuclease ABC subunit A|unclassified	0.1072281541
+UniRef50_UPI0004741980: restriction endonuclease subunit R	0.1072259495
+UniRef50_UPI0004741980: restriction endonuclease subunit R|unclassified	0.1072259495
+UniRef50_UPI00037D25EB: hypothetical protein	0.1072207566
+UniRef50_UPI00037D25EB: hypothetical protein|unclassified	0.1072207566
+UniRef50_X1PKC5: Marine sediment metagenome DNA, contig: S06H3_S02327 (Fragment)	0.1072189108
+UniRef50_X1PKC5: Marine sediment metagenome DNA, contig: S06H3_S02327 (Fragment)|unclassified	0.1072189108
+UniRef50_A7IGI6: Appr-1-p processing domain protein	0.1072124962
+UniRef50_A7IGI6: Appr-1-p processing domain protein|unclassified	0.1072124962
+UniRef50_B8D0S4: Adenylyl-sulfate kinase	0.1072042848
+UniRef50_B8D0S4: Adenylyl-sulfate kinase|unclassified	0.1072042848
+UniRef50_P66774: L-serine dehydratase	0.1071865873
+UniRef50_P66774: L-serine dehydratase|unclassified	0.1071865873
+UniRef50_UPI0003B42AEE: C4-dicarboxylate ABC transporter	0.1071833322
+UniRef50_UPI0003B42AEE: C4-dicarboxylate ABC transporter|unclassified	0.1071833322
+UniRef50_R5T2N6: Glyoxalase family protein	0.1071827711
+UniRef50_R5T2N6: Glyoxalase family protein|unclassified	0.1071827711
+UniRef50_UPI0004223AC7: hypothetical protein	0.1071676766
+UniRef50_UPI0004223AC7: hypothetical protein|unclassified	0.1071676766
+UniRef50_UPI00038F7974: hypothetical protein	0.1071590200
+UniRef50_UPI00038F7974: hypothetical protein|unclassified	0.1071590200
+UniRef50_UPI00047D2AA8: dihydrofolate reductase	0.1071563135
+UniRef50_UPI00047D2AA8: dihydrofolate reductase|unclassified	0.1071563135
+UniRef50_UPI000361337E: 30S ribosomal protein S5	0.1071493411
+UniRef50_UPI000361337E: 30S ribosomal protein S5|unclassified	0.1071493411
+UniRef50_UPI00032A019F: PREDICTED: odorant receptor 33b-like	0.1071471037
+UniRef50_UPI00032A019F: PREDICTED: odorant receptor 33b-like|unclassified	0.1071471037
+UniRef50_Z5T9A1	0.1071457159
+UniRef50_Z5T9A1|unclassified	0.1071457159
+UniRef50_UPI0003644847: chromosome partitioning protein ParA	0.1071355013
+UniRef50_UPI0003644847: chromosome partitioning protein ParA|unclassified	0.1071355013
+UniRef50_UPI0003B3B757: phosphate starvation protein PhoH	0.1071349215
+UniRef50_UPI0003B3B757: phosphate starvation protein PhoH|unclassified	0.1071349215
+UniRef50_UPI00044177C3: Glutamyl-tRNA amidotransferase B subunit	0.1071318569
+UniRef50_UPI00044177C3: Glutamyl-tRNA amidotransferase B subunit|unclassified	0.1071318569
+UniRef50_D5DM37	0.1071234144
+UniRef50_D5DM37|unclassified	0.1071234144
+UniRef50_A9WYA9	0.1071184602
+UniRef50_A9WYA9|unclassified	0.1071184602
+UniRef50_H7PT51: HD domain protein	0.1071124296
+UniRef50_H7PT51: HD domain protein|unclassified	0.1071124296
+UniRef50_Q04677: Acetyl-CoA acetyltransferase IB	0.1071111805
+UniRef50_Q04677: Acetyl-CoA acetyltransferase IB|unclassified	0.1071111805
+UniRef50_UPI00039589FF: aldose 1-epimerase	0.1071080726
+UniRef50_UPI00039589FF: aldose 1-epimerase|unclassified	0.1071080726
+UniRef50_X1Y946: Translation factor GUF1 homolog, mitochondrial	0.1071058123
+UniRef50_X1Y946: Translation factor GUF1 homolog, mitochondrial|unclassified	0.1071058123
+UniRef50_UPI000370E753: hypothetical protein	0.1070972931
+UniRef50_UPI000370E753: hypothetical protein|unclassified	0.1070972931
+UniRef50_A0A059KPB6	0.1070972528
+UniRef50_A0A059KPB6|unclassified	0.1070972528
+UniRef50_G8ASK2	0.1070936971
+UniRef50_G8ASK2|unclassified	0.1070936971
+UniRef50_UPI00036E20DA: hypothetical protein	0.1070718693
+UniRef50_UPI00036E20DA: hypothetical protein|unclassified	0.1070718693
+UniRef50_UPI00036EEE9D: hypothetical protein	0.1070694014
+UniRef50_UPI00036EEE9D: hypothetical protein|unclassified	0.1070694014
+UniRef50_UPI00046E3A0C: ATPase	0.1070552420
+UniRef50_UPI00046E3A0C: ATPase|unclassified	0.1070552420
+UniRef50_UPI00036D582C: hypothetical protein	0.1070548443
+UniRef50_UPI00036D582C: hypothetical protein|unclassified	0.1070548443
+UniRef50_H1V7W0	0.1070523091
+UniRef50_H1V7W0|unclassified	0.1070523091
+UniRef50_I3D7L5: Putative D-galactose-binding periplasmic protein	0.1070438523
+UniRef50_I3D7L5: Putative D-galactose-binding periplasmic protein|unclassified	0.1070438523
+UniRef50_UPI00028966B5: TraR/DksA family transcriptional regulator	0.1070346121
+UniRef50_UPI00028966B5: TraR/DksA family transcriptional regulator|unclassified	0.1070346121
+UniRef50_UPI00020DA018: exopolysaccharide phosphogalactosyltransferase	0.1070340930
+UniRef50_UPI00020DA018: exopolysaccharide phosphogalactosyltransferase|unclassified	0.1070340930
+UniRef50_UPI000472AD58: tryptophan synthase alpha chain	0.1070336514
+UniRef50_UPI000472AD58: tryptophan synthase alpha chain|unclassified	0.1070336514
+UniRef50_UPI00037CC475: RNaseH ribonuclease	0.1070182421
+UniRef50_UPI00037CC475: RNaseH ribonuclease|unclassified	0.1070182421
+UniRef50_UPI0003B782E0: acyl-CoA thioesterase	0.1070170169
+UniRef50_UPI0003B782E0: acyl-CoA thioesterase|unclassified	0.1070170169
+UniRef50_UPI00025587F2: enoyl-CoA hydratase/isomerase	0.1070069808
+UniRef50_UPI00025587F2: enoyl-CoA hydratase/isomerase|unclassified	0.1070069808
+UniRef50_UPI0003B47659: DNA helicase	0.1070022385
+UniRef50_UPI0003B47659: DNA helicase|unclassified	0.1070022385
+UniRef50_E9AEM8: Proteophosphoglycan ppg4	0.1070015844
+UniRef50_E9AEM8: Proteophosphoglycan ppg4|unclassified	0.1070015844
+UniRef50_G2A2Y4	0.1069942465
+UniRef50_G2A2Y4|unclassified	0.1069942465
+UniRef50_K7UX84	0.1069932787
+UniRef50_K7UX84|unclassified	0.1069932787
+UniRef50_B1YMC1: Metallophosphoesterase	0.1069919442
+UniRef50_B1YMC1: Metallophosphoesterase|unclassified	0.1069919442
+UniRef50_UPI00041743FE: hypothetical protein	0.1069868494
+UniRef50_UPI00041743FE: hypothetical protein|unclassified	0.1069868494
+UniRef50_F6BPZ5: Transposase IS66	0.1069849846
+UniRef50_F6BPZ5: Transposase IS66|unclassified	0.1069849846
+UniRef50_UPI000469B192: phosphoribosylglycinamide formyltransferase	0.1069830037
+UniRef50_UPI000469B192: phosphoribosylglycinamide formyltransferase|unclassified	0.1069830037
+UniRef50_UPI00047A11A6: histidine kinase	0.1069822398
+UniRef50_UPI00047A11A6: histidine kinase|unclassified	0.1069822398
+UniRef50_A7I198: Glycine--tRNA ligase alpha subunit	0.1069791443
+UniRef50_A7I198: Glycine--tRNA ligase alpha subunit|unclassified	0.1069791443
+UniRef50_G2I263: Transposase	0.1069706043
+UniRef50_G2I263: Transposase|unclassified	0.1069706043
+UniRef50_D9PMH5: YecA family protein	0.1069682871
+UniRef50_D9PMH5: YecA family protein|unclassified	0.1069682871
+UniRef50_UPI0003B6232B: ModE family transcriptional regulator	0.1069671709
+UniRef50_UPI0003B6232B: ModE family transcriptional regulator|unclassified	0.1069671709
+UniRef50_UPI00036EDC0B: hypothetical protein	0.1069635012
+UniRef50_UPI00036EDC0B: hypothetical protein|unclassified	0.1069635012
+UniRef50_UPI00039FD8E4: dihydroorotase	0.1069634611
+UniRef50_UPI00039FD8E4: dihydroorotase|unclassified	0.1069634611
+UniRef50_UPI000364A1F4: hypothetical protein	0.1069619733
+UniRef50_UPI000364A1F4: hypothetical protein|unclassified	0.1069619733
+UniRef50_UPI00037F3DA1: hypothetical protein	0.1069565367
+UniRef50_UPI00037F3DA1: hypothetical protein|unclassified	0.1069565367
+UniRef50_UPI000383B4C6: PREDICTED: 5E5 antigen-like	0.1069533802
+UniRef50_UPI000383B4C6: PREDICTED: 5E5 antigen-like|unclassified	0.1069533802
+UniRef50_W0Z8R0: Transcriptional regulator (Modular protein)	0.1069518111
+UniRef50_W0Z8R0: Transcriptional regulator (Modular protein)|unclassified	0.1069518111
+UniRef50_K8BVS4	0.1069500616
+UniRef50_K8BVS4|unclassified	0.1069500616
+UniRef50_H5SEE4: Hypothetical conserved protein	0.1069403603
+UniRef50_H5SEE4: Hypothetical conserved protein|unclassified	0.1069403603
+UniRef50_R6ZTJ7	0.1069402789
+UniRef50_R6ZTJ7|unclassified	0.1069402789
+UniRef50_D7W8P8: Glyoxalase family protein	0.1069394403
+UniRef50_D7W8P8: Glyoxalase family protein|unclassified	0.1069394403
+UniRef50_UPI0003B3B541: diguanylate cyclase	0.1069344717
+UniRef50_UPI0003B3B541: diguanylate cyclase|unclassified	0.1069344717
+UniRef50_UPI0004182A5D: MarR family transcriptional regulator	0.1069343581
+UniRef50_UPI0004182A5D: MarR family transcriptional regulator|unclassified	0.1069343581
+UniRef50_UPI000478C728: hypothetical protein	0.1069315045
+UniRef50_UPI000478C728: hypothetical protein|unclassified	0.1069315045
+UniRef50_UPI00046EE3E1: nitroreductase	0.1069191688
+UniRef50_UPI00046EE3E1: nitroreductase|unclassified	0.1069191688
+UniRef50_A0A017T5I2: EBNA-1 protein	0.1069174361
+UniRef50_A0A017T5I2: EBNA-1 protein|unclassified	0.1069174361
+UniRef50_UPI00033329BE: PREDICTED: GTP cyclohydrolase 1	0.1069027943
+UniRef50_UPI00033329BE: PREDICTED: GTP cyclohydrolase 1|unclassified	0.1069027943
+UniRef50_S3YIQ8	0.1069023938
+UniRef50_S3YIQ8|unclassified	0.1069023938
+UniRef50_R3JX77: Tandem lipoprotein	0.1069013758
+UniRef50_R3JX77: Tandem lipoprotein|unclassified	0.1069013758
+UniRef50_UPI0002D9BFDB: quinol oxidase subunit 2	0.1068986599
+UniRef50_UPI0002D9BFDB: quinol oxidase subunit 2|unclassified	0.1068986599
+UniRef50_X6QNH1	0.1068960754
+UniRef50_X6QNH1|unclassified	0.1068960754
+UniRef50_Q69KP3: Cell wall protein-like	0.1068941875
+UniRef50_Q69KP3: Cell wall protein-like|unclassified	0.1068941875
+UniRef50_UPI00047399B5: macrolide ABC transporter ATP-binding protein, partial	0.1068938237
+UniRef50_UPI00047399B5: macrolide ABC transporter ATP-binding protein, partial|unclassified	0.1068938237
+UniRef50_UPI0001D2F496: lipolytic protein G-D-S-L family	0.1068912870
+UniRef50_UPI0001D2F496: lipolytic protein G-D-S-L family|unclassified	0.1068912870
+UniRef50_UPI0003C42A4B: PREDICTED: iron-responsive element-binding protein 2-like, partial	0.1068901553
+UniRef50_UPI0003C42A4B: PREDICTED: iron-responsive element-binding protein 2-like, partial|unclassified	0.1068901553
+UniRef50_UPI000468C387: flagellar hook protein FliD	0.1068797122
+UniRef50_UPI000468C387: flagellar hook protein FliD|unclassified	0.1068797122
+UniRef50_T0TUL5: Fibronectin/fibrinogen-binding protein	0.1068704198
+UniRef50_T0TUL5: Fibronectin/fibrinogen-binding protein|unclassified	0.1068704198
+UniRef50_UPI00047EB00A: hypothetical protein	0.1068700844
+UniRef50_UPI00047EB00A: hypothetical protein|unclassified	0.1068700844
+UniRef50_E2ZYP4	0.1068637115
+UniRef50_E2ZYP4|unclassified	0.1068637115
+UniRef50_UPI0004727697: hypothetical protein, partial	0.1068595092
+UniRef50_UPI0004727697: hypothetical protein, partial|unclassified	0.1068595092
+UniRef50_T2F9D3: Competence protein ComGB	0.1068498861
+UniRef50_T2F9D3: Competence protein ComGB|unclassified	0.1068498861
+UniRef50_UPI0003B57F85: C4-dicarboxylate ABC transporter substrate-binding protein	0.1068470738
+UniRef50_UPI0003B57F85: C4-dicarboxylate ABC transporter substrate-binding protein|unclassified	0.1068470738
+UniRef50_E0URU8: DoxX family protein	0.1068419601
+UniRef50_E0URU8: DoxX family protein|unclassified	0.1068419601
+UniRef50_A4H7G2	0.1068410044
+UniRef50_A4H7G2|unclassified	0.1068410044
+UniRef50_UPI00046390DE: hypothetical protein, partial	0.1068339269
+UniRef50_UPI00046390DE: hypothetical protein, partial|unclassified	0.1068339269
+UniRef50_H9JHD1	0.1068300249
+UniRef50_H9JHD1|unclassified	0.1068300249
+UniRef50_UPI0002F26BA0: hypothetical protein	0.1068255022
+UniRef50_UPI0002F26BA0: hypothetical protein|unclassified	0.1068255022
+UniRef50_UPI0002B44610: PREDICTED: serine incorporator 5	0.1068230696
+UniRef50_UPI0002B44610: PREDICTED: serine incorporator 5|unclassified	0.1068230696
+UniRef50_UPI00023757DD: hypothetical protein	0.1068223373
+UniRef50_UPI00023757DD: hypothetical protein|unclassified	0.1068223373
+UniRef50_A5INL5: LemA family protein	0.1068119378
+UniRef50_A5INL5: LemA family protein|unclassified	0.1068119378
+UniRef50_UPI000410B5E9: hypothetical protein	0.1068090958
+UniRef50_UPI000410B5E9: hypothetical protein|unclassified	0.1068090958
+UniRef50_B7MQC3: Deoxyribose specific mutarotase (Partial)	0.1068063129
+UniRef50_B7MQC3: Deoxyribose specific mutarotase (Partial)|unclassified	0.1068063129
+UniRef50_UPI0004081C8A: ABC transporter ATP-binding protein	0.1068061775
+UniRef50_UPI0004081C8A: ABC transporter ATP-binding protein|unclassified	0.1068061775
+UniRef50_UPI0002EAAB85: hypothetical protein	0.1067957319
+UniRef50_UPI0002EAAB85: hypothetical protein|unclassified	0.1067957319
+UniRef50_UPI000376AD93: hypothetical protein	0.1067874998
+UniRef50_UPI000376AD93: hypothetical protein|unclassified	0.1067874998
+UniRef50_UPI00035CA25E: hypothetical protein	0.1067803206
+UniRef50_UPI00035CA25E: hypothetical protein|unclassified	0.1067803206
+UniRef50_I7FS65	0.1067799554
+UniRef50_I7FS65|unclassified	0.1067799554
+UniRef50_I4JNV8: Cytochrome C	0.1067772634
+UniRef50_I4JNV8: Cytochrome C|unclassified	0.1067772634
+UniRef50_Q6ZTJ3: cDNA FLJ44595 fis, clone BLADE2004849	0.1067734405
+UniRef50_Q6ZTJ3: cDNA FLJ44595 fis, clone BLADE2004849|unclassified	0.1067734405
+UniRef50_P44975: Lipoprotein signal peptidase	0.1067731018
+UniRef50_P44975: Lipoprotein signal peptidase|unclassified	0.1067731018
+UniRef50_G7FPP9	0.1067696870
+UniRef50_G7FPP9|unclassified	0.1067696870
+UniRef50_UPI00037AA099: hypothetical protein	0.1067636535
+UniRef50_UPI00037AA099: hypothetical protein|unclassified	0.1067636535
+UniRef50_UPI0003672C8D: hypothetical protein	0.1067609868
+UniRef50_UPI0003672C8D: hypothetical protein|unclassified	0.1067609868
+UniRef50_Q6MN06: Adenylosuccinate synthetase	0.1067545707
+UniRef50_Q6MN06: Adenylosuccinate synthetase|unclassified	0.1067545707
+UniRef50_Q42025: HSP 70- Pisum sativum (Fragment)	0.1067419339
+UniRef50_Q42025: HSP 70- Pisum sativum (Fragment)|unclassified	0.1067419339
+UniRef50_V4J835: Dehydrogenase	0.1067358633
+UniRef50_V4J835: Dehydrogenase|unclassified	0.1067358633
+UniRef50_D8J1T8	0.1067351815
+UniRef50_D8J1T8|unclassified	0.1067351815
+UniRef50_UPI00041A9245: hypothetical protein	0.1067298603
+UniRef50_UPI00041A9245: hypothetical protein|unclassified	0.1067298603
+UniRef50_Q8RLE0: Thymidine kinase	0.1067273204
+UniRef50_Q8RLE0: Thymidine kinase|unclassified	0.1067273204
+UniRef50_UPI000471C1F1: hypothetical protein, partial	0.1067182458
+UniRef50_UPI000471C1F1: hypothetical protein, partial|unclassified	0.1067182458
+UniRef50_Q04513: L-threonine dehydratase biosynthetic IlvA	0.1067179534
+UniRef50_Q04513: L-threonine dehydratase biosynthetic IlvA|unclassified	0.1067179534
+UniRef50_UPI000363ADAC: hypothetical protein	0.1067078733
+UniRef50_UPI000363ADAC: hypothetical protein|unclassified	0.1067078733
+UniRef50_C2PDN3: Peptidase, M23/M37	0.1067001557
+UniRef50_C2PDN3: Peptidase, M23/M37|unclassified	0.1067001557
+UniRef50_P47227: Cis-2,3-dihydrobiphenyl-2,3-diol dehydrogenase	0.1066979962
+UniRef50_P47227: Cis-2,3-dihydrobiphenyl-2,3-diol dehydrogenase|unclassified	0.1066979962
+UniRef50_D7CXC6: Thioesterase superfamily protein	0.1066963628
+UniRef50_D7CXC6: Thioesterase superfamily protein|unclassified	0.1066963628
+UniRef50_UPI000379ABFA: hypothetical protein	0.1066722426
+UniRef50_UPI000379ABFA: hypothetical protein|unclassified	0.1066722426
+UniRef50_E6SJW2	0.1066719580
+UniRef50_E6SJW2|unclassified	0.1066719580
+UniRef50_UPI000380047C: hypothetical protein, partial	0.1066605413
+UniRef50_UPI000380047C: hypothetical protein, partial|unclassified	0.1066605413
+UniRef50_Q2Y752: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase	0.1066509368
+UniRef50_Q2Y752: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|unclassified	0.1066509368
+UniRef50_H6VUW6: Universal stress protein	0.1066451108
+UniRef50_H6VUW6: Universal stress protein|unclassified	0.1066451108
+UniRef50_K4F7R4: Adhesin	0.1066284370
+UniRef50_K4F7R4: Adhesin|unclassified	0.1066284370
+UniRef50_UPI000472DB6B: hypothetical protein	0.1066278435
+UniRef50_UPI000472DB6B: hypothetical protein|unclassified	0.1066278435
+UniRef50_D8LHB4	0.1066219290
+UniRef50_D8LHB4|unclassified	0.1066219290
+UniRef50_UPI0004716F0E: ribonuclease J	0.1066216129
+UniRef50_UPI0004716F0E: ribonuclease J|unclassified	0.1066216129
+UniRef50_UPI0004664E5E: transcriptional regulator	0.1066087101
+UniRef50_UPI0004664E5E: transcriptional regulator|unclassified	0.1066087101
+UniRef50_UPI00037AA28C: hypothetical protein	0.1066076874
+UniRef50_UPI00037AA28C: hypothetical protein|unclassified	0.1066076874
+UniRef50_U4V1V9: Putative magnesium chelatase accessory protein	0.1066066935
+UniRef50_U4V1V9: Putative magnesium chelatase accessory protein|unclassified	0.1066066935
+UniRef50_UPI0003716807: hypothetical protein	0.1066019181
+UniRef50_UPI0003716807: hypothetical protein|unclassified	0.1066019181
+UniRef50_A9D9Z1	0.1065942665
+UniRef50_A9D9Z1|unclassified	0.1065942665
+UniRef50_X2GIT7	0.1065911123
+UniRef50_X2GIT7|unclassified	0.1065911123
+UniRef50_UPI00035C827B: hypothetical protein	0.1065843475
+UniRef50_UPI00035C827B: hypothetical protein|unclassified	0.1065843475
+UniRef50_UPI000466B9D8: TonB-dependent receptor	0.1065805460
+UniRef50_UPI000466B9D8: TonB-dependent receptor|unclassified	0.1065805460
+UniRef50_E6VFW3: DedA family	0.1065767073
+UniRef50_E6VFW3: DedA family|unclassified	0.1065767073
+UniRef50_UPI0002EE0684: hypothetical protein	0.1065749422
+UniRef50_UPI0002EE0684: hypothetical protein|unclassified	0.1065749422
+UniRef50_D5DIX7	0.1065732782
+UniRef50_D5DIX7|unclassified	0.1065732782
+UniRef50_S9SIT4: Transglycosylase SLT domain protein	0.1065677983
+UniRef50_S9SIT4: Transglycosylase SLT domain protein|unclassified	0.1065677983
+UniRef50_UPI000474A362: hypothetical protein, partial	0.1065569580
+UniRef50_UPI000474A362: hypothetical protein, partial|unclassified	0.1065569580
+UniRef50_F7ZDW0	0.1065470457
+UniRef50_F7ZDW0|unclassified	0.1065470457
+UniRef50_H7F903	0.1065395834
+UniRef50_H7F903|unclassified	0.1065395834
+UniRef50_E1VM74: Type IV fimbrial biogenesis protein, involved in pilus assembly	0.1065226962
+UniRef50_E1VM74: Type IV fimbrial biogenesis protein, involved in pilus assembly|unclassified	0.1065226962
+UniRef50_UPI00039E668B: arylesterase	0.1065218094
+UniRef50_UPI00039E668B: arylesterase|unclassified	0.1065218094
+UniRef50_UPI0003B6FD02: molybdopterin biosynthesis protein MoeA	0.1065170799
+UniRef50_UPI0003B6FD02: molybdopterin biosynthesis protein MoeA|unclassified	0.1065170799
+UniRef50_X1MHV1: Marine sediment metagenome DNA, contig: S06H3_L06887 (Fragment)	0.1065063765
+UniRef50_X1MHV1: Marine sediment metagenome DNA, contig: S06H3_L06887 (Fragment)|unclassified	0.1065063765
+UniRef50_A6WVY1: Dihydroorotate dehydrogenase (quinone)	0.1065053668
+UniRef50_A6WVY1: Dihydroorotate dehydrogenase (quinone)|unclassified	0.1065053668
+UniRef50_Q3D5G4	0.1065051830
+UniRef50_Q3D5G4|unclassified	0.1065051830
+UniRef50_N2J2A1	0.1065032237
+UniRef50_N2J2A1|unclassified	0.1065032237
+UniRef50_Q9SWF5: Adenosylhomocysteinase	0.1064986955
+UniRef50_Q9SWF5: Adenosylhomocysteinase|unclassified	0.1064986955
+UniRef50_UPI000395D27A: PREDICTED: collagen alpha-1(I) chain-like, partial	0.1064900401
+UniRef50_UPI000395D27A: PREDICTED: collagen alpha-1(I) chain-like, partial|unclassified	0.1064900401
+UniRef50_A7HGR6: Os11g0538400	0.1064737963
+UniRef50_A7HGR6: Os11g0538400|unclassified	0.1064737963
+UniRef50_UPI0002DD538D: hypothetical protein	0.1064702579
+UniRef50_UPI0002DD538D: hypothetical protein|unclassified	0.1064702579
+UniRef50_UPI0003B423C3: tRNA delta(2)-isopentenylpyrophosphate transferase	0.1064686591
+UniRef50_UPI0003B423C3: tRNA delta(2)-isopentenylpyrophosphate transferase|unclassified	0.1064686591
+UniRef50_A9NE95: Formate--tetrahydrofolate ligase	0.1064597911
+UniRef50_A9NE95: Formate--tetrahydrofolate ligase|unclassified	0.1064597911
+UniRef50_UPI000288B64F: C4-dicarboxylate ABC transporter substrate-binding protein	0.1064452588
+UniRef50_UPI000288B64F: C4-dicarboxylate ABC transporter substrate-binding protein|unclassified	0.1064452588
+UniRef50_UPI000378B4AE: hypothetical protein, partial	0.1064376159
+UniRef50_UPI000378B4AE: hypothetical protein, partial|unclassified	0.1064376159
+UniRef50_UPI00037CA148: hypothetical protein	0.1064303099
+UniRef50_UPI00037CA148: hypothetical protein|unclassified	0.1064303099
+UniRef50_UPI0003F897B1: ATP-dependent DNA helicase RecG	0.1064296422
+UniRef50_UPI0003F897B1: ATP-dependent DNA helicase RecG|unclassified	0.1064296422
+UniRef50_E9C843	0.1064286182
+UniRef50_E9C843|unclassified	0.1064286182
+UniRef50_UPI00029B022C: N-acetylglutamate synthase, partial	0.1064284983
+UniRef50_UPI00029B022C: N-acetylglutamate synthase, partial|unclassified	0.1064284983
+UniRef50_UPI00047531B6: phospholipase	0.1064216041
+UniRef50_UPI00047531B6: phospholipase|unclassified	0.1064216041
+UniRef50_UPI000328B31F: PREDICTED: DBF4-type zinc finger-containing protein 2 homolog	0.1064156700
+UniRef50_UPI000328B31F: PREDICTED: DBF4-type zinc finger-containing protein 2 homolog|unclassified	0.1064156700
+UniRef50_UPI000470CD83: cell division protein FtsZ	0.1064026128
+UniRef50_UPI000470CD83: cell division protein FtsZ|unclassified	0.1064026128
+UniRef50_M1SP21	0.1063975173
+UniRef50_M1SP21|unclassified	0.1063975173
+UniRef50_Q2CHM1	0.1063944488
+UniRef50_Q2CHM1|unclassified	0.1063944488
+UniRef50_UPI0002DE8BCF: hypothetical protein	0.1063919356
+UniRef50_UPI0002DE8BCF: hypothetical protein|unclassified	0.1063919356
+UniRef50_UPI00035C388E: hypothetical protein	0.1063899877
+UniRef50_UPI00035C388E: hypothetical protein|unclassified	0.1063899877
+UniRef50_UPI000383180E: hypothetical protein M271_08470	0.1063704164
+UniRef50_UPI000383180E: hypothetical protein M271_08470|unclassified	0.1063704164
+UniRef50_B2K8C2: YagBYeeUYfjZ family protein	0.1063651850
+UniRef50_B2K8C2: YagBYeeUYfjZ family protein|unclassified	0.1063651850
+UniRef50_R5KQM2: LemA family protein	0.1063613336
+UniRef50_R5KQM2: LemA family protein|unclassified	0.1063613336
+UniRef50_UPI00036B073F: molybdopterin-binding protein, partial	0.1063419690
+UniRef50_UPI00036B073F: molybdopterin-binding protein, partial|unclassified	0.1063419690
+UniRef50_UPI0003A4A1B7: hypothetical protein	0.1063414512
+UniRef50_UPI0003A4A1B7: hypothetical protein|unclassified	0.1063414512
+UniRef50_UPI0003B39528: hypothetical protein	0.1063382497
+UniRef50_UPI0003B39528: hypothetical protein|unclassified	0.1063382497
+UniRef50_UPI000476F8E5: hypothetical protein	0.1063374349
+UniRef50_UPI000476F8E5: hypothetical protein|unclassified	0.1063374349
+UniRef50_D4CLR5: Cupin domain protein	0.1063366570
+UniRef50_D4CLR5: Cupin domain protein|unclassified	0.1063366570
+UniRef50_UPI000362FFAD: hypothetical protein, partial	0.1063363012
+UniRef50_UPI000362FFAD: hypothetical protein, partial|unclassified	0.1063363012
+UniRef50_F2IZL3: Flagellar hook capping protein	0.1063318885
+UniRef50_F2IZL3: Flagellar hook capping protein|unclassified	0.1063318885
+UniRef50_J4X1R2: Putative membrane protein	0.1063294136
+UniRef50_J4X1R2: Putative membrane protein|unclassified	0.1063294136
+UniRef50_UPI00036DEA00: hypothetical protein, partial	0.1063263165
+UniRef50_UPI00036DEA00: hypothetical protein, partial|unclassified	0.1063263165
+UniRef50_E4PQ84	0.1063235953
+UniRef50_E4PQ84|unclassified	0.1063235953
+UniRef50_UPI00037BF8C3: zinc-binding dehydrogenase, partial	0.1063196807
+UniRef50_UPI00037BF8C3: zinc-binding dehydrogenase, partial|unclassified	0.1063196807
+UniRef50_UPI0002DAD6A1: hypothetical protein	0.1063166555
+UniRef50_UPI0002DAD6A1: hypothetical protein|unclassified	0.1063166555
+UniRef50_UPI0003291247: PREDICTED: translation initiation factor IF-2-like	0.1063143525
+UniRef50_UPI0003291247: PREDICTED: translation initiation factor IF-2-like|unclassified	0.1063143525
+UniRef50_UPI0003A8AE95: signal peptidase	0.1063118238
+UniRef50_UPI0003A8AE95: signal peptidase|unclassified	0.1063118238
+UniRef50_UPI0003A6B4AA: peptidase S41	0.1062977374
+UniRef50_UPI0003A6B4AA: peptidase S41|unclassified	0.1062977374
+UniRef50_UPI0001CC05BB: putative secreted protein	0.1062949428
+UniRef50_UPI0001CC05BB: putative secreted protein|unclassified	0.1062949428
+UniRef50_O23968: Probable phospholipid hydroperoxide glutathione peroxidase	0.1062873466
+UniRef50_O23968: Probable phospholipid hydroperoxide glutathione peroxidase|unclassified	0.1062873466
+UniRef50_UPI0003B35DC4: anthranilate synthase subunit I	0.1062715405
+UniRef50_UPI0003B35DC4: anthranilate synthase subunit I|unclassified	0.1062715405
+UniRef50_A5B2H7	0.1062663727
+UniRef50_A5B2H7|unclassified	0.1062663727
+UniRef50_A0A024HKV2	0.1062610067
+UniRef50_A0A024HKV2|unclassified	0.1062610067
+UniRef50_K2B2E8	0.1062584887
+UniRef50_K2B2E8|unclassified	0.1062584887
+UniRef50_UPI00036B23BD: hypothetical protein	0.1062534417
+UniRef50_UPI00036B23BD: hypothetical protein|unclassified	0.1062534417
+UniRef50_E4CEH2	0.1062517872
+UniRef50_E4CEH2|unclassified	0.1062517872
+UniRef50_UPI000470DDAA: hypothetical protein	0.1062511028
+UniRef50_UPI000470DDAA: hypothetical protein|unclassified	0.1062511028
+UniRef50_UPI00034AF93B: hypothetical protein	0.1062508722
+UniRef50_UPI00034AF93B: hypothetical protein|unclassified	0.1062508722
+UniRef50_UPI00036324C8: hypothetical protein	0.1062421918
+UniRef50_UPI00036324C8: hypothetical protein|unclassified	0.1062421918
+UniRef50_Q8RIQ1: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.1062397025
+UniRef50_Q8RIQ1: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.1062397025
+UniRef50_UPI0003F5386D: hypothetical protein	0.1062277632
+UniRef50_UPI0003F5386D: hypothetical protein|unclassified	0.1062277632
+UniRef50_E3LJ98	0.1062230348
+UniRef50_E3LJ98|unclassified	0.1062230348
+UniRef50_UPI0003668281: hypothetical protein	0.1062187143
+UniRef50_UPI0003668281: hypothetical protein|unclassified	0.1062187143
+UniRef50_T0PX63	0.1062150227
+UniRef50_T0PX63|unclassified	0.1062150227
+UniRef50_C8S2D0: MJ0042 family finger-like protein	0.1062136648
+UniRef50_C8S2D0: MJ0042 family finger-like protein|unclassified	0.1062136648
+UniRef50_X7FC63: DNA topology modulation protein FlaR	0.1062044650
+UniRef50_X7FC63: DNA topology modulation protein FlaR|unclassified	0.1062044650
+UniRef50_UPI000472FB2E: hypothetical protein	0.1062039353
+UniRef50_UPI000472FB2E: hypothetical protein|unclassified	0.1062039353
+UniRef50_O34481: ATP-dependent RecD-like DNA helicase	0.1061968379
+UniRef50_O34481: ATP-dependent RecD-like DNA helicase|unclassified	0.1061968379
+UniRef50_UPI0003705D2A: hypothetical protein	0.1061939173
+UniRef50_UPI0003705D2A: hypothetical protein|unclassified	0.1061939173
+UniRef50_UPI000363D7F2: hypothetical protein	0.1061857949
+UniRef50_UPI000363D7F2: hypothetical protein|unclassified	0.1061857949
+UniRef50_S9QKS6: GTA host specificity protein	0.1061834011
+UniRef50_S9QKS6: GTA host specificity protein|unclassified	0.1061834011
+UniRef50_UPI00037665FC: hypothetical protein	0.1061807857
+UniRef50_UPI00037665FC: hypothetical protein|unclassified	0.1061807857
+UniRef50_Q3ABL6: Dephospho-CoA kinase	0.1061795773
+UniRef50_Q3ABL6: Dephospho-CoA kinase|unclassified	0.1061795773
+UniRef50_A9RAH7: Probable intron-encoded endonuclease aI2	0.1061728444
+UniRef50_A9RAH7: Probable intron-encoded endonuclease aI2|unclassified	0.1061728444
+UniRef50_UPI00047C54CB: histidine kinase	0.1061724278
+UniRef50_UPI00047C54CB: histidine kinase|unclassified	0.1061724278
+UniRef50_Q8PE50: Alpha-1,4-glucan:maltose-1-phosphate maltosyltransferase	0.1061711958
+UniRef50_Q8PE50: Alpha-1,4-glucan:maltose-1-phosphate maltosyltransferase|unclassified	0.1061711958
+UniRef50_UPI00034F6213: PREDICTED: replication initiation protein-like, partial	0.1061658627
+UniRef50_UPI00034F6213: PREDICTED: replication initiation protein-like, partial|unclassified	0.1061658627
+UniRef50_UPI000262D108: thioredoxin	0.1061655295
+UniRef50_UPI000262D108: thioredoxin|unclassified	0.1061655295
+UniRef50_UPI00021940CE: prephenate dehydrogenase	0.1061620617
+UniRef50_UPI00021940CE: prephenate dehydrogenase|unclassified	0.1061620617
+UniRef50_UPI000315E930: hypothetical protein	0.1061495687
+UniRef50_UPI000315E930: hypothetical protein|unclassified	0.1061495687
+UniRef50_UPI0003717160: hypothetical protein	0.1061082797
+UniRef50_UPI0003717160: hypothetical protein|unclassified	0.1061082797
+UniRef50_UPI000371DE88: hypothetical protein	0.1060991604
+UniRef50_UPI000371DE88: hypothetical protein|unclassified	0.1060991604
+UniRef50_P98005: Cytochrome c oxidase polypeptide I+III	0.1060940767
+UniRef50_P98005: Cytochrome c oxidase polypeptide I+III|unclassified	0.1060940767
+UniRef50_A0A021FP49: Dehydrosqualene desaturase	0.1060921612
+UniRef50_A0A021FP49: Dehydrosqualene desaturase|unclassified	0.1060921612
+UniRef50_P51649: Succinate-semialdehyde dehydrogenase, mitochondrial	0.1060908965
+UniRef50_P51649: Succinate-semialdehyde dehydrogenase, mitochondrial|unclassified	0.1060908965
+UniRef50_D5E3L4: FabA-like domain protein	0.1060809098
+UniRef50_D5E3L4: FabA-like domain protein|unclassified	0.1060809098
+UniRef50_UPI000376917D: hypothetical protein	0.1060801627
+UniRef50_UPI000376917D: hypothetical protein|unclassified	0.1060801627
+UniRef50_UPI0003B75BB5: transcriptional regulator	0.1060789995
+UniRef50_UPI0003B75BB5: transcriptional regulator|unclassified	0.1060789995
+UniRef50_UPI0003B69DC4: flagellar P-ring protein FlgI	0.1060720867
+UniRef50_UPI0003B69DC4: flagellar P-ring protein FlgI|unclassified	0.1060720867
+UniRef50_C5AZ24: Thioesterase superfamily protein	0.1060631582
+UniRef50_C5AZ24: Thioesterase superfamily protein|unclassified	0.1060631582
+UniRef50_W8SKA6	0.1060410417
+UniRef50_W8SKA6|unclassified	0.1060410417
+UniRef50_UPI00046650EC: hypothetical protein	0.1060296680
+UniRef50_UPI00046650EC: hypothetical protein|unclassified	0.1060296680
+UniRef50_U4V324	0.1060284489
+UniRef50_U4V324|unclassified	0.1060284489
+UniRef50_A9NEI9: Cysteine--tRNA ligase	0.1060173347
+UniRef50_A9NEI9: Cysteine--tRNA ligase|unclassified	0.1060173347
+UniRef50_UPI0003B349C5: 2-hydroxy-acid oxidase, partial	0.1060152554
+UniRef50_UPI0003B349C5: 2-hydroxy-acid oxidase, partial|unclassified	0.1060152554
+UniRef50_H0EA18	0.1060118612
+UniRef50_H0EA18|unclassified	0.1060118612
+UniRef50_K0TKZ7	0.1060081253
+UniRef50_K0TKZ7|unclassified	0.1060081253
+UniRef50_UPI0002E5B51F: hypothetical protein	0.1060053226
+UniRef50_UPI0002E5B51F: hypothetical protein|unclassified	0.1060053226
+UniRef50_UPI000329E7E4	0.1059978137
+UniRef50_UPI000329E7E4|unclassified	0.1059978137
+UniRef50_UPI0003601388: hypothetical protein	0.1059927549
+UniRef50_UPI0003601388: hypothetical protein|unclassified	0.1059927549
+UniRef50_A1T8K1: Riboflavin biosynthesis protein RibBA	0.1059925681
+UniRef50_A1T8K1: Riboflavin biosynthesis protein RibBA|unclassified	0.1059925681
+UniRef50_UPI0003B4779D: molybdenum cofactor biosynthesis protein	0.1059869553
+UniRef50_UPI0003B4779D: molybdenum cofactor biosynthesis protein|unclassified	0.1059869553
+UniRef50_Q9H2P9: Diphthine synthase	0.1059785759
+UniRef50_Q9H2P9: Diphthine synthase|unclassified	0.1059785759
+UniRef50_UPI00047D8F69: hypothetical protein	0.1059756817
+UniRef50_UPI00047D8F69: hypothetical protein|unclassified	0.1059756817
+UniRef50_UPI00036C732F: magnesium chelatase	0.1059697093
+UniRef50_UPI00036C732F: magnesium chelatase|unclassified	0.1059697093
+UniRef50_A9U7B4: Predicted protein (Fragment)	0.1059629346
+UniRef50_A9U7B4: Predicted protein (Fragment)|unclassified	0.1059629346
+UniRef50_B0K0N0: Adenine phosphoribosyltransferase	0.1059586949
+UniRef50_B0K0N0: Adenine phosphoribosyltransferase|unclassified	0.1059586949
+UniRef50_UPI0004799A1B: hypothetical protein	0.1059446216
+UniRef50_UPI0004799A1B: hypothetical protein|unclassified	0.1059446216
+UniRef50_UPI00035C1F0F: PhoB family transcriptional regulator	0.1059416027
+UniRef50_UPI00035C1F0F: PhoB family transcriptional regulator|unclassified	0.1059416027
+UniRef50_B1LU18: Beta-lactamase domain protein	0.1059344915
+UniRef50_B1LU18: Beta-lactamase domain protein|unclassified	0.1059344915
+UniRef50_UPI0003C16983	0.1059327553
+UniRef50_UPI0003C16983|unclassified	0.1059327553
+UniRef50_Q28MQ8: Monosaccharide ABC transporter substrate-binding protein, CUT2 family	0.1059290582
+UniRef50_Q28MQ8: Monosaccharide ABC transporter substrate-binding protein, CUT2 family|unclassified	0.1059290582
+UniRef50_UPI000262D0CC: phosphoenolpyruvate-protein phosphotransferase PtsP	0.1059270303
+UniRef50_UPI000262D0CC: phosphoenolpyruvate-protein phosphotransferase PtsP|unclassified	0.1059270303
+UniRef50_B1VXS1	0.1059197469
+UniRef50_B1VXS1|unclassified	0.1059197469
+UniRef50_UPI0001CC0A53: transport protein, partial	0.1059130973
+UniRef50_UPI0001CC0A53: transport protein, partial|unclassified	0.1059130973
+UniRef50_UPI0003959E9D: CDP-6-deoxy-delta-3,4-glucoseen reductase	0.1059103748
+UniRef50_UPI0003959E9D: CDP-6-deoxy-delta-3,4-glucoseen reductase|unclassified	0.1059103748
+UniRef50_R9V7X1	0.1059090479
+UniRef50_R9V7X1|unclassified	0.1059090479
+UniRef50_UPI000371D0CC: hypothetical protein	0.1059007700
+UniRef50_UPI000371D0CC: hypothetical protein|unclassified	0.1059007700
+UniRef50_UPI0004644D91: ABC transporter permease	0.1059000021
+UniRef50_UPI0004644D91: ABC transporter permease|unclassified	0.1059000021
+UniRef50_T1D567: Thiamine biosynthesis protein ThiC	0.1058982040
+UniRef50_T1D567: Thiamine biosynthesis protein ThiC|unclassified	0.1058982040
+UniRef50_UPI00040BDDFC: hypothetical protein	0.1058966324
+UniRef50_UPI00040BDDFC: hypothetical protein|unclassified	0.1058966324
+UniRef50_A7NN67: Thioesterase superfamily protein	0.1058937416
+UniRef50_A7NN67: Thioesterase superfamily protein|unclassified	0.1058937416
+UniRef50_UPI00037CE404: hypothetical protein	0.1058875841
+UniRef50_UPI00037CE404: hypothetical protein|unclassified	0.1058875841
+UniRef50_UPI00040458A8: glyoxalase	0.1058853361
+UniRef50_UPI00040458A8: glyoxalase|unclassified	0.1058853361
+UniRef50_UPI000470EC36: glucose dehydrogenase	0.1058850075
+UniRef50_UPI000470EC36: glucose dehydrogenase|unclassified	0.1058850075
+UniRef50_Q92Y46: Peptide methionine sulfoxide reductase MsrB 2	0.1058813587
+UniRef50_Q92Y46: Peptide methionine sulfoxide reductase MsrB 2|unclassified	0.1058813587
+UniRef50_UPI000273BADC: PREDICTED: l-2-hydroxyglutarate dehydrogenase, mitochondrial-like	0.1058791423
+UniRef50_UPI000273BADC: PREDICTED: l-2-hydroxyglutarate dehydrogenase, mitochondrial-like|unclassified	0.1058791423
+UniRef50_M8Z586	0.1058719292
+UniRef50_M8Z586|unclassified	0.1058719292
+UniRef50_UPI0002490525: hypothetical protein	0.1058499695
+UniRef50_UPI0002490525: hypothetical protein|unclassified	0.1058499695
+UniRef50_D5QCK8	0.1058495993
+UniRef50_D5QCK8|unclassified	0.1058495993
+UniRef50_UPI000366ECAC: hypothetical protein	0.1058401536
+UniRef50_UPI000366ECAC: hypothetical protein|unclassified	0.1058401536
+UniRef50_D8TJY5	0.1058330676
+UniRef50_D8TJY5|unclassified	0.1058330676
+UniRef50_UPI0003B6D1EF: LysR family transcriptional regulator	0.1058323170
+UniRef50_UPI0003B6D1EF: LysR family transcriptional regulator|unclassified	0.1058323170
+UniRef50_UPI00036F7350: hypothetical protein	0.1058323107
+UniRef50_UPI00036F7350: hypothetical protein|unclassified	0.1058323107
+UniRef50_A0A058ZLI9	0.1058274792
+UniRef50_A0A058ZLI9|unclassified	0.1058274792
+UniRef50_K2GLY7	0.1058239948
+UniRef50_K2GLY7|unclassified	0.1058239948
+UniRef50_X0ZH12: Marine sediment metagenome DNA, contig: S01H4_C01423	0.1058200663
+UniRef50_X0ZH12: Marine sediment metagenome DNA, contig: S01H4_C01423|unclassified	0.1058200663
+UniRef50_X2H7T1	0.1058191368
+UniRef50_X2H7T1|unclassified	0.1058191368
+UniRef50_UPI000404EE01: 2,3-dihydroxy-2,3-dihydrophenylpropionate dehydrogenase	0.1058185356
+UniRef50_UPI000404EE01: 2,3-dihydroxy-2,3-dihydrophenylpropionate dehydrogenase|unclassified	0.1058185356
+UniRef50_Q0C3D1: Protoheme IX farnesyltransferase	0.1058072999
+UniRef50_Q0C3D1: Protoheme IX farnesyltransferase|unclassified	0.1058072999
+UniRef50_Q606Y2: Probable nicotinate-nucleotide adenylyltransferase	0.1058072049
+UniRef50_Q606Y2: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.1058072049
+UniRef50_W6Q2L7	0.1057941136
+UniRef50_W6Q2L7|unclassified	0.1057941136
+UniRef50_UPI0003B60DC6: MerR family transcriptional regulator	0.1057865230
+UniRef50_UPI0003B60DC6: MerR family transcriptional regulator|unclassified	0.1057865230
+UniRef50_UPI00047DCE6C: esterase	0.1057857277
+UniRef50_UPI00047DCE6C: esterase|unclassified	0.1057857277
+UniRef50_W5ITR2: Type 4 fimbrial biogenesis protein PilX	0.1057838982
+UniRef50_W5ITR2: Type 4 fimbrial biogenesis protein PilX|unclassified	0.1057838982
+UniRef50_B3DX55: Predicted phosphatase, Macro/Appr-1 family	0.1057823792
+UniRef50_B3DX55: Predicted phosphatase, Macro/Appr-1 family|unclassified	0.1057823792
+UniRef50_X1KBB4: Marine sediment metagenome DNA, contig: S06H3_C02316	0.1057772518
+UniRef50_X1KBB4: Marine sediment metagenome DNA, contig: S06H3_C02316|unclassified	0.1057772518
+UniRef50_UPI000364749D: hypothetical protein	0.1057761975
+UniRef50_UPI000364749D: hypothetical protein|unclassified	0.1057761975
+UniRef50_C5BRK0: Type 4 fimbrial biogenesis protein PilP	0.1057760399
+UniRef50_C5BRK0: Type 4 fimbrial biogenesis protein PilP|unclassified	0.1057760399
+UniRef50_I7A9N0: Alginate regulatory protein AlgP	0.1057760208
+UniRef50_I7A9N0: Alginate regulatory protein AlgP|unclassified	0.1057760208
+UniRef50_Q9LU86: Peroxiredoxin Q, chloroplastic	0.1057721070
+UniRef50_Q9LU86: Peroxiredoxin Q, chloroplastic|unclassified	0.1057721070
+UniRef50_W7Q1D4	0.1057663114
+UniRef50_W7Q1D4|unclassified	0.1057663114
+UniRef50_B2T6Y4: Short-chain dehydrogenase/reductase SDR	0.1057626849
+UniRef50_B2T6Y4: Short-chain dehydrogenase/reductase SDR|unclassified	0.1057626849
+UniRef50_D5AQ15	0.1057594909
+UniRef50_D5AQ15|unclassified	0.1057594909
+UniRef50_UPI0003B40397: NUDIX hydrolase	0.1057474457
+UniRef50_UPI0003B40397: NUDIX hydrolase|unclassified	0.1057474457
+UniRef50_UPI0004699662: aldehyde dehydrogenase	0.1057418281
+UniRef50_UPI0004699662: aldehyde dehydrogenase|unclassified	0.1057418281
+UniRef50_UPI000479E082: hypothetical protein	0.1057400834
+UniRef50_UPI000479E082: hypothetical protein|unclassified	0.1057400834
+UniRef50_UPI00026C8165: peptidase A8	0.1057289715
+UniRef50_UPI00026C8165: peptidase A8|unclassified	0.1057289715
+UniRef50_UPI0004785894: ATP-dependent DNA ligase	0.1057137792
+UniRef50_UPI0004785894: ATP-dependent DNA ligase|unclassified	0.1057137792
+UniRef50_W0AJW6	0.1057081482
+UniRef50_W0AJW6|unclassified	0.1057081482
+UniRef50_Q9PPV1: Energy-coupling factor transporter ATP-binding protein EcfA1	0.1057064979
+UniRef50_Q9PPV1: Energy-coupling factor transporter ATP-binding protein EcfA1|unclassified	0.1057064979
+UniRef50_A7HUJ4: AzlC family protein	0.1056951798
+UniRef50_A7HUJ4: AzlC family protein|unclassified	0.1056951798
+UniRef50_A8IM10: DedA family protein	0.1056947996
+UniRef50_A8IM10: DedA family protein|unclassified	0.1056947996
+UniRef50_A0L4V9: Holliday junction ATP-dependent DNA helicase RuvA	0.1056894007
+UniRef50_A0L4V9: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.1056894007
+UniRef50_UPI0003742405: hypothetical protein	0.1056853604
+UniRef50_UPI0003742405: hypothetical protein|unclassified	0.1056853604
+UniRef50_U7PIN9	0.1056805727
+UniRef50_U7PIN9|unclassified	0.1056805727
+UniRef50_X1I9H7: Marine sediment metagenome DNA, contig: S03H2_S25464	0.1056775813
+UniRef50_X1I9H7: Marine sediment metagenome DNA, contig: S03H2_S25464|unclassified	0.1056775813
+UniRef50_Q81FQ1: Histidinol-phosphate aminotransferase 1	0.1056751447
+UniRef50_Q81FQ1: Histidinol-phosphate aminotransferase 1|unclassified	0.1056751447
+UniRef50_UPI00037E5764: LysR family transcriptional regulator	0.1056740702
+UniRef50_UPI00037E5764: LysR family transcriptional regulator|unclassified	0.1056740702
+UniRef50_F2QGL2: Competence protein	0.1056729438
+UniRef50_F2QGL2: Competence protein|unclassified	0.1056729438
+UniRef50_H3MF18: Transposase insN for insertion sequence element IS911A	0.1056726494
+UniRef50_H3MF18: Transposase insN for insertion sequence element IS911A|unclassified	0.1056726494
+UniRef50_UPI0001A430ED: GCN5 family N-acetyltransferase	0.1056700058
+UniRef50_UPI0001A430ED: GCN5 family N-acetyltransferase|unclassified	0.1056700058
+UniRef50_UPI000359BF08: PREDICTED: trans-L-3-hydroxyproline dehydratase-like	0.1056629090
+UniRef50_UPI000359BF08: PREDICTED: trans-L-3-hydroxyproline dehydratase-like|unclassified	0.1056629090
+UniRef50_UPI0003810424: hypothetical protein	0.1056168110
+UniRef50_UPI0003810424: hypothetical protein|unclassified	0.1056168110
+UniRef50_R2M977	0.1056148856
+UniRef50_R2M977|unclassified	0.1056148856
+UniRef50_UPI00035FA1C3: hypothetical protein	0.1056085337
+UniRef50_UPI00035FA1C3: hypothetical protein|unclassified	0.1056085337
+UniRef50_UPI00028A3542: macrolide ABC transporter ATP-binding protein	0.1056067485
+UniRef50_UPI00028A3542: macrolide ABC transporter ATP-binding protein|unclassified	0.1056067485
+UniRef50_UPI00046F4540: hypothetical protein	0.1056017348
+UniRef50_UPI00046F4540: hypothetical protein|unclassified	0.1056017348
+UniRef50_V5I000: Putative u2 snrnp auxilliary factor	0.1056015072
+UniRef50_V5I000: Putative u2 snrnp auxilliary factor|unclassified	0.1056015072
+UniRef50_UPI00047C3DCE: hypothetical protein	0.1056010715
+UniRef50_UPI00047C3DCE: hypothetical protein|unclassified	0.1056010715
+UniRef50_Q7VKZ5: UPF0231 protein HD_1708	0.1055916938
+UniRef50_Q7VKZ5: UPF0231 protein HD_1708|unclassified	0.1055916938
+UniRef50_P19994: Methionine aminopeptidase 1	0.1055912342
+UniRef50_P19994: Methionine aminopeptidase 1|unclassified	0.1055912342
+UniRef50_UPI0002FA457F: hypothetical protein	0.1055878421
+UniRef50_UPI0002FA457F: hypothetical protein|unclassified	0.1055878421
+UniRef50_UPI00037471F4: hypothetical protein	0.1055849233
+UniRef50_UPI00037471F4: hypothetical protein|unclassified	0.1055849233
+UniRef50_Q9A176: Protein NrdI	0.1055829529
+UniRef50_Q9A176: Protein NrdI|unclassified	0.1055829529
+UniRef50_B0LU82: Putative plasmid transfer protein	0.1055807178
+UniRef50_B0LU82: Putative plasmid transfer protein|unclassified	0.1055807178
+UniRef50_F1Z9B9: Phage baseplate assembly protein	0.1055755802
+UniRef50_F1Z9B9: Phage baseplate assembly protein|unclassified	0.1055755802
+UniRef50_UPI00037F9DB1: hypothetical protein	0.1055702686
+UniRef50_UPI00037F9DB1: hypothetical protein|unclassified	0.1055702686
+UniRef50_UPI0003611D30: heat-shock protein	0.1055594369
+UniRef50_UPI0003611D30: heat-shock protein|unclassified	0.1055594369
+UniRef50_UPI0004760913: pyridoxal-5''-phosphate-dependent protein	0.1055576779
+UniRef50_UPI0004760913: pyridoxal-5''-phosphate-dependent protein|unclassified	0.1055576779
+UniRef50_UPI0001F85A78: UDP-N-acetylglucosamine:undecaprenyl-P N-acetylglucosaminyl-1-P transferase-like protein	0.1055544258
+UniRef50_UPI0001F85A78: UDP-N-acetylglucosamine:undecaprenyl-P N-acetylglucosaminyl-1-P transferase-like protein|unclassified	0.1055544258
+UniRef50_B2SUZ9: Proline/betaine transporter	0.1055523637
+UniRef50_B2SUZ9: Proline/betaine transporter|unclassified	0.1055523637
+UniRef50_UPI00029AD404: excinuclease ABC subunit C	0.1055446916
+UniRef50_UPI00029AD404: excinuclease ABC subunit C|unclassified	0.1055446916
+UniRef50_C7DCH7	0.1055410895
+UniRef50_C7DCH7|unclassified	0.1055410895
+UniRef50_UPI0003B6A2E7: peptide ABC transporter permease	0.1055410246
+UniRef50_UPI0003B6A2E7: peptide ABC transporter permease|unclassified	0.1055410246
+UniRef50_UPI00045EBD23: ribonuclease	0.1055265069
+UniRef50_UPI00045EBD23: ribonuclease|unclassified	0.1055265069
+UniRef50_N0DZB3: Secreted protein	0.1055209761
+UniRef50_N0DZB3: Secreted protein|unclassified	0.1055209761
+UniRef50_H0DTG3: Rib/alpha-like repeat protein (Fragment)	0.1055065823
+UniRef50_H0DTG3: Rib/alpha-like repeat protein (Fragment)|unclassified	0.1055065823
+UniRef50_A6FEF4	0.1055025617
+UniRef50_A6FEF4|unclassified	0.1055025617
+UniRef50_J2F7Q7: Tetratricopeptide repeat domain lipoprotein	0.1054866105
+UniRef50_J2F7Q7: Tetratricopeptide repeat domain lipoprotein|unclassified	0.1054866105
+UniRef50_UPI00042AEADF	0.1054851854
+UniRef50_UPI00042AEADF|unclassified	0.1054851854
+UniRef50_UPI00037CE245: hypothetical protein	0.1054847046
+UniRef50_UPI00037CE245: hypothetical protein|unclassified	0.1054847046
+UniRef50_I4CUQ3	0.1054796476
+UniRef50_I4CUQ3|unclassified	0.1054796476
+UniRef50_A0PPL6: Riboflavin biosynthesis protein RibBA	0.1054708655
+UniRef50_A0PPL6: Riboflavin biosynthesis protein RibBA|unclassified	0.1054708655
+UniRef50_UPI0003507274: PREDICTED: prolow-density lipoprotein receptor-related protein 1-like isoform X4	0.1054696319
+UniRef50_UPI0003507274: PREDICTED: prolow-density lipoprotein receptor-related protein 1-like isoform X4|unclassified	0.1054696319
+UniRef50_Q7TTY7: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha	0.1054648464
+UniRef50_Q7TTY7: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|unclassified	0.1054648464
+UniRef50_Q2C3P5: 2-octaprenyl-6-methoxyphenyl hydroxylase (Fragment)	0.1054613050
+UniRef50_Q2C3P5: 2-octaprenyl-6-methoxyphenyl hydroxylase (Fragment)|unclassified	0.1054613050
+UniRef50_UPI000374EDEA: hypothetical protein	0.1054576446
+UniRef50_UPI000374EDEA: hypothetical protein|unclassified	0.1054576446
+UniRef50_M7DZA5: Competence protein ComEC	0.1054533996
+UniRef50_M7DZA5: Competence protein ComEC|unclassified	0.1054533996
+UniRef50_UPI000262CED1: tryptophan synthase subunit alpha	0.1054509911
+UniRef50_UPI000262CED1: tryptophan synthase subunit alpha|unclassified	0.1054509911
+UniRef50_M9REX7: Lytic murein transglycosylase-like protein	0.1054483031
+UniRef50_M9REX7: Lytic murein transglycosylase-like protein|unclassified	0.1054483031
+UniRef50_D9QKP9: Flagellar FlaF family protein	0.1054463333
+UniRef50_D9QKP9: Flagellar FlaF family protein|unclassified	0.1054463333
+UniRef50_Q3A225: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	0.1054428838
+UniRef50_Q3A225: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.1054428838
+UniRef50_UPI0003F05B0E: PREDICTED: 5''''-nucleotidase-like	0.1054364827
+UniRef50_UPI0003F05B0E: PREDICTED: 5''''-nucleotidase-like|unclassified	0.1054364827
+UniRef50_UPI0003B6D53E: MarR family transcriptional regulator, partial	0.1054353162
+UniRef50_UPI0003B6D53E: MarR family transcriptional regulator, partial|unclassified	0.1054353162
+UniRef50_UPI000366BC2B: MULTISPECIES: hypothetical protein	0.1054267096
+UniRef50_UPI000366BC2B: MULTISPECIES: hypothetical protein|unclassified	0.1054267096
+UniRef50_A0A016RSJ2	0.1054192996
+UniRef50_A0A016RSJ2|unclassified	0.1054192996
+UniRef50_UPI00047C2EF7: molecular chaperone GroES	0.1054172760
+UniRef50_UPI00047C2EF7: molecular chaperone GroES|unclassified	0.1054172760
+UniRef50_T1ITL5	0.1054150265
+UniRef50_T1ITL5|unclassified	0.1054150265
+UniRef50_UPI0002629839: alpha-L-rhamnosidase	0.1054066764
+UniRef50_UPI0002629839: alpha-L-rhamnosidase|unclassified	0.1054066764
+UniRef50_I0LGS3	0.1054050748
+UniRef50_I0LGS3|unclassified	0.1054050748
+UniRef50_UPI0003B43998: tyrosine recombinase XerC	0.1053979179
+UniRef50_UPI0003B43998: tyrosine recombinase XerC|unclassified	0.1053979179
+UniRef50_UPI00036E78B5: MULTISPECIES: GntR family transcriptional regulator	0.1053951491
+UniRef50_UPI00036E78B5: MULTISPECIES: GntR family transcriptional regulator|unclassified	0.1053951491
+UniRef50_J3QJE1	0.1053948935
+UniRef50_J3QJE1|unclassified	0.1053948935
+UniRef50_UPI0004714BA7: hypothetical protein	0.1053878258
+UniRef50_UPI0004714BA7: hypothetical protein|unclassified	0.1053878258
+UniRef50_B2TLG7: Sugar ABC transporter periplasmic protein	0.1053867213
+UniRef50_B2TLG7: Sugar ABC transporter periplasmic protein|unclassified	0.1053867213
+UniRef50_UPI00039CF99B: ketol-acid reductoisomerase	0.1053784130
+UniRef50_UPI00039CF99B: ketol-acid reductoisomerase|unclassified	0.1053784130
+UniRef50_R7VGM6	0.1053685146
+UniRef50_R7VGM6|unclassified	0.1053685146
+UniRef50_D8TH92	0.1053664712
+UniRef50_D8TH92|unclassified	0.1053664712
+UniRef50_I4DAI0	0.1053652143
+UniRef50_I4DAI0|unclassified	0.1053652143
+UniRef50_Q0AVU0: tRNA N6-adenosine threonylcarbamoyltransferase	0.1053506799
+UniRef50_Q0AVU0: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.1053506799
+UniRef50_B4RCD6: Glutamate racemase	0.1053441649
+UniRef50_B4RCD6: Glutamate racemase|unclassified	0.1053441649
+UniRef50_Q0RAY9: Putative GntR-family transcriptional regulator	0.1053427926
+UniRef50_Q0RAY9: Putative GntR-family transcriptional regulator|unclassified	0.1053427926
+UniRef50_A1W1W9: 3-isopropylmalate dehydratase small subunit	0.1053425654
+UniRef50_A1W1W9: 3-isopropylmalate dehydratase small subunit|unclassified	0.1053425654
+UniRef50_UPI0003618644: hypothetical protein	0.1053379530
+UniRef50_UPI0003618644: hypothetical protein|unclassified	0.1053379530
+UniRef50_UPI000455F8BC: alcohol oxidase	0.1053335663
+UniRef50_UPI000455F8BC: alcohol oxidase|unclassified	0.1053335663
+UniRef50_A1V7S2	0.1053312904
+UniRef50_A1V7S2|unclassified	0.1053312904
+UniRef50_UPI00047D9BCF: hypothetical protein	0.1053168715
+UniRef50_UPI00047D9BCF: hypothetical protein|unclassified	0.1053168715
+UniRef50_K7U7E4	0.1053076882
+UniRef50_K7U7E4|unclassified	0.1053076882
+UniRef50_UPI0002D75935: RNA methyltransferase	0.1053063205
+UniRef50_UPI0002D75935: RNA methyltransferase|unclassified	0.1053063205
+UniRef50_B4RIZ8	0.1053041549
+UniRef50_B4RIZ8|unclassified	0.1053041549
+UniRef50_M9X594: Inner membrane protein YjjP	0.1053008809
+UniRef50_M9X594: Inner membrane protein YjjP|unclassified	0.1053008809
+UniRef50_UPI00031CC932: hypothetical protein	0.1052954081
+UniRef50_UPI00031CC932: hypothetical protein|unclassified	0.1052954081
+UniRef50_UPI000369982C: hypothetical protein	0.1052929632
+UniRef50_UPI000369982C: hypothetical protein|unclassified	0.1052929632
+UniRef50_UPI0002555737: putative metallo-dependent hydrolase	0.1052924935
+UniRef50_UPI0002555737: putative metallo-dependent hydrolase|unclassified	0.1052924935
+UniRef50_W1WGR4: Protein ArsC 1 (Fragment)	0.1052920326
+UniRef50_W1WGR4: Protein ArsC 1 (Fragment)|unclassified	0.1052920326
+UniRef50_UPI0002631405: anaerobic dehydrogenase iron-sulfur binding subunit 1, partial	0.1052862465
+UniRef50_UPI0002631405: anaerobic dehydrogenase iron-sulfur binding subunit 1, partial|unclassified	0.1052862465
+UniRef50_UPI0004655119: hypothetical protein	0.1052817817
+UniRef50_UPI0004655119: hypothetical protein|unclassified	0.1052817817
+UniRef50_UPI0003B41AD5: Crp/Fnr family transcriptional regulator	0.1052636140
+UniRef50_UPI0003B41AD5: Crp/Fnr family transcriptional regulator|unclassified	0.1052636140
+UniRef50_Q9SMC2: Acetolactate synthase small subunit 1, chloroplastic	0.1052606675
+UniRef50_Q9SMC2: Acetolactate synthase small subunit 1, chloroplastic|unclassified	0.1052606675
+UniRef50_UPI0003B6FEDB: chemotaxis protein CheR	0.1052512588
+UniRef50_UPI0003B6FEDB: chemotaxis protein CheR|unclassified	0.1052512588
+UniRef50_UPI000310D2B7: hypothetical protein	0.1052447728
+UniRef50_UPI000310D2B7: hypothetical protein|unclassified	0.1052447728
+UniRef50_L8E597: Na(+)/H(+) antiporter subunit A	0.1052445094
+UniRef50_L8E597: Na(+)/H(+) antiporter subunit A|unclassified	0.1052445094
+UniRef50_F7ZIK9	0.1052385497
+UniRef50_F7ZIK9|unclassified	0.1052385497
+UniRef50_B1J432: Methionyl-tRNA formyltransferase	0.1052319671
+UniRef50_B1J432: Methionyl-tRNA formyltransferase|unclassified	0.1052319671
+UniRef50_UPI000360DE9E: hypothetical protein, partial	0.1052299878
+UniRef50_UPI000360DE9E: hypothetical protein, partial|unclassified	0.1052299878
+UniRef50_L0H0T8: Bacterial lipocalin	0.1052288203
+UniRef50_L0H0T8: Bacterial lipocalin|unclassified	0.1052288203
+UniRef50_UPI000329AF58: PREDICTED: HTH-type transcriptional regulator TdcA-like	0.1052274520
+UniRef50_UPI000329AF58: PREDICTED: HTH-type transcriptional regulator TdcA-like|unclassified	0.1052274520
+UniRef50_D1B950: Pyridoxal-5'-phosphate-dependent protein beta subunit	0.1052269513
+UniRef50_D1B950: Pyridoxal-5'-phosphate-dependent protein beta subunit|unclassified	0.1052269513
+UniRef50_Q89L02: 5'-nucleotidase SurE	0.1052236128
+UniRef50_Q89L02: 5'-nucleotidase SurE|unclassified	0.1052236128
+UniRef50_E6TZY0: Sporulation protein YyaC	0.1052173339
+UniRef50_E6TZY0: Sporulation protein YyaC|unclassified	0.1052173339
+UniRef50_UPI00037B97F0: hypothetical protein	0.1052169463
+UniRef50_UPI00037B97F0: hypothetical protein|unclassified	0.1052169463
+UniRef50_UPI0004637120: XRE family transcriptional regulator	0.1051934572
+UniRef50_UPI0004637120: XRE family transcriptional regulator|unclassified	0.1051934572
+UniRef50_UPI000375CE7A: hypothetical protein	0.1051934460
+UniRef50_UPI000375CE7A: hypothetical protein|unclassified	0.1051934460
+UniRef50_F9L4Q8	0.1051900144
+UniRef50_F9L4Q8|unclassified	0.1051900144
+UniRef50_L0GUF0	0.1051842810
+UniRef50_L0GUF0|unclassified	0.1051842810
+UniRef50_UPI0003725EB6: hypothetical protein	0.1051752566
+UniRef50_UPI0003725EB6: hypothetical protein|unclassified	0.1051752566
+UniRef50_I3TH40: Aromatic compounds catabolic protein	0.1051551889
+UniRef50_I3TH40: Aromatic compounds catabolic protein|unclassified	0.1051551889
+UniRef50_UPI000400CC1D: hypothetical protein	0.1051490023
+UniRef50_UPI000400CC1D: hypothetical protein|unclassified	0.1051490023
+UniRef50_UPI00037ECD4A: hypothetical protein	0.1051487219
+UniRef50_UPI00037ECD4A: hypothetical protein|unclassified	0.1051487219
+UniRef50_Z2DKU3: Signal peptide protein	0.1051439632
+UniRef50_Z2DKU3: Signal peptide protein|unclassified	0.1051439632
+UniRef50_Q7R766	0.1051281522
+UniRef50_Q7R766|unclassified	0.1051281522
+UniRef50_F9PRT4: Transcriptional regulator NrdR domain protein	0.1051217910
+UniRef50_F9PRT4: Transcriptional regulator NrdR domain protein|unclassified	0.1051217910
+UniRef50_H9JDJ5	0.1051129928
+UniRef50_H9JDJ5|unclassified	0.1051129928
+UniRef50_X0X4Z6: Marine sediment metagenome DNA, contig: S01H1_S32505 (Fragment)	0.1051047529
+UniRef50_X0X4Z6: Marine sediment metagenome DNA, contig: S01H1_S32505 (Fragment)|unclassified	0.1051047529
+UniRef50_E9HFK3	0.1050999967
+UniRef50_E9HFK3|unclassified	0.1050999967
+UniRef50_UPI0003B73BF6: acetylornithine deacetylase	0.1050955103
+UniRef50_UPI0003B73BF6: acetylornithine deacetylase|unclassified	0.1050955103
+UniRef50_UPI000469BD17: hypothetical protein	0.1050940919
+UniRef50_UPI000469BD17: hypothetical protein|unclassified	0.1050940919
+UniRef50_UPI00042A0A28: hypothetical protein	0.1050932616
+UniRef50_UPI00042A0A28: hypothetical protein|unclassified	0.1050932616
+UniRef50_G4R6Y9	0.1050776308
+UniRef50_G4R6Y9|unclassified	0.1050776308
+UniRef50_P64248: Putative asparagine synthetase [glutamine-hydrolyzing]	0.1050772849
+UniRef50_P64248: Putative asparagine synthetase [glutamine-hydrolyzing]|unclassified	0.1050772849
+UniRef50_UPI00030D70F5: hypothetical protein	0.1050751259
+UniRef50_UPI00030D70F5: hypothetical protein|unclassified	0.1050751259
+UniRef50_R8AX56	0.1050599710
+UniRef50_R8AX56|unclassified	0.1050599710
+UniRef50_M7MSG6: Putative metal ABC transporter metal-binding protein	0.1050569353
+UniRef50_M7MSG6: Putative metal ABC transporter metal-binding protein|unclassified	0.1050569353
+UniRef50_B3DVJ6: 6-pyruvoyl-tetrahydropterin synthase	0.1050566443
+UniRef50_B3DVJ6: 6-pyruvoyl-tetrahydropterin synthase|unclassified	0.1050566443
+UniRef50_B9JX75	0.1050559618
+UniRef50_B9JX75|unclassified	0.1050559618
+UniRef50_UPI0003B6910D: hypothetical protein	0.1050522529
+UniRef50_UPI0003B6910D: hypothetical protein|unclassified	0.1050522529
+UniRef50_W8V9T5	0.1050499513
+UniRef50_W8V9T5|unclassified	0.1050499513
+UniRef50_UPI000440A3D3: PREDICTED: ornithine carbamoyltransferase, mitochondrial	0.1050472959
+UniRef50_UPI000440A3D3: PREDICTED: ornithine carbamoyltransferase, mitochondrial|unclassified	0.1050472959
+UniRef50_UPI00037D6EB5: hypothetical protein	0.1050445465
+UniRef50_UPI00037D6EB5: hypothetical protein|unclassified	0.1050445465
+UniRef50_G8AGM3	0.1050288469
+UniRef50_G8AGM3|unclassified	0.1050288469
+UniRef50_B2IKW1: Ribosomal RNA large subunit methyltransferase H	0.1050251652
+UniRef50_B2IKW1: Ribosomal RNA large subunit methyltransferase H|unclassified	0.1050251652
+UniRef50_X1UAZ5: Marine sediment metagenome DNA, contig: S12H4_S02556	0.1050198970
+UniRef50_X1UAZ5: Marine sediment metagenome DNA, contig: S12H4_S02556|unclassified	0.1050198970
+UniRef50_Q1ATA6: Peptidase M23B	0.1050179165
+UniRef50_Q1ATA6: Peptidase M23B|unclassified	0.1050179165
+UniRef50_U5LFC8	0.1050163700
+UniRef50_U5LFC8|unclassified	0.1050163700
+UniRef50_UPI000382DF18: hypothetical protein	0.1050132792
+UniRef50_UPI000382DF18: hypothetical protein|unclassified	0.1050132792
+UniRef50_UPI0003B30D52: hypothetical protein	0.1050120768
+UniRef50_UPI0003B30D52: hypothetical protein|unclassified	0.1050120768
+UniRef50_UPI00029A41E2: hypothetical protein	0.1050090832
+UniRef50_UPI00029A41E2: hypothetical protein|unclassified	0.1050090832
+UniRef50_Q2RYZ8: Glyoxalase family protein	0.1050045993
+UniRef50_Q2RYZ8: Glyoxalase family protein|unclassified	0.1050045993
+UniRef50_UPI0003959B2A: peptide synthetase, partial	0.1050038994
+UniRef50_UPI0003959B2A: peptide synthetase, partial|unclassified	0.1050038994
+UniRef50_Q8TDQ7: Glucosamine-6-phosphate isomerase 2	0.1050020765
+UniRef50_Q8TDQ7: Glucosamine-6-phosphate isomerase 2|unclassified	0.1050020765
+UniRef50_C0ZRY7	0.1050019350
+UniRef50_C0ZRY7|unclassified	0.1050019350
+UniRef50_X5ELR5: Metallo-beta-lactamase superfamily protein	0.1050006799
+UniRef50_X5ELR5: Metallo-beta-lactamase superfamily protein|unclassified	0.1050006799
+UniRef50_UPI00036B7C63: hypothetical protein	0.1049956047
+UniRef50_UPI00036B7C63: hypothetical protein|unclassified	0.1049956047
+UniRef50_UPI00035DBD49: hypothetical protein	0.1049919858
+UniRef50_UPI00035DBD49: hypothetical protein|unclassified	0.1049919858
+UniRef50_UPI00028920DA: branched-chain amino acid ABC transporter substrate-binding protein	0.1049885571
+UniRef50_UPI00028920DA: branched-chain amino acid ABC transporter substrate-binding protein|unclassified	0.1049885571
+UniRef50_UPI0003B6FB5D: sugar ABC transporter permease, partial	0.1049831317
+UniRef50_UPI0003B6FB5D: sugar ABC transporter permease, partial|unclassified	0.1049831317
+UniRef50_UPI00046FDA1A: hypothetical protein	0.1049808685
+UniRef50_UPI00046FDA1A: hypothetical protein|unclassified	0.1049808685
+UniRef50_U1QU88: Rhamnan synthesis protein F	0.1049770517
+UniRef50_U1QU88: Rhamnan synthesis protein F|unclassified	0.1049770517
+UniRef50_UPI00035F32BF: hypothetical protein	0.1049554872
+UniRef50_UPI00035F32BF: hypothetical protein|unclassified	0.1049554872
+UniRef50_F0BKV3	0.1049553192
+UniRef50_F0BKV3|unclassified	0.1049553192
+UniRef50_T2DMB0	0.1049531435
+UniRef50_T2DMB0|unclassified	0.1049531435
+UniRef50_UPI00041D5BF9: transcription termination factor Rho	0.1049467550
+UniRef50_UPI00041D5BF9: transcription termination factor Rho|unclassified	0.1049467550
+UniRef50_X7FB65	0.1049332279
+UniRef50_X7FB65|unclassified	0.1049332279
+UniRef50_W5YH74	0.1049286481
+UniRef50_W5YH74|unclassified	0.1049286481
+UniRef50_R4Z5X8	0.1049173601
+UniRef50_R4Z5X8|unclassified	0.1049173601
+UniRef50_Q7MT64: Metallo-beta-lactamase superfamily protein	0.1049132718
+UniRef50_Q7MT64: Metallo-beta-lactamase superfamily protein|unclassified	0.1049132718
+UniRef50_A0A016MI86: Cna B-type domain protein (Fragment)	0.1049123378
+UniRef50_A0A016MI86: Cna B-type domain protein (Fragment)|unclassified	0.1049123378
+UniRef50_UPI000255A6F3: DNA topology modulation kinase FlaR	0.1049114461
+UniRef50_UPI000255A6F3: DNA topology modulation kinase FlaR|unclassified	0.1049114461
+UniRef50_UPI000237A937: two-component hybrid sensor and regulator	0.1049064093
+UniRef50_UPI000237A937: two-component hybrid sensor and regulator|unclassified	0.1049064093
+UniRef50_B0T860	0.1049035537
+UniRef50_B0T860|unclassified	0.1049035537
+UniRef50_I9KNG7	0.1048843103
+UniRef50_I9KNG7|unclassified	0.1048843103
+UniRef50_UPI000374949F: hypothetical protein	0.1048773247
+UniRef50_UPI000374949F: hypothetical protein|unclassified	0.1048773247
+UniRef50_UPI0004643BFA: hypothetical protein	0.1048686496
+UniRef50_UPI0004643BFA: hypothetical protein|unclassified	0.1048686496
+UniRef50_A0A012LJX4: PTS system mannitol-specific EIICB component	0.1048678163
+UniRef50_A0A012LJX4: PTS system mannitol-specific EIICB component|unclassified	0.1048678163
+UniRef50_UPI000362D519: hypothetical protein	0.1048677642
+UniRef50_UPI000362D519: hypothetical protein|unclassified	0.1048677642
+UniRef50_UPI00036CC2E4: hypothetical protein	0.1048666861
+UniRef50_UPI00036CC2E4: hypothetical protein|unclassified	0.1048666861
+UniRef50_O57711: S-adenosylmethionine decarboxylase proenzyme	0.1048642486
+UniRef50_O57711: S-adenosylmethionine decarboxylase proenzyme|unclassified	0.1048642486
+UniRef50_X6KYR9	0.1048626309
+UniRef50_X6KYR9|unclassified	0.1048626309
+UniRef50_UPI0003702326: hypothetical protein	0.1048599874
+UniRef50_UPI0003702326: hypothetical protein|unclassified	0.1048599874
+UniRef50_UPI0004668FDC: hypothetical protein	0.1048581940
+UniRef50_UPI0004668FDC: hypothetical protein|unclassified	0.1048581940
+UniRef50_T0IZV0	0.1048581809
+UniRef50_T0IZV0|unclassified	0.1048581809
+UniRef50_UPI00037EEBFC: hypothetical protein	0.1048538836
+UniRef50_UPI00037EEBFC: hypothetical protein|unclassified	0.1048538836
+UniRef50_UPI00047156EA: hypothetical protein	0.1048502349
+UniRef50_UPI00047156EA: hypothetical protein|unclassified	0.1048502349
+UniRef50_UPI00037CD073: hypothetical protein, partial	0.1048500435
+UniRef50_UPI00037CD073: hypothetical protein, partial|unclassified	0.1048500435
+UniRef50_UPI00045EC6EB: hypothetical protein	0.1048445247
+UniRef50_UPI00045EC6EB: hypothetical protein|unclassified	0.1048445247
+UniRef50_E6WEP7	0.1048439574
+UniRef50_E6WEP7|unclassified	0.1048439574
+UniRef50_K1W3I9	0.1048406319
+UniRef50_K1W3I9|unclassified	0.1048406319
+UniRef50_UPI0003B4F453: uridine/cytidine kinase	0.1048368739
+UniRef50_UPI0003B4F453: uridine/cytidine kinase|unclassified	0.1048368739
+UniRef50_Q5FM02: Thymidylate kinase	0.1048343074
+UniRef50_Q5FM02: Thymidylate kinase|unclassified	0.1048343074
+UniRef50_K0PV64: Heat shock protein Hsp20	0.1048339632
+UniRef50_K0PV64: Heat shock protein Hsp20|unclassified	0.1048339632
+UniRef50_UPI000472C76A: D-ribose transporter ATP-binding protein	0.1048294230
+UniRef50_UPI000472C76A: D-ribose transporter ATP-binding protein|unclassified	0.1048294230
+UniRef50_Q9I3N7: Cytochrome c biogenesis ATP-binding export protein CcmA	0.1048237258
+UniRef50_Q9I3N7: Cytochrome c biogenesis ATP-binding export protein CcmA|unclassified	0.1048237258
+UniRef50_UPI000388B9FD: PREDICTED: taperin	0.1048202812
+UniRef50_UPI000388B9FD: PREDICTED: taperin|unclassified	0.1048202812
+UniRef50_UPI000474A6D9: hypothetical protein, partial	0.1048185544
+UniRef50_UPI000474A6D9: hypothetical protein, partial|unclassified	0.1048185544
+UniRef50_B3EWG9: NAD(+) ADP-ribosyltransferase (Fragments)	0.1048148760
+UniRef50_B3EWG9: NAD(+) ADP-ribosyltransferase (Fragments)|unclassified	0.1048148760
+UniRef50_A3XAQ3	0.1048122234
+UniRef50_A3XAQ3|unclassified	0.1048122234
+UniRef50_A0A059KIS0	0.1048069817
+UniRef50_A0A059KIS0|unclassified	0.1048069817
+UniRef50_M7N8T2	0.1047886951
+UniRef50_M7N8T2|unclassified	0.1047886951
+UniRef50_UPI000473B1AA: hypothetical protein	0.1047878066
+UniRef50_UPI000473B1AA: hypothetical protein|unclassified	0.1047878066
+UniRef50_Q8XK20: Putative ABC transporter ATP-binding protein CPE1583	0.1047839403
+UniRef50_Q8XK20: Putative ABC transporter ATP-binding protein CPE1583|unclassified	0.1047839403
+UniRef50_A4ELH6: Sarcosine oxidase, gamma subunit family protein	0.1047649067
+UniRef50_A4ELH6: Sarcosine oxidase, gamma subunit family protein|unclassified	0.1047649067
+UniRef50_UPI000464AC57: ATPase	0.1047615686
+UniRef50_UPI000464AC57: ATPase|unclassified	0.1047615686
+UniRef50_UPI00037268A2: acetyl-CoA hydrolase, partial	0.1047502691
+UniRef50_UPI00037268A2: acetyl-CoA hydrolase, partial|unclassified	0.1047502691
+UniRef50_Q07417: Short-chain specific acyl-CoA dehydrogenase, mitochondrial	0.1047487006
+UniRef50_Q07417: Short-chain specific acyl-CoA dehydrogenase, mitochondrial|unclassified	0.1047487006
+UniRef50_UPI00037F0FC3: hypothetical protein	0.1047486943
+UniRef50_UPI00037F0FC3: hypothetical protein|unclassified	0.1047486943
+UniRef50_L4ZNB9	0.1047478751
+UniRef50_L4ZNB9|unclassified	0.1047478751
+UniRef50_UPI00026C7458: uridylate kinase	0.1047302409
+UniRef50_UPI00026C7458: uridylate kinase|unclassified	0.1047302409
+UniRef50_A3VI27	0.1047246831
+UniRef50_A3VI27|unclassified	0.1047246831
+UniRef50_Q6MZ26: Methylocystis strain SC2 clone, complete sequence	0.1047237851
+UniRef50_Q6MZ26: Methylocystis strain SC2 clone, complete sequence|unclassified	0.1047237851
+UniRef50_UPI000477C053: transposase	0.1047188899
+UniRef50_UPI000477C053: transposase|unclassified	0.1047188899
+UniRef50_UPI0003686798: hypothetical protein	0.1047188369
+UniRef50_UPI0003686798: hypothetical protein|unclassified	0.1047188369
+UniRef50_UPI000364414D: hypothetical protein	0.1047121223
+UniRef50_UPI000364414D: hypothetical protein|unclassified	0.1047121223
+UniRef50_G1PYT8	0.1047011976
+UniRef50_G1PYT8|unclassified	0.1047011976
+UniRef50_Q1Q846: Ribosomal RNA small subunit methyltransferase H	0.1046964265
+UniRef50_Q1Q846: Ribosomal RNA small subunit methyltransferase H|unclassified	0.1046964265
+UniRef50_G4RBC7: Zinc-finger protein	0.1046916349
+UniRef50_G4RBC7: Zinc-finger protein|unclassified	0.1046916349
+UniRef50_UPI000472AE73: MFS transporter	0.1046831900
+UniRef50_UPI000472AE73: MFS transporter|unclassified	0.1046831900
+UniRef50_UPI0004128B66: MULTISPECIES: carbon monoxide dehydrogenase	0.1046793410
+UniRef50_UPI0004128B66: MULTISPECIES: carbon monoxide dehydrogenase|unclassified	0.1046793410
+UniRef50_D7DI05	0.1046660138
+UniRef50_D7DI05|unclassified	0.1046660138
+UniRef50_B2S1L1: Holliday junction ATP-dependent DNA helicase RuvB	0.1046488845
+UniRef50_B2S1L1: Holliday junction ATP-dependent DNA helicase RuvB|unclassified	0.1046488845
+UniRef50_UPI00029B44FF: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.1046291339
+UniRef50_UPI00029B44FF: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.1046291339
+UniRef50_UPI00046A2E06: hypothetical protein	0.1046250551
+UniRef50_UPI00046A2E06: hypothetical protein|unclassified	0.1046250551
+UniRef50_H9JYY1	0.1046206668
+UniRef50_H9JYY1|unclassified	0.1046206668
+UniRef50_Q2S2B5: Putative 3-methyladenine DNA glycosylase	0.1046050251
+UniRef50_Q2S2B5: Putative 3-methyladenine DNA glycosylase|unclassified	0.1046050251
+UniRef50_UPI000473EB9F: mannose-1-phosphate guanyltransferase	0.1046029426
+UniRef50_UPI000473EB9F: mannose-1-phosphate guanyltransferase|unclassified	0.1046029426
+UniRef50_UPI00037146D6: hypothetical protein	0.1045989578
+UniRef50_UPI00037146D6: hypothetical protein|unclassified	0.1045989578
+UniRef50_UPI00047719E6: sugar ABC transporter permease	0.1045966816
+UniRef50_UPI00047719E6: sugar ABC transporter permease|unclassified	0.1045966816
+UniRef50_H1D894	0.1045841837
+UniRef50_H1D894|unclassified	0.1045841837
+UniRef50_P56860: Phosphoadenosine phosphosulfate reductase	0.1045740552
+UniRef50_P56860: Phosphoadenosine phosphosulfate reductase|unclassified	0.1045740552
+UniRef50_E6V9Y0: Thioesterase superfamily protein	0.1045719298
+UniRef50_E6V9Y0: Thioesterase superfamily protein|unclassified	0.1045719298
+UniRef50_UPI0004785E18: serine/threonine protein phosphatase	0.1045664804
+UniRef50_UPI0004785E18: serine/threonine protein phosphatase|unclassified	0.1045664804
+UniRef50_Q9KPV9: Putative zinc metalloprotease VC_2253	0.1045593098
+UniRef50_Q9KPV9: Putative zinc metalloprotease VC_2253|unclassified	0.1045593098
+UniRef50_P33691: Succinoglycan biosynthesis protein ExoA	0.1045510279
+UniRef50_P33691: Succinoglycan biosynthesis protein ExoA|unclassified	0.1045510279
+UniRef50_UPI00046532CF: hypothetical protein	0.1045428687
+UniRef50_UPI00046532CF: hypothetical protein|unclassified	0.1045428687
+UniRef50_UPI0004664885: macrolide ABC transporter ATP-binding protein	0.1045346967
+UniRef50_UPI0004664885: macrolide ABC transporter ATP-binding protein|unclassified	0.1045346967
+UniRef50_Q3SM81: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE	0.1045337507
+UniRef50_Q3SM81: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE|unclassified	0.1045337507
+UniRef50_UPI00046A749F: hypothetical protein	0.1045286895
+UniRef50_UPI00046A749F: hypothetical protein|unclassified	0.1045286895
+UniRef50_UPI0002EB1983: hypothetical protein	0.1045275434
+UniRef50_UPI0002EB1983: hypothetical protein|unclassified	0.1045275434
+UniRef50_F7X1Y1	0.1045196894
+UniRef50_F7X1Y1|unclassified	0.1045196894
+UniRef50_R9C3D2: Dynamin family protein	0.1045105601
+UniRef50_R9C3D2: Dynamin family protein|unclassified	0.1045105601
+UniRef50_UPI000376312F: hypothetical protein	0.1045086970
+UniRef50_UPI000376312F: hypothetical protein|unclassified	0.1045086970
+UniRef50_UPI00036EAAAD: hypothetical protein	0.1045072356
+UniRef50_UPI00036EAAAD: hypothetical protein|unclassified	0.1045072356
+UniRef50_Q73VG0: LigA	0.1045063927
+UniRef50_Q73VG0: LigA|unclassified	0.1045063927
+UniRef50_UPI00034CA4EE: hypothetical protein	0.1045063275
+UniRef50_UPI00034CA4EE: hypothetical protein|unclassified	0.1045063275
+UniRef50_UPI0003C18A6E: PREDICTED: putative phospho-2-dehydro-3-deoxyheptonate aldolase-like	0.1045029277
+UniRef50_UPI0003C18A6E: PREDICTED: putative phospho-2-dehydro-3-deoxyheptonate aldolase-like|unclassified	0.1045029277
+UniRef50_UPI0002FBDCEC: hypothetical protein	0.1045025926
+UniRef50_UPI0002FBDCEC: hypothetical protein|unclassified	0.1045025926
+UniRef50_UPI00036684BD: 50S ribosomal protein L22	0.1045011880
+UniRef50_UPI00036684BD: 50S ribosomal protein L22|unclassified	0.1045011880
+UniRef50_M1YGF3	0.1044997169
+UniRef50_M1YGF3|unclassified	0.1044997169
+UniRef50_W4KNZ7	0.1044920010
+UniRef50_W4KNZ7|unclassified	0.1044920010
+UniRef50_UPI0003FDA402: ABC transporter	0.1044907994
+UniRef50_UPI0003FDA402: ABC transporter|unclassified	0.1044907994
+UniRef50_UPI000410322D: hypothetical protein	0.1044906209
+UniRef50_UPI000410322D: hypothetical protein|unclassified	0.1044906209
+UniRef50_W4HIJ8	0.1044895423
+UniRef50_W4HIJ8|unclassified	0.1044895423
+UniRef50_UPI0002195D67: branched-chain amino acid transporter II carrier protein	0.1044892666
+UniRef50_UPI0002195D67: branched-chain amino acid transporter II carrier protein|unclassified	0.1044892666
+UniRef50_X7E5X4	0.1044834774
+UniRef50_X7E5X4|unclassified	0.1044834774
+UniRef50_UPI00047176C5: hypothetical protein	0.1044809413
+UniRef50_UPI00047176C5: hypothetical protein|unclassified	0.1044809413
+UniRef50_UPI000299D484: 23S rRNA methyltransferase	0.1044775122
+UniRef50_UPI000299D484: 23S rRNA methyltransferase|unclassified	0.1044775122
+UniRef50_UPI000382DFA2: hypothetical protein	0.1044667101
+UniRef50_UPI000382DFA2: hypothetical protein|unclassified	0.1044667101
+UniRef50_UPI00034A1580: hypothetical protein	0.1044657939
+UniRef50_UPI00034A1580: hypothetical protein|unclassified	0.1044657939
+UniRef50_C8N749	0.1044630825
+UniRef50_C8N749|unclassified	0.1044630825
+UniRef50_E5CUY1: Putative perfringolysin O regulator protein	0.1044541473
+UniRef50_E5CUY1: Putative perfringolysin O regulator protein|unclassified	0.1044541473
+UniRef50_A3QDX8: Dihydroorotate dehydrogenase (quinone)	0.1044521656
+UniRef50_A3QDX8: Dihydroorotate dehydrogenase (quinone)|unclassified	0.1044521656
+UniRef50_K1VAT6	0.1044503200
+UniRef50_K1VAT6|unclassified	0.1044503200
+UniRef50_R4NRW2: Late competence protein ComGD, access of DNA to ComEA	0.1044438664
+UniRef50_R4NRW2: Late competence protein ComGD, access of DNA to ComEA|unclassified	0.1044438664
+UniRef50_UPI00035C1564: hypothetical protein, partial	0.1044381573
+UniRef50_UPI00035C1564: hypothetical protein, partial|unclassified	0.1044381573
+UniRef50_Q5KXX0: CCA-adding enzyme	0.1044210662
+UniRef50_Q5KXX0: CCA-adding enzyme|unclassified	0.1044210662
+UniRef50_UPI0002485CB9: membrane protein	0.1044175352
+UniRef50_UPI0002485CB9: membrane protein|unclassified	0.1044175352
+UniRef50_Q2W3G2	0.1044114954
+UniRef50_Q2W3G2|unclassified	0.1044114954
+UniRef50_U5EBN0	0.1044093173
+UniRef50_U5EBN0|unclassified	0.1044093173
+UniRef50_UPI0003B59785: transcriptional regulator	0.1044018960
+UniRef50_UPI0003B59785: transcriptional regulator|unclassified	0.1044018960
+UniRef50_A9H3A6: RNA pyrophosphohydrolase	0.1044009780
+UniRef50_A9H3A6: RNA pyrophosphohydrolase|unclassified	0.1044009780
+UniRef50_UPI000371A7D4: hypothetical protein, partial	0.1044002166
+UniRef50_UPI000371A7D4: hypothetical protein, partial|unclassified	0.1044002166
+UniRef50_S3CWX5	0.1043927274
+UniRef50_S3CWX5|unclassified	0.1043927274
+UniRef50_UPI00027394DC	0.1043901171
+UniRef50_UPI00027394DC|unclassified	0.1043901171
+UniRef50_UPI000417CB65: hypothetical protein	0.1043862111
+UniRef50_UPI000417CB65: hypothetical protein|unclassified	0.1043862111
+UniRef50_UPI0003B525E9: hypothetical protein	0.1043812734
+UniRef50_UPI0003B525E9: hypothetical protein|unclassified	0.1043812734
+UniRef50_Q74CZ3: Adenine phosphoribosyltransferase	0.1043784743
+UniRef50_Q74CZ3: Adenine phosphoribosyltransferase|unclassified	0.1043784743
+UniRef50_UPI00034CAA3F: peptidase M23	0.1043781176
+UniRef50_UPI00034CAA3F: peptidase M23|unclassified	0.1043781176
+UniRef50_E3ZMP6: Cell surface protein	0.1043755448
+UniRef50_E3ZMP6: Cell surface protein|unclassified	0.1043755448
+UniRef50_E0MJ21	0.1043737841
+UniRef50_E0MJ21|unclassified	0.1043737841
+UniRef50_Q0BVB3: Phosphatidylserine decarboxylase proenzyme	0.1043736545
+UniRef50_Q0BVB3: Phosphatidylserine decarboxylase proenzyme|unclassified	0.1043736545
+UniRef50_UPI0003778B6B: hypothetical protein	0.1043721396
+UniRef50_UPI0003778B6B: hypothetical protein|unclassified	0.1043721396
+UniRef50_UPI0003C39831: PREDICTED: tRNA pseudouridine synthase-like 1-like isoform X1	0.1043650520
+UniRef50_UPI0003C39831: PREDICTED: tRNA pseudouridine synthase-like 1-like isoform X1|unclassified	0.1043650520
+UniRef50_UPI0002EDF36F: hypothetical protein	0.1043621579
+UniRef50_UPI0002EDF36F: hypothetical protein|unclassified	0.1043621579
+UniRef50_UPI0002E73783: hypothetical protein	0.1043602831
+UniRef50_UPI0002E73783: hypothetical protein|unclassified	0.1043602831
+UniRef50_UPI000377501D: hypothetical protein	0.1043602258
+UniRef50_UPI000377501D: hypothetical protein|unclassified	0.1043602258
+UniRef50_UPI0004704B80: hypothetical protein, partial	0.1043563204
+UniRef50_UPI0004704B80: hypothetical protein, partial|unclassified	0.1043563204
+UniRef50_B0S9J5: Phosphopantetheine adenylyltransferase	0.1043535656
+UniRef50_B0S9J5: Phosphopantetheine adenylyltransferase|unclassified	0.1043535656
+UniRef50_UPI000404CB05: hypothetical protein	0.1043528085
+UniRef50_UPI000404CB05: hypothetical protein|unclassified	0.1043528085
+UniRef50_UPI0003A4A480: tRNA-dihydrouridine synthase	0.1043502880
+UniRef50_UPI0003A4A480: tRNA-dihydrouridine synthase|unclassified	0.1043502880
+UniRef50_Q4A0Z6	0.1043412757
+UniRef50_Q4A0Z6|unclassified	0.1043412757
+UniRef50_C5BYJ7: NLP/P60 protein	0.1043337814
+UniRef50_C5BYJ7: NLP/P60 protein|unclassified	0.1043337814
+UniRef50_V7ENU5: Porin	0.1043223289
+UniRef50_V7ENU5: Porin|unclassified	0.1043223289
+UniRef50_UPI000465B085: hydrolase Nlp/P60	0.1043219493
+UniRef50_UPI000465B085: hydrolase Nlp/P60|unclassified	0.1043219493
+UniRef50_A5FWY8: RNA pyrophosphohydrolase	0.1043213675
+UniRef50_A5FWY8: RNA pyrophosphohydrolase|unclassified	0.1043213675
+UniRef50_W1WN70: Membrane protein (Fragment)	0.1043179508
+UniRef50_W1WN70: Membrane protein (Fragment)|unclassified	0.1043179508
+UniRef50_U4TQS3	0.1043110465
+UniRef50_U4TQS3|unclassified	0.1043110465
+UniRef50_U7V0E4	0.1043070805
+UniRef50_U7V0E4|unclassified	0.1043070805
+UniRef50_U1ZXP3	0.1043051370
+UniRef50_U1ZXP3|unclassified	0.1043051370
+UniRef50_UPI00036B21D8: hypothetical protein	0.1042883534
+UniRef50_UPI00036B21D8: hypothetical protein|unclassified	0.1042883534
+UniRef50_UPI0003A67521: hypothetical protein	0.1042846556
+UniRef50_UPI0003A67521: hypothetical protein|unclassified	0.1042846556
+UniRef50_X1YLX5	0.1042817399
+UniRef50_X1YLX5|unclassified	0.1042817399
+UniRef50_UPI00047510AD: hypothetical protein	0.1042794181
+UniRef50_UPI00047510AD: hypothetical protein|unclassified	0.1042794181
+UniRef50_Q73MY1: Phosphopantetheine adenylyltransferase	0.1042731321
+UniRef50_Q73MY1: Phosphopantetheine adenylyltransferase|unclassified	0.1042731321
+UniRef50_M3Z5M7	0.1042681644
+UniRef50_M3Z5M7|unclassified	0.1042681644
+UniRef50_UPI00034A702A: hypothetical protein	0.1042660101
+UniRef50_UPI00034A702A: hypothetical protein|unclassified	0.1042660101
+UniRef50_UPI0003665D5A: hypothetical protein	0.1042628489
+UniRef50_UPI0003665D5A: hypothetical protein|unclassified	0.1042628489
+UniRef50_C5CX22	0.1042621680
+UniRef50_C5CX22|unclassified	0.1042621680
+UniRef50_F2A992	0.1042614402
+UniRef50_F2A992|unclassified	0.1042614402
+UniRef50_UPI00047E9986: hypothetical protein	0.1042601586
+UniRef50_UPI00047E9986: hypothetical protein|unclassified	0.1042601586
+UniRef50_X0Z1H7: Marine sediment metagenome DNA, contig: S01H4_C00059	0.1042595263
+UniRef50_X0Z1H7: Marine sediment metagenome DNA, contig: S01H4_C00059|unclassified	0.1042595263
+UniRef50_UPI0003672561: hypothetical protein	0.1042571414
+UniRef50_UPI0003672561: hypothetical protein|unclassified	0.1042571414
+UniRef50_X1RXJ8: Marine sediment metagenome DNA, contig: S12H4_C02490	0.1042554684
+UniRef50_X1RXJ8: Marine sediment metagenome DNA, contig: S12H4_C02490|unclassified	0.1042554684
+UniRef50_Q6LU24: Phosphoribosylformylglycinamidine synthase	0.1042554569
+UniRef50_Q6LU24: Phosphoribosylformylglycinamidine synthase|unclassified	0.1042554569
+UniRef50_K0ELZ4: Transcriptional regulator	0.1042530623
+UniRef50_K0ELZ4: Transcriptional regulator|unclassified	0.1042530623
+UniRef50_UPI0003C27927: PREDICTED: putative nuclease HARBI1-like isoform X1	0.1042441893
+UniRef50_UPI0003C27927: PREDICTED: putative nuclease HARBI1-like isoform X1|unclassified	0.1042441893
+UniRef50_UPI000477260F: sulfite oxidase	0.1042424127
+UniRef50_UPI000477260F: sulfite oxidase|unclassified	0.1042424127
+UniRef50_B9F0K9	0.1042293426
+UniRef50_B9F0K9|unclassified	0.1042293426
+UniRef50_A0DJH6: Chromosome undetermined scaffold_53, whole genome shotgun sequence	0.1042262402
+UniRef50_A0DJH6: Chromosome undetermined scaffold_53, whole genome shotgun sequence|unclassified	0.1042262402
+UniRef50_R7JVY2: Predicted membrane protein	0.1042235094
+UniRef50_R7JVY2: Predicted membrane protein|unclassified	0.1042235094
+UniRef50_A7GEL0: 3-dehydroquinate dehydratase	0.1042176587
+UniRef50_A7GEL0: 3-dehydroquinate dehydratase|unclassified	0.1042176587
+UniRef50_Q7WFS4: D-alanine--D-alanine ligase	0.1042097414
+UniRef50_Q7WFS4: D-alanine--D-alanine ligase|unclassified	0.1042097414
+UniRef50_UPI000369B9BD: hypothetical protein	0.1042065295
+UniRef50_UPI000369B9BD: hypothetical protein|unclassified	0.1042065295
+UniRef50_UPI00036B55EC: hypothetical protein, partial	0.1042042514
+UniRef50_UPI00036B55EC: hypothetical protein, partial|unclassified	0.1042042514
+UniRef50_W7WY47	0.1042023433
+UniRef50_W7WY47|unclassified	0.1042023433
+UniRef50_UPI000376C496: hypothetical protein	0.1041962226
+UniRef50_UPI000376C496: hypothetical protein|unclassified	0.1041962226
+UniRef50_X6KKU1	0.1041810763
+UniRef50_X6KKU1|unclassified	0.1041810763
+UniRef50_UPI0003EC0A21: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial-like	0.1041798711
+UniRef50_UPI0003EC0A21: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial-like|unclassified	0.1041798711
+UniRef50_A1WTJ3: Dihydroorotate dehydrogenase (quinone)	0.1041745646
+UniRef50_A1WTJ3: Dihydroorotate dehydrogenase (quinone)|unclassified	0.1041745646
+UniRef50_U6JB04: Nucleoside diphosphate kinase	0.1041698329
+UniRef50_U6JB04: Nucleoside diphosphate kinase|unclassified	0.1041698329
+UniRef50_W8C433	0.1041666269
+UniRef50_W8C433|unclassified	0.1041666269
+UniRef50_UPI000249090D: asparagine synthase	0.1041644507
+UniRef50_UPI000249090D: asparagine synthase|unclassified	0.1041644507
+UniRef50_W0YK23	0.1041621005
+UniRef50_W0YK23|unclassified	0.1041621005
+UniRef50_UPI00047AE9C0: LysR family transcriptional regulator	0.1041614670
+UniRef50_UPI00047AE9C0: LysR family transcriptional regulator|unclassified	0.1041614670
+UniRef50_D4GD52: YhhA	0.1041600029
+UniRef50_D4GD52: YhhA|unclassified	0.1041600029
+UniRef50_V3XU72: Outer membrane-specific lipoprotein transporter subunit LolE	0.1041595735
+UniRef50_V3XU72: Outer membrane-specific lipoprotein transporter subunit LolE|unclassified	0.1041595735
+UniRef50_UPI0004636A9F: SAM-dependent methyltransferase	0.1041574200
+UniRef50_UPI0004636A9F: SAM-dependent methyltransferase|unclassified	0.1041574200
+UniRef50_UPI00016C36AE: formamidopyrimidine-DNA glycosylase	0.1041535241
+UniRef50_UPI00016C36AE: formamidopyrimidine-DNA glycosylase|unclassified	0.1041535241
+UniRef50_S9R328: Xanthine and CO dehydrogenase maturation factor, XdhC/CoxF family	0.1041533700
+UniRef50_S9R328: Xanthine and CO dehydrogenase maturation factor, XdhC/CoxF family|unclassified	0.1041533700
+UniRef50_G4AEU2	0.1041530943
+UniRef50_G4AEU2|unclassified	0.1041530943
+UniRef50_V4ZPA3	0.1041516766
+UniRef50_V4ZPA3|unclassified	0.1041516766
+UniRef50_UPI000360211E: hypothetical protein	0.1041417228
+UniRef50_UPI000360211E: hypothetical protein|unclassified	0.1041417228
+UniRef50_A0A024H1Y9: NrdI protein	0.1041399386
+UniRef50_A0A024H1Y9: NrdI protein|unclassified	0.1041399386
+UniRef50_UPI0000F2F781: two-component response regulator	0.1041354286
+UniRef50_UPI0000F2F781: two-component response regulator|unclassified	0.1041354286
+UniRef50_UPI00046E3E43: 2,4-dienoyl-CoA reductase, partial	0.1041346072
+UniRef50_UPI00046E3E43: 2,4-dienoyl-CoA reductase, partial|unclassified	0.1041346072
+UniRef50_UPI000471CA6A: hypothetical protein	0.1041203400
+UniRef50_UPI000471CA6A: hypothetical protein|unclassified	0.1041203400
+UniRef50_UPI00037DAE35: hypothetical protein	0.1041176998
+UniRef50_UPI00037DAE35: hypothetical protein|unclassified	0.1041176998
+UniRef50_A8AZH4	0.1041170249
+UniRef50_A8AZH4|unclassified	0.1041170249
+UniRef50_C2GWH4	0.1041161423
+UniRef50_C2GWH4|unclassified	0.1041161423
+UniRef50_UPI00047D982A: hypothetical protein	0.1041092713
+UniRef50_UPI00047D982A: hypothetical protein|unclassified	0.1041092713
+UniRef50_B8DKL2: Appr-1-p processing domain protein	0.1041015412
+UniRef50_B8DKL2: Appr-1-p processing domain protein|unclassified	0.1041015412
+UniRef50_Q9EUS8: Polyphosphate kinase (Fragment)	0.1040928414
+UniRef50_Q9EUS8: Polyphosphate kinase (Fragment)|unclassified	0.1040928414
+UniRef50_D7A1Z8	0.1040699407
+UniRef50_D7A1Z8|unclassified	0.1040699407
+UniRef50_H4B3Q6	0.1040645730
+UniRef50_H4B3Q6|unclassified	0.1040645730
+UniRef50_UPI00037A1055: hypothetical protein	0.1040485090
+UniRef50_UPI00037A1055: hypothetical protein|unclassified	0.1040485090
+UniRef50_Q11ID5: Hemin import ATP-binding protein HmuV	0.1040458246
+UniRef50_Q11ID5: Hemin import ATP-binding protein HmuV|unclassified	0.1040458246
+UniRef50_UPI00037D393B: hypothetical protein	0.1040428830
+UniRef50_UPI00037D393B: hypothetical protein|unclassified	0.1040428830
+UniRef50_A9KKE9: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	0.1040341327
+UniRef50_A9KKE9: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.1040341327
+UniRef50_K9AWW3	0.1040292329
+UniRef50_K9AWW3|unclassified	0.1040292329
+UniRef50_R9BZ13: ABC transporter periplasmic protein	0.1040262334
+UniRef50_R9BZ13: ABC transporter periplasmic protein|unclassified	0.1040262334
+UniRef50_F3GFY5: Iron-regulated protein frpC (Fragment)	0.1040211842
+UniRef50_F3GFY5: Iron-regulated protein frpC (Fragment)|unclassified	0.1040211842
+UniRef50_A0AFI3: Rhamnulose-1-phosphate aldolase	0.1040157199
+UniRef50_A0AFI3: Rhamnulose-1-phosphate aldolase|unclassified	0.1040157199
+UniRef50_UPI000470BC53: 4-alpha-glucanotransferase, partial	0.1039974949
+UniRef50_UPI000470BC53: 4-alpha-glucanotransferase, partial|unclassified	0.1039974949
+UniRef50_UPI00035FA6BF: hypothetical protein	0.1039937868
+UniRef50_UPI00035FA6BF: hypothetical protein|unclassified	0.1039937868
+UniRef50_R7CZZ3	0.1039924194
+UniRef50_R7CZZ3|unclassified	0.1039924194
+UniRef50_UPI00031E0DD7: hypothetical protein	0.1039821560
+UniRef50_UPI00031E0DD7: hypothetical protein|unclassified	0.1039821560
+UniRef50_E8TPF3	0.1039813339
+UniRef50_E8TPF3|unclassified	0.1039813339
+UniRef50_C7LX89	0.1039786732
+UniRef50_C7LX89|unclassified	0.1039786732
+UniRef50_J0M685	0.1039765279
+UniRef50_J0M685|unclassified	0.1039765279
+UniRef50_B2SBJ8: Fucose synthetase family protein	0.1039763037
+UniRef50_B2SBJ8: Fucose synthetase family protein|unclassified	0.1039763037
+UniRef50_UPI00047EEDB9: hypothetical protein	0.1039720218
+UniRef50_UPI00047EEDB9: hypothetical protein|unclassified	0.1039720218
+UniRef50_UPI0002FB5B06: hypothetical protein	0.1039710490
+UniRef50_UPI0002FB5B06: hypothetical protein|unclassified	0.1039710490
+UniRef50_UPI000468EC2A: glycerol-3-phosphate dehydrogenase	0.1039703020
+UniRef50_UPI000468EC2A: glycerol-3-phosphate dehydrogenase|unclassified	0.1039703020
+UniRef50_UPI0003669316: hypothetical protein	0.1039612657
+UniRef50_UPI0003669316: hypothetical protein|unclassified	0.1039612657
+UniRef50_P32449: Phospho-2-dehydro-3-deoxyheptonate aldolase, tyrosine-inhibited	0.1039563924
+UniRef50_P32449: Phospho-2-dehydro-3-deoxyheptonate aldolase, tyrosine-inhibited|unclassified	0.1039563924
+UniRef50_UPI00047A328B: hypothetical protein	0.1039516474
+UniRef50_UPI00047A328B: hypothetical protein|unclassified	0.1039516474
+UniRef50_Q4K4X7: Chaperone SurA	0.1039504768
+UniRef50_Q4K4X7: Chaperone SurA|unclassified	0.1039504768
+UniRef50_UPI00016C4E46: 4-alpha-glucanotransferase	0.1039465036
+UniRef50_UPI00016C4E46: 4-alpha-glucanotransferase|unclassified	0.1039465036
+UniRef50_A8FDG9: 8-amino-7-oxononanoate synthase	0.1039456151
+UniRef50_A8FDG9: 8-amino-7-oxononanoate synthase|unclassified	0.1039456151
+UniRef50_A2D765	0.1039429588
+UniRef50_A2D765|unclassified	0.1039429588
+UniRef50_A1B3C7	0.1039318024
+UniRef50_A1B3C7|unclassified	0.1039318024
+UniRef50_Q98AR5: Mlr5884 protein	0.1039285966
+UniRef50_Q98AR5: Mlr5884 protein|unclassified	0.1039285966
+UniRef50_UPI00029A30E6: DEAD/DEAH box helicase	0.1039244270
+UniRef50_UPI00029A30E6: DEAD/DEAH box helicase|unclassified	0.1039244270
+UniRef50_UPI0004017F46: single-stranded DNA-binding protein	0.1039212283
+UniRef50_UPI0004017F46: single-stranded DNA-binding protein|unclassified	0.1039212283
+UniRef50_V7GTC9	0.1039172398
+UniRef50_V7GTC9|unclassified	0.1039172398
+UniRef50_UPI000255B946: hypothetical protein	0.1039104969
+UniRef50_UPI000255B946: hypothetical protein|unclassified	0.1039104969
+UniRef50_UPI0004750550: glutamyl-tRNA amidotransferase	0.1039090058
+UniRef50_UPI0004750550: glutamyl-tRNA amidotransferase|unclassified	0.1039090058
+UniRef50_M2VWY7	0.1038929837
+UniRef50_M2VWY7|unclassified	0.1038929837
+UniRef50_UPI00026309FC: CDP-diacylglycerol pyrophosphatase	0.1038900342
+UniRef50_UPI00026309FC: CDP-diacylglycerol pyrophosphatase|unclassified	0.1038900342
+UniRef50_UPI0004797569: hypothetical protein	0.1038827512
+UniRef50_UPI0004797569: hypothetical protein|unclassified	0.1038827512
+UniRef50_E8LM94: TM2 domain protein	0.1038809152
+UniRef50_E8LM94: TM2 domain protein|unclassified	0.1038809152
+UniRef50_UPI0002559F47: 3-oxoadipate enol-lactonase	0.1038759686
+UniRef50_UPI0002559F47: 3-oxoadipate enol-lactonase|unclassified	0.1038759686
+UniRef50_UPI0004659F29: hypothetical protein	0.1038685621
+UniRef50_UPI0004659F29: hypothetical protein|unclassified	0.1038685621
+UniRef50_H9KFB2	0.1038516979
+UniRef50_H9KFB2|unclassified	0.1038516979
+UniRef50_UPI00037E8A1E: hypothetical protein	0.1038339921
+UniRef50_UPI00037E8A1E: hypothetical protein|unclassified	0.1038339921
+UniRef50_UPI0002002A76: 3-octaprenyl-4-hydroxybenzoate decarboxylase, partial	0.1038329754
+UniRef50_UPI0002002A76: 3-octaprenyl-4-hydroxybenzoate decarboxylase, partial|unclassified	0.1038329754
+UniRef50_UPI00037F3B9E: transcriptional regulator	0.1038322797
+UniRef50_UPI00037F3B9E: transcriptional regulator|unclassified	0.1038322797
+UniRef50_A6VZ27	0.1038269842
+UniRef50_A6VZ27|unclassified	0.1038269842
+UniRef50_UPI000471FD97: hypothetical protein	0.1038180601
+UniRef50_UPI000471FD97: hypothetical protein|unclassified	0.1038180601
+UniRef50_Q21YT7: Bifunctional enzyme IspD/IspF	0.1037835589
+UniRef50_Q21YT7: Bifunctional enzyme IspD/IspF|unclassified	0.1037835589
+UniRef50_R0F581	0.1037715894
+UniRef50_R0F581|unclassified	0.1037715894
+UniRef50_U1C5K5	0.1037665357
+UniRef50_U1C5K5|unclassified	0.1037665357
+UniRef50_UPI0003B35D4B: hypothetical protein	0.1037657487
+UniRef50_UPI0003B35D4B: hypothetical protein|unclassified	0.1037657487
+UniRef50_UPI00047175CE: hypothetical protein, partial	0.1037585693
+UniRef50_UPI00047175CE: hypothetical protein, partial|unclassified	0.1037585693
+UniRef50_B0JXE8: N-acetyl-gamma-glutamyl-phosphate reductase	0.1037559585
+UniRef50_B0JXE8: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.1037559585
+UniRef50_UPI0004645879: hypothetical protein	0.1037543588
+UniRef50_UPI0004645879: hypothetical protein|unclassified	0.1037543588
+UniRef50_UPI00035CCC77: hypothetical protein	0.1037423074
+UniRef50_UPI00035CCC77: hypothetical protein|unclassified	0.1037423074
+UniRef50_A5W9H4: Endoribonuclease YbeY	0.1037422114
+UniRef50_A5W9H4: Endoribonuclease YbeY|unclassified	0.1037422114
+UniRef50_UPI0004433DBE: PREDICTED: microtubule-associated serine/threonine-protein kinase 2	0.1037397818
+UniRef50_UPI0004433DBE: PREDICTED: microtubule-associated serine/threonine-protein kinase 2|unclassified	0.1037397818
+UniRef50_UPI000478DF79: octanoyltransferase	0.1037371950
+UniRef50_UPI000478DF79: octanoyltransferase|unclassified	0.1037371950
+UniRef50_S6TTF2: Lambda-like phage minor tail protein L (Fragment)	0.1037364752
+UniRef50_S6TTF2: Lambda-like phage minor tail protein L (Fragment)|unclassified	0.1037364752
+UniRef50_J8VH12: tRNA-hydroxylase	0.1037322204
+UniRef50_J8VH12: tRNA-hydroxylase|unclassified	0.1037322204
+UniRef50_T0QKP7	0.1037317539
+UniRef50_T0QKP7|unclassified	0.1037317539
+UniRef50_UPI0004709DCC: maleylacetoacetate isomerase	0.1037289817
+UniRef50_UPI0004709DCC: maleylacetoacetate isomerase|unclassified	0.1037289817
+UniRef50_UPI00022CAA48: PREDICTED: mannose-1-phosphate guanylyltransferase 1-like	0.1037238581
+UniRef50_UPI00022CAA48: PREDICTED: mannose-1-phosphate guanylyltransferase 1-like|unclassified	0.1037238581
+UniRef50_UPI00046F8DCE: cell wall hydrolase, partial	0.1037229453
+UniRef50_UPI00046F8DCE: cell wall hydrolase, partial|unclassified	0.1037229453
+UniRef50_Q46K45: Pyridoxine 5'-phosphate synthase	0.1037221160
+UniRef50_Q46K45: Pyridoxine 5'-phosphate synthase|unclassified	0.1037221160
+UniRef50_A0A022TTL2	0.1037197445
+UniRef50_A0A022TTL2|unclassified	0.1037197445
+UniRef50_B1XKV1: Elongation factor P	0.1037189101
+UniRef50_B1XKV1: Elongation factor P|unclassified	0.1037189101
+UniRef50_Q9ZNJ9: Peptide methionine sulfoxide reductase MsrB	0.1037174675
+UniRef50_Q9ZNJ9: Peptide methionine sulfoxide reductase MsrB|unclassified	0.1037174675
+UniRef50_D8TSQ8	0.1037116730
+UniRef50_D8TSQ8|unclassified	0.1037116730
+UniRef50_W1YEV8: Peptidase T (Fragment)	0.1037092723
+UniRef50_W1YEV8: Peptidase T (Fragment)|unclassified	0.1037092723
+UniRef50_D5RPQ4	0.1036876636
+UniRef50_D5RPQ4|unclassified	0.1036876636
+UniRef50_A8FDF7: Short chain dehydrogenase	0.1036864778
+UniRef50_A8FDF7: Short chain dehydrogenase|unclassified	0.1036864778
+UniRef50_L9MZ90	0.1036681693
+UniRef50_L9MZ90|unclassified	0.1036681693
+UniRef50_UPI00038200FA: hypothetical protein	0.1036567866
+UniRef50_UPI00038200FA: hypothetical protein|unclassified	0.1036567866
+UniRef50_UPI000478031E: 50S ribosomal protein L3	0.1036521019
+UniRef50_UPI000478031E: 50S ribosomal protein L3|unclassified	0.1036521019
+UniRef50_X8IXS7: HMG (High mobility group) box protein	0.1036471999
+UniRef50_X8IXS7: HMG (High mobility group) box protein|unclassified	0.1036471999
+UniRef50_UPI00046550E0: ABC transporter permease	0.1036409789
+UniRef50_UPI00046550E0: ABC transporter permease|unclassified	0.1036409789
+UniRef50_P0A585: Glucose-6-phosphate 1-dehydrogenase 2	0.1036353110
+UniRef50_P0A585: Glucose-6-phosphate 1-dehydrogenase 2|unclassified	0.1036353110
+UniRef50_UPI0003FDD6FE: FAD-containing monooxygenase EthA	0.1036298556
+UniRef50_UPI0003FDD6FE: FAD-containing monooxygenase EthA|unclassified	0.1036298556
+UniRef50_UPI0004407DB1: hypothetical protein FOMMEDRAFT_167197	0.1036241157
+UniRef50_UPI0004407DB1: hypothetical protein FOMMEDRAFT_167197|unclassified	0.1036241157
+UniRef50_UPI00042B174B: Beta carbonic anhydrase 5, putative isoform 3	0.1036138510
+UniRef50_UPI00042B174B: Beta carbonic anhydrase 5, putative isoform 3|unclassified	0.1036138510
+UniRef50_UPI000473A238: 3-phosphoglycerate dehydrogenase, partial	0.1036021223
+UniRef50_UPI000473A238: 3-phosphoglycerate dehydrogenase, partial|unclassified	0.1036021223
+UniRef50_UPI0002E2A55E: glutathione peroxidase	0.1035908584
+UniRef50_UPI0002E2A55E: glutathione peroxidase|unclassified	0.1035908584
+UniRef50_A4A8J8: Tfp pilus assembly protein PilP	0.1035905269
+UniRef50_A4A8J8: Tfp pilus assembly protein PilP|unclassified	0.1035905269
+UniRef50_UPI000477EB75: hypothetical protein	0.1035901508
+UniRef50_UPI000477EB75: hypothetical protein|unclassified	0.1035901508
+UniRef50_X1MDH4: Marine sediment metagenome DNA, contig: S06H3_L04734 (Fragment)	0.1035899900
+UniRef50_X1MDH4: Marine sediment metagenome DNA, contig: S06H3_L04734 (Fragment)|unclassified	0.1035899900
+UniRef50_N6WP66	0.1035868298
+UniRef50_N6WP66|unclassified	0.1035868298
+UniRef50_UPI000467B18C: hypothetical protein	0.1035799712
+UniRef50_UPI000467B18C: hypothetical protein|unclassified	0.1035799712
+UniRef50_W9V3B9	0.1035798641
+UniRef50_W9V3B9|unclassified	0.1035798641
+UniRef50_UPI0003AF7002: PREDICTED: monofunctional C1-tetrahydrofolate synthase, mitochondrial-like	0.1035790532
+UniRef50_UPI0003AF7002: PREDICTED: monofunctional C1-tetrahydrofolate synthase, mitochondrial-like|unclassified	0.1035790532
+UniRef50_R5NWH8: YbbR-like protein	0.1035690683
+UniRef50_R5NWH8: YbbR-like protein|unclassified	0.1035690683
+UniRef50_S4MJP1: Putative Bifunctional P-450/NADPH-P450 reductase	0.1035599524
+UniRef50_S4MJP1: Putative Bifunctional P-450/NADPH-P450 reductase|unclassified	0.1035599524
+UniRef50_UPI00041638A6: SAM-dependent methyltransferase	0.1035529529
+UniRef50_UPI00041638A6: SAM-dependent methyltransferase|unclassified	0.1035529529
+UniRef50_UPI0004688CBC: hypothetical protein	0.1035462761
+UniRef50_UPI0004688CBC: hypothetical protein|unclassified	0.1035462761
+UniRef50_UPI00036A13C3: hypothetical protein	0.1035434339
+UniRef50_UPI00036A13C3: hypothetical protein|unclassified	0.1035434339
+UniRef50_UPI0002F6BEC0: hypothetical protein	0.1035407933
+UniRef50_UPI0002F6BEC0: hypothetical protein|unclassified	0.1035407933
+UniRef50_UPI00046802CF: peptidase M48 Ste24p	0.1035302859
+UniRef50_UPI00046802CF: peptidase M48 Ste24p|unclassified	0.1035302859
+UniRef50_Q5FS85: Guanylate kinase	0.1035299107
+UniRef50_Q5FS85: Guanylate kinase|unclassified	0.1035299107
+UniRef50_E2XW64	0.1035242809
+UniRef50_E2XW64|unclassified	0.1035242809
+UniRef50_UPI00046C8EBB: hypothetical protein	0.1035232241
+UniRef50_UPI00046C8EBB: hypothetical protein|unclassified	0.1035232241
+UniRef50_UPI000380DD01: hypothetical protein, partial	0.1035222561
+UniRef50_UPI000380DD01: hypothetical protein, partial|unclassified	0.1035222561
+UniRef50_M9R2T0	0.1035116363
+UniRef50_M9R2T0|unclassified	0.1035116363
+UniRef50_UPI00029A1DCD: transketolase	0.1035098084
+UniRef50_UPI00029A1DCD: transketolase|unclassified	0.1035098084
+UniRef50_E0UH66: Amine oxidase	0.1035078940
+UniRef50_E0UH66: Amine oxidase|unclassified	0.1035078940
+UniRef50_K8ZHP6: Competence related protein	0.1035033183
+UniRef50_K8ZHP6: Competence related protein|unclassified	0.1035033183
+UniRef50_UPI00037042BD: hypothetical protein	0.1035023364
+UniRef50_UPI00037042BD: hypothetical protein|unclassified	0.1035023364
+UniRef50_E0Q2D7	0.1034966690
+UniRef50_E0Q2D7|unclassified	0.1034966690
+UniRef50_UPI00047095AA: hypothetical protein	0.1034878065
+UniRef50_UPI00047095AA: hypothetical protein|unclassified	0.1034878065
+UniRef50_Q38WW5	0.1034869594
+UniRef50_Q38WW5|unclassified	0.1034869594
+UniRef50_Q9PB21: 3-phosphoshikimate 1-carboxyvinyltransferase	0.1034854027
+UniRef50_Q9PB21: 3-phosphoshikimate 1-carboxyvinyltransferase|unclassified	0.1034854027
+UniRef50_R0EN67: Carbamoyl-phosphate synthase, small subunit, carA	0.1034821935
+UniRef50_R0EN67: Carbamoyl-phosphate synthase, small subunit, carA|unclassified	0.1034821935
+UniRef50_UPI00037DA5EB: hypothetical protein	0.1034737962
+UniRef50_UPI00037DA5EB: hypothetical protein|unclassified	0.1034737962
+UniRef50_UPI0003756A48: hypothetical protein	0.1034724382
+UniRef50_UPI0003756A48: hypothetical protein|unclassified	0.1034724382
+UniRef50_B9L5V9: 3-dehydroquinate dehydratase	0.1034671351
+UniRef50_B9L5V9: 3-dehydroquinate dehydratase|unclassified	0.1034671351
+UniRef50_A4XY31: Histidine--tRNA ligase	0.1034657998
+UniRef50_A4XY31: Histidine--tRNA ligase|unclassified	0.1034657998
+UniRef50_UPI00037582DD: hypothetical protein	0.1034636872
+UniRef50_UPI00037582DD: hypothetical protein|unclassified	0.1034636872
+UniRef50_A1HQK7	0.1034633186
+UniRef50_A1HQK7|unclassified	0.1034633186
+UniRef50_F7XUY9: Putative polyhydroxyalkanoate synthesis repressor PhaR	0.1034563210
+UniRef50_F7XUY9: Putative polyhydroxyalkanoate synthesis repressor PhaR|unclassified	0.1034563210
+UniRef50_UPI00037C0C47: hypothetical protein	0.1034562807
+UniRef50_UPI00037C0C47: hypothetical protein|unclassified	0.1034562807
+UniRef50_Q72IW9: Homoisocitrate dehydrogenase	0.1034546726
+UniRef50_Q72IW9: Homoisocitrate dehydrogenase|unclassified	0.1034546726
+UniRef50_UPI00036736F5: hypothetical protein	0.1034527666
+UniRef50_UPI00036736F5: hypothetical protein|unclassified	0.1034527666
+UniRef50_F4FUC7: Phosphodiesterase, MJ0936 family	0.1034504251
+UniRef50_F4FUC7: Phosphodiesterase, MJ0936 family|unclassified	0.1034504251
+UniRef50_UPI00016C386D: chemotaxis protein histidine kinase	0.1034444078
+UniRef50_UPI00016C386D: chemotaxis protein histidine kinase|unclassified	0.1034444078
+UniRef50_UPI00016BFF09: thymidylate kinase	0.1034384678
+UniRef50_UPI00016BFF09: thymidylate kinase|unclassified	0.1034384678
+UniRef50_I0DUK2	0.1034365970
+UniRef50_I0DUK2|unclassified	0.1034365970
+UniRef50_J3NBT7	0.1034311791
+UniRef50_J3NBT7|unclassified	0.1034311791
+UniRef50_UPI00026CD1DE: 3-ketoacyl-ACP reductase	0.1034257976
+UniRef50_UPI00026CD1DE: 3-ketoacyl-ACP reductase|unclassified	0.1034257976
+UniRef50_UPI000469755B: secretion system protein E	0.1034247001
+UniRef50_UPI000469755B: secretion system protein E|unclassified	0.1034247001
+UniRef50_O05393: O-acetylserine dependent cystathionine beta-synthase	0.1034151953
+UniRef50_O05393: O-acetylserine dependent cystathionine beta-synthase|unclassified	0.1034151953
+UniRef50_UPI0003787A5F: hypothetical protein	0.1034120306
+UniRef50_UPI0003787A5F: hypothetical protein|unclassified	0.1034120306
+UniRef50_UPI00047EFBD1: glycine/betaine ABC transporter ATPase	0.1034110136
+UniRef50_UPI00047EFBD1: glycine/betaine ABC transporter ATPase|unclassified	0.1034110136
+UniRef50_UPI00035D7E93: hypothetical protein	0.1034055703
+UniRef50_UPI00035D7E93: hypothetical protein|unclassified	0.1034055703
+UniRef50_R1F8B2	0.1034041763
+UniRef50_R1F8B2|unclassified	0.1034041763
+UniRef50_UPI00042A3FBF: hypothetical protein	0.1033997388
+UniRef50_UPI00042A3FBF: hypothetical protein|unclassified	0.1033997388
+UniRef50_L8Y1X7: Ribosome association toxin RatA	0.1033849446
+UniRef50_L8Y1X7: Ribosome association toxin RatA|unclassified	0.1033849446
+UniRef50_Q6ARN9: Bifunctional enzyme IspD/IspF	0.1033844612
+UniRef50_Q6ARN9: Bifunctional enzyme IspD/IspF|unclassified	0.1033844612
+UniRef50_UPI00047109BA: hypothetical protein	0.1033816467
+UniRef50_UPI00047109BA: hypothetical protein|unclassified	0.1033816467
+UniRef50_UPI0003B325A0: short-chain dehydrogenase	0.1033810354
+UniRef50_UPI0003B325A0: short-chain dehydrogenase|unclassified	0.1033810354
+UniRef50_UPI000471395F: hypothetical protein	0.1033805145
+UniRef50_UPI000471395F: hypothetical protein|unclassified	0.1033805145
+UniRef50_UPI0002EC0CF4: transcriptional regulator	0.1033569372
+UniRef50_UPI0002EC0CF4: transcriptional regulator|unclassified	0.1033569372
+UniRef50_E3BP68	0.1033494433
+UniRef50_E3BP68|unclassified	0.1033494433
+UniRef50_Q55S44	0.1033375940
+UniRef50_Q55S44|unclassified	0.1033375940
+UniRef50_W7QE85	0.1033336185
+UniRef50_W7QE85|unclassified	0.1033336185
+UniRef50_U6MSG9	0.1033332913
+UniRef50_U6MSG9|unclassified	0.1033332913
+UniRef50_A6GZB9: Adenylate kinase	0.1033306649
+UniRef50_A6GZB9: Adenylate kinase|unclassified	0.1033306649
+UniRef50_Q3JSC1	0.1033288141
+UniRef50_Q3JSC1|unclassified	0.1033288141
+UniRef50_Q38YR5	0.1033251444
+UniRef50_Q38YR5|unclassified	0.1033251444
+UniRef50_Q3A7A3: Cobyrinic acid A,C-diamide synthase	0.1033186726
+UniRef50_Q3A7A3: Cobyrinic acid A,C-diamide synthase|unclassified	0.1033186726
+UniRef50_UPI00031B9A92: hypothetical protein	0.1033177804
+UniRef50_UPI00031B9A92: hypothetical protein|unclassified	0.1033177804
+UniRef50_UPI0004029835: hypothetical protein	0.1033117712
+UniRef50_UPI0004029835: hypothetical protein|unclassified	0.1033117712
+UniRef50_UPI0002ED7028: transcriptional regulator	0.1033082169
+UniRef50_UPI0002ED7028: transcriptional regulator|unclassified	0.1033082169
+UniRef50_UPI00016C46DE: ATP-dependent DNA helicase RecQ	0.1033067790
+UniRef50_UPI00016C46DE: ATP-dependent DNA helicase RecQ|unclassified	0.1033067790
+UniRef50_V4QXI1: AMP-binding protein	0.1033023322
+UniRef50_V4QXI1: AMP-binding protein|unclassified	0.1033023322
+UniRef50_A1SCX8	0.1032971452
+UniRef50_A1SCX8|unclassified	0.1032971452
+UniRef50_Q4UPB2	0.1032950691
+UniRef50_Q4UPB2|unclassified	0.1032950691
+UniRef50_U7GJ19	0.1032867978
+UniRef50_U7GJ19|unclassified	0.1032867978
+UniRef50_K0TJM3	0.1032859803
+UniRef50_K0TJM3|unclassified	0.1032859803
+UniRef50_UPI0004785F51: hypothetical protein	0.1032833040
+UniRef50_UPI0004785F51: hypothetical protein|unclassified	0.1032833040
+UniRef50_Q88LQ3	0.1032729564
+UniRef50_Q88LQ3|unclassified	0.1032729564
+UniRef50_UPI00047D34AC: hypothetical protein	0.1032704129
+UniRef50_UPI00047D34AC: hypothetical protein|unclassified	0.1032704129
+UniRef50_Q9HML8: Phosphate import ATP-binding protein PstB 2	0.1032645176
+UniRef50_Q9HML8: Phosphate import ATP-binding protein PstB 2|unclassified	0.1032645176
+UniRef50_UPI0004646764: hypothetical protein	0.1032608566
+UniRef50_UPI0004646764: hypothetical protein|unclassified	0.1032608566
+UniRef50_A1AVM5: DNA-directed RNA polymerase subunit alpha	0.1032572985
+UniRef50_A1AVM5: DNA-directed RNA polymerase subunit alpha|unclassified	0.1032572985
+UniRef50_UPI00047B9E06: hypothetical protein	0.1032535002
+UniRef50_UPI00047B9E06: hypothetical protein|unclassified	0.1032535002
+UniRef50_A2RFE4	0.1032455453
+UniRef50_A2RFE4|unclassified	0.1032455453
+UniRef50_U7GJQ0	0.1032439822
+UniRef50_U7GJQ0|unclassified	0.1032439822
+UniRef50_U7V584	0.1032413371
+UniRef50_U7V584|unclassified	0.1032413371
+UniRef50_H0DI48: Putative enoyl-(Acyl carrier protein) reductase	0.1032386746
+UniRef50_H0DI48: Putative enoyl-(Acyl carrier protein) reductase|unclassified	0.1032386746
+UniRef50_UPI000380067C: hypothetical protein, partial	0.1032312729
+UniRef50_UPI000380067C: hypothetical protein, partial|unclassified	0.1032312729
+UniRef50_A5V2G7	0.1032298874
+UniRef50_A5V2G7|unclassified	0.1032298874
+UniRef50_S4MWD4: Putative D-xylose-binding periplasmic protein	0.1032100273
+UniRef50_S4MWD4: Putative D-xylose-binding periplasmic protein|unclassified	0.1032100273
+UniRef50_UPI00036FD5EC: hypothetical protein	0.1032082765
+UniRef50_UPI00036FD5EC: hypothetical protein|unclassified	0.1032082765
+UniRef50_UPI000409549E: MFS transporter	0.1031902372
+UniRef50_UPI000409549E: MFS transporter|unclassified	0.1031902372
+UniRef50_A8F516: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO	0.1031899736
+UniRef50_A8F516: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|unclassified	0.1031899736
+UniRef50_K2ERN9	0.1031870229
+UniRef50_K2ERN9|unclassified	0.1031870229
+UniRef50_S5YW82	0.1031793486
+UniRef50_S5YW82|unclassified	0.1031793486
+UniRef50_UPI00031DC716: universal stress protein UspA	0.1031701569
+UniRef50_UPI00031DC716: universal stress protein UspA|unclassified	0.1031701569
+UniRef50_UPI00045419FA: PREDICTED: LOW QUALITY PROTEIN: protocadherin Fat 1-like	0.1031684188
+UniRef50_UPI00045419FA: PREDICTED: LOW QUALITY PROTEIN: protocadherin Fat 1-like|unclassified	0.1031684188
+UniRef50_UPI00040DB40F: hypothetical protein	0.1031681651
+UniRef50_UPI00040DB40F: hypothetical protein|unclassified	0.1031681651
+UniRef50_UPI0003641A59: hypothetical protein	0.1031644798
+UniRef50_UPI0003641A59: hypothetical protein|unclassified	0.1031644798
+UniRef50_V9UTU7	0.1031586175
+UniRef50_V9UTU7|unclassified	0.1031586175
+UniRef50_UPI0001850A1D: ywpF protein	0.1031546186
+UniRef50_UPI0001850A1D: ywpF protein|unclassified	0.1031546186
+UniRef50_W1XPU8	0.1031544066
+UniRef50_W1XPU8|unclassified	0.1031544066
+UniRef50_UPI0003666DAC: hypothetical protein	0.1031523580
+UniRef50_UPI0003666DAC: hypothetical protein|unclassified	0.1031523580
+UniRef50_E3NWW8	0.1031515302
+UniRef50_E3NWW8|unclassified	0.1031515302
+UniRef50_Q1I665	0.1031463654
+UniRef50_Q1I665|unclassified	0.1031463654
+UniRef50_T0H3H4	0.1031335601
+UniRef50_T0H3H4|unclassified	0.1031335601
+UniRef50_I7J872: Chromosome III, complete sequence	0.1031304105
+UniRef50_I7J872: Chromosome III, complete sequence|unclassified	0.1031304105
+UniRef50_UPI00034B3223: hypothetical protein	0.1031243134
+UniRef50_UPI00034B3223: hypothetical protein|unclassified	0.1031243134
+UniRef50_A3NXK2	0.1031168931
+UniRef50_A3NXK2|unclassified	0.1031168931
+UniRef50_I3ZJH3: GAF domain-containing protein	0.1031130838
+UniRef50_I3ZJH3: GAF domain-containing protein|unclassified	0.1031130838
+UniRef50_UPI00047C50D0: hypothetical protein	0.1031075696
+UniRef50_UPI00047C50D0: hypothetical protein|unclassified	0.1031075696
+UniRef50_UPI0002001DF1: superfamily II RNA helicase, partial	0.1031067128
+UniRef50_UPI0002001DF1: superfamily II RNA helicase, partial|unclassified	0.1031067128
+UniRef50_UPI0003671A12: hypothetical protein	0.1030957001
+UniRef50_UPI0003671A12: hypothetical protein|unclassified	0.1030957001
+UniRef50_F5RBT2	0.1030934802
+UniRef50_F5RBT2|unclassified	0.1030934802
+UniRef50_Q7VR99: Glucosamine-6-phosphate deaminase	0.1030904522
+UniRef50_Q7VR99: Glucosamine-6-phosphate deaminase|unclassified	0.1030904522
+UniRef50_H3K5H3: Uracil permease	0.1030875935
+UniRef50_H3K5H3: Uracil permease|unclassified	0.1030875935
+UniRef50_UPI000477C8DB: alcohol dehydrogenase	0.1030772876
+UniRef50_UPI000477C8DB: alcohol dehydrogenase|unclassified	0.1030772876
+UniRef50_UPI00046647A8: dihydropteroate synthase	0.1030765921
+UniRef50_UPI00046647A8: dihydropteroate synthase|unclassified	0.1030765921
+UniRef50_UPI00031BE6F4: hypothetical protein	0.1030460899
+UniRef50_UPI00031BE6F4: hypothetical protein|unclassified	0.1030460899
+UniRef50_A3T1J0	0.1030349459
+UniRef50_A3T1J0|unclassified	0.1030349459
+UniRef50_UPI000375ED4E: hypothetical protein	0.1030216730
+UniRef50_UPI000375ED4E: hypothetical protein|unclassified	0.1030216730
+UniRef50_J1K243	0.1030146151
+UniRef50_J1K243|unclassified	0.1030146151
+UniRef50_C3KRZ1	0.1030087596
+UniRef50_C3KRZ1|unclassified	0.1030087596
+UniRef50_UPI00035FF64F: UDP pyrophosphate synthase, partial	0.1030083769
+UniRef50_UPI00035FF64F: UDP pyrophosphate synthase, partial|unclassified	0.1030083769
+UniRef50_X0VEK8: Marine sediment metagenome DNA, contig: S01H1_L09178 (Fragment)	0.1030033017
+UniRef50_X0VEK8: Marine sediment metagenome DNA, contig: S01H1_L09178 (Fragment)|unclassified	0.1030033017
+UniRef50_W0YM08	0.1029930101
+UniRef50_W0YM08|unclassified	0.1029930101
+UniRef50_UPI0003B6024A: amidohydrolase	0.1029884544
+UniRef50_UPI0003B6024A: amidohydrolase|unclassified	0.1029884544
+UniRef50_UPI0003FDF28D: AMP-dependent synthetase	0.1029741056
+UniRef50_UPI0003FDF28D: AMP-dependent synthetase|unclassified	0.1029741056
+UniRef50_A0A022GTD8	0.1029706568
+UniRef50_A0A022GTD8|unclassified	0.1029706568
+UniRef50_P16219: Short-chain specific acyl-CoA dehydrogenase, mitochondrial	0.1029615941
+UniRef50_P16219: Short-chain specific acyl-CoA dehydrogenase, mitochondrial|unclassified	0.1029615941
+UniRef50_UPI0003B7BBF9: elongation factor G	0.1029575293
+UniRef50_UPI0003B7BBF9: elongation factor G|unclassified	0.1029575293
+UniRef50_K4NHA2	0.1029529416
+UniRef50_K4NHA2|unclassified	0.1029529416
+UniRef50_W7ITD0: Short chain dehydrogenase	0.1029518813
+UniRef50_W7ITD0: Short chain dehydrogenase|unclassified	0.1029518813
+UniRef50_U3QH45	0.1029507705
+UniRef50_U3QH45|unclassified	0.1029507705
+UniRef50_UPI0003EF64AA: hypothetical protein	0.1029381899
+UniRef50_UPI0003EF64AA: hypothetical protein|unclassified	0.1029381899
+UniRef50_C5A3H2: S-adenosylmethionine decarboxylase proenzyme	0.1029230170
+UniRef50_C5A3H2: S-adenosylmethionine decarboxylase proenzyme|unclassified	0.1029230170
+UniRef50_H0CBP3: LysM domain protein	0.1029222853
+UniRef50_H0CBP3: LysM domain protein|unclassified	0.1029222853
+UniRef50_UPI0004709BDA: branched-chain amino acid ABC transporter permease	0.1029210813
+UniRef50_UPI0004709BDA: branched-chain amino acid ABC transporter permease|unclassified	0.1029210813
+UniRef50_UPI000360126B: hypothetical protein, partial	0.1029109639
+UniRef50_UPI000360126B: hypothetical protein, partial|unclassified	0.1029109639
+UniRef50_Q7WH69: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.1029087692
+UniRef50_Q7WH69: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.1029087692
+UniRef50_X1V1V8: Marine sediment metagenome DNA, contig: S12H4_S22864	0.1029079141
+UniRef50_X1V1V8: Marine sediment metagenome DNA, contig: S12H4_S22864|unclassified	0.1029079141
+UniRef50_A1WJX7	0.1028946194
+UniRef50_A1WJX7|unclassified	0.1028946194
+UniRef50_X5RSR4	0.1028893327
+UniRef50_X5RSR4|unclassified	0.1028893327
+UniRef50_UPI0003870858: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1, partial	0.1028876191
+UniRef50_UPI0003870858: PREDICTED: FAD-dependent oxidoreductase domain-containing protein 1, partial|unclassified	0.1028876191
+UniRef50_UPI00041FF968: hypothetical protein	0.1028841008
+UniRef50_UPI00041FF968: hypothetical protein|unclassified	0.1028841008
+UniRef50_UPI0002197180: hypothetical protein	0.1028818190
+UniRef50_UPI0002197180: hypothetical protein|unclassified	0.1028818190
+UniRef50_K9VH31	0.1028774364
+UniRef50_K9VH31|unclassified	0.1028774364
+UniRef50_UPI000347D45A: hypothetical protein	0.1028711938
+UniRef50_UPI000347D45A: hypothetical protein|unclassified	0.1028711938
+UniRef50_F2EBP3: Predicted protein	0.1028640631
+UniRef50_F2EBP3: Predicted protein|unclassified	0.1028640631
+UniRef50_Q0AAA4	0.1028632373
+UniRef50_Q0AAA4|unclassified	0.1028632373
+UniRef50_Y6ZDZ1	0.1028600972
+UniRef50_Y6ZDZ1|unclassified	0.1028600972
+UniRef50_UPI00035E864D: hypothetical protein	0.1028574815
+UniRef50_UPI00035E864D: hypothetical protein|unclassified	0.1028574815
+UniRef50_I0SEB8: Transposase, IS4 family	0.1028568498
+UniRef50_I0SEB8: Transposase, IS4 family|unclassified	0.1028568498
+UniRef50_UPI000382C157: MULTISPECIES: hypothetical protein	0.1028495047
+UniRef50_UPI000382C157: MULTISPECIES: hypothetical protein|unclassified	0.1028495047
+UniRef50_Q6F7Y6	0.1028398221
+UniRef50_Q6F7Y6|unclassified	0.1028398221
+UniRef50_UPI00047D9512: hypothetical protein	0.1028354585
+UniRef50_UPI00047D9512: hypothetical protein|unclassified	0.1028354585
+UniRef50_UPI0003C1158B	0.1028341321
+UniRef50_UPI0003C1158B|unclassified	0.1028341321
+UniRef50_L8MFE9: Putative TAIL-RELATED PROTEIN (TAIL FORMATION-LIKE PROTEIN)	0.1028301610
+UniRef50_L8MFE9: Putative TAIL-RELATED PROTEIN (TAIL FORMATION-LIKE PROTEIN)|unclassified	0.1028301610
+UniRef50_UPI000255C8A1: Bcr/CflA subfamily drug resistance transporter protein, partial	0.1028216623
+UniRef50_UPI000255C8A1: Bcr/CflA subfamily drug resistance transporter protein, partial|unclassified	0.1028216623
+UniRef50_R1EFS3	0.1028212451
+UniRef50_R1EFS3|unclassified	0.1028212451
+UniRef50_UPI0004449B1A: hypothetical protein STEHIDRAFT_98923	0.1028204959
+UniRef50_UPI0004449B1A: hypothetical protein STEHIDRAFT_98923|unclassified	0.1028204959
+UniRef50_UPI000471299E: hypothetical protein	0.1028199821
+UniRef50_UPI000471299E: hypothetical protein|unclassified	0.1028199821
+UniRef50_UPI0004631392: glucose dehydrogenase	0.1028157525
+UniRef50_UPI0004631392: glucose dehydrogenase|unclassified	0.1028157525
+UniRef50_UPI00046FDF41: hypothetical protein	0.1028136435
+UniRef50_UPI00046FDF41: hypothetical protein|unclassified	0.1028136435
+UniRef50_A6L890: Cytochrome c-552	0.1027988321
+UniRef50_A6L890: Cytochrome c-552|unclassified	0.1027988321
+UniRef50_UPI00046889D2: hypothetical protein	0.1027958897
+UniRef50_UPI00046889D2: hypothetical protein|unclassified	0.1027958897
+UniRef50_U6LEG8	0.1027945799
+UniRef50_U6LEG8|unclassified	0.1027945799
+UniRef50_U1M1K7	0.1027899375
+UniRef50_U1M1K7|unclassified	0.1027899375
+UniRef50_B0CD44: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	0.1027893843
+UniRef50_B0CD44: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|unclassified	0.1027893843
+UniRef50_UPI0003D39CC3: ABC-type nitrate/sulfonate/bicarbonate transport systems	0.1027867578
+UniRef50_UPI0003D39CC3: ABC-type nitrate/sulfonate/bicarbonate transport systems|unclassified	0.1027867578
+UniRef50_Q8ZT92: GMP synthase [glutamine-hydrolyzing]	0.1027865862
+UniRef50_Q8ZT92: GMP synthase [glutamine-hydrolyzing]|unclassified	0.1027865862
+UniRef50_Q7M7S2: Glycine--tRNA ligase alpha subunit	0.1027819348
+UniRef50_Q7M7S2: Glycine--tRNA ligase alpha subunit|unclassified	0.1027819348
+UniRef50_UPI0003B42E77: flagellar cap protein	0.1027779431
+UniRef50_UPI0003B42E77: flagellar cap protein|unclassified	0.1027779431
+UniRef50_UPI0003B31230: electron transporter RnfB	0.1027765732
+UniRef50_UPI0003B31230: electron transporter RnfB|unclassified	0.1027765732
+UniRef50_Q9PCH9	0.1027682672
+UniRef50_Q9PCH9|unclassified	0.1027682672
+UniRef50_D3B9J3: Electron transfer flavoprotein-ubiquinone oxidoreductase	0.1027663944
+UniRef50_D3B9J3: Electron transfer flavoprotein-ubiquinone oxidoreductase|unclassified	0.1027663944
+UniRef50_X0ZMP3: Marine sediment metagenome DNA, contig: S01H4_L02505 (Fragment)	0.1027612199
+UniRef50_X0ZMP3: Marine sediment metagenome DNA, contig: S01H4_L02505 (Fragment)|unclassified	0.1027612199
+UniRef50_A6TJ92: Quinolinate synthase A	0.1027578309
+UniRef50_A6TJ92: Quinolinate synthase A|unclassified	0.1027578309
+UniRef50_UPI0003C14F42: PREDICTED: diphosphoinositol polyphosphate phosphohydrolase 3-beta-like	0.1027480666
+UniRef50_UPI0003C14F42: PREDICTED: diphosphoinositol polyphosphate phosphohydrolase 3-beta-like|unclassified	0.1027480666
+UniRef50_Q58991: Homoisocitrate dehydrogenase	0.1027452710
+UniRef50_Q58991: Homoisocitrate dehydrogenase|unclassified	0.1027452710
+UniRef50_A0A058ZCB3	0.1027439915
+UniRef50_A0A058ZCB3|unclassified	0.1027439915
+UniRef50_UPI000410106E: beta-methylgalactoside transporter permease	0.1027210652
+UniRef50_UPI000410106E: beta-methylgalactoside transporter permease|unclassified	0.1027210652
+UniRef50_C7JEJ4: Heat shock protein Hsp20/alpha/HspA	0.1027199498
+UniRef50_C7JEJ4: Heat shock protein Hsp20/alpha/HspA|unclassified	0.1027199498
+UniRef50_UPI00039D05BD: 6-carboxy-5,6,7,8-tetrahydropterin synthase	0.1027182072
+UniRef50_UPI00039D05BD: 6-carboxy-5,6,7,8-tetrahydropterin synthase|unclassified	0.1027182072
+UniRef50_Q9CG29: Non-canonical purine NTP pyrophosphatase	0.1027182009
+UniRef50_Q9CG29: Non-canonical purine NTP pyrophosphatase|unclassified	0.1027182009
+UniRef50_UPI0001FFED87: hydrolase	0.1027180589
+UniRef50_UPI0001FFED87: hydrolase|unclassified	0.1027180589
+UniRef50_UPI0003F56C41: hypothetical protein	0.1027099043
+UniRef50_UPI0003F56C41: hypothetical protein|unclassified	0.1027099043
+UniRef50_X6NY29: Cation diffusion facilitator family transporter containing protein	0.1027011918
+UniRef50_X6NY29: Cation diffusion facilitator family transporter containing protein|unclassified	0.1027011918
+UniRef50_Q027L3: Ribonuclease 3	0.1026982103
+UniRef50_Q027L3: Ribonuclease 3|unclassified	0.1026982103
+UniRef50_UPI0004786C6A: hypothetical protein	0.1026973963
+UniRef50_UPI0004786C6A: hypothetical protein|unclassified	0.1026973963
+UniRef50_Q2LVE4: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	0.1026898641
+UniRef50_Q2LVE4: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.1026898641
+UniRef50_UPI0002882818: hypothetical protein, partial	0.1026834472
+UniRef50_UPI0002882818: hypothetical protein, partial|unclassified	0.1026834472
+UniRef50_P74089: Serine acetyltransferase	0.1026750659
+UniRef50_P74089: Serine acetyltransferase|unclassified	0.1026750659
+UniRef50_UPI00046B0BCA: PREDICTED: ral-GDS-related protein-like	0.1026726227
+UniRef50_UPI00046B0BCA: PREDICTED: ral-GDS-related protein-like|unclassified	0.1026726227
+UniRef50_UPI00016A55A2: dual specificity protein phosphatase, partial	0.1026693736
+UniRef50_UPI00016A55A2: dual specificity protein phosphatase, partial|unclassified	0.1026693736
+UniRef50_UPI0003821581: hypothetical protein	0.1026583779
+UniRef50_UPI0003821581: hypothetical protein|unclassified	0.1026583779
+UniRef50_W9A462: Integrase (Modular protein)	0.1026531112
+UniRef50_W9A462: Integrase (Modular protein)|unclassified	0.1026531112
+UniRef50_UPI00036F2C32: hypothetical protein	0.1026480411
+UniRef50_UPI00036F2C32: hypothetical protein|unclassified	0.1026480411
+UniRef50_P65447: Peptide methionine sulfoxide reductase MsrB	0.1026431443
+UniRef50_P65447: Peptide methionine sulfoxide reductase MsrB|unclassified	0.1026431443
+UniRef50_UPI00036DAE2C: hypothetical protein, partial	0.1026407957
+UniRef50_UPI00036DAE2C: hypothetical protein, partial|unclassified	0.1026407957
+UniRef50_A0A011PDU3: Stalked cell differentiation-controlling protein	0.1026376688
+UniRef50_A0A011PDU3: Stalked cell differentiation-controlling protein|unclassified	0.1026376688
+UniRef50_K9H387: Thioesterase superfamily protein	0.1026359933
+UniRef50_K9H387: Thioesterase superfamily protein|unclassified	0.1026359933
+UniRef50_UPI00047B432F: glycerol-3-phosphate dehydrogenase	0.1026304486
+UniRef50_UPI00047B432F: glycerol-3-phosphate dehydrogenase|unclassified	0.1026304486
+UniRef50_UPI000367099C: 30S ribosomal protein S2	0.1026295945
+UniRef50_UPI000367099C: 30S ribosomal protein S2|unclassified	0.1026295945
+UniRef50_UPI00021958FB: inosine-5''''-monophosphate dehydrogenase	0.1026276148
+UniRef50_UPI00021958FB: inosine-5''''-monophosphate dehydrogenase|unclassified	0.1026276148
+UniRef50_UPI000467CE02: hypothetical protein	0.1026269646
+UniRef50_UPI000467CE02: hypothetical protein|unclassified	0.1026269646
+UniRef50_U4Q3Y6: Carboxylesterase	0.1026058810
+UniRef50_U4Q3Y6: Carboxylesterase|unclassified	0.1026058810
+UniRef50_V7Z2T0	0.1026029822
+UniRef50_V7Z2T0|unclassified	0.1026029822
+UniRef50_UPI0001E896F1: ATPase	0.1025976492
+UniRef50_UPI0001E896F1: ATPase|unclassified	0.1025976492
+UniRef50_A3JME5: DNA repair protein RadC	0.1025956017
+UniRef50_A3JME5: DNA repair protein RadC|unclassified	0.1025956017
+UniRef50_UPI000476CC04: thiol-disulfide oxidoreductase	0.1025949256
+UniRef50_UPI000476CC04: thiol-disulfide oxidoreductase|unclassified	0.1025949256
+UniRef50_C5Q427	0.1025858502
+UniRef50_C5Q427|unclassified	0.1025858502
+UniRef50_H9K7G7	0.1025782170
+UniRef50_H9K7G7|unclassified	0.1025782170
+UniRef50_Z2DTZ0	0.1025771372
+UniRef50_Z2DTZ0|unclassified	0.1025771372
+UniRef50_UPI0003F9E42D: hypothetical protein	0.1025766138
+UniRef50_UPI0003F9E42D: hypothetical protein|unclassified	0.1025766138
+UniRef50_C4YAB4: Predicted protein	0.1025734835
+UniRef50_C4YAB4: Predicted protein|unclassified	0.1025734835
+UniRef50_UPI00035CB116: hypothetical protein	0.1025725764
+UniRef50_UPI00035CB116: hypothetical protein|unclassified	0.1025725764
+UniRef50_UPI000262CECB: O-succinylhomoserine sulfhydrylase	0.1025686436
+UniRef50_UPI000262CECB: O-succinylhomoserine sulfhydrylase|unclassified	0.1025686436
+UniRef50_UPI00045DC440: PREDICTED: selenoprotein O isoform X1	0.1025644714
+UniRef50_UPI00045DC440: PREDICTED: selenoprotein O isoform X1|unclassified	0.1025644714
+UniRef50_B2ZY73	0.1025625864
+UniRef50_B2ZY73|unclassified	0.1025625864
+UniRef50_UPI000372EE60: hypothetical protein	0.1025616715
+UniRef50_UPI000372EE60: hypothetical protein|unclassified	0.1025616715
+UniRef50_W0LF80: Esterase	0.1025599670
+UniRef50_W0LF80: Esterase|unclassified	0.1025599670
+UniRef50_UPI000471D0D3: hypothetical protein	0.1025576045
+UniRef50_UPI000471D0D3: hypothetical protein|unclassified	0.1025576045
+UniRef50_D8SFV3	0.1025547538
+UniRef50_D8SFV3|unclassified	0.1025547538
+UniRef50_E3BCS0	0.1025348191
+UniRef50_E3BCS0|unclassified	0.1025348191
+UniRef50_UPI00046B063B: hypothetical protein	0.1025339197
+UniRef50_UPI00046B063B: hypothetical protein|unclassified	0.1025339197
+UniRef50_K0SL40	0.1025311910
+UniRef50_K0SL40|unclassified	0.1025311910
+UniRef50_K8NF74	0.1025296661
+UniRef50_K8NF74|unclassified	0.1025296661
+UniRef50_A0A038G154	0.1025291557
+UniRef50_A0A038G154|unclassified	0.1025291557
+UniRef50_UPI000467D6E6: TetR family transcriptional regulator	0.1025291119
+UniRef50_UPI000467D6E6: TetR family transcriptional regulator|unclassified	0.1025291119
+UniRef50_X1DQJ9: Marine sediment metagenome DNA, contig: S03H2_C00643 (Fragment)	0.1025210065
+UniRef50_X1DQJ9: Marine sediment metagenome DNA, contig: S03H2_C00643 (Fragment)|unclassified	0.1025210065
+UniRef50_Q66AV6: UPF0502 protein YPTB2024	0.1025036251
+UniRef50_Q66AV6: UPF0502 protein YPTB2024|unclassified	0.1025036251
+UniRef50_UPI000263219D: transcriptional regulator	0.1025035860
+UniRef50_UPI000263219D: transcriptional regulator|unclassified	0.1025035860
+UniRef50_T9QJJ3: UPF0192 protein yfaS	0.1024967848
+UniRef50_T9QJJ3: UPF0192 protein yfaS|unclassified	0.1024967848
+UniRef50_Q9ZHY3: P-protein	0.1024931405
+UniRef50_Q9ZHY3: P-protein|unclassified	0.1024931405
+UniRef50_A3Q0M8: SOUL heme-binding protein	0.1024902821
+UniRef50_A3Q0M8: SOUL heme-binding protein|unclassified	0.1024902821
+UniRef50_UPI000463694C: glucose-6-phosphate dehydrogenase, partial	0.1024891245
+UniRef50_UPI000463694C: glucose-6-phosphate dehydrogenase, partial|unclassified	0.1024891245
+UniRef50_UPI000234F3A3: PREDICTED: stromal 70 kDa heat shock-related protein, chloroplastic-like	0.1024821043
+UniRef50_UPI000234F3A3: PREDICTED: stromal 70 kDa heat shock-related protein, chloroplastic-like|unclassified	0.1024821043
+UniRef50_B0REY1: 3-isopropylmalate dehydratase small subunit	0.1024798169
+UniRef50_B0REY1: 3-isopropylmalate dehydratase small subunit|unclassified	0.1024798169
+UniRef50_R1D4R2	0.1024783003
+UniRef50_R1D4R2|unclassified	0.1024783003
+UniRef50_P21826: Malate synthase 2, glyoxysomal	0.1024771908
+UniRef50_P21826: Malate synthase 2, glyoxysomal|unclassified	0.1024771908
+UniRef50_E6SHB0: LmbE family protein	0.1024754597
+UniRef50_E6SHB0: LmbE family protein|unclassified	0.1024754597
+UniRef50_UPI000348D44D: hypothetical protein	0.1024680871
+UniRef50_UPI000348D44D: hypothetical protein|unclassified	0.1024680871
+UniRef50_P51362: Anthranilate synthase component 2	0.1024413851
+UniRef50_P51362: Anthranilate synthase component 2|unclassified	0.1024413851
+UniRef50_Q16RF8: AAEL010974-PA	0.1024386408
+UniRef50_Q16RF8: AAEL010974-PA|unclassified	0.1024386408
+UniRef50_F4APL4	0.1024357098
+UniRef50_F4APL4|unclassified	0.1024357098
+UniRef50_UPI0003A34E46: hypothetical protein	0.1024348675
+UniRef50_UPI0003A34E46: hypothetical protein|unclassified	0.1024348675
+UniRef50_O34346: Mannonate dehydratase	0.1024347837
+UniRef50_O34346: Mannonate dehydratase|unclassified	0.1024347837
+UniRef50_Q3KKE6: Methionyl-tRNA formyltransferase	0.1024276267
+UniRef50_Q3KKE6: Methionyl-tRNA formyltransferase|unclassified	0.1024276267
+UniRef50_A9MXC3: ATPase RavA	0.1024256885
+UniRef50_A9MXC3: ATPase RavA|unclassified	0.1024256885
+UniRef50_Q8ZKW2: ATPase RavA	0.1024256885
+UniRef50_Q8ZKW2: ATPase RavA|unclassified	0.1024256885
+UniRef50_E1Z9V5	0.1024179683
+UniRef50_E1Z9V5|unclassified	0.1024179683
+UniRef50_E9EQZ7	0.1024169632
+UniRef50_E9EQZ7|unclassified	0.1024169632
+UniRef50_A0A017HSW8: Cation transport protein chaC	0.1024169360
+UniRef50_A0A017HSW8: Cation transport protein chaC|unclassified	0.1024169360
+UniRef50_UPI00029AB95D: phenylacetate-CoA oxygenase/reductase subunit PaaK	0.1024149328
+UniRef50_UPI00029AB95D: phenylacetate-CoA oxygenase/reductase subunit PaaK|unclassified	0.1024149328
+UniRef50_UPI0003B5C516: iron ABC transporter permease	0.1024130462
+UniRef50_UPI0003B5C516: iron ABC transporter permease|unclassified	0.1024130462
+UniRef50_UPI000255A325: extracellular solute-binding protein	0.1024098505
+UniRef50_UPI000255A325: extracellular solute-binding protein|unclassified	0.1024098505
+UniRef50_M9R9W8	0.1024074098
+UniRef50_M9R9W8|unclassified	0.1024074098
+UniRef50_S9QW07	0.1024038311
+UniRef50_S9QW07|unclassified	0.1024038311
+UniRef50_UPI000468A41A: hypothetical protein	0.1023992030
+UniRef50_UPI000468A41A: hypothetical protein|unclassified	0.1023992030
+UniRef50_UPI00037397F4: hypothetical protein	0.1023988260
+UniRef50_UPI00037397F4: hypothetical protein|unclassified	0.1023988260
+UniRef50_Q67NS3: Homoserine O-acetyltransferase	0.1023979676
+UniRef50_Q67NS3: Homoserine O-acetyltransferase|unclassified	0.1023979676
+UniRef50_M1E792: Protein tyrosine phosphatase	0.1023956923
+UniRef50_M1E792: Protein tyrosine phosphatase|unclassified	0.1023956923
+UniRef50_UPI00021A5CD9: PREDICTED: hypothetical protein LOC100636889	0.1023949173
+UniRef50_UPI00021A5CD9: PREDICTED: hypothetical protein LOC100636889|unclassified	0.1023949173
+UniRef50_D0D0I6: GumN family protein	0.1023845481
+UniRef50_D0D0I6: GumN family protein|unclassified	0.1023845481
+UniRef50_UPI0003B63445: 3-oxoacyl-ACP synthase	0.1023812764
+UniRef50_UPI0003B63445: 3-oxoacyl-ACP synthase|unclassified	0.1023812764
+UniRef50_K2LKR0: C4-dicarboxylate transport system (Permease small protein)	0.1023769485
+UniRef50_K2LKR0: C4-dicarboxylate transport system (Permease small protein)|unclassified	0.1023769485
+UniRef50_A3TTU7	0.1023762023
+UniRef50_A3TTU7|unclassified	0.1023762023
+UniRef50_A4S9Q7: Predicted protein	0.1023751024
+UniRef50_A4S9Q7: Predicted protein|unclassified	0.1023751024
+UniRef50_U6IMY1: Growth factor receptor bound protein	0.1023535793
+UniRef50_U6IMY1: Growth factor receptor bound protein|unclassified	0.1023535793
+UniRef50_A7T8L0: Predicted protein (Fragment)	0.1023528284
+UniRef50_A7T8L0: Predicted protein (Fragment)|unclassified	0.1023528284
+UniRef50_W0E8G5	0.1023507033
+UniRef50_W0E8G5|unclassified	0.1023507033
+UniRef50_UPI0004761474: 3-hydroxymyristoyl-ACP dehydratase	0.1023427044
+UniRef50_UPI0004761474: 3-hydroxymyristoyl-ACP dehydratase|unclassified	0.1023427044
+UniRef50_A9GPF0	0.1023419124
+UniRef50_A9GPF0|unclassified	0.1023419124
+UniRef50_V6YIB9	0.1023412477
+UniRef50_V6YIB9|unclassified	0.1023412477
+UniRef50_H2CHQ0: Magnesium protoporphyrin chelatase	0.1023392122
+UniRef50_H2CHQ0: Magnesium protoporphyrin chelatase|unclassified	0.1023392122
+UniRef50_Q4FUL2: Tryptophan synthase alpha chain	0.1023373873
+UniRef50_Q4FUL2: Tryptophan synthase alpha chain|unclassified	0.1023373873
+UniRef50_UPI000466B185: hydrolase	0.1023342378
+UniRef50_UPI000466B185: hydrolase|unclassified	0.1023342378
+UniRef50_UPI00035E8A6A: hypothetical protein	0.1023303192
+UniRef50_UPI00035E8A6A: hypothetical protein|unclassified	0.1023303192
+UniRef50_F6EVK9	0.1023241492
+UniRef50_F6EVK9|unclassified	0.1023241492
+UniRef50_O21042: Cytochrome c oxidase subunit 1+2	0.1023200509
+UniRef50_O21042: Cytochrome c oxidase subunit 1+2|unclassified	0.1023200509
+UniRef50_Q8UD04: Ureidoglycolate lyase	0.1023117674
+UniRef50_Q8UD04: Ureidoglycolate lyase|unclassified	0.1023117674
+UniRef50_UPI00047284FE: hypothetical protein	0.1023068811
+UniRef50_UPI00047284FE: hypothetical protein|unclassified	0.1023068811
+UniRef50_UPI00046CDAFE: hypothetical protein	0.1023053313
+UniRef50_UPI00046CDAFE: hypothetical protein|unclassified	0.1023053313
+UniRef50_UPI00047B8795: hypothetical protein	0.1023015332
+UniRef50_UPI00047B8795: hypothetical protein|unclassified	0.1023015332
+UniRef50_UPI00036F6254: hypothetical protein, partial	0.1022991985
+UniRef50_UPI00036F6254: hypothetical protein, partial|unclassified	0.1022991985
+UniRef50_O68109: Ureidoglycolate lyase	0.1022826001
+UniRef50_O68109: Ureidoglycolate lyase|unclassified	0.1022826001
+UniRef50_UPI0003B5B7B4: tRNA delta(2)-isopentenylpyrophosphate transferase, partial	0.1022814680
+UniRef50_UPI0003B5B7B4: tRNA delta(2)-isopentenylpyrophosphate transferase, partial|unclassified	0.1022814680
+UniRef50_A0A022GYN4: tRNA-specific adenosine deaminase	0.1022609134
+UniRef50_A0A022GYN4: tRNA-specific adenosine deaminase|unclassified	0.1022609134
+UniRef50_X5ME30: Oxidoreductase probably involved in sulfite reduction	0.1022597810
+UniRef50_X5ME30: Oxidoreductase probably involved in sulfite reduction|unclassified	0.1022597810
+UniRef50_UPI00037EBF23: hypothetical protein	0.1022526761
+UniRef50_UPI00037EBF23: hypothetical protein|unclassified	0.1022526761
+UniRef50_UPI00044220DD	0.1022513034
+UniRef50_UPI00044220DD|unclassified	0.1022513034
+UniRef50_Q9C550: 2-isopropylmalate synthase 2, chloroplastic	0.1022507487
+UniRef50_Q9C550: 2-isopropylmalate synthase 2, chloroplastic|unclassified	0.1022507487
+UniRef50_UPI000376B5CE: hypothetical protein	0.1022458936
+UniRef50_UPI000376B5CE: hypothetical protein|unclassified	0.1022458936
+UniRef50_A6X575	0.1022385301
+UniRef50_A6X575|unclassified	0.1022385301
+UniRef50_UPI00046E6BB7: hypothetical protein	0.1022357687
+UniRef50_UPI00046E6BB7: hypothetical protein|unclassified	0.1022357687
+UniRef50_UPI00036A311B: hypothetical protein	0.1022252776
+UniRef50_UPI00036A311B: hypothetical protein|unclassified	0.1022252776
+UniRef50_I3IB53	0.1022250363
+UniRef50_I3IB53|unclassified	0.1022250363
+UniRef50_Q9A0H4: ATP-dependent helicase/deoxyribonuclease subunit B	0.1022234088
+UniRef50_Q9A0H4: ATP-dependent helicase/deoxyribonuclease subunit B|unclassified	0.1022234088
+UniRef50_UPI00036B4081: hypothetical protein	0.1022226577
+UniRef50_UPI00036B4081: hypothetical protein|unclassified	0.1022226577
+UniRef50_I7ER19: Porin	0.1022221506
+UniRef50_I7ER19: Porin|unclassified	0.1022221506
+UniRef50_F9KKE5	0.1022141383
+UniRef50_F9KKE5|unclassified	0.1022141383
+UniRef50_R1CLH6: Glycine cleavage system protein H	0.1022108946
+UniRef50_R1CLH6: Glycine cleavage system protein H|unclassified	0.1022108946
+UniRef50_UPI00046D9084: hypothetical protein	0.1022098767
+UniRef50_UPI00046D9084: hypothetical protein|unclassified	0.1022098767
+UniRef50_P16923: N-(5'-phosphoribosyl)anthranilate isomerase	0.1022026746
+UniRef50_P16923: N-(5'-phosphoribosyl)anthranilate isomerase|unclassified	0.1022026746
+UniRef50_W6ZVR9	0.1022025933
+UniRef50_W6ZVR9|unclassified	0.1022025933
+UniRef50_U6GI18	0.1021930106
+UniRef50_U6GI18|unclassified	0.1021930106
+UniRef50_UPI0004747175: penicillin-binding protein	0.1021891267
+UniRef50_UPI0004747175: penicillin-binding protein|unclassified	0.1021891267
+UniRef50_UPI00046F6598: hypothetical protein	0.1021884867
+UniRef50_UPI00046F6598: hypothetical protein|unclassified	0.1021884867
+UniRef50_UPI0003EDBF32: type III secretion system protein, partial	0.1021844421
+UniRef50_UPI0003EDBF32: type III secretion system protein, partial|unclassified	0.1021844421
+UniRef50_P77966: DNA gyrase subunit B	0.1021825739
+UniRef50_P77966: DNA gyrase subunit B|unclassified	0.1021825739
+UniRef50_UPI000467C1DB: hypothetical protein	0.1021810282
+UniRef50_UPI000467C1DB: hypothetical protein|unclassified	0.1021810282
+UniRef50_UPI00047207F5: outer membrane channel protein, partial	0.1021807117
+UniRef50_UPI00047207F5: outer membrane channel protein, partial|unclassified	0.1021807117
+UniRef50_UPI0003A3F9EA: dTDP-4-dehydrorhamnose 3,5-epimerase	0.1021710653
+UniRef50_UPI0003A3F9EA: dTDP-4-dehydrorhamnose 3,5-epimerase|unclassified	0.1021710653
+UniRef50_UPI0003633CD3: hypothetical protein	0.1021650982
+UniRef50_UPI0003633CD3: hypothetical protein|unclassified	0.1021650982
+UniRef50_UPI000308CCAF: hypothetical protein	0.1021647785
+UniRef50_UPI000308CCAF: hypothetical protein|unclassified	0.1021647785
+UniRef50_F4CL07	0.1021549753
+UniRef50_F4CL07|unclassified	0.1021549753
+UniRef50_UPI000373C739: hypothetical protein	0.1021510875
+UniRef50_UPI000373C739: hypothetical protein|unclassified	0.1021510875
+UniRef50_A4SWK8: Tripartite ATP-independent periplasmic transporter, DctQ component	0.1021472310
+UniRef50_A4SWK8: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	0.1021472310
+UniRef50_B7VL74	0.1021438129
+UniRef50_B7VL74|unclassified	0.1021438129
+UniRef50_E6SBU2	0.1021352397
+UniRef50_E6SBU2|unclassified	0.1021352397
+UniRef50_UPI000469FCB3: hypothetical protein, partial	0.1021295121
+UniRef50_UPI000469FCB3: hypothetical protein, partial|unclassified	0.1021295121
+UniRef50_UPI00037DEE4A: hypothetical protein	0.1021204080
+UniRef50_UPI00037DEE4A: hypothetical protein|unclassified	0.1021204080
+UniRef50_UPI00046263A7: PREDICTED: protein MTO1 homolog, mitochondrial	0.1021115290
+UniRef50_UPI00046263A7: PREDICTED: protein MTO1 homolog, mitochondrial|unclassified	0.1021115290
+UniRef50_UPI0003C1083C	0.1021114474
+UniRef50_UPI0003C1083C|unclassified	0.1021114474
+UniRef50_UPI0003653228: hypothetical protein	0.1021064623
+UniRef50_UPI0003653228: hypothetical protein|unclassified	0.1021064623
+UniRef50_V4Q8M8	0.1021037392
+UniRef50_V4Q8M8|unclassified	0.1021037392
+UniRef50_A7FJU4: Nicotinate phosphoribosyltransferase	0.1021020301
+UniRef50_A7FJU4: Nicotinate phosphoribosyltransferase|unclassified	0.1021020301
+UniRef50_R6FUV1: Transposase	0.1021005119
+UniRef50_R6FUV1: Transposase|unclassified	0.1021005119
+UniRef50_P59011: Bifunctional protein PyrR	0.1020975567
+UniRef50_P59011: Bifunctional protein PyrR|unclassified	0.1020975567
+UniRef50_UPI00035C1D9A: hypothetical protein	0.1020957392
+UniRef50_UPI00035C1D9A: hypothetical protein|unclassified	0.1020957392
+UniRef50_UPI0004748C22: SAM-dependent methyltransferase	0.1020946116
+UniRef50_UPI0004748C22: SAM-dependent methyltransferase|unclassified	0.1020946116
+UniRef50_K2J734	0.1020898980
+UniRef50_K2J734|unclassified	0.1020898980
+UniRef50_UPI000226002A: glycine betaine ABC transporter substrate-binding protein, partial	0.1020836932
+UniRef50_UPI000226002A: glycine betaine ABC transporter substrate-binding protein, partial|unclassified	0.1020836932
+UniRef50_B5I3Q1: Predicted protein	0.1020778559
+UniRef50_B5I3Q1: Predicted protein|unclassified	0.1020778559
+UniRef50_UPI000359EAD9: PREDICTED: serine/arginine repetitive matrix protein 1-like isoform X1	0.1020738495
+UniRef50_UPI000359EAD9: PREDICTED: serine/arginine repetitive matrix protein 1-like isoform X1|unclassified	0.1020738495
+UniRef50_UPI0002891D1C: hypothetical protein	0.1020734251
+UniRef50_UPI0002891D1C: hypothetical protein|unclassified	0.1020734251
+UniRef50_UPI00047B4451: hypothetical protein	0.1020630255
+UniRef50_UPI00047B4451: hypothetical protein|unclassified	0.1020630255
+UniRef50_UPI0001E2FB93: ABC transporter	0.1020542332
+UniRef50_UPI0001E2FB93: ABC transporter|unclassified	0.1020542332
+UniRef50_D7AZZ3: ABC-type xylose transport system periplasmic component	0.1020532292
+UniRef50_D7AZZ3: ABC-type xylose transport system periplasmic component|unclassified	0.1020532292
+UniRef50_Q9KBM8: Cobyrinic acid A,C-diamide synthase	0.1020491736
+UniRef50_Q9KBM8: Cobyrinic acid A,C-diamide synthase|unclassified	0.1020491736
+UniRef50_UPI000368DB65: hypothetical protein	0.1020478366
+UniRef50_UPI000368DB65: hypothetical protein|unclassified	0.1020478366
+UniRef50_UPI00047D0C79: hypothetical protein	0.1020393173
+UniRef50_UPI00047D0C79: hypothetical protein|unclassified	0.1020393173
+UniRef50_UPI000417B65E: hypothetical protein	0.1020363194
+UniRef50_UPI000417B65E: hypothetical protein|unclassified	0.1020363194
+UniRef50_UPI00047ECC3E: 4-alpha-glucanotransferase	0.1020261319
+UniRef50_UPI00047ECC3E: 4-alpha-glucanotransferase|unclassified	0.1020261319
+UniRef50_N0CYG6: Esterase/lipase/thioesterase	0.1020191627
+UniRef50_N0CYG6: Esterase/lipase/thioesterase|unclassified	0.1020191627
+UniRef50_B8JBA1: Transcriptional regulator, Fis family	0.1020187998
+UniRef50_B8JBA1: Transcriptional regulator, Fis family|unclassified	0.1020187998
+UniRef50_UPI00047CD1E7: hypothetical protein	0.1020145303
+UniRef50_UPI00047CD1E7: hypothetical protein|unclassified	0.1020145303
+UniRef50_P54471: tRNA (adenine(22)-N(1))-methyltransferase	0.1020124957
+UniRef50_P54471: tRNA (adenine(22)-N(1))-methyltransferase|unclassified	0.1020124957
+UniRef50_B2FNN8: UDP-N-acetylmuramate--L-alanine ligase	0.1020051131
+UniRef50_B2FNN8: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.1020051131
+UniRef50_UPI0002559A3B: phosphonate metabolism protein PhnM	0.1020029126
+UniRef50_UPI0002559A3B: phosphonate metabolism protein PhnM|unclassified	0.1020029126
+UniRef50_UPI0004198CEF: phosphohydrolase	0.1019997216
+UniRef50_UPI0004198CEF: phosphohydrolase|unclassified	0.1019997216
+UniRef50_UPI000465B5CC: dienelactone hydrolase	0.1019954431
+UniRef50_UPI000465B5CC: dienelactone hydrolase|unclassified	0.1019954431
+UniRef50_UPI0003942956: galactose-1-epimerase	0.1019893846
+UniRef50_UPI0003942956: galactose-1-epimerase|unclassified	0.1019893846
+UniRef50_UPI0003637A82: hypothetical protein	0.1019864414
+UniRef50_UPI0003637A82: hypothetical protein|unclassified	0.1019864414
+UniRef50_X1V9R2: Marine sediment metagenome DNA, contig: S12H4_S11159	0.1019804065
+UniRef50_X1V9R2: Marine sediment metagenome DNA, contig: S12H4_S11159|unclassified	0.1019804065
+UniRef50_UPI000288786A: cold-shock DNA-binding domain-containing protein	0.1019803642
+UniRef50_UPI000288786A: cold-shock DNA-binding domain-containing protein|unclassified	0.1019803642
+UniRef50_UPI000287C124: MiaB-like tRNA modifying enzyme, partial	0.1019787464
+UniRef50_UPI000287C124: MiaB-like tRNA modifying enzyme, partial|unclassified	0.1019787464
+UniRef50_UPI0003811C5C: hypothetical protein	0.1019683974
+UniRef50_UPI0003811C5C: hypothetical protein|unclassified	0.1019683974
+UniRef50_I9LWH1: Ethanolamine utilization protein EutJ family protein	0.1019661164
+UniRef50_I9LWH1: Ethanolamine utilization protein EutJ family protein|unclassified	0.1019661164
+UniRef50_UPI0004710E39: epoxyqueuosine reductase, partial	0.1019614106
+UniRef50_UPI0004710E39: epoxyqueuosine reductase, partial|unclassified	0.1019614106
+UniRef50_A1S9E8	0.1019575396
+UniRef50_A1S9E8|unclassified	0.1019575396
+UniRef50_K1SXZ9: Excinuclease ABC A subunit (Fragment)	0.1019538517
+UniRef50_K1SXZ9: Excinuclease ABC A subunit (Fragment)|unclassified	0.1019538517
+UniRef50_N1LUM0: VrrA protein	0.1019456570
+UniRef50_N1LUM0: VrrA protein|unclassified	0.1019456570
+UniRef50_D5ENZ6: ABC-2 type transporter	0.1019453700
+UniRef50_D5ENZ6: ABC-2 type transporter|unclassified	0.1019453700
+UniRef50_T0UJ96: Late competence protein ComEC, DNA transport	0.1019421312
+UniRef50_T0UJ96: Late competence protein ComEC, DNA transport|unclassified	0.1019421312
+UniRef50_UPI00046A74CA: quinone oxidoreductase	0.1019406884
+UniRef50_UPI00046A74CA: quinone oxidoreductase|unclassified	0.1019406884
+UniRef50_O52618: Nod factor export ATP-binding protein I	0.1019376703
+UniRef50_O52618: Nod factor export ATP-binding protein I|unclassified	0.1019376703
+UniRef50_K0S5A9	0.1019294544
+UniRef50_K0S5A9|unclassified	0.1019294544
+UniRef50_Q9PHZ7: Phosphoribosylformylglycinamidine synthase 1	0.1019283190
+UniRef50_Q9PHZ7: Phosphoribosylformylglycinamidine synthase 1|unclassified	0.1019283190
+UniRef50_UPI0003AB3C4C: hypothetical protein	0.1019193066
+UniRef50_UPI0003AB3C4C: hypothetical protein|unclassified	0.1019193066
+UniRef50_UPI00026292B6: oxidoreductase domain-containing protein	0.1019156820
+UniRef50_UPI00026292B6: oxidoreductase domain-containing protein|unclassified	0.1019156820
+UniRef50_UPI00036D7F3E: hypothetical protein	0.1019016809
+UniRef50_UPI00036D7F3E: hypothetical protein|unclassified	0.1019016809
+UniRef50_U3AH58: ABC-type dipeptide transport system, periplasmic component	0.1018974192
+UniRef50_U3AH58: ABC-type dipeptide transport system, periplasmic component|unclassified	0.1018974192
+UniRef50_UPI0003298F98: PREDICTED: magnesium-transporting ATPase, P-type 1-like	0.1018947393
+UniRef50_UPI0003298F98: PREDICTED: magnesium-transporting ATPase, P-type 1-like|unclassified	0.1018947393
+UniRef50_UPI000407BB64: hypothetical protein	0.1018894148
+UniRef50_UPI000407BB64: hypothetical protein|unclassified	0.1018894148
+UniRef50_A4SZE3: Thioesterase superfamily protein	0.1018765879
+UniRef50_A4SZE3: Thioesterase superfamily protein|unclassified	0.1018765879
+UniRef50_UPI00047A04D5: toxin Fic	0.1018708880
+UniRef50_UPI00047A04D5: toxin Fic|unclassified	0.1018708880
+UniRef50_B0UIW9: Flagellar hook capping protein	0.1018588460
+UniRef50_B0UIW9: Flagellar hook capping protein|unclassified	0.1018588460
+UniRef50_UPI00036BC4EC: hypothetical protein	0.1018555817
+UniRef50_UPI00036BC4EC: hypothetical protein|unclassified	0.1018555817
+UniRef50_Q5SKN9: Long-chain-fatty-acid--CoA ligase	0.1018501833
+UniRef50_Q5SKN9: Long-chain-fatty-acid--CoA ligase|unclassified	0.1018501833
+UniRef50_C9A5J2	0.1018484517
+UniRef50_C9A5J2|unclassified	0.1018484517
+UniRef50_UPI000378C160: hypothetical protein	0.1018403239
+UniRef50_UPI000378C160: hypothetical protein|unclassified	0.1018403239
+UniRef50_UPI00036936B1: hypothetical protein	0.1018357029
+UniRef50_UPI00036936B1: hypothetical protein|unclassified	0.1018357029
+UniRef50_UPI00047D6F6F: short-chain dehydrogenase	0.1018312123
+UniRef50_UPI00047D6F6F: short-chain dehydrogenase|unclassified	0.1018312123
+UniRef50_Z2D7G0	0.1018287661
+UniRef50_Z2D7G0|unclassified	0.1018287661
+UniRef50_E4Q4K1: Transketolase domain-containing protein	0.1018219358
+UniRef50_E4Q4K1: Transketolase domain-containing protein|unclassified	0.1018219358
+UniRef50_UPI000361B0A6: hypothetical protein	0.1018217361
+UniRef50_UPI000361B0A6: hypothetical protein|unclassified	0.1018217361
+UniRef50_UPI00039DBFBF: MULTISPECIES: aspartyl/glutamyl-tRNA amidotransferase subunit B	0.1018166197
+UniRef50_UPI00039DBFBF: MULTISPECIES: aspartyl/glutamyl-tRNA amidotransferase subunit B|unclassified	0.1018166197
+UniRef50_UPI00016AEBA1: putative protein-disulfide isomerase	0.1018106243
+UniRef50_UPI00016AEBA1: putative protein-disulfide isomerase|unclassified	0.1018106243
+UniRef50_W8UIK7	0.1018077809
+UniRef50_W8UIK7|unclassified	0.1018077809
+UniRef50_Z5KKF6: Type IV conjugative transfer system protein TraV	0.1018059503
+UniRef50_Z5KKF6: Type IV conjugative transfer system protein TraV|unclassified	0.1018059503
+UniRef50_UPI000374013E: hypothetical protein	0.1017872383
+UniRef50_UPI000374013E: hypothetical protein|unclassified	0.1017872383
+UniRef50_UPI0004701497: hypothetical protein	0.1017844615
+UniRef50_UPI0004701497: hypothetical protein|unclassified	0.1017844615
+UniRef50_UPI00036344A4: hypothetical protein	0.1017830562
+UniRef50_UPI00036344A4: hypothetical protein|unclassified	0.1017830562
+UniRef50_UPI000372D76B: hypothetical protein	0.1017663439
+UniRef50_UPI000372D76B: hypothetical protein|unclassified	0.1017663439
+UniRef50_B2IPX4: ATP-dependent helicase/deoxyribonuclease subunit B	0.1017636809
+UniRef50_B2IPX4: ATP-dependent helicase/deoxyribonuclease subunit B|unclassified	0.1017636809
+UniRef50_D1RMS2: Glyoxalase family protein	0.1017615714
+UniRef50_D1RMS2: Glyoxalase family protein|unclassified	0.1017615714
+UniRef50_D2SD20: TRAP transporter solute receptor, TAXI family	0.1017608636
+UniRef50_D2SD20: TRAP transporter solute receptor, TAXI family|unclassified	0.1017608636
+UniRef50_D9X4Y9: Secreted protein	0.1017554554
+UniRef50_D9X4Y9: Secreted protein|unclassified	0.1017554554
+UniRef50_UPI0002626EA5: hypothetical protein	0.1017507587
+UniRef50_UPI0002626EA5: hypothetical protein|unclassified	0.1017507587
+UniRef50_Q96RP9: Elongation factor G, mitochondrial	0.1017438277
+UniRef50_Q96RP9: Elongation factor G, mitochondrial|unclassified	0.1017438277
+UniRef50_Q0BYA7: DNA-directed RNA polymerase subunit beta	0.1017429493
+UniRef50_Q0BYA7: DNA-directed RNA polymerase subunit beta|unclassified	0.1017429493
+UniRef50_UPI0003B4C7B5: cell division protein FtsZ	0.1017415780
+UniRef50_UPI0003B4C7B5: cell division protein FtsZ|unclassified	0.1017415780
+UniRef50_UPI00035F4D6D: hypothetical protein	0.1017414260
+UniRef50_UPI00035F4D6D: hypothetical protein|unclassified	0.1017414260
+UniRef50_UPI00046309F9: mechanosensitive ion channel protein MscS	0.1017330873
+UniRef50_UPI00046309F9: mechanosensitive ion channel protein MscS|unclassified	0.1017330873
+UniRef50_Q2LUT2: Glutamate--tRNA ligase 2	0.1017269382
+UniRef50_Q2LUT2: Glutamate--tRNA ligase 2|unclassified	0.1017269382
+UniRef50_B2VG79	0.1017179332
+UniRef50_B2VG79|unclassified	0.1017179332
+UniRef50_Q4K5Z7: Hemin import ATP-binding protein HmuV	0.1017174077
+UniRef50_Q4K5Z7: Hemin import ATP-binding protein HmuV|unclassified	0.1017174077
+UniRef50_B9KZF8: Polyamine ABC trasnporter, periplasmic polyamine-binding protein	0.1017131120
+UniRef50_B9KZF8: Polyamine ABC trasnporter, periplasmic polyamine-binding protein|unclassified	0.1017131120
+UniRef50_A0A023CG31	0.1017104066
+UniRef50_A0A023CG31|unclassified	0.1017104066
+UniRef50_UPI00040E9710: cystathionine gamma-synthase	0.1017101522
+UniRef50_UPI00040E9710: cystathionine gamma-synthase|unclassified	0.1017101522
+UniRef50_R4GFK2	0.1017022363
+UniRef50_R4GFK2|unclassified	0.1017022363
+UniRef50_UPI00037B4330: hypothetical protein	0.1016981947
+UniRef50_UPI00037B4330: hypothetical protein|unclassified	0.1016981947
+UniRef50_UPI0002492D9C: regulator	0.1016957728
+UniRef50_UPI0002492D9C: regulator|unclassified	0.1016957728
+UniRef50_R1E0R8	0.1016920873
+UniRef50_R1E0R8|unclassified	0.1016920873
+UniRef50_UPI000375EF4E: hypothetical protein, partial	0.1016892488
+UniRef50_UPI000375EF4E: hypothetical protein, partial|unclassified	0.1016892488
+UniRef50_W1C0C7	0.1016892052
+UniRef50_W1C0C7|unclassified	0.1016892052
+UniRef50_B7EEW3: Os09g0325300 protein	0.1016889422
+UniRef50_B7EEW3: Os09g0325300 protein|unclassified	0.1016889422
+UniRef50_P37521	0.1016845219
+UniRef50_P37521|unclassified	0.1016845219
+UniRef50_Q7NF32: Cobyrinic acid A,C-diamide synthase	0.1016819276
+UniRef50_Q7NF32: Cobyrinic acid A,C-diamide synthase|unclassified	0.1016819276
+UniRef50_UPI00047EA808: hypothetical protein	0.1016793558
+UniRef50_UPI00047EA808: hypothetical protein|unclassified	0.1016793558
+UniRef50_D2Q0P5	0.1016776812
+UniRef50_D2Q0P5|unclassified	0.1016776812
+UniRef50_UPI0004745B47: RNA-directed DNA polymerase, partial	0.1016744132
+UniRef50_UPI0004745B47: RNA-directed DNA polymerase, partial|unclassified	0.1016744132
+UniRef50_A0A011T4A5	0.1016724211
+UniRef50_A0A011T4A5|unclassified	0.1016724211
+UniRef50_UPI0003B6DF5B: hemin receptor	0.1016704090
+UniRef50_UPI0003B6DF5B: hemin receptor|unclassified	0.1016704090
+UniRef50_UPI00024904D0: DSBA oxidoreductase	0.1016590216
+UniRef50_UPI00024904D0: DSBA oxidoreductase|unclassified	0.1016590216
+UniRef50_X1CWN1: Marine sediment metagenome DNA, contig: S01H4_S18764 (Fragment)	0.1016580718
+UniRef50_X1CWN1: Marine sediment metagenome DNA, contig: S01H4_S18764 (Fragment)|unclassified	0.1016580718
+UniRef50_UPI0003B5B5B4: heme biosynthesis protein HemY	0.1016533584
+UniRef50_UPI0003B5B5B4: heme biosynthesis protein HemY|unclassified	0.1016533584
+UniRef50_UPI0003B75293: hypothetical protein	0.1016409922
+UniRef50_UPI0003B75293: hypothetical protein|unclassified	0.1016409922
+UniRef50_UPI00036CFE43: 30S ribosomal protein S4	0.1016370328
+UniRef50_UPI00036CFE43: 30S ribosomal protein S4|unclassified	0.1016370328
+UniRef50_UPI00046F57F5: hypothetical protein	0.1016350602
+UniRef50_UPI00046F57F5: hypothetical protein|unclassified	0.1016350602
+UniRef50_Q2CKC0	0.1016272887
+UniRef50_Q2CKC0|unclassified	0.1016272887
+UniRef50_Q9V1I6: N-acetyl-gamma-glutamyl-phosphate/N-acetyl-gamma-aminoadipyl-phosphate reductase	0.1016266391
+UniRef50_Q9V1I6: N-acetyl-gamma-glutamyl-phosphate/N-acetyl-gamma-aminoadipyl-phosphate reductase|unclassified	0.1016266391
+UniRef50_UPI00035E6A89: hypothetical protein, partial	0.1016264460
+UniRef50_UPI00035E6A89: hypothetical protein, partial|unclassified	0.1016264460
+UniRef50_UPI0003B4310B: sugar ABC transporter ATP-binding protein	0.1016243484
+UniRef50_UPI0003B4310B: sugar ABC transporter ATP-binding protein|unclassified	0.1016243484
+UniRef50_A3WG91	0.1016220225
+UniRef50_A3WG91|unclassified	0.1016220225
+UniRef50_UPI0001E2FBC7: TetR family transcriptional regulator	0.1016184388
+UniRef50_UPI0001E2FBC7: TetR family transcriptional regulator|unclassified	0.1016184388
+UniRef50_UPI0004678984: MULTISPECIES: methionine ABC transporter ATP-binding protein	0.1016174107
+UniRef50_UPI0004678984: MULTISPECIES: methionine ABC transporter ATP-binding protein|unclassified	0.1016174107
+UniRef50_U6JWI4	0.1016148612
+UniRef50_U6JWI4|unclassified	0.1016148612
+UniRef50_UPI00025560C0: dihydropyrimidine dehydrogenase subunit A	0.1016133224
+UniRef50_UPI00025560C0: dihydropyrimidine dehydrogenase subunit A|unclassified	0.1016133224
+UniRef50_R7CXR5	0.1016116738
+UniRef50_R7CXR5|unclassified	0.1016116738
+UniRef50_Q58083: Probable ATP-dependent RNA helicase MJ0669	0.1016025854
+UniRef50_Q58083: Probable ATP-dependent RNA helicase MJ0669|unclassified	0.1016025854
+UniRef50_UPI00046D5089: hypothetical protein	0.1015986156
+UniRef50_UPI00046D5089: hypothetical protein|unclassified	0.1015986156
+UniRef50_D5AT13: Tripartite ATP-independent periplasmic transporter, DctQ-1 component	0.1015946501
+UniRef50_D5AT13: Tripartite ATP-independent periplasmic transporter, DctQ-1 component|unclassified	0.1015946501
+UniRef50_UPI00039D7BB6: phospholipase	0.1015887480
+UniRef50_UPI00039D7BB6: phospholipase|unclassified	0.1015887480
+UniRef50_W3RDE1: Topology modulation protein	0.1015877937
+UniRef50_W3RDE1: Topology modulation protein|unclassified	0.1015877937
+UniRef50_UPI00031337DA: hypothetical protein	0.1015857776
+UniRef50_UPI00031337DA: hypothetical protein|unclassified	0.1015857776
+UniRef50_UPI0003AA9614: ureidoglycolate hydrolase	0.1015721642
+UniRef50_UPI0003AA9614: ureidoglycolate hydrolase|unclassified	0.1015721642
+UniRef50_B7QS16: Molybdopterin-guanine dinucleotide biosynthesis protein A	0.1015547357
+UniRef50_B7QS16: Molybdopterin-guanine dinucleotide biosynthesis protein A|unclassified	0.1015547357
+UniRef50_UPI0002BB1D39: hypothetical protein	0.1015542487
+UniRef50_UPI0002BB1D39: hypothetical protein|unclassified	0.1015542487
+UniRef50_UPI00047A008B: membrane protein	0.1015452069
+UniRef50_UPI00047A008B: membrane protein|unclassified	0.1015452069
+UniRef50_A6Q9M2: Imidazoleglycerol-phosphate dehydratase	0.1015386703
+UniRef50_A6Q9M2: Imidazoleglycerol-phosphate dehydratase|unclassified	0.1015386703
+UniRef50_A3SGH6: MJ0042 family protein finger-like domain protein	0.1015378068
+UniRef50_A3SGH6: MJ0042 family protein finger-like domain protein|unclassified	0.1015378068
+UniRef50_H0WAN9	0.1015350207
+UniRef50_H0WAN9|unclassified	0.1015350207
+UniRef50_G0CL71	0.1015309796
+UniRef50_G0CL71|unclassified	0.1015309796
+UniRef50_H9K5C4	0.1015301070
+UniRef50_H9K5C4|unclassified	0.1015301070
+UniRef50_V2QDP9	0.1015299755
+UniRef50_V2QDP9|unclassified	0.1015299755
+UniRef50_D7CTM3	0.1015291181
+UniRef50_D7CTM3|unclassified	0.1015291181
+UniRef50_K8GQY4: Putative virion core protein (Lumpy skin disease virus)	0.1015269981
+UniRef50_K8GQY4: Putative virion core protein (Lumpy skin disease virus)|unclassified	0.1015269981
+UniRef50_UPI000289D6D0: transcriptional regulator	0.1015269674
+UniRef50_UPI000289D6D0: transcriptional regulator|unclassified	0.1015269674
+UniRef50_V9DII8	0.1015221019
+UniRef50_V9DII8|unclassified	0.1015221019
+UniRef50_T0YAB2: Pyruvate:ferredoxin (Flavodoxin) oxidoreductase (Fragment)	0.1015210063
+UniRef50_T0YAB2: Pyruvate:ferredoxin (Flavodoxin) oxidoreductase (Fragment)|unclassified	0.1015210063
+UniRef50_B8ISV4: Trans-aconitate 2-methyltransferase	0.1015052788
+UniRef50_B8ISV4: Trans-aconitate 2-methyltransferase|unclassified	0.1015052788
+UniRef50_UPI00015869B7: hypothetical protein BC1G_15776	0.1015048892
+UniRef50_UPI00015869B7: hypothetical protein BC1G_15776|unclassified	0.1015048892
+UniRef50_Q4FVF2	0.1015032835
+UniRef50_Q4FVF2|unclassified	0.1015032835
+UniRef50_UPI00036126FC: hypothetical protein	0.1015029036
+UniRef50_UPI00036126FC: hypothetical protein|unclassified	0.1015029036
+UniRef50_UPI00036817A2: hypothetical protein	0.1014932908
+UniRef50_UPI00036817A2: hypothetical protein|unclassified	0.1014932908
+UniRef50_A0A059INH8: Rrf2 family transcriptional regulator	0.1014782316
+UniRef50_A0A059INH8: Rrf2 family transcriptional regulator|unclassified	0.1014782316
+UniRef50_UPI0003B31378: aldolase	0.1014739386
+UniRef50_UPI0003B31378: aldolase|unclassified	0.1014739386
+UniRef50_A0A017HGM4: Putative outer membrane lipoprotein	0.1014707686
+UniRef50_A0A017HGM4: Putative outer membrane lipoprotein|unclassified	0.1014707686
+UniRef50_M4UM17: ABC-type nitrate/sulfonate/bicarbonate transport systems, periplasmic component	0.1014659145
+UniRef50_M4UM17: ABC-type nitrate/sulfonate/bicarbonate transport systems, periplasmic component|unclassified	0.1014659145
+UniRef50_E6WYY4: SEC-C motif domain protein	0.1014640502
+UniRef50_E6WYY4: SEC-C motif domain protein|unclassified	0.1014640502
+UniRef50_W7Z6N4: Ribonuclease PH	0.1014631802
+UniRef50_W7Z6N4: Ribonuclease PH|unclassified	0.1014631802
+UniRef50_K2QZQ1	0.1014595863
+UniRef50_K2QZQ1|unclassified	0.1014595863
+UniRef50_UPI000443ABD2: PREDICTED: serine protease 27	0.1014555207
+UniRef50_UPI000443ABD2: PREDICTED: serine protease 27|unclassified	0.1014555207
+UniRef50_A9RAH6: Probable intron-encoded endonuclease aI3	0.1014527011
+UniRef50_A9RAH6: Probable intron-encoded endonuclease aI3|unclassified	0.1014527011
+UniRef50_R6EG03: Serine type site-specific recombinase	0.1014503796
+UniRef50_R6EG03: Serine type site-specific recombinase|unclassified	0.1014503796
+UniRef50_A9KBY5: Lipoprotein	0.1014500900
+UniRef50_A9KBY5: Lipoprotein|unclassified	0.1014500900
+UniRef50_O34912: Histidine biosynthesis bifunctional protein HisIE	0.1014498464
+UniRef50_O34912: Histidine biosynthesis bifunctional protein HisIE|unclassified	0.1014498464
+UniRef50_R7YC06: Cytosine deaminase	0.1014285519
+UniRef50_R7YC06: Cytosine deaminase|unclassified	0.1014285519
+UniRef50_UPI000470DDFF: hypothetical protein	0.1014240251
+UniRef50_UPI000470DDFF: hypothetical protein|unclassified	0.1014240251
+UniRef50_M6LVI5: MAPEG family protein	0.1014237717
+UniRef50_M6LVI5: MAPEG family protein|unclassified	0.1014237717
+UniRef50_Q8YH17: Methionine--tRNA ligase	0.1014227479
+UniRef50_Q8YH17: Methionine--tRNA ligase|unclassified	0.1014227479
+UniRef50_Q56002: Serine acetyltransferase	0.1014163484
+UniRef50_Q56002: Serine acetyltransferase|unclassified	0.1014163484
+UniRef50_G9WXS7	0.1014046790
+UniRef50_G9WXS7|unclassified	0.1014046790
+UniRef50_UPI000475FA4D: MULTISPECIES: hypothetical protein	0.1014035172
+UniRef50_UPI000475FA4D: MULTISPECIES: hypothetical protein|unclassified	0.1014035172
+UniRef50_UPI000423DD6A: transcriptional regulator	0.1014011878
+UniRef50_UPI000423DD6A: transcriptional regulator|unclassified	0.1014011878
+UniRef50_UPI000401DCEF: hypothetical protein	0.1014000573
+UniRef50_UPI000401DCEF: hypothetical protein|unclassified	0.1014000573
+UniRef50_E1S5N8: Insertion element IS2 transposase InsD	0.1013990039
+UniRef50_E1S5N8: Insertion element IS2 transposase InsD|unclassified	0.1013990039
+UniRef50_UPI0003786AD2: hypothetical protein	0.1013961454
+UniRef50_UPI0003786AD2: hypothetical protein|unclassified	0.1013961454
+UniRef50_Q9XC21: Protein NrdI	0.1013800093
+UniRef50_Q9XC21: Protein NrdI|unclassified	0.1013800093
+UniRef50_UPI000477DE12: hypothetical protein	0.1013762516
+UniRef50_UPI000477DE12: hypothetical protein|unclassified	0.1013762516
+UniRef50_A0A011PJV1: Dihydrofolate reductase	0.1013566578
+UniRef50_A0A011PJV1: Dihydrofolate reductase|unclassified	0.1013566578
+UniRef50_UPI0003AEBC27: PREDICTED: methionine--tRNA ligase, cytoplasmic-like	0.1013551585
+UniRef50_UPI0003AEBC27: PREDICTED: methionine--tRNA ligase, cytoplasmic-like|unclassified	0.1013551585
+UniRef50_A1T1H6	0.1013500880
+UniRef50_A1T1H6|unclassified	0.1013500880
+UniRef50_UPI00037B23D6: hypothetical protein	0.1013488082
+UniRef50_UPI00037B23D6: hypothetical protein|unclassified	0.1013488082
+UniRef50_I9MZI2: 1-5-phosphoribosyl-5-(5-phosphoribosylamino)methylideneamino imidazole-4-carboxamide isomerase (Fragment)	0.1013478555
+UniRef50_I9MZI2: 1-5-phosphoribosyl-5-(5-phosphoribosylamino)methylideneamino imidazole-4-carboxamide isomerase (Fragment)|unclassified	0.1013478555
+UniRef50_UPI00036B7C8D: hypothetical protein	0.1013435322
+UniRef50_UPI00036B7C8D: hypothetical protein|unclassified	0.1013435322
+UniRef50_UPI00036BB5D9: hypothetical protein	0.1013429572
+UniRef50_UPI00036BB5D9: hypothetical protein|unclassified	0.1013429572
+UniRef50_UPI0004059D26: hypothetical protein	0.1013414908
+UniRef50_UPI0004059D26: hypothetical protein|unclassified	0.1013414908
+UniRef50_UPI0002E807D6: hypothetical protein	0.1013289585
+UniRef50_UPI0002E807D6: hypothetical protein|unclassified	0.1013289585
+UniRef50_UPI00036A708B: hypothetical protein	0.1013250743
+UniRef50_UPI00036A708B: hypothetical protein|unclassified	0.1013250743
+UniRef50_UPI0004758C72: membrane protein	0.1013122880
+UniRef50_UPI0004758C72: membrane protein|unclassified	0.1013122880
+UniRef50_UPI0003490F7B: hypothetical protein	0.1013094007
+UniRef50_UPI0003490F7B: hypothetical protein|unclassified	0.1013094007
+UniRef50_D7B9I3: YCII-related protein	0.1013030794
+UniRef50_D7B9I3: YCII-related protein|unclassified	0.1013030794
+UniRef50_N0GIW3	0.1012983796
+UniRef50_N0GIW3|unclassified	0.1012983796
+UniRef50_J2DNC7	0.1012976525
+UniRef50_J2DNC7|unclassified	0.1012976525
+UniRef50_UPI0004682542: hypothetical protein	0.1012973407
+UniRef50_UPI0004682542: hypothetical protein|unclassified	0.1012973407
+UniRef50_UPI000347877E: hypothetical protein	0.1012951533
+UniRef50_UPI000347877E: hypothetical protein|unclassified	0.1012951533
+UniRef50_D5G934: Whole genome shotgun sequence assembly, scaffold_16, strain Mel28	0.1012873537
+UniRef50_D5G934: Whole genome shotgun sequence assembly, scaffold_16, strain Mel28|unclassified	0.1012873537
+UniRef50_UPI0002197631: haloacid dehalogenase	0.1012769325
+UniRef50_UPI0002197631: haloacid dehalogenase|unclassified	0.1012769325
+UniRef50_Q5E530: Permease	0.1012695121
+UniRef50_Q5E530: Permease|unclassified	0.1012695121
+UniRef50_UPI0004709E67: membrane protein	0.1012611632
+UniRef50_UPI0004709E67: membrane protein|unclassified	0.1012611632
+UniRef50_UPI0004711A28: hypothetical protein	0.1012596442
+UniRef50_UPI0004711A28: hypothetical protein|unclassified	0.1012596442
+UniRef50_UPI000362C4BE: hypothetical protein	0.1012542191
+UniRef50_UPI000362C4BE: hypothetical protein|unclassified	0.1012542191
+UniRef50_C3L5W5: Glyoxalase family protein	0.1012512928
+UniRef50_C3L5W5: Glyoxalase family protein|unclassified	0.1012512928
+UniRef50_UPI000466F6CE: hypothetical protein	0.1012471253
+UniRef50_UPI000466F6CE: hypothetical protein|unclassified	0.1012471253
+UniRef50_D8MLU8	0.1012469633
+UniRef50_D8MLU8|unclassified	0.1012469633
+UniRef50_R5INH3: Phosphoesterase	0.1012324750
+UniRef50_R5INH3: Phosphoesterase|unclassified	0.1012324750
+UniRef50_UPI000380D41E: hypothetical protein, partial	0.1012200784
+UniRef50_UPI000380D41E: hypothetical protein, partial|unclassified	0.1012200784
+UniRef50_UPI0003F0C73D: PREDICTED: S-methyl-5''''-thioadenosine phosphorylase-like	0.1012170418
+UniRef50_UPI0003F0C73D: PREDICTED: S-methyl-5''''-thioadenosine phosphorylase-like|unclassified	0.1012170418
+UniRef50_UPI00046A11D9: pseudouridine synthase	0.1012042651
+UniRef50_UPI00046A11D9: pseudouridine synthase|unclassified	0.1012042651
+UniRef50_UPI0002485ACF: sugar ABC transporter ATP-binding protein	0.1011938249
+UniRef50_UPI0002485ACF: sugar ABC transporter ATP-binding protein|unclassified	0.1011938249
+UniRef50_UPI0003661C28: hypothetical protein, partial	0.1011796131
+UniRef50_UPI0003661C28: hypothetical protein, partial|unclassified	0.1011796131
+UniRef50_UPI00047B4540: flavin monooxygenase	0.1011779997
+UniRef50_UPI00047B4540: flavin monooxygenase|unclassified	0.1011779997
+UniRef50_UPI00040A9F7F: DNase TatD	0.1011703673
+UniRef50_UPI00040A9F7F: DNase TatD|unclassified	0.1011703673
+UniRef50_I1YFA1	0.1011602474
+UniRef50_I1YFA1|unclassified	0.1011602474
+UniRef50_R2SIJ7: Surface protein	0.1011602204
+UniRef50_R2SIJ7: Surface protein|unclassified	0.1011602204
+UniRef50_UPI0003F492E1: hypothetical protein TREMEDRAFT_64123	0.1011594403
+UniRef50_UPI0003F492E1: hypothetical protein TREMEDRAFT_64123|unclassified	0.1011594403
+UniRef50_Q73NX5: Ribonuclease 3	0.1011591743
+UniRef50_Q73NX5: Ribonuclease 3|unclassified	0.1011591743
+UniRef50_L7MHU7: Putative glycine rich protein (Fragment)	0.1011565855
+UniRef50_L7MHU7: Putative glycine rich protein (Fragment)|unclassified	0.1011565855
+UniRef50_D3SS55	0.1011533935
+UniRef50_D3SS55|unclassified	0.1011533935
+UniRef50_UPI00047EEE01: hypothetical protein	0.1011522571
+UniRef50_UPI00047EEE01: hypothetical protein|unclassified	0.1011522571
+UniRef50_UPI00034FF496: PREDICTED: UDP-glucuronic acid decarboxylase 1-like	0.1011511996
+UniRef50_UPI00034FF496: PREDICTED: UDP-glucuronic acid decarboxylase 1-like|unclassified	0.1011511996
+UniRef50_P54967: Biotin synthase	0.1011486834
+UniRef50_P54967: Biotin synthase|unclassified	0.1011486834
+UniRef50_W8SDH6: Pe-pgrs family protein	0.1011482232
+UniRef50_W8SDH6: Pe-pgrs family protein|unclassified	0.1011482232
+UniRef50_UPI00047A8E37: hypothetical protein	0.1011479834
+UniRef50_UPI00047A8E37: hypothetical protein|unclassified	0.1011479834
+UniRef50_UPI0003809998: hypothetical protein	0.1011404175
+UniRef50_UPI0003809998: hypothetical protein|unclassified	0.1011404175
+UniRef50_UPI0004270427: hypothetical protein	0.1011353005
+UniRef50_UPI0004270427: hypothetical protein|unclassified	0.1011353005
+UniRef50_UPI0004700C45: hypothetical protein	0.1011333839
+UniRef50_UPI0004700C45: hypothetical protein|unclassified	0.1011333839
+UniRef50_UPI000289013C: enoyl-CoA hydratase	0.1011303811
+UniRef50_UPI000289013C: enoyl-CoA hydratase|unclassified	0.1011303811
+UniRef50_UPI000474886C: hypothetical protein, partial	0.1011302963
+UniRef50_UPI000474886C: hypothetical protein, partial|unclassified	0.1011302963
+UniRef50_P47924: Bifunctional riboflavin biosynthesis protein RIBA 1, chloroplastic	0.1011276004
+UniRef50_P47924: Bifunctional riboflavin biosynthesis protein RIBA 1, chloroplastic|unclassified	0.1011276004
+UniRef50_R4YNS5	0.1011266188
+UniRef50_R4YNS5|unclassified	0.1011266188
+UniRef50_UPI00036494B1: hypothetical protein	0.1011252130
+UniRef50_UPI00036494B1: hypothetical protein|unclassified	0.1011252130
+UniRef50_UPI0002B49A3B: PREDICTED: alcohol dehydrogenase class-3-like	0.1011228616
+UniRef50_UPI0002B49A3B: PREDICTED: alcohol dehydrogenase class-3-like|unclassified	0.1011228616
+UniRef50_UPI00016C4EB3: hypothetical protein	0.1011226724
+UniRef50_UPI00016C4EB3: hypothetical protein|unclassified	0.1011226724
+UniRef50_UPI0003C79DAE: hypothetical protein, partial	0.1011185959
+UniRef50_UPI0003C79DAE: hypothetical protein, partial|unclassified	0.1011185959
+UniRef50_UPI0003760276: hypothetical protein	0.1011045454
+UniRef50_UPI0003760276: hypothetical protein|unclassified	0.1011045454
+UniRef50_A5VFI5: Beta-lactamase domain protein	0.1010994813
+UniRef50_A5VFI5: Beta-lactamase domain protein|unclassified	0.1010994813
+UniRef50_Q1N2X2: Flagellar assembly protein	0.1010891451
+UniRef50_Q1N2X2: Flagellar assembly protein|unclassified	0.1010891451
+UniRef50_Q72EK2: Peptide methionine sulfoxide reductase MsrB	0.1010877312
+UniRef50_Q72EK2: Peptide methionine sulfoxide reductase MsrB|unclassified	0.1010877312
+UniRef50_F6IG93: Peptidase M23B	0.1010851937
+UniRef50_F6IG93: Peptidase M23B|unclassified	0.1010851937
+UniRef50_P54161: 5'-3' exonuclease	0.1010708059
+UniRef50_P54161: 5'-3' exonuclease|unclassified	0.1010708059
+UniRef50_Q6L8K7: Acetyl-CoA acetyltransferase	0.1010650633
+UniRef50_Q6L8K7: Acetyl-CoA acetyltransferase|unclassified	0.1010650633
+UniRef50_S5T7X8	0.1010650020
+UniRef50_S5T7X8|unclassified	0.1010650020
+UniRef50_UPI0004674EC8: pseudouridine synthase	0.1010471223
+UniRef50_UPI0004674EC8: pseudouridine synthase|unclassified	0.1010471223
+UniRef50_UPI0003FB5AFB: hypothetical protein	0.1010446817
+UniRef50_UPI0003FB5AFB: hypothetical protein|unclassified	0.1010446817
+UniRef50_I7WQY1	0.1010397098
+UniRef50_I7WQY1|unclassified	0.1010397098
+UniRef50_UPI0003733A6C: hypothetical protein	0.1010380411
+UniRef50_UPI0003733A6C: hypothetical protein|unclassified	0.1010380411
+UniRef50_Q6ANM8: NADH-quinone oxidoreductase subunit H	0.1010282945
+UniRef50_Q6ANM8: NADH-quinone oxidoreductase subunit H|unclassified	0.1010282945
+UniRef50_Q2VZL1	0.1010232093
+UniRef50_Q2VZL1|unclassified	0.1010232093
+UniRef50_S7TZQ8	0.1010208495
+UniRef50_S7TZQ8|unclassified	0.1010208495
+UniRef50_UPI0004085219: cysteine synthase	0.1010044459
+UniRef50_UPI0004085219: cysteine synthase|unclassified	0.1010044459
+UniRef50_UPI000470F200: ATP-dependent DNA helicase RuvA	0.1010015195
+UniRef50_UPI000470F200: ATP-dependent DNA helicase RuvA|unclassified	0.1010015195
+UniRef50_W4HND8	0.1009988378
+UniRef50_W4HND8|unclassified	0.1009988378
+UniRef50_L0CWP2	0.1009929952
+UniRef50_L0CWP2|unclassified	0.1009929952
+UniRef50_S5NXL7	0.1009887381
+UniRef50_S5NXL7|unclassified	0.1009887381
+UniRef50_S9S0K1: Peptidase, M23/M37 family	0.1009855874
+UniRef50_S9S0K1: Peptidase, M23/M37 family|unclassified	0.1009855874
+UniRef50_O14242: Putative pyridoxal kinase C6F6.11c	0.1009844067
+UniRef50_O14242: Putative pyridoxal kinase C6F6.11c|unclassified	0.1009844067
+UniRef50_UPI00037A794A: hypothetical protein	0.1009822694
+UniRef50_UPI00037A794A: hypothetical protein|unclassified	0.1009822694
+UniRef50_UPI0003B57978: siderophore interacting protein	0.1009802850
+UniRef50_UPI0003B57978: siderophore interacting protein|unclassified	0.1009802850
+UniRef50_UPI0001DEBFCB	0.1009795012
+UniRef50_UPI0001DEBFCB|unclassified	0.1009795012
+UniRef50_X1YEM9	0.1009775999
+UniRef50_X1YEM9|unclassified	0.1009775999
+UniRef50_C1D7I2: Leucyl/phenylalanyl-tRNA--protein transferase	0.1009696759
+UniRef50_C1D7I2: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.1009696759
+UniRef50_UPI00034A6B91: ABC transporter ATP-binding protein	0.1009694176
+UniRef50_UPI00034A6B91: ABC transporter ATP-binding protein|unclassified	0.1009694176
+UniRef50_Z8L1Z9: Phosphoglycerate mutase	0.1009601513
+UniRef50_Z8L1Z9: Phosphoglycerate mutase|unclassified	0.1009601513
+UniRef50_UPI00036D89F3: hypothetical protein	0.1009568907
+UniRef50_UPI00036D89F3: hypothetical protein|unclassified	0.1009568907
+UniRef50_UPI00038F09EC: PREDICTED: serine/arginine repetitive matrix protein 1-like	0.1009568768
+UniRef50_UPI00038F09EC: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	0.1009568768
+UniRef50_R6ICQ9: Protein BioX	0.1009556600
+UniRef50_R6ICQ9: Protein BioX|unclassified	0.1009556600
+UniRef50_UPI00036A1ED5: hypothetical protein	0.1009555722
+UniRef50_UPI00036A1ED5: hypothetical protein|unclassified	0.1009555722
+UniRef50_P0A1B0: Exodeoxyribonuclease III	0.1009500202
+UniRef50_P0A1B0: Exodeoxyribonuclease III|unclassified	0.1009500202
+UniRef50_UPI000369A5D7: hypothetical protein	0.1009489965
+UniRef50_UPI000369A5D7: hypothetical protein|unclassified	0.1009489965
+UniRef50_H2GN87: Transposase-like protein	0.1009477541
+UniRef50_H2GN87: Transposase-like protein|unclassified	0.1009477541
+UniRef50_UPI0003B63617: UDP-N-acetylenolpyruvoylglucosamine reductase	0.1009370099
+UniRef50_UPI0003B63617: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.1009370099
+UniRef50_UPI0003734789: hypothetical protein	0.1009347338
+UniRef50_UPI0003734789: hypothetical protein|unclassified	0.1009347338
+UniRef50_W7LA83	0.1009202181
+UniRef50_W7LA83|unclassified	0.1009202181
+UniRef50_UPI00029A365E: flagellar P-ring protein (basal body P-ring protein)	0.1009084702
+UniRef50_UPI00029A365E: flagellar P-ring protein (basal body P-ring protein)|unclassified	0.1009084702
+UniRef50_T0QD75	0.1009018633
+UniRef50_T0QD75|unclassified	0.1009018633
+UniRef50_UPI0003B7875B: zinc protease	0.1008961795
+UniRef50_UPI0003B7875B: zinc protease|unclassified	0.1008961795
+UniRef50_P74257: Glycerol-3-phosphate dehydrogenase	0.1008938613
+UniRef50_P74257: Glycerol-3-phosphate dehydrogenase|unclassified	0.1008938613
+UniRef50_UPI00036EB590: hypothetical protein	0.1008902152
+UniRef50_UPI00036EB590: hypothetical protein|unclassified	0.1008902152
+UniRef50_U5W2Y7	0.1008843159
+UniRef50_U5W2Y7|unclassified	0.1008843159
+UniRef50_K7RPZ4: IS66 Orf2 family protein	0.1008829117
+UniRef50_K7RPZ4: IS66 Orf2 family protein|unclassified	0.1008829117
+UniRef50_W5FY57	0.1008824860
+UniRef50_W5FY57|unclassified	0.1008824860
+UniRef50_UPI00047736C1: XRE family transcriptional regulator	0.1008816196
+UniRef50_UPI00047736C1: XRE family transcriptional regulator|unclassified	0.1008816196
+UniRef50_K2G0G1: Exodeoxyribonuclease V subunit gamma	0.1008718457
+UniRef50_K2G0G1: Exodeoxyribonuclease V subunit gamma|unclassified	0.1008718457
+UniRef50_UPI00036D2400: hypothetical protein	0.1008705092
+UniRef50_UPI00036D2400: hypothetical protein|unclassified	0.1008705092
+UniRef50_UPI0003747DC3: hypothetical protein	0.1008645567
+UniRef50_UPI0003747DC3: hypothetical protein|unclassified	0.1008645567
+UniRef50_A8DWP7: Predicted protein (Fragment)	0.1008642962
+UniRef50_A8DWP7: Predicted protein (Fragment)|unclassified	0.1008642962
+UniRef50_O58097: Glutamine synthetase	0.1008642875
+UniRef50_O58097: Glutamine synthetase|unclassified	0.1008642875
+UniRef50_UPI00016C3AF7: aspartyl/glutamyl-tRNA amidotransferase subunit B	0.1008636344
+UniRef50_UPI00016C3AF7: aspartyl/glutamyl-tRNA amidotransferase subunit B|unclassified	0.1008636344
+UniRef50_UPI00035D7D4B: hypothetical protein	0.1008557892
+UniRef50_UPI00035D7D4B: hypothetical protein|unclassified	0.1008557892
+UniRef50_UPI00035D52B8: hypothetical protein	0.1008487116
+UniRef50_UPI00035D52B8: hypothetical protein|unclassified	0.1008487116
+UniRef50_UPI00037D4771: hypothetical protein	0.1008479828
+UniRef50_UPI00037D4771: hypothetical protein|unclassified	0.1008479828
+UniRef50_UPI0002E2E9AF: hypothetical protein	0.1008387173
+UniRef50_UPI0002E2E9AF: hypothetical protein|unclassified	0.1008387173
+UniRef50_Q67KH8: Imidazole glycerol phosphate synthase subunit HisH	0.1008385322
+UniRef50_Q67KH8: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.1008385322
+UniRef50_UPI0003756849: succinylarginine dihydrolase	0.1008354655
+UniRef50_UPI0003756849: succinylarginine dihydrolase|unclassified	0.1008354655
+UniRef50_R5XF79: Oligoendopeptidase M3 family	0.1008336466
+UniRef50_R5XF79: Oligoendopeptidase M3 family|unclassified	0.1008336466
+UniRef50_UPI000465D4AC: ferrous iron transporter B	0.1008240899
+UniRef50_UPI000465D4AC: ferrous iron transporter B|unclassified	0.1008240899
+UniRef50_B9L274: Ribosomal RNA small subunit methyltransferase H	0.1008151056
+UniRef50_B9L274: Ribosomal RNA small subunit methyltransferase H|unclassified	0.1008151056
+UniRef50_UPI000289BA0C: hypothetical protein	0.1008134288
+UniRef50_UPI000289BA0C: hypothetical protein|unclassified	0.1008134288
+UniRef50_P56293: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta, chloroplastic	0.1008114350
+UniRef50_P56293: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta, chloroplastic|unclassified	0.1008114350
+UniRef50_R0J3J3	0.1008103192
+UniRef50_R0J3J3|unclassified	0.1008103192
+UniRef50_S9UTW0	0.1007982660
+UniRef50_S9UTW0|unclassified	0.1007982660
+UniRef50_UPI00016C4A53: flagellar basal-body rod protein FlgG	0.1007973973
+UniRef50_UPI00016C4A53: flagellar basal-body rod protein FlgG|unclassified	0.1007973973
+UniRef50_UPI00034C255D: hypothetical protein	0.1007909268
+UniRef50_UPI00034C255D: hypothetical protein|unclassified	0.1007909268
+UniRef50_M7MC99: Bacterial capsule synthesis protein	0.1007851286
+UniRef50_M7MC99: Bacterial capsule synthesis protein|unclassified	0.1007851286
+UniRef50_UPI000262857F: hypothetical protein	0.1007762722
+UniRef50_UPI000262857F: hypothetical protein|unclassified	0.1007762722
+UniRef50_UPI0003ACB7A0: PREDICTED: zinc finger protein 449-like	0.1007742499
+UniRef50_UPI0003ACB7A0: PREDICTED: zinc finger protein 449-like|unclassified	0.1007742499
+UniRef50_I0LGH2: ABC-type transporter, periplasmic component	0.1007714390
+UniRef50_I0LGH2: ABC-type transporter, periplasmic component|unclassified	0.1007714390
+UniRef50_UPI0004646B66: hypothetical protein	0.1007560225
+UniRef50_UPI0004646B66: hypothetical protein|unclassified	0.1007560225
+UniRef50_Q9KHA1: Uronate isomerase	0.1007518750
+UniRef50_Q9KHA1: Uronate isomerase|unclassified	0.1007518750
+UniRef50_A0A011MXQ2: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.1007429545
+UniRef50_A0A011MXQ2: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.1007429545
+UniRef50_UPI00047E7A68: hypothetical protein	0.1007401146
+UniRef50_UPI00047E7A68: hypothetical protein|unclassified	0.1007401146
+UniRef50_N9NXP8	0.1007314521
+UniRef50_N9NXP8|unclassified	0.1007314521
+UniRef50_UPI00035FC7A0: hypothetical protein, partial	0.1007245166
+UniRef50_UPI00035FC7A0: hypothetical protein, partial|unclassified	0.1007245166
+UniRef50_Q7M962: Periplasmic nitrate reductase	0.1007172217
+UniRef50_Q7M962: Periplasmic nitrate reductase|unclassified	0.1007172217
+UniRef50_Q4ULI1: Superoxide dismutase [Mn/Fe]	0.1007124231
+UniRef50_Q4ULI1: Superoxide dismutase [Mn/Fe]|unclassified	0.1007124231
+UniRef50_UPI0003612BE4: hypothetical protein	0.1007044819
+UniRef50_UPI0003612BE4: hypothetical protein|unclassified	0.1007044819
+UniRef50_S0HL79	0.1007028434
+UniRef50_S0HL79|unclassified	0.1007028434
+UniRef50_UPI0001816977: putative tyrosinase domain protein	0.1007021762
+UniRef50_UPI0001816977: putative tyrosinase domain protein|unclassified	0.1007021762
+UniRef50_N9KWT2	0.1007013424
+UniRef50_N9KWT2|unclassified	0.1007013424
+UniRef50_W0L814: Nitrite reductase	0.1007011819
+UniRef50_W0L814: Nitrite reductase|unclassified	0.1007011819
+UniRef50_R7M168: GTP-binding protein typA	0.1006993505
+UniRef50_R7M168: GTP-binding protein typA|unclassified	0.1006993505
+UniRef50_UPI000371133B: hypothetical protein	0.1006946587
+UniRef50_UPI000371133B: hypothetical protein|unclassified	0.1006946587
+UniRef50_Q9PII5: Diaminopimelate decarboxylase	0.1006898381
+UniRef50_Q9PII5: Diaminopimelate decarboxylase|unclassified	0.1006898381
+UniRef50_UPI0003BD207D: PREDICTED: peroxisome proliferator-activated receptor gamma coactivator 1-beta-like	0.1006884841
+UniRef50_UPI0003BD207D: PREDICTED: peroxisome proliferator-activated receptor gamma coactivator 1-beta-like|unclassified	0.1006884841
+UniRef50_B8IZ29: SEC-C motif domain protein	0.1006840563
+UniRef50_B8IZ29: SEC-C motif domain protein|unclassified	0.1006840563
+UniRef50_UPI0004259771: peptidylprolyl isomerase	0.1006790771
+UniRef50_UPI0004259771: peptidylprolyl isomerase|unclassified	0.1006790771
+UniRef50_Q9K8D9: Non-canonical purine NTP pyrophosphatase	0.1006711928
+UniRef50_Q9K8D9: Non-canonical purine NTP pyrophosphatase|unclassified	0.1006711928
+UniRef50_UPI0003C1772B: PREDICTED: probable transcriptional regulator ycf27-like	0.1006648486
+UniRef50_UPI0003C1772B: PREDICTED: probable transcriptional regulator ycf27-like|unclassified	0.1006648486
+UniRef50_UPI000465EFCF: hypothetical protein	0.1006610309
+UniRef50_UPI000465EFCF: hypothetical protein|unclassified	0.1006610309
+UniRef50_UPI00041A615C: hypothetical protein	0.1006509276
+UniRef50_UPI00041A615C: hypothetical protein|unclassified	0.1006509276
+UniRef50_W5XA80: Vacuolar iron transporter	0.1006495297
+UniRef50_W5XA80: Vacuolar iron transporter|unclassified	0.1006495297
+UniRef50_UPI00034628BB: hypothetical protein	0.1006446815
+UniRef50_UPI00034628BB: hypothetical protein|unclassified	0.1006446815
+UniRef50_UPI000475DE05: hypothetical protein	0.1006358093
+UniRef50_UPI000475DE05: hypothetical protein|unclassified	0.1006358093
+UniRef50_P10336: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifN	0.1006342482
+UniRef50_P10336: Nitrogenase iron-molybdenum cofactor biosynthesis protein NifN|unclassified	0.1006342482
+UniRef50_M5NSU4: Membrane protein	0.1006227562
+UniRef50_M5NSU4: Membrane protein|unclassified	0.1006227562
+UniRef50_D7FJJ7	0.1006194081
+UniRef50_D7FJJ7|unclassified	0.1006194081
+UniRef50_UPI0004410536: PREDICTED: ankyrin repeat and zinc finger domain-containing protein 1-like	0.1006065795
+UniRef50_UPI0004410536: PREDICTED: ankyrin repeat and zinc finger domain-containing protein 1-like|unclassified	0.1006065795
+UniRef50_UPI0003767C94: MULTISPECIES: 50S ribosomal protein L6	0.1006064722
+UniRef50_UPI0003767C94: MULTISPECIES: 50S ribosomal protein L6|unclassified	0.1006064722
+UniRef50_UPI0001D2DF7D: transcriptional regulator, TetR family	0.1006034176
+UniRef50_UPI0001D2DF7D: transcriptional regulator, TetR family|unclassified	0.1006034176
+UniRef50_UPI00037148C1: hypothetical protein	0.1005883984
+UniRef50_UPI00037148C1: hypothetical protein|unclassified	0.1005883984
+UniRef50_UPI000225ACE5: hypothetical protein	0.1005790823
+UniRef50_UPI000225ACE5: hypothetical protein|unclassified	0.1005790823
+UniRef50_I9N4T7	0.1005716611
+UniRef50_I9N4T7|unclassified	0.1005716611
+UniRef50_D9USA0: YjeF family protein (Fragment)	0.1005662737
+UniRef50_D9USA0: YjeF family protein (Fragment)|unclassified	0.1005662737
+UniRef50_UPI000373FB2E: hypothetical protein	0.1005577977
+UniRef50_UPI000373FB2E: hypothetical protein|unclassified	0.1005577977
+UniRef50_A5IGU1: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.1005557170
+UniRef50_A5IGU1: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.1005557170
+UniRef50_UPI000473E463: flagellar hook protein FlgE	0.1005519127
+UniRef50_UPI000473E463: flagellar hook protein FlgE|unclassified	0.1005519127
+UniRef50_B9XDV1	0.1005514086
+UniRef50_B9XDV1|unclassified	0.1005514086
+UniRef50_F5RN18: Prophage terminase large subunit	0.1005509235
+UniRef50_F5RN18: Prophage terminase large subunit|unclassified	0.1005509235
+UniRef50_W8EVC3: Phosphopantothenoylcysteine decarboxylase/Phosphopantothenoylcysteine synthetase	0.1005225184
+UniRef50_W8EVC3: Phosphopantothenoylcysteine decarboxylase/Phosphopantothenoylcysteine synthetase|unclassified	0.1005225184
+UniRef50_C1DA26: Probable nicotinate-nucleotide adenylyltransferase	0.1005221710
+UniRef50_C1DA26: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.1005221710
+UniRef50_V9VVG3	0.1005143175
+UniRef50_V9VVG3|unclassified	0.1005143175
+UniRef50_UPI0002626519: 2,3-dihydroxy-2,3-dihydrophenylpropionate dehydrogenase	0.1004986575
+UniRef50_UPI0002626519: 2,3-dihydroxy-2,3-dihydrophenylpropionate dehydrogenase|unclassified	0.1004986575
+UniRef50_UPI00006CFE7F: glutaredoxin-related protein	0.1004687293
+UniRef50_UPI00006CFE7F: glutaredoxin-related protein|unclassified	0.1004687293
+UniRef50_Q12074: Spermidine synthase	0.1004656118
+UniRef50_Q12074: Spermidine synthase|unclassified	0.1004656118
+UniRef50_U6P1V7: ISE/inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_1933	0.1004632743
+UniRef50_U6P1V7: ISE/inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_1933|unclassified	0.1004632743
+UniRef50_A6FNJ3	0.1004590428
+UniRef50_A6FNJ3|unclassified	0.1004590428
+UniRef50_I4W1C3	0.1004544720
+UniRef50_I4W1C3|unclassified	0.1004544720
+UniRef50_UPI0002377E10: FAD dependent oxidoreductase, partial	0.1004524759
+UniRef50_UPI0002377E10: FAD dependent oxidoreductase, partial|unclassified	0.1004524759
+UniRef50_UPI0004789840: hypothetical protein, partial	0.1004494025
+UniRef50_UPI0004789840: hypothetical protein, partial|unclassified	0.1004494025
+UniRef50_U5SBH0: Membrane protein	0.1004474854
+UniRef50_U5SBH0: Membrane protein|unclassified	0.1004474854
+UniRef50_E4PMW1: Tfp pilus assembly protein PilN	0.1004437177
+UniRef50_E4PMW1: Tfp pilus assembly protein PilN|unclassified	0.1004437177
+UniRef50_UPI000371EB10: hypothetical protein	0.1004389101
+UniRef50_UPI000371EB10: hypothetical protein|unclassified	0.1004389101
+UniRef50_Q041N3	0.1004357294
+UniRef50_Q041N3|unclassified	0.1004357294
+UniRef50_UPI000362807B: hypothetical protein, partial	0.1004284249
+UniRef50_UPI000362807B: hypothetical protein, partial|unclassified	0.1004284249
+UniRef50_UPI0004030002: hypothetical protein	0.1004183842
+UniRef50_UPI0004030002: hypothetical protein|unclassified	0.1004183842
+UniRef50_V5BIM4	0.1004131981
+UniRef50_V5BIM4|unclassified	0.1004131981
+UniRef50_UPI000454A09B: PREDICTED: monofunctional C1-tetrahydrofolate synthase, mitochondrial	0.1003970559
+UniRef50_UPI000454A09B: PREDICTED: monofunctional C1-tetrahydrofolate synthase, mitochondrial|unclassified	0.1003970559
+UniRef50_UPI000344A262: protein disaggregation chaperone	0.1003822419
+UniRef50_UPI000344A262: protein disaggregation chaperone|unclassified	0.1003822419
+UniRef50_Q0AAU9: Elongation factor P	0.1003798182
+UniRef50_Q0AAU9: Elongation factor P|unclassified	0.1003798182
+UniRef50_UPI0002DCA351: hypothetical protein	0.1003773128
+UniRef50_UPI0002DCA351: hypothetical protein|unclassified	0.1003773128
+UniRef50_Q1AW34: Adenine phosphoribosyltransferase	0.1003459162
+UniRef50_Q1AW34: Adenine phosphoribosyltransferase|unclassified	0.1003459162
+UniRef50_X4ZLT1: Family 1 extracellular solute-binding protein	0.1003439826
+UniRef50_X4ZLT1: Family 1 extracellular solute-binding protein|unclassified	0.1003439826
+UniRef50_UPI0003EBE8AE: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial	0.1003211958
+UniRef50_UPI0003EBE8AE: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial|unclassified	0.1003211958
+UniRef50_UPI0003B5EE1D: peroxiredoxin	0.1003200649
+UniRef50_UPI0003B5EE1D: peroxiredoxin|unclassified	0.1003200649
+UniRef50_W4LZ15	0.1003133009
+UniRef50_W4LZ15|unclassified	0.1003133009
+UniRef50_UPI000174615B: methionine synthase	0.1003105149
+UniRef50_UPI000174615B: methionine synthase|unclassified	0.1003105149
+UniRef50_UPI00028A3F7C: branched-chain alpha-keto acid dehydrogenase subunit E2, partial	0.1003102866
+UniRef50_UPI00028A3F7C: branched-chain alpha-keto acid dehydrogenase subunit E2, partial|unclassified	0.1003102866
+UniRef50_Q3YQM8: Chromosome undetermined scaffold_49, whole genome shotgun sequence	0.1003074744
+UniRef50_Q3YQM8: Chromosome undetermined scaffold_49, whole genome shotgun sequence|unclassified	0.1003074744
+UniRef50_J3ABJ4: Conjugative relaxase domain protein, TrwC/TraI family	0.1003034046
+UniRef50_J3ABJ4: Conjugative relaxase domain protein, TrwC/TraI family|unclassified	0.1003034046
+UniRef50_A6FSZ1: Membrane protein involved in aromatic hydrocarbon degradation	0.1003023071
+UniRef50_A6FSZ1: Membrane protein involved in aromatic hydrocarbon degradation|unclassified	0.1003023071
+UniRef50_UPI0003A34524: hypothetical protein	0.1002984902
+UniRef50_UPI0003A34524: hypothetical protein|unclassified	0.1002984902
+UniRef50_UPI00047423ED: 30S ribosomal protein S5, partial	0.1002979167
+UniRef50_UPI00047423ED: 30S ribosomal protein S5, partial|unclassified	0.1002979167
+UniRef50_UPI00047A51B4: hypothetical protein	0.1002652372
+UniRef50_UPI00047A51B4: hypothetical protein|unclassified	0.1002652372
+UniRef50_UPI0003B5D3AA: citryl-CoA lyase	0.1002635040
+UniRef50_UPI0003B5D3AA: citryl-CoA lyase|unclassified	0.1002635040
+UniRef50_UPI0003F6921A: hypothetical protein	0.1002632737
+UniRef50_UPI0003F6921A: hypothetical protein|unclassified	0.1002632737
+UniRef50_UPI0002888867: phospholipase D/transphosphatidylase	0.1002422765
+UniRef50_UPI0002888867: phospholipase D/transphosphatidylase|unclassified	0.1002422765
+UniRef50_UPI000463668B: glucuronate isomerase	0.1002387566
+UniRef50_UPI000463668B: glucuronate isomerase|unclassified	0.1002387566
+UniRef50_UPI00035144CC: PREDICTED: S-antigen protein-like	0.1002376111
+UniRef50_UPI00035144CC: PREDICTED: S-antigen protein-like|unclassified	0.1002376111
+UniRef50_A0A011MP84	0.1002271074
+UniRef50_A0A011MP84|unclassified	0.1002271074
+UniRef50_UPI0003AD3BD3: hypothetical protein	0.1002211378
+UniRef50_UPI0003AD3BD3: hypothetical protein|unclassified	0.1002211378
+UniRef50_I8TBA2	0.1002199370
+UniRef50_I8TBA2|unclassified	0.1002199370
+UniRef50_T0ND38	0.1002195038
+UniRef50_T0ND38|unclassified	0.1002195038
+UniRef50_Q5GTK3: Prolipoprotein diacylglyceryl transferase	0.1002184582
+UniRef50_Q5GTK3: Prolipoprotein diacylglyceryl transferase|unclassified	0.1002184582
+UniRef50_UPI000380D76B: hypothetical protein	0.1002144062
+UniRef50_UPI000380D76B: hypothetical protein|unclassified	0.1002144062
+UniRef50_H4F7M3	0.1002113845
+UniRef50_H4F7M3|unclassified	0.1002113845
+UniRef50_UPI00026CB1CE: hypothetical protein	0.1002001427
+UniRef50_UPI00026CB1CE: hypothetical protein|unclassified	0.1002001427
+UniRef50_UPI00036A7D45: MULTISPECIES: 30S ribosomal protein S5	0.1001990666
+UniRef50_UPI00036A7D45: MULTISPECIES: 30S ribosomal protein S5|unclassified	0.1001990666
+UniRef50_Q5Z8D5: Os01g0349000 protein	0.1001943435
+UniRef50_Q5Z8D5: Os01g0349000 protein|unclassified	0.1001943435
+UniRef50_UPI000373BAAF: hypothetical protein, partial	0.1001914172
+UniRef50_UPI000373BAAF: hypothetical protein, partial|unclassified	0.1001914172
+UniRef50_UPI00036735E3: twin-arginine translocation pathway signal protein	0.1001861036
+UniRef50_UPI00036735E3: twin-arginine translocation pathway signal protein|unclassified	0.1001861036
+UniRef50_D6SH95	0.1001811502
+UniRef50_D6SH95|unclassified	0.1001811502
+UniRef50_R1IIE5	0.1001775876
+UniRef50_R1IIE5|unclassified	0.1001775876
+UniRef50_U9MXW5	0.1001758206
+UniRef50_U9MXW5|unclassified	0.1001758206
+UniRef50_UPI000471A5A7: hypothetical protein	0.1001757842
+UniRef50_UPI000471A5A7: hypothetical protein|unclassified	0.1001757842
+UniRef50_N5M9Q2	0.1001746603
+UniRef50_N5M9Q2|unclassified	0.1001746603
+UniRef50_UPI000473913B: hypothetical protein, partial	0.1001694412
+UniRef50_UPI000473913B: hypothetical protein, partial|unclassified	0.1001694412
+UniRef50_W1TZD1: Metallo-beta-lactamase protein	0.1001683530
+UniRef50_W1TZD1: Metallo-beta-lactamase protein|unclassified	0.1001683530
+UniRef50_UPI00044110DD: hypothetical protein AURDEDRAFT_102129, partial	0.1001620950
+UniRef50_UPI00044110DD: hypothetical protein AURDEDRAFT_102129, partial|unclassified	0.1001620950
+UniRef50_I4C3E6	0.1001321900
+UniRef50_I4C3E6|unclassified	0.1001321900
+UniRef50_Q1D6K1: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase	0.1001316306
+UniRef50_Q1D6K1: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase|unclassified	0.1001316306
+UniRef50_Q46MX4: Short-chain dehydrogenase/reductase SDR	0.1001307769
+UniRef50_Q46MX4: Short-chain dehydrogenase/reductase SDR|unclassified	0.1001307769
+UniRef50_UPI0003B33861: MFS transporter	0.1001252812
+UniRef50_UPI0003B33861: MFS transporter|unclassified	0.1001252812
+UniRef50_F0LVL2	0.1001200428
+UniRef50_F0LVL2|unclassified	0.1001200428
+UniRef50_UPI00042B11A5: Urease isoform 4	0.1001135589
+UniRef50_UPI00042B11A5: Urease isoform 4|unclassified	0.1001135589
+UniRef50_UPI0002492F4A: 3-oxoacid CoA-transferase subunit A	0.1001127311
+UniRef50_UPI0002492F4A: 3-oxoacid CoA-transferase subunit A|unclassified	0.1001127311
+UniRef50_UPI00035D480F: hypothetical protein	0.1001106116
+UniRef50_UPI00035D480F: hypothetical protein|unclassified	0.1001106116
+UniRef50_W7X471: Uric acid degradation bifunctional protein PucL	0.1001049048
+UniRef50_W7X471: Uric acid degradation bifunctional protein PucL|unclassified	0.1001049048
+UniRef50_UPI000374338B: hypothetical protein	0.1000937770
+UniRef50_UPI000374338B: hypothetical protein|unclassified	0.1000937770
+UniRef50_UPI0002490AD6: multidrug MFS transporter	0.1000914805
+UniRef50_UPI0002490AD6: multidrug MFS transporter|unclassified	0.1000914805
+UniRef50_C9XLZ1: Glucitol operon activator family protein	0.1000898223
+UniRef50_C9XLZ1: Glucitol operon activator family protein|unclassified	0.1000898223
+UniRef50_Q1N2I3: Type 4 fimbrial biogenesis protein PilP	0.1000887175
+UniRef50_Q1N2I3: Type 4 fimbrial biogenesis protein PilP|unclassified	0.1000887175
+UniRef50_T1CM30: ISRSO5-transposase protein (Fragment)	0.1000794798
+UniRef50_T1CM30: ISRSO5-transposase protein (Fragment)|unclassified	0.1000794798
+UniRef50_I1AV37	0.1000752066
+UniRef50_I1AV37|unclassified	0.1000752066
+UniRef50_UPI0001D2EF09: lipolytic protein G-D-S-L family	0.1000742599
+UniRef50_UPI0001D2EF09: lipolytic protein G-D-S-L family|unclassified	0.1000742599
+UniRef50_A4SJW5: Probable nicotinate-nucleotide adenylyltransferase	0.1000703294
+UniRef50_A4SJW5: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.1000703294
+UniRef50_C3DDN9	0.1000628306
+UniRef50_C3DDN9|unclassified	0.1000628306
+UniRef50_U7VES3	0.1000616255
+UniRef50_U7VES3|unclassified	0.1000616255
+UniRef50_B8ER12	0.1000551882
+UniRef50_B8ER12|unclassified	0.1000551882
+UniRef50_E1VQY0: Predicted integral membrane protein	0.1000505818
+UniRef50_E1VQY0: Predicted integral membrane protein|unclassified	0.1000505818
+UniRef50_C5JB49	0.1000478357
+UniRef50_C5JB49|unclassified	0.1000478357
+UniRef50_UPI00046629D3: ABC transporter permease, partial	0.1000392212
+UniRef50_UPI00046629D3: ABC transporter permease, partial|unclassified	0.1000392212
+UniRef50_A0A011NPY8: Phosphofructokinase	0.1000292183
+UniRef50_A0A011NPY8: Phosphofructokinase|unclassified	0.1000292183
+UniRef50_UPI0003F5A256: orotate phosphoribosyltransferase	0.1000227322
+UniRef50_UPI0003F5A256: orotate phosphoribosyltransferase|unclassified	0.1000227322
+UniRef50_UPI0003B554F6: ABC transporter ATP-binding protein	0.1000139535
+UniRef50_UPI0003B554F6: ABC transporter ATP-binding protein|unclassified	0.1000139535
+UniRef50_UPI000417B443: hypothetical protein	0.1000126521
+UniRef50_UPI000417B443: hypothetical protein|unclassified	0.1000126521
+UniRef50_UPI000371FCAA: hypothetical protein	0.1000075348
+UniRef50_UPI000371FCAA: hypothetical protein|unclassified	0.1000075348
+UniRef50_Q1AZ58: LemA	0.1000028106
+UniRef50_Q1AZ58: LemA|unclassified	0.1000028106
+UniRef50_R9PQ20: Putative mannitol dehydrogenase	0.0999985855
+UniRef50_R9PQ20: Putative mannitol dehydrogenase|unclassified	0.0999985855
+UniRef50_J9YV96: Threonine synthase	0.0999826342
+UniRef50_J9YV96: Threonine synthase|unclassified	0.0999826342
+UniRef50_UPI0003623949: bactoprenol glucosyl transferase	0.0999732129
+UniRef50_UPI0003623949: bactoprenol glucosyl transferase|unclassified	0.0999732129
+UniRef50_UPI0003F948D5: hypothetical protein	0.0999674123
+UniRef50_UPI0003F948D5: hypothetical protein|unclassified	0.0999674123
+UniRef50_UPI000479C234: hypothetical protein	0.0999661367
+UniRef50_UPI000479C234: hypothetical protein|unclassified	0.0999661367
+UniRef50_A1RXW8	0.0999646522
+UniRef50_A1RXW8|unclassified	0.0999646522
+UniRef50_UPI00046FA3C6: hypothetical protein	0.0999641562
+UniRef50_UPI00046FA3C6: hypothetical protein|unclassified	0.0999641562
+UniRef50_UPI0002657B93: PREDICTED: monothiol glutaredoxin-S11-like	0.0999640802
+UniRef50_UPI0002657B93: PREDICTED: monothiol glutaredoxin-S11-like|unclassified	0.0999640802
+UniRef50_W4U346: DeoR-family transcriptional regulator	0.0999631828
+UniRef50_W4U346: DeoR-family transcriptional regulator|unclassified	0.0999631828
+UniRef50_UPI000477407F: peroxiredoxin, partial	0.0999594141
+UniRef50_UPI000477407F: peroxiredoxin, partial|unclassified	0.0999594141
+UniRef50_A9AWY7: Phosphopantetheine adenylyltransferase	0.0999474572
+UniRef50_A9AWY7: Phosphopantetheine adenylyltransferase|unclassified	0.0999474572
+UniRef50_UPI0003784FDB: hypothetical protein	0.0999429195
+UniRef50_UPI0003784FDB: hypothetical protein|unclassified	0.0999429195
+UniRef50_V6UQ73	0.0999380353
+UniRef50_V6UQ73|unclassified	0.0999380353
+UniRef50_UPI000364EBAA: hypothetical protein	0.0999376411
+UniRef50_UPI000364EBAA: hypothetical protein|unclassified	0.0999376411
+UniRef50_Q5H5Y6: Phenol hydroxylase	0.0999360621
+UniRef50_Q5H5Y6: Phenol hydroxylase|unclassified	0.0999360621
+UniRef50_Q5H267: Phage-related baseplate assembly protein	0.0999351111
+UniRef50_Q5H267: Phage-related baseplate assembly protein|unclassified	0.0999351111
+UniRef50_UPI000463C9AE: carboxypeptidase	0.0999345967
+UniRef50_UPI000463C9AE: carboxypeptidase|unclassified	0.0999345967
+UniRef50_I2NPW1	0.0999315513
+UniRef50_I2NPW1|unclassified	0.0999315513
+UniRef50_UPI00038161D1: hypothetical protein	0.0999211602
+UniRef50_UPI00038161D1: hypothetical protein|unclassified	0.0999211602
+UniRef50_E4UD28: Putative membrane-bound lytic murein transglycosylase signal peptide protein	0.0999179796
+UniRef50_E4UD28: Putative membrane-bound lytic murein transglycosylase signal peptide protein|unclassified	0.0999179796
+UniRef50_UPI00047EC24A: bacitracin ABC transporter ATP-binding protein	0.0999161897
+UniRef50_UPI00047EC24A: bacitracin ABC transporter ATP-binding protein|unclassified	0.0999161897
+UniRef50_Q2GDX8: NADH-quinone oxidoreductase subunit C	0.0999149616
+UniRef50_Q2GDX8: NADH-quinone oxidoreductase subunit C|unclassified	0.0999149616
+UniRef50_UPI0003604119: hypothetical protein	0.0999100938
+UniRef50_UPI0003604119: hypothetical protein|unclassified	0.0999100938
+UniRef50_UPI0003C1696D: PREDICTED: carbamoyl-phosphate synthase large chain, chloroplastic-like	0.0999087378
+UniRef50_UPI0003C1696D: PREDICTED: carbamoyl-phosphate synthase large chain, chloroplastic-like|unclassified	0.0999087378
+UniRef50_S7V002	0.0999078030
+UniRef50_S7V002|unclassified	0.0999078030
+UniRef50_UPI0002626B19: 4-alpha-glucanotransferase	0.0999011122
+UniRef50_UPI0002626B19: 4-alpha-glucanotransferase|unclassified	0.0999011122
+UniRef50_UPI0003B577A1: hydrolase	0.0998972669
+UniRef50_UPI0003B577A1: hydrolase|unclassified	0.0998972669
+UniRef50_Q608X7: NADH-quinone oxidoreductase subunit A	0.0998885058
+UniRef50_Q608X7: NADH-quinone oxidoreductase subunit A|unclassified	0.0998885058
+UniRef50_UPI0003B68375: 50S ribosomal protein L22	0.0998869377
+UniRef50_UPI0003B68375: 50S ribosomal protein L22|unclassified	0.0998869377
+UniRef50_UPI0003F0AC31	0.0998866718
+UniRef50_UPI0003F0AC31|unclassified	0.0998866718
+UniRef50_UPI000472443C: hypothetical protein	0.0998849528
+UniRef50_UPI000472443C: hypothetical protein|unclassified	0.0998849528
+UniRef50_UPI00036A63B8: hypothetical protein	0.0998733484
+UniRef50_UPI00036A63B8: hypothetical protein|unclassified	0.0998733484
+UniRef50_UPI00037774DA: hypothetical protein, partial	0.0998659654
+UniRef50_UPI00037774DA: hypothetical protein, partial|unclassified	0.0998659654
+UniRef50_A7NQM8: Formamidopyrimidine-DNA glycosylase	0.0998639929
+UniRef50_A7NQM8: Formamidopyrimidine-DNA glycosylase|unclassified	0.0998639929
+UniRef50_UPI0003FE9842: hypothetical protein	0.0998590392
+UniRef50_UPI0003FE9842: hypothetical protein|unclassified	0.0998590392
+UniRef50_D4MIN1: Phage portal protein, HK97 family	0.0998561101
+UniRef50_D4MIN1: Phage portal protein, HK97 family|unclassified	0.0998561101
+UniRef50_UPI000363EBD4: LysR family transcriptional regulator, partial	0.0998430300
+UniRef50_UPI000363EBD4: LysR family transcriptional regulator, partial|unclassified	0.0998430300
+UniRef50_G7LIJ8: 1-Deoxy-D-xylulose 5-phosphate synthase	0.0998373099
+UniRef50_G7LIJ8: 1-Deoxy-D-xylulose 5-phosphate synthase|unclassified	0.0998373099
+UniRef50_UPI000372CAFC: hypothetical protein	0.0998319579
+UniRef50_UPI000372CAFC: hypothetical protein|unclassified	0.0998319579
+UniRef50_Q169W8	0.0998257780
+UniRef50_Q169W8|unclassified	0.0998257780
+UniRef50_UPI000473A531: LysR family transcriptional regulator	0.0998247135
+UniRef50_UPI000473A531: LysR family transcriptional regulator|unclassified	0.0998247135
+UniRef50_U6ICK2: Aldehyde dehydrogenase, mitochondrial	0.0998243402
+UniRef50_U6ICK2: Aldehyde dehydrogenase, mitochondrial|unclassified	0.0998243402
+UniRef50_UPI000328C26C	0.0998176473
+UniRef50_UPI000328C26C|unclassified	0.0998176473
+UniRef50_Q3LBI2	0.0998128149
+UniRef50_Q3LBI2|unclassified	0.0998128149
+UniRef50_UPI00037D86B2: hypothetical protein	0.0998116492
+UniRef50_UPI00037D86B2: hypothetical protein|unclassified	0.0998116492
+UniRef50_B1XW26: Lipoprotein signal peptidase	0.0998067196
+UniRef50_B1XW26: Lipoprotein signal peptidase|unclassified	0.0998067196
+UniRef50_A0A023BZY9	0.0998039332
+UniRef50_A0A023BZY9|unclassified	0.0998039332
+UniRef50_G1WMK0	0.0998030317
+UniRef50_G1WMK0|unclassified	0.0998030317
+UniRef50_UPI00016C05AD: ABC transporter substrate-binding protein	0.0998021829
+UniRef50_UPI00016C05AD: ABC transporter substrate-binding protein|unclassified	0.0998021829
+UniRef50_A4J657: NADH-quinone oxidoreductase subunit D	0.0998018955
+UniRef50_A4J657: NADH-quinone oxidoreductase subunit D|unclassified	0.0998018955
+UniRef50_UPI00038FBFCB: Protein NagD homolog	0.0998001198
+UniRef50_UPI00038FBFCB: Protein NagD homolog|unclassified	0.0998001198
+UniRef50_V4R1V6: Aminotransferase	0.0997992451
+UniRef50_V4R1V6: Aminotransferase|unclassified	0.0997992451
+UniRef50_Q04DG6	0.0997960305
+UniRef50_Q04DG6|unclassified	0.0997960305
+UniRef50_Q4RQQ9: Chromosome 2 SCAF15004, whole genome shotgun sequence	0.0997959562
+UniRef50_Q4RQQ9: Chromosome 2 SCAF15004, whole genome shotgun sequence|unclassified	0.0997959562
+UniRef50_F8A9Z1: OmpA/MotB domain protein	0.0997872989
+UniRef50_F8A9Z1: OmpA/MotB domain protein|unclassified	0.0997872989
+UniRef50_B9TER9	0.0997829610
+UniRef50_B9TER9|unclassified	0.0997829610
+UniRef50_S3DAB8	0.0997764806
+UniRef50_S3DAB8|unclassified	0.0997764806
+UniRef50_Q9KZV6: Polyphosphate kinase	0.0997753129
+UniRef50_Q9KZV6: Polyphosphate kinase|unclassified	0.0997753129
+UniRef50_UPI000237ADBC: aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein	0.0997709082
+UniRef50_UPI000237ADBC: aldehyde oxidase and xanthine dehydrogenase molybdopterin binding protein|unclassified	0.0997709082
+UniRef50_K9B5K1	0.0997696695
+UniRef50_K9B5K1|unclassified	0.0997696695
+UniRef50_N1QUW9	0.0997677052
+UniRef50_N1QUW9|unclassified	0.0997677052
+UniRef50_F5SHB5: Sporulation protein YyaC	0.0997596908
+UniRef50_F5SHB5: Sporulation protein YyaC|unclassified	0.0997596908
+UniRef50_UPI0003B62B88: integrase	0.0997586195
+UniRef50_UPI0003B62B88: integrase|unclassified	0.0997586195
+UniRef50_F3BCP2	0.0997486001
+UniRef50_F3BCP2|unclassified	0.0997486001
+UniRef50_O86737: Aminodeoxyfutalosine deaminase	0.0997455686
+UniRef50_O86737: Aminodeoxyfutalosine deaminase|unclassified	0.0997455686
+UniRef50_C2RJR4	0.0997372900
+UniRef50_C2RJR4|unclassified	0.0997372900
+UniRef50_X0YWS3: Marine sediment metagenome DNA, contig: S01H1_S37533 (Fragment)	0.0997364893
+UniRef50_X0YWS3: Marine sediment metagenome DNA, contig: S01H1_S37533 (Fragment)|unclassified	0.0997364893
+UniRef50_Q2RHH3: Polyamine aminopropyl transferase	0.0997335720
+UniRef50_Q2RHH3: Polyamine aminopropyl transferase|unclassified	0.0997335720
+UniRef50_UPI0003B5C533: PTS glucose transporter subunit IIA	0.0997297533
+UniRef50_UPI0003B5C533: PTS glucose transporter subunit IIA|unclassified	0.0997297533
+UniRef50_UPI0001BF7AAC: hypothetical protein SMAC_09920	0.0997289621
+UniRef50_UPI0001BF7AAC: hypothetical protein SMAC_09920|unclassified	0.0997289621
+UniRef50_P64804: Cob(I)yrinic acid a,c-diamide adenosyltransferase	0.0997276325
+UniRef50_P64804: Cob(I)yrinic acid a,c-diamide adenosyltransferase|unclassified	0.0997276325
+UniRef50_UPI00035EBF5B: hypothetical protein, partial	0.0997273929
+UniRef50_UPI00035EBF5B: hypothetical protein, partial|unclassified	0.0997273929
+UniRef50_K2AFG4	0.0997250100
+UniRef50_K2AFG4|unclassified	0.0997250100
+UniRef50_I4WES0	0.0997241815
+UniRef50_I4WES0|unclassified	0.0997241815
+UniRef50_UPI0004713DFC: hypothetical protein	0.0997164299
+UniRef50_UPI0004713DFC: hypothetical protein|unclassified	0.0997164299
+UniRef50_B0TZ13: Ribosomal RNA small subunit methyltransferase H	0.0997090031
+UniRef50_B0TZ13: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0997090031
+UniRef50_UPI00047BC4E0: hypothetical protein	0.0997024422
+UniRef50_UPI00047BC4E0: hypothetical protein|unclassified	0.0997024422
+UniRef50_U5V7D6: Diguanylate cyclase	0.0996983010
+UniRef50_U5V7D6: Diguanylate cyclase|unclassified	0.0996983010
+UniRef50_B8G120: Allantoinase	0.0996951058
+UniRef50_B8G120: Allantoinase|unclassified	0.0996951058
+UniRef50_UPI00046815CA: branched-chain amino acid ABC transporter permease	0.0996853376
+UniRef50_UPI00046815CA: branched-chain amino acid ABC transporter permease|unclassified	0.0996853376
+UniRef50_UPI0003C10FDE: PREDICTED: 4-trimethylaminobutyraldehyde dehydrogenase-like	0.0996828936
+UniRef50_UPI0003C10FDE: PREDICTED: 4-trimethylaminobutyraldehyde dehydrogenase-like|unclassified	0.0996828936
+UniRef50_UPI000463114F: hypothetical protein, partial	0.0996815180
+UniRef50_UPI000463114F: hypothetical protein, partial|unclassified	0.0996815180
+UniRef50_UPI000472D2BA: 16S rRNA methyltransferase	0.0996800325
+UniRef50_UPI000472D2BA: 16S rRNA methyltransferase|unclassified	0.0996800325
+UniRef50_UPI00038114DF: hypothetical protein	0.0996757066
+UniRef50_UPI00038114DF: hypothetical protein|unclassified	0.0996757066
+UniRef50_UPI00030AE818: hypothetical protein	0.0996735792
+UniRef50_UPI00030AE818: hypothetical protein|unclassified	0.0996735792
+UniRef50_UPI000395A56D: hypothetical protein, partial	0.0996673174
+UniRef50_UPI000395A56D: hypothetical protein, partial|unclassified	0.0996673174
+UniRef50_UPI00035F31F7: hypothetical protein	0.0996667814
+UniRef50_UPI00035F31F7: hypothetical protein|unclassified	0.0996667814
+UniRef50_Q3A6V0	0.0996644724
+UniRef50_Q3A6V0|unclassified	0.0996644724
+UniRef50_UPI0004736562: ribonuclease J	0.0996613318
+UniRef50_UPI0004736562: ribonuclease J|unclassified	0.0996613318
+UniRef50_I0QGZ0: Putative polysaccharide biosynthesis protein (RgpF)	0.0996567507
+UniRef50_I0QGZ0: Putative polysaccharide biosynthesis protein (RgpF)|unclassified	0.0996567507
+UniRef50_UPI0004660A11: hypothetical protein	0.0996558291
+UniRef50_UPI0004660A11: hypothetical protein|unclassified	0.0996558291
+UniRef50_UPI0004652B1C: hypothetical protein	0.0996538610
+UniRef50_UPI0004652B1C: hypothetical protein|unclassified	0.0996538610
+UniRef50_UPI0000166EB3: DNA polymerase	0.0996531434
+UniRef50_UPI0000166EB3: DNA polymerase|unclassified	0.0996531434
+UniRef50_A4X9S9	0.0996526071
+UniRef50_A4X9S9|unclassified	0.0996526071
+UniRef50_Q9KGL4: BH0047 protein	0.0996499226
+UniRef50_Q9KGL4: BH0047 protein|unclassified	0.0996499226
+UniRef50_UPI0002882D4E: deoxyguanosinetriphosphate triphosphohydrolase	0.0996476104
+UniRef50_UPI0002882D4E: deoxyguanosinetriphosphate triphosphohydrolase|unclassified	0.0996476104
+UniRef50_UPI000057CDC1: para-aminobenzoate synthase component I/anthranilate synthase component I	0.0996445200
+UniRef50_UPI000057CDC1: para-aminobenzoate synthase component I/anthranilate synthase component I|unclassified	0.0996445200
+UniRef50_UPI000477F59C: hypothetical protein	0.0996438167
+UniRef50_UPI000477F59C: hypothetical protein|unclassified	0.0996438167
+UniRef50_UPI00047EB909: hypothetical protein	0.0996368705
+UniRef50_UPI00047EB909: hypothetical protein|unclassified	0.0996368705
+UniRef50_UPI0002C373D5: PREDICTED: probable pectinesterase/pectinesterase inhibitor 44-like	0.0996354952
+UniRef50_UPI0002C373D5: PREDICTED: probable pectinesterase/pectinesterase inhibitor 44-like|unclassified	0.0996354952
+UniRef50_Q9PQU6: Methionine--tRNA ligase	0.0996328442
+UniRef50_Q9PQU6: Methionine--tRNA ligase|unclassified	0.0996328442
+UniRef50_UPI0004768B65: 3-oxoacyl-ACP synthase	0.0996217355
+UniRef50_UPI0004768B65: 3-oxoacyl-ACP synthase|unclassified	0.0996217355
+UniRef50_A6LF29: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase	0.0996203692
+UniRef50_A6LF29: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|unclassified	0.0996203692
+UniRef50_D6ZZA5: Peptidoglycan-binding domain 1 protein	0.0996154345
+UniRef50_D6ZZA5: Peptidoglycan-binding domain 1 protein|unclassified	0.0996154345
+UniRef50_G2TNB0: Beta-lactamase	0.0996141282
+UniRef50_G2TNB0: Beta-lactamase|unclassified	0.0996141282
+UniRef50_Q0AUL1: Energy-coupling factor transporter ATP-binding protein EcfA	0.0996056782
+UniRef50_Q0AUL1: Energy-coupling factor transporter ATP-binding protein EcfA|unclassified	0.0996056782
+UniRef50_A5K991	0.0995916741
+UniRef50_A5K991|unclassified	0.0995916741
+UniRef50_W7Q0X8	0.0995875978
+UniRef50_W7Q0X8|unclassified	0.0995875978
+UniRef50_A9BCR1: S-adenosylmethionine decarboxylase proenzyme	0.0995850261
+UniRef50_A9BCR1: S-adenosylmethionine decarboxylase proenzyme|unclassified	0.0995850261
+UniRef50_T0JZ00: Signal-transduction and transcriptional-control protein	0.0995791678
+UniRef50_T0JZ00: Signal-transduction and transcriptional-control protein|unclassified	0.0995791678
+UniRef50_UPI00016A2AB8: hypothetical protein, partial	0.0995760547
+UniRef50_UPI00016A2AB8: hypothetical protein, partial|unclassified	0.0995760547
+UniRef50_UPI00036D38FE: hypothetical protein, partial	0.0995749408
+UniRef50_UPI00036D38FE: hypothetical protein, partial|unclassified	0.0995749408
+UniRef50_B0T1Q2: 5'-nucleotidase SurE	0.0995649806
+UniRef50_B0T1Q2: 5'-nucleotidase SurE|unclassified	0.0995649806
+UniRef50_B7IE32: Cytidylate kinase	0.0995634323
+UniRef50_B7IE32: Cytidylate kinase|unclassified	0.0995634323
+UniRef50_J7Q9B3	0.0995602768
+UniRef50_J7Q9B3|unclassified	0.0995602768
+UniRef50_UPI00039E2E46: hypothetical protein	0.0995488437
+UniRef50_UPI00039E2E46: hypothetical protein|unclassified	0.0995488437
+UniRef50_A6AJ76	0.0995483048
+UniRef50_A6AJ76|unclassified	0.0995483048
+UniRef50_UPI000262927F: GTPase Der	0.0995427428
+UniRef50_UPI000262927F: GTPase Der|unclassified	0.0995427428
+UniRef50_UPI0003FB35D8: chemotaxis protein CheY	0.0995379958
+UniRef50_UPI0003FB35D8: chemotaxis protein CheY|unclassified	0.0995379958
+UniRef50_Q74KU4: Non-canonical purine NTP pyrophosphatase	0.0995358814
+UniRef50_Q74KU4: Non-canonical purine NTP pyrophosphatase|unclassified	0.0995358814
+UniRef50_UPI000415BA3B: riboflavin biosynthesis protein RibF	0.0995338537
+UniRef50_UPI000415BA3B: riboflavin biosynthesis protein RibF|unclassified	0.0995338537
+UniRef50_G5KIG9: Threonine synthase	0.0995197319
+UniRef50_G5KIG9: Threonine synthase|unclassified	0.0995197319
+UniRef50_UPI00036AC778: MULTISPECIES: hypothetical protein	0.0995144930
+UniRef50_UPI00036AC778: MULTISPECIES: hypothetical protein|unclassified	0.0995144930
+UniRef50_A8AQ28: D-tagatose-1,6-bisphosphate aldolase subunit KbaY	0.0995030902
+UniRef50_A8AQ28: D-tagatose-1,6-bisphosphate aldolase subunit KbaY|unclassified	0.0995030902
+UniRef50_I1ZJT5: Competence protein ComYD	0.0995017276
+UniRef50_I1ZJT5: Competence protein ComYD|unclassified	0.0995017276
+UniRef50_Q38WL5: Methionine import ATP-binding protein MetN	0.0994982973
+UniRef50_Q38WL5: Methionine import ATP-binding protein MetN|unclassified	0.0994982973
+UniRef50_G5Q567: Inner membrane transport protein YfaV	0.0994981205
+UniRef50_G5Q567: Inner membrane transport protein YfaV|unclassified	0.0994981205
+UniRef50_UPI0000F56C27: hypothetical protein	0.0994962963
+UniRef50_UPI0000F56C27: hypothetical protein|unclassified	0.0994962963
+UniRef50_R0J7D3	0.0994879599
+UniRef50_R0J7D3|unclassified	0.0994879599
+UniRef50_K1VLS0	0.0994775112
+UniRef50_K1VLS0|unclassified	0.0994775112
+UniRef50_UPI0004754826: hypothetical protein	0.0994714407
+UniRef50_UPI0004754826: hypothetical protein|unclassified	0.0994714407
+UniRef50_UPI00046CFF5C: sodium:alanine symporter	0.0994713576
+UniRef50_UPI00046CFF5C: sodium:alanine symporter|unclassified	0.0994713576
+UniRef50_M1JHT8	0.0994702014
+UniRef50_M1JHT8|unclassified	0.0994702014
+UniRef50_S5YIN0: Partitioning protein ParB	0.0994691612
+UniRef50_S5YIN0: Partitioning protein ParB|unclassified	0.0994691612
+UniRef50_UPI0004737FFB: isopropylmalate isomerase	0.0994649025
+UniRef50_UPI0004737FFB: isopropylmalate isomerase|unclassified	0.0994649025
+UniRef50_D0LXH2	0.0994622720
+UniRef50_D0LXH2|unclassified	0.0994622720
+UniRef50_Q47Y72: Chaperone protein IbpA	0.0994621686
+UniRef50_Q47Y72: Chaperone protein IbpA|unclassified	0.0994621686
+UniRef50_UPI00047CAD8B: integrase, partial	0.0994588128
+UniRef50_UPI00047CAD8B: integrase, partial|unclassified	0.0994588128
+UniRef50_UPI00029DCAF1	0.0994498413
+UniRef50_UPI00029DCAF1|unclassified	0.0994498413
+UniRef50_B8GAP1	0.0994482376
+UniRef50_B8GAP1|unclassified	0.0994482376
+UniRef50_A0A011R0W7: Methylmalonyl-CoA mutase	0.0994460256
+UniRef50_A0A011R0W7: Methylmalonyl-CoA mutase|unclassified	0.0994460256
+UniRef50_UPI0004716842: hypothetical protein	0.0994429488
+UniRef50_UPI0004716842: hypothetical protein|unclassified	0.0994429488
+UniRef50_UPI0002D5D979: hypothetical protein	0.0994287927
+UniRef50_UPI0002D5D979: hypothetical protein|unclassified	0.0994287927
+UniRef50_X0MLS5	0.0994272601
+UniRef50_X0MLS5|unclassified	0.0994272601
+UniRef50_UPI0002B4A533: PREDICTED: elongation factor 2-like	0.0994205904
+UniRef50_UPI0002B4A533: PREDICTED: elongation factor 2-like|unclassified	0.0994205904
+UniRef50_UPI000400F72F: hypothetical protein	0.0994201700
+UniRef50_UPI000400F72F: hypothetical protein|unclassified	0.0994201700
+UniRef50_F8GWB2: Aromatic compounds catabolic protein	0.0994194513
+UniRef50_F8GWB2: Aromatic compounds catabolic protein|unclassified	0.0994194513
+UniRef50_UPI00034726BA: deaminase	0.0994138610
+UniRef50_UPI00034726BA: deaminase|unclassified	0.0994138610
+UniRef50_A0A011RVM2: Crotonyl-CoA reductase	0.0994076768
+UniRef50_A0A011RVM2: Crotonyl-CoA reductase|unclassified	0.0994076768
+UniRef50_C1DCM4: Hydroxyethylthiazole kinase	0.0994035161
+UniRef50_C1DCM4: Hydroxyethylthiazole kinase|unclassified	0.0994035161
+UniRef50_UPI000365C4F8: hypothetical protein	0.0993967517
+UniRef50_UPI000365C4F8: hypothetical protein|unclassified	0.0993967517
+UniRef50_Q07TC4	0.0993848908
+UniRef50_Q07TC4|unclassified	0.0993848908
+UniRef50_UPI00042AA310: PREDICTED: elongation factor Tu GTP-binding domain-containing protein 1-like, partial	0.0993705129
+UniRef50_UPI00042AA310: PREDICTED: elongation factor Tu GTP-binding domain-containing protein 1-like, partial|unclassified	0.0993705129
+UniRef50_UPI00037911FC: hypothetical protein	0.0993659849
+UniRef50_UPI00037911FC: hypothetical protein|unclassified	0.0993659849
+UniRef50_U4UV57	0.0993637781
+UniRef50_U4UV57|unclassified	0.0993637781
+UniRef50_UPI0003822371: hypothetical protein	0.0993622651
+UniRef50_UPI0003822371: hypothetical protein|unclassified	0.0993622651
+UniRef50_UPI00042B1EB5: Urease isoform 3	0.0993595900
+UniRef50_UPI00042B1EB5: Urease isoform 3|unclassified	0.0993595900
+UniRef50_UPI0004698AE3: nucleoside triphosphate hydrolase	0.0993576847
+UniRef50_UPI0004698AE3: nucleoside triphosphate hydrolase|unclassified	0.0993576847
+UniRef50_M4RDH7: General stress protein 14	0.0993563995
+UniRef50_M4RDH7: General stress protein 14|unclassified	0.0993563995
+UniRef50_UPI0003754C65: hypothetical protein	0.0993430680
+UniRef50_UPI0003754C65: hypothetical protein|unclassified	0.0993430680
+UniRef50_UPI0004688ECB: hypothetical protein	0.0993428064
+UniRef50_UPI0004688ECB: hypothetical protein|unclassified	0.0993428064
+UniRef50_UPI0001DD0A5D: short-chain dehydrogenase/reductase SDR	0.0993385071
+UniRef50_UPI0001DD0A5D: short-chain dehydrogenase/reductase SDR|unclassified	0.0993385071
+UniRef50_P19582: Homoserine dehydrogenase	0.0993353609
+UniRef50_P19582: Homoserine dehydrogenase|unclassified	0.0993353609
+UniRef50_UPI00037F561A: hypothetical protein, partial	0.0993330539
+UniRef50_UPI00037F561A: hypothetical protein, partial|unclassified	0.0993330539
+UniRef50_UPI0004774CC7: FAD-dependent oxidoreductase, partial	0.0993269180
+UniRef50_UPI0004774CC7: FAD-dependent oxidoreductase, partial|unclassified	0.0993269180
+UniRef50_UPI000381746F: hypothetical protein	0.0993255896
+UniRef50_UPI000381746F: hypothetical protein|unclassified	0.0993255896
+UniRef50_UPI00034DA954: helicase	0.0993170180
+UniRef50_UPI00034DA954: helicase|unclassified	0.0993170180
+UniRef50_UPI0003AA2BE4: adenylate kinase	0.0993111455
+UniRef50_UPI0003AA2BE4: adenylate kinase|unclassified	0.0993111455
+UniRef50_Q6MD07: tRNA N6-adenosine threonylcarbamoyltransferase	0.0993071473
+UniRef50_Q6MD07: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.0993071473
+UniRef50_F0V9N1	0.0993045872
+UniRef50_F0V9N1|unclassified	0.0993045872
+UniRef50_UPI00041622A2: hypothetical protein	0.0993019094
+UniRef50_UPI00041622A2: hypothetical protein|unclassified	0.0993019094
+UniRef50_UPI000289F32F: GntR family transcriptional regulator	0.0992963681
+UniRef50_UPI000289F32F: GntR family transcriptional regulator|unclassified	0.0992963681
+UniRef50_UPI000237B476: gluconate transporter	0.0992921274
+UniRef50_UPI000237B476: gluconate transporter|unclassified	0.0992921274
+UniRef50_UPI0003685ED1: hypothetical protein	0.0992886782
+UniRef50_UPI0003685ED1: hypothetical protein|unclassified	0.0992886782
+UniRef50_UPI000470C921: hypothetical protein	0.0992855075
+UniRef50_UPI000470C921: hypothetical protein|unclassified	0.0992855075
+UniRef50_Q18DZ3: Probable cell surface glycoprotein	0.0992779920
+UniRef50_Q18DZ3: Probable cell surface glycoprotein|unclassified	0.0992779920
+UniRef50_UPI000306B250: hypothetical protein	0.0992776203
+UniRef50_UPI000306B250: hypothetical protein|unclassified	0.0992776203
+UniRef50_UPI000475F53B: hypothetical protein	0.0992735369
+UniRef50_UPI000475F53B: hypothetical protein|unclassified	0.0992735369
+UniRef50_UPI0003B5AC83: peptide ABC transporter ATP-binding protein	0.0992674117
+UniRef50_UPI0003B5AC83: peptide ABC transporter ATP-binding protein|unclassified	0.0992674117
+UniRef50_S9QTH2	0.0992652171
+UniRef50_S9QTH2|unclassified	0.0992652171
+UniRef50_UPI000304092F: hypothetical protein	0.0992555826
+UniRef50_UPI000304092F: hypothetical protein|unclassified	0.0992555826
+UniRef50_Q4UMY7	0.0992545159
+UniRef50_Q4UMY7|unclassified	0.0992545159
+UniRef50_A0A011QE15	0.0992509686
+UniRef50_A0A011QE15|unclassified	0.0992509686
+UniRef50_UPI000262779C: SMP-30/gluconolaconase/LRE-like region-containing protein	0.0992479906
+UniRef50_UPI000262779C: SMP-30/gluconolaconase/LRE-like region-containing protein|unclassified	0.0992479906
+UniRef50_UPI0002557CB6: hypothetical protein	0.0992473905
+UniRef50_UPI0002557CB6: hypothetical protein|unclassified	0.0992473905
+UniRef50_F9KT21	0.0992464692
+UniRef50_F9KT21|unclassified	0.0992464692
+UniRef50_UPI00037169FB: LysR family transcriptional regulator	0.0992461815
+UniRef50_UPI00037169FB: LysR family transcriptional regulator|unclassified	0.0992461815
+UniRef50_W6M4I0	0.0992439854
+UniRef50_W6M4I0|unclassified	0.0992439854
+UniRef50_UPI00040D66F2: serine/threonine protein phosphatase	0.0992437671
+UniRef50_UPI00040D66F2: serine/threonine protein phosphatase|unclassified	0.0992437671
+UniRef50_UPI00037E7CFC: hypothetical protein	0.0992341595
+UniRef50_UPI00037E7CFC: hypothetical protein|unclassified	0.0992341595
+UniRef50_UPI00037700BC: hypothetical protein	0.0992297122
+UniRef50_UPI00037700BC: hypothetical protein|unclassified	0.0992297122
+UniRef50_I8J2Y9: Putative sporulation protein YyaC	0.0992094423
+UniRef50_I8J2Y9: Putative sporulation protein YyaC|unclassified	0.0992094423
+UniRef50_W4UB24: L-xylulose 5-phosphate 3-epimerase	0.0992057601
+UniRef50_W4UB24: L-xylulose 5-phosphate 3-epimerase|unclassified	0.0992057601
+UniRef50_Q7D0P3	0.0992045504
+UniRef50_Q7D0P3|unclassified	0.0992045504
+UniRef50_G8ZMA1	0.0992031875
+UniRef50_G8ZMA1|unclassified	0.0992031875
+UniRef50_UPI000387056C: PREDICTED: CREB-regulated transcription coactivator 2	0.0991925706
+UniRef50_UPI000387056C: PREDICTED: CREB-regulated transcription coactivator 2|unclassified	0.0991925706
+UniRef50_UPI00037C295B: hypothetical protein	0.0991920874
+UniRef50_UPI00037C295B: hypothetical protein|unclassified	0.0991920874
+UniRef50_UPI00047C64C3: hypothetical protein	0.0991873129
+UniRef50_UPI00047C64C3: hypothetical protein|unclassified	0.0991873129
+UniRef50_UPI0003696B4C: hypothetical protein, partial	0.0991788249
+UniRef50_UPI0003696B4C: hypothetical protein, partial|unclassified	0.0991788249
+UniRef50_UPI000417D571: hypothetical protein	0.0991694712
+UniRef50_UPI000417D571: hypothetical protein|unclassified	0.0991694712
+UniRef50_D8GX91: Possible response regulator aspartate phosphatase	0.0991684394
+UniRef50_D8GX91: Possible response regulator aspartate phosphatase|unclassified	0.0991684394
+UniRef50_Q2HBB2	0.0991651304
+UniRef50_Q2HBB2|unclassified	0.0991651304
+UniRef50_UPI000237A7F7: ribose transport ATP-binding protein rbsA	0.0991574953
+UniRef50_UPI000237A7F7: ribose transport ATP-binding protein rbsA|unclassified	0.0991574953
+UniRef50_G4QMV0	0.0991473777
+UniRef50_G4QMV0|unclassified	0.0991473777
+UniRef50_A5CD22: UDP-N-acetylmuramate--L-alanine ligase	0.0991394113
+UniRef50_A5CD22: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.0991394113
+UniRef50_UPI00047A1198: hypothetical protein	0.0991311336
+UniRef50_UPI00047A1198: hypothetical protein|unclassified	0.0991311336
+UniRef50_Q8Y3Y6: Thymidylate kinase	0.0991250854
+UniRef50_Q8Y3Y6: Thymidylate kinase|unclassified	0.0991250854
+UniRef50_D9XP44	0.0991176226
+UniRef50_D9XP44|unclassified	0.0991176226
+UniRef50_UPI0003B344E0: hypothetical protein, partial	0.0991076619
+UniRef50_UPI0003B344E0: hypothetical protein, partial|unclassified	0.0991076619
+UniRef50_UPI0001744342: heme-binding protein	0.0991005515
+UniRef50_UPI0001744342: heme-binding protein|unclassified	0.0991005515
+UniRef50_Q3YSA8: Porphobilinogen deaminase	0.0990974321
+UniRef50_Q3YSA8: Porphobilinogen deaminase|unclassified	0.0990974321
+UniRef50_UPI000377A6D2: cold-shock protein	0.0990964819
+UniRef50_UPI000377A6D2: cold-shock protein|unclassified	0.0990964819
+UniRef50_A6WAF5	0.0990953303
+UniRef50_A6WAF5|unclassified	0.0990953303
+UniRef50_P17330: Glyceraldehyde-3-phosphate dehydrogenase 3	0.0990907071
+UniRef50_P17330: Glyceraldehyde-3-phosphate dehydrogenase 3|unclassified	0.0990907071
+UniRef50_G2DRR8	0.0990878366
+UniRef50_G2DRR8|unclassified	0.0990878366
+UniRef50_W0MUW9: Membrane protein	0.0990866532
+UniRef50_W0MUW9: Membrane protein|unclassified	0.0990866532
+UniRef50_X5TWB1: C4-dicarboxylate ABC transporter	0.0990859020
+UniRef50_X5TWB1: C4-dicarboxylate ABC transporter|unclassified	0.0990859020
+UniRef50_M7MZ35: Putative AcnD-accessory protein PrpF	0.0990809650
+UniRef50_M7MZ35: Putative AcnD-accessory protein PrpF|unclassified	0.0990809650
+UniRef50_UPI0003B43B51: glutathione peroxidase	0.0990687906
+UniRef50_UPI0003B43B51: glutathione peroxidase|unclassified	0.0990687906
+UniRef50_UPI0002EEAB27: hypothetical protein	0.0990674480
+UniRef50_UPI0002EEAB27: hypothetical protein|unclassified	0.0990674480
+UniRef50_UPI0003903DD6: Protein ArsC 1	0.0990527208
+UniRef50_UPI0003903DD6: Protein ArsC 1|unclassified	0.0990527208
+UniRef50_UPI000363DE90: hypothetical protein	0.0990408438
+UniRef50_UPI000363DE90: hypothetical protein|unclassified	0.0990408438
+UniRef50_X2H864: ABC-type multidrug transport system, permease component	0.0990392137
+UniRef50_X2H864: ABC-type multidrug transport system, permease component|unclassified	0.0990392137
+UniRef50_W0PAW0: Integral membrane protein	0.0990383776
+UniRef50_W0PAW0: Integral membrane protein|unclassified	0.0990383776
+UniRef50_UPI00047A285C: heme response regulator HssR	0.0990371169
+UniRef50_UPI00047A285C: heme response regulator HssR|unclassified	0.0990371169
+UniRef50_F2ZLL3	0.0990362875
+UniRef50_F2ZLL3|unclassified	0.0990362875
+UniRef50_UPI0003345D38: PREDICTED: zinc finger protein 839	0.0990360140
+UniRef50_UPI0003345D38: PREDICTED: zinc finger protein 839|unclassified	0.0990360140
+UniRef50_UPI0003A8C9CC: ArsR family transcriptional regulator	0.0990330933
+UniRef50_UPI0003A8C9CC: ArsR family transcriptional regulator|unclassified	0.0990330933
+UniRef50_UPI00047C03BE: hypothetical protein	0.0990308530
+UniRef50_UPI00047C03BE: hypothetical protein|unclassified	0.0990308530
+UniRef50_UPI0003EE1B84: PREDICTED: protein MTO1 homolog, mitochondrial	0.0990297307
+UniRef50_UPI0003EE1B84: PREDICTED: protein MTO1 homolog, mitochondrial|unclassified	0.0990297307
+UniRef50_UPI00035CA60F: hypothetical protein	0.0990292467
+UniRef50_UPI00035CA60F: hypothetical protein|unclassified	0.0990292467
+UniRef50_C3NGW2: Ketol-acid reductoisomerase	0.0990268334
+UniRef50_C3NGW2: Ketol-acid reductoisomerase|unclassified	0.0990268334
+UniRef50_UPI0004659182: phosphoadenosine phosphosulfate reductase	0.0990124102
+UniRef50_UPI0004659182: phosphoadenosine phosphosulfate reductase|unclassified	0.0990124102
+UniRef50_U3HPL2: Phospholipase	0.0990067303
+UniRef50_U3HPL2: Phospholipase|unclassified	0.0990067303
+UniRef50_Q72UH6: Phosphoribosylformylglycinamidine synthase 1	0.0990064030
+UniRef50_Q72UH6: Phosphoribosylformylglycinamidine synthase 1|unclassified	0.0990064030
+UniRef50_N6XBX7	0.0990010482
+UniRef50_N6XBX7|unclassified	0.0990010482
+UniRef50_Q21M27: Glucose-1-phosphate adenylyltransferase	0.0990008596
+UniRef50_Q21M27: Glucose-1-phosphate adenylyltransferase|unclassified	0.0990008596
+UniRef50_A5FN12: Enolase	0.0989981261
+UniRef50_A5FN12: Enolase|unclassified	0.0989981261
+UniRef50_Q03YL0: Glycerol-3-phosphate dehydrogenase [NAD(P)+]	0.0989937476
+UniRef50_Q03YL0: Glycerol-3-phosphate dehydrogenase [NAD(P)+]|unclassified	0.0989937476
+UniRef50_E6KTA4	0.0989758952
+UniRef50_E6KTA4|unclassified	0.0989758952
+UniRef50_X7Y3V4: PE-PGRS FAMILY PROTEIN	0.0989733868
+UniRef50_X7Y3V4: PE-PGRS FAMILY PROTEIN|unclassified	0.0989733868
+UniRef50_UPI00021A5D5B: PREDICTED: bifunctional enzyme lpxC/fabZ-like, partial	0.0989726797
+UniRef50_UPI00021A5D5B: PREDICTED: bifunctional enzyme lpxC/fabZ-like, partial|unclassified	0.0989726797
+UniRef50_D4LLK4: Recombinational DNA repair ATPase (RecF pathway)	0.0989705647
+UniRef50_D4LLK4: Recombinational DNA repair ATPase (RecF pathway)|unclassified	0.0989705647
+UniRef50_B2ANY5: Podospora anserina S mat+ genomic DNA chromosome 7, supercontig 3	0.0989572526
+UniRef50_B2ANY5: Podospora anserina S mat+ genomic DNA chromosome 7, supercontig 3|unclassified	0.0989572526
+UniRef50_O07899: Vibriobactin-specific 2,3-dihydroxybenzoate-AMP ligase	0.0989518361
+UniRef50_O07899: Vibriobactin-specific 2,3-dihydroxybenzoate-AMP ligase|unclassified	0.0989518361
+UniRef50_C7RCG9: GAF domain-containing protein	0.0989513351
+UniRef50_C7RCG9: GAF domain-containing protein|unclassified	0.0989513351
+UniRef50_A5WAV5: ATPase with chaperone activity-like protein	0.0989481748
+UniRef50_A5WAV5: ATPase with chaperone activity-like protein|unclassified	0.0989481748
+UniRef50_F0QFW0	0.0989463123
+UniRef50_F0QFW0|unclassified	0.0989463123
+UniRef50_UPI00039E6578: hypothetical protein	0.0989420133
+UniRef50_UPI00039E6578: hypothetical protein|unclassified	0.0989420133
+UniRef50_UPI0002E805CD: hypothetical protein	0.0989364710
+UniRef50_UPI0002E805CD: hypothetical protein|unclassified	0.0989364710
+UniRef50_M5A1K7	0.0989323336
+UniRef50_M5A1K7|unclassified	0.0989323336
+UniRef50_Q7NPA1: Glr0156 protein	0.0989150783
+UniRef50_Q7NPA1: Glr0156 protein|unclassified	0.0989150783
+UniRef50_UPI0001F85C90: transporter-like protein component with ATP-binding domain	0.0989080411
+UniRef50_UPI0001F85C90: transporter-like protein component with ATP-binding domain|unclassified	0.0989080411
+UniRef50_UPI0001E8958F: inosine-uridine nucleoside hydrolase	0.0989073222
+UniRef50_UPI0001E8958F: inosine-uridine nucleoside hydrolase|unclassified	0.0989073222
+UniRef50_T4AYR7	0.0989061821
+UniRef50_T4AYR7|unclassified	0.0989061821
+UniRef50_X5Z2U4	0.0989009449
+UniRef50_X5Z2U4|unclassified	0.0989009449
+UniRef50_I4Z1D1	0.0988871986
+UniRef50_I4Z1D1|unclassified	0.0988871986
+UniRef50_UPI0003787D81: hypothetical protein	0.0988827294
+UniRef50_UPI0003787D81: hypothetical protein|unclassified	0.0988827294
+UniRef50_Q5FGG6	0.0988793633
+UniRef50_Q5FGG6|unclassified	0.0988793633
+UniRef50_UPI00039E6CDE: 50S ribosomal protein L17	0.0988711687
+UniRef50_UPI00039E6CDE: 50S ribosomal protein L17|unclassified	0.0988711687
+UniRef50_Q8HXP0: Superoxide dismutase [Mn], mitochondrial	0.0988688181
+UniRef50_Q8HXP0: Superoxide dismutase [Mn], mitochondrial|unclassified	0.0988688181
+UniRef50_Q8KPR0: Pyridoxine 5'-phosphate synthase	0.0988652881
+UniRef50_Q8KPR0: Pyridoxine 5'-phosphate synthase|unclassified	0.0988652881
+UniRef50_UPI00037F19D4: hypothetical protein	0.0988634539
+UniRef50_UPI00037F19D4: hypothetical protein|unclassified	0.0988634539
+UniRef50_Q59094: Superoxide dismutase [Mn]	0.0988589812
+UniRef50_Q59094: Superoxide dismutase [Mn]|unclassified	0.0988589812
+UniRef50_UPI0003B44F14: NADH dehydrogenase, partial	0.0988577556
+UniRef50_UPI0003B44F14: NADH dehydrogenase, partial|unclassified	0.0988577556
+UniRef50_Q1LTN1: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.0988533337
+UniRef50_Q1LTN1: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.0988533337
+UniRef50_T0JU89: Sporulation protein YyaC	0.0988454767
+UniRef50_T0JU89: Sporulation protein YyaC|unclassified	0.0988454767
+UniRef50_W5ITP4: Pilus assembly protein PilV	0.0988418024
+UniRef50_W5ITP4: Pilus assembly protein PilV|unclassified	0.0988418024
+UniRef50_Q8G5P8: Methionine import ATP-binding protein MetN	0.0988408222
+UniRef50_Q8G5P8: Methionine import ATP-binding protein MetN|unclassified	0.0988408222
+UniRef50_UPI000379878F: hypothetical protein	0.0988399544
+UniRef50_UPI000379878F: hypothetical protein|unclassified	0.0988399544
+UniRef50_UPI00046FA0D1: 23S rRNA pseudouridylate synthase	0.0988369921
+UniRef50_UPI00046FA0D1: 23S rRNA pseudouridylate synthase|unclassified	0.0988369921
+UniRef50_G2PPR9	0.0988355372
+UniRef50_G2PPR9|unclassified	0.0988355372
+UniRef50_G7V6D5: Tripartite ATP-independent periplasmic transporter DctQ component	0.0988334676
+UniRef50_G7V6D5: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.0988334676
+UniRef50_UPI0003B3499E: lytic transglycosylase	0.0988334109
+UniRef50_UPI0003B3499E: lytic transglycosylase|unclassified	0.0988334109
+UniRef50_P26395: Protein RfbI	0.0988312663
+UniRef50_P26395: Protein RfbI|unclassified	0.0988312663
+UniRef50_A0A023NX42	0.0988217349
+UniRef50_A0A023NX42|unclassified	0.0988217349
+UniRef50_A8FRW7: Fe-S protein-like protein	0.0988202406
+UniRef50_A8FRW7: Fe-S protein-like protein|unclassified	0.0988202406
+UniRef50_A8YUN6: Ribosomal RNA small subunit methyltransferase H	0.0988189947
+UniRef50_A8YUN6: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0988189947
+UniRef50_Q6ZAM9	0.0988161136
+UniRef50_Q6ZAM9|unclassified	0.0988161136
+UniRef50_UPI0002E2CBA6: hypothetical protein	0.0987989010
+UniRef50_UPI0002E2CBA6: hypothetical protein|unclassified	0.0987989010
+UniRef50_UPI0003755E23: hypothetical protein	0.0987978962
+UniRef50_UPI0003755E23: hypothetical protein|unclassified	0.0987978962
+UniRef50_Q8RFX8: tRNA N6-adenosine threonylcarbamoyltransferase	0.0987900729
+UniRef50_Q8RFX8: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.0987900729
+UniRef50_A9U867: Predicted protein (Fragment)	0.0987886676
+UniRef50_A9U867: Predicted protein (Fragment)|unclassified	0.0987886676
+UniRef50_UPI0003642F1B: peptide ABC transporter permease	0.0987875600
+UniRef50_UPI0003642F1B: peptide ABC transporter permease|unclassified	0.0987875600
+UniRef50_UPI0004416580: Homocysteine S-methyltransferase, partial	0.0987861470
+UniRef50_UPI0004416580: Homocysteine S-methyltransferase, partial|unclassified	0.0987861470
+UniRef50_G8DB36	0.0987704195
+UniRef50_G8DB36|unclassified	0.0987704195
+UniRef50_UPI000248D061: iron-hydroxamate transporter permease subunit, partial	0.0987658382
+UniRef50_UPI000248D061: iron-hydroxamate transporter permease subunit, partial|unclassified	0.0987658382
+UniRef50_W7L3N5	0.0987611025
+UniRef50_W7L3N5|unclassified	0.0987611025
+UniRef50_X1HJN8: Marine sediment metagenome DNA, contig: S03H2_S07358	0.0987597592
+UniRef50_X1HJN8: Marine sediment metagenome DNA, contig: S03H2_S07358|unclassified	0.0987597592
+UniRef50_Q8FMD0: Peptide deformylase 2	0.0987533387
+UniRef50_Q8FMD0: Peptide deformylase 2|unclassified	0.0987533387
+UniRef50_Q8NM41: Peptide deformylase 2	0.0987533387
+UniRef50_Q8NM41: Peptide deformylase 2|unclassified	0.0987533387
+UniRef50_W4UXS2: Lysine 2,3-aminomutase	0.0987527973
+UniRef50_W4UXS2: Lysine 2,3-aminomutase|unclassified	0.0987527973
+UniRef50_UPI000225F38E: hypothetical protein	0.0987413518
+UniRef50_UPI000225F38E: hypothetical protein|unclassified	0.0987413518
+UniRef50_UPI0004670A8C: hypothetical protein	0.0987390934
+UniRef50_UPI0004670A8C: hypothetical protein|unclassified	0.0987390934
+UniRef50_A0RZ75: Imidazoleglycerol-phosphate dehydratase	0.0987370582
+UniRef50_A0RZ75: Imidazoleglycerol-phosphate dehydratase|unclassified	0.0987370582
+UniRef50_A0A038ITU4: TRAP transporter, DctM-like membrane domain protein	0.0987357196
+UniRef50_A0A038ITU4: TRAP transporter, DctM-like membrane domain protein|unclassified	0.0987357196
+UniRef50_U6I0Y2	0.0987278391
+UniRef50_U6I0Y2|unclassified	0.0987278391
+UniRef50_UPI0001D2E7B0: Hemolysin-type calcium-binding region	0.0987259843
+UniRef50_UPI0001D2E7B0: Hemolysin-type calcium-binding region|unclassified	0.0987259843
+UniRef50_UPI0003B4C1BA: ATPase AAA	0.0987208166
+UniRef50_UPI0003B4C1BA: ATPase AAA|unclassified	0.0987208166
+UniRef50_M5DP54	0.0987149761
+UniRef50_M5DP54|unclassified	0.0987149761
+UniRef50_UPI000237C827: single-stranded DNA-binding protein	0.0987139914
+UniRef50_UPI000237C827: single-stranded DNA-binding protein|unclassified	0.0987139914
+UniRef50_C8PYM1	0.0987024574
+UniRef50_C8PYM1|unclassified	0.0987024574
+UniRef50_UPI0003DF781B: PREDICTED: saccharopine dehydrogenase-like oxidoreductase-like, partial	0.0987015588
+UniRef50_UPI0003DF781B: PREDICTED: saccharopine dehydrogenase-like oxidoreductase-like, partial|unclassified	0.0987015588
+UniRef50_UPI000466577D: hypothetical protein	0.0986998901
+UniRef50_UPI000466577D: hypothetical protein|unclassified	0.0986998901
+UniRef50_W2F8T1	0.0986981916
+UniRef50_W2F8T1|unclassified	0.0986981916
+UniRef50_UPI0001B43E1A: glycerol kinase, partial	0.0986849766
+UniRef50_UPI0001B43E1A: glycerol kinase, partial|unclassified	0.0986849766
+UniRef50_UPI00046FA416: hypothetical protein	0.0986845382
+UniRef50_UPI00046FA416: hypothetical protein|unclassified	0.0986845382
+UniRef50_R4GH13	0.0986840747
+UniRef50_R4GH13|unclassified	0.0986840747
+UniRef50_UPI0003737461: hypothetical protein	0.0986803205
+UniRef50_UPI0003737461: hypothetical protein|unclassified	0.0986803205
+UniRef50_Q181T5: Enolase	0.0986766230
+UniRef50_Q181T5: Enolase|unclassified	0.0986766230
+UniRef50_S5U5P2	0.0986660747
+UniRef50_S5U5P2|unclassified	0.0986660747
+UniRef50_X2H172: ABC transporter substrate-binding protein	0.0986588624
+UniRef50_X2H172: ABC transporter substrate-binding protein|unclassified	0.0986588624
+UniRef50_Q4L703: Valine--tRNA ligase	0.0986583029
+UniRef50_Q4L703: Valine--tRNA ligase|unclassified	0.0986583029
+UniRef50_S5N4L1: Phosphodiesterase	0.0986573186
+UniRef50_S5N4L1: Phosphodiesterase|unclassified	0.0986573186
+UniRef50_Q1ZXF1: Probable enoyl-CoA hydratase, mitochondrial	0.0986550907
+UniRef50_Q1ZXF1: Probable enoyl-CoA hydratase, mitochondrial|unclassified	0.0986550907
+UniRef50_UPI0003B600A5: elongation factor P	0.0986533774
+UniRef50_UPI0003B600A5: elongation factor P|unclassified	0.0986533774
+UniRef50_U7PC96	0.0986474279
+UniRef50_U7PC96|unclassified	0.0986474279
+UniRef50_UPI000368EF4F: hypothetical protein	0.0986453979
+UniRef50_UPI000368EF4F: hypothetical protein|unclassified	0.0986453979
+UniRef50_D3DA43	0.0986446469
+UniRef50_D3DA43|unclassified	0.0986446469
+UniRef50_UPI000470E6C8: hypothetical protein	0.0986402620
+UniRef50_UPI000470E6C8: hypothetical protein|unclassified	0.0986402620
+UniRef50_UPI0002E766CE: hypothetical protein	0.0986310999
+UniRef50_UPI0002E766CE: hypothetical protein|unclassified	0.0986310999
+UniRef50_UPI0003754D3B: hypothetical protein	0.0986245656
+UniRef50_UPI0003754D3B: hypothetical protein|unclassified	0.0986245656
+UniRef50_W5XB82: Putative family S53 non-peptidase-like protein	0.0986212296
+UniRef50_W5XB82: Putative family S53 non-peptidase-like protein|unclassified	0.0986212296
+UniRef50_UPI00036582AA: hypothetical protein	0.0986206311
+UniRef50_UPI00036582AA: hypothetical protein|unclassified	0.0986206311
+UniRef50_UPI00037F0688: hypothetical protein	0.0986076017
+UniRef50_UPI00037F0688: hypothetical protein|unclassified	0.0986076017
+UniRef50_E1ZBL2	0.0986071435
+UniRef50_E1ZBL2|unclassified	0.0986071435
+UniRef50_UPI000472B134: 3-oxoacyl-ACP reductase	0.0986025892
+UniRef50_UPI000472B134: 3-oxoacyl-ACP reductase|unclassified	0.0986025892
+UniRef50_UPI0001FFE295: hypothetical protein, partial	0.0985790251
+UniRef50_UPI0001FFE295: hypothetical protein, partial|unclassified	0.0985790251
+UniRef50_UPI00046D3C5B: hypothetical protein	0.0985747340
+UniRef50_UPI00046D3C5B: hypothetical protein|unclassified	0.0985747340
+UniRef50_UPI0003F0EEA6: PREDICTED: histidine-rich glycoprotein-like	0.0985695214
+UniRef50_UPI0003F0EEA6: PREDICTED: histidine-rich glycoprotein-like|unclassified	0.0985695214
+UniRef50_C0R000: Adenylate kinase	0.0985687739
+UniRef50_C0R000: Adenylate kinase|unclassified	0.0985687739
+UniRef50_UPI000399AA3F: RNA polymerase subunit sigma-24	0.0985687717
+UniRef50_UPI000399AA3F: RNA polymerase subunit sigma-24|unclassified	0.0985687717
+UniRef50_O68955: Nitrogenase iron-iron protein alpha chain (Fragment)	0.0985664412
+UniRef50_O68955: Nitrogenase iron-iron protein alpha chain (Fragment)|unclassified	0.0985664412
+UniRef50_U2QFP3: Relaxase/mobilization nuclease domain protein (Fragment)	0.0985599542
+UniRef50_U2QFP3: Relaxase/mobilization nuclease domain protein (Fragment)|unclassified	0.0985599542
+UniRef50_Q8R6A2: Phosphoheptose isomerase	0.0985580620
+UniRef50_Q8R6A2: Phosphoheptose isomerase|unclassified	0.0985580620
+UniRef50_UPI0002196F2D: alkaline phosphatase synthesis transcriptional regulatory protein PhoP	0.0985579159
+UniRef50_UPI0002196F2D: alkaline phosphatase synthesis transcriptional regulatory protein PhoP|unclassified	0.0985579159
+UniRef50_UPI000465E42E: hypothetical protein	0.0985530756
+UniRef50_UPI000465E42E: hypothetical protein|unclassified	0.0985530756
+UniRef50_UPI0004794B50: hypothetical protein	0.0985484124
+UniRef50_UPI0004794B50: hypothetical protein|unclassified	0.0985484124
+UniRef50_M0V5N6	0.0985460284
+UniRef50_M0V5N6|unclassified	0.0985460284
+UniRef50_UPI000479524D: iron transporter FeoB	0.0985437338
+UniRef50_UPI000479524D: iron transporter FeoB|unclassified	0.0985437338
+UniRef50_U6I6D8: Dihydropyrimidine dehydrogenase (NADP+)	0.0985297404
+UniRef50_U6I6D8: Dihydropyrimidine dehydrogenase (NADP+)|unclassified	0.0985297404
+UniRef50_UPI0001CBBA36: PREDICTED: sorbitol dehydrogenase-like	0.0985268737
+UniRef50_UPI0001CBBA36: PREDICTED: sorbitol dehydrogenase-like|unclassified	0.0985268737
+UniRef50_A1WR07: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase	0.0985229792
+UniRef50_A1WR07: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|unclassified	0.0985229792
+UniRef50_UPI00047E7610: peroxiredoxin	0.0985202746
+UniRef50_UPI00047E7610: peroxiredoxin|unclassified	0.0985202746
+UniRef50_UPI0003B5D342: hypothetical protein	0.0985194878
+UniRef50_UPI0003B5D342: hypothetical protein|unclassified	0.0985194878
+UniRef50_P21399: Cytoplasmic aconitate hydratase	0.0985188799
+UniRef50_P21399: Cytoplasmic aconitate hydratase|unclassified	0.0985188799
+UniRef50_Q72AR4: Lipoprotein signal peptidase	0.0985161155
+UniRef50_Q72AR4: Lipoprotein signal peptidase|unclassified	0.0985161155
+UniRef50_A3QJM3: Rhodanese domain protein	0.0985056356
+UniRef50_A3QJM3: Rhodanese domain protein|unclassified	0.0985056356
+UniRef50_A0L4K4	0.0984938884
+UniRef50_A0L4K4|unclassified	0.0984938884
+UniRef50_UPI000479C855: hypothetical protein	0.0984794884
+UniRef50_UPI000479C855: hypothetical protein|unclassified	0.0984794884
+UniRef50_Q1RI04: Replicative DNA helicase	0.0984760671
+UniRef50_Q1RI04: Replicative DNA helicase|unclassified	0.0984760671
+UniRef50_G9RRR3	0.0984752311
+UniRef50_G9RRR3|unclassified	0.0984752311
+UniRef50_UPI00016C3CBF: tRNA pseudouridine synthase D	0.0984735884
+UniRef50_UPI00016C3CBF: tRNA pseudouridine synthase D|unclassified	0.0984735884
+UniRef50_A0A026W047	0.0984687966
+UniRef50_A0A026W047|unclassified	0.0984687966
+UniRef50_UPI00016C390B: ferrous iron transport protein B, partial	0.0984647447
+UniRef50_UPI00016C390B: ferrous iron transport protein B, partial|unclassified	0.0984647447
+UniRef50_UPI000237AE6A: 2,4-dihydroxyhept-2-ene-1,7-dioic acid aldolase protein	0.0984579834
+UniRef50_UPI000237AE6A: 2,4-dihydroxyhept-2-ene-1,7-dioic acid aldolase protein|unclassified	0.0984579834
+UniRef50_A0A033US10	0.0984577648
+UniRef50_A0A033US10|unclassified	0.0984577648
+UniRef50_X0X222: Marine sediment metagenome DNA, contig: S01H1_S33737 (Fragment)	0.0984525559
+UniRef50_X0X222: Marine sediment metagenome DNA, contig: S01H1_S33737 (Fragment)|unclassified	0.0984525559
+UniRef50_G0EI64: Ethanolamine utilization protein EutJ family protein	0.0984492948
+UniRef50_G0EI64: Ethanolamine utilization protein EutJ family protein|unclassified	0.0984492948
+UniRef50_UPI000475039E: gluconate 5-dehydrogenase	0.0984490380
+UniRef50_UPI000475039E: gluconate 5-dehydrogenase|unclassified	0.0984490380
+UniRef50_S9QRT5	0.0984481141
+UniRef50_S9QRT5|unclassified	0.0984481141
+UniRef50_UPI00046E14DC: PREDICTED: alcohol dehydrogenase 1B	0.0984334532
+UniRef50_UPI00046E14DC: PREDICTED: alcohol dehydrogenase 1B|unclassified	0.0984334532
+UniRef50_Q8K9I7: Asparagine--tRNA ligase	0.0984265767
+UniRef50_Q8K9I7: Asparagine--tRNA ligase|unclassified	0.0984265767
+UniRef50_E1ZDD1	0.0984237485
+UniRef50_E1ZDD1|unclassified	0.0984237485
+UniRef50_B5JTX2	0.0984234739
+UniRef50_B5JTX2|unclassified	0.0984234739
+UniRef50_UPI000366B6DF: hypothetical protein	0.0984159278
+UniRef50_UPI000366B6DF: hypothetical protein|unclassified	0.0984159278
+UniRef50_UPI00036F1FA5: hypothetical protein	0.0984096731
+UniRef50_UPI00036F1FA5: hypothetical protein|unclassified	0.0984096731
+UniRef50_UPI0003681E2F: hypothetical protein	0.0984029585
+UniRef50_UPI0003681E2F: hypothetical protein|unclassified	0.0984029585
+UniRef50_T2YKK1: Radical SAM family protein	0.0983986828
+UniRef50_T2YKK1: Radical SAM family protein|unclassified	0.0983986828
+UniRef50_UPI0003B49165: hypothetical protein	0.0983889101
+UniRef50_UPI0003B49165: hypothetical protein|unclassified	0.0983889101
+UniRef50_UPI0002F8041C: hypothetical protein	0.0983863078
+UniRef50_UPI0002F8041C: hypothetical protein|unclassified	0.0983863078
+UniRef50_Q53199: Probable glutamate dehydrogenase	0.0983800547
+UniRef50_Q53199: Probable glutamate dehydrogenase|unclassified	0.0983800547
+UniRef50_K2A0T9: Membrane protein involved in aromatic hydrocarbon degradation	0.0983743646
+UniRef50_K2A0T9: Membrane protein involved in aromatic hydrocarbon degradation|unclassified	0.0983743646
+UniRef50_UPI00039AAD81: amino acid permease	0.0983725245
+UniRef50_UPI00039AAD81: amino acid permease|unclassified	0.0983725245
+UniRef50_P44316: Diaminopimelate decarboxylase	0.0983645487
+UniRef50_P44316: Diaminopimelate decarboxylase|unclassified	0.0983645487
+UniRef50_UPI00037BBE44: hypothetical protein	0.0983601214
+UniRef50_UPI00037BBE44: hypothetical protein|unclassified	0.0983601214
+UniRef50_UPI0003B77D72: serine dehydratase subunit beta	0.0983575861
+UniRef50_UPI0003B77D72: serine dehydratase subunit beta|unclassified	0.0983575861
+UniRef50_X1THZ3: Marine sediment metagenome DNA, contig: S12H4_L00239 (Fragment)	0.0983537904
+UniRef50_X1THZ3: Marine sediment metagenome DNA, contig: S12H4_L00239 (Fragment)|unclassified	0.0983537904
+UniRef50_UPI00046CC907: iron ABC transporter permease	0.0983526095
+UniRef50_UPI00046CC907: iron ABC transporter permease|unclassified	0.0983526095
+UniRef50_A0A024K8C2: Mll7390 protein	0.0983463792
+UniRef50_A0A024K8C2: Mll7390 protein|unclassified	0.0983463792
+UniRef50_B1GZJ0: Elongation factor P	0.0983461973
+UniRef50_B1GZJ0: Elongation factor P|unclassified	0.0983461973
+UniRef50_G0A3B0: Cyclase/dehydrase	0.0983317366
+UniRef50_G0A3B0: Cyclase/dehydrase|unclassified	0.0983317366
+UniRef50_UPI00037CF752: hypothetical protein	0.0983256981
+UniRef50_UPI00037CF752: hypothetical protein|unclassified	0.0983256981
+UniRef50_R6RWS4	0.0983220111
+UniRef50_R6RWS4|unclassified	0.0983220111
+UniRef50_Q9FE64: Elongation factor G, mitochondrial	0.0983210228
+UniRef50_Q9FE64: Elongation factor G, mitochondrial|unclassified	0.0983210228
+UniRef50_UPI00037B54FA: hypothetical protein	0.0983179015
+UniRef50_UPI00037B54FA: hypothetical protein|unclassified	0.0983179015
+UniRef50_UPI000474C9A9: hypothetical protein	0.0983135187
+UniRef50_UPI000474C9A9: hypothetical protein|unclassified	0.0983135187
+UniRef50_R5E9E2	0.0983081855
+UniRef50_R5E9E2|unclassified	0.0983081855
+UniRef50_T0HCW0	0.0983078628
+UniRef50_T0HCW0|unclassified	0.0983078628
+UniRef50_J1L2G4: Metallophosphoesterase	0.0983058644
+UniRef50_J1L2G4: Metallophosphoesterase|unclassified	0.0983058644
+UniRef50_UPI00035E8623: hypothetical protein	0.0983042563
+UniRef50_UPI00035E8623: hypothetical protein|unclassified	0.0983042563
+UniRef50_J7LDC8	0.0982997768
+UniRef50_J7LDC8|unclassified	0.0982997768
+UniRef50_R7WUG9	0.0982994256
+UniRef50_R7WUG9|unclassified	0.0982994256
+UniRef50_L9PKL8: Putative membrane protein	0.0982972827
+UniRef50_L9PKL8: Putative membrane protein|unclassified	0.0982972827
+UniRef50_B8EJY2: Chromosomal replication initiator DnaA	0.0982873751
+UniRef50_B8EJY2: Chromosomal replication initiator DnaA|unclassified	0.0982873751
+UniRef50_K2H812	0.0982865312
+UniRef50_K2H812|unclassified	0.0982865312
+UniRef50_Q82EP8	0.0982821466
+UniRef50_Q82EP8|unclassified	0.0982821466
+UniRef50_Q6D2N7: tRNA pseudouridine synthase A	0.0982776449
+UniRef50_Q6D2N7: tRNA pseudouridine synthase A|unclassified	0.0982776449
+UniRef50_UPI0003B5A0FA: 2,5-diketo-D-gluconic acid reductase	0.0982771396
+UniRef50_UPI0003B5A0FA: 2,5-diketo-D-gluconic acid reductase|unclassified	0.0982771396
+UniRef50_UPI00036DB708: transcriptional regulator	0.0982615761
+UniRef50_UPI00036DB708: transcriptional regulator|unclassified	0.0982615761
+UniRef50_H5WN75	0.0982556401
+UniRef50_H5WN75|unclassified	0.0982556401
+UniRef50_Q1GBR1: Ribosomal RNA small subunit methyltransferase A	0.0982471158
+UniRef50_Q1GBR1: Ribosomal RNA small subunit methyltransferase A|unclassified	0.0982471158
+UniRef50_UPI00047C3548: membrane protein	0.0982392926
+UniRef50_UPI00047C3548: membrane protein|unclassified	0.0982392926
+UniRef50_UPI000225C14C: hypothetical protein	0.0982372467
+UniRef50_UPI000225C14C: hypothetical protein|unclassified	0.0982372467
+UniRef50_UPI000466F951: hypothetical protein	0.0982249619
+UniRef50_UPI000466F951: hypothetical protein|unclassified	0.0982249619
+UniRef50_UPI0003B57181: HNH endonuclease	0.0982227576
+UniRef50_UPI0003B57181: HNH endonuclease|unclassified	0.0982227576
+UniRef50_Q8KBE8: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase	0.0982212156
+UniRef50_Q8KBE8: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase|unclassified	0.0982212156
+UniRef50_UPI000255AA24: beta-lactamase	0.0982056533
+UniRef50_UPI000255AA24: beta-lactamase|unclassified	0.0982056533
+UniRef50_I4YZ76: Putative transcription activator	0.0982040154
+UniRef50_I4YZ76: Putative transcription activator|unclassified	0.0982040154
+UniRef50_UPI00046454A2: hypothetical protein, partial	0.0981979685
+UniRef50_UPI00046454A2: hypothetical protein, partial|unclassified	0.0981979685
+UniRef50_UPI00046D7AD7: hypothetical protein	0.0981963147
+UniRef50_UPI00046D7AD7: hypothetical protein|unclassified	0.0981963147
+UniRef50_UPI000365EF31: hypothetical protein, partial	0.0981954225
+UniRef50_UPI000365EF31: hypothetical protein, partial|unclassified	0.0981954225
+UniRef50_UPI0003B5FA7B: diacylglycerol kinase	0.0981941279
+UniRef50_UPI0003B5FA7B: diacylglycerol kinase|unclassified	0.0981941279
+UniRef50_K7ZX38: Flagellar hook protein FlgE	0.0981907225
+UniRef50_K7ZX38: Flagellar hook protein FlgE|unclassified	0.0981907225
+UniRef50_I1ZP85	0.0981732411
+UniRef50_I1ZP85|unclassified	0.0981732411
+UniRef50_B1ZYW1: Putative adenosine/adenine deaminase	0.0981675225
+UniRef50_B1ZYW1: Putative adenosine/adenine deaminase|unclassified	0.0981675225
+UniRef50_V4J8J1	0.0981639965
+UniRef50_V4J8J1|unclassified	0.0981639965
+UniRef50_UPI000466E44A: hypothetical protein	0.0981543062
+UniRef50_UPI000466E44A: hypothetical protein|unclassified	0.0981543062
+UniRef50_I3X300	0.0981542604
+UniRef50_I3X300|unclassified	0.0981542604
+UniRef50_UPI000466ECCA: peptidase M22	0.0981525195
+UniRef50_UPI000466ECCA: peptidase M22|unclassified	0.0981525195
+UniRef50_A5K2Y0	0.0981482890
+UniRef50_A5K2Y0|unclassified	0.0981482890
+UniRef50_Q3JVR4	0.0981463766
+UniRef50_Q3JVR4|unclassified	0.0981463766
+UniRef50_G9ETY0	0.0981462602
+UniRef50_G9ETY0|unclassified	0.0981462602
+UniRef50_UPI0003749F04: GTP-binding protein YsxC, partial	0.0981431616
+UniRef50_UPI0003749F04: GTP-binding protein YsxC, partial|unclassified	0.0981431616
+UniRef50_UPI0003759BE1: hypothetical protein	0.0981398615
+UniRef50_UPI0003759BE1: hypothetical protein|unclassified	0.0981398615
+UniRef50_A3JRC2: MJ0042 family finger-like domain protein	0.0981390745
+UniRef50_A3JRC2: MJ0042 family finger-like domain protein|unclassified	0.0981390745
+UniRef50_UPI00037EE4CD: hypothetical protein	0.0981390328
+UniRef50_UPI00037EE4CD: hypothetical protein|unclassified	0.0981390328
+UniRef50_A9AGV9	0.0981342539
+UniRef50_A9AGV9|unclassified	0.0981342539
+UniRef50_UPI0003F81897: hypothetical protein	0.0981312658
+UniRef50_UPI0003F81897: hypothetical protein|unclassified	0.0981312658
+UniRef50_UPI0003595044	0.0981304466
+UniRef50_UPI0003595044|unclassified	0.0981304466
+UniRef50_P43796: Glucose-1-phosphate adenylyltransferase	0.0981304391
+UniRef50_P43796: Glucose-1-phosphate adenylyltransferase|unclassified	0.0981304391
+UniRef50_UPI00047519FA: hypothetical protein	0.0981191196
+UniRef50_UPI00047519FA: hypothetical protein|unclassified	0.0981191196
+UniRef50_UPI0003606801: hypothetical protein	0.0981182608
+UniRef50_UPI0003606801: hypothetical protein|unclassified	0.0981182608
+UniRef50_A5WG60	0.0981107505
+UniRef50_A5WG60|unclassified	0.0981107505
+UniRef50_A0A024PPJ1: Flagellar assembly protein H	0.0981050871
+UniRef50_A0A024PPJ1: Flagellar assembly protein H|unclassified	0.0981050871
+UniRef50_UPI000370A178: hypothetical protein	0.0981044207
+UniRef50_UPI000370A178: hypothetical protein|unclassified	0.0981044207
+UniRef50_UPI0003B662E4: LysR family transcriptional regulator	0.0980920417
+UniRef50_UPI0003B662E4: LysR family transcriptional regulator|unclassified	0.0980920417
+UniRef50_W1UZ74	0.0980892317
+UniRef50_W1UZ74|unclassified	0.0980892317
+UniRef50_UPI00040657AE: hypothetical protein	0.0980868737
+UniRef50_UPI00040657AE: hypothetical protein|unclassified	0.0980868737
+UniRef50_UPI00047AF754: 2,3-dihydroxy-2,3-dihydrophenylpropionate dehydrogenase	0.0980845740
+UniRef50_UPI00047AF754: 2,3-dihydroxy-2,3-dihydrophenylpropionate dehydrogenase|unclassified	0.0980845740
+UniRef50_UPI00046686E3: LysR family transcriptional regulator	0.0980712733
+UniRef50_UPI00046686E3: LysR family transcriptional regulator|unclassified	0.0980712733
+UniRef50_UPI00046E7CF9: tagatose-bisphosphate aldolase, partial	0.0980703117
+UniRef50_UPI00046E7CF9: tagatose-bisphosphate aldolase, partial|unclassified	0.0980703117
+UniRef50_UPI00037A1247: hypothetical protein	0.0980652107
+UniRef50_UPI00037A1247: hypothetical protein|unclassified	0.0980652107
+UniRef50_UPI000471AE8D: oxidoreductase	0.0980643685
+UniRef50_UPI000471AE8D: oxidoreductase|unclassified	0.0980643685
+UniRef50_UPI00047AE469: hypothetical protein	0.0980617317
+UniRef50_UPI00047AE469: hypothetical protein|unclassified	0.0980617317
+UniRef50_A1ZF50	0.0980526576
+UniRef50_A1ZF50|unclassified	0.0980526576
+UniRef50_UPI00016C5453: Transcriptional Regulator, TetR family protein	0.0980476741
+UniRef50_UPI00016C5453: Transcriptional Regulator, TetR family protein|unclassified	0.0980476741
+UniRef50_UPI0003659B2B: hypothetical protein	0.0980449254
+UniRef50_UPI0003659B2B: hypothetical protein|unclassified	0.0980449254
+UniRef50_R0S4I1: AMIN domain protein	0.0980431413
+UniRef50_R0S4I1: AMIN domain protein|unclassified	0.0980431413
+UniRef50_B8GWS6: DNA polymerase III subunit alpha	0.0980379711
+UniRef50_B8GWS6: DNA polymerase III subunit alpha|unclassified	0.0980379711
+UniRef50_UPI0004670C92: hypothetical protein	0.0980355253
+UniRef50_UPI0004670C92: hypothetical protein|unclassified	0.0980355253
+UniRef50_UPI0003B65B46: peptidase M22	0.0980308337
+UniRef50_UPI0003B65B46: peptidase M22|unclassified	0.0980308337
+UniRef50_M5GA39	0.0980303266
+UniRef50_M5GA39|unclassified	0.0980303266
+UniRef50_UPI00040D03DC: hypothetical protein	0.0980288936
+UniRef50_UPI00040D03DC: hypothetical protein|unclassified	0.0980288936
+UniRef50_UPI0004418A78: PREDICTED: basic proline-rich protein-like	0.0980160314
+UniRef50_UPI0004418A78: PREDICTED: basic proline-rich protein-like|unclassified	0.0980160314
+UniRef50_UPI000467ECCA: hypothetical protein	0.0980137018
+UniRef50_UPI000467ECCA: hypothetical protein|unclassified	0.0980137018
+UniRef50_R6C744: DNA polymerase	0.0980126672
+UniRef50_R6C744: DNA polymerase|unclassified	0.0980126672
+UniRef50_UPI0003688EE7: hypothetical protein	0.0980085699
+UniRef50_UPI0003688EE7: hypothetical protein|unclassified	0.0980085699
+UniRef50_Q31EG4	0.0980043073
+UniRef50_Q31EG4|unclassified	0.0980043073
+UniRef50_UPI0003B2F6B9: diguanylate cyclase	0.0980016616
+UniRef50_UPI0003B2F6B9: diguanylate cyclase|unclassified	0.0980016616
+UniRef50_UPI0002F451E6: hypothetical protein	0.0979999555
+UniRef50_UPI0002F451E6: hypothetical protein|unclassified	0.0979999555
+UniRef50_UPI0003B36EAA: nitrilase	0.0979987649
+UniRef50_UPI0003B36EAA: nitrilase|unclassified	0.0979987649
+UniRef50_UPI0003B753E3: hypothetical protein	0.0979982173
+UniRef50_UPI0003B753E3: hypothetical protein|unclassified	0.0979982173
+UniRef50_B1KLN3: Peptidase M23B	0.0979937044
+UniRef50_B1KLN3: Peptidase M23B|unclassified	0.0979937044
+UniRef50_A5V4Z6: PRC-barrel domain protein	0.0979868475
+UniRef50_A5V4Z6: PRC-barrel domain protein|unclassified	0.0979868475
+UniRef50_F9HVG8	0.0979858710
+UniRef50_F9HVG8|unclassified	0.0979858710
+UniRef50_A0LCH8: Zinc import ATP-binding protein ZnuC	0.0979846883
+UniRef50_A0LCH8: Zinc import ATP-binding protein ZnuC|unclassified	0.0979846883
+UniRef50_Q3IQI3: Phosphate import ATP-binding protein PstB 2	0.0979665070
+UniRef50_Q3IQI3: Phosphate import ATP-binding protein PstB 2|unclassified	0.0979665070
+UniRef50_UPI0003A51EDB: hypothetical protein	0.0979636401
+UniRef50_UPI0003A51EDB: hypothetical protein|unclassified	0.0979636401
+UniRef50_UPI00046369B9: MULTISPECIES: arabinose transporter permease	0.0979631639
+UniRef50_UPI00046369B9: MULTISPECIES: arabinose transporter permease|unclassified	0.0979631639
+UniRef50_UPI00037AB50F: hypothetical protein	0.0979576881
+UniRef50_UPI00037AB50F: hypothetical protein|unclassified	0.0979576881
+UniRef50_A0A011QWI8: Putative metallophosphoesterase YhaO	0.0979513044
+UniRef50_A0A011QWI8: Putative metallophosphoesterase YhaO|unclassified	0.0979513044
+UniRef50_P13065: Periplasmic [NiFeSe] hydrogenase large subunit	0.0979481060
+UniRef50_P13065: Periplasmic [NiFeSe] hydrogenase large subunit|unclassified	0.0979481060
+UniRef50_UPI000467CD5C: leucyl/phenylalanyl-tRNA--protein transferase, partial	0.0979413382
+UniRef50_UPI000467CD5C: leucyl/phenylalanyl-tRNA--protein transferase, partial|unclassified	0.0979413382
+UniRef50_UPI000465B836: hypothetical protein	0.0979366682
+UniRef50_UPI000465B836: hypothetical protein|unclassified	0.0979366682
+UniRef50_V6URL6: Cell envelope biogenesis protein AsmA (Fragment)	0.0979219911
+UniRef50_V6URL6: Cell envelope biogenesis protein AsmA (Fragment)|unclassified	0.0979219911
+UniRef50_F4HP82: Gamma carbonic anhydrase 1	0.0979191691
+UniRef50_F4HP82: Gamma carbonic anhydrase 1|unclassified	0.0979191691
+UniRef50_P39858: Protein CapI	0.0979135023
+UniRef50_P39858: Protein CapI|unclassified	0.0979135023
+UniRef50_UPI00047CFF00: hypothetical protein	0.0979116419
+UniRef50_UPI00047CFF00: hypothetical protein|unclassified	0.0979116419
+UniRef50_M3F680: Nickase TraA	0.0979107100
+UniRef50_M3F680: Nickase TraA|unclassified	0.0979107100
+UniRef50_R4HZR2	0.0978997195
+UniRef50_R4HZR2|unclassified	0.0978997195
+UniRef50_UPI000465D790: hypothetical protein	0.0978997195
+UniRef50_UPI000465D790: hypothetical protein|unclassified	0.0978997195
+UniRef50_W5X7G6: MOSC N-terminal beta barrel domain family	0.0978994836
+UniRef50_W5X7G6: MOSC N-terminal beta barrel domain family|unclassified	0.0978994836
+UniRef50_UPI000368F50B: hypothetical protein	0.0978984428
+UniRef50_UPI000368F50B: hypothetical protein|unclassified	0.0978984428
+UniRef50_UPI0003604A25: hypothetical protein	0.0978959596
+UniRef50_UPI0003604A25: hypothetical protein|unclassified	0.0978959596
+UniRef50_UPI000478671A: hydrolase	0.0978803070
+UniRef50_UPI000478671A: hydrolase|unclassified	0.0978803070
+UniRef50_Q6I5K8	0.0978662377
+UniRef50_Q6I5K8|unclassified	0.0978662377
+UniRef50_W0L9G9: Nitrate reductase	0.0978658876
+UniRef50_W0L9G9: Nitrate reductase|unclassified	0.0978658876
+UniRef50_UPI0003B3F9D8: NUDIX hydrolase	0.0978558453
+UniRef50_UPI0003B3F9D8: NUDIX hydrolase|unclassified	0.0978558453
+UniRef50_UPI0002D5AFEF: hypothetical protein	0.0978557363
+UniRef50_UPI0002D5AFEF: hypothetical protein|unclassified	0.0978557363
+UniRef50_UPI00046D88FC: hypothetical protein	0.0978556189
+UniRef50_UPI00046D88FC: hypothetical protein|unclassified	0.0978556189
+UniRef50_UPI00046D2506: hypothetical protein	0.0978550199
+UniRef50_UPI00046D2506: hypothetical protein|unclassified	0.0978550199
+UniRef50_UPI0003753741: flagellin	0.0978481876
+UniRef50_UPI0003753741: flagellin|unclassified	0.0978481876
+UniRef50_UPI0002554CCB: nitrogen regulatory protein P-II	0.0978431441
+UniRef50_UPI0002554CCB: nitrogen regulatory protein P-II|unclassified	0.0978431441
+UniRef50_M5AGE8	0.0978426439
+UniRef50_M5AGE8|unclassified	0.0978426439
+UniRef50_A8RV42	0.0978413427
+UniRef50_A8RV42|unclassified	0.0978413427
+UniRef50_B0T287: Porphobilinogen deaminase	0.0978382280
+UniRef50_B0T287: Porphobilinogen deaminase|unclassified	0.0978382280
+UniRef50_UPI0003A99BE9: membrane dipeptidase	0.0978307089
+UniRef50_UPI0003A99BE9: membrane dipeptidase|unclassified	0.0978307089
+UniRef50_UPI0003647BA5: hypothetical protein, partial	0.0978298478
+UniRef50_UPI0003647BA5: hypothetical protein, partial|unclassified	0.0978298478
+UniRef50_C7UHN7: Predicted protein	0.0978197112
+UniRef50_C7UHN7: Predicted protein|unclassified	0.0978197112
+UniRef50_Q1AX36: Leucyl/phenylalanyl-tRNA--protein transferase	0.0978148014
+UniRef50_Q1AX36: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.0978148014
+UniRef50_H7PTJ4	0.0978129887
+UniRef50_H7PTJ4|unclassified	0.0978129887
+UniRef50_Q9ZDZ7: Ribosome association toxin RatA	0.0978065479
+UniRef50_Q9ZDZ7: Ribosome association toxin RatA|unclassified	0.0978065479
+UniRef50_A0A037XHU6: DSBA oxidoreductase	0.0977948652
+UniRef50_A0A037XHU6: DSBA oxidoreductase|unclassified	0.0977948652
+UniRef50_H4L2J1: Transposase IS66 family protein	0.0977892860
+UniRef50_H4L2J1: Transposase IS66 family protein|unclassified	0.0977892860
+UniRef50_UPI00046C9569: hypothetical protein	0.0977865927
+UniRef50_UPI00046C9569: hypothetical protein|unclassified	0.0977865927
+UniRef50_Q5GZ75: Ribonuclease D	0.0977759336
+UniRef50_Q5GZ75: Ribonuclease D|unclassified	0.0977759336
+UniRef50_I8T6U5: Pirin-related protein	0.0977597276
+UniRef50_I8T6U5: Pirin-related protein|unclassified	0.0977597276
+UniRef50_G2TC10: ChaC-like protein	0.0977527593
+UniRef50_G2TC10: ChaC-like protein|unclassified	0.0977527593
+UniRef50_UPI00046F77A4: hypothetical protein	0.0977402087
+UniRef50_UPI00046F77A4: hypothetical protein|unclassified	0.0977402087
+UniRef50_UPI00045E845E: hypothetical protein	0.0977339852
+UniRef50_UPI00045E845E: hypothetical protein|unclassified	0.0977339852
+UniRef50_W7ZMT1	0.0977271533
+UniRef50_W7ZMT1|unclassified	0.0977271533
+UniRef50_B7QR34: Esterase EstC, putative	0.0977160273
+UniRef50_B7QR34: Esterase EstC, putative|unclassified	0.0977160273
+UniRef50_K2EJR9	0.0977012585
+UniRef50_K2EJR9|unclassified	0.0977012585
+UniRef50_Q4FLN8: Adenylate kinase	0.0976955687
+UniRef50_Q4FLN8: Adenylate kinase|unclassified	0.0976955687
+UniRef50_F7RY75: 5,10-methenyltetrahydrofolate synthetase	0.0976830751
+UniRef50_F7RY75: 5,10-methenyltetrahydrofolate synthetase|unclassified	0.0976830751
+UniRef50_UPI0003458435: lytic enzyme	0.0976813753
+UniRef50_UPI0003458435: lytic enzyme|unclassified	0.0976813753
+UniRef50_D2C2R3: YagBYeeUYfjZ family protein	0.0976725665
+UniRef50_D2C2R3: YagBYeeUYfjZ family protein|unclassified	0.0976725665
+UniRef50_UPI00041B00FC: hypothetical protein	0.0976705838
+UniRef50_UPI00041B00FC: hypothetical protein|unclassified	0.0976705838
+UniRef50_UPI0002885242: benzoate transporter	0.0976670510
+UniRef50_UPI0002885242: benzoate transporter|unclassified	0.0976670510
+UniRef50_P73002: Cobyrinic acid A,C-diamide synthase	0.0976666191
+UniRef50_P73002: Cobyrinic acid A,C-diamide synthase|unclassified	0.0976666191
+UniRef50_UPI000262D071: pyrroline-5-carboxylate reductase	0.0976623643
+UniRef50_UPI000262D071: pyrroline-5-carboxylate reductase|unclassified	0.0976623643
+UniRef50_A1U0X4: N-(5'-phosphoribosyl)anthranilate isomerase	0.0976573252
+UniRef50_A1U0X4: N-(5'-phosphoribosyl)anthranilate isomerase|unclassified	0.0976573252
+UniRef50_UPI000475388E: hypothetical protein	0.0976535996
+UniRef50_UPI000475388E: hypothetical protein|unclassified	0.0976535996
+UniRef50_K0CKI6: Type 4 fimbrial biogenesis protein PilP	0.0976491871
+UniRef50_K0CKI6: Type 4 fimbrial biogenesis protein PilP|unclassified	0.0976491871
+UniRef50_V9VRG6	0.0976300791
+UniRef50_V9VRG6|unclassified	0.0976300791
+UniRef50_F0XWS6	0.0976286612
+UniRef50_F0XWS6|unclassified	0.0976286612
+UniRef50_E5Y2M3	0.0976178263
+UniRef50_E5Y2M3|unclassified	0.0976178263
+UniRef50_X1MBM2: Marine sediment metagenome DNA, contig: S06H3_S03416 (Fragment)	0.0976076846
+UniRef50_X1MBM2: Marine sediment metagenome DNA, contig: S06H3_S03416 (Fragment)|unclassified	0.0976076846
+UniRef50_UPI00047835F6: hypothetical protein	0.0976072271
+UniRef50_UPI00047835F6: hypothetical protein|unclassified	0.0976072271
+UniRef50_E5S583: Glycine cleavage system H protein	0.0976071543
+UniRef50_E5S583: Glycine cleavage system H protein|unclassified	0.0976071543
+UniRef50_Q16DI7	0.0976047349
+UniRef50_Q16DI7|unclassified	0.0976047349
+UniRef50_C0Q9E3	0.0976026984
+UniRef50_C0Q9E3|unclassified	0.0976026984
+UniRef50_D6Y5S3	0.0976013294
+UniRef50_D6Y5S3|unclassified	0.0976013294
+UniRef50_UPI00037EB293: hypothetical protein	0.0976008426
+UniRef50_UPI00037EB293: hypothetical protein|unclassified	0.0976008426
+UniRef50_B2IJH9: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0975995148
+UniRef50_B2IJH9: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0975995148
+UniRef50_UPI0003799109: hypothetical protein	0.0975972290
+UniRef50_UPI0003799109: hypothetical protein|unclassified	0.0975972290
+UniRef50_R7K0H6	0.0975958947
+UniRef50_R7K0H6|unclassified	0.0975958947
+UniRef50_UPI0003781582: hypothetical protein	0.0975843908
+UniRef50_UPI0003781582: hypothetical protein|unclassified	0.0975843908
+UniRef50_UPI0003D370C3: transcriptional regulators	0.0975828714
+UniRef50_UPI0003D370C3: transcriptional regulators|unclassified	0.0975828714
+UniRef50_Q8YXQ7: Carbamoyl-phosphate synthase small chain	0.0975776002
+UniRef50_Q8YXQ7: Carbamoyl-phosphate synthase small chain|unclassified	0.0975776002
+UniRef50_UPI0003B64E0E: penicillin-binding protein 1A	0.0975771736
+UniRef50_UPI0003B64E0E: penicillin-binding protein 1A|unclassified	0.0975771736
+UniRef50_UPI00037A74E6: hypothetical protein, partial	0.0975742019
+UniRef50_UPI00037A74E6: hypothetical protein, partial|unclassified	0.0975742019
+UniRef50_UPI00047A1255: hypothetical protein	0.0975587689
+UniRef50_UPI00047A1255: hypothetical protein|unclassified	0.0975587689
+UniRef50_UPI0003496779: hypothetical protein	0.0975566395
+UniRef50_UPI0003496779: hypothetical protein|unclassified	0.0975566395
+UniRef50_UPI0003679104: hypothetical protein	0.0975544865
+UniRef50_UPI0003679104: hypothetical protein|unclassified	0.0975544865
+UniRef50_UPI00045EC138: DNA-binding protein	0.0975508320
+UniRef50_UPI00045EC138: DNA-binding protein|unclassified	0.0975508320
+UniRef50_I1ZMW6	0.0975368856
+UniRef50_I1ZMW6|unclassified	0.0975368856
+UniRef50_UPI0004237996: hypothetical protein	0.0975320853
+UniRef50_UPI0004237996: hypothetical protein|unclassified	0.0975320853
+UniRef50_UPI0003B57248: zinc transporter	0.0975226467
+UniRef50_UPI0003B57248: zinc transporter|unclassified	0.0975226467
+UniRef50_UPI000289849B: hypothetical protein	0.0975220566
+UniRef50_UPI000289849B: hypothetical protein|unclassified	0.0975220566
+UniRef50_UPI0004653811: hypothetical protein	0.0975183911
+UniRef50_UPI0004653811: hypothetical protein|unclassified	0.0975183911
+UniRef50_UPI000471CF6A: hypothetical protein, partial	0.0975173064
+UniRef50_UPI000471CF6A: hypothetical protein, partial|unclassified	0.0975173064
+UniRef50_UPI000395913F: PREDICTED: basic proline-rich protein-like	0.0975136911
+UniRef50_UPI000395913F: PREDICTED: basic proline-rich protein-like|unclassified	0.0975136911
+UniRef50_A5CRZ1: Chorismate synthase	0.0975130784
+UniRef50_A5CRZ1: Chorismate synthase|unclassified	0.0975130784
+UniRef50_E4N4A3	0.0975110066
+UniRef50_E4N4A3|unclassified	0.0975110066
+UniRef50_UPI00040959E6: phosphofructokinase	0.0975103103
+UniRef50_UPI00040959E6: phosphofructokinase|unclassified	0.0975103103
+UniRef50_UPI0004762DA5: hypothetical protein	0.0975089107
+UniRef50_UPI0004762DA5: hypothetical protein|unclassified	0.0975089107
+UniRef50_F0R937: Cupin 2 conserved barrel domain protein	0.0975026272
+UniRef50_F0R937: Cupin 2 conserved barrel domain protein|unclassified	0.0975026272
+UniRef50_Q3JX96	0.0975018878
+UniRef50_Q3JX96|unclassified	0.0975018878
+UniRef50_UPI000288F831: sugar ABC transporter permease	0.0974930853
+UniRef50_UPI000288F831: sugar ABC transporter permease|unclassified	0.0974930853
+UniRef50_J8W6V4: Putative phage associated protein	0.0974904198
+UniRef50_J8W6V4: Putative phage associated protein|unclassified	0.0974904198
+UniRef50_A3ZYM8: Nicotinamide nucleotide transhydrogenase, subunit alpha	0.0974854322
+UniRef50_A3ZYM8: Nicotinamide nucleotide transhydrogenase, subunit alpha|unclassified	0.0974854322
+UniRef50_UPI0001D31321: alpha/beta hydrolase fold protein	0.0974767525
+UniRef50_UPI0001D31321: alpha/beta hydrolase fold protein|unclassified	0.0974767525
+UniRef50_B8H9Q5: Pyridoxal-5'-phosphate-dependent protein beta subunit	0.0974752608
+UniRef50_B8H9Q5: Pyridoxal-5'-phosphate-dependent protein beta subunit|unclassified	0.0974752608
+UniRef50_UPI00040FD231: hypothetical protein	0.0974707335
+UniRef50_UPI00040FD231: hypothetical protein|unclassified	0.0974707335
+UniRef50_B8G0K3: Sporulation protein YyaC	0.0974676586
+UniRef50_B8G0K3: Sporulation protein YyaC|unclassified	0.0974676586
+UniRef50_UPI00047DCE71: hypothetical protein	0.0974647542
+UniRef50_UPI00047DCE71: hypothetical protein|unclassified	0.0974647542
+UniRef50_UPI00037C33AD: hypothetical protein	0.0974597043
+UniRef50_UPI00037C33AD: hypothetical protein|unclassified	0.0974597043
+UniRef50_UPI00035FA387: hypothetical protein	0.0974570544
+UniRef50_UPI00035FA387: hypothetical protein|unclassified	0.0974570544
+UniRef50_UPI0004692177: hypothetical protein	0.0974417611
+UniRef50_UPI0004692177: hypothetical protein|unclassified	0.0974417611
+UniRef50_UPI000378B82B: hypothetical protein, partial	0.0974414463
+UniRef50_UPI000378B82B: hypothetical protein, partial|unclassified	0.0974414463
+UniRef50_X5MME2: FIG003437: hypothetical with DnaJ-like domain	0.0974366510
+UniRef50_X5MME2: FIG003437: hypothetical with DnaJ-like domain|unclassified	0.0974366510
+UniRef50_UPI0003655D3B: hypothetical protein	0.0974354996
+UniRef50_UPI0003655D3B: hypothetical protein|unclassified	0.0974354996
+UniRef50_F7RWV7	0.0974327725
+UniRef50_F7RWV7|unclassified	0.0974327725
+UniRef50_UPI00037A3F3A: hypothetical protein	0.0974268606
+UniRef50_UPI00037A3F3A: hypothetical protein|unclassified	0.0974268606
+UniRef50_UPI0002555EB3: hypothetical protein, partial	0.0974205872
+UniRef50_UPI0002555EB3: hypothetical protein, partial|unclassified	0.0974205872
+UniRef50_UPI00039E92B0: SAM-dependent methlyltransferase	0.0974194717
+UniRef50_UPI00039E92B0: SAM-dependent methlyltransferase|unclassified	0.0974194717
+UniRef50_UPI000362A7CA: hypothetical protein, partial	0.0974162599
+UniRef50_UPI000362A7CA: hypothetical protein, partial|unclassified	0.0974162599
+UniRef50_A0A023LJW9	0.0974149850
+UniRef50_A0A023LJW9|unclassified	0.0974149850
+UniRef50_E8NEK5	0.0974147336
+UniRef50_E8NEK5|unclassified	0.0974147336
+UniRef50_Q8Y2I3: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase	0.0974041930
+UniRef50_Q8Y2I3: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase|unclassified	0.0974041930
+UniRef50_E7NBA0	0.0973995460
+UniRef50_E7NBA0|unclassified	0.0973995460
+UniRef50_UPI00036310FC: hypothetical protein	0.0973976854
+UniRef50_UPI00036310FC: hypothetical protein|unclassified	0.0973976854
+UniRef50_S3CN57	0.0973946458
+UniRef50_S3CN57|unclassified	0.0973946458
+UniRef50_UPI00026286B5: ABC-type sugar (aldose) transport system, ATPase component	0.0973889918
+UniRef50_UPI00026286B5: ABC-type sugar (aldose) transport system, ATPase component|unclassified	0.0973889918
+UniRef50_B1LTL2: Rhodanese	0.0973860034
+UniRef50_B1LTL2: Rhodanese|unclassified	0.0973860034
+UniRef50_V9C449: Putative lipoprotein	0.0973848785
+UniRef50_V9C449: Putative lipoprotein|unclassified	0.0973848785
+UniRef50_UPI000411C644: membrane protein	0.0973799513
+UniRef50_UPI000411C644: membrane protein|unclassified	0.0973799513
+UniRef50_UPI0004791497: hypothetical protein	0.0973794639
+UniRef50_UPI0004791497: hypothetical protein|unclassified	0.0973794639
+UniRef50_J9YXN7: TRCF domain protein	0.0973785418
+UniRef50_J9YXN7: TRCF domain protein|unclassified	0.0973785418
+UniRef50_D1C9K0: ABC-type xylose transport system periplasmic component-like protein	0.0973771202
+UniRef50_D1C9K0: ABC-type xylose transport system periplasmic component-like protein|unclassified	0.0973771202
+UniRef50_UPI00037DF3B3: MULTISPECIES: hypothetical protein	0.0973659109
+UniRef50_UPI00037DF3B3: MULTISPECIES: hypothetical protein|unclassified	0.0973659109
+UniRef50_R0EX71: TRAP C4-dicarboxylate transport system permease DctM subunit (Fragment)	0.0973624948
+UniRef50_R0EX71: TRAP C4-dicarboxylate transport system permease DctM subunit (Fragment)|unclassified	0.0973624948
+UniRef50_K8E3D1	0.0973593452
+UniRef50_K8E3D1|unclassified	0.0973593452
+UniRef50_UPI0002376205: rtx family calcium-binding cytotoxins and bacteriocins protein, partial	0.0973551743
+UniRef50_UPI0002376205: rtx family calcium-binding cytotoxins and bacteriocins protein, partial|unclassified	0.0973551743
+UniRef50_UPI000248DC09: rRNA (guanine-N(1)-)-methyltransferase	0.0973543995
+UniRef50_UPI000248DC09: rRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0973543995
+UniRef50_UPI000367858B: hypothetical protein	0.0973449231
+UniRef50_UPI000367858B: hypothetical protein|unclassified	0.0973449231
+UniRef50_I9KPX3	0.0973384484
+UniRef50_I9KPX3|unclassified	0.0973384484
+UniRef50_X1R6D7: Marine sediment metagenome DNA, contig: S12H4_S00080 (Fragment)	0.0973360732
+UniRef50_X1R6D7: Marine sediment metagenome DNA, contig: S12H4_S00080 (Fragment)|unclassified	0.0973360732
+UniRef50_UPI000410C3F5: bacitracin ABC transporter ATP-binding protein	0.0973331648
+UniRef50_UPI000410C3F5: bacitracin ABC transporter ATP-binding protein|unclassified	0.0973331648
+UniRef50_H5TE82: TRAP transporter, DctQ-like membrane protein	0.0973256306
+UniRef50_H5TE82: TRAP transporter, DctQ-like membrane protein|unclassified	0.0973256306
+UniRef50_D6GU09: MaoC-like protein	0.0973246036
+UniRef50_D6GU09: MaoC-like protein|unclassified	0.0973246036
+UniRef50_UPI0003623046: hypothetical protein	0.0973184862
+UniRef50_UPI0003623046: hypothetical protein|unclassified	0.0973184862
+UniRef50_UPI000378ADA0: hypothetical protein	0.0973146157
+UniRef50_UPI000378ADA0: hypothetical protein|unclassified	0.0973146157
+UniRef50_E2CQ59: NnrU protein	0.0973129413
+UniRef50_E2CQ59: NnrU protein|unclassified	0.0973129413
+UniRef50_UPI00036EE335: hypothetical protein	0.0973084227
+UniRef50_UPI00036EE335: hypothetical protein|unclassified	0.0973084227
+UniRef50_UPI0003B72FA7: peptidase S41	0.0973036404
+UniRef50_UPI0003B72FA7: peptidase S41|unclassified	0.0973036404
+UniRef50_UPI00035F2E27: hypothetical protein	0.0973019094
+UniRef50_UPI00035F2E27: hypothetical protein|unclassified	0.0973019094
+UniRef50_T1FVZ5	0.0973010087
+UniRef50_T1FVZ5|unclassified	0.0973010087
+UniRef50_UPI0004650D3F: iron ABC transporter permease	0.0972999422
+UniRef50_UPI0004650D3F: iron ABC transporter permease|unclassified	0.0972999422
+UniRef50_UPI000379C490: hypothetical protein	0.0972918258
+UniRef50_UPI000379C490: hypothetical protein|unclassified	0.0972918258
+UniRef50_L9NCX8: PF05673 family protein	0.0972837193
+UniRef50_L9NCX8: PF05673 family protein|unclassified	0.0972837193
+UniRef50_V4R6J6	0.0972832786
+UniRef50_V4R6J6|unclassified	0.0972832786
+UniRef50_V1F079	0.0972752795
+UniRef50_V1F079|unclassified	0.0972752795
+UniRef50_UPI00036D2281: hypothetical protein	0.0972739059
+UniRef50_UPI00036D2281: hypothetical protein|unclassified	0.0972739059
+UniRef50_F2PTT5: Glycine-rich protein	0.0972737475
+UniRef50_F2PTT5: Glycine-rich protein|unclassified	0.0972737475
+UniRef50_UPI0002F79B6B: N-acetylglutamate synthase	0.0972668179
+UniRef50_UPI0002F79B6B: N-acetylglutamate synthase|unclassified	0.0972668179
+UniRef50_Q2KY83: tRNA (guanine-N(1)-)-methyltransferase	0.0972463830
+UniRef50_Q2KY83: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0972463830
+UniRef50_UPI0004410784: hypothetical protein AURDEDRAFT_117400	0.0972454774
+UniRef50_UPI0004410784: hypothetical protein AURDEDRAFT_117400|unclassified	0.0972454774
+UniRef50_UPI0003B3638C: proline:sodium symporter	0.0972424691
+UniRef50_UPI0003B3638C: proline:sodium symporter|unclassified	0.0972424691
+UniRef50_Q7NMB5: Cysteine--tRNA ligase	0.0972298437
+UniRef50_Q7NMB5: Cysteine--tRNA ligase|unclassified	0.0972298437
+UniRef50_X1DTV9: Marine sediment metagenome DNA, contig: S01H4_S14739 (Fragment)	0.0972290029
+UniRef50_X1DTV9: Marine sediment metagenome DNA, contig: S01H4_S14739 (Fragment)|unclassified	0.0972290029
+UniRef50_D4HA24	0.0972268894
+UniRef50_D4HA24|unclassified	0.0972268894
+UniRef50_UPI000382A943: hypothetical protein	0.0972115079
+UniRef50_UPI000382A943: hypothetical protein|unclassified	0.0972115079
+UniRef50_UPI00028A13B9: quaternary amine ABC transporter ATP-binding protein	0.0972093889
+UniRef50_UPI00028A13B9: quaternary amine ABC transporter ATP-binding protein|unclassified	0.0972093889
+UniRef50_UPI00045E23DB: PREDICTED: atherin-like	0.0972037992
+UniRef50_UPI00045E23DB: PREDICTED: atherin-like|unclassified	0.0972037992
+UniRef50_UPI00047321C0: hypothetical protein	0.0972025924
+UniRef50_UPI00047321C0: hypothetical protein|unclassified	0.0972025924
+UniRef50_C4K0V5: RNA pyrophosphohydrolase	0.0971997460
+UniRef50_C4K0V5: RNA pyrophosphohydrolase|unclassified	0.0971997460
+UniRef50_UPI00029A6A13: binding-protein-dependent transport system inner membrane protein	0.0971773039
+UniRef50_UPI00029A6A13: binding-protein-dependent transport system inner membrane protein|unclassified	0.0971773039
+UniRef50_UPI00038FF257: Arginine--tRNA ligase 2	0.0971666595
+UniRef50_UPI00038FF257: Arginine--tRNA ligase 2|unclassified	0.0971666595
+UniRef50_UPI00016C4CA4: RNA binding S1 domain protein	0.0971663860
+UniRef50_UPI00016C4CA4: RNA binding S1 domain protein|unclassified	0.0971663860
+UniRef50_UPI00036755D7: hypothetical protein	0.0971643590
+UniRef50_UPI00036755D7: hypothetical protein|unclassified	0.0971643590
+UniRef50_UPI000375944D: hypothetical protein	0.0971586513
+UniRef50_UPI000375944D: hypothetical protein|unclassified	0.0971586513
+UniRef50_Q2T4S8: Arabinose import ATP-binding protein AraG 2	0.0971507973
+UniRef50_Q2T4S8: Arabinose import ATP-binding protein AraG 2|unclassified	0.0971507973
+UniRef50_I1AXD0	0.0971486175
+UniRef50_I1AXD0|unclassified	0.0971486175
+UniRef50_C6VWC7	0.0971445872
+UniRef50_C6VWC7|unclassified	0.0971445872
+UniRef50_UPI00029CC4C5: hypothetical protein, partial	0.0971403996
+UniRef50_UPI00029CC4C5: hypothetical protein, partial|unclassified	0.0971403996
+UniRef50_V4QDF6	0.0971383930
+UniRef50_V4QDF6|unclassified	0.0971383930
+UniRef50_UPI00035EEDD5: hypothetical protein	0.0971363877
+UniRef50_UPI00035EEDD5: hypothetical protein|unclassified	0.0971363877
+UniRef50_UPI0003666F1F: hypothetical protein	0.0971302698
+UniRef50_UPI0003666F1F: hypothetical protein|unclassified	0.0971302698
+UniRef50_A2CDU9	0.0971228643
+UniRef50_A2CDU9|unclassified	0.0971228643
+UniRef50_T1ARQ4: Transketolase-like protein (Fragment)	0.0971168261
+UniRef50_T1ARQ4: Transketolase-like protein (Fragment)|unclassified	0.0971168261
+UniRef50_UPI000475E634: leucine/isoleucine/valine transporter ATP-binding subunit	0.0971132717
+UniRef50_UPI000475E634: leucine/isoleucine/valine transporter ATP-binding subunit|unclassified	0.0971132717
+UniRef50_UPI00035C9A62: hypothetical protein	0.0971108148
+UniRef50_UPI00035C9A62: hypothetical protein|unclassified	0.0971108148
+UniRef50_P37526	0.0971094570
+UniRef50_P37526|unclassified	0.0971094570
+UniRef50_UPI00042B3E55: Class II aminoacyl-tRNA and biotin synthetases superfamily protein isoform 2	0.0971061312
+UniRef50_UPI00042B3E55: Class II aminoacyl-tRNA and biotin synthetases superfamily protein isoform 2|unclassified	0.0971061312
+UniRef50_UPI000468BE81: hypothetical protein	0.0971024395
+UniRef50_UPI000468BE81: hypothetical protein|unclassified	0.0971024395
+UniRef50_G0DRT9: Regulatory protein	0.0970986276
+UniRef50_G0DRT9: Regulatory protein|unclassified	0.0970986276
+UniRef50_UPI0003674A12: hypothetical protein	0.0970967734
+UniRef50_UPI0003674A12: hypothetical protein|unclassified	0.0970967734
+UniRef50_D1C5X0: Plasmid pRiA4b ORF-3 family protein	0.0970904349
+UniRef50_D1C5X0: Plasmid pRiA4b ORF-3 family protein|unclassified	0.0970904349
+UniRef50_UPI00047EA952: pseudouridylate synthase, partial	0.0970885734
+UniRef50_UPI00047EA952: pseudouridylate synthase, partial|unclassified	0.0970885734
+UniRef50_A6V6P1	0.0970840675
+UniRef50_A6V6P1|unclassified	0.0970840675
+UniRef50_B1Z7C9	0.0970826327
+UniRef50_B1Z7C9|unclassified	0.0970826327
+UniRef50_UPI00035C0DD3: hypothetical protein	0.0970787679
+UniRef50_UPI00035C0DD3: hypothetical protein|unclassified	0.0970787679
+UniRef50_X0ZMI1: Marine sediment metagenome DNA, contig: S01H4_C02288	0.0970754456
+UniRef50_X0ZMI1: Marine sediment metagenome DNA, contig: S01H4_C02288|unclassified	0.0970754456
+UniRef50_UPI0003F54E56: sugar ABC transporter permease	0.0970743400
+UniRef50_UPI0003F54E56: sugar ABC transporter permease|unclassified	0.0970743400
+UniRef50_F0LRW4	0.0970653469
+UniRef50_F0LRW4|unclassified	0.0970653469
+UniRef50_R1CZX5	0.0970591174
+UniRef50_R1CZX5|unclassified	0.0970591174
+UniRef50_B8GXG1: Porphobilinogen deaminase	0.0970545108
+UniRef50_B8GXG1: Porphobilinogen deaminase|unclassified	0.0970545108
+UniRef50_Q8NT75: Uroporphyrinogen decarboxylase	0.0970524659
+UniRef50_Q8NT75: Uroporphyrinogen decarboxylase|unclassified	0.0970524659
+UniRef50_UPI00035CAC38: hypothetical protein	0.0970523856
+UniRef50_UPI00035CAC38: hypothetical protein|unclassified	0.0970523856
+UniRef50_UPI000288A3C0: putative oxidoreductase	0.0970464258
+UniRef50_UPI000288A3C0: putative oxidoreductase|unclassified	0.0970464258
+UniRef50_K9VVV6: Peptidase S14 ClpP	0.0970428966
+UniRef50_K9VVV6: Peptidase S14 ClpP|unclassified	0.0970428966
+UniRef50_Q7VFT0: NADH-quinone oxidoreductase subunit I	0.0970374492
+UniRef50_Q7VFT0: NADH-quinone oxidoreductase subunit I|unclassified	0.0970374492
+UniRef50_B0S2F7: Thymidylate kinase	0.0970367688
+UniRef50_B0S2F7: Thymidylate kinase|unclassified	0.0970367688
+UniRef50_UPI000328D600: PREDICTED: basic proline-rich protein-like	0.0970328874
+UniRef50_UPI000328D600: PREDICTED: basic proline-rich protein-like|unclassified	0.0970328874
+UniRef50_UPI000465042A: hypothetical protein	0.0970302989
+UniRef50_UPI000465042A: hypothetical protein|unclassified	0.0970302989
+UniRef50_UPI00031BEDB0: hypothetical protein	0.0970129852
+UniRef50_UPI00031BEDB0: hypothetical protein|unclassified	0.0970129852
+UniRef50_A0A023XW63	0.0970096423
+UniRef50_A0A023XW63|unclassified	0.0970096423
+UniRef50_Q07M84: SOUL heme-binding protein	0.0970042186
+UniRef50_Q07M84: SOUL heme-binding protein|unclassified	0.0970042186
+UniRef50_Q9FNH4: Nudix hydrolase 27, chloroplastic	0.0970022945
+UniRef50_Q9FNH4: Nudix hydrolase 27, chloroplastic|unclassified	0.0970022945
+UniRef50_I2JHH7	0.0969994602
+UniRef50_I2JHH7|unclassified	0.0969994602
+UniRef50_UPI000248FF56: hypothetical protein	0.0969934934
+UniRef50_UPI000248FF56: hypothetical protein|unclassified	0.0969934934
+UniRef50_R0F1Z2	0.0969869799
+UniRef50_R0F1Z2|unclassified	0.0969869799
+UniRef50_UPI00026CDADF: hypothetical protein	0.0969847168
+UniRef50_UPI00026CDADF: hypothetical protein|unclassified	0.0969847168
+UniRef50_Q73XL6	0.0969777958
+UniRef50_Q73XL6|unclassified	0.0969777958
+UniRef50_UPI000392EE22: PREDICTED: proline-rich proteoglycan 2-like	0.0969749295
+UniRef50_UPI000392EE22: PREDICTED: proline-rich proteoglycan 2-like|unclassified	0.0969749295
+UniRef50_UPI000305920B: biotin biosynthesis protein BioY	0.0969714033
+UniRef50_UPI000305920B: biotin biosynthesis protein BioY|unclassified	0.0969714033
+UniRef50_UPI0003B458E8: quinone oxidoreductase	0.0969525566
+UniRef50_UPI0003B458E8: quinone oxidoreductase|unclassified	0.0969525566
+UniRef50_C6D843: Sporulation protein YyaC	0.0969519963
+UniRef50_C6D843: Sporulation protein YyaC|unclassified	0.0969519963
+UniRef50_W4FW35	0.0969380768
+UniRef50_W4FW35|unclassified	0.0969380768
+UniRef50_UPI00042A6BF7: hypothetical protein	0.0969375643
+UniRef50_UPI00042A6BF7: hypothetical protein|unclassified	0.0969375643
+UniRef50_UPI00047D26C2: branched-chain amino acid ABC transporter ATP-binding protein	0.0969374581
+UniRef50_UPI00047D26C2: branched-chain amino acid ABC transporter ATP-binding protein|unclassified	0.0969374581
+UniRef50_UPI0004659BBD: antibiotic ABC transporter ATP-binding protein	0.0969290064
+UniRef50_UPI0004659BBD: antibiotic ABC transporter ATP-binding protein|unclassified	0.0969290064
+UniRef50_UPI0004725E16: hypothetical protein	0.0969289316
+UniRef50_UPI0004725E16: hypothetical protein|unclassified	0.0969289316
+UniRef50_UPI000380B239: hypothetical protein	0.0969182696
+UniRef50_UPI000380B239: hypothetical protein|unclassified	0.0969182696
+UniRef50_B3E867: Band 7 protein	0.0969007546
+UniRef50_B3E867: Band 7 protein|unclassified	0.0969007546
+UniRef50_U6K2F0	0.0968984076
+UniRef50_U6K2F0|unclassified	0.0968984076
+UniRef50_R5CAF9: L-ribulose-5-phosphate 4-epimerase AraD	0.0968927716
+UniRef50_R5CAF9: L-ribulose-5-phosphate 4-epimerase AraD|unclassified	0.0968927716
+UniRef50_B7K0Q9	0.0968900741
+UniRef50_B7K0Q9|unclassified	0.0968900741
+UniRef50_UPI0003B42182: DeoR family transcriptional regulator	0.0968882326
+UniRef50_UPI0003B42182: DeoR family transcriptional regulator|unclassified	0.0968882326
+UniRef50_UPI00047CF2CF: hypothetical protein	0.0968859686
+UniRef50_UPI00047CF2CF: hypothetical protein|unclassified	0.0968859686
+UniRef50_UPI00034C051A: hypothetical protein	0.0968835239
+UniRef50_UPI00034C051A: hypothetical protein|unclassified	0.0968835239
+UniRef50_R4YUE7: Type 4 pilus assembly protein	0.0968773253
+UniRef50_R4YUE7: Type 4 pilus assembly protein|unclassified	0.0968773253
+UniRef50_R7GPA0	0.0968750433
+UniRef50_R7GPA0|unclassified	0.0968750433
+UniRef50_W7VZH6	0.0968709028
+UniRef50_W7VZH6|unclassified	0.0968709028
+UniRef50_C2UUE0	0.0968534858
+UniRef50_C2UUE0|unclassified	0.0968534858
+UniRef50_E4L0G6: Ethanolamine utilization protein EutJ	0.0968512917
+UniRef50_E4L0G6: Ethanolamine utilization protein EutJ|unclassified	0.0968512917
+UniRef50_X0QHG7	0.0968492782
+UniRef50_X0QHG7|unclassified	0.0968492782
+UniRef50_UPI0002F81AF9: hypothetical protein	0.0968492705
+UniRef50_UPI0002F81AF9: hypothetical protein|unclassified	0.0968492705
+UniRef50_UPI00037918F6: hypothetical protein	0.0968478379
+UniRef50_UPI00037918F6: hypothetical protein|unclassified	0.0968478379
+UniRef50_UPI00035F4C59: hypothetical protein	0.0968455450
+UniRef50_UPI00035F4C59: hypothetical protein|unclassified	0.0968455450
+UniRef50_UPI000470EA0D: hypothetical protein	0.0968390025
+UniRef50_UPI000470EA0D: hypothetical protein|unclassified	0.0968390025
+UniRef50_UPI0004788BCC: hypothetical protein	0.0968297198
+UniRef50_UPI0004788BCC: hypothetical protein|unclassified	0.0968297198
+UniRef50_UPI000344F2DF: hypothetical protein	0.0968180311
+UniRef50_UPI000344F2DF: hypothetical protein|unclassified	0.0968180311
+UniRef50_B8D9J7: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase	0.0968174820
+UniRef50_B8D9J7: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|unclassified	0.0968174820
+UniRef50_B9DRR8	0.0968116472
+UniRef50_B9DRR8|unclassified	0.0968116472
+UniRef50_UPI000475A549: hypothetical protein	0.0968102952
+UniRef50_UPI000475A549: hypothetical protein|unclassified	0.0968102952
+UniRef50_UPI0004195622: hypothetical protein	0.0968060729
+UniRef50_UPI0004195622: hypothetical protein|unclassified	0.0968060729
+UniRef50_C0MDV8: Peptide methionine sulfoxide reductase MsrB	0.0968052633
+UniRef50_C0MDV8: Peptide methionine sulfoxide reductase MsrB|unclassified	0.0968052633
+UniRef50_UPI00034C2CE5: ABC transporter	0.0968048821
+UniRef50_UPI00034C2CE5: ABC transporter|unclassified	0.0968048821
+UniRef50_Q0BPZ9: Guanylate kinase	0.0967965264
+UniRef50_Q0BPZ9: Guanylate kinase|unclassified	0.0967965264
+UniRef50_K2B7W5	0.0967934610
+UniRef50_K2B7W5|unclassified	0.0967934610
+UniRef50_V5SE47: PQQ-dependent catabolism-associated CXXCW motif protein	0.0967929325
+UniRef50_V5SE47: PQQ-dependent catabolism-associated CXXCW motif protein|unclassified	0.0967929325
+UniRef50_UPI0004701D10: C4-dicarboxylate ABC transporter permease	0.0967689894
+UniRef50_UPI0004701D10: C4-dicarboxylate ABC transporter permease|unclassified	0.0967689894
+UniRef50_B8EFC6: Lipoprotein signal peptidase	0.0967688892
+UniRef50_B8EFC6: Lipoprotein signal peptidase|unclassified	0.0967688892
+UniRef50_L7UII0	0.0967688746
+UniRef50_L7UII0|unclassified	0.0967688746
+UniRef50_X7EDB2	0.0967688457
+UniRef50_X7EDB2|unclassified	0.0967688457
+UniRef50_UPI000366A76F: hypothetical protein, partial	0.0967676951
+UniRef50_UPI000366A76F: hypothetical protein, partial|unclassified	0.0967676951
+UniRef50_UPI00047102D6: hypothetical protein, partial	0.0967641048
+UniRef50_UPI00047102D6: hypothetical protein, partial|unclassified	0.0967641048
+UniRef50_C4UFH2	0.0967588890
+UniRef50_C4UFH2|unclassified	0.0967588890
+UniRef50_G8R3I3: TIGR00701 family protein	0.0967537929
+UniRef50_G8R3I3: TIGR00701 family protein|unclassified	0.0967537929
+UniRef50_G2QVX9	0.0967451499
+UniRef50_G2QVX9|unclassified	0.0967451499
+UniRef50_W8VP54: UPF0246 protein NMS_0251	0.0967404557
+UniRef50_W8VP54: UPF0246 protein NMS_0251|unclassified	0.0967404557
+UniRef50_W0EIH2: UvrABC system protein A	0.0967370646
+UniRef50_W0EIH2: UvrABC system protein A|unclassified	0.0967370646
+UniRef50_UPI00045DD854: PREDICTED: transcription factor HES-4 isoform X1	0.0967261273
+UniRef50_UPI00045DD854: PREDICTED: transcription factor HES-4 isoform X1|unclassified	0.0967261273
+UniRef50_W2BRM3	0.0967207322
+UniRef50_W2BRM3|unclassified	0.0967207322
+UniRef50_K2RRG6	0.0967122362
+UniRef50_K2RRG6|unclassified	0.0967122362
+UniRef50_UPI0003A48A4A: hypothetical protein	0.0967078332
+UniRef50_UPI0003A48A4A: hypothetical protein|unclassified	0.0967078332
+UniRef50_UPI0003ADCC45: PREDICTED: collagen alpha-1(I) chain-like	0.0967050604
+UniRef50_UPI0003ADCC45: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.0967050604
+UniRef50_D3E251	0.0967024422
+UniRef50_D3E251|unclassified	0.0967024422
+UniRef50_UPI0003A20F11: hypothetical protein	0.0966998657
+UniRef50_UPI0003A20F11: hypothetical protein|unclassified	0.0966998657
+UniRef50_D5QDQ0: Plasma membrane H+-transporting two-sector ATPase	0.0966972494
+UniRef50_D5QDQ0: Plasma membrane H+-transporting two-sector ATPase|unclassified	0.0966972494
+UniRef50_K7UKK8: GDP-mannose 4,6 dehydratase 2, mRNA	0.0966972227
+UniRef50_K7UKK8: GDP-mannose 4,6 dehydratase 2, mRNA|unclassified	0.0966972227
+UniRef50_UPI0003785F11: hypothetical protein	0.0966887797
+UniRef50_UPI0003785F11: hypothetical protein|unclassified	0.0966887797
+UniRef50_UPI00036C3FE2: hypothetical protein	0.0966858292
+UniRef50_UPI00036C3FE2: hypothetical protein|unclassified	0.0966858292
+UniRef50_UPI0003620B51: hypothetical protein	0.0966516078
+UniRef50_UPI0003620B51: hypothetical protein|unclassified	0.0966516078
+UniRef50_I4YMG6: Putative integral membrane protein	0.0966513069
+UniRef50_I4YMG6: Putative integral membrane protein|unclassified	0.0966513069
+UniRef50_UPI00037B5E5C: hypothetical protein	0.0966500506
+UniRef50_UPI00037B5E5C: hypothetical protein|unclassified	0.0966500506
+UniRef50_Q28SZ7	0.0966493314
+UniRef50_Q28SZ7|unclassified	0.0966493314
+UniRef50_UPI00037D201C: hypothetical protein	0.0966441285
+UniRef50_UPI00037D201C: hypothetical protein|unclassified	0.0966441285
+UniRef50_A0A024PIN8	0.0966411978
+UniRef50_A0A024PIN8|unclassified	0.0966411978
+UniRef50_X5DRB4: ABC-type iron transporter, substrate-binding lipoprotein	0.0966375562
+UniRef50_X5DRB4: ABC-type iron transporter, substrate-binding lipoprotein|unclassified	0.0966375562
+UniRef50_V9Y0R6: Putative metallopeptidase	0.0966259080
+UniRef50_V9Y0R6: Putative metallopeptidase|unclassified	0.0966259080
+UniRef50_UPI0003735394: hypothetical protein	0.0966225938
+UniRef50_UPI0003735394: hypothetical protein|unclassified	0.0966225938
+UniRef50_UPI00036FB14F: hypothetical protein	0.0966222160
+UniRef50_UPI00036FB14F: hypothetical protein|unclassified	0.0966222160
+UniRef50_UPI0003900CE9: Integral membrane sensor signal transduction histidine kinase	0.0966214756
+UniRef50_UPI0003900CE9: Integral membrane sensor signal transduction histidine kinase|unclassified	0.0966214756
+UniRef50_A0A021U9N7	0.0966205817
+UniRef50_A0A021U9N7|unclassified	0.0966205817
+UniRef50_UPI0003622A28: hypothetical protein	0.0966190508
+UniRef50_UPI0003622A28: hypothetical protein|unclassified	0.0966190508
+UniRef50_P57286: Superoxide dismutase [Mn]	0.0966131102
+UniRef50_P57286: Superoxide dismutase [Mn]|unclassified	0.0966131102
+UniRef50_UPI0004018333: D-alanyl-D-alanine endopeptidase	0.0966127507
+UniRef50_UPI0004018333: D-alanyl-D-alanine endopeptidase|unclassified	0.0966127507
+UniRef50_I4KSD8: NlpC/P60 family protein	0.0966092910
+UniRef50_I4KSD8: NlpC/P60 family protein|unclassified	0.0966092910
+UniRef50_Q62RP9: Conserved membrane protein YtaF	0.0966072403
+UniRef50_Q62RP9: Conserved membrane protein YtaF|unclassified	0.0966072403
+UniRef50_UPI0003BD43E5: PREDICTED: fatty-acid amide hydrolase 2-A-like	0.0966064653
+UniRef50_UPI0003BD43E5: PREDICTED: fatty-acid amide hydrolase 2-A-like|unclassified	0.0966064653
+UniRef50_I3I608: Type IV pilus biogenesis protein PilP	0.0966043877
+UniRef50_I3I608: Type IV pilus biogenesis protein PilP|unclassified	0.0966043877
+UniRef50_UPI0003B745E8: hypothetical protein	0.0965970259
+UniRef50_UPI0003B745E8: hypothetical protein|unclassified	0.0965970259
+UniRef50_UPI0002491A62: acyltransferase	0.0965963527
+UniRef50_UPI0002491A62: acyltransferase|unclassified	0.0965963527
+UniRef50_Q4FP60	0.0965936746
+UniRef50_Q4FP60|unclassified	0.0965936746
+UniRef50_F2J1R0: Ppx/GppA phosphatase family	0.0965808496
+UniRef50_F2J1R0: Ppx/GppA phosphatase family|unclassified	0.0965808496
+UniRef50_Q88VJ2: D-lactate dehydrogenase	0.0965799650
+UniRef50_Q88VJ2: D-lactate dehydrogenase|unclassified	0.0965799650
+UniRef50_UPI000328DE1B: PREDICTED: serine/arginine repetitive matrix protein 3-like	0.0965763764
+UniRef50_UPI000328DE1B: PREDICTED: serine/arginine repetitive matrix protein 3-like|unclassified	0.0965763764
+UniRef50_X1F1E1: Marine sediment metagenome DNA, contig: S01H4_S18981 (Fragment)	0.0965701466
+UniRef50_X1F1E1: Marine sediment metagenome DNA, contig: S01H4_S18981 (Fragment)|unclassified	0.0965701466
+UniRef50_L1PIM2	0.0965591346
+UniRef50_L1PIM2|unclassified	0.0965591346
+UniRef50_UPI00036E1B0F: hypothetical protein	0.0965585144
+UniRef50_UPI00036E1B0F: hypothetical protein|unclassified	0.0965585144
+UniRef50_C4UAY3: ABC-2 type transporter	0.0965581851
+UniRef50_C4UAY3: ABC-2 type transporter|unclassified	0.0965581851
+UniRef50_UPI000349D801: hypothetical protein	0.0965520923
+UniRef50_UPI000349D801: hypothetical protein|unclassified	0.0965520923
+UniRef50_Q82TC0: Shikimate kinase	0.0965497559
+UniRef50_Q82TC0: Shikimate kinase|unclassified	0.0965497559
+UniRef50_Q8XGY4: tRNA-specific adenosine deaminase	0.0965472486
+UniRef50_Q8XGY4: tRNA-specific adenosine deaminase|unclassified	0.0965472486
+UniRef50_UPI00036EB33D: hypothetical protein	0.0965464285
+UniRef50_UPI00036EB33D: hypothetical protein|unclassified	0.0965464285
+UniRef50_X1G8H6: Marine sediment metagenome DNA, contig: S03H2_S01750 (Fragment)	0.0965411528
+UniRef50_X1G8H6: Marine sediment metagenome DNA, contig: S03H2_S01750 (Fragment)|unclassified	0.0965411528
+UniRef50_UPI0003CFF16B: SsrA-binding protein	0.0965405093
+UniRef50_UPI0003CFF16B: SsrA-binding protein|unclassified	0.0965405093
+UniRef50_UPI0004079B32: diguanylate cyclase	0.0965385538
+UniRef50_UPI0004079B32: diguanylate cyclase|unclassified	0.0965385538
+UniRef50_Q92RG8: Protoheme IX farnesyltransferase	0.0965383573
+UniRef50_Q92RG8: Protoheme IX farnesyltransferase|unclassified	0.0965383573
+UniRef50_X1TRA9: Marine sediment metagenome DNA, contig: S12H4_S03277 (Fragment)	0.0965307717
+UniRef50_X1TRA9: Marine sediment metagenome DNA, contig: S12H4_S03277 (Fragment)|unclassified	0.0965307717
+UniRef50_A4VI69: Type 4 fimbrial biogenesis protein PilV	0.0965276165
+UniRef50_A4VI69: Type 4 fimbrial biogenesis protein PilV|unclassified	0.0965276165
+UniRef50_UPI0002DF2581: hypothetical protein	0.0965269545
+UniRef50_UPI0002DF2581: hypothetical protein|unclassified	0.0965269545
+UniRef50_T1ZMP3: Competence protein	0.0965256343
+UniRef50_T1ZMP3: Competence protein|unclassified	0.0965256343
+UniRef50_UPI0003B739B2: glutamyl-tRNA synthetase	0.0965150661
+UniRef50_UPI0003B739B2: glutamyl-tRNA synthetase|unclassified	0.0965150661
+UniRef50_A0KZD8: Glucose-1-phosphate adenylyltransferase	0.0965087084
+UniRef50_A0KZD8: Glucose-1-phosphate adenylyltransferase|unclassified	0.0965087084
+UniRef50_W6R5Q8: Sialic acid TRAP transporter permease protein siaT N-acetylneuraminic acid permease	0.0965071362
+UniRef50_W6R5Q8: Sialic acid TRAP transporter permease protein siaT N-acetylneuraminic acid permease|unclassified	0.0965071362
+UniRef50_Q21LK4	0.0965053685
+UniRef50_Q21LK4|unclassified	0.0965053685
+UniRef50_UPI00021A8368: PREDICTED: hypothetical protein LOC100644828	0.0965009258
+UniRef50_UPI00021A8368: PREDICTED: hypothetical protein LOC100644828|unclassified	0.0965009258
+UniRef50_O29627: 3-isopropylmalate dehydrogenase	0.0965006482
+UniRef50_O29627: 3-isopropylmalate dehydrogenase|unclassified	0.0965006482
+UniRef50_U5C5S7: Diguanylate cyclase	0.0964943574
+UniRef50_U5C5S7: Diguanylate cyclase|unclassified	0.0964943574
+UniRef50_UPI00037F2BCB: hypothetical protein	0.0964930007
+UniRef50_UPI00037F2BCB: hypothetical protein|unclassified	0.0964930007
+UniRef50_B6W739	0.0964903363
+UniRef50_B6W739|unclassified	0.0964903363
+UniRef50_Q0F2B8: Stringent starvation protein A	0.0964889556
+UniRef50_Q0F2B8: Stringent starvation protein A|unclassified	0.0964889556
+UniRef50_B8EMI6	0.0964874590
+UniRef50_B8EMI6|unclassified	0.0964874590
+UniRef50_UPI00034B692F: hypothetical protein	0.0964860487
+UniRef50_UPI00034B692F: hypothetical protein|unclassified	0.0964860487
+UniRef50_UPI0003639B25: hypothetical protein	0.0964765668
+UniRef50_UPI0003639B25: hypothetical protein|unclassified	0.0964765668
+UniRef50_L8DW20: Na(+)/H(+) antiporter subunit A	0.0964741336
+UniRef50_L8DW20: Na(+)/H(+) antiporter subunit A|unclassified	0.0964741336
+UniRef50_M1R499: Response regulator aspartate phosphatase	0.0964735953
+UniRef50_M1R499: Response regulator aspartate phosphatase|unclassified	0.0964735953
+UniRef50_UPI0003B44DAD: membrane protein	0.0964667746
+UniRef50_UPI0003B44DAD: membrane protein|unclassified	0.0964667746
+UniRef50_B2I6A8: tRNA (guanine-N(1)-)-methyltransferase	0.0964660749
+UniRef50_B2I6A8: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0964660749
+UniRef50_C7ZTW3: Membrane protein	0.0964558471
+UniRef50_C7ZTW3: Membrane protein|unclassified	0.0964558471
+UniRef50_UPI0004696860: amino acid permease, partial	0.0964521344
+UniRef50_UPI0004696860: amino acid permease, partial|unclassified	0.0964521344
+UniRef50_UPI000469696A: hypothetical protein	0.0964508491
+UniRef50_UPI000469696A: hypothetical protein|unclassified	0.0964508491
+UniRef50_UPI000377122D: hypothetical protein	0.0964459954
+UniRef50_UPI000377122D: hypothetical protein|unclassified	0.0964459954
+UniRef50_D8LEL7	0.0964398157
+UniRef50_D8LEL7|unclassified	0.0964398157
+UniRef50_UPI00037B50DA: oxidoreductase	0.0964331199
+UniRef50_UPI00037B50DA: oxidoreductase|unclassified	0.0964331199
+UniRef50_D3QXW6: Immunoglobulin-binding regulator A-like protein	0.0964327585
+UniRef50_D3QXW6: Immunoglobulin-binding regulator A-like protein|unclassified	0.0964327585
+UniRef50_N1ZRI1	0.0964241154
+UniRef50_N1ZRI1|unclassified	0.0964241154
+UniRef50_UPI0004663210: MULTISPECIES: epimerase	0.0964224306
+UniRef50_UPI0004663210: MULTISPECIES: epimerase|unclassified	0.0964224306
+UniRef50_UPI0002F27AED: hypothetical protein	0.0964194209
+UniRef50_UPI0002F27AED: hypothetical protein|unclassified	0.0964194209
+UniRef50_H0JDL5: Type IV pilus modification protein PilV	0.0964163296
+UniRef50_H0JDL5: Type IV pilus modification protein PilV|unclassified	0.0964163296
+UniRef50_K7EFD4	0.0964111109
+UniRef50_K7EFD4|unclassified	0.0964111109
+UniRef50_UPI00022CED50: PREDICTED: probable 3-hydroxyisobutyrate dehydrogenase, mitochondrial-like	0.0964105068
+UniRef50_UPI00022CED50: PREDICTED: probable 3-hydroxyisobutyrate dehydrogenase, mitochondrial-like|unclassified	0.0964105068
+UniRef50_UPI0003B530FD: peptidase M22	0.0963997959
+UniRef50_UPI0003B530FD: peptidase M22|unclassified	0.0963997959
+UniRef50_UPI00044162B6: hypothetical protein PUNSTDRAFT_145447	0.0963942563
+UniRef50_UPI00044162B6: hypothetical protein PUNSTDRAFT_145447|unclassified	0.0963942563
+UniRef50_UPI000288D5FA: sugar deacetylase	0.0963917175
+UniRef50_UPI000288D5FA: sugar deacetylase|unclassified	0.0963917175
+UniRef50_UPI000475B6F2: 4-alpha-glucanotransferase	0.0963866539
+UniRef50_UPI000475B6F2: 4-alpha-glucanotransferase|unclassified	0.0963866539
+UniRef50_U2T3Q5: Pyridoxal-phosphate dependent protein (Fragment)	0.0963855688
+UniRef50_U2T3Q5: Pyridoxal-phosphate dependent protein (Fragment)|unclassified	0.0963855688
+UniRef50_UPI0003635DB7: hypothetical protein	0.0963846507
+UniRef50_UPI0003635DB7: hypothetical protein|unclassified	0.0963846507
+UniRef50_UPI00037B80D4: hypothetical protein	0.0963783319
+UniRef50_UPI00037B80D4: hypothetical protein|unclassified	0.0963783319
+UniRef50_UPI0004549DE1: PREDICTED: plexin-B1	0.0963754289
+UniRef50_UPI0004549DE1: PREDICTED: plexin-B1|unclassified	0.0963754289
+UniRef50_UPI000363B09D: hypothetical protein	0.0963681993
+UniRef50_UPI000363B09D: hypothetical protein|unclassified	0.0963681993
+UniRef50_Q8U7H6: Lysine--tRNA ligase	0.0963543922
+UniRef50_Q8U7H6: Lysine--tRNA ligase|unclassified	0.0963543922
+UniRef50_UPI000417AE0F: XRE family transcriptional regulator	0.0963524718
+UniRef50_UPI000417AE0F: XRE family transcriptional regulator|unclassified	0.0963524718
+UniRef50_UPI00046ABE83: lactate dehydrogenase	0.0963477831
+UniRef50_UPI00046ABE83: lactate dehydrogenase|unclassified	0.0963477831
+UniRef50_E4HPQ2	0.0963460002
+UniRef50_E4HPQ2|unclassified	0.0963460002
+UniRef50_UPI00037E5D26: hypothetical protein	0.0963414170
+UniRef50_UPI00037E5D26: hypothetical protein|unclassified	0.0963414170
+UniRef50_UPI000375B3FE: hypothetical protein	0.0963246348
+UniRef50_UPI000375B3FE: hypothetical protein|unclassified	0.0963246348
+UniRef50_UPI0003B54983: heme ABC transporter ATP-binding protein	0.0963229950
+UniRef50_UPI0003B54983: heme ABC transporter ATP-binding protein|unclassified	0.0963229950
+UniRef50_I1EQF3	0.0963154878
+UniRef50_I1EQF3|unclassified	0.0963154878
+UniRef50_UPI00046424BB: hypothetical protein	0.0963112348
+UniRef50_UPI00046424BB: hypothetical protein|unclassified	0.0963112348
+UniRef50_UPI00037EFCDE: hypothetical protein	0.0963080552
+UniRef50_UPI00037EFCDE: hypothetical protein|unclassified	0.0963080552
+UniRef50_UPI0003B353F2: UDP-N-acetyl-D-mannosamine transferase	0.0963052817
+UniRef50_UPI0003B353F2: UDP-N-acetyl-D-mannosamine transferase|unclassified	0.0963052817
+UniRef50_UPI0003B4985D: lipase	0.0962857669
+UniRef50_UPI0003B4985D: lipase|unclassified	0.0962857669
+UniRef50_G7QBD3: SEC-C motif domain protein	0.0962829880
+UniRef50_G7QBD3: SEC-C motif domain protein|unclassified	0.0962829880
+UniRef50_F8E3U0	0.0962705796
+UniRef50_F8E3U0|unclassified	0.0962705796
+UniRef50_UPI0003B583E8: hypothetical protein	0.0962682203
+UniRef50_UPI0003B583E8: hypothetical protein|unclassified	0.0962682203
+UniRef50_UPI0002D3A5FE: hypothetical protein	0.0962588924
+UniRef50_UPI0002D3A5FE: hypothetical protein|unclassified	0.0962588924
+UniRef50_UPI000379D7BF: hypothetical protein	0.0962573195
+UniRef50_UPI000379D7BF: hypothetical protein|unclassified	0.0962573195
+UniRef50_UPI0004708B65: hypothetical protein, partial	0.0962563507
+UniRef50_UPI0004708B65: hypothetical protein, partial|unclassified	0.0962563507
+UniRef50_UPI00036FA499: hypothetical protein	0.0962527283
+UniRef50_UPI00036FA499: hypothetical protein|unclassified	0.0962527283
+UniRef50_A0A011P795: Neu5Ac permease	0.0962504750
+UniRef50_A0A011P795: Neu5Ac permease|unclassified	0.0962504750
+UniRef50_UPI00037EF005: hypothetical protein	0.0962427583
+UniRef50_UPI00037EF005: hypothetical protein|unclassified	0.0962427583
+UniRef50_UPI00036835CC: hypothetical protein	0.0962343363
+UniRef50_UPI00036835CC: hypothetical protein|unclassified	0.0962343363
+UniRef50_Q9X1K5: Diaminopimelate decarboxylase	0.0962289280
+UniRef50_Q9X1K5: Diaminopimelate decarboxylase|unclassified	0.0962289280
+UniRef50_D1RMY5: Thioesterase family protein	0.0962243504
+UniRef50_D1RMY5: Thioesterase family protein|unclassified	0.0962243504
+UniRef50_UPI000255D928: porphobilinogen deaminase	0.0962131697
+UniRef50_UPI000255D928: porphobilinogen deaminase|unclassified	0.0962131697
+UniRef50_UPI00047CABEB: hypothetical protein	0.0962094504
+UniRef50_UPI00047CABEB: hypothetical protein|unclassified	0.0962094504
+UniRef50_D5ANC8	0.0962043045
+UniRef50_D5ANC8|unclassified	0.0962043045
+UniRef50_UPI00030A6F73: hypothetical protein	0.0961947949
+UniRef50_UPI00030A6F73: hypothetical protein|unclassified	0.0961947949
+UniRef50_UPI000370C29E: MULTISPECIES: chemotaxis protein CheA	0.0961937129
+UniRef50_UPI000370C29E: MULTISPECIES: chemotaxis protein CheA|unclassified	0.0961937129
+UniRef50_A5VNN0	0.0961856373
+UniRef50_A5VNN0|unclassified	0.0961856373
+UniRef50_A3UE81	0.0961847449
+UniRef50_A3UE81|unclassified	0.0961847449
+UniRef50_UPI00036301EF: hypothetical protein	0.0961807858
+UniRef50_UPI00036301EF: hypothetical protein|unclassified	0.0961807858
+UniRef50_UPI0003B5704D: hydrolase GDSL	0.0961800775
+UniRef50_UPI0003B5704D: hydrolase GDSL|unclassified	0.0961800775
+UniRef50_P24058: Argininosuccinate lyase	0.0961776349
+UniRef50_P24058: Argininosuccinate lyase|unclassified	0.0961776349
+UniRef50_U4V8P9	0.0961746325
+UniRef50_U4V8P9|unclassified	0.0961746325
+UniRef50_UPI00037F53A0: hypothetical protein	0.0961717414
+UniRef50_UPI00037F53A0: hypothetical protein|unclassified	0.0961717414
+UniRef50_G9EJ55	0.0961715133
+UniRef50_G9EJ55|unclassified	0.0961715133
+UniRef50_UPI000248E5FB: phenazine biosynthesis protein PhzF	0.0961706397
+UniRef50_UPI000248E5FB: phenazine biosynthesis protein PhzF|unclassified	0.0961706397
+UniRef50_UPI00036C69C9: hypothetical protein	0.0961634362
+UniRef50_UPI00036C69C9: hypothetical protein|unclassified	0.0961634362
+UniRef50_V4HIY9: ABC transporter substrate-binding protein	0.0961566628
+UniRef50_V4HIY9: ABC transporter substrate-binding protein|unclassified	0.0961566628
+UniRef50_T1A5J7	0.0961504938
+UniRef50_T1A5J7|unclassified	0.0961504938
+UniRef50_UPI0003615EA9: hypothetical protein	0.0961457645
+UniRef50_UPI0003615EA9: hypothetical protein|unclassified	0.0961457645
+UniRef50_K4KJ62	0.0961451917
+UniRef50_K4KJ62|unclassified	0.0961451917
+UniRef50_G8MB89: Carbon monoxide dehydrogenase subunit G	0.0961316931
+UniRef50_G8MB89: Carbon monoxide dehydrogenase subunit G|unclassified	0.0961316931
+UniRef50_R4ZMM2	0.0961185307
+UniRef50_R4ZMM2|unclassified	0.0961185307
+UniRef50_UPI00034448FA: PREDICTED: protein amnionless	0.0961113093
+UniRef50_UPI00034448FA: PREDICTED: protein amnionless|unclassified	0.0961113093
+UniRef50_UPI000387178C: PREDICTED: granulocyte colony-stimulating factor receptor	0.0960938210
+UniRef50_UPI000387178C: PREDICTED: granulocyte colony-stimulating factor receptor|unclassified	0.0960938210
+UniRef50_UPI0003B634AD: transcriptional regulator	0.0960839979
+UniRef50_UPI0003B634AD: transcriptional regulator|unclassified	0.0960839979
+UniRef50_UPI00037E2E12: hypothetical protein	0.0960797224
+UniRef50_UPI00037E2E12: hypothetical protein|unclassified	0.0960797224
+UniRef50_UPI000465E12B: hypothetical protein, partial	0.0960774573
+UniRef50_UPI000465E12B: hypothetical protein, partial|unclassified	0.0960774573
+UniRef50_UPI000375BDE0: hypothetical protein	0.0960770865
+UniRef50_UPI000375BDE0: hypothetical protein|unclassified	0.0960770865
+UniRef50_L8TZV1	0.0960726511
+UniRef50_L8TZV1|unclassified	0.0960726511
+UniRef50_UPI000465CCDE: hypothetical protein	0.0960686099
+UniRef50_UPI000465CCDE: hypothetical protein|unclassified	0.0960686099
+UniRef50_X8AW41	0.0960631860
+UniRef50_X8AW41|unclassified	0.0960631860
+UniRef50_UPI0002C335F8: PREDICTED: homeobox protein NOBOX	0.0960592317
+UniRef50_UPI0002C335F8: PREDICTED: homeobox protein NOBOX|unclassified	0.0960592317
+UniRef50_UPI0004723118: NADH dehydrogenase	0.0960568698
+UniRef50_UPI0004723118: NADH dehydrogenase|unclassified	0.0960568698
+UniRef50_UPI000464E495: hypothetical protein	0.0960528367
+UniRef50_UPI000464E495: hypothetical protein|unclassified	0.0960528367
+UniRef50_UPI000477C232: TetR family transcriptional regulator	0.0960524765
+UniRef50_UPI000477C232: TetR family transcriptional regulator|unclassified	0.0960524765
+UniRef50_UPI0003B7698F: hypothetical protein	0.0960434272
+UniRef50_UPI0003B7698F: hypothetical protein|unclassified	0.0960434272
+UniRef50_UPI000369F5CF: MULTISPECIES: hypothetical protein	0.0960414485
+UniRef50_UPI000369F5CF: MULTISPECIES: hypothetical protein|unclassified	0.0960414485
+UniRef50_UPI00036708EA: hypothetical protein	0.0960396206
+UniRef50_UPI00036708EA: hypothetical protein|unclassified	0.0960396206
+UniRef50_UPI000466BC57: branched-chain amino acid ABC transporter ATP-binding protein	0.0960316519
+UniRef50_UPI000466BC57: branched-chain amino acid ABC transporter ATP-binding protein|unclassified	0.0960316519
+UniRef50_UPI000464EE6D: hypothetical protein	0.0960273840
+UniRef50_UPI000464EE6D: hypothetical protein|unclassified	0.0960273840
+UniRef50_UPI000309F49D: hypothetical protein	0.0960245417
+UniRef50_UPI000309F49D: hypothetical protein|unclassified	0.0960245417
+UniRef50_W8V286: Beta-hydroxyacyl-ACP dehydratase	0.0960223615
+UniRef50_W8V286: Beta-hydroxyacyl-ACP dehydratase|unclassified	0.0960223615
+UniRef50_UPI000476026B: molybdate ABC transporter permease	0.0960216676
+UniRef50_UPI000476026B: molybdate ABC transporter permease|unclassified	0.0960216676
+UniRef50_W8RKA6: Membrane protein	0.0960212745
+UniRef50_W8RKA6: Membrane protein|unclassified	0.0960212745
+UniRef50_R9CB21: S1 RNA-binding domain-containing protein	0.0960128978
+UniRef50_R9CB21: S1 RNA-binding domain-containing protein|unclassified	0.0960128978
+UniRef50_A0A017HCJ5	0.0959951918
+UniRef50_A0A017HCJ5|unclassified	0.0959951918
+UniRef50_A0A011PJY3	0.0959855106
+UniRef50_A0A011PJY3|unclassified	0.0959855106
+UniRef50_S5XU94	0.0959743705
+UniRef50_S5XU94|unclassified	0.0959743705
+UniRef50_K0TMR9	0.0959731536
+UniRef50_K0TMR9|unclassified	0.0959731536
+UniRef50_UPI0004230041: hypothetical protein	0.0959556807
+UniRef50_UPI0004230041: hypothetical protein|unclassified	0.0959556807
+UniRef50_UPI0004758D63: CDP-diacylglycerol pyrophosphatase	0.0959552740
+UniRef50_UPI0004758D63: CDP-diacylglycerol pyrophosphatase|unclassified	0.0959552740
+UniRef50_UPI0003603EAF: hypothetical protein	0.0959432750
+UniRef50_UPI0003603EAF: hypothetical protein|unclassified	0.0959432750
+UniRef50_P46926: Glucosamine-6-phosphate isomerase 1	0.0959382753
+UniRef50_P46926: Glucosamine-6-phosphate isomerase 1|unclassified	0.0959382753
+UniRef50_UPI0002489B72: polysaccharide biosynthesis protein	0.0959345213
+UniRef50_UPI0002489B72: polysaccharide biosynthesis protein|unclassified	0.0959345213
+UniRef50_UPI00037CD596: hypothetical protein	0.0959332747
+UniRef50_UPI00037CD596: hypothetical protein|unclassified	0.0959332747
+UniRef50_P74755: Histidine biosynthesis bifunctional protein HisIE	0.0959311271
+UniRef50_P74755: Histidine biosynthesis bifunctional protein HisIE|unclassified	0.0959311271
+UniRef50_P00381: Dihydrofolate reductase	0.0959186403
+UniRef50_P00381: Dihydrofolate reductase|unclassified	0.0959186403
+UniRef50_UPI000479F6BC: ribonucleoside hydrolase	0.0959127133
+UniRef50_UPI000479F6BC: ribonucleoside hydrolase|unclassified	0.0959127133
+UniRef50_K1Z5M7	0.0958999953
+UniRef50_K1Z5M7|unclassified	0.0958999953
+UniRef50_G9QP52	0.0958996734
+UniRef50_G9QP52|unclassified	0.0958996734
+UniRef50_Q17ZY4: Proline racemase	0.0958963127
+UniRef50_Q17ZY4: Proline racemase|unclassified	0.0958963127
+UniRef50_UPI000380FAC7: hypothetical protein, partial	0.0958915679
+UniRef50_UPI000380FAC7: hypothetical protein, partial|unclassified	0.0958915679
+UniRef50_UPI0003B43D49: folylpolyglutamate synthase	0.0958836015
+UniRef50_UPI0003B43D49: folylpolyglutamate synthase|unclassified	0.0958836015
+UniRef50_UPI0002EB0F84: hypothetical protein	0.0958825840
+UniRef50_UPI0002EB0F84: hypothetical protein|unclassified	0.0958825840
+UniRef50_I7ENW2	0.0958728221
+UniRef50_I7ENW2|unclassified	0.0958728221
+UniRef50_A0L627: Phosphatidylserine decarboxylase proenzyme	0.0958675165
+UniRef50_A0L627: Phosphatidylserine decarboxylase proenzyme|unclassified	0.0958675165
+UniRef50_UPI000466605F: hypothetical protein	0.0958672775
+UniRef50_UPI000466605F: hypothetical protein|unclassified	0.0958672775
+UniRef50_A3JUV9	0.0958617385
+UniRef50_A3JUV9|unclassified	0.0958617385
+UniRef50_C3L935: Tetratricopeptide repeat protein	0.0958600574
+UniRef50_C3L935: Tetratricopeptide repeat protein|unclassified	0.0958600574
+UniRef50_D5AMZ9	0.0958525368
+UniRef50_D5AMZ9|unclassified	0.0958525368
+UniRef50_R2S4T5: Prepilin-type N-terminal cleavage/methylation domain-containing protein	0.0958318576
+UniRef50_R2S4T5: Prepilin-type N-terminal cleavage/methylation domain-containing protein|unclassified	0.0958318576
+UniRef50_Q31ID1: Lipoprotein signal peptidase	0.0958311899
+UniRef50_Q31ID1: Lipoprotein signal peptidase|unclassified	0.0958311899
+UniRef50_UPI000466FBB9: hypothetical protein	0.0958293624
+UniRef50_UPI000466FBB9: hypothetical protein|unclassified	0.0958293624
+UniRef50_Q98BK1: Endoribonuclease YbeY	0.0958269643
+UniRef50_Q98BK1: Endoribonuclease YbeY|unclassified	0.0958269643
+UniRef50_S0FWC8	0.0958253369
+UniRef50_S0FWC8|unclassified	0.0958253369
+UniRef50_UPI0003633A56: hypothetical protein	0.0958248483
+UniRef50_UPI0003633A56: hypothetical protein|unclassified	0.0958248483
+UniRef50_K6ZSQ0	0.0958196774
+UniRef50_K6ZSQ0|unclassified	0.0958196774
+UniRef50_H3RL88: TraI family DNA-nicking and unwinding protein	0.0958195506
+UniRef50_H3RL88: TraI family DNA-nicking and unwinding protein|unclassified	0.0958195506
+UniRef50_UPI00034B0665: glucose-1-phosphate adenylyltransferase	0.0958189331
+UniRef50_UPI00034B0665: glucose-1-phosphate adenylyltransferase|unclassified	0.0958189331
+UniRef50_A2BV48: Putative tRNA-(MS[2]IO[6]A)-hydroxylase-like protein	0.0958188690
+UniRef50_A2BV48: Putative tRNA-(MS[2]IO[6]A)-hydroxylase-like protein|unclassified	0.0958188690
+UniRef50_F6IDN0	0.0958187630
+UniRef50_F6IDN0|unclassified	0.0958187630
+UniRef50_L8DWI9: Internalin-J	0.0958158205
+UniRef50_L8DWI9: Internalin-J|unclassified	0.0958158205
+UniRef50_UPI000219386D: riboflavin synthase subunit alpha	0.0958133112
+UniRef50_UPI000219386D: riboflavin synthase subunit alpha|unclassified	0.0958133112
+UniRef50_B0UAY7: Extracellular solute-binding protein family 1	0.0958123767
+UniRef50_B0UAY7: Extracellular solute-binding protein family 1|unclassified	0.0958123767
+UniRef50_UPI00037CF4C2: hypothetical protein	0.0958071617
+UniRef50_UPI00037CF4C2: hypothetical protein|unclassified	0.0958071617
+UniRef50_X1HLG3: Marine sediment metagenome DNA, contig: S03H2_S14621 (Fragment)	0.0958042964
+UniRef50_X1HLG3: Marine sediment metagenome DNA, contig: S03H2_S14621 (Fragment)|unclassified	0.0958042964
+UniRef50_UPI0003B4FE53: homocysteine S-methyltransferase	0.0958026964
+UniRef50_UPI0003B4FE53: homocysteine S-methyltransferase|unclassified	0.0958026964
+UniRef50_UPI0003823FAA: hypothetical protein	0.0957952238
+UniRef50_UPI0003823FAA: hypothetical protein|unclassified	0.0957952238
+UniRef50_UPI000287F836: transposon Tn917 resolvase	0.0957902548
+UniRef50_UPI000287F836: transposon Tn917 resolvase|unclassified	0.0957902548
+UniRef50_S9R5C6	0.0957899173
+UniRef50_S9R5C6|unclassified	0.0957899173
+UniRef50_UPI0003694A47: hypothetical protein	0.0957877104
+UniRef50_UPI0003694A47: hypothetical protein|unclassified	0.0957877104
+UniRef50_C0QKP4: Holliday junction ATP-dependent DNA helicase RuvB	0.0957843661
+UniRef50_C0QKP4: Holliday junction ATP-dependent DNA helicase RuvB|unclassified	0.0957843661
+UniRef50_UPI0003B692F6: thioesterase	0.0957778188
+UniRef50_UPI0003B692F6: thioesterase|unclassified	0.0957778188
+UniRef50_B8H1N1	0.0957728203
+UniRef50_B8H1N1|unclassified	0.0957728203
+UniRef50_U1LSQ0: Transposase, IS4 family protein	0.0957693559
+UniRef50_U1LSQ0: Transposase, IS4 family protein|unclassified	0.0957693559
+UniRef50_C2PBH1: Phage infection protein	0.0957692492
+UniRef50_C2PBH1: Phage infection protein|unclassified	0.0957692492
+UniRef50_UPI000379DCCA: hypothetical protein	0.0957634418
+UniRef50_UPI000379DCCA: hypothetical protein|unclassified	0.0957634418
+UniRef50_W1Y1K4	0.0957629280
+UniRef50_W1Y1K4|unclassified	0.0957629280
+UniRef50_K2BFX5	0.0957597120
+UniRef50_K2BFX5|unclassified	0.0957597120
+UniRef50_UPI00047D2702: short-chain dehydrogenase	0.0957589999
+UniRef50_UPI00047D2702: short-chain dehydrogenase|unclassified	0.0957589999
+UniRef50_UPI00036915D9: hypothetical protein, partial	0.0957540906
+UniRef50_UPI00036915D9: hypothetical protein, partial|unclassified	0.0957540906
+UniRef50_UPI0003B6A98E: siderophore ABC transporter permease	0.0957540137
+UniRef50_UPI0003B6A98E: siderophore ABC transporter permease|unclassified	0.0957540137
+UniRef50_F2DQI0: Predicted protein	0.0957455220
+UniRef50_F2DQI0: Predicted protein|unclassified	0.0957455220
+UniRef50_Q8XA44: tRNA-specific adenosine deaminase	0.0957264296
+UniRef50_Q8XA44: tRNA-specific adenosine deaminase|unclassified	0.0957264296
+UniRef50_Q3AAW2: Homoserine O-acetyltransferase	0.0957241438
+UniRef50_Q3AAW2: Homoserine O-acetyltransferase|unclassified	0.0957241438
+UniRef50_UPI0002DDD080: hypothetical protein	0.0957214607
+UniRef50_UPI0002DDD080: hypothetical protein|unclassified	0.0957214607
+UniRef50_G5QFW4: Putative ABC-type multidrug transport system	0.0957164584
+UniRef50_G5QFW4: Putative ABC-type multidrug transport system|unclassified	0.0957164584
+UniRef50_UPI000367CE43: hypothetical protein	0.0957129819
+UniRef50_UPI000367CE43: hypothetical protein|unclassified	0.0957129819
+UniRef50_B8GF30: Permease	0.0957091811
+UniRef50_B8GF30: Permease|unclassified	0.0957091811
+UniRef50_A0A009H3I8: FAD binding domain protein	0.0957068228
+UniRef50_A0A009H3I8: FAD binding domain protein|unclassified	0.0957068228
+UniRef50_B2ICS4: Putative DNA topology modulation protein FlaR	0.0957043308
+UniRef50_B2ICS4: Putative DNA topology modulation protein FlaR|unclassified	0.0957043308
+UniRef50_F5L6M4	0.0957035271
+UniRef50_F5L6M4|unclassified	0.0957035271
+UniRef50_O76464: Nitrilase and fragile histidine triad fusion protein NitFhit	0.0956938951
+UniRef50_O76464: Nitrilase and fragile histidine triad fusion protein NitFhit|unclassified	0.0956938951
+UniRef50_F7RQ63: Putative transport protein	0.0956938145
+UniRef50_F7RQ63: Putative transport protein|unclassified	0.0956938145
+UniRef50_UPI0003B3547F: RNA methyltransferase	0.0956919961
+UniRef50_UPI0003B3547F: RNA methyltransferase|unclassified	0.0956919961
+UniRef50_UPI0003729DF5: hypothetical protein	0.0956833150
+UniRef50_UPI0003729DF5: hypothetical protein|unclassified	0.0956833150
+UniRef50_UPI000252BB4D: PREDICTED: LOW QUALITY PROTEIN: valine--tRNA ligase-like, partial	0.0956811629
+UniRef50_UPI000252BB4D: PREDICTED: LOW QUALITY PROTEIN: valine--tRNA ligase-like, partial|unclassified	0.0956811629
+UniRef50_X1BNT6: Marine sediment metagenome DNA, contig: S01H4_C00608 (Fragment)	0.0956795685
+UniRef50_X1BNT6: Marine sediment metagenome DNA, contig: S01H4_C00608 (Fragment)|unclassified	0.0956795685
+UniRef50_L7MEH7: Putative splicing factor sr protein superfamily (Fragment)	0.0956754688
+UniRef50_L7MEH7: Putative splicing factor sr protein superfamily (Fragment)|unclassified	0.0956754688
+UniRef50_K2FJ97	0.0956748772
+UniRef50_K2FJ97|unclassified	0.0956748772
+UniRef50_Q806C8: Glycoprotein L	0.0956696543
+UniRef50_Q806C8: Glycoprotein L|unclassified	0.0956696543
+UniRef50_UPI00030F5D93: hypothetical protein	0.0956692609
+UniRef50_UPI00030F5D93: hypothetical protein|unclassified	0.0956692609
+UniRef50_E6SKI4	0.0956648468
+UniRef50_E6SKI4|unclassified	0.0956648468
+UniRef50_W2EJG9	0.0956615937
+UniRef50_W2EJG9|unclassified	0.0956615937
+UniRef50_UPI00046ED2CC: hypothetical protein	0.0956612953
+UniRef50_UPI00046ED2CC: hypothetical protein|unclassified	0.0956612953
+UniRef50_UPI0004799731: nucleotide pyrophosphohydrolase	0.0956567140
+UniRef50_UPI0004799731: nucleotide pyrophosphohydrolase|unclassified	0.0956567140
+UniRef50_UPI000441D732: PREDICTED: alpha-enolase	0.0956536263
+UniRef50_UPI000441D732: PREDICTED: alpha-enolase|unclassified	0.0956536263
+UniRef50_L0GIX0	0.0956503558
+UniRef50_L0GIX0|unclassified	0.0956503558
+UniRef50_Q08NZ6	0.0956491544
+UniRef50_Q08NZ6|unclassified	0.0956491544
+UniRef50_UPI0004639ED9: hypothetical protein	0.0956460389
+UniRef50_UPI0004639ED9: hypothetical protein|unclassified	0.0956460389
+UniRef50_Q9RTP9	0.0956427894
+UniRef50_Q9RTP9|unclassified	0.0956427894
+UniRef50_Q8A251: Ribosomal RNA small subunit methyltransferase H	0.0956367410
+UniRef50_Q8A251: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0956367410
+UniRef50_UPI00034BDE8D: hypothetical protein	0.0956284434
+UniRef50_UPI00034BDE8D: hypothetical protein|unclassified	0.0956284434
+UniRef50_UPI000380A4BF: hypothetical protein	0.0956267870
+UniRef50_UPI000380A4BF: hypothetical protein|unclassified	0.0956267870
+UniRef50_A0RAK2: Response regulator	0.0956234102
+UniRef50_A0RAK2: Response regulator|unclassified	0.0956234102
+UniRef50_S9TP40	0.0956199743
+UniRef50_S9TP40|unclassified	0.0956199743
+UniRef50_UPI000477595D: tRNA methyltransferase	0.0956142757
+UniRef50_UPI000477595D: tRNA methyltransferase|unclassified	0.0956142757
+UniRef50_UPI0001FFF2F4: GntR family transcriptional regulator	0.0956100928
+UniRef50_UPI0001FFF2F4: GntR family transcriptional regulator|unclassified	0.0956100928
+UniRef50_C5N915	0.0956088859
+UniRef50_C5N915|unclassified	0.0956088859
+UniRef50_UPI00047D45FE: arginine ABC transporter permease	0.0956046740
+UniRef50_UPI00047D45FE: arginine ABC transporter permease|unclassified	0.0956046740
+UniRef50_A9C156: Anti-FecI sigma factor, FecR	0.0956045342
+UniRef50_A9C156: Anti-FecI sigma factor, FecR|unclassified	0.0956045342
+UniRef50_UPI0004737306: hypothetical protein	0.0956007580
+UniRef50_UPI0004737306: hypothetical protein|unclassified	0.0956007580
+UniRef50_UPI00047B623F: hypothetical protein	0.0955995029
+UniRef50_UPI00047B623F: hypothetical protein|unclassified	0.0955995029
+UniRef50_UPI0002B47A51	0.0955931382
+UniRef50_UPI0002B47A51|unclassified	0.0955931382
+UniRef50_M6ZY50	0.0955899315
+UniRef50_M6ZY50|unclassified	0.0955899315
+UniRef50_UPI0003647F0F: hypothetical protein	0.0955841137
+UniRef50_UPI0003647F0F: hypothetical protein|unclassified	0.0955841137
+UniRef50_UPI00040C8475: hypothetical protein	0.0955837738
+UniRef50_UPI00040C8475: hypothetical protein|unclassified	0.0955837738
+UniRef50_UPI000465DA4A: DNA polymerase III subunit delta'', partial	0.0955825867
+UniRef50_UPI000465DA4A: DNA polymerase III subunit delta'', partial|unclassified	0.0955825867
+UniRef50_O26274: Conserved protein	0.0955806435
+UniRef50_O26274: Conserved protein|unclassified	0.0955806435
+UniRef50_UPI00036790CF: hypothetical protein	0.0955756855
+UniRef50_UPI00036790CF: hypothetical protein|unclassified	0.0955756855
+UniRef50_I8I4F3	0.0955695323
+UniRef50_I8I4F3|unclassified	0.0955695323
+UniRef50_X6L3M2	0.0955668669
+UniRef50_X6L3M2|unclassified	0.0955668669
+UniRef50_UPI00030860F8: hypothetical protein	0.0955649715
+UniRef50_UPI00030860F8: hypothetical protein|unclassified	0.0955649715
+UniRef50_P44709	0.0955527825
+UniRef50_P44709|unclassified	0.0955527825
+UniRef50_UPI00036851CE: hypothetical protein	0.0955455386
+UniRef50_UPI00036851CE: hypothetical protein|unclassified	0.0955455386
+UniRef50_UPI0002558142: sarcosine oxidase alpha subunit family protein, partial	0.0955365057
+UniRef50_UPI0002558142: sarcosine oxidase alpha subunit family protein, partial|unclassified	0.0955365057
+UniRef50_U3HTN6: Pilus assembly protein PilV	0.0955322847
+UniRef50_U3HTN6: Pilus assembly protein PilV|unclassified	0.0955322847
+UniRef50_A0A024DZ52: Peptidase, M23/M37	0.0955317312
+UniRef50_A0A024DZ52: Peptidase, M23/M37|unclassified	0.0955317312
+UniRef50_E8RV78: Thioesterase superfamily protein	0.0955282719
+UniRef50_E8RV78: Thioesterase superfamily protein|unclassified	0.0955282719
+UniRef50_C7DF40	0.0955271271
+UniRef50_C7DF40|unclassified	0.0955271271
+UniRef50_UPI000299D763: L-serine dehydratase, beta subunit	0.0955177733
+UniRef50_UPI000299D763: L-serine dehydratase, beta subunit|unclassified	0.0955177733
+UniRef50_UPI000455DF0C: hypothetical protein CONPUDRAFT_134454	0.0955087075
+UniRef50_UPI000455DF0C: hypothetical protein CONPUDRAFT_134454|unclassified	0.0955087075
+UniRef50_W4JEI8	0.0955080058
+UniRef50_W4JEI8|unclassified	0.0955080058
+UniRef50_UPI0003EBE51E: PREDICTED: fatty-acid amide hydrolase 2-A-like	0.0955069987
+UniRef50_UPI0003EBE51E: PREDICTED: fatty-acid amide hydrolase 2-A-like|unclassified	0.0955069987
+UniRef50_H1V6S9	0.0955068178
+UniRef50_H1V6S9|unclassified	0.0955068178
+UniRef50_F1VY12	0.0955054545
+UniRef50_F1VY12|unclassified	0.0955054545
+UniRef50_UPI00029AF897: MFS transporter	0.0955052529
+UniRef50_UPI00029AF897: MFS transporter|unclassified	0.0955052529
+UniRef50_UPI000468A267: hypothetical protein	0.0955044952
+UniRef50_UPI000468A267: hypothetical protein|unclassified	0.0955044952
+UniRef50_UPI0004724CFB: hypothetical protein	0.0955013750
+UniRef50_UPI0004724CFB: hypothetical protein|unclassified	0.0955013750
+UniRef50_M2QHG7	0.0954903603
+UniRef50_M2QHG7|unclassified	0.0954903603
+UniRef50_W9GXC4	0.0954797823
+UniRef50_W9GXC4|unclassified	0.0954797823
+UniRef50_E1VCX5	0.0954764338
+UniRef50_E1VCX5|unclassified	0.0954764338
+UniRef50_A7IQ96: WGR domain protein	0.0954704606
+UniRef50_A7IQ96: WGR domain protein|unclassified	0.0954704606
+UniRef50_A0A017HCF2	0.0954675120
+UniRef50_A0A017HCF2|unclassified	0.0954675120
+UniRef50_UPI000477AF37: hypothetical protein	0.0954654267
+UniRef50_UPI000477AF37: hypothetical protein|unclassified	0.0954654267
+UniRef50_K6WU06: Putative transcriptional accessory protein (Fragment)	0.0954634537
+UniRef50_K6WU06: Putative transcriptional accessory protein (Fragment)|unclassified	0.0954634537
+UniRef50_I3R9M8: Respiratory nitrate reductase subunit beta	0.0954630086
+UniRef50_I3R9M8: Respiratory nitrate reductase subunit beta|unclassified	0.0954630086
+UniRef50_C8RXQ3	0.0954597871
+UniRef50_C8RXQ3|unclassified	0.0954597871
+UniRef50_UPI0003FF6A7D: MULTISPECIES: hypothetical protein	0.0954583055
+UniRef50_UPI0003FF6A7D: MULTISPECIES: hypothetical protein|unclassified	0.0954583055
+UniRef50_UPI00040C5C40: multidrug ABC transporter ATPase	0.0954578525
+UniRef50_UPI00040C5C40: multidrug ABC transporter ATPase|unclassified	0.0954578525
+UniRef50_UPI0003B62BEC: hypothetical protein, partial	0.0954561548
+UniRef50_UPI0003B62BEC: hypothetical protein, partial|unclassified	0.0954561548
+UniRef50_UPI00037EB16F: thymidylate synthase	0.0954555429
+UniRef50_UPI00037EB16F: thymidylate synthase|unclassified	0.0954555429
+UniRef50_A5A3S4: BcepGomrgp35	0.0954515974
+UniRef50_A5A3S4: BcepGomrgp35|unclassified	0.0954515974
+UniRef50_E8WS90	0.0954515834
+UniRef50_E8WS90|unclassified	0.0954515834
+UniRef50_T0YQK1: HlyD family secretion protein (Fragment)	0.0954506843
+UniRef50_T0YQK1: HlyD family secretion protein (Fragment)|unclassified	0.0954506843
+UniRef50_UPI00036D0961: hypothetical protein	0.0954473455
+UniRef50_UPI00036D0961: hypothetical protein|unclassified	0.0954473455
+UniRef50_UPI0003EDCFAC	0.0954435512
+UniRef50_UPI0003EDCFAC|unclassified	0.0954435512
+UniRef50_UPI0003AF4F98: PREDICTED: aldehyde dehydrogenase family 9 member A1-like	0.0954429121
+UniRef50_UPI0003AF4F98: PREDICTED: aldehyde dehydrogenase family 9 member A1-like|unclassified	0.0954429121
+UniRef50_D8HJF1	0.0954355416
+UniRef50_D8HJF1|unclassified	0.0954355416
+UniRef50_UPI00047A33B6: hypothetical protein, partial	0.0954338964
+UniRef50_UPI00047A33B6: hypothetical protein, partial|unclassified	0.0954338964
+UniRef50_UPI00047E0356: hypothetical protein	0.0954335014
+UniRef50_UPI00047E0356: hypothetical protein|unclassified	0.0954335014
+UniRef50_UPI00035D8A3E: hypothetical protein	0.0954300470
+UniRef50_UPI00035D8A3E: hypothetical protein|unclassified	0.0954300470
+UniRef50_UPI00025596C8: ABC transporter-like protein, partial	0.0954171738
+UniRef50_UPI00025596C8: ABC transporter-like protein, partial|unclassified	0.0954171738
+UniRef50_A0A014D6Q5: Phage portal family protein	0.0954104106
+UniRef50_A0A014D6Q5: Phage portal family protein|unclassified	0.0954104106
+UniRef50_UPI0003B559D7: 4-alpha-glucanotransferase	0.0954069205
+UniRef50_UPI0003B559D7: 4-alpha-glucanotransferase|unclassified	0.0954069205
+UniRef50_P70917: Small heat shock protein HspA	0.0954066303
+UniRef50_P70917: Small heat shock protein HspA|unclassified	0.0954066303
+UniRef50_X0QD41: ABC transporter substrate-binding protein	0.0953993144
+UniRef50_X0QD41: ABC transporter substrate-binding protein|unclassified	0.0953993144
+UniRef50_UPI000478A42E: peptide ABC transporter permease	0.0953957034
+UniRef50_UPI000478A42E: peptide ABC transporter permease|unclassified	0.0953957034
+UniRef50_UPI00046F09D7: ABC transporter substrate-binding protein	0.0953947300
+UniRef50_UPI00046F09D7: ABC transporter substrate-binding protein|unclassified	0.0953947300
+UniRef50_UPI0004728A87: 5-amino-6-(5-phosphoribosylamino)uracil reductase, partial	0.0953883028
+UniRef50_UPI0004728A87: 5-amino-6-(5-phosphoribosylamino)uracil reductase, partial|unclassified	0.0953883028
+UniRef50_UPI000255546F: ABC transporter substrate-binding protein	0.0953863343
+UniRef50_UPI000255546F: ABC transporter substrate-binding protein|unclassified	0.0953863343
+UniRef50_UPI000473BBBF: ABC transporter, partial	0.0953829575
+UniRef50_UPI000473BBBF: ABC transporter, partial|unclassified	0.0953829575
+UniRef50_A0YRN0: Putative transposase	0.0953814039
+UniRef50_A0YRN0: Putative transposase|unclassified	0.0953814039
+UniRef50_P00358: Glyceraldehyde-3-phosphate dehydrogenase 2	0.0953750038
+UniRef50_P00358: Glyceraldehyde-3-phosphate dehydrogenase 2|unclassified	0.0953750038
+UniRef50_UPI00037C7796: hypothetical protein	0.0953660073
+UniRef50_UPI00037C7796: hypothetical protein|unclassified	0.0953660073
+UniRef50_W7T2Q8	0.0953639803
+UniRef50_W7T2Q8|unclassified	0.0953639803
+UniRef50_M5UK49: Glucose 1-dehydrogenase	0.0953598887
+UniRef50_M5UK49: Glucose 1-dehydrogenase|unclassified	0.0953598887
+UniRef50_W8EV27	0.0953581607
+UniRef50_W8EV27|unclassified	0.0953581607
+UniRef50_G5QFD3: Potassium-transporting ATPase B chain (Fragment)	0.0953578642
+UniRef50_G5QFD3: Potassium-transporting ATPase B chain (Fragment)|unclassified	0.0953578642
+UniRef50_UPI0003B70013: phytoene dehydrogenase	0.0953570181
+UniRef50_UPI0003B70013: phytoene dehydrogenase|unclassified	0.0953570181
+UniRef50_R6P001	0.0953536916
+UniRef50_R6P001|unclassified	0.0953536916
+UniRef50_A8LLW0: Putative lipoprotein	0.0953525822
+UniRef50_A8LLW0: Putative lipoprotein|unclassified	0.0953525822
+UniRef50_O34427: Sensor protein CitS	0.0953317790
+UniRef50_O34427: Sensor protein CitS|unclassified	0.0953317790
+UniRef50_UPI00047DBB66: hypothetical protein	0.0953192185
+UniRef50_UPI00047DBB66: hypothetical protein|unclassified	0.0953192185
+UniRef50_UPI00047CF530: hypothetical protein	0.0953179530
+UniRef50_UPI00047CF530: hypothetical protein|unclassified	0.0953179530
+UniRef50_X1KD36: Marine sediment metagenome DNA, contig: S06H3_L01449	0.0953167472
+UniRef50_X1KD36: Marine sediment metagenome DNA, contig: S06H3_L01449|unclassified	0.0953167472
+UniRef50_UPI00047BE3BA: hypothetical protein	0.0953130011
+UniRef50_UPI00047BE3BA: hypothetical protein|unclassified	0.0953130011
+UniRef50_C5JBH5	0.0953122565
+UniRef50_C5JBH5|unclassified	0.0953122565
+UniRef50_E4U4N3: Short-chain dehydrogenase/reductase SDR	0.0953064165
+UniRef50_E4U4N3: Short-chain dehydrogenase/reductase SDR|unclassified	0.0953064165
+UniRef50_U5LHS6	0.0953012166
+UniRef50_U5LHS6|unclassified	0.0953012166
+UniRef50_UPI000360E65A: PTS acetylglucosamine transporter subunit IIB, partial	0.0952888268
+UniRef50_UPI000360E65A: PTS acetylglucosamine transporter subunit IIB, partial|unclassified	0.0952888268
+UniRef50_A5UVB3: Type III pantothenate kinase	0.0952838847
+UniRef50_A5UVB3: Type III pantothenate kinase|unclassified	0.0952838847
+UniRef50_UPI00036BB753: hypothetical protein	0.0952836288
+UniRef50_UPI00036BB753: hypothetical protein|unclassified	0.0952836288
+UniRef50_A7FX61: Conserved domain protein	0.0952834503
+UniRef50_A7FX61: Conserved domain protein|unclassified	0.0952834503
+UniRef50_UPI0003B6D892: phosphate ABC transporter permease	0.0952770670
+UniRef50_UPI0003B6D892: phosphate ABC transporter permease|unclassified	0.0952770670
+UniRef50_A0A011QSX6	0.0952677394
+UniRef50_A0A011QSX6|unclassified	0.0952677394
+UniRef50_Q9X2A3: Arginine biosynthesis bifunctional protein ArgJ	0.0952673495
+UniRef50_Q9X2A3: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.0952673495
+UniRef50_T1EBY9	0.0952625549
+UniRef50_T1EBY9|unclassified	0.0952625549
+UniRef50_M1FGV6	0.0952602366
+UniRef50_M1FGV6|unclassified	0.0952602366
+UniRef50_P30952: Malate synthase 1, glyoxysomal	0.0952583223
+UniRef50_P30952: Malate synthase 1, glyoxysomal|unclassified	0.0952583223
+UniRef50_A1ASQ4	0.0952569644
+UniRef50_A1ASQ4|unclassified	0.0952569644
+UniRef50_UPI00036967B1: hypothetical protein	0.0952542460
+UniRef50_UPI00036967B1: hypothetical protein|unclassified	0.0952542460
+UniRef50_UPI000361119F: hypothetical protein	0.0952520953
+UniRef50_UPI000361119F: hypothetical protein|unclassified	0.0952520953
+UniRef50_L7VWE3: PvcA protein	0.0952434931
+UniRef50_L7VWE3: PvcA protein|unclassified	0.0952434931
+UniRef50_UPI000370F377: hypothetical protein	0.0952298915
+UniRef50_UPI000370F377: hypothetical protein|unclassified	0.0952298915
+UniRef50_O51781: Arginine deiminase	0.0952252434
+UniRef50_O51781: Arginine deiminase|unclassified	0.0952252434
+UniRef50_Q8KW30: RC160	0.0952181625
+UniRef50_Q8KW30: RC160|unclassified	0.0952181625
+UniRef50_UPI00037BBD41: hypothetical protein	0.0952097003
+UniRef50_UPI00037BBD41: hypothetical protein|unclassified	0.0952097003
+UniRef50_UPI00037100D5: hypothetical protein	0.0952074206
+UniRef50_UPI00037100D5: hypothetical protein|unclassified	0.0952074206
+UniRef50_UPI000289CB1A: major facilitator superfamily protein, partial	0.0952057262
+UniRef50_UPI000289CB1A: major facilitator superfamily protein, partial|unclassified	0.0952057262
+UniRef50_E8S6C5: Transcriptional regulator, HxlR family	0.0951986698
+UniRef50_E8S6C5: Transcriptional regulator, HxlR family|unclassified	0.0951986698
+UniRef50_M7N0E8	0.0951959480
+UniRef50_M7N0E8|unclassified	0.0951959480
+UniRef50_UPI000470F2F7: hypothetical protein	0.0951858551
+UniRef50_UPI000470F2F7: hypothetical protein|unclassified	0.0951858551
+UniRef50_UPI00036933EA: hypothetical protein	0.0951709874
+UniRef50_UPI00036933EA: hypothetical protein|unclassified	0.0951709874
+UniRef50_D5UTR0: Peptidase S15	0.0951708533
+UniRef50_D5UTR0: Peptidase S15|unclassified	0.0951708533
+UniRef50_UPI000429382E: hypothetical protein	0.0951664157
+UniRef50_UPI000429382E: hypothetical protein|unclassified	0.0951664157
+UniRef50_L0R7M9: Major tail sheath protein	0.0951651633
+UniRef50_L0R7M9: Major tail sheath protein|unclassified	0.0951651633
+UniRef50_W4U517: PTS system	0.0951618790
+UniRef50_W4U517: PTS system|unclassified	0.0951618790
+UniRef50_UPI000361064B: hypothetical protein	0.0951587652
+UniRef50_UPI000361064B: hypothetical protein|unclassified	0.0951587652
+UniRef50_W1TXW2: Prophage LambdaSa04, terminase, large subunit	0.0951349921
+UniRef50_W1TXW2: Prophage LambdaSa04, terminase, large subunit|unclassified	0.0951349921
+UniRef50_UPI00040D89D5: sulfate adenylyltransferase	0.0951283471
+UniRef50_UPI00040D89D5: sulfate adenylyltransferase|unclassified	0.0951283471
+UniRef50_UPI00036FA57A: hypothetical protein	0.0951281922
+UniRef50_UPI00036FA57A: hypothetical protein|unclassified	0.0951281922
+UniRef50_Q1J1P5: Phosphopantetheine adenylyltransferase	0.0951236303
+UniRef50_Q1J1P5: Phosphopantetheine adenylyltransferase|unclassified	0.0951236303
+UniRef50_E0Y108: Predicted membrane protein	0.0951232282
+UniRef50_E0Y108: Predicted membrane protein|unclassified	0.0951232282
+UniRef50_C5Y8A7	0.0951191201
+UniRef50_C5Y8A7|unclassified	0.0951191201
+UniRef50_UPI000421C9A2: ATP-dependent helicase	0.0951137988
+UniRef50_UPI000421C9A2: ATP-dependent helicase|unclassified	0.0951137988
+UniRef50_UPI0004015A16: MULTISPECIES: TetR family transcriptional regulator	0.0951104934
+UniRef50_UPI0004015A16: MULTISPECIES: TetR family transcriptional regulator|unclassified	0.0951104934
+UniRef50_D7C445	0.0951085808
+UniRef50_D7C445|unclassified	0.0951085808
+UniRef50_D3UME5: Secreted Cna B-type domain protein	0.0950991413
+UniRef50_D3UME5: Secreted Cna B-type domain protein|unclassified	0.0950991413
+UniRef50_C7CLY8: Pirin-like protein	0.0950950055
+UniRef50_C7CLY8: Pirin-like protein|unclassified	0.0950950055
+UniRef50_R6T8R1: Phosphoglycerate mutase	0.0950876047
+UniRef50_R6T8R1: Phosphoglycerate mutase|unclassified	0.0950876047
+UniRef50_S9QW13	0.0950818469
+UniRef50_S9QW13|unclassified	0.0950818469
+UniRef50_UPI000465D08C: signal peptide protein	0.0950809557
+UniRef50_UPI000465D08C: signal peptide protein|unclassified	0.0950809557
+UniRef50_UPI000377967E: hypothetical protein, partial	0.0950803577
+UniRef50_UPI000377967E: hypothetical protein, partial|unclassified	0.0950803577
+UniRef50_UPI0002DD0626: hypothetical protein	0.0950793065
+UniRef50_UPI0002DD0626: hypothetical protein|unclassified	0.0950793065
+UniRef50_UPI0003B5B2B7: alpha/beta hydrolase	0.0950764494
+UniRef50_UPI0003B5B2B7: alpha/beta hydrolase|unclassified	0.0950764494
+UniRef50_UPI000478B856: C4-dicarboxylate ABC transporter substrate-binding protein	0.0950751801
+UniRef50_UPI000478B856: C4-dicarboxylate ABC transporter substrate-binding protein|unclassified	0.0950751801
+UniRef50_UPI00035D784B: hypothetical protein	0.0950725779
+UniRef50_UPI00035D784B: hypothetical protein|unclassified	0.0950725779
+UniRef50_UPI00035FCD14: hypothetical protein	0.0950710541
+UniRef50_UPI00035FCD14: hypothetical protein|unclassified	0.0950710541
+UniRef50_Q28ST2: Lipoprotein putative	0.0950630208
+UniRef50_Q28ST2: Lipoprotein putative|unclassified	0.0950630208
+UniRef50_C0QG55	0.0950618589
+UniRef50_C0QG55|unclassified	0.0950618589
+UniRef50_UPI0002EB7738: hypothetical protein	0.0950616013
+UniRef50_UPI0002EB7738: hypothetical protein|unclassified	0.0950616013
+UniRef50_Q8YDH1: Putative peptide import ATP-binding protein BMEII0205	0.0950593571
+UniRef50_Q8YDH1: Putative peptide import ATP-binding protein BMEII0205|unclassified	0.0950593571
+UniRef50_UPI0003634918: hypothetical protein, partial	0.0950488678
+UniRef50_UPI0003634918: hypothetical protein, partial|unclassified	0.0950488678
+UniRef50_P0CW53: Nitrogenase molybdenum-iron protein beta chain	0.0950458747
+UniRef50_P0CW53: Nitrogenase molybdenum-iron protein beta chain|unclassified	0.0950458747
+UniRef50_UPI0003B31E13: hydroxyethylthiazole kinase, partial	0.0950442251
+UniRef50_UPI0003B31E13: hydroxyethylthiazole kinase, partial|unclassified	0.0950442251
+UniRef50_N6WWA2	0.0950434220
+UniRef50_N6WWA2|unclassified	0.0950434220
+UniRef50_B0P6B3	0.0950420163
+UniRef50_B0P6B3|unclassified	0.0950420163
+UniRef50_UPI00037BD95E: hypothetical protein, partial	0.0950391574
+UniRef50_UPI00037BD95E: hypothetical protein, partial|unclassified	0.0950391574
+UniRef50_T3S9N3: Radical SAM family protein	0.0950314275
+UniRef50_T3S9N3: Radical SAM family protein|unclassified	0.0950314275
+UniRef50_T6AV21	0.0950309185
+UniRef50_T6AV21|unclassified	0.0950309185
+UniRef50_R5GV02: Secreted protein containing YkuD domain	0.0950294695
+UniRef50_R5GV02: Secreted protein containing YkuD domain|unclassified	0.0950294695
+UniRef50_M7XBI1	0.0950228794
+UniRef50_M7XBI1|unclassified	0.0950228794
+UniRef50_UPI00029AAD61: polyamine ABC transporter substrate-binding protein, partial	0.0950218444
+UniRef50_UPI00029AAD61: polyamine ABC transporter substrate-binding protein, partial|unclassified	0.0950218444
+UniRef50_Q8P0D4: Superoxide dismutase [Mn]	0.0950160157
+UniRef50_Q8P0D4: Superoxide dismutase [Mn]|unclassified	0.0950160157
+UniRef50_K1GGS5	0.0950097669
+UniRef50_K1GGS5|unclassified	0.0950097669
+UniRef50_A0L3B2: Diguanylate cyclase with GAF sensor	0.0949993057
+UniRef50_A0L3B2: Diguanylate cyclase with GAF sensor|unclassified	0.0949993057
+UniRef50_UPI00034BF7E3: hypothetical protein	0.0949953904
+UniRef50_UPI00034BF7E3: hypothetical protein|unclassified	0.0949953904
+UniRef50_L7LNH4	0.0949945717
+UniRef50_L7LNH4|unclassified	0.0949945717
+UniRef50_D4TZ64: Tat pathway signal sequence domain protein	0.0949919323
+UniRef50_D4TZ64: Tat pathway signal sequence domain protein|unclassified	0.0949919323
+UniRef50_Q5FP95: Siroheme synthase	0.0949766495
+UniRef50_Q5FP95: Siroheme synthase|unclassified	0.0949766495
+UniRef50_D7A6Y6	0.0949741197
+UniRef50_D7A6Y6|unclassified	0.0949741197
+UniRef50_M4WWR7: Flagellar hook-length control protein	0.0949704881
+UniRef50_M4WWR7: Flagellar hook-length control protein|unclassified	0.0949704881
+UniRef50_H0P3C6	0.0949631680
+UniRef50_H0P3C6|unclassified	0.0949631680
+UniRef50_UPI000255C12B: transporter	0.0949621674
+UniRef50_UPI000255C12B: transporter|unclassified	0.0949621674
+UniRef50_Q3BVS7	0.0949560967
+UniRef50_Q3BVS7|unclassified	0.0949560967
+UniRef50_UPI00036E0C31: hypothetical protein	0.0949559431
+UniRef50_UPI00036E0C31: hypothetical protein|unclassified	0.0949559431
+UniRef50_Q6ZD36	0.0949462784
+UniRef50_Q6ZD36|unclassified	0.0949462784
+UniRef50_UPI0002DA1508: hypothetical protein	0.0949437159
+UniRef50_UPI0002DA1508: hypothetical protein|unclassified	0.0949437159
+UniRef50_UPI00036A80EA: hypothetical protein	0.0949427553
+UniRef50_UPI00036A80EA: hypothetical protein|unclassified	0.0949427553
+UniRef50_E3F3T4	0.0949402736
+UniRef50_E3F3T4|unclassified	0.0949402736
+UniRef50_Q6AJA8: S-adenosylmethionine:tRNA ribosyltransferase-isomerase	0.0949363915
+UniRef50_Q6AJA8: S-adenosylmethionine:tRNA ribosyltransferase-isomerase|unclassified	0.0949363915
+UniRef50_W0V8P6	0.0949346420
+UniRef50_W0V8P6|unclassified	0.0949346420
+UniRef50_UPI0003C86D1E: PREDICTED: CASP-like protein Os02g0134500-like	0.0949278183
+UniRef50_UPI0003C86D1E: PREDICTED: CASP-like protein Os02g0134500-like|unclassified	0.0949278183
+UniRef50_K2HT62	0.0949177230
+UniRef50_K2HT62|unclassified	0.0949177230
+UniRef50_UPI0003608674: hypothetical protein	0.0949148179
+UniRef50_UPI0003608674: hypothetical protein|unclassified	0.0949148179
+UniRef50_UPI0003689240: hypothetical protein	0.0949129351
+UniRef50_UPI0003689240: hypothetical protein|unclassified	0.0949129351
+UniRef50_I2ZCJ4	0.0949117536
+UniRef50_I2ZCJ4|unclassified	0.0949117536
+UniRef50_UPI00037F393C: hypothetical protein	0.0949087773
+UniRef50_UPI00037F393C: hypothetical protein|unclassified	0.0949087773
+UniRef50_UPI00036C9D0C: hypothetical protein	0.0948989602
+UniRef50_UPI00036C9D0C: hypothetical protein|unclassified	0.0948989602
+UniRef50_A9VTC9: Aspartate carbamoyltransferase	0.0948963793
+UniRef50_A9VTC9: Aspartate carbamoyltransferase|unclassified	0.0948963793
+UniRef50_U4V587	0.0948850131
+UniRef50_U4V587|unclassified	0.0948850131
+UniRef50_Q3JJ67	0.0948786805
+UniRef50_Q3JJ67|unclassified	0.0948786805
+UniRef50_W7WR28: Lactate utilization protein A	0.0948754482
+UniRef50_W7WR28: Lactate utilization protein A|unclassified	0.0948754482
+UniRef50_M9R3M8	0.0948747562
+UniRef50_M9R3M8|unclassified	0.0948747562
+UniRef50_B8ZR90: Quinolinate synthase A	0.0948694232
+UniRef50_B8ZR90: Quinolinate synthase A|unclassified	0.0948694232
+UniRef50_UPI0001850D0C: phosphohydrolase	0.0948644281
+UniRef50_UPI0001850D0C: phosphohydrolase|unclassified	0.0948644281
+UniRef50_UPI00036BAEE5: hypothetical protein, partial	0.0948539667
+UniRef50_UPI00036BAEE5: hypothetical protein, partial|unclassified	0.0948539667
+UniRef50_T2V610: Class II Aldolase and Adducin N-terminal domain protein	0.0948439939
+UniRef50_T2V610: Class II Aldolase and Adducin N-terminal domain protein|unclassified	0.0948439939
+UniRef50_R1BJZ3	0.0948362118
+UniRef50_R1BJZ3|unclassified	0.0948362118
+UniRef50_I8UJ07	0.0948354518
+UniRef50_I8UJ07|unclassified	0.0948354518
+UniRef50_J3HW78: Putative membrane protein (Fragment)	0.0948317926
+UniRef50_J3HW78: Putative membrane protein (Fragment)|unclassified	0.0948317926
+UniRef50_Q5NYZ3: Nitrate/nitrite antiporter	0.0948282640
+UniRef50_Q5NYZ3: Nitrate/nitrite antiporter|unclassified	0.0948282640
+UniRef50_V1LCT1	0.0948243555
+UniRef50_V1LCT1|unclassified	0.0948243555
+UniRef50_UPI00042740A6: hypothetical protein	0.0948205518
+UniRef50_UPI00042740A6: hypothetical protein|unclassified	0.0948205518
+UniRef50_D4ZBQ4	0.0948169446
+UniRef50_D4ZBQ4|unclassified	0.0948169446
+UniRef50_C8S5A2	0.0948165387
+UniRef50_C8S5A2|unclassified	0.0948165387
+UniRef50_C5N291	0.0948077475
+UniRef50_C5N291|unclassified	0.0948077475
+UniRef50_Q27527-2: Isoform b of Enolase	0.0948062746
+UniRef50_Q27527-2: Isoform b of Enolase|unclassified	0.0948062746
+UniRef50_UPI0003B725D2: GntR family transcriptional regulator	0.0947947312
+UniRef50_UPI0003B725D2: GntR family transcriptional regulator|unclassified	0.0947947312
+UniRef50_Q8VRI8	0.0947892648
+UniRef50_Q8VRI8|unclassified	0.0947892648
+UniRef50_O34635: Probable L-serine dehydratase, beta chain	0.0947837424
+UniRef50_O34635: Probable L-serine dehydratase, beta chain|unclassified	0.0947837424
+UniRef50_P45855: Acetyl-CoA acetyltransferase	0.0947837130
+UniRef50_P45855: Acetyl-CoA acetyltransferase|unclassified	0.0947837130
+UniRef50_V1UZX9: Thiamine biosynthesis protein ThiC	0.0947792857
+UniRef50_V1UZX9: Thiamine biosynthesis protein ThiC|unclassified	0.0947792857
+UniRef50_Q8NYL7	0.0947779899
+UniRef50_Q8NYL7|unclassified	0.0947779899
+UniRef50_E1YGX2	0.0947767259
+UniRef50_E1YGX2|unclassified	0.0947767259
+UniRef50_UPI000474B1B0: chromosome replication initiation inhibitor protein	0.0947696351
+UniRef50_UPI000474B1B0: chromosome replication initiation inhibitor protein|unclassified	0.0947696351
+UniRef50_UPI00047856E1: hypothetical protein	0.0947684053
+UniRef50_UPI00047856E1: hypothetical protein|unclassified	0.0947684053
+UniRef50_Q87G35: Putative ABC transporter ATP-binding protein VPA1482	0.0947597045
+UniRef50_Q87G35: Putative ABC transporter ATP-binding protein VPA1482|unclassified	0.0947597045
+UniRef50_UPI000309A525: hypothetical protein	0.0947517622
+UniRef50_UPI000309A525: hypothetical protein|unclassified	0.0947517622
+UniRef50_UPI00047CCD58: hypothetical protein	0.0947514906
+UniRef50_UPI00047CCD58: hypothetical protein|unclassified	0.0947514906
+UniRef50_UPI0004644574: hypothetical protein	0.0947495234
+UniRef50_UPI0004644574: hypothetical protein|unclassified	0.0947495234
+UniRef50_UPI0002484AC1: patatin family phospholipase	0.0947317071
+UniRef50_UPI0002484AC1: patatin family phospholipase|unclassified	0.0947317071
+UniRef50_UPI0003C147C4: PREDICTED: sulfide:quinone oxidoreductase, mitochondrial-like	0.0947265376
+UniRef50_UPI0003C147C4: PREDICTED: sulfide:quinone oxidoreductase, mitochondrial-like|unclassified	0.0947265376
+UniRef50_D4W6X1: HD domain protein	0.0947257635
+UniRef50_D4W6X1: HD domain protein|unclassified	0.0947257635
+UniRef50_UPI00041983D7: hypothetical protein	0.0947246412
+UniRef50_UPI00041983D7: hypothetical protein|unclassified	0.0947246412
+UniRef50_W5X966: Anthranilate synthase component I	0.0947240052
+UniRef50_W5X966: Anthranilate synthase component I|unclassified	0.0947240052
+UniRef50_UPI00037EDB2C: hypothetical protein	0.0947214321
+UniRef50_UPI00037EDB2C: hypothetical protein|unclassified	0.0947214321
+UniRef50_UPI0004708F1A: hypothetical protein	0.0947195189
+UniRef50_UPI0004708F1A: hypothetical protein|unclassified	0.0947195189
+UniRef50_UPI00037E2ED9: hypothetical protein	0.0947194879
+UniRef50_UPI00037E2ED9: hypothetical protein|unclassified	0.0947194879
+UniRef50_X1B0B7: Marine sediment metagenome DNA, contig: S01H4_L06423 (Fragment)	0.0947173512
+UniRef50_X1B0B7: Marine sediment metagenome DNA, contig: S01H4_L06423 (Fragment)|unclassified	0.0947173512
+UniRef50_UPI0003B52B91: histidine kinase	0.0947135648
+UniRef50_UPI0003B52B91: histidine kinase|unclassified	0.0947135648
+UniRef50_UPI00016B1D11: Na+ dependent nucleoside transporter family protein	0.0947028671
+UniRef50_UPI00016B1D11: Na+ dependent nucleoside transporter family protein|unclassified	0.0947028671
+UniRef50_A0AE80: Putative secreted transglycosylase	0.0946948422
+UniRef50_A0AE80: Putative secreted transglycosylase|unclassified	0.0946948422
+UniRef50_W5X5X7: Dihydroorotate dehydrogenase (quinone)	0.0946902367
+UniRef50_W5X5X7: Dihydroorotate dehydrogenase (quinone)|unclassified	0.0946902367
+UniRef50_W9V171	0.0946896755
+UniRef50_W9V171|unclassified	0.0946896755
+UniRef50_UPI00045E4C42: PREDICTED: catechol O-methyltransferase domain-containing protein 1 isoform X1	0.0946885799
+UniRef50_UPI00045E4C42: PREDICTED: catechol O-methyltransferase domain-containing protein 1 isoform X1|unclassified	0.0946885799
+UniRef50_A0A059IPF5	0.0946839125
+UniRef50_A0A059IPF5|unclassified	0.0946839125
+UniRef50_T9W823	0.0946808086
+UniRef50_T9W823|unclassified	0.0946808086
+UniRef50_Q2W7N8	0.0946745453
+UniRef50_Q2W7N8|unclassified	0.0946745453
+UniRef50_C7NH75: Chromosome segregation ATPase	0.0946679634
+UniRef50_C7NH75: Chromosome segregation ATPase|unclassified	0.0946679634
+UniRef50_UPI00047C546B: hypothetical protein	0.0946635574
+UniRef50_UPI00047C546B: hypothetical protein|unclassified	0.0946635574
+UniRef50_R6CTP3	0.0946589171
+UniRef50_R6CTP3|unclassified	0.0946589171
+UniRef50_A0A023HY12	0.0946444355
+UniRef50_A0A023HY12|unclassified	0.0946444355
+UniRef50_N6UXN6: Putative secreted adhesin	0.0946341977
+UniRef50_N6UXN6: Putative secreted adhesin|unclassified	0.0946341977
+UniRef50_UPI0003B4E9FE: membrane protein, partial	0.0946309020
+UniRef50_UPI0003B4E9FE: membrane protein, partial|unclassified	0.0946309020
+UniRef50_B6UBM2	0.0946308119
+UniRef50_B6UBM2|unclassified	0.0946308119
+UniRef50_UPI000364D377: hypothetical protein	0.0946247816
+UniRef50_UPI000364D377: hypothetical protein|unclassified	0.0946247816
+UniRef50_UPI0003B527C3: iron dicitrate transport regulator FecR	0.0946241425
+UniRef50_UPI0003B527C3: iron dicitrate transport regulator FecR|unclassified	0.0946241425
+UniRef50_I7DPA0	0.0946201458
+UniRef50_I7DPA0|unclassified	0.0946201458
+UniRef50_P30526: Anthranilate synthase component 1	0.0946184396
+UniRef50_P30526: Anthranilate synthase component 1|unclassified	0.0946184396
+UniRef50_B7G9C6: Predicted protein	0.0946050119
+UniRef50_B7G9C6: Predicted protein|unclassified	0.0946050119
+UniRef50_W4M8U9	0.0946033840
+UniRef50_W4M8U9|unclassified	0.0946033840
+UniRef50_Q3A0Q8: Type VI secretion system needle sheath protein TssB	0.0945986647
+UniRef50_Q3A0Q8: Type VI secretion system needle sheath protein TssB|unclassified	0.0945986647
+UniRef50_UPI00037169A0: hypothetical protein	0.0945970465
+UniRef50_UPI00037169A0: hypothetical protein|unclassified	0.0945970465
+UniRef50_UPI000466FA46: hypothetical protein	0.0945884302
+UniRef50_UPI000466FA46: hypothetical protein|unclassified	0.0945884302
+UniRef50_UPI000475F2CF: glucose dehydrogenase	0.0945832989
+UniRef50_UPI000475F2CF: glucose dehydrogenase|unclassified	0.0945832989
+UniRef50_UPI00035E6C66: DNA polymerase III subunit epsilon	0.0945734939
+UniRef50_UPI00035E6C66: DNA polymerase III subunit epsilon|unclassified	0.0945734939
+UniRef50_UPI000368DFE3: cytochrome B561, partial	0.0945734819
+UniRef50_UPI000368DFE3: cytochrome B561, partial|unclassified	0.0945734819
+UniRef50_E1QJ60: Terminase	0.0945542265
+UniRef50_E1QJ60: Terminase|unclassified	0.0945542265
+UniRef50_Q3KA29: Major facilitator superfamily MFS_1	0.0945497381
+UniRef50_Q3KA29: Major facilitator superfamily MFS_1|unclassified	0.0945497381
+UniRef50_I6BIU9: Integrase core domain protein	0.0945459236
+UniRef50_I6BIU9: Integrase core domain protein|unclassified	0.0945459236
+UniRef50_UPI0003FA6D6A: serine dehydratase	0.0945288413
+UniRef50_UPI0003FA6D6A: serine dehydratase|unclassified	0.0945288413
+UniRef50_UPI00046ACDD0: hydrolase	0.0945272391
+UniRef50_UPI00046ACDD0: hydrolase|unclassified	0.0945272391
+UniRef50_Q73C41: S-layer protein, putative	0.0945236137
+UniRef50_Q73C41: S-layer protein, putative|unclassified	0.0945236137
+UniRef50_Q894U0: Ethanolamine utilization protein eutJ	0.0945131115
+UniRef50_Q894U0: Ethanolamine utilization protein eutJ|unclassified	0.0945131115
+UniRef50_UPI00037DD654: hypothetical protein	0.0945129808
+UniRef50_UPI00037DD654: hypothetical protein|unclassified	0.0945129808
+UniRef50_A9V0V5: Predicted protein	0.0945121417
+UniRef50_A9V0V5: Predicted protein|unclassified	0.0945121417
+UniRef50_Q2JL74: DNA-directed RNA polymerase subunit alpha	0.0945027535
+UniRef50_Q2JL74: DNA-directed RNA polymerase subunit alpha|unclassified	0.0945027535
+UniRef50_A0A011PJ62: 1,4-alpha-glucan branching enzyme GlgB	0.0945007439
+UniRef50_A0A011PJ62: 1,4-alpha-glucan branching enzyme GlgB|unclassified	0.0945007439
+UniRef50_UPI000467F219: type I secretion protein	0.0944925344
+UniRef50_UPI000467F219: type I secretion protein|unclassified	0.0944925344
+UniRef50_UPI000381DEC2: hypothetical protein	0.0944851198
+UniRef50_UPI000381DEC2: hypothetical protein|unclassified	0.0944851198
+UniRef50_I4ELP3: Peptidase M23	0.0944849088
+UniRef50_I4ELP3: Peptidase M23|unclassified	0.0944849088
+UniRef50_UPI00042B2256: ATP-dependent clp protease ATP-binding subunit clpx isoform 1	0.0944836098
+UniRef50_UPI00042B2256: ATP-dependent clp protease ATP-binding subunit clpx isoform 1|unclassified	0.0944836098
+UniRef50_UPI00036272DD: hypothetical protein	0.0944788298
+UniRef50_UPI00036272DD: hypothetical protein|unclassified	0.0944788298
+UniRef50_Q6MBT2: tRNA dimethylallyltransferase	0.0944749293
+UniRef50_Q6MBT2: tRNA dimethylallyltransferase|unclassified	0.0944749293
+UniRef50_R9PMH9: Membrane protein YedZ	0.0944662184
+UniRef50_R9PMH9: Membrane protein YedZ|unclassified	0.0944662184
+UniRef50_UPI0004702AA7: hypothetical protein	0.0944595710
+UniRef50_UPI0004702AA7: hypothetical protein|unclassified	0.0944595710
+UniRef50_G8AU93	0.0944593381
+UniRef50_G8AU93|unclassified	0.0944593381
+UniRef50_UPI0004702CE7: hypothetical protein, partial	0.0944588686
+UniRef50_UPI0004702CE7: hypothetical protein, partial|unclassified	0.0944588686
+UniRef50_UPI000255F810: TetR family transcriptional regulator	0.0944465594
+UniRef50_UPI000255F810: TetR family transcriptional regulator|unclassified	0.0944465594
+UniRef50_UPI000369FF3F: hypothetical protein	0.0944267938
+UniRef50_UPI000369FF3F: hypothetical protein|unclassified	0.0944267938
+UniRef50_Q1M9P1: Putative transglycosylase SLT domain protein	0.0944152630
+UniRef50_Q1M9P1: Putative transglycosylase SLT domain protein|unclassified	0.0944152630
+UniRef50_UPI0003A01C14: iron ABC transporter permease	0.0944111220
+UniRef50_UPI0003A01C14: iron ABC transporter permease|unclassified	0.0944111220
+UniRef50_UPI000255CA29: dihydrofolate reductase	0.0944063108
+UniRef50_UPI000255CA29: dihydrofolate reductase|unclassified	0.0944063108
+UniRef50_P08967: Phosphoglycerate kinase, glycosomal	0.0944054510
+UniRef50_P08967: Phosphoglycerate kinase, glycosomal|unclassified	0.0944054510
+UniRef50_Q42669: Aconitate hydratase (Fragment)	0.0943966833
+UniRef50_Q42669: Aconitate hydratase (Fragment)|unclassified	0.0943966833
+UniRef50_D1NXY1	0.0943924676
+UniRef50_D1NXY1|unclassified	0.0943924676
+UniRef50_H0DH21	0.0943853740
+UniRef50_H0DH21|unclassified	0.0943853740
+UniRef50_UPI00016C377C: excinuclease ABC subunit A	0.0943844442
+UniRef50_UPI00016C377C: excinuclease ABC subunit A|unclassified	0.0943844442
+UniRef50_U5AZ02	0.0943776947
+UniRef50_U5AZ02|unclassified	0.0943776947
+UniRef50_C7D8L4	0.0943649172
+UniRef50_C7D8L4|unclassified	0.0943649172
+UniRef50_UPI0003B6ABFD: zinc transporter	0.0943641129
+UniRef50_UPI0003B6ABFD: zinc transporter|unclassified	0.0943641129
+UniRef50_Q92LB0: Ribosomal RNA large subunit methyltransferase H	0.0943633332
+UniRef50_Q92LB0: Ribosomal RNA large subunit methyltransferase H|unclassified	0.0943633332
+UniRef50_Q0FGB1	0.0943599382
+UniRef50_Q0FGB1|unclassified	0.0943599382
+UniRef50_UPI0003794B1A: hypothetical protein	0.0943578556
+UniRef50_UPI0003794B1A: hypothetical protein|unclassified	0.0943578556
+UniRef50_UPI000249159B: bacitracin ABC transporter ATP-binding protein	0.0943491867
+UniRef50_UPI000249159B: bacitracin ABC transporter ATP-binding protein|unclassified	0.0943491867
+UniRef50_UPI0003646B08: hypothetical protein	0.0943475305
+UniRef50_UPI0003646B08: hypothetical protein|unclassified	0.0943475305
+UniRef50_Q21YW0: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase	0.0943448031
+UniRef50_Q21YW0: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase|unclassified	0.0943448031
+UniRef50_O06986: LOG family protein YvdD	0.0943429929
+UniRef50_O06986: LOG family protein YvdD|unclassified	0.0943429929
+UniRef50_A0A059INY5	0.0943394896
+UniRef50_A0A059INY5|unclassified	0.0943394896
+UniRef50_W0BHF7: Transcriptional regulator	0.0943388398
+UniRef50_W0BHF7: Transcriptional regulator|unclassified	0.0943388398
+UniRef50_UPI0002558933: hypothetical protein	0.0943353847
+UniRef50_UPI0002558933: hypothetical protein|unclassified	0.0943353847
+UniRef50_O54537: Glucose-6-phosphate 1-dehydrogenase	0.0943250542
+UniRef50_O54537: Glucose-6-phosphate 1-dehydrogenase|unclassified	0.0943250542
+UniRef50_E8TID7	0.0943248922
+UniRef50_E8TID7|unclassified	0.0943248922
+UniRef50_UPI00040AF5DE: MULTISPECIES: hypothetical protein	0.0943231062
+UniRef50_UPI00040AF5DE: MULTISPECIES: hypothetical protein|unclassified	0.0943231062
+UniRef50_UPI00035EE58C: radical SAM protein	0.0943189464
+UniRef50_UPI00035EE58C: radical SAM protein|unclassified	0.0943189464
+UniRef50_V7EMV2	0.0943182364
+UniRef50_V7EMV2|unclassified	0.0943182364
+UniRef50_UPI00036C03B6: hypothetical protein	0.0943129386
+UniRef50_UPI00036C03B6: hypothetical protein|unclassified	0.0943129386
+UniRef50_S5EF10: Membrane protein	0.0943025907
+UniRef50_S5EF10: Membrane protein|unclassified	0.0943025907
+UniRef50_U5QIX4	0.0942939559
+UniRef50_U5QIX4|unclassified	0.0942939559
+UniRef50_UPI0003B70F3D: multidrug ABC transporter ATP-binding protein	0.0942938379
+UniRef50_UPI0003B70F3D: multidrug ABC transporter ATP-binding protein|unclassified	0.0942938379
+UniRef50_UPI00037B2008: hypothetical protein, partial	0.0942899618
+UniRef50_UPI00037B2008: hypothetical protein, partial|unclassified	0.0942899618
+UniRef50_I9M9Y4: Histidine kinase internal region	0.0942835685
+UniRef50_I9M9Y4: Histidine kinase internal region|unclassified	0.0942835685
+UniRef50_O57978: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.0942803076
+UniRef50_O57978: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.0942803076
+UniRef50_Q6N8D2	0.0942751356
+UniRef50_Q6N8D2|unclassified	0.0942751356
+UniRef50_UPI00037A282F: hypothetical protein	0.0942645839
+UniRef50_UPI00037A282F: hypothetical protein|unclassified	0.0942645839
+UniRef50_UPI0003D6F600: PREDICTED: branched-chain-amino-acid aminotransferase, mitochondrial isoform X3	0.0942636028
+UniRef50_UPI0003D6F600: PREDICTED: branched-chain-amino-acid aminotransferase, mitochondrial isoform X3|unclassified	0.0942636028
+UniRef50_UPI0003619046: hypothetical protein	0.0942602470
+UniRef50_UPI0003619046: hypothetical protein|unclassified	0.0942602470
+UniRef50_UPI0003700BFE: hypothetical protein	0.0942598796
+UniRef50_UPI0003700BFE: hypothetical protein|unclassified	0.0942598796
+UniRef50_C1AWM5	0.0942510010
+UniRef50_C1AWM5|unclassified	0.0942510010
+UniRef50_UPI0003768F37: hypothetical protein	0.0942502252
+UniRef50_UPI0003768F37: hypothetical protein|unclassified	0.0942502252
+UniRef50_UPI000309FB82: hypothetical protein	0.0942485888
+UniRef50_UPI000309FB82: hypothetical protein|unclassified	0.0942485888
+UniRef50_UPI0003B3270D: iron ABC transporter ATP-binding protein	0.0942330142
+UniRef50_UPI0003B3270D: iron ABC transporter ATP-binding protein|unclassified	0.0942330142
+UniRef50_UPI00037C59E9: hypothetical protein	0.0942314044
+UniRef50_UPI00037C59E9: hypothetical protein|unclassified	0.0942314044
+UniRef50_UPI00016C0083: phosphodiesterase	0.0942309807
+UniRef50_UPI00016C0083: phosphodiesterase|unclassified	0.0942309807
+UniRef50_B5XPC8: Uridine kinase	0.0942238532
+UniRef50_B5XPC8: Uridine kinase|unclassified	0.0942238532
+UniRef50_Q31E08	0.0942204524
+UniRef50_Q31E08|unclassified	0.0942204524
+UniRef50_G8AVE8	0.0942192903
+UniRef50_G8AVE8|unclassified	0.0942192903
+UniRef50_Q17058: Alpha-glucosidase	0.0942152952
+UniRef50_Q17058: Alpha-glucosidase|unclassified	0.0942152952
+UniRef50_A3K5M1: Esterase EstC, putative	0.0942077474
+UniRef50_A3K5M1: Esterase EstC, putative|unclassified	0.0942077474
+UniRef50_K2DR39	0.0941962145
+UniRef50_K2DR39|unclassified	0.0941962145
+UniRef50_C4V4S9: Peptidase, M23/M37 family	0.0941877039
+UniRef50_C4V4S9: Peptidase, M23/M37 family|unclassified	0.0941877039
+UniRef50_UPI00035C09D9: hypothetical protein	0.0941826168
+UniRef50_UPI00035C09D9: hypothetical protein|unclassified	0.0941826168
+UniRef50_I3BWC4: Lytic murein transglycosylase B	0.0941756849
+UniRef50_I3BWC4: Lytic murein transglycosylase B|unclassified	0.0941756849
+UniRef50_F5L4T3: Sporulation protein YyaC	0.0941756116
+UniRef50_F5L4T3: Sporulation protein YyaC|unclassified	0.0941756116
+UniRef50_Q8FSD6: Uroporphyrinogen decarboxylase	0.0941744176
+UniRef50_Q8FSD6: Uroporphyrinogen decarboxylase|unclassified	0.0941744176
+UniRef50_UPI000365A826: hypothetical protein	0.0941631774
+UniRef50_UPI000365A826: hypothetical protein|unclassified	0.0941631774
+UniRef50_UPI00047B6725: hypothetical protein	0.0941611968
+UniRef50_UPI00047B6725: hypothetical protein|unclassified	0.0941611968
+UniRef50_UPI000471F9AA: hypothetical protein	0.0941597052
+UniRef50_UPI000471F9AA: hypothetical protein|unclassified	0.0941597052
+UniRef50_Q9ZQH0: Dephospho-CoA kinase	0.0941586260
+UniRef50_Q9ZQH0: Dephospho-CoA kinase|unclassified	0.0941586260
+UniRef50_Q8RC29: Non-canonical purine NTP pyrophosphatase	0.0941530999
+UniRef50_Q8RC29: Non-canonical purine NTP pyrophosphatase|unclassified	0.0941530999
+UniRef50_U2RJ61: Flavodoxin-like protein	0.0941486321
+UniRef50_U2RJ61: Flavodoxin-like protein|unclassified	0.0941486321
+UniRef50_H7IMF9: Type II secretory pathway, component PulF	0.0941478278
+UniRef50_H7IMF9: Type II secretory pathway, component PulF|unclassified	0.0941478278
+UniRef50_UPI0003473FE0: hypothetical protein	0.0941459640
+UniRef50_UPI0003473FE0: hypothetical protein|unclassified	0.0941459640
+UniRef50_Q8EUY3: Orotidine 5'-phosphate decarboxylase	0.0941451491
+UniRef50_Q8EUY3: Orotidine 5'-phosphate decarboxylase|unclassified	0.0941451491
+UniRef50_UPI00021A5C77: PREDICTED: elongation factor Ts-like	0.0941415195
+UniRef50_UPI00021A5C77: PREDICTED: elongation factor Ts-like|unclassified	0.0941415195
+UniRef50_E1SQN0: Phosphodiesterase, MJ0936 family	0.0941405045
+UniRef50_E1SQN0: Phosphodiesterase, MJ0936 family|unclassified	0.0941405045
+UniRef50_UPI0003A3CB4C: hypothetical protein	0.0941358878
+UniRef50_UPI0003A3CB4C: hypothetical protein|unclassified	0.0941358878
+UniRef50_UPI0004675867: hypothetical protein	0.0941274744
+UniRef50_UPI0004675867: hypothetical protein|unclassified	0.0941274744
+UniRef50_Q4JV87: LexA repressor	0.0941246786
+UniRef50_Q4JV87: LexA repressor|unclassified	0.0941246786
+UniRef50_UPI00036E9BE1: hypothetical protein	0.0941227971
+UniRef50_UPI00036E9BE1: hypothetical protein|unclassified	0.0941227971
+UniRef50_R5SQR6: Protein BioX	0.0941189336
+UniRef50_R5SQR6: Protein BioX|unclassified	0.0941189336
+UniRef50_Q709D6: Internalin A (Fragment)	0.0941170658
+UniRef50_Q709D6: Internalin A (Fragment)|unclassified	0.0941170658
+UniRef50_M4WS59: FecR, iron siderophore sensor protein	0.0941138686
+UniRef50_M4WS59: FecR, iron siderophore sensor protein|unclassified	0.0941138686
+UniRef50_UPI0003FF6B3B: hypothetical protein	0.0941029123
+UniRef50_UPI0003FF6B3B: hypothetical protein|unclassified	0.0941029123
+UniRef50_Q0D8N0-3: Isoform 3 of DEAD-box ATP-dependent RNA helicase 53	0.0940924719
+UniRef50_Q0D8N0-3: Isoform 3 of DEAD-box ATP-dependent RNA helicase 53|unclassified	0.0940924719
+UniRef50_Q2FRE6: Nucleoside diphosphate kinase	0.0940924599
+UniRef50_Q2FRE6: Nucleoside diphosphate kinase|unclassified	0.0940924599
+UniRef50_UPI000381DE04: hypothetical protein	0.0940878555
+UniRef50_UPI000381DE04: hypothetical protein|unclassified	0.0940878555
+UniRef50_J8TQ37	0.0940869425
+UniRef50_J8TQ37|unclassified	0.0940869425
+UniRef50_UPI00037B077C: hypothetical protein	0.0940805505
+UniRef50_UPI00037B077C: hypothetical protein|unclassified	0.0940805505
+UniRef50_U2UYI4: Raf-like protein	0.0940795371
+UniRef50_U2UYI4: Raf-like protein|unclassified	0.0940795371
+UniRef50_W4VL80: Rhodanese	0.0940743022
+UniRef50_W4VL80: Rhodanese|unclassified	0.0940743022
+UniRef50_Q0FW69: TRAP-T family transporter, DctM (12 TMs) subunit	0.0940700279
+UniRef50_Q0FW69: TRAP-T family transporter, DctM (12 TMs) subunit|unclassified	0.0940700279
+UniRef50_UPI00036A45EE: hypothetical protein, partial	0.0940681496
+UniRef50_UPI00036A45EE: hypothetical protein, partial|unclassified	0.0940681496
+UniRef50_UPI0001B44423: hypothetical protein, partial	0.0940626892
+UniRef50_UPI0001B44423: hypothetical protein, partial|unclassified	0.0940626892
+UniRef50_UPI000374CE33: hypothetical protein, partial	0.0940599942
+UniRef50_UPI000374CE33: hypothetical protein, partial|unclassified	0.0940599942
+UniRef50_T2NPH9: Replication initiator protein A	0.0940542033
+UniRef50_T2NPH9: Replication initiator protein A|unclassified	0.0940542033
+UniRef50_E6RRI1	0.0940516701
+UniRef50_E6RRI1|unclassified	0.0940516701
+UniRef50_F4N7B8: Pirin-like protein PA2418	0.0940410939
+UniRef50_F4N7B8: Pirin-like protein PA2418|unclassified	0.0940410939
+UniRef50_UPI00044126C0: Diaminopimelate epimerase-like protein	0.0940324143
+UniRef50_UPI00044126C0: Diaminopimelate epimerase-like protein|unclassified	0.0940324143
+UniRef50_G5KEZ6	0.0940283645
+UniRef50_G5KEZ6|unclassified	0.0940283645
+UniRef50_UPI0003445B2F: PREDICTED: chemokine-like factor isoform X1	0.0940256590
+UniRef50_UPI0003445B2F: PREDICTED: chemokine-like factor isoform X1|unclassified	0.0940256590
+UniRef50_Q2KWD6: Endoribonuclease YbeY	0.0940206816
+UniRef50_Q2KWD6: Endoribonuclease YbeY|unclassified	0.0940206816
+UniRef50_F5L4I3	0.0940118188
+UniRef50_F5L4I3|unclassified	0.0940118188
+UniRef50_W0N141: DeoR family transcriptional regulator	0.0940052421
+UniRef50_W0N141: DeoR family transcriptional regulator|unclassified	0.0940052421
+UniRef50_UPI00041E031D: riboflavin biosynthesis protein RibD	0.0939989164
+UniRef50_UPI00041E031D: riboflavin biosynthesis protein RibD|unclassified	0.0939989164
+UniRef50_L8GV07	0.0939987543
+UniRef50_L8GV07|unclassified	0.0939987543
+UniRef50_X1PR40: Marine sediment metagenome DNA, contig: S06H3_S14609 (Fragment)	0.0939940949
+UniRef50_X1PR40: Marine sediment metagenome DNA, contig: S06H3_S14609 (Fragment)|unclassified	0.0939940949
+UniRef50_UPI00035E69B3: ferrichrome ABC transporter permease	0.0939918680
+UniRef50_UPI00035E69B3: ferrichrome ABC transporter permease|unclassified	0.0939918680
+UniRef50_P53638: Superoxide dismutase [Fe]	0.0939867156
+UniRef50_P53638: Superoxide dismutase [Fe]|unclassified	0.0939867156
+UniRef50_F2F5B2	0.0939867020
+UniRef50_F2F5B2|unclassified	0.0939867020
+UniRef50_G7W0R8	0.0939807107
+UniRef50_G7W0R8|unclassified	0.0939807107
+UniRef50_V5TES5: AmbI2	0.0939792586
+UniRef50_V5TES5: AmbI2|unclassified	0.0939792586
+UniRef50_R7C8E0: ATPase	0.0939741644
+UniRef50_R7C8E0: ATPase|unclassified	0.0939741644
+UniRef50_I2JGK1: Transport-associated protein	0.0939671678
+UniRef50_I2JGK1: Transport-associated protein|unclassified	0.0939671678
+UniRef50_Q7VQX9: Membrane protein related to metalloendopeptidases	0.0939670513
+UniRef50_Q7VQX9: Membrane protein related to metalloendopeptidases|unclassified	0.0939670513
+UniRef50_UPI0004707FBC: hypothetical protein	0.0939669380
+UniRef50_UPI0004707FBC: hypothetical protein|unclassified	0.0939669380
+UniRef50_K8WUC1: AmiB activator	0.0939586082
+UniRef50_K8WUC1: AmiB activator|unclassified	0.0939586082
+UniRef50_E7UVB3	0.0939557053
+UniRef50_E7UVB3|unclassified	0.0939557053
+UniRef50_I6RFB4	0.0939526351
+UniRef50_I6RFB4|unclassified	0.0939526351
+UniRef50_UPI00041D8F89: hypothetical protein	0.0939489673
+UniRef50_UPI00041D8F89: hypothetical protein|unclassified	0.0939489673
+UniRef50_UPI000289DED6: membrane protein	0.0939415920
+UniRef50_UPI000289DED6: membrane protein|unclassified	0.0939415920
+UniRef50_Q9X5W3: Cyclic pyranopterin monophosphate synthase	0.0939373468
+UniRef50_Q9X5W3: Cyclic pyranopterin monophosphate synthase|unclassified	0.0939373468
+UniRef50_I7DQU0	0.0939371817
+UniRef50_I7DQU0|unclassified	0.0939371817
+UniRef50_UPI0003B441B2: metallo-beta-lactamase, partial	0.0939333449
+UniRef50_UPI0003B441B2: metallo-beta-lactamase, partial|unclassified	0.0939333449
+UniRef50_UPI0003B39B77: RNA polymerase sigma70	0.0939321627
+UniRef50_UPI0003B39B77: RNA polymerase sigma70|unclassified	0.0939321627
+UniRef50_UPI00035DCEDB: hypothetical protein	0.0939314202
+UniRef50_UPI00035DCEDB: hypothetical protein|unclassified	0.0939314202
+UniRef50_Q477A8: UPF0225 protein Reut_A0143	0.0939243312
+UniRef50_Q477A8: UPF0225 protein Reut_A0143|unclassified	0.0939243312
+UniRef50_UPI00047BEA91: hypothetical protein	0.0939198183
+UniRef50_UPI00047BEA91: hypothetical protein|unclassified	0.0939198183
+UniRef50_UPI000470BD2F: hypothetical protein	0.0939161471
+UniRef50_UPI000470BD2F: hypothetical protein|unclassified	0.0939161471
+UniRef50_UPI00037D6127: MULTISPECIES: hypothetical protein	0.0939109938
+UniRef50_UPI00037D6127: MULTISPECIES: hypothetical protein|unclassified	0.0939109938
+UniRef50_H6NK99	0.0939075220
+UniRef50_H6NK99|unclassified	0.0939075220
+UniRef50_A0A024JGU7: Similar to Saccharomyces cerevisiae YCL009C ILV6 Regulatory subunit of acetolactate synthase	0.0939058932
+UniRef50_A0A024JGU7: Similar to Saccharomyces cerevisiae YCL009C ILV6 Regulatory subunit of acetolactate synthase|unclassified	0.0939058932
+UniRef50_UPI000225B229: cyclase	0.0939042961
+UniRef50_UPI000225B229: cyclase|unclassified	0.0939042961
+UniRef50_UPI0003B5DB68: hypothetical protein	0.0939038959
+UniRef50_UPI0003B5DB68: hypothetical protein|unclassified	0.0939038959
+UniRef50_I1AAA6: Fha1 (Fragment)	0.0938996744
+UniRef50_I1AAA6: Fha1 (Fragment)|unclassified	0.0938996744
+UniRef50_UPI000328F6F8: PREDICTED: LOW QUALITY PROTEIN: polycystic kidney disease and receptor for egg jelly-related protein	0.0938988027
+UniRef50_UPI000328F6F8: PREDICTED: LOW QUALITY PROTEIN: polycystic kidney disease and receptor for egg jelly-related protein|unclassified	0.0938988027
+UniRef50_Q06069: Cytochrome P450(MEG)	0.0938947415
+UniRef50_Q06069: Cytochrome P450(MEG)|unclassified	0.0938947415
+UniRef50_I1EHL2	0.0938850148
+UniRef50_I1EHL2|unclassified	0.0938850148
+UniRef50_M5RG65	0.0938823053
+UniRef50_M5RG65|unclassified	0.0938823053
+UniRef50_UPI00039F5A20: type II secretion system protein E	0.0938651152
+UniRef50_UPI00039F5A20: type II secretion system protein E|unclassified	0.0938651152
+UniRef50_A7HME6: Cytidylate kinase	0.0938646721
+UniRef50_A7HME6: Cytidylate kinase|unclassified	0.0938646721
+UniRef50_UPI000366C82C: hypothetical protein	0.0938626366
+UniRef50_UPI000366C82C: hypothetical protein|unclassified	0.0938626366
+UniRef50_A0CNI0: Chromosome undetermined scaffold_22, whole genome shotgun sequence	0.0938618416
+UniRef50_A0CNI0: Chromosome undetermined scaffold_22, whole genome shotgun sequence|unclassified	0.0938618416
+UniRef50_W5XIS1: 50S ribosomal protein L22	0.0938546153
+UniRef50_W5XIS1: 50S ribosomal protein L22|unclassified	0.0938546153
+UniRef50_J9DDF3: DHC, diheme cytochrome c	0.0938520740
+UniRef50_J9DDF3: DHC, diheme cytochrome c|unclassified	0.0938520740
+UniRef50_B5FTC9: HipA domain protein	0.0938486073
+UniRef50_B5FTC9: HipA domain protein|unclassified	0.0938486073
+UniRef50_Q2SBF5	0.0938475769
+UniRef50_Q2SBF5|unclassified	0.0938475769
+UniRef50_UPI000466C767: hypothetical protein	0.0938444332
+UniRef50_UPI000466C767: hypothetical protein|unclassified	0.0938444332
+UniRef50_UPI00045E678F: iron ABC transporter substrate-binding protein	0.0938345123
+UniRef50_UPI00045E678F: iron ABC transporter substrate-binding protein|unclassified	0.0938345123
+UniRef50_UPI000287CAF9: branched-chain alpha-keto acid dehydrogenase subunit E2	0.0938315229
+UniRef50_UPI000287CAF9: branched-chain alpha-keto acid dehydrogenase subunit E2|unclassified	0.0938315229
+UniRef50_A4TM82: Fatty acid oxidation complex subunit alpha	0.0938217156
+UniRef50_A4TM82: Fatty acid oxidation complex subunit alpha|unclassified	0.0938217156
+UniRef50_W8R995: Flagellar hook-length control protein	0.0938164144
+UniRef50_W8R995: Flagellar hook-length control protein|unclassified	0.0938164144
+UniRef50_UPI0004646110: hypothetical protein	0.0938153618
+UniRef50_UPI0004646110: hypothetical protein|unclassified	0.0938153618
+UniRef50_Q3JHH3	0.0938061479
+UniRef50_Q3JHH3|unclassified	0.0938061479
+UniRef50_U6L2Z7	0.0938033154
+UniRef50_U6L2Z7|unclassified	0.0938033154
+UniRef50_UPI00037A95AF: hypothetical protein	0.0938017435
+UniRef50_UPI00037A95AF: hypothetical protein|unclassified	0.0938017435
+UniRef50_B8JA02	0.0937886310
+UniRef50_B8JA02|unclassified	0.0937886310
+UniRef50_G8ASV1	0.0937831813
+UniRef50_G8ASV1|unclassified	0.0937831813
+UniRef50_Q0DV44: Os03g0151000 protein (Fragment)	0.0937803847
+UniRef50_Q0DV44: Os03g0151000 protein (Fragment)|unclassified	0.0937803847
+UniRef50_W7PN25	0.0937770274
+UniRef50_W7PN25|unclassified	0.0937770274
+UniRef50_UPI0000D87061: hypothetical protein CIMG_04565	0.0937641627
+UniRef50_UPI0000D87061: hypothetical protein CIMG_04565|unclassified	0.0937641627
+UniRef50_UPI000414308F: antibiotic ABC transporter ATP-binding protein	0.0937606183
+UniRef50_UPI000414308F: antibiotic ABC transporter ATP-binding protein|unclassified	0.0937606183
+UniRef50_UPI0003644AFD: hypothetical protein	0.0937602102
+UniRef50_UPI0003644AFD: hypothetical protein|unclassified	0.0937602102
+UniRef50_T0K4J9	0.0937524028
+UniRef50_T0K4J9|unclassified	0.0937524028
+UniRef50_C9ZV64	0.0937472219
+UniRef50_C9ZV64|unclassified	0.0937472219
+UniRef50_P73283: 3-oxoacyl-[acyl-carrier-protein] synthase 2	0.0937458198
+UniRef50_P73283: 3-oxoacyl-[acyl-carrier-protein] synthase 2|unclassified	0.0937458198
+UniRef50_UPI000476291E: phosphoribosylanthranilate isomerase	0.0937445108
+UniRef50_UPI000476291E: phosphoribosylanthranilate isomerase|unclassified	0.0937445108
+UniRef50_UPI0003760C41: chemotaxis protein	0.0937298348
+UniRef50_UPI0003760C41: chemotaxis protein|unclassified	0.0937298348
+UniRef50_B8D0V9: Holo-[acyl-carrier-protein] synthase	0.0937197728
+UniRef50_B8D0V9: Holo-[acyl-carrier-protein] synthase|unclassified	0.0937197728
+UniRef50_X0UHQ3: Marine sediment metagenome DNA, contig: S01H1_L09438 (Fragment)	0.0937150427
+UniRef50_X0UHQ3: Marine sediment metagenome DNA, contig: S01H1_L09438 (Fragment)|unclassified	0.0937150427
+UniRef50_B8J637: 8-amino-7-oxononanoate synthase	0.0937118613
+UniRef50_B8J637: 8-amino-7-oxononanoate synthase|unclassified	0.0937118613
+UniRef50_S4RTP3	0.0937115511
+UniRef50_S4RTP3|unclassified	0.0937115511
+UniRef50_R9LN86	0.0937067695
+UniRef50_R9LN86|unclassified	0.0937067695
+UniRef50_P21394: Xylene monooxygenase electron transfer component	0.0936999421
+UniRef50_P21394: Xylene monooxygenase electron transfer component|unclassified	0.0936999421
+UniRef50_H0PY81: Soluble lytic murein transglycosylase	0.0936979808
+UniRef50_H0PY81: Soluble lytic murein transglycosylase|unclassified	0.0936979808
+UniRef50_Q7UNR2: Putative dihydroorotase	0.0936942071
+UniRef50_Q7UNR2: Putative dihydroorotase|unclassified	0.0936942071
+UniRef50_UPI000262CAE3: hypothetical protein	0.0936940812
+UniRef50_UPI000262CAE3: hypothetical protein|unclassified	0.0936940812
+UniRef50_K7A3D9	0.0936928569
+UniRef50_K7A3D9|unclassified	0.0936928569
+UniRef50_UPI0003C13A93: PREDICTED: probable phosphoserine phosphatase-like	0.0936923802
+UniRef50_UPI0003C13A93: PREDICTED: probable phosphoserine phosphatase-like|unclassified	0.0936923802
+UniRef50_Q5WZ02: Pyridoxine/pyridoxamine 5'-phosphate oxidase	0.0936888727
+UniRef50_Q5WZ02: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	0.0936888727
+UniRef50_D4YZI7: Urease accessory protein	0.0936882090
+UniRef50_D4YZI7: Urease accessory protein|unclassified	0.0936882090
+UniRef50_UPI0002E64597: hypothetical protein	0.0936846368
+UniRef50_UPI0002E64597: hypothetical protein|unclassified	0.0936846368
+UniRef50_E3ZM73: Internalin A	0.0936786816
+UniRef50_E3ZM73: Internalin A|unclassified	0.0936786816
+UniRef50_UPI0003662C35: hypothetical protein	0.0936716731
+UniRef50_UPI0003662C35: hypothetical protein|unclassified	0.0936716731
+UniRef50_D5UYQ2: Pyoverdine biosynthesis protein	0.0936647271
+UniRef50_D5UYQ2: Pyoverdine biosynthesis protein|unclassified	0.0936647271
+UniRef50_F4CUS2: Transcriptional regulator, HxlR family	0.0936607570
+UniRef50_F4CUS2: Transcriptional regulator, HxlR family|unclassified	0.0936607570
+UniRef50_O66646: Lipoprotein-releasing system ATP-binding protein LolD	0.0936503543
+UniRef50_O66646: Lipoprotein-releasing system ATP-binding protein LolD|unclassified	0.0936503543
+UniRef50_M4EC72	0.0936455039
+UniRef50_M4EC72|unclassified	0.0936455039
+UniRef50_K0CCX1: Divalent cation transporter	0.0936389953
+UniRef50_K0CCX1: Divalent cation transporter|unclassified	0.0936389953
+UniRef50_UPI00047C6CEB: capsular biosynthesis protein	0.0936371982
+UniRef50_UPI00047C6CEB: capsular biosynthesis protein|unclassified	0.0936371982
+UniRef50_Q3M630: DNA topology modulation protein	0.0936337181
+UniRef50_Q3M630: DNA topology modulation protein|unclassified	0.0936337181
+UniRef50_UPI000471637A: hypothetical protein	0.0936255268
+UniRef50_UPI000471637A: hypothetical protein|unclassified	0.0936255268
+UniRef50_UPI00036FEDB9: hypothetical protein, partial	0.0936217105
+UniRef50_UPI00036FEDB9: hypothetical protein, partial|unclassified	0.0936217105
+UniRef50_O05240: Probable NADH-dependent butanol dehydrogenase 2	0.0936194275
+UniRef50_O05240: Probable NADH-dependent butanol dehydrogenase 2|unclassified	0.0936194275
+UniRef50_UPI0003B33902: hypothetical protein	0.0936189761
+UniRef50_UPI0003B33902: hypothetical protein|unclassified	0.0936189761
+UniRef50_T0SVN0: Putative lysophospholipase	0.0936188413
+UniRef50_T0SVN0: Putative lysophospholipase|unclassified	0.0936188413
+UniRef50_UPI000378ECA4: endonuclease	0.0936111490
+UniRef50_UPI000378ECA4: endonuclease|unclassified	0.0936111490
+UniRef50_K7YUV7: MaoC family protein	0.0936066350
+UniRef50_K7YUV7: MaoC family protein|unclassified	0.0936066350
+UniRef50_UPI00040DC9E5: hypothetical protein	0.0936026601
+UniRef50_UPI00040DC9E5: hypothetical protein|unclassified	0.0936026601
+UniRef50_Q5N8G2	0.0936014557
+UniRef50_Q5N8G2|unclassified	0.0936014557
+UniRef50_V6L4N0	0.0935966347
+UniRef50_V6L4N0|unclassified	0.0935966347
+UniRef50_E6JCE6	0.0935962294
+UniRef50_E6JCE6|unclassified	0.0935962294
+UniRef50_UPI00046948D5: hypothetical protein	0.0935761121
+UniRef50_UPI00046948D5: hypothetical protein|unclassified	0.0935761121
+UniRef50_UPI000472D6A9: hypothetical protein	0.0935750048
+UniRef50_UPI000472D6A9: hypothetical protein|unclassified	0.0935750048
+UniRef50_B1YLN1: Cyclic nucleotide-binding protein	0.0935733280
+UniRef50_B1YLN1: Cyclic nucleotide-binding protein|unclassified	0.0935733280
+UniRef50_UPI0003B4D3AD: chemotaxis protein CheW	0.0935593817
+UniRef50_UPI0003B4D3AD: chemotaxis protein CheW|unclassified	0.0935593817
+UniRef50_UPI000466F07F: phosphogluconate dehydratase	0.0935552201
+UniRef50_UPI000466F07F: phosphogluconate dehydratase|unclassified	0.0935552201
+UniRef50_UPI00036DC1D7: MULTISPECIES: hypothetical protein	0.0935501298
+UniRef50_UPI00036DC1D7: MULTISPECIES: hypothetical protein|unclassified	0.0935501298
+UniRef50_W6K8F6: Glutathione-regulated potassium-efflux system ancillary protein KefF	0.0935492036
+UniRef50_W6K8F6: Glutathione-regulated potassium-efflux system ancillary protein KefF|unclassified	0.0935492036
+UniRef50_UPI000478A5A6: ATPase AAA	0.0935480710
+UniRef50_UPI000478A5A6: ATPase AAA|unclassified	0.0935480710
+UniRef50_E3F2P5	0.0935349891
+UniRef50_E3F2P5|unclassified	0.0935349891
+UniRef50_UPI0003728BB6: hypothetical protein	0.0935344549
+UniRef50_UPI0003728BB6: hypothetical protein|unclassified	0.0935344549
+UniRef50_B9CEG2	0.0935299367
+UniRef50_B9CEG2|unclassified	0.0935299367
+UniRef50_V3P6T3	0.0935235793
+UniRef50_V3P6T3|unclassified	0.0935235793
+UniRef50_UPI00038251B3: hypothetical protein	0.0935166546
+UniRef50_UPI00038251B3: hypothetical protein|unclassified	0.0935166546
+UniRef50_UPI00042A3F7C: hypothetical protein	0.0935138366
+UniRef50_UPI00042A3F7C: hypothetical protein|unclassified	0.0935138366
+UniRef50_UPI000440EE25: PREDICTED: dehydrogenase/reductase SDR family member 7B	0.0935105582
+UniRef50_UPI000440EE25: PREDICTED: dehydrogenase/reductase SDR family member 7B|unclassified	0.0935105582
+UniRef50_UPI0002DA7078: hypothetical protein	0.0935068471
+UniRef50_UPI0002DA7078: hypothetical protein|unclassified	0.0935068471
+UniRef50_UPI00035F9DDC: hypothetical protein	0.0934912885
+UniRef50_UPI00035F9DDC: hypothetical protein|unclassified	0.0934912885
+UniRef50_UPI00037E7199: hypothetical protein, partial	0.0934905203
+UniRef50_UPI00037E7199: hypothetical protein, partial|unclassified	0.0934905203
+UniRef50_X6EJ38	0.0934860274
+UniRef50_X6EJ38|unclassified	0.0934860274
+UniRef50_X0SYL6: Marine sediment metagenome DNA, contig: S01H1_L03313 (Fragment)	0.0934856261
+UniRef50_X0SYL6: Marine sediment metagenome DNA, contig: S01H1_L03313 (Fragment)|unclassified	0.0934856261
+UniRef50_UPI0002897681: 3-oxoadipate enol-lactonase	0.0934803560
+UniRef50_UPI0002897681: 3-oxoadipate enol-lactonase|unclassified	0.0934803560
+UniRef50_P37753: Mannose-1-phosphate guanylyltransferase	0.0934794513
+UniRef50_P37753: Mannose-1-phosphate guanylyltransferase|unclassified	0.0934794513
+UniRef50_UPI00036BEC99: phosphoheptose isomerase	0.0934792389
+UniRef50_UPI00036BEC99: phosphoheptose isomerase|unclassified	0.0934792389
+UniRef50_Q4L5F9: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0934694595
+UniRef50_Q4L5F9: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.0934694595
+UniRef50_UPI000361D6BB: hypothetical protein	0.0934644905
+UniRef50_UPI000361D6BB: hypothetical protein|unclassified	0.0934644905
+UniRef50_UPI00047E3B33: 2-oxoglutarate dehydrogenase	0.0934629584
+UniRef50_UPI00047E3B33: 2-oxoglutarate dehydrogenase|unclassified	0.0934629584
+UniRef50_UPI00047BE6A6: hypothetical protein	0.0934611500
+UniRef50_UPI00047BE6A6: hypothetical protein|unclassified	0.0934611500
+UniRef50_UPI0003114778: hypothetical protein	0.0934546342
+UniRef50_UPI0003114778: hypothetical protein|unclassified	0.0934546342
+UniRef50_UPI00036D78D8: hypothetical protein	0.0934496596
+UniRef50_UPI00036D78D8: hypothetical protein|unclassified	0.0934496596
+UniRef50_X1MKW8: Marine sediment metagenome DNA, contig: S06H3_S02508	0.0934474069
+UniRef50_X1MKW8: Marine sediment metagenome DNA, contig: S06H3_S02508|unclassified	0.0934474069
+UniRef50_J3DJT3: Pyoverdine/dityrosine biosynthesis protein	0.0934473698
+UniRef50_J3DJT3: Pyoverdine/dityrosine biosynthesis protein|unclassified	0.0934473698
+UniRef50_B3QWI1: Porphobilinogen deaminase	0.0934445546
+UniRef50_B3QWI1: Porphobilinogen deaminase|unclassified	0.0934445546
+UniRef50_Q7VRF2: Prolipoprotein diacylglyceryl transferase	0.0934414986
+UniRef50_Q7VRF2: Prolipoprotein diacylglyceryl transferase|unclassified	0.0934414986
+UniRef50_X1BS28: Marine sediment metagenome DNA, contig: S01H4_S00268 (Fragment)	0.0934414017
+UniRef50_X1BS28: Marine sediment metagenome DNA, contig: S01H4_S00268 (Fragment)|unclassified	0.0934414017
+UniRef50_Q6MJ09: DNA-directed RNA polymerase subunit beta	0.0934409349
+UniRef50_Q6MJ09: DNA-directed RNA polymerase subunit beta|unclassified	0.0934409349
+UniRef50_UPI0003755867: hypothetical protein	0.0934392137
+UniRef50_UPI0003755867: hypothetical protein|unclassified	0.0934392137
+UniRef50_UPI00037C5307: hypothetical protein	0.0934345772
+UniRef50_UPI00037C5307: hypothetical protein|unclassified	0.0934345772
+UniRef50_UPI000470D40F: hypothetical protein	0.0934345453
+UniRef50_UPI000470D40F: hypothetical protein|unclassified	0.0934345453
+UniRef50_UPI00047D6AFF: molecular chaperone Hsp33	0.0934269062
+UniRef50_UPI00047D6AFF: molecular chaperone Hsp33|unclassified	0.0934269062
+UniRef50_UPI00021932A5: putative exodeoxyribonuclease, partial	0.0934208692
+UniRef50_UPI00021932A5: putative exodeoxyribonuclease, partial|unclassified	0.0934208692
+UniRef50_UPI000367925C: hypothetical protein	0.0934207444
+UniRef50_UPI000367925C: hypothetical protein|unclassified	0.0934207444
+UniRef50_F9UN92: ADP-dependent (S)-NAD(P)H-hydrate dehydratase	0.0934148413
+UniRef50_F9UN92: ADP-dependent (S)-NAD(P)H-hydrate dehydratase|unclassified	0.0934148413
+UniRef50_UPI00035A2281: PREDICTED: aldehyde dehydrogenase, mitochondrial-like	0.0934019969
+UniRef50_UPI00035A2281: PREDICTED: aldehyde dehydrogenase, mitochondrial-like|unclassified	0.0934019969
+UniRef50_V5XU16: Replication initiator protein A	0.0934003330
+UniRef50_V5XU16: Replication initiator protein A|unclassified	0.0934003330
+UniRef50_UPI00042A32BB: ABC transporter permease	0.0933987900
+UniRef50_UPI00042A32BB: ABC transporter permease|unclassified	0.0933987900
+UniRef50_UPI0004541C3E: PREDICTED: acyl-coenzyme A synthetase ACSM3, mitochondrial-like, partial	0.0933970921
+UniRef50_UPI0004541C3E: PREDICTED: acyl-coenzyme A synthetase ACSM3, mitochondrial-like, partial|unclassified	0.0933970921
+UniRef50_UPI00042812AB: hypothetical protein	0.0933952374
+UniRef50_UPI00042812AB: hypothetical protein|unclassified	0.0933952374
+UniRef50_L1KQL7	0.0933884832
+UniRef50_L1KQL7|unclassified	0.0933884832
+UniRef50_UPI0003731E65: hypothetical protein	0.0933853931
+UniRef50_UPI0003731E65: hypothetical protein|unclassified	0.0933853931
+UniRef50_UPI00047861DB: hypothetical protein	0.0933841322
+UniRef50_UPI00047861DB: hypothetical protein|unclassified	0.0933841322
+UniRef50_D3B4Z2	0.0933786457
+UniRef50_D3B4Z2|unclassified	0.0933786457
+UniRef50_F5VYU2: Bacterial capsule synthesis protein	0.0933761072
+UniRef50_F5VYU2: Bacterial capsule synthesis protein|unclassified	0.0933761072
+UniRef50_UPI000347F8BA: hypothetical protein	0.0933717449
+UniRef50_UPI000347F8BA: hypothetical protein|unclassified	0.0933717449
+UniRef50_UPI000289C441: hypothetical protein	0.0933711576
+UniRef50_UPI000289C441: hypothetical protein|unclassified	0.0933711576
+UniRef50_UPI000329726C: PREDICTED: vegetative cell wall protein gp1-like	0.0933643265
+UniRef50_UPI000329726C: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.0933643265
+UniRef50_UPI00036C10C9: hypothetical protein	0.0933606085
+UniRef50_UPI00036C10C9: hypothetical protein|unclassified	0.0933606085
+UniRef50_UPI000478636E: hypothetical protein	0.0933511528
+UniRef50_UPI000478636E: hypothetical protein|unclassified	0.0933511528
+UniRef50_Q2V0E6: Mucin VNTR16 (Fragment)	0.0933495683
+UniRef50_Q2V0E6: Mucin VNTR16 (Fragment)|unclassified	0.0933495683
+UniRef50_C0PJF1	0.0933492555
+UniRef50_C0PJF1|unclassified	0.0933492555
+UniRef50_A1B817: Transposase IS66	0.0933417013
+UniRef50_A1B817: Transposase IS66|unclassified	0.0933417013
+UniRef50_A5VIC6: Thymidylate kinase	0.0933407438
+UniRef50_A5VIC6: Thymidylate kinase|unclassified	0.0933407438
+UniRef50_G4CKE5: YjbE family integral membrane protein	0.0933352216
+UniRef50_G4CKE5: YjbE family integral membrane protein|unclassified	0.0933352216
+UniRef50_W2UUL5	0.0933110285
+UniRef50_W2UUL5|unclassified	0.0933110285
+UniRef50_A3VFM8	0.0933048717
+UniRef50_A3VFM8|unclassified	0.0933048717
+UniRef50_F3L3B7	0.0933048205
+UniRef50_F3L3B7|unclassified	0.0933048205
+UniRef50_UPI00047742B4: chemotaxis protein CheY	0.0932941472
+UniRef50_UPI00047742B4: chemotaxis protein CheY|unclassified	0.0932941472
+UniRef50_O88958: Glucosamine-6-phosphate isomerase 1	0.0932918298
+UniRef50_O88958: Glucosamine-6-phosphate isomerase 1|unclassified	0.0932918298
+UniRef50_UPI0003B75DE6: fatty acid desaturase	0.0932781462
+UniRef50_UPI0003B75DE6: fatty acid desaturase|unclassified	0.0932781462
+UniRef50_O31714: 1-phosphofructokinase	0.0932770631
+UniRef50_O31714: 1-phosphofructokinase|unclassified	0.0932770631
+UniRef50_S2XHR1	0.0932720287
+UniRef50_S2XHR1|unclassified	0.0932720287
+UniRef50_UPI0004728778: hypothetical protein	0.0932631531
+UniRef50_UPI0004728778: hypothetical protein|unclassified	0.0932631531
+UniRef50_R5YNA1	0.0932617047
+UniRef50_R5YNA1|unclassified	0.0932617047
+UniRef50_UPI000383147C: hypothetical protein M271_01890	0.0932593977
+UniRef50_UPI000383147C: hypothetical protein M271_01890|unclassified	0.0932593977
+UniRef50_UPI0003B68C09: hypothetical protein	0.0932548297
+UniRef50_UPI0003B68C09: hypothetical protein|unclassified	0.0932548297
+UniRef50_I3TPU8	0.0932520511
+UniRef50_I3TPU8|unclassified	0.0932520511
+UniRef50_B2AJ77: Transposase	0.0932499207
+UniRef50_B2AJ77: Transposase|unclassified	0.0932499207
+UniRef50_UPI00038F5924: UPF0173 metal-dependent hydrolase GK2750	0.0932417665
+UniRef50_UPI00038F5924: UPF0173 metal-dependent hydrolase GK2750|unclassified	0.0932417665
+UniRef50_UPI00035049E7: PREDICTED: immediate-early protein IE180-like	0.0932359772
+UniRef50_UPI00035049E7: PREDICTED: immediate-early protein IE180-like|unclassified	0.0932359772
+UniRef50_UPI000364052B: hypothetical protein, partial	0.0932354643
+UniRef50_UPI000364052B: hypothetical protein, partial|unclassified	0.0932354643
+UniRef50_UPI00046EFC50: transcriptional regulator	0.0932344086
+UniRef50_UPI00046EFC50: transcriptional regulator|unclassified	0.0932344086
+UniRef50_UPI000473A452: hypothetical protein, partial	0.0932331387
+UniRef50_UPI000473A452: hypothetical protein, partial|unclassified	0.0932331387
+UniRef50_UPI000365C746: hypothetical protein	0.0932313686
+UniRef50_UPI000365C746: hypothetical protein|unclassified	0.0932313686
+UniRef50_C4JA46	0.0932298048
+UniRef50_C4JA46|unclassified	0.0932298048
+UniRef50_I0DTJ2	0.0932263612
+UniRef50_I0DTJ2|unclassified	0.0932263612
+UniRef50_W5Y940	0.0932224598
+UniRef50_W5Y940|unclassified	0.0932224598
+UniRef50_C5CV54: Rhodanese domain protein	0.0932193592
+UniRef50_C5CV54: Rhodanese domain protein|unclassified	0.0932193592
+UniRef50_C2PXB9: Response regulator aspartate phosphatase	0.0932068287
+UniRef50_C2PXB9: Response regulator aspartate phosphatase|unclassified	0.0932068287
+UniRef50_C6WQE7: Periplasmic binding protein	0.0932047687
+UniRef50_C6WQE7: Periplasmic binding protein|unclassified	0.0932047687
+UniRef50_UPI00036CB2E3: hypothetical protein	0.0931990101
+UniRef50_UPI00036CB2E3: hypothetical protein|unclassified	0.0931990101
+UniRef50_UPI0004778091: ABC transporter substrate-binding protein	0.0931942945
+UniRef50_UPI0004778091: ABC transporter substrate-binding protein|unclassified	0.0931942945
+UniRef50_A4YC85: Protoheme IX farnesyltransferase 2	0.0931942055
+UniRef50_A4YC85: Protoheme IX farnesyltransferase 2|unclassified	0.0931942055
+UniRef50_A6KZD0	0.0931832272
+UniRef50_A6KZD0|unclassified	0.0931832272
+UniRef50_UPI00037E10F1: hypothetical protein	0.0931794869
+UniRef50_UPI00037E10F1: hypothetical protein|unclassified	0.0931794869
+UniRef50_R1BPA7	0.0931766676
+UniRef50_R1BPA7|unclassified	0.0931766676
+UniRef50_F0VEQ3	0.0931749359
+UniRef50_F0VEQ3|unclassified	0.0931749359
+UniRef50_B4V3V7: Lipoprotein	0.0931740126
+UniRef50_B4V3V7: Lipoprotein|unclassified	0.0931740126
+UniRef50_UPI00046416C7: hypothetical protein	0.0931626234
+UniRef50_UPI00046416C7: hypothetical protein|unclassified	0.0931626234
+UniRef50_Q9SRW7: Adenylyl-sulfate kinase 3	0.0931592790
+UniRef50_Q9SRW7: Adenylyl-sulfate kinase 3|unclassified	0.0931592790
+UniRef50_UPI0002375397: NAD-dependent dehydratase	0.0931559120
+UniRef50_UPI0002375397: NAD-dependent dehydratase|unclassified	0.0931559120
+UniRef50_B3CM25: Phosphoglycerate kinase	0.0931557817
+UniRef50_B3CM25: Phosphoglycerate kinase|unclassified	0.0931557817
+UniRef50_UPI0002481BB1: IS21 family transposase	0.0931532485
+UniRef50_UPI0002481BB1: IS21 family transposase|unclassified	0.0931532485
+UniRef50_K0T360	0.0931483298
+UniRef50_K0T360|unclassified	0.0931483298
+UniRef50_D8J4V6	0.0931434299
+UniRef50_D8J4V6|unclassified	0.0931434299
+UniRef50_UPI0003630624: hypothetical protein	0.0931407501
+UniRef50_UPI0003630624: hypothetical protein|unclassified	0.0931407501
+UniRef50_M1Z2C4	0.0931365431
+UniRef50_M1Z2C4|unclassified	0.0931365431
+UniRef50_UPI00036BADB7: hypothetical protein	0.0931170435
+UniRef50_UPI00036BADB7: hypothetical protein|unclassified	0.0931170435
+UniRef50_V5GV45	0.0931104247
+UniRef50_V5GV45|unclassified	0.0931104247
+UniRef50_UPI00046366C4: hypothetical protein	0.0931058389
+UniRef50_UPI00046366C4: hypothetical protein|unclassified	0.0931058389
+UniRef50_A9B518: Ribosomal RNA small subunit methyltransferase H	0.0930922502
+UniRef50_A9B518: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0930922502
+UniRef50_UPI000464379E: DNA mismatch repair protein Vsr	0.0930844363
+UniRef50_UPI000464379E: DNA mismatch repair protein Vsr|unclassified	0.0930844363
+UniRef50_UPI0004722716: hypothetical protein	0.0930637295
+UniRef50_UPI0004722716: hypothetical protein|unclassified	0.0930637295
+UniRef50_Q8G692: Prolipoprotein diacylglyceryl transferase	0.0930554897
+UniRef50_Q8G692: Prolipoprotein diacylglyceryl transferase|unclassified	0.0930554897
+UniRef50_UPI0002E127C9: hypothetical protein	0.0930463650
+UniRef50_UPI0002E127C9: hypothetical protein|unclassified	0.0930463650
+UniRef50_R3TZ40	0.0930429421
+UniRef50_R3TZ40|unclassified	0.0930429421
+UniRef50_UPI000328B72F: PREDICTED: GTP-binding protein 8 isoform 2	0.0930401066
+UniRef50_UPI000328B72F: PREDICTED: GTP-binding protein 8 isoform 2|unclassified	0.0930401066
+UniRef50_UPI0001FFE0D7: large conductance mechanosensitive channel protein	0.0930319279
+UniRef50_UPI0001FFE0D7: large conductance mechanosensitive channel protein|unclassified	0.0930319279
+UniRef50_Q8NSN2: Methionine import ATP-binding protein MetN	0.0930304807
+UniRef50_Q8NSN2: Methionine import ATP-binding protein MetN|unclassified	0.0930304807
+UniRef50_F1YSU2: Folylpolyglutamate Synthase	0.0930235501
+UniRef50_F1YSU2: Folylpolyglutamate Synthase|unclassified	0.0930235501
+UniRef50_UPI00035FF435: hypothetical protein	0.0930166787
+UniRef50_UPI00035FF435: hypothetical protein|unclassified	0.0930166787
+UniRef50_UPI00037611BB: hypothetical protein, partial	0.0930144867
+UniRef50_UPI00037611BB: hypothetical protein, partial|unclassified	0.0930144867
+UniRef50_F5LSR0	0.0930111090
+UniRef50_F5LSR0|unclassified	0.0930111090
+UniRef50_UPI00027FC17F	0.0930059004
+UniRef50_UPI00027FC17F|unclassified	0.0930059004
+UniRef50_UPI0003666434: hypothetical protein	0.0930033821
+UniRef50_UPI0003666434: hypothetical protein|unclassified	0.0930033821
+UniRef50_O68119: Potential D-ribose-binding periplasmic protein	0.0929998181
+UniRef50_O68119: Potential D-ribose-binding periplasmic protein|unclassified	0.0929998181
+UniRef50_A8TTH6	0.0929979824
+UniRef50_A8TTH6|unclassified	0.0929979824
+UniRef50_X0SJ87	0.0929970745
+UniRef50_X0SJ87|unclassified	0.0929970745
+UniRef50_UPI0004636D05: hypothetical protein	0.0929949500
+UniRef50_UPI0004636D05: hypothetical protein|unclassified	0.0929949500
+UniRef50_A8GHE5	0.0929892803
+UniRef50_A8GHE5|unclassified	0.0929892803
+UniRef50_UPI00037BC126: MULTISPECIES: hypothetical protein	0.0929866388
+UniRef50_UPI00037BC126: MULTISPECIES: hypothetical protein|unclassified	0.0929866388
+UniRef50_UPI000472DB2C: hypothetical protein, partial	0.0929719364
+UniRef50_UPI000472DB2C: hypothetical protein, partial|unclassified	0.0929719364
+UniRef50_X1Q9U3: Marine sediment metagenome DNA, contig: S06H3_S18446	0.0929630960
+UniRef50_X1Q9U3: Marine sediment metagenome DNA, contig: S06H3_S18446|unclassified	0.0929630960
+UniRef50_Q647X1	0.0929606084
+UniRef50_Q647X1|unclassified	0.0929606084
+UniRef50_K0TM35	0.0929547276
+UniRef50_K0TM35|unclassified	0.0929547276
+UniRef50_UPI000365275D: hypothetical protein	0.0929533459
+UniRef50_UPI000365275D: hypothetical protein|unclassified	0.0929533459
+UniRef50_Q7MWN4: Elongation factor P 1	0.0929497438
+UniRef50_Q7MWN4: Elongation factor P 1|unclassified	0.0929497438
+UniRef50_Q88HN0: CobW/P47K family protein	0.0929377456
+UniRef50_Q88HN0: CobW/P47K family protein|unclassified	0.0929377456
+UniRef50_UPI0004658DA4: N-acetylmuramoyl-L-alanine amidase	0.0929342641
+UniRef50_UPI0004658DA4: N-acetylmuramoyl-L-alanine amidase|unclassified	0.0929342641
+UniRef50_UPI00045E9E42: hypothetical protein	0.0929333015
+UniRef50_UPI00045E9E42: hypothetical protein|unclassified	0.0929333015
+UniRef50_R7UIW3	0.0929294656
+UniRef50_R7UIW3|unclassified	0.0929294656
+UniRef50_K0TER6	0.0929293489
+UniRef50_K0TER6|unclassified	0.0929293489
+UniRef50_C1DC82	0.0929274012
+UniRef50_C1DC82|unclassified	0.0929274012
+UniRef50_UPI000412C075: allantoinase	0.0929234671
+UniRef50_UPI000412C075: allantoinase|unclassified	0.0929234671
+UniRef50_UPI0003B542C2: enoyl-CoA hydratase	0.0929228111
+UniRef50_UPI0003B542C2: enoyl-CoA hydratase|unclassified	0.0929228111
+UniRef50_UPI00037F4F80: hypothetical protein	0.0929204340
+UniRef50_UPI00037F4F80: hypothetical protein|unclassified	0.0929204340
+UniRef50_UPI0003602146: hypothetical protein	0.0929193373
+UniRef50_UPI0003602146: hypothetical protein|unclassified	0.0929193373
+UniRef50_S3AMS4	0.0929117304
+UniRef50_S3AMS4|unclassified	0.0929117304
+UniRef50_E3EXF1	0.0929109529
+UniRef50_E3EXF1|unclassified	0.0929109529
+UniRef50_A8IMG6	0.0929075530
+UniRef50_A8IMG6|unclassified	0.0929075530
+UniRef50_U4V7Q9	0.0928998875
+UniRef50_U4V7Q9|unclassified	0.0928998875
+UniRef50_T8TBT1	0.0928994408
+UniRef50_T8TBT1|unclassified	0.0928994408
+UniRef50_C0GI87: Sporulation protein YyaC	0.0928962355
+UniRef50_C0GI87: Sporulation protein YyaC|unclassified	0.0928962355
+UniRef50_UPI00035E4836: peptidase	0.0928931853
+UniRef50_UPI00035E4836: peptidase|unclassified	0.0928931853
+UniRef50_A9BQF5: Pirin domain protein	0.0928875277
+UniRef50_A9BQF5: Pirin domain protein|unclassified	0.0928875277
+UniRef50_L0WEU4	0.0928871938
+UniRef50_L0WEU4|unclassified	0.0928871938
+UniRef50_Q2KU87: Phosphoheptose isomerase	0.0928863473
+UniRef50_Q2KU87: Phosphoheptose isomerase|unclassified	0.0928863473
+UniRef50_G6CTE1	0.0928860998
+UniRef50_G6CTE1|unclassified	0.0928860998
+UniRef50_V9VTI4: Sigma factor sigB regulation protein rsbQ	0.0928762161
+UniRef50_V9VTI4: Sigma factor sigB regulation protein rsbQ|unclassified	0.0928762161
+UniRef50_F2E2L6: Predicted protein (Fragment)	0.0928739517
+UniRef50_F2E2L6: Predicted protein (Fragment)|unclassified	0.0928739517
+UniRef50_UPI000474AE63: MerR family transcriptional regulator	0.0928666273
+UniRef50_UPI000474AE63: MerR family transcriptional regulator|unclassified	0.0928666273
+UniRef50_P23145: Probable serine acetyltransferase	0.0928628884
+UniRef50_P23145: Probable serine acetyltransferase|unclassified	0.0928628884
+UniRef50_K2BGA3	0.0928562056
+UniRef50_K2BGA3|unclassified	0.0928562056
+UniRef50_UPI0003B51C8D: 16S rRNA methyltransferase	0.0928534823
+UniRef50_UPI0003B51C8D: 16S rRNA methyltransferase|unclassified	0.0928534823
+UniRef50_M3IAV4: Putative peptidoglycan bound protein (LPXTG motif)	0.0928521332
+UniRef50_M3IAV4: Putative peptidoglycan bound protein (LPXTG motif)|unclassified	0.0928521332
+UniRef50_UPI00035C9C47: hypothetical protein	0.0928480688
+UniRef50_UPI00035C9C47: hypothetical protein|unclassified	0.0928480688
+UniRef50_UPI000463B4EA: carnitine dehydratase	0.0928439568
+UniRef50_UPI000463B4EA: carnitine dehydratase|unclassified	0.0928439568
+UniRef50_A1SMY9: Uroporphyrinogen decarboxylase	0.0928302311
+UniRef50_A1SMY9: Uroporphyrinogen decarboxylase|unclassified	0.0928302311
+UniRef50_UPI0003B5AD2E: pilus assembly protein PilP	0.0928290810
+UniRef50_UPI0003B5AD2E: pilus assembly protein PilP|unclassified	0.0928290810
+UniRef50_UPI00037BA844: hypothetical protein	0.0928290542
+UniRef50_UPI00037BA844: hypothetical protein|unclassified	0.0928290542
+UniRef50_Q6AEL0: Non-canonical purine NTP pyrophosphatase	0.0928272322
+UniRef50_Q6AEL0: Non-canonical purine NTP pyrophosphatase|unclassified	0.0928272322
+UniRef50_UPI0002F5CF5E: hypothetical protein	0.0928264404
+UniRef50_UPI0002F5CF5E: hypothetical protein|unclassified	0.0928264404
+UniRef50_UPI000469FAF7: hypothetical protein	0.0928226827
+UniRef50_UPI000469FAF7: hypothetical protein|unclassified	0.0928226827
+UniRef50_F6EYK8: Peptidase M23	0.0928080104
+UniRef50_F6EYK8: Peptidase M23|unclassified	0.0928080104
+UniRef50_T0UAH5: Substrate-specific component CbrT of predicted cobalamin ECF transporter	0.0927965000
+UniRef50_T0UAH5: Substrate-specific component CbrT of predicted cobalamin ECF transporter|unclassified	0.0927965000
+UniRef50_U3B280	0.0927892264
+UniRef50_U3B280|unclassified	0.0927892264
+UniRef50_UPI00036637FB: MULTISPECIES: hypothetical protein	0.0927858314
+UniRef50_UPI00036637FB: MULTISPECIES: hypothetical protein|unclassified	0.0927858314
+UniRef50_UPI0003666F64: hypothetical protein	0.0927838466
+UniRef50_UPI0003666F64: hypothetical protein|unclassified	0.0927838466
+UniRef50_UPI000262D62D: glucose-6-phosphate 1-dehydrogenase, partial	0.0927715478
+UniRef50_UPI000262D62D: glucose-6-phosphate 1-dehydrogenase, partial|unclassified	0.0927715478
+UniRef50_UPI0003B61D7D: carbon-nitrogen hydrolase	0.0927533205
+UniRef50_UPI0003B61D7D: carbon-nitrogen hydrolase|unclassified	0.0927533205
+UniRef50_A0A010QT92	0.0927512883
+UniRef50_A0A010QT92|unclassified	0.0927512883
+UniRef50_F7Y2F0	0.0927498940
+UniRef50_F7Y2F0|unclassified	0.0927498940
+UniRef50_UPI000367C0E4: hypothetical protein, partial	0.0927411668
+UniRef50_UPI000367C0E4: hypothetical protein, partial|unclassified	0.0927411668
+UniRef50_UPI0003B5DE4C: ABC transporter	0.0927321599
+UniRef50_UPI0003B5DE4C: ABC transporter|unclassified	0.0927321599
+UniRef50_R6AC18: YbbR-like protein	0.0927284893
+UniRef50_R6AC18: YbbR-like protein|unclassified	0.0927284893
+UniRef50_K3Y9P6	0.0927275685
+UniRef50_K3Y9P6|unclassified	0.0927275685
+UniRef50_UPI000365D34C: hypothetical protein	0.0927242086
+UniRef50_UPI000365D34C: hypothetical protein|unclassified	0.0927242086
+UniRef50_UPI0003A0AEC4: hypothetical protein	0.0927196990
+UniRef50_UPI0003A0AEC4: hypothetical protein|unclassified	0.0927196990
+UniRef50_Q1GGG2: Mammalian cell entry related	0.0927045812
+UniRef50_Q1GGG2: Mammalian cell entry related|unclassified	0.0927045812
+UniRef50_UPI00047A4E99: CoA-transferase	0.0927034438
+UniRef50_UPI00047A4E99: CoA-transferase|unclassified	0.0927034438
+UniRef50_UPI000378C192: hypothetical protein	0.0926971864
+UniRef50_UPI000378C192: hypothetical protein|unclassified	0.0926971864
+UniRef50_C3G708: Phage replication protein	0.0926961173
+UniRef50_C3G708: Phage replication protein|unclassified	0.0926961173
+UniRef50_W5XAX1: RNA polymerase, sigma-24 subunit, ECF subfamily	0.0926943751
+UniRef50_W5XAX1: RNA polymerase, sigma-24 subunit, ECF subfamily|unclassified	0.0926943751
+UniRef50_UPI000359B741: PREDICTED: heparan sulfate glucosamine 3-O-sulfotransferase 3A1-like	0.0926818433
+UniRef50_UPI000359B741: PREDICTED: heparan sulfate glucosamine 3-O-sulfotransferase 3A1-like|unclassified	0.0926818433
+UniRef50_UPI00031A4703: hypothetical protein	0.0926750209
+UniRef50_UPI00031A4703: hypothetical protein|unclassified	0.0926750209
+UniRef50_UPI00047B4C81: rod shape-determining protein MreB	0.0926706846
+UniRef50_UPI00047B4C81: rod shape-determining protein MreB|unclassified	0.0926706846
+UniRef50_UPI0002C66230	0.0926692061
+UniRef50_UPI0002C66230|unclassified	0.0926692061
+UniRef50_UPI00038094F8: amidohydrolase	0.0926691252
+UniRef50_UPI00038094F8: amidohydrolase|unclassified	0.0926691252
+UniRef50_UPI0003753634: hypothetical protein	0.0926690785
+UniRef50_UPI0003753634: hypothetical protein|unclassified	0.0926690785
+UniRef50_UPI0003686D0B: hypothetical protein	0.0926587875
+UniRef50_UPI0003686D0B: hypothetical protein|unclassified	0.0926587875
+UniRef50_T0THE1: TPR-repeat-containing protein	0.0926522763
+UniRef50_T0THE1: TPR-repeat-containing protein|unclassified	0.0926522763
+UniRef50_UPI00016C456C: GDP-fucose synthetase, partial	0.0926463833
+UniRef50_UPI00016C456C: GDP-fucose synthetase, partial|unclassified	0.0926463833
+UniRef50_I6XYY5: Periplasmic-binding protein	0.0926306078
+UniRef50_I6XYY5: Periplasmic-binding protein|unclassified	0.0926306078
+UniRef50_UPI0003B6E2B1: serine 3-dehydrogenase	0.0926242173
+UniRef50_UPI0003B6E2B1: serine 3-dehydrogenase|unclassified	0.0926242173
+UniRef50_E3A417	0.0926235423
+UniRef50_E3A417|unclassified	0.0926235423
+UniRef50_UPI00035CB5E5: hypothetical protein	0.0926206521
+UniRef50_UPI00035CB5E5: hypothetical protein|unclassified	0.0926206521
+UniRef50_A9IIR2	0.0926183093
+UniRef50_A9IIR2|unclassified	0.0926183093
+UniRef50_K2K7C7	0.0926079540
+UniRef50_K2K7C7|unclassified	0.0926079540
+UniRef50_B1LSE6: Magnesium chelatase accessory protein	0.0926040053
+UniRef50_B1LSE6: Magnesium chelatase accessory protein|unclassified	0.0926040053
+UniRef50_UPI00035D9CD4: hypothetical protein	0.0926012951
+UniRef50_UPI00035D9CD4: hypothetical protein|unclassified	0.0926012951
+UniRef50_A0A059BVZ3	0.0925995041
+UniRef50_A0A059BVZ3|unclassified	0.0925995041
+UniRef50_D2QXC4: Magnesium protoporphyrin chelatase, putative	0.0925949381
+UniRef50_D2QXC4: Magnesium protoporphyrin chelatase, putative|unclassified	0.0925949381
+UniRef50_V7EZK6: Short-chain dehydrogenase	0.0925909591
+UniRef50_V7EZK6: Short-chain dehydrogenase|unclassified	0.0925909591
+UniRef50_UPI000464EC64: glucan biosynthesis protein G	0.0925902971
+UniRef50_UPI000464EC64: glucan biosynthesis protein G|unclassified	0.0925902971
+UniRef50_UPI0003C7B9A1: hypothetical protein	0.0925891207
+UniRef50_UPI0003C7B9A1: hypothetical protein|unclassified	0.0925891207
+UniRef50_X5MDF7: Thioesterase family protein domain protein	0.0925793619
+UniRef50_X5MDF7: Thioesterase family protein domain protein|unclassified	0.0925793619
+UniRef50_UPI0003BCF281: PREDICTED: caiB/baiF CoA-transferase family protein C7orf10 homolog isoform X2	0.0925792478
+UniRef50_UPI0003BCF281: PREDICTED: caiB/baiF CoA-transferase family protein C7orf10 homolog isoform X2|unclassified	0.0925792478
+UniRef50_UPI0004216EAC: tRNA delta(2)-isopentenylpyrophosphate transferase	0.0925756046
+UniRef50_UPI0004216EAC: tRNA delta(2)-isopentenylpyrophosphate transferase|unclassified	0.0925756046
+UniRef50_C5BH50	0.0925697748
+UniRef50_C5BH50|unclassified	0.0925697748
+UniRef50_Q7M8B8: MEMBRANE PROTEIN	0.0925676546
+UniRef50_Q7M8B8: MEMBRANE PROTEIN|unclassified	0.0925676546
+UniRef50_UPI000372ED7A: hypothetical protein	0.0925669316
+UniRef50_UPI000372ED7A: hypothetical protein|unclassified	0.0925669316
+UniRef50_Q9KRQ1: Catalase	0.0925602326
+UniRef50_Q9KRQ1: Catalase|unclassified	0.0925602326
+UniRef50_R7N4P8	0.0925586133
+UniRef50_R7N4P8|unclassified	0.0925586133
+UniRef50_L0GU19	0.0925575720
+UniRef50_L0GU19|unclassified	0.0925575720
+UniRef50_P59019: 3-isopropylmalate dehydratase small subunit	0.0925466101
+UniRef50_P59019: 3-isopropylmalate dehydratase small subunit|unclassified	0.0925466101
+UniRef50_UPI0002377ACD: calcium binding hemolysin protein	0.0925418033
+UniRef50_UPI0002377ACD: calcium binding hemolysin protein|unclassified	0.0925418033
+UniRef50_C7R8E0: Rhodanese domain protein	0.0925406040
+UniRef50_C7R8E0: Rhodanese domain protein|unclassified	0.0925406040
+UniRef50_V9ZW95: Rhodanese domain-containing protein	0.0925363861
+UniRef50_V9ZW95: Rhodanese domain-containing protein|unclassified	0.0925363861
+UniRef50_K1SYP9: Phosphatidylserine/phosphatidylglycerophosphate/ cardiolipin synthase (Fragment)	0.0925322701
+UniRef50_K1SYP9: Phosphatidylserine/phosphatidylglycerophosphate/ cardiolipin synthase (Fragment)|unclassified	0.0925322701
+UniRef50_R1EQ15	0.0925234328
+UniRef50_R1EQ15|unclassified	0.0925234328
+UniRef50_C0F8A8	0.0925166395
+UniRef50_C0F8A8|unclassified	0.0925166395
+UniRef50_D5RSP6	0.0925137863
+UniRef50_D5RSP6|unclassified	0.0925137863
+UniRef50_UPI00038086DE: hypothetical protein	0.0925136497
+UniRef50_UPI00038086DE: hypothetical protein|unclassified	0.0925136497
+UniRef50_A1AYU5	0.0925131307
+UniRef50_A1AYU5|unclassified	0.0925131307
+UniRef50_F1ZZ71	0.0925083953
+UniRef50_F1ZZ71|unclassified	0.0925083953
+UniRef50_UPI0004697116: hypothetical protein	0.0925074942
+UniRef50_UPI0004697116: hypothetical protein|unclassified	0.0925074942
+UniRef50_H8HZQ6: Soj family protein	0.0925038267
+UniRef50_H8HZQ6: Soj family protein|unclassified	0.0925038267
+UniRef50_U6LWE1	0.0924970225
+UniRef50_U6LWE1|unclassified	0.0924970225
+UniRef50_UPI00016B2085: alpha amylase, catalytic region	0.0924882336
+UniRef50_UPI00016B2085: alpha amylase, catalytic region|unclassified	0.0924882336
+UniRef50_C1KYP9: Prolipoprotein diacylglyceryl transferase	0.0924795799
+UniRef50_C1KYP9: Prolipoprotein diacylglyceryl transferase|unclassified	0.0924795799
+UniRef50_UPI000455D24C: hypothetical protein CONPUDRAFT_123135	0.0924774351
+UniRef50_UPI000455D24C: hypothetical protein CONPUDRAFT_123135|unclassified	0.0924774351
+UniRef50_B9Y5A8: L-ribulose-5-phosphate 3-epimerase	0.0924728485
+UniRef50_B9Y5A8: L-ribulose-5-phosphate 3-epimerase|unclassified	0.0924728485
+UniRef50_UPI00037EC88A: hypothetical protein	0.0924711425
+UniRef50_UPI00037EC88A: hypothetical protein|unclassified	0.0924711425
+UniRef50_UPI00047D437C: cobalamin adenosyltransferase	0.0924655369
+UniRef50_UPI00047D437C: cobalamin adenosyltransferase|unclassified	0.0924655369
+UniRef50_UPI000299FFB6: 50S ribosomal protein L6	0.0924641851
+UniRef50_UPI000299FFB6: 50S ribosomal protein L6|unclassified	0.0924641851
+UniRef50_C6S560	0.0924607848
+UniRef50_C6S560|unclassified	0.0924607848
+UniRef50_W9BF86: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	0.0924605837
+UniRef50_W9BF86: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome|unclassified	0.0924605837
+UniRef50_P96595	0.0924603786
+UniRef50_P96595|unclassified	0.0924603786
+UniRef50_UPI0002D31730: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase	0.0924589293
+UniRef50_UPI0002D31730: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase|unclassified	0.0924589293
+UniRef50_UPI000262CE7B: glutathione peroxidase	0.0924547790
+UniRef50_UPI000262CE7B: glutathione peroxidase|unclassified	0.0924547790
+UniRef50_UPI000289A77B: CAAX amino terminal protease family protein	0.0924544890
+UniRef50_UPI000289A77B: CAAX amino terminal protease family protein|unclassified	0.0924544890
+UniRef50_UPI0003B4119A: Xaa-Pro dipeptidase	0.0924512304
+UniRef50_UPI0003B4119A: Xaa-Pro dipeptidase|unclassified	0.0924512304
+UniRef50_T1JDG9	0.0924477650
+UniRef50_T1JDG9|unclassified	0.0924477650
+UniRef50_N4VJX5	0.0924447011
+UniRef50_N4VJX5|unclassified	0.0924447011
+UniRef50_S5YCR4: Flagellar basal body rod modification protein	0.0924354706
+UniRef50_S5YCR4: Flagellar basal body rod modification protein|unclassified	0.0924354706
+UniRef50_UPI000359A7EA: PREDICTED: multidrug resistance protein 1-like, partial	0.0924278763
+UniRef50_UPI000359A7EA: PREDICTED: multidrug resistance protein 1-like, partial|unclassified	0.0924278763
+UniRef50_K4L1M9: Type 4 fimbrial biogenesis protein PilP	0.0924247227
+UniRef50_K4L1M9: Type 4 fimbrial biogenesis protein PilP|unclassified	0.0924247227
+UniRef50_UPI0003B46265: DnaA initiator-associating protein DiaA	0.0924238621
+UniRef50_UPI0003B46265: DnaA initiator-associating protein DiaA|unclassified	0.0924238621
+UniRef50_UPI00046A51CF: hypothetical protein	0.0924235256
+UniRef50_UPI00046A51CF: hypothetical protein|unclassified	0.0924235256
+UniRef50_UPI0003B3959D: hypothetical protein	0.0924217640
+UniRef50_UPI0003B3959D: hypothetical protein|unclassified	0.0924217640
+UniRef50_UPI000406056C: membrane protein	0.0924168482
+UniRef50_UPI000406056C: membrane protein|unclassified	0.0924168482
+UniRef50_A8FBE4	0.0924110818
+UniRef50_A8FBE4|unclassified	0.0924110818
+UniRef50_Q930T2: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase 1	0.0923981993
+UniRef50_Q930T2: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase 1|unclassified	0.0923981993
+UniRef50_B1YIG9: Beta-lactamase domain protein	0.0923970125
+UniRef50_B1YIG9: Beta-lactamase domain protein|unclassified	0.0923970125
+UniRef50_UPI000262C9F7: malonyl CoA-ACP transacylase	0.0923942939
+UniRef50_UPI000262C9F7: malonyl CoA-ACP transacylase|unclassified	0.0923942939
+UniRef50_K2MST1: C4-dicarboxylate transport system permease small protein	0.0923905172
+UniRef50_K2MST1: C4-dicarboxylate transport system permease small protein|unclassified	0.0923905172
+UniRef50_UPI00037CDEB1: hypothetical protein	0.0923875835
+UniRef50_UPI00037CDEB1: hypothetical protein|unclassified	0.0923875835
+UniRef50_K0TMF4	0.0923874541
+UniRef50_K0TMF4|unclassified	0.0923874541
+UniRef50_UPI00036A3779: hypothetical protein, partial	0.0923873776
+UniRef50_UPI00036A3779: hypothetical protein, partial|unclassified	0.0923873776
+UniRef50_E8N2F4: Ethanolamine utilization protein EutJ	0.0923751801
+UniRef50_E8N2F4: Ethanolamine utilization protein EutJ|unclassified	0.0923751801
+UniRef50_UPI0003B6520F: iron ABC transporter permease	0.0923708575
+UniRef50_UPI0003B6520F: iron ABC transporter permease|unclassified	0.0923708575
+UniRef50_UPI00046A6791: hypothetical protein	0.0923672456
+UniRef50_UPI00046A6791: hypothetical protein|unclassified	0.0923672456
+UniRef50_X2MTK2	0.0923654608
+UniRef50_X2MTK2|unclassified	0.0923654608
+UniRef50_C1N3N2: Predicted protein	0.0923539261
+UniRef50_C1N3N2: Predicted protein|unclassified	0.0923539261
+UniRef50_UPI00047C11D0: hypothetical protein	0.0923337858
+UniRef50_UPI00047C11D0: hypothetical protein|unclassified	0.0923337858
+UniRef50_UPI000464400B: hypothetical protein	0.0923202867
+UniRef50_UPI000464400B: hypothetical protein|unclassified	0.0923202867
+UniRef50_UPI0004545C86: PREDICTED: neutral and basic amino acid transport protein rBAT-like, partial	0.0923197322
+UniRef50_UPI0004545C86: PREDICTED: neutral and basic amino acid transport protein rBAT-like, partial|unclassified	0.0923197322
+UniRef50_R5L9M5: Glycine radical domain protein	0.0923192818
+UniRef50_R5L9M5: Glycine radical domain protein|unclassified	0.0923192818
+UniRef50_UPI00036FD1C5: hypothetical protein	0.0923186280
+UniRef50_UPI00036FD1C5: hypothetical protein|unclassified	0.0923186280
+UniRef50_E3HVH3	0.0923038712
+UniRef50_E3HVH3|unclassified	0.0923038712
+UniRef50_Q1RK99: Guanylate kinase	0.0922979221
+UniRef50_Q1RK99: Guanylate kinase|unclassified	0.0922979221
+UniRef50_UPI00046EC94F: hypothetical protein	0.0922921707
+UniRef50_UPI00046EC94F: hypothetical protein|unclassified	0.0922921707
+UniRef50_A0A010R9J1	0.0922908751
+UniRef50_A0A010R9J1|unclassified	0.0922908751
+UniRef50_UPI00047DDBCA: molecular chaperone DnaJ	0.0922840199
+UniRef50_UPI00047DDBCA: molecular chaperone DnaJ|unclassified	0.0922840199
+UniRef50_A0A017HI16: Putative inner membrane protein	0.0922817020
+UniRef50_A0A017HI16: Putative inner membrane protein|unclassified	0.0922817020
+UniRef50_C7RBC3	0.0922716977
+UniRef50_C7RBC3|unclassified	0.0922716977
+UniRef50_D7A713: NnrUfamily protein	0.0922691907
+UniRef50_D7A713: NnrUfamily protein|unclassified	0.0922691907
+UniRef50_UPI00036BE930: hypothetical protein	0.0922678680
+UniRef50_UPI00036BE930: hypothetical protein|unclassified	0.0922678680
+UniRef50_UPI0002194F7D: amino acid transporter, partial	0.0922676867
+UniRef50_UPI0002194F7D: amino acid transporter, partial|unclassified	0.0922676867
+UniRef50_UPI0002DC7239: hypothetical protein	0.0922672028
+UniRef50_UPI0002DC7239: hypothetical protein|unclassified	0.0922672028
+UniRef50_UPI00036424EE: hypothetical protein, partial	0.0922584031
+UniRef50_UPI00036424EE: hypothetical protein, partial|unclassified	0.0922584031
+UniRef50_D1CE71: Rhodanese domain protein	0.0922486512
+UniRef50_D1CE71: Rhodanese domain protein|unclassified	0.0922486512
+UniRef50_UPI0003A41BA8: succinate-semialdehyde dehdyrogenase	0.0922446277
+UniRef50_UPI0003A41BA8: succinate-semialdehyde dehdyrogenase|unclassified	0.0922446277
+UniRef50_UPI000329F912: PREDICTED: mucin-19-like	0.0922350928
+UniRef50_UPI000329F912: PREDICTED: mucin-19-like|unclassified	0.0922350928
+UniRef50_A5WGQ7: Periplasmic protein-like protein	0.0922332116
+UniRef50_A5WGQ7: Periplasmic protein-like protein|unclassified	0.0922332116
+UniRef50_U4L3W8	0.0922292670
+UniRef50_U4L3W8|unclassified	0.0922292670
+UniRef50_UPI000462852D: hypothetical protein	0.0922239305
+UniRef50_UPI000462852D: hypothetical protein|unclassified	0.0922239305
+UniRef50_K0MIY8	0.0922214298
+UniRef50_K0MIY8|unclassified	0.0922214298
+UniRef50_UPI00036C2D64: hypothetical protein	0.0922169624
+UniRef50_UPI00036C2D64: hypothetical protein|unclassified	0.0922169624
+UniRef50_B0KMS2	0.0922038807
+UniRef50_B0KMS2|unclassified	0.0922038807
+UniRef50_G2FNE1: Excinuclease ABC subunit A	0.0921968616
+UniRef50_G2FNE1: Excinuclease ABC subunit A|unclassified	0.0921968616
+UniRef50_UPI00047157BA: MFS transporter	0.0921928696
+UniRef50_UPI00047157BA: MFS transporter|unclassified	0.0921928696
+UniRef50_F3Z7L3: Putative ATP/GTP binding protein	0.0921881325
+UniRef50_F3Z7L3: Putative ATP/GTP binding protein|unclassified	0.0921881325
+UniRef50_X0W259: Marine sediment metagenome DNA, contig: S01H1_S19872	0.0921822398
+UniRef50_X0W259: Marine sediment metagenome DNA, contig: S01H1_S19872|unclassified	0.0921822398
+UniRef50_V1XUZ0	0.0921813901
+UniRef50_V1XUZ0|unclassified	0.0921813901
+UniRef50_UPI0003B7B918: GntR family transcriptional regulator	0.0921527965
+UniRef50_UPI0003B7B918: GntR family transcriptional regulator|unclassified	0.0921527965
+UniRef50_X0QB24	0.0921496733
+UniRef50_X0QB24|unclassified	0.0921496733
+UniRef50_L0MCX9	0.0921434600
+UniRef50_L0MCX9|unclassified	0.0921434600
+UniRef50_UPI000362B8D4: hypothetical protein	0.0921376519
+UniRef50_UPI000362B8D4: hypothetical protein|unclassified	0.0921376519
+UniRef50_UPI0002376566: hypothetical protein, partial	0.0921192100
+UniRef50_UPI0002376566: hypothetical protein, partial|unclassified	0.0921192100
+UniRef50_UPI0003815981: hypothetical protein	0.0921173303
+UniRef50_UPI0003815981: hypothetical protein|unclassified	0.0921173303
+UniRef50_A8IQG0	0.0921014933
+UniRef50_A8IQG0|unclassified	0.0921014933
+UniRef50_UPI0003B77441: ABC transporter substrate-binding protein	0.0920889457
+UniRef50_UPI0003B77441: ABC transporter substrate-binding protein|unclassified	0.0920889457
+UniRef50_UPI0004686618: hypothetical protein	0.0920852065
+UniRef50_UPI0004686618: hypothetical protein|unclassified	0.0920852065
+UniRef50_UPI0002FD0224: hypothetical protein	0.0920832156
+UniRef50_UPI0002FD0224: hypothetical protein|unclassified	0.0920832156
+UniRef50_Q2RJQ5: Transcriptional regulator/antitoxin, MazE	0.0920790587
+UniRef50_Q2RJQ5: Transcriptional regulator/antitoxin, MazE|unclassified	0.0920790587
+UniRef50_C5X1W4	0.0920726469
+UniRef50_C5X1W4|unclassified	0.0920726469
+UniRef50_Q4QLF6: D-alanine--D-alanine ligase	0.0920661086
+UniRef50_Q4QLF6: D-alanine--D-alanine ligase|unclassified	0.0920661086
+UniRef50_C5QSP4: Putative HTH-type transcriptional regulator MalR	0.0920636003
+UniRef50_C5QSP4: Putative HTH-type transcriptional regulator MalR|unclassified	0.0920636003
+UniRef50_UPI0003B7B4C4: ABC transporter	0.0920601819
+UniRef50_UPI0003B7B4C4: ABC transporter|unclassified	0.0920601819
+UniRef50_UPI0003813F91: hypothetical protein	0.0920518672
+UniRef50_UPI0003813F91: hypothetical protein|unclassified	0.0920518672
+UniRef50_UPI000318D32F: hypothetical protein	0.0920489082
+UniRef50_UPI000318D32F: hypothetical protein|unclassified	0.0920489082
+UniRef50_UPI0002260024: winged helix family two component transcriptional regulator	0.0920471870
+UniRef50_UPI0002260024: winged helix family two component transcriptional regulator|unclassified	0.0920471870
+UniRef50_Q7XX07: OSJNBa0079F16.12 protein	0.0920390128
+UniRef50_Q7XX07: OSJNBa0079F16.12 protein|unclassified	0.0920390128
+UniRef50_UPI0003725CB2: hypothetical protein	0.0920280279
+UniRef50_UPI0003725CB2: hypothetical protein|unclassified	0.0920280279
+UniRef50_A0A037ZPF9: Aldo/keto reductase	0.0920270474
+UniRef50_A0A037ZPF9: Aldo/keto reductase|unclassified	0.0920270474
+UniRef50_Q11H34: Phage portal protein, HK97 family	0.0920220380
+UniRef50_Q11H34: Phage portal protein, HK97 family|unclassified	0.0920220380
+UniRef50_UPI0003B7975C: lytic transglycosylase	0.0920107156
+UniRef50_UPI0003B7975C: lytic transglycosylase|unclassified	0.0920107156
+UniRef50_A1TWB6: Diguanylate cyclase	0.0920032729
+UniRef50_A1TWB6: Diguanylate cyclase|unclassified	0.0920032729
+UniRef50_X1WZH2	0.0919829815
+UniRef50_X1WZH2|unclassified	0.0919829815
+UniRef50_Q28RD7	0.0919825113
+UniRef50_Q28RD7|unclassified	0.0919825113
+UniRef50_P14953: Anthranilate synthase component 1	0.0919816256
+UniRef50_P14953: Anthranilate synthase component 1|unclassified	0.0919816256
+UniRef50_UPI0002628A97: redoxin	0.0919644318
+UniRef50_UPI0002628A97: redoxin|unclassified	0.0919644318
+UniRef50_UPI000411833A: amine oxidase	0.0919611640
+UniRef50_UPI000411833A: amine oxidase|unclassified	0.0919611640
+UniRef50_UPI0003600C20: hypothetical protein	0.0919605091
+UniRef50_UPI0003600C20: hypothetical protein|unclassified	0.0919605091
+UniRef50_UPI0003AA2F1C: 3-phosphoglycerate dehydrogenase	0.0919570457
+UniRef50_UPI0003AA2F1C: 3-phosphoglycerate dehydrogenase|unclassified	0.0919570457
+UniRef50_UPI000399284A: PREDICTED: serine/arginine-rich splicing factor 4-like, partial	0.0919404411
+UniRef50_UPI000399284A: PREDICTED: serine/arginine-rich splicing factor 4-like, partial|unclassified	0.0919404411
+UniRef50_S9QWZ3	0.0919329951
+UniRef50_S9QWZ3|unclassified	0.0919329951
+UniRef50_U3QXL8: Carbon monoxide dehydrogenase	0.0919310203
+UniRef50_U3QXL8: Carbon monoxide dehydrogenase|unclassified	0.0919310203
+UniRef50_UPI000478076E: resolvase	0.0919250281
+UniRef50_UPI000478076E: resolvase|unclassified	0.0919250281
+UniRef50_UPI000050FD81: peptide ABC transporter permease	0.0919194360
+UniRef50_UPI000050FD81: peptide ABC transporter permease|unclassified	0.0919194360
+UniRef50_C3PHK3: Aminomethyltransferase	0.0919183680
+UniRef50_C3PHK3: Aminomethyltransferase|unclassified	0.0919183680
+UniRef50_UPI000376059F: hypothetical protein	0.0919159541
+UniRef50_UPI000376059F: hypothetical protein|unclassified	0.0919159541
+UniRef50_R6J4S5: Putative topology modulation protein	0.0919139152
+UniRef50_R6J4S5: Putative topology modulation protein|unclassified	0.0919139152
+UniRef50_C5X2E0	0.0919117313
+UniRef50_C5X2E0|unclassified	0.0919117313
+UniRef50_K2FX44	0.0918933217
+UniRef50_K2FX44|unclassified	0.0918933217
+UniRef50_Y7UI87: Serine-rich adhesin for platelets	0.0918813548
+UniRef50_Y7UI87: Serine-rich adhesin for platelets|unclassified	0.0918813548
+UniRef50_L7BT17	0.0918805078
+UniRef50_L7BT17|unclassified	0.0918805078
+UniRef50_K7X7R7	0.0918765083
+UniRef50_K7X7R7|unclassified	0.0918765083
+UniRef50_UPI00026529B7: PREDICTED: protein enabled homolog isoform 2	0.0918724375
+UniRef50_UPI00026529B7: PREDICTED: protein enabled homolog isoform 2|unclassified	0.0918724375
+UniRef50_R7R0J4: CobQ/CobB/MinD/ParA nucleotide binding domain protein	0.0918713404
+UniRef50_R7R0J4: CobQ/CobB/MinD/ParA nucleotide binding domain protein|unclassified	0.0918713404
+UniRef50_A5D5I2: DNA-directed RNA polymerase subunit beta	0.0918652916
+UniRef50_A5D5I2: DNA-directed RNA polymerase subunit beta|unclassified	0.0918652916
+UniRef50_C1DCG0: Bacteriophage P2-related tail formation protein	0.0918595869
+UniRef50_C1DCG0: Bacteriophage P2-related tail formation protein|unclassified	0.0918595869
+UniRef50_UPI0003722744: hypothetical protein	0.0918581693
+UniRef50_UPI0003722744: hypothetical protein|unclassified	0.0918581693
+UniRef50_Q48JJ4: Membrane protein, putative	0.0918576151
+UniRef50_Q48JJ4: Membrane protein, putative|unclassified	0.0918576151
+UniRef50_UPI000466A47B: peptide ABC transporter ATP-binding protein	0.0918471619
+UniRef50_UPI000466A47B: peptide ABC transporter ATP-binding protein|unclassified	0.0918471619
+UniRef50_UPI000288F986: enoyl-CoA hydratase/isomerase	0.0918368785
+UniRef50_UPI000288F986: enoyl-CoA hydratase/isomerase|unclassified	0.0918368785
+UniRef50_Q6MIR4: NADH-quinone oxidoreductase subunit B	0.0918290783
+UniRef50_Q6MIR4: NADH-quinone oxidoreductase subunit B|unclassified	0.0918290783
+UniRef50_UPI00047CE41F: cobyrinic acid ac-diamide synthase	0.0918201445
+UniRef50_UPI00047CE41F: cobyrinic acid ac-diamide synthase|unclassified	0.0918201445
+UniRef50_H0BPI5	0.0918195892
+UniRef50_H0BPI5|unclassified	0.0918195892
+UniRef50_UPI000360ED21: hypothetical protein	0.0918178661
+UniRef50_UPI000360ED21: hypothetical protein|unclassified	0.0918178661
+UniRef50_UPI00026257C4: hypothetical protein	0.0918173035
+UniRef50_UPI00026257C4: hypothetical protein|unclassified	0.0918173035
+UniRef50_Q7XQY1: OSJNBb0108J11.10 protein	0.0918171118
+UniRef50_Q7XQY1: OSJNBb0108J11.10 protein|unclassified	0.0918171118
+UniRef50_UPI00047C4A13: hypothetical protein	0.0918135809
+UniRef50_UPI00047C4A13: hypothetical protein|unclassified	0.0918135809
+UniRef50_Q9RVP6: Phosphoenolpyruvate carboxykinase [ATP]	0.0918106588
+UniRef50_Q9RVP6: Phosphoenolpyruvate carboxykinase [ATP]|unclassified	0.0918106588
+UniRef50_Q1AX09: Imidazoleglycerol-phosphate dehydratase	0.0918063989
+UniRef50_Q1AX09: Imidazoleglycerol-phosphate dehydratase|unclassified	0.0918063989
+UniRef50_K6XJ40: Benzene glycol dehydrogenase	0.0918057262
+UniRef50_K6XJ40: Benzene glycol dehydrogenase|unclassified	0.0918057262
+UniRef50_R7QMH9: Stackhouse genomic scaffold, scaffold_50	0.0918045533
+UniRef50_R7QMH9: Stackhouse genomic scaffold, scaffold_50|unclassified	0.0918045533
+UniRef50_Q67NP3: Phosphatidylserine decarboxylase proenzyme	0.0918045257
+UniRef50_Q67NP3: Phosphatidylserine decarboxylase proenzyme|unclassified	0.0918045257
+UniRef50_UPI000364BADD: hypothetical protein	0.0918023743
+UniRef50_UPI000364BADD: hypothetical protein|unclassified	0.0918023743
+UniRef50_F7YHP7: Short-chain dehydrogenase/reductase SDR	0.0917864547
+UniRef50_F7YHP7: Short-chain dehydrogenase/reductase SDR|unclassified	0.0917864547
+UniRef50_UPI0004686D1F: hypothetical protein	0.0917829306
+UniRef50_UPI0004686D1F: hypothetical protein|unclassified	0.0917829306
+UniRef50_UPI00032B0AF2: PREDICTED: alcohol dehydrogenase class-3	0.0917803838
+UniRef50_UPI00032B0AF2: PREDICTED: alcohol dehydrogenase class-3|unclassified	0.0917803838
+UniRef50_Q9JVD1: N-(5'-phosphoribosyl)anthranilate isomerase	0.0917733165
+UniRef50_Q9JVD1: N-(5'-phosphoribosyl)anthranilate isomerase|unclassified	0.0917733165
+UniRef50_J1EC68: Lysophospholipase	0.0917675627
+UniRef50_J1EC68: Lysophospholipase|unclassified	0.0917675627
+UniRef50_UPI000369F380: hypothetical protein	0.0917675217
+UniRef50_UPI000369F380: hypothetical protein|unclassified	0.0917675217
+UniRef50_UPI00029A46E0: mutator protein	0.0917640315
+UniRef50_UPI00029A46E0: mutator protein|unclassified	0.0917640315
+UniRef50_UPI00030EA904: hypothetical protein	0.0917638135
+UniRef50_UPI00030EA904: hypothetical protein|unclassified	0.0917638135
+UniRef50_W1E8W6: Serine transporter	0.0917631343
+UniRef50_W1E8W6: Serine transporter|unclassified	0.0917631343
+UniRef50_UPI0002627393: heme exporter protein, partial	0.0917564320
+UniRef50_UPI0002627393: heme exporter protein, partial|unclassified	0.0917564320
+UniRef50_UPI0003B582FA: PTS fructose transporter subunit IIA	0.0917399690
+UniRef50_UPI0003B582FA: PTS fructose transporter subunit IIA|unclassified	0.0917399690
+UniRef50_UPI00036E98A9: hypothetical protein	0.0917346317
+UniRef50_UPI00036E98A9: hypothetical protein|unclassified	0.0917346317
+UniRef50_UPI000366D2A8: hypothetical protein	0.0917313187
+UniRef50_UPI000366D2A8: hypothetical protein|unclassified	0.0917313187
+UniRef50_UPI00047B87BE: hypothetical protein	0.0917260760
+UniRef50_UPI00047B87BE: hypothetical protein|unclassified	0.0917260760
+UniRef50_V6IWC3: Membrane protein	0.0917253021
+UniRef50_V6IWC3: Membrane protein|unclassified	0.0917253021
+UniRef50_B1ZRT0: NADH-quinone oxidoreductase subunit D 1	0.0917204545
+UniRef50_B1ZRT0: NADH-quinone oxidoreductase subunit D 1|unclassified	0.0917204545
+UniRef50_P37780: dTDP-4-dehydrorhamnose 3,5-epimerase	0.0917204199
+UniRef50_P37780: dTDP-4-dehydrorhamnose 3,5-epimerase|unclassified	0.0917204199
+UniRef50_UPI000477E85D: hypothetical protein	0.0917181575
+UniRef50_UPI000477E85D: hypothetical protein|unclassified	0.0917181575
+UniRef50_Q0KE68: Cyclic pyranopterin monophosphate synthase accessory protein	0.0917071793
+UniRef50_Q0KE68: Cyclic pyranopterin monophosphate synthase accessory protein|unclassified	0.0917071793
+UniRef50_UPI00040D18DD: glutamyl-tRNA reductase	0.0917044325
+UniRef50_UPI00040D18DD: glutamyl-tRNA reductase|unclassified	0.0917044325
+UniRef50_U4TMQ3	0.0917027191
+UniRef50_U4TMQ3|unclassified	0.0917027191
+UniRef50_UPI0003B56D8A: NUDIX hydrolase	0.0916984213
+UniRef50_UPI0003B56D8A: NUDIX hydrolase|unclassified	0.0916984213
+UniRef50_K1Z0I8: Integral membrane protein MviN	0.0916983082
+UniRef50_K1Z0I8: Integral membrane protein MviN|unclassified	0.0916983082
+UniRef50_R7L614	0.0916924690
+UniRef50_R7L614|unclassified	0.0916924690
+UniRef50_Q9LXS7: Citrate synthase 1, peroxisomal	0.0916891298
+UniRef50_Q9LXS7: Citrate synthase 1, peroxisomal|unclassified	0.0916891298
+UniRef50_Q2VP64	0.0916844816
+UniRef50_Q2VP64|unclassified	0.0916844816
+UniRef50_UPI000466D918: multidrug ABC transporter ATP-binding protein	0.0916751654
+UniRef50_UPI000466D918: multidrug ABC transporter ATP-binding protein|unclassified	0.0916751654
+UniRef50_UPI000371C267: hypothetical protein, partial	0.0916732225
+UniRef50_UPI000371C267: hypothetical protein, partial|unclassified	0.0916732225
+UniRef50_UPI0003B386C6: hypothetical protein	0.0916716684
+UniRef50_UPI0003B386C6: hypothetical protein|unclassified	0.0916716684
+UniRef50_G7T9S3: Hemolysin	0.0916712038
+UniRef50_G7T9S3: Hemolysin|unclassified	0.0916712038
+UniRef50_P26392: dTDP-4-dehydrorhamnose reductase	0.0916554808
+UniRef50_P26392: dTDP-4-dehydrorhamnose reductase|unclassified	0.0916554808
+UniRef50_E5AUE1: Hypothetical cytosolic protein	0.0916503624
+UniRef50_E5AUE1: Hypothetical cytosolic protein|unclassified	0.0916503624
+UniRef50_Q48404: Fusaric acid detoxification protein	0.0916496369
+UniRef50_Q48404: Fusaric acid detoxification protein|unclassified	0.0916496369
+UniRef50_UPI0003B56C0F: hypothetical protein	0.0916460435
+UniRef50_UPI0003B56C0F: hypothetical protein|unclassified	0.0916460435
+UniRef50_UPI00039E9EC7: ABC transporter	0.0916430397
+UniRef50_UPI00039E9EC7: ABC transporter|unclassified	0.0916430397
+UniRef50_UPI000347EC3A: cell division protein FtsW	0.0916362500
+UniRef50_UPI000347EC3A: cell division protein FtsW|unclassified	0.0916362500
+UniRef50_F2U5F6	0.0916297944
+UniRef50_F2U5F6|unclassified	0.0916297944
+UniRef50_UPI00039BDF61: Fis family transcriptional regulator	0.0916199863
+UniRef50_UPI00039BDF61: Fis family transcriptional regulator|unclassified	0.0916199863
+UniRef50_F0YET4	0.0916145859
+UniRef50_F0YET4|unclassified	0.0916145859
+UniRef50_UPI0003606986: MULTISPECIES: hypothetical protein	0.0916109390
+UniRef50_UPI0003606986: MULTISPECIES: hypothetical protein|unclassified	0.0916109390
+UniRef50_D5ASW8	0.0915950425
+UniRef50_D5ASW8|unclassified	0.0915950425
+UniRef50_K0CEX2: Integral membrane protein	0.0915726603
+UniRef50_K0CEX2: Integral membrane protein|unclassified	0.0915726603
+UniRef50_UPI0003B37FBA: triosephosphate isomerase	0.0915725312
+UniRef50_UPI0003B37FBA: triosephosphate isomerase|unclassified	0.0915725312
+UniRef50_UPI000403140D: hypothetical protein	0.0915692676
+UniRef50_UPI000403140D: hypothetical protein|unclassified	0.0915692676
+UniRef50_UPI000370F07C: hypothetical protein	0.0915600624
+UniRef50_UPI000370F07C: hypothetical protein|unclassified	0.0915600624
+UniRef50_UPI00036F21B0: hypothetical protein	0.0915541138
+UniRef50_UPI00036F21B0: hypothetical protein|unclassified	0.0915541138
+UniRef50_UPI000308AFC8: hypothetical protein	0.0915491121
+UniRef50_UPI000308AFC8: hypothetical protein|unclassified	0.0915491121
+UniRef50_UPI0003B7737B: transcriptional regulator	0.0915483316
+UniRef50_UPI0003B7737B: transcriptional regulator|unclassified	0.0915483316
+UniRef50_L7C7S0	0.0915425077
+UniRef50_L7C7S0|unclassified	0.0915425077
+UniRef50_F0ZD24	0.0915406202
+UniRef50_F0ZD24|unclassified	0.0915406202
+UniRef50_UPI0004689248: hypothetical protein	0.0915401876
+UniRef50_UPI0004689248: hypothetical protein|unclassified	0.0915401876
+UniRef50_UPI00037B10ED: hypothetical protein	0.0915394317
+UniRef50_UPI00037B10ED: hypothetical protein|unclassified	0.0915394317
+UniRef50_W4YMZ7	0.0915311801
+UniRef50_W4YMZ7|unclassified	0.0915311801
+UniRef50_V7EPL9	0.0915291954
+UniRef50_V7EPL9|unclassified	0.0915291954
+UniRef50_K7VAT5	0.0915268203
+UniRef50_K7VAT5|unclassified	0.0915268203
+UniRef50_B1KTX4	0.0915226917
+UniRef50_B1KTX4|unclassified	0.0915226917
+UniRef50_UPI0002554C30: ribonucleoside-triphosphate reductase activating protein	0.0915197200
+UniRef50_UPI0002554C30: ribonucleoside-triphosphate reductase activating protein|unclassified	0.0915197200
+UniRef50_UPI0003B68271: PREDICTED: ras-responsive element-binding protein 1-like	0.0915133236
+UniRef50_UPI0003B68271: PREDICTED: ras-responsive element-binding protein 1-like|unclassified	0.0915133236
+UniRef50_UPI0003C1315E	0.0915116453
+UniRef50_UPI0003C1315E|unclassified	0.0915116453
+UniRef50_UPI00037BAFA5: hypothetical protein	0.0915097836
+UniRef50_UPI00037BAFA5: hypothetical protein|unclassified	0.0915097836
+UniRef50_G7LX15: Putative prophage protein	0.0915094893
+UniRef50_G7LX15: Putative prophage protein|unclassified	0.0915094893
+UniRef50_UPI00037AA1C6: hypothetical protein	0.0915069924
+UniRef50_UPI00037AA1C6: hypothetical protein|unclassified	0.0915069924
+UniRef50_Q2RYK8	0.0915061272
+UniRef50_Q2RYK8|unclassified	0.0915061272
+UniRef50_UPI00046CAF68: hypothetical protein	0.0915038751
+UniRef50_UPI00046CAF68: hypothetical protein|unclassified	0.0915038751
+UniRef50_R5Q6L7	0.0915006580
+UniRef50_R5Q6L7|unclassified	0.0915006580
+UniRef50_UPI0002490F12: alcohol dehydrogenase	0.0914933967
+UniRef50_UPI0002490F12: alcohol dehydrogenase|unclassified	0.0914933967
+UniRef50_A7N452: Peptidase M23	0.0914888434
+UniRef50_A7N452: Peptidase M23|unclassified	0.0914888434
+UniRef50_UPI0003C1AC12: PREDICTED: aldehyde dehydrogenase family 2 member B7, mitochondrial-like	0.0914886670
+UniRef50_UPI0003C1AC12: PREDICTED: aldehyde dehydrogenase family 2 member B7, mitochondrial-like|unclassified	0.0914886670
+UniRef50_R5RFI6	0.0914824808
+UniRef50_R5RFI6|unclassified	0.0914824808
+UniRef50_G8AMI7	0.0914799268
+UniRef50_G8AMI7|unclassified	0.0914799268
+UniRef50_UPI000477A741: AraC family transcriptional regulator	0.0914780858
+UniRef50_UPI000477A741: AraC family transcriptional regulator|unclassified	0.0914780858
+UniRef50_UPI000462F0A6: sodium:dicarboxylate symporter, partial	0.0914746102
+UniRef50_UPI000462F0A6: sodium:dicarboxylate symporter, partial|unclassified	0.0914746102
+UniRef50_UPI000476452D: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase	0.0914726866
+UniRef50_UPI000476452D: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|unclassified	0.0914726866
+UniRef50_UPI00046D19B8: guanine deaminase	0.0914725260
+UniRef50_UPI00046D19B8: guanine deaminase|unclassified	0.0914725260
+UniRef50_P52032: Phospholipid hydroperoxide glutathione peroxidase 1, chloroplastic	0.0914718597
+UniRef50_P52032: Phospholipid hydroperoxide glutathione peroxidase 1, chloroplastic|unclassified	0.0914718597
+UniRef50_UPI0003B4C933: peptide ABC transporter permease	0.0914663716
+UniRef50_UPI0003B4C933: peptide ABC transporter permease|unclassified	0.0914663716
+UniRef50_Q47NN7: Uroporphyrinogen decarboxylase	0.0914645399
+UniRef50_Q47NN7: Uroporphyrinogen decarboxylase|unclassified	0.0914645399
+UniRef50_UPI0003ACFD18: hypothetical protein	0.0914635394
+UniRef50_UPI0003ACFD18: hypothetical protein|unclassified	0.0914635394
+UniRef50_G9I0B7	0.0914635287
+UniRef50_G9I0B7|unclassified	0.0914635287
+UniRef50_UPI00035131EF: PREDICTED: glycerol-3-phosphate dehydrogenase, mitochondrial-like isoform X4	0.0914621184
+UniRef50_UPI00035131EF: PREDICTED: glycerol-3-phosphate dehydrogenase, mitochondrial-like isoform X4|unclassified	0.0914621184
+UniRef50_D0KJE3: Periplasmic binding protein	0.0914566636
+UniRef50_D0KJE3: Periplasmic binding protein|unclassified	0.0914566636
+UniRef50_K0DCG0	0.0914545618
+UniRef50_K0DCG0|unclassified	0.0914545618
+UniRef50_V2JBI9	0.0914505835
+UniRef50_V2JBI9|unclassified	0.0914505835
+UniRef50_UPI0002626B3F: ABC transporter	0.0914476898
+UniRef50_UPI0002626B3F: ABC transporter|unclassified	0.0914476898
+UniRef50_C4XXF9	0.0914473396
+UniRef50_C4XXF9|unclassified	0.0914473396
+UniRef50_D4DTB5: Acetyl xylan esterase (AXE1)	0.0914369635
+UniRef50_D4DTB5: Acetyl xylan esterase (AXE1)|unclassified	0.0914369635
+UniRef50_UPI00029B3E2F: replication factor A	0.0914363229
+UniRef50_UPI00029B3E2F: replication factor A|unclassified	0.0914363229
+UniRef50_C1CY79: Putative capsular polysaccharide synthesis enzyme CapM	0.0914333645
+UniRef50_C1CY79: Putative capsular polysaccharide synthesis enzyme CapM|unclassified	0.0914333645
+UniRef50_UPI000376538D: hypothetical protein	0.0914287741
+UniRef50_UPI000376538D: hypothetical protein|unclassified	0.0914287741
+UniRef50_A9ME36: NnrS family protein	0.0914248200
+UniRef50_A9ME36: NnrS family protein|unclassified	0.0914248200
+UniRef50_UPI0003DEC72F: PREDICTED: band 7 protein AGAP004871-like isoform X6	0.0914243567
+UniRef50_UPI0003DEC72F: PREDICTED: band 7 protein AGAP004871-like isoform X6|unclassified	0.0914243567
+UniRef50_H5T0P5: Maltose ABC transporter substrate binding protein	0.0914191047
+UniRef50_H5T0P5: Maltose ABC transporter substrate binding protein|unclassified	0.0914191047
+UniRef50_R7IZS7: Excinuclease ABC A subunit	0.0914185568
+UniRef50_R7IZS7: Excinuclease ABC A subunit|unclassified	0.0914185568
+UniRef50_G2SQN0: Metallophosphoesterase	0.0914095695
+UniRef50_G2SQN0: Metallophosphoesterase|unclassified	0.0914095695
+UniRef50_UPI000407C1E5: hypothetical protein	0.0914082146
+UniRef50_UPI000407C1E5: hypothetical protein|unclassified	0.0914082146
+UniRef50_A0A011MM49: Polysaccharide biosynthesis protein	0.0913933330
+UniRef50_A0A011MM49: Polysaccharide biosynthesis protein|unclassified	0.0913933330
+UniRef50_UPI000477BE6D: ABC transporter	0.0913906938
+UniRef50_UPI000477BE6D: ABC transporter|unclassified	0.0913906938
+UniRef50_UPI0003B2F873: glycerol-3-phosphate ABC transporter ATP-binding protein	0.0913881008
+UniRef50_UPI0003B2F873: glycerol-3-phosphate ABC transporter ATP-binding protein|unclassified	0.0913881008
+UniRef50_UPI000226035C: flagellar hook protein FlgE	0.0913833168
+UniRef50_UPI000226035C: flagellar hook protein FlgE|unclassified	0.0913833168
+UniRef50_N1MBR2	0.0913807404
+UniRef50_N1MBR2|unclassified	0.0913807404
+UniRef50_F0C8F8	0.0913719495
+UniRef50_F0C8F8|unclassified	0.0913719495
+UniRef50_UPI00046F0551: hypothetical protein	0.0913699928
+UniRef50_UPI00046F0551: hypothetical protein|unclassified	0.0913699928
+UniRef50_UPI000373CB86: hypothetical protein	0.0913696910
+UniRef50_UPI000373CB86: hypothetical protein|unclassified	0.0913696910
+UniRef50_Q6MKR7: Cysteine--tRNA ligase	0.0913628600
+UniRef50_Q6MKR7: Cysteine--tRNA ligase|unclassified	0.0913628600
+UniRef50_UPI0003B3F615: GntR family transcriptional regulator	0.0913620032
+UniRef50_UPI0003B3F615: GntR family transcriptional regulator|unclassified	0.0913620032
+UniRef50_B7GML0: Octanoyl-[GcvH]:protein N-octanoyltransferase	0.0913572820
+UniRef50_B7GML0: Octanoyl-[GcvH]:protein N-octanoyltransferase|unclassified	0.0913572820
+UniRef50_Q7CRQ0: Uronate dehydrogenase	0.0913528113
+UniRef50_Q7CRQ0: Uronate dehydrogenase|unclassified	0.0913528113
+UniRef50_B9MRP4: Argininosuccinate lyase	0.0913490889
+UniRef50_B9MRP4: Argininosuccinate lyase|unclassified	0.0913490889
+UniRef50_O52384: 1,2-dihydroxy-1,2-dihydronaphthalene dehydrogenase	0.0913447276
+UniRef50_O52384: 1,2-dihydroxy-1,2-dihydronaphthalene dehydrogenase|unclassified	0.0913447276
+UniRef50_Q3JD72: Tripartite ATP-independent periplasmic transporter, DctQ component	0.0913412455
+UniRef50_Q3JD72: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	0.0913412455
+UniRef50_B9E815	0.0913387944
+UniRef50_B9E815|unclassified	0.0913387944
+UniRef50_UPI000262CB4A: acetolactate synthase large subunit IlvG	0.0913299671
+UniRef50_UPI000262CB4A: acetolactate synthase large subunit IlvG|unclassified	0.0913299671
+UniRef50_UPI0004702958: 50S ribosomal protein L25	0.0913200254
+UniRef50_UPI0004702958: 50S ribosomal protein L25|unclassified	0.0913200254
+UniRef50_A0A017HKL7	0.0913182919
+UniRef50_A0A017HKL7|unclassified	0.0913182919
+UniRef50_G7GSJ4	0.0913165406
+UniRef50_G7GSJ4|unclassified	0.0913165406
+UniRef50_UPI0003738A7B: hypothetical protein, partial	0.0913074959
+UniRef50_UPI0003738A7B: hypothetical protein, partial|unclassified	0.0913074959
+UniRef50_K9HN59: Carbon monoxide oxidation accessory protein CoxG	0.0913061438
+UniRef50_K9HN59: Carbon monoxide oxidation accessory protein CoxG|unclassified	0.0913061438
+UniRef50_UPI00036C8880: hypothetical protein, partial	0.0913059598
+UniRef50_UPI00036C8880: hypothetical protein, partial|unclassified	0.0913059598
+UniRef50_UPI0003625FD0: hypothetical protein	0.0913050922
+UniRef50_UPI0003625FD0: hypothetical protein|unclassified	0.0913050922
+UniRef50_UPI0003B6EC61: leucyl/phenylalanyl-tRNA--protein transferase	0.0913011677
+UniRef50_UPI0003B6EC61: leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.0913011677
+UniRef50_Q2CJ82: Short-chain dehydrogenase/reductase SDR	0.0912954898
+UniRef50_Q2CJ82: Short-chain dehydrogenase/reductase SDR|unclassified	0.0912954898
+UniRef50_Q24TX4: Guanylate kinase	0.0912932402
+UniRef50_Q24TX4: Guanylate kinase|unclassified	0.0912932402
+UniRef50_UPI0003032198: hypothetical protein	0.0912917243
+UniRef50_UPI0003032198: hypothetical protein|unclassified	0.0912917243
+UniRef50_UPI0001910EB6: hypothetical protein, partial	0.0912913885
+UniRef50_UPI0001910EB6: hypothetical protein, partial|unclassified	0.0912913885
+UniRef50_P16263: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex	0.0912900645
+UniRef50_P16263: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex|unclassified	0.0912900645
+UniRef50_Q891J7: ATP-dependent Clp protease proteolytic subunit	0.0912845319
+UniRef50_Q891J7: ATP-dependent Clp protease proteolytic subunit|unclassified	0.0912845319
+UniRef50_W7WVJ3	0.0912807098
+UniRef50_W7WVJ3|unclassified	0.0912807098
+UniRef50_O83658: Spermidine/putrescine import ATP-binding protein PotA	0.0912776371
+UniRef50_O83658: Spermidine/putrescine import ATP-binding protein PotA|unclassified	0.0912776371
+UniRef50_C1DS50	0.0912745629
+UniRef50_C1DS50|unclassified	0.0912745629
+UniRef50_P71405: Serine acetyltransferase	0.0912691834
+UniRef50_P71405: Serine acetyltransferase|unclassified	0.0912691834
+UniRef50_B1JZ61: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase	0.0912670596
+UniRef50_B1JZ61: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase|unclassified	0.0912670596
+UniRef50_UPI0003710697: hypothetical protein	0.0912601210
+UniRef50_UPI0003710697: hypothetical protein|unclassified	0.0912601210
+UniRef50_UPI00044441CD: PREDICTED: BCL2/adenovirus E1B 19 kDa protein-interacting protein 3	0.0912600592
+UniRef50_UPI00044441CD: PREDICTED: BCL2/adenovirus E1B 19 kDa protein-interacting protein 3|unclassified	0.0912600592
+UniRef50_UPI0003753B36: membrane protein	0.0912599835
+UniRef50_UPI0003753B36: membrane protein|unclassified	0.0912599835
+UniRef50_D0CVK1: Putative lipoprotein	0.0912578617
+UniRef50_D0CVK1: Putative lipoprotein|unclassified	0.0912578617
+UniRef50_B2G7K3: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.0912565093
+UniRef50_B2G7K3: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.0912565093
+UniRef50_A0A016ULG1	0.0912541605
+UniRef50_A0A016ULG1|unclassified	0.0912541605
+UniRef50_UPI00046EF18E: hypothetical protein	0.0912482103
+UniRef50_UPI00046EF18E: hypothetical protein|unclassified	0.0912482103
+UniRef50_B4W974: NnrS protein	0.0912426524
+UniRef50_B4W974: NnrS protein|unclassified	0.0912426524
+UniRef50_UPI0002F63767: hypothetical protein	0.0912297711
+UniRef50_UPI0002F63767: hypothetical protein|unclassified	0.0912297711
+UniRef50_UPI0004708247: hypothetical protein	0.0912233270
+UniRef50_UPI0004708247: hypothetical protein|unclassified	0.0912233270
+UniRef50_M1ZEJ7: Putative membrane protein	0.0912221994
+UniRef50_M1ZEJ7: Putative membrane protein|unclassified	0.0912221994
+UniRef50_B0XBZ2: FAD oxidoreductase	0.0912123069
+UniRef50_B0XBZ2: FAD oxidoreductase|unclassified	0.0912123069
+UniRef50_P34107: Superoxide dismutase [Fe]	0.0912119504
+UniRef50_P34107: Superoxide dismutase [Fe]|unclassified	0.0912119504
+UniRef50_F4QXD0: Type IV secretion system protein VirB4	0.0912043932
+UniRef50_F4QXD0: Type IV secretion system protein VirB4|unclassified	0.0912043932
+UniRef50_UPI000478E5C6: hypothetical protein	0.0911939292
+UniRef50_UPI000478E5C6: hypothetical protein|unclassified	0.0911939292
+UniRef50_UPI00041A9F7E: catecholate siderophore receptor Fiu	0.0911915702
+UniRef50_UPI00041A9F7E: catecholate siderophore receptor Fiu|unclassified	0.0911915702
+UniRef50_UPI00035D14F5: hypothetical protein	0.0911913700
+UniRef50_UPI00035D14F5: hypothetical protein|unclassified	0.0911913700
+UniRef50_UPI000369F229: hypothetical protein	0.0911869818
+UniRef50_UPI000369F229: hypothetical protein|unclassified	0.0911869818
+UniRef50_UPI00037029C1: hypothetical protein, partial	0.0911792053
+UniRef50_UPI00037029C1: hypothetical protein, partial|unclassified	0.0911792053
+UniRef50_A3VB77: Possible FlgD protein	0.0911706854
+UniRef50_A3VB77: Possible FlgD protein|unclassified	0.0911706854
+UniRef50_R5ZCP1: HD domain protein	0.0911661314
+UniRef50_R5ZCP1: HD domain protein|unclassified	0.0911661314
+UniRef50_X1KS18: Marine sediment metagenome DNA, contig: S03H2_S24662 (Fragment)	0.0911650692
+UniRef50_X1KS18: Marine sediment metagenome DNA, contig: S03H2_S24662 (Fragment)|unclassified	0.0911650692
+UniRef50_M1F7T7	0.0911644980
+UniRef50_M1F7T7|unclassified	0.0911644980
+UniRef50_A2SJP0: HupE/UreJ protein	0.0911635627
+UniRef50_A2SJP0: HupE/UreJ protein|unclassified	0.0911635627
+UniRef50_UPI00036E61B3: hypothetical protein	0.0911564403
+UniRef50_UPI00036E61B3: hypothetical protein|unclassified	0.0911564403
+UniRef50_W5TDM8: Putative membrane protein	0.0911460598
+UniRef50_W5TDM8: Putative membrane protein|unclassified	0.0911460598
+UniRef50_UPI0004726983: hypothetical protein	0.0911437682
+UniRef50_UPI0004726983: hypothetical protein|unclassified	0.0911437682
+UniRef50_UPI0002FD25A8: hypothetical protein	0.0911412868
+UniRef50_UPI0002FD25A8: hypothetical protein|unclassified	0.0911412868
+UniRef50_UPI00046F6367: hypothetical protein	0.0911371579
+UniRef50_UPI00046F6367: hypothetical protein|unclassified	0.0911371579
+UniRef50_X1INZ9: Marine sediment metagenome DNA, contig: S03H2_S19262 (Fragment)	0.0911293692
+UniRef50_X1INZ9: Marine sediment metagenome DNA, contig: S03H2_S19262 (Fragment)|unclassified	0.0911293692
+UniRef50_Q3JDP5: NnrU-like protein	0.0911213879
+UniRef50_Q3JDP5: NnrU-like protein|unclassified	0.0911213879
+UniRef50_UPI000428CFF7: hypothetical protein	0.0911127359
+UniRef50_UPI000428CFF7: hypothetical protein|unclassified	0.0911127359
+UniRef50_A6BCI7: ImpC (Fragment)	0.0911115688
+UniRef50_A6BCI7: ImpC (Fragment)|unclassified	0.0911115688
+UniRef50_E3J352: Band 7 protein	0.0911075948
+UniRef50_E3J352: Band 7 protein|unclassified	0.0911075948
+UniRef50_C3DGF7	0.0910957919
+UniRef50_C3DGF7|unclassified	0.0910957919
+UniRef50_B1AIX1: Uridine kinase	0.0910915668
+UniRef50_B1AIX1: Uridine kinase|unclassified	0.0910915668
+UniRef50_H7DEE0	0.0910794401
+UniRef50_H7DEE0|unclassified	0.0910794401
+UniRef50_P43386: Glutamine synthetase	0.0910790038
+UniRef50_P43386: Glutamine synthetase|unclassified	0.0910790038
+UniRef50_Q55515: Dephospho-CoA kinase	0.0910766058
+UniRef50_Q55515: Dephospho-CoA kinase|unclassified	0.0910766058
+UniRef50_D1BIN8: Monosaccharide-binding protein	0.0910728998
+UniRef50_D1BIN8: Monosaccharide-binding protein|unclassified	0.0910728998
+UniRef50_R4UYH1: Glyoxalase	0.0910709004
+UniRef50_R4UYH1: Glyoxalase|unclassified	0.0910709004
+UniRef50_Q3AMA5: tRNA-(MS(2)IO(6)A)-hydroxylase-like	0.0910601005
+UniRef50_Q3AMA5: tRNA-(MS(2)IO(6)A)-hydroxylase-like|unclassified	0.0910601005
+UniRef50_W7YAG7: Aerobic glycerol-3-phosphate dehydrogenase	0.0910450409
+UniRef50_W7YAG7: Aerobic glycerol-3-phosphate dehydrogenase|unclassified	0.0910450409
+UniRef50_A0A058ZQB7	0.0910449544
+UniRef50_A0A058ZQB7|unclassified	0.0910449544
+UniRef50_A8F5R0: Holliday junction ATP-dependent DNA helicase RuvB	0.0910433767
+UniRef50_A8F5R0: Holliday junction ATP-dependent DNA helicase RuvB|unclassified	0.0910433767
+UniRef50_UPI000465DA0B: bacitracin ABC transporter ATP-binding protein	0.0910427138
+UniRef50_UPI000465DA0B: bacitracin ABC transporter ATP-binding protein|unclassified	0.0910427138
+UniRef50_UPI0002EA9DDE: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0910365499
+UniRef50_UPI0002EA9DDE: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0910365499
+UniRef50_UPI0002DB4996: hypothetical protein	0.0910269557
+UniRef50_UPI0002DB4996: hypothetical protein|unclassified	0.0910269557
+UniRef50_I2GGX0	0.0910264093
+UniRef50_I2GGX0|unclassified	0.0910264093
+UniRef50_UPI0004747720: peptide ABC transporter	0.0910182651
+UniRef50_UPI0004747720: peptide ABC transporter|unclassified	0.0910182651
+UniRef50_UPI0004771B87: hypothetical protein	0.0910127456
+UniRef50_UPI0004771B87: hypothetical protein|unclassified	0.0910127456
+UniRef50_Q9X0Y0: Probable glutamine-dependent NAD(+) synthetase	0.0910101186
+UniRef50_Q9X0Y0: Probable glutamine-dependent NAD(+) synthetase|unclassified	0.0910101186
+UniRef50_P58894: Carbamoyl-phosphate synthase small chain	0.0909960512
+UniRef50_P58894: Carbamoyl-phosphate synthase small chain|unclassified	0.0909960512
+UniRef50_UPI00047A127F: hypothetical protein, partial	0.0909931812
+UniRef50_UPI00047A127F: hypothetical protein, partial|unclassified	0.0909931812
+UniRef50_R7PIX6	0.0909737274
+UniRef50_R7PIX6|unclassified	0.0909737274
+UniRef50_Q8NMT1: Uronate isomerase	0.0909716857
+UniRef50_Q8NMT1: Uronate isomerase|unclassified	0.0909716857
+UniRef50_Q0AR37	0.0909622173
+UniRef50_Q0AR37|unclassified	0.0909622173
+UniRef50_U3U6V0	0.0909614081
+UniRef50_U3U6V0|unclassified	0.0909614081
+UniRef50_Q92UG4: Ureidoglycolate lyase 1	0.0909592008
+UniRef50_Q92UG4: Ureidoglycolate lyase 1|unclassified	0.0909592008
+UniRef50_UPI00015D2B59: hypothetical protein	0.0909577456
+UniRef50_UPI00015D2B59: hypothetical protein|unclassified	0.0909577456
+UniRef50_UPI0003677ED8: hypothetical protein, partial	0.0909573766
+UniRef50_UPI0003677ED8: hypothetical protein, partial|unclassified	0.0909573766
+UniRef50_UPI0003A3F36A: hypothetical protein	0.0909525445
+UniRef50_UPI0003A3F36A: hypothetical protein|unclassified	0.0909525445
+UniRef50_P9WN34: Anthranilate synthase component 2	0.0909446039
+UniRef50_P9WN34: Anthranilate synthase component 2|unclassified	0.0909446039
+UniRef50_S7TL88	0.0909385798
+UniRef50_S7TL88|unclassified	0.0909385798
+UniRef50_UPI0004710467: membrane protein	0.0909383047
+UniRef50_UPI0004710467: membrane protein|unclassified	0.0909383047
+UniRef50_B2IKD3	0.0909313086
+UniRef50_B2IKD3|unclassified	0.0909313086
+UniRef50_Q838L1: Rhamnulose-1-phosphate aldolase	0.0909231896
+UniRef50_Q838L1: Rhamnulose-1-phosphate aldolase|unclassified	0.0909231896
+UniRef50_UPI0001746901: leucyl/phenylalanyl-tRNA--protein transferase	0.0909158789
+UniRef50_UPI0001746901: leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.0909158789
+UniRef50_S9PDE9: Zinc finger protein 207	0.0909154161
+UniRef50_S9PDE9: Zinc finger protein 207|unclassified	0.0909154161
+UniRef50_A0A011N6A6: Protein translocase subunit SecA	0.0909145980
+UniRef50_A0A011N6A6: Protein translocase subunit SecA|unclassified	0.0909145980
+UniRef50_F5SCF5: HD domain protein	0.0909063911
+UniRef50_F5SCF5: HD domain protein|unclassified	0.0909063911
+UniRef50_UPI00015FB2F9: hypothetical protein	0.0909020709
+UniRef50_UPI00015FB2F9: hypothetical protein|unclassified	0.0909020709
+UniRef50_UPI0000E11716: tRNA methyltransferase	0.0909010306
+UniRef50_UPI0000E11716: tRNA methyltransferase|unclassified	0.0909010306
+UniRef50_UPI0004778862: RNA polymerase sigma70 factor	0.0908941864
+UniRef50_UPI0004778862: RNA polymerase sigma70 factor|unclassified	0.0908941864
+UniRef50_UPI000464BB0D: hypothetical protein	0.0908931297
+UniRef50_UPI000464BB0D: hypothetical protein|unclassified	0.0908931297
+UniRef50_UPI0001F85C93: bacillopeptidase F-like protein	0.0908926555
+UniRef50_UPI0001F85C93: bacillopeptidase F-like protein|unclassified	0.0908926555
+UniRef50_UPI000376E591: hypothetical protein	0.0908893176
+UniRef50_UPI000376E591: hypothetical protein|unclassified	0.0908893176
+UniRef50_UPI0002F72AC7: hypothetical protein	0.0908872624
+UniRef50_UPI0002F72AC7: hypothetical protein|unclassified	0.0908872624
+UniRef50_UPI00016AE124: glycosyltransferase family 4	0.0908854665
+UniRef50_UPI00016AE124: glycosyltransferase family 4|unclassified	0.0908854665
+UniRef50_Q07ST8: Flagellar hook capping protein	0.0908824738
+UniRef50_Q07ST8: Flagellar hook capping protein|unclassified	0.0908824738
+UniRef50_UPI0002E4C694: hypothetical protein	0.0908811642
+UniRef50_UPI0002E4C694: hypothetical protein|unclassified	0.0908811642
+UniRef50_UPI0004716803: UDP-3-O-(3-hydroxymyristoyl) glucosamine N-acyltransferase, partial	0.0908795387
+UniRef50_UPI0004716803: UDP-3-O-(3-hydroxymyristoyl) glucosamine N-acyltransferase, partial|unclassified	0.0908795387
+UniRef50_A8LKW8: Porin	0.0908665668
+UniRef50_A8LKW8: Porin|unclassified	0.0908665668
+UniRef50_UPI0003B604C5: transketolase, partial	0.0908556584
+UniRef50_UPI0003B604C5: transketolase, partial|unclassified	0.0908556584
+UniRef50_UPI0002B45196	0.0908500274
+UniRef50_UPI0002B45196|unclassified	0.0908500274
+UniRef50_Z5RLN9	0.0908453219
+UniRef50_Z5RLN9|unclassified	0.0908453219
+UniRef50_UPI0004702537: methionine ABC transporter ATP-binding protein	0.0908449140
+UniRef50_UPI0004702537: methionine ABC transporter ATP-binding protein|unclassified	0.0908449140
+UniRef50_L8A559	0.0908417472
+UniRef50_L8A559|unclassified	0.0908417472
+UniRef50_UPI00047DFB11: hypothetical protein	0.0908408398
+UniRef50_UPI00047DFB11: hypothetical protein|unclassified	0.0908408398
+UniRef50_C5QNH6	0.0908392471
+UniRef50_C5QNH6|unclassified	0.0908392471
+UniRef50_K3Y425	0.0908346219
+UniRef50_K3Y425|unclassified	0.0908346219
+UniRef50_S2ZMR6	0.0908345880
+UniRef50_S2ZMR6|unclassified	0.0908345880
+UniRef50_S1QWB9	0.0908336207
+UniRef50_S1QWB9|unclassified	0.0908336207
+UniRef50_C5BR52	0.0908255912
+UniRef50_C5BR52|unclassified	0.0908255912
+UniRef50_X6KYA4	0.0908177806
+UniRef50_X6KYA4|unclassified	0.0908177806
+UniRef50_UPI00047069BE: hypothetical protein	0.0908036605
+UniRef50_UPI00047069BE: hypothetical protein|unclassified	0.0908036605
+UniRef50_A0A024GGR2: Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_105_length_74671	0.0908029897
+UniRef50_A0A024GGR2: Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_105_length_74671|unclassified	0.0908029897
+UniRef50_A6H1A2: Ribosomal RNA small subunit methyltransferase H	0.0907997007
+UniRef50_A6H1A2: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0907997007
+UniRef50_UPI000255B779: formate dehydrogenase accessory protein FdhD	0.0907994864
+UniRef50_UPI000255B779: formate dehydrogenase accessory protein FdhD|unclassified	0.0907994864
+UniRef50_UPI000469E754: DNA repair protein RadA	0.0907988868
+UniRef50_UPI000469E754: DNA repair protein RadA|unclassified	0.0907988868
+UniRef50_UPI00036CEABE: hypothetical protein	0.0907952601
+UniRef50_UPI00036CEABE: hypothetical protein|unclassified	0.0907952601
+UniRef50_UPI0002B49D99: PREDICTED: 50S ribosomal protein L1-like	0.0907922826
+UniRef50_UPI0002B49D99: PREDICTED: 50S ribosomal protein L1-like|unclassified	0.0907922826
+UniRef50_UPI000478BD3D: hypothetical protein	0.0907739935
+UniRef50_UPI000478BD3D: hypothetical protein|unclassified	0.0907739935
+UniRef50_UPI000466D4F2: hypothetical protein	0.0907730569
+UniRef50_UPI000466D4F2: hypothetical protein|unclassified	0.0907730569
+UniRef50_Q6LLL9: 3-octaprenyl-4-hydroxybenzoate carboxy-lyase	0.0907670521
+UniRef50_Q6LLL9: 3-octaprenyl-4-hydroxybenzoate carboxy-lyase|unclassified	0.0907670521
+UniRef50_G1XVI8	0.0907614452
+UniRef50_G1XVI8|unclassified	0.0907614452
+UniRef50_B2S1K4: Uridine kinase	0.0907593188
+UniRef50_B2S1K4: Uridine kinase|unclassified	0.0907593188
+UniRef50_R7U2L1	0.0907585645
+UniRef50_R7U2L1|unclassified	0.0907585645
+UniRef50_UPI0003C186B8: PREDICTED: DNA-directed RNA polymerase subunit beta-like, partial	0.0907549018
+UniRef50_UPI0003C186B8: PREDICTED: DNA-directed RNA polymerase subunit beta-like, partial|unclassified	0.0907549018
+UniRef50_UPI0003B67A75: metallophosphoesterase	0.0907422214
+UniRef50_UPI0003B67A75: metallophosphoesterase|unclassified	0.0907422214
+UniRef50_UPI00036AA225: MULTISPECIES: magnesium transporter	0.0907388866
+UniRef50_UPI00036AA225: MULTISPECIES: magnesium transporter|unclassified	0.0907388866
+UniRef50_UPI00047D1936: DNA topoisomerase	0.0907339036
+UniRef50_UPI00047D1936: DNA topoisomerase|unclassified	0.0907339036
+UniRef50_E7C865: Fe-S oxidoreductase	0.0907299396
+UniRef50_E7C865: Fe-S oxidoreductase|unclassified	0.0907299396
+UniRef50_Q9K5N4: BH4054 protein	0.0907274518
+UniRef50_Q9K5N4: BH4054 protein|unclassified	0.0907274518
+UniRef50_UPI000409FACA: 5-carboxymethyl-2-hydroxymuconate isomerase	0.0907245726
+UniRef50_UPI000409FACA: 5-carboxymethyl-2-hydroxymuconate isomerase|unclassified	0.0907245726
+UniRef50_Q75JD5: Phosphoenolpyruvate carboxykinase [ATP]	0.0907235924
+UniRef50_Q75JD5: Phosphoenolpyruvate carboxykinase [ATP]|unclassified	0.0907235924
+UniRef50_A0R0B2: Malonyl CoA-acyl carrier protein transacylase	0.0907200569
+UniRef50_A0R0B2: Malonyl CoA-acyl carrier protein transacylase|unclassified	0.0907200569
+UniRef50_I4K5S0: Flp pilus assembly protein TadC	0.0907187033
+UniRef50_I4K5S0: Flp pilus assembly protein TadC|unclassified	0.0907187033
+UniRef50_UPI00046F4FE4: hypothetical protein, partial	0.0907155971
+UniRef50_UPI00046F4FE4: hypothetical protein, partial|unclassified	0.0907155971
+UniRef50_UPI000363A137: hypothetical protein	0.0907115304
+UniRef50_UPI000363A137: hypothetical protein|unclassified	0.0907115304
+UniRef50_P44583	0.0907110072
+UniRef50_P44583|unclassified	0.0907110072
+UniRef50_A7H8W4: Phosphopentomutase	0.0907099716
+UniRef50_A7H8W4: Phosphopentomutase|unclassified	0.0907099716
+UniRef50_UPI00036A1C3B: hypothetical protein	0.0907017437
+UniRef50_UPI00036A1C3B: hypothetical protein|unclassified	0.0907017437
+UniRef50_Q46I59: Phosphoribosylformylglycinamidine synthase 2	0.0906888362
+UniRef50_Q46I59: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.0906888362
+UniRef50_UPI000248754E: 5,10-methylenetetrahydrofolate reductase	0.0906858167
+UniRef50_UPI000248754E: 5,10-methylenetetrahydrofolate reductase|unclassified	0.0906858167
+UniRef50_G7GUR0	0.0906767035
+UniRef50_G7GUR0|unclassified	0.0906767035
+UniRef50_A0A011QXS6: Inner membrane protein YgaZ	0.0906746823
+UniRef50_A0A011QXS6: Inner membrane protein YgaZ|unclassified	0.0906746823
+UniRef50_UPI0002DC0C95: hypothetical protein	0.0906669477
+UniRef50_UPI0002DC0C95: hypothetical protein|unclassified	0.0906669477
+UniRef50_UPI0001711954: GTPase CgtA	0.0906570508
+UniRef50_UPI0001711954: GTPase CgtA|unclassified	0.0906570508
+UniRef50_D2U3G5: Lipoprotein	0.0906419248
+UniRef50_D2U3G5: Lipoprotein|unclassified	0.0906419248
+UniRef50_UPI000255C710: 16S rRNA methyltransferase	0.0906364150
+UniRef50_UPI000255C710: 16S rRNA methyltransferase|unclassified	0.0906364150
+UniRef50_F4Q0S9	0.0906196191
+UniRef50_F4Q0S9|unclassified	0.0906196191
+UniRef50_W8S9A4	0.0906141957
+UniRef50_W8S9A4|unclassified	0.0906141957
+UniRef50_UPI000306398C: hypothetical protein	0.0906077329
+UniRef50_UPI000306398C: hypothetical protein|unclassified	0.0906077329
+UniRef50_UPI0003FF9FF7: hypothetical protein	0.0906028411
+UniRef50_UPI0003FF9FF7: hypothetical protein|unclassified	0.0906028411
+UniRef50_Q4KEZ9: N-(5'-phosphoribosyl)anthranilate isomerase	0.0906002792
+UniRef50_Q4KEZ9: N-(5'-phosphoribosyl)anthranilate isomerase|unclassified	0.0906002792
+UniRef50_W5IZB0: Flagellar hook-length control protein	0.0905766311
+UniRef50_W5IZB0: Flagellar hook-length control protein|unclassified	0.0905766311
+UniRef50_UPI000428B5A7: hypothetical protein	0.0905673031
+UniRef50_UPI000428B5A7: hypothetical protein|unclassified	0.0905673031
+UniRef50_UPI0001CC08CA: MFS transporter	0.0905629497
+UniRef50_UPI0001CC08CA: MFS transporter|unclassified	0.0905629497
+UniRef50_X1P9R1: Marine sediment metagenome DNA, contig: S06H3_S24475 (Fragment)	0.0905610743
+UniRef50_X1P9R1: Marine sediment metagenome DNA, contig: S06H3_S24475 (Fragment)|unclassified	0.0905610743
+UniRef50_Q21XS7: Phenylacetic acid degradation-related protein	0.0905549200
+UniRef50_Q21XS7: Phenylacetic acid degradation-related protein|unclassified	0.0905549200
+UniRef50_UPI0001CE14A7: PREDICTED: retrotransposon-like 1	0.0905534983
+UniRef50_UPI0001CE14A7: PREDICTED: retrotransposon-like 1|unclassified	0.0905534983
+UniRef50_D7A0A7: Terminase	0.0905525460
+UniRef50_D7A0A7: Terminase|unclassified	0.0905525460
+UniRef50_A3VFG2	0.0905514384
+UniRef50_A3VFG2|unclassified	0.0905514384
+UniRef50_F3FH89	0.0905457236
+UniRef50_F3FH89|unclassified	0.0905457236
+UniRef50_UPI0003B35668: magnesium transporter MgtC	0.0905243758
+UniRef50_UPI0003B35668: magnesium transporter MgtC|unclassified	0.0905243758
+UniRef50_UPI00037DAFFF: hypothetical protein	0.0905168002
+UniRef50_UPI00037DAFFF: hypothetical protein|unclassified	0.0905168002
+UniRef50_UPI00035EBAC1: hypothetical protein	0.0905166133
+UniRef50_UPI00035EBAC1: hypothetical protein|unclassified	0.0905166133
+UniRef50_UPI0003B6BA98: ureidoglycolate hydrolase	0.0905144537
+UniRef50_UPI0003B6BA98: ureidoglycolate hydrolase|unclassified	0.0905144537
+UniRef50_UPI00047960F2: PTS mannose transporter subunit IID	0.0905099079
+UniRef50_UPI00047960F2: PTS mannose transporter subunit IID|unclassified	0.0905099079
+UniRef50_U6KDT2	0.0905093086
+UniRef50_U6KDT2|unclassified	0.0905093086
+UniRef50_I9U3G7	0.0905087870
+UniRef50_I9U3G7|unclassified	0.0905087870
+UniRef50_W6ECH6: Putative membrane protein	0.0905054700
+UniRef50_W6ECH6: Putative membrane protein|unclassified	0.0905054700
+UniRef50_UPI000474892A: acetyl-CoA acetyltransferase	0.0904923912
+UniRef50_UPI000474892A: acetyl-CoA acetyltransferase|unclassified	0.0904923912
+UniRef50_UPI0003130F2D: hypothetical protein	0.0904822973
+UniRef50_UPI0003130F2D: hypothetical protein|unclassified	0.0904822973
+UniRef50_UPI0003780E7F: hypothetical protein	0.0904777961
+UniRef50_UPI0003780E7F: hypothetical protein|unclassified	0.0904777961
+UniRef50_E3ZEL4: Major facilitator family transporter (Fragment)	0.0904748313
+UniRef50_E3ZEL4: Major facilitator family transporter (Fragment)|unclassified	0.0904748313
+UniRef50_L0DF11	0.0904678867
+UniRef50_L0DF11|unclassified	0.0904678867
+UniRef50_Q2N9N2: N-(5'-phosphoribosyl)anthranilate isomerase	0.0904670142
+UniRef50_Q2N9N2: N-(5'-phosphoribosyl)anthranilate isomerase|unclassified	0.0904670142
+UniRef50_UPI00031A92CD: hypothetical protein	0.0904645503
+UniRef50_UPI00031A92CD: hypothetical protein|unclassified	0.0904645503
+UniRef50_I1XM01	0.0904636028
+UniRef50_I1XM01|unclassified	0.0904636028
+UniRef50_UPI00042B303F: Serine hydroxymethyltransferase 3 isoform 1	0.0904594402
+UniRef50_UPI00042B303F: Serine hydroxymethyltransferase 3 isoform 1|unclassified	0.0904594402
+UniRef50_UPI0002630C8F: inner membrane protein, partial	0.0904579222
+UniRef50_UPI0002630C8F: inner membrane protein, partial|unclassified	0.0904579222
+UniRef50_H6NIZ2	0.0904485245
+UniRef50_H6NIZ2|unclassified	0.0904485245
+UniRef50_B1GYY9: Bifunctional protein PyrR	0.0904459331
+UniRef50_B1GYY9: Bifunctional protein PyrR|unclassified	0.0904459331
+UniRef50_UPI00036B8926: hypothetical protein	0.0904458308
+UniRef50_UPI00036B8926: hypothetical protein|unclassified	0.0904458308
+UniRef50_UPI0002F5EACE: hypothetical protein	0.0904453476
+UniRef50_UPI0002F5EACE: hypothetical protein|unclassified	0.0904453476
+UniRef50_V4RD78: Transport protein	0.0904366603
+UniRef50_V4RD78: Transport protein|unclassified	0.0904366603
+UniRef50_C3YV18	0.0904306194
+UniRef50_C3YV18|unclassified	0.0904306194
+UniRef50_A0A033UTI6	0.0904257740
+UniRef50_A0A033UTI6|unclassified	0.0904257740
+UniRef50_UPI00036B3E70: hypothetical protein	0.0904204349
+UniRef50_UPI00036B3E70: hypothetical protein|unclassified	0.0904204349
+UniRef50_O05100: Peptide deformylase 1	0.0904196200
+UniRef50_O05100: Peptide deformylase 1|unclassified	0.0904196200
+UniRef50_UPI0003B57257: TetR family transcriptional regulator	0.0904188341
+UniRef50_UPI0003B57257: TetR family transcriptional regulator|unclassified	0.0904188341
+UniRef50_B4RG78: Flagellar hook assembly protein	0.0904145266
+UniRef50_B4RG78: Flagellar hook assembly protein|unclassified	0.0904145266
+UniRef50_R2SKS1	0.0904027057
+UniRef50_R2SKS1|unclassified	0.0904027057
+UniRef50_UPI0003C7619D: nucleotide sugar dehydrogenase	0.0903964281
+UniRef50_UPI0003C7619D: nucleotide sugar dehydrogenase|unclassified	0.0903964281
+UniRef50_UPI000418FD7E: delta-aminolevulinic acid dehydratase	0.0903917504
+UniRef50_UPI000418FD7E: delta-aminolevulinic acid dehydratase|unclassified	0.0903917504
+UniRef50_H8L6T1	0.0903846774
+UniRef50_H8L6T1|unclassified	0.0903846774
+UniRef50_UPI000379F226: hypothetical protein	0.0903804896
+UniRef50_UPI000379F226: hypothetical protein|unclassified	0.0903804896
+UniRef50_C5ZYT9: Type VI secretion protein, VC_A0107 family	0.0903765964
+UniRef50_C5ZYT9: Type VI secretion protein, VC_A0107 family|unclassified	0.0903765964
+UniRef50_UPI0002880F8C: DNase TatD	0.0903729382
+UniRef50_UPI0002880F8C: DNase TatD|unclassified	0.0903729382
+UniRef50_K1M3K7: MJ0936 family phosphodiesterase	0.0903701889
+UniRef50_K1M3K7: MJ0936 family phosphodiesterase|unclassified	0.0903701889
+UniRef50_R4Q3R7: Tetratricopeptide repeat family protein	0.0903625550
+UniRef50_R4Q3R7: Tetratricopeptide repeat family protein|unclassified	0.0903625550
+UniRef50_UPI0004778216: restriction endonuclease	0.0903568199
+UniRef50_UPI0004778216: restriction endonuclease|unclassified	0.0903568199
+UniRef50_UPI0004674A11: hypothetical protein, partial	0.0903509125
+UniRef50_UPI0004674A11: hypothetical protein, partial|unclassified	0.0903509125
+UniRef50_UPI0003A7157D: ABC transporter permease	0.0903442624
+UniRef50_UPI0003A7157D: ABC transporter permease|unclassified	0.0903442624
+UniRef50_U6KVR8	0.0903405488
+UniRef50_U6KVR8|unclassified	0.0903405488
+UniRef50_UPI00036182E2: hypothetical protein, partial	0.0903391678
+UniRef50_UPI00036182E2: hypothetical protein, partial|unclassified	0.0903391678
+UniRef50_B8H096: UDP-N-acetylmuramoylalanine--D-glutamate ligase	0.0903261820
+UniRef50_B8H096: UDP-N-acetylmuramoylalanine--D-glutamate ligase|unclassified	0.0903261820
+UniRef50_UPI00035E1CB4: hypothetical protein	0.0903049302
+UniRef50_UPI00035E1CB4: hypothetical protein|unclassified	0.0903049302
+UniRef50_UPI0003688C29: hypothetical protein	0.0902967657
+UniRef50_UPI0003688C29: hypothetical protein|unclassified	0.0902967657
+UniRef50_UPI00046F326A: TetR family transcriptional regulator	0.0902955610
+UniRef50_UPI00046F326A: TetR family transcriptional regulator|unclassified	0.0902955610
+UniRef50_UPI0004444092: PREDICTED: adenylyltransferase and sulfurtransferase MOCS3-like	0.0902897657
+UniRef50_UPI0004444092: PREDICTED: adenylyltransferase and sulfurtransferase MOCS3-like|unclassified	0.0902897657
+UniRef50_UPI000382B5DB: hypothetical protein	0.0902887374
+UniRef50_UPI000382B5DB: hypothetical protein|unclassified	0.0902887374
+UniRef50_A4E7N7	0.0902875430
+UniRef50_A4E7N7|unclassified	0.0902875430
+UniRef50_Q2RKZ7: Glutamate 5-kinase	0.0902816436
+UniRef50_Q2RKZ7: Glutamate 5-kinase|unclassified	0.0902816436
+UniRef50_UPI0003B40318: fusaric acid resistance protein	0.0902801379
+UniRef50_UPI0003B40318: fusaric acid resistance protein|unclassified	0.0902801379
+UniRef50_UPI0004721C60: hypothetical protein	0.0902775577
+UniRef50_UPI0004721C60: hypothetical protein|unclassified	0.0902775577
+UniRef50_UPI000362C7A0: hypothetical protein	0.0902751910
+UniRef50_UPI000362C7A0: hypothetical protein|unclassified	0.0902751910
+UniRef50_UPI00037848B3: hypothetical protein	0.0902725811
+UniRef50_UPI00037848B3: hypothetical protein|unclassified	0.0902725811
+UniRef50_UPI000463D27B: DEAD/DEAH box helicase	0.0902652206
+UniRef50_UPI000463D27B: DEAD/DEAH box helicase|unclassified	0.0902652206
+UniRef50_UPI00030E9E15: hypothetical protein	0.0902648383
+UniRef50_UPI00030E9E15: hypothetical protein|unclassified	0.0902648383
+UniRef50_G0DZG9	0.0902593337
+UniRef50_G0DZG9|unclassified	0.0902593337
+UniRef50_A0A025ZHV1: Terminase (Fragment)	0.0902557044
+UniRef50_A0A025ZHV1: Terminase (Fragment)|unclassified	0.0902557044
+UniRef50_Q9ZNW0: Adenylyltransferase and sulfurtransferase MOCS3	0.0902493599
+UniRef50_Q9ZNW0: Adenylyltransferase and sulfurtransferase MOCS3|unclassified	0.0902493599
+UniRef50_Q0VSU8: Pyridoxine/pyridoxamine 5'-phosphate oxidase	0.0902492984
+UniRef50_Q0VSU8: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	0.0902492984
+UniRef50_UPI0002493F14: transmembrane efflux protein of the MFS type	0.0902449967
+UniRef50_UPI0002493F14: transmembrane efflux protein of the MFS type|unclassified	0.0902449967
+UniRef50_F6CZY2	0.0902426612
+UniRef50_F6CZY2|unclassified	0.0902426612
+UniRef50_UPI00039C5AC0: superoxide dismutase	0.0902414193
+UniRef50_UPI00039C5AC0: superoxide dismutase|unclassified	0.0902414193
+UniRef50_J9DYS2: UPF0262 protein IMCC14465_06100	0.0902381191
+UniRef50_J9DYS2: UPF0262 protein IMCC14465_06100|unclassified	0.0902381191
+UniRef50_UPI0003B46258: MerR family transcriptional regulator	0.0902345127
+UniRef50_UPI0003B46258: MerR family transcriptional regulator|unclassified	0.0902345127
+UniRef50_UPI0000E0E5D5: exonuclease subunit SbcD	0.0902333814
+UniRef50_UPI0000E0E5D5: exonuclease subunit SbcD|unclassified	0.0902333814
+UniRef50_UPI00046EEE63: hypothetical protein	0.0902303805
+UniRef50_UPI00046EEE63: hypothetical protein|unclassified	0.0902303805
+UniRef50_UPI0003B789FB: TetR family transcriptional regulator	0.0902245356
+UniRef50_UPI0003B789FB: TetR family transcriptional regulator|unclassified	0.0902245356
+UniRef50_B0F658: Major ampullate spidroin 1 locus 3 (Fragment)	0.0902192614
+UniRef50_B0F658: Major ampullate spidroin 1 locus 3 (Fragment)|unclassified	0.0902192614
+UniRef50_UPI00035F38D4: hypothetical protein	0.0902191753
+UniRef50_UPI00035F38D4: hypothetical protein|unclassified	0.0902191753
+UniRef50_Q9KCT8: NADPH dehydrogenase	0.0902003196
+UniRef50_Q9KCT8: NADPH dehydrogenase|unclassified	0.0902003196
+UniRef50_UPI00046D086D: hypothetical protein	0.0901510810
+UniRef50_UPI00046D086D: hypothetical protein|unclassified	0.0901510810
+UniRef50_UPI0003FC0088: hypothetical protein	0.0901476109
+UniRef50_UPI0003FC0088: hypothetical protein|unclassified	0.0901476109
+UniRef50_P61502: Superoxide dismutase [Mn]	0.0901412725
+UniRef50_P61502: Superoxide dismutase [Mn]|unclassified	0.0901412725
+UniRef50_UPI00046ED421: hypothetical protein	0.0901304299
+UniRef50_UPI00046ED421: hypothetical protein|unclassified	0.0901304299
+UniRef50_UPI0003A1241D: hypothetical protein	0.0901233582
+UniRef50_UPI0003A1241D: hypothetical protein|unclassified	0.0901233582
+UniRef50_UPI0003088BF5: hypothetical protein	0.0901152853
+UniRef50_UPI0003088BF5: hypothetical protein|unclassified	0.0901152853
+UniRef50_UPI0004144A94: GNAT family acetyltransferase	0.0901112777
+UniRef50_UPI0004144A94: GNAT family acetyltransferase|unclassified	0.0901112777
+UniRef50_UPI00028A379D: elongation factor Ts	0.0901110180
+UniRef50_UPI00028A379D: elongation factor Ts|unclassified	0.0901110180
+UniRef50_UPI0004778E47: flagellar biosynthesis protein flip	0.0901076079
+UniRef50_UPI0004778E47: flagellar biosynthesis protein flip|unclassified	0.0901076079
+UniRef50_UPI000408A6C4: 3-oxoadipate enol-lactonase	0.0901059918
+UniRef50_UPI000408A6C4: 3-oxoadipate enol-lactonase|unclassified	0.0901059918
+UniRef50_UPI0003B31B33: nickel transporter	0.0901044240
+UniRef50_UPI0003B31B33: nickel transporter|unclassified	0.0901044240
+UniRef50_UPI0003FDD1A1: C4-dicarboxylate ABC transporter substrate-binding protein	0.0900973485
+UniRef50_UPI0003FDD1A1: C4-dicarboxylate ABC transporter substrate-binding protein|unclassified	0.0900973485
+UniRef50_L9VQX6: Phenol hydroxylase	0.0900828252
+UniRef50_L9VQX6: Phenol hydroxylase|unclassified	0.0900828252
+UniRef50_UPI00039EF9CF: SecD/SecF family protein-export membrane protein	0.0900797206
+UniRef50_UPI00039EF9CF: SecD/SecF family protein-export membrane protein|unclassified	0.0900797206
+UniRef50_UPI0003F9FE7D: TetR family transcriptional regulator	0.0900788806
+UniRef50_UPI0003F9FE7D: TetR family transcriptional regulator|unclassified	0.0900788806
+UniRef50_UPI0003673464: hypothetical protein	0.0900743229
+UniRef50_UPI0003673464: hypothetical protein|unclassified	0.0900743229
+UniRef50_D8HSB5	0.0900731019
+UniRef50_D8HSB5|unclassified	0.0900731019
+UniRef50_UPI0003680D68: hypothetical protein	0.0900727535
+UniRef50_UPI0003680D68: hypothetical protein|unclassified	0.0900727535
+UniRef50_I9LLP3: Heavy metal translocating P-type ATPase (Fragment)	0.0900639812
+UniRef50_I9LLP3: Heavy metal translocating P-type ATPase (Fragment)|unclassified	0.0900639812
+UniRef50_W8SLN7	0.0900636798
+UniRef50_W8SLN7|unclassified	0.0900636798
+UniRef50_Q88DY1: Hemin import ATP-binding protein HmuV	0.0900614694
+UniRef50_Q88DY1: Hemin import ATP-binding protein HmuV|unclassified	0.0900614694
+UniRef50_B4M1F9: GJ18858	0.0900530235
+UniRef50_B4M1F9: GJ18858|unclassified	0.0900530235
+UniRef50_UPI0004016848: hypothetical protein	0.0900399038
+UniRef50_UPI0004016848: hypothetical protein|unclassified	0.0900399038
+UniRef50_Q1QNH1: UPF0260 protein Nham_1404	0.0900391523
+UniRef50_Q1QNH1: UPF0260 protein Nham_1404|unclassified	0.0900391523
+UniRef50_D8JE56: CFTR inhibitory factor, Cif	0.0900323401
+UniRef50_D8JE56: CFTR inhibitory factor, Cif|unclassified	0.0900323401
+UniRef50_UPI00040BD7D1: membrane protein	0.0900303546
+UniRef50_UPI00040BD7D1: membrane protein|unclassified	0.0900303546
+UniRef50_UPI000363849B: hypothetical protein	0.0900145930
+UniRef50_UPI000363849B: hypothetical protein|unclassified	0.0900145930
+UniRef50_UPI00035DD005: hypothetical protein	0.0900133779
+UniRef50_UPI00035DD005: hypothetical protein|unclassified	0.0900133779
+UniRef50_H9KGM6	0.0900066398
+UniRef50_H9KGM6|unclassified	0.0900066398
+UniRef50_UPI0002FA7BD6: hypothetical protein	0.0900049805
+UniRef50_UPI0002FA7BD6: hypothetical protein|unclassified	0.0900049805
+UniRef50_K7ABD1	0.0900042053
+UniRef50_K7ABD1|unclassified	0.0900042053
+UniRef50_F0SM74	0.0899976673
+UniRef50_F0SM74|unclassified	0.0899976673
+UniRef50_UPI00036347EA: MULTISPECIES: hypothetical protein	0.0899910179
+UniRef50_UPI00036347EA: MULTISPECIES: hypothetical protein|unclassified	0.0899910179
+UniRef50_UPI0004755432: hypothetical protein	0.0899841842
+UniRef50_UPI0004755432: hypothetical protein|unclassified	0.0899841842
+UniRef50_M7PIZ3: GMP synthase	0.0899841475
+UniRef50_M7PIZ3: GMP synthase|unclassified	0.0899841475
+UniRef50_Z5K6R3: Drp35	0.0899830459
+UniRef50_Z5K6R3: Drp35|unclassified	0.0899830459
+UniRef50_C1CXX6: Non-canonical purine NTP pyrophosphatase	0.0899804687
+UniRef50_C1CXX6: Non-canonical purine NTP pyrophosphatase|unclassified	0.0899804687
+UniRef50_R0KZD8: Permease	0.0899800106
+UniRef50_R0KZD8: Permease|unclassified	0.0899800106
+UniRef50_UPI00037FC311: hypothetical protein	0.0899790853
+UniRef50_UPI00037FC311: hypothetical protein|unclassified	0.0899790853
+UniRef50_UPI000373F835: hypothetical protein	0.0899788440
+UniRef50_UPI000373F835: hypothetical protein|unclassified	0.0899788440
+UniRef50_UPI0003B418D0: phosphopantetheine adenylyltransferase	0.0899709068
+UniRef50_UPI0003B418D0: phosphopantetheine adenylyltransferase|unclassified	0.0899709068
+UniRef50_D8TJQ5	0.0899598809
+UniRef50_D8TJQ5|unclassified	0.0899598809
+UniRef50_UPI0004009466: hypothetical protein	0.0899483660
+UniRef50_UPI0004009466: hypothetical protein|unclassified	0.0899483660
+UniRef50_UPI00046F2E87: sodium-dependent transporter	0.0899448217
+UniRef50_UPI00046F2E87: sodium-dependent transporter|unclassified	0.0899448217
+UniRef50_W1TYZ6	0.0899411851
+UniRef50_W1TYZ6|unclassified	0.0899411851
+UniRef50_UPI0003B6819C: MFS transporter	0.0899256525
+UniRef50_UPI0003B6819C: MFS transporter|unclassified	0.0899256525
+UniRef50_UPI000377831E: hypothetical protein	0.0899210960
+UniRef50_UPI000377831E: hypothetical protein|unclassified	0.0899210960
+UniRef50_UPI00035FEADB: hypothetical protein	0.0899185840
+UniRef50_UPI00035FEADB: hypothetical protein|unclassified	0.0899185840
+UniRef50_UPI00028A2C92: SAM-dependent methyltransferase	0.0899171863
+UniRef50_UPI00028A2C92: SAM-dependent methyltransferase|unclassified	0.0899171863
+UniRef50_UPI000334530D: PREDICTED: basic proline-rich protein-like	0.0899111995
+UniRef50_UPI000334530D: PREDICTED: basic proline-rich protein-like|unclassified	0.0899111995
+UniRef50_M4XL88	0.0899088558
+UniRef50_M4XL88|unclassified	0.0899088558
+UniRef50_UPI00038175CE: hypothetical protein	0.0899037586
+UniRef50_UPI00038175CE: hypothetical protein|unclassified	0.0899037586
+UniRef50_UPI0003B5FF1F: 3-ketoacyl-ACP reductase	0.0899017574
+UniRef50_UPI0003B5FF1F: 3-ketoacyl-ACP reductase|unclassified	0.0899017574
+UniRef50_UPI00047BD49C: riboflavin biosynthesis protein RibF	0.0898997543
+UniRef50_UPI00047BD49C: riboflavin biosynthesis protein RibF|unclassified	0.0898997543
+UniRef50_UPI0003B5FB6A: D-amino acid oxidase	0.0898945043
+UniRef50_UPI0003B5FB6A: D-amino acid oxidase|unclassified	0.0898945043
+UniRef50_UPI00037F2099: hypothetical protein	0.0898751329
+UniRef50_UPI00037F2099: hypothetical protein|unclassified	0.0898751329
+UniRef50_UPI00035EEB06: hypothetical protein	0.0898709050
+UniRef50_UPI00035EEB06: hypothetical protein|unclassified	0.0898709050
+UniRef50_UPI00037E5CE8: single-stranded DNA-binding protein	0.0898607142
+UniRef50_UPI00037E5CE8: single-stranded DNA-binding protein|unclassified	0.0898607142
+UniRef50_R1ELM8	0.0898594089
+UniRef50_R1ELM8|unclassified	0.0898594089
+UniRef50_W5X9W9: Glucose-6-phosphate 1-dehydrogenase	0.0898593250
+UniRef50_W5X9W9: Glucose-6-phosphate 1-dehydrogenase|unclassified	0.0898593250
+UniRef50_D5WXD5: Sporulation protein YyaC	0.0898588317
+UniRef50_D5WXD5: Sporulation protein YyaC|unclassified	0.0898588317
+UniRef50_B5YIQ1: Heat shock protein, Hsp20 family	0.0898580249
+UniRef50_B5YIQ1: Heat shock protein, Hsp20 family|unclassified	0.0898580249
+UniRef50_C9SNS0: Predicted protein (Fragment)	0.0898505783
+UniRef50_C9SNS0: Predicted protein (Fragment)|unclassified	0.0898505783
+UniRef50_UPI0003F6A7DC: hypothetical protein	0.0898458453
+UniRef50_UPI0003F6A7DC: hypothetical protein|unclassified	0.0898458453
+UniRef50_UPI0003700E3D: hypothetical protein, partial	0.0898315754
+UniRef50_UPI0003700E3D: hypothetical protein, partial|unclassified	0.0898315754
+UniRef50_A5VHS3: Dihydroorotate dehydrogenase A (fumarate)	0.0898309565
+UniRef50_A5VHS3: Dihydroorotate dehydrogenase A (fumarate)|unclassified	0.0898309565
+UniRef50_X5MM05: Flagellar basal-body rod modification protein FlgD	0.0898260727
+UniRef50_X5MM05: Flagellar basal-body rod modification protein FlgD|unclassified	0.0898260727
+UniRef50_A0A038FN38: Sulfonate binding protein	0.0898244147
+UniRef50_A0A038FN38: Sulfonate binding protein|unclassified	0.0898244147
+UniRef50_A3MMQ8: Glutamate-1-semialdehyde 2,1-aminomutase	0.0898088499
+UniRef50_A3MMQ8: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0898088499
+UniRef50_K9YLK5	0.0898063633
+UniRef50_K9YLK5|unclassified	0.0898063633
+UniRef50_Q05079: Fructose-1,6-bisphosphatase	0.0898029445
+UniRef50_Q05079: Fructose-1,6-bisphosphatase|unclassified	0.0898029445
+UniRef50_UPI0003A2A0BF: DNA-directed RNA polymerase subunit omega	0.0897985231
+UniRef50_UPI0003A2A0BF: DNA-directed RNA polymerase subunit omega|unclassified	0.0897985231
+UniRef50_UPI0003FECAA4: hypothetical protein	0.0897898377
+UniRef50_UPI0003FECAA4: hypothetical protein|unclassified	0.0897898377
+UniRef50_UPI0004785DA5: hypothetical protein	0.0897871804
+UniRef50_UPI0004785DA5: hypothetical protein|unclassified	0.0897871804
+UniRef50_F5L9P3	0.0897855600
+UniRef50_F5L9P3|unclassified	0.0897855600
+UniRef50_UPI0004735CAC: transposase, partial	0.0897851500
+UniRef50_UPI0004735CAC: transposase, partial|unclassified	0.0897851500
+UniRef50_UPI00047DD55E: electron transfer flavoprotein subunit alpha	0.0897782726
+UniRef50_UPI00047DD55E: electron transfer flavoprotein subunit alpha|unclassified	0.0897782726
+UniRef50_A5F3I6: Phosphoadenosine phosphosulfate reductase	0.0897778467
+UniRef50_A5F3I6: Phosphoadenosine phosphosulfate reductase|unclassified	0.0897778467
+UniRef50_UPI000374CADE: hypothetical protein	0.0897717667
+UniRef50_UPI000374CADE: hypothetical protein|unclassified	0.0897717667
+UniRef50_A0A017HSU8: Transport protein	0.0897699798
+UniRef50_A0A017HSU8: Transport protein|unclassified	0.0897699798
+UniRef50_UPI0003C1000F	0.0897680043
+UniRef50_UPI0003C1000F|unclassified	0.0897680043
+UniRef50_B0V608: Phage-related major tail tube protein (FII-like)	0.0897612260
+UniRef50_B0V608: Phage-related major tail tube protein (FII-like)|unclassified	0.0897612260
+UniRef50_E4U7W7: Tripartite ATP-independent periplasmic transporter DctQ component	0.0897576375
+UniRef50_E4U7W7: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.0897576375
+UniRef50_UPI000469C97C: riboflavin biosynthesis protein RibF	0.0897572683
+UniRef50_UPI000469C97C: riboflavin biosynthesis protein RibF|unclassified	0.0897572683
+UniRef50_UPI00046730B7: hypothetical protein	0.0897523192
+UniRef50_UPI00046730B7: hypothetical protein|unclassified	0.0897523192
+UniRef50_V4SQQ0: Allantoate amidohydrolase (Fragment)	0.0897479052
+UniRef50_V4SQQ0: Allantoate amidohydrolase (Fragment)|unclassified	0.0897479052
+UniRef50_UPI000405F353: hypothetical protein	0.0897421182
+UniRef50_UPI000405F353: hypothetical protein|unclassified	0.0897421182
+UniRef50_M7AS82	0.0897334329
+UniRef50_M7AS82|unclassified	0.0897334329
+UniRef50_P42371: Formamidopyrimidine-DNA glycosylase	0.0897322339
+UniRef50_P42371: Formamidopyrimidine-DNA glycosylase|unclassified	0.0897322339
+UniRef50_D1B150: CreA family protein	0.0897305975
+UniRef50_D1B150: CreA family protein|unclassified	0.0897305975
+UniRef50_Q73F30: Tn7-like transposition protein D	0.0897303913
+UniRef50_Q73F30: Tn7-like transposition protein D|unclassified	0.0897303913
+UniRef50_UPI000262878B: cold-shock DNA-binding protein family	0.0897297343
+UniRef50_UPI000262878B: cold-shock DNA-binding protein family|unclassified	0.0897297343
+UniRef50_A6W8Y0: Putative cell wall binding repeat 2-containing protein	0.0897290276
+UniRef50_A6W8Y0: Putative cell wall binding repeat 2-containing protein|unclassified	0.0897290276
+UniRef50_Q3SEU6: Imidazole glycerol phosphate synthase subunit HisH	0.0897285489
+UniRef50_Q3SEU6: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.0897285489
+UniRef50_UPI0002897C2C: hypothetical protein	0.0897220806
+UniRef50_UPI0002897C2C: hypothetical protein|unclassified	0.0897220806
+UniRef50_UPI0004785397: hypothetical protein	0.0897180552
+UniRef50_UPI0004785397: hypothetical protein|unclassified	0.0897180552
+UniRef50_UPI00030A24CF: hypothetical protein	0.0897167698
+UniRef50_UPI00030A24CF: hypothetical protein|unclassified	0.0897167698
+UniRef50_UPI00038263AB: hypothetical protein, partial	0.0897003472
+UniRef50_UPI00038263AB: hypothetical protein, partial|unclassified	0.0897003472
+UniRef50_UPI00030811AD: hypothetical protein	0.0896950239
+UniRef50_UPI00030811AD: hypothetical protein|unclassified	0.0896950239
+UniRef50_UPI0003B40FE5: membrane protein	0.0896944788
+UniRef50_UPI0003B40FE5: membrane protein|unclassified	0.0896944788
+UniRef50_UPI000465506B: hypothetical protein	0.0896891167
+UniRef50_UPI000465506B: hypothetical protein|unclassified	0.0896891167
+UniRef50_J6UD62	0.0896853352
+UniRef50_J6UD62|unclassified	0.0896853352
+UniRef50_UPI0002558465: threonine dehydratase	0.0896847417
+UniRef50_UPI0002558465: threonine dehydratase|unclassified	0.0896847417
+UniRef50_UPI00037CB764: hypothetical protein	0.0896832409
+UniRef50_UPI00037CB764: hypothetical protein|unclassified	0.0896832409
+UniRef50_Q5X496: Dihydroorotate dehydrogenase (quinone)	0.0896826021
+UniRef50_Q5X496: Dihydroorotate dehydrogenase (quinone)|unclassified	0.0896826021
+UniRef50_UPI000362B2C8: hypothetical protein	0.0896804217
+UniRef50_UPI000362B2C8: hypothetical protein|unclassified	0.0896804217
+UniRef50_C0Y1C4	0.0896791600
+UniRef50_C0Y1C4|unclassified	0.0896791600
+UniRef50_Q5P993: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase	0.0896716852
+UniRef50_Q5P993: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|unclassified	0.0896716852
+UniRef50_K7RUC4: 3-carboxymuconate cyclase	0.0896708838
+UniRef50_K7RUC4: 3-carboxymuconate cyclase|unclassified	0.0896708838
+UniRef50_L8MKS0	0.0896706609
+UniRef50_L8MKS0|unclassified	0.0896706609
+UniRef50_A8L712: Transcriptional regulator, HxlR family	0.0896682708
+UniRef50_A8L712: Transcriptional regulator, HxlR family|unclassified	0.0896682708
+UniRef50_U6MYH2: Zinc finger (C3HC4 RING finger) protein, putative (Fragment)	0.0896564111
+UniRef50_U6MYH2: Zinc finger (C3HC4 RING finger) protein, putative (Fragment)|unclassified	0.0896564111
+UniRef50_UPI0004027082: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate synthetase	0.0896549003
+UniRef50_UPI0004027082: UDP-N-acetylmuramoyl-L-alanyl-D-glutamate synthetase|unclassified	0.0896549003
+UniRef50_UPI0003B55D48: glutathione ABC transporter ATP-binding protein	0.0896545795
+UniRef50_UPI0003B55D48: glutathione ABC transporter ATP-binding protein|unclassified	0.0896545795
+UniRef50_Q2LTR6: Phosphatidylserine decarboxylase proenzyme	0.0896526999
+UniRef50_Q2LTR6: Phosphatidylserine decarboxylase proenzyme|unclassified	0.0896526999
+UniRef50_Q88RH7	0.0896470785
+UniRef50_Q88RH7|unclassified	0.0896470785
+UniRef50_C8PFQ4: DnaJ domain protein	0.0896423052
+UniRef50_C8PFQ4: DnaJ domain protein|unclassified	0.0896423052
+UniRef50_UPI0003828BA0: hypothetical protein	0.0896407854
+UniRef50_UPI0003828BA0: hypothetical protein|unclassified	0.0896407854
+UniRef50_UPI0001FFF2A8: putative hydrolase	0.0896399820
+UniRef50_UPI0001FFF2A8: putative hydrolase|unclassified	0.0896399820
+UniRef50_C2PDK4	0.0896396090
+UniRef50_C2PDK4|unclassified	0.0896396090
+UniRef50_UPI0003B4A3A4: rRNA maturation factor	0.0896374111
+UniRef50_UPI0003B4A3A4: rRNA maturation factor|unclassified	0.0896374111
+UniRef50_UPI0003B76468: galactose-1-epimerase	0.0896370167
+UniRef50_UPI0003B76468: galactose-1-epimerase|unclassified	0.0896370167
+UniRef50_P56891: Phosphoadenosine phosphosulfate reductase	0.0896328608
+UniRef50_P56891: Phosphoadenosine phosphosulfate reductase|unclassified	0.0896328608
+UniRef50_UPI00016C4EB2: CoA transferase	0.0896327761
+UniRef50_UPI00016C4EB2: CoA transferase|unclassified	0.0896327761
+UniRef50_W4LZ78	0.0896251265
+UniRef50_W4LZ78|unclassified	0.0896251265
+UniRef50_UPI000467E15C: hypothetical protein	0.0896194915
+UniRef50_UPI000467E15C: hypothetical protein|unclassified	0.0896194915
+UniRef50_UPI0003B320A5: ChrA protein	0.0896073706
+UniRef50_UPI0003B320A5: ChrA protein|unclassified	0.0896073706
+UniRef50_A0A031AIS6	0.0896066067
+UniRef50_A0A031AIS6|unclassified	0.0896066067
+UniRef50_B5JI89	0.0895979644
+UniRef50_B5JI89|unclassified	0.0895979644
+UniRef50_UPI000262770E: putative heme iron utilization protein	0.0895757118
+UniRef50_UPI000262770E: putative heme iron utilization protein|unclassified	0.0895757118
+UniRef50_L1MF66	0.0895742153
+UniRef50_L1MF66|unclassified	0.0895742153
+UniRef50_X8M0K4: PF08719 domain protein	0.0895727401
+UniRef50_X8M0K4: PF08719 domain protein|unclassified	0.0895727401
+UniRef50_UPI00030C48EF: hypothetical protein	0.0895720553
+UniRef50_UPI00030C48EF: hypothetical protein|unclassified	0.0895720553
+UniRef50_Q0AW39: Imidazoleglycerol-phosphate dehydratase	0.0895703175
+UniRef50_Q0AW39: Imidazoleglycerol-phosphate dehydratase|unclassified	0.0895703175
+UniRef50_C9Z1R5	0.0895701005
+UniRef50_C9Z1R5|unclassified	0.0895701005
+UniRef50_UPI00035D36A0: cytochrome C biogenesis protein CcdA, partial	0.0895691417
+UniRef50_UPI00035D36A0: cytochrome C biogenesis protein CcdA, partial|unclassified	0.0895691417
+UniRef50_D5TYZ1	0.0895526954
+UniRef50_D5TYZ1|unclassified	0.0895526954
+UniRef50_K6ULB2	0.0895417109
+UniRef50_K6ULB2|unclassified	0.0895417109
+UniRef50_UPI000365BF76: hypothetical protein	0.0895342164
+UniRef50_UPI000365BF76: hypothetical protein|unclassified	0.0895342164
+UniRef50_UPI0002EEC336: hypothetical protein	0.0895245176
+UniRef50_UPI0002EEC336: hypothetical protein|unclassified	0.0895245176
+UniRef50_S9QQI8	0.0895207301
+UniRef50_S9QQI8|unclassified	0.0895207301
+UniRef50_B4S5Y8: Riboflavin biosynthesis protein RibBA	0.0895178839
+UniRef50_B4S5Y8: Riboflavin biosynthesis protein RibBA|unclassified	0.0895178839
+UniRef50_X0UF98: Marine sediment metagenome DNA, contig: S01H1_L10561 (Fragment)	0.0895084208
+UniRef50_X0UF98: Marine sediment metagenome DNA, contig: S01H1_L10561 (Fragment)|unclassified	0.0895084208
+UniRef50_UPI0003EBD820: PREDICTED: propionyl-CoA carboxylase alpha chain, mitochondrial-like	0.0895013082
+UniRef50_UPI0003EBD820: PREDICTED: propionyl-CoA carboxylase alpha chain, mitochondrial-like|unclassified	0.0895013082
+UniRef50_H5SG71: Succinoglycan biosynthesis protein ExoA	0.0894981708
+UniRef50_H5SG71: Succinoglycan biosynthesis protein ExoA|unclassified	0.0894981708
+UniRef50_S4XIK9: Iron ABC transport system substrate-binding protein	0.0894928417
+UniRef50_S4XIK9: Iron ABC transport system substrate-binding protein|unclassified	0.0894928417
+UniRef50_G8PNI5: Protein containing DUF983	0.0894927154
+UniRef50_G8PNI5: Protein containing DUF983|unclassified	0.0894927154
+UniRef50_UPI00026CD75D: rare lipoprotein A	0.0894897904
+UniRef50_UPI00026CD75D: rare lipoprotein A|unclassified	0.0894897904
+UniRef50_UPI00036BB13C: hypothetical protein	0.0894858245
+UniRef50_UPI00036BB13C: hypothetical protein|unclassified	0.0894858245
+UniRef50_UPI00037EEC73: hypothetical protein	0.0894779188
+UniRef50_UPI00037EEC73: hypothetical protein|unclassified	0.0894779188
+UniRef50_G4SUU5: Predicted ATPase (AAA+ superfamily)	0.0894721046
+UniRef50_G4SUU5: Predicted ATPase (AAA+ superfamily)|unclassified	0.0894721046
+UniRef50_A9C1V3	0.0894626321
+UniRef50_A9C1V3|unclassified	0.0894626321
+UniRef50_G2I8N9	0.0894609941
+UniRef50_G2I8N9|unclassified	0.0894609941
+UniRef50_T0U9R4: YjeF protein	0.0894579213
+UniRef50_T0U9R4: YjeF protein|unclassified	0.0894579213
+UniRef50_Q81E30: Isoleucine--tRNA ligase 2	0.0894571195
+UniRef50_Q81E30: Isoleucine--tRNA ligase 2|unclassified	0.0894571195
+UniRef50_UPI00037E4101: polyamine ABC transporter substrate-binding protein	0.0894568459
+UniRef50_UPI00037E4101: polyamine ABC transporter substrate-binding protein|unclassified	0.0894568459
+UniRef50_UPI00029B3B60: dipeptidase	0.0894537355
+UniRef50_UPI00029B3B60: dipeptidase|unclassified	0.0894537355
+UniRef50_UPI0003EDC126: PREDICTED: maleylacetoacetate isomerase	0.0894492999
+UniRef50_UPI0003EDC126: PREDICTED: maleylacetoacetate isomerase|unclassified	0.0894492999
+UniRef50_W5X841: Phage associated DNA primase	0.0894469300
+UniRef50_W5X841: Phage associated DNA primase|unclassified	0.0894469300
+UniRef50_UPI00026C85FF: hydrolase	0.0894434090
+UniRef50_UPI00026C85FF: hydrolase|unclassified	0.0894434090
+UniRef50_UPI0004755D7F: hypothetical protein, partial	0.0894384358
+UniRef50_UPI0004755D7F: hypothetical protein, partial|unclassified	0.0894384358
+UniRef50_I1B2J5	0.0894371415
+UniRef50_I1B2J5|unclassified	0.0894371415
+UniRef50_UPI000473F8F6: transposase, partial	0.0894330495
+UniRef50_UPI000473F8F6: transposase, partial|unclassified	0.0894330495
+UniRef50_Q7VFV4: Malate dehydrogenase	0.0894318424
+UniRef50_Q7VFV4: Malate dehydrogenase|unclassified	0.0894318424
+UniRef50_UPI00036CAA42: hypothetical protein	0.0894235241
+UniRef50_UPI00036CAA42: hypothetical protein|unclassified	0.0894235241
+UniRef50_R9NI54	0.0894178828
+UniRef50_R9NI54|unclassified	0.0894178828
+UniRef50_UPI0002490FA6: farnesyl-diphosphate synthase	0.0894172435
+UniRef50_UPI0002490FA6: farnesyl-diphosphate synthase|unclassified	0.0894172435
+UniRef50_UPI0003D007CA: hypothetical protein	0.0894158763
+UniRef50_UPI0003D007CA: hypothetical protein|unclassified	0.0894158763
+UniRef50_R5GCH7	0.0894149954
+UniRef50_R5GCH7|unclassified	0.0894149954
+UniRef50_I7ZDQ4	0.0894090857
+UniRef50_I7ZDQ4|unclassified	0.0894090857
+UniRef50_UPI000288B183: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA	0.0893953053
+UniRef50_UPI000288B183: tRNA uridine 5-carboxymethylaminomethyl modification enzyme GidA|unclassified	0.0893953053
+UniRef50_UPI000364FCE2: AraC family transcriptional regulator	0.0893892850
+UniRef50_UPI000364FCE2: AraC family transcriptional regulator|unclassified	0.0893892850
+UniRef50_G7M0V7: ASCH domain protein	0.0893867434
+UniRef50_G7M0V7: ASCH domain protein|unclassified	0.0893867434
+UniRef50_M5ADI0	0.0893840715
+UniRef50_M5ADI0|unclassified	0.0893840715
+UniRef50_R2J273	0.0893721591
+UniRef50_R2J273|unclassified	0.0893721591
+UniRef50_UPI0004449EEE: hypothetical protein STEHIDRAFT_170478	0.0893712058
+UniRef50_UPI0004449EEE: hypothetical protein STEHIDRAFT_170478|unclassified	0.0893712058
+UniRef50_UPI000404D8EB: regulator	0.0893683408
+UniRef50_UPI000404D8EB: regulator|unclassified	0.0893683408
+UniRef50_UPI0004270BC7: hypothetical protein	0.0893677123
+UniRef50_UPI0004270BC7: hypothetical protein|unclassified	0.0893677123
+UniRef50_UPI0003A6D827: sulfite oxidase	0.0893638525
+UniRef50_UPI0003A6D827: sulfite oxidase|unclassified	0.0893638525
+UniRef50_Q1AVI9: NADH-quinone oxidoreductase subunit K	0.0893623418
+UniRef50_Q1AVI9: NADH-quinone oxidoreductase subunit K|unclassified	0.0893623418
+UniRef50_H8WC68	0.0893534961
+UniRef50_H8WC68|unclassified	0.0893534961
+UniRef50_UPI00036CE92C: MULTISPECIES: hypothetical protein	0.0893534209
+UniRef50_UPI00036CE92C: MULTISPECIES: hypothetical protein|unclassified	0.0893534209
+UniRef50_Q7NN36: Hemin import ATP-binding protein HmuV	0.0893518593
+UniRef50_Q7NN36: Hemin import ATP-binding protein HmuV|unclassified	0.0893518593
+UniRef50_UPI0003626A74: MULTISPECIES: hypothetical protein	0.0893509961
+UniRef50_UPI0003626A74: MULTISPECIES: hypothetical protein|unclassified	0.0893509961
+UniRef50_Q9SI61: Amidophosphoribosyltransferase 1, chloroplastic	0.0893257145
+UniRef50_Q9SI61: Amidophosphoribosyltransferase 1, chloroplastic|unclassified	0.0893257145
+UniRef50_UPI0003731013: hypothetical protein	0.0893221150
+UniRef50_UPI0003731013: hypothetical protein|unclassified	0.0893221150
+UniRef50_G9QKQ0: TAXI family TRAP transporter solute receptor	0.0893188482
+UniRef50_G9QKQ0: TAXI family TRAP transporter solute receptor|unclassified	0.0893188482
+UniRef50_UPI00031FCDC6: hypothetical protein	0.0893186282
+UniRef50_UPI00031FCDC6: hypothetical protein|unclassified	0.0893186282
+UniRef50_UPI0004656C4B: hypothetical protein	0.0893155738
+UniRef50_UPI0004656C4B: hypothetical protein|unclassified	0.0893155738
+UniRef50_UPI00035FB0C3: hypothetical protein	0.0893036811
+UniRef50_UPI00035FB0C3: hypothetical protein|unclassified	0.0893036811
+UniRef50_B8GVF8: Potassium-transporting ATPase A chain	0.0893019741
+UniRef50_B8GVF8: Potassium-transporting ATPase A chain|unclassified	0.0893019741
+UniRef50_UPI000366242D: hypothetical protein	0.0893011533
+UniRef50_UPI000366242D: hypothetical protein|unclassified	0.0893011533
+UniRef50_UPI0003AD21EA: hypothetical protein	0.0892945572
+UniRef50_UPI0003AD21EA: hypothetical protein|unclassified	0.0892945572
+UniRef50_A4BE91: Rhodanese-like protein	0.0892916809
+UniRef50_A4BE91: Rhodanese-like protein|unclassified	0.0892916809
+UniRef50_UPI00036D996E: hypothetical protein	0.0892894904
+UniRef50_UPI00036D996E: hypothetical protein|unclassified	0.0892894904
+UniRef50_A0A052ILV6: Fluoroacetate dehalogenase domain protein	0.0892732022
+UniRef50_A0A052ILV6: Fluoroacetate dehalogenase domain protein|unclassified	0.0892732022
+UniRef50_UPI00046A76E6: membrane protein	0.0892699815
+UniRef50_UPI00046A76E6: membrane protein|unclassified	0.0892699815
+UniRef50_Q72NI2: Adenylate kinase	0.0892687176
+UniRef50_Q72NI2: Adenylate kinase|unclassified	0.0892687176
+UniRef50_H1V624	0.0892635113
+UniRef50_H1V624|unclassified	0.0892635113
+UniRef50_UPI000477640E: PTS mannose transporter subunit IIA	0.0892514624
+UniRef50_UPI000477640E: PTS mannose transporter subunit IIA|unclassified	0.0892514624
+UniRef50_UPI00037398DD: hypothetical protein	0.0892416692
+UniRef50_UPI00037398DD: hypothetical protein|unclassified	0.0892416692
+UniRef50_UPI00038F4D37: Anhydro-N-acetylmuramic acid kinase	0.0892364946
+UniRef50_UPI00038F4D37: Anhydro-N-acetylmuramic acid kinase|unclassified	0.0892364946
+UniRef50_V9LTS0: Intracellular chlorid channel-like protein	0.0892356112
+UniRef50_V9LTS0: Intracellular chlorid channel-like protein|unclassified	0.0892356112
+UniRef50_UPI000366C26A: hypothetical protein	0.0892352088
+UniRef50_UPI000366C26A: hypothetical protein|unclassified	0.0892352088
+UniRef50_I4KQZ4	0.0892260457
+UniRef50_I4KQZ4|unclassified	0.0892260457
+UniRef50_K9XUT5	0.0892234096
+UniRef50_K9XUT5|unclassified	0.0892234096
+UniRef50_UPI0003737153: hypothetical protein	0.0892227779
+UniRef50_UPI0003737153: hypothetical protein|unclassified	0.0892227779
+UniRef50_UPI00046E5735: phenylacetic acid degradation protein	0.0892224925
+UniRef50_UPI00046E5735: phenylacetic acid degradation protein|unclassified	0.0892224925
+UniRef50_A4W2T3	0.0892193536
+UniRef50_A4W2T3|unclassified	0.0892193536
+UniRef50_UPI000473959B: 3-oxoacyl-ACP synthase, partial	0.0892133715
+UniRef50_UPI000473959B: 3-oxoacyl-ACP synthase, partial|unclassified	0.0892133715
+UniRef50_UPI000475D066: hypothetical protein	0.0892098253
+UniRef50_UPI000475D066: hypothetical protein|unclassified	0.0892098253
+UniRef50_V9VRW6	0.0892080064
+UniRef50_V9VRW6|unclassified	0.0892080064
+UniRef50_A3JPX0	0.0892007590
+UniRef50_A3JPX0|unclassified	0.0892007590
+UniRef50_J9P1D4	0.0891996801
+UniRef50_J9P1D4|unclassified	0.0891996801
+UniRef50_R1E1B4	0.0891915558
+UniRef50_R1E1B4|unclassified	0.0891915558
+UniRef50_W5XCI5: N-acetyl-gamma-glutamyl-phosphate reductase	0.0891894775
+UniRef50_W5XCI5: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.0891894775
+UniRef50_P54122: Ribonuclease J	0.0891830563
+UniRef50_P54122: Ribonuclease J|unclassified	0.0891830563
+UniRef50_J0YYC1: KxYKxGKxW signal domain protein	0.0891800997
+UniRef50_J0YYC1: KxYKxGKxW signal domain protein|unclassified	0.0891800997
+UniRef50_UPI00037E2E56: polyphosphate kinase	0.0891736155
+UniRef50_UPI00037E2E56: polyphosphate kinase|unclassified	0.0891736155
+UniRef50_X1KAA4: Marine sediment metagenome DNA, contig: S06H3_L06649 (Fragment)	0.0891695727
+UniRef50_X1KAA4: Marine sediment metagenome DNA, contig: S06H3_L06649 (Fragment)|unclassified	0.0891695727
+UniRef50_UPI0004691A3D: multidrug ABC transporter ATP-binding protein	0.0891683393
+UniRef50_UPI0004691A3D: multidrug ABC transporter ATP-binding protein|unclassified	0.0891683393
+UniRef50_UPI0003A7AC6C: TetR family transcriptional regulator	0.0891675673
+UniRef50_UPI0003A7AC6C: TetR family transcriptional regulator|unclassified	0.0891675673
+UniRef50_UPI00046F911C: riboflavin biosynthesis protein RibF	0.0891613952
+UniRef50_UPI00046F911C: riboflavin biosynthesis protein RibF|unclassified	0.0891613952
+UniRef50_Q2SJQ1	0.0891487113
+UniRef50_Q2SJQ1|unclassified	0.0891487113
+UniRef50_UPI00004C26C1	0.0891467243
+UniRef50_UPI00004C26C1|unclassified	0.0891467243
+UniRef50_S2VV14	0.0891387723
+UniRef50_S2VV14|unclassified	0.0891387723
+UniRef50_B6AW81: Gene transfer agent	0.0891368915
+UniRef50_B6AW81: Gene transfer agent|unclassified	0.0891368915
+UniRef50_A0A014NVK4	0.0891361212
+UniRef50_A0A014NVK4|unclassified	0.0891361212
+UniRef50_D7HTB9: Alginate regulatory protein AlgR3	0.0891292332
+UniRef50_D7HTB9: Alginate regulatory protein AlgR3|unclassified	0.0891292332
+UniRef50_U7JTW3	0.0891208753
+UniRef50_U7JTW3|unclassified	0.0891208753
+UniRef50_UPI0003694E1D: hypothetical protein	0.0890980582
+UniRef50_UPI0003694E1D: hypothetical protein|unclassified	0.0890980582
+UniRef50_UPI00039DA7C1: amino acid carrier protein	0.0890861498
+UniRef50_UPI00039DA7C1: amino acid carrier protein|unclassified	0.0890861498
+UniRef50_UPI00029AA658: major facilitator superfamily permease, partial	0.0890856573
+UniRef50_UPI00029AA658: major facilitator superfamily permease, partial|unclassified	0.0890856573
+UniRef50_K1ZWX6	0.0890854850
+UniRef50_K1ZWX6|unclassified	0.0890854850
+UniRef50_C0ZZE5: Riboflavin biosynthesis protein RibBA	0.0890752431
+UniRef50_C0ZZE5: Riboflavin biosynthesis protein RibBA|unclassified	0.0890752431
+UniRef50_G4CKH6: Pirin family protein	0.0890735141
+UniRef50_G4CKH6: Pirin family protein|unclassified	0.0890735141
+UniRef50_L0Q4A9	0.0890721261
+UniRef50_L0Q4A9|unclassified	0.0890721261
+UniRef50_P55670: UPF0262 protein y4uD	0.0890716626
+UniRef50_P55670: UPF0262 protein y4uD|unclassified	0.0890716626
+UniRef50_UPI0003625B65: hypothetical protein	0.0890669530
+UniRef50_UPI0003625B65: hypothetical protein|unclassified	0.0890669530
+UniRef50_Q8TI16: Energy-coupling factor transporter ATP-binding protein EcfA	0.0890657606
+UniRef50_Q8TI16: Energy-coupling factor transporter ATP-binding protein EcfA|unclassified	0.0890657606
+UniRef50_K8WB02	0.0890656822
+UniRef50_K8WB02|unclassified	0.0890656822
+UniRef50_F6D6R1: Polymorphic outer membrane protein	0.0890605925
+UniRef50_F6D6R1: Polymorphic outer membrane protein|unclassified	0.0890605925
+UniRef50_T1A735: UDP-N-acetylglucosamine pyrophosphorylase	0.0890585870
+UniRef50_T1A735: UDP-N-acetylglucosamine pyrophosphorylase|unclassified	0.0890585870
+UniRef50_UPI00047D2C78: MFS sugar transporter	0.0890553144
+UniRef50_UPI00047D2C78: MFS sugar transporter|unclassified	0.0890553144
+UniRef50_UPI0003656D72: hypothetical protein	0.0890518325
+UniRef50_UPI0003656D72: hypothetical protein|unclassified	0.0890518325
+UniRef50_UPI00047ABF0F: peptide ABC transporter permease	0.0890510455
+UniRef50_UPI00047ABF0F: peptide ABC transporter permease|unclassified	0.0890510455
+UniRef50_UPI00046801A7: pyruvate kinase	0.0890444172
+UniRef50_UPI00046801A7: pyruvate kinase|unclassified	0.0890444172
+UniRef50_A8MF41: 4-hydroxy-tetrahydrodipicolinate reductase	0.0890418786
+UniRef50_A8MF41: 4-hydroxy-tetrahydrodipicolinate reductase|unclassified	0.0890418786
+UniRef50_UPI00036C038C: hypothetical protein	0.0890343724
+UniRef50_UPI00036C038C: hypothetical protein|unclassified	0.0890343724
+UniRef50_Q5V311: Fructose-1,6-bisphosphatase class 1 2	0.0890235545
+UniRef50_Q5V311: Fructose-1,6-bisphosphatase class 1 2|unclassified	0.0890235545
+UniRef50_UPI0004705E36: ABC transporter substrate-binding protein	0.0890064373
+UniRef50_UPI0004705E36: ABC transporter substrate-binding protein|unclassified	0.0890064373
+UniRef50_UPI0003EB1C1D: hypothetical protein	0.0890063056
+UniRef50_UPI0003EB1C1D: hypothetical protein|unclassified	0.0890063056
+UniRef50_Q3Z705: Glutamate 5-kinase	0.0890049132
+UniRef50_Q3Z705: Glutamate 5-kinase|unclassified	0.0890049132
+UniRef50_UPI0003B43DEF: leucyl/phenylalanyl-tRNA--protein transferase	0.0890034460
+UniRef50_UPI0003B43DEF: leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.0890034460
+UniRef50_S3DMU5: Putative kinetoplast-associated protein KAP	0.0890012855
+UniRef50_S3DMU5: Putative kinetoplast-associated protein KAP|unclassified	0.0890012855
+UniRef50_UPI00039CB6CD: oxidoreductase	0.0889999311
+UniRef50_UPI00039CB6CD: oxidoreductase|unclassified	0.0889999311
+UniRef50_UPI0004738B15: MFS transporter	0.0889934290
+UniRef50_UPI0004738B15: MFS transporter|unclassified	0.0889934290
+UniRef50_UPI00047145DA: cob(I)yrinic acid a c-diamide adenosyltransferase	0.0889931246
+UniRef50_UPI00047145DA: cob(I)yrinic acid a c-diamide adenosyltransferase|unclassified	0.0889931246
+UniRef50_K9IEY2	0.0889916308
+UniRef50_K9IEY2|unclassified	0.0889916308
+UniRef50_A7HKM7: Bifunctional protein GlmU	0.0889903288
+UniRef50_A7HKM7: Bifunctional protein GlmU|unclassified	0.0889903288
+UniRef50_UPI0003B33E99: phosphopentomutase	0.0889833335
+UniRef50_UPI0003B33E99: phosphopentomutase|unclassified	0.0889833335
+UniRef50_UPI0004779E49: quinone oxidoreductase	0.0889817957
+UniRef50_UPI0004779E49: quinone oxidoreductase|unclassified	0.0889817957
+UniRef50_B8FMJ2: Transcriptional regulator, HxlR family	0.0889805740
+UniRef50_B8FMJ2: Transcriptional regulator, HxlR family|unclassified	0.0889805740
+UniRef50_UPI0004699459: hypothetical protein	0.0889638523
+UniRef50_UPI0004699459: hypothetical protein|unclassified	0.0889638523
+UniRef50_UPI0003B66071: sodium:solute symporter	0.0889589939
+UniRef50_UPI0003B66071: sodium:solute symporter|unclassified	0.0889589939
+UniRef50_UPI000350D37B: PREDICTED: trifunctional purine biosynthetic protein adenosine-3-like isoform X4	0.0889571603
+UniRef50_UPI000350D37B: PREDICTED: trifunctional purine biosynthetic protein adenosine-3-like isoform X4|unclassified	0.0889571603
+UniRef50_UPI0003813F9B: hypothetical protein	0.0889555767
+UniRef50_UPI0003813F9B: hypothetical protein|unclassified	0.0889555767
+UniRef50_Q931D0: Selenide, water dikinase	0.0889539567
+UniRef50_Q931D0: Selenide, water dikinase|unclassified	0.0889539567
+UniRef50_UPI0003D2E4EA: transcriptional regulator	0.0889516930
+UniRef50_UPI0003D2E4EA: transcriptional regulator|unclassified	0.0889516930
+UniRef50_UPI000471A03D: hypothetical protein	0.0889491412
+UniRef50_UPI000471A03D: hypothetical protein|unclassified	0.0889491412
+UniRef50_UPI00047A1B6E: ABC transporter permease	0.0889478637
+UniRef50_UPI00047A1B6E: ABC transporter permease|unclassified	0.0889478637
+UniRef50_Q2Y4J0	0.0889476110
+UniRef50_Q2Y4J0|unclassified	0.0889476110
+UniRef50_UPI000477DA5B: hypothetical protein	0.0889475726
+UniRef50_UPI000477DA5B: hypothetical protein|unclassified	0.0889475726
+UniRef50_W7RGZ0: Membrane protein (Fragment)	0.0889469522
+UniRef50_W7RGZ0: Membrane protein (Fragment)|unclassified	0.0889469522
+UniRef50_UPI000379EDC0: hypothetical protein	0.0889432460
+UniRef50_UPI000379EDC0: hypothetical protein|unclassified	0.0889432460
+UniRef50_P46321: Probable licABCH operon regulator	0.0889407463
+UniRef50_P46321: Probable licABCH operon regulator|unclassified	0.0889407463
+UniRef50_A6WBC5	0.0889333531
+UniRef50_A6WBC5|unclassified	0.0889333531
+UniRef50_U1MBQ5	0.0889237398
+UniRef50_U1MBQ5|unclassified	0.0889237398
+UniRef50_B5EAS1: Homoserine O-acetyltransferase	0.0889174789
+UniRef50_B5EAS1: Homoserine O-acetyltransferase|unclassified	0.0889174789
+UniRef50_UPI0002F1F82F: hypothetical protein	0.0889116345
+UniRef50_UPI0002F1F82F: hypothetical protein|unclassified	0.0889116345
+UniRef50_A3MP74: Crossover junction endodeoxyribonuclease RuvC	0.0889106010
+UniRef50_A3MP74: Crossover junction endodeoxyribonuclease RuvC|unclassified	0.0889106010
+UniRef50_UPI00046DB442: AraC family transcriptional regulator	0.0889021308
+UniRef50_UPI00046DB442: AraC family transcriptional regulator|unclassified	0.0889021308
+UniRef50_T0NVQ2	0.0888998384
+UniRef50_T0NVQ2|unclassified	0.0888998384
+UniRef50_UPI000248C2AF: TIR protein	0.0888977792
+UniRef50_UPI000248C2AF: TIR protein|unclassified	0.0888977792
+UniRef50_A8ES53	0.0888965355
+UniRef50_A8ES53|unclassified	0.0888965355
+UniRef50_UPI00036D8B6E: hypothetical protein	0.0888932896
+UniRef50_UPI00036D8B6E: hypothetical protein|unclassified	0.0888932896
+UniRef50_UPI000262D05A: putative permease	0.0888864769
+UniRef50_UPI000262D05A: putative permease|unclassified	0.0888864769
+UniRef50_Q4FS37: Ribosomal RNA small subunit methyltransferase G	0.0888747314
+UniRef50_Q4FS37: Ribosomal RNA small subunit methyltransferase G|unclassified	0.0888747314
+UniRef50_UPI0002625F2D: dipeptide transport system permease, partial	0.0888712751
+UniRef50_UPI0002625F2D: dipeptide transport system permease, partial|unclassified	0.0888712751
+UniRef50_UPI00046F7F20: cytochrome C biogenesis protein CcmE, partial	0.0888695729
+UniRef50_UPI00046F7F20: cytochrome C biogenesis protein CcmE, partial|unclassified	0.0888695729
+UniRef50_J7J2A4	0.0888677839
+UniRef50_J7J2A4|unclassified	0.0888677839
+UniRef50_M5VMV2	0.0888635236
+UniRef50_M5VMV2|unclassified	0.0888635236
+UniRef50_B0SGE9: Pyridoxine/pyridoxamine 5'-phosphate oxidase	0.0888488783
+UniRef50_B0SGE9: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	0.0888488783
+UniRef50_A7H741: tRNA--hydroxylase	0.0888478742
+UniRef50_A7H741: tRNA--hydroxylase|unclassified	0.0888478742
+UniRef50_UPI00046FACB0: flagellar biosynthesis protein FlhB	0.0888474384
+UniRef50_UPI00046FACB0: flagellar biosynthesis protein FlhB|unclassified	0.0888474384
+UniRef50_A3LGX4	0.0888408471
+UniRef50_A3LGX4|unclassified	0.0888408471
+UniRef50_UPI0003677E0E: hypothetical protein	0.0888389012
+UniRef50_UPI0003677E0E: hypothetical protein|unclassified	0.0888389012
+UniRef50_L0NKZ5: Rhodanese	0.0888299485
+UniRef50_L0NKZ5: Rhodanese|unclassified	0.0888299485
+UniRef50_M5E279	0.0888279765
+UniRef50_M5E279|unclassified	0.0888279765
+UniRef50_UPI00037C47E4: hypothetical protein	0.0888255194
+UniRef50_UPI00037C47E4: hypothetical protein|unclassified	0.0888255194
+UniRef50_UPI000288E04E: hypothetical protein	0.0888214280
+UniRef50_UPI000288E04E: hypothetical protein|unclassified	0.0888214280
+UniRef50_C1N0X6: Predicted protein	0.0888192948
+UniRef50_C1N0X6: Predicted protein|unclassified	0.0888192948
+UniRef50_UPI0003B627AC: NAD-dependent epimerase	0.0888168123
+UniRef50_UPI0003B627AC: NAD-dependent epimerase|unclassified	0.0888168123
+UniRef50_UPI0004720CFC: acetate kinase	0.0888135383
+UniRef50_UPI0004720CFC: acetate kinase|unclassified	0.0888135383
+UniRef50_UPI000368BB4B: hypothetical protein	0.0888039182
+UniRef50_UPI000368BB4B: hypothetical protein|unclassified	0.0888039182
+UniRef50_A1SR02: Phosphopantetheine adenylyltransferase	0.0888016154
+UniRef50_A1SR02: Phosphopantetheine adenylyltransferase|unclassified	0.0888016154
+UniRef50_W1IYT0: Putative Complete genome segment 14/17	0.0887988765
+UniRef50_W1IYT0: Putative Complete genome segment 14/17|unclassified	0.0887988765
+UniRef50_UPI000374FF79: hypothetical protein	0.0887927426
+UniRef50_UPI000374FF79: hypothetical protein|unclassified	0.0887927426
+UniRef50_UPI0004731A68: phosphoheptose isomerase	0.0887858465
+UniRef50_UPI0004731A68: phosphoheptose isomerase|unclassified	0.0887858465
+UniRef50_E3QPG9: Short chain dehydrogenase	0.0887797679
+UniRef50_E3QPG9: Short chain dehydrogenase|unclassified	0.0887797679
+UniRef50_C2WW04: Chromosome segregation ATPase	0.0887788287
+UniRef50_C2WW04: Chromosome segregation ATPase|unclassified	0.0887788287
+UniRef50_UPI000368B823: alanine racemase, partial	0.0887778149
+UniRef50_UPI000368B823: alanine racemase, partial|unclassified	0.0887778149
+UniRef50_Q39DM7: Lipoprotein signal peptidase	0.0887756305
+UniRef50_Q39DM7: Lipoprotein signal peptidase|unclassified	0.0887756305
+UniRef50_Q1AVI7: NADH-quinone oxidoreductase subunit H	0.0887731758
+UniRef50_Q1AVI7: NADH-quinone oxidoreductase subunit H|unclassified	0.0887731758
+UniRef50_UPI0003A9238A: hypothetical protein	0.0887704520
+UniRef50_UPI0003A9238A: hypothetical protein|unclassified	0.0887704520
+UniRef50_S6SHR1: Alginate regulatory protein AlgP (Fragment)	0.0887680528
+UniRef50_S6SHR1: Alginate regulatory protein AlgP (Fragment)|unclassified	0.0887680528
+UniRef50_UPI00036E1F30: hypothetical protein	0.0887676278
+UniRef50_UPI00036E1F30: hypothetical protein|unclassified	0.0887676278
+UniRef50_UPI0003608616: hypothetical protein	0.0887667108
+UniRef50_UPI0003608616: hypothetical protein|unclassified	0.0887667108
+UniRef50_UPI0003B79AA8: thiamine biosynthesis lipoprotein ApbE	0.0887628492
+UniRef50_UPI0003B79AA8: thiamine biosynthesis lipoprotein ApbE|unclassified	0.0887628492
+UniRef50_R5MVC9	0.0887572484
+UniRef50_R5MVC9|unclassified	0.0887572484
+UniRef50_Q5FU29: RNA pyrophosphohydrolase	0.0887535050
+UniRef50_Q5FU29: RNA pyrophosphohydrolase|unclassified	0.0887535050
+UniRef50_K7RP68: Molybdopterin biosynthesis protein	0.0887526371
+UniRef50_K7RP68: Molybdopterin biosynthesis protein|unclassified	0.0887526371
+UniRef50_UPI0003B4027B: MULTISPECIES: 50S ribosomal protein L3	0.0887523832
+UniRef50_UPI0003B4027B: MULTISPECIES: 50S ribosomal protein L3|unclassified	0.0887523832
+UniRef50_G8PHC2: Flagellar hook capping protein	0.0887516947
+UniRef50_G8PHC2: Flagellar hook capping protein|unclassified	0.0887516947
+UniRef50_O96007: Molybdopterin synthase catalytic subunit	0.0887493848
+UniRef50_O96007: Molybdopterin synthase catalytic subunit|unclassified	0.0887493848
+UniRef50_UPI00044095DD: hypothetical protein FOMMEDRAFT_133292	0.0887464204
+UniRef50_UPI00044095DD: hypothetical protein FOMMEDRAFT_133292|unclassified	0.0887464204
+UniRef50_K9RFC6: Secreted/surface protein with fasciclin-like repeats	0.0887460644
+UniRef50_K9RFC6: Secreted/surface protein with fasciclin-like repeats|unclassified	0.0887460644
+UniRef50_UPI0002E5B881: hypothetical protein	0.0887372836
+UniRef50_UPI0002E5B881: hypothetical protein|unclassified	0.0887372836
+UniRef50_E6TQU8	0.0887330135
+UniRef50_E6TQU8|unclassified	0.0887330135
+UniRef50_P57599: FKBP-type peptidyl-prolyl cis-trans isomerase FkpA	0.0887304103
+UniRef50_P57599: FKBP-type peptidyl-prolyl cis-trans isomerase FkpA|unclassified	0.0887304103
+UniRef50_UPI0003FB19E7: hypothetical protein	0.0887279266
+UniRef50_UPI0003FB19E7: hypothetical protein|unclassified	0.0887279266
+UniRef50_A6L050: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	0.0887232576
+UniRef50_A6L050: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|unclassified	0.0887232576
+UniRef50_UPI00036CA4D6: hypothetical protein	0.0887225587
+UniRef50_UPI00036CA4D6: hypothetical protein|unclassified	0.0887225587
+UniRef50_M9RIL5	0.0887166795
+UniRef50_M9RIL5|unclassified	0.0887166795
+UniRef50_UPI00046554BB: histidinol phosphate phosphatase	0.0887111207
+UniRef50_UPI00046554BB: histidinol phosphate phosphatase|unclassified	0.0887111207
+UniRef50_U1EMI7: NAD(P)H oxidoreductase	0.0887070566
+UniRef50_U1EMI7: NAD(P)H oxidoreductase|unclassified	0.0887070566
+UniRef50_P11353: Oxygen-dependent coproporphyrinogen-III oxidase	0.0887043105
+UniRef50_P11353: Oxygen-dependent coproporphyrinogen-III oxidase|unclassified	0.0887043105
+UniRef50_UPI0003B796E5: hydrolase	0.0887023628
+UniRef50_UPI0003B796E5: hydrolase|unclassified	0.0887023628
+UniRef50_UPI00045614E4: hypothetical protein PFL1_04859	0.0886860565
+UniRef50_UPI00045614E4: hypothetical protein PFL1_04859|unclassified	0.0886860565
+UniRef50_R0FJP7: DSBA oxidoreductase	0.0886781020
+UniRef50_R0FJP7: DSBA oxidoreductase|unclassified	0.0886781020
+UniRef50_W4V5S1: Electron transfer flavoprotein	0.0886713171
+UniRef50_W4V5S1: Electron transfer flavoprotein|unclassified	0.0886713171
+UniRef50_F2HFE8: Response regulator aspartate phosphatase	0.0886339398
+UniRef50_F2HFE8: Response regulator aspartate phosphatase|unclassified	0.0886339398
+UniRef50_UPI0003B6C663: GntR family transcriptional regulator	0.0886337222
+UniRef50_UPI0003B6C663: GntR family transcriptional regulator|unclassified	0.0886337222
+UniRef50_Q82AZ8	0.0886229432
+UniRef50_Q82AZ8|unclassified	0.0886229432
+UniRef50_F2J690: Gene transfer agent-like protein	0.0886198760
+UniRef50_F2J690: Gene transfer agent-like protein|unclassified	0.0886198760
+UniRef50_Q2G718: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO	0.0886189184
+UniRef50_Q2G718: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|unclassified	0.0886189184
+UniRef50_UPI000379300B: hypothetical protein	0.0886160076
+UniRef50_UPI000379300B: hypothetical protein|unclassified	0.0886160076
+UniRef50_E4UBT3: Small heat shock protein	0.0886112286
+UniRef50_E4UBT3: Small heat shock protein|unclassified	0.0886112286
+UniRef50_Q3ZTZ2	0.0886061403
+UniRef50_Q3ZTZ2|unclassified	0.0886061403
+UniRef50_B3T0X6: Putative DJ-1/PfpI family protein	0.0886045726
+UniRef50_B3T0X6: Putative DJ-1/PfpI family protein|unclassified	0.0886045726
+UniRef50_UPI0002192B45: transcriptional regulator	0.0886026801
+UniRef50_UPI0002192B45: transcriptional regulator|unclassified	0.0886026801
+UniRef50_P96113: Peptide deformylase	0.0885971435
+UniRef50_P96113: Peptide deformylase|unclassified	0.0885971435
+UniRef50_F9GT79: UPF0125 protein GGA_0527	0.0885822802
+UniRef50_F9GT79: UPF0125 protein GGA_0527|unclassified	0.0885822802
+UniRef50_UPI0003B74777: acetyltransferase	0.0885810022
+UniRef50_UPI0003B74777: acetyltransferase|unclassified	0.0885810022
+UniRef50_UPI00004C4BA2: Na+/H+ antiporter NhaA	0.0885752683
+UniRef50_UPI00004C4BA2: Na+/H+ antiporter NhaA|unclassified	0.0885752683
+UniRef50_UPI00041708C1: hypothetical protein	0.0885656894
+UniRef50_UPI00041708C1: hypothetical protein|unclassified	0.0885656894
+UniRef50_UPI0003665C87: hypothetical protein	0.0885600973
+UniRef50_UPI0003665C87: hypothetical protein|unclassified	0.0885600973
+UniRef50_S4XBL3	0.0885569437
+UniRef50_S4XBL3|unclassified	0.0885569437
+UniRef50_UPI00036314CE: hypothetical protein	0.0885564992
+UniRef50_UPI00036314CE: hypothetical protein|unclassified	0.0885564992
+UniRef50_R4YIU4: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.0885534801
+UniRef50_R4YIU4: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|unclassified	0.0885534801
+UniRef50_UPI0003B43086: hypothetical protein	0.0885526513
+UniRef50_UPI0003B43086: hypothetical protein|unclassified	0.0885526513
+UniRef50_UPI00035F3854: hypothetical protein	0.0885507383
+UniRef50_UPI00035F3854: hypothetical protein|unclassified	0.0885507383
+UniRef50_UPI0004700B5D: multidrug MFS transporter	0.0885404203
+UniRef50_UPI0004700B5D: multidrug MFS transporter|unclassified	0.0885404203
+UniRef50_W7BS74: Putative exodeoxyribonuclease V	0.0885397730
+UniRef50_W7BS74: Putative exodeoxyribonuclease V|unclassified	0.0885397730
+UniRef50_Q57CY1: Isoprenyl transferase	0.0885393400
+UniRef50_Q57CY1: Isoprenyl transferase|unclassified	0.0885393400
+UniRef50_A0A024HBK4	0.0885278928
+UniRef50_A0A024HBK4|unclassified	0.0885278928
+UniRef50_Q55E06: Delta-aminolevulinic acid dehydratase	0.0885164977
+UniRef50_Q55E06: Delta-aminolevulinic acid dehydratase|unclassified	0.0885164977
+UniRef50_Q11QI2	0.0885152182
+UniRef50_Q11QI2|unclassified	0.0885152182
+UniRef50_UPI00021954C2: thymidylate kinase	0.0885110226
+UniRef50_UPI00021954C2: thymidylate kinase|unclassified	0.0885110226
+UniRef50_UPI00038131B7: hypothetical protein	0.0885102859
+UniRef50_UPI00038131B7: hypothetical protein|unclassified	0.0885102859
+UniRef50_I1EII6	0.0885060704
+UniRef50_I1EII6|unclassified	0.0885060704
+UniRef50_N0CEY8	0.0885051627
+UniRef50_N0CEY8|unclassified	0.0885051627
+UniRef50_UPI00040C16D0: hypothetical protein	0.0885048313
+UniRef50_UPI00040C16D0: hypothetical protein|unclassified	0.0885048313
+UniRef50_UPI000476FB1B: hypothetical protein	0.0884953475
+UniRef50_UPI000476FB1B: hypothetical protein|unclassified	0.0884953475
+UniRef50_UPI0003C12F22: PREDICTED: chorismate synthase, chloroplastic-like	0.0884911637
+UniRef50_UPI0003C12F22: PREDICTED: chorismate synthase, chloroplastic-like|unclassified	0.0884911637
+UniRef50_Q28LN6	0.0884851556
+UniRef50_Q28LN6|unclassified	0.0884851556
+UniRef50_B6IUD4: L-asparaginase II	0.0884821368
+UniRef50_B6IUD4: L-asparaginase II|unclassified	0.0884821368
+UniRef50_UPI00034B23A9: short-chain dehydrogenase	0.0884803863
+UniRef50_UPI00034B23A9: short-chain dehydrogenase|unclassified	0.0884803863
+UniRef50_Q9L6V4: Transposase (Fragment)	0.0884660633
+UniRef50_Q9L6V4: Transposase (Fragment)|unclassified	0.0884660633
+UniRef50_U7I221	0.0884612024
+UniRef50_U7I221|unclassified	0.0884612024
+UniRef50_UPI000262CFED: HAD-superfamily hydrolase, subfamily IA, variant 3	0.0884468971
+UniRef50_UPI000262CFED: HAD-superfamily hydrolase, subfamily IA, variant 3|unclassified	0.0884468971
+UniRef50_UPI0002D98B1B: hypothetical protein	0.0884358987
+UniRef50_UPI0002D98B1B: hypothetical protein|unclassified	0.0884358987
+UniRef50_W7A0S6	0.0884329678
+UniRef50_W7A0S6|unclassified	0.0884329678
+UniRef50_U1EQ22	0.0884289632
+UniRef50_U1EQ22|unclassified	0.0884289632
+UniRef50_UPI00035ECC54: hypothetical protein	0.0884258549
+UniRef50_UPI00035ECC54: hypothetical protein|unclassified	0.0884258549
+UniRef50_W1YCR6: DNA polymerase II protein (Fragment)	0.0884223877
+UniRef50_W1YCR6: DNA polymerase II protein (Fragment)|unclassified	0.0884223877
+UniRef50_P50434: Serine hydroxymethyltransferase (Fragment)	0.0884214602
+UniRef50_P50434: Serine hydroxymethyltransferase (Fragment)|unclassified	0.0884214602
+UniRef50_Q7VR09: Asparagine--tRNA ligase	0.0884173313
+UniRef50_Q7VR09: Asparagine--tRNA ligase|unclassified	0.0884173313
+UniRef50_X6HR74	0.0884157481
+UniRef50_X6HR74|unclassified	0.0884157481
+UniRef50_L4CWX4: Protein traI	0.0884023058
+UniRef50_L4CWX4: Protein traI|unclassified	0.0884023058
+UniRef50_UPI00035E2411: hypothetical protein	0.0883890577
+UniRef50_UPI00035E2411: hypothetical protein|unclassified	0.0883890577
+UniRef50_F0YRQ6	0.0883864167
+UniRef50_F0YRQ6|unclassified	0.0883864167
+UniRef50_UPI00036BDF03: hypothetical protein	0.0883806074
+UniRef50_UPI00036BDF03: hypothetical protein|unclassified	0.0883806074
+UniRef50_UPI000363639A: hypothetical protein	0.0883794456
+UniRef50_UPI000363639A: hypothetical protein|unclassified	0.0883794456
+UniRef50_UPI00036FF110: hypothetical protein	0.0883730976
+UniRef50_UPI00036FF110: hypothetical protein|unclassified	0.0883730976
+UniRef50_UPI000289F8D3: methionine aminotransferase	0.0883701852
+UniRef50_UPI000289F8D3: methionine aminotransferase|unclassified	0.0883701852
+UniRef50_UPI00036866D2: hypothetical protein	0.0883649833
+UniRef50_UPI00036866D2: hypothetical protein|unclassified	0.0883649833
+UniRef50_A9M0F1: Lipoprotein	0.0883649796
+UniRef50_A9M0F1: Lipoprotein|unclassified	0.0883649796
+UniRef50_UPI0003B3BF9F: transcriptional regulator	0.0883608364
+UniRef50_UPI0003B3BF9F: transcriptional regulator|unclassified	0.0883608364
+UniRef50_UPI000329BBE4	0.0883463646
+UniRef50_UPI000329BBE4|unclassified	0.0883463646
+UniRef50_A0A017T8S7	0.0883428744
+UniRef50_A0A017T8S7|unclassified	0.0883428744
+UniRef50_UPI000478BECB: aminoglycoside phosphotransferase	0.0883416504
+UniRef50_UPI000478BECB: aminoglycoside phosphotransferase|unclassified	0.0883416504
+UniRef50_V5WDP5: Methionine-(R)-sulfoxide reductase	0.0883382008
+UniRef50_V5WDP5: Methionine-(R)-sulfoxide reductase|unclassified	0.0883382008
+UniRef50_UPI00036EA9D7: hypothetical protein	0.0883209725
+UniRef50_UPI00036EA9D7: hypothetical protein|unclassified	0.0883209725
+UniRef50_UPI0003B51132: poly-A polymerase	0.0883169299
+UniRef50_UPI0003B51132: poly-A polymerase|unclassified	0.0883169299
+UniRef50_UPI00035CB3DD: hypothetical protein	0.0883035060
+UniRef50_UPI00035CB3DD: hypothetical protein|unclassified	0.0883035060
+UniRef50_UPI0003056A46: hypothetical protein	0.0882969992
+UniRef50_UPI0003056A46: hypothetical protein|unclassified	0.0882969992
+UniRef50_A0PXA5: Glutamate 5-kinase	0.0882969635
+UniRef50_A0PXA5: Glutamate 5-kinase|unclassified	0.0882969635
+UniRef50_UPI0003FD71A6: C4-dicarboxylate ABC transporter	0.0882957375
+UniRef50_UPI0003FD71A6: C4-dicarboxylate ABC transporter|unclassified	0.0882957375
+UniRef50_J4YE00: Two-component response regulator	0.0882830375
+UniRef50_J4YE00: Two-component response regulator|unclassified	0.0882830375
+UniRef50_D0L012: Fe-S metabolism associated SufE	0.0882786518
+UniRef50_D0L012: Fe-S metabolism associated SufE|unclassified	0.0882786518
+UniRef50_G4F6G1	0.0882771209
+UniRef50_G4F6G1|unclassified	0.0882771209
+UniRef50_Q3JSR5	0.0882756802
+UniRef50_Q3JSR5|unclassified	0.0882756802
+UniRef50_UPI0003638CE1: hypothetical protein	0.0882739023
+UniRef50_UPI0003638CE1: hypothetical protein|unclassified	0.0882739023
+UniRef50_Q02C42: Allantoinase	0.0882718363
+UniRef50_Q02C42: Allantoinase|unclassified	0.0882718363
+UniRef50_Q67P67: Chemotaxis response regulator protein-glutamate methylesterase	0.0882695671
+UniRef50_Q67P67: Chemotaxis response regulator protein-glutamate methylesterase|unclassified	0.0882695671
+UniRef50_UPI00045DC140	0.0882613793
+UniRef50_UPI00045DC140|unclassified	0.0882613793
+UniRef50_Q1QWA6: Pyridoxine/pyridoxamine 5'-phosphate oxidase	0.0882585737
+UniRef50_Q1QWA6: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	0.0882585737
+UniRef50_A4XC60	0.0882557512
+UniRef50_A4XC60|unclassified	0.0882557512
+UniRef50_UPI00016C420B: flagellar basal body P-ring protein	0.0882480573
+UniRef50_UPI00016C420B: flagellar basal body P-ring protein|unclassified	0.0882480573
+UniRef50_UPI0003347369: PREDICTED: translation initiation factor IF-2-like	0.0882462054
+UniRef50_UPI0003347369: PREDICTED: translation initiation factor IF-2-like|unclassified	0.0882462054
+UniRef50_I2JN73: Signal transduction protein	0.0882286605
+UniRef50_I2JN73: Signal transduction protein|unclassified	0.0882286605
+UniRef50_UPI000470C565: hypothetical protein	0.0882228089
+UniRef50_UPI000470C565: hypothetical protein|unclassified	0.0882228089
+UniRef50_Q95YF6: Molluscan shell protein 1	0.0882171624
+UniRef50_Q95YF6: Molluscan shell protein 1|unclassified	0.0882171624
+UniRef50_Q02252: Methylmalonate-semialdehyde dehydrogenase [acylating], mitochondrial	0.0882129711
+UniRef50_Q02252: Methylmalonate-semialdehyde dehydrogenase [acylating], mitochondrial|unclassified	0.0882129711
+UniRef50_UPI00047DF5AE: peptidase M6	0.0881981555
+UniRef50_UPI00047DF5AE: peptidase M6|unclassified	0.0881981555
+UniRef50_UPI000376B0C5: hypothetical protein	0.0881908574
+UniRef50_UPI000376B0C5: hypothetical protein|unclassified	0.0881908574
+UniRef50_UPI0003B61417: RNA polymerase subunit sigma-24	0.0881893845
+UniRef50_UPI0003B61417: RNA polymerase subunit sigma-24|unclassified	0.0881893845
+UniRef50_UPI00038F7D5E: Allantoinase	0.0881857058
+UniRef50_UPI00038F7D5E: Allantoinase|unclassified	0.0881857058
+UniRef50_K9EE72	0.0881757871
+UniRef50_K9EE72|unclassified	0.0881757871
+UniRef50_UPI00032B1804: PREDICTED: 39S ribosomal protein L36, mitochondrial	0.0881749155
+UniRef50_UPI00032B1804: PREDICTED: 39S ribosomal protein L36, mitochondrial|unclassified	0.0881749155
+UniRef50_A0A016RX05	0.0881746458
+UniRef50_A0A016RX05|unclassified	0.0881746458
+UniRef50_UPI000255C11E: glutamine amidotransferase	0.0881639143
+UniRef50_UPI000255C11E: glutamine amidotransferase|unclassified	0.0881639143
+UniRef50_W7DAL4: Wall-associated protein	0.0881583184
+UniRef50_W7DAL4: Wall-associated protein|unclassified	0.0881583184
+UniRef50_W1AMS3	0.0881542766
+UniRef50_W1AMS3|unclassified	0.0881542766
+UniRef50_C9D174: Recombinase	0.0881532430
+UniRef50_C9D174: Recombinase|unclassified	0.0881532430
+UniRef50_UPI0003B74281: ABC transporter	0.0881478091
+UniRef50_UPI0003B74281: ABC transporter|unclassified	0.0881478091
+UniRef50_UPI0002EE894F: hypothetical protein	0.0881415460
+UniRef50_UPI0002EE894F: hypothetical protein|unclassified	0.0881415460
+UniRef50_E6QV94	0.0881414076
+UniRef50_E6QV94|unclassified	0.0881414076
+UniRef50_D3CU37	0.0881407164
+UniRef50_D3CU37|unclassified	0.0881407164
+UniRef50_UPI00036B9460: hypothetical protein	0.0881355319
+UniRef50_UPI00036B9460: hypothetical protein|unclassified	0.0881355319
+UniRef50_B2KEK1: Adenylate kinase	0.0881271157
+UniRef50_B2KEK1: Adenylate kinase|unclassified	0.0881271157
+UniRef50_UPI000381BF29: hypothetical protein, partial	0.0881247773
+UniRef50_UPI000381BF29: hypothetical protein, partial|unclassified	0.0881247773
+UniRef50_E4L697	0.0881230522
+UniRef50_E4L697|unclassified	0.0881230522
+UniRef50_UPI0002D4A249: hypothetical protein	0.0881144555
+UniRef50_UPI0002D4A249: hypothetical protein|unclassified	0.0881144555
+UniRef50_UPI000366DF3F: hypothetical protein	0.0881140046
+UniRef50_UPI000366DF3F: hypothetical protein|unclassified	0.0881140046
+UniRef50_C7RE27: Cobalt transport protein	0.0881131366
+UniRef50_C7RE27: Cobalt transport protein|unclassified	0.0881131366
+UniRef50_Q30YH0: UPF0234 protein Dde_2479	0.0881009413
+UniRef50_Q30YH0: UPF0234 protein Dde_2479|unclassified	0.0881009413
+UniRef50_UPI00036AEEF7: hypothetical protein	0.0880876978
+UniRef50_UPI00036AEEF7: hypothetical protein|unclassified	0.0880876978
+UniRef50_Q5Z642: HGWP repeat containing protein-like	0.0880797154
+UniRef50_Q5Z642: HGWP repeat containing protein-like|unclassified	0.0880797154
+UniRef50_K4LVA8	0.0880791956
+UniRef50_K4LVA8|unclassified	0.0880791956
+UniRef50_UPI00036042DD: hypothetical protein	0.0880674932
+UniRef50_UPI00036042DD: hypothetical protein|unclassified	0.0880674932
+UniRef50_R6I4A7: C4-dicarboxylate transport protein	0.0880641321
+UniRef50_R6I4A7: C4-dicarboxylate transport protein|unclassified	0.0880641321
+UniRef50_C6NX96: Transcriptional regulator, MerR family	0.0880601726
+UniRef50_C6NX96: Transcriptional regulator, MerR family|unclassified	0.0880601726
+UniRef50_A0A058Z9G9	0.0880550852
+UniRef50_A0A058Z9G9|unclassified	0.0880550852
+UniRef50_UPI00036B5B66: hypothetical protein	0.0880538980
+UniRef50_UPI00036B5B66: hypothetical protein|unclassified	0.0880538980
+UniRef50_I1B264	0.0880531975
+UniRef50_I1B264|unclassified	0.0880531975
+UniRef50_T1ABD3: Excinuclease ABC subunit C (Fragment)	0.0880487285
+UniRef50_T1ABD3: Excinuclease ABC subunit C (Fragment)|unclassified	0.0880487285
+UniRef50_UPI0003B67747: 3-mercaptopyruvate sulfurtransferase	0.0880455252
+UniRef50_UPI0003B67747: 3-mercaptopyruvate sulfurtransferase|unclassified	0.0880455252
+UniRef50_V5INY7	0.0880434356
+UniRef50_V5INY7|unclassified	0.0880434356
+UniRef50_U3AIN5	0.0880415862
+UniRef50_U3AIN5|unclassified	0.0880415862
+UniRef50_W6X8L5: TadE family protein	0.0880373586
+UniRef50_W6X8L5: TadE family protein|unclassified	0.0880373586
+UniRef50_W5WIY6	0.0880363654
+UniRef50_W5WIY6|unclassified	0.0880363654
+UniRef50_UPI000369B8D0: hypothetical protein	0.0880324939
+UniRef50_UPI000369B8D0: hypothetical protein|unclassified	0.0880324939
+UniRef50_N9QL56	0.0880316151
+UniRef50_N9QL56|unclassified	0.0880316151
+UniRef50_E4UCK4	0.0880258749
+UniRef50_E4UCK4|unclassified	0.0880258749
+UniRef50_UPI0003B70C5F: cell division protein MraZ	0.0880246498
+UniRef50_UPI0003B70C5F: cell division protein MraZ|unclassified	0.0880246498
+UniRef50_F3U1Y7: Phage tail protein I	0.0880114215
+UniRef50_F3U1Y7: Phage tail protein I|unclassified	0.0880114215
+UniRef50_P74211: Pyridoxine/pyridoxamine 5'-phosphate oxidase	0.0880105624
+UniRef50_P74211: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	0.0880105624
+UniRef50_UPI0004207977: hypothetical protein	0.0880086028
+UniRef50_UPI0004207977: hypothetical protein|unclassified	0.0880086028
+UniRef50_Q46WL6: Imidazole glycerol phosphate synthase subunit HisH	0.0880074310
+UniRef50_Q46WL6: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.0880074310
+UniRef50_UPI00041016F2: antifreeze protein	0.0880070629
+UniRef50_UPI00041016F2: antifreeze protein|unclassified	0.0880070629
+UniRef50_UPI00016C3F6F: 3,4-dihydroxy-2-butanone 4-phosphate synthase	0.0880067299
+UniRef50_UPI00016C3F6F: 3,4-dihydroxy-2-butanone 4-phosphate synthase|unclassified	0.0880067299
+UniRef50_D5ATK1: TRAP C4-dicarboxylate transport system permease, DctM-2 subunit	0.0880066514
+UniRef50_D5ATK1: TRAP C4-dicarboxylate transport system permease, DctM-2 subunit|unclassified	0.0880066514
+UniRef50_UPI00036988EF: hypothetical protein, partial	0.0880052472
+UniRef50_UPI00036988EF: hypothetical protein, partial|unclassified	0.0880052472
+UniRef50_B9J9U3: Beta-lactamase family protein	0.0880014483
+UniRef50_B9J9U3: Beta-lactamase family protein|unclassified	0.0880014483
+UniRef50_Q27793: Bifunctional dihydrofolate reductase-thymidylate synthase	0.0879865129
+UniRef50_Q27793: Bifunctional dihydrofolate reductase-thymidylate synthase|unclassified	0.0879865129
+UniRef50_Q4V2Q5	0.0879863748
+UniRef50_Q4V2Q5|unclassified	0.0879863748
+UniRef50_F3FW75	0.0879852985
+UniRef50_F3FW75|unclassified	0.0879852985
+UniRef50_UPI0004741BEC: CTP synthetase, partial	0.0879847137
+UniRef50_UPI0004741BEC: CTP synthetase, partial|unclassified	0.0879847137
+UniRef50_UPI0004675E29: transcriptional regulator	0.0879804289
+UniRef50_UPI0004675E29: transcriptional regulator|unclassified	0.0879804289
+UniRef50_UPI0003B3E253: aldehyde-activating protein	0.0879747180
+UniRef50_UPI0003B3E253: aldehyde-activating protein|unclassified	0.0879747180
+UniRef50_V4AT56	0.0879739726
+UniRef50_V4AT56|unclassified	0.0879739726
+UniRef50_UPI0001E89F57: glycerophosphoryl diester phosphodiesterase	0.0879735956
+UniRef50_UPI0001E89F57: glycerophosphoryl diester phosphodiesterase|unclassified	0.0879735956
+UniRef50_T0HWK3	0.0879681985
+UniRef50_T0HWK3|unclassified	0.0879681985
+UniRef50_B9TQF6	0.0879626449
+UniRef50_B9TQF6|unclassified	0.0879626449
+UniRef50_U7U7Z5	0.0879527534
+UniRef50_U7U7Z5|unclassified	0.0879527534
+UniRef50_UPI0003740E86: hypothetical protein	0.0879514169
+UniRef50_UPI0003740E86: hypothetical protein|unclassified	0.0879514169
+UniRef50_UPI0003FD0211: hypothetical protein	0.0879506813
+UniRef50_UPI0003FD0211: hypothetical protein|unclassified	0.0879506813
+UniRef50_M1W9U9: Related to wound-responsive protein KED	0.0879486864
+UniRef50_M1W9U9: Related to wound-responsive protein KED|unclassified	0.0879486864
+UniRef50_UPI00034D08B0: hypothetical protein	0.0879484091
+UniRef50_UPI00034D08B0: hypothetical protein|unclassified	0.0879484091
+UniRef50_UPI0002555DED: 7-cyano-7-deazaguanine reductase, partial	0.0879308209
+UniRef50_UPI0002555DED: 7-cyano-7-deazaguanine reductase, partial|unclassified	0.0879308209
+UniRef50_A0A059LPK5	0.0879290095
+UniRef50_A0A059LPK5|unclassified	0.0879290095
+UniRef50_UPI0003090106: cyclase	0.0879252251
+UniRef50_UPI0003090106: cyclase|unclassified	0.0879252251
+UniRef50_Q9Y5P6: Mannose-1-phosphate guanyltransferase beta	0.0879211288
+UniRef50_Q9Y5P6: Mannose-1-phosphate guanyltransferase beta|unclassified	0.0879211288
+UniRef50_UPI0003943241: PREDICTED: mucin-1-like	0.0879158140
+UniRef50_UPI0003943241: PREDICTED: mucin-1-like|unclassified	0.0879158140
+UniRef50_E9H7E1	0.0879069185
+UniRef50_E9H7E1|unclassified	0.0879069185
+UniRef50_F2UB74	0.0878904050
+UniRef50_F2UB74|unclassified	0.0878904050
+UniRef50_Q9X1B8: Isoprenyl transferase	0.0878902321
+UniRef50_Q9X1B8: Isoprenyl transferase|unclassified	0.0878902321
+UniRef50_Q3JJR8	0.0878889750
+UniRef50_Q3JJR8|unclassified	0.0878889750
+UniRef50_L1KFL3	0.0878850561
+UniRef50_L1KFL3|unclassified	0.0878850561
+UniRef50_UPI0003A72D3D: hypothetical protein	0.0878761103
+UniRef50_UPI0003A72D3D: hypothetical protein|unclassified	0.0878761103
+UniRef50_UPI00046ADE2C: hypothetical protein	0.0878751317
+UniRef50_UPI00046ADE2C: hypothetical protein|unclassified	0.0878751317
+UniRef50_UPI00016B25CE: PhoB family transcriptional regulator	0.0878691279
+UniRef50_UPI00016B25CE: PhoB family transcriptional regulator|unclassified	0.0878691279
+UniRef50_C0ZS23	0.0878635993
+UniRef50_C0ZS23|unclassified	0.0878635993
+UniRef50_X0XNZ8: Marine sediment metagenome DNA, contig: S01H1_S39256 (Fragment)	0.0878604712
+UniRef50_X0XNZ8: Marine sediment metagenome DNA, contig: S01H1_S39256 (Fragment)|unclassified	0.0878604712
+UniRef50_U5T8A8	0.0878595012
+UniRef50_U5T8A8|unclassified	0.0878595012
+UniRef50_UPI0003709BC9: membrane protein	0.0878581458
+UniRef50_UPI0003709BC9: membrane protein|unclassified	0.0878581458
+UniRef50_Q31IE3: Probable nicotinate-nucleotide adenylyltransferase	0.0878579243
+UniRef50_Q31IE3: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.0878579243
+UniRef50_Q59330: Phosphate acetyltransferase	0.0878518879
+UniRef50_Q59330: Phosphate acetyltransferase|unclassified	0.0878518879
+UniRef50_UPI000363D5B7: hypothetical protein	0.0878513753
+UniRef50_UPI000363D5B7: hypothetical protein|unclassified	0.0878513753
+UniRef50_G9EIT5	0.0878481133
+UniRef50_G9EIT5|unclassified	0.0878481133
+UniRef50_UPI00047263C5: hypothetical protein	0.0878439637
+UniRef50_UPI00047263C5: hypothetical protein|unclassified	0.0878439637
+UniRef50_O66490: Adenylate kinase	0.0878431793
+UniRef50_O66490: Adenylate kinase|unclassified	0.0878431793
+UniRef50_D3EL18: LmbE family protein	0.0878424541
+UniRef50_D3EL18: LmbE family protein|unclassified	0.0878424541
+UniRef50_UPI00042A79CF: hypothetical protein	0.0878401793
+UniRef50_UPI00042A79CF: hypothetical protein|unclassified	0.0878401793
+UniRef50_X2ND27	0.0878333949
+UniRef50_X2ND27|unclassified	0.0878333949
+UniRef50_Q39HV3	0.0878327912
+UniRef50_Q39HV3|unclassified	0.0878327912
+UniRef50_P16858: Glyceraldehyde-3-phosphate dehydrogenase	0.0878250258
+UniRef50_P16858: Glyceraldehyde-3-phosphate dehydrogenase|unclassified	0.0878250258
+UniRef50_UPI000475C456: hypothetical protein, partial	0.0878249679
+UniRef50_UPI000475C456: hypothetical protein, partial|unclassified	0.0878249679
+UniRef50_S7U5I8	0.0878202433
+UniRef50_S7U5I8|unclassified	0.0878202433
+UniRef50_UPI0003B61566: hypothetical protein	0.0878175062
+UniRef50_UPI0003B61566: hypothetical protein|unclassified	0.0878175062
+UniRef50_P04179: Superoxide dismutase [Mn], mitochondrial	0.0877979707
+UniRef50_P04179: Superoxide dismutase [Mn], mitochondrial|unclassified	0.0877979707
+UniRef50_UPI0003A41CD8: hypothetical protein	0.0877955952
+UniRef50_UPI0003A41CD8: hypothetical protein|unclassified	0.0877955952
+UniRef50_K9ERS2	0.0877930597
+UniRef50_K9ERS2|unclassified	0.0877930597
+UniRef50_UPI000365B100: hypothetical protein	0.0877919243
+UniRef50_UPI000365B100: hypothetical protein|unclassified	0.0877919243
+UniRef50_Q2CBD6	0.0877918293
+UniRef50_Q2CBD6|unclassified	0.0877918293
+UniRef50_UPI00037FE199: MULTISPECIES: hypothetical protein	0.0877870647
+UniRef50_UPI00037FE199: MULTISPECIES: hypothetical protein|unclassified	0.0877870647
+UniRef50_UPI00042C9909: PREDICTED: neuron navigator 1-like	0.0877869346
+UniRef50_UPI00042C9909: PREDICTED: neuron navigator 1-like|unclassified	0.0877869346
+UniRef50_C9RUD5: SPP1 family phage head morphogenesis protein	0.0877863346
+UniRef50_C9RUD5: SPP1 family phage head morphogenesis protein|unclassified	0.0877863346
+UniRef50_G8M5D3: Transcriptional regulator/antitoxin, MazE	0.0877849290
+UniRef50_G8M5D3: Transcriptional regulator/antitoxin, MazE|unclassified	0.0877849290
+UniRef50_A5F828: GAF family protein	0.0877842883
+UniRef50_A5F828: GAF family protein|unclassified	0.0877842883
+UniRef50_L0WIY2	0.0877821111
+UniRef50_L0WIY2|unclassified	0.0877821111
+UniRef50_UPI00021978F5: Cof-like hydrolase family protein	0.0877817177
+UniRef50_UPI00021978F5: Cof-like hydrolase family protein|unclassified	0.0877817177
+UniRef50_Q6AR68: Related to soluble lytic murein transglycosylase [precursor]	0.0877790766
+UniRef50_Q6AR68: Related to soluble lytic murein transglycosylase [precursor]|unclassified	0.0877790766
+UniRef50_UPI00034A0885: hypothetical protein	0.0877775987
+UniRef50_UPI00034A0885: hypothetical protein|unclassified	0.0877775987
+UniRef50_UPI00016C454E: Histone deacetylase superfamily protein	0.0877739839
+UniRef50_UPI00016C454E: Histone deacetylase superfamily protein|unclassified	0.0877739839
+UniRef50_UPI0003B392D1: phosphohydrolase	0.0877640392
+UniRef50_UPI0003B392D1: phosphohydrolase|unclassified	0.0877640392
+UniRef50_UPI0004560EC5: hypothetical protein PFL1_02580	0.0877636256
+UniRef50_UPI0004560EC5: hypothetical protein PFL1_02580|unclassified	0.0877636256
+UniRef50_UPI0004279204: ABC transporter substrate-binding protein	0.0877630837
+UniRef50_UPI0004279204: ABC transporter substrate-binding protein|unclassified	0.0877630837
+UniRef50_O05617: Vanillate O-demethylase oxidoreductase	0.0877628085
+UniRef50_O05617: Vanillate O-demethylase oxidoreductase|unclassified	0.0877628085
+UniRef50_UPI00036D6957: hypothetical protein	0.0877584402
+UniRef50_UPI00036D6957: hypothetical protein|unclassified	0.0877584402
+UniRef50_UPI0003658C33: hypothetical protein	0.0877583239
+UniRef50_UPI0003658C33: hypothetical protein|unclassified	0.0877583239
+UniRef50_UPI0003A06ED7: sugar ABC transporter	0.0877385160
+UniRef50_UPI0003A06ED7: sugar ABC transporter|unclassified	0.0877385160
+UniRef50_S1SDR1: Chromosome (Plasmid) partitioning protein ParA / Sporulation initiation inhibitor protein Soj	0.0877370934
+UniRef50_S1SDR1: Chromosome (Plasmid) partitioning protein ParA / Sporulation initiation inhibitor protein Soj|unclassified	0.0877370934
+UniRef50_A0A022GLF6: Alpha/beta hydrolase	0.0877330460
+UniRef50_A0A022GLF6: Alpha/beta hydrolase|unclassified	0.0877330460
+UniRef50_UPI0003A05662: mannose-1-phosphate guanylyltransferase	0.0877251881
+UniRef50_UPI0003A05662: mannose-1-phosphate guanylyltransferase|unclassified	0.0877251881
+UniRef50_UPI0003B60A17: thymidylate kinase	0.0877223428
+UniRef50_UPI0003B60A17: thymidylate kinase|unclassified	0.0877223428
+UniRef50_K2HN53	0.0877145057
+UniRef50_K2HN53|unclassified	0.0877145057
+UniRef50_K4MTU9: Na+/H+ antiporter MnhB subunit-like protein	0.0877125993
+UniRef50_K4MTU9: Na+/H+ antiporter MnhB subunit-like protein|unclassified	0.0877125993
+UniRef50_UPI000361FE6C: hypothetical protein	0.0877097660
+UniRef50_UPI000361FE6C: hypothetical protein|unclassified	0.0877097660
+UniRef50_Q48KZ0: ATP-dependent Clp protease proteolytic subunit	0.0877089500
+UniRef50_Q48KZ0: ATP-dependent Clp protease proteolytic subunit|unclassified	0.0877089500
+UniRef50_M9RRZ1	0.0877046778
+UniRef50_M9RRZ1|unclassified	0.0877046778
+UniRef50_R4LGH4	0.0876975316
+UniRef50_R4LGH4|unclassified	0.0876975316
+UniRef50_B2TCX7: Periplasmic binding protein/LacI transcriptional regulator	0.0876972919
+UniRef50_B2TCX7: Periplasmic binding protein/LacI transcriptional regulator|unclassified	0.0876972919
+UniRef50_X1PSC2: Marine sediment metagenome DNA, contig: S12H4_C02629 (Fragment)	0.0876917499
+UniRef50_X1PSC2: Marine sediment metagenome DNA, contig: S12H4_C02629 (Fragment)|unclassified	0.0876917499
+UniRef50_X0WZP0: Marine sediment metagenome DNA, contig: S01H1_S34159 (Fragment)	0.0876899495
+UniRef50_X0WZP0: Marine sediment metagenome DNA, contig: S01H1_S34159 (Fragment)|unclassified	0.0876899495
+UniRef50_UPI00040B733A: hypothetical protein	0.0876874424
+UniRef50_UPI00040B733A: hypothetical protein|unclassified	0.0876874424
+UniRef50_T1ASI6: Transcriptional regulator, LacI family (Fragment)	0.0876831887
+UniRef50_T1ASI6: Transcriptional regulator, LacI family (Fragment)|unclassified	0.0876831887
+UniRef50_B4UAM8: Threonine--tRNA ligase	0.0876814846
+UniRef50_B4UAM8: Threonine--tRNA ligase|unclassified	0.0876814846
+UniRef50_UPI00046CB866: hypothetical protein	0.0876761602
+UniRef50_UPI00046CB866: hypothetical protein|unclassified	0.0876761602
+UniRef50_Q11D12	0.0876717649
+UniRef50_Q11D12|unclassified	0.0876717649
+UniRef50_S6HJX7	0.0876630492
+UniRef50_S6HJX7|unclassified	0.0876630492
+UniRef50_A8H7C5: Probable nicotinate-nucleotide adenylyltransferase	0.0876620364
+UniRef50_A8H7C5: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.0876620364
+UniRef50_UPI0004674AC2: hypothetical protein	0.0876613608
+UniRef50_UPI0004674AC2: hypothetical protein|unclassified	0.0876613608
+UniRef50_UPI000373B42C: hypothetical protein	0.0876588411
+UniRef50_UPI000373B42C: hypothetical protein|unclassified	0.0876588411
+UniRef50_UPI0003822266: MULTISPECIES: hypothetical protein	0.0876555086
+UniRef50_UPI0003822266: MULTISPECIES: hypothetical protein|unclassified	0.0876555086
+UniRef50_W1J0G4	0.0876472024
+UniRef50_W1J0G4|unclassified	0.0876472024
+UniRef50_UPI00016C50EC: Transcriptional regulator, AraC family with methyltransferase activity	0.0876351661
+UniRef50_UPI00016C50EC: Transcriptional regulator, AraC family with methyltransferase activity|unclassified	0.0876351661
+UniRef50_K0SZM9	0.0876346652
+UniRef50_K0SZM9|unclassified	0.0876346652
+UniRef50_P75294: Probable L-ribulose-5-phosphate 3-epimerase UlaE	0.0876339523
+UniRef50_P75294: Probable L-ribulose-5-phosphate 3-epimerase UlaE|unclassified	0.0876339523
+UniRef50_UPI000477413F: regulator	0.0876261105
+UniRef50_UPI000477413F: regulator|unclassified	0.0876261105
+UniRef50_UPI000477A7D6: phosphoribosylglycinamide formyltransferase	0.0876220423
+UniRef50_UPI000477A7D6: phosphoribosylglycinamide formyltransferase|unclassified	0.0876220423
+UniRef50_UPI000377D34F: hypothetical protein, partial	0.0876193971
+UniRef50_UPI000377D34F: hypothetical protein, partial|unclassified	0.0876193971
+UniRef50_UPI0002F5F4FB: hypothetical protein	0.0876184274
+UniRef50_UPI0002F5F4FB: hypothetical protein|unclassified	0.0876184274
+UniRef50_A4BI03	0.0876084848
+UniRef50_A4BI03|unclassified	0.0876084848
+UniRef50_Q933N0: 6-hydroxypseudooxynicotine dehydrogenase complex subunit gamma	0.0876073991
+UniRef50_Q933N0: 6-hydroxypseudooxynicotine dehydrogenase complex subunit gamma|unclassified	0.0876073991
+UniRef50_UPI0004743856: hypothetical protein	0.0876064516
+UniRef50_UPI0004743856: hypothetical protein|unclassified	0.0876064516
+UniRef50_A6DYV3: Flagellar scaffolding protein FlgD	0.0876027631
+UniRef50_A6DYV3: Flagellar scaffolding protein FlgD|unclassified	0.0876027631
+UniRef50_UPI0003777E0B: MULTISPECIES: hypothetical protein	0.0875984402
+UniRef50_UPI0003777E0B: MULTISPECIES: hypothetical protein|unclassified	0.0875984402
+UniRef50_A4WQ03	0.0875918582
+UniRef50_A4WQ03|unclassified	0.0875918582
+UniRef50_UPI00044385F9: PREDICTED: basic salivary proline-rich protein 2-like	0.0875829828
+UniRef50_UPI00044385F9: PREDICTED: basic salivary proline-rich protein 2-like|unclassified	0.0875829828
+UniRef50_UPI0002892E6E: extracellular solute-binding protein	0.0875781707
+UniRef50_UPI0002892E6E: extracellular solute-binding protein|unclassified	0.0875781707
+UniRef50_P65769: Polyphosphate kinase	0.0875741562
+UniRef50_P65769: Polyphosphate kinase|unclassified	0.0875741562
+UniRef50_UPI00046349B5: hypothetical protein	0.0875718933
+UniRef50_UPI00046349B5: hypothetical protein|unclassified	0.0875718933
+UniRef50_D5VCQ6	0.0875670364
+UniRef50_D5VCQ6|unclassified	0.0875670364
+UniRef50_J3ZXK5: Peptidase, M23/M37 family protein	0.0875632799
+UniRef50_J3ZXK5: Peptidase, M23/M37 family protein|unclassified	0.0875632799
+UniRef50_UPI00037DB19E: hypothetical protein	0.0875623481
+UniRef50_UPI00037DB19E: hypothetical protein|unclassified	0.0875623481
+UniRef50_UPI00047D800C: hypothetical protein	0.0875600161
+UniRef50_UPI00047D800C: hypothetical protein|unclassified	0.0875600161
+UniRef50_UPI00037F4158: hypothetical protein	0.0875551043
+UniRef50_UPI00037F4158: hypothetical protein|unclassified	0.0875551043
+UniRef50_UPI0001CC0B9B: LysR family transcriptional regulator, partial	0.0875437191
+UniRef50_UPI0001CC0B9B: LysR family transcriptional regulator, partial|unclassified	0.0875437191
+UniRef50_I2GU24	0.0875404240
+UniRef50_I2GU24|unclassified	0.0875404240
+UniRef50_UPI0004119BFE: N-acetyl-D-glucosamine ABC transporter permease	0.0875300673
+UniRef50_UPI0004119BFE: N-acetyl-D-glucosamine ABC transporter permease|unclassified	0.0875300673
+UniRef50_UPI0003AA941F: hypothetical protein	0.0875175099
+UniRef50_UPI0003AA941F: hypothetical protein|unclassified	0.0875175099
+UniRef50_UPI0003F0EBE9: PREDICTED: putative sterigmatocystin biosynthesis dehydrogenase stcV-like	0.0875109459
+UniRef50_UPI0003F0EBE9: PREDICTED: putative sterigmatocystin biosynthesis dehydrogenase stcV-like|unclassified	0.0875109459
+UniRef50_L2TVA4: Sugar (And other) transporter family protein	0.0875043735
+UniRef50_L2TVA4: Sugar (And other) transporter family protein|unclassified	0.0875043735
+UniRef50_O82662: Succinyl-CoA ligase [ADP-forming] subunit beta, mitochondrial	0.0874943741
+UniRef50_O82662: Succinyl-CoA ligase [ADP-forming] subunit beta, mitochondrial|unclassified	0.0874943741
+UniRef50_UPI0004675AB0: hypothetical protein	0.0874915911
+UniRef50_UPI0004675AB0: hypothetical protein|unclassified	0.0874915911
+UniRef50_D7CXX6: Tripartite ATP-independent periplasmic transporter DctQ component	0.0874868500
+UniRef50_D7CXX6: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.0874868500
+UniRef50_R6EZC8	0.0874830759
+UniRef50_R6EZC8|unclassified	0.0874830759
+UniRef50_A0A050BZL5: PE-PGRS family protein PE_PGRS6 (Fragment)	0.0874694986
+UniRef50_A0A050BZL5: PE-PGRS family protein PE_PGRS6 (Fragment)|unclassified	0.0874694986
+UniRef50_V0V0Q9: Membrane protein	0.0874632915
+UniRef50_V0V0Q9: Membrane protein|unclassified	0.0874632915
+UniRef50_E3ZT62: Lipoprotein	0.0874586572
+UniRef50_E3ZT62: Lipoprotein|unclassified	0.0874586572
+UniRef50_G0DYV1	0.0874583410
+UniRef50_G0DYV1|unclassified	0.0874583410
+UniRef50_UPI00037BB1D0: hypothetical protein	0.0874574482
+UniRef50_UPI00037BB1D0: hypothetical protein|unclassified	0.0874574482
+UniRef50_UPI0003463109: AraC family transcriptional regulator	0.0874506620
+UniRef50_UPI0003463109: AraC family transcriptional regulator|unclassified	0.0874506620
+UniRef50_UPI0003663FD1: hypothetical protein	0.0874478880
+UniRef50_UPI0003663FD1: hypothetical protein|unclassified	0.0874478880
+UniRef50_Q4QKB5: Dihydroorotate dehydrogenase (quinone)	0.0874437028
+UniRef50_Q4QKB5: Dihydroorotate dehydrogenase (quinone)|unclassified	0.0874437028
+UniRef50_Q747W9: Cyclic pyranopterin monophosphate synthase	0.0874367329
+UniRef50_Q747W9: Cyclic pyranopterin monophosphate synthase|unclassified	0.0874367329
+UniRef50_UPI0004449BCF: mannitol-1-phosphate dehydrogenase MPDH1	0.0874311265
+UniRef50_UPI0004449BCF: mannitol-1-phosphate dehydrogenase MPDH1|unclassified	0.0874311265
+UniRef50_W7WQV3	0.0874262262
+UniRef50_W7WQV3|unclassified	0.0874262262
+UniRef50_UPI000371A8DD: hypothetical protein	0.0874227140
+UniRef50_UPI000371A8DD: hypothetical protein|unclassified	0.0874227140
+UniRef50_UPI00035FE0B9: hypothetical protein	0.0874128033
+UniRef50_UPI00035FE0B9: hypothetical protein|unclassified	0.0874128033
+UniRef50_UPI0003721D8E: hypothetical protein	0.0874098123
+UniRef50_UPI0003721D8E: hypothetical protein|unclassified	0.0874098123
+UniRef50_A0A024QDS0	0.0874076564
+UniRef50_A0A024QDS0|unclassified	0.0874076564
+UniRef50_UPI000382F770: hypothetical protein M271_03505	0.0873958745
+UniRef50_UPI000382F770: hypothetical protein M271_03505|unclassified	0.0873958745
+UniRef50_UPI000262CC43: glycine oxidase ThiO	0.0873936268
+UniRef50_UPI000262CC43: glycine oxidase ThiO|unclassified	0.0873936268
+UniRef50_UPI000479E331: hypothetical protein	0.0873844008
+UniRef50_UPI000479E331: hypothetical protein|unclassified	0.0873844008
+UniRef50_D4W2W0: Cobalt transport protein	0.0873803306
+UniRef50_D4W2W0: Cobalt transport protein|unclassified	0.0873803306
+UniRef50_X0UMJ8: Marine sediment metagenome DNA, contig: S01H1_S11614 (Fragment)	0.0873767420
+UniRef50_X0UMJ8: Marine sediment metagenome DNA, contig: S01H1_S11614 (Fragment)|unclassified	0.0873767420
+UniRef50_A4QC17	0.0873746759
+UniRef50_A4QC17|unclassified	0.0873746759
+UniRef50_UPI0002651751: PREDICTED: NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial-like	0.0873694875
+UniRef50_UPI0002651751: PREDICTED: NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial-like|unclassified	0.0873694875
+UniRef50_UPI000473DA31: phosphonate ABC transporter permease, partial	0.0873691404
+UniRef50_UPI000473DA31: phosphonate ABC transporter permease, partial|unclassified	0.0873691404
+UniRef50_UPI00037F31DA: hypothetical protein	0.0873639939
+UniRef50_UPI00037F31DA: hypothetical protein|unclassified	0.0873639939
+UniRef50_W8S015: Chromosome (Plasmid) partitioning protein ParA / Sporulation initiation inhibitor protein Soj	0.0873618079
+UniRef50_W8S015: Chromosome (Plasmid) partitioning protein ParA / Sporulation initiation inhibitor protein Soj|unclassified	0.0873618079
+UniRef50_UPI00037A554B: hypothetical protein	0.0873515503
+UniRef50_UPI00037A554B: hypothetical protein|unclassified	0.0873515503
+UniRef50_Q8PS27	0.0873514138
+UniRef50_Q8PS27|unclassified	0.0873514138
+UniRef50_R5QI59	0.0873465779
+UniRef50_R5QI59|unclassified	0.0873465779
+UniRef50_Q5KYH8: Transporter	0.0873439240
+UniRef50_Q5KYH8: Transporter|unclassified	0.0873439240
+UniRef50_UPI000255D60F: integrase catalytic subunit	0.0873404165
+UniRef50_UPI000255D60F: integrase catalytic subunit|unclassified	0.0873404165
+UniRef50_UPI000479001A: uridine kinase	0.0873369689
+UniRef50_UPI000479001A: uridine kinase|unclassified	0.0873369689
+UniRef50_Q3JQE5	0.0873324760
+UniRef50_Q3JQE5|unclassified	0.0873324760
+UniRef50_UPI0003EE8175: cytochrome o ubiquinol oxidase subunit II, partial	0.0873285354
+UniRef50_UPI0003EE8175: cytochrome o ubiquinol oxidase subunit II, partial|unclassified	0.0873285354
+UniRef50_UPI000370D396: hypothetical protein	0.0873191474
+UniRef50_UPI000370D396: hypothetical protein|unclassified	0.0873191474
+UniRef50_UPI00047A7CB2: DNA mismatch repair protein MutT	0.0873078731
+UniRef50_UPI00047A7CB2: DNA mismatch repair protein MutT|unclassified	0.0873078731
+UniRef50_UPI00037A03B5: hypothetical protein	0.0873068718
+UniRef50_UPI00037A03B5: hypothetical protein|unclassified	0.0873068718
+UniRef50_UPI000478AEA4: hypothetical protein	0.0873012241
+UniRef50_UPI000478AEA4: hypothetical protein|unclassified	0.0873012241
+UniRef50_B7A4B0: YehO	0.0872938301
+UniRef50_B7A4B0: YehO|unclassified	0.0872938301
+UniRef50_L0K156: Acyl dehydratase	0.0872922054
+UniRef50_L0K156: Acyl dehydratase|unclassified	0.0872922054
+UniRef50_UPI00047863F9: hypothetical protein	0.0872853868
+UniRef50_UPI00047863F9: hypothetical protein|unclassified	0.0872853868
+UniRef50_UPI00040C1A22: succinate-semialdehyde dehydrogenase	0.0872847282
+UniRef50_UPI00040C1A22: succinate-semialdehyde dehydrogenase|unclassified	0.0872847282
+UniRef50_UPI0003651736: hypothetical protein, partial	0.0872822176
+UniRef50_UPI0003651736: hypothetical protein, partial|unclassified	0.0872822176
+UniRef50_UPI0003178DCE: hypothetical protein	0.0872810283
+UniRef50_UPI0003178DCE: hypothetical protein|unclassified	0.0872810283
+UniRef50_UPI0003C8E402	0.0872733304
+UniRef50_UPI0003C8E402|unclassified	0.0872733304
+UniRef50_UPI0002881B5C: abortive infection protein	0.0872563181
+UniRef50_UPI0002881B5C: abortive infection protein|unclassified	0.0872563181
+UniRef50_T1B7K3: Protein containing DUF28	0.0872551088
+UniRef50_T1B7K3: Protein containing DUF28|unclassified	0.0872551088
+UniRef50_UPI000190E08B: formate acetyltransferase, partial	0.0872503787
+UniRef50_UPI000190E08B: formate acetyltransferase, partial|unclassified	0.0872503787
+UniRef50_W7CSW5: Amino acid permease	0.0872497821
+UniRef50_W7CSW5: Amino acid permease|unclassified	0.0872497821
+UniRef50_UPI0003B738E0: dihydrodipicolinate reductase	0.0872455477
+UniRef50_UPI0003B738E0: dihydrodipicolinate reductase|unclassified	0.0872455477
+UniRef50_B9JA42: Cation efflux system protein	0.0872454325
+UniRef50_B9JA42: Cation efflux system protein|unclassified	0.0872454325
+UniRef50_B2FNP4: Cytidylate kinase	0.0872435983
+UniRef50_B2FNP4: Cytidylate kinase|unclassified	0.0872435983
+UniRef50_D7A6Y4: Rhodanese domain protein	0.0872379233
+UniRef50_D7A6Y4: Rhodanese domain protein|unclassified	0.0872379233
+UniRef50_B5YJ32: Elongation factor P	0.0872322321
+UniRef50_B5YJ32: Elongation factor P|unclassified	0.0872322321
+UniRef50_UPI0004785CB7: amino acid ABC transporter substrate-binding protein	0.0872313840
+UniRef50_UPI0004785CB7: amino acid ABC transporter substrate-binding protein|unclassified	0.0872313840
+UniRef50_W7T8G7: LigA protein	0.0872288237
+UniRef50_W7T8G7: LigA protein|unclassified	0.0872288237
+UniRef50_UPI0003666880: hypothetical protein, partial	0.0872246497
+UniRef50_UPI0003666880: hypothetical protein, partial|unclassified	0.0872246497
+UniRef50_A0A033UZF8	0.0872234587
+UniRef50_A0A033UZF8|unclassified	0.0872234587
+UniRef50_Q1QN09: Adenylate kinase	0.0872201780
+UniRef50_Q1QN09: Adenylate kinase|unclassified	0.0872201780
+UniRef50_I4ZTC2: Rhodanese-like protein	0.0872133192
+UniRef50_I4ZTC2: Rhodanese-like protein|unclassified	0.0872133192
+UniRef50_B8IYJ7	0.0872088098
+UniRef50_B8IYJ7|unclassified	0.0872088098
+UniRef50_D3NUY8: Membrane-bound lytic murein transglycosylase	0.0872057791
+UniRef50_D3NUY8: Membrane-bound lytic murein transglycosylase|unclassified	0.0872057791
+UniRef50_Q32DY2	0.0872033079
+UniRef50_Q32DY2|unclassified	0.0872033079
+UniRef50_UPI0003697ED9: hypothetical protein, partial	0.0871997659
+UniRef50_UPI0003697ED9: hypothetical protein, partial|unclassified	0.0871997659
+UniRef50_C2D1H8: Replication initiator protein A domain protein (Fragment)	0.0871937987
+UniRef50_C2D1H8: Replication initiator protein A domain protein (Fragment)|unclassified	0.0871937987
+UniRef50_UPI0000165FE4: branched-chain amino acid ABC transporter ATP-binding protein	0.0871865883
+UniRef50_UPI0000165FE4: branched-chain amino acid ABC transporter ATP-binding protein|unclassified	0.0871865883
+UniRef50_T0Z553: Integrase catalytic subunit	0.0871850509
+UniRef50_T0Z553: Integrase catalytic subunit|unclassified	0.0871850509
+UniRef50_W6B5C2: Peptidase C26 family protein	0.0871802232
+UniRef50_W6B5C2: Peptidase C26 family protein|unclassified	0.0871802232
+UniRef50_UPI0003B5F6B7: quinol oxidase subunit 2	0.0871774808
+UniRef50_UPI0003B5F6B7: quinol oxidase subunit 2|unclassified	0.0871774808
+UniRef50_Q6CCU3: Mannose-1-phosphate guanyltransferase	0.0871767354
+UniRef50_Q6CCU3: Mannose-1-phosphate guanyltransferase|unclassified	0.0871767354
+UniRef50_UPI0004408687: hypothetical protein FOMMEDRAFT_22208	0.0871689445
+UniRef50_UPI0004408687: hypothetical protein FOMMEDRAFT_22208|unclassified	0.0871689445
+UniRef50_A8N7E0	0.0871673541
+UniRef50_A8N7E0|unclassified	0.0871673541
+UniRef50_Q9K4A0: Peptide deformylase 4	0.0871617279
+UniRef50_Q9K4A0: Peptide deformylase 4|unclassified	0.0871617279
+UniRef50_A8TQP5	0.0871598109
+UniRef50_A8TQP5|unclassified	0.0871598109
+UniRef50_R5Q2U1	0.0871584887
+UniRef50_R5Q2U1|unclassified	0.0871584887
+UniRef50_UPI0004767D66: hypothetical protein	0.0871584887
+UniRef50_UPI0004767D66: hypothetical protein|unclassified	0.0871584887
+UniRef50_UPI000365E142: hypothetical protein	0.0871551194
+UniRef50_UPI000365E142: hypothetical protein|unclassified	0.0871551194
+UniRef50_Q5IWY7: Plastid 3-dehydroquinate synthase (Fragment)	0.0871494790
+UniRef50_Q5IWY7: Plastid 3-dehydroquinate synthase (Fragment)|unclassified	0.0871494790
+UniRef50_UPI0004787AB2: transcriptional regulator	0.0871414990
+UniRef50_UPI0004787AB2: transcriptional regulator|unclassified	0.0871414990
+UniRef50_UPI0003F95F23: phosphonate ABC transporter ATP-binding protein	0.0871411587
+UniRef50_UPI0003F95F23: phosphonate ABC transporter ATP-binding protein|unclassified	0.0871411587
+UniRef50_UPI0004646B5C: transposase, partial	0.0871372895
+UniRef50_UPI0004646B5C: transposase, partial|unclassified	0.0871372895
+UniRef50_UPI00040265B6: transcriptional regulator	0.0871372489
+UniRef50_UPI00040265B6: transcriptional regulator|unclassified	0.0871372489
+UniRef50_UPI00037A824A: hypothetical protein	0.0871297951
+UniRef50_UPI00037A824A: hypothetical protein|unclassified	0.0871297951
+UniRef50_A8LKI8	0.0871293661
+UniRef50_A8LKI8|unclassified	0.0871293661
+UniRef50_UPI00041BF9E0: ureidoglycolate hydrolase	0.0871280922
+UniRef50_UPI00041BF9E0: ureidoglycolate hydrolase|unclassified	0.0871280922
+UniRef50_V4NVW4	0.0871169140
+UniRef50_V4NVW4|unclassified	0.0871169140
+UniRef50_UPI0004720BAF: hypothetical protein	0.0871166425
+UniRef50_UPI0004720BAF: hypothetical protein|unclassified	0.0871166425
+UniRef50_A0A022FX73: Deaminase/reductase	0.0871165757
+UniRef50_A0A022FX73: Deaminase/reductase|unclassified	0.0871165757
+UniRef50_L1K0X0	0.0871142712
+UniRef50_L1K0X0|unclassified	0.0871142712
+UniRef50_Q0G236	0.0871122653
+UniRef50_Q0G236|unclassified	0.0871122653
+UniRef50_U6LZ75	0.0871091850
+UniRef50_U6LZ75|unclassified	0.0871091850
+UniRef50_Q9FVZ6: Putative replication protein	0.0871083381
+UniRef50_Q9FVZ6: Putative replication protein|unclassified	0.0871083381
+UniRef50_UPI00036390B5: hypothetical protein	0.0871080181
+UniRef50_UPI00036390B5: hypothetical protein|unclassified	0.0871080181
+UniRef50_Q6UB35: Monofunctional C1-tetrahydrofolate synthase, mitochondrial	0.0871048892
+UniRef50_Q6UB35: Monofunctional C1-tetrahydrofolate synthase, mitochondrial|unclassified	0.0871048892
+UniRef50_F4G7N4: Carbon monoxide dehydrogenase subunit G	0.0870896488
+UniRef50_F4G7N4: Carbon monoxide dehydrogenase subunit G|unclassified	0.0870896488
+UniRef50_UPI0002490DA0: two-component response regulator	0.0870780183
+UniRef50_UPI0002490DA0: two-component response regulator|unclassified	0.0870780183
+UniRef50_UPI000381BD1F: hypothetical protein	0.0870773240
+UniRef50_UPI000381BD1F: hypothetical protein|unclassified	0.0870773240
+UniRef50_F6FTL0	0.0870744101
+UniRef50_F6FTL0|unclassified	0.0870744101
+UniRef50_B5JD39	0.0870711079
+UniRef50_B5JD39|unclassified	0.0870711079
+UniRef50_J1H564: PF06224 family protein	0.0870684786
+UniRef50_J1H564: PF06224 family protein|unclassified	0.0870684786
+UniRef50_UPI00038ED75B: PREDICTED: serine/arginine repetitive matrix protein 2-like	0.0870675223
+UniRef50_UPI00038ED75B: PREDICTED: serine/arginine repetitive matrix protein 2-like|unclassified	0.0870675223
+UniRef50_UPI000406AC71: hypothetical protein	0.0870635745
+UniRef50_UPI000406AC71: hypothetical protein|unclassified	0.0870635745
+UniRef50_UPI0003B63C22: magnesium chelatase	0.0870633984
+UniRef50_UPI0003B63C22: magnesium chelatase|unclassified	0.0870633984
+UniRef50_UPI0002FAD991: alanine acetyltransferase	0.0870609516
+UniRef50_UPI0002FAD991: alanine acetyltransferase|unclassified	0.0870609516
+UniRef50_UPI0003B2FAE1: hypothetical protein	0.0870581351
+UniRef50_UPI0003B2FAE1: hypothetical protein|unclassified	0.0870581351
+UniRef50_UPI0003639EC9: hypothetical protein	0.0870562637
+UniRef50_UPI0003639EC9: hypothetical protein|unclassified	0.0870562637
+UniRef50_UPI0003B360B2: riboflavin synthase subunit alpha	0.0870442182
+UniRef50_UPI0003B360B2: riboflavin synthase subunit alpha|unclassified	0.0870442182
+UniRef50_UPI0003B6EEEE: bipartite response regulator	0.0870380188
+UniRef50_UPI0003B6EEEE: bipartite response regulator|unclassified	0.0870380188
+UniRef50_A1A7G5	0.0870351719
+UniRef50_A1A7G5|unclassified	0.0870351719
+UniRef50_C5LZC5	0.0870339749
+UniRef50_C5LZC5|unclassified	0.0870339749
+UniRef50_K9ANS8	0.0870327916
+UniRef50_K9ANS8|unclassified	0.0870327916
+UniRef50_E6VJP1: NnrS family protein	0.0870321131
+UniRef50_E6VJP1: NnrS family protein|unclassified	0.0870321131
+UniRef50_O29305: Putative (R)-citramalate synthase CimA	0.0870308146
+UniRef50_O29305: Putative (R)-citramalate synthase CimA|unclassified	0.0870308146
+UniRef50_Q5GUU6	0.0870291113
+UniRef50_Q5GUU6|unclassified	0.0870291113
+UniRef50_X0QXW4	0.0870256204
+UniRef50_X0QXW4|unclassified	0.0870256204
+UniRef50_U5MKU2	0.0870188611
+UniRef50_U5MKU2|unclassified	0.0870188611
+UniRef50_Q92TD0: N-(5'-phosphoribosyl)anthranilate isomerase	0.0870170832
+UniRef50_Q92TD0: N-(5'-phosphoribosyl)anthranilate isomerase|unclassified	0.0870170832
+UniRef50_UPI00047A82E9: hemolysin	0.0870080975
+UniRef50_UPI00047A82E9: hemolysin|unclassified	0.0870080975
+UniRef50_R6JHL0	0.0870078362
+UniRef50_R6JHL0|unclassified	0.0870078362
+UniRef50_S5AVG1: MazG protein	0.0869998370
+UniRef50_S5AVG1: MazG protein|unclassified	0.0869998370
+UniRef50_R6LFY5: Phosphodiesterase family protein	0.0869997227
+UniRef50_R6LFY5: Phosphodiesterase family protein|unclassified	0.0869997227
+UniRef50_Q1ATH8: Pyridoxine/pyridoxamine 5'-phosphate oxidase	0.0869909757
+UniRef50_Q1ATH8: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	0.0869909757
+UniRef50_C1MZN5: Predicted protein	0.0869825767
+UniRef50_C1MZN5: Predicted protein|unclassified	0.0869825767
+UniRef50_UPI000378A303: hypothetical protein	0.0869777033
+UniRef50_UPI000378A303: hypothetical protein|unclassified	0.0869777033
+UniRef50_UPI00045E5DCC: potassium transporter	0.0869757118
+UniRef50_UPI00045E5DCC: potassium transporter|unclassified	0.0869757118
+UniRef50_B3R4P5	0.0869709110
+UniRef50_B3R4P5|unclassified	0.0869709110
+UniRef50_UPI000465DA4B: adenylosuccinate synthetase	0.0869690155
+UniRef50_UPI000465DA4B: adenylosuccinate synthetase|unclassified	0.0869690155
+UniRef50_E3ZW78	0.0869661515
+UniRef50_E3ZW78|unclassified	0.0869661515
+UniRef50_D3F611	0.0869590760
+UniRef50_D3F611|unclassified	0.0869590760
+UniRef50_Q2CB74	0.0869585357
+UniRef50_Q2CB74|unclassified	0.0869585357
+UniRef50_UPI0003751AA9: hypothetical protein	0.0869556754
+UniRef50_UPI0003751AA9: hypothetical protein|unclassified	0.0869556754
+UniRef50_H4EZ83: DisA bacterial checkpoint controller nucleotide-binding family protein	0.0869530065
+UniRef50_H4EZ83: DisA bacterial checkpoint controller nucleotide-binding family protein|unclassified	0.0869530065
+UniRef50_UPI0003B45872: membrane protein	0.0869522169
+UniRef50_UPI0003B45872: membrane protein|unclassified	0.0869522169
+UniRef50_J2GA29: UPF0301 protein PMI02_02965	0.0869512153
+UniRef50_J2GA29: UPF0301 protein PMI02_02965|unclassified	0.0869512153
+UniRef50_UPI0004681913: hypothetical protein	0.0869511299
+UniRef50_UPI0004681913: hypothetical protein|unclassified	0.0869511299
+UniRef50_W8RNV7	0.0869463356
+UniRef50_W8RNV7|unclassified	0.0869463356
+UniRef50_UPI00036E3747: O-methyltransferase	0.0869460161
+UniRef50_UPI00036E3747: O-methyltransferase|unclassified	0.0869460161
+UniRef50_R6ZZW9	0.0869447633
+UniRef50_R6ZZW9|unclassified	0.0869447633
+UniRef50_UPI000360C35A: hypothetical protein	0.0869433508
+UniRef50_UPI000360C35A: hypothetical protein|unclassified	0.0869433508
+UniRef50_Q13YI7: 2-aminoethylphosphonate--pyruvate transaminase 1	0.0869381577
+UniRef50_Q13YI7: 2-aminoethylphosphonate--pyruvate transaminase 1|unclassified	0.0869381577
+UniRef50_B1N6M3	0.0869314115
+UniRef50_B1N6M3|unclassified	0.0869314115
+UniRef50_Q2UJU5: Mannose-1-phosphate guanyltransferase	0.0869313975
+UniRef50_Q2UJU5: Mannose-1-phosphate guanyltransferase|unclassified	0.0869313975
+UniRef50_S5SR73	0.0869249360
+UniRef50_S5SR73|unclassified	0.0869249360
+UniRef50_UPI0002FE2DAD: hypothetical protein	0.0869174277
+UniRef50_UPI0002FE2DAD: hypothetical protein|unclassified	0.0869174277
+UniRef50_G8B1K1	0.0869076635
+UniRef50_G8B1K1|unclassified	0.0869076635
+UniRef50_W5XHN2: Transcriptional regulator, TetR family protein	0.0869064780
+UniRef50_W5XHN2: Transcriptional regulator, TetR family protein|unclassified	0.0869064780
+UniRef50_U6MTU9	0.0869060980
+UniRef50_U6MTU9|unclassified	0.0869060980
+UniRef50_UPI0003B4FCE0: MFS transporter	0.0869058910
+UniRef50_UPI0003B4FCE0: MFS transporter|unclassified	0.0869058910
+UniRef50_UPI000255C080: cytochrome aa3 quinol oxidase subunit II	0.0869021961
+UniRef50_UPI000255C080: cytochrome aa3 quinol oxidase subunit II|unclassified	0.0869021961
+UniRef50_J3NZH1: Defective in cullin neddylation protein	0.0868920782
+UniRef50_J3NZH1: Defective in cullin neddylation protein|unclassified	0.0868920782
+UniRef50_K2C8S1	0.0868896659
+UniRef50_K2C8S1|unclassified	0.0868896659
+UniRef50_UPI000348C1C2: hypothetical protein	0.0868805368
+UniRef50_UPI000348C1C2: hypothetical protein|unclassified	0.0868805368
+UniRef50_Q8RDK3: 2-isopropylmalate synthase 1	0.0868678201
+UniRef50_Q8RDK3: 2-isopropylmalate synthase 1|unclassified	0.0868678201
+UniRef50_Q7NK24: Phosphoadenosine phosphosulfate reductase	0.0868645018
+UniRef50_Q7NK24: Phosphoadenosine phosphosulfate reductase|unclassified	0.0868645018
+UniRef50_UPI0003005B80: hypothetical protein	0.0868634250
+UniRef50_UPI0003005B80: hypothetical protein|unclassified	0.0868634250
+UniRef50_UPI0004773488: hypothetical protein	0.0868608217
+UniRef50_UPI0004773488: hypothetical protein|unclassified	0.0868608217
+UniRef50_UPI0004627318: phosphoribosylaminoimidazole carboxylase, partial	0.0868562451
+UniRef50_UPI0004627318: phosphoribosylaminoimidazole carboxylase, partial|unclassified	0.0868562451
+UniRef50_Q9A707: Isoprenyl transferase	0.0868500923
+UniRef50_Q9A707: Isoprenyl transferase|unclassified	0.0868500923
+UniRef50_O82147: Spermidine synthase	0.0868413628
+UniRef50_O82147: Spermidine synthase|unclassified	0.0868413628
+UniRef50_A6GVN8: Uroporphyrinogen decarboxylase	0.0868395124
+UniRef50_A6GVN8: Uroporphyrinogen decarboxylase|unclassified	0.0868395124
+UniRef50_C3MI38: Transcriptional regulator, putative	0.0868394607
+UniRef50_C3MI38: Transcriptional regulator, putative|unclassified	0.0868394607
+UniRef50_Q8DJY0: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	0.0868224738
+UniRef50_Q8DJY0: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.0868224738
+UniRef50_UPI00039DC1E4: 3-oxoadipate enol-lactonase	0.0868181523
+UniRef50_UPI00039DC1E4: 3-oxoadipate enol-lactonase|unclassified	0.0868181523
+UniRef50_X1GGE9: Marine sediment metagenome DNA, contig: S03H2_S06013	0.0868171708
+UniRef50_X1GGE9: Marine sediment metagenome DNA, contig: S03H2_S06013|unclassified	0.0868171708
+UniRef50_P07954: Fumarate hydratase, mitochondrial	0.0868167107
+UniRef50_P07954: Fumarate hydratase, mitochondrial|unclassified	0.0868167107
+UniRef50_V2HLF3: Carbon monoxide dehydrogenase subunit G	0.0868150423
+UniRef50_V2HLF3: Carbon monoxide dehydrogenase subunit G|unclassified	0.0868150423
+UniRef50_E1ZPL3	0.0868092284
+UniRef50_E1ZPL3|unclassified	0.0868092284
+UniRef50_K0CD18	0.0868082292
+UniRef50_K0CD18|unclassified	0.0868082292
+UniRef50_UPI0003B45870: hypothetical protein	0.0868022319
+UniRef50_UPI0003B45870: hypothetical protein|unclassified	0.0868022319
+UniRef50_UPI000349F59B: hypothetical protein	0.0868014188
+UniRef50_UPI000349F59B: hypothetical protein|unclassified	0.0868014188
+UniRef50_UPI00016C4CCF: proton-translocating NAD(P)H-quinone oxidoreductase, chain M	0.0867970092
+UniRef50_UPI00016C4CCF: proton-translocating NAD(P)H-quinone oxidoreductase, chain M|unclassified	0.0867970092
+UniRef50_H7CPZ5	0.0867927071
+UniRef50_H7CPZ5|unclassified	0.0867927071
+UniRef50_Q98G43: Fe(3+) ions import ATP-binding protein FbpC	0.0867860730
+UniRef50_Q98G43: Fe(3+) ions import ATP-binding protein FbpC|unclassified	0.0867860730
+UniRef50_UPI00035EED97: hypothetical protein, partial	0.0867829983
+UniRef50_UPI00035EED97: hypothetical protein, partial|unclassified	0.0867829983
+UniRef50_Q1IHD8: Putative 3-methyladenine DNA glycosylase	0.0867800169
+UniRef50_Q1IHD8: Putative 3-methyladenine DNA glycosylase|unclassified	0.0867800169
+UniRef50_V6ZFX5: HD domain protein	0.0867681241
+UniRef50_V6ZFX5: HD domain protein|unclassified	0.0867681241
+UniRef50_A0A033C2D7	0.0867648469
+UniRef50_A0A033C2D7|unclassified	0.0867648469
+UniRef50_C7DE43	0.0867621799
+UniRef50_C7DE43|unclassified	0.0867621799
+UniRef50_Q4MFS8	0.0867570101
+UniRef50_Q4MFS8|unclassified	0.0867570101
+UniRef50_A0A011Q708: Acetyl-coenzyme A synthetase	0.0867536620
+UniRef50_A0A011Q708: Acetyl-coenzyme A synthetase|unclassified	0.0867536620
+UniRef50_UPI00036752B9: chemotaxis protein CheY	0.0867503912
+UniRef50_UPI00036752B9: chemotaxis protein CheY|unclassified	0.0867503912
+UniRef50_UPI0003792382: hypothetical protein	0.0867477455
+UniRef50_UPI0003792382: hypothetical protein|unclassified	0.0867477455
+UniRef50_UPI0002F02B73: 5-oxopent-3-ene-1,2,5-tricarboxylate decarboxylase	0.0867471643
+UniRef50_UPI0002F02B73: 5-oxopent-3-ene-1,2,5-tricarboxylate decarboxylase|unclassified	0.0867471643
+UniRef50_A7HXQ4	0.0867466858
+UniRef50_A7HXQ4|unclassified	0.0867466858
+UniRef50_Q52987: Alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase	0.0867437503
+UniRef50_Q52987: Alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase|unclassified	0.0867437503
+UniRef50_D1C7V4	0.0867382635
+UniRef50_D1C7V4|unclassified	0.0867382635
+UniRef50_UPI0003B47077: sugar ABC transporter permease	0.0867337872
+UniRef50_UPI0003B47077: sugar ABC transporter permease|unclassified	0.0867337872
+UniRef50_B9KXJ0: tRNA N6-adenosine threonylcarbamoyltransferase	0.0867255996
+UniRef50_B9KXJ0: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.0867255996
+UniRef50_UPI00026CC897: NADPH:quinone oxidoreductase	0.0867216416
+UniRef50_UPI00026CC897: NADPH:quinone oxidoreductase|unclassified	0.0867216416
+UniRef50_A4W0M6: ATP-dependent helicase/deoxyribonuclease subunit B	0.0867210433
+UniRef50_A4W0M6: ATP-dependent helicase/deoxyribonuclease subunit B|unclassified	0.0867210433
+UniRef50_UPI00047D9459: hypothetical protein	0.0867167676
+UniRef50_UPI00047D9459: hypothetical protein|unclassified	0.0867167676
+UniRef50_U5L7I3: Topology modulation protein	0.0867129797
+UniRef50_U5L7I3: Topology modulation protein|unclassified	0.0867129797
+UniRef50_A6Q7Y4: Porphobilinogen deaminase	0.0867098027
+UniRef50_A6Q7Y4: Porphobilinogen deaminase|unclassified	0.0867098027
+UniRef50_B9NTP8	0.0867022052
+UniRef50_B9NTP8|unclassified	0.0867022052
+UniRef50_UPI00036D9D36: hypothetical protein	0.0866762405
+UniRef50_UPI00036D9D36: hypothetical protein|unclassified	0.0866762405
+UniRef50_R0DQJ6	0.0866736661
+UniRef50_R0DQJ6|unclassified	0.0866736661
+UniRef50_UPI0003B2EAC3: 1-phosphofructokinase	0.0866696462
+UniRef50_UPI0003B2EAC3: 1-phosphofructokinase|unclassified	0.0866696462
+UniRef50_UPI00047613C0: outer membrane receptor protein	0.0866649905
+UniRef50_UPI00047613C0: outer membrane receptor protein|unclassified	0.0866649905
+UniRef50_C6CN70	0.0866586487
+UniRef50_C6CN70|unclassified	0.0866586487
+UniRef50_U3K6L8	0.0866579105
+UniRef50_U3K6L8|unclassified	0.0866579105
+UniRef50_UPI0003637E7A: hypothetical protein	0.0866568961
+UniRef50_UPI0003637E7A: hypothetical protein|unclassified	0.0866568961
+UniRef50_P0A579: Dihydropteroate synthase 1	0.0866567102
+UniRef50_P0A579: Dihydropteroate synthase 1|unclassified	0.0866567102
+UniRef50_UPI000464E22C: methylenetetrahydrofolate reductase	0.0866552416
+UniRef50_UPI000464E22C: methylenetetrahydrofolate reductase|unclassified	0.0866552416
+UniRef50_D3UL29: Internalin-like protein membrane anchor, putative	0.0866474422
+UniRef50_D3UL29: Internalin-like protein membrane anchor, putative|unclassified	0.0866474422
+UniRef50_G2Y629	0.0866472578
+UniRef50_G2Y629|unclassified	0.0866472578
+UniRef50_Q88SI6: Demethylmenaquinone methyltransferase	0.0866315110
+UniRef50_Q88SI6: Demethylmenaquinone methyltransferase|unclassified	0.0866315110
+UniRef50_X1MIB3: Marine sediment metagenome DNA, contig: S06H3_L01565 (Fragment)	0.0866225076
+UniRef50_X1MIB3: Marine sediment metagenome DNA, contig: S06H3_L01565 (Fragment)|unclassified	0.0866225076
+UniRef50_Q75G58: Expressed protein	0.0866148528
+UniRef50_Q75G58: Expressed protein|unclassified	0.0866148528
+UniRef50_W5XAZ3	0.0866096217
+UniRef50_W5XAZ3|unclassified	0.0866096217
+UniRef50_Q1CW24	0.0866065396
+UniRef50_Q1CW24|unclassified	0.0866065396
+UniRef50_UPI0004643017: ABC transporter substrate-binding protein	0.0866002127
+UniRef50_UPI0004643017: ABC transporter substrate-binding protein|unclassified	0.0866002127
+UniRef50_D3V6G7	0.0865898049
+UniRef50_D3V6G7|unclassified	0.0865898049
+UniRef50_UPI0003B6580B: multidrug transporter	0.0865883040
+UniRef50_UPI0003B6580B: multidrug transporter|unclassified	0.0865883040
+UniRef50_E7NQH8: DnaJ domain protein	0.0865868689
+UniRef50_E7NQH8: DnaJ domain protein|unclassified	0.0865868689
+UniRef50_UPI0002375359: EmrB/QacA family drug resistance transporter	0.0865826182
+UniRef50_UPI0002375359: EmrB/QacA family drug resistance transporter|unclassified	0.0865826182
+UniRef50_UPI0002E83586: hypothetical protein	0.0865812728
+UniRef50_UPI0002E83586: hypothetical protein|unclassified	0.0865812728
+UniRef50_UPI0001D30AAA: monovalent cation:proton antiporter-2 (CPA2) family protein	0.0865808615
+UniRef50_UPI0001D30AAA: monovalent cation:proton antiporter-2 (CPA2) family protein|unclassified	0.0865808615
+UniRef50_UPI0002DB5328: ABC transporter permease	0.0865801264
+UniRef50_UPI0002DB5328: ABC transporter permease|unclassified	0.0865801264
+UniRef50_Q4QP16: tRNA-specific 2-thiouridylase MnmA	0.0865752458
+UniRef50_Q4QP16: tRNA-specific 2-thiouridylase MnmA|unclassified	0.0865752458
+UniRef50_UPI00046F52F1: hypothetical protein	0.0865741706
+UniRef50_UPI00046F52F1: hypothetical protein|unclassified	0.0865741706
+UniRef50_H0Q3N8: Thioesterase superfamily protein	0.0865740185
+UniRef50_H0Q3N8: Thioesterase superfamily protein|unclassified	0.0865740185
+UniRef50_X0VEV0: Marine sediment metagenome DNA, contig: S01H1_S23145 (Fragment)	0.0865711982
+UniRef50_X0VEV0: Marine sediment metagenome DNA, contig: S01H1_S23145 (Fragment)|unclassified	0.0865711982
+UniRef50_V4CKF7	0.0865699072
+UniRef50_V4CKF7|unclassified	0.0865699072
+UniRef50_UPI0004785487: 5-keto-4-deoxyuronate isomerase, partial	0.0865681573
+UniRef50_UPI0004785487: 5-keto-4-deoxyuronate isomerase, partial|unclassified	0.0865681573
+UniRef50_UPI0003B71736: hypothetical protein	0.0865663502
+UniRef50_UPI0003B71736: hypothetical protein|unclassified	0.0865663502
+UniRef50_F0TIT9: Transposase	0.0865640383
+UniRef50_F0TIT9: Transposase|unclassified	0.0865640383
+UniRef50_UPI0003AD3586: hypothetical protein	0.0865626961
+UniRef50_UPI0003AD3586: hypothetical protein|unclassified	0.0865626961
+UniRef50_UPI0003C1990A	0.0865517689
+UniRef50_UPI0003C1990A|unclassified	0.0865517689
+UniRef50_Q2RIW8: Homoserine O-acetyltransferase	0.0865448298
+UniRef50_Q2RIW8: Homoserine O-acetyltransferase|unclassified	0.0865448298
+UniRef50_J4JH08: PF06779 family protein (Fragment)	0.0865447966
+UniRef50_J4JH08: PF06779 family protein (Fragment)|unclassified	0.0865447966
+UniRef50_U6KGX8	0.0865436672
+UniRef50_U6KGX8|unclassified	0.0865436672
+UniRef50_Q0HGT5: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.0865391856
+UniRef50_Q0HGT5: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.0865391856
+UniRef50_X0VRK8: Marine sediment metagenome DNA, contig: S01H1_S21622 (Fragment)	0.0865330054
+UniRef50_X0VRK8: Marine sediment metagenome DNA, contig: S01H1_S21622 (Fragment)|unclassified	0.0865330054
+UniRef50_Q06128: Anthranilate synthase component 1	0.0865265400
+UniRef50_Q06128: Anthranilate synthase component 1|unclassified	0.0865265400
+UniRef50_R4GGZ5	0.0865239119
+UniRef50_R4GGZ5|unclassified	0.0865239119
+UniRef50_U4WSS3	0.0865103218
+UniRef50_U4WSS3|unclassified	0.0865103218
+UniRef50_Q7R725	0.0865101003
+UniRef50_Q7R725|unclassified	0.0865101003
+UniRef50_U1ALT5	0.0865087998
+UniRef50_U1ALT5|unclassified	0.0865087998
+UniRef50_UPI0003B43847: recombinase	0.0865058454
+UniRef50_UPI0003B43847: recombinase|unclassified	0.0865058454
+UniRef50_C2MSC7: S-layer y domain protein	0.0864999034
+UniRef50_C2MSC7: S-layer y domain protein|unclassified	0.0864999034
+UniRef50_A0A052IN33: PF06042 family protein	0.0864979848
+UniRef50_A0A052IN33: PF06042 family protein|unclassified	0.0864979848
+UniRef50_W5X6D8: Membrane-fusion protein	0.0864955776
+UniRef50_W5X6D8: Membrane-fusion protein|unclassified	0.0864955776
+UniRef50_UPI00037E8D76: hypothetical protein	0.0864927278
+UniRef50_UPI00037E8D76: hypothetical protein|unclassified	0.0864927278
+UniRef50_U6KUR2	0.0864899449
+UniRef50_U6KUR2|unclassified	0.0864899449
+UniRef50_A0A014BAC7: VWA domain containing CoxE-like family protein	0.0864874194
+UniRef50_A0A014BAC7: VWA domain containing CoxE-like family protein|unclassified	0.0864874194
+UniRef50_UPI00047A6054: hypothetical protein	0.0864843852
+UniRef50_UPI00047A6054: hypothetical protein|unclassified	0.0864843852
+UniRef50_Q94BZ7-2: Isoform 2 of DNA gyrase subunit B, mitochondrial	0.0864824015
+UniRef50_Q94BZ7-2: Isoform 2 of DNA gyrase subunit B, mitochondrial|unclassified	0.0864824015
+UniRef50_UPI00047B2311: hypothetical protein	0.0864761362
+UniRef50_UPI00047B2311: hypothetical protein|unclassified	0.0864761362
+UniRef50_UPI00037689C2: hypothetical protein	0.0864732265
+UniRef50_UPI00037689C2: hypothetical protein|unclassified	0.0864732265
+UniRef50_UPI0003829147: hypothetical protein, partial	0.0864710036
+UniRef50_UPI0003829147: hypothetical protein, partial|unclassified	0.0864710036
+UniRef50_J9B6L5	0.0864648112
+UniRef50_J9B6L5|unclassified	0.0864648112
+UniRef50_R5QYB9: MJ0936 family phosphodiesterase	0.0864643609
+UniRef50_R5QYB9: MJ0936 family phosphodiesterase|unclassified	0.0864643609
+UniRef50_UPI00029AB782: cytochrome d ubiquinol oxidase subunit II	0.0864615712
+UniRef50_UPI00029AB782: cytochrome d ubiquinol oxidase subunit II|unclassified	0.0864615712
+UniRef50_H8GX31	0.0864576535
+UniRef50_H8GX31|unclassified	0.0864576535
+UniRef50_UPI000477D162: iron ABC transporter permease	0.0864570117
+UniRef50_UPI000477D162: iron ABC transporter permease|unclassified	0.0864570117
+UniRef50_J2X6K1	0.0864518347
+UniRef50_J2X6K1|unclassified	0.0864518347
+UniRef50_UPI0003C1261B	0.0864503648
+UniRef50_UPI0003C1261B|unclassified	0.0864503648
+UniRef50_UPI000462EB1E: ribonucleoside-triphosphate reductase	0.0864494742
+UniRef50_UPI000462EB1E: ribonucleoside-triphosphate reductase|unclassified	0.0864494742
+UniRef50_UPI0003644C59: hypothetical protein	0.0864468111
+UniRef50_UPI0003644C59: hypothetical protein|unclassified	0.0864468111
+UniRef50_B8D263: Phytoene dehydrogenase C terminal region	0.0864436921
+UniRef50_B8D263: Phytoene dehydrogenase C terminal region|unclassified	0.0864436921
+UniRef50_K2DT55: Lipoprotein	0.0864365885
+UniRef50_K2DT55: Lipoprotein|unclassified	0.0864365885
+UniRef50_K0RMM1	0.0864306127
+UniRef50_K0RMM1|unclassified	0.0864306127
+UniRef50_W1JU40: Ppx/GppA phosphatase (Fragment)	0.0864244294
+UniRef50_W1JU40: Ppx/GppA phosphatase (Fragment)|unclassified	0.0864244294
+UniRef50_L7LYH7	0.0864174947
+UniRef50_L7LYH7|unclassified	0.0864174947
+UniRef50_UPI00047C8B53: RNA polymerase	0.0864132814
+UniRef50_UPI00047C8B53: RNA polymerase|unclassified	0.0864132814
+UniRef50_A4IQ75	0.0864112682
+UniRef50_A4IQ75|unclassified	0.0864112682
+UniRef50_S9S2Y3	0.0864069319
+UniRef50_S9S2Y3|unclassified	0.0864069319
+UniRef50_M0T3Q2	0.0864017599
+UniRef50_M0T3Q2|unclassified	0.0864017599
+UniRef50_R2SWN0	0.0864014377
+UniRef50_R2SWN0|unclassified	0.0864014377
+UniRef50_X2NIP6: Virulence factor SrfB	0.0864007184
+UniRef50_X2NIP6: Virulence factor SrfB|unclassified	0.0864007184
+UniRef50_Q1QXB3: Probable nicotinate-nucleotide adenylyltransferase	0.0864001113
+UniRef50_Q1QXB3: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.0864001113
+UniRef50_C2S1M9	0.0863944189
+UniRef50_C2S1M9|unclassified	0.0863944189
+UniRef50_UPI000225C119: sugar phosphate permease	0.0863929017
+UniRef50_UPI000225C119: sugar phosphate permease|unclassified	0.0863929017
+UniRef50_UPI00036C0547: hypothetical protein	0.0863897011
+UniRef50_UPI00036C0547: hypothetical protein|unclassified	0.0863897011
+UniRef50_T3PIT8: Tex-like N-terminal domain protein	0.0863865692
+UniRef50_T3PIT8: Tex-like N-terminal domain protein|unclassified	0.0863865692
+UniRef50_Q01XR4: tRNA--hydroxylase	0.0863735991
+UniRef50_Q01XR4: tRNA--hydroxylase|unclassified	0.0863735991
+UniRef50_U2Z6B8: GfdT protein	0.0863717347
+UniRef50_U2Z6B8: GfdT protein|unclassified	0.0863717347
+UniRef50_G4AVE7: tRNA pseudouridine synthase A	0.0863689558
+UniRef50_G4AVE7: tRNA pseudouridine synthase A|unclassified	0.0863689558
+UniRef50_F9XRM1	0.0863641358
+UniRef50_F9XRM1|unclassified	0.0863641358
+UniRef50_UPI000472DE9D: hypothetical protein, partial	0.0863576545
+UniRef50_UPI000472DE9D: hypothetical protein, partial|unclassified	0.0863576545
+UniRef50_A0A034W5P4	0.0863575550
+UniRef50_A0A034W5P4|unclassified	0.0863575550
+UniRef50_UPI00046801E0: transcriptional regulator	0.0863493102
+UniRef50_UPI00046801E0: transcriptional regulator|unclassified	0.0863493102
+UniRef50_UPI0004541CF4	0.0863477626
+UniRef50_UPI0004541CF4|unclassified	0.0863477626
+UniRef50_UPI0004706B07: 4-aminobutyrate aminotransferase	0.0863473932
+UniRef50_UPI0004706B07: 4-aminobutyrate aminotransferase|unclassified	0.0863473932
+UniRef50_Q9HII9: Carbamate kinase	0.0863398467
+UniRef50_Q9HII9: Carbamate kinase|unclassified	0.0863398467
+UniRef50_UPI00036CBE7F: hypothetical protein	0.0863392479
+UniRef50_UPI00036CBE7F: hypothetical protein|unclassified	0.0863392479
+UniRef50_D5EE71: TRAP transporter solute receptor, TAXI family	0.0863331012
+UniRef50_D5EE71: TRAP transporter solute receptor, TAXI family|unclassified	0.0863331012
+UniRef50_UPI00037BA8A6: hypothetical protein	0.0863309147
+UniRef50_UPI00037BA8A6: hypothetical protein|unclassified	0.0863309147
+UniRef50_UPI000479BF75: poly(glucosyl N-acetylgalactosamine 1-phosphate) glucosyltransferase	0.0863304049
+UniRef50_UPI000479BF75: poly(glucosyl N-acetylgalactosamine 1-phosphate) glucosyltransferase|unclassified	0.0863304049
+UniRef50_UPI00046E8451: hypothetical protein, partial	0.0863300653
+UniRef50_UPI00046E8451: hypothetical protein, partial|unclassified	0.0863300653
+UniRef50_UPI00047DE5DB: ribonuclease 3	0.0863297474
+UniRef50_UPI00047DE5DB: ribonuclease 3|unclassified	0.0863297474
+UniRef50_N5NL52: Serine-aspartate repeat-containing protein C (Fragment)	0.0863286007
+UniRef50_N5NL52: Serine-aspartate repeat-containing protein C (Fragment)|unclassified	0.0863286007
+UniRef50_UPI000378F5B1: hypothetical protein, partial	0.0863208282
+UniRef50_UPI000378F5B1: hypothetical protein, partial|unclassified	0.0863208282
+UniRef50_I0H0P6	0.0863162358
+UniRef50_I0H0P6|unclassified	0.0863162358
+UniRef50_UPI0002E7518D: hypothetical protein	0.0863141710
+UniRef50_UPI0002E7518D: hypothetical protein|unclassified	0.0863141710
+UniRef50_UPI00029AE570: malonyl CoA-ACP transacylase	0.0863129872
+UniRef50_UPI00029AE570: malonyl CoA-ACP transacylase|unclassified	0.0863129872
+UniRef50_B1XVN1: tRNA (guanine-N(1)-)-methyltransferase	0.0863089960
+UniRef50_B1XVN1: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0863089960
+UniRef50_UPI000405C4E4: hypothetical protein	0.0862996623
+UniRef50_UPI000405C4E4: hypothetical protein|unclassified	0.0862996623
+UniRef50_V8P4B0	0.0862944077
+UniRef50_V8P4B0|unclassified	0.0862944077
+UniRef50_UPI0003735DC4: hypothetical protein	0.0862915202
+UniRef50_UPI0003735DC4: hypothetical protein|unclassified	0.0862915202
+UniRef50_A1TSD0: Thioesterase superfamily protein	0.0862878889
+UniRef50_A1TSD0: Thioesterase superfamily protein|unclassified	0.0862878889
+UniRef50_UPI0004718078: tRNA (guanine-N1)-methyltransferase	0.0862855902
+UniRef50_UPI0004718078: tRNA (guanine-N1)-methyltransferase|unclassified	0.0862855902
+UniRef50_UPI0004776879: sugar ABC transporter substrate-binding protein	0.0862854180
+UniRef50_UPI0004776879: sugar ABC transporter substrate-binding protein|unclassified	0.0862854180
+UniRef50_UPI00012E0EF0: UDP-phosphate galactose phosphotransferase	0.0862838849
+UniRef50_UPI00012E0EF0: UDP-phosphate galactose phosphotransferase|unclassified	0.0862838849
+UniRef50_Q23695: Bifunctional dihydrofolate reductase-thymidylate synthase	0.0862835953
+UniRef50_Q23695: Bifunctional dihydrofolate reductase-thymidylate synthase|unclassified	0.0862835953
+UniRef50_T3U9Z8	0.0862745911
+UniRef50_T3U9Z8|unclassified	0.0862745911
+UniRef50_E2BZH3	0.0862738331
+UniRef50_E2BZH3|unclassified	0.0862738331
+UniRef50_UPI0003C18C5D	0.0862701802
+UniRef50_UPI0003C18C5D|unclassified	0.0862701802
+UniRef50_UPI0003F09E7C	0.0862639849
+UniRef50_UPI0003F09E7C|unclassified	0.0862639849
+UniRef50_UPI0002C333F4: PREDICTED: methionine aminopeptidase 1-like	0.0862628928
+UniRef50_UPI0002C333F4: PREDICTED: methionine aminopeptidase 1-like|unclassified	0.0862628928
+UniRef50_UPI0004698F3C: chemotaxis protein CheR	0.0862582142
+UniRef50_UPI0004698F3C: chemotaxis protein CheR|unclassified	0.0862582142
+UniRef50_UPI00046828B1: hypothetical protein	0.0862483632
+UniRef50_UPI00046828B1: hypothetical protein|unclassified	0.0862483632
+UniRef50_Q8R886: Histidine biosynthesis bifunctional protein HisIE	0.0862428363
+UniRef50_Q8R886: Histidine biosynthesis bifunctional protein HisIE|unclassified	0.0862428363
+UniRef50_C1EN33: CCA-adding enzyme	0.0862391215
+UniRef50_C1EN33: CCA-adding enzyme|unclassified	0.0862391215
+UniRef50_A0A017SYI4	0.0862387054
+UniRef50_A0A017SYI4|unclassified	0.0862387054
+UniRef50_UPI0003650BE0: hypothetical protein	0.0862337950
+UniRef50_UPI0003650BE0: hypothetical protein|unclassified	0.0862337950
+UniRef50_UPI0004174300: hypothetical protein	0.0862296712
+UniRef50_UPI0004174300: hypothetical protein|unclassified	0.0862296712
+UniRef50_UPI00035F9E2C: membrane protein	0.0862275579
+UniRef50_UPI00035F9E2C: membrane protein|unclassified	0.0862275579
+UniRef50_UPI000472B86B: hypothetical protein	0.0862258971
+UniRef50_UPI000472B86B: hypothetical protein|unclassified	0.0862258971
+UniRef50_U6H4F8	0.0862249813
+UniRef50_U6H4F8|unclassified	0.0862249813
+UniRef50_UPI00029AD8DA: MgtC family protein	0.0862088884
+UniRef50_UPI00029AD8DA: MgtC family protein|unclassified	0.0862088884
+UniRef50_UPI0003766D32: amino acid ABC transporter substrate-binding protein	0.0861979732
+UniRef50_UPI0003766D32: amino acid ABC transporter substrate-binding protein|unclassified	0.0861979732
+UniRef50_Q1GGG3	0.0861850356
+UniRef50_Q1GGG3|unclassified	0.0861850356
+UniRef50_W4FZW0	0.0861813041
+UniRef50_W4FZW0|unclassified	0.0861813041
+UniRef50_Q4FME5	0.0861807802
+UniRef50_Q4FME5|unclassified	0.0861807802
+UniRef50_UPI0003C38567: PREDICTED: short-chain dehydrogenase/reductase family 16C member 6-like	0.0861805676
+UniRef50_UPI0003C38567: PREDICTED: short-chain dehydrogenase/reductase family 16C member 6-like|unclassified	0.0861805676
+UniRef50_UPI000360377A: hypothetical protein	0.0861739513
+UniRef50_UPI000360377A: hypothetical protein|unclassified	0.0861739513
+UniRef50_Q17RH7: Putative protein TPRXL	0.0861717601
+UniRef50_Q17RH7: Putative protein TPRXL|unclassified	0.0861717601
+UniRef50_UPI0003605040: hypothetical protein	0.0861708263
+UniRef50_UPI0003605040: hypothetical protein|unclassified	0.0861708263
+UniRef50_UPI000373BE38: hypothetical protein	0.0861685200
+UniRef50_UPI000373BE38: hypothetical protein|unclassified	0.0861685200
+UniRef50_N7PCN7	0.0861650181
+UniRef50_N7PCN7|unclassified	0.0861650181
+UniRef50_UPI000376EC18: hypothetical protein	0.0861602060
+UniRef50_UPI000376EC18: hypothetical protein|unclassified	0.0861602060
+UniRef50_UPI00035F0021: hypothetical protein	0.0861596051
+UniRef50_UPI00035F0021: hypothetical protein|unclassified	0.0861596051
+UniRef50_Q87BG6: Phosphoglycolate phosphatase	0.0861593861
+UniRef50_Q87BG6: Phosphoglycolate phosphatase|unclassified	0.0861593861
+UniRef50_UPI000369D8D3: hypothetical protein	0.0861543917
+UniRef50_UPI000369D8D3: hypothetical protein|unclassified	0.0861543917
+UniRef50_UPI00047E33F6: ABC transporter ATP-binding protein	0.0861491973
+UniRef50_UPI00047E33F6: ABC transporter ATP-binding protein|unclassified	0.0861491973
+UniRef50_Q1YS07: Type IV pilus biogenesis protein PilN	0.0861469376
+UniRef50_Q1YS07: Type IV pilus biogenesis protein PilN|unclassified	0.0861469376
+UniRef50_B7K5B1: Adenylyl-sulfate kinase	0.0861399134
+UniRef50_B7K5B1: Adenylyl-sulfate kinase|unclassified	0.0861399134
+UniRef50_B5E972: NADH-quinone oxidoreductase subunit B/C/D	0.0861246648
+UniRef50_B5E972: NADH-quinone oxidoreductase subunit B/C/D|unclassified	0.0861246648
+UniRef50_F8XNS8: (P)ppGpp synthetase I SpoT/RelA (Fragment)	0.0861185074
+UniRef50_F8XNS8: (P)ppGpp synthetase I SpoT/RelA (Fragment)|unclassified	0.0861185074
+UniRef50_UPI00037AF065: hypothetical protein	0.0861098989
+UniRef50_UPI00037AF065: hypothetical protein|unclassified	0.0861098989
+UniRef50_UPI000364633E: hypothetical protein	0.0861073061
+UniRef50_UPI000364633E: hypothetical protein|unclassified	0.0861073061
+UniRef50_X7F6B4: Membrane protein	0.0861043825
+UniRef50_X7F6B4: Membrane protein|unclassified	0.0861043825
+UniRef50_UPI000473321C: threonine aldolase, partial	0.0861041132
+UniRef50_UPI000473321C: threonine aldolase, partial|unclassified	0.0861041132
+UniRef50_UPI0003B3E7C5: adenine phosphoribosyltransferase	0.0860969257
+UniRef50_UPI0003B3E7C5: adenine phosphoribosyltransferase|unclassified	0.0860969257
+UniRef50_UPI0003660AB0: hypothetical protein	0.0860966830
+UniRef50_UPI0003660AB0: hypothetical protein|unclassified	0.0860966830
+UniRef50_W5JG56	0.0860918928
+UniRef50_W5JG56|unclassified	0.0860918928
+UniRef50_V6EZ46	0.0860903883
+UniRef50_V6EZ46|unclassified	0.0860903883
+UniRef50_E6SK73	0.0860828422
+UniRef50_E6SK73|unclassified	0.0860828422
+UniRef50_K1UM69: Carboxynorspermidine decarboxylase (Fragment)	0.0860774123
+UniRef50_K1UM69: Carboxynorspermidine decarboxylase (Fragment)|unclassified	0.0860774123
+UniRef50_Q54T75	0.0860746879
+UniRef50_Q54T75|unclassified	0.0860746879
+UniRef50_E3CCI3: ComEC/Rec2-like protein	0.0860743532
+UniRef50_E3CCI3: ComEC/Rec2-like protein|unclassified	0.0860743532
+UniRef50_UPI00036C7A48: flagellar biosynthesis protein FlhB	0.0860659085
+UniRef50_UPI00036C7A48: flagellar biosynthesis protein FlhB|unclassified	0.0860659085
+UniRef50_I1ILG0	0.0860621903
+UniRef50_I1ILG0|unclassified	0.0860621903
+UniRef50_UPI0004085DAE: hypothetical protein	0.0860619040
+UniRef50_UPI0004085DAE: hypothetical protein|unclassified	0.0860619040
+UniRef50_UPI00037A45FC: MULTISPECIES: hypothetical protein	0.0860599955
+UniRef50_UPI00037A45FC: MULTISPECIES: hypothetical protein|unclassified	0.0860599955
+UniRef50_U1G929	0.0860521511
+UniRef50_U1G929|unclassified	0.0860521511
+UniRef50_W4RP70	0.0860481056
+UniRef50_W4RP70|unclassified	0.0860481056
+UniRef50_UPI0004754608: hypothetical protein	0.0860434685
+UniRef50_UPI0004754608: hypothetical protein|unclassified	0.0860434685
+UniRef50_UPI00046606A2: hypothetical protein, partial	0.0860328010
+UniRef50_UPI00046606A2: hypothetical protein, partial|unclassified	0.0860328010
+UniRef50_UPI00047AE67F: hypothetical protein	0.0860316156
+UniRef50_UPI00047AE67F: hypothetical protein|unclassified	0.0860316156
+UniRef50_UPI000368E8FD: response regulator receiver	0.0860305368
+UniRef50_UPI000368E8FD: response regulator receiver|unclassified	0.0860305368
+UniRef50_S9T3K4	0.0860267215
+UniRef50_S9T3K4|unclassified	0.0860267215
+UniRef50_UPI0003604578: hypothetical protein	0.0860260179
+UniRef50_UPI0003604578: hypothetical protein|unclassified	0.0860260179
+UniRef50_O34599: Putative cysteine desulfurase IscS 1	0.0860233957
+UniRef50_O34599: Putative cysteine desulfurase IscS 1|unclassified	0.0860233957
+UniRef50_D4GJ21: YohN	0.0860217253
+UniRef50_D4GJ21: YohN|unclassified	0.0860217253
+UniRef50_UPI0003B6BA2C: chemotaxis protein CheY	0.0860192067
+UniRef50_UPI0003B6BA2C: chemotaxis protein CheY|unclassified	0.0860192067
+UniRef50_Q0C093: Guanylate kinase	0.0860182521
+UniRef50_Q0C093: Guanylate kinase|unclassified	0.0860182521
+UniRef50_B6IML3: Transcriptional regulator, putative	0.0860167714
+UniRef50_B6IML3: Transcriptional regulator, putative|unclassified	0.0860167714
+UniRef50_X1MWW3: Marine sediment metagenome DNA, contig: S06H3_S02838 (Fragment)	0.0860146255
+UniRef50_X1MWW3: Marine sediment metagenome DNA, contig: S06H3_S02838 (Fragment)|unclassified	0.0860146255
+UniRef50_UPI00047048E5: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase, partial	0.0860109583
+UniRef50_UPI00047048E5: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase, partial|unclassified	0.0860109583
+UniRef50_C5CZC5: Tripartite ATP-independent periplasmic transporter DctQ component	0.0859905622
+UniRef50_C5CZC5: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.0859905622
+UniRef50_UPI0002378355: cystathionine beta-lyase	0.0859787426
+UniRef50_UPI0002378355: cystathionine beta-lyase|unclassified	0.0859787426
+UniRef50_E2XK79: Potassium efflux system protein	0.0859781021
+UniRef50_E2XK79: Potassium efflux system protein|unclassified	0.0859781021
+UniRef50_UPI0003B38B2C: branched-chain amino acid ABC transporter ATP-binding protein	0.0859776106
+UniRef50_UPI0003B38B2C: branched-chain amino acid ABC transporter ATP-binding protein|unclassified	0.0859776106
+UniRef50_UPI0002195D49: NADPH:quinone reductase	0.0859732711
+UniRef50_UPI0002195D49: NADPH:quinone reductase|unclassified	0.0859732711
+UniRef50_K8MXW0	0.0859719923
+UniRef50_K8MXW0|unclassified	0.0859719923
+UniRef50_UPI000478D228: hypothetical protein	0.0859708054
+UniRef50_UPI000478D228: hypothetical protein|unclassified	0.0859708054
+UniRef50_X1PGK9: Marine sediment metagenome DNA, contig: S06H3_S10357 (Fragment)	0.0859664396
+UniRef50_X1PGK9: Marine sediment metagenome DNA, contig: S06H3_S10357 (Fragment)|unclassified	0.0859664396
+UniRef50_W0SFF4	0.0859583094
+UniRef50_W0SFF4|unclassified	0.0859583094
+UniRef50_D3AVG0: RNase P protein subunit, RNase MRP protein subunit	0.0859559806
+UniRef50_D3AVG0: RNase P protein subunit, RNase MRP protein subunit|unclassified	0.0859559806
+UniRef50_UPI0003631244: hypothetical protein	0.0859402670
+UniRef50_UPI0003631244: hypothetical protein|unclassified	0.0859402670
+UniRef50_A9KID5: GAF domain protein	0.0859396369
+UniRef50_A9KID5: GAF domain protein|unclassified	0.0859396369
+UniRef50_Q6LTA8	0.0859359050
+UniRef50_Q6LTA8|unclassified	0.0859359050
+UniRef50_UPI000418D073: hypothetical protein	0.0859343895
+UniRef50_UPI000418D073: hypothetical protein|unclassified	0.0859343895
+UniRef50_UPI000381B56E: hypothetical protein	0.0859237701
+UniRef50_UPI000381B56E: hypothetical protein|unclassified	0.0859237701
+UniRef50_UPI00046253F9: PTS sugar transporter subunit IIA	0.0859229246
+UniRef50_UPI00046253F9: PTS sugar transporter subunit IIA|unclassified	0.0859229246
+UniRef50_UPI0003668832: hypothetical protein, partial	0.0859200341
+UniRef50_UPI0003668832: hypothetical protein, partial|unclassified	0.0859200341
+UniRef50_UPI00035E4842: hypothetical protein	0.0859198219
+UniRef50_UPI00035E4842: hypothetical protein|unclassified	0.0859198219
+UniRef50_UPI00047D5891: glutamyl-tRNA amidotransferase	0.0859153870
+UniRef50_UPI00047D5891: glutamyl-tRNA amidotransferase|unclassified	0.0859153870
+UniRef50_Q94I12	0.0859146927
+UniRef50_Q94I12|unclassified	0.0859146927
+UniRef50_UPI0003B50367: hypothetical protein	0.0859030333
+UniRef50_UPI0003B50367: hypothetical protein|unclassified	0.0859030333
+UniRef50_A0A023XVU1	0.0859020115
+UniRef50_A0A023XVU1|unclassified	0.0859020115
+UniRef50_UPI0003C7FEA8: molybdopterin biosynthesis protein MoeA	0.0858966686
+UniRef50_UPI0003C7FEA8: molybdopterin biosynthesis protein MoeA|unclassified	0.0858966686
+UniRef50_D8UG15	0.0858954651
+UniRef50_D8UG15|unclassified	0.0858954651
+UniRef50_A0A015CNK3: Transposase DDE domain protein (Fragment)	0.0858854576
+UniRef50_A0A015CNK3: Transposase DDE domain protein (Fragment)|unclassified	0.0858854576
+UniRef50_UPI00036E7A90: hypothetical protein	0.0858828839
+UniRef50_UPI00036E7A90: hypothetical protein|unclassified	0.0858828839
+UniRef50_UPI00026CA6A9: flagellar biosynthesis protein FlhB	0.0858762251
+UniRef50_UPI00026CA6A9: flagellar biosynthesis protein FlhB|unclassified	0.0858762251
+UniRef50_UPI0004732D43: hypothetical protein	0.0858721320
+UniRef50_UPI0004732D43: hypothetical protein|unclassified	0.0858721320
+UniRef50_UPI0003761003: hypothetical protein	0.0858715643
+UniRef50_UPI0003761003: hypothetical protein|unclassified	0.0858715643
+UniRef50_UPI0003F81D5F: hypothetical protein	0.0858647106
+UniRef50_UPI0003F81D5F: hypothetical protein|unclassified	0.0858647106
+UniRef50_B9K494: Replication protein C	0.0858564499
+UniRef50_B9K494: Replication protein C|unclassified	0.0858564499
+UniRef50_UPI0002DD2F26: hypothetical protein	0.0858472722
+UniRef50_UPI0002DD2F26: hypothetical protein|unclassified	0.0858472722
+UniRef50_Q7XMQ5: OSJNBb0059K02.6 protein	0.0858458232
+UniRef50_Q7XMQ5: OSJNBb0059K02.6 protein|unclassified	0.0858458232
+UniRef50_O82357: 3-methyl-2-oxobutanoate hydroxymethyltransferase 1, mitochondrial	0.0858452367
+UniRef50_O82357: 3-methyl-2-oxobutanoate hydroxymethyltransferase 1, mitochondrial|unclassified	0.0858452367
+UniRef50_UPI000468196F: hypothetical protein	0.0858337845
+UniRef50_UPI000468196F: hypothetical protein|unclassified	0.0858337845
+UniRef50_UPI0003812998: hypothetical protein	0.0858294602
+UniRef50_UPI0003812998: hypothetical protein|unclassified	0.0858294602
+UniRef50_UPI0003721314: hypothetical protein	0.0858276425
+UniRef50_UPI0003721314: hypothetical protein|unclassified	0.0858276425
+UniRef50_UPI000468EFE8: hypothetical protein	0.0858268366
+UniRef50_UPI000468EFE8: hypothetical protein|unclassified	0.0858268366
+UniRef50_M7XBP9: Transketolase, thiamine diphosphate binding domain containing protein	0.0858257667
+UniRef50_M7XBP9: Transketolase, thiamine diphosphate binding domain containing protein|unclassified	0.0858257667
+UniRef50_UPI00037598D9: hypothetical protein	0.0858206770
+UniRef50_UPI00037598D9: hypothetical protein|unclassified	0.0858206770
+UniRef50_UPI000465F12F: hypothetical protein	0.0858177431
+UniRef50_UPI000465F12F: hypothetical protein|unclassified	0.0858177431
+UniRef50_F5RDX1	0.0858175184
+UniRef50_F5RDX1|unclassified	0.0858175184
+UniRef50_UPI00037FBEE1: hypothetical protein	0.0858152940
+UniRef50_UPI00037FBEE1: hypothetical protein|unclassified	0.0858152940
+UniRef50_UPI0003B7A6B2: branched-chain amino acid ABC transporter ATP-binding protein	0.0858132859
+UniRef50_UPI0003B7A6B2: branched-chain amino acid ABC transporter ATP-binding protein|unclassified	0.0858132859
+UniRef50_B0C079: Pyridoxine/pyridoxamine 5'-phosphate oxidase	0.0858102984
+UniRef50_B0C079: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	0.0858102984
+UniRef50_W1WUW0: GgnB protein	0.0858080327
+UniRef50_W1WUW0: GgnB protein|unclassified	0.0858080327
+UniRef50_UPI0003B3C27E: ABC transporter permease	0.0858080005
+UniRef50_UPI0003B3C27E: ABC transporter permease|unclassified	0.0858080005
+UniRef50_F9Z3D5: Peptidase S14 ClpP	0.0858059412
+UniRef50_F9Z3D5: Peptidase S14 ClpP|unclassified	0.0858059412
+UniRef50_Q9A3N9	0.0858039102
+UniRef50_Q9A3N9|unclassified	0.0858039102
+UniRef50_UPI00036C9093: hypothetical protein	0.0857906095
+UniRef50_UPI00036C9093: hypothetical protein|unclassified	0.0857906095
+UniRef50_UPI0004770C99: hypothetical protein	0.0857879609
+UniRef50_UPI0004770C99: hypothetical protein|unclassified	0.0857879609
+UniRef50_R7MGE2: LemA family protein	0.0857849656
+UniRef50_R7MGE2: LemA family protein|unclassified	0.0857849656
+UniRef50_A8TZ88: NnrS	0.0857829217
+UniRef50_A8TZ88: NnrS|unclassified	0.0857829217
+UniRef50_W9AMZ2	0.0857753318
+UniRef50_W9AMZ2|unclassified	0.0857753318
+UniRef50_Q13DN3: Ribosomal RNA large subunit methyltransferase H	0.0857750691
+UniRef50_Q13DN3: Ribosomal RNA large subunit methyltransferase H|unclassified	0.0857750691
+UniRef50_B9G048	0.0857746335
+UniRef50_B9G048|unclassified	0.0857746335
+UniRef50_X0PDD7: Peptide deformylase	0.0857726815
+UniRef50_X0PDD7: Peptide deformylase|unclassified	0.0857726815
+UniRef50_U6JYD7	0.0857634917
+UniRef50_U6JYD7|unclassified	0.0857634917
+UniRef50_UPI00047AB4E7: glycosyl transferase family 2	0.0857629954
+UniRef50_UPI00047AB4E7: glycosyl transferase family 2|unclassified	0.0857629954
+UniRef50_W2EA97: Major facilitator superfamily MFS_1 protein	0.0857595339
+UniRef50_W2EA97: Major facilitator superfamily MFS_1 protein|unclassified	0.0857595339
+UniRef50_UPI0002192FA7: dioxygenase	0.0857476766
+UniRef50_UPI0002192FA7: dioxygenase|unclassified	0.0857476766
+UniRef50_UPI0003756A18: hypothetical protein	0.0857472522
+UniRef50_UPI0003756A18: hypothetical protein|unclassified	0.0857472522
+UniRef50_UPI0004719149: hypothetical protein	0.0857432487
+UniRef50_UPI0004719149: hypothetical protein|unclassified	0.0857432487
+UniRef50_J8TSV8	0.0857424138
+UniRef50_J8TSV8|unclassified	0.0857424138
+UniRef50_J0XNC6	0.0857413727
+UniRef50_J0XNC6|unclassified	0.0857413727
+UniRef50_UPI0003B31E86: TDP-glucose-4,6-dehydratase	0.0857409054
+UniRef50_UPI0003B31E86: TDP-glucose-4,6-dehydratase|unclassified	0.0857409054
+UniRef50_Q3K746: D-alanine--D-alanine ligase	0.0857403778
+UniRef50_Q3K746: D-alanine--D-alanine ligase|unclassified	0.0857403778
+UniRef50_UPI00021979B4: hypothetical protein	0.0857401038
+UniRef50_UPI00021979B4: hypothetical protein|unclassified	0.0857401038
+UniRef50_UPI0004622CE7: hypothetical protein, partial	0.0857341996
+UniRef50_UPI0004622CE7: hypothetical protein, partial|unclassified	0.0857341996
+UniRef50_UPI000478626E: 3-oxoacyl-ACP reductase	0.0857328556
+UniRef50_UPI000478626E: 3-oxoacyl-ACP reductase|unclassified	0.0857328556
+UniRef50_UPI0003B30F98: GDP-mannose-dependent alpha-mannosyltransferase	0.0857286499
+UniRef50_UPI0003B30F98: GDP-mannose-dependent alpha-mannosyltransferase|unclassified	0.0857286499
+UniRef50_Q89FT4: Bll6615 protein	0.0857253492
+UniRef50_Q89FT4: Bll6615 protein|unclassified	0.0857253492
+UniRef50_J8RJ96	0.0857188075
+UniRef50_J8RJ96|unclassified	0.0857188075
+UniRef50_U3AAQ0	0.0857168524
+UniRef50_U3AAQ0|unclassified	0.0857168524
+UniRef50_UPI000374F259: hypothetical protein, partial	0.0857079712
+UniRef50_UPI000374F259: hypothetical protein, partial|unclassified	0.0857079712
+UniRef50_UPI0003955A36: biotin synthase	0.0857077226
+UniRef50_UPI0003955A36: biotin synthase|unclassified	0.0857077226
+UniRef50_B3A0N5: Apyrase	0.0856999497
+UniRef50_B3A0N5: Apyrase|unclassified	0.0856999497
+UniRef50_UPI000367217B: hypothetical protein	0.0856967056
+UniRef50_UPI000367217B: hypothetical protein|unclassified	0.0856967056
+UniRef50_Q21K28: Leucyl/phenylalanyl-tRNA--protein transferase	0.0856933812
+UniRef50_Q21K28: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.0856933812
+UniRef50_D3FTV9	0.0856887130
+UniRef50_D3FTV9|unclassified	0.0856887130
+UniRef50_UPI000471C14A: tryptophan synthase subunit alpha, partial	0.0856884198
+UniRef50_UPI000471C14A: tryptophan synthase subunit alpha, partial|unclassified	0.0856884198
+UniRef50_Q31JB9: Cyclic pyranopterin monophosphate synthase	0.0856763196
+UniRef50_Q31JB9: Cyclic pyranopterin monophosphate synthase|unclassified	0.0856763196
+UniRef50_X1E0J6: Marine sediment metagenome DNA, contig: S01H4_S14951 (Fragment)	0.0856760433
+UniRef50_X1E0J6: Marine sediment metagenome DNA, contig: S01H4_S14951 (Fragment)|unclassified	0.0856760433
+UniRef50_UPI000403EBB4: hypothetical protein	0.0856706077
+UniRef50_UPI000403EBB4: hypothetical protein|unclassified	0.0856706077
+UniRef50_Q1D6P1: Adenylyl-sulfate kinase	0.0856699071
+UniRef50_Q1D6P1: Adenylyl-sulfate kinase|unclassified	0.0856699071
+UniRef50_UPI0003665C10: hypothetical protein	0.0856697161
+UniRef50_UPI0003665C10: hypothetical protein|unclassified	0.0856697161
+UniRef50_UPI00016C0A44: gluconate permease	0.0856693417
+UniRef50_UPI00016C0A44: gluconate permease|unclassified	0.0856693417
+UniRef50_UPI00039C1648: 3-mercaptopyruvate sulfurtransferase	0.0856561179
+UniRef50_UPI00039C1648: 3-mercaptopyruvate sulfurtransferase|unclassified	0.0856561179
+UniRef50_UPI0004622D2C: hypothetical protein TRAVEDRAFT_29630	0.0856510962
+UniRef50_UPI0004622D2C: hypothetical protein TRAVEDRAFT_29630|unclassified	0.0856510962
+UniRef50_E0MPD3: UPF0301 protein R2A130_1378	0.0856469663
+UniRef50_E0MPD3: UPF0301 protein R2A130_1378|unclassified	0.0856469663
+UniRef50_O32135: UPF0759 protein YunF	0.0856414862
+UniRef50_O32135: UPF0759 protein YunF|unclassified	0.0856414862
+UniRef50_UPI00037D3D58: diguanylate phosphodiesterase	0.0856367797
+UniRef50_UPI00037D3D58: diguanylate phosphodiesterase|unclassified	0.0856367797
+UniRef50_C5KZL8	0.0856332548
+UniRef50_C5KZL8|unclassified	0.0856332548
+UniRef50_Q16BT2	0.0856288335
+UniRef50_Q16BT2|unclassified	0.0856288335
+UniRef50_UPI000476C674: hypothetical protein	0.0856286714
+UniRef50_UPI000476C674: hypothetical protein|unclassified	0.0856286714
+UniRef50_V6MHJ7	0.0856279237
+UniRef50_V6MHJ7|unclassified	0.0856279237
+UniRef50_Q21VW6: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.0856185560
+UniRef50_Q21VW6: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.0856185560
+UniRef50_Q9LXS6: Citrate synthase 2, peroxisomal	0.0856139161
+UniRef50_Q9LXS6: Citrate synthase 2, peroxisomal|unclassified	0.0856139161
+UniRef50_UPI00035E630D: hypothetical protein	0.0856121388
+UniRef50_UPI00035E630D: hypothetical protein|unclassified	0.0856121388
+UniRef50_O34990: Formyltetrahydrofolate deformylase	0.0856083690
+UniRef50_O34990: Formyltetrahydrofolate deformylase|unclassified	0.0856083690
+UniRef50_UPI0001FFDDA8: haloacid dehalogenase-like hydrolase	0.0856069780
+UniRef50_UPI0001FFDDA8: haloacid dehalogenase-like hydrolase|unclassified	0.0856069780
+UniRef50_UPI00047A1773: lipoate--protein ligase	0.0856069009
+UniRef50_UPI00047A1773: lipoate--protein ligase|unclassified	0.0856069009
+UniRef50_G4RE19	0.0856014847
+UniRef50_G4RE19|unclassified	0.0856014847
+UniRef50_X2LZS9	0.0856009619
+UniRef50_X2LZS9|unclassified	0.0856009619
+UniRef50_UPI0003B4D658: major facilitator transporter	0.0855996805
+UniRef50_UPI0003B4D658: major facilitator transporter|unclassified	0.0855996805
+UniRef50_UPI0000DB7F23: PREDICTED: major facilitator superfamily domain-containing protein 3-like	0.0855947228
+UniRef50_UPI0000DB7F23: PREDICTED: major facilitator superfamily domain-containing protein 3-like|unclassified	0.0855947228
+UniRef50_UPI000466EB56: hypothetical protein	0.0855895759
+UniRef50_UPI000466EB56: hypothetical protein|unclassified	0.0855895759
+UniRef50_UPI00033377F3: PREDICTED: alcohol dehydrogenase class-3	0.0855880627
+UniRef50_UPI00033377F3: PREDICTED: alcohol dehydrogenase class-3|unclassified	0.0855880627
+UniRef50_E8XQX0	0.0855740799
+UniRef50_E8XQX0|unclassified	0.0855740799
+UniRef50_D4E3U1	0.0855668103
+UniRef50_D4E3U1|unclassified	0.0855668103
+UniRef50_K7YMS1: FixH	0.0855644916
+UniRef50_K7YMS1: FixH|unclassified	0.0855644916
+UniRef50_UPI0001744C48: N-acetylmuramoyl-L-alanine amidase	0.0855464083
+UniRef50_UPI0001744C48: N-acetylmuramoyl-L-alanine amidase|unclassified	0.0855464083
+UniRef50_UPI00034B3970: hypothetical protein	0.0855323073
+UniRef50_UPI00034B3970: hypothetical protein|unclassified	0.0855323073
+UniRef50_UPI0003EC6274: PREDICTED: ATP-binding cassette sub-family B member 9, partial	0.0855297359
+UniRef50_UPI0003EC6274: PREDICTED: ATP-binding cassette sub-family B member 9, partial|unclassified	0.0855297359
+UniRef50_R5MJA9	0.0855272627
+UniRef50_R5MJA9|unclassified	0.0855272627
+UniRef50_Q9RPQ3: Histidine biosynthesis bifunctional protein HisIE	0.0855268492
+UniRef50_Q9RPQ3: Histidine biosynthesis bifunctional protein HisIE|unclassified	0.0855268492
+UniRef50_A9A3N4: Adenine phosphoribosyltransferase	0.0855196268
+UniRef50_A9A3N4: Adenine phosphoribosyltransferase|unclassified	0.0855196268
+UniRef50_UPI00046E5CA1: mannitol-1-phosphate 5-dehydrogenase	0.0855194554
+UniRef50_UPI00046E5CA1: mannitol-1-phosphate 5-dehydrogenase|unclassified	0.0855194554
+UniRef50_A3VW98	0.0855158570
+UniRef50_A3VW98|unclassified	0.0855158570
+UniRef50_V5BR91: Acetate CoA-transferase YdiF	0.0855157698
+UniRef50_V5BR91: Acetate CoA-transferase YdiF|unclassified	0.0855157698
+UniRef50_UPI00041D53FD: hypothetical protein	0.0855154461
+UniRef50_UPI00041D53FD: hypothetical protein|unclassified	0.0855154461
+UniRef50_C6L8Z7	0.0855151677
+UniRef50_C6L8Z7|unclassified	0.0855151677
+UniRef50_W7BKM0	0.0855133172
+UniRef50_W7BKM0|unclassified	0.0855133172
+UniRef50_A0A022LI67	0.0855117262
+UniRef50_A0A022LI67|unclassified	0.0855117262
+UniRef50_A8IHF3	0.0855081668
+UniRef50_A8IHF3|unclassified	0.0855081668
+UniRef50_K1K1Y5: Phage tail protein I	0.0855001568
+UniRef50_K1K1Y5: Phage tail protein I|unclassified	0.0855001568
+UniRef50_UPI0003758570: hypothetical protein	0.0854991831
+UniRef50_UPI0003758570: hypothetical protein|unclassified	0.0854991831
+UniRef50_A0A052I5G4: TRAP transporter, DctM-like membrane domain protein	0.0854916257
+UniRef50_A0A052I5G4: TRAP transporter, DctM-like membrane domain protein|unclassified	0.0854916257
+UniRef50_V4IXJ2	0.0854850795
+UniRef50_V4IXJ2|unclassified	0.0854850795
+UniRef50_UPI000255C7CF: prolyl oligopeptidase	0.0854847675
+UniRef50_UPI000255C7CF: prolyl oligopeptidase|unclassified	0.0854847675
+UniRef50_UPI00047D3D0E: hypothetical protein	0.0854613384
+UniRef50_UPI00047D3D0E: hypothetical protein|unclassified	0.0854613384
+UniRef50_B6IUQ1	0.0854612121
+UniRef50_B6IUQ1|unclassified	0.0854612121
+UniRef50_W1JRI4: TRAP-type C4-dicarboxylate transport system large permease DctM (Fragment)	0.0854609595
+UniRef50_W1JRI4: TRAP-type C4-dicarboxylate transport system large permease DctM (Fragment)|unclassified	0.0854609595
+UniRef50_UPI00036496B1: hypothetical protein	0.0854393753
+UniRef50_UPI00036496B1: hypothetical protein|unclassified	0.0854393753
+UniRef50_UPI00041C4BFA: manganese ABC transporter substrate-binding protein	0.0854392065
+UniRef50_UPI00041C4BFA: manganese ABC transporter substrate-binding protein|unclassified	0.0854392065
+UniRef50_UPI00035E6AC5: hypothetical protein	0.0854363303
+UniRef50_UPI00035E6AC5: hypothetical protein|unclassified	0.0854363303
+UniRef50_UPI000464210D: phosphonate metabolism protein PhnM	0.0854355790
+UniRef50_UPI000464210D: phosphonate metabolism protein PhnM|unclassified	0.0854355790
+UniRef50_UPI0003B67BD2: ATP-dependent DNA helicase	0.0854276049
+UniRef50_UPI0003B67BD2: ATP-dependent DNA helicase|unclassified	0.0854276049
+UniRef50_W6S053: Oligoendopeptidase, M3 family	0.0854161456
+UniRef50_W6S053: Oligoendopeptidase, M3 family|unclassified	0.0854161456
+UniRef50_UPI00037DA4B4: hypothetical protein	0.0854076903
+UniRef50_UPI00037DA4B4: hypothetical protein|unclassified	0.0854076903
+UniRef50_A9CKX0	0.0853928899
+UniRef50_A9CKX0|unclassified	0.0853928899
+UniRef50_O57979: Amidophosphoribosyltransferase	0.0853875071
+UniRef50_O57979: Amidophosphoribosyltransferase|unclassified	0.0853875071
+UniRef50_L7L075	0.0853868800
+UniRef50_L7L075|unclassified	0.0853868800
+UniRef50_UPI000255B476: LysR family transcriptional regulator	0.0853858357
+UniRef50_UPI000255B476: LysR family transcriptional regulator|unclassified	0.0853858357
+UniRef50_UPI00047AEE5F: hypothetical protein	0.0853814380
+UniRef50_UPI00047AEE5F: hypothetical protein|unclassified	0.0853814380
+UniRef50_Q1MPL2: Porphobilinogen deaminase	0.0853798997
+UniRef50_Q1MPL2: Porphobilinogen deaminase|unclassified	0.0853798997
+UniRef50_E8TYD4: Carbon monoxide dehydrogenase subunit G	0.0853773136
+UniRef50_E8TYD4: Carbon monoxide dehydrogenase subunit G|unclassified	0.0853773136
+UniRef50_UPI0003744011: hypothetical protein	0.0853700727
+UniRef50_UPI0003744011: hypothetical protein|unclassified	0.0853700727
+UniRef50_UPI00047C96F1: stage V sporulation protein E	0.0853664835
+UniRef50_UPI00047C96F1: stage V sporulation protein E|unclassified	0.0853664835
+UniRef50_UPI000319F04C: hypothetical protein	0.0853653856
+UniRef50_UPI000319F04C: hypothetical protein|unclassified	0.0853653856
+UniRef50_G2T956: Thioesterase superfamily protein	0.0853612361
+UniRef50_G2T956: Thioesterase superfamily protein|unclassified	0.0853612361
+UniRef50_W4TMC7	0.0853600719
+UniRef50_W4TMC7|unclassified	0.0853600719
+UniRef50_A8JFW3: Predicted protein (Fragment)	0.0853564891
+UniRef50_A8JFW3: Predicted protein (Fragment)|unclassified	0.0853564891
+UniRef50_T0HNI6	0.0853555729
+UniRef50_T0HNI6|unclassified	0.0853555729
+UniRef50_I0HTN6	0.0853541830
+UniRef50_I0HTN6|unclassified	0.0853541830
+UniRef50_UPI00047CB087: type VI secretion protein	0.0853541830
+UniRef50_UPI00047CB087: type VI secretion protein|unclassified	0.0853541830
+UniRef50_UPI0003B70024: hypothetical protein	0.0853532492
+UniRef50_UPI0003B70024: hypothetical protein|unclassified	0.0853532492
+UniRef50_UPI0003B549DC: DNA invertase	0.0853517986
+UniRef50_UPI0003B549DC: DNA invertase|unclassified	0.0853517986
+UniRef50_UPI00046D9237: hypothetical protein	0.0853494291
+UniRef50_UPI00046D9237: hypothetical protein|unclassified	0.0853494291
+UniRef50_D5QFV4	0.0853466958
+UniRef50_D5QFV4|unclassified	0.0853466958
+UniRef50_UPI00037B9234: hypothetical protein, partial	0.0853456200
+UniRef50_UPI00037B9234: hypothetical protein, partial|unclassified	0.0853456200
+UniRef50_E8X663: von Willebrand factor type A	0.0853418940
+UniRef50_E8X663: von Willebrand factor type A|unclassified	0.0853418940
+UniRef50_S9QDL2: OmpA domain protein	0.0853333397
+UniRef50_S9QDL2: OmpA domain protein|unclassified	0.0853333397
+UniRef50_UPI00038308DC: hypothetical protein M271_48570	0.0853309601
+UniRef50_UPI00038308DC: hypothetical protein M271_48570|unclassified	0.0853309601
+UniRef50_UPI0004709247: hypothetical protein	0.0853283983
+UniRef50_UPI0004709247: hypothetical protein|unclassified	0.0853283983
+UniRef50_UPI000470B094: D-ribose transporter ATP-binding protein	0.0853279019
+UniRef50_UPI000470B094: D-ribose transporter ATP-binding protein|unclassified	0.0853279019
+UniRef50_A0Y806: Predicted signal transduction protein containing a membrane domain, an EAL and a GGDEF domain	0.0853261507
+UniRef50_A0Y806: Predicted signal transduction protein containing a membrane domain, an EAL and a GGDEF domain|unclassified	0.0853261507
+UniRef50_UPI0002891F63: alpha/beta hydrolase	0.0853241953
+UniRef50_UPI0002891F63: alpha/beta hydrolase|unclassified	0.0853241953
+UniRef50_UPI00034BF133: hypothetical protein	0.0853234195
+UniRef50_UPI00034BF133: hypothetical protein|unclassified	0.0853234195
+UniRef50_A7HSA0: Tripartite ATP-independent periplasmic transporter DctQ component	0.0853213635
+UniRef50_A7HSA0: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.0853213635
+UniRef50_W0F5B5: Phospholipid-binding protein	0.0853134686
+UniRef50_W0F5B5: Phospholipid-binding protein|unclassified	0.0853134686
+UniRef50_UPI0003B3B60A: transglycosylase	0.0853128905
+UniRef50_UPI0003B3B60A: transglycosylase|unclassified	0.0853128905
+UniRef50_Q98L75: Hemin import ATP-binding protein HmuV	0.0853026472
+UniRef50_Q98L75: Hemin import ATP-binding protein HmuV|unclassified	0.0853026472
+UniRef50_UPI000476FBDE: hypothetical protein	0.0853018843
+UniRef50_UPI000476FBDE: hypothetical protein|unclassified	0.0853018843
+UniRef50_UPI000377BAF8: hypothetical protein	0.0852928711
+UniRef50_UPI000377BAF8: hypothetical protein|unclassified	0.0852928711
+UniRef50_W5XAX8: Glutamate racemase	0.0852911125
+UniRef50_W5XAX8: Glutamate racemase|unclassified	0.0852911125
+UniRef50_UPI000469D37F: sodium:solute symporter	0.0852842470
+UniRef50_UPI000469D37F: sodium:solute symporter|unclassified	0.0852842470
+UniRef50_Q04760: Lactoylglutathione lyase	0.0852803582
+UniRef50_Q04760: Lactoylglutathione lyase|unclassified	0.0852803582
+UniRef50_P81006: L-hydantoinase	0.0852740274
+UniRef50_P81006: L-hydantoinase|unclassified	0.0852740274
+UniRef50_UPI0003B3016D: short-chain dehydrogenase	0.0852710618
+UniRef50_UPI0003B3016D: short-chain dehydrogenase|unclassified	0.0852710618
+UniRef50_B6B0K4	0.0852685010
+UniRef50_B6B0K4|unclassified	0.0852685010
+UniRef50_A4SM42: ATP-dependent Clp protease proteolytic subunit	0.0852567886
+UniRef50_A4SM42: ATP-dependent Clp protease proteolytic subunit|unclassified	0.0852567886
+UniRef50_B5CL64	0.0852530603
+UniRef50_B5CL64|unclassified	0.0852530603
+UniRef50_V4RBB3: Flagellar basal-body rod modification protein FlgD	0.0852525224
+UniRef50_V4RBB3: Flagellar basal-body rod modification protein FlgD|unclassified	0.0852525224
+UniRef50_A1B2H8: Flagellar hook capping protein	0.0852423388
+UniRef50_A1B2H8: Flagellar hook capping protein|unclassified	0.0852423388
+UniRef50_Q8FE40	0.0852379075
+UniRef50_Q8FE40|unclassified	0.0852379075
+UniRef50_G3VAE4	0.0852320242
+UniRef50_G3VAE4|unclassified	0.0852320242
+UniRef50_A0A017HN56: Short-chain dehydrogenase/reductase SDR	0.0852269385
+UniRef50_A0A017HN56: Short-chain dehydrogenase/reductase SDR|unclassified	0.0852269385
+UniRef50_UPI0004749E59: uroporphyrinogen decarboxylase	0.0852106834
+UniRef50_UPI0004749E59: uroporphyrinogen decarboxylase|unclassified	0.0852106834
+UniRef50_UPI00047949F3: hypothetical protein	0.0852103647
+UniRef50_UPI00047949F3: hypothetical protein|unclassified	0.0852103647
+UniRef50_J9NXH4	0.0852102467
+UniRef50_J9NXH4|unclassified	0.0852102467
+UniRef50_I7ESS1	0.0852046426
+UniRef50_I7ESS1|unclassified	0.0852046426
+UniRef50_UPI000375361D: hypothetical protein	0.0851987528
+UniRef50_UPI000375361D: hypothetical protein|unclassified	0.0851987528
+UniRef50_UPI000475C9D9: hypothetical protein	0.0851959575
+UniRef50_UPI000475C9D9: hypothetical protein|unclassified	0.0851959575
+UniRef50_UPI0002626459: tRNA methyltransferase	0.0851947146
+UniRef50_UPI0002626459: tRNA methyltransferase|unclassified	0.0851947146
+UniRef50_UPI0002FCF36B: hypothetical protein	0.0851926597
+UniRef50_UPI0002FCF36B: hypothetical protein|unclassified	0.0851926597
+UniRef50_K0SX00	0.0851921694
+UniRef50_K0SX00|unclassified	0.0851921694
+UniRef50_A4T2T4: Peptide deformylase	0.0851916679
+UniRef50_A4T2T4: Peptide deformylase|unclassified	0.0851916679
+UniRef50_K8WUE9: Phosphomethylpyrimidine synthase ThiC	0.0851900094
+UniRef50_K8WUE9: Phosphomethylpyrimidine synthase ThiC|unclassified	0.0851900094
+UniRef50_UPI00039E9E91: hypothetical protein	0.0851814392
+UniRef50_UPI00039E9E91: hypothetical protein|unclassified	0.0851814392
+UniRef50_UPI00036253C8: hypothetical protein	0.0851795434
+UniRef50_UPI00036253C8: hypothetical protein|unclassified	0.0851795434
+UniRef50_W4LRM8	0.0851770094
+UniRef50_W4LRM8|unclassified	0.0851770094
+UniRef50_U1WF02	0.0851722476
+UniRef50_U1WF02|unclassified	0.0851722476
+UniRef50_UPI0003F1909F: hypothetical protein	0.0851714484
+UniRef50_UPI0003F1909F: hypothetical protein|unclassified	0.0851714484
+UniRef50_UPI00036EE058: hypothetical protein	0.0851712430
+UniRef50_UPI00036EE058: hypothetical protein|unclassified	0.0851712430
+UniRef50_UPI000440C089: phosphatases II	0.0851689122
+UniRef50_UPI000440C089: phosphatases II|unclassified	0.0851689122
+UniRef50_B1I165: Thymidylate kinase	0.0851591270
+UniRef50_B1I165: Thymidylate kinase|unclassified	0.0851591270
+UniRef50_UPI0001B411A5: hypothetical protein	0.0851552730
+UniRef50_UPI0001B411A5: hypothetical protein|unclassified	0.0851552730
+UniRef50_E8NZR6: UPF0502 protein YPC_2277	0.0851546335
+UniRef50_E8NZR6: UPF0502 protein YPC_2277|unclassified	0.0851546335
+UniRef50_UPI000476F5C1: hypothetical protein	0.0851486732
+UniRef50_UPI000476F5C1: hypothetical protein|unclassified	0.0851486732
+UniRef50_E4N0N9	0.0851481684
+UniRef50_E4N0N9|unclassified	0.0851481684
+UniRef50_UPI00016C499F: dimethyladenosine transferase, partial	0.0851476053
+UniRef50_UPI00016C499F: dimethyladenosine transferase, partial|unclassified	0.0851476053
+UniRef50_UPI00047A0281: hypothetical protein	0.0851434190
+UniRef50_UPI00047A0281: hypothetical protein|unclassified	0.0851434190
+UniRef50_UPI0003648D9D: hypothetical protein	0.0851394876
+UniRef50_UPI0003648D9D: hypothetical protein|unclassified	0.0851394876
+UniRef50_Q9A7N9: Guanylate kinase	0.0851300919
+UniRef50_Q9A7N9: Guanylate kinase|unclassified	0.0851300919
+UniRef50_Q2NX37	0.0851281463
+UniRef50_Q2NX37|unclassified	0.0851281463
+UniRef50_E1SEF6: Baseplate assembly protein J (GpJ)	0.0851256940
+UniRef50_E1SEF6: Baseplate assembly protein J (GpJ)|unclassified	0.0851256940
+UniRef50_UPI00035DFE1A: hypothetical protein	0.0851228215
+UniRef50_UPI00035DFE1A: hypothetical protein|unclassified	0.0851228215
+UniRef50_E2X1M6	0.0851187697
+UniRef50_E2X1M6|unclassified	0.0851187697
+UniRef50_K1Z3Z6	0.0851152793
+UniRef50_K1Z3Z6|unclassified	0.0851152793
+UniRef50_UPI0004633BEF: hypothetical protein	0.0851145668
+UniRef50_UPI0004633BEF: hypothetical protein|unclassified	0.0851145668
+UniRef50_UPI000420A761: hypothetical protein	0.0850827295
+UniRef50_UPI000420A761: hypothetical protein|unclassified	0.0850827295
+UniRef50_UPI0002892FA0: 2-ketogluconate reductase	0.0850823092
+UniRef50_UPI0002892FA0: 2-ketogluconate reductase|unclassified	0.0850823092
+UniRef50_S9Q9V8	0.0850796733
+UniRef50_S9Q9V8|unclassified	0.0850796733
+UniRef50_UPI00029AB9F2: regulator	0.0850629800
+UniRef50_UPI00029AB9F2: regulator|unclassified	0.0850629800
+UniRef50_G4FBD8	0.0850605565
+UniRef50_G4FBD8|unclassified	0.0850605565
+UniRef50_UPI000361C657: hypothetical protein	0.0850601174
+UniRef50_UPI000361C657: hypothetical protein|unclassified	0.0850601174
+UniRef50_UPI000422240A: ATPase	0.0850579786
+UniRef50_UPI000422240A: ATPase|unclassified	0.0850579786
+UniRef50_I9AI32: Sorbitol/Glucitol operon activator protein	0.0850392272
+UniRef50_I9AI32: Sorbitol/Glucitol operon activator protein|unclassified	0.0850392272
+UniRef50_V9GB64: Tricarboxylate transport membrane protein TctA	0.0850364150
+UniRef50_V9GB64: Tricarboxylate transport membrane protein TctA|unclassified	0.0850364150
+UniRef50_I6L8N6: Capsular polysaccharide biosynthesis protein Cps4E	0.0850363993
+UniRef50_I6L8N6: Capsular polysaccharide biosynthesis protein Cps4E|unclassified	0.0850363993
+UniRef50_F2H147	0.0850360890
+UniRef50_F2H147|unclassified	0.0850360890
+UniRef50_UPI0002E0F4B1: hypothetical protein	0.0850360447
+UniRef50_UPI0002E0F4B1: hypothetical protein|unclassified	0.0850360447
+UniRef50_UPI00037413DD: hypothetical protein	0.0850354689
+UniRef50_UPI00037413DD: hypothetical protein|unclassified	0.0850354689
+UniRef50_UPI0001C4F400: sulfate ABC transporter permease	0.0850254977
+UniRef50_UPI0001C4F400: sulfate ABC transporter permease|unclassified	0.0850254977
+UniRef50_UPI00035FBF65: hypothetical protein	0.0850215548
+UniRef50_UPI00035FBF65: hypothetical protein|unclassified	0.0850215548
+UniRef50_G8VPJ1: NAD-specific glutamate dehydrogenase	0.0850209829
+UniRef50_G8VPJ1: NAD-specific glutamate dehydrogenase|unclassified	0.0850209829
+UniRef50_X1A0V1: Marine sediment metagenome DNA, contig: S01H4_L00699	0.0850188464
+UniRef50_X1A0V1: Marine sediment metagenome DNA, contig: S01H4_L00699|unclassified	0.0850188464
+UniRef50_UPI0002E59E63: hypothetical protein	0.0849990626
+UniRef50_UPI0002E59E63: hypothetical protein|unclassified	0.0849990626
+UniRef50_B0TN69: Lytic transglycosylase catalytic	0.0849944297
+UniRef50_B0TN69: Lytic transglycosylase catalytic|unclassified	0.0849944297
+UniRef50_UPI000237AAE7: hypothetical protein, partial	0.0849829040
+UniRef50_UPI000237AAE7: hypothetical protein, partial|unclassified	0.0849829040
+UniRef50_UPI000474CD1F: AbrB family transcriptional regulator	0.0849828224
+UniRef50_UPI000474CD1F: AbrB family transcriptional regulator|unclassified	0.0849828224
+UniRef50_UPI0003B54089: hypothetical protein	0.0849727163
+UniRef50_UPI0003B54089: hypothetical protein|unclassified	0.0849727163
+UniRef50_UPI000393F2DF: hypothetical protein	0.0849689836
+UniRef50_UPI000393F2DF: hypothetical protein|unclassified	0.0849689836
+UniRef50_Q68UR1	0.0849663971
+UniRef50_Q68UR1|unclassified	0.0849663971
+UniRef50_C7RAT6: NAD(P)H dehydrogenase (Quinone)	0.0849569270
+UniRef50_C7RAT6: NAD(P)H dehydrogenase (Quinone)|unclassified	0.0849569270
+UniRef50_UPI00036110FD: hypothetical protein	0.0849485770
+UniRef50_UPI00036110FD: hypothetical protein|unclassified	0.0849485770
+UniRef50_UPI0004794179: dihydrouridine synthase	0.0849461183
+UniRef50_UPI0004794179: dihydrouridine synthase|unclassified	0.0849461183
+UniRef50_C9ZEE4	0.0849427622
+UniRef50_C9ZEE4|unclassified	0.0849427622
+UniRef50_J3X3P8	0.0849367491
+UniRef50_J3X3P8|unclassified	0.0849367491
+UniRef50_UPI00047D14DB: cytochrome C oxidase assembly protein	0.0849353344
+UniRef50_UPI00047D14DB: cytochrome C oxidase assembly protein|unclassified	0.0849353344
+UniRef50_UPI0003B7462C: transglycosylase	0.0849286365
+UniRef50_UPI0003B7462C: transglycosylase|unclassified	0.0849286365
+UniRef50_UPI000248DC37: tetR family regulatory protein	0.0849258286
+UniRef50_UPI000248DC37: tetR family regulatory protein|unclassified	0.0849258286
+UniRef50_Q9KDG2: Histidine--tRNA ligase	0.0849223595
+UniRef50_Q9KDG2: Histidine--tRNA ligase|unclassified	0.0849223595
+UniRef50_UPI00035F7057: transcriptional regulator	0.0849183481
+UniRef50_UPI00035F7057: transcriptional regulator|unclassified	0.0849183481
+UniRef50_M1T3Y9: Carbon monoxide dehydrogenase subunit G	0.0849176432
+UniRef50_M1T3Y9: Carbon monoxide dehydrogenase subunit G|unclassified	0.0849176432
+UniRef50_UPI00046A2862: hypothetical protein	0.0849112238
+UniRef50_UPI00046A2862: hypothetical protein|unclassified	0.0849112238
+UniRef50_UPI00037F4692: hypothetical protein	0.0849100407
+UniRef50_UPI00037F4692: hypothetical protein|unclassified	0.0849100407
+UniRef50_Q71ZA3: Formamidopyrimidine-DNA glycosylase	0.0849095780
+UniRef50_Q71ZA3: Formamidopyrimidine-DNA glycosylase|unclassified	0.0849095780
+UniRef50_UPI0004736BF7: glycosyl transferase	0.0848980458
+UniRef50_UPI0004736BF7: glycosyl transferase|unclassified	0.0848980458
+UniRef50_A0A017HRX3	0.0848938717
+UniRef50_A0A017HRX3|unclassified	0.0848938717
+UniRef50_UPI0004769217: hypothetical protein	0.0848934558
+UniRef50_UPI0004769217: hypothetical protein|unclassified	0.0848934558
+UniRef50_UPI0002556578: recombination and repair protein, partial	0.0848898701
+UniRef50_UPI0002556578: recombination and repair protein, partial|unclassified	0.0848898701
+UniRef50_F5XK29	0.0848872739
+UniRef50_F5XK29|unclassified	0.0848872739
+UniRef50_R1CYW6	0.0848851522
+UniRef50_R1CYW6|unclassified	0.0848851522
+UniRef50_UPI00040871A3: thioredoxin reductase	0.0848804039
+UniRef50_UPI00040871A3: thioredoxin reductase|unclassified	0.0848804039
+UniRef50_W4LY76	0.0848781469
+UniRef50_W4LY76|unclassified	0.0848781469
+UniRef50_UPI0002233D7A: PREDICTED: hypothetical protein LOC100663118	0.0848711005
+UniRef50_UPI0002233D7A: PREDICTED: hypothetical protein LOC100663118|unclassified	0.0848711005
+UniRef50_F9H9Z5: Putative phage terminase, large subunit	0.0848675506
+UniRef50_F9H9Z5: Putative phage terminase, large subunit|unclassified	0.0848675506
+UniRef50_UPI00036F74FC: hypothetical protein	0.0848594497
+UniRef50_UPI00036F74FC: hypothetical protein|unclassified	0.0848594497
+UniRef50_Q7UZ20: Histidine--tRNA ligase	0.0848589662
+UniRef50_Q7UZ20: Histidine--tRNA ligase|unclassified	0.0848589662
+UniRef50_UPI0003B6F35B: NmrA family protein	0.0848574182
+UniRef50_UPI0003B6F35B: NmrA family protein|unclassified	0.0848574182
+UniRef50_UPI00047AF6F5: hypothetical protein	0.0848473682
+UniRef50_UPI00047AF6F5: hypothetical protein|unclassified	0.0848473682
+UniRef50_X6KY40	0.0848453310
+UniRef50_X6KY40|unclassified	0.0848453310
+UniRef50_UPI000372E826: hypothetical protein	0.0848427159
+UniRef50_UPI000372E826: hypothetical protein|unclassified	0.0848427159
+UniRef50_W4GWK3	0.0848422598
+UniRef50_W4GWK3|unclassified	0.0848422598
+UniRef50_UPI0003B44FA8: PTS N-acetylglucosamine transporter subunit IIABC	0.0848364206
+UniRef50_UPI0003B44FA8: PTS N-acetylglucosamine transporter subunit IIABC|unclassified	0.0848364206
+UniRef50_UPI000373C086: hypothetical protein	0.0848323628
+UniRef50_UPI000373C086: hypothetical protein|unclassified	0.0848323628
+UniRef50_A1USI9: 3-oxoacyl-[acyl-carrier-protein] synthase 3	0.0848307679
+UniRef50_A1USI9: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	0.0848307679
+UniRef50_D5VMU5: Flagellar hook capping protein	0.0848290231
+UniRef50_D5VMU5: Flagellar hook capping protein|unclassified	0.0848290231
+UniRef50_H6SLY0: Glutathione-regulated potassium-efflux system ancillary protein KefG	0.0848235864
+UniRef50_H6SLY0: Glutathione-regulated potassium-efflux system ancillary protein KefG|unclassified	0.0848235864
+UniRef50_B6IW25	0.0848230908
+UniRef50_B6IW25|unclassified	0.0848230908
+UniRef50_UPI000464B31A: hypothetical protein, partial	0.0848230052
+UniRef50_UPI000464B31A: hypothetical protein, partial|unclassified	0.0848230052
+UniRef50_UPI0004704BBF: hypothetical protein	0.0848044058
+UniRef50_UPI0004704BBF: hypothetical protein|unclassified	0.0848044058
+UniRef50_Q9K7H6: Probable adenylyl-sulfate kinase	0.0847985602
+UniRef50_Q9K7H6: Probable adenylyl-sulfate kinase|unclassified	0.0847985602
+UniRef50_C2XMB7: Reticulocyte binding protein	0.0847919991
+UniRef50_C2XMB7: Reticulocyte binding protein|unclassified	0.0847919991
+UniRef50_Q8ER36: Orotidine 5'-phosphate decarboxylase	0.0847911468
+UniRef50_Q8ER36: Orotidine 5'-phosphate decarboxylase|unclassified	0.0847911468
+UniRef50_M7X6I4	0.0847906554
+UniRef50_M7X6I4|unclassified	0.0847906554
+UniRef50_UPI0003B5EFE5: MerR family transcriptional regulator	0.0847781663
+UniRef50_UPI0003B5EFE5: MerR family transcriptional regulator|unclassified	0.0847781663
+UniRef50_K2AVM5: Pyoverdine biosynthesis	0.0847757200
+UniRef50_K2AVM5: Pyoverdine biosynthesis|unclassified	0.0847757200
+UniRef50_K4KEY7	0.0847663712
+UniRef50_K4KEY7|unclassified	0.0847663712
+UniRef50_D4GE76: YaiL	0.0847642996
+UniRef50_D4GE76: YaiL|unclassified	0.0847642996
+UniRef50_UPI000474839A: MFS transporter	0.0847628043
+UniRef50_UPI000474839A: MFS transporter|unclassified	0.0847628043
+UniRef50_N8EY60	0.0847592568
+UniRef50_N8EY60|unclassified	0.0847592568
+UniRef50_A8QVU0	0.0847590574
+UniRef50_A8QVU0|unclassified	0.0847590574
+UniRef50_J0VBN1: Molecular chaperone (Small heat shock protein)	0.0847577648
+UniRef50_J0VBN1: Molecular chaperone (Small heat shock protein)|unclassified	0.0847577648
+UniRef50_P49821: NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial	0.0847525411
+UniRef50_P49821: NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial|unclassified	0.0847525411
+UniRef50_W4KKX3	0.0847480797
+UniRef50_W4KKX3|unclassified	0.0847480797
+UniRef50_UPI0003F0DDBC: PREDICTED: GTP-binding protein 8	0.0847364929
+UniRef50_UPI0003F0DDBC: PREDICTED: GTP-binding protein 8|unclassified	0.0847364929
+UniRef50_UPI0003B56972: Crp/Fnr family transcription regulator	0.0847364799
+UniRef50_UPI0003B56972: Crp/Fnr family transcription regulator|unclassified	0.0847364799
+UniRef50_UPI0002197500: excinuclease ABC subunit C	0.0847306732
+UniRef50_UPI0002197500: excinuclease ABC subunit C|unclassified	0.0847306732
+UniRef50_UPI0003B4CCFD: 3-ketoacyl-ACP reductase	0.0847294771
+UniRef50_UPI0003B4CCFD: 3-ketoacyl-ACP reductase|unclassified	0.0847294771
+UniRef50_H0JDX9	0.0847246946
+UniRef50_H0JDX9|unclassified	0.0847246946
+UniRef50_UPI00047D4CB0: uridine kinase	0.0847190239
+UniRef50_UPI00047D4CB0: uridine kinase|unclassified	0.0847190239
+UniRef50_UPI00047DB084: hypothetical protein	0.0847170230
+UniRef50_UPI00047DB084: hypothetical protein|unclassified	0.0847170230
+UniRef50_P17597: Acetolactate synthase, chloroplastic	0.0847112016
+UniRef50_P17597: Acetolactate synthase, chloroplastic|unclassified	0.0847112016
+UniRef50_Q3JC02: Threonine--tRNA ligase	0.0847030169
+UniRef50_Q3JC02: Threonine--tRNA ligase|unclassified	0.0847030169
+UniRef50_UPI000468B20D: hypothetical protein	0.0847017165
+UniRef50_UPI000468B20D: hypothetical protein|unclassified	0.0847017165
+UniRef50_UPI00035E1DE2: hypothetical protein	0.0846996727
+UniRef50_UPI00035E1DE2: hypothetical protein|unclassified	0.0846996727
+UniRef50_UPI000361E642: hypothetical protein	0.0846948447
+UniRef50_UPI000361E642: hypothetical protein|unclassified	0.0846948447
+UniRef50_P54819: Adenylate kinase 2, mitochondrial	0.0846939445
+UniRef50_P54819: Adenylate kinase 2, mitochondrial|unclassified	0.0846939445
+UniRef50_A1SNZ0: Ethanolamine utilization protein EutJ family protein	0.0846938858
+UniRef50_A1SNZ0: Ethanolamine utilization protein EutJ family protein|unclassified	0.0846938858
+UniRef50_UPI0004006A19: hypothetical protein	0.0846881711
+UniRef50_UPI0004006A19: hypothetical protein|unclassified	0.0846881711
+UniRef50_G4L8B0	0.0846809103
+UniRef50_G4L8B0|unclassified	0.0846809103
+UniRef50_UPI0003793EE2: hypothetical protein	0.0846807309
+UniRef50_UPI0003793EE2: hypothetical protein|unclassified	0.0846807309
+UniRef50_C0E575	0.0846382311
+UniRef50_C0E575|unclassified	0.0846382311
+UniRef50_UPI00047B2ED7: hypothetical protein	0.0846280421
+UniRef50_UPI00047B2ED7: hypothetical protein|unclassified	0.0846280421
+UniRef50_A7HV41: HipA domain protein	0.0846264848
+UniRef50_A7HV41: HipA domain protein|unclassified	0.0846264848
+UniRef50_UPI0003641F99: hypothetical protein	0.0846245732
+UniRef50_UPI0003641F99: hypothetical protein|unclassified	0.0846245732
+UniRef50_UPI0002DB8CCC: hypothetical protein	0.0846206952
+UniRef50_UPI0002DB8CCC: hypothetical protein|unclassified	0.0846206952
+UniRef50_K1ETM0: Alanine racemase	0.0846180722
+UniRef50_K1ETM0: Alanine racemase|unclassified	0.0846180722
+UniRef50_E6WVP9	0.0846177347
+UniRef50_E6WVP9|unclassified	0.0846177347
+UniRef50_F2F9R8	0.0846126446
+UniRef50_F2F9R8|unclassified	0.0846126446
+UniRef50_M3E3W8: DNA double-strand break repair Rad50 ATPase	0.0846036055
+UniRef50_M3E3W8: DNA double-strand break repair Rad50 ATPase|unclassified	0.0846036055
+UniRef50_C7RST1: Putative ParB-like nuclease	0.0846025303
+UniRef50_C7RST1: Putative ParB-like nuclease|unclassified	0.0846025303
+UniRef50_E1SL01: DTW domain containing protein	0.0845987515
+UniRef50_E1SL01: DTW domain containing protein|unclassified	0.0845987515
+UniRef50_UPI0004178882: hypothetical protein	0.0845842152
+UniRef50_UPI0004178882: hypothetical protein|unclassified	0.0845842152
+UniRef50_A0A052J701: NlpC/P60 family protein	0.0845747485
+UniRef50_A0A052J701: NlpC/P60 family protein|unclassified	0.0845747485
+UniRef50_G8PJ64: Metallo-beta-lactamase family protein	0.0845649113
+UniRef50_G8PJ64: Metallo-beta-lactamase family protein|unclassified	0.0845649113
+UniRef50_Q7UIC5: DNA-directed RNA polymerase subunit alpha	0.0845485471
+UniRef50_Q7UIC5: DNA-directed RNA polymerase subunit alpha|unclassified	0.0845485471
+UniRef50_UPI00037A50BE: hypothetical protein	0.0845449565
+UniRef50_UPI00037A50BE: hypothetical protein|unclassified	0.0845449565
+UniRef50_Z5XDA6	0.0845447233
+UniRef50_Z5XDA6|unclassified	0.0845447233
+UniRef50_Q28TW0: Molybdenum cofactor sulfurylase	0.0845173980
+UniRef50_Q28TW0: Molybdenum cofactor sulfurylase|unclassified	0.0845173980
+UniRef50_UPI0002895407: hypothetical protein	0.0844953492
+UniRef50_UPI0002895407: hypothetical protein|unclassified	0.0844953492
+UniRef50_UPI0002FCD550: hypothetical protein	0.0844946308
+UniRef50_UPI0002FCD550: hypothetical protein|unclassified	0.0844946308
+UniRef50_P50045: Urease subunit beta (Fragment)	0.0844940298
+UniRef50_P50045: Urease subunit beta (Fragment)|unclassified	0.0844940298
+UniRef50_W7IH19: Regulatory protein	0.0844937196
+UniRef50_W7IH19: Regulatory protein|unclassified	0.0844937196
+UniRef50_C4GF76	0.0844776812
+UniRef50_C4GF76|unclassified	0.0844776812
+UniRef50_U3A118	0.0844753094
+UniRef50_U3A118|unclassified	0.0844753094
+UniRef50_A5CY13: Stringent starvation protein A	0.0844660152
+UniRef50_A5CY13: Stringent starvation protein A|unclassified	0.0844660152
+UniRef50_UPI0004195926: metallophosphoesterase	0.0844653331
+UniRef50_UPI0004195926: metallophosphoesterase|unclassified	0.0844653331
+UniRef50_UPI0002D8DB21: hypothetical protein	0.0844607452
+UniRef50_UPI0002D8DB21: hypothetical protein|unclassified	0.0844607452
+UniRef50_S9S6E1	0.0844595823
+UniRef50_S9S6E1|unclassified	0.0844595823
+UniRef50_W2PEE5: Dihydrolipoyl dehydrogenase 1, mitochondrial	0.0844549491
+UniRef50_W2PEE5: Dihydrolipoyl dehydrogenase 1, mitochondrial|unclassified	0.0844549491
+UniRef50_W2DD36: Pirin family protein	0.0844511432
+UniRef50_W2DD36: Pirin family protein|unclassified	0.0844511432
+UniRef50_UPI0003667D1B: MULTISPECIES: hypothetical protein	0.0844503721
+UniRef50_UPI0003667D1B: MULTISPECIES: hypothetical protein|unclassified	0.0844503721
+UniRef50_C9CS38: Rb142	0.0844415946
+UniRef50_C9CS38: Rb142|unclassified	0.0844415946
+UniRef50_UPI0003826F03: hypothetical protein	0.0844400465
+UniRef50_UPI0003826F03: hypothetical protein|unclassified	0.0844400465
+UniRef50_R7Q7I9: Stackhouse genomic scaffold, scaffold_138	0.0844392579
+UniRef50_R7Q7I9: Stackhouse genomic scaffold, scaffold_138|unclassified	0.0844392579
+UniRef50_F0D7Q8	0.0844290576
+UniRef50_F0D7Q8|unclassified	0.0844290576
+UniRef50_UPI0003718EA8: 5-keto-4-deoxyuronate isomerase	0.0844289113
+UniRef50_UPI0003718EA8: 5-keto-4-deoxyuronate isomerase|unclassified	0.0844289113
+UniRef50_A0A011P8Z8	0.0844278587
+UniRef50_A0A011P8Z8|unclassified	0.0844278587
+UniRef50_UPI000382E9A9: hypothetical protein	0.0844249510
+UniRef50_UPI000382E9A9: hypothetical protein|unclassified	0.0844249510
+UniRef50_UPI00037A0EEA: MULTISPECIES: hypothetical protein	0.0844246816
+UniRef50_UPI00037A0EEA: MULTISPECIES: hypothetical protein|unclassified	0.0844246816
+UniRef50_D3EJ60	0.0844170630
+UniRef50_D3EJ60|unclassified	0.0844170630
+UniRef50_Q02416: Immunodominant 45-55 kDa antigen (Fragment)	0.0844020337
+UniRef50_Q02416: Immunodominant 45-55 kDa antigen (Fragment)|unclassified	0.0844020337
+UniRef50_G0N5X7	0.0843989219
+UniRef50_G0N5X7|unclassified	0.0843989219
+UniRef50_Q9HQC9: Uridine kinase	0.0843808857
+UniRef50_Q9HQC9: Uridine kinase|unclassified	0.0843808857
+UniRef50_P48812: Glyceraldehyde-3-phosphate dehydrogenase	0.0843777923
+UniRef50_P48812: Glyceraldehyde-3-phosphate dehydrogenase|unclassified	0.0843777923
+UniRef50_UPI000374F226: hypothetical protein	0.0843664382
+UniRef50_UPI000374F226: hypothetical protein|unclassified	0.0843664382
+UniRef50_D7H2B5: Major facilitator transporter (Fragment)	0.0843607732
+UniRef50_D7H2B5: Major facilitator transporter (Fragment)|unclassified	0.0843607732
+UniRef50_UPI00046766F3: hypothetical protein	0.0843531151
+UniRef50_UPI00046766F3: hypothetical protein|unclassified	0.0843531151
+UniRef50_R5EVW4	0.0843403655
+UniRef50_R5EVW4|unclassified	0.0843403655
+UniRef50_S4J5R0	0.0843280920
+UniRef50_S4J5R0|unclassified	0.0843280920
+UniRef50_A0A017HQB2	0.0843262312
+UniRef50_A0A017HQB2|unclassified	0.0843262312
+UniRef50_UPI0003C13A7A: PREDICTED: enolase-like	0.0843133749
+UniRef50_UPI0003C13A7A: PREDICTED: enolase-like|unclassified	0.0843133749
+UniRef50_UPI0002F6E243: maleylacetoacetate isomerase	0.0842993059
+UniRef50_UPI0002F6E243: maleylacetoacetate isomerase|unclassified	0.0842993059
+UniRef50_UPI00041405D4: hypothetical protein	0.0842904082
+UniRef50_UPI00041405D4: hypothetical protein|unclassified	0.0842904082
+UniRef50_UPI0003B45BD8: peptide ABC transporter ATP-binding protein	0.0842806174
+UniRef50_UPI0003B45BD8: peptide ABC transporter ATP-binding protein|unclassified	0.0842806174
+UniRef50_A8LMR9	0.0842765038
+UniRef50_A8LMR9|unclassified	0.0842765038
+UniRef50_UPI00046F94E7: hypothetical protein	0.0842749350
+UniRef50_UPI00046F94E7: hypothetical protein|unclassified	0.0842749350
+UniRef50_UPI00047D0C1A: hypothetical protein	0.0842628417
+UniRef50_UPI00047D0C1A: hypothetical protein|unclassified	0.0842628417
+UniRef50_R7PWX3	0.0842603907
+UniRef50_R7PWX3|unclassified	0.0842603907
+UniRef50_UPI00037103F6: hypothetical protein	0.0842602268
+UniRef50_UPI00037103F6: hypothetical protein|unclassified	0.0842602268
+UniRef50_UPI000273B72B: PREDICTED: estradiol 17-beta-dehydrogenase 8-like	0.0842593633
+UniRef50_UPI000273B72B: PREDICTED: estradiol 17-beta-dehydrogenase 8-like|unclassified	0.0842593633
+UniRef50_Q9V8M5: Probable 3-hydroxyisobutyrate dehydrogenase, mitochondrial	0.0842580604
+UniRef50_Q9V8M5: Probable 3-hydroxyisobutyrate dehydrogenase, mitochondrial|unclassified	0.0842580604
+UniRef50_UPI000363150E: hypothetical protein	0.0842575375
+UniRef50_UPI000363150E: hypothetical protein|unclassified	0.0842575375
+UniRef50_UPI000425BE75: hypothetical protein	0.0842568661
+UniRef50_UPI000425BE75: hypothetical protein|unclassified	0.0842568661
+UniRef50_UPI00029A817E: sodium/calcium exchanger protein, partial	0.0842565817
+UniRef50_UPI00029A817E: sodium/calcium exchanger protein, partial|unclassified	0.0842565817
+UniRef50_UPI0001745DFF: Response regulator consisting of a CheY-like receiver domain and a winged-helix DNA-binding domain	0.0842556793
+UniRef50_UPI0001745DFF: Response regulator consisting of a CheY-like receiver domain and a winged-helix DNA-binding domain|unclassified	0.0842556793
+UniRef50_Q72CS6: 3-oxoacyl-[acyl-carrier-protein] synthase 3	0.0842550340
+UniRef50_Q72CS6: 3-oxoacyl-[acyl-carrier-protein] synthase 3|unclassified	0.0842550340
+UniRef50_UPI0003FB1C3E: rRNA (guanine-N1)-methyltransferase	0.0842424702
+UniRef50_UPI0003FB1C3E: rRNA (guanine-N1)-methyltransferase|unclassified	0.0842424702
+UniRef50_E3QJF9: THO complex subunit 2	0.0842318766
+UniRef50_E3QJF9: THO complex subunit 2|unclassified	0.0842318766
+UniRef50_UPI000319D40D: hypothetical protein	0.0842283306
+UniRef50_UPI000319D40D: hypothetical protein|unclassified	0.0842283306
+UniRef50_A0A011NCP8: Nitrite facilitator 1	0.0842232654
+UniRef50_A0A011NCP8: Nitrite facilitator 1|unclassified	0.0842232654
+UniRef50_Q87UY0: Glucans biosynthesis protein G	0.0842108466
+UniRef50_Q87UY0: Glucans biosynthesis protein G|unclassified	0.0842108466
+UniRef50_UPI000287EFB4: protein TolR	0.0842101720
+UniRef50_UPI000287EFB4: protein TolR|unclassified	0.0842101720
+UniRef50_J7QI73: Peptidase U35 phage prohead HK97	0.0842100902
+UniRef50_J7QI73: Peptidase U35 phage prohead HK97|unclassified	0.0842100902
+UniRef50_W7D4V5: Putative peptidoglycan linked protein (Fragment)	0.0842100680
+UniRef50_W7D4V5: Putative peptidoglycan linked protein (Fragment)|unclassified	0.0842100680
+UniRef50_UPI000373C564: hypothetical protein	0.0842078172
+UniRef50_UPI000373C564: hypothetical protein|unclassified	0.0842078172
+UniRef50_E1VWJ8: Protein NrdI	0.0842037117
+UniRef50_E1VWJ8: Protein NrdI|unclassified	0.0842037117
+UniRef50_I1EGZ7	0.0842018948
+UniRef50_I1EGZ7|unclassified	0.0842018948
+UniRef50_A4EIB4	0.0841996259
+UniRef50_A4EIB4|unclassified	0.0841996259
+UniRef50_UPI0003B7A3D3: ABC transporter	0.0841992466
+UniRef50_UPI0003B7A3D3: ABC transporter|unclassified	0.0841992466
+UniRef50_Q1R597: Hemin import ATP-binding protein HmuV	0.0841922512
+UniRef50_Q1R597: Hemin import ATP-binding protein HmuV|unclassified	0.0841922512
+UniRef50_UPI0003730823: hypothetical protein	0.0841897109
+UniRef50_UPI0003730823: hypothetical protein|unclassified	0.0841897109
+UniRef50_UPI00036C6CE0: methionyl-tRNA synthetase	0.0841800980
+UniRef50_UPI00036C6CE0: methionyl-tRNA synthetase|unclassified	0.0841800980
+UniRef50_J7QG87: Rhodanese domain protein	0.0841792962
+UniRef50_J7QG87: Rhodanese domain protein|unclassified	0.0841792962
+UniRef50_X5G3L0: Type VI secretion system protein ImpL	0.0841762805
+UniRef50_X5G3L0: Type VI secretion system protein ImpL|unclassified	0.0841762805
+UniRef50_A4WTC9: Phage Terminase	0.0841691897
+UniRef50_A4WTC9: Phage Terminase|unclassified	0.0841691897
+UniRef50_A7HXJ9: Chromosome segregation and condensation protein ScpA	0.0841676380
+UniRef50_A7HXJ9: Chromosome segregation and condensation protein ScpA|unclassified	0.0841676380
+UniRef50_UPI00035FC25C: hypothetical protein	0.0841663772
+UniRef50_UPI00035FC25C: hypothetical protein|unclassified	0.0841663772
+UniRef50_UPI00034A058C: hypothetical protein	0.0841635785
+UniRef50_UPI00034A058C: hypothetical protein|unclassified	0.0841635785
+UniRef50_Q7PY41: Adenylyltransferase and sulfurtransferase MOCS3	0.0841569136
+UniRef50_Q7PY41: Adenylyltransferase and sulfurtransferase MOCS3|unclassified	0.0841569136
+UniRef50_UPI0003B7524F: multidrug ABC transporter ATPase	0.0841558321
+UniRef50_UPI0003B7524F: multidrug ABC transporter ATPase|unclassified	0.0841558321
+UniRef50_UPI00029CB5BC: L-carnitine dehydratase/bile acid-inducible protein F, partial	0.0841384324
+UniRef50_UPI00029CB5BC: L-carnitine dehydratase/bile acid-inducible protein F, partial|unclassified	0.0841384324
+UniRef50_O29277: Imidazoleglycerol-phosphate dehydratase	0.0841383176
+UniRef50_O29277: Imidazoleglycerol-phosphate dehydratase|unclassified	0.0841383176
+UniRef50_Q9RU94: NADH-quinone oxidoreductase subunit H	0.0841378237
+UniRef50_Q9RU94: NADH-quinone oxidoreductase subunit H|unclassified	0.0841378237
+UniRef50_UPI000373244E: hypothetical protein	0.0841370360
+UniRef50_UPI000373244E: hypothetical protein|unclassified	0.0841370360
+UniRef50_UPI000415D4ED: theronine dehydrogenase	0.0841310641
+UniRef50_UPI000415D4ED: theronine dehydrogenase|unclassified	0.0841310641
+UniRef50_U2GDK3: LemA family protein	0.0841271886
+UniRef50_U2GDK3: LemA family protein|unclassified	0.0841271886
+UniRef50_E2DNQ9: WcmU	0.0841263533
+UniRef50_E2DNQ9: WcmU|unclassified	0.0841263533
+UniRef50_A4TLD1	0.0841262765
+UniRef50_A4TLD1|unclassified	0.0841262765
+UniRef50_R4WB45: Transketolase (Fragment)	0.0841205730
+UniRef50_R4WB45: Transketolase (Fragment)|unclassified	0.0841205730
+UniRef50_Q6AMS4: Indole-3-glycerol phosphate synthase	0.0841176010
+UniRef50_Q6AMS4: Indole-3-glycerol phosphate synthase|unclassified	0.0841176010
+UniRef50_UPI000366C2B9: hypothetical protein	0.0841162123
+UniRef50_UPI000366C2B9: hypothetical protein|unclassified	0.0841162123
+UniRef50_UPI000472129E: DNA helicase	0.0841161624
+UniRef50_UPI000472129E: DNA helicase|unclassified	0.0841161624
+UniRef50_Q6LV32: Thiamine import ATP-binding protein ThiQ	0.0841007493
+UniRef50_Q6LV32: Thiamine import ATP-binding protein ThiQ|unclassified	0.0841007493
+UniRef50_D9PMA5: Metallopeptidase family M24 (Fragment)	0.0840976278
+UniRef50_D9PMA5: Metallopeptidase family M24 (Fragment)|unclassified	0.0840976278
+UniRef50_X7F9R2	0.0840946250
+UniRef50_X7F9R2|unclassified	0.0840946250
+UniRef50_UPI0003513D56: PREDICTED: vegetative cell wall protein gp1-like	0.0840855455
+UniRef50_UPI0003513D56: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.0840855455
+UniRef50_B1G6F2	0.0840817405
+UniRef50_B1G6F2|unclassified	0.0840817405
+UniRef50_W0ABX1	0.0840816958
+UniRef50_W0ABX1|unclassified	0.0840816958
+UniRef50_A3DG98	0.0840745009
+UniRef50_A3DG98|unclassified	0.0840745009
+UniRef50_G3GPU6	0.0840671060
+UniRef50_G3GPU6|unclassified	0.0840671060
+UniRef50_UPI0002624FE5: Bcr/CflA subfamily drug resistance transporter	0.0840659632
+UniRef50_UPI0002624FE5: Bcr/CflA subfamily drug resistance transporter|unclassified	0.0840659632
+UniRef50_UPI0003613921: hypothetical protein	0.0840604342
+UniRef50_UPI0003613921: hypothetical protein|unclassified	0.0840604342
+UniRef50_UPI00036ED03E: hypothetical protein	0.0840596874
+UniRef50_UPI00036ED03E: hypothetical protein|unclassified	0.0840596874
+UniRef50_A0A017HSW5	0.0840496384
+UniRef50_A0A017HSW5|unclassified	0.0840496384
+UniRef50_UPI00046798DB: hypothetical protein	0.0840359801
+UniRef50_UPI00046798DB: hypothetical protein|unclassified	0.0840359801
+UniRef50_UPI00035F0BC5: hypothetical protein	0.0840276741
+UniRef50_UPI00035F0BC5: hypothetical protein|unclassified	0.0840276741
+UniRef50_U3U269	0.0840205038
+UniRef50_U3U269|unclassified	0.0840205038
+UniRef50_A0A024TEY8	0.0840151028
+UniRef50_A0A024TEY8|unclassified	0.0840151028
+UniRef50_T1C447: N-acetylmuramoyl-L-alanine amidase (Fragment)	0.0840112025
+UniRef50_T1C447: N-acetylmuramoyl-L-alanine amidase (Fragment)|unclassified	0.0840112025
+UniRef50_M4XMC5: Phosphoglycerate mutase	0.0840057254
+UniRef50_M4XMC5: Phosphoglycerate mutase|unclassified	0.0840057254
+UniRef50_F0YEL0	0.0840053763
+UniRef50_F0YEL0|unclassified	0.0840053763
+UniRef50_UPI000255CD9F: TetR family transcriptional regulator	0.0840025440
+UniRef50_UPI000255CD9F: TetR family transcriptional regulator|unclassified	0.0840025440
+UniRef50_UPI0003B7B324: glutathione S-transferase	0.0840013601
+UniRef50_UPI0003B7B324: glutathione S-transferase|unclassified	0.0840013601
+UniRef50_X4ZWQ9: Sporulation protein YtaF	0.0840007274
+UniRef50_X4ZWQ9: Sporulation protein YtaF|unclassified	0.0840007274
+UniRef50_UPI0003666461: hypothetical protein	0.0839874493
+UniRef50_UPI0003666461: hypothetical protein|unclassified	0.0839874493
+UniRef50_UPI0003B304AC: phosphate ABC transporter ATP-binding protein	0.0839810926
+UniRef50_UPI0003B304AC: phosphate ABC transporter ATP-binding protein|unclassified	0.0839810926
+UniRef50_E6G860: Replication initiator protein A domain protein	0.0839803223
+UniRef50_E6G860: Replication initiator protein A domain protein|unclassified	0.0839803223
+UniRef50_I3TJD9	0.0839717420
+UniRef50_I3TJD9|unclassified	0.0839717420
+UniRef50_Q0FVE9: Possible FlgD protein	0.0839637037
+UniRef50_Q0FVE9: Possible FlgD protein|unclassified	0.0839637037
+UniRef50_UPI00016C0B71: ABC transporter	0.0839631955
+UniRef50_UPI00016C0B71: ABC transporter|unclassified	0.0839631955
+UniRef50_UPI00047DB640: alanine dehydrogenase	0.0839619464
+UniRef50_UPI00047DB640: alanine dehydrogenase|unclassified	0.0839619464
+UniRef50_V7EFI4	0.0839594482
+UniRef50_V7EFI4|unclassified	0.0839594482
+UniRef50_E4C1B3	0.0839560189
+UniRef50_E4C1B3|unclassified	0.0839560189
+UniRef50_UPI000363541B: MULTISPECIES: hypothetical protein	0.0839392740
+UniRef50_UPI000363541B: MULTISPECIES: hypothetical protein|unclassified	0.0839392740
+UniRef50_A0A023PYQ4	0.0839360860
+UniRef50_A0A023PYQ4|unclassified	0.0839360860
+UniRef50_UPI00047EEBF5: hypothetical protein	0.0839297241
+UniRef50_UPI00047EEBF5: hypothetical protein|unclassified	0.0839297241
+UniRef50_UPI00046E86BB: hypothetical protein	0.0839282105
+UniRef50_UPI00046E86BB: hypothetical protein|unclassified	0.0839282105
+UniRef50_UPI0000F05CBF: molybdenum cofactor biosynthesis protein A	0.0839261324
+UniRef50_UPI0000F05CBF: molybdenum cofactor biosynthesis protein A|unclassified	0.0839261324
+UniRef50_B3QS43: Probable dual-specificity RNA methyltransferase RlmN	0.0839252386
+UniRef50_B3QS43: Probable dual-specificity RNA methyltransferase RlmN|unclassified	0.0839252386
+UniRef50_V5BKQ4: WD domain, G-beta repeat-containing protein	0.0839189412
+UniRef50_V5BKQ4: WD domain, G-beta repeat-containing protein|unclassified	0.0839189412
+UniRef50_Q9A4P8	0.0839154894
+UniRef50_Q9A4P8|unclassified	0.0839154894
+UniRef50_UPI000362FD2C: hypothetical protein	0.0839116375
+UniRef50_UPI000362FD2C: hypothetical protein|unclassified	0.0839116375
+UniRef50_B8H0Z9: DNA repair protein RadC	0.0839111784
+UniRef50_B8H0Z9: DNA repair protein RadC|unclassified	0.0839111784
+UniRef50_D4J129	0.0839090707
+UniRef50_D4J129|unclassified	0.0839090707
+UniRef50_K2QA30	0.0838988073
+UniRef50_K2QA30|unclassified	0.0838988073
+UniRef50_B9JB68: Insertion sequence transposase protein	0.0838962273
+UniRef50_B9JB68: Insertion sequence transposase protein|unclassified	0.0838962273
+UniRef50_UPI00046CAEE5: hypothetical protein	0.0838843056
+UniRef50_UPI00046CAEE5: hypothetical protein|unclassified	0.0838843056
+UniRef50_UPI000377EDBE: hypothetical protein	0.0838799976
+UniRef50_UPI000377EDBE: hypothetical protein|unclassified	0.0838799976
+UniRef50_UPI00037F0466: hypothetical protein	0.0838719097
+UniRef50_UPI00037F0466: hypothetical protein|unclassified	0.0838719097
+UniRef50_E2NJQ9: Excinuclease ABC, A subunit family protein	0.0838624923
+UniRef50_E2NJQ9: Excinuclease ABC, A subunit family protein|unclassified	0.0838624923
+UniRef50_UPI0003B5367C: deoxyribodipyrimidine photo-lyase	0.0838622338
+UniRef50_UPI0003B5367C: deoxyribodipyrimidine photo-lyase|unclassified	0.0838622338
+UniRef50_UPI0003F4A3A8: hypothetical protein TREMEDRAFT_72942	0.0838471476
+UniRef50_UPI0003F4A3A8: hypothetical protein TREMEDRAFT_72942|unclassified	0.0838471476
+UniRef50_UPI000470D667: hypothetical protein	0.0838413174
+UniRef50_UPI000470D667: hypothetical protein|unclassified	0.0838413174
+UniRef50_UPI0003690E44: hypothetical protein	0.0838399680
+UniRef50_UPI0003690E44: hypothetical protein|unclassified	0.0838399680
+UniRef50_K2JIJ3	0.0838324433
+UniRef50_K2JIJ3|unclassified	0.0838324433
+UniRef50_D8U7R0	0.0838323187
+UniRef50_D8U7R0|unclassified	0.0838323187
+UniRef50_M9RYQ5	0.0838268217
+UniRef50_M9RYQ5|unclassified	0.0838268217
+UniRef50_Q56220: NADH-quinone oxidoreductase subunit 4	0.0838253193
+UniRef50_Q56220: NADH-quinone oxidoreductase subunit 4|unclassified	0.0838253193
+UniRef50_D4AXU8: CFEM domain protein, putative	0.0838198358
+UniRef50_D4AXU8: CFEM domain protein, putative|unclassified	0.0838198358
+UniRef50_UPI00037A86DD: hypothetical protein	0.0838194638
+UniRef50_UPI00037A86DD: hypothetical protein|unclassified	0.0838194638
+UniRef50_UPI000463C3E8: hypothetical protein	0.0838186811
+UniRef50_UPI000463C3E8: hypothetical protein|unclassified	0.0838186811
+UniRef50_UPI000368B9E2: hypothetical protein	0.0838178757
+UniRef50_UPI000368B9E2: hypothetical protein|unclassified	0.0838178757
+UniRef50_UPI000366FCD4: hypothetical protein	0.0838125013
+UniRef50_UPI000366FCD4: hypothetical protein|unclassified	0.0838125013
+UniRef50_P32090: 8-oxo-dGTP diphosphatase	0.0838059848
+UniRef50_P32090: 8-oxo-dGTP diphosphatase|unclassified	0.0838059848
+UniRef50_T1JU40	0.0838003285
+UniRef50_T1JU40|unclassified	0.0838003285
+UniRef50_Q2ST29: Arginine deiminase	0.0837951649
+UniRef50_Q2ST29: Arginine deiminase|unclassified	0.0837951649
+UniRef50_UPI00037B75F4: hypothetical protein	0.0837947553
+UniRef50_UPI00037B75F4: hypothetical protein|unclassified	0.0837947553
+UniRef50_UPI0004560391: hypothetical protein PFL1_05761	0.0837808353
+UniRef50_UPI0004560391: hypothetical protein PFL1_05761|unclassified	0.0837808353
+UniRef50_E8MZ98	0.0837667613
+UniRef50_E8MZ98|unclassified	0.0837667613
+UniRef50_UPI00038075ED: hypothetical protein	0.0837658728
+UniRef50_UPI00038075ED: hypothetical protein|unclassified	0.0837658728
+UniRef50_P35484: Dihydrolipoyl dehydrogenase (Fragment)	0.0837616166
+UniRef50_P35484: Dihydrolipoyl dehydrogenase (Fragment)|unclassified	0.0837616166
+UniRef50_W9YJJ5	0.0837588044
+UniRef50_W9YJJ5|unclassified	0.0837588044
+UniRef50_P0A3T3: 31 kDa immunogenic protein	0.0837484227
+UniRef50_P0A3T3: 31 kDa immunogenic protein|unclassified	0.0837484227
+UniRef50_UPI0003695127: hypothetical protein	0.0837452376
+UniRef50_UPI0003695127: hypothetical protein|unclassified	0.0837452376
+UniRef50_UPI00047B1532: LysR family transcriptional regulator	0.0837432242
+UniRef50_UPI00047B1532: LysR family transcriptional regulator|unclassified	0.0837432242
+UniRef50_UPI00034D2676: hypothetical protein	0.0837340096
+UniRef50_UPI00034D2676: hypothetical protein|unclassified	0.0837340096
+UniRef50_Q5WHM6: Putative Holliday junction resolvase	0.0837160270
+UniRef50_Q5WHM6: Putative Holliday junction resolvase|unclassified	0.0837160270
+UniRef50_A0A024YFB8	0.0837063317
+UniRef50_A0A024YFB8|unclassified	0.0837063317
+UniRef50_UPI000371A928: hypothetical protein	0.0837015007
+UniRef50_UPI000371A928: hypothetical protein|unclassified	0.0837015007
+UniRef50_B8G5R5: Peptide deformylase	0.0836958361
+UniRef50_B8G5R5: Peptide deformylase|unclassified	0.0836958361
+UniRef50_A9VDS8: Predicted protein	0.0836929224
+UniRef50_A9VDS8: Predicted protein|unclassified	0.0836929224
+UniRef50_B1XIP6: Sensory box/GGDEF domain/EAL domain protein	0.0836867573
+UniRef50_B1XIP6: Sensory box/GGDEF domain/EAL domain protein|unclassified	0.0836867573
+UniRef50_C9XTL3	0.0836847568
+UniRef50_C9XTL3|unclassified	0.0836847568
+UniRef50_Q9VLJ8: Adenylyltransferase and sulfurtransferase MOCS3	0.0836818963
+UniRef50_Q9VLJ8: Adenylyltransferase and sulfurtransferase MOCS3|unclassified	0.0836818963
+UniRef50_S6I337	0.0836760818
+UniRef50_S6I337|unclassified	0.0836760818
+UniRef50_UPI00045762EC: PREDICTED: cyclin-dependent kinase inhibitor 1C, partial	0.0836643375
+UniRef50_UPI00045762EC: PREDICTED: cyclin-dependent kinase inhibitor 1C, partial|unclassified	0.0836643375
+UniRef50_V7WX89	0.0836600200
+UniRef50_V7WX89|unclassified	0.0836600200
+UniRef50_G9W4W1: Respiratory nitrate reductase alpha chain	0.0836552724
+UniRef50_G9W4W1: Respiratory nitrate reductase alpha chain|unclassified	0.0836552724
+UniRef50_UPI0002E3B16E: hypothetical protein	0.0836549785
+UniRef50_UPI0002E3B16E: hypothetical protein|unclassified	0.0836549785
+UniRef50_A5EV79: Dihydroorotate dehydrogenase (quinone)	0.0836542557
+UniRef50_A5EV79: Dihydroorotate dehydrogenase (quinone)|unclassified	0.0836542557
+UniRef50_A0RMD0: NADH-quinone oxidoreductase subunit B	0.0836502611
+UniRef50_A0RMD0: NADH-quinone oxidoreductase subunit B|unclassified	0.0836502611
+UniRef50_G9Z6Y9	0.0836441105
+UniRef50_G9Z6Y9|unclassified	0.0836441105
+UniRef50_UPI000470B5DB: membrane protein	0.0836399583
+UniRef50_UPI000470B5DB: membrane protein|unclassified	0.0836399583
+UniRef50_UPI0004020D4A: flagellar hook-associated protein	0.0836247326
+UniRef50_UPI0004020D4A: flagellar hook-associated protein|unclassified	0.0836247326
+UniRef50_UPI000464BD2D: hypothetical protein	0.0836230890
+UniRef50_UPI000464BD2D: hypothetical protein|unclassified	0.0836230890
+UniRef50_UPI0003784AFE: hypothetical protein	0.0836210145
+UniRef50_UPI0003784AFE: hypothetical protein|unclassified	0.0836210145
+UniRef50_UPI0003794B09: hypothetical protein	0.0836204167
+UniRef50_UPI0003794B09: hypothetical protein|unclassified	0.0836204167
+UniRef50_A0A024JA58: Similar to Saccharomyces cerevisiae YGR220C MRPL9 Mitochondrial ribosomal protein of the large subunit	0.0836186764
+UniRef50_A0A024JA58: Similar to Saccharomyces cerevisiae YGR220C MRPL9 Mitochondrial ribosomal protein of the large subunit|unclassified	0.0836186764
+UniRef50_H3K9Z4	0.0836151136
+UniRef50_H3K9Z4|unclassified	0.0836151136
+UniRef50_UPI0002DADDCF: hypothetical protein	0.0836107657
+UniRef50_UPI0002DADDCF: hypothetical protein|unclassified	0.0836107657
+UniRef50_UPI00046632A0: long-chain fatty acid--CoA ligase	0.0836094265
+UniRef50_UPI00046632A0: long-chain fatty acid--CoA ligase|unclassified	0.0836094265
+UniRef50_B4S6J0: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0836085958
+UniRef50_B4S6J0: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0836085958
+UniRef50_UPI000376E9FF: hypothetical protein	0.0836038230
+UniRef50_UPI000376E9FF: hypothetical protein|unclassified	0.0836038230
+UniRef50_N9CNB8	0.0836031007
+UniRef50_N9CNB8|unclassified	0.0836031007
+UniRef50_UPI00036DE7B6: TetR family transcriptional regulator	0.0835960497
+UniRef50_UPI00036DE7B6: TetR family transcriptional regulator|unclassified	0.0835960497
+UniRef50_S5NAV0	0.0835854002
+UniRef50_S5NAV0|unclassified	0.0835854002
+UniRef50_S2JHT6	0.0835766752
+UniRef50_S2JHT6|unclassified	0.0835766752
+UniRef50_UPI00035DDC1F: hypothetical protein	0.0835753046
+UniRef50_UPI00035DDC1F: hypothetical protein|unclassified	0.0835753046
+UniRef50_UPI00047357A6: preprotein translocase subunit TatB	0.0835606309
+UniRef50_UPI00047357A6: preprotein translocase subunit TatB|unclassified	0.0835606309
+UniRef50_UPI00037DEC56: hypothetical protein	0.0835482880
+UniRef50_UPI00037DEC56: hypothetical protein|unclassified	0.0835482880
+UniRef50_UPI0004653798: glyoxylate reductase	0.0835476026
+UniRef50_UPI0004653798: glyoxylate reductase|unclassified	0.0835476026
+UniRef50_UPI0002E4F0B3: channel protein TolC	0.0835418708
+UniRef50_UPI0002E4F0B3: channel protein TolC|unclassified	0.0835418708
+UniRef50_B4WWC7	0.0835415258
+UniRef50_B4WWC7|unclassified	0.0835415258
+UniRef50_UPI000380F87B: hypothetical protein	0.0835400980
+UniRef50_UPI000380F87B: hypothetical protein|unclassified	0.0835400980
+UniRef50_UPI000376C255: hypothetical protein	0.0835039582
+UniRef50_UPI000376C255: hypothetical protein|unclassified	0.0835039582
+UniRef50_A0Y8X1: Pilus assembly protein, PilQ	0.0834934725
+UniRef50_A0Y8X1: Pilus assembly protein, PilQ|unclassified	0.0834934725
+UniRef50_O23346: Imidazoleglycerol-phosphate dehydratase 2, chloroplastic	0.0834930021
+UniRef50_O23346: Imidazoleglycerol-phosphate dehydratase 2, chloroplastic|unclassified	0.0834930021
+UniRef50_UPI000377F902: hypothetical protein	0.0834810147
+UniRef50_UPI000377F902: hypothetical protein|unclassified	0.0834810147
+UniRef50_D4DDF9: CUE domain protein, putative	0.0834781332
+UniRef50_D4DDF9: CUE domain protein, putative|unclassified	0.0834781332
+UniRef50_F8JCU5: NnrS protein	0.0834763980
+UniRef50_F8JCU5: NnrS protein|unclassified	0.0834763980
+UniRef50_UPI00034DCCD9: hypothetical protein	0.0834732947
+UniRef50_UPI00034DCCD9: hypothetical protein|unclassified	0.0834732947
+UniRef50_UPI00041958E7: ATP-dependent helicase	0.0834705789
+UniRef50_UPI00041958E7: ATP-dependent helicase|unclassified	0.0834705789
+UniRef50_G2SNJ0: Tetratricopeptide repeat family protein	0.0834602753
+UniRef50_G2SNJ0: Tetratricopeptide repeat family protein|unclassified	0.0834602753
+UniRef50_E5ARK1: Transposase	0.0834599688
+UniRef50_E5ARK1: Transposase|unclassified	0.0834599688
+UniRef50_UPI0002EA3C5F: hypothetical protein	0.0834546694
+UniRef50_UPI0002EA3C5F: hypothetical protein|unclassified	0.0834546694
+UniRef50_G0WPJ6	0.0834444675
+UniRef50_G0WPJ6|unclassified	0.0834444675
+UniRef50_U5AK60	0.0834429910
+UniRef50_U5AK60|unclassified	0.0834429910
+UniRef50_UPI000373C726: hypothetical protein	0.0834414289
+UniRef50_UPI000373C726: hypothetical protein|unclassified	0.0834414289
+UniRef50_UPI0004662D3D: hypothetical protein	0.0834411898
+UniRef50_UPI0004662D3D: hypothetical protein|unclassified	0.0834411898
+UniRef50_Q4FND9: Histidine--tRNA ligase	0.0834397168
+UniRef50_Q4FND9: Histidine--tRNA ligase|unclassified	0.0834397168
+UniRef50_UPI0003810557: hypothetical protein	0.0834379496
+UniRef50_UPI0003810557: hypothetical protein|unclassified	0.0834379496
+UniRef50_B1FBT0	0.0834327959
+UniRef50_B1FBT0|unclassified	0.0834327959
+UniRef50_D3UXN7: Gp19	0.0834281349
+UniRef50_D3UXN7: Gp19|unclassified	0.0834281349
+UniRef50_A5VD92: Peptidase M23B	0.0834280336
+UniRef50_A5VD92: Peptidase M23B|unclassified	0.0834280336
+UniRef50_UPI0003B59FD9: membrane protein	0.0834280336
+UniRef50_UPI0003B59FD9: membrane protein|unclassified	0.0834280336
+UniRef50_E2LVZ2	0.0834258185
+UniRef50_E2LVZ2|unclassified	0.0834258185
+UniRef50_UPI0003762BD0: hypothetical protein	0.0834250583
+UniRef50_UPI0003762BD0: hypothetical protein|unclassified	0.0834250583
+UniRef50_A9DSM1: MJ0042 family finger-like domain protein	0.0834163285
+UniRef50_A9DSM1: MJ0042 family finger-like domain protein|unclassified	0.0834163285
+UniRef50_D5ATE2: Flagellar hook capping protein	0.0834116269
+UniRef50_D5ATE2: Flagellar hook capping protein|unclassified	0.0834116269
+UniRef50_T0JDJ3	0.0833982499
+UniRef50_T0JDJ3|unclassified	0.0833982499
+UniRef50_UPI00047D6967: dihydropteroate synthase	0.0833784935
+UniRef50_UPI00047D6967: dihydropteroate synthase|unclassified	0.0833784935
+UniRef50_V4JEN9	0.0833717470
+UniRef50_V4JEN9|unclassified	0.0833717470
+UniRef50_UPI00047D7E65: bacitracin ABC transporter ATP-binding protein	0.0833705328
+UniRef50_UPI00047D7E65: bacitracin ABC transporter ATP-binding protein|unclassified	0.0833705328
+UniRef50_J9GCF5: Peptidase, M23 family	0.0833669853
+UniRef50_J9GCF5: Peptidase, M23 family|unclassified	0.0833669853
+UniRef50_UPI0003955960: PREDICTED: zinc finger and BTB domain-containing protein 4-like	0.0833655060
+UniRef50_UPI0003955960: PREDICTED: zinc finger and BTB domain-containing protein 4-like|unclassified	0.0833655060
+UniRef50_UPI0002626037: large conductance mechanosensitive channel protein MscL	0.0833643344
+UniRef50_UPI0002626037: large conductance mechanosensitive channel protein MscL|unclassified	0.0833643344
+UniRef50_P94464: Ribosomal RNA small subunit methyltransferase B	0.0833595703
+UniRef50_P94464: Ribosomal RNA small subunit methyltransferase B|unclassified	0.0833595703
+UniRef50_UPI0003D01BEC: hypothetical protein P148_SR1C00001G0785	0.0833577823
+UniRef50_UPI0003D01BEC: hypothetical protein P148_SR1C00001G0785|unclassified	0.0833577823
+UniRef50_UPI00046511BA: hypothetical protein	0.0833553178
+UniRef50_UPI00046511BA: hypothetical protein|unclassified	0.0833553178
+UniRef50_UPI00036CF09B: hypothetical protein, partial	0.0833448209
+UniRef50_UPI00036CF09B: hypothetical protein, partial|unclassified	0.0833448209
+UniRef50_UPI00023B2A49	0.0833394559
+UniRef50_UPI00023B2A49|unclassified	0.0833394559
+UniRef50_UPI00029A9C68: phenylacetate-CoA ligase	0.0833386718
+UniRef50_UPI00029A9C68: phenylacetate-CoA ligase|unclassified	0.0833386718
+UniRef50_Q56241: Gene, IS3-like element	0.0833357084
+UniRef50_Q56241: Gene, IS3-like element|unclassified	0.0833357084
+UniRef50_UPI000349D5C4: hypothetical protein	0.0833338286
+UniRef50_UPI000349D5C4: hypothetical protein|unclassified	0.0833338286
+UniRef50_D8U4W8	0.0833238996
+UniRef50_D8U4W8|unclassified	0.0833238996
+UniRef50_A3K4J1: Lytic transglycosylase, catalytic	0.0833229300
+UniRef50_A3K4J1: Lytic transglycosylase, catalytic|unclassified	0.0833229300
+UniRef50_UPI0002F4938B: hypothetical protein	0.0833202709
+UniRef50_UPI0002F4938B: hypothetical protein|unclassified	0.0833202709
+UniRef50_UPI00037B942A: hypothetical protein	0.0833139672
+UniRef50_UPI00037B942A: hypothetical protein|unclassified	0.0833139672
+UniRef50_UPI000474084E: ABC transporter, partial	0.0833111393
+UniRef50_UPI000474084E: ABC transporter, partial|unclassified	0.0833111393
+UniRef50_UPI000378F8D9: hypothetical protein	0.0833020037
+UniRef50_UPI000378F8D9: hypothetical protein|unclassified	0.0833020037
+UniRef50_UPI00040CD955: nucleotide pyrophosphohydrolase	0.0833010473
+UniRef50_UPI00040CD955: nucleotide pyrophosphohydrolase|unclassified	0.0833010473
+UniRef50_S2ZSD0	0.0832993683
+UniRef50_S2ZSD0|unclassified	0.0832993683
+UniRef50_A1U6U8: Histone deacetylase superfamily	0.0832916872
+UniRef50_A1U6U8: Histone deacetylase superfamily|unclassified	0.0832916872
+UniRef50_Q74J27: Orotate phosphoribosyltransferase	0.0832881307
+UniRef50_Q74J27: Orotate phosphoribosyltransferase|unclassified	0.0832881307
+UniRef50_Y5DIA1	0.0832879591
+UniRef50_Y5DIA1|unclassified	0.0832879591
+UniRef50_UPI00037CCECF: hypothetical protein	0.0832864095
+UniRef50_UPI00037CCECF: hypothetical protein|unclassified	0.0832864095
+UniRef50_Q8FNX3	0.0832847149
+UniRef50_Q8FNX3|unclassified	0.0832847149
+UniRef50_UPI000055775D: hypothetical protein	0.0832842387
+UniRef50_UPI000055775D: hypothetical protein|unclassified	0.0832842387
+UniRef50_UPI0004077D3E: nucleoside-diphosphate sugar epimerase	0.0832841663
+UniRef50_UPI0004077D3E: nucleoside-diphosphate sugar epimerase|unclassified	0.0832841663
+UniRef50_UPI00047BEAD1: carnitine dehydratase	0.0832821985
+UniRef50_UPI00047BEAD1: carnitine dehydratase|unclassified	0.0832821985
+UniRef50_UPI00037266A5: MULTISPECIES: hypothetical protein	0.0832811158
+UniRef50_UPI00037266A5: MULTISPECIES: hypothetical protein|unclassified	0.0832811158
+UniRef50_K2JGC9	0.0832737081
+UniRef50_K2JGC9|unclassified	0.0832737081
+UniRef50_D1CAE1: Pyridoxal-5'-phosphate-dependent protein beta subunit	0.0832713248
+UniRef50_D1CAE1: Pyridoxal-5'-phosphate-dependent protein beta subunit|unclassified	0.0832713248
+UniRef50_K0FM77: PE_PGRS family protein	0.0832622605
+UniRef50_K0FM77: PE_PGRS family protein|unclassified	0.0832622605
+UniRef50_P72794: Phosphoadenosine phosphosulfate reductase	0.0832617146
+UniRef50_P72794: Phosphoadenosine phosphosulfate reductase|unclassified	0.0832617146
+UniRef50_A0A014LX85: Sugar ABC transporter	0.0832616166
+UniRef50_A0A014LX85: Sugar ABC transporter|unclassified	0.0832616166
+UniRef50_Q2IYS5: Phosphonates import ATP-binding protein PhnC 1	0.0832587020
+UniRef50_Q2IYS5: Phosphonates import ATP-binding protein PhnC 1|unclassified	0.0832587020
+UniRef50_A4X8D3	0.0832580969
+UniRef50_A4X8D3|unclassified	0.0832580969
+UniRef50_A0Z2A5: SOUL heme-binding protein	0.0832580533
+UniRef50_A0Z2A5: SOUL heme-binding protein|unclassified	0.0832580533
+UniRef50_UPI0003810671: hypothetical protein	0.0832579890
+UniRef50_UPI0003810671: hypothetical protein|unclassified	0.0832579890
+UniRef50_F3KAS3: K+-transporting ATPase, subunit B (Fragment)	0.0832555125
+UniRef50_F3KAS3: K+-transporting ATPase, subunit B (Fragment)|unclassified	0.0832555125
+UniRef50_UPI000472B51D: hypothetical protein, partial	0.0832401934
+UniRef50_UPI000472B51D: hypothetical protein, partial|unclassified	0.0832401934
+UniRef50_UPI00037F8DB3: peptide ABC transporter substrate-binding protein	0.0832291655
+UniRef50_UPI00037F8DB3: peptide ABC transporter substrate-binding protein|unclassified	0.0832291655
+UniRef50_UPI0002EE8B3F: hypothetical protein	0.0832270036
+UniRef50_UPI0002EE8B3F: hypothetical protein|unclassified	0.0832270036
+UniRef50_UPI0003B304F3: hypothetical protein	0.0832243091
+UniRef50_UPI0003B304F3: hypothetical protein|unclassified	0.0832243091
+UniRef50_UPI000465A10C: hypothetical protein	0.0832228406
+UniRef50_UPI000465A10C: hypothetical protein|unclassified	0.0832228406
+UniRef50_UPI000465FA7B: transposase	0.0832223809
+UniRef50_UPI000465FA7B: transposase|unclassified	0.0832223809
+UniRef50_P27745: Acetoin:2,6-dichlorophenolindophenol oxidoreductase subunit alpha	0.0832182886
+UniRef50_P27745: Acetoin:2,6-dichlorophenolindophenol oxidoreductase subunit alpha|unclassified	0.0832182886
+UniRef50_G8UTB0: Flagellar basal body rod modification protein FlgD	0.0832157284
+UniRef50_G8UTB0: Flagellar basal body rod modification protein FlgD|unclassified	0.0832157284
+UniRef50_UPI00037623F5: hypothetical protein, partial	0.0832052611
+UniRef50_UPI00037623F5: hypothetical protein, partial|unclassified	0.0832052611
+UniRef50_Q28LQ2	0.0832034223
+UniRef50_Q28LQ2|unclassified	0.0832034223
+UniRef50_D0NYW2	0.0832000815
+UniRef50_D0NYW2|unclassified	0.0832000815
+UniRef50_UPI00046D355F: PREDICTED: dual specificity tyrosine-phosphorylation-regulated kinase 2-like	0.0831990603
+UniRef50_UPI00046D355F: PREDICTED: dual specificity tyrosine-phosphorylation-regulated kinase 2-like|unclassified	0.0831990603
+UniRef50_UPI00046FC8ED: hypothetical protein	0.0831887510
+UniRef50_UPI00046FC8ED: hypothetical protein|unclassified	0.0831887510
+UniRef50_A0A011QV69: Protein co-occurring with transport systems	0.0831868843
+UniRef50_A0A011QV69: Protein co-occurring with transport systems|unclassified	0.0831868843
+UniRef50_R2S1B1	0.0831868843
+UniRef50_R2S1B1|unclassified	0.0831868843
+UniRef50_UPI0004756704: DNA-binding protein	0.0831830140
+UniRef50_UPI0004756704: DNA-binding protein|unclassified	0.0831830140
+UniRef50_R7R606	0.0831821882
+UniRef50_R7R606|unclassified	0.0831821882
+UniRef50_UPI0003797DC2: hypothetical protein	0.0831786201
+UniRef50_UPI0003797DC2: hypothetical protein|unclassified	0.0831786201
+UniRef50_D7ADH1: Dehydrogenase molybdenum cofactor insertion protein	0.0831733528
+UniRef50_D7ADH1: Dehydrogenase molybdenum cofactor insertion protein|unclassified	0.0831733528
+UniRef50_A6UYW1: 8-amino-7-oxononanoate synthase	0.0831716926
+UniRef50_A6UYW1: 8-amino-7-oxononanoate synthase|unclassified	0.0831716926
+UniRef50_UPI000470A84B: hypothetical protein	0.0831668943
+UniRef50_UPI000470A84B: hypothetical protein|unclassified	0.0831668943
+UniRef50_UPI0004683A78: hypothetical protein	0.0831638272
+UniRef50_UPI0004683A78: hypothetical protein|unclassified	0.0831638272
+UniRef50_UPI000378D19E: hypothetical protein	0.0831571550
+UniRef50_UPI000378D19E: hypothetical protein|unclassified	0.0831571550
+UniRef50_UPI0003827138: hypothetical protein	0.0831557430
+UniRef50_UPI0003827138: hypothetical protein|unclassified	0.0831557430
+UniRef50_UPI000362EA7C: hypothetical protein	0.0831552198
+UniRef50_UPI000362EA7C: hypothetical protein|unclassified	0.0831552198
+UniRef50_K2QKB0	0.0831551936
+UniRef50_K2QKB0|unclassified	0.0831551936
+UniRef50_R0EY14: CRISPR-associated helicase Cas3	0.0831513183
+UniRef50_R0EY14: CRISPR-associated helicase Cas3|unclassified	0.0831513183
+UniRef50_UPI0003621549: 16S rRNA methyltransferase, partial	0.0831491974
+UniRef50_UPI0003621549: 16S rRNA methyltransferase, partial|unclassified	0.0831491974
+UniRef50_UPI00037F886D: hypothetical protein, partial	0.0831488594
+UniRef50_UPI00037F886D: hypothetical protein, partial|unclassified	0.0831488594
+UniRef50_UPI000371D2F7: hypothetical protein	0.0831264401
+UniRef50_UPI000371D2F7: hypothetical protein|unclassified	0.0831264401
+UniRef50_UPI00036BF190: hypothetical protein, partial	0.0831179295
+UniRef50_UPI00036BF190: hypothetical protein, partial|unclassified	0.0831179295
+UniRef50_UPI0002DF209F: hypothetical protein	0.0831163854
+UniRef50_UPI0002DF209F: hypothetical protein|unclassified	0.0831163854
+UniRef50_UPI0003B4645F: hypothetical protein	0.0831123408
+UniRef50_UPI0003B4645F: hypothetical protein|unclassified	0.0831123408
+UniRef50_UPI000366EAF1: hypothetical protein	0.0831110776
+UniRef50_UPI000366EAF1: hypothetical protein|unclassified	0.0831110776
+UniRef50_UPI000464A385: GDSL family lipase	0.0831104866
+UniRef50_UPI000464A385: GDSL family lipase|unclassified	0.0831104866
+UniRef50_UPI0004209A5E: hypothetical protein	0.0830901167
+UniRef50_UPI0004209A5E: hypothetical protein|unclassified	0.0830901167
+UniRef50_UPI0003758D94: maltose ABC transporter substrate-binding protein, partial	0.0830867414
+UniRef50_UPI0003758D94: maltose ABC transporter substrate-binding protein, partial|unclassified	0.0830867414
+UniRef50_UPI000376666B: hypothetical protein	0.0830863898
+UniRef50_UPI000376666B: hypothetical protein|unclassified	0.0830863898
+UniRef50_UPI00040EB8AC: succinoglycan biosynthesis protein exoa	0.0830827727
+UniRef50_UPI00040EB8AC: succinoglycan biosynthesis protein exoa|unclassified	0.0830827727
+UniRef50_P44936: Regulator of sigma E protease	0.0830804686
+UniRef50_P44936: Regulator of sigma E protease|unclassified	0.0830804686
+UniRef50_UPI0003747F68: hypothetical protein	0.0830749357
+UniRef50_UPI0003747F68: hypothetical protein|unclassified	0.0830749357
+UniRef50_UPI000237E461: dTDP-4-dehydrorhamnose 3,5-epimerase	0.0830748035
+UniRef50_UPI000237E461: dTDP-4-dehydrorhamnose 3,5-epimerase|unclassified	0.0830748035
+UniRef50_UPI0003B53780: dihydrofolate reductase	0.0830593606
+UniRef50_UPI0003B53780: dihydrofolate reductase|unclassified	0.0830593606
+UniRef50_K2DF06: General secretion pathway protein F	0.0830497066
+UniRef50_K2DF06: General secretion pathway protein F|unclassified	0.0830497066
+UniRef50_Q82DT6: NADH-quinone oxidoreductase subunit B 2	0.0830442695
+UniRef50_Q82DT6: NADH-quinone oxidoreductase subunit B 2|unclassified	0.0830442695
+UniRef50_A0A016QN06: Peptidase-like protein	0.0830373042
+UniRef50_A0A016QN06: Peptidase-like protein|unclassified	0.0830373042
+UniRef50_A6L5D3	0.0830327007
+UniRef50_A6L5D3|unclassified	0.0830327007
+UniRef50_UPI000467F351: hypothetical protein	0.0830214896
+UniRef50_UPI000467F351: hypothetical protein|unclassified	0.0830214896
+UniRef50_C5BZL8: Aldo/keto reductase	0.0830204402
+UniRef50_C5BZL8: Aldo/keto reductase|unclassified	0.0830204402
+UniRef50_G8MBP7	0.0830198050
+UniRef50_G8MBP7|unclassified	0.0830198050
+UniRef50_UPI0003B35881: peptidase	0.0830184027
+UniRef50_UPI0003B35881: peptidase|unclassified	0.0830184027
+UniRef50_UPI0003447DC1: PREDICTED: LOW QUALITY PROTEIN: 3-oxoacid CoA transferase 2	0.0830182768
+UniRef50_UPI0003447DC1: PREDICTED: LOW QUALITY PROTEIN: 3-oxoacid CoA transferase 2|unclassified	0.0830182768
+UniRef50_B0R6S2: Glycerol kinase	0.0830127184
+UniRef50_B0R6S2: Glycerol kinase|unclassified	0.0830127184
+UniRef50_A8FF31: 3-dehydroquinate dehydratase	0.0830103546
+UniRef50_A8FF31: 3-dehydroquinate dehydratase|unclassified	0.0830103546
+UniRef50_UPI000225B22F: hypothetical protein	0.0830079709
+UniRef50_UPI000225B22F: hypothetical protein|unclassified	0.0830079709
+UniRef50_V5WLN4	0.0829938947
+UniRef50_V5WLN4|unclassified	0.0829938947
+UniRef50_K8WEW5	0.0829841626
+UniRef50_K8WEW5|unclassified	0.0829841626
+UniRef50_Q9WZ22	0.0829806849
+UniRef50_Q9WZ22|unclassified	0.0829806849
+UniRef50_UPI0004085246: hypothetical protein	0.0829763287
+UniRef50_UPI0004085246: hypothetical protein|unclassified	0.0829763287
+UniRef50_UPI00021A7398: PREDICTED: putative ATP-dependent Clp protease proteolytic subunit, mitochondrial-like	0.0829739568
+UniRef50_UPI00021A7398: PREDICTED: putative ATP-dependent Clp protease proteolytic subunit, mitochondrial-like|unclassified	0.0829739568
+UniRef50_F7RYP0	0.0829725812
+UniRef50_F7RYP0|unclassified	0.0829725812
+UniRef50_UPI0004769219: glycerophosphodiester phosphodiesterase	0.0829707145
+UniRef50_UPI0004769219: glycerophosphodiester phosphodiesterase|unclassified	0.0829707145
+UniRef50_UPI000443198E: PREDICTED: hydroxyacyl-thioester dehydratase type 2, mitochondrial-like	0.0829703329
+UniRef50_UPI000443198E: PREDICTED: hydroxyacyl-thioester dehydratase type 2, mitochondrial-like|unclassified	0.0829703329
+UniRef50_UPI0003824933: primosome assembly protein PriA	0.0829696772
+UniRef50_UPI0003824933: primosome assembly protein PriA|unclassified	0.0829696772
+UniRef50_J1JZJ2: UPF0301 protein ME5_00943	0.0829658439
+UniRef50_J1JZJ2: UPF0301 protein ME5_00943|unclassified	0.0829658439
+UniRef50_G5JVS9: Competence protein	0.0829624022
+UniRef50_G5JVS9: Competence protein|unclassified	0.0829624022
+UniRef50_UPI0004728704: dihydrofolate reductase	0.0829576966
+UniRef50_UPI0004728704: dihydrofolate reductase|unclassified	0.0829576966
+UniRef50_UPI00041B2F47: hypothetical protein	0.0829466995
+UniRef50_UPI00041B2F47: hypothetical protein|unclassified	0.0829466995
+UniRef50_W8B3J5	0.0829450159
+UniRef50_W8B3J5|unclassified	0.0829450159
+UniRef50_UPI000237A13E: ABC transporter-like protein	0.0829432838
+UniRef50_UPI000237A13E: ABC transporter-like protein|unclassified	0.0829432838
+UniRef50_A9DZC5	0.0829409533
+UniRef50_A9DZC5|unclassified	0.0829409533
+UniRef50_UPI0004656922: transposase	0.0829343548
+UniRef50_UPI0004656922: transposase|unclassified	0.0829343548
+UniRef50_UPI00036427F1: hypothetical protein	0.0829296399
+UniRef50_UPI00036427F1: hypothetical protein|unclassified	0.0829296399
+UniRef50_K8EM04	0.0829283432
+UniRef50_K8EM04|unclassified	0.0829283432
+UniRef50_Q05762: Bifunctional dihydrofolate reductase-thymidylate synthase 1	0.0829211231
+UniRef50_Q05762: Bifunctional dihydrofolate reductase-thymidylate synthase 1|unclassified	0.0829211231
+UniRef50_O35046: Putative carboxypeptidase YocD	0.0829209990
+UniRef50_O35046: Putative carboxypeptidase YocD|unclassified	0.0829209990
+UniRef50_G2KHL7	0.0829150854
+UniRef50_G2KHL7|unclassified	0.0829150854
+UniRef50_UPI0004639699: hypothetical protein, partial	0.0829105867
+UniRef50_UPI0004639699: hypothetical protein, partial|unclassified	0.0829105867
+UniRef50_W7ZN08: Flagellar hook-length control protein FliK	0.0829055537
+UniRef50_W7ZN08: Flagellar hook-length control protein FliK|unclassified	0.0829055537
+UniRef50_UPI000365B6C8: hypothetical protein	0.0829049004
+UniRef50_UPI000365B6C8: hypothetical protein|unclassified	0.0829049004
+UniRef50_UPI0003121E23: hypothetical protein	0.0829037861
+UniRef50_UPI0003121E23: hypothetical protein|unclassified	0.0829037861
+UniRef50_UPI0003686E64: hypothetical protein	0.0829022794
+UniRef50_UPI0003686E64: hypothetical protein|unclassified	0.0829022794
+UniRef50_Q9LSQ7	0.0828995495
+UniRef50_Q9LSQ7|unclassified	0.0828995495
+UniRef50_A7IDJ4: Ppx/GppA phosphatase	0.0828978823
+UniRef50_A7IDJ4: Ppx/GppA phosphatase|unclassified	0.0828978823
+UniRef50_UPI000345A202: hypothetical protein	0.0828977739
+UniRef50_UPI000345A202: hypothetical protein|unclassified	0.0828977739
+UniRef50_Q045R3: Predicted Rossmann fold nucleotide-binding protein	0.0828951420
+UniRef50_Q045R3: Predicted Rossmann fold nucleotide-binding protein|unclassified	0.0828951420
+UniRef50_Q8TUZ5: Acetylornithine aminotransferase	0.0828947899
+UniRef50_Q8TUZ5: Acetylornithine aminotransferase|unclassified	0.0828947899
+UniRef50_D5BTG4: UPF0262 protein SAR116_1318	0.0828905672
+UniRef50_D5BTG4: UPF0262 protein SAR116_1318|unclassified	0.0828905672
+UniRef50_UPI000361729F: hypothetical protein	0.0828885280
+UniRef50_UPI000361729F: hypothetical protein|unclassified	0.0828885280
+UniRef50_B1GZ10: Peptide deformylase	0.0828869279
+UniRef50_B1GZ10: Peptide deformylase|unclassified	0.0828869279
+UniRef50_UPI0001DD0CDC: flagellar basal body rod protein FlgG	0.0828849865
+UniRef50_UPI0001DD0CDC: flagellar basal body rod protein FlgG|unclassified	0.0828849865
+UniRef50_UPI0004799256: hypothetical protein	0.0828837014
+UniRef50_UPI0004799256: hypothetical protein|unclassified	0.0828837014
+UniRef50_X5JHV8: Protein serine-threonine phosphatase	0.0828826957
+UniRef50_X5JHV8: Protein serine-threonine phosphatase|unclassified	0.0828826957
+UniRef50_UPI00046D1D3F: hypothetical protein	0.0828758936
+UniRef50_UPI00046D1D3F: hypothetical protein|unclassified	0.0828758936
+UniRef50_UPI0003FCDC58: chloramphenicol acetyltransferase	0.0828740118
+UniRef50_UPI0003FCDC58: chloramphenicol acetyltransferase|unclassified	0.0828740118
+UniRef50_UPI000471489C: hypothetical protein	0.0828723377
+UniRef50_UPI000471489C: hypothetical protein|unclassified	0.0828723377
+UniRef50_A5VM68: Glutamyl-tRNA reductase	0.0828696302
+UniRef50_A5VM68: Glutamyl-tRNA reductase|unclassified	0.0828696302
+UniRef50_UPI0002C34A1D: PREDICTED: phosphoglucomutase-1-like	0.0828604755
+UniRef50_UPI0002C34A1D: PREDICTED: phosphoglucomutase-1-like|unclassified	0.0828604755
+UniRef50_UPI0004767F3F: lytic transglycosylase	0.0828546347
+UniRef50_UPI0004767F3F: lytic transglycosylase|unclassified	0.0828546347
+UniRef50_X0U0N7: Marine sediment metagenome DNA, contig: S01H1_L10568 (Fragment)	0.0828543163
+UniRef50_X0U0N7: Marine sediment metagenome DNA, contig: S01H1_L10568 (Fragment)|unclassified	0.0828543163
+UniRef50_J1NA50	0.0828460121
+UniRef50_J1NA50|unclassified	0.0828460121
+UniRef50_UPI00047E23DA: hypothetical protein	0.0828455866
+UniRef50_UPI00047E23DA: hypothetical protein|unclassified	0.0828455866
+UniRef50_F0PWM0: Surface protein	0.0828451794
+UniRef50_F0PWM0: Surface protein|unclassified	0.0828451794
+UniRef50_UPI0004002324: ribose pyranase	0.0828450841
+UniRef50_UPI0004002324: ribose pyranase|unclassified	0.0828450841
+UniRef50_R4XU58: Phage tail assembly protein	0.0828435450
+UniRef50_R4XU58: Phage tail assembly protein|unclassified	0.0828435450
+UniRef50_Q67PR9: Guanylate kinase	0.0828420106
+UniRef50_Q67PR9: Guanylate kinase|unclassified	0.0828420106
+UniRef50_UPI00047EE837: hypothetical protein	0.0828418364
+UniRef50_UPI00047EE837: hypothetical protein|unclassified	0.0828418364
+UniRef50_A9IIE9	0.0828352170
+UniRef50_A9IIE9|unclassified	0.0828352170
+UniRef50_D5RSX6	0.0828333487
+UniRef50_D5RSX6|unclassified	0.0828333487
+UniRef50_K0DCF5: Nickase	0.0828292588
+UniRef50_K0DCF5: Nickase|unclassified	0.0828292588
+UniRef50_UPI0003030EB9: hypothetical protein	0.0828135877
+UniRef50_UPI0003030EB9: hypothetical protein|unclassified	0.0828135877
+UniRef50_UPI00020035C1: DEAD/DEAH box helicase domain protein, partial	0.0828082194
+UniRef50_UPI00020035C1: DEAD/DEAH box helicase domain protein, partial|unclassified	0.0828082194
+UniRef50_F4AKT6	0.0828029297
+UniRef50_F4AKT6|unclassified	0.0828029297
+UniRef50_C2SGC8	0.0827989371
+UniRef50_C2SGC8|unclassified	0.0827989371
+UniRef50_UPI000288A7AC: binding-protein-dependent transport systems inner membrane component	0.0827871175
+UniRef50_UPI000288A7AC: binding-protein-dependent transport systems inner membrane component|unclassified	0.0827871175
+UniRef50_UPI0003675384: hypothetical protein	0.0827800473
+UniRef50_UPI0003675384: hypothetical protein|unclassified	0.0827800473
+UniRef50_K2IZ56	0.0827791368
+UniRef50_K2IZ56|unclassified	0.0827791368
+UniRef50_F3YA45: Protein co-occurring with transport systems	0.0827737044
+UniRef50_F3YA45: Protein co-occurring with transport systems|unclassified	0.0827737044
+UniRef50_K9EK44: ATPase involved in chromosome partitioning	0.0827698961
+UniRef50_K9EK44: ATPase involved in chromosome partitioning|unclassified	0.0827698961
+UniRef50_J3NV69	0.0827644259
+UniRef50_J3NV69|unclassified	0.0827644259
+UniRef50_UPI00036E4ABD: hypothetical protein	0.0827626133
+UniRef50_UPI00036E4ABD: hypothetical protein|unclassified	0.0827626133
+UniRef50_K4LS22	0.0827498583
+UniRef50_K4LS22|unclassified	0.0827498583
+UniRef50_UPI00037ABD29: hypothetical protein	0.0827380111
+UniRef50_UPI00037ABD29: hypothetical protein|unclassified	0.0827380111
+UniRef50_UPI00034F720A	0.0827226116
+UniRef50_UPI00034F720A|unclassified	0.0827226116
+UniRef50_UPI00036F9D5F: hypothetical protein	0.0827225532
+UniRef50_UPI00036F9D5F: hypothetical protein|unclassified	0.0827225532
+UniRef50_UPI0003B7A283: short-chain dehydrogenase	0.0827175753
+UniRef50_UPI0003B7A283: short-chain dehydrogenase|unclassified	0.0827175753
+UniRef50_UPI0003662522: hypothetical protein	0.0827164249
+UniRef50_UPI0003662522: hypothetical protein|unclassified	0.0827164249
+UniRef50_UPI000463BC25: hypothetical protein	0.0827140755
+UniRef50_UPI000463BC25: hypothetical protein|unclassified	0.0827140755
+UniRef50_UPI000368E7FD: hypothetical protein	0.0827133977
+UniRef50_UPI000368E7FD: hypothetical protein|unclassified	0.0827133977
+UniRef50_W9T557: Lipoprotein	0.0827101986
+UniRef50_W9T557: Lipoprotein|unclassified	0.0827101986
+UniRef50_W4LLZ4	0.0826983336
+UniRef50_W4LLZ4|unclassified	0.0826983336
+UniRef50_S4VW07	0.0826977709
+UniRef50_S4VW07|unclassified	0.0826977709
+UniRef50_UPI00035C1080: hypothetical protein	0.0826893283
+UniRef50_UPI00035C1080: hypothetical protein|unclassified	0.0826893283
+UniRef50_UPI00047D8BBE: 50S ribosomal protein L4	0.0826882480
+UniRef50_UPI00047D8BBE: 50S ribosomal protein L4|unclassified	0.0826882480
+UniRef50_UPI00036BC01B: hypothetical protein, partial	0.0826850136
+UniRef50_UPI00036BC01B: hypothetical protein, partial|unclassified	0.0826850136
+UniRef50_UPI0002559066: hypothetical protein	0.0826834256
+UniRef50_UPI0002559066: hypothetical protein|unclassified	0.0826834256
+UniRef50_P11411: Glucose-6-phosphate 1-dehydrogenase	0.0826724865
+UniRef50_P11411: Glucose-6-phosphate 1-dehydrogenase|unclassified	0.0826724865
+UniRef50_UPI0003B56242: methyltransferase	0.0826667434
+UniRef50_UPI0003B56242: methyltransferase|unclassified	0.0826667434
+UniRef50_UPI00047DAB1B: 3-ketoacyl-ACP reductase	0.0826662973
+UniRef50_UPI00047DAB1B: 3-ketoacyl-ACP reductase|unclassified	0.0826662973
+UniRef50_UPI00036FEE04: hypothetical protein	0.0826607344
+UniRef50_UPI00036FEE04: hypothetical protein|unclassified	0.0826607344
+UniRef50_Q4TCA6: Chromosome 1 SCAF7036, whole genome shotgun sequence. (Fragment)	0.0826526811
+UniRef50_Q4TCA6: Chromosome 1 SCAF7036, whole genome shotgun sequence. (Fragment)|unclassified	0.0826526811
+UniRef50_D6U2W5	0.0826522150
+UniRef50_D6U2W5|unclassified	0.0826522150
+UniRef50_P57699: Potassium-transporting ATPase B chain	0.0826477077
+UniRef50_P57699: Potassium-transporting ATPase B chain|unclassified	0.0826477077
+UniRef50_V1H393	0.0826453807
+UniRef50_V1H393|unclassified	0.0826453807
+UniRef50_E5VUH5: Tex protein	0.0826449164
+UniRef50_E5VUH5: Tex protein|unclassified	0.0826449164
+UniRef50_UPI0003720140: hypothetical protein	0.0826386424
+UniRef50_UPI0003720140: hypothetical protein|unclassified	0.0826386424
+UniRef50_UPI000348D250: hypothetical protein	0.0826379769
+UniRef50_UPI000348D250: hypothetical protein|unclassified	0.0826379769
+UniRef50_W5X8A1	0.0826348149
+UniRef50_W5X8A1|unclassified	0.0826348149
+UniRef50_UPI00037A37E6: hypothetical protein	0.0826313271
+UniRef50_UPI00037A37E6: hypothetical protein|unclassified	0.0826313271
+UniRef50_UPI000375F594: hypothetical protein	0.0826306613
+UniRef50_UPI000375F594: hypothetical protein|unclassified	0.0826306613
+UniRef50_UPI0004726C09: hypothetical protein	0.0826306333
+UniRef50_UPI0004726C09: hypothetical protein|unclassified	0.0826306333
+UniRef50_UPI0004630312: MULTISPECIES: hypothetical protein	0.0826198429
+UniRef50_UPI0004630312: MULTISPECIES: hypothetical protein|unclassified	0.0826198429
+UniRef50_UPI0003956C20: LysR family transcriptional regulator	0.0826194219
+UniRef50_UPI0003956C20: LysR family transcriptional regulator|unclassified	0.0826194219
+UniRef50_UPI0003608F79: hypothetical protein	0.0826125533
+UniRef50_UPI0003608F79: hypothetical protein|unclassified	0.0826125533
+UniRef50_UPI000440875A: xylitol dehydrogenase	0.0826105148
+UniRef50_UPI000440875A: xylitol dehydrogenase|unclassified	0.0826105148
+UniRef50_D0CNU3: Peptidase M23B	0.0826032649
+UniRef50_D0CNU3: Peptidase M23B|unclassified	0.0826032649
+UniRef50_F9ZV31: Flagellar hook capping protein	0.0826016067
+UniRef50_F9ZV31: Flagellar hook capping protein|unclassified	0.0826016067
+UniRef50_W8YPI7	0.0825991242
+UniRef50_W8YPI7|unclassified	0.0825991242
+UniRef50_UPI0004709B13: hypothetical protein	0.0825968761
+UniRef50_UPI0004709B13: hypothetical protein|unclassified	0.0825968761
+UniRef50_B3PM96: Uracil phosphoribosyltransferase	0.0825855886
+UniRef50_B3PM96: Uracil phosphoribosyltransferase|unclassified	0.0825855886
+UniRef50_UPI000311B4DE: hypothetical protein	0.0825855255
+UniRef50_UPI000311B4DE: hypothetical protein|unclassified	0.0825855255
+UniRef50_V9VS33: Esterase	0.0825810915
+UniRef50_V9VS33: Esterase|unclassified	0.0825810915
+UniRef50_R6C7G1: Phage terminase	0.0825741680
+UniRef50_R6C7G1: Phage terminase|unclassified	0.0825741680
+UniRef50_UPI00041CA451: hypothetical protein	0.0825740567
+UniRef50_UPI00041CA451: hypothetical protein|unclassified	0.0825740567
+UniRef50_G8PSE3	0.0825702323
+UniRef50_G8PSE3|unclassified	0.0825702323
+UniRef50_A1BG26: Acetylglutamate kinase	0.0825697086
+UniRef50_A1BG26: Acetylglutamate kinase|unclassified	0.0825697086
+UniRef50_UPI00042A099E: MULTISPECIES: sugar ABC transporter permease	0.0825625652
+UniRef50_UPI00042A099E: MULTISPECIES: sugar ABC transporter permease|unclassified	0.0825625652
+UniRef50_UPI0002003580: Rhamnan synthesis F, partial	0.0825578138
+UniRef50_UPI0002003580: Rhamnan synthesis F, partial|unclassified	0.0825578138
+UniRef50_Q57690: Anthranilate synthase component 2	0.0825457049
+UniRef50_Q57690: Anthranilate synthase component 2|unclassified	0.0825457049
+UniRef50_U3AMR8	0.0825456858
+UniRef50_U3AMR8|unclassified	0.0825456858
+UniRef50_UPI0003B5B2C4: NADH dehydrogenase subunit L, partial	0.0825394052
+UniRef50_UPI0003B5B2C4: NADH dehydrogenase subunit L, partial|unclassified	0.0825394052
+UniRef50_D3UYE0	0.0825311640
+UniRef50_D3UYE0|unclassified	0.0825311640
+UniRef50_Q9KD27: Polyphosphate kinase	0.0825257716
+UniRef50_Q9KD27: Polyphosphate kinase|unclassified	0.0825257716
+UniRef50_S2W2I7	0.0825216386
+UniRef50_S2W2I7|unclassified	0.0825216386
+UniRef50_X3Y1K9: L-dehydroascorbate transporter large permease subunit	0.0825203645
+UniRef50_X3Y1K9: L-dehydroascorbate transporter large permease subunit|unclassified	0.0825203645
+UniRef50_B1I3R5: Adenylate kinase	0.0825195726
+UniRef50_B1I3R5: Adenylate kinase|unclassified	0.0825195726
+UniRef50_G7WI97	0.0825134018
+UniRef50_G7WI97|unclassified	0.0825134018
+UniRef50_UPI0002555F38: phosphodiesterase, MJ0936 family protein	0.0825117044
+UniRef50_UPI0002555F38: phosphodiesterase, MJ0936 family protein|unclassified	0.0825117044
+UniRef50_Q820K4: tRNA (guanine-N(1)-)-methyltransferase	0.0825101480
+UniRef50_Q820K4: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0825101480
+UniRef50_UPI000462BAFD: PREDICTED: zinc finger protein 318-like isoform X1	0.0824984561
+UniRef50_UPI000462BAFD: PREDICTED: zinc finger protein 318-like isoform X1|unclassified	0.0824984561
+UniRef50_H8WCI8	0.0824980311
+UniRef50_H8WCI8|unclassified	0.0824980311
+UniRef50_UPI0003B6E12F: Holliday junction resolvase	0.0824925957
+UniRef50_UPI0003B6E12F: Holliday junction resolvase|unclassified	0.0824925957
+UniRef50_U6LIW8: Sybindin-like family domain-containing protein, putative	0.0824916856
+UniRef50_U6LIW8: Sybindin-like family domain-containing protein, putative|unclassified	0.0824916856
+UniRef50_Q3BQP8: Monofunctional biosynthetic peptidoglycan transglycosylase	0.0824885574
+UniRef50_Q3BQP8: Monofunctional biosynthetic peptidoglycan transglycosylase|unclassified	0.0824885574
+UniRef50_UPI0003802EAF: hypothetical protein	0.0824794345
+UniRef50_UPI0003802EAF: hypothetical protein|unclassified	0.0824794345
+UniRef50_R5RT80	0.0824762374
+UniRef50_R5RT80|unclassified	0.0824762374
+UniRef50_UPI0002F8E904: hypothetical protein	0.0824744495
+UniRef50_UPI0002F8E904: hypothetical protein|unclassified	0.0824744495
+UniRef50_P33073: L-serine dehydratase, alpha chain	0.0824716028
+UniRef50_P33073: L-serine dehydratase, alpha chain|unclassified	0.0824716028
+UniRef50_B7Q9D2: Fyn-binding protein, putative	0.0824700644
+UniRef50_B7Q9D2: Fyn-binding protein, putative|unclassified	0.0824700644
+UniRef50_UPI000346466C: hypothetical protein	0.0824698831
+UniRef50_UPI000346466C: hypothetical protein|unclassified	0.0824698831
+UniRef50_W8R8M7	0.0824697128
+UniRef50_W8R8M7|unclassified	0.0824697128
+UniRef50_UPI0003820942: hypothetical protein	0.0824657455
+UniRef50_UPI0003820942: hypothetical protein|unclassified	0.0824657455
+UniRef50_Q72PF1: Pyridoxine/pyridoxamine 5'-phosphate oxidase	0.0824625429
+UniRef50_Q72PF1: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	0.0824625429
+UniRef50_K0SQG1	0.0824551892
+UniRef50_K0SQG1|unclassified	0.0824551892
+UniRef50_UPI000185D852: hypothetical protein TGME49_026320	0.0824539594
+UniRef50_UPI000185D852: hypothetical protein TGME49_026320|unclassified	0.0824539594
+UniRef50_S4X4J3	0.0824490569
+UniRef50_S4X4J3|unclassified	0.0824490569
+UniRef50_E3F1E2	0.0824469003
+UniRef50_E3F1E2|unclassified	0.0824469003
+UniRef50_UPI000375F7D3: hypothetical protein	0.0824452756
+UniRef50_UPI000375F7D3: hypothetical protein|unclassified	0.0824452756
+UniRef50_UPI000473E8E4: hypothetical protein, partial	0.0824451999
+UniRef50_UPI000473E8E4: hypothetical protein, partial|unclassified	0.0824451999
+UniRef50_A8LKG8	0.0824420840
+UniRef50_A8LKG8|unclassified	0.0824420840
+UniRef50_Q2S808	0.0824414463
+UniRef50_Q2S808|unclassified	0.0824414463
+UniRef50_E1VK27: Phenylacetic acid degradation-like protein	0.0824387435
+UniRef50_E1VK27: Phenylacetic acid degradation-like protein|unclassified	0.0824387435
+UniRef50_Q6LSD6: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	0.0824263332
+UniRef50_Q6LSD6: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.0824263332
+UniRef50_Q6J249: 1-aminocyclopropane-1-carboxylate deaminase (Fragment)	0.0824243045
+UniRef50_Q6J249: 1-aminocyclopropane-1-carboxylate deaminase (Fragment)|unclassified	0.0824243045
+UniRef50_UPI00036D1E75: NADPH:quinone oxidoreductase	0.0824171032
+UniRef50_UPI00036D1E75: NADPH:quinone oxidoreductase|unclassified	0.0824171032
+UniRef50_F7ZH00	0.0824168202
+UniRef50_F7ZH00|unclassified	0.0824168202
+UniRef50_UPI00037FF3F7: hypothetical protein	0.0824148698
+UniRef50_UPI00037FF3F7: hypothetical protein|unclassified	0.0824148698
+UniRef50_H6NSX8	0.0824101723
+UniRef50_H6NSX8|unclassified	0.0824101723
+UniRef50_T0IWF6: Biotin biosynthesis protein BioX	0.0824048846
+UniRef50_T0IWF6: Biotin biosynthesis protein BioX|unclassified	0.0824048846
+UniRef50_UPI000369119B: hypothetical protein	0.0824016650
+UniRef50_UPI000369119B: hypothetical protein|unclassified	0.0824016650
+UniRef50_F2DRC1: Predicted protein (Fragment)	0.0824010842
+UniRef50_F2DRC1: Predicted protein (Fragment)|unclassified	0.0824010842
+UniRef50_W7VA44: Siderophore malleobactin non-ribosomal peptide synthetase MbaJ	0.0824003231
+UniRef50_W7VA44: Siderophore malleobactin non-ribosomal peptide synthetase MbaJ|unclassified	0.0824003231
+UniRef50_K0TA62	0.0823973009
+UniRef50_K0TA62|unclassified	0.0823973009
+UniRef50_UPI0003615AA0: hypothetical protein	0.0823945770
+UniRef50_UPI0003615AA0: hypothetical protein|unclassified	0.0823945770
+UniRef50_L1FDE8: Phosphate ABC transporter, permease PstA domain protein (Fragment)	0.0823941780
+UniRef50_L1FDE8: Phosphate ABC transporter, permease PstA domain protein (Fragment)|unclassified	0.0823941780
+UniRef50_L8GLC1: Coenzyme Q10, putative	0.0823923351
+UniRef50_L8GLC1: Coenzyme Q10, putative|unclassified	0.0823923351
+UniRef50_A0A031I3B8: Flagellar hook capping family protein	0.0823867207
+UniRef50_A0A031I3B8: Flagellar hook capping family protein|unclassified	0.0823867207
+UniRef50_UPI0003D7284B: PREDICTED: synapsin-1-like	0.0823860197
+UniRef50_UPI0003D7284B: PREDICTED: synapsin-1-like|unclassified	0.0823860197
+UniRef50_C4KZ66: Indole-3-glycerol phosphate synthase	0.0823789946
+UniRef50_C4KZ66: Indole-3-glycerol phosphate synthase|unclassified	0.0823789946
+UniRef50_Q7U9B5	0.0823755376
+UniRef50_Q7U9B5|unclassified	0.0823755376
+UniRef50_A3VHP8	0.0823737254
+UniRef50_A3VHP8|unclassified	0.0823737254
+UniRef50_UPI000364D8B2: hypothetical protein	0.0823735057
+UniRef50_UPI000364D8B2: hypothetical protein|unclassified	0.0823735057
+UniRef50_UPI0003603238: hypothetical protein, partial	0.0823730697
+UniRef50_UPI0003603238: hypothetical protein, partial|unclassified	0.0823730697
+UniRef50_UPI0003611BF5: hypothetical protein	0.0823722235
+UniRef50_UPI0003611BF5: hypothetical protein|unclassified	0.0823722235
+UniRef50_Q6HQR6: N-acetylmuramoyl-L-alanine amidase, N-terminus	0.0823719100
+UniRef50_Q6HQR6: N-acetylmuramoyl-L-alanine amidase, N-terminus|unclassified	0.0823719100
+UniRef50_T2RTJ0	0.0823673590
+UniRef50_T2RTJ0|unclassified	0.0823673590
+UniRef50_UPI0004785436: acetolactate synthase	0.0823621546
+UniRef50_UPI0004785436: acetolactate synthase|unclassified	0.0823621546
+UniRef50_UPI0004408B7E: hypothetical protein FOMMEDRAFT_31982	0.0823543719
+UniRef50_UPI0004408B7E: hypothetical protein FOMMEDRAFT_31982|unclassified	0.0823543719
+UniRef50_W0Q7L8: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG	0.0823486893
+UniRef50_W0Q7L8: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG|unclassified	0.0823486893
+UniRef50_Q58787: (R)-citramalate synthase CimA	0.0823462674
+UniRef50_Q58787: (R)-citramalate synthase CimA|unclassified	0.0823462674
+UniRef50_UPI000380965E: hypothetical protein, partial	0.0823393020
+UniRef50_UPI000380965E: hypothetical protein, partial|unclassified	0.0823393020
+UniRef50_UPI0003B6935E: hypothetical protein, partial	0.0823361388
+UniRef50_UPI0003B6935E: hypothetical protein, partial|unclassified	0.0823361388
+UniRef50_UPI0003B42D39: serine/threonine phosphatase	0.0823235422
+UniRef50_UPI0003B42D39: serine/threonine phosphatase|unclassified	0.0823235422
+UniRef50_Q2STA4: Thymidylate kinase	0.0823214988
+UniRef50_Q2STA4: Thymidylate kinase|unclassified	0.0823214988
+UniRef50_Q1IP39: Phosphatidylserine decarboxylase proenzyme	0.0823149137
+UniRef50_Q1IP39: Phosphatidylserine decarboxylase proenzyme|unclassified	0.0823149137
+UniRef50_UPI000376BD2D: hypothetical protein	0.0823128700
+UniRef50_UPI000376BD2D: hypothetical protein|unclassified	0.0823128700
+UniRef50_R5N0R1	0.0823028728
+UniRef50_R5N0R1|unclassified	0.0823028728
+UniRef50_A3SQJ0	0.0823026763
+UniRef50_A3SQJ0|unclassified	0.0823026763
+UniRef50_UPI00035DA588: hypothetical protein	0.0823010684
+UniRef50_UPI00035DA588: hypothetical protein|unclassified	0.0823010684
+UniRef50_UPI00036F161E: hypothetical protein	0.0822997203
+UniRef50_UPI00036F161E: hypothetical protein|unclassified	0.0822997203
+UniRef50_G8S8P0	0.0822964240
+UniRef50_G8S8P0|unclassified	0.0822964240
+UniRef50_G8PHA4: Protein containing DUF1285	0.0822831906
+UniRef50_G8PHA4: Protein containing DUF1285|unclassified	0.0822831906
+UniRef50_UPI0003688013: hypothetical protein	0.0822826304
+UniRef50_UPI0003688013: hypothetical protein|unclassified	0.0822826304
+UniRef50_B2HNE5: Bifunctional protein PyrR	0.0822799256
+UniRef50_B2HNE5: Bifunctional protein PyrR|unclassified	0.0822799256
+UniRef50_J7M936: Competence protein	0.0822787372
+UniRef50_J7M936: Competence protein|unclassified	0.0822787372
+UniRef50_UPI00047B6839: hypothetical protein	0.0822768612
+UniRef50_UPI00047B6839: hypothetical protein|unclassified	0.0822768612
+UniRef50_UPI0003FC08D1: serine dehydratase	0.0822766564
+UniRef50_UPI0003FC08D1: serine dehydratase|unclassified	0.0822766564
+UniRef50_UPI000470E0C2: ABC transporter ATP-binding protein	0.0822729540
+UniRef50_UPI000470E0C2: ABC transporter ATP-binding protein|unclassified	0.0822729540
+UniRef50_UPI00030EAE4B: hypothetical protein	0.0822639728
+UniRef50_UPI00030EAE4B: hypothetical protein|unclassified	0.0822639728
+UniRef50_UPI0003B5AF07: 3-phosphoglycerate dehydrogenase	0.0822582602
+UniRef50_UPI0003B5AF07: 3-phosphoglycerate dehydrogenase|unclassified	0.0822582602
+UniRef50_Q1GF88: Exodeoxyribonuclease 7 large subunit	0.0822505793
+UniRef50_Q1GF88: Exodeoxyribonuclease 7 large subunit|unclassified	0.0822505793
+UniRef50_UPI00037A7EC7: hypothetical protein	0.0822429534
+UniRef50_UPI00037A7EC7: hypothetical protein|unclassified	0.0822429534
+UniRef50_H4CD63	0.0822394794
+UniRef50_H4CD63|unclassified	0.0822394794
+UniRef50_Q2L0A6: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase	0.0822319445
+UniRef50_Q2L0A6: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase|unclassified	0.0822319445
+UniRef50_C1C6G4: Phosphopentomutase	0.0822266726
+UniRef50_C1C6G4: Phosphopentomutase|unclassified	0.0822266726
+UniRef50_U6HSW1: Glutamate synthase	0.0822234823
+UniRef50_U6HSW1: Glutamate synthase|unclassified	0.0822234823
+UniRef50_UPI0001FE2E53: molybdenum cofactor synthesis 1 isoform 1	0.0822218438
+UniRef50_UPI0001FE2E53: molybdenum cofactor synthesis 1 isoform 1|unclassified	0.0822218438
+UniRef50_K7SL40	0.0822160979
+UniRef50_K7SL40|unclassified	0.0822160979
+UniRef50_M9RWN2: Chromosome-partitioning protein ParA	0.0822147108
+UniRef50_M9RWN2: Chromosome-partitioning protein ParA|unclassified	0.0822147108
+UniRef50_V4YR59	0.0822077089
+UniRef50_V4YR59|unclassified	0.0822077089
+UniRef50_UPI0002628AE2: signal peptidase I	0.0822056697
+UniRef50_UPI0002628AE2: signal peptidase I|unclassified	0.0822056697
+UniRef50_A0A022GPK4: Sodium:proton antiporter (Fragment)	0.0822028887
+UniRef50_A0A022GPK4: Sodium:proton antiporter (Fragment)|unclassified	0.0822028887
+UniRef50_Q03184: Succinyl-CoA ligase [GDP-forming] subunit beta, hydrogenosomal	0.0822011979
+UniRef50_Q03184: Succinyl-CoA ligase [GDP-forming] subunit beta, hydrogenosomal|unclassified	0.0822011979
+UniRef50_A0A052JJE9: PF04304 family protein	0.0821987564
+UniRef50_A0A052JJE9: PF04304 family protein|unclassified	0.0821987564
+UniRef50_UPI00036F91BE: MULTISPECIES: hypothetical protein	0.0821980833
+UniRef50_UPI00036F91BE: MULTISPECIES: hypothetical protein|unclassified	0.0821980833
+UniRef50_A0A059IK23	0.0821955642
+UniRef50_A0A059IK23|unclassified	0.0821955642
+UniRef50_UPI0003A1C5FC: pilus modification protein PilV	0.0821880144
+UniRef50_UPI0003A1C5FC: pilus modification protein PilV|unclassified	0.0821880144
+UniRef50_D5EDG7: Tripartite ATP-independent periplasmic transporter DctQ component	0.0821868593
+UniRef50_D5EDG7: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.0821868593
+UniRef50_P59421: Cysteine--tRNA ligase	0.0821864370
+UniRef50_P59421: Cysteine--tRNA ligase|unclassified	0.0821864370
+UniRef50_A7H6J5: Peptidyl-tRNA hydrolase	0.0821840599
+UniRef50_A7H6J5: Peptidyl-tRNA hydrolase|unclassified	0.0821840599
+UniRef50_UPI0003A2780B: hypothetical protein	0.0821838421
+UniRef50_UPI0003A2780B: hypothetical protein|unclassified	0.0821838421
+UniRef50_R6LP84	0.0821808043
+UniRef50_R6LP84|unclassified	0.0821808043
+UniRef50_UPI00036533DB: hypothetical protein	0.0821752898
+UniRef50_UPI00036533DB: hypothetical protein|unclassified	0.0821752898
+UniRef50_X2JTT1	0.0821747431
+UniRef50_X2JTT1|unclassified	0.0821747431
+UniRef50_UPI00037240B7: hypothetical protein	0.0821733532
+UniRef50_UPI00037240B7: hypothetical protein|unclassified	0.0821733532
+UniRef50_UPI00037D8096: hypothetical protein, partial	0.0821732669
+UniRef50_UPI00037D8096: hypothetical protein, partial|unclassified	0.0821732669
+UniRef50_Q0FCF2	0.0821707598
+UniRef50_Q0FCF2|unclassified	0.0821707598
+UniRef50_A9B1N9: Putative 3-methyladenine DNA glycosylase	0.0821702098
+UniRef50_A9B1N9: Putative 3-methyladenine DNA glycosylase|unclassified	0.0821702098
+UniRef50_Q9KNA8: Deoxyribodipyrimidine photo-lyase	0.0821620612
+UniRef50_Q9KNA8: Deoxyribodipyrimidine photo-lyase|unclassified	0.0821620612
+UniRef50_UPI0003C7E79E: phosphoprotein phosphatase	0.0821594253
+UniRef50_UPI0003C7E79E: phosphoprotein phosphatase|unclassified	0.0821594253
+UniRef50_M5DSR0	0.0821447107
+UniRef50_M5DSR0|unclassified	0.0821447107
+UniRef50_W1MXD2	0.0821414174
+UniRef50_W1MXD2|unclassified	0.0821414174
+UniRef50_Q58MX6: Phage tail fiber-like protein	0.0821395057
+UniRef50_Q58MX6: Phage tail fiber-like protein|unclassified	0.0821395057
+UniRef50_UPI0003637DBB: hypothetical protein	0.0821341576
+UniRef50_UPI0003637DBB: hypothetical protein|unclassified	0.0821341576
+UniRef50_Q2T0M6: Pyridoxine/pyridoxamine 5'-phosphate oxidase	0.0821275844
+UniRef50_Q2T0M6: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	0.0821275844
+UniRef50_UPI00037BD5E1: hypothetical protein	0.0821227184
+UniRef50_UPI00037BD5E1: hypothetical protein|unclassified	0.0821227184
+UniRef50_P43846: Phosphoribosylglycinamide formyltransferase	0.0821217381
+UniRef50_P43846: Phosphoribosylglycinamide formyltransferase|unclassified	0.0821217381
+UniRef50_M4G9Z0	0.0821201597
+UniRef50_M4G9Z0|unclassified	0.0821201597
+UniRef50_F7Y7B6: Thioesterase superfamily protein	0.0821134023
+UniRef50_F7Y7B6: Thioesterase superfamily protein|unclassified	0.0821134023
+UniRef50_R7PTH5: DNA integration/recombination/inversion protein	0.0821054186
+UniRef50_R7PTH5: DNA integration/recombination/inversion protein|unclassified	0.0821054186
+UniRef50_UPI0001DE7614: PREDICTED: neuronal pentraxin-1-like	0.0821039891
+UniRef50_UPI0001DE7614: PREDICTED: neuronal pentraxin-1-like|unclassified	0.0821039891
+UniRef50_UPI00035DDA89: hypothetical protein	0.0821024564
+UniRef50_UPI00035DDA89: hypothetical protein|unclassified	0.0821024564
+UniRef50_Q9KLP4: Glucose-1-phosphate adenylyltransferase 2	0.0820999798
+UniRef50_Q9KLP4: Glucose-1-phosphate adenylyltransferase 2|unclassified	0.0820999798
+UniRef50_U7V0M4	0.0820991796
+UniRef50_U7V0M4|unclassified	0.0820991796
+UniRef50_S0G986	0.0820931001
+UniRef50_S0G986|unclassified	0.0820931001
+UniRef50_Q1CBQ5	0.0820927643
+UniRef50_Q1CBQ5|unclassified	0.0820927643
+UniRef50_C4ZJP0	0.0820913955
+UniRef50_C4ZJP0|unclassified	0.0820913955
+UniRef50_UPI00031FF073: hypothetical protein	0.0820894948
+UniRef50_UPI00031FF073: hypothetical protein|unclassified	0.0820894948
+UniRef50_UPI00034AF933: glycogen debranching protein	0.0820852558
+UniRef50_UPI00034AF933: glycogen debranching protein|unclassified	0.0820852558
+UniRef50_R7CNE5: Lipoprotein	0.0820828226
+UniRef50_R7CNE5: Lipoprotein|unclassified	0.0820828226
+UniRef50_Q83GH8: Peptide deformylase	0.0820827590
+UniRef50_Q83GH8: Peptide deformylase|unclassified	0.0820827590
+UniRef50_UPI00037070E2: hypothetical protein	0.0820782288
+UniRef50_UPI00037070E2: hypothetical protein|unclassified	0.0820782288
+UniRef50_A0YEQ1	0.0820732605
+UniRef50_A0YEQ1|unclassified	0.0820732605
+UniRef50_UPI00047ADFE1: magnesium chelatase	0.0820728272
+UniRef50_UPI00047ADFE1: magnesium chelatase|unclassified	0.0820728272
+UniRef50_B9QS18: TRAP transporter solute receptor, TAXI family	0.0820716521
+UniRef50_B9QS18: TRAP transporter solute receptor, TAXI family|unclassified	0.0820716521
+UniRef50_Q0AP83: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.0820646061
+UniRef50_Q0AP83: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.0820646061
+UniRef50_UPI00047AD4CC: hypothetical protein	0.0820581987
+UniRef50_UPI00047AD4CC: hypothetical protein|unclassified	0.0820581987
+UniRef50_P62061: Arginine biosynthesis bifunctional protein ArgJ	0.0820580476
+UniRef50_P62061: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.0820580476
+UniRef50_E8RV81: Ppx/GppA phosphatase	0.0820524762
+UniRef50_E8RV81: Ppx/GppA phosphatase|unclassified	0.0820524762
+UniRef50_UPI00046D3100: hypothetical protein	0.0820481010
+UniRef50_UPI00046D3100: hypothetical protein|unclassified	0.0820481010
+UniRef50_R5D1H3: 3-dehydroquinate synthase	0.0820480414
+UniRef50_R5D1H3: 3-dehydroquinate synthase|unclassified	0.0820480414
+UniRef50_Q9KD39: Putative GTP cyclohydrolase 1 type 2	0.0820429552
+UniRef50_Q9KD39: Putative GTP cyclohydrolase 1 type 2|unclassified	0.0820429552
+UniRef50_W7BV51	0.0820306700
+UniRef50_W7BV51|unclassified	0.0820306700
+UniRef50_UPI000444942A: GIDA-domain-containing protein	0.0820250842
+UniRef50_UPI000444942A: GIDA-domain-containing protein|unclassified	0.0820250842
+UniRef50_C6PQ78	0.0820246334
+UniRef50_C6PQ78|unclassified	0.0820246334
+UniRef50_UPI00046AD6A9: hypothetical protein	0.0820202765
+UniRef50_UPI00046AD6A9: hypothetical protein|unclassified	0.0820202765
+UniRef50_UPI0003B33CF3: peptidase S49	0.0820176785
+UniRef50_UPI0003B33CF3: peptidase S49|unclassified	0.0820176785
+UniRef50_B2IL81: ParB domain protein nuclease	0.0820174425
+UniRef50_B2IL81: ParB domain protein nuclease|unclassified	0.0820174425
+UniRef50_Q8YJ04: Thiamine import ATP-binding protein ThiQ	0.0820130144
+UniRef50_Q8YJ04: Thiamine import ATP-binding protein ThiQ|unclassified	0.0820130144
+UniRef50_D9Q0N2: Membrane protein	0.0820044841
+UniRef50_D9Q0N2: Membrane protein|unclassified	0.0820044841
+UniRef50_UPI00047AA68A: protein phosphatase	0.0819983021
+UniRef50_UPI00047AA68A: protein phosphatase|unclassified	0.0819983021
+UniRef50_Q832G5: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase 2	0.0819930072
+UniRef50_Q832G5: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase 2|unclassified	0.0819930072
+UniRef50_Q1YFW1	0.0819915326
+UniRef50_Q1YFW1|unclassified	0.0819915326
+UniRef50_UPI00037CFC12: hypothetical protein	0.0819892194
+UniRef50_UPI00037CFC12: hypothetical protein|unclassified	0.0819892194
+UniRef50_B1HUU8: Glucosamine-6-phosphate deaminase	0.0819831632
+UniRef50_B1HUU8: Glucosamine-6-phosphate deaminase|unclassified	0.0819831632
+UniRef50_UPI0003B3640D: transcriptional regulator	0.0819804571
+UniRef50_UPI0003B3640D: transcriptional regulator|unclassified	0.0819804571
+UniRef50_Q9ZDI2: Protoheme IX farnesyltransferase	0.0819796963
+UniRef50_Q9ZDI2: Protoheme IX farnesyltransferase|unclassified	0.0819796963
+UniRef50_UPI00037B953F: hypothetical protein	0.0819748830
+UniRef50_UPI00037B953F: hypothetical protein|unclassified	0.0819748830
+UniRef50_UPI00035E82DA: hypothetical protein	0.0819701918
+UniRef50_UPI00035E82DA: hypothetical protein|unclassified	0.0819701918
+UniRef50_A0A038GDR4: NLP/P60	0.0819696207
+UniRef50_A0A038GDR4: NLP/P60|unclassified	0.0819696207
+UniRef50_P9WNP6: 3-hydroxybutyryl-CoA dehydrogenase	0.0819666697
+UniRef50_P9WNP6: 3-hydroxybutyryl-CoA dehydrogenase|unclassified	0.0819666697
+UniRef50_C7RNM6: Integral membrane protein	0.0819627746
+UniRef50_C7RNM6: Integral membrane protein|unclassified	0.0819627746
+UniRef50_UPI00047C2817: hypothetical protein	0.0819590182
+UniRef50_UPI00047C2817: hypothetical protein|unclassified	0.0819590182
+UniRef50_U4WJ23: Lipoprotein	0.0819547618
+UniRef50_U4WJ23: Lipoprotein|unclassified	0.0819547618
+UniRef50_UPI000473BBDD: hypothetical protein	0.0819500013
+UniRef50_UPI000473BBDD: hypothetical protein|unclassified	0.0819500013
+UniRef50_Q0FAL5	0.0819471634
+UniRef50_Q0FAL5|unclassified	0.0819471634
+UniRef50_UPI00032913CB	0.0819340798
+UniRef50_UPI00032913CB|unclassified	0.0819340798
+UniRef50_UPI0004728288: hypothetical protein	0.0819336897
+UniRef50_UPI0004728288: hypothetical protein|unclassified	0.0819336897
+UniRef50_UPI0003657BBD: hypothetical protein	0.0819334054
+UniRef50_UPI0003657BBD: hypothetical protein|unclassified	0.0819334054
+UniRef50_C6XPE3	0.0819215413
+UniRef50_C6XPE3|unclassified	0.0819215413
+UniRef50_D7AA54	0.0819187640
+UniRef50_D7AA54|unclassified	0.0819187640
+UniRef50_Q8MIF7: Phosphoglycerate kinase 2	0.0819104248
+UniRef50_Q8MIF7: Phosphoglycerate kinase 2|unclassified	0.0819104248
+UniRef50_UPI0004725451: hypothetical protein	0.0819102366
+UniRef50_UPI0004725451: hypothetical protein|unclassified	0.0819102366
+UniRef50_Q6CS32: KLLA0D04378p	0.0819071005
+UniRef50_Q6CS32: KLLA0D04378p|unclassified	0.0819071005
+UniRef50_UPI000466C952: MULTISPECIES: formate transporter	0.0819042169
+UniRef50_UPI000466C952: MULTISPECIES: formate transporter|unclassified	0.0819042169
+UniRef50_W9GTQ7	0.0818987052
+UniRef50_W9GTQ7|unclassified	0.0818987052
+UniRef50_UPI0002F79887: hypothetical protein	0.0818939184
+UniRef50_UPI0002F79887: hypothetical protein|unclassified	0.0818939184
+UniRef50_UPI000363FFD6: hypothetical protein	0.0818917462
+UniRef50_UPI000363FFD6: hypothetical protein|unclassified	0.0818917462
+UniRef50_UPI000379A8C4: hypothetical protein	0.0818909373
+UniRef50_UPI000379A8C4: hypothetical protein|unclassified	0.0818909373
+UniRef50_UPI00029A9AF2: hypothetical protein	0.0818893260
+UniRef50_UPI00029A9AF2: hypothetical protein|unclassified	0.0818893260
+UniRef50_U4R1V0	0.0818841887
+UniRef50_U4R1V0|unclassified	0.0818841887
+UniRef50_UPI000376748E: hypothetical protein	0.0818838411
+UniRef50_UPI000376748E: hypothetical protein|unclassified	0.0818838411
+UniRef50_G8ART4	0.0818837853
+UniRef50_G8ART4|unclassified	0.0818837853
+UniRef50_UPI0003B4DA5F: membrane protein	0.0818832211
+UniRef50_UPI0003B4DA5F: membrane protein|unclassified	0.0818832211
+UniRef50_UPI000471B278: MFS transporter	0.0818819614
+UniRef50_UPI000471B278: MFS transporter|unclassified	0.0818819614
+UniRef50_B6ITE8: Membrane protein, putative	0.0818803790
+UniRef50_B6ITE8: Membrane protein, putative|unclassified	0.0818803790
+UniRef50_UPI00047B8C28: type III secretion system protein	0.0818734068
+UniRef50_UPI00047B8C28: type III secretion system protein|unclassified	0.0818734068
+UniRef50_D9VUJ1: Rim protein (Fragment)	0.0818719355
+UniRef50_D9VUJ1: Rim protein (Fragment)|unclassified	0.0818719355
+UniRef50_UPI0003790C42: amino acid permease	0.0818692552
+UniRef50_UPI0003790C42: amino acid permease|unclassified	0.0818692552
+UniRef50_Q3Z731: Arginine biosynthesis bifunctional protein ArgJ	0.0818679358
+UniRef50_Q3Z731: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.0818679358
+UniRef50_UPI00036C5BBF: heme ABC transporter ATP-binding protein, partial	0.0818646359
+UniRef50_UPI00036C5BBF: heme ABC transporter ATP-binding protein, partial|unclassified	0.0818646359
+UniRef50_D7GGC0	0.0818570158
+UniRef50_D7GGC0|unclassified	0.0818570158
+UniRef50_E8XQP7	0.0818558601
+UniRef50_E8XQP7|unclassified	0.0818558601
+UniRef50_H5V0P9	0.0818483183
+UniRef50_H5V0P9|unclassified	0.0818483183
+UniRef50_UPI00036E82C7: hypothetical protein	0.0818454070
+UniRef50_UPI00036E82C7: hypothetical protein|unclassified	0.0818454070
+UniRef50_UPI0003B5A8FF: amine oxidase	0.0818376225
+UniRef50_UPI0003B5A8FF: amine oxidase|unclassified	0.0818376225
+UniRef50_UPI0003625235: hypothetical protein	0.0818334346
+UniRef50_UPI0003625235: hypothetical protein|unclassified	0.0818334346
+UniRef50_Q8EPN2: Valine--tRNA ligase	0.0818318390
+UniRef50_Q8EPN2: Valine--tRNA ligase|unclassified	0.0818318390
+UniRef50_UPI000468DBEE: 50S ribosomal protein L25	0.0818282346
+UniRef50_UPI000468DBEE: 50S ribosomal protein L25|unclassified	0.0818282346
+UniRef50_UPI000345527C: hypothetical protein	0.0818179190
+UniRef50_UPI000345527C: hypothetical protein|unclassified	0.0818179190
+UniRef50_UPI00037E6D5D: hypothetical protein	0.0818155354
+UniRef50_UPI00037E6D5D: hypothetical protein|unclassified	0.0818155354
+UniRef50_UPI00044080CB: GroEL apical domain-like protein, partial	0.0818116337
+UniRef50_UPI00044080CB: GroEL apical domain-like protein, partial|unclassified	0.0818116337
+UniRef50_Q9CNP9: Thiamine import ATP-binding protein ThiQ	0.0818070907
+UniRef50_Q9CNP9: Thiamine import ATP-binding protein ThiQ|unclassified	0.0818070907
+UniRef50_UPI0003B3FD68: malonic semialdehyde reductase	0.0818057487
+UniRef50_UPI0003B3FD68: malonic semialdehyde reductase|unclassified	0.0818057487
+UniRef50_Q15Q19: D-alanine--D-alanine ligase	0.0818040961
+UniRef50_Q15Q19: D-alanine--D-alanine ligase|unclassified	0.0818040961
+UniRef50_UPI0003B690F5: proline aminopeptidase P II	0.0818035208
+UniRef50_UPI0003B690F5: proline aminopeptidase P II|unclassified	0.0818035208
+UniRef50_R5PPR3: Relaxase/Mobilization nuclease domain protein	0.0817954161
+UniRef50_R5PPR3: Relaxase/Mobilization nuclease domain protein|unclassified	0.0817954161
+UniRef50_UPI000471875A: TetR family transcriptional regulator	0.0817942182
+UniRef50_UPI000471875A: TetR family transcriptional regulator|unclassified	0.0817942182
+UniRef50_UPI000361A039: hypothetical protein	0.0817879113
+UniRef50_UPI000361A039: hypothetical protein|unclassified	0.0817879113
+UniRef50_UPI00022CACFC: PREDICTED: dehydrogenase/reductase SDR family member 11-like	0.0817865432
+UniRef50_UPI00022CACFC: PREDICTED: dehydrogenase/reductase SDR family member 11-like|unclassified	0.0817865432
+UniRef50_UPI00037D03A2: hypothetical protein	0.0817855158
+UniRef50_UPI00037D03A2: hypothetical protein|unclassified	0.0817855158
+UniRef50_UPI000379457B: MULTISPECIES: hypothetical protein	0.0817830685
+UniRef50_UPI000379457B: MULTISPECIES: hypothetical protein|unclassified	0.0817830685
+UniRef50_UPI00047867AD: lipase	0.0817771099
+UniRef50_UPI00047867AD: lipase|unclassified	0.0817771099
+UniRef50_Q44058: Acyl-homoserine-lactone synthase	0.0817692584
+UniRef50_Q44058: Acyl-homoserine-lactone synthase|unclassified	0.0817692584
+UniRef50_UPI000225C0A8: porphobilinogen deaminase	0.0817629802
+UniRef50_UPI000225C0A8: porphobilinogen deaminase|unclassified	0.0817629802
+UniRef50_UPI00026291DF: excinuclease ABC subunit A	0.0817605455
+UniRef50_UPI00026291DF: excinuclease ABC subunit A|unclassified	0.0817605455
+UniRef50_Q604U3: Ribonuclease HII	0.0817513949
+UniRef50_Q604U3: Ribonuclease HII|unclassified	0.0817513949
+UniRef50_M1WGQ5: Related to large-conductance mechanosensitive channel	0.0817332715
+UniRef50_M1WGQ5: Related to large-conductance mechanosensitive channel|unclassified	0.0817332715
+UniRef50_P18579: UDP-N-acetylenolpyruvoylglucosamine reductase	0.0817264888
+UniRef50_P18579: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.0817264888
+UniRef50_R9PA29	0.0817258601
+UniRef50_R9PA29|unclassified	0.0817258601
+UniRef50_A3QD88: Leucyl/phenylalanyl-tRNA--protein transferase	0.0817240558
+UniRef50_A3QD88: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.0817240558
+UniRef50_UPI0003EF099D: cytochrome d terminal oxidase subunit 1	0.0817138987
+UniRef50_UPI0003EF099D: cytochrome d terminal oxidase subunit 1|unclassified	0.0817138987
+UniRef50_A0KLC8: Amino-acid acetyltransferase	0.0817090470
+UniRef50_A0KLC8: Amino-acid acetyltransferase|unclassified	0.0817090470
+UniRef50_UPI00036ACAB2: hypothetical protein	0.0817089765
+UniRef50_UPI00036ACAB2: hypothetical protein|unclassified	0.0817089765
+UniRef50_R0ZN74: Putative identified by MetaGeneAnnotator	0.0817061036
+UniRef50_R0ZN74: Putative identified by MetaGeneAnnotator|unclassified	0.0817061036
+UniRef50_UPI000363E2C4: hypothetical protein	0.0816941653
+UniRef50_UPI000363E2C4: hypothetical protein|unclassified	0.0816941653
+UniRef50_UPI0004704230: hypothetical protein, partial	0.0816897967
+UniRef50_UPI0004704230: hypothetical protein, partial|unclassified	0.0816897967
+UniRef50_UPI0002893E65: taurine dioxygenase, partial	0.0816842255
+UniRef50_UPI0002893E65: taurine dioxygenase, partial|unclassified	0.0816842255
+UniRef50_UPI0003714750: hypothetical protein	0.0816837254
+UniRef50_UPI0003714750: hypothetical protein|unclassified	0.0816837254
+UniRef50_J7QHN4: HupJ protein	0.0816830687
+UniRef50_J7QHN4: HupJ protein|unclassified	0.0816830687
+UniRef50_UPI0004728F8E: hypothetical protein	0.0816748675
+UniRef50_UPI0004728F8E: hypothetical protein|unclassified	0.0816748675
+UniRef50_UPI00046D3957: hypothetical protein	0.0816702196
+UniRef50_UPI00046D3957: hypothetical protein|unclassified	0.0816702196
+UniRef50_P54934: Biotin sulfoxide reductase	0.0816683422
+UniRef50_P54934: Biotin sulfoxide reductase|unclassified	0.0816683422
+UniRef50_G7Y0M2	0.0816671718
+UniRef50_G7Y0M2|unclassified	0.0816671718
+UniRef50_B3ETT4: Peptide deformylase	0.0816623350
+UniRef50_B3ETT4: Peptide deformylase|unclassified	0.0816623350
+UniRef50_P44573: Oligopeptidase A	0.0816592488
+UniRef50_P44573: Oligopeptidase A|unclassified	0.0816592488
+UniRef50_UPI00016C3CE2: DNA topoisomerase	0.0816454345
+UniRef50_UPI00016C3CE2: DNA topoisomerase|unclassified	0.0816454345
+UniRef50_C5AV20	0.0816448942
+UniRef50_C5AV20|unclassified	0.0816448942
+UniRef50_Q9ZS45: Spermidine synthase	0.0816426753
+UniRef50_Q9ZS45: Spermidine synthase|unclassified	0.0816426753
+UniRef50_UPI00046CA6A0: uroporphyrinogen decarboxylase	0.0816338589
+UniRef50_UPI00046CA6A0: uroporphyrinogen decarboxylase|unclassified	0.0816338589
+UniRef50_UPI000376CB6F: hypothetical protein	0.0816336882
+UniRef50_UPI000376CB6F: hypothetical protein|unclassified	0.0816336882
+UniRef50_UPI00036C1389: hypothetical protein	0.0816310354
+UniRef50_UPI00036C1389: hypothetical protein|unclassified	0.0816310354
+UniRef50_UPI0003B33D02: DNA-binding protein	0.0816303553
+UniRef50_UPI0003B33D02: DNA-binding protein|unclassified	0.0816303553
+UniRef50_R5SDL1: Anaerobic ribonucleoside-triphosphate reductase	0.0816274113
+UniRef50_R5SDL1: Anaerobic ribonucleoside-triphosphate reductase|unclassified	0.0816274113
+UniRef50_UPI00047A34A2: cyclic nucleotide-binding protein	0.0816271930
+UniRef50_UPI00047A34A2: cyclic nucleotide-binding protein|unclassified	0.0816271930
+UniRef50_UPI00046A7E19: membrane protein	0.0816264020
+UniRef50_UPI00046A7E19: membrane protein|unclassified	0.0816264020
+UniRef50_W0NH48	0.0816259666
+UniRef50_W0NH48|unclassified	0.0816259666
+UniRef50_A5V3U6: Trigger factor	0.0816207371
+UniRef50_A5V3U6: Trigger factor|unclassified	0.0816207371
+UniRef50_UPI0002B4C28A: PREDICTED: protein translocase subunit SECA1, chloroplastic-like, partial	0.0816074709
+UniRef50_UPI0002B4C28A: PREDICTED: protein translocase subunit SECA1, chloroplastic-like, partial|unclassified	0.0816074709
+UniRef50_UPI000463992E: DeoR faimly transcriptional regulator	0.0815983630
+UniRef50_UPI000463992E: DeoR faimly transcriptional regulator|unclassified	0.0815983630
+UniRef50_Z5XBU2: Potassium-transporting ATPase subunit B	0.0815967794
+UniRef50_Z5XBU2: Potassium-transporting ATPase subunit B|unclassified	0.0815967794
+UniRef50_UPI0001586938: hypothetical protein BC1G_15267	0.0815940945
+UniRef50_UPI0001586938: hypothetical protein BC1G_15267|unclassified	0.0815940945
+UniRef50_UPI0003B578C2: LuxR family transcriptional regulator	0.0815846489
+UniRef50_UPI0003B578C2: LuxR family transcriptional regulator|unclassified	0.0815846489
+UniRef50_W4QJJ2: TRAP-type C4-dicarboxylate transport system	0.0815812336
+UniRef50_W4QJJ2: TRAP-type C4-dicarboxylate transport system|unclassified	0.0815812336
+UniRef50_W0IDL6: Exopolyphosphatase	0.0815811428
+UniRef50_W0IDL6: Exopolyphosphatase|unclassified	0.0815811428
+UniRef50_D0VWY5: Glutathione amide reductase	0.0815801735
+UniRef50_D0VWY5: Glutathione amide reductase|unclassified	0.0815801735
+UniRef50_Q7UKJ7: Indole-3-glycerol phosphate synthase	0.0815762271
+UniRef50_Q7UKJ7: Indole-3-glycerol phosphate synthase|unclassified	0.0815762271
+UniRef50_S5Y7K7: Type VI secretion system protein ImpB	0.0815721450
+UniRef50_S5Y7K7: Type VI secretion system protein ImpB|unclassified	0.0815721450
+UniRef50_X1K0S8: Marine sediment metagenome DNA, contig: S03H2_S19611 (Fragment)	0.0815714426
+UniRef50_X1K0S8: Marine sediment metagenome DNA, contig: S03H2_S19611 (Fragment)|unclassified	0.0815714426
+UniRef50_H7LHM6: ABC-2 type transporter family protein	0.0815695498
+UniRef50_H7LHM6: ABC-2 type transporter family protein|unclassified	0.0815695498
+UniRef50_F7TB61	0.0815674751
+UniRef50_F7TB61|unclassified	0.0815674751
+UniRef50_Q93G48: Putative pyruvate ferredoxin oxidoreductase (Fragment)	0.0815644960
+UniRef50_Q93G48: Putative pyruvate ferredoxin oxidoreductase (Fragment)|unclassified	0.0815644960
+UniRef50_Q8L847: Biotin synthase Bio B	0.0815612653
+UniRef50_Q8L847: Biotin synthase Bio B|unclassified	0.0815612653
+UniRef50_UPI00046568BF: MULTISPECIES: hypothetical protein	0.0815483477
+UniRef50_UPI00046568BF: MULTISPECIES: hypothetical protein|unclassified	0.0815483477
+UniRef50_G2NQI9: SNARE associated Golgi protein-like protein	0.0815480921
+UniRef50_G2NQI9: SNARE associated Golgi protein-like protein|unclassified	0.0815480921
+UniRef50_Q8EWY8: ATP synthase subunit beta	0.0815442123
+UniRef50_Q8EWY8: ATP synthase subunit beta|unclassified	0.0815442123
+UniRef50_UPI0001AF2B76: hypothetical protein	0.0815433207
+UniRef50_UPI0001AF2B76: hypothetical protein|unclassified	0.0815433207
+UniRef50_UPI0003610F79: hypothetical protein, partial	0.0815411555
+UniRef50_UPI0003610F79: hypothetical protein, partial|unclassified	0.0815411555
+UniRef50_UPI0001B42655: peptidoglycan bound protein, partial	0.0815394447
+UniRef50_UPI0001B42655: peptidoglycan bound protein, partial|unclassified	0.0815394447
+UniRef50_A4XQW3: Type IV pilus modification protein PilV	0.0815328577
+UniRef50_A4XQW3: Type IV pilus modification protein PilV|unclassified	0.0815328577
+UniRef50_UPI0002DA96B0: hypothetical protein	0.0815249735
+UniRef50_UPI0002DA96B0: hypothetical protein|unclassified	0.0815249735
+UniRef50_R7CGD2: Phosphodiesterase family protein	0.0815247244
+UniRef50_R7CGD2: Phosphodiesterase family protein|unclassified	0.0815247244
+UniRef50_D4MBK3: TraX protein	0.0815236063
+UniRef50_D4MBK3: TraX protein|unclassified	0.0815236063
+UniRef50_UPI0002376C0A: cysteinyl-tRNA synthetase	0.0815184285
+UniRef50_UPI0002376C0A: cysteinyl-tRNA synthetase|unclassified	0.0815184285
+UniRef50_UPI00035D3D92: hypothetical protein	0.0815170122
+UniRef50_UPI00035D3D92: hypothetical protein|unclassified	0.0815170122
+UniRef50_Q1J391: Allantoinase	0.0815147076
+UniRef50_Q1J391: Allantoinase|unclassified	0.0815147076
+UniRef50_UPI0003682D6E: hypothetical protein	0.0815019654
+UniRef50_UPI0003682D6E: hypothetical protein|unclassified	0.0815019654
+UniRef50_UPI000376D0F3: hypothetical protein	0.0815001419
+UniRef50_UPI000376D0F3: hypothetical protein|unclassified	0.0815001419
+UniRef50_X1RD66: Marine sediment metagenome DNA, contig: S12H4_L05958 (Fragment)	0.0814961713
+UniRef50_X1RD66: Marine sediment metagenome DNA, contig: S12H4_L05958 (Fragment)|unclassified	0.0814961713
+UniRef50_UPI0004098CB0: sugar ABC transporter	0.0814926389
+UniRef50_UPI0004098CB0: sugar ABC transporter|unclassified	0.0814926389
+UniRef50_G6DGM2	0.0814919796
+UniRef50_G6DGM2|unclassified	0.0814919796
+UniRef50_A6W526: Beta-lactamase domain protein	0.0814903795
+UniRef50_A6W526: Beta-lactamase domain protein|unclassified	0.0814903795
+UniRef50_UPI0003B70A37: replication-associated protein RepA	0.0814860180
+UniRef50_UPI0003B70A37: replication-associated protein RepA|unclassified	0.0814860180
+UniRef50_U4TGN7: Flagellar hook capping domain protein	0.0814807974
+UniRef50_U4TGN7: Flagellar hook capping domain protein|unclassified	0.0814807974
+UniRef50_UPI000474B4B1: nitrate ABC transporter ATPase	0.0814761748
+UniRef50_UPI000474B4B1: nitrate ABC transporter ATPase|unclassified	0.0814761748
+UniRef50_UPI0003B55C41: RNA polymerase subunit sigma-24	0.0814721065
+UniRef50_UPI0003B55C41: RNA polymerase subunit sigma-24|unclassified	0.0814721065
+UniRef50_UPI00046D54F5: hypothetical protein	0.0814708709
+UniRef50_UPI00046D54F5: hypothetical protein|unclassified	0.0814708709
+UniRef50_A5UVV6: Phosphoheptose isomerase	0.0814685964
+UniRef50_A5UVV6: Phosphoheptose isomerase|unclassified	0.0814685964
+UniRef50_UPI000472B783: oxidoreductase	0.0814514473
+UniRef50_UPI000472B783: oxidoreductase|unclassified	0.0814514473
+UniRef50_UPI000363390E: hypothetical protein	0.0814448896
+UniRef50_UPI000363390E: hypothetical protein|unclassified	0.0814448896
+UniRef50_UPI00036A2268: hypothetical protein	0.0814444709
+UniRef50_UPI00036A2268: hypothetical protein|unclassified	0.0814444709
+UniRef50_C1FA47: Potassium-transporting ATPase A chain	0.0814423833
+UniRef50_C1FA47: Potassium-transporting ATPase A chain|unclassified	0.0814423833
+UniRef50_UPI00036C61DA: hypothetical protein	0.0814241702
+UniRef50_UPI00036C61DA: hypothetical protein|unclassified	0.0814241702
+UniRef50_UPI00046CFF91: NUDIX hydrolase	0.0814231376
+UniRef50_UPI00046CFF91: NUDIX hydrolase|unclassified	0.0814231376
+UniRef50_UPI0003F49312: hypothetical protein TREMEDRAFT_64268	0.0814223736
+UniRef50_UPI0003F49312: hypothetical protein TREMEDRAFT_64268|unclassified	0.0814223736
+UniRef50_UPI00036EBC3D: hypothetical protein	0.0814210947
+UniRef50_UPI00036EBC3D: hypothetical protein|unclassified	0.0814210947
+UniRef50_P65942: Bifunctional protein PyrR	0.0814119227
+UniRef50_P65942: Bifunctional protein PyrR|unclassified	0.0814119227
+UniRef50_UPI00037BB905: hypothetical protein	0.0814070549
+UniRef50_UPI00037BB905: hypothetical protein|unclassified	0.0814070549
+UniRef50_UPI0001BC965F: DNA repair protein RecN, partial	0.0813943795
+UniRef50_UPI0001BC965F: DNA repair protein RecN, partial|unclassified	0.0813943795
+UniRef50_UPI0003782C5A: hypothetical protein	0.0813900039
+UniRef50_UPI0003782C5A: hypothetical protein|unclassified	0.0813900039
+UniRef50_UPI000469CEB0: hypothetical protein	0.0813823877
+UniRef50_UPI000469CEB0: hypothetical protein|unclassified	0.0813823877
+UniRef50_B5YJT7: Phosphoheptose isomerase	0.0813789283
+UniRef50_B5YJT7: Phosphoheptose isomerase|unclassified	0.0813789283
+UniRef50_A3NXX0: Cytidylate kinase	0.0813757040
+UniRef50_A3NXX0: Cytidylate kinase|unclassified	0.0813757040
+UniRef50_UPI0002E3D76B: hypothetical protein	0.0813746656
+UniRef50_UPI0002E3D76B: hypothetical protein|unclassified	0.0813746656
+UniRef50_UPI000255D957: thioesterase	0.0813698087
+UniRef50_UPI000255D957: thioesterase|unclassified	0.0813698087
+UniRef50_I7E1B5: Phage tail protein I	0.0813676099
+UniRef50_I7E1B5: Phage tail protein I|unclassified	0.0813676099
+UniRef50_R4Y4M4: UlaF protein	0.0813634155
+UniRef50_R4Y4M4: UlaF protein|unclassified	0.0813634155
+UniRef50_UPI0003EE93DB: N-acetylneuraminate lyase	0.0813599787
+UniRef50_UPI0003EE93DB: N-acetylneuraminate lyase|unclassified	0.0813599787
+UniRef50_Q49112: Phosphate acetyltransferase	0.0813519851
+UniRef50_Q49112: Phosphate acetyltransferase|unclassified	0.0813519851
+UniRef50_A3K0M0: Lipoprotein, putative	0.0813484454
+UniRef50_A3K0M0: Lipoprotein, putative|unclassified	0.0813484454
+UniRef50_UPI0003B405D6: GTP-binding protein Der	0.0813440662
+UniRef50_UPI0003B405D6: GTP-binding protein Der|unclassified	0.0813440662
+UniRef50_F4N5E2	0.0813317209
+UniRef50_F4N5E2|unclassified	0.0813317209
+UniRef50_UPI000225F2F6: pyridoxine 5''''-phosphate synthase	0.0813313195
+UniRef50_UPI000225F2F6: pyridoxine 5''''-phosphate synthase|unclassified	0.0813313195
+UniRef50_A0RRS8: Integral membrane protein	0.0813286684
+UniRef50_A0RRS8: Integral membrane protein|unclassified	0.0813286684
+UniRef50_W4TYR9: Excinuclease	0.0813242908
+UniRef50_W4TYR9: Excinuclease|unclassified	0.0813242908
+UniRef50_Q8Y4A9: Release factor glutamine methyltransferase	0.0813238703
+UniRef50_Q8Y4A9: Release factor glutamine methyltransferase|unclassified	0.0813238703
+UniRef50_G9YY14	0.0813228483
+UniRef50_G9YY14|unclassified	0.0813228483
+UniRef50_G0N365	0.0813159871
+UniRef50_G0N365|unclassified	0.0813159871
+UniRef50_S5K777: Internalin	0.0813089211
+UniRef50_S5K777: Internalin|unclassified	0.0813089211
+UniRef50_Q9CUW3	0.0813069933
+UniRef50_Q9CUW3|unclassified	0.0813069933
+UniRef50_G7URL6: Integrase catalytic subunit	0.0813062466
+UniRef50_G7URL6: Integrase catalytic subunit|unclassified	0.0813062466
+UniRef50_UPI000372459C: hypothetical protein	0.0813045375
+UniRef50_UPI000372459C: hypothetical protein|unclassified	0.0813045375
+UniRef50_UPI0004729EE4: hypothetical protein	0.0813015485
+UniRef50_UPI0004729EE4: hypothetical protein|unclassified	0.0813015485
+UniRef50_UPI0003FA1CD0: leucyl-tRNA synthase	0.0812999727
+UniRef50_UPI0003FA1CD0: leucyl-tRNA synthase|unclassified	0.0812999727
+UniRef50_UPI0003B59F61: malonyl CoA-ACP transacylase	0.0812966218
+UniRef50_UPI0003B59F61: malonyl CoA-ACP transacylase|unclassified	0.0812966218
+UniRef50_W8QWF9: ATPase	0.0812914473
+UniRef50_W8QWF9: ATPase|unclassified	0.0812914473
+UniRef50_UPI00047054B0: hypothetical protein	0.0812909155
+UniRef50_UPI00047054B0: hypothetical protein|unclassified	0.0812909155
+UniRef50_UPI000364E469: hypothetical protein	0.0812883954
+UniRef50_UPI000364E469: hypothetical protein|unclassified	0.0812883954
+UniRef50_Q2YZH2: Predicted periplasmic or secreted lipoprotein	0.0812882721
+UniRef50_Q2YZH2: Predicted periplasmic or secreted lipoprotein|unclassified	0.0812882721
+UniRef50_Q89B37: DNA gyrase subunit B	0.0812869873
+UniRef50_Q89B37: DNA gyrase subunit B|unclassified	0.0812869873
+UniRef50_UPI00037F41D5: hypothetical protein	0.0812756197
+UniRef50_UPI00037F41D5: hypothetical protein|unclassified	0.0812756197
+UniRef50_C3ZJ72	0.0812730239
+UniRef50_C3ZJ72|unclassified	0.0812730239
+UniRef50_Q5L289: Foldase protein PrsA	0.0812707956
+UniRef50_Q5L289: Foldase protein PrsA|unclassified	0.0812707956
+UniRef50_T2SYZ3	0.0812687832
+UniRef50_T2SYZ3|unclassified	0.0812687832
+UniRef50_UPI0003B78574: hypothetical protein	0.0812673454
+UniRef50_UPI0003B78574: hypothetical protein|unclassified	0.0812673454
+UniRef50_F2TYJ6: Morn repeat protein	0.0812673108
+UniRef50_F2TYJ6: Morn repeat protein|unclassified	0.0812673108
+UniRef50_UPI0003799A2D: hypothetical protein	0.0812571500
+UniRef50_UPI0003799A2D: hypothetical protein|unclassified	0.0812571500
+UniRef50_UPI0003B31149: iron hydrogenase	0.0812506761
+UniRef50_UPI0003B31149: iron hydrogenase|unclassified	0.0812506761
+UniRef50_UPI00021917DE: phosphofructokinase	0.0812494254
+UniRef50_UPI00021917DE: phosphofructokinase|unclassified	0.0812494254
+UniRef50_G4Q4E3: HK97 family portal protein, putative	0.0812486110
+UniRef50_G4Q4E3: HK97 family portal protein, putative|unclassified	0.0812486110
+UniRef50_D3SFI2	0.0812444787
+UniRef50_D3SFI2|unclassified	0.0812444787
+UniRef50_UPI0003B5A0DC: hypothetical protein	0.0812425418
+UniRef50_UPI0003B5A0DC: hypothetical protein|unclassified	0.0812425418
+UniRef50_I3BQ64	0.0812344035
+UniRef50_I3BQ64|unclassified	0.0812344035
+UniRef50_UPI00029B3D72: methionine ABC transporter ATP-binding protein	0.0812338379
+UniRef50_UPI00029B3D72: methionine ABC transporter ATP-binding protein|unclassified	0.0812338379
+UniRef50_UPI000380D55B: hypothetical protein	0.0812310452
+UniRef50_UPI000380D55B: hypothetical protein|unclassified	0.0812310452
+UniRef50_Q8RE31: Adenylate kinase	0.0812204283
+UniRef50_Q8RE31: Adenylate kinase|unclassified	0.0812204283
+UniRef50_Q5Z022	0.0812196172
+UniRef50_Q5Z022|unclassified	0.0812196172
+UniRef50_A3DDS7: Indole-3-glycerol phosphate synthase	0.0812179128
+UniRef50_A3DDS7: Indole-3-glycerol phosphate synthase|unclassified	0.0812179128
+UniRef50_UPI00036E1CC1: hypothetical protein	0.0812074384
+UniRef50_UPI00036E1CC1: hypothetical protein|unclassified	0.0812074384
+UniRef50_UPI0004251472: hypothetical protein	0.0812065072
+UniRef50_UPI0004251472: hypothetical protein|unclassified	0.0812065072
+UniRef50_X0U0K9: Marine sediment metagenome DNA, contig: S01H1_L09202 (Fragment)	0.0811972552
+UniRef50_X0U0K9: Marine sediment metagenome DNA, contig: S01H1_L09202 (Fragment)|unclassified	0.0811972552
+UniRef50_UPI0003B6F217: flagellar basal body P-ring protein	0.0811874997
+UniRef50_UPI0003B6F217: flagellar basal body P-ring protein|unclassified	0.0811874997
+UniRef50_UPI0003650DAD: hypothetical protein	0.0811858936
+UniRef50_UPI0003650DAD: hypothetical protein|unclassified	0.0811858936
+UniRef50_UPI0003699E79: hypothetical protein	0.0811739625
+UniRef50_UPI0003699E79: hypothetical protein|unclassified	0.0811739625
+UniRef50_UPI00047AD330: hypothetical protein	0.0811721629
+UniRef50_UPI00047AD330: hypothetical protein|unclassified	0.0811721629
+UniRef50_UPI00046D2EA7: PREDICTED: glucose dehydrogenase [FAD, quinone]-like	0.0811694805
+UniRef50_UPI00046D2EA7: PREDICTED: glucose dehydrogenase [FAD, quinone]-like|unclassified	0.0811694805
+UniRef50_UPI000410CB72: hypothetical protein	0.0811649855
+UniRef50_UPI000410CB72: hypothetical protein|unclassified	0.0811649855
+UniRef50_UPI0003669C28: hypothetical protein, partial	0.0811617333
+UniRef50_UPI0003669C28: hypothetical protein, partial|unclassified	0.0811617333
+UniRef50_UPI000374B64C: hypothetical protein	0.0811585796
+UniRef50_UPI000374B64C: hypothetical protein|unclassified	0.0811585796
+UniRef50_UPI0003607FED: hypothetical protein	0.0811574369
+UniRef50_UPI0003607FED: hypothetical protein|unclassified	0.0811574369
+UniRef50_A9V9H0: Predicted protein	0.0811547646
+UniRef50_A9V9H0: Predicted protein|unclassified	0.0811547646
+UniRef50_UPI00045E0C55: PREDICTED: ribosome-releasing factor 2, mitochondrial isoform X3	0.0811342522
+UniRef50_UPI00045E0C55: PREDICTED: ribosome-releasing factor 2, mitochondrial isoform X3|unclassified	0.0811342522
+UniRef50_P53434: Putative GTP cyclohydrolase 1 type 2	0.0811278670
+UniRef50_P53434: Putative GTP cyclohydrolase 1 type 2|unclassified	0.0811278670
+UniRef50_Q7VI92: Methionine import ATP-binding protein MetN	0.0811239886
+UniRef50_Q7VI92: Methionine import ATP-binding protein MetN|unclassified	0.0811239886
+UniRef50_UPI0003B5520E: CoA transferase	0.0811223239
+UniRef50_UPI0003B5520E: CoA transferase|unclassified	0.0811223239
+UniRef50_UPI0003FC0BCA: hypothetical protein	0.0811207646
+UniRef50_UPI0003FC0BCA: hypothetical protein|unclassified	0.0811207646
+UniRef50_UPI00037F8668: hypothetical protein, partial	0.0811108415
+UniRef50_UPI00037F8668: hypothetical protein, partial|unclassified	0.0811108415
+UniRef50_UPI0004560745: hypothetical protein PFL1_05587	0.0811100313
+UniRef50_UPI0004560745: hypothetical protein PFL1_05587|unclassified	0.0811100313
+UniRef50_UPI0003B62712: dihydropteroate synthase	0.0811093752
+UniRef50_UPI0003B62712: dihydropteroate synthase|unclassified	0.0811093752
+UniRef50_UPI0004446FB6	0.0810981380
+UniRef50_UPI0004446FB6|unclassified	0.0810981380
+UniRef50_M1Q6R0	0.0810924404
+UniRef50_M1Q6R0|unclassified	0.0810924404
+UniRef50_UPI0003788210: hypothetical protein	0.0810871014
+UniRef50_UPI0003788210: hypothetical protein|unclassified	0.0810871014
+UniRef50_UPI0003826168: hypothetical protein	0.0810858569
+UniRef50_UPI0003826168: hypothetical protein|unclassified	0.0810858569
+UniRef50_Q74AX0: Thymidylate kinase	0.0810796433
+UniRef50_Q74AX0: Thymidylate kinase|unclassified	0.0810796433
+UniRef50_F0ZYS7	0.0810786935
+UniRef50_F0ZYS7|unclassified	0.0810786935
+UniRef50_UPI000299F1E4: phosphatase/phosphohexomutase-like protein	0.0810786311
+UniRef50_UPI000299F1E4: phosphatase/phosphohexomutase-like protein|unclassified	0.0810786311
+UniRef50_UPI000378ECE8: hypothetical protein	0.0810743804
+UniRef50_UPI000378ECE8: hypothetical protein|unclassified	0.0810743804
+UniRef50_Q8ZEG8: Tryptophan biosynthesis protein TrpCF	0.0810732091
+UniRef50_Q8ZEG8: Tryptophan biosynthesis protein TrpCF|unclassified	0.0810732091
+UniRef50_Q8RII8: Cytidylate kinase	0.0810724670
+UniRef50_Q8RII8: Cytidylate kinase|unclassified	0.0810724670
+UniRef50_UPI000441FCBD: PREDICTED: basic proline-rich protein-like	0.0810718345
+UniRef50_UPI000441FCBD: PREDICTED: basic proline-rich protein-like|unclassified	0.0810718345
+UniRef50_C1D5U2: YlbF	0.0810718086
+UniRef50_C1D5U2: YlbF|unclassified	0.0810718086
+UniRef50_UPI000370C58B: hypothetical protein	0.0810717229
+UniRef50_UPI000370C58B: hypothetical protein|unclassified	0.0810717229
+UniRef50_UPI0003829CBF: hypothetical protein	0.0810716580
+UniRef50_UPI0003829CBF: hypothetical protein|unclassified	0.0810716580
+UniRef50_X8FJS6	0.0810693257
+UniRef50_X8FJS6|unclassified	0.0810693257
+UniRef50_O83940: Ribosomal RNA small subunit methyltransferase I	0.0810662664
+UniRef50_O83940: Ribosomal RNA small subunit methyltransferase I|unclassified	0.0810662664
+UniRef50_UPI000366AA77: hypothetical protein	0.0810658959
+UniRef50_UPI000366AA77: hypothetical protein|unclassified	0.0810658959
+UniRef50_B9EAE1	0.0810654542
+UniRef50_B9EAE1|unclassified	0.0810654542
+UniRef50_UPI0004114BA8: oxidoreductase	0.0810545941
+UniRef50_UPI0004114BA8: oxidoreductase|unclassified	0.0810545941
+UniRef50_Q38YD6	0.0810443132
+UniRef50_Q38YD6|unclassified	0.0810443132
+UniRef50_D8TPK5	0.0810378729
+UniRef50_D8TPK5|unclassified	0.0810378729
+UniRef50_UPI00042AFC27: D-aminoacid aminotransferase-like PLP-dependent enzymes superfamily protein isoform 3	0.0810244250
+UniRef50_UPI00042AFC27: D-aminoacid aminotransferase-like PLP-dependent enzymes superfamily protein isoform 3|unclassified	0.0810244250
+UniRef50_UPI000362FC7E: hypothetical protein	0.0810060545
+UniRef50_UPI000362FC7E: hypothetical protein|unclassified	0.0810060545
+UniRef50_UPI00039D7F41: inositol-1-monophosphatase	0.0810026831
+UniRef50_UPI00039D7F41: inositol-1-monophosphatase|unclassified	0.0810026831
+UniRef50_O83612: Isoprenyl transferase	0.0810010755
+UniRef50_O83612: Isoprenyl transferase|unclassified	0.0810010755
+UniRef50_A6T8R2	0.0809982304
+UniRef50_A6T8R2|unclassified	0.0809982304
+UniRef50_A5MYV7: Predicted transporter protein	0.0809968258
+UniRef50_A5MYV7: Predicted transporter protein|unclassified	0.0809968258
+UniRef50_UPI00026C6979: ABC-type enterochelin transporter permease, partial	0.0809963442
+UniRef50_UPI00026C6979: ABC-type enterochelin transporter permease, partial|unclassified	0.0809963442
+UniRef50_J6UB94: Diguanylate phosphodiesterase	0.0809926705
+UniRef50_J6UB94: Diguanylate phosphodiesterase|unclassified	0.0809926705
+UniRef50_UPI00036081F8: hypothetical protein	0.0809830300
+UniRef50_UPI00036081F8: hypothetical protein|unclassified	0.0809830300
+UniRef50_UPI000299FAD2: RNA polymerase ECF-subfamily sigma factor	0.0809813610
+UniRef50_UPI000299FAD2: RNA polymerase ECF-subfamily sigma factor|unclassified	0.0809813610
+UniRef50_UPI00036D5F7B: hypothetical protein	0.0809778627
+UniRef50_UPI00036D5F7B: hypothetical protein|unclassified	0.0809778627
+UniRef50_K2E0N8: Heat shock protein HSP20	0.0809735226
+UniRef50_K2E0N8: Heat shock protein HSP20|unclassified	0.0809735226
+UniRef50_UPI00035F3388: hypothetical protein	0.0809729054
+UniRef50_UPI00035F3388: hypothetical protein|unclassified	0.0809729054
+UniRef50_UPI000366DBFC: hypothetical protein	0.0809719119
+UniRef50_UPI000366DBFC: hypothetical protein|unclassified	0.0809719119
+UniRef50_UPI0004257A3B: hypothetical protein	0.0809696613
+UniRef50_UPI0004257A3B: hypothetical protein|unclassified	0.0809696613
+UniRef50_UPI00039FAB17: hypothetical protein	0.0809651685
+UniRef50_UPI00039FAB17: hypothetical protein|unclassified	0.0809651685
+UniRef50_H3NBB9	0.0809641442
+UniRef50_H3NBB9|unclassified	0.0809641442
+UniRef50_R6I3H2: Basal-body rod modification protein FlgD	0.0809629573
+UniRef50_R6I3H2: Basal-body rod modification protein FlgD|unclassified	0.0809629573
+UniRef50_F0ZSI9	0.0809590535
+UniRef50_F0ZSI9|unclassified	0.0809590535
+UniRef50_UPI000465D9CA: hypothetical protein	0.0809518496
+UniRef50_UPI000465D9CA: hypothetical protein|unclassified	0.0809518496
+UniRef50_Q8CWG1: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit	0.0809517592
+UniRef50_Q8CWG1: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit|unclassified	0.0809517592
+UniRef50_UPI00037A8ABB: hypothetical protein	0.0809474357
+UniRef50_UPI00037A8ABB: hypothetical protein|unclassified	0.0809474357
+UniRef50_UPI000473B1CD: hypothetical protein, partial	0.0809469661
+UniRef50_UPI000473B1CD: hypothetical protein, partial|unclassified	0.0809469661
+UniRef50_UPI0004735C98: hypothetical protein, partial	0.0809386325
+UniRef50_UPI0004735C98: hypothetical protein, partial|unclassified	0.0809386325
+UniRef50_F5Z552	0.0809279981
+UniRef50_F5Z552|unclassified	0.0809279981
+UniRef50_UPI000262869E: acetyl-CoA acetyltransferase	0.0809231327
+UniRef50_UPI000262869E: acetyl-CoA acetyltransferase|unclassified	0.0809231327
+UniRef50_UPI000249132C: farnesyl-diphosphate synthase	0.0809222604
+UniRef50_UPI000249132C: farnesyl-diphosphate synthase|unclassified	0.0809222604
+UniRef50_UPI000360E17F: hypothetical protein	0.0809206963
+UniRef50_UPI000360E17F: hypothetical protein|unclassified	0.0809206963
+UniRef50_A9EEK3	0.0809151505
+UniRef50_A9EEK3|unclassified	0.0809151505
+UniRef50_UPI00047E88E1: peptide ABC transporter permease	0.0809138115
+UniRef50_UPI00047E88E1: peptide ABC transporter permease|unclassified	0.0809138115
+UniRef50_UPI000328C1B9: PREDICTED: kelch-like protein 26-like, partial	0.0809005662
+UniRef50_UPI000328C1B9: PREDICTED: kelch-like protein 26-like, partial|unclassified	0.0809005662
+UniRef50_UPI00046F982B: hypothetical protein	0.0808998252
+UniRef50_UPI00046F982B: hypothetical protein|unclassified	0.0808998252
+UniRef50_H6P4U3	0.0808998186
+UniRef50_H6P4U3|unclassified	0.0808998186
+UniRef50_N4BQK5: Putative sensor dcuS domain protein	0.0808980844
+UniRef50_N4BQK5: Putative sensor dcuS domain protein|unclassified	0.0808980844
+UniRef50_UPI00047AD731: preprotein translocase subunit TatA	0.0808915619
+UniRef50_UPI00047AD731: preprotein translocase subunit TatA|unclassified	0.0808915619
+UniRef50_U6LV85	0.0808890441
+UniRef50_U6LV85|unclassified	0.0808890441
+UniRef50_UPI00046594EF: hypothetical protein	0.0808889119
+UniRef50_UPI00046594EF: hypothetical protein|unclassified	0.0808889119
+UniRef50_UPI00037D4FBD: hypothetical protein, partial	0.0808833551
+UniRef50_UPI00037D4FBD: hypothetical protein, partial|unclassified	0.0808833551
+UniRef50_R4W833	0.0808821609
+UniRef50_R4W833|unclassified	0.0808821609
+UniRef50_UPI00035D977C: hypothetical protein	0.0808808860
+UniRef50_UPI00035D977C: hypothetical protein|unclassified	0.0808808860
+UniRef50_B0KJ12: KAP P-loop domain protein	0.0808788078
+UniRef50_B0KJ12: KAP P-loop domain protein|unclassified	0.0808788078
+UniRef50_UPI0002628E39: His/Glu/Gln/Arg/opine amino acid ABC transporter permease	0.0808783056
+UniRef50_UPI0002628E39: His/Glu/Gln/Arg/opine amino acid ABC transporter permease|unclassified	0.0808783056
+UniRef50_B1YLP0: Octanoyltransferase LipM	0.0808776110
+UniRef50_B1YLP0: Octanoyltransferase LipM|unclassified	0.0808776110
+UniRef50_A3QC26	0.0808716283
+UniRef50_A3QC26|unclassified	0.0808716283
+UniRef50_Q3JIW4	0.0808703470
+UniRef50_Q3JIW4|unclassified	0.0808703470
+UniRef50_V5ES07	0.0808613144
+UniRef50_V5ES07|unclassified	0.0808613144
+UniRef50_UPI000470CB2F: D-alanyl-D-alanine carboxypeptidase	0.0808580169
+UniRef50_UPI000470CB2F: D-alanyl-D-alanine carboxypeptidase|unclassified	0.0808580169
+UniRef50_Q2JXY9: Argininosuccinate lyase	0.0808569395
+UniRef50_Q2JXY9: Argininosuccinate lyase|unclassified	0.0808569395
+UniRef50_UPI00046E5552: HAD family hydrolase	0.0808525788
+UniRef50_UPI00046E5552: HAD family hydrolase|unclassified	0.0808525788
+UniRef50_R6HUH5	0.0808489732
+UniRef50_R6HUH5|unclassified	0.0808489732
+UniRef50_UPI0004732460: hypothetical protein, partial	0.0808457552
+UniRef50_UPI0004732460: hypothetical protein, partial|unclassified	0.0808457552
+UniRef50_F9ZU96: Transposase IS66	0.0808410935
+UniRef50_F9ZU96: Transposase IS66|unclassified	0.0808410935
+UniRef50_K2GKP0	0.0808394089
+UniRef50_K2GKP0|unclassified	0.0808394089
+UniRef50_UPI000477C548: alcohol dehydrogenase	0.0808301673
+UniRef50_UPI000477C548: alcohol dehydrogenase|unclassified	0.0808301673
+UniRef50_B5JWQ5	0.0808255121
+UniRef50_B5JWQ5|unclassified	0.0808255121
+UniRef50_UPI00036BF69E: hypothetical protein, partial	0.0808225920
+UniRef50_UPI00036BF69E: hypothetical protein, partial|unclassified	0.0808225920
+UniRef50_UPI0003651F32: hypothetical protein	0.0808197022
+UniRef50_UPI0003651F32: hypothetical protein|unclassified	0.0808197022
+UniRef50_UPI000466F502: nitrate reductase	0.0808154317
+UniRef50_UPI000466F502: nitrate reductase|unclassified	0.0808154317
+UniRef50_Q91ZA3: Propionyl-CoA carboxylase alpha chain, mitochondrial	0.0808133778
+UniRef50_Q91ZA3: Propionyl-CoA carboxylase alpha chain, mitochondrial|unclassified	0.0808133778
+UniRef50_UPI00036292F7: hypothetical protein	0.0808095898
+UniRef50_UPI00036292F7: hypothetical protein|unclassified	0.0808095898
+UniRef50_UPI00026CC8EA: hypothetical protein	0.0807965565
+UniRef50_UPI00026CC8EA: hypothetical protein|unclassified	0.0807965565
+UniRef50_N1SMD8	0.0807961920
+UniRef50_N1SMD8|unclassified	0.0807961920
+UniRef50_B8GPU7: Fimbrial assembly family protein	0.0807944725
+UniRef50_B8GPU7: Fimbrial assembly family protein|unclassified	0.0807944725
+UniRef50_UPI000347BF13: hypothetical protein	0.0807930554
+UniRef50_UPI000347BF13: hypothetical protein|unclassified	0.0807930554
+UniRef50_P95231: Serine acetyltransferase	0.0807921254
+UniRef50_P95231: Serine acetyltransferase|unclassified	0.0807921254
+UniRef50_L1J330	0.0807919149
+UniRef50_L1J330|unclassified	0.0807919149
+UniRef50_UPI00035E9AAB: tail protein	0.0807903232
+UniRef50_UPI00035E9AAB: tail protein|unclassified	0.0807903232
+UniRef50_UPI0004709220: hypothetical protein	0.0807861281
+UniRef50_UPI0004709220: hypothetical protein|unclassified	0.0807861281
+UniRef50_UPI0003959F92: ABC transporter permease	0.0807835388
+UniRef50_UPI0003959F92: ABC transporter permease|unclassified	0.0807835388
+UniRef50_U2N0S0	0.0807784567
+UniRef50_U2N0S0|unclassified	0.0807784567
+UniRef50_UPI00037505DF: hypothetical protein	0.0807727391
+UniRef50_UPI00037505DF: hypothetical protein|unclassified	0.0807727391
+UniRef50_UPI00040E924C: hypothetical protein	0.0807662469
+UniRef50_UPI00040E924C: hypothetical protein|unclassified	0.0807662469
+UniRef50_UPI00030BBFF8: hypothetical protein	0.0807659718
+UniRef50_UPI00030BBFF8: hypothetical protein|unclassified	0.0807659718
+UniRef50_UPI000365871E: Clp protease	0.0807635679
+UniRef50_UPI000365871E: Clp protease|unclassified	0.0807635679
+UniRef50_W4K3H1	0.0807631539
+UniRef50_W4K3H1|unclassified	0.0807631539
+UniRef50_UPI000376986F: hypothetical protein	0.0807581628
+UniRef50_UPI000376986F: hypothetical protein|unclassified	0.0807581628
+UniRef50_UPI00037A7671: hypothetical protein	0.0807498402
+UniRef50_UPI00037A7671: hypothetical protein|unclassified	0.0807498402
+UniRef50_UPI00037FC5AF: hypothetical protein	0.0807420886
+UniRef50_UPI00037FC5AF: hypothetical protein|unclassified	0.0807420886
+UniRef50_A0A023XRX4	0.0807376713
+UniRef50_A0A023XRX4|unclassified	0.0807376713
+UniRef50_A5K0T6	0.0807369701
+UniRef50_A5K0T6|unclassified	0.0807369701
+UniRef50_F7CYV8	0.0807369651
+UniRef50_F7CYV8|unclassified	0.0807369651
+UniRef50_Q5FSJ7: Anhydro-N-acetylmuramic acid kinase	0.0807352830
+UniRef50_Q5FSJ7: Anhydro-N-acetylmuramic acid kinase|unclassified	0.0807352830
+UniRef50_UPI0003F15D37: PREDICTED: putative ribosomal RNA methyltransferase 2	0.0807333754
+UniRef50_UPI0003F15D37: PREDICTED: putative ribosomal RNA methyltransferase 2|unclassified	0.0807333754
+UniRef50_UPI00037AEC76: ABC transporter	0.0807253613
+UniRef50_UPI00037AEC76: ABC transporter|unclassified	0.0807253613
+UniRef50_E6W4N7: UPF0234 protein Selin_2395	0.0807245176
+UniRef50_E6W4N7: UPF0234 protein Selin_2395|unclassified	0.0807245176
+UniRef50_UPI00038261A2: hypothetical protein	0.0807225240
+UniRef50_UPI00038261A2: hypothetical protein|unclassified	0.0807225240
+UniRef50_UPI000289D240: CMP-N-acetylneuraminic acid synthetase	0.0807196744
+UniRef50_UPI000289D240: CMP-N-acetylneuraminic acid synthetase|unclassified	0.0807196744
+UniRef50_Q2WBD9: Phosphoheptose isomerase	0.0807143655
+UniRef50_Q2WBD9: Phosphoheptose isomerase|unclassified	0.0807143655
+UniRef50_F7TW27: Nickel transport system permease protein NikB	0.0807109409
+UniRef50_F7TW27: Nickel transport system permease protein NikB|unclassified	0.0807109409
+UniRef50_B4W5Y2	0.0807081191
+UniRef50_B4W5Y2|unclassified	0.0807081191
+UniRef50_E8X244	0.0807077180
+UniRef50_E8X244|unclassified	0.0807077180
+UniRef50_UPI00034B8C32: hypothetical protein	0.0807047121
+UniRef50_UPI00034B8C32: hypothetical protein|unclassified	0.0807047121
+UniRef50_UPI0003B5603D: 3-oxoacyl-ACP synthase	0.0807026431
+UniRef50_UPI0003B5603D: 3-oxoacyl-ACP synthase|unclassified	0.0807026431
+UniRef50_UPI0004728032: hypothetical protein	0.0806987311
+UniRef50_UPI0004728032: hypothetical protein|unclassified	0.0806987311
+UniRef50_Q67JT3: DNA-directed RNA polymerase subunit beta	0.0806792160
+UniRef50_Q67JT3: DNA-directed RNA polymerase subunit beta|unclassified	0.0806792160
+UniRef50_UPI00037A1F61: hypothetical protein	0.0806767058
+UniRef50_UPI00037A1F61: hypothetical protein|unclassified	0.0806767058
+UniRef50_UPI00047E62BC: hypothetical protein	0.0806683112
+UniRef50_UPI00047E62BC: hypothetical protein|unclassified	0.0806683112
+UniRef50_UPI00041E0924: HAD family hydrolase	0.0806624810
+UniRef50_UPI00041E0924: HAD family hydrolase|unclassified	0.0806624810
+UniRef50_K4MTL7: Minor ampullate spidroin	0.0806623698
+UniRef50_K4MTL7: Minor ampullate spidroin|unclassified	0.0806623698
+UniRef50_UPI00046582DB: hypothetical protein, partial	0.0806514773
+UniRef50_UPI00046582DB: hypothetical protein, partial|unclassified	0.0806514773
+UniRef50_Z5A0E9	0.0806513569
+UniRef50_Z5A0E9|unclassified	0.0806513569
+UniRef50_UPI0003B2E336: chromosome partitioning protein ParB	0.0806479442
+UniRef50_UPI0003B2E336: chromosome partitioning protein ParB|unclassified	0.0806479442
+UniRef50_UPI0003483C97: enterobactin synthase subunit E	0.0806441181
+UniRef50_UPI0003483C97: enterobactin synthase subunit E|unclassified	0.0806441181
+UniRef50_UPI000467C736: hypothetical protein	0.0806404096
+UniRef50_UPI000467C736: hypothetical protein|unclassified	0.0806404096
+UniRef50_W1BD39	0.0806394791
+UniRef50_W1BD39|unclassified	0.0806394791
+UniRef50_V5F1I8	0.0806384582
+UniRef50_V5F1I8|unclassified	0.0806384582
+UniRef50_UPI0003B3A003: LysR family transcriptional regulator	0.0806350828
+UniRef50_UPI0003B3A003: LysR family transcriptional regulator|unclassified	0.0806350828
+UniRef50_UPI000237D503: cupin 2 domain-containing protein	0.0806323768
+UniRef50_UPI000237D503: cupin 2 domain-containing protein|unclassified	0.0806323768
+UniRef50_UPI00035D01D7: hypothetical protein	0.0806241876
+UniRef50_UPI00035D01D7: hypothetical protein|unclassified	0.0806241876
+UniRef50_UPI000376A369: hypothetical protein	0.0806171766
+UniRef50_UPI000376A369: hypothetical protein|unclassified	0.0806171766
+UniRef50_F4GUZ8	0.0806150883
+UniRef50_F4GUZ8|unclassified	0.0806150883
+UniRef50_UPI00036399CE: hypothetical protein	0.0806009300
+UniRef50_UPI00036399CE: hypothetical protein|unclassified	0.0806009300
+UniRef50_UPI000363BC01: hypothetical protein	0.0805962283
+UniRef50_UPI000363BC01: hypothetical protein|unclassified	0.0805962283
+UniRef50_W0YJ68	0.0805890582
+UniRef50_W0YJ68|unclassified	0.0805890582
+UniRef50_Q0BVN0: Chorismate synthase	0.0805856970
+UniRef50_Q0BVN0: Chorismate synthase|unclassified	0.0805856970
+UniRef50_Q1C0Q8: Hemin import ATP-binding protein HmuV	0.0805840119
+UniRef50_Q1C0Q8: Hemin import ATP-binding protein HmuV|unclassified	0.0805840119
+UniRef50_A5USQ4: Indole-3-glycerol phosphate synthase	0.0805838892
+UniRef50_A5USQ4: Indole-3-glycerol phosphate synthase|unclassified	0.0805838892
+UniRef50_UPI0002491324: 16S rRNA methyltransferase	0.0805832817
+UniRef50_UPI0002491324: 16S rRNA methyltransferase|unclassified	0.0805832817
+UniRef50_UPI000475E6E2: hypothetical protein	0.0805808568
+UniRef50_UPI000475E6E2: hypothetical protein|unclassified	0.0805808568
+UniRef50_UPI00046F9CC8: hypothetical protein, partial	0.0805773179
+UniRef50_UPI00046F9CC8: hypothetical protein, partial|unclassified	0.0805773179
+UniRef50_M7A0E0	0.0805700670
+UniRef50_M7A0E0|unclassified	0.0805700670
+UniRef50_F2U1N7	0.0805681790
+UniRef50_F2U1N7|unclassified	0.0805681790
+UniRef50_K9VCS3	0.0805641997
+UniRef50_K9VCS3|unclassified	0.0805641997
+UniRef50_UPI0003FAFBE3: hypothetical protein	0.0805608310
+UniRef50_UPI0003FAFBE3: hypothetical protein|unclassified	0.0805608310
+UniRef50_G9ZEF2	0.0805509561
+UniRef50_G9ZEF2|unclassified	0.0805509561
+UniRef50_Q9KTJ5: Methionine import ATP-binding protein MetN	0.0805382682
+UniRef50_Q9KTJ5: Methionine import ATP-binding protein MetN|unclassified	0.0805382682
+UniRef50_Q9KAM2: BH2265 protein	0.0805349709
+UniRef50_Q9KAM2: BH2265 protein|unclassified	0.0805349709
+UniRef50_UPI000360F94C: MULTISPECIES: hypothetical protein	0.0805336265
+UniRef50_UPI000360F94C: MULTISPECIES: hypothetical protein|unclassified	0.0805336265
+UniRef50_I2JGP6: DoxX family protein	0.0805197286
+UniRef50_I2JGP6: DoxX family protein|unclassified	0.0805197286
+UniRef50_UPI0004624907: S15/NS1 RNA-binding domain-containing protein	0.0805195214
+UniRef50_UPI0004624907: S15/NS1 RNA-binding domain-containing protein|unclassified	0.0805195214
+UniRef50_W1I511: Uncultured bacterium extrachromosomal DNA RGI02237	0.0805174128
+UniRef50_W1I511: Uncultured bacterium extrachromosomal DNA RGI02237|unclassified	0.0805174128
+UniRef50_UPI00041D32C2: TetR family transcriptional regulator	0.0805132786
+UniRef50_UPI00041D32C2: TetR family transcriptional regulator|unclassified	0.0805132786
+UniRef50_UPI0004795999: DNA helicase	0.0805121362
+UniRef50_UPI0004795999: DNA helicase|unclassified	0.0805121362
+UniRef50_UPI0003A82DBD: hypothetical protein	0.0804976621
+UniRef50_UPI0003A82DBD: hypothetical protein|unclassified	0.0804976621
+UniRef50_P50312: Phosphoglycerate kinase, glycosomal	0.0804905901
+UniRef50_P50312: Phosphoglycerate kinase, glycosomal|unclassified	0.0804905901
+UniRef50_W9T5Q8: Conjugal transfer ATPase TrbE	0.0804848119
+UniRef50_W9T5Q8: Conjugal transfer ATPase TrbE|unclassified	0.0804848119
+UniRef50_UPI000472C1EF: amino acid ABC transporter ATPase	0.0804760488
+UniRef50_UPI000472C1EF: amino acid ABC transporter ATPase|unclassified	0.0804760488
+UniRef50_UPI00036196DA: hypothetical protein	0.0804731358
+UniRef50_UPI00036196DA: hypothetical protein|unclassified	0.0804731358
+UniRef50_D9QGE3: Flagellar hook capping protein	0.0804668099
+UniRef50_D9QGE3: Flagellar hook capping protein|unclassified	0.0804668099
+UniRef50_X6M9N5	0.0804627512
+UniRef50_X6M9N5|unclassified	0.0804627512
+UniRef50_A3CL77: Glutamyl-tRNA reductase	0.0804599116
+UniRef50_A3CL77: Glutamyl-tRNA reductase|unclassified	0.0804599116
+UniRef50_UPI000479047C: hypothetical protein	0.0804579757
+UniRef50_UPI000479047C: hypothetical protein|unclassified	0.0804579757
+UniRef50_H8H3H4	0.0804572335
+UniRef50_H8H3H4|unclassified	0.0804572335
+UniRef50_B0T0X6: Protoheme IX farnesyltransferase	0.0804530622
+UniRef50_B0T0X6: Protoheme IX farnesyltransferase|unclassified	0.0804530622
+UniRef50_UPI0003611F2D: hypothetical protein	0.0804527712
+UniRef50_UPI0003611F2D: hypothetical protein|unclassified	0.0804527712
+UniRef50_UPI00046E76CD: RNA pyrophosphohydrolase	0.0804520984
+UniRef50_UPI00046E76CD: RNA pyrophosphohydrolase|unclassified	0.0804520984
+UniRef50_X6J9S4: Flagellar motor protein MotB	0.0804479167
+UniRef50_X6J9S4: Flagellar motor protein MotB|unclassified	0.0804479167
+UniRef50_A8L8V5: Cobyrinic acid ac-diamide synthase	0.0804465652
+UniRef50_A8L8V5: Cobyrinic acid ac-diamide synthase|unclassified	0.0804465652
+UniRef50_UPI00037014D5: hypothetical protein	0.0804428955
+UniRef50_UPI00037014D5: hypothetical protein|unclassified	0.0804428955
+UniRef50_I4CWZ8: Type IV pilus modification protein PilV	0.0804378936
+UniRef50_I4CWZ8: Type IV pilus modification protein PilV|unclassified	0.0804378936
+UniRef50_E6JPR7	0.0804372921
+UniRef50_E6JPR7|unclassified	0.0804372921
+UniRef50_B2II16: Beta-lactamase domain protein	0.0804330568
+UniRef50_B2II16: Beta-lactamase domain protein|unclassified	0.0804330568
+UniRef50_UPI00040ADA08: aminotransferase	0.0804304506
+UniRef50_UPI00040ADA08: aminotransferase|unclassified	0.0804304506
+UniRef50_Q9HK17: Carbamoyl-phosphate synthase large chain	0.0804199692
+UniRef50_Q9HK17: Carbamoyl-phosphate synthase large chain|unclassified	0.0804199692
+UniRef50_Q7U8U2: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	0.0804173345
+UniRef50_Q7U8U2: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|unclassified	0.0804173345
+UniRef50_J3M0X2	0.0804102822
+UniRef50_J3M0X2|unclassified	0.0804102822
+UniRef50_C1CRM5	0.0804014979
+UniRef50_C1CRM5|unclassified	0.0804014979
+UniRef50_I7KY83: Metallophosphoesterase	0.0803920928
+UniRef50_I7KY83: Metallophosphoesterase|unclassified	0.0803920928
+UniRef50_F7ND85: Type IV secretory pathway, VirB4 component	0.0803915923
+UniRef50_F7ND85: Type IV secretory pathway, VirB4 component|unclassified	0.0803915923
+UniRef50_UPI00047BCF63: hypothetical protein	0.0803909091
+UniRef50_UPI00047BCF63: hypothetical protein|unclassified	0.0803909091
+UniRef50_UPI00046EC74C: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.0803894467
+UniRef50_UPI00046EC74C: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.0803894467
+UniRef50_A5FZU4: Adenylate kinase	0.0803793797
+UniRef50_A5FZU4: Adenylate kinase|unclassified	0.0803793797
+UniRef50_A8G9A1	0.0803779979
+UniRef50_A8G9A1|unclassified	0.0803779979
+UniRef50_Q5WLX7	0.0803722029
+UniRef50_Q5WLX7|unclassified	0.0803722029
+UniRef50_A0A024JM61: Similar to Saccharomyces cerevisiae YOR181W LAS17 Actin assembly factor, activates the Arp2/3 protein complex that nucleates branched actin filaments	0.0803709811
+UniRef50_A0A024JM61: Similar to Saccharomyces cerevisiae YOR181W LAS17 Actin assembly factor, activates the Arp2/3 protein complex that nucleates branched actin filaments|unclassified	0.0803709811
+UniRef50_Q9K856: BH3151 protein	0.0803660771
+UniRef50_Q9K856: BH3151 protein|unclassified	0.0803660771
+UniRef50_UPI00046BB242: PREDICTED: plectin-like	0.0803648254
+UniRef50_UPI00046BB242: PREDICTED: plectin-like|unclassified	0.0803648254
+UniRef50_UPI00047285C2: ABC transporter ATP-binding protein	0.0803622960
+UniRef50_UPI00047285C2: ABC transporter ATP-binding protein|unclassified	0.0803622960
+UniRef50_A7NHN1: Cytidylate kinase	0.0803435933
+UniRef50_A7NHN1: Cytidylate kinase|unclassified	0.0803435933
+UniRef50_UPI00046448EA: deaminase	0.0803392165
+UniRef50_UPI00046448EA: deaminase|unclassified	0.0803392165
+UniRef50_UPI00037A4658: hypothetical protein	0.0803375463
+UniRef50_UPI00037A4658: hypothetical protein|unclassified	0.0803375463
+UniRef50_U9URE2	0.0803347330
+UniRef50_U9URE2|unclassified	0.0803347330
+UniRef50_P23630: Diaminopimelate decarboxylase	0.0803323150
+UniRef50_P23630: Diaminopimelate decarboxylase|unclassified	0.0803323150
+UniRef50_Q9JRT1: Phosphoadenosine phosphosulfate reductase	0.0803315345
+UniRef50_Q9JRT1: Phosphoadenosine phosphosulfate reductase|unclassified	0.0803315345
+UniRef50_UPI00046A5EF5: hypothetical protein	0.0803305424
+UniRef50_UPI00046A5EF5: hypothetical protein|unclassified	0.0803305424
+UniRef50_A0A009FJZ7: C-terminal regulatory domain of Threonine dehydratase family protein	0.0803270051
+UniRef50_A0A009FJZ7: C-terminal regulatory domain of Threonine dehydratase family protein|unclassified	0.0803270051
+UniRef50_UPI0003A5B886: chaperonin	0.0803244644
+UniRef50_UPI0003A5B886: chaperonin|unclassified	0.0803244644
+UniRef50_UPI00036912E2: MULTISPECIES: hypothetical protein	0.0803217058
+UniRef50_UPI00036912E2: MULTISPECIES: hypothetical protein|unclassified	0.0803217058
+UniRef50_E7RGU0	0.0803176134
+UniRef50_E7RGU0|unclassified	0.0803176134
+UniRef50_A8D2K3: UDP-glucuronic acid 4-epimerase	0.0803157638
+UniRef50_A8D2K3: UDP-glucuronic acid 4-epimerase|unclassified	0.0803157638
+UniRef50_UPI000255A3C5: putative sensor/response regulator hybrid	0.0803109089
+UniRef50_UPI000255A3C5: putative sensor/response regulator hybrid|unclassified	0.0803109089
+UniRef50_B6IR48	0.0803046453
+UniRef50_B6IR48|unclassified	0.0803046453
+UniRef50_UPI00036C612B: hypothetical protein	0.0802887200
+UniRef50_UPI00036C612B: hypothetical protein|unclassified	0.0802887200
+UniRef50_UPI0003B32148: glutamate 5-kinase	0.0802884972
+UniRef50_UPI0003B32148: glutamate 5-kinase|unclassified	0.0802884972
+UniRef50_UPI000395C0B3: PREDICTED: collagen alpha-1(I) chain-like	0.0802869713
+UniRef50_UPI000395C0B3: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.0802869713
+UniRef50_E3DRH8: Fumarate reductase/succinate dehydrogenase flavoprotein domain protein	0.0802850434
+UniRef50_E3DRH8: Fumarate reductase/succinate dehydrogenase flavoprotein domain protein|unclassified	0.0802850434
+UniRef50_T1BCR9: Protein containing DUF1820	0.0802787650
+UniRef50_T1BCR9: Protein containing DUF1820|unclassified	0.0802787650
+UniRef50_Q67TJ2: Glutamate--tRNA ligase	0.0802756203
+UniRef50_Q67TJ2: Glutamate--tRNA ligase|unclassified	0.0802756203
+UniRef50_UPI00035E671A: hypothetical protein	0.0802753553
+UniRef50_UPI00035E671A: hypothetical protein|unclassified	0.0802753553
+UniRef50_UPI0003C10230: PREDICTED: acetyl-CoA acetyltransferase, cytosolic 1-like	0.0802718329
+UniRef50_UPI0003C10230: PREDICTED: acetyl-CoA acetyltransferase, cytosolic 1-like|unclassified	0.0802718329
+UniRef50_P54575: Riboflavin biosynthesis protein RibC	0.0802705690
+UniRef50_P54575: Riboflavin biosynthesis protein RibC|unclassified	0.0802705690
+UniRef50_B8EMC6: 40-residue YVTN family beta-propeller repeat protein	0.0802626589
+UniRef50_B8EMC6: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.0802626589
+UniRef50_UPI0003C18973: PREDICTED: phosphoglucomutase, chloroplastic-like	0.0802617438
+UniRef50_UPI0003C18973: PREDICTED: phosphoglucomutase, chloroplastic-like|unclassified	0.0802617438
+UniRef50_C0PJ12	0.0802616977
+UniRef50_C0PJ12|unclassified	0.0802616977
+UniRef50_M1FCC0	0.0802530508
+UniRef50_M1FCC0|unclassified	0.0802530508
+UniRef50_O83080: D-lactate dehydrogenase	0.0802473307
+UniRef50_O83080: D-lactate dehydrogenase|unclassified	0.0802473307
+UniRef50_UPI000262D371: ABC transporter permease	0.0802453097
+UniRef50_UPI000262D371: ABC transporter permease|unclassified	0.0802453097
+UniRef50_R2QAA7	0.0802447596
+UniRef50_R2QAA7|unclassified	0.0802447596
+UniRef50_UPI0004720041: hypothetical protein, partial	0.0802443501
+UniRef50_UPI0004720041: hypothetical protein, partial|unclassified	0.0802443501
+UniRef50_UPI00044102D7: hypothetical protein STEHIDRAFT_145672	0.0802439394
+UniRef50_UPI00044102D7: hypothetical protein STEHIDRAFT_145672|unclassified	0.0802439394
+UniRef50_UPI00036916E9: hypothetical protein	0.0802438691
+UniRef50_UPI00036916E9: hypothetical protein|unclassified	0.0802438691
+UniRef50_UPI00039CB9B6: dihydrodipicolinate synthase	0.0802430946
+UniRef50_UPI00039CB9B6: dihydrodipicolinate synthase|unclassified	0.0802430946
+UniRef50_B2U887: Cytidylate kinase	0.0802403243
+UniRef50_B2U887: Cytidylate kinase|unclassified	0.0802403243
+UniRef50_R8NUD2	0.0802300861
+UniRef50_R8NUD2|unclassified	0.0802300861
+UniRef50_S6RGR6: Transglutaminase-like superfamily domain protein (Fragment)	0.0802192923
+UniRef50_S6RGR6: Transglutaminase-like superfamily domain protein (Fragment)|unclassified	0.0802192923
+UniRef50_UPI000455DBA8: alcohol oxidase	0.0802116080
+UniRef50_UPI000455DBA8: alcohol oxidase|unclassified	0.0802116080
+UniRef50_C8CAH5: ThiC (Fragment)	0.0802107144
+UniRef50_C8CAH5: ThiC (Fragment)|unclassified	0.0802107144
+UniRef50_UPI00026C7388: bicyclomycin resistance protein	0.0802101679
+UniRef50_UPI00026C7388: bicyclomycin resistance protein|unclassified	0.0802101679
+UniRef50_UPI00029A71CE: ATP--cobalamin adenosyltransferase	0.0802003359
+UniRef50_UPI00029A71CE: ATP--cobalamin adenosyltransferase|unclassified	0.0802003359
+UniRef50_UPI000367CCF8: hypothetical protein	0.0801883682
+UniRef50_UPI000367CCF8: hypothetical protein|unclassified	0.0801883682
+UniRef50_UPI0003C12BAB: PREDICTED: alcohol dehydrogenase 5-like	0.0801765366
+UniRef50_UPI0003C12BAB: PREDICTED: alcohol dehydrogenase 5-like|unclassified	0.0801765366
+UniRef50_UPI0003B3910A: diaminopimelate aminotransferase	0.0801754195
+UniRef50_UPI0003B3910A: diaminopimelate aminotransferase|unclassified	0.0801754195
+UniRef50_F2JP17: Phosphodiesterase, MJ0936 family	0.0801720868
+UniRef50_F2JP17: Phosphodiesterase, MJ0936 family|unclassified	0.0801720868
+UniRef50_A7T532: Predicted protein (Fragment)	0.0801678072
+UniRef50_A7T532: Predicted protein (Fragment)|unclassified	0.0801678072
+UniRef50_UPI00035F867F: hypothetical protein	0.0801540409
+UniRef50_UPI00035F867F: hypothetical protein|unclassified	0.0801540409
+UniRef50_D8LEF1	0.0801539405
+UniRef50_D8LEF1|unclassified	0.0801539405
+UniRef50_UPI000237D8B6: ABC transporter related protein	0.0801509542
+UniRef50_UPI000237D8B6: ABC transporter related protein|unclassified	0.0801509542
+UniRef50_F4FEN6: Secreted protein	0.0801449191
+UniRef50_F4FEN6: Secreted protein|unclassified	0.0801449191
+UniRef50_UPI000469EC8E: 3-oxoacyl-ACP reductase	0.0801419754
+UniRef50_UPI000469EC8E: 3-oxoacyl-ACP reductase|unclassified	0.0801419754
+UniRef50_Q72IZ2: 3-dehydroquinate dehydratase	0.0801408260
+UniRef50_Q72IZ2: 3-dehydroquinate dehydratase|unclassified	0.0801408260
+UniRef50_UPI0004763144: LysR family transcriptional regulator	0.0801372388
+UniRef50_UPI0004763144: LysR family transcriptional regulator|unclassified	0.0801372388
+UniRef50_UPI000423F1E3: hypothetical protein	0.0801371802
+UniRef50_UPI000423F1E3: hypothetical protein|unclassified	0.0801371802
+UniRef50_O67291: Isoprenyl transferase	0.0801336518
+UniRef50_O67291: Isoprenyl transferase|unclassified	0.0801336518
+UniRef50_UPI0004291076: hypothetical protein	0.0801285937
+UniRef50_UPI0004291076: hypothetical protein|unclassified	0.0801285937
+UniRef50_L8GAZ8	0.0801267024
+UniRef50_L8GAZ8|unclassified	0.0801267024
+UniRef50_UPI000380209B: hypothetical protein	0.0801262871
+UniRef50_UPI000380209B: hypothetical protein|unclassified	0.0801262871
+UniRef50_G8LQW2	0.0801230005
+UniRef50_G8LQW2|unclassified	0.0801230005
+UniRef50_Q5UWH2: Dihydrolipoyl dehydrogenase 3	0.0801153870
+UniRef50_Q5UWH2: Dihydrolipoyl dehydrogenase 3|unclassified	0.0801153870
+UniRef50_UPI000288CD0B: RNA-binding protein	0.0801118657
+UniRef50_UPI000288CD0B: RNA-binding protein|unclassified	0.0801118657
+UniRef50_A5UUJ5: Light-independent protochlorophyllide reductase subunit B	0.0801108412
+UniRef50_A5UUJ5: Light-independent protochlorophyllide reductase subunit B|unclassified	0.0801108412
+UniRef50_UPI000380524A: hypothetical protein	0.0801096935
+UniRef50_UPI000380524A: hypothetical protein|unclassified	0.0801096935
+UniRef50_R5VC26: Pyruvate-flavodoxin oxidoreductase	0.0801083785
+UniRef50_R5VC26: Pyruvate-flavodoxin oxidoreductase|unclassified	0.0801083785
+UniRef50_UPI00016C49DE: phosphoribosylanthranilate isomerase	0.0801067093
+UniRef50_UPI00016C49DE: phosphoribosylanthranilate isomerase|unclassified	0.0801067093
+UniRef50_G2P0L3: Cobyrinic acid ac-diamide synthase	0.0801044581
+UniRef50_G2P0L3: Cobyrinic acid ac-diamide synthase|unclassified	0.0801044581
+UniRef50_UPI0003B77AAA: homoserine O-acetyltransferase	0.0801040244
+UniRef50_UPI0003B77AAA: homoserine O-acetyltransferase|unclassified	0.0801040244
+UniRef50_UPI00036F9FDB: hypothetical protein, partial	0.0801037043
+UniRef50_UPI00036F9FDB: hypothetical protein, partial|unclassified	0.0801037043
+UniRef50_UPI000370F77D: hypothetical protein	0.0801005240
+UniRef50_UPI000370F77D: hypothetical protein|unclassified	0.0801005240
+UniRef50_UPI00023B337C: PREDICTED: LOW QUALITY PROTEIN: probable aquaporin NIP-type-like	0.0801000701
+UniRef50_UPI00023B337C: PREDICTED: LOW QUALITY PROTEIN: probable aquaporin NIP-type-like|unclassified	0.0801000701
+UniRef50_UPI00046D37AA: N-succinylarginine dihydrolase	0.0800975664
+UniRef50_UPI00046D37AA: N-succinylarginine dihydrolase|unclassified	0.0800975664
+UniRef50_UPI0003C150A0: PREDICTED: monodehydroascorbate reductase-like	0.0800930397
+UniRef50_UPI0003C150A0: PREDICTED: monodehydroascorbate reductase-like|unclassified	0.0800930397
+UniRef50_UPI00046A7263: ABC transporter ATP-binding protein	0.0800873261
+UniRef50_UPI00046A7263: ABC transporter ATP-binding protein|unclassified	0.0800873261
+UniRef50_UPI000374872B: hypothetical protein	0.0800861383
+UniRef50_UPI000374872B: hypothetical protein|unclassified	0.0800861383
+UniRef50_A0A031HQ91	0.0800809369
+UniRef50_A0A031HQ91|unclassified	0.0800809369
+UniRef50_UPI000362C1E2: hypothetical protein	0.0800802265
+UniRef50_UPI000362C1E2: hypothetical protein|unclassified	0.0800802265
+UniRef50_M3DVL4	0.0800800958
+UniRef50_M3DVL4|unclassified	0.0800800958
+UniRef50_K2J6T6	0.0800759636
+UniRef50_K2J6T6|unclassified	0.0800759636
+UniRef50_M1RJJ2: Lysine decarboxylase family	0.0800756536
+UniRef50_M1RJJ2: Lysine decarboxylase family|unclassified	0.0800756536
+UniRef50_K0CFC9: Type IV pili biogenesis protein PilN	0.0800664298
+UniRef50_K0CFC9: Type IV pili biogenesis protein PilN|unclassified	0.0800664298
+UniRef50_UPI0003B68796: recombinase RdgC	0.0800651986
+UniRef50_UPI0003B68796: recombinase RdgC|unclassified	0.0800651986
+UniRef50_UPI0003714C67: hypothetical protein	0.0800610422
+UniRef50_UPI0003714C67: hypothetical protein|unclassified	0.0800610422
+UniRef50_Q9KVU5: Ribosomal RNA small subunit methyltransferase B	0.0800560480
+UniRef50_Q9KVU5: Ribosomal RNA small subunit methyltransferase B|unclassified	0.0800560480
+UniRef50_UPI00036CECA6: hypothetical protein	0.0800551899
+UniRef50_UPI00036CECA6: hypothetical protein|unclassified	0.0800551899
+UniRef50_E3YVJ4: Putative gram positive anchor (Fragment)	0.0800510432
+UniRef50_E3YVJ4: Putative gram positive anchor (Fragment)|unclassified	0.0800510432
+UniRef50_UPI0003B6A2EF: aspartyl/glutamyl-tRNA amidotransferase subunit B	0.0800451873
+UniRef50_UPI0003B6A2EF: aspartyl/glutamyl-tRNA amidotransferase subunit B|unclassified	0.0800451873
+UniRef50_X1RGY6: Marine sediment metagenome DNA, contig: S06H3_S22002 (Fragment)	0.0800420178
+UniRef50_X1RGY6: Marine sediment metagenome DNA, contig: S06H3_S22002 (Fragment)|unclassified	0.0800420178
+UniRef50_S3J004: Putative ferrichrome-binding periplasmic protein FhuD	0.0800160466
+UniRef50_S3J004: Putative ferrichrome-binding periplasmic protein FhuD|unclassified	0.0800160466
+UniRef50_UPI00042A6B69: imidazole glycerol phosphate synthase	0.0800134120
+UniRef50_UPI00042A6B69: imidazole glycerol phosphate synthase|unclassified	0.0800134120
+UniRef50_UPI0003812EE1: hypothetical protein	0.0800096592
+UniRef50_UPI0003812EE1: hypothetical protein|unclassified	0.0800096592
+UniRef50_S6QKQ1: Anaerobic nitric oxide reductase transcription regulator	0.0800087370
+UniRef50_S6QKQ1: Anaerobic nitric oxide reductase transcription regulator|unclassified	0.0800087370
+UniRef50_UPI0003FF9AEF: hypothetical protein	0.0800018601
+UniRef50_UPI0003FF9AEF: hypothetical protein|unclassified	0.0800018601
+UniRef50_UPI00047DAF39: hypothetical protein	0.0800018240
+UniRef50_UPI00047DAF39: hypothetical protein|unclassified	0.0800018240
+UniRef50_A0A058ZGP7	0.0799988051
+UniRef50_A0A058ZGP7|unclassified	0.0799988051
+UniRef50_A8L894: Diguanylate cyclase	0.0799961731
+UniRef50_A8L894: Diguanylate cyclase|unclassified	0.0799961731
+UniRef50_UPI0002488638: 2-dehydro-3-deoxygluconokinase	0.0799927981
+UniRef50_UPI0002488638: 2-dehydro-3-deoxygluconokinase|unclassified	0.0799927981
+UniRef50_A0A059EI91	0.0799927433
+UniRef50_A0A059EI91|unclassified	0.0799927433
+UniRef50_C6X1R3	0.0799878060
+UniRef50_C6X1R3|unclassified	0.0799878060
+UniRef50_W6YRQ9	0.0799833752
+UniRef50_W6YRQ9|unclassified	0.0799833752
+UniRef50_Q5WLN1: Cobalt ABC transporter permease	0.0799803286
+UniRef50_Q5WLN1: Cobalt ABC transporter permease|unclassified	0.0799803286
+UniRef50_UPI0004407902: hypothetical protein FOMMEDRAFT_111686	0.0799789955
+UniRef50_UPI0004407902: hypothetical protein FOMMEDRAFT_111686|unclassified	0.0799789955
+UniRef50_UPI0003B33939: UDP-N-acetylmuramoylalanyl-D-glutamate--2,6-diaminopimelate ligase	0.0799773107
+UniRef50_UPI0003B33939: UDP-N-acetylmuramoylalanyl-D-glutamate--2,6-diaminopimelate ligase|unclassified	0.0799773107
+UniRef50_UPI0003B6018A: 6-pyruvoyl tetrahydrobiopterin synthase	0.0799772312
+UniRef50_UPI0003B6018A: 6-pyruvoyl tetrahydrobiopterin synthase|unclassified	0.0799772312
+UniRef50_V4JWZ4	0.0799767945
+UniRef50_V4JWZ4|unclassified	0.0799767945
+UniRef50_D9UIB7: Predicted protein	0.0799567931
+UniRef50_D9UIB7: Predicted protein|unclassified	0.0799567931
+UniRef50_K0AF35	0.0799551051
+UniRef50_K0AF35|unclassified	0.0799551051
+UniRef50_U6K9M3	0.0799524092
+UniRef50_U6K9M3|unclassified	0.0799524092
+UniRef50_P24891: Cytochrome c oxidase subunit 3	0.0799520035
+UniRef50_P24891: Cytochrome c oxidase subunit 3|unclassified	0.0799520035
+UniRef50_C5BIJ8: Leucyl/phenylalanyl-tRNA--protein transferase	0.0799498181
+UniRef50_C5BIJ8: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.0799498181
+UniRef50_UPI0003B571A9: membrane protein	0.0799450079
+UniRef50_UPI0003B571A9: membrane protein|unclassified	0.0799450079
+UniRef50_A0A019B3H4	0.0799430911
+UniRef50_A0A019B3H4|unclassified	0.0799430911
+UniRef50_UPI0003692C2B: hypothetical protein	0.0799274308
+UniRef50_UPI0003692C2B: hypothetical protein|unclassified	0.0799274308
+UniRef50_A3JQQ6	0.0799264312
+UniRef50_A3JQQ6|unclassified	0.0799264312
+UniRef50_W4HMQ9	0.0799245923
+UniRef50_W4HMQ9|unclassified	0.0799245923
+UniRef50_UPI00036797C4: hypothetical protein	0.0799176363
+UniRef50_UPI00036797C4: hypothetical protein|unclassified	0.0799176363
+UniRef50_Q0E079: Probable bifunctional riboflavin biosynthesis protein RIBA 2, chloroplastic	0.0799056776
+UniRef50_Q0E079: Probable bifunctional riboflavin biosynthesis protein RIBA 2, chloroplastic|unclassified	0.0799056776
+UniRef50_U6KC21	0.0799049966
+UniRef50_U6KC21|unclassified	0.0799049966
+UniRef50_UPI0004661534: hypothetical protein	0.0798990158
+UniRef50_UPI0004661534: hypothetical protein|unclassified	0.0798990158
+UniRef50_UPI00040521A9: membrane protein	0.0798979426
+UniRef50_UPI00040521A9: membrane protein|unclassified	0.0798979426
+UniRef50_Q8XS05: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	0.0798961779
+UniRef50_Q8XS05: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.0798961779
+UniRef50_G0J6M6	0.0798921790
+UniRef50_G0J6M6|unclassified	0.0798921790
+UniRef50_Q67R57: Dephospho-CoA kinase	0.0798912218
+UniRef50_Q67R57: Dephospho-CoA kinase|unclassified	0.0798912218
+UniRef50_UPI00037E650D: hypothetical protein	0.0798878716
+UniRef50_UPI00037E650D: hypothetical protein|unclassified	0.0798878716
+UniRef50_Q8ZJT1: ATPase RavA	0.0798877806
+UniRef50_Q8ZJT1: ATPase RavA|unclassified	0.0798877806
+UniRef50_UPI00046F6433: hypothetical protein	0.0798770993
+UniRef50_UPI00046F6433: hypothetical protein|unclassified	0.0798770993
+UniRef50_R6Y4G6: Ig domain-containing protein	0.0798754524
+UniRef50_R6Y4G6: Ig domain-containing protein|unclassified	0.0798754524
+UniRef50_D8JYH5	0.0798710620
+UniRef50_D8JYH5|unclassified	0.0798710620
+UniRef50_UPI000395A40D: hemin ABC transporter ATP-binding protein	0.0798692747
+UniRef50_UPI000395A40D: hemin ABC transporter ATP-binding protein|unclassified	0.0798692747
+UniRef50_UPI0003B5F724: D-ribose transporter ATP binding protein	0.0798631917
+UniRef50_UPI0003B5F724: D-ribose transporter ATP binding protein|unclassified	0.0798631917
+UniRef50_UPI0003B76AD7: cardiolipin synthase	0.0798626596
+UniRef50_UPI0003B76AD7: cardiolipin synthase|unclassified	0.0798626596
+UniRef50_UPI00045EBD09: hypothetical protein	0.0798595505
+UniRef50_UPI00045EBD09: hypothetical protein|unclassified	0.0798595505
+UniRef50_UPI00046AD244: carbonic anhydrase	0.0798589897
+UniRef50_UPI00046AD244: carbonic anhydrase|unclassified	0.0798589897
+UniRef50_Q2S1S3: Glutamate-1-semialdehyde 2,1-aminomutase	0.0798541671
+UniRef50_Q2S1S3: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0798541671
+UniRef50_L7ETS7: D5-like N-terminal domain protein (Fragment)	0.0798363089
+UniRef50_L7ETS7: D5-like N-terminal domain protein (Fragment)|unclassified	0.0798363089
+UniRef50_UPI000468C8B4: hypothetical protein	0.0798359243
+UniRef50_UPI000468C8B4: hypothetical protein|unclassified	0.0798359243
+UniRef50_A3QF48: Adenylate kinase	0.0798341609
+UniRef50_A3QF48: Adenylate kinase|unclassified	0.0798341609
+UniRef50_A0A015SN50: Alpha-N-acetylglucosaminidase (NAGLU) C-terminal domain protein	0.0798324781
+UniRef50_A0A015SN50: Alpha-N-acetylglucosaminidase (NAGLU) C-terminal domain protein|unclassified	0.0798324781
+UniRef50_Q3JWI8	0.0798270305
+UniRef50_Q3JWI8|unclassified	0.0798270305
+UniRef50_UPI00036514D5: MULTISPECIES: hypothetical protein	0.0798243196
+UniRef50_UPI00036514D5: MULTISPECIES: hypothetical protein|unclassified	0.0798243196
+UniRef50_O67444	0.0798197009
+UniRef50_O67444|unclassified	0.0798197009
+UniRef50_UPI000477ACAF: hypothetical protein	0.0798190768
+UniRef50_UPI000477ACAF: hypothetical protein|unclassified	0.0798190768
+UniRef50_UPI0004749F77: 3-phosphoglycerate dehydrogenase	0.0798147464
+UniRef50_UPI0004749F77: 3-phosphoglycerate dehydrogenase|unclassified	0.0798147464
+UniRef50_UPI0003DE8BE2: PREDICTED: metal tolerance protein 12-like, partial	0.0798147392
+UniRef50_UPI0003DE8BE2: PREDICTED: metal tolerance protein 12-like, partial|unclassified	0.0798147392
+UniRef50_I3BP60	0.0798146338
+UniRef50_I3BP60|unclassified	0.0798146338
+UniRef50_UPI000376F581: hypothetical protein	0.0798094274
+UniRef50_UPI000376F581: hypothetical protein|unclassified	0.0798094274
+UniRef50_UPI00047E7457: peptide ABC transporter substrate-binding protein	0.0798009371
+UniRef50_UPI00047E7457: peptide ABC transporter substrate-binding protein|unclassified	0.0798009371
+UniRef50_UPI0003606DB0: hypothetical protein, partial	0.0797999333
+UniRef50_UPI0003606DB0: hypothetical protein, partial|unclassified	0.0797999333
+UniRef50_K9QWW3: GMP synthase family protein	0.0797957440
+UniRef50_K9QWW3: GMP synthase family protein|unclassified	0.0797957440
+UniRef50_W1N7X0	0.0797865348
+UniRef50_W1N7X0|unclassified	0.0797865348
+UniRef50_Q21NQ5: Integral membrane protein	0.0797808675
+UniRef50_Q21NQ5: Integral membrane protein|unclassified	0.0797808675
+UniRef50_Q5F904: Cytidylate kinase	0.0797787177
+UniRef50_Q5F904: Cytidylate kinase|unclassified	0.0797787177
+UniRef50_UPI0003A5E779: hypothetical protein	0.0797776497
+UniRef50_UPI0003A5E779: hypothetical protein|unclassified	0.0797776497
+UniRef50_B0VR24	0.0797771549
+UniRef50_B0VR24|unclassified	0.0797771549
+UniRef50_A2SRZ9: Membrane protein-like protein	0.0797668417
+UniRef50_A2SRZ9: Membrane protein-like protein|unclassified	0.0797668417
+UniRef50_B1YGD3: Thymidylate kinase	0.0797607919
+UniRef50_B1YGD3: Thymidylate kinase|unclassified	0.0797607919
+UniRef50_UPI000317BED1: hypothetical protein	0.0797581695
+UniRef50_UPI000317BED1: hypothetical protein|unclassified	0.0797581695
+UniRef50_UPI0003B44F1D: ABC transporter ATP-binding protein	0.0797505341
+UniRef50_UPI0003B44F1D: ABC transporter ATP-binding protein|unclassified	0.0797505341
+UniRef50_UPI000469AF84: hypothetical protein	0.0797456171
+UniRef50_UPI000469AF84: hypothetical protein|unclassified	0.0797456171
+UniRef50_P54171	0.0797442683
+UniRef50_P54171|unclassified	0.0797442683
+UniRef50_UPI000399BF1B: S-adenosylmethionine synthetase	0.0797343257
+UniRef50_UPI000399BF1B: S-adenosylmethionine synthetase|unclassified	0.0797343257
+UniRef50_C3X1Y3: Phage tail protein I	0.0797299039
+UniRef50_C3X1Y3: Phage tail protein I|unclassified	0.0797299039
+UniRef50_D6AZ23: Integral membrane protein	0.0797291039
+UniRef50_D6AZ23: Integral membrane protein|unclassified	0.0797291039
+UniRef50_UPI00037F01E3: hypothetical protein	0.0797115535
+UniRef50_UPI00037F01E3: hypothetical protein|unclassified	0.0797115535
+UniRef50_UPI00047E258D: nitronate monooxygenase	0.0797068229
+UniRef50_UPI00047E258D: nitronate monooxygenase|unclassified	0.0797068229
+UniRef50_UPI0002556489: DNA-dependent helicase II, partial	0.0797024479
+UniRef50_UPI0002556489: DNA-dependent helicase II, partial|unclassified	0.0797024479
+UniRef50_Q2SIG9	0.0796993561
+UniRef50_Q2SIG9|unclassified	0.0796993561
+UniRef50_UPI000359EFF2: PREDICTED: xylose isomerase-like	0.0796842909
+UniRef50_UPI000359EFF2: PREDICTED: xylose isomerase-like|unclassified	0.0796842909
+UniRef50_Q92G90: Aconitate hydratase	0.0796825826
+UniRef50_Q92G90: Aconitate hydratase|unclassified	0.0796825826
+UniRef50_M4X3X7: Type IV pilus modification protein PilV	0.0796711875
+UniRef50_M4X3X7: Type IV pilus modification protein PilV|unclassified	0.0796711875
+UniRef50_C4REF2	0.0796686381
+UniRef50_C4REF2|unclassified	0.0796686381
+UniRef50_S8FC16	0.0796646961
+UniRef50_S8FC16|unclassified	0.0796646961
+UniRef50_UPI000361C95B: hypothetical protein	0.0796630638
+UniRef50_UPI000361C95B: hypothetical protein|unclassified	0.0796630638
+UniRef50_UPI00047355C2: hypothetical protein, partial	0.0796617228
+UniRef50_UPI00047355C2: hypothetical protein, partial|unclassified	0.0796617228
+UniRef50_UPI00035E4AA0: hypothetical protein	0.0796294374
+UniRef50_UPI00035E4AA0: hypothetical protein|unclassified	0.0796294374
+UniRef50_UPI0003840048: PREDICTED: 5E5 antigen-like	0.0796217003
+UniRef50_UPI0003840048: PREDICTED: 5E5 antigen-like|unclassified	0.0796217003
+UniRef50_UPI0004792954: hypothetical protein	0.0796215224
+UniRef50_UPI0004792954: hypothetical protein|unclassified	0.0796215224
+UniRef50_UPI000463BA78: hypothetical protein	0.0796205275
+UniRef50_UPI000463BA78: hypothetical protein|unclassified	0.0796205275
+UniRef50_Q9L9X2: (R)-specific trans-2,3-enoylacyl-CoA hydratase	0.0796155533
+UniRef50_Q9L9X2: (R)-specific trans-2,3-enoylacyl-CoA hydratase|unclassified	0.0796155533
+UniRef50_UPI0004400CA2: PREDICTED: alpha-1B-glycoprotein	0.0796146804
+UniRef50_UPI0004400CA2: PREDICTED: alpha-1B-glycoprotein|unclassified	0.0796146804
+UniRef50_R7U816	0.0796137735
+UniRef50_R7U816|unclassified	0.0796137735
+UniRef50_Q1GJF4	0.0796078497
+UniRef50_Q1GJF4|unclassified	0.0796078497
+UniRef50_E8K1K7	0.0796067265
+UniRef50_E8K1K7|unclassified	0.0796067265
+UniRef50_H0S6C7	0.0795926687
+UniRef50_H0S6C7|unclassified	0.0795926687
+UniRef50_Q9USZ1: Elongation factor G, mitochondrial	0.0795789715
+UniRef50_Q9USZ1: Elongation factor G, mitochondrial|unclassified	0.0795789715
+UniRef50_UPI000262CAD9: 7-cyano-7-deazaguanine reductase	0.0795746638
+UniRef50_UPI000262CAD9: 7-cyano-7-deazaguanine reductase|unclassified	0.0795746638
+UniRef50_E6PCS1	0.0795726221
+UniRef50_E6PCS1|unclassified	0.0795726221
+UniRef50_Q5AJ71: Carbonic anhydrase	0.0795722060
+UniRef50_Q5AJ71: Carbonic anhydrase|unclassified	0.0795722060
+UniRef50_E4RGA5: Portal protein	0.0795707494
+UniRef50_E4RGA5: Portal protein|unclassified	0.0795707494
+UniRef50_Q2NBP7: Lytic transglycosylase	0.0795625905
+UniRef50_Q2NBP7: Lytic transglycosylase|unclassified	0.0795625905
+UniRef50_UPI0003692305: hypothetical protein	0.0795615532
+UniRef50_UPI0003692305: hypothetical protein|unclassified	0.0795615532
+UniRef50_UPI00042A5A21: ABC transporter permease	0.0795592314
+UniRef50_UPI00042A5A21: ABC transporter permease|unclassified	0.0795592314
+UniRef50_UPI0003B62CAB: Crp/Fnr family transcription regulator	0.0795580154
+UniRef50_UPI0003B62CAB: Crp/Fnr family transcription regulator|unclassified	0.0795580154
+UniRef50_W9E3V2	0.0795538043
+UniRef50_W9E3V2|unclassified	0.0795538043
+UniRef50_Q8WEW3: Cytochrome c oxidase subunit 1 (Fragment)	0.0795521792
+UniRef50_Q8WEW3: Cytochrome c oxidase subunit 1 (Fragment)|unclassified	0.0795521792
+UniRef50_G2JHJ5: AAA ATPase family protein	0.0795469086
+UniRef50_G2JHJ5: AAA ATPase family protein|unclassified	0.0795469086
+UniRef50_W0H622	0.0795458292
+UniRef50_W0H622|unclassified	0.0795458292
+UniRef50_V6UH50	0.0795429823
+UniRef50_V6UH50|unclassified	0.0795429823
+UniRef50_X8LPV1: DTW domain protein	0.0795415105
+UniRef50_X8LPV1: DTW domain protein|unclassified	0.0795415105
+UniRef50_UPI000248D343: extracellular ligand-binding receptor	0.0795365201
+UniRef50_UPI000248D343: extracellular ligand-binding receptor|unclassified	0.0795365201
+UniRef50_Q0BST5: DNA gyrase subunit A	0.0795351500
+UniRef50_Q0BST5: DNA gyrase subunit A|unclassified	0.0795351500
+UniRef50_UPI00036A944E: hypothetical protein	0.0795331529
+UniRef50_UPI00036A944E: hypothetical protein|unclassified	0.0795331529
+UniRef50_UPI0003638391: hypothetical protein	0.0795190692
+UniRef50_UPI0003638391: hypothetical protein|unclassified	0.0795190692
+UniRef50_UPI0003F77D26: hypothetical protein	0.0795182288
+UniRef50_UPI0003F77D26: hypothetical protein|unclassified	0.0795182288
+UniRef50_A3JXP6	0.0795164528
+UniRef50_A3JXP6|unclassified	0.0795164528
+UniRef50_F0YEK3	0.0795091146
+UniRef50_F0YEK3|unclassified	0.0795091146
+UniRef50_Q21SY0: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	0.0795088652
+UniRef50_Q21SY0: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.0795088652
+UniRef50_UPI000363D88C: glucose-6-phosphate 1-dehydrogenase	0.0795079640
+UniRef50_UPI000363D88C: glucose-6-phosphate 1-dehydrogenase|unclassified	0.0795079640
+UniRef50_UPI0003999C52: 2-hydroxychromene-2-carboxylate isomerase	0.0795011097
+UniRef50_UPI0003999C52: 2-hydroxychromene-2-carboxylate isomerase|unclassified	0.0795011097
+UniRef50_D7FHK1	0.0794975351
+UniRef50_D7FHK1|unclassified	0.0794975351
+UniRef50_UPI0003B3257E: methyltransferase type 11	0.0794973940
+UniRef50_UPI0003B3257E: methyltransferase type 11|unclassified	0.0794973940
+UniRef50_Q7UFG7: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase	0.0794957204
+UniRef50_Q7UFG7: 2,3-bisphosphoglycerate-independent phosphoglycerate mutase|unclassified	0.0794957204
+UniRef50_Q2J6Q4	0.0794910364
+UniRef50_Q2J6Q4|unclassified	0.0794910364
+UniRef50_UPI0002F82644: hypothetical protein	0.0794829945
+UniRef50_UPI0002F82644: hypothetical protein|unclassified	0.0794829945
+UniRef50_UPI0002FE9F59: hypothetical protein	0.0794732431
+UniRef50_UPI0002FE9F59: hypothetical protein|unclassified	0.0794732431
+UniRef50_UPI000360AD9C: hypothetical protein	0.0794727324
+UniRef50_UPI000360AD9C: hypothetical protein|unclassified	0.0794727324
+UniRef50_A0RR59: Uracil phosphoribosyltransferase	0.0794726299
+UniRef50_A0RR59: Uracil phosphoribosyltransferase|unclassified	0.0794726299
+UniRef50_B6JCP1: N-(5'-phosphoribosyl)anthranilate isomerase	0.0794561476
+UniRef50_B6JCP1: N-(5'-phosphoribosyl)anthranilate isomerase|unclassified	0.0794561476
+UniRef50_UPI0003692948: hypothetical protein	0.0794533134
+UniRef50_UPI0003692948: hypothetical protein|unclassified	0.0794533134
+UniRef50_E7P603: Alginate regulatory protein AlgP	0.0794494033
+UniRef50_E7P603: Alginate regulatory protein AlgP|unclassified	0.0794494033
+UniRef50_U2HJA1	0.0794465760
+UniRef50_U2HJA1|unclassified	0.0794465760
+UniRef50_UPI000371F0A3: hypothetical protein	0.0794463530
+UniRef50_UPI000371F0A3: hypothetical protein|unclassified	0.0794463530
+UniRef50_E0TC54	0.0794459187
+UniRef50_E0TC54|unclassified	0.0794459187
+UniRef50_X2NC56	0.0794417563
+UniRef50_X2NC56|unclassified	0.0794417563
+UniRef50_UPI00037D8802: hypothetical protein	0.0794235840
+UniRef50_UPI00037D8802: hypothetical protein|unclassified	0.0794235840
+UniRef50_A0A017SKA0	0.0794209696
+UniRef50_A0A017SKA0|unclassified	0.0794209696
+UniRef50_UPI00047DF7C1: GntR family transcriptional regulator	0.0794204965
+UniRef50_UPI00047DF7C1: GntR family transcriptional regulator|unclassified	0.0794204965
+UniRef50_I3CJ41	0.0794200792
+UniRef50_I3CJ41|unclassified	0.0794200792
+UniRef50_UPI000287D4F8: TetR family transcriptional regulator	0.0794031781
+UniRef50_UPI000287D4F8: TetR family transcriptional regulator|unclassified	0.0794031781
+UniRef50_UPI0001851460: NAD-dependent epimerase	0.0793994396
+UniRef50_UPI0001851460: NAD-dependent epimerase|unclassified	0.0793994396
+UniRef50_UPI0002FA5E7B: peptide ABC transporter permease	0.0793893819
+UniRef50_UPI0002FA5E7B: peptide ABC transporter permease|unclassified	0.0793893819
+UniRef50_M0VBS3	0.0793862851
+UniRef50_M0VBS3|unclassified	0.0793862851
+UniRef50_UPI0003071439: hypothetical protein	0.0793861601
+UniRef50_UPI0003071439: hypothetical protein|unclassified	0.0793861601
+UniRef50_Q0SP63: Asparagine--tRNA ligase	0.0793809374
+UniRef50_Q0SP63: Asparagine--tRNA ligase|unclassified	0.0793809374
+UniRef50_Q9RUV2: Superoxide dismutase [Mn]	0.0793696000
+UniRef50_Q9RUV2: Superoxide dismutase [Mn]|unclassified	0.0793696000
+UniRef50_D6GHT7: Lambda gpT analog	0.0793663258
+UniRef50_D6GHT7: Lambda gpT analog|unclassified	0.0793663258
+UniRef50_R8BQL3	0.0793557092
+UniRef50_R8BQL3|unclassified	0.0793557092
+UniRef50_UPI000463AB00: glycerol-3-phosphate ABC transporter permease	0.0793542899
+UniRef50_UPI000463AB00: glycerol-3-phosphate ABC transporter permease|unclassified	0.0793542899
+UniRef50_R5HMN5	0.0793528588
+UniRef50_R5HMN5|unclassified	0.0793528588
+UniRef50_UPI00047D7735: hypothetical protein	0.0793515622
+UniRef50_UPI00047D7735: hypothetical protein|unclassified	0.0793515622
+UniRef50_C6CWY2: Sporulation protein YtaF	0.0793482256
+UniRef50_C6CWY2: Sporulation protein YtaF|unclassified	0.0793482256
+UniRef50_R7QG48: Stackhouse genomic scaffold, scaffold_275	0.0793476292
+UniRef50_R7QG48: Stackhouse genomic scaffold, scaffold_275|unclassified	0.0793476292
+UniRef50_V4L3F3	0.0793474953
+UniRef50_V4L3F3|unclassified	0.0793474953
+UniRef50_D3Q524: Cobyrinic acid ac-diamide synthase	0.0793473285
+UniRef50_D3Q524: Cobyrinic acid ac-diamide synthase|unclassified	0.0793473285
+UniRef50_Q59679: Superoxide dismutase [Mn]	0.0793401587
+UniRef50_Q59679: Superoxide dismutase [Mn]|unclassified	0.0793401587
+UniRef50_E8NG69	0.0793374428
+UniRef50_E8NG69|unclassified	0.0793374428
+UniRef50_UPI00037A959D: hypothetical protein	0.0793317154
+UniRef50_UPI00037A959D: hypothetical protein|unclassified	0.0793317154
+UniRef50_UPI00047AF9D7: hypothetical protein	0.0793276587
+UniRef50_UPI00047AF9D7: hypothetical protein|unclassified	0.0793276587
+UniRef50_UPI0003B3D40C: ABC transporter	0.0793262776
+UniRef50_UPI0003B3D40C: ABC transporter|unclassified	0.0793262776
+UniRef50_U6KIW1	0.0793237009
+UniRef50_U6KIW1|unclassified	0.0793237009
+UniRef50_P22822: 6-carboxyhexanoate--CoA ligase	0.0793102207
+UniRef50_P22822: 6-carboxyhexanoate--CoA ligase|unclassified	0.0793102207
+UniRef50_UPI000366ECCB: MULTISPECIES: hypothetical protein	0.0792936364
+UniRef50_UPI000366ECCB: MULTISPECIES: hypothetical protein|unclassified	0.0792936364
+UniRef50_Q979N7: Peroxiredoxin	0.0792922003
+UniRef50_Q979N7: Peroxiredoxin|unclassified	0.0792922003
+UniRef50_Q8YG22: Phage host specificity protein	0.0792876217
+UniRef50_Q8YG22: Phage host specificity protein|unclassified	0.0792876217
+UniRef50_A5UX75: Dihydroorotate dehydrogenase (quinone)	0.0792865441
+UniRef50_A5UX75: Dihydroorotate dehydrogenase (quinone)|unclassified	0.0792865441
+UniRef50_UPI00016B219A: chaperone protein DnaJ, partial	0.0792825978
+UniRef50_UPI00016B219A: chaperone protein DnaJ, partial|unclassified	0.0792825978
+UniRef50_L2QZZ5	0.0792802688
+UniRef50_L2QZZ5|unclassified	0.0792802688
+UniRef50_Q5WGS3: Indole-3-glycerol phosphate synthase	0.0792792032
+UniRef50_Q5WGS3: Indole-3-glycerol phosphate synthase|unclassified	0.0792792032
+UniRef50_F2IFK9	0.0792716951
+UniRef50_F2IFK9|unclassified	0.0792716951
+UniRef50_UPI00047BE00A: molecular chaperone GroES, partial	0.0792653018
+UniRef50_UPI00047BE00A: molecular chaperone GroES, partial|unclassified	0.0792653018
+UniRef50_Q2MJB7: HMG box protein SoxE2	0.0792552409
+UniRef50_Q2MJB7: HMG box protein SoxE2|unclassified	0.0792552409
+UniRef50_A0A011N8Q2: Putative ParB-like nuclease	0.0792465450
+UniRef50_A0A011N8Q2: Putative ParB-like nuclease|unclassified	0.0792465450
+UniRef50_Q7VUH3: Peptidyl-tRNA hydrolase	0.0792434835
+UniRef50_Q7VUH3: Peptidyl-tRNA hydrolase|unclassified	0.0792434835
+UniRef50_UPI000464D7DB: branched-chain amino acid ABC transporter ATP-binding protein	0.0792427190
+UniRef50_UPI000464D7DB: branched-chain amino acid ABC transporter ATP-binding protein|unclassified	0.0792427190
+UniRef50_UPI0003B6CB25: GTPase Era	0.0792409218
+UniRef50_UPI0003B6CB25: GTPase Era|unclassified	0.0792409218
+UniRef50_D4GGH9: YiaF	0.0792370769
+UniRef50_D4GGH9: YiaF|unclassified	0.0792370769
+UniRef50_UPI0004783D2F: molybdenum cofactor guanylyltransferase	0.0792278020
+UniRef50_UPI0004783D2F: molybdenum cofactor guanylyltransferase|unclassified	0.0792278020
+UniRef50_X1NJX5: Marine sediment metagenome DNA, contig: S06H3_S05099 (Fragment)	0.0792269846
+UniRef50_X1NJX5: Marine sediment metagenome DNA, contig: S06H3_S05099 (Fragment)|unclassified	0.0792269846
+UniRef50_UPI00046635A1: D-alanine--D-alanine ligase	0.0792260111
+UniRef50_UPI00046635A1: D-alanine--D-alanine ligase|unclassified	0.0792260111
+UniRef50_M0VCY1	0.0792197135
+UniRef50_M0VCY1|unclassified	0.0792197135
+UniRef50_S8RR32	0.0792165647
+UniRef50_S8RR32|unclassified	0.0792165647
+UniRef50_U3AF53: EstC protein	0.0792129805
+UniRef50_U3AF53: EstC protein|unclassified	0.0792129805
+UniRef50_G4F172	0.0792117327
+UniRef50_G4F172|unclassified	0.0792117327
+UniRef50_C1MYG0: Predicted protein	0.0792117298
+UniRef50_C1MYG0: Predicted protein|unclassified	0.0792117298
+UniRef50_U8A0B9	0.0792089550
+UniRef50_U8A0B9|unclassified	0.0792089550
+UniRef50_UPI0004720DC3: hypothetical protein, partial	0.0791824754
+UniRef50_UPI0004720DC3: hypothetical protein, partial|unclassified	0.0791824754
+UniRef50_Q9CLL7: Bifunctional protein PyrR	0.0791809859
+UniRef50_Q9CLL7: Bifunctional protein PyrR|unclassified	0.0791809859
+UniRef50_UPI0004435AF7: PREDICTED: maleylacetoacetate isomerase isoform X4	0.0791677712
+UniRef50_UPI0004435AF7: PREDICTED: maleylacetoacetate isomerase isoform X4|unclassified	0.0791677712
+UniRef50_S4XL03	0.0791671330
+UniRef50_S4XL03|unclassified	0.0791671330
+UniRef50_UPI000366B462: hypothetical protein	0.0791659347
+UniRef50_UPI000366B462: hypothetical protein|unclassified	0.0791659347
+UniRef50_UPI00037F0770: hypothetical protein	0.0791633777
+UniRef50_UPI00037F0770: hypothetical protein|unclassified	0.0791633777
+UniRef50_Q49Y71: D-tyrosyl-tRNA(Tyr) deacylase	0.0791620308
+UniRef50_Q49Y71: D-tyrosyl-tRNA(Tyr) deacylase|unclassified	0.0791620308
+UniRef50_C7Q4A9: Transcriptional regulator, HxlR family	0.0791610424
+UniRef50_C7Q4A9: Transcriptional regulator, HxlR family|unclassified	0.0791610424
+UniRef50_Q8NBZ7: UDP-glucuronic acid decarboxylase 1	0.0791585608
+UniRef50_Q8NBZ7: UDP-glucuronic acid decarboxylase 1|unclassified	0.0791585608
+UniRef50_F7WZ32	0.0791581801
+UniRef50_F7WZ32|unclassified	0.0791581801
+UniRef50_UPI00036806C7: hypothetical protein	0.0791517275
+UniRef50_UPI00036806C7: hypothetical protein|unclassified	0.0791517275
+UniRef50_A3RI32: InlD	0.0791509690
+UniRef50_A3RI32: InlD|unclassified	0.0791509690
+UniRef50_UPI0004417DD0: hypothetical protein PUNSTDRAFT_129892	0.0791497415
+UniRef50_UPI0004417DD0: hypothetical protein PUNSTDRAFT_129892|unclassified	0.0791497415
+UniRef50_UPI0003F5D3F7: Na+-dependent transporter	0.0791459387
+UniRef50_UPI0003F5D3F7: Na+-dependent transporter|unclassified	0.0791459387
+UniRef50_UPI00016B180A: nitroreductase	0.0791439265
+UniRef50_UPI00016B180A: nitroreductase|unclassified	0.0791439265
+UniRef50_UPI0004762DAD: hypothetical protein	0.0791386566
+UniRef50_UPI0004762DAD: hypothetical protein|unclassified	0.0791386566
+UniRef50_UPI0002E90FD6: hypothetical protein	0.0791312244
+UniRef50_UPI0002E90FD6: hypothetical protein|unclassified	0.0791312244
+UniRef50_UPI00037F4C72: hypothetical protein	0.0791311693
+UniRef50_UPI00037F4C72: hypothetical protein|unclassified	0.0791311693
+UniRef50_Q95XX1-3: Isoform c of Nicotinate phosphoribosyltransferase	0.0791221053
+UniRef50_Q95XX1-3: Isoform c of Nicotinate phosphoribosyltransferase|unclassified	0.0791221053
+UniRef50_UPI000361EFC0: hypothetical protein	0.0791215080
+UniRef50_UPI000361EFC0: hypothetical protein|unclassified	0.0791215080
+UniRef50_E0MS58: Molecular chaperone, DnaJ family	0.0791190709
+UniRef50_E0MS58: Molecular chaperone, DnaJ family|unclassified	0.0791190709
+UniRef50_UPI000466F53C: hypothetical protein	0.0791181023
+UniRef50_UPI000466F53C: hypothetical protein|unclassified	0.0791181023
+UniRef50_H2FUJ6: Type IV pilus biogenesis protein PilO	0.0791154816
+UniRef50_H2FUJ6: Type IV pilus biogenesis protein PilO|unclassified	0.0791154816
+UniRef50_UPI000472278F: hypothetical protein	0.0791151571
+UniRef50_UPI000472278F: hypothetical protein|unclassified	0.0791151571
+UniRef50_A0A022G5K7	0.0791146120
+UniRef50_A0A022G5K7|unclassified	0.0791146120
+UniRef50_UPI000454304C: PREDICTED: proteoglycan 4-like	0.0791142155
+UniRef50_UPI000454304C: PREDICTED: proteoglycan 4-like|unclassified	0.0791142155
+UniRef50_UPI000465D810: glycosyl transferase	0.0791117655
+UniRef50_UPI000465D810: glycosyl transferase|unclassified	0.0791117655
+UniRef50_N9BT38	0.0790939790
+UniRef50_N9BT38|unclassified	0.0790939790
+UniRef50_UPI000479A61F: hypothetical protein	0.0790849574
+UniRef50_UPI000479A61F: hypothetical protein|unclassified	0.0790849574
+UniRef50_F9NYE7	0.0790723649
+UniRef50_F9NYE7|unclassified	0.0790723649
+UniRef50_V8A8A9: 3-beta-hydroxy-delta(5)-steroid dehydrogenase	0.0790706195
+UniRef50_V8A8A9: 3-beta-hydroxy-delta(5)-steroid dehydrogenase|unclassified	0.0790706195
+UniRef50_I4BXX2: ABC-type Co2+ transport system, periplasmic component	0.0790592708
+UniRef50_I4BXX2: ABC-type Co2+ transport system, periplasmic component|unclassified	0.0790592708
+UniRef50_R4LKV7	0.0790576112
+UniRef50_R4LKV7|unclassified	0.0790576112
+UniRef50_E0SGH6: Conserved protein	0.0790560758
+UniRef50_E0SGH6: Conserved protein|unclassified	0.0790560758
+UniRef50_UPI0001850BCC: bis(5''''-nucleosyl)-tetraphosphatase PrpE	0.0790478526
+UniRef50_UPI0001850BCC: bis(5''''-nucleosyl)-tetraphosphatase PrpE|unclassified	0.0790478526
+UniRef50_UPI00027F41E3	0.0790425301
+UniRef50_UPI00027F41E3|unclassified	0.0790425301
+UniRef50_UPI0003FCDB23: membrane protein	0.0790307258
+UniRef50_UPI0003FCDB23: membrane protein|unclassified	0.0790307258
+UniRef50_UPI0003605CD0: hypothetical protein	0.0790287206
+UniRef50_UPI0003605CD0: hypothetical protein|unclassified	0.0790287206
+UniRef50_P94132: Probable electron transfer flavoprotein-ubiquinone oxidoreductase	0.0790265189
+UniRef50_P94132: Probable electron transfer flavoprotein-ubiquinone oxidoreductase|unclassified	0.0790265189
+UniRef50_W4BBA2: Cobalt transport protein	0.0790256563
+UniRef50_W4BBA2: Cobalt transport protein|unclassified	0.0790256563
+UniRef50_H7F9Y5: Peptidoglycan bound protein (LPXTG motif) (Fragment)	0.0790235424
+UniRef50_H7F9Y5: Peptidoglycan bound protein (LPXTG motif) (Fragment)|unclassified	0.0790235424
+UniRef50_UPI00031B5027: hypothetical protein	0.0790148049
+UniRef50_UPI00031B5027: hypothetical protein|unclassified	0.0790148049
+UniRef50_UPI0003781703: hypothetical protein	0.0789899764
+UniRef50_UPI0003781703: hypothetical protein|unclassified	0.0789899764
+UniRef50_UPI0003708C59: hypothetical protein	0.0789897069
+UniRef50_UPI0003708C59: hypothetical protein|unclassified	0.0789897069
+UniRef50_Q831F7: Release factor glutamine methyltransferase	0.0789857139
+UniRef50_Q831F7: Release factor glutamine methyltransferase|unclassified	0.0789857139
+UniRef50_UPI0003B36B41: arginyl-tRNA synthetase, partial	0.0789842049
+UniRef50_UPI0003B36B41: arginyl-tRNA synthetase, partial|unclassified	0.0789842049
+UniRef50_UPI000473270B: hypothetical protein	0.0789834903
+UniRef50_UPI000473270B: hypothetical protein|unclassified	0.0789834903
+UniRef50_UPI00040DB596: hypothetical protein	0.0789813648
+UniRef50_UPI00040DB596: hypothetical protein|unclassified	0.0789813648
+UniRef50_S1RUL4: Adhesion exoprotein (Fragment)	0.0789768835
+UniRef50_S1RUL4: Adhesion exoprotein (Fragment)|unclassified	0.0789768835
+UniRef50_UPI00047BF062: glycoside hydrolase	0.0789668510
+UniRef50_UPI00047BF062: glycoside hydrolase|unclassified	0.0789668510
+UniRef50_Q6DF08: UDP-glucuronic acid decarboxylase 1	0.0789621556
+UniRef50_Q6DF08: UDP-glucuronic acid decarboxylase 1|unclassified	0.0789621556
+UniRef50_Q9UZ08: 2-isopropylmalate synthase	0.0789608980
+UniRef50_Q9UZ08: 2-isopropylmalate synthase|unclassified	0.0789608980
+UniRef50_A0A022GSB6: Tyrosine recombinase XerC	0.0789544056
+UniRef50_A0A022GSB6: Tyrosine recombinase XerC|unclassified	0.0789544056
+UniRef50_R6STG9: Putative glutamate binding periplasmic protein	0.0789522926
+UniRef50_R6STG9: Putative glutamate binding periplasmic protein|unclassified	0.0789522926
+UniRef50_UPI0004764370: ATP-binding protein	0.0789481065
+UniRef50_UPI0004764370: ATP-binding protein|unclassified	0.0789481065
+UniRef50_A5VFA1	0.0789465751
+UniRef50_A5VFA1|unclassified	0.0789465751
+UniRef50_K0RHV0	0.0789415151
+UniRef50_K0RHV0|unclassified	0.0789415151
+UniRef50_X6HML3	0.0789404440
+UniRef50_X6HML3|unclassified	0.0789404440
+UniRef50_J3ML95	0.0789381662
+UniRef50_J3ML95|unclassified	0.0789381662
+UniRef50_D3S8T8: Flagellar hook capping protein	0.0789307597
+UniRef50_D3S8T8: Flagellar hook capping protein|unclassified	0.0789307597
+UniRef50_D3BU65	0.0789306562
+UniRef50_D3BU65|unclassified	0.0789306562
+UniRef50_Q1YT57	0.0789279028
+UniRef50_Q1YT57|unclassified	0.0789279028
+UniRef50_UPI0001BF69FA: hypothetical protein SMAC_02813, partial	0.0789275095
+UniRef50_UPI0001BF69FA: hypothetical protein SMAC_02813, partial|unclassified	0.0789275095
+UniRef50_W1U4U5: MazG family protein	0.0789269398
+UniRef50_W1U4U5: MazG family protein|unclassified	0.0789269398
+UniRef50_UPI00036F9E25: hypothetical protein, partial	0.0789257504
+UniRef50_UPI00036F9E25: hypothetical protein, partial|unclassified	0.0789257504
+UniRef50_Q4L6X8: D-tyrosyl-tRNA(Tyr) deacylase	0.0789229658
+UniRef50_Q4L6X8: D-tyrosyl-tRNA(Tyr) deacylase|unclassified	0.0789229658
+UniRef50_UPI00030EC89B: hypothetical protein	0.0789203124
+UniRef50_UPI00030EC89B: hypothetical protein|unclassified	0.0789203124
+UniRef50_UPI0003B65D8D: phosphohydrolase	0.0789116502
+UniRef50_UPI0003B65D8D: phosphohydrolase|unclassified	0.0789116502
+UniRef50_C6HUC8: Transposase, IS605 OrfB family	0.0789106361
+UniRef50_C6HUC8: Transposase, IS605 OrfB family|unclassified	0.0789106361
+UniRef50_P60620: Cytochrome c oxidase subunit 1	0.0789059318
+UniRef50_P60620: Cytochrome c oxidase subunit 1|unclassified	0.0789059318
+UniRef50_UPI0003C1125F: PREDICTED: uroporphyrinogen-III C-methyltransferase-like	0.0788963399
+UniRef50_UPI0003C1125F: PREDICTED: uroporphyrinogen-III C-methyltransferase-like|unclassified	0.0788963399
+UniRef50_UPI0003B67139: sugar ABC transporter permease	0.0788943635
+UniRef50_UPI0003B67139: sugar ABC transporter permease|unclassified	0.0788943635
+UniRef50_G5KFQ5: GBS Bsp-like repeat protein	0.0788928944
+UniRef50_G5KFQ5: GBS Bsp-like repeat protein|unclassified	0.0788928944
+UniRef50_UPI000463BA86: molecular chaperone DnaJ, partial	0.0788923356
+UniRef50_UPI000463BA86: molecular chaperone DnaJ, partial|unclassified	0.0788923356
+UniRef50_E3HZN1	0.0788891058
+UniRef50_E3HZN1|unclassified	0.0788891058
+UniRef50_Q6MSR0: Leucine--tRNA ligase	0.0788871281
+UniRef50_Q6MSR0: Leucine--tRNA ligase|unclassified	0.0788871281
+UniRef50_UPI000319FA33: hypothetical protein	0.0788847114
+UniRef50_UPI000319FA33: hypothetical protein|unclassified	0.0788847114
+UniRef50_UPI000475D84B: spermidine/putrescine ABC transporter substrate-binding protein	0.0788839537
+UniRef50_UPI000475D84B: spermidine/putrescine ABC transporter substrate-binding protein|unclassified	0.0788839537
+UniRef50_UPI000363D058: hypothetical protein	0.0788802557
+UniRef50_UPI000363D058: hypothetical protein|unclassified	0.0788802557
+UniRef50_UPI00040056AC: hypothetical protein	0.0788769589
+UniRef50_UPI00040056AC: hypothetical protein|unclassified	0.0788769589
+UniRef50_UPI00046E5FB8: hypothetical protein	0.0788762043
+UniRef50_UPI00046E5FB8: hypothetical protein|unclassified	0.0788762043
+UniRef50_UPI000395C4F4: CirA	0.0788710300
+UniRef50_UPI000395C4F4: CirA|unclassified	0.0788710300
+UniRef50_UPI00035F280A: hypothetical protein	0.0788588147
+UniRef50_UPI00035F280A: hypothetical protein|unclassified	0.0788588147
+UniRef50_Q165N2: Long-chain fatty acid protein, putative	0.0788575562
+UniRef50_Q165N2: Long-chain fatty acid protein, putative|unclassified	0.0788575562
+UniRef50_UPI0003FCABAE: hypothetical protein	0.0788574735
+UniRef50_UPI0003FCABAE: hypothetical protein|unclassified	0.0788574735
+UniRef50_E6JZT9	0.0788553047
+UniRef50_E6JZT9|unclassified	0.0788553047
+UniRef50_A7GWQ0: S-ribosylhomocysteine lyase	0.0788550912
+UniRef50_A7GWQ0: S-ribosylhomocysteine lyase|unclassified	0.0788550912
+UniRef50_UPI00026257AD: inosine-uridine preferring nucleoside hydrolase, partial	0.0788523937
+UniRef50_UPI00026257AD: inosine-uridine preferring nucleoside hydrolase, partial|unclassified	0.0788523937
+UniRef50_UPI000300BC1D: hypothetical protein	0.0788518370
+UniRef50_UPI000300BC1D: hypothetical protein|unclassified	0.0788518370
+UniRef50_UPI0003B5B8B2: HrcA family transcriptional regulator	0.0788492592
+UniRef50_UPI0003B5B8B2: HrcA family transcriptional regulator|unclassified	0.0788492592
+UniRef50_UPI0003B44776: patatin	0.0788452345
+UniRef50_UPI0003B44776: patatin|unclassified	0.0788452345
+UniRef50_K2M4N0: TRAP dicarboxylate transporter subunit DctM	0.0788436082
+UniRef50_K2M4N0: TRAP dicarboxylate transporter subunit DctM|unclassified	0.0788436082
+UniRef50_H1QTA2: Branched-chain alpha-keto acid dehydrogenase subunit E2 (Fragment)	0.0788388936
+UniRef50_H1QTA2: Branched-chain alpha-keto acid dehydrogenase subunit E2 (Fragment)|unclassified	0.0788388936
+UniRef50_E3HYS6: Magnesium chelatase accessory protein	0.0788376246
+UniRef50_E3HYS6: Magnesium chelatase accessory protein|unclassified	0.0788376246
+UniRef50_M3EIH0: Alkaline phosphatase	0.0788361021
+UniRef50_M3EIH0: Alkaline phosphatase|unclassified	0.0788361021
+UniRef50_UPI000299F678: 3-hydroxyacyl-CoA dehydrogenase, partial	0.0788245534
+UniRef50_UPI000299F678: 3-hydroxyacyl-CoA dehydrogenase, partial|unclassified	0.0788245534
+UniRef50_T0JR61	0.0788225831
+UniRef50_T0JR61|unclassified	0.0788225831
+UniRef50_Q3JHC8	0.0788216217
+UniRef50_Q3JHC8|unclassified	0.0788216217
+UniRef50_Q220Q8: Diheme cytochrome c	0.0788188277
+UniRef50_Q220Q8: Diheme cytochrome c|unclassified	0.0788188277
+UniRef50_UPI000467DEEF: hypothetical protein	0.0788120611
+UniRef50_UPI000467DEEF: hypothetical protein|unclassified	0.0788120611
+UniRef50_X0SW06: Marine sediment metagenome DNA, contig: S01H1_L01437 (Fragment)	0.0788060193
+UniRef50_X0SW06: Marine sediment metagenome DNA, contig: S01H1_L01437 (Fragment)|unclassified	0.0788060193
+UniRef50_F9LZ56	0.0788007330
+UniRef50_F9LZ56|unclassified	0.0788007330
+UniRef50_H3K5Q2	0.0787977118
+UniRef50_H3K5Q2|unclassified	0.0787977118
+UniRef50_UPI00037BFBB5: hypothetical protein	0.0787830321
+UniRef50_UPI00037BFBB5: hypothetical protein|unclassified	0.0787830321
+UniRef50_UPI0004253BDC: phosphopentomutase	0.0787758842
+UniRef50_UPI0004253BDC: phosphopentomutase|unclassified	0.0787758842
+UniRef50_UPI0003B430E0: preprotein translocase subunit SecA	0.0787701667
+UniRef50_UPI0003B430E0: preprotein translocase subunit SecA|unclassified	0.0787701667
+UniRef50_UPI00036C7C63: hypothetical protein	0.0787658889
+UniRef50_UPI00036C7C63: hypothetical protein|unclassified	0.0787658889
+UniRef50_U8LZS7	0.0787652671
+UniRef50_U8LZS7|unclassified	0.0787652671
+UniRef50_UPI00045EA718: hypothetical protein	0.0787553407
+UniRef50_UPI00045EA718: hypothetical protein|unclassified	0.0787553407
+UniRef50_UPI00037F9449: hypothetical protein	0.0787525868
+UniRef50_UPI00037F9449: hypothetical protein|unclassified	0.0787525868
+UniRef50_A6LGA4: Non-canonical purine NTP pyrophosphatase	0.0787525565
+UniRef50_A6LGA4: Non-canonical purine NTP pyrophosphatase|unclassified	0.0787525565
+UniRef50_UPI00035CC1EE: hypothetical protein	0.0787458725
+UniRef50_UPI00035CC1EE: hypothetical protein|unclassified	0.0787458725
+UniRef50_UPI000471F071: cobinamide kinase	0.0787443382
+UniRef50_UPI000471F071: cobinamide kinase|unclassified	0.0787443382
+UniRef50_UPI00035F3ED0: hypothetical protein	0.0787420156
+UniRef50_UPI00035F3ED0: hypothetical protein|unclassified	0.0787420156
+UniRef50_W7BUC0: Putative excinuclease ABC subunit C	0.0787350265
+UniRef50_W7BUC0: Putative excinuclease ABC subunit C|unclassified	0.0787350265
+UniRef50_UPI00035CBA80: hypothetical protein	0.0787321543
+UniRef50_UPI00035CBA80: hypothetical protein|unclassified	0.0787321543
+UniRef50_UPI0003607034: hypothetical protein	0.0787294327
+UniRef50_UPI0003607034: hypothetical protein|unclassified	0.0787294327
+UniRef50_UPI00034AC0B8: hypothetical protein	0.0787248836
+UniRef50_UPI00034AC0B8: hypothetical protein|unclassified	0.0787248836
+UniRef50_H0YXY7	0.0787238636
+UniRef50_H0YXY7|unclassified	0.0787238636
+UniRef50_UPI00037BA762: hypothetical protein, partial	0.0787164153
+UniRef50_UPI00037BA762: hypothetical protein, partial|unclassified	0.0787164153
+UniRef50_UPI0004690173: type II and III secretion system protein, partial	0.0787152378
+UniRef50_UPI0004690173: type II and III secretion system protein, partial|unclassified	0.0787152378
+UniRef50_UPI00037A2991: hypothetical protein	0.0787099939
+UniRef50_UPI00037A2991: hypothetical protein|unclassified	0.0787099939
+UniRef50_E1K1Y6: ATPase-like, ParA/MinD	0.0787010654
+UniRef50_E1K1Y6: ATPase-like, ParA/MinD|unclassified	0.0787010654
+UniRef50_Q32IW8	0.0786888785
+UniRef50_Q32IW8|unclassified	0.0786888785
+UniRef50_UPI0003B58990: tRNA (uracil-5-)-methyltransferase	0.0786880801
+UniRef50_UPI0003B58990: tRNA (uracil-5-)-methyltransferase|unclassified	0.0786880801
+UniRef50_Q03YJ8: Non-canonical purine NTP pyrophosphatase	0.0786820368
+UniRef50_Q03YJ8: Non-canonical purine NTP pyrophosphatase|unclassified	0.0786820368
+UniRef50_UPI0003609D37: hypothetical protein	0.0786814802
+UniRef50_UPI0003609D37: hypothetical protein|unclassified	0.0786814802
+UniRef50_UPI0003F5268C: lysine decarboxylase	0.0786762732
+UniRef50_UPI0003F5268C: lysine decarboxylase|unclassified	0.0786762732
+UniRef50_UPI0003B4B267: membrane protein	0.0786758819
+UniRef50_UPI0003B4B267: membrane protein|unclassified	0.0786758819
+UniRef50_Q2H8B3: Predicted protein	0.0786754321
+UniRef50_Q2H8B3: Predicted protein|unclassified	0.0786754321
+UniRef50_R3ZTV6: L-ribulose-5-phosphate 4-epimerase	0.0786669689
+UniRef50_R3ZTV6: L-ribulose-5-phosphate 4-epimerase|unclassified	0.0786669689
+UniRef50_W6WUL6: Type VI secretion-associated protein, ImpA family	0.0786659048
+UniRef50_W6WUL6: Type VI secretion-associated protein, ImpA family|unclassified	0.0786659048
+UniRef50_UPI00038152FB: hypothetical protein	0.0786575555
+UniRef50_UPI00038152FB: hypothetical protein|unclassified	0.0786575555
+UniRef50_Q5WYW5: UPF0301 protein lpl0620	0.0786557844
+UniRef50_Q5WYW5: UPF0301 protein lpl0620|unclassified	0.0786557844
+UniRef50_D7A9P4	0.0786554260
+UniRef50_D7A9P4|unclassified	0.0786554260
+UniRef50_W7Z395: Cold-shock DEAD-box protein A	0.0786534559
+UniRef50_W7Z395: Cold-shock DEAD-box protein A|unclassified	0.0786534559
+UniRef50_UPI0004784ACA: peptidase M24	0.0786523553
+UniRef50_UPI0004784ACA: peptidase M24|unclassified	0.0786523553
+UniRef50_UPI00046643A7: uracil phosphoribosyltransferase	0.0786519142
+UniRef50_UPI00046643A7: uracil phosphoribosyltransferase|unclassified	0.0786519142
+UniRef50_C7BR31	0.0786505256
+UniRef50_C7BR31|unclassified	0.0786505256
+UniRef50_Q9M2W3: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase 2	0.0786476567
+UniRef50_Q9M2W3: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase 2|unclassified	0.0786476567
+UniRef50_U6I176: Nucleoside diphosphate kinase	0.0786472785
+UniRef50_U6I176: Nucleoside diphosphate kinase|unclassified	0.0786472785
+UniRef50_UPI00037069E7: fatty acid desaturase	0.0786397217
+UniRef50_UPI00037069E7: fatty acid desaturase|unclassified	0.0786397217
+UniRef50_S0VCY0	0.0786376842
+UniRef50_S0VCY0|unclassified	0.0786376842
+UniRef50_UPI000364C0EB: hypothetical protein	0.0786335480
+UniRef50_UPI000364C0EB: hypothetical protein|unclassified	0.0786335480
+UniRef50_UPI00031F2CDD: hypothetical protein	0.0786334250
+UniRef50_UPI00031F2CDD: hypothetical protein|unclassified	0.0786334250
+UniRef50_UPI000472C7D5: diaminopimelate decarboxylase	0.0786253524
+UniRef50_UPI000472C7D5: diaminopimelate decarboxylase|unclassified	0.0786253524
+UniRef50_UPI000367811C: hypothetical protein, partial	0.0786251705
+UniRef50_UPI000367811C: hypothetical protein, partial|unclassified	0.0786251705
+UniRef50_Q9VYF8: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial	0.0786201542
+UniRef50_Q9VYF8: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial|unclassified	0.0786201542
+UniRef50_UPI0003628E06: hypothetical protein	0.0786182746
+UniRef50_UPI0003628E06: hypothetical protein|unclassified	0.0786182746
+UniRef50_V6L459	0.0786105179
+UniRef50_V6L459|unclassified	0.0786105179
+UniRef50_UPI00035FBEC8: hypothetical protein	0.0786073943
+UniRef50_UPI00035FBEC8: hypothetical protein|unclassified	0.0786073943
+UniRef50_D0D7D8: Transposase IS4 family protein	0.0786058018
+UniRef50_D0D7D8: Transposase IS4 family protein|unclassified	0.0786058018
+UniRef50_B3CN58: Protoheme IX farnesyltransferase	0.0786057385
+UniRef50_B3CN58: Protoheme IX farnesyltransferase|unclassified	0.0786057385
+UniRef50_A0A038IFW4: TRAP transporter, DctM-like membrane domain protein (Fragment)	0.0786020511
+UniRef50_A0A038IFW4: TRAP transporter, DctM-like membrane domain protein (Fragment)|unclassified	0.0786020511
+UniRef50_E8RSJ5	0.0785997881
+UniRef50_E8RSJ5|unclassified	0.0785997881
+UniRef50_I7DHZ4	0.0785972723
+UniRef50_I7DHZ4|unclassified	0.0785972723
+UniRef50_UPI0003C7BE8F: ribonucleoside-triphosphate reductase, partial	0.0785968656
+UniRef50_UPI0003C7BE8F: ribonucleoside-triphosphate reductase, partial|unclassified	0.0785968656
+UniRef50_L8D7D5	0.0785927876
+UniRef50_L8D7D5|unclassified	0.0785927876
+UniRef50_Q2RFR8: Adenylate kinase	0.0785867521
+UniRef50_Q2RFR8: Adenylate kinase|unclassified	0.0785867521
+UniRef50_UPI0003A6F53C: glycoside hydrolase	0.0785783422
+UniRef50_UPI0003A6F53C: glycoside hydrolase|unclassified	0.0785783422
+UniRef50_UPI00037EA278: hypothetical protein	0.0785779749
+UniRef50_UPI00037EA278: hypothetical protein|unclassified	0.0785779749
+UniRef50_Q28SA6	0.0785681526
+UniRef50_Q28SA6|unclassified	0.0785681526
+UniRef50_R7FNG3: 3'-5' exoribonuclease YhaM	0.0785604139
+UniRef50_R7FNG3: 3'-5' exoribonuclease YhaM|unclassified	0.0785604139
+UniRef50_W6W652: HutD-family protein	0.0785580260
+UniRef50_W6W652: HutD-family protein|unclassified	0.0785580260
+UniRef50_UPI00047C6299: ArsR family transcriptional regulator	0.0785551171
+UniRef50_UPI00047C6299: ArsR family transcriptional regulator|unclassified	0.0785551171
+UniRef50_UPI00037A1B94: hypothetical protein, partial	0.0785534721
+UniRef50_UPI00037A1B94: hypothetical protein, partial|unclassified	0.0785534721
+UniRef50_UPI00046AC273: protein-(glutamine-N5) methyltransferase	0.0785514657
+UniRef50_UPI00046AC273: protein-(glutamine-N5) methyltransferase|unclassified	0.0785514657
+UniRef50_UPI000299E58B: SAM-dependent methyltransferase	0.0785504222
+UniRef50_UPI000299E58B: SAM-dependent methyltransferase|unclassified	0.0785504222
+UniRef50_UPI00037AEB11: hypothetical protein	0.0785342876
+UniRef50_UPI00037AEB11: hypothetical protein|unclassified	0.0785342876
+UniRef50_A8NPH0	0.0785210329
+UniRef50_A8NPH0|unclassified	0.0785210329
+UniRef50_W0YPH0	0.0785146035
+UniRef50_W0YPH0|unclassified	0.0785146035
+UniRef50_P57603: Ribulose-phosphate 3-epimerase	0.0785096094
+UniRef50_P57603: Ribulose-phosphate 3-epimerase|unclassified	0.0785096094
+UniRef50_C2UGH0: BNR repeat domain protein	0.0785085873
+UniRef50_C2UGH0: BNR repeat domain protein|unclassified	0.0785085873
+UniRef50_Q9ZV05: L-ornithine N5-acetyltransferase NATA1	0.0785067060
+UniRef50_Q9ZV05: L-ornithine N5-acetyltransferase NATA1|unclassified	0.0785067060
+UniRef50_UPI00036A4FC9: hypothetical protein, partial	0.0785046964
+UniRef50_UPI00036A4FC9: hypothetical protein, partial|unclassified	0.0785046964
+UniRef50_A0A029AVJ5	0.0785012953
+UniRef50_A0A029AVJ5|unclassified	0.0785012953
+UniRef50_V7EI92	0.0784975818
+UniRef50_V7EI92|unclassified	0.0784975818
+UniRef50_UPI0003815FA4: hypothetical protein	0.0784955317
+UniRef50_UPI0003815FA4: hypothetical protein|unclassified	0.0784955317
+UniRef50_E0XRM9: L-asparaginase II	0.0784948169
+UniRef50_E0XRM9: L-asparaginase II|unclassified	0.0784948169
+UniRef50_W4UR71: Membrane protein	0.0784944830
+UniRef50_W4UR71: Membrane protein|unclassified	0.0784944830
+UniRef50_Q5V0I2	0.0784891364
+UniRef50_Q5V0I2|unclassified	0.0784891364
+UniRef50_E4PPT7: Phage-related packaging protein	0.0784870959
+UniRef50_E4PPT7: Phage-related packaging protein|unclassified	0.0784870959
+UniRef50_Q4FLZ4: Phosphopantetheine adenylyltransferase	0.0784834404
+UniRef50_Q4FLZ4: Phosphopantetheine adenylyltransferase|unclassified	0.0784834404
+UniRef50_UPI000380DC03: hypothetical protein	0.0784718863
+UniRef50_UPI000380DC03: hypothetical protein|unclassified	0.0784718863
+UniRef50_UPI0003446A8D: PREDICTED: heat shock cognate 71 kDa protein	0.0784690567
+UniRef50_UPI0003446A8D: PREDICTED: heat shock cognate 71 kDa protein|unclassified	0.0784690567
+UniRef50_F6AF39: Type VI secretion-associated protein, ImpA family	0.0784647138
+UniRef50_F6AF39: Type VI secretion-associated protein, ImpA family|unclassified	0.0784647138
+UniRef50_UPI00046F521F: ribonucleoside hydrolase, partial	0.0784641448
+UniRef50_UPI00046F521F: ribonucleoside hydrolase, partial|unclassified	0.0784641448
+UniRef50_UPI00020007D1: putative amino acid kinase, partial	0.0784634328
+UniRef50_UPI00020007D1: putative amino acid kinase, partial|unclassified	0.0784634328
+UniRef50_X1HCI7: Marine sediment metagenome DNA, contig: S03H2_S08200 (Fragment)	0.0784627682
+UniRef50_X1HCI7: Marine sediment metagenome DNA, contig: S03H2_S08200 (Fragment)|unclassified	0.0784627682
+UniRef50_V4Z7Q3	0.0784597831
+UniRef50_V4Z7Q3|unclassified	0.0784597831
+UniRef50_S9QCL3: Flagellar basal-body rod modification protein FlgD	0.0784559694
+UniRef50_S9QCL3: Flagellar basal-body rod modification protein FlgD|unclassified	0.0784559694
+UniRef50_P9WJQ4: Molybdopterin molybdenumtransferase 2	0.0784547021
+UniRef50_P9WJQ4: Molybdopterin molybdenumtransferase 2|unclassified	0.0784547021
+UniRef50_UPI00046247B5: carbonic anhydrase	0.0784457470
+UniRef50_UPI00046247B5: carbonic anhydrase|unclassified	0.0784457470
+UniRef50_UPI000364AC91: hypothetical protein	0.0784446497
+UniRef50_UPI000364AC91: hypothetical protein|unclassified	0.0784446497
+UniRef50_UPI00046897A2: ornithine carbamoyltransferase	0.0784442374
+UniRef50_UPI00046897A2: ornithine carbamoyltransferase|unclassified	0.0784442374
+UniRef50_UPI00046FD44F: allantoate amidohydrolase, partial	0.0784377595
+UniRef50_UPI00046FD44F: allantoate amidohydrolase, partial|unclassified	0.0784377595
+UniRef50_UPI00025562CC: protein involved in external DNA uptake	0.0784333480
+UniRef50_UPI00025562CC: protein involved in external DNA uptake|unclassified	0.0784333480
+UniRef50_UPI0003B56320: DNA repair protein RadA	0.0784333152
+UniRef50_UPI0003B56320: DNA repair protein RadA|unclassified	0.0784333152
+UniRef50_UPI0001AF28DC: putative NRPS	0.0784251278
+UniRef50_UPI0001AF28DC: putative NRPS|unclassified	0.0784251278
+UniRef50_UPI0003744E94: hypothetical protein	0.0784248490
+UniRef50_UPI0003744E94: hypothetical protein|unclassified	0.0784248490
+UniRef50_UPI0003FE6FE6: hypothetical protein	0.0784180671
+UniRef50_UPI0003FE6FE6: hypothetical protein|unclassified	0.0784180671
+UniRef50_UPI00046EF03F: hypothetical protein	0.0784156098
+UniRef50_UPI00046EF03F: hypothetical protein|unclassified	0.0784156098
+UniRef50_UPI000470A1F5: endoglucanase	0.0784097718
+UniRef50_UPI000470A1F5: endoglucanase|unclassified	0.0784097718
+UniRef50_UPI000362BD36: hypothetical protein	0.0784029149
+UniRef50_UPI000362BD36: hypothetical protein|unclassified	0.0784029149
+UniRef50_B2UNE0: Phosphoheptose isomerase	0.0784008796
+UniRef50_B2UNE0: Phosphoheptose isomerase|unclassified	0.0784008796
+UniRef50_X1JXT4: Marine sediment metagenome DNA, contig: S06H3_C01728	0.0783945096
+UniRef50_X1JXT4: Marine sediment metagenome DNA, contig: S06H3_C01728|unclassified	0.0783945096
+UniRef50_C1MU41: Predicted protein	0.0783926599
+UniRef50_C1MU41: Predicted protein|unclassified	0.0783926599
+UniRef50_U2USH5: Putative membrane protein (Fragment)	0.0783891285
+UniRef50_U2USH5: Putative membrane protein (Fragment)|unclassified	0.0783891285
+UniRef50_A9B932: Transposase Tn3 family protein	0.0783875344
+UniRef50_A9B932: Transposase Tn3 family protein|unclassified	0.0783875344
+UniRef50_A9C3G1	0.0783838823
+UniRef50_A9C3G1|unclassified	0.0783838823
+UniRef50_UPI0003B3F610: peptidylprolyl isomerase	0.0783823744
+UniRef50_UPI0003B3F610: peptidylprolyl isomerase|unclassified	0.0783823744
+UniRef50_UPI00026C58D6: TetR family transcriptional regulator	0.0783726137
+UniRef50_UPI00026C58D6: TetR family transcriptional regulator|unclassified	0.0783726137
+UniRef50_UPI00046E674D: hypothetical protein, partial	0.0783682542
+UniRef50_UPI00046E674D: hypothetical protein, partial|unclassified	0.0783682542
+UniRef50_UPI00047B2FC0: iron reductase	0.0783621561
+UniRef50_UPI00047B2FC0: iron reductase|unclassified	0.0783621561
+UniRef50_UPI0001F26987: hypothetical protein ANI_1_1152134	0.0783616752
+UniRef50_UPI0001F26987: hypothetical protein ANI_1_1152134|unclassified	0.0783616752
+UniRef50_UPI00037A1E81: hypothetical protein	0.0783598832
+UniRef50_UPI00037A1E81: hypothetical protein|unclassified	0.0783598832
+UniRef50_UPI0003463836: hypothetical protein	0.0783571749
+UniRef50_UPI0003463836: hypothetical protein|unclassified	0.0783571749
+UniRef50_I8T5Z7	0.0783562955
+UniRef50_I8T5Z7|unclassified	0.0783562955
+UniRef50_A3TV93	0.0783554022
+UniRef50_A3TV93|unclassified	0.0783554022
+UniRef50_UPI00046EBF3C: hypothetical protein	0.0783501785
+UniRef50_UPI00046EBF3C: hypothetical protein|unclassified	0.0783501785
+UniRef50_UPI0003B61F46: peptide ABC transporter permease	0.0783457698
+UniRef50_UPI0003B61F46: peptide ABC transporter permease|unclassified	0.0783457698
+UniRef50_G4QJM2	0.0783431669
+UniRef50_G4QJM2|unclassified	0.0783431669
+UniRef50_UPI0003B578F4: peptidase M22	0.0783422191
+UniRef50_UPI0003B578F4: peptidase M22|unclassified	0.0783422191
+UniRef50_B2S4Y8: Bacterial SH3-like region	0.0783371817
+UniRef50_B2S4Y8: Bacterial SH3-like region|unclassified	0.0783371817
+UniRef50_C1DCV3: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE	0.0783362747
+UniRef50_C1DCV3: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE|unclassified	0.0783362747
+UniRef50_B9JZ27	0.0783171536
+UniRef50_B9JZ27|unclassified	0.0783171536
+UniRef50_M7RJM0: Mg chelatase, subunit ChlI	0.0783113332
+UniRef50_M7RJM0: Mg chelatase, subunit ChlI|unclassified	0.0783113332
+UniRef50_W1EIU7	0.0783105926
+UniRef50_W1EIU7|unclassified	0.0783105926
+UniRef50_UPI0004681955: hypothetical protein	0.0783075873
+UniRef50_UPI0004681955: hypothetical protein|unclassified	0.0783075873
+UniRef50_Q30T29: Phosphoheptose isomerase	0.0783047293
+UniRef50_Q30T29: Phosphoheptose isomerase|unclassified	0.0783047293
+UniRef50_H0A7F8	0.0782938792
+UniRef50_H0A7F8|unclassified	0.0782938792
+UniRef50_Q49WJ7: Bifunctional purine biosynthesis protein PurH	0.0782901089
+UniRef50_Q49WJ7: Bifunctional purine biosynthesis protein PurH|unclassified	0.0782901089
+UniRef50_A3MWU9: Malate dehydrogenase	0.0782882664
+UniRef50_A3MWU9: Malate dehydrogenase|unclassified	0.0782882664
+UniRef50_UPI000345CB2B: multidrug ABC transporter ATP-binding protein	0.0782869489
+UniRef50_UPI000345CB2B: multidrug ABC transporter ATP-binding protein|unclassified	0.0782869489
+UniRef50_B4UBE6	0.0782854683
+UniRef50_B4UBE6|unclassified	0.0782854683
+UniRef50_U6LIP9: Dsptp1 protein, related, related	0.0782853548
+UniRef50_U6LIP9: Dsptp1 protein, related, related|unclassified	0.0782853548
+UniRef50_UPI00037513D3: hypothetical protein	0.0782812413
+UniRef50_UPI00037513D3: hypothetical protein|unclassified	0.0782812413
+UniRef50_H9K8V6	0.0782780836
+UniRef50_H9K8V6|unclassified	0.0782780836
+UniRef50_UPI000366C321: hypothetical protein	0.0782768087
+UniRef50_UPI000366C321: hypothetical protein|unclassified	0.0782768087
+UniRef50_C5QYH6	0.0782738920
+UniRef50_C5QYH6|unclassified	0.0782738920
+UniRef50_X1KVA0: Marine sediment metagenome DNA, contig: S06H3_C02916 (Fragment)	0.0782731351
+UniRef50_X1KVA0: Marine sediment metagenome DNA, contig: S06H3_C02916 (Fragment)|unclassified	0.0782731351
+UniRef50_R9H3R5	0.0782730406
+UniRef50_R9H3R5|unclassified	0.0782730406
+UniRef50_A3V1D2: ABC phosphate transporter, periplasmic phosphate-binding protein	0.0782720057
+UniRef50_A3V1D2: ABC phosphate transporter, periplasmic phosphate-binding protein|unclassified	0.0782720057
+UniRef50_UPI0003724ED3: hypothetical protein	0.0782684041
+UniRef50_UPI0003724ED3: hypothetical protein|unclassified	0.0782684041
+UniRef50_I4X0N6: Lysophospholipase	0.0782637319
+UniRef50_I4X0N6: Lysophospholipase|unclassified	0.0782637319
+UniRef50_C2RB76: Glyoxalase	0.0782514922
+UniRef50_C2RB76: Glyoxalase|unclassified	0.0782514922
+UniRef50_A5FZG9: Hydroxylamine reductase	0.0782450251
+UniRef50_A5FZG9: Hydroxylamine reductase|unclassified	0.0782450251
+UniRef50_UPI000375323F: hypothetical protein	0.0782390693
+UniRef50_UPI000375323F: hypothetical protein|unclassified	0.0782390693
+UniRef50_U4V3A7	0.0782364709
+UniRef50_U4V3A7|unclassified	0.0782364709
+UniRef50_UPI0002882AFC: hypothetical protein	0.0782354079
+UniRef50_UPI0002882AFC: hypothetical protein|unclassified	0.0782354079
+UniRef50_C9NP97: Flagellar motor rotation protein MotB	0.0782346377
+UniRef50_C9NP97: Flagellar motor rotation protein MotB|unclassified	0.0782346377
+UniRef50_M3J3M5: Monovalent cation/H+ antiporter subunit A	0.0782342560
+UniRef50_M3J3M5: Monovalent cation/H+ antiporter subunit A|unclassified	0.0782342560
+UniRef50_UPI000378FB89: flagellar biosynthesis protein FliP, partial	0.0782289302
+UniRef50_UPI000378FB89: flagellar biosynthesis protein FliP, partial|unclassified	0.0782289302
+UniRef50_D5MJU5: Lytic transglycosylase, catalytic	0.0782266407
+UniRef50_D5MJU5: Lytic transglycosylase, catalytic|unclassified	0.0782266407
+UniRef50_U1JAE0	0.0782255712
+UniRef50_U1JAE0|unclassified	0.0782255712
+UniRef50_UPI000382554F: hypothetical protein	0.0782124632
+UniRef50_UPI000382554F: hypothetical protein|unclassified	0.0782124632
+UniRef50_UPI0003EC1307: PREDICTED: retinal dehydrogenase 1-like, partial	0.0782118343
+UniRef50_UPI0003EC1307: PREDICTED: retinal dehydrogenase 1-like, partial|unclassified	0.0782118343
+UniRef50_A3D067: Extracellular solute-binding protein, family 1	0.0782082272
+UniRef50_A3D067: Extracellular solute-binding protein, family 1|unclassified	0.0782082272
+UniRef50_T0I7F2: Peptidase M23	0.0782042111
+UniRef50_T0I7F2: Peptidase M23|unclassified	0.0782042111
+UniRef50_W5XAZ8: tRNA-dihydrouridine synthase	0.0782026905
+UniRef50_W5XAZ8: tRNA-dihydrouridine synthase|unclassified	0.0782026905
+UniRef50_F1WQG0: L-aspartate oxidase	0.0782021802
+UniRef50_F1WQG0: L-aspartate oxidase|unclassified	0.0782021802
+UniRef50_M5ANE7	0.0781985764
+UniRef50_M5ANE7|unclassified	0.0781985764
+UniRef50_N9FGG7	0.0781951838
+UniRef50_N9FGG7|unclassified	0.0781951838
+UniRef50_UPI00037F3B12: hypothetical protein	0.0781914412
+UniRef50_UPI00037F3B12: hypothetical protein|unclassified	0.0781914412
+UniRef50_UPI00036D5B88: hypothetical protein	0.0781897225
+UniRef50_UPI00036D5B88: hypothetical protein|unclassified	0.0781897225
+UniRef50_Q98LV1: DNA polymerase IV 1	0.0781883569
+UniRef50_Q98LV1: DNA polymerase IV 1|unclassified	0.0781883569
+UniRef50_UPI00047614B3: glutamate dehydrogenase	0.0781856853
+UniRef50_UPI00047614B3: glutamate dehydrogenase|unclassified	0.0781856853
+UniRef50_C1E3G8: Predicted protein	0.0781795136
+UniRef50_C1E3G8: Predicted protein|unclassified	0.0781795136
+UniRef50_G4L5J4: Putative CadR family transcriptional regulator	0.0781789966
+UniRef50_G4L5J4: Putative CadR family transcriptional regulator|unclassified	0.0781789966
+UniRef50_F2Q362	0.0781781212
+UniRef50_F2Q362|unclassified	0.0781781212
+UniRef50_Q9AP01: Ureidoglycolate lyase	0.0781778695
+UniRef50_Q9AP01: Ureidoglycolate lyase|unclassified	0.0781778695
+UniRef50_Q47S88	0.0781770813
+UniRef50_Q47S88|unclassified	0.0781770813
+UniRef50_UPI0003EF85CE: GntR family transcriptional regulator, partial	0.0781655180
+UniRef50_UPI0003EF85CE: GntR family transcriptional regulator, partial|unclassified	0.0781655180
+UniRef50_UPI00035E4A51: hypothetical protein	0.0781633992
+UniRef50_UPI00035E4A51: hypothetical protein|unclassified	0.0781633992
+UniRef50_E5T2I7: Zinc finger Ran-binding domain-containing protein 2	0.0781537408
+UniRef50_E5T2I7: Zinc finger Ran-binding domain-containing protein 2|unclassified	0.0781537408
+UniRef50_UPI0002628085: PTS system sucrose-specific transporter subunit IIABC	0.0781478884
+UniRef50_UPI0002628085: PTS system sucrose-specific transporter subunit IIABC|unclassified	0.0781478884
+UniRef50_UPI00018172E9: mating pair formation protein	0.0781409297
+UniRef50_UPI00018172E9: mating pair formation protein|unclassified	0.0781409297
+UniRef50_X0YKK8: Marine sediment metagenome DNA, contig: S01H1_S28447 (Fragment)	0.0781237974
+UniRef50_X0YKK8: Marine sediment metagenome DNA, contig: S01H1_S28447 (Fragment)|unclassified	0.0781237974
+UniRef50_Q72R38: Lysine--tRNA ligase	0.0781175544
+UniRef50_Q72R38: Lysine--tRNA ligase|unclassified	0.0781175544
+UniRef50_Y5NTL7	0.0781157509
+UniRef50_Y5NTL7|unclassified	0.0781157509
+UniRef50_S9QQX4	0.0781042927
+UniRef50_S9QQX4|unclassified	0.0781042927
+UniRef50_UPI00045EA8BA: hypothetical protein	0.0780945238
+UniRef50_UPI00045EA8BA: hypothetical protein|unclassified	0.0780945238
+UniRef50_UPI00042C781F: PREDICTED: 4-trimethylaminobutyraldehyde dehydrogenase isoform X3	0.0780926951
+UniRef50_UPI00042C781F: PREDICTED: 4-trimethylaminobutyraldehyde dehydrogenase isoform X3|unclassified	0.0780926951
+UniRef50_UPI0003643FF3: hypothetical protein	0.0780906314
+UniRef50_UPI0003643FF3: hypothetical protein|unclassified	0.0780906314
+UniRef50_W0Z7A9: Solute-binding protein	0.0780893884
+UniRef50_W0Z7A9: Solute-binding protein|unclassified	0.0780893884
+UniRef50_UPI0003C15BBB	0.0780888096
+UniRef50_UPI0003C15BBB|unclassified	0.0780888096
+UniRef50_B8I303: Ribosomal protein L11 methyltransferase	0.0780871734
+UniRef50_B8I303: Ribosomal protein L11 methyltransferase|unclassified	0.0780871734
+UniRef50_UPI000362CB0B: hypothetical protein, partial	0.0780789762
+UniRef50_UPI000362CB0B: hypothetical protein, partial|unclassified	0.0780789762
+UniRef50_Q4FR66: Possible tRNA-(Ms(2)io(6)a)-hydroxylase	0.0780581057
+UniRef50_Q4FR66: Possible tRNA-(Ms(2)io(6)a)-hydroxylase|unclassified	0.0780581057
+UniRef50_P34559: Probable enoyl-CoA hydratase, mitochondrial	0.0780560265
+UniRef50_P34559: Probable enoyl-CoA hydratase, mitochondrial|unclassified	0.0780560265
+UniRef50_M3AMK0	0.0780542422
+UniRef50_M3AMK0|unclassified	0.0780542422
+UniRef50_UPI00040D89BE: hypothetical protein	0.0780496736
+UniRef50_UPI00040D89BE: hypothetical protein|unclassified	0.0780496736
+UniRef50_C7TB75	0.0780468805
+UniRef50_C7TB75|unclassified	0.0780468805
+UniRef50_A5WHV3: Pirin domain protein	0.0780445949
+UniRef50_A5WHV3: Pirin domain protein|unclassified	0.0780445949
+UniRef50_Q55AI5: Succinyl-CoA ligase [ADP-forming] subunit beta, mitochondrial	0.0780424808
+UniRef50_Q55AI5: Succinyl-CoA ligase [ADP-forming] subunit beta, mitochondrial|unclassified	0.0780424808
+UniRef50_A4XKN9: Cytidylate kinase	0.0780417206
+UniRef50_A4XKN9: Cytidylate kinase|unclassified	0.0780417206
+UniRef50_UPI000255A9F7: hypothetical protein	0.0780380879
+UniRef50_UPI000255A9F7: hypothetical protein|unclassified	0.0780380879
+UniRef50_H8MF76	0.0780254997
+UniRef50_H8MF76|unclassified	0.0780254997
+UniRef50_N9L3M3	0.0780202174
+UniRef50_N9L3M3|unclassified	0.0780202174
+UniRef50_UPI0003680D49: hypothetical protein	0.0780188851
+UniRef50_UPI0003680D49: hypothetical protein|unclassified	0.0780188851
+UniRef50_UPI00037E3E2D: hypothetical protein	0.0780180953
+UniRef50_UPI00037E3E2D: hypothetical protein|unclassified	0.0780180953
+UniRef50_UPI0003B46C11: chemotaxis protein CheY	0.0780175673
+UniRef50_UPI0003B46C11: chemotaxis protein CheY|unclassified	0.0780175673
+UniRef50_G9PUR0	0.0780130483
+UniRef50_G9PUR0|unclassified	0.0780130483
+UniRef50_H8NWG9: Iron-hydroxamate transporter substrate-binding subunit	0.0780121269
+UniRef50_H8NWG9: Iron-hydroxamate transporter substrate-binding subunit|unclassified	0.0780121269
+UniRef50_UPI000478C198: enoyl-CoA hydratase	0.0780078140
+UniRef50_UPI000478C198: enoyl-CoA hydratase|unclassified	0.0780078140
+UniRef50_UPI0002B8D758: PREDICTED: 3-hydroxyacyl-CoA dehydrogenase type-2-like, partial	0.0780028655
+UniRef50_UPI0002B8D758: PREDICTED: 3-hydroxyacyl-CoA dehydrogenase type-2-like, partial|unclassified	0.0780028655
+UniRef50_UPI0003A4112D: cell division protein FtsZ	0.0779996554
+UniRef50_UPI0003A4112D: cell division protein FtsZ|unclassified	0.0779996554
+UniRef50_UPI00036445B6: MFS transporter	0.0779985243
+UniRef50_UPI00036445B6: MFS transporter|unclassified	0.0779985243
+UniRef50_A9NEI5: Glutamate--tRNA ligase	0.0779930855
+UniRef50_A9NEI5: Glutamate--tRNA ligase|unclassified	0.0779930855
+UniRef50_UPI0002DACB01: hypothetical protein	0.0779881673
+UniRef50_UPI0002DACB01: hypothetical protein|unclassified	0.0779881673
+UniRef50_UPI0002628709: HNH endonuclease family protein	0.0779880506
+UniRef50_UPI0002628709: HNH endonuclease family protein|unclassified	0.0779880506
+UniRef50_P44760: Probable FKBP-type peptidyl-prolyl cis-trans isomerase	0.0779823947
+UniRef50_P44760: Probable FKBP-type peptidyl-prolyl cis-trans isomerase|unclassified	0.0779823947
+UniRef50_UPI0003B6C8C5: calcium-binding protein, partial	0.0779803759
+UniRef50_UPI0003B6C8C5: calcium-binding protein, partial|unclassified	0.0779803759
+UniRef50_L9YRX3	0.0779754515
+UniRef50_L9YRX3|unclassified	0.0779754515
+UniRef50_UPI000262783E: reverse transcriptase	0.0779596811
+UniRef50_UPI000262783E: reverse transcriptase|unclassified	0.0779596811
+UniRef50_T2JN83: Pyruvate-flavodoxin oxidoreductase	0.0779590911
+UniRef50_T2JN83: Pyruvate-flavodoxin oxidoreductase|unclassified	0.0779590911
+UniRef50_M1SFL0	0.0779578013
+UniRef50_M1SFL0|unclassified	0.0779578013
+UniRef50_UPI000475E520: hypothetical protein	0.0779562253
+UniRef50_UPI000475E520: hypothetical protein|unclassified	0.0779562253
+UniRef50_UPI00037ECE7A: hypothetical protein	0.0779527238
+UniRef50_UPI00037ECE7A: hypothetical protein|unclassified	0.0779527238
+UniRef50_Q1YUA1	0.0779520837
+UniRef50_Q1YUA1|unclassified	0.0779520837
+UniRef50_D4TSX0	0.0779500727
+UniRef50_D4TSX0|unclassified	0.0779500727
+UniRef50_C2ZZN3	0.0779498327
+UniRef50_C2ZZN3|unclassified	0.0779498327
+UniRef50_UPI000478E3B8: MFS transporter	0.0779485779
+UniRef50_UPI000478E3B8: MFS transporter|unclassified	0.0779485779
+UniRef50_R1D6H6	0.0779484670
+UniRef50_R1D6H6|unclassified	0.0779484670
+UniRef50_UPI00040E3D34: pyruvate-flavodoxin oxidoreductase	0.0779475156
+UniRef50_UPI00040E3D34: pyruvate-flavodoxin oxidoreductase|unclassified	0.0779475156
+UniRef50_UPI00040EC10A: LysR family transcriptional regulator	0.0779402853
+UniRef50_UPI00040EC10A: LysR family transcriptional regulator|unclassified	0.0779402853
+UniRef50_UPI00047840D2: aldo/keto reductase	0.0779379026
+UniRef50_UPI00047840D2: aldo/keto reductase|unclassified	0.0779379026
+UniRef50_Q3UK76	0.0779361555
+UniRef50_Q3UK76|unclassified	0.0779361555
+UniRef50_UPI0003B3DDEE: major tail tube protein	0.0779324174
+UniRef50_UPI0003B3DDEE: major tail tube protein|unclassified	0.0779324174
+UniRef50_UPI0004762A43: iron ABC transporter	0.0779324066
+UniRef50_UPI0004762A43: iron ABC transporter|unclassified	0.0779324066
+UniRef50_X8AC06	0.0779319901
+UniRef50_X8AC06|unclassified	0.0779319901
+UniRef50_Q0VPI7: tRNA pseudouridine synthase A	0.0779284605
+UniRef50_Q0VPI7: tRNA pseudouridine synthase A|unclassified	0.0779284605
+UniRef50_UPI00037DA027: hypothetical protein	0.0779269771
+UniRef50_UPI00037DA027: hypothetical protein|unclassified	0.0779269771
+UniRef50_UPI0004725EBD: chromosomal replication initiator protein DnaA, partial	0.0779234372
+UniRef50_UPI0004725EBD: chromosomal replication initiator protein DnaA, partial|unclassified	0.0779234372
+UniRef50_UPI00047A7B69: glycine/betaine ABC transporter	0.0779191938
+UniRef50_UPI00047A7B69: glycine/betaine ABC transporter|unclassified	0.0779191938
+UniRef50_F6ER42	0.0779169347
+UniRef50_F6ER42|unclassified	0.0779169347
+UniRef50_W6DM23: Capsule polysaccharide export protein	0.0779147220
+UniRef50_W6DM23: Capsule polysaccharide export protein|unclassified	0.0779147220
+UniRef50_UPI000462907B: PREDICTED: nucleoside diphosphate kinase 3	0.0779098276
+UniRef50_UPI000462907B: PREDICTED: nucleoside diphosphate kinase 3|unclassified	0.0779098276
+UniRef50_UPI0003093DAF: hypothetical protein	0.0779083015
+UniRef50_UPI0003093DAF: hypothetical protein|unclassified	0.0779083015
+UniRef50_UPI0004672B22: thiamine ABC transporter ATP-binding protein	0.0779078107
+UniRef50_UPI0004672B22: thiamine ABC transporter ATP-binding protein|unclassified	0.0779078107
+UniRef50_G4CGK8	0.0779057327
+UniRef50_G4CGK8|unclassified	0.0779057327
+UniRef50_UPI000333F6F9: PREDICTED: basic proline-rich protein-like	0.0778977757
+UniRef50_UPI000333F6F9: PREDICTED: basic proline-rich protein-like|unclassified	0.0778977757
+UniRef50_R6KZL2: L-serine dehydratase iron-sulfur-dependent alpha subunit	0.0778916854
+UniRef50_R6KZL2: L-serine dehydratase iron-sulfur-dependent alpha subunit|unclassified	0.0778916854
+UniRef50_Z5LDC7	0.0778822902
+UniRef50_Z5LDC7|unclassified	0.0778822902
+UniRef50_UPI0002DB68C6: hypothetical protein	0.0778820883
+UniRef50_UPI0002DB68C6: hypothetical protein|unclassified	0.0778820883
+UniRef50_UPI0003700D01: hypothetical protein	0.0778793575
+UniRef50_UPI0003700D01: hypothetical protein|unclassified	0.0778793575
+UniRef50_UPI000262B99D: RND efflux system outer membrane lipoprotein	0.0778741545
+UniRef50_UPI000262B99D: RND efflux system outer membrane lipoprotein|unclassified	0.0778741545
+UniRef50_C3Y4H1	0.0778627944
+UniRef50_C3Y4H1|unclassified	0.0778627944
+UniRef50_W9B261: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome	0.0778611664
+UniRef50_W9B261: Klebsiella pneumoniae str. Kp52.145, chromosome, complete genome|unclassified	0.0778611664
+UniRef50_A5IAJ7: Inner membrane protein	0.0778601716
+UniRef50_A5IAJ7: Inner membrane protein|unclassified	0.0778601716
+UniRef50_UPI0003016AD5: hypothetical protein	0.0778566439
+UniRef50_UPI0003016AD5: hypothetical protein|unclassified	0.0778566439
+UniRef50_UPI0004749E2C: peptidase S9	0.0778508791
+UniRef50_UPI0004749E2C: peptidase S9|unclassified	0.0778508791
+UniRef50_W5XDX1	0.0778427120
+UniRef50_W5XDX1|unclassified	0.0778427120
+UniRef50_UPI0003761033: hypothetical protein	0.0778422233
+UniRef50_UPI0003761033: hypothetical protein|unclassified	0.0778422233
+UniRef50_UPI000225AE96: prolipoprotein diacylglyceryl transferase	0.0778420505
+UniRef50_UPI000225AE96: prolipoprotein diacylglyceryl transferase|unclassified	0.0778420505
+UniRef50_W5XB57: Peptidyl-prolyl cis-trans isomerase	0.0778362054
+UniRef50_W5XB57: Peptidyl-prolyl cis-trans isomerase|unclassified	0.0778362054
+UniRef50_I0GNK9	0.0778346658
+UniRef50_I0GNK9|unclassified	0.0778346658
+UniRef50_U2ZDH4: UPF0301 protein MBE-BAB_1780	0.0778327953
+UniRef50_U2ZDH4: UPF0301 protein MBE-BAB_1780|unclassified	0.0778327953
+UniRef50_UPI00036378DA: hypothetical protein	0.0778323930
+UniRef50_UPI00036378DA: hypothetical protein|unclassified	0.0778323930
+UniRef50_UPI000464BD39: peptide ABC transporter ATP-binding protein	0.0778319110
+UniRef50_UPI000464BD39: peptide ABC transporter ATP-binding protein|unclassified	0.0778319110
+UniRef50_Q6ACB0: Adenylosuccinate synthetase	0.0778301513
+UniRef50_Q6ACB0: Adenylosuccinate synthetase|unclassified	0.0778301513
+UniRef50_UPI000359C10F: PREDICTED: serine hydroxymethyltransferase, mitochondrial-like	0.0778294248
+UniRef50_UPI000359C10F: PREDICTED: serine hydroxymethyltransferase, mitochondrial-like|unclassified	0.0778294248
+UniRef50_UPI0003B5B2F2: GntR family transcriptional regulator	0.0778242369
+UniRef50_UPI0003B5B2F2: GntR family transcriptional regulator|unclassified	0.0778242369
+UniRef50_UPI000463A0B9: hypothetical protein	0.0778210686
+UniRef50_UPI000463A0B9: hypothetical protein|unclassified	0.0778210686
+UniRef50_A3WHY3: Transglycosylase SLT domain protein	0.0778174510
+UniRef50_A3WHY3: Transglycosylase SLT domain protein|unclassified	0.0778174510
+UniRef50_UPI000476F2C5: flagellin	0.0778160218
+UniRef50_UPI000476F2C5: flagellin|unclassified	0.0778160218
+UniRef50_P18256: Threonine--tRNA ligase 2	0.0778120417
+UniRef50_P18256: Threonine--tRNA ligase 2|unclassified	0.0778120417
+UniRef50_B8AY07	0.0778103981
+UniRef50_B8AY07|unclassified	0.0778103981
+UniRef50_UPI00035C57AE: hypothetical protein	0.0778087493
+UniRef50_UPI00035C57AE: hypothetical protein|unclassified	0.0778087493
+UniRef50_UPI00037397A9: hypothetical protein	0.0778040202
+UniRef50_UPI00037397A9: hypothetical protein|unclassified	0.0778040202
+UniRef50_Q97I94: tRNA (guanine-N(1)-)-methyltransferase	0.0778037980
+UniRef50_Q97I94: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0778037980
+UniRef50_UPI0004788926: RNA polymerase subunit sigma-24	0.0777994202
+UniRef50_UPI0004788926: RNA polymerase subunit sigma-24|unclassified	0.0777994202
+UniRef50_F7ZH84	0.0777991130
+UniRef50_F7ZH84|unclassified	0.0777991130
+UniRef50_C0W6R5	0.0777944953
+UniRef50_C0W6R5|unclassified	0.0777944953
+UniRef50_UPI00045E62A3: hypothetical protein	0.0777921449
+UniRef50_UPI00045E62A3: hypothetical protein|unclassified	0.0777921449
+UniRef50_E0TDR8: Mazg protein	0.0777828009
+UniRef50_E0TDR8: Mazg protein|unclassified	0.0777828009
+UniRef50_C1D5P7: Diheme cytochrome c	0.0777757877
+UniRef50_C1D5P7: Diheme cytochrome c|unclassified	0.0777757877
+UniRef50_UPI0002559890: iron ABC transporter ATP-binding protein	0.0777695560
+UniRef50_UPI0002559890: iron ABC transporter ATP-binding protein|unclassified	0.0777695560
+UniRef50_A2SNL7: Essential for conjugative transfer protein	0.0777691836
+UniRef50_A2SNL7: Essential for conjugative transfer protein|unclassified	0.0777691836
+UniRef50_Q688E7	0.0777629130
+UniRef50_Q688E7|unclassified	0.0777629130
+UniRef50_UPI00036140FE: hypothetical protein	0.0777593028
+UniRef50_UPI00036140FE: hypothetical protein|unclassified	0.0777593028
+UniRef50_P00927: Threonine dehydratase, mitochondrial	0.0777554369
+UniRef50_P00927: Threonine dehydratase, mitochondrial|unclassified	0.0777554369
+UniRef50_UPI0002E39810: hypothetical protein	0.0777543221
+UniRef50_UPI0002E39810: hypothetical protein|unclassified	0.0777543221
+UniRef50_B9XKZ0: Putative GAF sensor protein	0.0777479920
+UniRef50_B9XKZ0: Putative GAF sensor protein|unclassified	0.0777479920
+UniRef50_UPI0003A320E0: MULTISPECIES: fumarate hydratase	0.0777387870
+UniRef50_UPI0003A320E0: MULTISPECIES: fumarate hydratase|unclassified	0.0777387870
+UniRef50_UPI0003C39CE6: PREDICTED: RNA-binding protein 40-like	0.0777352230
+UniRef50_UPI0003C39CE6: PREDICTED: RNA-binding protein 40-like|unclassified	0.0777352230
+UniRef50_UPI00039C7C9E: oxidoreductase	0.0777246723
+UniRef50_UPI00039C7C9E: oxidoreductase|unclassified	0.0777246723
+UniRef50_UPI000379A26D: hypothetical protein	0.0777230675
+UniRef50_UPI000379A26D: hypothetical protein|unclassified	0.0777230675
+UniRef50_B1YHL3	0.0777175231
+UniRef50_B1YHL3|unclassified	0.0777175231
+UniRef50_UPI000255D162: ABC transporter ATP-binding subunit	0.0777113472
+UniRef50_UPI000255D162: ABC transporter ATP-binding subunit|unclassified	0.0777113472
+UniRef50_I4B0K7	0.0777060648
+UniRef50_I4B0K7|unclassified	0.0777060648
+UniRef50_UPI00036D2874: hypothetical protein	0.0777020861
+UniRef50_UPI00036D2874: hypothetical protein|unclassified	0.0777020861
+UniRef50_UPI000376ED10: hypothetical protein	0.0776892380
+UniRef50_UPI000376ED10: hypothetical protein|unclassified	0.0776892380
+UniRef50_UPI000370E1E9: hypothetical protein	0.0776833371
+UniRef50_UPI000370E1E9: hypothetical protein|unclassified	0.0776833371
+UniRef50_UPI00037B1F11: hypothetical protein	0.0776776236
+UniRef50_UPI00037B1F11: hypothetical protein|unclassified	0.0776776236
+UniRef50_M9RE00	0.0776662531
+UniRef50_M9RE00|unclassified	0.0776662531
+UniRef50_G7SI90	0.0776657019
+UniRef50_G7SI90|unclassified	0.0776657019
+UniRef50_UPI000464074D: ABC transporter substrate-binding protein	0.0776594613
+UniRef50_UPI000464074D: ABC transporter substrate-binding protein|unclassified	0.0776594613
+UniRef50_UPI0003338405: PREDICTED: l-2-hydroxyglutarate dehydrogenase, mitochondrial	0.0776521849
+UniRef50_UPI0003338405: PREDICTED: l-2-hydroxyglutarate dehydrogenase, mitochondrial|unclassified	0.0776521849
+UniRef50_UPI0003FFCE82: hypothetical protein	0.0776450987
+UniRef50_UPI0003FFCE82: hypothetical protein|unclassified	0.0776450987
+UniRef50_A1AT80: Glutamate 5-kinase	0.0776417132
+UniRef50_A1AT80: Glutamate 5-kinase|unclassified	0.0776417132
+UniRef50_UPI00037C645E: hypothetical protein	0.0776400394
+UniRef50_UPI00037C645E: hypothetical protein|unclassified	0.0776400394
+UniRef50_UPI0003609739: hypothetical protein	0.0776215990
+UniRef50_UPI0003609739: hypothetical protein|unclassified	0.0776215990
+UniRef50_UPI0003B79F54: GntR family transcriptional regulator	0.0776191051
+UniRef50_UPI0003B79F54: GntR family transcriptional regulator|unclassified	0.0776191051
+UniRef50_UPI0004411D67: hypothetical protein DICSQDRAFT_165613	0.0776163422
+UniRef50_UPI0004411D67: hypothetical protein DICSQDRAFT_165613|unclassified	0.0776163422
+UniRef50_UPI00045EC4B9: pirin	0.0776159424
+UniRef50_UPI00045EC4B9: pirin|unclassified	0.0776159424
+UniRef50_UPI000465CD92: membrane protein	0.0776069352
+UniRef50_UPI000465CD92: membrane protein|unclassified	0.0776069352
+UniRef50_UPI0004281C6D: hypothetical protein	0.0776036267
+UniRef50_UPI0004281C6D: hypothetical protein|unclassified	0.0776036267
+UniRef50_B0SZF7: Ribonuclease HII	0.0776001582
+UniRef50_B0SZF7: Ribonuclease HII|unclassified	0.0776001582
+UniRef50_Q8YWH5: Molybdopterin synthase catalytic subunit	0.0775994738
+UniRef50_Q8YWH5: Molybdopterin synthase catalytic subunit|unclassified	0.0775994738
+UniRef50_G9A9W3: Small heat shock protein ibpA 16 kDa heat shock protein A	0.0775909918
+UniRef50_G9A9W3: Small heat shock protein ibpA 16 kDa heat shock protein A|unclassified	0.0775909918
+UniRef50_UPI000476D31F: DNA gyrase subunit A	0.0775863729
+UniRef50_UPI000476D31F: DNA gyrase subunit A|unclassified	0.0775863729
+UniRef50_UPI00041C52B4: hypothetical protein	0.0775829860
+UniRef50_UPI00041C52B4: hypothetical protein|unclassified	0.0775829860
+UniRef50_I1EWK9	0.0775782535
+UniRef50_I1EWK9|unclassified	0.0775782535
+UniRef50_UPI0003005755: hypothetical protein	0.0775745563
+UniRef50_UPI0003005755: hypothetical protein|unclassified	0.0775745563
+UniRef50_K0REP6	0.0775730814
+UniRef50_K0REP6|unclassified	0.0775730814
+UniRef50_UPI0003745069: hypothetical protein	0.0775591344
+UniRef50_UPI0003745069: hypothetical protein|unclassified	0.0775591344
+UniRef50_K1VMQ3	0.0775558237
+UniRef50_K1VMQ3|unclassified	0.0775558237
+UniRef50_UPI00045EC4CD: hypothetical protein	0.0775445083
+UniRef50_UPI00045EC4CD: hypothetical protein|unclassified	0.0775445083
+UniRef50_S2Y9Y5: MJ0936 family phosphodiesterase	0.0775421257
+UniRef50_S2Y9Y5: MJ0936 family phosphodiesterase|unclassified	0.0775421257
+UniRef50_P40871: 2,3-dihydroxybenzoate-AMP ligase	0.0775403220
+UniRef50_P40871: 2,3-dihydroxybenzoate-AMP ligase|unclassified	0.0775403220
+UniRef50_P43725: Superoxide dismutase [Mn]	0.0775364523
+UniRef50_P43725: Superoxide dismutase [Mn]|unclassified	0.0775364523
+UniRef50_UPI00037CD319: hypothetical protein	0.0775355811
+UniRef50_UPI00037CD319: hypothetical protein|unclassified	0.0775355811
+UniRef50_UPI0002236A65: PREDICTED: zinc finger protein 420-like	0.0775313944
+UniRef50_UPI0002236A65: PREDICTED: zinc finger protein 420-like|unclassified	0.0775313944
+UniRef50_UPI0003B2EF55: sigma-70 family RNA polymerase sigma factor	0.0775252759
+UniRef50_UPI0003B2EF55: sigma-70 family RNA polymerase sigma factor|unclassified	0.0775252759
+UniRef50_C3LA76	0.0775245578
+UniRef50_C3LA76|unclassified	0.0775245578
+UniRef50_Q37383: NADH-ubiquinone oxidoreductase subunit 9	0.0775207336
+UniRef50_Q37383: NADH-ubiquinone oxidoreductase subunit 9|unclassified	0.0775207336
+UniRef50_UPI0002893035: lincomycin resistance protein LmrB	0.0775200088
+UniRef50_UPI0002893035: lincomycin resistance protein LmrB|unclassified	0.0775200088
+UniRef50_UPI00037764BC: hypothetical protein	0.0775195077
+UniRef50_UPI00037764BC: hypothetical protein|unclassified	0.0775195077
+UniRef50_Q08Z09	0.0775121846
+UniRef50_Q08Z09|unclassified	0.0775121846
+UniRef50_C6XM56: Flagellar hook capping protein	0.0775059322
+UniRef50_C6XM56: Flagellar hook capping protein|unclassified	0.0775059322
+UniRef50_UPI0004636746: arabinose transporter permease	0.0774937215
+UniRef50_UPI0004636746: arabinose transporter permease|unclassified	0.0774937215
+UniRef50_F7SLB9	0.0774860045
+UniRef50_F7SLB9|unclassified	0.0774860045
+UniRef50_Q3JEV6: NAD-dependent epimerase/dehydratase	0.0774788082
+UniRef50_Q3JEV6: NAD-dependent epimerase/dehydratase|unclassified	0.0774788082
+UniRef50_UPI00037B5C4C: aspartate racemase	0.0774750172
+UniRef50_UPI00037B5C4C: aspartate racemase|unclassified	0.0774750172
+UniRef50_W5X2S2: GCN5-related N-acetyltransferase	0.0774693686
+UniRef50_W5X2S2: GCN5-related N-acetyltransferase|unclassified	0.0774693686
+UniRef50_W7QSI0	0.0774676006
+UniRef50_W7QSI0|unclassified	0.0774676006
+UniRef50_D1Q268: Conserved protein	0.0774660495
+UniRef50_D1Q268: Conserved protein|unclassified	0.0774660495
+UniRef50_M8E7L0	0.0774621699
+UniRef50_M8E7L0|unclassified	0.0774621699
+UniRef50_UPI0003A6B48A: phosphoglycerate kinase	0.0774545441
+UniRef50_UPI0003A6B48A: phosphoglycerate kinase|unclassified	0.0774545441
+UniRef50_UPI0003B2FDFA: hypothetical protein	0.0774512862
+UniRef50_UPI0003B2FDFA: hypothetical protein|unclassified	0.0774512862
+UniRef50_T9QLA5: UPF0192 protein yfaS	0.0774505780
+UniRef50_T9QLA5: UPF0192 protein yfaS|unclassified	0.0774505780
+UniRef50_UPI0003B63C52: peptide permease BMEII0860	0.0774504563
+UniRef50_UPI0003B63C52: peptide permease BMEII0860|unclassified	0.0774504563
+UniRef50_UPI00040375DD: lipoprotein	0.0774449113
+UniRef50_UPI00040375DD: lipoprotein|unclassified	0.0774449113
+UniRef50_H3DRJ9	0.0774404810
+UniRef50_H3DRJ9|unclassified	0.0774404810
+UniRef50_Q0BJ01: 3-dehydroquinate synthase	0.0774401217
+UniRef50_Q0BJ01: 3-dehydroquinate synthase|unclassified	0.0774401217
+UniRef50_U6I7Y6: Zinc finger protein	0.0774389867
+UniRef50_U6I7Y6: Zinc finger protein|unclassified	0.0774389867
+UniRef50_UPI00030A82D5: hypothetical protein	0.0774304574
+UniRef50_UPI00030A82D5: hypothetical protein|unclassified	0.0774304574
+UniRef50_R1EVV7	0.0774287407
+UniRef50_R1EVV7|unclassified	0.0774287407
+UniRef50_UPI0003B41E49: lactose phosphotransferase system repressor	0.0774272453
+UniRef50_UPI0003B41E49: lactose phosphotransferase system repressor|unclassified	0.0774272453
+UniRef50_UPI00031E4492: hypothetical protein	0.0774229382
+UniRef50_UPI00031E4492: hypothetical protein|unclassified	0.0774229382
+UniRef50_F0RS19	0.0774172689
+UniRef50_F0RS19|unclassified	0.0774172689
+UniRef50_C4XLK3: DNA-directed RNA polymerase subunit alpha	0.0774158033
+UniRef50_C4XLK3: DNA-directed RNA polymerase subunit alpha|unclassified	0.0774158033
+UniRef50_UPI000474191D: hypothetical protein, partial	0.0774129815
+UniRef50_UPI000474191D: hypothetical protein, partial|unclassified	0.0774129815
+UniRef50_UPI0004785293: hypothetical protein	0.0774122974
+UniRef50_UPI0004785293: hypothetical protein|unclassified	0.0774122974
+UniRef50_UPI0003B35A72: hypothetical protein	0.0774121246
+UniRef50_UPI0003B35A72: hypothetical protein|unclassified	0.0774121246
+UniRef50_A3UNG7	0.0774101804
+UniRef50_A3UNG7|unclassified	0.0774101804
+UniRef50_R7N7X6	0.0774058311
+UniRef50_R7N7X6|unclassified	0.0774058311
+UniRef50_S6AU41	0.0774012904
+UniRef50_S6AU41|unclassified	0.0774012904
+UniRef50_UPI00037F9C07: hypothetical protein	0.0774003696
+UniRef50_UPI00037F9C07: hypothetical protein|unclassified	0.0774003696
+UniRef50_UPI0003942CF4: PREDICTED: serine/threonine-protein phosphatase 2A regulatory subunit B'''''''' subunit alpha-like isoform X1	0.0773925157
+UniRef50_UPI0003942CF4: PREDICTED: serine/threonine-protein phosphatase 2A regulatory subunit B'''''''' subunit alpha-like isoform X1|unclassified	0.0773925157
+UniRef50_N6ZUI0	0.0773867486
+UniRef50_N6ZUI0|unclassified	0.0773867486
+UniRef50_M5DUT8: Type 4 fimbrial biogenesis protein PilO	0.0773854898
+UniRef50_M5DUT8: Type 4 fimbrial biogenesis protein PilO|unclassified	0.0773854898
+UniRef50_F0RPV8: Diguanylate cyclase	0.0773827417
+UniRef50_F0RPV8: Diguanylate cyclase|unclassified	0.0773827417
+UniRef50_U1Y3U5	0.0773799395
+UniRef50_U1Y3U5|unclassified	0.0773799395
+UniRef50_G9XVW2: L-ribulose-5-phosphate 4-epimerase	0.0773621650
+UniRef50_G9XVW2: L-ribulose-5-phosphate 4-epimerase|unclassified	0.0773621650
+UniRef50_M5F4I8: 3-oxoacyl-(Acyl-carrier protein) reductase	0.0773609401
+UniRef50_M5F4I8: 3-oxoacyl-(Acyl-carrier protein) reductase|unclassified	0.0773609401
+UniRef50_UPI000471E726: ferredoxin	0.0773582187
+UniRef50_UPI000471E726: ferredoxin|unclassified	0.0773582187
+UniRef50_UPI00036C1B36: hypothetical protein	0.0773549517
+UniRef50_UPI00036C1B36: hypothetical protein|unclassified	0.0773549517
+UniRef50_UPI00046CBE01: hypothetical protein	0.0773545497
+UniRef50_UPI00046CBE01: hypothetical protein|unclassified	0.0773545497
+UniRef50_UPI000255E095: hypothetical protein	0.0773396415
+UniRef50_UPI000255E095: hypothetical protein|unclassified	0.0773396415
+UniRef50_D7AV89	0.0773383164
+UniRef50_D7AV89|unclassified	0.0773383164
+UniRef50_UPI00032989C3	0.0773255116
+UniRef50_UPI00032989C3|unclassified	0.0773255116
+UniRef50_D4HF48	0.0773247891
+UniRef50_D4HF48|unclassified	0.0773247891
+UniRef50_UPI00041E91C7: threonine dehydratase	0.0773228828
+UniRef50_UPI00041E91C7: threonine dehydratase|unclassified	0.0773228828
+UniRef50_UPI000472C798: pseudouridine synthase	0.0773201057
+UniRef50_UPI000472C798: pseudouridine synthase|unclassified	0.0773201057
+UniRef50_I4YZN1	0.0773195827
+UniRef50_I4YZN1|unclassified	0.0773195827
+UniRef50_UPI00039E00A9: hypothetical protein	0.0773180773
+UniRef50_UPI00039E00A9: hypothetical protein|unclassified	0.0773180773
+UniRef50_UPI000364AAD7: GDP-L-fucose synthase	0.0773146569
+UniRef50_UPI000364AAD7: GDP-L-fucose synthase|unclassified	0.0773146569
+UniRef50_F6GYN4	0.0773120317
+UniRef50_F6GYN4|unclassified	0.0773120317
+UniRef50_W8S4H0	0.0773098395
+UniRef50_W8S4H0|unclassified	0.0773098395
+UniRef50_UPI000360BCCD: hypothetical protein	0.0773093659
+UniRef50_UPI000360BCCD: hypothetical protein|unclassified	0.0773093659
+UniRef50_W1VQB4: Protein tex (Fragment)	0.0772975291
+UniRef50_W1VQB4: Protein tex (Fragment)|unclassified	0.0772975291
+UniRef50_UPI00037D5C30: hypothetical protein	0.0772938159
+UniRef50_UPI00037D5C30: hypothetical protein|unclassified	0.0772938159
+UniRef50_UPI00016A7FC0: mosc domain protein, partial	0.0772894531
+UniRef50_UPI00016A7FC0: mosc domain protein, partial|unclassified	0.0772894531
+UniRef50_UPI00026C78AB: DNA topoisomerase	0.0772696308
+UniRef50_UPI00026C78AB: DNA topoisomerase|unclassified	0.0772696308
+UniRef50_Q0VS17: Lipoprotein, putative	0.0772673879
+UniRef50_Q0VS17: Lipoprotein, putative|unclassified	0.0772673879
+UniRef50_A0LTD0: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.0772666958
+UniRef50_A0LTD0: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.0772666958
+UniRef50_UPI0003599277: PREDICTED: NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial	0.0772665705
+UniRef50_UPI0003599277: PREDICTED: NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial|unclassified	0.0772665705
+UniRef50_UPI0003617386: hypothetical protein	0.0772624205
+UniRef50_UPI0003617386: hypothetical protein|unclassified	0.0772624205
+UniRef50_O66847: Peptide deformylase	0.0772561622
+UniRef50_O66847: Peptide deformylase|unclassified	0.0772561622
+UniRef50_UPI0003B32DD9: 2-dehydro-3-deoxygluconokinase	0.0772441009
+UniRef50_UPI0003B32DD9: 2-dehydro-3-deoxygluconokinase|unclassified	0.0772441009
+UniRef50_Q1HTP3: W2R	0.0772435568
+UniRef50_Q1HTP3: W2R|unclassified	0.0772435568
+UniRef50_UPI00035D4353: hypothetical protein	0.0772431048
+UniRef50_UPI00035D4353: hypothetical protein|unclassified	0.0772431048
+UniRef50_UPI0002554EED: ABC transporter	0.0772393254
+UniRef50_UPI0002554EED: ABC transporter|unclassified	0.0772393254
+UniRef50_F0XXU5	0.0772346658
+UniRef50_F0XXU5|unclassified	0.0772346658
+UniRef50_Q9C641: Elongation factor G-1, mitochondrial	0.0772315858
+UniRef50_Q9C641: Elongation factor G-1, mitochondrial|unclassified	0.0772315858
+UniRef50_A0A037YW28	0.0772164193
+UniRef50_A0A037YW28|unclassified	0.0772164193
+UniRef50_Q0HXX9: TrwC protein	0.0772160442
+UniRef50_Q0HXX9: TrwC protein|unclassified	0.0772160442
+UniRef50_UPI0003FB55FF: hemolysin III	0.0772141554
+UniRef50_UPI0003FB55FF: hemolysin III|unclassified	0.0772141554
+UniRef50_UPI0003076B02: hypothetical protein	0.0772056437
+UniRef50_UPI0003076B02: hypothetical protein|unclassified	0.0772056437
+UniRef50_UPI00037F00C2: hypothetical protein	0.0772000918
+UniRef50_UPI00037F00C2: hypothetical protein|unclassified	0.0772000918
+UniRef50_UPI00036E26FB: hypothetical protein	0.0771983084
+UniRef50_UPI00036E26FB: hypothetical protein|unclassified	0.0771983084
+UniRef50_D5TV86	0.0771945052
+UniRef50_D5TV86|unclassified	0.0771945052
+UniRef50_F8IR57	0.0771920322
+UniRef50_F8IR57|unclassified	0.0771920322
+UniRef50_Q6CPI7: KLLA0E04577p	0.0771847154
+UniRef50_Q6CPI7: KLLA0E04577p|unclassified	0.0771847154
+UniRef50_UPI0002D2E18F: hypothetical protein	0.0771845114
+UniRef50_UPI0002D2E18F: hypothetical protein|unclassified	0.0771845114
+UniRef50_UPI0003732091: hypothetical protein	0.0771836802
+UniRef50_UPI0003732091: hypothetical protein|unclassified	0.0771836802
+UniRef50_O22567-2: Isoform 2 of 1-deoxy-D-xylulose-5-phosphate synthase 1, chloroplastic	0.0771769323
+UniRef50_O22567-2: Isoform 2 of 1-deoxy-D-xylulose-5-phosphate synthase 1, chloroplastic|unclassified	0.0771769323
+UniRef50_UPI0002E25CC6: hypothetical protein	0.0771670941
+UniRef50_UPI0002E25CC6: hypothetical protein|unclassified	0.0771670941
+UniRef50_UPI0003713DCA: hypothetical protein	0.0771638183
+UniRef50_UPI0003713DCA: hypothetical protein|unclassified	0.0771638183
+UniRef50_UPI000471FF9B: hypothetical protein	0.0771590472
+UniRef50_UPI000471FF9B: hypothetical protein|unclassified	0.0771590472
+UniRef50_UPI00028890CD: bacitracin ABC transporter ATP-binding protein	0.0771575004
+UniRef50_UPI00028890CD: bacitracin ABC transporter ATP-binding protein|unclassified	0.0771575004
+UniRef50_Q2UAA7: Predicted protein	0.0771569676
+UniRef50_Q2UAA7: Predicted protein|unclassified	0.0771569676
+UniRef50_UPI00026276DF: cell division protein FtsZ	0.0771496943
+UniRef50_UPI00026276DF: cell division protein FtsZ|unclassified	0.0771496943
+UniRef50_Q0AU83: Lipoprotein	0.0771481101
+UniRef50_Q0AU83: Lipoprotein|unclassified	0.0771481101
+UniRef50_K6VAZ1	0.0771459288
+UniRef50_K6VAZ1|unclassified	0.0771459288
+UniRef50_T5AK19	0.0771433042
+UniRef50_T5AK19|unclassified	0.0771433042
+UniRef50_I4KX62: Terminase, large subunit	0.0771413373
+UniRef50_I4KX62: Terminase, large subunit|unclassified	0.0771413373
+UniRef50_D6PG99: Phage HK022 GP19-like protein	0.0771370417
+UniRef50_D6PG99: Phage HK022 GP19-like protein|unclassified	0.0771370417
+UniRef50_Q87SV4: Thiamine import ATP-binding protein ThiQ	0.0771343314
+UniRef50_Q87SV4: Thiamine import ATP-binding protein ThiQ|unclassified	0.0771343314
+UniRef50_Q62465: Synaptic vesicle membrane protein VAT-1 homolog	0.0771300452
+UniRef50_Q62465: Synaptic vesicle membrane protein VAT-1 homolog|unclassified	0.0771300452
+UniRef50_Q7MD11: UPF0502 protein VVA1225	0.0771211618
+UniRef50_Q7MD11: UPF0502 protein VVA1225|unclassified	0.0771211618
+UniRef50_G9AIC8: 2,3-diketo-L-gulonate TRAP transporter small permease protein yiaM	0.0771154147
+UniRef50_G9AIC8: 2,3-diketo-L-gulonate TRAP transporter small permease protein yiaM|unclassified	0.0771154147
+UniRef50_A5UZX0: Galactokinase	0.0771079537
+UniRef50_A5UZX0: Galactokinase|unclassified	0.0771079537
+UniRef50_M0RG67	0.0771042369
+UniRef50_M0RG67|unclassified	0.0771042369
+UniRef50_UPI000262A701: cysteine synthase	0.0771023113
+UniRef50_UPI000262A701: cysteine synthase|unclassified	0.0771023113
+UniRef50_T2NWQ0: Replication initiator protein A (Fragment)	0.0770898029
+UniRef50_T2NWQ0: Replication initiator protein A (Fragment)|unclassified	0.0770898029
+UniRef50_UPI000372B1CF: hypothetical protein	0.0770698903
+UniRef50_UPI000372B1CF: hypothetical protein|unclassified	0.0770698903
+UniRef50_UPI000474C581: sodium:calcium antiporter	0.0770662064
+UniRef50_UPI000474C581: sodium:calcium antiporter|unclassified	0.0770662064
+UniRef50_G5BBF7: Metallo-beta-lactamase domain-containing protein 2	0.0770623921
+UniRef50_G5BBF7: Metallo-beta-lactamase domain-containing protein 2|unclassified	0.0770623921
+UniRef50_V5T673: Tail protein	0.0770563613
+UniRef50_V5T673: Tail protein|unclassified	0.0770563613
+UniRef50_UPI0003819C59: hypothetical protein	0.0770462230
+UniRef50_UPI0003819C59: hypothetical protein|unclassified	0.0770462230
+UniRef50_A0A058ZA26	0.0770445975
+UniRef50_A0A058ZA26|unclassified	0.0770445975
+UniRef50_P44299	0.0770387042
+UniRef50_P44299|unclassified	0.0770387042
+UniRef50_R6L7H1	0.0770326509
+UniRef50_R6L7H1|unclassified	0.0770326509
+UniRef50_UPI0003B5A114: glycyl-tRNA synthetase	0.0770233926
+UniRef50_UPI0003B5A114: glycyl-tRNA synthetase|unclassified	0.0770233926
+UniRef50_UPI0003777478: hypothetical protein	0.0770203035
+UniRef50_UPI0003777478: hypothetical protein|unclassified	0.0770203035
+UniRef50_UPI000382204E: hypothetical protein	0.0770191246
+UniRef50_UPI000382204E: hypothetical protein|unclassified	0.0770191246
+UniRef50_A0A022S2M6	0.0770041504
+UniRef50_A0A022S2M6|unclassified	0.0770041504
+UniRef50_Q9FAX1: DNA gyrase subunit B (Fragment)	0.0769995691
+UniRef50_Q9FAX1: DNA gyrase subunit B (Fragment)|unclassified	0.0769995691
+UniRef50_K2IVD0	0.0769912259
+UniRef50_K2IVD0|unclassified	0.0769912259
+UniRef50_N7M742	0.0769877066
+UniRef50_N7M742|unclassified	0.0769877066
+UniRef50_W6PQ03: Membrane protein, putative	0.0769776755
+UniRef50_W6PQ03: Membrane protein, putative|unclassified	0.0769776755
+UniRef50_K0FSN4: Bcla protein	0.0769753304
+UniRef50_K0FSN4: Bcla protein|unclassified	0.0769753304
+UniRef50_UPI000360428B: hypothetical protein	0.0769606788
+UniRef50_UPI000360428B: hypothetical protein|unclassified	0.0769606788
+UniRef50_G8P775: Late competence protein ComEC, DNA transport	0.0769581358
+UniRef50_G8P775: Late competence protein ComEC, DNA transport|unclassified	0.0769581358
+UniRef50_UPI000219528F: oxidoreductase	0.0769544063
+UniRef50_UPI000219528F: oxidoreductase|unclassified	0.0769544063
+UniRef50_Q3IY12: Thiamine import ATP-binding protein ThiQ	0.0769473216
+UniRef50_Q3IY12: Thiamine import ATP-binding protein ThiQ|unclassified	0.0769473216
+UniRef50_Q15R35: Pyridoxine/pyridoxamine 5'-phosphate oxidase	0.0769402359
+UniRef50_Q15R35: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	0.0769402359
+UniRef50_X6MR24: Cadmium-translocating P-type ATPase	0.0769337999
+UniRef50_X6MR24: Cadmium-translocating P-type ATPase|unclassified	0.0769337999
+UniRef50_UPI0003B67BD8: BolA family transcriptional regulator	0.0769292314
+UniRef50_UPI0003B67BD8: BolA family transcriptional regulator|unclassified	0.0769292314
+UniRef50_S9S9T8	0.0769249554
+UniRef50_S9S9T8|unclassified	0.0769249554
+UniRef50_UPI000471924A: hypothetical protein	0.0769224522
+UniRef50_UPI000471924A: hypothetical protein|unclassified	0.0769224522
+UniRef50_P49189: 4-trimethylaminobutyraldehyde dehydrogenase	0.0769211066
+UniRef50_P49189: 4-trimethylaminobutyraldehyde dehydrogenase|unclassified	0.0769211066
+UniRef50_Q9JLJ2: 4-trimethylaminobutyraldehyde dehydrogenase	0.0769211066
+UniRef50_Q9JLJ2: 4-trimethylaminobutyraldehyde dehydrogenase|unclassified	0.0769211066
+UniRef50_M4U7I0	0.0769190900
+UniRef50_M4U7I0|unclassified	0.0769190900
+UniRef50_A4X3N1	0.0769171375
+UniRef50_A4X3N1|unclassified	0.0769171375
+UniRef50_L7WUB3: UPF0753 protein A284_11145	0.0769136329
+UniRef50_L7WUB3: UPF0753 protein A284_11145|unclassified	0.0769136329
+UniRef50_T1XJF9	0.0769060039
+UniRef50_T1XJF9|unclassified	0.0769060039
+UniRef50_UPI000417625D: asparaginase	0.0768978079
+UniRef50_UPI000417625D: asparaginase|unclassified	0.0768978079
+UniRef50_UPI000464CA4E: hypothetical protein, partial	0.0768895476
+UniRef50_UPI000464CA4E: hypothetical protein, partial|unclassified	0.0768895476
+UniRef50_O59858: Glutathione peroxidase	0.0768810541
+UniRef50_O59858: Glutathione peroxidase|unclassified	0.0768810541
+UniRef50_A7AXT8	0.0768731129
+UniRef50_A7AXT8|unclassified	0.0768731129
+UniRef50_UPI00035C634A: hypothetical protein	0.0768700704
+UniRef50_UPI00035C634A: hypothetical protein|unclassified	0.0768700704
+UniRef50_UPI0003B69FA4: ABC transporter ATP-binding protein	0.0768663865
+UniRef50_UPI0003B69FA4: ABC transporter ATP-binding protein|unclassified	0.0768663865
+UniRef50_UPI00047DCDB5: hypothetical protein	0.0768606839
+UniRef50_UPI00047DCDB5: hypothetical protein|unclassified	0.0768606839
+UniRef50_B4STS0: Probable alpha-L-glutamate ligase	0.0768601383
+UniRef50_B4STS0: Probable alpha-L-glutamate ligase|unclassified	0.0768601383
+UniRef50_UPI00016AA290: ABC transporter related protein, partial	0.0768543778
+UniRef50_UPI00016AA290: ABC transporter related protein, partial|unclassified	0.0768543778
+UniRef50_UPI00046FAD60: hypothetical protein	0.0768492203
+UniRef50_UPI00046FAD60: hypothetical protein|unclassified	0.0768492203
+UniRef50_UPI00037731A5: hypothetical protein	0.0768447682
+UniRef50_UPI00037731A5: hypothetical protein|unclassified	0.0768447682
+UniRef50_I2BC75	0.0768432110
+UniRef50_I2BC75|unclassified	0.0768432110
+UniRef50_UPI00016C4DB7: branched-chain amino acid transport ATP-binding protein	0.0768409363
+UniRef50_UPI00016C4DB7: branched-chain amino acid transport ATP-binding protein|unclassified	0.0768409363
+UniRef50_I3TX98	0.0768404722
+UniRef50_I3TX98|unclassified	0.0768404722
+UniRef50_Q0AMG9: Protoheme IX farnesyltransferase	0.0768399035
+UniRef50_Q0AMG9: Protoheme IX farnesyltransferase|unclassified	0.0768399035
+UniRef50_UPI0002F9ED24: hypothetical protein	0.0768395226
+UniRef50_UPI0002F9ED24: hypothetical protein|unclassified	0.0768395226
+UniRef50_Q6F0E1: Thymidylate kinase	0.0768389994
+UniRef50_Q6F0E1: Thymidylate kinase|unclassified	0.0768389994
+UniRef50_W6RJG6	0.0768380396
+UniRef50_W6RJG6|unclassified	0.0768380396
+UniRef50_W8YT83	0.0768371477
+UniRef50_W8YT83|unclassified	0.0768371477
+UniRef50_UPI0003A19072: hypothetical protein	0.0768299293
+UniRef50_UPI0003A19072: hypothetical protein|unclassified	0.0768299293
+UniRef50_UPI000225ACFF: SAM-dependent methyltransferase	0.0768257031
+UniRef50_UPI000225ACFF: SAM-dependent methyltransferase|unclassified	0.0768257031
+UniRef50_Q1GN12: Lytic transglycosylase catalytic	0.0768200126
+UniRef50_Q1GN12: Lytic transglycosylase catalytic|unclassified	0.0768200126
+UniRef50_UPI000359C1F8: PREDICTED: dual specificity protein phosphatase 19-like isoform X1	0.0768177019
+UniRef50_UPI000359C1F8: PREDICTED: dual specificity protein phosphatase 19-like isoform X1|unclassified	0.0768177019
+UniRef50_W9BVJ6	0.0768146567
+UniRef50_W9BVJ6|unclassified	0.0768146567
+UniRef50_J5Q8J6	0.0768092285
+UniRef50_J5Q8J6|unclassified	0.0768092285
+UniRef50_UPI0003B72CAE: indole-3-glycerol-phosphate synthase	0.0768049062
+UniRef50_UPI0003B72CAE: indole-3-glycerol-phosphate synthase|unclassified	0.0768049062
+UniRef50_UPI0002C42D2B: PREDICTED: serine/threonine-protein kinase 11-interacting protein	0.0768048121
+UniRef50_UPI0002C42D2B: PREDICTED: serine/threonine-protein kinase 11-interacting protein|unclassified	0.0768048121
+UniRef50_Q0G120: DedA family protein	0.0768030329
+UniRef50_Q0G120: DedA family protein|unclassified	0.0768030329
+UniRef50_I1F561	0.0767959987
+UniRef50_I1F561|unclassified	0.0767959987
+UniRef50_UPI000377B6DD: hypothetical protein	0.0767834828
+UniRef50_UPI000377B6DD: hypothetical protein|unclassified	0.0767834828
+UniRef50_K2B9D1: Magnesium and cobalt efflux protein (Fragment)	0.0767813447
+UniRef50_K2B9D1: Magnesium and cobalt efflux protein (Fragment)|unclassified	0.0767813447
+UniRef50_UPI00047D0001: hypothetical protein	0.0767813302
+UniRef50_UPI00047D0001: hypothetical protein|unclassified	0.0767813302
+UniRef50_UPI0004756410: ribonucleoside-triphosphate reductase	0.0767789867
+UniRef50_UPI0004756410: ribonucleoside-triphosphate reductase|unclassified	0.0767789867
+UniRef50_UPI0003C131C4: PREDICTED: gamma aminobutyrate transaminase 1, mitochondrial-like	0.0767711570
+UniRef50_UPI0003C131C4: PREDICTED: gamma aminobutyrate transaminase 1, mitochondrial-like|unclassified	0.0767711570
+UniRef50_UPI000375EB87: hypothetical protein	0.0767698269
+UniRef50_UPI000375EB87: hypothetical protein|unclassified	0.0767698269
+UniRef50_Q9LV91: 4-alpha-glucanotransferase DPE1, chloroplastic/amyloplastic	0.0767685307
+UniRef50_Q9LV91: 4-alpha-glucanotransferase DPE1, chloroplastic/amyloplastic|unclassified	0.0767685307
+UniRef50_UPI0002F5AE73: hypothetical protein	0.0767675193
+UniRef50_UPI0002F5AE73: hypothetical protein|unclassified	0.0767675193
+UniRef50_M5U8U8: UPF0246 protein RSSM_04267	0.0767626681
+UniRef50_M5U8U8: UPF0246 protein RSSM_04267|unclassified	0.0767626681
+UniRef50_A3JLY9	0.0767591075
+UniRef50_A3JLY9|unclassified	0.0767591075
+UniRef50_UPI00040B5335: peptide ABC transporter ATP-binding protein	0.0767570373
+UniRef50_UPI00040B5335: peptide ABC transporter ATP-binding protein|unclassified	0.0767570373
+UniRef50_Q1N366: Enoyl-(Acyl carrier protein) reductase	0.0767500957
+UniRef50_Q1N366: Enoyl-(Acyl carrier protein) reductase|unclassified	0.0767500957
+UniRef50_Q7V6T7: Isoprenyl transferase	0.0767457949
+UniRef50_Q7V6T7: Isoprenyl transferase|unclassified	0.0767457949
+UniRef50_Q6N799: Lipoprotein	0.0767453962
+UniRef50_Q6N799: Lipoprotein|unclassified	0.0767453962
+UniRef50_Q8XI68: Non-canonical purine NTP pyrophosphatase	0.0767436854
+UniRef50_Q8XI68: Non-canonical purine NTP pyrophosphatase|unclassified	0.0767436854
+UniRef50_UPI0003AEA946	0.0767415710
+UniRef50_UPI0003AEA946|unclassified	0.0767415710
+UniRef50_Q3SRB0: Pyridoxine 5'-phosphate synthase	0.0767385687
+UniRef50_Q3SRB0: Pyridoxine 5'-phosphate synthase|unclassified	0.0767385687
+UniRef50_L8GHN9	0.0767383856
+UniRef50_L8GHN9|unclassified	0.0767383856
+UniRef50_G8S5F2	0.0767186976
+UniRef50_G8S5F2|unclassified	0.0767186976
+UniRef50_UPI0003FC2FB7: nickel transporter	0.0767126721
+UniRef50_UPI0003FC2FB7: nickel transporter|unclassified	0.0767126721
+UniRef50_C6SLQ9	0.0767062996
+UniRef50_C6SLQ9|unclassified	0.0767062996
+UniRef50_O54067: UDP-glucuronate 5'-epimerase	0.0766959356
+UniRef50_O54067: UDP-glucuronate 5'-epimerase|unclassified	0.0766959356
+UniRef50_UPI000372CA97: hypothetical protein	0.0766927397
+UniRef50_UPI000372CA97: hypothetical protein|unclassified	0.0766927397
+UniRef50_UPI00041C993F: MULTISPECIES: indole-3-glycerol-phosphate synthase	0.0766905003
+UniRef50_UPI00041C993F: MULTISPECIES: indole-3-glycerol-phosphate synthase|unclassified	0.0766905003
+UniRef50_UPI0003D6E8B5: PREDICTED: cystathionine gamma-lyase isoform X1	0.0766879324
+UniRef50_UPI0003D6E8B5: PREDICTED: cystathionine gamma-lyase isoform X1|unclassified	0.0766879324
+UniRef50_UPI0003B7A016: choline-sulfatase	0.0766834173
+UniRef50_UPI0003B7A016: choline-sulfatase|unclassified	0.0766834173
+UniRef50_A3VKI4	0.0766815532
+UniRef50_A3VKI4|unclassified	0.0766815532
+UniRef50_UPI00038007FE: hypothetical protein, partial	0.0766808134
+UniRef50_UPI00038007FE: hypothetical protein, partial|unclassified	0.0766808134
+UniRef50_R0EB23	0.0766793277
+UniRef50_R0EB23|unclassified	0.0766793277
+UniRef50_UPI00046AB08C: hypothetical protein	0.0766785976
+UniRef50_UPI00046AB08C: hypothetical protein|unclassified	0.0766785976
+UniRef50_B2A865: Acetyl-coenzyme A carboxylase carboxyl transferase subunits beta/alpha	0.0766771739
+UniRef50_B2A865: Acetyl-coenzyme A carboxylase carboxyl transferase subunits beta/alpha|unclassified	0.0766771739
+UniRef50_UPI00034FCE61: PREDICTED: GTP cyclohydrolase 1 isoform X3	0.0766732381
+UniRef50_UPI00034FCE61: PREDICTED: GTP cyclohydrolase 1 isoform X3|unclassified	0.0766732381
+UniRef50_UPI00038092FF: hypothetical protein	0.0766730267
+UniRef50_UPI00038092FF: hypothetical protein|unclassified	0.0766730267
+UniRef50_UPI00046569ED: MULTISPECIES: hypothetical protein	0.0766717172
+UniRef50_UPI00046569ED: MULTISPECIES: hypothetical protein|unclassified	0.0766717172
+UniRef50_UPI0003706CCB: hypothetical protein	0.0766688212
+UniRef50_UPI0003706CCB: hypothetical protein|unclassified	0.0766688212
+UniRef50_UPI00034D5774: hypothetical protein	0.0766669679
+UniRef50_UPI00034D5774: hypothetical protein|unclassified	0.0766669679
+UniRef50_Q3JS16	0.0766659122
+UniRef50_Q3JS16|unclassified	0.0766659122
+UniRef50_Q58109: Imidazoleglycerol-phosphate dehydratase	0.0766633342
+UniRef50_Q58109: Imidazoleglycerol-phosphate dehydratase|unclassified	0.0766633342
+UniRef50_UPI0004711C58: hypothetical protein	0.0766631844
+UniRef50_UPI0004711C58: hypothetical protein|unclassified	0.0766631844
+UniRef50_UPI000367D5BE: hypothetical protein	0.0766584625
+UniRef50_UPI000367D5BE: hypothetical protein|unclassified	0.0766584625
+UniRef50_T0LV22	0.0766528636
+UniRef50_T0LV22|unclassified	0.0766528636
+UniRef50_UPI000416539D: hypothetical protein	0.0766486984
+UniRef50_UPI000416539D: hypothetical protein|unclassified	0.0766486984
+UniRef50_W4NCN3	0.0766449273
+UniRef50_W4NCN3|unclassified	0.0766449273
+UniRef50_UPI00046FDD20: sulfite oxidase	0.0766429624
+UniRef50_UPI00046FDD20: sulfite oxidase|unclassified	0.0766429624
+UniRef50_UPI0003944F83: carboxylesterase	0.0766419845
+UniRef50_UPI0003944F83: carboxylesterase|unclassified	0.0766419845
+UniRef50_UPI0003B5BE6D: hypothetical protein	0.0766414272
+UniRef50_UPI0003B5BE6D: hypothetical protein|unclassified	0.0766414272
+UniRef50_U4UXP2	0.0766341818
+UniRef50_U4UXP2|unclassified	0.0766341818
+UniRef50_UPI000315BFA8: hypothetical protein	0.0766336616
+UniRef50_UPI000315BFA8: hypothetical protein|unclassified	0.0766336616
+UniRef50_R1G5B3	0.0766323491
+UniRef50_R1G5B3|unclassified	0.0766323491
+UniRef50_P72871: S-adenosylmethionine synthase	0.0766239846
+UniRef50_P72871: S-adenosylmethionine synthase|unclassified	0.0766239846
+UniRef50_X8IX42	0.0766236058
+UniRef50_X8IX42|unclassified	0.0766236058
+UniRef50_A0A058ZE13	0.0766224810
+UniRef50_A0A058ZE13|unclassified	0.0766224810
+UniRef50_B3GXE2	0.0766224038
+UniRef50_B3GXE2|unclassified	0.0766224038
+UniRef50_UPI00035E68E1: hypothetical protein	0.0766062239
+UniRef50_UPI00035E68E1: hypothetical protein|unclassified	0.0766062239
+UniRef50_Q92VT5: Peptidase T-like protein RB0614	0.0765794778
+UniRef50_Q92VT5: Peptidase T-like protein RB0614|unclassified	0.0765794778
+UniRef50_A1KL82: Phosphoadenosine phosphosulfate reductase	0.0765715628
+UniRef50_A1KL82: Phosphoadenosine phosphosulfate reductase|unclassified	0.0765715628
+UniRef50_P26939: Indole-3-glycerol phosphate synthase	0.0765696998
+UniRef50_P26939: Indole-3-glycerol phosphate synthase|unclassified	0.0765696998
+UniRef50_S9QSV1: Putative lipoprotein	0.0765695308
+UniRef50_S9QSV1: Putative lipoprotein|unclassified	0.0765695308
+UniRef50_G2GZH2	0.0765692704
+UniRef50_G2GZH2|unclassified	0.0765692704
+UniRef50_I6AHH5: Electron transfer flavoprotein, alpha subunit	0.0765539261
+UniRef50_I6AHH5: Electron transfer flavoprotein, alpha subunit|unclassified	0.0765539261
+UniRef50_UPI0004715AE1: hypothetical protein, partial	0.0765525618
+UniRef50_UPI0004715AE1: hypothetical protein, partial|unclassified	0.0765525618
+UniRef50_Q2G8E3: Dual-specificity RNA methyltransferase RlmN	0.0765510343
+UniRef50_Q2G8E3: Dual-specificity RNA methyltransferase RlmN|unclassified	0.0765510343
+UniRef50_UPI00023B2B80: PREDICTED: nucleoside diphosphate kinase 2, chloroplastic isoform 2	0.0765469735
+UniRef50_UPI00023B2B80: PREDICTED: nucleoside diphosphate kinase 2, chloroplastic isoform 2|unclassified	0.0765469735
+UniRef50_UPI0003693276: hypothetical protein	0.0765368705
+UniRef50_UPI0003693276: hypothetical protein|unclassified	0.0765368705
+UniRef50_UPI00035F6099: hypothetical protein	0.0765364371
+UniRef50_UPI00035F6099: hypothetical protein|unclassified	0.0765364371
+UniRef50_N9WCQ3	0.0765314528
+UniRef50_N9WCQ3|unclassified	0.0765314528
+UniRef50_UPI0003019B24: hypothetical protein	0.0765313022
+UniRef50_UPI0003019B24: hypothetical protein|unclassified	0.0765313022
+UniRef50_Q10Z50: Beta-Ig-H3/fasciclin	0.0765292592
+UniRef50_Q10Z50: Beta-Ig-H3/fasciclin|unclassified	0.0765292592
+UniRef50_UPI00047E8722: hypothetical protein	0.0765271737
+UniRef50_UPI00047E8722: hypothetical protein|unclassified	0.0765271737
+UniRef50_A0A017I8T8	0.0765268617
+UniRef50_A0A017I8T8|unclassified	0.0765268617
+UniRef50_W5X9E0: RNA polymerase sigma factor	0.0765256689
+UniRef50_W5X9E0: RNA polymerase sigma factor|unclassified	0.0765256689
+UniRef50_UPI0003B5B988: transcription elongation factor NusA	0.0765240775
+UniRef50_UPI0003B5B988: transcription elongation factor NusA|unclassified	0.0765240775
+UniRef50_UPI0001C37F17: RNA modification enzyme, MiaB family protein	0.0765228457
+UniRef50_UPI0001C37F17: RNA modification enzyme, MiaB family protein|unclassified	0.0765228457
+UniRef50_UPI0001744D93: NADH-dependent dehydrogenase	0.0765225639
+UniRef50_UPI0001744D93: NADH-dependent dehydrogenase|unclassified	0.0765225639
+UniRef50_C7NLK0	0.0765191856
+UniRef50_C7NLK0|unclassified	0.0765191856
+UniRef50_W5XAX4: Aliphatic amidase	0.0765039893
+UniRef50_W5XAX4: Aliphatic amidase|unclassified	0.0765039893
+UniRef50_M3CVP2	0.0765033044
+UniRef50_M3CVP2|unclassified	0.0765033044
+UniRef50_UPI0001DD0483: beta-lactamase induction signal transducer, partial	0.0765017360
+UniRef50_UPI0001DD0483: beta-lactamase induction signal transducer, partial|unclassified	0.0765017360
+UniRef50_I0CYI9: Wall-associated protein	0.0764933689
+UniRef50_I0CYI9: Wall-associated protein|unclassified	0.0764933689
+UniRef50_UPI0004725A0F: hypothetical protein	0.0764893042
+UniRef50_UPI0004725A0F: hypothetical protein|unclassified	0.0764893042
+UniRef50_UPI00036BD086: hypothetical protein	0.0764881743
+UniRef50_UPI00036BD086: hypothetical protein|unclassified	0.0764881743
+UniRef50_V4Z893	0.0764879687
+UniRef50_V4Z893|unclassified	0.0764879687
+UniRef50_K8DBK5	0.0764869945
+UniRef50_K8DBK5|unclassified	0.0764869945
+UniRef50_W7AQE0	0.0764869463
+UniRef50_W7AQE0|unclassified	0.0764869463
+UniRef50_UPI000380B186: hypothetical protein	0.0764840395
+UniRef50_UPI000380B186: hypothetical protein|unclassified	0.0764840395
+UniRef50_A0A023XKD9	0.0764826492
+UniRef50_A0A023XKD9|unclassified	0.0764826492
+UniRef50_K7E016	0.0764691330
+UniRef50_K7E016|unclassified	0.0764691330
+UniRef50_B7Z0C5: CG8620, isoform B	0.0764677228
+UniRef50_B7Z0C5: CG8620, isoform B|unclassified	0.0764677228
+UniRef50_C3BAG5: ABC-2 type transporter	0.0764640502
+UniRef50_C3BAG5: ABC-2 type transporter|unclassified	0.0764640502
+UniRef50_UPI0003F7499C: 3-oxoacyl-ACP reductase	0.0764634852
+UniRef50_UPI0003F7499C: 3-oxoacyl-ACP reductase|unclassified	0.0764634852
+UniRef50_Q7NQS0: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical	0.0764627533
+UniRef50_Q7NQS0: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical|unclassified	0.0764627533
+UniRef50_I1F524	0.0764621252
+UniRef50_I1F524|unclassified	0.0764621252
+UniRef50_Q7VGA7: Tryptophan synthase beta chain	0.0764581843
+UniRef50_Q7VGA7: Tryptophan synthase beta chain|unclassified	0.0764581843
+UniRef50_E1ZD50	0.0764573635
+UniRef50_E1ZD50|unclassified	0.0764573635
+UniRef50_UPI0003F48FDB: hypothetical protein TREMEDRAFT_63328	0.0764573437
+UniRef50_UPI0003F48FDB: hypothetical protein TREMEDRAFT_63328|unclassified	0.0764573437
+UniRef50_UPI00037EA146: hypothetical protein	0.0764513804
+UniRef50_UPI00037EA146: hypothetical protein|unclassified	0.0764513804
+UniRef50_E0TBY5: UPF0262 protein PB2503_01997	0.0764416669
+UniRef50_E0TBY5: UPF0262 protein PB2503_01997|unclassified	0.0764416669
+UniRef50_UPI0002EFA82A: nucleoside triphosphate pyrophosphohydrolase	0.0764402564
+UniRef50_UPI0002EFA82A: nucleoside triphosphate pyrophosphohydrolase|unclassified	0.0764402564
+UniRef50_UPI000474DBEF: LysR family transcriptional regulator	0.0764401523
+UniRef50_UPI000474DBEF: LysR family transcriptional regulator|unclassified	0.0764401523
+UniRef50_K8CYW9	0.0764383307
+UniRef50_K8CYW9|unclassified	0.0764383307
+UniRef50_Q6AA77: Ornithine carbamoyltransferase	0.0764365343
+UniRef50_Q6AA77: Ornithine carbamoyltransferase|unclassified	0.0764365343
+UniRef50_I8SGD5: Ethanolamine utilization protein EutJ family protein	0.0764346605
+UniRef50_I8SGD5: Ethanolamine utilization protein EutJ family protein|unclassified	0.0764346605
+UniRef50_UPI000362C40C: hypothetical protein	0.0764319906
+UniRef50_UPI000362C40C: hypothetical protein|unclassified	0.0764319906
+UniRef50_U9I9G8	0.0764189329
+UniRef50_U9I9G8|unclassified	0.0764189329
+UniRef50_UPI00046B9E69	0.0764161538
+UniRef50_UPI00046B9E69|unclassified	0.0764161538
+UniRef50_Q8RFY7: Glutamate-1-semialdehyde 2,1-aminomutase	0.0764155953
+UniRef50_Q8RFY7: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0764155953
+UniRef50_UPI00036297A5: hypothetical protein	0.0764118450
+UniRef50_UPI00036297A5: hypothetical protein|unclassified	0.0764118450
+UniRef50_UPI00046CD12E: PREDICTED: putative protein TPRXL	0.0764085038
+UniRef50_UPI00046CD12E: PREDICTED: putative protein TPRXL|unclassified	0.0764085038
+UniRef50_UPI0004715612: hypothetical protein	0.0764073301
+UniRef50_UPI0004715612: hypothetical protein|unclassified	0.0764073301
+UniRef50_V7EIS0: Membrane protein	0.0763994126
+UniRef50_V7EIS0: Membrane protein|unclassified	0.0763994126
+UniRef50_A5UTU3: Peptidoglycan-binding domain 1 protein	0.0763927740
+UniRef50_A5UTU3: Peptidoglycan-binding domain 1 protein|unclassified	0.0763927740
+UniRef50_P70937: Indole-3-glycerol phosphate synthase	0.0763919059
+UniRef50_P70937: Indole-3-glycerol phosphate synthase|unclassified	0.0763919059
+UniRef50_UPI00021A445D: PREDICTED: 50S ribosomal protein L3-like	0.0763821416
+UniRef50_UPI00021A445D: PREDICTED: 50S ribosomal protein L3-like|unclassified	0.0763821416
+UniRef50_F8K305	0.0763792788
+UniRef50_F8K305|unclassified	0.0763792788
+UniRef50_UPI000372557A: arylesterase	0.0763661712
+UniRef50_UPI000372557A: arylesterase|unclassified	0.0763661712
+UniRef50_UPI000471A888: hypothetical protein	0.0763577731
+UniRef50_UPI000471A888: hypothetical protein|unclassified	0.0763577731
+UniRef50_UPI0004268327: glutathione peroxidase	0.0763532666
+UniRef50_UPI0004268327: glutathione peroxidase|unclassified	0.0763532666
+UniRef50_UPI00016C0A22: sugar phosphate isomerase/epimerase	0.0763494216
+UniRef50_UPI00016C0A22: sugar phosphate isomerase/epimerase|unclassified	0.0763494216
+UniRef50_UPI000366ED99: MULTISPECIES: 30S ribosomal protein S5	0.0763449890
+UniRef50_UPI000366ED99: MULTISPECIES: 30S ribosomal protein S5|unclassified	0.0763449890
+UniRef50_V4J822	0.0763397463
+UniRef50_V4J822|unclassified	0.0763397463
+UniRef50_UPI0004704D82: hypothetical protein	0.0763395343
+UniRef50_UPI0004704D82: hypothetical protein|unclassified	0.0763395343
+UniRef50_F0YJ84	0.0763320459
+UniRef50_F0YJ84|unclassified	0.0763320459
+UniRef50_UPI00035C39A9: hypothetical protein	0.0763311434
+UniRef50_UPI00035C39A9: hypothetical protein|unclassified	0.0763311434
+UniRef50_A8FYK6: OmpA/MotB domain protein	0.0763288731
+UniRef50_A8FYK6: OmpA/MotB domain protein|unclassified	0.0763288731
+UniRef50_UPI00037E7E5A: hypothetical protein	0.0763238678
+UniRef50_UPI00037E7E5A: hypothetical protein|unclassified	0.0763238678
+UniRef50_Q8K986: 7-cyano-7-deazaguanine synthase	0.0763232808
+UniRef50_Q8K986: 7-cyano-7-deazaguanine synthase|unclassified	0.0763232808
+UniRef50_M9R9C5: ATPase MipZ	0.0763219175
+UniRef50_M9R9C5: ATPase MipZ|unclassified	0.0763219175
+UniRef50_UPI00047DBAA4: hypothetical protein	0.0763187165
+UniRef50_UPI00047DBAA4: hypothetical protein|unclassified	0.0763187165
+UniRef50_N6Z5V1	0.0763175506
+UniRef50_N6Z5V1|unclassified	0.0763175506
+UniRef50_UPI0003292D12: PREDICTED: neuroblastoma breakpoint family member 4-like	0.0763105975
+UniRef50_UPI0003292D12: PREDICTED: neuroblastoma breakpoint family member 4-like|unclassified	0.0763105975
+UniRef50_UPI0003B68CBF: isomerase	0.0763089280
+UniRef50_UPI0003B68CBF: isomerase|unclassified	0.0763089280
+UniRef50_UPI0003506E3F	0.0763041013
+UniRef50_UPI0003506E3F|unclassified	0.0763041013
+UniRef50_Q65MD5: UPF0753 protein BLi00845/BL00917	0.0763015766
+UniRef50_Q65MD5: UPF0753 protein BLi00845/BL00917|unclassified	0.0763015766
+UniRef50_UPI0004221264: hypothetical protein	0.0763010738
+UniRef50_UPI0004221264: hypothetical protein|unclassified	0.0763010738
+UniRef50_Q7UTH1: Uridylate kinase	0.0762987216
+UniRef50_Q7UTH1: Uridylate kinase|unclassified	0.0762987216
+UniRef50_Q21Y67: ATP-dependent Clp protease proteolytic subunit	0.0762928405
+UniRef50_Q21Y67: ATP-dependent Clp protease proteolytic subunit|unclassified	0.0762928405
+UniRef50_M1VHU3	0.0762870063
+UniRef50_M1VHU3|unclassified	0.0762870063
+UniRef50_UPI000300D7E5: hypothetical protein	0.0762740188
+UniRef50_UPI000300D7E5: hypothetical protein|unclassified	0.0762740188
+UniRef50_UPI00036006D9: hypothetical protein	0.0762736121
+UniRef50_UPI00036006D9: hypothetical protein|unclassified	0.0762736121
+UniRef50_Q8CUS7: Adenine deaminase	0.0762716771
+UniRef50_Q8CUS7: Adenine deaminase|unclassified	0.0762716771
+UniRef50_S7TBY4: Heat shock protein Hsp20	0.0762653887
+UniRef50_S7TBY4: Heat shock protein Hsp20|unclassified	0.0762653887
+UniRef50_UPI000381C43F: hypothetical protein	0.0762606880
+UniRef50_UPI000381C43F: hypothetical protein|unclassified	0.0762606880
+UniRef50_UPI0002658C40: PREDICTED: 3-hydroxyisobutyrate dehydrogenase, mitochondrial-like	0.0762555971
+UniRef50_UPI0002658C40: PREDICTED: 3-hydroxyisobutyrate dehydrogenase, mitochondrial-like|unclassified	0.0762555971
+UniRef50_UPI0004688F60: hypothetical protein	0.0762422723
+UniRef50_UPI0004688F60: hypothetical protein|unclassified	0.0762422723
+UniRef50_UPI0003B6BCB8: peptidase M24	0.0762362003
+UniRef50_UPI0003B6BCB8: peptidase M24|unclassified	0.0762362003
+UniRef50_A0A024E2E4: Flp pilus assembly protein CpaB	0.0762341431
+UniRef50_A0A024E2E4: Flp pilus assembly protein CpaB|unclassified	0.0762341431
+UniRef50_UPI00036C63C0: hypothetical protein	0.0762311213
+UniRef50_UPI00036C63C0: hypothetical protein|unclassified	0.0762311213
+UniRef50_C5BLW1: Type IV pilus biogenesis/stability protein PilW	0.0762263536
+UniRef50_C5BLW1: Type IV pilus biogenesis/stability protein PilW|unclassified	0.0762263536
+UniRef50_A0A024JE69: Similar to Saccharomyces cerevisiae YNL005C MRP7 Mitochondrial ribosomal protein of the large subunit	0.0762248520
+UniRef50_A0A024JE69: Similar to Saccharomyces cerevisiae YNL005C MRP7 Mitochondrial ribosomal protein of the large subunit|unclassified	0.0762248520
+UniRef50_UPI00047CCC4C: 3-oxoacyl-ACP synthase	0.0762228964
+UniRef50_UPI00047CCC4C: 3-oxoacyl-ACP synthase|unclassified	0.0762228964
+UniRef50_D8Q0W0	0.0762145946
+UniRef50_D8Q0W0|unclassified	0.0762145946
+UniRef50_K8NG23	0.0762060981
+UniRef50_K8NG23|unclassified	0.0762060981
+UniRef50_R5WB66	0.0762045771
+UniRef50_R5WB66|unclassified	0.0762045771
+UniRef50_G9Z0N4	0.0762008752
+UniRef50_G9Z0N4|unclassified	0.0762008752
+UniRef50_W8R6L2	0.0761992495
+UniRef50_W8R6L2|unclassified	0.0761992495
+UniRef50_S9QQA7: pH adaptation potassium efflux system a	0.0761980942
+UniRef50_S9QQA7: pH adaptation potassium efflux system a|unclassified	0.0761980942
+UniRef50_UPI00030BE5D8: hypothetical protein	0.0761870320
+UniRef50_UPI00030BE5D8: hypothetical protein|unclassified	0.0761870320
+UniRef50_J0NSU5	0.0761797816
+UniRef50_J0NSU5|unclassified	0.0761797816
+UniRef50_D7WCK0: Epstein-Barr nuclear antigen 1 domain protein	0.0761779074
+UniRef50_D7WCK0: Epstein-Barr nuclear antigen 1 domain protein|unclassified	0.0761779074
+UniRef50_UPI000469B8F7: betaine-aldehyde dehydrogenase	0.0761748517
+UniRef50_UPI000469B8F7: betaine-aldehyde dehydrogenase|unclassified	0.0761748517
+UniRef50_UPI00046E703A: hypothetical protein	0.0761703009
+UniRef50_UPI00046E703A: hypothetical protein|unclassified	0.0761703009
+UniRef50_Q0AK51	0.0761689023
+UniRef50_Q0AK51|unclassified	0.0761689023
+UniRef50_UPI00036FAE94: hypothetical protein	0.0761611447
+UniRef50_UPI00036FAE94: hypothetical protein|unclassified	0.0761611447
+UniRef50_UPI00037E211F: hypothetical protein	0.0761595745
+UniRef50_UPI00037E211F: hypothetical protein|unclassified	0.0761595745
+UniRef50_P0CE22: Glycine--tRNA ligase	0.0761513851
+UniRef50_P0CE22: Glycine--tRNA ligase|unclassified	0.0761513851
+UniRef50_Q0FY41	0.0761503296
+UniRef50_Q0FY41|unclassified	0.0761503296
+UniRef50_UPI0003812015: hypothetical protein	0.0761502520
+UniRef50_UPI0003812015: hypothetical protein|unclassified	0.0761502520
+UniRef50_U6RNS5	0.0761499870
+UniRef50_U6RNS5|unclassified	0.0761499870
+UniRef50_X0RX48	0.0761416411
+UniRef50_X0RX48|unclassified	0.0761416411
+UniRef50_G4ADW6: PmbA protein	0.0761358430
+UniRef50_G4ADW6: PmbA protein|unclassified	0.0761358430
+UniRef50_UPI0002E5241E: hypothetical protein	0.0761352724
+UniRef50_UPI0002E5241E: hypothetical protein|unclassified	0.0761352724
+UniRef50_UPI00047AC42C: hypothetical protein	0.0761294941
+UniRef50_UPI00047AC42C: hypothetical protein|unclassified	0.0761294941
+UniRef50_UPI00035C4E3D: hypothetical protein	0.0761259862
+UniRef50_UPI00035C4E3D: hypothetical protein|unclassified	0.0761259862
+UniRef50_Q2S1E4: Adenylate kinase	0.0761167009
+UniRef50_Q2S1E4: Adenylate kinase|unclassified	0.0761167009
+UniRef50_M4VHL0: Glyoxalase family protein	0.0761139071
+UniRef50_M4VHL0: Glyoxalase family protein|unclassified	0.0761139071
+UniRef50_M5G1A9	0.0760971151
+UniRef50_M5G1A9|unclassified	0.0760971151
+UniRef50_UPI0003457952: glutathione S-transferase	0.0760962427
+UniRef50_UPI0003457952: glutathione S-transferase|unclassified	0.0760962427
+UniRef50_W6LRE5	0.0760956570
+UniRef50_W6LRE5|unclassified	0.0760956570
+UniRef50_F7KI55: Excinuclease ABC subunit A	0.0760929412
+UniRef50_F7KI55: Excinuclease ABC subunit A|unclassified	0.0760929412
+UniRef50_UPI00047E7BA7: TetR family transcriptional regulator	0.0760822701
+UniRef50_UPI00047E7BA7: TetR family transcriptional regulator|unclassified	0.0760822701
+UniRef50_I3DVS9: Ribosylpyrimidine nucleosidase	0.0760765127
+UniRef50_I3DVS9: Ribosylpyrimidine nucleosidase|unclassified	0.0760765127
+UniRef50_UPI00047B1D21: DNA gyrase subunit A	0.0760752393
+UniRef50_UPI00047B1D21: DNA gyrase subunit A|unclassified	0.0760752393
+UniRef50_UPI00036437A2: hypothetical protein	0.0760750511
+UniRef50_UPI00036437A2: hypothetical protein|unclassified	0.0760750511
+UniRef50_UPI00037D0482: 50S ribosomal protein L6	0.0760616858
+UniRef50_UPI00037D0482: 50S ribosomal protein L6|unclassified	0.0760616858
+UniRef50_A3JPU5: 27kDa outer membrane protein	0.0760595959
+UniRef50_A3JPU5: 27kDa outer membrane protein|unclassified	0.0760595959
+UniRef50_A5CXT4: Adenylate kinase	0.0760578428
+UniRef50_A5CXT4: Adenylate kinase|unclassified	0.0760578428
+UniRef50_UPI0003458B5D: hypothetical protein	0.0760511323
+UniRef50_UPI0003458B5D: hypothetical protein|unclassified	0.0760511323
+UniRef50_M9EHT3	0.0760452182
+UniRef50_M9EHT3|unclassified	0.0760452182
+UniRef50_D7A095: Phage portal protein, HK97 family	0.0760419813
+UniRef50_D7A095: Phage portal protein, HK97 family|unclassified	0.0760419813
+UniRef50_S6F6F3	0.0760417330
+UniRef50_S6F6F3|unclassified	0.0760417330
+UniRef50_UPI00037622F6: hypothetical protein, partial	0.0760415596
+UniRef50_UPI00037622F6: hypothetical protein, partial|unclassified	0.0760415596
+UniRef50_P46796: Glyceraldehyde-3-phosphate dehydrogenase (Fragment)	0.0760317169
+UniRef50_P46796: Glyceraldehyde-3-phosphate dehydrogenase (Fragment)|unclassified	0.0760317169
+UniRef50_UPI0003723891: hypothetical protein	0.0760243320
+UniRef50_UPI0003723891: hypothetical protein|unclassified	0.0760243320
+UniRef50_X2MFL8	0.0760226721
+UniRef50_X2MFL8|unclassified	0.0760226721
+UniRef50_UPI0004745C9C: hypothetical protein, partial	0.0760127561
+UniRef50_UPI0004745C9C: hypothetical protein, partial|unclassified	0.0760127561
+UniRef50_A3CL81: Glutamate-1-semialdehyde 2,1-aminomutase	0.0760101677
+UniRef50_A3CL81: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0760101677
+UniRef50_UPI0002882AD3: outer membrane protein PgaA, partial	0.0760098956
+UniRef50_UPI0002882AD3: outer membrane protein PgaA, partial|unclassified	0.0760098956
+UniRef50_UPI00040FECDD: hypothetical protein	0.0760064681
+UniRef50_UPI00040FECDD: hypothetical protein|unclassified	0.0760064681
+UniRef50_UPI000381E9A4: hypothetical protein	0.0760050101
+UniRef50_UPI000381E9A4: hypothetical protein|unclassified	0.0760050101
+UniRef50_A4SJY9	0.0760041987
+UniRef50_A4SJY9|unclassified	0.0760041987
+UniRef50_W8B6C3	0.0760031006
+UniRef50_W8B6C3|unclassified	0.0760031006
+UniRef50_UPI00041EAEC4: outer membrane-specific lipoprotein transporter subunit LolE	0.0760026878
+UniRef50_UPI00041EAEC4: outer membrane-specific lipoprotein transporter subunit LolE|unclassified	0.0760026878
+UniRef50_UPI0003FBF5FE: peptidylprolyl isomerase	0.0759982169
+UniRef50_UPI0003FBF5FE: peptidylprolyl isomerase|unclassified	0.0759982169
+UniRef50_R9IQG3	0.0759959616
+UniRef50_R9IQG3|unclassified	0.0759959616
+UniRef50_Q837G3: Formamidopyrimidine-DNA glycosylase	0.0759899654
+UniRef50_Q837G3: Formamidopyrimidine-DNA glycosylase|unclassified	0.0759899654
+UniRef50_UPI00036C2A12: hypothetical protein	0.0759838704
+UniRef50_UPI00036C2A12: hypothetical protein|unclassified	0.0759838704
+UniRef50_UPI00046411BA: diaminopimelate decarboxylase, partial	0.0759705462
+UniRef50_UPI00046411BA: diaminopimelate decarboxylase, partial|unclassified	0.0759705462
+UniRef50_O94255: Carbonic anhydrase	0.0759695081
+UniRef50_O94255: Carbonic anhydrase|unclassified	0.0759695081
+UniRef50_D6YPZ0: 47 kDa protein	0.0759662007
+UniRef50_D6YPZ0: 47 kDa protein|unclassified	0.0759662007
+UniRef50_Q6ZAX8	0.0759589831
+UniRef50_Q6ZAX8|unclassified	0.0759589831
+UniRef50_B5YDT1: Histidine--tRNA ligase	0.0759464011
+UniRef50_B5YDT1: Histidine--tRNA ligase|unclassified	0.0759464011
+UniRef50_UPI00037D7966: hypothetical protein	0.0759442396
+UniRef50_UPI00037D7966: hypothetical protein|unclassified	0.0759442396
+UniRef50_UPI000474F742: histidine kinase	0.0759414728
+UniRef50_UPI000474F742: histidine kinase|unclassified	0.0759414728
+UniRef50_O33925: Methionine--tRNA ligase	0.0759405534
+UniRef50_O33925: Methionine--tRNA ligase|unclassified	0.0759405534
+UniRef50_UPI00037D6934: hypothetical protein	0.0759392043
+UniRef50_UPI00037D6934: hypothetical protein|unclassified	0.0759392043
+UniRef50_C6PR80	0.0759373739
+UniRef50_C6PR80|unclassified	0.0759373739
+UniRef50_UPI0003B46C17: phosphoheptose isomerase	0.0759296011
+UniRef50_UPI0003B46C17: phosphoheptose isomerase|unclassified	0.0759296011
+UniRef50_A0A014NGT7	0.0759266324
+UniRef50_A0A014NGT7|unclassified	0.0759266324
+UniRef50_UPI00037A16A9: hypothetical protein	0.0759206012
+UniRef50_UPI00037A16A9: hypothetical protein|unclassified	0.0759206012
+UniRef50_V4RPY8: Phage portal protein	0.0759172309
+UniRef50_V4RPY8: Phage portal protein|unclassified	0.0759172309
+UniRef50_W4KGF7	0.0759163549
+UniRef50_W4KGF7|unclassified	0.0759163549
+UniRef50_UPI0003792340: hypothetical protein	0.0759123330
+UniRef50_UPI0003792340: hypothetical protein|unclassified	0.0759123330
+UniRef50_Q8ETS6: Hypothetical conserved protein	0.0759111207
+UniRef50_Q8ETS6: Hypothetical conserved protein|unclassified	0.0759111207
+UniRef50_A9H7P2: Putative secretion protein, HlyD-family	0.0759050118
+UniRef50_A9H7P2: Putative secretion protein, HlyD-family|unclassified	0.0759050118
+UniRef50_Q74LG2: CTP synthase	0.0758905796
+UniRef50_Q74LG2: CTP synthase|unclassified	0.0758905796
+UniRef50_R4Z526	0.0758893906
+UniRef50_R4Z526|unclassified	0.0758893906
+UniRef50_UPI0003D251D8: PREDICTED: putative protein TPRXL-like, partial	0.0758816084
+UniRef50_UPI0003D251D8: PREDICTED: putative protein TPRXL-like, partial|unclassified	0.0758816084
+UniRef50_UPI0003821C2D: hypothetical protein	0.0758774073
+UniRef50_UPI0003821C2D: hypothetical protein|unclassified	0.0758774073
+UniRef50_UPI000470927F: deoxyribose mutarotase	0.0758700112
+UniRef50_UPI000470927F: deoxyribose mutarotase|unclassified	0.0758700112
+UniRef50_B1ZUJ2: NADH-quinone oxidoreductase subunit D 2	0.0758677296
+UniRef50_B1ZUJ2: NADH-quinone oxidoreductase subunit D 2|unclassified	0.0758677296
+UniRef50_UPI000315D670: hypothetical protein	0.0758664208
+UniRef50_UPI000315D670: hypothetical protein|unclassified	0.0758664208
+UniRef50_O34374: Putative cytochrome P450 YjiB	0.0758661518
+UniRef50_O34374: Putative cytochrome P450 YjiB|unclassified	0.0758661518
+UniRef50_B1IIC4: Iron chelate uptake ABC transporter, FeCT family, solute-binding protein	0.0758653552
+UniRef50_B1IIC4: Iron chelate uptake ABC transporter, FeCT family, solute-binding protein|unclassified	0.0758653552
+UniRef50_UPI0003B41584: zinc transporter	0.0758624822
+UniRef50_UPI0003B41584: zinc transporter|unclassified	0.0758624822
+UniRef50_G8QQL0: Succinate dehydrogenase/fumarate reductase flavoprotein subunit	0.0758613519
+UniRef50_G8QQL0: Succinate dehydrogenase/fumarate reductase flavoprotein subunit|unclassified	0.0758613519
+UniRef50_W8S815	0.0758607528
+UniRef50_W8S815|unclassified	0.0758607528
+UniRef50_D8LYP9: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_1	0.0758576072
+UniRef50_D8LYP9: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_1|unclassified	0.0758576072
+UniRef50_UPI00047CA240: hypothetical protein	0.0758559799
+UniRef50_UPI00047CA240: hypothetical protein|unclassified	0.0758559799
+UniRef50_D1BAR4	0.0758515062
+UniRef50_D1BAR4|unclassified	0.0758515062
+UniRef50_UPI000464FB82: hypothetical protein	0.0758484265
+UniRef50_UPI000464FB82: hypothetical protein|unclassified	0.0758484265
+UniRef50_B7KLG3: Hydroxylamine reductase	0.0758459639
+UniRef50_B7KLG3: Hydroxylamine reductase|unclassified	0.0758459639
+UniRef50_U4LKY3	0.0758447685
+UniRef50_U4LKY3|unclassified	0.0758447685
+UniRef50_UPI00037CC022: hypothetical protein, partial	0.0758422807
+UniRef50_UPI00037CC022: hypothetical protein, partial|unclassified	0.0758422807
+UniRef50_UPI00040A3102: hypothetical protein	0.0758403408
+UniRef50_UPI00040A3102: hypothetical protein|unclassified	0.0758403408
+UniRef50_UPI000374F744: hypothetical protein	0.0758399870
+UniRef50_UPI000374F744: hypothetical protein|unclassified	0.0758399870
+UniRef50_D2Q478: Spermidine synthase-like protein	0.0758354770
+UniRef50_D2Q478: Spermidine synthase-like protein|unclassified	0.0758354770
+UniRef50_Q8TQ79: Enolase	0.0758302018
+UniRef50_Q8TQ79: Enolase|unclassified	0.0758302018
+UniRef50_UPI0003627C1A: hypothetical protein	0.0758262266
+UniRef50_UPI0003627C1A: hypothetical protein|unclassified	0.0758262266
+UniRef50_UPI00047DB330: D-ala-D-ala transporter subunit	0.0758156355
+UniRef50_UPI00047DB330: D-ala-D-ala transporter subunit|unclassified	0.0758156355
+UniRef50_UPI00037A1942: hypothetical protein	0.0758118364
+UniRef50_UPI00037A1942: hypothetical protein|unclassified	0.0758118364
+UniRef50_C4Z1D7: Proline--tRNA ligase	0.0758063374
+UniRef50_C4Z1D7: Proline--tRNA ligase|unclassified	0.0758063374
+UniRef50_UPI0004560A6D: hypothetical protein PFL1_03815	0.0758051058
+UniRef50_UPI0004560A6D: hypothetical protein PFL1_03815|unclassified	0.0758051058
+UniRef50_UPI000376D860: hypothetical protein	0.0758049164
+UniRef50_UPI000376D860: hypothetical protein|unclassified	0.0758049164
+UniRef50_UPI0004650AFB: enoyl-CoA hydratase	0.0757975415
+UniRef50_UPI0004650AFB: enoyl-CoA hydratase|unclassified	0.0757975415
+UniRef50_Q67PQ7: Probable dual-specificity RNA methyltransferase RlmN	0.0757972295
+UniRef50_Q67PQ7: Probable dual-specificity RNA methyltransferase RlmN|unclassified	0.0757972295
+UniRef50_V5RPW2	0.0757927936
+UniRef50_V5RPW2|unclassified	0.0757927936
+UniRef50_C0W6B7	0.0757878724
+UniRef50_C0W6B7|unclassified	0.0757878724
+UniRef50_E2BJN1	0.0757750700
+UniRef50_E2BJN1|unclassified	0.0757750700
+UniRef50_A6TVQ2: N-acetylmuramic acid 6-phosphate etherase	0.0757705129
+UniRef50_A6TVQ2: N-acetylmuramic acid 6-phosphate etherase|unclassified	0.0757705129
+UniRef50_UPI0004693CCB: hypothetical protein	0.0757605404
+UniRef50_UPI0004693CCB: hypothetical protein|unclassified	0.0757605404
+UniRef50_S6D308	0.0757579466
+UniRef50_S6D308|unclassified	0.0757579466
+UniRef50_X0R4X6: tRNA-(Ms[2]io[6]A)-hydroxylase	0.0757525920
+UniRef50_X0R4X6: tRNA-(Ms[2]io[6]A)-hydroxylase|unclassified	0.0757525920
+UniRef50_J0MXP4: Cell wall-binding repeat protein (Fragment)	0.0757433664
+UniRef50_J0MXP4: Cell wall-binding repeat protein (Fragment)|unclassified	0.0757433664
+UniRef50_UPI0003B6B463: protein phosphatase	0.0757330339
+UniRef50_UPI0003B6B463: protein phosphatase|unclassified	0.0757330339
+UniRef50_UPI000474E21F: octanoyltransferase	0.0757327111
+UniRef50_UPI000474E21F: octanoyltransferase|unclassified	0.0757327111
+UniRef50_UPI000471D4BC: hypothetical protein, partial	0.0757289558
+UniRef50_UPI000471D4BC: hypothetical protein, partial|unclassified	0.0757289558
+UniRef50_UPI00035DC205: hypothetical protein	0.0757255042
+UniRef50_UPI00035DC205: hypothetical protein|unclassified	0.0757255042
+UniRef50_Q7AJV9: Na+/H+ antiporter	0.0757251890
+UniRef50_Q7AJV9: Na+/H+ antiporter|unclassified	0.0757251890
+UniRef50_UPI0003F78AFE: serine protease	0.0757240161
+UniRef50_UPI0003F78AFE: serine protease|unclassified	0.0757240161
+UniRef50_UPI000364D8C9: hypothetical protein	0.0757008470
+UniRef50_UPI000364D8C9: hypothetical protein|unclassified	0.0757008470
+UniRef50_H0YBD4: Glutathione reductase, mitochondrial (Fragment)	0.0756924737
+UniRef50_H0YBD4: Glutathione reductase, mitochondrial (Fragment)|unclassified	0.0756924737
+UniRef50_O69556: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase	0.0756770673
+UniRef50_O69556: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase|unclassified	0.0756770673
+UniRef50_UPI0003A211FF: anthranilate synthase subunit I	0.0756747618
+UniRef50_UPI0003A211FF: anthranilate synthase subunit I|unclassified	0.0756747618
+UniRef50_UPI000375FCA8: hypothetical protein	0.0756720157
+UniRef50_UPI000375FCA8: hypothetical protein|unclassified	0.0756720157
+UniRef50_UPI0003B2FE38: hypothetical protein	0.0756716724
+UniRef50_UPI0003B2FE38: hypothetical protein|unclassified	0.0756716724
+UniRef50_W7VYN5: Cyclic diguanylate phosphodiesterase (EAL) protein	0.0756640612
+UniRef50_W7VYN5: Cyclic diguanylate phosphodiesterase (EAL) protein|unclassified	0.0756640612
+UniRef50_K0TTQ5	0.0756627809
+UniRef50_K0TTQ5|unclassified	0.0756627809
+UniRef50_UPI00021972BE: SAM-dependent methyltransferase	0.0756623899
+UniRef50_UPI00021972BE: SAM-dependent methyltransferase|unclassified	0.0756623899
+UniRef50_UPI000443B1DE: PREDICTED: erythrocyte band 7 integral membrane protein-like	0.0756607670
+UniRef50_UPI000443B1DE: PREDICTED: erythrocyte band 7 integral membrane protein-like|unclassified	0.0756607670
+UniRef50_G5JF39: BNR repeat domain protein	0.0756587339
+UniRef50_G5JF39: BNR repeat domain protein|unclassified	0.0756587339
+UniRef50_UPI0003F61E06: ABC transporter ATP-binding protein	0.0756537850
+UniRef50_UPI0003F61E06: ABC transporter ATP-binding protein|unclassified	0.0756537850
+UniRef50_B6JGY1: NnrU domain protein	0.0756491688
+UniRef50_B6JGY1: NnrU domain protein|unclassified	0.0756491688
+UniRef50_A8FH40	0.0756425082
+UniRef50_A8FH40|unclassified	0.0756425082
+UniRef50_D5ECL0	0.0756386266
+UniRef50_D5ECL0|unclassified	0.0756386266
+UniRef50_UPI000473497F: hypothetical protein	0.0756365903
+UniRef50_UPI000473497F: hypothetical protein|unclassified	0.0756365903
+UniRef50_UPI000369E1D0: hypothetical protein	0.0756343961
+UniRef50_UPI000369E1D0: hypothetical protein|unclassified	0.0756343961
+UniRef50_A0A031MHH4	0.0756316877
+UniRef50_A0A031MHH4|unclassified	0.0756316877
+UniRef50_D4DPX8	0.0756158783
+UniRef50_D4DPX8|unclassified	0.0756158783
+UniRef50_W5X9V4: 6-phosphogluconate dehydrogenase	0.0756153386
+UniRef50_W5X9V4: 6-phosphogluconate dehydrogenase|unclassified	0.0756153386
+UniRef50_UPI000405134F: N-acetylmuramic acid-6-phosphate etherase	0.0756137120
+UniRef50_UPI000405134F: N-acetylmuramic acid-6-phosphate etherase|unclassified	0.0756137120
+UniRef50_UPI0003B62E7F: phosphoribosylglycinamide formyltransferase	0.0756124351
+UniRef50_UPI0003B62E7F: phosphoribosylglycinamide formyltransferase|unclassified	0.0756124351
+UniRef50_UPI0003B3A62B: acriflavine resistance protein B	0.0756037570
+UniRef50_UPI0003B3A62B: acriflavine resistance protein B|unclassified	0.0756037570
+UniRef50_O86507: Urease subunit gamma/beta	0.0756035637
+UniRef50_O86507: Urease subunit gamma/beta|unclassified	0.0756035637
+UniRef50_P34843: Cytochrome c oxidase subunit 3	0.0755970010
+UniRef50_P34843: Cytochrome c oxidase subunit 3|unclassified	0.0755970010
+UniRef50_UPI000474188B: dTDP-4-dehydrorhamnose 3,5-epimerase	0.0755941124
+UniRef50_UPI000474188B: dTDP-4-dehydrorhamnose 3,5-epimerase|unclassified	0.0755941124
+UniRef50_UPI000373DB31: hypothetical protein	0.0755916766
+UniRef50_UPI000373DB31: hypothetical protein|unclassified	0.0755916766
+UniRef50_UPI0004786D67: hypothetical protein	0.0755870946
+UniRef50_UPI0004786D67: hypothetical protein|unclassified	0.0755870946
+UniRef50_UPI00034C3E89: hypothetical protein	0.0755815019
+UniRef50_UPI00034C3E89: hypothetical protein|unclassified	0.0755815019
+UniRef50_UPI00036A2EAE: hypothetical protein	0.0755802665
+UniRef50_UPI00036A2EAE: hypothetical protein|unclassified	0.0755802665
+UniRef50_W0RDN2: Ornithine cyclodeaminase/mu-crystallin	0.0755768212
+UniRef50_W0RDN2: Ornithine cyclodeaminase/mu-crystallin|unclassified	0.0755768212
+UniRef50_UPI000364FD6B: hypothetical protein	0.0755708550
+UniRef50_UPI000364FD6B: hypothetical protein|unclassified	0.0755708550
+UniRef50_I4JNY0: Integral membrane protein	0.0755707145
+UniRef50_I4JNY0: Integral membrane protein|unclassified	0.0755707145
+UniRef50_UPI0003752D85: hypothetical protein	0.0755615264
+UniRef50_UPI0003752D85: hypothetical protein|unclassified	0.0755615264
+UniRef50_UPI00047003BC: oligopeptidase PepB	0.0755610382
+UniRef50_UPI00047003BC: oligopeptidase PepB|unclassified	0.0755610382
+UniRef50_A7TBR2: Predicted protein	0.0755594289
+UniRef50_A7TBR2: Predicted protein|unclassified	0.0755594289
+UniRef50_P61115: Adenylate kinase	0.0755576078
+UniRef50_P61115: Adenylate kinase|unclassified	0.0755576078
+UniRef50_D5AID1: Polysaccharide biosynthesis protein	0.0755539287
+UniRef50_D5AID1: Polysaccharide biosynthesis protein|unclassified	0.0755539287
+UniRef50_UPI0003665360: hypothetical protein	0.0755517934
+UniRef50_UPI0003665360: hypothetical protein|unclassified	0.0755517934
+UniRef50_S6FDC9	0.0755420602
+UniRef50_S6FDC9|unclassified	0.0755420602
+UniRef50_UPI00020AAA71	0.0755371055
+UniRef50_UPI00020AAA71|unclassified	0.0755371055
+UniRef50_UPI000255C5E6: prephenate dehydrogenase	0.0755367207
+UniRef50_UPI000255C5E6: prephenate dehydrogenase|unclassified	0.0755367207
+UniRef50_Q0IDC6: Peptidyl-tRNA hydrolase	0.0755343052
+UniRef50_Q0IDC6: Peptidyl-tRNA hydrolase|unclassified	0.0755343052
+UniRef50_UPI00046FEB63: UTP--glucose-1-phosphate uridylyltransferase, partial	0.0755322532
+UniRef50_UPI00046FEB63: UTP--glucose-1-phosphate uridylyltransferase, partial|unclassified	0.0755322532
+UniRef50_A7I252: Glutamate-1-semialdehyde 2,1-aminomutase	0.0755258885
+UniRef50_A7I252: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0755258885
+UniRef50_UPI0003B6AC1C: hypothetical protein	0.0755204676
+UniRef50_UPI0003B6AC1C: hypothetical protein|unclassified	0.0755204676
+UniRef50_UPI000472128D: hypothetical protein, partial	0.0755184283
+UniRef50_UPI000472128D: hypothetical protein, partial|unclassified	0.0755184283
+UniRef50_UPI0003B5D030: (2Fe-2S)-binding protein	0.0755167833
+UniRef50_UPI0003B5D030: (2Fe-2S)-binding protein|unclassified	0.0755167833
+UniRef50_UPI0003729FFC: hypothetical protein	0.0755134663
+UniRef50_UPI0003729FFC: hypothetical protein|unclassified	0.0755134663
+UniRef50_W1MVN8	0.0755047650
+UniRef50_W1MVN8|unclassified	0.0755047650
+UniRef50_UPI00041F5D41: uridine kinase	0.0755031297
+UniRef50_UPI00041F5D41: uridine kinase|unclassified	0.0755031297
+UniRef50_Q7UF53: Isoprenyl transferase	0.0755017097
+UniRef50_Q7UF53: Isoprenyl transferase|unclassified	0.0755017097
+UniRef50_UPI00035C83A9: hypothetical protein	0.0754982589
+UniRef50_UPI00035C83A9: hypothetical protein|unclassified	0.0754982589
+UniRef50_K2JEA9: Flagellar basal-body rod modification protein FlgD	0.0754971139
+UniRef50_K2JEA9: Flagellar basal-body rod modification protein FlgD|unclassified	0.0754971139
+UniRef50_UPI00036E6E00: single-stranded DNA-binding protein	0.0754947824
+UniRef50_UPI00036E6E00: single-stranded DNA-binding protein|unclassified	0.0754947824
+UniRef50_UPI000363014D: hypothetical protein	0.0754918644
+UniRef50_UPI000363014D: hypothetical protein|unclassified	0.0754918644
+UniRef50_UPI00022CADB8: PREDICTED: esterase ybfF-like	0.0754909528
+UniRef50_UPI00022CADB8: PREDICTED: esterase ybfF-like|unclassified	0.0754909528
+UniRef50_G8AHC3	0.0754896847
+UniRef50_G8AHC3|unclassified	0.0754896847
+UniRef50_UPI0004754B27: hemolysin III	0.0754848296
+UniRef50_UPI0004754B27: hemolysin III|unclassified	0.0754848296
+UniRef50_UPI00016C0749: hypothetical protein	0.0754774869
+UniRef50_UPI00016C0749: hypothetical protein|unclassified	0.0754774869
+UniRef50_L1IEH2	0.0754683104
+UniRef50_L1IEH2|unclassified	0.0754683104
+UniRef50_W7XAL1: Type IV secretion system protein virB4	0.0754675719
+UniRef50_W7XAL1: Type IV secretion system protein virB4|unclassified	0.0754675719
+UniRef50_UPI000376937D: hypothetical protein	0.0754556057
+UniRef50_UPI000376937D: hypothetical protein|unclassified	0.0754556057
+UniRef50_UPI000477C582: SAM-dependent methyltransferase	0.0754487763
+UniRef50_UPI000477C582: SAM-dependent methyltransferase|unclassified	0.0754487763
+UniRef50_UPI0003F4984E: hypothetical protein TREMEDRAFT_60761	0.0754482206
+UniRef50_UPI0003F4984E: hypothetical protein TREMEDRAFT_60761|unclassified	0.0754482206
+UniRef50_F3GPW0: Putative lipoprotein (Fragment)	0.0754455949
+UniRef50_F3GPW0: Putative lipoprotein (Fragment)|unclassified	0.0754455949
+UniRef50_X2GZL0: Putative surface protein	0.0754314618
+UniRef50_X2GZL0: Putative surface protein|unclassified	0.0754314618
+UniRef50_Q3JE67: Periplasmic or secreted lipoprotein	0.0754305348
+UniRef50_Q3JE67: Periplasmic or secreted lipoprotein|unclassified	0.0754305348
+UniRef50_UPI00036213C8: hypothetical protein	0.0754162352
+UniRef50_UPI00036213C8: hypothetical protein|unclassified	0.0754162352
+UniRef50_W8FRZ6: HtrL	0.0754108443
+UniRef50_W8FRZ6: HtrL|unclassified	0.0754108443
+UniRef50_UPI000255D634: amidotransferase	0.0754096998
+UniRef50_UPI000255D634: amidotransferase|unclassified	0.0754096998
+UniRef50_UPI00037307C8: hypothetical protein	0.0754023048
+UniRef50_UPI00037307C8: hypothetical protein|unclassified	0.0754023048
+UniRef50_UPI0004691D15: C4-dicarboxylate ABC transporter permease	0.0753974521
+UniRef50_UPI0004691D15: C4-dicarboxylate ABC transporter permease|unclassified	0.0753974521
+UniRef50_UPI0004721ABE: 2-hydroxy-acid oxidase	0.0753952682
+UniRef50_UPI0004721ABE: 2-hydroxy-acid oxidase|unclassified	0.0753952682
+UniRef50_W8UX70: Pirin	0.0753871841
+UniRef50_W8UX70: Pirin|unclassified	0.0753871841
+UniRef50_L5W5D5: Pathogenicity island protein	0.0753772413
+UniRef50_L5W5D5: Pathogenicity island protein|unclassified	0.0753772413
+UniRef50_Q199U5: Thiamine biosynthesis protein (Fragment)	0.0753759307
+UniRef50_Q199U5: Thiamine biosynthesis protein (Fragment)|unclassified	0.0753759307
+UniRef50_UPI000333417B	0.0753757572
+UniRef50_UPI000333417B|unclassified	0.0753757572
+UniRef50_UPI000363BDBF: hypothetical protein	0.0753739830
+UniRef50_UPI000363BDBF: hypothetical protein|unclassified	0.0753739830
+UniRef50_UPI00034584B5: hypothetical protein	0.0753738310
+UniRef50_UPI00034584B5: hypothetical protein|unclassified	0.0753738310
+UniRef50_UPI0003B38F36: ABC transporter permease	0.0753737385
+UniRef50_UPI0003B38F36: ABC transporter permease|unclassified	0.0753737385
+UniRef50_H6RLH1: ComEC/Rec2-related protein (Modular protein)	0.0753723471
+UniRef50_H6RLH1: ComEC/Rec2-related protein (Modular protein)|unclassified	0.0753723471
+UniRef50_UPI0000E116EF: peptidase M48	0.0753708487
+UniRef50_UPI0000E116EF: peptidase M48|unclassified	0.0753708487
+UniRef50_F0LCG3: Cation transport protein chaC	0.0753665884
+UniRef50_F0LCG3: Cation transport protein chaC|unclassified	0.0753665884
+UniRef50_UPI00036EFC4D: hypothetical protein	0.0753660955
+UniRef50_UPI00036EFC4D: hypothetical protein|unclassified	0.0753660955
+UniRef50_R6VKW5: Aminoacyl-histidine dipeptidase	0.0753483377
+UniRef50_R6VKW5: Aminoacyl-histidine dipeptidase|unclassified	0.0753483377
+UniRef50_W4SPE4	0.0753430301
+UniRef50_W4SPE4|unclassified	0.0753430301
+UniRef50_R7TBI6	0.0753332676
+UniRef50_R7TBI6|unclassified	0.0753332676
+UniRef50_A0KL52: Adenylate kinase	0.0753319926
+UniRef50_A0KL52: Adenylate kinase|unclassified	0.0753319926
+UniRef50_UPI000455F0CE: hypothetical protein CONPUDRAFT_85381	0.0753310112
+UniRef50_UPI000455F0CE: hypothetical protein CONPUDRAFT_85381|unclassified	0.0753310112
+UniRef50_UPI0001CBB1BB: PREDICTED: high affinity cationic amino acid transporter 1-like	0.0753264010
+UniRef50_UPI0001CBB1BB: PREDICTED: high affinity cationic amino acid transporter 1-like|unclassified	0.0753264010
+UniRef50_UPI00047B66FE: arsenic ABC transporter ATPase	0.0753235731
+UniRef50_UPI00047B66FE: arsenic ABC transporter ATPase|unclassified	0.0753235731
+UniRef50_UPI0004642BD4: hypothetical protein	0.0753195575
+UniRef50_UPI0004642BD4: hypothetical protein|unclassified	0.0753195575
+UniRef50_UPI0003B35A22: hypothetical protein	0.0753184830
+UniRef50_UPI0003B35A22: hypothetical protein|unclassified	0.0753184830
+UniRef50_UPI0004633D38: hypothetical protein	0.0753184702
+UniRef50_UPI0004633D38: hypothetical protein|unclassified	0.0753184702
+UniRef50_UPI00036F08F2: hypothetical protein	0.0753125448
+UniRef50_UPI00036F08F2: hypothetical protein|unclassified	0.0753125448
+UniRef50_T0YXH2: GAF sensor protein	0.0753109257
+UniRef50_T0YXH2: GAF sensor protein|unclassified	0.0753109257
+UniRef50_C2Q7Y7	0.0753093005
+UniRef50_C2Q7Y7|unclassified	0.0753093005
+UniRef50_UPI000262D03C: FKBP-type peptidyl-prolyl cis-trans isomerase	0.0753065986
+UniRef50_UPI000262D03C: FKBP-type peptidyl-prolyl cis-trans isomerase|unclassified	0.0753065986
+UniRef50_Z7MRV5: EAL domain protein	0.0753054145
+UniRef50_Z7MRV5: EAL domain protein|unclassified	0.0753054145
+UniRef50_C1N090: Predicted protein	0.0753030357
+UniRef50_C1N090: Predicted protein|unclassified	0.0753030357
+UniRef50_R9TQT8	0.0753016124
+UniRef50_R9TQT8|unclassified	0.0753016124
+UniRef50_P9WIE8	0.0752948728
+UniRef50_P9WIE8|unclassified	0.0752948728
+UniRef50_A0A009F5X4: Pirin family protein	0.0752904019
+UniRef50_A0A009F5X4: Pirin family protein|unclassified	0.0752904019
+UniRef50_UPI000464CF01: hypothetical protein	0.0752851739
+UniRef50_UPI000464CF01: hypothetical protein|unclassified	0.0752851739
+UniRef50_D6PE21: Predicted flagellar hook capping protein	0.0752844984
+UniRef50_D6PE21: Predicted flagellar hook capping protein|unclassified	0.0752844984
+UniRef50_UPI0003D730BE: PREDICTED: DNA gyrase subunit B, chloroplastic/mitochondrial-like isoform X2	0.0752792234
+UniRef50_UPI0003D730BE: PREDICTED: DNA gyrase subunit B, chloroplastic/mitochondrial-like isoform X2|unclassified	0.0752792234
+UniRef50_UPI00036E7420: hypothetical protein	0.0752780081
+UniRef50_UPI00036E7420: hypothetical protein|unclassified	0.0752780081
+UniRef50_UPI00036BD14B: hypothetical protein	0.0752753889
+UniRef50_UPI00036BD14B: hypothetical protein|unclassified	0.0752753889
+UniRef50_UPI00036580BA: hypothetical protein	0.0752745652
+UniRef50_UPI00036580BA: hypothetical protein|unclassified	0.0752745652
+UniRef50_UPI000380C8C9: hypothetical protein	0.0752676631
+UniRef50_UPI000380C8C9: hypothetical protein|unclassified	0.0752676631
+UniRef50_E3EKV7	0.0752649096
+UniRef50_E3EKV7|unclassified	0.0752649096
+UniRef50_F9D6J7	0.0752630352
+UniRef50_F9D6J7|unclassified	0.0752630352
+UniRef50_Q6NAM1: Fluoroacetate dehalogenase	0.0752628312
+UniRef50_Q6NAM1: Fluoroacetate dehalogenase|unclassified	0.0752628312
+UniRef50_UPI0004669786: hypothetical protein, partial	0.0752595292
+UniRef50_UPI0004669786: hypothetical protein, partial|unclassified	0.0752595292
+UniRef50_C3CBM6: Sensory box/GGDEF	0.0752541635
+UniRef50_C3CBM6: Sensory box/GGDEF|unclassified	0.0752541635
+UniRef50_UPI0004785992: DNA polymerase III subunit alpha	0.0752528841
+UniRef50_UPI0004785992: DNA polymerase III subunit alpha|unclassified	0.0752528841
+UniRef50_W6TF97: Outer membrane protein assembly factor BamD	0.0752524488
+UniRef50_W6TF97: Outer membrane protein assembly factor BamD|unclassified	0.0752524488
+UniRef50_UPI0003C3865A: PREDICTED: cuticle collagen 1-like	0.0752505903
+UniRef50_UPI0003C3865A: PREDICTED: cuticle collagen 1-like|unclassified	0.0752505903
+UniRef50_UPI0003288C99: PREDICTED: basic proline-rich protein-like	0.0752461869
+UniRef50_UPI0003288C99: PREDICTED: basic proline-rich protein-like|unclassified	0.0752461869
+UniRef50_G2TEX1: NnrS	0.0752449471
+UniRef50_G2TEX1: NnrS|unclassified	0.0752449471
+UniRef50_Q54XM6: Electron transfer flavoprotein-ubiquinone oxidoreductase, mitochondrial	0.0752392172
+UniRef50_Q54XM6: Electron transfer flavoprotein-ubiquinone oxidoreductase, mitochondrial|unclassified	0.0752392172
+UniRef50_Q28K97: Taurine import ATP-binding protein TauB	0.0752389917
+UniRef50_Q28K97: Taurine import ATP-binding protein TauB|unclassified	0.0752389917
+UniRef50_UPI000477D463: D-alanine--D-alanine ligase	0.0752359398
+UniRef50_UPI000477D463: D-alanine--D-alanine ligase|unclassified	0.0752359398
+UniRef50_V9ZY19	0.0752352855
+UniRef50_V9ZY19|unclassified	0.0752352855
+UniRef50_UPI0003811762: hypothetical protein, partial	0.0752327709
+UniRef50_UPI0003811762: hypothetical protein, partial|unclassified	0.0752327709
+UniRef50_G6C7A1	0.0752322841
+UniRef50_G6C7A1|unclassified	0.0752322841
+UniRef50_W5XJD4: Translation initiation factor IF-2	0.0752285116
+UniRef50_W5XJD4: Translation initiation factor IF-2|unclassified	0.0752285116
+UniRef50_UPI00046527B9: diguanylate cyclase	0.0752266345
+UniRef50_UPI00046527B9: diguanylate cyclase|unclassified	0.0752266345
+UniRef50_UPI000466B9B6: Crp/Fnr family transcriptional regulator	0.0752180608
+UniRef50_UPI000466B9B6: Crp/Fnr family transcriptional regulator|unclassified	0.0752180608
+UniRef50_UPI0003B4541A: coproporphyrinogen III oxidase	0.0752164557
+UniRef50_UPI0003B4541A: coproporphyrinogen III oxidase|unclassified	0.0752164557
+UniRef50_UPI0003796568: hypothetical protein	0.0752116273
+UniRef50_UPI0003796568: hypothetical protein|unclassified	0.0752116273
+UniRef50_UPI0004440938: PREDICTED: DNA replication licensing factor mcm5-like	0.0752041594
+UniRef50_UPI0004440938: PREDICTED: DNA replication licensing factor mcm5-like|unclassified	0.0752041594
+UniRef50_UPI00047E2D14: secretion system apparatus protein SsaV	0.0752014688
+UniRef50_UPI00047E2D14: secretion system apparatus protein SsaV|unclassified	0.0752014688
+UniRef50_UPI00044142AC: hypothetical protein AURDEDRAFT_166195	0.0752008900
+UniRef50_UPI00044142AC: hypothetical protein AURDEDRAFT_166195|unclassified	0.0752008900
+UniRef50_W5X8G9: S-adenosylmethionine decarboxylase proenzyme	0.0751990267
+UniRef50_W5X8G9: S-adenosylmethionine decarboxylase proenzyme|unclassified	0.0751990267
+UniRef50_UPI0004288649: hypothetical protein	0.0751964692
+UniRef50_UPI0004288649: hypothetical protein|unclassified	0.0751964692
+UniRef50_UPI00036C34CC: hypothetical protein, partial	0.0751953489
+UniRef50_UPI00036C34CC: hypothetical protein, partial|unclassified	0.0751953489
+UniRef50_UPI0002BB08AC: hypothetical protein	0.0751920421
+UniRef50_UPI0002BB08AC: hypothetical protein|unclassified	0.0751920421
+UniRef50_I9WK52: Putative transcriptional regulator	0.0751865914
+UniRef50_I9WK52: Putative transcriptional regulator|unclassified	0.0751865914
+UniRef50_Q1MQW6: Undecaprenyl-diphosphatase	0.0751835522
+UniRef50_Q1MQW6: Undecaprenyl-diphosphatase|unclassified	0.0751835522
+UniRef50_UPI000403F45D: hypothetical protein	0.0751768833
+UniRef50_UPI000403F45D: hypothetical protein|unclassified	0.0751768833
+UniRef50_I2BRN5: Tail assembly protein K, putative	0.0751720859
+UniRef50_I2BRN5: Tail assembly protein K, putative|unclassified	0.0751720859
+UniRef50_D3D0P7	0.0751708493
+UniRef50_D3D0P7|unclassified	0.0751708493
+UniRef50_UPI0003B565E1: glycine/betaine ABC transporter permease	0.0751700243
+UniRef50_UPI0003B565E1: glycine/betaine ABC transporter permease|unclassified	0.0751700243
+UniRef50_G8PQ64: Phosphatase, Ppx/GppA family	0.0751649350
+UniRef50_G8PQ64: Phosphatase, Ppx/GppA family|unclassified	0.0751649350
+UniRef50_Q3JMI3	0.0751639956
+UniRef50_Q3JMI3|unclassified	0.0751639956
+UniRef50_N2RDZ5: Pyridine nucleotide-disulfide oxidoreductase family protein	0.0751628489
+UniRef50_N2RDZ5: Pyridine nucleotide-disulfide oxidoreductase family protein|unclassified	0.0751628489
+UniRef50_M5B0D7	0.0751624484
+UniRef50_M5B0D7|unclassified	0.0751624484
+UniRef50_UPI0003499E7A: hypothetical protein	0.0751574537
+UniRef50_UPI0003499E7A: hypothetical protein|unclassified	0.0751574537
+UniRef50_UPI000372E58F: MULTISPECIES: hypothetical protein	0.0751561584
+UniRef50_UPI000372E58F: MULTISPECIES: hypothetical protein|unclassified	0.0751561584
+UniRef50_W4VFY5: PTS system	0.0751396428
+UniRef50_W4VFY5: PTS system|unclassified	0.0751396428
+UniRef50_UPI0001CBAFEA: PREDICTED: neutral and basic amino acid transport protein rBAT-like	0.0751383397
+UniRef50_UPI0001CBAFEA: PREDICTED: neutral and basic amino acid transport protein rBAT-like|unclassified	0.0751383397
+UniRef50_UPI0003757BA6: hypothetical protein, partial	0.0751303415
+UniRef50_UPI0003757BA6: hypothetical protein, partial|unclassified	0.0751303415
+UniRef50_I7H3Y5	0.0751295961
+UniRef50_I7H3Y5|unclassified	0.0751295961
+UniRef50_B4SMT4	0.0751269976
+UniRef50_B4SMT4|unclassified	0.0751269976
+UniRef50_E2CI88: Flagellar hook capping protein	0.0751217723
+UniRef50_E2CI88: Flagellar hook capping protein|unclassified	0.0751217723
+UniRef50_R5GG61	0.0751215685
+UniRef50_R5GG61|unclassified	0.0751215685
+UniRef50_R5PK57: Stringent starvation protein A	0.0751027590
+UniRef50_R5PK57: Stringent starvation protein A|unclassified	0.0751027590
+UniRef50_UPI00029A398F: two-component regulator sensor histidine kinase	0.0750952602
+UniRef50_UPI00029A398F: two-component regulator sensor histidine kinase|unclassified	0.0750952602
+UniRef50_UPI0002D848C8: hypothetical protein	0.0750873254
+UniRef50_UPI0002D848C8: hypothetical protein|unclassified	0.0750873254
+UniRef50_X1PP27: Marine sediment metagenome DNA, contig: S06H3_S17619 (Fragment)	0.0750851604
+UniRef50_X1PP27: Marine sediment metagenome DNA, contig: S06H3_S17619 (Fragment)|unclassified	0.0750851604
+UniRef50_UPI0003B6850E: hypothetical protein	0.0750846203
+UniRef50_UPI0003B6850E: hypothetical protein|unclassified	0.0750846203
+UniRef50_UPI000379B3FC: hypothetical protein	0.0750784261
+UniRef50_UPI000379B3FC: hypothetical protein|unclassified	0.0750784261
+UniRef50_D0FVQ8	0.0750765348
+UniRef50_D0FVQ8|unclassified	0.0750765348
+UniRef50_UPI00036366A4: hypothetical protein	0.0750752821
+UniRef50_UPI00036366A4: hypothetical protein|unclassified	0.0750752821
+UniRef50_E4NHS8	0.0750746298
+UniRef50_E4NHS8|unclassified	0.0750746298
+UniRef50_C2XL11: S-layer protein / Peptidoglycan endo-beta-N-acetylglucosaminidase	0.0750732426
+UniRef50_C2XL11: S-layer protein / Peptidoglycan endo-beta-N-acetylglucosaminidase|unclassified	0.0750732426
+UniRef50_UPI00036E2FCA: FAD-containing monooxygenase EthA	0.0750723001
+UniRef50_UPI00036E2FCA: FAD-containing monooxygenase EthA|unclassified	0.0750723001
+UniRef50_UPI0003B6B799: diguanylate cyclase	0.0750689249
+UniRef50_UPI0003B6B799: diguanylate cyclase|unclassified	0.0750689249
+UniRef50_UPI0003747650: hypothetical protein	0.0750683942
+UniRef50_UPI0003747650: hypothetical protein|unclassified	0.0750683942
+UniRef50_Q9LUW5: DEAD-box ATP-dependent RNA helicase 53	0.0750651934
+UniRef50_Q9LUW5: DEAD-box ATP-dependent RNA helicase 53|unclassified	0.0750651934
+UniRef50_A3ZZL8	0.0750617746
+UniRef50_A3ZZL8|unclassified	0.0750617746
+UniRef50_UPI0000167295: COG2986: Histidine ammonia-lyase	0.0750561162
+UniRef50_UPI0000167295: COG2986: Histidine ammonia-lyase|unclassified	0.0750561162
+UniRef50_UPI00047A0025: histidine kinase	0.0750520981
+UniRef50_UPI00047A0025: histidine kinase|unclassified	0.0750520981
+UniRef50_UPI00037C6987: hypothetical protein, partial	0.0750474027
+UniRef50_UPI00037C6987: hypothetical protein, partial|unclassified	0.0750474027
+UniRef50_N6VDC6	0.0750349300
+UniRef50_N6VDC6|unclassified	0.0750349300
+UniRef50_UPI00036E1F83: hypothetical protein	0.0750314144
+UniRef50_UPI00036E1F83: hypothetical protein|unclassified	0.0750314144
+UniRef50_UPI0003B353A5: carbon monoxide dehydrogenase subunit G	0.0750284374
+UniRef50_UPI0003B353A5: carbon monoxide dehydrogenase subunit G|unclassified	0.0750284374
+UniRef50_C0R046: DNA gyrase subunit A	0.0750211132
+UniRef50_C0R046: DNA gyrase subunit A|unclassified	0.0750211132
+UniRef50_Q08VS0	0.0750199616
+UniRef50_Q08VS0|unclassified	0.0750199616
+UniRef50_UPI0004734027: hypothetical protein, partial	0.0750155693
+UniRef50_UPI0004734027: hypothetical protein, partial|unclassified	0.0750155693
+UniRef50_UPI0002D5C9B6: hypothetical protein	0.0750151123
+UniRef50_UPI0002D5C9B6: hypothetical protein|unclassified	0.0750151123
+UniRef50_UPI00046C8E0C: fatty acid desaturase	0.0750145288
+UniRef50_UPI00046C8E0C: fatty acid desaturase|unclassified	0.0750145288
+UniRef50_UPI0002D91D3B: hypothetical protein	0.0750132473
+UniRef50_UPI0002D91D3B: hypothetical protein|unclassified	0.0750132473
+UniRef50_M9R9K2	0.0750127757
+UniRef50_M9R9K2|unclassified	0.0750127757
+UniRef50_UPI0003676E73: hypothetical protein	0.0750056528
+UniRef50_UPI0003676E73: hypothetical protein|unclassified	0.0750056528
+UniRef50_UPI00035D181E: hypothetical protein	0.0750042425
+UniRef50_UPI00035D181E: hypothetical protein|unclassified	0.0750042425
+UniRef50_D4MSF5	0.0750003682
+UniRef50_D4MSF5|unclassified	0.0750003682
+UniRef50_A9WFY6: Probable dual-specificity RNA methyltransferase RlmN	0.0749999967
+UniRef50_A9WFY6: Probable dual-specificity RNA methyltransferase RlmN|unclassified	0.0749999967
+UniRef50_UPI00036560E7: hypothetical protein	0.0749988263
+UniRef50_UPI00036560E7: hypothetical protein|unclassified	0.0749988263
+UniRef50_I4F3N5: Periplasmic binding protein	0.0749946792
+UniRef50_I4F3N5: Periplasmic binding protein|unclassified	0.0749946792
+UniRef50_UPI000474F64C: hypothetical protein	0.0749932638
+UniRef50_UPI000474F64C: hypothetical protein|unclassified	0.0749932638
+UniRef50_C6CVA1: LmbE family protein	0.0749922948
+UniRef50_C6CVA1: LmbE family protein|unclassified	0.0749922948
+UniRef50_UPI00044226A2: PREDICTED: serine hydrolase-like protein DDB_G0286239-like, partial	0.0749920297
+UniRef50_UPI00044226A2: PREDICTED: serine hydrolase-like protein DDB_G0286239-like, partial|unclassified	0.0749920297
+UniRef50_UPI00041035B8: hypothetical protein	0.0749873494
+UniRef50_UPI00041035B8: hypothetical protein|unclassified	0.0749873494
+UniRef50_Q5NR75: Holliday junction ATP-dependent DNA helicase RuvA	0.0749840958
+UniRef50_Q5NR75: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.0749840958
+UniRef50_UPI000465DA3B: hypothetical protein	0.0749836860
+UniRef50_UPI000465DA3B: hypothetical protein|unclassified	0.0749836860
+UniRef50_Q7UFW4: Argininosuccinate synthase	0.0749819680
+UniRef50_Q7UFW4: Argininosuccinate synthase|unclassified	0.0749819680
+UniRef50_G9A4F2	0.0749796797
+UniRef50_G9A4F2|unclassified	0.0749796797
+UniRef50_UPI0003B3B0A2: peptidase	0.0749794080
+UniRef50_UPI0003B3B0A2: peptidase|unclassified	0.0749794080
+UniRef50_L0KDS9: Lipoprotein	0.0749762646
+UniRef50_L0KDS9: Lipoprotein|unclassified	0.0749762646
+UniRef50_UPI0003622CF0: hypothetical protein	0.0749761492
+UniRef50_UPI0003622CF0: hypothetical protein|unclassified	0.0749761492
+UniRef50_UPI0003B66950: tetracycline transporter	0.0749740785
+UniRef50_UPI0003B66950: tetracycline transporter|unclassified	0.0749740785
+UniRef50_B8J3V1: 6-carboxyhexanoate--CoA ligase	0.0749725586
+UniRef50_B8J3V1: 6-carboxyhexanoate--CoA ligase|unclassified	0.0749725586
+UniRef50_UPI0003503C91: PREDICTED: translation initiation factor IF-2-like	0.0749702064
+UniRef50_UPI0003503C91: PREDICTED: translation initiation factor IF-2-like|unclassified	0.0749702064
+UniRef50_C6BV77: Pyridoxine 5'-phosphate synthase	0.0749579677
+UniRef50_C6BV77: Pyridoxine 5'-phosphate synthase|unclassified	0.0749579677
+UniRef50_UPI0003C17FE8: PREDICTED: enoyl-CoA delta isomerase 2, mitochondrial-like	0.0749556521
+UniRef50_UPI0003C17FE8: PREDICTED: enoyl-CoA delta isomerase 2, mitochondrial-like|unclassified	0.0749556521
+UniRef50_UPI00023781E2: acyl-homoserine-lactone synthase	0.0749514502
+UniRef50_UPI00023781E2: acyl-homoserine-lactone synthase|unclassified	0.0749514502
+UniRef50_UPI000478E7A5: hypothetical protein	0.0749500681
+UniRef50_UPI000478E7A5: hypothetical protein|unclassified	0.0749500681
+UniRef50_UPI0003B5D48C: dihydropteroate synthase	0.0749448361
+UniRef50_UPI0003B5D48C: dihydropteroate synthase|unclassified	0.0749448361
+UniRef50_UPI00035CE0AA: hypothetical protein	0.0749386836
+UniRef50_UPI00035CE0AA: hypothetical protein|unclassified	0.0749386836
+UniRef50_A1ALT4: DNA-directed RNA polymerase subunit beta	0.0749338293
+UniRef50_A1ALT4: DNA-directed RNA polymerase subunit beta|unclassified	0.0749338293
+UniRef50_Q9BSE5: Agmatinase, mitochondrial	0.0749328598
+UniRef50_Q9BSE5: Agmatinase, mitochondrial|unclassified	0.0749328598
+UniRef50_UPI00037044B2: hypothetical protein	0.0749326910
+UniRef50_UPI00037044B2: hypothetical protein|unclassified	0.0749326910
+UniRef50_A1BBM5: 4-hydroxyproline 2-epimerase	0.0749310781
+UniRef50_A1BBM5: 4-hydroxyproline 2-epimerase|unclassified	0.0749310781
+UniRef50_UPI0002DDA5A9: hypothetical protein	0.0749302768
+UniRef50_UPI0002DDA5A9: hypothetical protein|unclassified	0.0749302768
+UniRef50_L7KRU0	0.0749287171
+UniRef50_L7KRU0|unclassified	0.0749287171
+UniRef50_R9PR85: TRAP-type transport system	0.0749197347
+UniRef50_R9PR85: TRAP-type transport system|unclassified	0.0749197347
+UniRef50_UPI00046716BA: MULTISPECIES: hypothetical protein	0.0749176907
+UniRef50_UPI00046716BA: MULTISPECIES: hypothetical protein|unclassified	0.0749176907
+UniRef50_UPI00039CAC05: amidase	0.0749170297
+UniRef50_UPI00039CAC05: amidase|unclassified	0.0749170297
+UniRef50_UPI000464A90F: murein transglycosylase	0.0749094139
+UniRef50_UPI000464A90F: murein transglycosylase|unclassified	0.0749094139
+UniRef50_UPI00031FF6D9: hypothetical protein	0.0749054761
+UniRef50_UPI00031FF6D9: hypothetical protein|unclassified	0.0749054761
+UniRef50_W8G375: NAD(P)H oxidoreductase	0.0749029565
+UniRef50_W8G375: NAD(P)H oxidoreductase|unclassified	0.0749029565
+UniRef50_Q1J141: Xanthine phosphoribosyltransferase	0.0749017441
+UniRef50_Q1J141: Xanthine phosphoribosyltransferase|unclassified	0.0749017441
+UniRef50_UPI00044444D4: PREDICTED: nuclear factor of activated T-cells, cytoplasmic 1	0.0748896025
+UniRef50_UPI00044444D4: PREDICTED: nuclear factor of activated T-cells, cytoplasmic 1|unclassified	0.0748896025
+UniRef50_I0IHM4	0.0748854313
+UniRef50_I0IHM4|unclassified	0.0748854313
+UniRef50_M0P490	0.0748738603
+UniRef50_M0P490|unclassified	0.0748738603
+UniRef50_F7Z1Z8	0.0748720066
+UniRef50_F7Z1Z8|unclassified	0.0748720066
+UniRef50_UPI00047AEEAA: hypothetical protein	0.0748701337
+UniRef50_UPI00047AEEAA: hypothetical protein|unclassified	0.0748701337
+UniRef50_F5XDY2	0.0748656917
+UniRef50_F5XDY2|unclassified	0.0748656917
+UniRef50_UPI00030869CB: membrane protein	0.0748650243
+UniRef50_UPI00030869CB: membrane protein|unclassified	0.0748650243
+UniRef50_UPI00047B96CE: hypothetical protein	0.0748640920
+UniRef50_UPI00047B96CE: hypothetical protein|unclassified	0.0748640920
+UniRef50_I8YE62	0.0748614308
+UniRef50_I8YE62|unclassified	0.0748614308
+UniRef50_B0K1N2: N-acetylmuramic acid 6-phosphate etherase	0.0748612059
+UniRef50_B0K1N2: N-acetylmuramic acid 6-phosphate etherase|unclassified	0.0748612059
+UniRef50_UPI000375B645: hypothetical protein	0.0748551585
+UniRef50_UPI000375B645: hypothetical protein|unclassified	0.0748551585
+UniRef50_UPI0004657FFE: hypothetical protein	0.0748533423
+UniRef50_UPI0004657FFE: hypothetical protein|unclassified	0.0748533423
+UniRef50_UPI0002897159: methionine ABC transporter substrate-binding protein	0.0748505646
+UniRef50_UPI0002897159: methionine ABC transporter substrate-binding protein|unclassified	0.0748505646
+UniRef50_UPI00035D772E: hypothetical protein	0.0748498245
+UniRef50_UPI00035D772E: hypothetical protein|unclassified	0.0748498245
+UniRef50_T5JDW5	0.0748481487
+UniRef50_T5JDW5|unclassified	0.0748481487
+UniRef50_UPI000395A51B: PREDICTED: probable D-lactate dehydrogenase, mitochondrial, partial	0.0748459019
+UniRef50_UPI000395A51B: PREDICTED: probable D-lactate dehydrogenase, mitochondrial, partial|unclassified	0.0748459019
+UniRef50_UPI00030315CF: hypothetical protein	0.0748443422
+UniRef50_UPI00030315CF: hypothetical protein|unclassified	0.0748443422
+UniRef50_UPI00037E9382: hypothetical protein	0.0748424119
+UniRef50_UPI00037E9382: hypothetical protein|unclassified	0.0748424119
+UniRef50_UPI00036477DE: hypothetical protein	0.0748419417
+UniRef50_UPI00036477DE: hypothetical protein|unclassified	0.0748419417
+UniRef50_UPI000368B869: hypothetical protein	0.0748407620
+UniRef50_UPI000368B869: hypothetical protein|unclassified	0.0748407620
+UniRef50_J7SKM0: Taurine-binding periplasmic protein TauA	0.0748404204
+UniRef50_J7SKM0: Taurine-binding periplasmic protein TauA|unclassified	0.0748404204
+UniRef50_UPI00037C4852: hypothetical protein	0.0748347669
+UniRef50_UPI00037C4852: hypothetical protein|unclassified	0.0748347669
+UniRef50_UPI00036D39A9: hypothetical protein	0.0748321916
+UniRef50_UPI00036D39A9: hypothetical protein|unclassified	0.0748321916
+UniRef50_D5UHS2: Thioesterase superfamily protein	0.0748201043
+UniRef50_D5UHS2: Thioesterase superfamily protein|unclassified	0.0748201043
+UniRef50_R9PPL0: TRAP transporter solute receptor	0.0748029279
+UniRef50_R9PPL0: TRAP transporter solute receptor|unclassified	0.0748029279
+UniRef50_UPI00036A96B9: DNA recombinase	0.0748007169
+UniRef50_UPI00036A96B9: DNA recombinase|unclassified	0.0748007169
+UniRef50_I0HXP4	0.0748006278
+UniRef50_I0HXP4|unclassified	0.0748006278
+UniRef50_UPI000374511F: hypothetical protein	0.0747984214
+UniRef50_UPI000374511F: hypothetical protein|unclassified	0.0747984214
+UniRef50_V9HDV2	0.0747969074
+UniRef50_V9HDV2|unclassified	0.0747969074
+UniRef50_I3LS89	0.0747919521
+UniRef50_I3LS89|unclassified	0.0747919521
+UniRef50_D0WSZ6	0.0747858318
+UniRef50_D0WSZ6|unclassified	0.0747858318
+UniRef50_P46918: Minor teichoic acid biosynthesis protein GgaB	0.0747806620
+UniRef50_P46918: Minor teichoic acid biosynthesis protein GgaB|unclassified	0.0747806620
+UniRef50_UPI00037FA03F: hypothetical protein	0.0747797373
+UniRef50_UPI00037FA03F: hypothetical protein|unclassified	0.0747797373
+UniRef50_UPI0003657B4F: hypothetical protein	0.0747584100
+UniRef50_UPI0003657B4F: hypothetical protein|unclassified	0.0747584100
+UniRef50_E8SNN7: Ribosomal protein	0.0747570228
+UniRef50_E8SNN7: Ribosomal protein|unclassified	0.0747570228
+UniRef50_UPI00046E6337: glutamate--tRNA ligase	0.0747569969
+UniRef50_UPI00046E6337: glutamate--tRNA ligase|unclassified	0.0747569969
+UniRef50_UPI0002558DAA: PpiC-type peptidyl-prolyl cis-trans isomerase	0.0747558509
+UniRef50_UPI0002558DAA: PpiC-type peptidyl-prolyl cis-trans isomerase|unclassified	0.0747558509
+UniRef50_UPI00039F0D65: methyltransferase	0.0747508169
+UniRef50_UPI00039F0D65: methyltransferase|unclassified	0.0747508169
+UniRef50_A9WNZ2: DNA excisionase, ATPase subunit	0.0747493813
+UniRef50_A9WNZ2: DNA excisionase, ATPase subunit|unclassified	0.0747493813
+UniRef50_F8LJ18	0.0747474995
+UniRef50_F8LJ18|unclassified	0.0747474995
+UniRef50_UPI00027F6D03	0.0747378036
+UniRef50_UPI00027F6D03|unclassified	0.0747378036
+UniRef50_Q54NZ7: Aldose reductase B	0.0747375317
+UniRef50_Q54NZ7: Aldose reductase B|unclassified	0.0747375317
+UniRef50_B0SV95: NnrS family protein	0.0747373616
+UniRef50_B0SV95: NnrS family protein|unclassified	0.0747373616
+UniRef50_M3H087: PF10977 family protein	0.0747368371
+UniRef50_M3H087: PF10977 family protein|unclassified	0.0747368371
+UniRef50_V3LFZ8	0.0747333099
+UniRef50_V3LFZ8|unclassified	0.0747333099
+UniRef50_D9V463: Predicted protein	0.0747319271
+UniRef50_D9V463: Predicted protein|unclassified	0.0747319271
+UniRef50_UPI00039C7ED5: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0747274344
+UniRef50_UPI00039C7ED5: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0747274344
+UniRef50_UPI0003647A42: hypothetical protein	0.0747251241
+UniRef50_UPI0003647A42: hypothetical protein|unclassified	0.0747251241
+UniRef50_Q21NS8: Lipid A export ATP-binding/permease protein MsbA	0.0747222660
+UniRef50_Q21NS8: Lipid A export ATP-binding/permease protein MsbA|unclassified	0.0747222660
+UniRef50_V8FQ83	0.0747208940
+UniRef50_V8FQ83|unclassified	0.0747208940
+UniRef50_UPI00037DC74D: hypothetical protein	0.0747160789
+UniRef50_UPI00037DC74D: hypothetical protein|unclassified	0.0747160789
+UniRef50_UPI00047B0099: hypothetical protein	0.0747159551
+UniRef50_UPI00047B0099: hypothetical protein|unclassified	0.0747159551
+UniRef50_E3BBS8: LemA family protein	0.0747150480
+UniRef50_E3BBS8: LemA family protein|unclassified	0.0747150480
+UniRef50_UPI0003648F62: hypothetical protein	0.0747130356
+UniRef50_UPI0003648F62: hypothetical protein|unclassified	0.0747130356
+UniRef50_P61527: Argininosuccinate synthase	0.0747116929
+UniRef50_P61527: Argininosuccinate synthase|unclassified	0.0747116929
+UniRef50_UPI00037A50EF: hypothetical protein	0.0747036295
+UniRef50_UPI00037A50EF: hypothetical protein|unclassified	0.0747036295
+UniRef50_UPI00016A9040: hydrolase	0.0747027533
+UniRef50_UPI00016A9040: hydrolase|unclassified	0.0747027533
+UniRef50_D8LSV9	0.0746983447
+UniRef50_D8LSV9|unclassified	0.0746983447
+UniRef50_D5X443	0.0746959564
+UniRef50_D5X443|unclassified	0.0746959564
+UniRef50_UPI0002556498: cell division protein FtsZ	0.0746924912
+UniRef50_UPI0002556498: cell division protein FtsZ|unclassified	0.0746924912
+UniRef50_UPI00037AAF89: hypothetical protein	0.0746900343
+UniRef50_UPI00037AAF89: hypothetical protein|unclassified	0.0746900343
+UniRef50_L0KMN4	0.0746862177
+UniRef50_L0KMN4|unclassified	0.0746862177
+UniRef50_D1Y5I8: Protein CreA	0.0746825922
+UniRef50_D1Y5I8: Protein CreA|unclassified	0.0746825922
+UniRef50_G9A6X7	0.0746755256
+UniRef50_G9A6X7|unclassified	0.0746755256
+UniRef50_UPI00036963A2: hypothetical protein	0.0746722326
+UniRef50_UPI00036963A2: hypothetical protein|unclassified	0.0746722326
+UniRef50_UPI00037A9D80: hypothetical protein	0.0746644790
+UniRef50_UPI00037A9D80: hypothetical protein|unclassified	0.0746644790
+UniRef50_A3X2T0: Putative transposase	0.0746606924
+UniRef50_A3X2T0: Putative transposase|unclassified	0.0746606924
+UniRef50_UPI000470FD50: ATPase AAA, partial	0.0746605813
+UniRef50_UPI000470FD50: ATPase AAA, partial|unclassified	0.0746605813
+UniRef50_W1U4C9: Threonine synthase	0.0746567930
+UniRef50_W1U4C9: Threonine synthase|unclassified	0.0746567930
+UniRef50_A0A022LF48: Bacteriocin biosynthesis protein	0.0746551188
+UniRef50_A0A022LF48: Bacteriocin biosynthesis protein|unclassified	0.0746551188
+UniRef50_UPI0004033C0A: hypothetical protein	0.0746526291
+UniRef50_UPI0004033C0A: hypothetical protein|unclassified	0.0746526291
+UniRef50_UPI00036BDD48: hypothetical protein	0.0746517676
+UniRef50_UPI00036BDD48: hypothetical protein|unclassified	0.0746517676
+UniRef50_UPI000478147F: hypothetical protein	0.0746413878
+UniRef50_UPI000478147F: hypothetical protein|unclassified	0.0746413878
+UniRef50_UPI000463786D: hypothetical protein, partial	0.0746346033
+UniRef50_UPI000463786D: hypothetical protein, partial|unclassified	0.0746346033
+UniRef50_UPI000367C352: hypothetical protein	0.0746334385
+UniRef50_UPI000367C352: hypothetical protein|unclassified	0.0746334385
+UniRef50_UPI0003620466: MULTISPECIES: hypothetical protein	0.0746329378
+UniRef50_UPI0003620466: MULTISPECIES: hypothetical protein|unclassified	0.0746329378
+UniRef50_G2IF31: Cobalt ABC transporter, permease protein	0.0746313797
+UniRef50_G2IF31: Cobalt ABC transporter, permease protein|unclassified	0.0746313797
+UniRef50_UPI000472306F: adenylate kinase	0.0746174070
+UniRef50_UPI000472306F: adenylate kinase|unclassified	0.0746174070
+UniRef50_UPI000289D591: methyltransferase type 11	0.0746139179
+UniRef50_UPI000289D591: methyltransferase type 11|unclassified	0.0746139179
+UniRef50_B5Y8G1: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO	0.0746110367
+UniRef50_B5Y8G1: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|unclassified	0.0746110367
+UniRef50_UPI00039CF1FF: AraC family transcriptional regulator	0.0746077002
+UniRef50_UPI00039CF1FF: AraC family transcriptional regulator|unclassified	0.0746077002
+UniRef50_A9ID86: Tail protein, putative	0.0746031259
+UniRef50_A9ID86: Tail protein, putative|unclassified	0.0746031259
+UniRef50_UPI0004153533: ABC transporter permease	0.0746021890
+UniRef50_UPI0004153533: ABC transporter permease|unclassified	0.0746021890
+UniRef50_J9ZCQ2	0.0745988507
+UniRef50_J9ZCQ2|unclassified	0.0745988507
+UniRef50_C8WAT3: LemA family protein	0.0745884360
+UniRef50_C8WAT3: LemA family protein|unclassified	0.0745884360
+UniRef50_U1CXQ6	0.0745855773
+UniRef50_U1CXQ6|unclassified	0.0745855773
+UniRef50_UPI0004708FD3: sugar ABC transporter permease	0.0745850674
+UniRef50_UPI0004708FD3: sugar ABC transporter permease|unclassified	0.0745850674
+UniRef50_UPI000424B573: hypothetical protein	0.0745797257
+UniRef50_UPI000424B573: hypothetical protein|unclassified	0.0745797257
+UniRef50_V4RBR4: Zinc finger protein	0.0745775217
+UniRef50_V4RBR4: Zinc finger protein|unclassified	0.0745775217
+UniRef50_B2RI74: Aminomethyltransferase	0.0745762450
+UniRef50_B2RI74: Aminomethyltransferase|unclassified	0.0745762450
+UniRef50_UPI00047106B1: hypothetical protein	0.0745658001
+UniRef50_UPI00047106B1: hypothetical protein|unclassified	0.0745658001
+UniRef50_UPI000379BCC8: hypothetical protein	0.0745654934
+UniRef50_UPI000379BCC8: hypothetical protein|unclassified	0.0745654934
+UniRef50_J0ZIK6	0.0745602006
+UniRef50_J0ZIK6|unclassified	0.0745602006
+UniRef50_A0A023B5Q7	0.0745579583
+UniRef50_A0A023B5Q7|unclassified	0.0745579583
+UniRef50_UPI000462B96F: PREDICTED: arf-GAP with GTPase, ANK repeat and PH domain-containing protein 1	0.0745560574
+UniRef50_UPI000462B96F: PREDICTED: arf-GAP with GTPase, ANK repeat and PH domain-containing protein 1|unclassified	0.0745560574
+UniRef50_F5Y118: Candidate small permease component	0.0745360112
+UniRef50_F5Y118: Candidate small permease component|unclassified	0.0745360112
+UniRef50_Q4UKX5: DNA gyrase subunit B	0.0745309911
+UniRef50_Q4UKX5: DNA gyrase subunit B|unclassified	0.0745309911
+UniRef50_UPI000401CCE0: hypothetical protein	0.0745276621
+UniRef50_UPI000401CCE0: hypothetical protein|unclassified	0.0745276621
+UniRef50_UPI000329A113	0.0745236434
+UniRef50_UPI000329A113|unclassified	0.0745236434
+UniRef50_UPI0004738DBB: signal peptidase	0.0745098124
+UniRef50_UPI0004738DBB: signal peptidase|unclassified	0.0745098124
+UniRef50_UPI0003B54B0E: peptidyl-prolyl cis-trans isomerase	0.0745032086
+UniRef50_UPI0003B54B0E: peptidyl-prolyl cis-trans isomerase|unclassified	0.0745032086
+UniRef50_Q15U36: Glucose-1-phosphate adenylyltransferase 1	0.0744962647
+UniRef50_Q15U36: Glucose-1-phosphate adenylyltransferase 1|unclassified	0.0744962647
+UniRef50_I4VTT9	0.0744935447
+UniRef50_I4VTT9|unclassified	0.0744935447
+UniRef50_J8TRQ4: Intercompartmental signaling of pro-sigma-K processing/activation	0.0744925032
+UniRef50_J8TRQ4: Intercompartmental signaling of pro-sigma-K processing/activation|unclassified	0.0744925032
+UniRef50_UPI000375BD4D: hypothetical protein	0.0744915487
+UniRef50_UPI000375BD4D: hypothetical protein|unclassified	0.0744915487
+UniRef50_Q8PCH1: tRNA-dihydrouridine synthase B	0.0744863426
+UniRef50_Q8PCH1: tRNA-dihydrouridine synthase B|unclassified	0.0744863426
+UniRef50_E4BA85	0.0744795478
+UniRef50_E4BA85|unclassified	0.0744795478
+UniRef50_UPI00046B2C13: PREDICTED: retinal dehydrogenase 2-like	0.0744790851
+UniRef50_UPI00046B2C13: PREDICTED: retinal dehydrogenase 2-like|unclassified	0.0744790851
+UniRef50_Q2IA92: Chloroplast ATP sulfurylase (Fragment)	0.0744784225
+UniRef50_Q2IA92: Chloroplast ATP sulfurylase (Fragment)|unclassified	0.0744784225
+UniRef50_V5AJL1: Competence protein ComM	0.0744741459
+UniRef50_V5AJL1: Competence protein ComM|unclassified	0.0744741459
+UniRef50_W5D1V2	0.0744694141
+UniRef50_W5D1V2|unclassified	0.0744694141
+UniRef50_J6UE95	0.0744631873
+UniRef50_J6UE95|unclassified	0.0744631873
+UniRef50_UPI0004785665: hypothetical protein	0.0744590747
+UniRef50_UPI0004785665: hypothetical protein|unclassified	0.0744590747
+UniRef50_M7YKS3	0.0744587757
+UniRef50_M7YKS3|unclassified	0.0744587757
+UniRef50_UPI000368FC1C: hypothetical protein	0.0744467254
+UniRef50_UPI000368FC1C: hypothetical protein|unclassified	0.0744467254
+UniRef50_W5TLF0	0.0744436639
+UniRef50_W5TLF0|unclassified	0.0744436639
+UniRef50_UPI00046D6B05: hypothetical protein	0.0744433963
+UniRef50_UPI00046D6B05: hypothetical protein|unclassified	0.0744433963
+UniRef50_UPI00047E54EF: ABC transporter substrate-binding protein	0.0744399656
+UniRef50_UPI00047E54EF: ABC transporter substrate-binding protein|unclassified	0.0744399656
+UniRef50_U3P9F9	0.0744397142
+UniRef50_U3P9F9|unclassified	0.0744397142
+UniRef50_B9NP14	0.0744356281
+UniRef50_B9NP14|unclassified	0.0744356281
+UniRef50_UPI00047E4683: pseudouridine synthase	0.0744323131
+UniRef50_UPI00047E4683: pseudouridine synthase|unclassified	0.0744323131
+UniRef50_A9V954: Predicted protein (Fragment)	0.0744313852
+UniRef50_A9V954: Predicted protein (Fragment)|unclassified	0.0744313852
+UniRef50_UPI00029B3B69: guanosine-3'''',5''''-bis(diphosphate) 3''''-pyrophosphohydrolase	0.0744310827
+UniRef50_UPI00029B3B69: guanosine-3'''',5''''-bis(diphosphate) 3''''-pyrophosphohydrolase|unclassified	0.0744310827
+UniRef50_B3QSU1: Cytidylate kinase	0.0744266142
+UniRef50_B3QSU1: Cytidylate kinase|unclassified	0.0744266142
+UniRef50_K1XYU6	0.0744182989
+UniRef50_K1XYU6|unclassified	0.0744182989
+UniRef50_I4C1I2: ABC-type Co2+ transport system, periplasmic component	0.0744156317
+UniRef50_I4C1I2: ABC-type Co2+ transport system, periplasmic component|unclassified	0.0744156317
+UniRef50_UPI0003139F8B: hypothetical protein	0.0744119440
+UniRef50_UPI0003139F8B: hypothetical protein|unclassified	0.0744119440
+UniRef50_UPI0003F55456: hypothetical protein	0.0744108301
+UniRef50_UPI0003F55456: hypothetical protein|unclassified	0.0744108301
+UniRef50_UPI000377EED9: hypothetical protein	0.0744107897
+UniRef50_UPI000377EED9: hypothetical protein|unclassified	0.0744107897
+UniRef50_Q112U2: 2-isopropylmalate synthase	0.0743958466
+UniRef50_Q112U2: 2-isopropylmalate synthase|unclassified	0.0743958466
+UniRef50_X8AZS4: VWA containing CoxE family protein	0.0743946682
+UniRef50_X8AZS4: VWA containing CoxE family protein|unclassified	0.0743946682
+UniRef50_Q3JVI6	0.0743934192
+UniRef50_Q3JVI6|unclassified	0.0743934192
+UniRef50_R6AHC9	0.0743932902
+UniRef50_R6AHC9|unclassified	0.0743932902
+UniRef50_UPI000477EAD8: cell division protein FtsY	0.0743907975
+UniRef50_UPI000477EAD8: cell division protein FtsY|unclassified	0.0743907975
+UniRef50_UPI00016A9C60: major facilitator family transporter, partial	0.0743841241
+UniRef50_UPI00016A9C60: major facilitator family transporter, partial|unclassified	0.0743841241
+UniRef50_G4CPH7: Phage tail protein I	0.0743805737
+UniRef50_G4CPH7: Phage tail protein I|unclassified	0.0743805737
+UniRef50_C3X820: YadA-like domain protein	0.0743798795
+UniRef50_C3X820: YadA-like domain protein|unclassified	0.0743798795
+UniRef50_C7LV01: Tripartite ATP-independent periplasmic transporter DctQ component	0.0743797603
+UniRef50_C7LV01: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.0743797603
+UniRef50_Q1ITV2: Uroporphyrinogen decarboxylase	0.0743649128
+UniRef50_Q1ITV2: Uroporphyrinogen decarboxylase|unclassified	0.0743649128
+UniRef50_UPI00031EF8A6: hypothetical protein	0.0743554703
+UniRef50_UPI00031EF8A6: hypothetical protein|unclassified	0.0743554703
+UniRef50_A1TM37: Adenylosuccinate synthetase	0.0743524746
+UniRef50_A1TM37: Adenylosuccinate synthetase|unclassified	0.0743524746
+UniRef50_O67546: Succinyl-CoA ligase [ADP-forming] subunit beta	0.0743517635
+UniRef50_O67546: Succinyl-CoA ligase [ADP-forming] subunit beta|unclassified	0.0743517635
+UniRef50_UPI00041E81FF: hypothetical protein	0.0743464687
+UniRef50_UPI00041E81FF: hypothetical protein|unclassified	0.0743464687
+UniRef50_UPI0004745E14: hypothetical protein	0.0743382604
+UniRef50_UPI0004745E14: hypothetical protein|unclassified	0.0743382604
+UniRef50_Q8K994: Cytochrome bo(3) ubiquinol oxidase subunit 1	0.0743373743
+UniRef50_Q8K994: Cytochrome bo(3) ubiquinol oxidase subunit 1|unclassified	0.0743373743
+UniRef50_UPI0003F68524: hypothetical protein	0.0743266778
+UniRef50_UPI0003F68524: hypothetical protein|unclassified	0.0743266778
+UniRef50_UPI000470D991: hypothetical protein	0.0743264995
+UniRef50_UPI000470D991: hypothetical protein|unclassified	0.0743264995
+UniRef50_UPI0004767EB3: hypothetical protein	0.0743235996
+UniRef50_UPI0004767EB3: hypothetical protein|unclassified	0.0743235996
+UniRef50_W8RU50: GTA host specificity protein	0.0743217926
+UniRef50_W8RU50: GTA host specificity protein|unclassified	0.0743217926
+UniRef50_A7H9Z6	0.0743185567
+UniRef50_A7H9Z6|unclassified	0.0743185567
+UniRef50_S2R0I0: Capsular polysaccharide synthesis protein	0.0743156127
+UniRef50_S2R0I0: Capsular polysaccharide synthesis protein|unclassified	0.0743156127
+UniRef50_UPI00037743EE: hypothetical protein	0.0743109831
+UniRef50_UPI00037743EE: hypothetical protein|unclassified	0.0743109831
+UniRef50_Q6ACG1: Membrane protein	0.0743104792
+UniRef50_Q6ACG1: Membrane protein|unclassified	0.0743104792
+UniRef50_Q9VK29: AT19426p	0.0743083694
+UniRef50_Q9VK29: AT19426p|unclassified	0.0743083694
+UniRef50_M5XNK0	0.0743078525
+UniRef50_M5XNK0|unclassified	0.0743078525
+UniRef50_J9QTZ5: Prophage antirepressor	0.0743039706
+UniRef50_J9QTZ5: Prophage antirepressor|unclassified	0.0743039706
+UniRef50_F8GFW9	0.0743018276
+UniRef50_F8GFW9|unclassified	0.0743018276
+UniRef50_V9VUW9	0.0742911996
+UniRef50_V9VUW9|unclassified	0.0742911996
+UniRef50_UPI000255BEAA: ferrochelatase, partial	0.0742873134
+UniRef50_UPI000255BEAA: ferrochelatase, partial|unclassified	0.0742873134
+UniRef50_G0SB66	0.0742858508
+UniRef50_G0SB66|unclassified	0.0742858508
+UniRef50_K1U1Y2: Phosphodiesterase, family	0.0742830561
+UniRef50_K1U1Y2: Phosphodiesterase, family|unclassified	0.0742830561
+UniRef50_U5WBY0	0.0742784251
+UniRef50_U5WBY0|unclassified	0.0742784251
+UniRef50_Q0AEI5: Ribonuclease HII	0.0742672881
+UniRef50_Q0AEI5: Ribonuclease HII|unclassified	0.0742672881
+UniRef50_D8TXT1	0.0742645869
+UniRef50_D8TXT1|unclassified	0.0742645869
+UniRef50_UPI00047272A3: glycerol-3-phosphate ABC transporter permease	0.0742643097
+UniRef50_UPI00047272A3: glycerol-3-phosphate ABC transporter permease|unclassified	0.0742643097
+UniRef50_A4G4T2: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ	0.0742637103
+UniRef50_A4G4T2: 3-hydroxyacyl-[acyl-carrier-protein] dehydratase FabZ|unclassified	0.0742637103
+UniRef50_K1SSG0	0.0742635634
+UniRef50_K1SSG0|unclassified	0.0742635634
+UniRef50_K3WUV7	0.0742620362
+UniRef50_K3WUV7|unclassified	0.0742620362
+UniRef50_UPI000377B0EF: chemotaxis protein	0.0742594761
+UniRef50_UPI000377B0EF: chemotaxis protein|unclassified	0.0742594761
+UniRef50_Q0A973	0.0742558990
+UniRef50_Q0A973|unclassified	0.0742558990
+UniRef50_UPI000468D55C: glucose-methanol-choline oxidoreductase	0.0742524540
+UniRef50_UPI000468D55C: glucose-methanol-choline oxidoreductase|unclassified	0.0742524540
+UniRef50_W7Z8F2: Stress response protein	0.0742518592
+UniRef50_W7Z8F2: Stress response protein|unclassified	0.0742518592
+UniRef50_U2FFX2	0.0742496255
+UniRef50_U2FFX2|unclassified	0.0742496255
+UniRef50_UPI000361120A: hypothetical protein	0.0742458627
+UniRef50_UPI000361120A: hypothetical protein|unclassified	0.0742458627
+UniRef50_E2PHB7	0.0742327326
+UniRef50_E2PHB7|unclassified	0.0742327326
+UniRef50_Q0VND8: Type IV pili biogenesis protein PilF	0.0742280412
+UniRef50_Q0VND8: Type IV pili biogenesis protein PilF|unclassified	0.0742280412
+UniRef50_UPI0003B2E824: 4-alpha-glucanotransferase	0.0742236714
+UniRef50_UPI0003B2E824: 4-alpha-glucanotransferase|unclassified	0.0742236714
+UniRef50_G7L1M9: 50S ribosomal protein L22	0.0742227448
+UniRef50_G7L1M9: 50S ribosomal protein L22|unclassified	0.0742227448
+UniRef50_UPI00034B8DAF: hypothetical protein	0.0742221165
+UniRef50_UPI00034B8DAF: hypothetical protein|unclassified	0.0742221165
+UniRef50_UPI0004019E59: dehydrogenase	0.0742164044
+UniRef50_UPI0004019E59: dehydrogenase|unclassified	0.0742164044
+UniRef50_M2S9L0: DedA family protein	0.0742095229
+UniRef50_M2S9L0: DedA family protein|unclassified	0.0742095229
+UniRef50_UPI0002DD682F: hypothetical protein	0.0742066717
+UniRef50_UPI0002DD682F: hypothetical protein|unclassified	0.0742066717
+UniRef50_UPI000255EA6A: 2-nitropropane dioxygenase NPD	0.0742018441
+UniRef50_UPI000255EA6A: 2-nitropropane dioxygenase NPD|unclassified	0.0742018441
+UniRef50_UPI0003676EBE: hypothetical protein	0.0741985457
+UniRef50_UPI0003676EBE: hypothetical protein|unclassified	0.0741985457
+UniRef50_W4M3J5	0.0741976834
+UniRef50_W4M3J5|unclassified	0.0741976834
+UniRef50_UPI00026263A5: phytoene dehydrogenase	0.0741885958
+UniRef50_UPI00026263A5: phytoene dehydrogenase|unclassified	0.0741885958
+UniRef50_A2BJY7: Non-canonical purine NTP pyrophosphatase	0.0741863818
+UniRef50_A2BJY7: Non-canonical purine NTP pyrophosphatase|unclassified	0.0741863818
+UniRef50_UPI0004638CB3: 50S ribosomal protein L3	0.0741820384
+UniRef50_UPI0004638CB3: 50S ribosomal protein L3|unclassified	0.0741820384
+UniRef50_UPI00047C8398: GntR family transcriptional regulator	0.0741819849
+UniRef50_UPI00047C8398: GntR family transcriptional regulator|unclassified	0.0741819849
+UniRef50_C3NR03	0.0741796747
+UniRef50_C3NR03|unclassified	0.0741796747
+UniRef50_F2IXV2: GfdT protein	0.0741730685
+UniRef50_F2IXV2: GfdT protein|unclassified	0.0741730685
+UniRef50_UPI00046E6835: ATPase AAA, partial	0.0741719652
+UniRef50_UPI00046E6835: ATPase AAA, partial|unclassified	0.0741719652
+UniRef50_UPI00037A7D17: Crp/Fnr family transcription regulator	0.0741674477
+UniRef50_UPI00037A7D17: Crp/Fnr family transcription regulator|unclassified	0.0741674477
+UniRef50_L0SX55: Hemolysin	0.0741665361
+UniRef50_L0SX55: Hemolysin|unclassified	0.0741665361
+UniRef50_T0MZ21	0.0741613341
+UniRef50_T0MZ21|unclassified	0.0741613341
+UniRef50_U6I1P7: Fibrillar collagen chain FAp1 alpha	0.0741599803
+UniRef50_U6I1P7: Fibrillar collagen chain FAp1 alpha|unclassified	0.0741599803
+UniRef50_W8TDJ4: Sporulation protein ytaf	0.0741519306
+UniRef50_W8TDJ4: Sporulation protein ytaf|unclassified	0.0741519306
+UniRef50_K0NFL0: DctQ6: TRAP dicarboxylate transporter, presursor	0.0741503969
+UniRef50_K0NFL0: DctQ6: TRAP dicarboxylate transporter, presursor|unclassified	0.0741503969
+UniRef50_UPI000364D51A: hypothetical protein	0.0741492295
+UniRef50_UPI000364D51A: hypothetical protein|unclassified	0.0741492295
+UniRef50_Q2RMC8: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	0.0741412778
+UniRef50_Q2RMC8: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.0741412778
+UniRef50_UPI00034D3483: hypothetical protein	0.0741379769
+UniRef50_UPI00034D3483: hypothetical protein|unclassified	0.0741379769
+UniRef50_UPI0004705979: hypothetical protein	0.0741273753
+UniRef50_UPI0004705979: hypothetical protein|unclassified	0.0741273753
+UniRef50_U6LYR1	0.0741140153
+UniRef50_U6LYR1|unclassified	0.0741140153
+UniRef50_X1BS27: Marine sediment metagenome DNA, contig: S01H4_S11444 (Fragment)	0.0741060434
+UniRef50_X1BS27: Marine sediment metagenome DNA, contig: S01H4_S11444 (Fragment)|unclassified	0.0741060434
+UniRef50_UPI000366DD2B: hypothetical protein	0.0740972106
+UniRef50_UPI000366DD2B: hypothetical protein|unclassified	0.0740972106
+UniRef50_UPI00036939E9: hypothetical protein	0.0740937241
+UniRef50_UPI00036939E9: hypothetical protein|unclassified	0.0740937241
+UniRef50_UPI00036A50D6: phosphate ABC transporter permease	0.0740921293
+UniRef50_UPI00036A50D6: phosphate ABC transporter permease|unclassified	0.0740921293
+UniRef50_UPI000375AC1A: hypothetical protein	0.0740904118
+UniRef50_UPI000375AC1A: hypothetical protein|unclassified	0.0740904118
+UniRef50_M8Y9E5	0.0740888387
+UniRef50_M8Y9E5|unclassified	0.0740888387
+UniRef50_UPI00036D5636: hypothetical protein	0.0740860305
+UniRef50_UPI00036D5636: hypothetical protein|unclassified	0.0740860305
+UniRef50_UPI00037DF630: hypothetical protein	0.0740848505
+UniRef50_UPI00037DF630: hypothetical protein|unclassified	0.0740848505
+UniRef50_UPI0003B58858: CMP-N-acetylneuraminic acid synthetase	0.0740800931
+UniRef50_UPI0003B58858: CMP-N-acetylneuraminic acid synthetase|unclassified	0.0740800931
+UniRef50_X1GV54: Marine sediment metagenome DNA, contig: S03H2_S06597 (Fragment)	0.0740779485
+UniRef50_X1GV54: Marine sediment metagenome DNA, contig: S03H2_S06597 (Fragment)|unclassified	0.0740779485
+UniRef50_UPI00046D1DF4: hypothetical protein	0.0740745769
+UniRef50_UPI00046D1DF4: hypothetical protein|unclassified	0.0740745769
+UniRef50_W1VTJ6: Putative transketolase (Fragment)	0.0740729489
+UniRef50_W1VTJ6: Putative transketolase (Fragment)|unclassified	0.0740729489
+UniRef50_UPI0001FFE2DF: hypothetical protein	0.0740724267
+UniRef50_UPI0001FFE2DF: hypothetical protein|unclassified	0.0740724267
+UniRef50_Q9BPL7: Enolase 2	0.0740698547
+UniRef50_Q9BPL7: Enolase 2|unclassified	0.0740698547
+UniRef50_F4A863	0.0740691555
+UniRef50_F4A863|unclassified	0.0740691555
+UniRef50_W3ZYI3	0.0740610198
+UniRef50_W3ZYI3|unclassified	0.0740610198
+UniRef50_W6SJE6	0.0740598099
+UniRef50_W6SJE6|unclassified	0.0740598099
+UniRef50_B7KHC2: tRNA (guanine-N(1)-)-methyltransferase	0.0740501498
+UniRef50_B7KHC2: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0740501498
+UniRef50_UPI000424615C: hypothetical protein	0.0740479833
+UniRef50_UPI000424615C: hypothetical protein|unclassified	0.0740479833
+UniRef50_UPI0001746838: NAD(P)H oxidoreductase	0.0740442983
+UniRef50_UPI0001746838: NAD(P)H oxidoreductase|unclassified	0.0740442983
+UniRef50_Q9HH09: Glutamine synthetase	0.0740400226
+UniRef50_Q9HH09: Glutamine synthetase|unclassified	0.0740400226
+UniRef50_UPI0003787F1C: hypothetical protein	0.0740393432
+UniRef50_UPI0003787F1C: hypothetical protein|unclassified	0.0740393432
+UniRef50_R7ZYD5: TonB-dependent receptor	0.0740327564
+UniRef50_R7ZYD5: TonB-dependent receptor|unclassified	0.0740327564
+UniRef50_UPI0004688D7A: 6,7-dimethyl-8-ribityllumazine synthase	0.0740230114
+UniRef50_UPI0004688D7A: 6,7-dimethyl-8-ribityllumazine synthase|unclassified	0.0740230114
+UniRef50_UPI000411C9BF: foldase	0.0740195176
+UniRef50_UPI000411C9BF: foldase|unclassified	0.0740195176
+UniRef50_UPI0004787AD8: peptide ABC transporter substrate-binding protein	0.0740184777
+UniRef50_UPI0004787AD8: peptide ABC transporter substrate-binding protein|unclassified	0.0740184777
+UniRef50_W7TTK6	0.0740154196
+UniRef50_W7TTK6|unclassified	0.0740154196
+UniRef50_UPI00035EDFEC: hypothetical protein	0.0740063535
+UniRef50_UPI00035EDFEC: hypothetical protein|unclassified	0.0740063535
+UniRef50_UPI0003D737B1: PREDICTED: dehydrogenase/reductase (SDR family) member 10 isoform X2	0.0740010521
+UniRef50_UPI0003D737B1: PREDICTED: dehydrogenase/reductase (SDR family) member 10 isoform X2|unclassified	0.0740010521
+UniRef50_UPI0003EDBE52: PREDICTED: sorbitol dehydrogenase	0.0740010268
+UniRef50_UPI0003EDBE52: PREDICTED: sorbitol dehydrogenase|unclassified	0.0740010268
+UniRef50_UPI00031728D0: hypothetical protein	0.0739983523
+UniRef50_UPI00031728D0: hypothetical protein|unclassified	0.0739983523
+UniRef50_Q7U0N6: Fumarate hydratase class II	0.0739910904
+UniRef50_Q7U0N6: Fumarate hydratase class II|unclassified	0.0739910904
+UniRef50_UPI0002890BA0: homoserine O-acetyltransferase	0.0739888654
+UniRef50_UPI0002890BA0: homoserine O-acetyltransferase|unclassified	0.0739888654
+UniRef50_UPI0003B3162E: glutathione peroxidase	0.0739872038
+UniRef50_UPI0003B3162E: glutathione peroxidase|unclassified	0.0739872038
+UniRef50_Q8EM39: Octanoyl-[GcvH]:protein N-octanoyltransferase	0.0739854973
+UniRef50_Q8EM39: Octanoyl-[GcvH]:protein N-octanoyltransferase|unclassified	0.0739854973
+UniRef50_N8HI80	0.0739829590
+UniRef50_N8HI80|unclassified	0.0739829590
+UniRef50_A0A015PDL6: Putative l-lysine 2,3-aminomutase (Fragment)	0.0739807414
+UniRef50_A0A015PDL6: Putative l-lysine 2,3-aminomutase (Fragment)|unclassified	0.0739807414
+UniRef50_UPI000402D13B: NADH:ubiquinone oxidoreductase subunit H	0.0739801445
+UniRef50_UPI000402D13B: NADH:ubiquinone oxidoreductase subunit H|unclassified	0.0739801445
+UniRef50_E1V7V8: Aspartate-semialdehyde dehydrogenase (Non-phosphorylating)	0.0739790786
+UniRef50_E1V7V8: Aspartate-semialdehyde dehydrogenase (Non-phosphorylating)|unclassified	0.0739790786
+UniRef50_UPI0003787256: hypothetical protein	0.0739697893
+UniRef50_UPI0003787256: hypothetical protein|unclassified	0.0739697893
+UniRef50_G8TIC9	0.0739586712
+UniRef50_G8TIC9|unclassified	0.0739586712
+UniRef50_B3E414: Bifunctional protein GlmU	0.0739550632
+UniRef50_B3E414: Bifunctional protein GlmU|unclassified	0.0739550632
+UniRef50_N0B1L8: ABC transporter substrate-binding protein	0.0739536346
+UniRef50_N0B1L8: ABC transporter substrate-binding protein|unclassified	0.0739536346
+UniRef50_UPI000471AD13: hypothetical protein	0.0739522849
+UniRef50_UPI000471AD13: hypothetical protein|unclassified	0.0739522849
+UniRef50_Q92F18: Internalin like protein (LPXTG motif)	0.0739460676
+UniRef50_Q92F18: Internalin like protein (LPXTG motif)|unclassified	0.0739460676
+UniRef50_Q9PIB4: Tryptophan--tRNA ligase	0.0739383519
+UniRef50_Q9PIB4: Tryptophan--tRNA ligase|unclassified	0.0739383519
+UniRef50_UPI000372F9DA: hypothetical protein	0.0739382257
+UniRef50_UPI000372F9DA: hypothetical protein|unclassified	0.0739382257
+UniRef50_UPI0003B4D851: Clp protease ATP-binding protein, partial	0.0739222837
+UniRef50_UPI0003B4D851: Clp protease ATP-binding protein, partial|unclassified	0.0739222837
+UniRef50_B5GZL5	0.0739169684
+UniRef50_B5GZL5|unclassified	0.0739169684
+UniRef50_UPI00047E9D57: hypothetical protein	0.0739169373
+UniRef50_UPI00047E9D57: hypothetical protein|unclassified	0.0739169373
+UniRef50_UPI0004785697: polyphosphate kinase	0.0739164791
+UniRef50_UPI0004785697: polyphosphate kinase|unclassified	0.0739164791
+UniRef50_G7SI20: Putative competence protein	0.0739115748
+UniRef50_G7SI20: Putative competence protein|unclassified	0.0739115748
+UniRef50_UPI00047C7174: GTPase CgtA	0.0739114809
+UniRef50_UPI00047C7174: GTPase CgtA|unclassified	0.0739114809
+UniRef50_UPI00027405BA: PREDICTED: procollagen-lysine,2-oxoglutarate 5-dioxygenase 2	0.0739094084
+UniRef50_UPI00027405BA: PREDICTED: procollagen-lysine,2-oxoglutarate 5-dioxygenase 2|unclassified	0.0739094084
+UniRef50_T0TH58	0.0739053429
+UniRef50_T0TH58|unclassified	0.0739053429
+UniRef50_UPI00038136EC: hypothetical protein	0.0739032574
+UniRef50_UPI00038136EC: hypothetical protein|unclassified	0.0739032574
+UniRef50_F3FTN2: Periplasmic binding protein (Fragment)	0.0739019329
+UniRef50_F3FTN2: Periplasmic binding protein (Fragment)|unclassified	0.0739019329
+UniRef50_UPI00034D0909: Organic hydroperoxide resistance protein	0.0739017791
+UniRef50_UPI00034D0909: Organic hydroperoxide resistance protein|unclassified	0.0739017791
+UniRef50_J9Z0P1: X-Pro dipeptidyl-peptidase (S15 family)	0.0738856812
+UniRef50_J9Z0P1: X-Pro dipeptidyl-peptidase (S15 family)|unclassified	0.0738856812
+UniRef50_F4QWW5: Major Facilitator Superfamily protein	0.0738835931
+UniRef50_F4QWW5: Major Facilitator Superfamily protein|unclassified	0.0738835931
+UniRef50_UPI0001F85BA6: transaminase-like protein	0.0738793851
+UniRef50_UPI0001F85BA6: transaminase-like protein|unclassified	0.0738793851
+UniRef50_A8Z4N0	0.0738788341
+UniRef50_A8Z4N0|unclassified	0.0738788341
+UniRef50_C0ZJS1: Conserved hypothetical membrane protein	0.0738648555
+UniRef50_C0ZJS1: Conserved hypothetical membrane protein|unclassified	0.0738648555
+UniRef50_V4IFH3	0.0738637501
+UniRef50_V4IFH3|unclassified	0.0738637501
+UniRef50_UPI000158438D: hypothetical protein BC1G_04899	0.0738584138
+UniRef50_UPI000158438D: hypothetical protein BC1G_04899|unclassified	0.0738584138
+UniRef50_UPI0003B5B510: LysR family transcriptional regulator	0.0738545349
+UniRef50_UPI0003B5B510: LysR family transcriptional regulator|unclassified	0.0738545349
+UniRef50_A4A467: Type IV pilus biogenesis/stability protein PilW	0.0738503947
+UniRef50_A4A467: Type IV pilus biogenesis/stability protein PilW|unclassified	0.0738503947
+UniRef50_Q4S2M1: Chromosome 17 SCAF14760, whole genome shotgun sequence	0.0738421097
+UniRef50_Q4S2M1: Chromosome 17 SCAF14760, whole genome shotgun sequence|unclassified	0.0738421097
+UniRef50_UPI0001CBB1D3	0.0738411793
+UniRef50_UPI0001CBB1D3|unclassified	0.0738411793
+UniRef50_UPI0003514255: PREDICTED: serine/arginine repetitive matrix protein 1-like	0.0738358408
+UniRef50_UPI0003514255: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	0.0738358408
+UniRef50_UPI0004776C9C: uracil phosphoribosyltransferase	0.0738340432
+UniRef50_UPI0004776C9C: uracil phosphoribosyltransferase|unclassified	0.0738340432
+UniRef50_UPI0003775E0F: RND transporter	0.0738256494
+UniRef50_UPI0003775E0F: RND transporter|unclassified	0.0738256494
+UniRef50_UPI000467516D: hypothetical protein	0.0738102141
+UniRef50_UPI000467516D: hypothetical protein|unclassified	0.0738102141
+UniRef50_UPI0001584880: hypothetical protein BC1G_07259	0.0738093275
+UniRef50_UPI0001584880: hypothetical protein BC1G_07259|unclassified	0.0738093275
+UniRef50_UPI0003B46231: sporulation protein	0.0738072287
+UniRef50_UPI0003B46231: sporulation protein|unclassified	0.0738072287
+UniRef50_UPI000474772C: guanine deaminase	0.0738050147
+UniRef50_UPI000474772C: guanine deaminase|unclassified	0.0738050147
+UniRef50_V5SCH9: Cytochrome B561	0.0738010301
+UniRef50_V5SCH9: Cytochrome B561|unclassified	0.0738010301
+UniRef50_C3G9P1	0.0737840116
+UniRef50_C3G9P1|unclassified	0.0737840116
+UniRef50_UPI0003B32964: GTPase	0.0737791045
+UniRef50_UPI0003B32964: GTPase|unclassified	0.0737791045
+UniRef50_K9ANQ5: Sodium ABC transporter permease	0.0737789763
+UniRef50_K9ANQ5: Sodium ABC transporter permease|unclassified	0.0737789763
+UniRef50_X2MFZ3	0.0737775179
+UniRef50_X2MFZ3|unclassified	0.0737775179
+UniRef50_G8PQ45	0.0737752578
+UniRef50_G8PQ45|unclassified	0.0737752578
+UniRef50_K8EGH5	0.0737752578
+UniRef50_K8EGH5|unclassified	0.0737752578
+UniRef50_UPI00037B9AA6: hypothetical protein	0.0737722985
+UniRef50_UPI00037B9AA6: hypothetical protein|unclassified	0.0737722985
+UniRef50_R6HRM4	0.0737684772
+UniRef50_R6HRM4|unclassified	0.0737684772
+UniRef50_Q73GB4: Glycerol-3-phosphate acyltransferase	0.0737651025
+UniRef50_Q73GB4: Glycerol-3-phosphate acyltransferase|unclassified	0.0737651025
+UniRef50_J3K715	0.0737619924
+UniRef50_J3K715|unclassified	0.0737619924
+UniRef50_UPI0004678749: hypothetical protein	0.0737565816
+UniRef50_UPI0004678749: hypothetical protein|unclassified	0.0737565816
+UniRef50_F7YAM4: 40-residue YVTN family beta-propeller repeat protein	0.0737563873
+UniRef50_F7YAM4: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.0737563873
+UniRef50_UPI00047EB05D: hypothetical protein	0.0737541923
+UniRef50_UPI00047EB05D: hypothetical protein|unclassified	0.0737541923
+UniRef50_UPI000364AF0E: hypothetical protein	0.0737534436
+UniRef50_UPI000364AF0E: hypothetical protein|unclassified	0.0737534436
+UniRef50_UPI00047B8131: hypothetical protein	0.0737508075
+UniRef50_UPI00047B8131: hypothetical protein|unclassified	0.0737508075
+UniRef50_D7REY3: Caffeine dehydrogenase subunit alpha	0.0737481944
+UniRef50_D7REY3: Caffeine dehydrogenase subunit alpha|unclassified	0.0737481944
+UniRef50_S0JPN0	0.0737461573
+UniRef50_S0JPN0|unclassified	0.0737461573
+UniRef50_K7E0S8	0.0737432157
+UniRef50_K7E0S8|unclassified	0.0737432157
+UniRef50_UPI00047A4208: hypothetical protein	0.0737339210
+UniRef50_UPI00047A4208: hypothetical protein|unclassified	0.0737339210
+UniRef50_UPI00037951C5: hypothetical protein	0.0737302881
+UniRef50_UPI00037951C5: hypothetical protein|unclassified	0.0737302881
+UniRef50_UPI00046D2CBC: hypothetical protein	0.0737298108
+UniRef50_UPI00046D2CBC: hypothetical protein|unclassified	0.0737298108
+UniRef50_Q9KCM5: Diaminopimelate decarboxylase	0.0737235199
+UniRef50_Q9KCM5: Diaminopimelate decarboxylase|unclassified	0.0737235199
+UniRef50_B0UEH6: Phage/plasmid primase, P4 family	0.0737230663
+UniRef50_B0UEH6: Phage/plasmid primase, P4 family|unclassified	0.0737230663
+UniRef50_A6VYJ6: D-alanine--D-alanine ligase	0.0737214097
+UniRef50_A6VYJ6: D-alanine--D-alanine ligase|unclassified	0.0737214097
+UniRef50_A0A031I4F3: Putative lysine decarboxylase family protein	0.0737177483
+UniRef50_A0A031I4F3: Putative lysine decarboxylase family protein|unclassified	0.0737177483
+UniRef50_A4SV52: Indole-3-glycerol phosphate synthase	0.0737128555
+UniRef50_A4SV52: Indole-3-glycerol phosphate synthase|unclassified	0.0737128555
+UniRef50_Q688R7	0.0737103534
+UniRef50_Q688R7|unclassified	0.0737103534
+UniRef50_Q1IJB3: Lytic transglycosylase, catalytic	0.0737078368
+UniRef50_Q1IJB3: Lytic transglycosylase, catalytic|unclassified	0.0737078368
+UniRef50_UPI000169369A: two-component sensor histidine kinase YvqC-like protein	0.0737057424
+UniRef50_UPI000169369A: two-component sensor histidine kinase YvqC-like protein|unclassified	0.0737057424
+UniRef50_UPI000473FB58: helicase DnaB, partial	0.0737050439
+UniRef50_UPI000473FB58: helicase DnaB, partial|unclassified	0.0737050439
+UniRef50_P60920: Histidine--tRNA ligase	0.0736964061
+UniRef50_P60920: Histidine--tRNA ligase|unclassified	0.0736964061
+UniRef50_UPI00005DE9C0: MULTISPECIES: hypothetical protein	0.0736960219
+UniRef50_UPI00005DE9C0: MULTISPECIES: hypothetical protein|unclassified	0.0736960219
+UniRef50_UPI0003658664: hypothetical protein	0.0736942856
+UniRef50_UPI0003658664: hypothetical protein|unclassified	0.0736942856
+UniRef50_UPI0001D2F0DB: transcriptional regulator, LysR family	0.0736940674
+UniRef50_UPI0001D2F0DB: transcriptional regulator, LysR family|unclassified	0.0736940674
+UniRef50_UPI00036E870B: hypothetical protein	0.0736911913
+UniRef50_UPI00036E870B: hypothetical protein|unclassified	0.0736911913
+UniRef50_T0BRW6	0.0736853937
+UniRef50_T0BRW6|unclassified	0.0736853937
+UniRef50_UPI0001F85E37: methyl-accepting chemotaxis-like protein	0.0736750753
+UniRef50_UPI0001F85E37: methyl-accepting chemotaxis-like protein|unclassified	0.0736750753
+UniRef50_UPI0003EF85BB: hypothetical protein	0.0736741853
+UniRef50_UPI0003EF85BB: hypothetical protein|unclassified	0.0736741853
+UniRef50_UPI0003C78503: hypothetical protein	0.0736687724
+UniRef50_UPI0003C78503: hypothetical protein|unclassified	0.0736687724
+UniRef50_UPI000467A2E7: hypothetical protein	0.0736639396
+UniRef50_UPI000467A2E7: hypothetical protein|unclassified	0.0736639396
+UniRef50_UPI00036F5DDA: hypothetical protein	0.0736621251
+UniRef50_UPI00036F5DDA: hypothetical protein|unclassified	0.0736621251
+UniRef50_B3DT37: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.0736590303
+UniRef50_B3DT37: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.0736590303
+UniRef50_UPI000465F605: hypothetical protein	0.0736498755
+UniRef50_UPI000465F605: hypothetical protein|unclassified	0.0736498755
+UniRef50_X6KUI6	0.0736447440
+UniRef50_X6KUI6|unclassified	0.0736447440
+UniRef50_K9RI96: GMP synthase family protein	0.0736170501
+UniRef50_K9RI96: GMP synthase family protein|unclassified	0.0736170501
+UniRef50_Q16BP4	0.0735939166
+UniRef50_Q16BP4|unclassified	0.0735939166
+UniRef50_UPI00047B3FBA: hypothetical protein	0.0735931364
+UniRef50_UPI00047B3FBA: hypothetical protein|unclassified	0.0735931364
+UniRef50_UPI000378B32D: hypothetical protein	0.0735888065
+UniRef50_UPI000378B32D: hypothetical protein|unclassified	0.0735888065
+UniRef50_UPI00029B4DA2: chemotaxis CheB/CheR fusion protein	0.0735830762
+UniRef50_UPI00029B4DA2: chemotaxis CheB/CheR fusion protein|unclassified	0.0735830762
+UniRef50_UPI00035CA530: hypothetical protein	0.0735808282
+UniRef50_UPI00035CA530: hypothetical protein|unclassified	0.0735808282
+UniRef50_UPI0003A16BC2: flagellar hook protein FlgE	0.0735804701
+UniRef50_UPI0003A16BC2: flagellar hook protein FlgE|unclassified	0.0735804701
+UniRef50_UPI00028A034B: alpha/beta fold family hydrolase	0.0735739110
+UniRef50_UPI00028A034B: alpha/beta fold family hydrolase|unclassified	0.0735739110
+UniRef50_J9HQC0	0.0735616949
+UniRef50_J9HQC0|unclassified	0.0735616949
+UniRef50_C6XK48	0.0735600540
+UniRef50_C6XK48|unclassified	0.0735600540
+UniRef50_UPI0003699B2C: hypothetical protein	0.0735597784
+UniRef50_UPI0003699B2C: hypothetical protein|unclassified	0.0735597784
+UniRef50_UPI000472F551: glutathione ABC transporter permease	0.0735581929
+UniRef50_UPI000472F551: glutathione ABC transporter permease|unclassified	0.0735581929
+UniRef50_UPI000478EF8A: hypothetical protein, partial	0.0735550552
+UniRef50_UPI000478EF8A: hypothetical protein, partial|unclassified	0.0735550552
+UniRef50_A1TFF9: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.0735460144
+UniRef50_A1TFF9: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.0735460144
+UniRef50_R2SC95	0.0735413876
+UniRef50_R2SC95|unclassified	0.0735413876
+UniRef50_E8R3M9	0.0735367236
+UniRef50_E8R3M9|unclassified	0.0735367236
+UniRef50_UPI0002626C49: kinase	0.0735362566
+UniRef50_UPI0002626C49: kinase|unclassified	0.0735362566
+UniRef50_UPI0003B76DCA: adenosylmethionine-8-amino-7-oxononanoate aminotransferase	0.0735279559
+UniRef50_UPI0003B76DCA: adenosylmethionine-8-amino-7-oxononanoate aminotransferase|unclassified	0.0735279559
+UniRef50_A0RU57	0.0735246127
+UniRef50_A0RU57|unclassified	0.0735246127
+UniRef50_UPI000367632A: hypothetical protein	0.0735195475
+UniRef50_UPI000367632A: hypothetical protein|unclassified	0.0735195475
+UniRef50_UPI0003780DC8: hypothetical protein	0.0735176025
+UniRef50_UPI0003780DC8: hypothetical protein|unclassified	0.0735176025
+UniRef50_X1HXX0: Marine sediment metagenome DNA, contig: S03H2_S13725 (Fragment)	0.0735131247
+UniRef50_X1HXX0: Marine sediment metagenome DNA, contig: S03H2_S13725 (Fragment)|unclassified	0.0735131247
+UniRef50_UPI00047C9DA6: hypothetical protein	0.0735110025
+UniRef50_UPI00047C9DA6: hypothetical protein|unclassified	0.0735110025
+UniRef50_UPI00045E9966: hypothetical protein	0.0735050953
+UniRef50_UPI00045E9966: hypothetical protein|unclassified	0.0735050953
+UniRef50_C3MI43	0.0735050463
+UniRef50_C3MI43|unclassified	0.0735050463
+UniRef50_UPI0002375AFF: plasmid pRiA4b ORF-3 family protein	0.0735049049
+UniRef50_UPI0002375AFF: plasmid pRiA4b ORF-3 family protein|unclassified	0.0735049049
+UniRef50_UPI0004759676: hypothetical protein	0.0735029883
+UniRef50_UPI0004759676: hypothetical protein|unclassified	0.0735029883
+UniRef50_K7UNN0	0.0735010441
+UniRef50_K7UNN0|unclassified	0.0735010441
+UniRef50_D8TXA0	0.0735009052
+UniRef50_D8TXA0|unclassified	0.0735009052
+UniRef50_UPI0003B6B335: MerR family transcriptional regulator	0.0735005433
+UniRef50_UPI0003B6B335: MerR family transcriptional regulator|unclassified	0.0735005433
+UniRef50_K2DWN7	0.0734985455
+UniRef50_K2DWN7|unclassified	0.0734985455
+UniRef50_UPI00045DBFE5: PREDICTED: collagen alpha-1(XXII) chain-like	0.0734982551
+UniRef50_UPI00045DBFE5: PREDICTED: collagen alpha-1(XXII) chain-like|unclassified	0.0734982551
+UniRef50_A9MBW7: Ppx/GppA phosphatase	0.0734967933
+UniRef50_A9MBW7: Ppx/GppA phosphatase|unclassified	0.0734967933
+UniRef50_C5CNG0: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	0.0734966295
+UniRef50_C5CNG0: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.0734966295
+UniRef50_D2ZXF5	0.0734935643
+UniRef50_D2ZXF5|unclassified	0.0734935643
+UniRef50_J0SW76: Cell wall-binding repeat protein (Fragment)	0.0734917743
+UniRef50_J0SW76: Cell wall-binding repeat protein (Fragment)|unclassified	0.0734917743
+UniRef50_B8D8U9: Lipoprotein signal peptidase	0.0734865614
+UniRef50_B8D8U9: Lipoprotein signal peptidase|unclassified	0.0734865614
+UniRef50_Q0G194: Teichuronic acid biosynthesis	0.0734830517
+UniRef50_Q0G194: Teichuronic acid biosynthesis|unclassified	0.0734830517
+UniRef50_X1YP93	0.0734829449
+UniRef50_X1YP93|unclassified	0.0734829449
+UniRef50_UPI00037CE892: hypothetical protein	0.0734807824
+UniRef50_UPI00037CE892: hypothetical protein|unclassified	0.0734807824
+UniRef50_UPI00046CB7F1: hypothetical protein	0.0734803760
+UniRef50_UPI00046CB7F1: hypothetical protein|unclassified	0.0734803760
+UniRef50_UPI00045612E6: hypothetical protein PFL1_02986	0.0734774253
+UniRef50_UPI00045612E6: hypothetical protein PFL1_02986|unclassified	0.0734774253
+UniRef50_R7BRL2: Cobalt transport protein	0.0734772683
+UniRef50_R7BRL2: Cobalt transport protein|unclassified	0.0734772683
+UniRef50_UPI000466904B: hypothetical protein, partial	0.0734771642
+UniRef50_UPI000466904B: hypothetical protein, partial|unclassified	0.0734771642
+UniRef50_I4CDA2: TRAP-type mannitol/chloroaromatic compound transport system, small permease component	0.0734756086
+UniRef50_I4CDA2: TRAP-type mannitol/chloroaromatic compound transport system, small permease component|unclassified	0.0734756086
+UniRef50_UPI0003A4CA10: hypothetical protein	0.0734730315
+UniRef50_UPI0003A4CA10: hypothetical protein|unclassified	0.0734730315
+UniRef50_A3JPI8	0.0734703058
+UniRef50_A3JPI8|unclassified	0.0734703058
+UniRef50_UPI00036E37BC: hypothetical protein	0.0734700441
+UniRef50_UPI00036E37BC: hypothetical protein|unclassified	0.0734700441
+UniRef50_UPI00036AEA1E: hypothetical protein	0.0734696579
+UniRef50_UPI00036AEA1E: hypothetical protein|unclassified	0.0734696579
+UniRef50_C4UW54: LemA family protein	0.0734651327
+UniRef50_C4UW54: LemA family protein|unclassified	0.0734651327
+UniRef50_UPI0003B759D0: short-chain dehydrogenase	0.0734640621
+UniRef50_UPI0003B759D0: short-chain dehydrogenase|unclassified	0.0734640621
+UniRef50_UPI0004657331: hypothetical protein	0.0734638371
+UniRef50_UPI0004657331: hypothetical protein|unclassified	0.0734638371
+UniRef50_F8AUX8	0.0734609785
+UniRef50_F8AUX8|unclassified	0.0734609785
+UniRef50_U1GBR3	0.0734543289
+UniRef50_U1GBR3|unclassified	0.0734543289
+UniRef50_UPI00047E76F4: hypothetical protein	0.0734532152
+UniRef50_UPI00047E76F4: hypothetical protein|unclassified	0.0734532152
+UniRef50_K0SHR8	0.0734488804
+UniRef50_K0SHR8|unclassified	0.0734488804
+UniRef50_C7RA38	0.0734486557
+UniRef50_C7RA38|unclassified	0.0734486557
+UniRef50_UPI00036523D7: hypothetical protein	0.0734459970
+UniRef50_UPI00036523D7: hypothetical protein|unclassified	0.0734459970
+UniRef50_UPI00026C769A: LysR family transcriptional regulator	0.0734225768
+UniRef50_UPI00026C769A: LysR family transcriptional regulator|unclassified	0.0734225768
+UniRef50_C1BAE5	0.0734164935
+UniRef50_C1BAE5|unclassified	0.0734164935
+UniRef50_UPI000400C086: hypothetical protein	0.0734152355
+UniRef50_UPI000400C086: hypothetical protein|unclassified	0.0734152355
+UniRef50_J8TH38	0.0734136593
+UniRef50_J8TH38|unclassified	0.0734136593
+UniRef50_A8DW56: Predicted protein	0.0734075934
+UniRef50_A8DW56: Predicted protein|unclassified	0.0734075934
+UniRef50_UPI00047E0502: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0734068405
+UniRef50_UPI00047E0502: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0734068405
+UniRef50_N0AIN6: Type II secretion system (T2SS), F family protein	0.0734065812
+UniRef50_N0AIN6: Type II secretion system (T2SS), F family protein|unclassified	0.0734065812
+UniRef50_Q3AC06: Orotidine 5'-phosphate decarboxylase	0.0734008527
+UniRef50_Q3AC06: Orotidine 5'-phosphate decarboxylase|unclassified	0.0734008527
+UniRef50_Q2W894: Predicted ATPase	0.0733992927
+UniRef50_Q2W894: Predicted ATPase|unclassified	0.0733992927
+UniRef50_UPI0001E27F29: hydroxyglutarate oxidase, partial	0.0733871927
+UniRef50_UPI0001E27F29: hydroxyglutarate oxidase, partial|unclassified	0.0733871927
+UniRef50_UPI0003AE71AD: PREDICTED: basic proline-rich protein-like	0.0733851737
+UniRef50_UPI0003AE71AD: PREDICTED: basic proline-rich protein-like|unclassified	0.0733851737
+UniRef50_UPI00036116CD: hypothetical protein	0.0733837510
+UniRef50_UPI00036116CD: hypothetical protein|unclassified	0.0733837510
+UniRef50_UPI00036DC247: hypothetical protein	0.0733830510
+UniRef50_UPI00036DC247: hypothetical protein|unclassified	0.0733830510
+UniRef50_S9RXN5: Putative inner membrane protein	0.0733815666
+UniRef50_S9RXN5: Putative inner membrane protein|unclassified	0.0733815666
+UniRef50_UPI0004203E19: hypothetical protein	0.0733778350
+UniRef50_UPI0004203E19: hypothetical protein|unclassified	0.0733778350
+UniRef50_D8R7B3	0.0733740233
+UniRef50_D8R7B3|unclassified	0.0733740233
+UniRef50_C0SHJ1	0.0733734843
+UniRef50_C0SHJ1|unclassified	0.0733734843
+UniRef50_UPI000381E70F: hypothetical protein	0.0733733955
+UniRef50_UPI000381E70F: hypothetical protein|unclassified	0.0733733955
+UniRef50_UPI00047034AE: hypothetical protein	0.0733732092
+UniRef50_UPI00047034AE: hypothetical protein|unclassified	0.0733732092
+UniRef50_I7DPQ7	0.0733699535
+UniRef50_I7DPQ7|unclassified	0.0733699535
+UniRef50_M3A9U0	0.0733638776
+UniRef50_M3A9U0|unclassified	0.0733638776
+UniRef50_Q6C5E4: YALI0E18766p	0.0733623179
+UniRef50_Q6C5E4: YALI0E18766p|unclassified	0.0733623179
+UniRef50_O43708: Maleylacetoacetate isomerase	0.0733548167
+UniRef50_O43708: Maleylacetoacetate isomerase|unclassified	0.0733548167
+UniRef50_UPI0003F4971B: hypothetical protein TREMEDRAFT_28317	0.0733530380
+UniRef50_UPI0003F4971B: hypothetical protein TREMEDRAFT_28317|unclassified	0.0733530380
+UniRef50_UPI0002555ED0: hypothetical protein	0.0733523738
+UniRef50_UPI0002555ED0: hypothetical protein|unclassified	0.0733523738
+UniRef50_X0QFF9: Excinuclease ABC	0.0733469085
+UniRef50_X0QFF9: Excinuclease ABC|unclassified	0.0733469085
+UniRef50_UPI00036A03CE: hypothetical protein	0.0733465883
+UniRef50_UPI00036A03CE: hypothetical protein|unclassified	0.0733465883
+UniRef50_UPI000379D3C0: hypothetical protein	0.0733434954
+UniRef50_UPI000379D3C0: hypothetical protein|unclassified	0.0733434954
+UniRef50_X1JL35: Marine sediment metagenome DNA, contig: S03H2_S18600 (Fragment)	0.0733428280
+UniRef50_X1JL35: Marine sediment metagenome DNA, contig: S03H2_S18600 (Fragment)|unclassified	0.0733428280
+UniRef50_Q57JE2: Monofunctional biosynthetic peptidoglycan transglycosylase	0.0733388122
+UniRef50_Q57JE2: Monofunctional biosynthetic peptidoglycan transglycosylase|unclassified	0.0733388122
+UniRef50_UPI0003B448AF: N-(5''''-phosphoribosyl)anthranilate isomerase	0.0733378795
+UniRef50_UPI0003B448AF: N-(5''''-phosphoribosyl)anthranilate isomerase|unclassified	0.0733378795
+UniRef50_K9DGC6	0.0733376465
+UniRef50_K9DGC6|unclassified	0.0733376465
+UniRef50_Q5WBF5	0.0733362513
+UniRef50_Q5WBF5|unclassified	0.0733362513
+UniRef50_G6F2A8	0.0733349676
+UniRef50_G6F2A8|unclassified	0.0733349676
+UniRef50_UPI00016AA155: probable outer membrane chanel lipoprotein, partial	0.0733319883
+UniRef50_UPI00016AA155: probable outer membrane chanel lipoprotein, partial|unclassified	0.0733319883
+UniRef50_UPI00035EE10B: MULTISPECIES: hypothetical protein	0.0733273187
+UniRef50_UPI00035EE10B: MULTISPECIES: hypothetical protein|unclassified	0.0733273187
+UniRef50_E6ZS51	0.0733213203
+UniRef50_E6ZS51|unclassified	0.0733213203
+UniRef50_UPI00036E3DCC: hypothetical protein	0.0733212216
+UniRef50_UPI00036E3DCC: hypothetical protein|unclassified	0.0733212216
+UniRef50_A8AY47	0.0733178360
+UniRef50_A8AY47|unclassified	0.0733178360
+UniRef50_UPI0002F68D16: hypothetical protein	0.0733034158
+UniRef50_UPI0002F68D16: hypothetical protein|unclassified	0.0733034158
+UniRef50_UPI00047074FA: hypothetical protein	0.0732900265
+UniRef50_UPI00047074FA: hypothetical protein|unclassified	0.0732900265
+UniRef50_UPI0001D54D5D: PREDICTED: hypothetical protein LOC705864	0.0732838876
+UniRef50_UPI0001D54D5D: PREDICTED: hypothetical protein LOC705864|unclassified	0.0732838876
+UniRef50_M0SWW4	0.0732786743
+UniRef50_M0SWW4|unclassified	0.0732786743
+UniRef50_J8RTD6	0.0732760650
+UniRef50_J8RTD6|unclassified	0.0732760650
+UniRef50_G2QJ48	0.0732704641
+UniRef50_G2QJ48|unclassified	0.0732704641
+UniRef50_UPI00047B8945: hypothetical protein	0.0732701845
+UniRef50_UPI00047B8945: hypothetical protein|unclassified	0.0732701845
+UniRef50_B9DJ61	0.0732701648
+UniRef50_B9DJ61|unclassified	0.0732701648
+UniRef50_UPI0003B77756: deoxyribonucleotide triphosphate pyrophosphatase	0.0732679074
+UniRef50_UPI0003B77756: deoxyribonucleotide triphosphate pyrophosphatase|unclassified	0.0732679074
+UniRef50_E4YZW9: Whole genome shotgun assembly, allelic scaffold set, scaffold scaffoldA_1943	0.0732630496
+UniRef50_E4YZW9: Whole genome shotgun assembly, allelic scaffold set, scaffold scaffoldA_1943|unclassified	0.0732630496
+UniRef50_Q5H5P3: Integral membrane protein	0.0732621728
+UniRef50_Q5H5P3: Integral membrane protein|unclassified	0.0732621728
+UniRef50_A4IKU2: Foldase protein PrsA	0.0732617425
+UniRef50_A4IKU2: Foldase protein PrsA|unclassified	0.0732617425
+UniRef50_E8SIR6: DNA repair protein RadC	0.0732611143
+UniRef50_E8SIR6: DNA repair protein RadC|unclassified	0.0732611143
+UniRef50_D4EA44: Type-F conjugative transfer system protein TrbI	0.0732600733
+UniRef50_D4EA44: Type-F conjugative transfer system protein TrbI|unclassified	0.0732600733
+UniRef50_Z2F070	0.0732538762
+UniRef50_Z2F070|unclassified	0.0732538762
+UniRef50_Q1YEU7: Lytic murein transglycosylase	0.0732518169
+UniRef50_Q1YEU7: Lytic murein transglycosylase|unclassified	0.0732518169
+UniRef50_W7YQW2	0.0732511595
+UniRef50_W7YQW2|unclassified	0.0732511595
+UniRef50_UPI0003784C38: hypothetical protein	0.0732419492
+UniRef50_UPI0003784C38: hypothetical protein|unclassified	0.0732419492
+UniRef50_O29313: Glutamine synthetase	0.0732415590
+UniRef50_O29313: Glutamine synthetase|unclassified	0.0732415590
+UniRef50_UPI0002D64EF4: hypothetical protein	0.0732409567
+UniRef50_UPI0002D64EF4: hypothetical protein|unclassified	0.0732409567
+UniRef50_E6SJJ5	0.0732399936
+UniRef50_E6SJJ5|unclassified	0.0732399936
+UniRef50_K9F564: Putative extracellular nuclease	0.0732388918
+UniRef50_K9F564: Putative extracellular nuclease|unclassified	0.0732388918
+UniRef50_B3E602: Fumarate reductase/succinate dehydrogenase flavoprotein domain protein	0.0732289462
+UniRef50_B3E602: Fumarate reductase/succinate dehydrogenase flavoprotein domain protein|unclassified	0.0732289462
+UniRef50_UPI000378DE23: hypothetical protein	0.0732282105
+UniRef50_UPI000378DE23: hypothetical protein|unclassified	0.0732282105
+UniRef50_Q97FR2: Non-canonical purine NTP pyrophosphatase	0.0732250135
+UniRef50_Q97FR2: Non-canonical purine NTP pyrophosphatase|unclassified	0.0732250135
+UniRef50_D5AM97	0.0732230310
+UniRef50_D5AM97|unclassified	0.0732230310
+UniRef50_UPI000477FD68: histidine kinase	0.0732131593
+UniRef50_UPI000477FD68: histidine kinase|unclassified	0.0732131593
+UniRef50_UPI0003656848: hypothetical protein	0.0732102618
+UniRef50_UPI0003656848: hypothetical protein|unclassified	0.0732102618
+UniRef50_UPI0003B628F5: alcohol dehydrogenase, partial	0.0732100307
+UniRef50_UPI0003B628F5: alcohol dehydrogenase, partial|unclassified	0.0732100307
+UniRef50_UPI00047272B9: hypothetical protein	0.0732081307
+UniRef50_UPI00047272B9: hypothetical protein|unclassified	0.0732081307
+UniRef50_R5EZL8	0.0732059505
+UniRef50_R5EZL8|unclassified	0.0732059505
+UniRef50_UPI0003B40576: hypothetical protein	0.0732048283
+UniRef50_UPI0003B40576: hypothetical protein|unclassified	0.0732048283
+UniRef50_UPI0002F9C2E1: hypothetical protein	0.0732002521
+UniRef50_UPI0002F9C2E1: hypothetical protein|unclassified	0.0732002521
+UniRef50_A3W2A2	0.0731921914
+UniRef50_A3W2A2|unclassified	0.0731921914
+UniRef50_A0A033UTN3	0.0731900441
+UniRef50_A0A033UTN3|unclassified	0.0731900441
+UniRef50_UPI0003B48F90: microcin C ABC transporter ATP-binding protein YejF	0.0731892922
+UniRef50_UPI0003B48F90: microcin C ABC transporter ATP-binding protein YejF|unclassified	0.0731892922
+UniRef50_UPI00037451D4: hypothetical protein	0.0731823337
+UniRef50_UPI00037451D4: hypothetical protein|unclassified	0.0731823337
+UniRef50_G4QMY4	0.0731694457
+UniRef50_G4QMY4|unclassified	0.0731694457
+UniRef50_UPI00017456BF: PhoB family transcriptional regulator	0.0731646950
+UniRef50_UPI00017456BF: PhoB family transcriptional regulator|unclassified	0.0731646950
+UniRef50_D9PLD2: Hydrogenase expression/formation protein hupJ	0.0731565014
+UniRef50_D9PLD2: Hydrogenase expression/formation protein hupJ|unclassified	0.0731565014
+UniRef50_UPI00039427DC: phosphatase	0.0731504300
+UniRef50_UPI00039427DC: phosphatase|unclassified	0.0731504300
+UniRef50_G9ZYG4: ABC transporter, solute-binding protein	0.0731461552
+UniRef50_G9ZYG4: ABC transporter, solute-binding protein|unclassified	0.0731461552
+UniRef50_B0TI89: Arginine--tRNA ligase	0.0731422718
+UniRef50_B0TI89: Arginine--tRNA ligase|unclassified	0.0731422718
+UniRef50_UPI00016C4483: circadian clock protein KaiC	0.0731309321
+UniRef50_UPI00016C4483: circadian clock protein KaiC|unclassified	0.0731309321
+UniRef50_H3S9H0	0.0731279118
+UniRef50_H3S9H0|unclassified	0.0731279118
+UniRef50_D4ZD88	0.0731251473
+UniRef50_D4ZD88|unclassified	0.0731251473
+UniRef50_A8TTD8: Putative outer membrane protein	0.0731250653
+UniRef50_A8TTD8: Putative outer membrane protein|unclassified	0.0731250653
+UniRef50_F4EFF4	0.0731221805
+UniRef50_F4EFF4|unclassified	0.0731221805
+UniRef50_UPI00016C4079: sodium/hydrogen exchanger family protein	0.0731220121
+UniRef50_UPI00016C4079: sodium/hydrogen exchanger family protein|unclassified	0.0731220121
+UniRef50_UPI000366F389: hypothetical protein	0.0731199525
+UniRef50_UPI000366F389: hypothetical protein|unclassified	0.0731199525
+UniRef50_UPI000466AE3F: hypothetical protein	0.0731193571
+UniRef50_UPI000466AE3F: hypothetical protein|unclassified	0.0731193571
+UniRef50_UPI0004683A60: hypothetical protein, partial	0.0731152303
+UniRef50_UPI0004683A60: hypothetical protein, partial|unclassified	0.0731152303
+UniRef50_A8LNK4: Flagellar hook capping protein FlgD	0.0731151365
+UniRef50_A8LNK4: Flagellar hook capping protein FlgD|unclassified	0.0731151365
+UniRef50_O31660: Putative membrane-bound acyltransferase YkrP	0.0731063655
+UniRef50_O31660: Putative membrane-bound acyltransferase YkrP|unclassified	0.0731063655
+UniRef50_C7D9G5: Membrane protein	0.0731034908
+UniRef50_C7D9G5: Membrane protein|unclassified	0.0731034908
+UniRef50_Q9RWB2: Citrate synthase	0.0730999759
+UniRef50_Q9RWB2: Citrate synthase|unclassified	0.0730999759
+UniRef50_UPI0003B31D39: glucose-1-phosphate adenylyltransferase	0.0730968777
+UniRef50_UPI0003B31D39: glucose-1-phosphate adenylyltransferase|unclassified	0.0730968777
+UniRef50_W7BJE6: Secreted protein, N-terminal part	0.0730941241
+UniRef50_W7BJE6: Secreted protein, N-terminal part|unclassified	0.0730941241
+UniRef50_UPI00036B63C0: hypothetical protein	0.0730808391
+UniRef50_UPI00036B63C0: hypothetical protein|unclassified	0.0730808391
+UniRef50_W5X5J1: RNA polymerase sigma factor	0.0730786065
+UniRef50_W5X5J1: RNA polymerase sigma factor|unclassified	0.0730786065
+UniRef50_UPI00046302EE: hypothetical protein	0.0730762634
+UniRef50_UPI00046302EE: hypothetical protein|unclassified	0.0730762634
+UniRef50_UPI0003B636C9: 16S rRNA methyltransferase	0.0730727917
+UniRef50_UPI0003B636C9: 16S rRNA methyltransferase|unclassified	0.0730727917
+UniRef50_K9E8Y4	0.0730700036
+UniRef50_K9E8Y4|unclassified	0.0730700036
+UniRef50_UPI0003B7338D: proline iminopeptidase	0.0730665304
+UniRef50_UPI0003B7338D: proline iminopeptidase|unclassified	0.0730665304
+UniRef50_UPI000377D75D: hypothetical protein	0.0730658069
+UniRef50_UPI000377D75D: hypothetical protein|unclassified	0.0730658069
+UniRef50_UPI00046FB476: hypothetical protein	0.0730629885
+UniRef50_UPI00046FB476: hypothetical protein|unclassified	0.0730629885
+UniRef50_V7Q1B8	0.0730570604
+UniRef50_V7Q1B8|unclassified	0.0730570604
+UniRef50_Q9FRF6	0.0730545210
+UniRef50_Q9FRF6|unclassified	0.0730545210
+UniRef50_UPI00037C3801: hypothetical protein	0.0730475378
+UniRef50_UPI00037C3801: hypothetical protein|unclassified	0.0730475378
+UniRef50_A0A011PIS8	0.0730430158
+UniRef50_A0A011PIS8|unclassified	0.0730430158
+UniRef50_UPI000362AF7E: hypothetical protein	0.0730417520
+UniRef50_UPI000362AF7E: hypothetical protein|unclassified	0.0730417520
+UniRef50_UPI0004169BAE: hypothetical protein	0.0730368775
+UniRef50_UPI0004169BAE: hypothetical protein|unclassified	0.0730368775
+UniRef50_Q93SS1: Hemin import ATP-binding protein HmuV	0.0730347611
+UniRef50_Q93SS1: Hemin import ATP-binding protein HmuV|unclassified	0.0730347611
+UniRef50_R7S2Q0	0.0730341374
+UniRef50_R7S2Q0|unclassified	0.0730341374
+UniRef50_UPI00047AD3F7: hypothetical protein	0.0730317072
+UniRef50_UPI00047AD3F7: hypothetical protein|unclassified	0.0730317072
+UniRef50_A0A058SPH0: Nitrate reductase 2, beta subunit (Fragment)	0.0730313472
+UniRef50_A0A058SPH0: Nitrate reductase 2, beta subunit (Fragment)|unclassified	0.0730313472
+UniRef50_UPI0003695F87: oligopeptidase A	0.0730311884
+UniRef50_UPI0003695F87: oligopeptidase A|unclassified	0.0730311884
+UniRef50_UPI000225E046: hypothetical protein	0.0730309851
+UniRef50_UPI000225E046: hypothetical protein|unclassified	0.0730309851
+UniRef50_D0L1B1: ATPase	0.0730236611
+UniRef50_D0L1B1: ATPase|unclassified	0.0730236611
+UniRef50_A1S1H9	0.0730126393
+UniRef50_A1S1H9|unclassified	0.0730126393
+UniRef50_UPI0003B550BB: spermidine/putrescine ABC transporter permease	0.0730073847
+UniRef50_UPI0003B550BB: spermidine/putrescine ABC transporter permease|unclassified	0.0730073847
+UniRef50_UPI00037D7BC7: hypothetical protein	0.0730047116
+UniRef50_UPI00037D7BC7: hypothetical protein|unclassified	0.0730047116
+UniRef50_UPI0004639CFB: hypothetical protein	0.0730007891
+UniRef50_UPI0004639CFB: hypothetical protein|unclassified	0.0730007891
+UniRef50_A6FTQ8	0.0729979334
+UniRef50_A6FTQ8|unclassified	0.0729979334
+UniRef50_UPI00037CFC31: hypothetical protein	0.0729917774
+UniRef50_UPI00037CFC31: hypothetical protein|unclassified	0.0729917774
+UniRef50_Q9KE44: BH1014 protein	0.0729906491
+UniRef50_Q9KE44: BH1014 protein|unclassified	0.0729906491
+UniRef50_UPI0003F6818D: alanine racemase	0.0729845776
+UniRef50_UPI0003F6818D: alanine racemase|unclassified	0.0729845776
+UniRef50_Q3JX98	0.0729838090
+UniRef50_Q3JX98|unclassified	0.0729838090
+UniRef50_R9MA14	0.0729829346
+UniRef50_R9MA14|unclassified	0.0729829346
+UniRef50_M7Y523	0.0729820152
+UniRef50_M7Y523|unclassified	0.0729820152
+UniRef50_K5Z1T4	0.0729790783
+UniRef50_K5Z1T4|unclassified	0.0729790783
+UniRef50_E0QAI5: TQXA domain protein (Fragment)	0.0729760789
+UniRef50_E0QAI5: TQXA domain protein (Fragment)|unclassified	0.0729760789
+UniRef50_UPI000372579F: hypothetical protein	0.0729688161
+UniRef50_UPI000372579F: hypothetical protein|unclassified	0.0729688161
+UniRef50_UPI0003821361: hypothetical protein	0.0729666471
+UniRef50_UPI0003821361: hypothetical protein|unclassified	0.0729666471
+UniRef50_C8WXQ0: UPF0176 protein Aaci_1859	0.0729557325
+UniRef50_C8WXQ0: UPF0176 protein Aaci_1859|unclassified	0.0729557325
+UniRef50_B0T9F7: Replication protein C	0.0729525922
+UniRef50_B0T9F7: Replication protein C|unclassified	0.0729525922
+UniRef50_A1TK62: Tripartite ATP-independent periplasmic transporter, DctQ component	0.0729509927
+UniRef50_A1TK62: Tripartite ATP-independent periplasmic transporter, DctQ component|unclassified	0.0729509927
+UniRef50_U6KGM5	0.0729486762
+UniRef50_U6KGM5|unclassified	0.0729486762
+UniRef50_UPI00037E23C1: hypothetical protein	0.0729468435
+UniRef50_UPI00037E23C1: hypothetical protein|unclassified	0.0729468435
+UniRef50_UPI000299F433: ribonuclease PH	0.0729383461
+UniRef50_UPI000299F433: ribonuclease PH|unclassified	0.0729383461
+UniRef50_UPI0004417F1D: hypothetical protein PUNSTDRAFT_65935, partial	0.0729263884
+UniRef50_UPI0004417F1D: hypothetical protein PUNSTDRAFT_65935, partial|unclassified	0.0729263884
+UniRef50_UPI00032A0CE2: PREDICTED: RNA-binding protein 40-like	0.0729234117
+UniRef50_UPI00032A0CE2: PREDICTED: RNA-binding protein 40-like|unclassified	0.0729234117
+UniRef50_UPI0003B64002: cell division protein FtsW	0.0729173485
+UniRef50_UPI0003B64002: cell division protein FtsW|unclassified	0.0729173485
+UniRef50_UPI000443234B: PREDICTED: putative protein TPRXL-like	0.0729115040
+UniRef50_UPI000443234B: PREDICTED: putative protein TPRXL-like|unclassified	0.0729115040
+UniRef50_UPI0003FD05D8: methyltransferase	0.0729092548
+UniRef50_UPI0003FD05D8: methyltransferase|unclassified	0.0729092548
+UniRef50_UPI00047AFE0D: hypothetical protein	0.0729076568
+UniRef50_UPI00047AFE0D: hypothetical protein|unclassified	0.0729076568
+UniRef50_A0A059MLE5: Cysteine synthase	0.0729059659
+UniRef50_A0A059MLE5: Cysteine synthase|unclassified	0.0729059659
+UniRef50_K8F6J2	0.0729058741
+UniRef50_K8F6J2|unclassified	0.0729058741
+UniRef50_UPI0004724F6F: hypothetical protein	0.0729034402
+UniRef50_UPI0004724F6F: hypothetical protein|unclassified	0.0729034402
+UniRef50_UPI0004785881: hypothetical protein	0.0728898190
+UniRef50_UPI0004785881: hypothetical protein|unclassified	0.0728898190
+UniRef50_Q88U25: Phosphoribosylformylglycinamidine synthase 2	0.0728807207
+UniRef50_Q88U25: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.0728807207
+UniRef50_UPI0003712020: hypothetical protein, partial	0.0728806113
+UniRef50_UPI0003712020: hypothetical protein, partial|unclassified	0.0728806113
+UniRef50_I0IIC3	0.0728803444
+UniRef50_I0IIC3|unclassified	0.0728803444
+UniRef50_UPI0003B41156: oxidoreductase	0.0728795951
+UniRef50_UPI0003B41156: oxidoreductase|unclassified	0.0728795951
+UniRef50_UPI00028907A8: dehydrogenase	0.0728778280
+UniRef50_UPI00028907A8: dehydrogenase|unclassified	0.0728778280
+UniRef50_UPI0003055198: hypothetical protein	0.0728734729
+UniRef50_UPI0003055198: hypothetical protein|unclassified	0.0728734729
+UniRef50_UPI000288AE11: 1-phosphofructokinase	0.0728733739
+UniRef50_UPI000288AE11: 1-phosphofructokinase|unclassified	0.0728733739
+UniRef50_Q7VLN1: Cyclic pyranopterin monophosphate synthase	0.0728710868
+UniRef50_Q7VLN1: Cyclic pyranopterin monophosphate synthase|unclassified	0.0728710868
+UniRef50_U6N0Q8	0.0728707600
+UniRef50_U6N0Q8|unclassified	0.0728707600
+UniRef50_A9WEB9: Thioesterase superfamily protein	0.0728680132
+UniRef50_A9WEB9: Thioesterase superfamily protein|unclassified	0.0728680132
+UniRef50_UPI000418FC6B: nuclease SbcCD subunit D	0.0728647644
+UniRef50_UPI000418FC6B: nuclease SbcCD subunit D|unclassified	0.0728647644
+UniRef50_D1BL79	0.0728523359
+UniRef50_D1BL79|unclassified	0.0728523359
+UniRef50_UPI0003F95469: hypothetical protein	0.0728509090
+UniRef50_UPI0003F95469: hypothetical protein|unclassified	0.0728509090
+UniRef50_A9UTR3: Predicted protein	0.0728498377
+UniRef50_A9UTR3: Predicted protein|unclassified	0.0728498377
+UniRef50_B2UNA2: Dihydroorotate dehydrogenase (quinone)	0.0728485895
+UniRef50_B2UNA2: Dihydroorotate dehydrogenase (quinone)|unclassified	0.0728485895
+UniRef50_UPI00026CA7A4: anhydro-N-acetylmuramic acid kinase	0.0728477823
+UniRef50_UPI00026CA7A4: anhydro-N-acetylmuramic acid kinase|unclassified	0.0728477823
+UniRef50_L1J219	0.0728472197
+UniRef50_L1J219|unclassified	0.0728472197
+UniRef50_D7A246	0.0728460197
+UniRef50_D7A246|unclassified	0.0728460197
+UniRef50_R7GN90: Cobalt transport protein	0.0728373269
+UniRef50_R7GN90: Cobalt transport protein|unclassified	0.0728373269
+UniRef50_R5RAB2	0.0728365121
+UniRef50_R5RAB2|unclassified	0.0728365121
+UniRef50_UPI000225F71F: TetR family transcriptional regulator	0.0728300754
+UniRef50_UPI000225F71F: TetR family transcriptional regulator|unclassified	0.0728300754
+UniRef50_Q47SW2: Peptidyl-tRNA hydrolase	0.0728289082
+UniRef50_Q47SW2: Peptidyl-tRNA hydrolase|unclassified	0.0728289082
+UniRef50_S5S0J3: DnaJ family heat shock protein	0.0728254333
+UniRef50_S5S0J3: DnaJ family heat shock protein|unclassified	0.0728254333
+UniRef50_A8F524: Peptide deformylase	0.0728243658
+UniRef50_A8F524: Peptide deformylase|unclassified	0.0728243658
+UniRef50_C3K7U4: Putative membrane protein	0.0728241623
+UniRef50_C3K7U4: Putative membrane protein|unclassified	0.0728241623
+UniRef50_P22862: Arylesterase	0.0728215271
+UniRef50_P22862: Arylesterase|unclassified	0.0728215271
+UniRef50_A3GR11: UbiH protein	0.0728127960
+UniRef50_A3GR11: UbiH protein|unclassified	0.0728127960
+UniRef50_Q3ASI6: Arginine biosynthesis bifunctional protein ArgJ	0.0728096481
+UniRef50_Q3ASI6: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.0728096481
+UniRef50_UPI00044131E5: NAD(P)-binding protein	0.0728072854
+UniRef50_UPI00044131E5: NAD(P)-binding protein|unclassified	0.0728072854
+UniRef50_UPI0003B50A6B: XRE family transcriptional regulator	0.0728053853
+UniRef50_UPI0003B50A6B: XRE family transcriptional regulator|unclassified	0.0728053853
+UniRef50_Q2GCI6: Uridylate kinase	0.0728034045
+UniRef50_Q2GCI6: Uridylate kinase|unclassified	0.0728034045
+UniRef50_Q3IIQ9	0.0727948549
+UniRef50_Q3IIQ9|unclassified	0.0727948549
+UniRef50_T1B8D6: Thiamine biosynthesis protein ThiC (Fragment)	0.0727892017
+UniRef50_T1B8D6: Thiamine biosynthesis protein ThiC (Fragment)|unclassified	0.0727892017
+UniRef50_U5W3H9	0.0727871197
+UniRef50_U5W3H9|unclassified	0.0727871197
+UniRef50_S9URP1	0.0727869457
+UniRef50_S9URP1|unclassified	0.0727869457
+UniRef50_UPI00036B095D: hypothetical protein	0.0727771510
+UniRef50_UPI00036B095D: hypothetical protein|unclassified	0.0727771510
+UniRef50_UPI000372AF27: hypothetical protein	0.0727719626
+UniRef50_UPI000372AF27: hypothetical protein|unclassified	0.0727719626
+UniRef50_D3RBU9	0.0727710546
+UniRef50_D3RBU9|unclassified	0.0727710546
+UniRef50_UPI0004794FC8: hypothetical protein	0.0727687050
+UniRef50_UPI0004794FC8: hypothetical protein|unclassified	0.0727687050
+UniRef50_UPI0002627837: octanoyltransferase	0.0727661673
+UniRef50_UPI0002627837: octanoyltransferase|unclassified	0.0727661673
+UniRef50_M4S586: Beta-lactamase domain-containing protein	0.0727646447
+UniRef50_M4S586: Beta-lactamase domain-containing protein|unclassified	0.0727646447
+UniRef50_UPI000467699E: cytochrome d ubiquinol oxidase subunit 2	0.0727599764
+UniRef50_UPI000467699E: cytochrome d ubiquinol oxidase subunit 2|unclassified	0.0727599764
+UniRef50_UPI0003B5A40E: hypothetical protein	0.0727590978
+UniRef50_UPI0003B5A40E: hypothetical protein|unclassified	0.0727590978
+UniRef50_Q7UYK5: Pyridoxine 5'-phosphate synthase	0.0727580418
+UniRef50_Q7UYK5: Pyridoxine 5'-phosphate synthase|unclassified	0.0727580418
+UniRef50_M2M228	0.0727574586
+UniRef50_M2M228|unclassified	0.0727574586
+UniRef50_UPI0003B3ACD4: short-chain dehydrogenase	0.0727533483
+UniRef50_UPI0003B3ACD4: short-chain dehydrogenase|unclassified	0.0727533483
+UniRef50_O06851: Valine--tRNA ligase	0.0727320701
+UniRef50_O06851: Valine--tRNA ligase|unclassified	0.0727320701
+UniRef50_UPI0003B7119E: response regulator	0.0727169950
+UniRef50_UPI0003B7119E: response regulator|unclassified	0.0727169950
+UniRef50_UPI00047BD2F2: hypothetical protein	0.0727122537
+UniRef50_UPI00047BD2F2: hypothetical protein|unclassified	0.0727122537
+UniRef50_UPI00037B935F: hypothetical protein	0.0727088058
+UniRef50_UPI00037B935F: hypothetical protein|unclassified	0.0727088058
+UniRef50_UPI0003F0A6D8: PREDICTED: sulfide:quinone oxidoreductase, mitochondrial-like	0.0727075900
+UniRef50_UPI0003F0A6D8: PREDICTED: sulfide:quinone oxidoreductase, mitochondrial-like|unclassified	0.0727075900
+UniRef50_A8AB61: Probable 2-isopropylmalate synthase	0.0727058934
+UniRef50_A8AB61: Probable 2-isopropylmalate synthase|unclassified	0.0727058934
+UniRef50_UPI00029B1694: phosphate ABC transporter permease	0.0727055913
+UniRef50_UPI00029B1694: phosphate ABC transporter permease|unclassified	0.0727055913
+UniRef50_W2F2K9	0.0727044770
+UniRef50_W2F2K9|unclassified	0.0727044770
+UniRef50_UPI0003EBF2EB: PREDICTED: LOW QUALITY PROTEIN: phosphoglycerate mutase 2 (muscle)	0.0727020795
+UniRef50_UPI0003EBF2EB: PREDICTED: LOW QUALITY PROTEIN: phosphoglycerate mutase 2 (muscle)|unclassified	0.0727020795
+UniRef50_P52150: Adenylosuccinate synthetase	0.0726980268
+UniRef50_P52150: Adenylosuccinate synthetase|unclassified	0.0726980268
+UniRef50_UPI0003EB658E: hypothetical protein	0.0726959307
+UniRef50_UPI0003EB658E: hypothetical protein|unclassified	0.0726959307
+UniRef50_B2Q322: Cytochrome c nitrite reductase, accessory protein NrfF	0.0726957585
+UniRef50_B2Q322: Cytochrome c nitrite reductase, accessory protein NrfF|unclassified	0.0726957585
+UniRef50_UPI00047BA946: sugar ABC transporter permease	0.0726898014
+UniRef50_UPI00047BA946: sugar ABC transporter permease|unclassified	0.0726898014
+UniRef50_Q3Y002	0.0726845354
+UniRef50_Q3Y002|unclassified	0.0726845354
+UniRef50_UPI00037D1DDE: hypothetical protein	0.0726770745
+UniRef50_UPI00037D1DDE: hypothetical protein|unclassified	0.0726770745
+UniRef50_UPI00041A8C24: ABC transporter ATP-binding protein	0.0726769851
+UniRef50_UPI00041A8C24: ABC transporter ATP-binding protein|unclassified	0.0726769851
+UniRef50_UPI000366813B: hypothetical protein	0.0726656692
+UniRef50_UPI000366813B: hypothetical protein|unclassified	0.0726656692
+UniRef50_UPI00038255E5: hypothetical protein	0.0726624642
+UniRef50_UPI00038255E5: hypothetical protein|unclassified	0.0726624642
+UniRef50_A7HV67: Flagellar hook capping protein	0.0726617963
+UniRef50_A7HV67: Flagellar hook capping protein|unclassified	0.0726617963
+UniRef50_L1IBE2	0.0726468824
+UniRef50_L1IBE2|unclassified	0.0726468824
+UniRef50_Q1JSS9	0.0726458925
+UniRef50_Q1JSS9|unclassified	0.0726458925
+UniRef50_UPI000262C9D1: thiamine biosynthesis lipoprotein ApbE	0.0726441831
+UniRef50_UPI000262C9D1: thiamine biosynthesis lipoprotein ApbE|unclassified	0.0726441831
+UniRef50_UPI000415C4C8: sodium:proton antiporter	0.0726421818
+UniRef50_UPI000415C4C8: sodium:proton antiporter|unclassified	0.0726421818
+UniRef50_Q56632: Vibriobactin-specific 2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase	0.0726405888
+UniRef50_Q56632: Vibriobactin-specific 2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase|unclassified	0.0726405888
+UniRef50_U6GJU3	0.0726287918
+UniRef50_U6GJU3|unclassified	0.0726287918
+UniRef50_S7SZI2	0.0726279070
+UniRef50_S7SZI2|unclassified	0.0726279070
+UniRef50_J0WPL8	0.0726213559
+UniRef50_J0WPL8|unclassified	0.0726213559
+UniRef50_UPI00047067CD: glucosamine-6-phosphate deaminase, partial	0.0726166702
+UniRef50_UPI00047067CD: glucosamine-6-phosphate deaminase, partial|unclassified	0.0726166702
+UniRef50_UPI000381DE0A: hypothetical protein	0.0726132060
+UniRef50_UPI000381DE0A: hypothetical protein|unclassified	0.0726132060
+UniRef50_Q5PB25: Phosphatidylserine decarboxylase proenzyme	0.0726063818
+UniRef50_Q5PB25: Phosphatidylserine decarboxylase proenzyme|unclassified	0.0726063818
+UniRef50_A0A024F1S9	0.0725961931
+UniRef50_A0A024F1S9|unclassified	0.0725961931
+UniRef50_UPI00041C45A6: Orotate phosphoribosyltransferase	0.0725846109
+UniRef50_UPI00041C45A6: Orotate phosphoribosyltransferase|unclassified	0.0725846109
+UniRef50_UPI0003694630: hypothetical protein	0.0725779520
+UniRef50_UPI0003694630: hypothetical protein|unclassified	0.0725779520
+UniRef50_Q2LSV9: Flp pilus assembly protein	0.0725757913
+UniRef50_Q2LSV9: Flp pilus assembly protein|unclassified	0.0725757913
+UniRef50_A6FKY3: Possible FlgD protein	0.0725748651
+UniRef50_A6FKY3: Possible FlgD protein|unclassified	0.0725748651
+UniRef50_Q869Y7: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial	0.0725721974
+UniRef50_Q869Y7: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial|unclassified	0.0725721974
+UniRef50_B7VMX2: Methionyl-tRNA formyltransferase	0.0725721924
+UniRef50_B7VMX2: Methionyl-tRNA formyltransferase|unclassified	0.0725721924
+UniRef50_J8I3X0: Exosporium leader peptide (Fragment)	0.0725711773
+UniRef50_J8I3X0: Exosporium leader peptide (Fragment)|unclassified	0.0725711773
+UniRef50_K7UNI1	0.0725705920
+UniRef50_K7UNI1|unclassified	0.0725705920
+UniRef50_O07051: L-allo-threonine aldolase	0.0725623574
+UniRef50_O07051: L-allo-threonine aldolase|unclassified	0.0725623574
+UniRef50_UPI00047C25C7: hypothetical protein	0.0725623559
+UniRef50_UPI00047C25C7: hypothetical protein|unclassified	0.0725623559
+UniRef50_UPI00041E6AF8: hypothetical protein	0.0725588630
+UniRef50_UPI00041E6AF8: hypothetical protein|unclassified	0.0725588630
+UniRef50_UPI0003A7FBFE: side tail fiber protein	0.0725566317
+UniRef50_UPI0003A7FBFE: side tail fiber protein|unclassified	0.0725566317
+UniRef50_UPI00036BA2BD: hypothetical protein	0.0725550337
+UniRef50_UPI00036BA2BD: hypothetical protein|unclassified	0.0725550337
+UniRef50_F0VN90	0.0725534839
+UniRef50_F0VN90|unclassified	0.0725534839
+UniRef50_P21907: Glucose-6-phosphate 1-dehydrogenase	0.0725491613
+UniRef50_P21907: Glucose-6-phosphate 1-dehydrogenase|unclassified	0.0725491613
+UniRef50_W1VFL6	0.0725450001
+UniRef50_W1VFL6|unclassified	0.0725450001
+UniRef50_UPI00040D05AB: hypothetical protein	0.0725438744
+UniRef50_UPI00040D05AB: hypothetical protein|unclassified	0.0725438744
+UniRef50_C1KVV7: N-acetylmuramic acid 6-phosphate etherase	0.0725408574
+UniRef50_C1KVV7: N-acetylmuramic acid 6-phosphate etherase|unclassified	0.0725408574
+UniRef50_W1BDB6: Xanthine/uracil/thiamine/ascorbate permease family protein	0.0725336375
+UniRef50_W1BDB6: Xanthine/uracil/thiamine/ascorbate permease family protein|unclassified	0.0725336375
+UniRef50_UPI0003B5FAB7: glycosyl transferase family 2	0.0725335832
+UniRef50_UPI0003B5FAB7: glycosyl transferase family 2|unclassified	0.0725335832
+UniRef50_UPI0004730CA4: hypothetical protein, partial	0.0725335720
+UniRef50_UPI0004730CA4: hypothetical protein, partial|unclassified	0.0725335720
+UniRef50_Q6EQK5	0.0725292586
+UniRef50_Q6EQK5|unclassified	0.0725292586
+UniRef50_B1W4V9: NADH-quinone oxidoreductase subunit B 2	0.0725280528
+UniRef50_B1W4V9: NADH-quinone oxidoreductase subunit B 2|unclassified	0.0725280528
+UniRef50_S2J745	0.0725204998
+UniRef50_S2J745|unclassified	0.0725204998
+UniRef50_Q475Y1: Carbon monoxide dehydrogenase subunit G	0.0725158779
+UniRef50_Q475Y1: Carbon monoxide dehydrogenase subunit G|unclassified	0.0725158779
+UniRef50_P0CW51: Nitrogenase molybdenum-iron protein alpha chain	0.0725145676
+UniRef50_P0CW51: Nitrogenase molybdenum-iron protein alpha chain|unclassified	0.0725145676
+UniRef50_F6AB43: Type II secretion system F domain protein	0.0725139929
+UniRef50_F6AB43: Type II secretion system F domain protein|unclassified	0.0725139929
+UniRef50_B5SL24	0.0725097245
+UniRef50_B5SL24|unclassified	0.0725097245
+UniRef50_R6XHD0	0.0725083886
+UniRef50_R6XHD0|unclassified	0.0725083886
+UniRef50_F8JGJ7	0.0725059452
+UniRef50_F8JGJ7|unclassified	0.0725059452
+UniRef50_E4SZU3	0.0724986701
+UniRef50_E4SZU3|unclassified	0.0724986701
+UniRef50_UPI0003B2F3D4: RNA polymerase sigma factor SigC	0.0724962057
+UniRef50_UPI0003B2F3D4: RNA polymerase sigma factor SigC|unclassified	0.0724962057
+UniRef50_UPI00034F4251: PREDICTED: alanine--glyoxylate aminotransferase 2, mitochondrial-like, partial	0.0724949094
+UniRef50_UPI00034F4251: PREDICTED: alanine--glyoxylate aminotransferase 2, mitochondrial-like, partial|unclassified	0.0724949094
+UniRef50_Q2YKK7: Blue-light-activated histidine kinase	0.0724945946
+UniRef50_Q2YKK7: Blue-light-activated histidine kinase|unclassified	0.0724945946
+UniRef50_C0M6R0: Putative bacteriocin	0.0724941916
+UniRef50_C0M6R0: Putative bacteriocin|unclassified	0.0724941916
+UniRef50_UPI0003B6FE72: multidrug transporter CflA, partial	0.0724936517
+UniRef50_UPI0003B6FE72: multidrug transporter CflA, partial|unclassified	0.0724936517
+UniRef50_C6VIP9	0.0724889757
+UniRef50_C6VIP9|unclassified	0.0724889757
+UniRef50_B4U6H0: Ribosomal RNA small subunit methyltransferase I	0.0724882553
+UniRef50_B4U6H0: Ribosomal RNA small subunit methyltransferase I|unclassified	0.0724882553
+UniRef50_UPI00045492C4: PREDICTED: S1 RNA-binding domain-containing protein 1-like, partial	0.0724837316
+UniRef50_UPI00045492C4: PREDICTED: S1 RNA-binding domain-containing protein 1-like, partial|unclassified	0.0724837316
+UniRef50_UPI00046CFCBE: hypothetical protein	0.0724826228
+UniRef50_UPI00046CFCBE: hypothetical protein|unclassified	0.0724826228
+UniRef50_UPI0003B4E4D8: glutathione transferase	0.0724821900
+UniRef50_UPI0003B4E4D8: glutathione transferase|unclassified	0.0724821900
+UniRef50_UPI0003C7FCF0: DNA topoisomerase I	0.0724733318
+UniRef50_UPI0003C7FCF0: DNA topoisomerase I|unclassified	0.0724733318
+UniRef50_UPI0002893B6B: hypothetical protein, partial	0.0724695042
+UniRef50_UPI0002893B6B: hypothetical protein, partial|unclassified	0.0724695042
+UniRef50_K8NA82	0.0724623134
+UniRef50_K8NA82|unclassified	0.0724623134
+UniRef50_UPI0003742B82: hypothetical protein, partial	0.0724597762
+UniRef50_UPI0003742B82: hypothetical protein, partial|unclassified	0.0724597762
+UniRef50_B4RVP1: Lipoprotein signal peptidase	0.0724585065
+UniRef50_B4RVP1: Lipoprotein signal peptidase|unclassified	0.0724585065
+UniRef50_Q6FA61: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.0724576026
+UniRef50_Q6FA61: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.0724576026
+UniRef50_UPI000371DAEA: hypothetical protein, partial	0.0724492351
+UniRef50_UPI000371DAEA: hypothetical protein, partial|unclassified	0.0724492351
+UniRef50_UPI000428BD13: NADH:flavin oxidoreductase	0.0724480062
+UniRef50_UPI000428BD13: NADH:flavin oxidoreductase|unclassified	0.0724480062
+UniRef50_UPI000174554E: hypothetical protein	0.0724459073
+UniRef50_UPI000174554E: hypothetical protein|unclassified	0.0724459073
+UniRef50_W2EY36	0.0724451389
+UniRef50_W2EY36|unclassified	0.0724451389
+UniRef50_A0A023DK19	0.0724439857
+UniRef50_A0A023DK19|unclassified	0.0724439857
+UniRef50_G7QC72: Terminase	0.0724436864
+UniRef50_G7QC72: Terminase|unclassified	0.0724436864
+UniRef50_E6J7M7: Putative sporulation transcription regulator whiA	0.0724434156
+UniRef50_E6J7M7: Putative sporulation transcription regulator whiA|unclassified	0.0724434156
+UniRef50_UPI000375F63F: hypothetical protein	0.0724419988
+UniRef50_UPI000375F63F: hypothetical protein|unclassified	0.0724419988
+UniRef50_UPI00037FCACD: hypothetical protein	0.0724413770
+UniRef50_UPI00037FCACD: hypothetical protein|unclassified	0.0724413770
+UniRef50_UPI00029A5235: molybdenum cofactor biosynthesis protein A, partial	0.0724293945
+UniRef50_UPI00029A5235: molybdenum cofactor biosynthesis protein A, partial|unclassified	0.0724293945
+UniRef50_Q753M0: Phosphoenolpyruvate carboxykinase [ATP]	0.0724292298
+UniRef50_Q753M0: Phosphoenolpyruvate carboxykinase [ATP]|unclassified	0.0724292298
+UniRef50_I3TK00: Flagellar basal-body rod modification protein FlgD	0.0724159226
+UniRef50_I3TK00: Flagellar basal-body rod modification protein FlgD|unclassified	0.0724159226
+UniRef50_UPI0003621977: hypothetical protein	0.0724114533
+UniRef50_UPI0003621977: hypothetical protein|unclassified	0.0724114533
+UniRef50_UPI00046D05B1: hypothetical protein	0.0724018328
+UniRef50_UPI00046D05B1: hypothetical protein|unclassified	0.0724018328
+UniRef50_A0A010RBN3	0.0723968542
+UniRef50_A0A010RBN3|unclassified	0.0723968542
+UniRef50_UPI0002626370: coproporphyrinogen III oxidase	0.0723910244
+UniRef50_UPI0002626370: coproporphyrinogen III oxidase|unclassified	0.0723910244
+UniRef50_UPI0004213050: hypothetical protein	0.0723880277
+UniRef50_UPI0004213050: hypothetical protein|unclassified	0.0723880277
+UniRef50_Q54X49: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	0.0723860717
+UniRef50_Q54X49: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.0723860717
+UniRef50_UPI000428CA4D: bacitracin ABC transporter ATP-binding protein	0.0723774323
+UniRef50_UPI000428CA4D: bacitracin ABC transporter ATP-binding protein|unclassified	0.0723774323
+UniRef50_UPI0003F77FD2: hypothetical protein	0.0723755806
+UniRef50_UPI0003F77FD2: hypothetical protein|unclassified	0.0723755806
+UniRef50_UPI0004792F5E: hypothetical protein	0.0723739516
+UniRef50_UPI0004792F5E: hypothetical protein|unclassified	0.0723739516
+UniRef50_UPI00037E1781: hypothetical protein	0.0723736459
+UniRef50_UPI00037E1781: hypothetical protein|unclassified	0.0723736459
+UniRef50_F4QYS3: Protein exoD	0.0723692938
+UniRef50_F4QYS3: Protein exoD|unclassified	0.0723692938
+UniRef50_UPI0004707291: hypothetical protein, partial	0.0723692782
+UniRef50_UPI0004707291: hypothetical protein, partial|unclassified	0.0723692782
+UniRef50_J7GDD2: Protein YciW	0.0723630830
+UniRef50_J7GDD2: Protein YciW|unclassified	0.0723630830
+UniRef50_UPI00047C11BB: hypothetical protein	0.0723603327
+UniRef50_UPI00047C11BB: hypothetical protein|unclassified	0.0723603327
+UniRef50_X1XR73	0.0723580879
+UniRef50_X1XR73|unclassified	0.0723580879
+UniRef50_UPI00041CB711: LysR family transcriptional regulator	0.0723560841
+UniRef50_UPI00041CB711: LysR family transcriptional regulator|unclassified	0.0723560841
+UniRef50_I7BYL0	0.0723521237
+UniRef50_I7BYL0|unclassified	0.0723521237
+UniRef50_UPI000378A4F9: hypothetical protein	0.0723457250
+UniRef50_UPI000378A4F9: hypothetical protein|unclassified	0.0723457250
+UniRef50_UPI000465FC10: oxidoreductase	0.0723311184
+UniRef50_UPI000465FC10: oxidoreductase|unclassified	0.0723311184
+UniRef50_UPI0003B60C80: MFS transporter	0.0723305314
+UniRef50_UPI0003B60C80: MFS transporter|unclassified	0.0723305314
+UniRef50_UPI000365C459: hypothetical protein	0.0723299765
+UniRef50_UPI000365C459: hypothetical protein|unclassified	0.0723299765
+UniRef50_UPI000369225C: hypothetical protein	0.0723291607
+UniRef50_UPI000369225C: hypothetical protein|unclassified	0.0723291607
+UniRef50_UPI00037FDD41: hypothetical protein	0.0723267067
+UniRef50_UPI00037FDD41: hypothetical protein|unclassified	0.0723267067
+UniRef50_C3DVF3	0.0723257312
+UniRef50_C3DVF3|unclassified	0.0723257312
+UniRef50_UPI0003802F25: hypothetical protein	0.0723239810
+UniRef50_UPI0003802F25: hypothetical protein|unclassified	0.0723239810
+UniRef50_UPI0003692538: ribonuclease G, partial	0.0723221163
+UniRef50_UPI0003692538: ribonuclease G, partial|unclassified	0.0723221163
+UniRef50_UPI0003B679AD: methenyltetrahydrofolate cyclohydrolase	0.0723195422
+UniRef50_UPI0003B679AD: methenyltetrahydrofolate cyclohydrolase|unclassified	0.0723195422
+UniRef50_UPI00035EFFCF: hypothetical protein	0.0723167934
+UniRef50_UPI00035EFFCF: hypothetical protein|unclassified	0.0723167934
+UniRef50_A4W334: Prolipoprotein diacylglyceryl transferase	0.0723151187
+UniRef50_A4W334: Prolipoprotein diacylglyceryl transferase|unclassified	0.0723151187
+UniRef50_E3HZR1: Putative ParB-like nuclease	0.0723084049
+UniRef50_E3HZR1: Putative ParB-like nuclease|unclassified	0.0723084049
+UniRef50_UPI000473D34B: hypothetical protein, partial	0.0723057451
+UniRef50_UPI000473D34B: hypothetical protein, partial|unclassified	0.0723057451
+UniRef50_A5D144: UDP-N-acetylmuramate--L-alanine ligase	0.0723030055
+UniRef50_A5D144: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.0723030055
+UniRef50_X0W523: Marine sediment metagenome DNA, contig: S01H1_S22609 (Fragment)	0.0722976162
+UniRef50_X0W523: Marine sediment metagenome DNA, contig: S01H1_S22609 (Fragment)|unclassified	0.0722976162
+UniRef50_UPI00047A142F: hypothetical protein	0.0722961369
+UniRef50_UPI00047A142F: hypothetical protein|unclassified	0.0722961369
+UniRef50_S6BFI3: Type IV pilus assembly protein PilN	0.0722928039
+UniRef50_S6BFI3: Type IV pilus assembly protein PilN|unclassified	0.0722928039
+UniRef50_Q55621: Amidophosphoribosyltransferase	0.0722927573
+UniRef50_Q55621: Amidophosphoribosyltransferase|unclassified	0.0722927573
+UniRef50_W0BNP8	0.0722846244
+UniRef50_W0BNP8|unclassified	0.0722846244
+UniRef50_A9AV55: von Willebrand factor type A	0.0722840062
+UniRef50_A9AV55: von Willebrand factor type A|unclassified	0.0722840062
+UniRef50_UPI0003777C13: hypothetical protein	0.0722826934
+UniRef50_UPI0003777C13: hypothetical protein|unclassified	0.0722826934
+UniRef50_UPI0004770081: molybdenum cofactor biosynthesis protein A	0.0722772910
+UniRef50_UPI0004770081: molybdenum cofactor biosynthesis protein A|unclassified	0.0722772910
+UniRef50_UPI000370459E: hypothetical protein, partial	0.0722766832
+UniRef50_UPI000370459E: hypothetical protein, partial|unclassified	0.0722766832
+UniRef50_C7R9S3	0.0722714446
+UniRef50_C7R9S3|unclassified	0.0722714446
+UniRef50_K0D9X6	0.0722714446
+UniRef50_K0D9X6|unclassified	0.0722714446
+UniRef50_UPI00035C508C: hypothetical protein	0.0722713479
+UniRef50_UPI00035C508C: hypothetical protein|unclassified	0.0722713479
+UniRef50_Q2L004: Glycerol-3-phosphate acyltransferase	0.0722615474
+UniRef50_Q2L004: Glycerol-3-phosphate acyltransferase|unclassified	0.0722615474
+UniRef50_UPI00047024EB: hypothetical protein, partial	0.0722562284
+UniRef50_UPI00047024EB: hypothetical protein, partial|unclassified	0.0722562284
+UniRef50_UPI000361BC07: hypothetical protein	0.0722533889
+UniRef50_UPI000361BC07: hypothetical protein|unclassified	0.0722533889
+UniRef50_UPI0003B5942B: hypothetical protein	0.0722338557
+UniRef50_UPI0003B5942B: hypothetical protein|unclassified	0.0722338557
+UniRef50_D3FRH5	0.0722263371
+UniRef50_D3FRH5|unclassified	0.0722263371
+UniRef50_UPI000370BDCF: hypothetical protein	0.0722232765
+UniRef50_UPI000370BDCF: hypothetical protein|unclassified	0.0722232765
+UniRef50_UPI0003670BBF: hypothetical protein	0.0722212659
+UniRef50_UPI0003670BBF: hypothetical protein|unclassified	0.0722212659
+UniRef50_C0QFA3: PstS1	0.0722201090
+UniRef50_C0QFA3: PstS1|unclassified	0.0722201090
+UniRef50_UPI0003A983A5: amidophosphoribosyltransferase	0.0722193739
+UniRef50_UPI0003A983A5: amidophosphoribosyltransferase|unclassified	0.0722193739
+UniRef50_UPI000469A068: hypothetical protein, partial	0.0722181053
+UniRef50_UPI000469A068: hypothetical protein, partial|unclassified	0.0722181053
+UniRef50_UPI0004779493: multidrug ABC transporter substrate-binding protein	0.0722165464
+UniRef50_UPI0004779493: multidrug ABC transporter substrate-binding protein|unclassified	0.0722165464
+UniRef50_T0LXZ5	0.0722160183
+UniRef50_T0LXZ5|unclassified	0.0722160183
+UniRef50_T9JR44	0.0722116484
+UniRef50_T9JR44|unclassified	0.0722116484
+UniRef50_UPI000370D285: hypothetical protein	0.0722108427
+UniRef50_UPI000370D285: hypothetical protein|unclassified	0.0722108427
+UniRef50_UPI00037382ED: hypothetical protein	0.0722086491
+UniRef50_UPI00037382ED: hypothetical protein|unclassified	0.0722086491
+UniRef50_A0A031MHM3: ATPase	0.0722076718
+UniRef50_A0A031MHM3: ATPase|unclassified	0.0722076718
+UniRef50_UPI0004756DAB: chromosome partitioning protein	0.0721974381
+UniRef50_UPI0004756DAB: chromosome partitioning protein|unclassified	0.0721974381
+UniRef50_U2FDC1: Membrane protein putative	0.0721902701
+UniRef50_U2FDC1: Membrane protein putative|unclassified	0.0721902701
+UniRef50_R9M767	0.0721853724
+UniRef50_R9M767|unclassified	0.0721853724
+UniRef50_UPI0003676141: hypothetical protein	0.0721834459
+UniRef50_UPI0003676141: hypothetical protein|unclassified	0.0721834459
+UniRef50_Q89KP5: Uridylate kinase	0.0721830144
+UniRef50_Q89KP5: Uridylate kinase|unclassified	0.0721830144
+UniRef50_UPI00047DE1A1: spermidine/putrescine ABC transporter substrate-binding protein	0.0721804083
+UniRef50_UPI00047DE1A1: spermidine/putrescine ABC transporter substrate-binding protein|unclassified	0.0721804083
+UniRef50_G2P517	0.0721757199
+UniRef50_G2P517|unclassified	0.0721757199
+UniRef50_A3CUF2: Putative (R)-citramalate synthase CimA	0.0721710884
+UniRef50_A3CUF2: Putative (R)-citramalate synthase CimA|unclassified	0.0721710884
+UniRef50_UPI0002197928: riboflavin biosynthesis protein RibF	0.0721693699
+UniRef50_UPI0002197928: riboflavin biosynthesis protein RibF|unclassified	0.0721693699
+UniRef50_UPI00047A09AD: hypothetical protein	0.0721672200
+UniRef50_UPI00047A09AD: hypothetical protein|unclassified	0.0721672200
+UniRef50_UPI00036BFC25: hypothetical protein	0.0721650358
+UniRef50_UPI00036BFC25: hypothetical protein|unclassified	0.0721650358
+UniRef50_UPI000374033D: hypothetical protein	0.0721592400
+UniRef50_UPI000374033D: hypothetical protein|unclassified	0.0721592400
+UniRef50_UPI0003B32C32: ADP-glucose pyrophosphorylase	0.0721547475
+UniRef50_UPI0003B32C32: ADP-glucose pyrophosphorylase|unclassified	0.0721547475
+UniRef50_UPI0003AE77FD: PREDICTED: vegetative cell wall protein gp1-like	0.0721528109
+UniRef50_UPI0003AE77FD: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.0721528109
+UniRef50_UPI00037BB067: hypothetical protein	0.0721475044
+UniRef50_UPI00037BB067: hypothetical protein|unclassified	0.0721475044
+UniRef50_W6X669	0.0721456488
+UniRef50_W6X669|unclassified	0.0721456488
+UniRef50_X1IEE0: Marine sediment metagenome DNA, contig: S03H2_S21587 (Fragment)	0.0721429838
+UniRef50_X1IEE0: Marine sediment metagenome DNA, contig: S03H2_S21587 (Fragment)|unclassified	0.0721429838
+UniRef50_X6L0R0	0.0721369625
+UniRef50_X6L0R0|unclassified	0.0721369625
+UniRef50_B6IUI6	0.0721368014
+UniRef50_B6IUI6|unclassified	0.0721368014
+UniRef50_UPI000380C98C: hypothetical protein	0.0721354376
+UniRef50_UPI000380C98C: hypothetical protein|unclassified	0.0721354376
+UniRef50_UPI0003FA526E: trehalose synthase	0.0721349922
+UniRef50_UPI0003FA526E: trehalose synthase|unclassified	0.0721349922
+UniRef50_UPI0003710793: hypothetical protein	0.0721324495
+UniRef50_UPI0003710793: hypothetical protein|unclassified	0.0721324495
+UniRef50_UPI00047256F0: ABC transporter ATP-binding protein	0.0721298592
+UniRef50_UPI00047256F0: ABC transporter ATP-binding protein|unclassified	0.0721298592
+UniRef50_UPI000382265D: hypothetical protein	0.0721285290
+UniRef50_UPI000382265D: hypothetical protein|unclassified	0.0721285290
+UniRef50_A0A010PL47	0.0721223047
+UniRef50_A0A010PL47|unclassified	0.0721223047
+UniRef50_A0A058Z8R6	0.0721222107
+UniRef50_A0A058Z8R6|unclassified	0.0721222107
+UniRef50_UPI0003688670: hypothetical protein	0.0721214812
+UniRef50_UPI0003688670: hypothetical protein|unclassified	0.0721214812
+UniRef50_UPI0004632A6C: hypothetical protein	0.0721201451
+UniRef50_UPI0004632A6C: hypothetical protein|unclassified	0.0721201451
+UniRef50_O17433: 1-Cys peroxiredoxin	0.0721166073
+UniRef50_O17433: 1-Cys peroxiredoxin|unclassified	0.0721166073
+UniRef50_O64903: Nucleoside diphosphate kinase II, chloroplastic	0.0721148912
+UniRef50_O64903: Nucleoside diphosphate kinase II, chloroplastic|unclassified	0.0721148912
+UniRef50_UPI0002740356: PREDICTED: trifunctional enzyme subunit alpha, mitochondrial, partial	0.0721130950
+UniRef50_UPI0002740356: PREDICTED: trifunctional enzyme subunit alpha, mitochondrial, partial|unclassified	0.0721130950
+UniRef50_C7MGD4	0.0721094760
+UniRef50_C7MGD4|unclassified	0.0721094760
+UniRef50_UPI0003B55BDE: chemotaxis protein CheW	0.0721073924
+UniRef50_UPI0003B55BDE: chemotaxis protein CheW|unclassified	0.0721073924
+UniRef50_Z9JX35	0.0721063649
+UniRef50_Z9JX35|unclassified	0.0721063649
+UniRef50_UPI000364FCAD: hypothetical protein	0.0721034359
+UniRef50_UPI000364FCAD: hypothetical protein|unclassified	0.0721034359
+UniRef50_Q8ELR9: Alanine racemase 1	0.0720978763
+UniRef50_Q8ELR9: Alanine racemase 1|unclassified	0.0720978763
+UniRef50_G9EZR6: Phenyllactate dehydrogenase	0.0720950481
+UniRef50_G9EZR6: Phenyllactate dehydrogenase|unclassified	0.0720950481
+UniRef50_UPI0002556405: lipoprotein releasing system transmembrane protein LolC/E family	0.0720936672
+UniRef50_UPI0002556405: lipoprotein releasing system transmembrane protein LolC/E family|unclassified	0.0720936672
+UniRef50_UPI00036827F4: hypothetical protein	0.0720886928
+UniRef50_UPI00036827F4: hypothetical protein|unclassified	0.0720886928
+UniRef50_UPI00040BC8B6: hypothetical protein	0.0720779965
+UniRef50_UPI00040BC8B6: hypothetical protein|unclassified	0.0720779965
+UniRef50_B1YSV0: RNA pyrophosphohydrolase	0.0720754452
+UniRef50_B1YSV0: RNA pyrophosphohydrolase|unclassified	0.0720754452
+UniRef50_J4SG21	0.0720750415
+UniRef50_J4SG21|unclassified	0.0720750415
+UniRef50_E3J3H5	0.0720729987
+UniRef50_E3J3H5|unclassified	0.0720729987
+UniRef50_UPI0003DE76C9	0.0720682773
+UniRef50_UPI0003DE76C9|unclassified	0.0720682773
+UniRef50_UPI0003B4F802: hypothetical protein	0.0720667097
+UniRef50_UPI0003B4F802: hypothetical protein|unclassified	0.0720667097
+UniRef50_N2AHL2	0.0720654294
+UniRef50_N2AHL2|unclassified	0.0720654294
+UniRef50_X1TSL9: Marine sediment metagenome DNA, contig: S12H4_S17589 (Fragment)	0.0720643950
+UniRef50_X1TSL9: Marine sediment metagenome DNA, contig: S12H4_S17589 (Fragment)|unclassified	0.0720643950
+UniRef50_UPI00035D77EF: hypothetical protein	0.0720573085
+UniRef50_UPI00035D77EF: hypothetical protein|unclassified	0.0720573085
+UniRef50_C1N4T2: Predicted protein	0.0720547949
+UniRef50_C1N4T2: Predicted protein|unclassified	0.0720547949
+UniRef50_Q8GLK9: Isoprenyl transferase	0.0720539690
+UniRef50_Q8GLK9: Isoprenyl transferase|unclassified	0.0720539690
+UniRef50_UPI0003B59070: N5,N10-methylene tetrahydromethanopterin reductase, partial	0.0720512630
+UniRef50_UPI0003B59070: N5,N10-methylene tetrahydromethanopterin reductase, partial|unclassified	0.0720512630
+UniRef50_N3YJP9	0.0720501027
+UniRef50_N3YJP9|unclassified	0.0720501027
+UniRef50_UPI000395B60C: PREDICTED: sialidase-1-like	0.0720485194
+UniRef50_UPI000395B60C: PREDICTED: sialidase-1-like|unclassified	0.0720485194
+UniRef50_UPI000476ECFC: hypothetical protein	0.0720458456
+UniRef50_UPI000476ECFC: hypothetical protein|unclassified	0.0720458456
+UniRef50_Q89AV0: Lipoprotein signal peptidase	0.0720425023
+UniRef50_Q89AV0: Lipoprotein signal peptidase|unclassified	0.0720425023
+UniRef50_UPI000370ADFD: hypothetical protein	0.0720423339
+UniRef50_UPI000370ADFD: hypothetical protein|unclassified	0.0720423339
+UniRef50_E4A2E0: NLP/P60 family protein (Fragment)	0.0720366776
+UniRef50_E4A2E0: NLP/P60 family protein (Fragment)|unclassified	0.0720366776
+UniRef50_C7NST7: Na+/H+ antiporter MnhB subunit-related protein	0.0720312622
+UniRef50_C7NST7: Na+/H+ antiporter MnhB subunit-related protein|unclassified	0.0720312622
+UniRef50_UPI0000DB7CFF: PREDICTED: putative fructose-bisphosphate aldolase-like, partial	0.0720307203
+UniRef50_UPI0000DB7CFF: PREDICTED: putative fructose-bisphosphate aldolase-like, partial|unclassified	0.0720307203
+UniRef50_UPI000319D281: hypothetical protein	0.0720292236
+UniRef50_UPI000319D281: hypothetical protein|unclassified	0.0720292236
+UniRef50_Q5WGU8: Cytidylate kinase	0.0720263346
+UniRef50_Q5WGU8: Cytidylate kinase|unclassified	0.0720263346
+UniRef50_U1WRA6	0.0720249445
+UniRef50_U1WRA6|unclassified	0.0720249445
+UniRef50_UPI0003C813D4: PREDICTED: lipoyltransferase 1, mitochondrial	0.0720235488
+UniRef50_UPI0003C813D4: PREDICTED: lipoyltransferase 1, mitochondrial|unclassified	0.0720235488
+UniRef50_UPI00035FDE4E: hypothetical protein	0.0720230642
+UniRef50_UPI00035FDE4E: hypothetical protein|unclassified	0.0720230642
+UniRef50_UPI0004186366: hypothetical protein	0.0720215584
+UniRef50_UPI0004186366: hypothetical protein|unclassified	0.0720215584
+UniRef50_W5X8W1: Short-chain dehydrogenase/reductase SDR	0.0720193388
+UniRef50_W5X8W1: Short-chain dehydrogenase/reductase SDR|unclassified	0.0720193388
+UniRef50_UPI0001B431C0: heavy metal-transporting ATPase, partial	0.0720169279
+UniRef50_UPI0001B431C0: heavy metal-transporting ATPase, partial|unclassified	0.0720169279
+UniRef50_UPI0004705C4C: hypothetical protein	0.0720115581
+UniRef50_UPI0004705C4C: hypothetical protein|unclassified	0.0720115581
+UniRef50_UPI000373DE43: MULTISPECIES: hypothetical protein	0.0720090280
+UniRef50_UPI000373DE43: MULTISPECIES: hypothetical protein|unclassified	0.0720090280
+UniRef50_Q19842: Propionyl-CoA carboxylase alpha chain, mitochondrial	0.0719987966
+UniRef50_Q19842: Propionyl-CoA carboxylase alpha chain, mitochondrial|unclassified	0.0719987966
+UniRef50_H9KBP3	0.0719915271
+UniRef50_H9KBP3|unclassified	0.0719915271
+UniRef50_A0A011PIV7: Acetate CoA-transferase YdiF	0.0719905148
+UniRef50_A0A011PIV7: Acetate CoA-transferase YdiF|unclassified	0.0719905148
+UniRef50_F5XZB4	0.0719865477
+UniRef50_F5XZB4|unclassified	0.0719865477
+UniRef50_P41774: Cytochrome c oxidase subunit 1	0.0719854064
+UniRef50_P41774: Cytochrome c oxidase subunit 1|unclassified	0.0719854064
+UniRef50_UPI00037A1E3B: hypothetical protein	0.0719833974
+UniRef50_UPI00037A1E3B: hypothetical protein|unclassified	0.0719833974
+UniRef50_H8H3X9	0.0719829939
+UniRef50_H8H3X9|unclassified	0.0719829939
+UniRef50_UPI00047D8CE0: hypothetical protein	0.0719782070
+UniRef50_UPI00047D8CE0: hypothetical protein|unclassified	0.0719782070
+UniRef50_L1NKQ8	0.0719743461
+UniRef50_L1NKQ8|unclassified	0.0719743461
+UniRef50_UPI0003FCC4C5: hypothetical protein	0.0719701738
+UniRef50_UPI0003FCC4C5: hypothetical protein|unclassified	0.0719701738
+UniRef50_Q1AVI4: NADH-quinone oxidoreductase subunit B	0.0719660055
+UniRef50_Q1AVI4: NADH-quinone oxidoreductase subunit B|unclassified	0.0719660055
+UniRef50_UPI00037E65B1: hypothetical protein	0.0719618766
+UniRef50_UPI00037E65B1: hypothetical protein|unclassified	0.0719618766
+UniRef50_R5E8R6: Membrane protein	0.0719618385
+UniRef50_R5E8R6: Membrane protein|unclassified	0.0719618385
+UniRef50_A8FYD3: AnkB protein	0.0719574382
+UniRef50_A8FYD3: AnkB protein|unclassified	0.0719574382
+UniRef50_UPI00034A091F: transposase	0.0719556587
+UniRef50_UPI00034A091F: transposase|unclassified	0.0719556587
+UniRef50_D5B6G1: Virulence factor SrfB superfamily	0.0719402253
+UniRef50_D5B6G1: Virulence factor SrfB superfamily|unclassified	0.0719402253
+UniRef50_A0A010YGT2: Putative MccF-like protein (Microcin C7 resistance)	0.0719315257
+UniRef50_A0A010YGT2: Putative MccF-like protein (Microcin C7 resistance)|unclassified	0.0719315257
+UniRef50_UPI00031BCDF1: hypothetical protein	0.0719310819
+UniRef50_UPI00031BCDF1: hypothetical protein|unclassified	0.0719310819
+UniRef50_UPI0000510061: putative ABC transport protein, ATP-binding component	0.0719279940
+UniRef50_UPI0000510061: putative ABC transport protein, ATP-binding component|unclassified	0.0719279940
+UniRef50_UPI00037CF626: hypothetical protein	0.0719198198
+UniRef50_UPI00037CF626: hypothetical protein|unclassified	0.0719198198
+UniRef50_J9A1U0	0.0719163606
+UniRef50_J9A1U0|unclassified	0.0719163606
+UniRef50_UPI0004707FDC: MFS transporter	0.0719005612
+UniRef50_UPI0004707FDC: MFS transporter|unclassified	0.0719005612
+UniRef50_Q4L8L6: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0718981962
+UniRef50_Q4L8L6: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.0718981962
+UniRef50_UPI0003B4A4FD: amidase	0.0718955966
+UniRef50_UPI0003B4A4FD: amidase|unclassified	0.0718955966
+UniRef50_UPI00030A4DB9: hypothetical protein	0.0718931041
+UniRef50_UPI00030A4DB9: hypothetical protein|unclassified	0.0718931041
+UniRef50_A1BF67: Bifunctional protein FolD	0.0718917278
+UniRef50_A1BF67: Bifunctional protein FolD|unclassified	0.0718917278
+UniRef50_UPI0002559AA1: LysR family transcriptional regulator	0.0718917190
+UniRef50_UPI0002559AA1: LysR family transcriptional regulator|unclassified	0.0718917190
+UniRef50_UPI000288D10C: AraC family transcriptional regulator	0.0718805803
+UniRef50_UPI000288D10C: AraC family transcriptional regulator|unclassified	0.0718805803
+UniRef50_R1D2B5	0.0718749880
+UniRef50_R1D2B5|unclassified	0.0718749880
+UniRef50_UPI000372552C: hypothetical protein	0.0718723524
+UniRef50_UPI000372552C: hypothetical protein|unclassified	0.0718723524
+UniRef50_UPI0003709681: hypothetical protein	0.0718557945
+UniRef50_UPI0003709681: hypothetical protein|unclassified	0.0718557945
+UniRef50_P52603: Antirestriction protein KlcA	0.0718539246
+UniRef50_P52603: Antirestriction protein KlcA|unclassified	0.0718539246
+UniRef50_UPI0003F62277: hypothetical protein	0.0718536112
+UniRef50_UPI0003F62277: hypothetical protein|unclassified	0.0718536112
+UniRef50_X0QXG6: Excinuclease ABC subunit A	0.0718526582
+UniRef50_X0QXG6: Excinuclease ABC subunit A|unclassified	0.0718526582
+UniRef50_H1KP29	0.0718526515
+UniRef50_H1KP29|unclassified	0.0718526515
+UniRef50_U4V244	0.0718517759
+UniRef50_U4V244|unclassified	0.0718517759
+UniRef50_J3M3U5	0.0718454356
+UniRef50_J3M3U5|unclassified	0.0718454356
+UniRef50_UPI00047638AD: hypothetical protein	0.0718403614
+UniRef50_UPI00047638AD: hypothetical protein|unclassified	0.0718403614
+UniRef50_UPI0003B3E4B2: ABC transporter	0.0718349455
+UniRef50_UPI0003B3E4B2: ABC transporter|unclassified	0.0718349455
+UniRef50_UPI00047AE6A2: hypothetical protein	0.0718330521
+UniRef50_UPI00047AE6A2: hypothetical protein|unclassified	0.0718330521
+UniRef50_Q87KE0: N5-carboxyaminoimidazole ribonucleotide synthase	0.0718290136
+UniRef50_Q87KE0: N5-carboxyaminoimidazole ribonucleotide synthase|unclassified	0.0718290136
+UniRef50_B5JY15: Type IV pilus biogenesis/stability protein PilW	0.0718132165
+UniRef50_B5JY15: Type IV pilus biogenesis/stability protein PilW|unclassified	0.0718132165
+UniRef50_Q1AW92: Phosphopantetheine adenylyltransferase	0.0718119635
+UniRef50_Q1AW92: Phosphopantetheine adenylyltransferase|unclassified	0.0718119635
+UniRef50_E3ZE37: Cell wall surface anchor family protein (Fragment)	0.0718105567
+UniRef50_E3ZE37: Cell wall surface anchor family protein (Fragment)|unclassified	0.0718105567
+UniRef50_D3P4Y8	0.0718026868
+UniRef50_D3P4Y8|unclassified	0.0718026868
+UniRef50_U6N1T6	0.0718016247
+UniRef50_U6N1T6|unclassified	0.0718016247
+UniRef50_UPI000287AD5E: glutamyl-tRNA(Gln) amidotransferase subunit A (Glu-ADTsubunit A)	0.0718006266
+UniRef50_UPI000287AD5E: glutamyl-tRNA(Gln) amidotransferase subunit A (Glu-ADTsubunit A)|unclassified	0.0718006266
+UniRef50_UPI00035F4858: hypothetical protein, partial	0.0717994396
+UniRef50_UPI00035F4858: hypothetical protein, partial|unclassified	0.0717994396
+UniRef50_H6NQN7	0.0717923011
+UniRef50_H6NQN7|unclassified	0.0717923011
+UniRef50_UPI0003728022: hypothetical protein	0.0717915877
+UniRef50_UPI0003728022: hypothetical protein|unclassified	0.0717915877
+UniRef50_U4JVB3	0.0717886810
+UniRef50_U4JVB3|unclassified	0.0717886810
+UniRef50_UPI0003B420FB: chromosome replication initiation inhibitor protein	0.0717813633
+UniRef50_UPI0003B420FB: chromosome replication initiation inhibitor protein|unclassified	0.0717813633
+UniRef50_UPI00045E86E7: C4-dicarboxylate ABC transporter substrate-binding protein	0.0717802696
+UniRef50_UPI00045E86E7: C4-dicarboxylate ABC transporter substrate-binding protein|unclassified	0.0717802696
+UniRef50_E6YJ75	0.0717791109
+UniRef50_E6YJ75|unclassified	0.0717791109
+UniRef50_G0AET7: Glutathione-regulated potassium-efflux system ancillary protein	0.0717776111
+UniRef50_G0AET7: Glutathione-regulated potassium-efflux system ancillary protein|unclassified	0.0717776111
+UniRef50_A6FTC6	0.0717724979
+UniRef50_A6FTC6|unclassified	0.0717724979
+UniRef50_UPI000371FC0C: hypothetical protein	0.0717710282
+UniRef50_UPI000371FC0C: hypothetical protein|unclassified	0.0717710282
+UniRef50_Q1K8G0: Cystathionine beta-lyase	0.0717673916
+UniRef50_Q1K8G0: Cystathionine beta-lyase|unclassified	0.0717673916
+UniRef50_UPI000383E592: PREDICTED: serine/arginine repetitive matrix protein 3-like	0.0717667969
+UniRef50_UPI000383E592: PREDICTED: serine/arginine repetitive matrix protein 3-like|unclassified	0.0717667969
+UniRef50_UPI00036B68F3: hypothetical protein	0.0717664193
+UniRef50_UPI00036B68F3: hypothetical protein|unclassified	0.0717664193
+UniRef50_UPI00027FA205	0.0717647802
+UniRef50_UPI00027FA205|unclassified	0.0717647802
+UniRef50_A0YFR7	0.0717631339
+UniRef50_A0YFR7|unclassified	0.0717631339
+UniRef50_Q1QTJ4: Methionyl-tRNA formyltransferase	0.0717629836
+UniRef50_Q1QTJ4: Methionyl-tRNA formyltransferase|unclassified	0.0717629836
+UniRef50_K3Y9T2	0.0717609028
+UniRef50_K3Y9T2|unclassified	0.0717609028
+UniRef50_K2RBF7	0.0717601781
+UniRef50_K2RBF7|unclassified	0.0717601781
+UniRef50_G0FKS6	0.0717573970
+UniRef50_G0FKS6|unclassified	0.0717573970
+UniRef50_C9S8G7: Voltage-gated potassium channel subunit beta-1	0.0717554311
+UniRef50_C9S8G7: Voltage-gated potassium channel subunit beta-1|unclassified	0.0717554311
+UniRef50_A0A024HCN7: Esterase	0.0717542196
+UniRef50_A0A024HCN7: Esterase|unclassified	0.0717542196
+UniRef50_Q2RHT6: Holliday junction ATP-dependent DNA helicase RuvA	0.0717524264
+UniRef50_Q2RHT6: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.0717524264
+UniRef50_UPI00036D29FE: hypothetical protein, partial	0.0717497727
+UniRef50_UPI00036D29FE: hypothetical protein, partial|unclassified	0.0717497727
+UniRef50_Q03U68: Glutamate--tRNA ligase 1	0.0717273610
+UniRef50_Q03U68: Glutamate--tRNA ligase 1|unclassified	0.0717273610
+UniRef50_UPI0003769589: hypothetical protein	0.0717212916
+UniRef50_UPI0003769589: hypothetical protein|unclassified	0.0717212916
+UniRef50_UPI0002D72DC0: hypothetical protein	0.0717206242
+UniRef50_UPI0002D72DC0: hypothetical protein|unclassified	0.0717206242
+UniRef50_UPI0003B73915: potassium transporter TrkA	0.0717110915
+UniRef50_UPI0003B73915: potassium transporter TrkA|unclassified	0.0717110915
+UniRef50_V6M7J5	0.0717081407
+UniRef50_V6M7J5|unclassified	0.0717081407
+UniRef50_UPI00037196F6: hypothetical protein	0.0717079499
+UniRef50_UPI00037196F6: hypothetical protein|unclassified	0.0717079499
+UniRef50_UPI000471C2D7: hypothetical protein	0.0717017029
+UniRef50_UPI000471C2D7: hypothetical protein|unclassified	0.0717017029
+UniRef50_UPI0003810A5E: hypothetical protein	0.0717014009
+UniRef50_UPI0003810A5E: hypothetical protein|unclassified	0.0717014009
+UniRef50_UPI00037F1AC8: nucleoside-triphosphate diphosphatase	0.0716883251
+UniRef50_UPI00037F1AC8: nucleoside-triphosphate diphosphatase|unclassified	0.0716883251
+UniRef50_Q28VQ8: Phosphate ABC transporter substrate-binding protein, PhoT family	0.0716825876
+UniRef50_Q28VQ8: Phosphate ABC transporter substrate-binding protein, PhoT family|unclassified	0.0716825876
+UniRef50_UPI00023B31A9: PREDICTED: phosphoribosylaminoimidazole carboxylase, chloroplastic-like	0.0716803593
+UniRef50_UPI00023B31A9: PREDICTED: phosphoribosylaminoimidazole carboxylase, chloroplastic-like|unclassified	0.0716803593
+UniRef50_X2GUS9	0.0716759707
+UniRef50_X2GUS9|unclassified	0.0716759707
+UniRef50_UPI000478322A: hypothetical protein	0.0716748692
+UniRef50_UPI000478322A: hypothetical protein|unclassified	0.0716748692
+UniRef50_Q6ML97: tRNA (guanine-N(1)-)-methyltransferase	0.0716738200
+UniRef50_Q6ML97: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0716738200
+UniRef50_Q58989: Phosphoserine phosphatase	0.0716720060
+UniRef50_Q58989: Phosphoserine phosphatase|unclassified	0.0716720060
+UniRef50_UPI00029AFBF4: excinuclease ABC subunit A	0.0716702227
+UniRef50_UPI00029AFBF4: excinuclease ABC subunit A|unclassified	0.0716702227
+UniRef50_L8P717: Putative UPF0225 protein	0.0716693887
+UniRef50_L8P717: Putative UPF0225 protein|unclassified	0.0716693887
+UniRef50_UPI00037DF3FF: hypothetical protein	0.0716688822
+UniRef50_UPI00037DF3FF: hypothetical protein|unclassified	0.0716688822
+UniRef50_UPI00035FE660: hypothetical protein	0.0716682759
+UniRef50_UPI00035FE660: hypothetical protein|unclassified	0.0716682759
+UniRef50_UPI000361EA0E: hypothetical protein	0.0716674959
+UniRef50_UPI000361EA0E: hypothetical protein|unclassified	0.0716674959
+UniRef50_UPI00047107FF: transposase	0.0716664753
+UniRef50_UPI00047107FF: transposase|unclassified	0.0716664753
+UniRef50_B8FNP3: tRNA (guanine-N(1)-)-methyltransferase	0.0716616127
+UniRef50_B8FNP3: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0716616127
+UniRef50_UPI000467CD77: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.0716505769
+UniRef50_UPI000467CD77: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.0716505769
+UniRef50_UPI00047BB4A1: membrane protein	0.0716481715
+UniRef50_UPI00047BB4A1: membrane protein|unclassified	0.0716481715
+UniRef50_UPI0003750E6E: hypothetical protein	0.0716448972
+UniRef50_UPI0003750E6E: hypothetical protein|unclassified	0.0716448972
+UniRef50_UPI00036B36C2: hypothetical protein	0.0716424546
+UniRef50_UPI00036B36C2: hypothetical protein|unclassified	0.0716424546
+UniRef50_G0GL61	0.0716234748
+UniRef50_G0GL61|unclassified	0.0716234748
+UniRef50_V4PJA3	0.0716131354
+UniRef50_V4PJA3|unclassified	0.0716131354
+UniRef50_Q9CET9: Prephenate dehydrogenase	0.0716127459
+UniRef50_Q9CET9: Prephenate dehydrogenase|unclassified	0.0716127459
+UniRef50_UPI000479EC70: hypothetical protein	0.0716106220
+UniRef50_UPI000479EC70: hypothetical protein|unclassified	0.0716106220
+UniRef50_R5GC07	0.0716103063
+UniRef50_R5GC07|unclassified	0.0716103063
+UniRef50_Q03HA9: Putative dihydroorotate dehydrogenase A (fumarate)	0.0716073833
+UniRef50_Q03HA9: Putative dihydroorotate dehydrogenase A (fumarate)|unclassified	0.0716073833
+UniRef50_UPI00045E74AA: hypothetical protein	0.0716068864
+UniRef50_UPI00045E74AA: hypothetical protein|unclassified	0.0716068864
+UniRef50_N0B4B2	0.0716003564
+UniRef50_N0B4B2|unclassified	0.0716003564
+UniRef50_UPI00036A5069: hypothetical protein	0.0715925769
+UniRef50_UPI00036A5069: hypothetical protein|unclassified	0.0715925769
+UniRef50_UPI0002F46BC6: hypothetical protein	0.0715910359
+UniRef50_UPI0002F46BC6: hypothetical protein|unclassified	0.0715910359
+UniRef50_UPI00046F5D51: leucyl/phenylalanyl-tRNA--protein transferase	0.0715866343
+UniRef50_UPI00046F5D51: leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.0715866343
+UniRef50_UPI000388C758: PREDICTED: myosin heavy chain IB-like	0.0715862786
+UniRef50_UPI000388C758: PREDICTED: myosin heavy chain IB-like|unclassified	0.0715862786
+UniRef50_C4LB15: Fimbrial assembly family protein	0.0715849779
+UniRef50_C4LB15: Fimbrial assembly family protein|unclassified	0.0715849779
+UniRef50_UPI00036E880A: hypothetical protein	0.0715811394
+UniRef50_UPI00036E880A: hypothetical protein|unclassified	0.0715811394
+UniRef50_UPI0004648FCC: hypothetical protein	0.0715770177
+UniRef50_UPI0004648FCC: hypothetical protein|unclassified	0.0715770177
+UniRef50_U2I1L9: Relaxase (Fragment)	0.0715763426
+UniRef50_U2I1L9: Relaxase (Fragment)|unclassified	0.0715763426
+UniRef50_UPI0002192F7F: molybdopterin biosynthesis protein MoeB, partial	0.0715716273
+UniRef50_UPI0002192F7F: molybdopterin biosynthesis protein MoeB, partial|unclassified	0.0715716273
+UniRef50_U2Z1S4	0.0715657915
+UniRef50_U2Z1S4|unclassified	0.0715657915
+UniRef50_UPI000378AEEE: hypothetical protein	0.0715592002
+UniRef50_UPI000378AEEE: hypothetical protein|unclassified	0.0715592002
+UniRef50_C1CX98: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.0715479396
+UniRef50_C1CX98: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.0715479396
+UniRef50_D7D802	0.0715468970
+UniRef50_D7D802|unclassified	0.0715468970
+UniRef50_UPI0003B4C1F5: TonB-denpendent receptor	0.0715386538
+UniRef50_UPI0003B4C1F5: TonB-denpendent receptor|unclassified	0.0715386538
+UniRef50_W8YT41	0.0715378380
+UniRef50_W8YT41|unclassified	0.0715378380
+UniRef50_Q01DR0: Potential nuclear RNA processing factor (ISS)	0.0715362055
+UniRef50_Q01DR0: Potential nuclear RNA processing factor (ISS)|unclassified	0.0715362055
+UniRef50_B4SGR9: 3-dehydroquinate dehydratase	0.0715291103
+UniRef50_B4SGR9: 3-dehydroquinate dehydratase|unclassified	0.0715291103
+UniRef50_UPI00046EA1D9: hypothetical protein	0.0715230574
+UniRef50_UPI00046EA1D9: hypothetical protein|unclassified	0.0715230574
+UniRef50_S2TP83: ADP-dependent (S)-NAD(P)H-hydrate dehydratase (Fragment)	0.0715173079
+UniRef50_S2TP83: ADP-dependent (S)-NAD(P)H-hydrate dehydratase (Fragment)|unclassified	0.0715173079
+UniRef50_P61159: Formate dehydrogenase subunit alpha	0.0715161575
+UniRef50_P61159: Formate dehydrogenase subunit alpha|unclassified	0.0715161575
+UniRef50_UPI0003B2FAB2: MULTISPECIES: peptide ABC transporter ATPase	0.0715080988
+UniRef50_UPI0003B2FAB2: MULTISPECIES: peptide ABC transporter ATPase|unclassified	0.0715080988
+UniRef50_Q1MPW7: Glutamate-1-semialdehyde 2,1-aminomutase	0.0715073204
+UniRef50_Q1MPW7: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0715073204
+UniRef50_UPI00037D6405: hypothetical protein	0.0715057213
+UniRef50_UPI00037D6405: hypothetical protein|unclassified	0.0715057213
+UniRef50_E1ZQF3	0.0715047450
+UniRef50_E1ZQF3|unclassified	0.0715047450
+UniRef50_UPI0003F07A15: PREDICTED: follicle-stimulating hormone receptor-like	0.0715035258
+UniRef50_UPI0003F07A15: PREDICTED: follicle-stimulating hormone receptor-like|unclassified	0.0715035258
+UniRef50_UPI00046EE6DC: dTDP-4-dehydrorhamnose 3,5-epimerase	0.0715011905
+UniRef50_UPI00046EE6DC: dTDP-4-dehydrorhamnose 3,5-epimerase|unclassified	0.0715011905
+UniRef50_Q9X0C4: Putative UDP-N-acetylglucosamine 2-epimerase	0.0714928054
+UniRef50_Q9X0C4: Putative UDP-N-acetylglucosamine 2-epimerase|unclassified	0.0714928054
+UniRef50_UPI000471AB5A: hypothetical protein	0.0714893798
+UniRef50_UPI000471AB5A: hypothetical protein|unclassified	0.0714893798
+UniRef50_W3APN0: TRAP-type transport system, large permease component (Fragment)	0.0714859349
+UniRef50_W3APN0: TRAP-type transport system, large permease component (Fragment)|unclassified	0.0714859349
+UniRef50_UPI00028A03C4: beta-N-acetylhexosaminidase	0.0714844003
+UniRef50_UPI00028A03C4: beta-N-acetylhexosaminidase|unclassified	0.0714844003
+UniRef50_C4J6F8	0.0714843110
+UniRef50_C4J6F8|unclassified	0.0714843110
+UniRef50_UPI0004667CCD: hypothetical protein	0.0714736184
+UniRef50_UPI0004667CCD: hypothetical protein|unclassified	0.0714736184
+UniRef50_UPI000262741F: iron-enterobactin transporter permease	0.0714702511
+UniRef50_UPI000262741F: iron-enterobactin transporter permease|unclassified	0.0714702511
+UniRef50_A4EZ77: MJ0042 family finger-like domain protein	0.0714681162
+UniRef50_A4EZ77: MJ0042 family finger-like domain protein|unclassified	0.0714681162
+UniRef50_Q9ZVQ4: Glutathione S-transferase Z2	0.0714550674
+UniRef50_Q9ZVQ4: Glutathione S-transferase Z2|unclassified	0.0714550674
+UniRef50_UPI0003B30A5B: MerR family transcriptional regulator	0.0714531350
+UniRef50_UPI0003B30A5B: MerR family transcriptional regulator|unclassified	0.0714531350
+UniRef50_W9T5C9	0.0714518679
+UniRef50_W9T5C9|unclassified	0.0714518679
+UniRef50_UPI000441FC52: PREDICTED: cytochrome c oxidase subunit 3-like	0.0714513293
+UniRef50_UPI000441FC52: PREDICTED: cytochrome c oxidase subunit 3-like|unclassified	0.0714513293
+UniRef50_UPI0001746613: hypothetical protein	0.0714503907
+UniRef50_UPI0001746613: hypothetical protein|unclassified	0.0714503907
+UniRef50_Q49UK7	0.0714473980
+UniRef50_Q49UK7|unclassified	0.0714473980
+UniRef50_UPI00037094DE: hypothetical protein	0.0714403630
+UniRef50_UPI00037094DE: hypothetical protein|unclassified	0.0714403630
+UniRef50_F2F9H7	0.0714358600
+UniRef50_F2F9H7|unclassified	0.0714358600
+UniRef50_Q9WYG0	0.0714323603
+UniRef50_Q9WYG0|unclassified	0.0714323603
+UniRef50_UPI00038189CE: hypothetical protein	0.0714205595
+UniRef50_UPI00038189CE: hypothetical protein|unclassified	0.0714205595
+UniRef50_UPI000463E283: ABC transporter substrate-binding protein	0.0714203646
+UniRef50_UPI000463E283: ABC transporter substrate-binding protein|unclassified	0.0714203646
+UniRef50_UPI0003B439BE: cell division protein ZipA	0.0714181625
+UniRef50_UPI0003B439BE: cell division protein ZipA|unclassified	0.0714181625
+UniRef50_UPI00034FF8BC	0.0714097480
+UniRef50_UPI00034FF8BC|unclassified	0.0714097480
+UniRef50_UPI00035F7004: hypothetical protein	0.0714039505
+UniRef50_UPI00035F7004: hypothetical protein|unclassified	0.0714039505
+UniRef50_P96110: Glutamate dehydrogenase	0.0713998709
+UniRef50_P96110: Glutamate dehydrogenase|unclassified	0.0713998709
+UniRef50_UPI00037EC6FF: hypothetical protein	0.0713966971
+UniRef50_UPI00037EC6FF: hypothetical protein|unclassified	0.0713966971
+UniRef50_Q7X2V0: Putative MaoC family dehydratase	0.0713961502
+UniRef50_Q7X2V0: Putative MaoC family dehydratase|unclassified	0.0713961502
+UniRef50_UPI000328D76F: PREDICTED: collagen alpha-1(II) chain-like	0.0713942437
+UniRef50_UPI000328D76F: PREDICTED: collagen alpha-1(II) chain-like|unclassified	0.0713942437
+UniRef50_A0A024L412: Phage tail protein I	0.0713929940
+UniRef50_A0A024L412: Phage tail protein I|unclassified	0.0713929940
+UniRef50_Q8PK23: Cysteine--tRNA ligase	0.0713889724
+UniRef50_Q8PK23: Cysteine--tRNA ligase|unclassified	0.0713889724
+UniRef50_G1UVW2	0.0713877764
+UniRef50_G1UVW2|unclassified	0.0713877764
+UniRef50_Z5XJ24: 50S ribosomal protein L23	0.0713859951
+UniRef50_Z5XJ24: 50S ribosomal protein L23|unclassified	0.0713859951
+UniRef50_D7BMW7: Portal protein	0.0713819006
+UniRef50_D7BMW7: Portal protein|unclassified	0.0713819006
+UniRef50_Q5FKM6: Enolase	0.0713810347
+UniRef50_Q5FKM6: Enolase|unclassified	0.0713810347
+UniRef50_UPI0002659049: PREDICTED: beta-lactamase-like protein 2-like	0.0713785788
+UniRef50_UPI0002659049: PREDICTED: beta-lactamase-like protein 2-like|unclassified	0.0713785788
+UniRef50_UPI0003808AE5: hypothetical protein	0.0713779041
+UniRef50_UPI0003808AE5: hypothetical protein|unclassified	0.0713779041
+UniRef50_E8U4R9: GAF domain protein	0.0713759853
+UniRef50_E8U4R9: GAF domain protein|unclassified	0.0713759853
+UniRef50_UPI00037B599D: hypothetical protein	0.0713718513
+UniRef50_UPI00037B599D: hypothetical protein|unclassified	0.0713718513
+UniRef50_B9JSD1: Exopolyphosphatase	0.0713650037
+UniRef50_B9JSD1: Exopolyphosphatase|unclassified	0.0713650037
+UniRef50_UPI00046214CF: hypothetical protein TRAVEDRAFT_37970	0.0713619898
+UniRef50_UPI00046214CF: hypothetical protein TRAVEDRAFT_37970|unclassified	0.0713619898
+UniRef50_UPI000476A0F0: hypothetical protein	0.0713613196
+UniRef50_UPI000476A0F0: hypothetical protein|unclassified	0.0713613196
+UniRef50_UPI0004684A83: cysteine synthase	0.0713610298
+UniRef50_UPI0004684A83: cysteine synthase|unclassified	0.0713610298
+UniRef50_UPI00036BE9B5: hypothetical protein	0.0713570175
+UniRef50_UPI00036BE9B5: hypothetical protein|unclassified	0.0713570175
+UniRef50_B5SAP2: Lipoprotein	0.0713542360
+UniRef50_B5SAP2: Lipoprotein|unclassified	0.0713542360
+UniRef50_UPI0003614614: hypothetical protein, partial	0.0713499389
+UniRef50_UPI0003614614: hypothetical protein, partial|unclassified	0.0713499389
+UniRef50_P08075: Glucose-1-phosphate thymidylyltransferase	0.0713469256
+UniRef50_P08075: Glucose-1-phosphate thymidylyltransferase|unclassified	0.0713469256
+UniRef50_V3M9B7	0.0713431495
+UniRef50_V3M9B7|unclassified	0.0713431495
+UniRef50_A0B885: Glutamate-1-semialdehyde 2,1-aminomutase	0.0713419768
+UniRef50_A0B885: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0713419768
+UniRef50_UPI00046C8FA7: hypothetical protein	0.0713408501
+UniRef50_UPI00046C8FA7: hypothetical protein|unclassified	0.0713408501
+UniRef50_UPI0003B65312: TonB-denpendent receptor	0.0713383439
+UniRef50_UPI0003B65312: TonB-denpendent receptor|unclassified	0.0713383439
+UniRef50_H9KJ92	0.0713360382
+UniRef50_H9KJ92|unclassified	0.0713360382
+UniRef50_P73241: Probable copper-transporting ATPase PacS	0.0713327914
+UniRef50_P73241: Probable copper-transporting ATPase PacS|unclassified	0.0713327914
+UniRef50_A7C670: UvrABC system protein C	0.0713310872
+UniRef50_A7C670: UvrABC system protein C|unclassified	0.0713310872
+UniRef50_UPI000463FB8D: hypothetical protein	0.0713276626
+UniRef50_UPI000463FB8D: hypothetical protein|unclassified	0.0713276626
+UniRef50_J4JIB5	0.0713254912
+UniRef50_J4JIB5|unclassified	0.0713254912
+UniRef50_UPI0003B3BE35: ABC transporter ATPase	0.0713221698
+UniRef50_UPI0003B3BE35: ABC transporter ATPase|unclassified	0.0713221698
+UniRef50_H2BTH3	0.0713204624
+UniRef50_H2BTH3|unclassified	0.0713204624
+UniRef50_A5FS34: Type III pantothenate kinase	0.0713190401
+UniRef50_A5FS34: Type III pantothenate kinase|unclassified	0.0713190401
+UniRef50_UPI0003A2B92E: thiouridylase	0.0713166479
+UniRef50_UPI0003A2B92E: thiouridylase|unclassified	0.0713166479
+UniRef50_S5FEJ4: Cytochrome C biosynthesis protein	0.0713164745
+UniRef50_S5FEJ4: Cytochrome C biosynthesis protein|unclassified	0.0713164745
+UniRef50_J9NYU0	0.0713111760
+UniRef50_J9NYU0|unclassified	0.0713111760
+UniRef50_W1QCT9	0.0713065706
+UniRef50_W1QCT9|unclassified	0.0713065706
+UniRef50_UPI000428AB68: hypothetical protein	0.0713026296
+UniRef50_UPI000428AB68: hypothetical protein|unclassified	0.0713026296
+UniRef50_F4BLG0	0.0712991179
+UniRef50_F4BLG0|unclassified	0.0712991179
+UniRef50_UPI0004750317: hypothetical protein	0.0712955097
+UniRef50_UPI0004750317: hypothetical protein|unclassified	0.0712955097
+UniRef50_UPI000366C05C: hypothetical protein	0.0712925930
+UniRef50_UPI000366C05C: hypothetical protein|unclassified	0.0712925930
+UniRef50_UPI000478C186: phosphoribosyl-ATP pyrophosphatase	0.0712915709
+UniRef50_UPI000478C186: phosphoribosyl-ATP pyrophosphatase|unclassified	0.0712915709
+UniRef50_J3PYY7	0.0712895409
+UniRef50_J3PYY7|unclassified	0.0712895409
+UniRef50_UPI00036D73AB: hypothetical protein	0.0712856419
+UniRef50_UPI00036D73AB: hypothetical protein|unclassified	0.0712856419
+UniRef50_F0BGS2	0.0712845165
+UniRef50_F0BGS2|unclassified	0.0712845165
+UniRef50_U1MU63	0.0712833902
+UniRef50_U1MU63|unclassified	0.0712833902
+UniRef50_Q72TM7: Potassium-transporting ATPase A chain	0.0712800611
+UniRef50_Q72TM7: Potassium-transporting ATPase A chain|unclassified	0.0712800611
+UniRef50_UPI00035FEBAF: hypothetical protein	0.0712752380
+UniRef50_UPI00035FEBAF: hypothetical protein|unclassified	0.0712752380
+UniRef50_R9PJD5	0.0712631524
+UniRef50_R9PJD5|unclassified	0.0712631524
+UniRef50_UPI00037CB717: hypothetical protein	0.0712617584
+UniRef50_UPI00037CB717: hypothetical protein|unclassified	0.0712617584
+UniRef50_U6MKZ6	0.0712558992
+UniRef50_U6MKZ6|unclassified	0.0712558992
+UniRef50_UPI0003788896: hypothetical protein	0.0712481474
+UniRef50_UPI0003788896: hypothetical protein|unclassified	0.0712481474
+UniRef50_UPI00020DA352: acetylglutamate kinase	0.0712480074
+UniRef50_UPI00020DA352: acetylglutamate kinase|unclassified	0.0712480074
+UniRef50_U6HVX7: Heat shock 70 kDa protein, mitochondrial, putative	0.0712432967
+UniRef50_U6HVX7: Heat shock 70 kDa protein, mitochondrial, putative|unclassified	0.0712432967
+UniRef50_UPI0004665ED1: N-acetylmuramoyl-L-alanine amidase, partial	0.0712419430
+UniRef50_UPI0004665ED1: N-acetylmuramoyl-L-alanine amidase, partial|unclassified	0.0712419430
+UniRef50_UPI0004740DC2: hypothetical protein	0.0712414740
+UniRef50_UPI0004740DC2: hypothetical protein|unclassified	0.0712414740
+UniRef50_B1PWB5: N-acetylmuramoyl-L-alanine amidase family 4 (Fragment)	0.0712387940
+UniRef50_B1PWB5: N-acetylmuramoyl-L-alanine amidase family 4 (Fragment)|unclassified	0.0712387940
+UniRef50_D3AQM6	0.0712317262
+UniRef50_D3AQM6|unclassified	0.0712317262
+UniRef50_Q4T799: Chromosome undetermined SCAF8206, whole genome shotgun sequence. (Fragment)	0.0712220291
+UniRef50_Q4T799: Chromosome undetermined SCAF8206, whole genome shotgun sequence. (Fragment)|unclassified	0.0712220291
+UniRef50_UPI000287BC7E: abortive infection protein	0.0712187223
+UniRef50_UPI000287BC7E: abortive infection protein|unclassified	0.0712187223
+UniRef50_UPI00047EE872: ABC transporter substrate-binding protein	0.0712167418
+UniRef50_UPI00047EE872: ABC transporter substrate-binding protein|unclassified	0.0712167418
+UniRef50_UPI000468C74C: DNA polymerase III PolC	0.0712143564
+UniRef50_UPI000468C74C: DNA polymerase III PolC|unclassified	0.0712143564
+UniRef50_UPI000463C46F: Surfeit locus 1 family protein	0.0712096828
+UniRef50_UPI000463C46F: Surfeit locus 1 family protein|unclassified	0.0712096828
+UniRef50_UPI0004653213: nucleoside-diphosphate sugar epimerase	0.0711963590
+UniRef50_UPI0004653213: nucleoside-diphosphate sugar epimerase|unclassified	0.0711963590
+UniRef50_R2ATU0	0.0711955175
+UniRef50_R2ATU0|unclassified	0.0711955175
+UniRef50_UPI00044101FF: GroES-like protein	0.0711954901
+UniRef50_UPI00044101FF: GroES-like protein|unclassified	0.0711954901
+UniRef50_K8AKY0: 200 kDa antigen p200, putative	0.0711920628
+UniRef50_K8AKY0: 200 kDa antigen p200, putative|unclassified	0.0711920628
+UniRef50_U3A846: Metallo-beta-lactamase family protein	0.0711907432
+UniRef50_U3A846: Metallo-beta-lactamase family protein|unclassified	0.0711907432
+UniRef50_UPI00036E6331: hypothetical protein	0.0711865194
+UniRef50_UPI00036E6331: hypothetical protein|unclassified	0.0711865194
+UniRef50_Q47HI2: Ribosomal RNA large subunit methyltransferase E	0.0711834852
+UniRef50_Q47HI2: Ribosomal RNA large subunit methyltransferase E|unclassified	0.0711834852
+UniRef50_W7D3G1	0.0711792528
+UniRef50_W7D3G1|unclassified	0.0711792528
+UniRef50_UPI000372F0D2: hypothetical protein	0.0711777067
+UniRef50_UPI000372F0D2: hypothetical protein|unclassified	0.0711777067
+UniRef50_UPI000273D5E4	0.0711768210
+UniRef50_UPI000273D5E4|unclassified	0.0711768210
+UniRef50_Q1C1W5	0.0711754777
+UniRef50_Q1C1W5|unclassified	0.0711754777
+UniRef50_UPI0003B4326A: transcriptional regulator	0.0711730947
+UniRef50_UPI0003B4326A: transcriptional regulator|unclassified	0.0711730947
+UniRef50_UPI00046D72BD: hypothetical protein	0.0711727882
+UniRef50_UPI00046D72BD: hypothetical protein|unclassified	0.0711727882
+UniRef50_UPI00025561B7: DNA polymerase III subunit epsilon	0.0711683787
+UniRef50_UPI00025561B7: DNA polymerase III subunit epsilon|unclassified	0.0711683787
+UniRef50_UPI00036962AD: hypothetical protein	0.0711535987
+UniRef50_UPI00036962AD: hypothetical protein|unclassified	0.0711535987
+UniRef50_Q2JH09	0.0711529979
+UniRef50_Q2JH09|unclassified	0.0711529979
+UniRef50_D1BCT4: ABC-type hemin transport system, periplasmic component	0.0711529942
+UniRef50_D1BCT4: ABC-type hemin transport system, periplasmic component|unclassified	0.0711529942
+UniRef50_Q50028: Amidophosphoribosyltransferase	0.0711500798
+UniRef50_Q50028: Amidophosphoribosyltransferase|unclassified	0.0711500798
+UniRef50_UPI000262928B: branched-chain amino acid aminotransferase	0.0711341768
+UniRef50_UPI000262928B: branched-chain amino acid aminotransferase|unclassified	0.0711341768
+UniRef50_C5D3D6: Indole-3-glycerol phosphate synthase	0.0711281816
+UniRef50_C5D3D6: Indole-3-glycerol phosphate synthase|unclassified	0.0711281816
+UniRef50_B8GYX9: Monofunctional biosynthetic peptidoglycan transglycosylase	0.0711269310
+UniRef50_B8GYX9: Monofunctional biosynthetic peptidoglycan transglycosylase|unclassified	0.0711269310
+UniRef50_Q6SSJ3: Acetolactate synthase, mitochondrial	0.0711212035
+UniRef50_Q6SSJ3: Acetolactate synthase, mitochondrial|unclassified	0.0711212035
+UniRef50_P47719: DNA gyrase subunit A	0.0711204065
+UniRef50_P47719: DNA gyrase subunit A|unclassified	0.0711204065
+UniRef50_C0Z6P5: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.0711142271
+UniRef50_C0Z6P5: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.0711142271
+UniRef50_UPI0003B495EE: exonuclease subunit SbcD	0.0711128911
+UniRef50_UPI0003B495EE: exonuclease subunit SbcD|unclassified	0.0711128911
+UniRef50_UPI00037F89DA: hypothetical protein	0.0711120044
+UniRef50_UPI00037F89DA: hypothetical protein|unclassified	0.0711120044
+UniRef50_F6DCW9	0.0711112034
+UniRef50_F6DCW9|unclassified	0.0711112034
+UniRef50_O67054: Phosphoheptose isomerase	0.0711101583
+UniRef50_O67054: Phosphoheptose isomerase|unclassified	0.0711101583
+UniRef50_UPI0002D6BD38: hypothetical protein	0.0711097946
+UniRef50_UPI0002D6BD38: hypothetical protein|unclassified	0.0711097946
+UniRef50_UPI0003F15ED7: PREDICTED: 3-hydroxyisobutyrate dehydrogenase, mitochondrial-like	0.0711083877
+UniRef50_UPI0003F15ED7: PREDICTED: 3-hydroxyisobutyrate dehydrogenase, mitochondrial-like|unclassified	0.0711083877
+UniRef50_UPI00036AFD53: hypothetical protein	0.0711027640
+UniRef50_UPI00036AFD53: hypothetical protein|unclassified	0.0711027640
+UniRef50_P75981: Putative protein JayE from lambdoid prophage e14 region	0.0711006982
+UniRef50_P75981: Putative protein JayE from lambdoid prophage e14 region|unclassified	0.0711006982
+UniRef50_W2ELI4: ABC transporter substrate-binding protein	0.0710984264
+UniRef50_W2ELI4: ABC transporter substrate-binding protein|unclassified	0.0710984264
+UniRef50_UPI0003487B9E: hypothetical protein	0.0710929227
+UniRef50_UPI0003487B9E: hypothetical protein|unclassified	0.0710929227
+UniRef50_A4A5X5: Flagellar motor protein	0.0710906449
+UniRef50_A4A5X5: Flagellar motor protein|unclassified	0.0710906449
+UniRef50_S9TS14	0.0710892701
+UniRef50_S9TS14|unclassified	0.0710892701
+UniRef50_UPI0003FFDF0B: hypothetical protein	0.0710889080
+UniRef50_UPI0003FFDF0B: hypothetical protein|unclassified	0.0710889080
+UniRef50_UPI0003789BBF: cold-shock protein	0.0710786514
+UniRef50_UPI0003789BBF: cold-shock protein|unclassified	0.0710786514
+UniRef50_M9RHY5	0.0710721041
+UniRef50_M9RHY5|unclassified	0.0710721041
+UniRef50_A0A033UQ79	0.0710710088
+UniRef50_A0A033UQ79|unclassified	0.0710710088
+UniRef50_R0DKE8	0.0710695574
+UniRef50_R0DKE8|unclassified	0.0710695574
+UniRef50_UPI000380F0FC: transposase	0.0710640188
+UniRef50_UPI000380F0FC: transposase|unclassified	0.0710640188
+UniRef50_W5X5G4: Adenylosuccinate synthetase	0.0710630346
+UniRef50_W5X5G4: Adenylosuccinate synthetase|unclassified	0.0710630346
+UniRef50_E4TZB8: Dihem cytochrome c	0.0710628299
+UniRef50_E4TZB8: Dihem cytochrome c|unclassified	0.0710628299
+UniRef50_B2KAU6: UDP-3-O-acylglucosamine N-acyltransferase	0.0710596954
+UniRef50_B2KAU6: UDP-3-O-acylglucosamine N-acyltransferase|unclassified	0.0710596954
+UniRef50_Q8NKC2: Enolase 1-2	0.0710574138
+UniRef50_Q8NKC2: Enolase 1-2|unclassified	0.0710574138
+UniRef50_UPI0003769C5A: hypothetical protein	0.0710383192
+UniRef50_UPI0003769C5A: hypothetical protein|unclassified	0.0710383192
+UniRef50_UPI00047E1B1C: ribokinase, partial	0.0710264093
+UniRef50_UPI00047E1B1C: ribokinase, partial|unclassified	0.0710264093
+UniRef50_A0A011RLR0	0.0710155219
+UniRef50_A0A011RLR0|unclassified	0.0710155219
+UniRef50_UPI00037939DB: hypothetical protein	0.0710142120
+UniRef50_UPI00037939DB: hypothetical protein|unclassified	0.0710142120
+UniRef50_D8K235: DNA gyrase subunit A	0.0710082117
+UniRef50_D8K235: DNA gyrase subunit A|unclassified	0.0710082117
+UniRef50_UPI0002F01DF0: hypothetical protein	0.0710066399
+UniRef50_UPI0002F01DF0: hypothetical protein|unclassified	0.0710066399
+UniRef50_UPI0002BA432A: thiamine biosynthesis protein ApbE	0.0710050023
+UniRef50_UPI0002BA432A: thiamine biosynthesis protein ApbE|unclassified	0.0710050023
+UniRef50_UPI000471F3E7: CDP-glucose 4,6-dehydratase	0.0709995469
+UniRef50_UPI000471F3E7: CDP-glucose 4,6-dehydratase|unclassified	0.0709995469
+UniRef50_W5X894: Non-canonical purine NTP pyrophosphatase	0.0709992472
+UniRef50_W5X894: Non-canonical purine NTP pyrophosphatase|unclassified	0.0709992472
+UniRef50_S9R2U3	0.0709985514
+UniRef50_S9R2U3|unclassified	0.0709985514
+UniRef50_UPI0003B57812: ABC transporter ATP-binding protein	0.0709932623
+UniRef50_UPI0003B57812: ABC transporter ATP-binding protein|unclassified	0.0709932623
+UniRef50_Q2SNJ1	0.0709902898
+UniRef50_Q2SNJ1|unclassified	0.0709902898
+UniRef50_H1KTS4: Major facilitator superfamily MFS_1	0.0709883268
+UniRef50_H1KTS4: Major facilitator superfamily MFS_1|unclassified	0.0709883268
+UniRef50_J3QAZ4	0.0709850820
+UniRef50_J3QAZ4|unclassified	0.0709850820
+UniRef50_X1UDY8: Marine sediment metagenome DNA, contig: S12H4_S04358	0.0709826688
+UniRef50_X1UDY8: Marine sediment metagenome DNA, contig: S12H4_S04358|unclassified	0.0709826688
+UniRef50_K2JEF5	0.0709820908
+UniRef50_K2JEF5|unclassified	0.0709820908
+UniRef50_UPI0003622625: hypothetical protein	0.0709817711
+UniRef50_UPI0003622625: hypothetical protein|unclassified	0.0709817711
+UniRef50_R4YAJ5: YphH protein	0.0709695390
+UniRef50_R4YAJ5: YphH protein|unclassified	0.0709695390
+UniRef50_UPI0004785553: hypothetical protein	0.0709683394
+UniRef50_UPI0004785553: hypothetical protein|unclassified	0.0709683394
+UniRef50_U6L1A7: Chromosome III, complete sequence, related (Fragment)	0.0709607099
+UniRef50_U6L1A7: Chromosome III, complete sequence, related (Fragment)|unclassified	0.0709607099
+UniRef50_V7ESE9	0.0709551198
+UniRef50_V7ESE9|unclassified	0.0709551198
+UniRef50_UPI000363B4C5: hypothetical protein	0.0709534120
+UniRef50_UPI000363B4C5: hypothetical protein|unclassified	0.0709534120
+UniRef50_UPI0002FF258B: hypothetical protein	0.0709463739
+UniRef50_UPI0002FF258B: hypothetical protein|unclassified	0.0709463739
+UniRef50_B7G7G3: Predicted protein (Fragment)	0.0709354062
+UniRef50_B7G7G3: Predicted protein (Fragment)|unclassified	0.0709354062
+UniRef50_UPI00037FEBBF: hypothetical protein	0.0709316961
+UniRef50_UPI00037FEBBF: hypothetical protein|unclassified	0.0709316961
+UniRef50_UPI0004011901: hypothetical protein	0.0709304172
+UniRef50_UPI0004011901: hypothetical protein|unclassified	0.0709304172
+UniRef50_UPI0003A147C5: glutamate dehydrogenase	0.0709278155
+UniRef50_UPI0003A147C5: glutamate dehydrogenase|unclassified	0.0709278155
+UniRef50_W9QIW0	0.0709277502
+UniRef50_W9QIW0|unclassified	0.0709277502
+UniRef50_C4L8H9: Hydroxyethylthiazole kinase	0.0709241550
+UniRef50_C4L8H9: Hydroxyethylthiazole kinase|unclassified	0.0709241550
+UniRef50_Q3A9Q7: DNA-directed RNA polymerase subunit beta	0.0709222925
+UniRef50_Q3A9Q7: DNA-directed RNA polymerase subunit beta|unclassified	0.0709222925
+UniRef50_UPI0003761618: hypothetical protein	0.0709162651
+UniRef50_UPI0003761618: hypothetical protein|unclassified	0.0709162651
+UniRef50_UPI00036D04C2: hypothetical protein	0.0709149589
+UniRef50_UPI00036D04C2: hypothetical protein|unclassified	0.0709149589
+UniRef50_UPI00047867BC: oligopeptidase PepB	0.0709140830
+UniRef50_UPI00047867BC: oligopeptidase PepB|unclassified	0.0709140830
+UniRef50_UPI00047CF42A: aldo/keto reductase	0.0709105459
+UniRef50_UPI00047CF42A: aldo/keto reductase|unclassified	0.0709105459
+UniRef50_M9RSA5	0.0709092668
+UniRef50_M9RSA5|unclassified	0.0709092668
+UniRef50_UPI00035E8373: hypothetical protein	0.0709087358
+UniRef50_UPI00035E8373: hypothetical protein|unclassified	0.0709087358
+UniRef50_UPI00046A0EE0: hypothetical protein, partial	0.0709084076
+UniRef50_UPI00046A0EE0: hypothetical protein, partial|unclassified	0.0709084076
+UniRef50_UPI0003B4FB17: succinyl-CoA synthetase subsunit alpha	0.0709081685
+UniRef50_UPI0003B4FB17: succinyl-CoA synthetase subsunit alpha|unclassified	0.0709081685
+UniRef50_A0A011NUN7: N5-carboxyaminoimidazole ribonucleotide synthase	0.0708984975
+UniRef50_A0A011NUN7: N5-carboxyaminoimidazole ribonucleotide synthase|unclassified	0.0708984975
+UniRef50_Q8IJN7: Enolase	0.0708913886
+UniRef50_Q8IJN7: Enolase|unclassified	0.0708913886
+UniRef50_UPI00046EEC97: hypothetical protein	0.0708901395
+UniRef50_UPI00046EEC97: hypothetical protein|unclassified	0.0708901395
+UniRef50_J9P690	0.0708862999
+UniRef50_J9P690|unclassified	0.0708862999
+UniRef50_UPI00037A1172: hypothetical protein	0.0708860225
+UniRef50_UPI00037A1172: hypothetical protein|unclassified	0.0708860225
+UniRef50_UPI000465A28F: patatin	0.0708823402
+UniRef50_UPI000465A28F: patatin|unclassified	0.0708823402
+UniRef50_UPI00047061CB: magnesium transporter MgtC	0.0708821291
+UniRef50_UPI00047061CB: magnesium transporter MgtC|unclassified	0.0708821291
+UniRef50_R5SU23	0.0708810181
+UniRef50_R5SU23|unclassified	0.0708810181
+UniRef50_W8RZT0: OmpA domain protein	0.0708776439
+UniRef50_W8RZT0: OmpA domain protein|unclassified	0.0708776439
+UniRef50_F8JIF1	0.0708776169
+UniRef50_F8JIF1|unclassified	0.0708776169
+UniRef50_UPI0003712282: LysR family transcriptional regulator	0.0708774084
+UniRef50_UPI0003712282: LysR family transcriptional regulator|unclassified	0.0708774084
+UniRef50_Q6MBM7: Succinyl-CoA ligase [ADP-forming] subunit beta	0.0708768013
+UniRef50_Q6MBM7: Succinyl-CoA ligase [ADP-forming] subunit beta|unclassified	0.0708768013
+UniRef50_A5WFV3: Lipocalin family protein	0.0708657210
+UniRef50_A5WFV3: Lipocalin family protein|unclassified	0.0708657210
+UniRef50_UPI0003AEB5AC: PREDICTED: basic proline-rich protein-like	0.0708642609
+UniRef50_UPI0003AEB5AC: PREDICTED: basic proline-rich protein-like|unclassified	0.0708642609
+UniRef50_UPI0003B5823D: dihydrolipoamide succinyltransferase	0.0708635953
+UniRef50_UPI0003B5823D: dihydrolipoamide succinyltransferase|unclassified	0.0708635953
+UniRef50_J2DIH9	0.0708481418
+UniRef50_J2DIH9|unclassified	0.0708481418
+UniRef50_T1JYL1	0.0708468578
+UniRef50_T1JYL1|unclassified	0.0708468578
+UniRef50_Q0B0T2: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	0.0708370146
+UniRef50_Q0B0T2: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.0708370146
+UniRef50_UPI000368B92B: hypothetical protein	0.0708347849
+UniRef50_UPI000368B92B: hypothetical protein|unclassified	0.0708347849
+UniRef50_UPI00046D9133: phosphoenolpyruvate carboxykinase	0.0708293676
+UniRef50_UPI00046D9133: phosphoenolpyruvate carboxykinase|unclassified	0.0708293676
+UniRef50_C5ZZZ3: Arginine--tRNA ligase	0.0708289025
+UniRef50_C5ZZZ3: Arginine--tRNA ligase|unclassified	0.0708289025
+UniRef50_UPI00047DAB3D: hypothetical protein	0.0708288564
+UniRef50_UPI00047DAB3D: hypothetical protein|unclassified	0.0708288564
+UniRef50_UPI0003819A1B: hypothetical protein	0.0708269082
+UniRef50_UPI0003819A1B: hypothetical protein|unclassified	0.0708269082
+UniRef50_D8I7B9: NAD-dependent nucleoside-diphosphate sugar epimerase	0.0708237342
+UniRef50_D8I7B9: NAD-dependent nucleoside-diphosphate sugar epimerase|unclassified	0.0708237342
+UniRef50_UPI00046990F2: hypothetical protein	0.0708199497
+UniRef50_UPI00046990F2: hypothetical protein|unclassified	0.0708199497
+UniRef50_UPI000361DC1A: hypothetical protein	0.0708178706
+UniRef50_UPI000361DC1A: hypothetical protein|unclassified	0.0708178706
+UniRef50_X2H9N2: Putative carboxylase	0.0708155751
+UniRef50_X2H9N2: Putative carboxylase|unclassified	0.0708155751
+UniRef50_D8U4Z5	0.0708145975
+UniRef50_D8U4Z5|unclassified	0.0708145975
+UniRef50_UPI0001D2E726: 2-nitropropane dioxygenase NPD	0.0708049475
+UniRef50_UPI0001D2E726: 2-nitropropane dioxygenase NPD|unclassified	0.0708049475
+UniRef50_B3PFU2: tRNA (cmo5U34)-methyltransferase	0.0708037465
+UniRef50_B3PFU2: tRNA (cmo5U34)-methyltransferase|unclassified	0.0708037465
+UniRef50_W8VAP2: Tail protein I	0.0707974618
+UniRef50_W8VAP2: Tail protein I|unclassified	0.0707974618
+UniRef50_B9YYT9: Phage portal protein, HK97 family	0.0707892194
+UniRef50_B9YYT9: Phage portal protein, HK97 family|unclassified	0.0707892194
+UniRef50_UPI0004643685: hypothetical protein, partial	0.0707753746
+UniRef50_UPI0004643685: hypothetical protein, partial|unclassified	0.0707753746
+UniRef50_UPI00035E9032: MULTISPECIES: hypothetical protein	0.0707715490
+UniRef50_UPI00035E9032: MULTISPECIES: hypothetical protein|unclassified	0.0707715490
+UniRef50_UPI000419EB5F: recombinase	0.0707655270
+UniRef50_UPI000419EB5F: recombinase|unclassified	0.0707655270
+UniRef50_UPI000379D6F2: hypothetical protein	0.0707638841
+UniRef50_UPI000379D6F2: hypothetical protein|unclassified	0.0707638841
+UniRef50_W2CLC7	0.0707610423
+UniRef50_W2CLC7|unclassified	0.0707610423
+UniRef50_B0U980	0.0707566723
+UniRef50_B0U980|unclassified	0.0707566723
+UniRef50_X2LZZ8	0.0707547968
+UniRef50_X2LZZ8|unclassified	0.0707547968
+UniRef50_P23354: 1-phosphofructokinase	0.0707545908
+UniRef50_P23354: 1-phosphofructokinase|unclassified	0.0707545908
+UniRef50_UPI000464689E: hypothetical protein	0.0707511442
+UniRef50_UPI000464689E: hypothetical protein|unclassified	0.0707511442
+UniRef50_UPI000378ACB4: hypothetical protein	0.0707508954
+UniRef50_UPI000378ACB4: hypothetical protein|unclassified	0.0707508954
+UniRef50_W7WZD8	0.0707494621
+UniRef50_W7WZD8|unclassified	0.0707494621
+UniRef50_UPI00032AEA34: PREDICTED: translation initiation factor IF-2-like	0.0707487036
+UniRef50_UPI00032AEA34: PREDICTED: translation initiation factor IF-2-like|unclassified	0.0707487036
+UniRef50_UPI00047BBE47: metal ABC transporter ATPase	0.0707469847
+UniRef50_UPI00047BBE47: metal ABC transporter ATPase|unclassified	0.0707469847
+UniRef50_UPI0003B72310: excinuclease ABC subunit C	0.0707459914
+UniRef50_UPI0003B72310: excinuclease ABC subunit C|unclassified	0.0707459914
+UniRef50_S9V1I2: Membrane-bound acid phosphatase	0.0707445367
+UniRef50_S9V1I2: Membrane-bound acid phosphatase|unclassified	0.0707445367
+UniRef50_E3EXC5: Flagellar hook capping protein, putative	0.0707440668
+UniRef50_E3EXC5: Flagellar hook capping protein, putative|unclassified	0.0707440668
+UniRef50_A8F426: Histone deacetylase superfamily	0.0707434820
+UniRef50_A8F426: Histone deacetylase superfamily|unclassified	0.0707434820
+UniRef50_UPI0004706A32: hypothetical protein, partial	0.0707410330
+UniRef50_UPI0004706A32: hypothetical protein, partial|unclassified	0.0707410330
+UniRef50_UPI000363D7BA: hypothetical protein	0.0707348211
+UniRef50_UPI000363D7BA: hypothetical protein|unclassified	0.0707348211
+UniRef50_G5P5B1: Potassium-transporting ATPase B chain	0.0707289493
+UniRef50_G5P5B1: Potassium-transporting ATPase B chain|unclassified	0.0707289493
+UniRef50_A0A023D808	0.0707274073
+UniRef50_A0A023D808|unclassified	0.0707274073
+UniRef50_UPI0003B583FC: metallophosphatase	0.0707177210
+UniRef50_UPI0003B583FC: metallophosphatase|unclassified	0.0707177210
+UniRef50_Q6KHP5: Glucose-1-phosphate adenylyltransferase	0.0707123098
+UniRef50_Q6KHP5: Glucose-1-phosphate adenylyltransferase|unclassified	0.0707123098
+UniRef50_F2A486	0.0707122018
+UniRef50_F2A486|unclassified	0.0707122018
+UniRef50_UPI00036E6C02: hypothetical protein	0.0707086703
+UniRef50_UPI00036E6C02: hypothetical protein|unclassified	0.0707086703
+UniRef50_E2Q7P9: Putative hydrolytic protein	0.0707080779
+UniRef50_E2Q7P9: Putative hydrolytic protein|unclassified	0.0707080779
+UniRef50_UPI000477F000: XRE family transcriptional regulator	0.0707078549
+UniRef50_UPI000477F000: XRE family transcriptional regulator|unclassified	0.0707078549
+UniRef50_Q52991	0.0707076865
+UniRef50_Q52991|unclassified	0.0707076865
+UniRef50_UPI0003693312: hypothetical protein	0.0707055106
+UniRef50_UPI0003693312: hypothetical protein|unclassified	0.0707055106
+UniRef50_UPI000474129C: hypothetical protein	0.0707037794
+UniRef50_UPI000474129C: hypothetical protein|unclassified	0.0707037794
+UniRef50_I2IDP3	0.0706989692
+UniRef50_I2IDP3|unclassified	0.0706989692
+UniRef50_W5X9L4: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0706949184
+UniRef50_W5X9L4: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0706949184
+UniRef50_U7PFQ0	0.0706937554
+UniRef50_U7PFQ0|unclassified	0.0706937554
+UniRef50_UPI0004706C8B: oxidoreductase	0.0706909792
+UniRef50_UPI0004706C8B: oxidoreductase|unclassified	0.0706909792
+UniRef50_UPI0004123ED3: hypothetical protein	0.0706748170
+UniRef50_UPI0004123ED3: hypothetical protein|unclassified	0.0706748170
+UniRef50_D5BNZ1	0.0706688140
+UniRef50_D5BNZ1|unclassified	0.0706688140
+UniRef50_UPI0002FEE775: hypothetical protein	0.0706607663
+UniRef50_UPI0002FEE775: hypothetical protein|unclassified	0.0706607663
+UniRef50_UPI0003B3248F: methionyl-tRNA synthetase	0.0706586499
+UniRef50_UPI0003B3248F: methionyl-tRNA synthetase|unclassified	0.0706586499
+UniRef50_A8G8G1	0.0706568371
+UniRef50_A8G8G1|unclassified	0.0706568371
+UniRef50_UPI000468601B: peptide ABC transporter ATPase	0.0706555358
+UniRef50_UPI000468601B: peptide ABC transporter ATPase|unclassified	0.0706555358
+UniRef50_UPI0002625DD5: ABC transporter	0.0706535186
+UniRef50_UPI0002625DD5: ABC transporter|unclassified	0.0706535186
+UniRef50_UPI00036F5D2F: hypothetical protein, partial	0.0706491732
+UniRef50_UPI00036F5D2F: hypothetical protein, partial|unclassified	0.0706491732
+UniRef50_Q8RIJ5: Peptidyl-tRNA hydrolase	0.0706408777
+UniRef50_Q8RIJ5: Peptidyl-tRNA hydrolase|unclassified	0.0706408777
+UniRef50_F0P5Y3	0.0706367160
+UniRef50_F0P5Y3|unclassified	0.0706367160
+UniRef50_S6CLF0: Rhamnulose-1-phosphate aldolase	0.0706331320
+UniRef50_S6CLF0: Rhamnulose-1-phosphate aldolase|unclassified	0.0706331320
+UniRef50_F5SVP3	0.0706307751
+UniRef50_F5SVP3|unclassified	0.0706307751
+UniRef50_UPI000361B7DF: hypothetical protein	0.0706266318
+UniRef50_UPI000361B7DF: hypothetical protein|unclassified	0.0706266318
+UniRef50_N4WKN0	0.0706261790
+UniRef50_N4WKN0|unclassified	0.0706261790
+UniRef50_F3KBP6	0.0706254464
+UniRef50_F3KBP6|unclassified	0.0706254464
+UniRef50_UPI00047BEFC2: hypothetical protein	0.0706211732
+UniRef50_UPI00047BEFC2: hypothetical protein|unclassified	0.0706211732
+UniRef50_UPI0003642305: hypothetical protein	0.0706188192
+UniRef50_UPI0003642305: hypothetical protein|unclassified	0.0706188192
+UniRef50_M4BI62	0.0706128271
+UniRef50_M4BI62|unclassified	0.0706128271
+UniRef50_E1SNC3	0.0706122304
+UniRef50_E1SNC3|unclassified	0.0706122304
+UniRef50_UPI00037FBFF6: hypothetical protein	0.0706100657
+UniRef50_UPI00037FBFF6: hypothetical protein|unclassified	0.0706100657
+UniRef50_UPI00005104BF: sodium:proton antiporter	0.0706086526
+UniRef50_UPI00005104BF: sodium:proton antiporter|unclassified	0.0706086526
+UniRef50_X4FRS1: Lipoprotein	0.0706050517
+UniRef50_X4FRS1: Lipoprotein|unclassified	0.0706050517
+UniRef50_UPI000476F9E7: maleylacetoacetate isomerase	0.0706048374
+UniRef50_UPI000476F9E7: maleylacetoacetate isomerase|unclassified	0.0706048374
+UniRef50_UPI00037DA18B: hypothetical protein	0.0705976319
+UniRef50_UPI00037DA18B: hypothetical protein|unclassified	0.0705976319
+UniRef50_Q7UQW3: Adenylyl-sulfate kinase	0.0705846687
+UniRef50_Q7UQW3: Adenylyl-sulfate kinase|unclassified	0.0705846687
+UniRef50_B9X9P2	0.0705778357
+UniRef50_B9X9P2|unclassified	0.0705778357
+UniRef50_G2I4D0	0.0705771085
+UniRef50_G2I4D0|unclassified	0.0705771085
+UniRef50_C5CP92: TRAP C4-dicarboxylate transport system permease DctM subunit	0.0705757966
+UniRef50_C5CP92: TRAP C4-dicarboxylate transport system permease DctM subunit|unclassified	0.0705757966
+UniRef50_UPI00037C9136: hypothetical protein	0.0705721220
+UniRef50_UPI00037C9136: hypothetical protein|unclassified	0.0705721220
+UniRef50_B1ZVD6: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.0705718819
+UniRef50_B1ZVD6: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.0705718819
+UniRef50_M1QZS4	0.0705654992
+UniRef50_M1QZS4|unclassified	0.0705654992
+UniRef50_A5CWC7	0.0705635700
+UniRef50_A5CWC7|unclassified	0.0705635700
+UniRef50_C5QNJ7	0.0705631140
+UniRef50_C5QNJ7|unclassified	0.0705631140
+UniRef50_P50852: PTS system mannitol-specific EIICB component	0.0705620837
+UniRef50_P50852: PTS system mannitol-specific EIICB component|unclassified	0.0705620837
+UniRef50_K0WK83: ATPase	0.0705604708
+UniRef50_K0WK83: ATPase|unclassified	0.0705604708
+UniRef50_UPI000476B14D: hypothetical protein	0.0705599610
+UniRef50_UPI000476B14D: hypothetical protein|unclassified	0.0705599610
+UniRef50_UPI000462FB27: hypothetical protein, partial	0.0705587180
+UniRef50_UPI000462FB27: hypothetical protein, partial|unclassified	0.0705587180
+UniRef50_O66534: Riboflavin biosynthesis protein RibD	0.0705552882
+UniRef50_O66534: Riboflavin biosynthesis protein RibD|unclassified	0.0705552882
+UniRef50_UPI0004434514: PREDICTED: succinate--hydroxymethylglutarate CoA-transferase isoform X2	0.0705423821
+UniRef50_UPI0004434514: PREDICTED: succinate--hydroxymethylglutarate CoA-transferase isoform X2|unclassified	0.0705423821
+UniRef50_I1YJ35: Type IV pilus biogenesis protein PilO	0.0705404420
+UniRef50_I1YJ35: Type IV pilus biogenesis protein PilO|unclassified	0.0705404420
+UniRef50_A9UXI5: Predicted protein	0.0705373057
+UniRef50_A9UXI5: Predicted protein|unclassified	0.0705373057
+UniRef50_UPI00035E8B48: hypothetical protein	0.0705362914
+UniRef50_UPI00035E8B48: hypothetical protein|unclassified	0.0705362914
+UniRef50_UPI00037F4F10: hypothetical protein	0.0705356408
+UniRef50_UPI00037F4F10: hypothetical protein|unclassified	0.0705356408
+UniRef50_UPI00040B08A2: hypothetical protein	0.0705356196
+UniRef50_UPI00040B08A2: hypothetical protein|unclassified	0.0705356196
+UniRef50_V4JD65	0.0705347555
+UniRef50_V4JD65|unclassified	0.0705347555
+UniRef50_UPI00047EDCF7: hypothetical protein	0.0705326703
+UniRef50_UPI00047EDCF7: hypothetical protein|unclassified	0.0705326703
+UniRef50_UPI0003B53675: sugar ABC transporter permease	0.0705319908
+UniRef50_UPI0003B53675: sugar ABC transporter permease|unclassified	0.0705319908
+UniRef50_UPI00041F073B: AraC family transcriptional regulator	0.0705291904
+UniRef50_UPI00041F073B: AraC family transcriptional regulator|unclassified	0.0705291904
+UniRef50_UPI00034B83FC: hypothetical protein	0.0705279046
+UniRef50_UPI00034B83FC: hypothetical protein|unclassified	0.0705279046
+UniRef50_UPI0003FFD344: membrane protein	0.0705264096
+UniRef50_UPI0003FFD344: membrane protein|unclassified	0.0705264096
+UniRef50_UPI0002DC88A2: hypothetical protein	0.0705141868
+UniRef50_UPI0002DC88A2: hypothetical protein|unclassified	0.0705141868
+UniRef50_E3F294: Probable exopolysaccharide synthesis protein	0.0705091826
+UniRef50_E3F294: Probable exopolysaccharide synthesis protein|unclassified	0.0705091826
+UniRef50_Q4JMN7: Predicted flagellar hook capping protein	0.0705068733
+UniRef50_Q4JMN7: Predicted flagellar hook capping protein|unclassified	0.0705068733
+UniRef50_C8S1Y6: Lytic transglycosylase catalytic	0.0705063140
+UniRef50_C8S1Y6: Lytic transglycosylase catalytic|unclassified	0.0705063140
+UniRef50_Q3JEG8: Type 4 fimbrial biogenesis protein PilN	0.0705052518
+UniRef50_Q3JEG8: Type 4 fimbrial biogenesis protein PilN|unclassified	0.0705052518
+UniRef50_UPI0003B73C04: ABC transporter	0.0705026232
+UniRef50_UPI0003B73C04: ABC transporter|unclassified	0.0705026232
+UniRef50_UPI000479DFF1: hypothetical protein	0.0705010702
+UniRef50_UPI000479DFF1: hypothetical protein|unclassified	0.0705010702
+UniRef50_UPI00046D7021: hypothetical protein	0.0704952508
+UniRef50_UPI00046D7021: hypothetical protein|unclassified	0.0704952508
+UniRef50_X6L4P2	0.0704944163
+UniRef50_X6L4P2|unclassified	0.0704944163
+UniRef50_Q3JIX6: WbpN	0.0704930138
+UniRef50_Q3JIX6: WbpN|unclassified	0.0704930138
+UniRef50_UPI0004711116: hypothetical protein	0.0704912809
+UniRef50_UPI0004711116: hypothetical protein|unclassified	0.0704912809
+UniRef50_B1HWM5	0.0704875217
+UniRef50_B1HWM5|unclassified	0.0704875217
+UniRef50_UPI00031AADB4: hypothetical protein	0.0704776179
+UniRef50_UPI00031AADB4: hypothetical protein|unclassified	0.0704776179
+UniRef50_UPI000346A67C: hypothetical protein	0.0704755553
+UniRef50_UPI000346A67C: hypothetical protein|unclassified	0.0704755553
+UniRef50_A0A024KBT1: Mlr4377 protein	0.0704710654
+UniRef50_A0A024KBT1: Mlr4377 protein|unclassified	0.0704710654
+UniRef50_UPI000467BE0C: hypothetical protein	0.0704703321
+UniRef50_UPI000467BE0C: hypothetical protein|unclassified	0.0704703321
+UniRef50_UPI00028A2A62: sugar ABC transporter permease	0.0704691933
+UniRef50_UPI00028A2A62: sugar ABC transporter permease|unclassified	0.0704691933
+UniRef50_UPI0003594E8C: PREDICTED: CREB-regulated transcription coactivator 2	0.0704683336
+UniRef50_UPI0003594E8C: PREDICTED: CREB-regulated transcription coactivator 2|unclassified	0.0704683336
+UniRef50_U6JYN9	0.0704663520
+UniRef50_U6JYN9|unclassified	0.0704663520
+UniRef50_B1YHH7: Na+/H+ antiporter MnhB subunit-related protein	0.0704640800
+UniRef50_B1YHH7: Na+/H+ antiporter MnhB subunit-related protein|unclassified	0.0704640800
+UniRef50_B8CX21: 2-isopropylmalate synthase	0.0704634479
+UniRef50_B8CX21: 2-isopropylmalate synthase|unclassified	0.0704634479
+UniRef50_UPI000465CCBE: hypothetical protein	0.0704552078
+UniRef50_UPI000465CCBE: hypothetical protein|unclassified	0.0704552078
+UniRef50_UPI00040AF5FB: oligoendopeptidase F	0.0704547216
+UniRef50_UPI00040AF5FB: oligoendopeptidase F|unclassified	0.0704547216
+UniRef50_UPI00037905B5: hypothetical protein	0.0704514692
+UniRef50_UPI00037905B5: hypothetical protein|unclassified	0.0704514692
+UniRef50_G4T171	0.0704506359
+UniRef50_G4T171|unclassified	0.0704506359
+UniRef50_A5UT23: Probable dual-specificity RNA methyltransferase RlmN	0.0704485637
+UniRef50_A5UT23: Probable dual-specificity RNA methyltransferase RlmN|unclassified	0.0704485637
+UniRef50_UPI00037B8173: hypothetical protein	0.0704473520
+UniRef50_UPI00037B8173: hypothetical protein|unclassified	0.0704473520
+UniRef50_X1Y120	0.0704455946
+UniRef50_X1Y120|unclassified	0.0704455946
+UniRef50_S5V484: Formate-dependent nitrite reductase complex subunit NrfG	0.0704405082
+UniRef50_S5V484: Formate-dependent nitrite reductase complex subunit NrfG|unclassified	0.0704405082
+UniRef50_UPI000463EA45: hypothetical protein	0.0704244092
+UniRef50_UPI000463EA45: hypothetical protein|unclassified	0.0704244092
+UniRef50_UPI0003740950: hypothetical protein	0.0704220534
+UniRef50_UPI0003740950: hypothetical protein|unclassified	0.0704220534
+UniRef50_S2RXP6: LPXTG-motif cell wall anchor domain-containing protein	0.0704172234
+UniRef50_S2RXP6: LPXTG-motif cell wall anchor domain-containing protein|unclassified	0.0704172234
+UniRef50_UPI0004764D00: bicyclomycin resistance protein	0.0704152474
+UniRef50_UPI0004764D00: bicyclomycin resistance protein|unclassified	0.0704152474
+UniRef50_UPI0003743283: hypothetical protein	0.0704082179
+UniRef50_UPI0003743283: hypothetical protein|unclassified	0.0704082179
+UniRef50_P42765: 3-ketoacyl-CoA thiolase, mitochondrial	0.0703959561
+UniRef50_P42765: 3-ketoacyl-CoA thiolase, mitochondrial|unclassified	0.0703959561
+UniRef50_UPI0004743CB6: hypothetical protein, partial	0.0703919350
+UniRef50_UPI0004743CB6: hypothetical protein, partial|unclassified	0.0703919350
+UniRef50_D6S7S7: Lipoprotein	0.0703918880
+UniRef50_D6S7S7: Lipoprotein|unclassified	0.0703918880
+UniRef50_G1P8T6	0.0703841503
+UniRef50_G1P8T6|unclassified	0.0703841503
+UniRef50_UPI00037BDFDA: hypothetical protein	0.0703775039
+UniRef50_UPI00037BDFDA: hypothetical protein|unclassified	0.0703775039
+UniRef50_C4XPA8: 2-isopropylmalate synthase	0.0703750234
+UniRef50_C4XPA8: 2-isopropylmalate synthase|unclassified	0.0703750234
+UniRef50_U3T4I1: Phosphate ABC transporter periplasmic substrate-binding protein	0.0703715810
+UniRef50_U3T4I1: Phosphate ABC transporter periplasmic substrate-binding protein|unclassified	0.0703715810
+UniRef50_C6C0Q4	0.0703686498
+UniRef50_C6C0Q4|unclassified	0.0703686498
+UniRef50_F4CX14: FAD dependent oxidoreductase	0.0703681623
+UniRef50_F4CX14: FAD dependent oxidoreductase|unclassified	0.0703681623
+UniRef50_UPI00031D36ED: hypothetical protein	0.0703651683
+UniRef50_UPI00031D36ED: hypothetical protein|unclassified	0.0703651683
+UniRef50_X1L8B7: Marine sediment metagenome DNA, contig: S06H3_C00793 (Fragment)	0.0703651564
+UniRef50_X1L8B7: Marine sediment metagenome DNA, contig: S06H3_C00793 (Fragment)|unclassified	0.0703651564
+UniRef50_A9WSL1: Pyoverdine biosynthesis protein	0.0703646366
+UniRef50_A9WSL1: Pyoverdine biosynthesis protein|unclassified	0.0703646366
+UniRef50_R5T3N7: Lipoprotein	0.0703567841
+UniRef50_R5T3N7: Lipoprotein|unclassified	0.0703567841
+UniRef50_D7WZT7: Ankyrin	0.0703561222
+UniRef50_D7WZT7: Ankyrin|unclassified	0.0703561222
+UniRef50_UPI00046DE63E: PREDICTED: peroxisomal (S)-2-hydroxy-acid oxidase GLO3-like	0.0703528075
+UniRef50_UPI00046DE63E: PREDICTED: peroxisomal (S)-2-hydroxy-acid oxidase GLO3-like|unclassified	0.0703528075
+UniRef50_K2IVP6: OmpA/MotB protein	0.0703411742
+UniRef50_K2IVP6: OmpA/MotB protein|unclassified	0.0703411742
+UniRef50_U5C7Q5	0.0703373493
+UniRef50_U5C7Q5|unclassified	0.0703373493
+UniRef50_UPI0004007A9F: hypothetical protein	0.0703337192
+UniRef50_UPI0004007A9F: hypothetical protein|unclassified	0.0703337192
+UniRef50_UPI00030A44FB: hypothetical protein	0.0703288400
+UniRef50_UPI00030A44FB: hypothetical protein|unclassified	0.0703288400
+UniRef50_UPI00034BE4A8: hypothetical protein	0.0703262488
+UniRef50_UPI00034BE4A8: hypothetical protein|unclassified	0.0703262488
+UniRef50_UPI0001F2A0F6: membrane dipeptidase GliJ	0.0703245949
+UniRef50_UPI0001F2A0F6: membrane dipeptidase GliJ|unclassified	0.0703245949
+UniRef50_F0VW40: TraX family protein	0.0703181206
+UniRef50_F0VW40: TraX family protein|unclassified	0.0703181206
+UniRef50_UPI000379EE1C: hypothetical protein	0.0703154437
+UniRef50_UPI000379EE1C: hypothetical protein|unclassified	0.0703154437
+UniRef50_F5ZCJ4: UPF0502 protein ambt_06030	0.0703119903
+UniRef50_F5ZCJ4: UPF0502 protein ambt_06030|unclassified	0.0703119903
+UniRef50_G3ZK67: Putative Mg chelatase-like protein	0.0703095296
+UniRef50_G3ZK67: Putative Mg chelatase-like protein|unclassified	0.0703095296
+UniRef50_UPI00041E3245: hypothetical protein	0.0703003492
+UniRef50_UPI00041E3245: hypothetical protein|unclassified	0.0703003492
+UniRef50_Q96EM0: Trans-L-3-hydroxyproline dehydratase	0.0702993096
+UniRef50_Q96EM0: Trans-L-3-hydroxyproline dehydratase|unclassified	0.0702993096
+UniRef50_UPI00036CBEE7: hypothetical protein	0.0702913986
+UniRef50_UPI00036CBEE7: hypothetical protein|unclassified	0.0702913986
+UniRef50_Q493B8: Ribonuclease HII	0.0702876932
+UniRef50_Q493B8: Ribonuclease HII|unclassified	0.0702876932
+UniRef50_UPI00035DB5C2: hypothetical protein	0.0702871704
+UniRef50_UPI00035DB5C2: hypothetical protein|unclassified	0.0702871704
+UniRef50_D3P003: Segregation and condensation protein A	0.0702861385
+UniRef50_D3P003: Segregation and condensation protein A|unclassified	0.0702861385
+UniRef50_Q4USU5	0.0702826861
+UniRef50_Q4USU5|unclassified	0.0702826861
+UniRef50_UPI00036812B4: hypothetical protein	0.0702733133
+UniRef50_UPI00036812B4: hypothetical protein|unclassified	0.0702733133
+UniRef50_UPI000350A87A	0.0702717999
+UniRef50_UPI000350A87A|unclassified	0.0702717999
+UniRef50_UPI0004737048: GDP-fucose synthetase	0.0702705224
+UniRef50_UPI0004737048: GDP-fucose synthetase|unclassified	0.0702705224
+UniRef50_Q9I024	0.0702690334
+UniRef50_Q9I024|unclassified	0.0702690334
+UniRef50_UPI000225F71E: secretion protein HlyD	0.0702669311
+UniRef50_UPI000225F71E: secretion protein HlyD|unclassified	0.0702669311
+UniRef50_K2E021: Transglycosylase SLT protein	0.0702668767
+UniRef50_K2E021: Transglycosylase SLT protein|unclassified	0.0702668767
+UniRef50_UPI000476018A: deoxyribodipyrimidine photolyase	0.0702648474
+UniRef50_UPI000476018A: deoxyribodipyrimidine photolyase|unclassified	0.0702648474
+UniRef50_UPI0003616DE7: hypothetical protein	0.0702641537
+UniRef50_UPI0003616DE7: hypothetical protein|unclassified	0.0702641537
+UniRef50_F7RX28	0.0702617075
+UniRef50_F7RX28|unclassified	0.0702617075
+UniRef50_UPI0003B478CF: ribonuclease T2	0.0702578699
+UniRef50_UPI0003B478CF: ribonuclease T2|unclassified	0.0702578699
+UniRef50_S7U1N7	0.0702555657
+UniRef50_S7U1N7|unclassified	0.0702555657
+UniRef50_UPI0004768782: hypothetical protein	0.0702554888
+UniRef50_UPI0004768782: hypothetical protein|unclassified	0.0702554888
+UniRef50_L0R6A3	0.0702539851
+UniRef50_L0R6A3|unclassified	0.0702539851
+UniRef50_UPI0003779CEE: hypothetical protein	0.0702495100
+UniRef50_UPI0003779CEE: hypothetical protein|unclassified	0.0702495100
+UniRef50_UPI0003B7B122: malonyl CoA-ACP transacylase	0.0702468109
+UniRef50_UPI0003B7B122: malonyl CoA-ACP transacylase|unclassified	0.0702468109
+UniRef50_A5D654: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	0.0702418505
+UniRef50_A5D654: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.0702418505
+UniRef50_A1TZQ0: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase	0.0702393178
+UniRef50_A1TZQ0: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|unclassified	0.0702393178
+UniRef50_UPI00035D8896: hypothetical protein	0.0702358814
+UniRef50_UPI00035D8896: hypothetical protein|unclassified	0.0702358814
+UniRef50_Q0BVF4: Hydroxyethylthiazole kinase	0.0702285745
+UniRef50_Q0BVF4: Hydroxyethylthiazole kinase|unclassified	0.0702285745
+UniRef50_Q6FDN0: UPF0276 protein ACIAD0933	0.0702259776
+UniRef50_Q6FDN0: UPF0276 protein ACIAD0933|unclassified	0.0702259776
+UniRef50_UPI00035A12D2: PREDICTED: versicolorin reductase-like	0.0702243714
+UniRef50_UPI00035A12D2: PREDICTED: versicolorin reductase-like|unclassified	0.0702243714
+UniRef50_A2SFU2: Leucyl/phenylalanyl-tRNA--protein transferase	0.0702234666
+UniRef50_A2SFU2: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.0702234666
+UniRef50_U6MWK3	0.0702164023
+UniRef50_U6MWK3|unclassified	0.0702164023
+UniRef50_O51264: Oligoendopeptidase F homolog	0.0702159342
+UniRef50_O51264: Oligoendopeptidase F homolog|unclassified	0.0702159342
+UniRef50_UPI000462AB89: ABC transporter ATP-binding protein	0.0702142294
+UniRef50_UPI000462AB89: ABC transporter ATP-binding protein|unclassified	0.0702142294
+UniRef50_N0AJ25: Rhodanese-like domain protein	0.0702105281
+UniRef50_N0AJ25: Rhodanese-like domain protein|unclassified	0.0702105281
+UniRef50_UPI00037939BE: hypothetical protein	0.0702099622
+UniRef50_UPI00037939BE: hypothetical protein|unclassified	0.0702099622
+UniRef50_UPI00046697F0: hypothetical protein	0.0702047480
+UniRef50_UPI00046697F0: hypothetical protein|unclassified	0.0702047480
+UniRef50_UPI0003689EE1: hypothetical protein	0.0701987196
+UniRef50_UPI0003689EE1: hypothetical protein|unclassified	0.0701987196
+UniRef50_UPI00037DABB6: hypothetical protein	0.0701987003
+UniRef50_UPI00037DABB6: hypothetical protein|unclassified	0.0701987003
+UniRef50_D6Y1D8: LmbE family protein	0.0701907108
+UniRef50_D6Y1D8: LmbE family protein|unclassified	0.0701907108
+UniRef50_O83491: Glucose-6-phosphate 1-dehydrogenase	0.0701860428
+UniRef50_O83491: Glucose-6-phosphate 1-dehydrogenase|unclassified	0.0701860428
+UniRef50_E4ZB05	0.0701849978
+UniRef50_E4ZB05|unclassified	0.0701849978
+UniRef50_V8K662: Phage antirepressor	0.0701845688
+UniRef50_V8K662: Phage antirepressor|unclassified	0.0701845688
+UniRef50_UPI000478AB20: ABC transporter ATP-binding protein	0.0701844203
+UniRef50_UPI000478AB20: ABC transporter ATP-binding protein|unclassified	0.0701844203
+UniRef50_E3BEY5	0.0701764327
+UniRef50_E3BEY5|unclassified	0.0701764327
+UniRef50_D3DD93	0.0701641501
+UniRef50_D3DD93|unclassified	0.0701641501
+UniRef50_T1BKR4: DNA repair protein RadA (Fragment)	0.0701625102
+UniRef50_T1BKR4: DNA repair protein RadA (Fragment)|unclassified	0.0701625102
+UniRef50_UPI000347F016: hypothetical protein	0.0701534704
+UniRef50_UPI000347F016: hypothetical protein|unclassified	0.0701534704
+UniRef50_UPI0004647202: pyridine nucleotide-disulfide oxidoreductase	0.0701451729
+UniRef50_UPI0004647202: pyridine nucleotide-disulfide oxidoreductase|unclassified	0.0701451729
+UniRef50_UPI00047875CB: hypothetical protein	0.0701408898
+UniRef50_UPI00047875CB: hypothetical protein|unclassified	0.0701408898
+UniRef50_UPI00034662A5: hypothetical protein	0.0701395819
+UniRef50_UPI00034662A5: hypothetical protein|unclassified	0.0701395819
+UniRef50_F8FJ58	0.0701395073
+UniRef50_F8FJ58|unclassified	0.0701395073
+UniRef50_R5ITX4: UvrABC system protein C	0.0701375395
+UniRef50_R5ITX4: UvrABC system protein C|unclassified	0.0701375395
+UniRef50_UPI0003099314: hypothetical protein	0.0701361704
+UniRef50_UPI0003099314: hypothetical protein|unclassified	0.0701361704
+UniRef50_Q8CBJ2	0.0701322284
+UniRef50_Q8CBJ2|unclassified	0.0701322284
+UniRef50_UPI0003B3CCC8: alpha/beta hydrolase	0.0701273056
+UniRef50_UPI0003B3CCC8: alpha/beta hydrolase|unclassified	0.0701273056
+UniRef50_F5XWG5: 1-aminocyclopropane-1-carboxylate deaminase-like protein	0.0701249780
+UniRef50_F5XWG5: 1-aminocyclopropane-1-carboxylate deaminase-like protein|unclassified	0.0701249780
+UniRef50_D6XZ47	0.0701241076
+UniRef50_D6XZ47|unclassified	0.0701241076
+UniRef50_UPI00030B99B8: hypothetical protein	0.0701158712
+UniRef50_UPI00030B99B8: hypothetical protein|unclassified	0.0701158712
+UniRef50_V9WRM8	0.0701124384
+UniRef50_V9WRM8|unclassified	0.0701124384
+UniRef50_A6ULK4	0.0701073486
+UniRef50_A6ULK4|unclassified	0.0701073486
+UniRef50_UPI00037D4B9C: pilus assembly protein PilN	0.0701071622
+UniRef50_UPI00037D4B9C: pilus assembly protein PilN|unclassified	0.0701071622
+UniRef50_UPI00016C0F2C: oligopeptide ABC transporter ATP-binding protein	0.0701014631
+UniRef50_UPI00016C0F2C: oligopeptide ABC transporter ATP-binding protein|unclassified	0.0701014631
+UniRef50_UPI00037279E3: hypothetical protein	0.0701011976
+UniRef50_UPI00037279E3: hypothetical protein|unclassified	0.0701011976
+UniRef50_UPI0003819118: hypothetical protein	0.0700960117
+UniRef50_UPI0003819118: hypothetical protein|unclassified	0.0700960117
+UniRef50_Q1IW67: PPC, peptidase containing PKD repeats	0.0700944139
+UniRef50_Q1IW67: PPC, peptidase containing PKD repeats|unclassified	0.0700944139
+UniRef50_UPI0003C11B5B: PREDICTED: glycerate kinase-like	0.0700930409
+UniRef50_UPI0003C11B5B: PREDICTED: glycerate kinase-like|unclassified	0.0700930409
+UniRef50_Q2G3T3: ATP-dependent Clp protease proteolytic subunit	0.0700897752
+UniRef50_Q2G3T3: ATP-dependent Clp protease proteolytic subunit|unclassified	0.0700897752
+UniRef50_A1T018: DTW domain containing protein	0.0700860672
+UniRef50_A1T018: DTW domain containing protein|unclassified	0.0700860672
+UniRef50_UPI000377B35F: hypothetical protein	0.0700830865
+UniRef50_UPI000377B35F: hypothetical protein|unclassified	0.0700830865
+UniRef50_W0AQ09: IS66 family element, transposase	0.0700804777
+UniRef50_W0AQ09: IS66 family element, transposase|unclassified	0.0700804777
+UniRef50_O02604: Bifunctional dihydrofolate reductase-thymidylate synthase	0.0700784082
+UniRef50_O02604: Bifunctional dihydrofolate reductase-thymidylate synthase|unclassified	0.0700784082
+UniRef50_UPI0004638C41: D-alanyl-D-alanine carboxypeptidase	0.0700770931
+UniRef50_UPI0004638C41: D-alanyl-D-alanine carboxypeptidase|unclassified	0.0700770931
+UniRef50_K4KTW6	0.0700655742
+UniRef50_K4KTW6|unclassified	0.0700655742
+UniRef50_UPI00036CB5C7: hypothetical protein	0.0700608473
+UniRef50_UPI00036CB5C7: hypothetical protein|unclassified	0.0700608473
+UniRef50_UPI000362D38D: hypothetical protein	0.0700531976
+UniRef50_UPI000362D38D: hypothetical protein|unclassified	0.0700531976
+UniRef50_R9K9U7	0.0700497702
+UniRef50_R9K9U7|unclassified	0.0700497702
+UniRef50_UPI00036F6172: hypothetical protein	0.0700480079
+UniRef50_UPI00036F6172: hypothetical protein|unclassified	0.0700480079
+UniRef50_UPI0003719458: hypothetical protein	0.0700437050
+UniRef50_UPI0003719458: hypothetical protein|unclassified	0.0700437050
+UniRef50_UPI0003450375: hypothetical protein	0.0700435003
+UniRef50_UPI0003450375: hypothetical protein|unclassified	0.0700435003
+UniRef50_UPI00037DFC68: hypothetical protein	0.0700421765
+UniRef50_UPI00037DFC68: hypothetical protein|unclassified	0.0700421765
+UniRef50_UPI0003B2E2AE: GntR family transcriptional regulator	0.0700411993
+UniRef50_UPI0003B2E2AE: GntR family transcriptional regulator|unclassified	0.0700411993
+UniRef50_UPI00035F65B3: hypothetical protein	0.0700395303
+UniRef50_UPI00035F65B3: hypothetical protein|unclassified	0.0700395303
+UniRef50_X2LJX5	0.0700384466
+UniRef50_X2LJX5|unclassified	0.0700384466
+UniRef50_UPI0003F76EEA: hypothetical protein	0.0700373396
+UniRef50_UPI0003F76EEA: hypothetical protein|unclassified	0.0700373396
+UniRef50_UPI0003B70CA9: anti-anti-sigma factor	0.0700294121
+UniRef50_UPI0003B70CA9: anti-anti-sigma factor|unclassified	0.0700294121
+UniRef50_A0A037SY47	0.0700289903
+UniRef50_A0A037SY47|unclassified	0.0700289903
+UniRef50_E3YWW6: Peptidoglycan binding protein	0.0700286836
+UniRef50_E3YWW6: Peptidoglycan binding protein|unclassified	0.0700286836
+UniRef50_UPI0003B77D2D: DNA repair protein RadA	0.0700195119
+UniRef50_UPI0003B77D2D: DNA repair protein RadA|unclassified	0.0700195119
+UniRef50_G2KT27: DSBA-like thioredoxin domain protein	0.0700183539
+UniRef50_G2KT27: DSBA-like thioredoxin domain protein|unclassified	0.0700183539
+UniRef50_UPI000248C2C2: electron transfer flavoprotein, alpha subunit/FixB family protein	0.0700180663
+UniRef50_UPI000248C2C2: electron transfer flavoprotein, alpha subunit/FixB family protein|unclassified	0.0700180663
+UniRef50_B0TB90: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	0.0700163071
+UniRef50_B0TB90: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.0700163071
+UniRef50_UPI00037C383E: hypothetical protein	0.0700156833
+UniRef50_UPI00037C383E: hypothetical protein|unclassified	0.0700156833
+UniRef50_B8DRU2: Dual-specificity RNA methyltransferase RlmN	0.0700142854
+UniRef50_B8DRU2: Dual-specificity RNA methyltransferase RlmN|unclassified	0.0700142854
+UniRef50_UPI000328F4AE: PREDICTED: extensin-like	0.0700139451
+UniRef50_UPI000328F4AE: PREDICTED: extensin-like|unclassified	0.0700139451
+UniRef50_UPI000379B560: hypothetical protein	0.0700084319
+UniRef50_UPI000379B560: hypothetical protein|unclassified	0.0700084319
+UniRef50_UPI0003B5CDBA: thymidylate kinase	0.0700035778
+UniRef50_UPI0003B5CDBA: thymidylate kinase|unclassified	0.0700035778
+UniRef50_W0T788	0.0699964487
+UniRef50_W0T788|unclassified	0.0699964487
+UniRef50_S6FSN2	0.0699953299
+UniRef50_S6FSN2|unclassified	0.0699953299
+UniRef50_K0D0X5	0.0699866818
+UniRef50_K0D0X5|unclassified	0.0699866818
+UniRef50_M4VST5	0.0699865422
+UniRef50_M4VST5|unclassified	0.0699865422
+UniRef50_UPI00047696A8: geranylgeranyl pyrophosphate synthase	0.0699841136
+UniRef50_UPI00047696A8: geranylgeranyl pyrophosphate synthase|unclassified	0.0699841136
+UniRef50_Q3J7A3: Adenylate kinase	0.0699840544
+UniRef50_Q3J7A3: Adenylate kinase|unclassified	0.0699840544
+UniRef50_A1AXI6: tRNA (cmo5U34)-methyltransferase	0.0699779897
+UniRef50_A1AXI6: tRNA (cmo5U34)-methyltransferase|unclassified	0.0699779897
+UniRef50_UPI000370022D: hypothetical protein	0.0699723516
+UniRef50_UPI000370022D: hypothetical protein|unclassified	0.0699723516
+UniRef50_B3R0E5: Cytidylate kinase	0.0699703312
+UniRef50_B3R0E5: Cytidylate kinase|unclassified	0.0699703312
+UniRef50_UPI000374F72F: hypothetical protein	0.0699659953
+UniRef50_UPI000374F72F: hypothetical protein|unclassified	0.0699659953
+UniRef50_W0YUV5	0.0699656827
+UniRef50_W0YUV5|unclassified	0.0699656827
+UniRef50_UPI00045610A7: hypothetical protein PFL1_00595	0.0699632086
+UniRef50_UPI00045610A7: hypothetical protein PFL1_00595|unclassified	0.0699632086
+UniRef50_UPI000255E8B6: molybdopterin molybdochelatase	0.0699627293
+UniRef50_UPI000255E8B6: molybdopterin molybdochelatase|unclassified	0.0699627293
+UniRef50_UPI00037F445F: hypothetical protein	0.0699606742
+UniRef50_UPI00037F445F: hypothetical protein|unclassified	0.0699606742
+UniRef50_UPI0003FA24E5: hypothetical protein	0.0699605745
+UniRef50_UPI0003FA24E5: hypothetical protein|unclassified	0.0699605745
+UniRef50_UPI0003B71B05: sodium:proton antiporter	0.0699558762
+UniRef50_UPI0003B71B05: sodium:proton antiporter|unclassified	0.0699558762
+UniRef50_Q2SQ99	0.0699492550
+UniRef50_Q2SQ99|unclassified	0.0699492550
+UniRef50_Q18C71: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.0699449209
+UniRef50_Q18C71: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.0699449209
+UniRef50_I0ILX3: Transposase, IS605 OrfB family	0.0699429911
+UniRef50_I0ILX3: Transposase, IS605 OrfB family|unclassified	0.0699429911
+UniRef50_UPI0003F83AAC: hypothetical protein	0.0699353537
+UniRef50_UPI0003F83AAC: hypothetical protein|unclassified	0.0699353537
+UniRef50_UPI0003678CB4: hypothetical protein	0.0699273744
+UniRef50_UPI0003678CB4: hypothetical protein|unclassified	0.0699273744
+UniRef50_UPI0004792999: hypothetical protein	0.0699262281
+UniRef50_UPI0004792999: hypothetical protein|unclassified	0.0699262281
+UniRef50_Q82MV1: Aliphatic sulfonates import ATP-binding protein SsuB 1	0.0699253122
+UniRef50_Q82MV1: Aliphatic sulfonates import ATP-binding protein SsuB 1|unclassified	0.0699253122
+UniRef50_L0KB09: Putative membrane protein	0.0699244712
+UniRef50_L0KB09: Putative membrane protein|unclassified	0.0699244712
+UniRef50_K0S5G9	0.0699223123
+UniRef50_K0S5G9|unclassified	0.0699223123
+UniRef50_UPI00041DE289: ABC transporter	0.0699143323
+UniRef50_UPI00041DE289: ABC transporter|unclassified	0.0699143323
+UniRef50_UPI000364601F: hypothetical protein, partial	0.0699051363
+UniRef50_UPI000364601F: hypothetical protein, partial|unclassified	0.0699051363
+UniRef50_A0A058ZJM3	0.0698998899
+UniRef50_A0A058ZJM3|unclassified	0.0698998899
+UniRef50_UPI0003A3F935: RNA polymerase sigma factor	0.0698963045
+UniRef50_UPI0003A3F935: RNA polymerase sigma factor|unclassified	0.0698963045
+UniRef50_UPI000289C9AC: AraC family transcriptional regulator	0.0698921970
+UniRef50_UPI000289C9AC: AraC family transcriptional regulator|unclassified	0.0698921970
+UniRef50_T0VIX3	0.0698841497
+UniRef50_T0VIX3|unclassified	0.0698841497
+UniRef50_O29969: Peroxiredoxin	0.0698760909
+UniRef50_O29969: Peroxiredoxin|unclassified	0.0698760909
+UniRef50_UPI0004701AA9: hypothetical protein	0.0698478935
+UniRef50_UPI0004701AA9: hypothetical protein|unclassified	0.0698478935
+UniRef50_UPI00039DF410: haloacid dehalogenase	0.0698476597
+UniRef50_UPI00039DF410: haloacid dehalogenase|unclassified	0.0698476597
+UniRef50_UPI0003B5DE0B: ABC transporter substrate-binding protein	0.0698473999
+UniRef50_UPI0003B5DE0B: ABC transporter substrate-binding protein|unclassified	0.0698473999
+UniRef50_UPI000467BE0B: ABC transporter permease	0.0698471983
+UniRef50_UPI000467BE0B: ABC transporter permease|unclassified	0.0698471983
+UniRef50_A0A059IMT9	0.0698465950
+UniRef50_A0A059IMT9|unclassified	0.0698465950
+UniRef50_I4CN08: Diguanylate cyclase	0.0698414730
+UniRef50_I4CN08: Diguanylate cyclase|unclassified	0.0698414730
+UniRef50_G6CF62	0.0698386705
+UniRef50_G6CF62|unclassified	0.0698386705
+UniRef50_UPI000369F60E: hypothetical protein	0.0698320767
+UniRef50_UPI000369F60E: hypothetical protein|unclassified	0.0698320767
+UniRef50_Q4FLQ2: Glycerol-3-phosphate acyltransferase	0.0698253503
+UniRef50_Q4FLQ2: Glycerol-3-phosphate acyltransferase|unclassified	0.0698253503
+UniRef50_E2PFW2: Pirin family protein	0.0698247540
+UniRef50_E2PFW2: Pirin family protein|unclassified	0.0698247540
+UniRef50_B5GQT5	0.0698236969
+UniRef50_B5GQT5|unclassified	0.0698236969
+UniRef50_D8PTY6	0.0698228020
+UniRef50_D8PTY6|unclassified	0.0698228020
+UniRef50_B1GZA3: Adenylate kinase	0.0698164785
+UniRef50_B1GZA3: Adenylate kinase|unclassified	0.0698164785
+UniRef50_UPI0003FBA1E0: cell division protein FtsW	0.0698156086
+UniRef50_UPI0003FBA1E0: cell division protein FtsW|unclassified	0.0698156086
+UniRef50_Q51161: Dihydropteroate synthase	0.0698139024
+UniRef50_Q51161: Dihydropteroate synthase|unclassified	0.0698139024
+UniRef50_F0S2L5	0.0698103358
+UniRef50_F0S2L5|unclassified	0.0698103358
+UniRef50_B1HN86: Inner membrane protein	0.0698091759
+UniRef50_B1HN86: Inner membrane protein|unclassified	0.0698091759
+UniRef50_UPI0004781473: (p)ppGpp synthetase	0.0698088550
+UniRef50_UPI0004781473: (p)ppGpp synthetase|unclassified	0.0698088550
+UniRef50_R6AX85	0.0698034351
+UniRef50_R6AX85|unclassified	0.0698034351
+UniRef50_Q28KE8	0.0698029773
+UniRef50_Q28KE8|unclassified	0.0698029773
+UniRef50_UPI000379D823: hypothetical protein	0.0697985244
+UniRef50_UPI000379D823: hypothetical protein|unclassified	0.0697985244
+UniRef50_UPI00047E1261: alpha/beta hydrolase	0.0697924441
+UniRef50_UPI00047E1261: alpha/beta hydrolase|unclassified	0.0697924441
+UniRef50_UPI00047B82A0: hypothetical protein	0.0697855546
+UniRef50_UPI00047B82A0: hypothetical protein|unclassified	0.0697855546
+UniRef50_Q0BSB1: UPF0262 protein GbCGDNIH1_1393	0.0697807748
+UniRef50_Q0BSB1: UPF0262 protein GbCGDNIH1_1393|unclassified	0.0697807748
+UniRef50_V6ZI12: Pyridoxal-phosphate dependent enzyme family protein	0.0697720634
+UniRef50_V6ZI12: Pyridoxal-phosphate dependent enzyme family protein|unclassified	0.0697720634
+UniRef50_UPI000478A1D6: hypothetical protein	0.0697716550
+UniRef50_UPI000478A1D6: hypothetical protein|unclassified	0.0697716550
+UniRef50_R1BAS7	0.0697645366
+UniRef50_R1BAS7|unclassified	0.0697645366
+UniRef50_UPI0003FD08E7: MULTISPECIES: ABC transporter ATP-binding protein	0.0697608204
+UniRef50_UPI0003FD08E7: MULTISPECIES: ABC transporter ATP-binding protein|unclassified	0.0697608204
+UniRef50_R6MZJ7	0.0697602479
+UniRef50_R6MZJ7|unclassified	0.0697602479
+UniRef50_X6F3D8	0.0697563630
+UniRef50_X6F3D8|unclassified	0.0697563630
+UniRef50_UPI0002881EC4: tRNA 2-selenouridine synthase, partial	0.0697563340
+UniRef50_UPI0002881EC4: tRNA 2-selenouridine synthase, partial|unclassified	0.0697563340
+UniRef50_A7H6H5: Glucose-1-phosphate adenylyltransferase	0.0697528400
+UniRef50_A7H6H5: Glucose-1-phosphate adenylyltransferase|unclassified	0.0697528400
+UniRef50_UPI000360EA2D: hypothetical protein	0.0697516784
+UniRef50_UPI000360EA2D: hypothetical protein|unclassified	0.0697516784
+UniRef50_G2LAB1	0.0697494034
+UniRef50_G2LAB1|unclassified	0.0697494034
+UniRef50_Q5NRB3: Hydroxylamine reductase	0.0697428761
+UniRef50_Q5NRB3: Hydroxylamine reductase|unclassified	0.0697428761
+UniRef50_UPI0002260B67: ABC transporter permease	0.0697423622
+UniRef50_UPI0002260B67: ABC transporter permease|unclassified	0.0697423622
+UniRef50_UPI00040DE43B: hypothetical protein	0.0697342488
+UniRef50_UPI00040DE43B: hypothetical protein|unclassified	0.0697342488
+UniRef50_UPI00046616FD: 4-alpha-glucanotransferase, partial	0.0697333780
+UniRef50_UPI00046616FD: 4-alpha-glucanotransferase, partial|unclassified	0.0697333780
+UniRef50_Q51785: Acyl-homoserine-lactone synthase	0.0697292997
+UniRef50_Q51785: Acyl-homoserine-lactone synthase|unclassified	0.0697292997
+UniRef50_UPI0003C16468: PREDICTED: aldehyde dehydrogenase 5, mitochondrial-like	0.0697195333
+UniRef50_UPI0003C16468: PREDICTED: aldehyde dehydrogenase 5, mitochondrial-like|unclassified	0.0697195333
+UniRef50_UPI0002FBA11D: DNA polymerase I	0.0697160290
+UniRef50_UPI0002FBA11D: DNA polymerase I|unclassified	0.0697160290
+UniRef50_UPI0003B72A21: LysR family transcriptional regulator	0.0697160225
+UniRef50_UPI0003B72A21: LysR family transcriptional regulator|unclassified	0.0697160225
+UniRef50_Q9CMJ8: Probable alpha-L-glutamate ligase	0.0697142401
+UniRef50_Q9CMJ8: Probable alpha-L-glutamate ligase|unclassified	0.0697142401
+UniRef50_UPI0003B6C9F3: 30S ribosomal protein S5	0.0697121635
+UniRef50_UPI0003B6C9F3: 30S ribosomal protein S5|unclassified	0.0697121635
+UniRef50_UPI0003823953: hypothetical protein	0.0697087183
+UniRef50_UPI0003823953: hypothetical protein|unclassified	0.0697087183
+UniRef50_UPI00042AD310: PREDICTED: probable Xaa-Pro aminopeptidase 3-like, partial	0.0697068104
+UniRef50_UPI00042AD310: PREDICTED: probable Xaa-Pro aminopeptidase 3-like, partial|unclassified	0.0697068104
+UniRef50_A1SJN3: Putative spermidine synthase	0.0697067352
+UniRef50_A1SJN3: Putative spermidine synthase|unclassified	0.0697067352
+UniRef50_U5VLK8: HK97 family phage portal protein	0.0697054035
+UniRef50_U5VLK8: HK97 family phage portal protein|unclassified	0.0697054035
+UniRef50_UPI000478CBF5: membrane protein	0.0697023573
+UniRef50_UPI000478CBF5: membrane protein|unclassified	0.0697023573
+UniRef50_UPI0003B40FD6: dihydrodipicolinate reductase	0.0696996254
+UniRef50_UPI0003B40FD6: dihydrodipicolinate reductase|unclassified	0.0696996254
+UniRef50_C6WNX2: Periplasmic binding protein	0.0696978335
+UniRef50_C6WNX2: Periplasmic binding protein|unclassified	0.0696978335
+UniRef50_C0MB92	0.0696950126
+UniRef50_C0MB92|unclassified	0.0696950126
+UniRef50_UPI00028A206F: GTP-binding protein TypA/BipA, partial	0.0696940290
+UniRef50_UPI00028A206F: GTP-binding protein TypA/BipA, partial|unclassified	0.0696940290
+UniRef50_N0B860: DNA repair protein RadC	0.0696928679
+UniRef50_N0B860: DNA repair protein RadC|unclassified	0.0696928679
+UniRef50_UPI0003B36C4B: TetR family transcriptional regulator	0.0696906197
+UniRef50_UPI0003B36C4B: TetR family transcriptional regulator|unclassified	0.0696906197
+UniRef50_UPI000404EE4C: cytidylate kinase	0.0696901432
+UniRef50_UPI000404EE4C: cytidylate kinase|unclassified	0.0696901432
+UniRef50_G5JMI5	0.0696868450
+UniRef50_G5JMI5|unclassified	0.0696868450
+UniRef50_Q7UXF5: Glucose-1-phosphate adenylyltransferase	0.0696787411
+UniRef50_Q7UXF5: Glucose-1-phosphate adenylyltransferase|unclassified	0.0696787411
+UniRef50_Q2P8V2: Formamidopyrimidine-DNA glycosylase	0.0696707036
+UniRef50_Q2P8V2: Formamidopyrimidine-DNA glycosylase|unclassified	0.0696707036
+UniRef50_Q749Y7: Cytidylate kinase	0.0696693846
+UniRef50_Q749Y7: Cytidylate kinase|unclassified	0.0696693846
+UniRef50_X7UJN4	0.0696642880
+UniRef50_X7UJN4|unclassified	0.0696642880
+UniRef50_UPI00032AF907: PREDICTED: trans-L-3-hydroxyproline dehydratase	0.0696619330
+UniRef50_UPI00032AF907: PREDICTED: trans-L-3-hydroxyproline dehydratase|unclassified	0.0696619330
+UniRef50_UPI0003B68AA1: 5-amino-6-(5-phosphoribosylamino)uracil reductase	0.0696612402
+UniRef50_UPI0003B68AA1: 5-amino-6-(5-phosphoribosylamino)uracil reductase|unclassified	0.0696612402
+UniRef50_W5XB80	0.0696556189
+UniRef50_W5XB80|unclassified	0.0696556189
+UniRef50_M1L621: ABC transport system permease protein	0.0696549970
+UniRef50_M1L621: ABC transport system permease protein|unclassified	0.0696549970
+UniRef50_UPI000475AD73: ABC transporter ATP-binding protein	0.0696548861
+UniRef50_UPI000475AD73: ABC transporter ATP-binding protein|unclassified	0.0696548861
+UniRef50_UPI0003671E67: hypothetical protein	0.0696490317
+UniRef50_UPI0003671E67: hypothetical protein|unclassified	0.0696490317
+UniRef50_R9HYC8	0.0696475533
+UniRef50_R9HYC8|unclassified	0.0696475533
+UniRef50_P18868: Superoxide dismutase [Fe]	0.0696470756
+UniRef50_P18868: Superoxide dismutase [Fe]|unclassified	0.0696470756
+UniRef50_UPI0002489B77: succinoglycan biosynthesis protein ExoA	0.0696449498
+UniRef50_UPI0002489B77: succinoglycan biosynthesis protein ExoA|unclassified	0.0696449498
+UniRef50_UPI0003619679: hypothetical protein	0.0696288269
+UniRef50_UPI0003619679: hypothetical protein|unclassified	0.0696288269
+UniRef50_A0A017HKB9: Thio:disulfide interchange protein, putative	0.0696279615
+UniRef50_A0A017HKB9: Thio:disulfide interchange protein, putative|unclassified	0.0696279615
+UniRef50_A0A011PZN8: Chemotaxis protein methyltransferase	0.0696243856
+UniRef50_A0A011PZN8: Chemotaxis protein methyltransferase|unclassified	0.0696243856
+UniRef50_W1JI64	0.0696098254
+UniRef50_W1JI64|unclassified	0.0696098254
+UniRef50_UPI0003289C1D	0.0696090925
+UniRef50_UPI0003289C1D|unclassified	0.0696090925
+UniRef50_E8LCX8: Lipoprotein	0.0696050131
+UniRef50_E8LCX8: Lipoprotein|unclassified	0.0696050131
+UniRef50_G4RFU9: Exopolyphosphatase	0.0695940934
+UniRef50_G4RFU9: Exopolyphosphatase|unclassified	0.0695940934
+UniRef50_UPI0003042282: hypothetical protein	0.0695797945
+UniRef50_UPI0003042282: hypothetical protein|unclassified	0.0695797945
+UniRef50_Q5V230: Probable aminomethyltransferase	0.0695762232
+UniRef50_Q5V230: Probable aminomethyltransferase|unclassified	0.0695762232
+UniRef50_UPI0001BC2CBD: predicted membrane protein	0.0695753417
+UniRef50_UPI0001BC2CBD: predicted membrane protein|unclassified	0.0695753417
+UniRef50_UPI000470C144: tRNA-dihydrouridine synthase	0.0695748166
+UniRef50_UPI000470C144: tRNA-dihydrouridine synthase|unclassified	0.0695748166
+UniRef50_A0A016XHE4: Lytic transglycosylase	0.0695741725
+UniRef50_A0A016XHE4: Lytic transglycosylase|unclassified	0.0695741725
+UniRef50_UPI0003B3FD89: ribonuclease E	0.0695737488
+UniRef50_UPI0003B3FD89: ribonuclease E|unclassified	0.0695737488
+UniRef50_Q12LW4: UPF0502 protein Sden_2282	0.0695703791
+UniRef50_Q12LW4: UPF0502 protein Sden_2282|unclassified	0.0695703791
+UniRef50_UPI00025564EE: bifunctional phosphopantothenoylcysteine decarboxylase/phosphopantothenate synthase, partial	0.0695686263
+UniRef50_UPI00025564EE: bifunctional phosphopantothenoylcysteine decarboxylase/phosphopantothenate synthase, partial|unclassified	0.0695686263
+UniRef50_UPI00039EC51B: hypothetical protein	0.0695660072
+UniRef50_UPI00039EC51B: hypothetical protein|unclassified	0.0695660072
+UniRef50_UPI000255C167: hypothetical protein	0.0695647095
+UniRef50_UPI000255C167: hypothetical protein|unclassified	0.0695647095
+UniRef50_UPI00036E2331: hypothetical protein	0.0695608312
+UniRef50_UPI00036E2331: hypothetical protein|unclassified	0.0695608312
+UniRef50_UPI000470DD87: hypothetical protein	0.0695588503
+UniRef50_UPI000470DD87: hypothetical protein|unclassified	0.0695588503
+UniRef50_D8LMU1	0.0695563303
+UniRef50_D8LMU1|unclassified	0.0695563303
+UniRef50_UPI000373D358: ferredoxin	0.0695477620
+UniRef50_UPI000373D358: ferredoxin|unclassified	0.0695477620
+UniRef50_C0BAK5: Excinuclease ABC, C subunit	0.0695463003
+UniRef50_C0BAK5: Excinuclease ABC, C subunit|unclassified	0.0695463003
+UniRef50_UPI000470DB6F: hypothetical protein, partial	0.0695461542
+UniRef50_UPI000470DB6F: hypothetical protein, partial|unclassified	0.0695461542
+UniRef50_H8XLV9: DNA translocase ftsK DNA translocase SpoIIIE	0.0695443146
+UniRef50_H8XLV9: DNA translocase ftsK DNA translocase SpoIIIE|unclassified	0.0695443146
+UniRef50_UPI00047BF1EC: excinuclease ABC subunit A	0.0695397173
+UniRef50_UPI00047BF1EC: excinuclease ABC subunit A|unclassified	0.0695397173
+UniRef50_K1Z1F4	0.0695389804
+UniRef50_K1Z1F4|unclassified	0.0695389804
+UniRef50_UPI0003656264: hypothetical protein	0.0695383009
+UniRef50_UPI0003656264: hypothetical protein|unclassified	0.0695383009
+UniRef50_UPI000464221B: hypothetical protein	0.0695369410
+UniRef50_UPI000464221B: hypothetical protein|unclassified	0.0695369410
+UniRef50_S1T7C4: Integral membrane protein	0.0695282433
+UniRef50_S1T7C4: Integral membrane protein|unclassified	0.0695282433
+UniRef50_UPI000425A1EB: helicase UvrD	0.0695280196
+UniRef50_UPI000425A1EB: helicase UvrD|unclassified	0.0695280196
+UniRef50_UPI0003A677C1: histidine kinase	0.0695264250
+UniRef50_UPI0003A677C1: histidine kinase|unclassified	0.0695264250
+UniRef50_UPI0002003BFB: transcriptional regulator, partial	0.0695252587
+UniRef50_UPI0002003BFB: transcriptional regulator, partial|unclassified	0.0695252587
+UniRef50_A6UWT0: Cysteine--tRNA ligase	0.0695252417
+UniRef50_A6UWT0: Cysteine--tRNA ligase|unclassified	0.0695252417
+UniRef50_UPI000255904A: MFS transporter	0.0695202911
+UniRef50_UPI000255904A: MFS transporter|unclassified	0.0695202911
+UniRef50_E3YWL7: Internalin A (Fragment)	0.0695192944
+UniRef50_E3YWL7: Internalin A (Fragment)|unclassified	0.0695192944
+UniRef50_UPI000374E477: hypothetical protein	0.0695190480
+UniRef50_UPI000374E477: hypothetical protein|unclassified	0.0695190480
+UniRef50_UPI0003750B9A: hypothetical protein	0.0695115636
+UniRef50_UPI0003750B9A: hypothetical protein|unclassified	0.0695115636
+UniRef50_I7GYX7: Oxidoreductase	0.0695103510
+UniRef50_I7GYX7: Oxidoreductase|unclassified	0.0695103510
+UniRef50_UPI0002883C00: MFS transporter	0.0695057332
+UniRef50_UPI0002883C00: MFS transporter|unclassified	0.0695057332
+UniRef50_UPI00047D1DB0: hypothetical protein	0.0695032300
+UniRef50_UPI00047D1DB0: hypothetical protein|unclassified	0.0695032300
+UniRef50_UPI0004717369: amidohydrolase, partial	0.0695006731
+UniRef50_UPI0004717369: amidohydrolase, partial|unclassified	0.0695006731
+UniRef50_Q1Q1V8	0.0694961764
+UniRef50_Q1Q1V8|unclassified	0.0694961764
+UniRef50_UPI0003C4915B: PREDICTED: protein transport protein SEC31-like	0.0694956960
+UniRef50_UPI0003C4915B: PREDICTED: protein transport protein SEC31-like|unclassified	0.0694956960
+UniRef50_UPI0003593510: PREDICTED: versicolorin reductase-like	0.0694944546
+UniRef50_UPI0003593510: PREDICTED: versicolorin reductase-like|unclassified	0.0694944546
+UniRef50_W7V8H0: VWA_CoxE family protein	0.0694922156
+UniRef50_W7V8H0: VWA_CoxE family protein|unclassified	0.0694922156
+UniRef50_UPI000248CCF5: HAD family hydrolase	0.0694883831
+UniRef50_UPI000248CCF5: HAD family hydrolase|unclassified	0.0694883831
+UniRef50_Q9RWD6: Histidine biosynthesis bifunctional protein HisIE	0.0694879177
+UniRef50_Q9RWD6: Histidine biosynthesis bifunctional protein HisIE|unclassified	0.0694879177
+UniRef50_E4QJ38: UPF0276 protein MPQ_1794	0.0694869924
+UniRef50_E4QJ38: UPF0276 protein MPQ_1794|unclassified	0.0694869924
+UniRef50_T7WP18	0.0694831969
+UniRef50_T7WP18|unclassified	0.0694831969
+UniRef50_G1UNJ9	0.0694824303
+UniRef50_G1UNJ9|unclassified	0.0694824303
+UniRef50_S5XVW9	0.0694784467
+UniRef50_S5XVW9|unclassified	0.0694784467
+UniRef50_UPI00037DEB42: hypothetical protein	0.0694766121
+UniRef50_UPI00037DEB42: hypothetical protein|unclassified	0.0694766121
+UniRef50_Q1LTX5: Adenylate kinase	0.0694764632
+UniRef50_Q1LTX5: Adenylate kinase|unclassified	0.0694764632
+UniRef50_T0VCI7	0.0694743425
+UniRef50_T0VCI7|unclassified	0.0694743425
+UniRef50_UPI000255E5CA: serine protease, S9A family peptidase	0.0694729132
+UniRef50_UPI000255E5CA: serine protease, S9A family peptidase|unclassified	0.0694729132
+UniRef50_UPI000378D9CD: hypothetical protein, partial	0.0694700379
+UniRef50_UPI000378D9CD: hypothetical protein, partial|unclassified	0.0694700379
+UniRef50_UPI0004655A72: hypothetical protein	0.0694688990
+UniRef50_UPI0004655A72: hypothetical protein|unclassified	0.0694688990
+UniRef50_UPI00047866E5: carbohydrate kinase	0.0694635426
+UniRef50_UPI00047866E5: carbohydrate kinase|unclassified	0.0694635426
+UniRef50_W7Z889	0.0694594828
+UniRef50_W7Z889|unclassified	0.0694594828
+UniRef50_UPI0003957D72: PREDICTED: MAPK-interacting and spindle-stabilizing protein-like	0.0694541255
+UniRef50_UPI0003957D72: PREDICTED: MAPK-interacting and spindle-stabilizing protein-like|unclassified	0.0694541255
+UniRef50_R5IJ86	0.0694506334
+UniRef50_R5IJ86|unclassified	0.0694506334
+UniRef50_A0A033U865	0.0694470517
+UniRef50_A0A033U865|unclassified	0.0694470517
+UniRef50_W8BGG7	0.0694417797
+UniRef50_W8BGG7|unclassified	0.0694417797
+UniRef50_A1WY76: Putative nucleoside-diphosphate-sugar epimerase	0.0694415353
+UniRef50_A1WY76: Putative nucleoside-diphosphate-sugar epimerase|unclassified	0.0694415353
+UniRef50_L0EXZ6: Phosphate ABC transporter, periplasmic phosphate-binding protein PstS	0.0694394336
+UniRef50_L0EXZ6: Phosphate ABC transporter, periplasmic phosphate-binding protein PstS|unclassified	0.0694394336
+UniRef50_L8WHW0	0.0694378203
+UniRef50_L8WHW0|unclassified	0.0694378203
+UniRef50_R7IGX4	0.0694349760
+UniRef50_R7IGX4|unclassified	0.0694349760
+UniRef50_UPI000371E16C: hypothetical protein	0.0694316161
+UniRef50_UPI000371E16C: hypothetical protein|unclassified	0.0694316161
+UniRef50_UPI0004748FF1: SAM-dependent methyltransferase	0.0694310396
+UniRef50_UPI0004748FF1: SAM-dependent methyltransferase|unclassified	0.0694310396
+UniRef50_UPI000346B698: hypothetical protein	0.0694236563
+UniRef50_UPI000346B698: hypothetical protein|unclassified	0.0694236563
+UniRef50_T1JU83	0.0694235348
+UniRef50_T1JU83|unclassified	0.0694235348
+UniRef50_A0A024HCN9	0.0694227814
+UniRef50_A0A024HCN9|unclassified	0.0694227814
+UniRef50_UPI0004753D40: glutathione S-transferase	0.0694206539
+UniRef50_UPI0004753D40: glutathione S-transferase|unclassified	0.0694206539
+UniRef50_UPI00041E3023: hypothetical protein	0.0694198488
+UniRef50_UPI00041E3023: hypothetical protein|unclassified	0.0694198488
+UniRef50_P9WG38: Acetolactate synthase large subunit IlvG	0.0694120293
+UniRef50_P9WG38: Acetolactate synthase large subunit IlvG|unclassified	0.0694120293
+UniRef50_UPI0003B3C521: phosphomethylpyrimidine kinase	0.0694118918
+UniRef50_UPI0003B3C521: phosphomethylpyrimidine kinase|unclassified	0.0694118918
+UniRef50_E0MNI9: Cytochrome c oxidase subunit I	0.0694071833
+UniRef50_E0MNI9: Cytochrome c oxidase subunit I|unclassified	0.0694071833
+UniRef50_UPI000470E608: hypothetical protein	0.0694068871
+UniRef50_UPI000470E608: hypothetical protein|unclassified	0.0694068871
+UniRef50_UPI00037563AD: hypothetical protein	0.0693980507
+UniRef50_UPI00037563AD: hypothetical protein|unclassified	0.0693980507
+UniRef50_UPI000467B16B: hypothetical protein	0.0693858120
+UniRef50_UPI000467B16B: hypothetical protein|unclassified	0.0693858120
+UniRef50_UPI00035E88EA: hypothetical protein	0.0693833356
+UniRef50_UPI00035E88EA: hypothetical protein|unclassified	0.0693833356
+UniRef50_A5WDP1: Hydroxyethylthiazole kinase	0.0693808139
+UniRef50_A5WDP1: Hydroxyethylthiazole kinase|unclassified	0.0693808139
+UniRef50_K8FIG5	0.0693805919
+UniRef50_K8FIG5|unclassified	0.0693805919
+UniRef50_A9B041	0.0693776402
+UniRef50_A9B041|unclassified	0.0693776402
+UniRef50_UPI0002893D66: cytochrome P450	0.0693713485
+UniRef50_UPI0002893D66: cytochrome P450|unclassified	0.0693713485
+UniRef50_UPI00034C18AD: ABC transporter permease	0.0693693971
+UniRef50_UPI00034C18AD: ABC transporter permease|unclassified	0.0693693971
+UniRef50_UPI000477B148: transferase	0.0693677667
+UniRef50_UPI000477B148: transferase|unclassified	0.0693677667
+UniRef50_UPI0004718658: hypothetical protein	0.0693656244
+UniRef50_UPI0004718658: hypothetical protein|unclassified	0.0693656244
+UniRef50_R7IF91: Lipoprotein	0.0693653937
+UniRef50_R7IF91: Lipoprotein|unclassified	0.0693653937
+UniRef50_UPI00036DA944: hypothetical protein	0.0693551614
+UniRef50_UPI00036DA944: hypothetical protein|unclassified	0.0693551614
+UniRef50_G1D325: Gp79	0.0693447758
+UniRef50_G1D325: Gp79|unclassified	0.0693447758
+UniRef50_UPI00020D999D: membrane protein	0.0693276256
+UniRef50_UPI00020D999D: membrane protein|unclassified	0.0693276256
+UniRef50_UPI00047B55C7: hypothetical protein	0.0693126106
+UniRef50_UPI00047B55C7: hypothetical protein|unclassified	0.0693126106
+UniRef50_UPI0003A6E25E: serine dehydratase	0.0693113007
+UniRef50_UPI0003A6E25E: serine dehydratase|unclassified	0.0693113007
+UniRef50_UPI000328C02F: PREDICTED: translation initiation factor IF-2-like, partial	0.0693091454
+UniRef50_UPI000328C02F: PREDICTED: translation initiation factor IF-2-like, partial|unclassified	0.0693091454
+UniRef50_UPI0003606737: hypothetical protein, partial	0.0693090456
+UniRef50_UPI0003606737: hypothetical protein, partial|unclassified	0.0693090456
+UniRef50_UPI00036E6A9D: hypothetical protein	0.0692997726
+UniRef50_UPI00036E6A9D: hypothetical protein|unclassified	0.0692997726
+UniRef50_I0H6C5	0.0692975740
+UniRef50_I0H6C5|unclassified	0.0692975740
+UniRef50_K6PZI4	0.0692930041
+UniRef50_K6PZI4|unclassified	0.0692930041
+UniRef50_O54037: Vanillate O-demethylase oxidoreductase	0.0692911699
+UniRef50_O54037: Vanillate O-demethylase oxidoreductase|unclassified	0.0692911699
+UniRef50_UPI000411CDCE: hypothetical protein	0.0692904290
+UniRef50_UPI000411CDCE: hypothetical protein|unclassified	0.0692904290
+UniRef50_UPI0002885467: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase, partial	0.0692878593
+UniRef50_UPI0002885467: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase, partial|unclassified	0.0692878593
+UniRef50_UPI000255BE71: acyltransferase 3, partial	0.0692840178
+UniRef50_UPI000255BE71: acyltransferase 3, partial|unclassified	0.0692840178
+UniRef50_P36957: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial	0.0692835900
+UniRef50_P36957: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial|unclassified	0.0692835900
+UniRef50_B2V790: Orotidine 5'-phosphate decarboxylase	0.0692834796
+UniRef50_B2V790: Orotidine 5'-phosphate decarboxylase|unclassified	0.0692834796
+UniRef50_UPI000474A497: protein kinase, partial	0.0692777846
+UniRef50_UPI000474A497: protein kinase, partial|unclassified	0.0692777846
+UniRef50_Q31I42: D-alanine--D-alanine ligase	0.0692756361
+UniRef50_Q31I42: D-alanine--D-alanine ligase|unclassified	0.0692756361
+UniRef50_Q8D350: Protoheme IX farnesyltransferase	0.0692699868
+UniRef50_Q8D350: Protoheme IX farnesyltransferase|unclassified	0.0692699868
+UniRef50_UPI0004180F7D: hypothetical protein	0.0692690385
+UniRef50_UPI0004180F7D: hypothetical protein|unclassified	0.0692690385
+UniRef50_UPI00046EC2BB: HrcA family transcriptional regulator	0.0692669603
+UniRef50_UPI00046EC2BB: HrcA family transcriptional regulator|unclassified	0.0692669603
+UniRef50_UPI00015833AE: hypothetical protein BC1G_02378	0.0692589610
+UniRef50_UPI00015833AE: hypothetical protein BC1G_02378|unclassified	0.0692589610
+UniRef50_D5RU63	0.0692581474
+UniRef50_D5RU63|unclassified	0.0692581474
+UniRef50_UPI00047D9D96: GDP-L-fucose synthase	0.0692561784
+UniRef50_UPI00047D9D96: GDP-L-fucose synthase|unclassified	0.0692561784
+UniRef50_Q0FUU7: ABC opine/polyamine transporter, periplasmic binding protein	0.0692533028
+UniRef50_Q0FUU7: ABC opine/polyamine transporter, periplasmic binding protein|unclassified	0.0692533028
+UniRef50_UPI0002491A61: PTS sugar transporter subunit IIC	0.0692496467
+UniRef50_UPI0002491A61: PTS sugar transporter subunit IIC|unclassified	0.0692496467
+UniRef50_D2VF77: Predicted protein (Fragment)	0.0692483483
+UniRef50_D2VF77: Predicted protein (Fragment)|unclassified	0.0692483483
+UniRef50_R5ZXT3	0.0692413649
+UniRef50_R5ZXT3|unclassified	0.0692413649
+UniRef50_C7Z4S6	0.0692390575
+UniRef50_C7Z4S6|unclassified	0.0692390575
+UniRef50_UPI00047E32A2: rhamnulose-1-phosphate aldolase	0.0692370892
+UniRef50_UPI00047E32A2: rhamnulose-1-phosphate aldolase|unclassified	0.0692370892
+UniRef50_B8GQB0: Flagellar hook capping protein	0.0692343033
+UniRef50_B8GQB0: Flagellar hook capping protein|unclassified	0.0692343033
+UniRef50_UPI00046E6D22: LysR family transcriptional regulator, partial	0.0692274427
+UniRef50_UPI00046E6D22: LysR family transcriptional regulator, partial|unclassified	0.0692274427
+UniRef50_UPI00046A53B5: nickel transporter permease NikC	0.0692229011
+UniRef50_UPI00046A53B5: nickel transporter permease NikC|unclassified	0.0692229011
+UniRef50_UPI0003C13594	0.0692225795
+UniRef50_UPI0003C13594|unclassified	0.0692225795
+UniRef50_UPI0002625754: glutathione peroxidase	0.0692188304
+UniRef50_UPI0002625754: glutathione peroxidase|unclassified	0.0692188304
+UniRef50_UPI00031BCF8A: hypothetical protein	0.0692158546
+UniRef50_UPI00031BCF8A: hypothetical protein|unclassified	0.0692158546
+UniRef50_O04005: 1-Cys peroxiredoxin PER1	0.0692143338
+UniRef50_O04005: 1-Cys peroxiredoxin PER1|unclassified	0.0692143338
+UniRef50_B2V8P5: Non-canonical purine NTP pyrophosphatase	0.0692072109
+UniRef50_B2V8P5: Non-canonical purine NTP pyrophosphatase|unclassified	0.0692072109
+UniRef50_UPI00036F34F3: hypothetical protein	0.0692004977
+UniRef50_UPI00036F34F3: hypothetical protein|unclassified	0.0692004977
+UniRef50_UPI00047C5A44: LysR family transcriptional regulator	0.0691958565
+UniRef50_UPI00047C5A44: LysR family transcriptional regulator|unclassified	0.0691958565
+UniRef50_UPI00037B6D80: hypothetical protein	0.0691895403
+UniRef50_UPI00037B6D80: hypothetical protein|unclassified	0.0691895403
+UniRef50_UPI000440B66C: PREDICTED: tau-tubulin kinase 1-like	0.0691889754
+UniRef50_UPI000440B66C: PREDICTED: tau-tubulin kinase 1-like|unclassified	0.0691889754
+UniRef50_Q57657: Probable amidophosphoribosyltransferase	0.0691824603
+UniRef50_Q57657: Probable amidophosphoribosyltransferase|unclassified	0.0691824603
+UniRef50_Q12CW4: tRNA (guanine-N(1)-)-methyltransferase	0.0691806825
+UniRef50_Q12CW4: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0691806825
+UniRef50_UPI00026CD69E: putative D-alanyl-D-alanine carboxypeptidase	0.0691794206
+UniRef50_UPI00026CD69E: putative D-alanyl-D-alanine carboxypeptidase|unclassified	0.0691794206
+UniRef50_UPI000315E1EA: hypothetical protein	0.0691763964
+UniRef50_UPI000315E1EA: hypothetical protein|unclassified	0.0691763964
+UniRef50_UPI00037DE5B0: hypothetical protein	0.0691744925
+UniRef50_UPI00037DE5B0: hypothetical protein|unclassified	0.0691744925
+UniRef50_UPI00047B5EB3: aminotransferase	0.0691726789
+UniRef50_UPI00047B5EB3: aminotransferase|unclassified	0.0691726789
+UniRef50_UPI00040FC59E: hypothetical protein	0.0691706691
+UniRef50_UPI00040FC59E: hypothetical protein|unclassified	0.0691706691
+UniRef50_A5IM63: 4-hydroxy-tetrahydrodipicolinate reductase	0.0691684374
+UniRef50_A5IM63: 4-hydroxy-tetrahydrodipicolinate reductase|unclassified	0.0691684374
+UniRef50_UPI0004573A07: PREDICTED: LOW QUALITY PROTEIN: acetyl-CoA acetyltransferase, cytosolic-like	0.0691673863
+UniRef50_UPI0004573A07: PREDICTED: LOW QUALITY PROTEIN: acetyl-CoA acetyltransferase, cytosolic-like|unclassified	0.0691673863
+UniRef50_Q2GCD8: DNA-directed RNA polymerase subunit beta'	0.0691656635
+UniRef50_Q2GCD8: DNA-directed RNA polymerase subunit beta'|unclassified	0.0691656635
+UniRef50_Q1GYQ8: Kef-type potassium/proton antiporter accessory protein, CPA2 family	0.0691651949
+UniRef50_Q1GYQ8: Kef-type potassium/proton antiporter accessory protein, CPA2 family|unclassified	0.0691651949
+UniRef50_R9L2Y2	0.0691630655
+UniRef50_R9L2Y2|unclassified	0.0691630655
+UniRef50_H8GVZ3: PPC, peptidase containing PKD repeats	0.0691556558
+UniRef50_H8GVZ3: PPC, peptidase containing PKD repeats|unclassified	0.0691556558
+UniRef50_Q3JQC1: Ion transporter, putative	0.0691544640
+UniRef50_Q3JQC1: Ion transporter, putative|unclassified	0.0691544640
+UniRef50_W0J609: Chromosome partitioning protein ParB	0.0691442987
+UniRef50_W0J609: Chromosome partitioning protein ParB|unclassified	0.0691442987
+UniRef50_UPI0004643497: hydroxymethylpyrimidine kinase	0.0691397881
+UniRef50_UPI0004643497: hydroxymethylpyrimidine kinase|unclassified	0.0691397881
+UniRef50_Q3AD49: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.0691378667
+UniRef50_Q3AD49: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.0691378667
+UniRef50_UPI0003FCC1FE: hypothetical protein	0.0691366866
+UniRef50_UPI0003FCC1FE: hypothetical protein|unclassified	0.0691366866
+UniRef50_A3MYP0	0.0691243926
+UniRef50_A3MYP0|unclassified	0.0691243926
+UniRef50_UPI00036EEFAD: hypothetical protein	0.0691240093
+UniRef50_UPI00036EEFAD: hypothetical protein|unclassified	0.0691240093
+UniRef50_Q4FNS5: Shikimate dehydrogenase	0.0691207549
+UniRef50_Q4FNS5: Shikimate dehydrogenase|unclassified	0.0691207549
+UniRef50_P39708: NADP-specific glutamate dehydrogenase 2	0.0691188402
+UniRef50_P39708: NADP-specific glutamate dehydrogenase 2|unclassified	0.0691188402
+UniRef50_UPI00035F4FE1: hypothetical protein	0.0691143692
+UniRef50_UPI00035F4FE1: hypothetical protein|unclassified	0.0691143692
+UniRef50_UPI00036F7A05: AMP-dependent synthetase	0.0691131300
+UniRef50_UPI00036F7A05: AMP-dependent synthetase|unclassified	0.0691131300
+UniRef50_UPI00037DE18F: hypothetical protein	0.0691116776
+UniRef50_UPI00037DE18F: hypothetical protein|unclassified	0.0691116776
+UniRef50_UPI0003465D9B: heat-shock protein HtpX	0.0691073146
+UniRef50_UPI0003465D9B: heat-shock protein HtpX|unclassified	0.0691073146
+UniRef50_B5FGG1: Inner membrane protein YjjP	0.0691056557
+UniRef50_B5FGG1: Inner membrane protein YjjP|unclassified	0.0691056557
+UniRef50_UPI00036E6CAE: hypothetical protein	0.0691017515
+UniRef50_UPI00036E6CAE: hypothetical protein|unclassified	0.0691017515
+UniRef50_V9R115: Membrane protein	0.0690978529
+UniRef50_V9R115: Membrane protein|unclassified	0.0690978529
+UniRef50_Q4L5J7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0690975956
+UniRef50_Q4L5J7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.0690975956
+UniRef50_U4UX28	0.0690901497
+UniRef50_U4UX28|unclassified	0.0690901497
+UniRef50_UPI000379A2E0: hypothetical protein	0.0690852784
+UniRef50_UPI000379A2E0: hypothetical protein|unclassified	0.0690852784
+UniRef50_UPI00037863B5: hypothetical protein	0.0690836591
+UniRef50_UPI00037863B5: hypothetical protein|unclassified	0.0690836591
+UniRef50_UPI0004689349: hypothetical protein	0.0690805296
+UniRef50_UPI0004689349: hypothetical protein|unclassified	0.0690805296
+UniRef50_A0AIL5: Internalin family protein (LPXTG motif)	0.0690778915
+UniRef50_A0AIL5: Internalin family protein (LPXTG motif)|unclassified	0.0690778915
+UniRef50_UPI0003691AB5: hypothetical protein	0.0690760881
+UniRef50_UPI0003691AB5: hypothetical protein|unclassified	0.0690760881
+UniRef50_Q4V0C6: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase	0.0690730731
+UniRef50_Q4V0C6: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase|unclassified	0.0690730731
+UniRef50_Q5HHD1: Putative peptidyl-prolyl cis-trans isomerase	0.0690695621
+UniRef50_Q5HHD1: Putative peptidyl-prolyl cis-trans isomerase|unclassified	0.0690695621
+UniRef50_O67222: S-adenosylmethionine synthase	0.0690662297
+UniRef50_O67222: S-adenosylmethionine synthase|unclassified	0.0690662297
+UniRef50_K1Z8X7	0.0690631821
+UniRef50_K1Z8X7|unclassified	0.0690631821
+UniRef50_UPI00036EBECA: hypothetical protein	0.0690595061
+UniRef50_UPI00036EBECA: hypothetical protein|unclassified	0.0690595061
+UniRef50_UPI00023B2CAC: PREDICTED: LOW QUALITY PROTEIN: acetylornithine aminotransferase, mitochondrial-like	0.0690563748
+UniRef50_UPI00023B2CAC: PREDICTED: LOW QUALITY PROTEIN: acetylornithine aminotransferase, mitochondrial-like|unclassified	0.0690563748
+UniRef50_Q9VM33: Elongation factor G, mitochondrial	0.0690525472
+UniRef50_Q9VM33: Elongation factor G, mitochondrial|unclassified	0.0690525472
+UniRef50_A4IK10	0.0690519426
+UniRef50_A4IK10|unclassified	0.0690519426
+UniRef50_Q1QDK8: NADPH-dependent 7-cyano-7-deazaguanine reductase	0.0690469080
+UniRef50_Q1QDK8: NADPH-dependent 7-cyano-7-deazaguanine reductase|unclassified	0.0690469080
+UniRef50_UPI00037B8327: hypothetical protein	0.0690462364
+UniRef50_UPI00037B8327: hypothetical protein|unclassified	0.0690462364
+UniRef50_Q9PLV2: Homoserine O-succinyltransferase	0.0690416234
+UniRef50_Q9PLV2: Homoserine O-succinyltransferase|unclassified	0.0690416234
+UniRef50_A9IQL1: Ribonuclease HII	0.0690355433
+UniRef50_A9IQL1: Ribonuclease HII|unclassified	0.0690355433
+UniRef50_A6W6A1: Hydroxyethylthiazole kinase	0.0690352806
+UniRef50_A6W6A1: Hydroxyethylthiazole kinase|unclassified	0.0690352806
+UniRef50_O30019: Pyruvate carboxylase subunit A	0.0690335893
+UniRef50_O30019: Pyruvate carboxylase subunit A|unclassified	0.0690335893
+UniRef50_T5BDE9: AMP-binding enzyme family protein	0.0690306482
+UniRef50_T5BDE9: AMP-binding enzyme family protein|unclassified	0.0690306482
+UniRef50_A1RB41: UPF0225 protein AAur_3773	0.0690285428
+UniRef50_A1RB41: UPF0225 protein AAur_3773|unclassified	0.0690285428
+UniRef50_P44324: Aspartate ammonia-lyase	0.0690274375
+UniRef50_P44324: Aspartate ammonia-lyase|unclassified	0.0690274375
+UniRef50_A9VC38: Predicted protein (Fragment)	0.0690273619
+UniRef50_A9VC38: Predicted protein (Fragment)|unclassified	0.0690273619
+UniRef50_V4QY51: Transcriptional regulator (Fragment)	0.0690245508
+UniRef50_V4QY51: Transcriptional regulator (Fragment)|unclassified	0.0690245508
+UniRef50_UPI000219574D: membrane-associated phospholipid phosphatase	0.0690243827
+UniRef50_UPI000219574D: membrane-associated phospholipid phosphatase|unclassified	0.0690243827
+UniRef50_UPI00047611CA: hypothetical protein	0.0690120424
+UniRef50_UPI00047611CA: hypothetical protein|unclassified	0.0690120424
+UniRef50_Q6AJE8: tRNA (guanine-N(1)-)-methyltransferase	0.0690035942
+UniRef50_Q6AJE8: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0690035942
+UniRef50_Q8RGA3: Tryptophan--tRNA ligase	0.0690008501
+UniRef50_Q8RGA3: Tryptophan--tRNA ligase|unclassified	0.0690008501
+UniRef50_UPI0003B439EA: Na+-dependent transporter	0.0689966386
+UniRef50_UPI0003B439EA: Na+-dependent transporter|unclassified	0.0689966386
+UniRef50_W5WW29: UPF0234 protein BDW_01210	0.0689959600
+UniRef50_W5WW29: UPF0234 protein BDW_01210|unclassified	0.0689959600
+UniRef50_UPI00035C696E: hypothetical protein	0.0689950629
+UniRef50_UPI00035C696E: hypothetical protein|unclassified	0.0689950629
+UniRef50_Q5WLC5: DNA topology modulation protein	0.0689840927
+UniRef50_Q5WLC5: DNA topology modulation protein|unclassified	0.0689840927
+UniRef50_UPI0003AB6194: PREDICTED: zinc transporter 3 isoform X1	0.0689825310
+UniRef50_UPI0003AB6194: PREDICTED: zinc transporter 3 isoform X1|unclassified	0.0689825310
+UniRef50_UPI000377D28B: hypothetical protein	0.0689803368
+UniRef50_UPI000377D28B: hypothetical protein|unclassified	0.0689803368
+UniRef50_K0W8R9: Penicillin binding peptidoglycan synthetase (Fragment)	0.0689765784
+UniRef50_K0W8R9: Penicillin binding peptidoglycan synthetase (Fragment)|unclassified	0.0689765784
+UniRef50_UPI000255A89E: integral membrane protein	0.0689727082
+UniRef50_UPI000255A89E: integral membrane protein|unclassified	0.0689727082
+UniRef50_UPI00047EC686: CoA-transferase	0.0689689075
+UniRef50_UPI00047EC686: CoA-transferase|unclassified	0.0689689075
+UniRef50_I3ZFS5: Metallophosphoesterase, MG_246/BB_0505 family	0.0689674256
+UniRef50_I3ZFS5: Metallophosphoesterase, MG_246/BB_0505 family|unclassified	0.0689674256
+UniRef50_UPI00047E4BD6: hypothetical protein	0.0689642736
+UniRef50_UPI00047E4BD6: hypothetical protein|unclassified	0.0689642736
+UniRef50_A5V451	0.0689608440
+UniRef50_A5V451|unclassified	0.0689608440
+UniRef50_UPI000475759F: flagellar hook capping protein	0.0689605902
+UniRef50_UPI000475759F: flagellar hook capping protein|unclassified	0.0689605902
+UniRef50_Q49ZN6: N-acetylmuramic acid 6-phosphate etherase	0.0689588819
+UniRef50_Q49ZN6: N-acetylmuramic acid 6-phosphate etherase|unclassified	0.0689588819
+UniRef50_UPI0003B39AC6: peptidyl-prolyl cis-trans isomerase	0.0689544440
+UniRef50_UPI0003B39AC6: peptidyl-prolyl cis-trans isomerase|unclassified	0.0689544440
+UniRef50_X6PHE4	0.0689528234
+UniRef50_X6PHE4|unclassified	0.0689528234
+UniRef50_M8PG23: HD domain protein	0.0689514528
+UniRef50_M8PG23: HD domain protein|unclassified	0.0689514528
+UniRef50_UPI0003B4D373: peptidase T	0.0689490306
+UniRef50_UPI0003B4D373: peptidase T|unclassified	0.0689490306
+UniRef50_X4UKI9: Membrane protein	0.0689482977
+UniRef50_X4UKI9: Membrane protein|unclassified	0.0689482977
+UniRef50_UPI000370951D: hypothetical protein	0.0689437491
+UniRef50_UPI000370951D: hypothetical protein|unclassified	0.0689437491
+UniRef50_A0A022H326: Ferredoxin:oxidoreductase FAD/NAD(P)-binding protein	0.0689432884
+UniRef50_A0A022H326: Ferredoxin:oxidoreductase FAD/NAD(P)-binding protein|unclassified	0.0689432884
+UniRef50_UPI00036770E6: phosphate starvation protein PhoH	0.0689414089
+UniRef50_UPI00036770E6: phosphate starvation protein PhoH|unclassified	0.0689414089
+UniRef50_B7UYM8	0.0689302428
+UniRef50_B7UYM8|unclassified	0.0689302428
+UniRef50_UPI00040B57FB: hypothetical protein	0.0689237110
+UniRef50_UPI00040B57FB: hypothetical protein|unclassified	0.0689237110
+UniRef50_X0YKT6: Marine sediment metagenome DNA, contig: S01H4_C00807	0.0689213150
+UniRef50_X0YKT6: Marine sediment metagenome DNA, contig: S01H4_C00807|unclassified	0.0689213150
+UniRef50_A1B5U3: Beta-lactamase domain protein	0.0689170134
+UniRef50_A1B5U3: Beta-lactamase domain protein|unclassified	0.0689170134
+UniRef50_R5RCP3	0.0689143721
+UniRef50_R5RCP3|unclassified	0.0689143721
+UniRef50_UPI00046AFE1E: fimbrial protein, partial	0.0689080733
+UniRef50_UPI00046AFE1E: fimbrial protein, partial|unclassified	0.0689080733
+UniRef50_T0UXS0: Late competence protein ComGF, access of DNA to ComEA	0.0688982291
+UniRef50_T0UXS0: Late competence protein ComGF, access of DNA to ComEA|unclassified	0.0688982291
+UniRef50_B4JI26: GH19604	0.0688958010
+UniRef50_B4JI26: GH19604|unclassified	0.0688958010
+UniRef50_UPI00046328F3: lactate oxidase	0.0688933418
+UniRef50_UPI00046328F3: lactate oxidase|unclassified	0.0688933418
+UniRef50_A0A023P7B2	0.0688928470
+UniRef50_A0A023P7B2|unclassified	0.0688928470
+UniRef50_A4YKK0	0.0688901487
+UniRef50_A4YKK0|unclassified	0.0688901487
+UniRef50_Q8ESL6: Glucosamine-6-phosphate deaminase	0.0688838557
+UniRef50_Q8ESL6: Glucosamine-6-phosphate deaminase|unclassified	0.0688838557
+UniRef50_F5Y319: Candidate membrane protein	0.0688806910
+UniRef50_F5Y319: Candidate membrane protein|unclassified	0.0688806910
+UniRef50_UPI0003B3E71E: long-chain fatty acid--CoA ligase	0.0688785632
+UniRef50_UPI0003B3E71E: long-chain fatty acid--CoA ligase|unclassified	0.0688785632
+UniRef50_UPI00036262EB: hypothetical protein	0.0688713936
+UniRef50_UPI00036262EB: hypothetical protein|unclassified	0.0688713936
+UniRef50_UPI000361FBB1: hypothetical protein	0.0688680361
+UniRef50_UPI000361FBB1: hypothetical protein|unclassified	0.0688680361
+UniRef50_UPI00034C3500: hypothetical protein	0.0688666201
+UniRef50_UPI00034C3500: hypothetical protein|unclassified	0.0688666201
+UniRef50_UPI00047BFE52: peptide ABC transporter permease	0.0688635809
+UniRef50_UPI00047BFE52: peptide ABC transporter permease|unclassified	0.0688635809
+UniRef50_G5KE14: Phage terminase, large subunit-like protein	0.0688629433
+UniRef50_G5KE14: Phage terminase, large subunit-like protein|unclassified	0.0688629433
+UniRef50_UPI0003670539: hypothetical protein	0.0688597426
+UniRef50_UPI0003670539: hypothetical protein|unclassified	0.0688597426
+UniRef50_Q11I48: ATP-dependent Clp protease proteolytic subunit 2	0.0688587998
+UniRef50_Q11I48: ATP-dependent Clp protease proteolytic subunit 2|unclassified	0.0688587998
+UniRef50_A9H1W4	0.0688577809
+UniRef50_A9H1W4|unclassified	0.0688577809
+UniRef50_UPI0003A1B7B8: transcriptional regulator	0.0688575451
+UniRef50_UPI0003A1B7B8: transcriptional regulator|unclassified	0.0688575451
+UniRef50_P44914: dTDP-glucose 4,6-dehydratase	0.0688481979
+UniRef50_P44914: dTDP-glucose 4,6-dehydratase|unclassified	0.0688481979
+UniRef50_K2MBL6	0.0688394028
+UniRef50_K2MBL6|unclassified	0.0688394028
+UniRef50_I7DSP2: TRAP transporter, subunit DctQ	0.0688393150
+UniRef50_I7DSP2: TRAP transporter, subunit DctQ|unclassified	0.0688393150
+UniRef50_E3H4N2: Periplasmic binding protein	0.0688372512
+UniRef50_E3H4N2: Periplasmic binding protein|unclassified	0.0688372512
+UniRef50_T0J1G4	0.0688341364
+UniRef50_T0J1G4|unclassified	0.0688341364
+UniRef50_UPI000376EBD7: hypothetical protein	0.0688309252
+UniRef50_UPI000376EBD7: hypothetical protein|unclassified	0.0688309252
+UniRef50_G6X002: 3-oxoacyl-[acyl-carrier protein] reductase	0.0688262912
+UniRef50_G6X002: 3-oxoacyl-[acyl-carrier protein] reductase|unclassified	0.0688262912
+UniRef50_D8U1U6	0.0688201893
+UniRef50_D8U1U6|unclassified	0.0688201893
+UniRef50_UPI0002197506: membrane protein	0.0688150386
+UniRef50_UPI0002197506: membrane protein|unclassified	0.0688150386
+UniRef50_K2B1S5	0.0688072590
+UniRef50_K2B1S5|unclassified	0.0688072590
+UniRef50_B7V109: Adenylate kinase	0.0688062722
+UniRef50_B7V109: Adenylate kinase|unclassified	0.0688062722
+UniRef50_B9TLE2	0.0688027323
+UniRef50_B9TLE2|unclassified	0.0688027323
+UniRef50_A7HQZ3: Ribonuclease HII	0.0688025618
+UniRef50_A7HQZ3: Ribonuclease HII|unclassified	0.0688025618
+UniRef50_UPI0003B6130B: SAM-dependent methyltransferase	0.0687971380
+UniRef50_UPI0003B6130B: SAM-dependent methyltransferase|unclassified	0.0687971380
+UniRef50_A7Z8F5: Allantoinase	0.0687967370
+UniRef50_A7Z8F5: Allantoinase|unclassified	0.0687967370
+UniRef50_UPI000376DE1E: TonB-dependent receptor, partial	0.0687947519
+UniRef50_UPI000376DE1E: TonB-dependent receptor, partial|unclassified	0.0687947519
+UniRef50_Q1BTH0: Formamidopyrimidine-DNA glycosylase	0.0687946923
+UniRef50_Q1BTH0: Formamidopyrimidine-DNA glycosylase|unclassified	0.0687946923
+UniRef50_UPI000366EAC2: hypothetical protein	0.0687944828
+UniRef50_UPI000366EAC2: hypothetical protein|unclassified	0.0687944828
+UniRef50_Q28UB0	0.0687934299
+UniRef50_Q28UB0|unclassified	0.0687934299
+UniRef50_UPI00036CBE47: hypothetical protein, partial	0.0687892293
+UniRef50_UPI00036CBE47: hypothetical protein, partial|unclassified	0.0687892293
+UniRef50_X0PWH6	0.0687808033
+UniRef50_X0PWH6|unclassified	0.0687808033
+UniRef50_UPI000288EF20: amino acid binding protein	0.0687781868
+UniRef50_UPI000288EF20: amino acid binding protein|unclassified	0.0687781868
+UniRef50_UPI00047E7907: membrane protein	0.0687774581
+UniRef50_UPI00047E7907: membrane protein|unclassified	0.0687774581
+UniRef50_Q8ELK1: Alanine racemase 2	0.0687766689
+UniRef50_Q8ELK1: Alanine racemase 2|unclassified	0.0687766689
+UniRef50_W2UDL2: Lipoprotein NlpI	0.0687760225
+UniRef50_W2UDL2: Lipoprotein NlpI|unclassified	0.0687760225
+UniRef50_UPI000407BBBE: hypothetical protein	0.0687751811
+UniRef50_UPI000407BBBE: hypothetical protein|unclassified	0.0687751811
+UniRef50_B3EH06: Polyribonucleotide nucleotidyltransferase	0.0687745640
+UniRef50_B3EH06: Polyribonucleotide nucleotidyltransferase|unclassified	0.0687745640
+UniRef50_A0A011QBQ2	0.0687727379
+UniRef50_A0A011QBQ2|unclassified	0.0687727379
+UniRef50_B8R8X3: Putative NnrS family protein	0.0687666520
+UniRef50_B8R8X3: Putative NnrS family protein|unclassified	0.0687666520
+UniRef50_U1KC82	0.0687614985
+UniRef50_U1KC82|unclassified	0.0687614985
+UniRef50_UPI000365514F: hypothetical protein, partial	0.0687600177
+UniRef50_UPI000365514F: hypothetical protein, partial|unclassified	0.0687600177
+UniRef50_UPI0003722148: hypothetical protein	0.0687576907
+UniRef50_UPI0003722148: hypothetical protein|unclassified	0.0687576907
+UniRef50_UPI00047AA788: hypothetical protein	0.0687554151
+UniRef50_UPI00047AA788: hypothetical protein|unclassified	0.0687554151
+UniRef50_A0A059FUB6: Carbon monoxide dehydrogenase subunit G	0.0687509383
+UniRef50_A0A059FUB6: Carbon monoxide dehydrogenase subunit G|unclassified	0.0687509383
+UniRef50_Q06801: 4-alpha-glucanotransferase, chloroplastic/amyloplastic	0.0687444295
+UniRef50_Q06801: 4-alpha-glucanotransferase, chloroplastic/amyloplastic|unclassified	0.0687444295
+UniRef50_Q10MG8: Retrotransposon protein, putative, Ty3-gypsy subclass, expressed	0.0687430417
+UniRef50_Q10MG8: Retrotransposon protein, putative, Ty3-gypsy subclass, expressed|unclassified	0.0687430417
+UniRef50_B6QP49: Mannitol-1-phosphate 5-dehydrogenase	0.0687332049
+UniRef50_B6QP49: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.0687332049
+UniRef50_A0A030SN04	0.0687291917
+UniRef50_A0A030SN04|unclassified	0.0687291917
+UniRef50_UPI00026C5800: inositol-1-monophosphatase	0.0687217183
+UniRef50_UPI00026C5800: inositol-1-monophosphatase|unclassified	0.0687217183
+UniRef50_D9SPQ1	0.0687177953
+UniRef50_D9SPQ1|unclassified	0.0687177953
+UniRef50_A4BS65: Flagellar motor protein	0.0687161135
+UniRef50_A4BS65: Flagellar motor protein|unclassified	0.0687161135
+UniRef50_UPI00047EFE08: macrolide transporter	0.0687023487
+UniRef50_UPI00047EFE08: macrolide transporter|unclassified	0.0687023487
+UniRef50_UPI000476DE7E: alpha-L-glutamate ligase, partial	0.0686916378
+UniRef50_UPI000476DE7E: alpha-L-glutamate ligase, partial|unclassified	0.0686916378
+UniRef50_R9NWG4	0.0686904190
+UniRef50_R9NWG4|unclassified	0.0686904190
+UniRef50_Q4L4W9: Putative peptidyl-prolyl cis-trans isomerase	0.0686879623
+UniRef50_Q4L4W9: Putative peptidyl-prolyl cis-trans isomerase|unclassified	0.0686879623
+UniRef50_U7PG76: Membrane protein	0.0686857631
+UniRef50_U7PG76: Membrane protein|unclassified	0.0686857631
+UniRef50_A0A017RSD7	0.0686855592
+UniRef50_A0A017RSD7|unclassified	0.0686855592
+UniRef50_UPI00035CB92A: hypothetical protein	0.0686829782
+UniRef50_UPI00035CB92A: hypothetical protein|unclassified	0.0686829782
+UniRef50_UPI00035C1F64: hypothetical protein	0.0686776402
+UniRef50_UPI00035C1F64: hypothetical protein|unclassified	0.0686776402
+UniRef50_UPI00036BA5B6: hypothetical protein	0.0686767324
+UniRef50_UPI00036BA5B6: hypothetical protein|unclassified	0.0686767324
+UniRef50_UPI00017460A2: sensor histidine kinase	0.0686696536
+UniRef50_UPI00017460A2: sensor histidine kinase|unclassified	0.0686696536
+UniRef50_UPI0003B50719: 6-phosphogluconate dehydrogenase	0.0686607157
+UniRef50_UPI0003B50719: 6-phosphogluconate dehydrogenase|unclassified	0.0686607157
+UniRef50_Q1BVN0	0.0686585160
+UniRef50_Q1BVN0|unclassified	0.0686585160
+UniRef50_J0RDJ5	0.0686577370
+UniRef50_J0RDJ5|unclassified	0.0686577370
+UniRef50_D5X165: DNA polymerase III, delta' subunit	0.0686562420
+UniRef50_D5X165: DNA polymerase III, delta' subunit|unclassified	0.0686562420
+UniRef50_A8FNY3: Enolase	0.0686453594
+UniRef50_A8FNY3: Enolase|unclassified	0.0686453594
+UniRef50_R6X7T0: KamA family protein	0.0686418200
+UniRef50_R6X7T0: KamA family protein|unclassified	0.0686418200
+UniRef50_K1KKX5	0.0686375082
+UniRef50_K1KKX5|unclassified	0.0686375082
+UniRef50_Q89AR7: Superoxide dismutase [Mn]	0.0686345792
+UniRef50_Q89AR7: Superoxide dismutase [Mn]|unclassified	0.0686345792
+UniRef50_UPI000375BFC5: hypothetical protein	0.0686225098
+UniRef50_UPI000375BFC5: hypothetical protein|unclassified	0.0686225098
+UniRef50_UPI0002BC25BA: hypothetical protein, partial	0.0686176546
+UniRef50_UPI0002BC25BA: hypothetical protein, partial|unclassified	0.0686176546
+UniRef50_D5VC28: Tail assembly protein K	0.0686160520
+UniRef50_D5VC28: Tail assembly protein K|unclassified	0.0686160520
+UniRef50_UPI000377150D: hypothetical protein	0.0686149547
+UniRef50_UPI000377150D: hypothetical protein|unclassified	0.0686149547
+UniRef50_Q9PFQ0	0.0686121880
+UniRef50_Q9PFQ0|unclassified	0.0686121880
+UniRef50_P45204: Farnesyl diphosphate synthase	0.0686109661
+UniRef50_P45204: Farnesyl diphosphate synthase|unclassified	0.0686109661
+UniRef50_UPI0003B32984: signal peptidase I	0.0686083972
+UniRef50_UPI0003B32984: signal peptidase I|unclassified	0.0686083972
+UniRef50_W2UHR3: Chemotaxis protein LafU	0.0686076946
+UniRef50_W2UHR3: Chemotaxis protein LafU|unclassified	0.0686076946
+UniRef50_UPI00028A1B75: binding-protein-dependent transport systems inner membrane component	0.0685964243
+UniRef50_UPI00028A1B75: binding-protein-dependent transport systems inner membrane component|unclassified	0.0685964243
+UniRef50_UPI00047B3307: 2-oxoglutarate dehydrogenase	0.0685959611
+UniRef50_UPI00047B3307: 2-oxoglutarate dehydrogenase|unclassified	0.0685959611
+UniRef50_E3M3A4	0.0685893838
+UniRef50_E3M3A4|unclassified	0.0685893838
+UniRef50_UPI000255DFC1: hypothetical protein	0.0685875837
+UniRef50_UPI000255DFC1: hypothetical protein|unclassified	0.0685875837
+UniRef50_A9GVJ8	0.0685812539
+UniRef50_A9GVJ8|unclassified	0.0685812539
+UniRef50_R5RKK3: L-serine dehydratase	0.0685811051
+UniRef50_R5RKK3: L-serine dehydratase|unclassified	0.0685811051
+UniRef50_UPI0003B5EEA1: DNA gyrase subunit B, partial	0.0685737663
+UniRef50_UPI0003B5EEA1: DNA gyrase subunit B, partial|unclassified	0.0685737663
+UniRef50_UPI0003B63FA5: hemolysin III	0.0685737409
+UniRef50_UPI0003B63FA5: hemolysin III|unclassified	0.0685737409
+UniRef50_C0PP21	0.0685718494
+UniRef50_C0PP21|unclassified	0.0685718494
+UniRef50_J9GCQ2	0.0685585229
+UniRef50_J9GCQ2|unclassified	0.0685585229
+UniRef50_UPI0001FFE023: cation diffusion facilitator family transporter	0.0685584562
+UniRef50_UPI0001FFE023: cation diffusion facilitator family transporter|unclassified	0.0685584562
+UniRef50_A3TWE5	0.0685584067
+UniRef50_A3TWE5|unclassified	0.0685584067
+UniRef50_UPI000255638A: peptidylprolyl isomerase	0.0685526448
+UniRef50_UPI000255638A: peptidylprolyl isomerase|unclassified	0.0685526448
+UniRef50_UPI00046E9B56: MULTISPECIES: hypothetical protein	0.0685512058
+UniRef50_UPI00046E9B56: MULTISPECIES: hypothetical protein|unclassified	0.0685512058
+UniRef50_U7RK39	0.0685496582
+UniRef50_U7RK39|unclassified	0.0685496582
+UniRef50_A0A011QSB3: Multiple resistance and pH homeostasis protein B	0.0685486321
+UniRef50_A0A011QSB3: Multiple resistance and pH homeostasis protein B|unclassified	0.0685486321
+UniRef50_A0A058ZQ19: Putative cation transport protein	0.0685481893
+UniRef50_A0A058ZQ19: Putative cation transport protein|unclassified	0.0685481893
+UniRef50_N6UCJ2	0.0685472347
+UniRef50_N6UCJ2|unclassified	0.0685472347
+UniRef50_Q6F942	0.0685458963
+UniRef50_Q6F942|unclassified	0.0685458963
+UniRef50_UPI00046C997E: hypothetical protein	0.0685451727
+UniRef50_UPI00046C997E: hypothetical protein|unclassified	0.0685451727
+UniRef50_K0SMT2	0.0685446049
+UniRef50_K0SMT2|unclassified	0.0685446049
+UniRef50_W9YBB9	0.0685409860
+UniRef50_W9YBB9|unclassified	0.0685409860
+UniRef50_UPI0004776C78: PTS mannose transporter subunit IID	0.0685345375
+UniRef50_UPI0004776C78: PTS mannose transporter subunit IID|unclassified	0.0685345375
+UniRef50_UPI0004061050: hypothetical protein	0.0685298389
+UniRef50_UPI0004061050: hypothetical protein|unclassified	0.0685298389
+UniRef50_F0PEG3: Maltose/Maltotriose/maltodextrin ABC-transporter, MalX subunit	0.0685244704
+UniRef50_F0PEG3: Maltose/Maltotriose/maltodextrin ABC-transporter, MalX subunit|unclassified	0.0685244704
+UniRef50_K8YVN4	0.0685210924
+UniRef50_K8YVN4|unclassified	0.0685210924
+UniRef50_Q748D8: D-alanine--D-alanine ligase	0.0685208168
+UniRef50_Q748D8: D-alanine--D-alanine ligase|unclassified	0.0685208168
+UniRef50_A1WXZ3: Dual-specificity RNA methyltransferase RlmN	0.0685110950
+UniRef50_A1WXZ3: Dual-specificity RNA methyltransferase RlmN|unclassified	0.0685110950
+UniRef50_UPI0003B53C30: RNA polymerase subunit sigma-24	0.0685092410
+UniRef50_UPI0003B53C30: RNA polymerase subunit sigma-24|unclassified	0.0685092410
+UniRef50_Z9B5T5	0.0685076139
+UniRef50_Z9B5T5|unclassified	0.0685076139
+UniRef50_R8HFB4	0.0685065154
+UniRef50_R8HFB4|unclassified	0.0685065154
+UniRef50_Q7MT94: Tryptophan--tRNA ligase	0.0685060028
+UniRef50_Q7MT94: Tryptophan--tRNA ligase|unclassified	0.0685060028
+UniRef50_UPI000375344C: hypothetical protein	0.0685032629
+UniRef50_UPI000375344C: hypothetical protein|unclassified	0.0685032629
+UniRef50_T0YVF7: Pyridine nucleotide transhydrogenase subunit alpha	0.0684992914
+UniRef50_T0YVF7: Pyridine nucleotide transhydrogenase subunit alpha|unclassified	0.0684992914
+UniRef50_UPI000410297F: hydroxyglutarate oxidase	0.0684976415
+UniRef50_UPI000410297F: hydroxyglutarate oxidase|unclassified	0.0684976415
+UniRef50_UPI00037D4B02: hypothetical protein	0.0684971696
+UniRef50_UPI00037D4B02: hypothetical protein|unclassified	0.0684971696
+UniRef50_E6L6B8: ABC superfamily ATP binding cassette transporter	0.0684920481
+UniRef50_E6L6B8: ABC superfamily ATP binding cassette transporter|unclassified	0.0684920481
+UniRef50_UPI00034666CA: hypothetical protein	0.0684881627
+UniRef50_UPI00034666CA: hypothetical protein|unclassified	0.0684881627
+UniRef50_UPI000381949E: hypothetical protein	0.0684851544
+UniRef50_UPI000381949E: hypothetical protein|unclassified	0.0684851544
+UniRef50_UPI00046F0689: hypothetical protein	0.0684850262
+UniRef50_UPI00046F0689: hypothetical protein|unclassified	0.0684850262
+UniRef50_UPI000345A820: hypothetical protein	0.0684843311
+UniRef50_UPI000345A820: hypothetical protein|unclassified	0.0684843311
+UniRef50_UPI00017448FF: sodium:calcium antiporter	0.0684825157
+UniRef50_UPI00017448FF: sodium:calcium antiporter|unclassified	0.0684825157
+UniRef50_A1VBW6: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO	0.0684820193
+UniRef50_A1VBW6: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|unclassified	0.0684820193
+UniRef50_C6BXD5: UPF0234 protein Desal_2385	0.0684750950
+UniRef50_C6BXD5: UPF0234 protein Desal_2385|unclassified	0.0684750950
+UniRef50_UPI0003760F37: hypothetical protein	0.0684739639
+UniRef50_UPI0003760F37: hypothetical protein|unclassified	0.0684739639
+UniRef50_F0J493	0.0684666651
+UniRef50_F0J493|unclassified	0.0684666651
+UniRef50_UPI00046D03B0: hypothetical protein	0.0684666491
+UniRef50_UPI00046D03B0: hypothetical protein|unclassified	0.0684666491
+UniRef50_D1C9A4	0.0684658286
+UniRef50_D1C9A4|unclassified	0.0684658286
+UniRef50_UPI0004662D83: hypothetical protein	0.0684650144
+UniRef50_UPI0004662D83: hypothetical protein|unclassified	0.0684650144
+UniRef50_UPI00021941A9: ABC transporter ATP-binding protein	0.0684620504
+UniRef50_UPI00021941A9: ABC transporter ATP-binding protein|unclassified	0.0684620504
+UniRef50_A0A024PQA4: Tellurite resistance protein TehB	0.0684540430
+UniRef50_A0A024PQA4: Tellurite resistance protein TehB|unclassified	0.0684540430
+UniRef50_UPI0003717327: hypothetical protein	0.0684513448
+UniRef50_UPI0003717327: hypothetical protein|unclassified	0.0684513448
+UniRef50_UPI0003AA7974: signal recognition particle	0.0684513448
+UniRef50_UPI0003AA7974: signal recognition particle|unclassified	0.0684513448
+UniRef50_Q0BS04: Diaminopimelate epimerase	0.0684496286
+UniRef50_Q0BS04: Diaminopimelate epimerase|unclassified	0.0684496286
+UniRef50_A0A059IKD8	0.0684455249
+UniRef50_A0A059IKD8|unclassified	0.0684455249
+UniRef50_Q6C0D9: YALI0F25575p	0.0684410770
+UniRef50_Q6C0D9: YALI0F25575p|unclassified	0.0684410770
+UniRef50_B5YHP2: Non-canonical purine NTP pyrophosphatase	0.0684376216
+UniRef50_B5YHP2: Non-canonical purine NTP pyrophosphatase|unclassified	0.0684376216
+UniRef50_UPI000377D666: hypothetical protein	0.0684331185
+UniRef50_UPI000377D666: hypothetical protein|unclassified	0.0684331185
+UniRef50_A9RMD2: Predicted protein	0.0684310893
+UniRef50_A9RMD2: Predicted protein|unclassified	0.0684310893
+UniRef50_D3P109	0.0684295973
+UniRef50_D3P109|unclassified	0.0684295973
+UniRef50_UPI0002EEDC88: hypothetical protein	0.0684277340
+UniRef50_UPI0002EEDC88: hypothetical protein|unclassified	0.0684277340
+UniRef50_UPI00035C68B7: hypothetical protein	0.0684260059
+UniRef50_UPI00035C68B7: hypothetical protein|unclassified	0.0684260059
+UniRef50_P57090: Probable nicotinate-nucleotide adenylyltransferase	0.0684175529
+UniRef50_P57090: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.0684175529
+UniRef50_Q5F556: Probable nicotinate-nucleotide adenylyltransferase	0.0684175529
+UniRef50_Q5F556: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.0684175529
+UniRef50_UPI0003B6EAC3: transcriptional regulator	0.0684139181
+UniRef50_UPI0003B6EAC3: transcriptional regulator|unclassified	0.0684139181
+UniRef50_Q3JTV1	0.0684135258
+UniRef50_Q3JTV1|unclassified	0.0684135258
+UniRef50_Q9X7C5: Anthranilate synthase component 1	0.0684131749
+UniRef50_Q9X7C5: Anthranilate synthase component 1|unclassified	0.0684131749
+UniRef50_UPI000467D4D0: hypothetical protein	0.0684049766
+UniRef50_UPI000467D4D0: hypothetical protein|unclassified	0.0684049766
+UniRef50_Q9FYA6: Branched-chain-amino-acid aminotransferase 5, chloroplastic	0.0684043322
+UniRef50_Q9FYA6: Branched-chain-amino-acid aminotransferase 5, chloroplastic|unclassified	0.0684043322
+UniRef50_B8J430: Flagellar motor protein MotA	0.0683976235
+UniRef50_B8J430: Flagellar motor protein MotA|unclassified	0.0683976235
+UniRef50_U9V049	0.0683963376
+UniRef50_U9V049|unclassified	0.0683963376
+UniRef50_UPI00046596C5: alanine racemase, partial	0.0683911745
+UniRef50_UPI00046596C5: alanine racemase, partial|unclassified	0.0683911745
+UniRef50_UPI000473FE59: hypothetical protein, partial	0.0683897813
+UniRef50_UPI000473FE59: hypothetical protein, partial|unclassified	0.0683897813
+UniRef50_A3W4B4	0.0683872033
+UniRef50_A3W4B4|unclassified	0.0683872033
+UniRef50_M3DLE0	0.0683861528
+UniRef50_M3DLE0|unclassified	0.0683861528
+UniRef50_UPI0003A838D0: acyl-CoA dehydrogenase	0.0683856672
+UniRef50_UPI0003A838D0: acyl-CoA dehydrogenase|unclassified	0.0683856672
+UniRef50_B8IW50	0.0683836327
+UniRef50_B8IW50|unclassified	0.0683836327
+UniRef50_UPI00046E8929: hypothetical protein, partial	0.0683834346
+UniRef50_UPI00046E8929: hypothetical protein, partial|unclassified	0.0683834346
+UniRef50_UPI0003730703: hypothetical protein	0.0683794816
+UniRef50_UPI0003730703: hypothetical protein|unclassified	0.0683794816
+UniRef50_UPI00046ADB22: 3-hydroxyisobutyrate dehydrogenase	0.0683771329
+UniRef50_UPI00046ADB22: 3-hydroxyisobutyrate dehydrogenase|unclassified	0.0683771329
+UniRef50_A0A031J836: Transposase	0.0683687353
+UniRef50_A0A031J836: Transposase|unclassified	0.0683687353
+UniRef50_Q8T154: Uridine-cytidine kinase B	0.0683682965
+UniRef50_Q8T154: Uridine-cytidine kinase B|unclassified	0.0683682965
+UniRef50_E8XZE4	0.0683671234
+UniRef50_E8XZE4|unclassified	0.0683671234
+UniRef50_UPI00047500B5: hypothetical protein	0.0683667370
+UniRef50_UPI00047500B5: hypothetical protein|unclassified	0.0683667370
+UniRef50_Q8A2E9: ATP-dependent 6-phosphofructokinase 3	0.0683660903
+UniRef50_Q8A2E9: ATP-dependent 6-phosphofructokinase 3|unclassified	0.0683660903
+UniRef50_UPI0002DFDA5A: ABC transporter	0.0683565869
+UniRef50_UPI0002DFDA5A: ABC transporter|unclassified	0.0683565869
+UniRef50_K0SVJ8	0.0683377761
+UniRef50_K0SVJ8|unclassified	0.0683377761
+UniRef50_UPI00046FABED: tRNA methyltransferase	0.0683353138
+UniRef50_UPI00046FABED: tRNA methyltransferase|unclassified	0.0683353138
+UniRef50_UPI0003600171: hypothetical protein	0.0683285520
+UniRef50_UPI0003600171: hypothetical protein|unclassified	0.0683285520
+UniRef50_UPI000300D014: hypothetical protein	0.0683262160
+UniRef50_UPI000300D014: hypothetical protein|unclassified	0.0683262160
+UniRef50_UPI00031E60B3: leucine transcriptional activator	0.0683258407
+UniRef50_UPI00031E60B3: leucine transcriptional activator|unclassified	0.0683258407
+UniRef50_B0BXL4: NAD kinase	0.0683245655
+UniRef50_B0BXL4: NAD kinase|unclassified	0.0683245655
+UniRef50_UPI0004695782: hypothetical protein	0.0683176563
+UniRef50_UPI0004695782: hypothetical protein|unclassified	0.0683176563
+UniRef50_C2NRH6: Microbial collagenase	0.0683130911
+UniRef50_C2NRH6: Microbial collagenase|unclassified	0.0683130911
+UniRef50_UPI00016C589D: ribonuclease E	0.0683099757
+UniRef50_UPI00016C589D: ribonuclease E|unclassified	0.0683099757
+UniRef50_U3P5Z2	0.0683071476
+UniRef50_U3P5Z2|unclassified	0.0683071476
+UniRef50_C6C0N2: Peptidyl-tRNA hydrolase	0.0683022332
+UniRef50_C6C0N2: Peptidyl-tRNA hydrolase|unclassified	0.0683022332
+UniRef50_W1AKN1: FOG: Ankyrin repeat	0.0682944013
+UniRef50_W1AKN1: FOG: Ankyrin repeat|unclassified	0.0682944013
+UniRef50_UPI0002557923: hemolysin-type calcium-binding repeat family protein, partial	0.0682871821
+UniRef50_UPI0002557923: hemolysin-type calcium-binding repeat family protein, partial|unclassified	0.0682871821
+UniRef50_UPI0002FAA418: hypothetical protein	0.0682817946
+UniRef50_UPI0002FAA418: hypothetical protein|unclassified	0.0682817946
+UniRef50_X4YWC2	0.0682768566
+UniRef50_X4YWC2|unclassified	0.0682768566
+UniRef50_Q64MG2: Non-canonical purine NTP pyrophosphatase	0.0682745919
+UniRef50_Q64MG2: Non-canonical purine NTP pyrophosphatase|unclassified	0.0682745919
+UniRef50_UPI0004664E29: hypothetical protein	0.0682664821
+UniRef50_UPI0004664E29: hypothetical protein|unclassified	0.0682664821
+UniRef50_I9VGI3	0.0682618904
+UniRef50_I9VGI3|unclassified	0.0682618904
+UniRef50_A1B7J1	0.0682594870
+UniRef50_A1B7J1|unclassified	0.0682594870
+UniRef50_A3NUG3: Chorismate synthase	0.0682560029
+UniRef50_A3NUG3: Chorismate synthase|unclassified	0.0682560029
+UniRef50_B4FHZ2	0.0682424545
+UniRef50_B4FHZ2|unclassified	0.0682424545
+UniRef50_UPI0001E8E92E: bifunctional protein FolC	0.0682421803
+UniRef50_UPI0001E8E92E: bifunctional protein FolC|unclassified	0.0682421803
+UniRef50_Q21KT5: Tetratricopeptide TPR_2	0.0682399931
+UniRef50_Q21KT5: Tetratricopeptide TPR_2|unclassified	0.0682399931
+UniRef50_Q98FA5: Thiamine import ATP-binding protein ThiQ	0.0682399318
+UniRef50_Q98FA5: Thiamine import ATP-binding protein ThiQ|unclassified	0.0682399318
+UniRef50_UPI00037F09BF: hypothetical protein	0.0682313541
+UniRef50_UPI00037F09BF: hypothetical protein|unclassified	0.0682313541
+UniRef50_UPI0002B48AAB: PREDICTED: branched-chain-amino-acid aminotransferase-like, partial	0.0682272306
+UniRef50_UPI0002B48AAB: PREDICTED: branched-chain-amino-acid aminotransferase-like, partial|unclassified	0.0682272306
+UniRef50_UPI0002F648D4: hypothetical protein	0.0682183992
+UniRef50_UPI0002F648D4: hypothetical protein|unclassified	0.0682183992
+UniRef50_UPI0001745306: Asparagine synthase, glutamine-hydrolyzing	0.0682138089
+UniRef50_UPI0001745306: Asparagine synthase, glutamine-hydrolyzing|unclassified	0.0682138089
+UniRef50_W4HJ35	0.0682044046
+UniRef50_W4HJ35|unclassified	0.0682044046
+UniRef50_Q5LKW5: TRAP transporter, DctQ family	0.0682034639
+UniRef50_Q5LKW5: TRAP transporter, DctQ family|unclassified	0.0682034639
+UniRef50_W5BNZ7	0.0682020288
+UniRef50_W5BNZ7|unclassified	0.0682020288
+UniRef50_UPI0004671C5E: hypothetical protein	0.0681922854
+UniRef50_UPI0004671C5E: hypothetical protein|unclassified	0.0681922854
+UniRef50_Q08653: Anthranilate synthase component 1	0.0681885082
+UniRef50_Q08653: Anthranilate synthase component 1|unclassified	0.0681885082
+UniRef50_A0A037XRL3: Carbamoyl-phosphate synthase (Fragment)	0.0681856962
+UniRef50_A0A037XRL3: Carbamoyl-phosphate synthase (Fragment)|unclassified	0.0681856962
+UniRef50_UPI0002888835: glycerol-3-phosphatase	0.0681643256
+UniRef50_UPI0002888835: glycerol-3-phosphatase|unclassified	0.0681643256
+UniRef50_K0C281: Flagellar hook capping protein	0.0681623882
+UniRef50_K0C281: Flagellar hook capping protein|unclassified	0.0681623882
+UniRef50_UPI00035CC535: MULTISPECIES: hypothetical protein	0.0681585672
+UniRef50_UPI00035CC535: MULTISPECIES: hypothetical protein|unclassified	0.0681585672
+UniRef50_UPI0003794563: hypothetical protein, partial	0.0681562441
+UniRef50_UPI0003794563: hypothetical protein, partial|unclassified	0.0681562441
+UniRef50_UPI0003B68F93: ABC transporter ATPase	0.0681443436
+UniRef50_UPI0003B68F93: ABC transporter ATPase|unclassified	0.0681443436
+UniRef50_UPI0003680CE8: hypothetical protein	0.0681392688
+UniRef50_UPI0003680CE8: hypothetical protein|unclassified	0.0681392688
+UniRef50_UPI0003B42D49: 5-hydroxymethyluracil DNA glycosylase	0.0681193678
+UniRef50_UPI0003B42D49: 5-hydroxymethyluracil DNA glycosylase|unclassified	0.0681193678
+UniRef50_Q89AM1: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI	0.0681191156
+UniRef50_Q89AM1: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI|unclassified	0.0681191156
+UniRef50_E4TT44: Thioesterase superfamily protein	0.0681185452
+UniRef50_E4TT44: Thioesterase superfamily protein|unclassified	0.0681185452
+UniRef50_K9QIH9: Monosaccharide ABC transporter substrate-binding protein, CUT2 family	0.0681169139
+UniRef50_K9QIH9: Monosaccharide ABC transporter substrate-binding protein, CUT2 family|unclassified	0.0681169139
+UniRef50_Q5Z380: Glutamyl-Q tRNA(Asp) synthetase	0.0681090816
+UniRef50_Q5Z380: Glutamyl-Q tRNA(Asp) synthetase|unclassified	0.0681090816
+UniRef50_UPI00037171B8: hypothetical protein	0.0681086355
+UniRef50_UPI00037171B8: hypothetical protein|unclassified	0.0681086355
+UniRef50_UPI0004107246: iron-sulfur protein	0.0681028680
+UniRef50_UPI0004107246: iron-sulfur protein|unclassified	0.0681028680
+UniRef50_A0A011AKD6	0.0681009496
+UniRef50_A0A011AKD6|unclassified	0.0681009496
+UniRef50_A0A011R0M1: Dual specificity phosphatase, catalytic domain protein	0.0681003463
+UniRef50_A0A011R0M1: Dual specificity phosphatase, catalytic domain protein|unclassified	0.0681003463
+UniRef50_UPI000343FDF4: PREDICTED: major facilitator superfamily domain-containing protein 10 isoform X11	0.0680973263
+UniRef50_UPI000343FDF4: PREDICTED: major facilitator superfamily domain-containing protein 10 isoform X11|unclassified	0.0680973263
+UniRef50_G4RC98: Membrane-bound lytic murein transglycosylase B	0.0680959717
+UniRef50_G4RC98: Membrane-bound lytic murein transglycosylase B|unclassified	0.0680959717
+UniRef50_UPI00037A0221: hypothetical protein	0.0680775720
+UniRef50_UPI00037A0221: hypothetical protein|unclassified	0.0680775720
+UniRef50_UPI00040E6987: hypothetical protein	0.0680763146
+UniRef50_UPI00040E6987: hypothetical protein|unclassified	0.0680763146
+UniRef50_B1W3Y6: Adenylate kinase	0.0680723827
+UniRef50_B1W3Y6: Adenylate kinase|unclassified	0.0680723827
+UniRef50_UPI0002F045F1: hypothetical protein	0.0680723323
+UniRef50_UPI0002F045F1: hypothetical protein|unclassified	0.0680723323
+UniRef50_P10725: Alanine racemase 1	0.0680709222
+UniRef50_P10725: Alanine racemase 1|unclassified	0.0680709222
+UniRef50_UPI00046ADAE1: AraC family transcriptional regulator	0.0680678291
+UniRef50_UPI00046ADAE1: AraC family transcriptional regulator|unclassified	0.0680678291
+UniRef50_UPI000363E8A7: hypothetical protein	0.0680539147
+UniRef50_UPI000363E8A7: hypothetical protein|unclassified	0.0680539147
+UniRef50_P37292: Serine hydroxymethyltransferase, mitochondrial	0.0680405286
+UniRef50_P37292: Serine hydroxymethyltransferase, mitochondrial|unclassified	0.0680405286
+UniRef50_UPI00035FE668: hypothetical protein	0.0680327979
+UniRef50_UPI00035FE668: hypothetical protein|unclassified	0.0680327979
+UniRef50_S6AK43	0.0680264277
+UniRef50_S6AK43|unclassified	0.0680264277
+UniRef50_UPI00036BF70E: hypothetical protein	0.0680262468
+UniRef50_UPI00036BF70E: hypothetical protein|unclassified	0.0680262468
+UniRef50_UPI000479A295: mannitol dehydrogenase	0.0680221718
+UniRef50_UPI000479A295: mannitol dehydrogenase|unclassified	0.0680221718
+UniRef50_W8EUG3	0.0680165111
+UniRef50_W8EUG3|unclassified	0.0680165111
+UniRef50_UPI0003B3CBDF: ribokinase	0.0680163967
+UniRef50_UPI0003B3CBDF: ribokinase|unclassified	0.0680163967
+UniRef50_UPI0000397F88: COG3302: DMSO reductase anchor subunit	0.0680161040
+UniRef50_UPI0000397F88: COG3302: DMSO reductase anchor subunit|unclassified	0.0680161040
+UniRef50_UPI00037D41F0: hypothetical protein	0.0680148326
+UniRef50_UPI00037D41F0: hypothetical protein|unclassified	0.0680148326
+UniRef50_UPI00040CA2CE: MULTISPECIES: 3-oxoacyl-ACP reductase	0.0680114764
+UniRef50_UPI00040CA2CE: MULTISPECIES: 3-oxoacyl-ACP reductase|unclassified	0.0680114764
+UniRef50_UPI0004783FA2: hypothetical protein	0.0680108488
+UniRef50_UPI0004783FA2: hypothetical protein|unclassified	0.0680108488
+UniRef50_UPI0004688B71: hypothetical protein	0.0680095440
+UniRef50_UPI0004688B71: hypothetical protein|unclassified	0.0680095440
+UniRef50_E3CYT4: MazG family protein	0.0680067869
+UniRef50_E3CYT4: MazG family protein|unclassified	0.0680067869
+UniRef50_Q6F9R1: Protoheme IX farnesyltransferase	0.0680058011
+UniRef50_Q6F9R1: Protoheme IX farnesyltransferase|unclassified	0.0680058011
+UniRef50_T0RRP2	0.0680048511
+UniRef50_T0RRP2|unclassified	0.0680048511
+UniRef50_P95999: Geranylgeranyl diphosphate synthase	0.0680041547
+UniRef50_P95999: Geranylgeranyl diphosphate synthase|unclassified	0.0680041547
+UniRef50_UPI0003B649BA: ABC transporter permease	0.0680023704
+UniRef50_UPI0003B649BA: ABC transporter permease|unclassified	0.0680023704
+UniRef50_X1APZ4: Marine sediment metagenome DNA, contig: S01H4_C01999 (Fragment)	0.0679977011
+UniRef50_X1APZ4: Marine sediment metagenome DNA, contig: S01H4_C01999 (Fragment)|unclassified	0.0679977011
+UniRef50_R6I4T0: Short-chain dehydrogenase/reductase SDR	0.0679953601
+UniRef50_R6I4T0: Short-chain dehydrogenase/reductase SDR|unclassified	0.0679953601
+UniRef50_T1BKV4: UBA/THIF-type NAD/FAD binding protein (Fragment)	0.0679943902
+UniRef50_T1BKV4: UBA/THIF-type NAD/FAD binding protein (Fragment)|unclassified	0.0679943902
+UniRef50_B0K5F4: Glutamate--tRNA ligase 1	0.0679899334
+UniRef50_B0K5F4: Glutamate--tRNA ligase 1|unclassified	0.0679899334
+UniRef50_UPI00046D92DA: hypothetical protein	0.0679867658
+UniRef50_UPI00046D92DA: hypothetical protein|unclassified	0.0679867658
+UniRef50_UPI0004716E7C: acetolactate synthase	0.0679858962
+UniRef50_UPI0004716E7C: acetolactate synthase|unclassified	0.0679858962
+UniRef50_UPI00046E91F0: ATP-dependent DNA helicase RuvB	0.0679822714
+UniRef50_UPI00046E91F0: ATP-dependent DNA helicase RuvB|unclassified	0.0679822714
+UniRef50_D3P4J7	0.0679800408
+UniRef50_D3P4J7|unclassified	0.0679800408
+UniRef50_I3YB70: Type VI secretion-associated protein, ImpA family	0.0679779821
+UniRef50_I3YB70: Type VI secretion-associated protein, ImpA family|unclassified	0.0679779821
+UniRef50_UPI0003B37585: ABC transporter	0.0679769595
+UniRef50_UPI0003B37585: ABC transporter|unclassified	0.0679769595
+UniRef50_UPI000479FC4B: hypothetical protein	0.0679767638
+UniRef50_UPI000479FC4B: hypothetical protein|unclassified	0.0679767638
+UniRef50_UPI00037C9AFC: hypothetical protein	0.0679739029
+UniRef50_UPI00037C9AFC: hypothetical protein|unclassified	0.0679739029
+UniRef50_UPI0003772B6E: hypothetical protein	0.0679693796
+UniRef50_UPI0003772B6E: hypothetical protein|unclassified	0.0679693796
+UniRef50_UPI0004733CF0: hypothetical protein, partial	0.0679690410
+UniRef50_UPI0004733CF0: hypothetical protein, partial|unclassified	0.0679690410
+UniRef50_A0A023NQZ7: Lysine decarboxylase	0.0679668267
+UniRef50_A0A023NQZ7: Lysine decarboxylase|unclassified	0.0679668267
+UniRef50_UPI0003F94A7F: molecular chaperone DnaK	0.0679647375
+UniRef50_UPI0003F94A7F: molecular chaperone DnaK|unclassified	0.0679647375
+UniRef50_UPI0003B606D9: glutamyl-tRNA synthetase	0.0679641371
+UniRef50_UPI0003B606D9: glutamyl-tRNA synthetase|unclassified	0.0679641371
+UniRef50_A0A017SZJ0	0.0679601978
+UniRef50_A0A017SZJ0|unclassified	0.0679601978
+UniRef50_UPI0003667B20: hypothetical protein	0.0679576534
+UniRef50_UPI0003667B20: hypothetical protein|unclassified	0.0679576534
+UniRef50_Q3IF86: UPF0502 protein PSHAa0076	0.0679564672
+UniRef50_Q3IF86: UPF0502 protein PSHAa0076|unclassified	0.0679564672
+UniRef50_UPI0003737D75: hypothetical protein	0.0679475677
+UniRef50_UPI0003737D75: hypothetical protein|unclassified	0.0679475677
+UniRef50_Q4FPD2: Protoheme IX farnesyltransferase	0.0679403681
+UniRef50_Q4FPD2: Protoheme IX farnesyltransferase|unclassified	0.0679403681
+UniRef50_F7ZDL0	0.0679326881
+UniRef50_F7ZDL0|unclassified	0.0679326881
+UniRef50_UPI0004774A46: pseudouridine synthase	0.0679315959
+UniRef50_UPI0004774A46: pseudouridine synthase|unclassified	0.0679315959
+UniRef50_S9TJX0	0.0679314219
+UniRef50_S9TJX0|unclassified	0.0679314219
+UniRef50_F0T2Q5: Sporulation protein YtaF	0.0679256746
+UniRef50_F0T2Q5: Sporulation protein YtaF|unclassified	0.0679256746
+UniRef50_E6TS17	0.0679252392
+UniRef50_E6TS17|unclassified	0.0679252392
+UniRef50_UPI00040386ED: hypothetical protein	0.0679222853
+UniRef50_UPI00040386ED: hypothetical protein|unclassified	0.0679222853
+UniRef50_UPI0003C8E201: PREDICTED: trifunctional purine biosynthetic protein adenosine-3-like isoform X1	0.0679164773
+UniRef50_UPI0003C8E201: PREDICTED: trifunctional purine biosynthetic protein adenosine-3-like isoform X1|unclassified	0.0679164773
+UniRef50_A7INF0: Rare lipoprotein A	0.0679163784
+UniRef50_A7INF0: Rare lipoprotein A|unclassified	0.0679163784
+UniRef50_UPI0003B4B13C: RNA polymerase sigma24 factor	0.0679133724
+UniRef50_UPI0003B4B13C: RNA polymerase sigma24 factor|unclassified	0.0679133724
+UniRef50_UPI00029AF24B: hypothetical protein	0.0679097994
+UniRef50_UPI00029AF24B: hypothetical protein|unclassified	0.0679097994
+UniRef50_K2EHC4	0.0679076015
+UniRef50_K2EHC4|unclassified	0.0679076015
+UniRef50_A1ASI1: Type II secretion system protein	0.0678966028
+UniRef50_A1ASI1: Type II secretion system protein|unclassified	0.0678966028
+UniRef50_P48635: Erythromycin C-12 hydroxylase	0.0678904455
+UniRef50_P48635: Erythromycin C-12 hydroxylase|unclassified	0.0678904455
+UniRef50_D9T4T6: Aldo/keto reductase	0.0678761815
+UniRef50_D9T4T6: Aldo/keto reductase|unclassified	0.0678761815
+UniRef50_UPI00037EC15C: hypothetical protein	0.0678757867
+UniRef50_UPI00037EC15C: hypothetical protein|unclassified	0.0678757867
+UniRef50_A1AZK8: Membrane protein involved in aromatic hydrocarbon degradation	0.0678682210
+UniRef50_A1AZK8: Membrane protein involved in aromatic hydrocarbon degradation|unclassified	0.0678682210
+UniRef50_E4RMT6: TRAP transporter solute receptor, TAXI family	0.0678680191
+UniRef50_E4RMT6: TRAP transporter solute receptor, TAXI family|unclassified	0.0678680191
+UniRef50_P10173: Fumarate hydratase, mitochondrial	0.0678670214
+UniRef50_P10173: Fumarate hydratase, mitochondrial|unclassified	0.0678670214
+UniRef50_Q21A53: Ethanolamine utilization protein EutJ	0.0678669400
+UniRef50_Q21A53: Ethanolamine utilization protein EutJ|unclassified	0.0678669400
+UniRef50_UPI0000221CE0: Hypothetical protein CBG00492, partial	0.0678646741
+UniRef50_UPI0000221CE0: Hypothetical protein CBG00492, partial|unclassified	0.0678646741
+UniRef50_UPI000366CDCC: hypothetical protein	0.0678585141
+UniRef50_UPI000366CDCC: hypothetical protein|unclassified	0.0678585141
+UniRef50_UPI0003809570: hypothetical protein	0.0678535142
+UniRef50_UPI0003809570: hypothetical protein|unclassified	0.0678535142
+UniRef50_UPI0001F26E9A: hypothetical protein ANI_1_2892014	0.0678467043
+UniRef50_UPI0001F26E9A: hypothetical protein ANI_1_2892014|unclassified	0.0678467043
+UniRef50_F9XEB9	0.0678412465
+UniRef50_F9XEB9|unclassified	0.0678412465
+UniRef50_UPI000471262E: hypothetical protein	0.0678381135
+UniRef50_UPI000471262E: hypothetical protein|unclassified	0.0678381135
+UniRef50_UPI0002556222: ATP-dependent DNA helicase Rep	0.0678379715
+UniRef50_UPI0002556222: ATP-dependent DNA helicase Rep|unclassified	0.0678379715
+UniRef50_X0T7D8: Marine sediment metagenome DNA, contig: S01H1_L03026 (Fragment)	0.0678377102
+UniRef50_X0T7D8: Marine sediment metagenome DNA, contig: S01H1_L03026 (Fragment)|unclassified	0.0678377102
+UniRef50_N8ZPV3	0.0678316203
+UniRef50_N8ZPV3|unclassified	0.0678316203
+UniRef50_UPI000365EB4D: excinuclease ABC subunit A	0.0678306866
+UniRef50_UPI000365EB4D: excinuclease ABC subunit A|unclassified	0.0678306866
+UniRef50_UPI000366F76E: hypothetical protein	0.0678306436
+UniRef50_UPI000366F76E: hypothetical protein|unclassified	0.0678306436
+UniRef50_I0R1T6	0.0678295576
+UniRef50_I0R1T6|unclassified	0.0678295576
+UniRef50_UPI000248F30A: major facilitator superfamily mfs_1	0.0678238072
+UniRef50_UPI000248F30A: major facilitator superfamily mfs_1|unclassified	0.0678238072
+UniRef50_UPI000375CCF4: hypothetical protein	0.0678229526
+UniRef50_UPI000375CCF4: hypothetical protein|unclassified	0.0678229526
+UniRef50_UPI00045DEE5F: PREDICTED: methionine--tRNA ligase, cytoplasmic	0.0678186815
+UniRef50_UPI00045DEE5F: PREDICTED: methionine--tRNA ligase, cytoplasmic|unclassified	0.0678186815
+UniRef50_W7C7D9	0.0678146347
+UniRef50_W7C7D9|unclassified	0.0678146347
+UniRef50_UPI000469DD13: sodium:proton antiporter	0.0678136487
+UniRef50_UPI000469DD13: sodium:proton antiporter|unclassified	0.0678136487
+UniRef50_UPI0004694C40: hypothetical protein	0.0678124700
+UniRef50_UPI0004694C40: hypothetical protein|unclassified	0.0678124700
+UniRef50_UPI000395877C: PREDICTED: serine/arginine repetitive matrix protein 1-like	0.0678022397
+UniRef50_UPI000395877C: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	0.0678022397
+UniRef50_UPI00031DE78E: hypothetical protein	0.0677990365
+UniRef50_UPI00031DE78E: hypothetical protein|unclassified	0.0677990365
+UniRef50_UPI00028A0814: hypothetical protein	0.0677875238
+UniRef50_UPI00028A0814: hypothetical protein|unclassified	0.0677875238
+UniRef50_UPI0004694A8C: hypothetical protein	0.0677869312
+UniRef50_UPI0004694A8C: hypothetical protein|unclassified	0.0677869312
+UniRef50_G4B1K2: Transcription-repair coupling factor	0.0677867952
+UniRef50_G4B1K2: Transcription-repair coupling factor|unclassified	0.0677867952
+UniRef50_UPI000473008C: hypothetical protein	0.0677826167
+UniRef50_UPI000473008C: hypothetical protein|unclassified	0.0677826167
+UniRef50_UPI00037C9ACE: hypothetical protein	0.0677817973
+UniRef50_UPI00037C9ACE: hypothetical protein|unclassified	0.0677817973
+UniRef50_Q8RKI7: Putative N-acetylmannosaminyltransferase	0.0677803942
+UniRef50_Q8RKI7: Putative N-acetylmannosaminyltransferase|unclassified	0.0677803942
+UniRef50_UPI0002F4F062: tail protein	0.0677789541
+UniRef50_UPI0002F4F062: tail protein|unclassified	0.0677789541
+UniRef50_UPI0003B745D8: glutamine amidotransferase	0.0677704573
+UniRef50_UPI0003B745D8: glutamine amidotransferase|unclassified	0.0677704573
+UniRef50_A0A024EBN1	0.0677679983
+UniRef50_A0A024EBN1|unclassified	0.0677679983
+UniRef50_UPI000478547C: ABC transporter permease	0.0677666566
+UniRef50_UPI000478547C: ABC transporter permease|unclassified	0.0677666566
+UniRef50_D1A5S2: Chromosome segregation ATPase-like protein	0.0677649936
+UniRef50_D1A5S2: Chromosome segregation ATPase-like protein|unclassified	0.0677649936
+UniRef50_Q5FQ54: Arginine--tRNA ligase	0.0677645276
+UniRef50_Q5FQ54: Arginine--tRNA ligase|unclassified	0.0677645276
+UniRef50_D6Y2A9: 40-residue YVTN family beta-propeller repeat protein	0.0677553702
+UniRef50_D6Y2A9: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.0677553702
+UniRef50_K9B4I2: Periplasmic binding protein/LacI transcriptional regulator	0.0677510899
+UniRef50_K9B4I2: Periplasmic binding protein/LacI transcriptional regulator|unclassified	0.0677510899
+UniRef50_B7L1V4	0.0677413504
+UniRef50_B7L1V4|unclassified	0.0677413504
+UniRef50_H1BLZ4	0.0677407029
+UniRef50_H1BLZ4|unclassified	0.0677407029
+UniRef50_UPI00025578A6: dihydroxyacetone kinase	0.0677334925
+UniRef50_UPI00025578A6: dihydroxyacetone kinase|unclassified	0.0677334925
+UniRef50_UPI00047BD60A: hypothetical protein	0.0677272213
+UniRef50_UPI00047BD60A: hypothetical protein|unclassified	0.0677272213
+UniRef50_F0SMY2: Type II secretion system F domain protein	0.0677252419
+UniRef50_F0SMY2: Type II secretion system F domain protein|unclassified	0.0677252419
+UniRef50_UPI00035E2168: GDP-L-fucose synthase	0.0677242504
+UniRef50_UPI00035E2168: GDP-L-fucose synthase|unclassified	0.0677242504
+UniRef50_UPI0002F4135C: hypothetical protein	0.0677235919
+UniRef50_UPI0002F4135C: hypothetical protein|unclassified	0.0677235919
+UniRef50_G8MHP7: CHAD domain containing protein	0.0677192872
+UniRef50_G8MHP7: CHAD domain containing protein|unclassified	0.0677192872
+UniRef50_UPI0003AB5CEA: PREDICTED: basic proline-rich protein-like, partial	0.0677175769
+UniRef50_UPI0003AB5CEA: PREDICTED: basic proline-rich protein-like, partial|unclassified	0.0677175769
+UniRef50_C0N6N2	0.0677173814
+UniRef50_C0N6N2|unclassified	0.0677173814
+UniRef50_B9KXJ4: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.0677089990
+UniRef50_B9KXJ4: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.0677089990
+UniRef50_UPI0004770856: hypothetical protein	0.0677070679
+UniRef50_UPI0004770856: hypothetical protein|unclassified	0.0677070679
+UniRef50_UPI00046890A9: hypothetical protein	0.0677050725
+UniRef50_UPI00046890A9: hypothetical protein|unclassified	0.0677050725
+UniRef50_R6YEM1	0.0677034394
+UniRef50_R6YEM1|unclassified	0.0677034394
+UniRef50_UPI00036035E7: hypothetical protein	0.0676981400
+UniRef50_UPI00036035E7: hypothetical protein|unclassified	0.0676981400
+UniRef50_UPI0004786216: hypothetical protein	0.0676914733
+UniRef50_UPI0004786216: hypothetical protein|unclassified	0.0676914733
+UniRef50_UPI00037E8439: iron transporter FeoB	0.0676880359
+UniRef50_UPI00037E8439: iron transporter FeoB|unclassified	0.0676880359
+UniRef50_UPI00037E745E: cytochrome C oxidase subunit II	0.0676872573
+UniRef50_UPI00037E745E: cytochrome C oxidase subunit II|unclassified	0.0676872573
+UniRef50_UPI000362C621: hypothetical protein	0.0676866369
+UniRef50_UPI000362C621: hypothetical protein|unclassified	0.0676866369
+UniRef50_UPI00035F3A61: hypothetical protein, partial	0.0676809316
+UniRef50_UPI00035F3A61: hypothetical protein, partial|unclassified	0.0676809316
+UniRef50_E9C0P4	0.0676754162
+UniRef50_E9C0P4|unclassified	0.0676754162
+UniRef50_H7F5K8: UPF0348 protein KKC_07692	0.0676727853
+UniRef50_H7F5K8: UPF0348 protein KKC_07692|unclassified	0.0676727853
+UniRef50_F2HL18: Maltose ABC transporter substrate binding protein	0.0676712343
+UniRef50_F2HL18: Maltose ABC transporter substrate binding protein|unclassified	0.0676712343
+UniRef50_UPI0003793C00: hypothetical protein	0.0676709502
+UniRef50_UPI0003793C00: hypothetical protein|unclassified	0.0676709502
+UniRef50_M2P7T8	0.0676695803
+UniRef50_M2P7T8|unclassified	0.0676695803
+UniRef50_A0KJE0: Leucyl/phenylalanyl-tRNA--protein transferase	0.0676685825
+UniRef50_A0KJE0: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.0676685825
+UniRef50_C5CFW2: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0676664282
+UniRef50_C5CFW2: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0676664282
+UniRef50_UPI0003A3F0F8: amino acid transporter	0.0676659299
+UniRef50_UPI0003A3F0F8: amino acid transporter|unclassified	0.0676659299
+UniRef50_A6FFN2	0.0676628178
+UniRef50_A6FFN2|unclassified	0.0676628178
+UniRef50_A5VMB6: Ethanolamine utilization protein EutJ family protein	0.0676620422
+UniRef50_A5VMB6: Ethanolamine utilization protein EutJ family protein|unclassified	0.0676620422
+UniRef50_UPI00036401B0: hypothetical protein	0.0676596952
+UniRef50_UPI00036401B0: hypothetical protein|unclassified	0.0676596952
+UniRef50_Q8EVF5: Ornithine carbamoyltransferase, catabolic	0.0676560257
+UniRef50_Q8EVF5: Ornithine carbamoyltransferase, catabolic|unclassified	0.0676560257
+UniRef50_UPI0003DF5D8D: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial-like isoform X2	0.0676530651
+UniRef50_UPI0003DF5D8D: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial-like isoform X2|unclassified	0.0676530651
+UniRef50_UPI00041819DF: glycine cleavage system protein T	0.0676515444
+UniRef50_UPI00041819DF: glycine cleavage system protein T|unclassified	0.0676515444
+UniRef50_UPI00046E596B: cardiolipin synthetase	0.0676507787
+UniRef50_UPI00046E596B: cardiolipin synthetase|unclassified	0.0676507787
+UniRef50_UPI00036F5061: hypothetical protein	0.0676493510
+UniRef50_UPI00036F5061: hypothetical protein|unclassified	0.0676493510
+UniRef50_UPI0004432C18: PREDICTED: basic proline-rich protein-like	0.0676429566
+UniRef50_UPI0004432C18: PREDICTED: basic proline-rich protein-like|unclassified	0.0676429566
+UniRef50_UPI00036E58E7: hypothetical protein	0.0676398340
+UniRef50_UPI00036E58E7: hypothetical protein|unclassified	0.0676398340
+UniRef50_Q1N1F2	0.0676370589
+UniRef50_Q1N1F2|unclassified	0.0676370589
+UniRef50_UPI0003684DFB: hypothetical protein	0.0676350185
+UniRef50_UPI0003684DFB: hypothetical protein|unclassified	0.0676350185
+UniRef50_A0A017RMU1: Virulence protein SrfB	0.0676272477
+UniRef50_A0A017RMU1: Virulence protein SrfB|unclassified	0.0676272477
+UniRef50_U1FB42	0.0676234844
+UniRef50_U1FB42|unclassified	0.0676234844
+UniRef50_Q7U9I1: Ribonuclease PH	0.0676136224
+UniRef50_Q7U9I1: Ribonuclease PH|unclassified	0.0676136224
+UniRef50_UPI0003DE98F5	0.0676112743
+UniRef50_UPI0003DE98F5|unclassified	0.0676112743
+UniRef50_UPI00046D2A0A: hypothetical protein	0.0676017388
+UniRef50_UPI00046D2A0A: hypothetical protein|unclassified	0.0676017388
+UniRef50_H0A653: ChaC-like protein	0.0675981028
+UniRef50_H0A653: ChaC-like protein|unclassified	0.0675981028
+UniRef50_UPI00047855CC: hypothetical protein	0.0675962979
+UniRef50_UPI00047855CC: hypothetical protein|unclassified	0.0675962979
+UniRef50_S2XSZ9	0.0675955051
+UniRef50_S2XSZ9|unclassified	0.0675955051
+UniRef50_Q2S5J0: NADH-quinone oxidoreductase subunit D	0.0675943408
+UniRef50_Q2S5J0: NADH-quinone oxidoreductase subunit D|unclassified	0.0675943408
+UniRef50_UPI000479EB09: hypothetical protein	0.0675903036
+UniRef50_UPI000479EB09: hypothetical protein|unclassified	0.0675903036
+UniRef50_F4QG84	0.0675815593
+UniRef50_F4QG84|unclassified	0.0675815593
+UniRef50_K2INS7	0.0675775964
+UniRef50_K2INS7|unclassified	0.0675775964
+UniRef50_UPI0004762BB1: hypothetical protein	0.0675716888
+UniRef50_UPI0004762BB1: hypothetical protein|unclassified	0.0675716888
+UniRef50_UPI000307C03A: hypothetical protein	0.0675713109
+UniRef50_UPI000307C03A: hypothetical protein|unclassified	0.0675713109
+UniRef50_UPI00046E5C8F: methyltransferase FkbM, partial	0.0675549004
+UniRef50_UPI00046E5C8F: methyltransferase FkbM, partial|unclassified	0.0675549004
+UniRef50_S4YXA5: Meta-pathway phenol degradation-like protein	0.0675366061
+UniRef50_S4YXA5: Meta-pathway phenol degradation-like protein|unclassified	0.0675366061
+UniRef50_C0R0E0: Polyribonucleotide nucleotidyltransferase	0.0675343530
+UniRef50_C0R0E0: Polyribonucleotide nucleotidyltransferase|unclassified	0.0675343530
+UniRef50_UPI00047D1968: PTS cellobiose transporter subunit IIC	0.0675330874
+UniRef50_UPI00047D1968: PTS cellobiose transporter subunit IIC|unclassified	0.0675330874
+UniRef50_UPI00047CE802: hypothetical protein	0.0675299392
+UniRef50_UPI00047CE802: hypothetical protein|unclassified	0.0675299392
+UniRef50_W8U3R3: Poly-beta-1,6-N-acetyl-D-glucosamine export protein	0.0675294527
+UniRef50_W8U3R3: Poly-beta-1,6-N-acetyl-D-glucosamine export protein|unclassified	0.0675294527
+UniRef50_E6W7I5	0.0675288082
+UniRef50_E6W7I5|unclassified	0.0675288082
+UniRef50_UPI00047C4DAE: hypothetical protein	0.0675264210
+UniRef50_UPI00047C4DAE: hypothetical protein|unclassified	0.0675264210
+UniRef50_UPI0003683D8C: hypothetical protein	0.0675263553
+UniRef50_UPI0003683D8C: hypothetical protein|unclassified	0.0675263553
+UniRef50_F8DYM7	0.0675230975
+UniRef50_F8DYM7|unclassified	0.0675230975
+UniRef50_Q5P260: Glycerol-3-phosphate acyltransferase	0.0675191919
+UniRef50_Q5P260: Glycerol-3-phosphate acyltransferase|unclassified	0.0675191919
+UniRef50_UPI00046FED96: cytidylate kinase	0.0675152319
+UniRef50_UPI00046FED96: cytidylate kinase|unclassified	0.0675152319
+UniRef50_UPI0004188538: hypothetical protein	0.0675148795
+UniRef50_UPI0004188538: hypothetical protein|unclassified	0.0675148795
+UniRef50_Q4A738: tRNA (guanine-N(1)-)-methyltransferase	0.0675144767
+UniRef50_Q4A738: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0675144767
+UniRef50_S3PAW1	0.0675130796
+UniRef50_S3PAW1|unclassified	0.0675130796
+UniRef50_UPI00046CA03D: hypothetical protein	0.0675119654
+UniRef50_UPI00046CA03D: hypothetical protein|unclassified	0.0675119654
+UniRef50_UPI00047D46B9: hypothetical protein, partial	0.0675080199
+UniRef50_UPI00047D46B9: hypothetical protein, partial|unclassified	0.0675080199
+UniRef50_UPI0003648E77: hypothetical protein	0.0675073183
+UniRef50_UPI0003648E77: hypothetical protein|unclassified	0.0675073183
+UniRef50_UPI0003B46ECC: AbrB family transcriptional regulator	0.0674998247
+UniRef50_UPI0003B46ECC: AbrB family transcriptional regulator|unclassified	0.0674998247
+UniRef50_V9QPJ8	0.0674979704
+UniRef50_V9QPJ8|unclassified	0.0674979704
+UniRef50_W7Q9V9: C4-dicarboxylate ABC transporter permease	0.0674959671
+UniRef50_W7Q9V9: C4-dicarboxylate ABC transporter permease|unclassified	0.0674959671
+UniRef50_Q12PW9	0.0674884105
+UniRef50_Q12PW9|unclassified	0.0674884105
+UniRef50_UPI0003683BB9: hypothetical protein	0.0674848682
+UniRef50_UPI0003683BB9: hypothetical protein|unclassified	0.0674848682
+UniRef50_UPI00046CCEC4: peptidase P60	0.0674740881
+UniRef50_UPI00046CCEC4: peptidase P60|unclassified	0.0674740881
+UniRef50_D0MKU7	0.0674718898
+UniRef50_D0MKU7|unclassified	0.0674718898
+UniRef50_Q47WT5: Lysine--tRNA ligase	0.0674694780
+UniRef50_Q47WT5: Lysine--tRNA ligase|unclassified	0.0674694780
+UniRef50_UPI00037E457D: hypothetical protein	0.0674688966
+UniRef50_UPI00037E457D: hypothetical protein|unclassified	0.0674688966
+UniRef50_G2IQ99: Peptidase M23B family protein	0.0674585943
+UniRef50_G2IQ99: Peptidase M23B family protein|unclassified	0.0674585943
+UniRef50_Q28VL7: Thiamine import ATP-binding protein ThiQ	0.0674536418
+UniRef50_Q28VL7: Thiamine import ATP-binding protein ThiQ|unclassified	0.0674536418
+UniRef50_K8C5Q7	0.0674403448
+UniRef50_K8C5Q7|unclassified	0.0674403448
+UniRef50_A3TUM6: Lipoprotein, putative	0.0674386069
+UniRef50_A3TUM6: Lipoprotein, putative|unclassified	0.0674386069
+UniRef50_F7KCJ2	0.0674363769
+UniRef50_F7KCJ2|unclassified	0.0674363769
+UniRef50_Q3JPM4: 3-octaprenyl-4-hydroxybenzoate carboxy-lyase	0.0674289635
+UniRef50_Q3JPM4: 3-octaprenyl-4-hydroxybenzoate carboxy-lyase|unclassified	0.0674289635
+UniRef50_UPI00047252F0: LysR family transcriptional regulator	0.0674289060
+UniRef50_UPI00047252F0: LysR family transcriptional regulator|unclassified	0.0674289060
+UniRef50_UPI00047208F5: hypothetical protein, partial	0.0674279495
+UniRef50_UPI00047208F5: hypothetical protein, partial|unclassified	0.0674279495
+UniRef50_UPI0003453A40: hypothetical protein	0.0674214001
+UniRef50_UPI0003453A40: hypothetical protein|unclassified	0.0674214001
+UniRef50_UPI0003B597DA: short-chain dehydrogenase	0.0674196660
+UniRef50_UPI0003B597DA: short-chain dehydrogenase|unclassified	0.0674196660
+UniRef50_UPI00037C5CDC: hypothetical protein, partial	0.0674178062
+UniRef50_UPI00037C5CDC: hypothetical protein, partial|unclassified	0.0674178062
+UniRef50_UPI000473F11D: hypothetical protein	0.0674167459
+UniRef50_UPI000473F11D: hypothetical protein|unclassified	0.0674167459
+UniRef50_Q8FQP8: Fumarate hydratase class II	0.0674104877
+UniRef50_Q8FQP8: Fumarate hydratase class II|unclassified	0.0674104877
+UniRef50_UPI0003A4BE0B: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase	0.0674062120
+UniRef50_UPI0003A4BE0B: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase|unclassified	0.0674062120
+UniRef50_UPI000376843A: hypothetical protein	0.0673930073
+UniRef50_UPI000376843A: hypothetical protein|unclassified	0.0673930073
+UniRef50_E6TQQ6: Lipoprotein	0.0673924879
+UniRef50_E6TQQ6: Lipoprotein|unclassified	0.0673924879
+UniRef50_UPI000466FD4A: MULTISPECIES: acetyltransferase	0.0673875177
+UniRef50_UPI000466FD4A: MULTISPECIES: acetyltransferase|unclassified	0.0673875177
+UniRef50_UPI0003A38E24: transporter	0.0673847339
+UniRef50_UPI0003A38E24: transporter|unclassified	0.0673847339
+UniRef50_B2KEZ4: ATPases involved in chromosome partitioning	0.0673788700
+UniRef50_B2KEZ4: ATPases involved in chromosome partitioning|unclassified	0.0673788700
+UniRef50_Q8EW34: Triosephosphate isomerase	0.0673746767
+UniRef50_Q8EW34: Triosephosphate isomerase|unclassified	0.0673746767
+UniRef50_UPI0003164930: hypothetical protein	0.0673720661
+UniRef50_UPI0003164930: hypothetical protein|unclassified	0.0673720661
+UniRef50_X6J9A1	0.0673716745
+UniRef50_X6J9A1|unclassified	0.0673716745
+UniRef50_UPI00037C1A9F: hypothetical protein	0.0673696258
+UniRef50_UPI00037C1A9F: hypothetical protein|unclassified	0.0673696258
+UniRef50_UPI00046F7653: nitrogen assimilation regulatory protein NtrX	0.0673618445
+UniRef50_UPI00046F7653: nitrogen assimilation regulatory protein NtrX|unclassified	0.0673618445
+UniRef50_UPI0003B42D96: glutamyl-tRNA synthetase	0.0673549448
+UniRef50_UPI0003B42D96: glutamyl-tRNA synthetase|unclassified	0.0673549448
+UniRef50_U6MFF6	0.0673478894
+UniRef50_U6MFF6|unclassified	0.0673478894
+UniRef50_UPI0004764908: hypothetical protein	0.0673452244
+UniRef50_UPI0004764908: hypothetical protein|unclassified	0.0673452244
+UniRef50_P52419: Amidophosphoribosyltransferase, chloroplastic (Fragment)	0.0673388188
+UniRef50_P52419: Amidophosphoribosyltransferase, chloroplastic (Fragment)|unclassified	0.0673388188
+UniRef50_UPI0003694619: hypothetical protein	0.0673381593
+UniRef50_UPI0003694619: hypothetical protein|unclassified	0.0673381593
+UniRef50_UPI000369490E: hypothetical protein	0.0673317967
+UniRef50_UPI000369490E: hypothetical protein|unclassified	0.0673317967
+UniRef50_UPI0003D3911F: ribosomal RNA small subunit methyltransferase h	0.0673287722
+UniRef50_UPI0003D3911F: ribosomal RNA small subunit methyltransferase h|unclassified	0.0673287722
+UniRef50_F2NQ48: TRAP transporter solute receptor, TAXI family	0.0673271156
+UniRef50_F2NQ48: TRAP transporter solute receptor, TAXI family|unclassified	0.0673271156
+UniRef50_I0GWW7	0.0673181327
+UniRef50_I0GWW7|unclassified	0.0673181327
+UniRef50_A3DF94: 2-isopropylmalate synthase	0.0673175317
+UniRef50_A3DF94: 2-isopropylmalate synthase|unclassified	0.0673175317
+UniRef50_UPI0003B5B9BE: leucyl/phenylalanyl-tRNA--protein transferase	0.0673168284
+UniRef50_UPI0003B5B9BE: leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.0673168284
+UniRef50_UPI00036D252F: hypothetical protein	0.0673086981
+UniRef50_UPI00036D252F: hypothetical protein|unclassified	0.0673086981
+UniRef50_J7L4H8	0.0673063470
+UniRef50_J7L4H8|unclassified	0.0673063470
+UniRef50_UPI00046F048D: hypothetical protein	0.0673032727
+UniRef50_UPI00046F048D: hypothetical protein|unclassified	0.0673032727
+UniRef50_UPI00036DB391: hypothetical protein	0.0673001104
+UniRef50_UPI00036DB391: hypothetical protein|unclassified	0.0673001104
+UniRef50_UPI00036236B8: hypothetical protein, partial	0.0672957881
+UniRef50_UPI00036236B8: hypothetical protein, partial|unclassified	0.0672957881
+UniRef50_UPI000362FEB3: hypothetical protein	0.0672901427
+UniRef50_UPI000362FEB3: hypothetical protein|unclassified	0.0672901427
+UniRef50_UPI00035CF776: MULTISPECIES: hypothetical protein	0.0672860760
+UniRef50_UPI00035CF776: MULTISPECIES: hypothetical protein|unclassified	0.0672860760
+UniRef50_UPI0003129090: phosphate starvation protein PhoH	0.0672836090
+UniRef50_UPI0003129090: phosphate starvation protein PhoH|unclassified	0.0672836090
+UniRef50_UPI0004710FDB: hypothetical protein	0.0672788520
+UniRef50_UPI0004710FDB: hypothetical protein|unclassified	0.0672788520
+UniRef50_UPI0003C91D5E: PREDICTED: trifunctional purine biosynthetic protein adenosine-3-like	0.0672632246
+UniRef50_UPI0003C91D5E: PREDICTED: trifunctional purine biosynthetic protein adenosine-3-like|unclassified	0.0672632246
+UniRef50_UPI000478FDE9: amino acid permease	0.0672613410
+UniRef50_UPI000478FDE9: amino acid permease|unclassified	0.0672613410
+UniRef50_UPI0003729E7B: hypothetical protein	0.0672524975
+UniRef50_UPI0003729E7B: hypothetical protein|unclassified	0.0672524975
+UniRef50_Q8YQF1: tRNA (guanine-N(1)-)-methyltransferase	0.0672520340
+UniRef50_Q8YQF1: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0672520340
+UniRef50_Q2LVV5: Arginine--tRNA ligase	0.0672417556
+UniRef50_Q2LVV5: Arginine--tRNA ligase|unclassified	0.0672417556
+UniRef50_A3VE55	0.0672397581
+UniRef50_A3VE55|unclassified	0.0672397581
+UniRef50_UPI00047A44A8: hypothetical protein	0.0672363036
+UniRef50_UPI00047A44A8: hypothetical protein|unclassified	0.0672363036
+UniRef50_A3I8G3: Cassette chromosome recombinase B1	0.0672336605
+UniRef50_A3I8G3: Cassette chromosome recombinase B1|unclassified	0.0672336605
+UniRef50_UPI000479830E: hypothetical protein	0.0672324556
+UniRef50_UPI000479830E: hypothetical protein|unclassified	0.0672324556
+UniRef50_UPI00047DC4CF: hypothetical protein	0.0672279053
+UniRef50_UPI00047DC4CF: hypothetical protein|unclassified	0.0672279053
+UniRef50_UPI00037EFD3B: hypothetical protein	0.0672248861
+UniRef50_UPI00037EFD3B: hypothetical protein|unclassified	0.0672248861
+UniRef50_V5P5Y4	0.0672181763
+UniRef50_V5P5Y4|unclassified	0.0672181763
+UniRef50_L8H0Z0	0.0672076822
+UniRef50_L8H0Z0|unclassified	0.0672076822
+UniRef50_Q7UUJ7: Arginine biosynthesis bifunctional protein ArgJ	0.0672001142
+UniRef50_Q7UUJ7: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.0672001142
+UniRef50_S0FRJ9: TRAP transporter solute receptor, TAXI family	0.0671997344
+UniRef50_S0FRJ9: TRAP transporter solute receptor, TAXI family|unclassified	0.0671997344
+UniRef50_UPI00046CFE04: hypothetical protein	0.0671965551
+UniRef50_UPI00046CFE04: hypothetical protein|unclassified	0.0671965551
+UniRef50_C4YAM5: Predicted protein	0.0671896263
+UniRef50_C4YAM5: Predicted protein|unclassified	0.0671896263
+UniRef50_UPI000371865D: hypothetical protein	0.0671819271
+UniRef50_UPI000371865D: hypothetical protein|unclassified	0.0671819271
+UniRef50_G7ZH30	0.0671818507
+UniRef50_G7ZH30|unclassified	0.0671818507
+UniRef50_Q9KC89: CCA-adding enzyme	0.0671816906
+UniRef50_Q9KC89: CCA-adding enzyme|unclassified	0.0671816906
+UniRef50_UPI00047B255E: hypothetical protein	0.0671756794
+UniRef50_UPI00047B255E: hypothetical protein|unclassified	0.0671756794
+UniRef50_K1ZY68	0.0671753676
+UniRef50_K1ZY68|unclassified	0.0671753676
+UniRef50_UPI00046F135C: Ni/Fe hydrogenase, partial	0.0671753415
+UniRef50_UPI00046F135C: Ni/Fe hydrogenase, partial|unclassified	0.0671753415
+UniRef50_UPI00041576CD: hypothetical protein	0.0671651213
+UniRef50_UPI00041576CD: hypothetical protein|unclassified	0.0671651213
+UniRef50_UPI00038105DD: hypothetical protein	0.0671648197
+UniRef50_UPI00038105DD: hypothetical protein|unclassified	0.0671648197
+UniRef50_A0A023Z653: Phage terminase, large subunit	0.0671612014
+UniRef50_A0A023Z653: Phage terminase, large subunit|unclassified	0.0671612014
+UniRef50_P32382: NADH oxidase	0.0671600769
+UniRef50_P32382: NADH oxidase|unclassified	0.0671600769
+UniRef50_UPI000399E7E2: succinyl-CoA:3-ketoacid-CoA transferase	0.0671546758
+UniRef50_UPI000399E7E2: succinyl-CoA:3-ketoacid-CoA transferase|unclassified	0.0671546758
+UniRef50_UPI000476C039: hypothetical protein	0.0671526822
+UniRef50_UPI000476C039: hypothetical protein|unclassified	0.0671526822
+UniRef50_A4A229	0.0671522762
+UniRef50_A4A229|unclassified	0.0671522762
+UniRef50_UPI000467B20F: hypothetical protein	0.0671496272
+UniRef50_UPI000467B20F: hypothetical protein|unclassified	0.0671496272
+UniRef50_UPI000375A8C0: hypothetical protein	0.0671439496
+UniRef50_UPI000375A8C0: hypothetical protein|unclassified	0.0671439496
+UniRef50_R5BHR4: Phage terminase	0.0671438674
+UniRef50_R5BHR4: Phage terminase|unclassified	0.0671438674
+UniRef50_A0A016RXL8	0.0671438320
+UniRef50_A0A016RXL8|unclassified	0.0671438320
+UniRef50_UPI00047A1BDE: arsenic ABC transporter ATPase	0.0671406909
+UniRef50_UPI00047A1BDE: arsenic ABC transporter ATPase|unclassified	0.0671406909
+UniRef50_C3ED78	0.0671377562
+UniRef50_C3ED78|unclassified	0.0671377562
+UniRef50_UPI00036C4EF7: 30S ribosomal protein S2	0.0671367418
+UniRef50_UPI00036C4EF7: 30S ribosomal protein S2|unclassified	0.0671367418
+UniRef50_D0KE29	0.0671359869
+UniRef50_D0KE29|unclassified	0.0671359869
+UniRef50_UPI0004756943: hypothetical protein	0.0671353431
+UniRef50_UPI0004756943: hypothetical protein|unclassified	0.0671353431
+UniRef50_UPI0004091E67: enterobactin ABC transporter permease	0.0671346028
+UniRef50_UPI0004091E67: enterobactin ABC transporter permease|unclassified	0.0671346028
+UniRef50_UPI0003F79B23: N-(5''-phosphoribosyl)anthranilate isomerase	0.0671332169
+UniRef50_UPI0003F79B23: N-(5''-phosphoribosyl)anthranilate isomerase|unclassified	0.0671332169
+UniRef50_UPI00037D7B64: hypothetical protein	0.0671288145
+UniRef50_UPI00037D7B64: hypothetical protein|unclassified	0.0671288145
+UniRef50_N2IV61	0.0671241486
+UniRef50_N2IV61|unclassified	0.0671241486
+UniRef50_F7NJT6	0.0671233722
+UniRef50_F7NJT6|unclassified	0.0671233722
+UniRef50_K6CKH3: Beta-lactamase domain-containing protein	0.0671229917
+UniRef50_K6CKH3: Beta-lactamase domain-containing protein|unclassified	0.0671229917
+UniRef50_UPI00047D5B72: secretion protein HlyD, partial	0.0671176465
+UniRef50_UPI00047D5B72: secretion protein HlyD, partial|unclassified	0.0671176465
+UniRef50_E4S827	0.0671170571
+UniRef50_E4S827|unclassified	0.0671170571
+UniRef50_UPI00041224F0: C4-dicarboxylate ABC transporter permease	0.0671164577
+UniRef50_UPI00041224F0: C4-dicarboxylate ABC transporter permease|unclassified	0.0671164577
+UniRef50_G2X9C7	0.0671157542
+UniRef50_G2X9C7|unclassified	0.0671157542
+UniRef50_Q7W0R9: DNA-directed RNA polymerase subunit beta	0.0671132938
+UniRef50_Q7W0R9: DNA-directed RNA polymerase subunit beta|unclassified	0.0671132938
+UniRef50_H6QUK9	0.0671117108
+UniRef50_H6QUK9|unclassified	0.0671117108
+UniRef50_G8P4T8	0.0671110242
+UniRef50_G8P4T8|unclassified	0.0671110242
+UniRef50_X1YMK2	0.0671090000
+UniRef50_X1YMK2|unclassified	0.0671090000
+UniRef50_T1B0W4: Threonine synthase (Fragment)	0.0671003886
+UniRef50_T1B0W4: Threonine synthase (Fragment)|unclassified	0.0671003886
+UniRef50_UPI00037B5E64: hypothetical protein	0.0671002985
+UniRef50_UPI00037B5E64: hypothetical protein|unclassified	0.0671002985
+UniRef50_UPI0003B73155: glycerol-3-phosphate acyltransferase	0.0670985445
+UniRef50_UPI0003B73155: glycerol-3-phosphate acyltransferase|unclassified	0.0670985445
+UniRef50_A9V1H1: Predicted protein	0.0670945421
+UniRef50_A9V1H1: Predicted protein|unclassified	0.0670945421
+UniRef50_E5ARE8: Hypothetical cytosolic protein	0.0670884619
+UniRef50_E5ARE8: Hypothetical cytosolic protein|unclassified	0.0670884619
+UniRef50_A3JU34: ParB-like nuclease	0.0670881979
+UniRef50_A3JU34: ParB-like nuclease|unclassified	0.0670881979
+UniRef50_UPI00016C466B: Extracellular ligand-binding receptor	0.0670813398
+UniRef50_UPI00016C466B: Extracellular ligand-binding receptor|unclassified	0.0670813398
+UniRef50_B5XSA9: Oxidoreductase, short chain dehydrogenase/reductase family	0.0670812366
+UniRef50_B5XSA9: Oxidoreductase, short chain dehydrogenase/reductase family|unclassified	0.0670812366
+UniRef50_UPI00037A6FB7: hypothetical protein	0.0670785326
+UniRef50_UPI00037A6FB7: hypothetical protein|unclassified	0.0670785326
+UniRef50_A0A021WD44	0.0670735804
+UniRef50_A0A021WD44|unclassified	0.0670735804
+UniRef50_UPI0002629408: riboflavin biosynthesis protein RibD	0.0670687608
+UniRef50_UPI0002629408: riboflavin biosynthesis protein RibD|unclassified	0.0670687608
+UniRef50_R5Y4C4	0.0670662046
+UniRef50_R5Y4C4|unclassified	0.0670662046
+UniRef50_D9PI46: Anaerobic ribonucleoside-triphosphate reductase (Fragment)	0.0670658958
+UniRef50_D9PI46: Anaerobic ribonucleoside-triphosphate reductase (Fragment)|unclassified	0.0670658958
+UniRef50_UPI0003757AA8: hypothetical protein	0.0670642391
+UniRef50_UPI0003757AA8: hypothetical protein|unclassified	0.0670642391
+UniRef50_B0SAB8: Leucine--tRNA ligase	0.0670636981
+UniRef50_B0SAB8: Leucine--tRNA ligase|unclassified	0.0670636981
+UniRef50_UPI0003B31677: sugar ABC transporter ATP-binding protein	0.0670560599
+UniRef50_UPI0003B31677: sugar ABC transporter ATP-binding protein|unclassified	0.0670560599
+UniRef50_J1LL58: Cell wall-binding repeat protein (Fragment)	0.0670541486
+UniRef50_J1LL58: Cell wall-binding repeat protein (Fragment)|unclassified	0.0670541486
+UniRef50_F3SNY0	0.0670512268
+UniRef50_F3SNY0|unclassified	0.0670512268
+UniRef50_W4M090	0.0670441758
+UniRef50_W4M090|unclassified	0.0670441758
+UniRef50_UPI000463AE2E: ABC transporter permease	0.0670429370
+UniRef50_UPI000463AE2E: ABC transporter permease|unclassified	0.0670429370
+UniRef50_Q4FLD7: DNA-directed RNA polymerase subunit omega	0.0670425390
+UniRef50_Q4FLD7: DNA-directed RNA polymerase subunit omega|unclassified	0.0670425390
+UniRef50_UPI000469CCA0: hypothetical protein	0.0670241237
+UniRef50_UPI000469CCA0: hypothetical protein|unclassified	0.0670241237
+UniRef50_Q8ZCA7: Copper-exporting P-type ATPase A	0.0670199919
+UniRef50_Q8ZCA7: Copper-exporting P-type ATPase A|unclassified	0.0670199919
+UniRef50_S7STD9: Putative membrane spanning protein	0.0670184198
+UniRef50_S7STD9: Putative membrane spanning protein|unclassified	0.0670184198
+UniRef50_UPI000376C5BC: hypothetical protein	0.0670161301
+UniRef50_UPI000376C5BC: hypothetical protein|unclassified	0.0670161301
+UniRef50_UPI00036188A6: hypothetical protein, partial	0.0670155960
+UniRef50_UPI00036188A6: hypothetical protein, partial|unclassified	0.0670155960
+UniRef50_UPI00046D26DA: hypothetical protein	0.0670147869
+UniRef50_UPI00046D26DA: hypothetical protein|unclassified	0.0670147869
+UniRef50_UPI000328C73F	0.0670125975
+UniRef50_UPI000328C73F|unclassified	0.0670125975
+UniRef50_E3G178	0.0670026401
+UniRef50_E3G178|unclassified	0.0670026401
+UniRef50_UPI0003B386D0: hypothetical protein	0.0670017107
+UniRef50_UPI0003B386D0: hypothetical protein|unclassified	0.0670017107
+UniRef50_UPI00035CA9A5: hypothetical protein	0.0669946104
+UniRef50_UPI00035CA9A5: hypothetical protein|unclassified	0.0669946104
+UniRef50_B1FEG9	0.0669837292
+UniRef50_B1FEG9|unclassified	0.0669837292
+UniRef50_Q98CC0: Mlr5215 protein	0.0669747084
+UniRef50_Q98CC0: Mlr5215 protein|unclassified	0.0669747084
+UniRef50_UPI00046748D7: hypothetical protein	0.0669631178
+UniRef50_UPI00046748D7: hypothetical protein|unclassified	0.0669631178
+UniRef50_B8D9E6: Nicotinate phosphoribosyltransferase	0.0669603373
+UniRef50_B8D9E6: Nicotinate phosphoribosyltransferase|unclassified	0.0669603373
+UniRef50_UPI000466E630: hypothetical protein, partial	0.0669593577
+UniRef50_UPI000466E630: hypothetical protein, partial|unclassified	0.0669593577
+UniRef50_UPI000477CA46: alcohol dehydrogenase	0.0669495201
+UniRef50_UPI000477CA46: alcohol dehydrogenase|unclassified	0.0669495201
+UniRef50_F5Z8Q1	0.0669475215
+UniRef50_F5Z8Q1|unclassified	0.0669475215
+UniRef50_UPI0003B3B81F: indole-3-glycerol phosphate synthase	0.0669431405
+UniRef50_UPI0003B3B81F: indole-3-glycerol phosphate synthase|unclassified	0.0669431405
+UniRef50_UPI0003B4DEC2: DNA gyrase subunit B	0.0669431338
+UniRef50_UPI0003B4DEC2: DNA gyrase subunit B|unclassified	0.0669431338
+UniRef50_A4T5H7	0.0669427041
+UniRef50_A4T5H7|unclassified	0.0669427041
+UniRef50_G8SY62: Major facilitator transporter	0.0669421520
+UniRef50_G8SY62: Major facilitator transporter|unclassified	0.0669421520
+UniRef50_F0P448: Cobalamin synthesis protein, putative	0.0669403376
+UniRef50_F0P448: Cobalamin synthesis protein, putative|unclassified	0.0669403376
+UniRef50_V8YME5: TRAP transporter, DctM-like membrane domain protein	0.0669402619
+UniRef50_V8YME5: TRAP transporter, DctM-like membrane domain protein|unclassified	0.0669402619
+UniRef50_U3Q072	0.0669400978
+UniRef50_U3Q072|unclassified	0.0669400978
+UniRef50_Q6SH18: Lipase/esterase, Lip3/BchO family	0.0669395253
+UniRef50_Q6SH18: Lipase/esterase, Lip3/BchO family|unclassified	0.0669395253
+UniRef50_UPI000371B545: hypothetical protein	0.0669384490
+UniRef50_UPI000371B545: hypothetical protein|unclassified	0.0669384490
+UniRef50_A0A024K6K3: ZINC-FINGER PROTEIN	0.0669374424
+UniRef50_A0A024K6K3: ZINC-FINGER PROTEIN|unclassified	0.0669374424
+UniRef50_UPI00047099BD: hypothetical protein	0.0669365675
+UniRef50_UPI00047099BD: hypothetical protein|unclassified	0.0669365675
+UniRef50_B6IRY2: Probable DNA polymerase III	0.0669305412
+UniRef50_B6IRY2: Probable DNA polymerase III|unclassified	0.0669305412
+UniRef50_Q73RS4: Peroxiredoxin	0.0669296512
+UniRef50_Q73RS4: Peroxiredoxin|unclassified	0.0669296512
+UniRef50_UPI000365673F: hypothetical protein	0.0669276762
+UniRef50_UPI000365673F: hypothetical protein|unclassified	0.0669276762
+UniRef50_UPI00047C4BEC: LysR family transcriptional regulator	0.0669259302
+UniRef50_UPI00047C4BEC: LysR family transcriptional regulator|unclassified	0.0669259302
+UniRef50_UPI00029A2946: endo-1,4-D-glucanase	0.0669239419
+UniRef50_UPI00029A2946: endo-1,4-D-glucanase|unclassified	0.0669239419
+UniRef50_UPI00047B24B0: hypothetical protein	0.0669201594
+UniRef50_UPI00047B24B0: hypothetical protein|unclassified	0.0669201594
+UniRef50_UPI000359AB22: PREDICTED: vegetative cell wall protein gp1-like, partial	0.0669201171
+UniRef50_UPI000359AB22: PREDICTED: vegetative cell wall protein gp1-like, partial|unclassified	0.0669201171
+UniRef50_E5WRF1	0.0669172044
+UniRef50_E5WRF1|unclassified	0.0669172044
+UniRef50_UPI0003B4E783: hypothetical protein	0.0669170526
+UniRef50_UPI0003B4E783: hypothetical protein|unclassified	0.0669170526
+UniRef50_J3LXF5	0.0669142690
+UniRef50_J3LXF5|unclassified	0.0669142690
+UniRef50_UPI000362F43F: hypothetical protein	0.0669126336
+UniRef50_UPI000362F43F: hypothetical protein|unclassified	0.0669126336
+UniRef50_UPI0003616553: hypothetical protein	0.0668992277
+UniRef50_UPI0003616553: hypothetical protein|unclassified	0.0668992277
+UniRef50_UPI00047BCF59: hypothetical protein	0.0668984312
+UniRef50_UPI00047BCF59: hypothetical protein|unclassified	0.0668984312
+UniRef50_UPI0004754EDF: sugar ABC transporter permease	0.0668950768
+UniRef50_UPI0004754EDF: sugar ABC transporter permease|unclassified	0.0668950768
+UniRef50_D1NEC4: Transcription-repair coupling factor (Fragment)	0.0668922774
+UniRef50_D1NEC4: Transcription-repair coupling factor (Fragment)|unclassified	0.0668922774
+UniRef50_UPI0003B6CBB3: helicase	0.0668917930
+UniRef50_UPI0003B6CBB3: helicase|unclassified	0.0668917930
+UniRef50_P37824: Light-independent protochlorophyllide reductase subunit B (Fragment)	0.0668917713
+UniRef50_P37824: Light-independent protochlorophyllide reductase subunit B (Fragment)|unclassified	0.0668917713
+UniRef50_UPI0003476088: hypothetical protein	0.0668898054
+UniRef50_UPI0003476088: hypothetical protein|unclassified	0.0668898054
+UniRef50_X1E9A0: Marine sediment metagenome DNA, contig: S03H2_C02517	0.0668863646
+UniRef50_X1E9A0: Marine sediment metagenome DNA, contig: S03H2_C02517|unclassified	0.0668863646
+UniRef50_UPI00040FFC45: hypothetical protein	0.0668824134
+UniRef50_UPI00040FFC45: hypothetical protein|unclassified	0.0668824134
+UniRef50_UPI00016C04A1: dihydrodipicolinate synthase	0.0668811701
+UniRef50_UPI00016C04A1: dihydrodipicolinate synthase|unclassified	0.0668811701
+UniRef50_UPI0003147944: hypothetical protein	0.0668783129
+UniRef50_UPI0003147944: hypothetical protein|unclassified	0.0668783129
+UniRef50_UPI00046A15AC: multidrug ABC transporter ATPase	0.0668759171
+UniRef50_UPI00046A15AC: multidrug ABC transporter ATPase|unclassified	0.0668759171
+UniRef50_Q1QWZ4: Type II secretion system protein	0.0668722175
+UniRef50_Q1QWZ4: Type II secretion system protein|unclassified	0.0668722175
+UniRef50_B8EAI5: UPF0502 protein Sbal223_2520	0.0668689294
+UniRef50_B8EAI5: UPF0502 protein Sbal223_2520|unclassified	0.0668689294
+UniRef50_UPI0003A8F6AB: hypothetical protein	0.0668665552
+UniRef50_UPI0003A8F6AB: hypothetical protein|unclassified	0.0668665552
+UniRef50_UPI00033163F0: PREDICTED: alpha/beta hydrolase domain-containing protein 11	0.0668560505
+UniRef50_UPI00033163F0: PREDICTED: alpha/beta hydrolase domain-containing protein 11|unclassified	0.0668560505
+UniRef50_R1CXM7	0.0668462446
+UniRef50_R1CXM7|unclassified	0.0668462446
+UniRef50_UPI0003B3D396: polyamine ABC transporter substrate-binding protein	0.0668433853
+UniRef50_UPI0003B3D396: polyamine ABC transporter substrate-binding protein|unclassified	0.0668433853
+UniRef50_Q5NN91: Glycerol-3-phosphate acyltransferase	0.0668420153
+UniRef50_Q5NN91: Glycerol-3-phosphate acyltransferase|unclassified	0.0668420153
+UniRef50_UPI00035C8FDD: hypothetical protein	0.0668411736
+UniRef50_UPI00035C8FDD: hypothetical protein|unclassified	0.0668411736
+UniRef50_B1YJ39: 4-hydroxy-tetrahydrodipicolinate synthase	0.0668395790
+UniRef50_B1YJ39: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0668395790
+UniRef50_C0R176: 4-hydroxy-tetrahydrodipicolinate synthase	0.0668395790
+UniRef50_C0R176: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0668395790
+UniRef50_UPI0003070DD5: hypothetical protein	0.0668362268
+UniRef50_UPI0003070DD5: hypothetical protein|unclassified	0.0668362268
+UniRef50_UPI0003B62153: sugar ABC transporter substrate-binding protein	0.0668263000
+UniRef50_UPI0003B62153: sugar ABC transporter substrate-binding protein|unclassified	0.0668263000
+UniRef50_UPI000379CA60: hypothetical protein	0.0668231336
+UniRef50_UPI000379CA60: hypothetical protein|unclassified	0.0668231336
+UniRef50_UPI00047018BD: phosphoglyceromutase, partial	0.0668203669
+UniRef50_UPI00047018BD: phosphoglyceromutase, partial|unclassified	0.0668203669
+UniRef50_UPI0003B3490F: hypothetical protein	0.0668199514
+UniRef50_UPI0003B3490F: hypothetical protein|unclassified	0.0668199514
+UniRef50_UPI00016C46AD: probable chromosome partitioning protein parB	0.0668119816
+UniRef50_UPI00016C46AD: probable chromosome partitioning protein parB|unclassified	0.0668119816
+UniRef50_UPI000475A0B1: ATPase	0.0668109250
+UniRef50_UPI000475A0B1: ATPase|unclassified	0.0668109250
+UniRef50_UPI00042B18AB: Proline iminopeptidase isoform 3	0.0668076132
+UniRef50_UPI00042B18AB: Proline iminopeptidase isoform 3|unclassified	0.0668076132
+UniRef50_Q0VSA8: Valine--tRNA ligase	0.0668063511
+UniRef50_Q0VSA8: Valine--tRNA ligase|unclassified	0.0668063511
+UniRef50_UPI0004560FCC: hypothetical protein PFL1_00477	0.0668005785
+UniRef50_UPI0004560FCC: hypothetical protein PFL1_00477|unclassified	0.0668005785
+UniRef50_A9UUK0: Predicted protein	0.0668003447
+UniRef50_A9UUK0: Predicted protein|unclassified	0.0668003447
+UniRef50_UPI0003B56757: GTPase Der	0.0667955423
+UniRef50_UPI0003B56757: GTPase Der|unclassified	0.0667955423
+UniRef50_X1QUU9: Marine sediment metagenome DNA, contig: S06H3_S20659 (Fragment)	0.0667953262
+UniRef50_X1QUU9: Marine sediment metagenome DNA, contig: S06H3_S20659 (Fragment)|unclassified	0.0667953262
+UniRef50_R6HIJ1	0.0667936024
+UniRef50_R6HIJ1|unclassified	0.0667936024
+UniRef50_UPI0004672394: MULTISPECIES: peptidase A8	0.0667924414
+UniRef50_UPI0004672394: MULTISPECIES: peptidase A8|unclassified	0.0667924414
+UniRef50_B8ECJ0: 3-dehydroquinate dehydratase	0.0667919063
+UniRef50_B8ECJ0: 3-dehydroquinate dehydratase|unclassified	0.0667919063
+UniRef50_I0H8E4	0.0667866806
+UniRef50_I0H8E4|unclassified	0.0667866806
+UniRef50_Q1JU72: Fluoroacetate dehalogenase	0.0667866806
+UniRef50_Q1JU72: Fluoroacetate dehalogenase|unclassified	0.0667866806
+UniRef50_Q478N6	0.0667859667
+UniRef50_Q478N6|unclassified	0.0667859667
+UniRef50_Q18CD7: Proline--tRNA ligase 2	0.0667821308
+UniRef50_Q18CD7: Proline--tRNA ligase 2|unclassified	0.0667821308
+UniRef50_G8MYL4	0.0667802837
+UniRef50_G8MYL4|unclassified	0.0667802837
+UniRef50_UPI00037155BE: hypothetical protein	0.0667767326
+UniRef50_UPI00037155BE: hypothetical protein|unclassified	0.0667767326
+UniRef50_M5S2J2: Phytoene desaturase	0.0667754161
+UniRef50_M5S2J2: Phytoene desaturase|unclassified	0.0667754161
+UniRef50_UPI000478F886: peptide ABC transporter substrate-binding protein	0.0667722945
+UniRef50_UPI000478F886: peptide ABC transporter substrate-binding protein|unclassified	0.0667722945
+UniRef50_Q8D2A5: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.0667677947
+UniRef50_Q8D2A5: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.0667677947
+UniRef50_A0A024TY28	0.0667650281
+UniRef50_A0A024TY28|unclassified	0.0667650281
+UniRef50_X1AVD8: Marine sediment metagenome DNA, contig: S01H4_S00839 (Fragment)	0.0667569220
+UniRef50_X1AVD8: Marine sediment metagenome DNA, contig: S01H4_S00839 (Fragment)|unclassified	0.0667569220
+UniRef50_UPI00037A27C7: hypothetical protein	0.0667563316
+UniRef50_UPI00037A27C7: hypothetical protein|unclassified	0.0667563316
+UniRef50_UPI00047C08EE: short-chain dehydrogenase	0.0667547282
+UniRef50_UPI00047C08EE: short-chain dehydrogenase|unclassified	0.0667547282
+UniRef50_UPI000472BFD9: hypothetical protein	0.0667512525
+UniRef50_UPI000472BFD9: hypothetical protein|unclassified	0.0667512525
+UniRef50_UPI00047217DD: hypothetical protein	0.0667488616
+UniRef50_UPI00047217DD: hypothetical protein|unclassified	0.0667488616
+UniRef50_UPI00046E59C8: 30S ribosomal protein S5	0.0667365663
+UniRef50_UPI00046E59C8: 30S ribosomal protein S5|unclassified	0.0667365663
+UniRef50_UPI0003B6FBCE: nucleoside-diphosphate sugar epimerase	0.0667359708
+UniRef50_UPI0003B6FBCE: nucleoside-diphosphate sugar epimerase|unclassified	0.0667359708
+UniRef50_UPI000371B89E: hypothetical protein	0.0667347661
+UniRef50_UPI000371B89E: hypothetical protein|unclassified	0.0667347661
+UniRef50_N9PTE9	0.0667324100
+UniRef50_N9PTE9|unclassified	0.0667324100
+UniRef50_UPI0004792749: ABC transporter permease	0.0667302320
+UniRef50_UPI0004792749: ABC transporter permease|unclassified	0.0667302320
+UniRef50_UPI0003646AAD: alkaline phosphatase	0.0667276159
+UniRef50_UPI0003646AAD: alkaline phosphatase|unclassified	0.0667276159
+UniRef50_UPI0003A65890: hypothetical protein	0.0667230125
+UniRef50_UPI0003A65890: hypothetical protein|unclassified	0.0667230125
+UniRef50_Q2CB82	0.0667215316
+UniRef50_Q2CB82|unclassified	0.0667215316
+UniRef50_B9L1J9: Glucose-1-phosphate adenylyltransferase	0.0667183567
+UniRef50_B9L1J9: Glucose-1-phosphate adenylyltransferase|unclassified	0.0667183567
+UniRef50_Q9CPK8: NrfF	0.0667179939
+UniRef50_Q9CPK8: NrfF|unclassified	0.0667179939
+UniRef50_UPI00037F4D6C: hypothetical protein, partial	0.0667176939
+UniRef50_UPI00037F4D6C: hypothetical protein, partial|unclassified	0.0667176939
+UniRef50_UPI0004661E02: GntR family transcriptional regulator	0.0667098920
+UniRef50_UPI0004661E02: GntR family transcriptional regulator|unclassified	0.0667098920
+UniRef50_UPI000255C121: riboflavin synthase subunit alpha	0.0667094805
+UniRef50_UPI000255C121: riboflavin synthase subunit alpha|unclassified	0.0667094805
+UniRef50_I1XGF6: Stringent starvation protein A	0.0667093475
+UniRef50_I1XGF6: Stringent starvation protein A|unclassified	0.0667093475
+UniRef50_E1QFI7: MazG family protein	0.0667060639
+UniRef50_E1QFI7: MazG family protein|unclassified	0.0667060639
+UniRef50_H3NGN6: Metallophosphoesterase	0.0667012197
+UniRef50_H3NGN6: Metallophosphoesterase|unclassified	0.0667012197
+UniRef50_B9JZX9	0.0666986736
+UniRef50_B9JZX9|unclassified	0.0666986736
+UniRef50_UPI0003B69B60: ABC transporter permease	0.0666965566
+UniRef50_UPI0003B69B60: ABC transporter permease|unclassified	0.0666965566
+UniRef50_UPI00034C1957: hypothetical protein	0.0666941287
+UniRef50_UPI00034C1957: hypothetical protein|unclassified	0.0666941287
+UniRef50_UPI0003822565: hypothetical protein	0.0666926243
+UniRef50_UPI0003822565: hypothetical protein|unclassified	0.0666926243
+UniRef50_V5CYH5: Protein tolA	0.0666894255
+UniRef50_V5CYH5: Protein tolA|unclassified	0.0666894255
+UniRef50_UPI000288E151: ABC transporter	0.0666824073
+UniRef50_UPI000288E151: ABC transporter|unclassified	0.0666824073
+UniRef50_A4IWK9: Ribonuclease 3	0.0666801343
+UniRef50_A4IWK9: Ribonuclease 3|unclassified	0.0666801343
+UniRef50_UPI00038136F2: hypothetical protein	0.0666777302
+UniRef50_UPI00038136F2: hypothetical protein|unclassified	0.0666777302
+UniRef50_UPI0004077D5F: prephenate dehydratase	0.0666776028
+UniRef50_UPI0004077D5F: prephenate dehydratase|unclassified	0.0666776028
+UniRef50_UPI0003B62778: 2-deoxy-D-gluconate 3-dehydrogenase	0.0666718205
+UniRef50_UPI0003B62778: 2-deoxy-D-gluconate 3-dehydrogenase|unclassified	0.0666718205
+UniRef50_UPI00036BB2E2: hypothetical protein	0.0666715989
+UniRef50_UPI00036BB2E2: hypothetical protein|unclassified	0.0666715989
+UniRef50_UPI00039AD077: UDP-3-O-(3-hydroxymyristoyl) glucosamine N-acyltransferase	0.0666703704
+UniRef50_UPI00039AD077: UDP-3-O-(3-hydroxymyristoyl) glucosamine N-acyltransferase|unclassified	0.0666703704
+UniRef50_P70584: Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial	0.0666689352
+UniRef50_P70584: Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial|unclassified	0.0666689352
+UniRef50_UPI0001BF5D6F: hypothetical protein SMAC_10343	0.0666675110
+UniRef50_UPI0001BF5D6F: hypothetical protein SMAC_10343|unclassified	0.0666675110
+UniRef50_UPI0003B7AF8D: ABC transporter, partial	0.0666630395
+UniRef50_UPI0003B7AF8D: ABC transporter, partial|unclassified	0.0666630395
+UniRef50_UPI0004709DCD: choline transporter	0.0666615519
+UniRef50_UPI0004709DCD: choline transporter|unclassified	0.0666615519
+UniRef50_UPI000363BDDF: hypothetical protein	0.0666611499
+UniRef50_UPI000363BDDF: hypothetical protein|unclassified	0.0666611499
+UniRef50_V5UPQ7	0.0666553561
+UniRef50_V5UPQ7|unclassified	0.0666553561
+UniRef50_UPI0003B4110E: hypothetical protein	0.0666544736
+UniRef50_UPI0003B4110E: hypothetical protein|unclassified	0.0666544736
+UniRef50_UPI00036E00D0: hypothetical protein, partial	0.0666519301
+UniRef50_UPI00036E00D0: hypothetical protein, partial|unclassified	0.0666519301
+UniRef50_A1UT26: Glycerol-3-phosphate acyltransferase	0.0666507017
+UniRef50_A1UT26: Glycerol-3-phosphate acyltransferase|unclassified	0.0666507017
+UniRef50_A0A023VQ15: ABC transporter permease	0.0666470670
+UniRef50_A0A023VQ15: ABC transporter permease|unclassified	0.0666470670
+UniRef50_UPI00035E9ADC: hypothetical protein	0.0666460074
+UniRef50_UPI00035E9ADC: hypothetical protein|unclassified	0.0666460074
+UniRef50_UPI0003482B00: UDP-N-acetyl-D-mannosaminuronic acid transferase	0.0666374650
+UniRef50_UPI0003482B00: UDP-N-acetyl-D-mannosaminuronic acid transferase|unclassified	0.0666374650
+UniRef50_W5X953	0.0666353562
+UniRef50_W5X953|unclassified	0.0666353562
+UniRef50_A6X5S9: Tripartite ATP-independent periplasmic transporter DctQ component	0.0666302738
+UniRef50_A6X5S9: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.0666302738
+UniRef50_R2QI95	0.0666300136
+UniRef50_R2QI95|unclassified	0.0666300136
+UniRef50_X1J1Y8: Marine sediment metagenome DNA, contig: S03H2_S10839 (Fragment)	0.0666271263
+UniRef50_X1J1Y8: Marine sediment metagenome DNA, contig: S03H2_S10839 (Fragment)|unclassified	0.0666271263
+UniRef50_B5YDX4: Cobalt transport protein CbiQ	0.0666256441
+UniRef50_B5YDX4: Cobalt transport protein CbiQ|unclassified	0.0666256441
+UniRef50_UPI00046FB227: nucleoside triphosphate hydrolase	0.0666233504
+UniRef50_UPI00046FB227: nucleoside triphosphate hydrolase|unclassified	0.0666233504
+UniRef50_V5LNW1: Putative membrane protein (Fragment)	0.0666157292
+UniRef50_V5LNW1: Putative membrane protein (Fragment)|unclassified	0.0666157292
+UniRef50_UPI0003B3CE38: GDP-L-fucose synthase	0.0666133002
+UniRef50_UPI0003B3CE38: GDP-L-fucose synthase|unclassified	0.0666133002
+UniRef50_Q89AJ9: Deoxyribodipyrimidine photo-lyase	0.0666078012
+UniRef50_Q89AJ9: Deoxyribodipyrimidine photo-lyase|unclassified	0.0666078012
+UniRef50_U8X5K1	0.0666004781
+UniRef50_U8X5K1|unclassified	0.0666004781
+UniRef50_UPI00047BFAD2: hypothetical protein	0.0666004019
+UniRef50_UPI00047BFAD2: hypothetical protein|unclassified	0.0666004019
+UniRef50_UPI00047B119D: LysR family transcriptional regulator	0.0665968009
+UniRef50_UPI00047B119D: LysR family transcriptional regulator|unclassified	0.0665968009
+UniRef50_UPI000255E0A0: FAD-dependent oxidoreductase	0.0665953327
+UniRef50_UPI000255E0A0: FAD-dependent oxidoreductase|unclassified	0.0665953327
+UniRef50_UPI0003EB0A73: hypothetical protein	0.0665848698
+UniRef50_UPI0003EB0A73: hypothetical protein|unclassified	0.0665848698
+UniRef50_D3EMD5	0.0665821022
+UniRef50_D3EMD5|unclassified	0.0665821022
+UniRef50_UPI0003757E2C: hypothetical protein	0.0665811539
+UniRef50_UPI0003757E2C: hypothetical protein|unclassified	0.0665811539
+UniRef50_V6LRA9	0.0665690321
+UniRef50_V6LRA9|unclassified	0.0665690321
+UniRef50_UPI0002556130: lipoprotein	0.0665679481
+UniRef50_UPI0002556130: lipoprotein|unclassified	0.0665679481
+UniRef50_UPI0003763947: hypothetical protein	0.0665672278
+UniRef50_UPI0003763947: hypothetical protein|unclassified	0.0665672278
+UniRef50_UPI0003739172: hypothetical protein	0.0665669564
+UniRef50_UPI0003739172: hypothetical protein|unclassified	0.0665669564
+UniRef50_C3CA16: Cell wall surface anchor	0.0665664920
+UniRef50_C3CA16: Cell wall surface anchor|unclassified	0.0665664920
+UniRef50_UPI0003B787C3: hypothetical protein	0.0665663951
+UniRef50_UPI0003B787C3: hypothetical protein|unclassified	0.0665663951
+UniRef50_UPI00046FD4D6: AraC family transcriptional regulator	0.0665630215
+UniRef50_UPI00046FD4D6: AraC family transcriptional regulator|unclassified	0.0665630215
+UniRef50_UPI000476E214: urea ABC transporter permease	0.0665625782
+UniRef50_UPI000476E214: urea ABC transporter permease|unclassified	0.0665625782
+UniRef50_B8LZL2	0.0665614316
+UniRef50_B8LZL2|unclassified	0.0665614316
+UniRef50_B4G5F2: GL23178	0.0665561793
+UniRef50_B4G5F2: GL23178|unclassified	0.0665561793
+UniRef50_UPI00046D8C08: hypothetical protein	0.0665512755
+UniRef50_UPI00046D8C08: hypothetical protein|unclassified	0.0665512755
+UniRef50_UPI000380D689: hypothetical protein	0.0665447046
+UniRef50_UPI000380D689: hypothetical protein|unclassified	0.0665447046
+UniRef50_UPI0003B759B0: urease subunit alpha	0.0665395887
+UniRef50_UPI0003B759B0: urease subunit alpha|unclassified	0.0665395887
+UniRef50_S7US81: Membrane-bound lytic murein transglycosylase B-like protein	0.0665377842
+UniRef50_S7US81: Membrane-bound lytic murein transglycosylase B-like protein|unclassified	0.0665377842
+UniRef50_Q9LPM9: Branched-chain-amino-acid aminotransferase 6	0.0665358696
+UniRef50_Q9LPM9: Branched-chain-amino-acid aminotransferase 6|unclassified	0.0665358696
+UniRef50_UPI000364E38B: hypothetical protein	0.0665338337
+UniRef50_UPI000364E38B: hypothetical protein|unclassified	0.0665338337
+UniRef50_U4LHT2	0.0665283217
+UniRef50_U4LHT2|unclassified	0.0665283217
+UniRef50_UPI00029B4809: CheR-type MCP methyltransferase	0.0665235424
+UniRef50_UPI00029B4809: CheR-type MCP methyltransferase|unclassified	0.0665235424
+UniRef50_UPI0003B3A02D: AraC family transcriptional regulator	0.0665209572
+UniRef50_UPI0003B3A02D: AraC family transcriptional regulator|unclassified	0.0665209572
+UniRef50_W4BQI0	0.0665202221
+UniRef50_W4BQI0|unclassified	0.0665202221
+UniRef50_Q07GS8: Transglycosylase, putative	0.0665196889
+UniRef50_Q07GS8: Transglycosylase, putative|unclassified	0.0665196889
+UniRef50_Q04V79: Type III pantothenate kinase	0.0665179061
+UniRef50_Q04V79: Type III pantothenate kinase|unclassified	0.0665179061
+UniRef50_F3R3M9: Conserved domain protein	0.0665177449
+UniRef50_F3R3M9: Conserved domain protein|unclassified	0.0665177449
+UniRef50_UPI000348DBD3: LysR family transcriptional regulator	0.0665167595
+UniRef50_UPI000348DBD3: LysR family transcriptional regulator|unclassified	0.0665167595
+UniRef50_D0KZY9: Diguanylate phosphodiesterase	0.0665057387
+UniRef50_D0KZY9: Diguanylate phosphodiesterase|unclassified	0.0665057387
+UniRef50_Q6F8B9	0.0664940138
+UniRef50_Q6F8B9|unclassified	0.0664940138
+UniRef50_UPI00036EB1DA: hypothetical protein	0.0664927229
+UniRef50_UPI00036EB1DA: hypothetical protein|unclassified	0.0664927229
+UniRef50_UPI0002490F21: branched-chain amino acid transporter II carrier protein	0.0664924275
+UniRef50_UPI0002490F21: branched-chain amino acid transporter II carrier protein|unclassified	0.0664924275
+UniRef50_UPI00037F929E: hypothetical protein	0.0664918047
+UniRef50_UPI00037F929E: hypothetical protein|unclassified	0.0664918047
+UniRef50_UPI0003621735: hypothetical protein	0.0664786320
+UniRef50_UPI0003621735: hypothetical protein|unclassified	0.0664786320
+UniRef50_R8AVV1	0.0664766552
+UniRef50_R8AVV1|unclassified	0.0664766552
+UniRef50_X5MP44: Putative permease	0.0664761973
+UniRef50_X5MP44: Putative permease|unclassified	0.0664761973
+UniRef50_UPI000399C21A: hypothetical protein	0.0664679701
+UniRef50_UPI000399C21A: hypothetical protein|unclassified	0.0664679701
+UniRef50_D8QF05	0.0664589669
+UniRef50_D8QF05|unclassified	0.0664589669
+UniRef50_Q1QY62	0.0664556702
+UniRef50_Q1QY62|unclassified	0.0664556702
+UniRef50_UPI0003189EE0: hypothetical protein	0.0664512037
+UniRef50_UPI0003189EE0: hypothetical protein|unclassified	0.0664512037
+UniRef50_UPI000361F43E: hypothetical protein	0.0664507790
+UniRef50_UPI000361F43E: hypothetical protein|unclassified	0.0664507790
+UniRef50_UPI000252B988: PREDICTED: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG-like	0.0664479567
+UniRef50_UPI000252B988: PREDICTED: tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG-like|unclassified	0.0664479567
+UniRef50_UPI000470E1D2: hypothetical protein	0.0664351462
+UniRef50_UPI000470E1D2: hypothetical protein|unclassified	0.0664351462
+UniRef50_K2LIA7	0.0664308853
+UniRef50_K2LIA7|unclassified	0.0664308853
+UniRef50_UPI00037B5FBA: hypothetical protein	0.0664295152
+UniRef50_UPI00037B5FBA: hypothetical protein|unclassified	0.0664295152
+UniRef50_E0RTD9: ATP-dependent 6-phosphofructokinase	0.0664277335
+UniRef50_E0RTD9: ATP-dependent 6-phosphofructokinase|unclassified	0.0664277335
+UniRef50_UPI00036920F3: hypothetical protein	0.0664224865
+UniRef50_UPI00036920F3: hypothetical protein|unclassified	0.0664224865
+UniRef50_P49017: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial	0.0664192094
+UniRef50_P49017: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial|unclassified	0.0664192094
+UniRef50_UPI000287F715: protease	0.0664170593
+UniRef50_UPI000287F715: protease|unclassified	0.0664170593
+UniRef50_UPI00037D0304: hypothetical protein	0.0664168090
+UniRef50_UPI00037D0304: hypothetical protein|unclassified	0.0664168090
+UniRef50_UPI0004654D8B: hypothetical protein	0.0664146785
+UniRef50_UPI0004654D8B: hypothetical protein|unclassified	0.0664146785
+UniRef50_X1YKF5	0.0664119479
+UniRef50_X1YKF5|unclassified	0.0664119479
+UniRef50_UPI000377866C: hypothetical protein	0.0664100668
+UniRef50_UPI000377866C: hypothetical protein|unclassified	0.0664100668
+UniRef50_B8DNL4: ATP-dependent Clp protease proteolytic subunit	0.0664063079
+UniRef50_B8DNL4: ATP-dependent Clp protease proteolytic subunit|unclassified	0.0664063079
+UniRef50_C0CQV1	0.0663989160
+UniRef50_C0CQV1|unclassified	0.0663989160
+UniRef50_A3JXA6	0.0663944764
+UniRef50_A3JXA6|unclassified	0.0663944764
+UniRef50_R9I899	0.0663924827
+UniRef50_R9I899|unclassified	0.0663924827
+UniRef50_I3C6B9	0.0663891416
+UniRef50_I3C6B9|unclassified	0.0663891416
+UniRef50_UPI00036109B0: hypothetical protein	0.0663842779
+UniRef50_UPI00036109B0: hypothetical protein|unclassified	0.0663842779
+UniRef50_Q9CXA2: Trans-L-3-hydroxyproline dehydratase	0.0663837967
+UniRef50_Q9CXA2: Trans-L-3-hydroxyproline dehydratase|unclassified	0.0663837967
+UniRef50_UPI000378D0EF: hypothetical protein	0.0663794658
+UniRef50_UPI000378D0EF: hypothetical protein|unclassified	0.0663794658
+UniRef50_W7T0K7	0.0663776218
+UniRef50_W7T0K7|unclassified	0.0663776218
+UniRef50_UPI00036B8883: hypothetical protein	0.0663746660
+UniRef50_UPI00036B8883: hypothetical protein|unclassified	0.0663746660
+UniRef50_UPI00030CFA16: hypothetical protein	0.0663686233
+UniRef50_UPI00030CFA16: hypothetical protein|unclassified	0.0663686233
+UniRef50_UPI00034DE06A: hypothetical protein	0.0663678071
+UniRef50_UPI00034DE06A: hypothetical protein|unclassified	0.0663678071
+UniRef50_UPI0003B41491: phospholipid-binding protein	0.0663563080
+UniRef50_UPI0003B41491: phospholipid-binding protein|unclassified	0.0663563080
+UniRef50_W7CDS9	0.0663556494
+UniRef50_W7CDS9|unclassified	0.0663556494
+UniRef50_UPI000378023E: catalase	0.0663516000
+UniRef50_UPI000378023E: catalase|unclassified	0.0663516000
+UniRef50_Q2S415: Leucine--tRNA ligase	0.0663487617
+UniRef50_Q2S415: Leucine--tRNA ligase|unclassified	0.0663487617
+UniRef50_UPI0002FCB073: hypothetical protein	0.0663450589
+UniRef50_UPI0002FCB073: hypothetical protein|unclassified	0.0663450589
+UniRef50_UPI0003665640: hypothetical protein	0.0663403133
+UniRef50_UPI0003665640: hypothetical protein|unclassified	0.0663403133
+UniRef50_UPI0003B7292B: NADPH:quinone oxidoreductase	0.0663384913
+UniRef50_UPI0003B7292B: NADPH:quinone oxidoreductase|unclassified	0.0663384913
+UniRef50_A0A010YMI0: HlyD secretion family protein	0.0663382230
+UniRef50_A0A010YMI0: HlyD secretion family protein|unclassified	0.0663382230
+UniRef50_L7U5P4: Glyoxalase family protein	0.0663362950
+UniRef50_L7U5P4: Glyoxalase family protein|unclassified	0.0663362950
+UniRef50_A4ETQ1: Flagellar protein, putative	0.0663352321
+UniRef50_A4ETQ1: Flagellar protein, putative|unclassified	0.0663352321
+UniRef50_O34354: Altronate oxidoreductase	0.0663330434
+UniRef50_O34354: Altronate oxidoreductase|unclassified	0.0663330434
+UniRef50_UPI00036AD1FE: hypothetical protein	0.0663319195
+UniRef50_UPI00036AD1FE: hypothetical protein|unclassified	0.0663319195
+UniRef50_UPI0003704A0D: hypothetical protein	0.0663309383
+UniRef50_UPI0003704A0D: hypothetical protein|unclassified	0.0663309383
+UniRef50_T8SRY4	0.0663305170
+UniRef50_T8SRY4|unclassified	0.0663305170
+UniRef50_B9E7N0	0.0663263114
+UniRef50_B9E7N0|unclassified	0.0663263114
+UniRef50_E4RTY8	0.0663252145
+UniRef50_E4RTY8|unclassified	0.0663252145
+UniRef50_UPI0004772710: hypothetical protein	0.0663242825
+UniRef50_UPI0004772710: hypothetical protein|unclassified	0.0663242825
+UniRef50_UPI0003098636: foldase	0.0663174520
+UniRef50_UPI0003098636: foldase|unclassified	0.0663174520
+UniRef50_Q5Q0D0: Carbohydrate-binding X8 domain-containing protein	0.0663167017
+UniRef50_Q5Q0D0: Carbohydrate-binding X8 domain-containing protein|unclassified	0.0663167017
+UniRef50_UPI00047EEE80: chromosome replication initiation inhibitor protein	0.0663157349
+UniRef50_UPI00047EEE80: chromosome replication initiation inhibitor protein|unclassified	0.0663157349
+UniRef50_UPI00036463CF: hypothetical protein	0.0663061846
+UniRef50_UPI00036463CF: hypothetical protein|unclassified	0.0663061846
+UniRef50_UPI00047E83AF: TonB-dependent receptor	0.0663014608
+UniRef50_UPI00047E83AF: TonB-dependent receptor|unclassified	0.0663014608
+UniRef50_UPI00016B2545: ATPase AAA	0.0663013029
+UniRef50_UPI00016B2545: ATPase AAA|unclassified	0.0663013029
+UniRef50_UPI0003684932: amino acid ABC transporter substrate-binding protein	0.0662979748
+UniRef50_UPI0003684932: amino acid ABC transporter substrate-binding protein|unclassified	0.0662979748
+UniRef50_A8MH33: Phospho-N-acetylmuramoyl-pentapeptide-transferase	0.0662976760
+UniRef50_A8MH33: Phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.0662976760
+UniRef50_D5ECW5: DNA gyrase subunit A	0.0662954359
+UniRef50_D5ECW5: DNA gyrase subunit A|unclassified	0.0662954359
+UniRef50_UPI00038194DC: 30S ribosomal protein S5	0.0662841312
+UniRef50_UPI00038194DC: 30S ribosomal protein S5|unclassified	0.0662841312
+UniRef50_X1EUL4: Marine sediment metagenome DNA, contig: S03H2_L01738 (Fragment)	0.0662797458
+UniRef50_X1EUL4: Marine sediment metagenome DNA, contig: S03H2_L01738 (Fragment)|unclassified	0.0662797458
+UniRef50_UPI00046D0A0C: hypothetical protein	0.0662737094
+UniRef50_UPI00046D0A0C: hypothetical protein|unclassified	0.0662737094
+UniRef50_B9KY70: 4-hydroxy-tetrahydrodipicolinate reductase	0.0662733454
+UniRef50_B9KY70: 4-hydroxy-tetrahydrodipicolinate reductase|unclassified	0.0662733454
+UniRef50_UPI00034B5B3B: hypothetical protein	0.0662727205
+UniRef50_UPI00034B5B3B: hypothetical protein|unclassified	0.0662727205
+UniRef50_D3HQQ0: Tfp pilus assembly protein PilN	0.0662698493
+UniRef50_D3HQQ0: Tfp pilus assembly protein PilN|unclassified	0.0662698493
+UniRef50_UPI000380926B: hypothetical protein	0.0662590388
+UniRef50_UPI000380926B: hypothetical protein|unclassified	0.0662590388
+UniRef50_UPI0003663FE6: hypothetical protein	0.0662560683
+UniRef50_UPI0003663FE6: hypothetical protein|unclassified	0.0662560683
+UniRef50_UPI00036DCFC3: phosphate starvation protein PhoH	0.0662484283
+UniRef50_UPI00036DCFC3: phosphate starvation protein PhoH|unclassified	0.0662484283
+UniRef50_U2ZBQ2: ATPase provides energy for both assembly of type IV secretion complex and secretion of T-DNA complex	0.0662479558
+UniRef50_U2ZBQ2: ATPase provides energy for both assembly of type IV secretion complex and secretion of T-DNA complex|unclassified	0.0662479558
+UniRef50_UPI0003B3B50B: succinate dehydrogenase	0.0662477653
+UniRef50_UPI0003B3B50B: succinate dehydrogenase|unclassified	0.0662477653
+UniRef50_E0S0U4: ABC transporter permease protein	0.0662474584
+UniRef50_E0S0U4: ABC transporter permease protein|unclassified	0.0662474584
+UniRef50_UPI000411C4E7: ribonucleoside-triphosphate reductase	0.0662473776
+UniRef50_UPI000411C4E7: ribonucleoside-triphosphate reductase|unclassified	0.0662473776
+UniRef50_K8E3F9	0.0662380501
+UniRef50_K8E3F9|unclassified	0.0662380501
+UniRef50_UPI0003B56573: glycosyl transferase	0.0662360745
+UniRef50_UPI0003B56573: glycosyl transferase|unclassified	0.0662360745
+UniRef50_UPI0003623070: hypothetical protein	0.0662329744
+UniRef50_UPI0003623070: hypothetical protein|unclassified	0.0662329744
+UniRef50_Q8RH70: Asparagine--tRNA ligase	0.0662300274
+UniRef50_Q8RH70: Asparagine--tRNA ligase|unclassified	0.0662300274
+UniRef50_UPI0003B5EB9E: AraC family transcriptional regulator	0.0662286025
+UniRef50_UPI0003B5EB9E: AraC family transcriptional regulator|unclassified	0.0662286025
+UniRef50_A0A023C0X0	0.0662242941
+UniRef50_A0A023C0X0|unclassified	0.0662242941
+UniRef50_UPI0002885658: 3-hydroxyacyl-CoA dehydrogenase	0.0662227291
+UniRef50_UPI0002885658: 3-hydroxyacyl-CoA dehydrogenase|unclassified	0.0662227291
+UniRef50_Q1GCA6: Flagellar basal-body rod modification protein FlgD	0.0662212910
+UniRef50_Q1GCA6: Flagellar basal-body rod modification protein FlgD|unclassified	0.0662212910
+UniRef50_Q4FM73: Proline--tRNA ligase	0.0662063688
+UniRef50_Q4FM73: Proline--tRNA ligase|unclassified	0.0662063688
+UniRef50_Q89A59: Ribulose-phosphate 3-epimerase	0.0662059594
+UniRef50_Q89A59: Ribulose-phosphate 3-epimerase|unclassified	0.0662059594
+UniRef50_P27696: Acetolactate synthase, catabolic	0.0661971938
+UniRef50_P27696: Acetolactate synthase, catabolic|unclassified	0.0661971938
+UniRef50_UPI000379DA4A: hypothetical protein	0.0661955298
+UniRef50_UPI000379DA4A: hypothetical protein|unclassified	0.0661955298
+UniRef50_UPI00037D39EE: hypothetical protein, partial	0.0661932031
+UniRef50_UPI00037D39EE: hypothetical protein, partial|unclassified	0.0661932031
+UniRef50_A8JFJ8: Predicted protein	0.0661857016
+UniRef50_A8JFJ8: Predicted protein|unclassified	0.0661857016
+UniRef50_UPI00036588E1: chromosome partitioning protein ParA	0.0661738782
+UniRef50_UPI00036588E1: chromosome partitioning protein ParA|unclassified	0.0661738782
+UniRef50_I0HSI8: Aldolase	0.0661699778
+UniRef50_I0HSI8: Aldolase|unclassified	0.0661699778
+UniRef50_Q67K79: Alanine racemase	0.0661691867
+UniRef50_Q67K79: Alanine racemase|unclassified	0.0661691867
+UniRef50_UPI0003690B9F: hypothetical protein	0.0661669633
+UniRef50_UPI0003690B9F: hypothetical protein|unclassified	0.0661669633
+UniRef50_B2JY49: Plasmid pRiA4b ORF-3 family protein	0.0661665755
+UniRef50_B2JY49: Plasmid pRiA4b ORF-3 family protein|unclassified	0.0661665755
+UniRef50_C7MEP0	0.0661559403
+UniRef50_C7MEP0|unclassified	0.0661559403
+UniRef50_UPI000382AD6F: hypothetical protein	0.0661469182
+UniRef50_UPI000382AD6F: hypothetical protein|unclassified	0.0661469182
+UniRef50_F9ZQ74	0.0661408153
+UniRef50_F9ZQ74|unclassified	0.0661408153
+UniRef50_W5X4J6: Glycoside hydrolase family protein	0.0661388371
+UniRef50_W5X4J6: Glycoside hydrolase family protein|unclassified	0.0661388371
+UniRef50_Q01FQ9: WGS project CAID00000000 data, contig chromosome 01 (Fragment)	0.0661358369
+UniRef50_Q01FQ9: WGS project CAID00000000 data, contig chromosome 01 (Fragment)|unclassified	0.0661358369
+UniRef50_U3JIC5	0.0661335702
+UniRef50_U3JIC5|unclassified	0.0661335702
+UniRef50_UPI0003B57313: ATPase	0.0661318432
+UniRef50_UPI0003B57313: ATPase|unclassified	0.0661318432
+UniRef50_UPI00037808F9: hypothetical protein	0.0661315681
+UniRef50_UPI00037808F9: hypothetical protein|unclassified	0.0661315681
+UniRef50_A8L0L2: Solute-binding protein	0.0661303512
+UniRef50_A8L0L2: Solute-binding protein|unclassified	0.0661303512
+UniRef50_Q7MWR7: CTP synthase	0.0661279631
+UniRef50_Q7MWR7: CTP synthase|unclassified	0.0661279631
+UniRef50_UPI000027C743: hypothetical protein	0.0661277636
+UniRef50_UPI000027C743: hypothetical protein|unclassified	0.0661277636
+UniRef50_M5BT84	0.0661274086
+UniRef50_M5BT84|unclassified	0.0661274086
+UniRef50_Q3BZD0: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase	0.0661269021
+UniRef50_Q3BZD0: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase|unclassified	0.0661269021
+UniRef50_UPI00030FA943: hypothetical protein	0.0661252157
+UniRef50_UPI00030FA943: hypothetical protein|unclassified	0.0661252157
+UniRef50_A9NG16: Phosphopentomutase	0.0661251781
+UniRef50_A9NG16: Phosphopentomutase|unclassified	0.0661251781
+UniRef50_F4PV50	0.0661234806
+UniRef50_F4PV50|unclassified	0.0661234806
+UniRef50_UPI00046E044E	0.0661220729
+UniRef50_UPI00046E044E|unclassified	0.0661220729
+UniRef50_UPI000368AB82: hypothetical protein	0.0661186123
+UniRef50_UPI000368AB82: hypothetical protein|unclassified	0.0661186123
+UniRef50_W7JLU0: Lactonase	0.0661096380
+UniRef50_W7JLU0: Lactonase|unclassified	0.0661096380
+UniRef50_I5CG45: 3-oxoacyl-ACP reductase	0.0661083813
+UniRef50_I5CG45: 3-oxoacyl-ACP reductase|unclassified	0.0661083813
+UniRef50_UPI0001C37E98: CAAX amino terminal protease family protein	0.0661075356
+UniRef50_UPI0001C37E98: CAAX amino terminal protease family protein|unclassified	0.0661075356
+UniRef50_B9KZR6: BNR/Asp-box repeat domain protein	0.0661055044
+UniRef50_B9KZR6: BNR/Asp-box repeat domain protein|unclassified	0.0661055044
+UniRef50_Q0VQX7: tRNA (cmo5U34)-methyltransferase	0.0660932395
+UniRef50_Q0VQX7: tRNA (cmo5U34)-methyltransferase|unclassified	0.0660932395
+UniRef50_Q11H36	0.0660855904
+UniRef50_Q11H36|unclassified	0.0660855904
+UniRef50_UPI00034553FE: hypothetical protein	0.0660828170
+UniRef50_UPI00034553FE: hypothetical protein|unclassified	0.0660828170
+UniRef50_Q0P8U6: Pseudaminic acid cytidylyltransferase	0.0660791508
+UniRef50_Q0P8U6: Pseudaminic acid cytidylyltransferase|unclassified	0.0660791508
+UniRef50_H0DEG5	0.0660789862
+UniRef50_H0DEG5|unclassified	0.0660789862
+UniRef50_Q28NS7	0.0660746619
+UniRef50_Q28NS7|unclassified	0.0660746619
+UniRef50_UPI00029ADDF6: glutathione peroxidase precursor, partial	0.0660651030
+UniRef50_UPI00029ADDF6: glutathione peroxidase precursor, partial|unclassified	0.0660651030
+UniRef50_UPI000464A474: quinone oxidoreductase	0.0660648679
+UniRef50_UPI000464A474: quinone oxidoreductase|unclassified	0.0660648679
+UniRef50_UPI0004690BBF: major facilitator transporter	0.0660635027
+UniRef50_UPI0004690BBF: major facilitator transporter|unclassified	0.0660635027
+UniRef50_UPI00035C8914: hypothetical protein	0.0660599955
+UniRef50_UPI00035C8914: hypothetical protein|unclassified	0.0660599955
+UniRef50_A6DQ23	0.0660593311
+UniRef50_A6DQ23|unclassified	0.0660593311
+UniRef50_D6X9W8	0.0660575600
+UniRef50_D6X9W8|unclassified	0.0660575600
+UniRef50_UPI0003C0FBBA: PREDICTED: aldehyde dehydrogenase-like	0.0660573182
+UniRef50_UPI0003C0FBBA: PREDICTED: aldehyde dehydrogenase-like|unclassified	0.0660573182
+UniRef50_UPI0004781DCE: hypothetical protein	0.0660570344
+UniRef50_UPI0004781DCE: hypothetical protein|unclassified	0.0660570344
+UniRef50_E1VJA0	0.0660426867
+UniRef50_E1VJA0|unclassified	0.0660426867
+UniRef50_UPI000374DFFF: dihydrodipicolinate synthase	0.0660416353
+UniRef50_UPI000374DFFF: dihydrodipicolinate synthase|unclassified	0.0660416353
+UniRef50_P33074: L-serine dehydratase, beta chain	0.0660413844
+UniRef50_P33074: L-serine dehydratase, beta chain|unclassified	0.0660413844
+UniRef50_UPI0003EBC3C3: PREDICTED: ornithine carbamoyltransferase, mitochondrial-like	0.0660375828
+UniRef50_UPI0003EBC3C3: PREDICTED: ornithine carbamoyltransferase, mitochondrial-like|unclassified	0.0660375828
+UniRef50_UPI00036C2011: hypothetical protein	0.0660367669
+UniRef50_UPI00036C2011: hypothetical protein|unclassified	0.0660367669
+UniRef50_C1MPH8: Predicted protein	0.0660297897
+UniRef50_C1MPH8: Predicted protein|unclassified	0.0660297897
+UniRef50_B9DZ45	0.0660292060
+UniRef50_B9DZ45|unclassified	0.0660292060
+UniRef50_D3EBA1: Ankyrin	0.0660229922
+UniRef50_D3EBA1: Ankyrin|unclassified	0.0660229922
+UniRef50_Q896G3: Glutamate 5-kinase	0.0660226636
+UniRef50_Q896G3: Glutamate 5-kinase|unclassified	0.0660226636
+UniRef50_UPI000477E66E: aldo/keto reductase	0.0660216467
+UniRef50_UPI000477E66E: aldo/keto reductase|unclassified	0.0660216467
+UniRef50_UPI000466C3FF: protoheme IX farnesyltransferase	0.0660155014
+UniRef50_UPI000466C3FF: protoheme IX farnesyltransferase|unclassified	0.0660155014
+UniRef50_UPI00037CF5B5: hypothetical protein	0.0660136189
+UniRef50_UPI00037CF5B5: hypothetical protein|unclassified	0.0660136189
+UniRef50_UPI0003EB0A2B: GTPase	0.0660134796
+UniRef50_UPI0003EB0A2B: GTPase|unclassified	0.0660134796
+UniRef50_UPI0003C17ADD: PREDICTED: aldehyde dehydrogenase, mitochondrial-like	0.0660125904
+UniRef50_UPI0003C17ADD: PREDICTED: aldehyde dehydrogenase, mitochondrial-like|unclassified	0.0660125904
+UniRef50_UPI0004728F58: valine--tRNA ligase, partial	0.0660006678
+UniRef50_UPI0004728F58: valine--tRNA ligase, partial|unclassified	0.0660006678
+UniRef50_UPI000465ECB9: hypothetical protein	0.0659966007
+UniRef50_UPI000465ECB9: hypothetical protein|unclassified	0.0659966007
+UniRef50_UPI0003B4C7AB: isomerase	0.0659908081
+UniRef50_UPI0003B4C7AB: isomerase|unclassified	0.0659908081
+UniRef50_UPI000381E41C: hypothetical protein	0.0659881416
+UniRef50_UPI000381E41C: hypothetical protein|unclassified	0.0659881416
+UniRef50_Q8K928: Oxygen-independent coproporphyrinogen-III oxidase-like protein BUsg_532	0.0659841304
+UniRef50_Q8K928: Oxygen-independent coproporphyrinogen-III oxidase-like protein BUsg_532|unclassified	0.0659841304
+UniRef50_UPI00031F6569: hypothetical protein	0.0659797936
+UniRef50_UPI00031F6569: hypothetical protein|unclassified	0.0659797936
+UniRef50_P45856: Probable 3-hydroxybutyryl-CoA dehydrogenase	0.0659713529
+UniRef50_P45856: Probable 3-hydroxybutyryl-CoA dehydrogenase|unclassified	0.0659713529
+UniRef50_UPI0003EAA83D: PREDICTED: sentrin-specific protease 3-like	0.0659676110
+UniRef50_UPI0003EAA83D: PREDICTED: sentrin-specific protease 3-like|unclassified	0.0659676110
+UniRef50_A1AW70: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.0659632271
+UniRef50_A1AW70: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.0659632271
+UniRef50_U6GJB3: JmjC domain-containing protein, putative	0.0659607345
+UniRef50_U6GJB3: JmjC domain-containing protein, putative|unclassified	0.0659607345
+UniRef50_UPI0003B78A81: AraC family transcriptional regulator	0.0659584300
+UniRef50_UPI0003B78A81: AraC family transcriptional regulator|unclassified	0.0659584300
+UniRef50_UPI000441EDB2: PREDICTED: LOW QUALITY PROTEIN: abhydrolase domain-containing protein 1	0.0659561232
+UniRef50_UPI000441EDB2: PREDICTED: LOW QUALITY PROTEIN: abhydrolase domain-containing protein 1|unclassified	0.0659561232
+UniRef50_UPI00047DF220: hypothetical protein	0.0659525822
+UniRef50_UPI00047DF220: hypothetical protein|unclassified	0.0659525822
+UniRef50_UPI00036353C6: hypothetical protein	0.0659508912
+UniRef50_UPI00036353C6: hypothetical protein|unclassified	0.0659508912
+UniRef50_UPI0003744790: hypothetical protein	0.0659497519
+UniRef50_UPI0003744790: hypothetical protein|unclassified	0.0659497519
+UniRef50_UPI0003A9FA54: amino acid transporter	0.0659410783
+UniRef50_UPI0003A9FA54: amino acid transporter|unclassified	0.0659410783
+UniRef50_A0AJ06: Glutamyl-tRNA reductase	0.0659409233
+UniRef50_A0AJ06: Glutamyl-tRNA reductase|unclassified	0.0659409233
+UniRef50_D8MLY3: Ferrichrome-binding periplasmic protein	0.0659301004
+UniRef50_D8MLY3: Ferrichrome-binding periplasmic protein|unclassified	0.0659301004
+UniRef50_B3PHC9: Diguanylate cyclase (GGDEF) domain protein	0.0659208929
+UniRef50_B3PHC9: Diguanylate cyclase (GGDEF) domain protein|unclassified	0.0659208929
+UniRef50_N0GHE9	0.0659194730
+UniRef50_N0GHE9|unclassified	0.0659194730
+UniRef50_C1D8M2: LolC	0.0659111890
+UniRef50_C1D8M2: LolC|unclassified	0.0659111890
+UniRef50_Q9PCR3: Monofunctional biosynthetic peptidoglycan transglycosylase	0.0659036098
+UniRef50_Q9PCR3: Monofunctional biosynthetic peptidoglycan transglycosylase|unclassified	0.0659036098
+UniRef50_C3FBF3	0.0659035183
+UniRef50_C3FBF3|unclassified	0.0659035183
+UniRef50_H7GDQ8: LmbE-like protein	0.0659024810
+UniRef50_H7GDQ8: LmbE-like protein|unclassified	0.0659024810
+UniRef50_UPI000380B7CD: hypothetical protein	0.0658964079
+UniRef50_UPI000380B7CD: hypothetical protein|unclassified	0.0658964079
+UniRef50_UPI00026C7EA0: 2-isopropylmalate synthase	0.0658941774
+UniRef50_UPI00026C7EA0: 2-isopropylmalate synthase|unclassified	0.0658941774
+UniRef50_Q0BWA4: Uroporphyrinogen decarboxylase	0.0658903763
+UniRef50_Q0BWA4: Uroporphyrinogen decarboxylase|unclassified	0.0658903763
+UniRef50_UPI00037D7751: hypothetical protein	0.0658877701
+UniRef50_UPI00037D7751: hypothetical protein|unclassified	0.0658877701
+UniRef50_UPI000287FB05: peptidase S55	0.0658845770
+UniRef50_UPI000287FB05: peptidase S55|unclassified	0.0658845770
+UniRef50_UPI0003735CF6: hypothetical protein	0.0658838299
+UniRef50_UPI0003735CF6: hypothetical protein|unclassified	0.0658838299
+UniRef50_UPI000463FCBB: MULTISPECIES: sugar ABC transporter permease	0.0658811291
+UniRef50_UPI000463FCBB: MULTISPECIES: sugar ABC transporter permease|unclassified	0.0658811291
+UniRef50_F7KFN6	0.0658795385
+UniRef50_F7KFN6|unclassified	0.0658795385
+UniRef50_U2Z083: OmpA domain protein	0.0658700424
+UniRef50_U2Z083: OmpA domain protein|unclassified	0.0658700424
+UniRef50_UPI0003B43162: hypothetical protein, partial	0.0658685121
+UniRef50_UPI0003B43162: hypothetical protein, partial|unclassified	0.0658685121
+UniRef50_UPI000225FD75: DNA polymerase IV	0.0658657500
+UniRef50_UPI000225FD75: DNA polymerase IV|unclassified	0.0658657500
+UniRef50_A1U4B8: tRNA (cmo5U34)-methyltransferase	0.0658616373
+UniRef50_A1U4B8: tRNA (cmo5U34)-methyltransferase|unclassified	0.0658616373
+UniRef50_H9KBT1	0.0658604888
+UniRef50_H9KBT1|unclassified	0.0658604888
+UniRef50_B6EKQ3	0.0658590407
+UniRef50_B6EKQ3|unclassified	0.0658590407
+UniRef50_UPI0004760AC3: dihydropteroate synthase	0.0658586138
+UniRef50_UPI0004760AC3: dihydropteroate synthase|unclassified	0.0658586138
+UniRef50_UPI000379B7C3: bicyclomycin resistance protein	0.0658565551
+UniRef50_UPI000379B7C3: bicyclomycin resistance protein|unclassified	0.0658565551
+UniRef50_E8SR78: ApbE	0.0658564666
+UniRef50_E8SR78: ApbE|unclassified	0.0658564666
+UniRef50_A5G1D5: Uroporphyrinogen decarboxylase	0.0658559123
+UniRef50_A5G1D5: Uroporphyrinogen decarboxylase|unclassified	0.0658559123
+UniRef50_Q1GZH1: UPF0301 protein Mfla_2099	0.0658418072
+UniRef50_Q1GZH1: UPF0301 protein Mfla_2099|unclassified	0.0658418072
+UniRef50_B6T476: Membrane protein	0.0658374510
+UniRef50_B6T476: Membrane protein|unclassified	0.0658374510
+UniRef50_Q3A3Z7: 6-carboxyhexanoate--CoA ligase	0.0658296180
+UniRef50_Q3A3Z7: 6-carboxyhexanoate--CoA ligase|unclassified	0.0658296180
+UniRef50_UPI00046FE879: methenyltetrahydrofolate cyclohydrolase	0.0658273679
+UniRef50_UPI00046FE879: methenyltetrahydrofolate cyclohydrolase|unclassified	0.0658273679
+UniRef50_Q9KFK3: BH0476 protein	0.0658271208
+UniRef50_Q9KFK3: BH0476 protein|unclassified	0.0658271208
+UniRef50_R6JRA3	0.0658242161
+UniRef50_R6JRA3|unclassified	0.0658242161
+UniRef50_UPI000364AA41: hypothetical protein	0.0658197665
+UniRef50_UPI000364AA41: hypothetical protein|unclassified	0.0658197665
+UniRef50_A1AUZ4: Quinolinate synthase A	0.0658147703
+UniRef50_A1AUZ4: Quinolinate synthase A|unclassified	0.0658147703
+UniRef50_UPI0003807F61: cation transporter	0.0658146844
+UniRef50_UPI0003807F61: cation transporter|unclassified	0.0658146844
+UniRef50_Q1IL21: DGPFAETKE domain protein	0.0658135083
+UniRef50_Q1IL21: DGPFAETKE domain protein|unclassified	0.0658135083
+UniRef50_A8HTC4: Predicted protein	0.0658097747
+UniRef50_A8HTC4: Predicted protein|unclassified	0.0658097747
+UniRef50_W5X8Y6	0.0658069038
+UniRef50_W5X8Y6|unclassified	0.0658069038
+UniRef50_K2LEF4	0.0658068550
+UniRef50_K2LEF4|unclassified	0.0658068550
+UniRef50_UPI0004417890: Arginase/deacetylase	0.0658014617
+UniRef50_UPI0004417890: Arginase/deacetylase|unclassified	0.0658014617
+UniRef50_UPI0003330B2C	0.0657992970
+UniRef50_UPI0003330B2C|unclassified	0.0657992970
+UniRef50_UPI0004776714: hypothetical protein	0.0657946664
+UniRef50_UPI0004776714: hypothetical protein|unclassified	0.0657946664
+UniRef50_D3NSC7: sn-glycerol 3-phosphate transport system substrate-binding protein	0.0657943713
+UniRef50_D3NSC7: sn-glycerol 3-phosphate transport system substrate-binding protein|unclassified	0.0657943713
+UniRef50_UPI00035DF1D0: hypothetical protein	0.0657877780
+UniRef50_UPI00035DF1D0: hypothetical protein|unclassified	0.0657877780
+UniRef50_Q04R37: Pyridoxine/pyridoxamine 5'-phosphate oxidase	0.0657827471
+UniRef50_Q04R37: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	0.0657827471
+UniRef50_UPI00045E7ED4: hypothetical protein	0.0657769209
+UniRef50_UPI00045E7ED4: hypothetical protein|unclassified	0.0657769209
+UniRef50_A1USY6	0.0657767437
+UniRef50_A1USY6|unclassified	0.0657767437
+UniRef50_UPI000361F695: hypothetical protein	0.0657766038
+UniRef50_UPI000361F695: hypothetical protein|unclassified	0.0657766038
+UniRef50_UPI000475F4D6: macrolide ABC transporter ATP-binding protein	0.0657736494
+UniRef50_UPI000475F4D6: macrolide ABC transporter ATP-binding protein|unclassified	0.0657736494
+UniRef50_F5Z800	0.0657705828
+UniRef50_F5Z800|unclassified	0.0657705828
+UniRef50_UPI00047A0A46: alpha/beta hydrolase	0.0657697296
+UniRef50_UPI00047A0A46: alpha/beta hydrolase|unclassified	0.0657697296
+UniRef50_UPI0004635FD2: heptaprenyl diphosphate synthase	0.0657690754
+UniRef50_UPI0004635FD2: heptaprenyl diphosphate synthase|unclassified	0.0657690754
+UniRef50_Q8YQD6: Alr3897 protein	0.0657682393
+UniRef50_Q8YQD6: Alr3897 protein|unclassified	0.0657682393
+UniRef50_UPI0002EF3B28: hypothetical protein	0.0657677576
+UniRef50_UPI0002EF3B28: hypothetical protein|unclassified	0.0657677576
+UniRef50_B6ACL5	0.0657586161
+UniRef50_B6ACL5|unclassified	0.0657586161
+UniRef50_UPI000464D235: alpha/beta hydrolase	0.0657533690
+UniRef50_UPI000464D235: alpha/beta hydrolase|unclassified	0.0657533690
+UniRef50_UPI000287B4AA: hypothetical protein	0.0657530461
+UniRef50_UPI000287B4AA: hypothetical protein|unclassified	0.0657530461
+UniRef50_UPI0004707344: hypothetical protein, partial	0.0657486641
+UniRef50_UPI0004707344: hypothetical protein, partial|unclassified	0.0657486641
+UniRef50_B8H2F3: Quinolinate synthase A	0.0657445948
+UniRef50_B8H2F3: Quinolinate synthase A|unclassified	0.0657445948
+UniRef50_UPI000370CF25: hypothetical protein	0.0657371485
+UniRef50_UPI000370CF25: hypothetical protein|unclassified	0.0657371485
+UniRef50_UPI000411BC2D: hypothetical protein	0.0657371299
+UniRef50_UPI000411BC2D: hypothetical protein|unclassified	0.0657371299
+UniRef50_X4ZFV9	0.0657351221
+UniRef50_X4ZFV9|unclassified	0.0657351221
+UniRef50_W6IJM6: Putative cytosolic protein	0.0657250457
+UniRef50_W6IJM6: Putative cytosolic protein|unclassified	0.0657250457
+UniRef50_UPI000382ABAD: hypothetical protein	0.0657245989
+UniRef50_UPI000382ABAD: hypothetical protein|unclassified	0.0657245989
+UniRef50_A0A022H135: Short-chain dehydrogenase	0.0657178500
+UniRef50_A0A022H135: Short-chain dehydrogenase|unclassified	0.0657178500
+UniRef50_UPI0003A9B880: phosphoribosylglycinamide formyltransferase	0.0657124369
+UniRef50_UPI0003A9B880: phosphoribosylglycinamide formyltransferase|unclassified	0.0657124369
+UniRef50_UPI000471B44A: hypothetical protein	0.0657106684
+UniRef50_UPI000471B44A: hypothetical protein|unclassified	0.0657106684
+UniRef50_UPI00038238BD: hypothetical protein	0.0657104184
+UniRef50_UPI00038238BD: hypothetical protein|unclassified	0.0657104184
+UniRef50_UPI0003794C91: hypothetical protein	0.0657103783
+UniRef50_UPI0003794C91: hypothetical protein|unclassified	0.0657103783
+UniRef50_UPI00037DACFC: hypothetical protein	0.0657103141
+UniRef50_UPI00037DACFC: hypothetical protein|unclassified	0.0657103141
+UniRef50_UPI00037CD5A6: hypothetical protein	0.0657065277
+UniRef50_UPI00037CD5A6: hypothetical protein|unclassified	0.0657065277
+UniRef50_X1V9P3: Marine sediment metagenome DNA, contig: S12H4_S20366 (Fragment)	0.0657014641
+UniRef50_X1V9P3: Marine sediment metagenome DNA, contig: S12H4_S20366 (Fragment)|unclassified	0.0657014641
+UniRef50_UPI0004639151: alpha/beta hydrolase	0.0656998404
+UniRef50_UPI0004639151: alpha/beta hydrolase|unclassified	0.0656998404
+UniRef50_UPI00042B32D5: DEA(D/H)-box RNA helicase family protein isoform 3	0.0656995965
+UniRef50_UPI00042B32D5: DEA(D/H)-box RNA helicase family protein isoform 3|unclassified	0.0656995965
+UniRef50_F0VAL7	0.0656943897
+UniRef50_F0VAL7|unclassified	0.0656943897
+UniRef50_UPI00046741CB: quinone oxidoreductase, partial	0.0656937782
+UniRef50_UPI00046741CB: quinone oxidoreductase, partial|unclassified	0.0656937782
+UniRef50_UPI00037D92A5: hypothetical protein	0.0656907089
+UniRef50_UPI00037D92A5: hypothetical protein|unclassified	0.0656907089
+UniRef50_Q7VRJ1: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE	0.0656902280
+UniRef50_Q7VRJ1: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE|unclassified	0.0656902280
+UniRef50_UPI00037AE5CB: hypothetical protein	0.0656895818
+UniRef50_UPI00037AE5CB: hypothetical protein|unclassified	0.0656895818
+UniRef50_UPI000471C471: FAD-binding molybdopterin dehydrogenase	0.0656878951
+UniRef50_UPI000471C471: FAD-binding molybdopterin dehydrogenase|unclassified	0.0656878951
+UniRef50_UPI0003673DF5: hypothetical protein	0.0656850436
+UniRef50_UPI0003673DF5: hypothetical protein|unclassified	0.0656850436
+UniRef50_UPI000262C9FB: signal peptide peptidase SppA, 36K type	0.0656850223
+UniRef50_UPI000262C9FB: signal peptide peptidase SppA, 36K type|unclassified	0.0656850223
+UniRef50_N2JH32	0.0656839695
+UniRef50_N2JH32|unclassified	0.0656839695
+UniRef50_G2LZN5	0.0656801758
+UniRef50_G2LZN5|unclassified	0.0656801758
+UniRef50_W8SB38: Pe-pgrs family protein	0.0656777896
+UniRef50_W8SB38: Pe-pgrs family protein|unclassified	0.0656777896
+UniRef50_UPI0003942A9F	0.0656770748
+UniRef50_UPI0003942A9F|unclassified	0.0656770748
+UniRef50_UPI00041BA3CC: oxidoreductase	0.0656755191
+UniRef50_UPI00041BA3CC: oxidoreductase|unclassified	0.0656755191
+UniRef50_UPI00037C277F: hypothetical protein	0.0656674349
+UniRef50_UPI00037C277F: hypothetical protein|unclassified	0.0656674349
+UniRef50_UPI0003AB636B: PREDICTED: collagen alpha-2(I) chain-like	0.0656655728
+UniRef50_UPI0003AB636B: PREDICTED: collagen alpha-2(I) chain-like|unclassified	0.0656655728
+UniRef50_UPI000237ECB3: deoxyribodipyrimidine photo-lyase	0.0656655220
+UniRef50_UPI000237ECB3: deoxyribodipyrimidine photo-lyase|unclassified	0.0656655220
+UniRef50_Q927P1: tRNA pseudouridine synthase A	0.0656606942
+UniRef50_Q927P1: tRNA pseudouridine synthase A|unclassified	0.0656606942
+UniRef50_S9SE56	0.0656529962
+UniRef50_S9SE56|unclassified	0.0656529962
+UniRef50_UPI00029A04C2: oxidoreductase	0.0656505761
+UniRef50_UPI00029A04C2: oxidoreductase|unclassified	0.0656505761
+UniRef50_I1GZ96	0.0656433409
+UniRef50_I1GZ96|unclassified	0.0656433409
+UniRef50_UPI000474DBBE: GntR family transcriptional regulator	0.0656391918
+UniRef50_UPI000474DBBE: GntR family transcriptional regulator|unclassified	0.0656391918
+UniRef50_UPI0002F5BA85: hypothetical protein	0.0656362385
+UniRef50_UPI0002F5BA85: hypothetical protein|unclassified	0.0656362385
+UniRef50_A5KQ33: Conserved domain protein	0.0656313751
+UniRef50_A5KQ33: Conserved domain protein|unclassified	0.0656313751
+UniRef50_J3A2V1: Flp pilus assembly protein TadB	0.0656234856
+UniRef50_J3A2V1: Flp pilus assembly protein TadB|unclassified	0.0656234856
+UniRef50_A8U2N1: Late control gene D protein	0.0656181402
+UniRef50_A8U2N1: Late control gene D protein|unclassified	0.0656181402
+UniRef50_W6B709: Polyketide synthase module	0.0656173776
+UniRef50_W6B709: Polyketide synthase module|unclassified	0.0656173776
+UniRef50_UPI000466D951: succinylglutamate desuccinylase, partial	0.0656102985
+UniRef50_UPI000466D951: succinylglutamate desuccinylase, partial|unclassified	0.0656102985
+UniRef50_T0MQ13	0.0656091089
+UniRef50_T0MQ13|unclassified	0.0656091089
+UniRef50_O67108: DNA gyrase subunit A	0.0656080163
+UniRef50_O67108: DNA gyrase subunit A|unclassified	0.0656080163
+UniRef50_B7CBG6	0.0656000767
+UniRef50_B7CBG6|unclassified	0.0656000767
+UniRef50_B5F623: Uronate isomerase	0.0655964545
+UniRef50_B5F623: Uronate isomerase|unclassified	0.0655964545
+UniRef50_Q1IZL1: Glutamyl-Q tRNA(Asp) synthetase	0.0655903224
+UniRef50_Q1IZL1: Glutamyl-Q tRNA(Asp) synthetase|unclassified	0.0655903224
+UniRef50_A9IP50: TRAP-type mannitol/chloroaromatic compound transport system, large permease component	0.0655869714
+UniRef50_A9IP50: TRAP-type mannitol/chloroaromatic compound transport system, large permease component|unclassified	0.0655869714
+UniRef50_UPI0001CB956C: PREDICTED: cationic amino acid transporter 4-like	0.0655866818
+UniRef50_UPI0001CB956C: PREDICTED: cationic amino acid transporter 4-like|unclassified	0.0655866818
+UniRef50_Q7Z4M7: CHD1 protein (Fragment)	0.0655853855
+UniRef50_Q7Z4M7: CHD1 protein (Fragment)|unclassified	0.0655853855
+UniRef50_UPI00032AAF29: PREDICTED: mediator-associated protein 1-like	0.0655761237
+UniRef50_UPI00032AAF29: PREDICTED: mediator-associated protein 1-like|unclassified	0.0655761237
+UniRef50_UPI000360FD52: acetyl-CoA carboxylase carboxyl transferase subunit alpha	0.0655696246
+UniRef50_UPI000360FD52: acetyl-CoA carboxylase carboxyl transferase subunit alpha|unclassified	0.0655696246
+UniRef50_UPI00036AB6C5: hypothetical protein	0.0655696076
+UniRef50_UPI00036AB6C5: hypothetical protein|unclassified	0.0655696076
+UniRef50_UPI0004791DBF: serine acetyltransferase	0.0655656713
+UniRef50_UPI0004791DBF: serine acetyltransferase|unclassified	0.0655656713
+UniRef50_UPI000311DC53: hypothetical protein	0.0655645292
+UniRef50_UPI000311DC53: hypothetical protein|unclassified	0.0655645292
+UniRef50_UPI00040300C5: phosphoesterase	0.0655524326
+UniRef50_UPI00040300C5: phosphoesterase|unclassified	0.0655524326
+UniRef50_UPI000477995E: UDP pyrophosphate synthase	0.0655507853
+UniRef50_UPI000477995E: UDP pyrophosphate synthase|unclassified	0.0655507853
+UniRef50_A3W5K4: Possible FlgD protein	0.0655475769
+UniRef50_A3W5K4: Possible FlgD protein|unclassified	0.0655475769
+UniRef50_G0EB42	0.0655465145
+UniRef50_G0EB42|unclassified	0.0655465145
+UniRef50_UPI0003B7B4D4: hypothetical protein	0.0655344053
+UniRef50_UPI0003B7B4D4: hypothetical protein|unclassified	0.0655344053
+UniRef50_A0A059DS58	0.0655323521
+UniRef50_A0A059DS58|unclassified	0.0655323521
+UniRef50_UPI0002D970E2: hypothetical protein	0.0655283312
+UniRef50_UPI0002D970E2: hypothetical protein|unclassified	0.0655283312
+UniRef50_UPI00036FAA7C: hypothetical protein	0.0655283312
+UniRef50_UPI00036FAA7C: hypothetical protein|unclassified	0.0655283312
+UniRef50_M4KCF1: Putative membrane protein	0.0655243794
+UniRef50_M4KCF1: Putative membrane protein|unclassified	0.0655243794
+UniRef50_W0HSM1: Lipoprotein	0.0655202496
+UniRef50_W0HSM1: Lipoprotein|unclassified	0.0655202496
+UniRef50_UPI0003B5E6ED: phosphonate ABC transporter ATP-binding protein, partial	0.0655157460
+UniRef50_UPI0003B5E6ED: phosphonate ABC transporter ATP-binding protein, partial|unclassified	0.0655157460
+UniRef50_H1XR94: Ethanolamine utilization protein EutJ family protein	0.0655118502
+UniRef50_H1XR94: Ethanolamine utilization protein EutJ family protein|unclassified	0.0655118502
+UniRef50_A0A017HG79: Flagellar basal-body rod modification protein FlgD	0.0655110949
+UniRef50_A0A017HG79: Flagellar basal-body rod modification protein FlgD|unclassified	0.0655110949
+UniRef50_Q28JI8: Basal-body rod modification protein FlgD	0.0655110949
+UniRef50_Q28JI8: Basal-body rod modification protein FlgD|unclassified	0.0655110949
+UniRef50_UPI000441C528: PREDICTED: transmembrane protein FAM155B-like	0.0655046117
+UniRef50_UPI000441C528: PREDICTED: transmembrane protein FAM155B-like|unclassified	0.0655046117
+UniRef50_UPI0003B4F260: hemolysin D	0.0655039772
+UniRef50_UPI0003B4F260: hemolysin D|unclassified	0.0655039772
+UniRef50_S8B964	0.0655033035
+UniRef50_S8B964|unclassified	0.0655033035
+UniRef50_W9V073: Pilus assembly protein, PilO	0.0655005354
+UniRef50_W9V073: Pilus assembly protein, PilO|unclassified	0.0655005354
+UniRef50_UPI0003A50805: translation initiation factor IF-3	0.0654967359
+UniRef50_UPI0003A50805: translation initiation factor IF-3|unclassified	0.0654967359
+UniRef50_UPI0004678340: sodium:solute symporter	0.0654955931
+UniRef50_UPI0004678340: sodium:solute symporter|unclassified	0.0654955931
+UniRef50_Q6MD02: Putative Holliday junction resolvase	0.0654953760
+UniRef50_Q6MD02: Putative Holliday junction resolvase|unclassified	0.0654953760
+UniRef50_UPI000376287F: hypothetical protein, partial	0.0654882072
+UniRef50_UPI000376287F: hypothetical protein, partial|unclassified	0.0654882072
+UniRef50_UPI00036E0A70: hypothetical protein, partial	0.0654802464
+UniRef50_UPI00036E0A70: hypothetical protein, partial|unclassified	0.0654802464
+UniRef50_O49196: Adenylyl-sulfate kinase 2, chloroplastic	0.0654720807
+UniRef50_O49196: Adenylyl-sulfate kinase 2, chloroplastic|unclassified	0.0654720807
+UniRef50_UPI00041A682F: alpha/beta hydrolase	0.0654702695
+UniRef50_UPI00041A682F: alpha/beta hydrolase|unclassified	0.0654702695
+UniRef50_UPI0003872478	0.0654670212
+UniRef50_UPI0003872478|unclassified	0.0654670212
+UniRef50_UPI000372A769: hypothetical protein	0.0654650335
+UniRef50_UPI000372A769: hypothetical protein|unclassified	0.0654650335
+UniRef50_A0A017T6L8	0.0654644017
+UniRef50_A0A017T6L8|unclassified	0.0654644017
+UniRef50_UPI00046D45A2: hypothetical protein	0.0654615509
+UniRef50_UPI00046D45A2: hypothetical protein|unclassified	0.0654615509
+UniRef50_R8UIL6	0.0654575183
+UniRef50_R8UIL6|unclassified	0.0654575183
+UniRef50_UPI000469FF0C: hypothetical protein	0.0654543519
+UniRef50_UPI000469FF0C: hypothetical protein|unclassified	0.0654543519
+UniRef50_P30084: Enoyl-CoA hydratase, mitochondrial	0.0654534092
+UniRef50_P30084: Enoyl-CoA hydratase, mitochondrial|unclassified	0.0654534092
+UniRef50_UPI00036FB4E8: hypothetical protein	0.0654448220
+UniRef50_UPI00036FB4E8: hypothetical protein|unclassified	0.0654448220
+UniRef50_G6PS09: Permease family protein	0.0654400077
+UniRef50_G6PS09: Permease family protein|unclassified	0.0654400077
+UniRef50_UPI0003826309: membrane protein	0.0654399829
+UniRef50_UPI0003826309: membrane protein|unclassified	0.0654399829
+UniRef50_A0A024J9L9: Similar to Saccharomyces cerevisiae YER050C RSM18 Mitochondrial ribosomal protein of the small subunit	0.0654389078
+UniRef50_A0A024J9L9: Similar to Saccharomyces cerevisiae YER050C RSM18 Mitochondrial ribosomal protein of the small subunit|unclassified	0.0654389078
+UniRef50_UPI00035EAC91: hypothetical protein	0.0654372647
+UniRef50_UPI00035EAC91: hypothetical protein|unclassified	0.0654372647
+UniRef50_A8F740: Periplasmic binding protein/LacI transcriptional regulator	0.0654290181
+UniRef50_A8F740: Periplasmic binding protein/LacI transcriptional regulator|unclassified	0.0654290181
+UniRef50_UPI00036F1D80: hypothetical protein	0.0654262270
+UniRef50_UPI00036F1D80: hypothetical protein|unclassified	0.0654262270
+UniRef50_K8FCL7: Autoinducer-2 (AI-2) modifying protein LsrG	0.0654255353
+UniRef50_K8FCL7: Autoinducer-2 (AI-2) modifying protein LsrG|unclassified	0.0654255353
+UniRef50_UPI000474A3E0: transcriptional regulator	0.0654251484
+UniRef50_UPI000474A3E0: transcriptional regulator|unclassified	0.0654251484
+UniRef50_UPI00047CC76B: allophanate hydrolase	0.0654236790
+UniRef50_UPI00047CC76B: allophanate hydrolase|unclassified	0.0654236790
+UniRef50_F0PBM9	0.0654192958
+UniRef50_F0PBM9|unclassified	0.0654192958
+UniRef50_A6W618	0.0654169178
+UniRef50_A6W618|unclassified	0.0654169178
+UniRef50_UPI00046CFD0F: acetyl-CoA acetyltransferase	0.0654156811
+UniRef50_UPI00046CFD0F: acetyl-CoA acetyltransferase|unclassified	0.0654156811
+UniRef50_B1MCA4: Riboflavin biosynthesis protein RibBA	0.0654091671
+UniRef50_B1MCA4: Riboflavin biosynthesis protein RibBA|unclassified	0.0654091671
+UniRef50_Q0VPD2: UPF0276 protein ABO_1518	0.0654063805
+UniRef50_Q0VPD2: UPF0276 protein ABO_1518|unclassified	0.0654063805
+UniRef50_A7FKW3: Probable nicotinate-nucleotide adenylyltransferase	0.0654056514
+UniRef50_A7FKW3: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.0654056514
+UniRef50_UPI000381831B: hypothetical protein	0.0654056243
+UniRef50_UPI000381831B: hypothetical protein|unclassified	0.0654056243
+UniRef50_UPI00017444A4: lactate permease	0.0654030600
+UniRef50_UPI00017444A4: lactate permease|unclassified	0.0654030600
+UniRef50_F4GU65: Type II secretion system protein	0.0653963609
+UniRef50_F4GU65: Type II secretion system protein|unclassified	0.0653963609
+UniRef50_UPI000380FDEA: hypothetical protein	0.0653938454
+UniRef50_UPI000380FDEA: hypothetical protein|unclassified	0.0653938454
+UniRef50_UPI00037ADD3C: phosphate starvation protein PhoH	0.0653866923
+UniRef50_UPI00037ADD3C: phosphate starvation protein PhoH|unclassified	0.0653866923
+UniRef50_G4R850: Molybdopterin-guanine dinucleotide biosynthesis protein MobA	0.0653860351
+UniRef50_G4R850: Molybdopterin-guanine dinucleotide biosynthesis protein MobA|unclassified	0.0653860351
+UniRef50_U1EEG5	0.0653840869
+UniRef50_U1EEG5|unclassified	0.0653840869
+UniRef50_UPI00037CF108: hypothetical protein	0.0653787394
+UniRef50_UPI00037CF108: hypothetical protein|unclassified	0.0653787394
+UniRef50_P11413: Glucose-6-phosphate 1-dehydrogenase	0.0653751444
+UniRef50_P11413: Glucose-6-phosphate 1-dehydrogenase|unclassified	0.0653751444
+UniRef50_O80952: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase 1, chloroplastic	0.0653718308
+UniRef50_O80952: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase 1, chloroplastic|unclassified	0.0653718308
+UniRef50_Q0ANX6: Chromosome partitioning protein	0.0653655119
+UniRef50_Q0ANX6: Chromosome partitioning protein|unclassified	0.0653655119
+UniRef50_UPI0002195533: folylpolyglutamate synthase	0.0653567452
+UniRef50_UPI0002195533: folylpolyglutamate synthase|unclassified	0.0653567452
+UniRef50_UPI000248BE9E: 2-nitropropane dioxygenase	0.0653553709
+UniRef50_UPI000248BE9E: 2-nitropropane dioxygenase|unclassified	0.0653553709
+UniRef50_V7ZFA8	0.0653534047
+UniRef50_V7ZFA8|unclassified	0.0653534047
+UniRef50_UPI0003C75D29: pirin	0.0653488250
+UniRef50_UPI0003C75D29: pirin|unclassified	0.0653488250
+UniRef50_Q2IQ01: Polyribonucleotide nucleotidyltransferase	0.0653486941
+UniRef50_Q2IQ01: Polyribonucleotide nucleotidyltransferase|unclassified	0.0653486941
+UniRef50_UPI0002260B5F: type III secretion exporter, partial	0.0653452605
+UniRef50_UPI0002260B5F: type III secretion exporter, partial|unclassified	0.0653452605
+UniRef50_UPI000454B632: PREDICTED: putative RNA-binding protein 15B, partial	0.0653440545
+UniRef50_UPI000454B632: PREDICTED: putative RNA-binding protein 15B, partial|unclassified	0.0653440545
+UniRef50_A7HW68	0.0653387409
+UniRef50_A7HW68|unclassified	0.0653387409
+UniRef50_Q080M3	0.0653331458
+UniRef50_Q080M3|unclassified	0.0653331458
+UniRef50_UPI0003172224: hypothetical protein	0.0653317095
+UniRef50_UPI0003172224: hypothetical protein|unclassified	0.0653317095
+UniRef50_D6K042: Nucleotide-binding protein	0.0653315577
+UniRef50_D6K042: Nucleotide-binding protein|unclassified	0.0653315577
+UniRef50_F2MZA1	0.0653287975
+UniRef50_F2MZA1|unclassified	0.0653287975
+UniRef50_V5BSI8	0.0653266622
+UniRef50_V5BSI8|unclassified	0.0653266622
+UniRef50_UPI000288452E: heme peroxidase	0.0653260803
+UniRef50_UPI000288452E: heme peroxidase|unclassified	0.0653260803
+UniRef50_J9I0C2: NAD(FAD)-dependent dehydrogenase	0.0653257788
+UniRef50_J9I0C2: NAD(FAD)-dependent dehydrogenase|unclassified	0.0653257788
+UniRef50_A7IJJ2	0.0653128764
+UniRef50_A7IJJ2|unclassified	0.0653128764
+UniRef50_B7IPS6: Prolipoprotein diacylglyceryl transferase	0.0653047906
+UniRef50_B7IPS6: Prolipoprotein diacylglyceryl transferase|unclassified	0.0653047906
+UniRef50_UPI0001C4F4CB: glucose-inhibited division protein B gid	0.0653015672
+UniRef50_UPI0001C4F4CB: glucose-inhibited division protein B gid|unclassified	0.0653015672
+UniRef50_X0R6Y9	0.0652898893
+UniRef50_X0R6Y9|unclassified	0.0652898893
+UniRef50_G8PN36: Beta-Ig-H3/Fasciclin	0.0652839764
+UniRef50_G8PN36: Beta-Ig-H3/Fasciclin|unclassified	0.0652839764
+UniRef50_UPI00038134C6: hypothetical protein	0.0652832402
+UniRef50_UPI00038134C6: hypothetical protein|unclassified	0.0652832402
+UniRef50_UPI0003B39143: FAD-dependent oxidoreductase	0.0652830873
+UniRef50_UPI0003B39143: FAD-dependent oxidoreductase|unclassified	0.0652830873
+UniRef50_F8LHN9: Lipopolysaccharide biosynthesis protein	0.0652793084
+UniRef50_F8LHN9: Lipopolysaccharide biosynthesis protein|unclassified	0.0652793084
+UniRef50_UPI0004765B48: hypothetical protein	0.0652714537
+UniRef50_UPI0004765B48: hypothetical protein|unclassified	0.0652714537
+UniRef50_D5E2K1: Lipoprotein	0.0652712323
+UniRef50_D5E2K1: Lipoprotein|unclassified	0.0652712323
+UniRef50_I1DYG3: UPF0214 protein ybbE	0.0652665034
+UniRef50_I1DYG3: UPF0214 protein ybbE|unclassified	0.0652665034
+UniRef50_UPI000299F54E: N5-glutamine S-adenosyl-L-methionine-dependent methyltransferase	0.0652660479
+UniRef50_UPI000299F54E: N5-glutamine S-adenosyl-L-methionine-dependent methyltransferase|unclassified	0.0652660479
+UniRef50_H8MMY4: PT repeat/DnaJ domain-containing protein	0.0652656157
+UniRef50_H8MMY4: PT repeat/DnaJ domain-containing protein|unclassified	0.0652656157
+UniRef50_Q3AAY6: Bifunctional protein FolD	0.0652653811
+UniRef50_Q3AAY6: Bifunctional protein FolD|unclassified	0.0652653811
+UniRef50_F9ZZS3: Fimbrial assembly family protein	0.0652559872
+UniRef50_F9ZZS3: Fimbrial assembly family protein|unclassified	0.0652559872
+UniRef50_UPI000374566C: hypothetical protein	0.0652548782
+UniRef50_UPI000374566C: hypothetical protein|unclassified	0.0652548782
+UniRef50_K2CQQ2	0.0652547687
+UniRef50_K2CQQ2|unclassified	0.0652547687
+UniRef50_D9PXL1	0.0652515298
+UniRef50_D9PXL1|unclassified	0.0652515298
+UniRef50_UPI00047BA708: 3-hydroxyisobutyrate dehydrogenase	0.0652495821
+UniRef50_UPI00047BA708: 3-hydroxyisobutyrate dehydrogenase|unclassified	0.0652495821
+UniRef50_UPI00029A162E: cytochrome c class I, partial	0.0652421845
+UniRef50_UPI00029A162E: cytochrome c class I, partial|unclassified	0.0652421845
+UniRef50_Q97MM1: N-acetylmuramic acid 6-phosphate etherase	0.0652419128
+UniRef50_Q97MM1: N-acetylmuramic acid 6-phosphate etherase|unclassified	0.0652419128
+UniRef50_UPI00042BEB17: PREDICTED: fas-binding factor 1	0.0652310724
+UniRef50_UPI00042BEB17: PREDICTED: fas-binding factor 1|unclassified	0.0652310724
+UniRef50_UPI00037A3B64: primase	0.0652174258
+UniRef50_UPI00037A3B64: primase|unclassified	0.0652174258
+UniRef50_UPI00036DD363: hypothetical protein	0.0652118100
+UniRef50_UPI00036DD363: hypothetical protein|unclassified	0.0652118100
+UniRef50_UPI0003B76BAF: malto-oligosyltrehalose synthase, partial	0.0652067127
+UniRef50_UPI0003B76BAF: malto-oligosyltrehalose synthase, partial|unclassified	0.0652067127
+UniRef50_M1QJ57: Cell wall surface anchor family protein	0.0652063521
+UniRef50_M1QJ57: Cell wall surface anchor family protein|unclassified	0.0652063521
+UniRef50_UPI000361F45B: hypothetical protein	0.0652010648
+UniRef50_UPI000361F45B: hypothetical protein|unclassified	0.0652010648
+UniRef50_UPI0002629E92: molybdenum cofactor biosynthesis protein	0.0651990604
+UniRef50_UPI0002629E92: molybdenum cofactor biosynthesis protein|unclassified	0.0651990604
+UniRef50_UPI00030CCB24: hypothetical protein	0.0651980623
+UniRef50_UPI00030CCB24: hypothetical protein|unclassified	0.0651980623
+UniRef50_UPI000361DBB5: hypothetical protein	0.0651958225
+UniRef50_UPI000361DBB5: hypothetical protein|unclassified	0.0651958225
+UniRef50_B3QEX2: Phage major capsid protein, HK97 family	0.0651891102
+UniRef50_B3QEX2: Phage major capsid protein, HK97 family|unclassified	0.0651891102
+UniRef50_Z2DE82: Biofilm formation protein PelB	0.0651890482
+UniRef50_Z2DE82: Biofilm formation protein PelB|unclassified	0.0651890482
+UniRef50_UPI00041519E4: leucyl/phenylalanyl-tRNA--protein transferase	0.0651884265
+UniRef50_UPI00041519E4: leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.0651884265
+UniRef50_B1AJN5: Thymidine kinase	0.0651825529
+UniRef50_B1AJN5: Thymidine kinase|unclassified	0.0651825529
+UniRef50_UPI0002880506: dihydroxyacetone kinase	0.0651769485
+UniRef50_UPI0002880506: dihydroxyacetone kinase|unclassified	0.0651769485
+UniRef50_F0YDH2	0.0651711301
+UniRef50_F0YDH2|unclassified	0.0651711301
+UniRef50_W8KRF0: Flagellar hook capping protein	0.0651701217
+UniRef50_W8KRF0: Flagellar hook capping protein|unclassified	0.0651701217
+UniRef50_D8FF08	0.0651673058
+UniRef50_D8FF08|unclassified	0.0651673058
+UniRef50_UPI0003B4DCFB: ketol-acid reductoisomerase	0.0651624352
+UniRef50_UPI0003B4DCFB: ketol-acid reductoisomerase|unclassified	0.0651624352
+UniRef50_UPI00041B2B13: ATP-dependent DNA helicase RuvA	0.0651558352
+UniRef50_UPI00041B2B13: ATP-dependent DNA helicase RuvA|unclassified	0.0651558352
+UniRef50_UPI000347D711: hypothetical protein	0.0651454766
+UniRef50_UPI000347D711: hypothetical protein|unclassified	0.0651454766
+UniRef50_UPI00037F323C: hypothetical protein	0.0651416226
+UniRef50_UPI00037F323C: hypothetical protein|unclassified	0.0651416226
+UniRef50_UPI000185EC6B: histone acetyltransferase GCN5	0.0651398784
+UniRef50_UPI000185EC6B: histone acetyltransferase GCN5|unclassified	0.0651398784
+UniRef50_UPI0004708A8D: hypothetical protein	0.0651392749
+UniRef50_UPI0004708A8D: hypothetical protein|unclassified	0.0651392749
+UniRef50_UPI00037CD837: hypothetical protein	0.0651368171
+UniRef50_UPI00037CD837: hypothetical protein|unclassified	0.0651368171
+UniRef50_Q7VI47	0.0651330083
+UniRef50_Q7VI47|unclassified	0.0651330083
+UniRef50_A0RGM3	0.0651328273
+UniRef50_A0RGM3|unclassified	0.0651328273
+UniRef50_UPI00046FEFD4: hypothetical protein, partial	0.0651310797
+UniRef50_UPI00046FEFD4: hypothetical protein, partial|unclassified	0.0651310797
+UniRef50_A9VDT4: Predicted protein	0.0651293560
+UniRef50_A9VDT4: Predicted protein|unclassified	0.0651293560
+UniRef50_UPI00016AB4FD: type III secretion inner membrane protein SctV, partial	0.0651233643
+UniRef50_UPI00016AB4FD: type III secretion inner membrane protein SctV, partial|unclassified	0.0651233643
+UniRef50_UPI0002F984C7: cysteine synthase	0.0651187888
+UniRef50_UPI0002F984C7: cysteine synthase|unclassified	0.0651187888
+UniRef50_F7VZX9: WGS project CABT00000000 data, contig 2.16	0.0651154365
+UniRef50_F7VZX9: WGS project CABT00000000 data, contig 2.16|unclassified	0.0651154365
+UniRef50_A6FNN3: Haloacetate dehalogenase H-1, putative	0.0651143940
+UniRef50_A6FNN3: Haloacetate dehalogenase H-1, putative|unclassified	0.0651143940
+UniRef50_A1USU3: Arginine--tRNA ligase	0.0651105846
+UniRef50_A1USU3: Arginine--tRNA ligase|unclassified	0.0651105846
+UniRef50_UPI000466D2C1: GDP-fucose synthetase, partial	0.0651072994
+UniRef50_UPI000466D2C1: GDP-fucose synthetase, partial|unclassified	0.0651072994
+UniRef50_UPI0003761BE4: hypothetical protein	0.0651038852
+UniRef50_UPI0003761BE4: hypothetical protein|unclassified	0.0651038852
+UniRef50_K7R2G6	0.0651028943
+UniRef50_K7R2G6|unclassified	0.0651028943
+UniRef50_UPI000225A931: proline iminopeptidase	0.0651003257
+UniRef50_UPI000225A931: proline iminopeptidase|unclassified	0.0651003257
+UniRef50_U6FWJ6: SdrH protein	0.0651002394
+UniRef50_U6FWJ6: SdrH protein|unclassified	0.0651002394
+UniRef50_M5DYH8	0.0650933498
+UniRef50_M5DYH8|unclassified	0.0650933498
+UniRef50_Q092P8	0.0650930680
+UniRef50_Q092P8|unclassified	0.0650930680
+UniRef50_U6JVN0	0.0650910044
+UniRef50_U6JVN0|unclassified	0.0650910044
+UniRef50_UPI00047EC446: hypothetical protein	0.0650888738
+UniRef50_UPI00047EC446: hypothetical protein|unclassified	0.0650888738
+UniRef50_UPI0003791B6C: hypothetical protein	0.0650868961
+UniRef50_UPI0003791B6C: hypothetical protein|unclassified	0.0650868961
+UniRef50_P28284: E3 ubiquitin-protein ligase ICP0	0.0650853302
+UniRef50_P28284: E3 ubiquitin-protein ligase ICP0|unclassified	0.0650853302
+UniRef50_Q31GL4: Leucyl/phenylalanyl-tRNA--protein transferase	0.0650844368
+UniRef50_Q31GL4: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.0650844368
+UniRef50_UPI0002652A53: PREDICTED: DNA-(apurinic or apyrimidinic site) lyase-like	0.0650833534
+UniRef50_UPI0002652A53: PREDICTED: DNA-(apurinic or apyrimidinic site) lyase-like|unclassified	0.0650833534
+UniRef50_UPI0003B6320F: GDP-L-fucose synthase	0.0650824989
+UniRef50_UPI0003B6320F: GDP-L-fucose synthase|unclassified	0.0650824989
+UniRef50_UPI000289E519: hypothetical protein	0.0650818562
+UniRef50_UPI000289E519: hypothetical protein|unclassified	0.0650818562
+UniRef50_UPI0003B32316: flagellar P-ring protein FlgI	0.0650770850
+UniRef50_UPI0003B32316: flagellar P-ring protein FlgI|unclassified	0.0650770850
+UniRef50_Q9HJ59: Nucleoside diphosphate kinase	0.0650756904
+UniRef50_Q9HJ59: Nucleoside diphosphate kinase|unclassified	0.0650756904
+UniRef50_F2UKD5	0.0650721850
+UniRef50_F2UKD5|unclassified	0.0650721850
+UniRef50_N0B8H1: Lytic murein transglycosylase	0.0650676915
+UniRef50_N0B8H1: Lytic murein transglycosylase|unclassified	0.0650676915
+UniRef50_UPI00041611D6: LysR family transcriptional regulator	0.0650652334
+UniRef50_UPI00041611D6: LysR family transcriptional regulator|unclassified	0.0650652334
+UniRef50_W0IV43: C4-dicarboxylate ABC transporter permease	0.0650589810
+UniRef50_W0IV43: C4-dicarboxylate ABC transporter permease|unclassified	0.0650589810
+UniRef50_UPI0004716392: LOG family protein YvdD	0.0650571688
+UniRef50_UPI0004716392: LOG family protein YvdD|unclassified	0.0650571688
+UniRef50_UPI0003FB1E17: C4-dicarboxylate ABC transporter substrate-binding protein	0.0650554495
+UniRef50_UPI0003FB1E17: C4-dicarboxylate ABC transporter substrate-binding protein|unclassified	0.0650554495
+UniRef50_UPI00047CF6EC: hypothetical protein	0.0650528109
+UniRef50_UPI00047CF6EC: hypothetical protein|unclassified	0.0650528109
+UniRef50_C7NDN9: TraX family protein	0.0650520059
+UniRef50_C7NDN9: TraX family protein|unclassified	0.0650520059
+UniRef50_UPI0003B613BF: LysR family transcriptional regulator	0.0650404920
+UniRef50_UPI0003B613BF: LysR family transcriptional regulator|unclassified	0.0650404920
+UniRef50_UPI0002492BB4: HAD superfamily hydrolase	0.0650296354
+UniRef50_UPI0002492BB4: HAD superfamily hydrolase|unclassified	0.0650296354
+UniRef50_W5X5A0: RNA polymerase sigma factor	0.0650289200
+UniRef50_W5X5A0: RNA polymerase sigma factor|unclassified	0.0650289200
+UniRef50_B4D1S5: Type VI secretion-associated protein, ImpA family	0.0650273485
+UniRef50_B4D1S5: Type VI secretion-associated protein, ImpA family|unclassified	0.0650273485
+UniRef50_K0XQN9	0.0650261733
+UniRef50_K0XQN9|unclassified	0.0650261733
+UniRef50_UPI000479B301: hypothetical protein	0.0650213364
+UniRef50_UPI000479B301: hypothetical protein|unclassified	0.0650213364
+UniRef50_UPI0003B39EAE: riboflavin synthase subunit alpha	0.0650206445
+UniRef50_UPI0003B39EAE: riboflavin synthase subunit alpha|unclassified	0.0650206445
+UniRef50_UPI000364BB30: hypothetical protein, partial	0.0650203894
+UniRef50_UPI000364BB30: hypothetical protein, partial|unclassified	0.0650203894
+UniRef50_UPI0003700C51: hypothetical protein	0.0650134644
+UniRef50_UPI0003700C51: hypothetical protein|unclassified	0.0650134644
+UniRef50_P70761: ORFR5	0.0650131308
+UniRef50_P70761: ORFR5|unclassified	0.0650131308
+UniRef50_UPI0003315B6B: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial	0.0650098346
+UniRef50_UPI0003315B6B: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial|unclassified	0.0650098346
+UniRef50_UPI000237A6A1: 2-dehydro-3-deoxygluconokinase	0.0650009453
+UniRef50_UPI000237A6A1: 2-dehydro-3-deoxygluconokinase|unclassified	0.0650009453
+UniRef50_Q2CAW4	0.0649933973
+UniRef50_Q2CAW4|unclassified	0.0649933973
+UniRef50_O14088	0.0649910067
+UniRef50_O14088|unclassified	0.0649910067
+UniRef50_S4Y5B1	0.0649882014
+UniRef50_S4Y5B1|unclassified	0.0649882014
+UniRef50_UPI0003830B26: hypothetical protein	0.0649817654
+UniRef50_UPI0003830B26: hypothetical protein|unclassified	0.0649817654
+UniRef50_UPI00026252DE: inner-membrane translocator	0.0649806872
+UniRef50_UPI00026252DE: inner-membrane translocator|unclassified	0.0649806872
+UniRef50_UPI0003B79636: ABC transporter permease	0.0649678638
+UniRef50_UPI0003B79636: ABC transporter permease|unclassified	0.0649678638
+UniRef50_UPI0003A309D1: hypothetical protein	0.0649601650
+UniRef50_UPI0003A309D1: hypothetical protein|unclassified	0.0649601650
+UniRef50_X1D6B5: Marine sediment metagenome DNA, contig: S01H4_S07946 (Fragment)	0.0649494472
+UniRef50_X1D6B5: Marine sediment metagenome DNA, contig: S01H4_S07946 (Fragment)|unclassified	0.0649494472
+UniRef50_Q1CTN3: 7-cyano-7-deazaguanine synthase	0.0649492686
+UniRef50_Q1CTN3: 7-cyano-7-deazaguanine synthase|unclassified	0.0649492686
+UniRef50_UPI00036A2DE3: hypothetical protein	0.0649470774
+UniRef50_UPI00036A2DE3: hypothetical protein|unclassified	0.0649470774
+UniRef50_UPI000305AA59: LysR family transcriptional regulator	0.0649465827
+UniRef50_UPI000305AA59: LysR family transcriptional regulator|unclassified	0.0649465827
+UniRef50_A0A011PAY1: ATP-dependent Clp protease ATP-binding subunit ClpX	0.0649447134
+UniRef50_A0A011PAY1: ATP-dependent Clp protease ATP-binding subunit ClpX|unclassified	0.0649447134
+UniRef50_UPI00047D446A: HAD family hydrolase	0.0649397058
+UniRef50_UPI00047D446A: HAD family hydrolase|unclassified	0.0649397058
+UniRef50_UPI00035DDA16: hypothetical protein, partial	0.0649361716
+UniRef50_UPI00035DDA16: hypothetical protein, partial|unclassified	0.0649361716
+UniRef50_UPI00036CA1BE: hypothetical protein	0.0649331840
+UniRef50_UPI00036CA1BE: hypothetical protein|unclassified	0.0649331840
+UniRef50_N0B0U5	0.0649286768
+UniRef50_N0B0U5|unclassified	0.0649286768
+UniRef50_UPI0003B662E9: uroporphyrin-III C-methyltransferase	0.0649273616
+UniRef50_UPI0003B662E9: uroporphyrin-III C-methyltransferase|unclassified	0.0649273616
+UniRef50_Q0S6N0	0.0649202411
+UniRef50_Q0S6N0|unclassified	0.0649202411
+UniRef50_UPI00028869F1: cytochrome C biogenesis protein CcmF	0.0649188780
+UniRef50_UPI00028869F1: cytochrome C biogenesis protein CcmF|unclassified	0.0649188780
+UniRef50_J4XWX6: NOL1/NOP2/sun family protein (Fragment)	0.0649137972
+UniRef50_J4XWX6: NOL1/NOP2/sun family protein (Fragment)|unclassified	0.0649137972
+UniRef50_UPI00046F5709: 3-oxoacyl-ACP synthase	0.0649133194
+UniRef50_UPI00046F5709: 3-oxoacyl-ACP synthase|unclassified	0.0649133194
+UniRef50_G1FTZ5: Gp57	0.0649114649
+UniRef50_G1FTZ5: Gp57|unclassified	0.0649114649
+UniRef50_UPI00037699BE: hypothetical protein	0.0649084358
+UniRef50_UPI00037699BE: hypothetical protein|unclassified	0.0649084358
+UniRef50_S5UWI1	0.0649065013
+UniRef50_S5UWI1|unclassified	0.0649065013
+UniRef50_K0RHG3	0.0649025076
+UniRef50_K0RHG3|unclassified	0.0649025076
+UniRef50_UPI000478A554: ABC transporter substrate-binding protein	0.0649022484
+UniRef50_UPI000478A554: ABC transporter substrate-binding protein|unclassified	0.0649022484
+UniRef50_V5XFC2: ABC transporter substrate-binding protein	0.0648988451
+UniRef50_V5XFC2: ABC transporter substrate-binding protein|unclassified	0.0648988451
+UniRef50_UPI00047BAC2C: hypothetical protein	0.0648977479
+UniRef50_UPI00047BAC2C: hypothetical protein|unclassified	0.0648977479
+UniRef50_UPI000476485C: hypothetical protein	0.0648833413
+UniRef50_UPI000476485C: hypothetical protein|unclassified	0.0648833413
+UniRef50_A5WC54: tRNA (cmo5U34)-methyltransferase	0.0648782947
+UniRef50_A5WC54: tRNA (cmo5U34)-methyltransferase|unclassified	0.0648782947
+UniRef50_B4E5Y5: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	0.0648755678
+UniRef50_B4E5Y5: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.0648755678
+UniRef50_B1YMH0: tRNA dimethylallyltransferase	0.0648754999
+UniRef50_B1YMH0: tRNA dimethylallyltransferase|unclassified	0.0648754999
+UniRef50_W5X3P1: Holliday junction ATP-dependent DNA helicase RuvA	0.0648732927
+UniRef50_W5X3P1: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.0648732927
+UniRef50_UPI000359E170: PREDICTED: calcium homeostasis endoplasmic reticulum protein-like, partial	0.0648722683
+UniRef50_UPI000359E170: PREDICTED: calcium homeostasis endoplasmic reticulum protein-like, partial|unclassified	0.0648722683
+UniRef50_N8JKN9	0.0648678837
+UniRef50_N8JKN9|unclassified	0.0648678837
+UniRef50_Q15WQ1: UPF0502 protein Patl_1161	0.0648661391
+UniRef50_Q15WQ1: UPF0502 protein Patl_1161|unclassified	0.0648661391
+UniRef50_UPI0003A56681: 6-phosphogluconate dehydrogenase	0.0648626930
+UniRef50_UPI0003A56681: 6-phosphogluconate dehydrogenase|unclassified	0.0648626930
+UniRef50_UPI00035E3F28: hypothetical protein	0.0648613462
+UniRef50_UPI00035E3F28: hypothetical protein|unclassified	0.0648613462
+UniRef50_W3AM71: Soluble lytic murein transglycosylase-like protein	0.0648531362
+UniRef50_W3AM71: Soluble lytic murein transglycosylase-like protein|unclassified	0.0648531362
+UniRef50_UPI00047CDE52: hypothetical protein	0.0648515707
+UniRef50_UPI00047CDE52: hypothetical protein|unclassified	0.0648515707
+UniRef50_UPI00037A8C5A: hydrolase Nlp/P60	0.0648499057
+UniRef50_UPI00037A8C5A: hydrolase Nlp/P60|unclassified	0.0648499057
+UniRef50_UPI0003603410: hypothetical protein	0.0648472899
+UniRef50_UPI0003603410: hypothetical protein|unclassified	0.0648472899
+UniRef50_UPI00041A71B7: hypothetical protein	0.0648440215
+UniRef50_UPI00041A71B7: hypothetical protein|unclassified	0.0648440215
+UniRef50_C1MEJ5: Type-IV secretion system protein TraC	0.0648402183
+UniRef50_C1MEJ5: Type-IV secretion system protein TraC|unclassified	0.0648402183
+UniRef50_Q73G10: Formamidopyrimidine-DNA glycosylase	0.0648347873
+UniRef50_Q73G10: Formamidopyrimidine-DNA glycosylase|unclassified	0.0648347873
+UniRef50_UPI00037C836C: hypothetical protein	0.0648343906
+UniRef50_UPI00037C836C: hypothetical protein|unclassified	0.0648343906
+UniRef50_UPI00020D9955: PTS system mannose/fructose/sorbose family IID component	0.0648326564
+UniRef50_UPI00020D9955: PTS system mannose/fructose/sorbose family IID component|unclassified	0.0648326564
+UniRef50_Q2RN85: Uroporphyrinogen decarboxylase	0.0648287353
+UniRef50_Q2RN85: Uroporphyrinogen decarboxylase|unclassified	0.0648287353
+UniRef50_F4QJB7: Major tail sheath protein	0.0648222823
+UniRef50_F4QJB7: Major tail sheath protein|unclassified	0.0648222823
+UniRef50_UPI00047DCB86: integrase	0.0648185945
+UniRef50_UPI00047DCB86: integrase|unclassified	0.0648185945
+UniRef50_UPI00036F5211: hypothetical protein	0.0647958871
+UniRef50_UPI00036F5211: hypothetical protein|unclassified	0.0647958871
+UniRef50_F0L6Q4: Metallo-beta-lactamase superfamily protein	0.0647944127
+UniRef50_F0L6Q4: Metallo-beta-lactamase superfamily protein|unclassified	0.0647944127
+UniRef50_P18080: 5-aminolevulinate synthase, erythroid-specific, mitochondrial	0.0647920896
+UniRef50_P18080: 5-aminolevulinate synthase, erythroid-specific, mitochondrial|unclassified	0.0647920896
+UniRef50_UPI000369B464: hypothetical protein	0.0647910072
+UniRef50_UPI000369B464: hypothetical protein|unclassified	0.0647910072
+UniRef50_A0A024K9W2	0.0647901274
+UniRef50_A0A024K9W2|unclassified	0.0647901274
+UniRef50_A0A024HY78	0.0647801567
+UniRef50_A0A024HY78|unclassified	0.0647801567
+UniRef50_D0RQI1	0.0647799678
+UniRef50_D0RQI1|unclassified	0.0647799678
+UniRef50_UPI000477DA40: hypothetical protein	0.0647662506
+UniRef50_UPI000477DA40: hypothetical protein|unclassified	0.0647662506
+UniRef50_UPI000380423D: hypothetical protein	0.0647622128
+UniRef50_UPI000380423D: hypothetical protein|unclassified	0.0647622128
+UniRef50_UPI0003FEA5A5: 2-dehydro-3-deoxyglucarate aldolase	0.0647608209
+UniRef50_UPI0003FEA5A5: 2-dehydro-3-deoxyglucarate aldolase|unclassified	0.0647608209
+UniRef50_UPI0003B76F12: glycerol kinase	0.0647508409
+UniRef50_UPI0003B76F12: glycerol kinase|unclassified	0.0647508409
+UniRef50_Q184N3: N-acetylmuramic acid 6-phosphate etherase	0.0647501396
+UniRef50_Q184N3: N-acetylmuramic acid 6-phosphate etherase|unclassified	0.0647501396
+UniRef50_UPI00036727FB: hypothetical protein, partial	0.0647473318
+UniRef50_UPI00036727FB: hypothetical protein, partial|unclassified	0.0647473318
+UniRef50_UPI0004705156: hypothetical protein	0.0647421772
+UniRef50_UPI0004705156: hypothetical protein|unclassified	0.0647421772
+UniRef50_Q4TID2: Chromosome undetermined SCAF2244, whole genome shotgun sequence. (Fragment)	0.0647359443
+UniRef50_Q4TID2: Chromosome undetermined SCAF2244, whole genome shotgun sequence. (Fragment)|unclassified	0.0647359443
+UniRef50_UPI00022CA8F3: PREDICTED: lipoprotein-releasing system transmembrane protein lolC-like	0.0647345691
+UniRef50_UPI00022CA8F3: PREDICTED: lipoprotein-releasing system transmembrane protein lolC-like|unclassified	0.0647345691
+UniRef50_K1SCQ9: Excinuclease ABC C subunit (Fragment)	0.0647338624
+UniRef50_K1SCQ9: Excinuclease ABC C subunit (Fragment)|unclassified	0.0647338624
+UniRef50_U7VBC3	0.0647319664
+UniRef50_U7VBC3|unclassified	0.0647319664
+UniRef50_UPI0002B8D777: PREDICTED: cystathionine gamma-lyase	0.0647316740
+UniRef50_UPI0002B8D777: PREDICTED: cystathionine gamma-lyase|unclassified	0.0647316740
+UniRef50_UPI00036A19D7: hypothetical protein	0.0647311743
+UniRef50_UPI00036A19D7: hypothetical protein|unclassified	0.0647311743
+UniRef50_UPI0003C7DCFC: haloacid dehalogenase	0.0647311743
+UniRef50_UPI0003C7DCFC: haloacid dehalogenase|unclassified	0.0647311743
+UniRef50_W0E3L8: Flagellar hook capping protein	0.0646981906
+UniRef50_W0E3L8: Flagellar hook capping protein|unclassified	0.0646981906
+UniRef50_UPI00036CEA78: hypothetical protein	0.0646897711
+UniRef50_UPI00036CEA78: hypothetical protein|unclassified	0.0646897711
+UniRef50_UPI0003B42B48: hypothetical protein, partial	0.0646875478
+UniRef50_UPI0003B42B48: hypothetical protein, partial|unclassified	0.0646875478
+UniRef50_UPI000471585F: hypothetical protein	0.0646837883
+UniRef50_UPI000471585F: hypothetical protein|unclassified	0.0646837883
+UniRef50_UPI0003823485: hypothetical protein	0.0646830148
+UniRef50_UPI0003823485: hypothetical protein|unclassified	0.0646830148
+UniRef50_UPI00047A328A: ABC transporter substrate-binding protein	0.0646821628
+UniRef50_UPI00047A328A: ABC transporter substrate-binding protein|unclassified	0.0646821628
+UniRef50_G2BQ13: BclA domain protein	0.0646798126
+UniRef50_G2BQ13: BclA domain protein|unclassified	0.0646798126
+UniRef50_UPI000405C400: hypothetical protein	0.0646761488
+UniRef50_UPI000405C400: hypothetical protein|unclassified	0.0646761488
+UniRef50_UPI00047683EE: hypothetical protein	0.0646760335
+UniRef50_UPI00047683EE: hypothetical protein|unclassified	0.0646760335
+UniRef50_UPI00037D884A: hypothetical protein	0.0646751467
+UniRef50_UPI00037D884A: hypothetical protein|unclassified	0.0646751467
+UniRef50_M8ZAW3: Conjugative relaxase domain protein	0.0646660585
+UniRef50_M8ZAW3: Conjugative relaxase domain protein|unclassified	0.0646660585
+UniRef50_UPI00037DE938: MULTISPECIES: hypothetical protein	0.0646642436
+UniRef50_UPI00037DE938: MULTISPECIES: hypothetical protein|unclassified	0.0646642436
+UniRef50_UPI00038022A8: hypothetical protein	0.0646566509
+UniRef50_UPI00038022A8: hypothetical protein|unclassified	0.0646566509
+UniRef50_UPI00036C6373: tail fiber protein	0.0646491391
+UniRef50_UPI00036C6373: tail fiber protein|unclassified	0.0646491391
+UniRef50_UPI00047BC08C: hypothetical protein	0.0646485479
+UniRef50_UPI00047BC08C: hypothetical protein|unclassified	0.0646485479
+UniRef50_H0EUA1: Putative TPR repeat protein oca3	0.0646462040
+UniRef50_H0EUA1: Putative TPR repeat protein oca3|unclassified	0.0646462040
+UniRef50_UPI000367BCB1: hypothetical protein	0.0646442990
+UniRef50_UPI000367BCB1: hypothetical protein|unclassified	0.0646442990
+UniRef50_D8MLC3	0.0646408722
+UniRef50_D8MLC3|unclassified	0.0646408722
+UniRef50_Q189T1: Octanoyltransferase LipM	0.0646403253
+UniRef50_Q189T1: Octanoyltransferase LipM|unclassified	0.0646403253
+UniRef50_UPI0003605B6F: hypothetical protein	0.0646394543
+UniRef50_UPI0003605B6F: hypothetical protein|unclassified	0.0646394543
+UniRef50_E1NGY0	0.0646389125
+UniRef50_E1NGY0|unclassified	0.0646389125
+UniRef50_UPI0003625C79: hypothetical protein	0.0646381284
+UniRef50_UPI0003625C79: hypothetical protein|unclassified	0.0646381284
+UniRef50_UPI00037A4D1B: hypothetical protein	0.0646326295
+UniRef50_UPI00037A4D1B: hypothetical protein|unclassified	0.0646326295
+UniRef50_UPI0003C1260B: PREDICTED: lon protease homolog 2, peroxisomal-like	0.0646308977
+UniRef50_UPI0003C1260B: PREDICTED: lon protease homolog 2, peroxisomal-like|unclassified	0.0646308977
+UniRef50_Q89A96: Multidrug resistance-like ATP-binding protein MdlB	0.0646297862
+UniRef50_Q89A96: Multidrug resistance-like ATP-binding protein MdlB|unclassified	0.0646297862
+UniRef50_C6NYG6: Flagellar biosynthesis pathway, component FliP	0.0646288651
+UniRef50_C6NYG6: Flagellar biosynthesis pathway, component FliP|unclassified	0.0646288651
+UniRef50_UPI00045E867E: hypothetical protein	0.0646288501
+UniRef50_UPI00045E867E: hypothetical protein|unclassified	0.0646288501
+UniRef50_Q2K3T6: NADH-quinone oxidoreductase subunit H 2	0.0646275118
+UniRef50_Q2K3T6: NADH-quinone oxidoreductase subunit H 2|unclassified	0.0646275118
+UniRef50_UPI0003F63B62: hypothetical protein	0.0646257996
+UniRef50_UPI0003F63B62: hypothetical protein|unclassified	0.0646257996
+UniRef50_E1V8R9	0.0646165128
+UniRef50_E1V8R9|unclassified	0.0646165128
+UniRef50_R5Q1U8: Lipoprotein	0.0646120137
+UniRef50_R5Q1U8: Lipoprotein|unclassified	0.0646120137
+UniRef50_UPI0003618C0D: peptide ABC transporter substrate-binding protein	0.0646092984
+UniRef50_UPI0003618C0D: peptide ABC transporter substrate-binding protein|unclassified	0.0646092984
+UniRef50_B2HFL9: Hypothetical membrane protein	0.0646082460
+UniRef50_B2HFL9: Hypothetical membrane protein|unclassified	0.0646082460
+UniRef50_UPI00025578F4: dihydroxy-acid dehydratase, partial	0.0646037942
+UniRef50_UPI00025578F4: dihydroxy-acid dehydratase, partial|unclassified	0.0646037942
+UniRef50_UPI0001CBAC6A: PREDICTED: 3-oxoacyl-[acyl-carrier-protein] reductase, chloroplastic-like	0.0646021084
+UniRef50_UPI0001CBAC6A: PREDICTED: 3-oxoacyl-[acyl-carrier-protein] reductase, chloroplastic-like|unclassified	0.0646021084
+UniRef50_UPI0004759495: membrane protein	0.0645991093
+UniRef50_UPI0004759495: membrane protein|unclassified	0.0645991093
+UniRef50_UPI00017455F0: UDP-glucose 4-epimerase	0.0645946188
+UniRef50_UPI00017455F0: UDP-glucose 4-epimerase|unclassified	0.0645946188
+UniRef50_UPI0003DEC7FE: PREDICTED: glucose 1,6-bisphosphate synthase isoform X1	0.0645923072
+UniRef50_UPI0003DEC7FE: PREDICTED: glucose 1,6-bisphosphate synthase isoform X1|unclassified	0.0645923072
+UniRef50_UPI000473D50C: DNA repair protein RadA, partial	0.0645867129
+UniRef50_UPI000473D50C: DNA repair protein RadA, partial|unclassified	0.0645867129
+UniRef50_UPI0003619DE0: hypothetical protein, partial	0.0645860271
+UniRef50_UPI0003619DE0: hypothetical protein, partial|unclassified	0.0645860271
+UniRef50_UPI00046C6E14: replication protein RepA, partial	0.0645705421
+UniRef50_UPI00046C6E14: replication protein RepA, partial|unclassified	0.0645705421
+UniRef50_UPI000472AF8E: hypothetical protein	0.0645626077
+UniRef50_UPI000472AF8E: hypothetical protein|unclassified	0.0645626077
+UniRef50_UPI0004680367: hemolysin	0.0645616599
+UniRef50_UPI0004680367: hemolysin|unclassified	0.0645616599
+UniRef50_UPI0003B3C36B: transporter	0.0645608219
+UniRef50_UPI0003B3C36B: transporter|unclassified	0.0645608219
+UniRef50_X1P4V6: Marine sediment metagenome DNA, contig: S06H3_S21617 (Fragment)	0.0645597774
+UniRef50_X1P4V6: Marine sediment metagenome DNA, contig: S06H3_S21617 (Fragment)|unclassified	0.0645597774
+UniRef50_P94680: Toluene-4-sulfonate monooxygenase system reductase subunit TsaB1	0.0645566694
+UniRef50_P94680: Toluene-4-sulfonate monooxygenase system reductase subunit TsaB1|unclassified	0.0645566694
+UniRef50_UPI00016A5FA9: fusaric acid resistance domain protein, partial	0.0645540345
+UniRef50_UPI00016A5FA9: fusaric acid resistance domain protein, partial|unclassified	0.0645540345
+UniRef50_X7YQG6	0.0645469354
+UniRef50_X7YQG6|unclassified	0.0645469354
+UniRef50_M5R665	0.0645458941
+UniRef50_M5R665|unclassified	0.0645458941
+UniRef50_Q7N956: Complete genome; segment 2/17	0.0645437488
+UniRef50_Q7N956: Complete genome; segment 2/17|unclassified	0.0645437488
+UniRef50_UPI00036B45E4: Holliday junction resolvase	0.0645384609
+UniRef50_UPI00036B45E4: Holliday junction resolvase|unclassified	0.0645384609
+UniRef50_UPI0004635239: hypothetical protein	0.0645384247
+UniRef50_UPI0004635239: hypothetical protein|unclassified	0.0645384247
+UniRef50_UPI00035CEE1A: hypothetical protein	0.0645369061
+UniRef50_UPI00035CEE1A: hypothetical protein|unclassified	0.0645369061
+UniRef50_A1URV4: Ribonuclease HII	0.0645294891
+UniRef50_A1URV4: Ribonuclease HII|unclassified	0.0645294891
+UniRef50_A8LNB0	0.0645285598
+UniRef50_A8LNB0|unclassified	0.0645285598
+UniRef50_Q0SRW4: Phospho-N-acetylmuramoyl-pentapeptide-transferase	0.0645242838
+UniRef50_Q0SRW4: Phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.0645242838
+UniRef50_D3FVY9: ATP-dependent exoDNAse V	0.0645202012
+UniRef50_D3FVY9: ATP-dependent exoDNAse V|unclassified	0.0645202012
+UniRef50_K2DR23	0.0645122754
+UniRef50_K2DR23|unclassified	0.0645122754
+UniRef50_UPI000472C3EA: acetyl-CoA carboxylase subunit beta	0.0645108745
+UniRef50_UPI000472C3EA: acetyl-CoA carboxylase subunit beta|unclassified	0.0645108745
+UniRef50_H0QJ26: Fructose ABC transporter fructose-binding protein	0.0645104319
+UniRef50_H0QJ26: Fructose ABC transporter fructose-binding protein|unclassified	0.0645104319
+UniRef50_A0A058ZMR0: OmpA/MotB protein	0.0645096377
+UniRef50_A0A058ZMR0: OmpA/MotB protein|unclassified	0.0645096377
+UniRef50_B3PN30: DNA gyrase subunit A	0.0645082220
+UniRef50_B3PN30: DNA gyrase subunit A|unclassified	0.0645082220
+UniRef50_C9YAA6	0.0645050803
+UniRef50_C9YAA6|unclassified	0.0645050803
+UniRef50_Q56211: Cyclic pyranopterin monophosphate synthase	0.0645032470
+UniRef50_Q56211: Cyclic pyranopterin monophosphate synthase|unclassified	0.0645032470
+UniRef50_J3Q2M5	0.0645028185
+UniRef50_J3Q2M5|unclassified	0.0645028185
+UniRef50_K0CI12: Pilus assembly protein, PilO	0.0644977103
+UniRef50_K0CI12: Pilus assembly protein, PilO|unclassified	0.0644977103
+UniRef50_UPI00047E1D32: iron transporter FeoB	0.0644954771
+UniRef50_UPI00047E1D32: iron transporter FeoB|unclassified	0.0644954771
+UniRef50_UPI0004646E3C: ABC transporter ATP-binding protein, partial	0.0644899681
+UniRef50_UPI0004646E3C: ABC transporter ATP-binding protein, partial|unclassified	0.0644899681
+UniRef50_D1BMT0: 6-carboxyhexanoate--CoA ligase	0.0644897711
+UniRef50_D1BMT0: 6-carboxyhexanoate--CoA ligase|unclassified	0.0644897711
+UniRef50_W0RB60: Periplasmic binding protein domain protein	0.0644824825
+UniRef50_W0RB60: Periplasmic binding protein domain protein|unclassified	0.0644824825
+UniRef50_A3UI56	0.0644809996
+UniRef50_A3UI56|unclassified	0.0644809996
+UniRef50_UPI0003AB44CB: hypothetical protein	0.0644740989
+UniRef50_UPI0003AB44CB: hypothetical protein|unclassified	0.0644740989
+UniRef50_UPI00025560C4: chemotaxis protein CheR	0.0644740187
+UniRef50_UPI00025560C4: chemotaxis protein CheR|unclassified	0.0644740187
+UniRef50_UPI0004708062: DL-methionine transporter substrate-binding subunit	0.0644723790
+UniRef50_UPI0004708062: DL-methionine transporter substrate-binding subunit|unclassified	0.0644723790
+UniRef50_UPI000301FA5E: hypothetical protein	0.0644713795
+UniRef50_UPI000301FA5E: hypothetical protein|unclassified	0.0644713795
+UniRef50_UPI0002559EAB: hypothetical protein	0.0644681026
+UniRef50_UPI0002559EAB: hypothetical protein|unclassified	0.0644681026
+UniRef50_UPI000467191F: RND transporter	0.0644663796
+UniRef50_UPI000467191F: RND transporter|unclassified	0.0644663796
+UniRef50_Q7V5R2: Fumarate hydratase class II	0.0644632333
+UniRef50_Q7V5R2: Fumarate hydratase class II|unclassified	0.0644632333
+UniRef50_C6NU33: DNA repair protein RadA (Fragment)	0.0644504504
+UniRef50_C6NU33: DNA repair protein RadA (Fragment)|unclassified	0.0644504504
+UniRef50_L1K2J6	0.0644393049
+UniRef50_L1K2J6|unclassified	0.0644393049
+UniRef50_UPI00034F53E9: PREDICTED: glutamate dehydrogenase, mitochondrial-like, partial	0.0644356092
+UniRef50_UPI00034F53E9: PREDICTED: glutamate dehydrogenase, mitochondrial-like, partial|unclassified	0.0644356092
+UniRef50_U2KI40	0.0644296165
+UniRef50_U2KI40|unclassified	0.0644296165
+UniRef50_UPI00047BB10D: branched-chain amino acid ABC transporter ATP-binding protein	0.0644281599
+UniRef50_UPI00047BB10D: branched-chain amino acid ABC transporter ATP-binding protein|unclassified	0.0644281599
+UniRef50_UPI00046F8BDA: cytochrome P450	0.0644257606
+UniRef50_UPI00046F8BDA: cytochrome P450|unclassified	0.0644257606
+UniRef50_UPI00035F344D: hypothetical protein	0.0644187937
+UniRef50_UPI00035F344D: hypothetical protein|unclassified	0.0644187937
+UniRef50_P0DJQ4: Proclavaminate amidinohydrolase	0.0644108817
+UniRef50_P0DJQ4: Proclavaminate amidinohydrolase|unclassified	0.0644108817
+UniRef50_UPI0003C1798D	0.0644062084
+UniRef50_UPI0003C1798D|unclassified	0.0644062084
+UniRef50_UPI0004672C45: 3-hydroxyacyl-CoA dehydrogenase	0.0644002393
+UniRef50_UPI0004672C45: 3-hydroxyacyl-CoA dehydrogenase|unclassified	0.0644002393
+UniRef50_M0BYJ6	0.0643984414
+UniRef50_M0BYJ6|unclassified	0.0643984414
+UniRef50_G8TQ95	0.0643921327
+UniRef50_G8TQ95|unclassified	0.0643921327
+UniRef50_UPI000369E93F: hypothetical protein	0.0643864203
+UniRef50_UPI000369E93F: hypothetical protein|unclassified	0.0643864203
+UniRef50_UPI00046385E1: multidrug ABC transporter	0.0643856252
+UniRef50_UPI00046385E1: multidrug ABC transporter|unclassified	0.0643856252
+UniRef50_UPI00037B16AD: hypothetical protein	0.0643815349
+UniRef50_UPI00037B16AD: hypothetical protein|unclassified	0.0643815349
+UniRef50_V5SGX2: C4-dicarboxylate ABC transporter	0.0643782072
+UniRef50_V5SGX2: C4-dicarboxylate ABC transporter|unclassified	0.0643782072
+UniRef50_Q89A21: ATP-dependent DNA helicase Rep	0.0643765333
+UniRef50_Q89A21: ATP-dependent DNA helicase Rep|unclassified	0.0643765333
+UniRef50_UPI00033173A6: PREDICTED: protein KRBA1	0.0643745096
+UniRef50_UPI00033173A6: PREDICTED: protein KRBA1|unclassified	0.0643745096
+UniRef50_A7NB32: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.0643713353
+UniRef50_A7NB32: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.0643713353
+UniRef50_UPI00047005CD: hypothetical protein	0.0643707352
+UniRef50_UPI00047005CD: hypothetical protein|unclassified	0.0643707352
+UniRef50_W4QCX0: Membrane spanning protein	0.0643689084
+UniRef50_W4QCX0: Membrane spanning protein|unclassified	0.0643689084
+UniRef50_K2AGI8	0.0643591693
+UniRef50_K2AGI8|unclassified	0.0643591693
+UniRef50_Q6VT43: Putative DNA polymerase	0.0643587887
+UniRef50_Q6VT43: Putative DNA polymerase|unclassified	0.0643587887
+UniRef50_D9VXU4: Predicted protein	0.0643561241
+UniRef50_D9VXU4: Predicted protein|unclassified	0.0643561241
+UniRef50_UPI00036E2146: phosphate starvation protein PhoH	0.0643556947
+UniRef50_UPI00036E2146: phosphate starvation protein PhoH|unclassified	0.0643556947
+UniRef50_C9R7B0: UPF0304 protein D11S_0143	0.0643546964
+UniRef50_C9R7B0: UPF0304 protein D11S_0143|unclassified	0.0643546964
+UniRef50_K2JHG5: Flagellar basal body rod modification protein	0.0643536929
+UniRef50_K2JHG5: Flagellar basal body rod modification protein|unclassified	0.0643536929
+UniRef50_UPI000255A87B: molybdopterin-guanine dinucleotide biosynthesis protein A	0.0643518096
+UniRef50_UPI000255A87B: molybdopterin-guanine dinucleotide biosynthesis protein A|unclassified	0.0643518096
+UniRef50_UPI0003627F0D: hypothetical protein	0.0643496989
+UniRef50_UPI0003627F0D: hypothetical protein|unclassified	0.0643496989
+UniRef50_UPI000477DAFB: nucleoside triphosphate hydrolase	0.0643493489
+UniRef50_UPI000477DAFB: nucleoside triphosphate hydrolase|unclassified	0.0643493489
+UniRef50_UPI00036B8C2E: hypothetical protein	0.0643432328
+UniRef50_UPI00036B8C2E: hypothetical protein|unclassified	0.0643432328
+UniRef50_UPI00036DB3A9: hypothetical protein	0.0643408384
+UniRef50_UPI00036DB3A9: hypothetical protein|unclassified	0.0643408384
+UniRef50_Q5FL71: Prolipoprotein diacylglyceryl transferase	0.0643401532
+UniRef50_Q5FL71: Prolipoprotein diacylglyceryl transferase|unclassified	0.0643401532
+UniRef50_U2N011	0.0643389067
+UniRef50_U2N011|unclassified	0.0643389067
+UniRef50_Q047M3: Dihydroorotate dehydrogenase A (fumarate)	0.0643328739
+UniRef50_Q047M3: Dihydroorotate dehydrogenase A (fumarate)|unclassified	0.0643328739
+UniRef50_C6VQ34: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta 2	0.0643322194
+UniRef50_C6VQ34: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta 2|unclassified	0.0643322194
+UniRef50_UPI000174489D: RNA polymerase sigma factor, sigma-70 family protein	0.0643254418
+UniRef50_UPI000174489D: RNA polymerase sigma factor, sigma-70 family protein|unclassified	0.0643254418
+UniRef50_UPI0004772E9E: hypothetical protein	0.0643226027
+UniRef50_UPI0004772E9E: hypothetical protein|unclassified	0.0643226027
+UniRef50_A0A059LIS0	0.0643207350
+UniRef50_A0A059LIS0|unclassified	0.0643207350
+UniRef50_UPI000248B230: aminopeptidase N, partial	0.0643145114
+UniRef50_UPI000248B230: aminopeptidase N, partial|unclassified	0.0643145114
+UniRef50_Q5FIF8: N-acetylmuramic acid 6-phosphate etherase	0.0643081465
+UniRef50_Q5FIF8: N-acetylmuramic acid 6-phosphate etherase|unclassified	0.0643081465
+UniRef50_UPI0003B2E3F6: DNA polymerase III subunit alpha	0.0642971278
+UniRef50_UPI0003B2E3F6: DNA polymerase III subunit alpha|unclassified	0.0642971278
+UniRef50_A4EBC3: Tex-like protein N-terminal domain protein	0.0642921022
+UniRef50_A4EBC3: Tex-like protein N-terminal domain protein|unclassified	0.0642921022
+UniRef50_UPI000373B772: hypothetical protein	0.0642900256
+UniRef50_UPI000373B772: hypothetical protein|unclassified	0.0642900256
+UniRef50_H7CR56: Internalin P2	0.0642877957
+UniRef50_H7CR56: Internalin P2|unclassified	0.0642877957
+UniRef50_UPI00036BEAA8: hypothetical protein	0.0642854690
+UniRef50_UPI00036BEAA8: hypothetical protein|unclassified	0.0642854690
+UniRef50_UPI000467E119: hypothetical protein	0.0642822981
+UniRef50_UPI000467E119: hypothetical protein|unclassified	0.0642822981
+UniRef50_UPI00035F66C6: hypothetical protein	0.0642784911
+UniRef50_UPI00035F66C6: hypothetical protein|unclassified	0.0642784911
+UniRef50_UPI00022CA53C: PREDICTED: hypothetical protein LOC100747737	0.0642717664
+UniRef50_UPI00022CA53C: PREDICTED: hypothetical protein LOC100747737|unclassified	0.0642717664
+UniRef50_D7CM96: Metallophosphoesterase	0.0642715763
+UniRef50_D7CM96: Metallophosphoesterase|unclassified	0.0642715763
+UniRef50_B9TJB0	0.0642615324
+UniRef50_B9TJB0|unclassified	0.0642615324
+UniRef50_P50107: Lactoylglutathione lyase	0.0642575012
+UniRef50_P50107: Lactoylglutathione lyase|unclassified	0.0642575012
+UniRef50_Q56840: 2-(R)-hydroxypropyl-CoM dehydrogenase	0.0642510297
+UniRef50_Q56840: 2-(R)-hydroxypropyl-CoM dehydrogenase|unclassified	0.0642510297
+UniRef50_UPI00021971D1: PTS system, alpha-glucoside-specific IIBC subunit	0.0642507054
+UniRef50_UPI00021971D1: PTS system, alpha-glucoside-specific IIBC subunit|unclassified	0.0642507054
+UniRef50_UPI0003675C3E: hypothetical protein	0.0642469202
+UniRef50_UPI0003675C3E: hypothetical protein|unclassified	0.0642469202
+UniRef50_UPI000476DDA7: hypothetical protein	0.0642443948
+UniRef50_UPI000476DDA7: hypothetical protein|unclassified	0.0642443948
+UniRef50_UPI0003B47B9D: phosphoserine phosphatase	0.0642389884
+UniRef50_UPI0003B47B9D: phosphoserine phosphatase|unclassified	0.0642389884
+UniRef50_UPI0003B63E64: dihydrolipoamide dehydrogenase, partial	0.0642375411
+UniRef50_UPI0003B63E64: dihydrolipoamide dehydrogenase, partial|unclassified	0.0642375411
+UniRef50_X2GWA6	0.0642344446
+UniRef50_X2GWA6|unclassified	0.0642344446
+UniRef50_W6S0K6: Putative threonine-rich GPI-anchored glycoprotein	0.0642332445
+UniRef50_W6S0K6: Putative threonine-rich GPI-anchored glycoprotein|unclassified	0.0642332445
+UniRef50_UPI0003B2E658: PhoH	0.0642288291
+UniRef50_UPI0003B2E658: PhoH|unclassified	0.0642288291
+UniRef50_UPI000375A1DE: hypothetical protein	0.0642280409
+UniRef50_UPI000375A1DE: hypothetical protein|unclassified	0.0642280409
+UniRef50_K2AFB5	0.0642243507
+UniRef50_K2AFB5|unclassified	0.0642243507
+UniRef50_UPI0003B67364: 3-phosphoglycerate dehydrogenase	0.0642189990
+UniRef50_UPI0003B67364: 3-phosphoglycerate dehydrogenase|unclassified	0.0642189990
+UniRef50_UPI0004791340: short-chain dehydrogenase	0.0642090397
+UniRef50_UPI0004791340: short-chain dehydrogenase|unclassified	0.0642090397
+UniRef50_D5UED6	0.0642086774
+UniRef50_D5UED6|unclassified	0.0642086774
+UniRef50_UPI00034D0998: hypothetical protein	0.0642086470
+UniRef50_UPI00034D0998: hypothetical protein|unclassified	0.0642086470
+UniRef50_A6YP79: Minor ampullate spidroin-like protein (Fragment)	0.0642072224
+UniRef50_A6YP79: Minor ampullate spidroin-like protein (Fragment)|unclassified	0.0642072224
+UniRef50_UPI000361757B: glycosyl transferase, partial	0.0642041216
+UniRef50_UPI000361757B: glycosyl transferase, partial|unclassified	0.0642041216
+UniRef50_UPI00047A431C: bacitracin ABC transporter ATP-binding protein	0.0642016659
+UniRef50_UPI00047A431C: bacitracin ABC transporter ATP-binding protein|unclassified	0.0642016659
+UniRef50_UPI00035E5B48: hypothetical protein, partial	0.0641960251
+UniRef50_UPI00035E5B48: hypothetical protein, partial|unclassified	0.0641960251
+UniRef50_UPI00031B2722: hypothetical protein	0.0641929308
+UniRef50_UPI00031B2722: hypothetical protein|unclassified	0.0641929308
+UniRef50_T0JCU2	0.0641808904
+UniRef50_T0JCU2|unclassified	0.0641808904
+UniRef50_Q3B6P1: CTP synthase	0.0641808196
+UniRef50_Q3B6P1: CTP synthase|unclassified	0.0641808196
+UniRef50_A0A024HX99	0.0641764309
+UniRef50_A0A024HX99|unclassified	0.0641764309
+UniRef50_UPI00037A78B4: DNA invertase	0.0641732295
+UniRef50_UPI00037A78B4: DNA invertase|unclassified	0.0641732295
+UniRef50_U6G9W8	0.0641712955
+UniRef50_U6G9W8|unclassified	0.0641712955
+UniRef50_UPI0004788811: ureidoglycolate hydrolase	0.0641687327
+UniRef50_UPI0004788811: ureidoglycolate hydrolase|unclassified	0.0641687327
+UniRef50_A0A024HXA7	0.0641670232
+UniRef50_A0A024HXA7|unclassified	0.0641670232
+UniRef50_A3JV03	0.0641635676
+UniRef50_A3JV03|unclassified	0.0641635676
+UniRef50_UPI0004734490: hypothetical protein, partial	0.0641597910
+UniRef50_UPI0004734490: hypothetical protein, partial|unclassified	0.0641597910
+UniRef50_UPI00035CB0C6: hypothetical protein	0.0641542999
+UniRef50_UPI00035CB0C6: hypothetical protein|unclassified	0.0641542999
+UniRef50_A4YI89: 3-hydroxypropionyl-coenzyme A dehydratase	0.0641500607
+UniRef50_A4YI89: 3-hydroxypropionyl-coenzyme A dehydratase|unclassified	0.0641500607
+UniRef50_A4ED98	0.0641475081
+UniRef50_A4ED98|unclassified	0.0641475081
+UniRef50_D6B8D3: Primosome assembly protein PriA (Fragment)	0.0641465456
+UniRef50_D6B8D3: Primosome assembly protein PriA (Fragment)|unclassified	0.0641465456
+UniRef50_UPI000463D201: hypothetical protein	0.0641335688
+UniRef50_UPI000463D201: hypothetical protein|unclassified	0.0641335688
+UniRef50_X7F3I6	0.0641333730
+UniRef50_X7F3I6|unclassified	0.0641333730
+UniRef50_B9K2T0	0.0641271567
+UniRef50_B9K2T0|unclassified	0.0641271567
+UniRef50_V9KC56: Bromodomain-containing protein 3 (Fragment)	0.0641239608
+UniRef50_V9KC56: Bromodomain-containing protein 3 (Fragment)|unclassified	0.0641239608
+UniRef50_UPI000467F1FF: hypothetical protein, partial	0.0641234792
+UniRef50_UPI000467F1FF: hypothetical protein, partial|unclassified	0.0641234792
+UniRef50_UPI00037391D6: hypothetical protein	0.0641202863
+UniRef50_UPI00037391D6: hypothetical protein|unclassified	0.0641202863
+UniRef50_UPI0001A64225: ubiquitin-activating enzyme E1C	0.0641175873
+UniRef50_UPI0001A64225: ubiquitin-activating enzyme E1C|unclassified	0.0641175873
+UniRef50_UPI00037BBF2A: hypothetical protein	0.0641084921
+UniRef50_UPI00037BBF2A: hypothetical protein|unclassified	0.0641084921
+UniRef50_UPI0003B488F0: phosphomethylpyrimidine kinase	0.0641083671
+UniRef50_UPI0003B488F0: phosphomethylpyrimidine kinase|unclassified	0.0641083671
+UniRef50_Q01NI9: Tryptophan synthase alpha chain	0.0641012148
+UniRef50_Q01NI9: Tryptophan synthase alpha chain|unclassified	0.0641012148
+UniRef50_C7QRR7: Short-chain dehydrogenase/reductase SDR	0.0640992714
+UniRef50_C7QRR7: Short-chain dehydrogenase/reductase SDR|unclassified	0.0640992714
+UniRef50_C6XQD6: Polygalacturonase	0.0640941782
+UniRef50_C6XQD6: Polygalacturonase|unclassified	0.0640941782
+UniRef50_UPI00046FE227: multidrug ABC transporter ATP-binding protein	0.0640920828
+UniRef50_UPI00046FE227: multidrug ABC transporter ATP-binding protein|unclassified	0.0640920828
+UniRef50_UPI00046CE346: hypothetical protein	0.0640892266
+UniRef50_UPI00046CE346: hypothetical protein|unclassified	0.0640892266
+UniRef50_B9MRD1: 4-hydroxy-tetrahydrodipicolinate synthase	0.0640876554
+UniRef50_B9MRD1: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0640876554
+UniRef50_I0IAL0	0.0640857965
+UniRef50_I0IAL0|unclassified	0.0640857965
+UniRef50_UPI00047BACBC: hypothetical protein	0.0640855093
+UniRef50_UPI00047BACBC: hypothetical protein|unclassified	0.0640855093
+UniRef50_A5D055	0.0640830999
+UniRef50_A5D055|unclassified	0.0640830999
+UniRef50_A9DQS7: ABC transporter, inner membrane subunit	0.0640789306
+UniRef50_A9DQS7: ABC transporter, inner membrane subunit|unclassified	0.0640789306
+UniRef50_E6TRR8	0.0640735415
+UniRef50_E6TRR8|unclassified	0.0640735415
+UniRef50_Q9K678: PTS system mannitol-specific EIICB component	0.0640699817
+UniRef50_Q9K678: PTS system mannitol-specific EIICB component|unclassified	0.0640699817
+UniRef50_Q5NPZ7: Tryptophan synthase alpha chain	0.0640690446
+UniRef50_Q5NPZ7: Tryptophan synthase alpha chain|unclassified	0.0640690446
+UniRef50_A7HN65: Glucose-1-phosphate adenylyltransferase	0.0640656301
+UniRef50_A7HN65: Glucose-1-phosphate adenylyltransferase|unclassified	0.0640656301
+UniRef50_UPI0004688E2B: hypothetical protein, partial	0.0640491301
+UniRef50_UPI0004688E2B: hypothetical protein, partial|unclassified	0.0640491301
+UniRef50_Q3KAC4	0.0640474228
+UniRef50_Q3KAC4|unclassified	0.0640474228
+UniRef50_UPI0003829CBE: hypothetical protein	0.0640355946
+UniRef50_UPI0003829CBE: hypothetical protein|unclassified	0.0640355946
+UniRef50_UPI0004655133: hypothetical protein	0.0640272025
+UniRef50_UPI0004655133: hypothetical protein|unclassified	0.0640272025
+UniRef50_D8U173	0.0640270097
+UniRef50_D8U173|unclassified	0.0640270097
+UniRef50_I1CIK3	0.0640259420
+UniRef50_I1CIK3|unclassified	0.0640259420
+UniRef50_H5P8B5	0.0640251561
+UniRef50_H5P8B5|unclassified	0.0640251561
+UniRef50_O29836: Cysteine--tRNA ligase	0.0640241264
+UniRef50_O29836: Cysteine--tRNA ligase|unclassified	0.0640241264
+UniRef50_UPI00037F267E: hypothetical protein	0.0640229385
+UniRef50_UPI00037F267E: hypothetical protein|unclassified	0.0640229385
+UniRef50_UPI0002746F92	0.0640221119
+UniRef50_UPI0002746F92|unclassified	0.0640221119
+UniRef50_UPI000471AAA8: arylesterase	0.0640175163
+UniRef50_UPI000471AAA8: arylesterase|unclassified	0.0640175163
+UniRef50_UPI0003B4A2D6: TonB-denpendent receptor	0.0640008403
+UniRef50_UPI0003B4A2D6: TonB-denpendent receptor|unclassified	0.0640008403
+UniRef50_D6B189: Predicted protein	0.0640007212
+UniRef50_D6B189: Predicted protein|unclassified	0.0640007212
+UniRef50_UPI00036D5B57: hypothetical protein	0.0639980726
+UniRef50_UPI00036D5B57: hypothetical protein|unclassified	0.0639980726
+UniRef50_UPI0002375452: methyl-accepting chemotaxis sensory transducer, partial	0.0639977296
+UniRef50_UPI0002375452: methyl-accepting chemotaxis sensory transducer, partial|unclassified	0.0639977296
+UniRef50_E8NMA5: Putative hydrogenase-1 small subunit	0.0639971050
+UniRef50_E8NMA5: Putative hydrogenase-1 small subunit|unclassified	0.0639971050
+UniRef50_UPI0002260A02: phage/plasmid primase, P4 family protein, partial	0.0639954073
+UniRef50_UPI0002260A02: phage/plasmid primase, P4 family protein, partial|unclassified	0.0639954073
+UniRef50_UPI00046F5EDC: peroxiredoxin	0.0639894936
+UniRef50_UPI00046F5EDC: peroxiredoxin|unclassified	0.0639894936
+UniRef50_B1EMB7: Ferrichrome-binding periplasmic protein	0.0639880026
+UniRef50_B1EMB7: Ferrichrome-binding periplasmic protein|unclassified	0.0639880026
+UniRef50_E3HC65	0.0639873932
+UniRef50_E3HC65|unclassified	0.0639873932
+UniRef50_UPI0003625420: hypothetical protein	0.0639856543
+UniRef50_UPI0003625420: hypothetical protein|unclassified	0.0639856543
+UniRef50_UPI00035E1D4C: hypothetical protein	0.0639825342
+UniRef50_UPI00035E1D4C: hypothetical protein|unclassified	0.0639825342
+UniRef50_P07518: Subtilisin	0.0639792567
+UniRef50_P07518: Subtilisin|unclassified	0.0639792567
+UniRef50_UPI000255CC88: transcriptional regulator	0.0639785711
+UniRef50_UPI000255CC88: transcriptional regulator|unclassified	0.0639785711
+UniRef50_A0A034UCE4	0.0639784339
+UniRef50_A0A034UCE4|unclassified	0.0639784339
+UniRef50_UPI00047BC5C7: hypothetical protein	0.0639673189
+UniRef50_UPI00047BC5C7: hypothetical protein|unclassified	0.0639673189
+UniRef50_UPI000375C740: hypothetical protein	0.0639642865
+UniRef50_UPI000375C740: hypothetical protein|unclassified	0.0639642865
+UniRef50_UPI00047EAC30: MerR family transcriptional regulator	0.0639551643
+UniRef50_UPI00047EAC30: MerR family transcriptional regulator|unclassified	0.0639551643
+UniRef50_D7AXB1	0.0639469929
+UniRef50_D7AXB1|unclassified	0.0639469929
+UniRef50_UPI0003721AC4: hypothetical protein	0.0639433781
+UniRef50_UPI0003721AC4: hypothetical protein|unclassified	0.0639433781
+UniRef50_K0YRV5	0.0639424078
+UniRef50_K0YRV5|unclassified	0.0639424078
+UniRef50_A8JIU6: Predicted protein of CLR family	0.0639368156
+UniRef50_A8JIU6: Predicted protein of CLR family|unclassified	0.0639368156
+UniRef50_UPI0001D2ED00: integral membrane sensor signal transduction histidine kinase	0.0639351754
+UniRef50_UPI0001D2ED00: integral membrane sensor signal transduction histidine kinase|unclassified	0.0639351754
+UniRef50_UPI0002FF2A71: hypothetical protein	0.0639349506
+UniRef50_UPI0002FF2A71: hypothetical protein|unclassified	0.0639349506
+UniRef50_UPI00035E6C4D: hypothetical protein	0.0639344336
+UniRef50_UPI00035E6C4D: hypothetical protein|unclassified	0.0639344336
+UniRef50_T0U7I8	0.0639276996
+UniRef50_T0U7I8|unclassified	0.0639276996
+UniRef50_B0T9Q7: Cobyrinic acid ac-diamide synthase	0.0639276884
+UniRef50_B0T9Q7: Cobyrinic acid ac-diamide synthase|unclassified	0.0639276884
+UniRef50_UPI000237B149: multidrug ABC transporter ATPase	0.0639264818
+UniRef50_UPI000237B149: multidrug ABC transporter ATPase|unclassified	0.0639264818
+UniRef50_S4XM14	0.0639215871
+UniRef50_S4XM14|unclassified	0.0639215871
+UniRef50_M7XG55	0.0639144623
+UniRef50_M7XG55|unclassified	0.0639144623
+UniRef50_K0TNG1	0.0639140664
+UniRef50_K0TNG1|unclassified	0.0639140664
+UniRef50_R6R0Y3: Cobalt transport protein	0.0639092877
+UniRef50_R6R0Y3: Cobalt transport protein|unclassified	0.0639092877
+UniRef50_A7HM68: Lysine--tRNA ligase	0.0639057881
+UniRef50_A7HM68: Lysine--tRNA ligase|unclassified	0.0639057881
+UniRef50_UPI000262CA63: phosphoglycolate phosphatase	0.0639023294
+UniRef50_UPI000262CA63: phosphoglycolate phosphatase|unclassified	0.0639023294
+UniRef50_A3UDC9: Modulator of glutathione-dependent potassium efflux system	0.0638999201
+UniRef50_A3UDC9: Modulator of glutathione-dependent potassium efflux system|unclassified	0.0638999201
+UniRef50_B5YK86: 6-carboxyhexanoate--CoA ligase	0.0638963070
+UniRef50_B5YK86: 6-carboxyhexanoate--CoA ligase|unclassified	0.0638963070
+UniRef50_UPI000478F011: hypothetical protein	0.0638922528
+UniRef50_UPI000478F011: hypothetical protein|unclassified	0.0638922528
+UniRef50_UPI0004711A0E: AraC family transcriptional regulator	0.0638899056
+UniRef50_UPI0004711A0E: AraC family transcriptional regulator|unclassified	0.0638899056
+UniRef50_UPI00035C1F9A: hypothetical protein	0.0638745448
+UniRef50_UPI00035C1F9A: hypothetical protein|unclassified	0.0638745448
+UniRef50_N1NUQ8	0.0638723275
+UniRef50_N1NUQ8|unclassified	0.0638723275
+UniRef50_UPI00037A5B6D: hypothetical protein, partial	0.0638660326
+UniRef50_UPI00037A5B6D: hypothetical protein, partial|unclassified	0.0638660326
+UniRef50_E6VY30	0.0638460768
+UniRef50_E6VY30|unclassified	0.0638460768
+UniRef50_F7YI17: Transporter	0.0638453149
+UniRef50_F7YI17: Transporter|unclassified	0.0638453149
+UniRef50_UPI00047D3F24: PTS sucrose transporter subunit IIABC	0.0638436144
+UniRef50_UPI00047D3F24: PTS sucrose transporter subunit IIABC|unclassified	0.0638436144
+UniRef50_UPI0002559A74: ACT domain-containing protein	0.0638408595
+UniRef50_UPI0002559A74: ACT domain-containing protein|unclassified	0.0638408595
+UniRef50_UPI0004675627: molybdopterin-guanine dinucleotide biosynthesis protein A	0.0638403334
+UniRef50_UPI0004675627: molybdopterin-guanine dinucleotide biosynthesis protein A|unclassified	0.0638403334
+UniRef50_H7F9V4	0.0638402751
+UniRef50_H7F9V4|unclassified	0.0638402751
+UniRef50_UPI00047C4FA7: hypothetical protein	0.0638279144
+UniRef50_UPI00047C4FA7: hypothetical protein|unclassified	0.0638279144
+UniRef50_UPI00035D32CB: hypothetical protein, partial	0.0638179974
+UniRef50_UPI00035D32CB: hypothetical protein, partial|unclassified	0.0638179974
+UniRef50_F5RJG1	0.0638169507
+UniRef50_F5RJG1|unclassified	0.0638169507
+UniRef50_UPI000381B6E6: hypothetical protein	0.0638137366
+UniRef50_UPI000381B6E6: hypothetical protein|unclassified	0.0638137366
+UniRef50_G7ZED5	0.0638112476
+UniRef50_G7ZED5|unclassified	0.0638112476
+UniRef50_UPI0003B5F2B2: transcriptional regulator	0.0638110946
+UniRef50_UPI0003B5F2B2: transcriptional regulator|unclassified	0.0638110946
+UniRef50_B3QZD6: Indole-3-glycerol phosphate synthase	0.0638106286
+UniRef50_B3QZD6: Indole-3-glycerol phosphate synthase|unclassified	0.0638106286
+UniRef50_UPI000288D938: phosphatidylserine decarboxylase	0.0638058646
+UniRef50_UPI000288D938: phosphatidylserine decarboxylase|unclassified	0.0638058646
+UniRef50_K2JJH3	0.0638047317
+UniRef50_K2JJH3|unclassified	0.0638047317
+UniRef50_UPI000440BD3E: hypothetical protein STEHIDRAFT_56056	0.0638014754
+UniRef50_UPI000440BD3E: hypothetical protein STEHIDRAFT_56056|unclassified	0.0638014754
+UniRef50_UPI0003658A58: hypothetical protein	0.0637968833
+UniRef50_UPI0003658A58: hypothetical protein|unclassified	0.0637968833
+UniRef50_W5TGP1: Putative lipoprotein	0.0637965431
+UniRef50_W5TGP1: Putative lipoprotein|unclassified	0.0637965431
+UniRef50_Q9CIU7: ADP-dependent (S)-NAD(P)H-hydrate dehydratase	0.0637938323
+UniRef50_Q9CIU7: ADP-dependent (S)-NAD(P)H-hydrate dehydratase|unclassified	0.0637938323
+UniRef50_B7QPZ8: Phage tail sheath protein	0.0637922802
+UniRef50_B7QPZ8: Phage tail sheath protein|unclassified	0.0637922802
+UniRef50_A3V677	0.0637857733
+UniRef50_A3V677|unclassified	0.0637857733
+UniRef50_UPI0004090C4C: molybdenum cofactor biosynthesis protein MoaA	0.0637822850
+UniRef50_UPI0004090C4C: molybdenum cofactor biosynthesis protein MoaA|unclassified	0.0637822850
+UniRef50_UPI0003B3E1B0: 50S ribosomal protein L17	0.0637753781
+UniRef50_UPI0003B3E1B0: 50S ribosomal protein L17|unclassified	0.0637753781
+UniRef50_O31440: Fatty-acid peroxygenase	0.0637722320
+UniRef50_O31440: Fatty-acid peroxygenase|unclassified	0.0637722320
+UniRef50_Q8GDY3: Isoprenyl transferase	0.0637620440
+UniRef50_Q8GDY3: Isoprenyl transferase|unclassified	0.0637620440
+UniRef50_Q67M06	0.0637506458
+UniRef50_Q67M06|unclassified	0.0637506458
+UniRef50_B0CEU2: Indole-3-glycerol phosphate synthase	0.0637489294
+UniRef50_B0CEU2: Indole-3-glycerol phosphate synthase|unclassified	0.0637489294
+UniRef50_I7MEH4: Pyridoxal-phosphate-dependent protein	0.0637483556
+UniRef50_I7MEH4: Pyridoxal-phosphate-dependent protein|unclassified	0.0637483556
+UniRef50_R7UMW4	0.0637445590
+UniRef50_R7UMW4|unclassified	0.0637445590
+UniRef50_UPI00029A41D2: dihydrofolate synthase	0.0637444496
+UniRef50_UPI00029A41D2: dihydrofolate synthase|unclassified	0.0637444496
+UniRef50_Q28VG5: Peptidase M23B	0.0637383437
+UniRef50_Q28VG5: Peptidase M23B|unclassified	0.0637383437
+UniRef50_UPI00034B2700: hypothetical protein	0.0637368036
+UniRef50_UPI00034B2700: hypothetical protein|unclassified	0.0637368036
+UniRef50_G6F763	0.0637341041
+UniRef50_G6F763|unclassified	0.0637341041
+UniRef50_UPI00046CB50B: hypothetical protein	0.0637334985
+UniRef50_UPI00046CB50B: hypothetical protein|unclassified	0.0637334985
+UniRef50_UPI0002895051: 3-dehydroquinate synthase	0.0637293331
+UniRef50_UPI0002895051: 3-dehydroquinate synthase|unclassified	0.0637293331
+UniRef50_UPI00037772A6: hypothetical protein, partial	0.0637269991
+UniRef50_UPI00037772A6: hypothetical protein, partial|unclassified	0.0637269991
+UniRef50_UPI0004713D66: hypothetical protein	0.0637233428
+UniRef50_UPI0004713D66: hypothetical protein|unclassified	0.0637233428
+UniRef50_UPI00047CC903: hypothetical protein	0.0637212087
+UniRef50_UPI00047CC903: hypothetical protein|unclassified	0.0637212087
+UniRef50_W5XA18: Glyoxalase family protein	0.0637189706
+UniRef50_W5XA18: Glyoxalase family protein|unclassified	0.0637189706
+UniRef50_A7HSA4: Ppx/GppA phosphatase	0.0637176132
+UniRef50_A7HSA4: Ppx/GppA phosphatase|unclassified	0.0637176132
+UniRef50_B2TIG8: DNA-directed RNA polymerase subunit beta	0.0637174496
+UniRef50_B2TIG8: DNA-directed RNA polymerase subunit beta|unclassified	0.0637174496
+UniRef50_UPI00034F3712	0.0637174400
+UniRef50_UPI00034F3712|unclassified	0.0637174400
+UniRef50_UPI000347E827: 3-beta-hydroxysteroid dehydrogenase	0.0637137784
+UniRef50_UPI000347E827: 3-beta-hydroxysteroid dehydrogenase|unclassified	0.0637137784
+UniRef50_S9US95	0.0637089146
+UniRef50_S9US95|unclassified	0.0637089146
+UniRef50_UPI00040F8260: hypothetical protein	0.0637069164
+UniRef50_UPI00040F8260: hypothetical protein|unclassified	0.0637069164
+UniRef50_UPI000381D2C3: hypothetical protein	0.0637065286
+UniRef50_UPI000381D2C3: hypothetical protein|unclassified	0.0637065286
+UniRef50_Q39ZH2: Bifunctional protein GlmU	0.0636876779
+UniRef50_Q39ZH2: Bifunctional protein GlmU|unclassified	0.0636876779
+UniRef50_O33832: Fructose-1,6-bisphosphatase/inositol-1-monophosphatase	0.0636754997
+UniRef50_O33832: Fructose-1,6-bisphosphatase/inositol-1-monophosphatase|unclassified	0.0636754997
+UniRef50_UPI0003B3A4A3: adenine permease	0.0636752971
+UniRef50_UPI0003B3A4A3: adenine permease|unclassified	0.0636752971
+UniRef50_UPI0003707335: hypothetical protein	0.0636711447
+UniRef50_UPI0003707335: hypothetical protein|unclassified	0.0636711447
+UniRef50_UPI0003F68F3A: magnesium chelatase	0.0636644147
+UniRef50_UPI0003F68F3A: magnesium chelatase|unclassified	0.0636644147
+UniRef50_I3BRI2: Fimbrial assembly family protein	0.0636638723
+UniRef50_I3BRI2: Fimbrial assembly family protein|unclassified	0.0636638723
+UniRef50_UPI000376AE41: hypothetical protein	0.0636537179
+UniRef50_UPI000376AE41: hypothetical protein|unclassified	0.0636537179
+UniRef50_UPI000411FAC5: hypothetical protein	0.0636493065
+UniRef50_UPI000411FAC5: hypothetical protein|unclassified	0.0636493065
+UniRef50_UPI0003296EF5: PREDICTED: trans-L-3-hydroxyproline dehydratase-like isoform X1	0.0636476638
+UniRef50_UPI0003296EF5: PREDICTED: trans-L-3-hydroxyproline dehydratase-like isoform X1|unclassified	0.0636476638
+UniRef50_F0K6H4: Membrane protein	0.0636412358
+UniRef50_F0K6H4: Membrane protein|unclassified	0.0636412358
+UniRef50_UPI00046E666E: hypothetical protein	0.0636407257
+UniRef50_UPI00046E666E: hypothetical protein|unclassified	0.0636407257
+UniRef50_M5DNV0	0.0636253475
+UniRef50_M5DNV0|unclassified	0.0636253475
+UniRef50_X8FNE2: HD domain protein	0.0636199617
+UniRef50_X8FNE2: HD domain protein|unclassified	0.0636199617
+UniRef50_B0RBL3: Glutamate-1-semialdehyde 2,1-aminomutase	0.0636122349
+UniRef50_B0RBL3: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0636122349
+UniRef50_B9Y4C7: Beta-lactamase	0.0636101023
+UniRef50_B9Y4C7: Beta-lactamase|unclassified	0.0636101023
+UniRef50_A7HZA7	0.0636077305
+UniRef50_A7HZA7|unclassified	0.0636077305
+UniRef50_B4S8V9: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.0636073879
+UniRef50_B4S8V9: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.0636073879
+UniRef50_UPI0003799C12: hypothetical protein	0.0635978826
+UniRef50_UPI0003799C12: hypothetical protein|unclassified	0.0635978826
+UniRef50_P11766: Alcohol dehydrogenase class-3	0.0635951325
+UniRef50_P11766: Alcohol dehydrogenase class-3|unclassified	0.0635951325
+UniRef50_Q1GIY6	0.0635925823
+UniRef50_Q1GIY6|unclassified	0.0635925823
+UniRef50_UPI0001745108: Phosphoglycerate mutase 1	0.0635867109
+UniRef50_UPI0001745108: Phosphoglycerate mutase 1|unclassified	0.0635867109
+UniRef50_UPI000225B460: trans-hexaprenyltranstransferase	0.0635836638
+UniRef50_UPI000225B460: trans-hexaprenyltranstransferase|unclassified	0.0635836638
+UniRef50_UPI0004644F99: ethanolamine utilization protein EutJ	0.0635733566
+UniRef50_UPI0004644F99: ethanolamine utilization protein EutJ|unclassified	0.0635733566
+UniRef50_UPI0003645117: hypothetical protein	0.0635722239
+UniRef50_UPI0003645117: hypothetical protein|unclassified	0.0635722239
+UniRef50_E6V152: Fimbrial biogenesis protein	0.0635666938
+UniRef50_E6V152: Fimbrial biogenesis protein|unclassified	0.0635666938
+UniRef50_X1YJ55	0.0635587582
+UniRef50_X1YJ55|unclassified	0.0635587582
+UniRef50_UPI000478907D: hypothetical protein	0.0635557631
+UniRef50_UPI000478907D: hypothetical protein|unclassified	0.0635557631
+UniRef50_UPI000474331D: hypothetical protein, partial	0.0635544968
+UniRef50_UPI000474331D: hypothetical protein, partial|unclassified	0.0635544968
+UniRef50_F3M7V3: Putative sporulation protein YyaC	0.0635523184
+UniRef50_F3M7V3: Putative sporulation protein YyaC|unclassified	0.0635523184
+UniRef50_A9KFA0: Ribonuclease 3	0.0635417698
+UniRef50_A9KFA0: Ribonuclease 3|unclassified	0.0635417698
+UniRef50_Q98MK2: Molybdenum cofactor guanylyltransferase	0.0635377116
+UniRef50_Q98MK2: Molybdenum cofactor guanylyltransferase|unclassified	0.0635377116
+UniRef50_A0A024HWF4	0.0635372305
+UniRef50_A0A024HWF4|unclassified	0.0635372305
+UniRef50_G8PFP3: Lytic murein transglycosylase	0.0635348579
+UniRef50_G8PFP3: Lytic murein transglycosylase|unclassified	0.0635348579
+UniRef50_UPI000262832B: transcriptional regulator	0.0635334274
+UniRef50_UPI000262832B: transcriptional regulator|unclassified	0.0635334274
+UniRef50_UPI0003B54765: enoyl-CoA hydratase	0.0635267169
+UniRef50_UPI0003B54765: enoyl-CoA hydratase|unclassified	0.0635267169
+UniRef50_Q67N85: L-threonine 3-dehydrogenase	0.0635139753
+UniRef50_Q67N85: L-threonine 3-dehydrogenase|unclassified	0.0635139753
+UniRef50_UPI0002FACF3D: hypothetical protein	0.0635115354
+UniRef50_UPI0002FACF3D: hypothetical protein|unclassified	0.0635115354
+UniRef50_UPI00045E8FE5: ABC transporter ATP-binding protein	0.0635063494
+UniRef50_UPI00045E8FE5: ABC transporter ATP-binding protein|unclassified	0.0635063494
+UniRef50_UPI00046F02D0: molybdenum ABC transporter ATP-binding protein	0.0634907559
+UniRef50_UPI00046F02D0: molybdenum ABC transporter ATP-binding protein|unclassified	0.0634907559
+UniRef50_UPI00036A30FF: hypothetical protein	0.0634862071
+UniRef50_UPI00036A30FF: hypothetical protein|unclassified	0.0634862071
+UniRef50_A9S9Z8	0.0634795112
+UniRef50_A9S9Z8|unclassified	0.0634795112
+UniRef50_UPI0003B5EFE3: hypothetical protein	0.0634778875
+UniRef50_UPI0003B5EFE3: hypothetical protein|unclassified	0.0634778875
+UniRef50_UPI0001FFDC7C: ABC transporter related protein	0.0634688892
+UniRef50_UPI0001FFDC7C: ABC transporter related protein|unclassified	0.0634688892
+UniRef50_A4YXS7	0.0634664368
+UniRef50_A4YXS7|unclassified	0.0634664368
+UniRef50_Q9HI70: Vitamin B12-dependent ribonucleoside-diphosphate reductase	0.0634569928
+UniRef50_Q9HI70: Vitamin B12-dependent ribonucleoside-diphosphate reductase|unclassified	0.0634569928
+UniRef50_R9CBP1: Flagellar hook capping protein	0.0634568598
+UniRef50_R9CBP1: Flagellar hook capping protein|unclassified	0.0634568598
+UniRef50_J1AB93	0.0634557134
+UniRef50_J1AB93|unclassified	0.0634557134
+UniRef50_UPI0003C8DD13: PREDICTED: akirin-1	0.0634519905
+UniRef50_UPI0003C8DD13: PREDICTED: akirin-1|unclassified	0.0634519905
+UniRef50_UPI00035EC92D: hypothetical protein	0.0634481620
+UniRef50_UPI00035EC92D: hypothetical protein|unclassified	0.0634481620
+UniRef50_G4PGT5: Pirin	0.0634479664
+UniRef50_G4PGT5: Pirin|unclassified	0.0634479664
+UniRef50_A6VPG7: Hydroxyethylthiazole kinase	0.0634467795
+UniRef50_A6VPG7: Hydroxyethylthiazole kinase|unclassified	0.0634467795
+UniRef50_Q0SI65: Putative 3-methyladenine DNA glycosylase	0.0634463222
+UniRef50_Q0SI65: Putative 3-methyladenine DNA glycosylase|unclassified	0.0634463222
+UniRef50_UPI0004651C24: cadmium ABC transporter ATPase, partial	0.0634460538
+UniRef50_UPI0004651C24: cadmium ABC transporter ATPase, partial|unclassified	0.0634460538
+UniRef50_X6L5Y0	0.0634458521
+UniRef50_X6L5Y0|unclassified	0.0634458521
+UniRef50_S6CF03: Glycolate oxidase iron-sulfur subunit	0.0634429309
+UniRef50_S6CF03: Glycolate oxidase iron-sulfur subunit|unclassified	0.0634429309
+UniRef50_R4LUX8	0.0634419728
+UniRef50_R4LUX8|unclassified	0.0634419728
+UniRef50_UPI0003772F59: hypothetical protein	0.0634406522
+UniRef50_UPI0003772F59: hypothetical protein|unclassified	0.0634406522
+UniRef50_Q3J792: D-alanine--D-alanine ligase	0.0634352440
+UniRef50_Q3J792: D-alanine--D-alanine ligase|unclassified	0.0634352440
+UniRef50_D5DUR4	0.0634350309
+UniRef50_D5DUR4|unclassified	0.0634350309
+UniRef50_J0XPW7: LPXTG-motif cell wall anchor domain protein	0.0634319245
+UniRef50_J0XPW7: LPXTG-motif cell wall anchor domain protein|unclassified	0.0634319245
+UniRef50_UPI00046D6A95: hypothetical protein	0.0634310920
+UniRef50_UPI00046D6A95: hypothetical protein|unclassified	0.0634310920
+UniRef50_A0A058ZKL2	0.0634153803
+UniRef50_A0A058ZKL2|unclassified	0.0634153803
+UniRef50_UPI000376E94E: hypothetical protein	0.0634141194
+UniRef50_UPI000376E94E: hypothetical protein|unclassified	0.0634141194
+UniRef50_UPI000479735A: cobalt ABC transporter ATPase	0.0634122220
+UniRef50_UPI000479735A: cobalt ABC transporter ATPase|unclassified	0.0634122220
+UniRef50_W5XD81: UDP-N-acetylglucosamine 2-epimerase	0.0634102329
+UniRef50_W5XD81: UDP-N-acetylglucosamine 2-epimerase|unclassified	0.0634102329
+UniRef50_UPI0003746D7E: hypothetical protein	0.0634089429
+UniRef50_UPI0003746D7E: hypothetical protein|unclassified	0.0634089429
+UniRef50_A8LJB2	0.0634084025
+UniRef50_A8LJB2|unclassified	0.0634084025
+UniRef50_A3ZZA6	0.0634078845
+UniRef50_A3ZZA6|unclassified	0.0634078845
+UniRef50_R8LS95	0.0634078594
+UniRef50_R8LS95|unclassified	0.0634078594
+UniRef50_D5E1P3	0.0634003944
+UniRef50_D5E1P3|unclassified	0.0634003944
+UniRef50_UPI000288829C: UDP-3-O-acyl-N-acetylglucosamine deacetylase	0.0633942304
+UniRef50_UPI000288829C: UDP-3-O-acyl-N-acetylglucosamine deacetylase|unclassified	0.0633942304
+UniRef50_B7J3G2: Holliday junction ATP-dependent DNA helicase RuvA	0.0633937740
+UniRef50_B7J3G2: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.0633937740
+UniRef50_I0THJ4: DHH family protein	0.0633913004
+UniRef50_I0THJ4: DHH family protein|unclassified	0.0633913004
+UniRef50_E0THU9	0.0633857252
+UniRef50_E0THU9|unclassified	0.0633857252
+UniRef50_UPI0003B622CE: peptide ABC transporter substrate-binding protein	0.0633762935
+UniRef50_UPI0003B622CE: peptide ABC transporter substrate-binding protein|unclassified	0.0633762935
+UniRef50_F3K9M0	0.0633730861
+UniRef50_F3K9M0|unclassified	0.0633730861
+UniRef50_R1EQ03	0.0633728516
+UniRef50_R1EQ03|unclassified	0.0633728516
+UniRef50_Q1H450: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical	0.0633706983
+UniRef50_Q1H450: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical|unclassified	0.0633706983
+UniRef50_UPI00046FDA3D: peptide ABC transporter ATP-binding protein	0.0633671518
+UniRef50_UPI00046FDA3D: peptide ABC transporter ATP-binding protein|unclassified	0.0633671518
+UniRef50_A7FKP6: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase	0.0633669262
+UniRef50_A7FKP6: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase|unclassified	0.0633669262
+UniRef50_UPI0003792756: hypothetical protein	0.0633651282
+UniRef50_UPI0003792756: hypothetical protein|unclassified	0.0633651282
+UniRef50_I2JPW0: Type 4 fimbrial biogenesis protein PilO	0.0633638047
+UniRef50_I2JPW0: Type 4 fimbrial biogenesis protein PilO|unclassified	0.0633638047
+UniRef50_UPI00046D1B53: hypothetical protein	0.0633629837
+UniRef50_UPI00046D1B53: hypothetical protein|unclassified	0.0633629837
+UniRef50_UPI00046F85CB: L-threonine 3-dehydrogenase	0.0633627587
+UniRef50_UPI00046F85CB: L-threonine 3-dehydrogenase|unclassified	0.0633627587
+UniRef50_Q9UX31: Argininosuccinate synthase	0.0633454279
+UniRef50_Q9UX31: Argininosuccinate synthase|unclassified	0.0633454279
+UniRef50_V9ZX38: Membrane protein	0.0633437652
+UniRef50_V9ZX38: Membrane protein|unclassified	0.0633437652
+UniRef50_M2P9Q5	0.0633359579
+UniRef50_M2P9Q5|unclassified	0.0633359579
+UniRef50_Q1IU64: LexA repressor	0.0633236355
+UniRef50_Q1IU64: LexA repressor|unclassified	0.0633236355
+UniRef50_F3LEV2	0.0633231921
+UniRef50_F3LEV2|unclassified	0.0633231921
+UniRef50_A1TWN0: Methionyl-tRNA formyltransferase	0.0633204339
+UniRef50_A1TWN0: Methionyl-tRNA formyltransferase|unclassified	0.0633204339
+UniRef50_UPI0003024E2C: hypothetical protein	0.0633196512
+UniRef50_UPI0003024E2C: hypothetical protein|unclassified	0.0633196512
+UniRef50_UPI000289831A: dynamin family protein	0.0633148522
+UniRef50_UPI000289831A: dynamin family protein|unclassified	0.0633148522
+UniRef50_UPI00016C58CC: branched-chain amino acid aminotransferase	0.0633138931
+UniRef50_UPI00016C58CC: branched-chain amino acid aminotransferase|unclassified	0.0633138931
+UniRef50_UPI0003615A32: hypothetical protein	0.0633034778
+UniRef50_UPI0003615A32: hypothetical protein|unclassified	0.0633034778
+UniRef50_X1H1G9: Marine sediment metagenome DNA, contig: S03H2_S10102 (Fragment)	0.0632972974
+UniRef50_X1H1G9: Marine sediment metagenome DNA, contig: S03H2_S10102 (Fragment)|unclassified	0.0632972974
+UniRef50_A5D374: 3-dehydroquinate synthase	0.0632959842
+UniRef50_A5D374: 3-dehydroquinate synthase|unclassified	0.0632959842
+UniRef50_UPI0003B5BDEC: membrane protein	0.0632882248
+UniRef50_UPI0003B5BDEC: membrane protein|unclassified	0.0632882248
+UniRef50_Q9K8F8: Glutamyl-tRNA reductase	0.0632864156
+UniRef50_Q9K8F8: Glutamyl-tRNA reductase|unclassified	0.0632864156
+UniRef50_UPI0003150799: hypothetical protein	0.0632851188
+UniRef50_UPI0003150799: hypothetical protein|unclassified	0.0632851188
+UniRef50_UPI0003B3327B: 16S rRNA methyltransferase	0.0632838540
+UniRef50_UPI0003B3327B: 16S rRNA methyltransferase|unclassified	0.0632838540
+UniRef50_Q49ZT5	0.0632838209
+UniRef50_Q49ZT5|unclassified	0.0632838209
+UniRef50_A0A033UG51	0.0632773838
+UniRef50_A0A033UG51|unclassified	0.0632773838
+UniRef50_C1DW75: 6-carboxyhexanoate--CoA ligase	0.0632690080
+UniRef50_C1DW75: 6-carboxyhexanoate--CoA ligase|unclassified	0.0632690080
+UniRef50_UPI0003B7002B: NADPH:quinone reductase	0.0632637180
+UniRef50_UPI0003B7002B: NADPH:quinone reductase|unclassified	0.0632637180
+UniRef50_UPI000423504B: CMP-N-acetlyneuraminic acid synthetase	0.0632568721
+UniRef50_UPI000423504B: CMP-N-acetlyneuraminic acid synthetase|unclassified	0.0632568721
+UniRef50_UPI00029AB161: pseudouridine synthase	0.0632561677
+UniRef50_UPI00029AB161: pseudouridine synthase|unclassified	0.0632561677
+UniRef50_UPI0003620D35: hypothetical protein	0.0632515192
+UniRef50_UPI0003620D35: hypothetical protein|unclassified	0.0632515192
+UniRef50_UPI0003B4FB8C: GntR family transcriptional regulator	0.0632416084
+UniRef50_UPI0003B4FB8C: GntR family transcriptional regulator|unclassified	0.0632416084
+UniRef50_D6SYK4	0.0632218765
+UniRef50_D6SYK4|unclassified	0.0632218765
+UniRef50_UPI000370F145: hypothetical protein	0.0632205977
+UniRef50_UPI000370F145: hypothetical protein|unclassified	0.0632205977
+UniRef50_N1S0L8	0.0632182070
+UniRef50_N1S0L8|unclassified	0.0632182070
+UniRef50_UPI00046E7B1D: hypothetical protein	0.0632176618
+UniRef50_UPI00046E7B1D: hypothetical protein|unclassified	0.0632176618
+UniRef50_D9ULU8: CvhA	0.0632055064
+UniRef50_D9ULU8: CvhA|unclassified	0.0632055064
+UniRef50_A1U007: Ethanolamine utilization protein EutJ family protein	0.0632047242
+UniRef50_A1U007: Ethanolamine utilization protein EutJ family protein|unclassified	0.0632047242
+UniRef50_A5VKN4: tRNA (guanine-N(1)-)-methyltransferase	0.0632038799
+UniRef50_A5VKN4: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0632038799
+UniRef50_UPI00035D53BA: hypothetical protein	0.0632030523
+UniRef50_UPI00035D53BA: hypothetical protein|unclassified	0.0632030523
+UniRef50_P39643: Probable aspartate aminotransferase	0.0632011904
+UniRef50_P39643: Probable aspartate aminotransferase|unclassified	0.0632011904
+UniRef50_UPI00028A2273: AraC family transcriptional regulator	0.0631988667
+UniRef50_UPI00028A2273: AraC family transcriptional regulator|unclassified	0.0631988667
+UniRef50_UPI000423105B: cystathionine beta-synthase	0.0631854684
+UniRef50_UPI000423105B: cystathionine beta-synthase|unclassified	0.0631854684
+UniRef50_J0WLK6: PR-1-like protein	0.0631800289
+UniRef50_J0WLK6: PR-1-like protein|unclassified	0.0631800289
+UniRef50_UPI00037CCD4D: hypothetical protein	0.0631798557
+UniRef50_UPI00037CCD4D: hypothetical protein|unclassified	0.0631798557
+UniRef50_U6HB07: RNA and export factor binding protein 2	0.0631778071
+UniRef50_U6HB07: RNA and export factor binding protein 2|unclassified	0.0631778071
+UniRef50_A7SLW1: Branched-chain-amino-acid aminotransferase	0.0631752259
+UniRef50_A7SLW1: Branched-chain-amino-acid aminotransferase|unclassified	0.0631752259
+UniRef50_W6LXS6	0.0631706812
+UniRef50_W6LXS6|unclassified	0.0631706812
+UniRef50_B8FD50: Beta-lactamase domain protein	0.0631672915
+UniRef50_B8FD50: Beta-lactamase domain protein|unclassified	0.0631672915
+UniRef50_E6MVH5: Periplasmic binding family protein	0.0631617908
+UniRef50_E6MVH5: Periplasmic binding family protein|unclassified	0.0631617908
+UniRef50_V6M7B9: Membrane protein	0.0631586695
+UniRef50_V6M7B9: Membrane protein|unclassified	0.0631586695
+UniRef50_UPI0003B2F6F8: cytidine deaminase	0.0631530268
+UniRef50_UPI0003B2F6F8: cytidine deaminase|unclassified	0.0631530268
+UniRef50_Q3BTY0: Leucyl/phenylalanyl-tRNA--protein transferase	0.0631506504
+UniRef50_Q3BTY0: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.0631506504
+UniRef50_Q28JL2	0.0631500525
+UniRef50_Q28JL2|unclassified	0.0631500525
+UniRef50_B9JSB2: Phage lambdaBa02, DNA replication protein	0.0631476029
+UniRef50_B9JSB2: Phage lambdaBa02, DNA replication protein|unclassified	0.0631476029
+UniRef50_UPI00023B21D9	0.0631418355
+UniRef50_UPI00023B21D9|unclassified	0.0631418355
+UniRef50_UPI000368B0B1: hypothetical protein	0.0631393251
+UniRef50_UPI000368B0B1: hypothetical protein|unclassified	0.0631393251
+UniRef50_UPI0002ECC8EE: triosephosphate isomerase	0.0631374546
+UniRef50_UPI0002ECC8EE: triosephosphate isomerase|unclassified	0.0631374546
+UniRef50_Q7NKY4: Glr1342 protein	0.0631340655
+UniRef50_Q7NKY4: Glr1342 protein|unclassified	0.0631340655
+UniRef50_I0KQ93: Membrane-bound lytic murein transglycosylase	0.0631279172
+UniRef50_I0KQ93: Membrane-bound lytic murein transglycosylase|unclassified	0.0631279172
+UniRef50_B4RBF7: Shikimate dehydrogenase	0.0631219070
+UniRef50_B4RBF7: Shikimate dehydrogenase|unclassified	0.0631219070
+UniRef50_G0LKW0: MaoC family protein	0.0631195119
+UniRef50_G0LKW0: MaoC family protein|unclassified	0.0631195119
+UniRef50_W6LZX5: Putative Pilus assembly protein PilO	0.0631108896
+UniRef50_W6LZX5: Putative Pilus assembly protein PilO|unclassified	0.0631108896
+UniRef50_UPI00046FE3C9: ribulose 5-phosphate epimerase	0.0631105231
+UniRef50_UPI00046FE3C9: ribulose 5-phosphate epimerase|unclassified	0.0631105231
+UniRef50_Q0SVZ5: Quinolinate synthase A	0.0631065065
+UniRef50_Q0SVZ5: Quinolinate synthase A|unclassified	0.0631065065
+UniRef50_UPI000372AF3F: hypothetical protein	0.0631055342
+UniRef50_UPI000372AF3F: hypothetical protein|unclassified	0.0631055342
+UniRef50_Q9KC26: Biotin synthase	0.0630990199
+UniRef50_Q9KC26: Biotin synthase|unclassified	0.0630990199
+UniRef50_UPI0002880C6B: ribokinase	0.0630910714
+UniRef50_UPI0002880C6B: ribokinase|unclassified	0.0630910714
+UniRef50_A6SW06: Sensory box protein	0.0630868369
+UniRef50_A6SW06: Sensory box protein|unclassified	0.0630868369
+UniRef50_UPI0003C14E57: PREDICTED: putative pyridoxal-phosphate dependent protein F13B12.4-like	0.0630826396
+UniRef50_UPI0003C14E57: PREDICTED: putative pyridoxal-phosphate dependent protein F13B12.4-like|unclassified	0.0630826396
+UniRef50_C0N2F0	0.0630733349
+UniRef50_C0N2F0|unclassified	0.0630733349
+UniRef50_B5ZCH4: Sporulation domain protein	0.0630732074
+UniRef50_B5ZCH4: Sporulation domain protein|unclassified	0.0630732074
+UniRef50_D3P9Z9: Nitrate/nitrite extrusion protein	0.0630621161
+UniRef50_D3P9Z9: Nitrate/nitrite extrusion protein|unclassified	0.0630621161
+UniRef50_UPI0003B46221: LysR family transcriptional regulator	0.0630568465
+UniRef50_UPI0003B46221: LysR family transcriptional regulator|unclassified	0.0630568465
+UniRef50_UPI00037E89DC: hypothetical protein	0.0630560771
+UniRef50_UPI00037E89DC: hypothetical protein|unclassified	0.0630560771
+UniRef50_UPI0003735AE5: hypothetical protein	0.0630540612
+UniRef50_UPI0003735AE5: hypothetical protein|unclassified	0.0630540612
+UniRef50_B2BXH2: IlvA (Fragment)	0.0630495778
+UniRef50_B2BXH2: IlvA (Fragment)|unclassified	0.0630495778
+UniRef50_UPI0004761B9F: ribonuclease HII	0.0630403471
+UniRef50_UPI0004761B9F: ribonuclease HII|unclassified	0.0630403471
+UniRef50_UPI00047A760B: hypothetical protein	0.0630398188
+UniRef50_UPI00047A760B: hypothetical protein|unclassified	0.0630398188
+UniRef50_UPI0003B65852: oxidoreductase	0.0630394197
+UniRef50_UPI0003B65852: oxidoreductase|unclassified	0.0630394197
+UniRef50_H5WXJ5: Short-chain alcohol dehydrogenase like protein	0.0630362999
+UniRef50_H5WXJ5: Short-chain alcohol dehydrogenase like protein|unclassified	0.0630362999
+UniRef50_W5X7V0	0.0630349060
+UniRef50_W5X7V0|unclassified	0.0630349060
+UniRef50_C7DEA1	0.0630312115
+UniRef50_C7DEA1|unclassified	0.0630312115
+UniRef50_UPI000373198D: hypothetical protein	0.0630278824
+UniRef50_UPI000373198D: hypothetical protein|unclassified	0.0630278824
+UniRef50_B7VPR5	0.0630232368
+UniRef50_B7VPR5|unclassified	0.0630232368
+UniRef50_Q044I0: Bifunctional protein FolD	0.0630130054
+UniRef50_Q044I0: Bifunctional protein FolD|unclassified	0.0630130054
+UniRef50_K0B1G8: Putative F pilin acetylation protein, TraX family	0.0630102922
+UniRef50_K0B1G8: Putative F pilin acetylation protein, TraX family|unclassified	0.0630102922
+UniRef50_UPI0003DE927E: PREDICTED: LOW QUALITY PROTEIN: leucine--tRNA ligase, mitochondrial-like	0.0630088881
+UniRef50_UPI0003DE927E: PREDICTED: LOW QUALITY PROTEIN: leucine--tRNA ligase, mitochondrial-like|unclassified	0.0630088881
+UniRef50_W4LMW8	0.0630065388
+UniRef50_W4LMW8|unclassified	0.0630065388
+UniRef50_UPI00036A71F6: hypothetical protein	0.0630026069
+UniRef50_UPI00036A71F6: hypothetical protein|unclassified	0.0630026069
+UniRef50_UPI000471DE1F: indole-3-glycerol phosphate synthase	0.0630006206
+UniRef50_UPI000471DE1F: indole-3-glycerol phosphate synthase|unclassified	0.0630006206
+UniRef50_UPI0004774946: hypothetical protein	0.0629932536
+UniRef50_UPI0004774946: hypothetical protein|unclassified	0.0629932536
+UniRef50_UPI0003712D9D: hypothetical protein, partial	0.0629896197
+UniRef50_UPI0003712D9D: hypothetical protein, partial|unclassified	0.0629896197
+UniRef50_X0XAV8: Marine sediment metagenome DNA, contig: S01H1_S26097 (Fragment)	0.0629872547
+UniRef50_X0XAV8: Marine sediment metagenome DNA, contig: S01H1_S26097 (Fragment)|unclassified	0.0629872547
+UniRef50_UPI00037B304C: hypothetical protein	0.0629838081
+UniRef50_UPI00037B304C: hypothetical protein|unclassified	0.0629838081
+UniRef50_B8C215	0.0629795983
+UniRef50_B8C215|unclassified	0.0629795983
+UniRef50_B1ZP50: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase	0.0629764664
+UniRef50_B1ZP50: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase|unclassified	0.0629764664
+UniRef50_UPI00040E5729: ABC transporter	0.0629747508
+UniRef50_UPI00040E5729: ABC transporter|unclassified	0.0629747508
+UniRef50_K0SQT5	0.0629646357
+UniRef50_K0SQT5|unclassified	0.0629646357
+UniRef50_UPI0003C3A6B9: PREDICTED: molybdenum cofactor biosynthesis protein 1-like	0.0629645045
+UniRef50_UPI0003C3A6B9: PREDICTED: molybdenum cofactor biosynthesis protein 1-like|unclassified	0.0629645045
+UniRef50_UPI00016C0EFE: tagatose-bisphosphate aldolase, partial	0.0629608162
+UniRef50_UPI00016C0EFE: tagatose-bisphosphate aldolase, partial|unclassified	0.0629608162
+UniRef50_B0RVT1	0.0629570364
+UniRef50_B0RVT1|unclassified	0.0629570364
+UniRef50_UPI0003720621: hypothetical protein	0.0629544700
+UniRef50_UPI0003720621: hypothetical protein|unclassified	0.0629544700
+UniRef50_UPI00036B0BD2: hypothetical protein	0.0629539101
+UniRef50_UPI00036B0BD2: hypothetical protein|unclassified	0.0629539101
+UniRef50_Q45220: Probable farnesyl diphosphate synthase	0.0629454164
+UniRef50_Q45220: Probable farnesyl diphosphate synthase|unclassified	0.0629454164
+UniRef50_Q3A253: Valine--tRNA ligase	0.0629421111
+UniRef50_Q3A253: Valine--tRNA ligase|unclassified	0.0629421111
+UniRef50_UPI0001CBA52A: PREDICTED: 3-hydroxybutyrate dehydrogenase type 2-like	0.0629344029
+UniRef50_UPI0001CBA52A: PREDICTED: 3-hydroxybutyrate dehydrogenase type 2-like|unclassified	0.0629344029
+UniRef50_UPI00016A6423: hypothetical protein	0.0629297912
+UniRef50_UPI00016A6423: hypothetical protein|unclassified	0.0629297912
+UniRef50_Q8DHZ6: Non-canonical purine NTP pyrophosphatase	0.0629196920
+UniRef50_Q8DHZ6: Non-canonical purine NTP pyrophosphatase|unclassified	0.0629196920
+UniRef50_Q6AHE8: Glutamate-1-semialdehyde 2,1-aminomutase	0.0629151510
+UniRef50_Q6AHE8: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0629151510
+UniRef50_Q1LRP7: Formamidopyrimidine-DNA glycosylase	0.0629052726
+UniRef50_Q1LRP7: Formamidopyrimidine-DNA glycosylase|unclassified	0.0629052726
+UniRef50_UPI0004694B7C: hypothetical protein	0.0629030709
+UniRef50_UPI0004694B7C: hypothetical protein|unclassified	0.0629030709
+UniRef50_Q8TVN1	0.0628959009
+UniRef50_Q8TVN1|unclassified	0.0628959009
+UniRef50_UPI0003B69A56: signal recognition particle, partial	0.0628954352
+UniRef50_UPI0003B69A56: signal recognition particle, partial|unclassified	0.0628954352
+UniRef50_UPI000471077D: hypothetical protein, partial	0.0628931106
+UniRef50_UPI000471077D: hypothetical protein, partial|unclassified	0.0628931106
+UniRef50_T0ZQI8	0.0628914741
+UniRef50_T0ZQI8|unclassified	0.0628914741
+UniRef50_UPI00038FD9C2: Dipeptide-binding protein DppE	0.0628902876
+UniRef50_UPI00038FD9C2: Dipeptide-binding protein DppE|unclassified	0.0628902876
+UniRef50_C5DAT8: UPF0753 protein GWCH70_1610	0.0628899394
+UniRef50_C5DAT8: UPF0753 protein GWCH70_1610|unclassified	0.0628899394
+UniRef50_UPI00038FFA78: Cytochrome c oxidase subunit 2	0.0628818002
+UniRef50_UPI00038FFA78: Cytochrome c oxidase subunit 2|unclassified	0.0628818002
+UniRef50_UPI000363432D: hypothetical protein	0.0628771465
+UniRef50_UPI000363432D: hypothetical protein|unclassified	0.0628771465
+UniRef50_X4ZH19	0.0628661769
+UniRef50_X4ZH19|unclassified	0.0628661769
+UniRef50_UPI00037011E9: NAD-dependent nucleoside-diphosphate sugar epimerase	0.0628655958
+UniRef50_UPI00037011E9: NAD-dependent nucleoside-diphosphate sugar epimerase|unclassified	0.0628655958
+UniRef50_UPI0002FE401B: hypothetical protein	0.0628635687
+UniRef50_UPI0002FE401B: hypothetical protein|unclassified	0.0628635687
+UniRef50_UPI000474CC2A: CDP-glucose 4,6-dehydratase	0.0628609597
+UniRef50_UPI000474CC2A: CDP-glucose 4,6-dehydratase|unclassified	0.0628609597
+UniRef50_Q8EPE6: Formamidopyrimidine-DNA glycosylase	0.0628561531
+UniRef50_Q8EPE6: Formamidopyrimidine-DNA glycosylase|unclassified	0.0628561531
+UniRef50_F8XN01: CagE, TrbE, VirB component of type IV transporter system, conserved region	0.0628554083
+UniRef50_F8XN01: CagE, TrbE, VirB component of type IV transporter system, conserved region|unclassified	0.0628554083
+UniRef50_Q2JMP1: N-acetylmuramic acid 6-phosphate etherase	0.0628521130
+UniRef50_Q2JMP1: N-acetylmuramic acid 6-phosphate etherase|unclassified	0.0628521130
+UniRef50_Q312H3: UDP-3-O-acylglucosamine N-acyltransferase	0.0628503929
+UniRef50_Q312H3: UDP-3-O-acylglucosamine N-acyltransferase|unclassified	0.0628503929
+UniRef50_UPI000262A240: polar amino acid ABC transporter permease	0.0628470461
+UniRef50_UPI000262A240: polar amino acid ABC transporter permease|unclassified	0.0628470461
+UniRef50_Q2SZH6: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	0.0628465709
+UniRef50_Q2SZH6: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.0628465709
+UniRef50_UPI0002C30275: PREDICTED: putative ribosomal RNA methyltransferase 2, partial	0.0628456776
+UniRef50_UPI0002C30275: PREDICTED: putative ribosomal RNA methyltransferase 2, partial|unclassified	0.0628456776
+UniRef50_R7VUZ6	0.0628338351
+UniRef50_R7VUZ6|unclassified	0.0628338351
+UniRef50_UPI00036FDC2B: hypothetical protein	0.0628337504
+UniRef50_UPI00036FDC2B: hypothetical protein|unclassified	0.0628337504
+UniRef50_UPI000479A6AF: ABC transporter substrate-binding protein	0.0628336888
+UniRef50_UPI000479A6AF: ABC transporter substrate-binding protein|unclassified	0.0628336888
+UniRef50_Q6ML45: Formamidopyrimidine-DNA glycosylase	0.0628290096
+UniRef50_Q6ML45: Formamidopyrimidine-DNA glycosylase|unclassified	0.0628290096
+UniRef50_A0PTP8: Aminomethyltransferase	0.0628248121
+UniRef50_A0PTP8: Aminomethyltransferase|unclassified	0.0628248121
+UniRef50_UPI00046A1BE0: hypothetical protein	0.0628238840
+UniRef50_UPI00046A1BE0: hypothetical protein|unclassified	0.0628238840
+UniRef50_UPI00026541CE: PREDICTED: putative peroxiredoxin-like	0.0628221087
+UniRef50_UPI00026541CE: PREDICTED: putative peroxiredoxin-like|unclassified	0.0628221087
+UniRef50_UPI000328ACE2: PREDICTED: protein bassoon-like	0.0628212585
+UniRef50_UPI000328ACE2: PREDICTED: protein bassoon-like|unclassified	0.0628212585
+UniRef50_UPI00035F08CC: hypothetical protein	0.0628211671
+UniRef50_UPI00035F08CC: hypothetical protein|unclassified	0.0628211671
+UniRef50_I0IBX7	0.0628182104
+UniRef50_I0IBX7|unclassified	0.0628182104
+UniRef50_UPI00047794EB: hypothetical protein	0.0628155791
+UniRef50_UPI00047794EB: hypothetical protein|unclassified	0.0628155791
+UniRef50_UPI0003773794: hypothetical protein, partial	0.0628127994
+UniRef50_UPI0003773794: hypothetical protein, partial|unclassified	0.0628127994
+UniRef50_UPI000364EA2D: hypothetical protein	0.0627962506
+UniRef50_UPI000364EA2D: hypothetical protein|unclassified	0.0627962506
+UniRef50_UPI0004710755: ribonucleoside-diphosphate reductase	0.0627919173
+UniRef50_UPI0004710755: ribonucleoside-diphosphate reductase|unclassified	0.0627919173
+UniRef50_Q9H9P8: L-2-hydroxyglutarate dehydrogenase, mitochondrial	0.0627832493
+UniRef50_Q9H9P8: L-2-hydroxyglutarate dehydrogenase, mitochondrial|unclassified	0.0627832493
+UniRef50_UPI0003797E4D: hypothetical protein	0.0627827548
+UniRef50_UPI0003797E4D: hypothetical protein|unclassified	0.0627827548
+UniRef50_R5CM23	0.0627798145
+UniRef50_R5CM23|unclassified	0.0627798145
+UniRef50_UPI0003EABFC2: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial-like	0.0627746586
+UniRef50_UPI0003EABFC2: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial-like|unclassified	0.0627746586
+UniRef50_UPI000375D3CC: hypothetical protein	0.0627703170
+UniRef50_UPI000375D3CC: hypothetical protein|unclassified	0.0627703170
+UniRef50_UPI000376AB34: hypothetical protein	0.0627652451
+UniRef50_UPI000376AB34: hypothetical protein|unclassified	0.0627652451
+UniRef50_A7IGM9	0.0627604901
+UniRef50_A7IGM9|unclassified	0.0627604901
+UniRef50_UPI00037D2FB1: hypothetical protein	0.0627602934
+UniRef50_UPI00037D2FB1: hypothetical protein|unclassified	0.0627602934
+UniRef50_UPI000380A47B: hypothetical protein	0.0627595798
+UniRef50_UPI000380A47B: hypothetical protein|unclassified	0.0627595798
+UniRef50_X1PYD9: Marine sediment metagenome DNA, contig: S06H3_S09541 (Fragment)	0.0627586224
+UniRef50_X1PYD9: Marine sediment metagenome DNA, contig: S06H3_S09541 (Fragment)|unclassified	0.0627586224
+UniRef50_S2TS61: Hydantoin utilization protein A	0.0627458895
+UniRef50_S2TS61: Hydantoin utilization protein A|unclassified	0.0627458895
+UniRef50_UPI00028802BA: hypothetical protein	0.0627450855
+UniRef50_UPI00028802BA: hypothetical protein|unclassified	0.0627450855
+UniRef50_Q03FV0: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.0627397706
+UniRef50_Q03FV0: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.0627397706
+UniRef50_J9P6Z8	0.0627383042
+UniRef50_J9P6Z8|unclassified	0.0627383042
+UniRef50_A1BM62: Latency associated nuclear antigen (LANA)-like protein	0.0627358992
+UniRef50_A1BM62: Latency associated nuclear antigen (LANA)-like protein|unclassified	0.0627358992
+UniRef50_UPI0002E77BF6: hypothetical protein	0.0627329938
+UniRef50_UPI0002E77BF6: hypothetical protein|unclassified	0.0627329938
+UniRef50_I3ZMM6: Endopolygalacturonase	0.0627315671
+UniRef50_I3ZMM6: Endopolygalacturonase|unclassified	0.0627315671
+UniRef50_UPI00037512D8: hypothetical protein	0.0627315136
+UniRef50_UPI00037512D8: hypothetical protein|unclassified	0.0627315136
+UniRef50_UPI000371BFC2: hypothetical protein	0.0627194186
+UniRef50_UPI000371BFC2: hypothetical protein|unclassified	0.0627194186
+UniRef50_E0P243: Putative metallophosphoesterase	0.0627151315
+UniRef50_E0P243: Putative metallophosphoesterase|unclassified	0.0627151315
+UniRef50_UPI0004711BA3: hypothetical protein	0.0627148917
+UniRef50_UPI0004711BA3: hypothetical protein|unclassified	0.0627148917
+UniRef50_UPI000376A50F: hypothetical protein, partial	0.0627133901
+UniRef50_UPI000376A50F: hypothetical protein, partial|unclassified	0.0627133901
+UniRef50_X2GJL7: Membrane protein	0.0627095993
+UniRef50_X2GJL7: Membrane protein|unclassified	0.0627095993
+UniRef50_V8ZRB6: PF01594 domain protein	0.0627054756
+UniRef50_V8ZRB6: PF01594 domain protein|unclassified	0.0627054756
+UniRef50_UPI0004645778: hypothetical protein	0.0627048963
+UniRef50_UPI0004645778: hypothetical protein|unclassified	0.0627048963
+UniRef50_UPI0004672D56: histidine kinase	0.0626963405
+UniRef50_UPI0004672D56: histidine kinase|unclassified	0.0626963405
+UniRef50_P46283: Sedoheptulose-1,7-bisphosphatase, chloroplastic	0.0626941536
+UniRef50_P46283: Sedoheptulose-1,7-bisphosphatase, chloroplastic|unclassified	0.0626941536
+UniRef50_UPI000472C807: hypothetical protein, partial	0.0626941439
+UniRef50_UPI000472C807: hypothetical protein, partial|unclassified	0.0626941439
+UniRef50_K9XLZ0: Metallo-beta-lactamase domain containing 2	0.0626866832
+UniRef50_K9XLZ0: Metallo-beta-lactamase domain containing 2|unclassified	0.0626866832
+UniRef50_M1AI96	0.0626804920
+UniRef50_M1AI96|unclassified	0.0626804920
+UniRef50_R5KYF6	0.0626783939
+UniRef50_R5KYF6|unclassified	0.0626783939
+UniRef50_I4EKP2	0.0626765383
+UniRef50_I4EKP2|unclassified	0.0626765383
+UniRef50_P92558: NADH-ubiquinone oxidoreductase chain 1	0.0626664899
+UniRef50_P92558: NADH-ubiquinone oxidoreductase chain 1|unclassified	0.0626664899
+UniRef50_Q9JPD1: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE	0.0626659988
+UniRef50_Q9JPD1: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE|unclassified	0.0626659988
+UniRef50_UPI000316A923: hypothetical protein	0.0626643105
+UniRef50_UPI000316A923: hypothetical protein|unclassified	0.0626643105
+UniRef50_Q83GU1	0.0626562617
+UniRef50_Q83GU1|unclassified	0.0626562617
+UniRef50_UPI0002E2FE4F: hypothetical protein	0.0626559171
+UniRef50_UPI0002E2FE4F: hypothetical protein|unclassified	0.0626559171
+UniRef50_P47734: S-(hydroxymethyl)glutathione dehydrogenase	0.0626557519
+UniRef50_P47734: S-(hydroxymethyl)glutathione dehydrogenase|unclassified	0.0626557519
+UniRef50_F2J469	0.0626512210
+UniRef50_F2J469|unclassified	0.0626512210
+UniRef50_A7Z7B8: 2-isopropylmalate synthase	0.0626504722
+UniRef50_A7Z7B8: 2-isopropylmalate synthase|unclassified	0.0626504722
+UniRef50_UPI00046F92F6: multidrug transporter	0.0626481698
+UniRef50_UPI00046F92F6: multidrug transporter|unclassified	0.0626481698
+UniRef50_A0A023NPR9: Nucleoside-diphosphate sugar epimerase	0.0626456216
+UniRef50_A0A023NPR9: Nucleoside-diphosphate sugar epimerase|unclassified	0.0626456216
+UniRef50_UPI000364AA5B: hypothetical protein	0.0626451314
+UniRef50_UPI000364AA5B: hypothetical protein|unclassified	0.0626451314
+UniRef50_UPI00037AEAC8: MULTISPECIES: hypothetical protein	0.0626448553
+UniRef50_UPI00037AEAC8: MULTISPECIES: hypothetical protein|unclassified	0.0626448553
+UniRef50_F4PKU5: GTP-binding protein	0.0626445393
+UniRef50_F4PKU5: GTP-binding protein|unclassified	0.0626445393
+UniRef50_UPI00037DD402: hypothetical protein	0.0626439447
+UniRef50_UPI00037DD402: hypothetical protein|unclassified	0.0626439447
+UniRef50_F8KX33	0.0626431826
+UniRef50_F8KX33|unclassified	0.0626431826
+UniRef50_W5YUQ2: ATPase	0.0626402936
+UniRef50_W5YUQ2: ATPase|unclassified	0.0626402936
+UniRef50_UPI0002490392: gramicidin S synthase	0.0626400448
+UniRef50_UPI0002490392: gramicidin S synthase|unclassified	0.0626400448
+UniRef50_UPI000369716F: hypothetical protein	0.0626373643
+UniRef50_UPI000369716F: hypothetical protein|unclassified	0.0626373643
+UniRef50_UPI000378C27D: hypothetical protein	0.0626366316
+UniRef50_UPI000378C27D: hypothetical protein|unclassified	0.0626366316
+UniRef50_UPI0004761B4C: secretion system protein	0.0626366215
+UniRef50_UPI0004761B4C: secretion system protein|unclassified	0.0626366215
+UniRef50_UPI0003A14A99: MULTISPECIES: tRNA uridine 5-carboxymethylaminomethyl modification protein	0.0626325203
+UniRef50_UPI0003A14A99: MULTISPECIES: tRNA uridine 5-carboxymethylaminomethyl modification protein|unclassified	0.0626325203
+UniRef50_UPI000472B33B: ABC transporter	0.0626311911
+UniRef50_UPI000472B33B: ABC transporter|unclassified	0.0626311911
+UniRef50_UPI0002D42497: hypothetical protein	0.0626297737
+UniRef50_UPI0002D42497: hypothetical protein|unclassified	0.0626297737
+UniRef50_UPI0003FF1AF0: hypothetical protein	0.0626226030
+UniRef50_UPI0003FF1AF0: hypothetical protein|unclassified	0.0626226030
+UniRef50_UPI00037004BF: hypothetical protein	0.0626223381
+UniRef50_UPI00037004BF: hypothetical protein|unclassified	0.0626223381
+UniRef50_U7P904	0.0626083317
+UniRef50_U7P904|unclassified	0.0626083317
+UniRef50_F7YG57	0.0626079236
+UniRef50_F7YG57|unclassified	0.0626079236
+UniRef50_UPI00047C0FBA: hypothetical protein	0.0625825523
+UniRef50_UPI00047C0FBA: hypothetical protein|unclassified	0.0625825523
+UniRef50_UPI00039ABF7C: malonyl CoA-ACP transacylase	0.0625763287
+UniRef50_UPI00039ABF7C: malonyl CoA-ACP transacylase|unclassified	0.0625763287
+UniRef50_B7GGU4	0.0625754312
+UniRef50_B7GGU4|unclassified	0.0625754312
+UniRef50_UPI00036D6814: cell wall hydrolase	0.0625750151
+UniRef50_UPI00036D6814: cell wall hydrolase|unclassified	0.0625750151
+UniRef50_R6PTU5	0.0625739618
+UniRef50_R6PTU5|unclassified	0.0625739618
+UniRef50_UPI00037ACAA7: hypothetical protein	0.0625735259
+UniRef50_UPI00037ACAA7: hypothetical protein|unclassified	0.0625735259
+UniRef50_C1DLN8: HAMP domain protein	0.0625681267
+UniRef50_C1DLN8: HAMP domain protein|unclassified	0.0625681267
+UniRef50_UPI0002D325CB: hypothetical protein	0.0625645035
+UniRef50_UPI0002D325CB: hypothetical protein|unclassified	0.0625645035
+UniRef50_UPI00035DE7E6: hypothetical protein	0.0625624069
+UniRef50_UPI00035DE7E6: hypothetical protein|unclassified	0.0625624069
+UniRef50_UPI0003B3EB67: aliphatic sulfonate ABC transporter substrate-binding protein	0.0625615744
+UniRef50_UPI0003B3EB67: aliphatic sulfonate ABC transporter substrate-binding protein|unclassified	0.0625615744
+UniRef50_UPI000467D8F5: hypothetical protein, partial	0.0625608163
+UniRef50_UPI000467D8F5: hypothetical protein, partial|unclassified	0.0625608163
+UniRef50_UPI000456060D: hypothetical protein PFL1_06357	0.0625569556
+UniRef50_UPI000456060D: hypothetical protein PFL1_06357|unclassified	0.0625569556
+UniRef50_UPI0003C1A367: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit A, chloroplastic/mitochondrial-like	0.0625558115
+UniRef50_UPI0003C1A367: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit A, chloroplastic/mitochondrial-like|unclassified	0.0625558115
+UniRef50_V2XSW0	0.0625545824
+UniRef50_V2XSW0|unclassified	0.0625545824
+UniRef50_D5SR68	0.0625487891
+UniRef50_D5SR68|unclassified	0.0625487891
+UniRef50_B4KWA7: GI13286	0.0625487693
+UniRef50_B4KWA7: GI13286|unclassified	0.0625487693
+UniRef50_UPI00046D7BAD: siderophore-interacting protein	0.0625418365
+UniRef50_UPI00046D7BAD: siderophore-interacting protein|unclassified	0.0625418365
+UniRef50_UPI00047BA94E: hypothetical protein	0.0625398977
+UniRef50_UPI00047BA94E: hypothetical protein|unclassified	0.0625398977
+UniRef50_UPI000362019E: hypothetical protein	0.0625379510
+UniRef50_UPI000362019E: hypothetical protein|unclassified	0.0625379510
+UniRef50_UPI00037B4E7E: hypothetical protein	0.0625278513
+UniRef50_UPI00037B4E7E: hypothetical protein|unclassified	0.0625278513
+UniRef50_B8I942: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha	0.0625263828
+UniRef50_B8I942: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|unclassified	0.0625263828
+UniRef50_D7CQT3	0.0625199124
+UniRef50_D7CQT3|unclassified	0.0625199124
+UniRef50_UPI000371C1F0: hypothetical protein	0.0625194832
+UniRef50_UPI000371C1F0: hypothetical protein|unclassified	0.0625194832
+UniRef50_UPI000287D26F: polyphosphate kinase	0.0625186219
+UniRef50_UPI000287D26F: polyphosphate kinase|unclassified	0.0625186219
+UniRef50_UPI000463915E: hypothetical protein	0.0625156634
+UniRef50_UPI000463915E: hypothetical protein|unclassified	0.0625156634
+UniRef50_UPI0003704BC7: hypothetical protein, partial	0.0625148742
+UniRef50_UPI0003704BC7: hypothetical protein, partial|unclassified	0.0625148742
+UniRef50_Q2S5P8: Undecaprenyl-diphosphatase	0.0625147223
+UniRef50_Q2S5P8: Undecaprenyl-diphosphatase|unclassified	0.0625147223
+UniRef50_UPI000380AA86: hypothetical protein	0.0625110232
+UniRef50_UPI000380AA86: hypothetical protein|unclassified	0.0625110232
+UniRef50_Q5FTX8: DNA-directed RNA polymerase subunit beta'	0.0625062541
+UniRef50_Q5FTX8: DNA-directed RNA polymerase subunit beta'|unclassified	0.0625062541
+UniRef50_Q1MYS4: 3-hydroxydecanoyl-ACP dehydratase	0.0625045506
+UniRef50_Q1MYS4: 3-hydroxydecanoyl-ACP dehydratase|unclassified	0.0625045506
+UniRef50_B8EAP0: NLP/P60 protein	0.0624969575
+UniRef50_B8EAP0: NLP/P60 protein|unclassified	0.0624969575
+UniRef50_E9AEM9: Proteophosphoglycan 5	0.0624945959
+UniRef50_E9AEM9: Proteophosphoglycan 5|unclassified	0.0624945959
+UniRef50_UPI000401A1E5: hypothetical protein	0.0624913102
+UniRef50_UPI000401A1E5: hypothetical protein|unclassified	0.0624913102
+UniRef50_UPI00036C59C9: hypothetical protein	0.0624871065
+UniRef50_UPI00036C59C9: hypothetical protein|unclassified	0.0624871065
+UniRef50_Q74HC8: N-acetylmuramic acid 6-phosphate etherase	0.0624855217
+UniRef50_Q74HC8: N-acetylmuramic acid 6-phosphate etherase|unclassified	0.0624855217
+UniRef50_UPI00038FFD2C: Mannonate dehydratase 1	0.0624804228
+UniRef50_UPI00038FFD2C: Mannonate dehydratase 1|unclassified	0.0624804228
+UniRef50_UPI0003B72189: hypothetical protein	0.0624777719
+UniRef50_UPI0003B72189: hypothetical protein|unclassified	0.0624777719
+UniRef50_T0C9S8	0.0624772814
+UniRef50_T0C9S8|unclassified	0.0624772814
+UniRef50_UPI0003B78946: exonuclease SbcD	0.0624772707
+UniRef50_UPI0003B78946: exonuclease SbcD|unclassified	0.0624772707
+UniRef50_P50843: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase	0.0624754942
+UniRef50_P50843: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase|unclassified	0.0624754942
+UniRef50_T2RE96: UvrB/uvrC motif family protein	0.0624683731
+UniRef50_T2RE96: UvrB/uvrC motif family protein|unclassified	0.0624683731
+UniRef50_O67024: Peroxiredoxin	0.0624607689
+UniRef50_O67024: Peroxiredoxin|unclassified	0.0624607689
+UniRef50_X1BYN2: Marine sediment metagenome DNA, contig: S01H4_S12957 (Fragment)	0.0624602123
+UniRef50_X1BYN2: Marine sediment metagenome DNA, contig: S01H4_S12957 (Fragment)|unclassified	0.0624602123
+UniRef50_W9CAE9	0.0624596575
+UniRef50_W9CAE9|unclassified	0.0624596575
+UniRef50_UPI0003C1838A: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial-like	0.0624586641
+UniRef50_UPI0003C1838A: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial-like|unclassified	0.0624586641
+UniRef50_UPI000479EE06: hypothetical protein	0.0624507498
+UniRef50_UPI000479EE06: hypothetical protein|unclassified	0.0624507498
+UniRef50_UPI0003C7DEB4: ferredoxin	0.0624497515
+UniRef50_UPI0003C7DEB4: ferredoxin|unclassified	0.0624497515
+UniRef50_UPI0003B61FEB: amino acid transporter	0.0624472320
+UniRef50_UPI0003B61FEB: amino acid transporter|unclassified	0.0624472320
+UniRef50_Q3JWW0	0.0624453222
+UniRef50_Q3JWW0|unclassified	0.0624453222
+UniRef50_C7PA11	0.0624429195
+UniRef50_C7PA11|unclassified	0.0624429195
+UniRef50_UPI0003B46CBA: O-acetylhomoserine aminocarboxypropyltransferase	0.0624385666
+UniRef50_UPI0003B46CBA: O-acetylhomoserine aminocarboxypropyltransferase|unclassified	0.0624385666
+UniRef50_J9HA29: Beta-lactamase domain-containing protein	0.0624377235
+UniRef50_J9HA29: Beta-lactamase domain-containing protein|unclassified	0.0624377235
+UniRef50_Q9KEL8: Arginine--tRNA ligase 2	0.0624365726
+UniRef50_Q9KEL8: Arginine--tRNA ligase 2|unclassified	0.0624365726
+UniRef50_UPI0003FD2D5A: hypothetical protein	0.0624316150
+UniRef50_UPI0003FD2D5A: hypothetical protein|unclassified	0.0624316150
+UniRef50_UPI000373469C: hypothetical protein	0.0624304239
+UniRef50_UPI000373469C: hypothetical protein|unclassified	0.0624304239
+UniRef50_UPI000378F329: hypothetical protein	0.0624299458
+UniRef50_UPI000378F329: hypothetical protein|unclassified	0.0624299458
+UniRef50_P9WPZ4: Probable N-succinyldiaminopimelate aminotransferase DapC	0.0624296033
+UniRef50_P9WPZ4: Probable N-succinyldiaminopimelate aminotransferase DapC|unclassified	0.0624296033
+UniRef50_Q6AK08: Glutamate 5-kinase	0.0624276216
+UniRef50_Q6AK08: Glutamate 5-kinase|unclassified	0.0624276216
+UniRef50_F3AYZ4	0.0624267456
+UniRef50_F3AYZ4|unclassified	0.0624267456
+UniRef50_UPI000363F22C: hypothetical protein	0.0624258220
+UniRef50_UPI000363F22C: hypothetical protein|unclassified	0.0624258220
+UniRef50_Q8FPX9	0.0624203787
+UniRef50_Q8FPX9|unclassified	0.0624203787
+UniRef50_UPI000273E22E: PREDICTED: LOW QUALITY PROTEIN: putative ATP-dependent Clp protease proteolytic subunit, mitochondrial, partial	0.0624133584
+UniRef50_UPI000273E22E: PREDICTED: LOW QUALITY PROTEIN: putative ATP-dependent Clp protease proteolytic subunit, mitochondrial, partial|unclassified	0.0624133584
+UniRef50_A0A031V330	0.0624109940
+UniRef50_A0A031V330|unclassified	0.0624109940
+UniRef50_T0T5U0: Transcription accessory protein (S1RNA-binding domain)	0.0624102681
+UniRef50_T0T5U0: Transcription accessory protein (S1RNA-binding domain)|unclassified	0.0624102681
+UniRef50_UPI000363B961: hypothetical protein	0.0624058210
+UniRef50_UPI000363B961: hypothetical protein|unclassified	0.0624058210
+UniRef50_C6XPP0: Pyridoxal-5'-phosphate-dependent protein beta subunit	0.0624053978
+UniRef50_C6XPP0: Pyridoxal-5'-phosphate-dependent protein beta subunit|unclassified	0.0624053978
+UniRef50_A9N4I9	0.0623997102
+UniRef50_A9N4I9|unclassified	0.0623997102
+UniRef50_UPI0002880AE8: bacteriocin ABC transporter ATPase	0.0623899500
+UniRef50_UPI0002880AE8: bacteriocin ABC transporter ATPase|unclassified	0.0623899500
+UniRef50_Q5GS47: Formamidopyrimidine-DNA glycosylase	0.0623884135
+UniRef50_Q5GS47: Formamidopyrimidine-DNA glycosylase|unclassified	0.0623884135
+UniRef50_UPI000472D2E5: cytochrome P450	0.0623870585
+UniRef50_UPI000472D2E5: cytochrome P450|unclassified	0.0623870585
+UniRef50_W7BWZ9	0.0623786039
+UniRef50_W7BWZ9|unclassified	0.0623786039
+UniRef50_K0TJQ0	0.0623779706
+UniRef50_K0TJQ0|unclassified	0.0623779706
+UniRef50_UPI00036E554C: hypothetical protein	0.0623703917
+UniRef50_UPI00036E554C: hypothetical protein|unclassified	0.0623703917
+UniRef50_Q6F1M4: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO 1	0.0623692953
+UniRef50_Q6F1M4: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO 1|unclassified	0.0623692953
+UniRef50_UPI000348652B: molybdenum transporter	0.0623641890
+UniRef50_UPI000348652B: molybdenum transporter|unclassified	0.0623641890
+UniRef50_UPI000381CB1D: hypothetical protein	0.0623617336
+UniRef50_UPI000381CB1D: hypothetical protein|unclassified	0.0623617336
+UniRef50_C1DP22: Phage late control D protein	0.0623593473
+UniRef50_C1DP22: Phage late control D protein|unclassified	0.0623593473
+UniRef50_W8GYZ5	0.0623582615
+UniRef50_W8GYZ5|unclassified	0.0623582615
+UniRef50_V4QTX5	0.0623565226
+UniRef50_V4QTX5|unclassified	0.0623565226
+UniRef50_P11961: Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex	0.0623559208
+UniRef50_P11961: Dihydrolipoyllysine-residue acetyltransferase component of pyruvate dehydrogenase complex|unclassified	0.0623559208
+UniRef50_B5WSG6: N-acetylmuramoyl-L-alanine amidase (Fragment)	0.0623489623
+UniRef50_B5WSG6: N-acetylmuramoyl-L-alanine amidase (Fragment)|unclassified	0.0623489623
+UniRef50_J9VME5: Response regulator receiver protein	0.0623477986
+UniRef50_J9VME5: Response regulator receiver protein|unclassified	0.0623477986
+UniRef50_L0EC08: TIGR00370 family protein	0.0623455710
+UniRef50_L0EC08: TIGR00370 family protein|unclassified	0.0623455710
+UniRef50_UPI00037FF72A: MULTISPECIES: hypothetical protein	0.0623433360
+UniRef50_UPI00037FF72A: MULTISPECIES: hypothetical protein|unclassified	0.0623433360
+UniRef50_UPI0004785660: alanine racemase	0.0623415263
+UniRef50_UPI0004785660: alanine racemase|unclassified	0.0623415263
+UniRef50_Q9L6I1: Histidinol dehydrogenase (Fragment)	0.0623400395
+UniRef50_Q9L6I1: Histidinol dehydrogenase (Fragment)|unclassified	0.0623400395
+UniRef50_UPI00037EA92D: MULTISPECIES: hypothetical protein	0.0623400218
+UniRef50_UPI00037EA92D: MULTISPECIES: hypothetical protein|unclassified	0.0623400218
+UniRef50_UPI0001BF620F: hypothetical protein SMAC_10698, partial	0.0623376164
+UniRef50_UPI0001BF620F: hypothetical protein SMAC_10698, partial|unclassified	0.0623376164
+UniRef50_UPI0004709C04: hypothetical protein	0.0623375698
+UniRef50_UPI0004709C04: hypothetical protein|unclassified	0.0623375698
+UniRef50_UPI000373B950: hypothetical protein	0.0623268400
+UniRef50_UPI000373B950: hypothetical protein|unclassified	0.0623268400
+UniRef50_Z8QKZ3	0.0623263675
+UniRef50_Z8QKZ3|unclassified	0.0623263675
+UniRef50_UPI0004708580: hypothetical protein	0.0623260563
+UniRef50_UPI0004708580: hypothetical protein|unclassified	0.0623260563
+UniRef50_UPI00047D5E5E: hypothetical protein	0.0623195902
+UniRef50_UPI00047D5E5E: hypothetical protein|unclassified	0.0623195902
+UniRef50_UPI0003796361: hypothetical protein	0.0623189912
+UniRef50_UPI0003796361: hypothetical protein|unclassified	0.0623189912
+UniRef50_UPI00047E237F: peptide ABC transporter substrate-binding protein	0.0623101195
+UniRef50_UPI00047E237F: peptide ABC transporter substrate-binding protein|unclassified	0.0623101195
+UniRef50_UPI0003AF89CE: PREDICTED: short-chain specific acyl-CoA dehydrogenase, mitochondrial, partial	0.0623054156
+UniRef50_UPI0003AF89CE: PREDICTED: short-chain specific acyl-CoA dehydrogenase, mitochondrial, partial|unclassified	0.0623054156
+UniRef50_A9AZP9: Bifunctional protein FolD	0.0622934931
+UniRef50_A9AZP9: Bifunctional protein FolD|unclassified	0.0622934931
+UniRef50_UPI0003B4D9C2: acetyl-CoA carboxylase	0.0622884589
+UniRef50_UPI0003B4D9C2: acetyl-CoA carboxylase|unclassified	0.0622884589
+UniRef50_UPI0003F6970B: hypothetical protein	0.0622883398
+UniRef50_UPI0003F6970B: hypothetical protein|unclassified	0.0622883398
+UniRef50_UPI000409FFD9: maleylacetoacetate isomerase	0.0622813042
+UniRef50_UPI000409FFD9: maleylacetoacetate isomerase|unclassified	0.0622813042
+UniRef50_D2U1M0: Phage terminase large subunit	0.0622740994
+UniRef50_D2U1M0: Phage terminase large subunit|unclassified	0.0622740994
+UniRef50_Q1R0P6	0.0622728704
+UniRef50_Q1R0P6|unclassified	0.0622728704
+UniRef50_V5XV11	0.0622681564
+UniRef50_V5XV11|unclassified	0.0622681564
+UniRef50_UPI00046699F3: transcriptional regulator	0.0622661660
+UniRef50_UPI00046699F3: transcriptional regulator|unclassified	0.0622661660
+UniRef50_Q7VK98: Methionyl-tRNA formyltransferase	0.0622650934
+UniRef50_Q7VK98: Methionyl-tRNA formyltransferase|unclassified	0.0622650934
+UniRef50_UPI0003B68C9C: Crp/Fnr family transcriptional regulator	0.0622587530
+UniRef50_UPI0003B68C9C: Crp/Fnr family transcriptional regulator|unclassified	0.0622587530
+UniRef50_UPI0003825EF9: hypothetical protein	0.0622538028
+UniRef50_UPI0003825EF9: hypothetical protein|unclassified	0.0622538028
+UniRef50_UPI00035FA3D7: hypothetical protein	0.0622494343
+UniRef50_UPI00035FA3D7: hypothetical protein|unclassified	0.0622494343
+UniRef50_UPI000382656B: hypothetical protein, partial	0.0622472589
+UniRef50_UPI000382656B: hypothetical protein, partial|unclassified	0.0622472589
+UniRef50_UPI0002F33BF1: hypothetical protein	0.0622454777
+UniRef50_UPI0002F33BF1: hypothetical protein|unclassified	0.0622454777
+UniRef50_UPI000407FAF9: hypothetical protein	0.0622326042
+UniRef50_UPI000407FAF9: hypothetical protein|unclassified	0.0622326042
+UniRef50_G5ZW73	0.0622266794
+UniRef50_G5ZW73|unclassified	0.0622266794
+UniRef50_R2R7N6: Integral membrane protein	0.0622256151
+UniRef50_R2R7N6: Integral membrane protein|unclassified	0.0622256151
+UniRef50_G8PEN8	0.0622240427
+UniRef50_G8PEN8|unclassified	0.0622240427
+UniRef50_H9UQ64: 3E1 protein	0.0622217064
+UniRef50_H9UQ64: 3E1 protein|unclassified	0.0622217064
+UniRef50_UPI000381CF1F: hypothetical protein	0.0622191077
+UniRef50_UPI000381CF1F: hypothetical protein|unclassified	0.0622191077
+UniRef50_UPI00037EA16E: hypothetical protein	0.0622092350
+UniRef50_UPI00037EA16E: hypothetical protein|unclassified	0.0622092350
+UniRef50_R4Y0S2: Pyridoxal phosphate-dependent deaminase,putative	0.0622087010
+UniRef50_R4Y0S2: Pyridoxal phosphate-dependent deaminase,putative|unclassified	0.0622087010
+UniRef50_K2HVM5: Chromosome partitioning protein ParA	0.0622057300
+UniRef50_K2HVM5: Chromosome partitioning protein ParA|unclassified	0.0622057300
+UniRef50_A5WCU0: D-alanine--D-alanine ligase	0.0622048706
+UniRef50_A5WCU0: D-alanine--D-alanine ligase|unclassified	0.0622048706
+UniRef50_UPI0003800D8C: hypothetical protein	0.0622048294
+UniRef50_UPI0003800D8C: hypothetical protein|unclassified	0.0622048294
+UniRef50_UPI000469A2E0: hypothetical protein	0.0622025145
+UniRef50_UPI000469A2E0: hypothetical protein|unclassified	0.0622025145
+UniRef50_UPI00036CA6EE: hypothetical protein	0.0622000490
+UniRef50_UPI00036CA6EE: hypothetical protein|unclassified	0.0622000490
+UniRef50_D6CUH0	0.0621996901
+UniRef50_D6CUH0|unclassified	0.0621996901
+UniRef50_D3EHS5: Copper amine oxidase domain protein	0.0621986813
+UniRef50_D3EHS5: Copper amine oxidase domain protein|unclassified	0.0621986813
+UniRef50_UPI000373BF69: hypothetical protein	0.0621964459
+UniRef50_UPI000373BF69: hypothetical protein|unclassified	0.0621964459
+UniRef50_B3PDL9: Type IV pilus biogenesis protein PilF	0.0621960454
+UniRef50_B3PDL9: Type IV pilus biogenesis protein PilF|unclassified	0.0621960454
+UniRef50_UPI00046FD0BC: hypothetical protein, partial	0.0621955437
+UniRef50_UPI00046FD0BC: hypothetical protein, partial|unclassified	0.0621955437
+UniRef50_M5EBN7: Genomic scaffold, msy_sf_11	0.0621938997
+UniRef50_M5EBN7: Genomic scaffold, msy_sf_11|unclassified	0.0621938997
+UniRef50_Q50767: Cell wall protein A (Fragment)	0.0621928442
+UniRef50_Q50767: Cell wall protein A (Fragment)|unclassified	0.0621928442
+UniRef50_D6E417: Soluble lytic murein transglycosylase and related regulatory proteins (Some contain LysM/invasin domains)	0.0621849558
+UniRef50_D6E417: Soluble lytic murein transglycosylase and related regulatory proteins (Some contain LysM/invasin domains)|unclassified	0.0621849558
+UniRef50_UPI0001FFE2AC: magnesium-transporting ATPase, partial	0.0621777619
+UniRef50_UPI0001FFE2AC: magnesium-transporting ATPase, partial|unclassified	0.0621777619
+UniRef50_N9FYD3	0.0621713910
+UniRef50_N9FYD3|unclassified	0.0621713910
+UniRef50_V9E2J6	0.0621702666
+UniRef50_V9E2J6|unclassified	0.0621702666
+UniRef50_M4UH62: Toluene tolerance protein	0.0621629555
+UniRef50_M4UH62: Toluene tolerance protein|unclassified	0.0621629555
+UniRef50_Q3AET1: Octanoyltransferase LipM	0.0621621676
+UniRef50_Q3AET1: Octanoyltransferase LipM|unclassified	0.0621621676
+UniRef50_Q6G4Z4: Exopolyphosphatase	0.0621518444
+UniRef50_Q6G4Z4: Exopolyphosphatase|unclassified	0.0621518444
+UniRef50_E2ZY45	0.0621510155
+UniRef50_E2ZY45|unclassified	0.0621510155
+UniRef50_Q8TZ24: Shikimate dehydrogenase	0.0621472751
+UniRef50_Q8TZ24: Shikimate dehydrogenase|unclassified	0.0621472751
+UniRef50_UPI00047EF189: cysteine desulfhydrase	0.0621465199
+UniRef50_UPI00047EF189: cysteine desulfhydrase|unclassified	0.0621465199
+UniRef50_G1C7I1: Nucleoid occlusion protein	0.0621453567
+UniRef50_G1C7I1: Nucleoid occlusion protein|unclassified	0.0621453567
+UniRef50_H5U170	0.0621405848
+UniRef50_H5U170|unclassified	0.0621405848
+UniRef50_W0NEL5	0.0621392199
+UniRef50_W0NEL5|unclassified	0.0621392199
+UniRef50_Q1IJ73	0.0621371655
+UniRef50_Q1IJ73|unclassified	0.0621371655
+UniRef50_P18669: Phosphoglycerate mutase 1	0.0621307049
+UniRef50_P18669: Phosphoglycerate mutase 1|unclassified	0.0621307049
+UniRef50_UPI000310E91C: hypothetical protein	0.0621277646
+UniRef50_UPI000310E91C: hypothetical protein|unclassified	0.0621277646
+UniRef50_A5EXK6: Formamidopyrimidine-DNA glycosylase	0.0621270095
+UniRef50_A5EXK6: Formamidopyrimidine-DNA glycosylase|unclassified	0.0621270095
+UniRef50_UPI00047E137A: hypothetical protein	0.0621247165
+UniRef50_UPI00047E137A: hypothetical protein|unclassified	0.0621247165
+UniRef50_U2LPM4: Iron siderophore sensor protein	0.0621245352
+UniRef50_U2LPM4: Iron siderophore sensor protein|unclassified	0.0621245352
+UniRef50_W6S7U2: Soluble lytic murein transglycosylase-like protein	0.0621233970
+UniRef50_W6S7U2: Soluble lytic murein transglycosylase-like protein|unclassified	0.0621233970
+UniRef50_Q2JTR0: tRNA (guanine-N(1)-)-methyltransferase	0.0621219161
+UniRef50_Q2JTR0: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0621219161
+UniRef50_UPI0003C17536: PREDICTED: brain-specific angiogenesis inhibitor 1-like	0.0621215592
+UniRef50_UPI0003C17536: PREDICTED: brain-specific angiogenesis inhibitor 1-like|unclassified	0.0621215592
+UniRef50_UPI000362525E: MULTISPECIES: hypothetical protein	0.0621209475
+UniRef50_UPI000362525E: MULTISPECIES: hypothetical protein|unclassified	0.0621209475
+UniRef50_UPI0003C13411	0.0621196524
+UniRef50_UPI0003C13411|unclassified	0.0621196524
+UniRef50_UPI000364CB09: hypothetical protein	0.0621186122
+UniRef50_UPI000364CB09: hypothetical protein|unclassified	0.0621186122
+UniRef50_M7ZKE7	0.0621186117
+UniRef50_M7ZKE7|unclassified	0.0621186117
+UniRef50_A5IXT6: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO	0.0621134868
+UniRef50_A5IXT6: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|unclassified	0.0621134868
+UniRef50_H8FXU0: Transposase	0.0621117126
+UniRef50_H8FXU0: Transposase|unclassified	0.0621117126
+UniRef50_UPI00037625B0: MULTISPECIES: hypothetical protein	0.0621088084
+UniRef50_UPI00037625B0: MULTISPECIES: hypothetical protein|unclassified	0.0621088084
+UniRef50_Q2SQX2: Methionyl-tRNA formyltransferase	0.0621057259
+UniRef50_Q2SQX2: Methionyl-tRNA formyltransferase|unclassified	0.0621057259
+UniRef50_UPI000465E963: hypothetical protein	0.0621046457
+UniRef50_UPI000465E963: hypothetical protein|unclassified	0.0621046457
+UniRef50_E5W3Q5	0.0621023128
+UniRef50_E5W3Q5|unclassified	0.0621023128
+UniRef50_Q16J99: AAEL013391-PA	0.0621007493
+UniRef50_Q16J99: AAEL013391-PA|unclassified	0.0621007493
+UniRef50_R6H854	0.0620970994
+UniRef50_R6H854|unclassified	0.0620970994
+UniRef50_Q491V7: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE	0.0620969687
+UniRef50_Q491V7: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE|unclassified	0.0620969687
+UniRef50_R5HVH0: Ethanolamine utilization protein EutJ family protein	0.0620955501
+UniRef50_R5HVH0: Ethanolamine utilization protein EutJ family protein|unclassified	0.0620955501
+UniRef50_UPI000361E09D: hypothetical protein	0.0620943366
+UniRef50_UPI000361E09D: hypothetical protein|unclassified	0.0620943366
+UniRef50_UPI00047C4063: hypothetical protein	0.0620943366
+UniRef50_UPI00047C4063: hypothetical protein|unclassified	0.0620943366
+UniRef50_U1LZ26: Transcriptional regulator	0.0620935874
+UniRef50_U1LZ26: Transcriptional regulator|unclassified	0.0620935874
+UniRef50_A5USR7: DNA-directed RNA polymerase subunit beta	0.0620927155
+UniRef50_A5USR7: DNA-directed RNA polymerase subunit beta|unclassified	0.0620927155
+UniRef50_UPI00035CF7ED: hypothetical protein	0.0620896677
+UniRef50_UPI00035CF7ED: hypothetical protein|unclassified	0.0620896677
+UniRef50_Q12R52: Hemin import ATP-binding protein HmuV	0.0620749257
+UniRef50_Q12R52: Hemin import ATP-binding protein HmuV|unclassified	0.0620749257
+UniRef50_I6ZU37: DNA repair protein RadC	0.0620695998
+UniRef50_I6ZU37: DNA repair protein RadC|unclassified	0.0620695998
+UniRef50_R7T187: Thioredoxin-like protein	0.0620639855
+UniRef50_R7T187: Thioredoxin-like protein|unclassified	0.0620639855
+UniRef50_UPI000288333F: TetR family transcriptional regulator	0.0620592794
+UniRef50_UPI000288333F: TetR family transcriptional regulator|unclassified	0.0620592794
+UniRef50_E6RN25	0.0620558924
+UniRef50_E6RN25|unclassified	0.0620558924
+UniRef50_UPI0003B383CF: SAM-dependent methyltransferase	0.0620555507
+UniRef50_UPI0003B383CF: SAM-dependent methyltransferase|unclassified	0.0620555507
+UniRef50_UPI00016C3F49: ABC transporter, ATP-binding protein	0.0620515519
+UniRef50_UPI00016C3F49: ABC transporter, ATP-binding protein|unclassified	0.0620515519
+UniRef50_P10798: Ribulose bisphosphate carboxylase small chain 3B, chloroplastic	0.0620488958
+UniRef50_P10798: Ribulose bisphosphate carboxylase small chain 3B, chloroplastic|unclassified	0.0620488958
+UniRef50_UPI00046952E2: alpha/beta hydrolase	0.0620439403
+UniRef50_UPI00046952E2: alpha/beta hydrolase|unclassified	0.0620439403
+UniRef50_UPI0003B742A4: hydroxyglutarate oxidase	0.0620369398
+UniRef50_UPI0003B742A4: hydroxyglutarate oxidase|unclassified	0.0620369398
+UniRef50_UPI000382BE75: hypothetical protein	0.0620317302
+UniRef50_UPI000382BE75: hypothetical protein|unclassified	0.0620317302
+UniRef50_UPI000377C272: hypothetical protein	0.0620259377
+UniRef50_UPI000377C272: hypothetical protein|unclassified	0.0620259377
+UniRef50_G8AP16	0.0620238911
+UniRef50_G8AP16|unclassified	0.0620238911
+UniRef50_UPI0003B3A56C: LuxR family transcriptional regulator	0.0620236510
+UniRef50_UPI0003B3A56C: LuxR family transcriptional regulator|unclassified	0.0620236510
+UniRef50_A4EHN5	0.0620235301
+UniRef50_A4EHN5|unclassified	0.0620235301
+UniRef50_V0M203: Diguanylate cyclase	0.0620223688
+UniRef50_V0M203: Diguanylate cyclase|unclassified	0.0620223688
+UniRef50_UPI0004659DA3: glutamyl-tRNA synthetase	0.0620176189
+UniRef50_UPI0004659DA3: glutamyl-tRNA synthetase|unclassified	0.0620176189
+UniRef50_K0N3L5	0.0620166123
+UniRef50_K0N3L5|unclassified	0.0620166123
+UniRef50_P43263: Bacillolysin	0.0620163759
+UniRef50_P43263: Bacillolysin|unclassified	0.0620163759
+UniRef50_Q65UW4: RbsB protein	0.0620110383
+UniRef50_Q65UW4: RbsB protein|unclassified	0.0620110383
+UniRef50_UPI0003B44698: penicillin-binding protein 1A	0.0620076584
+UniRef50_UPI0003B44698: penicillin-binding protein 1A|unclassified	0.0620076584
+UniRef50_UPI00041CC7CD: hypothetical protein	0.0620002331
+UniRef50_UPI00041CC7CD: hypothetical protein|unclassified	0.0620002331
+UniRef50_UPI0003629205: hypothetical protein	0.0619997732
+UniRef50_UPI0003629205: hypothetical protein|unclassified	0.0619997732
+UniRef50_C8X1M6: Type II secretion system F domain protein	0.0619983743
+UniRef50_C8X1M6: Type II secretion system F domain protein|unclassified	0.0619983743
+UniRef50_UPI00047040E8: hypothetical protein	0.0619980050
+UniRef50_UPI00047040E8: hypothetical protein|unclassified	0.0619980050
+UniRef50_UPI0001BC2E61: thioredoxin reductase	0.0619888088
+UniRef50_UPI0001BC2E61: thioredoxin reductase|unclassified	0.0619888088
+UniRef50_W4LYA1	0.0619868325
+UniRef50_W4LYA1|unclassified	0.0619868325
+UniRef50_UPI0003B50D09: flagellin	0.0619861682
+UniRef50_UPI0003B50D09: flagellin|unclassified	0.0619861682
+UniRef50_UPI00046EFEDF: ABC transporter substrate-binding protein	0.0619798031
+UniRef50_UPI00046EFEDF: ABC transporter substrate-binding protein|unclassified	0.0619798031
+UniRef50_Q55FL3: Aldose reductase C	0.0619757833
+UniRef50_Q55FL3: Aldose reductase C|unclassified	0.0619757833
+UniRef50_UPI0003B73706: hypothetical protein	0.0619756055
+UniRef50_UPI0003B73706: hypothetical protein|unclassified	0.0619756055
+UniRef50_UPI0003B30D3A: ABC transporter permease	0.0619743648
+UniRef50_UPI0003B30D3A: ABC transporter permease|unclassified	0.0619743648
+UniRef50_UPI000382EEE8: primosome assembly protein PriA	0.0619673717
+UniRef50_UPI000382EEE8: primosome assembly protein PriA|unclassified	0.0619673717
+UniRef50_O76463: Nitrilase and fragile histidine triad fusion protein NitFhit	0.0619561670
+UniRef50_O76463: Nitrilase and fragile histidine triad fusion protein NitFhit|unclassified	0.0619561670
+UniRef50_W0YNW4	0.0619548010
+UniRef50_W0YNW4|unclassified	0.0619548010
+UniRef50_UPI0002628372: ABC transporter permease	0.0619529517
+UniRef50_UPI0002628372: ABC transporter permease|unclassified	0.0619529517
+UniRef50_UPI0004108154: 3-ketoacyl-ACP reductase	0.0619509067
+UniRef50_UPI0004108154: 3-ketoacyl-ACP reductase|unclassified	0.0619509067
+UniRef50_C6NR42: Outer membrane porin OprF	0.0619458494
+UniRef50_C6NR42: Outer membrane porin OprF|unclassified	0.0619458494
+UniRef50_UPI00047EE782: DNA gyrase subunit A	0.0619415468
+UniRef50_UPI00047EE782: DNA gyrase subunit A|unclassified	0.0619415468
+UniRef50_UPI00041F1EA6: hypothetical protein	0.0619409923
+UniRef50_UPI00041F1EA6: hypothetical protein|unclassified	0.0619409923
+UniRef50_A6DDD4	0.0619397600
+UniRef50_A6DDD4|unclassified	0.0619397600
+UniRef50_UPI00046921A1: hypothetical protein, partial	0.0619375154
+UniRef50_UPI00046921A1: hypothetical protein, partial|unclassified	0.0619375154
+UniRef50_UPI000366F94B: hypothetical protein	0.0619330226
+UniRef50_UPI000366F94B: hypothetical protein|unclassified	0.0619330226
+UniRef50_X2MJ75	0.0619320003
+UniRef50_X2MJ75|unclassified	0.0619320003
+UniRef50_O83327: CTP synthase	0.0619298264
+UniRef50_O83327: CTP synthase|unclassified	0.0619298264
+UniRef50_U3AGS6: Hypotheical conserved protein	0.0619277011
+UniRef50_U3AGS6: Hypotheical conserved protein|unclassified	0.0619277011
+UniRef50_UPI00040192A5: histidine kinase	0.0619243243
+UniRef50_UPI00040192A5: histidine kinase|unclassified	0.0619243243
+UniRef50_UPI000362C6BE: hypothetical protein	0.0619189355
+UniRef50_UPI000362C6BE: hypothetical protein|unclassified	0.0619189355
+UniRef50_UPI00037BB33D: hypothetical protein	0.0619124569
+UniRef50_UPI00037BB33D: hypothetical protein|unclassified	0.0619124569
+UniRef50_C4L086: Beta-lactamase domain protein	0.0619091518
+UniRef50_C4L086: Beta-lactamase domain protein|unclassified	0.0619091518
+UniRef50_Q0SPB0: Triosephosphate isomerase	0.0619051574
+UniRef50_Q0SPB0: Triosephosphate isomerase|unclassified	0.0619051574
+UniRef50_D0FPA1	0.0619036284
+UniRef50_D0FPA1|unclassified	0.0619036284
+UniRef50_M1F823	0.0619011947
+UniRef50_M1F823|unclassified	0.0619011947
+UniRef50_UPI00046ECA04: hypothetical protein	0.0618995345
+UniRef50_UPI00046ECA04: hypothetical protein|unclassified	0.0618995345
+UniRef50_UPI00031E9ACC: hypothetical protein	0.0618970420
+UniRef50_UPI00031E9ACC: hypothetical protein|unclassified	0.0618970420
+UniRef50_Q2YV31	0.0618958301
+UniRef50_Q2YV31|unclassified	0.0618958301
+UniRef50_Q4FL42: Tripartite ATP-independent periplasmic	0.0618922772
+UniRef50_Q4FL42: Tripartite ATP-independent periplasmic|unclassified	0.0618922772
+UniRef50_H0JDX7: Type IV pilus modification protein PilV	0.0618896397
+UniRef50_H0JDX7: Type IV pilus modification protein PilV|unclassified	0.0618896397
+UniRef50_Q92GH4: Endonuclease III	0.0618805770
+UniRef50_Q92GH4: Endonuclease III|unclassified	0.0618805770
+UniRef50_UPI0001E8947E: binding-protein-dependent transport systems inner membrane component	0.0618731579
+UniRef50_UPI0001E8947E: binding-protein-dependent transport systems inner membrane component|unclassified	0.0618731579
+UniRef50_T1BN59: Excinuclease ABC subunit C (Fragment)	0.0618722506
+UniRef50_T1BN59: Excinuclease ABC subunit C (Fragment)|unclassified	0.0618722506
+UniRef50_UPI00029AD49E: altronate oxidoreductase	0.0618700057
+UniRef50_UPI00029AD49E: altronate oxidoreductase|unclassified	0.0618700057
+UniRef50_E6W0H9	0.0618655340
+UniRef50_E6W0H9|unclassified	0.0618655340
+UniRef50_L7FMT9	0.0618599493
+UniRef50_L7FMT9|unclassified	0.0618599493
+UniRef50_UPI0003B54F67: crotonase	0.0618591731
+UniRef50_UPI0003B54F67: crotonase|unclassified	0.0618591731
+UniRef50_A4WS89: Phage portal protein, HK97 family	0.0618564339
+UniRef50_A4WS89: Phage portal protein, HK97 family|unclassified	0.0618564339
+UniRef50_A0A023EXC3: Putative secreted protein of aegy sperm	0.0618546123
+UniRef50_A0A023EXC3: Putative secreted protein of aegy sperm|unclassified	0.0618546123
+UniRef50_F7ZH96	0.0618541002
+UniRef50_F7ZH96|unclassified	0.0618541002
+UniRef50_D3NVE3	0.0618534260
+UniRef50_D3NVE3|unclassified	0.0618534260
+UniRef50_W6HG40: PE-PGRS family protein	0.0618489412
+UniRef50_W6HG40: PE-PGRS family protein|unclassified	0.0618489412
+UniRef50_B1ZSW3: Ferrochelatase	0.0618443577
+UniRef50_B1ZSW3: Ferrochelatase|unclassified	0.0618443577
+UniRef50_W6IYR1: Auxin-binding protein	0.0618419273
+UniRef50_W6IYR1: Auxin-binding protein|unclassified	0.0618419273
+UniRef50_G3ZVX8: tRNA pseudouridine synthase A	0.0618394687
+UniRef50_G3ZVX8: tRNA pseudouridine synthase A|unclassified	0.0618394687
+UniRef50_M0LKY7: MaoC domain-containing protein dehydratase	0.0618368024
+UniRef50_M0LKY7: MaoC domain-containing protein dehydratase|unclassified	0.0618368024
+UniRef50_Q8XIA9: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	0.0618326747
+UniRef50_Q8XIA9: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.0618326747
+UniRef50_UPI00047AB54E: GntR family transcriptional regulator	0.0618289801
+UniRef50_UPI00047AB54E: GntR family transcriptional regulator|unclassified	0.0618289801
+UniRef50_W5X4B4: Short-chain dehydrogenase/reductase SDR	0.0618252685
+UniRef50_W5X4B4: Short-chain dehydrogenase/reductase SDR|unclassified	0.0618252685
+UniRef50_UPI0001CBA166: PREDICTED: nuclease-sensitive element-binding protein 1-like	0.0618125456
+UniRef50_UPI0001CBA166: PREDICTED: nuclease-sensitive element-binding protein 1-like|unclassified	0.0618125456
+UniRef50_Q8R9S4: Diaminopimelate epimerase	0.0618107835
+UniRef50_Q8R9S4: Diaminopimelate epimerase|unclassified	0.0618107835
+UniRef50_UPI000370BEF1: hypothetical protein	0.0618028242
+UniRef50_UPI000370BEF1: hypothetical protein|unclassified	0.0618028242
+UniRef50_UPI000328DDB8: PREDICTED: basic proline-rich protein-like, partial	0.0617950943
+UniRef50_UPI000328DDB8: PREDICTED: basic proline-rich protein-like, partial|unclassified	0.0617950943
+UniRef50_UPI00040959FD: secretion protein HlyD	0.0617918032
+UniRef50_UPI00040959FD: secretion protein HlyD|unclassified	0.0617918032
+UniRef50_A0A058Z057	0.0617737148
+UniRef50_A0A058Z057|unclassified	0.0617737148
+UniRef50_UPI00046666D7: hypothetical protein	0.0617682429
+UniRef50_UPI00046666D7: hypothetical protein|unclassified	0.0617682429
+UniRef50_S2VH02: Mobilization protein A	0.0617672797
+UniRef50_S2VH02: Mobilization protein A|unclassified	0.0617672797
+UniRef50_A1U1J0	0.0617653875
+UniRef50_A1U1J0|unclassified	0.0617653875
+UniRef50_D5RKS8: Protein CreA	0.0617633091
+UniRef50_D5RKS8: Protein CreA|unclassified	0.0617633091
+UniRef50_F8IAF0	0.0617628021
+UniRef50_F8IAF0|unclassified	0.0617628021
+UniRef50_Q96I99: Succinyl-CoA ligase [GDP-forming] subunit beta, mitochondrial	0.0617607512
+UniRef50_Q96I99: Succinyl-CoA ligase [GDP-forming] subunit beta, mitochondrial|unclassified	0.0617607512
+UniRef50_UPI0003045834: hypothetical protein	0.0617591908
+UniRef50_UPI0003045834: hypothetical protein|unclassified	0.0617591908
+UniRef50_Q6MI74: Bifunctional protein FolD	0.0617586949
+UniRef50_Q6MI74: Bifunctional protein FolD|unclassified	0.0617586949
+UniRef50_UPI00037BCCFB: hypothetical protein	0.0617586527
+UniRef50_UPI00037BCCFB: hypothetical protein|unclassified	0.0617586527
+UniRef50_UPI00039DD386: hypothetical protein	0.0617522323
+UniRef50_UPI00039DD386: hypothetical protein|unclassified	0.0617522323
+UniRef50_X1Y8J9	0.0617505509
+UniRef50_X1Y8J9|unclassified	0.0617505509
+UniRef50_UPI00031566CC: hypothetical protein	0.0617451145
+UniRef50_UPI00031566CC: hypothetical protein|unclassified	0.0617451145
+UniRef50_R6JHB0	0.0617403636
+UniRef50_R6JHB0|unclassified	0.0617403636
+UniRef50_UPI00028943C6: transposase Tn3	0.0617397671
+UniRef50_UPI00028943C6: transposase Tn3|unclassified	0.0617397671
+UniRef50_UPI00045E8DEC: hypothetical protein	0.0617379673
+UniRef50_UPI00045E8DEC: hypothetical protein|unclassified	0.0617379673
+UniRef50_UPI0003B5DB85: hypothetical protein, partial	0.0617260260
+UniRef50_UPI0003B5DB85: hypothetical protein, partial|unclassified	0.0617260260
+UniRef50_B2V0Z8: Ferric siderophore ABC transporter,substrate-binding protein	0.0617241957
+UniRef50_B2V0Z8: Ferric siderophore ABC transporter,substrate-binding protein|unclassified	0.0617241957
+UniRef50_O67606: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	0.0617225291
+UniRef50_O67606: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.0617225291
+UniRef50_UPI000466BA5B: hypothetical protein	0.0617165290
+UniRef50_UPI000466BA5B: hypothetical protein|unclassified	0.0617165290
+UniRef50_UPI00037B280F: lysyl-tRNA synthetase	0.0617123765
+UniRef50_UPI00037B280F: lysyl-tRNA synthetase|unclassified	0.0617123765
+UniRef50_UPI00029DB3CA	0.0617102947
+UniRef50_UPI00029DB3CA|unclassified	0.0617102947
+UniRef50_UPI00047E277D: alpha-L-fucosidase	0.0617087371
+UniRef50_UPI00047E277D: alpha-L-fucosidase|unclassified	0.0617087371
+UniRef50_UPI000364771D: hypothetical protein	0.0617082258
+UniRef50_UPI000364771D: hypothetical protein|unclassified	0.0617082258
+UniRef50_Q98IM1: Mlr2342 protein	0.0617076032
+UniRef50_Q98IM1: Mlr2342 protein|unclassified	0.0617076032
+UniRef50_B0CC69: Biotin synthase	0.0616979374
+UniRef50_B0CC69: Biotin synthase|unclassified	0.0616979374
+UniRef50_UPI0002E9F19B: hypothetical protein	0.0616931727
+UniRef50_UPI0002E9F19B: hypothetical protein|unclassified	0.0616931727
+UniRef50_UPI0004641DBA: hypothetical protein	0.0616914430
+UniRef50_UPI0004641DBA: hypothetical protein|unclassified	0.0616914430
+UniRef50_UPI000478EC80: hypothetical protein	0.0616876304
+UniRef50_UPI000478EC80: hypothetical protein|unclassified	0.0616876304
+UniRef50_M9R8K1: FlgD-like flagellar basal-body rod modification protein	0.0616873806
+UniRef50_M9R8K1: FlgD-like flagellar basal-body rod modification protein|unclassified	0.0616873806
+UniRef50_UPI00042B37CF: Actin-binding FH2 protein isoform 4	0.0616854907
+UniRef50_UPI00042B37CF: Actin-binding FH2 protein isoform 4|unclassified	0.0616854907
+UniRef50_UPI00035FFA00: hypothetical protein	0.0616729123
+UniRef50_UPI00035FFA00: hypothetical protein|unclassified	0.0616729123
+UniRef50_B5ZG92	0.0616659350
+UniRef50_B5ZG92|unclassified	0.0616659350
+UniRef50_W4V7J4: Activator of (R)-2-hydroxyglutaryl-CoA dehydratase	0.0616622448
+UniRef50_W4V7J4: Activator of (R)-2-hydroxyglutaryl-CoA dehydratase|unclassified	0.0616622448
+UniRef50_S5VCT0: Spidroin-1	0.0616537000
+UniRef50_S5VCT0: Spidroin-1|unclassified	0.0616537000
+UniRef50_Q8P558: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE	0.0616522129
+UniRef50_Q8P558: Ubiquinone/menaquinone biosynthesis C-methyltransferase UbiE|unclassified	0.0616522129
+UniRef50_UPI00047838E9: hypothetical protein	0.0616461539
+UniRef50_UPI00047838E9: hypothetical protein|unclassified	0.0616461539
+UniRef50_D5TKU7: Ankyrin	0.0616425500
+UniRef50_D5TKU7: Ankyrin|unclassified	0.0616425500
+UniRef50_UPI0004011EB8: hypothetical protein	0.0616394054
+UniRef50_UPI0004011EB8: hypothetical protein|unclassified	0.0616394054
+UniRef50_T1BMD0: Excinuclease ABC, A subunit (Fragment)	0.0616362397
+UniRef50_T1BMD0: Excinuclease ABC, A subunit (Fragment)|unclassified	0.0616362397
+UniRef50_G6XJ67	0.0616361919
+UniRef50_G6XJ67|unclassified	0.0616361919
+UniRef50_B7JBC1: Anthranilate phosphoribosyltransferase	0.0616327128
+UniRef50_B7JBC1: Anthranilate phosphoribosyltransferase|unclassified	0.0616327128
+UniRef50_UPI000427207E: hypothetical protein	0.0616311674
+UniRef50_UPI000427207E: hypothetical protein|unclassified	0.0616311674
+UniRef50_Q7WKG8: N-(5'-phosphoribosyl)anthranilate isomerase	0.0616307686
+UniRef50_Q7WKG8: N-(5'-phosphoribosyl)anthranilate isomerase|unclassified	0.0616307686
+UniRef50_UPI000366BDEE: tRNA 2-selenouridine synthase	0.0616277970
+UniRef50_UPI000366BDEE: tRNA 2-selenouridine synthase|unclassified	0.0616277970
+UniRef50_UPI000262830A: NAD-dependent epimerase/dehydratase	0.0616242027
+UniRef50_UPI000262830A: NAD-dependent epimerase/dehydratase|unclassified	0.0616242027
+UniRef50_B6IP65	0.0616241437
+UniRef50_B6IP65|unclassified	0.0616241437
+UniRef50_UPI000476E1B2: recombinase RecA	0.0616165042
+UniRef50_UPI000476E1B2: recombinase RecA|unclassified	0.0616165042
+UniRef50_D6GRE6: CobQ/CobB/MinD/ParA nucleotide binding domain protein	0.0616078617
+UniRef50_D6GRE6: CobQ/CobB/MinD/ParA nucleotide binding domain protein|unclassified	0.0616078617
+UniRef50_UPI00040C0EAB: dipeptidase PepV	0.0616019315
+UniRef50_UPI00040C0EAB: dipeptidase PepV|unclassified	0.0616019315
+UniRef50_UPI00047024E1: hypothetical protein	0.0616012785
+UniRef50_UPI00047024E1: hypothetical protein|unclassified	0.0616012785
+UniRef50_UPI0003802BB9: hypothetical protein	0.0616009286
+UniRef50_UPI0003802BB9: hypothetical protein|unclassified	0.0616009286
+UniRef50_UPI00047183B8: membrane protein	0.0615993730
+UniRef50_UPI00047183B8: membrane protein|unclassified	0.0615993730
+UniRef50_R6CH89: Peptidase M23 family	0.0615992288
+UniRef50_R6CH89: Peptidase M23 family|unclassified	0.0615992288
+UniRef50_K2GL54	0.0615980002
+UniRef50_K2GL54|unclassified	0.0615980002
+UniRef50_A0A024HX84	0.0615943468
+UniRef50_A0A024HX84|unclassified	0.0615943468
+UniRef50_UPI000365AE70: hypothetical protein	0.0615854702
+UniRef50_UPI000365AE70: hypothetical protein|unclassified	0.0615854702
+UniRef50_UPI000375E38D: hypothetical protein	0.0615841665
+UniRef50_UPI000375E38D: hypothetical protein|unclassified	0.0615841665
+UniRef50_P41363: Thermostable alkaline protease	0.0615716848
+UniRef50_P41363: Thermostable alkaline protease|unclassified	0.0615716848
+UniRef50_UPI00047A47AE: Abortive infection protein	0.0615675096
+UniRef50_UPI00047A47AE: Abortive infection protein|unclassified	0.0615675096
+UniRef50_G8T0V9	0.0615663968
+UniRef50_G8T0V9|unclassified	0.0615663968
+UniRef50_G4ST76	0.0615645853
+UniRef50_G4ST76|unclassified	0.0615645853
+UniRef50_A3TW82	0.0615626988
+UniRef50_A3TW82|unclassified	0.0615626988
+UniRef50_Q1QH83: Carbohydrate ABC transporter substrate-binding protein, CUT1 family	0.0615595428
+UniRef50_Q1QH83: Carbohydrate ABC transporter substrate-binding protein, CUT1 family|unclassified	0.0615595428
+UniRef50_U5FV07	0.0615575025
+UniRef50_U5FV07|unclassified	0.0615575025
+UniRef50_UPI0002FAB494: hypothetical protein	0.0615572615
+UniRef50_UPI0002FAB494: hypothetical protein|unclassified	0.0615572615
+UniRef50_UPI0003B52E08: peptidase M14	0.0615567776
+UniRef50_UPI0003B52E08: peptidase M14|unclassified	0.0615567776
+UniRef50_UPI0002FCAD2E: hypothetical protein	0.0615559613
+UniRef50_UPI0002FCAD2E: hypothetical protein|unclassified	0.0615559613
+UniRef50_I1YE91	0.0615511821
+UniRef50_I1YE91|unclassified	0.0615511821
+UniRef50_UPI0004400EA7: PREDICTED: LOW QUALITY PROTEIN: trehalase (brush-border membrane glycoprotein)	0.0615484464
+UniRef50_UPI0004400EA7: PREDICTED: LOW QUALITY PROTEIN: trehalase (brush-border membrane glycoprotein)|unclassified	0.0615484464
+UniRef50_UPI000473FD4D: hypothetical protein, partial	0.0615467601
+UniRef50_UPI000473FD4D: hypothetical protein, partial|unclassified	0.0615467601
+UniRef50_X0WUW2: Marine sediment metagenome DNA, contig: S01H1_S34012 (Fragment)	0.0615457841
+UniRef50_X0WUW2: Marine sediment metagenome DNA, contig: S01H1_S34012 (Fragment)|unclassified	0.0615457841
+UniRef50_I0WU90: Permease	0.0615432276
+UniRef50_I0WU90: Permease|unclassified	0.0615432276
+UniRef50_UPI0003B37116: membrane protein	0.0615415877
+UniRef50_UPI0003B37116: membrane protein|unclassified	0.0615415877
+UniRef50_K8NC00	0.0615394341
+UniRef50_K8NC00|unclassified	0.0615394341
+UniRef50_Q7V102: Isoprenyl transferase	0.0615366158
+UniRef50_Q7V102: Isoprenyl transferase|unclassified	0.0615366158
+UniRef50_UPI00047C9673: hypothetical protein	0.0615311794
+UniRef50_UPI00047C9673: hypothetical protein|unclassified	0.0615311794
+UniRef50_UPI00041042FA: hypothetical protein	0.0615303631
+UniRef50_UPI00041042FA: hypothetical protein|unclassified	0.0615303631
+UniRef50_UPI000468107A: AraC family transcriptional regulator	0.0615226344
+UniRef50_UPI000468107A: AraC family transcriptional regulator|unclassified	0.0615226344
+UniRef50_F0G9H2: Major facilitator family transporter (Fragment)	0.0615205755
+UniRef50_F0G9H2: Major facilitator family transporter (Fragment)|unclassified	0.0615205755
+UniRef50_Q8FRR3: Tryptophan--tRNA ligase	0.0615191150
+UniRef50_Q8FRR3: Tryptophan--tRNA ligase|unclassified	0.0615191150
+UniRef50_G0EZ24: Transglycosylase	0.0615118038
+UniRef50_G0EZ24: Transglycosylase|unclassified	0.0615118038
+UniRef50_B6TQL9	0.0615108521
+UniRef50_B6TQL9|unclassified	0.0615108521
+UniRef50_A8V5L0	0.0615102939
+UniRef50_A8V5L0|unclassified	0.0615102939
+UniRef50_C8P871	0.0615097615
+UniRef50_C8P871|unclassified	0.0615097615
+UniRef50_T0JF77	0.0614978901
+UniRef50_T0JF77|unclassified	0.0614978901
+UniRef50_A2F983	0.0614975843
+UniRef50_A2F983|unclassified	0.0614975843
+UniRef50_UPI0001926D1C: PREDICTED: D-arabinitol dehydrogenase 1-like	0.0614955522
+UniRef50_UPI0001926D1C: PREDICTED: D-arabinitol dehydrogenase 1-like|unclassified	0.0614955522
+UniRef50_UPI00047848D3: lactate dehydrogenase	0.0614882331
+UniRef50_UPI00047848D3: lactate dehydrogenase|unclassified	0.0614882331
+UniRef50_UPI00041E0BDC: hypothetical protein	0.0614767972
+UniRef50_UPI00041E0BDC: hypothetical protein|unclassified	0.0614767972
+UniRef50_UPI000371B62D: hypothetical protein	0.0614750806
+UniRef50_UPI000371B62D: hypothetical protein|unclassified	0.0614750806
+UniRef50_Q888H1: Uronate dehydrogenase	0.0614735287
+UniRef50_Q888H1: Uronate dehydrogenase|unclassified	0.0614735287
+UniRef50_UPI000419785D: hypothetical protein	0.0614716949
+UniRef50_UPI000419785D: hypothetical protein|unclassified	0.0614716949
+UniRef50_UPI00035EEAA9: hypothetical protein	0.0614712061
+UniRef50_UPI00035EEAA9: hypothetical protein|unclassified	0.0614712061
+UniRef50_Q5TX99: AGAP002199-PA	0.0614678294
+UniRef50_Q5TX99: AGAP002199-PA|unclassified	0.0614678294
+UniRef50_W0AII1: Dehalogenase	0.0614636474
+UniRef50_W0AII1: Dehalogenase|unclassified	0.0614636474
+UniRef50_UPI0003828260: hypothetical protein	0.0614608538
+UniRef50_UPI0003828260: hypothetical protein|unclassified	0.0614608538
+UniRef50_D5U6V1: Metallo-dependent phosphatase	0.0614598078
+UniRef50_D5U6V1: Metallo-dependent phosphatase|unclassified	0.0614598078
+UniRef50_M3AFP9	0.0614586176
+UniRef50_M3AFP9|unclassified	0.0614586176
+UniRef50_UPI000464967A: hypothetical protein	0.0614553318
+UniRef50_UPI000464967A: hypothetical protein|unclassified	0.0614553318
+UniRef50_B6JEJ4: RecA-family ATPase	0.0614473420
+UniRef50_B6JEJ4: RecA-family ATPase|unclassified	0.0614473420
+UniRef50_Q5V5D5: 4-hydroxy-tetrahydrodipicolinate reductase	0.0614437295
+UniRef50_Q5V5D5: 4-hydroxy-tetrahydrodipicolinate reductase|unclassified	0.0614437295
+UniRef50_UPI0003B556E0: long-chain fatty acid--CoA ligase	0.0614389416
+UniRef50_UPI0003B556E0: long-chain fatty acid--CoA ligase|unclassified	0.0614389416
+UniRef50_UPI00029D96D6	0.0614378985
+UniRef50_UPI00029D96D6|unclassified	0.0614378985
+UniRef50_UPI000371B8DB: hypothetical protein	0.0614306459
+UniRef50_UPI000371B8DB: hypothetical protein|unclassified	0.0614306459
+UniRef50_Q7V3R5: Phosphoribosylformylglycinamidine synthase 2	0.0614304151
+UniRef50_Q7V3R5: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.0614304151
+UniRef50_UPI000465FF91: MerR family transcriptional regulator	0.0614286871
+UniRef50_UPI000465FF91: MerR family transcriptional regulator|unclassified	0.0614286871
+UniRef50_UPI000367A6C7: hypothetical protein	0.0614265711
+UniRef50_UPI000367A6C7: hypothetical protein|unclassified	0.0614265711
+UniRef50_B9E7Z8	0.0614264771
+UniRef50_B9E7Z8|unclassified	0.0614264771
+UniRef50_C4L9P2	0.0614256793
+UniRef50_C4L9P2|unclassified	0.0614256793
+UniRef50_R6I371: ABC-2 type transport system permease protein	0.0614244134
+UniRef50_R6I371: ABC-2 type transport system permease protein|unclassified	0.0614244134
+UniRef50_B0W4T7	0.0614243681
+UniRef50_B0W4T7|unclassified	0.0614243681
+UniRef50_UPI00045E7AD4: 2-polyprenylphenol hydroxylase	0.0614158149
+UniRef50_UPI00045E7AD4: 2-polyprenylphenol hydroxylase|unclassified	0.0614158149
+UniRef50_F2K492: UPF0502 protein Marme_3317	0.0614070009
+UniRef50_F2K492: UPF0502 protein Marme_3317|unclassified	0.0614070009
+UniRef50_D6Y2A3: 40-residue YVTN family beta-propeller repeat protein	0.0614015035
+UniRef50_D6Y2A3: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.0614015035
+UniRef50_UPI000371FB82: hypothetical protein	0.0614012861
+UniRef50_UPI000371FB82: hypothetical protein|unclassified	0.0614012861
+UniRef50_UPI000464F730: ABC transporter ATP-binding protein	0.0613981930
+UniRef50_UPI000464F730: ABC transporter ATP-binding protein|unclassified	0.0613981930
+UniRef50_A5EYC3: Conserved hypothetical membrane protein	0.0613957246
+UniRef50_A5EYC3: Conserved hypothetical membrane protein|unclassified	0.0613957246
+UniRef50_Q8TME2: Quinolinate synthase A 2	0.0613793887
+UniRef50_Q8TME2: Quinolinate synthase A 2|unclassified	0.0613793887
+UniRef50_V5FBQ0	0.0613744997
+UniRef50_V5FBQ0|unclassified	0.0613744997
+UniRef50_UPI0003B387A0: hypothetical protein	0.0613739063
+UniRef50_UPI0003B387A0: hypothetical protein|unclassified	0.0613739063
+UniRef50_K0D1Q9: Ankyrin	0.0613737771
+UniRef50_K0D1Q9: Ankyrin|unclassified	0.0613737771
+UniRef50_O85786: Hydroxymethylpyrimidine/phosphomethylpyrimidine kinase	0.0613654243
+UniRef50_O85786: Hydroxymethylpyrimidine/phosphomethylpyrimidine kinase|unclassified	0.0613654243
+UniRef50_UPI000464E1B1: hypothetical protein	0.0613612526
+UniRef50_UPI000464E1B1: hypothetical protein|unclassified	0.0613612526
+UniRef50_Q8L4A1: Os01g0594900 protein	0.0613482506
+UniRef50_Q8L4A1: Os01g0594900 protein|unclassified	0.0613482506
+UniRef50_UPI0003B473B1: glutathione S-transferase	0.0613475099
+UniRef50_UPI0003B473B1: glutathione S-transferase|unclassified	0.0613475099
+UniRef50_UPI0003B53CAB: LolC/E family lipoprotein releasing system, transmembrane protein	0.0613474107
+UniRef50_UPI0003B53CAB: LolC/E family lipoprotein releasing system, transmembrane protein|unclassified	0.0613474107
+UniRef50_C1AV89	0.0613467440
+UniRef50_C1AV89|unclassified	0.0613467440
+UniRef50_UPI00041FB778: thiamine biosynthesis protein ApbE	0.0613454626
+UniRef50_UPI00041FB778: thiamine biosynthesis protein ApbE|unclassified	0.0613454626
+UniRef50_UPI0003A37182: diguanylate cyclase	0.0613415254
+UniRef50_UPI0003A37182: diguanylate cyclase|unclassified	0.0613415254
+UniRef50_W7Q8V2: Type IV pilus biogenesis protein PilO	0.0613377079
+UniRef50_W7Q8V2: Type IV pilus biogenesis protein PilO|unclassified	0.0613377079
+UniRef50_UPI0003A68671: tRNA methyltransferase	0.0613334140
+UniRef50_UPI0003A68671: tRNA methyltransferase|unclassified	0.0613334140
+UniRef50_UPI000374AAEE: hypothetical protein	0.0613326469
+UniRef50_UPI000374AAEE: hypothetical protein|unclassified	0.0613326469
+UniRef50_A0QSK5: dTDP-4-dehydrorhamnose 3,5-epimerase	0.0613301695
+UniRef50_A0QSK5: dTDP-4-dehydrorhamnose 3,5-epimerase|unclassified	0.0613301695
+UniRef50_UPI0004785ED6: hypothetical protein	0.0613279123
+UniRef50_UPI0004785ED6: hypothetical protein|unclassified	0.0613279123
+UniRef50_UPI0003B73821: heat-shock protein Hsp90	0.0613270826
+UniRef50_UPI0003B73821: heat-shock protein Hsp90|unclassified	0.0613270826
+UniRef50_A7HKS1: tRNA (guanine-N(1)-)-methyltransferase	0.0613254871
+UniRef50_A7HKS1: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0613254871
+UniRef50_B3QZT5: UPF0176 protein ATP_00285	0.0613245983
+UniRef50_B3QZT5: UPF0176 protein ATP_00285|unclassified	0.0613245983
+UniRef50_UPI0003820AA9: hypothetical protein	0.0613226617
+UniRef50_UPI0003820AA9: hypothetical protein|unclassified	0.0613226617
+UniRef50_UPI00006DC6BB: putative peptidase	0.0613085580
+UniRef50_UPI00006DC6BB: putative peptidase|unclassified	0.0613085580
+UniRef50_UPI00037BB826: hypothetical protein	0.0613080860
+UniRef50_UPI00037BB826: hypothetical protein|unclassified	0.0613080860
+UniRef50_UPI00045E880C: MULTISPECIES: hypothetical protein	0.0612996885
+UniRef50_UPI00045E880C: MULTISPECIES: hypothetical protein|unclassified	0.0612996885
+UniRef50_D6XA00	0.0612992897
+UniRef50_D6XA00|unclassified	0.0612992897
+UniRef50_UPI00035FC064: hypothetical protein	0.0612984168
+UniRef50_UPI00035FC064: hypothetical protein|unclassified	0.0612984168
+UniRef50_K6WVP3: Ethanolamine utilization protein EutJ	0.0612963722
+UniRef50_K6WVP3: Ethanolamine utilization protein EutJ|unclassified	0.0612963722
+UniRef50_UPI0004007565: 16S rRNA methyltransferase	0.0612950807
+UniRef50_UPI0004007565: 16S rRNA methyltransferase|unclassified	0.0612950807
+UniRef50_F5ZL20: Phage super infection exclusion	0.0612930320
+UniRef50_F5ZL20: Phage super infection exclusion|unclassified	0.0612930320
+UniRef50_UPI00047EB2BB: hypothetical protein	0.0612919077
+UniRef50_UPI00047EB2BB: hypothetical protein|unclassified	0.0612919077
+UniRef50_UPI00037E35A9: hypothetical protein	0.0612906746
+UniRef50_UPI00037E35A9: hypothetical protein|unclassified	0.0612906746
+UniRef50_UPI0003797B8F: hypothetical protein, partial	0.0612876186
+UniRef50_UPI0003797B8F: hypothetical protein, partial|unclassified	0.0612876186
+UniRef50_A0A052IBR3: Lytic transglycosylase family protein	0.0612873137
+UniRef50_A0A052IBR3: Lytic transglycosylase family protein|unclassified	0.0612873137
+UniRef50_Q087U3: PKHD-type hydroxylase Sfri_0612	0.0612868902
+UniRef50_Q087U3: PKHD-type hydroxylase Sfri_0612|unclassified	0.0612868902
+UniRef50_UPI000414E366: sodium:proton exchanger	0.0612798755
+UniRef50_UPI000414E366: sodium:proton exchanger|unclassified	0.0612798755
+UniRef50_P07738: Bisphosphoglycerate mutase	0.0612707446
+UniRef50_P07738: Bisphosphoglycerate mutase|unclassified	0.0612707446
+UniRef50_UPI0001FFE930: peptide ABC transporter ATP-binding protein	0.0612670158
+UniRef50_UPI0001FFE930: peptide ABC transporter ATP-binding protein|unclassified	0.0612670158
+UniRef50_UPI00035E86E6: hypothetical protein	0.0612661811
+UniRef50_UPI00035E86E6: hypothetical protein|unclassified	0.0612661811
+UniRef50_UPI0003B355CF: ABC transporter permease	0.0612642979
+UniRef50_UPI0003B355CF: ABC transporter permease|unclassified	0.0612642979
+UniRef50_S5Y9W8	0.0612614883
+UniRef50_S5Y9W8|unclassified	0.0612614883
+UniRef50_M9RL17	0.0612606141
+UniRef50_M9RL17|unclassified	0.0612606141
+UniRef50_C5Y3F1	0.0612600335
+UniRef50_C5Y3F1|unclassified	0.0612600335
+UniRef50_UPI000478D960: thiamine biosynthesis protein ApbE	0.0612570873
+UniRef50_UPI000478D960: thiamine biosynthesis protein ApbE|unclassified	0.0612570873
+UniRef50_UPI000319E332: hypothetical protein	0.0612513481
+UniRef50_UPI000319E332: hypothetical protein|unclassified	0.0612513481
+UniRef50_A6YIY0: Major ampullate spidroin 2	0.0612495663
+UniRef50_A6YIY0: Major ampullate spidroin 2|unclassified	0.0612495663
+UniRef50_UPI000443E2A1: PREDICTED: proline-rich receptor-like protein kinase PERK2	0.0612466566
+UniRef50_UPI000443E2A1: PREDICTED: proline-rich receptor-like protein kinase PERK2|unclassified	0.0612466566
+UniRef50_Q9AQ98: Ketol-acid reductoisomerase (Fragment)	0.0612434106
+UniRef50_Q9AQ98: Ketol-acid reductoisomerase (Fragment)|unclassified	0.0612434106
+UniRef50_UPI0003713465: hypothetical protein	0.0612409731
+UniRef50_UPI0003713465: hypothetical protein|unclassified	0.0612409731
+UniRef50_A8FGK6: 2-succinylbenzoate--CoA ligase	0.0612375421
+UniRef50_A8FGK6: 2-succinylbenzoate--CoA ligase|unclassified	0.0612375421
+UniRef50_UPI0003077E2A: hypothetical protein	0.0612350156
+UniRef50_UPI0003077E2A: hypothetical protein|unclassified	0.0612350156
+UniRef50_UPI000478361D: PTS mannose transporter subunit IID	0.0612350156
+UniRef50_UPI000478361D: PTS mannose transporter subunit IID|unclassified	0.0612350156
+UniRef50_Q2H782: Predicted protein	0.0612277905
+UniRef50_Q2H782: Predicted protein|unclassified	0.0612277905
+UniRef50_C7ZCJ9	0.0612272085
+UniRef50_C7ZCJ9|unclassified	0.0612272085
+UniRef50_U6MSM6	0.0612228578
+UniRef50_U6MSM6|unclassified	0.0612228578
+UniRef50_UPI0003B74184: pyridine nucleotide-disulfide oxidoreductase	0.0612224685
+UniRef50_UPI0003B74184: pyridine nucleotide-disulfide oxidoreductase|unclassified	0.0612224685
+UniRef50_Q92MP8: Putative ribose/galactose/methyl galactoside import ATP-binding protein 1	0.0612222090
+UniRef50_Q92MP8: Putative ribose/galactose/methyl galactoside import ATP-binding protein 1|unclassified	0.0612222090
+UniRef50_UPI00036EEDB2: 30S ribosomal protein S4, partial	0.0612213410
+UniRef50_UPI00036EEDB2: 30S ribosomal protein S4, partial|unclassified	0.0612213410
+UniRef50_UPI00035CBB20: hypothetical protein	0.0612127638
+UniRef50_UPI00035CBB20: hypothetical protein|unclassified	0.0612127638
+UniRef50_B0X4X0	0.0612116851
+UniRef50_B0X4X0|unclassified	0.0612116851
+UniRef50_C3FZH9	0.0612095447
+UniRef50_C3FZH9|unclassified	0.0612095447
+UniRef50_P60998: Histidinol-phosphate aminotransferase	0.0612068028
+UniRef50_P60998: Histidinol-phosphate aminotransferase|unclassified	0.0612068028
+UniRef50_U2DSA5	0.0611933840
+UniRef50_U2DSA5|unclassified	0.0611933840
+UniRef50_F3YCB9	0.0611921673
+UniRef50_F3YCB9|unclassified	0.0611921673
+UniRef50_UPI0003FCDF2A: Fis family transcriptional regulator	0.0611855223
+UniRef50_UPI0003FCDF2A: Fis family transcriptional regulator|unclassified	0.0611855223
+UniRef50_Q970N1: Tryptophan synthase beta chain 2	0.0611837326
+UniRef50_Q970N1: Tryptophan synthase beta chain 2|unclassified	0.0611837326
+UniRef50_C9XSP5	0.0611783608
+UniRef50_C9XSP5|unclassified	0.0611783608
+UniRef50_UPI0003FFC777: hypothetical protein	0.0611779707
+UniRef50_UPI0003FFC777: hypothetical protein|unclassified	0.0611779707
+UniRef50_O58888: Probable aminomethyltransferase	0.0611674589
+UniRef50_O58888: Probable aminomethyltransferase|unclassified	0.0611674589
+UniRef50_Q8F0X6: Hydroxyethylthiazole kinase	0.0611580795
+UniRef50_Q8F0X6: Hydroxyethylthiazole kinase|unclassified	0.0611580795
+UniRef50_UPI00036D9023: hypothetical protein	0.0611570319
+UniRef50_UPI00036D9023: hypothetical protein|unclassified	0.0611570319
+UniRef50_Q8CXP1: tRNA pseudouridine synthase A	0.0611527862
+UniRef50_Q8CXP1: tRNA pseudouridine synthase A|unclassified	0.0611527862
+UniRef50_UPI0003F0D32A: PREDICTED: probable G-protein coupled receptor 123	0.0611515724
+UniRef50_UPI0003F0D32A: PREDICTED: probable G-protein coupled receptor 123|unclassified	0.0611515724
+UniRef50_UPI00037031A7: hypothetical protein, partial	0.0611491459
+UniRef50_UPI00037031A7: hypothetical protein, partial|unclassified	0.0611491459
+UniRef50_UPI00046A0E84: hypothetical protein	0.0611469685
+UniRef50_UPI00046A0E84: hypothetical protein|unclassified	0.0611469685
+UniRef50_I4YRR5	0.0611369209
+UniRef50_I4YRR5|unclassified	0.0611369209
+UniRef50_U1SCH9	0.0611330247
+UniRef50_U1SCH9|unclassified	0.0611330247
+UniRef50_C9M6U4: Putative phage terminase, large subunit	0.0611322368
+UniRef50_C9M6U4: Putative phage terminase, large subunit|unclassified	0.0611322368
+UniRef50_C7XT86	0.0611311490
+UniRef50_C7XT86|unclassified	0.0611311490
+UniRef50_UPI0002629252: choline dehydrogenase	0.0611279458
+UniRef50_UPI0002629252: choline dehydrogenase|unclassified	0.0611279458
+UniRef50_V4G9Q2: Multidrug ABC transporter substrate-binding protein (Fragment)	0.0611223216
+UniRef50_V4G9Q2: Multidrug ABC transporter substrate-binding protein (Fragment)|unclassified	0.0611223216
+UniRef50_UPI0003B71411: ACP S-malonyltransferase	0.0611220758
+UniRef50_UPI0003B71411: ACP S-malonyltransferase|unclassified	0.0611220758
+UniRef50_UPI00036488F7: hypothetical protein	0.0611208240
+UniRef50_UPI00036488F7: hypothetical protein|unclassified	0.0611208240
+UniRef50_UPI0003614422: hypothetical protein	0.0611111485
+UniRef50_UPI0003614422: hypothetical protein|unclassified	0.0611111485
+UniRef50_T1HGL7	0.0611102659
+UniRef50_T1HGL7|unclassified	0.0611102659
+UniRef50_UPI000363AD48: hypothetical protein	0.0611015645
+UniRef50_UPI000363AD48: hypothetical protein|unclassified	0.0611015645
+UniRef50_B9LSU7	0.0610850235
+UniRef50_B9LSU7|unclassified	0.0610850235
+UniRef50_K2KLD5	0.0610789899
+UniRef50_K2KLD5|unclassified	0.0610789899
+UniRef50_UPI00044067F2: PREDICTED: elongation factor Tu GTP-binding domain-containing protein 1 isoform X2	0.0610689140
+UniRef50_UPI00044067F2: PREDICTED: elongation factor Tu GTP-binding domain-containing protein 1 isoform X2|unclassified	0.0610689140
+UniRef50_UPI0002DF2173: membrane protein	0.0610665683
+UniRef50_UPI0002DF2173: membrane protein|unclassified	0.0610665683
+UniRef50_C1KYN8: NADPH dehydrogenase	0.0610627740
+UniRef50_C1KYN8: NADPH dehydrogenase|unclassified	0.0610627740
+UniRef50_B9QV56: SOUL heme-binding protein	0.0610588398
+UniRef50_B9QV56: SOUL heme-binding protein|unclassified	0.0610588398
+UniRef50_UPI0003715EFB: hypothetical protein	0.0610553286
+UniRef50_UPI0003715EFB: hypothetical protein|unclassified	0.0610553286
+UniRef50_Q9ZMR3	0.0610544186
+UniRef50_Q9ZMR3|unclassified	0.0610544186
+UniRef50_C4GEE5: UPF0276 protein GCWU000324_00028	0.0610517811
+UniRef50_C4GEE5: UPF0276 protein GCWU000324_00028|unclassified	0.0610517811
+UniRef50_UPI00035DADAE: hypothetical protein	0.0610483849
+UniRef50_UPI00035DADAE: hypothetical protein|unclassified	0.0610483849
+UniRef50_C9SSX4	0.0610445546
+UniRef50_C9SSX4|unclassified	0.0610445546
+UniRef50_UPI000478545E: hypothetical protein	0.0610425865
+UniRef50_UPI000478545E: hypothetical protein|unclassified	0.0610425865
+UniRef50_Q6FEQ6: Non-canonical purine NTP pyrophosphatase	0.0610424891
+UniRef50_Q6FEQ6: Non-canonical purine NTP pyrophosphatase|unclassified	0.0610424891
+UniRef50_U6KE00	0.0610418111
+UniRef50_U6KE00|unclassified	0.0610418111
+UniRef50_L3WI40	0.0610416828
+UniRef50_L3WI40|unclassified	0.0610416828
+UniRef50_Q2KWY0: Ribonuclease 3	0.0610406525
+UniRef50_Q2KWY0: Ribonuclease 3|unclassified	0.0610406525
+UniRef50_UPI0002B41FFA: PREDICTED: probable succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial-like	0.0610314830
+UniRef50_UPI0002B41FFA: PREDICTED: probable succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial-like|unclassified	0.0610314830
+UniRef50_Q1IMM1: Ribonuclease HII	0.0610306586
+UniRef50_Q1IMM1: Ribonuclease HII|unclassified	0.0610306586
+UniRef50_M0XM43	0.0610304411
+UniRef50_M0XM43|unclassified	0.0610304411
+UniRef50_UPI0003CFD6DF: hypothetical protein P148_SR1C00001G0474	0.0610293391
+UniRef50_UPI0003CFD6DF: hypothetical protein P148_SR1C00001G0474|unclassified	0.0610293391
+UniRef50_Q04524: Acetolactate synthase, catabolic	0.0610234505
+UniRef50_Q04524: Acetolactate synthase, catabolic|unclassified	0.0610234505
+UniRef50_E7RVE7	0.0610213550
+UniRef50_E7RVE7|unclassified	0.0610213550
+UniRef50_UPI00036985B2: hypothetical protein	0.0610212705
+UniRef50_UPI00036985B2: hypothetical protein|unclassified	0.0610212705
+UniRef50_UPI000470CB2C: hypothetical protein	0.0610199543
+UniRef50_UPI000470CB2C: hypothetical protein|unclassified	0.0610199543
+UniRef50_UPI000471E133: methylmalonate-semialdehyde dehydrogenase, partial	0.0610172108
+UniRef50_UPI000471E133: methylmalonate-semialdehyde dehydrogenase, partial|unclassified	0.0610172108
+UniRef50_E0VYZ9	0.0610143814
+UniRef50_E0VYZ9|unclassified	0.0610143814
+UniRef50_Q4FQL0: Valine--tRNA ligase	0.0609979638
+UniRef50_Q4FQL0: Valine--tRNA ligase|unclassified	0.0609979638
+UniRef50_A4Y5Z7	0.0609962445
+UniRef50_A4Y5Z7|unclassified	0.0609962445
+UniRef50_G8PID0: Protein containing DUF1223	0.0609961562
+UniRef50_G8PID0: Protein containing DUF1223|unclassified	0.0609961562
+UniRef50_W4LAS2	0.0609929256
+UniRef50_W4LAS2|unclassified	0.0609929256
+UniRef50_A0DFI6: Chromosome undetermined scaffold_49, whole genome shotgun sequence	0.0609887724
+UniRef50_A0DFI6: Chromosome undetermined scaffold_49, whole genome shotgun sequence|unclassified	0.0609887724
+UniRef50_Q2S2L8: ATP-dependent Clp protease proteolytic subunit 1	0.0609862236
+UniRef50_Q2S2L8: ATP-dependent Clp protease proteolytic subunit 1|unclassified	0.0609862236
+UniRef50_UPI000455E378: hypothetical protein CONPUDRAFT_155290	0.0609858800
+UniRef50_UPI000455E378: hypothetical protein CONPUDRAFT_155290|unclassified	0.0609858800
+UniRef50_UPI0003EC0F26: PREDICTED: sulfate anion transporter 1	0.0609839455
+UniRef50_UPI0003EC0F26: PREDICTED: sulfate anion transporter 1|unclassified	0.0609839455
+UniRef50_UPI000219724C: GntR family putative transcriptional regulator	0.0609826549
+UniRef50_UPI000219724C: GntR family putative transcriptional regulator|unclassified	0.0609826549
+UniRef50_UPI0003FFA5F8: GntR family transcriptional regulator	0.0609819901
+UniRef50_UPI0003FFA5F8: GntR family transcriptional regulator|unclassified	0.0609819901
+UniRef50_UPI000262CD30: UDP-N-acetylmuramoylalanyl-D-glutamyl-2, 6-diaminopimelate--D-alanyl-D-alanyl ligase	0.0609791609
+UniRef50_UPI000262CD30: UDP-N-acetylmuramoylalanyl-D-glutamyl-2, 6-diaminopimelate--D-alanyl-D-alanyl ligase|unclassified	0.0609791609
+UniRef50_UPI0004656D90: phosphopantothenoylcysteine decarboxylase	0.0609694358
+UniRef50_UPI0004656D90: phosphopantothenoylcysteine decarboxylase|unclassified	0.0609694358
+UniRef50_D6BJ75: ATPase	0.0609676530
+UniRef50_D6BJ75: ATPase|unclassified	0.0609676530
+UniRef50_UPI00047E34BC: hypothetical protein	0.0609657862
+UniRef50_UPI00047E34BC: hypothetical protein|unclassified	0.0609657862
+UniRef50_B2KEC4: Pyridoxine 5'-phosphate synthase	0.0609650497
+UniRef50_B2KEC4: Pyridoxine 5'-phosphate synthase|unclassified	0.0609650497
+UniRef50_D7FVT4	0.0609595668
+UniRef50_D7FVT4|unclassified	0.0609595668
+UniRef50_UPI000363D098: hypothetical protein, partial	0.0609571497
+UniRef50_UPI000363D098: hypothetical protein, partial|unclassified	0.0609571497
+UniRef50_UPI000463AB2B: proline iminopeptidase	0.0609525640
+UniRef50_UPI000463AB2B: proline iminopeptidase|unclassified	0.0609525640
+UniRef50_D6Y2A7: 40-residue YVTN family beta-propeller repeat protein	0.0609449867
+UniRef50_D6Y2A7: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.0609449867
+UniRef50_Q2JJV2: D-alanine--D-alanine ligase	0.0609429261
+UniRef50_Q2JJV2: D-alanine--D-alanine ligase|unclassified	0.0609429261
+UniRef50_Q5LI89: N-acetylmuramic acid 6-phosphate etherase	0.0609382524
+UniRef50_Q5LI89: N-acetylmuramic acid 6-phosphate etherase|unclassified	0.0609382524
+UniRef50_UPI00016C50D0: oxidoreductase, FAD-binding protein	0.0609212606
+UniRef50_UPI00016C50D0: oxidoreductase, FAD-binding protein|unclassified	0.0609212606
+UniRef50_UPI00038153C4: hypothetical protein	0.0609183173
+UniRef50_UPI00038153C4: hypothetical protein|unclassified	0.0609183173
+UniRef50_UPI000366D3F9: hypothetical protein	0.0609166918
+UniRef50_UPI000366D3F9: hypothetical protein|unclassified	0.0609166918
+UniRef50_B1J5I1	0.0609164351
+UniRef50_B1J5I1|unclassified	0.0609164351
+UniRef50_UPI0003A2FE59: hypothetical protein	0.0609118499
+UniRef50_UPI0003A2FE59: hypothetical protein|unclassified	0.0609118499
+UniRef50_UPI0002557E8E: hypothetical protein	0.0609111936
+UniRef50_UPI0002557E8E: hypothetical protein|unclassified	0.0609111936
+UniRef50_I6WPK4	0.0609096261
+UniRef50_I6WPK4|unclassified	0.0609096261
+UniRef50_UPI0003B48C4E: oligoendopeptidase F	0.0609031583
+UniRef50_UPI0003B48C4E: oligoendopeptidase F|unclassified	0.0609031583
+UniRef50_A3W3Z2: Transposase and inactivated derivatives	0.0609011929
+UniRef50_A3W3Z2: Transposase and inactivated derivatives|unclassified	0.0609011929
+UniRef50_UPI00047B7506: membrane protein	0.0608983148
+UniRef50_UPI00047B7506: membrane protein|unclassified	0.0608983148
+UniRef50_UPI0004687CD1: hypothetical protein	0.0608949090
+UniRef50_UPI0004687CD1: hypothetical protein|unclassified	0.0608949090
+UniRef50_UPI00047E92BC: hypothetical protein	0.0608947790
+UniRef50_UPI00047E92BC: hypothetical protein|unclassified	0.0608947790
+UniRef50_UPI0003F8AD64: hypothetical protein	0.0608906375
+UniRef50_UPI0003F8AD64: hypothetical protein|unclassified	0.0608906375
+UniRef50_UPI000462DA3F: PREDICTED: LOW QUALITY PROTEIN: enoyl-CoA hydratase, mitochondrial	0.0608898909
+UniRef50_UPI000462DA3F: PREDICTED: LOW QUALITY PROTEIN: enoyl-CoA hydratase, mitochondrial|unclassified	0.0608898909
+UniRef50_A0A011RL95: TPR-repeat-containing protein	0.0608810234
+UniRef50_A0A011RL95: TPR-repeat-containing protein|unclassified	0.0608810234
+UniRef50_P10251: Adenylate kinase	0.0608709335
+UniRef50_P10251: Adenylate kinase|unclassified	0.0608709335
+UniRef50_A8LKJ6: Peptidase M23B	0.0608699710
+UniRef50_A8LKJ6: Peptidase M23B|unclassified	0.0608699710
+UniRef50_UPI0003632B62: hypothetical protein	0.0608627819
+UniRef50_UPI0003632B62: hypothetical protein|unclassified	0.0608627819
+UniRef50_Q11RM1: UPF0176 protein CHU_2691	0.0608564716
+UniRef50_Q11RM1: UPF0176 protein CHU_2691|unclassified	0.0608564716
+UniRef50_M4S8Q0	0.0608548109
+UniRef50_M4S8Q0|unclassified	0.0608548109
+UniRef50_UPI000395AF68: PREDICTED: dapper homolog 3-like	0.0608535563
+UniRef50_UPI000395AF68: PREDICTED: dapper homolog 3-like|unclassified	0.0608535563
+UniRef50_Q3JBF6: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical	0.0608508121
+UniRef50_Q3JBF6: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical|unclassified	0.0608508121
+UniRef50_UPI00047B6550: hypothetical protein	0.0608499175
+UniRef50_UPI00047B6550: hypothetical protein|unclassified	0.0608499175
+UniRef50_UPI000380510F: hypothetical protein	0.0608470106
+UniRef50_UPI000380510F: hypothetical protein|unclassified	0.0608470106
+UniRef50_W4HIL2	0.0608447770
+UniRef50_W4HIL2|unclassified	0.0608447770
+UniRef50_UPI0002898073: N-acetylglucosamine-1-phosphate uridyltransferase	0.0608444325
+UniRef50_UPI0002898073: N-acetylglucosamine-1-phosphate uridyltransferase|unclassified	0.0608444325
+UniRef50_Q28FD1: Alcohol dehydrogenase [NADP(+)]	0.0608390231
+UniRef50_Q28FD1: Alcohol dehydrogenase [NADP(+)]|unclassified	0.0608390231
+UniRef50_UPI00037A00C3: hypothetical protein	0.0608303503
+UniRef50_UPI00037A00C3: hypothetical protein|unclassified	0.0608303503
+UniRef50_UPI00046AF11E: arginyl-tRNA synthetase	0.0608284316
+UniRef50_UPI00046AF11E: arginyl-tRNA synthetase|unclassified	0.0608284316
+UniRef50_UPI000050FADD: putative methyltransferase	0.0608241091
+UniRef50_UPI000050FADD: putative methyltransferase|unclassified	0.0608241091
+UniRef50_UPI0003B57BB8: membrane protein	0.0608212201
+UniRef50_UPI0003B57BB8: membrane protein|unclassified	0.0608212201
+UniRef50_A6W320: Transposase, IS4	0.0608179526
+UniRef50_A6W320: Transposase, IS4|unclassified	0.0608179526
+UniRef50_Q9M439: Branched-chain-amino-acid aminotransferase 2, chloroplastic	0.0608174779
+UniRef50_Q9M439: Branched-chain-amino-acid aminotransferase 2, chloroplastic|unclassified	0.0608174779
+UniRef50_Q1QVQ5: Lipoprotein	0.0608164312
+UniRef50_Q1QVQ5: Lipoprotein|unclassified	0.0608164312
+UniRef50_R1FEW0	0.0608110221
+UniRef50_R1FEW0|unclassified	0.0608110221
+UniRef50_Q2JTX2: 1-deoxy-D-xylulose-5-phosphate synthase	0.0608108172
+UniRef50_Q2JTX2: 1-deoxy-D-xylulose-5-phosphate synthase|unclassified	0.0608108172
+UniRef50_D8MG37: Maltose ABC transporter substrate binding protein	0.0608085072
+UniRef50_D8MG37: Maltose ABC transporter substrate binding protein|unclassified	0.0608085072
+UniRef50_UPI000374B537: hypothetical protein	0.0608056067
+UniRef50_UPI000374B537: hypothetical protein|unclassified	0.0608056067
+UniRef50_UPI0003B79044: NUDIX hydrolase	0.0608028396
+UniRef50_UPI0003B79044: NUDIX hydrolase|unclassified	0.0608028396
+UniRef50_A4ER60	0.0607956124
+UniRef50_A4ER60|unclassified	0.0607956124
+UniRef50_UPI00046674B1: hypothetical protein	0.0607920526
+UniRef50_UPI00046674B1: hypothetical protein|unclassified	0.0607920526
+UniRef50_W8QRP4: Peptidase S66	0.0607864234
+UniRef50_W8QRP4: Peptidase S66|unclassified	0.0607864234
+UniRef50_D1B7R4: Ethanolamine utilization protein EutJ family protein	0.0607857146
+UniRef50_D1B7R4: Ethanolamine utilization protein EutJ family protein|unclassified	0.0607857146
+UniRef50_UPI0003675C2C: hypothetical protein	0.0607850856
+UniRef50_UPI0003675C2C: hypothetical protein|unclassified	0.0607850856
+UniRef50_UPI000476D965: hypothetical protein	0.0607830117
+UniRef50_UPI000476D965: hypothetical protein|unclassified	0.0607830117
+UniRef50_UPI0003A6F61A: LysR family transcriptional regulator	0.0607794141
+UniRef50_UPI0003A6F61A: LysR family transcriptional regulator|unclassified	0.0607794141
+UniRef50_UPI0004659E7D: hypothetical protein	0.0607786576
+UniRef50_UPI0004659E7D: hypothetical protein|unclassified	0.0607786576
+UniRef50_G2LQE7	0.0607784491
+UniRef50_G2LQE7|unclassified	0.0607784491
+UniRef50_W5GXN3	0.0607760874
+UniRef50_W5GXN3|unclassified	0.0607760874
+UniRef50_UPI00035121FE	0.0607727062
+UniRef50_UPI00035121FE|unclassified	0.0607727062
+UniRef50_Q7UZP0: Lysine--tRNA ligase	0.0607715933
+UniRef50_Q7UZP0: Lysine--tRNA ligase|unclassified	0.0607715933
+UniRef50_UPI00047D7BC4: hypothetical protein, partial	0.0607639295
+UniRef50_UPI00047D7BC4: hypothetical protein, partial|unclassified	0.0607639295
+UniRef50_V9FBT9	0.0607627256
+UniRef50_V9FBT9|unclassified	0.0607627256
+UniRef50_I8T5U4	0.0607622718
+UniRef50_I8T5U4|unclassified	0.0607622718
+UniRef50_W9T9A5: Protein TctA	0.0607579174
+UniRef50_W9T9A5: Protein TctA|unclassified	0.0607579174
+UniRef50_R6H6T4: Haloacetate dehalogenase H-1	0.0607568777
+UniRef50_R6H6T4: Haloacetate dehalogenase H-1|unclassified	0.0607568777
+UniRef50_X1FPD3: Marine sediment metagenome DNA, contig: S03H2_C01505	0.0607497017
+UniRef50_X1FPD3: Marine sediment metagenome DNA, contig: S03H2_C01505|unclassified	0.0607497017
+UniRef50_UPI000262CE6F: hypothetical protein	0.0607426646
+UniRef50_UPI000262CE6F: hypothetical protein|unclassified	0.0607426646
+UniRef50_UPI0003B75002: NAD synthetase, partial	0.0607397003
+UniRef50_UPI0003B75002: NAD synthetase, partial|unclassified	0.0607397003
+UniRef50_B8ERB2: Ppx/GppA phosphatase	0.0607386731
+UniRef50_B8ERB2: Ppx/GppA phosphatase|unclassified	0.0607386731
+UniRef50_B0S1S0: Prolipoprotein diacylglyceryl transferase	0.0607332839
+UniRef50_B0S1S0: Prolipoprotein diacylglyceryl transferase|unclassified	0.0607332839
+UniRef50_UPI00046A80FC: anthranilate synthase	0.0607331178
+UniRef50_UPI00046A80FC: anthranilate synthase|unclassified	0.0607331178
+UniRef50_UPI00034BAF0A: hypothetical protein	0.0607304716
+UniRef50_UPI00034BAF0A: hypothetical protein|unclassified	0.0607304716
+UniRef50_W4HQI4	0.0607289401
+UniRef50_W4HQI4|unclassified	0.0607289401
+UniRef50_UPI0003FB737F: DNA gyrase subunit A	0.0607195982
+UniRef50_UPI0003FB737F: DNA gyrase subunit A|unclassified	0.0607195982
+UniRef50_A8IGC9: Fibrocystin-L-like protein	0.0607125816
+UniRef50_A8IGC9: Fibrocystin-L-like protein|unclassified	0.0607125816
+UniRef50_UPI00046A72DD: hypothetical protein	0.0607055640
+UniRef50_UPI00046A72DD: hypothetical protein|unclassified	0.0607055640
+UniRef50_UPI0003761FE4: hypothetical protein	0.0606974549
+UniRef50_UPI0003761FE4: hypothetical protein|unclassified	0.0606974549
+UniRef50_UPI000369CD71: hypothetical protein	0.0606896536
+UniRef50_UPI000369CD71: hypothetical protein|unclassified	0.0606896536
+UniRef50_Y1I4J5	0.0606812406
+UniRef50_Y1I4J5|unclassified	0.0606812406
+UniRef50_UPI0003501C22: PREDICTED: collagen alpha-1(III) chain-like	0.0606798172
+UniRef50_UPI0003501C22: PREDICTED: collagen alpha-1(III) chain-like|unclassified	0.0606798172
+UniRef50_UPI0003754A94: hypothetical protein	0.0606757070
+UniRef50_UPI0003754A94: hypothetical protein|unclassified	0.0606757070
+UniRef50_B2V726: Putative dihydroorotate dehydrogenase A (fumarate)	0.0606730828
+UniRef50_B2V726: Putative dihydroorotate dehydrogenase A (fumarate)|unclassified	0.0606730828
+UniRef50_R6BLM8	0.0606669000
+UniRef50_R6BLM8|unclassified	0.0606669000
+UniRef50_UPI0004234081: excinuclease ABC subunit A	0.0606591977
+UniRef50_UPI0004234081: excinuclease ABC subunit A|unclassified	0.0606591977
+UniRef50_UPI0003A58CA9: CysB family transcriptional regulator	0.0606361438
+UniRef50_UPI0003A58CA9: CysB family transcriptional regulator|unclassified	0.0606361438
+UniRef50_J2ZRL7: Rhamnan synthesis protein F domain protein	0.0606297339
+UniRef50_J2ZRL7: Rhamnan synthesis protein F domain protein|unclassified	0.0606297339
+UniRef50_E3CD34: Fibronectin-binding protein A domain protein	0.0606284717
+UniRef50_E3CD34: Fibronectin-binding protein A domain protein|unclassified	0.0606284717
+UniRef50_J8ZSV4	0.0606202073
+UniRef50_J8ZSV4|unclassified	0.0606202073
+UniRef50_UPI0002492185: Cof-like hydrolase	0.0606168279
+UniRef50_UPI0002492185: Cof-like hydrolase|unclassified	0.0606168279
+UniRef50_Q9RDX2: Imidazole glycerol phosphate synthase subunit HisF	0.0606151662
+UniRef50_Q9RDX2: Imidazole glycerol phosphate synthase subunit HisF|unclassified	0.0606151662
+UniRef50_UPI0002F19E46: hypothetical protein	0.0606099949
+UniRef50_UPI0002F19E46: hypothetical protein|unclassified	0.0606099949
+UniRef50_Q42565: Anthranilate synthase beta subunit 1, chloroplastic	0.0606084859
+UniRef50_Q42565: Anthranilate synthase beta subunit 1, chloroplastic|unclassified	0.0606084859
+UniRef50_A7HK75: Phospho-N-acetylmuramoyl-pentapeptide-transferase	0.0606069842
+UniRef50_A7HK75: Phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.0606069842
+UniRef50_UPI0003B5E3DD: GTPase Era	0.0606069102
+UniRef50_UPI0003B5E3DD: GTPase Era|unclassified	0.0606069102
+UniRef50_UPI00046E9599: hypothetical protein	0.0606054699
+UniRef50_UPI00046E9599: hypothetical protein|unclassified	0.0606054699
+UniRef50_UPI000467BE02: hypothetical protein	0.0606022413
+UniRef50_UPI000467BE02: hypothetical protein|unclassified	0.0606022413
+UniRef50_UPI0004724634: hypothetical protein	0.0605977367
+UniRef50_UPI0004724634: hypothetical protein|unclassified	0.0605977367
+UniRef50_A3JME4: OmpA domain protein	0.0605972328
+UniRef50_A3JME4: OmpA domain protein|unclassified	0.0605972328
+UniRef50_C3X3A5	0.0605861663
+UniRef50_C3X3A5|unclassified	0.0605861663
+UniRef50_F7Y4M6	0.0605827687
+UniRef50_F7Y4M6|unclassified	0.0605827687
+UniRef50_E6UXV1: Rhodanese domain protein	0.0605788926
+UniRef50_E6UXV1: Rhodanese domain protein|unclassified	0.0605788926
+UniRef50_UPI0003A59C2C: ATPase	0.0605743566
+UniRef50_UPI0003A59C2C: ATPase|unclassified	0.0605743566
+UniRef50_UPI0003695EC1: hypothetical protein	0.0605725332
+UniRef50_UPI0003695EC1: hypothetical protein|unclassified	0.0605725332
+UniRef50_UPI000378F645: hypothetical protein	0.0605700179
+UniRef50_UPI000378F645: hypothetical protein|unclassified	0.0605700179
+UniRef50_X0VQS5: Marine sediment metagenome DNA, contig: S01H1_S07614 (Fragment)	0.0605645426
+UniRef50_X0VQS5: Marine sediment metagenome DNA, contig: S01H1_S07614 (Fragment)|unclassified	0.0605645426
+UniRef50_UPI000477415B: tripartite tricarboxylate transporter TctA	0.0605631154
+UniRef50_UPI000477415B: tripartite tricarboxylate transporter TctA|unclassified	0.0605631154
+UniRef50_UPI00037EBA03: hypothetical protein	0.0605612439
+UniRef50_UPI00037EBA03: hypothetical protein|unclassified	0.0605612439
+UniRef50_UPI000378010D: hypothetical protein	0.0605589794
+UniRef50_UPI000378010D: hypothetical protein|unclassified	0.0605589794
+UniRef50_UPI0003480247: membrane protein	0.0605579207
+UniRef50_UPI0003480247: membrane protein|unclassified	0.0605579207
+UniRef50_R6VIE6	0.0605579049
+UniRef50_R6VIE6|unclassified	0.0605579049
+UniRef50_A2WFF8	0.0605558611
+UniRef50_A2WFF8|unclassified	0.0605558611
+UniRef50_UPI0003F8D5B0: hypothetical protein	0.0605518196
+UniRef50_UPI0003F8D5B0: hypothetical protein|unclassified	0.0605518196
+UniRef50_UPI0003627BED: hypothetical protein	0.0605397370
+UniRef50_UPI0003627BED: hypothetical protein|unclassified	0.0605397370
+UniRef50_UPI0003C17A60: PREDICTED: 39S ribosomal protein L3, mitochondrial-like, partial	0.0605382461
+UniRef50_UPI0003C17A60: PREDICTED: 39S ribosomal protein L3, mitochondrial-like, partial|unclassified	0.0605382461
+UniRef50_UPI00035D9B42: hypothetical protein	0.0605362640
+UniRef50_UPI00035D9B42: hypothetical protein|unclassified	0.0605362640
+UniRef50_W1YW12	0.0605327338
+UniRef50_W1YW12|unclassified	0.0605327338
+UniRef50_Q6A9L6: Periplasmic binding protein	0.0605218001
+UniRef50_Q6A9L6: Periplasmic binding protein|unclassified	0.0605218001
+UniRef50_I2F1Y3: L-serine deaminase	0.0605197868
+UniRef50_I2F1Y3: L-serine deaminase|unclassified	0.0605197868
+UniRef50_B6AV37: Possible FlgD protein	0.0605164856
+UniRef50_B6AV37: Possible FlgD protein|unclassified	0.0605164856
+UniRef50_UPI00046F17B1: ring-hydroxylating dioxygenase	0.0605070636
+UniRef50_UPI00046F17B1: ring-hydroxylating dioxygenase|unclassified	0.0605070636
+UniRef50_UPI000380AAE2: hypothetical protein	0.0605059448
+UniRef50_UPI000380AAE2: hypothetical protein|unclassified	0.0605059448
+UniRef50_UPI000470E957: major facilitator transporter, partial	0.0605047089
+UniRef50_UPI000470E957: major facilitator transporter, partial|unclassified	0.0605047089
+UniRef50_Q8RE57: Methionine--tRNA ligase	0.0605046066
+UniRef50_Q8RE57: Methionine--tRNA ligase|unclassified	0.0605046066
+UniRef50_UPI00037E4B57: hypothetical protein	0.0605014376
+UniRef50_UPI00037E4B57: hypothetical protein|unclassified	0.0605014376
+UniRef50_UPI00035DB32C: hypothetical protein	0.0605011996
+UniRef50_UPI00035DB32C: hypothetical protein|unclassified	0.0605011996
+UniRef50_C1E755	0.0605006764
+UniRef50_C1E755|unclassified	0.0605006764
+UniRef50_UPI0004646100: hypothetical protein	0.0604996777
+UniRef50_UPI0004646100: hypothetical protein|unclassified	0.0604996777
+UniRef50_UPI000370C5F4: MULTISPECIES: hypothetical protein	0.0604933858
+UniRef50_UPI000370C5F4: MULTISPECIES: hypothetical protein|unclassified	0.0604933858
+UniRef50_UPI00030E318A: hypothetical protein	0.0604931676
+UniRef50_UPI00030E318A: hypothetical protein|unclassified	0.0604931676
+UniRef50_UPI00035E1BB0: hypothetical protein	0.0604911640
+UniRef50_UPI00035E1BB0: hypothetical protein|unclassified	0.0604911640
+UniRef50_UPI00046FC8FA: 5-hydroxymethyluracil DNA glycosylase	0.0604888964
+UniRef50_UPI00046FC8FA: 5-hydroxymethyluracil DNA glycosylase|unclassified	0.0604888964
+UniRef50_UPI000471EEAE: ABC transporter	0.0604863257
+UniRef50_UPI000471EEAE: ABC transporter|unclassified	0.0604863257
+UniRef50_UPI00037E232A: hypothetical protein, partial	0.0604862970
+UniRef50_UPI00037E232A: hypothetical protein, partial|unclassified	0.0604862970
+UniRef50_UPI00047DA0D9: tartronate semialdehyde reductase	0.0604814358
+UniRef50_UPI00047DA0D9: tartronate semialdehyde reductase|unclassified	0.0604814358
+UniRef50_UPI00039572EC: molybdopterin-guanine dinucleotide biosynthesis protein A	0.0604807180
+UniRef50_UPI00039572EC: molybdopterin-guanine dinucleotide biosynthesis protein A|unclassified	0.0604807180
+UniRef50_Q11ZA8: Plasmid pRiA4b ORF-3-like	0.0604771117
+UniRef50_Q11ZA8: Plasmid pRiA4b ORF-3-like|unclassified	0.0604771117
+UniRef50_UPI00047BE316: membrane protein	0.0604717473
+UniRef50_UPI00047BE316: membrane protein|unclassified	0.0604717473
+UniRef50_V7M7P9	0.0604710898
+UniRef50_V7M7P9|unclassified	0.0604710898
+UniRef50_F0T8F3: SOUL heme-binding protein	0.0604659076
+UniRef50_F0T8F3: SOUL heme-binding protein|unclassified	0.0604659076
+UniRef50_B2I1P2: Ankyrin repeat protein	0.0604657952
+UniRef50_B2I1P2: Ankyrin repeat protein|unclassified	0.0604657952
+UniRef50_B8I590: D-alanine--D-alanine ligase	0.0604615420
+UniRef50_B8I590: D-alanine--D-alanine ligase|unclassified	0.0604615420
+UniRef50_UPI0003B3CBEA: cell division protein ZipA	0.0604602703
+UniRef50_UPI0003B3CBEA: cell division protein ZipA|unclassified	0.0604602703
+UniRef50_R6DJE7	0.0604600292
+UniRef50_R6DJE7|unclassified	0.0604600292
+UniRef50_UPI0003B6AB3A: aspartyl/glutamyl-tRNA amidotransferase subunit B	0.0604556984
+UniRef50_UPI0003B6AB3A: aspartyl/glutamyl-tRNA amidotransferase subunit B|unclassified	0.0604556984
+UniRef50_A7NAL8: Toluene tolerance protein	0.0604546606
+UniRef50_A7NAL8: Toluene tolerance protein|unclassified	0.0604546606
+UniRef50_H6NIT4	0.0604492190
+UniRef50_H6NIT4|unclassified	0.0604492190
+UniRef50_UPI0002626755: dioxygenase	0.0604489607
+UniRef50_UPI0002626755: dioxygenase|unclassified	0.0604489607
+UniRef50_Y3EMP2: Ferrichrome ABC transporter	0.0604475474
+UniRef50_Y3EMP2: Ferrichrome ABC transporter|unclassified	0.0604475474
+UniRef50_UPI00030B21C2: hypothetical protein	0.0604463559
+UniRef50_UPI00030B21C2: hypothetical protein|unclassified	0.0604463559
+UniRef50_UPI000346EB07: hypothetical protein	0.0604423792
+UniRef50_UPI000346EB07: hypothetical protein|unclassified	0.0604423792
+UniRef50_UPI00047B0B98: hypothetical protein	0.0604417106
+UniRef50_UPI00047B0B98: hypothetical protein|unclassified	0.0604417106
+UniRef50_UPI000287E554: ribonuclease R, partial	0.0604343353
+UniRef50_UPI000287E554: ribonuclease R, partial|unclassified	0.0604343353
+UniRef50_A0A028V2X4: MFS transporter (Fragment)	0.0604335234
+UniRef50_A0A028V2X4: MFS transporter (Fragment)|unclassified	0.0604335234
+UniRef50_S9Q6A0	0.0604302013
+UniRef50_S9Q6A0|unclassified	0.0604302013
+UniRef50_P04929: Histidine-rich glycoprotein	0.0604286081
+UniRef50_P04929: Histidine-rich glycoprotein|unclassified	0.0604286081
+UniRef50_D8LRE7	0.0604282641
+UniRef50_D8LRE7|unclassified	0.0604282641
+UniRef50_UPI00037F12EF: hypothetical protein	0.0604275087
+UniRef50_UPI00037F12EF: hypothetical protein|unclassified	0.0604275087
+UniRef50_A4WZX4	0.0604260171
+UniRef50_A4WZX4|unclassified	0.0604260171
+UniRef50_Q46DR6: Arginine--tRNA ligase	0.0604243703
+UniRef50_Q46DR6: Arginine--tRNA ligase|unclassified	0.0604243703
+UniRef50_UPI0003EC3629: PREDICTED: molybdenum cofactor biosynthesis protein 1-like	0.0604215748
+UniRef50_UPI0003EC3629: PREDICTED: molybdenum cofactor biosynthesis protein 1-like|unclassified	0.0604215748
+UniRef50_UPI0003754130: hypothetical protein	0.0604186064
+UniRef50_UPI0003754130: hypothetical protein|unclassified	0.0604186064
+UniRef50_UPI000248DDD0: sugar ABC transporter permease	0.0604178268
+UniRef50_UPI000248DDD0: sugar ABC transporter permease|unclassified	0.0604178268
+UniRef50_UPI000382999A: spore germination protein, partial	0.0604165214
+UniRef50_UPI000382999A: spore germination protein, partial|unclassified	0.0604165214
+UniRef50_R7I998	0.0604123709
+UniRef50_R7I998|unclassified	0.0604123709
+UniRef50_Q0F2R9	0.0603984533
+UniRef50_Q0F2R9|unclassified	0.0603984533
+UniRef50_UPI000371A0F6: hypothetical protein	0.0603979818
+UniRef50_UPI000371A0F6: hypothetical protein|unclassified	0.0603979818
+UniRef50_UPI000462B1AF: hypothetical protein	0.0603963451
+UniRef50_UPI000462B1AF: hypothetical protein|unclassified	0.0603963451
+UniRef50_Q52186: Phenoxybenzoate dioxygenase subunit beta	0.0603957007
+UniRef50_Q52186: Phenoxybenzoate dioxygenase subunit beta|unclassified	0.0603957007
+UniRef50_A0A023WMU7: Diguanylate cyclase	0.0603954316
+UniRef50_A0A023WMU7: Diguanylate cyclase|unclassified	0.0603954316
+UniRef50_UPI000262C9E4: alpha/beta hydrolase fold protein	0.0603924766
+UniRef50_UPI000262C9E4: alpha/beta hydrolase fold protein|unclassified	0.0603924766
+UniRef50_UPI00047233E6: hypothetical protein	0.0603919337
+UniRef50_UPI00047233E6: hypothetical protein|unclassified	0.0603919337
+UniRef50_UPI00038257CA: hypothetical protein	0.0603890716
+UniRef50_UPI00038257CA: hypothetical protein|unclassified	0.0603890716
+UniRef50_UPI00035FFAAF: hypothetical protein	0.0603879150
+UniRef50_UPI00035FFAAF: hypothetical protein|unclassified	0.0603879150
+UniRef50_UPI0003621FFD: transporter, partial	0.0603875614
+UniRef50_UPI0003621FFD: transporter, partial|unclassified	0.0603875614
+UniRef50_UPI00046686BA: hypothetical protein	0.0603867610
+UniRef50_UPI00046686BA: hypothetical protein|unclassified	0.0603867610
+UniRef50_S7TJZ4: YagBYeeUYfjZ family protein	0.0603858687
+UniRef50_S7TJZ4: YagBYeeUYfjZ family protein|unclassified	0.0603858687
+UniRef50_A0A058ZQU0	0.0603809007
+UniRef50_A0A058ZQU0|unclassified	0.0603809007
+UniRef50_N8WQG5	0.0603723409
+UniRef50_N8WQG5|unclassified	0.0603723409
+UniRef50_UPI000255C589: multidrug transporter	0.0603544006
+UniRef50_UPI000255C589: multidrug transporter|unclassified	0.0603544006
+UniRef50_W4L6Q9	0.0603501529
+UniRef50_W4L6Q9|unclassified	0.0603501529
+UniRef50_UPI00046A06AD: 4-aminobutyrate aminotransferase, partial	0.0603476854
+UniRef50_UPI00046A06AD: 4-aminobutyrate aminotransferase, partial|unclassified	0.0603476854
+UniRef50_UPI00025580BC: bile acid:sodium symporter	0.0603391646
+UniRef50_UPI00025580BC: bile acid:sodium symporter|unclassified	0.0603391646
+UniRef50_UPI0003B44826: hypothetical protein	0.0603377416
+UniRef50_UPI0003B44826: hypothetical protein|unclassified	0.0603377416
+UniRef50_Q6RJM2: Oxidoreductase (Fragment)	0.0603372270
+UniRef50_Q6RJM2: Oxidoreductase (Fragment)|unclassified	0.0603372270
+UniRef50_UPI00036E4FBB: hypothetical protein	0.0603356792
+UniRef50_UPI00036E4FBB: hypothetical protein|unclassified	0.0603356792
+UniRef50_UPI00037B398D: phosphate starvation protein PhoH	0.0603348475
+UniRef50_UPI00037B398D: phosphate starvation protein PhoH|unclassified	0.0603348475
+UniRef50_UPI00037E1B3A: hypothetical protein	0.0603326123
+UniRef50_UPI00037E1B3A: hypothetical protein|unclassified	0.0603326123
+UniRef50_UPI000366C9EA: hypothetical protein	0.0603308006
+UniRef50_UPI000366C9EA: hypothetical protein|unclassified	0.0603308006
+UniRef50_S2RSW8	0.0603281227
+UniRef50_S2RSW8|unclassified	0.0603281227
+UniRef50_H8J921	0.0603268036
+UniRef50_H8J921|unclassified	0.0603268036
+UniRef50_Q2RPW9: Phosphoglycolate phosphatase	0.0603241949
+UniRef50_Q2RPW9: Phosphoglycolate phosphatase|unclassified	0.0603241949
+UniRef50_UPI0003FBFD3E: hypothetical protein	0.0603225921
+UniRef50_UPI0003FBFD3E: hypothetical protein|unclassified	0.0603225921
+UniRef50_UPI00035DB1F1: hypothetical protein	0.0603136498
+UniRef50_UPI00035DB1F1: hypothetical protein|unclassified	0.0603136498
+UniRef50_A6C5N7	0.0603121221
+UniRef50_A6C5N7|unclassified	0.0603121221
+UniRef50_B6J6W3: tRNA pseudouridine synthase A	0.0603086111
+UniRef50_B6J6W3: tRNA pseudouridine synthase A|unclassified	0.0603086111
+UniRef50_A7ADI2	0.0603068008
+UniRef50_A7ADI2|unclassified	0.0603068008
+UniRef50_F0RR53: NERD domain protein	0.0603042521
+UniRef50_F0RR53: NERD domain protein|unclassified	0.0603042521
+UniRef50_A0A021X7S8	0.0603024991
+UniRef50_A0A021X7S8|unclassified	0.0603024991
+UniRef50_UPI00046CFBE6: acyl-CoA dehydrogenase	0.0603014304
+UniRef50_UPI00046CFBE6: acyl-CoA dehydrogenase|unclassified	0.0603014304
+UniRef50_UPI00046ECDA2: alcohol dehydrogenase, partial	0.0602974671
+UniRef50_UPI00046ECDA2: alcohol dehydrogenase, partial|unclassified	0.0602974671
+UniRef50_UPI00036E6E89: hypothetical protein	0.0602961294
+UniRef50_UPI00036E6E89: hypothetical protein|unclassified	0.0602961294
+UniRef50_UPI00035EC8A5: hypothetical protein	0.0602922034
+UniRef50_UPI00035EC8A5: hypothetical protein|unclassified	0.0602922034
+UniRef50_UPI0003837C29: PREDICTED: GTP-binding protein 8 isoform X1	0.0602906688
+UniRef50_UPI0003837C29: PREDICTED: GTP-binding protein 8 isoform X1|unclassified	0.0602906688
+UniRef50_O83041: Probable proline iminopeptidase	0.0602862267
+UniRef50_O83041: Probable proline iminopeptidase|unclassified	0.0602862267
+UniRef50_A8HVZ9: Predicted protein	0.0602846848
+UniRef50_A8HVZ9: Predicted protein|unclassified	0.0602846848
+UniRef50_X2GLM8	0.0602778564
+UniRef50_X2GLM8|unclassified	0.0602778564
+UniRef50_Q97BF6: Potassium-transporting ATPase B chain	0.0602702694
+UniRef50_Q97BF6: Potassium-transporting ATPase B chain|unclassified	0.0602702694
+UniRef50_Q8UBL6: Uroporphyrinogen decarboxylase	0.0602690620
+UniRef50_Q8UBL6: Uroporphyrinogen decarboxylase|unclassified	0.0602690620
+UniRef50_UPI000478B097: hypothetical protein	0.0602682703
+UniRef50_UPI000478B097: hypothetical protein|unclassified	0.0602682703
+UniRef50_UPI0003B694DF: NAD-dependent dehydratase	0.0602650059
+UniRef50_UPI0003B694DF: NAD-dependent dehydratase|unclassified	0.0602650059
+UniRef50_UPI000255B851: thiamine biosynthesis adenylyltransferase	0.0602585625
+UniRef50_UPI000255B851: thiamine biosynthesis adenylyltransferase|unclassified	0.0602585625
+UniRef50_UPI0002DA479C: hypothetical protein	0.0602567593
+UniRef50_UPI0002DA479C: hypothetical protein|unclassified	0.0602567593
+UniRef50_Q5L5Q6: Leucine--tRNA ligase	0.0602563682
+UniRef50_Q5L5Q6: Leucine--tRNA ligase|unclassified	0.0602563682
+UniRef50_W0AKF5: Exo-poly-alpha-D-galacturonosidase	0.0602544161
+UniRef50_W0AKF5: Exo-poly-alpha-D-galacturonosidase|unclassified	0.0602544161
+UniRef50_Q8X3G3: Hypothetical membrane protein	0.0602481648
+UniRef50_Q8X3G3: Hypothetical membrane protein|unclassified	0.0602481648
+UniRef50_UPI00036B2751: hypothetical protein	0.0602470555
+UniRef50_UPI00036B2751: hypothetical protein|unclassified	0.0602470555
+UniRef50_UPI000465E8C1: hypothetical protein	0.0602461850
+UniRef50_UPI000465E8C1: hypothetical protein|unclassified	0.0602461850
+UniRef50_A0A023CZN1: Transcription termination factor Rho	0.0602449381
+UniRef50_A0A023CZN1: Transcription termination factor Rho|unclassified	0.0602449381
+UniRef50_UPI000347A98E: hypothetical protein	0.0602432380
+UniRef50_UPI000347A98E: hypothetical protein|unclassified	0.0602432380
+UniRef50_UPI0003713593: hypothetical protein	0.0602431366
+UniRef50_UPI0003713593: hypothetical protein|unclassified	0.0602431366
+UniRef50_A0A034UP95	0.0602417348
+UniRef50_A0A034UP95|unclassified	0.0602417348
+UniRef50_V4KVH7: ABC transporter permease	0.0602407265
+UniRef50_V4KVH7: ABC transporter permease|unclassified	0.0602407265
+UniRef50_UPI00037E865A: hypothetical protein	0.0602336682
+UniRef50_UPI00037E865A: hypothetical protein|unclassified	0.0602336682
+UniRef50_UPI0003504265	0.0602291256
+UniRef50_UPI0003504265|unclassified	0.0602291256
+UniRef50_J8LE52: Flp pilus assembly protein CpaB	0.0602284071
+UniRef50_J8LE52: Flp pilus assembly protein CpaB|unclassified	0.0602284071
+UniRef50_UPI000299F74C: family 2 glycosyl transferase	0.0602235156
+UniRef50_UPI000299F74C: family 2 glycosyl transferase|unclassified	0.0602235156
+UniRef50_UPI000345C5CB: hypothetical protein	0.0602204689
+UniRef50_UPI000345C5CB: hypothetical protein|unclassified	0.0602204689
+UniRef50_UPI0002FE4D0A: hypothetical protein	0.0602201356
+UniRef50_UPI0002FE4D0A: hypothetical protein|unclassified	0.0602201356
+UniRef50_P07205: Phosphoglycerate kinase 2	0.0602173133
+UniRef50_P07205: Phosphoglycerate kinase 2|unclassified	0.0602173133
+UniRef50_UPI000464E5E5: recombination factor protein RarA, partial	0.0602153524
+UniRef50_UPI000464E5E5: recombination factor protein RarA, partial|unclassified	0.0602153524
+UniRef50_B8D262: Phytoene dehydrogenase N terminal region	0.0602148046
+UniRef50_B8D262: Phytoene dehydrogenase N terminal region|unclassified	0.0602148046
+UniRef50_A8YWE6: Formamidopyrimidine-DNA glycosylase	0.0602093221
+UniRef50_A8YWE6: Formamidopyrimidine-DNA glycosylase|unclassified	0.0602093221
+UniRef50_W4RJS3: Transporter	0.0602083147
+UniRef50_W4RJS3: Transporter|unclassified	0.0602083147
+UniRef50_UPI0004650C50: hypothetical protein	0.0602056204
+UniRef50_UPI0004650C50: hypothetical protein|unclassified	0.0602056204
+UniRef50_UPI0004692682: aminotransferase	0.0602046002
+UniRef50_UPI0004692682: aminotransferase|unclassified	0.0602046002
+UniRef50_UPI000402C450: hypothetical protein	0.0601951434
+UniRef50_UPI000402C450: hypothetical protein|unclassified	0.0601951434
+UniRef50_UPI0003828185: hypothetical protein	0.0601916442
+UniRef50_UPI0003828185: hypothetical protein|unclassified	0.0601916442
+UniRef50_UPI0004048733: diaminopimelate decarboxylase	0.0601902529
+UniRef50_UPI0004048733: diaminopimelate decarboxylase|unclassified	0.0601902529
+UniRef50_UPI0002DD3E09: bactoprenol glucosyl transferase	0.0601880193
+UniRef50_UPI0002DD3E09: bactoprenol glucosyl transferase|unclassified	0.0601880193
+UniRef50_UPI0003FE4E90: transcriptional regulator	0.0601849332
+UniRef50_UPI0003FE4E90: transcriptional regulator|unclassified	0.0601849332
+UniRef50_F6XR87	0.0601784658
+UniRef50_F6XR87|unclassified	0.0601784658
+UniRef50_B4FZA3	0.0601780965
+UniRef50_B4FZA3|unclassified	0.0601780965
+UniRef50_M1ZX24: Metallo-beta-lactamase family protein (Fragment)	0.0601760341
+UniRef50_M1ZX24: Metallo-beta-lactamase family protein (Fragment)|unclassified	0.0601760341
+UniRef50_X0T9F3: Marine sediment metagenome DNA, contig: S01H1_L07478	0.0601757248
+UniRef50_X0T9F3: Marine sediment metagenome DNA, contig: S01H1_L07478|unclassified	0.0601757248
+UniRef50_A3CNZ5: Lipopolysaccharide biosynthesis protein, putative	0.0601755847
+UniRef50_A3CNZ5: Lipopolysaccharide biosynthesis protein, putative|unclassified	0.0601755847
+UniRef50_Q9F5F6	0.0601734050
+UniRef50_Q9F5F6|unclassified	0.0601734050
+UniRef50_UPI00047E6697: hypothetical protein	0.0601731424
+UniRef50_UPI00047E6697: hypothetical protein|unclassified	0.0601731424
+UniRef50_K8AXI0: Functional role page for Anaerobic nitric oxide reductase transcription regulator NorR	0.0601690654
+UniRef50_K8AXI0: Functional role page for Anaerobic nitric oxide reductase transcription regulator NorR|unclassified	0.0601690654
+UniRef50_A3TYB7: 63 kDa protein	0.0601683048
+UniRef50_A3TYB7: 63 kDa protein|unclassified	0.0601683048
+UniRef50_UPI000463D58B: hypothetical protein	0.0601656679
+UniRef50_UPI000463D58B: hypothetical protein|unclassified	0.0601656679
+UniRef50_UPI000472F2A6: nitroreductase	0.0601645841
+UniRef50_UPI000472F2A6: nitroreductase|unclassified	0.0601645841
+UniRef50_Q18B06: UPF0758 protein CD630_11440	0.0601608551
+UniRef50_Q18B06: UPF0758 protein CD630_11440|unclassified	0.0601608551
+UniRef50_A4ILX5: CtaG protein	0.0601603570
+UniRef50_A4ILX5: CtaG protein|unclassified	0.0601603570
+UniRef50_UPI00047AD2F6: 3-beta hydroxysteroid dehydrogenase	0.0601550490
+UniRef50_UPI00047AD2F6: 3-beta hydroxysteroid dehydrogenase|unclassified	0.0601550490
+UniRef50_A3JR03: MORN motif	0.0601529616
+UniRef50_A3JR03: MORN motif|unclassified	0.0601529616
+UniRef50_G4N9W5	0.0601529294
+UniRef50_G4N9W5|unclassified	0.0601529294
+UniRef50_F3ZNI3: YbbR family protein	0.0601493627
+UniRef50_F3ZNI3: YbbR family protein|unclassified	0.0601493627
+UniRef50_R5BEQ3	0.0601469768
+UniRef50_R5BEQ3|unclassified	0.0601469768
+UniRef50_UPI0002629D1D: peptide ABC transporter, ATP-binding protein	0.0601466671
+UniRef50_UPI0002629D1D: peptide ABC transporter, ATP-binding protein|unclassified	0.0601466671
+UniRef50_Q3JKN7	0.0601457849
+UniRef50_Q3JKN7|unclassified	0.0601457849
+UniRef50_UPI00036B39EC: hypothetical protein	0.0601413687
+UniRef50_UPI00036B39EC: hypothetical protein|unclassified	0.0601413687
+UniRef50_M7TFP2: Putative tho complex subunit 2 protein	0.0601406660
+UniRef50_M7TFP2: Putative tho complex subunit 2 protein|unclassified	0.0601406660
+UniRef50_UPI0003F51B8E: hypothetical protein	0.0601397701
+UniRef50_UPI0003F51B8E: hypothetical protein|unclassified	0.0601397701
+UniRef50_Q2IVH4: Pyridoxal-5'-phosphate-dependent enzyme, beta subunit	0.0601349083
+UniRef50_Q2IVH4: Pyridoxal-5'-phosphate-dependent enzyme, beta subunit|unclassified	0.0601349083
+UniRef50_Q6MCC8: Leucine--tRNA ligase	0.0601321096
+UniRef50_Q6MCC8: Leucine--tRNA ligase|unclassified	0.0601321096
+UniRef50_UPI00036DD83E: hypothetical protein	0.0601308015
+UniRef50_UPI00036DD83E: hypothetical protein|unclassified	0.0601308015
+UniRef50_UPI0004646F79: cysteine methyltransferase	0.0601255524
+UniRef50_UPI0004646F79: cysteine methyltransferase|unclassified	0.0601255524
+UniRef50_B5EGN2: Phosphoheptose isomerase	0.0601247967
+UniRef50_B5EGN2: Phosphoheptose isomerase|unclassified	0.0601247967
+UniRef50_UPI00030AEBF5: hypothetical protein	0.0601207814
+UniRef50_UPI00030AEBF5: hypothetical protein|unclassified	0.0601207814
+UniRef50_G2RV84: Cytochrome c oxidase assembly factor CtaG	0.0601205333
+UniRef50_G2RV84: Cytochrome c oxidase assembly factor CtaG|unclassified	0.0601205333
+UniRef50_UPI0004708067: hypothetical protein	0.0601189109
+UniRef50_UPI0004708067: hypothetical protein|unclassified	0.0601189109
+UniRef50_U5NYY0: Lysophospholipase	0.0601123525
+UniRef50_U5NYY0: Lysophospholipase|unclassified	0.0601123525
+UniRef50_W8L926: Pilus assembly protein PilO	0.0601096546
+UniRef50_W8L926: Pilus assembly protein PilO|unclassified	0.0601096546
+UniRef50_UPI00047C92E9: chromosomal replication initiation protein	0.0601070199
+UniRef50_UPI00047C92E9: chromosomal replication initiation protein|unclassified	0.0601070199
+UniRef50_Q7UEV1: UDP-3-O-acylglucosamine N-acyltransferase	0.0601060681
+UniRef50_Q7UEV1: UDP-3-O-acylglucosamine N-acyltransferase|unclassified	0.0601060681
+UniRef50_UPI0002659A8A: PREDICTED: sorbitol dehydrogenase-like	0.0601050623
+UniRef50_UPI0002659A8A: PREDICTED: sorbitol dehydrogenase-like|unclassified	0.0601050623
+UniRef50_B0PA90: Sugar-binding domain protein	0.0601023720
+UniRef50_B0PA90: Sugar-binding domain protein|unclassified	0.0601023720
+UniRef50_B3PEU9: Phosphate acyltransferase	0.0600978457
+UniRef50_B3PEU9: Phosphate acyltransferase|unclassified	0.0600978457
+UniRef50_UPI000380D7B4: hypothetical protein	0.0600974884
+UniRef50_UPI000380D7B4: hypothetical protein|unclassified	0.0600974884
+UniRef50_D9QLK3: YicC domain protein	0.0600963926
+UniRef50_D9QLK3: YicC domain protein|unclassified	0.0600963926
+UniRef50_X1MFR3: Marine sediment metagenome DNA, contig: S06H3_L02427	0.0600921470
+UniRef50_X1MFR3: Marine sediment metagenome DNA, contig: S06H3_L02427|unclassified	0.0600921470
+UniRef50_A0A023NMG8: Fimbrial assembly protein	0.0600882486
+UniRef50_A0A023NMG8: Fimbrial assembly protein|unclassified	0.0600882486
+UniRef50_A1R5F0: Ribosomal RNA small subunit methyltransferase H	0.0600879069
+UniRef50_A1R5F0: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0600879069
+UniRef50_UPI0002B4176A	0.0600778219
+UniRef50_UPI0002B4176A|unclassified	0.0600778219
+UniRef50_UPI0004411828: hypothetical protein AURDEDRAFT_80220	0.0600706893
+UniRef50_UPI0004411828: hypothetical protein AURDEDRAFT_80220|unclassified	0.0600706893
+UniRef50_G5NYU3: Major tail sheath protein	0.0600646865
+UniRef50_G5NYU3: Major tail sheath protein|unclassified	0.0600646865
+UniRef50_B7IH88: CTP synthase	0.0600623622
+UniRef50_B7IH88: CTP synthase|unclassified	0.0600623622
+UniRef50_UPI00046B36E1: PREDICTED: testis anion transporter 1	0.0600618740
+UniRef50_UPI00046B36E1: PREDICTED: testis anion transporter 1|unclassified	0.0600618740
+UniRef50_E3E667	0.0600579907
+UniRef50_E3E667|unclassified	0.0600579907
+UniRef50_A1ZV16	0.0600544854
+UniRef50_A1ZV16|unclassified	0.0600544854
+UniRef50_UPI00047CBF8E: hypothetical protein	0.0600529958
+UniRef50_UPI00047CBF8E: hypothetical protein|unclassified	0.0600529958
+UniRef50_E6PC05	0.0600488074
+UniRef50_E6PC05|unclassified	0.0600488074
+UniRef50_P60399: Ribosomal RNA small subunit methyltransferase H	0.0600437367
+UniRef50_P60399: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0600437367
+UniRef50_UPI00034AB6AD: ABC transporter	0.0600424882
+UniRef50_UPI00034AB6AD: ABC transporter|unclassified	0.0600424882
+UniRef50_UPI0003061B9B: hypothetical protein	0.0600421387
+UniRef50_UPI0003061B9B: hypothetical protein|unclassified	0.0600421387
+UniRef50_UPI000467E9CF: MULTISPECIES: hypothetical protein	0.0600395664
+UniRef50_UPI000467E9CF: MULTISPECIES: hypothetical protein|unclassified	0.0600395664
+UniRef50_B8J0B1: Phosphoheptose isomerase	0.0600207824
+UniRef50_B8J0B1: Phosphoheptose isomerase|unclassified	0.0600207824
+UniRef50_UPI00031200E9: hypothetical protein	0.0600203342
+UniRef50_UPI00031200E9: hypothetical protein|unclassified	0.0600203342
+UniRef50_UPI00036282B2: hypothetical protein	0.0600192514
+UniRef50_UPI00036282B2: hypothetical protein|unclassified	0.0600192514
+UniRef50_Q0ALX8: Holliday junction ATP-dependent DNA helicase RuvA	0.0600164686
+UniRef50_Q0ALX8: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.0600164686
+UniRef50_P15259: Phosphoglycerate mutase 2	0.0600153609
+UniRef50_P15259: Phosphoglycerate mutase 2|unclassified	0.0600153609
+UniRef50_B4SDX3: Leucine--tRNA ligase	0.0600149238
+UniRef50_B4SDX3: Leucine--tRNA ligase|unclassified	0.0600149238
+UniRef50_UPI000349E85B: hypothetical protein	0.0600148233
+UniRef50_UPI000349E85B: hypothetical protein|unclassified	0.0600148233
+UniRef50_U6KDN7	0.0600134527
+UniRef50_U6KDN7|unclassified	0.0600134527
+UniRef50_UPI00037C4F04: hypothetical protein	0.0600118752
+UniRef50_UPI00037C4F04: hypothetical protein|unclassified	0.0600118752
+UniRef50_H3V7G8	0.0600116465
+UniRef50_H3V7G8|unclassified	0.0600116465
+UniRef50_Q9PL68: Methionine aminopeptidase	0.0600109410
+UniRef50_Q9PL68: Methionine aminopeptidase|unclassified	0.0600109410
+UniRef50_UPI00046311A7: alpha/beta hydrolase	0.0600062676
+UniRef50_UPI00046311A7: alpha/beta hydrolase|unclassified	0.0600062676
+UniRef50_UPI000302D8FA: hypothetical protein	0.0600058975
+UniRef50_UPI000302D8FA: hypothetical protein|unclassified	0.0600058975
+UniRef50_UPI00038213D3: hypothetical protein	0.0600047653
+UniRef50_UPI00038213D3: hypothetical protein|unclassified	0.0600047653
+UniRef50_UPI00047522DD: hypothetical protein	0.0600022824
+UniRef50_UPI00047522DD: hypothetical protein|unclassified	0.0600022824
+UniRef50_A1S255: Cytochrome c-type biogenesis protein CcmH	0.0600017019
+UniRef50_A1S255: Cytochrome c-type biogenesis protein CcmH|unclassified	0.0600017019
+UniRef50_UPI0003B6C0E2: ATPase	0.0600003510
+UniRef50_UPI0003B6C0E2: ATPase|unclassified	0.0600003510
+UniRef50_B8CY71: Lon protease	0.0599977667
+UniRef50_B8CY71: Lon protease|unclassified	0.0599977667
+UniRef50_UPI00019B35BE: hypothetical protein	0.0599965794
+UniRef50_UPI00019B35BE: hypothetical protein|unclassified	0.0599965794
+UniRef50_UPI0003B32011: cytidylate kinase	0.0599956830
+UniRef50_UPI0003B32011: cytidylate kinase|unclassified	0.0599956830
+UniRef50_UPI00038198F5: MULTISPECIES: hypothetical protein	0.0599928150
+UniRef50_UPI00038198F5: MULTISPECIES: hypothetical protein|unclassified	0.0599928150
+UniRef50_C0QWR6: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.0599863083
+UniRef50_C0QWR6: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.0599863083
+UniRef50_UPI0003B4674E: peptide ABC transporter permease	0.0599831362
+UniRef50_UPI0003B4674E: peptide ABC transporter permease|unclassified	0.0599831362
+UniRef50_Q1AS32: N-acetyl-gamma-glutamyl-phosphate reductase	0.0599815956
+UniRef50_Q1AS32: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.0599815956
+UniRef50_UPI000368E5B6: hypothetical protein	0.0599790962
+UniRef50_UPI000368E5B6: hypothetical protein|unclassified	0.0599790962
+UniRef50_UPI00037D06C7: ABC transporter ATP-binding protein	0.0599711530
+UniRef50_UPI00037D06C7: ABC transporter ATP-binding protein|unclassified	0.0599711530
+UniRef50_P17618: Riboflavin biosynthesis protein RibD	0.0599695875
+UniRef50_P17618: Riboflavin biosynthesis protein RibD|unclassified	0.0599695875
+UniRef50_UPI0002E38CF9: dehydrogenase	0.0599660317
+UniRef50_UPI0002E38CF9: dehydrogenase|unclassified	0.0599660317
+UniRef50_X5MLH7: Putative phosphatase	0.0599609953
+UniRef50_X5MLH7: Putative phosphatase|unclassified	0.0599609953
+UniRef50_E1ZRJ7: Expressed protein	0.0599606684
+UniRef50_E1ZRJ7: Expressed protein|unclassified	0.0599606684
+UniRef50_P50360	0.0599559276
+UniRef50_P50360|unclassified	0.0599559276
+UniRef50_A0A024L331	0.0599504827
+UniRef50_A0A024L331|unclassified	0.0599504827
+UniRef50_UPI000368AA08: hypothetical protein	0.0599384512
+UniRef50_UPI000368AA08: hypothetical protein|unclassified	0.0599384512
+UniRef50_A4S6V1: Predicted protein	0.0599376585
+UniRef50_A4S6V1: Predicted protein|unclassified	0.0599376585
+UniRef50_D6ZIX3: ABC transporter substrate binding protein	0.0599363911
+UniRef50_D6ZIX3: ABC transporter substrate binding protein|unclassified	0.0599363911
+UniRef50_W1PV74	0.0599294660
+UniRef50_W1PV74|unclassified	0.0599294660
+UniRef50_Q7U8I1: Fumarate hydratase class II	0.0599293787
+UniRef50_Q7U8I1: Fumarate hydratase class II|unclassified	0.0599293787
+UniRef50_R7D072	0.0599256824
+UniRef50_R7D072|unclassified	0.0599256824
+UniRef50_UPI00046405F0: transcriptional regulator	0.0599241168
+UniRef50_UPI00046405F0: transcriptional regulator|unclassified	0.0599241168
+UniRef50_UPI0003C15811	0.0599190868
+UniRef50_UPI0003C15811|unclassified	0.0599190868
+UniRef50_R6PHT7	0.0599183399
+UniRef50_R6PHT7|unclassified	0.0599183399
+UniRef50_UPI000400C575: cell division protein FtsW	0.0599177125
+UniRef50_UPI000400C575: cell division protein FtsW|unclassified	0.0599177125
+UniRef50_UPI000443F0E6: PREDICTED: mucin-1-like	0.0599166519
+UniRef50_UPI000443F0E6: PREDICTED: mucin-1-like|unclassified	0.0599166519
+UniRef50_UPI000368ABD7: hypothetical protein, partial	0.0599152620
+UniRef50_UPI000368ABD7: hypothetical protein, partial|unclassified	0.0599152620
+UniRef50_V4RHG5: Metallo-beta-lactamase superfamily protein	0.0599095734
+UniRef50_V4RHG5: Metallo-beta-lactamase superfamily protein|unclassified	0.0599095734
+UniRef50_F0GIC2: Putative exported alkaline phosphatase (Fragment)	0.0599086169
+UniRef50_F0GIC2: Putative exported alkaline phosphatase (Fragment)|unclassified	0.0599086169
+UniRef50_UPI000362B60C: hypothetical protein	0.0599057222
+UniRef50_UPI000362B60C: hypothetical protein|unclassified	0.0599057222
+UniRef50_UPI00037D4090: hypothetical protein	0.0599013402
+UniRef50_UPI00037D4090: hypothetical protein|unclassified	0.0599013402
+UniRef50_UPI000344B62A: hypothetical protein	0.0599012478
+UniRef50_UPI000344B62A: hypothetical protein|unclassified	0.0599012478
+UniRef50_Q833Y3: ADP-dependent (S)-NAD(P)H-hydrate dehydratase	0.0598992552
+UniRef50_Q833Y3: ADP-dependent (S)-NAD(P)H-hydrate dehydratase|unclassified	0.0598992552
+UniRef50_UPI0004788EA7: multidrug transporter	0.0598950061
+UniRef50_UPI0004788EA7: multidrug transporter|unclassified	0.0598950061
+UniRef50_Q9SZX3: Argininosuccinate synthase, chloroplastic	0.0598922964
+UniRef50_Q9SZX3: Argininosuccinate synthase, chloroplastic|unclassified	0.0598922964
+UniRef50_UPI00037210F0: hypothetical protein, partial	0.0598913675
+UniRef50_UPI00037210F0: hypothetical protein, partial|unclassified	0.0598913675
+UniRef50_Q37370: Cytochrome c oxidase subunit 1+2	0.0598894211
+UniRef50_Q37370: Cytochrome c oxidase subunit 1+2|unclassified	0.0598894211
+UniRef50_U1F6C3: Adhesion protein-associated protein	0.0598893772
+UniRef50_U1F6C3: Adhesion protein-associated protein|unclassified	0.0598893772
+UniRef50_UPI00036CAA44: hypothetical protein	0.0598887340
+UniRef50_UPI00036CAA44: hypothetical protein|unclassified	0.0598887340
+UniRef50_UPI000374BD64: hypothetical protein	0.0598856422
+UniRef50_UPI000374BD64: hypothetical protein|unclassified	0.0598856422
+UniRef50_UPI0002490C9E: glycine/betaine ABC transporter	0.0598851879
+UniRef50_UPI0002490C9E: glycine/betaine ABC transporter|unclassified	0.0598851879
+UniRef50_UPI00037D8CA3: hypothetical protein	0.0598814064
+UniRef50_UPI00037D8CA3: hypothetical protein|unclassified	0.0598814064
+UniRef50_UPI0003B338FC: ATPase AAA	0.0598789043
+UniRef50_UPI0003B338FC: ATPase AAA|unclassified	0.0598789043
+UniRef50_D3SD47: Pilus assembly protein PilO	0.0598779150
+UniRef50_D3SD47: Pilus assembly protein PilO|unclassified	0.0598779150
+UniRef50_UPI0002EF5B2A: hypothetical protein	0.0598728538
+UniRef50_UPI0002EF5B2A: hypothetical protein|unclassified	0.0598728538
+UniRef50_UPI0002E55EAF: hypothetical protein	0.0598717529
+UniRef50_UPI0002E55EAF: hypothetical protein|unclassified	0.0598717529
+UniRef50_Q56841: 2-(S)-hydroxypropyl-CoM dehydrogenase	0.0598715886
+UniRef50_Q56841: 2-(S)-hydroxypropyl-CoM dehydrogenase|unclassified	0.0598715886
+UniRef50_UPI000471C706: UDP pyrophosphate synthase	0.0598685186
+UniRef50_UPI000471C706: UDP pyrophosphate synthase|unclassified	0.0598685186
+UniRef50_UPI0002E09A26: hypothetical protein	0.0598680711
+UniRef50_UPI0002E09A26: hypothetical protein|unclassified	0.0598680711
+UniRef50_A7GRB5: Short-chain dehydrogenase/reductase SDR	0.0598679027
+UniRef50_A7GRB5: Short-chain dehydrogenase/reductase SDR|unclassified	0.0598679027
+UniRef50_Q16134: Electron transfer flavoprotein-ubiquinone oxidoreductase, mitochondrial	0.0598678344
+UniRef50_Q16134: Electron transfer flavoprotein-ubiquinone oxidoreductase, mitochondrial|unclassified	0.0598678344
+UniRef50_L8F9A4: PE-PGRS family protein	0.0598656653
+UniRef50_L8F9A4: PE-PGRS family protein|unclassified	0.0598656653
+UniRef50_K2J4R1	0.0598623766
+UniRef50_K2J4R1|unclassified	0.0598623766
+UniRef50_B2IEM1: Diaminopimelate epimerase	0.0598612529
+UniRef50_B2IEM1: Diaminopimelate epimerase|unclassified	0.0598612529
+UniRef50_UPI0004784639: ATPase	0.0598571742
+UniRef50_UPI0004784639: ATPase|unclassified	0.0598571742
+UniRef50_Q217E0	0.0598549813
+UniRef50_Q217E0|unclassified	0.0598549813
+UniRef50_H2IE58: Ethanolamine utilization protein EutJ	0.0598525878
+UniRef50_H2IE58: Ethanolamine utilization protein EutJ|unclassified	0.0598525878
+UniRef50_UPI000225A96D: DNA replication and repair protein	0.0598507998
+UniRef50_UPI000225A96D: DNA replication and repair protein|unclassified	0.0598507998
+UniRef50_Q7NPA4: Glr0153 protein	0.0598502891
+UniRef50_Q7NPA4: Glr0153 protein|unclassified	0.0598502891
+UniRef50_UPI0004635200: oxidoreductase	0.0598496091
+UniRef50_UPI0004635200: oxidoreductase|unclassified	0.0598496091
+UniRef50_UPI00016C4D75: hypothetical protein	0.0598475801
+UniRef50_UPI00016C4D75: hypothetical protein|unclassified	0.0598475801
+UniRef50_Q83E10: Cytidylate kinase	0.0598438554
+UniRef50_Q83E10: Cytidylate kinase|unclassified	0.0598438554
+UniRef50_K0RCN5	0.0598365967
+UniRef50_K0RCN5|unclassified	0.0598365967
+UniRef50_B8DLC5: CreA family protein	0.0598297627
+UniRef50_B8DLC5: CreA family protein|unclassified	0.0598297627
+UniRef50_UPI0003B438E8: peptide ABC transporter substrate-binding protein	0.0598225891
+UniRef50_UPI0003B438E8: peptide ABC transporter substrate-binding protein|unclassified	0.0598225891
+UniRef50_UPI0003742109: hypothetical protein	0.0598177816
+UniRef50_UPI0003742109: hypothetical protein|unclassified	0.0598177816
+UniRef50_UPI00037397C6: hypothetical protein	0.0598132212
+UniRef50_UPI00037397C6: hypothetical protein|unclassified	0.0598132212
+UniRef50_F6EDA0: Beta-lactamase domain protein	0.0598103918
+UniRef50_F6EDA0: Beta-lactamase domain protein|unclassified	0.0598103918
+UniRef50_UPI00037FEAB4: hypothetical protein	0.0598097567
+UniRef50_UPI00037FEAB4: hypothetical protein|unclassified	0.0598097567
+UniRef50_S6PY42: Sensory box/GGDEF domain protein (Fragment)	0.0598081625
+UniRef50_S6PY42: Sensory box/GGDEF domain protein (Fragment)|unclassified	0.0598081625
+UniRef50_UPI0003B5F041: 3-ketoacyl-ACP reductase	0.0598061337
+UniRef50_UPI0003B5F041: 3-ketoacyl-ACP reductase|unclassified	0.0598061337
+UniRef50_UPI0001FFDEE7: putative serine/threonine protein kinase, partial	0.0598057023
+UniRef50_UPI0001FFDEE7: putative serine/threonine protein kinase, partial|unclassified	0.0598057023
+UniRef50_Q1GDP4	0.0598032250
+UniRef50_Q1GDP4|unclassified	0.0598032250
+UniRef50_A0KPY6: Secreted protein	0.0597992100
+UniRef50_A0KPY6: Secreted protein|unclassified	0.0597992100
+UniRef50_UPI000237C4AF: aminotransferase	0.0597973660
+UniRef50_UPI000237C4AF: aminotransferase|unclassified	0.0597973660
+UniRef50_UPI0003B3D4F9: transcriptional regulator	0.0597963933
+UniRef50_UPI0003B3D4F9: transcriptional regulator|unclassified	0.0597963933
+UniRef50_A3K7V2	0.0597782113
+UniRef50_A3K7V2|unclassified	0.0597782113
+UniRef50_UPI00047C7627: glutathione synthetase	0.0597776952
+UniRef50_UPI00047C7627: glutathione synthetase|unclassified	0.0597776952
+UniRef50_UPI0003C11500: PREDICTED: l-2-hydroxyglutarate dehydrogenase, mitochondrial isoform X2	0.0597741155
+UniRef50_UPI0003C11500: PREDICTED: l-2-hydroxyglutarate dehydrogenase, mitochondrial isoform X2|unclassified	0.0597741155
+UniRef50_K1GVU9	0.0597736667
+UniRef50_K1GVU9|unclassified	0.0597736667
+UniRef50_UPI0003752C3E: hypothetical protein	0.0597712910
+UniRef50_UPI0003752C3E: hypothetical protein|unclassified	0.0597712910
+UniRef50_UPI000464EA57: proline racemase	0.0597664528
+UniRef50_UPI000464EA57: proline racemase|unclassified	0.0597664528
+UniRef50_A4SUD8: TraN protein	0.0597643860
+UniRef50_A4SUD8: TraN protein|unclassified	0.0597643860
+UniRef50_UPI00047A8E64: ABC transporter	0.0597590744
+UniRef50_UPI00047A8E64: ABC transporter|unclassified	0.0597590744
+UniRef50_F7ZLU7	0.0597590171
+UniRef50_F7ZLU7|unclassified	0.0597590171
+UniRef50_UPI0001746414: glycogen debranching protein	0.0597567272
+UniRef50_UPI0001746414: glycogen debranching protein|unclassified	0.0597567272
+UniRef50_UPI00036F334D: hypothetical protein	0.0597533486
+UniRef50_UPI00036F334D: hypothetical protein|unclassified	0.0597533486
+UniRef50_UPI000469A8C9: hypothetical protein, partial	0.0597333940
+UniRef50_UPI000469A8C9: hypothetical protein, partial|unclassified	0.0597333940
+UniRef50_Q16AG7	0.0597325783
+UniRef50_Q16AG7|unclassified	0.0597325783
+UniRef50_UPI0004762D09: tRNA 2-selenouridine synthase	0.0597308806
+UniRef50_UPI0004762D09: tRNA 2-selenouridine synthase|unclassified	0.0597308806
+UniRef50_R6R8J0: Cobalt transport protein	0.0597306035
+UniRef50_R6R8J0: Cobalt transport protein|unclassified	0.0597306035
+UniRef50_Q03SL6: Triosephosphate isomerase	0.0597300672
+UniRef50_Q03SL6: Triosephosphate isomerase|unclassified	0.0597300672
+UniRef50_UPI00037A79B6: hypothetical protein	0.0597298755
+UniRef50_UPI00037A79B6: hypothetical protein|unclassified	0.0597298755
+UniRef50_UPI00035A2A22: PREDICTED: dehydrogenase/reductase SDR family member 4-like	0.0597217865
+UniRef50_UPI00035A2A22: PREDICTED: dehydrogenase/reductase SDR family member 4-like|unclassified	0.0597217865
+UniRef50_A6UPH7: Peroxiredoxin	0.0597202893
+UniRef50_A6UPH7: Peroxiredoxin|unclassified	0.0597202893
+UniRef50_Q8K912: Mannitol-1-phosphate 5-dehydrogenase	0.0597100951
+UniRef50_Q8K912: Mannitol-1-phosphate 5-dehydrogenase|unclassified	0.0597100951
+UniRef50_J9NZJ0	0.0597082220
+UniRef50_J9NZJ0|unclassified	0.0597082220
+UniRef50_UPI0004417687: hypothetical protein PUNSTDRAFT_126308	0.0597073731
+UniRef50_UPI0004417687: hypothetical protein PUNSTDRAFT_126308|unclassified	0.0597073731
+UniRef50_UPI00041F306E: hypothetical protein	0.0597045528
+UniRef50_UPI00041F306E: hypothetical protein|unclassified	0.0597045528
+UniRef50_UPI0004744D96: hypothetical protein	0.0596997624
+UniRef50_UPI0004744D96: hypothetical protein|unclassified	0.0596997624
+UniRef50_UPI00037303BE: hypothetical protein, partial	0.0596946037
+UniRef50_UPI00037303BE: hypothetical protein, partial|unclassified	0.0596946037
+UniRef50_Q5L310: Histidine ammonia-lyase	0.0596933782
+UniRef50_Q5L310: Histidine ammonia-lyase|unclassified	0.0596933782
+UniRef50_UPI0003B54857: endonuclease	0.0596931889
+UniRef50_UPI0003B54857: endonuclease|unclassified	0.0596931889
+UniRef50_M0XFB3	0.0596922759
+UniRef50_M0XFB3|unclassified	0.0596922759
+UniRef50_Q73NQ7: Alanine racemase	0.0596760246
+UniRef50_Q73NQ7: Alanine racemase|unclassified	0.0596760246
+UniRef50_UPI0004121413: hypothetical protein	0.0596744203
+UniRef50_UPI0004121413: hypothetical protein|unclassified	0.0596744203
+UniRef50_E8R4T6: Beta-Ig-H3/fasciclin	0.0596715502
+UniRef50_E8R4T6: Beta-Ig-H3/fasciclin|unclassified	0.0596715502
+UniRef50_H6NKR1	0.0596712096
+UniRef50_H6NKR1|unclassified	0.0596712096
+UniRef50_UPI00036F176B: hypothetical protein	0.0596709089
+UniRef50_UPI00036F176B: hypothetical protein|unclassified	0.0596709089
+UniRef50_W8T3Y3	0.0596703701
+UniRef50_W8T3Y3|unclassified	0.0596703701
+UniRef50_UPI00036C9C79: hypothetical protein	0.0596697865
+UniRef50_UPI00036C9C79: hypothetical protein|unclassified	0.0596697865
+UniRef50_UPI0004676C4B: hypothetical protein	0.0596662428
+UniRef50_UPI0004676C4B: hypothetical protein|unclassified	0.0596662428
+UniRef50_UPI0003B62AA1: MULTISPECIES: short-chain dehydrogenase	0.0596656812
+UniRef50_UPI0003B62AA1: MULTISPECIES: short-chain dehydrogenase|unclassified	0.0596656812
+UniRef50_Q8DKA0: Triosephosphate isomerase	0.0596646156
+UniRef50_Q8DKA0: Triosephosphate isomerase|unclassified	0.0596646156
+UniRef50_UPI00029A45C7: alkyl hydroperoxide reductase/ thiol specific antioxidant/ mal allergen	0.0596599415
+UniRef50_UPI00029A45C7: alkyl hydroperoxide reductase/ thiol specific antioxidant/ mal allergen|unclassified	0.0596599415
+UniRef50_W5WKE2	0.0596563130
+UniRef50_W5WKE2|unclassified	0.0596563130
+UniRef50_I3TLQ6: Stress-induced protein	0.0596561260
+UniRef50_I3TLQ6: Stress-induced protein|unclassified	0.0596561260
+UniRef50_UPI000255EFE1: hypothetical protein	0.0596504086
+UniRef50_UPI000255EFE1: hypothetical protein|unclassified	0.0596504086
+UniRef50_M9THI5	0.0596397460
+UniRef50_M9THI5|unclassified	0.0596397460
+UniRef50_J8PVK5: YfdR	0.0596395474
+UniRef50_J8PVK5: YfdR|unclassified	0.0596395474
+UniRef50_UPI00039F3339: hypothetical protein	0.0596392649
+UniRef50_UPI00039F3339: hypothetical protein|unclassified	0.0596392649
+UniRef50_W8YWX8	0.0596377335
+UniRef50_W8YWX8|unclassified	0.0596377335
+UniRef50_UPI000463E2D5: hypothetical protein	0.0596342059
+UniRef50_UPI000463E2D5: hypothetical protein|unclassified	0.0596342059
+UniRef50_W7IRT5	0.0596260571
+UniRef50_W7IRT5|unclassified	0.0596260571
+UniRef50_UPI000470CD01: FAD-binding molybdopterin dehydrogenase	0.0596257096
+UniRef50_UPI000470CD01: FAD-binding molybdopterin dehydrogenase|unclassified	0.0596257096
+UniRef50_UPI00047CF06A: hypothetical protein	0.0596216288
+UniRef50_UPI00047CF06A: hypothetical protein|unclassified	0.0596216288
+UniRef50_UPI000225AC20: hypothetical protein	0.0596193513
+UniRef50_UPI000225AC20: hypothetical protein|unclassified	0.0596193513
+UniRef50_UPI00047E6722: hypothetical protein	0.0596180871
+UniRef50_UPI00047E6722: hypothetical protein|unclassified	0.0596180871
+UniRef50_A4YU27	0.0596128399
+UniRef50_A4YU27|unclassified	0.0596128399
+UniRef50_UPI0004791C25: hypothetical protein	0.0596123949
+UniRef50_UPI0004791C25: hypothetical protein|unclassified	0.0596123949
+UniRef50_A6X3P8	0.0596077925
+UniRef50_A6X3P8|unclassified	0.0596077925
+UniRef50_UPI000381D672: hypothetical protein	0.0596059621
+UniRef50_UPI000381D672: hypothetical protein|unclassified	0.0596059621
+UniRef50_D1BZB6	0.0596014109
+UniRef50_D1BZB6|unclassified	0.0596014109
+UniRef50_Q019X2: WGS project CAID00000000 data, contig chromosome 05 (Fragment)	0.0595992215
+UniRef50_Q019X2: WGS project CAID00000000 data, contig chromosome 05 (Fragment)|unclassified	0.0595992215
+UniRef50_UPI00036327D8: hypothetical protein	0.0595953869
+UniRef50_UPI00036327D8: hypothetical protein|unclassified	0.0595953869
+UniRef50_K0YSF4	0.0595941576
+UniRef50_K0YSF4|unclassified	0.0595941576
+UniRef50_UPI0003802B8E: hypothetical protein, partial	0.0595929130
+UniRef50_UPI0003802B8E: hypothetical protein, partial|unclassified	0.0595929130
+UniRef50_UPI00047B0137: sugar ABC transporter ATP-binding protein, partial	0.0595922325
+UniRef50_UPI00047B0137: sugar ABC transporter ATP-binding protein, partial|unclassified	0.0595922325
+UniRef50_R7F6P7: Phosphodiesterase MJ0936 family	0.0595898773
+UniRef50_R7F6P7: Phosphodiesterase MJ0936 family|unclassified	0.0595898773
+UniRef50_UPI000185D701: hypothetical protein TGME49_115470	0.0595866612
+UniRef50_UPI000185D701: hypothetical protein TGME49_115470|unclassified	0.0595866612
+UniRef50_UPI000471915E: hypothetical protein	0.0595864206
+UniRef50_UPI000471915E: hypothetical protein|unclassified	0.0595864206
+UniRef50_UPI00037F0A6A: hypothetical protein, partial	0.0595755394
+UniRef50_UPI00037F0A6A: hypothetical protein, partial|unclassified	0.0595755394
+UniRef50_Q1R1E5: 1-deoxy-D-xylulose-5-phosphate synthase	0.0595740806
+UniRef50_Q1R1E5: 1-deoxy-D-xylulose-5-phosphate synthase|unclassified	0.0595740806
+UniRef50_Q6MTZ7: N-acetylmuramic acid 6-phosphate etherase	0.0595719831
+UniRef50_Q6MTZ7: N-acetylmuramic acid 6-phosphate etherase|unclassified	0.0595719831
+UniRef50_UPI00037B0D04: hypothetical protein	0.0595714796
+UniRef50_UPI00037B0D04: hypothetical protein|unclassified	0.0595714796
+UniRef50_Q3JX20	0.0595677531
+UniRef50_Q3JX20|unclassified	0.0595677531
+UniRef50_J8G8R2	0.0595641367
+UniRef50_J8G8R2|unclassified	0.0595641367
+UniRef50_F4DHA4: Lysophospholipase L2	0.0595637710
+UniRef50_F4DHA4: Lysophospholipase L2|unclassified	0.0595637710
+UniRef50_UPI0003FF9111: hypothetical protein	0.0595611743
+UniRef50_UPI0003FF9111: hypothetical protein|unclassified	0.0595611743
+UniRef50_UPI000464BC0B: hypothetical protein	0.0595601913
+UniRef50_UPI000464BC0B: hypothetical protein|unclassified	0.0595601913
+UniRef50_UPI0003B5C4DF: UDP-N-acetylglucosamine 2-epimerase	0.0595601175
+UniRef50_UPI0003B5C4DF: UDP-N-acetylglucosamine 2-epimerase|unclassified	0.0595601175
+UniRef50_UPI000469D17D: hypothetical protein	0.0595592616
+UniRef50_UPI000469D17D: hypothetical protein|unclassified	0.0595592616
+UniRef50_A5VJ31: Phospho-N-acetylmuramoyl-pentapeptide-transferase	0.0595554410
+UniRef50_A5VJ31: Phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.0595554410
+UniRef50_B1SBK3: Oligopeptide ABC transporter, permease protein	0.0595548010
+UniRef50_B1SBK3: Oligopeptide ABC transporter, permease protein|unclassified	0.0595548010
+UniRef50_U1DK92	0.0595470881
+UniRef50_U1DK92|unclassified	0.0595470881
+UniRef50_UPI00030AA267: LysR family transcriptional regulator	0.0595366526
+UniRef50_UPI00030AA267: LysR family transcriptional regulator|unclassified	0.0595366526
+UniRef50_UPI00036C7CE0: hypothetical protein	0.0595343232
+UniRef50_UPI00036C7CE0: hypothetical protein|unclassified	0.0595343232
+UniRef50_D1ABZ6	0.0595329364
+UniRef50_D1ABZ6|unclassified	0.0595329364
+UniRef50_X5ZE00	0.0595320436
+UniRef50_X5ZE00|unclassified	0.0595320436
+UniRef50_R9MYI4	0.0595279463
+UniRef50_R9MYI4|unclassified	0.0595279463
+UniRef50_K1T074	0.0595148648
+UniRef50_K1T074|unclassified	0.0595148648
+UniRef50_UPI0004201C39: hypothetical protein	0.0595137582
+UniRef50_UPI0004201C39: hypothetical protein|unclassified	0.0595137582
+UniRef50_UPI000464E282: MULTISPECIES: peptide ABC transporter permease	0.0595137038
+UniRef50_UPI000464E282: MULTISPECIES: peptide ABC transporter permease|unclassified	0.0595137038
+UniRef50_K9SE42	0.0595114311
+UniRef50_K9SE42|unclassified	0.0595114311
+UniRef50_G2IM42: Phasin-family protein	0.0595102484
+UniRef50_G2IM42: Phasin-family protein|unclassified	0.0595102484
+UniRef50_P96136: N-acetyl-gamma-glutamyl-phosphate reductase	0.0595069844
+UniRef50_P96136: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.0595069844
+UniRef50_C0QRW6: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.0595058508
+UniRef50_C0QRW6: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.0595058508
+UniRef50_UPI00037EC4C5: hypothetical protein	0.0595048937
+UniRef50_UPI00037EC4C5: hypothetical protein|unclassified	0.0595048937
+UniRef50_Q1YE74	0.0595019413
+UniRef50_Q1YE74|unclassified	0.0595019413
+UniRef50_M1HQG6	0.0595019201
+UniRef50_M1HQG6|unclassified	0.0595019201
+UniRef50_Q59536: Protease 2	0.0594989527
+UniRef50_Q59536: Protease 2|unclassified	0.0594989527
+UniRef50_UPI000248E6E5: glycerophosphoryl diester phosphodiesterase	0.0594987630
+UniRef50_UPI000248E6E5: glycerophosphoryl diester phosphodiesterase|unclassified	0.0594987630
+UniRef50_UPI0003775137: hypothetical protein	0.0594943795
+UniRef50_UPI0003775137: hypothetical protein|unclassified	0.0594943795
+UniRef50_UPI0003C18CFE: PREDICTED: cytochrome c oxidase subunit 1-like	0.0594922366
+UniRef50_UPI0003C18CFE: PREDICTED: cytochrome c oxidase subunit 1-like|unclassified	0.0594922366
+UniRef50_W8GJQ9	0.0594906437
+UniRef50_W8GJQ9|unclassified	0.0594906437
+UniRef50_Q2QTA8: Retrotransposon protein, putative, unclassified	0.0594871457
+UniRef50_Q2QTA8: Retrotransposon protein, putative, unclassified|unclassified	0.0594871457
+UniRef50_UPI0003C77F4F: hypothetical protein	0.0594857140
+UniRef50_UPI0003C77F4F: hypothetical protein|unclassified	0.0594857140
+UniRef50_A0LFA0	0.0594760004
+UniRef50_A0LFA0|unclassified	0.0594760004
+UniRef50_UPI000265943A: PREDICTED: probable 39S ribosomal protein L24, mitochondrial-like	0.0594743419
+UniRef50_UPI000265943A: PREDICTED: probable 39S ribosomal protein L24, mitochondrial-like|unclassified	0.0594743419
+UniRef50_A9DVP7	0.0594688901
+UniRef50_A9DVP7|unclassified	0.0594688901
+UniRef50_A1RRZ8: Ketol-acid reductoisomerase	0.0594665295
+UniRef50_A1RRZ8: Ketol-acid reductoisomerase|unclassified	0.0594665295
+UniRef50_UPI0003BD59E0: PREDICTED: poly [ADP-ribose] polymerase 14-like, partial	0.0594642868
+UniRef50_UPI0003BD59E0: PREDICTED: poly [ADP-ribose] polymerase 14-like, partial|unclassified	0.0594642868
+UniRef50_UPI0002196E63: amino acid ABC transporter periplasmic protein	0.0594597304
+UniRef50_UPI0002196E63: amino acid ABC transporter periplasmic protein|unclassified	0.0594597304
+UniRef50_UPI000454B9A5: PREDICTED: protein SON-like	0.0594571719
+UniRef50_UPI000454B9A5: PREDICTED: protein SON-like|unclassified	0.0594571719
+UniRef50_UPI00031DCB61: cytosine deaminase	0.0594521854
+UniRef50_UPI00031DCB61: cytosine deaminase|unclassified	0.0594521854
+UniRef50_UPI00036BA5B0: hypothetical protein	0.0594500259
+UniRef50_UPI00036BA5B0: hypothetical protein|unclassified	0.0594500259
+UniRef50_A0A011RSG6: NAD(P) transhydrogenase subunit beta	0.0594478893
+UniRef50_A0A011RSG6: NAD(P) transhydrogenase subunit beta|unclassified	0.0594478893
+UniRef50_UPI0003B2EC71: phosphoadenosine phosphosulfate reductase	0.0594464393
+UniRef50_UPI0003B2EC71: phosphoadenosine phosphosulfate reductase|unclassified	0.0594464393
+UniRef50_UPI00047D20F7: membrane protein	0.0594457866
+UniRef50_UPI00047D20F7: membrane protein|unclassified	0.0594457866
+UniRef50_Q9WZR0: CTP synthase	0.0594455427
+UniRef50_Q9WZR0: CTP synthase|unclassified	0.0594455427
+UniRef50_UPI00047C7069: hypothetical protein	0.0594452292
+UniRef50_UPI00047C7069: hypothetical protein|unclassified	0.0594452292
+UniRef50_UPI000373376F: hypothetical protein	0.0594404990
+UniRef50_UPI000373376F: hypothetical protein|unclassified	0.0594404990
+UniRef50_U4UWY8: TIGR00255 family protein	0.0594384029
+UniRef50_U4UWY8: TIGR00255 family protein|unclassified	0.0594384029
+UniRef50_UPI00022CA89E: PREDICTED: apolipoprotein N-acyltransferase-like	0.0594275693
+UniRef50_UPI00022CA89E: PREDICTED: apolipoprotein N-acyltransferase-like|unclassified	0.0594275693
+UniRef50_G3VMP8	0.0594236631
+UniRef50_G3VMP8|unclassified	0.0594236631
+UniRef50_UPI0002C431F7: PREDICTED: ATP-dependent Clp protease ATP-binding subunit clpX-like, mitochondrial	0.0594181662
+UniRef50_UPI0002C431F7: PREDICTED: ATP-dependent Clp protease ATP-binding subunit clpX-like, mitochondrial|unclassified	0.0594181662
+UniRef50_UPI0002F058E0: hypothetical protein	0.0594165100
+UniRef50_UPI0002F058E0: hypothetical protein|unclassified	0.0594165100
+UniRef50_UPI0003B2E5CE: quinone oxidoreductase	0.0594161138
+UniRef50_UPI0003B2E5CE: quinone oxidoreductase|unclassified	0.0594161138
+UniRef50_UPI0003819E68: hypothetical protein	0.0594121307
+UniRef50_UPI0003819E68: hypothetical protein|unclassified	0.0594121307
+UniRef50_UPI0003B6D4EF: 3-phosphoglycerate dehydrogenase	0.0594088586
+UniRef50_UPI0003B6D4EF: 3-phosphoglycerate dehydrogenase|unclassified	0.0594088586
+UniRef50_UPI0003B542FC: Na+-dependent transporter	0.0594056045
+UniRef50_UPI0003B542FC: Na+-dependent transporter|unclassified	0.0594056045
+UniRef50_UPI000392E8C4: PREDICTED: methionine--tRNA ligase, cytoplasmic-like	0.0594038096
+UniRef50_UPI000392E8C4: PREDICTED: methionine--tRNA ligase, cytoplasmic-like|unclassified	0.0594038096
+UniRef50_B9MHP0: DTW domain containing protein	0.0593985434
+UniRef50_B9MHP0: DTW domain containing protein|unclassified	0.0593985434
+UniRef50_Q7VQH3: Enolase	0.0593978316
+UniRef50_Q7VQH3: Enolase|unclassified	0.0593978316
+UniRef50_UPI000349B87B: hypothetical protein	0.0593965405
+UniRef50_UPI000349B87B: hypothetical protein|unclassified	0.0593965405
+UniRef50_D9PKY9: TRAP dicarboxylate transporter, DctM subunit	0.0593876438
+UniRef50_D9PKY9: TRAP dicarboxylate transporter, DctM subunit|unclassified	0.0593876438
+UniRef50_K1LLY6	0.0593857737
+UniRef50_K1LLY6|unclassified	0.0593857737
+UniRef50_Q8FT67: Triosephosphate isomerase	0.0593843245
+UniRef50_Q8FT67: Triosephosphate isomerase|unclassified	0.0593843245
+UniRef50_E2BF63	0.0593839906
+UniRef50_E2BF63|unclassified	0.0593839906
+UniRef50_R6G2Y9: ABC-type transporter periplasmic subunit	0.0593754869
+UniRef50_R6G2Y9: ABC-type transporter periplasmic subunit|unclassified	0.0593754869
+UniRef50_C5ANZ1: TrwC protein	0.0593692441
+UniRef50_C5ANZ1: TrwC protein|unclassified	0.0593692441
+UniRef50_Q67SJ2: Valine--tRNA ligase	0.0593640579
+UniRef50_Q67SJ2: Valine--tRNA ligase|unclassified	0.0593640579
+UniRef50_UPI0003B70C05: transcription termination factor Rho	0.0593620604
+UniRef50_UPI0003B70C05: transcription termination factor Rho|unclassified	0.0593620604
+UniRef50_UPI000473FF36: hypothetical protein, partial	0.0593618261
+UniRef50_UPI000473FF36: hypothetical protein, partial|unclassified	0.0593618261
+UniRef50_UPI0002E54897: 3-phenylpropionate dioxygenase	0.0593615082
+UniRef50_UPI0002E54897: 3-phenylpropionate dioxygenase|unclassified	0.0593615082
+UniRef50_UPI000255854C: hypothetical protein	0.0593607156
+UniRef50_UPI000255854C: hypothetical protein|unclassified	0.0593607156
+UniRef50_UPI0003760647: hypothetical protein	0.0593572462
+UniRef50_UPI0003760647: hypothetical protein|unclassified	0.0593572462
+UniRef50_K9B5I6	0.0593547156
+UniRef50_K9B5I6|unclassified	0.0593547156
+UniRef50_UPI0002DFDEE8: hypothetical protein	0.0593547156
+UniRef50_UPI0002DFDEE8: hypothetical protein|unclassified	0.0593547156
+UniRef50_Q8RAD0: Bifunctional protein FolD	0.0593544400
+UniRef50_Q8RAD0: Bifunctional protein FolD|unclassified	0.0593544400
+UniRef50_M7T6R1	0.0593508486
+UniRef50_M7T6R1|unclassified	0.0593508486
+UniRef50_G4P1D7	0.0593329083
+UniRef50_G4P1D7|unclassified	0.0593329083
+UniRef50_P32437: IMPACT family member YvyE	0.0593329083
+UniRef50_P32437: IMPACT family member YvyE|unclassified	0.0593329083
+UniRef50_X2HDZ5: Putative periplasmic protein	0.0593307686
+UniRef50_X2HDZ5: Putative periplasmic protein|unclassified	0.0593307686
+UniRef50_Q8R6F5: Ribosomal RNA small subunit methyltransferase H	0.0593305409
+UniRef50_Q8R6F5: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0593305409
+UniRef50_UPI0003B79E24: inner-membrane translocator	0.0593303572
+UniRef50_UPI0003B79E24: inner-membrane translocator|unclassified	0.0593303572
+UniRef50_UPI00036FAF22: hypothetical protein	0.0593292660
+UniRef50_UPI00036FAF22: hypothetical protein|unclassified	0.0593292660
+UniRef50_Q5LVP8: Xanthine dehydrogenase accessory factor	0.0593283243
+UniRef50_Q5LVP8: Xanthine dehydrogenase accessory factor|unclassified	0.0593283243
+UniRef50_Q9X712: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.0593255959
+UniRef50_Q9X712: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.0593255959
+UniRef50_UPI0002883AB7: acyl-CoA dehydrogenase	0.0593237354
+UniRef50_UPI0002883AB7: acyl-CoA dehydrogenase|unclassified	0.0593237354
+UniRef50_W2EUZ1: Cupin	0.0593179868
+UniRef50_W2EUZ1: Cupin|unclassified	0.0593179868
+UniRef50_W4M077	0.0593157100
+UniRef50_W4M077|unclassified	0.0593157100
+UniRef50_Q5NGY3: Formamidopyrimidine-DNA glycosylase	0.0593118340
+UniRef50_Q5NGY3: Formamidopyrimidine-DNA glycosylase|unclassified	0.0593118340
+UniRef50_B9KKA8	0.0593052308
+UniRef50_B9KKA8|unclassified	0.0593052308
+UniRef50_S2KLP4	0.0593037712
+UniRef50_S2KLP4|unclassified	0.0593037712
+UniRef50_UPI0004795C04: hypothetical protein	0.0593014346
+UniRef50_UPI0004795C04: hypothetical protein|unclassified	0.0593014346
+UniRef50_A1BDY0: Leucine--tRNA ligase	0.0592998371
+UniRef50_A1BDY0: Leucine--tRNA ligase|unclassified	0.0592998371
+UniRef50_UPI000418296E: hypothetical protein	0.0592976599
+UniRef50_UPI000418296E: hypothetical protein|unclassified	0.0592976599
+UniRef50_UPI0003742A66: ABC transporter	0.0592891635
+UniRef50_UPI0003742A66: ABC transporter|unclassified	0.0592891635
+UniRef50_Q11F06: Rhodanese-like protein	0.0592889348
+UniRef50_Q11F06: Rhodanese-like protein|unclassified	0.0592889348
+UniRef50_UPI00045EAF82: hypothetical protein	0.0592792038
+UniRef50_UPI00045EAF82: hypothetical protein|unclassified	0.0592792038
+UniRef50_UPI0003B664D2: zinc-type alcohol dehydrogenase	0.0592778189
+UniRef50_UPI0003B664D2: zinc-type alcohol dehydrogenase|unclassified	0.0592778189
+UniRef50_D9VIM9: Predicted protein	0.0592744438
+UniRef50_D9VIM9: Predicted protein|unclassified	0.0592744438
+UniRef50_UPI0002626AF6: binding-protein-dependent transport systems inner membrane component	0.0592698858
+UniRef50_UPI0002626AF6: binding-protein-dependent transport systems inner membrane component|unclassified	0.0592698858
+UniRef50_UPI00016A43A1: UvrD/REP helicase, partial	0.0592642082
+UniRef50_UPI00016A43A1: UvrD/REP helicase, partial|unclassified	0.0592642082
+UniRef50_UPI000426E3A9: LamB/YcsF family protein	0.0592631480
+UniRef50_UPI000426E3A9: LamB/YcsF family protein|unclassified	0.0592631480
+UniRef50_UPI0004774800: hypothetical protein	0.0592560210
+UniRef50_UPI0004774800: hypothetical protein|unclassified	0.0592560210
+UniRef50_UPI0003B5389B: MFS transporter permease	0.0592509527
+UniRef50_UPI0003B5389B: MFS transporter permease|unclassified	0.0592509527
+UniRef50_C5NXQ3: Cobalt transport protein	0.0592498706
+UniRef50_C5NXQ3: Cobalt transport protein|unclassified	0.0592498706
+UniRef50_UPI00040A8344: potassium ABC transporter ATPase	0.0592487584
+UniRef50_UPI00040A8344: potassium ABC transporter ATPase|unclassified	0.0592487584
+UniRef50_UPI0003B6D0E1: betaine-aldehyde dehydrogenase	0.0592446063
+UniRef50_UPI0003B6D0E1: betaine-aldehyde dehydrogenase|unclassified	0.0592446063
+UniRef50_UPI00036DEECD: hypothetical protein	0.0592445462
+UniRef50_UPI00036DEECD: hypothetical protein|unclassified	0.0592445462
+UniRef50_UPI0004786161: multidrug ABC transporter ATP-binding protein	0.0592434041
+UniRef50_UPI0004786161: multidrug ABC transporter ATP-binding protein|unclassified	0.0592434041
+UniRef50_R6JJE0: Pyridine nucleotide transhydrogenase alpha subunit	0.0592433068
+UniRef50_R6JJE0: Pyridine nucleotide transhydrogenase alpha subunit|unclassified	0.0592433068
+UniRef50_UPI00037A0A11: hypothetical protein	0.0592397597
+UniRef50_UPI00037A0A11: hypothetical protein|unclassified	0.0592397597
+UniRef50_U5DDJ2: TRAP transporter solute receptor, TAXI family	0.0592388687
+UniRef50_U5DDJ2: TRAP transporter solute receptor, TAXI family|unclassified	0.0592388687
+UniRef50_UPI0003731716: hypothetical protein	0.0592359526
+UniRef50_UPI0003731716: hypothetical protein|unclassified	0.0592359526
+UniRef50_UPI00044080ED: carbonic anhydrase	0.0592293212
+UniRef50_UPI00044080ED: carbonic anhydrase|unclassified	0.0592293212
+UniRef50_UPI0004056E22: hypothetical protein	0.0592281917
+UniRef50_UPI0004056E22: hypothetical protein|unclassified	0.0592281917
+UniRef50_U1X075	0.0592252727
+UniRef50_U1X075|unclassified	0.0592252727
+UniRef50_K0R7J0	0.0592251644
+UniRef50_K0R7J0|unclassified	0.0592251644
+UniRef50_J0CX59	0.0592114151
+UniRef50_J0CX59|unclassified	0.0592114151
+UniRef50_G3VAM5	0.0592079231
+UniRef50_G3VAM5|unclassified	0.0592079231
+UniRef50_UPI00046CED3A: O-sialoglycoprotein endopeptidase	0.0592013241
+UniRef50_UPI00046CED3A: O-sialoglycoprotein endopeptidase|unclassified	0.0592013241
+UniRef50_P55679	0.0592000203
+UniRef50_P55679|unclassified	0.0592000203
+UniRef50_UPI0004701AFA: hypothetical protein	0.0591988026
+UniRef50_UPI0004701AFA: hypothetical protein|unclassified	0.0591988026
+UniRef50_UPI0003AD3999: hypothetical protein	0.0591936714
+UniRef50_UPI0003AD3999: hypothetical protein|unclassified	0.0591936714
+UniRef50_E0THQ8: Metallo-beta-lactamase family protein	0.0591832968
+UniRef50_E0THQ8: Metallo-beta-lactamase family protein|unclassified	0.0591832968
+UniRef50_UPI0003B6E323: cell division protein FtsZ	0.0591827257
+UniRef50_UPI0003B6E323: cell division protein FtsZ|unclassified	0.0591827257
+UniRef50_M4HGK0	0.0591773039
+UniRef50_M4HGK0|unclassified	0.0591773039
+UniRef50_C6U605: Type VI secretion-associated protein, ImpA family	0.0591732154
+UniRef50_C6U605: Type VI secretion-associated protein, ImpA family|unclassified	0.0591732154
+UniRef50_A7NI09: Galactokinase	0.0591707931
+UniRef50_A7NI09: Galactokinase|unclassified	0.0591707931
+UniRef50_U6LCT5	0.0591702134
+UniRef50_U6LCT5|unclassified	0.0591702134
+UniRef50_O94634: Threonine dehydratase, mitochondrial	0.0591668563
+UniRef50_O94634: Threonine dehydratase, mitochondrial|unclassified	0.0591668563
+UniRef50_S9RZ08	0.0591539385
+UniRef50_S9RZ08|unclassified	0.0591539385
+UniRef50_UPI0003B5831F: 3-phosphoshikimate 1-carboxyvinyltransferase	0.0591531547
+UniRef50_UPI0003B5831F: 3-phosphoshikimate 1-carboxyvinyltransferase|unclassified	0.0591531547
+UniRef50_UPI000373A2A8: hypothetical protein	0.0591501154
+UniRef50_UPI000373A2A8: hypothetical protein|unclassified	0.0591501154
+UniRef50_UPI0002D66DA3: hypothetical protein	0.0591494456
+UniRef50_UPI0002D66DA3: hypothetical protein|unclassified	0.0591494456
+UniRef50_UPI000378D512: hypothetical protein	0.0591457252
+UniRef50_UPI000378D512: hypothetical protein|unclassified	0.0591457252
+UniRef50_T1ADS0: Flp pilus assembly protein TadC (Fragment)	0.0591443236
+UniRef50_T1ADS0: Flp pilus assembly protein TadC (Fragment)|unclassified	0.0591443236
+UniRef50_A0RED4: Diguanylate cyclase/phosphodiesterase	0.0591416303
+UniRef50_A0RED4: Diguanylate cyclase/phosphodiesterase|unclassified	0.0591416303
+UniRef50_UPI00035D5215: hypothetical protein	0.0591384931
+UniRef50_UPI00035D5215: hypothetical protein|unclassified	0.0591384931
+UniRef50_Q8EKR0: Ribosomal RNA small subunit methyltransferase B	0.0591376015
+UniRef50_Q8EKR0: Ribosomal RNA small subunit methyltransferase B|unclassified	0.0591376015
+UniRef50_A3SEI8: Xanthine dehydrogenase accessory factor	0.0591340176
+UniRef50_A3SEI8: Xanthine dehydrogenase accessory factor|unclassified	0.0591340176
+UniRef50_G0A3I2: SNARE associated Golgi protein-like protein	0.0591335410
+UniRef50_G0A3I2: SNARE associated Golgi protein-like protein|unclassified	0.0591335410
+UniRef50_UPI000312D8D2: hypothetical protein	0.0591098720
+UniRef50_UPI000312D8D2: hypothetical protein|unclassified	0.0591098720
+UniRef50_UPI000456192A: hypothetical protein PFL1_02116	0.0591093126
+UniRef50_UPI000456192A: hypothetical protein PFL1_02116|unclassified	0.0591093126
+UniRef50_B3TB70: Putative RadC, DNA repair protein	0.0591067913
+UniRef50_B3TB70: Putative RadC, DNA repair protein|unclassified	0.0591067913
+UniRef50_A0A031JII4: Marine proteobacterial sortase target protein	0.0591010577
+UniRef50_A0A031JII4: Marine proteobacterial sortase target protein|unclassified	0.0591010577
+UniRef50_UPI0003F0E439: PREDICTED: hydroxyacid oxidase 2-like	0.0590957152
+UniRef50_UPI0003F0E439: PREDICTED: hydroxyacid oxidase 2-like|unclassified	0.0590957152
+UniRef50_UPI00036BE230: macrolide ABC transporter ATP-binding protein	0.0590875165
+UniRef50_UPI00036BE230: macrolide ABC transporter ATP-binding protein|unclassified	0.0590875165
+UniRef50_UPI0004677544: para-aminobenzoate synthase	0.0590830128
+UniRef50_UPI0004677544: para-aminobenzoate synthase|unclassified	0.0590830128
+UniRef50_Q1QJ95: Uroporphyrinogen decarboxylase	0.0590789781
+UniRef50_Q1QJ95: Uroporphyrinogen decarboxylase|unclassified	0.0590789781
+UniRef50_UPI0002EB3FDF: hypothetical protein	0.0590788224
+UniRef50_UPI0002EB3FDF: hypothetical protein|unclassified	0.0590788224
+UniRef50_Q4RS53: Chromosome 13 SCAF15000, whole genome shotgun sequence	0.0590753146
+UniRef50_Q4RS53: Chromosome 13 SCAF15000, whole genome shotgun sequence|unclassified	0.0590753146
+UniRef50_UPI0002E8B0DF: hypothetical protein	0.0590741066
+UniRef50_UPI0002E8B0DF: hypothetical protein|unclassified	0.0590741066
+UniRef50_UPI000378358A: hypothetical protein	0.0590734917
+UniRef50_UPI000378358A: hypothetical protein|unclassified	0.0590734917
+UniRef50_UPI00037EB923: hypothetical protein	0.0590706038
+UniRef50_UPI00037EB923: hypothetical protein|unclassified	0.0590706038
+UniRef50_UPI0004720C09: hypothetical protein	0.0590680048
+UniRef50_UPI0004720C09: hypothetical protein|unclassified	0.0590680048
+UniRef50_E8Y0S6: NLP/P60 protein	0.0590616177
+UniRef50_E8Y0S6: NLP/P60 protein|unclassified	0.0590616177
+UniRef50_UPI0003B3F8B2: ABC transporter	0.0590602211
+UniRef50_UPI0003B3F8B2: ABC transporter|unclassified	0.0590602211
+UniRef50_UPI00047AADF7: serine/threonine protein phosphatase	0.0590546923
+UniRef50_UPI00047AADF7: serine/threonine protein phosphatase|unclassified	0.0590546923
+UniRef50_UPI000255B39C: threonine dehydratase	0.0590516917
+UniRef50_UPI000255B39C: threonine dehydratase|unclassified	0.0590516917
+UniRef50_Q5HYK3: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial	0.0590494106
+UniRef50_Q5HYK3: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial|unclassified	0.0590494106
+UniRef50_A8YXJ8: DNA-directed RNA polymerase subunit beta	0.0590487971
+UniRef50_A8YXJ8: DNA-directed RNA polymerase subunit beta|unclassified	0.0590487971
+UniRef50_UPI000225ACE1: putative inner-membrane protein traC	0.0590478506
+UniRef50_UPI000225ACE1: putative inner-membrane protein traC|unclassified	0.0590478506
+UniRef50_UPI00037321EC: hypothetical protein	0.0590467770
+UniRef50_UPI00037321EC: hypothetical protein|unclassified	0.0590467770
+UniRef50_UPI000363BFB8: hypothetical protein	0.0590464243
+UniRef50_UPI000363BFB8: hypothetical protein|unclassified	0.0590464243
+UniRef50_F9FJW5	0.0590384872
+UniRef50_F9FJW5|unclassified	0.0590384872
+UniRef50_Q2SYI1: dTDP-4-dehydrorhamnose reductase	0.0590328127
+UniRef50_Q2SYI1: dTDP-4-dehydrorhamnose reductase|unclassified	0.0590328127
+UniRef50_M1GID3: Lytic transglycosylase	0.0590309330
+UniRef50_M1GID3: Lytic transglycosylase|unclassified	0.0590309330
+UniRef50_X7YH43: Cysteine-rich domain protein	0.0590192429
+UniRef50_X7YH43: Cysteine-rich domain protein|unclassified	0.0590192429
+UniRef50_UPI0001745879: tryptophan synthase subunit alpha	0.0590163237
+UniRef50_UPI0001745879: tryptophan synthase subunit alpha|unclassified	0.0590163237
+UniRef50_UPI00047AAEF7: ferrochelatase	0.0590108694
+UniRef50_UPI00047AAEF7: ferrochelatase|unclassified	0.0590108694
+UniRef50_UPI000420E381: hypothetical protein	0.0590106846
+UniRef50_UPI000420E381: hypothetical protein|unclassified	0.0590106846
+UniRef50_UPI0002554EE7: ABC transporter permease	0.0590086729
+UniRef50_UPI0002554EE7: ABC transporter permease|unclassified	0.0590086729
+UniRef50_UPI0004672FF6: hypothetical protein	0.0589984160
+UniRef50_UPI0004672FF6: hypothetical protein|unclassified	0.0589984160
+UniRef50_G0FYI5	0.0589970465
+UniRef50_G0FYI5|unclassified	0.0589970465
+UniRef50_UPI000465D93D: hypothetical protein	0.0589942186
+UniRef50_UPI000465D93D: hypothetical protein|unclassified	0.0589942186
+UniRef50_A0A024K7R9	0.0589898267
+UniRef50_A0A024K7R9|unclassified	0.0589898267
+UniRef50_B1ZT49: Tryptophan synthase alpha chain	0.0589839581
+UniRef50_B1ZT49: Tryptophan synthase alpha chain|unclassified	0.0589839581
+UniRef50_Q4FQW6: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	0.0589831281
+UniRef50_Q4FQW6: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.0589831281
+UniRef50_UPI0001744BBB: CDP-glucose 4,6-dehydratase	0.0589828012
+UniRef50_UPI0001744BBB: CDP-glucose 4,6-dehydratase|unclassified	0.0589828012
+UniRef50_F8W467	0.0589822571
+UniRef50_F8W467|unclassified	0.0589822571
+UniRef50_S9SBP9	0.0589811092
+UniRef50_S9SBP9|unclassified	0.0589811092
+UniRef50_UPI0003B5BBE2: nicotinate phosphoribosyltransferase, partial	0.0589808835
+UniRef50_UPI0003B5BBE2: nicotinate phosphoribosyltransferase, partial|unclassified	0.0589808835
+UniRef50_E6SHC6: NLPA lipoprotein	0.0589790106
+UniRef50_E6SHC6: NLPA lipoprotein|unclassified	0.0589790106
+UniRef50_UPI000375A17B: hypothetical protein	0.0589784235
+UniRef50_UPI000375A17B: hypothetical protein|unclassified	0.0589784235
+UniRef50_O67088: Signal peptidase I	0.0589750611
+UniRef50_O67088: Signal peptidase I|unclassified	0.0589750611
+UniRef50_UPI000463A39D: LysR family transcriptional regulator	0.0589694339
+UniRef50_UPI000463A39D: LysR family transcriptional regulator|unclassified	0.0589694339
+UniRef50_Q67WR4	0.0589690490
+UniRef50_Q67WR4|unclassified	0.0589690490
+UniRef50_N0BAK7: Chromosome segregation and condensation protein ScpA	0.0589687527
+UniRef50_N0BAK7: Chromosome segregation and condensation protein ScpA|unclassified	0.0589687527
+UniRef50_UPI00047CB679: hypothetical protein	0.0589560805
+UniRef50_UPI00047CB679: hypothetical protein|unclassified	0.0589560805
+UniRef50_A3VIP3	0.0589541324
+UniRef50_A3VIP3|unclassified	0.0589541324
+UniRef50_UPI0003809FBC: gluconate transporter, partial	0.0589509657
+UniRef50_UPI0003809FBC: gluconate transporter, partial|unclassified	0.0589509657
+UniRef50_F8EWE1: Peptidase M23	0.0589492604
+UniRef50_F8EWE1: Peptidase M23|unclassified	0.0589492604
+UniRef50_F2UAD3	0.0589478103
+UniRef50_F2UAD3|unclassified	0.0589478103
+UniRef50_UPI0004684E82: hypothetical protein	0.0589470462
+UniRef50_UPI0004684E82: hypothetical protein|unclassified	0.0589470462
+UniRef50_UPI00046D7AC9: ABC transporter permease	0.0589458986
+UniRef50_UPI00046D7AC9: ABC transporter permease|unclassified	0.0589458986
+UniRef50_Q3AAT6: Histidinol-phosphate aminotransferase 2	0.0589398225
+UniRef50_Q3AAT6: Histidinol-phosphate aminotransferase 2|unclassified	0.0589398225
+UniRef50_C2S4X4	0.0589379453
+UniRef50_C2S4X4|unclassified	0.0589379453
+UniRef50_C1DS15: Phage P2 baseplate assembly gpI-like protein	0.0589372030
+UniRef50_C1DS15: Phage P2 baseplate assembly gpI-like protein|unclassified	0.0589372030
+UniRef50_UPI00047BC270: hypothetical protein	0.0589362963
+UniRef50_UPI00047BC270: hypothetical protein|unclassified	0.0589362963
+UniRef50_F3A8Y6	0.0589351972
+UniRef50_F3A8Y6|unclassified	0.0589351972
+UniRef50_G0AHA8	0.0589213889
+UniRef50_G0AHA8|unclassified	0.0589213889
+UniRef50_Q5FNS8: Orotidine 5'-phosphate decarboxylase	0.0589198668
+UniRef50_Q5FNS8: Orotidine 5'-phosphate decarboxylase|unclassified	0.0589198668
+UniRef50_UPI0003B40102: NADPH dehydrogenase, partial	0.0589111181
+UniRef50_UPI0003B40102: NADPH dehydrogenase, partial|unclassified	0.0589111181
+UniRef50_UPI0004706712: protease 2	0.0589100078
+UniRef50_UPI0004706712: protease 2|unclassified	0.0589100078
+UniRef50_UPI00037452F2: hypothetical protein	0.0589099581
+UniRef50_UPI00037452F2: hypothetical protein|unclassified	0.0589099581
+UniRef50_A0A017HJR6: Uracil-DNA glycosylase, family 4	0.0589092290
+UniRef50_A0A017HJR6: Uracil-DNA glycosylase, family 4|unclassified	0.0589092290
+UniRef50_UPI00025563D2: RNA polymerase factor sigma-54	0.0589048357
+UniRef50_UPI00025563D2: RNA polymerase factor sigma-54|unclassified	0.0589048357
+UniRef50_UPI0003D3F2A1: predicted metal-dependent enzyme of the double-stranded beta helix superfamily	0.0589028546
+UniRef50_UPI0003D3F2A1: predicted metal-dependent enzyme of the double-stranded beta helix superfamily|unclassified	0.0589028546
+UniRef50_UPI0003A4AED1: transcriptional regulator	0.0588908457
+UniRef50_UPI0003A4AED1: transcriptional regulator|unclassified	0.0588908457
+UniRef50_F7X8P5	0.0588879290
+UniRef50_F7X8P5|unclassified	0.0588879290
+UniRef50_UPI000368B121: hypothetical protein	0.0588848482
+UniRef50_UPI000368B121: hypothetical protein|unclassified	0.0588848482
+UniRef50_Q14NV1: Bifunctional protein FolD	0.0588842051
+UniRef50_Q14NV1: Bifunctional protein FolD|unclassified	0.0588842051
+UniRef50_A0L4B0: tRNA dimethylallyltransferase	0.0588754755
+UniRef50_A0L4B0: tRNA dimethylallyltransferase|unclassified	0.0588754755
+UniRef50_Q0SBA9: Possible permease	0.0588691565
+UniRef50_Q0SBA9: Possible permease|unclassified	0.0588691565
+UniRef50_J5KQC7: Exodeoxyribonuclease V, gamma subunit	0.0588684273
+UniRef50_J5KQC7: Exodeoxyribonuclease V, gamma subunit|unclassified	0.0588684273
+UniRef50_UPI000369D001: hypothetical protein	0.0588649284
+UniRef50_UPI000369D001: hypothetical protein|unclassified	0.0588649284
+UniRef50_UPI00037F4DD4: hypothetical protein	0.0588627892
+UniRef50_UPI00037F4DD4: hypothetical protein|unclassified	0.0588627892
+UniRef50_F4WQV6: U6 snRNA-associated Sm-like protein LSm6	0.0588586206
+UniRef50_F4WQV6: U6 snRNA-associated Sm-like protein LSm6|unclassified	0.0588586206
+UniRef50_UPI0003610CBF: hypothetical protein	0.0588532242
+UniRef50_UPI0003610CBF: hypothetical protein|unclassified	0.0588532242
+UniRef50_Q8UBY6: Thiamine import ATP-binding protein ThiQ	0.0588531116
+UniRef50_Q8UBY6: Thiamine import ATP-binding protein ThiQ|unclassified	0.0588531116
+UniRef50_H1ZV37: Geranial dehydrogenase	0.0588530728
+UniRef50_H1ZV37: Geranial dehydrogenase|unclassified	0.0588530728
+UniRef50_C9A5A3	0.0588471156
+UniRef50_C9A5A3|unclassified	0.0588471156
+UniRef50_U7QG11: Nuclease-related domain protein	0.0588458007
+UniRef50_U7QG11: Nuclease-related domain protein|unclassified	0.0588458007
+UniRef50_UPI0003B62CC5: poly(A) polymerase	0.0588431211
+UniRef50_UPI0003B62CC5: poly(A) polymerase|unclassified	0.0588431211
+UniRef50_UPI000225F0D6: hypothetical protein	0.0588390450
+UniRef50_UPI000225F0D6: hypothetical protein|unclassified	0.0588390450
+UniRef50_R6ZHU9	0.0588304732
+UniRef50_R6ZHU9|unclassified	0.0588304732
+UniRef50_UPI00047A8D6D: hypothetical protein	0.0588286453
+UniRef50_UPI00047A8D6D: hypothetical protein|unclassified	0.0588286453
+UniRef50_T0ISX1	0.0588281596
+UniRef50_T0ISX1|unclassified	0.0588281596
+UniRef50_F2EDX4: Predicted protein (Fragment)	0.0588260262
+UniRef50_F2EDX4: Predicted protein (Fragment)|unclassified	0.0588260262
+UniRef50_Q2LR39: Ribosomal RNA small subunit methyltransferase H	0.0588219280
+UniRef50_Q2LR39: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0588219280
+UniRef50_B0TGJ1	0.0588200557
+UniRef50_B0TGJ1|unclassified	0.0588200557
+UniRef50_V7IAN2	0.0588199767
+UniRef50_V7IAN2|unclassified	0.0588199767
+UniRef50_U6LY22	0.0588198679
+UniRef50_U6LY22|unclassified	0.0588198679
+UniRef50_H8L2T6: Flagellar hook capping protein	0.0588196371
+UniRef50_H8L2T6: Flagellar hook capping protein|unclassified	0.0588196371
+UniRef50_UPI00030A00F8: hypothetical protein	0.0588194190
+UniRef50_UPI00030A00F8: hypothetical protein|unclassified	0.0588194190
+UniRef50_UPI00047097D7: hypothetical protein	0.0587992692
+UniRef50_UPI00047097D7: hypothetical protein|unclassified	0.0587992692
+UniRef50_UPI0003660C49: hypothetical protein	0.0587969670
+UniRef50_UPI0003660C49: hypothetical protein|unclassified	0.0587969670
+UniRef50_Q2TTV3	0.0587930330
+UniRef50_Q2TTV3|unclassified	0.0587930330
+UniRef50_UPI0003B78AA6: methyl-accepting chemotaxis protein	0.0587910493
+UniRef50_UPI0003B78AA6: methyl-accepting chemotaxis protein|unclassified	0.0587910493
+UniRef50_A8L035: NAD-dependent epimerase/dehydratase	0.0587909295
+UniRef50_A8L035: NAD-dependent epimerase/dehydratase|unclassified	0.0587909295
+UniRef50_UPI00047EB041: hypothetical protein	0.0587886890
+UniRef50_UPI00047EB041: hypothetical protein|unclassified	0.0587886890
+UniRef50_UPI000368F6D6: hypothetical protein	0.0587825926
+UniRef50_UPI000368F6D6: hypothetical protein|unclassified	0.0587825926
+UniRef50_UPI00047DCBBB: pseudouridine synthase	0.0587824701
+UniRef50_UPI00047DCBBB: pseudouridine synthase|unclassified	0.0587824701
+UniRef50_K3XR47	0.0587816790
+UniRef50_K3XR47|unclassified	0.0587816790
+UniRef50_UPI0004560356: hypothetical protein PFL1_00519	0.0587789764
+UniRef50_UPI0004560356: hypothetical protein PFL1_00519|unclassified	0.0587789764
+UniRef50_UPI0003FF9E94: histidine kinase	0.0587753548
+UniRef50_UPI0003FF9E94: histidine kinase|unclassified	0.0587753548
+UniRef50_UPI00036FBC00: hypothetical protein	0.0587737453
+UniRef50_UPI00036FBC00: hypothetical protein|unclassified	0.0587737453
+UniRef50_J7QSF2: Putative pqq dehydrogenase protein	0.0587703997
+UniRef50_J7QSF2: Putative pqq dehydrogenase protein|unclassified	0.0587703997
+UniRef50_UPI00045EAE0E: cobalt transporter	0.0587674662
+UniRef50_UPI00045EAE0E: cobalt transporter|unclassified	0.0587674662
+UniRef50_Q67P04: Ferrichrome ABC transporter substrate-binding protein	0.0587634683
+UniRef50_Q67P04: Ferrichrome ABC transporter substrate-binding protein|unclassified	0.0587634683
+UniRef50_UPI00037FD9F7: hypothetical protein	0.0587628000
+UniRef50_UPI00037FD9F7: hypothetical protein|unclassified	0.0587628000
+UniRef50_UPI00046A28BD: ABC transporter permease	0.0587561376
+UniRef50_UPI00046A28BD: ABC transporter permease|unclassified	0.0587561376
+UniRef50_UPI00046F4B63: hypothetical protein	0.0587558889
+UniRef50_UPI00046F4B63: hypothetical protein|unclassified	0.0587558889
+UniRef50_UPI0003B50B84: glycosyl transferase family 1	0.0587550186
+UniRef50_UPI0003B50B84: glycosyl transferase family 1|unclassified	0.0587550186
+UniRef50_Q4P257: Elongation factor G, mitochondrial	0.0587496536
+UniRef50_Q4P257: Elongation factor G, mitochondrial|unclassified	0.0587496536
+UniRef50_Q8KCS2: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.0587468075
+UniRef50_Q8KCS2: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.0587468075
+UniRef50_UPI00036CCEDF: hypothetical protein	0.0587413594
+UniRef50_UPI00036CCEDF: hypothetical protein|unclassified	0.0587413594
+UniRef50_B5XU27: Urease subunit alpha	0.0587385863
+UniRef50_B5XU27: Urease subunit alpha|unclassified	0.0587385863
+UniRef50_UPI00047C84E7: peptide ABC transporter permease	0.0587383688
+UniRef50_UPI00047C84E7: peptide ABC transporter permease|unclassified	0.0587383688
+UniRef50_Q73K76: Isoprenyl transferase	0.0587366668
+UniRef50_Q73K76: Isoprenyl transferase|unclassified	0.0587366668
+UniRef50_E5W5U3	0.0587261663
+UniRef50_E5W5U3|unclassified	0.0587261663
+UniRef50_C4L9L6: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical	0.0587254603
+UniRef50_C4L9L6: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical|unclassified	0.0587254603
+UniRef50_A5EWC1: Conserved hypothetical lipoprotein	0.0587187666
+UniRef50_A5EWC1: Conserved hypothetical lipoprotein|unclassified	0.0587187666
+UniRef50_UPI00046A99F4: spermidine/putrescine ABC transporter permease	0.0587176733
+UniRef50_UPI00046A99F4: spermidine/putrescine ABC transporter permease|unclassified	0.0587176733
+UniRef50_UPI0003B63EBF: UDP-diphosphatase	0.0587175137
+UniRef50_UPI0003B63EBF: UDP-diphosphatase|unclassified	0.0587175137
+UniRef50_K1XQF7	0.0587148040
+UniRef50_K1XQF7|unclassified	0.0587148040
+UniRef50_X5MEU2	0.0587143564
+UniRef50_X5MEU2|unclassified	0.0587143564
+UniRef50_Q0ACK7: Polyamine aminopropyl transferase	0.0587131690
+UniRef50_Q0ACK7: Polyamine aminopropyl transferase|unclassified	0.0587131690
+UniRef50_A0A011Q8P4: Methyl-accepting chemotaxis protein 4	0.0587114278
+UniRef50_A0A011Q8P4: Methyl-accepting chemotaxis protein 4|unclassified	0.0587114278
+UniRef50_UPI00047CD89C: hypothetical protein, partial	0.0587103766
+UniRef50_UPI00047CD89C: hypothetical protein, partial|unclassified	0.0587103766
+UniRef50_UPI0003731458: hypothetical protein	0.0586992144
+UniRef50_UPI0003731458: hypothetical protein|unclassified	0.0586992144
+UniRef50_UPI0002F99738: hypothetical protein	0.0586967873
+UniRef50_UPI0002F99738: hypothetical protein|unclassified	0.0586967873
+UniRef50_UPI0004780D83: hypothetical protein	0.0586923871
+UniRef50_UPI0004780D83: hypothetical protein|unclassified	0.0586923871
+UniRef50_R7P2M5	0.0586805709
+UniRef50_R7P2M5|unclassified	0.0586805709
+UniRef50_UPI0003604F24: hypothetical protein	0.0586791095
+UniRef50_UPI0003604F24: hypothetical protein|unclassified	0.0586791095
+UniRef50_W0EU06: Permease	0.0586682015
+UniRef50_W0EU06: Permease|unclassified	0.0586682015
+UniRef50_Q2W2I2: DNA-directed RNA polymerase subunit beta'	0.0586617221
+UniRef50_Q2W2I2: DNA-directed RNA polymerase subunit beta'|unclassified	0.0586617221
+UniRef50_I2NA66: Putative transposase	0.0586505594
+UniRef50_I2NA66: Putative transposase|unclassified	0.0586505594
+UniRef50_UPI0000164CDA: molybdenum cofactor biosynthesis protein A	0.0586497373
+UniRef50_UPI0000164CDA: molybdenum cofactor biosynthesis protein A|unclassified	0.0586497373
+UniRef50_A3Y680: Sensory box protein	0.0586492582
+UniRef50_A3Y680: Sensory box protein|unclassified	0.0586492582
+UniRef50_P50060: Superoxide dismutase [Mn] 3 (Fragment)	0.0586471864
+UniRef50_P50060: Superoxide dismutase [Mn] 3 (Fragment)|unclassified	0.0586471864
+UniRef50_E7MR51	0.0586450136
+UniRef50_E7MR51|unclassified	0.0586450136
+UniRef50_UPI00035EF64E: hypothetical protein	0.0586381678
+UniRef50_UPI00035EF64E: hypothetical protein|unclassified	0.0586381678
+UniRef50_I6DSS5: Inner membrane transport YhaO domain protein	0.0586369768
+UniRef50_I6DSS5: Inner membrane transport YhaO domain protein|unclassified	0.0586369768
+UniRef50_UPI0003B35384: hypothetical protein	0.0586287552
+UniRef50_UPI0003B35384: hypothetical protein|unclassified	0.0586287552
+UniRef50_Q1YRT2	0.0586269323
+UniRef50_Q1YRT2|unclassified	0.0586269323
+UniRef50_UPI00037CC021: hypothetical protein	0.0586268716
+UniRef50_UPI00037CC021: hypothetical protein|unclassified	0.0586268716
+UniRef50_N1MSQ3: Mobile element protein	0.0586254492
+UniRef50_N1MSQ3: Mobile element protein|unclassified	0.0586254492
+UniRef50_Q8H8U0: Cardiolipin synthase, mitochondrial	0.0586151644
+UniRef50_Q8H8U0: Cardiolipin synthase, mitochondrial|unclassified	0.0586151644
+UniRef50_UPI00037FB3DE: hypothetical protein	0.0586150437
+UniRef50_UPI00037FB3DE: hypothetical protein|unclassified	0.0586150437
+UniRef50_F3WYB3: Phasin family domain protein	0.0586139965
+UniRef50_F3WYB3: Phasin family domain protein|unclassified	0.0586139965
+UniRef50_UPI00046A641B: methionine ABC transporter ATP-binding protein	0.0586129835
+UniRef50_UPI00046A641B: methionine ABC transporter ATP-binding protein|unclassified	0.0586129835
+UniRef50_T7R405	0.0586068950
+UniRef50_T7R405|unclassified	0.0586068950
+UniRef50_M1XJR0	0.0585965568
+UniRef50_M1XJR0|unclassified	0.0585965568
+UniRef50_UPI00037482BD: hypothetical protein	0.0585898214
+UniRef50_UPI00037482BD: hypothetical protein|unclassified	0.0585898214
+UniRef50_UPI00036CC0A9: hypothetical protein	0.0585882070
+UniRef50_UPI00036CC0A9: hypothetical protein|unclassified	0.0585882070
+UniRef50_J9P6E4	0.0585870929
+UniRef50_J9P6E4|unclassified	0.0585870929
+UniRef50_UPI000366A6AA: hypothetical protein	0.0585850709
+UniRef50_UPI000366A6AA: hypothetical protein|unclassified	0.0585850709
+UniRef50_UPI000465BE78: iron transporter FeoB	0.0585824196
+UniRef50_UPI000465BE78: iron transporter FeoB|unclassified	0.0585824196
+UniRef50_UPI0004727FC4: altronate oxidoreductase	0.0585795053
+UniRef50_UPI0004727FC4: altronate oxidoreductase|unclassified	0.0585795053
+UniRef50_UPI0004658733: hypothetical protein	0.0585789245
+UniRef50_UPI0004658733: hypothetical protein|unclassified	0.0585789245
+UniRef50_K2LUG6: Oxidoreductase probably involved in sulfite reduction	0.0585762824
+UniRef50_K2LUG6: Oxidoreductase probably involved in sulfite reduction|unclassified	0.0585762824
+UniRef50_UPI0002B45331: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial-like	0.0585756258
+UniRef50_UPI0002B45331: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial-like|unclassified	0.0585756258
+UniRef50_UPI0003677D18: hypothetical protein	0.0585741311
+UniRef50_UPI0003677D18: hypothetical protein|unclassified	0.0585741311
+UniRef50_Q2NRR7: Ethanolamine utilization protein EutJ	0.0585628834
+UniRef50_Q2NRR7: Ethanolamine utilization protein EutJ|unclassified	0.0585628834
+UniRef50_U3X3E1: Cell wall-associated surface protein	0.0585625707
+UniRef50_U3X3E1: Cell wall-associated surface protein|unclassified	0.0585625707
+UniRef50_Q08WK0	0.0585602552
+UniRef50_Q08WK0|unclassified	0.0585602552
+UniRef50_UPI0003653B98: hypothetical protein	0.0585569785
+UniRef50_UPI0003653B98: hypothetical protein|unclassified	0.0585569785
+UniRef50_UPI00039D9A64: membrane protein	0.0585503851
+UniRef50_UPI00039D9A64: membrane protein|unclassified	0.0585503851
+UniRef50_Q4FSF2	0.0585470767
+UniRef50_Q4FSF2|unclassified	0.0585470767
+UniRef50_J3ULB2	0.0585460379
+UniRef50_J3ULB2|unclassified	0.0585460379
+UniRef50_UPI000479B424: nucleoside-diphosphate sugar epimerase	0.0585429853
+UniRef50_UPI000479B424: nucleoside-diphosphate sugar epimerase|unclassified	0.0585429853
+UniRef50_UPI00047BE69C: N-formimino-L-glutamate deiminase	0.0585421743
+UniRef50_UPI00047BE69C: N-formimino-L-glutamate deiminase|unclassified	0.0585421743
+UniRef50_R7CDA0	0.0585392749
+UniRef50_R7CDA0|unclassified	0.0585392749
+UniRef50_D5C122: Type II secretion system protein	0.0585380606
+UniRef50_D5C122: Type II secretion system protein|unclassified	0.0585380606
+UniRef50_UPI00037CACA0: hypothetical protein	0.0585360815
+UniRef50_UPI00037CACA0: hypothetical protein|unclassified	0.0585360815
+UniRef50_UPI0004082EC4: hypothetical protein	0.0585339964
+UniRef50_UPI0004082EC4: hypothetical protein|unclassified	0.0585339964
+UniRef50_UPI00037E40FE: hypothetical protein	0.0585291321
+UniRef50_UPI00037E40FE: hypothetical protein|unclassified	0.0585291321
+UniRef50_UPI0004219762: hypothetical protein	0.0585283764
+UniRef50_UPI0004219762: hypothetical protein|unclassified	0.0585283764
+UniRef50_A0A059INB1: Peptidase M23B	0.0585222278
+UniRef50_A0A059INB1: Peptidase M23B|unclassified	0.0585222278
+UniRef50_UPI0003D72D38: PREDICTED: D-2-hydroxyglutarate dehydrogenase, mitochondrial isoform X5	0.0585168216
+UniRef50_UPI0003D72D38: PREDICTED: D-2-hydroxyglutarate dehydrogenase, mitochondrial isoform X5|unclassified	0.0585168216
+UniRef50_UPI0004163F11: quinone oxidoreductase	0.0585134158
+UniRef50_UPI0004163F11: quinone oxidoreductase|unclassified	0.0585134158
+UniRef50_B0K474: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	0.0585080560
+UniRef50_B0K474: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.0585080560
+UniRef50_UPI00042B506F: Translation initiation factor 3 family protein, putative isoform 1	0.0585054352
+UniRef50_UPI00042B506F: Translation initiation factor 3 family protein, putative isoform 1|unclassified	0.0585054352
+UniRef50_UPI00047921DD: hypothetical protein	0.0585053289
+UniRef50_UPI00047921DD: hypothetical protein|unclassified	0.0585053289
+UniRef50_E3GR53	0.0585052913
+UniRef50_E3GR53|unclassified	0.0585052913
+UniRef50_W6DAT2	0.0584991974
+UniRef50_W6DAT2|unclassified	0.0584991974
+UniRef50_UPI0004640E44: hypothetical protein	0.0584965362
+UniRef50_UPI0004640E44: hypothetical protein|unclassified	0.0584965362
+UniRef50_U2LTW3	0.0584961243
+UniRef50_U2LTW3|unclassified	0.0584961243
+UniRef50_UPI000302963D: hypothetical protein	0.0584931468
+UniRef50_UPI000302963D: hypothetical protein|unclassified	0.0584931468
+UniRef50_V4QLF5	0.0584883326
+UniRef50_V4QLF5|unclassified	0.0584883326
+UniRef50_B2S9S5: Bacterial SH3-like region	0.0584880770
+UniRef50_B2S9S5: Bacterial SH3-like region|unclassified	0.0584880770
+UniRef50_UPI0003728A4F: hypothetical protein	0.0584799049
+UniRef50_UPI0003728A4F: hypothetical protein|unclassified	0.0584799049
+UniRef50_UPI00031D94A5: hypothetical protein	0.0584785612
+UniRef50_UPI00031D94A5: hypothetical protein|unclassified	0.0584785612
+UniRef50_UPI000421F0D6: orotate phosphoribosyltransferase	0.0584753129
+UniRef50_UPI000421F0D6: orotate phosphoribosyltransferase|unclassified	0.0584753129
+UniRef50_UPI0004766C78: deoxyribonuclease HsdR	0.0584738779
+UniRef50_UPI0004766C78: deoxyribonuclease HsdR|unclassified	0.0584738779
+UniRef50_UPI0003959DD2: ModE family transcriptional regulator	0.0584712841
+UniRef50_UPI0003959DD2: ModE family transcriptional regulator|unclassified	0.0584712841
+UniRef50_UPI00034547F6: hypothetical protein	0.0584692521
+UniRef50_UPI00034547F6: hypothetical protein|unclassified	0.0584692521
+UniRef50_UPI0001E8EA99: phospho-N-acetylmuramoyl-pentapeptide-transferase	0.0584640642
+UniRef50_UPI0001E8EA99: phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.0584640642
+UniRef50_UPI0004448C06: PREDICTED: molybdenum cofactor biosynthesis protein 1-like	0.0584627214
+UniRef50_UPI0004448C06: PREDICTED: molybdenum cofactor biosynthesis protein 1-like|unclassified	0.0584627214
+UniRef50_UPI000418FFF1: hypothetical protein	0.0584534018
+UniRef50_UPI000418FFF1: hypothetical protein|unclassified	0.0584534018
+UniRef50_F8DYM3	0.0584518802
+UniRef50_F8DYM3|unclassified	0.0584518802
+UniRef50_Q14JP5: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase	0.0584430948
+UniRef50_Q14JP5: UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase|unclassified	0.0584430948
+UniRef50_W5JAR3	0.0584378315
+UniRef50_W5JAR3|unclassified	0.0584378315
+UniRef50_G9AJ94	0.0584337874
+UniRef50_G9AJ94|unclassified	0.0584337874
+UniRef50_U1GGK9: Cell envelope-related transcriptional attenuator	0.0584332717
+UniRef50_U1GGK9: Cell envelope-related transcriptional attenuator|unclassified	0.0584332717
+UniRef50_A4EMS3	0.0584327884
+UniRef50_A4EMS3|unclassified	0.0584327884
+UniRef50_UPI0003B597F5: nucleoside triphosphate pyrophosphohydrolase	0.0584295349
+UniRef50_UPI0003B597F5: nucleoside triphosphate pyrophosphohydrolase|unclassified	0.0584295349
+UniRef50_F5XY47: Xanthine and CO dehydrogenases maturation factor-like protein	0.0584251974
+UniRef50_F5XY47: Xanthine and CO dehydrogenases maturation factor-like protein|unclassified	0.0584251974
+UniRef50_Q67P14: NADH-quinone oxidoreductase subunit I 1	0.0584204044
+UniRef50_Q67P14: NADH-quinone oxidoreductase subunit I 1|unclassified	0.0584204044
+UniRef50_I2FTW3	0.0584154798
+UniRef50_I2FTW3|unclassified	0.0584154798
+UniRef50_D7BML1: Putative molybdopterin-guanine dinucleotide biosynthesis protein A	0.0584148194
+UniRef50_D7BML1: Putative molybdopterin-guanine dinucleotide biosynthesis protein A|unclassified	0.0584148194
+UniRef50_UPI0002D80303: hypothetical protein	0.0584114766
+UniRef50_UPI0002D80303: hypothetical protein|unclassified	0.0584114766
+UniRef50_UPI000377D71C: hypothetical protein	0.0584010003
+UniRef50_UPI000377D71C: hypothetical protein|unclassified	0.0584010003
+UniRef50_A7HQ81: Thioesterase superfamily protein	0.0583980838
+UniRef50_A7HQ81: Thioesterase superfamily protein|unclassified	0.0583980838
+UniRef50_UPI0003B31AB1: hypothetical protein	0.0583946217
+UniRef50_UPI0003B31AB1: hypothetical protein|unclassified	0.0583946217
+UniRef50_Q5JFG9: Polyamine aminopropyl transferase	0.0583945837
+UniRef50_Q5JFG9: Polyamine aminopropyl transferase|unclassified	0.0583945837
+UniRef50_UPI00047ABD5B: hypothetical protein, partial	0.0583938121
+UniRef50_UPI00047ABD5B: hypothetical protein, partial|unclassified	0.0583938121
+UniRef50_UPI0003629197: hypothetical protein	0.0583911146
+UniRef50_UPI0003629197: hypothetical protein|unclassified	0.0583911146
+UniRef50_UPI00045EC191: hypothetical protein	0.0583909808
+UniRef50_UPI00045EC191: hypothetical protein|unclassified	0.0583909808
+UniRef50_M2XBU3: Putative secreted transglycosylase	0.0583885334
+UniRef50_M2XBU3: Putative secreted transglycosylase|unclassified	0.0583885334
+UniRef50_Q9Z9J0: tRNA pseudouridine synthase A	0.0583881580
+UniRef50_Q9Z9J0: tRNA pseudouridine synthase A|unclassified	0.0583881580
+UniRef50_X1CFP7: Marine sediment metagenome DNA, contig: S01H4_S08247 (Fragment)	0.0583870860
+UniRef50_X1CFP7: Marine sediment metagenome DNA, contig: S01H4_S08247 (Fragment)|unclassified	0.0583870860
+UniRef50_UPI0003B318B9: hypothetical protein	0.0583823178
+UniRef50_UPI0003B318B9: hypothetical protein|unclassified	0.0583823178
+UniRef50_U6GAH2	0.0583812662
+UniRef50_U6GAH2|unclassified	0.0583812662
+UniRef50_V6EZG7	0.0583806572
+UniRef50_V6EZG7|unclassified	0.0583806572
+UniRef50_Q7UF84: Biotin synthase	0.0583753320
+UniRef50_Q7UF84: Biotin synthase|unclassified	0.0583753320
+UniRef50_A5FYH5	0.0583731985
+UniRef50_A5FYH5|unclassified	0.0583731985
+UniRef50_W7WLA1: Acetoin catabolism regulatory protein	0.0583726569
+UniRef50_W7WLA1: Acetoin catabolism regulatory protein|unclassified	0.0583726569
+UniRef50_A0A011Q1R0: Penicillin-binding protein 2	0.0583701109
+UniRef50_A0A011Q1R0: Penicillin-binding protein 2|unclassified	0.0583701109
+UniRef50_UPI00037E5B6E: hypothetical protein	0.0583689453
+UniRef50_UPI00037E5B6E: hypothetical protein|unclassified	0.0583689453
+UniRef50_UPI000311B3D2: hypothetical protein	0.0583682501
+UniRef50_UPI000311B3D2: hypothetical protein|unclassified	0.0583682501
+UniRef50_A2BW42: UDP-3-O-acylglucosamine N-acyltransferase	0.0583681882
+UniRef50_A2BW42: UDP-3-O-acylglucosamine N-acyltransferase|unclassified	0.0583681882
+UniRef50_UPI0004422E0A: PREDICTED: UDP-glucuronic acid decarboxylase 1-like, partial	0.0583656804
+UniRef50_UPI0004422E0A: PREDICTED: UDP-glucuronic acid decarboxylase 1-like, partial|unclassified	0.0583656804
+UniRef50_UPI0004743366: preprotein translocase subunit SecA, partial	0.0583634260
+UniRef50_UPI0004743366: preprotein translocase subunit SecA, partial|unclassified	0.0583634260
+UniRef50_UPI000225AF96: DnaK suppressor protein	0.0583603979
+UniRef50_UPI000225AF96: DnaK suppressor protein|unclassified	0.0583603979
+UniRef50_UPI0004713832: hypothetical protein	0.0583577351
+UniRef50_UPI0004713832: hypothetical protein|unclassified	0.0583577351
+UniRef50_UPI0004693F36: hypothetical protein	0.0583559875
+UniRef50_UPI0004693F36: hypothetical protein|unclassified	0.0583559875
+UniRef50_I3TUN1: NnrS family protein	0.0583548597
+UniRef50_I3TUN1: NnrS family protein|unclassified	0.0583548597
+UniRef50_UPI000471AA4D: alcohol dehydrogenase	0.0583547066
+UniRef50_UPI000471AA4D: alcohol dehydrogenase|unclassified	0.0583547066
+UniRef50_B5H4B7	0.0583493504
+UniRef50_B5H4B7|unclassified	0.0583493504
+UniRef50_UPI000366E5C2: hypothetical protein	0.0583484388
+UniRef50_UPI000366E5C2: hypothetical protein|unclassified	0.0583484388
+UniRef50_C2L177: NLPA lipoprotein	0.0583457992
+UniRef50_C2L177: NLPA lipoprotein|unclassified	0.0583457992
+UniRef50_K9B2I2: Capsular polysaccharide synthesis enzyme Cap5M	0.0583446051
+UniRef50_K9B2I2: Capsular polysaccharide synthesis enzyme Cap5M|unclassified	0.0583446051
+UniRef50_Q2N6J8: Uroporphyrinogen decarboxylase	0.0583425427
+UniRef50_Q2N6J8: Uroporphyrinogen decarboxylase|unclassified	0.0583425427
+UniRef50_UPI0003B402AB: phosphate starvation protein PhoH	0.0583412864
+UniRef50_UPI0003B402AB: phosphate starvation protein PhoH|unclassified	0.0583412864
+UniRef50_UPI000469D8F5: sigma factor	0.0583393338
+UniRef50_UPI000469D8F5: sigma factor|unclassified	0.0583393338
+UniRef50_UPI0004223F53: hypothetical protein	0.0583391186
+UniRef50_UPI0004223F53: hypothetical protein|unclassified	0.0583391186
+UniRef50_C3P185: NlpC/P60 family protein	0.0583374807
+UniRef50_C3P185: NlpC/P60 family protein|unclassified	0.0583374807
+UniRef50_UPI00034F34D0: PREDICTED: basic proline-rich protein-like	0.0583365439
+UniRef50_UPI00034F34D0: PREDICTED: basic proline-rich protein-like|unclassified	0.0583365439
+UniRef50_UPI00016BFDFB: aminoacyl-histidine dipeptidase	0.0583362548
+UniRef50_UPI00016BFDFB: aminoacyl-histidine dipeptidase|unclassified	0.0583362548
+UniRef50_UPI0004799658: hypothetical protein	0.0583354311
+UniRef50_UPI0004799658: hypothetical protein|unclassified	0.0583354311
+UniRef50_UPI0003B57ED2: peptide ABC transporter substrate-binding protein	0.0583205025
+UniRef50_UPI0003B57ED2: peptide ABC transporter substrate-binding protein|unclassified	0.0583205025
+UniRef50_UPI00047DB68A: Ala-tRNA(Pro) hydrolase	0.0583203697
+UniRef50_UPI00047DB68A: Ala-tRNA(Pro) hydrolase|unclassified	0.0583203697
+UniRef50_UPI0003943A79: fatty-acid oxidation protein subunit alpha	0.0583195793
+UniRef50_UPI0003943A79: fatty-acid oxidation protein subunit alpha|unclassified	0.0583195793
+UniRef50_Q0A6N7: Type II secretion system protein	0.0583022887
+UniRef50_Q0A6N7: Type II secretion system protein|unclassified	0.0583022887
+UniRef50_UPI000478A2C8: hypothetical protein	0.0582974086
+UniRef50_UPI000478A2C8: hypothetical protein|unclassified	0.0582974086
+UniRef50_M2ZM72	0.0582947418
+UniRef50_M2ZM72|unclassified	0.0582947418
+UniRef50_UPI0002DB3FC2: hypothetical protein	0.0582932300
+UniRef50_UPI0002DB3FC2: hypothetical protein|unclassified	0.0582932300
+UniRef50_UPI0004724ADD: ATPase P	0.0582921901
+UniRef50_UPI0004724ADD: ATPase P|unclassified	0.0582921901
+UniRef50_R5HCS9	0.0582907105
+UniRef50_R5HCS9|unclassified	0.0582907105
+UniRef50_F6CW23	0.0582853003
+UniRef50_F6CW23|unclassified	0.0582853003
+UniRef50_UPI000255F2C8: serine/threonine protein phosphatase	0.0582810599
+UniRef50_UPI000255F2C8: serine/threonine protein phosphatase|unclassified	0.0582810599
+UniRef50_P38891: Branched-chain-amino-acid aminotransferase, mitochondrial	0.0582789542
+UniRef50_P38891: Branched-chain-amino-acid aminotransferase, mitochondrial|unclassified	0.0582789542
+UniRef50_B8ID11: Dihydroorotate dehydrogenase (quinone)	0.0582788479
+UniRef50_B8ID11: Dihydroorotate dehydrogenase (quinone)|unclassified	0.0582788479
+UniRef50_UPI00047A3814: hypothetical protein	0.0582771910
+UniRef50_UPI00047A3814: hypothetical protein|unclassified	0.0582771910
+UniRef50_C7D887	0.0582758387
+UniRef50_C7D887|unclassified	0.0582758387
+UniRef50_UPI00029B5267: NUDIX hydrolase	0.0582753361
+UniRef50_UPI00029B5267: NUDIX hydrolase|unclassified	0.0582753361
+UniRef50_UPI00047BCCCF: hypothetical protein, partial	0.0582729439
+UniRef50_UPI00047BCCCF: hypothetical protein, partial|unclassified	0.0582729439
+UniRef50_UPI00037487E6: ABC transporter	0.0582673981
+UniRef50_UPI00037487E6: ABC transporter|unclassified	0.0582673981
+UniRef50_UPI000344FFF2: DNA polymerase II	0.0582624903
+UniRef50_UPI000344FFF2: DNA polymerase II|unclassified	0.0582624903
+UniRef50_UPI0003B40EB1: metal-dependent hydrolase	0.0582570883
+UniRef50_UPI0003B40EB1: metal-dependent hydrolase|unclassified	0.0582570883
+UniRef50_UPI0003502022: PREDICTED: basic proline-rich protein-like	0.0582533270
+UniRef50_UPI0003502022: PREDICTED: basic proline-rich protein-like|unclassified	0.0582533270
+UniRef50_V7ELG0: Pilus assembly protein TadC	0.0582378235
+UniRef50_V7ELG0: Pilus assembly protein TadC|unclassified	0.0582378235
+UniRef50_UPI000363B7D3: hypothetical protein	0.0582337045
+UniRef50_UPI000363B7D3: hypothetical protein|unclassified	0.0582337045
+UniRef50_Q480P4: Leucyl/phenylalanyl-tRNA--protein transferase	0.0582189166
+UniRef50_Q480P4: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.0582189166
+UniRef50_D5ANR5	0.0582108788
+UniRef50_D5ANR5|unclassified	0.0582108788
+UniRef50_E8WXY4	0.0582079781
+UniRef50_E8WXY4|unclassified	0.0582079781
+UniRef50_UPI0002C302BC: PREDICTED: LOW QUALITY PROTEIN: ATP-dependent Clp protease ATP-binding subunit clpA homolog CD4A, chloroplastic-like	0.0582061952
+UniRef50_UPI0002C302BC: PREDICTED: LOW QUALITY PROTEIN: ATP-dependent Clp protease ATP-binding subunit clpA homolog CD4A, chloroplastic-like|unclassified	0.0582061952
+UniRef50_UPI0002557A0F: siderophore interacting protein	0.0582035288
+UniRef50_UPI0002557A0F: siderophore interacting protein|unclassified	0.0582035288
+UniRef50_Q8DL38: Biotin synthase	0.0582005556
+UniRef50_Q8DL38: Biotin synthase|unclassified	0.0582005556
+UniRef50_UPI000375F3CB: hypothetical protein	0.0581994499
+UniRef50_UPI000375F3CB: hypothetical protein|unclassified	0.0581994499
+UniRef50_UPI00037A3F8A: hypothetical protein	0.0581987715
+UniRef50_UPI00037A3F8A: hypothetical protein|unclassified	0.0581987715
+UniRef50_UPI000419C10C: hypothetical protein	0.0581934519
+UniRef50_UPI000419C10C: hypothetical protein|unclassified	0.0581934519
+UniRef50_H1SMF3	0.0581910330
+UniRef50_H1SMF3|unclassified	0.0581910330
+UniRef50_O31461: Branched-chain-amino-acid transaminase 1	0.0581855601
+UniRef50_O31461: Branched-chain-amino-acid transaminase 1|unclassified	0.0581855601
+UniRef50_Q5QW15: Ribosomal RNA large subunit methyltransferase M	0.0581706043
+UniRef50_Q5QW15: Ribosomal RNA large subunit methyltransferase M|unclassified	0.0581706043
+UniRef50_UPI0004665B0F: hypothetical protein	0.0581377275
+UniRef50_UPI0004665B0F: hypothetical protein|unclassified	0.0581377275
+UniRef50_UPI0003B47A6E: histidine kinase	0.0581350597
+UniRef50_UPI0003B47A6E: histidine kinase|unclassified	0.0581350597
+UniRef50_B9MJY9: Ribosomal protein L11 methyltransferase	0.0581343703
+UniRef50_B9MJY9: Ribosomal protein L11 methyltransferase|unclassified	0.0581343703
+UniRef50_A1WVC8: DNA-directed RNA polymerase subunit beta'	0.0581295923
+UniRef50_A1WVC8: DNA-directed RNA polymerase subunit beta'|unclassified	0.0581295923
+UniRef50_A4XI01: Phospho-N-acetylmuramoyl-pentapeptide-transferase	0.0581219598
+UniRef50_A4XI01: Phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.0581219598
+UniRef50_I8HZV8	0.0581205914
+UniRef50_I8HZV8|unclassified	0.0581205914
+UniRef50_A5G030: Ppx/GppA phosphatase	0.0581162847
+UniRef50_A5G030: Ppx/GppA phosphatase|unclassified	0.0581162847
+UniRef50_UPI000023C28B: methylenetetrahydrofolate dehydrogenase (NADP+)/ methenyltetrahydrofolate cyclohydrolase	0.0581125434
+UniRef50_UPI000023C28B: methylenetetrahydrofolate dehydrogenase (NADP+)/ methenyltetrahydrofolate cyclohydrolase|unclassified	0.0581125434
+UniRef50_UPI00029A8E84: short chain dehydrogenase/reductase	0.0581104364
+UniRef50_UPI00029A8E84: short chain dehydrogenase/reductase|unclassified	0.0581104364
+UniRef50_Q67KZ3: Glutamyl-Q tRNA(Asp) synthetase	0.0581098850
+UniRef50_Q67KZ3: Glutamyl-Q tRNA(Asp) synthetase|unclassified	0.0581098850
+UniRef50_UPI000418B8F2: hypothetical protein	0.0581085596
+UniRef50_UPI000418B8F2: hypothetical protein|unclassified	0.0581085596
+UniRef50_UPI00026286B9: hydrolase	0.0581031145
+UniRef50_UPI00026286B9: hydrolase|unclassified	0.0581031145
+UniRef50_UPI00036DBE7B: hypothetical protein	0.0580951836
+UniRef50_UPI00036DBE7B: hypothetical protein|unclassified	0.0580951836
+UniRef50_C7HUW0	0.0580950773
+UniRef50_C7HUW0|unclassified	0.0580950773
+UniRef50_B2A805	0.0580890034
+UniRef50_B2A805|unclassified	0.0580890034
+UniRef50_UPI000361217C: hypothetical protein	0.0580859196
+UniRef50_UPI000361217C: hypothetical protein|unclassified	0.0580859196
+UniRef50_UPI0003C80514: PREDICTED: xaa-Pro aminopeptidase 2	0.0580832370
+UniRef50_UPI0003C80514: PREDICTED: xaa-Pro aminopeptidase 2|unclassified	0.0580832370
+UniRef50_A9UZQ9: Predicted protein	0.0580789052
+UniRef50_A9UZQ9: Predicted protein|unclassified	0.0580789052
+UniRef50_D8UC33	0.0580773475
+UniRef50_D8UC33|unclassified	0.0580773475
+UniRef50_E4XZ52: Whole genome shotgun assembly, reference scaffold set, scaffold scaffold_361	0.0580739772
+UniRef50_E4XZ52: Whole genome shotgun assembly, reference scaffold set, scaffold scaffold_361|unclassified	0.0580739772
+UniRef50_UPI000409D90E: anthranilate synthase	0.0580727536
+UniRef50_UPI000409D90E: anthranilate synthase|unclassified	0.0580727536
+UniRef50_UPI000377E8D6: MULTISPECIES: hypothetical protein	0.0580698619
+UniRef50_UPI000377E8D6: MULTISPECIES: hypothetical protein|unclassified	0.0580698619
+UniRef50_UPI000344DE3D: ferredoxin	0.0580686919
+UniRef50_UPI000344DE3D: ferredoxin|unclassified	0.0580686919
+UniRef50_UPI000373527A: hypothetical protein, partial	0.0580666417
+UniRef50_UPI000373527A: hypothetical protein, partial|unclassified	0.0580666417
+UniRef50_UPI0003782B50: hypothetical protein	0.0580612895
+UniRef50_UPI0003782B50: hypothetical protein|unclassified	0.0580612895
+UniRef50_K0FX42: Lpxtg-motif cell wall anchor domain protein	0.0580581364
+UniRef50_K0FX42: Lpxtg-motif cell wall anchor domain protein|unclassified	0.0580581364
+UniRef50_UPI0003B49B6A: aminoglycoside resistance protein	0.0580548624
+UniRef50_UPI0003B49B6A: aminoglycoside resistance protein|unclassified	0.0580548624
+UniRef50_UPI00045EA0D3: hypothetical protein	0.0580367846
+UniRef50_UPI00045EA0D3: hypothetical protein|unclassified	0.0580367846
+UniRef50_J9P562	0.0580271450
+UniRef50_J9P562|unclassified	0.0580271450
+UniRef50_UPI00047BB522: hypothetical protein	0.0580229720
+UniRef50_UPI00047BB522: hypothetical protein|unclassified	0.0580229720
+UniRef50_UPI00036C8D4E: hypothetical protein	0.0580206761
+UniRef50_UPI00036C8D4E: hypothetical protein|unclassified	0.0580206761
+UniRef50_Q68WT1: DNA helicase II	0.0580196134
+UniRef50_Q68WT1: DNA helicase II|unclassified	0.0580196134
+UniRef50_UPI0003632FFE: hypothetical protein	0.0580193651
+UniRef50_UPI0003632FFE: hypothetical protein|unclassified	0.0580193651
+UniRef50_UPI0003730702: hypothetical protein	0.0580131460
+UniRef50_UPI0003730702: hypothetical protein|unclassified	0.0580131460
+UniRef50_M7P1G2	0.0580126306
+UniRef50_M7P1G2|unclassified	0.0580126306
+UniRef50_UPI00046A87DB: hydroxyethylthiazole kinase	0.0580116010
+UniRef50_UPI00046A87DB: hydroxyethylthiazole kinase|unclassified	0.0580116010
+UniRef50_U2EAI3: UPF0502 protein mviM3	0.0580072124
+UniRef50_U2EAI3: UPF0502 protein mviM3|unclassified	0.0580072124
+UniRef50_UPI00034488F7: PREDICTED: thiosulfate sulfurtransferase isoform X1	0.0580056022
+UniRef50_UPI00034488F7: PREDICTED: thiosulfate sulfurtransferase isoform X1|unclassified	0.0580056022
+UniRef50_UPI0003289A07: PREDICTED: translation initiation factor IF-2-like	0.0580028486
+UniRef50_UPI0003289A07: PREDICTED: translation initiation factor IF-2-like|unclassified	0.0580028486
+UniRef50_UPI0003D762C3: PREDICTED: prostaglandin reductase 2 isoform X1	0.0580022129
+UniRef50_UPI0003D762C3: PREDICTED: prostaglandin reductase 2 isoform X1|unclassified	0.0580022129
+UniRef50_A0A024HWH6	0.0579932242
+UniRef50_A0A024HWH6|unclassified	0.0579932242
+UniRef50_UPI00047C6F88: type I restriction enzyme EcoKI subunit R	0.0579931217
+UniRef50_UPI00047C6F88: type I restriction enzyme EcoKI subunit R|unclassified	0.0579931217
+UniRef50_Q11P11	0.0579867347
+UniRef50_Q11P11|unclassified	0.0579867347
+UniRef50_UPI00037F0397: hypothetical protein	0.0579859031
+UniRef50_UPI00037F0397: hypothetical protein|unclassified	0.0579859031
+UniRef50_UPI00047DFFFB: hypothetical protein	0.0579847100
+UniRef50_UPI00047DFFFB: hypothetical protein|unclassified	0.0579847100
+UniRef50_UPI00039B09E2: lipoyl synthase	0.0579780678
+UniRef50_UPI00039B09E2: lipoyl synthase|unclassified	0.0579780678
+UniRef50_UPI00040A625C: hypothetical protein	0.0579757304
+UniRef50_UPI00040A625C: hypothetical protein|unclassified	0.0579757304
+UniRef50_R5XB52	0.0579746582
+UniRef50_R5XB52|unclassified	0.0579746582
+UniRef50_UPI000410FFCF: protoheme IX farnesyltransferase	0.0579745512
+UniRef50_UPI000410FFCF: protoheme IX farnesyltransferase|unclassified	0.0579745512
+UniRef50_P26397: CDP-glucose 4,6-dehydratase	0.0579720172
+UniRef50_P26397: CDP-glucose 4,6-dehydratase|unclassified	0.0579720172
+UniRef50_UPI000395630A: PREDICTED: basic proline-rich protein-like	0.0579672271
+UniRef50_UPI000395630A: PREDICTED: basic proline-rich protein-like|unclassified	0.0579672271
+UniRef50_Q24YW4: Enolase 1	0.0579636873
+UniRef50_Q24YW4: Enolase 1|unclassified	0.0579636873
+UniRef50_K2U4A3	0.0579605453
+UniRef50_K2U4A3|unclassified	0.0579605453
+UniRef50_B6IN53	0.0579591400
+UniRef50_B6IN53|unclassified	0.0579591400
+UniRef50_UPI00030EE3E8: hypothetical protein	0.0579590327
+UniRef50_UPI00030EE3E8: hypothetical protein|unclassified	0.0579590327
+UniRef50_Q59258: Citrate synthase (Fragment)	0.0579547488
+UniRef50_Q59258: Citrate synthase (Fragment)|unclassified	0.0579547488
+UniRef50_UPI0003653290: hypothetical protein	0.0579513742
+UniRef50_UPI0003653290: hypothetical protein|unclassified	0.0579513742
+UniRef50_UPI000364360D: hypothetical protein	0.0579472596
+UniRef50_UPI000364360D: hypothetical protein|unclassified	0.0579472596
+UniRef50_UPI000370353E: short-chain dehydrogenase	0.0579305172
+UniRef50_UPI000370353E: short-chain dehydrogenase|unclassified	0.0579305172
+UniRef50_A0A024F0D2	0.0579299475
+UniRef50_A0A024F0D2|unclassified	0.0579299475
+UniRef50_UPI000463A505: hypothetical protein, partial	0.0579279646
+UniRef50_UPI000463A505: hypothetical protein, partial|unclassified	0.0579279646
+UniRef50_UPI0004700EC9: hypothetical protein	0.0579260645
+UniRef50_UPI0004700EC9: hypothetical protein|unclassified	0.0579260645
+UniRef50_W5X3V7: Methyltransferase, UbiE/COQ5 family	0.0579205393
+UniRef50_W5X3V7: Methyltransferase, UbiE/COQ5 family|unclassified	0.0579205393
+UniRef50_D3CWG8	0.0579188231
+UniRef50_D3CWG8|unclassified	0.0579188231
+UniRef50_UPI00037978D8: hypothetical protein	0.0579148617
+UniRef50_UPI00037978D8: hypothetical protein|unclassified	0.0579148617
+UniRef50_UPI000376424C: hypothetical protein	0.0579102971
+UniRef50_UPI000376424C: hypothetical protein|unclassified	0.0579102971
+UniRef50_UPI0004782C1A: ABC transporter permease	0.0579085450
+UniRef50_UPI0004782C1A: ABC transporter permease|unclassified	0.0579085450
+UniRef50_P15505: Glycine dehydrogenase (decarboxylating), mitochondrial	0.0578991010
+UniRef50_P15505: Glycine dehydrogenase (decarboxylating), mitochondrial|unclassified	0.0578991010
+UniRef50_UPI0003B5DB0B: membrane protein	0.0578971085
+UniRef50_UPI0003B5DB0B: membrane protein|unclassified	0.0578971085
+UniRef50_UPI0001FFFC2D: ABC transporter substrate-binding protein	0.0578968560
+UniRef50_UPI0001FFFC2D: ABC transporter substrate-binding protein|unclassified	0.0578968560
+UniRef50_UPI0003760221: hypothetical protein	0.0578964351
+UniRef50_UPI0003760221: hypothetical protein|unclassified	0.0578964351
+UniRef50_X7Y8U0: Polyketide cyclase / dehydrase and lipid transport family protein	0.0578881933
+UniRef50_X7Y8U0: Polyketide cyclase / dehydrase and lipid transport family protein|unclassified	0.0578881933
+UniRef50_Q7WXN9	0.0578873855
+UniRef50_Q7WXN9|unclassified	0.0578873855
+UniRef50_UPI000465F10F: hypothetical protein	0.0578872145
+UniRef50_UPI000465F10F: hypothetical protein|unclassified	0.0578872145
+UniRef50_UPI0003B4DC67: UDP-glucose 4-epimerase	0.0578827795
+UniRef50_UPI0003B4DC67: UDP-glucose 4-epimerase|unclassified	0.0578827795
+UniRef50_C6BVA6: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.0578738608
+UniRef50_C6BVA6: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.0578738608
+UniRef50_Q2LUC8: Chorismate synthase	0.0578677954
+UniRef50_Q2LUC8: Chorismate synthase|unclassified	0.0578677954
+UniRef50_R5VYC9	0.0578675489
+UniRef50_R5VYC9|unclassified	0.0578675489
+UniRef50_V6M5W2	0.0578649061
+UniRef50_V6M5W2|unclassified	0.0578649061
+UniRef50_A9NGC2: 4-hydroxy-tetrahydrodipicolinate synthase	0.0578640322
+UniRef50_A9NGC2: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0578640322
+UniRef50_UPI00046FDBDC: phosphomethylpyrimidine kinase	0.0578625422
+UniRef50_UPI00046FDBDC: phosphomethylpyrimidine kinase|unclassified	0.0578625422
+UniRef50_UPI00046ED547: major facilitator transporter, partial	0.0578603294
+UniRef50_UPI00046ED547: major facilitator transporter, partial|unclassified	0.0578603294
+UniRef50_UPI000375CE36: hypothetical protein	0.0578591486
+UniRef50_UPI000375CE36: hypothetical protein|unclassified	0.0578591486
+UniRef50_P06132: Uroporphyrinogen decarboxylase	0.0578572275
+UniRef50_P06132: Uroporphyrinogen decarboxylase|unclassified	0.0578572275
+UniRef50_E1V8A0	0.0578550377
+UniRef50_E1V8A0|unclassified	0.0578550377
+UniRef50_Q9X3Y3: DNA gyrase subunit B (Fragment)	0.0578540204
+UniRef50_Q9X3Y3: DNA gyrase subunit B (Fragment)|unclassified	0.0578540204
+UniRef50_Q74BF4: Phosphoheptose isomerase	0.0578527069
+UniRef50_Q74BF4: Phosphoheptose isomerase|unclassified	0.0578527069
+UniRef50_UPI00047C6B39: hypothetical protein	0.0578522671
+UniRef50_UPI00047C6B39: hypothetical protein|unclassified	0.0578522671
+UniRef50_B8GL56	0.0578509640
+UniRef50_B8GL56|unclassified	0.0578509640
+UniRef50_UPI0004788AD3: hypothetical protein	0.0578501506
+UniRef50_UPI0004788AD3: hypothetical protein|unclassified	0.0578501506
+UniRef50_UPI00028A299B: deoxyribonucleotide triphosphate pyrophosphatase	0.0578448518
+UniRef50_UPI00028A299B: deoxyribonucleotide triphosphate pyrophosphatase|unclassified	0.0578448518
+UniRef50_X1C711: Marine sediment metagenome DNA, contig: S01H4_L06080 (Fragment)	0.0578446289
+UniRef50_X1C711: Marine sediment metagenome DNA, contig: S01H4_L06080 (Fragment)|unclassified	0.0578446289
+UniRef50_R4KQW9: Stage IV sporulation protein B	0.0578345759
+UniRef50_R4KQW9: Stage IV sporulation protein B|unclassified	0.0578345759
+UniRef50_UPI0003B77170: 30S ribosomal protein S2	0.0578318182
+UniRef50_UPI0003B77170: 30S ribosomal protein S2|unclassified	0.0578318182
+UniRef50_UPI0003668AD4: hypothetical protein	0.0578291793
+UniRef50_UPI0003668AD4: hypothetical protein|unclassified	0.0578291793
+UniRef50_UPI00036199C3: hypothetical protein	0.0578283875
+UniRef50_UPI00036199C3: hypothetical protein|unclassified	0.0578283875
+UniRef50_L5N059	0.0578220016
+UniRef50_L5N059|unclassified	0.0578220016
+UniRef50_C7RNR8: Lytic transglycosylase catalytic	0.0578194914
+UniRef50_C7RNR8: Lytic transglycosylase catalytic|unclassified	0.0578194914
+UniRef50_U6KFX2	0.0578191839
+UniRef50_U6KFX2|unclassified	0.0578191839
+UniRef50_A1SB17: Type IV pilus biogenesis protein PilO	0.0578187240
+UniRef50_A1SB17: Type IV pilus biogenesis protein PilO|unclassified	0.0578187240
+UniRef50_UPI0003B38803: ribokinase	0.0578183936
+UniRef50_UPI0003B38803: ribokinase|unclassified	0.0578183936
+UniRef50_UPI0003698367: hypothetical protein	0.0578106122
+UniRef50_UPI0003698367: hypothetical protein|unclassified	0.0578106122
+UniRef50_Q9F8I0: Alanine racemase	0.0578059033
+UniRef50_Q9F8I0: Alanine racemase|unclassified	0.0578059033
+UniRef50_UPI00046400EF: hypothetical protein	0.0578040469
+UniRef50_UPI00046400EF: hypothetical protein|unclassified	0.0578040469
+UniRef50_UPI000382B45A: hypothetical protein	0.0577930139
+UniRef50_UPI000382B45A: hypothetical protein|unclassified	0.0577930139
+UniRef50_UPI000309F09E: cytochrome P450	0.0577913892
+UniRef50_UPI000309F09E: cytochrome P450|unclassified	0.0577913892
+UniRef50_C0VQW3	0.0577804984
+UniRef50_C0VQW3|unclassified	0.0577804984
+UniRef50_V7DIG9: Membrane protein	0.0577744751
+UniRef50_V7DIG9: Membrane protein|unclassified	0.0577744751
+UniRef50_UPI00037B4674: hypothetical protein	0.0577612777
+UniRef50_UPI00037B4674: hypothetical protein|unclassified	0.0577612777
+UniRef50_UPI00047D1BF8: hypothetical protein	0.0577575030
+UniRef50_UPI00047D1BF8: hypothetical protein|unclassified	0.0577575030
+UniRef50_UPI0004710BB6: hypothetical protein	0.0577551816
+UniRef50_UPI0004710BB6: hypothetical protein|unclassified	0.0577551816
+UniRef50_UPI00047B18D2: hypothetical protein	0.0577549042
+UniRef50_UPI00047B18D2: hypothetical protein|unclassified	0.0577549042
+UniRef50_F7TYR7: Riboflavin biosynthesis protein RibD	0.0577457239
+UniRef50_F7TYR7: Riboflavin biosynthesis protein RibD|unclassified	0.0577457239
+UniRef50_Q189Q7: Arginine--tRNA ligase	0.0577435078
+UniRef50_Q189Q7: Arginine--tRNA ligase|unclassified	0.0577435078
+UniRef50_G2T6W5: Ppx/GppA phosphatase	0.0577338027
+UniRef50_G2T6W5: Ppx/GppA phosphatase|unclassified	0.0577338027
+UniRef50_C2QZX3	0.0577292953
+UniRef50_C2QZX3|unclassified	0.0577292953
+UniRef50_B9EB32	0.0577263527
+UniRef50_B9EB32|unclassified	0.0577263527
+UniRef50_UPI000465FD2A: serine hydroxymethyltransferase, partial	0.0577249176
+UniRef50_UPI000465FD2A: serine hydroxymethyltransferase, partial|unclassified	0.0577249176
+UniRef50_K8W638	0.0577208845
+UniRef50_K8W638|unclassified	0.0577208845
+UniRef50_Q89ZA3	0.0577149661
+UniRef50_Q89ZA3|unclassified	0.0577149661
+UniRef50_Q32EJ6	0.0577134338
+UniRef50_Q32EJ6|unclassified	0.0577134338
+UniRef50_UPI00034FBB68: PREDICTED: translation initiation factor IF-2-like	0.0577093657
+UniRef50_UPI00034FBB68: PREDICTED: translation initiation factor IF-2-like|unclassified	0.0577093657
+UniRef50_UPI00035E28E1: hypothetical protein	0.0577001643
+UniRef50_UPI00035E28E1: hypothetical protein|unclassified	0.0577001643
+UniRef50_UPI0003B4607F: Rieske (2Fe-2S) protein	0.0577001037
+UniRef50_UPI0003B4607F: Rieske (2Fe-2S) protein|unclassified	0.0577001037
+UniRef50_D1AC29	0.0576941583
+UniRef50_D1AC29|unclassified	0.0576941583
+UniRef50_R2X9I1	0.0576902597
+UniRef50_R2X9I1|unclassified	0.0576902597
+UniRef50_UPI000370155F: hypothetical protein	0.0576887761
+UniRef50_UPI000370155F: hypothetical protein|unclassified	0.0576887761
+UniRef50_UPI000478526A: hypothetical protein	0.0576851830
+UniRef50_UPI000478526A: hypothetical protein|unclassified	0.0576851830
+UniRef50_A7FFR4	0.0576849514
+UniRef50_A7FFR4|unclassified	0.0576849514
+UniRef50_Q3A244: Zinc metalloendopeptidase, M23 family	0.0576832628
+UniRef50_Q3A244: Zinc metalloendopeptidase, M23 family|unclassified	0.0576832628
+UniRef50_UPI000361DBC6: hypothetical protein	0.0576713317
+UniRef50_UPI000361DBC6: hypothetical protein|unclassified	0.0576713317
+UniRef50_UPI000378F2FD: hypothetical protein	0.0576691793
+UniRef50_UPI000378F2FD: hypothetical protein|unclassified	0.0576691793
+UniRef50_W0K4Z5	0.0576608667
+UniRef50_W0K4Z5|unclassified	0.0576608667
+UniRef50_P54385: Glutamate dehydrogenase, mitochondrial	0.0576532207
+UniRef50_P54385: Glutamate dehydrogenase, mitochondrial|unclassified	0.0576532207
+UniRef50_B8J4Q3: Chorismate synthase	0.0576531097
+UniRef50_B8J4Q3: Chorismate synthase|unclassified	0.0576531097
+UniRef50_UPI0003F7499A: hypothetical protein	0.0576487961
+UniRef50_UPI0003F7499A: hypothetical protein|unclassified	0.0576487961
+UniRef50_K9P2E4: Truncated type IV secretion system protein (Fragment)	0.0576424092
+UniRef50_K9P2E4: Truncated type IV secretion system protein (Fragment)|unclassified	0.0576424092
+UniRef50_UPI00037AB876: hypothetical protein	0.0576405396
+UniRef50_UPI00037AB876: hypothetical protein|unclassified	0.0576405396
+UniRef50_C1A399: Arginine deiminase	0.0576396909
+UniRef50_C1A399: Arginine deiminase|unclassified	0.0576396909
+UniRef50_UPI0003672D3D: hypothetical protein	0.0576370647
+UniRef50_UPI0003672D3D: hypothetical protein|unclassified	0.0576370647
+UniRef50_M5DNI9	0.0576369313
+UniRef50_M5DNI9|unclassified	0.0576369313
+UniRef50_UPI00038184AD: hypothetical protein	0.0576333646
+UniRef50_UPI00038184AD: hypothetical protein|unclassified	0.0576333646
+UniRef50_UPI0002DA58BE: hypothetical protein	0.0576304562
+UniRef50_UPI0002DA58BE: hypothetical protein|unclassified	0.0576304562
+UniRef50_UPI0004636F37: ABC transporter permease	0.0576248531
+UniRef50_UPI0004636F37: ABC transporter permease|unclassified	0.0576248531
+UniRef50_L5JZD1: YTH domain family protein 1	0.0576246867
+UniRef50_L5JZD1: YTH domain family protein 1|unclassified	0.0576246867
+UniRef50_UPI00047124E8: hypothetical protein	0.0576182715
+UniRef50_UPI00047124E8: hypothetical protein|unclassified	0.0576182715
+UniRef50_UPI000407B74D: NAD(P)H oxidoreductase	0.0576091845
+UniRef50_UPI000407B74D: NAD(P)H oxidoreductase|unclassified	0.0576091845
+UniRef50_UPI000366C768: hypothetical protein	0.0576078088
+UniRef50_UPI000366C768: hypothetical protein|unclassified	0.0576078088
+UniRef50_UPI0003614ECF: hypothetical protein	0.0576075122
+UniRef50_UPI0003614ECF: hypothetical protein|unclassified	0.0576075122
+UniRef50_UPI00038086A3: hypothetical protein	0.0576064670
+UniRef50_UPI00038086A3: hypothetical protein|unclassified	0.0576064670
+UniRef50_UPI00038F99E9: hypothetical protein, partial	0.0576061606
+UniRef50_UPI00038F99E9: hypothetical protein, partial|unclassified	0.0576061606
+UniRef50_T0JHB0	0.0576049705
+UniRef50_T0JHB0|unclassified	0.0576049705
+UniRef50_UPI0003A0F8A6: multidrug ABC transporter	0.0575942807
+UniRef50_UPI0003A0F8A6: multidrug ABC transporter|unclassified	0.0575942807
+UniRef50_S0EAF0	0.0575905070
+UniRef50_S0EAF0|unclassified	0.0575905070
+UniRef50_UPI00037B2B83: hypothetical protein	0.0575901198
+UniRef50_UPI00037B2B83: hypothetical protein|unclassified	0.0575901198
+UniRef50_R5SV56	0.0575896128
+UniRef50_R5SV56|unclassified	0.0575896128
+UniRef50_Q9IBJ1: R-LORF1	0.0575892519
+UniRef50_Q9IBJ1: R-LORF1|unclassified	0.0575892519
+UniRef50_C3YDR1	0.0575833214
+UniRef50_C3YDR1|unclassified	0.0575833214
+UniRef50_B9E8D6: Hydroxyethylthiazole kinase	0.0575825338
+UniRef50_B9E8D6: Hydroxyethylthiazole kinase|unclassified	0.0575825338
+UniRef50_UPI000386F412: PREDICTED: collagen alpha-1(VII) chain-like	0.0575799377
+UniRef50_UPI000386F412: PREDICTED: collagen alpha-1(VII) chain-like|unclassified	0.0575799377
+UniRef50_X8AVW4: UvrABC system B domain protein	0.0575796385
+UniRef50_X8AVW4: UvrABC system B domain protein|unclassified	0.0575796385
+UniRef50_UPI0004649BEC: hypothetical protein	0.0575720507
+UniRef50_UPI0004649BEC: hypothetical protein|unclassified	0.0575720507
+UniRef50_UPI0000510416: phage integrase family protein	0.0575703662
+UniRef50_UPI0000510416: phage integrase family protein|unclassified	0.0575703662
+UniRef50_K9ERP2	0.0575606134
+UniRef50_K9ERP2|unclassified	0.0575606134
+UniRef50_UPI000476E9A3: ABC transporter	0.0575577824
+UniRef50_UPI000476E9A3: ABC transporter|unclassified	0.0575577824
+UniRef50_UPI00046E57F5: uroporphyrinogen decarboxylase	0.0575491204
+UniRef50_UPI00046E57F5: uroporphyrinogen decarboxylase|unclassified	0.0575491204
+UniRef50_P22447: DNA gyrase subunit B	0.0575473801
+UniRef50_P22447: DNA gyrase subunit B|unclassified	0.0575473801
+UniRef50_M5K194: OmpA/MotB domain-containing protein (Fragment)	0.0575473277
+UniRef50_M5K194: OmpA/MotB domain-containing protein (Fragment)|unclassified	0.0575473277
+UniRef50_Q7UKQ9: Pyridoxine/pyridoxamine 5'-phosphate oxidase	0.0575462375
+UniRef50_Q7UKQ9: Pyridoxine/pyridoxamine 5'-phosphate oxidase|unclassified	0.0575462375
+UniRef50_UPI0004722E2E: hypothetical protein	0.0575314685
+UniRef50_UPI0004722E2E: hypothetical protein|unclassified	0.0575314685
+UniRef50_UPI000372FACA: hypothetical protein	0.0575291218
+UniRef50_UPI000372FACA: hypothetical protein|unclassified	0.0575291218
+UniRef50_W9Y4J1	0.0575283330
+UniRef50_W9Y4J1|unclassified	0.0575283330
+UniRef50_F8EPI7	0.0575249708
+UniRef50_F8EPI7|unclassified	0.0575249708
+UniRef50_UPI00047A2655: AraC family transcriptional regulator	0.0575150945
+UniRef50_UPI00047A2655: AraC family transcriptional regulator|unclassified	0.0575150945
+UniRef50_P54721: Catechol-2,3-dioxygenase	0.0575131163
+UniRef50_P54721: Catechol-2,3-dioxygenase|unclassified	0.0575131163
+UniRef50_UPI00040748B5: deacetylase	0.0575123461
+UniRef50_UPI00040748B5: deacetylase|unclassified	0.0575123461
+UniRef50_UPI000466389B: hypothetical protein	0.0575109275
+UniRef50_UPI000466389B: hypothetical protein|unclassified	0.0575109275
+UniRef50_E3I7F3: Cobyrinic acid ac-diamide synthase	0.0575021952
+UniRef50_E3I7F3: Cobyrinic acid ac-diamide synthase|unclassified	0.0575021952
+UniRef50_UPI0004037EDB: MULTISPECIES: PTS sugar transporter subunit IIC	0.0574987732
+UniRef50_UPI0004037EDB: MULTISPECIES: PTS sugar transporter subunit IIC|unclassified	0.0574987732
+UniRef50_Q1AU71: Glycerol-3-phosphate acyltransferase	0.0574949741
+UniRef50_Q1AU71: Glycerol-3-phosphate acyltransferase|unclassified	0.0574949741
+UniRef50_D5WMB0: Gp37Gp68 family protein	0.0574945189
+UniRef50_D5WMB0: Gp37Gp68 family protein|unclassified	0.0574945189
+UniRef50_S3X0W6	0.0574933505
+UniRef50_S3X0W6|unclassified	0.0574933505
+UniRef50_UPI00037FB363: hypothetical protein	0.0574928595
+UniRef50_UPI00037FB363: hypothetical protein|unclassified	0.0574928595
+UniRef50_UPI0004714A3B: peptidoglycan-binding protein LysM	0.0574898613
+UniRef50_UPI0004714A3B: peptidoglycan-binding protein LysM|unclassified	0.0574898613
+UniRef50_Q0JR18: Os01g0126200 protein (Fragment)	0.0574895642
+UniRef50_Q0JR18: Os01g0126200 protein (Fragment)|unclassified	0.0574895642
+UniRef50_Q46L27: Phosphate import ATP-binding protein PstB	0.0574892383
+UniRef50_Q46L27: Phosphate import ATP-binding protein PstB|unclassified	0.0574892383
+UniRef50_F8FRK9: Ribose ABC superfamily ATP binding cassette transporter, binding protein	0.0574854304
+UniRef50_F8FRK9: Ribose ABC superfamily ATP binding cassette transporter, binding protein|unclassified	0.0574854304
+UniRef50_UPI0003333131: PREDICTED: Hermansky-Pudlak syndrome 3 protein	0.0574815764
+UniRef50_UPI0003333131: PREDICTED: Hermansky-Pudlak syndrome 3 protein|unclassified	0.0574815764
+UniRef50_UPI00035DEF16: hypothetical protein	0.0574809546
+UniRef50_UPI00035DEF16: hypothetical protein|unclassified	0.0574809546
+UniRef50_UPI00047DD19D: hypothetical protein	0.0574683583
+UniRef50_UPI00047DD19D: hypothetical protein|unclassified	0.0574683583
+UniRef50_UPI0003B6672E: LysR family transcriptional regulator	0.0574679711
+UniRef50_UPI0003B6672E: LysR family transcriptional regulator|unclassified	0.0574679711
+UniRef50_UPI00016A70C6: amino acid ABC transporter, permease/ATP-binding protein, partial	0.0574651050
+UniRef50_UPI00016A70C6: amino acid ABC transporter, permease/ATP-binding protein, partial|unclassified	0.0574651050
+UniRef50_S9QXK4	0.0574615484
+UniRef50_S9QXK4|unclassified	0.0574615484
+UniRef50_UPI000262CD99: AAA ATPase family protein	0.0574561770
+UniRef50_UPI000262CD99: AAA ATPase family protein|unclassified	0.0574561770
+UniRef50_A6WC54: Triosephosphate isomerase	0.0574561704
+UniRef50_A6WC54: Triosephosphate isomerase|unclassified	0.0574561704
+UniRef50_UPI0003ADD74A: PREDICTED: peroxisomal membrane protein PEX14	0.0574533495
+UniRef50_UPI0003ADD74A: PREDICTED: peroxisomal membrane protein PEX14|unclassified	0.0574533495
+UniRef50_UPI00047183C3: nuclease PIN	0.0574515948
+UniRef50_UPI00047183C3: nuclease PIN|unclassified	0.0574515948
+UniRef50_UPI000365533E: hypothetical protein	0.0574469179
+UniRef50_UPI000365533E: hypothetical protein|unclassified	0.0574469179
+UniRef50_UPI000364275C: hypothetical protein	0.0574467724
+UniRef50_UPI000364275C: hypothetical protein|unclassified	0.0574467724
+UniRef50_UPI00035E7A12: hypothetical protein, partial	0.0574457075
+UniRef50_UPI00035E7A12: hypothetical protein, partial|unclassified	0.0574457075
+UniRef50_Q72YP9: S-layer homology domain protein	0.0574438723
+UniRef50_Q72YP9: S-layer homology domain protein|unclassified	0.0574438723
+UniRef50_UPI000255BBBE: phosphoribosylaminoimidazole carboxylase ATPase subunit	0.0574365722
+UniRef50_UPI000255BBBE: phosphoribosylaminoimidazole carboxylase ATPase subunit|unclassified	0.0574365722
+UniRef50_K0EZI3	0.0574352091
+UniRef50_K0EZI3|unclassified	0.0574352091
+UniRef50_Q1A705: Dimethyladenosine transferase 1, mitochondrial	0.0574300493
+UniRef50_Q1A705: Dimethyladenosine transferase 1, mitochondrial|unclassified	0.0574300493
+UniRef50_UPI00046E9E37: Na/Pi cotransporter, partial	0.0574296882
+UniRef50_UPI00046E9E37: Na/Pi cotransporter, partial|unclassified	0.0574296882
+UniRef50_A0A014NMW4: MFS transporter (Fragment)	0.0574289934
+UniRef50_A0A014NMW4: MFS transporter (Fragment)|unclassified	0.0574289934
+UniRef50_F6U7U3	0.0574222678
+UniRef50_F6U7U3|unclassified	0.0574222678
+UniRef50_A8JII4: Predicted protein (Fragment)	0.0574198166
+UniRef50_A8JII4: Predicted protein (Fragment)|unclassified	0.0574198166
+UniRef50_UPI0003FEC27D: hypothetical protein	0.0574189970
+UniRef50_UPI0003FEC27D: hypothetical protein|unclassified	0.0574189970
+UniRef50_N4WB30	0.0574159653
+UniRef50_N4WB30|unclassified	0.0574159653
+UniRef50_M7A534: Tex-like N-terminal domain protein	0.0574109465
+UniRef50_M7A534: Tex-like N-terminal domain protein|unclassified	0.0574109465
+UniRef50_B8DI47: Cell wall surface anchor family protein	0.0574054061
+UniRef50_B8DI47: Cell wall surface anchor family protein|unclassified	0.0574054061
+UniRef50_UPI000455DA16: glutaredoxin	0.0574037916
+UniRef50_UPI000455DA16: glutaredoxin|unclassified	0.0574037916
+UniRef50_Q9GZH1: Protein T22D1.2	0.0574026130
+UniRef50_Q9GZH1: Protein T22D1.2|unclassified	0.0574026130
+UniRef50_UPI000365B445: hypothetical protein	0.0574018543
+UniRef50_UPI000365B445: hypothetical protein|unclassified	0.0574018543
+UniRef50_A6T4I5: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical	0.0574002244
+UniRef50_A6T4I5: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical|unclassified	0.0574002244
+UniRef50_UPI00016ABA18: sugar ABC transporter ATP-binding protein	0.0573968590
+UniRef50_UPI00016ABA18: sugar ABC transporter ATP-binding protein|unclassified	0.0573968590
+UniRef50_UPI00041A5B29: short-chain dehydrogenase	0.0573865133
+UniRef50_UPI00041A5B29: short-chain dehydrogenase|unclassified	0.0573865133
+UniRef50_UPI000379DB36: hypothetical protein, partial	0.0573856931
+UniRef50_UPI000379DB36: hypothetical protein, partial|unclassified	0.0573856931
+UniRef50_UPI000382F1D0: hypothetical protein	0.0573840646
+UniRef50_UPI000382F1D0: hypothetical protein|unclassified	0.0573840646
+UniRef50_Q2SAS0	0.0573817296
+UniRef50_Q2SAS0|unclassified	0.0573817296
+UniRef50_UPI000377D288: hypothetical protein	0.0573814715
+UniRef50_UPI000377D288: hypothetical protein|unclassified	0.0573814715
+UniRef50_UPI000468C640: peptidoglycan transglycosylase	0.0573778778
+UniRef50_UPI000468C640: peptidoglycan transglycosylase|unclassified	0.0573778778
+UniRef50_A7H9V5: NADH-quinone oxidoreductase subunit D 2	0.0573769625
+UniRef50_A7H9V5: NADH-quinone oxidoreductase subunit D 2|unclassified	0.0573769625
+UniRef50_W9IG45	0.0573704634
+UniRef50_W9IG45|unclassified	0.0573704634
+UniRef50_UPI00034D8EB4: hypothetical protein	0.0573650128
+UniRef50_UPI00034D8EB4: hypothetical protein|unclassified	0.0573650128
+UniRef50_UPI00047CC153: hypothetical protein	0.0573596408
+UniRef50_UPI00047CC153: hypothetical protein|unclassified	0.0573596408
+UniRef50_UPI0002E3C90D: hypothetical protein	0.0573593328
+UniRef50_UPI0002E3C90D: hypothetical protein|unclassified	0.0573593328
+UniRef50_B0JXU3: Tryptophan synthase alpha chain	0.0573588079
+UniRef50_B0JXU3: Tryptophan synthase alpha chain|unclassified	0.0573588079
+UniRef50_UPI000471D234: hypothetical protein	0.0573584479
+UniRef50_UPI000471D234: hypothetical protein|unclassified	0.0573584479
+UniRef50_Q4FUV6: Ribonuclease 3	0.0573580552
+UniRef50_Q4FUV6: Ribonuclease 3|unclassified	0.0573580552
+UniRef50_Q7QEN9: AGAP000078-PA	0.0573575396
+UniRef50_Q7QEN9: AGAP000078-PA|unclassified	0.0573575396
+UniRef50_UPI0004679209: hypothetical protein	0.0573528838
+UniRef50_UPI0004679209: hypothetical protein|unclassified	0.0573528838
+UniRef50_G2WZD3	0.0573504309
+UniRef50_G2WZD3|unclassified	0.0573504309
+UniRef50_A7N2M2: Protoheme IX farnesyltransferase 1	0.0573489265
+UniRef50_A7N2M2: Protoheme IX farnesyltransferase 1|unclassified	0.0573489265
+UniRef50_A7NQ34	0.0573413443
+UniRef50_A7NQ34|unclassified	0.0573413443
+UniRef50_D8JYR2: YicC domain protein	0.0573396059
+UniRef50_D8JYR2: YicC domain protein|unclassified	0.0573396059
+UniRef50_UPI00033331AE: PREDICTED: transcription factor Maf-like	0.0573367465
+UniRef50_UPI00033331AE: PREDICTED: transcription factor Maf-like|unclassified	0.0573367465
+UniRef50_A6FMX2	0.0573367387
+UniRef50_A6FMX2|unclassified	0.0573367387
+UniRef50_Q8WVM0: Dimethyladenosine transferase 1, mitochondrial	0.0573352895
+UniRef50_Q8WVM0: Dimethyladenosine transferase 1, mitochondrial|unclassified	0.0573352895
+UniRef50_B3DS65: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	0.0573333202
+UniRef50_B3DS65: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.0573333202
+UniRef50_UPI000472B99F: hypothetical protein	0.0573290920
+UniRef50_UPI000472B99F: hypothetical protein|unclassified	0.0573290920
+UniRef50_X7G4I4	0.0573286533
+UniRef50_X7G4I4|unclassified	0.0573286533
+UniRef50_UPI000289B7A2: glucuronate isomerase	0.0573260103
+UniRef50_UPI000289B7A2: glucuronate isomerase|unclassified	0.0573260103
+UniRef50_B3KVK7: Methionine--tRNA ligase, cytoplasmic	0.0573234794
+UniRef50_B3KVK7: Methionine--tRNA ligase, cytoplasmic|unclassified	0.0573234794
+UniRef50_L0R6A1: Baseplate assembly protein J	0.0573230840
+UniRef50_L0R6A1: Baseplate assembly protein J|unclassified	0.0573230840
+UniRef50_Q8K9W2: DNA gyrase subunit A	0.0573228969
+UniRef50_Q8K9W2: DNA gyrase subunit A|unclassified	0.0573228969
+UniRef50_UPI00037DC27F: peptide ABC transporter ATP-binding protein, partial	0.0573212936
+UniRef50_UPI00037DC27F: peptide ABC transporter ATP-binding protein, partial|unclassified	0.0573212936
+UniRef50_G4SUR8	0.0573176218
+UniRef50_G4SUR8|unclassified	0.0573176218
+UniRef50_A4HI31	0.0573155642
+UniRef50_A4HI31|unclassified	0.0573155642
+UniRef50_UPI0003770DF2: hypothetical protein, partial	0.0573140943
+UniRef50_UPI0003770DF2: hypothetical protein, partial|unclassified	0.0573140943
+UniRef50_UPI00035ECC7A: hypothetical protein	0.0573108244
+UniRef50_UPI00035ECC7A: hypothetical protein|unclassified	0.0573108244
+UniRef50_UPI00036AC2B6: MULTISPECIES: hypothetical protein	0.0573105638
+UniRef50_UPI00036AC2B6: MULTISPECIES: hypothetical protein|unclassified	0.0573105638
+UniRef50_F3L8K4: Permease	0.0573088964
+UniRef50_F3L8K4: Permease|unclassified	0.0573088964
+UniRef50_F8H7Y3: Group II intron-encoding maturase	0.0573066056
+UniRef50_F8H7Y3: Group II intron-encoding maturase|unclassified	0.0573066056
+UniRef50_UPI000468BEB6: hypothetical protein	0.0572964484
+UniRef50_UPI000468BEB6: hypothetical protein|unclassified	0.0572964484
+UniRef50_A8ZV25: Dual-specificity RNA methyltransferase RlmN	0.0572795293
+UniRef50_A8ZV25: Dual-specificity RNA methyltransferase RlmN|unclassified	0.0572795293
+UniRef50_Q4FMW8: GMP synthase [glutamine-hydrolyzing]	0.0572725692
+UniRef50_Q4FMW8: GMP synthase [glutamine-hydrolyzing]|unclassified	0.0572725692
+UniRef50_X0YTM6: Marine sediment metagenome DNA, contig: S01H1_S35853 (Fragment)	0.0572658587
+UniRef50_X0YTM6: Marine sediment metagenome DNA, contig: S01H1_S35853 (Fragment)|unclassified	0.0572658587
+UniRef50_Q8EXQ7: Adenosylcobalamin biosynthesis bifunctional protein CobDQ	0.0572658522
+UniRef50_Q8EXQ7: Adenosylcobalamin biosynthesis bifunctional protein CobDQ|unclassified	0.0572658522
+UniRef50_U5UJ58	0.0572642209
+UniRef50_U5UJ58|unclassified	0.0572642209
+UniRef50_Q11H47: Phage Terminase	0.0572638256
+UniRef50_Q11H47: Phage Terminase|unclassified	0.0572638256
+UniRef50_V5SED8: Cytochrome O ubiquinol oxidase	0.0572588842
+UniRef50_V5SED8: Cytochrome O ubiquinol oxidase|unclassified	0.0572588842
+UniRef50_E1SRN0: Type IV pilus biogenesis/stability protein PilW	0.0572569658
+UniRef50_E1SRN0: Type IV pilus biogenesis/stability protein PilW|unclassified	0.0572569658
+UniRef50_P9WHJ0: RecBCD enzyme subunit RecD	0.0572501882
+UniRef50_P9WHJ0: RecBCD enzyme subunit RecD|unclassified	0.0572501882
+UniRef50_UPI00038FA0D3: Quinol oxidase subunit 2	0.0572495322
+UniRef50_UPI00038FA0D3: Quinol oxidase subunit 2|unclassified	0.0572495322
+UniRef50_UPI0002655525: PREDICTED: LOW QUALITY PROTEIN: protein LSM14 homolog B-A-like	0.0572377185
+UniRef50_UPI0002655525: PREDICTED: LOW QUALITY PROTEIN: protein LSM14 homolog B-A-like|unclassified	0.0572377185
+UniRef50_N1VJ20: Mucin 17-like protein (Fragment)	0.0572241267
+UniRef50_N1VJ20: Mucin 17-like protein (Fragment)|unclassified	0.0572241267
+UniRef50_UPI00047D8F91: PTS cellobiose transporter subunit IIC	0.0572233266
+UniRef50_UPI00047D8F91: PTS cellobiose transporter subunit IIC|unclassified	0.0572233266
+UniRef50_D0JTX2: L-ribulose-5-phosphate 4-epimerase	0.0572156702
+UniRef50_D0JTX2: L-ribulose-5-phosphate 4-epimerase|unclassified	0.0572156702
+UniRef50_V4MMB9	0.0572131111
+UniRef50_V4MMB9|unclassified	0.0572131111
+UniRef50_B9TPG5	0.0572123400
+UniRef50_B9TPG5|unclassified	0.0572123400
+UniRef50_B8FRK8: Ribonuclease HII	0.0572101988
+UniRef50_B8FRK8: Ribonuclease HII|unclassified	0.0572101988
+UniRef50_V0AEH1	0.0572083155
+UniRef50_V0AEH1|unclassified	0.0572083155
+UniRef50_K0ZUL0: Replication initiator protein A protein	0.0572082531
+UniRef50_K0ZUL0: Replication initiator protein A protein|unclassified	0.0572082531
+UniRef50_UPI00042A93F8: hypothetical protein	0.0572055964
+UniRef50_UPI00042A93F8: hypothetical protein|unclassified	0.0572055964
+UniRef50_UPI0002628B06: chemotaxis protein CheR	0.0572003502
+UniRef50_UPI0002628B06: chemotaxis protein CheR|unclassified	0.0572003502
+UniRef50_Q1LH95	0.0571940681
+UniRef50_Q1LH95|unclassified	0.0571940681
+UniRef50_Q8EQQ2: Sensor protein LytS	0.0571873796
+UniRef50_Q8EQQ2: Sensor protein LytS|unclassified	0.0571873796
+UniRef50_Q7UI51: 2-isopropylmalate synthase	0.0571848732
+UniRef50_Q7UI51: 2-isopropylmalate synthase|unclassified	0.0571848732
+UniRef50_UPI000364D59D: hypothetical protein	0.0571830873
+UniRef50_UPI000364D59D: hypothetical protein|unclassified	0.0571830873
+UniRef50_UPI00046E6E90: hypothetical protein	0.0571829718
+UniRef50_UPI00046E6E90: hypothetical protein|unclassified	0.0571829718
+UniRef50_D8TI82	0.0571813120
+UniRef50_D8TI82|unclassified	0.0571813120
+UniRef50_M0CYQ7	0.0571791732
+UniRef50_M0CYQ7|unclassified	0.0571791732
+UniRef50_UPI00047257BD: phosphomannomutase	0.0571775007
+UniRef50_UPI00047257BD: phosphomannomutase|unclassified	0.0571775007
+UniRef50_Q71Z49: D-alanine aminotransferase	0.0571655857
+UniRef50_Q71Z49: D-alanine aminotransferase|unclassified	0.0571655857
+UniRef50_H0USC3: TIGR00370 family protein	0.0571641646
+UniRef50_H0USC3: TIGR00370 family protein|unclassified	0.0571641646
+UniRef50_B2A2G4: Ribosomal RNA small subunit methyltransferase H	0.0571625051
+UniRef50_B2A2G4: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0571625051
+UniRef50_A8ZZW7: Tryptophan synthase alpha chain	0.0571597386
+UniRef50_A8ZZW7: Tryptophan synthase alpha chain|unclassified	0.0571597386
+UniRef50_UPI0003661E28: hypothetical protein	0.0571496477
+UniRef50_UPI0003661E28: hypothetical protein|unclassified	0.0571496477
+UniRef50_V6DRE9	0.0571463293
+UniRef50_V6DRE9|unclassified	0.0571463293
+UniRef50_UPI0002D98844: hypothetical protein	0.0571452070
+UniRef50_UPI0002D98844: hypothetical protein|unclassified	0.0571452070
+UniRef50_UPI0003828589: hypothetical protein	0.0571350246
+UniRef50_UPI0003828589: hypothetical protein|unclassified	0.0571350246
+UniRef50_UPI00037CEA85: hypothetical protein	0.0571317413
+UniRef50_UPI00037CEA85: hypothetical protein|unclassified	0.0571317413
+UniRef50_UPI00045E6DA8: MFS transporter	0.0571313890
+UniRef50_UPI00045E6DA8: MFS transporter|unclassified	0.0571313890
+UniRef50_UPI000381A1B2: hypothetical protein	0.0571303373
+UniRef50_UPI000381A1B2: hypothetical protein|unclassified	0.0571303373
+UniRef50_UPI00036696D4: hypothetical protein	0.0571288419
+UniRef50_UPI00036696D4: hypothetical protein|unclassified	0.0571288419
+UniRef50_UPI0003B5FC09: DNA invertase	0.0571253478
+UniRef50_UPI0003B5FC09: DNA invertase|unclassified	0.0571253478
+UniRef50_Q1IVF1: Queuine tRNA-ribosyltransferase	0.0571193131
+UniRef50_Q1IVF1: Queuine tRNA-ribosyltransferase|unclassified	0.0571193131
+UniRef50_UPI00039BDE65: DNA helicase	0.0571188056
+UniRef50_UPI00039BDE65: DNA helicase|unclassified	0.0571188056
+UniRef50_UPI0002C3DBE6: branched-chain-amino-acid aminotransferase, putative	0.0571113492
+UniRef50_UPI0002C3DBE6: branched-chain-amino-acid aminotransferase, putative|unclassified	0.0571113492
+UniRef50_UPI0004757CAE: hypothetical protein	0.0571092700
+UniRef50_UPI0004757CAE: hypothetical protein|unclassified	0.0571092700
+UniRef50_V9C4F2: TRAP transporter, DctM-like membrane protein	0.0571044450
+UniRef50_V9C4F2: TRAP transporter, DctM-like membrane protein|unclassified	0.0571044450
+UniRef50_UPI00047551F3: FAD-dependent oxidoreductase	0.0571041953
+UniRef50_UPI00047551F3: FAD-dependent oxidoreductase|unclassified	0.0571041953
+UniRef50_UPI000400F0E0: chemotaxis protein CheR	0.0570998666
+UniRef50_UPI000400F0E0: chemotaxis protein CheR|unclassified	0.0570998666
+UniRef50_M6YRV4	0.0570972808
+UniRef50_M6YRV4|unclassified	0.0570972808
+UniRef50_Q7VIS3: Glycine--tRNA ligase alpha subunit	0.0570847122
+UniRef50_Q7VIS3: Glycine--tRNA ligase alpha subunit|unclassified	0.0570847122
+UniRef50_F3Z911: Putative LysR family transcriptional regulator	0.0570837402
+UniRef50_F3Z911: Putative LysR family transcriptional regulator|unclassified	0.0570837402
+UniRef50_UPI000180B091: PREDICTED: L-allo-threonine aldolase-like	0.0570801994
+UniRef50_UPI000180B091: PREDICTED: L-allo-threonine aldolase-like|unclassified	0.0570801994
+UniRef50_UPI000471BC8E: protease I	0.0570800180
+UniRef50_UPI000471BC8E: protease I|unclassified	0.0570800180
+UniRef50_UPI00046E904F: allantoinase, partial	0.0570730794
+UniRef50_UPI00046E904F: allantoinase, partial|unclassified	0.0570730794
+UniRef50_UPI0004661CF5: hypothetical protein	0.0570581782
+UniRef50_UPI0004661CF5: hypothetical protein|unclassified	0.0570581782
+UniRef50_UPI0003FB590D: ATP-dependent helicase	0.0570576538
+UniRef50_UPI0003FB590D: ATP-dependent helicase|unclassified	0.0570576538
+UniRef50_Q5DUX5: NADH-ubiquinone oxidoreductase 49 kDa subunit	0.0570572037
+UniRef50_Q5DUX5: NADH-ubiquinone oxidoreductase 49 kDa subunit|unclassified	0.0570572037
+UniRef50_UPI0003B497AB: symporter	0.0570498589
+UniRef50_UPI0003B497AB: symporter|unclassified	0.0570498589
+UniRef50_F0VQM4	0.0570442530
+UniRef50_F0VQM4|unclassified	0.0570442530
+UniRef50_K2J2X7: Cation transport protein ChaC	0.0570393217
+UniRef50_K2J2X7: Cation transport protein ChaC|unclassified	0.0570393217
+UniRef50_R2QJ46	0.0570273889
+UniRef50_R2QJ46|unclassified	0.0570273889
+UniRef50_G6EIU8: Peptidase M23B	0.0570173259
+UniRef50_G6EIU8: Peptidase M23B|unclassified	0.0570173259
+UniRef50_UPI000472DCA1: altronate oxidoreductase	0.0570150948
+UniRef50_UPI000472DCA1: altronate oxidoreductase|unclassified	0.0570150948
+UniRef50_R6GSB3: UPF0758 protein CLL_A0562	0.0570106615
+UniRef50_R6GSB3: UPF0758 protein CLL_A0562|unclassified	0.0570106615
+UniRef50_UPI000367E595: MULTISPECIES: hypothetical protein	0.0570060563
+UniRef50_UPI000367E595: MULTISPECIES: hypothetical protein|unclassified	0.0570060563
+UniRef50_A1VCP5: UPF0234 protein Dvul_1191	0.0570048143
+UniRef50_A1VCP5: UPF0234 protein Dvul_1191|unclassified	0.0570048143
+UniRef50_UPI00036A5DE2: peptidase	0.0569887825
+UniRef50_UPI00036A5DE2: peptidase|unclassified	0.0569887825
+UniRef50_UPI000475EAAA: epimerase	0.0569884931
+UniRef50_UPI000475EAAA: epimerase|unclassified	0.0569884931
+UniRef50_B9JMC5: Insertion sequence transposase protein	0.0569843068
+UniRef50_B9JMC5: Insertion sequence transposase protein|unclassified	0.0569843068
+UniRef50_UPI0004420089: PREDICTED: glutamate dehydrogenase 2, mitochondrial-like, partial	0.0569791194
+UniRef50_UPI0004420089: PREDICTED: glutamate dehydrogenase 2, mitochondrial-like, partial|unclassified	0.0569791194
+UniRef50_UPI00037C9C7B: hypothetical protein	0.0569702458
+UniRef50_UPI00037C9C7B: hypothetical protein|unclassified	0.0569702458
+UniRef50_UPI000475B135: hypothetical protein	0.0569662099
+UniRef50_UPI000475B135: hypothetical protein|unclassified	0.0569662099
+UniRef50_D5AUR2	0.0569657537
+UniRef50_D5AUR2|unclassified	0.0569657537
+UniRef50_UPI00047E427D: osmoprotection protein, partial	0.0569602873
+UniRef50_UPI00047E427D: osmoprotection protein, partial|unclassified	0.0569602873
+UniRef50_UPI00035DA52C: hypothetical protein	0.0569591769
+UniRef50_UPI00035DA52C: hypothetical protein|unclassified	0.0569591769
+UniRef50_V2AZW1: Tetraheme Cytochrom c	0.0569528474
+UniRef50_V2AZW1: Tetraheme Cytochrom c|unclassified	0.0569528474
+UniRef50_UPI00040BFD8E: hypothetical protein	0.0569463194
+UniRef50_UPI00040BFD8E: hypothetical protein|unclassified	0.0569463194
+UniRef50_Q0AXL3: Peptide deformylase	0.0569435355
+UniRef50_Q0AXL3: Peptide deformylase|unclassified	0.0569435355
+UniRef50_UPI00036F6565: hypothetical protein	0.0569435027
+UniRef50_UPI00036F6565: hypothetical protein|unclassified	0.0569435027
+UniRef50_R5BWE9	0.0569353652
+UniRef50_R5BWE9|unclassified	0.0569353652
+UniRef50_UPI00036ACB19: hypothetical protein	0.0569337371
+UniRef50_UPI00036ACB19: hypothetical protein|unclassified	0.0569337371
+UniRef50_UPI0003640234: hypothetical protein	0.0569277564
+UniRef50_UPI0003640234: hypothetical protein|unclassified	0.0569277564
+UniRef50_UPI000401F68F: N-acetylmuramoyl-L-alanine amidase	0.0569228970
+UniRef50_UPI000401F68F: N-acetylmuramoyl-L-alanine amidase|unclassified	0.0569228970
+UniRef50_UPI00037EF491: hypothetical protein	0.0569218141
+UniRef50_UPI00037EF491: hypothetical protein|unclassified	0.0569218141
+UniRef50_W0N7R8: Terminase	0.0569212098
+UniRef50_W0N7R8: Terminase|unclassified	0.0569212098
+UniRef50_W2EZB5	0.0569172038
+UniRef50_W2EZB5|unclassified	0.0569172038
+UniRef50_UPI0004773C4C: peptidylprolyl isomerase	0.0569168972
+UniRef50_UPI0004773C4C: peptidylprolyl isomerase|unclassified	0.0569168972
+UniRef50_Q10X06: D-alanine--D-alanine ligase	0.0569153782
+UniRef50_Q10X06: D-alanine--D-alanine ligase|unclassified	0.0569153782
+UniRef50_G6WW76	0.0569092449
+UniRef50_G6WW76|unclassified	0.0569092449
+UniRef50_G0RQB5: Predicted protein	0.0569066123
+UniRef50_G0RQB5: Predicted protein|unclassified	0.0569066123
+UniRef50_UPI00046F4DE2: LysR family transcriptional regulator	0.0569065079
+UniRef50_UPI00046F4DE2: LysR family transcriptional regulator|unclassified	0.0569065079
+UniRef50_B5YDI9: DNA repair protein	0.0568968366
+UniRef50_B5YDI9: DNA repair protein|unclassified	0.0568968366
+UniRef50_A5EJW4: Condensin subunit ScpA	0.0568929940
+UniRef50_A5EJW4: Condensin subunit ScpA|unclassified	0.0568929940
+UniRef50_UPI000395C8AE: PREDICTED: nucleoside diphosphate kinase, mitochondrial-like	0.0568919001
+UniRef50_UPI000395C8AE: PREDICTED: nucleoside diphosphate kinase, mitochondrial-like|unclassified	0.0568919001
+UniRef50_UPI0003EDDD49: PREDICTED: zinc finger protein 628-like, partial	0.0568837136
+UniRef50_UPI0003EDDD49: PREDICTED: zinc finger protein 628-like, partial|unclassified	0.0568837136
+UniRef50_UPI00031720C6: LysR family transcriptional regulator	0.0568793171
+UniRef50_UPI00031720C6: LysR family transcriptional regulator|unclassified	0.0568793171
+UniRef50_S9QS42	0.0568793167
+UniRef50_S9QS42|unclassified	0.0568793167
+UniRef50_W4F188: Cobalt ABC transporter permease	0.0568767506
+UniRef50_W4F188: Cobalt ABC transporter permease|unclassified	0.0568767506
+UniRef50_A8G9I0: HipA domain protein	0.0568713593
+UniRef50_A8G9I0: HipA domain protein|unclassified	0.0568713593
+UniRef50_Q5FU61: Ribosomal RNA small subunit methyltransferase A	0.0568706790
+UniRef50_Q5FU61: Ribosomal RNA small subunit methyltransferase A|unclassified	0.0568706790
+UniRef50_W5GDD4	0.0568677477
+UniRef50_W5GDD4|unclassified	0.0568677477
+UniRef50_B5EPS2	0.0568667553
+UniRef50_B5EPS2|unclassified	0.0568667553
+UniRef50_UPI000479EF7E: ABC transporter permease	0.0568653837
+UniRef50_UPI000479EF7E: ABC transporter permease|unclassified	0.0568653837
+UniRef50_UPI00046FDF7B: hypothetical protein	0.0568640820
+UniRef50_UPI00046FDF7B: hypothetical protein|unclassified	0.0568640820
+UniRef50_UPI00037118DF: hypothetical protein	0.0568602118
+UniRef50_UPI00037118DF: hypothetical protein|unclassified	0.0568602118
+UniRef50_UPI000472CA5C: hypothetical protein	0.0568583409
+UniRef50_UPI000472CA5C: hypothetical protein|unclassified	0.0568583409
+UniRef50_UPI0003B7632C: epimerase	0.0568572432
+UniRef50_UPI0003B7632C: epimerase|unclassified	0.0568572432
+UniRef50_M9LXP7	0.0568524109
+UniRef50_M9LXP7|unclassified	0.0568524109
+UniRef50_UPI00036D73E0: hypothetical protein	0.0568514555
+UniRef50_UPI00036D73E0: hypothetical protein|unclassified	0.0568514555
+UniRef50_UPI0004773163: membrane protein	0.0568510251
+UniRef50_UPI0004773163: membrane protein|unclassified	0.0568510251
+UniRef50_UPI000372C723: hypothetical protein	0.0568495869
+UniRef50_UPI000372C723: hypothetical protein|unclassified	0.0568495869
+UniRef50_UPI0003B59A5D: type II secretion protein F	0.0568495617
+UniRef50_UPI0003B59A5D: type II secretion protein F|unclassified	0.0568495617
+UniRef50_R7NTI0	0.0568427266
+UniRef50_R7NTI0|unclassified	0.0568427266
+UniRef50_F4CM54: Diguanylate cyclase	0.0568337736
+UniRef50_F4CM54: Diguanylate cyclase|unclassified	0.0568337736
+UniRef50_A0A022H3H4: Aconitate hydratase	0.0568309384
+UniRef50_A0A022H3H4: Aconitate hydratase|unclassified	0.0568309384
+UniRef50_C5TCV8: Diguanylate phosphodiesterase (Fragment)	0.0568275678
+UniRef50_C5TCV8: Diguanylate phosphodiesterase (Fragment)|unclassified	0.0568275678
+UniRef50_UPI00046D95AC: multidrug MFS transporter	0.0568216597
+UniRef50_UPI00046D95AC: multidrug MFS transporter|unclassified	0.0568216597
+UniRef50_UPI00037E71ED: hypothetical protein	0.0568163213
+UniRef50_UPI00037E71ED: hypothetical protein|unclassified	0.0568163213
+UniRef50_P44997: Phosphoserine phosphatase	0.0568127690
+UniRef50_P44997: Phosphoserine phosphatase|unclassified	0.0568127690
+UniRef50_P25553: Lactaldehyde dehydrogenase	0.0568120819
+UniRef50_P25553: Lactaldehyde dehydrogenase|unclassified	0.0568120819
+UniRef50_UPI0003B46E23: diaminopimelate epimerase	0.0568107123
+UniRef50_UPI0003B46E23: diaminopimelate epimerase|unclassified	0.0568107123
+UniRef50_UPI000365B6DD: hypothetical protein	0.0568103055
+UniRef50_UPI000365B6DD: hypothetical protein|unclassified	0.0568103055
+UniRef50_S3Z8V8	0.0568068884
+UniRef50_S3Z8V8|unclassified	0.0568068884
+UniRef50_UPI00041059C2: hypothetical protein	0.0567989297
+UniRef50_UPI00041059C2: hypothetical protein|unclassified	0.0567989297
+UniRef50_UPI0002F0FA6F: hypothetical protein	0.0567972494
+UniRef50_UPI0002F0FA6F: hypothetical protein|unclassified	0.0567972494
+UniRef50_U5T553	0.0567966237
+UniRef50_U5T553|unclassified	0.0567966237
+UniRef50_UPI000479B968: hypothetical protein	0.0567875414
+UniRef50_UPI000479B968: hypothetical protein|unclassified	0.0567875414
+UniRef50_I9J361	0.0567803658
+UniRef50_I9J361|unclassified	0.0567803658
+UniRef50_F8FDE8: Transcriptional regulator	0.0567768821
+UniRef50_F8FDE8: Transcriptional regulator|unclassified	0.0567768821
+UniRef50_UPI00046F3D8E: hypothetical protein	0.0567767845
+UniRef50_UPI00046F3D8E: hypothetical protein|unclassified	0.0567767845
+UniRef50_Q8Y489: Lipoyl-[GcvH]:protein N-lipoyltransferase	0.0567708593
+UniRef50_Q8Y489: Lipoyl-[GcvH]:protein N-lipoyltransferase|unclassified	0.0567708593
+UniRef50_C6C1X4	0.0567698548
+UniRef50_C6C1X4|unclassified	0.0567698548
+UniRef50_UPI0004643C1D: hypothetical protein	0.0567658737
+UniRef50_UPI0004643C1D: hypothetical protein|unclassified	0.0567658737
+UniRef50_A8HZR4	0.0567629694
+UniRef50_A8HZR4|unclassified	0.0567629694
+UniRef50_T0JN27	0.0567605257
+UniRef50_T0JN27|unclassified	0.0567605257
+UniRef50_B2A466: Chromosome segregation ATPase	0.0567584866
+UniRef50_B2A466: Chromosome segregation ATPase|unclassified	0.0567584866
+UniRef50_UPI0004725EA6: hypothetical protein	0.0567579235
+UniRef50_UPI0004725EA6: hypothetical protein|unclassified	0.0567579235
+UniRef50_X1K5L6: Marine sediment metagenome DNA, contig: S06H3_C00757	0.0567567514
+UniRef50_X1K5L6: Marine sediment metagenome DNA, contig: S06H3_C00757|unclassified	0.0567567514
+UniRef50_Q65S79: Histidinol-phosphate aminotransferase 1	0.0567566916
+UniRef50_Q65S79: Histidinol-phosphate aminotransferase 1|unclassified	0.0567566916
+UniRef50_UPI00035E3AF9: hypothetical protein	0.0567554371
+UniRef50_UPI00035E3AF9: hypothetical protein|unclassified	0.0567554371
+UniRef50_UPI00047EA95D: branched-chain amino acid ABC transporter ATP-binding protein	0.0567531575
+UniRef50_UPI00047EA95D: branched-chain amino acid ABC transporter ATP-binding protein|unclassified	0.0567531575
+UniRef50_UPI00044411A6: PREDICTED: RNA-binding protein 20	0.0567517382
+UniRef50_UPI00044411A6: PREDICTED: RNA-binding protein 20|unclassified	0.0567517382
+UniRef50_K2G6A0	0.0567512901
+UniRef50_K2G6A0|unclassified	0.0567512901
+UniRef50_UPI0002886C35: sodium-dependent transporter	0.0567474115
+UniRef50_UPI0002886C35: sodium-dependent transporter|unclassified	0.0567474115
+UniRef50_UPI000328D02B: PREDICTED: E3 ubiquitin-protein ligase ICP0-like	0.0567443087
+UniRef50_UPI000328D02B: PREDICTED: E3 ubiquitin-protein ligase ICP0-like|unclassified	0.0567443087
+UniRef50_UPI0003B3A372: RNA polymerase sigma24 factor	0.0567390691
+UniRef50_UPI0003B3A372: RNA polymerase sigma24 factor|unclassified	0.0567390691
+UniRef50_UPI0003B54593: ABC transporter substrate-binding protein	0.0567343945
+UniRef50_UPI0003B54593: ABC transporter substrate-binding protein|unclassified	0.0567343945
+UniRef50_UPI0003B517D4: hypothetical protein, partial	0.0567341681
+UniRef50_UPI0003B517D4: hypothetical protein, partial|unclassified	0.0567341681
+UniRef50_Q7XXG4: OSJNBb0089K24.6 protein	0.0567331533
+UniRef50_Q7XXG4: OSJNBb0089K24.6 protein|unclassified	0.0567331533
+UniRef50_K7E371	0.0567325876
+UniRef50_K7E371|unclassified	0.0567325876
+UniRef50_P54690: Branched-chain-amino-acid aminotransferase, cytosolic	0.0567309387
+UniRef50_P54690: Branched-chain-amino-acid aminotransferase, cytosolic|unclassified	0.0567309387
+UniRef50_UPI0000F05AE2: D-serine dehydratase	0.0567290339
+UniRef50_UPI0000F05AE2: D-serine dehydratase|unclassified	0.0567290339
+UniRef50_O31550: Dihydrolipoyllysine-residue acetyltransferase component of acetoin cleaving system	0.0567283804
+UniRef50_O31550: Dihydrolipoyllysine-residue acetyltransferase component of acetoin cleaving system|unclassified	0.0567283804
+UniRef50_UPI00036CF4F4: hypothetical protein	0.0567263398
+UniRef50_UPI00036CF4F4: hypothetical protein|unclassified	0.0567263398
+UniRef50_UPI000466F958: hypothetical protein	0.0567237370
+UniRef50_UPI000466F958: hypothetical protein|unclassified	0.0567237370
+UniRef50_W0Z0T7: PmbA protein	0.0567226145
+UniRef50_W0Z0T7: PmbA protein|unclassified	0.0567226145
+UniRef50_Q8Y6R2: ADP-dependent (S)-NAD(P)H-hydrate dehydratase	0.0567218502
+UniRef50_Q8Y6R2: ADP-dependent (S)-NAD(P)H-hydrate dehydratase|unclassified	0.0567218502
+UniRef50_UPI0004232642: polynucleotide phosphorylase	0.0567133575
+UniRef50_UPI0004232642: polynucleotide phosphorylase|unclassified	0.0567133575
+UniRef50_UPI00046A542B: hypothetical protein	0.0567087306
+UniRef50_UPI00046A542B: hypothetical protein|unclassified	0.0567087306
+UniRef50_UPI00037D91BA: hypothetical protein	0.0567077787
+UniRef50_UPI00037D91BA: hypothetical protein|unclassified	0.0567077787
+UniRef50_Q7MDQ1	0.0566987610
+UniRef50_Q7MDQ1|unclassified	0.0566987610
+UniRef50_K2R8V9	0.0566940238
+UniRef50_K2R8V9|unclassified	0.0566940238
+UniRef50_UPI000289BD13: hypothetical protein	0.0566900376
+UniRef50_UPI000289BD13: hypothetical protein|unclassified	0.0566900376
+UniRef50_X5DCX5: NAD(P)H oxidoreductase	0.0566868516
+UniRef50_X5DCX5: NAD(P)H oxidoreductase|unclassified	0.0566868516
+UniRef50_W3V6J2	0.0566807400
+UniRef50_W3V6J2|unclassified	0.0566807400
+UniRef50_P96121: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase	0.0566747204
+UniRef50_P96121: 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase|unclassified	0.0566747204
+UniRef50_H0DJV1: Putative membrane protein	0.0566735992
+UniRef50_H0DJV1: Putative membrane protein|unclassified	0.0566735992
+UniRef50_UPI000381B5C2: hypothetical protein	0.0566732605
+UniRef50_UPI000381B5C2: hypothetical protein|unclassified	0.0566732605
+UniRef50_C2Y0R8	0.0566717643
+UniRef50_C2Y0R8|unclassified	0.0566717643
+UniRef50_UPI00037F4EFF: hypothetical protein	0.0566716140
+UniRef50_UPI00037F4EFF: hypothetical protein|unclassified	0.0566716140
+UniRef50_UPI00034F31E9: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial-like	0.0566674788
+UniRef50_UPI00034F31E9: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial-like|unclassified	0.0566674788
+UniRef50_UPI0003B5DCD8: adenylosuccinate synthetase, partial	0.0566644444
+UniRef50_UPI0003B5DCD8: adenylosuccinate synthetase, partial|unclassified	0.0566644444
+UniRef50_UPI00037ECF2E: hypothetical protein	0.0566560991
+UniRef50_UPI00037ECF2E: hypothetical protein|unclassified	0.0566560991
+UniRef50_Q72ND0	0.0566547385
+UniRef50_Q72ND0|unclassified	0.0566547385
+UniRef50_M5ATS4: AzlC family protein	0.0566476612
+UniRef50_M5ATS4: AzlC family protein|unclassified	0.0566476612
+UniRef50_UPI0003626443: hypothetical protein, partial	0.0566461121
+UniRef50_UPI0003626443: hypothetical protein, partial|unclassified	0.0566461121
+UniRef50_UPI0002656228	0.0566440466
+UniRef50_UPI0002656228|unclassified	0.0566440466
+UniRef50_UPI000382EEE2: hypothetical protein	0.0566417459
+UniRef50_UPI000382EEE2: hypothetical protein|unclassified	0.0566417459
+UniRef50_UPI0004105DCD: flagellar basal body rod protein FlgC	0.0566416224
+UniRef50_UPI0004105DCD: flagellar basal body rod protein FlgC|unclassified	0.0566416224
+UniRef50_UPI0004752A36: 1-phosphofructokinase	0.0566370274
+UniRef50_UPI0004752A36: 1-phosphofructokinase|unclassified	0.0566370274
+UniRef50_UPI00046830DC: hypothetical protein	0.0566369163
+UniRef50_UPI00046830DC: hypothetical protein|unclassified	0.0566369163
+UniRef50_B7V3W3	0.0566355702
+UniRef50_B7V3W3|unclassified	0.0566355702
+UniRef50_M5T6L9: Periplasmic binding protein/LacI transcriptional regulator	0.0566322412
+UniRef50_M5T6L9: Periplasmic binding protein/LacI transcriptional regulator|unclassified	0.0566322412
+UniRef50_UPI0003B40876: heme lyase subunit CcmF	0.0566300721
+UniRef50_UPI0003B40876: heme lyase subunit CcmF|unclassified	0.0566300721
+UniRef50_UPI00036780AC: hypothetical protein	0.0566245975
+UniRef50_UPI00036780AC: hypothetical protein|unclassified	0.0566245975
+UniRef50_UPI0003804C98: hypothetical protein	0.0566240589
+UniRef50_UPI0003804C98: hypothetical protein|unclassified	0.0566240589
+UniRef50_UPI000475E62A: hypothetical protein	0.0566210458
+UniRef50_UPI000475E62A: hypothetical protein|unclassified	0.0566210458
+UniRef50_UPI00037DE191: hypothetical protein	0.0566139806
+UniRef50_UPI00037DE191: hypothetical protein|unclassified	0.0566139806
+UniRef50_A7INK3: Anthranilate phosphoribosyltransferase	0.0566118578
+UniRef50_A7INK3: Anthranilate phosphoribosyltransferase|unclassified	0.0566118578
+UniRef50_M5AET5	0.0566065803
+UniRef50_M5AET5|unclassified	0.0566065803
+UniRef50_UPI000376564B: hypothetical protein	0.0566045867
+UniRef50_UPI000376564B: hypothetical protein|unclassified	0.0566045867
+UniRef50_UPI00047AB8B0: high frequency lysogenization protein HflD	0.0566042582
+UniRef50_UPI00047AB8B0: high frequency lysogenization protein HflD|unclassified	0.0566042582
+UniRef50_UPI00046F70A5: hypothetical protein	0.0565989232
+UniRef50_UPI00046F70A5: hypothetical protein|unclassified	0.0565989232
+UniRef50_UPI00031FBF72: hypothetical protein	0.0565982484
+UniRef50_UPI00031FBF72: hypothetical protein|unclassified	0.0565982484
+UniRef50_Q0G3D0	0.0565974926
+UniRef50_Q0G3D0|unclassified	0.0565974926
+UniRef50_UPI000478DB26: cytosine deaminase	0.0565956550
+UniRef50_UPI000478DB26: cytosine deaminase|unclassified	0.0565956550
+UniRef50_I8QRG5	0.0565879955
+UniRef50_I8QRG5|unclassified	0.0565879955
+UniRef50_UPI00047A6FFE: diguanylate cyclase	0.0565878142
+UniRef50_UPI00047A6FFE: diguanylate cyclase|unclassified	0.0565878142
+UniRef50_UPI000394090D: PREDICTED: collagen alpha-1(I) chain-like	0.0565830447
+UniRef50_UPI000394090D: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.0565830447
+UniRef50_D9S198: Peptidase M23	0.0565771651
+UniRef50_D9S198: Peptidase M23|unclassified	0.0565771651
+UniRef50_UPI0004778307: hypothetical protein	0.0565767514
+UniRef50_UPI0004778307: hypothetical protein|unclassified	0.0565767514
+UniRef50_UPI00046AC1C8: hypothetical protein	0.0565719922
+UniRef50_UPI00046AC1C8: hypothetical protein|unclassified	0.0565719922
+UniRef50_H8FRY0	0.0565718909
+UniRef50_H8FRY0|unclassified	0.0565718909
+UniRef50_UPI00028A1DC3: MFS transporter	0.0565718678
+UniRef50_UPI00028A1DC3: MFS transporter|unclassified	0.0565718678
+UniRef50_A9A5G9: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.0565711437
+UniRef50_A9A5G9: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.0565711437
+UniRef50_UPI0003B785A1: preprotein translocase subunit SecA	0.0565703347
+UniRef50_UPI0003B785A1: preprotein translocase subunit SecA|unclassified	0.0565703347
+UniRef50_I0AKL0	0.0565695889
+UniRef50_I0AKL0|unclassified	0.0565695889
+UniRef50_UPI00030B94CA: hypothetical protein	0.0565655749
+UniRef50_UPI00030B94CA: hypothetical protein|unclassified	0.0565655749
+UniRef50_A9VEG6: Predicted protein	0.0565570217
+UniRef50_A9VEG6: Predicted protein|unclassified	0.0565570217
+UniRef50_Q5LL69: L-cysteate sulfo-lyase	0.0565566094
+UniRef50_Q5LL69: L-cysteate sulfo-lyase|unclassified	0.0565566094
+UniRef50_UPI0003794079: hypothetical protein	0.0565504280
+UniRef50_UPI0003794079: hypothetical protein|unclassified	0.0565504280
+UniRef50_UPI000288267D: oligopeptide ABC transporter substrate-binding protein	0.0565490925
+UniRef50_UPI000288267D: oligopeptide ABC transporter substrate-binding protein|unclassified	0.0565490925
+UniRef50_UPI0003347B7A	0.0565478682
+UniRef50_UPI0003347B7A|unclassified	0.0565478682
+UniRef50_Q7V024: Fumarate hydratase class II	0.0565475849
+UniRef50_Q7V024: Fumarate hydratase class II|unclassified	0.0565475849
+UniRef50_D3BHX6	0.0565471165
+UniRef50_D3BHX6|unclassified	0.0565471165
+UniRef50_I0HS67	0.0565443630
+UniRef50_I0HS67|unclassified	0.0565443630
+UniRef50_Q9KYV7: Purine nucleoside phosphorylase	0.0565389116
+UniRef50_Q9KYV7: Purine nucleoside phosphorylase|unclassified	0.0565389116
+UniRef50_UPI0003472FF8: hypothetical protein	0.0565359072
+UniRef50_UPI0003472FF8: hypothetical protein|unclassified	0.0565359072
+UniRef50_Q493G3: Protoheme IX farnesyltransferase	0.0565354666
+UniRef50_Q493G3: Protoheme IX farnesyltransferase|unclassified	0.0565354666
+UniRef50_UPI000376A46D: hypothetical protein	0.0565331552
+UniRef50_UPI000376A46D: hypothetical protein|unclassified	0.0565331552
+UniRef50_UPI0003B4C281: glycosyl transferase	0.0565326393
+UniRef50_UPI0003B4C281: glycosyl transferase|unclassified	0.0565326393
+UniRef50_X1B393: Marine sediment metagenome DNA, contig: S01H4_S02391 (Fragment)	0.0565317477
+UniRef50_X1B393: Marine sediment metagenome DNA, contig: S01H4_S02391 (Fragment)|unclassified	0.0565317477
+UniRef50_C5B590	0.0565224908
+UniRef50_C5B590|unclassified	0.0565224908
+UniRef50_UPI0003B7935E: glutathione peroxidase	0.0565223739
+UniRef50_UPI0003B7935E: glutathione peroxidase|unclassified	0.0565223739
+UniRef50_UPI00016C4E10: L-lactate transport	0.0565219998
+UniRef50_UPI00016C4E10: L-lactate transport|unclassified	0.0565219998
+UniRef50_Q2CHM0	0.0565192847
+UniRef50_Q2CHM0|unclassified	0.0565192847
+UniRef50_I0DU68: Pirin-like protein	0.0565153456
+UniRef50_I0DU68: Pirin-like protein|unclassified	0.0565153456
+UniRef50_UPI0003808BC7: hypothetical protein	0.0565106433
+UniRef50_UPI0003808BC7: hypothetical protein|unclassified	0.0565106433
+UniRef50_K0C9X7	0.0565093341
+UniRef50_K0C9X7|unclassified	0.0565093341
+UniRef50_R5CGG0	0.0565046539
+UniRef50_R5CGG0|unclassified	0.0565046539
+UniRef50_B9DJQ9: Truncated protein, similar to cell wall surface anchor family protein (Fragment 1)	0.0565033272
+UniRef50_B9DJQ9: Truncated protein, similar to cell wall surface anchor family protein (Fragment 1)|unclassified	0.0565033272
+UniRef50_W8T476: Pe-pgrs family protein	0.0565023407
+UniRef50_W8T476: Pe-pgrs family protein|unclassified	0.0565023407
+UniRef50_UPI000382715E: hypothetical protein	0.0565019043
+UniRef50_UPI000382715E: hypothetical protein|unclassified	0.0565019043
+UniRef50_UPI00039EC86C: hypothetical protein	0.0564992466
+UniRef50_UPI00039EC86C: hypothetical protein|unclassified	0.0564992466
+UniRef50_U2M787	0.0564968982
+UniRef50_U2M787|unclassified	0.0564968982
+UniRef50_UPI000477FB7A: 16S rRNA methyltransferase	0.0564937594
+UniRef50_UPI000477FB7A: 16S rRNA methyltransferase|unclassified	0.0564937594
+UniRef50_V8A615: ABC transporter substrate-binding protein	0.0564925640
+UniRef50_V8A615: ABC transporter substrate-binding protein|unclassified	0.0564925640
+UniRef50_UPI000375D151: hypothetical protein	0.0564922971
+UniRef50_UPI000375D151: hypothetical protein|unclassified	0.0564922971
+UniRef50_W7WVU6: Putative GTP-binding protein YjiA	0.0564838924
+UniRef50_W7WVU6: Putative GTP-binding protein YjiA|unclassified	0.0564838924
+UniRef50_UPI0002FFAF6D: hypothetical protein	0.0564822274
+UniRef50_UPI0002FFAF6D: hypothetical protein|unclassified	0.0564822274
+UniRef50_F0V7K2	0.0564705774
+UniRef50_F0V7K2|unclassified	0.0564705774
+UniRef50_UPI00037BC975: hypothetical protein	0.0564683167
+UniRef50_UPI00037BC975: hypothetical protein|unclassified	0.0564683167
+UniRef50_UPI0003802703: hypothetical protein	0.0564673461
+UniRef50_UPI0003802703: hypothetical protein|unclassified	0.0564673461
+UniRef50_UPI000255C148: glucose-6-phosphate 1-dehydrogenase	0.0564664356
+UniRef50_UPI000255C148: glucose-6-phosphate 1-dehydrogenase|unclassified	0.0564664356
+UniRef50_UPI000380EA14: hypothetical protein	0.0564657719
+UniRef50_UPI000380EA14: hypothetical protein|unclassified	0.0564657719
+UniRef50_Q88WV4: Formamidopyrimidine-DNA glycosylase	0.0564601578
+UniRef50_Q88WV4: Formamidopyrimidine-DNA glycosylase|unclassified	0.0564601578
+UniRef50_UPI0002F7AD3C: hypothetical protein	0.0564568800
+UniRef50_UPI0002F7AD3C: hypothetical protein|unclassified	0.0564568800
+UniRef50_Q4FRK4	0.0564551115
+UniRef50_Q4FRK4|unclassified	0.0564551115
+UniRef50_O74382: Probable phosphoserine phosphatase	0.0564506688
+UniRef50_O74382: Probable phosphoserine phosphatase|unclassified	0.0564506688
+UniRef50_R4LY98	0.0564505278
+UniRef50_R4LY98|unclassified	0.0564505278
+UniRef50_UPI00040A0384: DNA polymerase I	0.0564493978
+UniRef50_UPI00040A0384: DNA polymerase I|unclassified	0.0564493978
+UniRef50_UPI0003714CCB: hypothetical protein	0.0564420167
+UniRef50_UPI0003714CCB: hypothetical protein|unclassified	0.0564420167
+UniRef50_UPI00046FED89: hypothetical protein	0.0564401219
+UniRef50_UPI00046FED89: hypothetical protein|unclassified	0.0564401219
+UniRef50_UPI0003A01203: hypothetical protein	0.0564383764
+UniRef50_UPI0003A01203: hypothetical protein|unclassified	0.0564383764
+UniRef50_U6GX02	0.0564350091
+UniRef50_U6GX02|unclassified	0.0564350091
+UniRef50_Q6C1W8: YALI0F12793p	0.0564349038
+UniRef50_Q6C1W8: YALI0F12793p|unclassified	0.0564349038
+UniRef50_UPI0003769E9C: hypothetical protein	0.0564339322
+UniRef50_UPI0003769E9C: hypothetical protein|unclassified	0.0564339322
+UniRef50_Q1JCJ8: ATP-dependent helicase/nuclease subunit A	0.0564287499
+UniRef50_Q1JCJ8: ATP-dependent helicase/nuclease subunit A|unclassified	0.0564287499
+UniRef50_K1ZYE5	0.0564236951
+UniRef50_K1ZYE5|unclassified	0.0564236951
+UniRef50_UPI0003B3D326: rifampin ADP-ribosyl transferase	0.0564215760
+UniRef50_UPI0003B3D326: rifampin ADP-ribosyl transferase|unclassified	0.0564215760
+UniRef50_A2RNI8: Arginine--tRNA ligase	0.0564193069
+UniRef50_A2RNI8: Arginine--tRNA ligase|unclassified	0.0564193069
+UniRef50_UPI00034C244F: hypothetical protein	0.0564160496
+UniRef50_UPI00034C244F: hypothetical protein|unclassified	0.0564160496
+UniRef50_Q8D2L3: Fumarate hydratase class II	0.0564124120
+UniRef50_Q8D2L3: Fumarate hydratase class II|unclassified	0.0564124120
+UniRef50_B4U8Q5: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.0564102371
+UniRef50_B4U8Q5: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.0564102371
+UniRef50_UPI00036AB428: RNA polymerase sigma54 factor, partial	0.0564056541
+UniRef50_UPI00036AB428: RNA polymerase sigma54 factor, partial|unclassified	0.0564056541
+UniRef50_Q8RGA0: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.0564037818
+UniRef50_Q8RGA0: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.0564037818
+UniRef50_Q6ANH1: Adenine deaminase 2	0.0564030967
+UniRef50_Q6ANH1: Adenine deaminase 2|unclassified	0.0564030967
+UniRef50_UPI0003721385: MULTISPECIES: hypothetical protein	0.0564028510
+UniRef50_UPI0003721385: MULTISPECIES: hypothetical protein|unclassified	0.0564028510
+UniRef50_Q8PVD5: Imidazole glycerol phosphate synthase subunit HisH	0.0564018691
+UniRef50_Q8PVD5: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.0564018691
+UniRef50_UPI00047B6890: hypothetical protein	0.0563955472
+UniRef50_UPI00047B6890: hypothetical protein|unclassified	0.0563955472
+UniRef50_UPI0001744B6C: iron transporter	0.0563806922
+UniRef50_UPI0001744B6C: iron transporter|unclassified	0.0563806922
+UniRef50_UPI0003B2FF87: hypothetical protein	0.0563762935
+UniRef50_UPI0003B2FF87: hypothetical protein|unclassified	0.0563762935
+UniRef50_UPI000403912C: hypothetical protein	0.0563753870
+UniRef50_UPI000403912C: hypothetical protein|unclassified	0.0563753870
+UniRef50_UPI000415123E: hypothetical protein	0.0563729019
+UniRef50_UPI000415123E: hypothetical protein|unclassified	0.0563729019
+UniRef50_X1H671: Marine sediment metagenome DNA, contig: S03H2_S10188 (Fragment)	0.0563680155
+UniRef50_X1H671: Marine sediment metagenome DNA, contig: S03H2_S10188 (Fragment)|unclassified	0.0563680155
+UniRef50_S5YTE2	0.0563674024
+UniRef50_S5YTE2|unclassified	0.0563674024
+UniRef50_G4RGG5: Nickel transport complex protein, NikM subunit, transmembtane	0.0563668137
+UniRef50_G4RGG5: Nickel transport complex protein, NikM subunit, transmembtane|unclassified	0.0563668137
+UniRef50_U2H725: IncW plasmid conjugative relaxase protein TrwC	0.0563647799
+UniRef50_U2H725: IncW plasmid conjugative relaxase protein TrwC|unclassified	0.0563647799
+UniRef50_UPI000471F61C: hypothetical protein	0.0563623822
+UniRef50_UPI000471F61C: hypothetical protein|unclassified	0.0563623822
+UniRef50_A3DFZ8	0.0563596615
+UniRef50_A3DFZ8|unclassified	0.0563596615
+UniRef50_UPI00047D2AFD: GntR family transcriptional regulator	0.0563580036
+UniRef50_UPI00047D2AFD: GntR family transcriptional regulator|unclassified	0.0563580036
+UniRef50_A4EGL9	0.0563565497
+UniRef50_A4EGL9|unclassified	0.0563565497
+UniRef50_UPI00047B34A4: aldehyde oxidase	0.0563552005
+UniRef50_UPI00047B34A4: aldehyde oxidase|unclassified	0.0563552005
+UniRef50_D8LTZ4	0.0563520982
+UniRef50_D8LTZ4|unclassified	0.0563520982
+UniRef50_Q04796: 4-hydroxy-tetrahydrodipicolinate synthase	0.0563495959
+UniRef50_Q04796: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0563495959
+UniRef50_E4RJ80	0.0563457980
+UniRef50_E4RJ80|unclassified	0.0563457980
+UniRef50_A8I4H8: Prokaryotic chromosome segregation and condensation protein	0.0563417443
+UniRef50_A8I4H8: Prokaryotic chromosome segregation and condensation protein|unclassified	0.0563417443
+UniRef50_I1YGD2	0.0563415848
+UniRef50_I1YGD2|unclassified	0.0563415848
+UniRef50_UPI000465E49F: hypothetical protein	0.0563386118
+UniRef50_UPI000465E49F: hypothetical protein|unclassified	0.0563386118
+UniRef50_M2U396: FAD/FMN-containing dehydrogenase	0.0563383503
+UniRef50_M2U396: FAD/FMN-containing dehydrogenase|unclassified	0.0563383503
+UniRef50_UPI00047CBABB: hypothetical protein	0.0563347620
+UniRef50_UPI00047CBABB: hypothetical protein|unclassified	0.0563347620
+UniRef50_Q63WN0: Epoxyqueuosine reductase	0.0563343100
+UniRef50_Q63WN0: Epoxyqueuosine reductase|unclassified	0.0563343100
+UniRef50_UPI000473D068: anthranilate synthase, partial	0.0563265026
+UniRef50_UPI000473D068: anthranilate synthase, partial|unclassified	0.0563265026
+UniRef50_UPI000470029D: diguanylate cyclase	0.0563242335
+UniRef50_UPI000470029D: diguanylate cyclase|unclassified	0.0563242335
+UniRef50_UPI00037F3949: hypothetical protein	0.0563218575
+UniRef50_UPI00037F3949: hypothetical protein|unclassified	0.0563218575
+UniRef50_UPI000174446D: ABC transporter permease	0.0563188434
+UniRef50_UPI000174446D: ABC transporter permease|unclassified	0.0563188434
+UniRef50_UPI00047EA89A: hypothetical protein	0.0563123285
+UniRef50_UPI00047EA89A: hypothetical protein|unclassified	0.0563123285
+UniRef50_UPI00046FC5EF: hypothetical protein	0.0563104912
+UniRef50_UPI00046FC5EF: hypothetical protein|unclassified	0.0563104912
+UniRef50_J8JMR8	0.0563070108
+UniRef50_J8JMR8|unclassified	0.0563070108
+UniRef50_C4Z008	0.0563026853
+UniRef50_C4Z008|unclassified	0.0563026853
+UniRef50_E1TCC5	0.0563025926
+UniRef50_E1TCC5|unclassified	0.0563025926
+UniRef50_S9UXC9	0.0562999290
+UniRef50_S9UXC9|unclassified	0.0562999290
+UniRef50_UPI000478B33A: hypothetical protein	0.0562961569
+UniRef50_UPI000478B33A: hypothetical protein|unclassified	0.0562961569
+UniRef50_R6BV68: Putative listeria/Bacterioides repeat-containing domain protein	0.0562913159
+UniRef50_R6BV68: Putative listeria/Bacterioides repeat-containing domain protein|unclassified	0.0562913159
+UniRef50_UPI00046E5D24: hypothetical protein	0.0562882944
+UniRef50_UPI00046E5D24: hypothetical protein|unclassified	0.0562882944
+UniRef50_Q74E53: Dual-specificity RNA methyltransferase RlmN	0.0562876828
+UniRef50_Q74E53: Dual-specificity RNA methyltransferase RlmN|unclassified	0.0562876828
+UniRef50_Q11KH2: Ribonuclease HII	0.0562860242
+UniRef50_Q11KH2: Ribonuclease HII|unclassified	0.0562860242
+UniRef50_UPI0004721457: hypothetical protein, partial	0.0562849671
+UniRef50_UPI0004721457: hypothetical protein, partial|unclassified	0.0562849671
+UniRef50_Q98PW8: ATP-dependent 6-phosphofructokinase	0.0562789009
+UniRef50_Q98PW8: ATP-dependent 6-phosphofructokinase|unclassified	0.0562789009
+UniRef50_C5DNW6: ZYRO0A12100p	0.0562765901
+UniRef50_C5DNW6: ZYRO0A12100p|unclassified	0.0562765901
+UniRef50_UPI0003B4AD1E: 1-(5-phosphoribosyl)-5-	0.0562748732
+UniRef50_UPI0003B4AD1E: 1-(5-phosphoribosyl)-5-|unclassified	0.0562748732
+UniRef50_UPI0003B62185: MULTISPECIES: aspartate aminotransferase	0.0562743987
+UniRef50_UPI0003B62185: MULTISPECIES: aspartate aminotransferase|unclassified	0.0562743987
+UniRef50_U2YP60: Gene Transfer Agent	0.0562685644
+UniRef50_U2YP60: Gene Transfer Agent|unclassified	0.0562685644
+UniRef50_UPI0003C14DD4: PREDICTED: elongation factor G, chloroplastic-like	0.0562678441
+UniRef50_UPI0003C14DD4: PREDICTED: elongation factor G, chloroplastic-like|unclassified	0.0562678441
+UniRef50_UPI00016C0485: 50S ribosomal protein L11 methyltransferase	0.0562649753
+UniRef50_UPI00016C0485: 50S ribosomal protein L11 methyltransferase|unclassified	0.0562649753
+UniRef50_R5JIW4: KamA family protein	0.0562623564
+UniRef50_R5JIW4: KamA family protein|unclassified	0.0562623564
+UniRef50_UPI000255658D: prohead peptidase	0.0562568571
+UniRef50_UPI000255658D: prohead peptidase|unclassified	0.0562568571
+UniRef50_Q12PZ2: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.0562535316
+UniRef50_Q12PZ2: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.0562535316
+UniRef50_UPI000470382C: response regulator receiver protein	0.0562525497
+UniRef50_UPI000470382C: response regulator receiver protein|unclassified	0.0562525497
+UniRef50_J8H6W9	0.0562512700
+UniRef50_J8H6W9|unclassified	0.0562512700
+UniRef50_UPI000426EB26: hypothetical protein	0.0562488139
+UniRef50_UPI000426EB26: hypothetical protein|unclassified	0.0562488139
+UniRef50_UPI00036C77A3: hypothetical protein	0.0562477793
+UniRef50_UPI00036C77A3: hypothetical protein|unclassified	0.0562477793
+UniRef50_Q8R5T0: Glucosamine-6-phosphate deaminase	0.0562469441
+UniRef50_Q8R5T0: Glucosamine-6-phosphate deaminase|unclassified	0.0562469441
+UniRef50_UPI0003727088: hypothetical protein	0.0562451516
+UniRef50_UPI0003727088: hypothetical protein|unclassified	0.0562451516
+UniRef50_UPI0003AF1932: PREDICTED: LOW QUALITY PROTEIN: succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial	0.0562446544
+UniRef50_UPI0003AF1932: PREDICTED: LOW QUALITY PROTEIN: succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial|unclassified	0.0562446544
+UniRef50_UPI00035DE730: hypothetical protein	0.0562404822
+UniRef50_UPI00035DE730: hypothetical protein|unclassified	0.0562404822
+UniRef50_UPI000463C766: hypothetical protein	0.0562403637
+UniRef50_UPI000463C766: hypothetical protein|unclassified	0.0562403637
+UniRef50_UPI0004680748: hypothetical protein	0.0562402308
+UniRef50_UPI0004680748: hypothetical protein|unclassified	0.0562402308
+UniRef50_A0A058ZAA4	0.0562384023
+UniRef50_A0A058ZAA4|unclassified	0.0562384023
+UniRef50_Q5NXH9	0.0562382417
+UniRef50_Q5NXH9|unclassified	0.0562382417
+UniRef50_A0A017TGS4	0.0562376809
+UniRef50_A0A017TGS4|unclassified	0.0562376809
+UniRef50_UPI000363A34F: hypothetical protein, partial	0.0562371371
+UniRef50_UPI000363A34F: hypothetical protein, partial|unclassified	0.0562371371
+UniRef50_UPI0004778F7D: hypothetical protein	0.0562367032
+UniRef50_UPI0004778F7D: hypothetical protein|unclassified	0.0562367032
+UniRef50_UPI0002FE793C: betaine-aldehyde dehydrogenase	0.0562354382
+UniRef50_UPI0002FE793C: betaine-aldehyde dehydrogenase|unclassified	0.0562354382
+UniRef50_G8AQS1	0.0562315564
+UniRef50_G8AQS1|unclassified	0.0562315564
+UniRef50_J8YAU9	0.0562308185
+UniRef50_J8YAU9|unclassified	0.0562308185
+UniRef50_Q29W37: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.0562304699
+UniRef50_Q29W37: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.0562304699
+UniRef50_UPI00047A325F: hypothetical protein	0.0562268307
+UniRef50_UPI00047A325F: hypothetical protein|unclassified	0.0562268307
+UniRef50_F0FYY5: Putative cyclic-di-GMP signaling protein (Fragment)	0.0562259032
+UniRef50_F0FYY5: Putative cyclic-di-GMP signaling protein (Fragment)|unclassified	0.0562259032
+UniRef50_UPI00047AEA77: hypothetical protein	0.0562243422
+UniRef50_UPI00047AEA77: hypothetical protein|unclassified	0.0562243422
+UniRef50_Q9PQ76: Formamidopyrimidine-DNA glycosylase	0.0562205815
+UniRef50_Q9PQ76: Formamidopyrimidine-DNA glycosylase|unclassified	0.0562205815
+UniRef50_UPI0003742D7C: hypothetical protein	0.0562189512
+UniRef50_UPI0003742D7C: hypothetical protein|unclassified	0.0562189512
+UniRef50_UPI0003B518FF: glycerophosphoryl diester phosphodiesterase	0.0562168055
+UniRef50_UPI0003B518FF: glycerophosphoryl diester phosphodiesterase|unclassified	0.0562168055
+UniRef50_Q47RR4: tRNA dimethylallyltransferase	0.0562152978
+UniRef50_Q47RR4: tRNA dimethylallyltransferase|unclassified	0.0562152978
+UniRef50_UPI0004785EA6: hypothetical protein	0.0562115526
+UniRef50_UPI0004785EA6: hypothetical protein|unclassified	0.0562115526
+UniRef50_D2VSM7: Predicted protein	0.0562079848
+UniRef50_D2VSM7: Predicted protein|unclassified	0.0562079848
+UniRef50_UPI00035CDF76: hypothetical protein	0.0562078751
+UniRef50_UPI00035CDF76: hypothetical protein|unclassified	0.0562078751
+UniRef50_Q0G6P6	0.0562044346
+UniRef50_Q0G6P6|unclassified	0.0562044346
+UniRef50_UPI0003959865: AraC family transcriptional regulator	0.0562016073
+UniRef50_UPI0003959865: AraC family transcriptional regulator|unclassified	0.0562016073
+UniRef50_A2RKY0: ORF50	0.0561999824
+UniRef50_A2RKY0: ORF50|unclassified	0.0561999824
+UniRef50_P39522: Dihydroxy-acid dehydratase, mitochondrial	0.0561939922
+UniRef50_P39522: Dihydroxy-acid dehydratase, mitochondrial|unclassified	0.0561939922
+UniRef50_F7WFG2	0.0561887401
+UniRef50_F7WFG2|unclassified	0.0561887401
+UniRef50_UPI0002197895: phosphoribosylaminoimidazole carboxylase	0.0561841536
+UniRef50_UPI0002197895: phosphoribosylaminoimidazole carboxylase|unclassified	0.0561841536
+UniRef50_UPI000464A0B4: peptide ABC transporter permease	0.0561817935
+UniRef50_UPI000464A0B4: peptide ABC transporter permease|unclassified	0.0561817935
+UniRef50_E3H8H9: MORN repeat-containing protein	0.0561810493
+UniRef50_E3H8H9: MORN repeat-containing protein|unclassified	0.0561810493
+UniRef50_UPI00036CFD4C: hypothetical protein	0.0561765695
+UniRef50_UPI00036CFD4C: hypothetical protein|unclassified	0.0561765695
+UniRef50_UPI000462E51C: PREDICTED: LOW QUALITY PROTEIN: calcium homeostasis endoplasmic reticulum protein, partial	0.0561738075
+UniRef50_UPI000462E51C: PREDICTED: LOW QUALITY PROTEIN: calcium homeostasis endoplasmic reticulum protein, partial|unclassified	0.0561738075
+UniRef50_UPI00016A3EF0: 3-hydroxyacyl-CoA dehydrogenase, NAD-binding protein, partial	0.0561735836
+UniRef50_UPI00016A3EF0: 3-hydroxyacyl-CoA dehydrogenase, NAD-binding protein, partial|unclassified	0.0561735836
+UniRef50_A0A022UB36	0.0561715721
+UniRef50_A0A022UB36|unclassified	0.0561715721
+UniRef50_UPI000255A6DD: sugar ABC transporter permease	0.0561712498
+UniRef50_UPI000255A6DD: sugar ABC transporter permease|unclassified	0.0561712498
+UniRef50_UPI00026272FC: cell division protein FtsW	0.0561697186
+UniRef50_UPI00026272FC: cell division protein FtsW|unclassified	0.0561697186
+UniRef50_G7W4L1	0.0561678612
+UniRef50_G7W4L1|unclassified	0.0561678612
+UniRef50_UPI00047625B0: spore gernimation protein	0.0561666861
+UniRef50_UPI00047625B0: spore gernimation protein|unclassified	0.0561666861
+UniRef50_UPI0003B53986: hypothetical protein	0.0561630502
+UniRef50_UPI0003B53986: hypothetical protein|unclassified	0.0561630502
+UniRef50_K6PZY4: Putative esterase	0.0561628445
+UniRef50_K6PZY4: Putative esterase|unclassified	0.0561628445
+UniRef50_UPI00047B06F9: hypothetical protein	0.0561576077
+UniRef50_UPI00047B06F9: hypothetical protein|unclassified	0.0561576077
+UniRef50_UPI0003A4F916: deoxyribonucleotide triphosphate pyrophosphatase	0.0561556386
+UniRef50_UPI0003A4F916: deoxyribonucleotide triphosphate pyrophosphatase|unclassified	0.0561556386
+UniRef50_UPI00028979D7: AraC family transcriptional regulator	0.0561528129
+UniRef50_UPI00028979D7: AraC family transcriptional regulator|unclassified	0.0561528129
+UniRef50_H6RPX4	0.0561471188
+UniRef50_H6RPX4|unclassified	0.0561471188
+UniRef50_UPI0002628B25: hypothetical protein	0.0561356113
+UniRef50_UPI0002628B25: hypothetical protein|unclassified	0.0561356113
+UniRef50_R6Z301: Threonine dehydratase medium form	0.0561340900
+UniRef50_R6Z301: Threonine dehydratase medium form|unclassified	0.0561340900
+UniRef50_UPI00036C5239: hypothetical protein	0.0561328784
+UniRef50_UPI00036C5239: hypothetical protein|unclassified	0.0561328784
+UniRef50_A6V312	0.0561324726
+UniRef50_A6V312|unclassified	0.0561324726
+UniRef50_U6A7W2: Extracellular Matrix protein PelB	0.0561324726
+UniRef50_U6A7W2: Extracellular Matrix protein PelB|unclassified	0.0561324726
+UniRef50_UPI0002B47979: PREDICTED: LOW QUALITY PROTEIN: D-tagatose-1,6-bisphosphate aldolase subunit GatY-like, partial	0.0561239727
+UniRef50_UPI0002B47979: PREDICTED: LOW QUALITY PROTEIN: D-tagatose-1,6-bisphosphate aldolase subunit GatY-like, partial|unclassified	0.0561239727
+UniRef50_Q3SL72: Putative pilus assembly protein PilF, TPR repeat	0.0561225686
+UniRef50_Q3SL72: Putative pilus assembly protein PilF, TPR repeat|unclassified	0.0561225686
+UniRef50_Q09CG0	0.0561182807
+UniRef50_Q09CG0|unclassified	0.0561182807
+UniRef50_UPI0003B49C20: UDP-3-O-(3-hydroxymyristoyl) glucosamine N-acyltransferase	0.0561176314
+UniRef50_UPI0003B49C20: UDP-3-O-(3-hydroxymyristoyl) glucosamine N-acyltransferase|unclassified	0.0561176314
+UniRef50_Q9Z6S4: Ribonucleoside-diphosphate reductase subunit beta	0.0561172270
+UniRef50_Q9Z6S4: Ribonucleoside-diphosphate reductase subunit beta|unclassified	0.0561172270
+UniRef50_Q9HUI8: Probable 2-ketoarginine decarboxylase AruI	0.0561162020
+UniRef50_Q9HUI8: Probable 2-ketoarginine decarboxylase AruI|unclassified	0.0561162020
+UniRef50_UPI0003B6CE26: hypothetical protein	0.0561160201
+UniRef50_UPI0003B6CE26: hypothetical protein|unclassified	0.0561160201
+UniRef50_UPI000370F732: hypothetical protein	0.0561095633
+UniRef50_UPI000370F732: hypothetical protein|unclassified	0.0561095633
+UniRef50_UPI0003676B00: hypothetical protein	0.0561089262
+UniRef50_UPI0003676B00: hypothetical protein|unclassified	0.0561089262
+UniRef50_UPI00037A2FE7: hypothetical protein	0.0561067073
+UniRef50_UPI00037A2FE7: hypothetical protein|unclassified	0.0561067073
+UniRef50_Q0C0N0: Bifunctional enzyme IspD/IspF	0.0561030348
+UniRef50_Q0C0N0: Bifunctional enzyme IspD/IspF|unclassified	0.0561030348
+UniRef50_UPI000471541A: hypothetical protein	0.0560966727
+UniRef50_UPI000471541A: hypothetical protein|unclassified	0.0560966727
+UniRef50_D8RNM0	0.0560919039
+UniRef50_D8RNM0|unclassified	0.0560919039
+UniRef50_UPI00045E71E0: hypothetical protein	0.0560917710
+UniRef50_UPI00045E71E0: hypothetical protein|unclassified	0.0560917710
+UniRef50_U6G8A1	0.0560731514
+UniRef50_U6G8A1|unclassified	0.0560731514
+UniRef50_UPI000362C6C3: hypothetical protein	0.0560664936
+UniRef50_UPI000362C6C3: hypothetical protein|unclassified	0.0560664936
+UniRef50_UPI0003612708: hypothetical protein	0.0560512422
+UniRef50_UPI0003612708: hypothetical protein|unclassified	0.0560512422
+UniRef50_UPI0002DC1141: hypothetical protein	0.0560500902
+UniRef50_UPI0002DC1141: hypothetical protein|unclassified	0.0560500902
+UniRef50_UPI00036273EB: hypothetical protein	0.0560500457
+UniRef50_UPI00036273EB: hypothetical protein|unclassified	0.0560500457
+UniRef50_D5UQG6	0.0560496472
+UniRef50_D5UQG6|unclassified	0.0560496472
+UniRef50_C1F8I0: Non-canonical purine NTP pyrophosphatase	0.0560423577
+UniRef50_C1F8I0: Non-canonical purine NTP pyrophosphatase|unclassified	0.0560423577
+UniRef50_UPI0003713BD2: hypothetical protein	0.0560401642
+UniRef50_UPI0003713BD2: hypothetical protein|unclassified	0.0560401642
+UniRef50_UPI0003783A7D: hypothetical protein	0.0560381000
+UniRef50_UPI0003783A7D: hypothetical protein|unclassified	0.0560381000
+UniRef50_G0EC04	0.0560275628
+UniRef50_G0EC04|unclassified	0.0560275628
+UniRef50_Q2S6G3: N-acetylmuramic acid 6-phosphate etherase	0.0560244085
+UniRef50_Q2S6G3: N-acetylmuramic acid 6-phosphate etherase|unclassified	0.0560244085
+UniRef50_C6XRW2	0.0560164624
+UniRef50_C6XRW2|unclassified	0.0560164624
+UniRef50_A0A011NIG9: Stalked cell differentiation-controlling protein	0.0560160704
+UniRef50_A0A011NIG9: Stalked cell differentiation-controlling protein|unclassified	0.0560160704
+UniRef50_R7L8K5	0.0560158036
+UniRef50_R7L8K5|unclassified	0.0560158036
+UniRef50_UPI000466F250: membrane protein, partial	0.0560144768
+UniRef50_UPI000466F250: membrane protein, partial|unclassified	0.0560144768
+UniRef50_UPI00047BC9A2: hydroxyglutarate oxidase	0.0560050559
+UniRef50_UPI00047BC9A2: hydroxyglutarate oxidase|unclassified	0.0560050559
+UniRef50_A5G327	0.0560045243
+UniRef50_A5G327|unclassified	0.0560045243
+UniRef50_UPI000467240F: hypothetical protein	0.0559955565
+UniRef50_UPI000467240F: hypothetical protein|unclassified	0.0559955565
+UniRef50_A9B2U4: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.0559905472
+UniRef50_A9B2U4: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.0559905472
+UniRef50_C6B728: Pyridoxal-5'-phosphate-dependent protein beta subunit	0.0559897837
+UniRef50_C6B728: Pyridoxal-5'-phosphate-dependent protein beta subunit|unclassified	0.0559897837
+UniRef50_UPI000471C4D4: sugar ABC transporter permease	0.0559837061
+UniRef50_UPI000471C4D4: sugar ABC transporter permease|unclassified	0.0559837061
+UniRef50_UPI00037B12EF: hypothetical protein, partial	0.0559836397
+UniRef50_UPI00037B12EF: hypothetical protein, partial|unclassified	0.0559836397
+UniRef50_Q02198: Morphine 6-dehydrogenase	0.0559828254
+UniRef50_Q02198: Morphine 6-dehydrogenase|unclassified	0.0559828254
+UniRef50_UPI0002627345: methylated-DNA--protein-cysteine methyltransferase	0.0559826993
+UniRef50_UPI0002627345: methylated-DNA--protein-cysteine methyltransferase|unclassified	0.0559826993
+UniRef50_C0ZJF8: Glucosamine-6-phosphate deaminase	0.0559811957
+UniRef50_C0ZJF8: Glucosamine-6-phosphate deaminase|unclassified	0.0559811957
+UniRef50_F7QTE8	0.0559760465
+UniRef50_F7QTE8|unclassified	0.0559760465
+UniRef50_A7HYF0	0.0559734092
+UniRef50_A7HYF0|unclassified	0.0559734092
+UniRef50_U1CQV0	0.0559732727
+UniRef50_U1CQV0|unclassified	0.0559732727
+UniRef50_Q9RTK2: Diaminopimelate decarboxylase	0.0559703531
+UniRef50_Q9RTK2: Diaminopimelate decarboxylase|unclassified	0.0559703531
+UniRef50_C7PD55: Chitinase	0.0559669104
+UniRef50_C7PD55: Chitinase|unclassified	0.0559669104
+UniRef50_C1N829: Predicted protein	0.0559660921
+UniRef50_C1N829: Predicted protein|unclassified	0.0559660921
+UniRef50_UPI0003B3970A: arylesterase	0.0559652505
+UniRef50_UPI0003B3970A: arylesterase|unclassified	0.0559652505
+UniRef50_X1CQ64: Marine sediment metagenome DNA, contig: S01H4_L05790 (Fragment)	0.0559644938
+UniRef50_X1CQ64: Marine sediment metagenome DNA, contig: S01H4_L05790 (Fragment)|unclassified	0.0559644938
+UniRef50_W0JTL8	0.0559626369
+UniRef50_W0JTL8|unclassified	0.0559626369
+UniRef50_Q2N7Y8: Formamidopyrimidine-DNA glycosylase	0.0559588781
+UniRef50_Q2N7Y8: Formamidopyrimidine-DNA glycosylase|unclassified	0.0559588781
+UniRef50_UPI00046A015D: beta-1,6-galactofuranosyltransferase	0.0559578196
+UniRef50_UPI00046A015D: beta-1,6-galactofuranosyltransferase|unclassified	0.0559578196
+UniRef50_L8EWY7: Pyoverdine biosynthesis protein	0.0559568420
+UniRef50_L8EWY7: Pyoverdine biosynthesis protein|unclassified	0.0559568420
+UniRef50_Q5FDZ6	0.0559549886
+UniRef50_Q5FDZ6|unclassified	0.0559549886
+UniRef50_UPI0002B4DB80	0.0559528374
+UniRef50_UPI0002B4DB80|unclassified	0.0559528374
+UniRef50_A8JBQ4: Predicted protein	0.0559503141
+UniRef50_A8JBQ4: Predicted protein|unclassified	0.0559503141
+UniRef50_UPI00046499F1: hypothetical protein, partial	0.0559475854
+UniRef50_UPI00046499F1: hypothetical protein, partial|unclassified	0.0559475854
+UniRef50_UPI0003636AD4: hypothetical protein	0.0559407893
+UniRef50_UPI0003636AD4: hypothetical protein|unclassified	0.0559407893
+UniRef50_A0A024HWX1	0.0559398870
+UniRef50_A0A024HWX1|unclassified	0.0559398870
+UniRef50_UPI00037B9576: hypothetical protein	0.0559385227
+UniRef50_UPI00037B9576: hypothetical protein|unclassified	0.0559385227
+UniRef50_D2NU09	0.0559362710
+UniRef50_D2NU09|unclassified	0.0559362710
+UniRef50_UPI0003A55370: tRNA synthetase RNA-binding protein	0.0559323597
+UniRef50_UPI0003A55370: tRNA synthetase RNA-binding protein|unclassified	0.0559323597
+UniRef50_UPI0002492B57: pyruvate carboxylase, partial	0.0559298392
+UniRef50_UPI0002492B57: pyruvate carboxylase, partial|unclassified	0.0559298392
+UniRef50_O66608: N5-carboxyaminoimidazole ribonucleotide synthase	0.0559285251
+UniRef50_O66608: N5-carboxyaminoimidazole ribonucleotide synthase|unclassified	0.0559285251
+UniRef50_UPI000312AE4D: hypothetical protein	0.0559282251
+UniRef50_UPI000312AE4D: hypothetical protein|unclassified	0.0559282251
+UniRef50_UPI000360C017: hypothetical protein	0.0559180534
+UniRef50_UPI000360C017: hypothetical protein|unclassified	0.0559180534
+UniRef50_UPI00036FD1D7: hypothetical protein	0.0559153321
+UniRef50_UPI00036FD1D7: hypothetical protein|unclassified	0.0559153321
+UniRef50_UPI00040FEF61: OHCU decarboxylase	0.0559100169
+UniRef50_UPI00040FEF61: OHCU decarboxylase|unclassified	0.0559100169
+UniRef50_UPI0001CB9B32: PREDICTED: S1 RNA-binding domain-containing protein 1-like, partial	0.0559089692
+UniRef50_UPI0001CB9B32: PREDICTED: S1 RNA-binding domain-containing protein 1-like, partial|unclassified	0.0559089692
+UniRef50_UPI000262925E: hypothetical protein	0.0559071602
+UniRef50_UPI000262925E: hypothetical protein|unclassified	0.0559071602
+UniRef50_UPI00047A53C8: hypothetical protein	0.0559048771
+UniRef50_UPI00047A53C8: hypothetical protein|unclassified	0.0559048771
+UniRef50_K2JFX6: Putative signal transduction protein	0.0559002143
+UniRef50_K2JFX6: Putative signal transduction protein|unclassified	0.0559002143
+UniRef50_C7Q8K8	0.0558982053
+UniRef50_C7Q8K8|unclassified	0.0558982053
+UniRef50_W5XIW0: Isoprenyl transferase	0.0558960185
+UniRef50_W5XIW0: Isoprenyl transferase|unclassified	0.0558960185
+UniRef50_Q47823: D-alanine--D-alanine ligase (Fragment)	0.0558952374
+UniRef50_Q47823: D-alanine--D-alanine ligase (Fragment)|unclassified	0.0558952374
+UniRef50_Q2I2W2: Egg case silk protein 2	0.0558869098
+UniRef50_Q2I2W2: Egg case silk protein 2|unclassified	0.0558869098
+UniRef50_K4F5L3	0.0558848203
+UniRef50_K4F5L3|unclassified	0.0558848203
+UniRef50_UPI000416161F: hypothetical protein	0.0558834743
+UniRef50_UPI000416161F: hypothetical protein|unclassified	0.0558834743
+UniRef50_UPI0003710DBF: hypothetical protein	0.0558833892
+UniRef50_UPI0003710DBF: hypothetical protein|unclassified	0.0558833892
+UniRef50_UPI0003A2B6FD: uroporphyrinogen decarboxylase	0.0558828922
+UniRef50_UPI0003A2B6FD: uroporphyrinogen decarboxylase|unclassified	0.0558828922
+UniRef50_UPI00036E0775: hypothetical protein	0.0558781381
+UniRef50_UPI00036E0775: hypothetical protein|unclassified	0.0558781381
+UniRef50_UPI0003622B4A: hypothetical protein	0.0558770798
+UniRef50_UPI0003622B4A: hypothetical protein|unclassified	0.0558770798
+UniRef50_Q92DG5: D-alanine--D-alanine ligase	0.0558700226
+UniRef50_Q92DG5: D-alanine--D-alanine ligase|unclassified	0.0558700226
+UniRef50_Q65JP3: Ribonuclease HII	0.0558680710
+UniRef50_Q65JP3: Ribonuclease HII|unclassified	0.0558680710
+UniRef50_UPI0002486A18: hypothetical protein	0.0558599811
+UniRef50_UPI0002486A18: hypothetical protein|unclassified	0.0558599811
+UniRef50_UPI000365EA92: hypothetical protein	0.0558595695
+UniRef50_UPI000365EA92: hypothetical protein|unclassified	0.0558595695
+UniRef50_I0DQY5: Formate-dependent nitrite reductase complex nrfG subunit	0.0558550422
+UniRef50_I0DQY5: Formate-dependent nitrite reductase complex nrfG subunit|unclassified	0.0558550422
+UniRef50_UPI0003B721A0: signal peptidase	0.0558536568
+UniRef50_UPI0003B721A0: signal peptidase|unclassified	0.0558536568
+UniRef50_UPI0003B3DB70: teichoic acid transporter	0.0558527277
+UniRef50_UPI0003B3DB70: teichoic acid transporter|unclassified	0.0558527277
+UniRef50_I4C200: Putative GTPase, G3E family	0.0558524376
+UniRef50_I4C200: Putative GTPase, G3E family|unclassified	0.0558524376
+UniRef50_UPI000428AB4B: hypothetical protein	0.0558500672
+UniRef50_UPI000428AB4B: hypothetical protein|unclassified	0.0558500672
+UniRef50_B0BSN7: Phosphoglycerate mutase	0.0558488262
+UniRef50_B0BSN7: Phosphoglycerate mutase|unclassified	0.0558488262
+UniRef50_UPI00034ABD1C: hypothetical protein	0.0558482511
+UniRef50_UPI00034ABD1C: hypothetical protein|unclassified	0.0558482511
+UniRef50_UPI000471FABE: hypothetical protein, partial	0.0558418621
+UniRef50_UPI000471FABE: hypothetical protein, partial|unclassified	0.0558418621
+UniRef50_B9E8H8	0.0558387750
+UniRef50_B9E8H8|unclassified	0.0558387750
+UniRef50_B6J655: Methionyl-tRNA formyltransferase	0.0558309465
+UniRef50_B6J655: Methionyl-tRNA formyltransferase|unclassified	0.0558309465
+UniRef50_F2A8E2	0.0558302771
+UniRef50_F2A8E2|unclassified	0.0558302771
+UniRef50_B8IJ12: SpoVR family protein	0.0558291756
+UniRef50_B8IJ12: SpoVR family protein|unclassified	0.0558291756
+UniRef50_Q05709: D-specific alpha-keto acid dehydrogenase	0.0558288745
+UniRef50_Q05709: D-specific alpha-keto acid dehydrogenase|unclassified	0.0558288745
+UniRef50_Q2CI74	0.0558267771
+UniRef50_Q2CI74|unclassified	0.0558267771
+UniRef50_UPI00046FE52B: transporter	0.0558227920
+UniRef50_UPI00046FE52B: transporter|unclassified	0.0558227920
+UniRef50_UPI000362E109: molybdopterin biosynthesis protein MoeB	0.0558224233
+UniRef50_UPI000362E109: molybdopterin biosynthesis protein MoeB|unclassified	0.0558224233
+UniRef50_UPI0003F0FACC: PREDICTED: mucin-2-like	0.0558168568
+UniRef50_UPI0003F0FACC: PREDICTED: mucin-2-like|unclassified	0.0558168568
+UniRef50_UPI0002197679: ABC transporter ATP-binding protein	0.0558167139
+UniRef50_UPI0002197679: ABC transporter ATP-binding protein|unclassified	0.0558167139
+UniRef50_UPI0004789B93: hypothetical protein	0.0558150639
+UniRef50_UPI0004789B93: hypothetical protein|unclassified	0.0558150639
+UniRef50_A0RWW0: N-acetyl-gamma-glutamyl-phosphate/N-acetyl-gamma-aminoadipyl-phosphate reductase	0.0558129790
+UniRef50_A0RWW0: N-acetyl-gamma-glutamyl-phosphate/N-acetyl-gamma-aminoadipyl-phosphate reductase|unclassified	0.0558129790
+UniRef50_A5FRB6: Triosephosphate isomerase	0.0558121087
+UniRef50_A5FRB6: Triosephosphate isomerase|unclassified	0.0558121087
+UniRef50_Q1IVF9: Type III pantothenate kinase	0.0558083471
+UniRef50_Q1IVF9: Type III pantothenate kinase|unclassified	0.0558083471
+UniRef50_K9ADI4: UPF0753 protein C273_11456	0.0558044027
+UniRef50_K9ADI4: UPF0753 protein C273_11456|unclassified	0.0558044027
+UniRef50_UPI00047B42E5: hypothetical protein, partial	0.0558022920
+UniRef50_UPI00047B42E5: hypothetical protein, partial|unclassified	0.0558022920
+UniRef50_G4D6X9: C4-dicarboxylate TRAP-T family tripartite ATP-independent periplasmic transporter, membrane protein	0.0558004683
+UniRef50_G4D6X9: C4-dicarboxylate TRAP-T family tripartite ATP-independent periplasmic transporter, membrane protein|unclassified	0.0558004683
+UniRef50_UPI0004408592: acyl-CoA dehydrogenase NM domain-like protein	0.0557953698
+UniRef50_UPI0004408592: acyl-CoA dehydrogenase NM domain-like protein|unclassified	0.0557953698
+UniRef50_UPI0003645B24: hypothetical protein	0.0557949969
+UniRef50_UPI0003645B24: hypothetical protein|unclassified	0.0557949969
+UniRef50_K0R2T4	0.0557928582
+UniRef50_K0R2T4|unclassified	0.0557928582
+UniRef50_UPI00032A718B: PREDICTED: bifunctional dihydrofolate reductase-thymidylate synthase-like isoform X1	0.0557848728
+UniRef50_UPI00032A718B: PREDICTED: bifunctional dihydrofolate reductase-thymidylate synthase-like isoform X1|unclassified	0.0557848728
+UniRef50_UPI00036B09E8: hypothetical protein	0.0557846832
+UniRef50_UPI00036B09E8: hypothetical protein|unclassified	0.0557846832
+UniRef50_UPI00037C1F67: hypothetical protein	0.0557762239
+UniRef50_UPI00037C1F67: hypothetical protein|unclassified	0.0557762239
+UniRef50_UPI00047460D1: ABC transporter permease	0.0557743878
+UniRef50_UPI00047460D1: ABC transporter permease|unclassified	0.0557743878
+UniRef50_UPI0004710CBF: hypothetical protein	0.0557722935
+UniRef50_UPI0004710CBF: hypothetical protein|unclassified	0.0557722935
+UniRef50_S9QLI2	0.0557703499
+UniRef50_S9QLI2|unclassified	0.0557703499
+UniRef50_UPI000299F85F: ribokinase	0.0557628740
+UniRef50_UPI000299F85F: ribokinase|unclassified	0.0557628740
+UniRef50_UPI00035DD893: hypothetical protein, partial	0.0557611939
+UniRef50_UPI00035DD893: hypothetical protein, partial|unclassified	0.0557611939
+UniRef50_A5CX90: Formamidopyrimidine-DNA glycosylase	0.0557564569
+UniRef50_A5CX90: Formamidopyrimidine-DNA glycosylase|unclassified	0.0557564569
+UniRef50_UPI0003A87FEF: hypothetical protein	0.0557527267
+UniRef50_UPI0003A87FEF: hypothetical protein|unclassified	0.0557527267
+UniRef50_UPI0004624D8A: hypothetical protein	0.0557489089
+UniRef50_UPI0004624D8A: hypothetical protein|unclassified	0.0557489089
+UniRef50_UPI000360DC11: chromosome replication initiation inhibitor protein	0.0557485289
+UniRef50_UPI000360DC11: chromosome replication initiation inhibitor protein|unclassified	0.0557485289
+UniRef50_Q4QKM3: Phenylalanine--tRNA ligase beta subunit	0.0557462870
+UniRef50_Q4QKM3: Phenylalanine--tRNA ligase beta subunit|unclassified	0.0557462870
+UniRef50_Q8R9N0: Tryptophan synthase alpha chain	0.0557444988
+UniRef50_Q8R9N0: Tryptophan synthase alpha chain|unclassified	0.0557444988
+UniRef50_V7ZH64: Cysteine synthase	0.0557431367
+UniRef50_V7ZH64: Cysteine synthase|unclassified	0.0557431367
+UniRef50_Q3Z6G6: Anthranilate phosphoribosyltransferase	0.0557335694
+UniRef50_Q3Z6G6: Anthranilate phosphoribosyltransferase|unclassified	0.0557335694
+UniRef50_A4YPP8: Ribonuclease HII	0.0557322673
+UniRef50_A4YPP8: Ribonuclease HII|unclassified	0.0557322673
+UniRef50_O29445: D-3-phosphoglycerate dehydrogenase	0.0557276996
+UniRef50_O29445: D-3-phosphoglycerate dehydrogenase|unclassified	0.0557276996
+UniRef50_UPI00040EBF63: hypothetical protein	0.0557273633
+UniRef50_UPI00040EBF63: hypothetical protein|unclassified	0.0557273633
+UniRef50_W6TX57	0.0557160270
+UniRef50_W6TX57|unclassified	0.0557160270
+UniRef50_UPI000333464B	0.0557071786
+UniRef50_UPI000333464B|unclassified	0.0557071786
+UniRef50_UPI0003EC0FF7: PREDICTED: retinal dehydrogenase 1-like	0.0557066828
+UniRef50_UPI0003EC0FF7: PREDICTED: retinal dehydrogenase 1-like|unclassified	0.0557066828
+UniRef50_G1RXV4	0.0557061036
+UniRef50_G1RXV4|unclassified	0.0557061036
+UniRef50_UPI00031610FF: hypothetical protein	0.0557038847
+UniRef50_UPI00031610FF: hypothetical protein|unclassified	0.0557038847
+UniRef50_UPI00046FE313: hypothetical protein, partial	0.0556987250
+UniRef50_UPI00046FE313: hypothetical protein, partial|unclassified	0.0556987250
+UniRef50_UPI00037EA031: hypothetical protein	0.0556947550
+UniRef50_UPI00037EA031: hypothetical protein|unclassified	0.0556947550
+UniRef50_UPI000237B1A3: 3-hydroxyisobutyrate dehydrogenase	0.0556939505
+UniRef50_UPI000237B1A3: 3-hydroxyisobutyrate dehydrogenase|unclassified	0.0556939505
+UniRef50_UPI00036676D6: hypothetical protein	0.0556911498
+UniRef50_UPI00036676D6: hypothetical protein|unclassified	0.0556911498
+UniRef50_UPI000377127D: hypothetical protein	0.0556888690
+UniRef50_UPI000377127D: hypothetical protein|unclassified	0.0556888690
+UniRef50_A1ATB7: Chitinase-like protein	0.0556861618
+UniRef50_A1ATB7: Chitinase-like protein|unclassified	0.0556861618
+UniRef50_UPI0003B358DD: phytoene desaturase	0.0556856985
+UniRef50_UPI0003B358DD: phytoene desaturase|unclassified	0.0556856985
+UniRef50_Q1R081	0.0556843069
+UniRef50_Q1R081|unclassified	0.0556843069
+UniRef50_E1SMG4: Cytochrome C biogenesis protein	0.0556842597
+UniRef50_E1SMG4: Cytochrome C biogenesis protein|unclassified	0.0556842597
+UniRef50_C0Z7Z0: Formamidopyrimidine-DNA glycosylase	0.0556828485
+UniRef50_C0Z7Z0: Formamidopyrimidine-DNA glycosylase|unclassified	0.0556828485
+UniRef50_C5TD27: Xanthine dehydrogenase accessory protein XdhC (Fragment)	0.0556806848
+UniRef50_C5TD27: Xanthine dehydrogenase accessory protein XdhC (Fragment)|unclassified	0.0556806848
+UniRef50_J2LFX0: TRAP-type mannitol/chloroaromatic compound transport system, large permease component	0.0556768593
+UniRef50_J2LFX0: TRAP-type mannitol/chloroaromatic compound transport system, large permease component|unclassified	0.0556768593
+UniRef50_D9QK50: Beta-lactamase domain protein	0.0556731157
+UniRef50_D9QK50: Beta-lactamase domain protein|unclassified	0.0556731157
+UniRef50_UPI0003799DDE: hypothetical protein	0.0556716034
+UniRef50_UPI0003799DDE: hypothetical protein|unclassified	0.0556716034
+UniRef50_F7QP73: ATPase	0.0556668550
+UniRef50_F7QP73: ATPase|unclassified	0.0556668550
+UniRef50_UPI0003B5F41B: hydrolase	0.0556663694
+UniRef50_UPI0003B5F41B: hydrolase|unclassified	0.0556663694
+UniRef50_I4EAF3: NnrS protein	0.0556649778
+UniRef50_I4EAF3: NnrS protein|unclassified	0.0556649778
+UniRef50_UPI000477ACDB: short-chain dehydrogenase	0.0556628791
+UniRef50_UPI000477ACDB: short-chain dehydrogenase|unclassified	0.0556628791
+UniRef50_C8K7S5	0.0556611264
+UniRef50_C8K7S5|unclassified	0.0556611264
+UniRef50_UPI00036A070A: hypothetical protein	0.0556580378
+UniRef50_UPI00036A070A: hypothetical protein|unclassified	0.0556580378
+UniRef50_UPI0002628306: ABC transporter ATPase, partial	0.0556574975
+UniRef50_UPI0002628306: ABC transporter ATPase, partial|unclassified	0.0556574975
+UniRef50_Q6C998: YALI0D12859p	0.0556536032
+UniRef50_Q6C998: YALI0D12859p|unclassified	0.0556536032
+UniRef50_Q65UF8: FecB protein	0.0556506469
+UniRef50_Q65UF8: FecB protein|unclassified	0.0556506469
+UniRef50_W5XD51: Prevent-host-death protein	0.0556496102
+UniRef50_W5XD51: Prevent-host-death protein|unclassified	0.0556496102
+UniRef50_UPI000370CE8C: hypothetical protein	0.0556476197
+UniRef50_UPI000370CE8C: hypothetical protein|unclassified	0.0556476197
+UniRef50_UPI00016C532E: leucyl-tRNA synthetase	0.0556370191
+UniRef50_UPI00016C532E: leucyl-tRNA synthetase|unclassified	0.0556370191
+UniRef50_UPI00037DA932: hypothetical protein	0.0556316986
+UniRef50_UPI00037DA932: hypothetical protein|unclassified	0.0556316986
+UniRef50_UPI0003DEB94F: PREDICTED: nucleoside diphosphate kinase 2, chloroplastic-like	0.0556262964
+UniRef50_UPI0003DEB94F: PREDICTED: nucleoside diphosphate kinase 2, chloroplastic-like|unclassified	0.0556262964
+UniRef50_UPI00016A5172: class-I/II aminotransferase	0.0556258576
+UniRef50_UPI00016A5172: class-I/II aminotransferase|unclassified	0.0556258576
+UniRef50_G0L3F4: K+/H+ antiporter, ancillary protein KefF	0.0556239731
+UniRef50_G0L3F4: K+/H+ antiporter, ancillary protein KefF|unclassified	0.0556239731
+UniRef50_UPI0003B360DF: chemotaxis protein	0.0556196916
+UniRef50_UPI0003B360DF: chemotaxis protein|unclassified	0.0556196916
+UniRef50_X4ZB59: EAL domain protein	0.0556147771
+UniRef50_X4ZB59: EAL domain protein|unclassified	0.0556147771
+UniRef50_UPI00036B5366: hypothetical protein	0.0556115309
+UniRef50_UPI00036B5366: hypothetical protein|unclassified	0.0556115309
+UniRef50_UPI0003EC4C5B: PREDICTED: LOW QUALITY PROTEIN: trinucleotide repeat-containing gene 18 protein-like	0.0556085189
+UniRef50_UPI0003EC4C5B: PREDICTED: LOW QUALITY PROTEIN: trinucleotide repeat-containing gene 18 protein-like|unclassified	0.0556085189
+UniRef50_M7TG54	0.0556050515
+UniRef50_M7TG54|unclassified	0.0556050515
+UniRef50_A6GL62: Nucleoside-diphosphate-sugar epimerase-like protein	0.0556046707
+UniRef50_A6GL62: Nucleoside-diphosphate-sugar epimerase-like protein|unclassified	0.0556046707
+UniRef50_UPI0003FB6B0F: hypothetical protein	0.0556035625
+UniRef50_UPI0003FB6B0F: hypothetical protein|unclassified	0.0556035625
+UniRef50_Q8VKN7	0.0556020979
+UniRef50_Q8VKN7|unclassified	0.0556020979
+UniRef50_UPI0002B922B2: hypothetical protein, partial	0.0556004447
+UniRef50_UPI0002B922B2: hypothetical protein, partial|unclassified	0.0556004447
+UniRef50_UPI0002651735	0.0556001955
+UniRef50_UPI0002651735|unclassified	0.0556001955
+UniRef50_UPI0003A926D1: MULTISPECIES: asparagine synthase	0.0555976888
+UniRef50_UPI0003A926D1: MULTISPECIES: asparagine synthase|unclassified	0.0555976888
+UniRef50_UPI00035CBBAB: hypothetical protein	0.0555967076
+UniRef50_UPI00035CBBAB: hypothetical protein|unclassified	0.0555967076
+UniRef50_UPI0003ACE60C: hypothetical protein	0.0555936642
+UniRef50_UPI0003ACE60C: hypothetical protein|unclassified	0.0555936642
+UniRef50_UPI00046F8633: cation transporter	0.0555909031
+UniRef50_UPI00046F8633: cation transporter|unclassified	0.0555909031
+UniRef50_UPI000478F27B: ATP-dependent DNA helicase Rep	0.0555897427
+UniRef50_UPI000478F27B: ATP-dependent DNA helicase Rep|unclassified	0.0555897427
+UniRef50_UPI0003B51D48: inositol-phosphate phosphatase	0.0555890192
+UniRef50_UPI0003B51D48: inositol-phosphate phosphatase|unclassified	0.0555890192
+UniRef50_H9K7I8	0.0555858912
+UniRef50_H9K7I8|unclassified	0.0555858912
+UniRef50_UPI00046300A7: hypothetical protein	0.0555857492
+UniRef50_UPI00046300A7: hypothetical protein|unclassified	0.0555857492
+UniRef50_UPI00036BF64F: hypothetical protein	0.0555853994
+UniRef50_UPI00036BF64F: hypothetical protein|unclassified	0.0555853994
+UniRef50_UPI0002E56862: hypothetical protein	0.0555762356
+UniRef50_UPI0002E56862: hypothetical protein|unclassified	0.0555762356
+UniRef50_H8Z4H3: 6-pyruvoyl-tetrahydropterin synthase	0.0555737726
+UniRef50_H8Z4H3: 6-pyruvoyl-tetrahydropterin synthase|unclassified	0.0555737726
+UniRef50_B6IP82: Diaminopimelate epimerase	0.0555707315
+UniRef50_B6IP82: Diaminopimelate epimerase|unclassified	0.0555707315
+UniRef50_UPI0004440BF6: PREDICTED: cactin-like isoform X1	0.0555636878
+UniRef50_UPI0004440BF6: PREDICTED: cactin-like isoform X1|unclassified	0.0555636878
+UniRef50_UPI000288AFE8: FAD dependent oxidoreductase	0.0555611452
+UniRef50_UPI000288AFE8: FAD dependent oxidoreductase|unclassified	0.0555611452
+UniRef50_W6K891	0.0555601731
+UniRef50_W6K891|unclassified	0.0555601731
+UniRef50_UPI00046FFCEC: ABC transporter ATP-binding protein, partial	0.0555589985
+UniRef50_UPI00046FFCEC: ABC transporter ATP-binding protein, partial|unclassified	0.0555589985
+UniRef50_UPI00046ED46A: hypothetical protein	0.0555557525
+UniRef50_UPI00046ED46A: hypothetical protein|unclassified	0.0555557525
+UniRef50_I6SFZ0: TPR domain-containing protein	0.0555540847
+UniRef50_I6SFZ0: TPR domain-containing protein|unclassified	0.0555540847
+UniRef50_U9THW1	0.0555507244
+UniRef50_U9THW1|unclassified	0.0555507244
+UniRef50_UPI0002ED505E: hypothetical protein	0.0555390386
+UniRef50_UPI0002ED505E: hypothetical protein|unclassified	0.0555390386
+UniRef50_UPI000367F730: hypothetical protein	0.0555333632
+UniRef50_UPI000367F730: hypothetical protein|unclassified	0.0555333632
+UniRef50_M5RYC2	0.0555326036
+UniRef50_M5RYC2|unclassified	0.0555326036
+UniRef50_Q0SIB7: Hemin import ATP-binding protein HmuV	0.0555320115
+UniRef50_Q0SIB7: Hemin import ATP-binding protein HmuV|unclassified	0.0555320115
+UniRef50_UPI00037BE049: hypothetical protein	0.0555317701
+UniRef50_UPI00037BE049: hypothetical protein|unclassified	0.0555317701
+UniRef50_UPI00035D9176: hypothetical protein	0.0555312649
+UniRef50_UPI00035D9176: hypothetical protein|unclassified	0.0555312649
+UniRef50_F9NYN9	0.0555261593
+UniRef50_F9NYN9|unclassified	0.0555261593
+UniRef50_S9UPS8	0.0555210302
+UniRef50_S9UPS8|unclassified	0.0555210302
+UniRef50_A0A011QMW7: Hydrogenase-2 operon protein HybE	0.0555132967
+UniRef50_A0A011QMW7: Hydrogenase-2 operon protein HybE|unclassified	0.0555132967
+UniRef50_UPI00037A96A7: hypothetical protein	0.0555096716
+UniRef50_UPI00037A96A7: hypothetical protein|unclassified	0.0555096716
+UniRef50_UPI00037CBFE9: RTX toxin	0.0555095036
+UniRef50_UPI00037CBFE9: RTX toxin|unclassified	0.0555095036
+UniRef50_W6LYM5	0.0555049496
+UniRef50_W6LYM5|unclassified	0.0555049496
+UniRef50_Q67MF5: Lipoyl synthase	0.0555047597
+UniRef50_Q67MF5: Lipoyl synthase|unclassified	0.0555047597
+UniRef50_S5DIY1: Alanine dehydrogenase	0.0555046028
+UniRef50_S5DIY1: Alanine dehydrogenase|unclassified	0.0555046028
+UniRef50_T1C6Y9: Membrane protein containing DUF979	0.0555005741
+UniRef50_T1C6Y9: Membrane protein containing DUF979|unclassified	0.0555005741
+UniRef50_Q5WHY0: Glucosamine-6-phosphate deaminase	0.0554971869
+UniRef50_Q5WHY0: Glucosamine-6-phosphate deaminase|unclassified	0.0554971869
+UniRef50_F8F7Y3	0.0554951447
+UniRef50_F8F7Y3|unclassified	0.0554951447
+UniRef50_UPI000372BC15: hypothetical protein	0.0554943306
+UniRef50_UPI000372BC15: hypothetical protein|unclassified	0.0554943306
+UniRef50_A0A011NCB6: Endonuclease III	0.0554873348
+UniRef50_A0A011NCB6: Endonuclease III|unclassified	0.0554873348
+UniRef50_Q4SUV9: Chromosome undetermined SCAF13839, whole genome shotgun sequence	0.0554873019
+UniRef50_Q4SUV9: Chromosome undetermined SCAF13839, whole genome shotgun sequence|unclassified	0.0554873019
+UniRef50_UPI000464BEA1: peptidoglycan transglycosylase	0.0554867094
+UniRef50_UPI000464BEA1: peptidoglycan transglycosylase|unclassified	0.0554867094
+UniRef50_UPI0003315352: PREDICTED: nuclear autoantigen Sp-100-like	0.0554855309
+UniRef50_UPI0003315352: PREDICTED: nuclear autoantigen Sp-100-like|unclassified	0.0554855309
+UniRef50_T2LAV9	0.0554797612
+UniRef50_T2LAV9|unclassified	0.0554797612
+UniRef50_UPI0002B479EC: PREDICTED: methylmalonate-semialdehyde dehydrogenase [acylating], mitochondrial-like	0.0554778231
+UniRef50_UPI0002B479EC: PREDICTED: methylmalonate-semialdehyde dehydrogenase [acylating], mitochondrial-like|unclassified	0.0554778231
+UniRef50_UPI000372F8A3: hypothetical protein	0.0554751191
+UniRef50_UPI000372F8A3: hypothetical protein|unclassified	0.0554751191
+UniRef50_UPI00031921EB: hypothetical protein	0.0554722690
+UniRef50_UPI00031921EB: hypothetical protein|unclassified	0.0554722690
+UniRef50_K1RE18	0.0554690017
+UniRef50_K1RE18|unclassified	0.0554690017
+UniRef50_G8RU01: SOUL heme-binding protein	0.0554680195
+UniRef50_G8RU01: SOUL heme-binding protein|unclassified	0.0554680195
+UniRef50_A0A058ZHC8	0.0554678644
+UniRef50_A0A058ZHC8|unclassified	0.0554678644
+UniRef50_UPI000479E916: allantoate deiminase	0.0554666825
+UniRef50_UPI000479E916: allantoate deiminase|unclassified	0.0554666825
+UniRef50_UPI00037278B7: hypothetical protein	0.0554616798
+UniRef50_UPI00037278B7: hypothetical protein|unclassified	0.0554616798
+UniRef50_A1SV95: Ribosomal RNA large subunit methyltransferase M	0.0554616179
+UniRef50_A1SV95: Ribosomal RNA large subunit methyltransferase M|unclassified	0.0554616179
+UniRef50_UPI0003664F11: hypothetical protein, partial	0.0554604033
+UniRef50_UPI0003664F11: hypothetical protein, partial|unclassified	0.0554604033
+UniRef50_X0UAD9: Marine sediment metagenome DNA, contig: S01H1_S05156 (Fragment)	0.0554546683
+UniRef50_X0UAD9: Marine sediment metagenome DNA, contig: S01H1_S05156 (Fragment)|unclassified	0.0554546683
+UniRef50_W0DLX0: Short-chain dehydrogenase	0.0554537063
+UniRef50_W0DLX0: Short-chain dehydrogenase|unclassified	0.0554537063
+UniRef50_S7LYY4	0.0554523752
+UniRef50_S7LYY4|unclassified	0.0554523752
+UniRef50_UPI00037A96EC: hypothetical protein	0.0554507463
+UniRef50_UPI00037A96EC: hypothetical protein|unclassified	0.0554507463
+UniRef50_UPI0002559925: DNA-binding transcriptional regulator GlcC	0.0554400827
+UniRef50_UPI0002559925: DNA-binding transcriptional regulator GlcC|unclassified	0.0554400827
+UniRef50_Q5NXX4	0.0554367690
+UniRef50_Q5NXX4|unclassified	0.0554367690
+UniRef50_UPI000255A713: type I secretion target repeat-containing protein	0.0554300892
+UniRef50_UPI000255A713: type I secretion target repeat-containing protein|unclassified	0.0554300892
+UniRef50_U1RDC8	0.0554291554
+UniRef50_U1RDC8|unclassified	0.0554291554
+UniRef50_UPI000299D2EC: hypothetical protein	0.0554282227
+UniRef50_UPI000299D2EC: hypothetical protein|unclassified	0.0554282227
+UniRef50_V4QCF1	0.0554233908
+UniRef50_V4QCF1|unclassified	0.0554233908
+UniRef50_W7BH37: YhgE/Pip domain-containing protein	0.0554196744
+UniRef50_W7BH37: YhgE/Pip domain-containing protein|unclassified	0.0554196744
+UniRef50_L8D0T0	0.0554146506
+UniRef50_L8D0T0|unclassified	0.0554146506
+UniRef50_Q1IQB4: UDP-3-O-acylglucosamine N-acyltransferase 1	0.0554060085
+UniRef50_Q1IQB4: UDP-3-O-acylglucosamine N-acyltransferase 1|unclassified	0.0554060085
+UniRef50_UPI000475AA74: hypothetical protein	0.0554060085
+UniRef50_UPI000475AA74: hypothetical protein|unclassified	0.0554060085
+UniRef50_V6DH39: Calcineurin-like phosphoesterase	0.0554059978
+UniRef50_V6DH39: Calcineurin-like phosphoesterase|unclassified	0.0554059978
+UniRef50_Q73UD7: Uracil phosphoribosyltransferase	0.0554054750
+UniRef50_Q73UD7: Uracil phosphoribosyltransferase|unclassified	0.0554054750
+UniRef50_I4F3M5: Putative Diguanylate cyclase	0.0554015839
+UniRef50_I4F3M5: Putative Diguanylate cyclase|unclassified	0.0554015839
+UniRef50_UPI000372878E: hypothetical protein	0.0553999396
+UniRef50_UPI000372878E: hypothetical protein|unclassified	0.0553999396
+UniRef50_UPI0003B549CA: exopolyphosphatase	0.0553976973
+UniRef50_UPI0003B549CA: exopolyphosphatase|unclassified	0.0553976973
+UniRef50_I3U2X1: IS4 transposase	0.0553927332
+UniRef50_I3U2X1: IS4 transposase|unclassified	0.0553927332
+UniRef50_UPI0003B62E63: ModE family transcriptional regulator	0.0553809305
+UniRef50_UPI0003B62E63: ModE family transcriptional regulator|unclassified	0.0553809305
+UniRef50_A7MW64	0.0553791500
+UniRef50_A7MW64|unclassified	0.0553791500
+UniRef50_X5Y9C9: ABC transporter substrate-binding protein	0.0553782381
+UniRef50_X5Y9C9: ABC transporter substrate-binding protein|unclassified	0.0553782381
+UniRef50_UPI00047EA08F: hypothetical protein	0.0553745109
+UniRef50_UPI00047EA08F: hypothetical protein|unclassified	0.0553745109
+UniRef50_UPI0003752149: hypothetical protein	0.0553695856
+UniRef50_UPI0003752149: hypothetical protein|unclassified	0.0553695856
+UniRef50_UPI0003635526: hypothetical protein	0.0553625856
+UniRef50_UPI0003635526: hypothetical protein|unclassified	0.0553625856
+UniRef50_A3K301	0.0553596452
+UniRef50_A3K301|unclassified	0.0553596452
+UniRef50_UPI0002F0ECC6: ferredoxin	0.0553586823
+UniRef50_UPI0002F0ECC6: ferredoxin|unclassified	0.0553586823
+UniRef50_C0QJG8: tRNA (cmo5U34)-methyltransferase	0.0553576858
+UniRef50_C0QJG8: tRNA (cmo5U34)-methyltransferase|unclassified	0.0553576858
+UniRef50_UPI00035F243C: hypothetical protein	0.0553559952
+UniRef50_UPI00035F243C: hypothetical protein|unclassified	0.0553559952
+UniRef50_W5X7V9: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B	0.0553461942
+UniRef50_W5X7V9: Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B|unclassified	0.0553461942
+UniRef50_UPI00047C243E: peptidylprolyl isomerase	0.0553434744
+UniRef50_UPI00047C243E: peptidylprolyl isomerase|unclassified	0.0553434744
+UniRef50_UPI0003690C68: hypothetical protein	0.0553370802
+UniRef50_UPI0003690C68: hypothetical protein|unclassified	0.0553370802
+UniRef50_B1KL99: Lytic transglycosylase catalytic	0.0553345341
+UniRef50_B1KL99: Lytic transglycosylase catalytic|unclassified	0.0553345341
+UniRef50_H4F2W0	0.0553323992
+UniRef50_H4F2W0|unclassified	0.0553323992
+UniRef50_UPI00036D8695: hypothetical protein	0.0553303552
+UniRef50_UPI00036D8695: hypothetical protein|unclassified	0.0553303552
+UniRef50_UPI0002883631: spermidine/putrescine ABC transporter ATP-binding protein	0.0553263494
+UniRef50_UPI0002883631: spermidine/putrescine ABC transporter ATP-binding protein|unclassified	0.0553263494
+UniRef50_F7WGZ1: Soj family protein	0.0553219257
+UniRef50_F7WGZ1: Soj family protein|unclassified	0.0553219257
+UniRef50_P46707: Probable acetyl-CoA acetyltransferase	0.0553199889
+UniRef50_P46707: Probable acetyl-CoA acetyltransferase|unclassified	0.0553199889
+UniRef50_Q4MH05	0.0553128221
+UniRef50_Q4MH05|unclassified	0.0553128221
+UniRef50_UPI0003B31D8F: serine phosphatase RsbU, regulator of sigma subunit	0.0553086343
+UniRef50_UPI0003B31D8F: serine phosphatase RsbU, regulator of sigma subunit|unclassified	0.0553086343
+UniRef50_UPI00047842AC: hypothetical protein	0.0553075866
+UniRef50_UPI00047842AC: hypothetical protein|unclassified	0.0553075866
+UniRef50_A4FQ90: Xaa-Pro dipeptidase	0.0553067636
+UniRef50_A4FQ90: Xaa-Pro dipeptidase|unclassified	0.0553067636
+UniRef50_UPI000472A52C: sarcosine oxidase subunit beta	0.0552972849
+UniRef50_UPI000472A52C: sarcosine oxidase subunit beta|unclassified	0.0552972849
+UniRef50_UPI0002627959: RNA polymerase sigma 70	0.0552920236
+UniRef50_UPI0002627959: RNA polymerase sigma 70|unclassified	0.0552920236
+UniRef50_B9JEG6	0.0552897863
+UniRef50_B9JEG6|unclassified	0.0552897863
+UniRef50_UPI000427FE74: hypothetical protein	0.0552835208
+UniRef50_UPI000427FE74: hypothetical protein|unclassified	0.0552835208
+UniRef50_X0WYH5: Marine sediment metagenome DNA, contig: S01H1_S25668 (Fragment)	0.0552815122
+UniRef50_X0WYH5: Marine sediment metagenome DNA, contig: S01H1_S25668 (Fragment)|unclassified	0.0552815122
+UniRef50_UPI00047870AD: GTP pyrophosphokinase	0.0552797729
+UniRef50_UPI00047870AD: GTP pyrophosphokinase|unclassified	0.0552797729
+UniRef50_UPI00046E240D: PREDICTED: GTP-binding protein OBGC, chloroplastic-like	0.0552789366
+UniRef50_UPI00046E240D: PREDICTED: GTP-binding protein OBGC, chloroplastic-like|unclassified	0.0552789366
+UniRef50_UPI00046BB7F8: PREDICTED: proline-rich protein HaeIII subfamily 1-like	0.0552787950
+UniRef50_UPI00046BB7F8: PREDICTED: proline-rich protein HaeIII subfamily 1-like|unclassified	0.0552787950
+UniRef50_S4R6G6	0.0552733413
+UniRef50_S4R6G6|unclassified	0.0552733413
+UniRef50_C0B1V9	0.0552698428
+UniRef50_C0B1V9|unclassified	0.0552698428
+UniRef50_UPI00046EB886: MFS transporter	0.0552694731
+UniRef50_UPI00046EB886: MFS transporter|unclassified	0.0552694731
+UniRef50_UPI0003C19E1A: PREDICTED: xanthine dehydrogenase 2-like	0.0552683639
+UniRef50_UPI0003C19E1A: PREDICTED: xanthine dehydrogenase 2-like|unclassified	0.0552683639
+UniRef50_UPI000287D107: glycosyltransferase, partial	0.0552669508
+UniRef50_UPI000287D107: glycosyltransferase, partial|unclassified	0.0552669508
+UniRef50_U6I0U9: Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial	0.0552661599
+UniRef50_U6I0U9: Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial|unclassified	0.0552661599
+UniRef50_UPI000462FA59: glycosyl transferase family 2, partial	0.0552603245
+UniRef50_UPI000462FA59: glycosyl transferase family 2, partial|unclassified	0.0552603245
+UniRef50_Q9WXG7: Cis-3,4-dihydrophenanthrene-3,4-diol dehydrogenase	0.0552597302
+UniRef50_Q9WXG7: Cis-3,4-dihydrophenanthrene-3,4-diol dehydrogenase|unclassified	0.0552597302
+UniRef50_A0A023BV68	0.0552575779
+UniRef50_A0A023BV68|unclassified	0.0552575779
+UniRef50_UPI000474D5BE: ABC transporter substrate-binding protein	0.0552575377
+UniRef50_UPI000474D5BE: ABC transporter substrate-binding protein|unclassified	0.0552575377
+UniRef50_A0R5C5: UDP-glucose 4-epimerase	0.0552446061
+UniRef50_A0R5C5: UDP-glucose 4-epimerase|unclassified	0.0552446061
+UniRef50_F2DWZ9: Predicted protein	0.0552444496
+UniRef50_F2DWZ9: Predicted protein|unclassified	0.0552444496
+UniRef50_UPI0003B3BF74: diguanylate cyclase	0.0552429393
+UniRef50_UPI0003B3BF74: diguanylate cyclase|unclassified	0.0552429393
+UniRef50_J9M4I5	0.0552428980
+UniRef50_J9M4I5|unclassified	0.0552428980
+UniRef50_Q8EUY4: Orotate phosphoribosyltransferase	0.0552428658
+UniRef50_Q8EUY4: Orotate phosphoribosyltransferase|unclassified	0.0552428658
+UniRef50_UPI0003B47307: UDP-N-acetylmuramoylpentapeptide-lysine N(6)-alanyltransferase MurM	0.0552426713
+UniRef50_UPI0003B47307: UDP-N-acetylmuramoylpentapeptide-lysine N(6)-alanyltransferase MurM|unclassified	0.0552426713
+UniRef50_UPI0004701B61: hypothetical protein	0.0552426492
+UniRef50_UPI0004701B61: hypothetical protein|unclassified	0.0552426492
+UniRef50_UPI000361E6EB: hypothetical protein	0.0552425180
+UniRef50_UPI000361E6EB: hypothetical protein|unclassified	0.0552425180
+UniRef50_K8CGD7	0.0552410938
+UniRef50_K8CGD7|unclassified	0.0552410938
+UniRef50_UPI00036F1962: hypothetical protein	0.0552402954
+UniRef50_UPI00036F1962: hypothetical protein|unclassified	0.0552402954
+UniRef50_S3K1V6	0.0552382565
+UniRef50_S3K1V6|unclassified	0.0552382565
+UniRef50_UPI00040DD0B8: hypothetical protein	0.0552331699
+UniRef50_UPI00040DD0B8: hypothetical protein|unclassified	0.0552331699
+UniRef50_B3QY47: NADH-quinone oxidoreductase subunit B 2	0.0552282042
+UniRef50_B3QY47: NADH-quinone oxidoreductase subunit B 2|unclassified	0.0552282042
+UniRef50_B6IW77: Transcriptional regulator, PadR family protein	0.0552209950
+UniRef50_B6IW77: Transcriptional regulator, PadR family protein|unclassified	0.0552209950
+UniRef50_D5C619	0.0552199962
+UniRef50_D5C619|unclassified	0.0552199962
+UniRef50_W1Q3R5	0.0552143301
+UniRef50_W1Q3R5|unclassified	0.0552143301
+UniRef50_Q72KS4: Lon protease 1	0.0552121770
+UniRef50_Q72KS4: Lon protease 1|unclassified	0.0552121770
+UniRef50_C6B2W5	0.0552067038
+UniRef50_C6B2W5|unclassified	0.0552067038
+UniRef50_UPI000237926B: polar amino acid ABC transporter, inner membrane subunit	0.0551993553
+UniRef50_UPI000237926B: polar amino acid ABC transporter, inner membrane subunit|unclassified	0.0551993553
+UniRef50_UPI00035E79DC: transcriptional regulator	0.0551991360
+UniRef50_UPI00035E79DC: transcriptional regulator|unclassified	0.0551991360
+UniRef50_UPI0003B42736: GntR family transcriptional regulator	0.0551989475
+UniRef50_UPI0003B42736: GntR family transcriptional regulator|unclassified	0.0551989475
+UniRef50_Q67N40: Octanoyltransferase LipM	0.0551985745
+UniRef50_Q67N40: Octanoyltransferase LipM|unclassified	0.0551985745
+UniRef50_UPI00047E9243: NAD(P) transhydrogenase subunit alpha	0.0551967916
+UniRef50_UPI00047E9243: NAD(P) transhydrogenase subunit alpha|unclassified	0.0551967916
+UniRef50_E3PUD6	0.0551935866
+UniRef50_E3PUD6|unclassified	0.0551935866
+UniRef50_Q21MT2: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical	0.0551919207
+UniRef50_Q21MT2: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical|unclassified	0.0551919207
+UniRef50_UPI0004779551: hypothetical protein	0.0551913475
+UniRef50_UPI0004779551: hypothetical protein|unclassified	0.0551913475
+UniRef50_C6C0W1: Flagellar hook capping protein	0.0551907442
+UniRef50_C6C0W1: Flagellar hook capping protein|unclassified	0.0551907442
+UniRef50_UPI000379A0A7: hypothetical protein	0.0551902631
+UniRef50_UPI000379A0A7: hypothetical protein|unclassified	0.0551902631
+UniRef50_UPI000367E876: hypothetical protein, partial	0.0551869499
+UniRef50_UPI000367E876: hypothetical protein, partial|unclassified	0.0551869499
+UniRef50_UPI000378473D: hypothetical protein	0.0551859969
+UniRef50_UPI000378473D: hypothetical protein|unclassified	0.0551859969
+UniRef50_J3DES0: Bacteriophage protein gp37	0.0551796697
+UniRef50_J3DES0: Bacteriophage protein gp37|unclassified	0.0551796697
+UniRef50_UPI000466E25D: hypothetical protein	0.0551761894
+UniRef50_UPI000466E25D: hypothetical protein|unclassified	0.0551761894
+UniRef50_F5XZ13	0.0551711217
+UniRef50_F5XZ13|unclassified	0.0551711217
+UniRef50_Q8FU18: Glutamyl-Q tRNA(Asp) synthetase	0.0551597322
+UniRef50_Q8FU18: Glutamyl-Q tRNA(Asp) synthetase|unclassified	0.0551597322
+UniRef50_UPI00045EC544: hypothetical protein	0.0551595067
+UniRef50_UPI00045EC544: hypothetical protein|unclassified	0.0551595067
+UniRef50_UPI000367CEB4: hypothetical protein	0.0551591936
+UniRef50_UPI000367CEB4: hypothetical protein|unclassified	0.0551591936
+UniRef50_UPI00035FF6D0: hypothetical protein	0.0551479955
+UniRef50_UPI00035FF6D0: hypothetical protein|unclassified	0.0551479955
+UniRef50_UPI000370F897: hypothetical protein, partial	0.0551463537
+UniRef50_UPI000370F897: hypothetical protein, partial|unclassified	0.0551463537
+UniRef50_A7MIH8	0.0551447447
+UniRef50_A7MIH8|unclassified	0.0551447447
+UniRef50_A0A023D7J0: Transcriptional regulator NmrA/oxidoreductase	0.0551439543
+UniRef50_A0A023D7J0: Transcriptional regulator NmrA/oxidoreductase|unclassified	0.0551439543
+UniRef50_T3HMK0	0.0551435301
+UniRef50_T3HMK0|unclassified	0.0551435301
+UniRef50_C3A1Z8: LPXTG-motif cell wall anchor domain protein	0.0551421897
+UniRef50_C3A1Z8: LPXTG-motif cell wall anchor domain protein|unclassified	0.0551421897
+UniRef50_X1Y0L5	0.0551369273
+UniRef50_X1Y0L5|unclassified	0.0551369273
+UniRef50_UPI00046F2BB5: chromosomal replication initiation protein, partial	0.0551325594
+UniRef50_UPI00046F2BB5: chromosomal replication initiation protein, partial|unclassified	0.0551325594
+UniRef50_B5FD80: Type VI secretion protein, family	0.0551276326
+UniRef50_B5FD80: Type VI secretion protein, family|unclassified	0.0551276326
+UniRef50_B6EJ69: Putative type VI secretion protein VasE	0.0551276326
+UniRef50_B6EJ69: Putative type VI secretion protein VasE|unclassified	0.0551276326
+UniRef50_S2HWC2: PF11254 family protein	0.0551269161
+UniRef50_S2HWC2: PF11254 family protein|unclassified	0.0551269161
+UniRef50_A0A028Z5E5: Putative periplasmic lipoprotein	0.0551212140
+UniRef50_A0A028Z5E5: Putative periplasmic lipoprotein|unclassified	0.0551212140
+UniRef50_D6LTG1	0.0551159504
+UniRef50_D6LTG1|unclassified	0.0551159504
+UniRef50_H1HJ09: MJ0936 family phosphodiesterase	0.0551127797
+UniRef50_H1HJ09: MJ0936 family phosphodiesterase|unclassified	0.0551127797
+UniRef50_C2Y945	0.0551120136
+UniRef50_C2Y945|unclassified	0.0551120136
+UniRef50_UPI00041EE2DD: glucosamine-6-phosphate deaminase	0.0551074239
+UniRef50_UPI00041EE2DD: glucosamine-6-phosphate deaminase|unclassified	0.0551074239
+UniRef50_U2YI39	0.0551012461
+UniRef50_U2YI39|unclassified	0.0551012461
+UniRef50_Q4FU93: UPF0246 protein Psyc_0554	0.0551000692
+UniRef50_Q4FU93: UPF0246 protein Psyc_0554|unclassified	0.0551000692
+UniRef50_UPI00037C0B53: 50S ribosomal protein L3	0.0550940973
+UniRef50_UPI00037C0B53: 50S ribosomal protein L3|unclassified	0.0550940973
+UniRef50_UPI000317E4DF: hypothetical protein	0.0550855493
+UniRef50_UPI000317E4DF: hypothetical protein|unclassified	0.0550855493
+UniRef50_P15327: Bisphosphoglycerate mutase	0.0550833337
+UniRef50_P15327: Bisphosphoglycerate mutase|unclassified	0.0550833337
+UniRef50_UPI0003F6C60F: hypothetical protein	0.0550816260
+UniRef50_UPI0003F6C60F: hypothetical protein|unclassified	0.0550816260
+UniRef50_J7PJG4: Leucine-rich repeat domain protein (LPXTG motif)	0.0550815920
+UniRef50_J7PJG4: Leucine-rich repeat domain protein (LPXTG motif)|unclassified	0.0550815920
+UniRef50_UPI0003C1ADBB	0.0550810648
+UniRef50_UPI0003C1ADBB|unclassified	0.0550810648
+UniRef50_UPI000300A0F2: hypothetical protein	0.0550781910
+UniRef50_UPI000300A0F2: hypothetical protein|unclassified	0.0550781910
+UniRef50_UPI0004670F23: hypothetical protein	0.0550734528
+UniRef50_UPI0004670F23: hypothetical protein|unclassified	0.0550734528
+UniRef50_Q1GJZ9	0.0550727001
+UniRef50_Q1GJZ9|unclassified	0.0550727001
+UniRef50_P9WN66: UDP-glucose 4-epimerase	0.0550628804
+UniRef50_P9WN66: UDP-glucose 4-epimerase|unclassified	0.0550628804
+UniRef50_UPI00047B5640: hypothetical protein	0.0550628804
+UniRef50_UPI00047B5640: hypothetical protein|unclassified	0.0550628804
+UniRef50_X1MHY4: Marine sediment metagenome DNA, contig: S06H3_L01554 (Fragment)	0.0550617834
+UniRef50_X1MHY4: Marine sediment metagenome DNA, contig: S06H3_L01554 (Fragment)|unclassified	0.0550617834
+UniRef50_Q2RH52: Octanoyltransferase LipM	0.0550593175
+UniRef50_Q2RH52: Octanoyltransferase LipM|unclassified	0.0550593175
+UniRef50_Q7VRR0: Ribonuclease 3	0.0550545308
+UniRef50_Q7VRR0: Ribonuclease 3|unclassified	0.0550545308
+UniRef50_Q18FG3: CTP synthase	0.0550525351
+UniRef50_Q18FG3: CTP synthase|unclassified	0.0550525351
+UniRef50_UPI0003C13FA1	0.0550453648
+UniRef50_UPI0003C13FA1|unclassified	0.0550453648
+UniRef50_UPI00046EBCB5: hypothetical protein	0.0550371425
+UniRef50_UPI00046EBCB5: hypothetical protein|unclassified	0.0550371425
+UniRef50_Q9FNK4: Ornithine aminotransferase, mitochondrial	0.0550297046
+UniRef50_Q9FNK4: Ornithine aminotransferase, mitochondrial|unclassified	0.0550297046
+UniRef50_UPI00036A808D: hypothetical protein	0.0550277739
+UniRef50_UPI00036A808D: hypothetical protein|unclassified	0.0550277739
+UniRef50_A6W542: Periplasmic binding protein	0.0550268571
+UniRef50_A6W542: Periplasmic binding protein|unclassified	0.0550268571
+UniRef50_K2JM89: Phage terminase-like protein	0.0550209006
+UniRef50_K2JM89: Phage terminase-like protein|unclassified	0.0550209006
+UniRef50_UPI0004765CE8: protease	0.0550111119
+UniRef50_UPI0004765CE8: protease|unclassified	0.0550111119
+UniRef50_UPI00036028EF: hypothetical protein	0.0550083144
+UniRef50_UPI00036028EF: hypothetical protein|unclassified	0.0550083144
+UniRef50_Q743U7	0.0550073530
+UniRef50_Q743U7|unclassified	0.0550073530
+UniRef50_A0KF50: Modulator of glutathione-dependent potassium efflux system	0.0550055266
+UniRef50_A0KF50: Modulator of glutathione-dependent potassium efflux system|unclassified	0.0550055266
+UniRef50_UPI0003C12D08	0.0550043770
+UniRef50_UPI0003C12D08|unclassified	0.0550043770
+UniRef50_K1HDH4	0.0549992271
+UniRef50_K1HDH4|unclassified	0.0549992271
+UniRef50_Q8RDQ0: Phospho-N-acetylmuramoyl-pentapeptide-transferase	0.0549944161
+UniRef50_Q8RDQ0: Phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.0549944161
+UniRef50_Q6ATH3	0.0549939052
+UniRef50_Q6ATH3|unclassified	0.0549939052
+UniRef50_UPI000464113C: multidrug ABC transporter	0.0549918951
+UniRef50_UPI000464113C: multidrug ABC transporter|unclassified	0.0549918951
+UniRef50_U5L984	0.0549907258
+UniRef50_U5L984|unclassified	0.0549907258
+UniRef50_P39067: Acetoin utilization protein AcuC	0.0549902999
+UniRef50_P39067: Acetoin utilization protein AcuC|unclassified	0.0549902999
+UniRef50_UPI00046535F7: hypothetical protein	0.0549891474
+UniRef50_UPI00046535F7: hypothetical protein|unclassified	0.0549891474
+UniRef50_G7JQA2: ATP synthase subunit a chloroplastic	0.0549883876
+UniRef50_G7JQA2: ATP synthase subunit a chloroplastic|unclassified	0.0549883876
+UniRef50_W3AGW6	0.0549880927
+UniRef50_W3AGW6|unclassified	0.0549880927
+UniRef50_UPI00037681FA: hypothetical protein	0.0549804833
+UniRef50_UPI00037681FA: hypothetical protein|unclassified	0.0549804833
+UniRef50_Q01VN6: Uronate isomerase	0.0549796681
+UniRef50_Q01VN6: Uronate isomerase|unclassified	0.0549796681
+UniRef50_UPI00020D9ACC: glyoxalase	0.0549788037
+UniRef50_UPI00020D9ACC: glyoxalase|unclassified	0.0549788037
+UniRef50_UPI0004708F04: hypothetical protein	0.0549754563
+UniRef50_UPI0004708F04: hypothetical protein|unclassified	0.0549754563
+UniRef50_UPI00046F08F9: hypothetical protein	0.0549703290
+UniRef50_UPI00046F08F9: hypothetical protein|unclassified	0.0549703290
+UniRef50_R4YLI2	0.0549638005
+UniRef50_R4YLI2|unclassified	0.0549638005
+UniRef50_UPI000420F383: phosphate starvation protein PhoH	0.0549593451
+UniRef50_UPI000420F383: phosphate starvation protein PhoH|unclassified	0.0549593451
+UniRef50_UPI000237DA3D: hypothetical protein	0.0549554946
+UniRef50_UPI000237DA3D: hypothetical protein|unclassified	0.0549554946
+UniRef50_UPI0003B47D61: tRNA delta(2)-isopentenylpyrophosphate transferase	0.0549552655
+UniRef50_UPI0003B47D61: tRNA delta(2)-isopentenylpyrophosphate transferase|unclassified	0.0549552655
+UniRef50_UPI0004677BC5: hypothetical protein	0.0549472572
+UniRef50_UPI0004677BC5: hypothetical protein|unclassified	0.0549472572
+UniRef50_UPI00046ACDE8: secretion protein HylD	0.0549401511
+UniRef50_UPI00046ACDE8: secretion protein HylD|unclassified	0.0549401511
+UniRef50_UPI000255633B: peptidase M20C, Xaa-His dipeptidase	0.0549397309
+UniRef50_UPI000255633B: peptidase M20C, Xaa-His dipeptidase|unclassified	0.0549397309
+UniRef50_D4W6Z6: Membrane family protein	0.0549247290
+UniRef50_D4W6Z6: Membrane family protein|unclassified	0.0549247290
+UniRef50_UPI00046F72B6: hypothetical protein	0.0549225276
+UniRef50_UPI00046F72B6: hypothetical protein|unclassified	0.0549225276
+UniRef50_UPI00037A6FAA: hypothetical protein	0.0549220271
+UniRef50_UPI00037A6FAA: hypothetical protein|unclassified	0.0549220271
+UniRef50_I8A8Y2: Voltage-gated shaker-like K+ channel, subunit beta/KCNAB	0.0549205683
+UniRef50_I8A8Y2: Voltage-gated shaker-like K+ channel, subunit beta/KCNAB|unclassified	0.0549205683
+UniRef50_Q3AC80: NADH-quinone oxidoreductase subunit D	0.0549133940
+UniRef50_Q3AC80: NADH-quinone oxidoreductase subunit D|unclassified	0.0549133940
+UniRef50_UPI00047A3DBD: threonine synthase	0.0549133779
+UniRef50_UPI00047A3DBD: threonine synthase|unclassified	0.0549133779
+UniRef50_UPI0002657863: PREDICTED: uvrABC system protein A-like, partial	0.0549114567
+UniRef50_UPI0002657863: PREDICTED: uvrABC system protein A-like, partial|unclassified	0.0549114567
+UniRef50_UPI000237D848: allantoate amidohydrolase	0.0549084022
+UniRef50_UPI000237D848: allantoate amidohydrolase|unclassified	0.0549084022
+UniRef50_UPI00023788F8: ABC transporter-like protein	0.0549075859
+UniRef50_UPI00023788F8: ABC transporter-like protein|unclassified	0.0549075859
+UniRef50_UPI0003723EB3: hypothetical protein	0.0549055686
+UniRef50_UPI0003723EB3: hypothetical protein|unclassified	0.0549055686
+UniRef50_C7D6P8	0.0549034373
+UniRef50_C7D6P8|unclassified	0.0549034373
+UniRef50_A7NCA0: tRNA pseudouridine synthase A	0.0549005192
+UniRef50_A7NCA0: tRNA pseudouridine synthase A|unclassified	0.0549005192
+UniRef50_UPI000471677B: hypothetical protein, partial	0.0548980412
+UniRef50_UPI000471677B: hypothetical protein, partial|unclassified	0.0548980412
+UniRef50_D3SCY1: Tfp pilus assembly protein PilX	0.0548969071
+UniRef50_D3SCY1: Tfp pilus assembly protein PilX|unclassified	0.0548969071
+UniRef50_U3JSJ8	0.0548932269
+UniRef50_U3JSJ8|unclassified	0.0548932269
+UniRef50_UPI00041032AD: hypothetical protein	0.0548918206
+UniRef50_UPI00041032AD: hypothetical protein|unclassified	0.0548918206
+UniRef50_UPI00041E0103: hypothetical protein	0.0548884362
+UniRef50_UPI00041E0103: hypothetical protein|unclassified	0.0548884362
+UniRef50_UPI00046597D3: folylpolyglutamate synthase	0.0548874974
+UniRef50_UPI00046597D3: folylpolyglutamate synthase|unclassified	0.0548874974
+UniRef50_W5XCC8: Translation initiation factor IF-2	0.0548849711
+UniRef50_W5XCC8: Translation initiation factor IF-2|unclassified	0.0548849711
+UniRef50_UPI00037E7A93: hypothetical protein	0.0548824153
+UniRef50_UPI00037E7A93: hypothetical protein|unclassified	0.0548824153
+UniRef50_Q9RXT4: Phosphoribosylformylglycinamidine synthase 2	0.0548769479
+UniRef50_Q9RXT4: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.0548769479
+UniRef50_Q7VIA9: Ribonuclease 3	0.0548756949
+UniRef50_Q7VIA9: Ribonuclease 3|unclassified	0.0548756949
+UniRef50_Q42588: Serine acetyltransferase 1, chloroplastic	0.0548711912
+UniRef50_Q42588: Serine acetyltransferase 1, chloroplastic|unclassified	0.0548711912
+UniRef50_A0A024DES8: Conjugal transfer protein	0.0548628894
+UniRef50_A0A024DES8: Conjugal transfer protein|unclassified	0.0548628894
+UniRef50_UPI00036C6A8F: hypothetical protein	0.0548620410
+UniRef50_UPI00036C6A8F: hypothetical protein|unclassified	0.0548620410
+UniRef50_B7IV23	0.0548556802
+UniRef50_B7IV23|unclassified	0.0548556802
+UniRef50_A3QB39: Glucosamine-6-phosphate deaminase	0.0548528334
+UniRef50_A3QB39: Glucosamine-6-phosphate deaminase|unclassified	0.0548528334
+UniRef50_Q1MIN0: Phosphate import ATP-binding protein PstB 2	0.0548524242
+UniRef50_Q1MIN0: Phosphate import ATP-binding protein PstB 2|unclassified	0.0548524242
+UniRef50_Q9FN42: ATP-dependent Clp protease proteolytic subunit 2, mitochondrial	0.0548496362
+UniRef50_Q9FN42: ATP-dependent Clp protease proteolytic subunit 2, mitochondrial|unclassified	0.0548496362
+UniRef50_UPI00045E73B9: ethanolamine utilization protein EutJ	0.0548459162
+UniRef50_UPI00045E73B9: ethanolamine utilization protein EutJ|unclassified	0.0548459162
+UniRef50_Q7MUX4: Orotate phosphoribosyltransferase	0.0548453356
+UniRef50_Q7MUX4: Orotate phosphoribosyltransferase|unclassified	0.0548453356
+UniRef50_Q6AJ47: Ribosomal RNA small subunit methyltransferase H	0.0548443382
+UniRef50_Q6AJ47: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0548443382
+UniRef50_X0PQX4	0.0548443359
+UniRef50_X0PQX4|unclassified	0.0548443359
+UniRef50_F6II66: Segregation and condensation protein A	0.0548442725
+UniRef50_F6II66: Segregation and condensation protein A|unclassified	0.0548442725
+UniRef50_A9B4Z7: NADH-quinone oxidoreductase subunit D 1	0.0548429333
+UniRef50_A9B4Z7: NADH-quinone oxidoreductase subunit D 1|unclassified	0.0548429333
+UniRef50_G7ZI45: Transposase of ISAli17, IS5 family, subgroup IS903	0.0548393124
+UniRef50_G7ZI45: Transposase of ISAli17, IS5 family, subgroup IS903|unclassified	0.0548393124
+UniRef50_UPI00035DEB85: hypothetical protein	0.0548379159
+UniRef50_UPI00035DEB85: hypothetical protein|unclassified	0.0548379159
+UniRef50_A9B5M8	0.0548338621
+UniRef50_A9B5M8|unclassified	0.0548338621
+UniRef50_UPI000368E22A: hypothetical protein	0.0548337913
+UniRef50_UPI000368E22A: hypothetical protein|unclassified	0.0548337913
+UniRef50_UPI00031A1A33: hypothetical protein	0.0548264863
+UniRef50_UPI00031A1A33: hypothetical protein|unclassified	0.0548264863
+UniRef50_D3G250: Baseplate J family protein	0.0548211270
+UniRef50_D3G250: Baseplate J family protein|unclassified	0.0548211270
+UniRef50_H2WNV3	0.0548190312
+UniRef50_H2WNV3|unclassified	0.0548190312
+UniRef50_Q4FNA6: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha	0.0548121192
+UniRef50_Q4FNA6: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha|unclassified	0.0548121192
+UniRef50_A9A0U3: tRNA dimethylallyltransferase	0.0548080358
+UniRef50_A9A0U3: tRNA dimethylallyltransferase|unclassified	0.0548080358
+UniRef50_UPI00028A27A4: LysR family transcriptional regulator	0.0548076767
+UniRef50_UPI00028A27A4: LysR family transcriptional regulator|unclassified	0.0548076767
+UniRef50_UPI00046EEB33: NADH dehydrogenase	0.0548070849
+UniRef50_UPI00046EEB33: NADH dehydrogenase|unclassified	0.0548070849
+UniRef50_V7ZAD9	0.0548030365
+UniRef50_V7ZAD9|unclassified	0.0548030365
+UniRef50_R5M301: YabB	0.0548023318
+UniRef50_R5M301: YabB|unclassified	0.0548023318
+UniRef50_Q045P1: Endonuclease MutS2	0.0547996893
+UniRef50_Q045P1: Endonuclease MutS2|unclassified	0.0547996893
+UniRef50_S4XSH0	0.0547988408
+UniRef50_S4XSH0|unclassified	0.0547988408
+UniRef50_UPI000315A4A0: hypothetical protein	0.0547970565
+UniRef50_UPI000315A4A0: hypothetical protein|unclassified	0.0547970565
+UniRef50_UPI0004049146: hypothetical protein	0.0547954137
+UniRef50_UPI0004049146: hypothetical protein|unclassified	0.0547954137
+UniRef50_B3CLQ1	0.0547915926
+UniRef50_B3CLQ1|unclassified	0.0547915926
+UniRef50_K0TKN7	0.0547905403
+UniRef50_K0TKN7|unclassified	0.0547905403
+UniRef50_UPI000470C809: hypothetical protein	0.0547879595
+UniRef50_UPI000470C809: hypothetical protein|unclassified	0.0547879595
+UniRef50_UPI00046EC7BE: hypothetical protein	0.0547828899
+UniRef50_UPI00046EC7BE: hypothetical protein|unclassified	0.0547828899
+UniRef50_UPI0003C1A776: PREDICTED: UDP-glucose 6-dehydrogenase-like	0.0547826354
+UniRef50_UPI0003C1A776: PREDICTED: UDP-glucose 6-dehydrogenase-like|unclassified	0.0547826354
+UniRef50_U4TJN9	0.0547816592
+UniRef50_U4TJN9|unclassified	0.0547816592
+UniRef50_E3BFU1: 2-octaprenyl-6-methoxyphenyl hydroxylase	0.0547778180
+UniRef50_E3BFU1: 2-octaprenyl-6-methoxyphenyl hydroxylase|unclassified	0.0547778180
+UniRef50_UPI00046A4AB7: catalase	0.0547742107
+UniRef50_UPI00046A4AB7: catalase|unclassified	0.0547742107
+UniRef50_A3KAR8	0.0547741891
+UniRef50_A3KAR8|unclassified	0.0547741891
+UniRef50_UPI00036419A0: hypothetical protein	0.0547725648
+UniRef50_UPI00036419A0: hypothetical protein|unclassified	0.0547725648
+UniRef50_UPI00034FEA5D: PREDICTED: NACHT, LRR and PYD domains-containing protein 1-like	0.0547708501
+UniRef50_UPI00034FEA5D: PREDICTED: NACHT, LRR and PYD domains-containing protein 1-like|unclassified	0.0547708501
+UniRef50_B9JNT0: Insertion sequence transposase protein	0.0547697633
+UniRef50_B9JNT0: Insertion sequence transposase protein|unclassified	0.0547697633
+UniRef50_UPI000374FFEE: hypothetical protein	0.0547606195
+UniRef50_UPI000374FFEE: hypothetical protein|unclassified	0.0547606195
+UniRef50_Q0TSS9: Alanine racemase	0.0547575451
+UniRef50_Q0TSS9: Alanine racemase|unclassified	0.0547575451
+UniRef50_A3JQS9	0.0547574057
+UniRef50_A3JQS9|unclassified	0.0547574057
+UniRef50_UPI000262BE31: Fe(3+)-pyochelin receptor 3	0.0547516158
+UniRef50_UPI000262BE31: Fe(3+)-pyochelin receptor 3|unclassified	0.0547516158
+UniRef50_UPI0004634719: hypothetical protein	0.0547492112
+UniRef50_UPI0004634719: hypothetical protein|unclassified	0.0547492112
+UniRef50_L8Y1W5: Putative phospholipid ABC transporter permease protein MlaE	0.0547487143
+UniRef50_L8Y1W5: Putative phospholipid ABC transporter permease protein MlaE|unclassified	0.0547487143
+UniRef50_G2IZD0: Integral membrane protein	0.0547481804
+UniRef50_G2IZD0: Integral membrane protein|unclassified	0.0547481804
+UniRef50_UPI0003B77751: ABC transporter permease	0.0547363954
+UniRef50_UPI0003B77751: ABC transporter permease|unclassified	0.0547363954
+UniRef50_Q2W495	0.0547287713
+UniRef50_Q2W495|unclassified	0.0547287713
+UniRef50_UPI0001CC0058: putative ISRSO12 transposase (fragment)	0.0547272931
+UniRef50_UPI0001CC0058: putative ISRSO12 transposase (fragment)|unclassified	0.0547272931
+UniRef50_UPI000377250B: hypothetical protein	0.0547272091
+UniRef50_UPI000377250B: hypothetical protein|unclassified	0.0547272091
+UniRef50_UPI000466A942: hypothetical protein	0.0547251167
+UniRef50_UPI000466A942: hypothetical protein|unclassified	0.0547251167
+UniRef50_F3ZKD4: Putative amino acid decarboxylase	0.0547207604
+UniRef50_F3ZKD4: Putative amino acid decarboxylase|unclassified	0.0547207604
+UniRef50_Q5LZU3: Phosphate import ATP-binding protein PstB 1	0.0547136202
+UniRef50_Q5LZU3: Phosphate import ATP-binding protein PstB 1|unclassified	0.0547136202
+UniRef50_UPI0003B31F99: crotonase	0.0547014508
+UniRef50_UPI0003B31F99: crotonase|unclassified	0.0547014508
+UniRef50_UPI000310932D: hypothetical protein	0.0547008571
+UniRef50_UPI000310932D: hypothetical protein|unclassified	0.0547008571
+UniRef50_P54688: Branched-chain-amino-acid aminotransferase, cytosolic	0.0546964745
+UniRef50_P54688: Branched-chain-amino-acid aminotransferase, cytosolic|unclassified	0.0546964745
+UniRef50_UPI000368CB7A: hypothetical protein	0.0546885396
+UniRef50_UPI000368CB7A: hypothetical protein|unclassified	0.0546885396
+UniRef50_A0A038G5K1	0.0546840906
+UniRef50_A0A038G5K1|unclassified	0.0546840906
+UniRef50_X2H9W8: Phosphoglycerate mutase family	0.0546838953
+UniRef50_X2H9W8: Phosphoglycerate mutase family|unclassified	0.0546838953
+UniRef50_UPI00046850EC: hypothetical protein	0.0546830327
+UniRef50_UPI00046850EC: hypothetical protein|unclassified	0.0546830327
+UniRef50_UPI000364385A: hypothetical protein	0.0546830228
+UniRef50_UPI000364385A: hypothetical protein|unclassified	0.0546830228
+UniRef50_UPI0003B52998: hypothetical protein	0.0546829700
+UniRef50_UPI0003B52998: hypothetical protein|unclassified	0.0546829700
+UniRef50_UPI000289297A: binding-protein-dependent transport system inner membrane protein	0.0546792233
+UniRef50_UPI000289297A: binding-protein-dependent transport system inner membrane protein|unclassified	0.0546792233
+UniRef50_UPI0003B603B0: LysR family transcriptional regulator	0.0546779978
+UniRef50_UPI0003B603B0: LysR family transcriptional regulator|unclassified	0.0546779978
+UniRef50_H6SR06: Protein containing DUF526	0.0546728306
+UniRef50_H6SR06: Protein containing DUF526|unclassified	0.0546728306
+UniRef50_UPI00046E84D4: ketose-bisphosphate aldolase	0.0546716288
+UniRef50_UPI00046E84D4: ketose-bisphosphate aldolase|unclassified	0.0546716288
+UniRef50_UPI000255F3D8: hypothetical protein	0.0546692557
+UniRef50_UPI000255F3D8: hypothetical protein|unclassified	0.0546692557
+UniRef50_UPI0002F56344: hypothetical protein	0.0546657897
+UniRef50_UPI0002F56344: hypothetical protein|unclassified	0.0546657897
+UniRef50_C7DE44	0.0546585345
+UniRef50_C7DE44|unclassified	0.0546585345
+UniRef50_M4VGH9: Heparinase II/III-like protein	0.0546581708
+UniRef50_M4VGH9: Heparinase II/III-like protein|unclassified	0.0546581708
+UniRef50_UPI0004757A39: hypothetical protein	0.0546553828
+UniRef50_UPI0004757A39: hypothetical protein|unclassified	0.0546553828
+UniRef50_UPI0002657B0E: PREDICTED: aerobic glycerol-3-phosphate dehydrogenase-like, partial	0.0546533741
+UniRef50_UPI0002657B0E: PREDICTED: aerobic glycerol-3-phosphate dehydrogenase-like, partial|unclassified	0.0546533741
+UniRef50_U6L553	0.0546531586
+UniRef50_U6L553|unclassified	0.0546531586
+UniRef50_UPI0004712E3C: hypothetical protein	0.0546529374
+UniRef50_UPI0004712E3C: hypothetical protein|unclassified	0.0546529374
+UniRef50_I3BQN9	0.0546498675
+UniRef50_I3BQN9|unclassified	0.0546498675
+UniRef50_UPI00047AFCF7: hypothetical protein	0.0546488603
+UniRef50_UPI00047AFCF7: hypothetical protein|unclassified	0.0546488603
+UniRef50_Q0WNZ5: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase 3, chloroplastic	0.0546487830
+UniRef50_Q0WNZ5: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase 3, chloroplastic|unclassified	0.0546487830
+UniRef50_UPI00035ECFFF: hypothetical protein	0.0546463603
+UniRef50_UPI00035ECFFF: hypothetical protein|unclassified	0.0546463603
+UniRef50_UPI000476A000: GntR family transcriptional regulator	0.0546451246
+UniRef50_UPI000476A000: GntR family transcriptional regulator|unclassified	0.0546451246
+UniRef50_UPI00036EE512: hypothetical protein	0.0546450765
+UniRef50_UPI00036EE512: hypothetical protein|unclassified	0.0546450765
+UniRef50_A5EVG3: Indole-3-glycerol phosphate synthase	0.0546447415
+UniRef50_A5EVG3: Indole-3-glycerol phosphate synthase|unclassified	0.0546447415
+UniRef50_I0JL69	0.0546385010
+UniRef50_I0JL69|unclassified	0.0546385010
+UniRef50_G4TN02: Probable potassium channel beta subunit protein	0.0546376686
+UniRef50_G4TN02: Probable potassium channel beta subunit protein|unclassified	0.0546376686
+UniRef50_X1J3J4: Marine sediment metagenome DNA, contig: S03H2_S09967 (Fragment)	0.0546345341
+UniRef50_X1J3J4: Marine sediment metagenome DNA, contig: S03H2_S09967 (Fragment)|unclassified	0.0546345341
+UniRef50_UPI00026263DB: ABC transporter	0.0546341603
+UniRef50_UPI00026263DB: ABC transporter|unclassified	0.0546341603
+UniRef50_A9WD07: Extracellular solute-binding protein family 1	0.0546314935
+UniRef50_A9WD07: Extracellular solute-binding protein family 1|unclassified	0.0546314935
+UniRef50_Q2W0H5: UDP-N-acetylmuramoylalanine--D-glutamate ligase	0.0546272199
+UniRef50_Q2W0H5: UDP-N-acetylmuramoylalanine--D-glutamate ligase|unclassified	0.0546272199
+UniRef50_UPI000346883D: hypothetical protein	0.0546166795
+UniRef50_UPI000346883D: hypothetical protein|unclassified	0.0546166795
+UniRef50_UPI00036CAAA0: hypothetical protein	0.0546092928
+UniRef50_UPI00036CAAA0: hypothetical protein|unclassified	0.0546092928
+UniRef50_UPI00036300AE: type II secretion protein F	0.0546086427
+UniRef50_UPI00036300AE: type II secretion protein F|unclassified	0.0546086427
+UniRef50_UPI000479CC6C: pseudouridine synthase	0.0545945066
+UniRef50_UPI000479CC6C: pseudouridine synthase|unclassified	0.0545945066
+UniRef50_P36624: Putative sorbitol dehydrogenase	0.0545891112
+UniRef50_P36624: Putative sorbitol dehydrogenase|unclassified	0.0545891112
+UniRef50_Q55GB9	0.0545785181
+UniRef50_Q55GB9|unclassified	0.0545785181
+UniRef50_R6XKA9	0.0545717171
+UniRef50_R6XKA9|unclassified	0.0545717171
+UniRef50_UPI000462524A: molybdopterin-guanine dinucleotide biosynthesis protein A	0.0545680285
+UniRef50_UPI000462524A: molybdopterin-guanine dinucleotide biosynthesis protein A|unclassified	0.0545680285
+UniRef50_UPI0004087E10: sodium-dependent phosphate transporter	0.0545649636
+UniRef50_UPI0004087E10: sodium-dependent phosphate transporter|unclassified	0.0545649636
+UniRef50_UPI00036F4584: hypothetical protein	0.0545645274
+UniRef50_UPI00036F4584: hypothetical protein|unclassified	0.0545645274
+UniRef50_UPI000370CAC5: MULTISPECIES: hypothetical protein	0.0545610327
+UniRef50_UPI000370CAC5: MULTISPECIES: hypothetical protein|unclassified	0.0545610327
+UniRef50_UPI0003703B3E: hypothetical protein	0.0545603093
+UniRef50_UPI0003703B3E: hypothetical protein|unclassified	0.0545603093
+UniRef50_O08437: FKBP-type peptidyl-prolyl cis-trans isomerase FkpA	0.0545566494
+UniRef50_O08437: FKBP-type peptidyl-prolyl cis-trans isomerase FkpA|unclassified	0.0545566494
+UniRef50_UPI0003B6E34B: zinc-binding alcohol dehydrogenase	0.0545527474
+UniRef50_UPI0003B6E34B: zinc-binding alcohol dehydrogenase|unclassified	0.0545527474
+UniRef50_UPI000289BAA8: acetyl-CoA:acetoacetyl-CoA transferase subunit alpha	0.0545523684
+UniRef50_UPI000289BAA8: acetyl-CoA:acetoacetyl-CoA transferase subunit alpha|unclassified	0.0545523684
+UniRef50_UPI00046AE6EC: hypothetical protein	0.0545507852
+UniRef50_UPI00046AE6EC: hypothetical protein|unclassified	0.0545507852
+UniRef50_UPI000440E201: ArfGap-domain-containing protein	0.0545454720
+UniRef50_UPI000440E201: ArfGap-domain-containing protein|unclassified	0.0545454720
+UniRef50_UPI0003B69470: DNA polymerase III subunit delta''''	0.0545425549
+UniRef50_UPI0003B69470: DNA polymerase III subunit delta''''|unclassified	0.0545425549
+UniRef50_A7IK22	0.0545425520
+UniRef50_A7IK22|unclassified	0.0545425520
+UniRef50_L1PHT2: LPXTG-motif protein cell wall anchor domain protein	0.0545421847
+UniRef50_L1PHT2: LPXTG-motif protein cell wall anchor domain protein|unclassified	0.0545421847
+UniRef50_UPI0004721606: glycosyl transferase family 2	0.0545349664
+UniRef50_UPI0004721606: glycosyl transferase family 2|unclassified	0.0545349664
+UniRef50_W7C9J8: Cell wall surface anchor family protein (Fragment)	0.0545307040
+UniRef50_W7C9J8: Cell wall surface anchor family protein (Fragment)|unclassified	0.0545307040
+UniRef50_UPI0003EAF802: PREDICTED: elongation factor G, mitochondrial isoform X1	0.0545277921
+UniRef50_UPI0003EAF802: PREDICTED: elongation factor G, mitochondrial isoform X1|unclassified	0.0545277921
+UniRef50_UPI00047CE754: hypothetical protein	0.0545239445
+UniRef50_UPI00047CE754: hypothetical protein|unclassified	0.0545239445
+UniRef50_Q7P278: TRANSCRIPTION ACCESSORY PROTEIN (S1 RNA binding domain)	0.0545206840
+UniRef50_Q7P278: TRANSCRIPTION ACCESSORY PROTEIN (S1 RNA binding domain)|unclassified	0.0545206840
+UniRef50_UPI000475C24E: phosphoribosylaminoimidazole carboxylase	0.0545146909
+UniRef50_UPI000475C24E: phosphoribosylaminoimidazole carboxylase|unclassified	0.0545146909
+UniRef50_UPI00036F670B: hypothetical protein	0.0545084279
+UniRef50_UPI00036F670B: hypothetical protein|unclassified	0.0545084279
+UniRef50_UPI00036C9F17: hypothetical protein	0.0544951864
+UniRef50_UPI00036C9F17: hypothetical protein|unclassified	0.0544951864
+UniRef50_UPI0001FFE196: ABC transporter ATP-binding protein	0.0544932054
+UniRef50_UPI0001FFE196: ABC transporter ATP-binding protein|unclassified	0.0544932054
+UniRef50_UPI0004743442: acetolactate synthase catalytic subunit, partial	0.0544917351
+UniRef50_UPI0004743442: acetolactate synthase catalytic subunit, partial|unclassified	0.0544917351
+UniRef50_UPI0001E92D34: DNA gyrase subunit B	0.0544883279
+UniRef50_UPI0001E92D34: DNA gyrase subunit B|unclassified	0.0544883279
+UniRef50_UPI000363BF1F: hypothetical protein	0.0544875058
+UniRef50_UPI000363BF1F: hypothetical protein|unclassified	0.0544875058
+UniRef50_UPI000185E45C: hypothetical protein, conserved	0.0544812073
+UniRef50_UPI000185E45C: hypothetical protein, conserved|unclassified	0.0544812073
+UniRef50_UPI00036B5122: hypothetical protein	0.0544759896
+UniRef50_UPI00036B5122: hypothetical protein|unclassified	0.0544759896
+UniRef50_O66772: Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB	0.0544737950
+UniRef50_O66772: Threonylcarbamoyladenosine tRNA methylthiotransferase MtaB|unclassified	0.0544737950
+UniRef50_K6V7J8: Putative major facilitator superfamily transporter	0.0544725792
+UniRef50_K6V7J8: Putative major facilitator superfamily transporter|unclassified	0.0544725792
+UniRef50_UPI000328E571: PREDICTED: basic proline-rich protein-like	0.0544723438
+UniRef50_UPI000328E571: PREDICTED: basic proline-rich protein-like|unclassified	0.0544723438
+UniRef50_UPI000375353C: MULTISPECIES: hypothetical protein	0.0544720665
+UniRef50_UPI000375353C: MULTISPECIES: hypothetical protein|unclassified	0.0544720665
+UniRef50_UPI000288D31D: membrane protein	0.0544697885
+UniRef50_UPI000288D31D: membrane protein|unclassified	0.0544697885
+UniRef50_UPI00037EEDC1: hypothetical protein, partial	0.0544683655
+UniRef50_UPI00037EEDC1: hypothetical protein, partial|unclassified	0.0544683655
+UniRef50_G8SGJ4	0.0544673568
+UniRef50_G8SGJ4|unclassified	0.0544673568
+UniRef50_V4R3S5: MFS transporter	0.0544651936
+UniRef50_V4R3S5: MFS transporter|unclassified	0.0544651936
+UniRef50_Q6AFY0: Glutamate 5-kinase	0.0544635836
+UniRef50_Q6AFY0: Glutamate 5-kinase|unclassified	0.0544635836
+UniRef50_V4R4A7: ThiF domain-containing protein	0.0544624563
+UniRef50_V4R4A7: ThiF domain-containing protein|unclassified	0.0544624563
+UniRef50_UPI00035E1DD4: hypothetical protein	0.0544595377
+UniRef50_UPI00035E1DD4: hypothetical protein|unclassified	0.0544595377
+UniRef50_UPI000378803E: hypothetical protein	0.0544574581
+UniRef50_UPI000378803E: hypothetical protein|unclassified	0.0544574581
+UniRef50_UPI0003B673D2: ABC transporter	0.0544512622
+UniRef50_UPI0003B673D2: ABC transporter|unclassified	0.0544512622
+UniRef50_UPI000474176F: hypothetical protein	0.0544503600
+UniRef50_UPI000474176F: hypothetical protein|unclassified	0.0544503600
+UniRef50_N2AT36	0.0544498391
+UniRef50_N2AT36|unclassified	0.0544498391
+UniRef50_UPI00046CBBEB: biotin synthase	0.0544491769
+UniRef50_UPI00046CBBEB: biotin synthase|unclassified	0.0544491769
+UniRef50_C3MW97: Methionine--tRNA ligase	0.0544431039
+UniRef50_C3MW97: Methionine--tRNA ligase|unclassified	0.0544431039
+UniRef50_I0HWW2	0.0544427150
+UniRef50_I0HWW2|unclassified	0.0544427150
+UniRef50_K6D1D3	0.0544418507
+UniRef50_K6D1D3|unclassified	0.0544418507
+UniRef50_UPI0003636710: hypothetical protein	0.0544413207
+UniRef50_UPI0003636710: hypothetical protein|unclassified	0.0544413207
+UniRef50_UPI0002F7DE76: hypothetical protein	0.0544385773
+UniRef50_UPI0002F7DE76: hypothetical protein|unclassified	0.0544385773
+UniRef50_B1XYN6: TRAP C4-dicarboxylate transport system permease DctM subunit	0.0544369834
+UniRef50_B1XYN6: TRAP C4-dicarboxylate transport system permease DctM subunit|unclassified	0.0544369834
+UniRef50_UPI000382B15D: hypothetical protein	0.0544364614
+UniRef50_UPI000382B15D: hypothetical protein|unclassified	0.0544364614
+UniRef50_UPI000364CC61: hypothetical protein	0.0544360306
+UniRef50_UPI000364CC61: hypothetical protein|unclassified	0.0544360306
+UniRef50_UPI000359674D: PREDICTED: cytoplasmic aconitate hydratase-like	0.0544317600
+UniRef50_UPI000359674D: PREDICTED: cytoplasmic aconitate hydratase-like|unclassified	0.0544317600
+UniRef50_Q0FEW4: Cation transport protein ChaC, putative	0.0544284731
+UniRef50_Q0FEW4: Cation transport protein ChaC, putative|unclassified	0.0544284731
+UniRef50_UPI000478D470: hypothetical protein	0.0544279661
+UniRef50_UPI000478D470: hypothetical protein|unclassified	0.0544279661
+UniRef50_UPI000174565A: transcriptional regulator, LysR family protein	0.0544276227
+UniRef50_UPI000174565A: transcriptional regulator, LysR family protein|unclassified	0.0544276227
+UniRef50_W4QDH9: Cold-shock DEAD-box protein A	0.0544272211
+UniRef50_W4QDH9: Cold-shock DEAD-box protein A|unclassified	0.0544272211
+UniRef50_UPI000373EF50: hypothetical protein	0.0544269233
+UniRef50_UPI000373EF50: hypothetical protein|unclassified	0.0544269233
+UniRef50_UPI0003FD0D46: peptide ABC transporter permease	0.0544263710
+UniRef50_UPI0003FD0D46: peptide ABC transporter permease|unclassified	0.0544263710
+UniRef50_UPI0003655BCC: hypothetical protein	0.0544252018
+UniRef50_UPI0003655BCC: hypothetical protein|unclassified	0.0544252018
+UniRef50_UPI00035F60B3: hypothetical protein, partial	0.0544144438
+UniRef50_UPI00035F60B3: hypothetical protein, partial|unclassified	0.0544144438
+UniRef50_D0ZB90	0.0544143881
+UniRef50_D0ZB90|unclassified	0.0544143881
+UniRef50_UPI00046C9F37: PREDICTED: diphthine synthase	0.0544141151
+UniRef50_UPI00046C9F37: PREDICTED: diphthine synthase|unclassified	0.0544141151
+UniRef50_UPI000237925F: 3-oxoacyl-ACP synthase	0.0544088808
+UniRef50_UPI000237925F: 3-oxoacyl-ACP synthase|unclassified	0.0544088808
+UniRef50_W1F9B3: Probable Fe-S oxidoreductase family 2	0.0544076961
+UniRef50_W1F9B3: Probable Fe-S oxidoreductase family 2|unclassified	0.0544076961
+UniRef50_UPI00035D20EA: hypothetical protein	0.0544039006
+UniRef50_UPI00035D20EA: hypothetical protein|unclassified	0.0544039006
+UniRef50_UPI000476528F: RNA polymerase factor sigma-54	0.0543998970
+UniRef50_UPI000476528F: RNA polymerase factor sigma-54|unclassified	0.0543998970
+UniRef50_D0KX67	0.0543996455
+UniRef50_D0KX67|unclassified	0.0543996455
+UniRef50_UPI0003B663B6: hypothetical protein, partial	0.0543972779
+UniRef50_UPI0003B663B6: hypothetical protein, partial|unclassified	0.0543972779
+UniRef50_W4HJN9	0.0543957332
+UniRef50_W4HJN9|unclassified	0.0543957332
+UniRef50_UPI0003B37C7C: Ssp gyrB intein	0.0543935351
+UniRef50_UPI0003B37C7C: Ssp gyrB intein|unclassified	0.0543935351
+UniRef50_UPI0003B48A00: GMP synthase	0.0543914572
+UniRef50_UPI0003B48A00: GMP synthase|unclassified	0.0543914572
+UniRef50_A8URW0	0.0543910761
+UniRef50_A8URW0|unclassified	0.0543910761
+UniRef50_A6WFN3: Diguanylate cyclase	0.0543805990
+UniRef50_A6WFN3: Diguanylate cyclase|unclassified	0.0543805990
+UniRef50_UPI00035E4CEE: hypothetical protein	0.0543798574
+UniRef50_UPI00035E4CEE: hypothetical protein|unclassified	0.0543798574
+UniRef50_V6Q4W1	0.0543797970
+UniRef50_V6Q4W1|unclassified	0.0543797970
+UniRef50_UPI0004729581: aminotransferase	0.0543772208
+UniRef50_UPI0004729581: aminotransferase|unclassified	0.0543772208
+UniRef50_UPI0003B7941D: formate dehydrogenase subunit alpha	0.0543740047
+UniRef50_UPI0003B7941D: formate dehydrogenase subunit alpha|unclassified	0.0543740047
+UniRef50_P47650: Phosphate import ATP-binding protein PstB	0.0543615306
+UniRef50_P47650: Phosphate import ATP-binding protein PstB|unclassified	0.0543615306
+UniRef50_T3QQA5: 2-hydroxyglutaryl-CoA dehydratase, D-component family protein	0.0543580394
+UniRef50_T3QQA5: 2-hydroxyglutaryl-CoA dehydratase, D-component family protein|unclassified	0.0543580394
+UniRef50_R6VPX6: Lipoprotein	0.0543539456
+UniRef50_R6VPX6: Lipoprotein|unclassified	0.0543539456
+UniRef50_W9TQ83: ABC transporter permease PltN	0.0543531516
+UniRef50_W9TQ83: ABC transporter permease PltN|unclassified	0.0543531516
+UniRef50_A3VE23	0.0543528753
+UniRef50_A3VE23|unclassified	0.0543528753
+UniRef50_UPI00030B3FD0: hypothetical protein	0.0543374383
+UniRef50_UPI00030B3FD0: hypothetical protein|unclassified	0.0543374383
+UniRef50_UPI000478864C: cell division protein FtsW	0.0543331902
+UniRef50_UPI000478864C: cell division protein FtsW|unclassified	0.0543331902
+UniRef50_UPI0004722448: hypothetical protein	0.0543330497
+UniRef50_UPI0004722448: hypothetical protein|unclassified	0.0543330497
+UniRef50_UPI00036F9B44: hypothetical protein, partial	0.0543318033
+UniRef50_UPI00036F9B44: hypothetical protein, partial|unclassified	0.0543318033
+UniRef50_UPI00047A73B7: hypothetical protein	0.0543295302
+UniRef50_UPI00047A73B7: hypothetical protein|unclassified	0.0543295302
+UniRef50_O66686: Triosephosphate isomerase	0.0543254418
+UniRef50_O66686: Triosephosphate isomerase|unclassified	0.0543254418
+UniRef50_A9KHN3: Acetylglutamate kinase	0.0543227184
+UniRef50_A9KHN3: Acetylglutamate kinase|unclassified	0.0543227184
+UniRef50_Q7UM42: tRNA N6-adenosine threonylcarbamoyltransferase	0.0543195724
+UniRef50_Q7UM42: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.0543195724
+UniRef50_UPI00047B748C: hypothetical protein	0.0543185271
+UniRef50_UPI00047B748C: hypothetical protein|unclassified	0.0543185271
+UniRef50_UPI000414D483: hypothetical protein	0.0543184413
+UniRef50_UPI000414D483: hypothetical protein|unclassified	0.0543184413
+UniRef50_UPI0003FABD49: bis(5''-nucleosyl)-tetraphosphatase	0.0543103871
+UniRef50_UPI0003FABD49: bis(5''-nucleosyl)-tetraphosphatase|unclassified	0.0543103871
+UniRef50_UPI00030DF02E: hypothetical protein	0.0543091360
+UniRef50_UPI00030DF02E: hypothetical protein|unclassified	0.0543091360
+UniRef50_I4Z5S2: Type II secretory pathway, component PulF	0.0543023194
+UniRef50_I4Z5S2: Type II secretory pathway, component PulF|unclassified	0.0543023194
+UniRef50_R8WN50	0.0542958917
+UniRef50_R8WN50|unclassified	0.0542958917
+UniRef50_UPI0004715880: hypothetical protein	0.0542945873
+UniRef50_UPI0004715880: hypothetical protein|unclassified	0.0542945873
+UniRef50_UPI00046E6E5E: hypothetical protein	0.0542935725
+UniRef50_UPI00046E6E5E: hypothetical protein|unclassified	0.0542935725
+UniRef50_U5VYZ3: Diguanylate cyclase	0.0542925742
+UniRef50_U5VYZ3: Diguanylate cyclase|unclassified	0.0542925742
+UniRef50_Q2YCK7: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical	0.0542920525
+UniRef50_Q2YCK7: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical|unclassified	0.0542920525
+UniRef50_UPI00036E49D9: hypothetical protein	0.0542888583
+UniRef50_UPI00036E49D9: hypothetical protein|unclassified	0.0542888583
+UniRef50_UPI0004679C21: hypothetical protein, partial	0.0542883913
+UniRef50_UPI0004679C21: hypothetical protein, partial|unclassified	0.0542883913
+UniRef50_P96613: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase	0.0542829935
+UniRef50_P96613: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase|unclassified	0.0542829935
+UniRef50_UPI00040BBE50: hypothetical protein	0.0542804811
+UniRef50_UPI00040BBE50: hypothetical protein|unclassified	0.0542804811
+UniRef50_UPI0002471267: hypothetical protein	0.0542748903
+UniRef50_UPI0002471267: hypothetical protein|unclassified	0.0542748903
+UniRef50_UPI00047156DD: 5-aminolevulinate synthase, partial	0.0542742541
+UniRef50_UPI00047156DD: 5-aminolevulinate synthase, partial|unclassified	0.0542742541
+UniRef50_UPI0003C19B8E: PREDICTED: COBW domain-containing protein 1-like, partial	0.0542728742
+UniRef50_UPI0003C19B8E: PREDICTED: COBW domain-containing protein 1-like, partial|unclassified	0.0542728742
+UniRef50_UPI00040150F4: hypothetical protein	0.0542713504
+UniRef50_UPI00040150F4: hypothetical protein|unclassified	0.0542713504
+UniRef50_Q0AWM5: Ribosomal protein L11 methyltransferase	0.0542711159
+UniRef50_Q0AWM5: Ribosomal protein L11 methyltransferase|unclassified	0.0542711159
+UniRef50_UPI000328BB43: PREDICTED: translation initiation factor IF-2-like	0.0542708578
+UniRef50_UPI000328BB43: PREDICTED: translation initiation factor IF-2-like|unclassified	0.0542708578
+UniRef50_UPI00046423A0: cytochrome C peroxidase	0.0542707628
+UniRef50_UPI00046423A0: cytochrome C peroxidase|unclassified	0.0542707628
+UniRef50_P43700: DNA gyrase subunit A	0.0542698417
+UniRef50_P43700: DNA gyrase subunit A|unclassified	0.0542698417
+UniRef50_UPI0003B6355C: multidrug transporter CflA	0.0542697003
+UniRef50_UPI0003B6355C: multidrug transporter CflA|unclassified	0.0542697003
+UniRef50_UPI00040A8670: beta-hexosaminidase	0.0542679988
+UniRef50_UPI00040A8670: beta-hexosaminidase|unclassified	0.0542679988
+UniRef50_UPI0003B38AB6: hypothetical protein	0.0542543911
+UniRef50_UPI0003B38AB6: hypothetical protein|unclassified	0.0542543911
+UniRef50_UPI0004799FAD: hypothetical protein	0.0542529076
+UniRef50_UPI0004799FAD: hypothetical protein|unclassified	0.0542529076
+UniRef50_L5NAA9	0.0542514261
+UniRef50_L5NAA9|unclassified	0.0542514261
+UniRef50_UPI00037E80EB: hypothetical protein	0.0542425611
+UniRef50_UPI00037E80EB: hypothetical protein|unclassified	0.0542425611
+UniRef50_UPI00037893F4: hypothetical protein	0.0542424667
+UniRef50_UPI00037893F4: hypothetical protein|unclassified	0.0542424667
+UniRef50_UPI000361A020: MULTISPECIES: hypothetical protein	0.0542403838
+UniRef50_UPI000361A020: MULTISPECIES: hypothetical protein|unclassified	0.0542403838
+UniRef50_Q6AQ86	0.0542390745
+UniRef50_Q6AQ86|unclassified	0.0542390745
+UniRef50_A5D0T6: Formamidopyrimidine-DNA glycosylase	0.0542333433
+UniRef50_A5D0T6: Formamidopyrimidine-DNA glycosylase|unclassified	0.0542333433
+UniRef50_UPI00037CE05A: hypothetical protein	0.0542319807
+UniRef50_UPI00037CE05A: hypothetical protein|unclassified	0.0542319807
+UniRef50_E0MS54: Lipoprotein	0.0542297854
+UniRef50_E0MS54: Lipoprotein|unclassified	0.0542297854
+UniRef50_UPI0004656097: hypothetical protein	0.0542270449
+UniRef50_UPI0004656097: hypothetical protein|unclassified	0.0542270449
+UniRef50_UPI000365A766: hypothetical protein	0.0542263716
+UniRef50_UPI000365A766: hypothetical protein|unclassified	0.0542263716
+UniRef50_UPI00046993FD: hypothetical protein	0.0542228036
+UniRef50_UPI00046993FD: hypothetical protein|unclassified	0.0542228036
+UniRef50_P14892: N-acetylmuramoyl-L-alanine amidase CwlA	0.0542022509
+UniRef50_P14892: N-acetylmuramoyl-L-alanine amidase CwlA|unclassified	0.0542022509
+UniRef50_UPI00047A529B: peptidylprolyl isomerase	0.0542014088
+UniRef50_UPI00047A529B: peptidylprolyl isomerase|unclassified	0.0542014088
+UniRef50_UPI0003954D9E: LysR family transcriptional regulator	0.0542005862
+UniRef50_UPI0003954D9E: LysR family transcriptional regulator|unclassified	0.0542005862
+UniRef50_UPI00034D0994: hypothetical protein	0.0541887414
+UniRef50_UPI00034D0994: hypothetical protein|unclassified	0.0541887414
+UniRef50_UPI00046E6687: hypothetical protein	0.0541883656
+UniRef50_UPI00046E6687: hypothetical protein|unclassified	0.0541883656
+UniRef50_UPI00041194F6: copper transporter	0.0541849945
+UniRef50_UPI00041194F6: copper transporter|unclassified	0.0541849945
+UniRef50_UPI00037B976A: hypothetical protein	0.0541807859
+UniRef50_UPI00037B976A: hypothetical protein|unclassified	0.0541807859
+UniRef50_UPI0002B49BBA	0.0541773397
+UniRef50_UPI0002B49BBA|unclassified	0.0541773397
+UniRef50_UPI000367B5A7: peptidase S14	0.0541766730
+UniRef50_UPI000367B5A7: peptidase S14|unclassified	0.0541766730
+UniRef50_UPI0000E0EE77: gamma-glutamyltransferase 2	0.0541753566
+UniRef50_UPI0000E0EE77: gamma-glutamyltransferase 2|unclassified	0.0541753566
+UniRef50_Q5FH87: Arginine--tRNA ligase	0.0541718472
+UniRef50_Q5FH87: Arginine--tRNA ligase|unclassified	0.0541718472
+UniRef50_UPI0003685202: hypothetical protein	0.0541707653
+UniRef50_UPI0003685202: hypothetical protein|unclassified	0.0541707653
+UniRef50_A6EW48	0.0541656317
+UniRef50_A6EW48|unclassified	0.0541656317
+UniRef50_Q3JLX9	0.0541614421
+UniRef50_Q3JLX9|unclassified	0.0541614421
+UniRef50_I0I0F8: Putative major facilitator superfamily transporter	0.0541603444
+UniRef50_I0I0F8: Putative major facilitator superfamily transporter|unclassified	0.0541603444
+UniRef50_S8EFI0	0.0541536577
+UniRef50_S8EFI0|unclassified	0.0541536577
+UniRef50_UPI000262D0B4: flagellin FliC	0.0541485898
+UniRef50_UPI000262D0B4: flagellin FliC|unclassified	0.0541485898
+UniRef50_UPI0002BC4B55: transposase	0.0541473553
+UniRef50_UPI0002BC4B55: transposase|unclassified	0.0541473553
+UniRef50_UPI0003291BFC: PREDICTED: translation initiation factor IF-2-like	0.0541472038
+UniRef50_UPI0003291BFC: PREDICTED: translation initiation factor IF-2-like|unclassified	0.0541472038
+UniRef50_UPI0003667A34: hypothetical protein	0.0541438382
+UniRef50_UPI0003667A34: hypothetical protein|unclassified	0.0541438382
+UniRef50_C7J1D9: Os04g0448000 protein (Fragment)	0.0541422512
+UniRef50_C7J1D9: Os04g0448000 protein (Fragment)|unclassified	0.0541422512
+UniRef50_UPI0003666954: hypothetical protein	0.0541419258
+UniRef50_UPI0003666954: hypothetical protein|unclassified	0.0541419258
+UniRef50_UPI0004655D13: type VI secretion protein	0.0541398387
+UniRef50_UPI0004655D13: type VI secretion protein|unclassified	0.0541398387
+UniRef50_A7HH59: Ribosomal RNA small subunit methyltransferase H	0.0541392461
+UniRef50_A7HH59: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0541392461
+UniRef50_UPI00038316EF: hypothetical protein	0.0541387765
+UniRef50_UPI00038316EF: hypothetical protein|unclassified	0.0541387765
+UniRef50_UPI000478FFC7: hypothetical protein	0.0541374797
+UniRef50_UPI000478FFC7: hypothetical protein|unclassified	0.0541374797
+UniRef50_UPI0001744894: 3-phosphoglycerate dehydrogenase	0.0541347980
+UniRef50_UPI0001744894: 3-phosphoglycerate dehydrogenase|unclassified	0.0541347980
+UniRef50_C2EVC8: Cobalt transport protein	0.0541345078
+UniRef50_C2EVC8: Cobalt transport protein|unclassified	0.0541345078
+UniRef50_UPI00041970DE: hypothetical protein	0.0541308156
+UniRef50_UPI00041970DE: hypothetical protein|unclassified	0.0541308156
+UniRef50_UPI000479F12E: hypothetical protein	0.0541232240
+UniRef50_UPI000479F12E: hypothetical protein|unclassified	0.0541232240
+UniRef50_E6QUZ8	0.0541227805
+UniRef50_E6QUZ8|unclassified	0.0541227805
+UniRef50_UPI000377F88E: hypothetical protein	0.0541219174
+UniRef50_UPI000377F88E: hypothetical protein|unclassified	0.0541219174
+UniRef50_UPI0003831D25: PREDICTED: hydroxyacid oxidase 1-like, partial	0.0541213683
+UniRef50_UPI0003831D25: PREDICTED: hydroxyacid oxidase 1-like, partial|unclassified	0.0541213683
+UniRef50_UPI00035D923C: MULTISPECIES: hypothetical protein	0.0541202425
+UniRef50_UPI00035D923C: MULTISPECIES: hypothetical protein|unclassified	0.0541202425
+UniRef50_UPI00047BEDD8: hypothetical protein	0.0541175648
+UniRef50_UPI00047BEDD8: hypothetical protein|unclassified	0.0541175648
+UniRef50_A8PQ85: Membrane protein, DedA family	0.0541152091
+UniRef50_A8PQ85: Membrane protein, DedA family|unclassified	0.0541152091
+UniRef50_UPI0004683466: hypothetical protein	0.0541142338
+UniRef50_UPI0004683466: hypothetical protein|unclassified	0.0541142338
+UniRef50_UPI0003B33731: histidine kinase	0.0541010778
+UniRef50_UPI0003B33731: histidine kinase|unclassified	0.0541010778
+UniRef50_W5X9K0: Cell division protein FtsZ	0.0541008628
+UniRef50_W5X9K0: Cell division protein FtsZ|unclassified	0.0541008628
+UniRef50_E7BGF6	0.0540915091
+UniRef50_E7BGF6|unclassified	0.0540915091
+UniRef50_UPI0003B4D558: prephenate dehydrogenase	0.0540901902
+UniRef50_UPI0003B4D558: prephenate dehydrogenase|unclassified	0.0540901902
+UniRef50_UPI0001C3743A: peptide ABC transporter ATP-binding protein	0.0540861777
+UniRef50_UPI0001C3743A: peptide ABC transporter ATP-binding protein|unclassified	0.0540861777
+UniRef50_B3W6W6: Tryptophan synthase beta chain	0.0540830149
+UniRef50_B3W6W6: Tryptophan synthase beta chain|unclassified	0.0540830149
+UniRef50_W4UR45	0.0540815389
+UniRef50_W4UR45|unclassified	0.0540815389
+UniRef50_UPI000467DE6D: hypothetical protein	0.0540811154
+UniRef50_UPI000467DE6D: hypothetical protein|unclassified	0.0540811154
+UniRef50_F5YCG8	0.0540768729
+UniRef50_F5YCG8|unclassified	0.0540768729
+UniRef50_UPI0003489AEC: hypothetical protein	0.0540763123
+UniRef50_UPI0003489AEC: hypothetical protein|unclassified	0.0540763123
+UniRef50_UPI00047BD119: hypothetical protein	0.0540743003
+UniRef50_UPI00047BD119: hypothetical protein|unclassified	0.0540743003
+UniRef50_E1V6D6: K06923	0.0540737089
+UniRef50_E1V6D6: K06923|unclassified	0.0540737089
+UniRef50_W5WFR8	0.0540728986
+UniRef50_W5WFR8|unclassified	0.0540728986
+UniRef50_A0A024GNT4: Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_232_length_41005	0.0540724589
+UniRef50_A0A024GNT4: Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_232_length_41005|unclassified	0.0540724589
+UniRef50_UPI00047B2173: hypothetical protein	0.0540702911
+UniRef50_UPI00047B2173: hypothetical protein|unclassified	0.0540702911
+UniRef50_UPI00004F1407: PREDICTED: nuclease-sensitive element-binding protein 1-like	0.0540666614
+UniRef50_UPI00004F1407: PREDICTED: nuclease-sensitive element-binding protein 1-like|unclassified	0.0540666614
+UniRef50_UPI0003C11C7F: PREDICTED: inosine-5''''-monophosphate dehydrogenase 2-like	0.0540607623
+UniRef50_UPI0003C11C7F: PREDICTED: inosine-5''''-monophosphate dehydrogenase 2-like|unclassified	0.0540607623
+UniRef50_UPI00035E0B41: hypothetical protein	0.0540564234
+UniRef50_UPI00035E0B41: hypothetical protein|unclassified	0.0540564234
+UniRef50_UPI00041CBF10: hypothetical protein	0.0540548069
+UniRef50_UPI00041CBF10: hypothetical protein|unclassified	0.0540548069
+UniRef50_W0IX54: Iron deficiency-induced protein A	0.0540511508
+UniRef50_W0IX54: Iron deficiency-induced protein A|unclassified	0.0540511508
+UniRef50_B4D9A7: Cobyrinic acid ac-diamide synthase	0.0540478251
+UniRef50_B4D9A7: Cobyrinic acid ac-diamide synthase|unclassified	0.0540478251
+UniRef50_Q8YC19: Transposase	0.0540474415
+UniRef50_Q8YC19: Transposase|unclassified	0.0540474415
+UniRef50_UPI00046297D3: conjugal transfer protein	0.0540449862
+UniRef50_UPI00046297D3: conjugal transfer protein|unclassified	0.0540449862
+UniRef50_B0S1X1	0.0540430250
+UniRef50_B0S1X1|unclassified	0.0540430250
+UniRef50_M9RIC5	0.0540374871
+UniRef50_M9RIC5|unclassified	0.0540374871
+UniRef50_UPI0003758C0F: hypothetical protein	0.0540352505
+UniRef50_UPI0003758C0F: hypothetical protein|unclassified	0.0540352505
+UniRef50_D8DBE7: HK97 family phage portal protein	0.0540343769
+UniRef50_D8DBE7: HK97 family phage portal protein|unclassified	0.0540343769
+UniRef50_P53312: Succinyl-CoA ligase [ADP-forming] subunit beta, mitochondrial	0.0540294630
+UniRef50_P53312: Succinyl-CoA ligase [ADP-forming] subunit beta, mitochondrial|unclassified	0.0540294630
+UniRef50_UPI000382BEC7: hypothetical protein	0.0540282880
+UniRef50_UPI000382BEC7: hypothetical protein|unclassified	0.0540282880
+UniRef50_Q2S9C1: Chaperone SurA	0.0540279678
+UniRef50_Q2S9C1: Chaperone SurA|unclassified	0.0540279678
+UniRef50_Q2Y7Q1	0.0540258501
+UniRef50_Q2Y7Q1|unclassified	0.0540258501
+UniRef50_U5H484	0.0540224206
+UniRef50_U5H484|unclassified	0.0540224206
+UniRef50_UPI00047DFC44: hypothetical protein	0.0540160918
+UniRef50_UPI00047DFC44: hypothetical protein|unclassified	0.0540160918
+UniRef50_UPI00047A5AA9: glucan 1,6-alpha-glucosidase	0.0540126582
+UniRef50_UPI00047A5AA9: glucan 1,6-alpha-glucosidase|unclassified	0.0540126582
+UniRef50_UPI00046E8374: homoserine acetyltransferase	0.0540086402
+UniRef50_UPI00046E8374: homoserine acetyltransferase|unclassified	0.0540086402
+UniRef50_UPI0002883990: ABC transporter substrate-binding protein	0.0540050525
+UniRef50_UPI0002883990: ABC transporter substrate-binding protein|unclassified	0.0540050525
+UniRef50_UPI0003D774B2: PREDICTED: surfeit locus protein 1 isoform X6	0.0540047169
+UniRef50_UPI0003D774B2: PREDICTED: surfeit locus protein 1 isoform X6|unclassified	0.0540047169
+UniRef50_UPI00037A84AA: hypothetical protein	0.0540046197
+UniRef50_UPI00037A84AA: hypothetical protein|unclassified	0.0540046197
+UniRef50_UPI000469F0AA: pseudouridine synthase	0.0540023925
+UniRef50_UPI000469F0AA: pseudouridine synthase|unclassified	0.0540023925
+UniRef50_UPI0003716EE9: amino acid ABC transporter	0.0540015264
+UniRef50_UPI0003716EE9: amino acid ABC transporter|unclassified	0.0540015264
+UniRef50_UPI000380B26B: hypothetical protein	0.0539959978
+UniRef50_UPI000380B26B: hypothetical protein|unclassified	0.0539959978
+UniRef50_B6B5M1: AAA ATPase	0.0539903547
+UniRef50_B6B5M1: AAA ATPase|unclassified	0.0539903547
+UniRef50_R4KIZ1	0.0539879312
+UniRef50_R4KIZ1|unclassified	0.0539879312
+UniRef50_UPI00046934BB: peptidase C39, partial	0.0539782554
+UniRef50_UPI00046934BB: peptidase C39, partial|unclassified	0.0539782554
+UniRef50_UPI0002B8E808	0.0539716117
+UniRef50_UPI0002B8E808|unclassified	0.0539716117
+UniRef50_G1WVM0	0.0539675556
+UniRef50_G1WVM0|unclassified	0.0539675556
+UniRef50_UPI00047A9735: short-chain dehydrogenase	0.0539612436
+UniRef50_UPI00047A9735: short-chain dehydrogenase|unclassified	0.0539612436
+UniRef50_UPI0003F5764F: hypothetical protein	0.0539590478
+UniRef50_UPI0003F5764F: hypothetical protein|unclassified	0.0539590478
+UniRef50_K2J0C8	0.0539577287
+UniRef50_K2J0C8|unclassified	0.0539577287
+UniRef50_UPI00046EF9B7: hypothetical protein	0.0539563510
+UniRef50_UPI00046EF9B7: hypothetical protein|unclassified	0.0539563510
+UniRef50_UPI00046F90A9: seryl-tRNA synthetase, partial	0.0539543684
+UniRef50_UPI00046F90A9: seryl-tRNA synthetase, partial|unclassified	0.0539543684
+UniRef50_C7JCV5: Alkaline phosphatase DedA	0.0539509571
+UniRef50_C7JCV5: Alkaline phosphatase DedA|unclassified	0.0539509571
+UniRef50_UPI00046B7178: hypothetical protein	0.0539481469
+UniRef50_UPI00046B7178: hypothetical protein|unclassified	0.0539481469
+UniRef50_UPI0003B32D07: stage V sporulation protein E	0.0539469012
+UniRef50_UPI0003B32D07: stage V sporulation protein E|unclassified	0.0539469012
+UniRef50_UPI00037F23DA: hypothetical protein	0.0539449700
+UniRef50_UPI00037F23DA: hypothetical protein|unclassified	0.0539449700
+UniRef50_F5YTP1	0.0539417497
+UniRef50_F5YTP1|unclassified	0.0539417497
+UniRef50_UPI0003B5AE07: 6-carboxyhexanoate--CoA ligase	0.0539417160
+UniRef50_UPI0003B5AE07: 6-carboxyhexanoate--CoA ligase|unclassified	0.0539417160
+UniRef50_UPI00046E60E2: hypothetical protein, partial	0.0539372224
+UniRef50_UPI00046E60E2: hypothetical protein, partial|unclassified	0.0539372224
+UniRef50_F3S6G5	0.0539262636
+UniRef50_F3S6G5|unclassified	0.0539262636
+UniRef50_UPI000366FA83: hypothetical protein	0.0539209227
+UniRef50_UPI000366FA83: hypothetical protein|unclassified	0.0539209227
+UniRef50_D8LK39: Short chain dehydrogenase	0.0539111423
+UniRef50_D8LK39: Short chain dehydrogenase|unclassified	0.0539111423
+UniRef50_A7GPF0: 40-residue YVTN family beta-propeller repeat protein	0.0539093682
+UniRef50_A7GPF0: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.0539093682
+UniRef50_A3PFA5: Holliday junction ATP-dependent DNA helicase RuvB	0.0539085039
+UniRef50_A3PFA5: Holliday junction ATP-dependent DNA helicase RuvB|unclassified	0.0539085039
+UniRef50_UPI0002556085: N-acetylglutamate synthase	0.0539079739
+UniRef50_UPI0002556085: N-acetylglutamate synthase|unclassified	0.0539079739
+UniRef50_T0WHP3	0.0539016598
+UniRef50_T0WHP3|unclassified	0.0539016598
+UniRef50_UPI000310CC9F: C4-dicarboxylate ABC transporter	0.0538960996
+UniRef50_UPI000310CC9F: C4-dicarboxylate ABC transporter|unclassified	0.0538960996
+UniRef50_C1F4S5: IS5 family transposase	0.0538936870
+UniRef50_C1F4S5: IS5 family transposase|unclassified	0.0538936870
+UniRef50_K9E812	0.0538934699
+UniRef50_K9E812|unclassified	0.0538934699
+UniRef50_K2E6A9: 3-ketoacyl-(Acyl-carrier-protein) reductase	0.0538925032
+UniRef50_K2E6A9: 3-ketoacyl-(Acyl-carrier-protein) reductase|unclassified	0.0538925032
+UniRef50_J9G850: Alpha-N-acetylglucosaminidase (Fragment)	0.0538902421
+UniRef50_J9G850: Alpha-N-acetylglucosaminidase (Fragment)|unclassified	0.0538902421
+UniRef50_UPI0002FA030F: hypothetical protein	0.0538851506
+UniRef50_UPI0002FA030F: hypothetical protein|unclassified	0.0538851506
+UniRef50_UPI0003B6CE7C: isochorismate synthase	0.0538837138
+UniRef50_UPI0003B6CE7C: isochorismate synthase|unclassified	0.0538837138
+UniRef50_UPI000477B0AB: hypothetical protein	0.0538826380
+UniRef50_UPI000477B0AB: hypothetical protein|unclassified	0.0538826380
+UniRef50_UPI00047B76E3: CDP-glucose 4,6-dehydratase	0.0538786205
+UniRef50_UPI00047B76E3: CDP-glucose 4,6-dehydratase|unclassified	0.0538786205
+UniRef50_I0JLG1	0.0538774737
+UniRef50_I0JLG1|unclassified	0.0538774737
+UniRef50_UPI000377A3F5: hypothetical protein	0.0538744903
+UniRef50_UPI000377A3F5: hypothetical protein|unclassified	0.0538744903
+UniRef50_UPI000465A021: hypothetical protein	0.0538672948
+UniRef50_UPI000465A021: hypothetical protein|unclassified	0.0538672948
+UniRef50_Q8ERL9: Octanoyltransferase LipM	0.0538623121
+UniRef50_Q8ERL9: Octanoyltransferase LipM|unclassified	0.0538623121
+UniRef50_W4KF45	0.0538613255
+UniRef50_W4KF45|unclassified	0.0538613255
+UniRef50_UPI0003B4CA17: ATPase	0.0538604598
+UniRef50_UPI0003B4CA17: ATPase|unclassified	0.0538604598
+UniRef50_Q66L51: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial	0.0538599887
+UniRef50_Q66L51: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial|unclassified	0.0538599887
+UniRef50_UPI00047C75A1: elongation factor G	0.0538592238
+UniRef50_UPI00047C75A1: elongation factor G|unclassified	0.0538592238
+UniRef50_UPI00036BF9B7: hypothetical protein	0.0538530332
+UniRef50_UPI00036BF9B7: hypothetical protein|unclassified	0.0538530332
+UniRef50_W7S6W0	0.0538523677
+UniRef50_W7S6W0|unclassified	0.0538523677
+UniRef50_B3PKY0	0.0538505102
+UniRef50_B3PKY0|unclassified	0.0538505102
+UniRef50_UPI000473D2FB: hypothetical protein, partial	0.0538367353
+UniRef50_UPI000473D2FB: hypothetical protein, partial|unclassified	0.0538367353
+UniRef50_D4XLN3: Competence protein ComM	0.0538355585
+UniRef50_D4XLN3: Competence protein ComM|unclassified	0.0538355585
+UniRef50_K2HAS9	0.0538349610
+UniRef50_K2HAS9|unclassified	0.0538349610
+UniRef50_H7FTK7: FAD-dependent pyridine nucleotide-disulfide oxidoreductase	0.0538303098
+UniRef50_H7FTK7: FAD-dependent pyridine nucleotide-disulfide oxidoreductase|unclassified	0.0538303098
+UniRef50_UPI0003497CDD: hypothetical protein	0.0538270761
+UniRef50_UPI0003497CDD: hypothetical protein|unclassified	0.0538270761
+UniRef50_UPI000406E6B2: MULTISPECIES: hypothetical protein	0.0538262003
+UniRef50_UPI000406E6B2: MULTISPECIES: hypothetical protein|unclassified	0.0538262003
+UniRef50_UPI000366EE21: cell wall hydrolase	0.0538250731
+UniRef50_UPI000366EE21: cell wall hydrolase|unclassified	0.0538250731
+UniRef50_UPI0003B79FBA: O-sialoglycoprotein endopeptidase	0.0538245432
+UniRef50_UPI0003B79FBA: O-sialoglycoprotein endopeptidase|unclassified	0.0538245432
+UniRef50_UPI00016C47EA: nuclease PIN	0.0538158380
+UniRef50_UPI00016C47EA: nuclease PIN|unclassified	0.0538158380
+UniRef50_G8NQU3	0.0538147274
+UniRef50_G8NQU3|unclassified	0.0538147274
+UniRef50_UPI0003600295: hypothetical protein	0.0538104894
+UniRef50_UPI0003600295: hypothetical protein|unclassified	0.0538104894
+UniRef50_Q67PJ3: Tryptophan synthase alpha chain	0.0538084003
+UniRef50_Q67PJ3: Tryptophan synthase alpha chain|unclassified	0.0538084003
+UniRef50_UPI00046D7FA7: hypothetical protein	0.0538070025
+UniRef50_UPI00046D7FA7: hypothetical protein|unclassified	0.0538070025
+UniRef50_UPI00045E8170: hypothetical protein	0.0538067813
+UniRef50_UPI00045E8170: hypothetical protein|unclassified	0.0538067813
+UniRef50_UPI000382593D: hypothetical protein	0.0538017572
+UniRef50_UPI000382593D: hypothetical protein|unclassified	0.0538017572
+UniRef50_E2ZRR8	0.0537963368
+UniRef50_E2ZRR8|unclassified	0.0537963368
+UniRef50_UPI00045EA4A2: hypothetical protein	0.0537928262
+UniRef50_UPI00045EA4A2: hypothetical protein|unclassified	0.0537928262
+UniRef50_J7I3K9: Bcol14-2	0.0537898612
+UniRef50_J7I3K9: Bcol14-2|unclassified	0.0537898612
+UniRef50_K4LFS4: Ethanolamine utilization protein EutJ	0.0537877485
+UniRef50_K4LFS4: Ethanolamine utilization protein EutJ|unclassified	0.0537877485
+UniRef50_UPI0003454C58: glutamine synthetase	0.0537844848
+UniRef50_UPI0003454C58: glutamine synthetase|unclassified	0.0537844848
+UniRef50_Q9Z8R3: DNA gyrase subunit B	0.0537813519
+UniRef50_Q9Z8R3: DNA gyrase subunit B|unclassified	0.0537813519
+UniRef50_UPI0003B5C26B: protein TadC	0.0537762234
+UniRef50_UPI0003B5C26B: protein TadC|unclassified	0.0537762234
+UniRef50_UPI000370BC9E: hypothetical protein	0.0537753625
+UniRef50_UPI000370BC9E: hypothetical protein|unclassified	0.0537753625
+UniRef50_A0A017T0Z1	0.0537731440
+UniRef50_A0A017T0Z1|unclassified	0.0537731440
+UniRef50_UPI000473A829: hypothetical protein, partial	0.0537717759
+UniRef50_UPI000473A829: hypothetical protein, partial|unclassified	0.0537717759
+UniRef50_UPI00016C4E0E: Ribose ABC transporter (permease), partial	0.0537703184
+UniRef50_UPI00016C4E0E: Ribose ABC transporter (permease), partial|unclassified	0.0537703184
+UniRef50_UPI000462F04D: hypothetical protein	0.0537696012
+UniRef50_UPI000462F04D: hypothetical protein|unclassified	0.0537696012
+UniRef50_UPI00046883B3: hypothetical protein	0.0537678799
+UniRef50_UPI00046883B3: hypothetical protein|unclassified	0.0537678799
+UniRef50_F3NYW4: 3-carboxymuconate cyclase	0.0537600187
+UniRef50_F3NYW4: 3-carboxymuconate cyclase|unclassified	0.0537600187
+UniRef50_UPI00046743DF: permease	0.0537592846
+UniRef50_UPI00046743DF: permease|unclassified	0.0537592846
+UniRef50_UPI0003720F69: hypothetical protein	0.0537587793
+UniRef50_UPI0003720F69: hypothetical protein|unclassified	0.0537587793
+UniRef50_UPI000472F6DD: hypothetical protein	0.0537536972
+UniRef50_UPI000472F6DD: hypothetical protein|unclassified	0.0537536972
+UniRef50_UPI000468B09C: acyl-CoA dehydrogenase, partial	0.0537516989
+UniRef50_UPI000468B09C: acyl-CoA dehydrogenase, partial|unclassified	0.0537516989
+UniRef50_UPI00046E74FC: hypothetical protein	0.0537464970
+UniRef50_UPI00046E74FC: hypothetical protein|unclassified	0.0537464970
+UniRef50_Q8R9G3: Phospho-N-acetylmuramoyl-pentapeptide-transferase	0.0537391571
+UniRef50_Q8R9G3: Phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.0537391571
+UniRef50_UPI00024931AA: hypothetical protein	0.0537322340
+UniRef50_UPI00024931AA: hypothetical protein|unclassified	0.0537322340
+UniRef50_A6RGJ8: Predicted protein	0.0537294514
+UniRef50_A6RGJ8: Predicted protein|unclassified	0.0537294514
+UniRef50_R2X1V6	0.0537262470
+UniRef50_R2X1V6|unclassified	0.0537262470
+UniRef50_D3FVJ3: CtaG-like assemby protein	0.0537238191
+UniRef50_D3FVJ3: CtaG-like assemby protein|unclassified	0.0537238191
+UniRef50_UPI000413B0FF: hypothetical protein	0.0537212041
+UniRef50_UPI000413B0FF: hypothetical protein|unclassified	0.0537212041
+UniRef50_H1ALE4	0.0537185711
+UniRef50_H1ALE4|unclassified	0.0537185711
+UniRef50_N9CDI0	0.0537182478
+UniRef50_N9CDI0|unclassified	0.0537182478
+UniRef50_UPI0003802583: PE family protein	0.0537134950
+UniRef50_UPI0003802583: PE family protein|unclassified	0.0537134950
+UniRef50_UPI0003B545B7: UDP-N-acetylglucosamine 2-epimerase	0.0537124396
+UniRef50_UPI0003B545B7: UDP-N-acetylglucosamine 2-epimerase|unclassified	0.0537124396
+UniRef50_UPI00036012FF: hypothetical protein	0.0537118770
+UniRef50_UPI00036012FF: hypothetical protein|unclassified	0.0537118770
+UniRef50_Q8S4Y1: Acetyl-CoA acetyltransferase, cytosolic 1	0.0537118497
+UniRef50_Q8S4Y1: Acetyl-CoA acetyltransferase, cytosolic 1|unclassified	0.0537118497
+UniRef50_UPI0004695D37: hypothetical protein	0.0537111097
+UniRef50_UPI0004695D37: hypothetical protein|unclassified	0.0537111097
+UniRef50_V9I9H1: Bromodomain-containing protein 2	0.0537091508
+UniRef50_V9I9H1: Bromodomain-containing protein 2|unclassified	0.0537091508
+UniRef50_UPI00041FDBB6: alcohol dehydrogenase	0.0537060724
+UniRef50_UPI00041FDBB6: alcohol dehydrogenase|unclassified	0.0537060724
+UniRef50_UPI0004268284: hypothetical protein	0.0537053439
+UniRef50_UPI0004268284: hypothetical protein|unclassified	0.0537053439
+UniRef50_B3CLB3: Lon protease	0.0537030810
+UniRef50_B3CLB3: Lon protease|unclassified	0.0537030810
+UniRef50_UPI00035D804B: hypothetical protein	0.0537017707
+UniRef50_UPI00035D804B: hypothetical protein|unclassified	0.0537017707
+UniRef50_UPI00035DB7B5: hypothetical protein	0.0537015639
+UniRef50_UPI00035DB7B5: hypothetical protein|unclassified	0.0537015639
+UniRef50_K2RDC5	0.0537009178
+UniRef50_K2RDC5|unclassified	0.0537009178
+UniRef50_E3I0R9: Chromosome segregation and condensation protein ScpA	0.0537006250
+UniRef50_E3I0R9: Chromosome segregation and condensation protein ScpA|unclassified	0.0537006250
+UniRef50_UPI0003624FAB: hypothetical protein	0.0536950995
+UniRef50_UPI0003624FAB: hypothetical protein|unclassified	0.0536950995
+UniRef50_Q9L6R5: UDP-N-acetylglucosamine 2-epimerase	0.0536931088
+UniRef50_Q9L6R5: UDP-N-acetylglucosamine 2-epimerase|unclassified	0.0536931088
+UniRef50_UPI00037C2D8F: hypothetical protein	0.0536852745
+UniRef50_UPI00037C2D8F: hypothetical protein|unclassified	0.0536852745
+UniRef50_R7B8E1	0.0536780020
+UniRef50_R7B8E1|unclassified	0.0536780020
+UniRef50_F0YHZ1	0.0536758305
+UniRef50_F0YHZ1|unclassified	0.0536758305
+UniRef50_Q5YSJ6	0.0536725176
+UniRef50_Q5YSJ6|unclassified	0.0536725176
+UniRef50_UPI0003801210: hypothetical protein	0.0536677664
+UniRef50_UPI0003801210: hypothetical protein|unclassified	0.0536677664
+UniRef50_UPI0003B4603D: multidrug ABC transporter ATP-binding protein	0.0536654195
+UniRef50_UPI0003B4603D: multidrug ABC transporter ATP-binding protein|unclassified	0.0536654195
+UniRef50_F3LND9	0.0536600087
+UniRef50_F3LND9|unclassified	0.0536600087
+UniRef50_UPI000311EF59: hypothetical protein	0.0536555750
+UniRef50_UPI000311EF59: hypothetical protein|unclassified	0.0536555750
+UniRef50_UPI0004132DDF: hypothetical protein	0.0536498617
+UniRef50_UPI0004132DDF: hypothetical protein|unclassified	0.0536498617
+UniRef50_V9WIU2: Membrane-bound metallopeptidase	0.0536464807
+UniRef50_V9WIU2: Membrane-bound metallopeptidase|unclassified	0.0536464807
+UniRef50_O08319: Arginine biosynthesis bifunctional protein ArgJ	0.0536434410
+UniRef50_O08319: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.0536434410
+UniRef50_U6HXY0: Histone lysine N methyltransferase MLL3	0.0536416626
+UniRef50_U6HXY0: Histone lysine N methyltransferase MLL3|unclassified	0.0536416626
+UniRef50_UPI0003B54D00: lytic transglycosylase	0.0536340717
+UniRef50_UPI0003B54D00: lytic transglycosylase|unclassified	0.0536340717
+UniRef50_M7YEE1	0.0536259292
+UniRef50_M7YEE1|unclassified	0.0536259292
+UniRef50_UPI0003959061: sensor histidine kinase	0.0536258998
+UniRef50_UPI0003959061: sensor histidine kinase|unclassified	0.0536258998
+UniRef50_UPI00038240F5: hypothetical protein	0.0536252968
+UniRef50_UPI00038240F5: hypothetical protein|unclassified	0.0536252968
+UniRef50_P44311: Glucose-6-phosphate 1-dehydrogenase	0.0536237572
+UniRef50_P44311: Glucose-6-phosphate 1-dehydrogenase|unclassified	0.0536237572
+UniRef50_UPI0002FB09AB: hypothetical protein	0.0536213180
+UniRef50_UPI0002FB09AB: hypothetical protein|unclassified	0.0536213180
+UniRef50_UPI00040BBC52: hypothetical protein	0.0536201409
+UniRef50_UPI00040BBC52: hypothetical protein|unclassified	0.0536201409
+UniRef50_A9KL08: tRNA dimethylallyltransferase	0.0536187684
+UniRef50_A9KL08: tRNA dimethylallyltransferase|unclassified	0.0536187684
+UniRef50_UPI0003B424B2: D-Ala-D-Ala carboxypeptidase	0.0536164633
+UniRef50_UPI0003B424B2: D-Ala-D-Ala carboxypeptidase|unclassified	0.0536164633
+UniRef50_UPI00046FA196: hypothetical protein	0.0536147163
+UniRef50_UPI00046FA196: hypothetical protein|unclassified	0.0536147163
+UniRef50_UPI00046E85CB: hypothetical protein	0.0536100372
+UniRef50_UPI00046E85CB: hypothetical protein|unclassified	0.0536100372
+UniRef50_I0JKV8	0.0536014836
+UniRef50_I0JKV8|unclassified	0.0536014836
+UniRef50_UPI0003B60206: diguanylate cyclase	0.0535990598
+UniRef50_UPI0003B60206: diguanylate cyclase|unclassified	0.0535990598
+UniRef50_U6M9P9	0.0535915951
+UniRef50_U6M9P9|unclassified	0.0535915951
+UniRef50_R5YC77: Rhamnulose-1-phosphate aldolase	0.0535856745
+UniRef50_R5YC77: Rhamnulose-1-phosphate aldolase|unclassified	0.0535856745
+UniRef50_UPI00047131CB: hypothetical protein	0.0535812601
+UniRef50_UPI00047131CB: hypothetical protein|unclassified	0.0535812601
+UniRef50_UPI0003476644: hypothetical protein	0.0535784216
+UniRef50_UPI0003476644: hypothetical protein|unclassified	0.0535784216
+UniRef50_E7GLY7	0.0535744277
+UniRef50_E7GLY7|unclassified	0.0535744277
+UniRef50_J4W3Q8: Sulfur transport	0.0535718153
+UniRef50_J4W3Q8: Sulfur transport|unclassified	0.0535718153
+UniRef50_UPI0003C195B2: PREDICTED: fumarylacetoacetase-like	0.0535703858
+UniRef50_UPI0003C195B2: PREDICTED: fumarylacetoacetase-like|unclassified	0.0535703858
+UniRef50_UPI000469BA81: LysR family transcriptional regulator	0.0535689036
+UniRef50_UPI000469BA81: LysR family transcriptional regulator|unclassified	0.0535689036
+UniRef50_Q3A538: Phosphoheptose isomerase	0.0535662813
+UniRef50_Q3A538: Phosphoheptose isomerase|unclassified	0.0535662813
+UniRef50_UPI000360FD58: MULTISPECIES: penicillin-binding protein 1A	0.0535662313
+UniRef50_UPI000360FD58: MULTISPECIES: penicillin-binding protein 1A|unclassified	0.0535662313
+UniRef50_UPI0003710CF1: hypothetical protein	0.0535658768
+UniRef50_UPI0003710CF1: hypothetical protein|unclassified	0.0535658768
+UniRef50_UPI000379B136: hypothetical protein	0.0535574007
+UniRef50_UPI000379B136: hypothetical protein|unclassified	0.0535574007
+UniRef50_UPI0003688910: hypothetical protein	0.0535549219
+UniRef50_UPI0003688910: hypothetical protein|unclassified	0.0535549219
+UniRef50_A8F2H0: Formamidopyrimidine-DNA glycosylase	0.0535477553
+UniRef50_A8F2H0: Formamidopyrimidine-DNA glycosylase|unclassified	0.0535477553
+UniRef50_E3B9L2: TIGR00730 family protein	0.0535465581
+UniRef50_E3B9L2: TIGR00730 family protein|unclassified	0.0535465581
+UniRef50_UPI00046EFC80: hypothetical protein	0.0535447957
+UniRef50_UPI00046EFC80: hypothetical protein|unclassified	0.0535447957
+UniRef50_A8EXJ2: UPF0176 protein A1E_00635	0.0535437434
+UniRef50_A8EXJ2: UPF0176 protein A1E_00635|unclassified	0.0535437434
+UniRef50_W0A1S2	0.0535431161
+UniRef50_W0A1S2|unclassified	0.0535431161
+UniRef50_X1VF95: Marine sediment metagenome DNA, contig: S12H4_S10764 (Fragment)	0.0535418396
+UniRef50_X1VF95: Marine sediment metagenome DNA, contig: S12H4_S10764 (Fragment)|unclassified	0.0535418396
+UniRef50_UPI00040758D9: hypothetical protein	0.0535405191
+UniRef50_UPI00040758D9: hypothetical protein|unclassified	0.0535405191
+UniRef50_UPI00037A1445: hypothetical protein	0.0535398087
+UniRef50_UPI00037A1445: hypothetical protein|unclassified	0.0535398087
+UniRef50_UPI0004113202: hypothetical protein	0.0535388480
+UniRef50_UPI0004113202: hypothetical protein|unclassified	0.0535388480
+UniRef50_Q2LSW0: Flp pilus assembly protein	0.0535371055
+UniRef50_Q2LSW0: Flp pilus assembly protein|unclassified	0.0535371055
+UniRef50_W4UBR6: L-threonine 3-O-phosphate decarboxylase	0.0535358998
+UniRef50_W4UBR6: L-threonine 3-O-phosphate decarboxylase|unclassified	0.0535358998
+UniRef50_UPI00045746A5: PREDICTED: zinc finger CCHC domain-containing protein 2-like, partial	0.0535358327
+UniRef50_UPI00045746A5: PREDICTED: zinc finger CCHC domain-containing protein 2-like, partial|unclassified	0.0535358327
+UniRef50_B9M8V8: UDP-3-O-acylglucosamine N-acyltransferase	0.0535345671
+UniRef50_B9M8V8: UDP-3-O-acylglucosamine N-acyltransferase|unclassified	0.0535345671
+UniRef50_T0GKT6: ABC transporter permease	0.0535318129
+UniRef50_T0GKT6: ABC transporter permease|unclassified	0.0535318129
+UniRef50_Q5Z8R4	0.0535301909
+UniRef50_Q5Z8R4|unclassified	0.0535301909
+UniRef50_S9V0M4	0.0535288889
+UniRef50_S9V0M4|unclassified	0.0535288889
+UniRef50_N6UGZ5	0.0535274003
+UniRef50_N6UGZ5|unclassified	0.0535274003
+UniRef50_UPI00041C05C2: hypothetical protein	0.0535217954
+UniRef50_UPI00041C05C2: hypothetical protein|unclassified	0.0535217954
+UniRef50_UPI0001924007: PREDICTED: L-allo-threonine aldolase-like	0.0535217226
+UniRef50_UPI0001924007: PREDICTED: L-allo-threonine aldolase-like|unclassified	0.0535217226
+UniRef50_Q11E45: Short-chain dehydrogenase/reductase SDR	0.0535110004
+UniRef50_Q11E45: Short-chain dehydrogenase/reductase SDR|unclassified	0.0535110004
+UniRef50_E3I8K1: Ppx/GppA phosphatase	0.0534980792
+UniRef50_E3I8K1: Ppx/GppA phosphatase|unclassified	0.0534980792
+UniRef50_UPI00030BAF80: hypothetical protein	0.0534942542
+UniRef50_UPI00030BAF80: hypothetical protein|unclassified	0.0534942542
+UniRef50_UPI00030751D5: peptide ABC transporter ATP-binding protein	0.0534920114
+UniRef50_UPI00030751D5: peptide ABC transporter ATP-binding protein|unclassified	0.0534920114
+UniRef50_UPI000308FA76: hypothetical protein	0.0534903913
+UniRef50_UPI000308FA76: hypothetical protein|unclassified	0.0534903913
+UniRef50_UPI00040A1C88: glycerol-3-phosphate ABC transporter permease	0.0534903487
+UniRef50_UPI00040A1C88: glycerol-3-phosphate ABC transporter permease|unclassified	0.0534903487
+UniRef50_A1BFG5: Short-chain dehydrogenase/reductase SDR	0.0534900978
+UniRef50_A1BFG5: Short-chain dehydrogenase/reductase SDR|unclassified	0.0534900978
+UniRef50_UPI00046E897C: hypothetical protein	0.0534898596
+UniRef50_UPI00046E897C: hypothetical protein|unclassified	0.0534898596
+UniRef50_C5KZF4	0.0534870726
+UniRef50_C5KZF4|unclassified	0.0534870726
+UniRef50_Q81LI6: Histidine--tRNA ligase 2	0.0534839859
+UniRef50_Q81LI6: Histidine--tRNA ligase 2|unclassified	0.0534839859
+UniRef50_Q4FUU7: Formamidopyrimidine-DNA glycosylase	0.0534820801
+UniRef50_Q4FUU7: Formamidopyrimidine-DNA glycosylase|unclassified	0.0534820801
+UniRef50_UPI00047B409A: hypothetical protein	0.0534813273
+UniRef50_UPI00047B409A: hypothetical protein|unclassified	0.0534813273
+UniRef50_D8TMU2	0.0534778855
+UniRef50_D8TMU2|unclassified	0.0534778855
+UniRef50_UPI00037E6930: hypothetical protein	0.0534773856
+UniRef50_UPI00037E6930: hypothetical protein|unclassified	0.0534773856
+UniRef50_U2I2I2	0.0534697890
+UniRef50_U2I2I2|unclassified	0.0534697890
+UniRef50_Q08WY4	0.0534683011
+UniRef50_Q08WY4|unclassified	0.0534683011
+UniRef50_UPI000476DC67: LysR family transcriptional regulator	0.0534669972
+UniRef50_UPI000476DC67: LysR family transcriptional regulator|unclassified	0.0534669972
+UniRef50_UPI00037E72C2: D-ribose transporter ATP binding protein	0.0534647914
+UniRef50_UPI00037E72C2: D-ribose transporter ATP binding protein|unclassified	0.0534647914
+UniRef50_J0D169	0.0534634565
+UniRef50_J0D169|unclassified	0.0534634565
+UniRef50_D0WIW6	0.0534584017
+UniRef50_D0WIW6|unclassified	0.0534584017
+UniRef50_F6ZET0	0.0534574699
+UniRef50_F6ZET0|unclassified	0.0534574699
+UniRef50_K2DQ77: GTP-binding protein lepA	0.0534574507
+UniRef50_K2DQ77: GTP-binding protein lepA|unclassified	0.0534574507
+UniRef50_UPI00030FC743: hypothetical protein	0.0534548125
+UniRef50_UPI00030FC743: hypothetical protein|unclassified	0.0534548125
+UniRef50_UPI00046A2423: chemotaxis protein CheA	0.0534500593
+UniRef50_UPI00046A2423: chemotaxis protein CheA|unclassified	0.0534500593
+UniRef50_B2URE7: Pyridoxine 5'-phosphate synthase	0.0534495329
+UniRef50_B2URE7: Pyridoxine 5'-phosphate synthase|unclassified	0.0534495329
+UniRef50_A0A011ND40	0.0534407353
+UniRef50_A0A011ND40|unclassified	0.0534407353
+UniRef50_UPI000463A2AA: 3-hydroxybutyrate dehydrogenase	0.0534321733
+UniRef50_UPI000463A2AA: 3-hydroxybutyrate dehydrogenase|unclassified	0.0534321733
+UniRef50_UPI00045EB2E0: peptidase M4	0.0534316825
+UniRef50_UPI00045EB2E0: peptidase M4|unclassified	0.0534316825
+UniRef50_UPI0004638058: hypothetical protein	0.0534283015
+UniRef50_UPI0004638058: hypothetical protein|unclassified	0.0534283015
+UniRef50_U7NE48	0.0534265872
+UniRef50_U7NE48|unclassified	0.0534265872
+UniRef50_Q6AIL1: tRNA (cmo5U34)-methyltransferase	0.0534259236
+UniRef50_Q6AIL1: tRNA (cmo5U34)-methyltransferase|unclassified	0.0534259236
+UniRef50_I5BXK3	0.0534249591
+UniRef50_I5BXK3|unclassified	0.0534249591
+UniRef50_Q0G2X9	0.0534233980
+UniRef50_Q0G2X9|unclassified	0.0534233980
+UniRef50_Q07PU1: Ribosomal RNA small subunit methyltransferase H	0.0534205666
+UniRef50_Q07PU1: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0534205666
+UniRef50_Q7D6M2: PPE family protein	0.0534158433
+UniRef50_Q7D6M2: PPE family protein|unclassified	0.0534158433
+UniRef50_I8RZJ7: Hemolysin-type calcium-binding region (Fragment)	0.0534021291
+UniRef50_I8RZJ7: Hemolysin-type calcium-binding region (Fragment)|unclassified	0.0534021291
+UniRef50_UPI00047ADFE8: LysR family transcriptional regulator	0.0533988504
+UniRef50_UPI00047ADFE8: LysR family transcriptional regulator|unclassified	0.0533988504
+UniRef50_UPI0003769C5D: hypothetical protein	0.0533975289
+UniRef50_UPI0003769C5D: hypothetical protein|unclassified	0.0533975289
+UniRef50_Q1AVD6: Putative secreted solute-binding lipoprotein	0.0533877896
+UniRef50_Q1AVD6: Putative secreted solute-binding lipoprotein|unclassified	0.0533877896
+UniRef50_UPI00047B2432: hypothetical protein	0.0533860094
+UniRef50_UPI00047B2432: hypothetical protein|unclassified	0.0533860094
+UniRef50_A0A041GI50: PE-PGRS family protein PE_PGRS57	0.0533846859
+UniRef50_A0A041GI50: PE-PGRS family protein PE_PGRS57|unclassified	0.0533846859
+UniRef50_A0A019CH11	0.0533812448
+UniRef50_A0A019CH11|unclassified	0.0533812448
+UniRef50_UPI0002374DEC: ABC transporter, permease/ATP-binding protein	0.0533779203
+UniRef50_UPI0002374DEC: ABC transporter, permease/ATP-binding protein|unclassified	0.0533779203
+UniRef50_Q9SJM7: Uridine nucleosidase 1	0.0533769421
+UniRef50_Q9SJM7: Uridine nucleosidase 1|unclassified	0.0533769421
+UniRef50_UPI00039DC3C2: MULTISPECIES: 50S ribosomal protein L21	0.0533768163
+UniRef50_UPI00039DC3C2: MULTISPECIES: 50S ribosomal protein L21|unclassified	0.0533768163
+UniRef50_A0A011NFV5: Iron(II)-dependent oxidoreductase EgtB	0.0533765537
+UniRef50_A0A011NFV5: Iron(II)-dependent oxidoreductase EgtB|unclassified	0.0533765537
+UniRef50_C3ZGE6	0.0533760794
+UniRef50_C3ZGE6|unclassified	0.0533760794
+UniRef50_H8KZK6	0.0533733926
+UniRef50_H8KZK6|unclassified	0.0533733926
+UniRef50_Q2T580	0.0533723939
+UniRef50_Q2T580|unclassified	0.0533723939
+UniRef50_UPI00037D6F6D: hypothetical protein	0.0533707105
+UniRef50_UPI00037D6F6D: hypothetical protein|unclassified	0.0533707105
+UniRef50_UPI00042B7372: Cold shock domain protein 1	0.0533629427
+UniRef50_UPI00042B7372: Cold shock domain protein 1|unclassified	0.0533629427
+UniRef50_UPI0003B3D996: luciferase, partial	0.0533608521
+UniRef50_UPI0003B3D996: luciferase, partial|unclassified	0.0533608521
+UniRef50_UPI000377E954: hypothetical protein	0.0533541987
+UniRef50_UPI000377E954: hypothetical protein|unclassified	0.0533541987
+UniRef50_A8F7Z9: Ornithine carbamoyltransferase	0.0533534745
+UniRef50_A8F7Z9: Ornithine carbamoyltransferase|unclassified	0.0533534745
+UniRef50_A0A037Y299: Replication initiation protein (Fragment)	0.0533531304
+UniRef50_A0A037Y299: Replication initiation protein (Fragment)|unclassified	0.0533531304
+UniRef50_UPI00016C00A7: Homoserine dehydrogenase, partial	0.0533482150
+UniRef50_UPI00016C00A7: Homoserine dehydrogenase, partial|unclassified	0.0533482150
+UniRef50_L0EVD8: NADPH:quinone oxidoreductase 2	0.0533467245
+UniRef50_L0EVD8: NADPH:quinone oxidoreductase 2|unclassified	0.0533467245
+UniRef50_UPI0004744F96: amidohydrolase	0.0533462181
+UniRef50_UPI0004744F96: amidohydrolase|unclassified	0.0533462181
+UniRef50_UPI00037E50A7: hypothetical protein	0.0533458135
+UniRef50_UPI00037E50A7: hypothetical protein|unclassified	0.0533458135
+UniRef50_Q5LS56: Acrylyl-CoA reductase AcuI	0.0533342087
+UniRef50_Q5LS56: Acrylyl-CoA reductase AcuI|unclassified	0.0533342087
+UniRef50_UPI000478D98F: ABC transporter permease	0.0533329454
+UniRef50_UPI000478D98F: ABC transporter permease|unclassified	0.0533329454
+UniRef50_Q59998: Zinc-transporting ATPase	0.0533319313
+UniRef50_Q59998: Zinc-transporting ATPase|unclassified	0.0533319313
+UniRef50_UPI000472DEC2: hypothetical protein	0.0533303025
+UniRef50_UPI000472DEC2: hypothetical protein|unclassified	0.0533303025
+UniRef50_Q3STT6: Ribosomal RNA small subunit methyltransferase H	0.0533259077
+UniRef50_Q3STT6: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0533259077
+UniRef50_UPI00036FB209: hypothetical protein	0.0533153922
+UniRef50_UPI00036FB209: hypothetical protein|unclassified	0.0533153922
+UniRef50_F2IM99: Cysteine synthase B	0.0533145357
+UniRef50_F2IM99: Cysteine synthase B|unclassified	0.0533145357
+UniRef50_UPI0002FD1A71: hypothetical protein	0.0533142216
+UniRef50_UPI0002FD1A71: hypothetical protein|unclassified	0.0533142216
+UniRef50_UPI00036B014A: hypothetical protein	0.0533131831
+UniRef50_UPI00036B014A: hypothetical protein|unclassified	0.0533131831
+UniRef50_UPI000349CFD5: hypothetical protein	0.0533120156
+UniRef50_UPI000349CFD5: hypothetical protein|unclassified	0.0533120156
+UniRef50_UPI000476B7E5: farnesyl-diphosphate synthase	0.0533037760
+UniRef50_UPI000476B7E5: farnesyl-diphosphate synthase|unclassified	0.0533037760
+UniRef50_H6SSP1: CRISPR-associated helicase Cas3, putative	0.0533003817
+UniRef50_H6SSP1: CRISPR-associated helicase Cas3, putative|unclassified	0.0533003817
+UniRef50_Q9GKM4: Branched-chain-amino-acid aminotransferase, cytosolic	0.0532980906
+UniRef50_Q9GKM4: Branched-chain-amino-acid aminotransferase, cytosolic|unclassified	0.0532980906
+UniRef50_UPI0004785E48: hypothetical protein	0.0532971575
+UniRef50_UPI0004785E48: hypothetical protein|unclassified	0.0532971575
+UniRef50_W0HLX6: YbgA	0.0532887947
+UniRef50_W0HLX6: YbgA|unclassified	0.0532887947
+UniRef50_A1WY05: Tryptophan synthase alpha chain	0.0532871203
+UniRef50_A1WY05: Tryptophan synthase alpha chain|unclassified	0.0532871203
+UniRef50_UPI0003B7298F: ATP-dependent Zn protease	0.0532860174
+UniRef50_UPI0003B7298F: ATP-dependent Zn protease|unclassified	0.0532860174
+UniRef50_UPI000366025E: MULTISPECIES: hypothetical protein	0.0532850102
+UniRef50_UPI000366025E: MULTISPECIES: hypothetical protein|unclassified	0.0532850102
+UniRef50_E4T5N2: Alanine dehydrogenase/PNT domain protein	0.0532837002
+UniRef50_E4T5N2: Alanine dehydrogenase/PNT domain protein|unclassified	0.0532837002
+UniRef50_UPI000464B4A3: MULTISPECIES: peptide ABC transporter ATP-binding protein	0.0532832249
+UniRef50_UPI000464B4A3: MULTISPECIES: peptide ABC transporter ATP-binding protein|unclassified	0.0532832249
+UniRef50_UPI000365E816: hypothetical protein	0.0532776005
+UniRef50_UPI000365E816: hypothetical protein|unclassified	0.0532776005
+UniRef50_Z9JK63: Transposase	0.0532767122
+UniRef50_Z9JK63: Transposase|unclassified	0.0532767122
+UniRef50_UPI00046AE78D: type III secretion protein HrpI	0.0532754361
+UniRef50_UPI00046AE78D: type III secretion protein HrpI|unclassified	0.0532754361
+UniRef50_UPI0003B6AA77: hypothetical protein	0.0532741745
+UniRef50_UPI0003B6AA77: hypothetical protein|unclassified	0.0532741745
+UniRef50_Q8H107: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex 2, mitochondrial	0.0532737958
+UniRef50_Q8H107: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex 2, mitochondrial|unclassified	0.0532737958
+UniRef50_UPI0003B41AB2: 1-phosphofructokinase	0.0532734691
+UniRef50_UPI0003B41AB2: 1-phosphofructokinase|unclassified	0.0532734691
+UniRef50_UPI000378237D: hypothetical protein	0.0532705447
+UniRef50_UPI000378237D: hypothetical protein|unclassified	0.0532705447
+UniRef50_E9KSL7: Integrase	0.0532700418
+UniRef50_E9KSL7: Integrase|unclassified	0.0532700418
+UniRef50_E3I4P6	0.0532646748
+UniRef50_E3I4P6|unclassified	0.0532646748
+UniRef50_UPI00016A9781: hypothetical protein	0.0532611825
+UniRef50_UPI00016A9781: hypothetical protein|unclassified	0.0532611825
+UniRef50_UPI000472C37E: PTS fructose transporter subunit IIC, partial	0.0532573666
+UniRef50_UPI000472C37E: PTS fructose transporter subunit IIC, partial|unclassified	0.0532573666
+UniRef50_Q03EL2: ATP synthase subunit alpha	0.0532565778
+UniRef50_Q03EL2: ATP synthase subunit alpha|unclassified	0.0532565778
+UniRef50_UPI00036E16E9: 30S ribosomal protein S1	0.0532560404
+UniRef50_UPI00036E16E9: 30S ribosomal protein S1|unclassified	0.0532560404
+UniRef50_A8F7W0: N-acetylmuramic acid 6-phosphate etherase	0.0532537823
+UniRef50_A8F7W0: N-acetylmuramic acid 6-phosphate etherase|unclassified	0.0532537823
+UniRef50_Q5LF75	0.0532521661
+UniRef50_Q5LF75|unclassified	0.0532521661
+UniRef50_UPI00042A910D: enoyl-CoA hydratase	0.0532513387
+UniRef50_UPI00042A910D: enoyl-CoA hydratase|unclassified	0.0532513387
+UniRef50_K8EUS8	0.0532446938
+UniRef50_K8EUS8|unclassified	0.0532446938
+UniRef50_UPI00047D89FD: hypothetical protein	0.0532436147
+UniRef50_UPI00047D89FD: hypothetical protein|unclassified	0.0532436147
+UniRef50_M1QRG5: Enterotoxigenic protein (Fragment)	0.0532397524
+UniRef50_M1QRG5: Enterotoxigenic protein (Fragment)|unclassified	0.0532397524
+UniRef50_UPI0003B76B6C: methanol dehydrogenase	0.0532377979
+UniRef50_UPI0003B76B6C: methanol dehydrogenase|unclassified	0.0532377979
+UniRef50_UPI00047C142B: hypothetical protein	0.0532377449
+UniRef50_UPI00047C142B: hypothetical protein|unclassified	0.0532377449
+UniRef50_Q8ER61: UPF0348 protein OB1454	0.0532342245
+UniRef50_Q8ER61: UPF0348 protein OB1454|unclassified	0.0532342245
+UniRef50_UPI00035FC812: hypothetical protein	0.0532318553
+UniRef50_UPI00035FC812: hypothetical protein|unclassified	0.0532318553
+UniRef50_UPI00040C8CAA: cytochrome C oxidase assembly protein	0.0532317315
+UniRef50_UPI00040C8CAA: cytochrome C oxidase assembly protein|unclassified	0.0532317315
+UniRef50_Q5V7Y6	0.0532280580
+UniRef50_Q5V7Y6|unclassified	0.0532280580
+UniRef50_A9ACR1: NAD-dependent epimerase/dehydratase	0.0532277445
+UniRef50_A9ACR1: NAD-dependent epimerase/dehydratase|unclassified	0.0532277445
+UniRef50_UPI0002887958: sarcosine oxidase subunit alpha	0.0532273057
+UniRef50_UPI0002887958: sarcosine oxidase subunit alpha|unclassified	0.0532273057
+UniRef50_G8RBA4: Na(+) H(+) antiporter subunit A	0.0532208238
+UniRef50_G8RBA4: Na(+) H(+) antiporter subunit A|unclassified	0.0532208238
+UniRef50_A9NHF4: Tyrosine--tRNA ligase	0.0532193519
+UniRef50_A9NHF4: Tyrosine--tRNA ligase|unclassified	0.0532193519
+UniRef50_UPI0003B50149: 5-amino-6-(5-phosphoribosylamino)uracil reductase	0.0532166625
+UniRef50_UPI0003B50149: 5-amino-6-(5-phosphoribosylamino)uracil reductase|unclassified	0.0532166625
+UniRef50_V9B3A7	0.0532135499
+UniRef50_V9B3A7|unclassified	0.0532135499
+UniRef50_UPI0003177A70: hypothetical protein	0.0532127540
+UniRef50_UPI0003177A70: hypothetical protein|unclassified	0.0532127540
+UniRef50_UPI000479C12C: hypothetical protein	0.0532119186
+UniRef50_UPI000479C12C: hypothetical protein|unclassified	0.0532119186
+UniRef50_UPI000373B7EF: hypothetical protein	0.0532059949
+UniRef50_UPI000373B7EF: hypothetical protein|unclassified	0.0532059949
+UniRef50_H5TWV5	0.0531905529
+UniRef50_H5TWV5|unclassified	0.0531905529
+UniRef50_R6H0W7	0.0531877220
+UniRef50_R6H0W7|unclassified	0.0531877220
+UniRef50_UPI00037DACA5: hypothetical protein	0.0531839408
+UniRef50_UPI00037DACA5: hypothetical protein|unclassified	0.0531839408
+UniRef50_UPI0002E18D8D: hypothetical protein	0.0531797157
+UniRef50_UPI0002E18D8D: hypothetical protein|unclassified	0.0531797157
+UniRef50_W4TKQ6	0.0531766465
+UniRef50_W4TKQ6|unclassified	0.0531766465
+UniRef50_UPI000372AFE8: hypothetical protein	0.0531764630
+UniRef50_UPI000372AFE8: hypothetical protein|unclassified	0.0531764630
+UniRef50_K7DYW2	0.0531760907
+UniRef50_K7DYW2|unclassified	0.0531760907
+UniRef50_UPI00047AED1A: hypothetical protein	0.0531760734
+UniRef50_UPI00047AED1A: hypothetical protein|unclassified	0.0531760734
+UniRef50_UPI00037FFF1A: hypothetical protein	0.0531748967
+UniRef50_UPI00037FFF1A: hypothetical protein|unclassified	0.0531748967
+UniRef50_W4SDL8	0.0531742889
+UniRef50_W4SDL8|unclassified	0.0531742889
+UniRef50_N6U9J3	0.0531710477
+UniRef50_N6U9J3|unclassified	0.0531710477
+UniRef50_O29353: 4-hydroxy-tetrahydrodipicolinate reductase	0.0531695468
+UniRef50_O29353: 4-hydroxy-tetrahydrodipicolinate reductase|unclassified	0.0531695468
+UniRef50_UPI0002882421: N-acetylmuramoyl-L-alanine amidase XlyB	0.0531677371
+UniRef50_UPI0002882421: N-acetylmuramoyl-L-alanine amidase XlyB|unclassified	0.0531677371
+UniRef50_UPI0003808063: hypothetical protein	0.0531661702
+UniRef50_UPI0003808063: hypothetical protein|unclassified	0.0531661702
+UniRef50_A6E5Q0	0.0531656651
+UniRef50_A6E5Q0|unclassified	0.0531656651
+UniRef50_K2JVF6	0.0531646557
+UniRef50_K2JVF6|unclassified	0.0531646557
+UniRef50_W7W6N9	0.0531603650
+UniRef50_W7W6N9|unclassified	0.0531603650
+UniRef50_UPI00047674D5: hypothetical protein	0.0531597293
+UniRef50_UPI00047674D5: hypothetical protein|unclassified	0.0531597293
+UniRef50_I4CR94	0.0531562356
+UniRef50_I4CR94|unclassified	0.0531562356
+UniRef50_UPI00016C49DC: histidinol-phosphate phosphatase, putative	0.0531560527
+UniRef50_UPI00016C49DC: histidinol-phosphate phosphatase, putative|unclassified	0.0531560527
+UniRef50_UPI000258E601	0.0531537666
+UniRef50_UPI000258E601|unclassified	0.0531537666
+UniRef50_Q3AC05: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit	0.0531492340
+UniRef50_Q3AC05: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit|unclassified	0.0531492340
+UniRef50_UPI000411FA10: hypothetical protein	0.0531479124
+UniRef50_UPI000411FA10: hypothetical protein|unclassified	0.0531479124
+UniRef50_K7AVX2: Predicted ATPase	0.0531419042
+UniRef50_K7AVX2: Predicted ATPase|unclassified	0.0531419042
+UniRef50_UPI0003B315F5: ribosomal protein S6 modification protein	0.0531388267
+UniRef50_UPI0003B315F5: ribosomal protein S6 modification protein|unclassified	0.0531388267
+UniRef50_UPI00047C9435: LysR family transcriptional regulator	0.0531381074
+UniRef50_UPI00047C9435: LysR family transcriptional regulator|unclassified	0.0531381074
+UniRef50_UPI00036E214F: hypothetical protein	0.0531372552
+UniRef50_UPI00036E214F: hypothetical protein|unclassified	0.0531372552
+UniRef50_UPI0003B672DD: serine/threonine protein phosphatase	0.0531367072
+UniRef50_UPI0003B672DD: serine/threonine protein phosphatase|unclassified	0.0531367072
+UniRef50_UPI0003811DAF: hypothetical protein	0.0531311720
+UniRef50_UPI0003811DAF: hypothetical protein|unclassified	0.0531311720
+UniRef50_UPI000375B834: hypothetical protein	0.0531297554
+UniRef50_UPI000375B834: hypothetical protein|unclassified	0.0531297554
+UniRef50_Q60AA3: Lipid A export ATP-binding/permease protein MsbA	0.0531285879
+UniRef50_Q60AA3: Lipid A export ATP-binding/permease protein MsbA|unclassified	0.0531285879
+UniRef50_Q8KDE3: N-acetyl-gamma-glutamyl-phosphate reductase	0.0531203694
+UniRef50_Q8KDE3: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.0531203694
+UniRef50_N6WQR8	0.0531127361
+UniRef50_N6WQR8|unclassified	0.0531127361
+UniRef50_UPI00047EC8C1: hypothetical protein	0.0531055074
+UniRef50_UPI00047EC8C1: hypothetical protein|unclassified	0.0531055074
+UniRef50_UPI00036B67AF: hypothetical protein	0.0531004437
+UniRef50_UPI00036B67AF: hypothetical protein|unclassified	0.0531004437
+UniRef50_UPI0003B75AF5: hypothetical protein	0.0530984669
+UniRef50_UPI0003B75AF5: hypothetical protein|unclassified	0.0530984669
+UniRef50_A0A023USF6: Colanic acid biosynthesis protein	0.0530969434
+UniRef50_A0A023USF6: Colanic acid biosynthesis protein|unclassified	0.0530969434
+UniRef50_U7PHW1	0.0530962722
+UniRef50_U7PHW1|unclassified	0.0530962722
+UniRef50_Q5QX02: N-acetyl-gamma-glutamyl-phosphate reductase	0.0530924949
+UniRef50_Q5QX02: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.0530924949
+UniRef50_UPI0004666ABA: hypothetical protein	0.0530919401
+UniRef50_UPI0004666ABA: hypothetical protein|unclassified	0.0530919401
+UniRef50_C2CHP6: SH3 domain protein	0.0530864494
+UniRef50_C2CHP6: SH3 domain protein|unclassified	0.0530864494
+UniRef50_UPI000475A0A0: hypothetical protein	0.0530701250
+UniRef50_UPI000475A0A0: hypothetical protein|unclassified	0.0530701250
+UniRef50_UPI000474A850: hypothetical protein, partial	0.0530679613
+UniRef50_UPI000474A850: hypothetical protein, partial|unclassified	0.0530679613
+UniRef50_UPI0003D71460: PREDICTED: ribose-phosphate pyrophosphokinase 2 isoform X1	0.0530653841
+UniRef50_UPI0003D71460: PREDICTED: ribose-phosphate pyrophosphokinase 2 isoform X1|unclassified	0.0530653841
+UniRef50_UPI0003B6B525: ABC transporter substrate-binding protein	0.0530649714
+UniRef50_UPI0003B6B525: ABC transporter substrate-binding protein|unclassified	0.0530649714
+UniRef50_UPI00047AF90A: hypothetical protein	0.0530647578
+UniRef50_UPI00047AF90A: hypothetical protein|unclassified	0.0530647578
+UniRef50_A5FMG2: Leucine--tRNA ligase	0.0530604243
+UniRef50_A5FMG2: Leucine--tRNA ligase|unclassified	0.0530604243
+UniRef50_UPI00046F8172: hypothetical protein, partial	0.0530470951
+UniRef50_UPI00046F8172: hypothetical protein, partial|unclassified	0.0530470951
+UniRef50_UPI000466A496: hypothetical protein	0.0530447750
+UniRef50_UPI000466A496: hypothetical protein|unclassified	0.0530447750
+UniRef50_UPI0003F7C0AC: hypothetical protein	0.0530443589
+UniRef50_UPI0003F7C0AC: hypothetical protein|unclassified	0.0530443589
+UniRef50_UPI00033188FF: PREDICTED: translation initiation factor IF-2-like	0.0530404715
+UniRef50_UPI00033188FF: PREDICTED: translation initiation factor IF-2-like|unclassified	0.0530404715
+UniRef50_Q72GQ7: Tripartite transporter, large subunit	0.0530364174
+UniRef50_Q72GQ7: Tripartite transporter, large subunit|unclassified	0.0530364174
+UniRef50_UPI0003632877: hypothetical protein	0.0530310090
+UniRef50_UPI0003632877: hypothetical protein|unclassified	0.0530310090
+UniRef50_UPI000333DFBD: PREDICTED: orphan sodium- and chloride-dependent neurotransmitter transporter NTT5-like	0.0530308887
+UniRef50_UPI000333DFBD: PREDICTED: orphan sodium- and chloride-dependent neurotransmitter transporter NTT5-like|unclassified	0.0530308887
+UniRef50_K8F1S1	0.0530260319
+UniRef50_K8F1S1|unclassified	0.0530260319
+UniRef50_G8PRB6: TRAP dicarboxylate transporter, DctM subunit	0.0530212788
+UniRef50_G8PRB6: TRAP dicarboxylate transporter, DctM subunit|unclassified	0.0530212788
+UniRef50_L7U7P5: PT repeat/DnaJ domain-containing protein	0.0530181301
+UniRef50_L7U7P5: PT repeat/DnaJ domain-containing protein|unclassified	0.0530181301
+UniRef50_UPI0002896C98: FMN-dependent dehydrogenase	0.0530177070
+UniRef50_UPI0002896C98: FMN-dependent dehydrogenase|unclassified	0.0530177070
+UniRef50_UPI00036F909A: hypothetical protein	0.0530128474
+UniRef50_UPI00036F909A: hypothetical protein|unclassified	0.0530128474
+UniRef50_B9MQ98: Phospho-N-acetylmuramoyl-pentapeptide-transferase	0.0530096662
+UniRef50_B9MQ98: Phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.0530096662
+UniRef50_W4KDN5	0.0530062870
+UniRef50_W4KDN5|unclassified	0.0530062870
+UniRef50_Q54CN7: Cysteine synthase	0.0530040469
+UniRef50_Q54CN7: Cysteine synthase|unclassified	0.0530040469
+UniRef50_UPI0003B3B858: membrane protein	0.0529949566
+UniRef50_UPI0003B3B858: membrane protein|unclassified	0.0529949566
+UniRef50_UPI000469D9CE: hypothetical protein	0.0529946779
+UniRef50_UPI000469D9CE: hypothetical protein|unclassified	0.0529946779
+UniRef50_W5XIV0: GTPase Obg	0.0529931070
+UniRef50_W5XIV0: GTPase Obg|unclassified	0.0529931070
+UniRef50_UPI000364276D: hypothetical protein	0.0529904449
+UniRef50_UPI000364276D: hypothetical protein|unclassified	0.0529904449
+UniRef50_R6WDD5	0.0529903318
+UniRef50_R6WDD5|unclassified	0.0529903318
+UniRef50_UPI00037FF207: hypothetical protein	0.0529872097
+UniRef50_UPI00037FF207: hypothetical protein|unclassified	0.0529872097
+UniRef50_UPI00046EF940: hypothetical protein	0.0529862945
+UniRef50_UPI00046EF940: hypothetical protein|unclassified	0.0529862945
+UniRef50_X0QCY3: ABC transporter substrate-binding protein	0.0529840883
+UniRef50_X0QCY3: ABC transporter substrate-binding protein|unclassified	0.0529840883
+UniRef50_U6I1N1: 2 methoxy 6 polyprenyl 1,4 benzoquinol	0.0529838329
+UniRef50_U6I1N1: 2 methoxy 6 polyprenyl 1,4 benzoquinol|unclassified	0.0529838329
+UniRef50_UPI00035CE04D: hypothetical protein	0.0529826327
+UniRef50_UPI00035CE04D: hypothetical protein|unclassified	0.0529826327
+UniRef50_F5XR66	0.0529825583
+UniRef50_F5XR66|unclassified	0.0529825583
+UniRef50_J3LC98	0.0529788653
+UniRef50_J3LC98|unclassified	0.0529788653
+UniRef50_UPI000478E53F: hypothetical protein	0.0529754561
+UniRef50_UPI000478E53F: hypothetical protein|unclassified	0.0529754561
+UniRef50_F5WR25: Lysophospholipase	0.0529740212
+UniRef50_F5WR25: Lysophospholipase|unclassified	0.0529740212
+UniRef50_UPI00037BC24B: hypothetical protein	0.0529722378
+UniRef50_UPI00037BC24B: hypothetical protein|unclassified	0.0529722378
+UniRef50_C4RP74: Oxidoreductase	0.0529708849
+UniRef50_C4RP74: Oxidoreductase|unclassified	0.0529708849
+UniRef50_UPI000375F3B9: hypothetical protein	0.0529704492
+UniRef50_UPI000375F3B9: hypothetical protein|unclassified	0.0529704492
+UniRef50_Q04E61: tRNA N6-adenosine threonylcarbamoyltransferase	0.0529661926
+UniRef50_Q04E61: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.0529661926
+UniRef50_UPI0003747EBD: DNA repair protein RecN, partial	0.0529626587
+UniRef50_UPI0003747EBD: DNA repair protein RecN, partial|unclassified	0.0529626587
+UniRef50_UPI000470A4DD: hypothetical protein	0.0529604685
+UniRef50_UPI000470A4DD: hypothetical protein|unclassified	0.0529604685
+UniRef50_J0QT90	0.0529563874
+UniRef50_J0QT90|unclassified	0.0529563874
+UniRef50_B0TGQ8: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit	0.0529559673
+UniRef50_B0TGQ8: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit|unclassified	0.0529559673
+UniRef50_UPI0003659A23: hypothetical protein	0.0529552535
+UniRef50_UPI0003659A23: hypothetical protein|unclassified	0.0529552535
+UniRef50_UPI0002E39CBB: hypothetical protein	0.0529536855
+UniRef50_UPI0002E39CBB: hypothetical protein|unclassified	0.0529536855
+UniRef50_UPI00035E404B: ABC transporter	0.0529535774
+UniRef50_UPI00035E404B: ABC transporter|unclassified	0.0529535774
+UniRef50_UPI00047EB857: geranyl transferase	0.0529522793
+UniRef50_UPI00047EB857: geranyl transferase|unclassified	0.0529522793
+UniRef50_UPI000288B21D: MarR family transcriptional regulator	0.0529494898
+UniRef50_UPI000288B21D: MarR family transcriptional regulator|unclassified	0.0529494898
+UniRef50_UPI0003C10A99: PREDICTED: methylcrotonoyl-CoA carboxylase beta chain, mitochondrial-like	0.0529479712
+UniRef50_UPI0003C10A99: PREDICTED: methylcrotonoyl-CoA carboxylase beta chain, mitochondrial-like|unclassified	0.0529479712
+UniRef50_W8BL78: Zinc finger matrin-type protein CG9776 (Fragment)	0.0529425463
+UniRef50_W8BL78: Zinc finger matrin-type protein CG9776 (Fragment)|unclassified	0.0529425463
+UniRef50_H5V1R3: Formate-dependent nitrite reductase subunit NrfF/G	0.0529417417
+UniRef50_H5V1R3: Formate-dependent nitrite reductase subunit NrfF/G|unclassified	0.0529417417
+UniRef50_UPI0003C1568F: PREDICTED: putative aldehyde dehydrogenase-like protein C922.07c-like	0.0529399058
+UniRef50_UPI0003C1568F: PREDICTED: putative aldehyde dehydrogenase-like protein C922.07c-like|unclassified	0.0529399058
+UniRef50_G4QDH2	0.0529397553
+UniRef50_G4QDH2|unclassified	0.0529397553
+UniRef50_UPI000408C0D1: L-threonine 3-dehydrogenase	0.0529396145
+UniRef50_UPI000408C0D1: L-threonine 3-dehydrogenase|unclassified	0.0529396145
+UniRef50_A3JLX9	0.0529299760
+UniRef50_A3JLX9|unclassified	0.0529299760
+UniRef50_T5AQV8	0.0529282844
+UniRef50_T5AQV8|unclassified	0.0529282844
+UniRef50_UPI0003B374CB: NADPH dehydrogenase	0.0529281006
+UniRef50_UPI0003B374CB: NADPH dehydrogenase|unclassified	0.0529281006
+UniRef50_UPI0003B51D70: imidazole glycerol phosphate synthase	0.0529279533
+UniRef50_UPI0003B51D70: imidazole glycerol phosphate synthase|unclassified	0.0529279533
+UniRef50_P37113: N-carbamoyl-L-amino acid hydrolase	0.0529225744
+UniRef50_P37113: N-carbamoyl-L-amino acid hydrolase|unclassified	0.0529225744
+UniRef50_A8TMG0: YeeE/YedE	0.0529211443
+UniRef50_A8TMG0: YeeE/YedE|unclassified	0.0529211443
+UniRef50_UPI00035064CE: PREDICTED: translation initiation factor IF-2-like	0.0529182283
+UniRef50_UPI00035064CE: PREDICTED: translation initiation factor IF-2-like|unclassified	0.0529182283
+UniRef50_UPI00046F2D47: hypothetical protein	0.0529152930
+UniRef50_UPI00046F2D47: hypothetical protein|unclassified	0.0529152930
+UniRef50_UPI0003642310: hypothetical protein	0.0529087174
+UniRef50_UPI0003642310: hypothetical protein|unclassified	0.0529087174
+UniRef50_F8G601: Cobalamin synthesis protein P47K	0.0529064250
+UniRef50_F8G601: Cobalamin synthesis protein P47K|unclassified	0.0529064250
+UniRef50_UPI0003B4EF9E: ATPase, partial	0.0528921812
+UniRef50_UPI0003B4EF9E: ATPase, partial|unclassified	0.0528921812
+UniRef50_UPI00036104E5: hypothetical protein	0.0528860781
+UniRef50_UPI00036104E5: hypothetical protein|unclassified	0.0528860781
+UniRef50_K2M9L9: HK97 family phage portal protein	0.0528823169
+UniRef50_K2M9L9: HK97 family phage portal protein|unclassified	0.0528823169
+UniRef50_Q8R7B8: N-acetyl-gamma-glutamyl-phosphate reductase	0.0528814607
+UniRef50_Q8R7B8: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.0528814607
+UniRef50_A2SDV6: 3-methyl-2-oxobutanoate hydroxymethyltransferase 1	0.0528777621
+UniRef50_A2SDV6: 3-methyl-2-oxobutanoate hydroxymethyltransferase 1|unclassified	0.0528777621
+UniRef50_UPI00036A9F1E: hypothetical protein	0.0528753102
+UniRef50_UPI00036A9F1E: hypothetical protein|unclassified	0.0528753102
+UniRef50_R0E0A4	0.0528703108
+UniRef50_R0E0A4|unclassified	0.0528703108
+UniRef50_UPI0003809EBA: hypothetical protein	0.0528701403
+UniRef50_UPI0003809EBA: hypothetical protein|unclassified	0.0528701403
+UniRef50_M7Z1S8	0.0528692561
+UniRef50_M7Z1S8|unclassified	0.0528692561
+UniRef50_UPI0002FB5796: hypothetical protein	0.0528659596
+UniRef50_UPI0002FB5796: hypothetical protein|unclassified	0.0528659596
+UniRef50_Q4SUB1: Chromosome 3 SCAF13974, whole genome shotgun sequence	0.0528629704
+UniRef50_Q4SUB1: Chromosome 3 SCAF13974, whole genome shotgun sequence|unclassified	0.0528629704
+UniRef50_UPI00047854C4: hypothetical protein	0.0528531336
+UniRef50_UPI00047854C4: hypothetical protein|unclassified	0.0528531336
+UniRef50_W7LDD0	0.0528476228
+UniRef50_W7LDD0|unclassified	0.0528476228
+UniRef50_UPI000255BD77: flagellar basal body rod protein FlgG	0.0528454814
+UniRef50_UPI000255BD77: flagellar basal body rod protein FlgG|unclassified	0.0528454814
+UniRef50_C5YUZ9	0.0528437137
+UniRef50_C5YUZ9|unclassified	0.0528437137
+UniRef50_M9LY69: Predicted membrane protein	0.0528407579
+UniRef50_M9LY69: Predicted membrane protein|unclassified	0.0528407579
+UniRef50_C8RUA3	0.0528402172
+UniRef50_C8RUA3|unclassified	0.0528402172
+UniRef50_UPI000375E08E: hypothetical protein	0.0528394366
+UniRef50_UPI000375E08E: hypothetical protein|unclassified	0.0528394366
+UniRef50_UPI000362D166: MULTISPECIES: hypothetical protein	0.0528392281
+UniRef50_UPI000362D166: MULTISPECIES: hypothetical protein|unclassified	0.0528392281
+UniRef50_B0TFC9: Bifunctional protein FolD	0.0528381849
+UniRef50_B0TFC9: Bifunctional protein FolD|unclassified	0.0528381849
+UniRef50_UPI000376227E: hypothetical protein	0.0528369773
+UniRef50_UPI000376227E: hypothetical protein|unclassified	0.0528369773
+UniRef50_UPI0002193D96: glutamate racemase/Nucleoside-triphosphatase	0.0528315963
+UniRef50_UPI0002193D96: glutamate racemase/Nucleoside-triphosphatase|unclassified	0.0528315963
+UniRef50_E3IVI0	0.0528276692
+UniRef50_E3IVI0|unclassified	0.0528276692
+UniRef50_UPI000360C55F: hypothetical protein	0.0528225169
+UniRef50_UPI000360C55F: hypothetical protein|unclassified	0.0528225169
+UniRef50_A0A021VZ37	0.0528186183
+UniRef50_A0A021VZ37|unclassified	0.0528186183
+UniRef50_UPI0004681EDA: chemotaxis protein	0.0528174915
+UniRef50_UPI0004681EDA: chemotaxis protein|unclassified	0.0528174915
+UniRef50_E3ZCM1: Internalin A	0.0528167660
+UniRef50_E3ZCM1: Internalin A|unclassified	0.0528167660
+UniRef50_G9Q3U6: TQXA domain-containing protein	0.0528027950
+UniRef50_G9Q3U6: TQXA domain-containing protein|unclassified	0.0528027950
+UniRef50_G4AY30: Exopolyphosphatase	0.0528023854
+UniRef50_G4AY30: Exopolyphosphatase|unclassified	0.0528023854
+UniRef50_UPI00037273D5: hypothetical protein	0.0527965497
+UniRef50_UPI00037273D5: hypothetical protein|unclassified	0.0527965497
+UniRef50_B2IIU1: Rhodanese domain protein	0.0527947522
+UniRef50_B2IIU1: Rhodanese domain protein|unclassified	0.0527947522
+UniRef50_W7W4N3	0.0527932844
+UniRef50_W7W4N3|unclassified	0.0527932844
+UniRef50_UPI00038228EC: hypothetical protein	0.0527911235
+UniRef50_UPI00038228EC: hypothetical protein|unclassified	0.0527911235
+UniRef50_B0KAL7: 4-hydroxy-tetrahydrodipicolinate synthase	0.0527864686
+UniRef50_B0KAL7: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0527864686
+UniRef50_R1IE11	0.0527855969
+UniRef50_R1IE11|unclassified	0.0527855969
+UniRef50_R5SXN7: Phosphoglycerate mutase family protein	0.0527842201
+UniRef50_R5SXN7: Phosphoglycerate mutase family protein|unclassified	0.0527842201
+UniRef50_UPI00035D659D: hypothetical protein	0.0527730169
+UniRef50_UPI00035D659D: hypothetical protein|unclassified	0.0527730169
+UniRef50_UPI0003803727: hypothetical protein	0.0527724145
+UniRef50_UPI0003803727: hypothetical protein|unclassified	0.0527724145
+UniRef50_H7DG04: Enoyl-[acyl-carrier protein] reductase	0.0527722741
+UniRef50_H7DG04: Enoyl-[acyl-carrier protein] reductase|unclassified	0.0527722741
+UniRef50_UPI00039B6D58: hypothetical protein	0.0527684265
+UniRef50_UPI00039B6D58: hypothetical protein|unclassified	0.0527684265
+UniRef50_UPI000417C9FD: DNA repair protein RadA	0.0527673910
+UniRef50_UPI000417C9FD: DNA repair protein RadA|unclassified	0.0527673910
+UniRef50_UPI00035A01D7: PREDICTED: midasin-like	0.0527649244
+UniRef50_UPI00035A01D7: PREDICTED: midasin-like|unclassified	0.0527649244
+UniRef50_UPI0004663721: hypothetical protein	0.0527578502
+UniRef50_UPI0004663721: hypothetical protein|unclassified	0.0527578502
+UniRef50_T9LFH4: Toxin YeeV	0.0527570769
+UniRef50_T9LFH4: Toxin YeeV|unclassified	0.0527570769
+UniRef50_T0E2F7: SH3 domain protein	0.0527564368
+UniRef50_T0E2F7: SH3 domain protein|unclassified	0.0527564368
+UniRef50_Q9JVD3: Ribonuclease 3	0.0527560489
+UniRef50_Q9JVD3: Ribonuclease 3|unclassified	0.0527560489
+UniRef50_G9Z4A5	0.0527523597
+UniRef50_G9Z4A5|unclassified	0.0527523597
+UniRef50_A7HVY9: tRNA dimethylallyltransferase	0.0527522681
+UniRef50_A7HVY9: tRNA dimethylallyltransferase|unclassified	0.0527522681
+UniRef50_UPI000289F267: LysR family transcriptional regulator	0.0527517892
+UniRef50_UPI000289F267: LysR family transcriptional regulator|unclassified	0.0527517892
+UniRef50_UPI0003B5C3DE: bicyclomycin resistance protein	0.0527475678
+UniRef50_UPI0003B5C3DE: bicyclomycin resistance protein|unclassified	0.0527475678
+UniRef50_UPI0003B7969B: LysR family transcriptional regulator	0.0527420514
+UniRef50_UPI0003B7969B: LysR family transcriptional regulator|unclassified	0.0527420514
+UniRef50_UPI00035C805A: hypothetical protein	0.0527412176
+UniRef50_UPI00035C805A: hypothetical protein|unclassified	0.0527412176
+UniRef50_A8MIX7: Glucosamine-6-phosphate deaminase	0.0527392021
+UniRef50_A8MIX7: Glucosamine-6-phosphate deaminase|unclassified	0.0527392021
+UniRef50_K0SM88	0.0527386847
+UniRef50_K0SM88|unclassified	0.0527386847
+UniRef50_H2VE21	0.0527368001
+UniRef50_H2VE21|unclassified	0.0527368001
+UniRef50_UPI000472C50F: hypothetical protein	0.0527345747
+UniRef50_UPI000472C50F: hypothetical protein|unclassified	0.0527345747
+UniRef50_B4U7L4: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO	0.0527252948
+UniRef50_B4U7L4: Methylenetetrahydrofolate--tRNA-(uracil-5-)-methyltransferase TrmFO|unclassified	0.0527252948
+UniRef50_E1VLR7: Putative pilus assembly protein	0.0526978697
+UniRef50_E1VLR7: Putative pilus assembly protein|unclassified	0.0526978697
+UniRef50_UPI0003638F92: hypothetical protein, partial	0.0526970791
+UniRef50_UPI0003638F92: hypothetical protein, partial|unclassified	0.0526970791
+UniRef50_B2S0D7: DNA gyrase subunit A	0.0526947664
+UniRef50_B2S0D7: DNA gyrase subunit A|unclassified	0.0526947664
+UniRef50_T2HUD1: IS66 family transposase ORFB	0.0526907079
+UniRef50_T2HUD1: IS66 family transposase ORFB|unclassified	0.0526907079
+UniRef50_UPI00047787CC: hypothetical protein	0.0526878063
+UniRef50_UPI00047787CC: hypothetical protein|unclassified	0.0526878063
+UniRef50_Q74D60: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase	0.0526874988
+UniRef50_Q74D60: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|unclassified	0.0526874988
+UniRef50_E7KW76: Muc1p (Fragment)	0.0526867041
+UniRef50_E7KW76: Muc1p (Fragment)|unclassified	0.0526867041
+UniRef50_UPI0002C5976A	0.0526789683
+UniRef50_UPI0002C5976A|unclassified	0.0526789683
+UniRef50_UPI00029B19C7: protein-P-II uridylyltransferase	0.0526778897
+UniRef50_UPI00029B19C7: protein-P-II uridylyltransferase|unclassified	0.0526778897
+UniRef50_UPI00032ADE96: PREDICTED: alcohol dehydrogenase class-2 isozyme 2-like	0.0526763625
+UniRef50_UPI00032ADE96: PREDICTED: alcohol dehydrogenase class-2 isozyme 2-like|unclassified	0.0526763625
+UniRef50_Q8ET99: Isoleucine--tRNA ligase 2	0.0526692501
+UniRef50_Q8ET99: Isoleucine--tRNA ligase 2|unclassified	0.0526692501
+UniRef50_UPI000377CC03: hypothetical protein	0.0526655417
+UniRef50_UPI000377CC03: hypothetical protein|unclassified	0.0526655417
+UniRef50_Q96343: Myrosinase-binding protein related protein (Fragment)	0.0526578295
+UniRef50_Q96343: Myrosinase-binding protein related protein (Fragment)|unclassified	0.0526578295
+UniRef50_S0NVK8: Lipoprotein	0.0526574388
+UniRef50_S0NVK8: Lipoprotein|unclassified	0.0526574388
+UniRef50_UPI00037A8200: hypothetical protein	0.0526534610
+UniRef50_UPI00037A8200: hypothetical protein|unclassified	0.0526534610
+UniRef50_UPI00036A0A7D: hypothetical protein	0.0526522104
+UniRef50_UPI00036A0A7D: hypothetical protein|unclassified	0.0526522104
+UniRef50_UPI0002D896B4: hypothetical protein	0.0526398538
+UniRef50_UPI0002D896B4: hypothetical protein|unclassified	0.0526398538
+UniRef50_A6UGV8: Periplasmic binding protein	0.0526356846
+UniRef50_A6UGV8: Periplasmic binding protein|unclassified	0.0526356846
+UniRef50_Z5XK12: Aldehyde dehydrogenase	0.0526339972
+UniRef50_Z5XK12: Aldehyde dehydrogenase|unclassified	0.0526339972
+UniRef50_K5X3B2	0.0526301076
+UniRef50_K5X3B2|unclassified	0.0526301076
+UniRef50_UPI0003B4E82B: UDP-3-O-(3-hydroxymyristoyl) glucosamine N-acyltransferase	0.0526278800
+UniRef50_UPI0003B4E82B: UDP-3-O-(3-hydroxymyristoyl) glucosamine N-acyltransferase|unclassified	0.0526278800
+UniRef50_UPI00039BC94C: hypothetical protein	0.0526273127
+UniRef50_UPI00039BC94C: hypothetical protein|unclassified	0.0526273127
+UniRef50_UPI000262870B: polyprenyl synthetase	0.0526168504
+UniRef50_UPI000262870B: polyprenyl synthetase|unclassified	0.0526168504
+UniRef50_UPI00026282A2: ATP-dependent RNA helicase	0.0526142484
+UniRef50_UPI00026282A2: ATP-dependent RNA helicase|unclassified	0.0526142484
+UniRef50_UPI0004746E87: hypothetical protein	0.0526108149
+UniRef50_UPI0004746E87: hypothetical protein|unclassified	0.0526108149
+UniRef50_Q92PK6: Anhydro-N-acetylmuramic acid kinase	0.0526049916
+UniRef50_Q92PK6: Anhydro-N-acetylmuramic acid kinase|unclassified	0.0526049916
+UniRef50_UPI00035C30A8: hypothetical protein	0.0526035777
+UniRef50_UPI00035C30A8: hypothetical protein|unclassified	0.0526035777
+UniRef50_UPI0004655CF2: hypothetical protein	0.0526031096
+UniRef50_UPI0004655CF2: hypothetical protein|unclassified	0.0526031096
+UniRef50_Q8FMQ2	0.0526016238
+UniRef50_Q8FMQ2|unclassified	0.0526016238
+UniRef50_UPI0003AB479F: methionyl-tRNA synthetase	0.0526006523
+UniRef50_UPI0003AB479F: methionyl-tRNA synthetase|unclassified	0.0526006523
+UniRef50_E8RT71: ATPase MipZ	0.0525953899
+UniRef50_E8RT71: ATPase MipZ|unclassified	0.0525953899
+UniRef50_A9U799: Predicted protein (Fragment)	0.0525935913
+UniRef50_A9U799: Predicted protein (Fragment)|unclassified	0.0525935913
+UniRef50_UPI0003777BB1: hypothetical protein	0.0525926924
+UniRef50_UPI0003777BB1: hypothetical protein|unclassified	0.0525926924
+UniRef50_D4J507: Predicted membrane protein	0.0525899078
+UniRef50_D4J507: Predicted membrane protein|unclassified	0.0525899078
+UniRef50_UPI0002C36801	0.0525877087
+UniRef50_UPI0002C36801|unclassified	0.0525877087
+UniRef50_UPI000262CF7A: proline iminopeptidase	0.0525817750
+UniRef50_UPI000262CF7A: proline iminopeptidase|unclassified	0.0525817750
+UniRef50_B1M2P1: Gp37Gp68 family protein	0.0525809402
+UniRef50_B1M2P1: Gp37Gp68 family protein|unclassified	0.0525809402
+UniRef50_UPI00046CEEA5: molecular chaperone DnaJ	0.0525768194
+UniRef50_UPI00046CEEA5: molecular chaperone DnaJ|unclassified	0.0525768194
+UniRef50_T1CN36: Oligopeptidase A (Fragment)	0.0525766785
+UniRef50_T1CN36: Oligopeptidase A (Fragment)|unclassified	0.0525766785
+UniRef50_UPI00037360B5: hypothetical protein	0.0525752245
+UniRef50_UPI00037360B5: hypothetical protein|unclassified	0.0525752245
+UniRef50_UPI00037759C3: hypothetical protein	0.0525651959
+UniRef50_UPI00037759C3: hypothetical protein|unclassified	0.0525651959
+UniRef50_I0JM17: Cytochrome c oxidase assembly protein CtaG	0.0525621691
+UniRef50_I0JM17: Cytochrome c oxidase assembly protein CtaG|unclassified	0.0525621691
+UniRef50_P39899: Neutral protease B	0.0525612419
+UniRef50_P39899: Neutral protease B|unclassified	0.0525612419
+UniRef50_UPI0003DF5EC3: PREDICTED: vegetative cell wall protein gp1-like	0.0525610721
+UniRef50_UPI0003DF5EC3: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.0525610721
+UniRef50_UPI00036BA739: hypothetical protein	0.0525550993
+UniRef50_UPI00036BA739: hypothetical protein|unclassified	0.0525550993
+UniRef50_UPI00037B17C5: hypothetical protein	0.0525506608
+UniRef50_UPI00037B17C5: hypothetical protein|unclassified	0.0525506608
+UniRef50_UPI00036A47F7: hypothetical protein	0.0525486709
+UniRef50_UPI00036A47F7: hypothetical protein|unclassified	0.0525486709
+UniRef50_UPI00037C673B: membrane protein, partial	0.0525475568
+UniRef50_UPI00037C673B: membrane protein, partial|unclassified	0.0525475568
+UniRef50_UPI00037FB830: hypothetical protein	0.0525422987
+UniRef50_UPI00037FB830: hypothetical protein|unclassified	0.0525422987
+UniRef50_Q8YCK1: Exodeoxyribonuclease 7 large subunit	0.0525372737
+UniRef50_Q8YCK1: Exodeoxyribonuclease 7 large subunit|unclassified	0.0525372737
+UniRef50_Q31GP3: tRNA dimethylallyltransferase	0.0525322293
+UniRef50_Q31GP3: tRNA dimethylallyltransferase|unclassified	0.0525322293
+UniRef50_UPI0003B51244: peptidase M16	0.0525276386
+UniRef50_UPI0003B51244: peptidase M16|unclassified	0.0525276386
+UniRef50_UPI00040F3801: hypothetical protein	0.0525265523
+UniRef50_UPI00040F3801: hypothetical protein|unclassified	0.0525265523
+UniRef50_X1HVV4: Marine sediment metagenome DNA, contig: S03H2_S01400 (Fragment)	0.0525238544
+UniRef50_X1HVV4: Marine sediment metagenome DNA, contig: S03H2_S01400 (Fragment)|unclassified	0.0525238544
+UniRef50_X4R832: Spermidine synthase	0.0525237990
+UniRef50_X4R832: Spermidine synthase|unclassified	0.0525237990
+UniRef50_UPI00037E17BF: hypothetical protein	0.0525159080
+UniRef50_UPI00037E17BF: hypothetical protein|unclassified	0.0525159080
+UniRef50_Q5ZVR0: Histidine ammonia-lyase	0.0525154351
+UniRef50_Q5ZVR0: Histidine ammonia-lyase|unclassified	0.0525154351
+UniRef50_UPI000365863C: hypothetical protein	0.0525145341
+UniRef50_UPI000365863C: hypothetical protein|unclassified	0.0525145341
+UniRef50_UPI000381CC44: hypothetical protein	0.0525135068
+UniRef50_UPI000381CC44: hypothetical protein|unclassified	0.0525135068
+UniRef50_UPI000409380C: orotidine 5''-phosphate decarboxylase	0.0525079496
+UniRef50_UPI000409380C: orotidine 5''-phosphate decarboxylase|unclassified	0.0525079496
+UniRef50_O26980: Conserved protein	0.0525072025
+UniRef50_O26980: Conserved protein|unclassified	0.0525072025
+UniRef50_W0DM78: Permease	0.0525072025
+UniRef50_W0DM78: Permease|unclassified	0.0525072025
+UniRef50_R6S7P2: Rhamnulose-1-phosphate aldolase	0.0525060958
+UniRef50_R6S7P2: Rhamnulose-1-phosphate aldolase|unclassified	0.0525060958
+UniRef50_UPI00046E7E48: hypothetical protein	0.0525047092
+UniRef50_UPI00046E7E48: hypothetical protein|unclassified	0.0525047092
+UniRef50_UPI0003B4F278: hypothetical protein	0.0525027043
+UniRef50_UPI0003B4F278: hypothetical protein|unclassified	0.0525027043
+UniRef50_Q4A2Z7: Putative membrane protein	0.0525026034
+UniRef50_Q4A2Z7: Putative membrane protein|unclassified	0.0525026034
+UniRef50_UPI00036E3C21: hypothetical protein	0.0525023033
+UniRef50_UPI00036E3C21: hypothetical protein|unclassified	0.0525023033
+UniRef50_UPI0004732C82: penicillin-binding protein, partial	0.0525006494
+UniRef50_UPI0004732C82: penicillin-binding protein, partial|unclassified	0.0525006494
+UniRef50_UPI00037644DA: hypothetical protein	0.0524988878
+UniRef50_UPI00037644DA: hypothetical protein|unclassified	0.0524988878
+UniRef50_UPI0002624A9D: secretion protein HlyD	0.0524969721
+UniRef50_UPI0002624A9D: secretion protein HlyD|unclassified	0.0524969721
+UniRef50_G4RGJ4: Protein YicC	0.0524947351
+UniRef50_G4RGJ4: Protein YicC|unclassified	0.0524947351
+UniRef50_UPI00037612D6: hypothetical protein	0.0524946934
+UniRef50_UPI00037612D6: hypothetical protein|unclassified	0.0524946934
+UniRef50_UPI00046EA1F2: 16S rRNA methyltransferase	0.0524931898
+UniRef50_UPI00046EA1F2: 16S rRNA methyltransferase|unclassified	0.0524931898
+UniRef50_UPI00046F14EC: hypothetical protein	0.0524877897
+UniRef50_UPI00046F14EC: hypothetical protein|unclassified	0.0524877897
+UniRef50_C3MCW0: Cation transport protein, ChaC related	0.0524840249
+UniRef50_C3MCW0: Cation transport protein, ChaC related|unclassified	0.0524840249
+UniRef50_UPI00037FE0F3: hypothetical protein	0.0524823760
+UniRef50_UPI00037FE0F3: hypothetical protein|unclassified	0.0524823760
+UniRef50_U6N1K5	0.0524819666
+UniRef50_U6N1K5|unclassified	0.0524819666
+UniRef50_G4T2W3: Putative Type VI secretion-associated protein, ImpA family	0.0524802212
+UniRef50_G4T2W3: Putative Type VI secretion-associated protein, ImpA family|unclassified	0.0524802212
+UniRef50_A7NI79: Thymidine kinase	0.0524776159
+UniRef50_A7NI79: Thymidine kinase|unclassified	0.0524776159
+UniRef50_UPI00036B92DA: hypothetical protein	0.0524727732
+UniRef50_UPI00036B92DA: hypothetical protein|unclassified	0.0524727732
+UniRef50_UPI00046FBA16: transposase, partial	0.0524719280
+UniRef50_UPI00046FBA16: transposase, partial|unclassified	0.0524719280
+UniRef50_V6Q7Y6	0.0524702343
+UniRef50_V6Q7Y6|unclassified	0.0524702343
+UniRef50_W0HT69: Ferrichrome-binding periplasmic protein	0.0524686640
+UniRef50_W0HT69: Ferrichrome-binding periplasmic protein|unclassified	0.0524686640
+UniRef50_UPI00037E874A: MULTISPECIES: hypothetical protein	0.0524675202
+UniRef50_UPI00037E874A: MULTISPECIES: hypothetical protein|unclassified	0.0524675202
+UniRef50_F2UK67	0.0524662626
+UniRef50_F2UK67|unclassified	0.0524662626
+UniRef50_X1UXC6: Marine sediment metagenome DNA, contig: S12H4_S13623 (Fragment)	0.0524624098
+UniRef50_X1UXC6: Marine sediment metagenome DNA, contig: S12H4_S13623 (Fragment)|unclassified	0.0524624098
+UniRef50_UPI0003B75C7C: phosphopantothenoylcysteine decarboxylase	0.0524507997
+UniRef50_UPI0003B75C7C: phosphopantothenoylcysteine decarboxylase|unclassified	0.0524507997
+UniRef50_UPI00047E8AFF: hypothetical protein	0.0524486523
+UniRef50_UPI00047E8AFF: hypothetical protein|unclassified	0.0524486523
+UniRef50_UPI000476D3CA: hypothetical protein	0.0524451635
+UniRef50_UPI000476D3CA: hypothetical protein|unclassified	0.0524451635
+UniRef50_UPI0003709489: hypothetical protein	0.0524301880
+UniRef50_UPI0003709489: hypothetical protein|unclassified	0.0524301880
+UniRef50_E7FN69	0.0524201058
+UniRef50_E7FN69|unclassified	0.0524201058
+UniRef50_W8ZLL6	0.0524193611
+UniRef50_W8ZLL6|unclassified	0.0524193611
+UniRef50_UPI0003FBCFE0: hypothetical protein	0.0524126347
+UniRef50_UPI0003FBCFE0: hypothetical protein|unclassified	0.0524126347
+UniRef50_UPI00037A585B: hypothetical protein	0.0524109282
+UniRef50_UPI00037A585B: hypothetical protein|unclassified	0.0524109282
+UniRef50_UPI000360FEB6: hypothetical protein	0.0524092921
+UniRef50_UPI000360FEB6: hypothetical protein|unclassified	0.0524092921
+UniRef50_UPI0003B7196A: hypothetical protein	0.0524031425
+UniRef50_UPI0003B7196A: hypothetical protein|unclassified	0.0524031425
+UniRef50_J2NRM2: Rhs element Vgr protein	0.0523964355
+UniRef50_J2NRM2: Rhs element Vgr protein|unclassified	0.0523964355
+UniRef50_UPI0004798904: hypothetical protein	0.0523949302
+UniRef50_UPI0004798904: hypothetical protein|unclassified	0.0523949302
+UniRef50_K2L0F9: NnrS family protein	0.0523920567
+UniRef50_K2L0F9: NnrS family protein|unclassified	0.0523920567
+UniRef50_UPI0002555CD7: putative lipoprotein	0.0523917716
+UniRef50_UPI0002555CD7: putative lipoprotein|unclassified	0.0523917716
+UniRef50_A1SWY4: Leucyl/phenylalanyl-tRNA--protein transferase	0.0523896941
+UniRef50_A1SWY4: Leucyl/phenylalanyl-tRNA--protein transferase|unclassified	0.0523896941
+UniRef50_O83675: DNA polymerase III subunit alpha	0.0523874396
+UniRef50_O83675: DNA polymerase III subunit alpha|unclassified	0.0523874396
+UniRef50_E8RNP0: UPF0176 protein Astex_1261	0.0523851157
+UniRef50_E8RNP0: UPF0176 protein Astex_1261|unclassified	0.0523851157
+UniRef50_J8CM64	0.0523820665
+UniRef50_J8CM64|unclassified	0.0523820665
+UniRef50_S6IFH4	0.0523818524
+UniRef50_S6IFH4|unclassified	0.0523818524
+UniRef50_E8RP54: Chromosome segregation and condensation protein ScpA	0.0523789212
+UniRef50_E8RP54: Chromosome segregation and condensation protein ScpA|unclassified	0.0523789212
+UniRef50_UPI0003FC4D57: ABC transporter permease	0.0523705164
+UniRef50_UPI0003FC4D57: ABC transporter permease|unclassified	0.0523705164
+UniRef50_A9NC46: Probable nicotinate-nucleotide adenylyltransferase	0.0523699771
+UniRef50_A9NC46: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.0523699771
+UniRef50_UPI000466BA9A: nicotinate-nucleotide adenylyltransferase	0.0523699771
+UniRef50_UPI000466BA9A: nicotinate-nucleotide adenylyltransferase|unclassified	0.0523699771
+UniRef50_UPI0003B49B8E: flagellar protein	0.0523688008
+UniRef50_UPI0003B49B8E: flagellar protein|unclassified	0.0523688008
+UniRef50_Q8YYE3: Phosphate import ATP-binding protein PstB 1	0.0523670995
+UniRef50_Q8YYE3: Phosphate import ATP-binding protein PstB 1|unclassified	0.0523670995
+UniRef50_Q47EF4: Pyridoxine 5'-phosphate synthase	0.0523643857
+UniRef50_Q47EF4: Pyridoxine 5'-phosphate synthase|unclassified	0.0523643857
+UniRef50_F0P5Y9: ABC-type Na+ efflux pump permease component	0.0523620211
+UniRef50_F0P5Y9: ABC-type Na+ efflux pump permease component|unclassified	0.0523620211
+UniRef50_UPI0000E0E146: ribonuclease III	0.0523549775
+UniRef50_UPI0000E0E146: ribonuclease III|unclassified	0.0523549775
+UniRef50_UPI0002493F0F: sugar transporter	0.0523527271
+UniRef50_UPI0002493F0F: sugar transporter|unclassified	0.0523527271
+UniRef50_R5FJH6	0.0523524967
+UniRef50_R5FJH6|unclassified	0.0523524967
+UniRef50_UPI0004730073: epimerase	0.0523501640
+UniRef50_UPI0004730073: epimerase|unclassified	0.0523501640
+UniRef50_UPI000471EA1B: hypothetical protein, partial	0.0523500986
+UniRef50_UPI000471EA1B: hypothetical protein, partial|unclassified	0.0523500986
+UniRef50_UPI00036FA71C: hypothetical protein	0.0523496089
+UniRef50_UPI00036FA71C: hypothetical protein|unclassified	0.0523496089
+UniRef50_L0DV31: Pirin	0.0523463468
+UniRef50_L0DV31: Pirin|unclassified	0.0523463468
+UniRef50_UPI00035F98C4: hypothetical protein	0.0523455482
+UniRef50_UPI00035F98C4: hypothetical protein|unclassified	0.0523455482
+UniRef50_Q0RRL2	0.0523439169
+UniRef50_Q0RRL2|unclassified	0.0523439169
+UniRef50_B5GVK5	0.0523397440
+UniRef50_B5GVK5|unclassified	0.0523397440
+UniRef50_W9T9P3: Membrane-bound lytic murein transglycosylase D	0.0523386574
+UniRef50_W9T9P3: Membrane-bound lytic murein transglycosylase D|unclassified	0.0523386574
+UniRef50_UPI00047DEA84: hypothetical protein	0.0523381636
+UniRef50_UPI00047DEA84: hypothetical protein|unclassified	0.0523381636
+UniRef50_B5YG77: Phosphate acyltransferase	0.0523346535
+UniRef50_B5YG77: Phosphate acyltransferase|unclassified	0.0523346535
+UniRef50_UPI00027419BC	0.0523326579
+UniRef50_UPI00027419BC|unclassified	0.0523326579
+UniRef50_M2K566: Putative conjugative transposon protein	0.0523318692
+UniRef50_M2K566: Putative conjugative transposon protein|unclassified	0.0523318692
+UniRef50_UPI000412D7F5: hypothetical protein	0.0523312642
+UniRef50_UPI000412D7F5: hypothetical protein|unclassified	0.0523312642
+UniRef50_P17652: Light-independent protochlorophyllide reductase subunit B	0.0523294635
+UniRef50_P17652: Light-independent protochlorophyllide reductase subunit B|unclassified	0.0523294635
+UniRef50_F7TRJ7: Catechol-2,3-dioxygenase	0.0523265632
+UniRef50_F7TRJ7: Catechol-2,3-dioxygenase|unclassified	0.0523265632
+UniRef50_UPI0003798FDE: hypothetical protein	0.0523252329
+UniRef50_UPI0003798FDE: hypothetical protein|unclassified	0.0523252329
+UniRef50_P49915: GMP synthase [glutamine-hydrolyzing]	0.0523222181
+UniRef50_P49915: GMP synthase [glutamine-hydrolyzing]|unclassified	0.0523222181
+UniRef50_W1EG35	0.0523136408
+UniRef50_W1EG35|unclassified	0.0523136408
+UniRef50_UPI000365358E: hypothetical protein	0.0523127064
+UniRef50_UPI000365358E: hypothetical protein|unclassified	0.0523127064
+UniRef50_T0J470	0.0523117866
+UniRef50_T0J470|unclassified	0.0523117866
+UniRef50_UPI000371CC88: hypothetical protein	0.0523101907
+UniRef50_UPI000371CC88: hypothetical protein|unclassified	0.0523101907
+UniRef50_C8PQP1: Biotin-dependent carboxylase domain protein	0.0523101497
+UniRef50_C8PQP1: Biotin-dependent carboxylase domain protein|unclassified	0.0523101497
+UniRef50_A0A024JDH6: Similar to Saccharomyces cerevisiae YAL060W BDH1 NAD-dependent (R,R)-butanediol dehydrogenase	0.0523080727
+UniRef50_A0A024JDH6: Similar to Saccharomyces cerevisiae YAL060W BDH1 NAD-dependent (R,R)-butanediol dehydrogenase|unclassified	0.0523080727
+UniRef50_UPI0003753443: hypothetical protein	0.0523064700
+UniRef50_UPI0003753443: hypothetical protein|unclassified	0.0523064700
+UniRef50_UPI000466CD21: hypothetical protein, partial	0.0523057647
+UniRef50_UPI000466CD21: hypothetical protein, partial|unclassified	0.0523057647
+UniRef50_U6LDK4	0.0523025338
+UniRef50_U6LDK4|unclassified	0.0523025338
+UniRef50_W0ABQ4	0.0522980003
+UniRef50_W0ABQ4|unclassified	0.0522980003
+UniRef50_UPI000479FBC0: 2-nitropropane dioxygenase	0.0522944381
+UniRef50_UPI000479FBC0: 2-nitropropane dioxygenase|unclassified	0.0522944381
+UniRef50_UPI00036B33D7: hypothetical protein	0.0522903888
+UniRef50_UPI00036B33D7: hypothetical protein|unclassified	0.0522903888
+UniRef50_UPI000472F346: iron ABC transporter substrate-binding protein	0.0522897488
+UniRef50_UPI000472F346: iron ABC transporter substrate-binding protein|unclassified	0.0522897488
+UniRef50_I2FC05: Cysteine synthase	0.0522834464
+UniRef50_I2FC05: Cysteine synthase|unclassified	0.0522834464
+UniRef50_UPI00036B5BAE: hypothetical protein	0.0522805081
+UniRef50_UPI00036B5BAE: hypothetical protein|unclassified	0.0522805081
+UniRef50_UPI0003B625B3: chemotaxis protein CheA	0.0522763684
+UniRef50_UPI0003B625B3: chemotaxis protein CheA|unclassified	0.0522763684
+UniRef50_UPI00046AE23D: hypothetical protein	0.0522762543
+UniRef50_UPI00046AE23D: hypothetical protein|unclassified	0.0522762543
+UniRef50_A9VCN0: Predicted protein	0.0522742388
+UniRef50_A9VCN0: Predicted protein|unclassified	0.0522742388
+UniRef50_R9X4Z9: Short-chain dehydrogenase/oxidoreductase,atypical SDR family, subgroup 7	0.0522693588
+UniRef50_R9X4Z9: Short-chain dehydrogenase/oxidoreductase,atypical SDR family, subgroup 7|unclassified	0.0522693588
+UniRef50_UPI00037983A9: hypothetical protein	0.0522585185
+UniRef50_UPI00037983A9: hypothetical protein|unclassified	0.0522585185
+UniRef50_K0S630	0.0522571079
+UniRef50_K0S630|unclassified	0.0522571079
+UniRef50_UPI0003799DF8: hypothetical protein	0.0522512312
+UniRef50_UPI0003799DF8: hypothetical protein|unclassified	0.0522512312
+UniRef50_U1X2J8	0.0522494911
+UniRef50_U1X2J8|unclassified	0.0522494911
+UniRef50_S5Y2V0	0.0522463422
+UniRef50_S5Y2V0|unclassified	0.0522463422
+UniRef50_Q0AND4: Condensin subunit ScpA	0.0522392270
+UniRef50_Q0AND4: Condensin subunit ScpA|unclassified	0.0522392270
+UniRef50_O43123: Maleylacetoacetate isomerase	0.0522355065
+UniRef50_O43123: Maleylacetoacetate isomerase|unclassified	0.0522355065
+UniRef50_UPI0002FE5D65: hypothetical protein	0.0522309764
+UniRef50_UPI0002FE5D65: hypothetical protein|unclassified	0.0522309764
+UniRef50_G9QKN3	0.0522260000
+UniRef50_G9QKN3|unclassified	0.0522260000
+UniRef50_X6MYI2	0.0522256042
+UniRef50_X6MYI2|unclassified	0.0522256042
+UniRef50_UPI000288E24F: tagatose-6-phosphate kinase	0.0522248058
+UniRef50_UPI000288E24F: tagatose-6-phosphate kinase|unclassified	0.0522248058
+UniRef50_A6U9I7: Anhydro-N-acetylmuramic acid kinase	0.0522242188
+UniRef50_A6U9I7: Anhydro-N-acetylmuramic acid kinase|unclassified	0.0522242188
+UniRef50_E1VUF2	0.0522201480
+UniRef50_E1VUF2|unclassified	0.0522201480
+UniRef50_D7T3T0	0.0522188672
+UniRef50_D7T3T0|unclassified	0.0522188672
+UniRef50_Q54KB7: Glutamate dehydrogenase, mitochondrial	0.0522185835
+UniRef50_Q54KB7: Glutamate dehydrogenase, mitochondrial|unclassified	0.0522185835
+UniRef50_D6Z1P9: Type II secretion system F domain protein	0.0522181761
+UniRef50_D6Z1P9: Type II secretion system F domain protein|unclassified	0.0522181761
+UniRef50_UPI0004003937: hypothetical protein	0.0522171796
+UniRef50_UPI0004003937: hypothetical protein|unclassified	0.0522171796
+UniRef50_A0A027PTG1	0.0522138680
+UniRef50_A0A027PTG1|unclassified	0.0522138680
+UniRef50_UPI00046969A5: KamA family protein	0.0522077630
+UniRef50_UPI00046969A5: KamA family protein|unclassified	0.0522077630
+UniRef50_UPI0003FF96A6: acetoin dehydrogenase	0.0522062266
+UniRef50_UPI0003FF96A6: acetoin dehydrogenase|unclassified	0.0522062266
+UniRef50_W0E8C5	0.0522001600
+UniRef50_W0E8C5|unclassified	0.0522001600
+UniRef50_UPI0003440E38	0.0521972237
+UniRef50_UPI0003440E38|unclassified	0.0521972237
+UniRef50_UPI000225B431: dTDP-glucose 4,6-dehydratase	0.0521959685
+UniRef50_UPI000225B431: dTDP-glucose 4,6-dehydratase|unclassified	0.0521959685
+UniRef50_UPI000351424B: PREDICTED: isoflavone reductase homolog IRL-like isoform X2	0.0521887783
+UniRef50_UPI000351424B: PREDICTED: isoflavone reductase homolog IRL-like isoform X2|unclassified	0.0521887783
+UniRef50_UPI0003784F33: hypothetical protein	0.0521885550
+UniRef50_UPI0003784F33: hypothetical protein|unclassified	0.0521885550
+UniRef50_UPI00018513F7: Acyl-CoA dehydrogenase	0.0521800005
+UniRef50_UPI00018513F7: Acyl-CoA dehydrogenase|unclassified	0.0521800005
+UniRef50_Q2IPY2: Uroporphyrinogen decarboxylase	0.0521787973
+UniRef50_Q2IPY2: Uroporphyrinogen decarboxylase|unclassified	0.0521787973
+UniRef50_Q44496: Poly(beta-D-mannuronate) C5 epimerase 3	0.0521736050
+UniRef50_Q44496: Poly(beta-D-mannuronate) C5 epimerase 3|unclassified	0.0521736050
+UniRef50_UPI0002558FA7: methyl-accepting chemotaxis sensory transducer	0.0521726833
+UniRef50_UPI0002558FA7: methyl-accepting chemotaxis sensory transducer|unclassified	0.0521726833
+UniRef50_UPI000365242E: hypothetical protein	0.0521724174
+UniRef50_UPI000365242E: hypothetical protein|unclassified	0.0521724174
+UniRef50_UPI00037D649F: hypothetical protein	0.0521717866
+UniRef50_UPI00037D649F: hypothetical protein|unclassified	0.0521717866
+UniRef50_W5X2N7: Apurinic endonuclease Apn1	0.0521688312
+UniRef50_W5X2N7: Apurinic endonuclease Apn1|unclassified	0.0521688312
+UniRef50_Q47VJ7: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical	0.0521657319
+UniRef50_Q47VJ7: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical|unclassified	0.0521657319
+UniRef50_H2JWL4: Esterase	0.0521644306
+UniRef50_H2JWL4: Esterase|unclassified	0.0521644306
+UniRef50_W6EI50: Permease	0.0521615229
+UniRef50_W6EI50: Permease|unclassified	0.0521615229
+UniRef50_UPI000468C550: LysR family transcriptional regulator	0.0521599910
+UniRef50_UPI000468C550: LysR family transcriptional regulator|unclassified	0.0521599910
+UniRef50_UPI00026CA071: formate dehydrogenase family accessory protein FdhD	0.0521589310
+UniRef50_UPI00026CA071: formate dehydrogenase family accessory protein FdhD|unclassified	0.0521589310
+UniRef50_UPI0004703B9E: branched-chain amino acid ABC transporter permease	0.0521470845
+UniRef50_UPI0004703B9E: branched-chain amino acid ABC transporter permease|unclassified	0.0521470845
+UniRef50_Q30YT5: Type II secretion system F domain-containing protein	0.0521370358
+UniRef50_Q30YT5: Type II secretion system F domain-containing protein|unclassified	0.0521370358
+UniRef50_UPI00024911A4: gluconate transporter	0.0521344780
+UniRef50_UPI00024911A4: gluconate transporter|unclassified	0.0521344780
+UniRef50_Q8TUZ4: 4-hydroxy-tetrahydrodipicolinate synthase	0.0521237596
+UniRef50_Q8TUZ4: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0521237596
+UniRef50_J7HUB5: Conjugation protein	0.0521226056
+UniRef50_J7HUB5: Conjugation protein|unclassified	0.0521226056
+UniRef50_UPI0001AF0279: luciferase	0.0521189276
+UniRef50_UPI0001AF0279: luciferase|unclassified	0.0521189276
+UniRef50_UPI0003B6C989: 5-oxoprolinase	0.0521158538
+UniRef50_UPI0003B6C989: 5-oxoprolinase|unclassified	0.0521158538
+UniRef50_UPI000440FDB6: PREDICTED: short/branched chain specific acyl-CoA dehydrogenase, mitochondrial	0.0521153052
+UniRef50_UPI000440FDB6: PREDICTED: short/branched chain specific acyl-CoA dehydrogenase, mitochondrial|unclassified	0.0521153052
+UniRef50_UPI00047002AE: hypothetical protein	0.0521125061
+UniRef50_UPI00047002AE: hypothetical protein|unclassified	0.0521125061
+UniRef50_UPI0003B3B954: amidase	0.0521093685
+UniRef50_UPI0003B3B954: amidase|unclassified	0.0521093685
+UniRef50_UPI00035C2722: hypothetical protein	0.0521041559
+UniRef50_UPI00035C2722: hypothetical protein|unclassified	0.0521041559
+UniRef50_UPI0001E30187: peptide ABC transporter permease	0.0521041336
+UniRef50_UPI0001E30187: peptide ABC transporter permease|unclassified	0.0521041336
+UniRef50_R5BQ20: DNA repair protein RadC	0.0521040960
+UniRef50_R5BQ20: DNA repair protein RadC|unclassified	0.0521040960
+UniRef50_I6X7Y4: Neutral zinc metallopeptidase domain protein	0.0520988134
+UniRef50_I6X7Y4: Neutral zinc metallopeptidase domain protein|unclassified	0.0520988134
+UniRef50_UPI0003B5A950: MFS transporter	0.0520919917
+UniRef50_UPI0003B5A950: MFS transporter|unclassified	0.0520919917
+UniRef50_E6V1Y0: Diguanylate cyclase with GAF sensor	0.0520856117
+UniRef50_E6V1Y0: Diguanylate cyclase with GAF sensor|unclassified	0.0520856117
+UniRef50_UPI0004727C18: histidine kinase	0.0520841449
+UniRef50_UPI0004727C18: histidine kinase|unclassified	0.0520841449
+UniRef50_Y5PDG5	0.0520833742
+UniRef50_Y5PDG5|unclassified	0.0520833742
+UniRef50_UPI0003959893: membrane protein	0.0520831095
+UniRef50_UPI0003959893: membrane protein|unclassified	0.0520831095
+UniRef50_G8WJH0: SD repeat-containing cell surface protein	0.0520800981
+UniRef50_G8WJH0: SD repeat-containing cell surface protein|unclassified	0.0520800981
+UniRef50_UPI00047BE48A: hypothetical protein	0.0520756997
+UniRef50_UPI00047BE48A: hypothetical protein|unclassified	0.0520756997
+UniRef50_Q8ENZ7: 2-succinylbenzoate--CoA ligase	0.0520735055
+UniRef50_Q8ENZ7: 2-succinylbenzoate--CoA ligase|unclassified	0.0520735055
+UniRef50_UPI00046CFCCE: hypothetical protein	0.0520664475
+UniRef50_UPI00046CFCCE: hypothetical protein|unclassified	0.0520664475
+UniRef50_E2MVS3	0.0520643098
+UniRef50_E2MVS3|unclassified	0.0520643098
+UniRef50_W2UWY3	0.0520624425
+UniRef50_W2UWY3|unclassified	0.0520624425
+UniRef50_E6SKM4: Electron transfer flavoprotein alpha subunit	0.0520611902
+UniRef50_E6SKM4: Electron transfer flavoprotein alpha subunit|unclassified	0.0520611902
+UniRef50_UPI0003B5550D: FAD-dependent pyridine nucleotide-disulfide oxidoreductase	0.0520560978
+UniRef50_UPI0003B5550D: FAD-dependent pyridine nucleotide-disulfide oxidoreductase|unclassified	0.0520560978
+UniRef50_G2I2F1	0.0520560203
+UniRef50_G2I2F1|unclassified	0.0520560203
+UniRef50_UPI000248C70B: chemotaxis protein CheY	0.0520537858
+UniRef50_UPI000248C70B: chemotaxis protein CheY|unclassified	0.0520537858
+UniRef50_UPI0004696A50: hypothetical protein	0.0520529501
+UniRef50_UPI0004696A50: hypothetical protein|unclassified	0.0520529501
+UniRef50_UPI000332F601: PREDICTED: peroxisomal coenzyme A diphosphatase NUDT7	0.0520455709
+UniRef50_UPI000332F601: PREDICTED: peroxisomal coenzyme A diphosphatase NUDT7|unclassified	0.0520455709
+UniRef50_K2JU33: DNA polymerase III subunit delta	0.0520390978
+UniRef50_K2JU33: DNA polymerase III subunit delta|unclassified	0.0520390978
+UniRef50_T5ATP2	0.0520367315
+UniRef50_T5ATP2|unclassified	0.0520367315
+UniRef50_UPI000375D17F: hypothetical protein	0.0520339686
+UniRef50_UPI000375D17F: hypothetical protein|unclassified	0.0520339686
+UniRef50_UPI000468517A: potassium transporter	0.0520329426
+UniRef50_UPI000468517A: potassium transporter|unclassified	0.0520329426
+UniRef50_D4XIY6: Biotin-dependent carboxylase domain protein	0.0520327413
+UniRef50_D4XIY6: Biotin-dependent carboxylase domain protein|unclassified	0.0520327413
+UniRef50_K0W5E3: Putative substrate-binding component of ABC transporter (Fragment)	0.0520314312
+UniRef50_K0W5E3: Putative substrate-binding component of ABC transporter (Fragment)|unclassified	0.0520314312
+UniRef50_UPI0003C14EB6	0.0520297280
+UniRef50_UPI0003C14EB6|unclassified	0.0520297280
+UniRef50_E4NU15: Acyl dehydratase	0.0520277610
+UniRef50_E4NU15: Acyl dehydratase|unclassified	0.0520277610
+UniRef50_UPI0003743852: hypothetical protein	0.0520276870
+UniRef50_UPI0003743852: hypothetical protein|unclassified	0.0520276870
+UniRef50_UPI0004628D47: PREDICTED: glutamate dehydrogenase 2, mitochondrial isoform X3	0.0520228208
+UniRef50_UPI0004628D47: PREDICTED: glutamate dehydrogenase 2, mitochondrial isoform X3|unclassified	0.0520228208
+UniRef50_UPI000377EFC4: hypothetical protein	0.0520211530
+UniRef50_UPI000377EFC4: hypothetical protein|unclassified	0.0520211530
+UniRef50_N1UYX5: Phenol hydroxylase	0.0520210408
+UniRef50_N1UYX5: Phenol hydroxylase|unclassified	0.0520210408
+UniRef50_E8RUY4: Xanthine dehydrogenase accessory protein XdhC	0.0520185799
+UniRef50_E8RUY4: Xanthine dehydrogenase accessory protein XdhC|unclassified	0.0520185799
+UniRef50_R7MG50	0.0520160385
+UniRef50_R7MG50|unclassified	0.0520160385
+UniRef50_Q8KF56: Imidazole glycerol phosphate synthase subunit HisH	0.0520149788
+UniRef50_Q8KF56: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.0520149788
+UniRef50_UPI0004796CBA: LysR family transcriptional regulator	0.0520132521
+UniRef50_UPI0004796CBA: LysR family transcriptional regulator|unclassified	0.0520132521
+UniRef50_UPI0003B3F7AD: phosphoribosylaminoimidazole carboxylase	0.0520098479
+UniRef50_UPI0003B3F7AD: phosphoribosylaminoimidazole carboxylase|unclassified	0.0520098479
+UniRef50_G7Z4K9: ABC transporter periplasmic component	0.0520088738
+UniRef50_G7Z4K9: ABC transporter periplasmic component|unclassified	0.0520088738
+UniRef50_UPI000362AA95: hypothetical protein	0.0520082608
+UniRef50_UPI000362AA95: hypothetical protein|unclassified	0.0520082608
+UniRef50_UPI00046301B0: thermophilic serine proteinase precursor	0.0520053047
+UniRef50_UPI00046301B0: thermophilic serine proteinase precursor|unclassified	0.0520053047
+UniRef50_UPI00034B1A40: hypothetical protein	0.0519925949
+UniRef50_UPI00034B1A40: hypothetical protein|unclassified	0.0519925949
+UniRef50_UPI0003B53EB2: porin	0.0519911064
+UniRef50_UPI0003B53EB2: porin|unclassified	0.0519911064
+UniRef50_C6CXW7: LmbE family protein	0.0519874769
+UniRef50_C6CXW7: LmbE family protein|unclassified	0.0519874769
+UniRef50_W8TJK1	0.0519865541
+UniRef50_W8TJK1|unclassified	0.0519865541
+UniRef50_UPI00029D9C16: PREDICTED: acyl-coenzyme A synthetase ACSM1, mitochondrial-like	0.0519865509
+UniRef50_UPI00029D9C16: PREDICTED: acyl-coenzyme A synthetase ACSM1, mitochondrial-like|unclassified	0.0519865509
+UniRef50_C2RTF5: Glyoxalase	0.0519864851
+UniRef50_C2RTF5: Glyoxalase|unclassified	0.0519864851
+UniRef50_UPI0001C37F9A: metal dependent phosphohydrolase	0.0519840988
+UniRef50_UPI0001C37F9A: metal dependent phosphohydrolase|unclassified	0.0519840988
+UniRef50_UPI000470A448: hypothetical protein	0.0519830663
+UniRef50_UPI000470A448: hypothetical protein|unclassified	0.0519830663
+UniRef50_UPI000420285E: hypothetical protein	0.0519818011
+UniRef50_UPI000420285E: hypothetical protein|unclassified	0.0519818011
+UniRef50_Q54FS0	0.0519781239
+UniRef50_Q54FS0|unclassified	0.0519781239
+UniRef50_D4ZDK2: Transglycosylase SLT domain protein	0.0519773656
+UniRef50_D4ZDK2: Transglycosylase SLT domain protein|unclassified	0.0519773656
+UniRef50_A9FDL0: tRNA N6-adenosine threonylcarbamoyltransferase	0.0519734019
+UniRef50_A9FDL0: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.0519734019
+UniRef50_C7QE96	0.0519710285
+UniRef50_C7QE96|unclassified	0.0519710285
+UniRef50_C0QY51: tRNA N6-adenosine threonylcarbamoyltransferase	0.0519678292
+UniRef50_C0QY51: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.0519678292
+UniRef50_B3ITC3	0.0519659560
+UniRef50_B3ITC3|unclassified	0.0519659560
+UniRef50_UPI00036866F8: hypothetical protein	0.0519589333
+UniRef50_UPI00036866F8: hypothetical protein|unclassified	0.0519589333
+UniRef50_UPI00046A7464: hypothetical protein	0.0519557841
+UniRef50_UPI00046A7464: hypothetical protein|unclassified	0.0519557841
+UniRef50_D3EGS9: Cell wall/surface repeat protein	0.0519540556
+UniRef50_D3EGS9: Cell wall/surface repeat protein|unclassified	0.0519540556
+UniRef50_Q6LRA6: Nicotinate phosphoribosyltransferase	0.0519490603
+UniRef50_Q6LRA6: Nicotinate phosphoribosyltransferase|unclassified	0.0519490603
+UniRef50_Q6YRJ6: Valine--tRNA ligase	0.0519483392
+UniRef50_Q6YRJ6: Valine--tRNA ligase|unclassified	0.0519483392
+UniRef50_Q3IPY1	0.0519462744
+UniRef50_Q3IPY1|unclassified	0.0519462744
+UniRef50_U6K3F8: ABC transporter, putative	0.0519458613
+UniRef50_U6K3F8: ABC transporter, putative|unclassified	0.0519458613
+UniRef50_D9S1Q2: Ethanolamine utilization protein EutJ family protein	0.0519382795
+UniRef50_D9S1Q2: Ethanolamine utilization protein EutJ family protein|unclassified	0.0519382795
+UniRef50_A3PF80: Bifunctional pantoate ligase/cytidylate kinase	0.0519295680
+UniRef50_A3PF80: Bifunctional pantoate ligase/cytidylate kinase|unclassified	0.0519295680
+UniRef50_Q31TM6	0.0519286781
+UniRef50_Q31TM6|unclassified	0.0519286781
+UniRef50_UPI000360AA57: hypothetical protein	0.0519260035
+UniRef50_UPI000360AA57: hypothetical protein|unclassified	0.0519260035
+UniRef50_UPI000416D15E: hypothetical protein	0.0519255826
+UniRef50_UPI000416D15E: hypothetical protein|unclassified	0.0519255826
+UniRef50_UPI0002EAD5F4: hypothetical protein	0.0519138213
+UniRef50_UPI0002EAD5F4: hypothetical protein|unclassified	0.0519138213
+UniRef50_UPI0002557AB6: outer membrane channel protein TolC	0.0519137779
+UniRef50_UPI0002557AB6: outer membrane channel protein TolC|unclassified	0.0519137779
+UniRef50_E3IPF1: RNA-metabolising metallo-beta-lactamase	0.0519101256
+UniRef50_E3IPF1: RNA-metabolising metallo-beta-lactamase|unclassified	0.0519101256
+UniRef50_P05345: Homocitrate synthase	0.0519058253
+UniRef50_P05345: Homocitrate synthase|unclassified	0.0519058253
+UniRef50_G3GRH4: NADH dehydrogenase [ubiquinone] iron-sulfur protein 8, mitochondrial	0.0519031997
+UniRef50_G3GRH4: NADH dehydrogenase [ubiquinone] iron-sulfur protein 8, mitochondrial|unclassified	0.0519031997
+UniRef50_B9KVR5: Cobyrinate a,c-diamide synthase / hydrogenobyrinic acid a,c-diamide synthase (Glutamine-hydrolysing)	0.0519013310
+UniRef50_B9KVR5: Cobyrinate a,c-diamide synthase / hydrogenobyrinic acid a,c-diamide synthase (Glutamine-hydrolysing)|unclassified	0.0519013310
+UniRef50_UPI000375971A: hypothetical protein	0.0518980809
+UniRef50_UPI000375971A: hypothetical protein|unclassified	0.0518980809
+UniRef50_UPI00028947C7: hydroxyglutarate oxidase	0.0518944123
+UniRef50_UPI00028947C7: hydroxyglutarate oxidase|unclassified	0.0518944123
+UniRef50_UPI0003F56376: hypothetical protein	0.0518937375
+UniRef50_UPI0003F56376: hypothetical protein|unclassified	0.0518937375
+UniRef50_M9R7C0	0.0518905197
+UniRef50_M9R7C0|unclassified	0.0518905197
+UniRef50_UPI0003B30418: 4-diphosphocytidyl-2C-methyl-D-erythritol kinase	0.0518855755
+UniRef50_UPI0003B30418: 4-diphosphocytidyl-2C-methyl-D-erythritol kinase|unclassified	0.0518855755
+UniRef50_M2CG06	0.0518834821
+UniRef50_M2CG06|unclassified	0.0518834821
+UniRef50_P44331: Ribokinase	0.0518708682
+UniRef50_P44331: Ribokinase|unclassified	0.0518708682
+UniRef50_UPI000361F546: hypothetical protein	0.0518696553
+UniRef50_UPI000361F546: hypothetical protein|unclassified	0.0518696553
+UniRef50_Q2SQK9	0.0518665590
+UniRef50_Q2SQK9|unclassified	0.0518665590
+UniRef50_I2C1C9: Iron complex transport system substrate-binding protein	0.0518663973
+UniRef50_I2C1C9: Iron complex transport system substrate-binding protein|unclassified	0.0518663973
+UniRef50_A0A024HXB0	0.0518652238
+UniRef50_A0A024HXB0|unclassified	0.0518652238
+UniRef50_I7E9B7	0.0518623772
+UniRef50_I7E9B7|unclassified	0.0518623772
+UniRef50_W0DM86: Diguanylate cyclase	0.0518573427
+UniRef50_W0DM86: Diguanylate cyclase|unclassified	0.0518573427
+UniRef50_UPI0003605E52: hypothetical protein	0.0518549930
+UniRef50_UPI0003605E52: hypothetical protein|unclassified	0.0518549930
+UniRef50_K8AWN2: Nucleoside-diphosphate-sugar epimerase	0.0518541229
+UniRef50_K8AWN2: Nucleoside-diphosphate-sugar epimerase|unclassified	0.0518541229
+UniRef50_K2AIA7	0.0518518380
+UniRef50_K2AIA7|unclassified	0.0518518380
+UniRef50_A4ECQ1	0.0518517786
+UniRef50_A4ECQ1|unclassified	0.0518517786
+UniRef50_UPI00047BA35C: MFS transporter, partial	0.0518405446
+UniRef50_UPI00047BA35C: MFS transporter, partial|unclassified	0.0518405446
+UniRef50_UPI0002C54C86	0.0518374701
+UniRef50_UPI0002C54C86|unclassified	0.0518374701
+UniRef50_UPI0003738292: hypothetical protein	0.0518360042
+UniRef50_UPI0003738292: hypothetical protein|unclassified	0.0518360042
+UniRef50_UPI0002378562: queuine tRNA-ribosyltransferase, partial	0.0518204223
+UniRef50_UPI0002378562: queuine tRNA-ribosyltransferase, partial|unclassified	0.0518204223
+UniRef50_UPI0003657BB2: hypothetical protein	0.0518192563
+UniRef50_UPI0003657BB2: hypothetical protein|unclassified	0.0518192563
+UniRef50_C5D6U5: 2-succinylbenzoate--CoA ligase	0.0518144362
+UniRef50_C5D6U5: 2-succinylbenzoate--CoA ligase|unclassified	0.0518144362
+UniRef50_UPI000288C522: flagellar hook protein FlgE, partial	0.0518140486
+UniRef50_UPI000288C522: flagellar hook protein FlgE, partial|unclassified	0.0518140486
+UniRef50_R5P2G7	0.0518050732
+UniRef50_R5P2G7|unclassified	0.0518050732
+UniRef50_UPI00047B2F59: calcium-binding protein	0.0517983073
+UniRef50_UPI00047B2F59: calcium-binding protein|unclassified	0.0517983073
+UniRef50_Q2IGL4: Bifunctional protein GlmU	0.0517955977
+UniRef50_Q2IGL4: Bifunctional protein GlmU|unclassified	0.0517955977
+UniRef50_X0WVX4: Marine sediment metagenome DNA, contig: S01H1_S31484 (Fragment)	0.0517941643
+UniRef50_X0WVX4: Marine sediment metagenome DNA, contig: S01H1_S31484 (Fragment)|unclassified	0.0517941643
+UniRef50_UPI00040861F5: hypothetical protein	0.0517889677
+UniRef50_UPI00040861F5: hypothetical protein|unclassified	0.0517889677
+UniRef50_UPI000360D29B: hypothetical protein	0.0517848111
+UniRef50_UPI000360D29B: hypothetical protein|unclassified	0.0517848111
+UniRef50_UPI0002EAACCC: hypothetical protein	0.0517841367
+UniRef50_UPI0002EAACCC: hypothetical protein|unclassified	0.0517841367
+UniRef50_Q96533: Alcohol dehydrogenase class-3	0.0517805594
+UniRef50_Q96533: Alcohol dehydrogenase class-3|unclassified	0.0517805594
+UniRef50_D3E4J6: ATPase	0.0517789491
+UniRef50_D3E4J6: ATPase|unclassified	0.0517789491
+UniRef50_UPI0003B32B46: corrinoid ABC transporter permease	0.0517789220
+UniRef50_UPI0003B32B46: corrinoid ABC transporter permease|unclassified	0.0517789220
+UniRef50_UPI0003775D1B: hypothetical protein, partial	0.0517789066
+UniRef50_UPI0003775D1B: hypothetical protein, partial|unclassified	0.0517789066
+UniRef50_Q2HE53	0.0517785947
+UniRef50_Q2HE53|unclassified	0.0517785947
+UniRef50_UPI0003B3A739: LysR family transcriptional regulator	0.0517774219
+UniRef50_UPI0003B3A739: LysR family transcriptional regulator|unclassified	0.0517774219
+UniRef50_D3FSA6	0.0517756165
+UniRef50_D3FSA6|unclassified	0.0517756165
+UniRef50_Q03N53: Relaxase/Mobilisation nuclease domain	0.0517721600
+UniRef50_Q03N53: Relaxase/Mobilisation nuclease domain|unclassified	0.0517721600
+UniRef50_Q67JX5: Cobalt ABC transporter permease protein	0.0517711032
+UniRef50_Q67JX5: Cobalt ABC transporter permease protein|unclassified	0.0517711032
+UniRef50_Q9K0G6: Non-canonical purine NTP pyrophosphatase	0.0517679194
+UniRef50_Q9K0G6: Non-canonical purine NTP pyrophosphatase|unclassified	0.0517679194
+UniRef50_UPI000477E5CD: altronate oxidoreductase	0.0517618944
+UniRef50_UPI000477E5CD: altronate oxidoreductase|unclassified	0.0517618944
+UniRef50_UPI00037D1EFC: ABC transporter	0.0517609883
+UniRef50_UPI00037D1EFC: ABC transporter|unclassified	0.0517609883
+UniRef50_W4ZHP0	0.0517607353
+UniRef50_W4ZHP0|unclassified	0.0517607353
+UniRef50_UPI000366565F: hypothetical protein	0.0517579559
+UniRef50_UPI000366565F: hypothetical protein|unclassified	0.0517579559
+UniRef50_Q46L57: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	0.0517573218
+UniRef50_Q46L57: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.0517573218
+UniRef50_UPI000301BD84: hypothetical protein	0.0517564440
+UniRef50_UPI000301BD84: hypothetical protein|unclassified	0.0517564440
+UniRef50_Q3MHF7: S-methyl-5'-thioadenosine phosphorylase	0.0517498835
+UniRef50_Q3MHF7: S-methyl-5'-thioadenosine phosphorylase|unclassified	0.0517498835
+UniRef50_R7MI21	0.0517493272
+UniRef50_R7MI21|unclassified	0.0517493272
+UniRef50_C5BU02: Type VI secretion protein, EvpB/family	0.0517475228
+UniRef50_C5BU02: Type VI secretion protein, EvpB/family|unclassified	0.0517475228
+UniRef50_A0LG38: Non-canonical purine NTP pyrophosphatase	0.0517401309
+UniRef50_A0LG38: Non-canonical purine NTP pyrophosphatase|unclassified	0.0517401309
+UniRef50_UPI0003B4641B: tRNA delta(2)-isopentenylpyrophosphate transferase	0.0517390462
+UniRef50_UPI0003B4641B: tRNA delta(2)-isopentenylpyrophosphate transferase|unclassified	0.0517390462
+UniRef50_B2V751: Anthranilate phosphoribosyltransferase	0.0517375707
+UniRef50_B2V751: Anthranilate phosphoribosyltransferase|unclassified	0.0517375707
+UniRef50_UPI00016A4E7F: isrso9-transposase protein	0.0517338883
+UniRef50_UPI00016A4E7F: isrso9-transposase protein|unclassified	0.0517338883
+UniRef50_UPI0002DD334F: hypothetical protein	0.0517317850
+UniRef50_UPI0002DD334F: hypothetical protein|unclassified	0.0517317850
+UniRef50_P27219: PTS system sucrose-specific EIIBC component	0.0517314701
+UniRef50_P27219: PTS system sucrose-specific EIIBC component|unclassified	0.0517314701
+UniRef50_UPI0004412576: GroES-like protein	0.0517227336
+UniRef50_UPI0004412576: GroES-like protein|unclassified	0.0517227336
+UniRef50_Q6KHL1: Energy-coupling factor transporter ATP-binding protein EcfA1	0.0517167751
+UniRef50_Q6KHL1: Energy-coupling factor transporter ATP-binding protein EcfA1|unclassified	0.0517167751
+UniRef50_UPI0004630DB7: hypothetical protein	0.0517145534
+UniRef50_UPI0004630DB7: hypothetical protein|unclassified	0.0517145534
+UniRef50_U5A1P3: Aromatic hydrocarbon degradation protein	0.0517124135
+UniRef50_U5A1P3: Aromatic hydrocarbon degradation protein|unclassified	0.0517124135
+UniRef50_L8XYT3	0.0517122585
+UniRef50_L8XYT3|unclassified	0.0517122585
+UniRef50_UPI000463A064: L-asparagine permease	0.0517107768
+UniRef50_UPI000463A064: L-asparagine permease|unclassified	0.0517107768
+UniRef50_UPI00016C01B1: stage V sporulation protein E	0.0517102198
+UniRef50_UPI00016C01B1: stage V sporulation protein E|unclassified	0.0517102198
+UniRef50_UPI00036DC3EC: hypothetical protein	0.0517090837
+UniRef50_UPI00036DC3EC: hypothetical protein|unclassified	0.0517090837
+UniRef50_UPI00035E00DE: hypothetical protein	0.0517045902
+UniRef50_UPI00035E00DE: hypothetical protein|unclassified	0.0517045902
+UniRef50_UPI000363AF74: hypothetical protein	0.0517042982
+UniRef50_UPI000363AF74: hypothetical protein|unclassified	0.0517042982
+UniRef50_A0LDB5: 4-hydroxy-tetrahydrodipicolinate synthase	0.0517034162
+UniRef50_A0LDB5: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0517034162
+UniRef50_UPI000381545E: hypothetical protein	0.0517001310
+UniRef50_UPI000381545E: hypothetical protein|unclassified	0.0517001310
+UniRef50_F7NGE0	0.0516991344
+UniRef50_F7NGE0|unclassified	0.0516991344
+UniRef50_UPI000478E86A: hypothetical protein	0.0516988801
+UniRef50_UPI000478E86A: hypothetical protein|unclassified	0.0516988801
+UniRef50_J4PCY6	0.0516969863
+UniRef50_J4PCY6|unclassified	0.0516969863
+UniRef50_UPI0002E78530: hypothetical protein	0.0516959403
+UniRef50_UPI0002E78530: hypothetical protein|unclassified	0.0516959403
+UniRef50_A4RXF7: Predicted protein	0.0516930680
+UniRef50_A4RXF7: Predicted protein|unclassified	0.0516930680
+UniRef50_M0AAZ5: Phytoene desaturase	0.0516926609
+UniRef50_M0AAZ5: Phytoene desaturase|unclassified	0.0516926609
+UniRef50_UPI0003B5FF04: ATPase AAA	0.0516898806
+UniRef50_UPI0003B5FF04: ATPase AAA|unclassified	0.0516898806
+UniRef50_UPI0000E0F7AC: iron deficiency-induced protein A	0.0516875007
+UniRef50_UPI0000E0F7AC: iron deficiency-induced protein A|unclassified	0.0516875007
+UniRef50_S6U9J5	0.0516824827
+UniRef50_S6U9J5|unclassified	0.0516824827
+UniRef50_W6DHY1: Mobile element protein	0.0516802403
+UniRef50_W6DHY1: Mobile element protein|unclassified	0.0516802403
+UniRef50_UPI000310F2C6: hypothetical protein	0.0516773427
+UniRef50_UPI000310F2C6: hypothetical protein|unclassified	0.0516773427
+UniRef50_UPI00037AF651: hypothetical protein	0.0516752181
+UniRef50_UPI00037AF651: hypothetical protein|unclassified	0.0516752181
+UniRef50_Q7UMC0: Leucine--tRNA ligase	0.0516748000
+UniRef50_Q7UMC0: Leucine--tRNA ligase|unclassified	0.0516748000
+UniRef50_UPI00039563BC: PREDICTED: SCO-spondin-like	0.0516737571
+UniRef50_UPI00039563BC: PREDICTED: SCO-spondin-like|unclassified	0.0516737571
+UniRef50_A0A011PL09: Fatty acid oxidation complex subunit alpha	0.0516714708
+UniRef50_A0A011PL09: Fatty acid oxidation complex subunit alpha|unclassified	0.0516714708
+UniRef50_F2AC32	0.0516709352
+UniRef50_F2AC32|unclassified	0.0516709352
+UniRef50_D8G140: Pentapeptide repeat protein	0.0516662755
+UniRef50_D8G140: Pentapeptide repeat protein|unclassified	0.0516662755
+UniRef50_Q7VRS2: GMP synthase [glutamine-hydrolyzing]	0.0516660050
+UniRef50_Q7VRS2: GMP synthase [glutamine-hydrolyzing]|unclassified	0.0516660050
+UniRef50_UPI00038FD62D: Potassium-transporting ATPase B chain	0.0516611219
+UniRef50_UPI00038FD62D: Potassium-transporting ATPase B chain|unclassified	0.0516611219
+UniRef50_U6JWT9	0.0516566816
+UniRef50_U6JWT9|unclassified	0.0516566816
+UniRef50_UPI00036A15B4: hypothetical protein	0.0516547299
+UniRef50_UPI00036A15B4: hypothetical protein|unclassified	0.0516547299
+UniRef50_UPI00037AD4AC: hypothetical protein	0.0516545790
+UniRef50_UPI00037AD4AC: hypothetical protein|unclassified	0.0516545790
+UniRef50_A5IKI6: Phospho-N-acetylmuramoyl-pentapeptide-transferase	0.0516479153
+UniRef50_A5IKI6: Phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.0516479153
+UniRef50_UPI000368D67C: hypothetical protein, partial	0.0516454167
+UniRef50_UPI000368D67C: hypothetical protein, partial|unclassified	0.0516454167
+UniRef50_UPI000360375D: hypothetical protein	0.0516453970
+UniRef50_UPI000360375D: hypothetical protein|unclassified	0.0516453970
+UniRef50_UPI0003B6F817: imidazole glycerol phosphate synthase	0.0516447127
+UniRef50_UPI0003B6F817: imidazole glycerol phosphate synthase|unclassified	0.0516447127
+UniRef50_UPI000478CFF4: ATPase AAA	0.0516396725
+UniRef50_UPI000478CFF4: ATPase AAA|unclassified	0.0516396725
+UniRef50_UPI00026283EA: C4-dicarboxylate transporter	0.0516377401
+UniRef50_UPI00026283EA: C4-dicarboxylate transporter|unclassified	0.0516377401
+UniRef50_P51776: Pyruvate, phosphate dikinase	0.0516341902
+UniRef50_P51776: Pyruvate, phosphate dikinase|unclassified	0.0516341902
+UniRef50_B9E115: Phosphopentomutase	0.0516323434
+UniRef50_B9E115: Phosphopentomutase|unclassified	0.0516323434
+UniRef50_UPI000237CDE4: hypothetical protein	0.0516309131
+UniRef50_UPI000237CDE4: hypothetical protein|unclassified	0.0516309131
+UniRef50_UPI0003B72E61: ABC transporter permease	0.0516285117
+UniRef50_UPI0003B72E61: ABC transporter permease|unclassified	0.0516285117
+UniRef50_UPI000374DAB0: hypothetical protein	0.0516248777
+UniRef50_UPI000374DAB0: hypothetical protein|unclassified	0.0516248777
+UniRef50_UPI0004626526: hypothetical protein	0.0516207379
+UniRef50_UPI0004626526: hypothetical protein|unclassified	0.0516207379
+UniRef50_UPI000380E4D5: hypothetical protein	0.0516179459
+UniRef50_UPI000380E4D5: hypothetical protein|unclassified	0.0516179459
+UniRef50_UPI000373C7E0: hypothetical protein	0.0516147848
+UniRef50_UPI000373C7E0: hypothetical protein|unclassified	0.0516147848
+UniRef50_UPI00046F3D59: hypothetical protein	0.0516069328
+UniRef50_UPI00046F3D59: hypothetical protein|unclassified	0.0516069328
+UniRef50_A5UYK7: von Willebrand factor, type A	0.0516061839
+UniRef50_A5UYK7: von Willebrand factor, type A|unclassified	0.0516061839
+UniRef50_E1Z4J1	0.0516012817
+UniRef50_E1Z4J1|unclassified	0.0516012817
+UniRef50_G7T3W9: ClpB protein	0.0515984151
+UniRef50_G7T3W9: ClpB protein|unclassified	0.0515984151
+UniRef50_UPI00041B8A3B: short-chain dehydrogenase	0.0515920613
+UniRef50_UPI00041B8A3B: short-chain dehydrogenase|unclassified	0.0515920613
+UniRef50_I7F289	0.0515856400
+UniRef50_I7F289|unclassified	0.0515856400
+UniRef50_UPI00035D4DDD: hypothetical protein	0.0515788110
+UniRef50_UPI00035D4DDD: hypothetical protein|unclassified	0.0515788110
+UniRef50_UPI00036F0317: hypothetical protein	0.0515775133
+UniRef50_UPI00036F0317: hypothetical protein|unclassified	0.0515775133
+UniRef50_UPI000373C899: hypothetical protein	0.0515756483
+UniRef50_UPI000373C899: hypothetical protein|unclassified	0.0515756483
+UniRef50_UPI00036556C2: hypothetical protein	0.0515747114
+UniRef50_UPI00036556C2: hypothetical protein|unclassified	0.0515747114
+UniRef50_Q0A986: Histidine--tRNA ligase	0.0515698076
+UniRef50_Q0A986: Histidine--tRNA ligase|unclassified	0.0515698076
+UniRef50_UPI00031E384C: hypothetical protein	0.0515697737
+UniRef50_UPI00031E384C: hypothetical protein|unclassified	0.0515697737
+UniRef50_Q99405: M-protease	0.0515665017
+UniRef50_Q99405: M-protease|unclassified	0.0515665017
+UniRef50_UPI0002F7FF66: D-Ala-D-Ala carboxypeptidase	0.0515619124
+UniRef50_UPI0002F7FF66: D-Ala-D-Ala carboxypeptidase|unclassified	0.0515619124
+UniRef50_UPI00036FE1F3: hypothetical protein	0.0515534835
+UniRef50_UPI00036FE1F3: hypothetical protein|unclassified	0.0515534835
+UniRef50_UPI0003675B24: hypothetical protein, partial	0.0515522134
+UniRef50_UPI0003675B24: hypothetical protein, partial|unclassified	0.0515522134
+UniRef50_B8GXW4	0.0515468337
+UniRef50_B8GXW4|unclassified	0.0515468337
+UniRef50_UPI0004688183: LysR family transcriptional regulator	0.0515402431
+UniRef50_UPI0004688183: LysR family transcriptional regulator|unclassified	0.0515402431
+UniRef50_E7C878: ABC-type transport system, involved in lipoprotein release, permease component	0.0515323642
+UniRef50_E7C878: ABC-type transport system, involved in lipoprotein release, permease component|unclassified	0.0515323642
+UniRef50_B8G821: Uroporphyrinogen decarboxylase	0.0515219759
+UniRef50_B8G821: Uroporphyrinogen decarboxylase|unclassified	0.0515219759
+UniRef50_Q5KVX9: 2-succinylbenzoate--CoA ligase	0.0515218252
+UniRef50_Q5KVX9: 2-succinylbenzoate--CoA ligase|unclassified	0.0515218252
+UniRef50_UPI0003EABE39	0.0515118370
+UniRef50_UPI0003EABE39|unclassified	0.0515118370
+UniRef50_UPI00047A0218: hypothetical protein	0.0515100848
+UniRef50_UPI00047A0218: hypothetical protein|unclassified	0.0515100848
+UniRef50_UPI00016C41D3: preprotein translocase subunit SecA	0.0515100399
+UniRef50_UPI00016C41D3: preprotein translocase subunit SecA|unclassified	0.0515100399
+UniRef50_UPI00046AB023: hypothetical protein	0.0515023896
+UniRef50_UPI00046AB023: hypothetical protein|unclassified	0.0515023896
+UniRef50_UPI00037AE065: hypothetical protein	0.0515011130
+UniRef50_UPI00037AE065: hypothetical protein|unclassified	0.0515011130
+UniRef50_UPI0003B5DBB3: cysteine desulfurase	0.0514987207
+UniRef50_UPI0003B5DBB3: cysteine desulfurase|unclassified	0.0514987207
+UniRef50_UPI0003C17411	0.0514987161
+UniRef50_UPI0003C17411|unclassified	0.0514987161
+UniRef50_UPI00036E5C60: hypothetical protein	0.0514976184
+UniRef50_UPI00036E5C60: hypothetical protein|unclassified	0.0514976184
+UniRef50_UPI0003AB78D1	0.0514926046
+UniRef50_UPI0003AB78D1|unclassified	0.0514926046
+UniRef50_UPI0003B49296: 5-hydroxymethyluracil DNA glycosylase	0.0514912885
+UniRef50_UPI0003B49296: 5-hydroxymethyluracil DNA glycosylase|unclassified	0.0514912885
+UniRef50_UPI0003B76EB2: 5-amino-6-(5-phosphoribosylamino)uracil reductase	0.0514902391
+UniRef50_UPI0003B76EB2: 5-amino-6-(5-phosphoribosylamino)uracil reductase|unclassified	0.0514902391
+UniRef50_UPI0003B71625: LysR family transcriptional regulator	0.0514899301
+UniRef50_UPI0003B71625: LysR family transcriptional regulator|unclassified	0.0514899301
+UniRef50_UPI000468B535: membrane protein	0.0514870883
+UniRef50_UPI000468B535: membrane protein|unclassified	0.0514870883
+UniRef50_UPI0003B748D2: serine/threonine dehydratase	0.0514859389
+UniRef50_UPI0003B748D2: serine/threonine dehydratase|unclassified	0.0514859389
+UniRef50_UPI000262CED4: tRNA pseudouridine synthase A	0.0514841382
+UniRef50_UPI000262CED4: tRNA pseudouridine synthase A|unclassified	0.0514841382
+UniRef50_UPI0004408240: hypothetical protein FOMMEDRAFT_108336	0.0514834574
+UniRef50_UPI0004408240: hypothetical protein FOMMEDRAFT_108336|unclassified	0.0514834574
+UniRef50_UPI0002B499FE: PREDICTED: acetyl-CoA acetyltransferase, cytosolic-like	0.0514825432
+UniRef50_UPI0002B499FE: PREDICTED: acetyl-CoA acetyltransferase, cytosolic-like|unclassified	0.0514825432
+UniRef50_I6Y0P6	0.0514819323
+UniRef50_I6Y0P6|unclassified	0.0514819323
+UniRef50_B2A3I3: ExsB family protein	0.0514790062
+UniRef50_B2A3I3: ExsB family protein|unclassified	0.0514790062
+UniRef50_U7G2T4	0.0514789352
+UniRef50_U7G2T4|unclassified	0.0514789352
+UniRef50_UPI000364C068: hypothetical protein	0.0514774155
+UniRef50_UPI000364C068: hypothetical protein|unclassified	0.0514774155
+UniRef50_A4FPW7	0.0514769299
+UniRef50_A4FPW7|unclassified	0.0514769299
+UniRef50_D5V7X1	0.0514761189
+UniRef50_D5V7X1|unclassified	0.0514761189
+UniRef50_UPI0004741FC0: acetate--CoA ligase	0.0514750165
+UniRef50_UPI0004741FC0: acetate--CoA ligase|unclassified	0.0514750165
+UniRef50_UPI0003675A61: hypothetical protein	0.0514719485
+UniRef50_UPI0003675A61: hypothetical protein|unclassified	0.0514719485
+UniRef50_UPI0002DCB995: hypothetical protein	0.0514521064
+UniRef50_UPI0002DCB995: hypothetical protein|unclassified	0.0514521064
+UniRef50_W2KUZ8	0.0514481341
+UniRef50_W2KUZ8|unclassified	0.0514481341
+UniRef50_UPI0003C4BE0E: PREDICTED: acetyl-coenzyme A synthetase, cytoplasmic	0.0514477276
+UniRef50_UPI0003C4BE0E: PREDICTED: acetyl-coenzyme A synthetase, cytoplasmic|unclassified	0.0514477276
+UniRef50_UPI000299D0F5: amino acid permease-associated protein, partial	0.0514452682
+UniRef50_UPI000299D0F5: amino acid permease-associated protein, partial|unclassified	0.0514452682
+UniRef50_L0E0H7: Type II secretion system protein	0.0514445554
+UniRef50_L0E0H7: Type II secretion system protein|unclassified	0.0514445554
+UniRef50_UPI00036A5745: MULTISPECIES: hypothetical protein	0.0514440808
+UniRef50_UPI00036A5745: MULTISPECIES: hypothetical protein|unclassified	0.0514440808
+UniRef50_UPI0003C88714: PREDICTED: glyoxylate reductase/hydroxypyruvate reductase	0.0514376572
+UniRef50_UPI0003C88714: PREDICTED: glyoxylate reductase/hydroxypyruvate reductase|unclassified	0.0514376572
+UniRef50_K9PZL3	0.0514327771
+UniRef50_K9PZL3|unclassified	0.0514327771
+UniRef50_UPI00046F9ED3: hypothetical protein	0.0514325003
+UniRef50_UPI00046F9ED3: hypothetical protein|unclassified	0.0514325003
+UniRef50_UPI00034484F7: PREDICTED: protein AHNAK2	0.0514323009
+UniRef50_UPI00034484F7: PREDICTED: protein AHNAK2|unclassified	0.0514323009
+UniRef50_Q9RJ16: Cobyrinic acid A,C-diamide synthase	0.0514295137
+UniRef50_Q9RJ16: Cobyrinic acid A,C-diamide synthase|unclassified	0.0514295137
+UniRef50_UPI00047679F9: sugar ABC transporter ATP-binding protein	0.0514233159
+UniRef50_UPI00047679F9: sugar ABC transporter ATP-binding protein|unclassified	0.0514233159
+UniRef50_Q2P1L2: tRNA pseudouridine synthase D	0.0514187761
+UniRef50_Q2P1L2: tRNA pseudouridine synthase D|unclassified	0.0514187761
+UniRef50_Q89AK6: 8-amino-7-oxononanoate synthase	0.0514181997
+UniRef50_Q89AK6: 8-amino-7-oxononanoate synthase|unclassified	0.0514181997
+UniRef50_O67642: Transketolase	0.0514145262
+UniRef50_O67642: Transketolase|unclassified	0.0514145262
+UniRef50_UPI00037EEFBB: hypothetical protein	0.0514128915
+UniRef50_UPI00037EEFBB: hypothetical protein|unclassified	0.0514128915
+UniRef50_R9JLN7	0.0514097016
+UniRef50_R9JLN7|unclassified	0.0514097016
+UniRef50_UPI000479F9E1: phthalate 4,5-dioxygenase	0.0514091166
+UniRef50_UPI000479F9E1: phthalate 4,5-dioxygenase|unclassified	0.0514091166
+UniRef50_Q465U3: Imidazole glycerol phosphate synthase subunit HisH	0.0514019072
+UniRef50_Q465U3: Imidazole glycerol phosphate synthase subunit HisH|unclassified	0.0514019072
+UniRef50_T2RE06: 2-hydroxyglutaryl-CoA dehydratase, D-component family protein	0.0513988708
+UniRef50_T2RE06: 2-hydroxyglutaryl-CoA dehydratase, D-component family protein|unclassified	0.0513988708
+UniRef50_A1KKI2: Dihydroorotate dehydrogenase (quinone)	0.0513984589
+UniRef50_A1KKI2: Dihydroorotate dehydrogenase (quinone)|unclassified	0.0513984589
+UniRef50_UPI0003605428: hypothetical protein, partial	0.0513954948
+UniRef50_UPI0003605428: hypothetical protein, partial|unclassified	0.0513954948
+UniRef50_UPI0004704DEF: hypothetical protein	0.0513887138
+UniRef50_UPI0004704DEF: hypothetical protein|unclassified	0.0513887138
+UniRef50_UPI0003639EDA: hypothetical protein	0.0513792773
+UniRef50_UPI0003639EDA: hypothetical protein|unclassified	0.0513792773
+UniRef50_P71016: Betaine aldehyde dehydrogenase	0.0513751242
+UniRef50_P71016: Betaine aldehyde dehydrogenase|unclassified	0.0513751242
+UniRef50_F2N366: Molecular chaperone	0.0513710052
+UniRef50_F2N366: Molecular chaperone|unclassified	0.0513710052
+UniRef50_Q9LYT1: Polyamine oxidase 3	0.0513585992
+UniRef50_Q9LYT1: Polyamine oxidase 3|unclassified	0.0513585992
+UniRef50_UPI00036496EE: hypothetical protein	0.0513513965
+UniRef50_UPI00036496EE: hypothetical protein|unclassified	0.0513513965
+UniRef50_Q3JPB8	0.0513409526
+UniRef50_Q3JPB8|unclassified	0.0513409526
+UniRef50_UPI000440E4B2: PREDICTED: succinate--hydroxymethylglutarate CoA-transferase	0.0513408091
+UniRef50_UPI000440E4B2: PREDICTED: succinate--hydroxymethylglutarate CoA-transferase|unclassified	0.0513408091
+UniRef50_UPI0004763CF3: pseudouridine synthase	0.0513389586
+UniRef50_UPI0004763CF3: pseudouridine synthase|unclassified	0.0513389586
+UniRef50_Q2RFN9: DNA-directed RNA polymerase subunit beta	0.0513339232
+UniRef50_Q2RFN9: DNA-directed RNA polymerase subunit beta|unclassified	0.0513339232
+UniRef50_UPI00035FEFEE: hypothetical protein	0.0513327534
+UniRef50_UPI00035FEFEE: hypothetical protein|unclassified	0.0513327534
+UniRef50_L1Q375: Metallo-beta-lactamase domain protein	0.0513287582
+UniRef50_L1Q375: Metallo-beta-lactamase domain protein|unclassified	0.0513287582
+UniRef50_H0IY53	0.0513265505
+UniRef50_H0IY53|unclassified	0.0513265505
+UniRef50_UPI00042668B0: hypothetical protein	0.0513260178
+UniRef50_UPI00042668B0: hypothetical protein|unclassified	0.0513260178
+UniRef50_F6E6H8: ABC-type transporter, periplasmic subunit	0.0513217758
+UniRef50_F6E6H8: ABC-type transporter, periplasmic subunit|unclassified	0.0513217758
+UniRef50_B2RIE4: Ribosomal RNA small subunit methyltransferase H	0.0513208722
+UniRef50_B2RIE4: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0513208722
+UniRef50_E6VFF6: Diguanylate cyclase	0.0513104334
+UniRef50_E6VFF6: Diguanylate cyclase|unclassified	0.0513104334
+UniRef50_A8HT43: Predicted protein (Fragment)	0.0513103926
+UniRef50_A8HT43: Predicted protein (Fragment)|unclassified	0.0513103926
+UniRef50_Q4PH43: S-methyl-5'-thioadenosine phosphorylase	0.0513003100
+UniRef50_Q4PH43: S-methyl-5'-thioadenosine phosphorylase|unclassified	0.0513003100
+UniRef50_Q2JXG9: tRNA N6-adenosine threonylcarbamoyltransferase	0.0512974573
+UniRef50_Q2JXG9: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.0512974573
+UniRef50_UPI00037B94E6: hypothetical protein	0.0512951990
+UniRef50_UPI00037B94E6: hypothetical protein|unclassified	0.0512951990
+UniRef50_UPI000364B6F1: hypothetical protein	0.0512950201
+UniRef50_UPI000364B6F1: hypothetical protein|unclassified	0.0512950201
+UniRef50_UPI00047736AE: threonine aldolase	0.0512939757
+UniRef50_UPI00047736AE: threonine aldolase|unclassified	0.0512939757
+UniRef50_Q03XB9	0.0512930381
+UniRef50_Q03XB9|unclassified	0.0512930381
+UniRef50_B7ZMP1-2: Isoform 2 of Probable Xaa-Pro aminopeptidase 3	0.0512888642
+UniRef50_B7ZMP1-2: Isoform 2 of Probable Xaa-Pro aminopeptidase 3|unclassified	0.0512888642
+UniRef50_UPI00037EAB01: hypothetical protein	0.0512873978
+UniRef50_UPI00037EAB01: hypothetical protein|unclassified	0.0512873978
+UniRef50_UPI0003B6DE49: galactokinase	0.0512852155
+UniRef50_UPI0003B6DE49: galactokinase|unclassified	0.0512852155
+UniRef50_UPI00034DE2BC: hypothetical protein	0.0512838497
+UniRef50_UPI00034DE2BC: hypothetical protein|unclassified	0.0512838497
+UniRef50_M1AZ55	0.0512760090
+UniRef50_M1AZ55|unclassified	0.0512760090
+UniRef50_UPI00030902D1: hypothetical protein	0.0512745955
+UniRef50_UPI00030902D1: hypothetical protein|unclassified	0.0512745955
+UniRef50_A4Y5J7	0.0512744671
+UniRef50_A4Y5J7|unclassified	0.0512744671
+UniRef50_UPI000467D444: phosphate transporter	0.0512592165
+UniRef50_UPI000467D444: phosphate transporter|unclassified	0.0512592165
+UniRef50_O67216: 4-hydroxy-tetrahydrodipicolinate synthase	0.0512589241
+UniRef50_O67216: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0512589241
+UniRef50_D7FYV6	0.0512583740
+UniRef50_D7FYV6|unclassified	0.0512583740
+UniRef50_G0TVU1	0.0512561528
+UniRef50_G0TVU1|unclassified	0.0512561528
+UniRef50_UPI0003B58A15: hypothetical protein	0.0512552003
+UniRef50_UPI0003B58A15: hypothetical protein|unclassified	0.0512552003
+UniRef50_UPI000363B7A3: hypothetical protein	0.0512541688
+UniRef50_UPI000363B7A3: hypothetical protein|unclassified	0.0512541688
+UniRef50_UPI000289AD8A: ABC transporter permease	0.0512531480
+UniRef50_UPI000289AD8A: ABC transporter permease|unclassified	0.0512531480
+UniRef50_UPI00035C70A6: hypothetical protein	0.0512489145
+UniRef50_UPI00035C70A6: hypothetical protein|unclassified	0.0512489145
+UniRef50_UPI0004443E9D: PREDICTED: glutaredoxin-related protein 5, mitochondrial	0.0512469979
+UniRef50_UPI0004443E9D: PREDICTED: glutaredoxin-related protein 5, mitochondrial|unclassified	0.0512469979
+UniRef50_A1B9B6: NnrS family protein	0.0512469870
+UniRef50_A1B9B6: NnrS family protein|unclassified	0.0512469870
+UniRef50_UPI00047BF490: membrane protein	0.0512436104
+UniRef50_UPI00047BF490: membrane protein|unclassified	0.0512436104
+UniRef50_Q8K9U4: tRNA pseudouridine synthase A	0.0512406202
+UniRef50_Q8K9U4: tRNA pseudouridine synthase A|unclassified	0.0512406202
+UniRef50_I1G812	0.0512354351
+UniRef50_I1G812|unclassified	0.0512354351
+UniRef50_A0A010CAY1: Transposase DDE domain protein	0.0512331609
+UniRef50_A0A010CAY1: Transposase DDE domain protein|unclassified	0.0512331609
+UniRef50_UPI0003B57749: signal peptidase I	0.0512323314
+UniRef50_UPI0003B57749: signal peptidase I|unclassified	0.0512323314
+UniRef50_B7S018: Oxidoreductase, short chain dehydrogenase/reductase family	0.0512318896
+UniRef50_B7S018: Oxidoreductase, short chain dehydrogenase/reductase family|unclassified	0.0512318896
+UniRef50_UPI0004635122: hypothetical protein	0.0512314649
+UniRef50_UPI0004635122: hypothetical protein|unclassified	0.0512314649
+UniRef50_UPI000350D576	0.0512302692
+UniRef50_UPI000350D576|unclassified	0.0512302692
+UniRef50_F8M7U6: PE-PGRS family protein	0.0512219976
+UniRef50_F8M7U6: PE-PGRS family protein|unclassified	0.0512219976
+UniRef50_UPI0003B6C2BF: inosine-uridine preferring nucleoside hydrolase	0.0512188955
+UniRef50_UPI0003B6C2BF: inosine-uridine preferring nucleoside hydrolase|unclassified	0.0512188955
+UniRef50_UPI00047D7CE0: hypothetical protein	0.0512162954
+UniRef50_UPI00047D7CE0: hypothetical protein|unclassified	0.0512162954
+UniRef50_UPI00036D292E: hypothetical protein	0.0512158200
+UniRef50_UPI00036D292E: hypothetical protein|unclassified	0.0512158200
+UniRef50_UPI000383025F: hypothetical protein	0.0512141341
+UniRef50_UPI000383025F: hypothetical protein|unclassified	0.0512141341
+UniRef50_Q8D1W3: Glycine--tRNA ligase alpha subunit	0.0512108773
+UniRef50_Q8D1W3: Glycine--tRNA ligase alpha subunit|unclassified	0.0512108773
+UniRef50_Q07933: Nitrogenase iron-iron protein alpha chain	0.0511893487
+UniRef50_Q07933: Nitrogenase iron-iron protein alpha chain|unclassified	0.0511893487
+UniRef50_UPI00035D4850: MULTISPECIES: hypothetical protein	0.0511872809
+UniRef50_UPI00035D4850: MULTISPECIES: hypothetical protein|unclassified	0.0511872809
+UniRef50_UPI00036D88A0: hypothetical protein	0.0511869805
+UniRef50_UPI00036D88A0: hypothetical protein|unclassified	0.0511869805
+UniRef50_UPI0004642384: hypothetical protein	0.0511858023
+UniRef50_UPI0004642384: hypothetical protein|unclassified	0.0511858023
+UniRef50_UPI000414ACF6: TonB-dependent receptor	0.0511844586
+UniRef50_UPI000414ACF6: TonB-dependent receptor|unclassified	0.0511844586
+UniRef50_UPI00046A9978: hypothetical protein	0.0511812290
+UniRef50_UPI00046A9978: hypothetical protein|unclassified	0.0511812290
+UniRef50_UPI00037D1E77: hypothetical protein	0.0511785756
+UniRef50_UPI00037D1E77: hypothetical protein|unclassified	0.0511785756
+UniRef50_W6XQ24	0.0511711384
+UniRef50_W6XQ24|unclassified	0.0511711384
+UniRef50_P59952: Methionine--tRNA ligase	0.0511693329
+UniRef50_P59952: Methionine--tRNA ligase|unclassified	0.0511693329
+UniRef50_A9KLM2: tRNA (guanine-N(1)-)-methyltransferase	0.0511690028
+UniRef50_A9KLM2: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0511690028
+UniRef50_UPI00046FE60A: hypothetical protein	0.0511656334
+UniRef50_UPI00046FE60A: hypothetical protein|unclassified	0.0511656334
+UniRef50_Q89LQ8: Bifunctional enzyme IspD/IspF	0.0511614244
+UniRef50_Q89LQ8: Bifunctional enzyme IspD/IspF|unclassified	0.0511614244
+UniRef50_M3Z5Z5	0.0511567175
+UniRef50_M3Z5Z5|unclassified	0.0511567175
+UniRef50_UPI0004764017: peptide ABC transporter permease	0.0511561142
+UniRef50_UPI0004764017: peptide ABC transporter permease|unclassified	0.0511561142
+UniRef50_A0A011PWL1: Elongation factor G	0.0511559888
+UniRef50_A0A011PWL1: Elongation factor G|unclassified	0.0511559888
+UniRef50_UPI00042B396A: Geranylgeranyl pyrophosphate synthase 1	0.0511555626
+UniRef50_UPI00042B396A: Geranylgeranyl pyrophosphate synthase 1|unclassified	0.0511555626
+UniRef50_UPI00037EDD0C: hypothetical protein	0.0511548108
+UniRef50_UPI00037EDD0C: hypothetical protein|unclassified	0.0511548108
+UniRef50_UPI00047D6618: hypothetical protein	0.0511540533
+UniRef50_UPI00047D6618: hypothetical protein|unclassified	0.0511540533
+UniRef50_I7EZW4: Baseplate assembly protein J	0.0511524124
+UniRef50_I7EZW4: Baseplate assembly protein J|unclassified	0.0511524124
+UniRef50_UPI00036042A8: hypothetical protein	0.0511495884
+UniRef50_UPI00036042A8: hypothetical protein|unclassified	0.0511495884
+UniRef50_V6IV51: Phosphoglycerate mutase	0.0511468732
+UniRef50_V6IV51: Phosphoglycerate mutase|unclassified	0.0511468732
+UniRef50_A4TIZ4: Virulence factor	0.0511456247
+UniRef50_A4TIZ4: Virulence factor|unclassified	0.0511456247
+UniRef50_B7HW27	0.0511438792
+UniRef50_B7HW27|unclassified	0.0511438792
+UniRef50_UPI0001CBF5BB: macrolide ABC transporter ATP-binding protein	0.0511405042
+UniRef50_UPI0001CBF5BB: macrolide ABC transporter ATP-binding protein|unclassified	0.0511405042
+UniRef50_I2F053: UPF0176 protein Emtol_4182	0.0511332621
+UniRef50_I2F053: UPF0176 protein Emtol_4182|unclassified	0.0511332621
+UniRef50_UPI0004788709: 4-amino-4-deoxychorismate lyase	0.0511291669
+UniRef50_UPI0004788709: 4-amino-4-deoxychorismate lyase|unclassified	0.0511291669
+UniRef50_UPI00032AFF6E: PREDICTED: proline-rich receptor-like protein kinase PERK2-like	0.0511282301
+UniRef50_UPI00032AFF6E: PREDICTED: proline-rich receptor-like protein kinase PERK2-like|unclassified	0.0511282301
+UniRef50_R8HF68	0.0511226011
+UniRef50_R8HF68|unclassified	0.0511226011
+UniRef50_K4Z7C4: Cobalamin synthesis protein P47K	0.0511217359
+UniRef50_K4Z7C4: Cobalamin synthesis protein P47K|unclassified	0.0511217359
+UniRef50_UPI00035E2256: hypothetical protein	0.0511198295
+UniRef50_UPI00035E2256: hypothetical protein|unclassified	0.0511198295
+UniRef50_UPI0003017670: hypothetical protein	0.0511185071
+UniRef50_UPI0003017670: hypothetical protein|unclassified	0.0511185071
+UniRef50_Q9LD57: Phosphoglycerate kinase 1, chloroplastic	0.0511171798
+UniRef50_Q9LD57: Phosphoglycerate kinase 1, chloroplastic|unclassified	0.0511171798
+UniRef50_UPI0003799B2B: hypothetical protein	0.0511120041
+UniRef50_UPI0003799B2B: hypothetical protein|unclassified	0.0511120041
+UniRef50_UPI0002D9120C: hypothetical protein	0.0511110465
+UniRef50_UPI0002D9120C: hypothetical protein|unclassified	0.0511110465
+UniRef50_A0A031GPX8: Type II secretion system protein	0.0511070561
+UniRef50_A0A031GPX8: Type II secretion system protein|unclassified	0.0511070561
+UniRef50_UPI00047880CE: hypothetical protein	0.0511059289
+UniRef50_UPI00047880CE: hypothetical protein|unclassified	0.0511059289
+UniRef50_W6YQX3	0.0511044148
+UniRef50_W6YQX3|unclassified	0.0511044148
+UniRef50_UPI0003F14391: PREDICTED: UDP-glucuronic acid decarboxylase 1-like	0.0511002430
+UniRef50_UPI0003F14391: PREDICTED: UDP-glucuronic acid decarboxylase 1-like|unclassified	0.0511002430
+UniRef50_UPI00034F3E03: PREDICTED: clumping factor A-like	0.0510989852
+UniRef50_UPI00034F3E03: PREDICTED: clumping factor A-like|unclassified	0.0510989852
+UniRef50_UPI00037743FD: hypothetical protein	0.0510927725
+UniRef50_UPI00037743FD: hypothetical protein|unclassified	0.0510927725
+UniRef50_UPI0004663859: MULTISPECIES: hypothetical protein	0.0510859592
+UniRef50_UPI0004663859: MULTISPECIES: hypothetical protein|unclassified	0.0510859592
+UniRef50_UPI0003824A7E: sarcosine oxidase subunit alpha	0.0510841540
+UniRef50_UPI0003824A7E: sarcosine oxidase subunit alpha|unclassified	0.0510841540
+UniRef50_Y1FPC0	0.0510792309
+UniRef50_Y1FPC0|unclassified	0.0510792309
+UniRef50_UPI00040DC15B: hypothetical protein	0.0510724678
+UniRef50_UPI00040DC15B: hypothetical protein|unclassified	0.0510724678
+UniRef50_UPI0002B48709: PREDICTED: isovaleryl-CoA dehydrogenase, mitochondrial-like	0.0510669876
+UniRef50_UPI0002B48709: PREDICTED: isovaleryl-CoA dehydrogenase, mitochondrial-like|unclassified	0.0510669876
+UniRef50_UPI00047E9F5A: hypothetical protein	0.0510660547
+UniRef50_UPI00047E9F5A: hypothetical protein|unclassified	0.0510660547
+UniRef50_UPI00047BAD7D: hypothetical protein	0.0510658438
+UniRef50_UPI00047BAD7D: hypothetical protein|unclassified	0.0510658438
+UniRef50_UPI00034D4353: hypothetical protein	0.0510526127
+UniRef50_UPI00034D4353: hypothetical protein|unclassified	0.0510526127
+UniRef50_I0I5C4	0.0510445898
+UniRef50_I0I5C4|unclassified	0.0510445898
+UniRef50_UPI0003942DE9: PREDICTED: proline-rich transmembrane protein 4-like	0.0510437249
+UniRef50_UPI0003942DE9: PREDICTED: proline-rich transmembrane protein 4-like|unclassified	0.0510437249
+UniRef50_UPI0002558C15: response regulator receiver/GGDEF/EAL domain-containing protein	0.0510406490
+UniRef50_UPI0002558C15: response regulator receiver/GGDEF/EAL domain-containing protein|unclassified	0.0510406490
+UniRef50_C4ZAX1: Chorismate synthase	0.0510352599
+UniRef50_C4ZAX1: Chorismate synthase|unclassified	0.0510352599
+UniRef50_G0P7V6	0.0510308327
+UniRef50_G0P7V6|unclassified	0.0510308327
+UniRef50_UPI0004754912: carbon monoxide dehydrogenase	0.0510220175
+UniRef50_UPI0004754912: carbon monoxide dehydrogenase|unclassified	0.0510220175
+UniRef50_Q5X149: UPF0176 protein lpp2897	0.0510220077
+UniRef50_Q5X149: UPF0176 protein lpp2897|unclassified	0.0510220077
+UniRef50_UPI000255D101: signal transduction histidine kinase, partial	0.0510198805
+UniRef50_UPI000255D101: signal transduction histidine kinase, partial|unclassified	0.0510198805
+UniRef50_A0A024JC88: Similar to Saccharomyces cerevisiae YHR147C MRPL6 Mitochondrial ribosomal protein of the large subunit	0.0510158326
+UniRef50_A0A024JC88: Similar to Saccharomyces cerevisiae YHR147C MRPL6 Mitochondrial ribosomal protein of the large subunit|unclassified	0.0510158326
+UniRef50_C5AMW6: EvpB/family type VI secretion protein	0.0510131700
+UniRef50_C5AMW6: EvpB/family type VI secretion protein|unclassified	0.0510131700
+UniRef50_UPI00041F041E: 5,10-methylene tetrahydromethanopterin reductase	0.0510118589
+UniRef50_UPI00041F041E: 5,10-methylene tetrahydromethanopterin reductase|unclassified	0.0510118589
+UniRef50_E4A0C7: Peptidoglycan binding protein	0.0510098287
+UniRef50_E4A0C7: Peptidoglycan binding protein|unclassified	0.0510098287
+UniRef50_E9CQQ6	0.0510071464
+UniRef50_E9CQQ6|unclassified	0.0510071464
+UniRef50_D4ZLV9: Thioesterase superfamily	0.0510066693
+UniRef50_D4ZLV9: Thioesterase superfamily|unclassified	0.0510066693
+UniRef50_R5Y997	0.0510040548
+UniRef50_R5Y997|unclassified	0.0510040548
+UniRef50_Q0A968: Integral membrane protein	0.0510026152
+UniRef50_Q0A968: Integral membrane protein|unclassified	0.0510026152
+UniRef50_Q9F2I9: Methionine--tRNA ligase	0.0510015310
+UniRef50_Q9F2I9: Methionine--tRNA ligase|unclassified	0.0510015310
+UniRef50_Q0FTY2: ISPsy20, transposase IstA	0.0510002781
+UniRef50_Q0FTY2: ISPsy20, transposase IstA|unclassified	0.0510002781
+UniRef50_UPI000476A6F3: hypothetical protein	0.0509980187
+UniRef50_UPI000476A6F3: hypothetical protein|unclassified	0.0509980187
+UniRef50_A3JS70	0.0509921621
+UniRef50_A3JS70|unclassified	0.0509921621
+UniRef50_B0TZR5	0.0509879803
+UniRef50_B0TZR5|unclassified	0.0509879803
+UniRef50_F5U8W6	0.0509854234
+UniRef50_F5U8W6|unclassified	0.0509854234
+UniRef50_C3H6J7: Glyoxalase	0.0509815917
+UniRef50_C3H6J7: Glyoxalase|unclassified	0.0509815917
+UniRef50_UPI00034BF59A: hypothetical protein	0.0509810751
+UniRef50_UPI00034BF59A: hypothetical protein|unclassified	0.0509810751
+UniRef50_UPI00047ADAC8: hypothetical protein	0.0509771410
+UniRef50_UPI00047ADAC8: hypothetical protein|unclassified	0.0509771410
+UniRef50_UPI00046D3CE4: hypothetical protein	0.0509688827
+UniRef50_UPI00046D3CE4: hypothetical protein|unclassified	0.0509688827
+UniRef50_UPI0002C311C8	0.0509672955
+UniRef50_UPI0002C311C8|unclassified	0.0509672955
+UniRef50_E1VIH9	0.0509657757
+UniRef50_E1VIH9|unclassified	0.0509657757
+UniRef50_V4ZR91	0.0509556297
+UniRef50_V4ZR91|unclassified	0.0509556297
+UniRef50_U6MAH8	0.0509549658
+UniRef50_U6MAH8|unclassified	0.0509549658
+UniRef50_UPI00046F98A3: hypothetical protein	0.0509534784
+UniRef50_UPI00046F98A3: hypothetical protein|unclassified	0.0509534784
+UniRef50_UPI00037E8BCF: MULTISPECIES: hypothetical protein	0.0509523460
+UniRef50_UPI00037E8BCF: MULTISPECIES: hypothetical protein|unclassified	0.0509523460
+UniRef50_UPI0003691428: hypothetical protein	0.0509495848
+UniRef50_UPI0003691428: hypothetical protein|unclassified	0.0509495848
+UniRef50_UPI0003AE591B: PREDICTED: basic proline-rich protein-like	0.0509492515
+UniRef50_UPI0003AE591B: PREDICTED: basic proline-rich protein-like|unclassified	0.0509492515
+UniRef50_Q4SKB1: Chromosome 13 SCAF14566, whole genome shotgun sequence	0.0509477288
+UniRef50_Q4SKB1: Chromosome 13 SCAF14566, whole genome shotgun sequence|unclassified	0.0509477288
+UniRef50_UPI00036A8EE1: multidrug transporter, partial	0.0509473428
+UniRef50_UPI00036A8EE1: multidrug transporter, partial|unclassified	0.0509473428
+UniRef50_R5Q0N7	0.0509463647
+UniRef50_R5Q0N7|unclassified	0.0509463647
+UniRef50_UPI0003F99917: phosphoenolpyruvate-protein phosphotransferase	0.0509461256
+UniRef50_UPI0003F99917: phosphoenolpyruvate-protein phosphotransferase|unclassified	0.0509461256
+UniRef50_B8I0U9: Anthranilate phosphoribosyltransferase	0.0509440496
+UniRef50_B8I0U9: Anthranilate phosphoribosyltransferase|unclassified	0.0509440496
+UniRef50_UPI000376EAF4: hypothetical protein	0.0509410558
+UniRef50_UPI000376EAF4: hypothetical protein|unclassified	0.0509410558
+UniRef50_B9B8G0: Major facilitator superfamily MFS_1	0.0509406039
+UniRef50_B9B8G0: Major facilitator superfamily MFS_1|unclassified	0.0509406039
+UniRef50_Q8A0B5: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase 2	0.0509387432
+UniRef50_Q8A0B5: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase 2|unclassified	0.0509387432
+UniRef50_A0A011S090: Teichoic acid translocation permease protein TagG	0.0509361293
+UniRef50_A0A011S090: Teichoic acid translocation permease protein TagG|unclassified	0.0509361293
+UniRef50_D3EH74	0.0509339147
+UniRef50_D3EH74|unclassified	0.0509339147
+UniRef50_UPI00037A77DC: hypothetical protein	0.0509271616
+UniRef50_UPI00037A77DC: hypothetical protein|unclassified	0.0509271616
+UniRef50_UPI00036A8351: hypothetical protein	0.0509271508
+UniRef50_UPI00036A8351: hypothetical protein|unclassified	0.0509271508
+UniRef50_UPI000255D0C2: transcriptional regulator	0.0509261301
+UniRef50_UPI000255D0C2: transcriptional regulator|unclassified	0.0509261301
+UniRef50_W5XAQ5: Phosphoribosylformylglycinamidine synthase 2	0.0509222821
+UniRef50_W5XAQ5: Phosphoribosylformylglycinamidine synthase 2|unclassified	0.0509222821
+UniRef50_W7CXN6: UPF0348 protein BCAMP_02650	0.0509201934
+UniRef50_W7CXN6: UPF0348 protein BCAMP_02650|unclassified	0.0509201934
+UniRef50_Q5FQD6: Bifunctional enzyme IspD/IspF	0.0509112955
+UniRef50_Q5FQD6: Bifunctional enzyme IspD/IspF|unclassified	0.0509112955
+UniRef50_D8PFM1: Putative Septum site-determining protein MinD	0.0509074393
+UniRef50_D8PFM1: Putative Septum site-determining protein MinD|unclassified	0.0509074393
+UniRef50_I7DMS3	0.0509035663
+UniRef50_I7DMS3|unclassified	0.0509035663
+UniRef50_I0I3D6	0.0509005541
+UniRef50_I0I3D6|unclassified	0.0509005541
+UniRef50_UPI000381B140: hypothetical protein	0.0508996324
+UniRef50_UPI000381B140: hypothetical protein|unclassified	0.0508996324
+UniRef50_UPI0003B7208F: D-alanyl-D-alanine carboxypeptidase	0.0508982912
+UniRef50_UPI0003B7208F: D-alanyl-D-alanine carboxypeptidase|unclassified	0.0508982912
+UniRef50_W7SR56	0.0508977977
+UniRef50_W7SR56|unclassified	0.0508977977
+UniRef50_A0A021H8B9: Phage dUTPase	0.0508977943
+UniRef50_A0A021H8B9: Phage dUTPase|unclassified	0.0508977943
+UniRef50_F0J8Q5: Hypothetical conserved protein 57 (Fragment)	0.0508895825
+UniRef50_F0J8Q5: Hypothetical conserved protein 57 (Fragment)|unclassified	0.0508895825
+UniRef50_A0A011NU60: Putative esterase of the alpha/beta hydrolase fold protein	0.0508884115
+UniRef50_A0A011NU60: Putative esterase of the alpha/beta hydrolase fold protein|unclassified	0.0508884115
+UniRef50_M4S885	0.0508832924
+UniRef50_M4S885|unclassified	0.0508832924
+UniRef50_J0JNQ4	0.0508790900
+UniRef50_J0JNQ4|unclassified	0.0508790900
+UniRef50_UPI00035E72D8: hypothetical protein	0.0508773295
+UniRef50_UPI00035E72D8: hypothetical protein|unclassified	0.0508773295
+UniRef50_B1N5W5: Diaphanous protein, putative (Fragment)	0.0508742917
+UniRef50_B1N5W5: Diaphanous protein, putative (Fragment)|unclassified	0.0508742917
+UniRef50_UPI0004773531: integrase	0.0508731345
+UniRef50_UPI0004773531: integrase|unclassified	0.0508731345
+UniRef50_A4J2B3: UDP-N-acetylenolpyruvoylglucosamine reductase	0.0508699761
+UniRef50_A4J2B3: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.0508699761
+UniRef50_UPI00022CAAD4: PREDICTED: cytochrome d ubiquinol oxidase subunit 2-like	0.0508692951
+UniRef50_UPI00022CAAD4: PREDICTED: cytochrome d ubiquinol oxidase subunit 2-like|unclassified	0.0508692951
+UniRef50_D4GPU8: 2-oxo-4-hydroxy-4-carboxy-5-ureidoimidazoline decarboxylase	0.0508641112
+UniRef50_D4GPU8: 2-oxo-4-hydroxy-4-carboxy-5-ureidoimidazoline decarboxylase|unclassified	0.0508641112
+UniRef50_UPI0002558ADA: RNA-binding protein	0.0508605088
+UniRef50_UPI0002558ADA: RNA-binding protein|unclassified	0.0508605088
+UniRef50_Q1AWA3: Shikimate dehydrogenase	0.0508571232
+UniRef50_Q1AWA3: Shikimate dehydrogenase|unclassified	0.0508571232
+UniRef50_UPI0003B6B4E5: ABC transporter permease	0.0508556138
+UniRef50_UPI0003B6B4E5: ABC transporter permease|unclassified	0.0508556138
+UniRef50_UPI0002C37146: PREDICTED: tigger transposable element-derived protein 5-like, partial	0.0508532005
+UniRef50_UPI0002C37146: PREDICTED: tigger transposable element-derived protein 5-like, partial|unclassified	0.0508532005
+UniRef50_UPI000363370C: hypothetical protein	0.0508528197
+UniRef50_UPI000363370C: hypothetical protein|unclassified	0.0508528197
+UniRef50_Q7VLZ5: Probable alpha-L-glutamate ligase	0.0508478115
+UniRef50_Q7VLZ5: Probable alpha-L-glutamate ligase|unclassified	0.0508478115
+UniRef50_UPI000472171C: hypothetical protein	0.0508453877
+UniRef50_UPI000472171C: hypothetical protein|unclassified	0.0508453877
+UniRef50_UPI000328BE62: PREDICTED: basic salivary proline-rich protein 2-like, partial	0.0508420821
+UniRef50_UPI000328BE62: PREDICTED: basic salivary proline-rich protein 2-like, partial|unclassified	0.0508420821
+UniRef50_UPI0004703E7C: hypothetical protein, partial	0.0508416708
+UniRef50_UPI0004703E7C: hypothetical protein, partial|unclassified	0.0508416708
+UniRef50_G7QAS0: Type II secretion system F domain protein	0.0508381956
+UniRef50_G7QAS0: Type II secretion system F domain protein|unclassified	0.0508381956
+UniRef50_S6BYI9	0.0508257296
+UniRef50_S6BYI9|unclassified	0.0508257296
+UniRef50_UPI00046B0084: hypothetical protein	0.0508244662
+UniRef50_UPI00046B0084: hypothetical protein|unclassified	0.0508244662
+UniRef50_UPI000475E95F: hypothetical protein	0.0508227586
+UniRef50_UPI000475E95F: hypothetical protein|unclassified	0.0508227586
+UniRef50_UPI00047002F4: peptide ABC transporter substrate-binding protein	0.0508220585
+UniRef50_UPI00047002F4: peptide ABC transporter substrate-binding protein|unclassified	0.0508220585
+UniRef50_R9J8E0	0.0508199169
+UniRef50_R9J8E0|unclassified	0.0508199169
+UniRef50_UPI00037BA2E6: hypothetical protein	0.0508192178
+UniRef50_UPI00037BA2E6: hypothetical protein|unclassified	0.0508192178
+UniRef50_Q8R5S5: tRNA dimethylallyltransferase	0.0508121002
+UniRef50_Q8R5S5: tRNA dimethylallyltransferase|unclassified	0.0508121002
+UniRef50_UPI0003625364: alkaline phosphatase	0.0508110922
+UniRef50_UPI0003625364: alkaline phosphatase|unclassified	0.0508110922
+UniRef50_UPI00045E58DC: PREDICTED: dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial	0.0508100883
+UniRef50_UPI00045E58DC: PREDICTED: dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial|unclassified	0.0508100883
+UniRef50_UPI00036B6941: hypothetical protein	0.0508057929
+UniRef50_UPI00036B6941: hypothetical protein|unclassified	0.0508057929
+UniRef50_UPI000478B1AB: hypothetical protein	0.0507980767
+UniRef50_UPI000478B1AB: hypothetical protein|unclassified	0.0507980767
+UniRef50_UPI0003B52784: ATPase	0.0507956323
+UniRef50_UPI0003B52784: ATPase|unclassified	0.0507956323
+UniRef50_Q92HG4	0.0507925121
+UniRef50_Q92HG4|unclassified	0.0507925121
+UniRef50_K2LE39: Permease	0.0507919980
+UniRef50_K2LE39: Permease|unclassified	0.0507919980
+UniRef50_A5UCJ5: UPF0276 protein CGSHiEE_05645	0.0507909641
+UniRef50_A5UCJ5: UPF0276 protein CGSHiEE_05645|unclassified	0.0507909641
+UniRef50_W8S187	0.0507902215
+UniRef50_W8S187|unclassified	0.0507902215
+UniRef50_UPI00047C39B3: acetyl-CoA synthetase	0.0507889648
+UniRef50_UPI00047C39B3: acetyl-CoA synthetase|unclassified	0.0507889648
+UniRef50_D5U4Z5: Galactose/glucose-binding protein	0.0507864016
+UniRef50_D5U4Z5: Galactose/glucose-binding protein|unclassified	0.0507864016
+UniRef50_F2UF61	0.0507833397
+UniRef50_F2UF61|unclassified	0.0507833397
+UniRef50_O26284: Arginine biosynthesis bifunctional protein ArgJ	0.0507830953
+UniRef50_O26284: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.0507830953
+UniRef50_UPI000477B830: hypothetical protein	0.0507822073
+UniRef50_UPI000477B830: hypothetical protein|unclassified	0.0507822073
+UniRef50_UPI000465E1B6: transcriptional regulator, partial	0.0507783287
+UniRef50_UPI000465E1B6: transcriptional regulator, partial|unclassified	0.0507783287
+UniRef50_UPI0002E14C40: hypothetical protein	0.0507758914
+UniRef50_UPI0002E14C40: hypothetical protein|unclassified	0.0507758914
+UniRef50_L8Y106: UPF0246 protein F387_00057	0.0507756256
+UniRef50_L8Y106: UPF0246 protein F387_00057|unclassified	0.0507756256
+UniRef50_UPI0003B7B4E6: LysR family transcriptional regulator	0.0507749971
+UniRef50_UPI0003B7B4E6: LysR family transcriptional regulator|unclassified	0.0507749971
+UniRef50_UPI00037AC687: hypothetical protein	0.0507705470
+UniRef50_UPI00037AC687: hypothetical protein|unclassified	0.0507705470
+UniRef50_Q16740: ATP-dependent Clp protease proteolytic subunit, mitochondrial	0.0507702572
+UniRef50_Q16740: ATP-dependent Clp protease proteolytic subunit, mitochondrial|unclassified	0.0507702572
+UniRef50_UPI00036C3A78: hypothetical protein	0.0507699364
+UniRef50_UPI00036C3A78: hypothetical protein|unclassified	0.0507699364
+UniRef50_UPI000248C4D5: peptidase M22	0.0507691856
+UniRef50_UPI000248C4D5: peptidase M22|unclassified	0.0507691856
+UniRef50_UPI00042A6BB7: hypothetical protein	0.0507677260
+UniRef50_UPI00042A6BB7: hypothetical protein|unclassified	0.0507677260
+UniRef50_I4VI37: Pyridoxal-5'-phosphate-dependent protein subunit beta	0.0507639667
+UniRef50_I4VI37: Pyridoxal-5'-phosphate-dependent protein subunit beta|unclassified	0.0507639667
+UniRef50_UPI00047DA36E: ABC transporter	0.0507492770
+UniRef50_UPI00047DA36E: ABC transporter|unclassified	0.0507492770
+UniRef50_UPI0004106E5E: hypothetical protein	0.0507439416
+UniRef50_UPI0004106E5E: hypothetical protein|unclassified	0.0507439416
+UniRef50_UPI00037401EB: hypothetical protein	0.0507426661
+UniRef50_UPI00037401EB: hypothetical protein|unclassified	0.0507426661
+UniRef50_UPI0004690678: hypothetical protein, partial	0.0507392727
+UniRef50_UPI0004690678: hypothetical protein, partial|unclassified	0.0507392727
+UniRef50_UPI000463C9A2: serine dehydratase, partial	0.0507375045
+UniRef50_UPI000463C9A2: serine dehydratase, partial|unclassified	0.0507375045
+UniRef50_W0L614: N-terminal cleavage protein	0.0507355511
+UniRef50_W0L614: N-terminal cleavage protein|unclassified	0.0507355511
+UniRef50_UPI000376D345: hypothetical protein	0.0507343322
+UniRef50_UPI000376D345: hypothetical protein|unclassified	0.0507343322
+UniRef50_Q6MQK8: Valine--tRNA ligase	0.0507314903
+UniRef50_Q6MQK8: Valine--tRNA ligase|unclassified	0.0507314903
+UniRef50_G0DZX1	0.0507310871
+UniRef50_G0DZX1|unclassified	0.0507310871
+UniRef50_UPI0003B3CD6A: alpha/beta hydrolase	0.0507264721
+UniRef50_UPI0003B3CD6A: alpha/beta hydrolase|unclassified	0.0507264721
+UniRef50_UPI000395C273: DNA helicase	0.0507237158
+UniRef50_UPI000395C273: DNA helicase|unclassified	0.0507237158
+UniRef50_UPI0004542A6A: PREDICTED: zinc finger protein 646	0.0507221692
+UniRef50_UPI0004542A6A: PREDICTED: zinc finger protein 646|unclassified	0.0507221692
+UniRef50_UPI0002DF0DBC: hypothetical protein	0.0507165621
+UniRef50_UPI0002DF0DBC: hypothetical protein|unclassified	0.0507165621
+UniRef50_E3J4H9	0.0507040627
+UniRef50_E3J4H9|unclassified	0.0507040627
+UniRef50_A5GEC4	0.0507035691
+UniRef50_A5GEC4|unclassified	0.0507035691
+UniRef50_I0TZQ4: Telomeric repeat-binding factor 2	0.0507030988
+UniRef50_I0TZQ4: Telomeric repeat-binding factor 2|unclassified	0.0507030988
+UniRef50_UPI0003711312: hypothetical protein	0.0507018446
+UniRef50_UPI0003711312: hypothetical protein|unclassified	0.0507018446
+UniRef50_J4QY48: Histone deacetylase superfamily protein	0.0506994120
+UniRef50_J4QY48: Histone deacetylase superfamily protein|unclassified	0.0506994120
+UniRef50_X2GT94: Cobalamin biosynthesis protein	0.0506991354
+UniRef50_X2GT94: Cobalamin biosynthesis protein|unclassified	0.0506991354
+UniRef50_UPI00047C448A: hypothetical protein	0.0506960651
+UniRef50_UPI00047C448A: hypothetical protein|unclassified	0.0506960651
+UniRef50_Q2SCA1	0.0506911606
+UniRef50_Q2SCA1|unclassified	0.0506911606
+UniRef50_UPI0004699E67: Zn-dependent hydrolase	0.0506869622
+UniRef50_UPI0004699E67: Zn-dependent hydrolase|unclassified	0.0506869622
+UniRef50_Q28VW8	0.0506820947
+UniRef50_Q28VW8|unclassified	0.0506820947
+UniRef50_UPI000360E22C: hypothetical protein	0.0506816763
+UniRef50_UPI000360E22C: hypothetical protein|unclassified	0.0506816763
+UniRef50_UPI000375D958: hypothetical protein	0.0506751997
+UniRef50_UPI000375D958: hypothetical protein|unclassified	0.0506751997
+UniRef50_UPI0002893360: histidine kinase	0.0506727051
+UniRef50_UPI0002893360: histidine kinase|unclassified	0.0506727051
+UniRef50_UPI00047DA574: hypothetical protein	0.0506670235
+UniRef50_UPI00047DA574: hypothetical protein|unclassified	0.0506670235
+UniRef50_UPI000471314C: ABC transporter ATP-binding protein	0.0506651239
+UniRef50_UPI000471314C: ABC transporter ATP-binding protein|unclassified	0.0506651239
+UniRef50_E0UJ64: Prophage antirepressor	0.0506638183
+UniRef50_E0UJ64: Prophage antirepressor|unclassified	0.0506638183
+UniRef50_A0LEQ2: NADH-quinone oxidoreductase subunit H 1	0.0506626933
+UniRef50_A0LEQ2: NADH-quinone oxidoreductase subunit H 1|unclassified	0.0506626933
+UniRef50_Q317G7: Type III effector Hrp-dependent outer protein	0.0506617109
+UniRef50_Q317G7: Type III effector Hrp-dependent outer protein|unclassified	0.0506617109
+UniRef50_H6NGM5: Periplasmic binding protein	0.0506616307
+UniRef50_H6NGM5: Periplasmic binding protein|unclassified	0.0506616307
+UniRef50_UPI00027F877F	0.0506594269
+UniRef50_UPI00027F877F|unclassified	0.0506594269
+UniRef50_UPI00034F36D7: PREDICTED: TBC1 domain family member 1-like	0.0506538813
+UniRef50_UPI00034F36D7: PREDICTED: TBC1 domain family member 1-like|unclassified	0.0506538813
+UniRef50_A8AAF8: N-acetyl-gamma-glutamyl-phosphate/N-acetyl-gamma-aminoadipyl-phosphate reductase	0.0506478661
+UniRef50_A8AAF8: N-acetyl-gamma-glutamyl-phosphate/N-acetyl-gamma-aminoadipyl-phosphate reductase|unclassified	0.0506478661
+UniRef50_UPI000478D556: hypothetical protein	0.0506422985
+UniRef50_UPI000478D556: hypothetical protein|unclassified	0.0506422985
+UniRef50_UPI00041D674B: hypothetical protein	0.0506410146
+UniRef50_UPI00041D674B: hypothetical protein|unclassified	0.0506410146
+UniRef50_UPI0003D30332: chemotaxis response regulator protein-glutamate methylesterase	0.0506406413
+UniRef50_UPI0003D30332: chemotaxis response regulator protein-glutamate methylesterase|unclassified	0.0506406413
+UniRef50_UPI000255F463: hypothetical protein	0.0506393127
+UniRef50_UPI000255F463: hypothetical protein|unclassified	0.0506393127
+UniRef50_Q54WU3: Methionine aminopeptidase 1	0.0506357748
+UniRef50_Q54WU3: Methionine aminopeptidase 1|unclassified	0.0506357748
+UniRef50_UPI00046898CD: hypothetical protein	0.0506310441
+UniRef50_UPI00046898CD: hypothetical protein|unclassified	0.0506310441
+UniRef50_Q015H7: WGS project CAID00000000 data, contig chromosome 07	0.0506261371
+UniRef50_Q015H7: WGS project CAID00000000 data, contig chromosome 07|unclassified	0.0506261371
+UniRef50_Q18T09: LL-diaminopimelate aminotransferase	0.0506239873
+UniRef50_Q18T09: LL-diaminopimelate aminotransferase|unclassified	0.0506239873
+UniRef50_UPI00047D8D50: PTS sugar transporter	0.0506225518
+UniRef50_UPI00047D8D50: PTS sugar transporter|unclassified	0.0506225518
+UniRef50_UPI0004720619: hypothetical protein	0.0506220120
+UniRef50_UPI0004720619: hypothetical protein|unclassified	0.0506220120
+UniRef50_Q8RHK3: Valine--tRNA ligase	0.0506199129
+UniRef50_Q8RHK3: Valine--tRNA ligase|unclassified	0.0506199129
+UniRef50_S3AZM5	0.0506198944
+UniRef50_S3AZM5|unclassified	0.0506198944
+UniRef50_W4Q7V2	0.0506139349
+UniRef50_W4Q7V2|unclassified	0.0506139349
+UniRef50_UPI00047076F4: hypothetical protein, partial	0.0506091460
+UniRef50_UPI00047076F4: hypothetical protein, partial|unclassified	0.0506091460
+UniRef50_D5AQD2: Exopolysaccharide synthesis, ExoD	0.0506070123
+UniRef50_D5AQD2: Exopolysaccharide synthesis, ExoD|unclassified	0.0506070123
+UniRef50_UPI000443E4A2: PREDICTED: ATP-binding cassette sub-family B member 9 isoform X2	0.0506001621
+UniRef50_UPI000443E4A2: PREDICTED: ATP-binding cassette sub-family B member 9 isoform X2|unclassified	0.0506001621
+UniRef50_UPI00046CB4FA: hypothetical protein	0.0505986335
+UniRef50_UPI00046CB4FA: hypothetical protein|unclassified	0.0505986335
+UniRef50_C0QWA9: Uronate isomerase	0.0505929827
+UniRef50_C0QWA9: Uronate isomerase|unclassified	0.0505929827
+UniRef50_UPI00035D082A: hypothetical protein	0.0505888423
+UniRef50_UPI00035D082A: hypothetical protein|unclassified	0.0505888423
+UniRef50_B3PDC2: tRNA dimethylallyltransferase	0.0505819429
+UniRef50_B3PDC2: tRNA dimethylallyltransferase|unclassified	0.0505819429
+UniRef50_A8J7P6: Predicted protein (Fragment)	0.0505797818
+UniRef50_A8J7P6: Predicted protein (Fragment)|unclassified	0.0505797818
+UniRef50_UPI00032A28E0: PREDICTED: cytosine deaminase-like	0.0505792120
+UniRef50_UPI00032A28E0: PREDICTED: cytosine deaminase-like|unclassified	0.0505792120
+UniRef50_E3YCK5: Putative gram positive anchor (Fragment)	0.0505742661
+UniRef50_E3YCK5: Putative gram positive anchor (Fragment)|unclassified	0.0505742661
+UniRef50_Q9JWJ3: Cysteine--tRNA ligase	0.0505646418
+UniRef50_Q9JWJ3: Cysteine--tRNA ligase|unclassified	0.0505646418
+UniRef50_Q6A6X6: Methionine import ATP-binding protein MetN	0.0505641888
+UniRef50_Q6A6X6: Methionine import ATP-binding protein MetN|unclassified	0.0505641888
+UniRef50_UPI000474A0E9: C4-dicarboxylate ABC transporter	0.0505640336
+UniRef50_UPI000474A0E9: C4-dicarboxylate ABC transporter|unclassified	0.0505640336
+UniRef50_X1L1G6: Marine sediment metagenome DNA, contig: S06H3_C03902 (Fragment)	0.0505583695
+UniRef50_X1L1G6: Marine sediment metagenome DNA, contig: S06H3_C03902 (Fragment)|unclassified	0.0505583695
+UniRef50_UPI000248EB10: uronate isomerase	0.0505525326
+UniRef50_UPI000248EB10: uronate isomerase|unclassified	0.0505525326
+UniRef50_UPI000476E179: MFS transporter	0.0505476990
+UniRef50_UPI000476E179: MFS transporter|unclassified	0.0505476990
+UniRef50_Q7VRJ3: 3-octaprenyl-4-hydroxybenzoate carboxy-lyase	0.0505456585
+UniRef50_Q7VRJ3: 3-octaprenyl-4-hydroxybenzoate carboxy-lyase|unclassified	0.0505456585
+UniRef50_V6EYD2	0.0505402046
+UniRef50_V6EYD2|unclassified	0.0505402046
+UniRef50_UPI0003FF4B60: CtaG-like assembly protein	0.0505384067
+UniRef50_UPI0003FF4B60: CtaG-like assembly protein|unclassified	0.0505384067
+UniRef50_A6TMM0: Permease	0.0505372376
+UniRef50_A6TMM0: Permease|unclassified	0.0505372376
+UniRef50_UPI0001744DDB: putative transporter	0.0505356854
+UniRef50_UPI0001744DDB: putative transporter|unclassified	0.0505356854
+UniRef50_UPI0002DB33C4: hypothetical protein	0.0505348451
+UniRef50_UPI0002DB33C4: hypothetical protein|unclassified	0.0505348451
+UniRef50_UPI0003F9EE72: sugar ABC transporter permease	0.0505345527
+UniRef50_UPI0003F9EE72: sugar ABC transporter permease|unclassified	0.0505345527
+UniRef50_UPI000380C148: hypothetical protein	0.0505341448
+UniRef50_UPI000380C148: hypothetical protein|unclassified	0.0505341448
+UniRef50_UPI0004761A5C: taurine transporter subunit	0.0505341024
+UniRef50_UPI0004761A5C: taurine transporter subunit|unclassified	0.0505341024
+UniRef50_UPI000378D781: hypothetical protein	0.0505319436
+UniRef50_UPI000378D781: hypothetical protein|unclassified	0.0505319436
+UniRef50_P94494: Alanine racemase 2	0.0505274044
+UniRef50_P94494: Alanine racemase 2|unclassified	0.0505274044
+UniRef50_X7EFH7	0.0505252602
+UniRef50_X7EFH7|unclassified	0.0505252602
+UniRef50_Q1QM99: Bifunctional enzyme IspD/IspF	0.0505234707
+UniRef50_Q1QM99: Bifunctional enzyme IspD/IspF|unclassified	0.0505234707
+UniRef50_R6KSD3	0.0505224370
+UniRef50_R6KSD3|unclassified	0.0505224370
+UniRef50_UPI00036ECA85: hypothetical protein	0.0505222630
+UniRef50_UPI00036ECA85: hypothetical protein|unclassified	0.0505222630
+UniRef50_UPI00039421A3: PREDICTED: PWWP domain-containing protein 2A-like	0.0505210950
+UniRef50_UPI00039421A3: PREDICTED: PWWP domain-containing protein 2A-like|unclassified	0.0505210950
+UniRef50_O31620: Hydroxymethylpyrimidine/phosphomethylpyrimidine kinase	0.0505202402
+UniRef50_O31620: Hydroxymethylpyrimidine/phosphomethylpyrimidine kinase|unclassified	0.0505202402
+UniRef50_Q057R1: tRNA-specific 2-thiouridylase MnmA	0.0505199485
+UniRef50_Q057R1: tRNA-specific 2-thiouridylase MnmA|unclassified	0.0505199485
+UniRef50_P28821: Aminodeoxychorismate lyase	0.0505116649
+UniRef50_P28821: Aminodeoxychorismate lyase|unclassified	0.0505116649
+UniRef50_UPI00037727C5: hypothetical protein	0.0505036424
+UniRef50_UPI00037727C5: hypothetical protein|unclassified	0.0505036424
+UniRef50_Q48AS9: Methionyl-tRNA formyltransferase	0.0505019877
+UniRef50_Q48AS9: Methionyl-tRNA formyltransferase|unclassified	0.0505019877
+UniRef50_W9G304	0.0504990799
+UniRef50_W9G304|unclassified	0.0504990799
+UniRef50_UPI0004721F69: hypothetical protein, partial	0.0504966649
+UniRef50_UPI0004721F69: hypothetical protein, partial|unclassified	0.0504966649
+UniRef50_A5HYY6: Metallo-beta-lactamase family protein	0.0504955555
+UniRef50_A5HYY6: Metallo-beta-lactamase family protein|unclassified	0.0504955555
+UniRef50_Q8ETV6: Energy-coupling factor transporter ATP-binding protein EcfA2	0.0504952473
+UniRef50_Q8ETV6: Energy-coupling factor transporter ATP-binding protein EcfA2|unclassified	0.0504952473
+UniRef50_R6PQN3	0.0504896945
+UniRef50_R6PQN3|unclassified	0.0504896945
+UniRef50_UPI00047ED6FE: hypothetical protein	0.0504780500
+UniRef50_UPI00047ED6FE: hypothetical protein|unclassified	0.0504780500
+UniRef50_UPI00047A0E30: hypothetical protein	0.0504760210
+UniRef50_UPI00047A0E30: hypothetical protein|unclassified	0.0504760210
+UniRef50_E6U1Z0	0.0504750451
+UniRef50_E6U1Z0|unclassified	0.0504750451
+UniRef50_UPI00020D9CBB: peptide ABC transporter ATPase	0.0504743069
+UniRef50_UPI00020D9CBB: peptide ABC transporter ATPase|unclassified	0.0504743069
+UniRef50_UPI00035DC29E: hypothetical protein	0.0504687973
+UniRef50_UPI00035DC29E: hypothetical protein|unclassified	0.0504687973
+UniRef50_UPI00037371A3: spermidine/putrescine ABC transporter ATP-binding protein	0.0504684632
+UniRef50_UPI00037371A3: spermidine/putrescine ABC transporter ATP-binding protein|unclassified	0.0504684632
+UniRef50_T0Q294	0.0504672473
+UniRef50_T0Q294|unclassified	0.0504672473
+UniRef50_W5XC55: Bifunctional enzyme IspD/IspF	0.0504652795
+UniRef50_W5XC55: Bifunctional enzyme IspD/IspF|unclassified	0.0504652795
+UniRef50_UPI000470A5FF: hypothetical protein	0.0504631890
+UniRef50_UPI000470A5FF: hypothetical protein|unclassified	0.0504631890
+UniRef50_UPI000248BFF3: NAD-dependent epimerase/dehydratase	0.0504600367
+UniRef50_UPI000248BFF3: NAD-dependent epimerase/dehydratase|unclassified	0.0504600367
+UniRef50_D8P031	0.0504595536
+UniRef50_D8P031|unclassified	0.0504595536
+UniRef50_UPI00034725CE: hypothetical protein	0.0504535360
+UniRef50_UPI00034725CE: hypothetical protein|unclassified	0.0504535360
+UniRef50_R8VBT2	0.0504506649
+UniRef50_R8VBT2|unclassified	0.0504506649
+UniRef50_UPI0003B59286: adenylylsulfate kinase	0.0504476911
+UniRef50_UPI0003B59286: adenylylsulfate kinase|unclassified	0.0504476911
+UniRef50_Q8XW76	0.0504452797
+UniRef50_Q8XW76|unclassified	0.0504452797
+UniRef50_I2GQ39: UvrABC system protein A Short=UvrA protein	0.0504226408
+UniRef50_I2GQ39: UvrABC system protein A Short=UvrA protein|unclassified	0.0504226408
+UniRef50_F7V008	0.0504215594
+UniRef50_F7V008|unclassified	0.0504215594
+UniRef50_UPI000249052E: alcohol dehydrogenase	0.0504173386
+UniRef50_UPI000249052E: alcohol dehydrogenase|unclassified	0.0504173386
+UniRef50_UPI000237B14E: threonine aldolase	0.0504143850
+UniRef50_UPI000237B14E: threonine aldolase|unclassified	0.0504143850
+UniRef50_M2WU51	0.0504126017
+UniRef50_M2WU51|unclassified	0.0504126017
+UniRef50_UPI000415BF03: hypothetical protein	0.0504061891
+UniRef50_UPI000415BF03: hypothetical protein|unclassified	0.0504061891
+UniRef50_UPI00036C481F: hypothetical protein	0.0504052871
+UniRef50_UPI00036C481F: hypothetical protein|unclassified	0.0504052871
+UniRef50_UPI0003B5DFE1: ABC transporter	0.0504032175
+UniRef50_UPI0003B5DFE1: ABC transporter|unclassified	0.0504032175
+UniRef50_C6AVR5	0.0503986253
+UniRef50_C6AVR5|unclassified	0.0503986253
+UniRef50_UPI0003B314BA: hypothetical protein	0.0503964161
+UniRef50_UPI0003B314BA: hypothetical protein|unclassified	0.0503964161
+UniRef50_P0A509: Acetyl-/propionyl-coenzyme A carboxylase alpha chain	0.0503932354
+UniRef50_P0A509: Acetyl-/propionyl-coenzyme A carboxylase alpha chain|unclassified	0.0503932354
+UniRef50_UPI0003735A16: peptide ABC transporter ATP-binding protein	0.0503873693
+UniRef50_UPI0003735A16: peptide ABC transporter ATP-binding protein|unclassified	0.0503873693
+UniRef50_UPI00035CF568: hypothetical protein	0.0503866817
+UniRef50_UPI00035CF568: hypothetical protein|unclassified	0.0503866817
+UniRef50_UPI0003704ADF: hypothetical protein	0.0503860864
+UniRef50_UPI0003704ADF: hypothetical protein|unclassified	0.0503860864
+UniRef50_UPI000423512C: adenine deaminase	0.0503850577
+UniRef50_UPI000423512C: adenine deaminase|unclassified	0.0503850577
+UniRef50_UPI000441527D: hypothetical protein AURDEDRAFT_126049	0.0503836944
+UniRef50_UPI000441527D: hypothetical protein AURDEDRAFT_126049|unclassified	0.0503836944
+UniRef50_A2RXY3	0.0503758328
+UniRef50_A2RXY3|unclassified	0.0503758328
+UniRef50_UPI000371CEEB: hypothetical protein	0.0503753762
+UniRef50_UPI000371CEEB: hypothetical protein|unclassified	0.0503753762
+UniRef50_UPI000470C052: hypothetical protein	0.0503698240
+UniRef50_UPI000470C052: hypothetical protein|unclassified	0.0503698240
+UniRef50_Q8FP05	0.0503631025
+UniRef50_Q8FP05|unclassified	0.0503631025
+UniRef50_UPI00036E59A2: hypothetical protein	0.0503608821
+UniRef50_UPI00036E59A2: hypothetical protein|unclassified	0.0503608821
+UniRef50_UPI0003B40598: major facilitator transporter	0.0503561816
+UniRef50_UPI0003B40598: major facilitator transporter|unclassified	0.0503561816
+UniRef50_H6LC26: DNA repair protein-like protein	0.0503487437
+UniRef50_H6LC26: DNA repair protein-like protein|unclassified	0.0503487437
+UniRef50_UPI0003473C7F: spore germination protein	0.0503431394
+UniRef50_UPI0003473C7F: spore germination protein|unclassified	0.0503431394
+UniRef50_A3JNF9	0.0503406270
+UniRef50_A3JNF9|unclassified	0.0503406270
+UniRef50_UPI000364B9D1: hypothetical protein	0.0503358192
+UniRef50_UPI000364B9D1: hypothetical protein|unclassified	0.0503358192
+UniRef50_UPI00036F2872: hypothetical protein	0.0503309959
+UniRef50_UPI00036F2872: hypothetical protein|unclassified	0.0503309959
+UniRef50_S8D8M1	0.0503267546
+UniRef50_S8D8M1|unclassified	0.0503267546
+UniRef50_V4KZP1	0.0503265370
+UniRef50_V4KZP1|unclassified	0.0503265370
+UniRef50_UPI0003A282B2: amino acid ABC transporter substrate-binding protein	0.0503245199
+UniRef50_UPI0003A282B2: amino acid ABC transporter substrate-binding protein|unclassified	0.0503245199
+UniRef50_UPI0003B393A2: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase	0.0503232920
+UniRef50_UPI0003B393A2: 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase|unclassified	0.0503232920
+UniRef50_Q182Z4: Prolipoprotein diacylglyceryl transferase	0.0503173133
+UniRef50_Q182Z4: Prolipoprotein diacylglyceryl transferase|unclassified	0.0503173133
+UniRef50_B4R9F1: Flp pilus assembly protein TadC	0.0503170751
+UniRef50_B4R9F1: Flp pilus assembly protein TadC|unclassified	0.0503170751
+UniRef50_B1ZQQ1	0.0503164374
+UniRef50_B1ZQQ1|unclassified	0.0503164374
+UniRef50_UPI00037F951E: hypothetical protein	0.0503155914
+UniRef50_UPI00037F951E: hypothetical protein|unclassified	0.0503155914
+UniRef50_M4SEF2: Peptidase M23B	0.0503091040
+UniRef50_M4SEF2: Peptidase M23B|unclassified	0.0503091040
+UniRef50_UPI00047719D8: hypothetical protein	0.0503082373
+UniRef50_UPI00047719D8: hypothetical protein|unclassified	0.0503082373
+UniRef50_UPI0002FDDFF5: hypothetical protein	0.0503023323
+UniRef50_UPI0002FDDFF5: hypothetical protein|unclassified	0.0503023323
+UniRef50_UPI00046888E6: KamA family protein	0.0503016301
+UniRef50_UPI00046888E6: KamA family protein|unclassified	0.0503016301
+UniRef50_X5QPT7: Phosphatase	0.0503015431
+UniRef50_X5QPT7: Phosphatase|unclassified	0.0503015431
+UniRef50_UPI00036A5385: hypothetical protein	0.0502948506
+UniRef50_UPI00036A5385: hypothetical protein|unclassified	0.0502948506
+UniRef50_UPI000455D309: hypothetical protein CONPUDRAFT_76702	0.0502912075
+UniRef50_UPI000455D309: hypothetical protein CONPUDRAFT_76702|unclassified	0.0502912075
+UniRef50_E2Q1E4	0.0502856596
+UniRef50_E2Q1E4|unclassified	0.0502856596
+UniRef50_UPI0002558482: multidrug transporter	0.0502807962
+UniRef50_UPI0002558482: multidrug transporter|unclassified	0.0502807962
+UniRef50_Q8VPR1: MC8	0.0502741658
+UniRef50_Q8VPR1: MC8|unclassified	0.0502741658
+UniRef50_B4V095	0.0502663577
+UniRef50_B4V095|unclassified	0.0502663577
+UniRef50_Q549V7: Probable two-component response regulator (Fragment)	0.0502651173
+UniRef50_Q549V7: Probable two-component response regulator (Fragment)|unclassified	0.0502651173
+UniRef50_G7S0Q6: Polysaccharide biosynthesis protein	0.0502623771
+UniRef50_G7S0Q6: Polysaccharide biosynthesis protein|unclassified	0.0502623771
+UniRef50_UPI000466933B: hypothetical protein	0.0502601194
+UniRef50_UPI000466933B: hypothetical protein|unclassified	0.0502601194
+UniRef50_UPI00036DA897: hypothetical protein	0.0502543106
+UniRef50_UPI00036DA897: hypothetical protein|unclassified	0.0502543106
+UniRef50_Q7U6F4: Probable alpha-L-glutamate ligase	0.0502527416
+UniRef50_Q7U6F4: Probable alpha-L-glutamate ligase|unclassified	0.0502527416
+UniRef50_W9C4I8	0.0502522042
+UniRef50_W9C4I8|unclassified	0.0502522042
+UniRef50_Q097V7: MocA	0.0502521638
+UniRef50_Q097V7: MocA|unclassified	0.0502521638
+UniRef50_R2UE89	0.0502507156
+UniRef50_R2UE89|unclassified	0.0502507156
+UniRef50_X1BND3: Marine sediment metagenome DNA, contig: S01H4_L07054 (Fragment)	0.0502411198
+UniRef50_X1BND3: Marine sediment metagenome DNA, contig: S01H4_L07054 (Fragment)|unclassified	0.0502411198
+UniRef50_F5SKE6: TRAP-T family transporter fused small and large inner membrane subunit	0.0502403733
+UniRef50_F5SKE6: TRAP-T family transporter fused small and large inner membrane subunit|unclassified	0.0502403733
+UniRef50_P22501: Major tail sheath protein	0.0502400241
+UniRef50_P22501: Major tail sheath protein|unclassified	0.0502400241
+UniRef50_F9AW92: Iron compound ABC transporter, periplasmic iron compound-binding protein	0.0502381169
+UniRef50_F9AW92: Iron compound ABC transporter, periplasmic iron compound-binding protein|unclassified	0.0502381169
+UniRef50_UPI000417532F: hypothetical protein	0.0502352135
+UniRef50_UPI000417532F: hypothetical protein|unclassified	0.0502352135
+UniRef50_UPI0003B4620B: acyl-CoA dehydrogenase	0.0502346797
+UniRef50_UPI0003B4620B: acyl-CoA dehydrogenase|unclassified	0.0502346797
+UniRef50_V6IZ78: Transporter	0.0502338680
+UniRef50_V6IZ78: Transporter|unclassified	0.0502338680
+UniRef50_UPI000255575C: hypothetical protein	0.0502336253
+UniRef50_UPI000255575C: hypothetical protein|unclassified	0.0502336253
+UniRef50_UPI00040ABF98: hypothetical protein	0.0502281023
+UniRef50_UPI00040ABF98: hypothetical protein|unclassified	0.0502281023
+UniRef50_Q3SMC6: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical	0.0502215621
+UniRef50_Q3SMC6: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical|unclassified	0.0502215621
+UniRef50_UPI000471D37F: hypothetical protein	0.0502211532
+UniRef50_UPI000471D37F: hypothetical protein|unclassified	0.0502211532
+UniRef50_UPI0002E74516: hypothetical protein	0.0502209587
+UniRef50_UPI0002E74516: hypothetical protein|unclassified	0.0502209587
+UniRef50_A7H1C4: GTP-binding protein LepA	0.0502198488
+UniRef50_A7H1C4: GTP-binding protein LepA|unclassified	0.0502198488
+UniRef50_UPI00047085DB: diaminopimelate decarboxylase	0.0502185488
+UniRef50_UPI00047085DB: diaminopimelate decarboxylase|unclassified	0.0502185488
+UniRef50_UPI0003903EF9: Sulfide dehydrogenase subunit alpha	0.0502174034
+UniRef50_UPI0003903EF9: Sulfide dehydrogenase subunit alpha|unclassified	0.0502174034
+UniRef50_F5Z8X4: DNA polymerase III subunit delta	0.0502107420
+UniRef50_F5Z8X4: DNA polymerase III subunit delta|unclassified	0.0502107420
+UniRef50_UPI00046F8C65: hypothetical protein	0.0502085671
+UniRef50_UPI00046F8C65: hypothetical protein|unclassified	0.0502085671
+UniRef50_UPI000360DA93: hypothetical protein	0.0502085314
+UniRef50_UPI000360DA93: hypothetical protein|unclassified	0.0502085314
+UniRef50_G2ICT0: Periplasmic binding protein	0.0502035265
+UniRef50_G2ICT0: Periplasmic binding protein|unclassified	0.0502035265
+UniRef50_UPI000362B451: PTS fructose transporter subunit IIA	0.0502020335
+UniRef50_UPI000362B451: PTS fructose transporter subunit IIA|unclassified	0.0502020335
+UniRef50_UPI000367E0A5: hypothetical protein	0.0501995398
+UniRef50_UPI000367E0A5: hypothetical protein|unclassified	0.0501995398
+UniRef50_UPI00037EB0E7: hypothetical protein	0.0501962397
+UniRef50_UPI00037EB0E7: hypothetical protein|unclassified	0.0501962397
+UniRef50_UPI00028A2CDF: protein phosphatase	0.0501957529
+UniRef50_UPI00028A2CDF: protein phosphatase|unclassified	0.0501957529
+UniRef50_UPI0003459EFA: hypothetical protein	0.0501939190
+UniRef50_UPI0003459EFA: hypothetical protein|unclassified	0.0501939190
+UniRef50_UPI0003DE8273: PREDICTED: translation initiation factor IF-2, chloroplastic-like, partial	0.0501918648
+UniRef50_UPI0003DE8273: PREDICTED: translation initiation factor IF-2, chloroplastic-like, partial|unclassified	0.0501918648
+UniRef50_UPI00046B85CA: PREDICTED: sodium/hydrogen exchanger 4-like	0.0501883607
+UniRef50_UPI00046B85CA: PREDICTED: sodium/hydrogen exchanger 4-like|unclassified	0.0501883607
+UniRef50_S5QXS9: Polysaccharide biosynthesis protein	0.0501868410
+UniRef50_S5QXS9: Polysaccharide biosynthesis protein|unclassified	0.0501868410
+UniRef50_UPI00030774F9: hypothetical protein	0.0501827337
+UniRef50_UPI00030774F9: hypothetical protein|unclassified	0.0501827337
+UniRef50_V8N1G2: Arginine-glutamic acid dipeptide repeats protein (Fragment)	0.0501804619
+UniRef50_V8N1G2: Arginine-glutamic acid dipeptide repeats protein (Fragment)|unclassified	0.0501804619
+UniRef50_U2PUQ4	0.0501799210
+UniRef50_U2PUQ4|unclassified	0.0501799210
+UniRef50_UPI0003A506AE: MULTISPECIES: queuine tRNA-ribosyltransferase	0.0501753380
+UniRef50_UPI0003A506AE: MULTISPECIES: queuine tRNA-ribosyltransferase|unclassified	0.0501753380
+UniRef50_UPI00041C01EF: peptidase M24	0.0501728965
+UniRef50_UPI00041C01EF: peptidase M24|unclassified	0.0501728965
+UniRef50_UPI00038F86CD: Isoleucine--tRNA ligase 2	0.0501716511
+UniRef50_UPI00038F86CD: Isoleucine--tRNA ligase 2|unclassified	0.0501716511
+UniRef50_UPI000362A8A3: hypothetical protein	0.0501678084
+UniRef50_UPI000362A8A3: hypothetical protein|unclassified	0.0501678084
+UniRef50_Q2KVK2: Methionine import ATP-binding protein MetN	0.0501633049
+UniRef50_Q2KVK2: Methionine import ATP-binding protein MetN|unclassified	0.0501633049
+UniRef50_UPI000401A7F4: NADH:ubiquinone oxidoreductase subunit H	0.0501566093
+UniRef50_UPI000401A7F4: NADH:ubiquinone oxidoreductase subunit H|unclassified	0.0501566093
+UniRef50_UPI000360F857: hypothetical protein	0.0501555642
+UniRef50_UPI000360F857: hypothetical protein|unclassified	0.0501555642
+UniRef50_UPI000474C2F8: DNA repair protein RadA, partial	0.0501548625
+UniRef50_UPI000474C2F8: DNA repair protein RadA, partial|unclassified	0.0501548625
+UniRef50_UPI00037D05EC: hypothetical protein	0.0501502354
+UniRef50_UPI00037D05EC: hypothetical protein|unclassified	0.0501502354
+UniRef50_UPI00037B8771: hypothetical protein	0.0501476561
+UniRef50_UPI00037B8771: hypothetical protein|unclassified	0.0501476561
+UniRef50_I4YHY8: DUF28-domain-containing protein	0.0501453988
+UniRef50_I4YHY8: DUF28-domain-containing protein|unclassified	0.0501453988
+UniRef50_F8F1C2	0.0501430923
+UniRef50_F8F1C2|unclassified	0.0501430923
+UniRef50_G8AGP6	0.0501375008
+UniRef50_G8AGP6|unclassified	0.0501375008
+UniRef50_UPI0003130E8F: hypothetical protein	0.0501358745
+UniRef50_UPI0003130E8F: hypothetical protein|unclassified	0.0501358745
+UniRef50_UPI0003B2E516: major facilitator transporter	0.0501329800
+UniRef50_UPI0003B2E516: major facilitator transporter|unclassified	0.0501329800
+UniRef50_UPI0003825FE8: hypothetical protein	0.0501324907
+UniRef50_UPI0003825FE8: hypothetical protein|unclassified	0.0501324907
+UniRef50_B9TGW9	0.0501324638
+UniRef50_B9TGW9|unclassified	0.0501324638
+UniRef50_UPI00037051C8: hypothetical protein	0.0501320850
+UniRef50_UPI00037051C8: hypothetical protein|unclassified	0.0501320850
+UniRef50_UPI000393C96F: PREDICTED: basic salivary proline-rich protein 3-like	0.0501287369
+UniRef50_UPI000393C96F: PREDICTED: basic salivary proline-rich protein 3-like|unclassified	0.0501287369
+UniRef50_Q1IKG7: Phospho-N-acetylmuramoyl-pentapeptide-transferase	0.0501253618
+UniRef50_Q1IKG7: Phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.0501253618
+UniRef50_Q9V1J1: Putative homocitrate synthase	0.0501232988
+UniRef50_Q9V1J1: Putative homocitrate synthase|unclassified	0.0501232988
+UniRef50_UPI0003B6A20D: helicase UvrD	0.0501215595
+UniRef50_UPI0003B6A20D: helicase UvrD|unclassified	0.0501215595
+UniRef50_UPI00035C0B1A: hypothetical protein	0.0501210343
+UniRef50_UPI00035C0B1A: hypothetical protein|unclassified	0.0501210343
+UniRef50_UPI0004648EC6: beta-ketoadipyl CoA thiolase, partial	0.0501209081
+UniRef50_UPI0004648EC6: beta-ketoadipyl CoA thiolase, partial|unclassified	0.0501209081
+UniRef50_A9V0F3: Predicted protein	0.0501206729
+UniRef50_A9V0F3: Predicted protein|unclassified	0.0501206729
+UniRef50_A4Y7U5: UPF0276 protein Sputcn32_2307	0.0501153836
+UniRef50_A4Y7U5: UPF0276 protein Sputcn32_2307|unclassified	0.0501153836
+UniRef50_F4DVZ9: Fec operon regulator FecR	0.0501116246
+UniRef50_F4DVZ9: Fec operon regulator FecR|unclassified	0.0501116246
+UniRef50_UPI00037F264A: hypothetical protein	0.0501100844
+UniRef50_UPI00037F264A: hypothetical protein|unclassified	0.0501100844
+UniRef50_UPI0003F1C362: PREDICTED: UV-stimulated scaffold protein A	0.0501092499
+UniRef50_UPI0003F1C362: PREDICTED: UV-stimulated scaffold protein A|unclassified	0.0501092499
+UniRef50_A2SLT0: tRNA-specific 2-thiouridylase MnmA	0.0501062877
+UniRef50_A2SLT0: tRNA-specific 2-thiouridylase MnmA|unclassified	0.0501062877
+UniRef50_UPI00025561ED: LysR family transcriptional regulator	0.0501030689
+UniRef50_UPI00025561ED: LysR family transcriptional regulator|unclassified	0.0501030689
+UniRef50_UPI00041875E1: hypothetical protein	0.0501011858
+UniRef50_UPI00041875E1: hypothetical protein|unclassified	0.0501011858
+UniRef50_Q86ZV0: D-xylulose reductase A	0.0501008272
+UniRef50_Q86ZV0: D-xylulose reductase A|unclassified	0.0501008272
+UniRef50_W5NNU6	0.0500978137
+UniRef50_W5NNU6|unclassified	0.0500978137
+UniRef50_G7VP16	0.0500956832
+UniRef50_G7VP16|unclassified	0.0500956832
+UniRef50_D5V238: Permease	0.0500941411
+UniRef50_D5V238: Permease|unclassified	0.0500941411
+UniRef50_UPI0003B43540: choline transporter, partial	0.0500939738
+UniRef50_UPI0003B43540: choline transporter, partial|unclassified	0.0500939738
+UniRef50_UPI0002B4AF60: PREDICTED: pre-mRNA-splicing factor SF2-like, partial	0.0500939558
+UniRef50_UPI0002B4AF60: PREDICTED: pre-mRNA-splicing factor SF2-like, partial|unclassified	0.0500939558
+UniRef50_UPI0003766DF1: hypothetical protein	0.0500936665
+UniRef50_UPI0003766DF1: hypothetical protein|unclassified	0.0500936665
+UniRef50_V5BZ22	0.0500915618
+UniRef50_V5BZ22|unclassified	0.0500915618
+UniRef50_UPI00038103E7: hypothetical protein	0.0500899340
+UniRef50_UPI00038103E7: hypothetical protein|unclassified	0.0500899340
+UniRef50_U6MTS1	0.0500888943
+UniRef50_U6MTS1|unclassified	0.0500888943
+UniRef50_UPI00034CDF33: MULTISPECIES: hypothetical protein	0.0500870926
+UniRef50_UPI00034CDF33: MULTISPECIES: hypothetical protein|unclassified	0.0500870926
+UniRef50_UPI000462751A: hypothetical protein	0.0500826173
+UniRef50_UPI000462751A: hypothetical protein|unclassified	0.0500826173
+UniRef50_UPI00037C74C3: hypothetical protein	0.0500812242
+UniRef50_UPI00037C74C3: hypothetical protein|unclassified	0.0500812242
+UniRef50_V6IY34: Membrane protein	0.0500733586
+UniRef50_V6IY34: Membrane protein|unclassified	0.0500733586
+UniRef50_UPI0003C1620F: PREDICTED: phosphoglucomutase, chloroplastic-like	0.0500732039
+UniRef50_UPI0003C1620F: PREDICTED: phosphoglucomutase, chloroplastic-like|unclassified	0.0500732039
+UniRef50_UPI000470B106: hypothetical protein	0.0500721984
+UniRef50_UPI000470B106: hypothetical protein|unclassified	0.0500721984
+UniRef50_U7GAV7: UPF0176 protein Q669_02655	0.0500694757
+UniRef50_U7GAV7: UPF0176 protein Q669_02655|unclassified	0.0500694757
+UniRef50_F8EH91: Transposase IS4 family protein	0.0500679814
+UniRef50_F8EH91: Transposase IS4 family protein|unclassified	0.0500679814
+UniRef50_I6S1H3	0.0500656818
+UniRef50_I6S1H3|unclassified	0.0500656818
+UniRef50_UPI00037F808C: hypothetical protein	0.0500646555
+UniRef50_UPI00037F808C: hypothetical protein|unclassified	0.0500646555
+UniRef50_E6QMS5	0.0500640887
+UniRef50_E6QMS5|unclassified	0.0500640887
+UniRef50_UPI0001CC0B07: glucose dehydrogenase, partial	0.0500586172
+UniRef50_UPI0001CC0B07: glucose dehydrogenase, partial|unclassified	0.0500586172
+UniRef50_UPI00038FB201: Portal protein	0.0500575853
+UniRef50_UPI00038FB201: Portal protein|unclassified	0.0500575853
+UniRef50_UPI000368F1ED: hypothetical protein	0.0500556172
+UniRef50_UPI000368F1ED: hypothetical protein|unclassified	0.0500556172
+UniRef50_UPI00045D5E26	0.0500535295
+UniRef50_UPI00045D5E26|unclassified	0.0500535295
+UniRef50_UPI0003EA94D2: PREDICTED: 50S ribosomal protein L3-2, chloroplastic-like	0.0500497525
+UniRef50_UPI0003EA94D2: PREDICTED: 50S ribosomal protein L3-2, chloroplastic-like|unclassified	0.0500497525
+UniRef50_UPI0002D41DEC: protoheme IX farnesyltransferase	0.0500460845
+UniRef50_UPI0002D41DEC: protoheme IX farnesyltransferase|unclassified	0.0500460845
+UniRef50_UPI0003681123: hypothetical protein	0.0500413654
+UniRef50_UPI0003681123: hypothetical protein|unclassified	0.0500413654
+UniRef50_UPI000471900F: hypothetical protein	0.0500408450
+UniRef50_UPI000471900F: hypothetical protein|unclassified	0.0500408450
+UniRef50_Q720Z5: Teichoic acids export ATP-binding protein TagH	0.0500390006
+UniRef50_Q720Z5: Teichoic acids export ATP-binding protein TagH|unclassified	0.0500390006
+UniRef50_G8P1Y2: MazG family protein	0.0500349278
+UniRef50_G8P1Y2: MazG family protein|unclassified	0.0500349278
+UniRef50_UPI000378C003: hypothetical protein	0.0500334667
+UniRef50_UPI000378C003: hypothetical protein|unclassified	0.0500334667
+UniRef50_UPI0003B6CC9E: Acr/RND family transmembrane transporter, partial	0.0500324424
+UniRef50_UPI0003B6CC9E: Acr/RND family transmembrane transporter, partial|unclassified	0.0500324424
+UniRef50_F3I6G5	0.0500314450
+UniRef50_F3I6G5|unclassified	0.0500314450
+UniRef50_K2DBL5: UPF0176 protein ACD_30C00054G0010	0.0500240204
+UniRef50_K2DBL5: UPF0176 protein ACD_30C00054G0010|unclassified	0.0500240204
+UniRef50_UPI000161E3C9: Amino acid permease family protein	0.0500199336
+UniRef50_UPI000161E3C9: Amino acid permease family protein|unclassified	0.0500199336
+UniRef50_UPI00046774C4: phosphoserine phosphatase	0.0500195865
+UniRef50_UPI00046774C4: phosphoserine phosphatase|unclassified	0.0500195865
+UniRef50_UPI0004714329: hypothetical protein	0.0500186533
+UniRef50_UPI0004714329: hypothetical protein|unclassified	0.0500186533
+UniRef50_F3GLX6: Alginate regulatory protein AlgP (Fragment)	0.0500163814
+UniRef50_F3GLX6: Alginate regulatory protein AlgP (Fragment)|unclassified	0.0500163814
+UniRef50_Q0HLT4: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical	0.0500160168
+UniRef50_Q0HLT4: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical|unclassified	0.0500160168
+UniRef50_C0QYU9: Acetylglutamate kinase	0.0500125575
+UniRef50_C0QYU9: Acetylglutamate kinase|unclassified	0.0500125575
+UniRef50_UPI00030882F6: hypothetical protein	0.0500115169
+UniRef50_UPI00030882F6: hypothetical protein|unclassified	0.0500115169
+UniRef50_Q28HM1: Dimethyladenosine transferase 1, mitochondrial	0.0500108884
+UniRef50_Q28HM1: Dimethyladenosine transferase 1, mitochondrial|unclassified	0.0500108884
+UniRef50_B4UL60	0.0500095663
+UniRef50_B4UL60|unclassified	0.0500095663
+UniRef50_UPI000479E61F: hypothetical protein	0.0500083701
+UniRef50_UPI000479E61F: hypothetical protein|unclassified	0.0500083701
+UniRef50_UPI00029A6867: sugar transporter	0.0499976197
+UniRef50_UPI00029A6867: sugar transporter|unclassified	0.0499976197
+UniRef50_UPI0003F94ECB: CMP deaminase	0.0499922588
+UniRef50_UPI0003F94ECB: CMP deaminase|unclassified	0.0499922588
+UniRef50_UPI000289F43F: 4-amino-4-deoxychorismate lyase	0.0499912484
+UniRef50_UPI000289F43F: 4-amino-4-deoxychorismate lyase|unclassified	0.0499912484
+UniRef50_UPI000371E3B5: hypothetical protein	0.0499861443
+UniRef50_UPI000371E3B5: hypothetical protein|unclassified	0.0499861443
+UniRef50_UPI00036BED26: hypothetical protein	0.0499843700
+UniRef50_UPI00036BED26: hypothetical protein|unclassified	0.0499843700
+UniRef50_UPI00047A4D5F: FAD-dependent oxidoreductase	0.0499817555
+UniRef50_UPI00047A4D5F: FAD-dependent oxidoreductase|unclassified	0.0499817555
+UniRef50_UPI0004771CEE: ATP synthase	0.0499724617
+UniRef50_UPI0004771CEE: ATP synthase|unclassified	0.0499724617
+UniRef50_D0IXB3: Pirin-like protein	0.0499723247
+UniRef50_D0IXB3: Pirin-like protein|unclassified	0.0499723247
+UniRef50_UPI000479F38A: flagellar biosynthesis protein FlhB	0.0499702129
+UniRef50_UPI000479F38A: flagellar biosynthesis protein FlhB|unclassified	0.0499702129
+UniRef50_B2SAR8: Periplasmic binding protein	0.0499612032
+UniRef50_B2SAR8: Periplasmic binding protein|unclassified	0.0499612032
+UniRef50_UPI0003758C85: hypothetical protein	0.0499598331
+UniRef50_UPI0003758C85: hypothetical protein|unclassified	0.0499598331
+UniRef50_UPI0003755355: hypothetical protein	0.0499595856
+UniRef50_UPI0003755355: hypothetical protein|unclassified	0.0499595856
+UniRef50_W5X364: Binding-protein-dependent transport systems inner membrane component	0.0499529575
+UniRef50_W5X364: Binding-protein-dependent transport systems inner membrane component|unclassified	0.0499529575
+UniRef50_A0LJK3: tRNA dimethylallyltransferase	0.0499436850
+UniRef50_A0LJK3: tRNA dimethylallyltransferase|unclassified	0.0499436850
+UniRef50_Q8JZM0: Dimethyladenosine transferase 1, mitochondrial	0.0499430274
+UniRef50_Q8JZM0: Dimethyladenosine transferase 1, mitochondrial|unclassified	0.0499430274
+UniRef50_UPI00032B0CF3: PREDICTED: zinc finger CCHC domain-containing protein 2	0.0499418128
+UniRef50_UPI00032B0CF3: PREDICTED: zinc finger CCHC domain-containing protein 2|unclassified	0.0499418128
+UniRef50_UPI000374FC61: hypothetical protein	0.0499390406
+UniRef50_UPI000374FC61: hypothetical protein|unclassified	0.0499390406
+UniRef50_UPI0003B42BAD: peptidoglycan-binding protein	0.0499368496
+UniRef50_UPI0003B42BAD: peptidoglycan-binding protein|unclassified	0.0499368496
+UniRef50_UPI00037E539F: hypothetical protein	0.0499346797
+UniRef50_UPI00037E539F: hypothetical protein|unclassified	0.0499346797
+UniRef50_UPI0003735DA1: hypothetical protein	0.0499333079
+UniRef50_UPI0003735DA1: hypothetical protein|unclassified	0.0499333079
+UniRef50_UPI0001BC2BC4: putative phenazine biosynthesis protein PhzC	0.0499301676
+UniRef50_UPI0001BC2BC4: putative phenazine biosynthesis protein PhzC|unclassified	0.0499301676
+UniRef50_H8FLZ5: TrwC domain protein	0.0499262066
+UniRef50_H8FLZ5: TrwC domain protein|unclassified	0.0499262066
+UniRef50_UPI00035F8B10: hypothetical protein	0.0499261644
+UniRef50_UPI00035F8B10: hypothetical protein|unclassified	0.0499261644
+UniRef50_V4R8Y9	0.0499238066
+UniRef50_V4R8Y9|unclassified	0.0499238066
+UniRef50_UPI00047B2EDF: hypothetical protein	0.0499070621
+UniRef50_UPI00047B2EDF: hypothetical protein|unclassified	0.0499070621
+UniRef50_A5FSB7: Ribosomal RNA small subunit methyltransferase H	0.0498958807
+UniRef50_A5FSB7: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0498958807
+UniRef50_UPI0003C369F6: PREDICTED: tetratricopeptide repeat protein 14 homolog	0.0498940685
+UniRef50_UPI0003C369F6: PREDICTED: tetratricopeptide repeat protein 14 homolog|unclassified	0.0498940685
+UniRef50_Q72R66	0.0498935672
+UniRef50_Q72R66|unclassified	0.0498935672
+UniRef50_UPI0003C26616	0.0498879644
+UniRef50_UPI0003C26616|unclassified	0.0498879644
+UniRef50_A4J4X3: Formamidopyrimidine-DNA glycosylase	0.0498764139
+UniRef50_A4J4X3: Formamidopyrimidine-DNA glycosylase|unclassified	0.0498764139
+UniRef50_Q5QV59: 3-dehydroquinate synthase	0.0498699065
+UniRef50_Q5QV59: 3-dehydroquinate synthase|unclassified	0.0498699065
+UniRef50_UPI00036E29B6: hypothetical protein	0.0498690447
+UniRef50_UPI00036E29B6: hypothetical protein|unclassified	0.0498690447
+UniRef50_UPI00036E78E6: hypothetical protein	0.0498676454
+UniRef50_UPI00036E78E6: hypothetical protein|unclassified	0.0498676454
+UniRef50_UPI00030923CA: ABC transporter	0.0498627910
+UniRef50_UPI00030923CA: ABC transporter|unclassified	0.0498627910
+UniRef50_A0KQA4: DNA-directed RNA polymerase subunit beta'	0.0498596340
+UniRef50_A0KQA4: DNA-directed RNA polymerase subunit beta'|unclassified	0.0498596340
+UniRef50_B9T7I1	0.0498562707
+UniRef50_B9T7I1|unclassified	0.0498562707
+UniRef50_UPI00037AEAC1: hypothetical protein	0.0498542129
+UniRef50_UPI00037AEAC1: hypothetical protein|unclassified	0.0498542129
+UniRef50_D8TNI9	0.0498511504
+UniRef50_D8TNI9|unclassified	0.0498511504
+UniRef50_H0DEG4	0.0498495323
+UniRef50_H0DEG4|unclassified	0.0498495323
+UniRef50_UPI0004560351: hypothetical protein PFL1_00292	0.0498478605
+UniRef50_UPI0004560351: hypothetical protein PFL1_00292|unclassified	0.0498478605
+UniRef50_UPI0003B6BD84: DNA replication protein	0.0498429657
+UniRef50_UPI0003B6BD84: DNA replication protein|unclassified	0.0498429657
+UniRef50_UPI000262CD24: dihydroorotate dehydrogenase 2	0.0498413919
+UniRef50_UPI000262CD24: dihydroorotate dehydrogenase 2|unclassified	0.0498413919
+UniRef50_A5VI05	0.0498361366
+UniRef50_A5VI05|unclassified	0.0498361366
+UniRef50_UPI00031CF8E4: hypothetical protein	0.0498356277
+UniRef50_UPI00031CF8E4: hypothetical protein|unclassified	0.0498356277
+UniRef50_V6U9N7: LacI family transcriptional regulator	0.0498335370
+UniRef50_V6U9N7: LacI family transcriptional regulator|unclassified	0.0498335370
+UniRef50_UPI000470A235: hypothetical protein	0.0498331848
+UniRef50_UPI000470A235: hypothetical protein|unclassified	0.0498331848
+UniRef50_N0A6X1: Pirin family protein	0.0498322584
+UniRef50_N0A6X1: Pirin family protein|unclassified	0.0498322584
+UniRef50_W9G7G4: Peptidase S66	0.0498310030
+UniRef50_W9G7G4: Peptidase S66|unclassified	0.0498310030
+UniRef50_K8CDN0: Putative transglycosylase	0.0498255585
+UniRef50_K8CDN0: Putative transglycosylase|unclassified	0.0498255585
+UniRef50_UPI00032A327D: PREDICTED: HTH-type transcriptional regulator BbuR-like	0.0498201130
+UniRef50_UPI00032A327D: PREDICTED: HTH-type transcriptional regulator BbuR-like|unclassified	0.0498201130
+UniRef50_O31776: L-threonine 3-dehydrogenase	0.0498171979
+UniRef50_O31776: L-threonine 3-dehydrogenase|unclassified	0.0498171979
+UniRef50_UPI00036FC7C5: hypothetical protein	0.0498103409
+UniRef50_UPI00036FC7C5: hypothetical protein|unclassified	0.0498103409
+UniRef50_S4MV34	0.0498096934
+UniRef50_S4MV34|unclassified	0.0498096934
+UniRef50_I3IP02: Pilus assembly protein	0.0498065298
+UniRef50_I3IP02: Pilus assembly protein|unclassified	0.0498065298
+UniRef50_UPI00036E3130: hypothetical protein	0.0498060443
+UniRef50_UPI00036E3130: hypothetical protein|unclassified	0.0498060443
+UniRef50_UPI0004754290: UDP-glucose 6-dehydrogenase	0.0498055431
+UniRef50_UPI0004754290: UDP-glucose 6-dehydrogenase|unclassified	0.0498055431
+UniRef50_UPI000378CCFE: hypothetical protein	0.0498033721
+UniRef50_UPI000378CCFE: hypothetical protein|unclassified	0.0498033721
+UniRef50_UPI0004624001: branched-chain amino acid aminotransferase II	0.0498031431
+UniRef50_UPI0004624001: branched-chain amino acid aminotransferase II|unclassified	0.0498031431
+UniRef50_UPI0004174A53: hypothetical protein	0.0497990712
+UniRef50_UPI0004174A53: hypothetical protein|unclassified	0.0497990712
+UniRef50_UPI000381A76A: hypothetical protein	0.0497852067
+UniRef50_UPI000381A76A: hypothetical protein|unclassified	0.0497852067
+UniRef50_UPI00026533A3	0.0497839518
+UniRef50_UPI00026533A3|unclassified	0.0497839518
+UniRef50_UPI000474BE5B: hypothetical protein	0.0497804722
+UniRef50_UPI000474BE5B: hypothetical protein|unclassified	0.0497804722
+UniRef50_UPI00034742BC: hypothetical protein	0.0497793417
+UniRef50_UPI00034742BC: hypothetical protein|unclassified	0.0497793417
+UniRef50_UPI00016A3B06: nitrogen metabolism transcriptional regulator, NtrC, Fis Family, partial	0.0497741441
+UniRef50_UPI00016A3B06: nitrogen metabolism transcriptional regulator, NtrC, Fis Family, partial|unclassified	0.0497741441
+UniRef50_C3MPM7: Putative homocitrate synthase	0.0497739773
+UniRef50_C3MPM7: Putative homocitrate synthase|unclassified	0.0497739773
+UniRef50_UPI00038FF58F: Phosphoglucomutase	0.0497713481
+UniRef50_UPI00038FF58F: Phosphoglucomutase|unclassified	0.0497713481
+UniRef50_Q1CU36: Phospho-N-acetylmuramoyl-pentapeptide-transferase	0.0497696773
+UniRef50_Q1CU36: Phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.0497696773
+UniRef50_UPI00046CFF8D: phenylacetate--CoA ligase	0.0497625832
+UniRef50_UPI00046CFF8D: phenylacetate--CoA ligase|unclassified	0.0497625832
+UniRef50_UPI00036C4316: hypothetical protein	0.0497619801
+UniRef50_UPI00036C4316: hypothetical protein|unclassified	0.0497619801
+UniRef50_UPI000368D551: alkanesulfonate monooxygenase	0.0497614736
+UniRef50_UPI000368D551: alkanesulfonate monooxygenase|unclassified	0.0497614736
+UniRef50_UPI00034F32A9: PREDICTED: translation initiation factor IF-2-like	0.0497605357
+UniRef50_UPI00034F32A9: PREDICTED: translation initiation factor IF-2-like|unclassified	0.0497605357
+UniRef50_UPI0003665501: fimbrial protein StfD	0.0497586741
+UniRef50_UPI0003665501: fimbrial protein StfD|unclassified	0.0497586741
+UniRef50_UPI0003FEE53B: hypothetical protein	0.0497579453
+UniRef50_UPI0003FEE53B: hypothetical protein|unclassified	0.0497579453
+UniRef50_R6P1I3	0.0497575829
+UniRef50_R6P1I3|unclassified	0.0497575829
+UniRef50_UPI000414550F: hypothetical protein	0.0497561509
+UniRef50_UPI000414550F: hypothetical protein|unclassified	0.0497561509
+UniRef50_J0D274	0.0497554355
+UniRef50_J0D274|unclassified	0.0497554355
+UniRef50_UPI000477F0AC: hypothetical protein	0.0497537328
+UniRef50_UPI000477F0AC: hypothetical protein|unclassified	0.0497537328
+UniRef50_UPI00037DFFFF: hypothetical protein	0.0497513766
+UniRef50_UPI00037DFFFF: hypothetical protein|unclassified	0.0497513766
+UniRef50_Q3AW68: tRNA pseudouridine synthase A	0.0497376735
+UniRef50_Q3AW68: tRNA pseudouridine synthase A|unclassified	0.0497376735
+UniRef50_G4MEB0: Protein containing domains DUF404, DUF407	0.0497293095
+UniRef50_G4MEB0: Protein containing domains DUF404, DUF407|unclassified	0.0497293095
+UniRef50_J3PBE5	0.0497240444
+UniRef50_J3PBE5|unclassified	0.0497240444
+UniRef50_UPI000468EFA0: hypothetical protein	0.0497235080
+UniRef50_UPI000468EFA0: hypothetical protein|unclassified	0.0497235080
+UniRef50_A8EVQ3: Uroporphyrinogen decarboxylase	0.0497219805
+UniRef50_A8EVQ3: Uroporphyrinogen decarboxylase|unclassified	0.0497219805
+UniRef50_UPI00037BE953: hypothetical protein	0.0497211500
+UniRef50_UPI00037BE953: hypothetical protein|unclassified	0.0497211500
+UniRef50_UPI0003803BA2: hypothetical protein	0.0497193706
+UniRef50_UPI0003803BA2: hypothetical protein|unclassified	0.0497193706
+UniRef50_UPI00035F8C60: hypothetical protein	0.0497187136
+UniRef50_UPI00035F8C60: hypothetical protein|unclassified	0.0497187136
+UniRef50_Q55738: DNA gyrase subunit A	0.0497148949
+UniRef50_Q55738: DNA gyrase subunit A|unclassified	0.0497148949
+UniRef50_UPI00035ED1AB: hypothetical protein	0.0497086708
+UniRef50_UPI00035ED1AB: hypothetical protein|unclassified	0.0497086708
+UniRef50_UPI0002894980: iron ABC transporter substrate-binding protein	0.0497003928
+UniRef50_UPI0002894980: iron ABC transporter substrate-binding protein|unclassified	0.0497003928
+UniRef50_P54616: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI	0.0496995905
+UniRef50_P54616: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI|unclassified	0.0496995905
+UniRef50_F7ZI09: TRAP transporter subunit DctM	0.0496919924
+UniRef50_F7ZI09: TRAP transporter subunit DctM|unclassified	0.0496919924
+UniRef50_W7E2N7: Chromosome segregation and condensation protein ScpA	0.0496880447
+UniRef50_W7E2N7: Chromosome segregation and condensation protein ScpA|unclassified	0.0496880447
+UniRef50_UPI00046EE985: cobalt ABC transporter permease	0.0496856515
+UniRef50_UPI00046EE985: cobalt ABC transporter permease|unclassified	0.0496856515
+UniRef50_UPI0002002F6E: glycosyl transferase group 1	0.0496856205
+UniRef50_UPI0002002F6E: glycosyl transferase group 1|unclassified	0.0496856205
+UniRef50_UPI0003F598CC: hypothetical protein	0.0496759130
+UniRef50_UPI0003F598CC: hypothetical protein|unclassified	0.0496759130
+UniRef50_UPI000466BDCB: hypothetical protein	0.0496748504
+UniRef50_UPI000466BDCB: hypothetical protein|unclassified	0.0496748504
+UniRef50_UPI000365CA2E: hypothetical protein, partial	0.0496729990
+UniRef50_UPI000365CA2E: hypothetical protein, partial|unclassified	0.0496729990
+UniRef50_UPI00035E5F38: hypothetical protein	0.0496695574
+UniRef50_UPI00035E5F38: hypothetical protein|unclassified	0.0496695574
+UniRef50_UPI00037D7C77: hypothetical protein	0.0496667356
+UniRef50_UPI00037D7C77: hypothetical protein|unclassified	0.0496667356
+UniRef50_D6DUB5: ABC-type Fe3+-hydroxamate transport system, periplasmic component	0.0496633041
+UniRef50_D6DUB5: ABC-type Fe3+-hydroxamate transport system, periplasmic component|unclassified	0.0496633041
+UniRef50_UPI0003B45D4A: transcription termination factor Rho	0.0496582052
+UniRef50_UPI0003B45D4A: transcription termination factor Rho|unclassified	0.0496582052
+UniRef50_UPI00039DC567: hypothetical protein	0.0496551062
+UniRef50_UPI00039DC567: hypothetical protein|unclassified	0.0496551062
+UniRef50_D7CUL8	0.0496525716
+UniRef50_D7CUL8|unclassified	0.0496525716
+UniRef50_Q8EBR2: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.0496524681
+UniRef50_Q8EBR2: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.0496524681
+UniRef50_UPI0003B317F3: hypothetical protein	0.0496499015
+UniRef50_UPI0003B317F3: hypothetical protein|unclassified	0.0496499015
+UniRef50_A5K7U4	0.0496449168
+UniRef50_A5K7U4|unclassified	0.0496449168
+UniRef50_B2UP55: Hydroxyethylthiazole kinase	0.0496411019
+UniRef50_B2UP55: Hydroxyethylthiazole kinase|unclassified	0.0496411019
+UniRef50_Q2BGS8: Type IV pilus biogenesis protein PilF	0.0496341029
+UniRef50_Q2BGS8: Type IV pilus biogenesis protein PilF|unclassified	0.0496341029
+UniRef50_UPI00035F796A: hypothetical protein	0.0496337621
+UniRef50_UPI00035F796A: hypothetical protein|unclassified	0.0496337621
+UniRef50_UPI0003B65C2A: hypothetical protein	0.0496301595
+UniRef50_UPI0003B65C2A: hypothetical protein|unclassified	0.0496301595
+UniRef50_UPI0003B4FD6D: hypothetical protein	0.0496298611
+UniRef50_UPI0003B4FD6D: hypothetical protein|unclassified	0.0496298611
+UniRef50_UPI00039CA1F9: hypothetical protein	0.0496293336
+UniRef50_UPI00039CA1F9: hypothetical protein|unclassified	0.0496293336
+UniRef50_UPI000363DB74: hypothetical protein	0.0496261724
+UniRef50_UPI000363DB74: hypothetical protein|unclassified	0.0496261724
+UniRef50_UPI000174441D: ATPase AAA-2 domain protein	0.0496213335
+UniRef50_UPI000174441D: ATPase AAA-2 domain protein|unclassified	0.0496213335
+UniRef50_UPI00037C78D7: hypothetical protein	0.0496198563
+UniRef50_UPI00037C78D7: hypothetical protein|unclassified	0.0496198563
+UniRef50_UPI000463D2BB: oxidoreductase	0.0496176254
+UniRef50_UPI000463D2BB: oxidoreductase|unclassified	0.0496176254
+UniRef50_M5DKN8: Diguanylate cyclase/phosphodiesterase (GGDEF & EAL domains) with PAS/PAC sensor(S)	0.0496149759
+UniRef50_M5DKN8: Diguanylate cyclase/phosphodiesterase (GGDEF & EAL domains) with PAS/PAC sensor(S)|unclassified	0.0496149759
+UniRef50_UPI000466D75C: formate dehydrogenase, partial	0.0496133662
+UniRef50_UPI000466D75C: formate dehydrogenase, partial|unclassified	0.0496133662
+UniRef50_Q2SS95: Ribosomal RNA small subunit methyltransferase H	0.0496074240
+UniRef50_Q2SS95: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0496074240
+UniRef50_C2YIY0: S-layer protein / Peptidoglycan endo-beta-N-acetylglucosaminidase	0.0496033419
+UniRef50_C2YIY0: S-layer protein / Peptidoglycan endo-beta-N-acetylglucosaminidase|unclassified	0.0496033419
+UniRef50_B9MLC6: D-alanine--D-alanine ligase	0.0495861442
+UniRef50_B9MLC6: D-alanine--D-alanine ligase|unclassified	0.0495861442
+UniRef50_L0DG52: Plasmid pRiA4b ORF-3-like protein	0.0495812374
+UniRef50_L0DG52: Plasmid pRiA4b ORF-3-like protein|unclassified	0.0495812374
+UniRef50_UPI00047C4ADB: hypothetical protein	0.0495776490
+UniRef50_UPI00047C4ADB: hypothetical protein|unclassified	0.0495776490
+UniRef50_UPI0002BFF2B3: unnamed protein product	0.0495775297
+UniRef50_UPI0002BFF2B3: unnamed protein product|unclassified	0.0495775297
+UniRef50_Q5PAQ2: NADH-quinone oxidoreductase subunit H	0.0495693830
+UniRef50_Q5PAQ2: NADH-quinone oxidoreductase subunit H|unclassified	0.0495693830
+UniRef50_UPI0002ED8594: hypothetical protein	0.0495531773
+UniRef50_UPI0002ED8594: hypothetical protein|unclassified	0.0495531773
+UniRef50_UPI000475E454: MFS transporter	0.0495510884
+UniRef50_UPI000475E454: MFS transporter|unclassified	0.0495510884
+UniRef50_I0TSR2	0.0495475604
+UniRef50_I0TSR2|unclassified	0.0495475604
+UniRef50_UPI0003487C99: hypothetical protein	0.0495417710
+UniRef50_UPI0003487C99: hypothetical protein|unclassified	0.0495417710
+UniRef50_O22854: Electron transfer flavoprotein-ubiquinone oxidoreductase, mitochondrial	0.0495410634
+UniRef50_O22854: Electron transfer flavoprotein-ubiquinone oxidoreductase, mitochondrial|unclassified	0.0495410634
+UniRef50_F0VBN2	0.0495408250
+UniRef50_F0VBN2|unclassified	0.0495408250
+UniRef50_UPI00031DEA4A: hypothetical protein	0.0495389135
+UniRef50_UPI00031DEA4A: hypothetical protein|unclassified	0.0495389135
+UniRef50_F0XWM7	0.0495267675
+UniRef50_F0XWM7|unclassified	0.0495267675
+UniRef50_UPI00047A1CF1: ATP synthase	0.0495245512
+UniRef50_UPI00047A1CF1: ATP synthase|unclassified	0.0495245512
+UniRef50_UPI000477AB71: sugar ABC transporter ATP-binding protein	0.0495222364
+UniRef50_UPI000477AB71: sugar ABC transporter ATP-binding protein|unclassified	0.0495222364
+UniRef50_UPI000366460F: hypothetical protein	0.0495218926
+UniRef50_UPI000366460F: hypothetical protein|unclassified	0.0495218926
+UniRef50_UPI000373978A: hypothetical protein	0.0495134691
+UniRef50_UPI000373978A: hypothetical protein|unclassified	0.0495134691
+UniRef50_A0A024HWT5	0.0495071967
+UniRef50_A0A024HWT5|unclassified	0.0495071967
+UniRef50_UPI00046718DB: oxidoreductase, partial	0.0495030244
+UniRef50_UPI00046718DB: oxidoreductase, partial|unclassified	0.0495030244
+UniRef50_UPI000289B6C4: sugar ABC transporter permease	0.0494973144
+UniRef50_UPI000289B6C4: sugar ABC transporter permease|unclassified	0.0494973144
+UniRef50_UPI00034525BD: hypothetical protein	0.0494925876
+UniRef50_UPI00034525BD: hypothetical protein|unclassified	0.0494925876
+UniRef50_A1VXT4: Undecaprenyl-diphosphatase	0.0494901951
+UniRef50_A1VXT4: Undecaprenyl-diphosphatase|unclassified	0.0494901951
+UniRef50_N0GP01	0.0494864573
+UniRef50_N0GP01|unclassified	0.0494864573
+UniRef50_UPI00037B22BE: hypothetical protein	0.0494863006
+UniRef50_UPI00037B22BE: hypothetical protein|unclassified	0.0494863006
+UniRef50_UPI00032A0AD1: PREDICTED: lipopolysaccharide 1,3-galactosyltransferase-like	0.0494837987
+UniRef50_UPI00032A0AD1: PREDICTED: lipopolysaccharide 1,3-galactosyltransferase-like|unclassified	0.0494837987
+UniRef50_UPI00037DA92D: hypothetical protein, partial	0.0494732827
+UniRef50_UPI00037DA92D: hypothetical protein, partial|unclassified	0.0494732827
+UniRef50_P45200: Probable NADP-dependent dehydrogenase HI_1430	0.0494731528
+UniRef50_P45200: Probable NADP-dependent dehydrogenase HI_1430|unclassified	0.0494731528
+UniRef50_C2D3F1	0.0494704681
+UniRef50_C2D3F1|unclassified	0.0494704681
+UniRef50_UPI000225AF00: flagellar basal body rod protein FlgG	0.0494683611
+UniRef50_UPI000225AF00: flagellar basal body rod protein FlgG|unclassified	0.0494683611
+UniRef50_D8QQW1	0.0494665443
+UniRef50_D8QQW1|unclassified	0.0494665443
+UniRef50_Q84JF0: Adenylyl-sulfate kinase 4, chloroplastic	0.0494664849
+UniRef50_Q84JF0: Adenylyl-sulfate kinase 4, chloroplastic|unclassified	0.0494664849
+UniRef50_UPI0003B3C710: hypothetical protein	0.0494660091
+UniRef50_UPI0003B3C710: hypothetical protein|unclassified	0.0494660091
+UniRef50_UPI000262D05E: phosphopantothenate synthase	0.0494640352
+UniRef50_UPI000262D05E: phosphopantothenate synthase|unclassified	0.0494640352
+UniRef50_UPI00041FC02E: citrate (Si)-synthase	0.0494637579
+UniRef50_UPI00041FC02E: citrate (Si)-synthase|unclassified	0.0494637579
+UniRef50_UPI0003790968: hypothetical protein	0.0494503124
+UniRef50_UPI0003790968: hypothetical protein|unclassified	0.0494503124
+UniRef50_UPI000255974B: oxidoreductase	0.0494453155
+UniRef50_UPI000255974B: oxidoreductase|unclassified	0.0494453155
+UniRef50_UPI000464DA5F: ABC transporter	0.0494446511
+UniRef50_UPI000464DA5F: ABC transporter|unclassified	0.0494446511
+UniRef50_UPI0004676223: hypothetical protein	0.0494445759
+UniRef50_UPI0004676223: hypothetical protein|unclassified	0.0494445759
+UniRef50_B7VGQ9: Cytochrome C biogenesis protein	0.0494408873
+UniRef50_B7VGQ9: Cytochrome C biogenesis protein|unclassified	0.0494408873
+UniRef50_H0U6A9	0.0494401368
+UniRef50_H0U6A9|unclassified	0.0494401368
+UniRef50_Q8TVX4	0.0494346790
+UniRef50_Q8TVX4|unclassified	0.0494346790
+UniRef50_UPI0003F08CAB: PREDICTED: cationic amino acid transporter 4-like	0.0494339183
+UniRef50_UPI0003F08CAB: PREDICTED: cationic amino acid transporter 4-like|unclassified	0.0494339183
+UniRef50_Q6MQ94: D-alanine--D-alanine ligase	0.0494307017
+UniRef50_Q6MQ94: D-alanine--D-alanine ligase|unclassified	0.0494307017
+UniRef50_UPI0004710E59: hypothetical protein	0.0494279886
+UniRef50_UPI0004710E59: hypothetical protein|unclassified	0.0494279886
+UniRef50_UPI0003667138: hypothetical protein	0.0494279034
+UniRef50_UPI0003667138: hypothetical protein|unclassified	0.0494279034
+UniRef50_B8GSM7: Cupin 4 family protein	0.0494276390
+UniRef50_B8GSM7: Cupin 4 family protein|unclassified	0.0494276390
+UniRef50_Q6FKH7: FK506-binding protein 3	0.0494249648
+UniRef50_Q6FKH7: FK506-binding protein 3|unclassified	0.0494249648
+UniRef50_UPI0003640B6F: hypothetical protein	0.0494236579
+UniRef50_UPI0003640B6F: hypothetical protein|unclassified	0.0494236579
+UniRef50_UPI00035D1AE6: hypothetical protein	0.0494181463
+UniRef50_UPI00035D1AE6: hypothetical protein|unclassified	0.0494181463
+UniRef50_UPI0002377C07: hypothetical protein	0.0494157533
+UniRef50_UPI0002377C07: hypothetical protein|unclassified	0.0494157533
+UniRef50_UPI00047C28A2: 3,4-dihydroxy-2-butanone 4-phosphate synthase	0.0494150794
+UniRef50_UPI00047C28A2: 3,4-dihydroxy-2-butanone 4-phosphate synthase|unclassified	0.0494150794
+UniRef50_E2XUF2	0.0494142793
+UniRef50_E2XUF2|unclassified	0.0494142793
+UniRef50_G0QW32	0.0494130622
+UniRef50_G0QW32|unclassified	0.0494130622
+UniRef50_UPI0002EC4132: hypothetical protein	0.0494102722
+UniRef50_UPI0002EC4132: hypothetical protein|unclassified	0.0494102722
+UniRef50_F0PIB5: Replication-associated protein RepA	0.0494060707
+UniRef50_F0PIB5: Replication-associated protein RepA|unclassified	0.0494060707
+UniRef50_Q92Q90: Bifunctional enzyme IspD/IspF	0.0493890252
+UniRef50_Q92Q90: Bifunctional enzyme IspD/IspF|unclassified	0.0493890252
+UniRef50_UPI000366DF34: hypothetical protein	0.0493857548
+UniRef50_UPI000366DF34: hypothetical protein|unclassified	0.0493857548
+UniRef50_UPI000237B0FC: DEAD/DEAH box helicase domain protein	0.0493833078
+UniRef50_UPI000237B0FC: DEAD/DEAH box helicase domain protein|unclassified	0.0493833078
+UniRef50_UPI0003624E90: hypothetical protein	0.0493796314
+UniRef50_UPI0003624E90: hypothetical protein|unclassified	0.0493796314
+UniRef50_Q89AV3: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical	0.0493751350
+UniRef50_Q89AV3: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical|unclassified	0.0493751350
+UniRef50_K3WGR2	0.0493727227
+UniRef50_K3WGR2|unclassified	0.0493727227
+UniRef50_A3SKY7	0.0493713509
+UniRef50_A3SKY7|unclassified	0.0493713509
+UniRef50_UPI00035F3260: hypothetical protein, partial	0.0493652437
+UniRef50_UPI00035F3260: hypothetical protein, partial|unclassified	0.0493652437
+UniRef50_B9L173: NADH-quinone oxidoreductase subunit H	0.0493639211
+UniRef50_B9L173: NADH-quinone oxidoreductase subunit H|unclassified	0.0493639211
+UniRef50_C4XSD3: tRNA N6-adenosine threonylcarbamoyltransferase	0.0493624737
+UniRef50_C4XSD3: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.0493624737
+UniRef50_A6H0L5: Dihydroorotate dehydrogenase (quinone)	0.0493572819
+UniRef50_A6H0L5: Dihydroorotate dehydrogenase (quinone)|unclassified	0.0493572819
+UniRef50_UPI00037F02AF: hypothetical protein	0.0493547932
+UniRef50_UPI00037F02AF: hypothetical protein|unclassified	0.0493547932
+UniRef50_UPI0003B4AD38: chemotaxis protein CheA	0.0493540896
+UniRef50_UPI0003B4AD38: chemotaxis protein CheA|unclassified	0.0493540896
+UniRef50_G5K4C6: Putative membrane protein	0.0493502408
+UniRef50_G5K4C6: Putative membrane protein|unclassified	0.0493502408
+UniRef50_B6J386: Ferrochelatase	0.0493449448
+UniRef50_B6J386: Ferrochelatase|unclassified	0.0493449448
+UniRef50_J9DF35	0.0493383879
+UniRef50_J9DF35|unclassified	0.0493383879
+UniRef50_Q46BU1	0.0493357048
+UniRef50_Q46BU1|unclassified	0.0493357048
+UniRef50_UPI00047E14BB: alpha-amylase	0.0493347753
+UniRef50_UPI00047E14BB: alpha-amylase|unclassified	0.0493347753
+UniRef50_UPI00042062D8: hypothetical protein	0.0493272269
+UniRef50_UPI00042062D8: hypothetical protein|unclassified	0.0493272269
+UniRef50_Q99132: Extracellular metalloprotease	0.0493268870
+UniRef50_Q99132: Extracellular metalloprotease|unclassified	0.0493268870
+UniRef50_UPI0004073012: hypothetical protein	0.0493241446
+UniRef50_UPI0004073012: hypothetical protein|unclassified	0.0493241446
+UniRef50_UPI000470041D: peptidase M4	0.0493227681
+UniRef50_UPI000470041D: peptidase M4|unclassified	0.0493227681
+UniRef50_Q1AT13: Lipoyl synthase	0.0493223147
+UniRef50_Q1AT13: Lipoyl synthase|unclassified	0.0493223147
+UniRef50_UPI0002485E8C: glutamyl-tRNA(Gln) amidotransferase subunit A	0.0493206202
+UniRef50_UPI0002485E8C: glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.0493206202
+UniRef50_UPI0003646BF1: hypothetical protein	0.0493167209
+UniRef50_UPI0003646BF1: hypothetical protein|unclassified	0.0493167209
+UniRef50_UPI0003B6109E: imidazole glycerol phosphate synthase	0.0493064402
+UniRef50_UPI0003B6109E: imidazole glycerol phosphate synthase|unclassified	0.0493064402
+UniRef50_N6YK78	0.0493052879
+UniRef50_N6YK78|unclassified	0.0493052879
+UniRef50_K4A616	0.0493041926
+UniRef50_K4A616|unclassified	0.0493041926
+UniRef50_UPI0004703569: hypothetical protein	0.0493016235
+UniRef50_UPI0004703569: hypothetical protein|unclassified	0.0493016235
+UniRef50_F7YI19	0.0492972472
+UniRef50_F7YI19|unclassified	0.0492972472
+UniRef50_Q5UZ46: Argininosuccinate synthase	0.0492923152
+UniRef50_Q5UZ46: Argininosuccinate synthase|unclassified	0.0492923152
+UniRef50_Q88RR3: Ribosomal RNA small subunit methyltransferase B	0.0492909161
+UniRef50_Q88RR3: Ribosomal RNA small subunit methyltransferase B|unclassified	0.0492909161
+UniRef50_G5E7Z2	0.0492903403
+UniRef50_G5E7Z2|unclassified	0.0492903403
+UniRef50_UPI00046F8886: hypothetical protein	0.0492859373
+UniRef50_UPI00046F8886: hypothetical protein|unclassified	0.0492859373
+UniRef50_U5GRH6	0.0492847714
+UniRef50_U5GRH6|unclassified	0.0492847714
+UniRef50_G2DG54	0.0492817917
+UniRef50_G2DG54|unclassified	0.0492817917
+UniRef50_U3KK22	0.0492802350
+UniRef50_U3KK22|unclassified	0.0492802350
+UniRef50_UPI00036B9BF8: hypothetical protein	0.0492768552
+UniRef50_UPI00036B9BF8: hypothetical protein|unclassified	0.0492768552
+UniRef50_UPI0003B310D0: cysteine desulfurase	0.0492706189
+UniRef50_UPI0003B310D0: cysteine desulfurase|unclassified	0.0492706189
+UniRef50_F9XNH0	0.0492680286
+UniRef50_F9XNH0|unclassified	0.0492680286
+UniRef50_I8UHN1	0.0492571469
+UniRef50_I8UHN1|unclassified	0.0492571469
+UniRef50_UPI000375DB18: hypothetical protein	0.0492564352
+UniRef50_UPI000375DB18: hypothetical protein|unclassified	0.0492564352
+UniRef50_H3NHQ4	0.0492511306
+UniRef50_H3NHQ4|unclassified	0.0492511306
+UniRef50_UPI0003615B9B: hypothetical protein	0.0492464949
+UniRef50_UPI0003615B9B: hypothetical protein|unclassified	0.0492464949
+UniRef50_R5T312: Relaxase/Mobilization nuclease domain protein	0.0492427911
+UniRef50_R5T312: Relaxase/Mobilization nuclease domain protein|unclassified	0.0492427911
+UniRef50_W4RRE5: Mobile element protein	0.0492401110
+UniRef50_W4RRE5: Mobile element protein|unclassified	0.0492401110
+UniRef50_B3DR79: tRNA dimethylallyltransferase	0.0492346994
+UniRef50_B3DR79: tRNA dimethylallyltransferase|unclassified	0.0492346994
+UniRef50_UPI0004700C7A: hypothetical protein, partial	0.0492314366
+UniRef50_UPI0004700C7A: hypothetical protein, partial|unclassified	0.0492314366
+UniRef50_G4TLA3	0.0492299373
+UniRef50_G4TLA3|unclassified	0.0492299373
+UniRef50_UPI00047437D2: hypothetical protein	0.0492257856
+UniRef50_UPI00047437D2: hypothetical protein|unclassified	0.0492257856
+UniRef50_UPI0004012D2A: molecular chaperone DnaJ	0.0492248118
+UniRef50_UPI0004012D2A: molecular chaperone DnaJ|unclassified	0.0492248118
+UniRef50_UPI00037C5312: hypothetical protein	0.0492160383
+UniRef50_UPI00037C5312: hypothetical protein|unclassified	0.0492160383
+UniRef50_UPI0004755954: hypothetical protein	0.0492115532
+UniRef50_UPI0004755954: hypothetical protein|unclassified	0.0492115532
+UniRef50_UPI00036A3400: hypothetical protein	0.0492105633
+UniRef50_UPI00036A3400: hypothetical protein|unclassified	0.0492105633
+UniRef50_UPI00040EBCB7: acetolactate synthase	0.0492104987
+UniRef50_UPI00040EBCB7: acetolactate synthase|unclassified	0.0492104987
+UniRef50_UPI00045460DE: PREDICTED: probable asparagine--tRNA ligase, mitochondrial	0.0492096983
+UniRef50_UPI00045460DE: PREDICTED: probable asparagine--tRNA ligase, mitochondrial|unclassified	0.0492096983
+UniRef50_C0Z769: NADH-quinone oxidoreductase subunit H	0.0492087156
+UniRef50_C0Z769: NADH-quinone oxidoreductase subunit H|unclassified	0.0492087156
+UniRef50_D6DR16: Predicted membrane protein	0.0492080039
+UniRef50_D6DR16: Predicted membrane protein|unclassified	0.0492080039
+UniRef50_UPI00047EBFBD: short-chain dehydrogenase	0.0492059588
+UniRef50_UPI00047EBFBD: short-chain dehydrogenase|unclassified	0.0492059588
+UniRef50_G8PSY8: Protein containing DUF140	0.0492056260
+UniRef50_G8PSY8: Protein containing DUF140|unclassified	0.0492056260
+UniRef50_UPI0003EF1223: hypothetical protein	0.0491989462
+UniRef50_UPI0003EF1223: hypothetical protein|unclassified	0.0491989462
+UniRef50_UPI0004681179: hypothetical protein	0.0491987667
+UniRef50_UPI0004681179: hypothetical protein|unclassified	0.0491987667
+UniRef50_UPI000365E56D: hypothetical protein	0.0491971549
+UniRef50_UPI000365E56D: hypothetical protein|unclassified	0.0491971549
+UniRef50_J8RZV3: SpoVR family protein	0.0491946784
+UniRef50_J8RZV3: SpoVR family protein|unclassified	0.0491946784
+UniRef50_UPI00047027DE: hypothetical protein	0.0491879494
+UniRef50_UPI00047027DE: hypothetical protein|unclassified	0.0491879494
+UniRef50_UPI00046849D4: hypothetical protein	0.0491876468
+UniRef50_UPI00046849D4: hypothetical protein|unclassified	0.0491876468
+UniRef50_F3WZJ5: Pyridoxal-phosphate dependent enzyme family protein	0.0491849648
+UniRef50_F3WZJ5: Pyridoxal-phosphate dependent enzyme family protein|unclassified	0.0491849648
+UniRef50_C4K0T2: Queuine tRNA-ribosyltransferase	0.0491839753
+UniRef50_C4K0T2: Queuine tRNA-ribosyltransferase|unclassified	0.0491839753
+UniRef50_Q68W26: Queuine tRNA-ribosyltransferase	0.0491839753
+UniRef50_Q68W26: Queuine tRNA-ribosyltransferase|unclassified	0.0491839753
+UniRef50_UPI00036197D2: hypothetical protein	0.0491809840
+UniRef50_UPI00036197D2: hypothetical protein|unclassified	0.0491809840
+UniRef50_A5F7Z0	0.0491663344
+UniRef50_A5F7Z0|unclassified	0.0491663344
+UniRef50_UPI0003623B3B: hypothetical protein	0.0491653478
+UniRef50_UPI0003623B3B: hypothetical protein|unclassified	0.0491653478
+UniRef50_A6NC17: Methionine--tRNA ligase, cytoplasmic	0.0491649977
+UniRef50_A6NC17: Methionine--tRNA ligase, cytoplasmic|unclassified	0.0491649977
+UniRef50_UPI00035D4FA6: hypothetical protein	0.0491638501
+UniRef50_UPI00035D4FA6: hypothetical protein|unclassified	0.0491638501
+UniRef50_UPI00034566D0: hypothetical protein	0.0491623797
+UniRef50_UPI00034566D0: hypothetical protein|unclassified	0.0491623797
+UniRef50_UPI000362E5FB: recombinase	0.0491616819
+UniRef50_UPI000362E5FB: recombinase|unclassified	0.0491616819
+UniRef50_UPI000473158B: cytidylate kinase, partial	0.0491568849
+UniRef50_UPI000473158B: cytidylate kinase, partial|unclassified	0.0491568849
+UniRef50_UPI00046735F8: methionine gamma-lyase, partial	0.0491551848
+UniRef50_UPI00046735F8: methionine gamma-lyase, partial|unclassified	0.0491551848
+UniRef50_UPI00040D902E: CDP-diacylglycerol pyrophosphatase	0.0491542249
+UniRef50_UPI00040D902E: CDP-diacylglycerol pyrophosphatase|unclassified	0.0491542249
+UniRef50_E4PS44	0.0491498129
+UniRef50_E4PS44|unclassified	0.0491498129
+UniRef50_U2ZGN6: Exopolysaccharide synthesis protein exoD-related protein	0.0491491084
+UniRef50_U2ZGN6: Exopolysaccharide synthesis protein exoD-related protein|unclassified	0.0491491084
+UniRef50_F5XQT8: LytR family regulatory protein	0.0491485976
+UniRef50_F5XQT8: LytR family regulatory protein|unclassified	0.0491485976
+UniRef50_B8J7M5: FHA domain containing protein	0.0491474575
+UniRef50_B8J7M5: FHA domain containing protein|unclassified	0.0491474575
+UniRef50_UPI0003B5537A: alpha-amylase	0.0491459441
+UniRef50_UPI0003B5537A: alpha-amylase|unclassified	0.0491459441
+UniRef50_UPI0003EC1EA9: PREDICTED: GTP-binding protein 8-like	0.0491457780
+UniRef50_UPI0003EC1EA9: PREDICTED: GTP-binding protein 8-like|unclassified	0.0491457780
+UniRef50_E2XTA5	0.0491454078
+UniRef50_E2XTA5|unclassified	0.0491454078
+UniRef50_X5I6I9	0.0491398687
+UniRef50_X5I6I9|unclassified	0.0491398687
+UniRef50_UPI0003B761F6: peptidase S8	0.0491362887
+UniRef50_UPI0003B761F6: peptidase S8|unclassified	0.0491362887
+UniRef50_U1G813	0.0491343044
+UniRef50_U1G813|unclassified	0.0491343044
+UniRef50_UPI00036916F3: hypothetical protein	0.0491337064
+UniRef50_UPI00036916F3: hypothetical protein|unclassified	0.0491337064
+UniRef50_Q8RXU4: Probable low-specificity L-threonine aldolase 1	0.0491336740
+UniRef50_Q8RXU4: Probable low-specificity L-threonine aldolase 1|unclassified	0.0491336740
+UniRef50_UPI000478AA74: FAD-dependent oxidoreductase	0.0491335141
+UniRef50_UPI000478AA74: FAD-dependent oxidoreductase|unclassified	0.0491335141
+UniRef50_A5ICZ9: 27 kDa outer membrane protein	0.0491247197
+UniRef50_A5ICZ9: 27 kDa outer membrane protein|unclassified	0.0491247197
+UniRef50_UPI00046A3E00: PTS beta-glucoside transporter subunit IIABC	0.0491201238
+UniRef50_UPI00046A3E00: PTS beta-glucoside transporter subunit IIABC|unclassified	0.0491201238
+UniRef50_C6WNS4: Cell envelope-related transcriptional attenuator	0.0491166588
+UniRef50_C6WNS4: Cell envelope-related transcriptional attenuator|unclassified	0.0491166588
+UniRef50_C7R979: Extracellular solute-binding protein family 1	0.0491143654
+UniRef50_C7R979: Extracellular solute-binding protein family 1|unclassified	0.0491143654
+UniRef50_E1ZJG4	0.0491114266
+UniRef50_E1ZJG4|unclassified	0.0491114266
+UniRef50_UPI0004168075: altronate oxidoreductase	0.0491101061
+UniRef50_UPI0004168075: altronate oxidoreductase|unclassified	0.0491101061
+UniRef50_J9SGG8: Transcriptional regulator	0.0491091190
+UniRef50_J9SGG8: Transcriptional regulator|unclassified	0.0491091190
+UniRef50_UPI0003B4BDBC: ammonia channel protein, partial	0.0491031348
+UniRef50_UPI0003B4BDBC: ammonia channel protein, partial|unclassified	0.0491031348
+UniRef50_UPI000368E090: hypothetical protein, partial	0.0491007584
+UniRef50_UPI000368E090: hypothetical protein, partial|unclassified	0.0491007584
+UniRef50_UPI0003B4D24A: MFS transporter	0.0491007196
+UniRef50_UPI0003B4D24A: MFS transporter|unclassified	0.0491007196
+UniRef50_UPI00047CE7FB: hypothetical protein	0.0490953105
+UniRef50_UPI00047CE7FB: hypothetical protein|unclassified	0.0490953105
+UniRef50_A0A024JD96: Similar to Saccharomyces cerevisiae YLR069C MEF1 Mitochondrial elongation factor involved in translational elongation	0.0490901840
+UniRef50_A0A024JD96: Similar to Saccharomyces cerevisiae YLR069C MEF1 Mitochondrial elongation factor involved in translational elongation|unclassified	0.0490901840
+UniRef50_B8DP86: Ribosomal RNA small subunit methyltransferase H	0.0490859337
+UniRef50_B8DP86: Ribosomal RNA small subunit methyltransferase H|unclassified	0.0490859337
+UniRef50_E7B161: Long-chain fatty acid transport protein	0.0490798320
+UniRef50_E7B161: Long-chain fatty acid transport protein|unclassified	0.0490798320
+UniRef50_UPI00040E49FB: LysR family transcriptional regulator	0.0490723799
+UniRef50_UPI00040E49FB: LysR family transcriptional regulator|unclassified	0.0490723799
+UniRef50_UPI00022CAA7E: PREDICTED: USG-1 protein-like	0.0490707525
+UniRef50_UPI00022CAA7E: PREDICTED: USG-1 protein-like|unclassified	0.0490707525
+UniRef50_M1IB67	0.0490703849
+UniRef50_M1IB67|unclassified	0.0490703849
+UniRef50_UPI000371C10A: MULTISPECIES: hypothetical protein	0.0490691069
+UniRef50_UPI000371C10A: MULTISPECIES: hypothetical protein|unclassified	0.0490691069
+UniRef50_E8UAJ5: Amine oxidase	0.0490672680
+UniRef50_E8UAJ5: Amine oxidase|unclassified	0.0490672680
+UniRef50_UPI000371D128: hypothetical protein	0.0490590250
+UniRef50_UPI000371D128: hypothetical protein|unclassified	0.0490590250
+UniRef50_Q6LWM9: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	0.0490582239
+UniRef50_Q6LWM9: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|unclassified	0.0490582239
+UniRef50_UPI0004637A41: protoheme IX farnesyltransferase, partial	0.0490549754
+UniRef50_UPI0004637A41: protoheme IX farnesyltransferase, partial|unclassified	0.0490549754
+UniRef50_UPI000463F5D2: transketolase, partial	0.0490543183
+UniRef50_UPI000463F5D2: transketolase, partial|unclassified	0.0490543183
+UniRef50_UPI000470C007: hypothetical protein	0.0490531336
+UniRef50_UPI000470C007: hypothetical protein|unclassified	0.0490531336
+UniRef50_UPI00036EEFE6: hypothetical protein	0.0490502326
+UniRef50_UPI00036EEFE6: hypothetical protein|unclassified	0.0490502326
+UniRef50_T0T8C4	0.0490466395
+UniRef50_T0T8C4|unclassified	0.0490466395
+UniRef50_U6GIQ6	0.0490449897
+UniRef50_U6GIQ6|unclassified	0.0490449897
+UniRef50_Q83MN8: Chromosome partitioning protein ParA	0.0490435126
+UniRef50_Q83MN8: Chromosome partitioning protein ParA|unclassified	0.0490435126
+UniRef50_UPI00037D808D: hypothetical protein	0.0490424223
+UniRef50_UPI00037D808D: hypothetical protein|unclassified	0.0490424223
+UniRef50_A7EM78: ATP-dependent RNA helicase dbp9	0.0490405260
+UniRef50_A7EM78: ATP-dependent RNA helicase dbp9|unclassified	0.0490405260
+UniRef50_UPI00037362D1: hypothetical protein	0.0490360333
+UniRef50_UPI00037362D1: hypothetical protein|unclassified	0.0490360333
+UniRef50_UPI00047548C2: CDP-glucose 4,6-dehydratase	0.0490295879
+UniRef50_UPI00047548C2: CDP-glucose 4,6-dehydratase|unclassified	0.0490295879
+UniRef50_G5JPR3	0.0490272338
+UniRef50_G5JPR3|unclassified	0.0490272338
+UniRef50_A0A011MYZ2: Teichoic acids export ATP-binding protein TagH	0.0490186613
+UniRef50_A0A011MYZ2: Teichoic acids export ATP-binding protein TagH|unclassified	0.0490186613
+UniRef50_M5U388	0.0490180372
+UniRef50_M5U388|unclassified	0.0490180372
+UniRef50_P63874: O-phosphoserine sulfhydrylase	0.0490086215
+UniRef50_P63874: O-phosphoserine sulfhydrylase|unclassified	0.0490086215
+UniRef50_Q2NYV5: Diaminopimelate epimerase	0.0490052493
+UniRef50_Q2NYV5: Diaminopimelate epimerase|unclassified	0.0490052493
+UniRef50_F3A4A8	0.0490037497
+UniRef50_F3A4A8|unclassified	0.0490037497
+UniRef50_Q16CW3: tRNA N6-adenosine threonylcarbamoyltransferase	0.0490013598
+UniRef50_Q16CW3: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.0490013598
+UniRef50_UPI000371250E: hypothetical protein	0.0490004658
+UniRef50_UPI000371250E: hypothetical protein|unclassified	0.0490004658
+UniRef50_P73821: D-3-phosphoglycerate dehydrogenase	0.0489957368
+UniRef50_P73821: D-3-phosphoglycerate dehydrogenase|unclassified	0.0489957368
+UniRef50_UPI0004652D96: hypothetical protein, partial	0.0489897510
+UniRef50_UPI0004652D96: hypothetical protein, partial|unclassified	0.0489897510
+UniRef50_UPI00046E960A: lactate dehydrogenase	0.0489893714
+UniRef50_UPI00046E960A: lactate dehydrogenase|unclassified	0.0489893714
+UniRef50_UPI00029AFE54: RNA-directed DNA polymerase	0.0489853587
+UniRef50_UPI00029AFE54: RNA-directed DNA polymerase|unclassified	0.0489853587
+UniRef50_A0A024ELQ0	0.0489807587
+UniRef50_A0A024ELQ0|unclassified	0.0489807587
+UniRef50_UPI000464D5F8: quercetin 2,3-dioxygenase	0.0489778925
+UniRef50_UPI000464D5F8: quercetin 2,3-dioxygenase|unclassified	0.0489778925
+UniRef50_D8JZ91: Beta-lactamase domain-containing protein	0.0489718162
+UniRef50_D8JZ91: Beta-lactamase domain-containing protein|unclassified	0.0489718162
+UniRef50_UPI0004106AB8: hypothetical protein	0.0489667039
+UniRef50_UPI0004106AB8: hypothetical protein|unclassified	0.0489667039
+UniRef50_E3ZD38: Internalin A (Fragment)	0.0489650217
+UniRef50_E3ZD38: Internalin A (Fragment)|unclassified	0.0489650217
+UniRef50_B3ETW5: Leucine--tRNA ligase	0.0489649039
+UniRef50_B3ETW5: Leucine--tRNA ligase|unclassified	0.0489649039
+UniRef50_UPI00041C29D4: acyl-CoA dehydrogenase	0.0489609907
+UniRef50_UPI00041C29D4: acyl-CoA dehydrogenase|unclassified	0.0489609907
+UniRef50_P44788: Ribosomal RNA small subunit methyltransferase B	0.0489563380
+UniRef50_P44788: Ribosomal RNA small subunit methyltransferase B|unclassified	0.0489563380
+UniRef50_UPI00035C67ED: hypothetical protein	0.0489499791
+UniRef50_UPI00035C67ED: hypothetical protein|unclassified	0.0489499791
+UniRef50_UPI0002886A38: peptidase M22 glycoprotease	0.0489499235
+UniRef50_UPI0002886A38: peptidase M22 glycoprotease|unclassified	0.0489499235
+UniRef50_C0B1M5	0.0489446415
+UniRef50_C0B1M5|unclassified	0.0489446415
+UniRef50_S3AZ04	0.0489435904
+UniRef50_S3AZ04|unclassified	0.0489435904
+UniRef50_E8RZD4	0.0489421142
+UniRef50_E8RZD4|unclassified	0.0489421142
+UniRef50_W3VSJ5	0.0489418439
+UniRef50_W3VSJ5|unclassified	0.0489418439
+UniRef50_UPI000374BC49: hypothetical protein	0.0489291875
+UniRef50_UPI000374BC49: hypothetical protein|unclassified	0.0489291875
+UniRef50_UPI0003807394: DNA recombinase	0.0489278530
+UniRef50_UPI0003807394: DNA recombinase|unclassified	0.0489278530
+UniRef50_Q8G4C1: Possible TraG-related protein	0.0489270553
+UniRef50_Q8G4C1: Possible TraG-related protein|unclassified	0.0489270553
+UniRef50_UPI000375B204: hypothetical protein	0.0489258412
+UniRef50_UPI000375B204: hypothetical protein|unclassified	0.0489258412
+UniRef50_UPI0003B3CF72: histidine kinase	0.0489246575
+UniRef50_UPI0003B3CF72: histidine kinase|unclassified	0.0489246575
+UniRef50_UPI00046FA64C: RNA helicase, partial	0.0489216779
+UniRef50_UPI00046FA64C: RNA helicase, partial|unclassified	0.0489216779
+UniRef50_UPI00035CACC7: hypothetical protein	0.0489203402
+UniRef50_UPI00035CACC7: hypothetical protein|unclassified	0.0489203402
+UniRef50_UPI00047E7701: Clp protease ClpX	0.0489190129
+UniRef50_UPI00047E7701: Clp protease ClpX|unclassified	0.0489190129
+UniRef50_E1NHT7: Relaxase/mobilization nuclease domain protein	0.0489179005
+UniRef50_E1NHT7: Relaxase/mobilization nuclease domain protein|unclassified	0.0489179005
+UniRef50_UPI0003F066F6: PREDICTED: LOW QUALITY PROTEIN: multidrug resistance protein 2-like	0.0489085768
+UniRef50_UPI0003F066F6: PREDICTED: LOW QUALITY PROTEIN: multidrug resistance protein 2-like|unclassified	0.0489085768
+UniRef50_UPI0003628CFF: hypothetical protein	0.0489081111
+UniRef50_UPI0003628CFF: hypothetical protein|unclassified	0.0489081111
+UniRef50_E6VT00: Periplasmic phosphate binding protein	0.0488937798
+UniRef50_E6VT00: Periplasmic phosphate binding protein|unclassified	0.0488937798
+UniRef50_UPI00036618C9: hypothetical protein	0.0488790880
+UniRef50_UPI00036618C9: hypothetical protein|unclassified	0.0488790880
+UniRef50_UPI0003B7481C: glycosyltransferase family 1	0.0488765517
+UniRef50_UPI0003B7481C: glycosyltransferase family 1|unclassified	0.0488765517
+UniRef50_UPI000360D9DF: hypothetical protein	0.0488754018
+UniRef50_UPI000360D9DF: hypothetical protein|unclassified	0.0488754018
+UniRef50_Q39MI8: Putative integral membrane sensor protein	0.0488737809
+UniRef50_Q39MI8: Putative integral membrane sensor protein|unclassified	0.0488737809
+UniRef50_UPI000349F790: hypothetical protein	0.0488735711
+UniRef50_UPI000349F790: hypothetical protein|unclassified	0.0488735711
+UniRef50_A0A016TVG0	0.0488724774
+UniRef50_A0A016TVG0|unclassified	0.0488724774
+UniRef50_W8S6H0: Putative peptidoglycan-binding protein domain protein-containing protein	0.0488698856
+UniRef50_W8S6H0: Putative peptidoglycan-binding protein domain protein-containing protein|unclassified	0.0488698856
+UniRef50_UPI0004709DF2: hypothetical protein, partial	0.0488688064
+UniRef50_UPI0004709DF2: hypothetical protein, partial|unclassified	0.0488688064
+UniRef50_UPI00037E35E9: hypothetical protein	0.0488664585
+UniRef50_UPI00037E35E9: hypothetical protein|unclassified	0.0488664585
+UniRef50_Q6MHT3: Ferrochelatase	0.0488641333
+UniRef50_Q6MHT3: Ferrochelatase|unclassified	0.0488641333
+UniRef50_UPI000464AD23: hypothetical protein	0.0488620672
+UniRef50_UPI000464AD23: hypothetical protein|unclassified	0.0488620672
+UniRef50_UPI00046F8562: hypothetical protein, partial	0.0488560358
+UniRef50_UPI00046F8562: hypothetical protein, partial|unclassified	0.0488560358
+UniRef50_D4VUV4: Fibronectin-binding A, N-terminal domain protein	0.0488517485
+UniRef50_D4VUV4: Fibronectin-binding A, N-terminal domain protein|unclassified	0.0488517485
+UniRef50_Q3JXL3	0.0488506789
+UniRef50_Q3JXL3|unclassified	0.0488506789
+UniRef50_C3X1Y4	0.0488491878
+UniRef50_C3X1Y4|unclassified	0.0488491878
+UniRef50_Q73JN2: D-alanine--D-alanine ligase	0.0488487568
+UniRef50_Q73JN2: D-alanine--D-alanine ligase|unclassified	0.0488487568
+UniRef50_UPI00022608ED: ferredoxin	0.0488463073
+UniRef50_UPI00022608ED: ferredoxin|unclassified	0.0488463073
+UniRef50_A9BJH4: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit	0.0488455005
+UniRef50_A9BJH4: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit|unclassified	0.0488455005
+UniRef50_UPI00036CBB02: hypothetical protein	0.0488409507
+UniRef50_UPI00036CBB02: hypothetical protein|unclassified	0.0488409507
+UniRef50_B2VJC1: tRNA (mo5U34)-methyltransferase	0.0488387682
+UniRef50_B2VJC1: tRNA (mo5U34)-methyltransferase|unclassified	0.0488387682
+UniRef50_UPI0003C740F0: hypothetical protein	0.0488365217
+UniRef50_UPI0003C740F0: hypothetical protein|unclassified	0.0488365217
+UniRef50_A0A022L535	0.0488362827
+UniRef50_A0A022L535|unclassified	0.0488362827
+UniRef50_UPI0003B6B4AE: allantoate amidohydrolase	0.0488227340
+UniRef50_UPI0003B6B4AE: allantoate amidohydrolase|unclassified	0.0488227340
+UniRef50_Q5ZV19: tRNA pseudouridine synthase D	0.0488187344
+UniRef50_Q5ZV19: tRNA pseudouridine synthase D|unclassified	0.0488187344
+UniRef50_H3CH15	0.0488159252
+UniRef50_H3CH15|unclassified	0.0488159252
+UniRef50_A3VEM1: Putative Flp pilus assembly protein TadC	0.0488159027
+UniRef50_A3VEM1: Putative Flp pilus assembly protein TadC|unclassified	0.0488159027
+UniRef50_UPI00026C726F: cell division protein FtsZ	0.0488074389
+UniRef50_UPI00026C726F: cell division protein FtsZ|unclassified	0.0488074389
+UniRef50_Q6AEB4: NAD dependent epimerase/dehydratase	0.0488068591
+UniRef50_Q6AEB4: NAD dependent epimerase/dehydratase|unclassified	0.0488068591
+UniRef50_S9QQP6: Glycine oxidase ThiO	0.0488049997
+UniRef50_S9QQP6: Glycine oxidase ThiO|unclassified	0.0488049997
+UniRef50_R1BA52	0.0488036864
+UniRef50_R1BA52|unclassified	0.0488036864
+UniRef50_UPI0003B63E94: ABC transporter ATP-binding protein, partial	0.0488008480
+UniRef50_UPI0003B63E94: ABC transporter ATP-binding protein, partial|unclassified	0.0488008480
+UniRef50_P12782: Phosphoglycerate kinase, chloroplastic	0.0488007719
+UniRef50_P12782: Phosphoglycerate kinase, chloroplastic|unclassified	0.0488007719
+UniRef50_UPI000369765D: hypothetical protein	0.0487930812
+UniRef50_UPI000369765D: hypothetical protein|unclassified	0.0487930812
+UniRef50_Q1C824: tRNA (mo5U34)-methyltransferase	0.0487867059
+UniRef50_Q1C824: tRNA (mo5U34)-methyltransferase|unclassified	0.0487867059
+UniRef50_UPI000370658C: hypothetical protein	0.0487853231
+UniRef50_UPI000370658C: hypothetical protein|unclassified	0.0487853231
+UniRef50_UPI00035E0303: hypothetical protein	0.0487849810
+UniRef50_UPI00035E0303: hypothetical protein|unclassified	0.0487849810
+UniRef50_UPI000465C260: MULTISPECIES: hypothetical protein	0.0487798273
+UniRef50_UPI000465C260: MULTISPECIES: hypothetical protein|unclassified	0.0487798273
+UniRef50_I5ARY1: Response regulator containing a CheY-like receiver domain and an HD-GYP domain	0.0487759369
+UniRef50_I5ARY1: Response regulator containing a CheY-like receiver domain and an HD-GYP domain|unclassified	0.0487759369
+UniRef50_Q67R59: Formamidopyrimidine-DNA glycosylase	0.0487737359
+UniRef50_Q67R59: Formamidopyrimidine-DNA glycosylase|unclassified	0.0487737359
+UniRef50_UPI00037A033B: hypothetical protein	0.0487681506
+UniRef50_UPI00037A033B: hypothetical protein|unclassified	0.0487681506
+UniRef50_UPI0004659157: LysR family transcriptional regulator	0.0487649384
+UniRef50_UPI0004659157: LysR family transcriptional regulator|unclassified	0.0487649384
+UniRef50_K0VKV2	0.0487643672
+UniRef50_K0VKV2|unclassified	0.0487643672
+UniRef50_UPI000350BCA6: PREDICTED: COBRA-like protein 7-like	0.0487632557
+UniRef50_UPI000350BCA6: PREDICTED: COBRA-like protein 7-like|unclassified	0.0487632557
+UniRef50_UPI0003B36CD8: metal-dependent hydrolase	0.0487584465
+UniRef50_UPI0003B36CD8: metal-dependent hydrolase|unclassified	0.0487584465
+UniRef50_P23234: Indole-3-pyruvate decarboxylase	0.0487559313
+UniRef50_P23234: Indole-3-pyruvate decarboxylase|unclassified	0.0487559313
+UniRef50_UPI000467EA26: LysR family transcriptional regulator	0.0487544213
+UniRef50_UPI000467EA26: LysR family transcriptional regulator|unclassified	0.0487544213
+UniRef50_UPI0003719A21: hypothetical protein	0.0487464659
+UniRef50_UPI0003719A21: hypothetical protein|unclassified	0.0487464659
+UniRef50_Q2JQU4: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	0.0487449606
+UniRef50_Q2JQU4: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.0487449606
+UniRef50_C0QTG9: tRNA N6-adenosine threonylcarbamoyltransferase	0.0487377384
+UniRef50_C0QTG9: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.0487377384
+UniRef50_UPI0004100199: alpha/beta hydrolase	0.0487262545
+UniRef50_UPI0004100199: alpha/beta hydrolase|unclassified	0.0487262545
+UniRef50_B4L348: GI15483	0.0487243679
+UniRef50_B4L348: GI15483|unclassified	0.0487243679
+UniRef50_UPI00037BB092: hypothetical protein	0.0487239307
+UniRef50_UPI00037BB092: hypothetical protein|unclassified	0.0487239307
+UniRef50_UPI00047A99DA: hypothetical protein	0.0487172799
+UniRef50_UPI00047A99DA: hypothetical protein|unclassified	0.0487172799
+UniRef50_UPI00017453E0: probable helicase	0.0487137587
+UniRef50_UPI00017453E0: probable helicase|unclassified	0.0487137587
+UniRef50_UPI000370689F: hypothetical protein	0.0487132113
+UniRef50_UPI000370689F: hypothetical protein|unclassified	0.0487132113
+UniRef50_UPI00047EE30E: hypothetical protein	0.0487129104
+UniRef50_UPI00047EE30E: hypothetical protein|unclassified	0.0487129104
+UniRef50_R8S8A5	0.0487113385
+UniRef50_R8S8A5|unclassified	0.0487113385
+UniRef50_UPI0004772AE4: hypothetical protein	0.0487109144
+UniRef50_UPI0004772AE4: hypothetical protein|unclassified	0.0487109144
+UniRef50_UPI000472F509: hypothetical protein	0.0487036959
+UniRef50_UPI000472F509: hypothetical protein|unclassified	0.0487036959
+UniRef50_UPI0003664449: hypothetical protein	0.0486981935
+UniRef50_UPI0003664449: hypothetical protein|unclassified	0.0486981935
+UniRef50_UPI00029B428C: alpha-isopropylmalate/homocitrate synthase family transferase, partial	0.0486959878
+UniRef50_UPI00029B428C: alpha-isopropylmalate/homocitrate synthase family transferase, partial|unclassified	0.0486959878
+UniRef50_UPI00047C1821: hypothetical protein	0.0486956750
+UniRef50_UPI00047C1821: hypothetical protein|unclassified	0.0486956750
+UniRef50_A6R2L6: ATP-dependent RNA helicase DBP9	0.0486935506
+UniRef50_A6R2L6: ATP-dependent RNA helicase DBP9|unclassified	0.0486935506
+UniRef50_UPI000377F8D7: hypothetical protein	0.0486869702
+UniRef50_UPI000377F8D7: hypothetical protein|unclassified	0.0486869702
+UniRef50_UPI000477C294: ATPase	0.0486769994
+UniRef50_UPI000477C294: ATPase|unclassified	0.0486769994
+UniRef50_UPI000315E7F4: hypothetical protein	0.0486757296
+UniRef50_UPI000315E7F4: hypothetical protein|unclassified	0.0486757296
+UniRef50_UPI0003693FE1: hypothetical protein	0.0486720793
+UniRef50_UPI0003693FE1: hypothetical protein|unclassified	0.0486720793
+UniRef50_UPI000407DFAC: peptide ABC transporter substrate-binding protein	0.0486616319
+UniRef50_UPI000407DFAC: peptide ABC transporter substrate-binding protein|unclassified	0.0486616319
+UniRef50_UPI00037C70BA: hypothetical protein	0.0486547819
+UniRef50_UPI00037C70BA: hypothetical protein|unclassified	0.0486547819
+UniRef50_UPI00036866D9: hypothetical protein	0.0486537520
+UniRef50_UPI00036866D9: hypothetical protein|unclassified	0.0486537520
+UniRef50_UPI0004711C23: 6-phospho-beta-glucosidase	0.0486497557
+UniRef50_UPI0004711C23: 6-phospho-beta-glucosidase|unclassified	0.0486497557
+UniRef50_UPI00046E85DE: hypothetical protein	0.0486482963
+UniRef50_UPI00046E85DE: hypothetical protein|unclassified	0.0486482963
+UniRef50_UPI0003AEA31D: PREDICTED: basic salivary proline-rich protein 2-like	0.0486463751
+UniRef50_UPI0003AEA31D: PREDICTED: basic salivary proline-rich protein 2-like|unclassified	0.0486463751
+UniRef50_UPI0002378F47: glycosyltransferase	0.0486458683
+UniRef50_UPI0002378F47: glycosyltransferase|unclassified	0.0486458683
+UniRef50_Q03RR1: Bifunctional protein FolD	0.0486455750
+UniRef50_Q03RR1: Bifunctional protein FolD|unclassified	0.0486455750
+UniRef50_UPI000383E808	0.0486451398
+UniRef50_UPI000383E808|unclassified	0.0486451398
+UniRef50_B5YFV7: DNA-directed RNA polymerase subunit beta'	0.0486448040
+UniRef50_B5YFV7: DNA-directed RNA polymerase subunit beta'|unclassified	0.0486448040
+UniRef50_C2H690	0.0486439363
+UniRef50_C2H690|unclassified	0.0486439363
+UniRef50_UPI00035FE5FA: hypothetical protein	0.0486431835
+UniRef50_UPI00035FE5FA: hypothetical protein|unclassified	0.0486431835
+UniRef50_UPI0003B5F067: multidrug MFS transporter	0.0486386470
+UniRef50_UPI0003B5F067: multidrug MFS transporter|unclassified	0.0486386470
+UniRef50_UPI000468A7B0: 3-hydroxyisobutyrate dehydrogenase	0.0486372868
+UniRef50_UPI000468A7B0: 3-hydroxyisobutyrate dehydrogenase|unclassified	0.0486372868
+UniRef50_UPI00036B826D: hypothetical protein, partial	0.0486346081
+UniRef50_UPI00036B826D: hypothetical protein, partial|unclassified	0.0486346081
+UniRef50_R7SL04	0.0486339723
+UniRef50_R7SL04|unclassified	0.0486339723
+UniRef50_E1YHR1	0.0486329318
+UniRef50_E1YHR1|unclassified	0.0486329318
+UniRef50_UPI00047E902E: Fe3+-siderophore ABC transporter permease	0.0486267126
+UniRef50_UPI00047E902E: Fe3+-siderophore ABC transporter permease|unclassified	0.0486267126
+UniRef50_UPI0003819DDB: MULTISPECIES: hypothetical protein	0.0486265845
+UniRef50_UPI0003819DDB: MULTISPECIES: hypothetical protein|unclassified	0.0486265845
+UniRef50_UPI00041336C7: hypothetical protein	0.0486251791
+UniRef50_UPI00041336C7: hypothetical protein|unclassified	0.0486251791
+UniRef50_UPI00037BF954: hypothetical protein	0.0486242875
+UniRef50_UPI00037BF954: hypothetical protein|unclassified	0.0486242875
+UniRef50_UPI0004656424: hypothetical protein	0.0486162646
+UniRef50_UPI0004656424: hypothetical protein|unclassified	0.0486162646
+UniRef50_UPI000478A779: ABC transporter permease	0.0486110383
+UniRef50_UPI000478A779: ABC transporter permease|unclassified	0.0486110383
+UniRef50_UPI000464C3F9: hypothetical protein	0.0486071767
+UniRef50_UPI000464C3F9: hypothetical protein|unclassified	0.0486071767
+UniRef50_UPI00047AFE29: ABC transporter	0.0486061163
+UniRef50_UPI00047AFE29: ABC transporter|unclassified	0.0486061163
+UniRef50_G1WQY9	0.0486057940
+UniRef50_G1WQY9|unclassified	0.0486057940
+UniRef50_U6HSC0: Purine nucleoside phosphorylase	0.0486037914
+UniRef50_U6HSC0: Purine nucleoside phosphorylase|unclassified	0.0486037914
+UniRef50_UPI0004175001: tRNA delta(2)-isopentenylpyrophosphate transferase	0.0486017407
+UniRef50_UPI0004175001: tRNA delta(2)-isopentenylpyrophosphate transferase|unclassified	0.0486017407
+UniRef50_A0A022NNV1	0.0486009524
+UniRef50_A0A022NNV1|unclassified	0.0486009524
+UniRef50_A1VL39: Integral membrane protein	0.0486005007
+UniRef50_A1VL39: Integral membrane protein|unclassified	0.0486005007
+UniRef50_UPI0003B7658A: iron ABC transporter permease	0.0486003709
+UniRef50_UPI0003B7658A: iron ABC transporter permease|unclassified	0.0486003709
+UniRef50_UPI00041EB6B6: hypothetical protein	0.0485980345
+UniRef50_UPI00041EB6B6: hypothetical protein|unclassified	0.0485980345
+UniRef50_UPI000360EAB2: MULTISPECIES: hypothetical protein	0.0485965941
+UniRef50_UPI000360EAB2: MULTISPECIES: hypothetical protein|unclassified	0.0485965941
+UniRef50_UPI00036138F8: hypothetical protein	0.0485951006
+UniRef50_UPI00036138F8: hypothetical protein|unclassified	0.0485951006
+UniRef50_S3XCS7	0.0485939759
+UniRef50_S3XCS7|unclassified	0.0485939759
+UniRef50_UPI000375C158: hypothetical protein	0.0485924582
+UniRef50_UPI000375C158: hypothetical protein|unclassified	0.0485924582
+UniRef50_UPI0002893849: short-chain dehydrogenase	0.0485834030
+UniRef50_UPI0002893849: short-chain dehydrogenase|unclassified	0.0485834030
+UniRef50_Q01TA4: tRNA N6-adenosine threonylcarbamoyltransferase	0.0485814432
+UniRef50_Q01TA4: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.0485814432
+UniRef50_UPI000365C1D0: hypothetical protein	0.0485810277
+UniRef50_UPI000365C1D0: hypothetical protein|unclassified	0.0485810277
+UniRef50_UPI0003B6E3CF: 3-ketoacyl-ACP reductase	0.0485803628
+UniRef50_UPI0003B6E3CF: 3-ketoacyl-ACP reductase|unclassified	0.0485803628
+UniRef50_UPI000375E276: hypothetical protein	0.0485797602
+UniRef50_UPI000375E276: hypothetical protein|unclassified	0.0485797602
+UniRef50_UPI0003B56C3B: hypothetical protein	0.0485791357
+UniRef50_UPI0003B56C3B: hypothetical protein|unclassified	0.0485791357
+UniRef50_E3G427: CHAD domain containing protein	0.0485775499
+UniRef50_E3G427: CHAD domain containing protein|unclassified	0.0485775499
+UniRef50_Q8GAA6: Queuine tRNA-ribosyltransferase	0.0485755446
+UniRef50_Q8GAA6: Queuine tRNA-ribosyltransferase|unclassified	0.0485755446
+UniRef50_I4X7X7: Protein ctaG	0.0485754317
+UniRef50_I4X7X7: Protein ctaG|unclassified	0.0485754317
+UniRef50_D6ZGK4	0.0485744621
+UniRef50_D6ZGK4|unclassified	0.0485744621
+UniRef50_A0M554: Bifunctional protein FolD	0.0485698048
+UniRef50_A0M554: Bifunctional protein FolD|unclassified	0.0485698048
+UniRef50_UPI00032992C5: PREDICTED: proline-rich extensin-like protein EPR1-like	0.0485672655
+UniRef50_UPI00032992C5: PREDICTED: proline-rich extensin-like protein EPR1-like|unclassified	0.0485672655
+UniRef50_B9DNT8: Putative elastin binding protein	0.0485667457
+UniRef50_B9DNT8: Putative elastin binding protein|unclassified	0.0485667457
+UniRef50_B4EV78	0.0485577371
+UniRef50_B4EV78|unclassified	0.0485577371
+UniRef50_G8RZN0	0.0485575434
+UniRef50_G8RZN0|unclassified	0.0485575434
+UniRef50_UPI0003658AF2: hypothetical protein	0.0485513885
+UniRef50_UPI0003658AF2: hypothetical protein|unclassified	0.0485513885
+UniRef50_U6LY50	0.0485488591
+UniRef50_U6LY50|unclassified	0.0485488591
+UniRef50_E1SIR5	0.0485483885
+UniRef50_E1SIR5|unclassified	0.0485483885
+UniRef50_UPI0004286E00: hypothetical protein	0.0485452648
+UniRef50_UPI0004286E00: hypothetical protein|unclassified	0.0485452648
+UniRef50_P08319: Alcohol dehydrogenase 4	0.0485443101
+UniRef50_P08319: Alcohol dehydrogenase 4|unclassified	0.0485443101
+UniRef50_Q04UC6: Queuine tRNA-ribosyltransferase	0.0485409610
+UniRef50_Q04UC6: Queuine tRNA-ribosyltransferase|unclassified	0.0485409610
+UniRef50_UPI0003654605: hypothetical protein	0.0485382554
+UniRef50_UPI0003654605: hypothetical protein|unclassified	0.0485382554
+UniRef50_E7C400: Fe-S oxidoreductase	0.0485355889
+UniRef50_E7C400: Fe-S oxidoreductase|unclassified	0.0485355889
+UniRef50_UPI000348D639: hypothetical protein	0.0485259404
+UniRef50_UPI000348D639: hypothetical protein|unclassified	0.0485259404
+UniRef50_Q8FQB2: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	0.0485230355
+UniRef50_Q8FQB2: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.0485230355
+UniRef50_UPI000478E6CF: inorganic polyphosphate kinase	0.0485228585
+UniRef50_UPI000478E6CF: inorganic polyphosphate kinase|unclassified	0.0485228585
+UniRef50_UPI000467BB1A: LysR family transcriptional regulator	0.0485153092
+UniRef50_UPI000467BB1A: LysR family transcriptional regulator|unclassified	0.0485153092
+UniRef50_UPI00046D8353: hypothetical protein	0.0485113973
+UniRef50_UPI00046D8353: hypothetical protein|unclassified	0.0485113973
+UniRef50_W7WJF0: Neu5Ac permease	0.0485113314
+UniRef50_W7WJF0: Neu5Ac permease|unclassified	0.0485113314
+UniRef50_UPI00036A9B57: cold-shock protein	0.0485111984
+UniRef50_UPI00036A9B57: cold-shock protein|unclassified	0.0485111984
+UniRef50_UPI0004716C47: hypothetical protein	0.0484997509
+UniRef50_UPI0004716C47: hypothetical protein|unclassified	0.0484997509
+UniRef50_UPI00047A26CD: hypothetical protein	0.0484985576
+UniRef50_UPI00047A26CD: hypothetical protein|unclassified	0.0484985576
+UniRef50_S2WUG1	0.0484976917
+UniRef50_S2WUG1|unclassified	0.0484976917
+UniRef50_UPI0003697A66: hypothetical protein	0.0484957516
+UniRef50_UPI0003697A66: hypothetical protein|unclassified	0.0484957516
+UniRef50_UPI0004784A1B: hypothetical protein	0.0484935178
+UniRef50_UPI0004784A1B: hypothetical protein|unclassified	0.0484935178
+UniRef50_UPI000475BF47: ribonucleoside-triphosphate reductase	0.0484911462
+UniRef50_UPI000475BF47: ribonucleoside-triphosphate reductase|unclassified	0.0484911462
+UniRef50_UPI0003A92CCA: hypothetical protein	0.0484895204
+UniRef50_UPI0003A92CCA: hypothetical protein|unclassified	0.0484895204
+UniRef50_UPI00037AA69B: hypothetical protein	0.0484847502
+UniRef50_UPI00037AA69B: hypothetical protein|unclassified	0.0484847502
+UniRef50_E0MK35: ATPase MipZ	0.0484839358
+UniRef50_E0MK35: ATPase MipZ|unclassified	0.0484839358
+UniRef50_Q6LQ73: Phenylalanine--tRNA ligase beta subunit	0.0484827753
+UniRef50_Q6LQ73: Phenylalanine--tRNA ligase beta subunit|unclassified	0.0484827753
+UniRef50_UPI0003A70AE9: stage V sporulation protein E	0.0484812057
+UniRef50_UPI0003A70AE9: stage V sporulation protein E|unclassified	0.0484812057
+UniRef50_Q7P740: Nucleotide sugar synthetase	0.0484783677
+UniRef50_Q7P740: Nucleotide sugar synthetase|unclassified	0.0484783677
+UniRef50_UPI000361255F: hypothetical protein	0.0484767265
+UniRef50_UPI000361255F: hypothetical protein|unclassified	0.0484767265
+UniRef50_Q3A503: tRNA dimethylallyltransferase 1	0.0484749705
+UniRef50_Q3A503: tRNA dimethylallyltransferase 1|unclassified	0.0484749705
+UniRef50_M7T701: PDK repeat-containing protein	0.0484734662
+UniRef50_M7T701: PDK repeat-containing protein|unclassified	0.0484734662
+UniRef50_UPI000382BC46: hypothetical protein, partial	0.0484718989
+UniRef50_UPI000382BC46: hypothetical protein, partial|unclassified	0.0484718989
+UniRef50_UPI0003B6C5D0: LysR family transcriptional regulator	0.0484599235
+UniRef50_UPI0003B6C5D0: LysR family transcriptional regulator|unclassified	0.0484599235
+UniRef50_R1E5T7	0.0484585859
+UniRef50_R1E5T7|unclassified	0.0484585859
+UniRef50_B9CS36: LysM domain protein	0.0484563997
+UniRef50_B9CS36: LysM domain protein|unclassified	0.0484563997
+UniRef50_UPI0003710E05: hypothetical protein	0.0484546009
+UniRef50_UPI0003710E05: hypothetical protein|unclassified	0.0484546009
+UniRef50_UPI00047EB418: amino acid ABC transporter permease	0.0484476710
+UniRef50_UPI00047EB418: amino acid ABC transporter permease|unclassified	0.0484476710
+UniRef50_UPI0003B413BA: phosphoserine phosphatase	0.0484472793
+UniRef50_UPI0003B413BA: phosphoserine phosphatase|unclassified	0.0484472793
+UniRef50_B2A6S5	0.0484457342
+UniRef50_B2A6S5|unclassified	0.0484457342
+UniRef50_B5XMC7	0.0484433680
+UniRef50_B5XMC7|unclassified	0.0484433680
+UniRef50_B1I4C7: Phospho-N-acetylmuramoyl-pentapeptide-transferase	0.0484254182
+UniRef50_B1I4C7: Phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.0484254182
+UniRef50_UPI00047E9751: hypothetical protein	0.0484225177
+UniRef50_UPI00047E9751: hypothetical protein|unclassified	0.0484225177
+UniRef50_UPI000362D82D: hypothetical protein	0.0484220317
+UniRef50_UPI000362D82D: hypothetical protein|unclassified	0.0484220317
+UniRef50_E3YLX4	0.0484173018
+UniRef50_E3YLX4|unclassified	0.0484173018
+UniRef50_UPI00037A9531: hypothetical protein, partial	0.0484152148
+UniRef50_UPI00037A9531: hypothetical protein, partial|unclassified	0.0484152148
+UniRef50_I1PVY9	0.0484135327
+UniRef50_I1PVY9|unclassified	0.0484135327
+UniRef50_A6YB01: Transketolase	0.0484118131
+UniRef50_A6YB01: Transketolase|unclassified	0.0484118131
+UniRef50_X2A1J7	0.0484068599
+UniRef50_X2A1J7|unclassified	0.0484068599
+UniRef50_UPI000475B1F2: hypothetical protein	0.0484044944
+UniRef50_UPI000475B1F2: hypothetical protein|unclassified	0.0484044944
+UniRef50_S8ABK1	0.0483943084
+UniRef50_S8ABK1|unclassified	0.0483943084
+UniRef50_UPI00047038BC: hypothetical protein	0.0483857590
+UniRef50_UPI00047038BC: hypothetical protein|unclassified	0.0483857590
+UniRef50_F7L6R2	0.0483833182
+UniRef50_F7L6R2|unclassified	0.0483833182
+UniRef50_UPI000406DE43: hypothetical protein	0.0483794637
+UniRef50_UPI000406DE43: hypothetical protein|unclassified	0.0483794637
+UniRef50_S9R2D2	0.0483787431
+UniRef50_S9R2D2|unclassified	0.0483787431
+UniRef50_UPI0002F9456A: hypothetical protein	0.0483760904
+UniRef50_UPI0002F9456A: hypothetical protein|unclassified	0.0483760904
+UniRef50_UPI00036D299C: hypothetical protein	0.0483749676
+UniRef50_UPI00036D299C: hypothetical protein|unclassified	0.0483749676
+UniRef50_UPI00035DDD2C: hypothetical protein	0.0483748101
+UniRef50_UPI00035DDD2C: hypothetical protein|unclassified	0.0483748101
+UniRef50_Q56224: NADH-quinone oxidoreductase subunit 9	0.0483745024
+UniRef50_Q56224: NADH-quinone oxidoreductase subunit 9|unclassified	0.0483745024
+UniRef50_UPI000455F431: GroES-like protein	0.0483701302
+UniRef50_UPI000455F431: GroES-like protein|unclassified	0.0483701302
+UniRef50_Q6G2Q3: UDP-N-acetylmuramoylalanine--D-glutamate ligase	0.0483680120
+UniRef50_Q6G2Q3: UDP-N-acetylmuramoylalanine--D-glutamate ligase|unclassified	0.0483680120
+UniRef50_UPI00035FD875: hypothetical protein, partial	0.0483670395
+UniRef50_UPI00035FD875: hypothetical protein, partial|unclassified	0.0483670395
+UniRef50_UPI000403D836: hypothetical protein	0.0483619474
+UniRef50_UPI000403D836: hypothetical protein|unclassified	0.0483619474
+UniRef50_UPI000237AD1B: aldehyde dehydrogenase	0.0483614509
+UniRef50_UPI000237AD1B: aldehyde dehydrogenase|unclassified	0.0483614509
+UniRef50_A5FNF9: Lipoyl synthase	0.0483613837
+UniRef50_A5FNF9: Lipoyl synthase|unclassified	0.0483613837
+UniRef50_F0WVE4: AlNc14C294G10284 protein	0.0483600628
+UniRef50_F0WVE4: AlNc14C294G10284 protein|unclassified	0.0483600628
+UniRef50_D8THL4	0.0483474058
+UniRef50_D8THL4|unclassified	0.0483474058
+UniRef50_UPI0003801D4F: hypothetical protein	0.0483461977
+UniRef50_UPI0003801D4F: hypothetical protein|unclassified	0.0483461977
+UniRef50_UPI000381BE9D: hypothetical protein	0.0483446277
+UniRef50_UPI000381BE9D: hypothetical protein|unclassified	0.0483446277
+UniRef50_A0A011RPZ4: 2-isopropylmalate synthase	0.0483387313
+UniRef50_A0A011RPZ4: 2-isopropylmalate synthase|unclassified	0.0483387313
+UniRef50_UPI00036D83C9: hypothetical protein	0.0483383980
+UniRef50_UPI00036D83C9: hypothetical protein|unclassified	0.0483383980
+UniRef50_Q5L0L0: Chemotaxis response regulator protein-glutamate methylesterase	0.0483360316
+UniRef50_Q5L0L0: Chemotaxis response regulator protein-glutamate methylesterase|unclassified	0.0483360316
+UniRef50_UPI000463651E: hypothetical protein	0.0483321722
+UniRef50_UPI000463651E: hypothetical protein|unclassified	0.0483321722
+UniRef50_UPI00047E628A: hypothetical protein	0.0483314492
+UniRef50_UPI00047E628A: hypothetical protein|unclassified	0.0483314492
+UniRef50_I3TUU9: TRAP-T family transporter, DctM (12 TMs) subunit	0.0483294347
+UniRef50_I3TUU9: TRAP-T family transporter, DctM (12 TMs) subunit|unclassified	0.0483294347
+UniRef50_K0C4Z8: TRAP-T family protein transporter, DctM (12 TMs) subunit	0.0483294347
+UniRef50_K0C4Z8: TRAP-T family protein transporter, DctM (12 TMs) subunit|unclassified	0.0483294347
+UniRef50_D8TZF5	0.0483270073
+UniRef50_D8TZF5|unclassified	0.0483270073
+UniRef50_P34031: DNA gyrase subunit B	0.0483245906
+UniRef50_P34031: DNA gyrase subunit B|unclassified	0.0483245906
+UniRef50_UPI00047C5557: hypothetical protein	0.0483166377
+UniRef50_UPI00047C5557: hypothetical protein|unclassified	0.0483166377
+UniRef50_B9KYM6	0.0483120092
+UniRef50_B9KYM6|unclassified	0.0483120092
+UniRef50_D9YA96	0.0483116697
+UniRef50_D9YA96|unclassified	0.0483116697
+UniRef50_G2TJY7: UPF0348 protein	0.0483105243
+UniRef50_G2TJY7: UPF0348 protein|unclassified	0.0483105243
+UniRef50_Q97K78: Arginine--tRNA ligase	0.0483088029
+UniRef50_Q97K78: Arginine--tRNA ligase|unclassified	0.0483088029
+UniRef50_UPI00026274FD: hypothetical protein	0.0483083096
+UniRef50_UPI00026274FD: hypothetical protein|unclassified	0.0483083096
+UniRef50_M1V6C8	0.0483081149
+UniRef50_M1V6C8|unclassified	0.0483081149
+UniRef50_UPI0001FFE514: pyruvate phosphate dikinase PEP/pyruvate- binding protein, partial	0.0483051358
+UniRef50_UPI0001FFE514: pyruvate phosphate dikinase PEP/pyruvate- binding protein, partial|unclassified	0.0483051358
+UniRef50_UPI00047DFE8E: phosphoribosylaminoimidazole carboxylase	0.0483042137
+UniRef50_UPI00047DFE8E: phosphoribosylaminoimidazole carboxylase|unclassified	0.0483042137
+UniRef50_G4Q7Y4	0.0483033094
+UniRef50_G4Q7Y4|unclassified	0.0483033094
+UniRef50_Q3AHV1: Glutamyl-Q tRNA(Asp) synthetase	0.0483003057
+UniRef50_Q3AHV1: Glutamyl-Q tRNA(Asp) synthetase|unclassified	0.0483003057
+UniRef50_UPI0003F0D062: PREDICTED: alpha-methylacyl-CoA racemase-like	0.0482970237
+UniRef50_UPI0003F0D062: PREDICTED: alpha-methylacyl-CoA racemase-like|unclassified	0.0482970237
+UniRef50_UPI00029A0415: threonine synthase	0.0482942899
+UniRef50_UPI00029A0415: threonine synthase|unclassified	0.0482942899
+UniRef50_UPI00036AD763: hypothetical protein	0.0482885067
+UniRef50_UPI00036AD763: hypothetical protein|unclassified	0.0482885067
+UniRef50_H7CII4: Internalin-like protein	0.0482770804
+UniRef50_H7CII4: Internalin-like protein|unclassified	0.0482770804
+UniRef50_UPI0004705673: hypothetical protein, partial	0.0482755469
+UniRef50_UPI0004705673: hypothetical protein, partial|unclassified	0.0482755469
+UniRef50_UPI0003482043: hypothetical protein	0.0482754502
+UniRef50_UPI0003482043: hypothetical protein|unclassified	0.0482754502
+UniRef50_U7PHY7	0.0482709052
+UniRef50_U7PHY7|unclassified	0.0482709052
+UniRef50_UPI000381C188: hypothetical protein	0.0482668499
+UniRef50_UPI000381C188: hypothetical protein|unclassified	0.0482668499
+UniRef50_R4YGC8: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.0482581436
+UniRef50_R4YGC8: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|unclassified	0.0482581436
+UniRef50_UPI00037F821B: MULTISPECIES: hypothetical protein	0.0482546772
+UniRef50_UPI00037F821B: MULTISPECIES: hypothetical protein|unclassified	0.0482546772
+UniRef50_X1RTA8: Marine sediment metagenome DNA, contig: S12H4_C00841	0.0482539566
+UniRef50_X1RTA8: Marine sediment metagenome DNA, contig: S12H4_C00841|unclassified	0.0482539566
+UniRef50_B9UZ80: Transketolase (Fragment)	0.0482490030
+UniRef50_B9UZ80: Transketolase (Fragment)|unclassified	0.0482490030
+UniRef50_UPI0003B397F3: tyrosine recombinase XerC	0.0482480140
+UniRef50_UPI0003B397F3: tyrosine recombinase XerC|unclassified	0.0482480140
+UniRef50_UPI000471E42F: dihydroflavonol 4-reductase	0.0482474380
+UniRef50_UPI000471E42F: dihydroflavonol 4-reductase|unclassified	0.0482474380
+UniRef50_H2G104	0.0482440684
+UniRef50_H2G104|unclassified	0.0482440684
+UniRef50_UPI000373BCBB: hypothetical protein	0.0482408120
+UniRef50_UPI000373BCBB: hypothetical protein|unclassified	0.0482408120
+UniRef50_UPI00035FB1E0: hypothetical protein	0.0482397539
+UniRef50_UPI00035FB1E0: hypothetical protein|unclassified	0.0482397539
+UniRef50_Q8VYV7: 3-dehydroquinate synthase, chloroplastic	0.0482395832
+UniRef50_Q8VYV7: 3-dehydroquinate synthase, chloroplastic|unclassified	0.0482395832
+UniRef50_UPI000367637E: hypothetical protein	0.0482391620
+UniRef50_UPI000367637E: hypothetical protein|unclassified	0.0482391620
+UniRef50_UPI000255B611: DNA polymerase III subunit delta''''	0.0482388282
+UniRef50_UPI000255B611: DNA polymerase III subunit delta''''|unclassified	0.0482388282
+UniRef50_I3TVP0: Multidrug ABC transporter permease component	0.0482259477
+UniRef50_I3TVP0: Multidrug ABC transporter permease component|unclassified	0.0482259477
+UniRef50_S5S091	0.0482247187
+UniRef50_S5S091|unclassified	0.0482247187
+UniRef50_UPI0003B6A5DD: serine/threonine phosphatase	0.0482200171
+UniRef50_UPI0003B6A5DD: serine/threonine phosphatase|unclassified	0.0482200171
+UniRef50_UPI000468E1BB: hypothetical protein	0.0482178684
+UniRef50_UPI000468E1BB: hypothetical protein|unclassified	0.0482178684
+UniRef50_N9BFY8	0.0482153995
+UniRef50_N9BFY8|unclassified	0.0482153995
+UniRef50_UPI00036CBCBE: hypothetical protein	0.0482120115
+UniRef50_UPI00036CBCBE: hypothetical protein|unclassified	0.0482120115
+UniRef50_UPI000374C35C: hypothetical protein	0.0482109313
+UniRef50_UPI000374C35C: hypothetical protein|unclassified	0.0482109313
+UniRef50_UPI000200387F: AGCS family alanine or glycine:sodium (Na+) or proton (H+) symporter, partial	0.0482104015
+UniRef50_UPI000200387F: AGCS family alanine or glycine:sodium (Na+) or proton (H+) symporter, partial|unclassified	0.0482104015
+UniRef50_UPI0002D2ADE0: hypothetical protein	0.0482100946
+UniRef50_UPI0002D2ADE0: hypothetical protein|unclassified	0.0482100946
+UniRef50_Q9CJI9: ATP-dependent helicase/nuclease subunit A	0.0482078135
+UniRef50_Q9CJI9: ATP-dependent helicase/nuclease subunit A|unclassified	0.0482078135
+UniRef50_UPI000350AB07: PREDICTED: methionine aminopeptidase 1, partial	0.0482057342
+UniRef50_UPI000350AB07: PREDICTED: methionine aminopeptidase 1, partial|unclassified	0.0482057342
+UniRef50_UPI00042417C0: pilus assembly protein PilQ	0.0482015147
+UniRef50_UPI00042417C0: pilus assembly protein PilQ|unclassified	0.0482015147
+UniRef50_T0QVJ8	0.0481964710
+UniRef50_T0QVJ8|unclassified	0.0481964710
+UniRef50_UPI0003B45BBB: biotin synthase	0.0481962258
+UniRef50_UPI0003B45BBB: biotin synthase|unclassified	0.0481962258
+UniRef50_UPI0003656FCD: hypothetical protein	0.0481950117
+UniRef50_UPI0003656FCD: hypothetical protein|unclassified	0.0481950117
+UniRef50_UPI0003B34834: rRNA methyltransferase	0.0481890345
+UniRef50_UPI0003B34834: rRNA methyltransferase|unclassified	0.0481890345
+UniRef50_P75476: Probable ATP-dependent 6-phosphofructokinase	0.0481885173
+UniRef50_P75476: Probable ATP-dependent 6-phosphofructokinase|unclassified	0.0481885173
+UniRef50_UPI0004622B7B: GMC oxidoreductase	0.0481771709
+UniRef50_UPI0004622B7B: GMC oxidoreductase|unclassified	0.0481771709
+UniRef50_X0U279: Marine sediment metagenome DNA, contig: S01H1_S12738 (Fragment)	0.0481762752
+UniRef50_X0U279: Marine sediment metagenome DNA, contig: S01H1_S12738 (Fragment)|unclassified	0.0481762752
+UniRef50_W5J5T2	0.0481761621
+UniRef50_W5J5T2|unclassified	0.0481761621
+UniRef50_Q6MBY2: Protoheme IX farnesyltransferase	0.0481759586
+UniRef50_Q6MBY2: Protoheme IX farnesyltransferase|unclassified	0.0481759586
+UniRef50_Q1MPW9: DNA-directed RNA polymerase subunit beta'	0.0481756526
+UniRef50_Q1MPW9: DNA-directed RNA polymerase subunit beta'|unclassified	0.0481756526
+UniRef50_W4HGC6	0.0481712126
+UniRef50_W4HGC6|unclassified	0.0481712126
+UniRef50_A8LLF4	0.0481599017
+UniRef50_A8LLF4|unclassified	0.0481599017
+UniRef50_UPI0003791F8B: hypothetical protein, partial	0.0481582692
+UniRef50_UPI0003791F8B: hypothetical protein, partial|unclassified	0.0481582692
+UniRef50_UPI0003594F29: PREDICTED: GMP synthase [glutamine-hydrolyzing]	0.0481571678
+UniRef50_UPI0003594F29: PREDICTED: GMP synthase [glutamine-hydrolyzing]|unclassified	0.0481571678
+UniRef50_UPI00037D5BEC: hypothetical protein	0.0481564525
+UniRef50_UPI00037D5BEC: hypothetical protein|unclassified	0.0481564525
+UniRef50_UPI000382D7E4: hypothetical protein	0.0481559045
+UniRef50_UPI000382D7E4: hypothetical protein|unclassified	0.0481559045
+UniRef50_U1MXD2	0.0481536444
+UniRef50_U1MXD2|unclassified	0.0481536444
+UniRef50_UPI00047C04E2: diguanylate cyclase	0.0481516596
+UniRef50_UPI00047C04E2: diguanylate cyclase|unclassified	0.0481516596
+UniRef50_Q2RSC8: Phosphoribosylformylglycinamidine cyclo-ligase	0.0481406657
+UniRef50_Q2RSC8: Phosphoribosylformylglycinamidine cyclo-ligase|unclassified	0.0481406657
+UniRef50_C7JDC6: Phage terminase large subunit	0.0481368799
+UniRef50_C7JDC6: Phage terminase large subunit|unclassified	0.0481368799
+UniRef50_UPI0004692538: flagellar motor protein MotB	0.0481335305
+UniRef50_UPI0004692538: flagellar motor protein MotB|unclassified	0.0481335305
+UniRef50_P70728: Homocitrate synthase	0.0481317966
+UniRef50_P70728: Homocitrate synthase|unclassified	0.0481317966
+UniRef50_UPI000262F0F3: hydrolase	0.0481252450
+UniRef50_UPI000262F0F3: hydrolase|unclassified	0.0481252450
+UniRef50_UPI000372C491: hypothetical protein	0.0481235574
+UniRef50_UPI000372C491: hypothetical protein|unclassified	0.0481235574
+UniRef50_UPI0002488639: TonB-dependent receptor, plug	0.0481217762
+UniRef50_UPI0002488639: TonB-dependent receptor, plug|unclassified	0.0481217762
+UniRef50_UPI0002658616: PREDICTED: FK506-binding protein 4-like	0.0481178891
+UniRef50_UPI0002658616: PREDICTED: FK506-binding protein 4-like|unclassified	0.0481178891
+UniRef50_W5XCK8	0.0481170786
+UniRef50_W5XCK8|unclassified	0.0481170786
+UniRef50_UPI000365D1B4: hypothetical protein	0.0481150244
+UniRef50_UPI000365D1B4: hypothetical protein|unclassified	0.0481150244
+UniRef50_Q1MYB0	0.0481096249
+UniRef50_Q1MYB0|unclassified	0.0481096249
+UniRef50_P13228: Tryptophan synthase	0.0481092386
+UniRef50_P13228: Tryptophan synthase|unclassified	0.0481092386
+UniRef50_K7SZT0	0.0481055141
+UniRef50_K7SZT0|unclassified	0.0481055141
+UniRef50_C7NCA9: Periplasmic binding protein	0.0481029467
+UniRef50_C7NCA9: Periplasmic binding protein|unclassified	0.0481029467
+UniRef50_A0A024E113: Response regulator aspartate phosphatase I	0.0480983595
+UniRef50_A0A024E113: Response regulator aspartate phosphatase I|unclassified	0.0480983595
+UniRef50_UPI00036D8B1D: hypothetical protein	0.0480927208
+UniRef50_UPI00036D8B1D: hypothetical protein|unclassified	0.0480927208
+UniRef50_UPI0003B597B4: imidazole glycerol phosphate synthase	0.0480881720
+UniRef50_UPI0003B597B4: imidazole glycerol phosphate synthase|unclassified	0.0480881720
+UniRef50_UPI000465F07B: hypothetical protein	0.0480803357
+UniRef50_UPI000465F07B: hypothetical protein|unclassified	0.0480803357
+UniRef50_UPI000468624D: hypothetical protein	0.0480741564
+UniRef50_UPI000468624D: hypothetical protein|unclassified	0.0480741564
+UniRef50_UPI000478703D: hypothetical protein	0.0480704489
+UniRef50_UPI000478703D: hypothetical protein|unclassified	0.0480704489
+UniRef50_A0A010YDL0: C4-dicarboxylate transporter	0.0480658787
+UniRef50_A0A010YDL0: C4-dicarboxylate transporter|unclassified	0.0480658787
+UniRef50_UPI000478AA58: oxidoreductase	0.0480562953
+UniRef50_UPI000478AA58: oxidoreductase|unclassified	0.0480562953
+UniRef50_W5X8D3: Putative FixW protein	0.0480537654
+UniRef50_W5X8D3: Putative FixW protein|unclassified	0.0480537654
+UniRef50_G9E8D1: Protein fecR	0.0480467997
+UniRef50_G9E8D1: Protein fecR|unclassified	0.0480467997
+UniRef50_UPI0003B576AB: hypothetical protein	0.0480452406
+UniRef50_UPI0003B576AB: hypothetical protein|unclassified	0.0480452406
+UniRef50_UPI000381846F: hypothetical protein	0.0480439037
+UniRef50_UPI000381846F: hypothetical protein|unclassified	0.0480439037
+UniRef50_R8AYY1: Type II secretion system protein	0.0480432281
+UniRef50_R8AYY1: Type II secretion system protein|unclassified	0.0480432281
+UniRef50_Q038I4: Phosphate acyltransferase	0.0480386714
+UniRef50_Q038I4: Phosphate acyltransferase|unclassified	0.0480386714
+UniRef50_A8IAV1	0.0480349527
+UniRef50_A8IAV1|unclassified	0.0480349527
+UniRef50_C8XCA2: ABC-type Fe3+-hydroxamate transport system periplasmic component-like protein	0.0480305229
+UniRef50_C8XCA2: ABC-type Fe3+-hydroxamate transport system periplasmic component-like protein|unclassified	0.0480305229
+UniRef50_UPI00037987B5: hypothetical protein	0.0480299100
+UniRef50_UPI00037987B5: hypothetical protein|unclassified	0.0480299100
+UniRef50_UPI0004761E21: hypothetical protein	0.0480296724
+UniRef50_UPI0004761E21: hypothetical protein|unclassified	0.0480296724
+UniRef50_Q1QC36: Urease subunit alpha 2	0.0480286728
+UniRef50_Q1QC36: Urease subunit alpha 2|unclassified	0.0480286728
+UniRef50_A0A013KWK5	0.0480274682
+UniRef50_A0A013KWK5|unclassified	0.0480274682
+UniRef50_UPI000273F963: PREDICTED: cystathionine gamma-lyase-like	0.0480257114
+UniRef50_UPI000273F963: PREDICTED: cystathionine gamma-lyase-like|unclassified	0.0480257114
+UniRef50_UPI000421FD3A: acetyl-CoA acetyltransferase	0.0480230053
+UniRef50_UPI000421FD3A: acetyl-CoA acetyltransferase|unclassified	0.0480230053
+UniRef50_UPI0003B599F8: membrane protein	0.0480205213
+UniRef50_UPI0003B599F8: membrane protein|unclassified	0.0480205213
+UniRef50_UPI000310953A: quinone oxidoreductase	0.0480153274
+UniRef50_UPI000310953A: quinone oxidoreductase|unclassified	0.0480153274
+UniRef50_UPI0003F08A55: PREDICTED: arginine-glutamic acid dipeptide repeats protein-like	0.0480147098
+UniRef50_UPI0003F08A55: PREDICTED: arginine-glutamic acid dipeptide repeats protein-like|unclassified	0.0480147098
+UniRef50_UPI0003740DAE: hypothetical protein	0.0480134071
+UniRef50_UPI0003740DAE: hypothetical protein|unclassified	0.0480134071
+UniRef50_UPI0002DEB9E1: hypothetical protein	0.0480108569
+UniRef50_UPI0002DEB9E1: hypothetical protein|unclassified	0.0480108569
+UniRef50_UPI00037E4FB1: MULTISPECIES: hypothetical protein	0.0480100284
+UniRef50_UPI00037E4FB1: MULTISPECIES: hypothetical protein|unclassified	0.0480100284
+UniRef50_UPI00037221D6: hypothetical protein	0.0480057673
+UniRef50_UPI00037221D6: hypothetical protein|unclassified	0.0480057673
+UniRef50_UPI00047D80A6: DNA gyrase subunit A	0.0480039136
+UniRef50_UPI00047D80A6: DNA gyrase subunit A|unclassified	0.0480039136
+UniRef50_Q2W897: Dual-specificity RNA methyltransferase RlmN	0.0479983779
+UniRef50_Q2W897: Dual-specificity RNA methyltransferase RlmN|unclassified	0.0479983779
+UniRef50_B9TMP1	0.0479982004
+UniRef50_B9TMP1|unclassified	0.0479982004
+UniRef50_Q2LTA1: 4-hydroxy-tetrahydrodipicolinate synthase	0.0479958955
+UniRef50_Q2LTA1: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0479958955
+UniRef50_UPI00037696BA: hypothetical protein	0.0479936662
+UniRef50_UPI00037696BA: hypothetical protein|unclassified	0.0479936662
+UniRef50_UPI000467EDE9: hypothetical protein	0.0479822121
+UniRef50_UPI000467EDE9: hypothetical protein|unclassified	0.0479822121
+UniRef50_UPI0004056050: hypothetical protein	0.0479785601
+UniRef50_UPI0004056050: hypothetical protein|unclassified	0.0479785601
+UniRef50_U9ZXF6	0.0479670724
+UniRef50_U9ZXF6|unclassified	0.0479670724
+UniRef50_UPI0002898528: fructose-bisphosphate aldolase	0.0479652470
+UniRef50_UPI0002898528: fructose-bisphosphate aldolase|unclassified	0.0479652470
+UniRef50_A4X990: Cobalamin synthesis protein, P47K	0.0479644155
+UniRef50_A4X990: Cobalamin synthesis protein, P47K|unclassified	0.0479644155
+UniRef50_A6U8U4: Transposase IS66	0.0479608215
+UniRef50_A6U8U4: Transposase IS66|unclassified	0.0479608215
+UniRef50_F5XZR7: Candidate large permease component	0.0479566960
+UniRef50_F5XZR7: Candidate large permease component|unclassified	0.0479566960
+UniRef50_UPI00035CEEAA: hypothetical protein	0.0479505540
+UniRef50_UPI00035CEEAA: hypothetical protein|unclassified	0.0479505540
+UniRef50_UPI000369323B: MULTISPECIES: hypothetical protein	0.0479488162
+UniRef50_UPI000369323B: MULTISPECIES: hypothetical protein|unclassified	0.0479488162
+UniRef50_UPI000368DDFC: hypothetical protein	0.0479432275
+UniRef50_UPI000368DDFC: hypothetical protein|unclassified	0.0479432275
+UniRef50_P29336: Glucosyltransferase-S	0.0479425290
+UniRef50_P29336: Glucosyltransferase-S|unclassified	0.0479425290
+UniRef50_Q1IS59: NADH-quinone oxidoreductase subunit D 1	0.0479419365
+UniRef50_Q1IS59: NADH-quinone oxidoreductase subunit D 1|unclassified	0.0479419365
+UniRef50_Q9CDM7: Undecaprenyl-diphosphatase	0.0479365821
+UniRef50_Q9CDM7: Undecaprenyl-diphosphatase|unclassified	0.0479365821
+UniRef50_F7V1E8	0.0479352668
+UniRef50_F7V1E8|unclassified	0.0479352668
+UniRef50_UPI0003059C39: hypothetical protein	0.0479330265
+UniRef50_UPI0003059C39: hypothetical protein|unclassified	0.0479330265
+UniRef50_UPI0003129C39: hypothetical protein	0.0479287997
+UniRef50_UPI0003129C39: hypothetical protein|unclassified	0.0479287997
+UniRef50_S5STT9	0.0479262795
+UniRef50_S5STT9|unclassified	0.0479262795
+UniRef50_UPI00047CC502: hypothetical protein	0.0479209896
+UniRef50_UPI00047CC502: hypothetical protein|unclassified	0.0479209896
+UniRef50_UPI0003C1376A: PREDICTED: 3-ketoacyl-CoA thiolase, mitochondrial	0.0479149803
+UniRef50_UPI0003C1376A: PREDICTED: 3-ketoacyl-CoA thiolase, mitochondrial|unclassified	0.0479149803
+UniRef50_Q2P0E2: ISXoo4 transposase	0.0479117924
+UniRef50_Q2P0E2: ISXoo4 transposase|unclassified	0.0479117924
+UniRef50_UPI000360C085: hypothetical protein	0.0479109189
+UniRef50_UPI000360C085: hypothetical protein|unclassified	0.0479109189
+UniRef50_UPI0003701D2A: hypothetical protein	0.0479100879
+UniRef50_UPI0003701D2A: hypothetical protein|unclassified	0.0479100879
+UniRef50_UPI0003726905: taurine dioxygenase	0.0479019566
+UniRef50_UPI0003726905: taurine dioxygenase|unclassified	0.0479019566
+UniRef50_Q67JX4: Energy-coupling factor transporter ATP-binding protein EcfA2	0.0478975942
+UniRef50_Q67JX4: Energy-coupling factor transporter ATP-binding protein EcfA2|unclassified	0.0478975942
+UniRef50_UPI00030CFAAF: hypothetical protein	0.0478947905
+UniRef50_UPI00030CFAAF: hypothetical protein|unclassified	0.0478947905
+UniRef50_Q9QXD6: Fructose-1,6-bisphosphatase 1	0.0478943575
+UniRef50_Q9QXD6: Fructose-1,6-bisphosphatase 1|unclassified	0.0478943575
+UniRef50_UPI000237708B: glycerol-3-phosphate ABC transporter ATP-binding protein	0.0478913829
+UniRef50_UPI000237708B: glycerol-3-phosphate ABC transporter ATP-binding protein|unclassified	0.0478913829
+UniRef50_UPI00047215D7: hypothetical protein	0.0478872505
+UniRef50_UPI00047215D7: hypothetical protein|unclassified	0.0478872505
+UniRef50_A0A011NQP5: Teichoic acids export ATP-binding protein TagH	0.0478844603
+UniRef50_A0A011NQP5: Teichoic acids export ATP-binding protein TagH|unclassified	0.0478844603
+UniRef50_UPI000361E333: bactoprenol glucosyl transferase, partial	0.0478840184
+UniRef50_UPI000361E333: bactoprenol glucosyl transferase, partial|unclassified	0.0478840184
+UniRef50_UPI00037EFCF4: hypothetical protein	0.0478830614
+UniRef50_UPI00037EFCF4: hypothetical protein|unclassified	0.0478830614
+UniRef50_UPI000468E962: hypothetical protein	0.0478791102
+UniRef50_UPI000468E962: hypothetical protein|unclassified	0.0478791102
+UniRef50_M4VDP3: Type II/IV secretion system protein TadC, associated with Flp pilus assembly	0.0478785085
+UniRef50_M4VDP3: Type II/IV secretion system protein TadC, associated with Flp pilus assembly|unclassified	0.0478785085
+UniRef50_UPI00045EB41A: hypothetical protein	0.0478777408
+UniRef50_UPI00045EB41A: hypothetical protein|unclassified	0.0478777408
+UniRef50_E3I7U0: Beta-lactamase domain-containing protein	0.0478752430
+UniRef50_E3I7U0: Beta-lactamase domain-containing protein|unclassified	0.0478752430
+UniRef50_UPI00035FFDBB: hypothetical protein	0.0478727058
+UniRef50_UPI00035FFDBB: hypothetical protein|unclassified	0.0478727058
+UniRef50_P40747	0.0478714365
+UniRef50_P40747|unclassified	0.0478714365
+UniRef50_UPI00035C5BDF: hypothetical protein	0.0478711890
+UniRef50_UPI00035C5BDF: hypothetical protein|unclassified	0.0478711890
+UniRef50_UPI0003C13108: PREDICTED: aldehyde dehydrogenase, mitochondrial-like	0.0478665607
+UniRef50_UPI0003C13108: PREDICTED: aldehyde dehydrogenase, mitochondrial-like|unclassified	0.0478665607
+UniRef50_B2IJC5	0.0478614139
+UniRef50_B2IJC5|unclassified	0.0478614139
+UniRef50_UPI0003B54C8A: ATP-dependent DNA helicase Rep	0.0478600643
+UniRef50_UPI0003B54C8A: ATP-dependent DNA helicase Rep|unclassified	0.0478600643
+UniRef50_UPI00036DD283: hypothetical protein	0.0478588159
+UniRef50_UPI00036DD283: hypothetical protein|unclassified	0.0478588159
+UniRef50_UPI0003B747E5: signal peptidase	0.0478570636
+UniRef50_UPI0003B747E5: signal peptidase|unclassified	0.0478570636
+UniRef50_M9R2W1	0.0478528395
+UniRef50_M9R2W1|unclassified	0.0478528395
+UniRef50_UPI000475A5BB: arabinose transporter permease	0.0478523521
+UniRef50_UPI000475A5BB: arabinose transporter permease|unclassified	0.0478523521
+UniRef50_A4Q810	0.0478488467
+UniRef50_A4Q810|unclassified	0.0478488467
+UniRef50_E4RQ70: Group-specific protein	0.0478488193
+UniRef50_E4RQ70: Group-specific protein|unclassified	0.0478488193
+UniRef50_UPI00029A69ED: cytochrome D ubiquinol oxidase subunit I	0.0478466354
+UniRef50_UPI00029A69ED: cytochrome D ubiquinol oxidase subunit I|unclassified	0.0478466354
+UniRef50_UPI00036DB420: hypothetical protein	0.0478442164
+UniRef50_UPI00036DB420: hypothetical protein|unclassified	0.0478442164
+UniRef50_Q9LIS3: UDP-glucuronate 4-epimerase 6	0.0478436173
+UniRef50_Q9LIS3: UDP-glucuronate 4-epimerase 6|unclassified	0.0478436173
+UniRef50_F3KF31: Glycolate dehydrogenase2C iron-sulfur subunit GlcF	0.0478406661
+UniRef50_F3KF31: Glycolate dehydrogenase2C iron-sulfur subunit GlcF|unclassified	0.0478406661
+UniRef50_O30156: Acetylornithine aminotransferase	0.0478404478
+UniRef50_O30156: Acetylornithine aminotransferase|unclassified	0.0478404478
+UniRef50_F3UY42	0.0478390609
+UniRef50_F3UY42|unclassified	0.0478390609
+UniRef50_UPI00046FF2E4: 8-amino-7-oxononanoate synthase	0.0478334153
+UniRef50_UPI00046FF2E4: 8-amino-7-oxononanoate synthase|unclassified	0.0478334153
+UniRef50_W4Q6X8: Phytoene desaturase	0.0478322510
+UniRef50_W4Q6X8: Phytoene desaturase|unclassified	0.0478322510
+UniRef50_E1CJT9: Iron-responsive element binding protein 2 variant	0.0478294302
+UniRef50_E1CJT9: Iron-responsive element binding protein 2 variant|unclassified	0.0478294302
+UniRef50_UPI00046ACA04: methyltransferase	0.0478186398
+UniRef50_UPI00046ACA04: methyltransferase|unclassified	0.0478186398
+UniRef50_D5EQ00: UPF0502 protein Caka_2718	0.0478174380
+UniRef50_D5EQ00: UPF0502 protein Caka_2718|unclassified	0.0478174380
+UniRef50_UPI00046580F1: LysR family transcriptional regulator	0.0478083733
+UniRef50_UPI00046580F1: LysR family transcriptional regulator|unclassified	0.0478083733
+UniRef50_B1VAN9: Proline--tRNA ligase	0.0478082027
+UniRef50_B1VAN9: Proline--tRNA ligase|unclassified	0.0478082027
+UniRef50_A7HJ56: 4-hydroxy-tetrahydrodipicolinate synthase	0.0478071829
+UniRef50_A7HJ56: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0478071829
+UniRef50_UPI000382B926: MULTISPECIES: S-adenosyl-L-homocysteine hydrolase	0.0478005769
+UniRef50_UPI000382B926: MULTISPECIES: S-adenosyl-L-homocysteine hydrolase|unclassified	0.0478005769
+UniRef50_A7TDI2: Lipoyl synthase, mitochondrial	0.0478004914
+UniRef50_A7TDI2: Lipoyl synthase, mitochondrial|unclassified	0.0478004914
+UniRef50_Q0FNM1	0.0477951643
+UniRef50_Q0FNM1|unclassified	0.0477951643
+UniRef50_D2RBW1	0.0477932559
+UniRef50_D2RBW1|unclassified	0.0477932559
+UniRef50_UPI0001FFE90B: alcohol dehydrogenase	0.0477912997
+UniRef50_UPI0001FFE90B: alcohol dehydrogenase|unclassified	0.0477912997
+UniRef50_UPI00035DD30D: hypothetical protein, partial	0.0477907378
+UniRef50_UPI00035DD30D: hypothetical protein, partial|unclassified	0.0477907378
+UniRef50_UPI00042B42D9: Methionine--tRNA ligase / methionyl-tRNA synthetase / MetRS, putative isoform 3, partial	0.0477894018
+UniRef50_UPI00042B42D9: Methionine--tRNA ligase / methionyl-tRNA synthetase / MetRS, putative isoform 3, partial|unclassified	0.0477894018
+UniRef50_UPI000471F0E2: ABC transporter permease, partial	0.0477875317
+UniRef50_UPI000471F0E2: ABC transporter permease, partial|unclassified	0.0477875317
+UniRef50_Q92IH1: DNA topoisomerase 1	0.0477874727
+UniRef50_Q92IH1: DNA topoisomerase 1|unclassified	0.0477874727
+UniRef50_P70695: Fructose-1,6-bisphosphatase isozyme 2	0.0477872509
+UniRef50_P70695: Fructose-1,6-bisphosphatase isozyme 2|unclassified	0.0477872509
+UniRef50_UPI0002897A75: L-threonine aldolase	0.0477863580
+UniRef50_UPI0002897A75: L-threonine aldolase|unclassified	0.0477863580
+UniRef50_O00757: Fructose-1,6-bisphosphatase isozyme 2	0.0477846578
+UniRef50_O00757: Fructose-1,6-bisphosphatase isozyme 2|unclassified	0.0477846578
+UniRef50_UPI0003718B80: hypothetical protein	0.0477827797
+UniRef50_UPI0003718B80: hypothetical protein|unclassified	0.0477827797
+UniRef50_UPI0003820279: hypothetical protein	0.0477824347
+UniRef50_UPI0003820279: hypothetical protein|unclassified	0.0477824347
+UniRef50_H0E6G7	0.0477805490
+UniRef50_H0E6G7|unclassified	0.0477805490
+UniRef50_H3ER45	0.0477794375
+UniRef50_H3ER45|unclassified	0.0477794375
+UniRef50_P04189: Subtilisin E	0.0477766042
+UniRef50_P04189: Subtilisin E|unclassified	0.0477766042
+UniRef50_UPI00047CB6EE: serine/threonine protein phosphatase	0.0477756427
+UniRef50_UPI00047CB6EE: serine/threonine protein phosphatase|unclassified	0.0477756427
+UniRef50_UPI0003B51789: ABC transporter	0.0477753179
+UniRef50_UPI0003B51789: ABC transporter|unclassified	0.0477753179
+UniRef50_A6UTF4: ExsB family protein	0.0477750440
+UniRef50_A6UTF4: ExsB family protein|unclassified	0.0477750440
+UniRef50_UPI00037203A6: hypothetical protein	0.0477728710
+UniRef50_UPI00037203A6: hypothetical protein|unclassified	0.0477728710
+UniRef50_A8ACB1: Ornithine carbamoyltransferase	0.0477715625
+UniRef50_A8ACB1: Ornithine carbamoyltransferase|unclassified	0.0477715625
+UniRef50_UPI0004692352: peptide ABC transporter permease	0.0477657905
+UniRef50_UPI0004692352: peptide ABC transporter permease|unclassified	0.0477657905
+UniRef50_X6NB26: TPR repeat-containing protein (Fragment)	0.0477651579
+UniRef50_X6NB26: TPR repeat-containing protein (Fragment)|unclassified	0.0477651579
+UniRef50_UPI0003B7036B: phosphohydrolase	0.0477614901
+UniRef50_UPI0003B7036B: phosphohydrolase|unclassified	0.0477614901
+UniRef50_D4MZD4	0.0477574584
+UniRef50_D4MZD4|unclassified	0.0477574584
+UniRef50_UPI0002559E6A: molecular chaperone SurA	0.0477554819
+UniRef50_UPI0002559E6A: molecular chaperone SurA|unclassified	0.0477554819
+UniRef50_Q89G43: tRNA dimethylallyltransferase	0.0477553097
+UniRef50_Q89G43: tRNA dimethylallyltransferase|unclassified	0.0477553097
+UniRef50_UPI0002ED494E: hypothetical protein	0.0477516837
+UniRef50_UPI0002ED494E: hypothetical protein|unclassified	0.0477516837
+UniRef50_A9BLN6	0.0477510965
+UniRef50_A9BLN6|unclassified	0.0477510965
+UniRef50_UPI00035ED69A: hypothetical protein	0.0477477034
+UniRef50_UPI00035ED69A: hypothetical protein|unclassified	0.0477477034
+UniRef50_UPI0004672EA4: response regulator SirA, partial	0.0477443582
+UniRef50_UPI0004672EA4: response regulator SirA, partial|unclassified	0.0477443582
+UniRef50_I2FE91	0.0477364066
+UniRef50_I2FE91|unclassified	0.0477364066
+UniRef50_B8IDY9: Type II secretion system protein	0.0477364009
+UniRef50_B8IDY9: Type II secretion system protein|unclassified	0.0477364009
+UniRef50_UPI000380A433: hypothetical protein	0.0477344525
+UniRef50_UPI000380A433: hypothetical protein|unclassified	0.0477344525
+UniRef50_UPI000378266B: hypothetical protein	0.0477327013
+UniRef50_UPI000378266B: hypothetical protein|unclassified	0.0477327013
+UniRef50_UPI0003B69739: hypothetical protein	0.0477296354
+UniRef50_UPI0003B69739: hypothetical protein|unclassified	0.0477296354
+UniRef50_G2FHS7: Phosphate ABC transporter, periplasmic phosphate-binding protein PstS	0.0477292612
+UniRef50_G2FHS7: Phosphate ABC transporter, periplasmic phosphate-binding protein PstS|unclassified	0.0477292612
+UniRef50_F2R7B9: Esterase	0.0477226169
+UniRef50_F2R7B9: Esterase|unclassified	0.0477226169
+UniRef50_UPI000361F9D7: hypothetical protein	0.0477225699
+UniRef50_UPI000361F9D7: hypothetical protein|unclassified	0.0477225699
+UniRef50_V4ZHQ5	0.0477200470
+UniRef50_V4ZHQ5|unclassified	0.0477200470
+UniRef50_V4JPC8	0.0477115857
+UniRef50_V4JPC8|unclassified	0.0477115857
+UniRef50_S3D9Q7	0.0477113299
+UniRef50_S3D9Q7|unclassified	0.0477113299
+UniRef50_UPI000376C191: hypothetical protein	0.0477113043
+UniRef50_UPI000376C191: hypothetical protein|unclassified	0.0477113043
+UniRef50_UPI000469E0CA: hypothetical protein	0.0477027328
+UniRef50_UPI000469E0CA: hypothetical protein|unclassified	0.0477027328
+UniRef50_F7ZF40	0.0476982948
+UniRef50_F7ZF40|unclassified	0.0476982948
+UniRef50_UPI0003811E02: hypothetical protein	0.0476980857
+UniRef50_UPI0003811E02: hypothetical protein|unclassified	0.0476980857
+UniRef50_UPI00036781FF: hypothetical protein	0.0476917188
+UniRef50_UPI00036781FF: hypothetical protein|unclassified	0.0476917188
+UniRef50_A5V6F9: Anhydro-N-acetylmuramic acid kinase	0.0476912447
+UniRef50_A5V6F9: Anhydro-N-acetylmuramic acid kinase|unclassified	0.0476912447
+UniRef50_G3NMT4	0.0476890290
+UniRef50_G3NMT4|unclassified	0.0476890290
+UniRef50_UPI00035C7BD5: hypothetical protein	0.0476885434
+UniRef50_UPI00035C7BD5: hypothetical protein|unclassified	0.0476885434
+UniRef50_UPI000375B7EE: hypothetical protein	0.0476804917
+UniRef50_UPI000375B7EE: hypothetical protein|unclassified	0.0476804917
+UniRef50_H3H617	0.0476793696
+UniRef50_H3H617|unclassified	0.0476793696
+UniRef50_UPI00037CF736: hypothetical protein	0.0476722366
+UniRef50_UPI00037CF736: hypothetical protein|unclassified	0.0476722366
+UniRef50_UPI000364CA4C: hypothetical protein	0.0476718300
+UniRef50_UPI000364CA4C: hypothetical protein|unclassified	0.0476718300
+UniRef50_UPI000262A7A6: putative TonB dependent receptor protein	0.0476659234
+UniRef50_UPI000262A7A6: putative TonB dependent receptor protein|unclassified	0.0476659234
+UniRef50_UPI0003B5691F: epimerase	0.0476639309
+UniRef50_UPI0003B5691F: epimerase|unclassified	0.0476639309
+UniRef50_UPI00036B0A56: hypothetical protein, partial	0.0476557652
+UniRef50_UPI00036B0A56: hypothetical protein, partial|unclassified	0.0476557652
+UniRef50_UPI0003749179: type II secretory protein GspE	0.0476556855
+UniRef50_UPI0003749179: type II secretory protein GspE|unclassified	0.0476556855
+UniRef50_UPI0003B65A97: hypothetical protein	0.0476541700
+UniRef50_UPI0003B65A97: hypothetical protein|unclassified	0.0476541700
+UniRef50_UPI00037C0D1B: hypothetical protein	0.0476540418
+UniRef50_UPI00037C0D1B: hypothetical protein|unclassified	0.0476540418
+UniRef50_UPI0003B71254: hypothetical protein	0.0476512035
+UniRef50_UPI0003B71254: hypothetical protein|unclassified	0.0476512035
+UniRef50_UPI00042C800D: PREDICTED: UDP-glucuronic acid decarboxylase 1 isoform X3	0.0476495027
+UniRef50_UPI00042C800D: PREDICTED: UDP-glucuronic acid decarboxylase 1 isoform X3|unclassified	0.0476495027
+UniRef50_B3QXJ4: Beta-lactamase domain protein	0.0476473573
+UniRef50_B3QXJ4: Beta-lactamase domain protein|unclassified	0.0476473573
+UniRef50_B0TWR5: Histidine--tRNA ligase	0.0476471229
+UniRef50_B0TWR5: Histidine--tRNA ligase|unclassified	0.0476471229
+UniRef50_UPI00047E21CB: sulfonate ABC transporter permease	0.0476457572
+UniRef50_UPI00047E21CB: sulfonate ABC transporter permease|unclassified	0.0476457572
+UniRef50_Q1AXL7: Bifunctional protein GlmU	0.0476435583
+UniRef50_Q1AXL7: Bifunctional protein GlmU|unclassified	0.0476435583
+UniRef50_Q54X95: Probable methionine--tRNA ligase, cytoplasmic	0.0476420762
+UniRef50_Q54X95: Probable methionine--tRNA ligase, cytoplasmic|unclassified	0.0476420762
+UniRef50_UPI00034A5B30: CoA-transferase	0.0476399604
+UniRef50_UPI00034A5B30: CoA-transferase|unclassified	0.0476399604
+UniRef50_UPI000361E3BF: hypothetical protein, partial	0.0476345503
+UniRef50_UPI000361E3BF: hypothetical protein, partial|unclassified	0.0476345503
+UniRef50_W5XCQ8: PAS domain S-box protein	0.0476334692
+UniRef50_W5XCQ8: PAS domain S-box protein|unclassified	0.0476334692
+UniRef50_B6YRS4: Leucine--tRNA ligase	0.0476326980
+UniRef50_B6YRS4: Leucine--tRNA ligase|unclassified	0.0476326980
+UniRef50_UPI000379B8CB: hypothetical protein	0.0476305150
+UniRef50_UPI000379B8CB: hypothetical protein|unclassified	0.0476305150
+UniRef50_UPI000383ECAE: PREDICTED: serine/threonine-protein kinase DCLK1	0.0476265930
+UniRef50_UPI000383ECAE: PREDICTED: serine/threonine-protein kinase DCLK1|unclassified	0.0476265930
+UniRef50_UPI00035D6541: ATP:GTP 3''''-pyrophosphotransferase, partial	0.0476248029
+UniRef50_UPI00035D6541: ATP:GTP 3''''-pyrophosphotransferase, partial|unclassified	0.0476248029
+UniRef50_UPI00036700E1: hypothetical protein	0.0476239862
+UniRef50_UPI00036700E1: hypothetical protein|unclassified	0.0476239862
+UniRef50_UPI0003B4A005: sugar ABC transporter permease	0.0476239862
+UniRef50_UPI0003B4A005: sugar ABC transporter permease|unclassified	0.0476239862
+UniRef50_Q57E96: 4-hydroxy-tetrahydrodipicolinate synthase	0.0476238521
+UniRef50_Q57E96: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0476238521
+UniRef50_UPI0002FDC4AF: hypothetical protein	0.0476184394
+UniRef50_UPI0002FDC4AF: hypothetical protein|unclassified	0.0476184394
+UniRef50_UPI0003B2F8BC: type VI secretion protein	0.0476176984
+UniRef50_UPI0003B2F8BC: type VI secretion protein|unclassified	0.0476176984
+UniRef50_UPI00036DDACE: hypothetical protein	0.0476074978
+UniRef50_UPI00036DDACE: hypothetical protein|unclassified	0.0476074978
+UniRef50_W0LF16: Virulence factor SrfB	0.0476010382
+UniRef50_W0LF16: Virulence factor SrfB|unclassified	0.0476010382
+UniRef50_B9DJI1: BNR repeat domain protein	0.0475973313
+UniRef50_B9DJI1: BNR repeat domain protein|unclassified	0.0475973313
+UniRef50_UPI0003B4A713: hypothetical protein	0.0475962695
+UniRef50_UPI0003B4A713: hypothetical protein|unclassified	0.0475962695
+UniRef50_UPI00047CE930: glyoxalase	0.0475941145
+UniRef50_UPI00047CE930: glyoxalase|unclassified	0.0475941145
+UniRef50_UPI000314B306: hypothetical protein	0.0475890488
+UniRef50_UPI000314B306: hypothetical protein|unclassified	0.0475890488
+UniRef50_UPI0004664745: epimerase	0.0475779142
+UniRef50_UPI0004664745: epimerase|unclassified	0.0475779142
+UniRef50_UPI00035E5741: hypothetical protein	0.0475773530
+UniRef50_UPI00035E5741: hypothetical protein|unclassified	0.0475773530
+UniRef50_Q8KGA4: tRNA N6-adenosine threonylcarbamoyltransferase	0.0475742672
+UniRef50_Q8KGA4: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.0475742672
+UniRef50_UPI0003B648D0: peptidase M20	0.0475719954
+UniRef50_UPI0003B648D0: peptidase M20|unclassified	0.0475719954
+UniRef50_UPI0004689482: ATPase	0.0475681922
+UniRef50_UPI0004689482: ATPase|unclassified	0.0475681922
+UniRef50_UPI0003B510B1: 3-oxoacyl-ACP synthase	0.0475671682
+UniRef50_UPI0003B510B1: 3-oxoacyl-ACP synthase|unclassified	0.0475671682
+UniRef50_UPI000375A365: hypothetical protein	0.0475668630
+UniRef50_UPI000375A365: hypothetical protein|unclassified	0.0475668630
+UniRef50_UPI00036DB958: hypothetical protein	0.0475589940
+UniRef50_UPI00036DB958: hypothetical protein|unclassified	0.0475589940
+UniRef50_F4DX17: Lytic transglycosylase, catalytic	0.0475583435
+UniRef50_F4DX17: Lytic transglycosylase, catalytic|unclassified	0.0475583435
+UniRef50_A3PGD9: Phage Terminase	0.0475574927
+UniRef50_A3PGD9: Phage Terminase|unclassified	0.0475574927
+UniRef50_UPI00046FE3EE: hypothetical protein	0.0475517157
+UniRef50_UPI00046FE3EE: hypothetical protein|unclassified	0.0475517157
+UniRef50_D4DTT1	0.0475446774
+UniRef50_D4DTT1|unclassified	0.0475446774
+UniRef50_UPI00035D3786: MULTISPECIES: hypothetical protein	0.0475381477
+UniRef50_UPI00035D3786: MULTISPECIES: hypothetical protein|unclassified	0.0475381477
+UniRef50_B3PJA9: tRNA pseudouridine synthase D	0.0475298438
+UniRef50_B3PJA9: tRNA pseudouridine synthase D|unclassified	0.0475298438
+UniRef50_UPI000289A6DB: serine dehydratase	0.0475296623
+UniRef50_UPI000289A6DB: serine dehydratase|unclassified	0.0475296623
+UniRef50_UPI00045E12F9: PREDICTED: von Willebrand factor A domain-containing protein 1	0.0475276546
+UniRef50_UPI00045E12F9: PREDICTED: von Willebrand factor A domain-containing protein 1|unclassified	0.0475276546
+UniRef50_UPI000381FE78: hypothetical protein	0.0475262136
+UniRef50_UPI000381FE78: hypothetical protein|unclassified	0.0475262136
+UniRef50_UPI0003B5D6D7: carbon monoxide dehydrogenase, partial	0.0475256625
+UniRef50_UPI0003B5D6D7: carbon monoxide dehydrogenase, partial|unclassified	0.0475256625
+UniRef50_W4TLK1: Molybdopterin-guanine dinucleotide biosynthesis protein	0.0475232372
+UniRef50_W4TLK1: Molybdopterin-guanine dinucleotide biosynthesis protein|unclassified	0.0475232372
+UniRef50_UPI000300EF70: hypothetical protein	0.0475213576
+UniRef50_UPI000300EF70: hypothetical protein|unclassified	0.0475213576
+UniRef50_UPI0004699775: hypothetical protein	0.0475161937
+UniRef50_UPI0004699775: hypothetical protein|unclassified	0.0475161937
+UniRef50_A9UZ97: Predicted protein	0.0475146873
+UniRef50_A9UZ97: Predicted protein|unclassified	0.0475146873
+UniRef50_W5X9J0: 3-methyl-2-oxobutanoate hydroxymethyltransferase	0.0475144440
+UniRef50_W5X9J0: 3-methyl-2-oxobutanoate hydroxymethyltransferase|unclassified	0.0475144440
+UniRef50_W5X8W5	0.0475129503
+UniRef50_W5X8W5|unclassified	0.0475129503
+UniRef50_B2RHB4: Ferrochelatase	0.0475126372
+UniRef50_B2RHB4: Ferrochelatase|unclassified	0.0475126372
+UniRef50_UPI00047E0C66: hypothetical protein	0.0475089320
+UniRef50_UPI00047E0C66: hypothetical protein|unclassified	0.0475089320
+UniRef50_UPI0001CC3EEF: hypothetical protein	0.0475045724
+UniRef50_UPI0001CC3EEF: hypothetical protein|unclassified	0.0475045724
+UniRef50_UPI000378EE70: hypothetical protein	0.0474983399
+UniRef50_UPI000378EE70: hypothetical protein|unclassified	0.0474983399
+UniRef50_P9WPT6: Probable cation-transporting P-type ATPase J	0.0474959865
+UniRef50_P9WPT6: Probable cation-transporting P-type ATPase J|unclassified	0.0474959865
+UniRef50_UPI0004654F37: allantoinase, partial	0.0474942835
+UniRef50_UPI0004654F37: allantoinase, partial|unclassified	0.0474942835
+UniRef50_UPI0003461A9F: hypothetical protein	0.0474847760
+UniRef50_UPI0003461A9F: hypothetical protein|unclassified	0.0474847760
+UniRef50_UPI0002559115: hypothetical protein, partial	0.0474809366
+UniRef50_UPI0002559115: hypothetical protein, partial|unclassified	0.0474809366
+UniRef50_D8LJU4	0.0474779990
+UniRef50_D8LJU4|unclassified	0.0474779990
+UniRef50_UPI0003B528E4: pyrimidine-nucleoside phosphorylase	0.0474768589
+UniRef50_UPI0003B528E4: pyrimidine-nucleoside phosphorylase|unclassified	0.0474768589
+UniRef50_R7LXM0: MazG family protein	0.0474768381
+UniRef50_R7LXM0: MazG family protein|unclassified	0.0474768381
+UniRef50_UPI000420FF66: hypothetical protein	0.0474731729
+UniRef50_UPI000420FF66: hypothetical protein|unclassified	0.0474731729
+UniRef50_UPI00037EC222: GDP-L-fucose synthase	0.0474726748
+UniRef50_UPI00037EC222: GDP-L-fucose synthase|unclassified	0.0474726748
+UniRef50_UPI00037C750E: hypothetical protein	0.0474697317
+UniRef50_UPI00037C750E: hypothetical protein|unclassified	0.0474697317
+UniRef50_M5CNX6	0.0474691641
+UniRef50_M5CNX6|unclassified	0.0474691641
+UniRef50_Q15P31: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.0474659616
+UniRef50_Q15P31: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.0474659616
+UniRef50_Q3EXI4: MazG protein	0.0474657017
+UniRef50_Q3EXI4: MazG protein|unclassified	0.0474657017
+UniRef50_G2QBM3	0.0474626520
+UniRef50_G2QBM3|unclassified	0.0474626520
+UniRef50_Q8RAK6: Alanine racemase 1	0.0474520232
+UniRef50_Q8RAK6: Alanine racemase 1|unclassified	0.0474520232
+UniRef50_UPI00035F7453: hypothetical protein	0.0474487026
+UniRef50_UPI00035F7453: hypothetical protein|unclassified	0.0474487026
+UniRef50_UPI000428106D: hypothetical protein	0.0474425815
+UniRef50_UPI000428106D: hypothetical protein|unclassified	0.0474425815
+UniRef50_UPI0004731077: NAD(P)H-quinone oxidoreductase subunit F, partial	0.0474411482
+UniRef50_UPI0004731077: NAD(P)H-quinone oxidoreductase subunit F, partial|unclassified	0.0474411482
+UniRef50_UPI00037F0298: hypothetical protein	0.0474409087
+UniRef50_UPI00037F0298: hypothetical protein|unclassified	0.0474409087
+UniRef50_UPI00047D69D0: hypothetical protein	0.0474387343
+UniRef50_UPI00047D69D0: hypothetical protein|unclassified	0.0474387343
+UniRef50_UPI00031C2503: hypothetical protein	0.0474325881
+UniRef50_UPI00031C2503: hypothetical protein|unclassified	0.0474325881
+UniRef50_A9URH7: Predicted protein	0.0474239044
+UniRef50_A9URH7: Predicted protein|unclassified	0.0474239044
+UniRef50_A0A022G8I1: LysR family transcriptional regulator	0.0474217044
+UniRef50_A0A022G8I1: LysR family transcriptional regulator|unclassified	0.0474217044
+UniRef50_UPI0003723BD6: hypothetical protein	0.0474213233
+UniRef50_UPI0003723BD6: hypothetical protein|unclassified	0.0474213233
+UniRef50_R7J0R1: Threonine synthase	0.0474211614
+UniRef50_R7J0R1: Threonine synthase|unclassified	0.0474211614
+UniRef50_K2J1T5	0.0474157374
+UniRef50_K2J1T5|unclassified	0.0474157374
+UniRef50_C0CQV0	0.0474082046
+UniRef50_C0CQV0|unclassified	0.0474082046
+UniRef50_D7C8B3	0.0474067879
+UniRef50_D7C8B3|unclassified	0.0474067879
+UniRef50_Q1QZ33: Chaperone SurA	0.0474066305
+UniRef50_Q1QZ33: Chaperone SurA|unclassified	0.0474066305
+UniRef50_UPI00016C469F: putative PAS/PAC sensor protein	0.0474064379
+UniRef50_UPI00016C469F: putative PAS/PAC sensor protein|unclassified	0.0474064379
+UniRef50_UPI0004681F30: hypothetical protein	0.0473966982
+UniRef50_UPI0004681F30: hypothetical protein|unclassified	0.0473966982
+UniRef50_UPI00046F9613: hypothetical protein	0.0473964531
+UniRef50_UPI00046F9613: hypothetical protein|unclassified	0.0473964531
+UniRef50_B3WF00: tRNA dimethylallyltransferase	0.0473950211
+UniRef50_B3WF00: tRNA dimethylallyltransferase|unclassified	0.0473950211
+UniRef50_UPI0003C177A0: PREDICTED: dnaJ homolog 1, mitochondrial-like	0.0473932114
+UniRef50_UPI0003C177A0: PREDICTED: dnaJ homolog 1, mitochondrial-like|unclassified	0.0473932114
+UniRef50_Q6SKA7: Integral membrane protein	0.0473921219
+UniRef50_Q6SKA7: Integral membrane protein|unclassified	0.0473921219
+UniRef50_UPI00047891E2: phytoene desaturase	0.0473901273
+UniRef50_UPI00047891E2: phytoene desaturase|unclassified	0.0473901273
+UniRef50_C3NW76	0.0473897436
+UniRef50_C3NW76|unclassified	0.0473897436
+UniRef50_F7TTH0: Heme-based aerotactic transducer HemAT	0.0473887630
+UniRef50_F7TTH0: Heme-based aerotactic transducer HemAT|unclassified	0.0473887630
+UniRef50_UPI00037BC2EC: hypothetical protein	0.0473790818
+UniRef50_UPI00037BC2EC: hypothetical protein|unclassified	0.0473790818
+UniRef50_UPI0002E16CF4: hypothetical protein	0.0473740802
+UniRef50_UPI0002E16CF4: hypothetical protein|unclassified	0.0473740802
+UniRef50_T5R038: Rhamnulose-1-phosphate aldolase	0.0473721373
+UniRef50_T5R038: Rhamnulose-1-phosphate aldolase|unclassified	0.0473721373
+UniRef50_UPI000469EC64: peptidase S11	0.0473630993
+UniRef50_UPI000469EC64: peptidase S11|unclassified	0.0473630993
+UniRef50_A4XTK0: Ribosomal RNA large subunit methyltransferase M	0.0473607082
+UniRef50_A4XTK0: Ribosomal RNA large subunit methyltransferase M|unclassified	0.0473607082
+UniRef50_F0KFU5	0.0473566321
+UniRef50_F0KFU5|unclassified	0.0473566321
+UniRef50_UPI000289EDA6: GAF sensor hybrid histidine kinase	0.0473552946
+UniRef50_UPI000289EDA6: GAF sensor hybrid histidine kinase|unclassified	0.0473552946
+UniRef50_Q7VA47: Fumarate hydratase class II	0.0473535674
+UniRef50_Q7VA47: Fumarate hydratase class II|unclassified	0.0473535674
+UniRef50_UPI00046A5F56: hypothetical protein	0.0473498662
+UniRef50_UPI00046A5F56: hypothetical protein|unclassified	0.0473498662
+UniRef50_UPI000401DE78: hypothetical protein	0.0473408906
+UniRef50_UPI000401DE78: hypothetical protein|unclassified	0.0473408906
+UniRef50_R1CFM0	0.0473380096
+UniRef50_R1CFM0|unclassified	0.0473380096
+UniRef50_UPI0003940ED6: PREDICTED: skin secretory protein xP2-like, partial	0.0473375438
+UniRef50_UPI0003940ED6: PREDICTED: skin secretory protein xP2-like, partial|unclassified	0.0473375438
+UniRef50_Q8ZWE2: PaREP13	0.0473222414
+UniRef50_Q8ZWE2: PaREP13|unclassified	0.0473222414
+UniRef50_Q2IW23: Bifunctional enzyme IspD/IspF	0.0473216208
+UniRef50_Q2IW23: Bifunctional enzyme IspD/IspF|unclassified	0.0473216208
+UniRef50_UPI000378AF7E: hypothetical protein	0.0473210128
+UniRef50_UPI000378AF7E: hypothetical protein|unclassified	0.0473210128
+UniRef50_N8WZK4	0.0473170086
+UniRef50_N8WZK4|unclassified	0.0473170086
+UniRef50_UPI000378241A: hypothetical protein	0.0473122925
+UniRef50_UPI000378241A: hypothetical protein|unclassified	0.0473122925
+UniRef50_F8L259	0.0473080750
+UniRef50_F8L259|unclassified	0.0473080750
+UniRef50_E1ZNH2	0.0473076692
+UniRef50_E1ZNH2|unclassified	0.0473076692
+UniRef50_Q1QU75: tRNA pseudouridine synthase D	0.0473041925
+UniRef50_Q1QU75: tRNA pseudouridine synthase D|unclassified	0.0473041925
+UniRef50_Q4SYH0: Chromosome undetermined SCAF12065, whole genome shotgun sequence	0.0473038570
+UniRef50_Q4SYH0: Chromosome undetermined SCAF12065, whole genome shotgun sequence|unclassified	0.0473038570
+UniRef50_M9WZ57	0.0473032111
+UniRef50_M9WZ57|unclassified	0.0473032111
+UniRef50_UPI00040E8CA1: histidine kinase	0.0473014176
+UniRef50_UPI00040E8CA1: histidine kinase|unclassified	0.0473014176
+UniRef50_B0CBV6	0.0472996462
+UniRef50_B0CBV6|unclassified	0.0472996462
+UniRef50_UPI00047642D3: hypothetical protein	0.0472994029
+UniRef50_UPI00047642D3: hypothetical protein|unclassified	0.0472994029
+UniRef50_UPI0003F5AB39: hypothetical protein	0.0472985774
+UniRef50_UPI0003F5AB39: hypothetical protein|unclassified	0.0472985774
+UniRef50_Q4RHF1: Chromosome 3 SCAF15050, whole genome shotgun sequence. (Fragment)	0.0472966063
+UniRef50_Q4RHF1: Chromosome 3 SCAF15050, whole genome shotgun sequence. (Fragment)|unclassified	0.0472966063
+UniRef50_UPI000381FC4A: hypothetical protein, partial	0.0472901799
+UniRef50_UPI000381FC4A: hypothetical protein, partial|unclassified	0.0472901799
+UniRef50_UPI0003B75BA6: ribonuclease E	0.0472900980
+UniRef50_UPI0003B75BA6: ribonuclease E|unclassified	0.0472900980
+UniRef50_Q6APT2: Formamidopyrimidine-DNA glycosylase	0.0472877967
+UniRef50_Q6APT2: Formamidopyrimidine-DNA glycosylase|unclassified	0.0472877967
+UniRef50_G0ULC4	0.0472814884
+UniRef50_G0ULC4|unclassified	0.0472814884
+UniRef50_R7JSE9: Appr-1-p processing domain protein	0.0472714940
+UniRef50_R7JSE9: Appr-1-p processing domain protein|unclassified	0.0472714940
+UniRef50_UPI0003801419: hypothetical protein	0.0472713496
+UniRef50_UPI0003801419: hypothetical protein|unclassified	0.0472713496
+UniRef50_UPI0003B78479: XRE family transcriptional regulator, partial	0.0472709636
+UniRef50_UPI0003B78479: XRE family transcriptional regulator, partial|unclassified	0.0472709636
+UniRef50_UPI0004064E58: transcription termination factor Rho	0.0472684259
+UniRef50_UPI0004064E58: transcription termination factor Rho|unclassified	0.0472684259
+UniRef50_A9YWT8: Protease PrtS	0.0472661583
+UniRef50_A9YWT8: Protease PrtS|unclassified	0.0472661583
+UniRef50_H3UKE3: Extracellular matrix-binding protein ebh	0.0472580719
+UniRef50_H3UKE3: Extracellular matrix-binding protein ebh|unclassified	0.0472580719
+UniRef50_UPI0003B7AF1C: peptide ABC transporter permease	0.0472535376
+UniRef50_UPI0003B7AF1C: peptide ABC transporter permease|unclassified	0.0472535376
+UniRef50_A0A024PC14	0.0472499845
+UniRef50_A0A024PC14|unclassified	0.0472499845
+UniRef50_U6HDX6: General transcription factor 3C polypeptide	0.0472478038
+UniRef50_U6HDX6: General transcription factor 3C polypeptide|unclassified	0.0472478038
+UniRef50_UPI000375AA93: hypothetical protein	0.0472473632
+UniRef50_UPI000375AA93: hypothetical protein|unclassified	0.0472473632
+UniRef50_UPI0003AAC631: lipoprotein NlpD	0.0472445798
+UniRef50_UPI0003AAC631: lipoprotein NlpD|unclassified	0.0472445798
+UniRef50_UPI0003771588: MULTISPECIES: hypothetical protein	0.0472443544
+UniRef50_UPI0003771588: MULTISPECIES: hypothetical protein|unclassified	0.0472443544
+UniRef50_UPI00035C8A55: hypothetical protein, partial	0.0472410696
+UniRef50_UPI00035C8A55: hypothetical protein, partial|unclassified	0.0472410696
+UniRef50_Q4A041: Probable D-serine dehydratase	0.0472351956
+UniRef50_Q4A041: Probable D-serine dehydratase|unclassified	0.0472351956
+UniRef50_A0A059G3L2: Transcriptional regulator	0.0472343201
+UniRef50_A0A059G3L2: Transcriptional regulator|unclassified	0.0472343201
+UniRef50_X1YCJ0	0.0472324160
+UniRef50_X1YCJ0|unclassified	0.0472324160
+UniRef50_UPI00045EB7E4: MULTISPECIES: 6-phosphofructokinase	0.0472305343
+UniRef50_UPI00045EB7E4: MULTISPECIES: 6-phosphofructokinase|unclassified	0.0472305343
+UniRef50_UPI00037EA4BC: hypothetical protein, partial	0.0472303454
+UniRef50_UPI00037EA4BC: hypothetical protein, partial|unclassified	0.0472303454
+UniRef50_UPI0003681D16: hypothetical protein	0.0472256109
+UniRef50_UPI0003681D16: hypothetical protein|unclassified	0.0472256109
+UniRef50_UPI0001E2F129: type II secretion system F domain-containing protein	0.0472243299
+UniRef50_UPI0001E2F129: type II secretion system F domain-containing protein|unclassified	0.0472243299
+UniRef50_M4BDP0	0.0472217973
+UniRef50_M4BDP0|unclassified	0.0472217973
+UniRef50_Q6MC06: Tyrosine--tRNA ligase	0.0472205459
+UniRef50_Q6MC06: Tyrosine--tRNA ligase|unclassified	0.0472205459
+UniRef50_Q8EW01: Serine--tRNA ligase	0.0472190565
+UniRef50_Q8EW01: Serine--tRNA ligase|unclassified	0.0472190565
+UniRef50_UPI00047AB9DA: hypothetical protein	0.0472161004
+UniRef50_UPI00047AB9DA: hypothetical protein|unclassified	0.0472161004
+UniRef50_UPI00046D7CC7: VWA containing CoxE family protein	0.0472144864
+UniRef50_UPI00046D7CC7: VWA containing CoxE family protein|unclassified	0.0472144864
+UniRef50_R5EU95: Serine type site-specific recombinase	0.0472038643
+UniRef50_R5EU95: Serine type site-specific recombinase|unclassified	0.0472038643
+UniRef50_O04046: Heterodimeric geranylgeranyl pyrophosphate synthase large subunit 2	0.0472037459
+UniRef50_O04046: Heterodimeric geranylgeranyl pyrophosphate synthase large subunit 2|unclassified	0.0472037459
+UniRef50_Q88A48: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical	0.0472028881
+UniRef50_Q88A48: Bis(5'-nucleosyl)-tetraphosphatase, symmetrical|unclassified	0.0472028881
+UniRef50_UPI0003C17643	0.0471996588
+UniRef50_UPI0003C17643|unclassified	0.0471996588
+UniRef50_W5XBV9: Cyclic nucleotide-binding protein	0.0471991247
+UniRef50_W5XBV9: Cyclic nucleotide-binding protein|unclassified	0.0471991247
+UniRef50_O23404: Pyruvate, phosphate dikinase 1, chloroplastic	0.0471987777
+UniRef50_O23404: Pyruvate, phosphate dikinase 1, chloroplastic|unclassified	0.0471987777
+UniRef50_L8H368	0.0471972671
+UniRef50_L8H368|unclassified	0.0471972671
+UniRef50_Q9ZNW0-2: Isoform 2 of Adenylyltransferase and sulfurtransferase MOCS3	0.0471972090
+UniRef50_Q9ZNW0-2: Isoform 2 of Adenylyltransferase and sulfurtransferase MOCS3|unclassified	0.0471972090
+UniRef50_UPI0003739202: hypothetical protein	0.0471953088
+UniRef50_UPI0003739202: hypothetical protein|unclassified	0.0471953088
+UniRef50_Q04FM1: Energy-coupling factor transporter ATP-binding protein EcfA2	0.0471949400
+UniRef50_Q04FM1: Energy-coupling factor transporter ATP-binding protein EcfA2|unclassified	0.0471949400
+UniRef50_B1XZ42: 40-residue YVTN family beta-propeller repeat protein	0.0471928418
+UniRef50_B1XZ42: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.0471928418
+UniRef50_B7K765: tRNA N6-adenosine threonylcarbamoyltransferase	0.0471923306
+UniRef50_B7K765: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.0471923306
+UniRef50_UPI000469F5C5: hypothetical protein	0.0471904157
+UniRef50_UPI000469F5C5: hypothetical protein|unclassified	0.0471904157
+UniRef50_A0A022LYZ1: TetR family transcriptional regulator	0.0471877084
+UniRef50_A0A022LYZ1: TetR family transcriptional regulator|unclassified	0.0471877084
+UniRef50_A9GRS6	0.0471835729
+UniRef50_A9GRS6|unclassified	0.0471835729
+UniRef50_Q07GE4: Chromosome partitioning protein, putative	0.0471824310
+UniRef50_Q07GE4: Chromosome partitioning protein, putative|unclassified	0.0471824310
+UniRef50_UPI0002624EC7: ABC transporter	0.0471738779
+UniRef50_UPI0002624EC7: ABC transporter|unclassified	0.0471738779
+UniRef50_A3CN20	0.0471721455
+UniRef50_A3CN20|unclassified	0.0471721455
+UniRef50_Q8SVN8: Lysophospholipase NTE1	0.0471671119
+UniRef50_Q8SVN8: Lysophospholipase NTE1|unclassified	0.0471671119
+UniRef50_UPI000367D70E: hypothetical protein	0.0471646561
+UniRef50_UPI000367D70E: hypothetical protein|unclassified	0.0471646561
+UniRef50_G8XAZ1: Nitrate/nitrite antiporter	0.0471633227
+UniRef50_G8XAZ1: Nitrate/nitrite antiporter|unclassified	0.0471633227
+UniRef50_UPI0003C1458A: PREDICTED: IAA-amino acid hydrolase ILR1-like 9-like	0.0471558285
+UniRef50_UPI0003C1458A: PREDICTED: IAA-amino acid hydrolase ILR1-like 9-like|unclassified	0.0471558285
+UniRef50_UPI0003634303: hypothetical protein	0.0471478778
+UniRef50_UPI0003634303: hypothetical protein|unclassified	0.0471478778
+UniRef50_UPI00036E48A5: hypothetical protein	0.0471473290
+UniRef50_UPI00036E48A5: hypothetical protein|unclassified	0.0471473290
+UniRef50_UPI00035C59AE: hypothetical protein	0.0471460300
+UniRef50_UPI00035C59AE: hypothetical protein|unclassified	0.0471460300
+UniRef50_UPI000248DE8D: alpha/beta hydrolase fold protein	0.0471413304
+UniRef50_UPI000248DE8D: alpha/beta hydrolase fold protein|unclassified	0.0471413304
+UniRef50_UPI00046D8276: hypothetical protein	0.0471351909
+UniRef50_UPI00046D8276: hypothetical protein|unclassified	0.0471351909
+UniRef50_UPI00047C4BC4: arsenic resistance protein ArsB	0.0471339735
+UniRef50_UPI00047C4BC4: arsenic resistance protein ArsB|unclassified	0.0471339735
+UniRef50_UPI0003B408C1: lipoyl synthase	0.0471323778
+UniRef50_UPI0003B408C1: lipoyl synthase|unclassified	0.0471323778
+UniRef50_Q5L0Z2: UPF0348 protein GK1103	0.0471290846
+UniRef50_Q5L0Z2: UPF0348 protein GK1103|unclassified	0.0471290846
+UniRef50_Q1RIM1: DNA topoisomerase 1	0.0471280556
+UniRef50_Q1RIM1: DNA topoisomerase 1|unclassified	0.0471280556
+UniRef50_W4Q5P9: Phage terminase large subunit	0.0471272937
+UniRef50_W4Q5P9: Phage terminase large subunit|unclassified	0.0471272937
+UniRef50_P87230: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial	0.0471270390
+UniRef50_P87230: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial|unclassified	0.0471270390
+UniRef50_UPI00037BE0B0: hypothetical protein	0.0471252578
+UniRef50_UPI00037BE0B0: hypothetical protein|unclassified	0.0471252578
+UniRef50_UPI0003B4DA54: metal-dependent hydrolase	0.0471191492
+UniRef50_UPI0003B4DA54: metal-dependent hydrolase|unclassified	0.0471191492
+UniRef50_UPI0003B3E7DC: glycosyl transferase	0.0471153474
+UniRef50_UPI0003B3E7DC: glycosyl transferase|unclassified	0.0471153474
+UniRef50_UPI00035A1C78: PREDICTED: nicotinate phosphoribosyltransferase, partial	0.0471153355
+UniRef50_UPI00035A1C78: PREDICTED: nicotinate phosphoribosyltransferase, partial|unclassified	0.0471153355
+UniRef50_E9G4G2	0.0471125218
+UniRef50_E9G4G2|unclassified	0.0471125218
+UniRef50_A0Z843: Tfp pilus assembly protein PilF	0.0471124263
+UniRef50_A0Z843: Tfp pilus assembly protein PilF|unclassified	0.0471124263
+UniRef50_K0VWN9: Outer membrane protein, OmpA family (Fragment)	0.0471080301
+UniRef50_K0VWN9: Outer membrane protein, OmpA family (Fragment)|unclassified	0.0471080301
+UniRef50_G9ZCZ3: Lytic murein transglycosylase	0.0471032483
+UniRef50_G9ZCZ3: Lytic murein transglycosylase|unclassified	0.0471032483
+UniRef50_W7C7S4	0.0471013192
+UniRef50_W7C7S4|unclassified	0.0471013192
+UniRef50_V5CGM3	0.0470980291
+UniRef50_V5CGM3|unclassified	0.0470980291
+UniRef50_UPI0004730FE2: hypothetical protein	0.0470950783
+UniRef50_UPI0004730FE2: hypothetical protein|unclassified	0.0470950783
+UniRef50_UPI000465454F: hypothetical protein	0.0470864871
+UniRef50_UPI000465454F: hypothetical protein|unclassified	0.0470864871
+UniRef50_Q7NPI6: Glutamate 5-kinase	0.0470856232
+UniRef50_Q7NPI6: Glutamate 5-kinase|unclassified	0.0470856232
+UniRef50_UPI0003A5CE1B: symporter	0.0470832857
+UniRef50_UPI0003A5CE1B: symporter|unclassified	0.0470832857
+UniRef50_UPI000381F070: hypothetical protein	0.0470811958
+UniRef50_UPI000381F070: hypothetical protein|unclassified	0.0470811958
+UniRef50_UPI00037DBC13: hypothetical protein	0.0470759605
+UniRef50_UPI00037DBC13: hypothetical protein|unclassified	0.0470759605
+UniRef50_B0K4D2: N-acetyl-gamma-glutamyl-phosphate reductase	0.0470746161
+UniRef50_B0K4D2: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.0470746161
+UniRef50_UPI000477E357: hypothetical protein	0.0470677957
+UniRef50_UPI000477E357: hypothetical protein|unclassified	0.0470677957
+UniRef50_F7X7U2	0.0470633490
+UniRef50_F7X7U2|unclassified	0.0470633490
+UniRef50_A7GMD4: 2-oxoglutarate dehydrogenase E1 component	0.0470618539
+UniRef50_A7GMD4: 2-oxoglutarate dehydrogenase E1 component|unclassified	0.0470618539
+UniRef50_I3XA84	0.0470583620
+UniRef50_I3XA84|unclassified	0.0470583620
+UniRef50_UPI000359A19A: PREDICTED: late cornified envelope protein 2D-like, partial	0.0470551075
+UniRef50_UPI000359A19A: PREDICTED: late cornified envelope protein 2D-like, partial|unclassified	0.0470551075
+UniRef50_UPI00035CC5CB: hypothetical protein	0.0470541150
+UniRef50_UPI00035CC5CB: hypothetical protein|unclassified	0.0470541150
+UniRef50_D8PYT5	0.0470534719
+UniRef50_D8PYT5|unclassified	0.0470534719
+UniRef50_UPI00037289AF: hypothetical protein	0.0470498612
+UniRef50_UPI00037289AF: hypothetical protein|unclassified	0.0470498612
+UniRef50_UPI0004666DD2: NAD-dependent dehydratase	0.0470475935
+UniRef50_UPI0004666DD2: NAD-dependent dehydratase|unclassified	0.0470475935
+UniRef50_Q11TY5	0.0470440860
+UniRef50_Q11TY5|unclassified	0.0470440860
+UniRef50_UPI0003639EBC: hypothetical protein	0.0470425097
+UniRef50_UPI0003639EBC: hypothetical protein|unclassified	0.0470425097
+UniRef50_B8CX90: Diaminopimelate epimerase	0.0470372357
+UniRef50_B8CX90: Diaminopimelate epimerase|unclassified	0.0470372357
+UniRef50_UPI0003B3D218: C4-dicarboxylate ABC transporter permease	0.0470326738
+UniRef50_UPI0003B3D218: C4-dicarboxylate ABC transporter permease|unclassified	0.0470326738
+UniRef50_UPI00047769C1: hypothetical protein, partial	0.0470309045
+UniRef50_UPI00047769C1: hypothetical protein, partial|unclassified	0.0470309045
+UniRef50_P48728: Aminomethyltransferase, mitochondrial	0.0470221692
+UniRef50_P48728: Aminomethyltransferase, mitochondrial|unclassified	0.0470221692
+UniRef50_D1C7F4: ABC transporter related protein	0.0470205631
+UniRef50_D1C7F4: ABC transporter related protein|unclassified	0.0470205631
+UniRef50_Q1IS40: NADH-quinone oxidoreductase subunit H 2	0.0470137444
+UniRef50_Q1IS40: NADH-quinone oxidoreductase subunit H 2|unclassified	0.0470137444
+UniRef50_UPI0003B53AE0: hypothetical protein	0.0470129213
+UniRef50_UPI0003B53AE0: hypothetical protein|unclassified	0.0470129213
+UniRef50_A1BFY3: Lipoyl synthase	0.0470126036
+UniRef50_A1BFY3: Lipoyl synthase|unclassified	0.0470126036
+UniRef50_F2GT11	0.0470125795
+UniRef50_F2GT11|unclassified	0.0470125795
+UniRef50_Q5QUC5: tRNA pseudouridine synthase D	0.0470124914
+UniRef50_Q5QUC5: tRNA pseudouridine synthase D|unclassified	0.0470124914
+UniRef50_H7G193	0.0470078482
+UniRef50_H7G193|unclassified	0.0470078482
+UniRef50_UPI00035E64FF: hypothetical protein	0.0470064507
+UniRef50_UPI00035E64FF: hypothetical protein|unclassified	0.0470064507
+UniRef50_UPI000468DEA0: hypothetical protein	0.0470056872
+UniRef50_UPI000468DEA0: hypothetical protein|unclassified	0.0470056872
+UniRef50_UPI000252C851: PREDICTED: LOW QUALITY PROTEIN: acetyl-coenzyme A carboxylase carboxyl transferase subunit beta-like, partial	0.0470047868
+UniRef50_UPI000252C851: PREDICTED: LOW QUALITY PROTEIN: acetyl-coenzyme A carboxylase carboxyl transferase subunit beta-like, partial|unclassified	0.0470047868
+UniRef50_F0RTY0	0.0469995023
+UniRef50_F0RTY0|unclassified	0.0469995023
+UniRef50_R3BX44	0.0469992995
+UniRef50_R3BX44|unclassified	0.0469992995
+UniRef50_A5Z5I2	0.0469968595
+UniRef50_A5Z5I2|unclassified	0.0469968595
+UniRef50_UPI0002B4CDBF	0.0469953070
+UniRef50_UPI0002B4CDBF|unclassified	0.0469953070
+UniRef50_UPI00037CB4A0: hypothetical protein	0.0469948048
+UniRef50_UPI00037CB4A0: hypothetical protein|unclassified	0.0469948048
+UniRef50_UPI000479FF9E: ABC transporter permease	0.0469920951
+UniRef50_UPI000479FF9E: ABC transporter permease|unclassified	0.0469920951
+UniRef50_A6SZJ6	0.0469868798
+UniRef50_A6SZJ6|unclassified	0.0469868798
+UniRef50_UPI00047646DC: peptide ABC transporter substrate-binding protein	0.0469851417
+UniRef50_UPI00047646DC: peptide ABC transporter substrate-binding protein|unclassified	0.0469851417
+UniRef50_UPI0003F91107: hypothetical protein	0.0469841217
+UniRef50_UPI0003F91107: hypothetical protein|unclassified	0.0469841217
+UniRef50_UPI00047C0BA7: short-chain dehydrogenase	0.0469834823
+UniRef50_UPI00047C0BA7: short-chain dehydrogenase|unclassified	0.0469834823
+UniRef50_Q64XQ0: Lipoyl synthase	0.0469821563
+UniRef50_Q64XQ0: Lipoyl synthase|unclassified	0.0469821563
+UniRef50_U6GEW2	0.0469805514
+UniRef50_U6GEW2|unclassified	0.0469805514
+UniRef50_Q6CKN8: KLLA0F09251p	0.0469781192
+UniRef50_Q6CKN8: KLLA0F09251p|unclassified	0.0469781192
+UniRef50_UPI00047664EE: hypothetical protein	0.0469705803
+UniRef50_UPI00047664EE: hypothetical protein|unclassified	0.0469705803
+UniRef50_Q7U8M8: Glutamyl-Q tRNA(Asp) synthetase	0.0469676605
+UniRef50_Q7U8M8: Glutamyl-Q tRNA(Asp) synthetase|unclassified	0.0469676605
+UniRef50_UPI0004634043: major facilitator transporter	0.0469670294
+UniRef50_UPI0004634043: major facilitator transporter|unclassified	0.0469670294
+UniRef50_UPI0002657478	0.0469641420
+UniRef50_UPI0002657478|unclassified	0.0469641420
+UniRef50_UPI000478D97F: sugar ABC transporter substrate-binding protein	0.0469596099
+UniRef50_UPI000478D97F: sugar ABC transporter substrate-binding protein|unclassified	0.0469596099
+UniRef50_UPI00047247AF: thioredoxin	0.0469574434
+UniRef50_UPI00047247AF: thioredoxin|unclassified	0.0469574434
+UniRef50_UPI0003B75FCC: SpeB arginase/agmatinase/formimionoglutamate hydrolase SpeB	0.0469557339
+UniRef50_UPI0003B75FCC: SpeB arginase/agmatinase/formimionoglutamate hydrolase SpeB|unclassified	0.0469557339
+UniRef50_UPI0000E1171F: hypothetical protein	0.0469522464
+UniRef50_UPI0000E1171F: hypothetical protein|unclassified	0.0469522464
+UniRef50_UPI000289DEC9: peptide ABC transporter substrate-binding protein	0.0469521003
+UniRef50_UPI000289DEC9: peptide ABC transporter substrate-binding protein|unclassified	0.0469521003
+UniRef50_UPI000372C1D3: hypothetical protein, partial	0.0469509219
+UniRef50_UPI000372C1D3: hypothetical protein, partial|unclassified	0.0469509219
+UniRef50_W5X851: Putative protease	0.0469475124
+UniRef50_W5X851: Putative protease|unclassified	0.0469475124
+UniRef50_T1ZVV9	0.0469463727
+UniRef50_T1ZVV9|unclassified	0.0469463727
+UniRef50_G2NRU1	0.0469458309
+UniRef50_G2NRU1|unclassified	0.0469458309
+UniRef50_A0A017HGI1: Outer membrane transporter, OMPP1/FadL/TodX family	0.0469454530
+UniRef50_A0A017HGI1: Outer membrane transporter, OMPP1/FadL/TodX family|unclassified	0.0469454530
+UniRef50_UPI0002658D57: PREDICTED: serine hydrolase-like protein-like	0.0469451754
+UniRef50_UPI0002658D57: PREDICTED: serine hydrolase-like protein-like|unclassified	0.0469451754
+UniRef50_UPI0003B3E06E: alcohol dehydrogenase	0.0469450474
+UniRef50_UPI0003B3E06E: alcohol dehydrogenase|unclassified	0.0469450474
+UniRef50_UPI0003EDCB7F: PREDICTED: acetyl-CoA acetyltransferase, mitochondrial	0.0469439155
+UniRef50_UPI0003EDCB7F: PREDICTED: acetyl-CoA acetyltransferase, mitochondrial|unclassified	0.0469439155
+UniRef50_UPI00039FEC41: hypothetical protein	0.0469430489
+UniRef50_UPI00039FEC41: hypothetical protein|unclassified	0.0469430489
+UniRef50_UPI0003780887: hypothetical protein	0.0469371119
+UniRef50_UPI0003780887: hypothetical protein|unclassified	0.0469371119
+UniRef50_Q7DKE3: Nitrile hydratase activator	0.0469357623
+UniRef50_Q7DKE3: Nitrile hydratase activator|unclassified	0.0469357623
+UniRef50_L8HFS0: Alkylation repair protein, putative	0.0469354525
+UniRef50_L8HFS0: Alkylation repair protein, putative|unclassified	0.0469354525
+UniRef50_UPI000366BCAE: hypothetical protein	0.0469228393
+UniRef50_UPI000366BCAE: hypothetical protein|unclassified	0.0469228393
+UniRef50_Q7MT83: Ribose-phosphate pyrophosphokinase	0.0469224443
+UniRef50_Q7MT83: Ribose-phosphate pyrophosphokinase|unclassified	0.0469224443
+UniRef50_W1X0M4	0.0469195144
+UniRef50_W1X0M4|unclassified	0.0469195144
+UniRef50_O06458: Trehalose synthase	0.0469152533
+UniRef50_O06458: Trehalose synthase|unclassified	0.0469152533
+UniRef50_R7ID45	0.0469120156
+UniRef50_R7ID45|unclassified	0.0469120156
+UniRef50_UPI00030D0981: hypothetical protein	0.0469112923
+UniRef50_UPI00030D0981: hypothetical protein|unclassified	0.0469112923
+UniRef50_A7ILV7: Cobalt transporter, subunit CbtA	0.0469111904
+UniRef50_A7ILV7: Cobalt transporter, subunit CbtA|unclassified	0.0469111904
+UniRef50_UPI000468E41F: methionine ABC transporter substrate-binding protein	0.0468914472
+UniRef50_UPI000468E41F: methionine ABC transporter substrate-binding protein|unclassified	0.0468914472
+UniRef50_A1U4W5	0.0468871617
+UniRef50_A1U4W5|unclassified	0.0468871617
+UniRef50_UPI0003B7B066: hypothetical protein	0.0468870860
+UniRef50_UPI0003B7B066: hypothetical protein|unclassified	0.0468870860
+UniRef50_UPI000479C4BA: MFS transporter	0.0468847060
+UniRef50_UPI000479C4BA: MFS transporter|unclassified	0.0468847060
+UniRef50_UPI0003B60D83: MFS transporter, partial	0.0468837743
+UniRef50_UPI0003B60D83: MFS transporter, partial|unclassified	0.0468837743
+UniRef50_UPI00047A6B55: hypothetical protein	0.0468802489
+UniRef50_UPI00047A6B55: hypothetical protein|unclassified	0.0468802489
+UniRef50_UPI000349C5DE: hypothetical protein	0.0468752234
+UniRef50_UPI000349C5DE: hypothetical protein|unclassified	0.0468752234
+UniRef50_UPI0004078262: hypothetical protein	0.0468729272
+UniRef50_UPI0004078262: hypothetical protein|unclassified	0.0468729272
+UniRef50_E6WG58: Periplasmic binding protein	0.0468691727
+UniRef50_E6WG58: Periplasmic binding protein|unclassified	0.0468691727
+UniRef50_R7VTK3: Neurofilament heavy polypeptide	0.0468683373
+UniRef50_R7VTK3: Neurofilament heavy polypeptide|unclassified	0.0468683373
+UniRef50_UPI0004640BF2: hypothetical protein	0.0468656725
+UniRef50_UPI0004640BF2: hypothetical protein|unclassified	0.0468656725
+UniRef50_UPI0003B415C3: phospholipase C	0.0468636862
+UniRef50_UPI0003B415C3: phospholipase C|unclassified	0.0468636862
+UniRef50_UPI00035E09FF: hypothetical protein	0.0468620051
+UniRef50_UPI00035E09FF: hypothetical protein|unclassified	0.0468620051
+UniRef50_B2AEC5: Podospora anserina S mat+ genomic DNA chromosome 5, supercontig 1	0.0468599717
+UniRef50_B2AEC5: Podospora anserina S mat+ genomic DNA chromosome 5, supercontig 1|unclassified	0.0468599717
+UniRef50_UPI00022CAC9E: PREDICTED: hypothetical protein LOC100740881	0.0468520014
+UniRef50_UPI00022CAC9E: PREDICTED: hypothetical protein LOC100740881|unclassified	0.0468520014
+UniRef50_UPI00039594D4: PREDICTED: formin-like protein 20-like	0.0468503439
+UniRef50_UPI00039594D4: PREDICTED: formin-like protein 20-like|unclassified	0.0468503439
+UniRef50_UPI0003649AD8: hypothetical protein	0.0468490408
+UniRef50_UPI0003649AD8: hypothetical protein|unclassified	0.0468490408
+UniRef50_T6KAH5	0.0468487958
+UniRef50_T6KAH5|unclassified	0.0468487958
+UniRef50_Q2LR56: UDP-N-acetylenolpyruvoylglucosamine reductase	0.0468481771
+UniRef50_Q2LR56: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.0468481771
+UniRef50_I4WF08	0.0468481476
+UniRef50_I4WF08|unclassified	0.0468481476
+UniRef50_E1VQB8: Probable nucleoside-diphosphate-sugar epimerase	0.0468480783
+UniRef50_E1VQB8: Probable nucleoside-diphosphate-sugar epimerase|unclassified	0.0468480783
+UniRef50_W0YYH6	0.0468459840
+UniRef50_W0YYH6|unclassified	0.0468459840
+UniRef50_UPI00047A6089: hypothetical protein, partial	0.0468458541
+UniRef50_UPI00047A6089: hypothetical protein, partial|unclassified	0.0468458541
+UniRef50_UPI00034BDD3B: hypothetical protein	0.0468424832
+UniRef50_UPI00034BDD3B: hypothetical protein|unclassified	0.0468424832
+UniRef50_A5D1A4: Dihydroorotase	0.0468412679
+UniRef50_A5D1A4: Dihydroorotase|unclassified	0.0468412679
+UniRef50_UPI00016AAA4C: MFS transporter	0.0468352611
+UniRef50_UPI00016AAA4C: MFS transporter|unclassified	0.0468352611
+UniRef50_U6HDP6: Stomatin	0.0468290979
+UniRef50_U6HDP6: Stomatin|unclassified	0.0468290979
+UniRef50_A3DKL1: Peroxiredoxin	0.0468273582
+UniRef50_A3DKL1: Peroxiredoxin|unclassified	0.0468273582
+UniRef50_UPI00036633F7: hypothetical protein	0.0468252303
+UniRef50_UPI00036633F7: hypothetical protein|unclassified	0.0468252303
+UniRef50_UPI00044428D0: PREDICTED: methionine synthase	0.0468238996
+UniRef50_UPI00044428D0: PREDICTED: methionine synthase|unclassified	0.0468238996
+UniRef50_UPI00022CA98C: PREDICTED: DNA-directed RNA polymerase subunit beta''''-like	0.0468146175
+UniRef50_UPI00022CA98C: PREDICTED: DNA-directed RNA polymerase subunit beta''''-like|unclassified	0.0468146175
+UniRef50_UPI000476A43C: arabinonolactonase	0.0468093577
+UniRef50_UPI000476A43C: arabinonolactonase|unclassified	0.0468093577
+UniRef50_G4L1U9: Tripartite tricarboxylate transporter family protein	0.0467948644
+UniRef50_G4L1U9: Tripartite tricarboxylate transporter family protein|unclassified	0.0467948644
+UniRef50_UPI0002F99648: MFS transporter	0.0467943017
+UniRef50_UPI0002F99648: MFS transporter|unclassified	0.0467943017
+UniRef50_UPI000350BA5C	0.0467921053
+UniRef50_UPI000350BA5C|unclassified	0.0467921053
+UniRef50_UPI000410CDC3: hypothetical protein	0.0467893560
+UniRef50_UPI000410CDC3: hypothetical protein|unclassified	0.0467893560
+UniRef50_UPI0002555726: macrolide ABC transporter ATP-binding protein	0.0467872044
+UniRef50_UPI0002555726: macrolide ABC transporter ATP-binding protein|unclassified	0.0467872044
+UniRef50_Q4FM10: Arginine--tRNA ligase	0.0467869475
+UniRef50_Q4FM10: Arginine--tRNA ligase|unclassified	0.0467869475
+UniRef50_UPI00035FA621: hypothetical protein	0.0467829088
+UniRef50_UPI00035FA621: hypothetical protein|unclassified	0.0467829088
+UniRef50_S8FB41	0.0467814027
+UniRef50_S8FB41|unclassified	0.0467814027
+UniRef50_X1YA55	0.0467773404
+UniRef50_X1YA55|unclassified	0.0467773404
+UniRef50_UPI00045EA5B4: LysR family transcriptional regulator	0.0467669922
+UniRef50_UPI00045EA5B4: LysR family transcriptional regulator|unclassified	0.0467669922
+UniRef50_E1X646	0.0467654240
+UniRef50_E1X646|unclassified	0.0467654240
+UniRef50_UPI000273A6BD	0.0467606166
+UniRef50_UPI000273A6BD|unclassified	0.0467606166
+UniRef50_E4X2Q4: Whole genome shotgun assembly, reference scaffold set, scaffold scaffold_9	0.0467598053
+UniRef50_E4X2Q4: Whole genome shotgun assembly, reference scaffold set, scaffold scaffold_9|unclassified	0.0467598053
+UniRef50_Q0VTE2: Methionyl-tRNA formyltransferase	0.0467570655
+UniRef50_Q0VTE2: Methionyl-tRNA formyltransferase|unclassified	0.0467570655
+UniRef50_J3IYQ7	0.0467517711
+UniRef50_J3IYQ7|unclassified	0.0467517711
+UniRef50_D6M5D0	0.0467501408
+UniRef50_D6M5D0|unclassified	0.0467501408
+UniRef50_D7BHE9: Transcriptional activator domain protein	0.0467417954
+UniRef50_D7BHE9: Transcriptional activator domain protein|unclassified	0.0467417954
+UniRef50_F8VKS5	0.0467411210
+UniRef50_F8VKS5|unclassified	0.0467411210
+UniRef50_H9JZ17	0.0467394381
+UniRef50_H9JZ17|unclassified	0.0467394381
+UniRef50_UPI00036ED5FB: hypothetical protein	0.0467365573
+UniRef50_UPI00036ED5FB: hypothetical protein|unclassified	0.0467365573
+UniRef50_UPI00046E99E5: hypothetical protein	0.0467358803
+UniRef50_UPI00046E99E5: hypothetical protein|unclassified	0.0467358803
+UniRef50_D0GIE3	0.0467333063
+UniRef50_D0GIE3|unclassified	0.0467333063
+UniRef50_Q11QI0	0.0467332896
+UniRef50_Q11QI0|unclassified	0.0467332896
+UniRef50_UPI0002376C62: formate dehydrogenase, alpha subunit	0.0467309952
+UniRef50_UPI0002376C62: formate dehydrogenase, alpha subunit|unclassified	0.0467309952
+UniRef50_UPI000477F5D2: hypothetical protein	0.0467297498
+UniRef50_UPI000477F5D2: hypothetical protein|unclassified	0.0467297498
+UniRef50_R6RQK4	0.0467260384
+UniRef50_R6RQK4|unclassified	0.0467260384
+UniRef50_UPI0003F7EA69: 5-oxoprolinase	0.0467249404
+UniRef50_UPI0003F7EA69: 5-oxoprolinase|unclassified	0.0467249404
+UniRef50_UPI0003690141: hypothetical protein	0.0467247152
+UniRef50_UPI0003690141: hypothetical protein|unclassified	0.0467247152
+UniRef50_Q2NTJ8: tRNA (mo5U34)-methyltransferase	0.0467227362
+UniRef50_Q2NTJ8: tRNA (mo5U34)-methyltransferase|unclassified	0.0467227362
+UniRef50_UPI000371B6BB: hypothetical protein	0.0467224838
+UniRef50_UPI000371B6BB: hypothetical protein|unclassified	0.0467224838
+UniRef50_UPI00037E184F: hypothetical protein	0.0467206138
+UniRef50_UPI00037E184F: hypothetical protein|unclassified	0.0467206138
+UniRef50_UPI00037B9C6D: hypothetical protein	0.0467060909
+UniRef50_UPI00037B9C6D: hypothetical protein|unclassified	0.0467060909
+UniRef50_UPI0004730717: hypothetical protein, partial	0.0467006848
+UniRef50_UPI0004730717: hypothetical protein, partial|unclassified	0.0467006848
+UniRef50_UPI000470ADAC: hydroxymethylpyrimidine kinase	0.0466842718
+UniRef50_UPI000470ADAC: hydroxymethylpyrimidine kinase|unclassified	0.0466842718
+UniRef50_X1YG35	0.0466832080
+UniRef50_X1YG35|unclassified	0.0466832080
+UniRef50_Q8KDG0: Prolipoprotein diacylglyceryl transferase	0.0466797624
+UniRef50_Q8KDG0: Prolipoprotein diacylglyceryl transferase|unclassified	0.0466797624
+UniRef50_A6H1Q5: NADH-quinone oxidoreductase subunit I	0.0466788820
+UniRef50_A6H1Q5: NADH-quinone oxidoreductase subunit I|unclassified	0.0466788820
+UniRef50_R7L9U3	0.0466745479
+UniRef50_R7L9U3|unclassified	0.0466745479
+UniRef50_V3IFU6	0.0466514120
+UniRef50_V3IFU6|unclassified	0.0466514120
+UniRef50_UPI00016A8B78: excinuclease ABC, C subunit, partial	0.0466489978
+UniRef50_UPI00016A8B78: excinuclease ABC, C subunit, partial|unclassified	0.0466489978
+UniRef50_UPI000248D568: putative GntR family transcriptional regulator	0.0466469632
+UniRef50_UPI000248D568: putative GntR family transcriptional regulator|unclassified	0.0466469632
+UniRef50_K0VVL7: Excinuclease ABC subunit A	0.0466440700
+UniRef50_K0VVL7: Excinuclease ABC subunit A|unclassified	0.0466440700
+UniRef50_I0JQZ0	0.0466429626
+UniRef50_I0JQZ0|unclassified	0.0466429626
+UniRef50_UPI0003B6B0F4: hypothetical protein	0.0466418711
+UniRef50_UPI0003B6B0F4: hypothetical protein|unclassified	0.0466418711
+UniRef50_V7EQE6	0.0466404017
+UniRef50_V7EQE6|unclassified	0.0466404017
+UniRef50_P33315: Transketolase 2	0.0466394757
+UniRef50_P33315: Transketolase 2|unclassified	0.0466394757
+UniRef50_UPI000473E3C5: hypothetical protein	0.0466341801
+UniRef50_UPI000473E3C5: hypothetical protein|unclassified	0.0466341801
+UniRef50_UPI000368E621: hypothetical protein	0.0466325234
+UniRef50_UPI000368E621: hypothetical protein|unclassified	0.0466325234
+UniRef50_UPI00036962D1: hypothetical protein, partial	0.0466284420
+UniRef50_UPI00036962D1: hypothetical protein, partial|unclassified	0.0466284420
+UniRef50_W7YG53: ATPase	0.0466263556
+UniRef50_W7YG53: ATPase|unclassified	0.0466263556
+UniRef50_R9UXV1: Baseplate assembly protein	0.0466256993
+UniRef50_R9UXV1: Baseplate assembly protein|unclassified	0.0466256993
+UniRef50_P42393: Tryptophan biosynthesis protein TrpCF	0.0466221812
+UniRef50_P42393: Tryptophan biosynthesis protein TrpCF|unclassified	0.0466221812
+UniRef50_UPI000328DCF0: PREDICTED: mitochondrial tRNA-specific 2-thiouridylase 1 isoform 7	0.0466172361
+UniRef50_UPI000328DCF0: PREDICTED: mitochondrial tRNA-specific 2-thiouridylase 1 isoform 7|unclassified	0.0466172361
+UniRef50_Q55GI5: L-2-hydroxyglutarate dehydrogenase, mitochondrial	0.0466151365
+UniRef50_Q55GI5: L-2-hydroxyglutarate dehydrogenase, mitochondrial|unclassified	0.0466151365
+UniRef50_UPI00035DC5BA: MULTISPECIES: hypothetical protein	0.0466130243
+UniRef50_UPI00035DC5BA: MULTISPECIES: hypothetical protein|unclassified	0.0466130243
+UniRef50_A6Q4A5	0.0466114140
+UniRef50_A6Q4A5|unclassified	0.0466114140
+UniRef50_UPI00036E017D: hypothetical protein	0.0466086747
+UniRef50_UPI00036E017D: hypothetical protein|unclassified	0.0466086747
+UniRef50_UPI0003B5D266: RNA polymerase sigma70 factor	0.0466057700
+UniRef50_UPI0003B5D266: RNA polymerase sigma70 factor|unclassified	0.0466057700
+UniRef50_UPI00041CE43E: MULTISPECIES: NADP-dependent oxidoreductase	0.0466031293
+UniRef50_UPI00041CE43E: MULTISPECIES: NADP-dependent oxidoreductase|unclassified	0.0466031293
+UniRef50_D1B330	0.0466030576
+UniRef50_D1B330|unclassified	0.0466030576
+UniRef50_UPI00046ADEBA: ABC transporter ATP-binding protein	0.0466013327
+UniRef50_UPI00046ADEBA: ABC transporter ATP-binding protein|unclassified	0.0466013327
+UniRef50_Q89XA0: 3-isopropylmalate dehydrogenase 1	0.0466005297
+UniRef50_Q89XA0: 3-isopropylmalate dehydrogenase 1|unclassified	0.0466005297
+UniRef50_UPI0003B34776: LysR family transcriptional regulator	0.0465992681
+UniRef50_UPI0003B34776: LysR family transcriptional regulator|unclassified	0.0465992681
+UniRef50_X1MX97: Marine sediment metagenome DNA, contig: S06H3_L01917	0.0465918036
+UniRef50_X1MX97: Marine sediment metagenome DNA, contig: S06H3_L01917|unclassified	0.0465918036
+UniRef50_K9ZYV5: Diguanylate cyclase (GGDEF) domain-containing protein	0.0465903476
+UniRef50_K9ZYV5: Diguanylate cyclase (GGDEF) domain-containing protein|unclassified	0.0465903476
+UniRef50_UPI00037337C5: hypothetical protein	0.0465899111
+UniRef50_UPI00037337C5: hypothetical protein|unclassified	0.0465899111
+UniRef50_B2HNH3: PE-PGRS family protein, PE_PGRS59	0.0465830685
+UniRef50_B2HNH3: PE-PGRS family protein, PE_PGRS59|unclassified	0.0465830685
+UniRef50_UPI0002B44103: PREDICTED: valine--tRNA ligase-like, partial	0.0465791062
+UniRef50_UPI0002B44103: PREDICTED: valine--tRNA ligase-like, partial|unclassified	0.0465791062
+UniRef50_UPI00045D9861: PREDICTED: serine/arginine repetitive matrix protein 2-like	0.0465754109
+UniRef50_UPI00045D9861: PREDICTED: serine/arginine repetitive matrix protein 2-like|unclassified	0.0465754109
+UniRef50_UPI000225AAD5: methyl-accepting chemotaxis sensory transducer	0.0465731537
+UniRef50_UPI000225AAD5: methyl-accepting chemotaxis sensory transducer|unclassified	0.0465731537
+UniRef50_P50455: 3-isopropylmalate dehydrogenase	0.0465727852
+UniRef50_P50455: 3-isopropylmalate dehydrogenase|unclassified	0.0465727852
+UniRef50_UPI0003626827: hypothetical protein	0.0465715978
+UniRef50_UPI0003626827: hypothetical protein|unclassified	0.0465715978
+UniRef50_A5EHS7	0.0465703499
+UniRef50_A5EHS7|unclassified	0.0465703499
+UniRef50_UPI00047A6719: hypothetical protein	0.0465701868
+UniRef50_UPI00047A6719: hypothetical protein|unclassified	0.0465701868
+UniRef50_Q9KF46: Adenine deaminase	0.0465639932
+UniRef50_Q9KF46: Adenine deaminase|unclassified	0.0465639932
+UniRef50_UPI0003A8BB10: zinc transporter ZitB	0.0465623733
+UniRef50_UPI0003A8BB10: zinc transporter ZitB|unclassified	0.0465623733
+UniRef50_A5CY25	0.0465620961
+UniRef50_A5CY25|unclassified	0.0465620961
+UniRef50_K4KI20	0.0465598230
+UniRef50_K4KI20|unclassified	0.0465598230
+UniRef50_UPI00037869C0: hypothetical protein	0.0465592129
+UniRef50_UPI00037869C0: hypothetical protein|unclassified	0.0465592129
+UniRef50_L0K916	0.0465576785
+UniRef50_L0K916|unclassified	0.0465576785
+UniRef50_D8UI95	0.0465533884
+UniRef50_D8UI95|unclassified	0.0465533884
+UniRef50_UPI0003B390C8: cell division protein FtsW	0.0465458104
+UniRef50_UPI0003B390C8: cell division protein FtsW|unclassified	0.0465458104
+UniRef50_UPI0004631CAE: hypothetical protein	0.0465439534
+UniRef50_UPI0004631CAE: hypothetical protein|unclassified	0.0465439534
+UniRef50_P39630: dTDP-glucose 4,6-dehydratase	0.0465329044
+UniRef50_P39630: dTDP-glucose 4,6-dehydratase|unclassified	0.0465329044
+UniRef50_UPI0004630CCF: hypothetical protein	0.0465267773
+UniRef50_UPI0004630CCF: hypothetical protein|unclassified	0.0465267773
+UniRef50_UPI00037F105A: hypothetical protein	0.0465246692
+UniRef50_UPI00037F105A: hypothetical protein|unclassified	0.0465246692
+UniRef50_UPI0003B35DDB: hypothetical protein	0.0465126183
+UniRef50_UPI0003B35DDB: hypothetical protein|unclassified	0.0465126183
+UniRef50_UPI000464150B: hypothetical protein	0.0465110447
+UniRef50_UPI000464150B: hypothetical protein|unclassified	0.0465110447
+UniRef50_UPI000248515B: hypothetical protein	0.0465050517
+UniRef50_UPI000248515B: hypothetical protein|unclassified	0.0465050517
+UniRef50_T3NFH9	0.0464992249
+UniRef50_T3NFH9|unclassified	0.0464992249
+UniRef50_R7ZKF1	0.0464981232
+UniRef50_R7ZKF1|unclassified	0.0464981232
+UniRef50_E3F4A6	0.0464956719
+UniRef50_E3F4A6|unclassified	0.0464956719
+UniRef50_UPI000255BB5A: transcriptional regulator	0.0464955176
+UniRef50_UPI000255BB5A: transcriptional regulator|unclassified	0.0464955176
+UniRef50_V6MEE7	0.0464945587
+UniRef50_V6MEE7|unclassified	0.0464945587
+UniRef50_UPI0004666DEE: hypothetical protein, partial	0.0464935177
+UniRef50_UPI0004666DEE: hypothetical protein, partial|unclassified	0.0464935177
+UniRef50_F0S296	0.0464934986
+UniRef50_F0S296|unclassified	0.0464934986
+UniRef50_P43886: Serine acetyltransferase	0.0464924257
+UniRef50_P43886: Serine acetyltransferase|unclassified	0.0464924257
+UniRef50_Q9KH71: Pyrophosphate--fructose 6-phosphate 1-phosphotransferase	0.0464921391
+UniRef50_Q9KH71: Pyrophosphate--fructose 6-phosphate 1-phosphotransferase|unclassified	0.0464921391
+UniRef50_X7E7E5	0.0464907781
+UniRef50_X7E7E5|unclassified	0.0464907781
+UniRef50_UPI00028A14C4: peptide ABC transporter permease	0.0464902125
+UniRef50_UPI00028A14C4: peptide ABC transporter permease|unclassified	0.0464902125
+UniRef50_UPI0003318922: PREDICTED: putative unconventional myosin-XVB-like	0.0464821265
+UniRef50_UPI0003318922: PREDICTED: putative unconventional myosin-XVB-like|unclassified	0.0464821265
+UniRef50_A4BCZ8: Xanthine and CO dehydrogenase maturation factor, XdhC/CoxF family protein	0.0464818953
+UniRef50_A4BCZ8: Xanthine and CO dehydrogenase maturation factor, XdhC/CoxF family protein|unclassified	0.0464818953
+UniRef50_UPI000361BD76: hypothetical protein	0.0464792762
+UniRef50_UPI000361BD76: hypothetical protein|unclassified	0.0464792762
+UniRef50_U3KJ54	0.0464744815
+UniRef50_U3KJ54|unclassified	0.0464744815
+UniRef50_UPI0003680EC6: hypothetical protein	0.0464662508
+UniRef50_UPI0003680EC6: hypothetical protein|unclassified	0.0464662508
+UniRef50_K2NPW6: Terminase	0.0464649880
+UniRef50_K2NPW6: Terminase|unclassified	0.0464649880
+UniRef50_Q9X2Z4: PXO1-23	0.0464648218
+UniRef50_Q9X2Z4: PXO1-23|unclassified	0.0464648218
+UniRef50_R6D919: Toxin-antitoxin system antitoxin component Xre domain protein	0.0464549844
+UniRef50_R6D919: Toxin-antitoxin system antitoxin component Xre domain protein|unclassified	0.0464549844
+UniRef50_UPI0003795AC9: MULTISPECIES: hypothetical protein	0.0464479379
+UniRef50_UPI0003795AC9: MULTISPECIES: hypothetical protein|unclassified	0.0464479379
+UniRef50_UPI0003B4AB4D: ABC transporter	0.0464473736
+UniRef50_UPI0003B4AB4D: ABC transporter|unclassified	0.0464473736
+UniRef50_UPI00037F7A66: hypothetical protein	0.0464414787
+UniRef50_UPI00037F7A66: hypothetical protein|unclassified	0.0464414787
+UniRef50_UPI0001BC2D8F: putative enterobactin synthetase component A (2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase)	0.0464411020
+UniRef50_UPI0001BC2D8F: putative enterobactin synthetase component A (2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase)|unclassified	0.0464411020
+UniRef50_S3XYC8	0.0464406440
+UniRef50_S3XYC8|unclassified	0.0464406440
+UniRef50_UPI000467A23F: hypothetical protein	0.0464306887
+UniRef50_UPI000467A23F: hypothetical protein|unclassified	0.0464306887
+UniRef50_UPI0003D7153B: PREDICTED: zinc finger protein ZIC 5 isoform X1	0.0464287763
+UniRef50_UPI0003D7153B: PREDICTED: zinc finger protein ZIC 5 isoform X1|unclassified	0.0464287763
+UniRef50_P06557: Anthranilate synthase component 1	0.0464254889
+UniRef50_P06557: Anthranilate synthase component 1|unclassified	0.0464254889
+UniRef50_UPI00036D3D0C: hypothetical protein	0.0464198074
+UniRef50_UPI00036D3D0C: hypothetical protein|unclassified	0.0464198074
+UniRef50_R6Z9M3	0.0464180838
+UniRef50_R6Z9M3|unclassified	0.0464180838
+UniRef50_C4L534: Histidine--tRNA ligase	0.0464179642
+UniRef50_C4L534: Histidine--tRNA ligase|unclassified	0.0464179642
+UniRef50_UPI0003486737: hypothetical protein	0.0464168599
+UniRef50_UPI0003486737: hypothetical protein|unclassified	0.0464168599
+UniRef50_I0FXA2	0.0464100123
+UniRef50_I0FXA2|unclassified	0.0464100123
+UniRef50_UPI0003744C66: hypothetical protein	0.0464091563
+UniRef50_UPI0003744C66: hypothetical protein|unclassified	0.0464091563
+UniRef50_UPI0004657E7D: hypothetical protein	0.0464088122
+UniRef50_UPI0004657E7D: hypothetical protein|unclassified	0.0464088122
+UniRef50_E6W0I2	0.0464078538
+UniRef50_E6W0I2|unclassified	0.0464078538
+UniRef50_UPI00034A0338: hypothetical protein	0.0464071944
+UniRef50_UPI00034A0338: hypothetical protein|unclassified	0.0464071944
+UniRef50_UPI0003AD5CF6: hypothetical protein	0.0464067814
+UniRef50_UPI0003AD5CF6: hypothetical protein|unclassified	0.0464067814
+UniRef50_UPI00046301E1: hypothetical protein	0.0464064064
+UniRef50_UPI00046301E1: hypothetical protein|unclassified	0.0464064064
+UniRef50_UPI000472E33E: hypothetical protein	0.0464062987
+UniRef50_UPI000472E33E: hypothetical protein|unclassified	0.0464062987
+UniRef50_A9AB27: Diaminopimelate epimerase	0.0464016977
+UniRef50_A9AB27: Diaminopimelate epimerase|unclassified	0.0464016977
+UniRef50_S2WM30	0.0464009469
+UniRef50_S2WM30|unclassified	0.0464009469
+UniRef50_UPI0001FFEE54: major facilitator superfamily protein	0.0463986045
+UniRef50_UPI0001FFEE54: major facilitator superfamily protein|unclassified	0.0463986045
+UniRef50_Q72U21: 4-hydroxy-tetrahydrodipicolinate reductase	0.0463973525
+UniRef50_Q72U21: 4-hydroxy-tetrahydrodipicolinate reductase|unclassified	0.0463973525
+UniRef50_UPI00036169CB: hypothetical protein	0.0463962080
+UniRef50_UPI00036169CB: hypothetical protein|unclassified	0.0463962080
+UniRef50_A0A044VGV3	0.0463952736
+UniRef50_A0A044VGV3|unclassified	0.0463952736
+UniRef50_UPI0004753DBC: LysR family transcriptional regulator	0.0463895880
+UniRef50_UPI0004753DBC: LysR family transcriptional regulator|unclassified	0.0463895880
+UniRef50_UPI00045D782A: PREDICTED: acetyl-coenzyme A synthetase 2-like, mitochondrial	0.0463887080
+UniRef50_UPI00045D782A: PREDICTED: acetyl-coenzyme A synthetase 2-like, mitochondrial|unclassified	0.0463887080
+UniRef50_UPI0004667EEC: MULTISPECIES: ABC transporter ATP-binding protein	0.0463863221
+UniRef50_UPI0004667EEC: MULTISPECIES: ABC transporter ATP-binding protein|unclassified	0.0463863221
+UniRef50_A8HLP2	0.0463831431
+UniRef50_A8HLP2|unclassified	0.0463831431
+UniRef50_UPI0003B710E4: cell division protein FtsE	0.0463791669
+UniRef50_UPI0003B710E4: cell division protein FtsE|unclassified	0.0463791669
+UniRef50_UPI00037BD3FB: hypothetical protein	0.0463735062
+UniRef50_UPI00037BD3FB: hypothetical protein|unclassified	0.0463735062
+UniRef50_UPI00036650E1: ATPase AAA	0.0463675021
+UniRef50_UPI00036650E1: ATPase AAA|unclassified	0.0463675021
+UniRef50_UPI0004719A88: hypothetical protein	0.0463658268
+UniRef50_UPI0004719A88: hypothetical protein|unclassified	0.0463658268
+UniRef50_N2AMR6	0.0463648617
+UniRef50_N2AMR6|unclassified	0.0463648617
+UniRef50_F5Y3X7: Candidate transporter	0.0463574234
+UniRef50_F5Y3X7: Candidate transporter|unclassified	0.0463574234
+UniRef50_UPI0003820AE4: hypothetical protein	0.0463527741
+UniRef50_UPI0003820AE4: hypothetical protein|unclassified	0.0463527741
+UniRef50_UPI00047136FC: dTDP-glucose 4,6-dehydratase	0.0463524083
+UniRef50_UPI00047136FC: dTDP-glucose 4,6-dehydratase|unclassified	0.0463524083
+UniRef50_Q6MDD9: 4-hydroxy-tetrahydrodipicolinate synthase	0.0463514591
+UniRef50_Q6MDD9: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0463514591
+UniRef50_UPI000313E15A: hypothetical protein	0.0463500137
+UniRef50_UPI000313E15A: hypothetical protein|unclassified	0.0463500137
+UniRef50_A8L952	0.0463497327
+UniRef50_A8L952|unclassified	0.0463497327
+UniRef50_UPI00036B242C: hypothetical protein	0.0463491334
+UniRef50_UPI00036B242C: hypothetical protein|unclassified	0.0463491334
+UniRef50_R5GS64	0.0463476824
+UniRef50_R5GS64|unclassified	0.0463476824
+UniRef50_UPI00040F72AA: diacylglyceryl transferase	0.0463458475
+UniRef50_UPI00040F72AA: diacylglyceryl transferase|unclassified	0.0463458475
+UniRef50_UPI0003647F36: ATPase AAA, partial	0.0463384984
+UniRef50_UPI0003647F36: ATPase AAA, partial|unclassified	0.0463384984
+UniRef50_UPI00047CD845: cobalamin biosynthesis protein	0.0463367454
+UniRef50_UPI00047CD845: cobalamin biosynthesis protein|unclassified	0.0463367454
+UniRef50_UPI0002E5E19B: hypothetical protein	0.0463358289
+UniRef50_UPI0002E5E19B: hypothetical protein|unclassified	0.0463358289
+UniRef50_UPI000360D065: hypothetical protein	0.0463356545
+UniRef50_UPI000360D065: hypothetical protein|unclassified	0.0463356545
+UniRef50_E1V7V0	0.0463310564
+UniRef50_E1V7V0|unclassified	0.0463310564
+UniRef50_UPI0003785D43: hypothetical protein	0.0463297869
+UniRef50_UPI0003785D43: hypothetical protein|unclassified	0.0463297869
+UniRef50_Q92HI8: Pyruvate, phosphate dikinase	0.0463289422
+UniRef50_Q92HI8: Pyruvate, phosphate dikinase|unclassified	0.0463289422
+UniRef50_R9TNA8	0.0463220086
+UniRef50_R9TNA8|unclassified	0.0463220086
+UniRef50_UPI0003660433: hypothetical protein	0.0463182543
+UniRef50_UPI0003660433: hypothetical protein|unclassified	0.0463182543
+UniRef50_UPI00037ACE4F: hypothetical protein	0.0463142185
+UniRef50_UPI00037ACE4F: hypothetical protein|unclassified	0.0463142185
+UniRef50_UPI0003719671: hypothetical protein	0.0463140829
+UniRef50_UPI0003719671: hypothetical protein|unclassified	0.0463140829
+UniRef50_UPI000225AC5C: ABC-3 protein	0.0463104403
+UniRef50_UPI000225AC5C: ABC-3 protein|unclassified	0.0463104403
+UniRef50_UPI00036D7E16: hypothetical protein	0.0463078061
+UniRef50_UPI00036D7E16: hypothetical protein|unclassified	0.0463078061
+UniRef50_Q0SSR9	0.0463077091
+UniRef50_Q0SSR9|unclassified	0.0463077091
+UniRef50_Q2N6Q7: Exodeoxyribonuclease 7 large subunit	0.0463024027
+UniRef50_Q2N6Q7: Exodeoxyribonuclease 7 large subunit|unclassified	0.0463024027
+UniRef50_UPI0003F4BE41: amidohydrolase	0.0462997302
+UniRef50_UPI0003F4BE41: amidohydrolase|unclassified	0.0462997302
+UniRef50_O66576: Anthranilate phosphoribosyltransferase	0.0462992353
+UniRef50_O66576: Anthranilate phosphoribosyltransferase|unclassified	0.0462992353
+UniRef50_Q7VJB6: Phosphoglycerate kinase	0.0462968657
+UniRef50_Q7VJB6: Phosphoglycerate kinase|unclassified	0.0462968657
+UniRef50_A0A055F483: PE-PGRS family protein PE_PGRS6	0.0462948322
+UniRef50_A0A055F483: PE-PGRS family protein PE_PGRS6|unclassified	0.0462948322
+UniRef50_UPI00036FC8AF: hypothetical protein	0.0462921506
+UniRef50_UPI00036FC8AF: hypothetical protein|unclassified	0.0462921506
+UniRef50_C9LQX9	0.0462913843
+UniRef50_C9LQX9|unclassified	0.0462913843
+UniRef50_UPI0003608BB9: hypothetical protein	0.0462899257
+UniRef50_UPI0003608BB9: hypothetical protein|unclassified	0.0462899257
+UniRef50_P56129: Diaminopimelate decarboxylase	0.0462880207
+UniRef50_P56129: Diaminopimelate decarboxylase|unclassified	0.0462880207
+UniRef50_UPI00047CA799: hypothetical protein	0.0462860449
+UniRef50_UPI00047CA799: hypothetical protein|unclassified	0.0462860449
+UniRef50_UPI0003EE67F6: hypothetical protein	0.0462859599
+UniRef50_UPI0003EE67F6: hypothetical protein|unclassified	0.0462859599
+UniRef50_UPI00047ED767: cation transporter	0.0462776085
+UniRef50_UPI00047ED767: cation transporter|unclassified	0.0462776085
+UniRef50_E6TSE3	0.0462755404
+UniRef50_E6TSE3|unclassified	0.0462755404
+UniRef50_UPI00047A7E03: hypothetical protein	0.0462734761
+UniRef50_UPI00047A7E03: hypothetical protein|unclassified	0.0462734761
+UniRef50_W1S175	0.0462731156
+UniRef50_W1S175|unclassified	0.0462731156
+UniRef50_P28274: CTP synthase 1	0.0462728658
+UniRef50_P28274: CTP synthase 1|unclassified	0.0462728658
+UniRef50_Q0AM89	0.0462540201
+UniRef50_Q0AM89|unclassified	0.0462540201
+UniRef50_UPI00029B24CC: ABC transporter ATP-binding protein	0.0462507731
+UniRef50_UPI00029B24CC: ABC transporter ATP-binding protein|unclassified	0.0462507731
+UniRef50_O32219: Cadmium, zinc and cobalt-transporting ATPase	0.0462478631
+UniRef50_O32219: Cadmium, zinc and cobalt-transporting ATPase|unclassified	0.0462478631
+UniRef50_I3UGR0	0.0462451641
+UniRef50_I3UGR0|unclassified	0.0462451641
+UniRef50_L7FT82	0.0462449462
+UniRef50_L7FT82|unclassified	0.0462449462
+UniRef50_H3MF42	0.0462388717
+UniRef50_H3MF42|unclassified	0.0462388717
+UniRef50_H5Y861: Exopolyphosphatase	0.0462388307
+UniRef50_H5Y861: Exopolyphosphatase|unclassified	0.0462388307
+UniRef50_Q2CID9: Type II/IV secretion system protein, TadC subfamily protein	0.0462350722
+UniRef50_Q2CID9: Type II/IV secretion system protein, TadC subfamily protein|unclassified	0.0462350722
+UniRef50_U9W572: Membrane protein	0.0462285275
+UniRef50_U9W572: Membrane protein|unclassified	0.0462285275
+UniRef50_W5X972	0.0462226766
+UniRef50_W5X972|unclassified	0.0462226766
+UniRef50_UPI00046A7F54: NADPH dehydrogenase	0.0462219684
+UniRef50_UPI00046A7F54: NADPH dehydrogenase|unclassified	0.0462219684
+UniRef50_I9L064: Exodeoxyribonuclease V, alpha chain	0.0462183874
+UniRef50_I9L064: Exodeoxyribonuclease V, alpha chain|unclassified	0.0462183874
+UniRef50_A1TLP7: tRNA dimethylallyltransferase	0.0462148446
+UniRef50_A1TLP7: tRNA dimethylallyltransferase|unclassified	0.0462148446
+UniRef50_Q9KPZ7: Copper-exporting P-type ATPase A	0.0462137442
+UniRef50_Q9KPZ7: Copper-exporting P-type ATPase A|unclassified	0.0462137442
+UniRef50_UPI0003FCCCFB: hypothetical protein	0.0462124414
+UniRef50_UPI0003FCCCFB: hypothetical protein|unclassified	0.0462124414
+UniRef50_UPI00026526EF: PREDICTED: serine racemase-like	0.0462122304
+UniRef50_UPI00026526EF: PREDICTED: serine racemase-like|unclassified	0.0462122304
+UniRef50_UPI0003717236: hypothetical protein	0.0462106832
+UniRef50_UPI0003717236: hypothetical protein|unclassified	0.0462106832
+UniRef50_K9XPZ6: Pentapeptide repeat protein	0.0461959985
+UniRef50_K9XPZ6: Pentapeptide repeat protein|unclassified	0.0461959985
+UniRef50_UPI0004766935: ribokinase	0.0461946617
+UniRef50_UPI0004766935: ribokinase|unclassified	0.0461946617
+UniRef50_UPI00037938EA: hypothetical protein	0.0461935593
+UniRef50_UPI00037938EA: hypothetical protein|unclassified	0.0461935593
+UniRef50_UPI000367B6D1: hypothetical protein	0.0461896618
+UniRef50_UPI000367B6D1: hypothetical protein|unclassified	0.0461896618
+UniRef50_V5CI26: Putative phosphonate C-P lyase system protein PhnK	0.0461851860
+UniRef50_V5CI26: Putative phosphonate C-P lyase system protein PhnK|unclassified	0.0461851860
+UniRef50_F7UF75: FecR protein	0.0461850826
+UniRef50_F7UF75: FecR protein|unclassified	0.0461850826
+UniRef50_UPI0002256698: PREDICTED: melatonin receptor type 1A	0.0461839422
+UniRef50_UPI0002256698: PREDICTED: melatonin receptor type 1A|unclassified	0.0461839422
+UniRef50_UPI00047AE804: hypothetical protein	0.0461831542
+UniRef50_UPI00047AE804: hypothetical protein|unclassified	0.0461831542
+UniRef50_UPI00041FB1C3: hypothetical protein	0.0461824139
+UniRef50_UPI00041FB1C3: hypothetical protein|unclassified	0.0461824139
+UniRef50_UPI00046EF5A2: hypothetical protein	0.0461815959
+UniRef50_UPI00046EF5A2: hypothetical protein|unclassified	0.0461815959
+UniRef50_UPI0003B37789: beta-lactamase	0.0461758616
+UniRef50_UPI0003B37789: beta-lactamase|unclassified	0.0461758616
+UniRef50_K2JHW7: Putative surface protein	0.0461750384
+UniRef50_K2JHW7: Putative surface protein|unclassified	0.0461750384
+UniRef50_UPI000479191D: hypothetical protein	0.0461721813
+UniRef50_UPI000479191D: hypothetical protein|unclassified	0.0461721813
+UniRef50_W7A9S9	0.0461675856
+UniRef50_W7A9S9|unclassified	0.0461675856
+UniRef50_W6JWF9	0.0461675052
+UniRef50_W6JWF9|unclassified	0.0461675052
+UniRef50_Q6C5H4: Glutathione reductase	0.0461672118
+UniRef50_Q6C5H4: Glutathione reductase|unclassified	0.0461672118
+UniRef50_UPI00047AA542: argininosuccinate lyase	0.0461649946
+UniRef50_UPI00047AA542: argininosuccinate lyase|unclassified	0.0461649946
+UniRef50_UPI00047DC7BF: hypothetical protein	0.0461640840
+UniRef50_UPI00047DC7BF: hypothetical protein|unclassified	0.0461640840
+UniRef50_UPI00042B08DC: Phototropin 1 isoform 6	0.0461612527
+UniRef50_UPI00042B08DC: Phototropin 1 isoform 6|unclassified	0.0461612527
+UniRef50_UPI0003B31758: ABC transporter	0.0461598824
+UniRef50_UPI0003B31758: ABC transporter|unclassified	0.0461598824
+UniRef50_UPI000378926F: Gnt-II system L-idonate transporter IdnT, partial	0.0461584790
+UniRef50_UPI000378926F: Gnt-II system L-idonate transporter IdnT, partial|unclassified	0.0461584790
+UniRef50_UPI0004758AEF: hypothetical protein	0.0461538710
+UniRef50_UPI0004758AEF: hypothetical protein|unclassified	0.0461538710
+UniRef50_Q07PK4: tRNA dimethylallyltransferase	0.0461538041
+UniRef50_Q07PK4: tRNA dimethylallyltransferase|unclassified	0.0461538041
+UniRef50_G9A7D0: Portal protein GP3	0.0461430474
+UniRef50_G9A7D0: Portal protein GP3|unclassified	0.0461430474
+UniRef50_UPI000382A1A7: hypothetical protein	0.0461402901
+UniRef50_UPI000382A1A7: hypothetical protein|unclassified	0.0461402901
+UniRef50_F3ZFM4	0.0461402722
+UniRef50_F3ZFM4|unclassified	0.0461402722
+UniRef50_A9DTB7	0.0461390397
+UniRef50_A9DTB7|unclassified	0.0461390397
+UniRef50_UPI000363A030: hypothetical protein	0.0461388251
+UniRef50_UPI000363A030: hypothetical protein|unclassified	0.0461388251
+UniRef50_Q7MU77: Phosphoglycerate kinase	0.0461331009
+UniRef50_Q7MU77: Phosphoglycerate kinase|unclassified	0.0461331009
+UniRef50_UPI000474B63A: hypothetical protein	0.0461314937
+UniRef50_UPI000474B63A: hypothetical protein|unclassified	0.0461314937
+UniRef50_UPI0003B2F391: N-acetylglutamate synthase	0.0461305515
+UniRef50_UPI0003B2F391: N-acetylglutamate synthase|unclassified	0.0461305515
+UniRef50_K8ANI8: Gifsy-2 prophage protein	0.0461269826
+UniRef50_K8ANI8: Gifsy-2 prophage protein|unclassified	0.0461269826
+UniRef50_UPI000288A91D: tagatose-6-phosphate kinase	0.0461234434
+UniRef50_UPI000288A91D: tagatose-6-phosphate kinase|unclassified	0.0461234434
+UniRef50_UPI000425522B: hypothetical protein	0.0461201218
+UniRef50_UPI000425522B: hypothetical protein|unclassified	0.0461201218
+UniRef50_UPI0004695A1D: nucleoside triphosphate hydrolase	0.0461195449
+UniRef50_UPI0004695A1D: nucleoside triphosphate hydrolase|unclassified	0.0461195449
+UniRef50_UPI0004268C9A: hypothetical protein	0.0461185125
+UniRef50_UPI0004268C9A: hypothetical protein|unclassified	0.0461185125
+UniRef50_UPI00036887E2: hypothetical protein	0.0461163156
+UniRef50_UPI00036887E2: hypothetical protein|unclassified	0.0461163156
+UniRef50_UPI0003F070B1	0.0461124972
+UniRef50_UPI0003F070B1|unclassified	0.0461124972
+UniRef50_W8PB33: Cysteine synthase	0.0461073496
+UniRef50_W8PB33: Cysteine synthase|unclassified	0.0461073496
+UniRef50_UPI0000227F19: valyl-tRNA synthetase	0.0461042897
+UniRef50_UPI0000227F19: valyl-tRNA synthetase|unclassified	0.0461042897
+UniRef50_UPI0003EC04D4: PREDICTED: acetyl-CoA acetyltransferase, mitochondrial-like	0.0461004344
+UniRef50_UPI0003EC04D4: PREDICTED: acetyl-CoA acetyltransferase, mitochondrial-like|unclassified	0.0461004344
+UniRef50_G0A360: Phosphate-selective porin O and P	0.0461000979
+UniRef50_G0A360: Phosphate-selective porin O and P|unclassified	0.0461000979
+UniRef50_E0MQG2: Membrane transporter	0.0460981897
+UniRef50_E0MQG2: Membrane transporter|unclassified	0.0460981897
+UniRef50_K6GJU3: Pyridoxal-phosphate dependent protein	0.0460976514
+UniRef50_K6GJU3: Pyridoxal-phosphate dependent protein|unclassified	0.0460976514
+UniRef50_E6ZP10	0.0460943958
+UniRef50_E6ZP10|unclassified	0.0460943958
+UniRef50_UPI000475E40E: RNA polymerase subunit sigma-70	0.0460879797
+UniRef50_UPI000475E40E: RNA polymerase subunit sigma-70|unclassified	0.0460879797
+UniRef50_UPI0001E2E32E: putative Na+/Ca+ antiporter	0.0460846076
+UniRef50_UPI0001E2E32E: putative Na+/Ca+ antiporter|unclassified	0.0460846076
+UniRef50_UPI0003819846: hypothetical protein, partial	0.0460820986
+UniRef50_UPI0003819846: hypothetical protein, partial|unclassified	0.0460820986
+UniRef50_P83851: Inosine-uridine preferring nucleoside hydrolase	0.0460818839
+UniRef50_P83851: Inosine-uridine preferring nucleoside hydrolase|unclassified	0.0460818839
+UniRef50_R0X3A7: FAD binding domain protein	0.0460776708
+UniRef50_R0X3A7: FAD binding domain protein|unclassified	0.0460776708
+UniRef50_UPI0003628C72: hypothetical protein	0.0460775690
+UniRef50_UPI0003628C72: hypothetical protein|unclassified	0.0460775690
+UniRef50_UPI0002742A2C: PREDICTED: LOW QUALITY PROTEIN: adenosylhomocysteinase-like	0.0460775287
+UniRef50_UPI0002742A2C: PREDICTED: LOW QUALITY PROTEIN: adenosylhomocysteinase-like|unclassified	0.0460775287
+UniRef50_UPI000363D66E: hypothetical protein	0.0460737823
+UniRef50_UPI000363D66E: hypothetical protein|unclassified	0.0460737823
+UniRef50_X1LB45: Marine sediment metagenome DNA, contig: S06H3_L02355 (Fragment)	0.0460694316
+UniRef50_X1LB45: Marine sediment metagenome DNA, contig: S06H3_L02355 (Fragment)|unclassified	0.0460694316
+UniRef50_A0A011MWI8	0.0460677462
+UniRef50_A0A011MWI8|unclassified	0.0460677462
+UniRef50_Q5YYN2: Prolipoprotein diacylglyceryl transferase	0.0460647358
+UniRef50_Q5YYN2: Prolipoprotein diacylglyceryl transferase|unclassified	0.0460647358
+UniRef50_UPI00036FDD71: hypothetical protein	0.0460616144
+UniRef50_UPI00036FDD71: hypothetical protein|unclassified	0.0460616144
+UniRef50_V4ZHU8: FHA domain-containing protein	0.0460606423
+UniRef50_V4ZHU8: FHA domain-containing protein|unclassified	0.0460606423
+UniRef50_Q2L292: Putative phage protein	0.0460563717
+UniRef50_Q2L292: Putative phage protein|unclassified	0.0460563717
+UniRef50_UPI0004737F58: branched-chain amino acid aminotransferase, partial	0.0460514618
+UniRef50_UPI0004737F58: branched-chain amino acid aminotransferase, partial|unclassified	0.0460514618
+UniRef50_UPI000363B2AF: hypothetical protein	0.0460514268
+UniRef50_UPI000363B2AF: hypothetical protein|unclassified	0.0460514268
+UniRef50_B1HTR3	0.0460476388
+UniRef50_B1HTR3|unclassified	0.0460476388
+UniRef50_P15428: 15-hydroxyprostaglandin dehydrogenase [NAD(+)]	0.0460363187
+UniRef50_P15428: 15-hydroxyprostaglandin dehydrogenase [NAD(+)]|unclassified	0.0460363187
+UniRef50_Q68X45: DNA topoisomerase 1	0.0460339632
+UniRef50_Q68X45: DNA topoisomerase 1|unclassified	0.0460339632
+UniRef50_I0GKE9: Putative cobalt ABC transporter permease protein	0.0460333822
+UniRef50_I0GKE9: Putative cobalt ABC transporter permease protein|unclassified	0.0460333822
+UniRef50_UPI000287E9B2: major facilitator superfamily protein	0.0460327730
+UniRef50_UPI000287E9B2: major facilitator superfamily protein|unclassified	0.0460327730
+UniRef50_O32291	0.0460289232
+UniRef50_O32291|unclassified	0.0460289232
+UniRef50_UPI00037DD87A: MULTISPECIES: hypothetical protein	0.0460289099
+UniRef50_UPI00037DD87A: MULTISPECIES: hypothetical protein|unclassified	0.0460289099
+UniRef50_UPI00030DF455: hypothetical protein	0.0460280178
+UniRef50_UPI00030DF455: hypothetical protein|unclassified	0.0460280178
+UniRef50_UPI00035D39C5: MULTISPECIES: hypothetical protein	0.0460265989
+UniRef50_UPI00035D39C5: MULTISPECIES: hypothetical protein|unclassified	0.0460265989
+UniRef50_W8S6V4	0.0460262041
+UniRef50_W8S6V4|unclassified	0.0460262041
+UniRef50_Q8QZT1: Acetyl-CoA acetyltransferase, mitochondrial	0.0460251050
+UniRef50_Q8QZT1: Acetyl-CoA acetyltransferase, mitochondrial|unclassified	0.0460251050
+UniRef50_UPI00046CF140: GTP pyrophosphokinase	0.0460249571
+UniRef50_UPI00046CF140: GTP pyrophosphokinase|unclassified	0.0460249571
+UniRef50_B1Y7T4	0.0460232701
+UniRef50_B1Y7T4|unclassified	0.0460232701
+UniRef50_UPI00036ECB04: hypothetical protein	0.0460181523
+UniRef50_UPI00036ECB04: hypothetical protein|unclassified	0.0460181523
+UniRef50_B0S8Z4: Serine--tRNA ligase	0.0460178156
+UniRef50_B0S8Z4: Serine--tRNA ligase|unclassified	0.0460178156
+UniRef50_H5Y2H3	0.0460089561
+UniRef50_H5Y2H3|unclassified	0.0460089561
+UniRef50_T1KRH7	0.0460068894
+UniRef50_T1KRH7|unclassified	0.0460068894
+UniRef50_Q57761: Polyamine aminopropyl transferase	0.0460046342
+UniRef50_Q57761: Polyamine aminopropyl transferase|unclassified	0.0460046342
+UniRef50_UPI000225B476: putative to amino acid permeases	0.0460040268
+UniRef50_UPI000225B476: putative to amino acid permeases|unclassified	0.0460040268
+UniRef50_UPI000377D129: hypothetical protein	0.0460036231
+UniRef50_UPI000377D129: hypothetical protein|unclassified	0.0460036231
+UniRef50_UPI00036238B0: molybdopterin-guanine dinucleotide biosynthesis protein MobB, partial	0.0460006993
+UniRef50_UPI00036238B0: molybdopterin-guanine dinucleotide biosynthesis protein MobB, partial|unclassified	0.0460006993
+UniRef50_UPI000373846A: hypothetical protein	0.0459993252
+UniRef50_UPI000373846A: hypothetical protein|unclassified	0.0459993252
+UniRef50_UPI0003B5BA57: ABC transporter permease	0.0459991355
+UniRef50_UPI0003B5BA57: ABC transporter permease|unclassified	0.0459991355
+UniRef50_UPI00047163C5: hypothetical protein	0.0459972124
+UniRef50_UPI00047163C5: hypothetical protein|unclassified	0.0459972124
+UniRef50_D8TN63	0.0459962926
+UniRef50_D8TN63|unclassified	0.0459962926
+UniRef50_W5X9L0	0.0459942177
+UniRef50_W5X9L0|unclassified	0.0459942177
+UniRef50_Q3JQ29	0.0459910288
+UniRef50_Q3JQ29|unclassified	0.0459910288
+UniRef50_K1YJB5: TRAP C4-dicarboxylate transport system permease DctM subunit (Fragment)	0.0459899735
+UniRef50_K1YJB5: TRAP C4-dicarboxylate transport system permease DctM subunit (Fragment)|unclassified	0.0459899735
+UniRef50_C2WWI6	0.0459865260
+UniRef50_C2WWI6|unclassified	0.0459865260
+UniRef50_A0M5T1: Leucine--tRNA ligase	0.0459806564
+UniRef50_A0M5T1: Leucine--tRNA ligase|unclassified	0.0459806564
+UniRef50_Q57ML3	0.0459806559
+UniRef50_Q57ML3|unclassified	0.0459806559
+UniRef50_UPI0003A9463F: chemotaxis protein CheR	0.0459791436
+UniRef50_UPI0003A9463F: chemotaxis protein CheR|unclassified	0.0459791436
+UniRef50_UPI00037DF98D: hypothetical protein	0.0459761375
+UniRef50_UPI00037DF98D: hypothetical protein|unclassified	0.0459761375
+UniRef50_UPI000403B702: helicase UvrD	0.0459739569
+UniRef50_UPI000403B702: helicase UvrD|unclassified	0.0459739569
+UniRef50_UPI00046686EA: amidohydrolase	0.0459703669
+UniRef50_UPI00046686EA: amidohydrolase|unclassified	0.0459703669
+UniRef50_UPI00038208D6: coproporphyrinogen III oxidase	0.0459675695
+UniRef50_UPI00038208D6: coproporphyrinogen III oxidase|unclassified	0.0459675695
+UniRef50_UPI00035D49E5: hypothetical protein	0.0459640687
+UniRef50_UPI00035D49E5: hypothetical protein|unclassified	0.0459640687
+UniRef50_UPI0003B621A7: ribonuclease D	0.0459634931
+UniRef50_UPI0003B621A7: ribonuclease D|unclassified	0.0459634931
+UniRef50_W8XBA5: Inner membrane transport protein YhjV	0.0459602663
+UniRef50_W8XBA5: Inner membrane transport protein YhjV|unclassified	0.0459602663
+UniRef50_UPI00039B323E: peptide ABC transporter ATPase	0.0459598055
+UniRef50_UPI00039B323E: peptide ABC transporter ATPase|unclassified	0.0459598055
+UniRef50_UPI0003670DD9: glycine dehydrogenase	0.0459554166
+UniRef50_UPI0003670DD9: glycine dehydrogenase|unclassified	0.0459554166
+UniRef50_N0ASW1: Metallo-beta-lactamase	0.0459542163
+UniRef50_N0ASW1: Metallo-beta-lactamase|unclassified	0.0459542163
+UniRef50_B8GW41: Uroporphyrinogen decarboxylase	0.0459485184
+UniRef50_B8GW41: Uroporphyrinogen decarboxylase|unclassified	0.0459485184
+UniRef50_I0V7V3	0.0459434829
+UniRef50_I0V7V3|unclassified	0.0459434829
+UniRef50_UPI000255635F: chemotaxis-specific histidine kinase, partial	0.0459389014
+UniRef50_UPI000255635F: chemotaxis-specific histidine kinase, partial|unclassified	0.0459389014
+UniRef50_B2A4B3: Glutamate--tRNA ligase	0.0459338011
+UniRef50_B2A4B3: Glutamate--tRNA ligase|unclassified	0.0459338011
+UniRef50_U7Q7D7	0.0459335077
+UniRef50_U7Q7D7|unclassified	0.0459335077
+UniRef50_UPI000381D661: hypothetical protein	0.0459328094
+UniRef50_UPI000381D661: hypothetical protein|unclassified	0.0459328094
+UniRef50_UPI00047EEB19: hypothetical protein	0.0459323923
+UniRef50_UPI00047EEB19: hypothetical protein|unclassified	0.0459323923
+UniRef50_UPI0003F650A0: hypothetical protein	0.0459282407
+UniRef50_UPI0003F650A0: hypothetical protein|unclassified	0.0459282407
+UniRef50_UPI00037D3259: hypothetical protein	0.0459272569
+UniRef50_UPI00037D3259: hypothetical protein|unclassified	0.0459272569
+UniRef50_Q7VG34: Serine--tRNA ligase	0.0459263383
+UniRef50_Q7VG34: Serine--tRNA ligase|unclassified	0.0459263383
+UniRef50_K2DVJ8	0.0459259765
+UniRef50_K2DVJ8|unclassified	0.0459259765
+UniRef50_B3SA44	0.0459239636
+UniRef50_B3SA44|unclassified	0.0459239636
+UniRef50_UPI0003FA8024: hypothetical protein	0.0459226055
+UniRef50_UPI0003FA8024: hypothetical protein|unclassified	0.0459226055
+UniRef50_Q57H69: DNA-directed RNA polymerase subunit beta	0.0459184766
+UniRef50_Q57H69: DNA-directed RNA polymerase subunit beta|unclassified	0.0459184766
+UniRef50_W9C5X5	0.0459169685
+UniRef50_W9C5X5|unclassified	0.0459169685
+UniRef50_UPI0003C393EE: PREDICTED: mucin-19-like	0.0459164807
+UniRef50_UPI0003C393EE: PREDICTED: mucin-19-like|unclassified	0.0459164807
+UniRef50_R6GPL2	0.0459151993
+UniRef50_R6GPL2|unclassified	0.0459151993
+UniRef50_UPI00036EE153: hypothetical protein	0.0459119742
+UniRef50_UPI00036EE153: hypothetical protein|unclassified	0.0459119742
+UniRef50_UPI000468E7F8: membrane protein	0.0459074596
+UniRef50_UPI000468E7F8: membrane protein|unclassified	0.0459074596
+UniRef50_J2L6B8	0.0459034770
+UniRef50_J2L6B8|unclassified	0.0459034770
+UniRef50_UPI0003D71C1C: PREDICTED: mitochondrial tRNA-specific 2-thiouridylase 1 isoform X5	0.0459026896
+UniRef50_UPI0003D71C1C: PREDICTED: mitochondrial tRNA-specific 2-thiouridylase 1 isoform X5|unclassified	0.0459026896
+UniRef50_UPI0002E76F72: hypothetical protein	0.0459026450
+UniRef50_UPI0002E76F72: hypothetical protein|unclassified	0.0459026450
+UniRef50_Q6EQA6: BKRF1 encodes EBNA-1 protein-like	0.0459010455
+UniRef50_Q6EQA6: BKRF1 encodes EBNA-1 protein-like|unclassified	0.0459010455
+UniRef50_B0JHR4: 3-oxoacyl-[acyl-carrier-protein] reductase like	0.0458972740
+UniRef50_B0JHR4: 3-oxoacyl-[acyl-carrier-protein] reductase like|unclassified	0.0458972740
+UniRef50_UPI0003C165C4: PREDICTED: DNA-directed RNA polymerase subunit beta-like	0.0458971637
+UniRef50_UPI0003C165C4: PREDICTED: DNA-directed RNA polymerase subunit beta-like|unclassified	0.0458971637
+UniRef50_UPI00036EFDAB: hypothetical protein	0.0458967276
+UniRef50_UPI00036EFDAB: hypothetical protein|unclassified	0.0458967276
+UniRef50_UPI00046A179B: dihydropteroate synthase	0.0458940326
+UniRef50_UPI00046A179B: dihydropteroate synthase|unclassified	0.0458940326
+UniRef50_A0A037ZHE8	0.0458928783
+UniRef50_A0A037ZHE8|unclassified	0.0458928783
+UniRef50_UPI000377E4B5: hypothetical protein	0.0458928137
+UniRef50_UPI000377E4B5: hypothetical protein|unclassified	0.0458928137
+UniRef50_A5USV3: Queuine tRNA-ribosyltransferase	0.0458927094
+UniRef50_A5USV3: Queuine tRNA-ribosyltransferase|unclassified	0.0458927094
+UniRef50_K9GRV2: Type II/IV secretion system protein TadC	0.0458921284
+UniRef50_K9GRV2: Type II/IV secretion system protein TadC|unclassified	0.0458921284
+UniRef50_UPI0004255E20: hypothetical protein	0.0458834912
+UniRef50_UPI0004255E20: hypothetical protein|unclassified	0.0458834912
+UniRef50_A3W5I1	0.0458833276
+UniRef50_A3W5I1|unclassified	0.0458833276
+UniRef50_D3QZY9	0.0458826564
+UniRef50_D3QZY9|unclassified	0.0458826564
+UniRef50_UPI00047CAE83: hypothetical protein	0.0458800896
+UniRef50_UPI00047CAE83: hypothetical protein|unclassified	0.0458800896
+UniRef50_UPI0003769812: hypothetical protein	0.0458773089
+UniRef50_UPI0003769812: hypothetical protein|unclassified	0.0458773089
+UniRef50_R3ULD5	0.0458701320
+UniRef50_R3ULD5|unclassified	0.0458701320
+UniRef50_Q9WYT5: Chemotaxis protein methyltransferase	0.0458663113
+UniRef50_Q9WYT5: Chemotaxis protein methyltransferase|unclassified	0.0458663113
+UniRef50_D6TYL7: Integrase catalytic region	0.0458615060
+UniRef50_D6TYL7: Integrase catalytic region|unclassified	0.0458615060
+UniRef50_Q51508: Salicylate biosynthesis isochorismate synthase	0.0458614322
+UniRef50_Q51508: Salicylate biosynthesis isochorismate synthase|unclassified	0.0458614322
+UniRef50_E4PJS6	0.0458566171
+UniRef50_E4PJS6|unclassified	0.0458566171
+UniRef50_UPI000381C026: hypothetical protein	0.0458524838
+UniRef50_UPI000381C026: hypothetical protein|unclassified	0.0458524838
+UniRef50_Q59200: Aspartate ammonia-lyase	0.0458472499
+UniRef50_Q59200: Aspartate ammonia-lyase|unclassified	0.0458472499
+UniRef50_R4UR16: Cobalamin synthesis protein/P47K	0.0458443552
+UniRef50_R4UR16: Cobalamin synthesis protein/P47K|unclassified	0.0458443552
+UniRef50_UPI0004127258: patatin	0.0458442311
+UniRef50_UPI0004127258: patatin|unclassified	0.0458442311
+UniRef50_H6WBN9: Phage Gp37Gp68 family protein	0.0458436925
+UniRef50_H6WBN9: Phage Gp37Gp68 family protein|unclassified	0.0458436925
+UniRef50_UPI00035C1DF0: hypothetical protein	0.0458435265
+UniRef50_UPI00035C1DF0: hypothetical protein|unclassified	0.0458435265
+UniRef50_R7BDT9	0.0458435196
+UniRef50_R7BDT9|unclassified	0.0458435196
+UniRef50_Q0IS03: Os11g0579700 protein (Fragment)	0.0458433936
+UniRef50_Q0IS03: Os11g0579700 protein (Fragment)|unclassified	0.0458433936
+UniRef50_Q9CBD6: Alpha-keto-acid decarboxylase	0.0458415243
+UniRef50_Q9CBD6: Alpha-keto-acid decarboxylase|unclassified	0.0458415243
+UniRef50_Q72DU3: tRNA (guanine-N(1)-)-methyltransferase	0.0458389038
+UniRef50_Q72DU3: tRNA (guanine-N(1)-)-methyltransferase|unclassified	0.0458389038
+UniRef50_UPI000237E592: transcriptional regulator	0.0458367900
+UniRef50_UPI000237E592: transcriptional regulator|unclassified	0.0458367900
+UniRef50_UPI000377C7E8: MULTISPECIES: hypothetical protein	0.0458330727
+UniRef50_UPI000377C7E8: MULTISPECIES: hypothetical protein|unclassified	0.0458330727
+UniRef50_UPI0004794ACA: C4-dicarboxylate ABC transporter permease	0.0458312804
+UniRef50_UPI0004794ACA: C4-dicarboxylate ABC transporter permease|unclassified	0.0458312804
+UniRef50_UPI00025588F8: GfdT protein	0.0458209862
+UniRef50_UPI00025588F8: GfdT protein|unclassified	0.0458209862
+UniRef50_S5FGT8: Methyl-galactoside ABC transporter substrate-binding protein	0.0458135076
+UniRef50_S5FGT8: Methyl-galactoside ABC transporter substrate-binding protein|unclassified	0.0458135076
+UniRef50_UPI000473DFFF: hypothetical protein, partial	0.0458133803
+UniRef50_UPI000473DFFF: hypothetical protein, partial|unclassified	0.0458133803
+UniRef50_A0A023RSA4	0.0458079632
+UniRef50_A0A023RSA4|unclassified	0.0458079632
+UniRef50_UPI00036099F9: hypothetical protein	0.0458047232
+UniRef50_UPI00036099F9: hypothetical protein|unclassified	0.0458047232
+UniRef50_Q6MMA3: Methionine--tRNA ligase	0.0458042614
+UniRef50_Q6MMA3: Methionine--tRNA ligase|unclassified	0.0458042614
+UniRef50_UPI000376F990: hypothetical protein	0.0458036668
+UniRef50_UPI000376F990: hypothetical protein|unclassified	0.0458036668
+UniRef50_UPI0003A9F6F6: molybdenum cofactor biosynthesis protein MoeA	0.0458035367
+UniRef50_UPI0003A9F6F6: molybdenum cofactor biosynthesis protein MoeA|unclassified	0.0458035367
+UniRef50_Q8KZT5: Guanidinobutyrase	0.0458023065
+UniRef50_Q8KZT5: Guanidinobutyrase|unclassified	0.0458023065
+UniRef50_A5FRK6: DNA-directed RNA polymerase subunit beta'	0.0457972113
+UniRef50_A5FRK6: DNA-directed RNA polymerase subunit beta'|unclassified	0.0457972113
+UniRef50_UPI0003F9F930: hypothetical protein, partial	0.0457932532
+UniRef50_UPI0003F9F930: hypothetical protein, partial|unclassified	0.0457932532
+UniRef50_Q28VD2	0.0457930340
+UniRef50_Q28VD2|unclassified	0.0457930340
+UniRef50_Q82A73	0.0457923641
+UniRef50_Q82A73|unclassified	0.0457923641
+UniRef50_T0Q988	0.0457920000
+UniRef50_T0Q988|unclassified	0.0457920000
+UniRef50_U7PGV3	0.0457897401
+UniRef50_U7PGV3|unclassified	0.0457897401
+UniRef50_UPI0003B44A26: membrane protein	0.0457872103
+UniRef50_UPI0003B44A26: membrane protein|unclassified	0.0457872103
+UniRef50_UPI00046EEC85: hypothetical protein	0.0457843858
+UniRef50_UPI00046EEC85: hypothetical protein|unclassified	0.0457843858
+UniRef50_Q9ZMK8: Peptide methionine sulfoxide reductase MsrA/MsrB	0.0457833904
+UniRef50_Q9ZMK8: Peptide methionine sulfoxide reductase MsrA/MsrB|unclassified	0.0457833904
+UniRef50_T1BV27: Tryptophan synthase subunit beta (Fragment)	0.0457827788
+UniRef50_T1BV27: Tryptophan synthase subunit beta (Fragment)|unclassified	0.0457827788
+UniRef50_P45627: Glutamine synthetase	0.0457814937
+UniRef50_P45627: Glutamine synthetase|unclassified	0.0457814937
+UniRef50_Q2GK70: Proline--tRNA ligase	0.0457803663
+UniRef50_Q2GK70: Proline--tRNA ligase|unclassified	0.0457803663
+UniRef50_UPI00037E762B: MULTISPECIES: hypothetical protein	0.0457798725
+UniRef50_UPI00037E762B: MULTISPECIES: hypothetical protein|unclassified	0.0457798725
+UniRef50_UPI0003B3015D: DNA-directed RNA polymerase subunit alpha, partial	0.0457776084
+UniRef50_UPI0003B3015D: DNA-directed RNA polymerase subunit alpha, partial|unclassified	0.0457776084
+UniRef50_UPI000463A1BE: homoserine acetyltransferase	0.0457752081
+UniRef50_UPI000463A1BE: homoserine acetyltransferase|unclassified	0.0457752081
+UniRef50_UPI000440823C: FKBP-like protein	0.0457709436
+UniRef50_UPI000440823C: FKBP-like protein|unclassified	0.0457709436
+UniRef50_UPI0003505377: PREDICTED: catechol O-methyltransferase domain-containing protein 1	0.0457662912
+UniRef50_UPI0003505377: PREDICTED: catechol O-methyltransferase domain-containing protein 1|unclassified	0.0457662912
+UniRef50_A0A031MGU3: Molecular chaperone	0.0457629986
+UniRef50_A0A031MGU3: Molecular chaperone|unclassified	0.0457629986
+UniRef50_UPI00037BD6D9: hypothetical protein	0.0457617241
+UniRef50_UPI00037BD6D9: hypothetical protein|unclassified	0.0457617241
+UniRef50_Q5PMW8: Alpha,alpha-trehalose-phosphate synthase [UDP-forming]	0.0457535713
+UniRef50_Q5PMW8: Alpha,alpha-trehalose-phosphate synthase [UDP-forming]|unclassified	0.0457535713
+UniRef50_UPI00037D5D50: hypothetical protein	0.0457515778
+UniRef50_UPI00037D5D50: hypothetical protein|unclassified	0.0457515778
+UniRef50_Q65JK6: Chemotaxis response regulator protein-glutamate methylesterase	0.0457505603
+UniRef50_Q65JK6: Chemotaxis response regulator protein-glutamate methylesterase|unclassified	0.0457505603
+UniRef50_UPI0003662156: hypothetical protein	0.0457478831
+UniRef50_UPI0003662156: hypothetical protein|unclassified	0.0457478831
+UniRef50_A9KCZ5: Uroporphyrinogen decarboxylase	0.0457467991
+UniRef50_A9KCZ5: Uroporphyrinogen decarboxylase|unclassified	0.0457467991
+UniRef50_UPI0002FF8C25: hypothetical protein	0.0457465425
+UniRef50_UPI0002FF8C25: hypothetical protein|unclassified	0.0457465425
+UniRef50_UPI000372EB1D: hypothetical protein	0.0457411831
+UniRef50_UPI000372EB1D: hypothetical protein|unclassified	0.0457411831
+UniRef50_R1FNX7	0.0457372775
+UniRef50_R1FNX7|unclassified	0.0457372775
+UniRef50_Q83NS5: Phosphoglucosamine mutase	0.0457367038
+UniRef50_Q83NS5: Phosphoglucosamine mutase|unclassified	0.0457367038
+UniRef50_Q9KVD1: Coenzyme A biosynthesis bifunctional protein CoaBC	0.0457355488
+UniRef50_Q9KVD1: Coenzyme A biosynthesis bifunctional protein CoaBC|unclassified	0.0457355488
+UniRef50_Q4A0R5: Ferrichrome ABC transporter	0.0457343587
+UniRef50_Q4A0R5: Ferrichrome ABC transporter|unclassified	0.0457343587
+UniRef50_UPI00036E89D4: hypothetical protein	0.0457330886
+UniRef50_UPI00036E89D4: hypothetical protein|unclassified	0.0457330886
+UniRef50_UPI000363AF56: hypothetical protein	0.0457324142
+UniRef50_UPI000363AF56: hypothetical protein|unclassified	0.0457324142
+UniRef50_W0A5Y5	0.0457318951
+UniRef50_W0A5Y5|unclassified	0.0457318951
+UniRef50_E9RY70	0.0457263969
+UniRef50_E9RY70|unclassified	0.0457263969
+UniRef50_Q68WJ1	0.0457225566
+UniRef50_Q68WJ1|unclassified	0.0457225566
+UniRef50_UPI000370FC7C: hypothetical protein	0.0457195693
+UniRef50_UPI000370FC7C: hypothetical protein|unclassified	0.0457195693
+UniRef50_UPI00017458E1: hypothetical protein	0.0457117230
+UniRef50_UPI00017458E1: hypothetical protein|unclassified	0.0457117230
+UniRef50_UPI00036948AC: hypothetical protein	0.0457114838
+UniRef50_UPI00036948AC: hypothetical protein|unclassified	0.0457114838
+UniRef50_A8EQZ6: Phosphate ABC transporter, periplasmic phosphate-binding protein	0.0457006002
+UniRef50_A8EQZ6: Phosphate ABC transporter, periplasmic phosphate-binding protein|unclassified	0.0457006002
+UniRef50_UPI00037A76B2: hypothetical protein	0.0456937617
+UniRef50_UPI00037A76B2: hypothetical protein|unclassified	0.0456937617
+UniRef50_B7GLA9	0.0456928525
+UniRef50_B7GLA9|unclassified	0.0456928525
+UniRef50_M8D5S5	0.0456928525
+UniRef50_M8D5S5|unclassified	0.0456928525
+UniRef50_UPI0004046EE4: peptidase C39	0.0456883163
+UniRef50_UPI0004046EE4: peptidase C39|unclassified	0.0456883163
+UniRef50_A9FBU8: Methionine--tRNA ligase 1	0.0456790199
+UniRef50_A9FBU8: Methionine--tRNA ligase 1|unclassified	0.0456790199
+UniRef50_UPI000305A811: hypothetical protein	0.0456765076
+UniRef50_UPI000305A811: hypothetical protein|unclassified	0.0456765076
+UniRef50_Q8DMD1: Tlr0189 protein	0.0456745194
+UniRef50_Q8DMD1: Tlr0189 protein|unclassified	0.0456745194
+UniRef50_UPI0003F56407: hypothetical protein	0.0456721810
+UniRef50_UPI0003F56407: hypothetical protein|unclassified	0.0456721810
+UniRef50_UPI000360C71D: hypothetical protein	0.0456703669
+UniRef50_UPI000360C71D: hypothetical protein|unclassified	0.0456703669
+UniRef50_F2NFN8: DNA repair protein RadC	0.0456688152
+UniRef50_F2NFN8: DNA repair protein RadC|unclassified	0.0456688152
+UniRef50_UPI0003628FC3: hypothetical protein, partial	0.0456659887
+UniRef50_UPI0003628FC3: hypothetical protein, partial|unclassified	0.0456659887
+UniRef50_UPI000463FCAF: pH-dependent sodium/proton antiporter	0.0456646015
+UniRef50_UPI000463FCAF: pH-dependent sodium/proton antiporter|unclassified	0.0456646015
+UniRef50_UPI000376E648: hypothetical protein	0.0456642257
+UniRef50_UPI000376E648: hypothetical protein|unclassified	0.0456642257
+UniRef50_UPI0003B468FE: ammonium transporter	0.0456615373
+UniRef50_UPI0003B468FE: ammonium transporter|unclassified	0.0456615373
+UniRef50_UPI0003A406BC: hemolysin expression modulating protein	0.0456586859
+UniRef50_UPI0003A406BC: hemolysin expression modulating protein|unclassified	0.0456586859
+UniRef50_UPI0003A4ECE6: 2,5-diketo-D-gluconic acid reductase	0.0456570077
+UniRef50_UPI0003A4ECE6: 2,5-diketo-D-gluconic acid reductase|unclassified	0.0456570077
+UniRef50_P49982: Adenylate kinase	0.0456542464
+UniRef50_P49982: Adenylate kinase|unclassified	0.0456542464
+UniRef50_K8NX74	0.0456538873
+UniRef50_K8NX74|unclassified	0.0456538873
+UniRef50_S6NNC7: Fosmidomycin resistance protein (Fragment)	0.0456505412
+UniRef50_S6NNC7: Fosmidomycin resistance protein (Fragment)|unclassified	0.0456505412
+UniRef50_Q6MRM9: 4-hydroxy-tetrahydrodipicolinate synthase	0.0456468129
+UniRef50_Q6MRM9: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0456468129
+UniRef50_C5CHX9: 4-hydroxy-tetrahydrodipicolinate synthase	0.0456449120
+UniRef50_C5CHX9: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0456449120
+UniRef50_UPI0004668D5E: peptidase S11	0.0456384772
+UniRef50_UPI0004668D5E: peptidase S11|unclassified	0.0456384772
+UniRef50_F2D9R2: Predicted protein	0.0456304265
+UniRef50_F2D9R2: Predicted protein|unclassified	0.0456304265
+UniRef50_UPI0003B71C46: histidine kinase	0.0456285939
+UniRef50_UPI0003B71C46: histidine kinase|unclassified	0.0456285939
+UniRef50_A0A031M996	0.0456225517
+UniRef50_A0A031M996|unclassified	0.0456225517
+UniRef50_I4AJB2: Threonine synthase	0.0456206028
+UniRef50_I4AJB2: Threonine synthase|unclassified	0.0456206028
+UniRef50_J2KLF7: Threonine synthase	0.0456206028
+UniRef50_J2KLF7: Threonine synthase|unclassified	0.0456206028
+UniRef50_UPI0003B35C9F: galactokinase	0.0456173741
+UniRef50_UPI0003B35C9F: galactokinase|unclassified	0.0456173741
+UniRef50_F8FFI2: Aldo/keto reductase	0.0456163723
+UniRef50_F8FFI2: Aldo/keto reductase|unclassified	0.0456163723
+UniRef50_P74007: Probable guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase	0.0456152865
+UniRef50_P74007: Probable guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase|unclassified	0.0456152865
+UniRef50_UPI00041093BB: hypothetical protein	0.0456131198
+UniRef50_UPI00041093BB: hypothetical protein|unclassified	0.0456131198
+UniRef50_UPI00028881C9: Ppx/GppA phosphatase	0.0456107464
+UniRef50_UPI00028881C9: Ppx/GppA phosphatase|unclassified	0.0456107464
+UniRef50_Q169E0	0.0456064321
+UniRef50_Q169E0|unclassified	0.0456064321
+UniRef50_UPI00036111C7: hypothetical protein	0.0456017372
+UniRef50_UPI00036111C7: hypothetical protein|unclassified	0.0456017372
+UniRef50_B3QZ51: Homoserine O-acetyltransferase	0.0456015767
+UniRef50_B3QZ51: Homoserine O-acetyltransferase|unclassified	0.0456015767
+UniRef50_UPI000478D57C: hypothetical protein	0.0455972584
+UniRef50_UPI000478D57C: hypothetical protein|unclassified	0.0455972584
+UniRef50_T1IZI3	0.0455970241
+UniRef50_T1IZI3|unclassified	0.0455970241
+UniRef50_UPI000300E129: hypothetical protein	0.0455892506
+UniRef50_UPI000300E129: hypothetical protein|unclassified	0.0455892506
+UniRef50_UPI0004416F73: Pkinase-domain-containing protein	0.0455831316
+UniRef50_UPI0004416F73: Pkinase-domain-containing protein|unclassified	0.0455831316
+UniRef50_A1SGH4: Cell envelope-related transcriptional attenuator	0.0455809199
+UniRef50_A1SGH4: Cell envelope-related transcriptional attenuator|unclassified	0.0455809199
+UniRef50_I2BCP7	0.0455770603
+UniRef50_I2BCP7|unclassified	0.0455770603
+UniRef50_UPI0003B31FAD: LysR family transcriptional regulator	0.0455762745
+UniRef50_UPI0003B31FAD: LysR family transcriptional regulator|unclassified	0.0455762745
+UniRef50_UPI000468EF7F: hypothetical protein	0.0455739627
+UniRef50_UPI000468EF7F: hypothetical protein|unclassified	0.0455739627
+UniRef50_B8HU41: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase	0.0455703023
+UniRef50_B8HU41: 4-diphosphocytidyl-2-C-methyl-D-erythritol kinase|unclassified	0.0455703023
+UniRef50_S3YEG1	0.0455702411
+UniRef50_S3YEG1|unclassified	0.0455702411
+UniRef50_Q7NF44: Glutathione synthetase	0.0455691147
+UniRef50_Q7NF44: Glutathione synthetase|unclassified	0.0455691147
+UniRef50_M4IKS4: Nucleoside-diphosphate-sugar epimerase	0.0455677255
+UniRef50_M4IKS4: Nucleoside-diphosphate-sugar epimerase|unclassified	0.0455677255
+UniRef50_M5EFM2	0.0455670857
+UniRef50_M5EFM2|unclassified	0.0455670857
+UniRef50_A4IPR5: Surface antigen protein	0.0455620667
+UniRef50_A4IPR5: Surface antigen protein|unclassified	0.0455620667
+UniRef50_W5X5X5	0.0455597602
+UniRef50_W5X5X5|unclassified	0.0455597602
+UniRef50_UPI00035E480C: MULTISPECIES: hypothetical protein	0.0455544955
+UniRef50_UPI00035E480C: MULTISPECIES: hypothetical protein|unclassified	0.0455544955
+UniRef50_M9R8N7	0.0455543568
+UniRef50_M9R8N7|unclassified	0.0455543568
+UniRef50_UPI000381A4A2: hypothetical protein	0.0455528088
+UniRef50_UPI000381A4A2: hypothetical protein|unclassified	0.0455528088
+UniRef50_UPI0004110BA4: glucosamine-6-phosphate deaminase	0.0455484803
+UniRef50_UPI0004110BA4: glucosamine-6-phosphate deaminase|unclassified	0.0455484803
+UniRef50_UPI000368D15E: MULTISPECIES: hypothetical protein	0.0455459871
+UniRef50_UPI000368D15E: MULTISPECIES: hypothetical protein|unclassified	0.0455459871
+UniRef50_UPI0004792511: hypothetical protein	0.0455447449
+UniRef50_UPI0004792511: hypothetical protein|unclassified	0.0455447449
+UniRef50_UPI00034AA5E7: type VI secretion protein	0.0455442448
+UniRef50_UPI00034AA5E7: type VI secretion protein|unclassified	0.0455442448
+UniRef50_UPI00046FC0AF: hypothetical protein	0.0455397962
+UniRef50_UPI00046FC0AF: hypothetical protein|unclassified	0.0455397962
+UniRef50_UPI0002E0E4D6: hypothetical protein	0.0455363885
+UniRef50_UPI0002E0E4D6: hypothetical protein|unclassified	0.0455363885
+UniRef50_P12623: Cysteine desulfurase	0.0455338023
+UniRef50_P12623: Cysteine desulfurase|unclassified	0.0455338023
+UniRef50_Y0KF59: Flp pilus assembly protein TadC	0.0455336360
+UniRef50_Y0KF59: Flp pilus assembly protein TadC|unclassified	0.0455336360
+UniRef50_C5CEH1	0.0455296613
+UniRef50_C5CEH1|unclassified	0.0455296613
+UniRef50_H8H0N8: Diguanylate cyclase with GAF sensor	0.0455290026
+UniRef50_H8H0N8: Diguanylate cyclase with GAF sensor|unclassified	0.0455290026
+UniRef50_UPI00037B1084: hypothetical protein, partial	0.0455167239
+UniRef50_UPI00037B1084: hypothetical protein, partial|unclassified	0.0455167239
+UniRef50_UPI0003F7B5BC: histidine kinase	0.0455113632
+UniRef50_UPI0003F7B5BC: histidine kinase|unclassified	0.0455113632
+UniRef50_UPI0003F07F75: PREDICTED: deoxyribonuclease Tat-D-like	0.0455054497
+UniRef50_UPI0003F07F75: PREDICTED: deoxyribonuclease Tat-D-like|unclassified	0.0455054497
+UniRef50_UPI0003783385: hypothetical protein	0.0455007518
+UniRef50_UPI0003783385: hypothetical protein|unclassified	0.0455007518
+UniRef50_UPI0003DEA40C: PREDICTED: DNA helicase MCM8, partial	0.0454983426
+UniRef50_UPI0003DEA40C: PREDICTED: DNA helicase MCM8, partial|unclassified	0.0454983426
+UniRef50_UPI0003F8F40A: hypothetical protein	0.0454959749
+UniRef50_UPI0003F8F40A: hypothetical protein|unclassified	0.0454959749
+UniRef50_UPI0004137D5A: hypothetical protein	0.0454959036
+UniRef50_UPI0004137D5A: hypothetical protein|unclassified	0.0454959036
+UniRef50_UPI00047BAF48: hypothetical protein	0.0454946544
+UniRef50_UPI00047BAF48: hypothetical protein|unclassified	0.0454946544
+UniRef50_UPI00029AFB9D: tonb-dependent siderophore receptor	0.0454931243
+UniRef50_UPI00029AFB9D: tonb-dependent siderophore receptor|unclassified	0.0454931243
+UniRef50_UPI00025597AC: 8-amino-7-oxononanoate synthase	0.0454919476
+UniRef50_UPI00025597AC: 8-amino-7-oxononanoate synthase|unclassified	0.0454919476
+UniRef50_UPI0003A806BB: molybdopterin biosynthesis protein MoeA	0.0454886334
+UniRef50_UPI0003A806BB: molybdopterin biosynthesis protein MoeA|unclassified	0.0454886334
+UniRef50_UPI00036A82E7: hypothetical protein, partial	0.0454885562
+UniRef50_UPI00036A82E7: hypothetical protein, partial|unclassified	0.0454885562
+UniRef50_Q2NYS3: Periplasmic trehalase	0.0454866674
+UniRef50_Q2NYS3: Periplasmic trehalase|unclassified	0.0454866674
+UniRef50_Q4A0N2: Ornithine aminotransferase 1	0.0454856774
+UniRef50_Q4A0N2: Ornithine aminotransferase 1|unclassified	0.0454856774
+UniRef50_UPI0003175780: hypothetical protein	0.0454812686
+UniRef50_UPI0003175780: hypothetical protein|unclassified	0.0454812686
+UniRef50_UPI00036FCAED: hypothetical protein	0.0454779067
+UniRef50_UPI00036FCAED: hypothetical protein|unclassified	0.0454779067
+UniRef50_UPI000469F296: hypothetical protein, partial	0.0454767561
+UniRef50_UPI000469F296: hypothetical protein, partial|unclassified	0.0454767561
+UniRef50_Q7VW21: UPF0246 protein BP2452	0.0454750452
+UniRef50_Q7VW21: UPF0246 protein BP2452|unclassified	0.0454750452
+UniRef50_UPI000248C1C0: acyl-CoA dehydrogenase domain-containing protein	0.0454717010
+UniRef50_UPI000248C1C0: acyl-CoA dehydrogenase domain-containing protein|unclassified	0.0454717010
+UniRef50_UPI0003B3E7B6: 16S rRNA methyltransferase	0.0454665191
+UniRef50_UPI0003B3E7B6: 16S rRNA methyltransferase|unclassified	0.0454665191
+UniRef50_UPI0004767186: tyrosine protein kinase	0.0454584705
+UniRef50_UPI0004767186: tyrosine protein kinase|unclassified	0.0454584705
+UniRef50_B4F225: tRNA pseudouridine synthase D	0.0454547363
+UniRef50_B4F225: tRNA pseudouridine synthase D|unclassified	0.0454547363
+UniRef50_UPI00037AD733: hypothetical protein	0.0454456565
+UniRef50_UPI00037AD733: hypothetical protein|unclassified	0.0454456565
+UniRef50_UPI00040B5511: tagatose-6-phosphate kinase	0.0454444191
+UniRef50_UPI00040B5511: tagatose-6-phosphate kinase|unclassified	0.0454444191
+UniRef50_UPI0003672E42: hypothetical protein	0.0454436256
+UniRef50_UPI0003672E42: hypothetical protein|unclassified	0.0454436256
+UniRef50_W5X8K5	0.0454429320
+UniRef50_W5X8K5|unclassified	0.0454429320
+UniRef50_UPI00037729F7: hypothetical protein	0.0454422324
+UniRef50_UPI00037729F7: hypothetical protein|unclassified	0.0454422324
+UniRef50_UPI000479CA29: ABC transporter permease	0.0454398295
+UniRef50_UPI000479CA29: ABC transporter permease|unclassified	0.0454398295
+UniRef50_UPI00034FFA93: PREDICTED: UPF0488 protein C8orf33 homolog isoform X3	0.0454396945
+UniRef50_UPI00034FFA93: PREDICTED: UPF0488 protein C8orf33 homolog isoform X3|unclassified	0.0454396945
+UniRef50_UPI00042B9299: Actin-binding FH2 protein isoform 1	0.0454385628
+UniRef50_UPI00042B9299: Actin-binding FH2 protein isoform 1|unclassified	0.0454385628
+UniRef50_E2PWJ8: Aldo/keto reductase	0.0454365315
+UniRef50_E2PWJ8: Aldo/keto reductase|unclassified	0.0454365315
+UniRef50_UPI0003633824: hypothetical protein, partial	0.0454342539
+UniRef50_UPI0003633824: hypothetical protein, partial|unclassified	0.0454342539
+UniRef50_UPI00035C98A3: hypothetical protein	0.0454332165
+UniRef50_UPI00035C98A3: hypothetical protein|unclassified	0.0454332165
+UniRef50_UPI00046F0085: hypothetical protein	0.0454257244
+UniRef50_UPI00046F0085: hypothetical protein|unclassified	0.0454257244
+UniRef50_UPI00037728F7: hypothetical protein	0.0454244032
+UniRef50_UPI00037728F7: hypothetical protein|unclassified	0.0454244032
+UniRef50_R6AVV6	0.0454174824
+UniRef50_R6AVV6|unclassified	0.0454174824
+UniRef50_UPI000393D532	0.0454165831
+UniRef50_UPI000393D532|unclassified	0.0454165831
+UniRef50_UPI00037C2D2B: MULTISPECIES: hypothetical protein	0.0454162968
+UniRef50_UPI00037C2D2B: MULTISPECIES: hypothetical protein|unclassified	0.0454162968
+UniRef50_U6HXJ3: Methionyl tRNA synthetase, cytoplasmic	0.0454100183
+UniRef50_U6HXJ3: Methionyl tRNA synthetase, cytoplasmic|unclassified	0.0454100183
+UniRef50_UPI000359F475: PREDICTED: collagen alpha-1(XXVII) chain-like	0.0454072372
+UniRef50_UPI000359F475: PREDICTED: collagen alpha-1(XXVII) chain-like|unclassified	0.0454072372
+UniRef50_UPI000382D4C6: hypothetical protein	0.0454069946
+UniRef50_UPI000382D4C6: hypothetical protein|unclassified	0.0454069946
+UniRef50_UPI00046778C2: hypothetical protein	0.0454032284
+UniRef50_UPI00046778C2: hypothetical protein|unclassified	0.0454032284
+UniRef50_Q2SRK6: Tyrosine--tRNA ligase	0.0454027834
+UniRef50_Q2SRK6: Tyrosine--tRNA ligase|unclassified	0.0454027834
+UniRef50_UPI00047B1D04: DNA repair protein RadA	0.0453978330
+UniRef50_UPI00047B1D04: DNA repair protein RadA|unclassified	0.0453978330
+UniRef50_UPI00047B9977: flippase	0.0453942344
+UniRef50_UPI00047B9977: flippase|unclassified	0.0453942344
+UniRef50_UPI00034CC29D: hypothetical protein	0.0453936249
+UniRef50_UPI00034CC29D: hypothetical protein|unclassified	0.0453936249
+UniRef50_UPI0004018A38: succinate-semialdehyde dehydrogenase	0.0453899759
+UniRef50_UPI0004018A38: succinate-semialdehyde dehydrogenase|unclassified	0.0453899759
+UniRef50_W0ZZ82	0.0453895897
+UniRef50_W0ZZ82|unclassified	0.0453895897
+UniRef50_R5C774	0.0453893925
+UniRef50_R5C774|unclassified	0.0453893925
+UniRef50_UPI00036E835B: hypothetical protein	0.0453882949
+UniRef50_UPI00036E835B: hypothetical protein|unclassified	0.0453882949
+UniRef50_P62060: Arginine biosynthesis bifunctional protein ArgJ	0.0453844324
+UniRef50_P62060: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.0453844324
+UniRef50_L8JY15	0.0453827092
+UniRef50_L8JY15|unclassified	0.0453827092
+UniRef50_G9Z5T4: Phage tail collar domain protein	0.0453814926
+UniRef50_G9Z5T4: Phage tail collar domain protein|unclassified	0.0453814926
+UniRef50_F3ZK71: Putative NLP/P60 family secreted protein	0.0453733836
+UniRef50_F3ZK71: Putative NLP/P60 family secreted protein|unclassified	0.0453733836
+UniRef50_UPI0003A8F395: hypothetical protein	0.0453676976
+UniRef50_UPI0003A8F395: hypothetical protein|unclassified	0.0453676976
+UniRef50_UPI00027454B8	0.0453644259
+UniRef50_UPI00027454B8|unclassified	0.0453644259
+UniRef50_A7HZN6: Chorismate synthase	0.0453621318
+UniRef50_A7HZN6: Chorismate synthase|unclassified	0.0453621318
+UniRef50_Q5P5G4: Acetophenone carboxylase gamma subunit	0.0453615964
+UniRef50_Q5P5G4: Acetophenone carboxylase gamma subunit|unclassified	0.0453615964
+UniRef50_UPI000365846D: hypothetical protein	0.0453558463
+UniRef50_UPI000365846D: hypothetical protein|unclassified	0.0453558463
+UniRef50_UPI00046F0FC9: hypothetical protein	0.0453514195
+UniRef50_UPI00046F0FC9: hypothetical protein|unclassified	0.0453514195
+UniRef50_UPI00016C3B63: L-aspartate oxidase, partial	0.0453495333
+UniRef50_UPI00016C3B63: L-aspartate oxidase, partial|unclassified	0.0453495333
+UniRef50_UPI00029A8D53: alpha amylase, catalytic subdomain	0.0453493145
+UniRef50_UPI00029A8D53: alpha amylase, catalytic subdomain|unclassified	0.0453493145
+UniRef50_G7F5C9: Protein AnkB	0.0453481486
+UniRef50_G7F5C9: Protein AnkB|unclassified	0.0453481486
+UniRef50_O29458: Diaminopimelate decarboxylase	0.0453449731
+UniRef50_O29458: Diaminopimelate decarboxylase|unclassified	0.0453449731
+UniRef50_UPI000425B1D5: hypothetical protein	0.0453393361
+UniRef50_UPI000425B1D5: hypothetical protein|unclassified	0.0453393361
+UniRef50_UPI000478CE34: CDP-glucose 4,6-dehydratase	0.0453363126
+UniRef50_UPI000478CE34: CDP-glucose 4,6-dehydratase|unclassified	0.0453363126
+UniRef50_UPI0004763378: hypothetical protein	0.0453347274
+UniRef50_UPI0004763378: hypothetical protein|unclassified	0.0453347274
+UniRef50_UPI00035CC9FD: hypothetical protein	0.0453343269
+UniRef50_UPI00035CC9FD: hypothetical protein|unclassified	0.0453343269
+UniRef50_F2CXC6: Predicted protein	0.0453338742
+UniRef50_F2CXC6: Predicted protein|unclassified	0.0453338742
+UniRef50_W5X6K8: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	0.0453305204
+UniRef50_W5X6K8: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.0453305204
+UniRef50_N9XU58	0.0453260022
+UniRef50_N9XU58|unclassified	0.0453260022
+UniRef50_D4K9Q4	0.0453178180
+UniRef50_D4K9Q4|unclassified	0.0453178180
+UniRef50_UPI00047502E0: exodeoxyribonuclease V subunit alpha	0.0453146915
+UniRef50_UPI00047502E0: exodeoxyribonuclease V subunit alpha|unclassified	0.0453146915
+UniRef50_UPI0003C7FCCF: nicotinate phosphoribosyltransferase	0.0453021587
+UniRef50_UPI0003C7FCCF: nicotinate phosphoribosyltransferase|unclassified	0.0453021587
+UniRef50_UPI00037C16F6: ABC transporter permease	0.0453004716
+UniRef50_UPI00037C16F6: ABC transporter permease|unclassified	0.0453004716
+UniRef50_R5QD56	0.0453004070
+UniRef50_R5QD56|unclassified	0.0453004070
+UniRef50_UPI00040B86C2: hypothetical protein	0.0452992743
+UniRef50_UPI00040B86C2: hypothetical protein|unclassified	0.0452992743
+UniRef50_UPI00037F3C7D: hypothetical protein	0.0452899311
+UniRef50_UPI00037F3C7D: hypothetical protein|unclassified	0.0452899311
+UniRef50_UPI0003FFD384: hypothetical protein	0.0452891248
+UniRef50_UPI0003FFD384: hypothetical protein|unclassified	0.0452891248
+UniRef50_UPI000349FB4B: hypothetical protein	0.0452875687
+UniRef50_UPI000349FB4B: hypothetical protein|unclassified	0.0452875687
+UniRef50_UPI0002E2A47F: hypothetical protein	0.0452864301
+UniRef50_UPI0002E2A47F: hypothetical protein|unclassified	0.0452864301
+UniRef50_C2U6Z6	0.0452863284
+UniRef50_C2U6Z6|unclassified	0.0452863284
+UniRef50_UPI0004683907: PTS cellobiose transporter subunit IIC	0.0452831466
+UniRef50_UPI0004683907: PTS cellobiose transporter subunit IIC|unclassified	0.0452831466
+UniRef50_UPI00036FF434: hypothetical protein	0.0452747300
+UniRef50_UPI00036FF434: hypothetical protein|unclassified	0.0452747300
+UniRef50_UPI0003718A04: hypothetical protein	0.0452698102
+UniRef50_UPI0003718A04: hypothetical protein|unclassified	0.0452698102
+UniRef50_UPI000377E8CB: hypothetical protein	0.0452682702
+UniRef50_UPI000377E8CB: hypothetical protein|unclassified	0.0452682702
+UniRef50_X0R9X4: Outer membrane lipoprotein	0.0452669687
+UniRef50_X0R9X4: Outer membrane lipoprotein|unclassified	0.0452669687
+UniRef50_Q989S7: Glutamate 5-kinase 2	0.0452634921
+UniRef50_Q989S7: Glutamate 5-kinase 2|unclassified	0.0452634921
+UniRef50_UPI00047BC897: acyl-CoA dehydrogenase	0.0452627308
+UniRef50_UPI00047BC897: acyl-CoA dehydrogenase|unclassified	0.0452627308
+UniRef50_A7K4K3: ABC transporter substrate-binding protein	0.0452526105
+UniRef50_A7K4K3: ABC transporter substrate-binding protein|unclassified	0.0452526105
+UniRef50_K2IXR3: Diguanylate cyclase	0.0452509958
+UniRef50_K2IXR3: Diguanylate cyclase|unclassified	0.0452509958
+UniRef50_X0Z8U3: Marine sediment metagenome DNA, contig: S01H1_S40585 (Fragment)	0.0452498097
+UniRef50_X0Z8U3: Marine sediment metagenome DNA, contig: S01H1_S40585 (Fragment)|unclassified	0.0452498097
+UniRef50_H8HNB4	0.0452456035
+UniRef50_H8HNB4|unclassified	0.0452456035
+UniRef50_UPI0003B3EB84: chemotaxis protein	0.0452450410
+UniRef50_UPI0003B3EB84: chemotaxis protein|unclassified	0.0452450410
+UniRef50_Q98IN0: Mlr2332 protein	0.0452416880
+UniRef50_Q98IN0: Mlr2332 protein|unclassified	0.0452416880
+UniRef50_UPI000463E242: hypothetical protein	0.0452408862
+UniRef50_UPI000463E242: hypothetical protein|unclassified	0.0452408862
+UniRef50_A8WTI8: Elongation factor G, mitochondrial	0.0452406755
+UniRef50_A8WTI8: Elongation factor G, mitochondrial|unclassified	0.0452406755
+UniRef50_UPI000475754F: hypothetical protein	0.0452370450
+UniRef50_UPI000475754F: hypothetical protein|unclassified	0.0452370450
+UniRef50_UPI0004739998: hypothetical protein	0.0452300602
+UniRef50_UPI0004739998: hypothetical protein|unclassified	0.0452300602
+UniRef50_D5HAF9: CobW/P47K family protein	0.0452287362
+UniRef50_D5HAF9: CobW/P47K family protein|unclassified	0.0452287362
+UniRef50_UPI00046923C9: hypothetical protein	0.0452286054
+UniRef50_UPI00046923C9: hypothetical protein|unclassified	0.0452286054
+UniRef50_UPI00046CD6A6: hypothetical protein	0.0452271045
+UniRef50_UPI00046CD6A6: hypothetical protein|unclassified	0.0452271045
+UniRef50_UPI000468956B: major facilitator transporter	0.0452198546
+UniRef50_UPI000468956B: major facilitator transporter|unclassified	0.0452198546
+UniRef50_P20712: Bifunctional dihydrofolate reductase-thymidylate synthase	0.0452178477
+UniRef50_P20712: Bifunctional dihydrofolate reductase-thymidylate synthase|unclassified	0.0452178477
+UniRef50_D6Y3D8: Major facilitator superfamily MFS_1	0.0452154063
+UniRef50_D6Y3D8: Major facilitator superfamily MFS_1|unclassified	0.0452154063
+UniRef50_G2RAR1	0.0452032540
+UniRef50_G2RAR1|unclassified	0.0452032540
+UniRef50_UPI0003798C82: hypothetical protein	0.0451998932
+UniRef50_UPI0003798C82: hypothetical protein|unclassified	0.0451998932
+UniRef50_Q83H98: Glutamate-1-semialdehyde 2,1-aminomutase	0.0451978046
+UniRef50_Q83H98: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0451978046
+UniRef50_X5ZHB2: RecA-family ATPase	0.0451976593
+UniRef50_X5ZHB2: RecA-family ATPase|unclassified	0.0451976593
+UniRef50_A1ALC4: Methionyl-tRNA formyltransferase	0.0451873909
+UniRef50_A1ALC4: Methionyl-tRNA formyltransferase|unclassified	0.0451873909
+UniRef50_P52145: Arsenical pump-driving ATPase	0.0451859168
+UniRef50_P52145: Arsenical pump-driving ATPase|unclassified	0.0451859168
+UniRef50_UPI00041B4090: hypothetical protein	0.0451839717
+UniRef50_UPI00041B4090: hypothetical protein|unclassified	0.0451839717
+UniRef50_T0QM98	0.0451821133
+UniRef50_T0QM98|unclassified	0.0451821133
+UniRef50_L8GBQ8	0.0451812152
+UniRef50_L8GBQ8|unclassified	0.0451812152
+UniRef50_UPI00036FD106: hypothetical protein	0.0451790914
+UniRef50_UPI00036FD106: hypothetical protein|unclassified	0.0451790914
+UniRef50_H8H2A9: Pentapeptide repeat protein	0.0451788916
+UniRef50_H8H2A9: Pentapeptide repeat protein|unclassified	0.0451788916
+UniRef50_W0PG73	0.0451786339
+UniRef50_W0PG73|unclassified	0.0451786339
+UniRef50_UPI000427E2A8: MULTISPECIES: ATPase AAA	0.0451767648
+UniRef50_UPI000427E2A8: MULTISPECIES: ATPase AAA|unclassified	0.0451767648
+UniRef50_UPI0002E36D1B: ketosteroid isomerase	0.0451736299
+UniRef50_UPI0002E36D1B: ketosteroid isomerase|unclassified	0.0451736299
+UniRef50_UPI000255CD61: peptidase M24	0.0451720254
+UniRef50_UPI000255CD61: peptidase M24|unclassified	0.0451720254
+UniRef50_A6LKX4: Glutamate-1-semialdehyde 2,1-aminomutase	0.0451718652
+UniRef50_A6LKX4: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0451718652
+UniRef50_UPI00036F27DF: hypothetical protein	0.0451576124
+UniRef50_UPI00036F27DF: hypothetical protein|unclassified	0.0451576124
+UniRef50_UPI0003B5C775: serine hydroxymethyltransferase	0.0451541553
+UniRef50_UPI0003B5C775: serine hydroxymethyltransferase|unclassified	0.0451541553
+UniRef50_R6FCX3	0.0451534674
+UniRef50_R6FCX3|unclassified	0.0451534674
+UniRef50_A6D5N2	0.0451523146
+UniRef50_A6D5N2|unclassified	0.0451523146
+UniRef50_UPI00047AAA82: hypothetical protein	0.0451522433
+UniRef50_UPI00047AAA82: hypothetical protein|unclassified	0.0451522433
+UniRef50_W7CXY9: LPXTG-motif cell wall anchor domain-containing protein	0.0451448377
+UniRef50_W7CXY9: LPXTG-motif cell wall anchor domain-containing protein|unclassified	0.0451448377
+UniRef50_UPI000468F8E1: hypothetical protein	0.0451403307
+UniRef50_UPI000468F8E1: hypothetical protein|unclassified	0.0451403307
+UniRef50_UPI000470A616: diaminopimelate epimerase	0.0451343978
+UniRef50_UPI000470A616: diaminopimelate epimerase|unclassified	0.0451343978
+UniRef50_UPI00034BF73D: hypothetical protein	0.0451334728
+UniRef50_UPI00034BF73D: hypothetical protein|unclassified	0.0451334728
+UniRef50_UPI0002558F8C: LysR substrate-binding protein	0.0451299535
+UniRef50_UPI0002558F8C: LysR substrate-binding protein|unclassified	0.0451299535
+UniRef50_UPI000185E91C: hypothetical protein TGME49_097210	0.0451285736
+UniRef50_UPI000185E91C: hypothetical protein TGME49_097210|unclassified	0.0451285736
+UniRef50_Q9CDT7: DNA polymerase III PolC-type	0.0451260826
+UniRef50_Q9CDT7: DNA polymerase III PolC-type|unclassified	0.0451260826
+UniRef50_V6MIU3: Transposase	0.0451248765
+UniRef50_V6MIU3: Transposase|unclassified	0.0451248765
+UniRef50_Q029K6: Queuine tRNA-ribosyltransferase	0.0451242338
+UniRef50_Q029K6: Queuine tRNA-ribosyltransferase|unclassified	0.0451242338
+UniRef50_UPI000380AB85: hypothetical protein	0.0451212376
+UniRef50_UPI000380AB85: hypothetical protein|unclassified	0.0451212376
+UniRef50_UPI0004013E14: hypothetical protein	0.0451192971
+UniRef50_UPI0004013E14: hypothetical protein|unclassified	0.0451192971
+UniRef50_UPI0003B6B721: membrane protein	0.0451177624
+UniRef50_UPI0003B6B721: membrane protein|unclassified	0.0451177624
+UniRef50_UPI000343F89B: PREDICTED: translation initiation factor IF-2-like	0.0451099888
+UniRef50_UPI000343F89B: PREDICTED: translation initiation factor IF-2-like|unclassified	0.0451099888
+UniRef50_UPI000375E9C9: hypothetical protein	0.0451099602
+UniRef50_UPI000375E9C9: hypothetical protein|unclassified	0.0451099602
+UniRef50_UPI00035D2477: hypothetical protein	0.0451052859
+UniRef50_UPI00035D2477: hypothetical protein|unclassified	0.0451052859
+UniRef50_UPI000367CE13: hypothetical protein	0.0450987910
+UniRef50_UPI000367CE13: hypothetical protein|unclassified	0.0450987910
+UniRef50_UPI0002378CC4: serine/threonine-protein kinase	0.0450932418
+UniRef50_UPI0002378CC4: serine/threonine-protein kinase|unclassified	0.0450932418
+UniRef50_UPI0002DB3D31: hypothetical protein	0.0450929052
+UniRef50_UPI0002DB3D31: hypothetical protein|unclassified	0.0450929052
+UniRef50_Q3JSJ3	0.0450919134
+UniRef50_Q3JSJ3|unclassified	0.0450919134
+UniRef50_F0P5W2: Membrane protein	0.0450911839
+UniRef50_F0P5W2: Membrane protein|unclassified	0.0450911839
+UniRef50_UPI0004716E9F: recombination factor protein RarA	0.0450906692
+UniRef50_UPI0004716E9F: recombination factor protein RarA|unclassified	0.0450906692
+UniRef50_X1AZR1: Marine sediment metagenome DNA, contig: S01H4_C00127	0.0450905435
+UniRef50_X1AZR1: Marine sediment metagenome DNA, contig: S01H4_C00127|unclassified	0.0450905435
+UniRef50_Q1QR26: DNA repair protein RadC	0.0450821578
+UniRef50_Q1QR26: DNA repair protein RadC|unclassified	0.0450821578
+UniRef50_UPI000359C88C: PREDICTED: elongation factor Ts, mitochondrial-like	0.0450809136
+UniRef50_UPI000359C88C: PREDICTED: elongation factor Ts, mitochondrial-like|unclassified	0.0450809136
+UniRef50_E8TK13: Periplasmic binding protein	0.0450800528
+UniRef50_E8TK13: Periplasmic binding protein|unclassified	0.0450800528
+UniRef50_L8E459: L-threonine dehydratase biosynthetic IlvA	0.0450783715
+UniRef50_L8E459: L-threonine dehydratase biosynthetic IlvA|unclassified	0.0450783715
+UniRef50_UPI0003FD0CB4: ribonucleotide-diphosphate reductase subunit alpha	0.0450718533
+UniRef50_UPI0003FD0CB4: ribonucleotide-diphosphate reductase subunit alpha|unclassified	0.0450718533
+UniRef50_UPI00035EEF97: hypothetical protein	0.0450685869
+UniRef50_UPI00035EEF97: hypothetical protein|unclassified	0.0450685869
+UniRef50_A5K0H8	0.0450684113
+UniRef50_A5K0H8|unclassified	0.0450684113
+UniRef50_B0T4U9: tRNA dimethylallyltransferase	0.0450676832
+UniRef50_B0T4U9: tRNA dimethylallyltransferase|unclassified	0.0450676832
+UniRef50_F2U3M2	0.0450637614
+UniRef50_F2U3M2|unclassified	0.0450637614
+UniRef50_UPI00035D8D7C: hypothetical protein	0.0450591945
+UniRef50_UPI00035D8D7C: hypothetical protein|unclassified	0.0450591945
+UniRef50_UPI00041BEE9E: hypothetical protein	0.0450588586
+UniRef50_UPI00041BEE9E: hypothetical protein|unclassified	0.0450588586
+UniRef50_UPI00030E967A: hypothetical protein	0.0450575417
+UniRef50_UPI00030E967A: hypothetical protein|unclassified	0.0450575417
+UniRef50_A0A059IQC1	0.0450534472
+UniRef50_A0A059IQC1|unclassified	0.0450534472
+UniRef50_H0C689: Bacteriocin-associated integral membrane domain protein	0.0450439922
+UniRef50_H0C689: Bacteriocin-associated integral membrane domain protein|unclassified	0.0450439922
+UniRef50_UPI00037D112A: hypothetical protein	0.0450422720
+UniRef50_UPI00037D112A: hypothetical protein|unclassified	0.0450422720
+UniRef50_UPI0002559B8B: hypothetical protein	0.0450400900
+UniRef50_UPI0002559B8B: hypothetical protein|unclassified	0.0450400900
+UniRef50_L0R7R2: Gp28 protein	0.0450361558
+UniRef50_L0R7R2: Gp28 protein|unclassified	0.0450361558
+UniRef50_UPI000470C2B4: hypothetical protein	0.0450348786
+UniRef50_UPI000470C2B4: hypothetical protein|unclassified	0.0450348786
+UniRef50_UPI00047B518A: MerR family transcriptional regulator	0.0450329810
+UniRef50_UPI00047B518A: MerR family transcriptional regulator|unclassified	0.0450329810
+UniRef50_A2DXB5: Ankyrin repeat protein, putative	0.0450267522
+UniRef50_A2DXB5: Ankyrin repeat protein, putative|unclassified	0.0450267522
+UniRef50_Q839D4: Energy-coupling factor transporter ATP-binding protein EcfA2	0.0450231421
+UniRef50_Q839D4: Energy-coupling factor transporter ATP-binding protein EcfA2|unclassified	0.0450231421
+UniRef50_UPI0003B39CEE: acetoacetate metabolism regulatory protein AtoC	0.0450230818
+UniRef50_UPI0003B39CEE: acetoacetate metabolism regulatory protein AtoC|unclassified	0.0450230818
+UniRef50_UPI00047E5667: PTS fructose transporter subunit IIBC	0.0450204235
+UniRef50_UPI00047E5667: PTS fructose transporter subunit IIBC|unclassified	0.0450204235
+UniRef50_V7I0Y3	0.0450188447
+UniRef50_V7I0Y3|unclassified	0.0450188447
+UniRef50_UPI00028A2FFD: hypothetical protein	0.0450168626
+UniRef50_UPI00028A2FFD: hypothetical protein|unclassified	0.0450168626
+UniRef50_A1TZP8: Type IV pilus biogenesis/stability protein PilW	0.0450109646
+UniRef50_A1TZP8: Type IV pilus biogenesis/stability protein PilW|unclassified	0.0450109646
+UniRef50_Q1XDM0: Pyruvate dehydrogenase E1 component subunit alpha	0.0450083096
+UniRef50_Q1XDM0: Pyruvate dehydrogenase E1 component subunit alpha|unclassified	0.0450083096
+UniRef50_UPI0002558256: 3-hydroxyacyl-CoA dehydrogenase NAD-binding protein, partial	0.0450069026
+UniRef50_UPI0002558256: 3-hydroxyacyl-CoA dehydrogenase NAD-binding protein, partial|unclassified	0.0450069026
+UniRef50_Q032P2: Lipopolysaccharide biosynthesis protein	0.0450038285
+UniRef50_Q032P2: Lipopolysaccharide biosynthesis protein|unclassified	0.0450038285
+UniRef50_UPI0004686A04: hypothetical protein	0.0450018027
+UniRef50_UPI0004686A04: hypothetical protein|unclassified	0.0450018027
+UniRef50_UPI000470EC42: ABC transporter permease	0.0449999111
+UniRef50_UPI000470EC42: ABC transporter permease|unclassified	0.0449999111
+UniRef50_I3TKR2: Condensin subunit ScpA	0.0449934453
+UniRef50_I3TKR2: Condensin subunit ScpA|unclassified	0.0449934453
+UniRef50_UPI00037D73DD: hypothetical protein	0.0449903829
+UniRef50_UPI00037D73DD: hypothetical protein|unclassified	0.0449903829
+UniRef50_UPI00036F9932: hypothetical protein	0.0449894130
+UniRef50_UPI00036F9932: hypothetical protein|unclassified	0.0449894130
+UniRef50_A9WCU2: ATP-dependent 6-phosphofructokinase	0.0449857169
+UniRef50_A9WCU2: ATP-dependent 6-phosphofructokinase|unclassified	0.0449857169
+UniRef50_R7JW42	0.0449836921
+UniRef50_R7JW42|unclassified	0.0449836921
+UniRef50_D8UHW0	0.0449783011
+UniRef50_D8UHW0|unclassified	0.0449783011
+UniRef50_W0PCE9	0.0449748714
+UniRef50_W0PCE9|unclassified	0.0449748714
+UniRef50_M7SQB9	0.0449693793
+UniRef50_M7SQB9|unclassified	0.0449693793
+UniRef50_D5RRI2: Exopolysaccharide synthesis, ExoD	0.0449603549
+UniRef50_D5RRI2: Exopolysaccharide synthesis, ExoD|unclassified	0.0449603549
+UniRef50_O83051: DNA gyrase subunit A	0.0449573514
+UniRef50_O83051: DNA gyrase subunit A|unclassified	0.0449573514
+UniRef50_M3TLR6	0.0449545277
+UniRef50_M3TLR6|unclassified	0.0449545277
+UniRef50_UPI00040A51F8: chemotaxis protein	0.0449538360
+UniRef50_UPI00040A51F8: chemotaxis protein|unclassified	0.0449538360
+UniRef50_UPI0002481AA6: type II secretion system protein E	0.0449537220
+UniRef50_UPI0002481AA6: type II secretion system protein E|unclassified	0.0449537220
+UniRef50_Q8KA16: Endonuclease III	0.0449462368
+UniRef50_Q8KA16: Endonuclease III|unclassified	0.0449462368
+UniRef50_UPI000367471B: hypothetical protein	0.0449458341
+UniRef50_UPI000367471B: hypothetical protein|unclassified	0.0449458341
+UniRef50_Q1MPX7: 4-hydroxy-tetrahydrodipicolinate synthase	0.0449436528
+UniRef50_Q1MPX7: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0449436528
+UniRef50_UPI000289E54D: type III effector Hrp-dependent outer protein	0.0449419702
+UniRef50_UPI000289E54D: type III effector Hrp-dependent outer protein|unclassified	0.0449419702
+UniRef50_UPI0003B338E4: hypothetical protein	0.0449411534
+UniRef50_UPI0003B338E4: hypothetical protein|unclassified	0.0449411534
+UniRef50_U2Z7R5: Anti-sigma B factor RsbT	0.0449410855
+UniRef50_U2Z7R5: Anti-sigma B factor RsbT|unclassified	0.0449410855
+UniRef50_UPI00036A1F5C: hypothetical protein	0.0449399535
+UniRef50_UPI00036A1F5C: hypothetical protein|unclassified	0.0449399535
+UniRef50_Q1IYK3: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0449393499
+UniRef50_Q1IYK3: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0449393499
+UniRef50_UPI000369165B: hypothetical protein	0.0449388075
+UniRef50_UPI000369165B: hypothetical protein|unclassified	0.0449388075
+UniRef50_UPI000474735C: hypothetical protein	0.0449383190
+UniRef50_UPI000474735C: hypothetical protein|unclassified	0.0449383190
+UniRef50_U2LMV0	0.0449353950
+UniRef50_U2LMV0|unclassified	0.0449353950
+UniRef50_B1I0S9: Bifunctional enzyme IspD/IspF	0.0449344118
+UniRef50_B1I0S9: Bifunctional enzyme IspD/IspF|unclassified	0.0449344118
+UniRef50_UPI000471C4F0: hypothetical protein	0.0449261643
+UniRef50_UPI000471C4F0: hypothetical protein|unclassified	0.0449261643
+UniRef50_UPI00046847FF: hypothetical protein	0.0449223768
+UniRef50_UPI00046847FF: hypothetical protein|unclassified	0.0449223768
+UniRef50_UPI00035E7363: hypothetical protein	0.0449205417
+UniRef50_UPI00035E7363: hypothetical protein|unclassified	0.0449205417
+UniRef50_P13266: N-acylneuraminate cytidylyltransferase	0.0449171218
+UniRef50_P13266: N-acylneuraminate cytidylyltransferase|unclassified	0.0449171218
+UniRef50_Q1RK76: DNA repair protein RadC	0.0449154631
+UniRef50_Q1RK76: DNA repair protein RadC|unclassified	0.0449154631
+UniRef50_UPI00047BD789: hypothetical protein	0.0449117107
+UniRef50_UPI00047BD789: hypothetical protein|unclassified	0.0449117107
+UniRef50_R6A299	0.0449112155
+UniRef50_R6A299|unclassified	0.0449112155
+UniRef50_UPI0003B5049A: glutamyl-Q tRNA(Asp) ligase	0.0449111497
+UniRef50_UPI0003B5049A: glutamyl-Q tRNA(Asp) ligase|unclassified	0.0449111497
+UniRef50_UPI00029A1147: sodium/proton antiporter, NhaA family protein	0.0449037335
+UniRef50_UPI00029A1147: sodium/proton antiporter, NhaA family protein|unclassified	0.0449037335
+UniRef50_UPI0002F30145: 50S ribosomal protein L3	0.0448990346
+UniRef50_UPI0002F30145: 50S ribosomal protein L3|unclassified	0.0448990346
+UniRef50_UPI000370D27D: hypothetical protein	0.0448958986
+UniRef50_UPI000370D27D: hypothetical protein|unclassified	0.0448958986
+UniRef50_Q55487	0.0448954594
+UniRef50_Q55487|unclassified	0.0448954594
+UniRef50_UPI000373AFB4: hypothetical protein	0.0448926004
+UniRef50_UPI000373AFB4: hypothetical protein|unclassified	0.0448926004
+UniRef50_UPI000443C5AC: PREDICTED: poly [ADP-ribose] polymerase 12-like isoform X1	0.0448817622
+UniRef50_UPI000443C5AC: PREDICTED: poly [ADP-ribose] polymerase 12-like isoform X1|unclassified	0.0448817622
+UniRef50_UPI00025595CE: transcriptional regulator	0.0448785339
+UniRef50_UPI00025595CE: transcriptional regulator|unclassified	0.0448785339
+UniRef50_B0K9C4: Glutamate 5-kinase	0.0448731766
+UniRef50_B0K9C4: Glutamate 5-kinase|unclassified	0.0448731766
+UniRef50_V5IK03: Putative thyroid hormone receptor-associated protein complex subunit (Fragment)	0.0448644655
+UniRef50_V5IK03: Putative thyroid hormone receptor-associated protein complex subunit (Fragment)|unclassified	0.0448644655
+UniRef50_UPI000376F2DA: hypothetical protein	0.0448622614
+UniRef50_UPI000376F2DA: hypothetical protein|unclassified	0.0448622614
+UniRef50_R4VGD7	0.0448621969
+UniRef50_R4VGD7|unclassified	0.0448621969
+UniRef50_UPI0003B2F384: stage V sporulation protein E, partial	0.0448619071
+UniRef50_UPI0003B2F384: stage V sporulation protein E, partial|unclassified	0.0448619071
+UniRef50_O35033: Probable coenzyme A biosynthesis bifunctional protein CoaBC	0.0448578813
+UniRef50_O35033: Probable coenzyme A biosynthesis bifunctional protein CoaBC|unclassified	0.0448578813
+UniRef50_K8ENS3: YhgE/Pip C-terminal domain protein	0.0448502282
+UniRef50_K8ENS3: YhgE/Pip C-terminal domain protein|unclassified	0.0448502282
+UniRef50_UPI0003B3D264: uridine nucleosidase	0.0448476349
+UniRef50_UPI0003B3D264: uridine nucleosidase|unclassified	0.0448476349
+UniRef50_W4BX25: Membrane protein ykvI	0.0448418446
+UniRef50_W4BX25: Membrane protein ykvI|unclassified	0.0448418446
+UniRef50_UPI0003C18DA1: PREDICTED: aldehyde dehydrogenase-like	0.0448358833
+UniRef50_UPI0003C18DA1: PREDICTED: aldehyde dehydrogenase-like|unclassified	0.0448358833
+UniRef50_UPI0003B6DFDD: alpha/beta hydrolase	0.0448330400
+UniRef50_UPI0003B6DFDD: alpha/beta hydrolase|unclassified	0.0448330400
+UniRef50_UPI00036D95FD: hypothetical protein	0.0448248222
+UniRef50_UPI00036D95FD: hypothetical protein|unclassified	0.0448248222
+UniRef50_F3K925	0.0448210568
+UniRef50_F3K925|unclassified	0.0448210568
+UniRef50_UPI0003609ADF: hypothetical protein	0.0448162430
+UniRef50_UPI0003609ADF: hypothetical protein|unclassified	0.0448162430
+UniRef50_Q6MSL3: Bifunctional protein FolD	0.0448156055
+UniRef50_Q6MSL3: Bifunctional protein FolD|unclassified	0.0448156055
+UniRef50_UPI00036B1F25: hypothetical protein	0.0448076721
+UniRef50_UPI00036B1F25: hypothetical protein|unclassified	0.0448076721
+UniRef50_UPI0003AF6DDA: PREDICTED: E3 ubiquitin-protein ligase CBL-like	0.0448040592
+UniRef50_UPI0003AF6DDA: PREDICTED: E3 ubiquitin-protein ligase CBL-like|unclassified	0.0448040592
+UniRef50_W1F285: COG2200: FOG: EAL domain	0.0448026580
+UniRef50_W1F285: COG2200: FOG: EAL domain|unclassified	0.0448026580
+UniRef50_UPI0004201E7B: cell division protein FtsW	0.0448018553
+UniRef50_UPI0004201E7B: cell division protein FtsW|unclassified	0.0448018553
+UniRef50_UPI0004638083: endonuclease III	0.0448004379
+UniRef50_UPI0004638083: endonuclease III|unclassified	0.0448004379
+UniRef50_UPI000468A0F6: zinc ABC transporter ATPase	0.0447973476
+UniRef50_UPI000468A0F6: zinc ABC transporter ATPase|unclassified	0.0447973476
+UniRef50_P72255: UPF0758 protein	0.0447957272
+UniRef50_P72255: UPF0758 protein|unclassified	0.0447957272
+UniRef50_C5BYT3: Cysteine--tRNA ligase	0.0447907551
+UniRef50_C5BYT3: Cysteine--tRNA ligase|unclassified	0.0447907551
+UniRef50_UPI00036740F6: hypothetical protein, partial	0.0447889653
+UniRef50_UPI00036740F6: hypothetical protein, partial|unclassified	0.0447889653
+UniRef50_UPI0003739043: hypothetical protein	0.0447846807
+UniRef50_UPI0003739043: hypothetical protein|unclassified	0.0447846807
+UniRef50_UPI000378F53C: hypothetical protein	0.0447846026
+UniRef50_UPI000378F53C: hypothetical protein|unclassified	0.0447846026
+UniRef50_UPI0003597373: PREDICTED: neural Wiskott-Aldrich syndrome protein-like isoform X1	0.0447824704
+UniRef50_UPI0003597373: PREDICTED: neural Wiskott-Aldrich syndrome protein-like isoform X1|unclassified	0.0447824704
+UniRef50_Q2SQW3: Flagellar motor protein	0.0447759008
+UniRef50_Q2SQW3: Flagellar motor protein|unclassified	0.0447759008
+UniRef50_L2F949: Type IV pilus biogenesis fimbrial assembly	0.0447705330
+UniRef50_L2F949: Type IV pilus biogenesis fimbrial assembly|unclassified	0.0447705330
+UniRef50_UPI0004705B46: trehalase	0.0447704563
+UniRef50_UPI0004705B46: trehalase|unclassified	0.0447704563
+UniRef50_B2A4R9: Phosphoglucosamine mutase	0.0447690454
+UniRef50_B2A4R9: Phosphoglucosamine mutase|unclassified	0.0447690454
+UniRef50_S6Q0S2: Dipeptide ABC transporter, permease protein DppC (Fragment)	0.0447659702
+UniRef50_S6Q0S2: Dipeptide ABC transporter, permease protein DppC (Fragment)|unclassified	0.0447659702
+UniRef50_UPI0003807A17: hypothetical protein	0.0447628079
+UniRef50_UPI0003807A17: hypothetical protein|unclassified	0.0447628079
+UniRef50_B8GLJ6	0.0447623334
+UniRef50_B8GLJ6|unclassified	0.0447623334
+UniRef50_UPI000467A92B: hypothetical protein	0.0447610112
+UniRef50_UPI000467A92B: hypothetical protein|unclassified	0.0447610112
+UniRef50_Q12NB2	0.0447592691
+UniRef50_Q12NB2|unclassified	0.0447592691
+UniRef50_UPI00047EB4AF: hypothetical protein	0.0447533979
+UniRef50_UPI00047EB4AF: hypothetical protein|unclassified	0.0447533979
+UniRef50_UPI0003743246: hypothetical protein	0.0447462558
+UniRef50_UPI0003743246: hypothetical protein|unclassified	0.0447462558
+UniRef50_UPI0002193851: MmpL family membrane protein	0.0447452606
+UniRef50_UPI0002193851: MmpL family membrane protein|unclassified	0.0447452606
+UniRef50_UPI0004734D12: MULTISPECIES: hypothetical protein	0.0447442366
+UniRef50_UPI0004734D12: MULTISPECIES: hypothetical protein|unclassified	0.0447442366
+UniRef50_UPI0003B5895E: LysR family transcriptional regulator	0.0447442169
+UniRef50_UPI0003B5895E: LysR family transcriptional regulator|unclassified	0.0447442169
+UniRef50_UPI00035EAF79: hypothetical protein	0.0447429076
+UniRef50_UPI00035EAF79: hypothetical protein|unclassified	0.0447429076
+UniRef50_UPI0003B547A4: Fis family transcriptional regulator	0.0447410645
+UniRef50_UPI0003B547A4: Fis family transcriptional regulator|unclassified	0.0447410645
+UniRef50_UPI000366285D: ATPase AAA	0.0447386891
+UniRef50_UPI000366285D: ATPase AAA|unclassified	0.0447386891
+UniRef50_UPI00047568EE: hypothetical protein	0.0447372496
+UniRef50_UPI00047568EE: hypothetical protein|unclassified	0.0447372496
+UniRef50_W4TI17: Excinuclease ABC subunit A	0.0447361564
+UniRef50_W4TI17: Excinuclease ABC subunit A|unclassified	0.0447361564
+UniRef50_UPI000316C479: histidine ammonia-lyase	0.0447354242
+UniRef50_UPI000316C479: histidine ammonia-lyase|unclassified	0.0447354242
+UniRef50_UPI0003F07B87: PREDICTED: cytoplasmic aconitate hydratase, partial	0.0447334887
+UniRef50_UPI0003F07B87: PREDICTED: cytoplasmic aconitate hydratase, partial|unclassified	0.0447334887
+UniRef50_Q88B41: Ribosomal RNA small subunit methyltransferase B	0.0447243168
+UniRef50_Q88B41: Ribosomal RNA small subunit methyltransferase B|unclassified	0.0447243168
+UniRef50_UPI000473F790: hypothetical protein, partial	0.0447223075
+UniRef50_UPI000473F790: hypothetical protein, partial|unclassified	0.0447223075
+UniRef50_UPI000333857D: PREDICTED: mannan-binding lectin serine protease 2	0.0447220302
+UniRef50_UPI000333857D: PREDICTED: mannan-binding lectin serine protease 2|unclassified	0.0447220302
+UniRef50_A0CK68: Chromosome undetermined scaffold_2, whole genome shotgun sequence	0.0447217340
+UniRef50_A0CK68: Chromosome undetermined scaffold_2, whole genome shotgun sequence|unclassified	0.0447217340
+UniRef50_Q5H1Q0: Beta-hexosaminidase	0.0447210465
+UniRef50_Q5H1Q0: Beta-hexosaminidase|unclassified	0.0447210465
+UniRef50_UPI00037A2574: hypothetical protein	0.0447198178
+UniRef50_UPI00037A2574: hypothetical protein|unclassified	0.0447198178
+UniRef50_UPI000376746B: hypothetical protein	0.0447167708
+UniRef50_UPI000376746B: hypothetical protein|unclassified	0.0447167708
+UniRef50_UPI000360FCC3: hypothetical protein	0.0447098383
+UniRef50_UPI000360FCC3: hypothetical protein|unclassified	0.0447098383
+UniRef50_A1U4S3: Nucleoside-diphosphate-sugar epimerase	0.0447093556
+UniRef50_A1U4S3: Nucleoside-diphosphate-sugar epimerase|unclassified	0.0447093556
+UniRef50_I1XF65: FecR protein	0.0446998300
+UniRef50_I1XF65: FecR protein|unclassified	0.0446998300
+UniRef50_UPI0003647D68: hypothetical protein	0.0446991910
+UniRef50_UPI0003647D68: hypothetical protein|unclassified	0.0446991910
+UniRef50_UPI0001FFE0B7: Indolepyruvate decarboxylase	0.0446989735
+UniRef50_UPI0001FFE0B7: Indolepyruvate decarboxylase|unclassified	0.0446989735
+UniRef50_Q606N2: Beta-hexosaminidase	0.0446975563
+UniRef50_Q606N2: Beta-hexosaminidase|unclassified	0.0446975563
+UniRef50_Q67P77: Polyribonucleotide nucleotidyltransferase	0.0446973371
+UniRef50_Q67P77: Polyribonucleotide nucleotidyltransferase|unclassified	0.0446973371
+UniRef50_UPI00037A8F71: hypothetical protein	0.0446960062
+UniRef50_UPI00037A8F71: hypothetical protein|unclassified	0.0446960062
+UniRef50_Q493N1: Siroheme synthase	0.0446953621
+UniRef50_Q493N1: Siroheme synthase|unclassified	0.0446953621
+UniRef50_I8YDH2	0.0446939830
+UniRef50_I8YDH2|unclassified	0.0446939830
+UniRef50_UPI0002D98F7E: hypothetical protein	0.0446920441
+UniRef50_UPI0002D98F7E: hypothetical protein|unclassified	0.0446920441
+UniRef50_UPI000381B9DE: hypothetical protein	0.0446912821
+UniRef50_UPI000381B9DE: hypothetical protein|unclassified	0.0446912821
+UniRef50_UPI0003B3E24D: malto-oligosyltrehalose synthase	0.0446896662
+UniRef50_UPI0003B3E24D: malto-oligosyltrehalose synthase|unclassified	0.0446896662
+UniRef50_UPI000372AE10: hypothetical protein	0.0446852528
+UniRef50_UPI000372AE10: hypothetical protein|unclassified	0.0446852528
+UniRef50_UPI0001851167: ribonuclease G	0.0446817353
+UniRef50_UPI0001851167: ribonuclease G|unclassified	0.0446817353
+UniRef50_UPI00047A374C: hypothetical protein	0.0446807506
+UniRef50_UPI00047A374C: hypothetical protein|unclassified	0.0446807506
+UniRef50_UPI00035C4745: hypothetical protein	0.0446787669
+UniRef50_UPI00035C4745: hypothetical protein|unclassified	0.0446787669
+UniRef50_UPI0003621F7F: hypothetical protein	0.0446781206
+UniRef50_UPI0003621F7F: hypothetical protein|unclassified	0.0446781206
+UniRef50_UPI00037C4198: hypothetical protein	0.0446744010
+UniRef50_UPI00037C4198: hypothetical protein|unclassified	0.0446744010
+UniRef50_V1WRR0: Putative bacteriophage tail protein	0.0446727410
+UniRef50_V1WRR0: Putative bacteriophage tail protein|unclassified	0.0446727410
+UniRef50_UPI0003822C12: hypothetical protein, partial	0.0446686123
+UniRef50_UPI0003822C12: hypothetical protein, partial|unclassified	0.0446686123
+UniRef50_UPI000372EDA6: hypothetical protein	0.0446679823
+UniRef50_UPI000372EDA6: hypothetical protein|unclassified	0.0446679823
+UniRef50_A0A017YJP1: Serine-aspartate repeat-containing protein D	0.0446660183
+UniRef50_A0A017YJP1: Serine-aspartate repeat-containing protein D|unclassified	0.0446660183
+UniRef50_O95616: PAX-9 protein (Fragment)	0.0446645226
+UniRef50_O95616: PAX-9 protein (Fragment)|unclassified	0.0446645226
+UniRef50_V6EXG2	0.0446587375
+UniRef50_V6EXG2|unclassified	0.0446587375
+UniRef50_Q1LVK6	0.0446456215
+UniRef50_Q1LVK6|unclassified	0.0446456215
+UniRef50_UPI00035C4024: hypothetical protein	0.0446447538
+UniRef50_UPI00035C4024: hypothetical protein|unclassified	0.0446447538
+UniRef50_UPI00034D69F5: hypothetical protein	0.0446401657
+UniRef50_UPI00034D69F5: hypothetical protein|unclassified	0.0446401657
+UniRef50_UPI00047C82E0: hypothetical protein	0.0446393749
+UniRef50_UPI00047C82E0: hypothetical protein|unclassified	0.0446393749
+UniRef50_UPI0000DAEC71: anthranilate synthase	0.0446315052
+UniRef50_UPI0000DAEC71: anthranilate synthase|unclassified	0.0446315052
+UniRef50_UPI0004726A10: branched-chain amino acid ABC transporter substrate-binding protein	0.0446281522
+UniRef50_UPI0004726A10: branched-chain amino acid ABC transporter substrate-binding protein|unclassified	0.0446281522
+UniRef50_Q11HC8: Serine--tRNA ligase	0.0446273997
+UniRef50_Q11HC8: Serine--tRNA ligase|unclassified	0.0446273997
+UniRef50_UPI0003167C65: hypothetical protein	0.0446251818
+UniRef50_UPI0003167C65: hypothetical protein|unclassified	0.0446251818
+UniRef50_UPI0004025C8B: tagatose-bisphosphate aldolase	0.0446251505
+UniRef50_UPI0004025C8B: tagatose-bisphosphate aldolase|unclassified	0.0446251505
+UniRef50_I8A850: Transglycosylase SLT domain protein	0.0446246924
+UniRef50_I8A850: Transglycosylase SLT domain protein|unclassified	0.0446246924
+UniRef50_B5H827: Cobalamin synthesis protein	0.0446243299
+UniRef50_B5H827: Cobalamin synthesis protein|unclassified	0.0446243299
+UniRef50_UPI0003944182: PREDICTED: serine/arginine repetitive matrix protein 1-like	0.0446238497
+UniRef50_UPI0003944182: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	0.0446238497
+UniRef50_UPI00047EFD61: 16S rRNA methyltransferase	0.0446206896
+UniRef50_UPI00047EFD61: 16S rRNA methyltransferase|unclassified	0.0446206896
+UniRef50_UPI0003956DEA: PREDICTED: basic proline-rich protein-like	0.0446146625
+UniRef50_UPI0003956DEA: PREDICTED: basic proline-rich protein-like|unclassified	0.0446146625
+UniRef50_UPI000379FBD0: hypothetical protein	0.0446140871
+UniRef50_UPI000379FBD0: hypothetical protein|unclassified	0.0446140871
+UniRef50_UPI00023759DD: acyltransferase family protein	0.0446085927
+UniRef50_UPI00023759DD: acyltransferase family protein|unclassified	0.0446085927
+UniRef50_UPI0003B3BC3C: acetoacetate metabolism regulatory protein AtoC	0.0446066402
+UniRef50_UPI0003B3BC3C: acetoacetate metabolism regulatory protein AtoC|unclassified	0.0446066402
+UniRef50_F2DS64: Predicted protein	0.0445982408
+UniRef50_F2DS64: Predicted protein|unclassified	0.0445982408
+UniRef50_H0TEY0	0.0445968792
+UniRef50_H0TEY0|unclassified	0.0445968792
+UniRef50_P37710: Autolysin	0.0445961881
+UniRef50_P37710: Autolysin|unclassified	0.0445961881
+UniRef50_UPI00035C121E: hypothetical protein	0.0445956657
+UniRef50_UPI00035C121E: hypothetical protein|unclassified	0.0445956657
+UniRef50_UPI0003B4C410: bifunctional 5,10-methylene-tetrahydrofolate dehydrogenase/ 5,10-methylene-tetrahydrofolate cyclohydrolase	0.0445926430
+UniRef50_UPI0003B4C410: bifunctional 5,10-methylene-tetrahydrofolate dehydrogenase/ 5,10-methylene-tetrahydrofolate cyclohydrolase|unclassified	0.0445926430
+UniRef50_UPI000423C532: hypothetical protein	0.0445905814
+UniRef50_UPI000423C532: hypothetical protein|unclassified	0.0445905814
+UniRef50_UPI0003629C70: hypothetical protein	0.0445854414
+UniRef50_UPI0003629C70: hypothetical protein|unclassified	0.0445854414
+UniRef50_UPI00046B76DF: PREDICTED: LOW QUALITY PROTEIN: serine/arginine repetitive matrix protein 3-like	0.0445843845
+UniRef50_UPI00046B76DF: PREDICTED: LOW QUALITY PROTEIN: serine/arginine repetitive matrix protein 3-like|unclassified	0.0445843845
+UniRef50_E3NZL4: ORF1	0.0445840773
+UniRef50_E3NZL4: ORF1|unclassified	0.0445840773
+UniRef50_UPI0004421CDD: PREDICTED: heat shock 70 kDa protein 1A/1B-like	0.0445784564
+UniRef50_UPI0004421CDD: PREDICTED: heat shock 70 kDa protein 1A/1B-like|unclassified	0.0445784564
+UniRef50_UPI00037D35D7: hypothetical protein	0.0445779539
+UniRef50_UPI00037D35D7: hypothetical protein|unclassified	0.0445779539
+UniRef50_Q09737: Putative pyruvate decarboxylase C13A11.06	0.0445747763
+UniRef50_Q09737: Putative pyruvate decarboxylase C13A11.06|unclassified	0.0445747763
+UniRef50_UPI000365C908: molybdenum cofactor biosynthesis protein MoaA	0.0445741817
+UniRef50_UPI000365C908: molybdenum cofactor biosynthesis protein MoaA|unclassified	0.0445741817
+UniRef50_UPI0002F4F5A2: hypothetical protein	0.0445729127
+UniRef50_UPI0002F4F5A2: hypothetical protein|unclassified	0.0445729127
+UniRef50_UPI000360F77D: MULTISPECIES: hypothetical protein	0.0445717053
+UniRef50_UPI000360F77D: MULTISPECIES: hypothetical protein|unclassified	0.0445717053
+UniRef50_U6LE71	0.0445710807
+UniRef50_U6LE71|unclassified	0.0445710807
+UniRef50_E9C0L1: Cobalamin synthesis protein P47K	0.0445683127
+UniRef50_E9C0L1: Cobalamin synthesis protein P47K|unclassified	0.0445683127
+UniRef50_Q2SM90	0.0445678382
+UniRef50_Q2SM90|unclassified	0.0445678382
+UniRef50_UPI00047A9799: agmatinase	0.0445673957
+UniRef50_UPI00047A9799: agmatinase|unclassified	0.0445673957
+UniRef50_B6JKF2: Cysteine desulfurase IscS	0.0445672824
+UniRef50_B6JKF2: Cysteine desulfurase IscS|unclassified	0.0445672824
+UniRef50_G8PL71	0.0445616185
+UniRef50_G8PL71|unclassified	0.0445616185
+UniRef50_G0D4K3	0.0445603746
+UniRef50_G0D4K3|unclassified	0.0445603746
+UniRef50_Q1N6V3	0.0445601635
+UniRef50_Q1N6V3|unclassified	0.0445601635
+UniRef50_UPI00046FABAD: hypothetical protein	0.0445597871
+UniRef50_UPI00046FABAD: hypothetical protein|unclassified	0.0445597871
+UniRef50_G4T3N4: Type II secretion system protein	0.0445590754
+UniRef50_G4T3N4: Type II secretion system protein|unclassified	0.0445590754
+UniRef50_UPI00006CADE3: Glutamate/Leucine/Phenylalanine/Valine dehydrogenase family protein	0.0445587612
+UniRef50_UPI00006CADE3: Glutamate/Leucine/Phenylalanine/Valine dehydrogenase family protein|unclassified	0.0445587612
+UniRef50_UPI0004716CD0: hypothetical protein	0.0445573204
+UniRef50_UPI0004716CD0: hypothetical protein|unclassified	0.0445573204
+UniRef50_A3UJ86	0.0445567055
+UniRef50_A3UJ86|unclassified	0.0445567055
+UniRef50_UPI00016C37EA: peptidase S8	0.0445561013
+UniRef50_UPI00016C37EA: peptidase S8|unclassified	0.0445561013
+UniRef50_UPI0003782799: hypothetical protein	0.0445514499
+UniRef50_UPI0003782799: hypothetical protein|unclassified	0.0445514499
+UniRef50_UPI0004252FC4: cystathionine gamma-synthase	0.0445511089
+UniRef50_UPI0004252FC4: cystathionine gamma-synthase|unclassified	0.0445511089
+UniRef50_A0A017HGH7	0.0445428726
+UniRef50_A0A017HGH7|unclassified	0.0445428726
+UniRef50_W2QMH7	0.0445389180
+UniRef50_W2QMH7|unclassified	0.0445389180
+UniRef50_UPI0002484B95: cation-transporting ATPase, partial	0.0445332678
+UniRef50_UPI0002484B95: cation-transporting ATPase, partial|unclassified	0.0445332678
+UniRef50_UPI0004767D82: tRNA 2-selenouridine synthase	0.0445305828
+UniRef50_UPI0004767D82: tRNA 2-selenouridine synthase|unclassified	0.0445305828
+UniRef50_K2RMG3	0.0445298632
+UniRef50_K2RMG3|unclassified	0.0445298632
+UniRef50_I4K679: Type VI secretion protein Fha1	0.0445273324
+UniRef50_I4K679: Type VI secretion protein Fha1|unclassified	0.0445273324
+UniRef50_UPI0003594453: PREDICTED: 15-hydroxyprostaglandin dehydrogenase [NAD(+)]-like	0.0445226851
+UniRef50_UPI0003594453: PREDICTED: 15-hydroxyprostaglandin dehydrogenase [NAD(+)]-like|unclassified	0.0445226851
+UniRef50_UPI0002194D99: kinase	0.0445218596
+UniRef50_UPI0002194D99: kinase|unclassified	0.0445218596
+UniRef50_S4RI87	0.0445150502
+UniRef50_S4RI87|unclassified	0.0445150502
+UniRef50_Q9K7Q6: BH3305 protein	0.0445138713
+UniRef50_Q9K7Q6: BH3305 protein|unclassified	0.0445138713
+UniRef50_UPI000255CAD0: patatin	0.0445082323
+UniRef50_UPI000255CAD0: patatin|unclassified	0.0445082323
+UniRef50_W9T7E0: Diguanylate cyclase	0.0445058330
+UniRef50_W9T7E0: Diguanylate cyclase|unclassified	0.0445058330
+UniRef50_Q9UJM8: Hydroxyacid oxidase 1	0.0445046522
+UniRef50_Q9UJM8: Hydroxyacid oxidase 1|unclassified	0.0445046522
+UniRef50_UPI0003B68FC8: surfeit locus 1 family protein	0.0444991282
+UniRef50_UPI0003B68FC8: surfeit locus 1 family protein|unclassified	0.0444991282
+UniRef50_Q9Y9I9: Glutamate-1-semialdehyde 2,1-aminomutase	0.0444964996
+UniRef50_Q9Y9I9: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0444964996
+UniRef50_Q89DD2: Exodeoxyribonuclease 7 large subunit	0.0444963666
+UniRef50_Q89DD2: Exodeoxyribonuclease 7 large subunit|unclassified	0.0444963666
+UniRef50_UPI000364279F: hypothetical protein	0.0444919262
+UniRef50_UPI000364279F: hypothetical protein|unclassified	0.0444919262
+UniRef50_C4L8G4: Type VI secretion protein, VC_A0114 family	0.0444914228
+UniRef50_C4L8G4: Type VI secretion protein, VC_A0114 family|unclassified	0.0444914228
+UniRef50_UPI0003FAE3B6: PhoH family protein	0.0444830175
+UniRef50_UPI0003FAE3B6: PhoH family protein|unclassified	0.0444830175
+UniRef50_W2EU63: Histone deacetylase	0.0444812123
+UniRef50_W2EU63: Histone deacetylase|unclassified	0.0444812123
+UniRef50_G0G0R8: Recombinase	0.0444799497
+UniRef50_G0G0R8: Recombinase|unclassified	0.0444799497
+UniRef50_R9C5F5: Glyoxalase family protein	0.0444718673
+UniRef50_R9C5F5: Glyoxalase family protein|unclassified	0.0444718673
+UniRef50_B0TBM8: Light-independent protochlorophyllide reductase subunit B	0.0444704689
+UniRef50_B0TBM8: Light-independent protochlorophyllide reductase subunit B|unclassified	0.0444704689
+UniRef50_UPI0003B5BF85: ABC transporter	0.0444662352
+UniRef50_UPI0003B5BF85: ABC transporter|unclassified	0.0444662352
+UniRef50_UPI0002E1FDDE: hypothetical protein	0.0444614231
+UniRef50_UPI0002E1FDDE: hypothetical protein|unclassified	0.0444614231
+UniRef50_UPI000464A659: hypothetical protein	0.0444608931
+UniRef50_UPI000464A659: hypothetical protein|unclassified	0.0444608931
+UniRef50_A1SM80: Biotin synthase	0.0444520056
+UniRef50_A1SM80: Biotin synthase|unclassified	0.0444520056
+UniRef50_UPI0003593EE7: PREDICTED: bifunctional protein NCOAT-like	0.0444500547
+UniRef50_UPI0003593EE7: PREDICTED: bifunctional protein NCOAT-like|unclassified	0.0444500547
+UniRef50_A0A023X2Q7	0.0444483436
+UniRef50_A0A023X2Q7|unclassified	0.0444483436
+UniRef50_UPI00037DB210: hypothetical protein	0.0444444099
+UniRef50_UPI00037DB210: hypothetical protein|unclassified	0.0444444099
+UniRef50_B3R0M3: tRNA N6-adenosine threonylcarbamoyltransferase	0.0444422273
+UniRef50_B3R0M3: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.0444422273
+UniRef50_M5DRE1: Diguanylate cyclase	0.0444397464
+UniRef50_M5DRE1: Diguanylate cyclase|unclassified	0.0444397464
+UniRef50_A0A030ZBN2	0.0444375863
+UniRef50_A0A030ZBN2|unclassified	0.0444375863
+UniRef50_UPI000225AC35: methenyltetrahydrofolate cyclohydrolase	0.0444324299
+UniRef50_UPI000225AC35: methenyltetrahydrofolate cyclohydrolase|unclassified	0.0444324299
+UniRef50_UPI00037B0F94: ferredoxin	0.0444281000
+UniRef50_UPI00037B0F94: ferredoxin|unclassified	0.0444281000
+UniRef50_UPI000470737F: NADPH dehydrogenase	0.0444242515
+UniRef50_UPI000470737F: NADPH dehydrogenase|unclassified	0.0444242515
+UniRef50_Q47XB4: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase	0.0444237251
+UniRef50_Q47XB4: 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino] imidazole-4-carboxamide isomerase|unclassified	0.0444237251
+UniRef50_U7PXV4	0.0444231065
+UniRef50_U7PXV4|unclassified	0.0444231065
+UniRef50_T6UNG0	0.0444215067
+UniRef50_T6UNG0|unclassified	0.0444215067
+UniRef50_D8TLI5	0.0444200347
+UniRef50_D8TLI5|unclassified	0.0444200347
+UniRef50_N7X1A4	0.0444192897
+UniRef50_N7X1A4|unclassified	0.0444192897
+UniRef50_Q8R9V6: Phosphate acyltransferase	0.0444179771
+UniRef50_Q8R9V6: Phosphate acyltransferase|unclassified	0.0444179771
+UniRef50_UPI0000D665EB: PREDICTED: acyl-coenzyme A synthetase ACSM5, mitochondrial isoform X2	0.0444176209
+UniRef50_UPI0000D665EB: PREDICTED: acyl-coenzyme A synthetase ACSM5, mitochondrial isoform X2|unclassified	0.0444176209
+UniRef50_UPI00037285A3: hypothetical protein	0.0444113859
+UniRef50_UPI00037285A3: hypothetical protein|unclassified	0.0444113859
+UniRef50_D9R796: Sugar ABC transporter	0.0444077288
+UniRef50_D9R796: Sugar ABC transporter|unclassified	0.0444077288
+UniRef50_UPI0004725967: hypothetical protein	0.0444059772
+UniRef50_UPI0004725967: hypothetical protein|unclassified	0.0444059772
+UniRef50_UPI000467166E: hypothetical protein	0.0444027719
+UniRef50_UPI000467166E: hypothetical protein|unclassified	0.0444027719
+UniRef50_B4D4A4: UPF0502 protein CfE428DRAFT_3742	0.0443903631
+UniRef50_B4D4A4: UPF0502 protein CfE428DRAFT_3742|unclassified	0.0443903631
+UniRef50_UPI0003C4231F: PREDICTED: trifunctional enzyme subunit alpha, mitochondrial, partial	0.0443843498
+UniRef50_UPI0003C4231F: PREDICTED: trifunctional enzyme subunit alpha, mitochondrial, partial|unclassified	0.0443843498
+UniRef50_UPI0001E2D0B3: arginyl-tRNA synthetase	0.0443711730
+UniRef50_UPI0001E2D0B3: arginyl-tRNA synthetase|unclassified	0.0443711730
+UniRef50_R7R0G4	0.0443691890
+UniRef50_R7R0G4|unclassified	0.0443691890
+UniRef50_P94211: N-acyl-D-glutamate deacylase	0.0443691258
+UniRef50_P94211: N-acyl-D-glutamate deacylase|unclassified	0.0443691258
+UniRef50_UPI000360D3DC: hypothetical protein	0.0443642869
+UniRef50_UPI000360D3DC: hypothetical protein|unclassified	0.0443642869
+UniRef50_UPI00047BDC90: MFS transporter	0.0443606809
+UniRef50_UPI00047BDC90: MFS transporter|unclassified	0.0443606809
+UniRef50_UPI000329B076: PREDICTED: molybdopterin synthase catalytic subunit-like	0.0443521944
+UniRef50_UPI000329B076: PREDICTED: molybdopterin synthase catalytic subunit-like|unclassified	0.0443521944
+UniRef50_UPI000477D9F3: aminotransferase	0.0443438091
+UniRef50_UPI000477D9F3: aminotransferase|unclassified	0.0443438091
+UniRef50_UPI000471A07E: hypothetical protein	0.0443345392
+UniRef50_UPI000471A07E: hypothetical protein|unclassified	0.0443345392
+UniRef50_P72830: ATP-dependent 6-phosphofructokinase 1	0.0443324877
+UniRef50_P72830: ATP-dependent 6-phosphofructokinase 1|unclassified	0.0443324877
+UniRef50_UPI000478279F: succinate-semialdehyde dehydrogenase	0.0443302818
+UniRef50_UPI000478279F: succinate-semialdehyde dehydrogenase|unclassified	0.0443302818
+UniRef50_UPI000380DE87: hypothetical protein	0.0443204887
+UniRef50_UPI000380DE87: hypothetical protein|unclassified	0.0443204887
+UniRef50_UPI00035FAECD: hypothetical protein	0.0443189994
+UniRef50_UPI00035FAECD: hypothetical protein|unclassified	0.0443189994
+UniRef50_X1XPI6	0.0443101805
+UniRef50_X1XPI6|unclassified	0.0443101805
+UniRef50_K9FAT1	0.0443091767
+UniRef50_K9FAT1|unclassified	0.0443091767
+UniRef50_UPI000443285E: PREDICTED: basic proline-rich protein-like	0.0443055633
+UniRef50_UPI000443285E: PREDICTED: basic proline-rich protein-like|unclassified	0.0443055633
+UniRef50_N6UVZ9	0.0443052600
+UniRef50_N6UVZ9|unclassified	0.0443052600
+UniRef50_UPI00036F21F7: hypothetical protein	0.0443025922
+UniRef50_UPI00036F21F7: hypothetical protein|unclassified	0.0443025922
+UniRef50_UPI000265785F: PREDICTED: LOW QUALITY PROTEIN: NADH-quinone oxidoreductase subunit H-like	0.0442967737
+UniRef50_UPI000265785F: PREDICTED: LOW QUALITY PROTEIN: NADH-quinone oxidoreductase subunit H-like|unclassified	0.0442967737
+UniRef50_UPI000381FDDF: hypothetical protein	0.0442940153
+UniRef50_UPI000381FDDF: hypothetical protein|unclassified	0.0442940153
+UniRef50_F6AB42: Tetratricopeptide TPR_1 repeat-containing protein	0.0442920229
+UniRef50_F6AB42: Tetratricopeptide TPR_1 repeat-containing protein|unclassified	0.0442920229
+UniRef50_UPI000455DE3D: aldehyde dehydrogenase	0.0442899193
+UniRef50_UPI000455DE3D: aldehyde dehydrogenase|unclassified	0.0442899193
+UniRef50_UPI00036B2179: hypothetical protein	0.0442870700
+UniRef50_UPI00036B2179: hypothetical protein|unclassified	0.0442870700
+UniRef50_UPI000359A0F0: PREDICTED: glucose dehydrogenase [acceptor]-like	0.0442854122
+UniRef50_UPI000359A0F0: PREDICTED: glucose dehydrogenase [acceptor]-like|unclassified	0.0442854122
+UniRef50_UPI0003B55E14: ammonium transporter	0.0442708306
+UniRef50_UPI0003B55E14: ammonium transporter|unclassified	0.0442708306
+UniRef50_Q67PR4: Methionyl-tRNA formyltransferase	0.0442701125
+UniRef50_Q67PR4: Methionyl-tRNA formyltransferase|unclassified	0.0442701125
+UniRef50_B3QX75: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0442688798
+UniRef50_B3QX75: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0442688798
+UniRef50_UPI0002DBEA5E: ImpA family type VI secretion-associated protein	0.0442663931
+UniRef50_UPI0002DBEA5E: ImpA family type VI secretion-associated protein|unclassified	0.0442663931
+UniRef50_A0A024GDR6: Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_80_length_84930	0.0442628637
+UniRef50_A0A024GDR6: Albugo candida WGS project CAIX00000000 data, strain Ac Nc2, contig AcNc2_CONTIG_80_length_84930|unclassified	0.0442628637
+UniRef50_UPI0003D0F47B: PREDICTED: myosin heavy chain IB-like	0.0442601933
+UniRef50_UPI0003D0F47B: PREDICTED: myosin heavy chain IB-like|unclassified	0.0442601933
+UniRef50_R5QRF5	0.0442600184
+UniRef50_R5QRF5|unclassified	0.0442600184
+UniRef50_UPI00047E8386: hypothetical protein	0.0442599040
+UniRef50_UPI00047E8386: hypothetical protein|unclassified	0.0442599040
+UniRef50_UPI00037D31DE: hypothetical protein	0.0442577248
+UniRef50_UPI00037D31DE: hypothetical protein|unclassified	0.0442577248
+UniRef50_UPI00046A8EC3: hypothetical protein	0.0442558475
+UniRef50_UPI00046A8EC3: hypothetical protein|unclassified	0.0442558475
+UniRef50_Q9CTW8	0.0442550334
+UniRef50_Q9CTW8|unclassified	0.0442550334
+UniRef50_Q1YTD5	0.0442510719
+UniRef50_Q1YTD5|unclassified	0.0442510719
+UniRef50_X1PKD6: Marine sediment metagenome DNA, contig: S06H3_S23466 (Fragment)	0.0442496059
+UniRef50_X1PKD6: Marine sediment metagenome DNA, contig: S06H3_S23466 (Fragment)|unclassified	0.0442496059
+UniRef50_UPI0003B6DD39: chemotaxis protein CheW	0.0442463802
+UniRef50_UPI0003B6DD39: chemotaxis protein CheW|unclassified	0.0442463802
+UniRef50_K2EHJ4	0.0442401012
+UniRef50_K2EHJ4|unclassified	0.0442401012
+UniRef50_L8Y0D8	0.0442398316
+UniRef50_L8Y0D8|unclassified	0.0442398316
+UniRef50_H5USC8: MazG family protein	0.0442356405
+UniRef50_H5USC8: MazG family protein|unclassified	0.0442356405
+UniRef50_D8UHU1	0.0442347899
+UniRef50_D8UHU1|unclassified	0.0442347899
+UniRef50_G3WR90	0.0442302755
+UniRef50_G3WR90|unclassified	0.0442302755
+UniRef50_I1DTE1	0.0442282638
+UniRef50_I1DTE1|unclassified	0.0442282638
+UniRef50_Q7MXP4: Ferrochelatase	0.0442269213
+UniRef50_Q7MXP4: Ferrochelatase|unclassified	0.0442269213
+UniRef50_UPI00037E94CF: hypothetical protein	0.0442251526
+UniRef50_UPI00037E94CF: hypothetical protein|unclassified	0.0442251526
+UniRef50_UPI000406A0E9: hypothetical protein	0.0442180061
+UniRef50_UPI000406A0E9: hypothetical protein|unclassified	0.0442180061
+UniRef50_UPI0004776B86: hypothetical protein	0.0442151003
+UniRef50_UPI0004776B86: hypothetical protein|unclassified	0.0442151003
+UniRef50_UPI0004679B4F: hypothetical protein	0.0442142863
+UniRef50_UPI0004679B4F: hypothetical protein|unclassified	0.0442142863
+UniRef50_UPI00040F5425: D-alanine--D-alanine ligase	0.0442089466
+UniRef50_UPI00040F5425: D-alanine--D-alanine ligase|unclassified	0.0442089466
+UniRef50_UPI00042B4322: Ribulose bisphosphate carboxylase family protein	0.0442065095
+UniRef50_UPI00042B4322: Ribulose bisphosphate carboxylase family protein|unclassified	0.0442065095
+UniRef50_R6FA26	0.0442044442
+UniRef50_R6FA26|unclassified	0.0442044442
+UniRef50_UPI000368F174: hypothetical protein	0.0442032596
+UniRef50_UPI000368F174: hypothetical protein|unclassified	0.0442032596
+UniRef50_E2BCV0: Protein MICAL-3	0.0442016188
+UniRef50_E2BCV0: Protein MICAL-3|unclassified	0.0442016188
+UniRef50_UPI00036D66D7: hypothetical protein	0.0441984023
+UniRef50_UPI00036D66D7: hypothetical protein|unclassified	0.0441984023
+UniRef50_R7LEN4	0.0441962075
+UniRef50_R7LEN4|unclassified	0.0441962075
+UniRef50_UPI0003B376A2: UDP-N-acetylenolpyruvoylglucosamine reductase	0.0441945348
+UniRef50_UPI0003B376A2: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.0441945348
+UniRef50_I3TU58: Short-chain dehydrogenase/reductase SDR	0.0441895643
+UniRef50_I3TU58: Short-chain dehydrogenase/reductase SDR|unclassified	0.0441895643
+UniRef50_UPI00042653B3: hypothetical protein	0.0441878587
+UniRef50_UPI00042653B3: hypothetical protein|unclassified	0.0441878587
+UniRef50_UPI0002FFDCEC: hypothetical protein	0.0441867083
+UniRef50_UPI0002FFDCEC: hypothetical protein|unclassified	0.0441867083
+UniRef50_Q9K0Q4: Beta-hexosaminidase	0.0441855857
+UniRef50_Q9K0Q4: Beta-hexosaminidase|unclassified	0.0441855857
+UniRef50_F7TZL7	0.0441817801
+UniRef50_F7TZL7|unclassified	0.0441817801
+UniRef50_UPI0003663A8C: Vi polysaccharide biosynthesis protein vipB/tviC	0.0441769538
+UniRef50_UPI0003663A8C: Vi polysaccharide biosynthesis protein vipB/tviC|unclassified	0.0441769538
+UniRef50_J8LFK1	0.0441756498
+UniRef50_J8LFK1|unclassified	0.0441756498
+UniRef50_UPI0003826237: hypothetical protein	0.0441734761
+UniRef50_UPI0003826237: hypothetical protein|unclassified	0.0441734761
+UniRef50_R5QPC6: Chromosome partitioning protein	0.0441677211
+UniRef50_R5QPC6: Chromosome partitioning protein|unclassified	0.0441677211
+UniRef50_UPI00047C160D: peptidase U61	0.0441619574
+UniRef50_UPI00047C160D: peptidase U61|unclassified	0.0441619574
+UniRef50_UPI00047C63DF: hypothetical protein	0.0441598869
+UniRef50_UPI00047C63DF: hypothetical protein|unclassified	0.0441598869
+UniRef50_W7B7L6: Internalin B	0.0441557785
+UniRef50_W7B7L6: Internalin B|unclassified	0.0441557785
+UniRef50_UPI000287A577: acyltransferase	0.0441501238
+UniRef50_UPI000287A577: acyltransferase|unclassified	0.0441501238
+UniRef50_UPI000371F875: hypothetical protein	0.0441462275
+UniRef50_UPI000371F875: hypothetical protein|unclassified	0.0441462275
+UniRef50_UPI000468354A: carnitine dehydratase	0.0441457552
+UniRef50_UPI000468354A: carnitine dehydratase|unclassified	0.0441457552
+UniRef50_UPI00036901F8: hypothetical protein	0.0441345670
+UniRef50_UPI00036901F8: hypothetical protein|unclassified	0.0441345670
+UniRef50_A5CFN5: NADH-quinone oxidoreductase subunit H	0.0441322901
+UniRef50_A5CFN5: NADH-quinone oxidoreductase subunit H|unclassified	0.0441322901
+UniRef50_UPI000478AE20: LysR family transcriptional regulator	0.0441312387
+UniRef50_UPI000478AE20: LysR family transcriptional regulator|unclassified	0.0441312387
+UniRef50_UPI000383257E: PREDICTED: TNF receptor-associated factor 2-like	0.0441297777
+UniRef50_UPI000383257E: PREDICTED: TNF receptor-associated factor 2-like|unclassified	0.0441297777
+UniRef50_D0J3S0: TRAP dicarboxylate transporter, DctM subunit	0.0441247675
+UniRef50_D0J3S0: TRAP dicarboxylate transporter, DctM subunit|unclassified	0.0441247675
+UniRef50_A0A017T6L9	0.0441236291
+UniRef50_A0A017T6L9|unclassified	0.0441236291
+UniRef50_UPI000474B145: isochorismate synthase	0.0441229545
+UniRef50_UPI000474B145: isochorismate synthase|unclassified	0.0441229545
+UniRef50_C1F5G2: GAF domain/GGDEF domain protein	0.0441199260
+UniRef50_C1F5G2: GAF domain/GGDEF domain protein|unclassified	0.0441199260
+UniRef50_UPI00037EE3C9: hypothetical protein	0.0441138880
+UniRef50_UPI00037EE3C9: hypothetical protein|unclassified	0.0441138880
+UniRef50_UPI00016B2480: DNA gyrase subunit A, partial	0.0441093198
+UniRef50_UPI00016B2480: DNA gyrase subunit A, partial|unclassified	0.0441093198
+UniRef50_L8Y274	0.0441029505
+UniRef50_L8Y274|unclassified	0.0441029505
+UniRef50_Q9X049: Glycerol kinase 1	0.0441010706
+UniRef50_Q9X049: Glycerol kinase 1|unclassified	0.0441010706
+UniRef50_UPI0004769BE4: replication protein A, partial	0.0441006112
+UniRef50_UPI0004769BE4: replication protein A, partial|unclassified	0.0441006112
+UniRef50_X6D8K5: ABC transporter permease	0.0441003937
+UniRef50_X6D8K5: ABC transporter permease|unclassified	0.0441003937
+UniRef50_G2IYU6: 6-pyruvoyl tetrahydropterin synthase	0.0440997096
+UniRef50_G2IYU6: 6-pyruvoyl tetrahydropterin synthase|unclassified	0.0440997096
+UniRef50_U6MRH5	0.0440939332
+UniRef50_U6MRH5|unclassified	0.0440939332
+UniRef50_UPI00038110F4: hypothetical protein	0.0440918645
+UniRef50_UPI00038110F4: hypothetical protein|unclassified	0.0440918645
+UniRef50_R4YLP9: MazG family protein	0.0440909172
+UniRef50_R4YLP9: MazG family protein|unclassified	0.0440909172
+UniRef50_UPI0003A138FC: multidrug transporter	0.0440851599
+UniRef50_UPI0003A138FC: multidrug transporter|unclassified	0.0440851599
+UniRef50_J2G021: Transposase	0.0440798120
+UniRef50_J2G021: Transposase|unclassified	0.0440798120
+UniRef50_UPI000349A3D9: hypothetical protein	0.0440785569
+UniRef50_UPI000349A3D9: hypothetical protein|unclassified	0.0440785569
+UniRef50_UPI0003AA899C: Na/Pi-cotransporter II-like protein	0.0440758919
+UniRef50_UPI0003AA899C: Na/Pi-cotransporter II-like protein|unclassified	0.0440758919
+UniRef50_UPI0001E2C2BC: hypothetical protein	0.0440757435
+UniRef50_UPI0001E2C2BC: hypothetical protein|unclassified	0.0440757435
+UniRef50_UPI00030BCD9E: hypothetical protein	0.0440689931
+UniRef50_UPI00030BCD9E: hypothetical protein|unclassified	0.0440689931
+UniRef50_A6L1U8: Lipoyl synthase	0.0440684646
+UniRef50_A6L1U8: Lipoyl synthase|unclassified	0.0440684646
+UniRef50_UPI000362E5AE: hypothetical protein	0.0440683788
+UniRef50_UPI000362E5AE: hypothetical protein|unclassified	0.0440683788
+UniRef50_UPI0003CFD277: hypothetical protein	0.0440651576
+UniRef50_UPI0003CFD277: hypothetical protein|unclassified	0.0440651576
+UniRef50_E8SNW4	0.0440645697
+UniRef50_E8SNW4|unclassified	0.0440645697
+UniRef50_UPI000366EFDC: hypothetical protein	0.0440634759
+UniRef50_UPI000366EFDC: hypothetical protein|unclassified	0.0440634759
+UniRef50_UPI000377D840: hypothetical protein	0.0440582932
+UniRef50_UPI000377D840: hypothetical protein|unclassified	0.0440582932
+UniRef50_V7EHT2	0.0440568659
+UniRef50_V7EHT2|unclassified	0.0440568659
+UniRef50_P49158: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta, chloroplastic	0.0440554409
+UniRef50_P49158: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta, chloroplastic|unclassified	0.0440554409
+UniRef50_R5L477	0.0440546611
+UniRef50_R5L477|unclassified	0.0440546611
+UniRef50_Q54VM1	0.0440506711
+UniRef50_Q54VM1|unclassified	0.0440506711
+UniRef50_W5X4S4: Arginine biosynthesis bifunctional protein ArgJ	0.0440501859
+UniRef50_W5X4S4: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.0440501859
+UniRef50_UPI00004C273F: COG0770: UDP-N-acetylmuramyl pentapeptide synthase, partial	0.0440496764
+UniRef50_UPI00004C273F: COG0770: UDP-N-acetylmuramyl pentapeptide synthase, partial|unclassified	0.0440496764
+UniRef50_UPI0003761029: MULTISPECIES: hypothetical protein	0.0440496469
+UniRef50_UPI0003761029: MULTISPECIES: hypothetical protein|unclassified	0.0440496469
+UniRef50_UPI0004641980: hypothetical protein	0.0440491266
+UniRef50_UPI0004641980: hypothetical protein|unclassified	0.0440491266
+UniRef50_Q9WYI3: Bifunctional shikimate kinase/3-dehydroquinate synthase	0.0440421076
+UniRef50_Q9WYI3: Bifunctional shikimate kinase/3-dehydroquinate synthase|unclassified	0.0440421076
+UniRef50_F1ZZ57	0.0440387245
+UniRef50_F1ZZ57|unclassified	0.0440387245
+UniRef50_U6R7W5	0.0440303940
+UniRef50_U6R7W5|unclassified	0.0440303940
+UniRef50_R6D8I4	0.0440292301
+UniRef50_R6D8I4|unclassified	0.0440292301
+UniRef50_UPI0004706511: hypothetical protein	0.0440281975
+UniRef50_UPI0004706511: hypothetical protein|unclassified	0.0440281975
+UniRef50_UPI000381E662: hypothetical protein	0.0440260923
+UniRef50_UPI000381E662: hypothetical protein|unclassified	0.0440260923
+UniRef50_UPI00047810F9: hypothetical protein	0.0440221521
+UniRef50_UPI00047810F9: hypothetical protein|unclassified	0.0440221521
+UniRef50_UPI0003719E8F: hypothetical protein, partial	0.0440198666
+UniRef50_UPI0003719E8F: hypothetical protein, partial|unclassified	0.0440198666
+UniRef50_C4Z563: Queuine tRNA-ribosyltransferase	0.0440089254
+UniRef50_C4Z563: Queuine tRNA-ribosyltransferase|unclassified	0.0440089254
+UniRef50_UPI0003B65C7B: MFS transporter	0.0440066334
+UniRef50_UPI0003B65C7B: MFS transporter|unclassified	0.0440066334
+UniRef50_UPI0003FCAAC5: hypothetical protein	0.0440046435
+UniRef50_UPI0003FCAAC5: hypothetical protein|unclassified	0.0440046435
+UniRef50_UPI0003C1A9C0: PREDICTED: glucosamine-6-phosphate isomerase 2-like	0.0440046203
+UniRef50_UPI0003C1A9C0: PREDICTED: glucosamine-6-phosphate isomerase 2-like|unclassified	0.0440046203
+UniRef50_UPI000443497D: PREDICTED: probable fibrosin-1	0.0440031367
+UniRef50_UPI000443497D: PREDICTED: probable fibrosin-1|unclassified	0.0440031367
+UniRef50_UPI0003F68FC8: hypothetical protein	0.0440010610
+UniRef50_UPI0003F68FC8: hypothetical protein|unclassified	0.0440010610
+UniRef50_C3IB05: Reticulocyte binding protein	0.0439994494
+UniRef50_C3IB05: Reticulocyte binding protein|unclassified	0.0439994494
+UniRef50_UPI00047CEE46: hypothetical protein	0.0439943074
+UniRef50_UPI00047CEE46: hypothetical protein|unclassified	0.0439943074
+UniRef50_UPI000371CE8A: hypothetical protein	0.0439932809
+UniRef50_UPI000371CE8A: hypothetical protein|unclassified	0.0439932809
+UniRef50_C7U7G3: Predicted protein	0.0439921468
+UniRef50_C7U7G3: Predicted protein|unclassified	0.0439921468
+UniRef50_UPI00035E3397: hypothetical protein	0.0439841361
+UniRef50_UPI00035E3397: hypothetical protein|unclassified	0.0439841361
+UniRef50_UPI00029B23DC: hemolysin-type calcium-binding region	0.0439785476
+UniRef50_UPI00029B23DC: hemolysin-type calcium-binding region|unclassified	0.0439785476
+UniRef50_UPI000470A12B: hypothetical protein	0.0439762397
+UniRef50_UPI000470A12B: hypothetical protein|unclassified	0.0439762397
+UniRef50_S6BJJ4	0.0439749260
+UniRef50_S6BJJ4|unclassified	0.0439749260
+UniRef50_UPI000476C2A7: ATPase AAA	0.0439726565
+UniRef50_UPI000476C2A7: ATPase AAA|unclassified	0.0439726565
+UniRef50_S3CHA3: NAD(P)-binding Rossmann-fold containing protein	0.0439700293
+UniRef50_S3CHA3: NAD(P)-binding Rossmann-fold containing protein|unclassified	0.0439700293
+UniRef50_K7IAS4	0.0439666985
+UniRef50_K7IAS4|unclassified	0.0439666985
+UniRef50_B5YFK5: Queuine tRNA-ribosyltransferase	0.0439605716
+UniRef50_B5YFK5: Queuine tRNA-ribosyltransferase|unclassified	0.0439605716
+UniRef50_Q5L114: Protoheme IX farnesyltransferase	0.0439585346
+UniRef50_Q5L114: Protoheme IX farnesyltransferase|unclassified	0.0439585346
+UniRef50_F0NS78: Beta-lactamase	0.0439575989
+UniRef50_F0NS78: Beta-lactamase|unclassified	0.0439575989
+UniRef50_S6KSX8: Beta-lactamase	0.0439572758
+UniRef50_S6KSX8: Beta-lactamase|unclassified	0.0439572758
+UniRef50_F2I6C4	0.0439553255
+UniRef50_F2I6C4|unclassified	0.0439553255
+UniRef50_UPI00036EE637: hypothetical protein	0.0439518032
+UniRef50_UPI00036EE637: hypothetical protein|unclassified	0.0439518032
+UniRef50_Q9SVN5: Probable methionine--tRNA ligase	0.0439509381
+UniRef50_Q9SVN5: Probable methionine--tRNA ligase|unclassified	0.0439509381
+UniRef50_UPI0004030B8E: hypothetical protein	0.0439468714
+UniRef50_UPI0004030B8E: hypothetical protein|unclassified	0.0439468714
+UniRef50_E1IAI1: Heat shock protein DnaJ domain-containing protein	0.0439456331
+UniRef50_E1IAI1: Heat shock protein DnaJ domain-containing protein|unclassified	0.0439456331
+UniRef50_I6WVI5	0.0439396754
+UniRef50_I6WVI5|unclassified	0.0439396754
+UniRef50_UPI00046E9317: amidohydrolase	0.0439391042
+UniRef50_UPI00046E9317: amidohydrolase|unclassified	0.0439391042
+UniRef50_O87198: Homocitrate synthase	0.0439316479
+UniRef50_O87198: Homocitrate synthase|unclassified	0.0439316479
+UniRef50_UPI0004769FCE: hypothetical protein	0.0439314964
+UniRef50_UPI0004769FCE: hypothetical protein|unclassified	0.0439314964
+UniRef50_UPI0001A6371F: Collagen alpha-1(I) chain precursor	0.0439249147
+UniRef50_UPI0001A6371F: Collagen alpha-1(I) chain precursor|unclassified	0.0439249147
+UniRef50_V9VMN8	0.0439241290
+UniRef50_V9VMN8|unclassified	0.0439241290
+UniRef50_UPI000372FBE5: hypothetical protein	0.0439234200
+UniRef50_UPI000372FBE5: hypothetical protein|unclassified	0.0439234200
+UniRef50_UPI0003B77EBB: ABC transporter	0.0439189808
+UniRef50_UPI0003B77EBB: ABC transporter|unclassified	0.0439189808
+UniRef50_D7WND4: Tn7-like transposition protein D	0.0439106312
+UniRef50_D7WND4: Tn7-like transposition protein D|unclassified	0.0439106312
+UniRef50_UPI000255BEB1: Tn7-like transposition protein D	0.0439093811
+UniRef50_UPI000255BEB1: Tn7-like transposition protein D|unclassified	0.0439093811
+UniRef50_UPI00046EBC20: hypothetical protein	0.0439068040
+UniRef50_UPI00046EBC20: hypothetical protein|unclassified	0.0439068040
+UniRef50_Q1II13: Lipoyl synthase	0.0439049967
+UniRef50_Q1II13: Lipoyl synthase|unclassified	0.0439049967
+UniRef50_Q8XP14: Uronate isomerase	0.0439030238
+UniRef50_Q8XP14: Uronate isomerase|unclassified	0.0439030238
+UniRef50_UPI0003F79D9C: trehalose synthase	0.0438984678
+UniRef50_UPI0003F79D9C: trehalose synthase|unclassified	0.0438984678
+UniRef50_UPI000248CE53: sugar ABC transporter substrate-binding protein	0.0438905029
+UniRef50_UPI000248CE53: sugar ABC transporter substrate-binding protein|unclassified	0.0438905029
+UniRef50_UPI00037D9BB8: hypothetical protein	0.0438888857
+UniRef50_UPI00037D9BB8: hypothetical protein|unclassified	0.0438888857
+UniRef50_A7Z3A7: N-acetyl-gamma-glutamyl-phosphate reductase	0.0438866551
+UniRef50_A7Z3A7: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.0438866551
+UniRef50_Q01YA2: Putative dihydroorotate dehydrogenase A (fumarate)	0.0438860003
+UniRef50_Q01YA2: Putative dihydroorotate dehydrogenase A (fumarate)|unclassified	0.0438860003
+UniRef50_P50735: Cryptic catabolic NAD-specific glutamate dehydrogenase GudB	0.0438837710
+UniRef50_P50735: Cryptic catabolic NAD-specific glutamate dehydrogenase GudB|unclassified	0.0438837710
+UniRef50_UPI0003F490D8: hypothetical protein TREMEDRAFT_66895	0.0438788842
+UniRef50_UPI0003F490D8: hypothetical protein TREMEDRAFT_66895|unclassified	0.0438788842
+UniRef50_UPI0003B4A42E: nicotinate phosphoribosyltransferase	0.0438765298
+UniRef50_UPI0003B4A42E: nicotinate phosphoribosyltransferase|unclassified	0.0438765298
+UniRef50_UPI00036A7D3C: hypothetical protein	0.0438755175
+UniRef50_UPI00036A7D3C: hypothetical protein|unclassified	0.0438755175
+UniRef50_UPI000394031C: PREDICTED: trinucleotide repeat-containing gene 18 protein-like isoform X1	0.0438710386
+UniRef50_UPI000394031C: PREDICTED: trinucleotide repeat-containing gene 18 protein-like isoform X1|unclassified	0.0438710386
+UniRef50_P08690: Arsenical pump-driving ATPase	0.0438611664
+UniRef50_P08690: Arsenical pump-driving ATPase|unclassified	0.0438611664
+UniRef50_UPI0002887BE9: glycosyl transferase	0.0438580839
+UniRef50_UPI0002887BE9: glycosyl transferase|unclassified	0.0438580839
+UniRef50_UPI0004704519: hypothetical protein	0.0438559763
+UniRef50_UPI0004704519: hypothetical protein|unclassified	0.0438559763
+UniRef50_C6WAI5: Ribonuclease BN	0.0438552346
+UniRef50_C6WAI5: Ribonuclease BN|unclassified	0.0438552346
+UniRef50_UPI000371008D: phosphoribosylaminoimidazole synthetase	0.0438474698
+UniRef50_UPI000371008D: phosphoribosylaminoimidazole synthetase|unclassified	0.0438474698
+UniRef50_P00897: Anthranilate synthase component 1	0.0438461618
+UniRef50_P00897: Anthranilate synthase component 1|unclassified	0.0438461618
+UniRef50_UPI00016A916F: probable outer membrane chanel lipoprotein	0.0438407884
+UniRef50_UPI00016A916F: probable outer membrane chanel lipoprotein|unclassified	0.0438407884
+UniRef50_A0A053ZV58: PE-PGRS family protein PE_PGRS6 (Fragment)	0.0438357533
+UniRef50_A0A053ZV58: PE-PGRS family protein PE_PGRS6 (Fragment)|unclassified	0.0438357533
+UniRef50_UPI0003666F1B: hypothetical protein	0.0438349738
+UniRef50_UPI0003666F1B: hypothetical protein|unclassified	0.0438349738
+UniRef50_T0MRM6: 3-oxoacyl-[acyl-carrier-protein] reductase	0.0438278195
+UniRef50_T0MRM6: 3-oxoacyl-[acyl-carrier-protein] reductase|unclassified	0.0438278195
+UniRef50_UPI00047CFD1E: diguanylate cyclase	0.0438260950
+UniRef50_UPI00047CFD1E: diguanylate cyclase|unclassified	0.0438260950
+UniRef50_UPI0003697316: hypothetical protein	0.0438253966
+UniRef50_UPI0003697316: hypothetical protein|unclassified	0.0438253966
+UniRef50_UPI00047C8EB6: hypothetical protein	0.0438225213
+UniRef50_UPI00047C8EB6: hypothetical protein|unclassified	0.0438225213
+UniRef50_UPI0002DA6157: hypothetical protein	0.0438206880
+UniRef50_UPI0002DA6157: hypothetical protein|unclassified	0.0438206880
+UniRef50_UPI00047DEE21: hypothetical protein	0.0438195423
+UniRef50_UPI00047DEE21: hypothetical protein|unclassified	0.0438195423
+UniRef50_UPI00046EDB55: GntR family transcriptional regulator	0.0438143258
+UniRef50_UPI00046EDB55: GntR family transcriptional regulator|unclassified	0.0438143258
+UniRef50_X6KVB6	0.0438105120
+UniRef50_X6KVB6|unclassified	0.0438105120
+UniRef50_UPI0004622833: spermidine/putrescine ABC transporter substrate-binding protein	0.0438097382
+UniRef50_UPI0004622833: spermidine/putrescine ABC transporter substrate-binding protein|unclassified	0.0438097382
+UniRef50_UPI00035F4F7E: hypothetical protein	0.0438089306
+UniRef50_UPI00035F4F7E: hypothetical protein|unclassified	0.0438089306
+UniRef50_M5BJC1	0.0438068328
+UniRef50_M5BJC1|unclassified	0.0438068328
+UniRef50_K8F0R0: Internalin-J	0.0438067040
+UniRef50_K8F0R0: Internalin-J|unclassified	0.0438067040
+UniRef50_UPI0003728CA8: hypothetical protein	0.0438042916
+UniRef50_UPI0003728CA8: hypothetical protein|unclassified	0.0438042916
+UniRef50_U2PSL0	0.0438028773
+UniRef50_U2PSL0|unclassified	0.0438028773
+UniRef50_Q97GH6: Arginine biosynthesis bifunctional protein ArgJ 1	0.0438023835
+UniRef50_Q97GH6: Arginine biosynthesis bifunctional protein ArgJ 1|unclassified	0.0438023835
+UniRef50_W1WK60	0.0438012523
+UniRef50_W1WK60|unclassified	0.0438012523
+UniRef50_UPI00025582DA: efflux ABC transporter permease	0.0437992900
+UniRef50_UPI00025582DA: efflux ABC transporter permease|unclassified	0.0437992900
+UniRef50_G4HDV6: Transcriptional regulator, PucR family	0.0437988639
+UniRef50_G4HDV6: Transcriptional regulator, PucR family|unclassified	0.0437988639
+UniRef50_UPI0002D2F8BA: hypothetical protein	0.0437953538
+UniRef50_UPI0002D2F8BA: hypothetical protein|unclassified	0.0437953538
+UniRef50_UPI00035E0D39: hypothetical protein	0.0437947327
+UniRef50_UPI00035E0D39: hypothetical protein|unclassified	0.0437947327
+UniRef50_A0A031LS76	0.0437929131
+UniRef50_A0A031LS76|unclassified	0.0437929131
+UniRef50_UPI0003DE9C0E	0.0437862518
+UniRef50_UPI0003DE9C0E|unclassified	0.0437862518
+UniRef50_B6IQ66: Phosphatase, Ppx	0.0437841119
+UniRef50_B6IQ66: Phosphatase, Ppx|unclassified	0.0437841119
+UniRef50_UPI000365507F: hypothetical protein	0.0437771039
+UniRef50_UPI000365507F: hypothetical protein|unclassified	0.0437771039
+UniRef50_UPI00046779A8: UGMP family protein	0.0437751327
+UniRef50_UPI00046779A8: UGMP family protein|unclassified	0.0437751327
+UniRef50_E4PJL6: Protein containing DUF482	0.0437698968
+UniRef50_E4PJL6: Protein containing DUF482|unclassified	0.0437698968
+UniRef50_C8WX51	0.0437685286
+UniRef50_C8WX51|unclassified	0.0437685286
+UniRef50_UPI0003798F91: hypothetical protein	0.0437681077
+UniRef50_UPI0003798F91: hypothetical protein|unclassified	0.0437681077
+UniRef50_UPI00042C756A: PREDICTED: mitogen-activated protein kinase kinase kinase 12 isoform X2	0.0437679535
+UniRef50_UPI00042C756A: PREDICTED: mitogen-activated protein kinase kinase kinase 12 isoform X2|unclassified	0.0437679535
+UniRef50_A4STW4: DsbA family oxidoreductase	0.0437653346
+UniRef50_A4STW4: DsbA family oxidoreductase|unclassified	0.0437653346
+UniRef50_P42357: Histidine ammonia-lyase	0.0437625146
+UniRef50_P42357: Histidine ammonia-lyase|unclassified	0.0437625146
+UniRef50_A0A024JIG9: Similar to Saccharomyces cerevisiae YHR111W UBA4 Protein that activates Urm1p before its conjugation to proteins (Urmylation)	0.0437621183
+UniRef50_A0A024JIG9: Similar to Saccharomyces cerevisiae YHR111W UBA4 Protein that activates Urm1p before its conjugation to proteins (Urmylation)|unclassified	0.0437621183
+UniRef50_UPI00046F0142: MULTISPECIES: pseudouridine synthase	0.0437601312
+UniRef50_UPI00046F0142: MULTISPECIES: pseudouridine synthase|unclassified	0.0437601312
+UniRef50_UPI000289E7E4: RNA polymerase sigma-54 subunit RpoN	0.0437599248
+UniRef50_UPI000289E7E4: RNA polymerase sigma-54 subunit RpoN|unclassified	0.0437599248
+UniRef50_UPI00036F0EAB: hypothetical protein	0.0437580179
+UniRef50_UPI00036F0EAB: hypothetical protein|unclassified	0.0437580179
+UniRef50_UPI0004724D3A: hypothetical protein, partial	0.0437568625
+UniRef50_UPI0004724D3A: hypothetical protein, partial|unclassified	0.0437568625
+UniRef50_M9RSR3: Putative transposase	0.0437526798
+UniRef50_M9RSR3: Putative transposase|unclassified	0.0437526798
+UniRef50_X2GKR6: Cytochrome C oxidase assembly protein	0.0437521192
+UniRef50_X2GKR6: Cytochrome C oxidase assembly protein|unclassified	0.0437521192
+UniRef50_UPI00036FBC1B: hypothetical protein	0.0437507992
+UniRef50_UPI00036FBC1B: hypothetical protein|unclassified	0.0437507992
+UniRef50_UPI00036F5AB1: hypothetical protein	0.0437490721
+UniRef50_UPI00036F5AB1: hypothetical protein|unclassified	0.0437490721
+UniRef50_A8TM94: ABC transporter, inner membrane subunit	0.0437430290
+UniRef50_A8TM94: ABC transporter, inner membrane subunit|unclassified	0.0437430290
+UniRef50_UPI00047247B2: hypothetical protein	0.0437359411
+UniRef50_UPI00047247B2: hypothetical protein|unclassified	0.0437359411
+UniRef50_UPI00046D5352: hypothetical protein	0.0437329981
+UniRef50_UPI00046D5352: hypothetical protein|unclassified	0.0437329981
+UniRef50_K1WIW8	0.0437321240
+UniRef50_K1WIW8|unclassified	0.0437321240
+UniRef50_D0D259: GfdT protein	0.0437305936
+UniRef50_D0D259: GfdT protein|unclassified	0.0437305936
+UniRef50_UPI0003728962: spermidine/putrescine ABC transporter ATP-binding protein	0.0437275036
+UniRef50_UPI0003728962: spermidine/putrescine ABC transporter ATP-binding protein|unclassified	0.0437275036
+UniRef50_UPI0003EAA09B: PREDICTED: protein PRRC2C-like	0.0437273165
+UniRef50_UPI0003EAA09B: PREDICTED: protein PRRC2C-like|unclassified	0.0437273165
+UniRef50_Q5V468: Succinyl-CoA:mesaconate CoA-transferase	0.0437248050
+UniRef50_Q5V468: Succinyl-CoA:mesaconate CoA-transferase|unclassified	0.0437248050
+UniRef50_UPI0004447B58: PREDICTED: inverted formin-2-like isoform X1	0.0437245207
+UniRef50_UPI0004447B58: PREDICTED: inverted formin-2-like isoform X1|unclassified	0.0437245207
+UniRef50_UPI0003719B2F: hypothetical protein	0.0437225309
+UniRef50_UPI0003719B2F: hypothetical protein|unclassified	0.0437225309
+UniRef50_UPI0003B52363: radical SAM protein	0.0437209356
+UniRef50_UPI0003B52363: radical SAM protein|unclassified	0.0437209356
+UniRef50_I3TSQ4: TRAP transporter, DctM-like membrane protein	0.0437152423
+UniRef50_I3TSQ4: TRAP transporter, DctM-like membrane protein|unclassified	0.0437152423
+UniRef50_UPI0004769B76: hypothetical protein	0.0437139008
+UniRef50_UPI0004769B76: hypothetical protein|unclassified	0.0437139008
+UniRef50_UPI0003799B60: hypothetical protein	0.0437138591
+UniRef50_UPI0003799B60: hypothetical protein|unclassified	0.0437138591
+UniRef50_UPI000328C990	0.0437044575
+UniRef50_UPI000328C990|unclassified	0.0437044575
+UniRef50_G2TLC1: Cytochrome c oxidase assembly factor CtaG	0.0437023460
+UniRef50_G2TLC1: Cytochrome c oxidase assembly factor CtaG|unclassified	0.0437023460
+UniRef50_A0L5M9: UDP-N-acetylenolpyruvoylglucosamine reductase	0.0437021364
+UniRef50_A0L5M9: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.0437021364
+UniRef50_UPI00046F6E04: hypothetical protein	0.0437017675
+UniRef50_UPI00046F6E04: hypothetical protein|unclassified	0.0437017675
+UniRef50_Q97ET6: Arginine biosynthesis bifunctional protein ArgJ 2	0.0436999388
+UniRef50_Q97ET6: Arginine biosynthesis bifunctional protein ArgJ 2|unclassified	0.0436999388
+UniRef50_D0D8Z5: Rb142	0.0436888137
+UniRef50_D0D8Z5: Rb142|unclassified	0.0436888137
+UniRef50_A0A024DYK2: Group II intron-encoded protein	0.0436854037
+UniRef50_A0A024DYK2: Group II intron-encoded protein|unclassified	0.0436854037
+UniRef50_UPI00036E3FCF: phospholipase C, partial	0.0436853158
+UniRef50_UPI00036E3FCF: phospholipase C, partial|unclassified	0.0436853158
+UniRef50_D6KE88	0.0436833380
+UniRef50_D6KE88|unclassified	0.0436833380
+UniRef50_UPI00037DBB4D: hypothetical protein	0.0436831722
+UniRef50_UPI00037DBB4D: hypothetical protein|unclassified	0.0436831722
+UniRef50_UPI000360B30F: hypothetical protein	0.0436786817
+UniRef50_UPI000360B30F: hypothetical protein|unclassified	0.0436786817
+UniRef50_UPI000405AB30: hypothetical protein	0.0436733773
+UniRef50_UPI000405AB30: hypothetical protein|unclassified	0.0436733773
+UniRef50_F3KEM5	0.0436657184
+UniRef50_F3KEM5|unclassified	0.0436657184
+UniRef50_UPI00037DB018: hypothetical protein, partial	0.0436653456
+UniRef50_UPI00037DB018: hypothetical protein, partial|unclassified	0.0436653456
+UniRef50_P27616: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.0436542435
+UniRef50_P27616: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.0436542435
+UniRef50_UPI0003B38626: hypothetical protein	0.0436534144
+UniRef50_UPI0003B38626: hypothetical protein|unclassified	0.0436534144
+UniRef50_A5F9D8: tRNA pseudouridine synthase D	0.0436486249
+UniRef50_A5F9D8: tRNA pseudouridine synthase D|unclassified	0.0436486249
+UniRef50_UPI000362F4E3: lactate dehydrogenase	0.0436481372
+UniRef50_UPI000362F4E3: lactate dehydrogenase|unclassified	0.0436481372
+UniRef50_UPI00047EF35E: UDP-glucose 6-dehydrogenase	0.0436460723
+UniRef50_UPI00047EF35E: UDP-glucose 6-dehydrogenase|unclassified	0.0436460723
+UniRef50_UPI00046440D9: hypothetical protein	0.0436394922
+UniRef50_UPI00046440D9: hypothetical protein|unclassified	0.0436394922
+UniRef50_A6DR66	0.0436318066
+UniRef50_A6DR66|unclassified	0.0436318066
+UniRef50_H1LEV3	0.0436288071
+UniRef50_H1LEV3|unclassified	0.0436288071
+UniRef50_UPI000470E438: hypothetical protein	0.0436278753
+UniRef50_UPI000470E438: hypothetical protein|unclassified	0.0436278753
+UniRef50_F1W4Y8: Putative membrane protein	0.0436277365
+UniRef50_F1W4Y8: Putative membrane protein|unclassified	0.0436277365
+UniRef50_UPI00042793F9: hypothetical protein	0.0436262877
+UniRef50_UPI00042793F9: hypothetical protein|unclassified	0.0436262877
+UniRef50_UPI000367EBCC: hypothetical protein	0.0436255153
+UniRef50_UPI000367EBCC: hypothetical protein|unclassified	0.0436255153
+UniRef50_Q8EEW2: Beta-hexosaminidase	0.0436205961
+UniRef50_Q8EEW2: Beta-hexosaminidase|unclassified	0.0436205961
+UniRef50_UPI0000161E8B: PhoH-like protein	0.0436203736
+UniRef50_UPI0000161E8B: PhoH-like protein|unclassified	0.0436203736
+UniRef50_U5Q852: Group-Specific Protein	0.0436172280
+UniRef50_U5Q852: Group-Specific Protein|unclassified	0.0436172280
+UniRef50_UPI0003697611: hypothetical protein	0.0436138339
+UniRef50_UPI0003697611: hypothetical protein|unclassified	0.0436138339
+UniRef50_Q1QUR4: Cupin 4	0.0436127185
+UniRef50_Q1QUR4: Cupin 4|unclassified	0.0436127185
+UniRef50_R7MV06	0.0436101436
+UniRef50_R7MV06|unclassified	0.0436101436
+UniRef50_UPI00026579AD: PREDICTED: ribosomal RNA small subunit methyltransferase A-like	0.0436077409
+UniRef50_UPI00026579AD: PREDICTED: ribosomal RNA small subunit methyltransferase A-like|unclassified	0.0436077409
+UniRef50_B0UB90: D-alanine--D-alanine ligase	0.0436073523
+UniRef50_B0UB90: D-alanine--D-alanine ligase|unclassified	0.0436073523
+UniRef50_UPI00046AC67B: cell surface protein, partial	0.0436054671
+UniRef50_UPI00046AC67B: cell surface protein, partial|unclassified	0.0436054671
+UniRef50_UPI000369903C: hypothetical protein	0.0436044681
+UniRef50_UPI000369903C: hypothetical protein|unclassified	0.0436044681
+UniRef50_UPI0004651F41: hypothetical protein	0.0436033599
+UniRef50_UPI0004651F41: hypothetical protein|unclassified	0.0436033599
+UniRef50_R6K9N2	0.0436032684
+UniRef50_R6K9N2|unclassified	0.0436032684
+UniRef50_UPI00037FB4E4: hypothetical protein	0.0436012289
+UniRef50_UPI00037FB4E4: hypothetical protein|unclassified	0.0436012289
+UniRef50_Q5ZVS4: UPF0246 protein lpg1366	0.0435958385
+UniRef50_Q5ZVS4: UPF0246 protein lpg1366|unclassified	0.0435958385
+UniRef50_F0Y0X0	0.0435952318
+UniRef50_F0Y0X0|unclassified	0.0435952318
+UniRef50_UPI0004786046: 2-hydroxyacid dehydrogenase	0.0435886868
+UniRef50_UPI0004786046: 2-hydroxyacid dehydrogenase|unclassified	0.0435886868
+UniRef50_UPI00031A750F: hypothetical protein	0.0435854731
+UniRef50_UPI00031A750F: hypothetical protein|unclassified	0.0435854731
+UniRef50_UPI0002B476BA: PREDICTED: stromal interaction molecule 1	0.0435832545
+UniRef50_UPI0002B476BA: PREDICTED: stromal interaction molecule 1|unclassified	0.0435832545
+UniRef50_UPI0003749F74: hypothetical protein	0.0435793971
+UniRef50_UPI0003749F74: hypothetical protein|unclassified	0.0435793971
+UniRef50_P74269	0.0435789408
+UniRef50_P74269|unclassified	0.0435789408
+UniRef50_UPI00037B1789: hypothetical protein	0.0435716569
+UniRef50_UPI00037B1789: hypothetical protein|unclassified	0.0435716569
+UniRef50_UPI000377D40C: hypothetical protein, partial	0.0435677736
+UniRef50_UPI000377D40C: hypothetical protein, partial|unclassified	0.0435677736
+UniRef50_UPI00035CD4CE: hypothetical protein	0.0435636392
+UniRef50_UPI00035CD4CE: hypothetical protein|unclassified	0.0435636392
+UniRef50_W1BG57	0.0435599061
+UniRef50_W1BG57|unclassified	0.0435599061
+UniRef50_R1EP08: Putative required for hyphal anastomosis protein	0.0435589372
+UniRef50_R1EP08: Putative required for hyphal anastomosis protein|unclassified	0.0435589372
+UniRef50_UPI0003641518: hypothetical protein	0.0435556799
+UniRef50_UPI0003641518: hypothetical protein|unclassified	0.0435556799
+UniRef50_X6H3R3	0.0435483041
+UniRef50_X6H3R3|unclassified	0.0435483041
+UniRef50_C0R0X6: Queuine tRNA-ribosyltransferase	0.0435462116
+UniRef50_C0R0X6: Queuine tRNA-ribosyltransferase|unclassified	0.0435462116
+UniRef50_D0LYI9	0.0435460338
+UniRef50_D0LYI9|unclassified	0.0435460338
+UniRef50_D6U054: Short-chain dehydrogenase/reductase SDR	0.0435455023
+UniRef50_D6U054: Short-chain dehydrogenase/reductase SDR|unclassified	0.0435455023
+UniRef50_E3HI99	0.0435434981
+UniRef50_E3HI99|unclassified	0.0435434981
+UniRef50_V5ESH7	0.0435396765
+UniRef50_V5ESH7|unclassified	0.0435396765
+UniRef50_Q6CAD5: YALI0D03740p	0.0435332924
+UniRef50_Q6CAD5: YALI0D03740p|unclassified	0.0435332924
+UniRef50_A1TMR9	0.0435288978
+UniRef50_A1TMR9|unclassified	0.0435288978
+UniRef50_V9XXU6	0.0435230822
+UniRef50_V9XXU6|unclassified	0.0435230822
+UniRef50_Q4L7R7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0435186282
+UniRef50_Q4L7R7: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.0435186282
+UniRef50_UPI0003298B2A: PREDICTED: UDP-N-acetyl-D-mannosamine dehydrogenase-like	0.0435180058
+UniRef50_UPI0003298B2A: PREDICTED: UDP-N-acetyl-D-mannosamine dehydrogenase-like|unclassified	0.0435180058
+UniRef50_UPI000361D3A8: hypothetical protein	0.0435148116
+UniRef50_UPI000361D3A8: hypothetical protein|unclassified	0.0435148116
+UniRef50_D4KLQ1: ATPases involved in chromosome partitioning	0.0435145037
+UniRef50_D4KLQ1: ATPases involved in chromosome partitioning|unclassified	0.0435145037
+UniRef50_R6HRP6: DNA repair protein RadC	0.0435135955
+UniRef50_R6HRP6: DNA repair protein RadC|unclassified	0.0435135955
+UniRef50_UPI0002FDB9E7: hypothetical protein	0.0435126020
+UniRef50_UPI0002FDB9E7: hypothetical protein|unclassified	0.0435126020
+UniRef50_UPI000426658F: hypothetical protein	0.0435123622
+UniRef50_UPI000426658F: hypothetical protein|unclassified	0.0435123622
+UniRef50_G4HAS3: Cobalamin synthesis protein P47K	0.0435115572
+UniRef50_G4HAS3: Cobalamin synthesis protein P47K|unclassified	0.0435115572
+UniRef50_A3DE07: Dihydroorotase	0.0435115362
+UniRef50_A3DE07: Dihydroorotase|unclassified	0.0435115362
+UniRef50_UPI0003762224: hypothetical protein	0.0435093141
+UniRef50_UPI0003762224: hypothetical protein|unclassified	0.0435093141
+UniRef50_UPI00039581EB: PREDICTED: SH3 domain-containing protein C23A1.17-like	0.0435082907
+UniRef50_UPI00039581EB: PREDICTED: SH3 domain-containing protein C23A1.17-like|unclassified	0.0435082907
+UniRef50_E2CQB1: ATP/GTP-binding protein	0.0434992361
+UniRef50_E2CQB1: ATP/GTP-binding protein|unclassified	0.0434992361
+UniRef50_UPI0003B76285: spore coat protein	0.0434985160
+UniRef50_UPI0003B76285: spore coat protein|unclassified	0.0434985160
+UniRef50_Q9CM47: Macrolide export ATP-binding/permease protein MacB	0.0434975895
+UniRef50_Q9CM47: Macrolide export ATP-binding/permease protein MacB|unclassified	0.0434975895
+UniRef50_B9MID7: Band 7 protein	0.0434951214
+UniRef50_B9MID7: Band 7 protein|unclassified	0.0434951214
+UniRef50_E3FEG1	0.0434927817
+UniRef50_E3FEG1|unclassified	0.0434927817
+UniRef50_UPI000440597B: PREDICTED: mucin-2-like, partial	0.0434886895
+UniRef50_UPI000440597B: PREDICTED: mucin-2-like, partial|unclassified	0.0434886895
+UniRef50_UPI0003C18154: PREDICTED: proline iminopeptidase-like	0.0434877059
+UniRef50_UPI0003C18154: PREDICTED: proline iminopeptidase-like|unclassified	0.0434877059
+UniRef50_UPI00016C0F2D: oligopeptide transport system permease protein	0.0434847784
+UniRef50_UPI00016C0F2D: oligopeptide transport system permease protein|unclassified	0.0434847784
+UniRef50_W8YZY9	0.0434828264
+UniRef50_W8YZY9|unclassified	0.0434828264
+UniRef50_UPI00035FC70B: hypothetical protein	0.0434785769
+UniRef50_UPI00035FC70B: hypothetical protein|unclassified	0.0434785769
+UniRef50_UPI0003B5713B: methyl-accepting chemotaxis protein	0.0434660647
+UniRef50_UPI0003B5713B: methyl-accepting chemotaxis protein|unclassified	0.0434660647
+UniRef50_UPI00035C8FD2: hypothetical protein	0.0434627740
+UniRef50_UPI00035C8FD2: hypothetical protein|unclassified	0.0434627740
+UniRef50_W5U9K0: Vasodilator-stimulated phosphoprotein	0.0434597546
+UniRef50_W5U9K0: Vasodilator-stimulated phosphoprotein|unclassified	0.0434597546
+UniRef50_UPI000377B718: hypothetical protein	0.0434593501
+UniRef50_UPI000377B718: hypothetical protein|unclassified	0.0434593501
+UniRef50_E3GY99: PP-loop domain protein	0.0434539721
+UniRef50_E3GY99: PP-loop domain protein|unclassified	0.0434539721
+UniRef50_B1ZVE5: Cobyrinic acid ac-diamide synthase	0.0434490404
+UniRef50_B1ZVE5: Cobyrinic acid ac-diamide synthase|unclassified	0.0434490404
+UniRef50_UPI0002F1A5E0: hypothetical protein	0.0434455841
+UniRef50_UPI0002F1A5E0: hypothetical protein|unclassified	0.0434455841
+UniRef50_A0QLI5: Putative NAD(+)--arginine ADP-ribosyltransferase Mav	0.0434441577
+UniRef50_A0QLI5: Putative NAD(+)--arginine ADP-ribosyltransferase Mav|unclassified	0.0434441577
+UniRef50_J0V1Y2: Putative monovalent cation/H+ antiporter subunit A	0.0434414187
+UniRef50_J0V1Y2: Putative monovalent cation/H+ antiporter subunit A|unclassified	0.0434414187
+UniRef50_UPI000248C129: ABC transporter ATP-binding protein/permease, partial	0.0434397889
+UniRef50_UPI000248C129: ABC transporter ATP-binding protein/permease, partial|unclassified	0.0434397889
+UniRef50_C0AZH5: TldD/PmbA family protein	0.0434394207
+UniRef50_C0AZH5: TldD/PmbA family protein|unclassified	0.0434394207
+UniRef50_A0A059MPI7: Permease	0.0434371235
+UniRef50_A0A059MPI7: Permease|unclassified	0.0434371235
+UniRef50_UPI0003B682D7: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase	0.0434317044
+UniRef50_UPI0003B682D7: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|unclassified	0.0434317044
+UniRef50_UPI0003B73B18: hypothetical protein	0.0434310667
+UniRef50_UPI0003B73B18: hypothetical protein|unclassified	0.0434310667
+UniRef50_Q8Y1I4	0.0434295215
+UniRef50_Q8Y1I4|unclassified	0.0434295215
+UniRef50_UPI000174498F: hypothetical protein	0.0434291752
+UniRef50_UPI000174498F: hypothetical protein|unclassified	0.0434291752
+UniRef50_UPI0002558312: alpha/beta fold family hydrolase	0.0434290283
+UniRef50_UPI0002558312: alpha/beta fold family hydrolase|unclassified	0.0434290283
+UniRef50_A4VLA1	0.0434260220
+UniRef50_A4VLA1|unclassified	0.0434260220
+UniRef50_K1WBK9	0.0434244070
+UniRef50_K1WBK9|unclassified	0.0434244070
+UniRef50_UPI00044095F6: hypothetical protein FOMMEDRAFT_151419	0.0434220127
+UniRef50_UPI00044095F6: hypothetical protein FOMMEDRAFT_151419|unclassified	0.0434220127
+UniRef50_UPI0003B3ABA7: allantoate amidohydrolase	0.0434185752
+UniRef50_UPI0003B3ABA7: allantoate amidohydrolase|unclassified	0.0434185752
+UniRef50_C0QR12: YcgL	0.0434173163
+UniRef50_C0QR12: YcgL|unclassified	0.0434173163
+UniRef50_UPI00029DBA8A	0.0434083204
+UniRef50_UPI00029DBA8A|unclassified	0.0434083204
+UniRef50_U6K3L0	0.0434079646
+UniRef50_U6K3L0|unclassified	0.0434079646
+UniRef50_R3TR36	0.0434025017
+UniRef50_R3TR36|unclassified	0.0434025017
+UniRef50_UPI0003B712A5: malate synthase	0.0433987819
+UniRef50_UPI0003B712A5: malate synthase|unclassified	0.0433987819
+UniRef50_Q0AQI7: Integral membrane protein	0.0433944463
+UniRef50_Q0AQI7: Integral membrane protein|unclassified	0.0433944463
+UniRef50_A9BQD9: HipA domain protein	0.0433896147
+UniRef50_A9BQD9: HipA domain protein|unclassified	0.0433896147
+UniRef50_UPI000368AAD7: hypothetical protein	0.0433866222
+UniRef50_UPI000368AAD7: hypothetical protein|unclassified	0.0433866222
+UniRef50_J7LCE3: Bacteriocin biosynthesis docking scaffold, SagD family domain protein	0.0433865492
+UniRef50_J7LCE3: Bacteriocin biosynthesis docking scaffold, SagD family domain protein|unclassified	0.0433865492
+UniRef50_A0A058Z3Q5	0.0433858770
+UniRef50_A0A058Z3Q5|unclassified	0.0433858770
+UniRef50_UPI00047A92A7: hypothetical protein	0.0433839558
+UniRef50_UPI00047A92A7: hypothetical protein|unclassified	0.0433839558
+UniRef50_I4EB97: Transposase and inactivated derivative	0.0433815743
+UniRef50_I4EB97: Transposase and inactivated derivative|unclassified	0.0433815743
+UniRef50_UPI00035CDA44: hypothetical protein	0.0433797871
+UniRef50_UPI00035CDA44: hypothetical protein|unclassified	0.0433797871
+UniRef50_Q8XZZ5: Amino-acid acetyltransferase	0.0433792758
+UniRef50_Q8XZZ5: Amino-acid acetyltransferase|unclassified	0.0433792758
+UniRef50_UPI000465DBA2: 3-hydroxyacyl-CoA dehydrogenase, partial	0.0433784071
+UniRef50_UPI000465DBA2: 3-hydroxyacyl-CoA dehydrogenase, partial|unclassified	0.0433784071
+UniRef50_Q0AQH4: Ppx/GppA phosphatase	0.0433754972
+UniRef50_Q0AQH4: Ppx/GppA phosphatase|unclassified	0.0433754972
+UniRef50_N2J7G3	0.0433744447
+UniRef50_N2J7G3|unclassified	0.0433744447
+UniRef50_UPI00035F9E55: hypothetical protein	0.0433727520
+UniRef50_UPI00035F9E55: hypothetical protein|unclassified	0.0433727520
+UniRef50_UPI0003735B5E: hypothetical protein	0.0433692786
+UniRef50_UPI0003735B5E: hypothetical protein|unclassified	0.0433692786
+UniRef50_G7Z5V8	0.0433676691
+UniRef50_G7Z5V8|unclassified	0.0433676691
+UniRef50_UPI00034A7125: hypothetical protein	0.0433672577
+UniRef50_UPI00034A7125: hypothetical protein|unclassified	0.0433672577
+UniRef50_UPI0003A19EC2: hypothetical protein	0.0433629647
+UniRef50_UPI0003A19EC2: hypothetical protein|unclassified	0.0433629647
+UniRef50_V8G856: ABC transporter permease	0.0433575996
+UniRef50_V8G856: ABC transporter permease|unclassified	0.0433575996
+UniRef50_W0DU87: Iron deficiency-induced protein A	0.0433575937
+UniRef50_W0DU87: Iron deficiency-induced protein A|unclassified	0.0433575937
+UniRef50_UPI0002891CEE: hypothetical protein	0.0433558793
+UniRef50_UPI0002891CEE: hypothetical protein|unclassified	0.0433558793
+UniRef50_UPI0003B51D33: transglycosylase	0.0433556153
+UniRef50_UPI0003B51D33: transglycosylase|unclassified	0.0433556153
+UniRef50_UPI0003C83EE0: PREDICTED: LOW QUALITY PROTEIN: alcohol dehydrogenase 4	0.0433453795
+UniRef50_UPI0003C83EE0: PREDICTED: LOW QUALITY PROTEIN: alcohol dehydrogenase 4|unclassified	0.0433453795
+UniRef50_UPI0003068E5B: hypothetical protein	0.0433426527
+UniRef50_UPI0003068E5B: hypothetical protein|unclassified	0.0433426527
+UniRef50_D8LJY0	0.0433376743
+UniRef50_D8LJY0|unclassified	0.0433376743
+UniRef50_B8DU54: N-acetyl-gamma-glutamyl-phosphate reductase	0.0433338985
+UniRef50_B8DU54: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.0433338985
+UniRef50_H1BPZ8	0.0433283001
+UniRef50_H1BPZ8|unclassified	0.0433283001
+UniRef50_UPI0003794486: hypothetical protein	0.0433260317
+UniRef50_UPI0003794486: hypothetical protein|unclassified	0.0433260317
+UniRef50_G0XAE5: Type IV conjugative transfer system protein TraN	0.0433246424
+UniRef50_G0XAE5: Type IV conjugative transfer system protein TraN|unclassified	0.0433246424
+UniRef50_UPI00041BDA68: hypothetical protein	0.0433236069
+UniRef50_UPI00041BDA68: hypothetical protein|unclassified	0.0433236069
+UniRef50_U3KJA9	0.0433189809
+UniRef50_U3KJA9|unclassified	0.0433189809
+UniRef50_K2JB38: Putative pirin protein	0.0433161828
+UniRef50_K2JB38: Putative pirin protein|unclassified	0.0433161828
+UniRef50_UPI0003B3D54D: glucose 6-phosphate dehydrogenase, partial	0.0433070641
+UniRef50_UPI0003B3D54D: glucose 6-phosphate dehydrogenase, partial|unclassified	0.0433070641
+UniRef50_UPI000466ECB4: helicase	0.0433041295
+UniRef50_UPI000466ECB4: helicase|unclassified	0.0433041295
+UniRef50_UPI00037FD144: hypothetical protein	0.0432994541
+UniRef50_UPI00037FD144: hypothetical protein|unclassified	0.0432994541
+UniRef50_B1M6E7: Histone deacetylase superfamily	0.0432982934
+UniRef50_B1M6E7: Histone deacetylase superfamily|unclassified	0.0432982934
+UniRef50_Q7MPS9: Coenzyme A biosynthesis bifunctional protein CoaBC	0.0432948897
+UniRef50_Q7MPS9: Coenzyme A biosynthesis bifunctional protein CoaBC|unclassified	0.0432948897
+UniRef50_P67484: Histidine--tRNA ligase	0.0432870843
+UniRef50_P67484: Histidine--tRNA ligase|unclassified	0.0432870843
+UniRef50_UPI000476C51C: molecular chaperone SurA	0.0432850625
+UniRef50_UPI000476C51C: molecular chaperone SurA|unclassified	0.0432850625
+UniRef50_UPI000465D355: hypothetical protein	0.0432753111
+UniRef50_UPI000465D355: hypothetical protein|unclassified	0.0432753111
+UniRef50_UPI00047C274A: UDP-N-acetylenolpyruvoylglucosamine reductase	0.0432749154
+UniRef50_UPI00047C274A: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.0432749154
+UniRef50_UPI0003783691: hypothetical protein, partial	0.0432736684
+UniRef50_UPI0003783691: hypothetical protein, partial|unclassified	0.0432736684
+UniRef50_Q71YZ5: 2-succinylbenzoate--CoA ligase	0.0432736101
+UniRef50_Q71YZ5: 2-succinylbenzoate--CoA ligase|unclassified	0.0432736101
+UniRef50_V9GEA9: Flagellar hook-length control protein FliK	0.0432729196
+UniRef50_V9GEA9: Flagellar hook-length control protein FliK|unclassified	0.0432729196
+UniRef50_K7EAU5	0.0432654026
+UniRef50_K7EAU5|unclassified	0.0432654026
+UniRef50_UPI0002E3DB0E: gluconokinase	0.0432648965
+UniRef50_UPI0002E3DB0E: gluconokinase|unclassified	0.0432648965
+UniRef50_UPI00035ED9D3: hypothetical protein	0.0432631936
+UniRef50_UPI00035ED9D3: hypothetical protein|unclassified	0.0432631936
+UniRef50_Q93R93: Acetylornithine/acetyl-lysine aminotransferase	0.0432623015
+UniRef50_Q93R93: Acetylornithine/acetyl-lysine aminotransferase|unclassified	0.0432623015
+UniRef50_V2J7N5: Putative oxidoreductase Fe-S binding subunit	0.0432553662
+UniRef50_V2J7N5: Putative oxidoreductase Fe-S binding subunit|unclassified	0.0432553662
+UniRef50_UPI000219576D: homoserine dehydrogenase	0.0432547240
+UniRef50_UPI000219576D: homoserine dehydrogenase|unclassified	0.0432547240
+UniRef50_UPI00044144A1: 50s ribosomal protein	0.0432520137
+UniRef50_UPI00044144A1: 50s ribosomal protein|unclassified	0.0432520137
+UniRef50_B9JKM5: Sugar ABC transporter	0.0432520110
+UniRef50_B9JKM5: Sugar ABC transporter|unclassified	0.0432520110
+UniRef50_UPI00038313DA: hypothetical protein M271_48360	0.0432483188
+UniRef50_UPI00038313DA: hypothetical protein M271_48360|unclassified	0.0432483188
+UniRef50_UPI00046D6614: hypothetical protein	0.0432455283
+UniRef50_UPI00046D6614: hypothetical protein|unclassified	0.0432455283
+UniRef50_U5H1Z6	0.0432442308
+UniRef50_U5H1Z6|unclassified	0.0432442308
+UniRef50_UPI000463619F: hypothetical protein, partial	0.0432419423
+UniRef50_UPI000463619F: hypothetical protein, partial|unclassified	0.0432419423
+UniRef50_G1Y2R9: PE-PGRS family protein	0.0432411551
+UniRef50_G1Y2R9: PE-PGRS family protein|unclassified	0.0432411551
+UniRef50_A6UF25	0.0432370703
+UniRef50_A6UF25|unclassified	0.0432370703
+UniRef50_A3D090: Nucleoside-diphosphate-sugar epimerase-like protein	0.0432353264
+UniRef50_A3D090: Nucleoside-diphosphate-sugar epimerase-like protein|unclassified	0.0432353264
+UniRef50_UPI00037CDF52: hypothetical protein	0.0432344624
+UniRef50_UPI00037CDF52: hypothetical protein|unclassified	0.0432344624
+UniRef50_J7QIZ8: Predicted permease	0.0432332801
+UniRef50_J7QIZ8: Predicted permease|unclassified	0.0432332801
+UniRef50_B6IS97	0.0432313247
+UniRef50_B6IS97|unclassified	0.0432313247
+UniRef50_UPI00036CDC12: hypothetical protein	0.0432288652
+UniRef50_UPI00036CDC12: hypothetical protein|unclassified	0.0432288652
+UniRef50_Q8RCF9: 2-isopropylmalate synthase 2	0.0432276542
+UniRef50_Q8RCF9: 2-isopropylmalate synthase 2|unclassified	0.0432276542
+UniRef50_UPI00046EC785: hypothetical protein	0.0432182510
+UniRef50_UPI00046EC785: hypothetical protein|unclassified	0.0432182510
+UniRef50_UPI0003760BC3: MULTISPECIES: hypothetical protein	0.0432178555
+UniRef50_UPI0003760BC3: MULTISPECIES: hypothetical protein|unclassified	0.0432178555
+UniRef50_B2UUU2: Phosphopentomutase	0.0432144229
+UniRef50_B2UUU2: Phosphopentomutase|unclassified	0.0432144229
+UniRef50_D1PLB9	0.0432134441
+UniRef50_D1PLB9|unclassified	0.0432134441
+UniRef50_UPI00024843D9: LysR family transcriptional regulator	0.0432133289
+UniRef50_UPI00024843D9: LysR family transcriptional regulator|unclassified	0.0432133289
+UniRef50_C6D2I3: Cytochrome c oxidase assembly factor CtaG	0.0432059037
+UniRef50_C6D2I3: Cytochrome c oxidase assembly factor CtaG|unclassified	0.0432059037
+UniRef50_UPI0003721F1B: hypothetical protein	0.0432031230
+UniRef50_UPI0003721F1B: hypothetical protein|unclassified	0.0432031230
+UniRef50_UPI000395B653: MFS transporter	0.0432030480
+UniRef50_UPI000395B653: MFS transporter|unclassified	0.0432030480
+UniRef50_UPI00035FFFC6: hypothetical protein	0.0431998541
+UniRef50_UPI00035FFFC6: hypothetical protein|unclassified	0.0431998541
+UniRef50_UPI000422BA91: hypothetical protein	0.0431963380
+UniRef50_UPI000422BA91: hypothetical protein|unclassified	0.0431963380
+UniRef50_W7VYN0	0.0431962269
+UniRef50_W7VYN0|unclassified	0.0431962269
+UniRef50_R1CNG8	0.0431951619
+UniRef50_R1CNG8|unclassified	0.0431951619
+UniRef50_UPI00034592DA: histidine kinase	0.0431931698
+UniRef50_UPI00034592DA: histidine kinase|unclassified	0.0431931698
+UniRef50_UPI0004448111: PREDICTED: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial isoform X1	0.0431927440
+UniRef50_UPI0004448111: PREDICTED: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial isoform X1|unclassified	0.0431927440
+UniRef50_UPI00026C800D: sodium:proton antiporter	0.0431804245
+UniRef50_UPI00026C800D: sodium:proton antiporter|unclassified	0.0431804245
+UniRef50_F4R474	0.0431707159
+UniRef50_F4R474|unclassified	0.0431707159
+UniRef50_UPI00046ED4D0: hypothetical protein, partial	0.0431678591
+UniRef50_UPI00046ED4D0: hypothetical protein, partial|unclassified	0.0431678591
+UniRef50_R5I285	0.0431676880
+UniRef50_R5I285|unclassified	0.0431676880
+UniRef50_T0HM91	0.0431631960
+UniRef50_T0HM91|unclassified	0.0431631960
+UniRef50_UPI00037F53B6: hypothetical protein, partial	0.0431597844
+UniRef50_UPI00037F53B6: hypothetical protein, partial|unclassified	0.0431597844
+UniRef50_UPI00037E8707: polyamine ABC transporter substrate-binding protein	0.0431589504
+UniRef50_UPI00037E8707: polyamine ABC transporter substrate-binding protein|unclassified	0.0431589504
+UniRef50_Q3UNZ8: Quinone oxidoreductase-like protein 2	0.0431572845
+UniRef50_Q3UNZ8: Quinone oxidoreductase-like protein 2|unclassified	0.0431572845
+UniRef50_W4SFP8	0.0431570636
+UniRef50_W4SFP8|unclassified	0.0431570636
+UniRef50_B5RQE7: Queuine tRNA-ribosyltransferase	0.0431570200
+UniRef50_B5RQE7: Queuine tRNA-ribosyltransferase|unclassified	0.0431570200
+UniRef50_UPI0003B79E89: hypothetical protein	0.0431551879
+UniRef50_UPI0003B79E89: hypothetical protein|unclassified	0.0431551879
+UniRef50_B1WZH9: 3-phosphoshikimate 1-carboxyvinyltransferase	0.0431504106
+UniRef50_B1WZH9: 3-phosphoshikimate 1-carboxyvinyltransferase|unclassified	0.0431504106
+UniRef50_K2CW16: Short-chain dehydrogenase/reductase SDR	0.0431499801
+UniRef50_K2CW16: Short-chain dehydrogenase/reductase SDR|unclassified	0.0431499801
+UniRef50_UPI00037EC3CA: hypothetical protein, partial	0.0431480160
+UniRef50_UPI00037EC3CA: hypothetical protein, partial|unclassified	0.0431480160
+UniRef50_A6G5J4: Histone deacetylase superfamily protein (Fragment)	0.0431449672
+UniRef50_A6G5J4: Histone deacetylase superfamily protein (Fragment)|unclassified	0.0431449672
+UniRef50_S3AT56	0.0431438281
+UniRef50_S3AT56|unclassified	0.0431438281
+UniRef50_L2FQU3: Pyoverdine dityrosine biosynthesis protein	0.0431427492
+UniRef50_L2FQU3: Pyoverdine dityrosine biosynthesis protein|unclassified	0.0431427492
+UniRef50_UPI00035C6608: hypothetical protein	0.0431379620
+UniRef50_UPI00035C6608: hypothetical protein|unclassified	0.0431379620
+UniRef50_UPI0004715D8D: alkane 1-monooxygenase	0.0431365314
+UniRef50_UPI0004715D8D: alkane 1-monooxygenase|unclassified	0.0431365314
+UniRef50_UPI00030D0314: hypothetical protein	0.0431364654
+UniRef50_UPI00030D0314: hypothetical protein|unclassified	0.0431364654
+UniRef50_Q8EUR3: Spermidine/putrescine import ATP-binding protein PotA	0.0431363626
+UniRef50_Q8EUR3: Spermidine/putrescine import ATP-binding protein PotA|unclassified	0.0431363626
+UniRef50_Q4FP51: Homoserine O-acetyltransferase	0.0431309901
+UniRef50_Q4FP51: Homoserine O-acetyltransferase|unclassified	0.0431309901
+UniRef50_U6I5L2: Propionyl coenzyme A carboxylase alpha chain	0.0431283161
+UniRef50_U6I5L2: Propionyl coenzyme A carboxylase alpha chain|unclassified	0.0431283161
+UniRef50_UPI0003B685ED: ABC transporter ATP-binding protein	0.0431281552
+UniRef50_UPI0003B685ED: ABC transporter ATP-binding protein|unclassified	0.0431281552
+UniRef50_Q9FAX2: DNA gyrase subunit B (Fragment)	0.0431256868
+UniRef50_Q9FAX2: DNA gyrase subunit B (Fragment)|unclassified	0.0431256868
+UniRef50_UPI000427D94C: hypothetical protein	0.0431152232
+UniRef50_UPI000427D94C: hypothetical protein|unclassified	0.0431152232
+UniRef50_A1B2H3: Flagellar protein, putative	0.0431098522
+UniRef50_A1B2H3: Flagellar protein, putative|unclassified	0.0431098522
+UniRef50_UPI0002235776: PREDICTED: beta-galactosidase-1-like protein 2-like	0.0431087605
+UniRef50_UPI0002235776: PREDICTED: beta-galactosidase-1-like protein 2-like|unclassified	0.0431087605
+UniRef50_UPI00039A3D12: methylmalonyl-CoA mutase	0.0431066525
+UniRef50_UPI00039A3D12: methylmalonyl-CoA mutase|unclassified	0.0431066525
+UniRef50_UPI00035F1C59: 50S ribosomal protein L3	0.0431062297
+UniRef50_UPI00035F1C59: 50S ribosomal protein L3|unclassified	0.0431062297
+UniRef50_Q88ZH4: Teichoic acids export ATP-binding protein TagH	0.0431053328
+UniRef50_Q88ZH4: Teichoic acids export ATP-binding protein TagH|unclassified	0.0431053328
+UniRef50_A7BZW3: NADH dehydrogenase (Quinone)	0.0431040095
+UniRef50_A7BZW3: NADH dehydrogenase (Quinone)|unclassified	0.0431040095
+UniRef50_W7ZGY0: Glyoxalase family protein	0.0431024321
+UniRef50_W7ZGY0: Glyoxalase family protein|unclassified	0.0431024321
+UniRef50_UPI0003737615: hypothetical protein	0.0430976660
+UniRef50_UPI0003737615: hypothetical protein|unclassified	0.0430976660
+UniRef50_W8R0F5	0.0430865983
+UniRef50_W8R0F5|unclassified	0.0430865983
+UniRef50_UPI00037FE958: hypothetical protein	0.0430859658
+UniRef50_UPI00037FE958: hypothetical protein|unclassified	0.0430859658
+UniRef50_UPI0004673FD8: hypothetical protein	0.0430787538
+UniRef50_UPI0004673FD8: hypothetical protein|unclassified	0.0430787538
+UniRef50_UPI00016C52B2: potassium-transporting ATPase subunit A	0.0430758212
+UniRef50_UPI00016C52B2: potassium-transporting ATPase subunit A|unclassified	0.0430758212
+UniRef50_UPI000262CBDF: putative transporter	0.0430738989
+UniRef50_UPI000262CBDF: putative transporter|unclassified	0.0430738989
+UniRef50_UPI0003A88B86: ATPase	0.0430730842
+UniRef50_UPI0003A88B86: ATPase|unclassified	0.0430730842
+UniRef50_UPI00047260FE: multidrug MFS transporter	0.0430715818
+UniRef50_UPI00047260FE: multidrug MFS transporter|unclassified	0.0430715818
+UniRef50_A1VUK8	0.0430709945
+UniRef50_A1VUK8|unclassified	0.0430709945
+UniRef50_M1HJT7	0.0430681642
+UniRef50_M1HJT7|unclassified	0.0430681642
+UniRef50_G0S4V6	0.0430659617
+UniRef50_G0S4V6|unclassified	0.0430659617
+UniRef50_B8PDC8: Predicted protein	0.0430650690
+UniRef50_B8PDC8: Predicted protein|unclassified	0.0430650690
+UniRef50_UPI000466A230: arsenic ABC transporter ATPase	0.0430647428
+UniRef50_UPI000466A230: arsenic ABC transporter ATPase|unclassified	0.0430647428
+UniRef50_Q04C22: DNA-directed RNA polymerase subunit beta	0.0430610011
+UniRef50_Q04C22: DNA-directed RNA polymerase subunit beta|unclassified	0.0430610011
+UniRef50_X5FIX0: Two-component response regulator and GGDEF family protein YeaJ	0.0430608597
+UniRef50_X5FIX0: Two-component response regulator and GGDEF family protein YeaJ|unclassified	0.0430608597
+UniRef50_UPI00021915F5: cell division protein FtsW	0.0430604189
+UniRef50_UPI00021915F5: cell division protein FtsW|unclassified	0.0430604189
+UniRef50_UPI0003B6604C: surfeit locus 1 family protein	0.0430574258
+UniRef50_UPI0003B6604C: surfeit locus 1 family protein|unclassified	0.0430574258
+UniRef50_R5RC51	0.0430560233
+UniRef50_R5RC51|unclassified	0.0430560233
+UniRef50_UPI00036680AA: hypothetical protein	0.0430546995
+UniRef50_UPI00036680AA: hypothetical protein|unclassified	0.0430546995
+UniRef50_O67929: Cyclic pyranopterin monophosphate synthase	0.0430541423
+UniRef50_O67929: Cyclic pyranopterin monophosphate synthase|unclassified	0.0430541423
+UniRef50_Q1GUX8: Phosphate binding protein, putative	0.0430520935
+UniRef50_Q1GUX8: Phosphate binding protein, putative|unclassified	0.0430520935
+UniRef50_A8LCJ1	0.0430490332
+UniRef50_A8LCJ1|unclassified	0.0430490332
+UniRef50_UPI00046F7DB6: hypothetical protein	0.0430470698
+UniRef50_UPI00046F7DB6: hypothetical protein|unclassified	0.0430470698
+UniRef50_UPI0001B4A052: hypothetical protein, partial	0.0430467325
+UniRef50_UPI0001B4A052: hypothetical protein, partial|unclassified	0.0430467325
+UniRef50_UPI00044165DC: ribosomal protein L6	0.0430467036
+UniRef50_UPI00044165DC: ribosomal protein L6|unclassified	0.0430467036
+UniRef50_Q6L4I9	0.0430455906
+UniRef50_Q6L4I9|unclassified	0.0430455906
+UniRef50_UPI00029CD1FE: molybdopterin biosynthesis protein, partial	0.0430441042
+UniRef50_UPI00029CD1FE: molybdopterin biosynthesis protein, partial|unclassified	0.0430441042
+UniRef50_UPI00046CAEE2: hypothetical protein	0.0430424750
+UniRef50_UPI00046CAEE2: hypothetical protein|unclassified	0.0430424750
+UniRef50_D5CLG1: NnrS family protein	0.0430416464
+UniRef50_D5CLG1: NnrS family protein|unclassified	0.0430416464
+UniRef50_R5VP73	0.0430399149
+UniRef50_R5VP73|unclassified	0.0430399149
+UniRef50_UPI00047C8FE8: hypothetical protein	0.0430386801
+UniRef50_UPI00047C8FE8: hypothetical protein|unclassified	0.0430386801
+UniRef50_N1ZJC2	0.0430325174
+UniRef50_N1ZJC2|unclassified	0.0430325174
+UniRef50_UPI0003760DEE: hypothetical protein	0.0430322412
+UniRef50_UPI0003760DEE: hypothetical protein|unclassified	0.0430322412
+UniRef50_V4ZMJ1	0.0430295730
+UniRef50_V4ZMJ1|unclassified	0.0430295730
+UniRef50_A6TNX2: Arginine--tRNA ligase	0.0430292518
+UniRef50_A6TNX2: Arginine--tRNA ligase|unclassified	0.0430292518
+UniRef50_UPI000475C8AF: hypothetical protein	0.0430282331
+UniRef50_UPI000475C8AF: hypothetical protein|unclassified	0.0430282331
+UniRef50_UPI00035F927E: hypothetical protein	0.0430244675
+UniRef50_UPI00035F927E: hypothetical protein|unclassified	0.0430244675
+UniRef50_UPI000289BCBF: cell division protein FtsZ	0.0430221907
+UniRef50_UPI000289BCBF: cell division protein FtsZ|unclassified	0.0430221907
+UniRef50_UPI0001C36F9A: outer membrane adhesin like proteiin	0.0430211892
+UniRef50_UPI0001C36F9A: outer membrane adhesin like proteiin|unclassified	0.0430211892
+UniRef50_UPI0004651115: hypothetical protein	0.0430147051
+UniRef50_UPI0004651115: hypothetical protein|unclassified	0.0430147051
+UniRef50_B1HRD6: Glyoxalase family protein	0.0430115770
+UniRef50_B1HRD6: Glyoxalase family protein|unclassified	0.0430115770
+UniRef50_C9TPX2: Pirin family protein	0.0430105394
+UniRef50_C9TPX2: Pirin family protein|unclassified	0.0430105394
+UniRef50_B0S093: D-alanine--D-alanine ligase	0.0430085107
+UniRef50_B0S093: D-alanine--D-alanine ligase|unclassified	0.0430085107
+UniRef50_H5URR5	0.0430061629
+UniRef50_H5URR5|unclassified	0.0430061629
+UniRef50_UPI00036431E1: hypothetical protein	0.0430056713
+UniRef50_UPI00036431E1: hypothetical protein|unclassified	0.0430056713
+UniRef50_UPI000428C2CA: ABC transporter permease	0.0430049678
+UniRef50_UPI000428C2CA: ABC transporter permease|unclassified	0.0430049678
+UniRef50_O06457: N5-carboxyaminoimidazole ribonucleotide synthase	0.0430001373
+UniRef50_O06457: N5-carboxyaminoimidazole ribonucleotide synthase|unclassified	0.0430001373
+UniRef50_I3TN29: Threonine dehydratase	0.0429990359
+UniRef50_I3TN29: Threonine dehydratase|unclassified	0.0429990359
+UniRef50_UPI00036B151A: hypothetical protein	0.0429973695
+UniRef50_UPI00036B151A: hypothetical protein|unclassified	0.0429973695
+UniRef50_UPI0001B431B1: cation transporting ATPase, partial	0.0429930815
+UniRef50_UPI0001B431B1: cation transporting ATPase, partial|unclassified	0.0429930815
+UniRef50_UPI000472C0F9: hypothetical protein	0.0429923169
+UniRef50_UPI000472C0F9: hypothetical protein|unclassified	0.0429923169
+UniRef50_UPI0003940994: PREDICTED: molybdenum cofactor biosynthesis protein 1-like	0.0429872952
+UniRef50_UPI0003940994: PREDICTED: molybdenum cofactor biosynthesis protein 1-like|unclassified	0.0429872952
+UniRef50_UPI00029AF772: multidrug ABC transporter ATPase	0.0429846806
+UniRef50_UPI00029AF772: multidrug ABC transporter ATPase|unclassified	0.0429846806
+UniRef50_UPI0002E91924: hypothetical protein	0.0429845577
+UniRef50_UPI0002E91924: hypothetical protein|unclassified	0.0429845577
+UniRef50_Q8FT41: Carbamoyl-phosphate synthase small chain	0.0429830794
+UniRef50_Q8FT41: Carbamoyl-phosphate synthase small chain|unclassified	0.0429830794
+UniRef50_UPI00036CF085: hypothetical protein	0.0429805051
+UniRef50_UPI00036CF085: hypothetical protein|unclassified	0.0429805051
+UniRef50_UPI0003B4B68F: peptidase M20	0.0429724817
+UniRef50_UPI0003B4B68F: peptidase M20|unclassified	0.0429724817
+UniRef50_U1IKH5: Chromosome partitioning protein	0.0429613485
+UniRef50_U1IKH5: Chromosome partitioning protein|unclassified	0.0429613485
+UniRef50_UPI0004783728: hypothetical protein	0.0429593278
+UniRef50_UPI0004783728: hypothetical protein|unclassified	0.0429593278
+UniRef50_UPI00046561BB: outer membrane protein assembly protein YaeT	0.0429588853
+UniRef50_UPI00046561BB: outer membrane protein assembly protein YaeT|unclassified	0.0429588853
+UniRef50_R7HTA0: Permease	0.0429578339
+UniRef50_R7HTA0: Permease|unclassified	0.0429578339
+UniRef50_L2FWJ0: Beta-lactamase	0.0429570801
+UniRef50_L2FWJ0: Beta-lactamase|unclassified	0.0429570801
+UniRef50_G0JLZ9	0.0429554212
+UniRef50_G0JLZ9|unclassified	0.0429554212
+UniRef50_V8HMX6	0.0429552201
+UniRef50_V8HMX6|unclassified	0.0429552201
+UniRef50_D0L7S5: LmbE family protein	0.0429533209
+UniRef50_D0L7S5: LmbE family protein|unclassified	0.0429533209
+UniRef50_UPI0004703FEE: HrcA family transcriptional regulator	0.0429523790
+UniRef50_UPI0004703FEE: HrcA family transcriptional regulator|unclassified	0.0429523790
+UniRef50_UPI000359477C: PREDICTED: collagen alpha-1(I) chain-like	0.0429482670
+UniRef50_UPI000359477C: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.0429482670
+UniRef50_P05342: Homocitrate synthase	0.0429431974
+UniRef50_P05342: Homocitrate synthase|unclassified	0.0429431974
+UniRef50_UPI000372C6C1: hypothetical protein	0.0429414473
+UniRef50_UPI000372C6C1: hypothetical protein|unclassified	0.0429414473
+UniRef50_S2L414	0.0429372929
+UniRef50_S2L414|unclassified	0.0429372929
+UniRef50_UPI00036215C0: hypothetical protein	0.0429329083
+UniRef50_UPI00036215C0: hypothetical protein|unclassified	0.0429329083
+UniRef50_UPI00035C95B0: hypothetical protein	0.0429310771
+UniRef50_UPI00035C95B0: hypothetical protein|unclassified	0.0429310771
+UniRef50_UPI0003FAD0C0: hypothetical protein	0.0429282989
+UniRef50_UPI0003FAD0C0: hypothetical protein|unclassified	0.0429282989
+UniRef50_Q3SSB6: Phage Gp37Gp68	0.0429268486
+UniRef50_Q3SSB6: Phage Gp37Gp68|unclassified	0.0429268486
+UniRef50_J8NK75	0.0429267451
+UniRef50_J8NK75|unclassified	0.0429267451
+UniRef50_UPI0003B3C4C8: hypothetical protein	0.0429261902
+UniRef50_UPI0003B3C4C8: hypothetical protein|unclassified	0.0429261902
+UniRef50_E8SG92	0.0429146651
+UniRef50_E8SG92|unclassified	0.0429146651
+UniRef50_UPI0003731FE3: hypothetical protein	0.0429114593
+UniRef50_UPI0003731FE3: hypothetical protein|unclassified	0.0429114593
+UniRef50_Q67PA6: Proline--tRNA ligase	0.0429096179
+UniRef50_Q67PA6: Proline--tRNA ligase|unclassified	0.0429096179
+UniRef50_R4YAM6: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome	0.0429095375
+UniRef50_R4YAM6: Klebsiella pneumoniae subsp. rhinoscleromatis strain SB3432, complete genome|unclassified	0.0429095375
+UniRef50_S2WIP9	0.0429084796
+UniRef50_S2WIP9|unclassified	0.0429084796
+UniRef50_B2SEB4: Potassium-transporting ATPase A chain	0.0429050091
+UniRef50_B2SEB4: Potassium-transporting ATPase A chain|unclassified	0.0429050091
+UniRef50_UPI00041133FD: hypothetical protein	0.0429049427
+UniRef50_UPI00041133FD: hypothetical protein|unclassified	0.0429049427
+UniRef50_UPI00047D36B8: HrcA family transcriptional regulator	0.0429014308
+UniRef50_UPI00047D36B8: HrcA family transcriptional regulator|unclassified	0.0429014308
+UniRef50_A5FPX2: Glutamate--tRNA ligase	0.0428982766
+UniRef50_A5FPX2: Glutamate--tRNA ligase|unclassified	0.0428982766
+UniRef50_UPI000477BAB8: transcriptional regulator	0.0428961218
+UniRef50_UPI000477BAB8: transcriptional regulator|unclassified	0.0428961218
+UniRef50_D5AKE9	0.0428960956
+UniRef50_D5AKE9|unclassified	0.0428960956
+UniRef50_UPI0001FFE5C0: methylase involved in ubiquinone/menaquinone biosynthesis	0.0428944072
+UniRef50_UPI0001FFE5C0: methylase involved in ubiquinone/menaquinone biosynthesis|unclassified	0.0428944072
+UniRef50_UPI0003B42D35: diguanylate cyclase	0.0428936592
+UniRef50_UPI0003B42D35: diguanylate cyclase|unclassified	0.0428936592
+UniRef50_UPI0001CBBA33: PREDICTED: nucleoside diphosphate-linked moiety X motif 17-like	0.0428931188
+UniRef50_UPI0001CBBA33: PREDICTED: nucleoside diphosphate-linked moiety X motif 17-like|unclassified	0.0428931188
+UniRef50_UPI0002B4A8A0: PREDICTED: tRNA-specific adenosine deaminase, chloroplastic-like	0.0428906486
+UniRef50_UPI0002B4A8A0: PREDICTED: tRNA-specific adenosine deaminase, chloroplastic-like|unclassified	0.0428906486
+UniRef50_A0A014P8T7	0.0428897459
+UniRef50_A0A014P8T7|unclassified	0.0428897459
+UniRef50_UPI0003B5F778: iron ABC transporter	0.0428885257
+UniRef50_UPI0003B5F778: iron ABC transporter|unclassified	0.0428885257
+UniRef50_UPI0003B3C330: hypothetical protein	0.0428873893
+UniRef50_UPI0003B3C330: hypothetical protein|unclassified	0.0428873893
+UniRef50_B8J198: Lon protease	0.0428869857
+UniRef50_B8J198: Lon protease|unclassified	0.0428869857
+UniRef50_M5A690	0.0428835024
+UniRef50_M5A690|unclassified	0.0428835024
+UniRef50_UPI0003798C7E: hypothetical protein	0.0428817274
+UniRef50_UPI0003798C7E: hypothetical protein|unclassified	0.0428817274
+UniRef50_UPI0002896155: ribokinase	0.0428800570
+UniRef50_UPI0002896155: ribokinase|unclassified	0.0428800570
+UniRef50_A8LL66	0.0428749504
+UniRef50_A8LL66|unclassified	0.0428749504
+UniRef50_O15822: 3E1 protein	0.0428722733
+UniRef50_O15822: 3E1 protein|unclassified	0.0428722733
+UniRef50_UPI0003656A4F: MULTISPECIES: hypothetical protein	0.0428689226
+UniRef50_UPI0003656A4F: MULTISPECIES: hypothetical protein|unclassified	0.0428689226
+UniRef50_UPI000477F667: oligo-1,6-glucosidase	0.0428686935
+UniRef50_UPI000477F667: oligo-1,6-glucosidase|unclassified	0.0428686935
+UniRef50_UPI0002192057: xanthine dehydrogenase subunit XdhA, partial	0.0428677001
+UniRef50_UPI0002192057: xanthine dehydrogenase subunit XdhA, partial|unclassified	0.0428677001
+UniRef50_UPI00016C4E80: preprotein translocase subunit SecA	0.0428671786
+UniRef50_UPI00016C4E80: preprotein translocase subunit SecA|unclassified	0.0428671786
+UniRef50_UPI00036439E4: hypothetical protein	0.0428669964
+UniRef50_UPI00036439E4: hypothetical protein|unclassified	0.0428669964
+UniRef50_E9AEM7: Putative proteophosphoglycan ppg3	0.0428643753
+UniRef50_E9AEM7: Putative proteophosphoglycan ppg3|unclassified	0.0428643753
+UniRef50_Q31NV9: Prolipoprotein diacylglyceryl transferase	0.0428606512
+UniRef50_Q31NV9: Prolipoprotein diacylglyceryl transferase|unclassified	0.0428606512
+UniRef50_K0J7W6	0.0428605726
+UniRef50_K0J7W6|unclassified	0.0428605726
+UniRef50_P41368: Isoleucine--tRNA ligase	0.0428600613
+UniRef50_P41368: Isoleucine--tRNA ligase|unclassified	0.0428600613
+UniRef50_UPI000420C9E9: hypothetical protein	0.0428563663
+UniRef50_UPI000420C9E9: hypothetical protein|unclassified	0.0428563663
+UniRef50_Q21UZ2: Glycerol-3-phosphate acyltransferase	0.0428548779
+UniRef50_Q21UZ2: Glycerol-3-phosphate acyltransferase|unclassified	0.0428548779
+UniRef50_UPI0003B36820: arginyl-tRNA synthetase	0.0428543509
+UniRef50_UPI0003B36820: arginyl-tRNA synthetase|unclassified	0.0428543509
+UniRef50_UPI00035FCD7D: hypothetical protein	0.0428531514
+UniRef50_UPI00035FCD7D: hypothetical protein|unclassified	0.0428531514
+UniRef50_I0YSJ2	0.0428492588
+UniRef50_I0YSJ2|unclassified	0.0428492588
+UniRef50_UPI000474BBE2: ATP synthase F0F1 subunit gamma	0.0428486604
+UniRef50_UPI000474BBE2: ATP synthase F0F1 subunit gamma|unclassified	0.0428486604
+UniRef50_F7QPP0	0.0428479875
+UniRef50_F7QPP0|unclassified	0.0428479875
+UniRef50_UPI00036CBFA7: hypothetical protein	0.0428434352
+UniRef50_UPI00036CBFA7: hypothetical protein|unclassified	0.0428434352
+UniRef50_UPI000399C862: serine/threonine dehydratase	0.0428430330
+UniRef50_UPI000399C862: serine/threonine dehydratase|unclassified	0.0428430330
+UniRef50_UPI000477C851: hypothetical protein	0.0428428458
+UniRef50_UPI000477C851: hypothetical protein|unclassified	0.0428428458
+UniRef50_UPI000471B1B6: hypothetical protein	0.0428427308
+UniRef50_UPI000471B1B6: hypothetical protein|unclassified	0.0428427308
+UniRef50_UPI0004689393: DNA topoisomerase I	0.0428414173
+UniRef50_UPI0004689393: DNA topoisomerase I|unclassified	0.0428414173
+UniRef50_Q1CWT2: ATP synthase subunit alpha	0.0428327460
+UniRef50_Q1CWT2: ATP synthase subunit alpha|unclassified	0.0428327460
+UniRef50_UPI0003B6200C: folylpolyglutamate synthase	0.0428324227
+UniRef50_UPI0003B6200C: folylpolyglutamate synthase|unclassified	0.0428324227
+UniRef50_B4SBA7: Sel1 domain protein repeat-containing protein	0.0428289001
+UniRef50_B4SBA7: Sel1 domain protein repeat-containing protein|unclassified	0.0428289001
+UniRef50_A6NNE9: E3 ubiquitin-protein ligase MARCH11	0.0428285943
+UniRef50_A6NNE9: E3 ubiquitin-protein ligase MARCH11|unclassified	0.0428285943
+UniRef50_UPI000374AEEF: hypothetical protein	0.0428283009
+UniRef50_UPI000374AEEF: hypothetical protein|unclassified	0.0428283009
+UniRef50_Q5NLZ4: Anhydro-N-acetylmuramic acid kinase	0.0428233786
+UniRef50_Q5NLZ4: Anhydro-N-acetylmuramic acid kinase|unclassified	0.0428233786
+UniRef50_UPI0003B2E458: alpha/beta hydrolase	0.0428208279
+UniRef50_UPI0003B2E458: alpha/beta hydrolase|unclassified	0.0428208279
+UniRef50_UPI0003727BED: hypothetical protein	0.0428189834
+UniRef50_UPI0003727BED: hypothetical protein|unclassified	0.0428189834
+UniRef50_Q9X0Z9: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.0428152274
+UniRef50_Q9X0Z9: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.0428152274
+UniRef50_UPI00036668F2: hypothetical protein	0.0428148634
+UniRef50_UPI00036668F2: hypothetical protein|unclassified	0.0428148634
+UniRef50_UPI00047D9E32: hypothetical protein	0.0428140569
+UniRef50_UPI00047D9E32: hypothetical protein|unclassified	0.0428140569
+UniRef50_B8D0U9: Phosphoglucosamine mutase	0.0428128413
+UniRef50_B8D0U9: Phosphoglucosamine mutase|unclassified	0.0428128413
+UniRef50_H5SL17: Histone deacetylase superfamily protein	0.0428126568
+UniRef50_H5SL17: Histone deacetylase superfamily protein|unclassified	0.0428126568
+UniRef50_UPI0002655C48: PREDICTED: LOW QUALITY PROTEIN: cytosolic carboxypeptidase 2	0.0428113233
+UniRef50_UPI0002655C48: PREDICTED: LOW QUALITY PROTEIN: cytosolic carboxypeptidase 2|unclassified	0.0428113233
+UniRef50_R7IGW5: Type I secretion protein HlyD family	0.0427998599
+UniRef50_R7IGW5: Type I secretion protein HlyD family|unclassified	0.0427998599
+UniRef50_UPI0003B47108: PREDICTED: serine/arginine repetitive matrix protein 2-like	0.0427982505
+UniRef50_UPI0003B47108: PREDICTED: serine/arginine repetitive matrix protein 2-like|unclassified	0.0427982505
+UniRef50_D9VYF0: Predicted protein	0.0427938755
+UniRef50_D9VYF0: Predicted protein|unclassified	0.0427938755
+UniRef50_UPI0004759CFA: L-iditol 2-dehydrogenase	0.0427930140
+UniRef50_UPI0004759CFA: L-iditol 2-dehydrogenase|unclassified	0.0427930140
+UniRef50_M8ECB6	0.0427919553
+UniRef50_M8ECB6|unclassified	0.0427919553
+UniRef50_D8U481	0.0427913605
+UniRef50_D8U481|unclassified	0.0427913605
+UniRef50_UPI0003DE7F24: PREDICTED: ATP synthase subunit beta, mitochondrial-like	0.0427873825
+UniRef50_UPI0003DE7F24: PREDICTED: ATP synthase subunit beta, mitochondrial-like|unclassified	0.0427873825
+UniRef50_C0VX99: Rib/alpha-like repeat protein	0.0427866082
+UniRef50_C0VX99: Rib/alpha-like repeat protein|unclassified	0.0427866082
+UniRef50_UPI00046D4069: hypothetical protein	0.0427847224
+UniRef50_UPI00046D4069: hypothetical protein|unclassified	0.0427847224
+UniRef50_Q3BPF4	0.0427845397
+UniRef50_Q3BPF4|unclassified	0.0427845397
+UniRef50_D3D678	0.0427836494
+UniRef50_D3D678|unclassified	0.0427836494
+UniRef50_A6C7R0	0.0427827209
+UniRef50_A6C7R0|unclassified	0.0427827209
+UniRef50_J8NQR8: YD repeat (Two copies)	0.0427757127
+UniRef50_J8NQR8: YD repeat (Two copies)|unclassified	0.0427757127
+UniRef50_UPI00028954FE: cobalamin biosynthesis protein	0.0427663259
+UniRef50_UPI00028954FE: cobalamin biosynthesis protein|unclassified	0.0427663259
+UniRef50_UPI00037C0A9E: hypothetical protein	0.0427609183
+UniRef50_UPI00037C0A9E: hypothetical protein|unclassified	0.0427609183
+UniRef50_E4SK52	0.0427601186
+UniRef50_E4SK52|unclassified	0.0427601186
+UniRef50_S3DBZ4: Cupredoxin	0.0427584531
+UniRef50_S3DBZ4: Cupredoxin|unclassified	0.0427584531
+UniRef50_UPI0004785E92: hypothetical protein	0.0427577425
+UniRef50_UPI0004785E92: hypothetical protein|unclassified	0.0427577425
+UniRef50_A0A031JPA4: Short-chain dehydrogenase	0.0427542504
+UniRef50_A0A031JPA4: Short-chain dehydrogenase|unclassified	0.0427542504
+UniRef50_UPI00021A5FF1: PREDICTED: glutaminyl-tRNA synthetase-like	0.0427523205
+UniRef50_UPI00021A5FF1: PREDICTED: glutaminyl-tRNA synthetase-like|unclassified	0.0427523205
+UniRef50_P75473: Ornithine carbamoyltransferase, catabolic	0.0427521768
+UniRef50_P75473: Ornithine carbamoyltransferase, catabolic|unclassified	0.0427521768
+UniRef50_UPI0003007F9A: hypothetical protein	0.0427510401
+UniRef50_UPI0003007F9A: hypothetical protein|unclassified	0.0427510401
+UniRef50_UPI00039B183B: helicase	0.0427496457
+UniRef50_UPI00039B183B: helicase|unclassified	0.0427496457
+UniRef50_UPI00047E68FE: hypothetical protein	0.0427470764
+UniRef50_UPI00047E68FE: hypothetical protein|unclassified	0.0427470764
+UniRef50_O50593: Arsenical pump-driving ATPase	0.0427413530
+UniRef50_O50593: Arsenical pump-driving ATPase|unclassified	0.0427413530
+UniRef50_J7Q3B6	0.0427403189
+UniRef50_J7Q3B6|unclassified	0.0427403189
+UniRef50_P41338: Acetyl-CoA acetyltransferase	0.0427353168
+UniRef50_P41338: Acetyl-CoA acetyltransferase|unclassified	0.0427353168
+UniRef50_UPI00036868F2: MULTISPECIES: hypothetical protein	0.0427264989
+UniRef50_UPI00036868F2: MULTISPECIES: hypothetical protein|unclassified	0.0427264989
+UniRef50_UPI00016C46DB: NADH dehydrogenase	0.0427261733
+UniRef50_UPI00016C46DB: NADH dehydrogenase|unclassified	0.0427261733
+UniRef50_UPI00036AB375: MULTISPECIES: hypothetical protein	0.0427242229
+UniRef50_UPI00036AB375: MULTISPECIES: hypothetical protein|unclassified	0.0427242229
+UniRef50_UPI00036FD65F: hypothetical protein	0.0427213586
+UniRef50_UPI00036FD65F: hypothetical protein|unclassified	0.0427213586
+UniRef50_C2VKD1: Response regulator aspartate phosphatase	0.0427205281
+UniRef50_C2VKD1: Response regulator aspartate phosphatase|unclassified	0.0427205281
+UniRef50_UPI00046425FB: hypothetical protein	0.0427135862
+UniRef50_UPI00046425FB: hypothetical protein|unclassified	0.0427135862
+UniRef50_D9QSE6: Cobyrinic acid ac-diamide synthase	0.0427102758
+UniRef50_D9QSE6: Cobyrinic acid ac-diamide synthase|unclassified	0.0427102758
+UniRef50_Q4L687: Staphylococcus haemolyticus JCSC1435 DNA, complete genome	0.0427058769
+UniRef50_Q4L687: Staphylococcus haemolyticus JCSC1435 DNA, complete genome|unclassified	0.0427058769
+UniRef50_G2L6H8	0.0427055697
+UniRef50_G2L6H8|unclassified	0.0427055697
+UniRef50_UPI000472E32B: hypothetical protein	0.0426962359
+UniRef50_UPI000472E32B: hypothetical protein|unclassified	0.0426962359
+UniRef50_E1V3T6: Histone deacetylase superfamily	0.0426865629
+UniRef50_E1V3T6: Histone deacetylase superfamily|unclassified	0.0426865629
+UniRef50_Q6Z1E9	0.0426853557
+UniRef50_Q6Z1E9|unclassified	0.0426853557
+UniRef50_UPI0003B4E339: hypothetical protein	0.0426843399
+UniRef50_UPI0003B4E339: hypothetical protein|unclassified	0.0426843399
+UniRef50_B1GYY3: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit	0.0426824536
+UniRef50_B1GYY3: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit|unclassified	0.0426824536
+UniRef50_UPI00036C4495: hypothetical protein	0.0426800432
+UniRef50_UPI00036C4495: hypothetical protein|unclassified	0.0426800432
+UniRef50_UPI000162201A: predicted protein	0.0426788515
+UniRef50_UPI000162201A: predicted protein|unclassified	0.0426788515
+UniRef50_UPI00040A915D: hypothetical protein	0.0426781704
+UniRef50_UPI00040A915D: hypothetical protein|unclassified	0.0426781704
+UniRef50_Q57555	0.0426748844
+UniRef50_Q57555|unclassified	0.0426748844
+UniRef50_UPI0003A5D373: ABC transporter ATP-binding protein	0.0426745177
+UniRef50_UPI0003A5D373: ABC transporter ATP-binding protein|unclassified	0.0426745177
+UniRef50_A0Q791	0.0426739106
+UniRef50_A0Q791|unclassified	0.0426739106
+UniRef50_UPI0004713E5E: chemotaxis protein	0.0426719408
+UniRef50_UPI0004713E5E: chemotaxis protein|unclassified	0.0426719408
+UniRef50_UPI00047AD56F: hypothetical protein	0.0426718273
+UniRef50_UPI00047AD56F: hypothetical protein|unclassified	0.0426718273
+UniRef50_UPI00037E639C: hypothetical protein	0.0426694798
+UniRef50_UPI00037E639C: hypothetical protein|unclassified	0.0426694798
+UniRef50_D8LQW3: EsV-1-7	0.0426650257
+UniRef50_D8LQW3: EsV-1-7|unclassified	0.0426650257
+UniRef50_UPI000289551B: major facilitator superfamily permease	0.0426606224
+UniRef50_UPI000289551B: major facilitator superfamily permease|unclassified	0.0426606224
+UniRef50_UPI0003734CD7: hypothetical protein	0.0426583734
+UniRef50_UPI0003734CD7: hypothetical protein|unclassified	0.0426583734
+UniRef50_Q0SAY4: Proline--tRNA ligase 2	0.0426559555
+UniRef50_Q0SAY4: Proline--tRNA ligase 2|unclassified	0.0426559555
+UniRef50_A9NH16: Bifunctional protein GlmU	0.0426543452
+UniRef50_A9NH16: Bifunctional protein GlmU|unclassified	0.0426543452
+UniRef50_UPI00035E0C95: hypothetical protein	0.0426529217
+UniRef50_UPI00035E0C95: hypothetical protein|unclassified	0.0426529217
+UniRef50_UPI0004448DC1: PREDICTED: AN1-type zinc finger protein 2A	0.0426435008
+UniRef50_UPI0004448DC1: PREDICTED: AN1-type zinc finger protein 2A|unclassified	0.0426435008
+UniRef50_UPI00042724D5: beta-galactosidase	0.0426410745
+UniRef50_UPI00042724D5: beta-galactosidase|unclassified	0.0426410745
+UniRef50_UPI00035CBB01: hypothetical protein	0.0426409692
+UniRef50_UPI00035CBB01: hypothetical protein|unclassified	0.0426409692
+UniRef50_UPI0002E45480: hypothetical protein	0.0426405691
+UniRef50_UPI0002E45480: hypothetical protein|unclassified	0.0426405691
+UniRef50_UPI0003622004: hypothetical protein	0.0426362287
+UniRef50_UPI0003622004: hypothetical protein|unclassified	0.0426362287
+UniRef50_B1ZD22: Gp37Gp68 family protein	0.0426340389
+UniRef50_B1ZD22: Gp37Gp68 family protein|unclassified	0.0426340389
+UniRef50_UPI000380428A: hypothetical protein	0.0426335759
+UniRef50_UPI000380428A: hypothetical protein|unclassified	0.0426335759
+UniRef50_UPI00036AF6AD: hypothetical protein	0.0426302996
+UniRef50_UPI00036AF6AD: hypothetical protein|unclassified	0.0426302996
+UniRef50_UPI0000459A4F: phenylalanyl-tRNA synthetase	0.0426276815
+UniRef50_UPI0000459A4F: phenylalanyl-tRNA synthetase|unclassified	0.0426276815
+UniRef50_A5CSL4: tRNA dimethylallyltransferase	0.0426256537
+UniRef50_A5CSL4: tRNA dimethylallyltransferase|unclassified	0.0426256537
+UniRef50_UPI000370B7D8: hypothetical protein	0.0426224580
+UniRef50_UPI000370B7D8: hypothetical protein|unclassified	0.0426224580
+UniRef50_UPI0002627C34: malonyl CoA-ACP transacylase	0.0426205775
+UniRef50_UPI0002627C34: malonyl CoA-ACP transacylase|unclassified	0.0426205775
+UniRef50_C1D2J4: Putative Diguanylate cyclase (GGDEF domain) with GAF sensor	0.0426167571
+UniRef50_C1D2J4: Putative Diguanylate cyclase (GGDEF domain) with GAF sensor|unclassified	0.0426167571
+UniRef50_UPI0003B51F21: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase	0.0426167521
+UniRef50_UPI0003B51F21: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|unclassified	0.0426167521
+UniRef50_UPI00016A7943: ABC transporter, ATPase subunit, partial	0.0426128322
+UniRef50_UPI00016A7943: ABC transporter, ATPase subunit, partial|unclassified	0.0426128322
+UniRef50_UPI000174537F: tRNA isopentenyltransferase	0.0426071813
+UniRef50_UPI000174537F: tRNA isopentenyltransferase|unclassified	0.0426071813
+UniRef50_P9WN46: Histidine-specific methyltransferase EgtD	0.0426066937
+UniRef50_P9WN46: Histidine-specific methyltransferase EgtD|unclassified	0.0426066937
+UniRef50_C3G9R2	0.0426037264
+UniRef50_C3G9R2|unclassified	0.0426037264
+UniRef50_Q97C15: Adenylosuccinate synthetase	0.0426010861
+UniRef50_Q97C15: Adenylosuccinate synthetase|unclassified	0.0426010861
+UniRef50_A5EUT6: Phosphoglucosamine mutase	0.0425989553
+UniRef50_A5EUT6: Phosphoglucosamine mutase|unclassified	0.0425989553
+UniRef50_UPI0004729637: hypothetical protein	0.0425930103
+UniRef50_UPI0004729637: hypothetical protein|unclassified	0.0425930103
+UniRef50_U6H386	0.0425892086
+UniRef50_U6H386|unclassified	0.0425892086
+UniRef50_W7TS53	0.0425869417
+UniRef50_W7TS53|unclassified	0.0425869417
+UniRef50_UPI00047293E7: hypothetical protein, partial	0.0425818055
+UniRef50_UPI00047293E7: hypothetical protein, partial|unclassified	0.0425818055
+UniRef50_V2ZNY6	0.0425776298
+UniRef50_V2ZNY6|unclassified	0.0425776298
+UniRef50_R4YS07	0.0425748088
+UniRef50_R4YS07|unclassified	0.0425748088
+UniRef50_A7RVD5: Predicted protein	0.0425736038
+UniRef50_A7RVD5: Predicted protein|unclassified	0.0425736038
+UniRef50_UPI000464E54F: MULTISPECIES: spermidine/putrescine ABC transporter substrate-binding protein	0.0425702814
+UniRef50_UPI000464E54F: MULTISPECIES: spermidine/putrescine ABC transporter substrate-binding protein|unclassified	0.0425702814
+UniRef50_K2DSF5	0.0425661641
+UniRef50_K2DSF5|unclassified	0.0425661641
+UniRef50_UPI000314959A: hypothetical protein	0.0425644873
+UniRef50_UPI000314959A: hypothetical protein|unclassified	0.0425644873
+UniRef50_B5SCL8: Probable awr type III effector family protein	0.0425613793
+UniRef50_B5SCL8: Probable awr type III effector family protein|unclassified	0.0425613793
+UniRef50_Q0BV27: UDP-N-acetylenolpyruvoylglucosamine reductase	0.0425611546
+UniRef50_Q0BV27: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.0425611546
+UniRef50_Q72PA7: Adenylosuccinate synthetase	0.0425598468
+UniRef50_Q72PA7: Adenylosuccinate synthetase|unclassified	0.0425598468
+UniRef50_UPI00016C38F6: ABC transporter, ATP-binding protein	0.0425583207
+UniRef50_UPI00016C38F6: ABC transporter, ATP-binding protein|unclassified	0.0425583207
+UniRef50_UPI000361DFBB: hypothetical protein	0.0425576420
+UniRef50_UPI000361DFBB: hypothetical protein|unclassified	0.0425576420
+UniRef50_UPI00035F6D04: hypothetical protein	0.0425472532
+UniRef50_UPI00035F6D04: hypothetical protein|unclassified	0.0425472532
+UniRef50_UPI0003760296: hypothetical protein	0.0425452585
+UniRef50_UPI0003760296: hypothetical protein|unclassified	0.0425452585
+UniRef50_H8GM55: NAD(FAD)-dependent dehydrogenase	0.0425436799
+UniRef50_H8GM55: NAD(FAD)-dependent dehydrogenase|unclassified	0.0425436799
+UniRef50_UPI0003B780F4: macrolide ABC transporter ATP-binding protein	0.0425409573
+UniRef50_UPI0003B780F4: macrolide ABC transporter ATP-binding protein|unclassified	0.0425409573
+UniRef50_UPI0002E0ABA2: hypothetical protein	0.0425408141
+UniRef50_UPI0002E0ABA2: hypothetical protein|unclassified	0.0425408141
+UniRef50_UPI0003B5D9C5: exodeoxyribonuclease VII large subunit	0.0425374678
+UniRef50_UPI0003B5D9C5: exodeoxyribonuclease VII large subunit|unclassified	0.0425374678
+UniRef50_S3K2Y8: L-ribulose-5-phosphate 4-epimerase	0.0425262647
+UniRef50_S3K2Y8: L-ribulose-5-phosphate 4-epimerase|unclassified	0.0425262647
+UniRef50_UPI0004668CD9: ABC transporter permease	0.0425227462
+UniRef50_UPI0004668CD9: ABC transporter permease|unclassified	0.0425227462
+UniRef50_UPI00037CA814: hypothetical protein	0.0425226501
+UniRef50_UPI00037CA814: hypothetical protein|unclassified	0.0425226501
+UniRef50_UPI000368511C: MULTISPECIES: hypothetical protein	0.0425216899
+UniRef50_UPI000368511C: MULTISPECIES: hypothetical protein|unclassified	0.0425216899
+UniRef50_UPI000365B05A: hypothetical protein	0.0425212424
+UniRef50_UPI000365B05A: hypothetical protein|unclassified	0.0425212424
+UniRef50_O28142: Phosphoserine phosphatase	0.0425210066
+UniRef50_O28142: Phosphoserine phosphatase|unclassified	0.0425210066
+UniRef50_A7IPN7: TRAP dicarboxylate transporter, DctM subunit	0.0425194711
+UniRef50_A7IPN7: TRAP dicarboxylate transporter, DctM subunit|unclassified	0.0425194711
+UniRef50_UPI0002D76840: hypothetical protein	0.0425103141
+UniRef50_UPI0002D76840: hypothetical protein|unclassified	0.0425103141
+UniRef50_UPI0003B3CB62: tRNA delta(2)-isopentenylpyrophosphate transferase	0.0425101016
+UniRef50_UPI0003B3CB62: tRNA delta(2)-isopentenylpyrophosphate transferase|unclassified	0.0425101016
+UniRef50_M9R6L0	0.0425065737
+UniRef50_M9R6L0|unclassified	0.0425065737
+UniRef50_A1K1U7: Lipoyl synthase	0.0425035347
+UniRef50_A1K1U7: Lipoyl synthase|unclassified	0.0425035347
+UniRef50_K7E388	0.0425001786
+UniRef50_K7E388|unclassified	0.0425001786
+UniRef50_Q8R6A7: Phosphoglucosamine mutase	0.0424928118
+UniRef50_Q8R6A7: Phosphoglucosamine mutase|unclassified	0.0424928118
+UniRef50_UPI0002490A82: EmrB/QacA family drug resistance transporter	0.0424855124
+UniRef50_UPI0002490A82: EmrB/QacA family drug resistance transporter|unclassified	0.0424855124
+UniRef50_UPI0003B6232F: conjugative transfer protein	0.0424845339
+UniRef50_UPI0003B6232F: conjugative transfer protein|unclassified	0.0424845339
+UniRef50_D7A7F6	0.0424747360
+UniRef50_D7A7F6|unclassified	0.0424747360
+UniRef50_W0BA82	0.0424745494
+UniRef50_W0BA82|unclassified	0.0424745494
+UniRef50_G4N6F8	0.0424708577
+UniRef50_G4N6F8|unclassified	0.0424708577
+UniRef50_F8K072	0.0424685754
+UniRef50_F8K072|unclassified	0.0424685754
+UniRef50_C7RSG7: Large exoprotein involved in heme utilization or adhesion	0.0424663905
+UniRef50_C7RSG7: Large exoprotein involved in heme utilization or adhesion|unclassified	0.0424663905
+UniRef50_H6LHS9: Permease	0.0424657196
+UniRef50_H6LHS9: Permease|unclassified	0.0424657196
+UniRef50_M0WRZ4	0.0424619391
+UniRef50_M0WRZ4|unclassified	0.0424619391
+UniRef50_UPI00047C3B8D: folylpolyglutamate synthase	0.0424611218
+UniRef50_UPI00047C3B8D: folylpolyglutamate synthase|unclassified	0.0424611218
+UniRef50_UPI000309C6DF: N-acetyl-gamma-glutamyl-phosphate reductase	0.0424598548
+UniRef50_UPI000309C6DF: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.0424598548
+UniRef50_O44510: Adenylyltransferase and sulfurtransferase MOCS3	0.0424545422
+UniRef50_O44510: Adenylyltransferase and sulfurtransferase MOCS3|unclassified	0.0424545422
+UniRef50_UPI00047C1438: chemotaxis protein CheY	0.0424498009
+UniRef50_UPI00047C1438: chemotaxis protein CheY|unclassified	0.0424498009
+UniRef50_D4ZB06	0.0424486082
+UniRef50_D4ZB06|unclassified	0.0424486082
+UniRef50_B8EIF0	0.0424458637
+UniRef50_B8EIF0|unclassified	0.0424458637
+UniRef50_UPI000374019E: hypothetical protein, partial	0.0424457391
+UniRef50_UPI000374019E: hypothetical protein, partial|unclassified	0.0424457391
+UniRef50_C4LJY7: Glutamate racemase	0.0424452729
+UniRef50_C4LJY7: Glutamate racemase|unclassified	0.0424452729
+UniRef50_UPI0003783C3E: hypothetical protein	0.0424434527
+UniRef50_UPI0003783C3E: hypothetical protein|unclassified	0.0424434527
+UniRef50_UPI0002379E24: hypothetical protein	0.0424382362
+UniRef50_UPI0002379E24: hypothetical protein|unclassified	0.0424382362
+UniRef50_C8XC18: NAD-dependent epimerase/dehydratase	0.0424339667
+UniRef50_C8XC18: NAD-dependent epimerase/dehydratase|unclassified	0.0424339667
+UniRef50_Q117D2: Formamidopyrimidine-DNA glycosylase	0.0424285154
+UniRef50_Q117D2: Formamidopyrimidine-DNA glycosylase|unclassified	0.0424285154
+UniRef50_UPI00035C5230: hypothetical protein	0.0424253170
+UniRef50_UPI00035C5230: hypothetical protein|unclassified	0.0424253170
+UniRef50_UPI000287DA5E: heavy-metal transporting P-type ATPase	0.0424231041
+UniRef50_UPI000287DA5E: heavy-metal transporting P-type ATPase|unclassified	0.0424231041
+UniRef50_UPI0004784CAD: hypothetical protein	0.0424218639
+UniRef50_UPI0004784CAD: hypothetical protein|unclassified	0.0424218639
+UniRef50_P24752: Acetyl-CoA acetyltransferase, mitochondrial	0.0424214086
+UniRef50_P24752: Acetyl-CoA acetyltransferase, mitochondrial|unclassified	0.0424214086
+UniRef50_M3S1R5: DSBA family thioredoxin domain containing protein	0.0424189700
+UniRef50_M3S1R5: DSBA family thioredoxin domain containing protein|unclassified	0.0424189700
+UniRef50_Q21HE8	0.0424187739
+UniRef50_Q21HE8|unclassified	0.0424187739
+UniRef50_UPI00046CB35E: hypothetical protein	0.0424090563
+UniRef50_UPI00046CB35E: hypothetical protein|unclassified	0.0424090563
+UniRef50_G2TD67	0.0424037722
+UniRef50_G2TD67|unclassified	0.0424037722
+UniRef50_UPI000475AC4B: lactate permease	0.0424024767
+UniRef50_UPI000475AC4B: lactate permease|unclassified	0.0424024767
+UniRef50_UPI0003F4D83E: glyoxalase	0.0423999907
+UniRef50_UPI0003F4D83E: glyoxalase|unclassified	0.0423999907
+UniRef50_UPI0003687640: hypothetical protein	0.0423959043
+UniRef50_UPI0003687640: hypothetical protein|unclassified	0.0423959043
+UniRef50_UPI0002D98CC5: hypothetical protein	0.0423938755
+UniRef50_UPI0002D98CC5: hypothetical protein|unclassified	0.0423938755
+UniRef50_K8P0W9	0.0423935404
+UniRef50_K8P0W9|unclassified	0.0423935404
+UniRef50_A0A011PW56: SOUL heme-binding protein	0.0423830856
+UniRef50_A0A011PW56: SOUL heme-binding protein|unclassified	0.0423830856
+UniRef50_D3IE17	0.0423824433
+UniRef50_D3IE17|unclassified	0.0423824433
+UniRef50_K2F7B5: Histone deacetylase superfamily protein	0.0423793923
+UniRef50_K2F7B5: Histone deacetylase superfamily protein|unclassified	0.0423793923
+UniRef50_P43060: Phosphoribosylaminoimidazole-succinocarboxamide synthase	0.0423782263
+UniRef50_P43060: Phosphoribosylaminoimidazole-succinocarboxamide synthase|unclassified	0.0423782263
+UniRef50_UPI00036A6233: hypothetical protein	0.0423688939
+UniRef50_UPI00036A6233: hypothetical protein|unclassified	0.0423688939
+UniRef50_UPI0003B63C24: 5-oxoprolinase	0.0423660659
+UniRef50_UPI0003B63C24: 5-oxoprolinase|unclassified	0.0423660659
+UniRef50_F7YWB3	0.0423618379
+UniRef50_F7YWB3|unclassified	0.0423618379
+UniRef50_W4U1X8	0.0423610980
+UniRef50_W4U1X8|unclassified	0.0423610980
+UniRef50_P34439: Probable 3-hydroxyacyl-CoA dehydrogenase F54C8.1	0.0423591745
+UniRef50_P34439: Probable 3-hydroxyacyl-CoA dehydrogenase F54C8.1|unclassified	0.0423591745
+UniRef50_A1VDE4: Permease	0.0423568282
+UniRef50_A1VDE4: Permease|unclassified	0.0423568282
+UniRef50_R8BDS2	0.0423541423
+UniRef50_R8BDS2|unclassified	0.0423541423
+UniRef50_UPI0004786723: hypothetical protein	0.0423536277
+UniRef50_UPI0004786723: hypothetical protein|unclassified	0.0423536277
+UniRef50_Q58575: Chorismate synthase	0.0423528105
+UniRef50_Q58575: Chorismate synthase|unclassified	0.0423528105
+UniRef50_V4T236: Carbonate dehydratase	0.0423510193
+UniRef50_V4T236: Carbonate dehydratase|unclassified	0.0423510193
+UniRef50_N4VPJ4	0.0423473834
+UniRef50_N4VPJ4|unclassified	0.0423473834
+UniRef50_UPI0004707236: 2-oxoglutarate dehydrogenase, partial	0.0423467480
+UniRef50_UPI0004707236: 2-oxoglutarate dehydrogenase, partial|unclassified	0.0423467480
+UniRef50_UPI00037F42D9: hypothetical protein	0.0423385672
+UniRef50_UPI00037F42D9: hypothetical protein|unclassified	0.0423385672
+UniRef50_Q04RH4: tRNA N6-adenosine threonylcarbamoyltransferase	0.0423309229
+UniRef50_Q04RH4: tRNA N6-adenosine threonylcarbamoyltransferase|unclassified	0.0423309229
+UniRef50_UPI00035C1F2F: hypothetical protein	0.0423301103
+UniRef50_UPI00035C1F2F: hypothetical protein|unclassified	0.0423301103
+UniRef50_A0A052HCP6: PF07120 family protein	0.0423300208
+UniRef50_A0A052HCP6: PF07120 family protein|unclassified	0.0423300208
+UniRef50_UPI000475B113: hypothetical protein	0.0423287740
+UniRef50_UPI000475B113: hypothetical protein|unclassified	0.0423287740
+UniRef50_P44828: Putative exopolyphosphatase	0.0423261995
+UniRef50_P44828: Putative exopolyphosphatase|unclassified	0.0423261995
+UniRef50_K1V2L7	0.0423258504
+UniRef50_K1V2L7|unclassified	0.0423258504
+UniRef50_UPI00045EB333: hypothetical protein	0.0423255303
+UniRef50_UPI00045EB333: hypothetical protein|unclassified	0.0423255303
+UniRef50_Q3JSG0	0.0423107512
+UniRef50_Q3JSG0|unclassified	0.0423107512
+UniRef50_UPI000419F441: DEAD/DEAH box helicase	0.0423049052
+UniRef50_UPI000419F441: DEAD/DEAH box helicase|unclassified	0.0423049052
+UniRef50_Q7TU31: tRNA pseudouridine synthase A	0.0423028277
+UniRef50_Q7TU31: tRNA pseudouridine synthase A|unclassified	0.0423028277
+UniRef50_UPI0004720FB2: hypothetical protein	0.0422980648
+UniRef50_UPI0004720FB2: hypothetical protein|unclassified	0.0422980648
+UniRef50_V9YJX8: AMIN domain protein	0.0422958698
+UniRef50_V9YJX8: AMIN domain protein|unclassified	0.0422958698
+UniRef50_UPI000255A89F: type IV pilus biogenesis/stability protein PilW	0.0422952146
+UniRef50_UPI000255A89F: type IV pilus biogenesis/stability protein PilW|unclassified	0.0422952146
+UniRef50_P0DKX6: Cyclolysin secretion/processing ATP-binding protein CyaB	0.0422873114
+UniRef50_P0DKX6: Cyclolysin secretion/processing ATP-binding protein CyaB|unclassified	0.0422873114
+UniRef50_Q6L271: Tryptophan synthase beta chain	0.0422812669
+UniRef50_Q6L271: Tryptophan synthase beta chain|unclassified	0.0422812669
+UniRef50_Q183H5: Histidine--tRNA ligase	0.0422800122
+UniRef50_Q183H5: Histidine--tRNA ligase|unclassified	0.0422800122
+UniRef50_A8J8H5: Predicted protein	0.0422796767
+UniRef50_A8J8H5: Predicted protein|unclassified	0.0422796767
+UniRef50_V3TNR6	0.0422758909
+UniRef50_V3TNR6|unclassified	0.0422758909
+UniRef50_UPI00036D8B31: hypothetical protein, partial	0.0422750356
+UniRef50_UPI00036D8B31: hypothetical protein, partial|unclassified	0.0422750356
+UniRef50_A7HQ34: Phosphate ABC transporter, periplasmic binding protein	0.0422748240
+UniRef50_A7HQ34: Phosphate ABC transporter, periplasmic binding protein|unclassified	0.0422748240
+UniRef50_UPI000367451B: acyl-CoA dehydrogenase	0.0422747606
+UniRef50_UPI000367451B: acyl-CoA dehydrogenase|unclassified	0.0422747606
+UniRef50_F2K0M2: Xanthine dehydrogenase accessory protein XdhC	0.0422740205
+UniRef50_F2K0M2: Xanthine dehydrogenase accessory protein XdhC|unclassified	0.0422740205
+UniRef50_Q5KBM9: Chaperone, putative	0.0422682392
+UniRef50_Q5KBM9: Chaperone, putative|unclassified	0.0422682392
+UniRef50_UPI000464D4F3: C4-dicarboxylate ABC transporter	0.0422629141
+UniRef50_UPI000464D4F3: C4-dicarboxylate ABC transporter|unclassified	0.0422629141
+UniRef50_UPI000225F4AA: hemolysin-type calcium-binding region	0.0422628125
+UniRef50_UPI000225F4AA: hemolysin-type calcium-binding region|unclassified	0.0422628125
+UniRef50_UPI00047C8DB6: TRAP dicarboxylate transporter subunit DctM	0.0422601822
+UniRef50_UPI00047C8DB6: TRAP dicarboxylate transporter subunit DctM|unclassified	0.0422601822
+UniRef50_UPI00046FC93E: hypothetical protein	0.0422568566
+UniRef50_UPI00046FC93E: hypothetical protein|unclassified	0.0422568566
+UniRef50_UPI0003B763C6: hypothetical protein	0.0422557359
+UniRef50_UPI0003B763C6: hypothetical protein|unclassified	0.0422557359
+UniRef50_UPI0003B34194: sodium/hydrogen exchanger	0.0422530921
+UniRef50_UPI0003B34194: sodium/hydrogen exchanger|unclassified	0.0422530921
+UniRef50_UPI00016C3B58: flagellar biosynthesis protein FlhB	0.0422519854
+UniRef50_UPI00016C3B58: flagellar biosynthesis protein FlhB|unclassified	0.0422519854
+UniRef50_UPI00036E7E1F: hypothetical protein	0.0422469107
+UniRef50_UPI00036E7E1F: hypothetical protein|unclassified	0.0422469107
+UniRef50_UPI0004203FC7: hypothetical protein	0.0422467856
+UniRef50_UPI0004203FC7: hypothetical protein|unclassified	0.0422467856
+UniRef50_UPI0003B4B651: hypothetical protein	0.0422463888
+UniRef50_UPI0003B4B651: hypothetical protein|unclassified	0.0422463888
+UniRef50_UPI000382BC1F: hypothetical protein	0.0422459162
+UniRef50_UPI000382BC1F: hypothetical protein|unclassified	0.0422459162
+UniRef50_I6ASY8	0.0422440105
+UniRef50_I6ASY8|unclassified	0.0422440105
+UniRef50_E2N7Y7	0.0422386693
+UniRef50_E2N7Y7|unclassified	0.0422386693
+UniRef50_Q1BY14: Methionine import ATP-binding protein MetN 1	0.0422384315
+UniRef50_Q1BY14: Methionine import ATP-binding protein MetN 1|unclassified	0.0422384315
+UniRef50_UPI0003B65CAB: cation transporter	0.0422375231
+UniRef50_UPI0003B65CAB: cation transporter|unclassified	0.0422375231
+UniRef50_UPI00037350A3: hypothetical protein	0.0422369988
+UniRef50_UPI00037350A3: hypothetical protein|unclassified	0.0422369988
+UniRef50_UPI00036FCE32: hypothetical protein	0.0422340508
+UniRef50_UPI00036FCE32: hypothetical protein|unclassified	0.0422340508
+UniRef50_UPI0003809475: hypothetical protein	0.0422340508
+UniRef50_UPI0003809475: hypothetical protein|unclassified	0.0422340508
+UniRef50_W7Y5R4	0.0422290446
+UniRef50_W7Y5R4|unclassified	0.0422290446
+UniRef50_UPI00036B25F6: hypothetical protein	0.0422279163
+UniRef50_UPI00036B25F6: hypothetical protein|unclassified	0.0422279163
+UniRef50_UPI000255BACE: patatin	0.0422244370
+UniRef50_UPI000255BACE: patatin|unclassified	0.0422244370
+UniRef50_UPI00037BA2BE: hypothetical protein	0.0422212587
+UniRef50_UPI00037BA2BE: hypothetical protein|unclassified	0.0422212587
+UniRef50_UPI0004701B8B: hypothetical protein, partial	0.0422190448
+UniRef50_UPI0004701B8B: hypothetical protein, partial|unclassified	0.0422190448
+UniRef50_Q72LH1: 3-phosphoshikimate 1-carboxyvinyltransferase	0.0422072246
+UniRef50_Q72LH1: 3-phosphoshikimate 1-carboxyvinyltransferase|unclassified	0.0422072246
+UniRef50_W8G4P0: Cupin	0.0422035871
+UniRef50_W8G4P0: Cupin|unclassified	0.0422035871
+UniRef50_UPI000255C2E8: 2-isopropylmalate synthase	0.0421999528
+UniRef50_UPI000255C2E8: 2-isopropylmalate synthase|unclassified	0.0421999528
+UniRef50_Q28JL0: Probable G-protein coupled receptor 152	0.0421937787
+UniRef50_Q28JL0: Probable G-protein coupled receptor 152|unclassified	0.0421937787
+UniRef50_V9IQK6: Phage lytic enzyme	0.0421908012
+UniRef50_V9IQK6: Phage lytic enzyme|unclassified	0.0421908012
+UniRef50_M1GVW9	0.0421864255
+UniRef50_M1GVW9|unclassified	0.0421864255
+UniRef50_UPI000309F103: hypothetical protein	0.0421826224
+UniRef50_UPI000309F103: hypothetical protein|unclassified	0.0421826224
+UniRef50_UPI00037950F6: hypothetical protein	0.0421817885
+UniRef50_UPI00037950F6: hypothetical protein|unclassified	0.0421817885
+UniRef50_Q7UT69: Cyclic pyranopterin monophosphate synthase	0.0421810165
+UniRef50_Q7UT69: Cyclic pyranopterin monophosphate synthase|unclassified	0.0421810165
+UniRef50_UPI00047D58B9: hypothetical protein	0.0421805503
+UniRef50_UPI00047D58B9: hypothetical protein|unclassified	0.0421805503
+UniRef50_A3DK16: Diaminopimelate epimerase	0.0421743357
+UniRef50_A3DK16: Diaminopimelate epimerase|unclassified	0.0421743357
+UniRef50_K2EVV3: Chromosome partitioning protein	0.0421715530
+UniRef50_K2EVV3: Chromosome partitioning protein|unclassified	0.0421715530
+UniRef50_W4L317	0.0421704516
+UniRef50_W4L317|unclassified	0.0421704516
+UniRef50_UPI0003B78453: coproporphyrinogen III oxidase	0.0421691365
+UniRef50_UPI0003B78453: coproporphyrinogen III oxidase|unclassified	0.0421691365
+UniRef50_UPI00047E42B2: hypothetical protein	0.0421665487
+UniRef50_UPI00047E42B2: hypothetical protein|unclassified	0.0421665487
+UniRef50_UPI0003B6D2EE: diaminopimelate decarboxylase	0.0421663974
+UniRef50_UPI0003B6D2EE: diaminopimelate decarboxylase|unclassified	0.0421663974
+UniRef50_UPI00035FAAB9: hypothetical protein	0.0421650522
+UniRef50_UPI00035FAAB9: hypothetical protein|unclassified	0.0421650522
+UniRef50_W0NF85	0.0421602467
+UniRef50_W0NF85|unclassified	0.0421602467
+UniRef50_Z5XN41: Diguanylate cyclase	0.0421596567
+UniRef50_Z5XN41: Diguanylate cyclase|unclassified	0.0421596567
+UniRef50_V8NQV9	0.0421595276
+UniRef50_V8NQV9|unclassified	0.0421595276
+UniRef50_UPI0004023867: hypothetical protein	0.0421515706
+UniRef50_UPI0004023867: hypothetical protein|unclassified	0.0421515706
+UniRef50_UPI00046A4743: hypothetical protein	0.0421514000
+UniRef50_UPI00046A4743: hypothetical protein|unclassified	0.0421514000
+UniRef50_UPI0004723B4D: RNA helicase, partial	0.0421354764
+UniRef50_UPI0004723B4D: RNA helicase, partial|unclassified	0.0421354764
+UniRef50_A9FXE7: No similarity	0.0421343807
+UniRef50_A9FXE7: No similarity|unclassified	0.0421343807
+UniRef50_UPI00035C6F60: hypothetical protein, partial	0.0421329033
+UniRef50_UPI00035C6F60: hypothetical protein, partial|unclassified	0.0421329033
+UniRef50_UPI0003592D1E: PREDICTED: NADH dehydrogenase [ubiquinone] iron-sulfur protein 2, mitochondrial-like	0.0421250300
+UniRef50_UPI0003592D1E: PREDICTED: NADH dehydrogenase [ubiquinone] iron-sulfur protein 2, mitochondrial-like|unclassified	0.0421250300
+UniRef50_Q3JRD1	0.0421214324
+UniRef50_Q3JRD1|unclassified	0.0421214324
+UniRef50_UPI000395608F: 3-hydroxyacyl-CoA dehydrogenase	0.0421201769
+UniRef50_UPI000395608F: 3-hydroxyacyl-CoA dehydrogenase|unclassified	0.0421201769
+UniRef50_Q6C4S5: YALI0E24101p	0.0421191301
+UniRef50_Q6C4S5: YALI0E24101p|unclassified	0.0421191301
+UniRef50_UPI0000222793: Hypothetical protein CBG15144	0.0421029406
+UniRef50_UPI0000222793: Hypothetical protein CBG15144|unclassified	0.0421029406
+UniRef50_B1I194: Bifunctional protein GlmU	0.0420963669
+UniRef50_B1I194: Bifunctional protein GlmU|unclassified	0.0420963669
+UniRef50_Q2J5A7: Biotin synthase 2	0.0420914835
+UniRef50_Q2J5A7: Biotin synthase 2|unclassified	0.0420914835
+UniRef50_UPI000379CE6C: hypothetical protein	0.0420900484
+UniRef50_UPI000379CE6C: hypothetical protein|unclassified	0.0420900484
+UniRef50_UPI00036481B3: hypothetical protein	0.0420894622
+UniRef50_UPI00036481B3: hypothetical protein|unclassified	0.0420894622
+UniRef50_UPI00046B8796	0.0420893219
+UniRef50_UPI00046B8796|unclassified	0.0420893219
+UniRef50_Q4A8Q3: ATP-dependent 6-phosphofructokinase	0.0420886286
+UniRef50_Q4A8Q3: ATP-dependent 6-phosphofructokinase|unclassified	0.0420886286
+UniRef50_UPI00041707E1: chromosome replication initiation inhibitor protein	0.0420870524
+UniRef50_UPI00041707E1: chromosome replication initiation inhibitor protein|unclassified	0.0420870524
+UniRef50_Q0FSC8: Replication initiator RepC	0.0420870374
+UniRef50_Q0FSC8: Replication initiator RepC|unclassified	0.0420870374
+UniRef50_UPI0003604489: hypothetical protein	0.0420865604
+UniRef50_UPI0003604489: hypothetical protein|unclassified	0.0420865604
+UniRef50_A6FNW8	0.0420842971
+UniRef50_A6FNW8|unclassified	0.0420842971
+UniRef50_UPI0003EBF849: PREDICTED: fructose-1,6-bisphosphatase isozyme 2	0.0420823258
+UniRef50_UPI0003EBF849: PREDICTED: fructose-1,6-bisphosphatase isozyme 2|unclassified	0.0420823258
+UniRef50_UPI000364FAD7: hypothetical protein	0.0420815431
+UniRef50_UPI000364FAD7: hypothetical protein|unclassified	0.0420815431
+UniRef50_UPI00036130D7: hypothetical protein	0.0420754375
+UniRef50_UPI00036130D7: hypothetical protein|unclassified	0.0420754375
+UniRef50_P52559: N5-carboxyaminoimidazole ribonucleotide synthase	0.0420722529
+UniRef50_P52559: N5-carboxyaminoimidazole ribonucleotide synthase|unclassified	0.0420722529
+UniRef50_Q7VQJ0: Phospho-N-acetylmuramoyl-pentapeptide-transferase	0.0420684688
+UniRef50_Q7VQJ0: Phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.0420684688
+UniRef50_G8LVC8: Putative GTPase, G3E family	0.0420637936
+UniRef50_G8LVC8: Putative GTPase, G3E family|unclassified	0.0420637936
+UniRef50_E2GHG8: Iron ABC transport system exported protein	0.0420596350
+UniRef50_E2GHG8: Iron ABC transport system exported protein|unclassified	0.0420596350
+UniRef50_F0YH23	0.0420562441
+UniRef50_F0YH23|unclassified	0.0420562441
+UniRef50_Q2S4I8: Biotin synthase	0.0420516218
+UniRef50_Q2S4I8: Biotin synthase|unclassified	0.0420516218
+UniRef50_Q83HH5: Tyrosine--tRNA ligase	0.0420475877
+UniRef50_Q83HH5: Tyrosine--tRNA ligase|unclassified	0.0420475877
+UniRef50_UPI000345C0EA: acetyl-CoA acetyltransferase	0.0420375919
+UniRef50_UPI000345C0EA: acetyl-CoA acetyltransferase|unclassified	0.0420375919
+UniRef50_Q52NY8: BclA	0.0420339173
+UniRef50_Q52NY8: BclA|unclassified	0.0420339173
+UniRef50_Q7VMF9: Macrolide export ATP-binding/permease protein MacB	0.0420288688
+UniRef50_Q7VMF9: Macrolide export ATP-binding/permease protein MacB|unclassified	0.0420288688
+UniRef50_D8THS6: Pathogenesis-related protein 1-like protein	0.0420264182
+UniRef50_D8THS6: Pathogenesis-related protein 1-like protein|unclassified	0.0420264182
+UniRef50_UPI000467899E: diguanylate cyclase	0.0420261083
+UniRef50_UPI000467899E: diguanylate cyclase|unclassified	0.0420261083
+UniRef50_UPI00047A280F: hypothetical protein	0.0420256916
+UniRef50_UPI00047A280F: hypothetical protein|unclassified	0.0420256916
+UniRef50_Q9RRB5: Queuine tRNA-ribosyltransferase	0.0420254245
+UniRef50_Q9RRB5: Queuine tRNA-ribosyltransferase|unclassified	0.0420254245
+UniRef50_M5A6G3	0.0420234124
+UniRef50_M5A6G3|unclassified	0.0420234124
+UniRef50_A0Q6S4: tRNA dimethylallyltransferase	0.0420220680
+UniRef50_A0Q6S4: tRNA dimethylallyltransferase|unclassified	0.0420220680
+UniRef50_UPI000361E297: bactoprenol glucosyl transferase	0.0420213181
+UniRef50_UPI000361E297: bactoprenol glucosyl transferase|unclassified	0.0420213181
+UniRef50_UPI000366292E: hypothetical protein	0.0420197950
+UniRef50_UPI000366292E: hypothetical protein|unclassified	0.0420197950
+UniRef50_Q1IWZ8: Glutamate-1-semialdehyde 2,1-aminomutase	0.0420194960
+UniRef50_Q1IWZ8: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0420194960
+UniRef50_H0ULW2	0.0420186823
+UniRef50_H0ULW2|unclassified	0.0420186823
+UniRef50_UPI0002EC0B87: hypothetical protein	0.0420066726
+UniRef50_UPI0002EC0B87: hypothetical protein|unclassified	0.0420066726
+UniRef50_E8RVX7: Type-IV secretion system protein TraC	0.0420021469
+UniRef50_E8RVX7: Type-IV secretion system protein TraC|unclassified	0.0420021469
+UniRef50_UPI0003F0DDB2	0.0420010075
+UniRef50_UPI0003F0DDB2|unclassified	0.0420010075
+UniRef50_D5AKU5: Ethanolamine utilization protein EutJ	0.0419991316
+UniRef50_D5AKU5: Ethanolamine utilization protein EutJ|unclassified	0.0419991316
+UniRef50_UPI000367EF8A: hypothetical protein	0.0419862907
+UniRef50_UPI000367EF8A: hypothetical protein|unclassified	0.0419862907
+UniRef50_K0YR77: Sugar-binding protein	0.0419827182
+UniRef50_K0YR77: Sugar-binding protein|unclassified	0.0419827182
+UniRef50_UPI0004695BC6: leucyl-tRNA synthetase	0.0419814507
+UniRef50_UPI0004695BC6: leucyl-tRNA synthetase|unclassified	0.0419814507
+UniRef50_UPI00035D2B84: hypothetical protein	0.0419799316
+UniRef50_UPI00035D2B84: hypothetical protein|unclassified	0.0419799316
+UniRef50_P57495: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase	0.0419781559
+UniRef50_P57495: 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase|unclassified	0.0419781559
+UniRef50_UPI00037FF8E2: hypothetical protein	0.0419614022
+UniRef50_UPI00037FF8E2: hypothetical protein|unclassified	0.0419614022
+UniRef50_UPI0003B5FA5F: arginyl-tRNA synthetase	0.0419597664
+UniRef50_UPI0003B5FA5F: arginyl-tRNA synthetase|unclassified	0.0419597664
+UniRef50_Q6AQ97: Methionyl-tRNA formyltransferase	0.0419515434
+UniRef50_Q6AQ97: Methionyl-tRNA formyltransferase|unclassified	0.0419515434
+UniRef50_UPI00037E2C5E: hypothetical protein	0.0419509485
+UniRef50_UPI00037E2C5E: hypothetical protein|unclassified	0.0419509485
+UniRef50_W7CRF3: Mismatch repair ATPase	0.0419501233
+UniRef50_W7CRF3: Mismatch repair ATPase|unclassified	0.0419501233
+UniRef50_I3BYE5	0.0419483502
+UniRef50_I3BYE5|unclassified	0.0419483502
+UniRef50_J3MER7	0.0419465878
+UniRef50_J3MER7|unclassified	0.0419465878
+UniRef50_B3DVW4: Phospho-N-acetylmuramoyl-pentapeptide-transferase	0.0419449802
+UniRef50_B3DVW4: Phospho-N-acetylmuramoyl-pentapeptide-transferase|unclassified	0.0419449802
+UniRef50_UPI00041EFD87: ABC transporter substrate-binding protein	0.0419440403
+UniRef50_UPI00041EFD87: ABC transporter substrate-binding protein|unclassified	0.0419440403
+UniRef50_UPI0002E11166: hypothetical protein	0.0419378695
+UniRef50_UPI0002E11166: hypothetical protein|unclassified	0.0419378695
+UniRef50_UPI0002659767: PREDICTED: mechanosensory protein 2-like	0.0419352636
+UniRef50_UPI0002659767: PREDICTED: mechanosensory protein 2-like|unclassified	0.0419352636
+UniRef50_UPI00037E1EDE: hypothetical protein, partial	0.0419306225
+UniRef50_UPI00037E1EDE: hypothetical protein, partial|unclassified	0.0419306225
+UniRef50_UPI0003726807: hypothetical protein	0.0419248216
+UniRef50_UPI0003726807: hypothetical protein|unclassified	0.0419248216
+UniRef50_UPI0003F13539: PREDICTED: glutathione reductase, mitochondrial isoform X3	0.0419214401
+UniRef50_UPI0003F13539: PREDICTED: glutathione reductase, mitochondrial isoform X3|unclassified	0.0419214401
+UniRef50_T0IHC3	0.0419181126
+UniRef50_T0IHC3|unclassified	0.0419181126
+UniRef50_U7D7H4: KamA family protein	0.0419134954
+UniRef50_U7D7H4: KamA family protein|unclassified	0.0419134954
+UniRef50_Q58097: Probable aspartate aminotransferase 2	0.0419086066
+UniRef50_Q58097: Probable aspartate aminotransferase 2|unclassified	0.0419086066
+UniRef50_UPI000377FED8: hypothetical protein	0.0419079697
+UniRef50_UPI000377FED8: hypothetical protein|unclassified	0.0419079697
+UniRef50_F6DWV2: Phage portal protein, HK97 family	0.0419076294
+UniRef50_F6DWV2: Phage portal protein, HK97 family|unclassified	0.0419076294
+UniRef50_P94365: Cytochrome bd ubiquinol oxidase subunit 2	0.0419074255
+UniRef50_P94365: Cytochrome bd ubiquinol oxidase subunit 2|unclassified	0.0419074255
+UniRef50_UPI00047E2147: homoserine acetyltransferase	0.0419070389
+UniRef50_UPI00047E2147: homoserine acetyltransferase|unclassified	0.0419070389
+UniRef50_UPI0003A75880: hypothetical protein	0.0419066504
+UniRef50_UPI0003A75880: hypothetical protein|unclassified	0.0419066504
+UniRef50_UPI00037EBF1E: hypothetical protein	0.0419013194
+UniRef50_UPI00037EBF1E: hypothetical protein|unclassified	0.0419013194
+UniRef50_C7NFG6: Cell envelope-related function transcriptional attenuator common domain protein	0.0419005159
+UniRef50_C7NFG6: Cell envelope-related function transcriptional attenuator common domain protein|unclassified	0.0419005159
+UniRef50_E2S227	0.0419000917
+UniRef50_E2S227|unclassified	0.0419000917
+UniRef50_Q46I72: Argininosuccinate synthase	0.0418938290
+UniRef50_Q46I72: Argininosuccinate synthase|unclassified	0.0418938290
+UniRef50_A0LCB4: UPF0246 protein Mmc1_3117	0.0418863654
+UniRef50_A0LCB4: UPF0246 protein Mmc1_3117|unclassified	0.0418863654
+UniRef50_UPI000363C207: hypothetical protein	0.0418853497
+UniRef50_UPI000363C207: hypothetical protein|unclassified	0.0418853497
+UniRef50_A2W599: Cytochrome bd-type quinol oxidase, subunit 2	0.0418842272
+UniRef50_A2W599: Cytochrome bd-type quinol oxidase, subunit 2|unclassified	0.0418842272
+UniRef50_UPI00037857F1: hypothetical protein	0.0418831324
+UniRef50_UPI00037857F1: hypothetical protein|unclassified	0.0418831324
+UniRef50_UPI0003723A21: hypothetical protein	0.0418812609
+UniRef50_UPI0003723A21: hypothetical protein|unclassified	0.0418812609
+UniRef50_E8S544: Diguanylate cyclase/phosphodiesterase	0.0418811385
+UniRef50_E8S544: Diguanylate cyclase/phosphodiesterase|unclassified	0.0418811385
+UniRef50_D8PHS6	0.0418809568
+UniRef50_D8PHS6|unclassified	0.0418809568
+UniRef50_UPI0001D2E259: nicotinate phosphoribosyltransferase	0.0418778823
+UniRef50_UPI0001D2E259: nicotinate phosphoribosyltransferase|unclassified	0.0418778823
+UniRef50_UPI0003B41351: hypothetical protein	0.0418721166
+UniRef50_UPI0003B41351: hypothetical protein|unclassified	0.0418721166
+UniRef50_UPI000364B2C5: hypothetical protein	0.0418709230
+UniRef50_UPI000364B2C5: hypothetical protein|unclassified	0.0418709230
+UniRef50_F2J3Z9: ABC transporter substrate-binding protein	0.0418690727
+UniRef50_F2J3Z9: ABC transporter substrate-binding protein|unclassified	0.0418690727
+UniRef50_I9KIJ9	0.0418682673
+UniRef50_I9KIJ9|unclassified	0.0418682673
+UniRef50_UPI000255954A: patatin	0.0418623532
+UniRef50_UPI000255954A: patatin|unclassified	0.0418623532
+UniRef50_UPI00047A0DC0: hypothetical protein	0.0418590908
+UniRef50_UPI00047A0DC0: hypothetical protein|unclassified	0.0418590908
+UniRef50_I4Z4T9	0.0418589354
+UniRef50_I4Z4T9|unclassified	0.0418589354
+UniRef50_UPI0002EE07FC: hypothetical protein	0.0418547487
+UniRef50_UPI0002EE07FC: hypothetical protein|unclassified	0.0418547487
+UniRef50_I6Z599: Pyridoxal-5'-phosphate-dependent protein beta subunit	0.0418535306
+UniRef50_I6Z599: Pyridoxal-5'-phosphate-dependent protein beta subunit|unclassified	0.0418535306
+UniRef50_B0TGC2: UDP-N-acetylenolpyruvoylglucosamine reductase	0.0418518020
+UniRef50_B0TGC2: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.0418518020
+UniRef50_S1EZD1	0.0418517860
+UniRef50_S1EZD1|unclassified	0.0418517860
+UniRef50_Q92AY8: 2-succinylbenzoate--CoA ligase	0.0418498995
+UniRef50_Q92AY8: 2-succinylbenzoate--CoA ligase|unclassified	0.0418498995
+UniRef50_W7ZFA7: Serine-threonine phosphatase	0.0418486716
+UniRef50_W7ZFA7: Serine-threonine phosphatase|unclassified	0.0418486716
+UniRef50_UPI000465C3B4: hypothetical protein	0.0418390799
+UniRef50_UPI000465C3B4: hypothetical protein|unclassified	0.0418390799
+UniRef50_Q1Q4U4: Strongly similar ATPase involved in chromosome partitioning	0.0418374795
+UniRef50_Q1Q4U4: Strongly similar ATPase involved in chromosome partitioning|unclassified	0.0418374795
+UniRef50_UPI000419A0DE: hypothetical protein	0.0418293104
+UniRef50_UPI000419A0DE: hypothetical protein|unclassified	0.0418293104
+UniRef50_UPI000359397D: PREDICTED: zinc finger protein 208-like	0.0418269971
+UniRef50_UPI000359397D: PREDICTED: zinc finger protein 208-like|unclassified	0.0418269971
+UniRef50_F9EX65	0.0418239827
+UniRef50_F9EX65|unclassified	0.0418239827
+UniRef50_Q1LTV6: Bifunctional protein GlmU	0.0418228165
+UniRef50_Q1LTV6: Bifunctional protein GlmU|unclassified	0.0418228165
+UniRef50_UPI00035E57F6: hypothetical protein	0.0418220901
+UniRef50_UPI00035E57F6: hypothetical protein|unclassified	0.0418220901
+UniRef50_UPI00046468AB: hypothetical protein	0.0418127085
+UniRef50_UPI00046468AB: hypothetical protein|unclassified	0.0418127085
+UniRef50_UPI0004032490: hypothetical protein	0.0418123606
+UniRef50_UPI0004032490: hypothetical protein|unclassified	0.0418123606
+UniRef50_UPI0003732891: hypothetical protein	0.0418075005
+UniRef50_UPI0003732891: hypothetical protein|unclassified	0.0418075005
+UniRef50_Q9XBK6	0.0418018935
+UniRef50_Q9XBK6|unclassified	0.0418018935
+UniRef50_UPI00046714AA: hypothetical protein	0.0418016442
+UniRef50_UPI00046714AA: hypothetical protein|unclassified	0.0418016442
+UniRef50_A5CSI8: Argininosuccinate lyase	0.0418013092
+UniRef50_A5CSI8: Argininosuccinate lyase|unclassified	0.0418013092
+UniRef50_C6TER7	0.0418010585
+UniRef50_C6TER7|unclassified	0.0418010585
+UniRef50_UPI000478BDD4: Na/Pi cotransporter II-like protein	0.0418007905
+UniRef50_UPI000478BDD4: Na/Pi cotransporter II-like protein|unclassified	0.0418007905
+UniRef50_UPI0001FFE1DB: diguanylate cyclase	0.0417985811
+UniRef50_UPI0001FFE1DB: diguanylate cyclase|unclassified	0.0417985811
+UniRef50_E3EY65: Xanthine dehydrogenase accessory protein XdhC	0.0417960709
+UniRef50_E3EY65: Xanthine dehydrogenase accessory protein XdhC|unclassified	0.0417960709
+UniRef50_I0RRK0	0.0417926100
+UniRef50_I0RRK0|unclassified	0.0417926100
+UniRef50_UPI00041B1966: ABC transporter permease	0.0417884506
+UniRef50_UPI00041B1966: ABC transporter permease|unclassified	0.0417884506
+UniRef50_UPI0002F94DF3: hypothetical protein	0.0417883499
+UniRef50_UPI0002F94DF3: hypothetical protein|unclassified	0.0417883499
+UniRef50_UPI00039EF99A: RNA polymerase sigma factor	0.0417875792
+UniRef50_UPI00039EF99A: RNA polymerase sigma factor|unclassified	0.0417875792
+UniRef50_UPI000050F899: ATPase component of various ABC-type transport systems with duplicated ATPase domain	0.0417855459
+UniRef50_UPI000050F899: ATPase component of various ABC-type transport systems with duplicated ATPase domain|unclassified	0.0417855459
+UniRef50_G0AED7: Inner membrane protein CreD	0.0417799576
+UniRef50_G0AED7: Inner membrane protein CreD|unclassified	0.0417799576
+UniRef50_S3Y4R2	0.0417776158
+UniRef50_S3Y4R2|unclassified	0.0417776158
+UniRef50_UPI0003B5A701: aminotransferase	0.0417773529
+UniRef50_UPI0003B5A701: aminotransferase|unclassified	0.0417773529
+UniRef50_UPI0004724C37: membrane protein	0.0417766875
+UniRef50_UPI0004724C37: membrane protein|unclassified	0.0417766875
+UniRef50_UPI00038C3CDC	0.0417758271
+UniRef50_UPI00038C3CDC|unclassified	0.0417758271
+UniRef50_U9TAV6	0.0417747658
+UniRef50_U9TAV6|unclassified	0.0417747658
+UniRef50_UPI00046500AE: hypothetical protein	0.0417744398
+UniRef50_UPI00046500AE: hypothetical protein|unclassified	0.0417744398
+UniRef50_W5XD53: Serine--tRNA ligase	0.0417740344
+UniRef50_W5XD53: Serine--tRNA ligase|unclassified	0.0417740344
+UniRef50_UPI000361FE8F: hypothetical protein, partial	0.0417696688
+UniRef50_UPI000361FE8F: hypothetical protein, partial|unclassified	0.0417696688
+UniRef50_G2RFU0	0.0417694936
+UniRef50_G2RFU0|unclassified	0.0417694936
+UniRef50_UPI0003638962: hypothetical protein	0.0417689186
+UniRef50_UPI0003638962: hypothetical protein|unclassified	0.0417689186
+UniRef50_B2S1F3: Queuine tRNA-ribosyltransferase	0.0417686817
+UniRef50_B2S1F3: Queuine tRNA-ribosyltransferase|unclassified	0.0417686817
+UniRef50_UPI000287B2EC: HrcA family transcriptional regulator	0.0417634944
+UniRef50_UPI000287B2EC: HrcA family transcriptional regulator|unclassified	0.0417634944
+UniRef50_UPI00036F185F: short-chain dehydrogenase	0.0417562982
+UniRef50_UPI00036F185F: short-chain dehydrogenase|unclassified	0.0417562982
+UniRef50_P96129: Putative carboxypeptidase TP_0688	0.0417502125
+UniRef50_P96129: Putative carboxypeptidase TP_0688|unclassified	0.0417502125
+UniRef50_UPI00029A6D9E: histone deacetylase superfamily protein	0.0417502038
+UniRef50_UPI00029A6D9E: histone deacetylase superfamily protein|unclassified	0.0417502038
+UniRef50_UPI00037810F0: hypothetical protein, partial	0.0417492573
+UniRef50_UPI00037810F0: hypothetical protein, partial|unclassified	0.0417492573
+UniRef50_A9G862: Phosphoglucosamine mutase	0.0417482268
+UniRef50_A9G862: Phosphoglucosamine mutase|unclassified	0.0417482268
+UniRef50_V8APR8	0.0417419471
+UniRef50_V8APR8|unclassified	0.0417419471
+UniRef50_UPI000185E948: ABC transporter, putative	0.0417416970
+UniRef50_UPI000185E948: ABC transporter, putative|unclassified	0.0417416970
+UniRef50_UPI0003B660A8: amino acid ABC transporter permease	0.0417410073
+UniRef50_UPI0003B660A8: amino acid ABC transporter permease|unclassified	0.0417410073
+UniRef50_C1F2I6: Metallo-beta-lactamase family protein	0.0417391776
+UniRef50_C1F2I6: Metallo-beta-lactamase family protein|unclassified	0.0417391776
+UniRef50_UPI00029B519F: hypothetical protein	0.0417381307
+UniRef50_UPI00029B519F: hypothetical protein|unclassified	0.0417381307
+UniRef50_UPI000465AE58: channel protein TolC	0.0417326477
+UniRef50_UPI000465AE58: channel protein TolC|unclassified	0.0417326477
+UniRef50_G4YX28	0.0417301702
+UniRef50_G4YX28|unclassified	0.0417301702
+UniRef50_UPI00047A89D0: ATP synthase	0.0417194429
+UniRef50_UPI00047A89D0: ATP synthase|unclassified	0.0417194429
+UniRef50_D7CVL9	0.0417188332
+UniRef50_D7CVL9|unclassified	0.0417188332
+UniRef50_UPI00038F9898: DEAD-box ATP-dependent RNA helicase CshA, partial	0.0417187186
+UniRef50_UPI00038F9898: DEAD-box ATP-dependent RNA helicase CshA, partial|unclassified	0.0417187186
+UniRef50_UPI0003F8BB62: malonic semialdehyde reductase	0.0417179231
+UniRef50_UPI0003F8BB62: malonic semialdehyde reductase|unclassified	0.0417179231
+UniRef50_E8ZRH8: Diguanylate cyclase/phosphodiesterase (GGDEF & EAL domains) with PAS/PAC sensor(S)	0.0417158132
+UniRef50_E8ZRH8: Diguanylate cyclase/phosphodiesterase (GGDEF & EAL domains) with PAS/PAC sensor(S)|unclassified	0.0417158132
+UniRef50_UPI0003F52F13: hypothetical protein	0.0417107331
+UniRef50_UPI0003F52F13: hypothetical protein|unclassified	0.0417107331
+UniRef50_A3JWJ2	0.0417091588
+UniRef50_A3JWJ2|unclassified	0.0417091588
+UniRef50_I3X6Z9	0.0417048660
+UniRef50_I3X6Z9|unclassified	0.0417048660
+UniRef50_B6Q1F8: Chitin synthase activator (Chs3), putative	0.0417046342
+UniRef50_B6Q1F8: Chitin synthase activator (Chs3), putative|unclassified	0.0417046342
+UniRef50_C0QS40: 3-phosphoshikimate 1-carboxyvinyltransferase	0.0417001004
+UniRef50_C0QS40: 3-phosphoshikimate 1-carboxyvinyltransferase|unclassified	0.0417001004
+UniRef50_A6TLH7: Electron transfer flavoprotein, alpha subunit-like protein	0.0416935543
+UniRef50_A6TLH7: Electron transfer flavoprotein, alpha subunit-like protein|unclassified	0.0416935543
+UniRef50_UPI0003B4A9D5: GNAT family acetyltransferase	0.0416917250
+UniRef50_UPI0003B4A9D5: GNAT family acetyltransferase|unclassified	0.0416917250
+UniRef50_O43895: Xaa-Pro aminopeptidase 2	0.0416911610
+UniRef50_O43895: Xaa-Pro aminopeptidase 2|unclassified	0.0416911610
+UniRef50_UPI0003691CE3: hypothetical protein	0.0416887447
+UniRef50_UPI0003691CE3: hypothetical protein|unclassified	0.0416887447
+UniRef50_UPI0004703790: hypothetical protein	0.0416876899
+UniRef50_UPI0004703790: hypothetical protein|unclassified	0.0416876899
+UniRef50_B7VH15: 8-amino-7-oxononanoate synthase	0.0416872328
+UniRef50_B7VH15: 8-amino-7-oxononanoate synthase|unclassified	0.0416872328
+UniRef50_F9Z751: RagB/SusD domain-containing protein	0.0416862967
+UniRef50_F9Z751: RagB/SusD domain-containing protein|unclassified	0.0416862967
+UniRef50_UPI0003B6D8F5: cysteine desulfurase	0.0416862555
+UniRef50_UPI0003B6D8F5: cysteine desulfurase|unclassified	0.0416862555
+UniRef50_Q9ZDF1: CTP synthase	0.0416809716
+UniRef50_Q9ZDF1: CTP synthase|unclassified	0.0416809716
+UniRef50_UPI00036CE22E: hypothetical protein	0.0416690848
+UniRef50_UPI00036CE22E: hypothetical protein|unclassified	0.0416690848
+UniRef50_V9D0D7	0.0416687930
+UniRef50_V9D0D7|unclassified	0.0416687930
+UniRef50_UPI00042535A5: hypothetical protein	0.0416678313
+UniRef50_UPI00042535A5: hypothetical protein|unclassified	0.0416678313
+UniRef50_UPI0003B73E21: hypothetical protein	0.0416655876
+UniRef50_UPI0003B73E21: hypothetical protein|unclassified	0.0416655876
+UniRef50_R1BK51	0.0416579733
+UniRef50_R1BK51|unclassified	0.0416579733
+UniRef50_UPI00035F19F4: hypothetical protein	0.0416567172
+UniRef50_UPI00035F19F4: hypothetical protein|unclassified	0.0416567172
+UniRef50_UPI0003B71ADF: RNA polymerase sigma factor RpoD	0.0416551214
+UniRef50_UPI0003B71ADF: RNA polymerase sigma factor RpoD|unclassified	0.0416551214
+UniRef50_UPI000345D794: hypothetical protein	0.0416545867
+UniRef50_UPI000345D794: hypothetical protein|unclassified	0.0416545867
+UniRef50_UPI0004737AB2: hypothetical protein	0.0416526388
+UniRef50_UPI0004737AB2: hypothetical protein|unclassified	0.0416526388
+UniRef50_V9F187	0.0416510721
+UniRef50_V9F187|unclassified	0.0416510721
+UniRef50_R7IC53	0.0416499327
+UniRef50_R7IC53|unclassified	0.0416499327
+UniRef50_U6MAQ0	0.0416491355
+UniRef50_U6MAQ0|unclassified	0.0416491355
+UniRef50_UPI0004433F6C: PREDICTED: d-2-hydroxyglutarate dehydrogenase, mitochondrial isoform X5	0.0416489428
+UniRef50_UPI0004433F6C: PREDICTED: d-2-hydroxyglutarate dehydrogenase, mitochondrial isoform X5|unclassified	0.0416489428
+UniRef50_Y3ZEX1	0.0416458818
+UniRef50_Y3ZEX1|unclassified	0.0416458818
+UniRef50_B0CAD9: Fructose-1,6-bisphosphatase class 1 1	0.0416441418
+UniRef50_B0CAD9: Fructose-1,6-bisphosphatase class 1 1|unclassified	0.0416441418
+UniRef50_UPI00035FB165: hypothetical protein	0.0416389183
+UniRef50_UPI00035FB165: hypothetical protein|unclassified	0.0416389183
+UniRef50_X1MKG1: Marine sediment metagenome DNA, contig: S06H3_C04076 (Fragment)	0.0416364301
+UniRef50_X1MKG1: Marine sediment metagenome DNA, contig: S06H3_C04076 (Fragment)|unclassified	0.0416364301
+UniRef50_UPI000255ED81: hypothetical protein	0.0416331135
+UniRef50_UPI000255ED81: hypothetical protein|unclassified	0.0416331135
+UniRef50_UPI000375AFE0: hypothetical protein	0.0416324211
+UniRef50_UPI000375AFE0: hypothetical protein|unclassified	0.0416324211
+UniRef50_UPI00047718B7: sodium:proton antiporter	0.0416322612
+UniRef50_UPI00047718B7: sodium:proton antiporter|unclassified	0.0416322612
+UniRef50_B2I6G9: Beta-hexosaminidase	0.0416322494
+UniRef50_B2I6G9: Beta-hexosaminidase|unclassified	0.0416322494
+UniRef50_UPI00047A544F: hypothetical protein	0.0416301432
+UniRef50_UPI00047A544F: hypothetical protein|unclassified	0.0416301432
+UniRef50_UPI0003F0E976: PREDICTED: midasin	0.0416278313
+UniRef50_UPI0003F0E976: PREDICTED: midasin|unclassified	0.0416278313
+UniRef50_Q64467: Glyceraldehyde-3-phosphate dehydrogenase, testis-specific	0.0416236242
+UniRef50_Q64467: Glyceraldehyde-3-phosphate dehydrogenase, testis-specific|unclassified	0.0416236242
+UniRef50_R5MC50: ATPase	0.0416233257
+UniRef50_R5MC50: ATPase|unclassified	0.0416233257
+UniRef50_T0ZR10	0.0416200325
+UniRef50_T0ZR10|unclassified	0.0416200325
+UniRef50_O32271: UDP-glucose 6-dehydrogenase TuaD	0.0416174850
+UniRef50_O32271: UDP-glucose 6-dehydrogenase TuaD|unclassified	0.0416174850
+UniRef50_Q6MB12: Uroporphyrinogen decarboxylase	0.0416097743
+UniRef50_Q6MB12: Uroporphyrinogen decarboxylase|unclassified	0.0416097743
+UniRef50_Q03WZ9: Anthranilate phosphoribosyltransferase	0.0416052502
+UniRef50_Q03WZ9: Anthranilate phosphoribosyltransferase|unclassified	0.0416052502
+UniRef50_A8IIB4: von Willebrand factor type A	0.0416048757
+UniRef50_A8IIB4: von Willebrand factor type A|unclassified	0.0416048757
+UniRef50_UPI0004796C2D: hypothetical protein	0.0415931723
+UniRef50_UPI0004796C2D: hypothetical protein|unclassified	0.0415931723
+UniRef50_B5JYF8: Phage late control D	0.0415857958
+UniRef50_B5JYF8: Phage late control D|unclassified	0.0415857958
+UniRef50_UPI00037399FA: hypothetical protein, partial	0.0415847574
+UniRef50_UPI00037399FA: hypothetical protein, partial|unclassified	0.0415847574
+UniRef50_UPI00047DE0FD: hypothetical protein	0.0415803992
+UniRef50_UPI00047DE0FD: hypothetical protein|unclassified	0.0415803992
+UniRef50_UPI000369C4E2: hypothetical protein	0.0415800261
+UniRef50_UPI000369C4E2: hypothetical protein|unclassified	0.0415800261
+UniRef50_UPI00037917CD: hypothetical protein	0.0415759152
+UniRef50_UPI00037917CD: hypothetical protein|unclassified	0.0415759152
+UniRef50_UPI00037917D4: hypothetical protein	0.0415753831
+UniRef50_UPI00037917D4: hypothetical protein|unclassified	0.0415753831
+UniRef50_UPI0003A35158: hypothetical protein	0.0415667124
+UniRef50_UPI0003A35158: hypothetical protein|unclassified	0.0415667124
+UniRef50_UPI00036A2D06: hypothetical protein	0.0415663490
+UniRef50_UPI00036A2D06: hypothetical protein|unclassified	0.0415663490
+UniRef50_UPI000365E3CB: hypothetical protein	0.0415653064
+UniRef50_UPI000365E3CB: hypothetical protein|unclassified	0.0415653064
+UniRef50_A9C3K7	0.0415637987
+UniRef50_A9C3K7|unclassified	0.0415637987
+UniRef50_W1GXE9: TraI	0.0415637346
+UniRef50_W1GXE9: TraI|unclassified	0.0415637346
+UniRef50_UPI000373CE36: hypothetical protein	0.0415620980
+UniRef50_UPI000373CE36: hypothetical protein|unclassified	0.0415620980
+UniRef50_UPI000362745C: hypothetical protein	0.0415574746
+UniRef50_UPI000362745C: hypothetical protein|unclassified	0.0415574746
+UniRef50_K6Q1W9: Biotin-dependent carboxylase-like protein	0.0415507649
+UniRef50_K6Q1W9: Biotin-dependent carboxylase-like protein|unclassified	0.0415507649
+UniRef50_UPI0000D56078: PREDICTED: similar to fructose-1,6-bisphosphatase CG31692-PA	0.0415506635
+UniRef50_UPI0000D56078: PREDICTED: similar to fructose-1,6-bisphosphatase CG31692-PA|unclassified	0.0415506635
+UniRef50_E3G953	0.0415501855
+UniRef50_E3G953|unclassified	0.0415501855
+UniRef50_A4X3B4	0.0415472916
+UniRef50_A4X3B4|unclassified	0.0415472916
+UniRef50_W6RW34	0.0415423516
+UniRef50_W6RW34|unclassified	0.0415423516
+UniRef50_Q9HKF1: Argininosuccinate synthase	0.0415410652
+UniRef50_Q9HKF1: Argininosuccinate synthase|unclassified	0.0415410652
+UniRef50_Q8K9Y2: NADH-quinone oxidoreductase subunit G	0.0415404275
+UniRef50_Q8K9Y2: NADH-quinone oxidoreductase subunit G|unclassified	0.0415404275
+UniRef50_UPI0003B63CEB: molybdopterin biosynthesis protein MoeA	0.0415388484
+UniRef50_UPI0003B63CEB: molybdopterin biosynthesis protein MoeA|unclassified	0.0415388484
+UniRef50_Q9M4G4: Phosphoglucomutase, cytoplasmic	0.0415350538
+UniRef50_Q9M4G4: Phosphoglucomutase, cytoplasmic|unclassified	0.0415350538
+UniRef50_P08499: Homoserine dehydrogenase	0.0415298213
+UniRef50_P08499: Homoserine dehydrogenase|unclassified	0.0415298213
+UniRef50_UPI000468723F: C4-dicarboxylate ABC transporter permease	0.0415294589
+UniRef50_UPI000468723F: C4-dicarboxylate ABC transporter permease|unclassified	0.0415294589
+UniRef50_G4YB17	0.0415254536
+UniRef50_G4YB17|unclassified	0.0415254536
+UniRef50_UPI00035D3722: hypothetical protein	0.0415243994
+UniRef50_UPI00035D3722: hypothetical protein|unclassified	0.0415243994
+UniRef50_O04974: 2-isopropylmalate synthase B	0.0415192031
+UniRef50_O04974: 2-isopropylmalate synthase B|unclassified	0.0415192031
+UniRef50_F2RJF8	0.0415162806
+UniRef50_F2RJF8|unclassified	0.0415162806
+UniRef50_E1VQD2	0.0415154851
+UniRef50_E1VQD2|unclassified	0.0415154851
+UniRef50_G7SR93	0.0415105698
+UniRef50_G7SR93|unclassified	0.0415105698
+UniRef50_D2RRB2	0.0415034500
+UniRef50_D2RRB2|unclassified	0.0415034500
+UniRef50_UPI0003B407F5: quinolinate synthetase	0.0415016737
+UniRef50_UPI0003B407F5: quinolinate synthetase|unclassified	0.0415016737
+UniRef50_UPI00047B30A7: 3-oxoacyl-ACP synthase	0.0414942699
+UniRef50_UPI00047B30A7: 3-oxoacyl-ACP synthase|unclassified	0.0414942699
+UniRef50_Q8YNF7: Aminomethyltransferase	0.0414929993
+UniRef50_Q8YNF7: Aminomethyltransferase|unclassified	0.0414929993
+UniRef50_UPI0004658778: phosphoserine phosphatase	0.0414916798
+UniRef50_UPI0004658778: phosphoserine phosphatase|unclassified	0.0414916798
+UniRef50_A0A059FRG3: MFS permease	0.0414871430
+UniRef50_A0A059FRG3: MFS permease|unclassified	0.0414871430
+UniRef50_UPI00036A2344: hypothetical protein	0.0414815132
+UniRef50_UPI00036A2344: hypothetical protein|unclassified	0.0414815132
+UniRef50_Q98RJ3: Ribosomal RNA small subunit methyltransferase A	0.0414797333
+UniRef50_Q98RJ3: Ribosomal RNA small subunit methyltransferase A|unclassified	0.0414797333
+UniRef50_Q92263: Glyceraldehyde-3-phosphate dehydrogenase	0.0414790086
+UniRef50_Q92263: Glyceraldehyde-3-phosphate dehydrogenase|unclassified	0.0414790086
+UniRef50_UPI000466D4C1: hypothetical protein	0.0414784238
+UniRef50_UPI000466D4C1: hypothetical protein|unclassified	0.0414784238
+UniRef50_A3Y959: UPF0502 protein MED121_06455	0.0414730129
+UniRef50_A3Y959: UPF0502 protein MED121_06455|unclassified	0.0414730129
+UniRef50_V6H8R4: PF06672 family protein	0.0414724516
+UniRef50_V6H8R4: PF06672 family protein|unclassified	0.0414724516
+UniRef50_Q1NAN1	0.0414651455
+UniRef50_Q1NAN1|unclassified	0.0414651455
+UniRef50_UPI000255C223: D-serine dehydratase	0.0414642591
+UniRef50_UPI000255C223: D-serine dehydratase|unclassified	0.0414642591
+UniRef50_J8V753	0.0414614919
+UniRef50_J8V753|unclassified	0.0414614919
+UniRef50_R1GVI1	0.0414613562
+UniRef50_R1GVI1|unclassified	0.0414613562
+UniRef50_Q7UHE2: Glutamyl-Q tRNA(Asp) synthetase	0.0414612222
+UniRef50_Q7UHE2: Glutamyl-Q tRNA(Asp) synthetase|unclassified	0.0414612222
+UniRef50_G4NFF6	0.0414589535
+UniRef50_G4NFF6|unclassified	0.0414589535
+UniRef50_E5CIY2: Serine-rich adhesin for platelets (Fragment)	0.0414578624
+UniRef50_E5CIY2: Serine-rich adhesin for platelets (Fragment)|unclassified	0.0414578624
+UniRef50_B1AJ41: tRNA-specific 2-thiouridylase MnmA	0.0414518015
+UniRef50_B1AJ41: tRNA-specific 2-thiouridylase MnmA|unclassified	0.0414518015
+UniRef50_UPI000418B156: hypothetical protein	0.0414517981
+UniRef50_UPI000418B156: hypothetical protein|unclassified	0.0414517981
+UniRef50_UPI000471B107: multidrug transporter AcrB, partial	0.0414489052
+UniRef50_UPI000471B107: multidrug transporter AcrB, partial|unclassified	0.0414489052
+UniRef50_UPI00047A066F: hypothetical protein	0.0414452627
+UniRef50_UPI00047A066F: hypothetical protein|unclassified	0.0414452627
+UniRef50_J0KRI8: RES domain-containing protein	0.0414416755
+UniRef50_J0KRI8: RES domain-containing protein|unclassified	0.0414416755
+UniRef50_UPI00046B80D6: PREDICTED: phosphoenolpyruvate carboxykinase [ATP]-like	0.0414409598
+UniRef50_UPI00046B80D6: PREDICTED: phosphoenolpyruvate carboxykinase [ATP]-like|unclassified	0.0414409598
+UniRef50_O94582: Probable anthranilate synthase component 1	0.0414405272
+UniRef50_O94582: Probable anthranilate synthase component 1|unclassified	0.0414405272
+UniRef50_M4V953	0.0414326654
+UniRef50_M4V953|unclassified	0.0414326654
+UniRef50_D3E2Q3: Adhesin-like protein	0.0414322129
+UniRef50_D3E2Q3: Adhesin-like protein|unclassified	0.0414322129
+UniRef50_UPI000379EE14: hypothetical protein	0.0414320612
+UniRef50_UPI000379EE14: hypothetical protein|unclassified	0.0414320612
+UniRef50_UPI0002001E4A: polysaccharide ABC transporter, ATP-binding protein wzt	0.0414310322
+UniRef50_UPI0002001E4A: polysaccharide ABC transporter, ATP-binding protein wzt|unclassified	0.0414310322
+UniRef50_UPI00037B1552: hypothetical protein	0.0414309897
+UniRef50_UPI00037B1552: hypothetical protein|unclassified	0.0414309897
+UniRef50_F5JJG9: DNA repair protein	0.0414244045
+UniRef50_F5JJG9: DNA repair protein|unclassified	0.0414244045
+UniRef50_U2LKQ1	0.0414231211
+UniRef50_U2LKQ1|unclassified	0.0414231211
+UniRef50_UPI0004726379: hypothetical protein	0.0414221089
+UniRef50_UPI0004726379: hypothetical protein|unclassified	0.0414221089
+UniRef50_B4U8M6: Glutamate-1-semialdehyde 2,1-aminomutase	0.0414184099
+UniRef50_B4U8M6: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0414184099
+UniRef50_F7YDG2: Gp37Gp68 family protein	0.0414176909
+UniRef50_F7YDG2: Gp37Gp68 family protein|unclassified	0.0414176909
+UniRef50_M5S0G6	0.0414158947
+UniRef50_M5S0G6|unclassified	0.0414158947
+UniRef50_UPI0002DCE8E8: hypothetical protein	0.0414130993
+UniRef50_UPI0002DCE8E8: hypothetical protein|unclassified	0.0414130993
+UniRef50_UPI0003810B3D: hypothetical protein	0.0414036444
+UniRef50_UPI0003810B3D: hypothetical protein|unclassified	0.0414036444
+UniRef50_S9QHJ2	0.0414014890
+UniRef50_S9QHJ2|unclassified	0.0414014890
+UniRef50_UPI00046581AB: peptide ABC transporter permease	0.0413995056
+UniRef50_UPI00046581AB: peptide ABC transporter permease|unclassified	0.0413995056
+UniRef50_Q0F363	0.0413965907
+UniRef50_Q0F363|unclassified	0.0413965907
+UniRef50_UPI00035C851A: hypothetical protein	0.0413962586
+UniRef50_UPI00035C851A: hypothetical protein|unclassified	0.0413962586
+UniRef50_UPI00045E91A8: hypothetical protein	0.0413939204
+UniRef50_UPI00045E91A8: hypothetical protein|unclassified	0.0413939204
+UniRef50_I3X987: NnrS dehydrogenase NnrS	0.0413910672
+UniRef50_I3X987: NnrS dehydrogenase NnrS|unclassified	0.0413910672
+UniRef50_B9G7Z6	0.0413898981
+UniRef50_B9G7Z6|unclassified	0.0413898981
+UniRef50_UPI0003818EBC: hypothetical protein	0.0413886795
+UniRef50_UPI0003818EBC: hypothetical protein|unclassified	0.0413886795
+UniRef50_UPI0003727191: peptidase	0.0413853469
+UniRef50_UPI0003727191: peptidase|unclassified	0.0413853469
+UniRef50_UPI0000E0ED88: peptidase S9	0.0413838091
+UniRef50_UPI0000E0ED88: peptidase S9|unclassified	0.0413838091
+UniRef50_Q6MFA5: Holliday junction ATP-dependent DNA helicase RuvA	0.0413823707
+UniRef50_Q6MFA5: Holliday junction ATP-dependent DNA helicase RuvA|unclassified	0.0413823707
+UniRef50_Q2GPL7: Predicted protein	0.0413773591
+UniRef50_Q2GPL7: Predicted protein|unclassified	0.0413773591
+UniRef50_UPI00036F686B: hypothetical protein	0.0413721738
+UniRef50_UPI00036F686B: hypothetical protein|unclassified	0.0413721738
+UniRef50_A8IMK7: Major facilitator	0.0413635914
+UniRef50_A8IMK7: Major facilitator|unclassified	0.0413635914
+UniRef50_UPI0000E1106B: 8-amino-7-oxononanoate synthase	0.0413624090
+UniRef50_UPI0000E1106B: 8-amino-7-oxononanoate synthase|unclassified	0.0413624090
+UniRef50_K2MPF7: Histone deacetylase family protein	0.0413616245
+UniRef50_K2MPF7: Histone deacetylase family protein|unclassified	0.0413616245
+UniRef50_UPI0003B69391: ABC transporter ATP-binding protein, partial	0.0413587964
+UniRef50_UPI0003B69391: ABC transporter ATP-binding protein, partial|unclassified	0.0413587964
+UniRef50_UPI0004656E30: hypothetical protein	0.0413575878
+UniRef50_UPI0004656E30: hypothetical protein|unclassified	0.0413575878
+UniRef50_M1I1F0	0.0413567236
+UniRef50_M1I1F0|unclassified	0.0413567236
+UniRef50_Q9RNM8: UDP-N-acetylenolpyruvoylglucosamine reductase	0.0413537877
+UniRef50_Q9RNM8: UDP-N-acetylenolpyruvoylglucosamine reductase|unclassified	0.0413537877
+UniRef50_Q0STN1: Undecaprenyl-diphosphatase	0.0413531746
+UniRef50_Q0STN1: Undecaprenyl-diphosphatase|unclassified	0.0413531746
+UniRef50_UPI0003B66BC5: tRNA pseudouridine synthase D	0.0413520772
+UniRef50_UPI0003B66BC5: tRNA pseudouridine synthase D|unclassified	0.0413520772
+UniRef50_UPI000429A03C: hypothetical protein	0.0413509856
+UniRef50_UPI000429A03C: hypothetical protein|unclassified	0.0413509856
+UniRef50_UPI000471FE92: ferrochelatase	0.0413493876
+UniRef50_UPI000471FE92: ferrochelatase|unclassified	0.0413493876
+UniRef50_F6UTV8	0.0413485086
+UniRef50_F6UTV8|unclassified	0.0413485086
+UniRef50_E2S2J8	0.0413481137
+UniRef50_E2S2J8|unclassified	0.0413481137
+UniRef50_UPI000381A75A: hypothetical protein	0.0413463813
+UniRef50_UPI000381A75A: hypothetical protein|unclassified	0.0413463813
+UniRef50_A0A031MI73	0.0413401713
+UniRef50_A0A031MI73|unclassified	0.0413401713
+UniRef50_A6W0Y0: 8-amino-7-oxononanoate synthase	0.0413379471
+UniRef50_A6W0Y0: 8-amino-7-oxononanoate synthase|unclassified	0.0413379471
+UniRef50_UPI0002C34F8A	0.0413368231
+UniRef50_UPI0002C34F8A|unclassified	0.0413368231
+UniRef50_UPI0004417340: branched-chain amino acid aminotransferase II	0.0413335142
+UniRef50_UPI0004417340: branched-chain amino acid aminotransferase II|unclassified	0.0413335142
+UniRef50_X0XB36: Marine sediment metagenome DNA, contig: S01H1_S20982 (Fragment)	0.0413329216
+UniRef50_X0XB36: Marine sediment metagenome DNA, contig: S01H1_S20982 (Fragment)|unclassified	0.0413329216
+UniRef50_UPI000424CED2: membrane protein	0.0413286749
+UniRef50_UPI000424CED2: membrane protein|unclassified	0.0413286749
+UniRef50_UPI0004227731: hypothetical protein	0.0413219318
+UniRef50_UPI0004227731: hypothetical protein|unclassified	0.0413219318
+UniRef50_UPI00035DAED9: hypothetical protein	0.0413200245
+UniRef50_UPI00035DAED9: hypothetical protein|unclassified	0.0413200245
+UniRef50_UPI0003B7878C: hypothetical protein	0.0413165529
+UniRef50_UPI0003B7878C: hypothetical protein|unclassified	0.0413165529
+UniRef50_UPI0003B40AC8: ABC transporter	0.0413149175
+UniRef50_UPI0003B40AC8: ABC transporter|unclassified	0.0413149175
+UniRef50_UPI00039AFEC1: peptide methionine sulfoxide reductase	0.0413121812
+UniRef50_UPI00039AFEC1: peptide methionine sulfoxide reductase|unclassified	0.0413121812
+UniRef50_U5SI28: Baseplate assembly protein	0.0413042709
+UniRef50_U5SI28: Baseplate assembly protein|unclassified	0.0413042709
+UniRef50_UPI00037FED24: hypothetical protein, partial	0.0413038710
+UniRef50_UPI00037FED24: hypothetical protein, partial|unclassified	0.0413038710
+UniRef50_K2FFD1	0.0413036379
+UniRef50_K2FFD1|unclassified	0.0413036379
+UniRef50_Q67TG7	0.0413009829
+UniRef50_Q67TG7|unclassified	0.0413009829
+UniRef50_UPI000378FCC9: MULTISPECIES: hypothetical protein	0.0412969637
+UniRef50_UPI000378FCC9: MULTISPECIES: hypothetical protein|unclassified	0.0412969637
+UniRef50_B9E8A2	0.0412881434
+UniRef50_B9E8A2|unclassified	0.0412881434
+UniRef50_UPI0003B5A37F: nicotinate phosphoribosyltransferase	0.0412852707
+UniRef50_UPI0003B5A37F: nicotinate phosphoribosyltransferase|unclassified	0.0412852707
+UniRef50_UPI00047AFACE: hypothetical protein	0.0412837259
+UniRef50_UPI00047AFACE: hypothetical protein|unclassified	0.0412837259
+UniRef50_O26958: NAD kinase	0.0412775682
+UniRef50_O26958: NAD kinase|unclassified	0.0412775682
+UniRef50_UPI0003B68C85: chromosomal replication initiator protein DnaA	0.0412693435
+UniRef50_UPI0003B68C85: chromosomal replication initiator protein DnaA|unclassified	0.0412693435
+UniRef50_UPI000380DF8A: hypothetical protein	0.0412692292
+UniRef50_UPI000380DF8A: hypothetical protein|unclassified	0.0412692292
+UniRef50_Q89AD1: 5'-3' exonuclease	0.0412666959
+UniRef50_Q89AD1: 5'-3' exonuclease|unclassified	0.0412666959
+UniRef50_E8RIJ1: Prophage antirepressor	0.0412659575
+UniRef50_E8RIJ1: Prophage antirepressor|unclassified	0.0412659575
+UniRef50_S5XJA5	0.0412592052
+UniRef50_S5XJA5|unclassified	0.0412592052
+UniRef50_Q04G28: Probable D-serine dehydratase	0.0412584694
+UniRef50_Q04G28: Probable D-serine dehydratase|unclassified	0.0412584694
+UniRef50_UPI00047B039D: hypothetical protein	0.0412574348
+UniRef50_UPI00047B039D: hypothetical protein|unclassified	0.0412574348
+UniRef50_UPI0002A4AECE: PREDICTED: 39S ribosomal protein L3, mitochondrial-like	0.0412553979
+UniRef50_UPI0002A4AECE: PREDICTED: 39S ribosomal protein L3, mitochondrial-like|unclassified	0.0412553979
+UniRef50_UPI00037AFDDF: hypothetical protein	0.0412531623
+UniRef50_UPI00037AFDDF: hypothetical protein|unclassified	0.0412531623
+UniRef50_Q5DA97: SJCHGC04772 protein	0.0412522365
+UniRef50_Q5DA97: SJCHGC04772 protein|unclassified	0.0412522365
+UniRef50_V9VSF9	0.0412512651
+UniRef50_V9VSF9|unclassified	0.0412512651
+UniRef50_UPI00035C378D: hypothetical protein	0.0412510257
+UniRef50_UPI00035C378D: hypothetical protein|unclassified	0.0412510257
+UniRef50_M3EKX5: Excinuclease ABC subunit A	0.0412498279
+UniRef50_M3EKX5: Excinuclease ABC subunit A|unclassified	0.0412498279
+UniRef50_R5BF46: ATPase	0.0412481422
+UniRef50_R5BF46: ATPase|unclassified	0.0412481422
+UniRef50_Q2S4H4: Cupin superfamily protein	0.0412477751
+UniRef50_Q2S4H4: Cupin superfamily protein|unclassified	0.0412477751
+UniRef50_K4KNB2	0.0412418960
+UniRef50_K4KNB2|unclassified	0.0412418960
+UniRef50_Q46K05: Bifunctional protein FolD	0.0412406993
+UniRef50_Q46K05: Bifunctional protein FolD|unclassified	0.0412406993
+UniRef50_W4KK09	0.0412387604
+UniRef50_W4KK09|unclassified	0.0412387604
+UniRef50_Q92L73: Argininosuccinate synthase	0.0412382419
+UniRef50_Q92L73: Argininosuccinate synthase|unclassified	0.0412382419
+UniRef50_UPI00046648B3: ABC transporter	0.0412374085
+UniRef50_UPI00046648B3: ABC transporter|unclassified	0.0412374085
+UniRef50_UPI0003B443E9: membrane protein, partial	0.0412359477
+UniRef50_UPI0003B443E9: membrane protein, partial|unclassified	0.0412359477
+UniRef50_I3CHQ4: ABC-type Fe3+ transport system, periplasmic component	0.0412344997
+UniRef50_I3CHQ4: ABC-type Fe3+ transport system, periplasmic component|unclassified	0.0412344997
+UniRef50_A1TQH6: HI0933 family protein	0.0412318836
+UniRef50_A1TQH6: HI0933 family protein|unclassified	0.0412318836
+UniRef50_E0TFM3	0.0412309236
+UniRef50_E0TFM3|unclassified	0.0412309236
+UniRef50_R5TZB6: Serine type site-specific recombinase	0.0412298712
+UniRef50_R5TZB6: Serine type site-specific recombinase|unclassified	0.0412298712
+UniRef50_H7E4I7	0.0412267686
+UniRef50_H7E4I7|unclassified	0.0412267686
+UniRef50_UPI0003740499: hypothetical protein	0.0412210724
+UniRef50_UPI0003740499: hypothetical protein|unclassified	0.0412210724
+UniRef50_UPI00046FFB9D: hemolysin D	0.0412203046
+UniRef50_UPI00046FFB9D: hemolysin D|unclassified	0.0412203046
+UniRef50_D2VQH4: Predicted protein	0.0412160822
+UniRef50_D2VQH4: Predicted protein|unclassified	0.0412160822
+UniRef50_A8Z6F5: Chorismate synthase	0.0412158817
+UniRef50_A8Z6F5: Chorismate synthase|unclassified	0.0412158817
+UniRef50_M2C918	0.0412123700
+UniRef50_M2C918|unclassified	0.0412123700
+UniRef50_R6SIC4	0.0412107418
+UniRef50_R6SIC4|unclassified	0.0412107418
+UniRef50_P85097: Respiratory nitrate reductase alpha chain (Fragments)	0.0412088225
+UniRef50_P85097: Respiratory nitrate reductase alpha chain (Fragments)|unclassified	0.0412088225
+UniRef50_UPI00040FE389: O-sialoglycoprotein endopeptidase	0.0412087528
+UniRef50_UPI00040FE389: O-sialoglycoprotein endopeptidase|unclassified	0.0412087528
+UniRef50_UPI00047A95D3: ABC transporter	0.0412080902
+UniRef50_UPI00047A95D3: ABC transporter|unclassified	0.0412080902
+UniRef50_UPI00046F46B1: hypothetical protein	0.0412069974
+UniRef50_UPI00046F46B1: hypothetical protein|unclassified	0.0412069974
+UniRef50_UPI0003B74318: anthranilate synthase subunit I	0.0412012335
+UniRef50_UPI0003B74318: anthranilate synthase subunit I|unclassified	0.0412012335
+UniRef50_Q37313: NADH-ubiquinone oxidoreductase chain 1	0.0411986239
+UniRef50_Q37313: NADH-ubiquinone oxidoreductase chain 1|unclassified	0.0411986239
+UniRef50_Q7NSQ6	0.0411916592
+UniRef50_Q7NSQ6|unclassified	0.0411916592
+UniRef50_S0KUP5	0.0411904432
+UniRef50_S0KUP5|unclassified	0.0411904432
+UniRef50_UPI000344933C: ABC transporter permease	0.0411901532
+UniRef50_UPI000344933C: ABC transporter permease|unclassified	0.0411901532
+UniRef50_R6J679	0.0411894415
+UniRef50_R6J679|unclassified	0.0411894415
+UniRef50_Q7MEZ2: Molecular chaperone	0.0411873014
+UniRef50_Q7MEZ2: Molecular chaperone|unclassified	0.0411873014
+UniRef50_UPI0001FE694B: 3-oxoacyl-[acyl-carrier-protein] synthase	0.0411857716
+UniRef50_UPI0001FE694B: 3-oxoacyl-[acyl-carrier-protein] synthase|unclassified	0.0411857716
+UniRef50_UPI0003A15D0F: MFS transporter	0.0411851531
+UniRef50_UPI0003A15D0F: MFS transporter|unclassified	0.0411851531
+UniRef50_UPI0003B6A8B6: multidrug transporter	0.0411823246
+UniRef50_UPI0003B6A8B6: multidrug transporter|unclassified	0.0411823246
+UniRef50_UPI00036F740D: hypothetical protein	0.0411724241
+UniRef50_UPI00036F740D: hypothetical protein|unclassified	0.0411724241
+UniRef50_UPI000478572A: hypothetical protein	0.0411717199
+UniRef50_UPI000478572A: hypothetical protein|unclassified	0.0411717199
+UniRef50_UPI0002885961: argininosuccinate lyase	0.0411673181
+UniRef50_UPI0002885961: argininosuccinate lyase|unclassified	0.0411673181
+UniRef50_K9UE10: VWA domain containing CoxE-like protein	0.0411664297
+UniRef50_K9UE10: VWA domain containing CoxE-like protein|unclassified	0.0411664297
+UniRef50_Q5WCL2: Teichoic acids export ATP-binding protein TagH	0.0411609683
+UniRef50_Q5WCL2: Teichoic acids export ATP-binding protein TagH|unclassified	0.0411609683
+UniRef50_W7CEA9: Fibronectin/fibrinogen binding protein	0.0411607946
+UniRef50_W7CEA9: Fibronectin/fibrinogen binding protein|unclassified	0.0411607946
+UniRef50_A0Y3T2	0.0411520943
+UniRef50_A0Y3T2|unclassified	0.0411520943
+UniRef50_X4ZXH7	0.0411502675
+UniRef50_X4ZXH7|unclassified	0.0411502675
+UniRef50_UPI00037BCBF0: hypothetical protein	0.0411455661
+UniRef50_UPI00037BCBF0: hypothetical protein|unclassified	0.0411455661
+UniRef50_UPI000471E5B5: hypothetical protein	0.0411441912
+UniRef50_UPI000471E5B5: hypothetical protein|unclassified	0.0411441912
+UniRef50_UPI000225B37D: histidine kinase	0.0411435141
+UniRef50_UPI000225B37D: histidine kinase|unclassified	0.0411435141
+UniRef50_C1DHE5: Glutamine--tRNA ligase	0.0411434344
+UniRef50_C1DHE5: Glutamine--tRNA ligase|unclassified	0.0411434344
+UniRef50_S1SG72	0.0411314684
+UniRef50_S1SG72|unclassified	0.0411314684
+UniRef50_B0CDQ3: UPF0246 protein AM1_4276	0.0411305424
+UniRef50_B0CDQ3: UPF0246 protein AM1_4276|unclassified	0.0411305424
+UniRef50_D4ZLP2	0.0411273633
+UniRef50_D4ZLP2|unclassified	0.0411273633
+UniRef50_UPI000476E422: hypothetical protein	0.0411261189
+UniRef50_UPI000476E422: hypothetical protein|unclassified	0.0411261189
+UniRef50_UPI000287B537: hydrolase	0.0411251078
+UniRef50_UPI000287B537: hydrolase|unclassified	0.0411251078
+UniRef50_U2YY64	0.0411230011
+UniRef50_U2YY64|unclassified	0.0411230011
+UniRef50_UPI0002880379: oligoendopeptidase, M3 family protein	0.0411168073
+UniRef50_UPI0002880379: oligoendopeptidase, M3 family protein|unclassified	0.0411168073
+UniRef50_U6KCN1	0.0411154634
+UniRef50_U6KCN1|unclassified	0.0411154634
+UniRef50_D3NSX0: Phage Gp37Gp68	0.0411101286
+UniRef50_D3NSX0: Phage Gp37Gp68|unclassified	0.0411101286
+UniRef50_T0USU5	0.0411100893
+UniRef50_T0USU5|unclassified	0.0411100893
+UniRef50_UPI0003648093: hypothetical protein	0.0411085425
+UniRef50_UPI0003648093: hypothetical protein|unclassified	0.0411085425
+UniRef50_Q0DGG8: Probable serine acetyltransferase 5	0.0411076996
+UniRef50_Q0DGG8: Probable serine acetyltransferase 5|unclassified	0.0411076996
+UniRef50_Q9Z9G7: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.0410999488
+UniRef50_Q9Z9G7: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.0410999488
+UniRef50_O52177: GTP pyrophosphokinase	0.0410966008
+UniRef50_O52177: GTP pyrophosphokinase|unclassified	0.0410966008
+UniRef50_UPI00046F5838: hypothetical protein	0.0410961455
+UniRef50_UPI00046F5838: hypothetical protein|unclassified	0.0410961455
+UniRef50_UPI000475A926: muropeptide transporter	0.0410925515
+UniRef50_UPI000475A926: muropeptide transporter|unclassified	0.0410925515
+UniRef50_UPI00037D5331: hypothetical protein, partial	0.0410909286
+UniRef50_UPI00037D5331: hypothetical protein, partial|unclassified	0.0410909286
+UniRef50_Q7TUK9: Glutathione synthetase	0.0410886730
+UniRef50_Q7TUK9: Glutathione synthetase|unclassified	0.0410886730
+UniRef50_UPI000367F02C: hypothetical protein	0.0410840021
+UniRef50_UPI000367F02C: hypothetical protein|unclassified	0.0410840021
+UniRef50_L0MGS1	0.0410811576
+UniRef50_L0MGS1|unclassified	0.0410811576
+UniRef50_UPI00035D8488: hypothetical protein	0.0410763037
+UniRef50_UPI00035D8488: hypothetical protein|unclassified	0.0410763037
+UniRef50_U2CY42: GIY-YIG catalytic domain protein	0.0410733867
+UniRef50_U2CY42: GIY-YIG catalytic domain protein|unclassified	0.0410733867
+UniRef50_B5ZBT9: Proline--tRNA ligase	0.0410731294
+UniRef50_B5ZBT9: Proline--tRNA ligase|unclassified	0.0410731294
+UniRef50_UPI0003C15AA8: PREDICTED: thymidine phosphorylase-like	0.0410688145
+UniRef50_UPI0003C15AA8: PREDICTED: thymidine phosphorylase-like|unclassified	0.0410688145
+UniRef50_W5XJA7: Primary replicative DNA helicase	0.0410684736
+UniRef50_W5XJA7: Primary replicative DNA helicase|unclassified	0.0410684736
+UniRef50_UPI00035E4EB3: hypothetical protein	0.0410678907
+UniRef50_UPI00035E4EB3: hypothetical protein|unclassified	0.0410678907
+UniRef50_A6VWM5: Ribosomal RNA large subunit methyltransferase M	0.0410647205
+UniRef50_A6VWM5: Ribosomal RNA large subunit methyltransferase M|unclassified	0.0410647205
+UniRef50_UPI0003B58BAE: hemolysin expression modulating protein	0.0410611639
+UniRef50_UPI0003B58BAE: hemolysin expression modulating protein|unclassified	0.0410611639
+UniRef50_UPI000273DB93: PREDICTED: pleckstrin homology domain-containing family H member 1	0.0410610082
+UniRef50_UPI000273DB93: PREDICTED: pleckstrin homology domain-containing family H member 1|unclassified	0.0410610082
+UniRef50_UPI00047EBB81: hypothetical protein	0.0410610042
+UniRef50_UPI00047EBB81: hypothetical protein|unclassified	0.0410610042
+UniRef50_UPI000464269B: peptidase	0.0410577728
+UniRef50_UPI000464269B: peptidase|unclassified	0.0410577728
+UniRef50_UPI00034D2229: hypothetical protein	0.0410563147
+UniRef50_UPI00034D2229: hypothetical protein|unclassified	0.0410563147
+UniRef50_UPI0002EB1E79: hypothetical protein	0.0410515652
+UniRef50_UPI0002EB1E79: hypothetical protein|unclassified	0.0410515652
+UniRef50_A8HSP7: DNA repair protein	0.0410512116
+UniRef50_A8HSP7: DNA repair protein|unclassified	0.0410512116
+UniRef50_UPI0003820085: hypothetical protein	0.0410452375
+UniRef50_UPI0003820085: hypothetical protein|unclassified	0.0410452375
+UniRef50_UPI00047507AF: type II and III secretion system protein RhcC2	0.0410404023
+UniRef50_UPI00047507AF: type II and III secretion system protein RhcC2|unclassified	0.0410404023
+UniRef50_E2BB01	0.0410402457
+UniRef50_E2BB01|unclassified	0.0410402457
+UniRef50_UPI00037429B4: hypothetical protein, partial	0.0410399531
+UniRef50_UPI00037429B4: hypothetical protein, partial|unclassified	0.0410399531
+UniRef50_UPI0003708267: MULTISPECIES: hypothetical protein	0.0410378235
+UniRef50_UPI0003708267: MULTISPECIES: hypothetical protein|unclassified	0.0410378235
+UniRef50_Q1R1F6: UPF0176 protein Csal_0088	0.0410376703
+UniRef50_Q1R1F6: UPF0176 protein Csal_0088|unclassified	0.0410376703
+UniRef50_UPI00035CF995: hypothetical protein, partial	0.0410367335
+UniRef50_UPI00035CF995: hypothetical protein, partial|unclassified	0.0410367335
+UniRef50_W5MWI3	0.0410306910
+UniRef50_W5MWI3|unclassified	0.0410306910
+UniRef50_UPI0003B4D58B: ACP S-malonyltransferase	0.0410305997
+UniRef50_UPI0003B4D58B: ACP S-malonyltransferase|unclassified	0.0410305997
+UniRef50_R9MGM3	0.0410256447
+UniRef50_R9MGM3|unclassified	0.0410256447
+UniRef50_UPI00047E5BB1: hypothetical protein	0.0410230116
+UniRef50_UPI00047E5BB1: hypothetical protein|unclassified	0.0410230116
+UniRef50_M4Z183: Transposase	0.0410218815
+UniRef50_M4Z183: Transposase|unclassified	0.0410218815
+UniRef50_P00390: Glutathione reductase, mitochondrial	0.0410217808
+UniRef50_P00390: Glutathione reductase, mitochondrial|unclassified	0.0410217808
+UniRef50_O67012: Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase	0.0410216771
+UniRef50_O67012: Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase|unclassified	0.0410216771
+UniRef50_UPI0003B40DD1: homoserine dehydrogenase	0.0410208161
+UniRef50_UPI0003B40DD1: homoserine dehydrogenase|unclassified	0.0410208161
+UniRef50_D7A920: Twin-arginine translocation pathway signal	0.0410193917
+UniRef50_D7A920: Twin-arginine translocation pathway signal|unclassified	0.0410193917
+UniRef50_H6SQB9: Condensin subunit ScpA	0.0410140819
+UniRef50_H6SQB9: Condensin subunit ScpA|unclassified	0.0410140819
+UniRef50_UPI0002880857: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase	0.0410105679
+UniRef50_UPI0002880857: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase|unclassified	0.0410105679
+UniRef50_E1ZNW9	0.0410026055
+UniRef50_E1ZNW9|unclassified	0.0410026055
+UniRef50_UPI00037E9D4B: hypothetical protein	0.0410000687
+UniRef50_UPI00037E9D4B: hypothetical protein|unclassified	0.0410000687
+UniRef50_Q7TUT1: Glutamyl-Q tRNA(Asp) synthetase	0.0409931637
+UniRef50_Q7TUT1: Glutamyl-Q tRNA(Asp) synthetase|unclassified	0.0409931637
+UniRef50_UPI00036F506B: hypothetical protein	0.0409918250
+UniRef50_UPI00036F506B: hypothetical protein|unclassified	0.0409918250
+UniRef50_UPI000360B5E8: hypothetical protein	0.0409901291
+UniRef50_UPI000360B5E8: hypothetical protein|unclassified	0.0409901291
+UniRef50_X1PT48: Marine sediment metagenome DNA, contig: S12H4_C01373 (Fragment)	0.0409893331
+UniRef50_X1PT48: Marine sediment metagenome DNA, contig: S12H4_C01373 (Fragment)|unclassified	0.0409893331
+UniRef50_UPI00040B1DFA: hypothetical protein	0.0409890503
+UniRef50_UPI00040B1DFA: hypothetical protein|unclassified	0.0409890503
+UniRef50_UPI0003B4808A: N-acetylglutamate synthase	0.0409861214
+UniRef50_UPI0003B4808A: N-acetylglutamate synthase|unclassified	0.0409861214
+UniRef50_R5GI92: Integral membrane protein	0.0409844949
+UniRef50_R5GI92: Integral membrane protein|unclassified	0.0409844949
+UniRef50_R8AZ04: Flp pilus assembly protein TadB	0.0409751921
+UniRef50_R8AZ04: Flp pilus assembly protein TadB|unclassified	0.0409751921
+UniRef50_A9KMB6: NAD kinase	0.0409744281
+UniRef50_A9KMB6: NAD kinase|unclassified	0.0409744281
+UniRef50_UPI00037D62B1: primosome assembly protein PriA	0.0409742652
+UniRef50_UPI00037D62B1: primosome assembly protein PriA|unclassified	0.0409742652
+UniRef50_UPI00026282D1: two component signal transduction response regulator	0.0409730837
+UniRef50_UPI00026282D1: two component signal transduction response regulator|unclassified	0.0409730837
+UniRef50_Q2JXD0: Chorismate synthase	0.0409705821
+UniRef50_Q2JXD0: Chorismate synthase|unclassified	0.0409705821
+UniRef50_UPI0003AD40AF: hypothetical protein	0.0409667219
+UniRef50_UPI0003AD40AF: hypothetical protein|unclassified	0.0409667219
+UniRef50_C9YGV0	0.0409638035
+UniRef50_C9YGV0|unclassified	0.0409638035
+UniRef50_UPI00034AFA78: amidohydrolase	0.0409633240
+UniRef50_UPI00034AFA78: amidohydrolase|unclassified	0.0409633240
+UniRef50_UPI000360FD43: hypothetical protein	0.0409609276
+UniRef50_UPI000360FD43: hypothetical protein|unclassified	0.0409609276
+UniRef50_UPI0003F826A9: DNA mismatch repair protein MutL	0.0409605413
+UniRef50_UPI0003F826A9: DNA mismatch repair protein MutL|unclassified	0.0409605413
+UniRef50_A0A023B4C6	0.0409568775
+UniRef50_A0A023B4C6|unclassified	0.0409568775
+UniRef50_UPI0004650E5C: hypothetical protein	0.0409529316
+UniRef50_UPI0004650E5C: hypothetical protein|unclassified	0.0409529316
+UniRef50_UPI000479005F: hypothetical protein	0.0409520815
+UniRef50_UPI000479005F: hypothetical protein|unclassified	0.0409520815
+UniRef50_B4WNX1: Ribulose bisphosphate carboxylase, small subunit, putative	0.0409443574
+UniRef50_B4WNX1: Ribulose bisphosphate carboxylase, small subunit, putative|unclassified	0.0409443574
+UniRef50_Q7VRS0: Probable malate:quinone oxidoreductase	0.0409372225
+UniRef50_Q7VRS0: Probable malate:quinone oxidoreductase|unclassified	0.0409372225
+UniRef50_UPI00036188B3: hypothetical protein	0.0409364531
+UniRef50_UPI00036188B3: hypothetical protein|unclassified	0.0409364531
+UniRef50_UPI0002ECDC1A: hypothetical protein	0.0409343823
+UniRef50_UPI0002ECDC1A: hypothetical protein|unclassified	0.0409343823
+UniRef50_UPI00047AA347: hypothetical protein	0.0409332341
+UniRef50_UPI00047AA347: hypothetical protein|unclassified	0.0409332341
+UniRef50_A7GU01: Cyclic pyranopterin monophosphate synthase	0.0409249212
+UniRef50_A7GU01: Cyclic pyranopterin monophosphate synthase|unclassified	0.0409249212
+UniRef50_UPI0003763223: hypothetical protein	0.0409233290
+UniRef50_UPI0003763223: hypothetical protein|unclassified	0.0409233290
+UniRef50_D5AT19	0.0409232461
+UniRef50_D5AT19|unclassified	0.0409232461
+UniRef50_UPI000362CAB1: hypothetical protein	0.0409224246
+UniRef50_UPI000362CAB1: hypothetical protein|unclassified	0.0409224246
+UniRef50_D3P7B0: ABC transport system permease protein	0.0409208406
+UniRef50_D3P7B0: ABC transport system permease protein|unclassified	0.0409208406
+UniRef50_Q4PNG7	0.0409189896
+UniRef50_Q4PNG7|unclassified	0.0409189896
+UniRef50_UPI00026CD046: cell wall hydrolase	0.0409170956
+UniRef50_UPI00026CD046: cell wall hydrolase|unclassified	0.0409170956
+UniRef50_S3ZAV1	0.0409163878
+UniRef50_S3ZAV1|unclassified	0.0409163878
+UniRef50_UPI00035FD51C: hypothetical protein	0.0409127658
+UniRef50_UPI00035FD51C: hypothetical protein|unclassified	0.0409127658
+UniRef50_Q8VPF3: 3-oxoadipate CoA-transferase subunit A	0.0409118827
+UniRef50_Q8VPF3: 3-oxoadipate CoA-transferase subunit A|unclassified	0.0409118827
+UniRef50_UPI00037A4252: hypothetical protein	0.0409107357
+UniRef50_UPI00037A4252: hypothetical protein|unclassified	0.0409107357
+UniRef50_H8C6V4	0.0409063754
+UniRef50_H8C6V4|unclassified	0.0409063754
+UniRef50_R6EP19	0.0409036016
+UniRef50_R6EP19|unclassified	0.0409036016
+UniRef50_C3XGP6	0.0409020006
+UniRef50_C3XGP6|unclassified	0.0409020006
+UniRef50_M5DF81: IcmF-related protein	0.0408987724
+UniRef50_M5DF81: IcmF-related protein|unclassified	0.0408987724
+UniRef50_Q1YI85	0.0408929232
+UniRef50_Q1YI85|unclassified	0.0408929232
+UniRef50_UPI00047695A3: hypothetical protein	0.0408929191
+UniRef50_UPI00047695A3: hypothetical protein|unclassified	0.0408929191
+UniRef50_A3TXJ7	0.0408885835
+UniRef50_A3TXJ7|unclassified	0.0408885835
+UniRef50_UPI0003C7E085: acetylornithine aminotransferase	0.0408878647
+UniRef50_UPI0003C7E085: acetylornithine aminotransferase|unclassified	0.0408878647
+UniRef50_X0SKK8: Marine sediment metagenome DNA, contig: S01H1_L05507 (Fragment)	0.0408858990
+UniRef50_X0SKK8: Marine sediment metagenome DNA, contig: S01H1_L05507 (Fragment)|unclassified	0.0408858990
+UniRef50_UPI0003B6E273: amidohydrolase	0.0408850656
+UniRef50_UPI0003B6E273: amidohydrolase|unclassified	0.0408850656
+UniRef50_N0BJY1: TIGR00268 family protein	0.0408780700
+UniRef50_N0BJY1: TIGR00268 family protein|unclassified	0.0408780700
+UniRef50_B1GYQ3: 3-phosphoshikimate 1-carboxyvinyltransferase	0.0408740877
+UniRef50_B1GYQ3: 3-phosphoshikimate 1-carboxyvinyltransferase|unclassified	0.0408740877
+UniRef50_V3QRP8: Phage minor tail protein	0.0408704658
+UniRef50_V3QRP8: Phage minor tail protein|unclassified	0.0408704658
+UniRef50_G1XZ95: Virulence-island/protein involved in nitrogen fixation	0.0408702939
+UniRef50_G1XZ95: Virulence-island/protein involved in nitrogen fixation|unclassified	0.0408702939
+UniRef50_F4BQC1	0.0408697108
+UniRef50_F4BQC1|unclassified	0.0408697108
+UniRef50_UPI00047101CF: PTS sugar transporter subunit IIA	0.0408695274
+UniRef50_UPI00047101CF: PTS sugar transporter subunit IIA|unclassified	0.0408695274
+UniRef50_Q3AC01: Dihydroorotase	0.0408654833
+UniRef50_Q3AC01: Dihydroorotase|unclassified	0.0408654833
+UniRef50_C6B8J3	0.0408534040
+UniRef50_C6B8J3|unclassified	0.0408534040
+UniRef50_D7GCK2: Cell envelope-related transcriptional attenuator	0.0408481248
+UniRef50_D7GCK2: Cell envelope-related transcriptional attenuator|unclassified	0.0408481248
+UniRef50_UPI0003D78289: PREDICTED: GTP binding protein 5 isoform X7	0.0408451772
+UniRef50_UPI0003D78289: PREDICTED: GTP binding protein 5 isoform X7|unclassified	0.0408451772
+UniRef50_H1Q626	0.0408425088
+UniRef50_H1Q626|unclassified	0.0408425088
+UniRef50_UPI00047352FA: sulfate transporter, partial	0.0408404842
+UniRef50_UPI00047352FA: sulfate transporter, partial|unclassified	0.0408404842
+UniRef50_Q7MV04: Chorismate synthase	0.0408400098
+UniRef50_Q7MV04: Chorismate synthase|unclassified	0.0408400098
+UniRef50_A4WZN8	0.0408400058
+UniRef50_A4WZN8|unclassified	0.0408400058
+UniRef50_UPI0004636803: amidohydrolase	0.0408394834
+UniRef50_UPI0004636803: amidohydrolase|unclassified	0.0408394834
+UniRef50_A0A059BVZ4	0.0408359930
+UniRef50_A0A059BVZ4|unclassified	0.0408359930
+UniRef50_UPI0003B71681: electron transporter RnfC	0.0408312899
+UniRef50_UPI0003B71681: electron transporter RnfC|unclassified	0.0408312899
+UniRef50_Q9K411	0.0408288952
+UniRef50_Q9K411|unclassified	0.0408288952
+UniRef50_UPI00037B2D8F: hypothetical protein	0.0408286539
+UniRef50_UPI00037B2D8F: hypothetical protein|unclassified	0.0408286539
+UniRef50_UPI0003C19C40: PREDICTED: RNA pseudouridine synthase 2, chloroplastic-like	0.0408272436
+UniRef50_UPI0003C19C40: PREDICTED: RNA pseudouridine synthase 2, chloroplastic-like|unclassified	0.0408272436
+UniRef50_G6F2J6	0.0408256116
+UniRef50_G6F2J6|unclassified	0.0408256116
+UniRef50_UPI0003F977A9: MULTISPECIES: FAD-dependent oxidoreductase	0.0408220972
+UniRef50_UPI0003F977A9: MULTISPECIES: FAD-dependent oxidoreductase|unclassified	0.0408220972
+UniRef50_A0A023YQF8: Transposase	0.0408219815
+UniRef50_A0A023YQF8: Transposase|unclassified	0.0408219815
+UniRef50_UPI00036C7D0B: hypothetical protein	0.0408215942
+UniRef50_UPI00036C7D0B: hypothetical protein|unclassified	0.0408215942
+UniRef50_A7HDA2: Bifunctional enzyme IspD/IspF	0.0408176486
+UniRef50_A7HDA2: Bifunctional enzyme IspD/IspF|unclassified	0.0408176486
+UniRef50_UPI000479F1A9: peptidase S1 and S6 chymotrypsin/Hap	0.0408139992
+UniRef50_UPI000479F1A9: peptidase S1 and S6 chymotrypsin/Hap|unclassified	0.0408139992
+UniRef50_UPI000378870B: hypothetical protein	0.0408107769
+UniRef50_UPI000378870B: hypothetical protein|unclassified	0.0408107769
+UniRef50_U6HXV6: Mechanosensory protein 2	0.0408094501
+UniRef50_U6HXV6: Mechanosensory protein 2|unclassified	0.0408094501
+UniRef50_UPI0003162EAB: hypothetical protein	0.0408052659
+UniRef50_UPI0003162EAB: hypothetical protein|unclassified	0.0408052659
+UniRef50_UPI000289CDAF: acyltransferase 3	0.0408036433
+UniRef50_UPI000289CDAF: acyltransferase 3|unclassified	0.0408036433
+UniRef50_UPI0004643AA4: hypothetical protein	0.0407997087
+UniRef50_UPI0004643AA4: hypothetical protein|unclassified	0.0407997087
+UniRef50_UPI0003B6E8CD: secretin	0.0407983975
+UniRef50_UPI0003B6E8CD: secretin|unclassified	0.0407983975
+UniRef50_Q12031: Mitochondrial 2-methylisocitrate lyase	0.0407978372
+UniRef50_Q12031: Mitochondrial 2-methylisocitrate lyase|unclassified	0.0407978372
+UniRef50_UPI0003C16EE5	0.0407975951
+UniRef50_UPI0003C16EE5|unclassified	0.0407975951
+UniRef50_Q8F498: Biotin synthase	0.0407957204
+UniRef50_Q8F498: Biotin synthase|unclassified	0.0407957204
+UniRef50_UPI00046D7897: PREDICTED: cytochrome P450 4C1 isoform X1	0.0407948590
+UniRef50_UPI00046D7897: PREDICTED: cytochrome P450 4C1 isoform X1|unclassified	0.0407948590
+UniRef50_UPI00045EB69E: hypothetical protein	0.0407943148
+UniRef50_UPI00045EB69E: hypothetical protein|unclassified	0.0407943148
+UniRef50_UPI00037E0BDD: hypothetical protein	0.0407808157
+UniRef50_UPI00037E0BDD: hypothetical protein|unclassified	0.0407808157
+UniRef50_UPI00045758DE: PREDICTED: sulfate transporter	0.0407774216
+UniRef50_UPI00045758DE: PREDICTED: sulfate transporter|unclassified	0.0407774216
+UniRef50_I0J6Z5: Amylase	0.0407768737
+UniRef50_I0J6Z5: Amylase|unclassified	0.0407768737
+UniRef50_UPI000363844E: hypothetical protein	0.0407751412
+UniRef50_UPI000363844E: hypothetical protein|unclassified	0.0407751412
+UniRef50_Q5RBK6: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial	0.0407733238
+UniRef50_Q5RBK6: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial|unclassified	0.0407733238
+UniRef50_W5X4I3: Tyrosine recombinase XerC	0.0407725159
+UniRef50_W5X4I3: Tyrosine recombinase XerC|unclassified	0.0407725159
+UniRef50_UPI00037C9BBA: hypothetical protein, partial	0.0407687096
+UniRef50_UPI00037C9BBA: hypothetical protein, partial|unclassified	0.0407687096
+UniRef50_A0L3M0: Biotin synthase	0.0407670566
+UniRef50_A0L3M0: Biotin synthase|unclassified	0.0407670566
+UniRef50_A0A024JBI1: Similar to Saccharomyces cerevisiae YML054C CYB2 Cytochrome b2 (L-lactate cytochrome-c oxidoreductase)	0.0407538278
+UniRef50_A0A024JBI1: Similar to Saccharomyces cerevisiae YML054C CYB2 Cytochrome b2 (L-lactate cytochrome-c oxidoreductase)|unclassified	0.0407538278
+UniRef50_UPI0003752867: hypothetical protein	0.0407496414
+UniRef50_UPI0003752867: hypothetical protein|unclassified	0.0407496414
+UniRef50_UPI0003A7F275: xanthine dehydrogenase	0.0407489965
+UniRef50_UPI0003A7F275: xanthine dehydrogenase|unclassified	0.0407489965
+UniRef50_C6D7L2: Short-chain dehydrogenase/reductase SDR	0.0407449571
+UniRef50_C6D7L2: Short-chain dehydrogenase/reductase SDR|unclassified	0.0407449571
+UniRef50_P41367: Medium-chain specific acyl-CoA dehydrogenase, mitochondrial	0.0407439233
+UniRef50_P41367: Medium-chain specific acyl-CoA dehydrogenase, mitochondrial|unclassified	0.0407439233
+UniRef50_UPI0003592734: PREDICTED: cationic amino acid transporter 3-like	0.0407333433
+UniRef50_UPI0003592734: PREDICTED: cationic amino acid transporter 3-like|unclassified	0.0407333433
+UniRef50_UPI0002ECD2DE: hypothetical protein	0.0407270929
+UniRef50_UPI0002ECD2DE: hypothetical protein|unclassified	0.0407270929
+UniRef50_C9XRH9: Exosporium glycoprotein	0.0407153667
+UniRef50_C9XRH9: Exosporium glycoprotein|unclassified	0.0407153667
+UniRef50_UPI0003D767A1	0.0407123810
+UniRef50_UPI0003D767A1|unclassified	0.0407123810
+UniRef50_UPI00046F0CC6: diguanylate cyclase	0.0407105936
+UniRef50_UPI00046F0CC6: diguanylate cyclase|unclassified	0.0407105936
+UniRef50_H8FWI4: Putative transposase IS66 family	0.0407090607
+UniRef50_H8FWI4: Putative transposase IS66 family|unclassified	0.0407090607
+UniRef50_UPI0003B30006: dihydropteroate synthase	0.0407062234
+UniRef50_UPI0003B30006: dihydropteroate synthase|unclassified	0.0407062234
+UniRef50_A0A024KA74	0.0407038999
+UniRef50_A0A024KA74|unclassified	0.0407038999
+UniRef50_UPI000411B6A4: hypothetical protein	0.0407005338
+UniRef50_UPI000411B6A4: hypothetical protein|unclassified	0.0407005338
+UniRef50_Q160V2	0.0406993458
+UniRef50_Q160V2|unclassified	0.0406993458
+UniRef50_S8BZB7	0.0406972967
+UniRef50_S8BZB7|unclassified	0.0406972967
+UniRef50_A8ZRV0: Alanine racemase	0.0406963838
+UniRef50_A8ZRV0: Alanine racemase|unclassified	0.0406963838
+UniRef50_I2JMR7: Type II secretion system protein	0.0406940258
+UniRef50_I2JMR7: Type II secretion system protein|unclassified	0.0406940258
+UniRef50_UPI000474D6F6: membrane protein	0.0406893473
+UniRef50_UPI000474D6F6: membrane protein|unclassified	0.0406893473
+UniRef50_W5MWH1	0.0406851377
+UniRef50_W5MWH1|unclassified	0.0406851377
+UniRef50_UPI0003749439: hypothetical protein	0.0406800629
+UniRef50_UPI0003749439: hypothetical protein|unclassified	0.0406800629
+UniRef50_UPI00036CD8AB: hypothetical protein	0.0406796654
+UniRef50_UPI00036CD8AB: hypothetical protein|unclassified	0.0406796654
+UniRef50_UPI00047AB5CC: aryl-phospho-beta-D-glucosidase	0.0406785670
+UniRef50_UPI00047AB5CC: aryl-phospho-beta-D-glucosidase|unclassified	0.0406785670
+UniRef50_UPI00045E39BE: PREDICTED: succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial	0.0406689296
+UniRef50_UPI00045E39BE: PREDICTED: succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial|unclassified	0.0406689296
+UniRef50_I1DWV8	0.0406636977
+UniRef50_I1DWV8|unclassified	0.0406636977
+UniRef50_UPI0003732C4A: hypothetical protein	0.0406634240
+UniRef50_UPI0003732C4A: hypothetical protein|unclassified	0.0406634240
+UniRef50_A1TLH0: tRNA pseudouridine synthase A	0.0406610620
+UniRef50_A1TLH0: tRNA pseudouridine synthase A|unclassified	0.0406610620
+UniRef50_UPI0003614B2D: hypothetical protein	0.0406596337
+UniRef50_UPI0003614B2D: hypothetical protein|unclassified	0.0406596337
+UniRef50_UPI0003999FE8: betaine-aldehyde dehydrogenase	0.0406569516
+UniRef50_UPI0003999FE8: betaine-aldehyde dehydrogenase|unclassified	0.0406569516
+UniRef50_Q4FNX4: Argininosuccinate synthase	0.0406564892
+UniRef50_Q4FNX4: Argininosuccinate synthase|unclassified	0.0406564892
+UniRef50_E0D504	0.0406550700
+UniRef50_E0D504|unclassified	0.0406550700
+UniRef50_Q2JXL1: Serine--tRNA ligase	0.0406523557
+UniRef50_Q2JXL1: Serine--tRNA ligase|unclassified	0.0406523557
+UniRef50_UPI0002E94C53: hypothetical protein	0.0406456084
+UniRef50_UPI0002E94C53: hypothetical protein|unclassified	0.0406456084
+UniRef50_F4NJI4	0.0406444576
+UniRef50_F4NJI4|unclassified	0.0406444576
+UniRef50_K0P5L7: Transposase IS4 family protein	0.0406425870
+UniRef50_K0P5L7: Transposase IS4 family protein|unclassified	0.0406425870
+UniRef50_U6I1L4: Adenylosuccinate synthetase	0.0406366943
+UniRef50_U6I1L4: Adenylosuccinate synthetase|unclassified	0.0406366943
+UniRef50_UPI00045D68F4: PREDICTED: zinc finger protein 641 isoform X1	0.0406338130
+UniRef50_UPI00045D68F4: PREDICTED: zinc finger protein 641 isoform X1|unclassified	0.0406338130
+UniRef50_UPI0003497FAE: hypothetical protein	0.0406198296
+UniRef50_UPI0003497FAE: hypothetical protein|unclassified	0.0406198296
+UniRef50_N6WY88: Cupin 4 family protein	0.0406195870
+UniRef50_N6WY88: Cupin 4 family protein|unclassified	0.0406195870
+UniRef50_G2QDA2	0.0406165986
+UniRef50_G2QDA2|unclassified	0.0406165986
+UniRef50_S2JGK3	0.0406160943
+UniRef50_S2JGK3|unclassified	0.0406160943
+UniRef50_UPI0003803CF1: hypothetical protein	0.0406151288
+UniRef50_UPI0003803CF1: hypothetical protein|unclassified	0.0406151288
+UniRef50_UPI00025599B6: hypothetical protein, partial	0.0406148272
+UniRef50_UPI00025599B6: hypothetical protein, partial|unclassified	0.0406148272
+UniRef50_E8XPY8	0.0406124342
+UniRef50_E8XPY8|unclassified	0.0406124342
+UniRef50_UPI00024910B2: oligopeptide ABC transporter substrate-binding protein	0.0406099107
+UniRef50_UPI00024910B2: oligopeptide ABC transporter substrate-binding protein|unclassified	0.0406099107
+UniRef50_R8WRQ8	0.0406069109
+UniRef50_R8WRQ8|unclassified	0.0406069109
+UniRef50_UPI00029DCBD2: PREDICTED: alcohol dehydrogenase 1B	0.0406056411
+UniRef50_UPI00029DCBD2: PREDICTED: alcohol dehydrogenase 1B|unclassified	0.0406056411
+UniRef50_UPI00036C1C16: hypothetical protein	0.0406056326
+UniRef50_UPI00036C1C16: hypothetical protein|unclassified	0.0406056326
+UniRef50_G8MNB6	0.0406025569
+UniRef50_G8MNB6|unclassified	0.0406025569
+UniRef50_UPI000380EC02: hypothetical protein	0.0405988517
+UniRef50_UPI000380EC02: hypothetical protein|unclassified	0.0405988517
+UniRef50_F3X2S2	0.0405983291
+UniRef50_F3X2S2|unclassified	0.0405983291
+UniRef50_D2QPH6: Transglutaminase domain protein	0.0405938569
+UniRef50_D2QPH6: Transglutaminase domain protein|unclassified	0.0405938569
+UniRef50_UPI00036933D0: hypothetical protein	0.0405935021
+UniRef50_UPI00036933D0: hypothetical protein|unclassified	0.0405935021
+UniRef50_UPI0003B64D82: DNA topoisomerase III	0.0405929521
+UniRef50_UPI0003B64D82: DNA topoisomerase III|unclassified	0.0405929521
+UniRef50_UPI0003B49FE1: hypothetical protein	0.0405924348
+UniRef50_UPI0003B49FE1: hypothetical protein|unclassified	0.0405924348
+UniRef50_R4MDK7	0.0405922330
+UniRef50_R4MDK7|unclassified	0.0405922330
+UniRef50_B8CZ12: ATP synthase subunit alpha	0.0405877327
+UniRef50_B8CZ12: ATP synthase subunit alpha|unclassified	0.0405877327
+UniRef50_UPI00046E6762: ABC transporter permease	0.0405862427
+UniRef50_UPI00046E6762: ABC transporter permease|unclassified	0.0405862427
+UniRef50_E1SQC4	0.0405856056
+UniRef50_E1SQC4|unclassified	0.0405856056
+UniRef50_UPI00047326C3: thioredoxin, partial	0.0405834639
+UniRef50_UPI00047326C3: thioredoxin, partial|unclassified	0.0405834639
+UniRef50_UPI00038296A1: MULTISPECIES: hypothetical protein	0.0405826125
+UniRef50_UPI00038296A1: MULTISPECIES: hypothetical protein|unclassified	0.0405826125
+UniRef50_B0TI16: Cyclic pyranopterin monophosphate synthase	0.0405807132
+UniRef50_B0TI16: Cyclic pyranopterin monophosphate synthase|unclassified	0.0405807132
+UniRef50_UPI00047862A8: molecular chaperone DnaJ	0.0405764623
+UniRef50_UPI00047862A8: molecular chaperone DnaJ|unclassified	0.0405764623
+UniRef50_I6W5C2	0.0405743787
+UniRef50_I6W5C2|unclassified	0.0405743787
+UniRef50_X1Y5Z8	0.0405689440
+UniRef50_X1Y5Z8|unclassified	0.0405689440
+UniRef50_UPI00036EBB97: hypothetical protein	0.0405686766
+UniRef50_UPI00036EBB97: hypothetical protein|unclassified	0.0405686766
+UniRef50_A8XNH3: Protein CBG16424	0.0405685025
+UniRef50_A8XNH3: Protein CBG16424|unclassified	0.0405685025
+UniRef50_UPI0003B32353: potassium transporter	0.0405677602
+UniRef50_UPI0003B32353: potassium transporter|unclassified	0.0405677602
+UniRef50_UPI0004409409: cytochrome P450	0.0405667344
+UniRef50_UPI0004409409: cytochrome P450|unclassified	0.0405667344
+UniRef50_UPI00036B8421: hypothetical protein	0.0405664605
+UniRef50_UPI00036B8421: hypothetical protein|unclassified	0.0405664605
+UniRef50_A5USR6: DNA-directed RNA polymerase subunit beta'	0.0405651057
+UniRef50_A5USR6: DNA-directed RNA polymerase subunit beta'|unclassified	0.0405651057
+UniRef50_UPI00038C64D8: PREDICTED: collagen alpha-1(VII) chain-like	0.0405606863
+UniRef50_UPI00038C64D8: PREDICTED: collagen alpha-1(VII) chain-like|unclassified	0.0405606863
+UniRef50_UPI000388E657	0.0405584265
+UniRef50_UPI000388E657|unclassified	0.0405584265
+UniRef50_UPI000478D2A2: cytochrome bd-I ubiquinol oxidase subunit 2 apoprotein	0.0405563226
+UniRef50_UPI000478D2A2: cytochrome bd-I ubiquinol oxidase subunit 2 apoprotein|unclassified	0.0405563226
+UniRef50_UPI0004703FCC: hypothetical protein	0.0405539401
+UniRef50_UPI0004703FCC: hypothetical protein|unclassified	0.0405539401
+UniRef50_UPI00046D4C36: hypothetical protein	0.0405518696
+UniRef50_UPI00046D4C36: hypothetical protein|unclassified	0.0405518696
+UniRef50_UPI000287F3AC: haloacid dehalogenase	0.0405506239
+UniRef50_UPI000287F3AC: haloacid dehalogenase|unclassified	0.0405506239
+UniRef50_V4R9U3: Type II restriction endonuclease	0.0405403789
+UniRef50_V4R9U3: Type II restriction endonuclease|unclassified	0.0405403789
+UniRef50_A0A017HSK4	0.0405399707
+UniRef50_A0A017HSK4|unclassified	0.0405399707
+UniRef50_I4Z490	0.0405396771
+UniRef50_I4Z490|unclassified	0.0405396771
+UniRef50_G7JQA9: Acetyl-CoA carboxylase beta subunit	0.0405378592
+UniRef50_G7JQA9: Acetyl-CoA carboxylase beta subunit|unclassified	0.0405378592
+UniRef50_UPI000471D0E8: hypothetical protein	0.0405363713
+UniRef50_UPI000471D0E8: hypothetical protein|unclassified	0.0405363713
+UniRef50_UPI0002FD1418: hypothetical protein	0.0405341873
+UniRef50_UPI0002FD1418: hypothetical protein|unclassified	0.0405341873
+UniRef50_UPI0003F69C7F: chromosomal replication initiation protein	0.0405319368
+UniRef50_UPI0003F69C7F: chromosomal replication initiation protein|unclassified	0.0405319368
+UniRef50_E7B5Q9: Gene D protein	0.0405293744
+UniRef50_E7B5Q9: Gene D protein|unclassified	0.0405293744
+UniRef50_UPI000374F92F: hypothetical protein	0.0405289259
+UniRef50_UPI000374F92F: hypothetical protein|unclassified	0.0405289259
+UniRef50_Q604M0: tRNA pseudouridine synthase D	0.0405267360
+UniRef50_Q604M0: tRNA pseudouridine synthase D|unclassified	0.0405267360
+UniRef50_A9WLY4: Cysteine--tRNA ligase	0.0405266343
+UniRef50_A9WLY4: Cysteine--tRNA ligase|unclassified	0.0405266343
+UniRef50_UPI00047ACA41: hypothetical protein	0.0405223341
+UniRef50_UPI00047ACA41: hypothetical protein|unclassified	0.0405223341
+UniRef50_Q8KAK6: Adenylosuccinate synthetase	0.0405173522
+UniRef50_Q8KAK6: Adenylosuccinate synthetase|unclassified	0.0405173522
+UniRef50_P77884: Dihydroorotase	0.0405127116
+UniRef50_P77884: Dihydroorotase|unclassified	0.0405127116
+UniRef50_L0M824	0.0405114068
+UniRef50_L0M824|unclassified	0.0405114068
+UniRef50_A4IKW7: ATP-dependent helicase/nuclease subunit A	0.0405103376
+UniRef50_A4IKW7: ATP-dependent helicase/nuclease subunit A|unclassified	0.0405103376
+UniRef50_UPI00029AAD44: glycosyl transferase family 1	0.0405095271
+UniRef50_UPI00029AAD44: glycosyl transferase family 1|unclassified	0.0405095271
+UniRef50_UPI0002557EDC: cell wall degradation protein	0.0405095074
+UniRef50_UPI0002557EDC: cell wall degradation protein|unclassified	0.0405095074
+UniRef50_B5EXN2: Ferrochelatase	0.0405014459
+UniRef50_B5EXN2: Ferrochelatase|unclassified	0.0405014459
+UniRef50_H5WKM1: TRAP-type mannitol/chloroaromatic compound transport system, large permease component	0.0405013008
+UniRef50_H5WKM1: TRAP-type mannitol/chloroaromatic compound transport system, large permease component|unclassified	0.0405013008
+UniRef50_UPI00037E700F: hypothetical protein	0.0404996629
+UniRef50_UPI00037E700F: hypothetical protein|unclassified	0.0404996629
+UniRef50_UPI000479C70C: hypothetical protein	0.0404985930
+UniRef50_UPI000479C70C: hypothetical protein|unclassified	0.0404985930
+UniRef50_C0QUK8: Methionyl-tRNA formyltransferase	0.0404967038
+UniRef50_C0QUK8: Methionyl-tRNA formyltransferase|unclassified	0.0404967038
+UniRef50_D8TVV3: Metalloproteinase, extracellular matrix glycoprotein VMP22	0.0404935639
+UniRef50_D8TVV3: Metalloproteinase, extracellular matrix glycoprotein VMP22|unclassified	0.0404935639
+UniRef50_UPI0002651D74: PREDICTED: retinol dehydrogenase 10-B-like	0.0404872578
+UniRef50_UPI0002651D74: PREDICTED: retinol dehydrogenase 10-B-like|unclassified	0.0404872578
+UniRef50_A4W827: Leucine--tRNA ligase	0.0404849173
+UniRef50_A4W827: Leucine--tRNA ligase|unclassified	0.0404849173
+UniRef50_X6F5A2: ABC transporter permease	0.0404841606
+UniRef50_X6F5A2: ABC transporter permease|unclassified	0.0404841606
+UniRef50_UPI0003666A44: hypothetical protein	0.0404825304
+UniRef50_UPI0003666A44: hypothetical protein|unclassified	0.0404825304
+UniRef50_UPI00037B3A94: hypothetical protein	0.0404818768
+UniRef50_UPI00037B3A94: hypothetical protein|unclassified	0.0404818768
+UniRef50_UPI00036E56FD: hypothetical protein	0.0404804508
+UniRef50_UPI00036E56FD: hypothetical protein|unclassified	0.0404804508
+UniRef50_UPI00037064E7: hypothetical protein	0.0404802877
+UniRef50_UPI00037064E7: hypothetical protein|unclassified	0.0404802877
+UniRef50_F8B2H9: Molybdopterin-guanine dinucleotide biosynthesis protein	0.0404771759
+UniRef50_F8B2H9: Molybdopterin-guanine dinucleotide biosynthesis protein|unclassified	0.0404771759
+UniRef50_B9M0D5: Glutamate 5-kinase	0.0404743392
+UniRef50_B9M0D5: Glutamate 5-kinase|unclassified	0.0404743392
+UniRef50_P25269: Tryptophan synthase beta chain 2, chloroplastic	0.0404735899
+UniRef50_P25269: Tryptophan synthase beta chain 2, chloroplastic|unclassified	0.0404735899
+UniRef50_Q67QM6: DNA polymerase IV	0.0404723752
+UniRef50_Q67QM6: DNA polymerase IV|unclassified	0.0404723752
+UniRef50_Q60050: Glutamate 5-kinase	0.0404701904
+UniRef50_Q60050: Glutamate 5-kinase|unclassified	0.0404701904
+UniRef50_UPI0002897BA6: Na/Pi cotransporter	0.0404635715
+UniRef50_UPI0002897BA6: Na/Pi cotransporter|unclassified	0.0404635715
+UniRef50_F8LNP9: SUB1332 undefined product 1320397:1321476 reverse MW:41202	0.0404571062
+UniRef50_F8LNP9: SUB1332 undefined product 1320397:1321476 reverse MW:41202|unclassified	0.0404571062
+UniRef50_UPI000185E27A: hypothetical protein, conserved	0.0404535573
+UniRef50_UPI000185E27A: hypothetical protein, conserved|unclassified	0.0404535573
+UniRef50_Q09CG6	0.0404514477
+UniRef50_Q09CG6|unclassified	0.0404514477
+UniRef50_UPI0002FF7139: hypothetical protein	0.0404397166
+UniRef50_UPI0002FF7139: hypothetical protein|unclassified	0.0404397166
+UniRef50_Q91TH9: T121.1	0.0404383513
+UniRef50_Q91TH9: T121.1|unclassified	0.0404383513
+UniRef50_UPI0002E76C6C: hypothetical protein	0.0404370875
+UniRef50_UPI0002E76C6C: hypothetical protein|unclassified	0.0404370875
+UniRef50_UPI00039D2B81: pyrimidine-nucleoside phosphorylase	0.0404356402
+UniRef50_UPI00039D2B81: pyrimidine-nucleoside phosphorylase|unclassified	0.0404356402
+UniRef50_UPI0001CE17CF: PREDICTED: FtsJ homolog 2	0.0404354640
+UniRef50_UPI0001CE17CF: PREDICTED: FtsJ homolog 2|unclassified	0.0404354640
+UniRef50_Q8G7G5: Cysteine--tRNA ligase	0.0404335344
+UniRef50_Q8G7G5: Cysteine--tRNA ligase|unclassified	0.0404335344
+UniRef50_Q0BVW2: Homoserine O-acetyltransferase	0.0404317977
+UniRef50_Q0BVW2: Homoserine O-acetyltransferase|unclassified	0.0404317977
+UniRef50_Q90512: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial (Fragment)	0.0404277532
+UniRef50_Q90512: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial (Fragment)|unclassified	0.0404277532
+UniRef50_UPI000347FDA3: hypothetical protein	0.0404261250
+UniRef50_UPI000347FDA3: hypothetical protein|unclassified	0.0404261250
+UniRef50_R5FNB6	0.0404222637
+UniRef50_R5FNB6|unclassified	0.0404222637
+UniRef50_A0A024UQU4	0.0404207238
+UniRef50_A0A024UQU4|unclassified	0.0404207238
+UniRef50_N9XI65	0.0404204866
+UniRef50_N9XI65|unclassified	0.0404204866
+UniRef50_T1JH82	0.0404167436
+UniRef50_T1JH82|unclassified	0.0404167436
+UniRef50_A0A059IME8	0.0404150491
+UniRef50_A0A059IME8|unclassified	0.0404150491
+UniRef50_UPI000365B579: hypothetical protein	0.0404043440
+UniRef50_UPI000365B579: hypothetical protein|unclassified	0.0404043440
+UniRef50_UPI0003720951: hypothetical protein	0.0404009371
+UniRef50_UPI0003720951: hypothetical protein|unclassified	0.0404009371
+UniRef50_UPI00039BD067: MFS transporter	0.0403990877
+UniRef50_UPI00039BD067: MFS transporter|unclassified	0.0403990877
+UniRef50_UPI0003622AC4: hypothetical protein	0.0403986155
+UniRef50_UPI0003622AC4: hypothetical protein|unclassified	0.0403986155
+UniRef50_UPI0004706166: fusaric acid resistance protein, partial	0.0403933353
+UniRef50_UPI0004706166: fusaric acid resistance protein, partial|unclassified	0.0403933353
+UniRef50_B5E988: UPF0502 protein Gbem_0194	0.0403910824
+UniRef50_B5E988: UPF0502 protein Gbem_0194|unclassified	0.0403910824
+UniRef50_UPI00046906CD: C4-dicarboxylate ABC transporter permease	0.0403857125
+UniRef50_UPI00046906CD: C4-dicarboxylate ABC transporter permease|unclassified	0.0403857125
+UniRef50_UPI00037BBCDB: hypothetical protein, partial	0.0403823985
+UniRef50_UPI00037BBCDB: hypothetical protein, partial|unclassified	0.0403823985
+UniRef50_UPI0004691657: hypothetical protein	0.0403778678
+UniRef50_UPI0004691657: hypothetical protein|unclassified	0.0403778678
+UniRef50_UPI0003469C64: hypothetical protein	0.0403717145
+UniRef50_UPI0003469C64: hypothetical protein|unclassified	0.0403717145
+UniRef50_UPI0004639093: hypothetical protein	0.0403699649
+UniRef50_UPI0004639093: hypothetical protein|unclassified	0.0403699649
+UniRef50_UPI00037129E9: hypothetical protein	0.0403678536
+UniRef50_UPI00037129E9: hypothetical protein|unclassified	0.0403678536
+UniRef50_UPI00047D1D69: hypothetical protein	0.0403605251
+UniRef50_UPI00047D1D69: hypothetical protein|unclassified	0.0403605251
+UniRef50_UPI00025588F1: hemolysin-type calcium-binding repeat family protein	0.0403599276
+UniRef50_UPI00025588F1: hemolysin-type calcium-binding repeat family protein|unclassified	0.0403599276
+UniRef50_UPI0002F6B5AC: hypothetical protein	0.0403586567
+UniRef50_UPI0002F6B5AC: hypothetical protein|unclassified	0.0403586567
+UniRef50_UPI00037F9362: hypothetical protein	0.0403485915
+UniRef50_UPI00037F9362: hypothetical protein|unclassified	0.0403485915
+UniRef50_P29686: Glucose-6-phosphate 1-dehydrogenase	0.0403477164
+UniRef50_P29686: Glucose-6-phosphate 1-dehydrogenase|unclassified	0.0403477164
+UniRef50_UPI00025595A3: NnrS family protein	0.0403375867
+UniRef50_UPI00025595A3: NnrS family protein|unclassified	0.0403375867
+UniRef50_UPI0002C45261: PREDICTED: protein MTO1 homolog, mitochondrial	0.0403366912
+UniRef50_UPI0002C45261: PREDICTED: protein MTO1 homolog, mitochondrial|unclassified	0.0403366912
+UniRef50_UPI0004639D9B: ErfK/YbiS/YcfS/YnhG family protein	0.0403360577
+UniRef50_UPI0004639D9B: ErfK/YbiS/YcfS/YnhG family protein|unclassified	0.0403360577
+UniRef50_UPI000423A71E: hypothetical protein	0.0403305550
+UniRef50_UPI000423A71E: hypothetical protein|unclassified	0.0403305550
+UniRef50_UPI00036FDE6E: MULTISPECIES: hypothetical protein	0.0403273570
+UniRef50_UPI00036FDE6E: MULTISPECIES: hypothetical protein|unclassified	0.0403273570
+UniRef50_UPI0001745D89: molecular chaperone DnaK	0.0403257444
+UniRef50_UPI0001745D89: molecular chaperone DnaK|unclassified	0.0403257444
+UniRef50_UPI00041C1647: hypothetical protein	0.0403234379
+UniRef50_UPI00041C1647: hypothetical protein|unclassified	0.0403234379
+UniRef50_U6LTQ9	0.0403218097
+UniRef50_U6LTQ9|unclassified	0.0403218097
+UniRef50_O66112: Pyruvate dehydrogenase E1 component subunit alpha	0.0403188319
+UniRef50_O66112: Pyruvate dehydrogenase E1 component subunit alpha|unclassified	0.0403188319
+UniRef50_U2DPH6: Metallo-beta-lactamase domain protein	0.0403171392
+UniRef50_U2DPH6: Metallo-beta-lactamase domain protein|unclassified	0.0403171392
+UniRef50_UPI00047B64CE: hypothetical protein	0.0403130360
+UniRef50_UPI00047B64CE: hypothetical protein|unclassified	0.0403130360
+UniRef50_G2QPJ3	0.0403092322
+UniRef50_G2QPJ3|unclassified	0.0403092322
+UniRef50_UPI0003B3C6EB: hypothetical protein	0.0403083645
+UniRef50_UPI0003B3C6EB: hypothetical protein|unclassified	0.0403083645
+UniRef50_UPI000374A709: hypothetical protein	0.0403062784
+UniRef50_UPI000374A709: hypothetical protein|unclassified	0.0403062784
+UniRef50_UPI0003778251: hypothetical protein	0.0403033714
+UniRef50_UPI0003778251: hypothetical protein|unclassified	0.0403033714
+UniRef50_UPI00026282E7: putative xanthine dehydrogenase	0.0403024144
+UniRef50_UPI00026282E7: putative xanthine dehydrogenase|unclassified	0.0403024144
+UniRef50_D8SKU3	0.0403018309
+UniRef50_D8SKU3|unclassified	0.0403018309
+UniRef50_Q3JRG8	0.0403014009
+UniRef50_Q3JRG8|unclassified	0.0403014009
+UniRef50_Q8D2Y0: Polyribonucleotide nucleotidyltransferase	0.0402972568
+UniRef50_Q8D2Y0: Polyribonucleotide nucleotidyltransferase|unclassified	0.0402972568
+UniRef50_UPI0002EEAF71: hypothetical protein	0.0402954348
+UniRef50_UPI0002EEAF71: hypothetical protein|unclassified	0.0402954348
+UniRef50_W6QR38	0.0402880951
+UniRef50_W6QR38|unclassified	0.0402880951
+UniRef50_Q6KID2: Valine--tRNA ligase	0.0402839611
+UniRef50_Q6KID2: Valine--tRNA ligase|unclassified	0.0402839611
+UniRef50_T1WAL5: Ppx/GppA phosphatase family (Fragment)	0.0402835981
+UniRef50_T1WAL5: Ppx/GppA phosphatase family (Fragment)|unclassified	0.0402835981
+UniRef50_UPI0003F6A6E6: UDP-diphosphatase	0.0402731400
+UniRef50_UPI0003F6A6E6: UDP-diphosphatase|unclassified	0.0402731400
+UniRef50_Q1IHH4: DNA-directed RNA polymerase subunit beta	0.0402717832
+UniRef50_Q1IHH4: DNA-directed RNA polymerase subunit beta|unclassified	0.0402717832
+UniRef50_UPI0003C17FBB: PREDICTED: tyrosine--tRNA ligase, mitochondrial	0.0402714595
+UniRef50_UPI0003C17FBB: PREDICTED: tyrosine--tRNA ligase, mitochondrial|unclassified	0.0402714595
+UniRef50_A7H722: Ribonuclease HII	0.0402700635
+UniRef50_A7H722: Ribonuclease HII|unclassified	0.0402700635
+UniRef50_P0A635: Cysteine--tRNA ligase	0.0402694932
+UniRef50_P0A635: Cysteine--tRNA ligase|unclassified	0.0402694932
+UniRef50_R5P5F2: KamA family protein	0.0402664343
+UniRef50_R5P5F2: KamA family protein|unclassified	0.0402664343
+UniRef50_P47385: Ribonuclease J	0.0402652731
+UniRef50_P47385: Ribonuclease J|unclassified	0.0402652731
+UniRef50_UPI0003B77401: ABC transporter ATP-binding protein	0.0402620350
+UniRef50_UPI0003B77401: ABC transporter ATP-binding protein|unclassified	0.0402620350
+UniRef50_UPI000373E4FB: hypothetical protein	0.0402566815
+UniRef50_UPI000373E4FB: hypothetical protein|unclassified	0.0402566815
+UniRef50_UPI0001FFE18A: peptide ABC transporter permease	0.0402546624
+UniRef50_UPI0001FFE18A: peptide ABC transporter permease|unclassified	0.0402546624
+UniRef50_UPI000364B041: hypothetical protein, partial	0.0402545177
+UniRef50_UPI000364B041: hypothetical protein, partial|unclassified	0.0402545177
+UniRef50_W0ACQ7	0.0402500235
+UniRef50_W0ACQ7|unclassified	0.0402500235
+UniRef50_K1XG94: FeS assembly protein SufB (Fragment)	0.0402386975
+UniRef50_K1XG94: FeS assembly protein SufB (Fragment)|unclassified	0.0402386975
+UniRef50_Q820Q4: Siroheme synthase	0.0402383037
+UniRef50_Q820Q4: Siroheme synthase|unclassified	0.0402383037
+UniRef50_UPI00047E411E: hypothetical protein	0.0402347613
+UniRef50_UPI00047E411E: hypothetical protein|unclassified	0.0402347613
+UniRef50_UPI00046AF5CC: phage host specificity protein	0.0402339640
+UniRef50_UPI00046AF5CC: phage host specificity protein|unclassified	0.0402339640
+UniRef50_UPI0003649FDC: hypothetical protein	0.0402252003
+UniRef50_UPI0003649FDC: hypothetical protein|unclassified	0.0402252003
+UniRef50_A6Q5I8: Glutamate--tRNA ligase 2	0.0402202257
+UniRef50_A6Q5I8: Glutamate--tRNA ligase 2|unclassified	0.0402202257
+UniRef50_A6LDR3	0.0402173261
+UniRef50_A6LDR3|unclassified	0.0402173261
+UniRef50_Q6F2A0: Serine--tRNA ligase	0.0402142182
+UniRef50_Q6F2A0: Serine--tRNA ligase|unclassified	0.0402142182
+UniRef50_UPI00035E752A: hypothetical protein	0.0402107092
+UniRef50_UPI00035E752A: hypothetical protein|unclassified	0.0402107092
+UniRef50_UPI000289083E: RNAse G	0.0402092535
+UniRef50_UPI000289083E: RNAse G|unclassified	0.0402092535
+UniRef50_Q5P5I4: (S)-1-Phenylethanol dehydrogenase	0.0402065332
+UniRef50_Q5P5I4: (S)-1-Phenylethanol dehydrogenase|unclassified	0.0402065332
+UniRef50_UPI0004728E35: hypothetical protein	0.0401967868
+UniRef50_UPI0004728E35: hypothetical protein|unclassified	0.0401967868
+UniRef50_F0VAB0	0.0401946943
+UniRef50_F0VAB0|unclassified	0.0401946943
+UniRef50_UPI0003C16451: PREDICTED: choline dehydrogenase, mitochondrial-like	0.0401889264
+UniRef50_UPI0003C16451: PREDICTED: choline dehydrogenase, mitochondrial-like|unclassified	0.0401889264
+UniRef50_UPI000361F9D6: MULTISPECIES: hypothetical protein	0.0401834919
+UniRef50_UPI000361F9D6: MULTISPECIES: hypothetical protein|unclassified	0.0401834919
+UniRef50_UPI0004221FFC: hypothetical protein	0.0401830471
+UniRef50_UPI0004221FFC: hypothetical protein|unclassified	0.0401830471
+UniRef50_A7SR54: Predicted protein (Fragment)	0.0401743906
+UniRef50_A7SR54: Predicted protein (Fragment)|unclassified	0.0401743906
+UniRef50_UPI00039597D2: PREDICTED: hydroxyacid oxidase 1	0.0401737910
+UniRef50_UPI00039597D2: PREDICTED: hydroxyacid oxidase 1|unclassified	0.0401737910
+UniRef50_I2F1F8	0.0401709649
+UniRef50_I2F1F8|unclassified	0.0401709649
+UniRef50_Q1QUD2: Probable malate:quinone oxidoreductase	0.0401708840
+UniRef50_Q1QUD2: Probable malate:quinone oxidoreductase|unclassified	0.0401708840
+UniRef50_UPI000372BF5D: hypothetical protein	0.0401677310
+UniRef50_UPI000372BF5D: hypothetical protein|unclassified	0.0401677310
+UniRef50_UPI000345CEE3: hypothetical protein	0.0401673230
+UniRef50_UPI000345CEE3: hypothetical protein|unclassified	0.0401673230
+UniRef50_UPI00037326FA: hypothetical protein	0.0401627594
+UniRef50_UPI00037326FA: hypothetical protein|unclassified	0.0401627594
+UniRef50_Q1GBI9: Energy-coupling factor transporter ATP-binding protein EcfA2	0.0401626521
+UniRef50_Q1GBI9: Energy-coupling factor transporter ATP-binding protein EcfA2|unclassified	0.0401626521
+UniRef50_D9UCR9	0.0401607277
+UniRef50_D9UCR9|unclassified	0.0401607277
+UniRef50_UPI0003B49F16: chemotaxis protein CheR	0.0401606917
+UniRef50_UPI0003B49F16: chemotaxis protein CheR|unclassified	0.0401606917
+UniRef50_D7KRD5: Predicted protein	0.0401587281
+UniRef50_D7KRD5: Predicted protein|unclassified	0.0401587281
+UniRef50_UPI0003829713: hypothetical protein	0.0401570302
+UniRef50_UPI0003829713: hypothetical protein|unclassified	0.0401570302
+UniRef50_UPI00046A3346: tartronate semialdehyde reductase	0.0401566634
+UniRef50_UPI00046A3346: tartronate semialdehyde reductase|unclassified	0.0401566634
+UniRef50_UPI00047B7523: hypothetical protein	0.0401447796
+UniRef50_UPI00047B7523: hypothetical protein|unclassified	0.0401447796
+UniRef50_A0A031I854: Phage portal protein, HK97	0.0401445251
+UniRef50_A0A031I854: Phage portal protein, HK97|unclassified	0.0401445251
+UniRef50_UPI00042BFA45: PREDICTED: S1 RNA-binding domain-containing protein 1	0.0401403733
+UniRef50_UPI00042BFA45: PREDICTED: S1 RNA-binding domain-containing protein 1|unclassified	0.0401403733
+UniRef50_Q6MML0: Threonine--tRNA ligase	0.0401400469
+UniRef50_Q6MML0: Threonine--tRNA ligase|unclassified	0.0401400469
+UniRef50_UPI0003B6D627: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0401371069
+UniRef50_UPI0003B6D627: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0401371069
+UniRef50_G8USA1: Membrane protein	0.0401339821
+UniRef50_G8USA1: Membrane protein|unclassified	0.0401339821
+UniRef50_D8TH60	0.0401323280
+UniRef50_D8TH60|unclassified	0.0401323280
+UniRef50_H2CFZ8	0.0401307213
+UniRef50_H2CFZ8|unclassified	0.0401307213
+UniRef50_V9G805: Lipoprotein, putative	0.0401287207
+UniRef50_V9G805: Lipoprotein, putative|unclassified	0.0401287207
+UniRef50_S9QR64: PvcA protein	0.0401279219
+UniRef50_S9QR64: PvcA protein|unclassified	0.0401279219
+UniRef50_UPI0003B53A66: sodium:proton antiporter	0.0401229551
+UniRef50_UPI0003B53A66: sodium:proton antiporter|unclassified	0.0401229551
+UniRef50_UPI00047B0F2C: hypothetical protein	0.0401210762
+UniRef50_UPI00047B0F2C: hypothetical protein|unclassified	0.0401210762
+UniRef50_UPI00036EB176: hypothetical protein	0.0401157621
+UniRef50_UPI00036EB176: hypothetical protein|unclassified	0.0401157621
+UniRef50_UPI00047223FC: NADH:flavin oxidoreductase	0.0401156573
+UniRef50_UPI00047223FC: NADH:flavin oxidoreductase|unclassified	0.0401156573
+UniRef50_Q6GMI9: UDP-glucuronic acid decarboxylase 1	0.0401145230
+UniRef50_Q6GMI9: UDP-glucuronic acid decarboxylase 1|unclassified	0.0401145230
+UniRef50_UPI0003645D29: hypothetical protein	0.0401100088
+UniRef50_UPI0003645D29: hypothetical protein|unclassified	0.0401100088
+UniRef50_P48099: Light-independent protochlorophyllide reductase subunit B	0.0401078734
+UniRef50_P48099: Light-independent protochlorophyllide reductase subunit B|unclassified	0.0401078734
+UniRef50_UPI000400035C: hypothetical protein	0.0401073481
+UniRef50_UPI000400035C: hypothetical protein|unclassified	0.0401073481
+UniRef50_UPI00037A5376: hypothetical protein, partial	0.0401028501
+UniRef50_UPI00037A5376: hypothetical protein, partial|unclassified	0.0401028501
+UniRef50_UPI000255D25B: isochorismate synthase	0.0401003865
+UniRef50_UPI000255D25B: isochorismate synthase|unclassified	0.0401003865
+UniRef50_E0SBA7	0.0400986617
+UniRef50_E0SBA7|unclassified	0.0400986617
+UniRef50_UPI000368076F: hypothetical protein	0.0400957939
+UniRef50_UPI000368076F: hypothetical protein|unclassified	0.0400957939
+UniRef50_G0A2L8: Cobalamin synthesis protein P47K	0.0400936322
+UniRef50_G0A2L8: Cobalamin synthesis protein P47K|unclassified	0.0400936322
+UniRef50_UPI0003297A06: PREDICTED: proline/betaine transporter-like	0.0400886165
+UniRef50_UPI0003297A06: PREDICTED: proline/betaine transporter-like|unclassified	0.0400886165
+UniRef50_UPI00026253F4: DEAD/DEAH box helicase domain-containing protein	0.0400881916
+UniRef50_UPI00026253F4: DEAD/DEAH box helicase domain-containing protein|unclassified	0.0400881916
+UniRef50_F5Z201	0.0400870235
+UniRef50_F5Z201|unclassified	0.0400870235
+UniRef50_UPI0004785EE2: hypothetical protein	0.0400854159
+UniRef50_UPI0004785EE2: hypothetical protein|unclassified	0.0400854159
+UniRef50_F9KEL0	0.0400818055
+UniRef50_F9KEL0|unclassified	0.0400818055
+UniRef50_UPI0004659739: C4-dicarboxylate ABC transporter	0.0400817941
+UniRef50_UPI0004659739: C4-dicarboxylate ABC transporter|unclassified	0.0400817941
+UniRef50_UPI0003B4DBF3: acyl-CoA dehydrogenase	0.0400768963
+UniRef50_UPI0003B4DBF3: acyl-CoA dehydrogenase|unclassified	0.0400768963
+UniRef50_UPI0002E27735: hypothetical protein	0.0400711625
+UniRef50_UPI0002E27735: hypothetical protein|unclassified	0.0400711625
+UniRef50_B8NR51	0.0400701919
+UniRef50_B8NR51|unclassified	0.0400701919
+UniRef50_UPI0004753B37: hypothetical protein	0.0400688551
+UniRef50_UPI0004753B37: hypothetical protein|unclassified	0.0400688551
+UniRef50_A0A011N5Q2: Periplasmic pH-dependent serine endoprotease DegQ	0.0400686912
+UniRef50_A0A011N5Q2: Periplasmic pH-dependent serine endoprotease DegQ|unclassified	0.0400686912
+UniRef50_W6W8P6	0.0400610043
+UniRef50_W6W8P6|unclassified	0.0400610043
+UniRef50_C1MZS3: Predicted protein	0.0400580698
+UniRef50_C1MZS3: Predicted protein|unclassified	0.0400580698
+UniRef50_A0A011PC64	0.0400559720
+UniRef50_A0A011PC64|unclassified	0.0400559720
+UniRef50_UPI0004771D64: hypothetical protein	0.0400491924
+UniRef50_UPI0004771D64: hypothetical protein|unclassified	0.0400491924
+UniRef50_C7RIK6	0.0400486403
+UniRef50_C7RIK6|unclassified	0.0400486403
+UniRef50_UPI00047139D0: HAD family hydrolase, partial	0.0400427064
+UniRef50_UPI00047139D0: HAD family hydrolase, partial|unclassified	0.0400427064
+UniRef50_R7PGL5	0.0400409091
+UniRef50_R7PGL5|unclassified	0.0400409091
+UniRef50_UPI0003765EEE: hypothetical protein	0.0400360442
+UniRef50_UPI0003765EEE: hypothetical protein|unclassified	0.0400360442
+UniRef50_UPI00037641E6: hypothetical protein	0.0400357612
+UniRef50_UPI00037641E6: hypothetical protein|unclassified	0.0400357612
+UniRef50_UPI0004194E02: hypothetical protein	0.0400321014
+UniRef50_UPI0004194E02: hypothetical protein|unclassified	0.0400321014
+UniRef50_G2SPT0: Exodeoxyribonuclease V alpha chain	0.0400318859
+UniRef50_G2SPT0: Exodeoxyribonuclease V alpha chain|unclassified	0.0400318859
+UniRef50_W6JTF6: Sugar ABC transporter, periplasmic sugar-binding protein	0.0400301377
+UniRef50_W6JTF6: Sugar ABC transporter, periplasmic sugar-binding protein|unclassified	0.0400301377
+UniRef50_P75044: Ribose-phosphate pyrophosphokinase	0.0400294980
+UniRef50_P75044: Ribose-phosphate pyrophosphokinase|unclassified	0.0400294980
+UniRef50_UPI000404A4D9: hypothetical protein	0.0400251660
+UniRef50_UPI000404A4D9: hypothetical protein|unclassified	0.0400251660
+UniRef50_UPI0003FDDFFE: amidase	0.0400226457
+UniRef50_UPI0003FDDFFE: amidase|unclassified	0.0400226457
+UniRef50_UPI00047A62C0: sodium:proline symporter	0.0400216005
+UniRef50_UPI00047A62C0: sodium:proline symporter|unclassified	0.0400216005
+UniRef50_U6K7V3	0.0400200659
+UniRef50_U6K7V3|unclassified	0.0400200659
+UniRef50_S5EEA9	0.0400155955
+UniRef50_S5EEA9|unclassified	0.0400155955
+UniRef50_K0RHV9	0.0400151237
+UniRef50_K0RHV9|unclassified	0.0400151237
+UniRef50_UPI0002E8434D: hypothetical protein	0.0400131633
+UniRef50_UPI0002E8434D: hypothetical protein|unclassified	0.0400131633
+UniRef50_B3PNG9: Serine--tRNA ligase	0.0400124746
+UniRef50_B3PNG9: Serine--tRNA ligase|unclassified	0.0400124746
+UniRef50_E3ZGD9	0.0400116472
+UniRef50_E3ZGD9|unclassified	0.0400116472
+UniRef50_UPI0002ED057A: hypothetical protein	0.0400102494
+UniRef50_UPI0002ED057A: hypothetical protein|unclassified	0.0400102494
+UniRef50_UPI000455DB8F: GroES-like protein, partial	0.0400099659
+UniRef50_UPI000455DB8F: GroES-like protein, partial|unclassified	0.0400099659
+UniRef50_G2T9X5	0.0400088897
+UniRef50_G2T9X5|unclassified	0.0400088897
+UniRef50_A0A024KBE2: Ferric siderophore transport system, periplasmic b inding protein TonB	0.0400056349
+UniRef50_A0A024KBE2: Ferric siderophore transport system, periplasmic b inding protein TonB|unclassified	0.0400056349
+UniRef50_UPI00037D2323: alpha-glucosidase	0.0400051776
+UniRef50_UPI00037D2323: alpha-glucosidase|unclassified	0.0400051776
+UniRef50_UPI0004229BAB: hypothetical protein	0.0400039251
+UniRef50_UPI0004229BAB: hypothetical protein|unclassified	0.0400039251
+UniRef50_E3C6U4	0.0400031899
+UniRef50_E3C6U4|unclassified	0.0400031899
+UniRef50_E3Z4D3: Internalin A (Fragment)	0.0400000237
+UniRef50_E3Z4D3: Internalin A (Fragment)|unclassified	0.0400000237
+UniRef50_A2BX80: Biotin synthase	0.0399958081
+UniRef50_A2BX80: Biotin synthase|unclassified	0.0399958081
+UniRef50_UPI0003F5DA4A: phosphoserine phosphatase	0.0399939437
+UniRef50_UPI0003F5DA4A: phosphoserine phosphatase|unclassified	0.0399939437
+UniRef50_S7VZD9: Excinuclease ABC	0.0399897719
+UniRef50_S7VZD9: Excinuclease ABC|unclassified	0.0399897719
+UniRef50_A1U1J4: Ribosomal RNA large subunit methyltransferase M	0.0399887889
+UniRef50_A1U1J4: Ribosomal RNA large subunit methyltransferase M|unclassified	0.0399887889
+UniRef50_UPI0002555DEA: 16S ribosomal RNA methyltransferase RsmE	0.0399875831
+UniRef50_UPI0002555DEA: 16S ribosomal RNA methyltransferase RsmE|unclassified	0.0399875831
+UniRef50_UPI00037F8F57: hypothetical protein	0.0399858542
+UniRef50_UPI00037F8F57: hypothetical protein|unclassified	0.0399858542
+UniRef50_D6D7L5: Phage tail tape measure protein, TP901 family, core region	0.0399827671
+UniRef50_D6D7L5: Phage tail tape measure protein, TP901 family, core region|unclassified	0.0399827671
+UniRef50_UPI000318A15A: hypothetical protein	0.0399821640
+UniRef50_UPI000318A15A: hypothetical protein|unclassified	0.0399821640
+UniRef50_Q31RQ5: 3-phosphoshikimate 1-carboxyvinyltransferase	0.0399783435
+UniRef50_Q31RQ5: 3-phosphoshikimate 1-carboxyvinyltransferase|unclassified	0.0399783435
+UniRef50_D8TJM2	0.0399771319
+UniRef50_D8TJM2|unclassified	0.0399771319
+UniRef50_UPI00039E42E3: permease	0.0399763896
+UniRef50_UPI00039E42E3: permease|unclassified	0.0399763896
+UniRef50_U3KHY5	0.0399746478
+UniRef50_U3KHY5|unclassified	0.0399746478
+UniRef50_UPI0003B46B10: glycoside hydrolase	0.0399723703
+UniRef50_UPI0003B46B10: glycoside hydrolase|unclassified	0.0399723703
+UniRef50_UPI00036B51D7: hypothetical protein	0.0399668459
+UniRef50_UPI00036B51D7: hypothetical protein|unclassified	0.0399668459
+UniRef50_UPI00046AA5FD: galactofuranosyltransferase	0.0399628060
+UniRef50_UPI00046AA5FD: galactofuranosyltransferase|unclassified	0.0399628060
+UniRef50_R1EBF4	0.0399613462
+UniRef50_R1EBF4|unclassified	0.0399613462
+UniRef50_X5MMF7	0.0399603896
+UniRef50_X5MMF7|unclassified	0.0399603896
+UniRef50_UPI0003B47A2B: homoserine dehydrogenase	0.0399585026
+UniRef50_UPI0003B47A2B: homoserine dehydrogenase|unclassified	0.0399585026
+UniRef50_UPI0003461C99: hypothetical protein	0.0399569065
+UniRef50_UPI0003461C99: hypothetical protein|unclassified	0.0399569065
+UniRef50_UPI0003F95E2C: hypothetical protein	0.0399567176
+UniRef50_UPI0003F95E2C: hypothetical protein|unclassified	0.0399567176
+UniRef50_UPI000364AD41: hypothetical protein	0.0399532237
+UniRef50_UPI000364AD41: hypothetical protein|unclassified	0.0399532237
+UniRef50_UPI000475631B: hypothetical protein	0.0399511455
+UniRef50_UPI000475631B: hypothetical protein|unclassified	0.0399511455
+UniRef50_A7Z278	0.0399464457
+UniRef50_A7Z278|unclassified	0.0399464457
+UniRef50_Q57KJ6: tRNA pseudouridine synthase D	0.0399458785
+UniRef50_Q57KJ6: tRNA pseudouridine synthase D|unclassified	0.0399458785
+UniRef50_UPI00047DEB0D: hypothetical protein	0.0399456736
+UniRef50_UPI00047DEB0D: hypothetical protein|unclassified	0.0399456736
+UniRef50_Q04RS9: Biotin synthase	0.0399424235
+UniRef50_Q04RS9: Biotin synthase|unclassified	0.0399424235
+UniRef50_A0A024HYE6	0.0399407228
+UniRef50_A0A024HYE6|unclassified	0.0399407228
+UniRef50_W1S6E3: Cysteine synthase	0.0399340571
+UniRef50_W1S6E3: Cysteine synthase|unclassified	0.0399340571
+UniRef50_A6U5G1: Bifunctional uridylyltransferase/uridylyl-removing enzyme	0.0399245338
+UniRef50_A6U5G1: Bifunctional uridylyltransferase/uridylyl-removing enzyme|unclassified	0.0399245338
+UniRef50_Q5FUR8: Histidine--tRNA ligase	0.0399186428
+UniRef50_Q5FUR8: Histidine--tRNA ligase|unclassified	0.0399186428
+UniRef50_UPI0003CFC969: hypothetical protein P148_SR1C00001G0199	0.0399175947
+UniRef50_UPI0003CFC969: hypothetical protein P148_SR1C00001G0199|unclassified	0.0399175947
+UniRef50_UPI0003A2C0E4: phosphate ABC transporter permease	0.0399156122
+UniRef50_UPI0003A2C0E4: phosphate ABC transporter permease|unclassified	0.0399156122
+UniRef50_E1TLC8: Transport protein	0.0399144630
+UniRef50_E1TLC8: Transport protein|unclassified	0.0399144630
+UniRef50_X1AGT8: Marine sediment metagenome DNA, contig: S01H4_S01315 (Fragment)	0.0399144253
+UniRef50_X1AGT8: Marine sediment metagenome DNA, contig: S01H4_S01315 (Fragment)|unclassified	0.0399144253
+UniRef50_UPI0003B768A4: recombinase	0.0399128685
+UniRef50_UPI0003B768A4: recombinase|unclassified	0.0399128685
+UniRef50_UPI00030C054C: hypothetical protein	0.0399123638
+UniRef50_UPI00030C054C: hypothetical protein|unclassified	0.0399123638
+UniRef50_UPI00037F6ADC: hypothetical protein	0.0399051327
+UniRef50_UPI00037F6ADC: hypothetical protein|unclassified	0.0399051327
+UniRef50_UPI0002ED3852: hypothetical protein	0.0399029482
+UniRef50_UPI0002ED3852: hypothetical protein|unclassified	0.0399029482
+UniRef50_UPI0002E132CE: hypothetical protein	0.0398993396
+UniRef50_UPI0002E132CE: hypothetical protein|unclassified	0.0398993396
+UniRef50_Q89XM4: Probable malate:quinone oxidoreductase	0.0398984347
+UniRef50_Q89XM4: Probable malate:quinone oxidoreductase|unclassified	0.0398984347
+UniRef50_Q1MQ89: DNA gyrase subunit A	0.0398951270
+UniRef50_Q1MQ89: DNA gyrase subunit A|unclassified	0.0398951270
+UniRef50_F9EDC6: SagD family bacteriocin biosynthesis protein	0.0398934896
+UniRef50_F9EDC6: SagD family bacteriocin biosynthesis protein|unclassified	0.0398934896
+UniRef50_Q9LMQ1: F7H2.17 protein	0.0398920683
+UniRef50_Q9LMQ1: F7H2.17 protein|unclassified	0.0398920683
+UniRef50_UPI00046D9877: hemolysin, partial	0.0398876950
+UniRef50_UPI00046D9877: hemolysin, partial|unclassified	0.0398876950
+UniRef50_X1YK17: Elongation of very long chain fatty acids protein	0.0398837108
+UniRef50_X1YK17: Elongation of very long chain fatty acids protein|unclassified	0.0398837108
+UniRef50_UPI00046FF833: hypothetical protein	0.0398820482
+UniRef50_UPI00046FF833: hypothetical protein|unclassified	0.0398820482
+UniRef50_UPI0003B51C56: homoserine dehydrogenase	0.0398820392
+UniRef50_UPI0003B51C56: homoserine dehydrogenase|unclassified	0.0398820392
+UniRef50_UPI0002628822: inosine-uridine preferring nucleoside hydrolase	0.0398820252
+UniRef50_UPI0002628822: inosine-uridine preferring nucleoside hydrolase|unclassified	0.0398820252
+UniRef50_UPI0003901BFD: 5''''-3'''' exonuclease	0.0398778522
+UniRef50_UPI0003901BFD: 5''''-3'''' exonuclease|unclassified	0.0398778522
+UniRef50_K2JZS6	0.0398756071
+UniRef50_K2JZS6|unclassified	0.0398756071
+UniRef50_UPI000368CB83: hypothetical protein	0.0398752553
+UniRef50_UPI000368CB83: hypothetical protein|unclassified	0.0398752553
+UniRef50_A4NLX2: Cytochrome C-type biogenesis protein (Fragment)	0.0398710335
+UniRef50_A4NLX2: Cytochrome C-type biogenesis protein (Fragment)|unclassified	0.0398710335
+UniRef50_UPI0000397F81: COG2931: RTX toxins and related Ca2+-binding proteins, partial	0.0398686005
+UniRef50_UPI0000397F81: COG2931: RTX toxins and related Ca2+-binding proteins, partial|unclassified	0.0398686005
+UniRef50_UPI0004663D36: hypothetical protein	0.0398683842
+UniRef50_UPI0004663D36: hypothetical protein|unclassified	0.0398683842
+UniRef50_UPI000382EBAF: hypothetical protein	0.0398643743
+UniRef50_UPI000382EBAF: hypothetical protein|unclassified	0.0398643743
+UniRef50_UPI0004422988: PREDICTED: lambda-crystallin homolog	0.0398639235
+UniRef50_UPI0004422988: PREDICTED: lambda-crystallin homolog|unclassified	0.0398639235
+UniRef50_UPI0003B301C3: transcriptional regulator	0.0398638757
+UniRef50_UPI0003B301C3: transcriptional regulator|unclassified	0.0398638757
+UniRef50_R6PB34	0.0398634158
+UniRef50_R6PB34|unclassified	0.0398634158
+UniRef50_H3SBM2: GTPase (G3E family) protein	0.0398624096
+UniRef50_H3SBM2: GTPase (G3E family) protein|unclassified	0.0398624096
+UniRef50_A3PAU4: Chorismate synthase	0.0398622721
+UniRef50_A3PAU4: Chorismate synthase|unclassified	0.0398622721
+UniRef50_K2LKK6: Phosphate ABC transporter, periplasmic binding protein	0.0398557596
+UniRef50_K2LKK6: Phosphate ABC transporter, periplasmic binding protein|unclassified	0.0398557596
+UniRef50_E3HTR8	0.0398543564
+UniRef50_E3HTR8|unclassified	0.0398543564
+UniRef50_UPI00035E2F93: hypothetical protein	0.0398479089
+UniRef50_UPI00035E2F93: hypothetical protein|unclassified	0.0398479089
+UniRef50_UPI0003B64CCE: hisitdine kinase	0.0398476001
+UniRef50_UPI0003B64CCE: hisitdine kinase|unclassified	0.0398476001
+UniRef50_E9H3H9	0.0398474716
+UniRef50_E9H3H9|unclassified	0.0398474716
+UniRef50_UPI000370A6A5: hypothetical protein	0.0398465885
+UniRef50_UPI000370A6A5: hypothetical protein|unclassified	0.0398465885
+UniRef50_X6GG17: ABC transporter substrate-binding protein	0.0398415013
+UniRef50_X6GG17: ABC transporter substrate-binding protein|unclassified	0.0398415013
+UniRef50_UPI000455F434: hypothetical protein CONPUDRAFT_168617	0.0398395466
+UniRef50_UPI000455F434: hypothetical protein CONPUDRAFT_168617|unclassified	0.0398395466
+UniRef50_Q6MCU1: Chorismate synthase	0.0398347472
+UniRef50_Q6MCU1: Chorismate synthase|unclassified	0.0398347472
+UniRef50_UPI00036F0908: hypothetical protein	0.0398292580
+UniRef50_UPI00036F0908: hypothetical protein|unclassified	0.0398292580
+UniRef50_F8X2Y7	0.0398283119
+UniRef50_F8X2Y7|unclassified	0.0398283119
+UniRef50_UPI000369F7C5: hypothetical protein	0.0398263361
+UniRef50_UPI000369F7C5: hypothetical protein|unclassified	0.0398263361
+UniRef50_H8H2P8: Transposase, IS4	0.0398256388
+UniRef50_H8H2P8: Transposase, IS4|unclassified	0.0398256388
+UniRef50_UPI00047D14F9: hypothetical protein	0.0398243363
+UniRef50_UPI00047D14F9: hypothetical protein|unclassified	0.0398243363
+UniRef50_Q5KYA3: Glutamate 5-kinase	0.0398203267
+UniRef50_Q5KYA3: Glutamate 5-kinase|unclassified	0.0398203267
+UniRef50_L1IER0	0.0398202463
+UniRef50_L1IER0|unclassified	0.0398202463
+UniRef50_A7INU8: Anhydro-N-acetylmuramic acid kinase	0.0398186589
+UniRef50_A7INU8: Anhydro-N-acetylmuramic acid kinase|unclassified	0.0398186589
+UniRef50_UPI0003F5B9A3: hypothetical protein	0.0398153887
+UniRef50_UPI0003F5B9A3: hypothetical protein|unclassified	0.0398153887
+UniRef50_A8JBZ3: Metalloproteinase of VMP family	0.0398142269
+UniRef50_A8JBZ3: Metalloproteinase of VMP family|unclassified	0.0398142269
+UniRef50_UPI00037478D1: hypothetical protein	0.0398095413
+UniRef50_UPI00037478D1: hypothetical protein|unclassified	0.0398095413
+UniRef50_UPI00026255DA: MFS transporter	0.0398095316
+UniRef50_UPI00026255DA: MFS transporter|unclassified	0.0398095316
+UniRef50_Q2SHX7: Probable D-serine dehydratase	0.0398090506
+UniRef50_Q2SHX7: Probable D-serine dehydratase|unclassified	0.0398090506
+UniRef50_UPI00037131EE: hypothetical protein	0.0398079969
+UniRef50_UPI00037131EE: hypothetical protein|unclassified	0.0398079969
+UniRef50_O86511	0.0398062722
+UniRef50_O86511|unclassified	0.0398062722
+UniRef50_UPI00036281D8: hypothetical protein	0.0398053501
+UniRef50_UPI00036281D8: hypothetical protein|unclassified	0.0398053501
+UniRef50_F2DBH7: Predicted protein	0.0397945617
+UniRef50_F2DBH7: Predicted protein|unclassified	0.0397945617
+UniRef50_R5PCX4: Exo-poly-alpha-D-galacturonosidase	0.0397889467
+UniRef50_R5PCX4: Exo-poly-alpha-D-galacturonosidase|unclassified	0.0397889467
+UniRef50_UPI00035D7F4D: hypothetical protein	0.0397875530
+UniRef50_UPI00035D7F4D: hypothetical protein|unclassified	0.0397875530
+UniRef50_UPI0003B722EC: MULTISPECIES: argininosuccinate synthase	0.0397868922
+UniRef50_UPI0003B722EC: MULTISPECIES: argininosuccinate synthase|unclassified	0.0397868922
+UniRef50_B5YDY1: Phosphoglucosamine mutase	0.0397838966
+UniRef50_B5YDY1: Phosphoglucosamine mutase|unclassified	0.0397838966
+UniRef50_UPI0003B685D4: CDP-glucose 4,6-dehydratase	0.0397778389
+UniRef50_UPI0003B685D4: CDP-glucose 4,6-dehydratase|unclassified	0.0397778389
+UniRef50_UPI000462ECBD: hypothetical protein	0.0397758145
+UniRef50_UPI000462ECBD: hypothetical protein|unclassified	0.0397758145
+UniRef50_D9QFV3: Gp37Gp68 family protein	0.0397733827
+UniRef50_D9QFV3: Gp37Gp68 family protein|unclassified	0.0397733827
+UniRef50_O69282: Malate:quinone oxidoreductase	0.0397717021
+UniRef50_O69282: Malate:quinone oxidoreductase|unclassified	0.0397717021
+UniRef50_P60913: Histidine--tRNA ligase	0.0397712357
+UniRef50_P60913: Histidine--tRNA ligase|unclassified	0.0397712357
+UniRef50_UPI00040789BF: hypothetical protein	0.0397710946
+UniRef50_UPI00040789BF: hypothetical protein|unclassified	0.0397710946
+UniRef50_A0KEB8: Tetratricopeptide repeat family	0.0397583661
+UniRef50_A0KEB8: Tetratricopeptide repeat family|unclassified	0.0397583661
+UniRef50_UPI00040EF52A: biotin carboxylase	0.0397551374
+UniRef50_UPI00040EF52A: biotin carboxylase|unclassified	0.0397551374
+UniRef50_UPI0003B4D6D9: NADH dehydrogenase	0.0397543515
+UniRef50_UPI0003B4D6D9: NADH dehydrogenase|unclassified	0.0397543515
+UniRef50_UPI00037E51B3: hypothetical protein	0.0397507417
+UniRef50_UPI00037E51B3: hypothetical protein|unclassified	0.0397507417
+UniRef50_UPI00030E8D28: multidrug ABC transporter ATP-binding protein	0.0397501896
+UniRef50_UPI00030E8D28: multidrug ABC transporter ATP-binding protein|unclassified	0.0397501896
+UniRef50_UPI000360A87F: hypothetical protein	0.0397490357
+UniRef50_UPI000360A87F: hypothetical protein|unclassified	0.0397490357
+UniRef50_UPI00045E71F6: hydantoin utilization protein	0.0397478206
+UniRef50_UPI00045E71F6: hydantoin utilization protein|unclassified	0.0397478206
+UniRef50_UPI00047CDE5A: hypothetical protein	0.0397360139
+UniRef50_UPI00047CDE5A: hypothetical protein|unclassified	0.0397360139
+UniRef50_J4KRG3	0.0397273042
+UniRef50_J4KRG3|unclassified	0.0397273042
+UniRef50_E3ZW41: Wall-associated protein (Fragment)	0.0397224350
+UniRef50_E3ZW41: Wall-associated protein (Fragment)|unclassified	0.0397224350
+UniRef50_UPI000315B42D: hypothetical protein	0.0397205896
+UniRef50_UPI000315B42D: hypothetical protein|unclassified	0.0397205896
+UniRef50_R7AG64	0.0397103633
+UniRef50_R7AG64|unclassified	0.0397103633
+UniRef50_J8KBH6: YhgE/Pip domain-containing protein (Fragment)	0.0397054131
+UniRef50_J8KBH6: YhgE/Pip domain-containing protein (Fragment)|unclassified	0.0397054131
+UniRef50_Q1H0T1: Type II secretion system protein	0.0397049542
+UniRef50_Q1H0T1: Type II secretion system protein|unclassified	0.0397049542
+UniRef50_B9EB27: Protoheme IX farnesyltransferase	0.0397007422
+UniRef50_B9EB27: Protoheme IX farnesyltransferase|unclassified	0.0397007422
+UniRef50_U4V9F9	0.0396994854
+UniRef50_U4V9F9|unclassified	0.0396994854
+UniRef50_F8JL19	0.0396949864
+UniRef50_F8JL19|unclassified	0.0396949864
+UniRef50_UPI00031A8218: hypothetical protein	0.0396945700
+UniRef50_UPI00031A8218: hypothetical protein|unclassified	0.0396945700
+UniRef50_L8FPI8	0.0396925317
+UniRef50_L8FPI8|unclassified	0.0396925317
+UniRef50_S2WYG7	0.0396916222
+UniRef50_S2WYG7|unclassified	0.0396916222
+UniRef50_A0A052HNM0: Cyclic diguanylate phosphodiesterase (EAL) domain protein	0.0396911842
+UniRef50_A0A052HNM0: Cyclic diguanylate phosphodiesterase (EAL) domain protein|unclassified	0.0396911842
+UniRef50_X1N7X7: Marine sediment metagenome DNA, contig: S06H3_S13162 (Fragment)	0.0396911093
+UniRef50_X1N7X7: Marine sediment metagenome DNA, contig: S06H3_S13162 (Fragment)|unclassified	0.0396911093
+UniRef50_UPI00035D07EB: hypothetical protein	0.0396905834
+UniRef50_UPI00035D07EB: hypothetical protein|unclassified	0.0396905834
+UniRef50_L5MGL5: Ankyrin repeat domain-containing protein 24	0.0396904193
+UniRef50_L5MGL5: Ankyrin repeat domain-containing protein 24|unclassified	0.0396904193
+UniRef50_Q036S8: Glucose-1-phosphate adenylyltransferase	0.0396817182
+UniRef50_Q036S8: Glucose-1-phosphate adenylyltransferase|unclassified	0.0396817182
+UniRef50_UPI000478BE40: cell division protein FtsY	0.0396811180
+UniRef50_UPI000478BE40: cell division protein FtsY|unclassified	0.0396811180
+UniRef50_S2XGR1	0.0396809359
+UniRef50_S2XGR1|unclassified	0.0396809359
+UniRef50_A0LTH9: Anthranilate phosphoribosyltransferase	0.0396789115
+UniRef50_A0LTH9: Anthranilate phosphoribosyltransferase|unclassified	0.0396789115
+UniRef50_UPI00036E3AFC: hypothetical protein	0.0396781947
+UniRef50_UPI00036E3AFC: hypothetical protein|unclassified	0.0396781947
+UniRef50_UPI000413E7C8: hypothetical protein	0.0396700346
+UniRef50_UPI000413E7C8: hypothetical protein|unclassified	0.0396700346
+UniRef50_C6S6G3: Putative phage associated protein	0.0396680549
+UniRef50_C6S6G3: Putative phage associated protein|unclassified	0.0396680549
+UniRef50_P59459: Tryptophan biosynthesis protein TrpCF	0.0396665012
+UniRef50_P59459: Tryptophan biosynthesis protein TrpCF|unclassified	0.0396665012
+UniRef50_UPI0003C112FE: PREDICTED: aldehyde dehydrogenase, mitochondrial-like	0.0396657209
+UniRef50_UPI0003C112FE: PREDICTED: aldehyde dehydrogenase, mitochondrial-like|unclassified	0.0396657209
+UniRef50_UPI000471D5B3: hypothetical protein	0.0396655211
+UniRef50_UPI000471D5B3: hypothetical protein|unclassified	0.0396655211
+UniRef50_UPI0004119C01: hypothetical protein	0.0396651346
+UniRef50_UPI0004119C01: hypothetical protein|unclassified	0.0396651346
+UniRef50_UPI000471A1E2: hypothetical protein	0.0396622158
+UniRef50_UPI000471A1E2: hypothetical protein|unclassified	0.0396622158
+UniRef50_UPI00037ECE30: hypothetical protein	0.0396603539
+UniRef50_UPI00037ECE30: hypothetical protein|unclassified	0.0396603539
+UniRef50_W7Q6R7	0.0396563458
+UniRef50_W7Q6R7|unclassified	0.0396563458
+UniRef50_R2RY43: ABC transporter membrane protein	0.0396552693
+UniRef50_R2RY43: ABC transporter membrane protein|unclassified	0.0396552693
+UniRef50_UPI000345B67C: hypothetical protein	0.0396530809
+UniRef50_UPI000345B67C: hypothetical protein|unclassified	0.0396530809
+UniRef50_A0A014NIG3: Beta-lactamase	0.0396438245
+UniRef50_A0A014NIG3: Beta-lactamase|unclassified	0.0396438245
+UniRef50_Q28Q70	0.0396435959
+UniRef50_Q28Q70|unclassified	0.0396435959
+UniRef50_UPI00037BD5F4: hypothetical protein	0.0396434882
+UniRef50_UPI00037BD5F4: hypothetical protein|unclassified	0.0396434882
+UniRef50_UPI00037F2D50: hypothetical protein	0.0396378381
+UniRef50_UPI00037F2D50: hypothetical protein|unclassified	0.0396378381
+UniRef50_X6C456: Capsid protein	0.0396362311
+UniRef50_X6C456: Capsid protein|unclassified	0.0396362311
+UniRef50_U1ZFH8	0.0396359614
+UniRef50_U1ZFH8|unclassified	0.0396359614
+UniRef50_UPI00042B63BC: S-adenosyl-L-methionine-dependent methyltransferases superfamily protein, putative	0.0396336967
+UniRef50_UPI00042B63BC: S-adenosyl-L-methionine-dependent methyltransferases superfamily protein, putative|unclassified	0.0396336967
+UniRef50_UPI00037DFF24: hypothetical protein, partial	0.0396276756
+UniRef50_UPI00037DFF24: hypothetical protein, partial|unclassified	0.0396276756
+UniRef50_UPI00035F129B: hypothetical protein	0.0396272697
+UniRef50_UPI00035F129B: hypothetical protein|unclassified	0.0396272697
+UniRef50_UPI0003C7EBB2: aminodeoxychorismate synthase	0.0396237419
+UniRef50_UPI0003C7EBB2: aminodeoxychorismate synthase|unclassified	0.0396237419
+UniRef50_X7XYD9: PE family protein	0.0396228829
+UniRef50_X7XYD9: PE family protein|unclassified	0.0396228829
+UniRef50_Z5XF12: RNA-binding protein	0.0396165226
+UniRef50_Z5XF12: RNA-binding protein|unclassified	0.0396165226
+UniRef50_UPI000373A5D7: hypothetical protein	0.0396090624
+UniRef50_UPI000373A5D7: hypothetical protein|unclassified	0.0396090624
+UniRef50_UPI00047C0756: hypothetical protein	0.0396057519
+UniRef50_UPI00047C0756: hypothetical protein|unclassified	0.0396057519
+UniRef50_UPI000364725B: hypothetical protein, partial	0.0396017521
+UniRef50_UPI000364725B: hypothetical protein, partial|unclassified	0.0396017521
+UniRef50_UPI00045EB55D: hypothetical protein	0.0396010858
+UniRef50_UPI00045EB55D: hypothetical protein|unclassified	0.0396010858
+UniRef50_UPI000288CFBD: RNA polymerase subunit sigma-54	0.0395983702
+UniRef50_UPI000288CFBD: RNA polymerase subunit sigma-54|unclassified	0.0395983702
+UniRef50_UPI0003B350C4: GntR family transcriptional regulator	0.0395941161
+UniRef50_UPI0003B350C4: GntR family transcriptional regulator|unclassified	0.0395941161
+UniRef50_S8AV33	0.0395912482
+UniRef50_S8AV33|unclassified	0.0395912482
+UniRef50_D7FYR4	0.0395885129
+UniRef50_D7FYR4|unclassified	0.0395885129
+UniRef50_Q8U086: Carbamoyl-phosphate synthase small chain	0.0395829839
+UniRef50_Q8U086: Carbamoyl-phosphate synthase small chain|unclassified	0.0395829839
+UniRef50_G3VD10	0.0395810163
+UniRef50_G3VD10|unclassified	0.0395810163
+UniRef50_B2ABJ9: Podospora anserina S mat+ genomic DNA chromosome 1, supercontig 5	0.0395795549
+UniRef50_B2ABJ9: Podospora anserina S mat+ genomic DNA chromosome 1, supercontig 5|unclassified	0.0395795549
+UniRef50_F0Y1C1	0.0395781721
+UniRef50_F0Y1C1|unclassified	0.0395781721
+UniRef50_Q1AS60: Glutamate--tRNA ligase 2	0.0395779455
+UniRef50_Q1AS60: Glutamate--tRNA ligase 2|unclassified	0.0395779455
+UniRef50_P73443: Lysine--tRNA ligase	0.0395771367
+UniRef50_P73443: Lysine--tRNA ligase|unclassified	0.0395771367
+UniRef50_UPI00046D4752: hypothetical protein	0.0395748666
+UniRef50_UPI00046D4752: hypothetical protein|unclassified	0.0395748666
+UniRef50_UPI000362E07D: hypothetical protein	0.0395730093
+UniRef50_UPI000362E07D: hypothetical protein|unclassified	0.0395730093
+UniRef50_UPI0004647C65: MULTISPECIES: hypothetical protein	0.0395728903
+UniRef50_UPI0004647C65: MULTISPECIES: hypothetical protein|unclassified	0.0395728903
+UniRef50_F2US82	0.0395696557
+UniRef50_F2US82|unclassified	0.0395696557
+UniRef50_U6I036: GTP cyclohydrolase I	0.0395663961
+UniRef50_U6I036: GTP cyclohydrolase I|unclassified	0.0395663961
+UniRef50_UPI000349B827: hypothetical protein	0.0395635541
+UniRef50_UPI000349B827: hypothetical protein|unclassified	0.0395635541
+UniRef50_A0A024YU00	0.0395551520
+UniRef50_A0A024YU00|unclassified	0.0395551520
+UniRef50_UPI000360AD7B: hypothetical protein	0.0395538504
+UniRef50_UPI000360AD7B: hypothetical protein|unclassified	0.0395538504
+UniRef50_W8EZG7	0.0395535358
+UniRef50_W8EZG7|unclassified	0.0395535358
+UniRef50_V4ZDG6: WD domain, G-beta repeat-containing protein	0.0395499389
+UniRef50_V4ZDG6: WD domain, G-beta repeat-containing protein|unclassified	0.0395499389
+UniRef50_F8L0H5	0.0395495787
+UniRef50_F8L0H5|unclassified	0.0395495787
+UniRef50_B1MYD1: 3-phosphoshikimate 1-carboxyvinyltransferase	0.0395453820
+UniRef50_B1MYD1: 3-phosphoshikimate 1-carboxyvinyltransferase|unclassified	0.0395453820
+UniRef50_Q0APS4: Thioesterase superfamily protein	0.0395393556
+UniRef50_Q0APS4: Thioesterase superfamily protein|unclassified	0.0395393556
+UniRef50_Q0G828: Protein F40F8.11, isoform a	0.0395367353
+UniRef50_Q0G828: Protein F40F8.11, isoform a|unclassified	0.0395367353
+UniRef50_UPI00047064AF: MFS transporter	0.0395359000
+UniRef50_UPI00047064AF: MFS transporter|unclassified	0.0395359000
+UniRef50_Q8NR14: ATP-dependent 6-phosphofructokinase	0.0395336526
+UniRef50_Q8NR14: ATP-dependent 6-phosphofructokinase|unclassified	0.0395336526
+UniRef50_G9PG00	0.0395244012
+UniRef50_G9PG00|unclassified	0.0395244012
+UniRef50_UPI00028807E4: LysR family transcriptional regulator	0.0395233786
+UniRef50_UPI00028807E4: LysR family transcriptional regulator|unclassified	0.0395233786
+UniRef50_P49095: Glycine dehydrogenase (decarboxylating), mitochondrial	0.0395214833
+UniRef50_P49095: Glycine dehydrogenase (decarboxylating), mitochondrial|unclassified	0.0395214833
+UniRef50_UPI00046F4C7A: glycosyl transferase family 2	0.0395213164
+UniRef50_UPI00046F4C7A: glycosyl transferase family 2|unclassified	0.0395213164
+UniRef50_UPI00040F7B17: 2-hydroxyacid dehydrogenase	0.0395202149
+UniRef50_UPI00040F7B17: 2-hydroxyacid dehydrogenase|unclassified	0.0395202149
+UniRef50_UPI0003188BD8: cysteine synthase	0.0395197438
+UniRef50_UPI0003188BD8: cysteine synthase|unclassified	0.0395197438
+UniRef50_M1KV66: Mucin 17-like protein	0.0395160136
+UniRef50_M1KV66: Mucin 17-like protein|unclassified	0.0395160136
+UniRef50_X5KVT4	0.0395135811
+UniRef50_X5KVT4|unclassified	0.0395135811
+UniRef50_A3VVX3	0.0395102988
+UniRef50_A3VVX3|unclassified	0.0395102988
+UniRef50_L5MQQ0	0.0395089584
+UniRef50_L5MQQ0|unclassified	0.0395089584
+UniRef50_U4V2A0	0.0395057832
+UniRef50_U4V2A0|unclassified	0.0395057832
+UniRef50_UPI00046E6FDB: hypothetical protein, partial	0.0395052677
+UniRef50_UPI00046E6FDB: hypothetical protein, partial|unclassified	0.0395052677
+UniRef50_A3SBX3	0.0395039664
+UniRef50_A3SBX3|unclassified	0.0395039664
+UniRef50_UPI0003720C33: hypothetical protein	0.0395034753
+UniRef50_UPI0003720C33: hypothetical protein|unclassified	0.0395034753
+UniRef50_UPI0002C371B2: PREDICTED: probable mannose-1-phosphate guanylyltransferase 3-like, partial	0.0394977050
+UniRef50_UPI0002C371B2: PREDICTED: probable mannose-1-phosphate guanylyltransferase 3-like, partial|unclassified	0.0394977050
+UniRef50_A0A023Y807	0.0394945598
+UniRef50_A0A023Y807|unclassified	0.0394945598
+UniRef50_H0P0G5	0.0394903831
+UniRef50_H0P0G5|unclassified	0.0394903831
+UniRef50_UPI0003A27699: glutaminyl-tRNA synthetase	0.0394902666
+UniRef50_UPI0003A27699: glutaminyl-tRNA synthetase|unclassified	0.0394902666
+UniRef50_C2U720	0.0394839098
+UniRef50_C2U720|unclassified	0.0394839098
+UniRef50_UPI00046F4A3B: hypothetical protein	0.0394783093
+UniRef50_UPI00046F4A3B: hypothetical protein|unclassified	0.0394783093
+UniRef50_U7NZ46	0.0394777901
+UniRef50_U7NZ46|unclassified	0.0394777901
+UniRef50_UPI00037AC467: hypothetical protein	0.0394769216
+UniRef50_UPI00037AC467: hypothetical protein|unclassified	0.0394769216
+UniRef50_UPI00036B080F: hypothetical protein	0.0394740005
+UniRef50_UPI00036B080F: hypothetical protein|unclassified	0.0394740005
+UniRef50_UPI0003900F91: Octanoyl-[GcvH]:protein N-octanoyltransferase	0.0394735263
+UniRef50_UPI0003900F91: Octanoyl-[GcvH]:protein N-octanoyltransferase|unclassified	0.0394735263
+UniRef50_UPI0003726698: hypothetical protein	0.0394708467
+UniRef50_UPI0003726698: hypothetical protein|unclassified	0.0394708467
+UniRef50_UPI0003B62E4A: molybdenum cofactor biosynthesis protein MoeA	0.0394689782
+UniRef50_UPI0003B62E4A: molybdenum cofactor biosynthesis protein MoeA|unclassified	0.0394689782
+UniRef50_UPI0003B6B12C: acetoacetate metabolism regulatory protein AtoC	0.0394655503
+UniRef50_UPI0003B6B12C: acetoacetate metabolism regulatory protein AtoC|unclassified	0.0394655503
+UniRef50_UPI00046F6C21: hypothetical protein	0.0394649151
+UniRef50_UPI00046F6C21: hypothetical protein|unclassified	0.0394649151
+UniRef50_UPI0004711E6E: hypothetical protein	0.0394635322
+UniRef50_UPI0004711E6E: hypothetical protein|unclassified	0.0394635322
+UniRef50_F6CYZ2	0.0394562028
+UniRef50_F6CYZ2|unclassified	0.0394562028
+UniRef50_UPI000378D1C1: hypothetical protein	0.0394540947
+UniRef50_UPI000378D1C1: hypothetical protein|unclassified	0.0394540947
+UniRef50_I1QV06	0.0394534913
+UniRef50_I1QV06|unclassified	0.0394534913
+UniRef50_W3AF53	0.0394487727
+UniRef50_W3AF53|unclassified	0.0394487727
+UniRef50_UPI0003788016: hypothetical protein	0.0394461706
+UniRef50_UPI0003788016: hypothetical protein|unclassified	0.0394461706
+UniRef50_UPI00042B37B4: Ubiquinol-cytochrome C reductase iron-sulfur subunit	0.0394450198
+UniRef50_UPI00042B37B4: Ubiquinol-cytochrome C reductase iron-sulfur subunit|unclassified	0.0394450198
+UniRef50_UPI000469B015: transcription factor	0.0394437524
+UniRef50_UPI000469B015: transcription factor|unclassified	0.0394437524
+UniRef50_UPI0003632B89: hypothetical protein	0.0394432489
+UniRef50_UPI0003632B89: hypothetical protein|unclassified	0.0394432489
+UniRef50_R6U446	0.0394421699
+UniRef50_R6U446|unclassified	0.0394421699
+UniRef50_I4KRW6	0.0394340963
+UniRef50_I4KRW6|unclassified	0.0394340963
+UniRef50_Q60B78: Chaperone SurA	0.0394327076
+UniRef50_Q60B78: Chaperone SurA|unclassified	0.0394327076
+UniRef50_H0JHV9: Putative Tfp pilus assembly protein FimV	0.0394316088
+UniRef50_H0JHV9: Putative Tfp pilus assembly protein FimV|unclassified	0.0394316088
+UniRef50_UPI00047E50BD: hypothetical protein	0.0394314341
+UniRef50_UPI00047E50BD: hypothetical protein|unclassified	0.0394314341
+UniRef50_P44806: 3-deoxy-D-manno-octulosonic acid transferase	0.0394312229
+UniRef50_P44806: 3-deoxy-D-manno-octulosonic acid transferase|unclassified	0.0394312229
+UniRef50_UPI000472FAA1: hypothetical protein	0.0394206638
+UniRef50_UPI000472FAA1: hypothetical protein|unclassified	0.0394206638
+UniRef50_Q6SKC0	0.0394185694
+UniRef50_Q6SKC0|unclassified	0.0394185694
+UniRef50_W9UZF0: Corrinoid ABC transporter substrate-binding protein	0.0394151748
+UniRef50_W9UZF0: Corrinoid ABC transporter substrate-binding protein|unclassified	0.0394151748
+UniRef50_UPI0004004078: hypothetical protein	0.0394144397
+UniRef50_UPI0004004078: hypothetical protein|unclassified	0.0394144397
+UniRef50_O30085: Copper-exporting P-type ATPase B	0.0394094132
+UniRef50_O30085: Copper-exporting P-type ATPase B|unclassified	0.0394094132
+UniRef50_UPI00047E8C2E: hypothetical protein	0.0394090693
+UniRef50_UPI00047E8C2E: hypothetical protein|unclassified	0.0394090693
+UniRef50_R8BIF9	0.0394078904
+UniRef50_R8BIF9|unclassified	0.0394078904
+UniRef50_E8SC94	0.0394077281
+UniRef50_E8SC94|unclassified	0.0394077281
+UniRef50_UPI0003B43E42: ferredoxin	0.0394075690
+UniRef50_UPI0003B43E42: ferredoxin|unclassified	0.0394075690
+UniRef50_W5X5M0: Pyruvate kinase	0.0394069758
+UniRef50_W5X5M0: Pyruvate kinase|unclassified	0.0394069758
+UniRef50_UPI00047B1BFE: hypothetical protein	0.0394066774
+UniRef50_UPI00047B1BFE: hypothetical protein|unclassified	0.0394066774
+UniRef50_Q492E3: Probable malate:quinone oxidoreductase	0.0394044743
+UniRef50_Q492E3: Probable malate:quinone oxidoreductase|unclassified	0.0394044743
+UniRef50_C7GAL0: Repeat protein	0.0394039211
+UniRef50_C7GAL0: Repeat protein|unclassified	0.0394039211
+UniRef50_B9B753	0.0394037693
+UniRef50_B9B753|unclassified	0.0394037693
+UniRef50_H0DI31	0.0394034967
+UniRef50_H0DI31|unclassified	0.0394034967
+UniRef50_UPI0004653364: pyruvate carboxylase subunit A	0.0394030997
+UniRef50_UPI0004653364: pyruvate carboxylase subunit A|unclassified	0.0394030997
+UniRef50_UPI000476A8E6: MFS transporter	0.0394015840
+UniRef50_UPI000476A8E6: MFS transporter|unclassified	0.0394015840
+UniRef50_UPI0003B75149: molecular chaperone	0.0393904333
+UniRef50_UPI0003B75149: molecular chaperone|unclassified	0.0393904333
+UniRef50_UPI00046BF5D1: PREDICTED: ATP-dependent Clp protease ATP-binding subunit clpX-like, mitochondrial isoform X2	0.0393904078
+UniRef50_UPI00046BF5D1: PREDICTED: ATP-dependent Clp protease ATP-binding subunit clpX-like, mitochondrial isoform X2|unclassified	0.0393904078
+UniRef50_UPI000287D7A7: NADH-dependent butanol dehydrogenase A	0.0393872456
+UniRef50_UPI000287D7A7: NADH-dependent butanol dehydrogenase A|unclassified	0.0393872456
+UniRef50_UPI00035F0B32: hypothetical protein	0.0393793223
+UniRef50_UPI00035F0B32: hypothetical protein|unclassified	0.0393793223
+UniRef50_UPI0003769CC3: hypothetical protein	0.0393785570
+UniRef50_UPI0003769CC3: hypothetical protein|unclassified	0.0393785570
+UniRef50_UPI0002F7B9B3: hypothetical protein	0.0393780572
+UniRef50_UPI0002F7B9B3: hypothetical protein|unclassified	0.0393780572
+UniRef50_UPI00037D7D9D: hypothetical protein	0.0393747794
+UniRef50_UPI00037D7D9D: hypothetical protein|unclassified	0.0393747794
+UniRef50_Q73NM0: Chorismate synthase	0.0393723596
+UniRef50_Q73NM0: Chorismate synthase|unclassified	0.0393723596
+UniRef50_UPI000477562E: hypothetical protein	0.0393679196
+UniRef50_UPI000477562E: hypothetical protein|unclassified	0.0393679196
+UniRef50_UPI0003716E27: hypothetical protein	0.0393673392
+UniRef50_UPI0003716E27: hypothetical protein|unclassified	0.0393673392
+UniRef50_I0BFZ7: Ankyrin	0.0393641191
+UniRef50_I0BFZ7: Ankyrin|unclassified	0.0393641191
+UniRef50_A0A024HXE7	0.0393637687
+UniRef50_A0A024HXE7|unclassified	0.0393637687
+UniRef50_O54151: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 3	0.0393620703
+UniRef50_O54151: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 3|unclassified	0.0393620703
+UniRef50_E1HYS3: Electron transport protein HydN domain protein	0.0393500005
+UniRef50_E1HYS3: Electron transport protein HydN domain protein|unclassified	0.0393500005
+UniRef50_UPI0001E8990C: menaquinone-specific isochorismate synthase	0.0393459269
+UniRef50_UPI0001E8990C: menaquinone-specific isochorismate synthase|unclassified	0.0393459269
+UniRef50_E8SFY0	0.0393453093
+UniRef50_E8SFY0|unclassified	0.0393453093
+UniRef50_A0YE33: Lipoprotein, putative	0.0393423096
+UniRef50_A0YE33: Lipoprotein, putative|unclassified	0.0393423096
+UniRef50_S5E690: Phosphoglycerate mutase family protein	0.0393397666
+UniRef50_S5E690: Phosphoglycerate mutase family protein|unclassified	0.0393397666
+UniRef50_UPI0004638D6F: hypothetical protein	0.0393380769
+UniRef50_UPI0004638D6F: hypothetical protein|unclassified	0.0393380769
+UniRef50_UPI00028859AA: serine dehydratase	0.0393260252
+UniRef50_UPI00028859AA: serine dehydratase|unclassified	0.0393260252
+UniRef50_UPI00046F5CB6: hypothetical protein	0.0393251102
+UniRef50_UPI00046F5CB6: hypothetical protein|unclassified	0.0393251102
+UniRef50_P22102: Trifunctional purine biosynthetic protein adenosine-3	0.0393219427
+UniRef50_P22102: Trifunctional purine biosynthetic protein adenosine-3|unclassified	0.0393219427
+UniRef50_F9DTA4	0.0393217868
+UniRef50_F9DTA4|unclassified	0.0393217868
+UniRef50_R5UMY5: Phage tail tape measure protein TP901 family core region	0.0393211872
+UniRef50_R5UMY5: Phage tail tape measure protein TP901 family core region|unclassified	0.0393211872
+UniRef50_A4ESB3	0.0393195047
+UniRef50_A4ESB3|unclassified	0.0393195047
+UniRef50_V5XI06: Beta-lactamase	0.0393135185
+UniRef50_V5XI06: Beta-lactamase|unclassified	0.0393135185
+UniRef50_E3IYR2	0.0393084920
+UniRef50_E3IYR2|unclassified	0.0393084920
+UniRef50_UPI000466CF2C: hypothetical protein	0.0393067645
+UniRef50_UPI000466CF2C: hypothetical protein|unclassified	0.0393067645
+UniRef50_Q6F8I3: UPF0176 protein ACIAD2917	0.0393066757
+UniRef50_Q6F8I3: UPF0176 protein ACIAD2917|unclassified	0.0393066757
+UniRef50_UPI00041D3C43: chromosomal replication initiation protein	0.0393040278
+UniRef50_UPI00041D3C43: chromosomal replication initiation protein|unclassified	0.0393040278
+UniRef50_UPI0003D6EA3A: PREDICTED: phenazine biosynthesis-like protein domain containing 1 isoform X2	0.0393036418
+UniRef50_UPI0003D6EA3A: PREDICTED: phenazine biosynthesis-like protein domain containing 1 isoform X2|unclassified	0.0393036418
+UniRef50_Q3JCS7: tRNA pseudouridine synthase D	0.0392992706
+UniRef50_Q3JCS7: tRNA pseudouridine synthase D|unclassified	0.0392992706
+UniRef50_C4XT36: Histidine--tRNA ligase	0.0392987813
+UniRef50_C4XT36: Histidine--tRNA ligase|unclassified	0.0392987813
+UniRef50_UPI00021940CD: 3-phosphoshikimate 1-carboxyvinyltransferase	0.0392976054
+UniRef50_UPI00021940CD: 3-phosphoshikimate 1-carboxyvinyltransferase|unclassified	0.0392976054
+UniRef50_UPI000289152D: tonb-dependent receptor plug	0.0392921018
+UniRef50_UPI000289152D: tonb-dependent receptor plug|unclassified	0.0392921018
+UniRef50_D2ZX85	0.0392912480
+UniRef50_D2ZX85|unclassified	0.0392912480
+UniRef50_L9U970: Diguanylate cyclase, predicted	0.0392863625
+UniRef50_L9U970: Diguanylate cyclase, predicted|unclassified	0.0392863625
+UniRef50_UPI00045E8670: hypothetical protein	0.0392817822
+UniRef50_UPI00045E8670: hypothetical protein|unclassified	0.0392817822
+UniRef50_U6I6N8: Mechanosensory protein 2	0.0392800841
+UniRef50_U6I6N8: Mechanosensory protein 2|unclassified	0.0392800841
+UniRef50_UPI00046E86F5: cell division protein FtsY	0.0392765320
+UniRef50_UPI00046E86F5: cell division protein FtsY|unclassified	0.0392765320
+UniRef50_Q5FSM8: DNA polymerase IV	0.0392762826
+UniRef50_Q5FSM8: DNA polymerase IV|unclassified	0.0392762826
+UniRef50_UPI0004642A6F: hypothetical protein	0.0392703519
+UniRef50_UPI0004642A6F: hypothetical protein|unclassified	0.0392703519
+UniRef50_UPI0004780250: membrane protein	0.0392700229
+UniRef50_UPI0004780250: membrane protein|unclassified	0.0392700229
+UniRef50_UPI00021A5773: PREDICTED: cell division protein ftsW-like	0.0392694980
+UniRef50_UPI00021A5773: PREDICTED: cell division protein ftsW-like|unclassified	0.0392694980
+UniRef50_A0A024JE34: Similar to Saccharomyces cerevisiae YHL004W MRP4 Mitochondrial ribosomal protein of the small subunit	0.0392628572
+UniRef50_A0A024JE34: Similar to Saccharomyces cerevisiae YHL004W MRP4 Mitochondrial ribosomal protein of the small subunit|unclassified	0.0392628572
+UniRef50_D8HZV0	0.0392583157
+UniRef50_D8HZV0|unclassified	0.0392583157
+UniRef50_G3IRG5: Late control D family protein	0.0392538013
+UniRef50_G3IRG5: Late control D family protein|unclassified	0.0392538013
+UniRef50_A1AAK5: Prophage Qin DNA packaging protein NU1-like protein	0.0392531066
+UniRef50_A1AAK5: Prophage Qin DNA packaging protein NU1-like protein|unclassified	0.0392531066
+UniRef50_UPI0003463AD2: phosphohydrolase	0.0392523314
+UniRef50_UPI0003463AD2: phosphohydrolase|unclassified	0.0392523314
+UniRef50_Q5GUY1: Ferric pseudobactins receptor protein RF5	0.0392512421
+UniRef50_Q5GUY1: Ferric pseudobactins receptor protein RF5|unclassified	0.0392512421
+UniRef50_UPI000363BA0B: hypothetical protein	0.0392493564
+UniRef50_UPI000363BA0B: hypothetical protein|unclassified	0.0392493564
+UniRef50_UPI00035FB2CE: hypothetical protein	0.0392489647
+UniRef50_UPI00035FB2CE: hypothetical protein|unclassified	0.0392489647
+UniRef50_B2TRD7: Peptidase, M23/M37 family	0.0392464932
+UniRef50_B2TRD7: Peptidase, M23/M37 family|unclassified	0.0392464932
+UniRef50_UPI0003801A8A: hypothetical protein, partial	0.0392416054
+UniRef50_UPI0003801A8A: hypothetical protein, partial|unclassified	0.0392416054
+UniRef50_Q7N6K6: Complete genome; segment 6/17	0.0392372302
+UniRef50_Q7N6K6: Complete genome; segment 6/17|unclassified	0.0392372302
+UniRef50_UPI00038053A2: hypothetical protein	0.0392366936
+UniRef50_UPI00038053A2: hypothetical protein|unclassified	0.0392366936
+UniRef50_L7MAJ9	0.0392341494
+UniRef50_L7MAJ9|unclassified	0.0392341494
+UniRef50_Q98KJ4: tRNA dimethylallyltransferase	0.0392314517
+UniRef50_Q98KJ4: tRNA dimethylallyltransferase|unclassified	0.0392314517
+UniRef50_T1B7E9: FeS assembly protein SufB (Fragment)	0.0392300485
+UniRef50_T1B7E9: FeS assembly protein SufB (Fragment)|unclassified	0.0392300485
+UniRef50_V6M2P9	0.0392194797
+UniRef50_V6M2P9|unclassified	0.0392194797
+UniRef50_UPI000299D21B: capsular exopolysaccharide family protein	0.0392173847
+UniRef50_UPI000299D21B: capsular exopolysaccharide family protein|unclassified	0.0392173847
+UniRef50_UPI00046B0BD0: PREDICTED: protein arginine N-methyltransferase 3, partial	0.0392138637
+UniRef50_UPI00046B0BD0: PREDICTED: protein arginine N-methyltransferase 3, partial|unclassified	0.0392138637
+UniRef50_UPI000158478A: hypothetical protein BC1G_06634	0.0392132603
+UniRef50_UPI000158478A: hypothetical protein BC1G_06634|unclassified	0.0392132603
+UniRef50_W1S133: NAD(FAD)-utilizing dehydrogenase	0.0392132141
+UniRef50_W1S133: NAD(FAD)-utilizing dehydrogenase|unclassified	0.0392132141
+UniRef50_UPI0003610E12: hypothetical protein	0.0392103125
+UniRef50_UPI0003610E12: hypothetical protein|unclassified	0.0392103125
+UniRef50_E0TB71	0.0392056725
+UniRef50_E0TB71|unclassified	0.0392056725
+UniRef50_H9LCP8: Est3	0.0392053107
+UniRef50_H9LCP8: Est3|unclassified	0.0392053107
+UniRef50_UPI0004673E2C: MULTISPECIES: hypothetical protein	0.0391982666
+UniRef50_UPI0004673E2C: MULTISPECIES: hypothetical protein|unclassified	0.0391982666
+UniRef50_A5UXK3: NADH-quinone oxidoreductase subunit D 1	0.0391951999
+UniRef50_A5UXK3: NADH-quinone oxidoreductase subunit D 1|unclassified	0.0391951999
+UniRef50_B8GYM1: Exodeoxyribonuclease 7 large subunit	0.0391881898
+UniRef50_B8GYM1: Exodeoxyribonuclease 7 large subunit|unclassified	0.0391881898
+UniRef50_V6SSG1	0.0391846003
+UniRef50_V6SSG1|unclassified	0.0391846003
+UniRef50_UPI0003F09CB7: PREDICTED: 39S ribosomal protein L3, mitochondrial-like	0.0391838481
+UniRef50_UPI0003F09CB7: PREDICTED: 39S ribosomal protein L3, mitochondrial-like|unclassified	0.0391838481
+UniRef50_UPI0003C18AE4: PREDICTED: leucine-rich repeat extensin-like protein 5-like	0.0391799155
+UniRef50_UPI0003C18AE4: PREDICTED: leucine-rich repeat extensin-like protein 5-like|unclassified	0.0391799155
+UniRef50_UPI00042B40F5: Thiamine pyrophosphate dependent pyruvate decarboxylase family protein	0.0391796048
+UniRef50_UPI00042B40F5: Thiamine pyrophosphate dependent pyruvate decarboxylase family protein|unclassified	0.0391796048
+UniRef50_UPI0002555E20: tRNA delta(2)-isopentenylpyrophosphate transferase	0.0391758097
+UniRef50_UPI0002555E20: tRNA delta(2)-isopentenylpyrophosphate transferase|unclassified	0.0391758097
+UniRef50_R8SYH3: TQXA domain-containing protein	0.0391750003
+UniRef50_R8SYH3: TQXA domain-containing protein|unclassified	0.0391750003
+UniRef50_A0A016QRP5	0.0391651270
+UniRef50_A0A016QRP5|unclassified	0.0391651270
+UniRef50_UPI000344E65D: phosphomethylpyrimidine synthase	0.0391489345
+UniRef50_UPI000344E65D: phosphomethylpyrimidine synthase|unclassified	0.0391489345
+UniRef50_E4N550	0.0391481937
+UniRef50_E4N550|unclassified	0.0391481937
+UniRef50_F5SJ46	0.0391394141
+UniRef50_F5SJ46|unclassified	0.0391394141
+UniRef50_UPI00023789AC: nitrate/sulfonate/bicarbonate family ABC transporter periplasmic ligand binding protein	0.0391392843
+UniRef50_UPI00023789AC: nitrate/sulfonate/bicarbonate family ABC transporter periplasmic ligand binding protein|unclassified	0.0391392843
+UniRef50_A2VSU2: NAD/NADP transhydrogenase beta subunit	0.0391337412
+UniRef50_A2VSU2: NAD/NADP transhydrogenase beta subunit|unclassified	0.0391337412
+UniRef50_J8LCR1	0.0391297398
+UniRef50_J8LCR1|unclassified	0.0391297398
+UniRef50_UPI00039AB0D4: methionyl-tRNA synthetase	0.0391223654
+UniRef50_UPI00039AB0D4: methionyl-tRNA synthetase|unclassified	0.0391223654
+UniRef50_E8S6A2: Cobyrinic acid ac-diamide synthase	0.0391218126
+UniRef50_E8S6A2: Cobyrinic acid ac-diamide synthase|unclassified	0.0391218126
+UniRef50_UPI000420AC43: hypothetical protein	0.0391216563
+UniRef50_UPI000420AC43: hypothetical protein|unclassified	0.0391216563
+UniRef50_UPI000387218F: PREDICTED: LOW QUALITY PROTEIN: protein timeless homolog	0.0391143200
+UniRef50_UPI000387218F: PREDICTED: LOW QUALITY PROTEIN: protein timeless homolog|unclassified	0.0391143200
+UniRef50_J3Q5C6	0.0391140057
+UniRef50_J3Q5C6|unclassified	0.0391140057
+UniRef50_Q2EEX4: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta	0.0391130566
+UniRef50_Q2EEX4: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta|unclassified	0.0391130566
+UniRef50_Q1N4P0: Transcription factor jumonji, jmjC	0.0391092310
+UniRef50_Q1N4P0: Transcription factor jumonji, jmjC|unclassified	0.0391092310
+UniRef50_UPI0002003470: hypothetical protein	0.0391053525
+UniRef50_UPI0002003470: hypothetical protein|unclassified	0.0391053525
+UniRef50_UPI00035F7B62: hypothetical protein	0.0391049563
+UniRef50_UPI00035F7B62: hypothetical protein|unclassified	0.0391049563
+UniRef50_UPI00047D404E: transcriptional regulator	0.0391048883
+UniRef50_UPI00047D404E: transcriptional regulator|unclassified	0.0391048883
+UniRef50_UPI0003B32467: aldehyde dehydrogenase	0.0391026190
+UniRef50_UPI0003B32467: aldehyde dehydrogenase|unclassified	0.0391026190
+UniRef50_W0UZN5: HipA-like N-terminal domain protein	0.0390997975
+UniRef50_W0UZN5: HipA-like N-terminal domain protein|unclassified	0.0390997975
+UniRef50_J9I9S6: Nexus protein, putative	0.0390990888
+UniRef50_J9I9S6: Nexus protein, putative|unclassified	0.0390990888
+UniRef50_D3QCR4: Elastin binding protein EbpS	0.0390978058
+UniRef50_D3QCR4: Elastin binding protein EbpS|unclassified	0.0390978058
+UniRef50_V4Z1T8	0.0390975763
+UniRef50_V4Z1T8|unclassified	0.0390975763
+UniRef50_B0SHJ0: Homoserine O-acetyltransferase	0.0390960020
+UniRef50_B0SHJ0: Homoserine O-acetyltransferase|unclassified	0.0390960020
+UniRef50_UPI0003C1B110	0.0390892525
+UniRef50_UPI0003C1B110|unclassified	0.0390892525
+UniRef50_R9G9N1: Lipase/esterase	0.0390883406
+UniRef50_R9G9N1: Lipase/esterase|unclassified	0.0390883406
+UniRef50_C7Q9W5	0.0390813430
+UniRef50_C7Q9W5|unclassified	0.0390813430
+UniRef50_Q492E0: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase	0.0390801039
+UniRef50_Q492E0: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|unclassified	0.0390801039
+UniRef50_UPI000300E53A: hypothetical protein	0.0390730458
+UniRef50_UPI000300E53A: hypothetical protein|unclassified	0.0390730458
+UniRef50_UPI0003A13F4C: citrate transporter	0.0390730458
+UniRef50_UPI0003A13F4C: citrate transporter|unclassified	0.0390730458
+UniRef50_UPI0003C1593F: PREDICTED: glutamate--tRNA ligase, chloroplastic/mitochondrial-like	0.0390711482
+UniRef50_UPI0003C1593F: PREDICTED: glutamate--tRNA ligase, chloroplastic/mitochondrial-like|unclassified	0.0390711482
+UniRef50_UPI0003B52215: DNA-binding protein	0.0390634114
+UniRef50_UPI0003B52215: DNA-binding protein|unclassified	0.0390634114
+UniRef50_A3DIZ5: DNA-directed RNA polymerase subunit beta'	0.0390515764
+UniRef50_A3DIZ5: DNA-directed RNA polymerase subunit beta'|unclassified	0.0390515764
+UniRef50_R6IWZ2: Baseplate assembly protein J	0.0390499148
+UniRef50_R6IWZ2: Baseplate assembly protein J|unclassified	0.0390499148
+UniRef50_UPI0003B2F2AC: peptidyl-prolyl cis-trans isomerase	0.0390479633
+UniRef50_UPI0003B2F2AC: peptidyl-prolyl cis-trans isomerase|unclassified	0.0390479633
+UniRef50_B8D9J3: Glutamine--tRNA ligase	0.0390465590
+UniRef50_B8D9J3: Glutamine--tRNA ligase|unclassified	0.0390465590
+UniRef50_D7A599: Beta-lactamase domain-containing protein	0.0390393053
+UniRef50_D7A599: Beta-lactamase domain-containing protein|unclassified	0.0390393053
+UniRef50_W0CR61	0.0390387138
+UniRef50_W0CR61|unclassified	0.0390387138
+UniRef50_Q39218: Serine acetyltransferase 3, mitochondrial	0.0390273286
+UniRef50_Q39218: Serine acetyltransferase 3, mitochondrial|unclassified	0.0390273286
+UniRef50_F6G8F6	0.0390271774
+UniRef50_F6G8F6|unclassified	0.0390271774
+UniRef50_UPI00038F42BF: Sensor protein LytS	0.0390266910
+UniRef50_UPI00038F42BF: Sensor protein LytS|unclassified	0.0390266910
+UniRef50_U2TTG8: XdhC protein (Assists in molybdopterin insertion into xanthine dehydrogenase)	0.0390263569
+UniRef50_U2TTG8: XdhC protein (Assists in molybdopterin insertion into xanthine dehydrogenase)|unclassified	0.0390263569
+UniRef50_Q5UY71: Homoserine O-acetyltransferase	0.0390239148
+UniRef50_Q5UY71: Homoserine O-acetyltransferase|unclassified	0.0390239148
+UniRef50_UPI00036AE4EF: hypothetical protein	0.0390181629
+UniRef50_UPI00036AE4EF: hypothetical protein|unclassified	0.0390181629
+UniRef50_B6IS08	0.0390164058
+UniRef50_B6IS08|unclassified	0.0390164058
+UniRef50_Q7VFF5: Histidinol dehydrogenase	0.0390132871
+UniRef50_Q7VFF5: Histidinol dehydrogenase|unclassified	0.0390132871
+UniRef50_B3E8Z1: Glucose-1-phosphate adenylyltransferase	0.0390087809
+UniRef50_B3E8Z1: Glucose-1-phosphate adenylyltransferase|unclassified	0.0390087809
+UniRef50_UPI0004702354: hypothetical protein	0.0390080456
+UniRef50_UPI0004702354: hypothetical protein|unclassified	0.0390080456
+UniRef50_UPI00046A123C: hypothetical protein	0.0390079596
+UniRef50_UPI00046A123C: hypothetical protein|unclassified	0.0390079596
+UniRef50_Q98D43: Mlr4869 protein	0.0390076136
+UniRef50_Q98D43: Mlr4869 protein|unclassified	0.0390076136
+UniRef50_UPI00031FAB7A: hypothetical protein	0.0390072203
+UniRef50_UPI00031FAB7A: hypothetical protein|unclassified	0.0390072203
+UniRef50_B5YDE1: Glutamate 5-kinase	0.0390065855
+UniRef50_B5YDE1: Glutamate 5-kinase|unclassified	0.0390065855
+UniRef50_UPI000366F390: hypothetical protein	0.0390062796
+UniRef50_UPI000366F390: hypothetical protein|unclassified	0.0390062796
+UniRef50_UPI0003B3B37E: hypothetical protein	0.0390045336
+UniRef50_UPI0003B3B37E: hypothetical protein|unclassified	0.0390045336
+UniRef50_UPI000475BC46: hypothetical protein	0.0390005866
+UniRef50_UPI000475BC46: hypothetical protein|unclassified	0.0390005866
+UniRef50_M9RBV9: Putative lipoprotein	0.0389992033
+UniRef50_M9RBV9: Putative lipoprotein|unclassified	0.0389992033
+UniRef50_W7SSM3: Peptidase C14, caspase catalytic subunit p20 (Fragment)	0.0389960440
+UniRef50_W7SSM3: Peptidase C14, caspase catalytic subunit p20 (Fragment)|unclassified	0.0389960440
+UniRef50_UPI00037592C8: hypothetical protein	0.0389937838
+UniRef50_UPI00037592C8: hypothetical protein|unclassified	0.0389937838
+UniRef50_UPI00036CD492: hypothetical protein	0.0389891541
+UniRef50_UPI00036CD492: hypothetical protein|unclassified	0.0389891541
+UniRef50_UPI0003690B59: hypothetical protein	0.0389878513
+UniRef50_UPI0003690B59: hypothetical protein|unclassified	0.0389878513
+UniRef50_UPI0002A47C2E: PREDICTED: molybdenum cofactor biosynthesis protein 1-like	0.0389867612
+UniRef50_UPI0002A47C2E: PREDICTED: molybdenum cofactor biosynthesis protein 1-like|unclassified	0.0389867612
+UniRef50_UPI00045609F1: hypothetical protein PFL1_01799	0.0389793538
+UniRef50_UPI00045609F1: hypothetical protein PFL1_01799|unclassified	0.0389793538
+UniRef50_A9WDI1: Dihydroorotate dehydrogenase (quinone)	0.0389738613
+UniRef50_A9WDI1: Dihydroorotate dehydrogenase (quinone)|unclassified	0.0389738613
+UniRef50_UPI00045E228E	0.0389701034
+UniRef50_UPI00045E228E|unclassified	0.0389701034
+UniRef50_UPI0004790429: transketolase	0.0389684730
+UniRef50_UPI0004790429: transketolase|unclassified	0.0389684730
+UniRef50_UPI0002556487: site-specific tyrosine recombinase XerC	0.0389674766
+UniRef50_UPI0002556487: site-specific tyrosine recombinase XerC|unclassified	0.0389674766
+UniRef50_UPI000225C205: uroporphyrinogen decarboxylase	0.0389672354
+UniRef50_UPI000225C205: uroporphyrinogen decarboxylase|unclassified	0.0389672354
+UniRef50_UPI000371D853: sodium:proline symporter	0.0389603982
+UniRef50_UPI000371D853: sodium:proline symporter|unclassified	0.0389603982
+UniRef50_UPI00046EC62C: hypothetical protein	0.0389603541
+UniRef50_UPI00046EC62C: hypothetical protein|unclassified	0.0389603541
+UniRef50_K1WJB3: Pal1 cell morphology protein	0.0389516393
+UniRef50_K1WJB3: Pal1 cell morphology protein|unclassified	0.0389516393
+UniRef50_UPI0004039110: hypothetical protein	0.0389506083
+UniRef50_UPI0004039110: hypothetical protein|unclassified	0.0389506083
+UniRef50_B1XXN8: Major facilitator superfamily MFS_1	0.0389481815
+UniRef50_B1XXN8: Major facilitator superfamily MFS_1|unclassified	0.0389481815
+UniRef50_Q9WYP7	0.0389418291
+UniRef50_Q9WYP7|unclassified	0.0389418291
+UniRef50_G2MTW3: Tn7-like transposition protein C	0.0389400271
+UniRef50_G2MTW3: Tn7-like transposition protein C|unclassified	0.0389400271
+UniRef50_V8EAF6	0.0389391829
+UniRef50_V8EAF6|unclassified	0.0389391829
+UniRef50_A9URN1: Predicted protein	0.0389382776
+UniRef50_A9URN1: Predicted protein|unclassified	0.0389382776
+UniRef50_W8TIK1: Putative signaling protein	0.0389377619
+UniRef50_W8TIK1: Putative signaling protein|unclassified	0.0389377619
+UniRef50_UPI00047E2384: hypothetical protein	0.0389377443
+UniRef50_UPI00047E2384: hypothetical protein|unclassified	0.0389377443
+UniRef50_Q55484: Diaminopimelate decarboxylase	0.0389350950
+UniRef50_Q55484: Diaminopimelate decarboxylase|unclassified	0.0389350950
+UniRef50_UPI00036360ED: hypothetical protein	0.0389332457
+UniRef50_UPI00036360ED: hypothetical protein|unclassified	0.0389332457
+UniRef50_UPI000359AE8A: PREDICTED: methionine aminopeptidase 1D, mitochondrial-like	0.0389311089
+UniRef50_UPI000359AE8A: PREDICTED: methionine aminopeptidase 1D, mitochondrial-like|unclassified	0.0389311089
+UniRef50_UPI00037DB88D: hypothetical protein	0.0389306550
+UniRef50_UPI00037DB88D: hypothetical protein|unclassified	0.0389306550
+UniRef50_UPI0003761062: hypothetical protein	0.0389303069
+UniRef50_UPI0003761062: hypothetical protein|unclassified	0.0389303069
+UniRef50_UPI00047BB8A9: hypothetical protein	0.0389252631
+UniRef50_UPI00047BB8A9: hypothetical protein|unclassified	0.0389252631
+UniRef50_UPI0003B40124: peptidase ClpP	0.0389249674
+UniRef50_UPI0003B40124: peptidase ClpP|unclassified	0.0389249674
+UniRef50_Q3JV89	0.0389200172
+UniRef50_Q3JV89|unclassified	0.0389200172
+UniRef50_UPI000440B669: GTP-binding protein TypA	0.0389184178
+UniRef50_UPI000440B669: GTP-binding protein TypA|unclassified	0.0389184178
+UniRef50_UPI000441F780: PREDICTED: probable cytosolic oligopeptidase A-like	0.0389124941
+UniRef50_UPI000441F780: PREDICTED: probable cytosolic oligopeptidase A-like|unclassified	0.0389124941
+UniRef50_W7CSG9: LacI family transcriptional regulator	0.0389118456
+UniRef50_W7CSG9: LacI family transcriptional regulator|unclassified	0.0389118456
+UniRef50_G0A783	0.0389117290
+UniRef50_G0A783|unclassified	0.0389117290
+UniRef50_W2UGG3: FemAB-related protein, PEP-CTERM system-associated	0.0389117290
+UniRef50_W2UGG3: FemAB-related protein, PEP-CTERM system-associated|unclassified	0.0389117290
+UniRef50_B5YEP5: Glutamate--tRNA ligase	0.0389096463
+UniRef50_B5YEP5: Glutamate--tRNA ligase|unclassified	0.0389096463
+UniRef50_UPI00047A8B51: hypothetical protein	0.0389043819
+UniRef50_UPI00047A8B51: hypothetical protein|unclassified	0.0389043819
+UniRef50_A0ZA13: Putative restriction /modification enzyme	0.0389039837
+UniRef50_A0ZA13: Putative restriction /modification enzyme|unclassified	0.0389039837
+UniRef50_UPI0004712965: hypothetical protein	0.0389021224
+UniRef50_UPI0004712965: hypothetical protein|unclassified	0.0389021224
+UniRef50_UPI00036E022C: hypothetical protein	0.0389019911
+UniRef50_UPI00036E022C: hypothetical protein|unclassified	0.0389019911
+UniRef50_UPI00047046AB: Fis family transcriptional regulator	0.0388987216
+UniRef50_UPI00047046AB: Fis family transcriptional regulator|unclassified	0.0388987216
+UniRef50_Z5RUA8	0.0388842512
+UniRef50_Z5RUA8|unclassified	0.0388842512
+UniRef50_UPI00046AD4F9: hypothetical protein	0.0388825236
+UniRef50_UPI00046AD4F9: hypothetical protein|unclassified	0.0388825236
+UniRef50_UPI00035D5BF7: hypothetical protein	0.0388789102
+UniRef50_UPI00035D5BF7: hypothetical protein|unclassified	0.0388789102
+UniRef50_UPI00035F49A9: hypothetical protein	0.0388780908
+UniRef50_UPI00035F49A9: hypothetical protein|unclassified	0.0388780908
+UniRef50_A0A052J8X7: Oligopeptide ABC transporter, oligopeptide-binding protein	0.0388755639
+UniRef50_A0A052J8X7: Oligopeptide ABC transporter, oligopeptide-binding protein|unclassified	0.0388755639
+UniRef50_V4P371	0.0388703719
+UniRef50_V4P371|unclassified	0.0388703719
+UniRef50_UPI0003627456: hypothetical protein	0.0388695647
+UniRef50_UPI0003627456: hypothetical protein|unclassified	0.0388695647
+UniRef50_W5XB81: DNA-directed RNA polymerase subunit beta'	0.0388692019
+UniRef50_W5XB81: DNA-directed RNA polymerase subunit beta'|unclassified	0.0388692019
+UniRef50_UPI0003B3090B: hypothetical protein	0.0388638918
+UniRef50_UPI0003B3090B: hypothetical protein|unclassified	0.0388638918
+UniRef50_Q9ZSQ4: Phosphoglucomutase, cytoplasmic	0.0388618977
+UniRef50_Q9ZSQ4: Phosphoglucomutase, cytoplasmic|unclassified	0.0388618977
+UniRef50_Q87HJ2: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 2	0.0388607599
+UniRef50_Q87HJ2: 3-oxoacyl-[acyl-carrier-protein] synthase 3 protein 2|unclassified	0.0388607599
+UniRef50_P58342: Copper-transporting ATPase 2	0.0388607014
+UniRef50_P58342: Copper-transporting ATPase 2|unclassified	0.0388607014
+UniRef50_Q54SF3	0.0388568548
+UniRef50_Q54SF3|unclassified	0.0388568548
+UniRef50_W5XD42: Dihydroorotase	0.0388542926
+UniRef50_W5XD42: Dihydroorotase|unclassified	0.0388542926
+UniRef50_UPI00037D05C8: hypothetical protein	0.0388538170
+UniRef50_UPI00037D05C8: hypothetical protein|unclassified	0.0388538170
+UniRef50_O67137: DNA gyrase subunit B	0.0388533505
+UniRef50_O67137: DNA gyrase subunit B|unclassified	0.0388533505
+UniRef50_D5GLH6: Whole genome shotgun sequence assembly, scaffold_68, strain Mel28	0.0388523932
+UniRef50_D5GLH6: Whole genome shotgun sequence assembly, scaffold_68, strain Mel28|unclassified	0.0388523932
+UniRef50_UPI0003FB1D7B: hypothetical protein	0.0388515787
+UniRef50_UPI0003FB1D7B: hypothetical protein|unclassified	0.0388515787
+UniRef50_C2YJ67	0.0388501842
+UniRef50_C2YJ67|unclassified	0.0388501842
+UniRef50_Q48595	0.0388492410
+UniRef50_Q48595|unclassified	0.0388492410
+UniRef50_W8YHF9	0.0388448765
+UniRef50_W8YHF9|unclassified	0.0388448765
+UniRef50_P80175: NDMA-dependent alcohol dehydrogenase	0.0388446187
+UniRef50_P80175: NDMA-dependent alcohol dehydrogenase|unclassified	0.0388446187
+UniRef50_UPI00044135E3: FAS1 domain-containing protein	0.0388441784
+UniRef50_UPI00044135E3: FAS1 domain-containing protein|unclassified	0.0388441784
+UniRef50_UPI00035C402E: hypothetical protein, partial	0.0388426752
+UniRef50_UPI00035C402E: hypothetical protein, partial|unclassified	0.0388426752
+UniRef50_A2WDI0: Mn2+ and Fe2+ transporter	0.0388395933
+UniRef50_A2WDI0: Mn2+ and Fe2+ transporter|unclassified	0.0388395933
+UniRef50_W5B0N0	0.0388319251
+UniRef50_W5B0N0|unclassified	0.0388319251
+UniRef50_U5G3T5	0.0388307993
+UniRef50_U5G3T5|unclassified	0.0388307993
+UniRef50_Y5NUA4	0.0388307845
+UniRef50_Y5NUA4|unclassified	0.0388307845
+UniRef50_Q2CFL1	0.0388280628
+UniRef50_Q2CFL1|unclassified	0.0388280628
+UniRef50_UPI0004675B23: queuine tRNA-ribosyltransferase	0.0388279705
+UniRef50_UPI0004675B23: queuine tRNA-ribosyltransferase|unclassified	0.0388279705
+UniRef50_UPI000255B291: ribosomal large subunit pseudouridine synthase A	0.0388278903
+UniRef50_UPI000255B291: ribosomal large subunit pseudouridine synthase A|unclassified	0.0388278903
+UniRef50_M9RDS1: Putative peptidase M23 family-like protein	0.0388266883
+UniRef50_M9RDS1: Putative peptidase M23 family-like protein|unclassified	0.0388266883
+UniRef50_UPI00037C8D69: hypothetical protein	0.0388251048
+UniRef50_UPI00037C8D69: hypothetical protein|unclassified	0.0388251048
+UniRef50_UPI0003B63D25: folylpolyglutamate synthase	0.0388213592
+UniRef50_UPI0003B63D25: folylpolyglutamate synthase|unclassified	0.0388213592
+UniRef50_UPI0004449A36: hypothetical protein STEHIDRAFT_171115	0.0388188381
+UniRef50_UPI0004449A36: hypothetical protein STEHIDRAFT_171115|unclassified	0.0388188381
+UniRef50_UPI0002064BBF: PREDICTED: mitochondrial tRNA-specific 2-thiouridylase 1-like, partial	0.0388133562
+UniRef50_UPI0002064BBF: PREDICTED: mitochondrial tRNA-specific 2-thiouridylase 1-like, partial|unclassified	0.0388133562
+UniRef50_UPI00030BD015: hypothetical protein	0.0388130152
+UniRef50_UPI00030BD015: hypothetical protein|unclassified	0.0388130152
+UniRef50_W1MH71	0.0388107388
+UniRef50_W1MH71|unclassified	0.0388107388
+UniRef50_UPI0003FC3EB0: MULTISPECIES: LysR family transcriptional regulator	0.0388094040
+UniRef50_UPI0003FC3EB0: MULTISPECIES: LysR family transcriptional regulator|unclassified	0.0388094040
+UniRef50_D4TBI6: TraI protein	0.0388075716
+UniRef50_D4TBI6: TraI protein|unclassified	0.0388075716
+UniRef50_W7WTS9: Type IV secretion system protein virB4	0.0388065414
+UniRef50_W7WTS9: Type IV secretion system protein virB4|unclassified	0.0388065414
+UniRef50_P93805: Phosphoglucomutase, cytoplasmic 2	0.0388008208
+UniRef50_P93805: Phosphoglucomutase, cytoplasmic 2|unclassified	0.0388008208
+UniRef50_UPI000474835A: threonine dehydratase	0.0387952185
+UniRef50_UPI000474835A: threonine dehydratase|unclassified	0.0387952185
+UniRef50_K0C5G2	0.0387936862
+UniRef50_K0C5G2|unclassified	0.0387936862
+UniRef50_UPI00037C3143: hypothetical protein	0.0387871357
+UniRef50_UPI00037C3143: hypothetical protein|unclassified	0.0387871357
+UniRef50_UPI00036ACA02: hypothetical protein	0.0387848457
+UniRef50_UPI00036ACA02: hypothetical protein|unclassified	0.0387848457
+UniRef50_Q4UKQ6: Pyruvate dehydrogenase E1 component subunit alpha	0.0387828940
+UniRef50_Q4UKQ6: Pyruvate dehydrogenase E1 component subunit alpha|unclassified	0.0387828940
+UniRef50_S7QKG6	0.0387811750
+UniRef50_S7QKG6|unclassified	0.0387811750
+UniRef50_Q3JRC8	0.0387772784
+UniRef50_Q3JRC8|unclassified	0.0387772784
+UniRef50_L0SZK4: Inner membrane protein creD	0.0387746073
+UniRef50_L0SZK4: Inner membrane protein creD|unclassified	0.0387746073
+UniRef50_UPI00046EC2BD: hypothetical protein	0.0387729801
+UniRef50_UPI00046EC2BD: hypothetical protein|unclassified	0.0387729801
+UniRef50_Q2GE40: Proline--tRNA ligase	0.0387674000
+UniRef50_Q2GE40: Proline--tRNA ligase|unclassified	0.0387674000
+UniRef50_UPI00037E8BDB: hypothetical protein	0.0387653212
+UniRef50_UPI00037E8BDB: hypothetical protein|unclassified	0.0387653212
+UniRef50_UPI0002893673: valyl-tRNA synthetase	0.0387644225
+UniRef50_UPI0002893673: valyl-tRNA synthetase|unclassified	0.0387644225
+UniRef50_UPI00034D3A33: hypothetical protein	0.0387611264
+UniRef50_UPI00034D3A33: hypothetical protein|unclassified	0.0387611264
+UniRef50_W0IXG7: Dolichol-P-glucose synthetase	0.0387608224
+UniRef50_W0IXG7: Dolichol-P-glucose synthetase|unclassified	0.0387608224
+UniRef50_W0DH87: Nucleoside-diphosphate sugar epimerase	0.0387603759
+UniRef50_W0DH87: Nucleoside-diphosphate sugar epimerase|unclassified	0.0387603759
+UniRef50_UPI000372C358: hypothetical protein	0.0387597107
+UniRef50_UPI000372C358: hypothetical protein|unclassified	0.0387597107
+UniRef50_UPI00046F1E83: hypothetical protein, partial	0.0387587137
+UniRef50_UPI00046F1E83: hypothetical protein, partial|unclassified	0.0387587137
+UniRef50_B1ZEC2: Cobalt transporter, subunit CbtA	0.0387587114
+UniRef50_B1ZEC2: Cobalt transporter, subunit CbtA|unclassified	0.0387587114
+UniRef50_UPI00028A1721: 3-oxoacyl-ACP reductase	0.0387573982
+UniRef50_UPI00028A1721: 3-oxoacyl-ACP reductase|unclassified	0.0387573982
+UniRef50_UPI00020DA01C: AcrR family transcriptional regulator	0.0387434900
+UniRef50_UPI00020DA01C: AcrR family transcriptional regulator|unclassified	0.0387434900
+UniRef50_H7CSS0: Capsular polysaccharide biosynthsis protein	0.0387360776
+UniRef50_H7CSS0: Capsular polysaccharide biosynthsis protein|unclassified	0.0387360776
+UniRef50_Q9AJM9: BioH	0.0387359757
+UniRef50_Q9AJM9: BioH|unclassified	0.0387359757
+UniRef50_UPI0004642118: tRNA 2-thiouridylase	0.0387290591
+UniRef50_UPI0004642118: tRNA 2-thiouridylase|unclassified	0.0387290591
+UniRef50_J3QFT9	0.0387242095
+UniRef50_J3QFT9|unclassified	0.0387242095
+UniRef50_B7Z2X9: Gamma-enolase	0.0387217369
+UniRef50_B7Z2X9: Gamma-enolase|unclassified	0.0387217369
+UniRef50_UPI00047B98C4: hypothetical protein	0.0387184815
+UniRef50_UPI00047B98C4: hypothetical protein|unclassified	0.0387184815
+UniRef50_UPI0004622B41: GroES-like protein	0.0387129550
+UniRef50_UPI0004622B41: GroES-like protein|unclassified	0.0387129550
+UniRef50_UPI0004401CD8: PREDICTED: mitochondrial tRNA-specific 2-thiouridylase 1 isoform X3	0.0387104261
+UniRef50_UPI0004401CD8: PREDICTED: mitochondrial tRNA-specific 2-thiouridylase 1 isoform X3|unclassified	0.0387104261
+UniRef50_Q2GBU1	0.0387090694
+UniRef50_Q2GBU1|unclassified	0.0387090694
+UniRef50_Q4J965: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.0387026694
+UniRef50_Q4J965: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.0387026694
+UniRef50_A4X064: Diguanylate cyclase with GAF sensor	0.0387007492
+UniRef50_A4X064: Diguanylate cyclase with GAF sensor|unclassified	0.0387007492
+UniRef50_UPI0001FFE7BF: acyl-CoA dehydrogenase	0.0386997139
+UniRef50_UPI0001FFE7BF: acyl-CoA dehydrogenase|unclassified	0.0386997139
+UniRef50_UPI000372FCE9: hypothetical protein	0.0386916723
+UniRef50_UPI000372FCE9: hypothetical protein|unclassified	0.0386916723
+UniRef50_UPI0003670B43: hypothetical protein	0.0386869555
+UniRef50_UPI0003670B43: hypothetical protein|unclassified	0.0386869555
+UniRef50_O50008: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase 1	0.0386865012
+UniRef50_O50008: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase 1|unclassified	0.0386865012
+UniRef50_K4R943	0.0386848917
+UniRef50_K4R943|unclassified	0.0386848917
+UniRef50_Q8K9P3: Histidine--tRNA ligase	0.0386801169
+UniRef50_Q8K9P3: Histidine--tRNA ligase|unclassified	0.0386801169
+UniRef50_UPI00046F1EDB: recombination and DNA strand exchange inhibitor protein, partial	0.0386795150
+UniRef50_UPI00046F1EDB: recombination and DNA strand exchange inhibitor protein, partial|unclassified	0.0386795150
+UniRef50_UPI000328A324: PREDICTED: collagen alpha-1(I) chain-like	0.0386744171
+UniRef50_UPI000328A324: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.0386744171
+UniRef50_UPI000262771B: Na/Pi-cotransporter II-related protein, partial	0.0386741583
+UniRef50_UPI000262771B: Na/Pi-cotransporter II-related protein, partial|unclassified	0.0386741583
+UniRef50_A0A059BGB0	0.0386660691
+UniRef50_A0A059BGB0|unclassified	0.0386660691
+UniRef50_UPI00036196C2: hypothetical protein	0.0386632256
+UniRef50_UPI00036196C2: hypothetical protein|unclassified	0.0386632256
+UniRef50_UPI00028A0A9C: hypothetical protein, partial	0.0386625584
+UniRef50_UPI00028A0A9C: hypothetical protein, partial|unclassified	0.0386625584
+UniRef50_UPI0004704A43: hydroxyethylthiazole kinase	0.0386622626
+UniRef50_UPI0004704A43: hydroxyethylthiazole kinase|unclassified	0.0386622626
+UniRef50_UPI00037F01D4: hypothetical protein, partial	0.0386602361
+UniRef50_UPI00037F01D4: hypothetical protein, partial|unclassified	0.0386602361
+UniRef50_E3ZX76: BadF/BadG/BcrA/BcrD ATPase family protein	0.0386528219
+UniRef50_E3ZX76: BadF/BadG/BcrA/BcrD ATPase family protein|unclassified	0.0386528219
+UniRef50_UPI00035D98EB: hypothetical protein	0.0386464931
+UniRef50_UPI00035D98EB: hypothetical protein|unclassified	0.0386464931
+UniRef50_B9KPZ0: Potassium-transporting ATPase C chain	0.0386451932
+UniRef50_B9KPZ0: Potassium-transporting ATPase C chain|unclassified	0.0386451932
+UniRef50_F6CTG5: Cupin 4 family protein	0.0386417171
+UniRef50_F6CTG5: Cupin 4 family protein|unclassified	0.0386417171
+UniRef50_UPI00046FE521: hypothetical protein	0.0386408793
+UniRef50_UPI00046FE521: hypothetical protein|unclassified	0.0386408793
+UniRef50_UPI00034D668D: hypothetical protein	0.0386392181
+UniRef50_UPI00034D668D: hypothetical protein|unclassified	0.0386392181
+UniRef50_UPI0003100CF0: hypothetical protein	0.0386392068
+UniRef50_UPI0003100CF0: hypothetical protein|unclassified	0.0386392068
+UniRef50_UPI00030AD1E8: cobaltochelatase	0.0386308434
+UniRef50_UPI00030AD1E8: cobaltochelatase|unclassified	0.0386308434
+UniRef50_UPI00034AAC4D: hypothetical protein	0.0386299458
+UniRef50_UPI00034AAC4D: hypothetical protein|unclassified	0.0386299458
+UniRef50_UPI000471E147: shikimate transporter	0.0386258702
+UniRef50_UPI000471E147: shikimate transporter|unclassified	0.0386258702
+UniRef50_R9PSF6: COGs COG3146	0.0386216818
+UniRef50_R9PSF6: COGs COG3146|unclassified	0.0386216818
+UniRef50_E6TU47: RuvA domain protein	0.0386184242
+UniRef50_E6TU47: RuvA domain protein|unclassified	0.0386184242
+UniRef50_B1HWR0	0.0386148899
+UniRef50_B1HWR0|unclassified	0.0386148899
+UniRef50_R6LLV7	0.0386071971
+UniRef50_R6LLV7|unclassified	0.0386071971
+UniRef50_UPI00036B394F: hypothetical protein	0.0386069252
+UniRef50_UPI00036B394F: hypothetical protein|unclassified	0.0386069252
+UniRef50_P90795: Probable glycerol-3-phosphate dehydrogenase, mitochondrial	0.0386010348
+UniRef50_P90795: Probable glycerol-3-phosphate dehydrogenase, mitochondrial|unclassified	0.0386010348
+UniRef50_Q8FN65: Valine--tRNA ligase	0.0385934416
+UniRef50_Q8FN65: Valine--tRNA ligase|unclassified	0.0385934416
+UniRef50_UPI0000F2E857: PREDICTED: PGC-1 and ERR-induced regulator in muscle protein 1 isoform X1	0.0385884782
+UniRef50_UPI0000F2E857: PREDICTED: PGC-1 and ERR-induced regulator in muscle protein 1 isoform X1|unclassified	0.0385884782
+UniRef50_Q65I39: 3-phosphoshikimate 1-carboxyvinyltransferase	0.0385875031
+UniRef50_Q65I39: 3-phosphoshikimate 1-carboxyvinyltransferase|unclassified	0.0385875031
+UniRef50_Q14JF9: Protoheme IX farnesyltransferase	0.0385872494
+UniRef50_Q14JF9: Protoheme IX farnesyltransferase|unclassified	0.0385872494
+UniRef50_B3DX68: Serine--tRNA ligase	0.0385791722
+UniRef50_B3DX68: Serine--tRNA ligase|unclassified	0.0385791722
+UniRef50_UPI0003D386E7: 1,4-alpha-glucan branching enzyme	0.0385766558
+UniRef50_UPI0003D386E7: 1,4-alpha-glucan branching enzyme|unclassified	0.0385766558
+UniRef50_W0YUI6	0.0385710555
+UniRef50_W0YUI6|unclassified	0.0385710555
+UniRef50_UPI000455D079: hypothetical protein CONPUDRAFT_141444	0.0385703284
+UniRef50_UPI000455D079: hypothetical protein CONPUDRAFT_141444|unclassified	0.0385703284
+UniRef50_UPI00036F8B2D: hypothetical protein	0.0385692856
+UniRef50_UPI00036F8B2D: hypothetical protein|unclassified	0.0385692856
+UniRef50_UPI00036711CE: hypothetical protein	0.0385691538
+UniRef50_UPI00036711CE: hypothetical protein|unclassified	0.0385691538
+UniRef50_V6Q4N8: Permease	0.0385655854
+UniRef50_V6Q4N8: Permease|unclassified	0.0385655854
+UniRef50_UPI000475BF33: hypothetical protein	0.0385622042
+UniRef50_UPI000475BF33: hypothetical protein|unclassified	0.0385622042
+UniRef50_UPI00034519AC: hypothetical protein	0.0385560790
+UniRef50_UPI00034519AC: hypothetical protein|unclassified	0.0385560790
+UniRef50_Q7VRV7: NADH-quinone oxidoreductase subunit G	0.0385539366
+UniRef50_Q7VRV7: NADH-quinone oxidoreductase subunit G|unclassified	0.0385539366
+UniRef50_UPI0002E5A819: hypothetical protein	0.0385532411
+UniRef50_UPI0002E5A819: hypothetical protein|unclassified	0.0385532411
+UniRef50_W9B201	0.0385527185
+UniRef50_W9B201|unclassified	0.0385527185
+UniRef50_UPI0003695F39: hypothetical protein	0.0385515573
+UniRef50_UPI0003695F39: hypothetical protein|unclassified	0.0385515573
+UniRef50_G4CS94	0.0385465825
+UniRef50_G4CS94|unclassified	0.0385465825
+UniRef50_UPI0004709D10: hypothetical protein	0.0385465154
+UniRef50_UPI0004709D10: hypothetical protein|unclassified	0.0385465154
+UniRef50_Q1CUH1: Ketol-acid reductoisomerase	0.0385464042
+UniRef50_Q1CUH1: Ketol-acid reductoisomerase|unclassified	0.0385464042
+UniRef50_UPI00046F7D0D: hypothetical protein	0.0385445283
+UniRef50_UPI00046F7D0D: hypothetical protein|unclassified	0.0385445283
+UniRef50_Q2RZJ2: Proline--tRNA ligase	0.0385434103
+UniRef50_Q2RZJ2: Proline--tRNA ligase|unclassified	0.0385434103
+UniRef50_B9JS31	0.0385396420
+UniRef50_B9JS31|unclassified	0.0385396420
+UniRef50_G4CFP6: Iron ABC superfamily ATP binding cassette transporter, binding protein	0.0385376786
+UniRef50_G4CFP6: Iron ABC superfamily ATP binding cassette transporter, binding protein|unclassified	0.0385376786
+UniRef50_UPI000470D026: hypothetical protein	0.0385363329
+UniRef50_UPI000470D026: hypothetical protein|unclassified	0.0385363329
+UniRef50_Q9WYG8: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit	0.0385347661
+UniRef50_Q9WYG8: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit|unclassified	0.0385347661
+UniRef50_U6I1H8: RNA recognition motif, RNP 1	0.0385324378
+UniRef50_U6I1H8: RNA recognition motif, RNP 1|unclassified	0.0385324378
+UniRef50_A4X087	0.0385321482
+UniRef50_A4X087|unclassified	0.0385321482
+UniRef50_B5W259	0.0385280567
+UniRef50_B5W259|unclassified	0.0385280567
+UniRef50_UPI0002E512FA: hypothetical protein	0.0385251963
+UniRef50_UPI0002E512FA: hypothetical protein|unclassified	0.0385251963
+UniRef50_D9UDT7: Predicted protein (Fragment)	0.0385243391
+UniRef50_D9UDT7: Predicted protein (Fragment)|unclassified	0.0385243391
+UniRef50_UPI00047E46C9: electron transporter RnfC	0.0385237424
+UniRef50_UPI00047E46C9: electron transporter RnfC|unclassified	0.0385237424
+UniRef50_UPI00039BDB04: seryl-tRNA synthase	0.0385230013
+UniRef50_UPI00039BDB04: seryl-tRNA synthase|unclassified	0.0385230013
+UniRef50_UPI000394168B: membrane protein	0.0385211183
+UniRef50_UPI000394168B: membrane protein|unclassified	0.0385211183
+UniRef50_E1R3S0: Selenium-dependent molybdenum hydroxylase system protein, YqeB family	0.0385199521
+UniRef50_E1R3S0: Selenium-dependent molybdenum hydroxylase system protein, YqeB family|unclassified	0.0385199521
+UniRef50_R1F8H0	0.0385191622
+UniRef50_R1F8H0|unclassified	0.0385191622
+UniRef50_T0T3K2: Metallo-beta-lactamase domain protein	0.0385113976
+UniRef50_T0T3K2: Metallo-beta-lactamase domain protein|unclassified	0.0385113976
+UniRef50_W7WA05	0.0385092772
+UniRef50_W7WA05|unclassified	0.0385092772
+UniRef50_Q89AU1: NADH-quinone oxidoreductase subunit G	0.0385082841
+UniRef50_Q89AU1: NADH-quinone oxidoreductase subunit G|unclassified	0.0385082841
+UniRef50_UPI00030B4470: hypothetical protein	0.0385069435
+UniRef50_UPI00030B4470: hypothetical protein|unclassified	0.0385069435
+UniRef50_U6MGR5	0.0384941138
+UniRef50_U6MGR5|unclassified	0.0384941138
+UniRef50_UPI0002C2EB05	0.0384925334
+UniRef50_UPI0002C2EB05|unclassified	0.0384925334
+UniRef50_M2YV20: Bacteriocin biosynthesis docking scaffold, SagD family domain protein	0.0384903487
+UniRef50_M2YV20: Bacteriocin biosynthesis docking scaffold, SagD family domain protein|unclassified	0.0384903487
+UniRef50_S5YRL2	0.0384864379
+UniRef50_S5YRL2|unclassified	0.0384864379
+UniRef50_UPI000427E738: pyrimidine-nucleoside phosphorylase	0.0384818601
+UniRef50_UPI000427E738: pyrimidine-nucleoside phosphorylase|unclassified	0.0384818601
+UniRef50_W1J5V3	0.0384813663
+UniRef50_W1J5V3|unclassified	0.0384813663
+UniRef50_R6SQM9	0.0384813074
+UniRef50_R6SQM9|unclassified	0.0384813074
+UniRef50_UPI000362ABE1: hypothetical protein	0.0384785873
+UniRef50_UPI000362ABE1: hypothetical protein|unclassified	0.0384785873
+UniRef50_UPI00036E9366: hypothetical protein	0.0384780767
+UniRef50_UPI00036E9366: hypothetical protein|unclassified	0.0384780767
+UniRef50_R5Y868	0.0384772378
+UniRef50_R5Y868|unclassified	0.0384772378
+UniRef50_UPI000366D8E3: hypothetical protein	0.0384771792
+UniRef50_UPI000366D8E3: hypothetical protein|unclassified	0.0384771792
+UniRef50_UPI0003B59040: GTP pyrophosphokinase	0.0384744359
+UniRef50_UPI0003B59040: GTP pyrophosphokinase|unclassified	0.0384744359
+UniRef50_E3I0C8: SpoVR family protein	0.0384741633
+UniRef50_E3I0C8: SpoVR family protein|unclassified	0.0384741633
+UniRef50_G9ZJG7	0.0384739901
+UniRef50_G9ZJG7|unclassified	0.0384739901
+UniRef50_UPI0002FC887C: hypothetical protein	0.0384711652
+UniRef50_UPI0002FC887C: hypothetical protein|unclassified	0.0384711652
+UniRef50_UPI0003C1970F: PREDICTED: trifunctional purine biosynthetic protein adenosine-3-like	0.0384700177
+UniRef50_UPI0003C1970F: PREDICTED: trifunctional purine biosynthetic protein adenosine-3-like|unclassified	0.0384700177
+UniRef50_R9SH10	0.0384666634
+UniRef50_R9SH10|unclassified	0.0384666634
+UniRef50_H4WNH5: Putative RHS domain protein (Fragment)	0.0384663164
+UniRef50_H4WNH5: Putative RHS domain protein (Fragment)|unclassified	0.0384663164
+UniRef50_P68736: Bacillolysin	0.0384655845
+UniRef50_P68736: Bacillolysin|unclassified	0.0384655845
+UniRef50_R6J545	0.0384654443
+UniRef50_R6J545|unclassified	0.0384654443
+UniRef50_B9JGK2: tRNA dimethylallyltransferase	0.0384610145
+UniRef50_B9JGK2: tRNA dimethylallyltransferase|unclassified	0.0384610145
+UniRef50_UPI00037A0557: hypothetical protein	0.0384605572
+UniRef50_UPI00037A0557: hypothetical protein|unclassified	0.0384605572
+UniRef50_UPI0003763B3B: hypothetical protein	0.0384591816
+UniRef50_UPI0003763B3B: hypothetical protein|unclassified	0.0384591816
+UniRef50_UPI00047E8273: hypothetical protein	0.0384546799
+UniRef50_UPI00047E8273: hypothetical protein|unclassified	0.0384546799
+UniRef50_J2LAB8: Pirin-related protein	0.0384542258
+UniRef50_J2LAB8: Pirin-related protein|unclassified	0.0384542258
+UniRef50_Q98R27: Proline--tRNA ligase	0.0384533222
+UniRef50_Q98R27: Proline--tRNA ligase|unclassified	0.0384533222
+UniRef50_F2A412: Peptidase	0.0384481606
+UniRef50_F2A412: Peptidase|unclassified	0.0384481606
+UniRef50_UPI00041DAC7E: hypothetical protein	0.0384471263
+UniRef50_UPI00041DAC7E: hypothetical protein|unclassified	0.0384471263
+UniRef50_UPI000225A94A: D-alanyl-D-alanine carboxypeptidase	0.0384468101
+UniRef50_UPI000225A94A: D-alanyl-D-alanine carboxypeptidase|unclassified	0.0384468101
+UniRef50_UPI00046AB879: hypothetical protein	0.0384420783
+UniRef50_UPI00046AB879: hypothetical protein|unclassified	0.0384420783
+UniRef50_U6J6L2: Adenylate kinase 2 mitochondrial	0.0384415210
+UniRef50_U6J6L2: Adenylate kinase 2 mitochondrial|unclassified	0.0384415210
+UniRef50_R5A385: Late competence protein ComEC, DNA transport	0.0384370478
+UniRef50_R5A385: Late competence protein ComEC, DNA transport|unclassified	0.0384370478
+UniRef50_UPI00035E5E94: hypothetical protein	0.0384357009
+UniRef50_UPI00035E5E94: hypothetical protein|unclassified	0.0384357009
+UniRef50_UPI0002E5E41F: hypothetical protein	0.0384355735
+UniRef50_UPI0002E5E41F: hypothetical protein|unclassified	0.0384355735
+UniRef50_UPI0004012005: hypothetical protein	0.0384268004
+UniRef50_UPI0004012005: hypothetical protein|unclassified	0.0384268004
+UniRef50_UPI000380E85A: hypothetical protein	0.0384267317
+UniRef50_UPI000380E85A: hypothetical protein|unclassified	0.0384267317
+UniRef50_A0A024Q4P7	0.0384217226
+UniRef50_A0A024Q4P7|unclassified	0.0384217226
+UniRef50_C5ALL7: Type III effector protein HrpW	0.0384207103
+UniRef50_C5ALL7: Type III effector protein HrpW|unclassified	0.0384207103
+UniRef50_M3UQ90: Type IV pilus modification protein PilV, putative	0.0384171778
+UniRef50_M3UQ90: Type IV pilus modification protein PilV, putative|unclassified	0.0384171778
+UniRef50_N6UWS6	0.0384129329
+UniRef50_N6UWS6|unclassified	0.0384129329
+UniRef50_UPI00047A0E7D: UDP-N-acetylmuramoylalanyl-D-glutamate--2,6-diaminopimelate ligase	0.0384120311
+UniRef50_UPI00047A0E7D: UDP-N-acetylmuramoylalanyl-D-glutamate--2,6-diaminopimelate ligase|unclassified	0.0384120311
+UniRef50_UPI0003594619: PREDICTED: cystathionine gamma-lyase-like	0.0384096588
+UniRef50_UPI0003594619: PREDICTED: cystathionine gamma-lyase-like|unclassified	0.0384096588
+UniRef50_A7BLF8: Serine/threonine protein phosphatase	0.0384046780
+UniRef50_A7BLF8: Serine/threonine protein phosphatase|unclassified	0.0384046780
+UniRef50_UPI0004779514: ABC transporter ATP-binding protein	0.0384045353
+UniRef50_UPI0004779514: ABC transporter ATP-binding protein|unclassified	0.0384045353
+UniRef50_Q54HH2: Probable serine racemase	0.0383949841
+UniRef50_Q54HH2: Probable serine racemase|unclassified	0.0383949841
+UniRef50_UPI000377E736: hypothetical protein	0.0383938958
+UniRef50_UPI000377E736: hypothetical protein|unclassified	0.0383938958
+UniRef50_UPI00040AFE18: DNA primase	0.0383884098
+UniRef50_UPI00040AFE18: DNA primase|unclassified	0.0383884098
+UniRef50_Q2YA20: NADH-quinone oxidoreductase subunit H 2	0.0383861015
+UniRef50_Q2YA20: NADH-quinone oxidoreductase subunit H 2|unclassified	0.0383861015
+UniRef50_T0TYU7: UPF0272 protein HSISM1_15	0.0383840635
+UniRef50_T0TYU7: UPF0272 protein HSISM1_15|unclassified	0.0383840635
+UniRef50_F0P5J3: Elastin-binding protein EbpS	0.0383831468
+UniRef50_F0P5J3: Elastin-binding protein EbpS|unclassified	0.0383831468
+UniRef50_Q03U25: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase	0.0383801690
+UniRef50_Q03U25: 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase|unclassified	0.0383801690
+UniRef50_UPI000345D7AA: diaminopimelate decarboxylase	0.0383775046
+UniRef50_UPI000345D7AA: diaminopimelate decarboxylase|unclassified	0.0383775046
+UniRef50_UPI0003B422AC: MFS transporter	0.0383764809
+UniRef50_UPI0003B422AC: MFS transporter|unclassified	0.0383764809
+UniRef50_UPI0002555E88: potassium transporter Trk	0.0383737424
+UniRef50_UPI0002555E88: potassium transporter Trk|unclassified	0.0383737424
+UniRef50_UPI00040E4B39: NADH:ubiquinone oxidoreductase subunit L	0.0383728050
+UniRef50_UPI00040E4B39: NADH:ubiquinone oxidoreductase subunit L|unclassified	0.0383728050
+UniRef50_UPI0004652937: negative regulator of class I heat shock protein	0.0383627626
+UniRef50_UPI0004652937: negative regulator of class I heat shock protein|unclassified	0.0383627626
+UniRef50_C5C7N2	0.0383624855
+UniRef50_C5C7N2|unclassified	0.0383624855
+UniRef50_UPI00016C4B38: hypothetical protein	0.0383621319
+UniRef50_UPI00016C4B38: hypothetical protein|unclassified	0.0383621319
+UniRef50_W1J2U3: Complete genome segment 14/17	0.0383616070
+UniRef50_W1J2U3: Complete genome segment 14/17|unclassified	0.0383616070
+UniRef50_UPI0001D62167: PREDICTED: dynamin-1-like, partial	0.0383606206
+UniRef50_UPI0001D62167: PREDICTED: dynamin-1-like, partial|unclassified	0.0383606206
+UniRef50_G2RBD9	0.0383605951
+UniRef50_G2RBD9|unclassified	0.0383605951
+UniRef50_UPI00036BDA1B: hypothetical protein	0.0383584378
+UniRef50_UPI00036BDA1B: hypothetical protein|unclassified	0.0383584378
+UniRef50_Q4FP45: Glutamate 5-kinase	0.0383574458
+UniRef50_Q4FP45: Glutamate 5-kinase|unclassified	0.0383574458
+UniRef50_A0A023YYR2: Phage tail fiber protein	0.0383507107
+UniRef50_A0A023YYR2: Phage tail fiber protein|unclassified	0.0383507107
+UniRef50_P48992: Glucose-6-phosphate 1-dehydrogenase	0.0383502608
+UniRef50_P48992: Glucose-6-phosphate 1-dehydrogenase|unclassified	0.0383502608
+UniRef50_R8FAT8	0.0383361245
+UniRef50_R8FAT8|unclassified	0.0383361245
+UniRef50_UPI00046E069E	0.0383355281
+UniRef50_UPI00046E069E|unclassified	0.0383355281
+UniRef50_UPI00022CA5D6	0.0383330263
+UniRef50_UPI00022CA5D6|unclassified	0.0383330263
+UniRef50_Q9HAC7-2: Isoform 2 of Succinate--hydroxymethylglutarate CoA-transferase	0.0383294583
+UniRef50_Q9HAC7-2: Isoform 2 of Succinate--hydroxymethylglutarate CoA-transferase|unclassified	0.0383294583
+UniRef50_UPI0003B5B687: hypothetical protein	0.0383281079
+UniRef50_UPI0003B5B687: hypothetical protein|unclassified	0.0383281079
+UniRef50_UPI00046FFC89: N-acetylglutamate synthase	0.0383196520
+UniRef50_UPI00046FFC89: N-acetylglutamate synthase|unclassified	0.0383196520
+UniRef50_UPI0003A6958B: DNA polymerase IV	0.0383121642
+UniRef50_UPI0003A6958B: DNA polymerase IV|unclassified	0.0383121642
+UniRef50_UPI00046A3CDD: hypothetical protein	0.0383107405
+UniRef50_UPI00046A3CDD: hypothetical protein|unclassified	0.0383107405
+UniRef50_X1F9A7: Marine sediment metagenome DNA, contig: S03H2_L00786 (Fragment)	0.0383097845
+UniRef50_X1F9A7: Marine sediment metagenome DNA, contig: S03H2_L00786 (Fragment)|unclassified	0.0383097845
+UniRef50_UPI00037729BF: hypothetical protein	0.0383093843
+UniRef50_UPI00037729BF: hypothetical protein|unclassified	0.0383093843
+UniRef50_O14556: Glyceraldehyde-3-phosphate dehydrogenase, testis-specific	0.0383083291
+UniRef50_O14556: Glyceraldehyde-3-phosphate dehydrogenase, testis-specific|unclassified	0.0383083291
+UniRef50_UPI000471BAE5: hypothetical protein	0.0383068175
+UniRef50_UPI000471BAE5: hypothetical protein|unclassified	0.0383068175
+UniRef50_E0UU23: Lipopolysaccharide biosynthesis protein	0.0383054700
+UniRef50_E0UU23: Lipopolysaccharide biosynthesis protein|unclassified	0.0383054700
+UniRef50_W0Z2P4: ABC transporter permease	0.0383023700
+UniRef50_W0Z2P4: ABC transporter permease|unclassified	0.0383023700
+UniRef50_V6LG86	0.0382991928
+UniRef50_V6LG86|unclassified	0.0382991928
+UniRef50_K8A5L4	0.0382974978
+UniRef50_K8A5L4|unclassified	0.0382974978
+UniRef50_UPI0003B75FB1: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase	0.0382940202
+UniRef50_UPI0003B75FB1: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|unclassified	0.0382940202
+UniRef50_UPI0002FC93B3: hypothetical protein	0.0382922498
+UniRef50_UPI0002FC93B3: hypothetical protein|unclassified	0.0382922498
+UniRef50_UPI00035E762E: hypothetical protein	0.0382900410
+UniRef50_UPI00035E762E: hypothetical protein|unclassified	0.0382900410
+UniRef50_I6Y6R6: FAD-containing monooxygenase EthA	0.0382853858
+UniRef50_I6Y6R6: FAD-containing monooxygenase EthA|unclassified	0.0382853858
+UniRef50_K6WPK4: MazG family protein	0.0382852322
+UniRef50_K6WPK4: MazG family protein|unclassified	0.0382852322
+UniRef50_UPI000310B4FE: hypothetical protein	0.0382839464
+UniRef50_UPI000310B4FE: hypothetical protein|unclassified	0.0382839464
+UniRef50_A0A011RTW5: SpoVR family protein	0.0382835103
+UniRef50_A0A011RTW5: SpoVR family protein|unclassified	0.0382835103
+UniRef50_U6PNF3: ISE/inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_4752	0.0382817512
+UniRef50_U6PNF3: ISE/inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_4752|unclassified	0.0382817512
+UniRef50_D3HTK3	0.0382811927
+UniRef50_D3HTK3|unclassified	0.0382811927
+UniRef50_UPI00036FCB79: hypothetical protein	0.0382792059
+UniRef50_UPI00036FCB79: hypothetical protein|unclassified	0.0382792059
+UniRef50_UPI0003C11D1D: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial-like	0.0382790761
+UniRef50_UPI0003C11D1D: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial-like|unclassified	0.0382790761
+UniRef50_UPI00031605EC: hypothetical protein	0.0382734251
+UniRef50_UPI00031605EC: hypothetical protein|unclassified	0.0382734251
+UniRef50_UPI000479EB6C: phosphohydrolase	0.0382716859
+UniRef50_UPI000479EB6C: phosphohydrolase|unclassified	0.0382716859
+UniRef50_UPI00032AF593: PREDICTED: zinc finger protein 398-like	0.0382701272
+UniRef50_UPI00032AF593: PREDICTED: zinc finger protein 398-like|unclassified	0.0382701272
+UniRef50_O66936: 1,4-alpha-glucan branching enzyme GlgB	0.0382699202
+UniRef50_O66936: 1,4-alpha-glucan branching enzyme GlgB|unclassified	0.0382699202
+UniRef50_Q2S1J1: Adenylosuccinate synthetase	0.0382689508
+UniRef50_Q2S1J1: Adenylosuccinate synthetase|unclassified	0.0382689508
+UniRef50_UPI00047578CF: protein tyrosine kinase	0.0382673944
+UniRef50_UPI00047578CF: protein tyrosine kinase|unclassified	0.0382673944
+UniRef50_UPI0003777642: hypothetical protein	0.0382653889
+UniRef50_UPI0003777642: hypothetical protein|unclassified	0.0382653889
+UniRef50_UPI00042642EB: hypothetical protein	0.0382645121
+UniRef50_UPI00042642EB: hypothetical protein|unclassified	0.0382645121
+UniRef50_UPI000344A1E2: hypothetical protein	0.0382640442
+UniRef50_UPI000344A1E2: hypothetical protein|unclassified	0.0382640442
+UniRef50_UPI00035CEEBE: hypothetical protein	0.0382621287
+UniRef50_UPI00035CEEBE: hypothetical protein|unclassified	0.0382621287
+UniRef50_UPI000362D4DF: hypothetical protein	0.0382612425
+UniRef50_UPI000362D4DF: hypothetical protein|unclassified	0.0382612425
+UniRef50_R6A6R8: Flavocytochrome c	0.0382517831
+UniRef50_R6A6R8: Flavocytochrome c|unclassified	0.0382517831
+UniRef50_J8MRP3	0.0382512638
+UniRef50_J8MRP3|unclassified	0.0382512638
+UniRef50_Q55F83: Enolase B	0.0382489379
+UniRef50_Q55F83: Enolase B|unclassified	0.0382489379
+UniRef50_J9P7N6	0.0382477509
+UniRef50_J9P7N6|unclassified	0.0382477509
+UniRef50_UPI0003790E8C: hypothetical protein	0.0382455815
+UniRef50_UPI0003790E8C: hypothetical protein|unclassified	0.0382455815
+UniRef50_C2QP87	0.0382433756
+UniRef50_C2QP87|unclassified	0.0382433756
+UniRef50_UPI0003B50F71: protease	0.0382348465
+UniRef50_UPI0003B50F71: protease|unclassified	0.0382348465
+UniRef50_UPI00046731A8: ligand-gated channel	0.0382331344
+UniRef50_UPI00046731A8: ligand-gated channel|unclassified	0.0382331344
+UniRef50_D0ZGF4	0.0382276554
+UniRef50_D0ZGF4|unclassified	0.0382276554
+UniRef50_Q55038: Amidophosphoribosyltransferase	0.0382206071
+UniRef50_Q55038: Amidophosphoribosyltransferase|unclassified	0.0382206071
+UniRef50_UPI0003B46B7B: GntR family transcriptional regulator	0.0382126067
+UniRef50_UPI0003B46B7B: GntR family transcriptional regulator|unclassified	0.0382126067
+UniRef50_UPI00037EAECE: hypothetical protein	0.0382073664
+UniRef50_UPI00037EAECE: hypothetical protein|unclassified	0.0382073664
+UniRef50_V8AS99	0.0382013009
+UniRef50_V8AS99|unclassified	0.0382013009
+UniRef50_Q9Y697: Cysteine desulfurase, mitochondrial	0.0381967211
+UniRef50_Q9Y697: Cysteine desulfurase, mitochondrial|unclassified	0.0381967211
+UniRef50_Q21YC0: NADH-quinone oxidoreductase subunit H	0.0381946135
+UniRef50_Q21YC0: NADH-quinone oxidoreductase subunit H|unclassified	0.0381946135
+UniRef50_Q37165: NAD(P)H-quinone oxidoreductase subunit 1, chloroplastic	0.0381946135
+UniRef50_Q37165: NAD(P)H-quinone oxidoreductase subunit 1, chloroplastic|unclassified	0.0381946135
+UniRef50_UPI00036CFE88: hypothetical protein	0.0381933609
+UniRef50_UPI00036CFE88: hypothetical protein|unclassified	0.0381933609
+UniRef50_UPI00046F33E5: hypothetical protein, partial	0.0381919737
+UniRef50_UPI00046F33E5: hypothetical protein, partial|unclassified	0.0381919737
+UniRef50_I0KRX3: Gene D protein	0.0381804126
+UniRef50_I0KRX3: Gene D protein|unclassified	0.0381804126
+UniRef50_UPI00036E82C1: hypothetical protein	0.0381799518
+UniRef50_UPI00036E82C1: hypothetical protein|unclassified	0.0381799518
+UniRef50_UPI00037C28A3: hypothetical protein	0.0381792279
+UniRef50_UPI00037C28A3: hypothetical protein|unclassified	0.0381792279
+UniRef50_UPI0004082C16: hypothetical protein	0.0381781094
+UniRef50_UPI0004082C16: hypothetical protein|unclassified	0.0381781094
+UniRef50_UPI0004630051: hypothetical protein	0.0381775179
+UniRef50_UPI0004630051: hypothetical protein|unclassified	0.0381775179
+UniRef50_UPI000262AC91: ABC transporter ATP-binding protein	0.0381773821
+UniRef50_UPI000262AC91: ABC transporter ATP-binding protein|unclassified	0.0381773821
+UniRef50_R0EDA6: Protein NnrS	0.0381746027
+UniRef50_R0EDA6: Protein NnrS|unclassified	0.0381746027
+UniRef50_UPI00046FC295: histidine kinase	0.0381690139
+UniRef50_UPI00046FC295: histidine kinase|unclassified	0.0381690139
+UniRef50_UPI000462832E: histidine kinase	0.0381683808
+UniRef50_UPI000462832E: histidine kinase|unclassified	0.0381683808
+UniRef50_UPI000225AC87: reverse transcriptase	0.0381644890
+UniRef50_UPI000225AC87: reverse transcriptase|unclassified	0.0381644890
+UniRef50_Q0FMV8: Histone deacetylase superfamily protein	0.0381605548
+UniRef50_Q0FMV8: Histone deacetylase superfamily protein|unclassified	0.0381605548
+UniRef50_UPI00036198BA: hypothetical protein	0.0381601412
+UniRef50_UPI00036198BA: hypothetical protein|unclassified	0.0381601412
+UniRef50_UPI000467AD6A: hypothetical protein, partial	0.0381599080
+UniRef50_UPI000467AD6A: hypothetical protein, partial|unclassified	0.0381599080
+UniRef50_UPI00036A1A43: hypothetical protein	0.0381561192
+UniRef50_UPI00036A1A43: hypothetical protein|unclassified	0.0381561192
+UniRef50_UPI0004654577: hypothetical protein	0.0381553874
+UniRef50_UPI0004654577: hypothetical protein|unclassified	0.0381553874
+UniRef50_UPI0004422CFE: PREDICTED: short/branched chain specific acyl-CoA dehydrogenase, mitochondrial isoform X3	0.0381544058
+UniRef50_UPI0004422CFE: PREDICTED: short/branched chain specific acyl-CoA dehydrogenase, mitochondrial isoform X3|unclassified	0.0381544058
+UniRef50_UPI000365B9F5: hypothetical protein	0.0381483201
+UniRef50_UPI000365B9F5: hypothetical protein|unclassified	0.0381483201
+UniRef50_UPI00028A2E90: glycoside hydrolase family 3 domain-containing protein	0.0381440400
+UniRef50_UPI00028A2E90: glycoside hydrolase family 3 domain-containing protein|unclassified	0.0381440400
+UniRef50_UPI0003480B7C: hypothetical protein	0.0381431509
+UniRef50_UPI0003480B7C: hypothetical protein|unclassified	0.0381431509
+UniRef50_UPI0003B4B7CD: ATPase AAA	0.0381418614
+UniRef50_UPI0003B4B7CD: ATPase AAA|unclassified	0.0381418614
+UniRef50_UPI00046796FC: UDP-N-acetylglucosamine 4,6-dehydratase	0.0381416376
+UniRef50_UPI00046796FC: UDP-N-acetylglucosamine 4,6-dehydratase|unclassified	0.0381416376
+UniRef50_UPI000225AEE5: family 1 extracellular solute-binding protein	0.0381410441
+UniRef50_UPI000225AEE5: family 1 extracellular solute-binding protein|unclassified	0.0381410441
+UniRef50_W0TLB8	0.0381377966
+UniRef50_W0TLB8|unclassified	0.0381377966
+UniRef50_B0TBU3: Glutamate--tRNA ligase	0.0381274519
+UniRef50_B0TBU3: Glutamate--tRNA ligase|unclassified	0.0381274519
+UniRef50_Q98DE8: Glutathione synthetase	0.0381227193
+UniRef50_Q98DE8: Glutathione synthetase|unclassified	0.0381227193
+UniRef50_UPI0003740A8D: hypothetical protein	0.0381177829
+UniRef50_UPI0003740A8D: hypothetical protein|unclassified	0.0381177829
+UniRef50_P53582: Methionine aminopeptidase 1	0.0381161619
+UniRef50_P53582: Methionine aminopeptidase 1|unclassified	0.0381161619
+UniRef50_UPI0003B56C24: glucuronate isomerase	0.0381156152
+UniRef50_UPI0003B56C24: glucuronate isomerase|unclassified	0.0381156152
+UniRef50_UPI0002DD21FE: hypothetical protein	0.0381146065
+UniRef50_UPI0002DD21FE: hypothetical protein|unclassified	0.0381146065
+UniRef50_UPI00037114AE: MULTISPECIES: hypothetical protein	0.0381134168
+UniRef50_UPI00037114AE: MULTISPECIES: hypothetical protein|unclassified	0.0381134168
+UniRef50_UPI000470A37A: hypothetical protein	0.0381008373
+UniRef50_UPI000470A37A: hypothetical protein|unclassified	0.0381008373
+UniRef50_UPI00047183CB: MFS transporter	0.0380984970
+UniRef50_UPI00047183CB: MFS transporter|unclassified	0.0380984970
+UniRef50_Q8CUN2: N-acetyl-gamma-glutamyl-phosphate reductase	0.0380983550
+UniRef50_Q8CUN2: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.0380983550
+UniRef50_B2UPP6: Serine--tRNA ligase	0.0380977349
+UniRef50_B2UPP6: Serine--tRNA ligase|unclassified	0.0380977349
+UniRef50_UPI00047EF17A: hypothetical protein	0.0380958434
+UniRef50_UPI00047EF17A: hypothetical protein|unclassified	0.0380958434
+UniRef50_UPI0003741A3D: hypothetical protein	0.0380940380
+UniRef50_UPI0003741A3D: hypothetical protein|unclassified	0.0380940380
+UniRef50_UPI0004752F2B: tyrosine protein kinase	0.0380935971
+UniRef50_UPI0004752F2B: tyrosine protein kinase|unclassified	0.0380935971
+UniRef50_Q2P8F2: 8-amino-7-oxononanoate synthase	0.0380867858
+UniRef50_Q2P8F2: 8-amino-7-oxononanoate synthase|unclassified	0.0380867858
+UniRef50_UPI0002491EDB: exodeoxyribonuclease V subunit alpha	0.0380786737
+UniRef50_UPI0002491EDB: exodeoxyribonuclease V subunit alpha|unclassified	0.0380786737
+UniRef50_UPI0003A8A769: excinuclease ABC subunit C	0.0380762903
+UniRef50_UPI0003A8A769: excinuclease ABC subunit C|unclassified	0.0380762903
+UniRef50_UPI00040FD772: hypothetical protein	0.0380701756
+UniRef50_UPI00040FD772: hypothetical protein|unclassified	0.0380701756
+UniRef50_UPI00030403CE: hypothetical protein	0.0380684300
+UniRef50_UPI00030403CE: hypothetical protein|unclassified	0.0380684300
+UniRef50_K0RWJ4	0.0380680155
+UniRef50_K0RWJ4|unclassified	0.0380680155
+UniRef50_Q7URW6: DNA-directed RNA polymerase subunit beta	0.0380667701
+UniRef50_Q7URW6: DNA-directed RNA polymerase subunit beta|unclassified	0.0380667701
+UniRef50_D8UL36	0.0380654311
+UniRef50_D8UL36|unclassified	0.0380654311
+UniRef50_UPI00036EF4DB: hypothetical protein	0.0380651809
+UniRef50_UPI00036EF4DB: hypothetical protein|unclassified	0.0380651809
+UniRef50_R6TIW3	0.0380636888
+UniRef50_R6TIW3|unclassified	0.0380636888
+UniRef50_UPI0003659B7E: hypothetical protein	0.0380580305
+UniRef50_UPI0003659B7E: hypothetical protein|unclassified	0.0380580305
+UniRef50_U6I4N6: Glutamate dehydrogenase	0.0380530705
+UniRef50_U6I4N6: Glutamate dehydrogenase|unclassified	0.0380530705
+UniRef50_UPI00029A24D2: acyl-CoA dehydrogenase	0.0380501723
+UniRef50_UPI00029A24D2: acyl-CoA dehydrogenase|unclassified	0.0380501723
+UniRef50_UPI00036A27E6: hypothetical protein	0.0380496742
+UniRef50_UPI00036A27E6: hypothetical protein|unclassified	0.0380496742
+UniRef50_UPI00037DC91C: hypothetical protein	0.0380496015
+UniRef50_UPI00037DC91C: hypothetical protein|unclassified	0.0380496015
+UniRef50_UPI00030AC0F9: hypothetical protein	0.0380465811
+UniRef50_UPI00030AC0F9: hypothetical protein|unclassified	0.0380465811
+UniRef50_UPI0004729A45: hypothetical protein	0.0380402456
+UniRef50_UPI0004729A45: hypothetical protein|unclassified	0.0380402456
+UniRef50_UPI0003F9A50F: MFS transporter	0.0380382342
+UniRef50_UPI0003F9A50F: MFS transporter|unclassified	0.0380382342
+UniRef50_UPI0003F65C64: PTS beta-glucoside transporter subunit IIA	0.0380376958
+UniRef50_UPI0003F65C64: PTS beta-glucoside transporter subunit IIA|unclassified	0.0380376958
+UniRef50_UPI00036F6DBF: hypothetical protein	0.0380368942
+UniRef50_UPI00036F6DBF: hypothetical protein|unclassified	0.0380368942
+UniRef50_Q21DY3	0.0380359774
+UniRef50_Q21DY3|unclassified	0.0380359774
+UniRef50_UPI0003596786: PREDICTED: melanoma inhibitory activity protein 3	0.0380332456
+UniRef50_UPI0003596786: PREDICTED: melanoma inhibitory activity protein 3|unclassified	0.0380332456
+UniRef50_M4RAH9	0.0380321560
+UniRef50_M4RAH9|unclassified	0.0380321560
+UniRef50_UPI0002FEC3C1: hypothetical protein	0.0380318969
+UniRef50_UPI0002FEC3C1: hypothetical protein|unclassified	0.0380318969
+UniRef50_UPI00037F8A46: hypothetical protein	0.0380307423
+UniRef50_UPI00037F8A46: hypothetical protein|unclassified	0.0380307423
+UniRef50_G4LRU1	0.0380273429
+UniRef50_G4LRU1|unclassified	0.0380273429
+UniRef50_UPI0004790A8B: hypothetical protein	0.0380258406
+UniRef50_UPI0004790A8B: hypothetical protein|unclassified	0.0380258406
+UniRef50_O67589: Aspartate--tRNA(Asp/Asn) ligase	0.0380254125
+UniRef50_O67589: Aspartate--tRNA(Asp/Asn) ligase|unclassified	0.0380254125
+UniRef50_G7JI32	0.0380251345
+UniRef50_G7JI32|unclassified	0.0380251345
+UniRef50_E9AB62	0.0380182808
+UniRef50_E9AB62|unclassified	0.0380182808
+UniRef50_UPI000255C349: acetolactate synthase large subunit, biosynthetic type	0.0380177240
+UniRef50_UPI000255C349: acetolactate synthase large subunit, biosynthetic type|unclassified	0.0380177240
+UniRef50_UPI0004653479: hemolysin D	0.0380131486
+UniRef50_UPI0004653479: hemolysin D|unclassified	0.0380131486
+UniRef50_UPI00034B11E5: hypothetical protein	0.0380076402
+UniRef50_UPI00034B11E5: hypothetical protein|unclassified	0.0380076402
+UniRef50_UPI00046337D4: histidine ammonia-lyase, partial	0.0380037635
+UniRef50_UPI00046337D4: histidine ammonia-lyase, partial|unclassified	0.0380037635
+UniRef50_Q82KS8: Serine--tRNA ligase 2	0.0380028858
+UniRef50_Q82KS8: Serine--tRNA ligase 2|unclassified	0.0380028858
+UniRef50_A0A021WY91	0.0379968047
+UniRef50_A0A021WY91|unclassified	0.0379968047
+UniRef50_Q5PAE7: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase	0.0379959593
+UniRef50_Q5PAE7: 4-hydroxy-3-methylbut-2-enyl diphosphate reductase|unclassified	0.0379959593
+UniRef50_L1J8E6	0.0379953373
+UniRef50_L1J8E6|unclassified	0.0379953373
+UniRef50_P98054: Cytochrome c oxidase subunit 2	0.0379935873
+UniRef50_P98054: Cytochrome c oxidase subunit 2|unclassified	0.0379935873
+UniRef50_UPI0003B58F6D: biotin synthase	0.0379889643
+UniRef50_UPI0003B58F6D: biotin synthase|unclassified	0.0379889643
+UniRef50_UPI00039DAC18: hypothetical protein	0.0379853701
+UniRef50_UPI00039DAC18: hypothetical protein|unclassified	0.0379853701
+UniRef50_UPI000403E324: C4-dicarboxylate ABC transporter permease	0.0379823811
+UniRef50_UPI000403E324: C4-dicarboxylate ABC transporter permease|unclassified	0.0379823811
+UniRef50_Q86ZF1: Isocitrate lyase	0.0379805785
+UniRef50_Q86ZF1: Isocitrate lyase|unclassified	0.0379805785
+UniRef50_UPI000262572E: acetoin dehydrogenase E2 subunit dihydrolipoyllysine-residue acetyltransferase	0.0379784646
+UniRef50_UPI000262572E: acetoin dehydrogenase E2 subunit dihydrolipoyllysine-residue acetyltransferase|unclassified	0.0379784646
+UniRef50_P73270: Probable agmatinase 2	0.0379776627
+UniRef50_P73270: Probable agmatinase 2|unclassified	0.0379776627
+UniRef50_UPI000362A668: hypothetical protein	0.0379754484
+UniRef50_UPI000362A668: hypothetical protein|unclassified	0.0379754484
+UniRef50_A4A997	0.0379713635
+UniRef50_A4A997|unclassified	0.0379713635
+UniRef50_UPI00036C5762: MULTISPECIES: hypothetical protein	0.0379707718
+UniRef50_UPI00036C5762: MULTISPECIES: hypothetical protein|unclassified	0.0379707718
+UniRef50_UPI00037BF3C3: hypothetical protein	0.0379691081
+UniRef50_UPI00037BF3C3: hypothetical protein|unclassified	0.0379691081
+UniRef50_UPI000465BDD0: hypothetical protein	0.0379688842
+UniRef50_UPI000465BDD0: hypothetical protein|unclassified	0.0379688842
+UniRef50_I4BXH7	0.0379587597
+UniRef50_I4BXH7|unclassified	0.0379587597
+UniRef50_S3BWM7	0.0379584587
+UniRef50_S3BWM7|unclassified	0.0379584587
+UniRef50_UPI00037604B4: hypothetical protein	0.0379577639
+UniRef50_UPI00037604B4: hypothetical protein|unclassified	0.0379577639
+UniRef50_UPI0004793F1F: hypothetical protein	0.0379481958
+UniRef50_UPI0004793F1F: hypothetical protein|unclassified	0.0379481958
+UniRef50_B1VGA4: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase	0.0379465784
+UniRef50_B1VGA4: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|unclassified	0.0379465784
+UniRef50_UPI000376DA1C: bactoprenol glucosyl transferase	0.0379399243
+UniRef50_UPI000376DA1C: bactoprenol glucosyl transferase|unclassified	0.0379399243
+UniRef50_W5XA11: Branched-chain alpha-keto acid dehydrogenase E1 component	0.0379376248
+UniRef50_W5XA11: Branched-chain alpha-keto acid dehydrogenase E1 component|unclassified	0.0379376248
+UniRef50_UPI00047CB63F: Zn-dependent hydrolase	0.0379371261
+UniRef50_UPI00047CB63F: Zn-dependent hydrolase|unclassified	0.0379371261
+UniRef50_UPI000468F800: 3-methylcrotonyl-CoA carboxylase	0.0379358547
+UniRef50_UPI000468F800: 3-methylcrotonyl-CoA carboxylase|unclassified	0.0379358547
+UniRef50_Q8G4X3: Glutamyl-Q tRNA(Asp) synthetase	0.0379327238
+UniRef50_Q8G4X3: Glutamyl-Q tRNA(Asp) synthetase|unclassified	0.0379327238
+UniRef50_T2QWI5	0.0379323236
+UniRef50_T2QWI5|unclassified	0.0379323236
+UniRef50_UPI0003EC50DD: PREDICTED: glyceraldehyde-3-phosphate dehydrogenase, testis-specific	0.0379262011
+UniRef50_UPI0003EC50DD: PREDICTED: glyceraldehyde-3-phosphate dehydrogenase, testis-specific|unclassified	0.0379262011
+UniRef50_UPI00046638AB: DNA primase	0.0379229363
+UniRef50_UPI00046638AB: DNA primase|unclassified	0.0379229363
+UniRef50_Q899M2: Conserved membrane protein	0.0379159514
+UniRef50_Q899M2: Conserved membrane protein|unclassified	0.0379159514
+UniRef50_UPI0003636A8B: hypothetical protein	0.0379120882
+UniRef50_UPI0003636A8B: hypothetical protein|unclassified	0.0379120882
+UniRef50_Q2JJM9: Light-independent protochlorophyllide reductase subunit B	0.0379106308
+UniRef50_Q2JJM9: Light-independent protochlorophyllide reductase subunit B|unclassified	0.0379106308
+UniRef50_UPI00036E0F49: hypothetical protein	0.0379101089
+UniRef50_UPI00036E0F49: hypothetical protein|unclassified	0.0379101089
+UniRef50_UPI00035FF47A: hypothetical protein	0.0379085170
+UniRef50_UPI00035FF47A: hypothetical protein|unclassified	0.0379085170
+UniRef50_UPI00035FC125: hypothetical protein	0.0379057675
+UniRef50_UPI00035FC125: hypothetical protein|unclassified	0.0379057675
+UniRef50_V6Q6J5	0.0379055674
+UniRef50_V6Q6J5|unclassified	0.0379055674
+UniRef50_A7HN55: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0379051219
+UniRef50_A7HN55: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0379051219
+UniRef50_UPI000289CA1C: AMP-dependent synthetase and ligase	0.0379011660
+UniRef50_UPI000289CA1C: AMP-dependent synthetase and ligase|unclassified	0.0379011660
+UniRef50_UPI000379DC89: hypothetical protein	0.0379002317
+UniRef50_UPI000379DC89: hypothetical protein|unclassified	0.0379002317
+UniRef50_F9W2V8: Stalk-specific protein X	0.0378975513
+UniRef50_F9W2V8: Stalk-specific protein X|unclassified	0.0378975513
+UniRef50_C0QJ54: Dihydroorotase	0.0378884406
+UniRef50_C0QJ54: Dihydroorotase|unclassified	0.0378884406
+UniRef50_C8V9Y5: Methylisocitrate lyase, mitochondrial	0.0378820024
+UniRef50_C8V9Y5: Methylisocitrate lyase, mitochondrial|unclassified	0.0378820024
+UniRef50_UPI0004779E20: hypothetical protein	0.0378799096
+UniRef50_UPI0004779E20: hypothetical protein|unclassified	0.0378799096
+UniRef50_UPI0003B77761: ribonuclease HII	0.0378770704
+UniRef50_UPI0003B77761: ribonuclease HII|unclassified	0.0378770704
+UniRef50_Q2NAA1	0.0378731510
+UniRef50_Q2NAA1|unclassified	0.0378731510
+UniRef50_Q6LLN6	0.0378706471
+UniRef50_Q6LLN6|unclassified	0.0378706471
+UniRef50_UPI0004685424: hypothetical protein	0.0378701490
+UniRef50_UPI0004685424: hypothetical protein|unclassified	0.0378701490
+UniRef50_U4LK65	0.0378677975
+UniRef50_U4LK65|unclassified	0.0378677975
+UniRef50_U2J3X4	0.0378667074
+UniRef50_U2J3X4|unclassified	0.0378667074
+UniRef50_V4H7V2	0.0378651003
+UniRef50_V4H7V2|unclassified	0.0378651003
+UniRef50_UPI0003B6AEBD: ATPase AAA	0.0378639113
+UniRef50_UPI0003B6AEBD: ATPase AAA|unclassified	0.0378639113
+UniRef50_UPI0003600A0B: hypothetical protein	0.0378623912
+UniRef50_UPI0003600A0B: hypothetical protein|unclassified	0.0378623912
+UniRef50_A0A024HY79	0.0378618825
+UniRef50_A0A024HY79|unclassified	0.0378618825
+UniRef50_W5X9U5: Bifunctional protein GlmU	0.0378602189
+UniRef50_W5X9U5: Bifunctional protein GlmU|unclassified	0.0378602189
+UniRef50_W5XDF7: UvrABC system protein C	0.0378562981
+UniRef50_W5XDF7: UvrABC system protein C|unclassified	0.0378562981
+UniRef50_UPI00016C54E3: chromosomal replication initiator protein DnaA	0.0378562233
+UniRef50_UPI00016C54E3: chromosomal replication initiator protein DnaA|unclassified	0.0378562233
+UniRef50_D8TYM2	0.0378555209
+UniRef50_D8TYM2|unclassified	0.0378555209
+UniRef50_UPI00036F7E27: hypothetical protein	0.0378554285
+UniRef50_UPI00036F7E27: hypothetical protein|unclassified	0.0378554285
+UniRef50_A0A011NJW6	0.0378502850
+UniRef50_A0A011NJW6|unclassified	0.0378502850
+UniRef50_UPI000380E183: hypothetical protein	0.0378469048
+UniRef50_UPI000380E183: hypothetical protein|unclassified	0.0378469048
+UniRef50_UPI0003750B91: hypothetical protein	0.0378464558
+UniRef50_UPI0003750B91: hypothetical protein|unclassified	0.0378464558
+UniRef50_UPI0003B4CB7A: aldehyde dehydrogenase	0.0378458675
+UniRef50_UPI0003B4CB7A: aldehyde dehydrogenase|unclassified	0.0378458675
+UniRef50_Q0ARN4	0.0378440273
+UniRef50_Q0ARN4|unclassified	0.0378440273
+UniRef50_A3TXN0: Metallo-beta-lactamase family protein	0.0378412429
+UniRef50_A3TXN0: Metallo-beta-lactamase family protein|unclassified	0.0378412429
+UniRef50_UPI000328FBBA: PREDICTED: collagen alpha-1(I) chain-like	0.0378393687
+UniRef50_UPI000328FBBA: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.0378393687
+UniRef50_Q9VUY9: Phosphoglucomutase	0.0378369399
+UniRef50_Q9VUY9: Phosphoglucomutase|unclassified	0.0378369399
+UniRef50_D5MHR8: DNA repair protein radC homolog	0.0378349173
+UniRef50_D5MHR8: DNA repair protein radC homolog|unclassified	0.0378349173
+UniRef50_B8DLS7	0.0378348133
+UniRef50_B8DLS7|unclassified	0.0378348133
+UniRef50_UPI00047D9998: hypothetical protein	0.0378332479
+UniRef50_UPI00047D9998: hypothetical protein|unclassified	0.0378332479
+UniRef50_UPI000476E0F1: hypothetical protein	0.0378299887
+UniRef50_UPI000476E0F1: hypothetical protein|unclassified	0.0378299887
+UniRef50_J8EVN9	0.0378243850
+UniRef50_J8EVN9|unclassified	0.0378243850
+UniRef50_E6PZ95	0.0378238656
+UniRef50_E6PZ95|unclassified	0.0378238656
+UniRef50_UPI00035A2B81: PREDICTED: choline dehydrogenase, mitochondrial-like	0.0378181018
+UniRef50_UPI00035A2B81: PREDICTED: choline dehydrogenase, mitochondrial-like|unclassified	0.0378181018
+UniRef50_UPI0004418637: hypothetical protein PUNSTDRAFT_120887	0.0378162972
+UniRef50_UPI0004418637: hypothetical protein PUNSTDRAFT_120887|unclassified	0.0378162972
+UniRef50_UPI0003B499ED: NADH-dependent flavin oxidoreductase	0.0378099280
+UniRef50_UPI0003B499ED: NADH-dependent flavin oxidoreductase|unclassified	0.0378099280
+UniRef50_UPI00036A1EC1: hypothetical protein	0.0378092738
+UniRef50_UPI00036A1EC1: hypothetical protein|unclassified	0.0378092738
+UniRef50_Q12SM7: Argininosuccinate synthase	0.0378089443
+UniRef50_Q12SM7: Argininosuccinate synthase|unclassified	0.0378089443
+UniRef50_UPI00047A02F0: hypothetical protein, partial	0.0377978249
+UniRef50_UPI00047A02F0: hypothetical protein, partial|unclassified	0.0377978249
+UniRef50_Q1IRT8: Histidine ammonia-lyase	0.0377973319
+UniRef50_Q1IRT8: Histidine ammonia-lyase|unclassified	0.0377973319
+UniRef50_UPI00030AD4F2: hypothetical protein	0.0377968209
+UniRef50_UPI00030AD4F2: hypothetical protein|unclassified	0.0377968209
+UniRef50_UPI0003814692: hypothetical protein	0.0377960325
+UniRef50_UPI0003814692: hypothetical protein|unclassified	0.0377960325
+UniRef50_L2FGS4: Cvnh domain-containing protein	0.0377955302
+UniRef50_L2FGS4: Cvnh domain-containing protein|unclassified	0.0377955302
+UniRef50_UPI0003B3C78A: acyl-CoA synthetase	0.0377947627
+UniRef50_UPI0003B3C78A: acyl-CoA synthetase|unclassified	0.0377947627
+UniRef50_UPI0003B77764: ABC transporter	0.0377849127
+UniRef50_UPI0003B77764: ABC transporter|unclassified	0.0377849127
+UniRef50_C1MM47: KH domain-containing protein	0.0377836310
+UniRef50_C1MM47: KH domain-containing protein|unclassified	0.0377836310
+UniRef50_UPI00037720B7: hypothetical protein	0.0377802079
+UniRef50_UPI00037720B7: hypothetical protein|unclassified	0.0377802079
+UniRef50_UPI00047AEF8E: phosphohydrolase	0.0377746413
+UniRef50_UPI00047AEF8E: phosphohydrolase|unclassified	0.0377746413
+UniRef50_UPI00047E048A: ABC transporter permease	0.0377722059
+UniRef50_UPI00047E048A: ABC transporter permease|unclassified	0.0377722059
+UniRef50_UPI0000E0E9CE: putative cell division protein ZipA	0.0377684382
+UniRef50_UPI0000E0E9CE: putative cell division protein ZipA|unclassified	0.0377684382
+UniRef50_UPI0003B5CA4C: hypothetical protein	0.0377671809
+UniRef50_UPI0003B5CA4C: hypothetical protein|unclassified	0.0377671809
+UniRef50_D4M9N1: Phage-related baseplate assembly protein	0.0377610830
+UniRef50_D4M9N1: Phage-related baseplate assembly protein|unclassified	0.0377610830
+UniRef50_U3HHY6	0.0377549443
+UniRef50_U3HHY6|unclassified	0.0377549443
+UniRef50_S9SY54: Transcriptional regulator	0.0377545084
+UniRef50_S9SY54: Transcriptional regulator|unclassified	0.0377545084
+UniRef50_K7GAW9	0.0377528876
+UniRef50_K7GAW9|unclassified	0.0377528876
+UniRef50_G7UQ41: Terminase	0.0377524669
+UniRef50_G7UQ41: Terminase|unclassified	0.0377524669
+UniRef50_J3BAZ3	0.0377515898
+UniRef50_J3BAZ3|unclassified	0.0377515898
+UniRef50_O34507: Serine/threonine-protein kinase PrkC	0.0377457307
+UniRef50_O34507: Serine/threonine-protein kinase PrkC|unclassified	0.0377457307
+UniRef50_UPI00034B6A8B: hypothetical protein	0.0377355712
+UniRef50_UPI00034B6A8B: hypothetical protein|unclassified	0.0377355712
+UniRef50_M2U2M4	0.0377317510
+UniRef50_M2U2M4|unclassified	0.0377317510
+UniRef50_B1LUQ9	0.0377316912
+UniRef50_B1LUQ9|unclassified	0.0377316912
+UniRef50_UPI000478BFCF: N-acetylmuramoyl-L-alanine amidase	0.0377303740
+UniRef50_UPI000478BFCF: N-acetylmuramoyl-L-alanine amidase|unclassified	0.0377303740
+UniRef50_UPI000375EC1F: hypothetical protein, partial	0.0377255297
+UniRef50_UPI000375EC1F: hypothetical protein, partial|unclassified	0.0377255297
+UniRef50_UPI00046A3857: hypothetical protein	0.0377223772
+UniRef50_UPI00046A3857: hypothetical protein|unclassified	0.0377223772
+UniRef50_UPI0004657E6A: hypothetical protein	0.0377179645
+UniRef50_UPI0004657E6A: hypothetical protein|unclassified	0.0377179645
+UniRef50_D9W0X8: Predicted protein	0.0377175592
+UniRef50_D9W0X8: Predicted protein|unclassified	0.0377175592
+UniRef50_D3ECZ7: Cytochrome c oxidase assembly factor CtaG	0.0377162193
+UniRef50_D3ECZ7: Cytochrome c oxidase assembly factor CtaG|unclassified	0.0377162193
+UniRef50_X1Y977	0.0377113357
+UniRef50_X1Y977|unclassified	0.0377113357
+UniRef50_UPI00046A056D: hypothetical protein	0.0377029687
+UniRef50_UPI00046A056D: hypothetical protein|unclassified	0.0377029687
+UniRef50_R5B4R1: Threonine synthase	0.0377003022
+UniRef50_R5B4R1: Threonine synthase|unclassified	0.0377003022
+UniRef50_UPI00036A7A02: hypothetical protein	0.0377001501
+UniRef50_UPI00036A7A02: hypothetical protein|unclassified	0.0377001501
+UniRef50_UPI00036C444A: hypothetical protein	0.0376996922
+UniRef50_UPI00036C444A: hypothetical protein|unclassified	0.0376996922
+UniRef50_UPI000410C62B: phosphate:AMP phosphotransferase	0.0376967543
+UniRef50_UPI000410C62B: phosphate:AMP phosphotransferase|unclassified	0.0376967543
+UniRef50_W6IE22: CreA protein	0.0376918827
+UniRef50_W6IE22: CreA protein|unclassified	0.0376918827
+UniRef50_A0A024HEJ5	0.0376914700
+UniRef50_A0A024HEJ5|unclassified	0.0376914700
+UniRef50_Q4ZWM4: DNA polymerase IV	0.0376878170
+UniRef50_Q4ZWM4: DNA polymerase IV|unclassified	0.0376878170
+UniRef50_W7CCK2: Bleomycin resistance protein	0.0376876140
+UniRef50_W7CCK2: Bleomycin resistance protein|unclassified	0.0376876140
+UniRef50_UPI0003B40278: ABC transporter permease	0.0376836690
+UniRef50_UPI0003B40278: ABC transporter permease|unclassified	0.0376836690
+UniRef50_C7DEE7	0.0376813590
+UniRef50_C7DEE7|unclassified	0.0376813590
+UniRef50_UPI000255901E: outer membrane receptor FepA	0.0376784996
+UniRef50_UPI000255901E: outer membrane receptor FepA|unclassified	0.0376784996
+UniRef50_UPI00035ED176: hypothetical protein	0.0376770644
+UniRef50_UPI00035ED176: hypothetical protein|unclassified	0.0376770644
+UniRef50_UPI00047D7A3C: hypothetical protein	0.0376729374
+UniRef50_UPI00047D7A3C: hypothetical protein|unclassified	0.0376729374
+UniRef50_K5DWG0: TPR-repeat-containing protein, putative component of Menaquinone-cytochrome C reductase	0.0376704402
+UniRef50_K5DWG0: TPR-repeat-containing protein, putative component of Menaquinone-cytochrome C reductase|unclassified	0.0376704402
+UniRef50_B0S2Q1: Phosphoglucosamine mutase	0.0376673763
+UniRef50_B0S2Q1: Phosphoglucosamine mutase|unclassified	0.0376673763
+UniRef50_A5CER5: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0376628565
+UniRef50_A5CER5: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0376628565
+UniRef50_UPI00029A87CE: peptidoglycan-binding domain 1 protein	0.0376609337
+UniRef50_UPI00029A87CE: peptidoglycan-binding domain 1 protein|unclassified	0.0376609337
+UniRef50_Q11RU2: NADH-quinone oxidoreductase subunit H 2	0.0376551416
+UniRef50_Q11RU2: NADH-quinone oxidoreductase subunit H 2|unclassified	0.0376551416
+UniRef50_UPI00037DBF0E: hypothetical protein	0.0376545816
+UniRef50_UPI00037DBF0E: hypothetical protein|unclassified	0.0376545816
+UniRef50_UPI0003B352D9: type II secretory protein GspE	0.0376509232
+UniRef50_UPI0003B352D9: type II secretory protein GspE|unclassified	0.0376509232
+UniRef50_UPI00034639AA: hypothetical protein	0.0376492638
+UniRef50_UPI00034639AA: hypothetical protein|unclassified	0.0376492638
+UniRef50_UPI0004720773: 50S ribosomal protein L7/L12	0.0376473554
+UniRef50_UPI0004720773: 50S ribosomal protein L7/L12|unclassified	0.0376473554
+UniRef50_X1YFM6	0.0376473368
+UniRef50_X1YFM6|unclassified	0.0376473368
+UniRef50_UPI000359CFE8: PREDICTED: FYVE, RhoGEF and PH domain-containing protein 1-like isoform X1	0.0376470423
+UniRef50_UPI000359CFE8: PREDICTED: FYVE, RhoGEF and PH domain-containing protein 1-like isoform X1|unclassified	0.0376470423
+UniRef50_P28297: Isocitrate lyase	0.0376469469
+UniRef50_P28297: Isocitrate lyase|unclassified	0.0376469469
+UniRef50_UPI0004644020: hypothetical protein	0.0376455496
+UniRef50_UPI0004644020: hypothetical protein|unclassified	0.0376455496
+UniRef50_UPI000381CDD7: hypothetical protein	0.0376407056
+UniRef50_UPI000381CDD7: hypothetical protein|unclassified	0.0376407056
+UniRef50_F6AEF9: Diguanylate cyclase	0.0376325606
+UniRef50_F6AEF9: Diguanylate cyclase|unclassified	0.0376325606
+UniRef50_X0QDV6: Pirin-related protein	0.0376265901
+UniRef50_X0QDV6: Pirin-related protein|unclassified	0.0376265901
+UniRef50_Q21MS8: Chaperone SurA	0.0376256385
+UniRef50_Q21MS8: Chaperone SurA|unclassified	0.0376256385
+UniRef50_UPI00034A62B9: hypothetical protein	0.0376179761
+UniRef50_UPI00034A62B9: hypothetical protein|unclassified	0.0376179761
+UniRef50_B8DM45: Anthranilate phosphoribosyltransferase	0.0376170367
+UniRef50_B8DM45: Anthranilate phosphoribosyltransferase|unclassified	0.0376170367
+UniRef50_UPI00016C35F8: pyruvate kinase	0.0376149464
+UniRef50_UPI00016C35F8: pyruvate kinase|unclassified	0.0376149464
+UniRef50_UPI00036A8AF5: hypothetical protein	0.0376136088
+UniRef50_UPI00036A8AF5: hypothetical protein|unclassified	0.0376136088
+UniRef50_I3TUA3: Periplasmic binding protein	0.0376126962
+UniRef50_I3TUA3: Periplasmic binding protein|unclassified	0.0376126962
+UniRef50_UPI00041001CB: hypothetical protein	0.0376064423
+UniRef50_UPI00041001CB: hypothetical protein|unclassified	0.0376064423
+UniRef50_S7TCI0: Type II secretion system F domain-containing protein	0.0376057077
+UniRef50_S7TCI0: Type II secretion system F domain-containing protein|unclassified	0.0376057077
+UniRef50_UPI00042CE275: PREDICTED: putative adenosylhomocysteinase 3-like isoform X1	0.0376026079
+UniRef50_UPI00042CE275: PREDICTED: putative adenosylhomocysteinase 3-like isoform X1|unclassified	0.0376026079
+UniRef50_UPI000362A734: hypothetical protein	0.0376016745
+UniRef50_UPI000362A734: hypothetical protein|unclassified	0.0376016745
+UniRef50_U7G9R7	0.0376012752
+UniRef50_U7G9R7|unclassified	0.0376012752
+UniRef50_C0EGW7	0.0376007990
+UniRef50_C0EGW7|unclassified	0.0376007990
+UniRef50_A0A037XQE3: Cobalt transporter (Fragment)	0.0376005534
+UniRef50_A0A037XQE3: Cobalt transporter (Fragment)|unclassified	0.0376005534
+UniRef50_Q2LR78: Glutamate 5-kinase	0.0376001920
+UniRef50_Q2LR78: Glutamate 5-kinase|unclassified	0.0376001920
+UniRef50_A0LK22: Dihydroorotase	0.0375990519
+UniRef50_A0LK22: Dihydroorotase|unclassified	0.0375990519
+UniRef50_UPI0004757670: 3-phosphoshikimate 1-carboxyvinyltransferase	0.0375912681
+UniRef50_UPI0004757670: 3-phosphoshikimate 1-carboxyvinyltransferase|unclassified	0.0375912681
+UniRef50_UPI00037D0D4E: hypothetical protein	0.0375901137
+UniRef50_UPI00037D0D4E: hypothetical protein|unclassified	0.0375901137
+UniRef50_UPI00026C71F4: ABC transporter ATP-binding protein	0.0375881753
+UniRef50_UPI00026C71F4: ABC transporter ATP-binding protein|unclassified	0.0375881753
+UniRef50_UPI00035EEFC1: hypothetical protein	0.0375872585
+UniRef50_UPI00035EEFC1: hypothetical protein|unclassified	0.0375872585
+UniRef50_B1K9W1: Major facilitator superfamily MFS_1	0.0375859024
+UniRef50_B1K9W1: Major facilitator superfamily MFS_1|unclassified	0.0375859024
+UniRef50_UPI000472AC52: spore coat protein	0.0375849691
+UniRef50_UPI000472AC52: spore coat protein|unclassified	0.0375849691
+UniRef50_UPI00029A8000: PAS/PAC sensor hybrid histidine kinase	0.0375845084
+UniRef50_UPI00029A8000: PAS/PAC sensor hybrid histidine kinase|unclassified	0.0375845084
+UniRef50_UPI000361B9E1: hypothetical protein	0.0375838296
+UniRef50_UPI000361B9E1: hypothetical protein|unclassified	0.0375838296
+UniRef50_P71019: Malonyl CoA-acyl carrier protein transacylase	0.0375805597
+UniRef50_P71019: Malonyl CoA-acyl carrier protein transacylase|unclassified	0.0375805597
+UniRef50_UPI00047C414B: esterase	0.0375779076
+UniRef50_UPI00047C414B: esterase|unclassified	0.0375779076
+UniRef50_Q0TMN9: DNA-directed RNA polymerase subunit beta'	0.0375775402
+UniRef50_Q0TMN9: DNA-directed RNA polymerase subunit beta'|unclassified	0.0375775402
+UniRef50_F0YQG6	0.0375772002
+UniRef50_F0YQG6|unclassified	0.0375772002
+UniRef50_UPI000237514C: response regulator receiver	0.0375760019
+UniRef50_UPI000237514C: response regulator receiver|unclassified	0.0375760019
+UniRef50_UPI0002EC5B2D: hypothetical protein	0.0375759770
+UniRef50_UPI0002EC5B2D: hypothetical protein|unclassified	0.0375759770
+UniRef50_B7JB82: Bifunctional protein GlmU	0.0375733709
+UniRef50_B7JB82: Bifunctional protein GlmU|unclassified	0.0375733709
+UniRef50_UPI000375AEDF: hypothetical protein	0.0375687875
+UniRef50_UPI000375AEDF: hypothetical protein|unclassified	0.0375687875
+UniRef50_UPI00047C9481: hypothetical protein	0.0375679868
+UniRef50_UPI00047C9481: hypothetical protein|unclassified	0.0375679868
+UniRef50_H6L1Z2: Putative virion core protein (Lumpy skin disease virus)-like protein	0.0375670201
+UniRef50_H6L1Z2: Putative virion core protein (Lumpy skin disease virus)-like protein|unclassified	0.0375670201
+UniRef50_W7C941	0.0375668752
+UniRef50_W7C941|unclassified	0.0375668752
+UniRef50_B2UN91: Glutamate--tRNA ligase	0.0375650269
+UniRef50_B2UN91: Glutamate--tRNA ligase|unclassified	0.0375650269
+UniRef50_B8FCL2: Arginine--tRNA ligase	0.0375553653
+UniRef50_B8FCL2: Arginine--tRNA ligase|unclassified	0.0375553653
+UniRef50_UPI0003B52326: histidinol dehydrogenase	0.0375534054
+UniRef50_UPI0003B52326: histidinol dehydrogenase|unclassified	0.0375534054
+UniRef50_N6Z7D7: Fec operon regulator FecR	0.0375528098
+UniRef50_N6Z7D7: Fec operon regulator FecR|unclassified	0.0375528098
+UniRef50_X5DG74: Beta-lactamase	0.0375490096
+UniRef50_X5DG74: Beta-lactamase|unclassified	0.0375490096
+UniRef50_UPI0003FFF71D: hypothetical protein	0.0375488728
+UniRef50_UPI0003FFF71D: hypothetical protein|unclassified	0.0375488728
+UniRef50_U5GC35	0.0375461577
+UniRef50_U5GC35|unclassified	0.0375461577
+UniRef50_UPI00036B0358: hypothetical protein	0.0375375076
+UniRef50_UPI00036B0358: hypothetical protein|unclassified	0.0375375076
+UniRef50_UPI000473C73D: cell surface protein, partial	0.0375366658
+UniRef50_UPI000473C73D: cell surface protein, partial|unclassified	0.0375366658
+UniRef50_UPI0003627E3F: hypothetical protein	0.0375354588
+UniRef50_UPI0003627E3F: hypothetical protein|unclassified	0.0375354588
+UniRef50_UPI000255D50E: epimerase	0.0375339163
+UniRef50_UPI000255D50E: epimerase|unclassified	0.0375339163
+UniRef50_U6IJV8: Expressed protein	0.0375338319
+UniRef50_U6IJV8: Expressed protein|unclassified	0.0375338319
+UniRef50_Q9SLG2: Geranylgeranyl pyrophosphate synthase 4	0.0375307662
+UniRef50_Q9SLG2: Geranylgeranyl pyrophosphate synthase 4|unclassified	0.0375307662
+UniRef50_UPI0000E0E167: putative RNA 2''''-O-ribose methyltransferase	0.0375304617
+UniRef50_UPI0000E0E167: putative RNA 2''''-O-ribose methyltransferase|unclassified	0.0375304617
+UniRef50_UPI00039A6DA4: hypothetical protein	0.0375294888
+UniRef50_UPI00039A6DA4: hypothetical protein|unclassified	0.0375294888
+UniRef50_UPI00034922BA: hypothetical protein	0.0375282393
+UniRef50_UPI00034922BA: hypothetical protein|unclassified	0.0375282393
+UniRef50_B6IWF0: Phosphate ABC transporter, periplasmic phosphate-binding protein PstS, putative	0.0375244993
+UniRef50_B6IWF0: Phosphate ABC transporter, periplasmic phosphate-binding protein PstS, putative|unclassified	0.0375244993
+UniRef50_R5XSH1: ABC-2 type transport system permease protein	0.0375229355
+UniRef50_R5XSH1: ABC-2 type transport system permease protein|unclassified	0.0375229355
+UniRef50_UPI00031BE7AF: hypothetical protein	0.0375224451
+UniRef50_UPI00031BE7AF: hypothetical protein|unclassified	0.0375224451
+UniRef50_Q18CF3: DNA-directed RNA polymerase subunit beta'	0.0375213019
+UniRef50_Q18CF3: DNA-directed RNA polymerase subunit beta'|unclassified	0.0375213019
+UniRef50_UPI000328B2BB: PREDICTED: collagen alpha-1(III) chain-like	0.0375155658
+UniRef50_UPI000328B2BB: PREDICTED: collagen alpha-1(III) chain-like|unclassified	0.0375155658
+UniRef50_Q2IIV4: Histidine ammonia-lyase	0.0375103320
+UniRef50_Q2IIV4: Histidine ammonia-lyase|unclassified	0.0375103320
+UniRef50_G8LD76	0.0375068012
+UniRef50_G8LD76|unclassified	0.0375068012
+UniRef50_UPI0001E2D084: S-layer domain-containing protein	0.0375040801
+UniRef50_UPI0001E2D084: S-layer domain-containing protein|unclassified	0.0375040801
+UniRef50_UPI0003668456: hypothetical protein	0.0375028191
+UniRef50_UPI0003668456: hypothetical protein|unclassified	0.0375028191
+UniRef50_UPI000383BB6B: PREDICTED: basic proline-rich protein-like	0.0374988986
+UniRef50_UPI000383BB6B: PREDICTED: basic proline-rich protein-like|unclassified	0.0374988986
+UniRef50_W5E0V3	0.0374921258
+UniRef50_W5E0V3|unclassified	0.0374921258
+UniRef50_G6EYL7	0.0374911785
+UniRef50_G6EYL7|unclassified	0.0374911785
+UniRef50_G8YPB5: Piso0_001875 protein	0.0374893784
+UniRef50_G8YPB5: Piso0_001875 protein|unclassified	0.0374893784
+UniRef50_UPI0003F63BF8: hypothetical protein	0.0374879407
+UniRef50_UPI0003F63BF8: hypothetical protein|unclassified	0.0374879407
+UniRef50_P73016: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI	0.0374852849
+UniRef50_P73016: Enoyl-[acyl-carrier-protein] reductase [NADH] FabI|unclassified	0.0374852849
+UniRef50_UPI00037D8C4A: hypothetical protein	0.0374845790
+UniRef50_UPI00037D8C4A: hypothetical protein|unclassified	0.0374845790
+UniRef50_Q97MI6: Biotin synthase	0.0374844772
+UniRef50_Q97MI6: Biotin synthase|unclassified	0.0374844772
+UniRef50_X6N172	0.0374838872
+UniRef50_X6N172|unclassified	0.0374838872
+UniRef50_UPI00037E7536: hypothetical protein	0.0374835957
+UniRef50_UPI00037E7536: hypothetical protein|unclassified	0.0374835957
+UniRef50_R5PZ73: Hemolysin-type calcium binding protein	0.0374821492
+UniRef50_R5PZ73: Hemolysin-type calcium binding protein|unclassified	0.0374821492
+UniRef50_UPI0003682758: hypothetical protein	0.0374802142
+UniRef50_UPI0003682758: hypothetical protein|unclassified	0.0374802142
+UniRef50_C6W954: LPXTG-motif cell wall anchor domain protein	0.0374786241
+UniRef50_C6W954: LPXTG-motif cell wall anchor domain protein|unclassified	0.0374786241
+UniRef50_UPI00047616F1: hypothetical protein	0.0374771120
+UniRef50_UPI00047616F1: hypothetical protein|unclassified	0.0374771120
+UniRef50_Q8TIM8: Adenylosuccinate synthetase 2	0.0374768580
+UniRef50_Q8TIM8: Adenylosuccinate synthetase 2|unclassified	0.0374768580
+UniRef50_UPI000465EA59: hypothetical protein	0.0374710269
+UniRef50_UPI000465EA59: hypothetical protein|unclassified	0.0374710269
+UniRef50_UPI0003B6CDE7: serine ammonia-lyase	0.0374676780
+UniRef50_UPI0003B6CDE7: serine ammonia-lyase|unclassified	0.0374676780
+UniRef50_Q1N7F8: ISPsy20, transposase IstA	0.0374619145
+UniRef50_Q1N7F8: ISPsy20, transposase IstA|unclassified	0.0374619145
+UniRef50_I3IP01: Pilus assembly protein	0.0374598269
+UniRef50_I3IP01: Pilus assembly protein|unclassified	0.0374598269
+UniRef50_A0A017H9R4: Phage portal protein	0.0374583146
+UniRef50_A0A017H9R4: Phage portal protein|unclassified	0.0374583146
+UniRef50_UPI00028864EF: D-serine dehydratase	0.0374536329
+UniRef50_UPI00028864EF: D-serine dehydratase|unclassified	0.0374536329
+UniRef50_D4J2B7	0.0374523297
+UniRef50_D4J2B7|unclassified	0.0374523297
+UniRef50_UPI00026266DA: penicillin-binding protein	0.0374493086
+UniRef50_UPI00026266DA: penicillin-binding protein|unclassified	0.0374493086
+UniRef50_A9WR14: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase	0.0374446396
+UniRef50_A9WR14: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|unclassified	0.0374446396
+UniRef50_A7SXG9: Predicted protein	0.0374444640
+UniRef50_A7SXG9: Predicted protein|unclassified	0.0374444640
+UniRef50_UPI000262AFA4: MFS transporter	0.0374374489
+UniRef50_UPI000262AFA4: MFS transporter|unclassified	0.0374374489
+UniRef50_UPI0003625CBC: hypothetical protein	0.0374354195
+UniRef50_UPI0003625CBC: hypothetical protein|unclassified	0.0374354195
+UniRef50_A3SWL6: ISPsy20, transposase IstA	0.0374334018
+UniRef50_A3SWL6: ISPsy20, transposase IstA|unclassified	0.0374334018
+UniRef50_UPI0003B7912D: D-ribose transporter ATP binding protein	0.0374321881
+UniRef50_UPI0003B7912D: D-ribose transporter ATP binding protein|unclassified	0.0374321881
+UniRef50_B8DT91: tRNA dimethylallyltransferase	0.0374308514
+UniRef50_B8DT91: tRNA dimethylallyltransferase|unclassified	0.0374308514
+UniRef50_UPI0003B5FF5D: integrase	0.0374304435
+UniRef50_UPI0003B5FF5D: integrase|unclassified	0.0374304435
+UniRef50_UPI0004662606: glycolate oxidase	0.0374216568
+UniRef50_UPI0004662606: glycolate oxidase|unclassified	0.0374216568
+UniRef50_T2LEE7	0.0374174623
+UniRef50_T2LEE7|unclassified	0.0374174623
+UniRef50_UPI0003FD3072: transposase	0.0374166859
+UniRef50_UPI0003FD3072: transposase|unclassified	0.0374166859
+UniRef50_Q9VHP0: ATP-dependent RNA helicase bel	0.0374149222
+UniRef50_Q9VHP0: ATP-dependent RNA helicase bel|unclassified	0.0374149222
+UniRef50_UPI0003B781A2: glucose/sorbosone dehydrogenase	0.0374138997
+UniRef50_UPI0003B781A2: glucose/sorbosone dehydrogenase|unclassified	0.0374138997
+UniRef50_UPI0003B6155B: NAD(FAD)-utilizing dehydrogenase	0.0374095975
+UniRef50_UPI0003B6155B: NAD(FAD)-utilizing dehydrogenase|unclassified	0.0374095975
+UniRef50_A0A024JGW3: Similar to Saccharomyces cerevisiae YML054C CYB2 Cytochrome b2 (L-lactate cytochrome-c oxidoreductase)	0.0374086482
+UniRef50_A0A024JGW3: Similar to Saccharomyces cerevisiae YML054C CYB2 Cytochrome b2 (L-lactate cytochrome-c oxidoreductase)|unclassified	0.0374086482
+UniRef50_UPI00035DA5CE: cysteine synthase	0.0374076134
+UniRef50_UPI00035DA5CE: cysteine synthase|unclassified	0.0374076134
+UniRef50_UPI0003291D69: PREDICTED: envelope glycoprotein-like	0.0373998761
+UniRef50_UPI0003291D69: PREDICTED: envelope glycoprotein-like|unclassified	0.0373998761
+UniRef50_UPI00040FC853: iron deficiency-induced protein A	0.0373934628
+UniRef50_UPI00040FC853: iron deficiency-induced protein A|unclassified	0.0373934628
+UniRef50_UPI0003B6C29E: translation initiation factor IF-2	0.0373916998
+UniRef50_UPI0003B6C29E: translation initiation factor IF-2|unclassified	0.0373916998
+UniRef50_UPI0002DFA93D: 30S ribosomal protein S12 methylthiotransferase	0.0373903424
+UniRef50_UPI0002DFA93D: 30S ribosomal protein S12 methylthiotransferase|unclassified	0.0373903424
+UniRef50_UPI000328D4F5: PREDICTED: vegetative cell wall protein gp1-like	0.0373851232
+UniRef50_UPI000328D4F5: PREDICTED: vegetative cell wall protein gp1-like|unclassified	0.0373851232
+UniRef50_UPI0003B4238D: acyl-CoA dehydrogenase	0.0373841943
+UniRef50_UPI0003B4238D: acyl-CoA dehydrogenase|unclassified	0.0373841943
+UniRef50_UPI00031C72AF: hypothetical protein	0.0373832764
+UniRef50_UPI00031C72AF: hypothetical protein|unclassified	0.0373832764
+UniRef50_D8UE68: Formin	0.0373820744
+UniRef50_D8UE68: Formin|unclassified	0.0373820744
+UniRef50_UPI000309657E: sugar ABC transporter ATP-binding protein	0.0373808862
+UniRef50_UPI000309657E: sugar ABC transporter ATP-binding protein|unclassified	0.0373808862
+UniRef50_E8QXS9	0.0373740114
+UniRef50_E8QXS9|unclassified	0.0373740114
+UniRef50_Q97ZG1: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.0373622331
+UniRef50_Q97ZG1: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.0373622331
+UniRef50_UPI00004E313C: hypothetical protein DDB_G0278037	0.0373614314
+UniRef50_UPI00004E313C: hypothetical protein DDB_G0278037|unclassified	0.0373614314
+UniRef50_B0D7K9: Predicted protein	0.0373603499
+UniRef50_B0D7K9: Predicted protein|unclassified	0.0373603499
+UniRef50_F9TDN3: DSBA oxidoreductase	0.0373572039
+UniRef50_F9TDN3: DSBA oxidoreductase|unclassified	0.0373572039
+UniRef50_UPI0004240F30: formate dehydrogenase	0.0373558054
+UniRef50_UPI0004240F30: formate dehydrogenase|unclassified	0.0373558054
+UniRef50_Q7UNW8: Probable alpha-L-glutamate ligase	0.0373487831
+UniRef50_Q7UNW8: Probable alpha-L-glutamate ligase|unclassified	0.0373487831
+UniRef50_A0A024J5G6: Similar to Saccharomyces cerevisiae YFL016C MDJ1 Co-chaperone that stimulates the ATPase activity of the HSP70 protein Ssc1p	0.0373424225
+UniRef50_A0A024J5G6: Similar to Saccharomyces cerevisiae YFL016C MDJ1 Co-chaperone that stimulates the ATPase activity of the HSP70 protein Ssc1p|unclassified	0.0373424225
+UniRef50_R2QFW0	0.0373418581
+UniRef50_R2QFW0|unclassified	0.0373418581
+UniRef50_UPI000289F371: hypothetical protein	0.0373377791
+UniRef50_UPI000289F371: hypothetical protein|unclassified	0.0373377791
+UniRef50_J0BZW0	0.0373365641
+UniRef50_J0BZW0|unclassified	0.0373365641
+UniRef50_UPI00035FE6F0: hypothetical protein	0.0373243013
+UniRef50_UPI00035FE6F0: hypothetical protein|unclassified	0.0373243013
+UniRef50_B8CZM7	0.0373187988
+UniRef50_B8CZM7|unclassified	0.0373187988
+UniRef50_Q4K3P0: Type VI secretion protein Fha	0.0373080552
+UniRef50_Q4K3P0: Type VI secretion protein Fha|unclassified	0.0373080552
+UniRef50_X8IXN7	0.0373076005
+UniRef50_X8IXN7|unclassified	0.0373076005
+UniRef50_T0XUL7	0.0373004503
+UniRef50_T0XUL7|unclassified	0.0373004503
+UniRef50_M5J6Y3	0.0373001502
+UniRef50_M5J6Y3|unclassified	0.0373001502
+UniRef50_Q0SNA5: Proline--tRNA ligase	0.0372994286
+UniRef50_Q0SNA5: Proline--tRNA ligase|unclassified	0.0372994286
+UniRef50_UPI00037CBC1A: hypothetical protein	0.0372964753
+UniRef50_UPI00037CBC1A: hypothetical protein|unclassified	0.0372964753
+UniRef50_B7GM51: ATP-dependent helicase/nuclease subunit A	0.0372943705
+UniRef50_B7GM51: ATP-dependent helicase/nuclease subunit A|unclassified	0.0372943705
+UniRef50_Q92GB7: DNA polymerase I	0.0372919251
+UniRef50_Q92GB7: DNA polymerase I|unclassified	0.0372919251
+UniRef50_UPI0003774569: hypothetical protein	0.0372906959
+UniRef50_UPI0003774569: hypothetical protein|unclassified	0.0372906959
+UniRef50_UPI0003B526C8: inorganic polyphosphate/ATP-NAD kinase	0.0372863288
+UniRef50_UPI0003B526C8: inorganic polyphosphate/ATP-NAD kinase|unclassified	0.0372863288
+UniRef50_UPI000367BBDB: hypothetical protein	0.0372858673
+UniRef50_UPI000367BBDB: hypothetical protein|unclassified	0.0372858673
+UniRef50_UPI000273964F: PREDICTED: cardiolipin synthase	0.0372841184
+UniRef50_UPI000273964F: PREDICTED: cardiolipin synthase|unclassified	0.0372841184
+UniRef50_UPI00037F163D: MULTISPECIES: hypothetical protein	0.0372822486
+UniRef50_UPI00037F163D: MULTISPECIES: hypothetical protein|unclassified	0.0372822486
+UniRef50_UPI00030469BF: hypothetical protein	0.0372810518
+UniRef50_UPI00030469BF: hypothetical protein|unclassified	0.0372810518
+UniRef50_A4EQE5: ISSpo9, transposase	0.0372788961
+UniRef50_A4EQE5: ISSpo9, transposase|unclassified	0.0372788961
+UniRef50_UPI0003783264: hypothetical protein, partial	0.0372723323
+UniRef50_UPI0003783264: hypothetical protein, partial|unclassified	0.0372723323
+UniRef50_Q6MHV9: Bifunctional protein GlmU	0.0372712521
+UniRef50_Q6MHV9: Bifunctional protein GlmU|unclassified	0.0372712521
+UniRef50_A3SN26	0.0372672979
+UniRef50_A3SN26|unclassified	0.0372672979
+UniRef50_UPI0003817AC3: hypothetical protein	0.0372660122
+UniRef50_UPI0003817AC3: hypothetical protein|unclassified	0.0372660122
+UniRef50_UPI0002492424: O-succinylbenzoic acid--CoA ligase	0.0372645206
+UniRef50_UPI0002492424: O-succinylbenzoic acid--CoA ligase|unclassified	0.0372645206
+UniRef50_F4A0V9: Phage portal protein, HK97 family	0.0372631510
+UniRef50_F4A0V9: Phage portal protein, HK97 family|unclassified	0.0372631510
+UniRef50_UPI0002630104: fusaric acid resistance protein region	0.0372607877
+UniRef50_UPI0002630104: fusaric acid resistance protein region|unclassified	0.0372607877
+UniRef50_UPI0003957E75: 8-amino-7-oxononanoate synthase	0.0372605951
+UniRef50_UPI0003957E75: 8-amino-7-oxononanoate synthase|unclassified	0.0372605951
+UniRef50_L7ZK34	0.0372600223
+UniRef50_L7ZK34|unclassified	0.0372600223
+UniRef50_Q6AL48: DNA polymerase IV	0.0372561984
+UniRef50_Q6AL48: DNA polymerase IV|unclassified	0.0372561984
+UniRef50_A0A023C297	0.0372518727
+UniRef50_A0A023C297|unclassified	0.0372518727
+UniRef50_UPI0002E4BD4A: hypothetical protein	0.0372512988
+UniRef50_UPI0002E4BD4A: hypothetical protein|unclassified	0.0372512988
+UniRef50_UPI000376D649: hypothetical protein	0.0372495820
+UniRef50_UPI000376D649: hypothetical protein|unclassified	0.0372495820
+UniRef50_B0SSI4: DNA-directed RNA polymerase subunit beta	0.0372487385
+UniRef50_B0SSI4: DNA-directed RNA polymerase subunit beta|unclassified	0.0372487385
+UniRef50_U0FY18	0.0372474592
+UniRef50_U0FY18|unclassified	0.0372474592
+UniRef50_UPI00037A7F7E: hypothetical protein	0.0372456413
+UniRef50_UPI00037A7F7E: hypothetical protein|unclassified	0.0372456413
+UniRef50_G9MRJ2	0.0372455034
+UniRef50_G9MRJ2|unclassified	0.0372455034
+UniRef50_I6X3D7	0.0372415122
+UniRef50_I6X3D7|unclassified	0.0372415122
+UniRef50_U6KUP0	0.0372408010
+UniRef50_U6KUP0|unclassified	0.0372408010
+UniRef50_S4FXF1: SH3 domain protein (Fragment)	0.0372391301
+UniRef50_S4FXF1: SH3 domain protein (Fragment)|unclassified	0.0372391301
+UniRef50_UPI000288368D: dipeptidase	0.0372351869
+UniRef50_UPI000288368D: dipeptidase|unclassified	0.0372351869
+UniRef50_F9T336: Ferric aerobactin ABC transporter periplasmic substrate binding protein	0.0372348904
+UniRef50_F9T336: Ferric aerobactin ABC transporter periplasmic substrate binding protein|unclassified	0.0372348904
+UniRef50_UPI000380B87F: hypothetical protein	0.0372297177
+UniRef50_UPI000380B87F: hypothetical protein|unclassified	0.0372297177
+UniRef50_UPI0004729660: ferredoxin	0.0372285241
+UniRef50_UPI0004729660: ferredoxin|unclassified	0.0372285241
+UniRef50_UPI00029DA75A: PREDICTED: protein MTO1 homolog, mitochondrial	0.0372259712
+UniRef50_UPI00029DA75A: PREDICTED: protein MTO1 homolog, mitochondrial|unclassified	0.0372259712
+UniRef50_D5CDX5	0.0372255924
+UniRef50_D5CDX5|unclassified	0.0372255924
+UniRef50_UPI0003726A6C: hypothetical protein	0.0372226388
+UniRef50_UPI0003726A6C: hypothetical protein|unclassified	0.0372226388
+UniRef50_UPI0003FD3F5A: membrane protein	0.0372196514
+UniRef50_UPI0003FD3F5A: membrane protein|unclassified	0.0372196514
+UniRef50_UPI00037A69FB: hypothetical protein	0.0372167480
+UniRef50_UPI00037A69FB: hypothetical protein|unclassified	0.0372167480
+UniRef50_UPI000360AFC4: hypothetical protein	0.0372154906
+UniRef50_UPI000360AFC4: hypothetical protein|unclassified	0.0372154906
+UniRef50_U6KZ93	0.0372141842
+UniRef50_U6KZ93|unclassified	0.0372141842
+UniRef50_K6BVJ8	0.0372140051
+UniRef50_K6BVJ8|unclassified	0.0372140051
+UniRef50_UPI0003617A79: hypothetical protein	0.0372119951
+UniRef50_UPI0003617A79: hypothetical protein|unclassified	0.0372119951
+UniRef50_UPI0003699E01: hypothetical protein	0.0372077910
+UniRef50_UPI0003699E01: hypothetical protein|unclassified	0.0372077910
+UniRef50_Q6MAW8: Ferrochelatase	0.0372043432
+UniRef50_Q6MAW8: Ferrochelatase|unclassified	0.0372043432
+UniRef50_UPI0003B58898: membrane protein	0.0372043341
+UniRef50_UPI0003B58898: membrane protein|unclassified	0.0372043341
+UniRef50_UPI00037274B9: hypothetical protein	0.0372002197
+UniRef50_UPI00037274B9: hypothetical protein|unclassified	0.0372002197
+UniRef50_UPI0002D600DB: 2-methylthioadenine synthetase	0.0371983127
+UniRef50_UPI0002D600DB: 2-methylthioadenine synthetase|unclassified	0.0371983127
+UniRef50_G6DI12	0.0371940607
+UniRef50_G6DI12|unclassified	0.0371940607
+UniRef50_UPI00029B1E51: glycine oxidase ThiO	0.0371880430
+UniRef50_UPI00029B1E51: glycine oxidase ThiO|unclassified	0.0371880430
+UniRef50_UPI000471F066: thiamine biosynthesis protein ThiF	0.0371874162
+UniRef50_UPI000471F066: thiamine biosynthesis protein ThiF|unclassified	0.0371874162
+UniRef50_UPI00016C01AE: UDP-N-acetylmuramoylalanyl-D-glutamyl-2, 6-diaminopimelate--D-alanyl-D-alanyl ligase	0.0371840687
+UniRef50_UPI00016C01AE: UDP-N-acetylmuramoylalanyl-D-glutamyl-2, 6-diaminopimelate--D-alanyl-D-alanyl ligase|unclassified	0.0371840687
+UniRef50_U2YHJ5: Pyruvate carboxylase	0.0371799652
+UniRef50_U2YHJ5: Pyruvate carboxylase|unclassified	0.0371799652
+UniRef50_Q2NAE1: Bifunctional enzyme IspD/IspF	0.0371768103
+UniRef50_Q2NAE1: Bifunctional enzyme IspD/IspF|unclassified	0.0371768103
+UniRef50_UPI00037D8FCA: hypothetical protein	0.0371758430
+UniRef50_UPI00037D8FCA: hypothetical protein|unclassified	0.0371758430
+UniRef50_T8T2K2	0.0371739681
+UniRef50_T8T2K2|unclassified	0.0371739681
+UniRef50_UPI0003C7E828: MFS transporter	0.0371729714
+UniRef50_UPI0003C7E828: MFS transporter|unclassified	0.0371729714
+UniRef50_F4DV34	0.0371704913
+UniRef50_F4DV34|unclassified	0.0371704913
+UniRef50_UPI00042BA8AC: PREDICTED: adenylyltransferase and sulfurtransferase MOCS3, partial	0.0371701908
+UniRef50_UPI00042BA8AC: PREDICTED: adenylyltransferase and sulfurtransferase MOCS3, partial|unclassified	0.0371701908
+UniRef50_UPI0002195D79: glutamate ABC transporter permease	0.0371650870
+UniRef50_UPI0002195D79: glutamate ABC transporter permease|unclassified	0.0371650870
+UniRef50_U6HK44: Mechanosensory protein 2	0.0371615123
+UniRef50_U6HK44: Mechanosensory protein 2|unclassified	0.0371615123
+UniRef50_UPI0002F6340C: hypothetical protein	0.0371605858
+UniRef50_UPI0002F6340C: hypothetical protein|unclassified	0.0371605858
+UniRef50_UPI0003B3EAEF: DNA repair protein RadA	0.0371581354
+UniRef50_UPI0003B3EAEF: DNA repair protein RadA|unclassified	0.0371581354
+UniRef50_UPI00016C4E3C: hypothetical protein	0.0371571884
+UniRef50_UPI00016C4E3C: hypothetical protein|unclassified	0.0371571884
+UniRef50_X8LX64: PF04235 family protein	0.0371528667
+UniRef50_X8LX64: PF04235 family protein|unclassified	0.0371528667
+UniRef50_UPI0002897604: lipoate-protein ligase A Lipoate-protein ligase	0.0371522305
+UniRef50_UPI0002897604: lipoate-protein ligase A Lipoate-protein ligase|unclassified	0.0371522305
+UniRef50_A8TC52	0.0371487129
+UniRef50_A8TC52|unclassified	0.0371487129
+UniRef50_UPI00046A469B: type VI secretion protein	0.0371478198
+UniRef50_UPI00046A469B: type VI secretion protein|unclassified	0.0371478198
+UniRef50_UPI00024870B5: peptide ABC transporter permease	0.0371465996
+UniRef50_UPI00024870B5: peptide ABC transporter permease|unclassified	0.0371465996
+UniRef50_UPI0003742925: hypothetical protein	0.0371427828
+UniRef50_UPI0003742925: hypothetical protein|unclassified	0.0371427828
+UniRef50_UPI0004717CB0: spore gernimation protein KB	0.0371403850
+UniRef50_UPI0004717CB0: spore gernimation protein KB|unclassified	0.0371403850
+UniRef50_UPI000255D46A: glucose sorbosone dehydrogenase	0.0371384908
+UniRef50_UPI000255D46A: glucose sorbosone dehydrogenase|unclassified	0.0371384908
+UniRef50_C5LZ99	0.0371371333
+UniRef50_C5LZ99|unclassified	0.0371371333
+UniRef50_UPI00040DE95E: sodium:proton exchanger	0.0371368844
+UniRef50_UPI00040DE95E: sodium:proton exchanger|unclassified	0.0371368844
+UniRef50_R9T3Y2: ATPase	0.0371368656
+UniRef50_R9T3Y2: ATPase|unclassified	0.0371368656
+UniRef50_UPI0003B5D879: chemotaxis protein CheA	0.0371343712
+UniRef50_UPI0003B5D879: chemotaxis protein CheA|unclassified	0.0371343712
+UniRef50_UPI0003741F0D: hypothetical protein	0.0371336906
+UniRef50_UPI0003741F0D: hypothetical protein|unclassified	0.0371336906
+UniRef50_A3DIP9: Bifunctional protein GlmU	0.0371316560
+UniRef50_A3DIP9: Bifunctional protein GlmU|unclassified	0.0371316560
+UniRef50_UPI0003736257: hypothetical protein	0.0371303115
+UniRef50_UPI0003736257: hypothetical protein|unclassified	0.0371303115
+UniRef50_UPI00035DE3C8: hypothetical protein	0.0371287365
+UniRef50_UPI00035DE3C8: hypothetical protein|unclassified	0.0371287365
+UniRef50_UPI0004719539: hypothetical protein	0.0371283480
+UniRef50_UPI0004719539: hypothetical protein|unclassified	0.0371283480
+UniRef50_P86885: Alcohol dehydrogenase 1	0.0371273043
+UniRef50_P86885: Alcohol dehydrogenase 1|unclassified	0.0371273043
+UniRef50_UPI0003736688: hypothetical protein	0.0371255233
+UniRef50_UPI0003736688: hypothetical protein|unclassified	0.0371255233
+UniRef50_UPI000479A27B: hypothetical protein	0.0371218881
+UniRef50_UPI000479A27B: hypothetical protein|unclassified	0.0371218881
+UniRef50_UPI00034FBAC3: PREDICTED: MHC class II regulatory factor RFX1	0.0371198053
+UniRef50_UPI00034FBAC3: PREDICTED: MHC class II regulatory factor RFX1|unclassified	0.0371198053
+UniRef50_UPI00047BA812: MFS transporter	0.0371104664
+UniRef50_UPI00047BA812: MFS transporter|unclassified	0.0371104664
+UniRef50_UPI00031DF48E: hypothetical protein	0.0371089867
+UniRef50_UPI00031DF48E: hypothetical protein|unclassified	0.0371089867
+UniRef50_Q9LAM9: Peptide methionine sulfoxide reductase MsrA/MsrB	0.0371087876
+UniRef50_Q9LAM9: Peptide methionine sulfoxide reductase MsrA/MsrB|unclassified	0.0371087876
+UniRef50_Q2NIP7: Cysteine--tRNA ligase	0.0371070167
+UniRef50_Q2NIP7: Cysteine--tRNA ligase|unclassified	0.0371070167
+UniRef50_UPI0003B6B974: O-acetyltransferase OatA	0.0371053830
+UniRef50_UPI0003B6B974: O-acetyltransferase OatA|unclassified	0.0371053830
+UniRef50_R8QQX2	0.0371046161
+UniRef50_R8QQX2|unclassified	0.0371046161
+UniRef50_C7NZH8: Chorismate synthase	0.0371044796
+UniRef50_C7NZH8: Chorismate synthase|unclassified	0.0371044796
+UniRef50_UPI00037343DC: hypothetical protein, partial	0.0371019448
+UniRef50_UPI00037343DC: hypothetical protein, partial|unclassified	0.0371019448
+UniRef50_V4R2Z9	0.0370961417
+UniRef50_V4R2Z9|unclassified	0.0370961417
+UniRef50_UPI00047C69BC: multidrug transporter	0.0370938583
+UniRef50_UPI00047C69BC: multidrug transporter|unclassified	0.0370938583
+UniRef50_E3HYY4	0.0370921464
+UniRef50_E3HYY4|unclassified	0.0370921464
+UniRef50_UPI000464A911: hypothetical protein, partial	0.0370875678
+UniRef50_UPI000464A911: hypothetical protein, partial|unclassified	0.0370875678
+UniRef50_F4L9Q0	0.0370858708
+UniRef50_F4L9Q0|unclassified	0.0370858708
+UniRef50_X5DXX5: KamA family protein	0.0370847304
+UniRef50_X5DXX5: KamA family protein|unclassified	0.0370847304
+UniRef50_B4SPI9	0.0370802368
+UniRef50_B4SPI9|unclassified	0.0370802368
+UniRef50_UPI00037A47C4: hypothetical protein	0.0370785969
+UniRef50_UPI00037A47C4: hypothetical protein|unclassified	0.0370785969
+UniRef50_P78965: Glutathione reductase	0.0370781140
+UniRef50_P78965: Glutathione reductase|unclassified	0.0370781140
+UniRef50_I3ZBX3: Putative virion core protein (Lumpy skin disease virus)	0.0370773460
+UniRef50_I3ZBX3: Putative virion core protein (Lumpy skin disease virus)|unclassified	0.0370773460
+UniRef50_UPI00047B64E5: hypothetical protein	0.0370749648
+UniRef50_UPI00047B64E5: hypothetical protein|unclassified	0.0370749648
+UniRef50_UPI0003B4A6E8: gamma-glutamyl-gamma-aminobutyraldehyde dehydrogenase	0.0370678646
+UniRef50_UPI0003B4A6E8: gamma-glutamyl-gamma-aminobutyraldehyde dehydrogenase|unclassified	0.0370678646
+UniRef50_UPI00047DE500: ABC transporter ATP-binding protein	0.0370675158
+UniRef50_UPI00047DE500: ABC transporter ATP-binding protein|unclassified	0.0370675158
+UniRef50_UPI0003723D7C: hypothetical protein, partial	0.0370650131
+UniRef50_UPI0003723D7C: hypothetical protein, partial|unclassified	0.0370650131
+UniRef50_Q5Z0X7: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0370556131
+UniRef50_Q5Z0X7: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0370556131
+UniRef50_K5VPI0	0.0370524114
+UniRef50_K5VPI0|unclassified	0.0370524114
+UniRef50_UPI000237D273: PTS lactose transporter subunit IIC	0.0370518811
+UniRef50_UPI000237D273: PTS lactose transporter subunit IIC|unclassified	0.0370518811
+UniRef50_W5XAB8: Signal transduction histidine kinase	0.0370503093
+UniRef50_W5XAB8: Signal transduction histidine kinase|unclassified	0.0370503093
+UniRef50_Q31EG9: Ferrochelatase	0.0370500086
+UniRef50_Q31EG9: Ferrochelatase|unclassified	0.0370500086
+UniRef50_UPI0001745105: oligopeptide/dipeptide ABC transporter, permease protein, putative	0.0370485508
+UniRef50_UPI0001745105: oligopeptide/dipeptide ABC transporter, permease protein, putative|unclassified	0.0370485508
+UniRef50_UPI00037D6F18: histidine kinase	0.0370422418
+UniRef50_UPI00037D6F18: histidine kinase|unclassified	0.0370422418
+UniRef50_UPI00026574CE: PREDICTED: major facilitator superfamily domain-containing protein 10-like	0.0370389491
+UniRef50_UPI00026574CE: PREDICTED: major facilitator superfamily domain-containing protein 10-like|unclassified	0.0370389491
+UniRef50_UPI0004779786: MFS transporter permease	0.0370366867
+UniRef50_UPI0004779786: MFS transporter permease|unclassified	0.0370366867
+UniRef50_P98053: Alternative cytochrome c oxidase subunit 2	0.0370355762
+UniRef50_P98053: Alternative cytochrome c oxidase subunit 2|unclassified	0.0370355762
+UniRef50_B1G6Z3: Transposase IS66	0.0370345826
+UniRef50_B1G6Z3: Transposase IS66|unclassified	0.0370345826
+UniRef50_UPI000369B8F0: hypothetical protein	0.0370256279
+UniRef50_UPI000369B8F0: hypothetical protein|unclassified	0.0370256279
+UniRef50_UPI0003B541B4: gamma-glutamyltransferase	0.0370243039
+UniRef50_UPI0003B541B4: gamma-glutamyltransferase|unclassified	0.0370243039
+UniRef50_UPI000478C5E3: hypothetical protein	0.0370075561
+UniRef50_UPI000478C5E3: hypothetical protein|unclassified	0.0370075561
+UniRef50_Q8XQG4: L-aspartate oxidase 2	0.0370072478
+UniRef50_Q8XQG4: L-aspartate oxidase 2|unclassified	0.0370072478
+UniRef50_M1FB43: Sensory box/GGDEF/GAF/EAL domain protein	0.0370070958
+UniRef50_M1FB43: Sensory box/GGDEF/GAF/EAL domain protein|unclassified	0.0370070958
+UniRef50_Q20624-2: Isoform mocs1a of Molybdenum cofactor biosynthesis protein 1	0.0370067827
+UniRef50_Q20624-2: Isoform mocs1a of Molybdenum cofactor biosynthesis protein 1|unclassified	0.0370067827
+UniRef50_UPI00036BFA08: hypothetical protein	0.0370045569
+UniRef50_UPI00036BFA08: hypothetical protein|unclassified	0.0370045569
+UniRef50_UPI0002741A74	0.0370034225
+UniRef50_UPI0002741A74|unclassified	0.0370034225
+UniRef50_Q4XSF0: GTP-binding protein, putative (Fragment)	0.0369941503
+UniRef50_Q4XSF0: GTP-binding protein, putative (Fragment)|unclassified	0.0369941503
+UniRef50_UPI00047E20B7: hypothetical protein	0.0369931712
+UniRef50_UPI00047E20B7: hypothetical protein|unclassified	0.0369931712
+UniRef50_UPI00046B80C4: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial-like	0.0369905963
+UniRef50_UPI00046B80C4: PREDICTED: succinate-semialdehyde dehydrogenase, mitochondrial-like|unclassified	0.0369905963
+UniRef50_UPI000363A8EE: hypothetical protein	0.0369826380
+UniRef50_UPI000363A8EE: hypothetical protein|unclassified	0.0369826380
+UniRef50_A5GF42: Dihydroorotase	0.0369799546
+UniRef50_A5GF42: Dihydroorotase|unclassified	0.0369799546
+UniRef50_UPI0003113CC4: hypothetical protein	0.0369770103
+UniRef50_UPI0003113CC4: hypothetical protein|unclassified	0.0369770103
+UniRef50_UPI000237E29A: orotidine 5''''-phosphate decarboxylase	0.0369734268
+UniRef50_UPI000237E29A: orotidine 5''''-phosphate decarboxylase|unclassified	0.0369734268
+UniRef50_Q63060: Glycerol kinase	0.0369733376
+UniRef50_Q63060: Glycerol kinase|unclassified	0.0369733376
+UniRef50_A4XIS1: Bifunctional protein GlmU	0.0369686787
+UniRef50_A4XIS1: Bifunctional protein GlmU|unclassified	0.0369686787
+UniRef50_UPI00046483BC: flagellar biosynthesis protein FlhB	0.0369659885
+UniRef50_UPI00046483BC: flagellar biosynthesis protein FlhB|unclassified	0.0369659885
+UniRef50_W7QBC1	0.0369598663
+UniRef50_W7QBC1|unclassified	0.0369598663
+UniRef50_UPI00031B36EE: hypothetical protein	0.0369588692
+UniRef50_UPI00031B36EE: hypothetical protein|unclassified	0.0369588692
+UniRef50_UPI0001B43C25: hypothetical protein, partial	0.0369586584
+UniRef50_UPI0001B43C25: hypothetical protein, partial|unclassified	0.0369586584
+UniRef50_UPI00046D74E8: NADH:ubiquinone oxidoreductase subunit H	0.0369583652
+UniRef50_UPI00046D74E8: NADH:ubiquinone oxidoreductase subunit H|unclassified	0.0369583652
+UniRef50_UPI00036A8012: hypothetical protein	0.0369556836
+UniRef50_UPI00036A8012: hypothetical protein|unclassified	0.0369556836
+UniRef50_Q02XT4: Uronate isomerase	0.0369537818
+UniRef50_Q02XT4: Uronate isomerase|unclassified	0.0369537818
+UniRef50_UPI0004671A10: hypothetical protein	0.0369471202
+UniRef50_UPI0004671A10: hypothetical protein|unclassified	0.0369471202
+UniRef50_Q2RNI1	0.0369458462
+UniRef50_Q2RNI1|unclassified	0.0369458462
+UniRef50_O31381: Oxygen-independent coproporphyrinogen-III oxidase	0.0369396804
+UniRef50_O31381: Oxygen-independent coproporphyrinogen-III oxidase|unclassified	0.0369396804
+UniRef50_I9CNJ6: Hi0933 family protein	0.0369381525
+UniRef50_I9CNJ6: Hi0933 family protein|unclassified	0.0369381525
+UniRef50_UPI000299CFA5: metallophosphoesterase	0.0369347863
+UniRef50_UPI000299CFA5: metallophosphoesterase|unclassified	0.0369347863
+UniRef50_Q4SPK5: Chromosome 16 SCAF14537, whole genome shotgun sequence	0.0369346117
+UniRef50_Q4SPK5: Chromosome 16 SCAF14537, whole genome shotgun sequence|unclassified	0.0369346117
+UniRef50_UPI000315DB85: hypothetical protein	0.0369340100
+UniRef50_UPI000315DB85: hypothetical protein|unclassified	0.0369340100
+UniRef50_I3TLN8: Permease	0.0369335126
+UniRef50_I3TLN8: Permease|unclassified	0.0369335126
+UniRef50_Q6MKR6: Glutamate--tRNA ligase	0.0369287065
+UniRef50_Q6MKR6: Glutamate--tRNA ligase|unclassified	0.0369287065
+UniRef50_A0A011M3E6: Putative hydrolase YxeP	0.0369275502
+UniRef50_A0A011M3E6: Putative hydrolase YxeP|unclassified	0.0369275502
+UniRef50_Q3B4V9: NADH-quinone oxidoreductase subunit H	0.0369249865
+UniRef50_Q3B4V9: NADH-quinone oxidoreductase subunit H|unclassified	0.0369249865
+UniRef50_UPI000370345A: murein transglycosylase	0.0369243946
+UniRef50_UPI000370345A: murein transglycosylase|unclassified	0.0369243946
+UniRef50_UPI00046FAEC1: UDP-N-acetylglucosamine 2-epimerase	0.0369224585
+UniRef50_UPI00046FAEC1: UDP-N-acetylglucosamine 2-epimerase|unclassified	0.0369224585
+UniRef50_B8J0W8: Secretion protein HlyD family protein	0.0369223635
+UniRef50_B8J0W8: Secretion protein HlyD family protein|unclassified	0.0369223635
+UniRef50_R7GNX0: HD domain protein	0.0369211343
+UniRef50_R7GNX0: HD domain protein|unclassified	0.0369211343
+UniRef50_UPI0003B3B172: diguanylate cyclase	0.0369188196
+UniRef50_UPI0003B3B172: diguanylate cyclase|unclassified	0.0369188196
+UniRef50_D2NRJ6: Molybdopterin-guanine dinucleotide biosynthesis protein A	0.0369165912
+UniRef50_D2NRJ6: Molybdopterin-guanine dinucleotide biosynthesis protein A|unclassified	0.0369165912
+UniRef50_J7WUY8	0.0369165267
+UniRef50_J7WUY8|unclassified	0.0369165267
+UniRef50_UPI0004143B1C: hypothetical protein	0.0369154363
+UniRef50_UPI0004143B1C: hypothetical protein|unclassified	0.0369154363
+UniRef50_Q028M4: Histidine--tRNA ligase	0.0369113323
+UniRef50_Q028M4: Histidine--tRNA ligase|unclassified	0.0369113323
+UniRef50_G2T9S4	0.0369092615
+UniRef50_G2T9S4|unclassified	0.0369092615
+UniRef50_B4EVL3	0.0369071852
+UniRef50_B4EVL3|unclassified	0.0369071852
+UniRef50_Q89G33: Bll6514 protein	0.0369051469
+UniRef50_Q89G33: Bll6514 protein|unclassified	0.0369051469
+UniRef50_UPI000380C3C6: bactoprenol glucosyl transferase	0.0369004449
+UniRef50_UPI000380C3C6: bactoprenol glucosyl transferase|unclassified	0.0369004449
+UniRef50_UPI00037198AA: hypothetical protein	0.0368972726
+UniRef50_UPI00037198AA: hypothetical protein|unclassified	0.0368972726
+UniRef50_UPI0002F2F41D: hypothetical protein	0.0368960167
+UniRef50_UPI0002F2F41D: hypothetical protein|unclassified	0.0368960167
+UniRef50_S9XX50	0.0368953967
+UniRef50_S9XX50|unclassified	0.0368953967
+UniRef50_UPI0003B7AADE: spermidine synthase	0.0368911260
+UniRef50_UPI0003B7AADE: spermidine synthase|unclassified	0.0368911260
+UniRef50_Q479U4: Chaperone SurA	0.0368896847
+UniRef50_Q479U4: Chaperone SurA|unclassified	0.0368896847
+UniRef50_Q7PUM7: AGAP001608-PA	0.0368873117
+UniRef50_Q7PUM7: AGAP001608-PA|unclassified	0.0368873117
+UniRef50_UPI0002D7F8E7: hypothetical protein	0.0368835340
+UniRef50_UPI0002D7F8E7: hypothetical protein|unclassified	0.0368835340
+UniRef50_Q0AN41	0.0368825085
+UniRef50_Q0AN41|unclassified	0.0368825085
+UniRef50_UPI00036037C2: flagellar hook protein FlgE	0.0368808988
+UniRef50_UPI00036037C2: flagellar hook protein FlgE|unclassified	0.0368808988
+UniRef50_J8HSG9	0.0368774403
+UniRef50_J8HSG9|unclassified	0.0368774403
+UniRef50_M5AC35	0.0368739581
+UniRef50_M5AC35|unclassified	0.0368739581
+UniRef50_UPI0004771F9A: hypothetical protein	0.0368731030
+UniRef50_UPI0004771F9A: hypothetical protein|unclassified	0.0368731030
+UniRef50_UPI00036DA750: membrane protein	0.0368713305
+UniRef50_UPI00036DA750: membrane protein|unclassified	0.0368713305
+UniRef50_Q87LZ7: Phosphoglucosamine mutase	0.0368633349
+UniRef50_Q87LZ7: Phosphoglucosamine mutase|unclassified	0.0368633349
+UniRef50_UPI00016A2CAC: putative thermoresistant gluconokinase	0.0368609503
+UniRef50_UPI00016A2CAC: putative thermoresistant gluconokinase|unclassified	0.0368609503
+UniRef50_C3MBW4: UPF0758 protein NGR_c13970	0.0368606724
+UniRef50_C3MBW4: UPF0758 protein NGR_c13970|unclassified	0.0368606724
+UniRef50_UPI00036CECBE: hypothetical protein	0.0368568308
+UniRef50_UPI00036CECBE: hypothetical protein|unclassified	0.0368568308
+UniRef50_UPI000429EA82: hypothetical protein	0.0368549123
+UniRef50_UPI000429EA82: hypothetical protein|unclassified	0.0368549123
+UniRef50_UPI0003B488FD: histidinol dehydrogenase	0.0368524034
+UniRef50_UPI0003B488FD: histidinol dehydrogenase|unclassified	0.0368524034
+UniRef50_B0DRS1: Predicted protein	0.0368514610
+UniRef50_B0DRS1: Predicted protein|unclassified	0.0368514610
+UniRef50_U4L001: Similar to unnamed protein product [Aspergillus niger] acc. no. CAK37520	0.0368472413
+UniRef50_U4L001: Similar to unnamed protein product [Aspergillus niger] acc. no. CAK37520|unclassified	0.0368472413
+UniRef50_A0A024HX03	0.0368416591
+UniRef50_A0A024HX03|unclassified	0.0368416591
+UniRef50_UPI00035EA91D: hypothetical protein	0.0368398354
+UniRef50_UPI00035EA91D: hypothetical protein|unclassified	0.0368398354
+UniRef50_D0IA93: Ferric aerobactin ABC transporter substrate binding protein	0.0368385487
+UniRef50_D0IA93: Ferric aerobactin ABC transporter substrate binding protein|unclassified	0.0368385487
+UniRef50_UPI00037B2E7D: hypothetical protein	0.0368367796
+UniRef50_UPI00037B2E7D: hypothetical protein|unclassified	0.0368367796
+UniRef50_UPI00045E70DE: phosphoglucosamine mutase	0.0368351184
+UniRef50_UPI00045E70DE: phosphoglucosamine mutase|unclassified	0.0368351184
+UniRef50_L0NDK3: Phage tail sheath protein FI	0.0368329160
+UniRef50_L0NDK3: Phage tail sheath protein FI|unclassified	0.0368329160
+UniRef50_UPI0003D73B51: PREDICTED: protein arginine N-methyltransferase 3 isoform X2	0.0368319308
+UniRef50_UPI0003D73B51: PREDICTED: protein arginine N-methyltransferase 3 isoform X2|unclassified	0.0368319308
+UniRef50_UPI00047E1DD8: hypothetical protein	0.0368231168
+UniRef50_UPI00047E1DD8: hypothetical protein|unclassified	0.0368231168
+UniRef50_UPI00036F5B80: hypothetical protein	0.0368220057
+UniRef50_UPI00036F5B80: hypothetical protein|unclassified	0.0368220057
+UniRef50_UPI0003B309D3: hypothetical protein	0.0368219643
+UniRef50_UPI0003B309D3: hypothetical protein|unclassified	0.0368219643
+UniRef50_Q31E54: 8-amino-7-oxononanoate synthase	0.0368218651
+UniRef50_Q31E54: 8-amino-7-oxononanoate synthase|unclassified	0.0368218651
+UniRef50_Q5FP90: Probable malate:quinone oxidoreductase	0.0368201330
+UniRef50_Q5FP90: Probable malate:quinone oxidoreductase|unclassified	0.0368201330
+UniRef50_Q9Z1J3: Cysteine desulfurase, mitochondrial	0.0368151805
+UniRef50_Q9Z1J3: Cysteine desulfurase, mitochondrial|unclassified	0.0368151805
+UniRef50_UPI0003B701C3: RNA polymerase sigma54 factor	0.0368115792
+UniRef50_UPI0003B701C3: RNA polymerase sigma54 factor|unclassified	0.0368115792
+UniRef50_UPI00036DD217: hypothetical protein	0.0368022391
+UniRef50_UPI00036DD217: hypothetical protein|unclassified	0.0368022391
+UniRef50_D3KKI8: Predicted protein	0.0367966523
+UniRef50_D3KKI8: Predicted protein|unclassified	0.0367966523
+UniRef50_X8AR44: Condensation domain protein	0.0367966037
+UniRef50_X8AR44: Condensation domain protein|unclassified	0.0367966037
+UniRef50_Q2GIH0: Exodeoxyribonuclease 7 large subunit	0.0367824867
+UniRef50_Q2GIH0: Exodeoxyribonuclease 7 large subunit|unclassified	0.0367824867
+UniRef50_F7TUH6: Aminoacyl-histidine dipeptidase	0.0367817929
+UniRef50_F7TUH6: Aminoacyl-histidine dipeptidase|unclassified	0.0367817929
+UniRef50_UPI000369A03C: hypothetical protein, partial	0.0367769695
+UniRef50_UPI000369A03C: hypothetical protein, partial|unclassified	0.0367769695
+UniRef50_UPI00034B97D9: glycerol-3-phosphate ABC transporter ATP-binding protein	0.0367766721
+UniRef50_UPI00034B97D9: glycerol-3-phosphate ABC transporter ATP-binding protein|unclassified	0.0367766721
+UniRef50_UPI0003B40484: ABC transporter substrate-binding protein	0.0367765939
+UniRef50_UPI0003B40484: ABC transporter substrate-binding protein|unclassified	0.0367765939
+UniRef50_UPI0002F26DBE: hypothetical protein	0.0367751640
+UniRef50_UPI0002F26DBE: hypothetical protein|unclassified	0.0367751640
+UniRef50_UPI00036523DD: hypothetical protein	0.0367745833
+UniRef50_UPI00036523DD: hypothetical protein|unclassified	0.0367745833
+UniRef50_UPI00035EA204: hypothetical protein	0.0367734089
+UniRef50_UPI00035EA204: hypothetical protein|unclassified	0.0367734089
+UniRef50_UPI000376C1CF: hypothetical protein	0.0367683038
+UniRef50_UPI000376C1CF: hypothetical protein|unclassified	0.0367683038
+UniRef50_UPI00034F2493: PREDICTED: PDZ domain-containing protein 7 isoform X2	0.0367647966
+UniRef50_UPI00034F2493: PREDICTED: PDZ domain-containing protein 7 isoform X2|unclassified	0.0367647966
+UniRef50_UPI0004733116: hypothetical protein, partial	0.0367628035
+UniRef50_UPI0004733116: hypothetical protein, partial|unclassified	0.0367628035
+UniRef50_I9KEB8: Cysteine synthase	0.0367618790
+UniRef50_I9KEB8: Cysteine synthase|unclassified	0.0367618790
+UniRef50_W5XBZ4: PAS domain protein	0.0367596746
+UniRef50_W5XBZ4: PAS domain protein|unclassified	0.0367596746
+UniRef50_I5J4N4	0.0367579504
+UniRef50_I5J4N4|unclassified	0.0367579504
+UniRef50_D2VJL9: Predicted protein	0.0367530296
+UniRef50_D2VJL9: Predicted protein|unclassified	0.0367530296
+UniRef50_UPI00047D9A8B: allantoate amidohydrolase	0.0367518132
+UniRef50_UPI00047D9A8B: allantoate amidohydrolase|unclassified	0.0367518132
+UniRef50_UPI00035DEFE9: hypothetical protein	0.0367516942
+UniRef50_UPI00035DEFE9: hypothetical protein|unclassified	0.0367516942
+UniRef50_O09174: Alpha-methylacyl-CoA racemase	0.0367509083
+UniRef50_O09174: Alpha-methylacyl-CoA racemase|unclassified	0.0367509083
+UniRef50_Q831L8: Teichoic acids export ATP-binding protein TagH	0.0367503551
+UniRef50_Q831L8: Teichoic acids export ATP-binding protein TagH|unclassified	0.0367503551
+UniRef50_UPI0004761D99: cytochrome B561	0.0367469571
+UniRef50_UPI0004761D99: cytochrome B561|unclassified	0.0367469571
+UniRef50_UPI00038020C6: hypothetical protein	0.0367450205
+UniRef50_UPI00038020C6: hypothetical protein|unclassified	0.0367450205
+UniRef50_Q28RU9	0.0367427485
+UniRef50_Q28RU9|unclassified	0.0367427485
+UniRef50_UPI00016C5306: ATP-dependent DNA helicase	0.0367415866
+UniRef50_UPI00016C5306: ATP-dependent DNA helicase|unclassified	0.0367415866
+UniRef50_UPI000361DDA5: hypothetical protein	0.0367412653
+UniRef50_UPI000361DDA5: hypothetical protein|unclassified	0.0367412653
+UniRef50_UPI00016C57C9: lysyl-tRNA synthetase	0.0367400598
+UniRef50_UPI00016C57C9: lysyl-tRNA synthetase|unclassified	0.0367400598
+UniRef50_D3P230: Transposase	0.0367364566
+UniRef50_D3P230: Transposase|unclassified	0.0367364566
+UniRef50_D8U6B8	0.0367355159
+UniRef50_D8U6B8|unclassified	0.0367355159
+UniRef50_UPI00036A9F13: amino acid permease	0.0367354703
+UniRef50_UPI00036A9F13: amino acid permease|unclassified	0.0367354703
+UniRef50_A1K9L8: Valine--tRNA ligase	0.0367325992
+UniRef50_A1K9L8: Valine--tRNA ligase|unclassified	0.0367325992
+UniRef50_UPI000369FD08: hypothetical protein	0.0367305630
+UniRef50_UPI000369FD08: hypothetical protein|unclassified	0.0367305630
+UniRef50_W5X6E2: ABC-type transporter ATP-binding protein EcsA	0.0367298560
+UniRef50_W5X6E2: ABC-type transporter ATP-binding protein EcsA|unclassified	0.0367298560
+UniRef50_Q81ZS7: Glutamine--tRNA ligase	0.0367216832
+UniRef50_Q81ZS7: Glutamine--tRNA ligase|unclassified	0.0367216832
+UniRef50_UPI00035D6E94: hypothetical protein	0.0367201244
+UniRef50_UPI00035D6E94: hypothetical protein|unclassified	0.0367201244
+UniRef50_UPI000426FFBD: hypothetical protein	0.0367165472
+UniRef50_UPI000426FFBD: hypothetical protein|unclassified	0.0367165472
+UniRef50_R6AJM2	0.0367161389
+UniRef50_R6AJM2|unclassified	0.0367161389
+UniRef50_UPI0002E1560F: hypothetical protein	0.0367052143
+UniRef50_UPI0002E1560F: hypothetical protein|unclassified	0.0367052143
+UniRef50_UPI000383C6D1: PREDICTED: maleylacetoacetate isomerase isoform X1	0.0367013520
+UniRef50_UPI000383C6D1: PREDICTED: maleylacetoacetate isomerase isoform X1|unclassified	0.0367013520
+UniRef50_B2GD08: Dihydroorotase	0.0366993362
+UniRef50_B2GD08: Dihydroorotase|unclassified	0.0366993362
+UniRef50_UPI000369F2EE: hypothetical protein, partial	0.0366973483
+UniRef50_UPI000369F2EE: hypothetical protein, partial|unclassified	0.0366973483
+UniRef50_UPI000359720A: PREDICTED: lengsin-like	0.0366931255
+UniRef50_UPI000359720A: PREDICTED: lengsin-like|unclassified	0.0366931255
+UniRef50_UPI000479E6F3: hypothetical protein	0.0366908472
+UniRef50_UPI000479E6F3: hypothetical protein|unclassified	0.0366908472
+UniRef50_UPI000363896D: dihydrolipoyl dehydrogenase, partial	0.0366897118
+UniRef50_UPI000363896D: dihydrolipoyl dehydrogenase, partial|unclassified	0.0366897118
+UniRef50_UPI0003131A52: hypothetical protein	0.0366895381
+UniRef50_UPI0003131A52: hypothetical protein|unclassified	0.0366895381
+UniRef50_UPI0003665466: hypothetical protein	0.0366892364
+UniRef50_UPI0003665466: hypothetical protein|unclassified	0.0366892364
+UniRef50_Q2IL15: NADH-quinone oxidoreductase subunit H	0.0366887175
+UniRef50_Q2IL15: NADH-quinone oxidoreductase subunit H|unclassified	0.0366887175
+UniRef50_UPI00047853E2: hypothetical protein	0.0366845593
+UniRef50_UPI00047853E2: hypothetical protein|unclassified	0.0366845593
+UniRef50_A5ICP2: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.0366821881
+UniRef50_A5ICP2: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.0366821881
+UniRef50_UPI0003717191: hypothetical protein	0.0366786304
+UniRef50_UPI0003717191: hypothetical protein|unclassified	0.0366786304
+UniRef50_Q07523: Hydroxyacid oxidase 2	0.0366775165
+UniRef50_Q07523: Hydroxyacid oxidase 2|unclassified	0.0366775165
+UniRef50_R5FTF5	0.0366761591
+UniRef50_R5FTF5|unclassified	0.0366761591
+UniRef50_UPI00047AA814: hypothetical protein	0.0366740419
+UniRef50_UPI00047AA814: hypothetical protein|unclassified	0.0366740419
+UniRef50_E1RC82	0.0366731607
+UniRef50_E1RC82|unclassified	0.0366731607
+UniRef50_UPI000471FBA0: formate dehydrogenase	0.0366639351
+UniRef50_UPI000471FBA0: formate dehydrogenase|unclassified	0.0366639351
+UniRef50_Q5KUX3: Ribose import ATP-binding protein RbsA	0.0366620407
+UniRef50_Q5KUX3: Ribose import ATP-binding protein RbsA|unclassified	0.0366620407
+UniRef50_P05096: DNA primase	0.0366611924
+UniRef50_P05096: DNA primase|unclassified	0.0366611924
+UniRef50_F3X0N5	0.0366596086
+UniRef50_F3X0N5|unclassified	0.0366596086
+UniRef50_E8RQD7: Peptidase M15A	0.0366589927
+UniRef50_E8RQD7: Peptidase M15A|unclassified	0.0366589927
+UniRef50_D2VAS2: Predicted protein	0.0366566586
+UniRef50_D2VAS2: Predicted protein|unclassified	0.0366566586
+UniRef50_UPI0003748C32: hypothetical protein, partial	0.0366543588
+UniRef50_UPI0003748C32: hypothetical protein, partial|unclassified	0.0366543588
+UniRef50_UPI000393DBA5: PREDICTED: gamma-glutamyltranspeptidase 3-like isoform X1	0.0366540622
+UniRef50_UPI000393DBA5: PREDICTED: gamma-glutamyltranspeptidase 3-like isoform X1|unclassified	0.0366540622
+UniRef50_C3Y0K1	0.0366539937
+UniRef50_C3Y0K1|unclassified	0.0366539937
+UniRef50_UPI00037E40AA: hypothetical protein	0.0366539733
+UniRef50_UPI00037E40AA: hypothetical protein|unclassified	0.0366539733
+UniRef50_R9X7C4: MobA/MobL protein	0.0366527626
+UniRef50_R9X7C4: MobA/MobL protein|unclassified	0.0366527626
+UniRef50_UPI0003B63A82: dehydrogenase	0.0366510861
+UniRef50_UPI0003B63A82: dehydrogenase|unclassified	0.0366510861
+UniRef50_D5XF50	0.0366501902
+UniRef50_D5XF50|unclassified	0.0366501902
+UniRef50_UPI00047A3403: hippurate hydrolase	0.0366496050
+UniRef50_UPI00047A3403: hippurate hydrolase|unclassified	0.0366496050
+UniRef50_Q99M04: Lipoyl synthase, mitochondrial	0.0366438044
+UniRef50_Q99M04: Lipoyl synthase, mitochondrial|unclassified	0.0366438044
+UniRef50_A7MIK4	0.0366431368
+UniRef50_A7MIK4|unclassified	0.0366431368
+UniRef50_UPI0003EA935D: PREDICTED: amidophosphoribosyltransferase 1, chloroplastic-like	0.0366396740
+UniRef50_UPI0003EA935D: PREDICTED: amidophosphoribosyltransferase 1, chloroplastic-like|unclassified	0.0366396740
+UniRef50_C5BR43: Ribosomal RNA large subunit methyltransferase M	0.0366393720
+UniRef50_C5BR43: Ribosomal RNA large subunit methyltransferase M|unclassified	0.0366393720
+UniRef50_I5BS09	0.0366386144
+UniRef50_I5BS09|unclassified	0.0366386144
+UniRef50_UPI00047B09DF: hypothetical protein	0.0366383934
+UniRef50_UPI00047B09DF: hypothetical protein|unclassified	0.0366383934
+UniRef50_UPI000419988C: hypothetical protein	0.0366377287
+UniRef50_UPI000419988C: hypothetical protein|unclassified	0.0366377287
+UniRef50_UPI000465FF7F: DSBA oxidoreductase, partial	0.0366360738
+UniRef50_UPI000465FF7F: DSBA oxidoreductase, partial|unclassified	0.0366360738
+UniRef50_UPI0002F798B9: hypothetical protein	0.0366318535
+UniRef50_UPI0002F798B9: hypothetical protein|unclassified	0.0366318535
+UniRef50_UPI0004675A91: hypothetical protein	0.0366309827
+UniRef50_UPI0004675A91: hypothetical protein|unclassified	0.0366309827
+UniRef50_UPI00042B1BFA: Nitrilase/cyanide hydratase and apolipoprotein N-acyltransferase family protein isoform 1	0.0366295129
+UniRef50_UPI00042B1BFA: Nitrilase/cyanide hydratase and apolipoprotein N-acyltransferase family protein isoform 1|unclassified	0.0366295129
+UniRef50_Q9LD43: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha, chloroplastic	0.0366292564
+UniRef50_Q9LD43: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha, chloroplastic|unclassified	0.0366292564
+UniRef50_R6LWP7	0.0366251857
+UniRef50_R6LWP7|unclassified	0.0366251857
+UniRef50_A3X0R4: Terminase, large subunit, putative	0.0366212748
+UniRef50_A3X0R4: Terminase, large subunit, putative|unclassified	0.0366212748
+UniRef50_Q62IJ6: Potassium-transporting ATPase A chain	0.0366145666
+UniRef50_Q62IJ6: Potassium-transporting ATPase A chain|unclassified	0.0366145666
+UniRef50_UPI000371A755: hypothetical protein	0.0366120272
+UniRef50_UPI000371A755: hypothetical protein|unclassified	0.0366120272
+UniRef50_Q47KH3: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0366062355
+UniRef50_Q47KH3: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0366062355
+UniRef50_W6KCI0: Putative chaC-like cation transporter	0.0366052509
+UniRef50_W6KCI0: Putative chaC-like cation transporter|unclassified	0.0366052509
+UniRef50_UPI000395AB6A: methyl-accepting chemotaxis protein	0.0365943131
+UniRef50_UPI000395AB6A: methyl-accepting chemotaxis protein|unclassified	0.0365943131
+UniRef50_UPI0002F9333F: hypothetical protein	0.0365940201
+UniRef50_UPI0002F9333F: hypothetical protein|unclassified	0.0365940201
+UniRef50_A5FQS4: Adenylosuccinate synthetase	0.0365936069
+UniRef50_A5FQS4: Adenylosuccinate synthetase|unclassified	0.0365936069
+UniRef50_A0A058ZE84	0.0365931353
+UniRef50_A0A058ZE84|unclassified	0.0365931353
+UniRef50_UPI00036A863D: hypothetical protein	0.0365919825
+UniRef50_UPI00036A863D: hypothetical protein|unclassified	0.0365919825
+UniRef50_UPI00036F3BE3: hypothetical protein	0.0365907256
+UniRef50_UPI00036F3BE3: hypothetical protein|unclassified	0.0365907256
+UniRef50_Q8RHM3: Bifunctional protein GlmU	0.0365887147
+UniRef50_Q8RHM3: Bifunctional protein GlmU|unclassified	0.0365887147
+UniRef50_UPI000370BF2B: hypothetical protein	0.0365867455
+UniRef50_UPI000370BF2B: hypothetical protein|unclassified	0.0365867455
+UniRef50_UPI0004081419: beta-lactamase	0.0365858377
+UniRef50_UPI0004081419: beta-lactamase|unclassified	0.0365858377
+UniRef50_W7LCH6	0.0365846619
+UniRef50_W7LCH6|unclassified	0.0365846619
+UniRef50_P65691: ATP-dependent 6-phosphofructokinase	0.0365807381
+UniRef50_P65691: ATP-dependent 6-phosphofructokinase|unclassified	0.0365807381
+UniRef50_A4W0L7: Predicted permease	0.0365778256
+UniRef50_A4W0L7: Predicted permease|unclassified	0.0365778256
+UniRef50_W1Q4A7	0.0365766219
+UniRef50_W1Q4A7|unclassified	0.0365766219
+UniRef50_UPI00040ED66A: riboflavin biosynthesis protein RibD	0.0365749664
+UniRef50_UPI00040ED66A: riboflavin biosynthesis protein RibD|unclassified	0.0365749664
+UniRef50_UPI0003702865: hypothetical protein	0.0365741381
+UniRef50_UPI0003702865: hypothetical protein|unclassified	0.0365741381
+UniRef50_UPI000382D201: hypothetical protein	0.0365736687
+UniRef50_UPI000382D201: hypothetical protein|unclassified	0.0365736687
+UniRef50_UPI00016C38B7: CheA chemotaxis protein	0.0365730450
+UniRef50_UPI00016C38B7: CheA chemotaxis protein|unclassified	0.0365730450
+UniRef50_G1WGN2	0.0365725534
+UniRef50_G1WGN2|unclassified	0.0365725534
+UniRef50_Q1AVX4: UDP-N-acetylmuramate--L-alanine ligase	0.0365713293
+UniRef50_Q1AVX4: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.0365713293
+UniRef50_UPI000346609E: hypothetical protein	0.0365711410
+UniRef50_UPI000346609E: hypothetical protein|unclassified	0.0365711410
+UniRef50_K8ZND3: Putative permease	0.0365650671
+UniRef50_K8ZND3: Putative permease|unclassified	0.0365650671
+UniRef50_UPI0003B6EB40: flagellar biosynthesis protein FlhB	0.0365633300
+UniRef50_UPI0003B6EB40: flagellar biosynthesis protein FlhB|unclassified	0.0365633300
+UniRef50_W7DU07: GTP-binding protein YjiA	0.0365624422
+UniRef50_W7DU07: GTP-binding protein YjiA|unclassified	0.0365624422
+UniRef50_UPI0004447121: PREDICTED: uridine-cytidine kinase-like 1 isoform X2	0.0365609112
+UniRef50_UPI0004447121: PREDICTED: uridine-cytidine kinase-like 1 isoform X2|unclassified	0.0365609112
+UniRef50_UPI00037A716A: hypothetical protein	0.0365594917
+UniRef50_UPI00037A716A: hypothetical protein|unclassified	0.0365594917
+UniRef50_UPI0002490707: ABC-type oligopeptide transport system, periplasmic component	0.0365574697
+UniRef50_UPI0002490707: ABC-type oligopeptide transport system, periplasmic component|unclassified	0.0365574697
+UniRef50_A1WWV9: tRNA-specific 2-thiouridylase MnmA	0.0365529789
+UniRef50_A1WWV9: tRNA-specific 2-thiouridylase MnmA|unclassified	0.0365529789
+UniRef50_UPI0003B7917E: DNA-binding protein	0.0365529441
+UniRef50_UPI0003B7917E: DNA-binding protein|unclassified	0.0365529441
+UniRef50_UPI00042C16C5: PREDICTED: 28S ribosomal protein S18a, mitochondrial	0.0365496492
+UniRef50_UPI00042C16C5: PREDICTED: 28S ribosomal protein S18a, mitochondrial|unclassified	0.0365496492
+UniRef50_C1A8M5: Serine--tRNA ligase	0.0365470394
+UniRef50_C1A8M5: Serine--tRNA ligase|unclassified	0.0365470394
+UniRef50_UPI00037F7529: hypothetical protein	0.0365455559
+UniRef50_UPI00037F7529: hypothetical protein|unclassified	0.0365455559
+UniRef50_W1VLC3	0.0365410653
+UniRef50_W1VLC3|unclassified	0.0365410653
+UniRef50_C6J7F4: GIY-YIG catalytic domain protein	0.0365380936
+UniRef50_C6J7F4: GIY-YIG catalytic domain protein|unclassified	0.0365380936
+UniRef50_L7W6T6	0.0365371359
+UniRef50_L7W6T6|unclassified	0.0365371359
+UniRef50_UPI000362C752: hypothetical protein	0.0365348984
+UniRef50_UPI000362C752: hypothetical protein|unclassified	0.0365348984
+UniRef50_UPI000474FC11: hypothetical protein	0.0365318657
+UniRef50_UPI000474FC11: hypothetical protein|unclassified	0.0365318657
+UniRef50_B8DU64: Tyrosine--tRNA ligase	0.0365299959
+UniRef50_B8DU64: Tyrosine--tRNA ligase|unclassified	0.0365299959
+UniRef50_UPI00047175B0: hypothetical protein	0.0365298484
+UniRef50_UPI00047175B0: hypothetical protein|unclassified	0.0365298484
+UniRef50_A0L5I2: Arginine--tRNA ligase	0.0365276335
+UniRef50_A0L5I2: Arginine--tRNA ligase|unclassified	0.0365276335
+UniRef50_Q1DG75	0.0365259123
+UniRef50_Q1DG75|unclassified	0.0365259123
+UniRef50_K4KLF6	0.0365169281
+UniRef50_K4KLF6|unclassified	0.0365169281
+UniRef50_UPI000370468C: hypothetical protein	0.0365166962
+UniRef50_UPI000370468C: hypothetical protein|unclassified	0.0365166962
+UniRef50_UPI00047C05E7: hypothetical protein	0.0365114907
+UniRef50_UPI00047C05E7: hypothetical protein|unclassified	0.0365114907
+UniRef50_UPI00037138D9: hypothetical protein	0.0365098669
+UniRef50_UPI00037138D9: hypothetical protein|unclassified	0.0365098669
+UniRef50_UPI0002FEA71A: hypothetical protein	0.0365086024
+UniRef50_UPI0002FEA71A: hypothetical protein|unclassified	0.0365086024
+UniRef50_UPI00036F271C: hypothetical protein, partial	0.0365070232
+UniRef50_UPI00036F271C: hypothetical protein, partial|unclassified	0.0365070232
+UniRef50_Q01YD9: Bifunctional protein GlmU	0.0365048782
+UniRef50_Q01YD9: Bifunctional protein GlmU|unclassified	0.0365048782
+UniRef50_UPI00047C1110: hypothetical protein	0.0365041454
+UniRef50_UPI00047C1110: hypothetical protein|unclassified	0.0365041454
+UniRef50_UPI0003EDE645: PREDICTED: histidine ammonia-lyase-like	0.0365039184
+UniRef50_UPI0003EDE645: PREDICTED: histidine ammonia-lyase-like|unclassified	0.0365039184
+UniRef50_UPI0003B3E7F0: peptidase U32	0.0364946170
+UniRef50_UPI0003B3E7F0: peptidase U32|unclassified	0.0364946170
+UniRef50_UPI00041B20C7: hypothetical protein	0.0364917502
+UniRef50_UPI00041B20C7: hypothetical protein|unclassified	0.0364917502
+UniRef50_UPI0004763F27: hypothetical protein	0.0364892996
+UniRef50_UPI0004763F27: hypothetical protein|unclassified	0.0364892996
+UniRef50_UPI0003F4DFB1: hypothetical protein	0.0364860432
+UniRef50_UPI0003F4DFB1: hypothetical protein|unclassified	0.0364860432
+UniRef50_UPI0003FA43CF: hypothetical protein	0.0364851031
+UniRef50_UPI0003FA43CF: hypothetical protein|unclassified	0.0364851031
+UniRef50_UPI000469C2E8: hypothetical protein	0.0364816053
+UniRef50_UPI000469C2E8: hypothetical protein|unclassified	0.0364816053
+UniRef50_UPI0003B56496: taurine ABC transporter permease	0.0364812170
+UniRef50_UPI0003B56496: taurine ABC transporter permease|unclassified	0.0364812170
+UniRef50_UPI0003821B2F: hypothetical protein, partial	0.0364793175
+UniRef50_UPI0003821B2F: hypothetical protein, partial|unclassified	0.0364793175
+UniRef50_UPI00046A4E82: phage tail length tape measure protein	0.0364738992
+UniRef50_UPI00046A4E82: phage tail length tape measure protein|unclassified	0.0364738992
+UniRef50_UPI0004633E7A: hypothetical protein	0.0364720299
+UniRef50_UPI0004633E7A: hypothetical protein|unclassified	0.0364720299
+UniRef50_A3XC42	0.0364710729
+UniRef50_A3XC42|unclassified	0.0364710729
+UniRef50_UPI0003A51BFF: recombination and repair protein	0.0364691635
+UniRef50_UPI0003A51BFF: recombination and repair protein|unclassified	0.0364691635
+UniRef50_UPI000375510C: hypothetical protein	0.0364689394
+UniRef50_UPI000375510C: hypothetical protein|unclassified	0.0364689394
+UniRef50_UPI000455CDCA: bud site selection protein 16	0.0364672672
+UniRef50_UPI000455CDCA: bud site selection protein 16|unclassified	0.0364672672
+UniRef50_R7U849	0.0364631739
+UniRef50_R7U849|unclassified	0.0364631739
+UniRef50_UPI0003FA7587: hypothetical protein	0.0364602145
+UniRef50_UPI0003FA7587: hypothetical protein|unclassified	0.0364602145
+UniRef50_UPI0004710E02: hypothetical protein	0.0364573149
+UniRef50_UPI0004710E02: hypothetical protein|unclassified	0.0364573149
+UniRef50_Q8SCS5: PHIKZ237	0.0364553388
+UniRef50_Q8SCS5: PHIKZ237|unclassified	0.0364553388
+UniRef50_Q7V8L0: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0364548433
+UniRef50_Q7V8L0: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0364548433
+UniRef50_UPI00047E37D8: thiamine ABC transporter substrate-binding protein	0.0364450973
+UniRef50_UPI00047E37D8: thiamine ABC transporter substrate-binding protein|unclassified	0.0364450973
+UniRef50_UPI00047AF807: hypothetical protein	0.0364440211
+UniRef50_UPI00047AF807: hypothetical protein|unclassified	0.0364440211
+UniRef50_UPI00047E0C36: hypothetical protein	0.0364370794
+UniRef50_UPI00047E0C36: hypothetical protein|unclassified	0.0364370794
+UniRef50_B2VVA8: Arginine biosynthesis bifunctional protein ArgJ, mitochondrial	0.0364316601
+UniRef50_B2VVA8: Arginine biosynthesis bifunctional protein ArgJ, mitochondrial|unclassified	0.0364316601
+UniRef50_UPI0002896149: penicillin-binding protein 2B	0.0364307186
+UniRef50_UPI0002896149: penicillin-binding protein 2B|unclassified	0.0364307186
+UniRef50_UPI00037E0365: hypothetical protein	0.0364286321
+UniRef50_UPI00037E0365: hypothetical protein|unclassified	0.0364286321
+UniRef50_UPI0002D5BBC2: hypothetical protein	0.0364255270
+UniRef50_UPI0002D5BBC2: hypothetical protein|unclassified	0.0364255270
+UniRef50_C7DEC2: OmpA domain protein	0.0364236682
+UniRef50_C7DEC2: OmpA domain protein|unclassified	0.0364236682
+UniRef50_UPI00036DD34E: hypothetical protein	0.0364211676
+UniRef50_UPI00036DD34E: hypothetical protein|unclassified	0.0364211676
+UniRef50_K6CSU4: PAS/PAC and GAF sensor-containing diguanylate cyclase/phosphodiesterase	0.0364202177
+UniRef50_K6CSU4: PAS/PAC and GAF sensor-containing diguanylate cyclase/phosphodiesterase|unclassified	0.0364202177
+UniRef50_UPI00036921E0: peptide ABC transporter ATP-binding protein	0.0364185829
+UniRef50_UPI00036921E0: peptide ABC transporter ATP-binding protein|unclassified	0.0364185829
+UniRef50_A9VAQ5: Predicted protein	0.0364185733
+UniRef50_A9VAQ5: Predicted protein|unclassified	0.0364185733
+UniRef50_T0LGF4	0.0364182488
+UniRef50_T0LGF4|unclassified	0.0364182488
+UniRef50_UPI00039E9E26: preprotein translocase subunit SecD	0.0364181412
+UniRef50_UPI00039E9E26: preprotein translocase subunit SecD|unclassified	0.0364181412
+UniRef50_E1GQB8	0.0364171826
+UniRef50_E1GQB8|unclassified	0.0364171826
+UniRef50_K7VG66	0.0364171648
+UniRef50_K7VG66|unclassified	0.0364171648
+UniRef50_B6B4Q7	0.0364112053
+UniRef50_B6B4Q7|unclassified	0.0364112053
+UniRef50_F9UF35	0.0364097351
+UniRef50_F9UF35|unclassified	0.0364097351
+UniRef50_UPI00039562FE	0.0364071635
+UniRef50_UPI00039562FE|unclassified	0.0364071635
+UniRef50_UPI000366AB7F: hypothetical protein	0.0364055432
+UniRef50_UPI000366AB7F: hypothetical protein|unclassified	0.0364055432
+UniRef50_UPI0004177A95: pyrimidine-nucleoside phosphorylase	0.0364048726
+UniRef50_UPI0004177A95: pyrimidine-nucleoside phosphorylase|unclassified	0.0364048726
+UniRef50_UPI000375252A: hypothetical protein	0.0364045420
+UniRef50_UPI000375252A: hypothetical protein|unclassified	0.0364045420
+UniRef50_K4JRS2	0.0364019657
+UniRef50_K4JRS2|unclassified	0.0364019657
+UniRef50_UPI000465A7EF: hypothetical protein	0.0364004849
+UniRef50_UPI000465A7EF: hypothetical protein|unclassified	0.0364004849
+UniRef50_UPI000360050D: MULTISPECIES: hypothetical protein	0.0363997235
+UniRef50_UPI000360050D: MULTISPECIES: hypothetical protein|unclassified	0.0363997235
+UniRef50_K4L163: ATPase	0.0363942009
+UniRef50_K4L163: ATPase|unclassified	0.0363942009
+UniRef50_X6L2C0	0.0363936085
+UniRef50_X6L2C0|unclassified	0.0363936085
+UniRef50_T0LV38: Beta-lactamase	0.0363903289
+UniRef50_T0LV38: Beta-lactamase|unclassified	0.0363903289
+UniRef50_B8ZUC1: Phosphoglucosamine mutase	0.0363884517
+UniRef50_B8ZUC1: Phosphoglucosamine mutase|unclassified	0.0363884517
+UniRef50_UPI000382ECE5: hypothetical protein	0.0363860388
+UniRef50_UPI000382ECE5: hypothetical protein|unclassified	0.0363860388
+UniRef50_UPI000367BD21: hypothetical protein, partial	0.0363859524
+UniRef50_UPI000367BD21: hypothetical protein, partial|unclassified	0.0363859524
+UniRef50_P9WJI6: Nicotinate phosphoribosyltransferase pncB2	0.0363822124
+UniRef50_P9WJI6: Nicotinate phosphoribosyltransferase pncB2|unclassified	0.0363822124
+UniRef50_UPI0003C11737: PREDICTED: NAD(P) transhydrogenase, mitochondrial-like, partial	0.0363811648
+UniRef50_UPI0003C11737: PREDICTED: NAD(P) transhydrogenase, mitochondrial-like, partial|unclassified	0.0363811648
+UniRef50_B5JJZ7: Conserved domain protein	0.0363789327
+UniRef50_B5JJZ7: Conserved domain protein|unclassified	0.0363789327
+UniRef50_Q8EMK7	0.0363778281
+UniRef50_Q8EMK7|unclassified	0.0363778281
+UniRef50_UPI0004761AF5: hypothetical protein	0.0363681421
+UniRef50_UPI0004761AF5: hypothetical protein|unclassified	0.0363681421
+UniRef50_UPI0003B7A4DF: hypothetical protein	0.0363665682
+UniRef50_UPI0003B7A4DF: hypothetical protein|unclassified	0.0363665682
+UniRef50_UPI00046F0F35: aspartate ammonia-lyase, partial	0.0363661536
+UniRef50_UPI00046F0F35: aspartate ammonia-lyase, partial|unclassified	0.0363661536
+UniRef50_UPI0003FBEF0D: hypothetical protein	0.0363647383
+UniRef50_UPI0003FBEF0D: hypothetical protein|unclassified	0.0363647383
+UniRef50_Z9J533: Conjugal transfer protein TraN (Fragment)	0.0363639702
+UniRef50_Z9J533: Conjugal transfer protein TraN (Fragment)|unclassified	0.0363639702
+UniRef50_UPI0003752AFD: hypothetical protein	0.0363621680
+UniRef50_UPI0003752AFD: hypothetical protein|unclassified	0.0363621680
+UniRef50_A0A022FNY3: D-alanyl-D-alanine carboxypeptidase	0.0363618859
+UniRef50_A0A022FNY3: D-alanyl-D-alanine carboxypeptidase|unclassified	0.0363618859
+UniRef50_R5C9T1	0.0363592074
+UniRef50_R5C9T1|unclassified	0.0363592074
+UniRef50_D0Z2D3	0.0363566662
+UniRef50_D0Z2D3|unclassified	0.0363566662
+UniRef50_W4URZ6	0.0363556275
+UniRef50_W4URZ6|unclassified	0.0363556275
+UniRef50_H8I5Q5	0.0363534020
+UniRef50_H8I5Q5|unclassified	0.0363534020
+UniRef50_UPI0003686DD3: hypothetical protein	0.0363532822
+UniRef50_UPI0003686DD3: hypothetical protein|unclassified	0.0363532822
+UniRef50_UPI000465DE9F: MFS transporter	0.0363530546
+UniRef50_UPI000465DE9F: MFS transporter|unclassified	0.0363530546
+UniRef50_UPI0003B73659: ActP protein	0.0363473336
+UniRef50_UPI0003B73659: ActP protein|unclassified	0.0363473336
+UniRef50_UPI000416282A: dihydroorotase	0.0363470544
+UniRef50_UPI000416282A: dihydroorotase|unclassified	0.0363470544
+UniRef50_UPI000382A6C0: hypothetical protein	0.0363432181
+UniRef50_UPI000382A6C0: hypothetical protein|unclassified	0.0363432181
+UniRef50_UPI000371DC7E: hypothetical protein	0.0363421319
+UniRef50_UPI000371DC7E: hypothetical protein|unclassified	0.0363421319
+UniRef50_A5F335: Chemotaxis protein PomB	0.0363411031
+UniRef50_A5F335: Chemotaxis protein PomB|unclassified	0.0363411031
+UniRef50_W7CHL0	0.0363381985
+UniRef50_W7CHL0|unclassified	0.0363381985
+UniRef50_UPI00037BBACA: hypothetical protein, partial	0.0363320235
+UniRef50_UPI00037BBACA: hypothetical protein, partial|unclassified	0.0363320235
+UniRef50_UPI00046DC931: PREDICTED: acetylglutamate kinase, chloroplastic	0.0363278585
+UniRef50_UPI00046DC931: PREDICTED: acetylglutamate kinase, chloroplastic|unclassified	0.0363278585
+UniRef50_A0A059LBS3	0.0363245691
+UniRef50_A0A059LBS3|unclassified	0.0363245691
+UniRef50_UPI00036BA29A: MULTISPECIES: hypothetical protein	0.0363229490
+UniRef50_UPI00036BA29A: MULTISPECIES: hypothetical protein|unclassified	0.0363229490
+UniRef50_UPI0002D50830: hypothetical protein	0.0363214337
+UniRef50_UPI0002D50830: hypothetical protein|unclassified	0.0363214337
+UniRef50_Q2W1G5: tRNA dimethylallyltransferase	0.0363196261
+UniRef50_Q2W1G5: tRNA dimethylallyltransferase|unclassified	0.0363196261
+UniRef50_C2EH03	0.0363191318
+UniRef50_C2EH03|unclassified	0.0363191318
+UniRef50_UPI00047DF1C1: cell division protein FtsX	0.0363180954
+UniRef50_UPI00047DF1C1: cell division protein FtsX|unclassified	0.0363180954
+UniRef50_O24457: Pyruvate dehydrogenase E1 component subunit alpha-3, chloroplastic	0.0363163405
+UniRef50_O24457: Pyruvate dehydrogenase E1 component subunit alpha-3, chloroplastic|unclassified	0.0363163405
+UniRef50_UPI00037BF978: hypothetical protein	0.0363132958
+UniRef50_UPI00037BF978: hypothetical protein|unclassified	0.0363132958
+UniRef50_UPI0003B34869: ATPase AAA	0.0363110017
+UniRef50_UPI0003B34869: ATPase AAA|unclassified	0.0363110017
+UniRef50_D8LEQ7	0.0363107112
+UniRef50_D8LEQ7|unclassified	0.0363107112
+UniRef50_UPI00036CFDE4: hypothetical protein	0.0363093689
+UniRef50_UPI00036CFDE4: hypothetical protein|unclassified	0.0363093689
+UniRef50_UPI0004701BEA: hypothetical protein	0.0363091043
+UniRef50_UPI0004701BEA: hypothetical protein|unclassified	0.0363091043
+UniRef50_UPI000376EBAC: hypothetical protein	0.0363068228
+UniRef50_UPI000376EBAC: hypothetical protein|unclassified	0.0363068228
+UniRef50_N9BNL8	0.0363039365
+UniRef50_N9BNL8|unclassified	0.0363039365
+UniRef50_UPI00047C566A: macrolide ABC transporter ATP-binding protein	0.0362927752
+UniRef50_UPI00047C566A: macrolide ABC transporter ATP-binding protein|unclassified	0.0362927752
+UniRef50_UPI000319535D: hypothetical protein	0.0362902698
+UniRef50_UPI000319535D: hypothetical protein|unclassified	0.0362902698
+UniRef50_Q5RKZ7-2: Isoform Mocs1a of Molybdenum cofactor biosynthesis protein 1	0.0362843649
+UniRef50_Q5RKZ7-2: Isoform Mocs1a of Molybdenum cofactor biosynthesis protein 1|unclassified	0.0362843649
+UniRef50_UPI0003012608: hypothetical protein	0.0362841038
+UniRef50_UPI0003012608: hypothetical protein|unclassified	0.0362841038
+UniRef50_UPI000466A5B9: ABC transporter ATP-binding protein	0.0362836006
+UniRef50_UPI000466A5B9: ABC transporter ATP-binding protein|unclassified	0.0362836006
+UniRef50_U2YK75: Flagellar motor rotation protein MotB	0.0362832520
+UniRef50_U2YK75: Flagellar motor rotation protein MotB|unclassified	0.0362832520
+UniRef50_Q8XWN8: Acetylornithine aminotransferase	0.0362826833
+UniRef50_Q8XWN8: Acetylornithine aminotransferase|unclassified	0.0362826833
+UniRef50_UPI0004543179: PREDICTED: propionyl-CoA carboxylase alpha chain, mitochondrial-like	0.0362811720
+UniRef50_UPI0004543179: PREDICTED: propionyl-CoA carboxylase alpha chain, mitochondrial-like|unclassified	0.0362811720
+UniRef50_R6W776	0.0362777959
+UniRef50_R6W776|unclassified	0.0362777959
+UniRef50_UPI0003724648: hypothetical protein	0.0362773591
+UniRef50_UPI0003724648: hypothetical protein|unclassified	0.0362773591
+UniRef50_Q46078: Pyruvate kinase	0.0362682342
+UniRef50_Q46078: Pyruvate kinase|unclassified	0.0362682342
+UniRef50_UPI0003FC6893: hypothetical protein	0.0362659029
+UniRef50_UPI0003FC6893: hypothetical protein|unclassified	0.0362659029
+UniRef50_C5BEQ4: Phage late control gene D protein (GPD)	0.0362657397
+UniRef50_C5BEQ4: Phage late control gene D protein (GPD)|unclassified	0.0362657397
+UniRef50_A6MVW4: ATP synthase subunit alpha, chloroplastic	0.0362625194
+UniRef50_A6MVW4: ATP synthase subunit alpha, chloroplastic|unclassified	0.0362625194
+UniRef50_W4JR33	0.0362612022
+UniRef50_W4JR33|unclassified	0.0362612022
+UniRef50_UPI00037E54E3: hypothetical protein	0.0362587742
+UniRef50_UPI00037E54E3: hypothetical protein|unclassified	0.0362587742
+UniRef50_Q1IQY5: Bifunctional protein GlmU	0.0362561697
+UniRef50_Q1IQY5: Bifunctional protein GlmU|unclassified	0.0362561697
+UniRef50_C5CSR5: Transglutaminase domain protein	0.0362516953
+UniRef50_C5CSR5: Transglutaminase domain protein|unclassified	0.0362516953
+UniRef50_E3YEJ2: Putative permease YcgR (Fragment)	0.0362501069
+UniRef50_E3YEJ2: Putative permease YcgR (Fragment)|unclassified	0.0362501069
+UniRef50_UPI00035E495A: hypothetical protein	0.0362429000
+UniRef50_UPI00035E495A: hypothetical protein|unclassified	0.0362429000
+UniRef50_UPI000255D390: ABC transporter inner membrane and ATP-binding subunits	0.0362386701
+UniRef50_UPI000255D390: ABC transporter inner membrane and ATP-binding subunits|unclassified	0.0362386701
+UniRef50_UPI0003B72F00: nicotinic acid mononucleotide adenylyltransferase	0.0362257412
+UniRef50_UPI0003B72F00: nicotinic acid mononucleotide adenylyltransferase|unclassified	0.0362257412
+UniRef50_R5JTG7: Threonine synthase	0.0362236071
+UniRef50_R5JTG7: Threonine synthase|unclassified	0.0362236071
+UniRef50_B0TYB4	0.0362197917
+UniRef50_B0TYB4|unclassified	0.0362197917
+UniRef50_W4K8T4	0.0362196986
+UniRef50_W4K8T4|unclassified	0.0362196986
+UniRef50_E8PEU6	0.0362178362
+UniRef50_E8PEU6|unclassified	0.0362178362
+UniRef50_Q0AKK5	0.0362132991
+UniRef50_Q0AKK5|unclassified	0.0362132991
+UniRef50_UPI00046D6398: hypothetical protein	0.0362123874
+UniRef50_UPI00046D6398: hypothetical protein|unclassified	0.0362123874
+UniRef50_UPI0003687009: hypothetical protein, partial	0.0362057093
+UniRef50_UPI0003687009: hypothetical protein, partial|unclassified	0.0362057093
+UniRef50_Q0C511: tRNA dimethylallyltransferase	0.0362010637
+UniRef50_Q0C511: tRNA dimethylallyltransferase|unclassified	0.0362010637
+UniRef50_UPI000364BED4: hypothetical protein	0.0361989764
+UniRef50_UPI000364BED4: hypothetical protein|unclassified	0.0361989764
+UniRef50_Q9RY77: Phosphate acetyltransferase	0.0361931588
+UniRef50_Q9RY77: Phosphate acetyltransferase|unclassified	0.0361931588
+UniRef50_P53607: L-threonine dehydratase biosynthetic IlvA	0.0361873209
+UniRef50_P53607: L-threonine dehydratase biosynthetic IlvA|unclassified	0.0361873209
+UniRef50_B7GID3: Multidomain signal transduction protein (Contains GGDEF and EAL domains)	0.0361828491
+UniRef50_B7GID3: Multidomain signal transduction protein (Contains GGDEF and EAL domains)|unclassified	0.0361828491
+UniRef50_UPI0003637C6B: hypothetical protein	0.0361798913
+UniRef50_UPI0003637C6B: hypothetical protein|unclassified	0.0361798913
+UniRef50_W4HLG7	0.0361772488
+UniRef50_W4HLG7|unclassified	0.0361772488
+UniRef50_A3DL27: Ornithine carbamoyltransferase	0.0361746686
+UniRef50_A3DL27: Ornithine carbamoyltransferase|unclassified	0.0361746686
+UniRef50_UPI0000E4A204: PREDICTED: DNA-binding protein HEXBP-like	0.0361735101
+UniRef50_UPI0000E4A204: PREDICTED: DNA-binding protein HEXBP-like|unclassified	0.0361735101
+UniRef50_UPI000373FFC6: hypothetical protein	0.0361691832
+UniRef50_UPI000373FFC6: hypothetical protein|unclassified	0.0361691832
+UniRef50_M5DSI1	0.0361666975
+UniRef50_M5DSI1|unclassified	0.0361666975
+UniRef50_D1Y416	0.0361656746
+UniRef50_D1Y416|unclassified	0.0361656746
+UniRef50_UPI00047D9B65: diaminopimelate decarboxylase	0.0361642855
+UniRef50_UPI00047D9B65: diaminopimelate decarboxylase|unclassified	0.0361642855
+UniRef50_UPI00045E971C: MFS transporter	0.0361628669
+UniRef50_UPI00045E971C: MFS transporter|unclassified	0.0361628669
+UniRef50_UPI000476F4CB: ATPase P	0.0361603467
+UniRef50_UPI000476F4CB: ATPase P|unclassified	0.0361603467
+UniRef50_Q9HKM6: Glutamate-1-semialdehyde 2,1-aminomutase	0.0361491091
+UniRef50_Q9HKM6: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0361491091
+UniRef50_UPI0003F7C1F1: antifreeze protein	0.0361454230
+UniRef50_UPI0003F7C1F1: antifreeze protein|unclassified	0.0361454230
+UniRef50_UPI00035FF568: hypothetical protein	0.0361443196
+UniRef50_UPI00035FF568: hypothetical protein|unclassified	0.0361443196
+UniRef50_W7SP85: Type I restriction enzyme R protein	0.0361436027
+UniRef50_W7SP85: Type I restriction enzyme R protein|unclassified	0.0361436027
+UniRef50_UPI000472A915: spore gernimation protein KA	0.0361425767
+UniRef50_UPI000472A915: spore gernimation protein KA|unclassified	0.0361425767
+UniRef50_UPI00036ACC50: DNA primase	0.0361416698
+UniRef50_UPI00036ACC50: DNA primase|unclassified	0.0361416698
+UniRef50_UPI0003799E24: hypothetical protein	0.0361328329
+UniRef50_UPI0003799E24: hypothetical protein|unclassified	0.0361328329
+UniRef50_UPI0002BA1A1F: hypothetical protein, partial	0.0361265598
+UniRef50_UPI0002BA1A1F: hypothetical protein, partial|unclassified	0.0361265598
+UniRef50_UPI000470F35C: hypothetical protein	0.0361237770
+UniRef50_UPI000470F35C: hypothetical protein|unclassified	0.0361237770
+UniRef50_B0UFP0: RecA-family ATPase-like protein	0.0361228723
+UniRef50_B0UFP0: RecA-family ATPase-like protein|unclassified	0.0361228723
+UniRef50_UPI000465EC34: portal protein	0.0361180234
+UniRef50_UPI000465EC34: portal protein|unclassified	0.0361180234
+UniRef50_UPI000252C47E: PREDICTED: molybdenum cofactor biosynthesis protein 1-like	0.0361162907
+UniRef50_UPI000252C47E: PREDICTED: molybdenum cofactor biosynthesis protein 1-like|unclassified	0.0361162907
+UniRef50_UPI00030D60BE: hypothetical protein	0.0361138326
+UniRef50_UPI00030D60BE: hypothetical protein|unclassified	0.0361138326
+UniRef50_UPI0003314CD0: PREDICTED: protein phosphatase 1 regulatory subunit 26	0.0361115809
+UniRef50_UPI0003314CD0: PREDICTED: protein phosphatase 1 regulatory subunit 26|unclassified	0.0361115809
+UniRef50_Q1QV76	0.0361030278
+UniRef50_Q1QV76|unclassified	0.0361030278
+UniRef50_F0LVM0: Sodium-driven polar flagellar protein	0.0361022788
+UniRef50_F0LVM0: Sodium-driven polar flagellar protein|unclassified	0.0361022788
+UniRef50_UPI000237514A: response regulator receiver modulated PAS/PAC sensor-containing diguanylate cyclase/phosphodiesterase	0.0360999954
+UniRef50_UPI000237514A: response regulator receiver modulated PAS/PAC sensor-containing diguanylate cyclase/phosphodiesterase|unclassified	0.0360999954
+UniRef50_D7FMF6	0.0360982226
+UniRef50_D7FMF6|unclassified	0.0360982226
+UniRef50_Z2DCF5	0.0360957596
+UniRef50_Z2DCF5|unclassified	0.0360957596
+UniRef50_UPI0003721AFF: hypothetical protein	0.0360957426
+UniRef50_UPI0003721AFF: hypothetical protein|unclassified	0.0360957426
+UniRef50_UPI00035DF923: hypothetical protein	0.0360919581
+UniRef50_UPI00035DF923: hypothetical protein|unclassified	0.0360919581
+UniRef50_K9HAE7	0.0360889986
+UniRef50_K9HAE7|unclassified	0.0360889986
+UniRef50_UPI0004770260: glucose-1-phosphate adenylyltransferase	0.0360839635
+UniRef50_UPI0004770260: glucose-1-phosphate adenylyltransferase|unclassified	0.0360839635
+UniRef50_C5C6N2: Cobyrinic acid ac-diamide synthase	0.0360827653
+UniRef50_C5C6N2: Cobyrinic acid ac-diamide synthase|unclassified	0.0360827653
+UniRef50_UPI00036F8AFA: hypothetical protein	0.0360816018
+UniRef50_UPI00036F8AFA: hypothetical protein|unclassified	0.0360816018
+UniRef50_I6XWT7: Putative membrane protein	0.0360681158
+UniRef50_I6XWT7: Putative membrane protein|unclassified	0.0360681158
+UniRef50_B0DLY2: Predicted protein	0.0360652356
+UniRef50_B0DLY2: Predicted protein|unclassified	0.0360652356
+UniRef50_UPI000466B529: hypothetical protein	0.0360650011
+UniRef50_UPI000466B529: hypothetical protein|unclassified	0.0360650011
+UniRef50_UPI00029AD1CB: major facilitator superfamily protein	0.0360583172
+UniRef50_UPI00029AD1CB: major facilitator superfamily protein|unclassified	0.0360583172
+UniRef50_UPI000347D798: hypothetical protein	0.0360575213
+UniRef50_UPI000347D798: hypothetical protein|unclassified	0.0360575213
+UniRef50_F8GTL5	0.0360496645
+UniRef50_F8GTL5|unclassified	0.0360496645
+UniRef50_UPI000414D457: hypothetical protein	0.0360492173
+UniRef50_UPI000414D457: hypothetical protein|unclassified	0.0360492173
+UniRef50_UPI00039553CA: PREDICTED: transmembrane protein 194B	0.0360471734
+UniRef50_UPI00039553CA: PREDICTED: transmembrane protein 194B|unclassified	0.0360471734
+UniRef50_S5TME5: Excinuclease ABC subunit A (Fragment)	0.0360460032
+UniRef50_S5TME5: Excinuclease ABC subunit A (Fragment)|unclassified	0.0360460032
+UniRef50_UPI0003785364: hypothetical protein	0.0360456695
+UniRef50_UPI0003785364: hypothetical protein|unclassified	0.0360456695
+UniRef50_P9WQB2: 2-isopropylmalate synthase	0.0360437145
+UniRef50_P9WQB2: 2-isopropylmalate synthase|unclassified	0.0360437145
+UniRef50_UPI00047C714D: hypothetical protein	0.0360314571
+UniRef50_UPI00047C714D: hypothetical protein|unclassified	0.0360314571
+UniRef50_Q164R1	0.0360290579
+UniRef50_Q164R1|unclassified	0.0360290579
+UniRef50_G4QBM5	0.0360265720
+UniRef50_G4QBM5|unclassified	0.0360265720
+UniRef50_UPI000379BC38: hypothetical protein	0.0360213036
+UniRef50_UPI000379BC38: hypothetical protein|unclassified	0.0360213036
+UniRef50_UPI00037E82AA: hypothetical protein	0.0360211501
+UniRef50_UPI00037E82AA: hypothetical protein|unclassified	0.0360211501
+UniRef50_UPI00041F2A30: hypothetical protein	0.0360150987
+UniRef50_UPI00041F2A30: hypothetical protein|unclassified	0.0360150987
+UniRef50_UPI000237549C: signal transduction protein	0.0360120310
+UniRef50_UPI000237549C: signal transduction protein|unclassified	0.0360120310
+UniRef50_UPI00016C0DE4: tRNA 2-selenouridine synthase	0.0360107486
+UniRef50_UPI00016C0DE4: tRNA 2-selenouridine synthase|unclassified	0.0360107486
+UniRef50_I6G892: HTH-type transcriptional regulator AdiY domain protein	0.0360103713
+UniRef50_I6G892: HTH-type transcriptional regulator AdiY domain protein|unclassified	0.0360103713
+UniRef50_UPI00047A154A: phosphoribosylaminoimidazolecarboxamide formyltransferase	0.0360062823
+UniRef50_UPI00047A154A: phosphoribosylaminoimidazolecarboxamide formyltransferase|unclassified	0.0360062823
+UniRef50_E3EZ17	0.0360037648
+UniRef50_E3EZ17|unclassified	0.0360037648
+UniRef50_UPI00047732D5: histidine kinase	0.0360020883
+UniRef50_UPI00047732D5: histidine kinase|unclassified	0.0360020883
+UniRef50_Q8IKU0: Bifunctional glucose-6-phosphate 1-dehydrogenase/6-phosphogluconolactonase	0.0359937138
+UniRef50_Q8IKU0: Bifunctional glucose-6-phosphate 1-dehydrogenase/6-phosphogluconolactonase|unclassified	0.0359937138
+UniRef50_D2BWJ4: Type II secretion system F domain protein	0.0359932488
+UniRef50_D2BWJ4: Type II secretion system F domain protein|unclassified	0.0359932488
+UniRef50_UPI0002558F5B: deoxyribodipyrimidine photo-lyase	0.0359904537
+UniRef50_UPI0002558F5B: deoxyribodipyrimidine photo-lyase|unclassified	0.0359904537
+UniRef50_D8RMB6	0.0359902117
+UniRef50_D8RMB6|unclassified	0.0359902117
+UniRef50_A1SW90: Beta-hexosaminidase	0.0359810869
+UniRef50_A1SW90: Beta-hexosaminidase|unclassified	0.0359810869
+UniRef50_A1AKL6	0.0359798548
+UniRef50_A1AKL6|unclassified	0.0359798548
+UniRef50_UPI00036803C3: hypothetical protein	0.0359761244
+UniRef50_UPI00036803C3: hypothetical protein|unclassified	0.0359761244
+UniRef50_Q9A710: Metalloprotease MmpA	0.0359731415
+UniRef50_Q9A710: Metalloprotease MmpA|unclassified	0.0359731415
+UniRef50_UPI000378FC07: hypothetical protein	0.0359719683
+UniRef50_UPI000378FC07: hypothetical protein|unclassified	0.0359719683
+UniRef50_UPI0004773F07: ATPase P	0.0359712384
+UniRef50_UPI0004773F07: ATPase P|unclassified	0.0359712384
+UniRef50_UPI0003673F5A: hypothetical protein	0.0359658625
+UniRef50_UPI0003673F5A: hypothetical protein|unclassified	0.0359658625
+UniRef50_W4U8Z0: Serine transporter	0.0359648009
+UniRef50_W4U8Z0: Serine transporter|unclassified	0.0359648009
+UniRef50_UPI0003B4F268: PhoH	0.0359618726
+UniRef50_UPI0003B4F268: PhoH|unclassified	0.0359618726
+UniRef50_UPI00046DCEE5	0.0359598776
+UniRef50_UPI00046DCEE5|unclassified	0.0359598776
+UniRef50_UPI000382A9EB: hypothetical protein	0.0359598683
+UniRef50_UPI000382A9EB: hypothetical protein|unclassified	0.0359598683
+UniRef50_Q45614: Sensor histidine kinase YycG	0.0359594962
+UniRef50_Q45614: Sensor histidine kinase YycG|unclassified	0.0359594962
+UniRef50_J9FJJ1: Morn repeat protein	0.0359582945
+UniRef50_J9FJJ1: Morn repeat protein|unclassified	0.0359582945
+UniRef50_UPI0004680855: hypothetical protein	0.0359297805
+UniRef50_UPI0004680855: hypothetical protein|unclassified	0.0359297805
+UniRef50_UPI00036DC969: hypothetical protein	0.0359280206
+UniRef50_UPI00036DC969: hypothetical protein|unclassified	0.0359280206
+UniRef50_UPI000466D0CE: hypothetical protein	0.0359253626
+UniRef50_UPI000466D0CE: hypothetical protein|unclassified	0.0359253626
+UniRef50_A8JAW9: Predicted protein (Fragment)	0.0359239195
+UniRef50_A8JAW9: Predicted protein (Fragment)|unclassified	0.0359239195
+UniRef50_S9QRL1: TRAP-type C4-dicarboxylate transport system, large permease component	0.0359165113
+UniRef50_S9QRL1: TRAP-type C4-dicarboxylate transport system, large permease component|unclassified	0.0359165113
+UniRef50_UPI0003B53A62: metallophosphoesterase	0.0359079509
+UniRef50_UPI0003B53A62: metallophosphoesterase|unclassified	0.0359079509
+UniRef50_Q81M98: Acetylornithine aminotransferase	0.0359065340
+UniRef50_Q81M98: Acetylornithine aminotransferase|unclassified	0.0359065340
+UniRef50_Q54E41: Hydroxyacid oxidase	0.0359058093
+UniRef50_Q54E41: Hydroxyacid oxidase|unclassified	0.0359058093
+UniRef50_UPI00032902F2: PREDICTED: neurogenic locus notch homolog protein 4	0.0359039821
+UniRef50_UPI00032902F2: PREDICTED: neurogenic locus notch homolog protein 4|unclassified	0.0359039821
+UniRef50_UPI0003339557: PREDICTED: BUD13 homolog	0.0359019390
+UniRef50_UPI0003339557: PREDICTED: BUD13 homolog|unclassified	0.0359019390
+UniRef50_UPI000424D5B6: phosphomannomutase	0.0359004129
+UniRef50_UPI000424D5B6: phosphomannomutase|unclassified	0.0359004129
+UniRef50_N9DXN9	0.0358965050
+UniRef50_N9DXN9|unclassified	0.0358965050
+UniRef50_A2BY07: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0358958124
+UniRef50_A2BY07: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0358958124
+UniRef50_UPI000306C8EB: hypothetical protein	0.0358895254
+UniRef50_UPI000306C8EB: hypothetical protein|unclassified	0.0358895254
+UniRef50_UPI0004777D3D: hypothetical protein	0.0358894098
+UniRef50_UPI0004777D3D: hypothetical protein|unclassified	0.0358894098
+UniRef50_UPI0003626F75: hypothetical protein	0.0358804316
+UniRef50_UPI0003626F75: hypothetical protein|unclassified	0.0358804316
+UniRef50_Q9CFG8: Xylulose kinase	0.0358776726
+UniRef50_Q9CFG8: Xylulose kinase|unclassified	0.0358776726
+UniRef50_UPI000403ACC0: hypothetical protein	0.0358771619
+UniRef50_UPI000403ACC0: hypothetical protein|unclassified	0.0358771619
+UniRef50_F6EUQ1	0.0358764105
+UniRef50_F6EUQ1|unclassified	0.0358764105
+UniRef50_UPI0003790ABB: hypothetical protein	0.0358752882
+UniRef50_UPI0003790ABB: hypothetical protein|unclassified	0.0358752882
+UniRef50_J0D235	0.0358723516
+UniRef50_J0D235|unclassified	0.0358723516
+UniRef50_K8YVU1: Ring u-box domain-containing protein (Fragment)	0.0358715304
+UniRef50_K8YVU1: Ring u-box domain-containing protein (Fragment)|unclassified	0.0358715304
+UniRef50_U6LTI6	0.0358679911
+UniRef50_U6LTI6|unclassified	0.0358679911
+UniRef50_X7E8L2	0.0358655872
+UniRef50_X7E8L2|unclassified	0.0358655872
+UniRef50_A3DGL4: TniB family protein	0.0358641851
+UniRef50_A3DGL4: TniB family protein|unclassified	0.0358641851
+UniRef50_O54479: DNA topoisomerase 4 subunit B	0.0358604503
+UniRef50_O54479: DNA topoisomerase 4 subunit B|unclassified	0.0358604503
+UniRef50_UPI00037621A9: hypothetical protein	0.0358567507
+UniRef50_UPI00037621A9: hypothetical protein|unclassified	0.0358567507
+UniRef50_UPI000471A039: hypothetical protein	0.0358479133
+UniRef50_UPI000471A039: hypothetical protein|unclassified	0.0358479133
+UniRef50_UPI000377EEE9: hypothetical protein	0.0358472125
+UniRef50_UPI000377EEE9: hypothetical protein|unclassified	0.0358472125
+UniRef50_O32507: Succinate-semialdehyde dehydrogenase [NADP(+)]	0.0358469218
+UniRef50_O32507: Succinate-semialdehyde dehydrogenase [NADP(+)]|unclassified	0.0358469218
+UniRef50_UPI00016C05A2: alpha amylase, catalytic region	0.0358467401
+UniRef50_UPI00016C05A2: alpha amylase, catalytic region|unclassified	0.0358467401
+UniRef50_UPI00046AC123: 16S rRNA methyltransferase	0.0358447320
+UniRef50_UPI00046AC123: 16S rRNA methyltransferase|unclassified	0.0358447320
+UniRef50_UPI000349E39A: hypothetical protein	0.0358440049
+UniRef50_UPI000349E39A: hypothetical protein|unclassified	0.0358440049
+UniRef50_UPI0003FFF64C: hypothetical protein	0.0358396773
+UniRef50_UPI0003FFF64C: hypothetical protein|unclassified	0.0358396773
+UniRef50_E0U4X2	0.0358353444
+UniRef50_E0U4X2|unclassified	0.0358353444
+UniRef50_UPI00046442C9: hypothetical protein	0.0358294401
+UniRef50_UPI00046442C9: hypothetical protein|unclassified	0.0358294401
+UniRef50_UPI0003F09B54: PREDICTED: thiosulfate sulfurtransferase-like	0.0358291869
+UniRef50_UPI0003F09B54: PREDICTED: thiosulfate sulfurtransferase-like|unclassified	0.0358291869
+UniRef50_A3VVU2: Putative outer membrane protein	0.0358287586
+UniRef50_A3VVU2: Putative outer membrane protein|unclassified	0.0358287586
+UniRef50_UPI000403D4EC: C4-dicarboxylate ABC transporter permease	0.0358249344
+UniRef50_UPI000403D4EC: C4-dicarboxylate ABC transporter permease|unclassified	0.0358249344
+UniRef50_UPI0003B48188: serine/threonine protein kinase	0.0358240064
+UniRef50_UPI0003B48188: serine/threonine protein kinase|unclassified	0.0358240064
+UniRef50_B2G6M2: Exodeoxyribonuclease V alpha subunit	0.0358223922
+UniRef50_B2G6M2: Exodeoxyribonuclease V alpha subunit|unclassified	0.0358223922
+UniRef50_UPI00047157BC: hypothetical protein, partial	0.0358204964
+UniRef50_UPI00047157BC: hypothetical protein, partial|unclassified	0.0358204964
+UniRef50_E3EZF6	0.0358152329
+UniRef50_E3EZF6|unclassified	0.0358152329
+UniRef50_Q2S527: UDP-N-acetylmuramate--L-alanine ligase	0.0358127786
+UniRef50_Q2S527: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.0358127786
+UniRef50_B0C7G7: Fructose-1,6-bisphosphatase class 1 2	0.0358104040
+UniRef50_B0C7G7: Fructose-1,6-bisphosphatase class 1 2|unclassified	0.0358104040
+UniRef50_UPI00042394C7: hypothetical protein	0.0358069239
+UniRef50_UPI00042394C7: hypothetical protein|unclassified	0.0358069239
+UniRef50_V4T9A2: Putative exported protein	0.0358063028
+UniRef50_V4T9A2: Putative exported protein|unclassified	0.0358063028
+UniRef50_G7UUT0: Transposase IS66	0.0358049839
+UniRef50_G7UUT0: Transposase IS66|unclassified	0.0358049839
+UniRef50_UPI000472A285: multidrug ABC transporter ATP-binding protein, partial	0.0358013458
+UniRef50_UPI000472A285: multidrug ABC transporter ATP-binding protein, partial|unclassified	0.0358013458
+UniRef50_L8DKK4: Putative ABC transporter substrate-binding protein	0.0357986255
+UniRef50_L8DKK4: Putative ABC transporter substrate-binding protein|unclassified	0.0357986255
+UniRef50_K0CJC2	0.0357963079
+UniRef50_K0CJC2|unclassified	0.0357963079
+UniRef50_UPI00040B88AD: UDP-N-acetylglucosamine 2-epimerase	0.0357935970
+UniRef50_UPI00040B88AD: UDP-N-acetylglucosamine 2-epimerase|unclassified	0.0357935970
+UniRef50_UPI0002630EBE: nicotinate phosphoribosyltransferase	0.0357909572
+UniRef50_UPI0002630EBE: nicotinate phosphoribosyltransferase|unclassified	0.0357909572
+UniRef50_UPI000475C78C: hypothetical protein	0.0357869444
+UniRef50_UPI000475C78C: hypothetical protein|unclassified	0.0357869444
+UniRef50_A4I9N9	0.0357854029
+UniRef50_A4I9N9|unclassified	0.0357854029
+UniRef50_A0A024HNL0: Diguanylate cyclase	0.0357755937
+UniRef50_A0A024HNL0: Diguanylate cyclase|unclassified	0.0357755937
+UniRef50_A8IYD0: Predicted protein (Fragment)	0.0357703800
+UniRef50_A8IYD0: Predicted protein (Fragment)|unclassified	0.0357703800
+UniRef50_B9DWL8: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.0357644382
+UniRef50_B9DWL8: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.0357644382
+UniRef50_C3AKR0: Cobalamin synthesis protein	0.0357630016
+UniRef50_C3AKR0: Cobalamin synthesis protein|unclassified	0.0357630016
+UniRef50_UPI00036B125A: hypothetical protein	0.0357626642
+UniRef50_UPI00036B125A: hypothetical protein|unclassified	0.0357626642
+UniRef50_Q9PCU2: Phage-related protein	0.0357626379
+UniRef50_Q9PCU2: Phage-related protein|unclassified	0.0357626379
+UniRef50_Q9ZHC7: Silver exporting P-type ATPase	0.0357610709
+UniRef50_Q9ZHC7: Silver exporting P-type ATPase|unclassified	0.0357610709
+UniRef50_P62457: Histidinol dehydrogenase	0.0357568737
+UniRef50_P62457: Histidinol dehydrogenase|unclassified	0.0357568737
+UniRef50_U4V3T4	0.0357565233
+UniRef50_U4V3T4|unclassified	0.0357565233
+UniRef50_I2RL58: PF09994 domain protein	0.0357562404
+UniRef50_I2RL58: PF09994 domain protein|unclassified	0.0357562404
+UniRef50_UPI0003641290: hypothetical protein	0.0357481003
+UniRef50_UPI0003641290: hypothetical protein|unclassified	0.0357481003
+UniRef50_F2MTP7: Permease protein	0.0357446171
+UniRef50_F2MTP7: Permease protein|unclassified	0.0357446171
+UniRef50_UPI00047D4973: hypothetical protein	0.0357348938
+UniRef50_UPI00047D4973: hypothetical protein|unclassified	0.0357348938
+UniRef50_Q7NCB3: Histidine ammonia-lyase	0.0357330260
+UniRef50_Q7NCB3: Histidine ammonia-lyase|unclassified	0.0357330260
+UniRef50_UPI0004676D4F: hypothetical protein	0.0357322699
+UniRef50_UPI0004676D4F: hypothetical protein|unclassified	0.0357322699
+UniRef50_UPI0003762FE4: hypothetical protein	0.0357310592
+UniRef50_UPI0003762FE4: hypothetical protein|unclassified	0.0357310592
+UniRef50_Q6F199: Histidine--tRNA ligase	0.0357290421
+UniRef50_Q6F199: Histidine--tRNA ligase|unclassified	0.0357290421
+UniRef50_D7URM0: L-carnitine dehydrogenase	0.0357222172
+UniRef50_D7URM0: L-carnitine dehydrogenase|unclassified	0.0357222172
+UniRef50_UPI00046FE6B9: hypothetical protein	0.0357196148
+UniRef50_UPI00046FE6B9: hypothetical protein|unclassified	0.0357196148
+UniRef50_L0LUL9: ABC transporter, substrate-binding protein	0.0357172588
+UniRef50_L0LUL9: ABC transporter, substrate-binding protein|unclassified	0.0357172588
+UniRef50_UPI00047588F4: hypothetical protein	0.0357172288
+UniRef50_UPI00047588F4: hypothetical protein|unclassified	0.0357172288
+UniRef50_I8T651	0.0357129945
+UniRef50_I8T651|unclassified	0.0357129945
+UniRef50_Q8XK37: DNA polymerase IV	0.0357123646
+UniRef50_Q8XK37: DNA polymerase IV|unclassified	0.0357123646
+UniRef50_UPI0003942E83: methyl-accepting chemotaxis protein	0.0357118424
+UniRef50_UPI0003942E83: methyl-accepting chemotaxis protein|unclassified	0.0357118424
+UniRef50_UPI00036F6464: hypothetical protein	0.0357107642
+UniRef50_UPI00036F6464: hypothetical protein|unclassified	0.0357107642
+UniRef50_V5C579: Non-hemolytic phospholipase C	0.0357106216
+UniRef50_V5C579: Non-hemolytic phospholipase C|unclassified	0.0357106216
+UniRef50_G4R9C9	0.0357102176
+UniRef50_G4R9C9|unclassified	0.0357102176
+UniRef50_UPI00031A8461: hypothetical protein	0.0357070686
+UniRef50_UPI00031A8461: hypothetical protein|unclassified	0.0357070686
+UniRef50_UPI000369BE7A: hypothetical protein	0.0357030048
+UniRef50_UPI000369BE7A: hypothetical protein|unclassified	0.0357030048
+UniRef50_UPI0003699C79: hypothetical protein	0.0356997898
+UniRef50_UPI0003699C79: hypothetical protein|unclassified	0.0356997898
+UniRef50_UPI0003602E81: hypothetical protein	0.0356899586
+UniRef50_UPI0003602E81: hypothetical protein|unclassified	0.0356899586
+UniRef50_Q54DK1: Sulfide:quinone oxidoreductase, mitochondrial	0.0356875065
+UniRef50_Q54DK1: Sulfide:quinone oxidoreductase, mitochondrial|unclassified	0.0356875065
+UniRef50_S6D8D3: Low-affinity zinc transport protein	0.0356872855
+UniRef50_S6D8D3: Low-affinity zinc transport protein|unclassified	0.0356872855
+UniRef50_M7AXL5: Periplasmic binding family protein	0.0356867088
+UniRef50_M7AXL5: Periplasmic binding family protein|unclassified	0.0356867088
+UniRef50_UPI00016C5870: hypothetical protein	0.0356866516
+UniRef50_UPI00016C5870: hypothetical protein|unclassified	0.0356866516
+UniRef50_UPI000477C54B: RNA polymerase factor sigma-54	0.0356859030
+UniRef50_UPI000477C54B: RNA polymerase factor sigma-54|unclassified	0.0356859030
+UniRef50_B3E163: DNA-directed RNA polymerase subunit beta	0.0356819279
+UniRef50_B3E163: DNA-directed RNA polymerase subunit beta|unclassified	0.0356819279
+UniRef50_A3PYP3	0.0356797597
+UniRef50_A3PYP3|unclassified	0.0356797597
+UniRef50_UPI0004789587: serine/threonine protein kinase	0.0356716489
+UniRef50_UPI0004789587: serine/threonine protein kinase|unclassified	0.0356716489
+UniRef50_A3PAY7: Bifunctional purine biosynthesis protein PurH	0.0356689742
+UniRef50_A3PAY7: Bifunctional purine biosynthesis protein PurH|unclassified	0.0356689742
+UniRef50_UPI00046FE2F3: ribosomal RNA large subunit methyltransferase M	0.0356667290
+UniRef50_UPI00046FE2F3: ribosomal RNA large subunit methyltransferase M|unclassified	0.0356667290
+UniRef50_UPI00046ED070: multidrug transporter	0.0356631820
+UniRef50_UPI00046ED070: multidrug transporter|unclassified	0.0356631820
+UniRef50_UPI000381F4EB: hypothetical protein	0.0356619576
+UniRef50_UPI000381F4EB: hypothetical protein|unclassified	0.0356619576
+UniRef50_E4ZDI2	0.0356547844
+UniRef50_E4ZDI2|unclassified	0.0356547844
+UniRef50_A8GY42: ATP synthase subunit alpha	0.0356477255
+UniRef50_A8GY42: ATP synthase subunit alpha|unclassified	0.0356477255
+UniRef50_UPI0002485E7A: gluconate transporter	0.0356382078
+UniRef50_UPI0002485E7A: gluconate transporter|unclassified	0.0356382078
+UniRef50_UPI00034878D9: hypothetical protein	0.0356378310
+UniRef50_UPI00034878D9: hypothetical protein|unclassified	0.0356378310
+UniRef50_M4FTZ0	0.0356275196
+UniRef50_M4FTZ0|unclassified	0.0356275196
+UniRef50_UPI00047C4C3E: phosphopantothenoylcysteine decarboxylase	0.0356267715
+UniRef50_UPI00047C4C3E: phosphopantothenoylcysteine decarboxylase|unclassified	0.0356267715
+UniRef50_UPI000471C488: hypothetical protein	0.0356247536
+UniRef50_UPI000471C488: hypothetical protein|unclassified	0.0356247536
+UniRef50_B5GJB9: PE-PGRS family protein	0.0356224909
+UniRef50_B5GJB9: PE-PGRS family protein|unclassified	0.0356224909
+UniRef50_UPI0003632CDD: hypothetical protein	0.0356134232
+UniRef50_UPI0003632CDD: hypothetical protein|unclassified	0.0356134232
+UniRef50_B1YK83: DNA polymerase IV	0.0356054414
+UniRef50_B1YK83: DNA polymerase IV|unclassified	0.0356054414
+UniRef50_UPI00047A0437: hypothetical protein	0.0356045638
+UniRef50_UPI00047A0437: hypothetical protein|unclassified	0.0356045638
+UniRef50_A0A023XMZ3: Type VI secretion protein, ImpJ/SciO/VasE family	0.0356045614
+UniRef50_A0A023XMZ3: Type VI secretion protein, ImpJ/SciO/VasE family|unclassified	0.0356045614
+UniRef50_S7PVJ8	0.0356039207
+UniRef50_S7PVJ8|unclassified	0.0356039207
+UniRef50_A0A026WPQ8	0.0356005075
+UniRef50_A0A026WPQ8|unclassified	0.0356005075
+UniRef50_UPI0003FEEF9A: penicillin-binding protein	0.0355965003
+UniRef50_UPI0003FEEF9A: penicillin-binding protein|unclassified	0.0355965003
+UniRef50_UPI00036FF49D: hypothetical protein	0.0355963953
+UniRef50_UPI00036FF49D: hypothetical protein|unclassified	0.0355963953
+UniRef50_UPI00037E97F7: hypothetical protein	0.0355955408
+UniRef50_UPI00037E97F7: hypothetical protein|unclassified	0.0355955408
+UniRef50_UPI0004731C2E: hypothetical protein	0.0355951994
+UniRef50_UPI0004731C2E: hypothetical protein|unclassified	0.0355951994
+UniRef50_M0M216	0.0355929835
+UniRef50_M0M216|unclassified	0.0355929835
+UniRef50_R5ERK8: Putative lysine decarboxylase	0.0355851147
+UniRef50_R5ERK8: Putative lysine decarboxylase|unclassified	0.0355851147
+UniRef50_UPI0002D8CAE9: hypothetical protein	0.0355839457
+UniRef50_UPI0002D8CAE9: hypothetical protein|unclassified	0.0355839457
+UniRef50_UPI000463EB02: cysteine desulfurase	0.0355831049
+UniRef50_UPI000463EB02: cysteine desulfurase|unclassified	0.0355831049
+UniRef50_UPI000470E9F4: uroporphyrinogen decarboxylase	0.0355815561
+UniRef50_UPI000470E9F4: uroporphyrinogen decarboxylase|unclassified	0.0355815561
+UniRef50_UPI00036576C3: hypothetical protein	0.0355732824
+UniRef50_UPI00036576C3: hypothetical protein|unclassified	0.0355732824
+UniRef50_UPI00040764A3: amidohydrolase	0.0355652215
+UniRef50_UPI00040764A3: amidohydrolase|unclassified	0.0355652215
+UniRef50_UPI00036E77B4: hypothetical protein	0.0355650175
+UniRef50_UPI00036E77B4: hypothetical protein|unclassified	0.0355650175
+UniRef50_UPI0003C1B2C2: PREDICTED: valine--tRNA ligase-like	0.0355636749
+UniRef50_UPI0003C1B2C2: PREDICTED: valine--tRNA ligase-like|unclassified	0.0355636749
+UniRef50_P52986: Homoserine dehydrogenase	0.0355634052
+UniRef50_P52986: Homoserine dehydrogenase|unclassified	0.0355634052
+UniRef50_UPI0004681238: hypothetical protein	0.0355599066
+UniRef50_UPI0004681238: hypothetical protein|unclassified	0.0355599066
+UniRef50_UPI0003EAB6C0: PREDICTED: LOW QUALITY PROTEIN: cadherin EGF LAG seven-pass G-type receptor 3-like	0.0355542920
+UniRef50_UPI0003EAB6C0: PREDICTED: LOW QUALITY PROTEIN: cadherin EGF LAG seven-pass G-type receptor 3-like|unclassified	0.0355542920
+UniRef50_Q2RPX0: Bifunctional protein GlmU	0.0355513643
+UniRef50_Q2RPX0: Bifunctional protein GlmU|unclassified	0.0355513643
+UniRef50_F5YK89: Glycerol-3-phosphate ABC transporter substarate-binding protein	0.0355478853
+UniRef50_F5YK89: Glycerol-3-phosphate ABC transporter substarate-binding protein|unclassified	0.0355478853
+UniRef50_C6LI58	0.0355478336
+UniRef50_C6LI58|unclassified	0.0355478336
+UniRef50_Q0TMS8: Energy-coupling factor transporter ATP-binding protein EcfA2	0.0355474505
+UniRef50_Q0TMS8: Energy-coupling factor transporter ATP-binding protein EcfA2|unclassified	0.0355474505
+UniRef50_UPI00030D88C2: hypothetical protein	0.0355463574
+UniRef50_UPI00030D88C2: hypothetical protein|unclassified	0.0355463574
+UniRef50_W5X5A4: RNase HII	0.0355440207
+UniRef50_W5X5A4: RNase HII|unclassified	0.0355440207
+UniRef50_A0A017HNC7	0.0355421255
+UniRef50_A0A017HNC7|unclassified	0.0355421255
+UniRef50_UPI0003B65703: alkaline serine protease	0.0355408440
+UniRef50_UPI0003B65703: alkaline serine protease|unclassified	0.0355408440
+UniRef50_U6GE89	0.0355392934
+UniRef50_U6GE89|unclassified	0.0355392934
+UniRef50_UPI00047C6711: nucleotide sugar dehydrogenase	0.0355349571
+UniRef50_UPI00047C6711: nucleotide sugar dehydrogenase|unclassified	0.0355349571
+UniRef50_S9TF78: Phage Gp37Gp68	0.0355260302
+UniRef50_S9TF78: Phage Gp37Gp68|unclassified	0.0355260302
+UniRef50_Q55587	0.0355244156
+UniRef50_Q55587|unclassified	0.0355244156
+UniRef50_UPI00037C0C48: hypothetical protein	0.0355239686
+UniRef50_UPI00037C0C48: hypothetical protein|unclassified	0.0355239686
+UniRef50_UPI0004719C11: DNA topoisomerase III, partial	0.0355222633
+UniRef50_UPI0004719C11: DNA topoisomerase III, partial|unclassified	0.0355222633
+UniRef50_UPI0003716140: hypothetical protein	0.0355122997
+UniRef50_UPI0003716140: hypothetical protein|unclassified	0.0355122997
+UniRef50_UPI00040856AD: hypothetical protein	0.0355097961
+UniRef50_UPI00040856AD: hypothetical protein|unclassified	0.0355097961
+UniRef50_UPI0002FAD4A1: hypothetical protein	0.0355078249
+UniRef50_UPI0002FAD4A1: hypothetical protein|unclassified	0.0355078249
+UniRef50_UPI00046D13E9: hypothetical protein	0.0355060369
+UniRef50_UPI00046D13E9: hypothetical protein|unclassified	0.0355060369
+UniRef50_A0A059LMT5	0.0355014969
+UniRef50_A0A059LMT5|unclassified	0.0355014969
+UniRef50_Q1LJ08: Phosphonates import ATP-binding protein PhnC 2	0.0354978520
+UniRef50_Q1LJ08: Phosphonates import ATP-binding protein PhnC 2|unclassified	0.0354978520
+UniRef50_Q2S1G3: Fructose-1,6-bisphosphatase class 1 2	0.0354956812
+UniRef50_Q2S1G3: Fructose-1,6-bisphosphatase class 1 2|unclassified	0.0354956812
+UniRef50_B5YGX0: Phosphoglucosamine mutase	0.0354928897
+UniRef50_B5YGX0: Phosphoglucosamine mutase|unclassified	0.0354928897
+UniRef50_V4J156	0.0354863023
+UniRef50_V4J156|unclassified	0.0354863023
+UniRef50_P54981: Phytoene dehydrogenase	0.0354860084
+UniRef50_P54981: Phytoene dehydrogenase|unclassified	0.0354860084
+UniRef50_B1ZM79	0.0354819404
+UniRef50_B1ZM79|unclassified	0.0354819404
+UniRef50_UPI00037EF6B3: hypothetical protein	0.0354779561
+UniRef50_UPI00037EF6B3: hypothetical protein|unclassified	0.0354779561
+UniRef50_P16027: Methanol dehydrogenase [cytochrome c] subunit 1	0.0354755143
+UniRef50_P16027: Methanol dehydrogenase [cytochrome c] subunit 1|unclassified	0.0354755143
+UniRef50_B9M8L7	0.0354701123
+UniRef50_B9M8L7|unclassified	0.0354701123
+UniRef50_UPI00031292AB: hypothetical protein	0.0354659196
+UniRef50_UPI00031292AB: hypothetical protein|unclassified	0.0354659196
+UniRef50_UPI000471C613: hypothetical protein	0.0354617641
+UniRef50_UPI000471C613: hypothetical protein|unclassified	0.0354617641
+UniRef50_UPI000409F09E: hypothetical protein	0.0354583956
+UniRef50_UPI000409F09E: hypothetical protein|unclassified	0.0354583956
+UniRef50_A3C887	0.0354573976
+UniRef50_A3C887|unclassified	0.0354573976
+UniRef50_E3EHT4: Cobalamin synthesis protein P47K	0.0354547638
+UniRef50_E3EHT4: Cobalamin synthesis protein P47K|unclassified	0.0354547638
+UniRef50_P12045: N5-carboxyaminoimidazole ribonucleotide synthase	0.0354514686
+UniRef50_P12045: N5-carboxyaminoimidazole ribonucleotide synthase|unclassified	0.0354514686
+UniRef50_W7TFZ7: LigA protein	0.0354427243
+UniRef50_W7TFZ7: LigA protein|unclassified	0.0354427243
+UniRef50_W6KL48: Putative NnrS family protein	0.0354425049
+UniRef50_W6KL48: Putative NnrS family protein|unclassified	0.0354425049
+UniRef50_UPI0003068F4D: hypothetical protein	0.0354382000
+UniRef50_UPI0003068F4D: hypothetical protein|unclassified	0.0354382000
+UniRef50_O29119: Phosphoglycerate kinase	0.0354355826
+UniRef50_O29119: Phosphoglycerate kinase|unclassified	0.0354355826
+UniRef50_K1YIN2	0.0354182198
+UniRef50_K1YIN2|unclassified	0.0354182198
+UniRef50_UPI0004700E8C: hypothetical protein	0.0354161351
+UniRef50_UPI0004700E8C: hypothetical protein|unclassified	0.0354161351
+UniRef50_UPI00036FBDE9: helicase SNF2	0.0354151525
+UniRef50_UPI00036FBDE9: helicase SNF2|unclassified	0.0354151525
+UniRef50_UPI00040C9528: cobalt ABC transporter	0.0354141476
+UniRef50_UPI00040C9528: cobalt ABC transporter|unclassified	0.0354141476
+UniRef50_F4JP46: Formyltetrahydrofolate deformylase 2, mitochondrial	0.0354137362
+UniRef50_F4JP46: Formyltetrahydrofolate deformylase 2, mitochondrial|unclassified	0.0354137362
+UniRef50_UPI0004788904: glucose-6-phosphate dehydrogenase	0.0354081333
+UniRef50_UPI0004788904: glucose-6-phosphate dehydrogenase|unclassified	0.0354081333
+UniRef50_UPI0002E38A29: hypothetical protein	0.0354063685
+UniRef50_UPI0002E38A29: hypothetical protein|unclassified	0.0354063685
+UniRef50_B6H249: Pc13g04160 protein	0.0354042037
+UniRef50_B6H249: Pc13g04160 protein|unclassified	0.0354042037
+UniRef50_X6KX58	0.0354031526
+UniRef50_X6KX58|unclassified	0.0354031526
+UniRef50_UPI000367D476: hypothetical protein	0.0354023616
+UniRef50_UPI000367D476: hypothetical protein|unclassified	0.0354023616
+UniRef50_A0A059G310: Plasmid transfer protein traf	0.0353998494
+UniRef50_A0A059G310: Plasmid transfer protein traf|unclassified	0.0353998494
+UniRef50_Q9KT08: Phosphate acetyltransferase	0.0353959260
+UniRef50_Q9KT08: Phosphate acetyltransferase|unclassified	0.0353959260
+UniRef50_UPI000374910C: hypothetical protein	0.0353927801
+UniRef50_UPI000374910C: hypothetical protein|unclassified	0.0353927801
+UniRef50_UPI00026263FB: flagellin biosynthesis protein FlgM	0.0353895190
+UniRef50_UPI00026263FB: flagellin biosynthesis protein FlgM|unclassified	0.0353895190
+UniRef50_Q27464: Glucose-6-phosphate 1-dehydrogenase	0.0353882929
+UniRef50_Q27464: Glucose-6-phosphate 1-dehydrogenase|unclassified	0.0353882929
+UniRef50_UPI0002889B18: LolC/E family lipoprotein releasing system, transmembrane protein	0.0353848905
+UniRef50_UPI0002889B18: LolC/E family lipoprotein releasing system, transmembrane protein|unclassified	0.0353848905
+UniRef50_UPI0003642640: hypothetical protein	0.0353790709
+UniRef50_UPI0003642640: hypothetical protein|unclassified	0.0353790709
+UniRef50_A7HJX5: Valine--tRNA ligase	0.0353787430
+UniRef50_A7HJX5: Valine--tRNA ligase|unclassified	0.0353787430
+UniRef50_UPI0003F9D1F7: anthranilate synthase component I	0.0353762912
+UniRef50_UPI0003F9D1F7: anthranilate synthase component I|unclassified	0.0353762912
+UniRef50_Q9HGZ0: ATP-dependent 6-phosphofructokinase 2	0.0353706000
+UniRef50_Q9HGZ0: ATP-dependent 6-phosphofructokinase 2|unclassified	0.0353706000
+UniRef50_A5VB07	0.0353643936
+UniRef50_A5VB07|unclassified	0.0353643936
+UniRef50_E3D4G3: Phage late control gege D protein GpD	0.0353639994
+UniRef50_E3D4G3: Phage late control gege D protein GpD|unclassified	0.0353639994
+UniRef50_UPI00036748A8: hypothetical protein	0.0353563851
+UniRef50_UPI00036748A8: hypothetical protein|unclassified	0.0353563851
+UniRef50_V8CDJ4	0.0353562652
+UniRef50_V8CDJ4|unclassified	0.0353562652
+UniRef50_A5CXK2: Probable cytosol aminopeptidase	0.0353538937
+UniRef50_A5CXK2: Probable cytosol aminopeptidase|unclassified	0.0353538937
+UniRef50_UPI00036CE600: hypothetical protein	0.0353500893
+UniRef50_UPI00036CE600: hypothetical protein|unclassified	0.0353500893
+UniRef50_G0RK03: Predicted protein	0.0353462160
+UniRef50_G0RK03: Predicted protein|unclassified	0.0353462160
+UniRef50_F0Q7X7: Cobalamin synthesis protein P47K	0.0353457486
+UniRef50_F0Q7X7: Cobalamin synthesis protein P47K|unclassified	0.0353457486
+UniRef50_Q9RAA9: DNA polymerase I	0.0353366399
+UniRef50_Q9RAA9: DNA polymerase I|unclassified	0.0353366399
+UniRef50_B2A9N0: Podospora anserina S mat+ genomic DNA chromosome 1, supercontig 1	0.0353290294
+UniRef50_B2A9N0: Podospora anserina S mat+ genomic DNA chromosome 1, supercontig 1|unclassified	0.0353290294
+UniRef50_UPI00037C738F: hypothetical protein	0.0353286541
+UniRef50_UPI00037C738F: hypothetical protein|unclassified	0.0353286541
+UniRef50_UPI000377B254: hypothetical protein	0.0353282441
+UniRef50_UPI000377B254: hypothetical protein|unclassified	0.0353282441
+UniRef50_I4B6Z7: Beta-lactamase	0.0353266612
+UniRef50_I4B6Z7: Beta-lactamase|unclassified	0.0353266612
+UniRef50_UPI000373F84A: hypothetical protein	0.0353255140
+UniRef50_UPI000373F84A: hypothetical protein|unclassified	0.0353255140
+UniRef50_UPI00037775E1: hypothetical protein	0.0353254872
+UniRef50_UPI00037775E1: hypothetical protein|unclassified	0.0353254872
+UniRef50_UPI00035FDF95: acetylornithine aminotransferase	0.0353234783
+UniRef50_UPI00035FDF95: acetylornithine aminotransferase|unclassified	0.0353234783
+UniRef50_UPI00037E7EAF: hypothetical protein	0.0353163811
+UniRef50_UPI00037E7EAF: hypothetical protein|unclassified	0.0353163811
+UniRef50_UPI000467F239: hypothetical protein	0.0353082469
+UniRef50_UPI000467F239: hypothetical protein|unclassified	0.0353082469
+UniRef50_UPI0004717DF9: hypothetical protein	0.0353016086
+UniRef50_UPI0004717DF9: hypothetical protein|unclassified	0.0353016086
+UniRef50_G3S6E2	0.0353010026
+UniRef50_G3S6E2|unclassified	0.0353010026
+UniRef50_UPI000288BAAB: dihydroorotate dehydrogenase	0.0352989502
+UniRef50_UPI000288BAAB: dihydroorotate dehydrogenase|unclassified	0.0352989502
+UniRef50_UPI000466FA28: hypothetical protein	0.0352984337
+UniRef50_UPI000466FA28: hypothetical protein|unclassified	0.0352984337
+UniRef50_B1I4Z1: Glutamate--tRNA ligase	0.0352963053
+UniRef50_B1I4Z1: Glutamate--tRNA ligase|unclassified	0.0352963053
+UniRef50_UPI0003B58655: hypothetical protein	0.0352934966
+UniRef50_UPI0003B58655: hypothetical protein|unclassified	0.0352934966
+UniRef50_UPI0003EAB320: PREDICTED: methionine--tRNA ligase, cytoplasmic-like, partial	0.0352929105
+UniRef50_UPI0003EAB320: PREDICTED: methionine--tRNA ligase, cytoplasmic-like, partial|unclassified	0.0352929105
+UniRef50_P73662: Phosphate acetyltransferase	0.0352927319
+UniRef50_P73662: Phosphate acetyltransferase|unclassified	0.0352927319
+UniRef50_UPI00037DD7BD: hypothetical protein	0.0352904945
+UniRef50_UPI00037DD7BD: hypothetical protein|unclassified	0.0352904945
+UniRef50_G1VWX5	0.0352901702
+UniRef50_G1VWX5|unclassified	0.0352901702
+UniRef50_UPI00047661F3: Putrescine importer PuuP	0.0352886983
+UniRef50_UPI00047661F3: Putrescine importer PuuP|unclassified	0.0352886983
+UniRef50_Q0RF16: Potassium-transporting ATPase A chain	0.0352872740
+UniRef50_Q0RF16: Potassium-transporting ATPase A chain|unclassified	0.0352872740
+UniRef50_UPI000360228D: hypothetical protein	0.0352747901
+UniRef50_UPI000360228D: hypothetical protein|unclassified	0.0352747901
+UniRef50_L8GPM0	0.0352746844
+UniRef50_L8GPM0|unclassified	0.0352746844
+UniRef50_E9UPS2	0.0352721403
+UniRef50_E9UPS2|unclassified	0.0352721403
+UniRef50_A1B739	0.0352678373
+UniRef50_A1B739|unclassified	0.0352678373
+UniRef50_U6LL89	0.0352672030
+UniRef50_U6LL89|unclassified	0.0352672030
+UniRef50_I4EG27: Phage portal protein, hk97 family	0.0352649997
+UniRef50_I4EG27: Phage portal protein, hk97 family|unclassified	0.0352649997
+UniRef50_UPI000375E08A: hypothetical protein	0.0352601877
+UniRef50_UPI000375E08A: hypothetical protein|unclassified	0.0352601877
+UniRef50_D3A9K7	0.0352582744
+UniRef50_D3A9K7|unclassified	0.0352582744
+UniRef50_UPI000479E680: FIST domain containing protein	0.0352579379
+UniRef50_UPI000479E680: FIST domain containing protein|unclassified	0.0352579379
+UniRef50_UPI000255641C: type II secretory protein GspE	0.0352531078
+UniRef50_UPI000255641C: type II secretory protein GspE|unclassified	0.0352531078
+UniRef50_UPI000382981C: hypothetical protein, partial	0.0352515364
+UniRef50_UPI000382981C: hypothetical protein, partial|unclassified	0.0352515364
+UniRef50_UPI0004417C25: hypothetical protein PUNSTDRAFT_59595	0.0352437809
+UniRef50_UPI0004417C25: hypothetical protein PUNSTDRAFT_59595|unclassified	0.0352437809
+UniRef50_V5E6J8	0.0352435017
+UniRef50_V5E6J8|unclassified	0.0352435017
+UniRef50_UPI00036CCE2C: hypothetical protein	0.0352434769
+UniRef50_UPI00036CCE2C: hypothetical protein|unclassified	0.0352434769
+UniRef50_K6X157: Putative transglycosylase	0.0352340006
+UniRef50_K6X157: Putative transglycosylase|unclassified	0.0352340006
+UniRef50_UPI0003F6A8BA: hypothetical protein	0.0352307344
+UniRef50_UPI0003F6A8BA: hypothetical protein|unclassified	0.0352307344
+UniRef50_UPI0002F2E55B: hypothetical protein	0.0352302554
+UniRef50_UPI0002F2E55B: hypothetical protein|unclassified	0.0352302554
+UniRef50_UPI000362706F: hypothetical protein	0.0352285438
+UniRef50_UPI000362706F: hypothetical protein|unclassified	0.0352285438
+UniRef50_A8EQW9: Glutamate--tRNA ligase 1	0.0352234137
+UniRef50_A8EQW9: Glutamate--tRNA ligase 1|unclassified	0.0352234137
+UniRef50_UPI000429B909: ribonucleotide-diphosphate reductase subunit alpha	0.0352218648
+UniRef50_UPI000429B909: ribonucleotide-diphosphate reductase subunit alpha|unclassified	0.0352218648
+UniRef50_UPI00037CF903: hypothetical protein	0.0352178307
+UniRef50_UPI00037CF903: hypothetical protein|unclassified	0.0352178307
+UniRef50_UPI00044177DC: FMN-dependent alpha-hydroxy acid dehydrogenase	0.0352163650
+UniRef50_UPI00044177DC: FMN-dependent alpha-hydroxy acid dehydrogenase|unclassified	0.0352163650
+UniRef50_C0VWL2: Rib/alpha-like repeat protein	0.0352155475
+UniRef50_C0VWL2: Rib/alpha-like repeat protein|unclassified	0.0352155475
+UniRef50_A4EFA3	0.0352140242
+UniRef50_A4EFA3|unclassified	0.0352140242
+UniRef50_UPI000471714B: tRNA 2-thiouridylase	0.0352132124
+UniRef50_UPI000471714B: tRNA 2-thiouridylase|unclassified	0.0352132124
+UniRef50_Q7UHW3: Adenylosuccinate synthetase	0.0352117734
+UniRef50_Q7UHW3: Adenylosuccinate synthetase|unclassified	0.0352117734
+UniRef50_UPI00047963B7: membrane protein	0.0352106319
+UniRef50_UPI00047963B7: membrane protein|unclassified	0.0352106319
+UniRef50_I0IB25	0.0352104899
+UniRef50_I0IB25|unclassified	0.0352104899
+UniRef50_UPI0003C1AECF	0.0352070407
+UniRef50_UPI0003C1AECF|unclassified	0.0352070407
+UniRef50_UPI00035CDDD8: hypothetical protein	0.0352068379
+UniRef50_UPI00035CDDD8: hypothetical protein|unclassified	0.0352068379
+UniRef50_G8NCG2: Short-chain dehydrogenase/reductase SDR	0.0352040603
+UniRef50_G8NCG2: Short-chain dehydrogenase/reductase SDR|unclassified	0.0352040603
+UniRef50_UPI000395D90C: PREDICTED: 5-aminolevulinate synthase, erythroid-specific, mitochondrial-like	0.0352040172
+UniRef50_UPI000395D90C: PREDICTED: 5-aminolevulinate synthase, erythroid-specific, mitochondrial-like|unclassified	0.0352040172
+UniRef50_UPI00037D97E4: hypothetical protein	0.0351984938
+UniRef50_UPI00037D97E4: hypothetical protein|unclassified	0.0351984938
+UniRef50_UPI0003B57DFF: hypothetical protein	0.0351923545
+UniRef50_UPI0003B57DFF: hypothetical protein|unclassified	0.0351923545
+UniRef50_UPI00036B5F61: hypothetical protein	0.0351912128
+UniRef50_UPI00036B5F61: hypothetical protein|unclassified	0.0351912128
+UniRef50_UPI000255C428: two-component sensor histidine kinase YvqC	0.0351865325
+UniRef50_UPI000255C428: two-component sensor histidine kinase YvqC|unclassified	0.0351865325
+UniRef50_J8LBZ1	0.0351861157
+UniRef50_J8LBZ1|unclassified	0.0351861157
+UniRef50_H5WMU5: Type VI secretion protein, VC_A0110 family	0.0351857133
+UniRef50_H5WMU5: Type VI secretion protein, VC_A0110 family|unclassified	0.0351857133
+UniRef50_UPI0001746078: LysR family transcriptional regulator	0.0351832501
+UniRef50_UPI0001746078: LysR family transcriptional regulator|unclassified	0.0351832501
+UniRef50_UPI000304BFAB: hypothetical protein	0.0351766505
+UniRef50_UPI000304BFAB: hypothetical protein|unclassified	0.0351766505
+UniRef50_B2UKZ6: N-acetyl-gamma-glutamyl-phosphate reductase	0.0351751136
+UniRef50_B2UKZ6: N-acetyl-gamma-glutamyl-phosphate reductase|unclassified	0.0351751136
+UniRef50_P75091: Methionine--tRNA ligase	0.0351742498
+UniRef50_P75091: Methionine--tRNA ligase|unclassified	0.0351742498
+UniRef50_UPI0004756AEC: Surfeit locus 1 family protein	0.0351727833
+UniRef50_UPI0004756AEC: Surfeit locus 1 family protein|unclassified	0.0351727833
+UniRef50_A0A011NL09	0.0351727537
+UniRef50_A0A011NL09|unclassified	0.0351727537
+UniRef50_UPI00047712CE: NADH-quinone oxidoreductase subunit H	0.0351712932
+UniRef50_UPI00047712CE: NADH-quinone oxidoreductase subunit H|unclassified	0.0351712932
+UniRef50_UPI000255B7E8: lipoprotein-34	0.0351700269
+UniRef50_UPI000255B7E8: lipoprotein-34|unclassified	0.0351700269
+UniRef50_B5YH68: 3-phosphoshikimate 1-carboxyvinyltransferase	0.0351692221
+UniRef50_B5YH68: 3-phosphoshikimate 1-carboxyvinyltransferase|unclassified	0.0351692221
+UniRef50_A0A031I0A8: Diguanylate phosphodiesterase	0.0351688477
+UniRef50_A0A031I0A8: Diguanylate phosphodiesterase|unclassified	0.0351688477
+UniRef50_UPI0004671E08: hypothetical protein	0.0351674408
+UniRef50_UPI0004671E08: hypothetical protein|unclassified	0.0351674408
+UniRef50_UPI000441BE3F	0.0351659147
+UniRef50_UPI000441BE3F|unclassified	0.0351659147
+UniRef50_UPI000477BDD6: chemotaxis protein	0.0351649945
+UniRef50_UPI000477BDD6: chemotaxis protein|unclassified	0.0351649945
+UniRef50_E2XPL6	0.0351634179
+UniRef50_E2XPL6|unclassified	0.0351634179
+UniRef50_UPI0003D2681B: PREDICTED: DEAD-box ATP-dependent RNA helicase 53-like isoform X1	0.0351592432
+UniRef50_UPI0003D2681B: PREDICTED: DEAD-box ATP-dependent RNA helicase 53-like isoform X1|unclassified	0.0351592432
+UniRef50_UPI0002375439: formyl-CoA transferase, partial	0.0351587508
+UniRef50_UPI0002375439: formyl-CoA transferase, partial|unclassified	0.0351587508
+UniRef50_U3U2P6	0.0351570095
+UniRef50_U3U2P6|unclassified	0.0351570095
+UniRef50_UPI000347DCCD: diguanylate cyclase	0.0351485872
+UniRef50_UPI000347DCCD: diguanylate cyclase|unclassified	0.0351485872
+UniRef50_UPI00034746B0: hypothetical protein	0.0351414348
+UniRef50_UPI00034746B0: hypothetical protein|unclassified	0.0351414348
+UniRef50_G4RH01: Peptidase M23B	0.0351391126
+UniRef50_G4RH01: Peptidase M23B|unclassified	0.0351391126
+UniRef50_UPI0003644DE1: hypothetical protein	0.0351371012
+UniRef50_UPI0003644DE1: hypothetical protein|unclassified	0.0351371012
+UniRef50_UPI0003B74256: peptide ABC transporter ATP-binding protein	0.0351364113
+UniRef50_UPI0003B74256: peptide ABC transporter ATP-binding protein|unclassified	0.0351364113
+UniRef50_W5X5X9: CHAP domain-containing protein	0.0351346306
+UniRef50_W5X5X9: CHAP domain-containing protein|unclassified	0.0351346306
+UniRef50_UPI00037D59BF: hypothetical protein	0.0351321868
+UniRef50_UPI00037D59BF: hypothetical protein|unclassified	0.0351321868
+UniRef50_UPI000474F98C: C4-dicarboxylate ABC transporter permease	0.0351307631
+UniRef50_UPI000474F98C: C4-dicarboxylate ABC transporter permease|unclassified	0.0351307631
+UniRef50_UPI00037EBA39: hypothetical protein	0.0351243465
+UniRef50_UPI00037EBA39: hypothetical protein|unclassified	0.0351243465
+UniRef50_UPI0003D0BE42: PREDICTED: methionine--tRNA ligase, cytoplasmic isoform X2	0.0351232436
+UniRef50_UPI0003D0BE42: PREDICTED: methionine--tRNA ligase, cytoplasmic isoform X2|unclassified	0.0351232436
+UniRef50_UPI00047D0A02: hypothetical protein	0.0351226703
+UniRef50_UPI00047D0A02: hypothetical protein|unclassified	0.0351226703
+UniRef50_UPI00047BD8AE: ATPase	0.0351215393
+UniRef50_UPI00047BD8AE: ATPase|unclassified	0.0351215393
+UniRef50_UPI00036E78E2: hypothetical protein	0.0351214675
+UniRef50_UPI00036E78E2: hypothetical protein|unclassified	0.0351214675
+UniRef50_UPI0003618CEB: hypothetical protein	0.0351165906
+UniRef50_UPI0003618CEB: hypothetical protein|unclassified	0.0351165906
+UniRef50_UPI0003A087DF: coproporphyrinogen III oxidase	0.0351132960
+UniRef50_UPI0003A087DF: coproporphyrinogen III oxidase|unclassified	0.0351132960
+UniRef50_UPI000400A0AA: hypothetical protein	0.0351121953
+UniRef50_UPI000400A0AA: hypothetical protein|unclassified	0.0351121953
+UniRef50_O49506: Peroxisomal (S)-2-hydroxy-acid oxidase GLO5	0.0351108679
+UniRef50_O49506: Peroxisomal (S)-2-hydroxy-acid oxidase GLO5|unclassified	0.0351108679
+UniRef50_E3PS85	0.0351010979
+UniRef50_E3PS85|unclassified	0.0351010979
+UniRef50_I0YS79	0.0350933166
+UniRef50_I0YS79|unclassified	0.0350933166
+UniRef50_UPI0004785B9E: hypothetical protein	0.0350893149
+UniRef50_UPI0004785B9E: hypothetical protein|unclassified	0.0350893149
+UniRef50_UPI000328FCE1: PREDICTED: serine/arginine repetitive matrix protein 1-like, partial	0.0350852385
+UniRef50_UPI000328FCE1: PREDICTED: serine/arginine repetitive matrix protein 1-like, partial|unclassified	0.0350852385
+UniRef50_UPI0002886295: menaquinone-specific isochorismate synthase	0.0350850692
+UniRef50_UPI0002886295: menaquinone-specific isochorismate synthase|unclassified	0.0350850692
+UniRef50_R4YS12: Transcription factor jumonji	0.0350849113
+UniRef50_R4YS12: Transcription factor jumonji|unclassified	0.0350849113
+UniRef50_L7XDF3: Chloroplast cytochrome c synthesis 2	0.0350843812
+UniRef50_L7XDF3: Chloroplast cytochrome c synthesis 2|unclassified	0.0350843812
+UniRef50_UPI000472212C: hypothetical protein, partial	0.0350807041
+UniRef50_UPI000472212C: hypothetical protein, partial|unclassified	0.0350807041
+UniRef50_UPI0002899E1F: DNA mismatch repair protein MutS	0.0350787531
+UniRef50_UPI0002899E1F: DNA mismatch repair protein MutS|unclassified	0.0350787531
+UniRef50_Q0VQ79: Membrane-bound lytic murein transglycosylase D	0.0350747029
+UniRef50_Q0VQ79: Membrane-bound lytic murein transglycosylase D|unclassified	0.0350747029
+UniRef50_UPI0003B7ADFE: cadmium transporter	0.0350732214
+UniRef50_UPI0003B7ADFE: cadmium transporter|unclassified	0.0350732214
+UniRef50_UPI00035C1657: hypothetical protein	0.0350726951
+UniRef50_UPI00035C1657: hypothetical protein|unclassified	0.0350726951
+UniRef50_L0KGA5	0.0350646445
+UniRef50_L0KGA5|unclassified	0.0350646445
+UniRef50_D7HZH4: Sugar ABC transporter, periplasmic sugar-binding protein	0.0350631841
+UniRef50_D7HZH4: Sugar ABC transporter, periplasmic sugar-binding protein|unclassified	0.0350631841
+UniRef50_E3F5U5	0.0350597136
+UniRef50_E3F5U5|unclassified	0.0350597136
+UniRef50_H8L617	0.0350524745
+UniRef50_H8L617|unclassified	0.0350524745
+UniRef50_UPI00046D3FE8: 3-keto-5-aminohexanoate cleavage protein	0.0350444386
+UniRef50_UPI00046D3FE8: 3-keto-5-aminohexanoate cleavage protein|unclassified	0.0350444386
+UniRef50_UPI00036DA677: hypothetical protein, partial	0.0350404415
+UniRef50_UPI00036DA677: hypothetical protein, partial|unclassified	0.0350404415
+UniRef50_UPI00037D6AD5: hypothetical protein	0.0350367265
+UniRef50_UPI00037D6AD5: hypothetical protein|unclassified	0.0350367265
+UniRef50_J7NGU6	0.0350341459
+UniRef50_J7NGU6|unclassified	0.0350341459
+UniRef50_UPI00035E0C27: hypothetical protein	0.0350335319
+UniRef50_UPI00035E0C27: hypothetical protein|unclassified	0.0350335319
+UniRef50_H9KEV5	0.0350335081
+UniRef50_H9KEV5|unclassified	0.0350335081
+UniRef50_B4EV10	0.0350325680
+UniRef50_B4EV10|unclassified	0.0350325680
+UniRef50_UPI0003799CCA: hypothetical protein	0.0350317733
+UniRef50_UPI0003799CCA: hypothetical protein|unclassified	0.0350317733
+UniRef50_F6CX41	0.0350312793
+UniRef50_F6CX41|unclassified	0.0350312793
+UniRef50_UPI000378A1A5: hypothetical protein	0.0350310914
+UniRef50_UPI000378A1A5: hypothetical protein|unclassified	0.0350310914
+UniRef50_Q2S5G4: Phosphoadenosine phosphosulfate reductase	0.0350269241
+UniRef50_Q2S5G4: Phosphoadenosine phosphosulfate reductase|unclassified	0.0350269241
+UniRef50_E3ENU9: Chromosome partitioning protein	0.0350266110
+UniRef50_E3ENU9: Chromosome partitioning protein|unclassified	0.0350266110
+UniRef50_E2BKF3	0.0350249906
+UniRef50_E2BKF3|unclassified	0.0350249906
+UniRef50_C5CG19: Methionyl-tRNA formyltransferase	0.0350216417
+UniRef50_C5CG19: Methionyl-tRNA formyltransferase|unclassified	0.0350216417
+UniRef50_UPI00016A3FD5: UDP-N-acetylglucosamine 2-epimerase	0.0350190606
+UniRef50_UPI00016A3FD5: UDP-N-acetylglucosamine 2-epimerase|unclassified	0.0350190606
+UniRef50_N1QMF6: Rxt3-domain-containing protein	0.0350154143
+UniRef50_N1QMF6: Rxt3-domain-containing protein|unclassified	0.0350154143
+UniRef50_UPI000318E591: hypothetical protein	0.0350109820
+UniRef50_UPI000318E591: hypothetical protein|unclassified	0.0350109820
+UniRef50_UPI00041FE5DE: zinc ABC transporter ATPase	0.0350070185
+UniRef50_UPI00041FE5DE: zinc ABC transporter ATPase|unclassified	0.0350070185
+UniRef50_D2VNM0: Predicted protein	0.0350069150
+UniRef50_D2VNM0: Predicted protein|unclassified	0.0350069150
+UniRef50_Q02751: Alpha-glucosidase	0.0350068725
+UniRef50_Q02751: Alpha-glucosidase|unclassified	0.0350068725
+UniRef50_UPI00036B7592: hypothetical protein	0.0350068136
+UniRef50_UPI00036B7592: hypothetical protein|unclassified	0.0350068136
+UniRef50_Z7MPY3: Flavo, TIGR03862 family protein	0.0350048968
+UniRef50_Z7MPY3: Flavo, TIGR03862 family protein|unclassified	0.0350048968
+UniRef50_H2BW13: AAA ATPase	0.0350042652
+UniRef50_H2BW13: AAA ATPase|unclassified	0.0350042652
+UniRef50_UPI0003B7984C: RNA polymerase subunit sigma-54	0.0350034634
+UniRef50_UPI0003B7984C: RNA polymerase subunit sigma-54|unclassified	0.0350034634
+UniRef50_Q1RH40: Bifunctional methyltransferase	0.0349970647
+UniRef50_Q1RH40: Bifunctional methyltransferase|unclassified	0.0349970647
+UniRef50_W7AZ71	0.0349962573
+UniRef50_W7AZ71|unclassified	0.0349962573
+UniRef50_T2RQG3	0.0349909026
+UniRef50_T2RQG3|unclassified	0.0349909026
+UniRef50_UPI0003AD1F7C: hypothetical protein	0.0349896109
+UniRef50_UPI0003AD1F7C: hypothetical protein|unclassified	0.0349896109
+UniRef50_UPI00016C46D7: NADH dehydrogenase I chain L	0.0349851281
+UniRef50_UPI00016C46D7: NADH dehydrogenase I chain L|unclassified	0.0349851281
+UniRef50_A5K6I2: Cysteine repeat modular protein, putative	0.0349849944
+UniRef50_A5K6I2: Cysteine repeat modular protein, putative|unclassified	0.0349849944
+UniRef50_UPI00047D4C90: hypothetical protein	0.0349827891
+UniRef50_UPI00047D4C90: hypothetical protein|unclassified	0.0349827891
+UniRef50_UPI00035D274E: hypothetical protein	0.0349821939
+UniRef50_UPI00035D274E: hypothetical protein|unclassified	0.0349821939
+UniRef50_UPI0003678E2F: hypothetical protein	0.0349808775
+UniRef50_UPI0003678E2F: hypothetical protein|unclassified	0.0349808775
+UniRef50_Q4L320: Uronate isomerase	0.0349762875
+UniRef50_Q4L320: Uronate isomerase|unclassified	0.0349762875
+UniRef50_UPI000406C8A3: alcohol dehydrogenase	0.0349754756
+UniRef50_UPI000406C8A3: alcohol dehydrogenase|unclassified	0.0349754756
+UniRef50_UPI0004702EFB: hypothetical protein	0.0349737487
+UniRef50_UPI0004702EFB: hypothetical protein|unclassified	0.0349737487
+UniRef50_B4U9V3: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase	0.0349716109
+UniRef50_B4U9V3: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|unclassified	0.0349716109
+UniRef50_Q9X081	0.0349693609
+UniRef50_Q9X081|unclassified	0.0349693609
+UniRef50_UPI000409F5E3: transferase	0.0349688777
+UniRef50_UPI000409F5E3: transferase|unclassified	0.0349688777
+UniRef50_W1JWC5: HK97 family phage portal protein	0.0349681880
+UniRef50_W1JWC5: HK97 family phage portal protein|unclassified	0.0349681880
+UniRef50_UPI0003B607D7: hypothetical protein	0.0349674852
+UniRef50_UPI0003B607D7: hypothetical protein|unclassified	0.0349674852
+UniRef50_X1YRL2	0.0349664490
+UniRef50_X1YRL2|unclassified	0.0349664490
+UniRef50_M0CR54: PKD domain-containing protein	0.0349617164
+UniRef50_M0CR54: PKD domain-containing protein|unclassified	0.0349617164
+UniRef50_UPI0003640286: hypothetical protein	0.0349562977
+UniRef50_UPI0003640286: hypothetical protein|unclassified	0.0349562977
+UniRef50_UPI000377B119: MULTISPECIES: hypothetical protein	0.0349551830
+UniRef50_UPI000377B119: MULTISPECIES: hypothetical protein|unclassified	0.0349551830
+UniRef50_UPI00046E9A5F: spore gernimation protein KA	0.0349545426
+UniRef50_UPI00046E9A5F: spore gernimation protein KA|unclassified	0.0349545426
+UniRef50_A0A032VBJ2: SPP1 family phage portal protein	0.0349545385
+UniRef50_A0A032VBJ2: SPP1 family phage portal protein|unclassified	0.0349545385
+UniRef50_U6G589	0.0349541449
+UniRef50_U6G589|unclassified	0.0349541449
+UniRef50_UPI000472F6B6: allantoinase	0.0349526593
+UniRef50_UPI000472F6B6: allantoinase|unclassified	0.0349526593
+UniRef50_M5J833: Exodeoxyribonuclease V subunit alpha	0.0349462181
+UniRef50_M5J833: Exodeoxyribonuclease V subunit alpha|unclassified	0.0349462181
+UniRef50_UPI0000F2C7CD: PREDICTED: coiled-coil domain-containing protein 166-like	0.0349439691
+UniRef50_UPI0000F2C7CD: PREDICTED: coiled-coil domain-containing protein 166-like|unclassified	0.0349439691
+UniRef50_UPI0003B386AE: riboflavin biosynthesis protein RibD	0.0349345835
+UniRef50_UPI0003B386AE: riboflavin biosynthesis protein RibD|unclassified	0.0349345835
+UniRef50_J7ZJS3	0.0349341595
+UniRef50_J7ZJS3|unclassified	0.0349341595
+UniRef50_A9FBA1	0.0349170577
+UniRef50_A9FBA1|unclassified	0.0349170577
+UniRef50_UPI00037D4803: hypothetical protein	0.0349141173
+UniRef50_UPI00037D4803: hypothetical protein|unclassified	0.0349141173
+UniRef50_U3XEW1: Cell wall-associated surface protein	0.0349138796
+UniRef50_U3XEW1: Cell wall-associated surface protein|unclassified	0.0349138796
+UniRef50_X2LYW8	0.0349057177
+UniRef50_X2LYW8|unclassified	0.0349057177
+UniRef50_UPI000416FC90: hypothetical protein	0.0348982900
+UniRef50_UPI000416FC90: hypothetical protein|unclassified	0.0348982900
+UniRef50_UPI0004785618: peptidase M20	0.0348981561
+UniRef50_UPI0004785618: peptidase M20|unclassified	0.0348981561
+UniRef50_UPI0004734443: hypothetical protein	0.0348966790
+UniRef50_UPI0004734443: hypothetical protein|unclassified	0.0348966790
+UniRef50_UPI0003C13F1D: PREDICTED: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial-like	0.0348956398
+UniRef50_UPI0003C13F1D: PREDICTED: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial-like|unclassified	0.0348956398
+UniRef50_UPI000273C8FF: PREDICTED: histone deacetylase 6	0.0348938963
+UniRef50_UPI000273C8FF: PREDICTED: histone deacetylase 6|unclassified	0.0348938963
+UniRef50_UPI00046503FA: hypothetical protein	0.0348870585
+UniRef50_UPI00046503FA: hypothetical protein|unclassified	0.0348870585
+UniRef50_Q1GZK1: Adenylate cyclase	0.0348808222
+UniRef50_Q1GZK1: Adenylate cyclase|unclassified	0.0348808222
+UniRef50_UPI000262CD50: putative sodium/calcium exchange protein	0.0348801590
+UniRef50_UPI000262CD50: putative sodium/calcium exchange protein|unclassified	0.0348801590
+UniRef50_UPI00036F7686: hypothetical protein	0.0348741895
+UniRef50_UPI00036F7686: hypothetical protein|unclassified	0.0348741895
+UniRef50_UPI0004407F96: arginine biosynthesis protein ArgJ	0.0348726974
+UniRef50_UPI0004407F96: arginine biosynthesis protein ArgJ|unclassified	0.0348726974
+UniRef50_Q23WP3: Pyridoxal-phosphate-dependent enzyme family protein	0.0348713933
+UniRef50_Q23WP3: Pyridoxal-phosphate-dependent enzyme family protein|unclassified	0.0348713933
+UniRef50_UPI000374E85B: hypothetical protein	0.0348711087
+UniRef50_UPI000374E85B: hypothetical protein|unclassified	0.0348711087
+UniRef50_UPI00036996BC: hypothetical protein	0.0348673531
+UniRef50_UPI00036996BC: hypothetical protein|unclassified	0.0348673531
+UniRef50_UPI000312E3D9: hypothetical protein	0.0348651916
+UniRef50_UPI000312E3D9: hypothetical protein|unclassified	0.0348651916
+UniRef50_Q7WP51: Ornithine aminotransferase	0.0348622646
+UniRef50_Q7WP51: Ornithine aminotransferase|unclassified	0.0348622646
+UniRef50_P62635: Chemotaxis response regulator protein-glutamate methylesterase	0.0348589517
+UniRef50_P62635: Chemotaxis response regulator protein-glutamate methylesterase|unclassified	0.0348589517
+UniRef50_P21679: Late control gene D protein	0.0348565177
+UniRef50_P21679: Late control gene D protein|unclassified	0.0348565177
+UniRef50_UPI00047273B9: hypothetical protein	0.0348525828
+UniRef50_UPI00047273B9: hypothetical protein|unclassified	0.0348525828
+UniRef50_F1WSP9	0.0348497113
+UniRef50_F1WSP9|unclassified	0.0348497113
+UniRef50_O28997: N5-carboxyaminoimidazole ribonucleotide mutase	0.0348478820
+UniRef50_O28997: N5-carboxyaminoimidazole ribonucleotide mutase|unclassified	0.0348478820
+UniRef50_E0SSP0: PP-loop domain protein	0.0348450140
+UniRef50_E0SSP0: PP-loop domain protein|unclassified	0.0348450140
+UniRef50_UPI00046FECEA: multidrug transporter	0.0348445060
+UniRef50_UPI00046FECEA: multidrug transporter|unclassified	0.0348445060
+UniRef50_UPI00036ADD00: hypothetical protein	0.0348405807
+UniRef50_UPI00036ADD00: hypothetical protein|unclassified	0.0348405807
+UniRef50_UPI00046AEF9B: ABC transporter ATP-binding protein	0.0348404210
+UniRef50_UPI00046AEF9B: ABC transporter ATP-binding protein|unclassified	0.0348404210
+UniRef50_UPI0003B6414D: polynucleotide phosphorylase, partial	0.0348395277
+UniRef50_UPI0003B6414D: polynucleotide phosphorylase, partial|unclassified	0.0348395277
+UniRef50_D6XT98: Cytochrome c oxidase assembly factor CtaG	0.0348366012
+UniRef50_D6XT98: Cytochrome c oxidase assembly factor CtaG|unclassified	0.0348366012
+UniRef50_UPI0003767FF8: MULTISPECIES: hypothetical protein	0.0348360992
+UniRef50_UPI0003767FF8: MULTISPECIES: hypothetical protein|unclassified	0.0348360992
+UniRef50_H2SIS3	0.0348323030
+UniRef50_H2SIS3|unclassified	0.0348323030
+UniRef50_UPI00037D993F: hypothetical protein	0.0348311517
+UniRef50_UPI00037D993F: hypothetical protein|unclassified	0.0348311517
+UniRef50_A0A024HX26	0.0348275446
+UniRef50_A0A024HX26|unclassified	0.0348275446
+UniRef50_UPI0004647D08: hypothetical protein	0.0348246973
+UniRef50_UPI0004647D08: hypothetical protein|unclassified	0.0348246973
+UniRef50_A4XYX3: Lipoyl synthase	0.0348231662
+UniRef50_A4XYX3: Lipoyl synthase|unclassified	0.0348231662
+UniRef50_P45480: Glutathione synthetase	0.0348171763
+UniRef50_P45480: Glutathione synthetase|unclassified	0.0348171763
+UniRef50_Q165E2: 1,4-alpha-glucan branching enzyme GlgB	0.0348083405
+UniRef50_Q165E2: 1,4-alpha-glucan branching enzyme GlgB|unclassified	0.0348083405
+UniRef50_A0A058ZFX3	0.0348063710
+UniRef50_A0A058ZFX3|unclassified	0.0348063710
+UniRef50_UPI0004171916: hypothetical protein	0.0348050137
+UniRef50_UPI0004171916: hypothetical protein|unclassified	0.0348050137
+UniRef50_UPI00046F3223: hypothetical protein	0.0348045679
+UniRef50_UPI00046F3223: hypothetical protein|unclassified	0.0348045679
+UniRef50_UPI0002556401: sensor histidine kinase	0.0348019190
+UniRef50_UPI0002556401: sensor histidine kinase|unclassified	0.0348019190
+UniRef50_C6BYG5: UDP-N-acetylmuramate--L-alanine ligase	0.0348013000
+UniRef50_C6BYG5: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.0348013000
+UniRef50_UPI0002559C3F: sodium/hydrogen exchanger	0.0347993781
+UniRef50_UPI0002559C3F: sodium/hydrogen exchanger|unclassified	0.0347993781
+UniRef50_UPI0003F08E44: PREDICTED: peptide chain release factor 1, mitochondrial	0.0347990089
+UniRef50_UPI0003F08E44: PREDICTED: peptide chain release factor 1, mitochondrial|unclassified	0.0347990089
+UniRef50_UPI0003B61057: hypothetical protein	0.0347985196
+UniRef50_UPI0003B61057: hypothetical protein|unclassified	0.0347985196
+UniRef50_UPI000478E845: acetyl-CoA acetyltransferase	0.0347971683
+UniRef50_UPI000478E845: acetyl-CoA acetyltransferase|unclassified	0.0347971683
+UniRef50_Q936T0: Glutamate--isopropylamine ligase	0.0347970575
+UniRef50_Q936T0: Glutamate--isopropylamine ligase|unclassified	0.0347970575
+UniRef50_G2ZT62	0.0347952125
+UniRef50_G2ZT62|unclassified	0.0347952125
+UniRef50_C3H387	0.0347944702
+UniRef50_C3H387|unclassified	0.0347944702
+UniRef50_B9E6M1	0.0347914073
+UniRef50_B9E6M1|unclassified	0.0347914073
+UniRef50_UPI0003AF3588: PREDICTED: d-2-hydroxyglutarate dehydrogenase, mitochondrial	0.0347880116
+UniRef50_UPI0003AF3588: PREDICTED: d-2-hydroxyglutarate dehydrogenase, mitochondrial|unclassified	0.0347880116
+UniRef50_UPI00035C30D5: hypothetical protein	0.0347859741
+UniRef50_UPI00035C30D5: hypothetical protein|unclassified	0.0347859741
+UniRef50_UPI0003B5BDB9: hypothetical protein	0.0347851622
+UniRef50_UPI0003B5BDB9: hypothetical protein|unclassified	0.0347851622
+UniRef50_Q81G06: Histidinol dehydrogenase	0.0347850859
+UniRef50_Q81G06: Histidinol dehydrogenase|unclassified	0.0347850859
+UniRef50_UPI0003B3D8B3	0.0347850845
+UniRef50_UPI0003B3D8B3|unclassified	0.0347850845
+UniRef50_UPI0004688708: hypothetical protein	0.0347784041
+UniRef50_UPI0004688708: hypothetical protein|unclassified	0.0347784041
+UniRef50_A0A022GZC4: Taurine catabolism dioxygenase TauD	0.0347759577
+UniRef50_A0A022GZC4: Taurine catabolism dioxygenase TauD|unclassified	0.0347759577
+UniRef50_UPI0003B582E0: membrane protein	0.0347748851
+UniRef50_UPI0003B582E0: membrane protein|unclassified	0.0347748851
+UniRef50_K8P1S4	0.0347728270
+UniRef50_K8P1S4|unclassified	0.0347728270
+UniRef50_C7RV71: Inner membrane CreD family protein	0.0347696506
+UniRef50_C7RV71: Inner membrane CreD family protein|unclassified	0.0347696506
+UniRef50_L1JFP9	0.0347694469
+UniRef50_L1JFP9|unclassified	0.0347694469
+UniRef50_UPI00046E6C81: hypothetical protein	0.0347620345
+UniRef50_UPI00046E6C81: hypothetical protein|unclassified	0.0347620345
+UniRef50_UPI000310109D: hypothetical protein	0.0347602362
+UniRef50_UPI000310109D: hypothetical protein|unclassified	0.0347602362
+UniRef50_W5XDU7: Transglutaminase domain protein	0.0347558912
+UniRef50_W5XDU7: Transglutaminase domain protein|unclassified	0.0347558912
+UniRef50_Q15JF3: Putative oxidoreductase	0.0347517466
+UniRef50_Q15JF3: Putative oxidoreductase|unclassified	0.0347517466
+UniRef50_UPI00031455FB: diaminopimelate decarboxylase	0.0347445319
+UniRef50_UPI00031455FB: diaminopimelate decarboxylase|unclassified	0.0347445319
+UniRef50_J9P1L3	0.0347440780
+UniRef50_J9P1L3|unclassified	0.0347440780
+UniRef50_C3LII3	0.0347393160
+UniRef50_C3LII3|unclassified	0.0347393160
+UniRef50_A5CW53: UDP-N-acetylmuramate--L-alanine ligase	0.0347372049
+UniRef50_A5CW53: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.0347372049
+UniRef50_M3C165	0.0347361001
+UniRef50_M3C165|unclassified	0.0347361001
+UniRef50_UPI00036BB8E1: hypothetical protein	0.0347353673
+UniRef50_UPI00036BB8E1: hypothetical protein|unclassified	0.0347353673
+UniRef50_Q8EW03: Asparagine--tRNA ligase	0.0347301195
+UniRef50_Q8EW03: Asparagine--tRNA ligase|unclassified	0.0347301195
+UniRef50_E3KQD2	0.0347251124
+UniRef50_E3KQD2|unclassified	0.0347251124
+UniRef50_T0ZNW1: Prephenate dehydrogenase (Fragment)	0.0347249022
+UniRef50_T0ZNW1: Prephenate dehydrogenase (Fragment)|unclassified	0.0347249022
+UniRef50_UPI00035DED29: hypothetical protein	0.0347224626
+UniRef50_UPI00035DED29: hypothetical protein|unclassified	0.0347224626
+UniRef50_Q8KWX4: DNA-directed RNA polymerase subunit beta	0.0347218653
+UniRef50_Q8KWX4: DNA-directed RNA polymerase subunit beta|unclassified	0.0347218653
+UniRef50_B0K5A3: ATP-dependent zinc metalloprotease FtsH 1	0.0347215432
+UniRef50_B0K5A3: ATP-dependent zinc metalloprotease FtsH 1|unclassified	0.0347215432
+UniRef50_Q8FLY1	0.0347212342
+UniRef50_Q8FLY1|unclassified	0.0347212342
+UniRef50_P43775: Folylpolyglutamate synthase	0.0347202647
+UniRef50_P43775: Folylpolyglutamate synthase|unclassified	0.0347202647
+UniRef50_X6P3I6	0.0347187969
+UniRef50_X6P3I6|unclassified	0.0347187969
+UniRef50_E3YN59: Cell wall surface anchor family protein	0.0347154821
+UniRef50_E3YN59: Cell wall surface anchor family protein|unclassified	0.0347154821
+UniRef50_UPI00047766E8: MFS transporter	0.0347150551
+UniRef50_UPI00047766E8: MFS transporter|unclassified	0.0347150551
+UniRef50_UPI000255EF15: group 1 glycosyl transferase	0.0347149150
+UniRef50_UPI000255EF15: group 1 glycosyl transferase|unclassified	0.0347149150
+UniRef50_G4ZKG2	0.0347121635
+UniRef50_G4ZKG2|unclassified	0.0347121635
+UniRef50_J7SF87: Protein Y9C9A.16, isoform b	0.0347119033
+UniRef50_J7SF87: Protein Y9C9A.16, isoform b|unclassified	0.0347119033
+UniRef50_UPI000329916F: PREDICTED: betaine aldehyde dehydrogenase-like	0.0347116721
+UniRef50_UPI000329916F: PREDICTED: betaine aldehyde dehydrogenase-like|unclassified	0.0347116721
+UniRef50_UPI0003B5126A: addiction module toxin YoeB	0.0347115895
+UniRef50_UPI0003B5126A: addiction module toxin YoeB|unclassified	0.0347115895
+UniRef50_J5JC14	0.0347107413
+UniRef50_J5JC14|unclassified	0.0347107413
+UniRef50_UPI000361C411: hypothetical protein	0.0347006680
+UniRef50_UPI000361C411: hypothetical protein|unclassified	0.0347006680
+UniRef50_UPI0003715F65: hypothetical protein, partial	0.0346962190
+UniRef50_UPI0003715F65: hypothetical protein, partial|unclassified	0.0346962190
+UniRef50_UPI0004785FF4: hypothetical protein	0.0346936164
+UniRef50_UPI0004785FF4: hypothetical protein|unclassified	0.0346936164
+UniRef50_UPI00037C4AE4: hypothetical protein	0.0346888906
+UniRef50_UPI00037C4AE4: hypothetical protein|unclassified	0.0346888906
+UniRef50_UPI0003FC94D0: cysteinyl-tRNA synthetase	0.0346808056
+UniRef50_UPI0003FC94D0: cysteinyl-tRNA synthetase|unclassified	0.0346808056
+UniRef50_U6M734	0.0346758812
+UniRef50_U6M734|unclassified	0.0346758812
+UniRef50_UPI0003D70AA1: PREDICTED: phosphoglucomutase, cytoplasmic-like	0.0346729158
+UniRef50_UPI0003D70AA1: PREDICTED: phosphoglucomutase, cytoplasmic-like|unclassified	0.0346729158
+UniRef50_B2A3L9: Ribosomal RNA small subunit methyltransferase A	0.0346676229
+UniRef50_B2A3L9: Ribosomal RNA small subunit methyltransferase A|unclassified	0.0346676229
+UniRef50_U2BA89	0.0346654000
+UniRef50_U2BA89|unclassified	0.0346654000
+UniRef50_UPI0003680A40: hypothetical protein	0.0346647939
+UniRef50_UPI0003680A40: hypothetical protein|unclassified	0.0346647939
+UniRef50_UPI0003B51ADA: thiamine biosynthesis protein ThiF	0.0346639347
+UniRef50_UPI0003B51ADA: thiamine biosynthesis protein ThiF|unclassified	0.0346639347
+UniRef50_M4K9P1	0.0346604457
+UniRef50_M4K9P1|unclassified	0.0346604457
+UniRef50_K2CZ80	0.0346594604
+UniRef50_K2CZ80|unclassified	0.0346594604
+UniRef50_UPI0003618F49: hypothetical protein	0.0346548753
+UniRef50_UPI0003618F49: hypothetical protein|unclassified	0.0346548753
+UniRef50_UPI00035DC37A: hypothetical protein	0.0346505175
+UniRef50_UPI00035DC37A: hypothetical protein|unclassified	0.0346505175
+UniRef50_UPI00046650D5: DNA recombination protein RecN	0.0346489928
+UniRef50_UPI00046650D5: DNA recombination protein RecN|unclassified	0.0346489928
+UniRef50_UPI0004004CF4: glutamyl-tRNA amidotransferase	0.0346489652
+UniRef50_UPI0004004CF4: glutamyl-tRNA amidotransferase|unclassified	0.0346489652
+UniRef50_UPI0004724D89: hypothetical protein	0.0346450528
+UniRef50_UPI0004724D89: hypothetical protein|unclassified	0.0346450528
+UniRef50_UPI00037D6B10: hypothetical protein	0.0346414843
+UniRef50_UPI00037D6B10: hypothetical protein|unclassified	0.0346414843
+UniRef50_L4G1H3	0.0346400744
+UniRef50_L4G1H3|unclassified	0.0346400744
+UniRef50_UPI00045E7980: ATP synthase subunit alpha, partial	0.0346384782
+UniRef50_UPI00045E7980: ATP synthase subunit alpha, partial|unclassified	0.0346384782
+UniRef50_E9PDL7: Alanine--glyoxylate aminotransferase 2, mitochondrial	0.0346333555
+UniRef50_E9PDL7: Alanine--glyoxylate aminotransferase 2, mitochondrial|unclassified	0.0346333555
+UniRef50_W5XE95: ArsR family transcriptional regulator	0.0346314098
+UniRef50_W5XE95: ArsR family transcriptional regulator|unclassified	0.0346314098
+UniRef50_UPI0003332AE2: PREDICTED: insulin receptor substrate 4	0.0346297753
+UniRef50_UPI0003332AE2: PREDICTED: insulin receptor substrate 4|unclassified	0.0346297753
+UniRef50_B8E1C0: Aspartate--tRNA(Asp/Asn) ligase	0.0346224639
+UniRef50_B8E1C0: Aspartate--tRNA(Asp/Asn) ligase|unclassified	0.0346224639
+UniRef50_X1YD64: Branched-chain-amino-acid aminotransferase	0.0346223483
+UniRef50_X1YD64: Branched-chain-amino-acid aminotransferase|unclassified	0.0346223483
+UniRef50_UPI00028A14FC: hypothetical protein	0.0346209944
+UniRef50_UPI00028A14FC: hypothetical protein|unclassified	0.0346209944
+UniRef50_UPI0002D8B8BD: hypothetical protein	0.0346206213
+UniRef50_UPI0002D8B8BD: hypothetical protein|unclassified	0.0346206213
+UniRef50_P75114: Glutamate--tRNA ligase	0.0346120966
+UniRef50_P75114: Glutamate--tRNA ligase|unclassified	0.0346120966
+UniRef50_P61676: UDP-N-acetylmuramate--L-alanine ligase	0.0346115801
+UniRef50_P61676: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.0346115801
+UniRef50_UPI00047CD93E: hypothetical protein	0.0346102723
+UniRef50_UPI00047CD93E: hypothetical protein|unclassified	0.0346102723
+UniRef50_UPI000479E752: hypothetical protein	0.0346083525
+UniRef50_UPI000479E752: hypothetical protein|unclassified	0.0346083525
+UniRef50_UPI0002FC4FA4: hypothetical protein	0.0346041783
+UniRef50_UPI0002FC4FA4: hypothetical protein|unclassified	0.0346041783
+UniRef50_UPI0003830D23: hypothetical protein	0.0346015596
+UniRef50_UPI0003830D23: hypothetical protein|unclassified	0.0346015596
+UniRef50_UPI00030A79B8: hypothetical protein	0.0345958959
+UniRef50_UPI00030A79B8: hypothetical protein|unclassified	0.0345958959
+UniRef50_UPI0002559FAD: cell division protein ZipA	0.0345927881
+UniRef50_UPI0002559FAD: cell division protein ZipA|unclassified	0.0345927881
+UniRef50_UPI0004644918: hypothetical protein	0.0345903656
+UniRef50_UPI0004644918: hypothetical protein|unclassified	0.0345903656
+UniRef50_K2ALU5	0.0345889692
+UniRef50_K2ALU5|unclassified	0.0345889692
+UniRef50_D4DVN6	0.0345876176
+UniRef50_D4DVN6|unclassified	0.0345876176
+UniRef50_U6HI46: Ubiquinol cytochrome c reductase, Rieske	0.0345834000
+UniRef50_U6HI46: Ubiquinol cytochrome c reductase, Rieske|unclassified	0.0345834000
+UniRef50_U7UBT0	0.0345818267
+UniRef50_U7UBT0|unclassified	0.0345818267
+UniRef50_UPI000287C21F: phosphoenolpyruvate-protein phosphotransferase	0.0345814081
+UniRef50_UPI000287C21F: phosphoenolpyruvate-protein phosphotransferase|unclassified	0.0345814081
+UniRef50_UPI0002494424: salicylate monooxygenase	0.0345800745
+UniRef50_UPI0002494424: salicylate monooxygenase|unclassified	0.0345800745
+UniRef50_W0E2G0: Flagellar motor protein MotB	0.0345795651
+UniRef50_W0E2G0: Flagellar motor protein MotB|unclassified	0.0345795651
+UniRef50_UPI0002ECAD7A: hypothetical protein	0.0345791339
+UniRef50_UPI0002ECAD7A: hypothetical protein|unclassified	0.0345791339
+UniRef50_B0B7Q0: Pyruvate kinase	0.0345762660
+UniRef50_B0B7Q0: Pyruvate kinase|unclassified	0.0345762660
+UniRef50_UPI00037A9F2B: hypothetical protein	0.0345748589
+UniRef50_UPI00037A9F2B: hypothetical protein|unclassified	0.0345748589
+UniRef50_UPI00028946A3: binding-protein-dependent transport systems inner membrane component	0.0345705443
+UniRef50_UPI00028946A3: binding-protein-dependent transport systems inner membrane component|unclassified	0.0345705443
+UniRef50_P46917: Minor teichoic acid biosynthesis protein GgaA	0.0345663297
+UniRef50_P46917: Minor teichoic acid biosynthesis protein GgaA|unclassified	0.0345663297
+UniRef50_UPI00046ADC84: transposase	0.0345645853
+UniRef50_UPI00046ADC84: transposase|unclassified	0.0345645853
+UniRef50_R2RWI0: LPXTG-domain-containing protein cell wall anchor domain	0.0345638583
+UniRef50_R2RWI0: LPXTG-domain-containing protein cell wall anchor domain|unclassified	0.0345638583
+UniRef50_W5XBL2: Glutaminyl-tRNA synthetase	0.0345626613
+UniRef50_W5XBL2: Glutaminyl-tRNA synthetase|unclassified	0.0345626613
+UniRef50_Q396Y3: Probable D-serine dehydratase	0.0345580282
+UniRef50_Q396Y3: Probable D-serine dehydratase|unclassified	0.0345580282
+UniRef50_G1MG41	0.0345558152
+UniRef50_G1MG41|unclassified	0.0345558152
+UniRef50_UPI000466A1C5: sugar ABC transporter	0.0345545524
+UniRef50_UPI000466A1C5: sugar ABC transporter|unclassified	0.0345545524
+UniRef50_UPI00037C0221: hypothetical protein	0.0345531206
+UniRef50_UPI00037C0221: hypothetical protein|unclassified	0.0345531206
+UniRef50_UPI00035F5E56: hypothetical protein	0.0345519999
+UniRef50_UPI00035F5E56: hypothetical protein|unclassified	0.0345519999
+UniRef50_UPI0004227F8A: chemotaxis protein CheA	0.0345511136
+UniRef50_UPI0004227F8A: chemotaxis protein CheA|unclassified	0.0345511136
+UniRef50_E3FRX8	0.0345459171
+UniRef50_E3FRX8|unclassified	0.0345459171
+UniRef50_UPI000425A009: serine/threonine protein kinase	0.0345450018
+UniRef50_UPI000425A009: serine/threonine protein kinase|unclassified	0.0345450018
+UniRef50_V9GG83: HD domain protein	0.0345429271
+UniRef50_V9GG83: HD domain protein|unclassified	0.0345429271
+UniRef50_F7QN20	0.0345392054
+UniRef50_F7QN20|unclassified	0.0345392054
+UniRef50_D9UZB7: Predicted protein	0.0345388474
+UniRef50_D9UZB7: Predicted protein|unclassified	0.0345388474
+UniRef50_UPI00047094A0: hypothetical protein	0.0345356718
+UniRef50_UPI00047094A0: hypothetical protein|unclassified	0.0345356718
+UniRef50_H1BK71	0.0345337725
+UniRef50_H1BK71|unclassified	0.0345337725
+UniRef50_B8DNS7: tRNA dimethylallyltransferase	0.0345318795
+UniRef50_B8DNS7: tRNA dimethylallyltransferase|unclassified	0.0345318795
+UniRef50_P56192: Methionine--tRNA ligase, cytoplasmic	0.0345315021
+UniRef50_P56192: Methionine--tRNA ligase, cytoplasmic|unclassified	0.0345315021
+UniRef50_Q2YB22: Valine--tRNA ligase	0.0345292091
+UniRef50_Q2YB22: Valine--tRNA ligase|unclassified	0.0345292091
+UniRef50_UPI00036E18F0: MULTISPECIES: hypothetical protein	0.0345261549
+UniRef50_UPI00036E18F0: MULTISPECIES: hypothetical protein|unclassified	0.0345261549
+UniRef50_P45059: Peptidoglycan synthase FtsI	0.0345259916
+UniRef50_P45059: Peptidoglycan synthase FtsI|unclassified	0.0345259916
+UniRef50_Q99873: Protein arginine N-methyltransferase 1	0.0345205883
+UniRef50_Q99873: Protein arginine N-methyltransferase 1|unclassified	0.0345205883
+UniRef50_UPI000363B01D: hypothetical protein	0.0345193899
+UniRef50_UPI000363B01D: hypothetical protein|unclassified	0.0345193899
+UniRef50_UPI00016C4097: N-acetylglucosamine-6-phosphate deacetylase	0.0345191878
+UniRef50_UPI00016C4097: N-acetylglucosamine-6-phosphate deacetylase|unclassified	0.0345191878
+UniRef50_J3PCQ1	0.0345163978
+UniRef50_J3PCQ1|unclassified	0.0345163978
+UniRef50_UPI00037A7C2E: hypothetical protein	0.0345159446
+UniRef50_UPI00037A7C2E: hypothetical protein|unclassified	0.0345159446
+UniRef50_C0W8D6: Rhamnan synthesis protein F	0.0345143973
+UniRef50_C0W8D6: Rhamnan synthesis protein F|unclassified	0.0345143973
+UniRef50_Q4JWC7: Anthranilate phosphoribosyltransferase	0.0345104448
+UniRef50_Q4JWC7: Anthranilate phosphoribosyltransferase|unclassified	0.0345104448
+UniRef50_W2CYD8: Membrane protein (Fragment)	0.0344707314
+UniRef50_W2CYD8: Membrane protein (Fragment)|unclassified	0.0344707314
+UniRef50_Q04W40: Chorismate synthase	0.0344661703
+UniRef50_Q04W40: Chorismate synthase|unclassified	0.0344661703
+UniRef50_A3K707	0.0344644752
+UniRef50_A3K707|unclassified	0.0344644752
+UniRef50_Q9PD20	0.0344563692
+UniRef50_Q9PD20|unclassified	0.0344563692
+UniRef50_D2MN61: TIGR00159 family protein	0.0344563221
+UniRef50_D2MN61: TIGR00159 family protein|unclassified	0.0344563221
+UniRef50_Q68FL6: Methionine--tRNA ligase, cytoplasmic	0.0344541063
+UniRef50_Q68FL6: Methionine--tRNA ligase, cytoplasmic|unclassified	0.0344541063
+UniRef50_UPI000347499D: hypothetical protein	0.0344525810
+UniRef50_UPI000347499D: hypothetical protein|unclassified	0.0344525810
+UniRef50_UPI0003604319: hypothetical protein	0.0344512642
+UniRef50_UPI0003604319: hypothetical protein|unclassified	0.0344512642
+UniRef50_UPI0003A27ABE: hypothetical protein	0.0344499821
+UniRef50_UPI0003A27ABE: hypothetical protein|unclassified	0.0344499821
+UniRef50_UPI00046C33DB	0.0344470002
+UniRef50_UPI00046C33DB|unclassified	0.0344470002
+UniRef50_UPI000377E049: hypothetical protein	0.0344466090
+UniRef50_UPI000377E049: hypothetical protein|unclassified	0.0344466090
+UniRef50_B6HQD4: Arginine biosynthesis bifunctional protein ArgJ, mitochondrial	0.0344451485
+UniRef50_B6HQD4: Arginine biosynthesis bifunctional protein ArgJ, mitochondrial|unclassified	0.0344451485
+UniRef50_C1D8I2: DUF1376 domain containing protein	0.0344362215
+UniRef50_C1D8I2: DUF1376 domain containing protein|unclassified	0.0344362215
+UniRef50_UPI00045E9126: histidine kinase	0.0344304493
+UniRef50_UPI00045E9126: histidine kinase|unclassified	0.0344304493
+UniRef50_U1IBJ7: Chemotaxis protein MotB	0.0344299664
+UniRef50_U1IBJ7: Chemotaxis protein MotB|unclassified	0.0344299664
+UniRef50_UPI00047BC5BD: hypothetical protein	0.0344279355
+UniRef50_UPI00047BC5BD: hypothetical protein|unclassified	0.0344279355
+UniRef50_L8GXF4	0.0344278060
+UniRef50_L8GXF4|unclassified	0.0344278060
+UniRef50_UPI0003B5E6AE: peptidase M24	0.0344256846
+UniRef50_UPI0003B5E6AE: peptidase M24|unclassified	0.0344256846
+UniRef50_E3HPM3: Beta-lactamase family protein 1	0.0344242751
+UniRef50_E3HPM3: Beta-lactamase family protein 1|unclassified	0.0344242751
+UniRef50_UPI000309FDCA: hypothetical protein	0.0344234133
+UniRef50_UPI000309FDCA: hypothetical protein|unclassified	0.0344234133
+UniRef50_K8CPH0: Binding-protein-dependent transport systems inner membrane component	0.0344231195
+UniRef50_K8CPH0: Binding-protein-dependent transport systems inner membrane component|unclassified	0.0344231195
+UniRef50_UPI0003B76115: cobalamin biosynthesis protein CobW	0.0344223208
+UniRef50_UPI0003B76115: cobalamin biosynthesis protein CobW|unclassified	0.0344223208
+UniRef50_W4D9N0: GTPase (G3E family) protein	0.0344223169
+UniRef50_W4D9N0: GTPase (G3E family) protein|unclassified	0.0344223169
+UniRef50_UPI00037ADAF5: MULTISPECIES: hypothetical protein	0.0344185992
+UniRef50_UPI00037ADAF5: MULTISPECIES: hypothetical protein|unclassified	0.0344185992
+UniRef50_B9KEN0: Enolase	0.0344169132
+UniRef50_B9KEN0: Enolase|unclassified	0.0344169132
+UniRef50_I0WHG0: Non-ribosomal peptide synthetase (Fragment)	0.0344130725
+UniRef50_I0WHG0: Non-ribosomal peptide synthetase (Fragment)|unclassified	0.0344130725
+UniRef50_M7NTL9: SpoVR family protein	0.0344115112
+UniRef50_M7NTL9: SpoVR family protein|unclassified	0.0344115112
+UniRef50_UPI00046AF280: ribonuclease E	0.0344107219
+UniRef50_UPI00046AF280: ribonuclease E|unclassified	0.0344107219
+UniRef50_A6VSK7	0.0344105516
+UniRef50_A6VSK7|unclassified	0.0344105516
+UniRef50_UPI0003718139: hypothetical protein	0.0344103725
+UniRef50_UPI0003718139: hypothetical protein|unclassified	0.0344103725
+UniRef50_UPI000348B502: hypothetical protein	0.0344100934
+UniRef50_UPI000348B502: hypothetical protein|unclassified	0.0344100934
+UniRef50_UPI000376E372: hypothetical protein	0.0344021280
+UniRef50_UPI000376E372: hypothetical protein|unclassified	0.0344021280
+UniRef50_W8AHC9	0.0344013353
+UniRef50_W8AHC9|unclassified	0.0344013353
+UniRef50_UPI0003B3526D: acylneuraminate cytidylyltransferase	0.0344006535
+UniRef50_UPI0003B3526D: acylneuraminate cytidylyltransferase|unclassified	0.0344006535
+UniRef50_UPI0002C3D67C: estradiol 17-beta-dehydrogenase, putative	0.0343914400
+UniRef50_UPI0002C3D67C: estradiol 17-beta-dehydrogenase, putative|unclassified	0.0343914400
+UniRef50_A3J7L9: Diguanylate cyclase/phosphodiesterase (GGDEF & EAL domains) with PAS/PAC sensor(S)	0.0343896323
+UniRef50_A3J7L9: Diguanylate cyclase/phosphodiesterase (GGDEF & EAL domains) with PAS/PAC sensor(S)|unclassified	0.0343896323
+UniRef50_UPI0002EF57B2: hypothetical protein	0.0343882977
+UniRef50_UPI0002EF57B2: hypothetical protein|unclassified	0.0343882977
+UniRef50_UPI0003693EBA: hypothetical protein	0.0343854555
+UniRef50_UPI0003693EBA: hypothetical protein|unclassified	0.0343854555
+UniRef50_B1XRT3: tRNA dimethylallyltransferase	0.0343758190
+UniRef50_B1XRT3: tRNA dimethylallyltransferase|unclassified	0.0343758190
+UniRef50_UPI0003B3B231: protein kinase	0.0343740383
+UniRef50_UPI0003B3B231: protein kinase|unclassified	0.0343740383
+UniRef50_K5VM99	0.0343713868
+UniRef50_K5VM99|unclassified	0.0343713868
+UniRef50_P45954: Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial	0.0343698411
+UniRef50_P45954: Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial|unclassified	0.0343698411
+UniRef50_Q5EAD4: Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial	0.0343698411
+UniRef50_Q5EAD4: Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial|unclassified	0.0343698411
+UniRef50_UPI0003B68A9A: phosphate:sodium symporter	0.0343691425
+UniRef50_UPI0003B68A9A: phosphate:sodium symporter|unclassified	0.0343691425
+UniRef50_UPI00037C13D8: hypothetical protein	0.0343682542
+UniRef50_UPI00037C13D8: hypothetical protein|unclassified	0.0343682542
+UniRef50_UPI000368360A: hypothetical protein	0.0343677912
+UniRef50_UPI000368360A: hypothetical protein|unclassified	0.0343677912
+UniRef50_W1IKN5: Chromosome II, genome	0.0343629902
+UniRef50_W1IKN5: Chromosome II, genome|unclassified	0.0343629902
+UniRef50_UPI00036F98A7: hypothetical protein	0.0343612783
+UniRef50_UPI00036F98A7: hypothetical protein|unclassified	0.0343612783
+UniRef50_UPI00037E28CC: hypothetical protein	0.0343574408
+UniRef50_UPI00037E28CC: hypothetical protein|unclassified	0.0343574408
+UniRef50_R3HP34	0.0343522923
+UniRef50_R3HP34|unclassified	0.0343522923
+UniRef50_UPI00036D2E3E: hypothetical protein	0.0343522660
+UniRef50_UPI00036D2E3E: hypothetical protein|unclassified	0.0343522660
+UniRef50_Q8D1Y2: Histidine--tRNA ligase	0.0343512796
+UniRef50_Q8D1Y2: Histidine--tRNA ligase|unclassified	0.0343512796
+UniRef50_UPI0003A75AD7: thiouridylase	0.0343496334
+UniRef50_UPI0003A75AD7: thiouridylase|unclassified	0.0343496334
+UniRef50_UPI00036970FF: hypothetical protein	0.0343489429
+UniRef50_UPI00036970FF: hypothetical protein|unclassified	0.0343489429
+UniRef50_B7KSW4: Phage portal protein, HK97 family	0.0343481628
+UniRef50_B7KSW4: Phage portal protein, HK97 family|unclassified	0.0343481628
+UniRef50_UPI0003620CA6: hypothetical protein, partial	0.0343456352
+UniRef50_UPI0003620CA6: hypothetical protein, partial|unclassified	0.0343456352
+UniRef50_UPI000468C449: hypothetical protein	0.0343431450
+UniRef50_UPI000468C449: hypothetical protein|unclassified	0.0343431450
+UniRef50_A0A022GJL0: Chemotaxis protein CheY	0.0343413865
+UniRef50_A0A022GJL0: Chemotaxis protein CheY|unclassified	0.0343413865
+UniRef50_UPI0004716697: peptidase S11	0.0343391183
+UniRef50_UPI0004716697: peptidase S11|unclassified	0.0343391183
+UniRef50_D6RK40	0.0343327054
+UniRef50_D6RK40|unclassified	0.0343327054
+UniRef50_V8AA76	0.0343308805
+UniRef50_V8AA76|unclassified	0.0343308805
+UniRef50_UPI0003773FBD: hypothetical protein	0.0343307236
+UniRef50_UPI0003773FBD: hypothetical protein|unclassified	0.0343307236
+UniRef50_A0LAI6	0.0343298157
+UniRef50_A0LAI6|unclassified	0.0343298157
+UniRef50_UPI0002DABF68: hypothetical protein	0.0343224929
+UniRef50_UPI0002DABF68: hypothetical protein|unclassified	0.0343224929
+UniRef50_UPI0003756C35: hypothetical protein	0.0343185146
+UniRef50_UPI0003756C35: hypothetical protein|unclassified	0.0343185146
+UniRef50_UPI000475B05E: lysyl-tRNA synthetase	0.0343160170
+UniRef50_UPI000475B05E: lysyl-tRNA synthetase|unclassified	0.0343160170
+UniRef50_UPI00035E1742: hypothetical protein	0.0343152754
+UniRef50_UPI00035E1742: hypothetical protein|unclassified	0.0343152754
+UniRef50_O35435: Dihydroorotate dehydrogenase (quinone), mitochondrial	0.0343127297
+UniRef50_O35435: Dihydroorotate dehydrogenase (quinone), mitochondrial|unclassified	0.0343127297
+UniRef50_Q02127: Dihydroorotate dehydrogenase (quinone), mitochondrial	0.0343127297
+UniRef50_Q02127: Dihydroorotate dehydrogenase (quinone), mitochondrial|unclassified	0.0343127297
+UniRef50_UPI000466B777: hypothetical protein	0.0343126329
+UniRef50_UPI000466B777: hypothetical protein|unclassified	0.0343126329
+UniRef50_W6K9E5	0.0343091017
+UniRef50_W6K9E5|unclassified	0.0343091017
+UniRef50_G2Q321	0.0343086904
+UniRef50_G2Q321|unclassified	0.0343086904
+UniRef50_G2XUK6	0.0343051963
+UniRef50_G2XUK6|unclassified	0.0343051963
+UniRef50_L8GVF9	0.0343048465
+UniRef50_L8GVF9|unclassified	0.0343048465
+UniRef50_UPI00046FDE60: hypothetical protein	0.0343042718
+UniRef50_UPI00046FDE60: hypothetical protein|unclassified	0.0343042718
+UniRef50_U6N303	0.0343010492
+UniRef50_U6N303|unclassified	0.0343010492
+UniRef50_F5YTR0	0.0342980703
+UniRef50_F5YTR0|unclassified	0.0342980703
+UniRef50_UPI00047094F6: ABC transporter	0.0342953875
+UniRef50_UPI00047094F6: ABC transporter|unclassified	0.0342953875
+UniRef50_B0T2U9: ChaC family protein	0.0342918538
+UniRef50_B0T2U9: ChaC family protein|unclassified	0.0342918538
+UniRef50_UPI00046616D6: exoribonuclease R, partial	0.0342887333
+UniRef50_UPI00046616D6: exoribonuclease R, partial|unclassified	0.0342887333
+UniRef50_UPI000464440F: effector protein	0.0342862978
+UniRef50_UPI000464440F: effector protein|unclassified	0.0342862978
+UniRef50_UPI000380D344: hypothetical protein	0.0342862626
+UniRef50_UPI000380D344: hypothetical protein|unclassified	0.0342862626
+UniRef50_V5E7L9: sn-glycerol-3-phosphate import ATP-binding protein UgpC 2	0.0342848924
+UniRef50_V5E7L9: sn-glycerol-3-phosphate import ATP-binding protein UgpC 2|unclassified	0.0342848924
+UniRef50_Q7UE67	0.0342822316
+UniRef50_Q7UE67|unclassified	0.0342822316
+UniRef50_UPI0003765C20: hypothetical protein	0.0342791847
+UniRef50_UPI0003765C20: hypothetical protein|unclassified	0.0342791847
+UniRef50_UPI0004709514: chemotaxis protein	0.0342749968
+UniRef50_UPI0004709514: chemotaxis protein|unclassified	0.0342749968
+UniRef50_D5TZ11	0.0342693832
+UniRef50_D5TZ11|unclassified	0.0342693832
+UniRef50_UPI0003B54717: hydantoinase	0.0342683979
+UniRef50_UPI0003B54717: hydantoinase|unclassified	0.0342683979
+UniRef50_UPI0004011469: glutamine synthetase	0.0342637369
+UniRef50_UPI0004011469: glutamine synthetase|unclassified	0.0342637369
+UniRef50_A1SVP0: NAD-dependent epimerase/dehydratase	0.0342616848
+UniRef50_A1SVP0: NAD-dependent epimerase/dehydratase|unclassified	0.0342616848
+UniRef50_UPI0003467475: hypothetical protein	0.0342577673
+UniRef50_UPI0003467475: hypothetical protein|unclassified	0.0342577673
+UniRef50_F5R9Y6: Putative GTPase	0.0342523180
+UniRef50_F5R9Y6: Putative GTPase|unclassified	0.0342523180
+UniRef50_UPI00036A08B6: hypothetical protein, partial	0.0342508203
+UniRef50_UPI00036A08B6: hypothetical protein, partial|unclassified	0.0342508203
+UniRef50_B1HST2: Protoheme IX farnesyltransferase 2	0.0342459679
+UniRef50_B1HST2: Protoheme IX farnesyltransferase 2|unclassified	0.0342459679
+UniRef50_UPI0004560564: hypothetical protein PFL1_00223	0.0342444733
+UniRef50_UPI0004560564: hypothetical protein PFL1_00223|unclassified	0.0342444733
+UniRef50_UPI00046FDCCD: hypothetical protein	0.0342431011
+UniRef50_UPI00046FDCCD: hypothetical protein|unclassified	0.0342431011
+UniRef50_Q4FT48: Ornithine carbamoyltransferase	0.0342406505
+UniRef50_Q4FT48: Ornithine carbamoyltransferase|unclassified	0.0342406505
+UniRef50_UPI000377F3F9: hypothetical protein	0.0342387138
+UniRef50_UPI000377F3F9: hypothetical protein|unclassified	0.0342387138
+UniRef50_Q1JUP4: Alpha-ketoglutaric semialdehyde dehydrogenase	0.0342381918
+UniRef50_Q1JUP4: Alpha-ketoglutaric semialdehyde dehydrogenase|unclassified	0.0342381918
+UniRef50_V9WPZ2: Plasmid replication protein RepC-1	0.0342362889
+UniRef50_V9WPZ2: Plasmid replication protein RepC-1|unclassified	0.0342362889
+UniRef50_UPI000365DBD6: hypothetical protein	0.0342320514
+UniRef50_UPI000365DBD6: hypothetical protein|unclassified	0.0342320514
+UniRef50_A0A011MJP5	0.0342273108
+UniRef50_A0A011MJP5|unclassified	0.0342273108
+UniRef50_U2VRM9: Cell wall-binding repeat protein	0.0342262149
+UniRef50_U2VRM9: Cell wall-binding repeat protein|unclassified	0.0342262149
+UniRef50_UPI00047EE969: long-chain fatty acid outer membrane transporter, partial	0.0342231176
+UniRef50_UPI00047EE969: long-chain fatty acid outer membrane transporter, partial|unclassified	0.0342231176
+UniRef50_UPI0003F9F38A: nitrate ABC transporter ATP-binding protein	0.0342191501
+UniRef50_UPI0003F9F38A: nitrate ABC transporter ATP-binding protein|unclassified	0.0342191501
+UniRef50_UPI0002F963E4: hypothetical protein	0.0342171266
+UniRef50_UPI0002F963E4: hypothetical protein|unclassified	0.0342171266
+UniRef50_UPI00036D1AB3: hypothetical protein	0.0342165241
+UniRef50_UPI00036D1AB3: hypothetical protein|unclassified	0.0342165241
+UniRef50_UPI0003084F81: glucose 6-phosphate dehydrogenase	0.0342134958
+UniRef50_UPI0003084F81: glucose 6-phosphate dehydrogenase|unclassified	0.0342134958
+UniRef50_UPI0003B75739: protoporphyrinogen oxidase	0.0342081297
+UniRef50_UPI0003B75739: protoporphyrinogen oxidase|unclassified	0.0342081297
+UniRef50_UPI000381643B: hypothetical protein	0.0342076647
+UniRef50_UPI000381643B: hypothetical protein|unclassified	0.0342076647
+UniRef50_B9KPE7	0.0342046408
+UniRef50_B9KPE7|unclassified	0.0342046408
+UniRef50_UPI0004757165: phosphate acetyltransferase	0.0342005254
+UniRef50_UPI0004757165: phosphate acetyltransferase|unclassified	0.0342005254
+UniRef50_UPI00047C5A50: hypothetical protein	0.0342002666
+UniRef50_UPI00047C5A50: hypothetical protein|unclassified	0.0342002666
+UniRef50_V7AMH6	0.0341991544
+UniRef50_V7AMH6|unclassified	0.0341991544
+UniRef50_F0Y0S7	0.0341972166
+UniRef50_F0Y0S7|unclassified	0.0341972166
+UniRef50_Q1GGW1	0.0341950894
+UniRef50_Q1GGW1|unclassified	0.0341950894
+UniRef50_UPI000368AE48: hypothetical protein	0.0341939925
+UniRef50_UPI000368AE48: hypothetical protein|unclassified	0.0341939925
+UniRef50_UPI000399D7FF: dihydrolipoyl dehydrogenase	0.0341933036
+UniRef50_UPI000399D7FF: dihydrolipoyl dehydrogenase|unclassified	0.0341933036
+UniRef50_UPI0003652246: hypothetical protein	0.0341912392
+UniRef50_UPI0003652246: hypothetical protein|unclassified	0.0341912392
+UniRef50_UPI00035D0C83: hypothetical protein, partial	0.0341911329
+UniRef50_UPI00035D0C83: hypothetical protein, partial|unclassified	0.0341911329
+UniRef50_UPI000252B6FC: PREDICTED: LOW QUALITY PROTEIN: magnesium-transporting ATPase, P-type 1-like, partial	0.0341872297
+UniRef50_UPI000252B6FC: PREDICTED: LOW QUALITY PROTEIN: magnesium-transporting ATPase, P-type 1-like, partial|unclassified	0.0341872297
+UniRef50_UPI00034690F7: hypothetical protein	0.0341859432
+UniRef50_UPI00034690F7: hypothetical protein|unclassified	0.0341859432
+UniRef50_A7GL31: S-layer domain protein	0.0341824712
+UniRef50_A7GL31: S-layer domain protein|unclassified	0.0341824712
+UniRef50_UPI000440A67E: hypothetical protein STEHIDRAFT_153002	0.0341780417
+UniRef50_UPI000440A67E: hypothetical protein STEHIDRAFT_153002|unclassified	0.0341780417
+UniRef50_UPI00040C571B: hypothetical protein	0.0341739916
+UniRef50_UPI00040C571B: hypothetical protein|unclassified	0.0341739916
+UniRef50_V4Z6T1: Dopey, N-terminal domain-containing protein	0.0341715022
+UniRef50_V4Z6T1: Dopey, N-terminal domain-containing protein|unclassified	0.0341715022
+UniRef50_C8XIL9: Rhamnan synthesis F	0.0341701958
+UniRef50_C8XIL9: Rhamnan synthesis F|unclassified	0.0341701958
+UniRef50_A1UQY2: ABC transporter, periplasmic substrate-binding protein	0.0341640624
+UniRef50_A1UQY2: ABC transporter, periplasmic substrate-binding protein|unclassified	0.0341640624
+UniRef50_U4V017: Putative ATPase	0.0341632523
+UniRef50_U4V017: Putative ATPase|unclassified	0.0341632523
+UniRef50_P41571: Glucose-6-phosphate 1-dehydrogenase	0.0341582117
+UniRef50_P41571: Glucose-6-phosphate 1-dehydrogenase|unclassified	0.0341582117
+UniRef50_G8X2E9	0.0341549807
+UniRef50_G8X2E9|unclassified	0.0341549807
+UniRef50_Q1IJT2: Adenylosuccinate synthetase	0.0341544975
+UniRef50_Q1IJT2: Adenylosuccinate synthetase|unclassified	0.0341544975
+UniRef50_UPI00037B8DD0: hypothetical protein	0.0341497990
+UniRef50_UPI00037B8DD0: hypothetical protein|unclassified	0.0341497990
+UniRef50_A8JK19: Predicted protein (Fragment)	0.0341475398
+UniRef50_A8JK19: Predicted protein (Fragment)|unclassified	0.0341475398
+UniRef50_C2YMP2	0.0341471716
+UniRef50_C2YMP2|unclassified	0.0341471716
+UniRef50_UPI0002F076A7: hypothetical protein	0.0341411067
+UniRef50_UPI0002F076A7: hypothetical protein|unclassified	0.0341411067
+UniRef50_F0EJ82: KxYKxGKxW signal domain protein	0.0341401373
+UniRef50_F0EJ82: KxYKxGKxW signal domain protein|unclassified	0.0341401373
+UniRef50_UPI0002625574: ABC transporter	0.0341384649
+UniRef50_UPI0002625574: ABC transporter|unclassified	0.0341384649
+UniRef50_UPI000347D2C7: hypothetical protein	0.0341384136
+UniRef50_UPI000347D2C7: hypothetical protein|unclassified	0.0341384136
+UniRef50_UPI00029B0AC5: sodium:proton antiporter	0.0341378808
+UniRef50_UPI00029B0AC5: sodium:proton antiporter|unclassified	0.0341378808
+UniRef50_A5CWX9: Glutamate--tRNA ligase	0.0341359552
+UniRef50_A5CWX9: Glutamate--tRNA ligase|unclassified	0.0341359552
+UniRef50_J3PMS7	0.0341338600
+UniRef50_J3PMS7|unclassified	0.0341338600
+UniRef50_UPI00034A3BC8: LacI family transcriptional regulator	0.0341333524
+UniRef50_UPI00034A3BC8: LacI family transcriptional regulator|unclassified	0.0341333524
+UniRef50_UPI00036C13A8: hypothetical protein	0.0341286969
+UniRef50_UPI00036C13A8: hypothetical protein|unclassified	0.0341286969
+UniRef50_S2YJ32	0.0341279851
+UniRef50_S2YJ32|unclassified	0.0341279851
+UniRef50_UPI0003C76D2C: hypothetical protein	0.0341263205
+UniRef50_UPI0003C76D2C: hypothetical protein|unclassified	0.0341263205
+UniRef50_UPI0003B3DE75: ketol-acid reductoisomerase	0.0341256388
+UniRef50_UPI0003B3DE75: ketol-acid reductoisomerase|unclassified	0.0341256388
+UniRef50_UPI000374B954: MULTISPECIES: hypothetical protein	0.0341216616
+UniRef50_UPI000374B954: MULTISPECIES: hypothetical protein|unclassified	0.0341216616
+UniRef50_UPI00036D8D46: hypothetical protein	0.0341181194
+UniRef50_UPI00036D8D46: hypothetical protein|unclassified	0.0341181194
+UniRef50_UPI000377D1FF: hypothetical protein, partial	0.0341167483
+UniRef50_UPI000377D1FF: hypothetical protein, partial|unclassified	0.0341167483
+UniRef50_D6Y2A4: 40-residue YVTN family beta-propeller repeat protein	0.0341150421
+UniRef50_D6Y2A4: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.0341150421
+UniRef50_UPI00046622B3: hypothetical protein	0.0341078001
+UniRef50_UPI00046622B3: hypothetical protein|unclassified	0.0341078001
+UniRef50_A1VWK8: Probable D-serine dehydratase	0.0341075286
+UniRef50_A1VWK8: Probable D-serine dehydratase|unclassified	0.0341075286
+UniRef50_D1A8C6: Pyridoxal-5'-phosphate-dependent protein beta subunit	0.0341050198
+UniRef50_D1A8C6: Pyridoxal-5'-phosphate-dependent protein beta subunit|unclassified	0.0341050198
+UniRef50_Q83H92: Uroporphyrinogen decarboxylase	0.0340991641
+UniRef50_Q83H92: Uroporphyrinogen decarboxylase|unclassified	0.0340991641
+UniRef50_UPI00041D1FA9: hypothetical protein	0.0340987411
+UniRef50_UPI00041D1FA9: hypothetical protein|unclassified	0.0340987411
+UniRef50_UPI0003B4B975: RNA polymerase sigma 70	0.0340932330
+UniRef50_UPI0003B4B975: RNA polymerase sigma 70|unclassified	0.0340932330
+UniRef50_UPI00037B26E0: nicotinic acid mononucleotide adenylyltransferase	0.0340866555
+UniRef50_UPI00037B26E0: nicotinic acid mononucleotide adenylyltransferase|unclassified	0.0340866555
+UniRef50_UPI0001FFF263: putative enterobactin-iron transport system, ATP-binding protein	0.0340768508
+UniRef50_UPI0001FFF263: putative enterobactin-iron transport system, ATP-binding protein|unclassified	0.0340768508
+UniRef50_Q04MW7: Argininosuccinate synthase	0.0340760723
+UniRef50_Q04MW7: Argininosuccinate synthase|unclassified	0.0340760723
+UniRef50_A1A279: tRNA dimethylallyltransferase	0.0340619260
+UniRef50_A1A279: tRNA dimethylallyltransferase|unclassified	0.0340619260
+UniRef50_R1DLZ1	0.0340585927
+UniRef50_R1DLZ1|unclassified	0.0340585927
+UniRef50_UPI00044196AE: PREDICTED: molybdenum cofactor biosynthesis protein 1-like, partial	0.0340567974
+UniRef50_UPI00044196AE: PREDICTED: molybdenum cofactor biosynthesis protein 1-like, partial|unclassified	0.0340567974
+UniRef50_E3FZW9	0.0340562348
+UniRef50_E3FZW9|unclassified	0.0340562348
+UniRef50_UPI00037F71A6: hypothetical protein	0.0340524549
+UniRef50_UPI00037F71A6: hypothetical protein|unclassified	0.0340524549
+UniRef50_UPI0003772CD4: hypothetical protein	0.0340512402
+UniRef50_UPI0003772CD4: hypothetical protein|unclassified	0.0340512402
+UniRef50_UPI0003742E67: hypothetical protein	0.0340457594
+UniRef50_UPI0003742E67: hypothetical protein|unclassified	0.0340457594
+UniRef50_UPI0003EF0095: hypothetical protein, partial	0.0340416193
+UniRef50_UPI0003EF0095: hypothetical protein, partial|unclassified	0.0340416193
+UniRef50_UPI0003EC446E: PREDICTED: alcohol dehydrogenase 4-like	0.0340394063
+UniRef50_UPI0003EC446E: PREDICTED: alcohol dehydrogenase 4-like|unclassified	0.0340394063
+UniRef50_A8I238	0.0340392633
+UniRef50_A8I238|unclassified	0.0340392633
+UniRef50_W3RJU2	0.0340310739
+UniRef50_W3RJU2|unclassified	0.0340310739
+UniRef50_Q71ZI2: Probable nicotinate-nucleotide adenylyltransferase	0.0340308466
+UniRef50_Q71ZI2: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.0340308466
+UniRef50_N9E2L6	0.0340278445
+UniRef50_N9E2L6|unclassified	0.0340278445
+UniRef50_UPI000471E847: hypothetical protein, partial	0.0340277296
+UniRef50_UPI000471E847: hypothetical protein, partial|unclassified	0.0340277296
+UniRef50_UPI000262CB83: AraC family transcriptional regulator	0.0340264344
+UniRef50_UPI000262CB83: AraC family transcriptional regulator|unclassified	0.0340264344
+UniRef50_UPI00036E0B98: pyruvate dehydrogenase E1 subunit alpha	0.0340250415
+UniRef50_UPI00036E0B98: pyruvate dehydrogenase E1 subunit alpha|unclassified	0.0340250415
+UniRef50_UPI000225B485: exopolyphosphatase	0.0340229578
+UniRef50_UPI000225B485: exopolyphosphatase|unclassified	0.0340229578
+UniRef50_UPI000367B90F: hypothetical protein	0.0340219592
+UniRef50_UPI000367B90F: hypothetical protein|unclassified	0.0340219592
+UniRef50_B1K0F9: Cobalamin synthesis protein P47K	0.0340205687
+UniRef50_B1K0F9: Cobalamin synthesis protein P47K|unclassified	0.0340205687
+UniRef50_Q9LFG2: Diaminopimelate epimerase, chloroplastic	0.0340202992
+UniRef50_Q9LFG2: Diaminopimelate epimerase, chloroplastic|unclassified	0.0340202992
+UniRef50_I8SSD9: Heavy metal translocating P-type ATPase (Fragment)	0.0340193722
+UniRef50_I8SSD9: Heavy metal translocating P-type ATPase (Fragment)|unclassified	0.0340193722
+UniRef50_V5EUP7	0.0340163776
+UniRef50_V5EUP7|unclassified	0.0340163776
+UniRef50_Q3JAF1: Chaperone SurA	0.0340110683
+UniRef50_Q3JAF1: Chaperone SurA|unclassified	0.0340110683
+UniRef50_F9X3T4	0.0340086812
+UniRef50_F9X3T4|unclassified	0.0340086812
+UniRef50_UPI000174613D: Oligopeptidase B	0.0340077751
+UniRef50_UPI000174613D: Oligopeptidase B|unclassified	0.0340077751
+UniRef50_A0A059KHC0: Integral membrane protein	0.0340068977
+UniRef50_A0A059KHC0: Integral membrane protein|unclassified	0.0340068977
+UniRef50_Q8UEZ6: UPF0758 protein Atu1607	0.0340051082
+UniRef50_Q8UEZ6: UPF0758 protein Atu1607|unclassified	0.0340051082
+UniRef50_UPI00046612DA: cation transporter	0.0340036859
+UniRef50_UPI00046612DA: cation transporter|unclassified	0.0340036859
+UniRef50_G9ZBD1	0.0340015387
+UniRef50_G9ZBD1|unclassified	0.0340015387
+UniRef50_UPI00046ADE55: glycosyl transferase family 1	0.0340013665
+UniRef50_UPI00046ADE55: glycosyl transferase family 1|unclassified	0.0340013665
+UniRef50_F0PY14: S-layer domain protein	0.0339992529
+UniRef50_F0PY14: S-layer domain protein|unclassified	0.0339992529
+UniRef50_Q9KFI7: Altronate oxidoreductase	0.0339983830
+UniRef50_Q9KFI7: Altronate oxidoreductase|unclassified	0.0339983830
+UniRef50_Q91TW1: T2	0.0339931834
+UniRef50_Q91TW1: T2|unclassified	0.0339931834
+UniRef50_C1AU54: UDP-N-acetylmuramate--L-alanine ligase	0.0339930625
+UniRef50_C1AU54: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.0339930625
+UniRef50_UPI0004202308: hypothetical protein	0.0339913096
+UniRef50_UPI0004202308: hypothetical protein|unclassified	0.0339913096
+UniRef50_I0Z434	0.0339911470
+UniRef50_I0Z434|unclassified	0.0339911470
+UniRef50_M4Z3L2: Hemolysin-type calcium-binding region	0.0339890824
+UniRef50_M4Z3L2: Hemolysin-type calcium-binding region|unclassified	0.0339890824
+UniRef50_UPI0003B36FDF: histidinol dehydrogenase	0.0339886766
+UniRef50_UPI0003B36FDF: histidinol dehydrogenase|unclassified	0.0339886766
+UniRef50_Q9YHY9: Ornithine carbamoyltransferase, mitochondrial	0.0339871373
+UniRef50_Q9YHY9: Ornithine carbamoyltransferase, mitochondrial|unclassified	0.0339871373
+UniRef50_UPI0003627AA1: hypothetical protein	0.0339862194
+UniRef50_UPI0003627AA1: hypothetical protein|unclassified	0.0339862194
+UniRef50_UPI000299F7CD: DASH family cryptochrome	0.0339821791
+UniRef50_UPI000299F7CD: DASH family cryptochrome|unclassified	0.0339821791
+UniRef50_U1JQM7: Major tail sheath protein	0.0339820693
+UniRef50_U1JQM7: Major tail sheath protein|unclassified	0.0339820693
+UniRef50_Q2UKV4: Pyruvate decarboxylase	0.0339814902
+UniRef50_Q2UKV4: Pyruvate decarboxylase|unclassified	0.0339814902
+UniRef50_Q89AQ0: Peptidoglycan synthase FtsI	0.0339804228
+UniRef50_Q89AQ0: Peptidoglycan synthase FtsI|unclassified	0.0339804228
+UniRef50_A1U0K1: 1,4-alpha-glucan branching enzyme GlgB	0.0339790574
+UniRef50_A1U0K1: 1,4-alpha-glucan branching enzyme GlgB|unclassified	0.0339790574
+UniRef50_U6EBH2	0.0339780213
+UniRef50_U6EBH2|unclassified	0.0339780213
+UniRef50_V6M3U9: Sugar ABC transporter substrate-binding protein	0.0339734882
+UniRef50_V6M3U9: Sugar ABC transporter substrate-binding protein|unclassified	0.0339734882
+UniRef50_UPI000328B68A: PREDICTED: unconventional myosin-IXb-like, partial	0.0339696345
+UniRef50_UPI000328B68A: PREDICTED: unconventional myosin-IXb-like, partial|unclassified	0.0339696345
+UniRef50_V5S9W3	0.0339672489
+UniRef50_V5S9W3|unclassified	0.0339672489
+UniRef50_C9R3R0: Protein YcfP	0.0339614312
+UniRef50_C9R3R0: Protein YcfP|unclassified	0.0339614312
+UniRef50_UPI0003473CE9: ornithine acetyltransferase	0.0339585131
+UniRef50_UPI0003473CE9: ornithine acetyltransferase|unclassified	0.0339585131
+UniRef50_Q58475: Anthranilate synthase component 1	0.0339555909
+UniRef50_Q58475: Anthranilate synthase component 1|unclassified	0.0339555909
+UniRef50_B9JB58: Insertion sequence transposase protein	0.0339488011
+UniRef50_B9JB58: Insertion sequence transposase protein|unclassified	0.0339488011
+UniRef50_U3QQX1: C4-dicarboxylate ABC transporter	0.0339470343
+UniRef50_U3QQX1: C4-dicarboxylate ABC transporter|unclassified	0.0339470343
+UniRef50_C1A4H9: Probable nicotinate-nucleotide adenylyltransferase	0.0339427064
+UniRef50_C1A4H9: Probable nicotinate-nucleotide adenylyltransferase|unclassified	0.0339427064
+UniRef50_D3F4A4: Beta-lactamase	0.0339355219
+UniRef50_D3F4A4: Beta-lactamase|unclassified	0.0339355219
+UniRef50_A0RUI8: Proline--tRNA ligase	0.0339261622
+UniRef50_A0RUI8: Proline--tRNA ligase|unclassified	0.0339261622
+UniRef50_UPI00041C3470: major facilitator transporter	0.0339188896
+UniRef50_UPI00041C3470: major facilitator transporter|unclassified	0.0339188896
+UniRef50_UPI000363C372: cytosol aminopeptidase, partial	0.0339182715
+UniRef50_UPI000363C372: cytosol aminopeptidase, partial|unclassified	0.0339182715
+UniRef50_UPI000371ABD8: hypothetical protein	0.0339166468
+UniRef50_UPI000371ABD8: hypothetical protein|unclassified	0.0339166468
+UniRef50_UPI00035D6735: hypothetical protein	0.0339166467
+UniRef50_UPI00035D6735: hypothetical protein|unclassified	0.0339166467
+UniRef50_W5X633: GTPase EngC	0.0339031582
+UniRef50_W5X633: GTPase EngC|unclassified	0.0339031582
+UniRef50_UPI0004756B1C: 6-phospho-beta-glucosidase	0.0339023679
+UniRef50_UPI0004756B1C: 6-phospho-beta-glucosidase|unclassified	0.0339023679
+UniRef50_UPI00036F7235: hypothetical protein, partial	0.0338996450
+UniRef50_UPI00036F7235: hypothetical protein, partial|unclassified	0.0338996450
+UniRef50_UPI0003B3392D: pyridine nucleotide-disulfide oxidoreductase	0.0338971999
+UniRef50_UPI0003B3392D: pyridine nucleotide-disulfide oxidoreductase|unclassified	0.0338971999
+UniRef50_UPI000225A906: multidrug transporter	0.0338967169
+UniRef50_UPI000225A906: multidrug transporter|unclassified	0.0338967169
+UniRef50_UPI0002236468: PREDICTED: histone-lysine N-methyltransferase EHMT1	0.0338960290
+UniRef50_UPI0002236468: PREDICTED: histone-lysine N-methyltransferase EHMT1|unclassified	0.0338960290
+UniRef50_UPI00036B0DA6: hypothetical protein	0.0338929709
+UniRef50_UPI00036B0DA6: hypothetical protein|unclassified	0.0338929709
+UniRef50_Q00612: Glucose-6-phosphate 1-dehydrogenase X	0.0338918095
+UniRef50_Q00612: Glucose-6-phosphate 1-dehydrogenase X|unclassified	0.0338918095
+UniRef50_UPI00046432B0: terminase	0.0338886914
+UniRef50_UPI00046432B0: terminase|unclassified	0.0338886914
+UniRef50_Q2GEH7: Adenylosuccinate synthetase	0.0338878295
+UniRef50_Q2GEH7: Adenylosuccinate synthetase|unclassified	0.0338878295
+UniRef50_Q20970: Methionine--tRNA ligase, cytoplasmic	0.0338845139
+UniRef50_Q20970: Methionine--tRNA ligase, cytoplasmic|unclassified	0.0338845139
+UniRef50_UPI0004417686: hypothetical protein PUNSTDRAFT_141035	0.0338833068
+UniRef50_UPI0004417686: hypothetical protein PUNSTDRAFT_141035|unclassified	0.0338833068
+UniRef50_UPI00021A5F86: PREDICTED: hypothetical protein LOC100639958	0.0338763554
+UniRef50_UPI00021A5F86: PREDICTED: hypothetical protein LOC100639958|unclassified	0.0338763554
+UniRef50_UPI0003AD6887: hypothetical protein	0.0338710997
+UniRef50_UPI0003AD6887: hypothetical protein|unclassified	0.0338710997
+UniRef50_UPI0004691530: hypothetical protein	0.0338688771
+UniRef50_UPI0004691530: hypothetical protein|unclassified	0.0338688771
+UniRef50_A8MGM7: Histidine--tRNA ligase	0.0338671905
+UniRef50_A8MGM7: Histidine--tRNA ligase|unclassified	0.0338671905
+UniRef50_UPI00047092B2: hypothetical protein, partial	0.0338658153
+UniRef50_UPI00047092B2: hypothetical protein, partial|unclassified	0.0338658153
+UniRef50_E3EG95: PRLI-interacting factor L-like protein	0.0338635103
+UniRef50_E3EG95: PRLI-interacting factor L-like protein|unclassified	0.0338635103
+UniRef50_G2IKB6: HlyD family secretion protein	0.0338616136
+UniRef50_G2IKB6: HlyD family secretion protein|unclassified	0.0338616136
+UniRef50_B2A3Q4: ATP-dependent zinc metalloprotease FtsH	0.0338607895
+UniRef50_B2A3Q4: ATP-dependent zinc metalloprotease FtsH|unclassified	0.0338607895
+UniRef50_I3DNA5	0.0338571742
+UniRef50_I3DNA5|unclassified	0.0338571742
+UniRef50_K0VGX6: Phenol hydroxylase	0.0338568174
+UniRef50_K0VGX6: Phenol hydroxylase|unclassified	0.0338568174
+UniRef50_D2Q2X8: Cell envelope-related transcriptional attenuator	0.0338541025
+UniRef50_D2Q2X8: Cell envelope-related transcriptional attenuator|unclassified	0.0338541025
+UniRef50_UPI0004786295: hypothetical protein	0.0338506923
+UniRef50_UPI0004786295: hypothetical protein|unclassified	0.0338506923
+UniRef50_UPI000225A95D: UDP-N-acetylglucosamine pyrophosphorylase	0.0338484402
+UniRef50_UPI000225A95D: UDP-N-acetylglucosamine pyrophosphorylase|unclassified	0.0338484402
+UniRef50_G1THI8	0.0338451426
+UniRef50_G1THI8|unclassified	0.0338451426
+UniRef50_UPI000466F2A2: hypothetical protein	0.0338372778
+UniRef50_UPI000466F2A2: hypothetical protein|unclassified	0.0338372778
+UniRef50_UPI0003B47D4C: phosphate acyltransferase	0.0338263088
+UniRef50_UPI0003B47D4C: phosphate acyltransferase|unclassified	0.0338263088
+UniRef50_Q726S7: Phosphate acetyltransferase	0.0338178879
+UniRef50_Q726S7: Phosphate acetyltransferase|unclassified	0.0338178879
+UniRef50_UPI000313F975: hypothetical protein	0.0338151213
+UniRef50_UPI000313F975: hypothetical protein|unclassified	0.0338151213
+UniRef50_UPI000364CE09: hypothetical protein	0.0338129002
+UniRef50_UPI000364CE09: hypothetical protein|unclassified	0.0338129002
+UniRef50_UPI000377AAAD: hypothetical protein	0.0338112406
+UniRef50_UPI000377AAAD: hypothetical protein|unclassified	0.0338112406
+UniRef50_G7JSQ9: Methionyl-tRNA synthetase	0.0338099881
+UniRef50_G7JSQ9: Methionyl-tRNA synthetase|unclassified	0.0338099881
+UniRef50_G2RK37: Metallo-beta-lactamase family protein	0.0338026257
+UniRef50_G2RK37: Metallo-beta-lactamase family protein|unclassified	0.0338026257
+UniRef50_D3FB73	0.0338007443
+UniRef50_D3FB73|unclassified	0.0338007443
+UniRef50_UPI000369A8C8: MULTISPECIES: hypothetical protein	0.0338003556
+UniRef50_UPI000369A8C8: MULTISPECIES: hypothetical protein|unclassified	0.0338003556
+UniRef50_UPI0004636BA5: DNA repair protein	0.0337999179
+UniRef50_UPI0004636BA5: DNA repair protein|unclassified	0.0337999179
+UniRef50_UPI0003643D3B: hypothetical protein	0.0337976278
+UniRef50_UPI0003643D3B: hypothetical protein|unclassified	0.0337976278
+UniRef50_UPI00036BEDDD: serine/threonine protein kinase	0.0337963936
+UniRef50_UPI00036BEDDD: serine/threonine protein kinase|unclassified	0.0337963936
+UniRef50_UPI0003744614: MULTISPECIES: hypothetical protein	0.0337934188
+UniRef50_UPI0003744614: MULTISPECIES: hypothetical protein|unclassified	0.0337934188
+UniRef50_UPI000372B3C6: D-ribose transporter ATP binding protein	0.0337894045
+UniRef50_UPI000372B3C6: D-ribose transporter ATP binding protein|unclassified	0.0337894045
+UniRef50_K1ZIN2: Type II secretion system protein F	0.0337840165
+UniRef50_K1ZIN2: Type II secretion system protein F|unclassified	0.0337840165
+UniRef50_UPI000441338E: hypothetical protein AURDEDRAFT_112432	0.0337830285
+UniRef50_UPI000441338E: hypothetical protein AURDEDRAFT_112432|unclassified	0.0337830285
+UniRef50_UPI0001851281: aldehyde dehydrogenase	0.0337805092
+UniRef50_UPI0001851281: aldehyde dehydrogenase|unclassified	0.0337805092
+UniRef50_UPI00046D94CA: 3-oxoacyl-ACP synthase	0.0337776100
+UniRef50_UPI00046D94CA: 3-oxoacyl-ACP synthase|unclassified	0.0337776100
+UniRef50_Q8D295: Probable cytosol aminopeptidase	0.0337773011
+UniRef50_Q8D295: Probable cytosol aminopeptidase|unclassified	0.0337773011
+UniRef50_UPI00039F77EE: hypothetical protein	0.0337713033
+UniRef50_UPI00039F77EE: hypothetical protein|unclassified	0.0337713033
+UniRef50_C6XE50: Anti-FecI sigma factor, FecR	0.0337711183
+UniRef50_C6XE50: Anti-FecI sigma factor, FecR|unclassified	0.0337711183
+UniRef50_Q9PLA5: Phosphoglucosamine mutase	0.0337708837
+UniRef50_Q9PLA5: Phosphoglucosamine mutase|unclassified	0.0337708837
+UniRef50_A3J583	0.0337687469
+UniRef50_A3J583|unclassified	0.0337687469
+UniRef50_UPI00044190A9: PREDICTED: methylmalonate-semialdehyde dehydrogenase [acylating], mitochondrial isoform X2	0.0337658496
+UniRef50_UPI00044190A9: PREDICTED: methylmalonate-semialdehyde dehydrogenase [acylating], mitochondrial isoform X2|unclassified	0.0337658496
+UniRef50_I4D3F1: Phage portal protein, HK97 family	0.0337656929
+UniRef50_I4D3F1: Phage portal protein, HK97 family|unclassified	0.0337656929
+UniRef50_UPI000376FFD8: hypothetical protein	0.0337650485
+UniRef50_UPI000376FFD8: hypothetical protein|unclassified	0.0337650485
+UniRef50_Q1YK04	0.0337631682
+UniRef50_Q1YK04|unclassified	0.0337631682
+UniRef50_UPI00046AC193: 2-hydroxy-acid oxidase	0.0337621666
+UniRef50_UPI00046AC193: 2-hydroxy-acid oxidase|unclassified	0.0337621666
+UniRef50_UPI00036FE7ED: hypothetical protein	0.0337562032
+UniRef50_UPI00036FE7ED: hypothetical protein|unclassified	0.0337562032
+UniRef50_UPI0004713D82: hypothetical protein	0.0337551622
+UniRef50_UPI0004713D82: hypothetical protein|unclassified	0.0337551622
+UniRef50_P28240: Isocitrate lyase	0.0337538195
+UniRef50_P28240: Isocitrate lyase|unclassified	0.0337538195
+UniRef50_C2VKX7: DNA translocase ftsK	0.0337527765
+UniRef50_C2VKX7: DNA translocase ftsK|unclassified	0.0337527765
+UniRef50_Q7UX39: Histidinol dehydrogenase	0.0337502525
+UniRef50_Q7UX39: Histidinol dehydrogenase|unclassified	0.0337502525
+UniRef50_UPI0004663940: membrane protein	0.0337486337
+UniRef50_UPI0004663940: membrane protein|unclassified	0.0337486337
+UniRef50_G7Q687: Ornithine cyclodeaminase/mu-crystallin	0.0337484145
+UniRef50_G7Q687: Ornithine cyclodeaminase/mu-crystallin|unclassified	0.0337484145
+UniRef50_UPI0002D3CB45: hypothetical protein	0.0337464105
+UniRef50_UPI0002D3CB45: hypothetical protein|unclassified	0.0337464105
+UniRef50_C7NII1: Predicted transporter component	0.0337464034
+UniRef50_C7NII1: Predicted transporter component|unclassified	0.0337464034
+UniRef50_UPI000470D6E7: lipoate--protein ligase	0.0337461039
+UniRef50_UPI000470D6E7: lipoate--protein ligase|unclassified	0.0337461039
+UniRef50_X7EMU4: Aromatic hydrocarbon degradation protein	0.0337447535
+UniRef50_X7EMU4: Aromatic hydrocarbon degradation protein|unclassified	0.0337447535
+UniRef50_Q9UTM8: Putative succinate-semialdehyde dehydrogenase C139.05 [NADP(+)]	0.0337423572
+UniRef50_Q9UTM8: Putative succinate-semialdehyde dehydrogenase C139.05 [NADP(+)]|unclassified	0.0337423572
+UniRef50_UPI0002B9193E: hypothetical protein	0.0337414043
+UniRef50_UPI0002B9193E: hypothetical protein|unclassified	0.0337414043
+UniRef50_A0A052I467: PF07120 family protein	0.0337385243
+UniRef50_A0A052I467: PF07120 family protein|unclassified	0.0337385243
+UniRef50_L8GTA3	0.0337361760
+UniRef50_L8GTA3|unclassified	0.0337361760
+UniRef50_U7TVW7	0.0337337984
+UniRef50_U7TVW7|unclassified	0.0337337984
+UniRef50_UPI0001A5C2ED: hypothetical protein	0.0337307288
+UniRef50_UPI0001A5C2ED: hypothetical protein|unclassified	0.0337307288
+UniRef50_A5WHZ1: Flavoprotein involved in K+ transport-like protein	0.0337305626
+UniRef50_A5WHZ1: Flavoprotein involved in K+ transport-like protein|unclassified	0.0337305626
+UniRef50_A9U851: Predicted protein	0.0337303332
+UniRef50_A9U851: Predicted protein|unclassified	0.0337303332
+UniRef50_M4VHK0: SpoVR-like protein	0.0337284390
+UniRef50_M4VHK0: SpoVR-like protein|unclassified	0.0337284390
+UniRef50_UPI000378BB5D: hypothetical protein	0.0337263306
+UniRef50_UPI000378BB5D: hypothetical protein|unclassified	0.0337263306
+UniRef50_W6I4X5: MRNA 3'-end processing factor	0.0337196774
+UniRef50_W6I4X5: MRNA 3'-end processing factor|unclassified	0.0337196774
+UniRef50_A4ACJ3: Beta-barrel assembly machine subunit BamC	0.0337186817
+UniRef50_A4ACJ3: Beta-barrel assembly machine subunit BamC|unclassified	0.0337186817
+UniRef50_UPI000441A1BE: PREDICTED: NK1 transcription factor-related protein 1-like	0.0337128996
+UniRef50_UPI000441A1BE: PREDICTED: NK1 transcription factor-related protein 1-like|unclassified	0.0337128996
+UniRef50_B0KA35: Dihydroorotase	0.0337127336
+UniRef50_B0KA35: Dihydroorotase|unclassified	0.0337127336
+UniRef50_Q21FM1: Tetratricopeptide TPR_2	0.0337121077
+UniRef50_Q21FM1: Tetratricopeptide TPR_2|unclassified	0.0337121077
+UniRef50_UPI0003452416: MULTISPECIES: hypothetical protein	0.0337114687
+UniRef50_UPI0003452416: MULTISPECIES: hypothetical protein|unclassified	0.0337114687
+UniRef50_R6GP90	0.0337099909
+UniRef50_R6GP90|unclassified	0.0337099909
+UniRef50_F0ST66: Pericardin like protein	0.0337097010
+UniRef50_F0ST66: Pericardin like protein|unclassified	0.0337097010
+UniRef50_UPI0003654EDA: hypothetical protein	0.0337090085
+UniRef50_UPI0003654EDA: hypothetical protein|unclassified	0.0337090085
+UniRef50_U3C9I0	0.0337045474
+UniRef50_U3C9I0|unclassified	0.0337045474
+UniRef50_F0S5S6	0.0337045236
+UniRef50_F0S5S6|unclassified	0.0337045236
+UniRef50_R6MP39	0.0336986853
+UniRef50_R6MP39|unclassified	0.0336986853
+UniRef50_A4E917	0.0336957744
+UniRef50_A4E917|unclassified	0.0336957744
+UniRef50_UPI00039D66F3: glycine oxidase	0.0336942852
+UniRef50_UPI00039D66F3: glycine oxidase|unclassified	0.0336942852
+UniRef50_M7N6W4: ZIP Zinc transporter	0.0336914596
+UniRef50_M7N6W4: ZIP Zinc transporter|unclassified	0.0336914596
+UniRef50_E7EWU3: Acetyl-coenzyme A synthetase, cytoplasmic	0.0336914322
+UniRef50_E7EWU3: Acetyl-coenzyme A synthetase, cytoplasmic|unclassified	0.0336914322
+UniRef50_D8UDA3	0.0336892647
+UniRef50_D8UDA3|unclassified	0.0336892647
+UniRef50_D9X0C7: Phosphatase	0.0336851700
+UniRef50_D9X0C7: Phosphatase|unclassified	0.0336851700
+UniRef50_UPI00045492E4: PREDICTED: molybdenum cofactor biosynthesis protein 1, partial	0.0336796120
+UniRef50_UPI00045492E4: PREDICTED: molybdenum cofactor biosynthesis protein 1, partial|unclassified	0.0336796120
+UniRef50_S5TYK3	0.0336794957
+UniRef50_S5TYK3|unclassified	0.0336794957
+UniRef50_A7HW92	0.0336776618
+UniRef50_A7HW92|unclassified	0.0336776618
+UniRef50_W5XCB4: DegT/DnrJ/EryC1/StrS family protein	0.0336755283
+UniRef50_W5XCB4: DegT/DnrJ/EryC1/StrS family protein|unclassified	0.0336755283
+UniRef50_UPI0003611E4F: hypothetical protein	0.0336750263
+UniRef50_UPI0003611E4F: hypothetical protein|unclassified	0.0336750263
+UniRef50_L5M7F1: DDB1-and CUL4-associated factor 10	0.0336743298
+UniRef50_L5M7F1: DDB1-and CUL4-associated factor 10|unclassified	0.0336743298
+UniRef50_UPI0002378F3D: ABC transporter	0.0336737329
+UniRef50_UPI0002378F3D: ABC transporter|unclassified	0.0336737329
+UniRef50_UPI0002890DE5: oxidoreductase	0.0336735151
+UniRef50_UPI0002890DE5: oxidoreductase|unclassified	0.0336735151
+UniRef50_UPI0003B38742: phosphorylase	0.0336720308
+UniRef50_UPI0003B38742: phosphorylase|unclassified	0.0336720308
+UniRef50_UPI0004771957: pyruvate kinase	0.0336680655
+UniRef50_UPI0004771957: pyruvate kinase|unclassified	0.0336680655
+UniRef50_UPI000378F4AE: hypothetical protein	0.0336575453
+UniRef50_UPI000378F4AE: hypothetical protein|unclassified	0.0336575453
+UniRef50_K0S7R8	0.0336565144
+UniRef50_K0S7R8|unclassified	0.0336565144
+UniRef50_UPI000465E97D: excinuclease ABC subunit A	0.0336540947
+UniRef50_UPI000465E97D: excinuclease ABC subunit A|unclassified	0.0336540947
+UniRef50_UPI0004645414: IMP dehydrogenase	0.0336535176
+UniRef50_UPI0004645414: IMP dehydrogenase|unclassified	0.0336535176
+UniRef50_U3K0V1	0.0336489847
+UniRef50_U3K0V1|unclassified	0.0336489847
+UniRef50_C2NS27	0.0336479783
+UniRef50_C2NS27|unclassified	0.0336479783
+UniRef50_A0A011NJ23	0.0336358742
+UniRef50_A0A011NJ23|unclassified	0.0336358742
+UniRef50_UPI0004652B27: NAD synthetase	0.0336308405
+UniRef50_UPI0004652B27: NAD synthetase|unclassified	0.0336308405
+UniRef50_UPI00037EDF81: hypothetical protein	0.0336254842
+UniRef50_UPI00037EDF81: hypothetical protein|unclassified	0.0336254842
+UniRef50_UPI000472AF4B: hypothetical protein	0.0336205107
+UniRef50_UPI000472AF4B: hypothetical protein|unclassified	0.0336205107
+UniRef50_B5EL11: Glutamate--tRNA ligase 2	0.0336191775
+UniRef50_B5EL11: Glutamate--tRNA ligase 2|unclassified	0.0336191775
+UniRef50_UPI00039DDDEF: hypothetical protein	0.0336149808
+UniRef50_UPI00039DDDEF: hypothetical protein|unclassified	0.0336149808
+UniRef50_R6WGW0: Macro domain protein	0.0336118874
+UniRef50_R6WGW0: Macro domain protein|unclassified	0.0336118874
+UniRef50_Q6MAC7: Glutamate-1-semialdehyde 2,1-aminomutase	0.0336117352
+UniRef50_Q6MAC7: Glutamate-1-semialdehyde 2,1-aminomutase|unclassified	0.0336117352
+UniRef50_UPI0004008EF6: hypothetical protein	0.0336109092
+UniRef50_UPI0004008EF6: hypothetical protein|unclassified	0.0336109092
+UniRef50_UPI0003B32410: chromosomal replication initiation protein	0.0336107454
+UniRef50_UPI0003B32410: chromosomal replication initiation protein|unclassified	0.0336107454
+UniRef50_UPI00035CF6FF: hypothetical protein	0.0336066620
+UniRef50_UPI00035CF6FF: hypothetical protein|unclassified	0.0336066620
+UniRef50_P58967: Putative homocitrate synthase AksA	0.0336039790
+UniRef50_P58967: Putative homocitrate synthase AksA|unclassified	0.0336039790
+UniRef50_R5DN83: Peptidase M23 family	0.0336004413
+UniRef50_R5DN83: Peptidase M23 family|unclassified	0.0336004413
+UniRef50_D1WJ35: Cna protein B-type domain protein	0.0335976728
+UniRef50_D1WJ35: Cna protein B-type domain protein|unclassified	0.0335976728
+UniRef50_UPI000472E539: GTPase CgtA	0.0335894398
+UniRef50_UPI000472E539: GTPase CgtA|unclassified	0.0335894398
+UniRef50_UPI00022471B6: PREDICTED: methionyl-tRNA synthetase, cytoplasmic-like isoform 1	0.0335883646
+UniRef50_UPI00022471B6: PREDICTED: methionyl-tRNA synthetase, cytoplasmic-like isoform 1|unclassified	0.0335883646
+UniRef50_UPI00047B2E91: hypothetical protein	0.0335873422
+UniRef50_UPI00047B2E91: hypothetical protein|unclassified	0.0335873422
+UniRef50_W5X8P5: Mg2+ transporter mgtE	0.0335870339
+UniRef50_W5X8P5: Mg2+ transporter mgtE|unclassified	0.0335870339
+UniRef50_UPI0002DFA60B: hypothetical protein	0.0335861862
+UniRef50_UPI0002DFA60B: hypothetical protein|unclassified	0.0335861862
+UniRef50_V7YXX1: Fibronectin-binding protein A	0.0335861745
+UniRef50_V7YXX1: Fibronectin-binding protein A|unclassified	0.0335861745
+UniRef50_UPI000365E98C: hypothetical protein	0.0335828886
+UniRef50_UPI000365E98C: hypothetical protein|unclassified	0.0335828886
+UniRef50_UPI00037D2BB8: hypothetical protein	0.0335793210
+UniRef50_UPI00037D2BB8: hypothetical protein|unclassified	0.0335793210
+UniRef50_UPI0001E89357: pyridine nucleotide-disulphide oxidoreductase dimerisation region	0.0335791729
+UniRef50_UPI0001E89357: pyridine nucleotide-disulphide oxidoreductase dimerisation region|unclassified	0.0335791729
+UniRef50_UPI0002E5BF23: hypothetical protein	0.0335677679
+UniRef50_UPI0002E5BF23: hypothetical protein|unclassified	0.0335677679
+UniRef50_UPI00036C881F: hypothetical protein	0.0335671277
+UniRef50_UPI00036C881F: hypothetical protein|unclassified	0.0335671277
+UniRef50_UPI0003717E93: phosphoribosylglycinamide synthetase	0.0335645667
+UniRef50_UPI0003717E93: phosphoribosylglycinamide synthetase|unclassified	0.0335645667
+UniRef50_C2Q5H3: ABC transporter permease protein	0.0335606118
+UniRef50_C2Q5H3: ABC transporter permease protein|unclassified	0.0335606118
+UniRef50_Q6AHF5: Uroporphyrinogen decarboxylase	0.0335567600
+UniRef50_Q6AHF5: Uroporphyrinogen decarboxylase|unclassified	0.0335567600
+UniRef50_UPI000403EB3B: hypothetical protein	0.0335537998
+UniRef50_UPI000403EB3B: hypothetical protein|unclassified	0.0335537998
+UniRef50_Q56310: Chemotaxis protein CheA	0.0335506494
+UniRef50_Q56310: Chemotaxis protein CheA|unclassified	0.0335506494
+UniRef50_J7MT36: Phage infection family protein	0.0335471253
+UniRef50_J7MT36: Phage infection family protein|unclassified	0.0335471253
+UniRef50_UPI00035F00D7: hypothetical protein	0.0335411286
+UniRef50_UPI00035F00D7: hypothetical protein|unclassified	0.0335411286
+UniRef50_UPI0004409A37: HAD-like protein	0.0335340528
+UniRef50_UPI0004409A37: HAD-like protein|unclassified	0.0335340528
+UniRef50_UPI00047576D2: hypothetical protein	0.0335338973
+UniRef50_UPI00047576D2: hypothetical protein|unclassified	0.0335338973
+UniRef50_UPI0000E0FA2B: P-aminobenzoate synthetase, component I	0.0335336005
+UniRef50_UPI0000E0FA2B: P-aminobenzoate synthetase, component I|unclassified	0.0335336005
+UniRef50_F2SDC0: Phosphoenolpyruvate carboxykinase AcuF	0.0335307524
+UniRef50_F2SDC0: Phosphoenolpyruvate carboxykinase AcuF|unclassified	0.0335307524
+UniRef50_UPI00045EAF3A: hypothetical protein	0.0335303248
+UniRef50_UPI00045EAF3A: hypothetical protein|unclassified	0.0335303248
+UniRef50_UPI00022CAAD7: PREDICTED: hypothetical protein LOC100744914	0.0335301218
+UniRef50_UPI00022CAAD7: PREDICTED: hypothetical protein LOC100744914|unclassified	0.0335301218
+UniRef50_UPI000373E447: hypothetical protein	0.0335292128
+UniRef50_UPI000373E447: hypothetical protein|unclassified	0.0335292128
+UniRef50_UPI000292B00A	0.0335264230
+UniRef50_UPI000292B00A|unclassified	0.0335264230
+UniRef50_UPI00037A4B84: hypothetical protein	0.0335258877
+UniRef50_UPI00037A4B84: hypothetical protein|unclassified	0.0335258877
+UniRef50_UPI00046D07E2: hypothetical protein, partial	0.0335256999
+UniRef50_UPI00046D07E2: hypothetical protein, partial|unclassified	0.0335256999
+UniRef50_M3Z6H2	0.0335238146
+UniRef50_M3Z6H2|unclassified	0.0335238146
+UniRef50_J3ADH9	0.0335221607
+UniRef50_J3ADH9|unclassified	0.0335221607
+UniRef50_UPI00036D5872: hypothetical protein	0.0335220890
+UniRef50_UPI00036D5872: hypothetical protein|unclassified	0.0335220890
+UniRef50_B9KHN2: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0335205411
+UniRef50_B9KHN2: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0335205411
+UniRef50_UPI0003B487FD: hypothetical protein	0.0335179188
+UniRef50_UPI0003B487FD: hypothetical protein|unclassified	0.0335179188
+UniRef50_X1HZM9: Marine sediment metagenome DNA, contig: S03H2_S16501	0.0335179188
+UniRef50_X1HZM9: Marine sediment metagenome DNA, contig: S03H2_S16501|unclassified	0.0335179188
+UniRef50_UPI0003634781: MULTISPECIES: hypothetical protein	0.0335175968
+UniRef50_UPI0003634781: MULTISPECIES: hypothetical protein|unclassified	0.0335175968
+UniRef50_A1VL02	0.0335173190
+UniRef50_A1VL02|unclassified	0.0335173190
+UniRef50_UPI00041F6D31: DNA primase	0.0335162221
+UniRef50_UPI00041F6D31: DNA primase|unclassified	0.0335162221
+UniRef50_UPI0004638AC0: pseudouridylate synthase	0.0335131930
+UniRef50_UPI0004638AC0: pseudouridylate synthase|unclassified	0.0335131930
+UniRef50_UPI00036EA426: hypothetical protein	0.0335121019
+UniRef50_UPI00036EA426: hypothetical protein|unclassified	0.0335121019
+UniRef50_I0GLU2: Putative Flp pilus assembly protein CpaB	0.0335113753
+UniRef50_I0GLU2: Putative Flp pilus assembly protein CpaB|unclassified	0.0335113753
+UniRef50_UPI00036D2F5E: hypothetical protein	0.0335081231
+UniRef50_UPI00036D2F5E: hypothetical protein|unclassified	0.0335081231
+UniRef50_UPI00045EAD80: acetyl-CoA synthetase	0.0335054812
+UniRef50_UPI00045EAD80: acetyl-CoA synthetase|unclassified	0.0335054812
+UniRef50_D2Q557: Cobyrinic acid ac-diamide synthase	0.0335048283
+UniRef50_D2Q557: Cobyrinic acid ac-diamide synthase|unclassified	0.0335048283
+UniRef50_UPI00046C9AF3: hypothetical protein	0.0335006979
+UniRef50_UPI00046C9AF3: hypothetical protein|unclassified	0.0335006979
+UniRef50_Q18A91: DNA polymerase IV	0.0334983813
+UniRef50_Q18A91: DNA polymerase IV|unclassified	0.0334983813
+UniRef50_UPI000465865F: glycolate oxidase	0.0334982064
+UniRef50_UPI000465865F: glycolate oxidase|unclassified	0.0334982064
+UniRef50_UPI0003946FC9: PREDICTED: skin secretory protein xP2-like	0.0334943434
+UniRef50_UPI0003946FC9: PREDICTED: skin secretory protein xP2-like|unclassified	0.0334943434
+UniRef50_J7SKY0	0.0334926251
+UniRef50_J7SKY0|unclassified	0.0334926251
+UniRef50_UPI0003703812: hypothetical protein	0.0334896423
+UniRef50_UPI0003703812: hypothetical protein|unclassified	0.0334896423
+UniRef50_UPI0004655F9C: MFS transporter	0.0334894835
+UniRef50_UPI0004655F9C: MFS transporter|unclassified	0.0334894835
+UniRef50_Q04PF0: Glutamate--tRNA ligase	0.0334869529
+UniRef50_Q04PF0: Glutamate--tRNA ligase|unclassified	0.0334869529
+UniRef50_Q3JA96: Secretion protein HlyD	0.0334857637
+UniRef50_Q3JA96: Secretion protein HlyD|unclassified	0.0334857637
+UniRef50_S7PXX5	0.0334853403
+UniRef50_S7PXX5|unclassified	0.0334853403
+UniRef50_A4XKT2: Dihydroorotase	0.0334848763
+UniRef50_A4XKT2: Dihydroorotase|unclassified	0.0334848763
+UniRef50_UPI00037753EF: hypothetical protein	0.0334836218
+UniRef50_UPI00037753EF: hypothetical protein|unclassified	0.0334836218
+UniRef50_UPI00047E1AC9: thioredoxin	0.0334832384
+UniRef50_UPI00047E1AC9: thioredoxin|unclassified	0.0334832384
+UniRef50_Q89NS6: Bll3758 protein	0.0334820421
+UniRef50_Q89NS6: Bll3758 protein|unclassified	0.0334820421
+UniRef50_UPI000329E0D2: PREDICTED: L-aspartate oxidase-like	0.0334804829
+UniRef50_UPI000329E0D2: PREDICTED: L-aspartate oxidase-like|unclassified	0.0334804829
+UniRef50_UPI00046EE5C7: hypothetical protein, partial	0.0334803290
+UniRef50_UPI00046EE5C7: hypothetical protein, partial|unclassified	0.0334803290
+UniRef50_E8RT73: DNA repair protein RadC	0.0334787869
+UniRef50_E8RT73: DNA repair protein RadC|unclassified	0.0334787869
+UniRef50_UPI0003B4DB15: cytidylate kinase, partial	0.0334760569
+UniRef50_UPI0003B4DB15: cytidylate kinase, partial|unclassified	0.0334760569
+UniRef50_B7Q4N6	0.0334753658
+UniRef50_B7Q4N6|unclassified	0.0334753658
+UniRef50_UPI00036F0981: hypothetical protein, partial	0.0334722877
+UniRef50_UPI00036F0981: hypothetical protein, partial|unclassified	0.0334722877
+UniRef50_A0RH23: S-layer protein	0.0334704795
+UniRef50_A0RH23: S-layer protein|unclassified	0.0334704795
+UniRef50_K2FK09	0.0334693311
+UniRef50_K2FK09|unclassified	0.0334693311
+UniRef50_A0A024Q244: Chemotaxis protein MotB	0.0334667718
+UniRef50_A0A024Q244: Chemotaxis protein MotB|unclassified	0.0334667718
+UniRef50_UPI000370CA81: hypothetical protein	0.0334587505
+UniRef50_UPI000370CA81: hypothetical protein|unclassified	0.0334587505
+UniRef50_UPI00036082CE: hypothetical protein	0.0334578057
+UniRef50_UPI00036082CE: hypothetical protein|unclassified	0.0334578057
+UniRef50_W5RUV8: Putative TctA citrate transporter	0.0334501781
+UniRef50_W5RUV8: Putative TctA citrate transporter|unclassified	0.0334501781
+UniRef50_UPI000376B0EA: hypothetical protein	0.0334459841
+UniRef50_UPI000376B0EA: hypothetical protein|unclassified	0.0334459841
+UniRef50_UPI000477C573: trehalase	0.0334429485
+UniRef50_UPI000477C573: trehalase|unclassified	0.0334429485
+UniRef50_UPI0002F63E17: hypothetical protein	0.0334420338
+UniRef50_UPI0002F63E17: hypothetical protein|unclassified	0.0334420338
+UniRef50_P57386: Deoxyribodipyrimidine photo-lyase	0.0334375473
+UniRef50_P57386: Deoxyribodipyrimidine photo-lyase|unclassified	0.0334375473
+UniRef50_F0VGV8	0.0334323667
+UniRef50_F0VGV8|unclassified	0.0334323667
+UniRef50_UPI00028805C2: glycosyltransferase EpsF2	0.0334306127
+UniRef50_UPI00028805C2: glycosyltransferase EpsF2|unclassified	0.0334306127
+UniRef50_UPI00046F814E: HrcA family transcriptional regulator	0.0334282640
+UniRef50_UPI00046F814E: HrcA family transcriptional regulator|unclassified	0.0334282640
+UniRef50_X2M5A7	0.0334217459
+UniRef50_X2M5A7|unclassified	0.0334217459
+UniRef50_UPI00037860D6: hypothetical protein	0.0334112384
+UniRef50_UPI00037860D6: hypothetical protein|unclassified	0.0334112384
+UniRef50_UPI00041B7171: hypothetical protein	0.0334107366
+UniRef50_UPI00041B7171: hypothetical protein|unclassified	0.0334107366
+UniRef50_J2VL16: Replication protein like protein	0.0334095946
+UniRef50_J2VL16: Replication protein like protein|unclassified	0.0334095946
+UniRef50_Q1QYQ1: Periplasmic binding protein	0.0334075340
+UniRef50_Q1QYQ1: Periplasmic binding protein|unclassified	0.0334075340
+UniRef50_F0CB87: Alpha-L-arabinofuranosidase (Fragment)	0.0334057362
+UniRef50_F0CB87: Alpha-L-arabinofuranosidase (Fragment)|unclassified	0.0334057362
+UniRef50_UPI00036264E6: hypothetical protein	0.0334038370
+UniRef50_UPI00036264E6: hypothetical protein|unclassified	0.0334038370
+UniRef50_G6EIS7: Structural toxin protein RtxA	0.0334013131
+UniRef50_G6EIS7: Structural toxin protein RtxA|unclassified	0.0334013131
+UniRef50_UPI0003657D51: hypothetical protein	0.0334002459
+UniRef50_UPI0003657D51: hypothetical protein|unclassified	0.0334002459
+UniRef50_UPI000366BB78: hypothetical protein	0.0333987386
+UniRef50_UPI000366BB78: hypothetical protein|unclassified	0.0333987386
+UniRef50_UPI00016C4E49: Heat shock protein 70	0.0333984454
+UniRef50_UPI00016C4E49: Heat shock protein 70|unclassified	0.0333984454
+UniRef50_UPI000413F482: hypothetical protein	0.0333981252
+UniRef50_UPI000413F482: hypothetical protein|unclassified	0.0333981252
+UniRef50_F3P5V2: Rhamnan synthesis protein F	0.0333967886
+UniRef50_F3P5V2: Rhamnan synthesis protein F|unclassified	0.0333967886
+UniRef50_R5SRY0	0.0333941791
+UniRef50_R5SRY0|unclassified	0.0333941791
+UniRef50_UPI0003627B68: hypothetical protein	0.0333935308
+UniRef50_UPI0003627B68: hypothetical protein|unclassified	0.0333935308
+UniRef50_UPI00027427EC	0.0333913078
+UniRef50_UPI00027427EC|unclassified	0.0333913078
+UniRef50_UPI0004749BB1: histidine kinase, partial	0.0333907968
+UniRef50_UPI0004749BB1: histidine kinase, partial|unclassified	0.0333907968
+UniRef50_UPI0003B51CD8: gamma-glutamyltransferase	0.0333896160
+UniRef50_UPI0003B51CD8: gamma-glutamyltransferase|unclassified	0.0333896160
+UniRef50_UPI0003FCE13F: hypothetical protein	0.0333895097
+UniRef50_UPI0003FCE13F: hypothetical protein|unclassified	0.0333895097
+UniRef50_J2KWN5: Arabinose efflux permease family protein	0.0333844944
+UniRef50_J2KWN5: Arabinose efflux permease family protein|unclassified	0.0333844944
+UniRef50_D9PXL2: Predicted ATP-utilizing enzyme	0.0333842306
+UniRef50_D9PXL2: Predicted ATP-utilizing enzyme|unclassified	0.0333842306
+UniRef50_UPI00041EE847: cytochrome C	0.0333806866
+UniRef50_UPI00041EE847: cytochrome C|unclassified	0.0333806866
+UniRef50_UPI0003692BF7: hypothetical protein	0.0333791185
+UniRef50_UPI0003692BF7: hypothetical protein|unclassified	0.0333791185
+UniRef50_UPI00046E80FA: hypothetical protein	0.0333778576
+UniRef50_UPI00046E80FA: hypothetical protein|unclassified	0.0333778576
+UniRef50_UPI0003B56A77: 3-keto-5-aminohexanoate cleavage enzyme	0.0333762272
+UniRef50_UPI0003B56A77: 3-keto-5-aminohexanoate cleavage enzyme|unclassified	0.0333762272
+UniRef50_UPI0003B2FF21: hydantoinase	0.0333760915
+UniRef50_UPI0003B2FF21: hydantoinase|unclassified	0.0333760915
+UniRef50_Q729V5: 1,4-alpha-glucan branching enzyme GlgB	0.0333680110
+UniRef50_Q729V5: 1,4-alpha-glucan branching enzyme GlgB|unclassified	0.0333680110
+UniRef50_Q5R889: Putative adenosylhomocysteinase 3	0.0333646091
+UniRef50_Q5R889: Putative adenosylhomocysteinase 3|unclassified	0.0333646091
+UniRef50_UPI0004418811: PREDICTED: protein translocase subunit SecY-like	0.0333643460
+UniRef50_UPI0004418811: PREDICTED: protein translocase subunit SecY-like|unclassified	0.0333643460
+UniRef50_UPI0003B398BB: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0333558210
+UniRef50_UPI0003B398BB: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0333558210
+UniRef50_D2VX44: Predicted protein	0.0333513264
+UniRef50_D2VX44: Predicted protein|unclassified	0.0333513264
+UniRef50_K9B4R6: Elastin binding protein EbpS	0.0333482139
+UniRef50_K9B4R6: Elastin binding protein EbpS|unclassified	0.0333482139
+UniRef50_C2MLM4	0.0333459077
+UniRef50_C2MLM4|unclassified	0.0333459077
+UniRef50_UPI00036B1C90: hypothetical protein	0.0333449062
+UniRef50_UPI00036B1C90: hypothetical protein|unclassified	0.0333449062
+UniRef50_P06169: Pyruvate decarboxylase isozyme 1	0.0333424523
+UniRef50_P06169: Pyruvate decarboxylase isozyme 1|unclassified	0.0333424523
+UniRef50_UPI0003782C3C: hypothetical protein	0.0333412887
+UniRef50_UPI0003782C3C: hypothetical protein|unclassified	0.0333412887
+UniRef50_E4TQV2: Extracellular solute-binding protein family 1	0.0333410138
+UniRef50_E4TQV2: Extracellular solute-binding protein family 1|unclassified	0.0333410138
+UniRef50_Q13LX0: Ribose import ATP-binding protein RbsA	0.0333392383
+UniRef50_Q13LX0: Ribose import ATP-binding protein RbsA|unclassified	0.0333392383
+UniRef50_UPI0003F7EDB8: histidine kinase	0.0333353237
+UniRef50_UPI0003F7EDB8: histidine kinase|unclassified	0.0333353237
+UniRef50_UPI00046A2DC0: hypothetical protein	0.0333336088
+UniRef50_UPI00046A2DC0: hypothetical protein|unclassified	0.0333336088
+UniRef50_UPI00036999EC: hypothetical protein	0.0333293996
+UniRef50_UPI00036999EC: hypothetical protein|unclassified	0.0333293996
+UniRef50_UPI0003B650F3: hypothetical protein	0.0333288682
+UniRef50_UPI0003B650F3: hypothetical protein|unclassified	0.0333288682
+UniRef50_Q8N465: D-2-hydroxyglutarate dehydrogenase, mitochondrial	0.0333259667
+UniRef50_Q8N465: D-2-hydroxyglutarate dehydrogenase, mitochondrial|unclassified	0.0333259667
+UniRef50_UPI00044169D7: hypothetical protein PUNSTDRAFT_118735	0.0333248352
+UniRef50_UPI00044169D7: hypothetical protein PUNSTDRAFT_118735|unclassified	0.0333248352
+UniRef50_M2RMP7: Formin 2 domain containing protein	0.0333226611
+UniRef50_M2RMP7: Formin 2 domain containing protein|unclassified	0.0333226611
+UniRef50_W4VPW8	0.0333183972
+UniRef50_W4VPW8|unclassified	0.0333183972
+UniRef50_UPI000306FA42: carbohydrate kinase	0.0333114162
+UniRef50_UPI000306FA42: carbohydrate kinase|unclassified	0.0333114162
+UniRef50_UPI0004721B61: hypothetical protein	0.0333097894
+UniRef50_UPI0004721B61: hypothetical protein|unclassified	0.0333097894
+UniRef50_P19262: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial	0.0333088905
+UniRef50_P19262: Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial|unclassified	0.0333088905
+UniRef50_D8UEV7	0.0333055709
+UniRef50_D8UEV7|unclassified	0.0333055709
+UniRef50_UPI000237A895: transporter	0.0333017955
+UniRef50_UPI000237A895: transporter|unclassified	0.0333017955
+UniRef50_P07251: ATP synthase subunit alpha, mitochondrial	0.0333012330
+UniRef50_P07251: ATP synthase subunit alpha, mitochondrial|unclassified	0.0333012330
+UniRef50_D4GIH8: YjiJ	0.0332893949
+UniRef50_D4GIH8: YjiJ|unclassified	0.0332893949
+UniRef50_UPI0002D9F6A6: hypothetical protein	0.0332888858
+UniRef50_UPI0002D9F6A6: hypothetical protein|unclassified	0.0332888858
+UniRef50_S6HQC5	0.0332875213
+UniRef50_S6HQC5|unclassified	0.0332875213
+UniRef50_UPI0002D4E509: diacylglyceryl transferase	0.0332860591
+UniRef50_UPI0002D4E509: diacylglyceryl transferase|unclassified	0.0332860591
+UniRef50_Q0ADU2	0.0332742353
+UniRef50_Q0ADU2|unclassified	0.0332742353
+UniRef50_UPI00036C3C70: hypothetical protein	0.0332724462
+UniRef50_UPI00036C3C70: hypothetical protein|unclassified	0.0332724462
+UniRef50_X5DKT1: Peptidase M23	0.0332649894
+UniRef50_X5DKT1: Peptidase M23|unclassified	0.0332649894
+UniRef50_K0ESE5: Transposase	0.0332618263
+UniRef50_K0ESE5: Transposase|unclassified	0.0332618263
+UniRef50_UPI00046FF9E5: C4-dicarboxylate ABC transporter permease, partial	0.0332615495
+UniRef50_UPI00046FF9E5: C4-dicarboxylate ABC transporter permease, partial|unclassified	0.0332615495
+UniRef50_UPI00036D5FBF: hypothetical protein	0.0332595334
+UniRef50_UPI00036D5FBF: hypothetical protein|unclassified	0.0332595334
+UniRef50_K2KDH3	0.0332530738
+UniRef50_K2KDH3|unclassified	0.0332530738
+UniRef50_UPI0003633DEC: hypothetical protein	0.0332498789
+UniRef50_UPI0003633DEC: hypothetical protein|unclassified	0.0332498789
+UniRef50_UPI00036D5400: hypothetical protein	0.0332467245
+UniRef50_UPI00036D5400: hypothetical protein|unclassified	0.0332467245
+UniRef50_Q2SR96: Adenylosuccinate synthetase	0.0332457072
+UniRef50_Q2SR96: Adenylosuccinate synthetase|unclassified	0.0332457072
+UniRef50_R7Y0Q3: Phosphoglucomutase/phosphomannomutase	0.0332436408
+UniRef50_R7Y0Q3: Phosphoglucomutase/phosphomannomutase|unclassified	0.0332436408
+UniRef50_UPI0003594BA5: PREDICTED: basic proline-rich protein-like	0.0332429645
+UniRef50_UPI0003594BA5: PREDICTED: basic proline-rich protein-like|unclassified	0.0332429645
+UniRef50_UPI000317F473: hypothetical protein	0.0332421682
+UniRef50_UPI000317F473: hypothetical protein|unclassified	0.0332421682
+UniRef50_UPI00046D3D60: hypothetical protein	0.0332390885
+UniRef50_UPI00046D3D60: hypothetical protein|unclassified	0.0332390885
+UniRef50_R4ZHX8: Late competence protein ComGB, access of DNA to ComEA	0.0332383893
+UniRef50_R4ZHX8: Late competence protein ComGB, access of DNA to ComEA|unclassified	0.0332383893
+UniRef50_UPI00031825EE: hypothetical protein	0.0332342447
+UniRef50_UPI00031825EE: hypothetical protein|unclassified	0.0332342447
+UniRef50_A7IK16	0.0332326198
+UniRef50_A7IK16|unclassified	0.0332326198
+UniRef50_L0MFC4	0.0332308534
+UniRef50_L0MFC4|unclassified	0.0332308534
+UniRef50_U4TIA1: Phage portal protein, HK97 family	0.0332225969
+UniRef50_U4TIA1: Phage portal protein, HK97 family|unclassified	0.0332225969
+UniRef50_E1VQ80	0.0332205989
+UniRef50_E1VQ80|unclassified	0.0332205989
+UniRef50_I1AQZ7	0.0332198118
+UniRef50_I1AQZ7|unclassified	0.0332198118
+UniRef50_A3TXF1: TrapT family, dctM subunit, C4-dicarboxylate transport	0.0332197516
+UniRef50_A3TXF1: TrapT family, dctM subunit, C4-dicarboxylate transport|unclassified	0.0332197516
+UniRef50_UPI00016C4560: CheA chemotaxis protein, partial	0.0332154295
+UniRef50_UPI00016C4560: CheA chemotaxis protein, partial|unclassified	0.0332154295
+UniRef50_B0BVB8: ATP synthase subunit alpha	0.0332149065
+UniRef50_B0BVB8: ATP synthase subunit alpha|unclassified	0.0332149065
+UniRef50_UPI00046D2A38: hypothetical protein	0.0332137303
+UniRef50_UPI00046D2A38: hypothetical protein|unclassified	0.0332137303
+UniRef50_X1YCN0	0.0332114395
+UniRef50_X1YCN0|unclassified	0.0332114395
+UniRef50_UPI00037DD3C6: hypothetical protein	0.0332089733
+UniRef50_UPI00037DD3C6: hypothetical protein|unclassified	0.0332089733
+UniRef50_UPI000367D7F1: hypothetical protein	0.0331995474
+UniRef50_UPI000367D7F1: hypothetical protein|unclassified	0.0331995474
+UniRef50_UPI00035D12C3: hypothetical protein	0.0331954943
+UniRef50_UPI00035D12C3: hypothetical protein|unclassified	0.0331954943
+UniRef50_UPI0003B4914A: ABC transporter permease	0.0331852649
+UniRef50_UPI0003B4914A: ABC transporter permease|unclassified	0.0331852649
+UniRef50_F0V9M8	0.0331851568
+UniRef50_F0V9M8|unclassified	0.0331851568
+UniRef50_Q4UK39: UDP-glucose 6-dehydrogenase	0.0331815820
+UniRef50_Q4UK39: UDP-glucose 6-dehydrogenase|unclassified	0.0331815820
+UniRef50_UPI000364CE2F: hypothetical protein	0.0331810737
+UniRef50_UPI000364CE2F: hypothetical protein|unclassified	0.0331810737
+UniRef50_A0A059IN89	0.0331788705
+UniRef50_A0A059IN89|unclassified	0.0331788705
+UniRef50_UPI00047D5868: hypothetical protein	0.0331701964
+UniRef50_UPI00047D5868: hypothetical protein|unclassified	0.0331701964
+UniRef50_UPI00036311C9: hypothetical protein	0.0331662349
+UniRef50_UPI00036311C9: hypothetical protein|unclassified	0.0331662349
+UniRef50_UPI0002B46230: PREDICTED: translation factor GUF1 homolog, chloroplastic-like	0.0331614201
+UniRef50_UPI0002B46230: PREDICTED: translation factor GUF1 homolog, chloroplastic-like|unclassified	0.0331614201
+UniRef50_UPI0003650C71: hypothetical protein	0.0331490384
+UniRef50_UPI0003650C71: hypothetical protein|unclassified	0.0331490384
+UniRef50_A3QEX5	0.0331481578
+UniRef50_A3QEX5|unclassified	0.0331481578
+UniRef50_UPI0003F4A07E: hypothetical protein TREMEDRAFT_69682	0.0331461301
+UniRef50_UPI0003F4A07E: hypothetical protein TREMEDRAFT_69682|unclassified	0.0331461301
+UniRef50_I8QMZ1	0.0331374590
+UniRef50_I8QMZ1|unclassified	0.0331374590
+UniRef50_A7B100	0.0331347024
+UniRef50_A7B100|unclassified	0.0331347024
+UniRef50_UPI00046F7539: hypothetical protein	0.0331208868
+UniRef50_UPI00046F7539: hypothetical protein|unclassified	0.0331208868
+UniRef50_UPI00035D35A7: hypothetical protein	0.0331199106
+UniRef50_UPI00035D35A7: hypothetical protein|unclassified	0.0331199106
+UniRef50_UPI00047A2B6C: permease	0.0331192740
+UniRef50_UPI00047A2B6C: permease|unclassified	0.0331192740
+UniRef50_UPI0003651CAD: hypothetical protein	0.0331187681
+UniRef50_UPI0003651CAD: hypothetical protein|unclassified	0.0331187681
+UniRef50_UPI0004725456: hypothetical protein	0.0331148724
+UniRef50_UPI0004725456: hypothetical protein|unclassified	0.0331148724
+UniRef50_N0CH82: Periplasmic binding protein	0.0331120233
+UniRef50_N0CH82: Periplasmic binding protein|unclassified	0.0331120233
+UniRef50_K8WQA9	0.0331116663
+UniRef50_K8WQA9|unclassified	0.0331116663
+UniRef50_UPI0003B75BCC: polar amino acid ABC transporter permease	0.0331085463
+UniRef50_UPI0003B75BCC: polar amino acid ABC transporter permease|unclassified	0.0331085463
+UniRef50_UPI000174589F: RNA polymerase subunit sigma-54	0.0331042552
+UniRef50_UPI000174589F: RNA polymerase subunit sigma-54|unclassified	0.0331042552
+UniRef50_UPI00047E12F0: hypothetical protein	0.0331031523
+UniRef50_UPI00047E12F0: hypothetical protein|unclassified	0.0331031523
+UniRef50_W8IN66: OmpA family protein	0.0331025014
+UniRef50_W8IN66: OmpA family protein|unclassified	0.0331025014
+UniRef50_UPI0003B2F9E7: 4Fe-4S ferredoxin	0.0330982154
+UniRef50_UPI0003B2F9E7: 4Fe-4S ferredoxin|unclassified	0.0330982154
+UniRef50_UPI0004768E22: hypothetical protein	0.0330962207
+UniRef50_UPI0004768E22: hypothetical protein|unclassified	0.0330962207
+UniRef50_Q088K7	0.0330834419
+UniRef50_Q088K7|unclassified	0.0330834419
+UniRef50_UPI00036D548F: hypothetical protein	0.0330683721
+UniRef50_UPI00036D548F: hypothetical protein|unclassified	0.0330683721
+UniRef50_UPI0004765EE6: hypothetical protein	0.0330674810
+UniRef50_UPI0004765EE6: hypothetical protein|unclassified	0.0330674810
+UniRef50_UPI00037A087C: hypothetical protein	0.0330668394
+UniRef50_UPI00037A087C: hypothetical protein|unclassified	0.0330668394
+UniRef50_UPI00036FB7EB: hypothetical protein	0.0330667870
+UniRef50_UPI00036FB7EB: hypothetical protein|unclassified	0.0330667870
+UniRef50_UPI000161E9D3: 2-methyl branched-chain enoyl CoA reductase isoform I	0.0330664174
+UniRef50_UPI000161E9D3: 2-methyl branched-chain enoyl CoA reductase isoform I|unclassified	0.0330664174
+UniRef50_Z7M8C5: PQQ enzyme repeat family protein	0.0330652083
+UniRef50_Z7M8C5: PQQ enzyme repeat family protein|unclassified	0.0330652083
+UniRef50_A9RYC3: Predicted protein	0.0330641581
+UniRef50_A9RYC3: Predicted protein|unclassified	0.0330641581
+UniRef50_UPI000470F5F1: indole-3-glycerol phosphate synthase	0.0330637494
+UniRef50_UPI000470F5F1: indole-3-glycerol phosphate synthase|unclassified	0.0330637494
+UniRef50_F5Y1K5: 5-methylcytosine-specific restriction enzyme B-like protein	0.0330628748
+UniRef50_F5Y1K5: 5-methylcytosine-specific restriction enzyme B-like protein|unclassified	0.0330628748
+UniRef50_R7Z9E1	0.0330607751
+UniRef50_R7Z9E1|unclassified	0.0330607751
+UniRef50_UPI0003B56F09: ABC transporter	0.0330584900
+UniRef50_UPI0003B56F09: ABC transporter|unclassified	0.0330584900
+UniRef50_A6U7W0	0.0330569308
+UniRef50_A6U7W0|unclassified	0.0330569308
+UniRef50_UPI00037B0E80: hypothetical protein	0.0330562272
+UniRef50_UPI00037B0E80: hypothetical protein|unclassified	0.0330562272
+UniRef50_UPI000368A0E7: hypothetical protein	0.0330557164
+UniRef50_UPI000368A0E7: hypothetical protein|unclassified	0.0330557164
+UniRef50_Q1QUU9: Ribosomal RNA large subunit methyltransferase M	0.0330413453
+UniRef50_Q1QUU9: Ribosomal RNA large subunit methyltransferase M|unclassified	0.0330413453
+UniRef50_UPI00025595DB: hypothetical protein	0.0330323628
+UniRef50_UPI00025595DB: hypothetical protein|unclassified	0.0330323628
+UniRef50_H0DH22	0.0330318637
+UniRef50_H0DH22|unclassified	0.0330318637
+UniRef50_UPI0003745714: hypothetical protein	0.0330316146
+UniRef50_UPI0003745714: hypothetical protein|unclassified	0.0330316146
+UniRef50_Q2C2H2: Ferrichrome-binding protein	0.0330315170
+UniRef50_Q2C2H2: Ferrichrome-binding protein|unclassified	0.0330315170
+UniRef50_X1BNJ6: Marine sediment metagenome DNA, contig: S01H4_S01392 (Fragment)	0.0330296442
+UniRef50_X1BNJ6: Marine sediment metagenome DNA, contig: S01H4_S01392 (Fragment)|unclassified	0.0330296442
+UniRef50_UPI0003C11B56	0.0330273053
+UniRef50_UPI0003C11B56|unclassified	0.0330273053
+UniRef50_J9P0M9	0.0330228436
+UniRef50_J9P0M9|unclassified	0.0330228436
+UniRef50_E3HZL7: Type II secretion system F domain protein	0.0330220365
+UniRef50_E3HZL7: Type II secretion system F domain protein|unclassified	0.0330220365
+UniRef50_UPI000367650F: hypothetical protein	0.0330169630
+UniRef50_UPI000367650F: hypothetical protein|unclassified	0.0330169630
+UniRef50_UPI0003791675: hypothetical protein	0.0330092641
+UniRef50_UPI0003791675: hypothetical protein|unclassified	0.0330092641
+UniRef50_W5PKG0	0.0330068633
+UniRef50_W5PKG0|unclassified	0.0330068633
+UniRef50_D9VJ22	0.0330058523
+UniRef50_D9VJ22|unclassified	0.0330058523
+UniRef50_D5TYY7: IepA	0.0330030839
+UniRef50_D5TYY7: IepA|unclassified	0.0330030839
+UniRef50_UPI00047CAC77: hypothetical protein	0.0330029321
+UniRef50_UPI00047CAC77: hypothetical protein|unclassified	0.0330029321
+UniRef50_F8I5D2	0.0329995893
+UniRef50_F8I5D2|unclassified	0.0329995893
+UniRef50_R5AKD9	0.0329910301
+UniRef50_R5AKD9|unclassified	0.0329910301
+UniRef50_UPI000219524A: glucose-6-phosphate 1-dehydrogenase, partial	0.0329903826
+UniRef50_UPI000219524A: glucose-6-phosphate 1-dehydrogenase, partial|unclassified	0.0329903826
+UniRef50_C7MHD3: YeeE/YedE family protein (DUF395)	0.0329879681
+UniRef50_C7MHD3: YeeE/YedE family protein (DUF395)|unclassified	0.0329879681
+UniRef50_Q01181: Homocitrate synthase	0.0329860770
+UniRef50_Q01181: Homocitrate synthase|unclassified	0.0329860770
+UniRef50_UPI000472F6D6: serine/threonine protein kinase	0.0329829236
+UniRef50_UPI000472F6D6: serine/threonine protein kinase|unclassified	0.0329829236
+UniRef50_D4TVN4: Ankyrin	0.0329801574
+UniRef50_D4TVN4: Ankyrin|unclassified	0.0329801574
+UniRef50_Q01574: Acetyl-coenzyme A synthetase 1	0.0329801562
+UniRef50_Q01574: Acetyl-coenzyme A synthetase 1|unclassified	0.0329801562
+UniRef50_A2C536: Bifunctional pantoate ligase/cytidylate kinase	0.0329747466
+UniRef50_A2C536: Bifunctional pantoate ligase/cytidylate kinase|unclassified	0.0329747466
+UniRef50_UPI000237871E: peptidoglycan-binding protein	0.0329702877
+UniRef50_UPI000237871E: peptidoglycan-binding protein|unclassified	0.0329702877
+UniRef50_UPI0003A79B95: hypothetical protein	0.0329682391
+UniRef50_UPI0003A79B95: hypothetical protein|unclassified	0.0329682391
+UniRef50_UPI00037FEA2A: hypothetical protein	0.0329674016
+UniRef50_UPI00037FEA2A: hypothetical protein|unclassified	0.0329674016
+UniRef50_A5CS50: UDP-N-acetylmuramate--L-alanine ligase	0.0329637003
+UniRef50_A5CS50: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.0329637003
+UniRef50_A7RJ13: Predicted protein	0.0329623035
+UniRef50_A7RJ13: Predicted protein|unclassified	0.0329623035
+UniRef50_UPI0002893A41: S-adenosylmethionine synthetase	0.0329613663
+UniRef50_UPI0002893A41: S-adenosylmethionine synthetase|unclassified	0.0329613663
+UniRef50_UPI0003B69082: lipoate--protein ligase	0.0329564296
+UniRef50_UPI0003B69082: lipoate--protein ligase|unclassified	0.0329564296
+UniRef50_UPI0003B3A7FA: DNA polymerase III	0.0329540640
+UniRef50_UPI0003B3A7FA: DNA polymerase III|unclassified	0.0329540640
+UniRef50_UPI0003B53FC2: relaxase	0.0329521377
+UniRef50_UPI0003B53FC2: relaxase|unclassified	0.0329521377
+UniRef50_UPI00047CC33D: hypothetical protein	0.0329480672
+UniRef50_UPI00047CC33D: hypothetical protein|unclassified	0.0329480672
+UniRef50_UPI00044126D0: pyruvate decarboxylase	0.0329479899
+UniRef50_UPI00044126D0: pyruvate decarboxylase|unclassified	0.0329479899
+UniRef50_UPI000219735B: membrane protein	0.0329469485
+UniRef50_UPI000219735B: membrane protein|unclassified	0.0329469485
+UniRef50_UPI0003B605AF: glucose-6-phosphate 1-dehydrogenase	0.0329415637
+UniRef50_UPI0003B605AF: glucose-6-phosphate 1-dehydrogenase|unclassified	0.0329415637
+UniRef50_Q44598: Anthranilate synthase component 1	0.0329406300
+UniRef50_Q44598: Anthranilate synthase component 1|unclassified	0.0329406300
+UniRef50_U4PVR9	0.0329340113
+UniRef50_U4PVR9|unclassified	0.0329340113
+UniRef50_UPI0003B350BF: acetyl-CoA carboxylase	0.0329337506
+UniRef50_UPI0003B350BF: acetyl-CoA carboxylase|unclassified	0.0329337506
+UniRef50_UPI000375F3A0: hypothetical protein	0.0329288573
+UniRef50_UPI000375F3A0: hypothetical protein|unclassified	0.0329288573
+UniRef50_J4UKC3	0.0329274486
+UniRef50_J4UKC3|unclassified	0.0329274486
+UniRef50_UPI0003612372: hypothetical protein	0.0329258665
+UniRef50_UPI0003612372: hypothetical protein|unclassified	0.0329258665
+UniRef50_Q5CRG5	0.0329253895
+UniRef50_Q5CRG5|unclassified	0.0329253895
+UniRef50_Q6CTX8: Dihydroorotate dehydrogenase (quinone), mitochondrial	0.0329141763
+UniRef50_Q6CTX8: Dihydroorotate dehydrogenase (quinone), mitochondrial|unclassified	0.0329141763
+UniRef50_UPI00046EEE7C: hypothetical protein	0.0329127081
+UniRef50_UPI00046EEE7C: hypothetical protein|unclassified	0.0329127081
+UniRef50_A0A024QCQ2	0.0329094102
+UniRef50_A0A024QCQ2|unclassified	0.0329094102
+UniRef50_UPI0003B45B4C: porphyrin biosynthesis protein HemD	0.0329086064
+UniRef50_UPI0003B45B4C: porphyrin biosynthesis protein HemD|unclassified	0.0329086064
+UniRef50_H0HZL0: OmpA/MotB domain-containing protein	0.0329076481
+UniRef50_H0HZL0: OmpA/MotB domain-containing protein|unclassified	0.0329076481
+UniRef50_F2JN69: SpoVR family protein	0.0329034465
+UniRef50_F2JN69: SpoVR family protein|unclassified	0.0329034465
+UniRef50_W4S3V7: Methanol dehydrogenase heavy chain	0.0329012029
+UniRef50_W4S3V7: Methanol dehydrogenase heavy chain|unclassified	0.0329012029
+UniRef50_Q4WXX9: Pyruvate decarboxylase	0.0328991188
+UniRef50_Q4WXX9: Pyruvate decarboxylase|unclassified	0.0328991188
+UniRef50_UPI00045E9CBF: MFS transporter	0.0328976986
+UniRef50_UPI00045E9CBF: MFS transporter|unclassified	0.0328976986
+UniRef50_UPI00047C9EAC: ABC transporter	0.0328973273
+UniRef50_UPI00047C9EAC: ABC transporter|unclassified	0.0328973273
+UniRef50_G4E422	0.0328970374
+UniRef50_G4E422|unclassified	0.0328970374
+UniRef50_Q2LQN4: Glutamate--tRNA ligase 1	0.0328917246
+UniRef50_Q2LQN4: Glutamate--tRNA ligase 1|unclassified	0.0328917246
+UniRef50_U6MUC3	0.0328895501
+UniRef50_U6MUC3|unclassified	0.0328895501
+UniRef50_Q7TVV6: 2-isopropylmalate synthase	0.0328894283
+UniRef50_Q7TVV6: 2-isopropylmalate synthase|unclassified	0.0328894283
+UniRef50_UPI000479DB52: hypothetical protein	0.0328878677
+UniRef50_UPI000479DB52: hypothetical protein|unclassified	0.0328878677
+UniRef50_UPI000360E650: hypothetical protein	0.0328807006
+UniRef50_UPI000360E650: hypothetical protein|unclassified	0.0328807006
+UniRef50_Q5XDJ2: Bifunctional protein GlmU	0.0328791874
+UniRef50_Q5XDJ2: Bifunctional protein GlmU|unclassified	0.0328791874
+UniRef50_UPI00036F39E5: hypothetical protein	0.0328726940
+UniRef50_UPI00036F39E5: hypothetical protein|unclassified	0.0328726940
+UniRef50_UPI0000E0EE96: pilus modification protein PilQ	0.0328562941
+UniRef50_UPI0000E0EE96: pilus modification protein PilQ|unclassified	0.0328562941
+UniRef50_W0RJM9: Beta-lactamase domain protein	0.0328541953
+UniRef50_W0RJM9: Beta-lactamase domain protein|unclassified	0.0328541953
+UniRef50_P00329: Alcohol dehydrogenase 1	0.0328521641
+UniRef50_P00329: Alcohol dehydrogenase 1|unclassified	0.0328521641
+UniRef50_A1WSS5	0.0328511005
+UniRef50_A1WSS5|unclassified	0.0328511005
+UniRef50_Q74L61: Energy-coupling factor transporter ATP-binding protein EcfA2	0.0328489158
+UniRef50_Q74L61: Energy-coupling factor transporter ATP-binding protein EcfA2|unclassified	0.0328489158
+UniRef50_W5X4G3: Valine--tRNA ligase	0.0328473146
+UniRef50_W5X4G3: Valine--tRNA ligase|unclassified	0.0328473146
+UniRef50_UPI000470C805: hypothetical protein	0.0328437497
+UniRef50_UPI000470C805: hypothetical protein|unclassified	0.0328437497
+UniRef50_A0A022G8Z5: Gamma-glutamyltransferase	0.0328433086
+UniRef50_A0A022G8Z5: Gamma-glutamyltransferase|unclassified	0.0328433086
+UniRef50_UPI0003B57167: hypothetical protein	0.0328397974
+UniRef50_UPI0003B57167: hypothetical protein|unclassified	0.0328397974
+UniRef50_UPI0003782160: hypothetical protein	0.0328326462
+UniRef50_UPI0003782160: hypothetical protein|unclassified	0.0328326462
+UniRef50_UPI0003A0EB32: 3-ketoacyl-CoA thiolase	0.0328286028
+UniRef50_UPI0003A0EB32: 3-ketoacyl-CoA thiolase|unclassified	0.0328286028
+UniRef50_A1WY69: DNA polymerase IV	0.0328244146
+UniRef50_A1WY69: DNA polymerase IV|unclassified	0.0328244146
+UniRef50_UPI0001CB98DC: PREDICTED: high affinity cationic amino acid transporter 1-like	0.0328240923
+UniRef50_UPI0001CB98DC: PREDICTED: high affinity cationic amino acid transporter 1-like|unclassified	0.0328240923
+UniRef50_G1WT50	0.0328231381
+UniRef50_G1WT50|unclassified	0.0328231381
+UniRef50_K8B8M6	0.0328184941
+UniRef50_K8B8M6|unclassified	0.0328184941
+UniRef50_UPI00037A780A: hypothetical protein	0.0328179423
+UniRef50_UPI00037A780A: hypothetical protein|unclassified	0.0328179423
+UniRef50_G0RYM4: Putative ars binding protein	0.0328165082
+UniRef50_G0RYM4: Putative ars binding protein|unclassified	0.0328165082
+UniRef50_UPI0004706CF3: hypothetical protein	0.0328149252
+UniRef50_UPI0004706CF3: hypothetical protein|unclassified	0.0328149252
+UniRef50_UPI0003B57A01: fatty-acid--CoA ligase	0.0328141454
+UniRef50_UPI0003B57A01: fatty-acid--CoA ligase|unclassified	0.0328141454
+UniRef50_A5GFZ6: Adenylyltransferase and sulfurtransferase MOCS3	0.0328117084
+UniRef50_A5GFZ6: Adenylyltransferase and sulfurtransferase MOCS3|unclassified	0.0328117084
+UniRef50_B0U7L9	0.0328060317
+UniRef50_B0U7L9|unclassified	0.0328060317
+UniRef50_UPI00037DA3DC: hypothetical protein	0.0328001256
+UniRef50_UPI00037DA3DC: hypothetical protein|unclassified	0.0328001256
+UniRef50_A9KQI8: UDP-N-acetylmuramate--L-alanine ligase	0.0327930383
+UniRef50_A9KQI8: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.0327930383
+UniRef50_A4WYD4	0.0327880259
+UniRef50_A4WYD4|unclassified	0.0327880259
+UniRef50_P31040: Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial	0.0327872405
+UniRef50_P31040: Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial|unclassified	0.0327872405
+UniRef50_UPI00037A69CE: hypothetical protein	0.0327864292
+UniRef50_UPI00037A69CE: hypothetical protein|unclassified	0.0327864292
+UniRef50_UPI0003630D0B: hypothetical protein	0.0327816937
+UniRef50_UPI0003630D0B: hypothetical protein|unclassified	0.0327816937
+UniRef50_UPI000474647A: diguanylate cyclase, partial	0.0327777485
+UniRef50_UPI000474647A: diguanylate cyclase, partial|unclassified	0.0327777485
+UniRef50_Q128G9: Transglutaminase-like protein	0.0327739170
+UniRef50_Q128G9: Transglutaminase-like protein|unclassified	0.0327739170
+UniRef50_Q42806: Pyruvate kinase, cytosolic isozyme	0.0327722869
+UniRef50_Q42806: Pyruvate kinase, cytosolic isozyme|unclassified	0.0327722869
+UniRef50_Q88R32: L-carnitine dehydrogenase	0.0327694603
+UniRef50_Q88R32: L-carnitine dehydrogenase|unclassified	0.0327694603
+UniRef50_B2A234	0.0327690933
+UniRef50_B2A234|unclassified	0.0327690933
+UniRef50_R4M9P9	0.0327689579
+UniRef50_R4M9P9|unclassified	0.0327689579
+UniRef50_Q01662: Methionine aminopeptidase 1	0.0327670166
+UniRef50_Q01662: Methionine aminopeptidase 1|unclassified	0.0327670166
+UniRef50_Q0TPG6: Cyclic pyranopterin monophosphate synthase	0.0327654179
+UniRef50_Q0TPG6: Cyclic pyranopterin monophosphate synthase|unclassified	0.0327654179
+UniRef50_E3YE59	0.0327611286
+UniRef50_E3YE59|unclassified	0.0327611286
+UniRef50_UPI00041CBDDB: phosphoenolpyruvate synthase	0.0327586036
+UniRef50_UPI00041CBDDB: phosphoenolpyruvate synthase|unclassified	0.0327586036
+UniRef50_E3NRJ0	0.0327576424
+UniRef50_E3NRJ0|unclassified	0.0327576424
+UniRef50_E9H720	0.0327559536
+UniRef50_E9H720|unclassified	0.0327559536
+UniRef50_UPI00047BB328: phosphoenolpyruvate carboxykinase	0.0327556139
+UniRef50_UPI00047BB328: phosphoenolpyruvate carboxykinase|unclassified	0.0327556139
+UniRef50_UPI000366546F: hypothetical protein, partial	0.0327538886
+UniRef50_UPI000366546F: hypothetical protein, partial|unclassified	0.0327538886
+UniRef50_UPI0004541717: PREDICTED: LOW QUALITY PROTEIN: zinc fingers and homeoboxes protein 1	0.0327466014
+UniRef50_UPI0004541717: PREDICTED: LOW QUALITY PROTEIN: zinc fingers and homeoboxes protein 1|unclassified	0.0327466014
+UniRef50_O74548: Probable acetylornithine aminotransferase, mitochondrial	0.0327387933
+UniRef50_O74548: Probable acetylornithine aminotransferase, mitochondrial|unclassified	0.0327387933
+UniRef50_UPI00046F1189: acriflavine resistance protein B	0.0327334274
+UniRef50_UPI00046F1189: acriflavine resistance protein B|unclassified	0.0327334274
+UniRef50_A9GFW6: Histidine ammonia-lyase	0.0327298325
+UniRef50_A9GFW6: Histidine ammonia-lyase|unclassified	0.0327298325
+UniRef50_Q89B41: ATP synthase subunit alpha	0.0327295356
+UniRef50_Q89B41: ATP synthase subunit alpha|unclassified	0.0327295356
+UniRef50_Q67PM0: Putative permease	0.0327292707
+UniRef50_Q67PM0: Putative permease|unclassified	0.0327292707
+UniRef50_A1D855: Lipoyl synthase, mitochondrial	0.0327266976
+UniRef50_A1D855: Lipoyl synthase, mitochondrial|unclassified	0.0327266976
+UniRef50_F0Y8S7	0.0327240232
+UniRef50_F0Y8S7|unclassified	0.0327240232
+UniRef50_A0A037ZNE7	0.0327240101
+UniRef50_A0A037ZNE7|unclassified	0.0327240101
+UniRef50_UPI0002FFA8D9: hypothetical protein	0.0327236119
+UniRef50_UPI0002FFA8D9: hypothetical protein|unclassified	0.0327236119
+UniRef50_UPI0003B5C426: histidinol dehydrogenase	0.0327234173
+UniRef50_UPI0003B5C426: histidinol dehydrogenase|unclassified	0.0327234173
+UniRef50_S9RVB4: Gene Transfer Agent NlpC/P60 family peptidase	0.0327210579
+UniRef50_S9RVB4: Gene Transfer Agent NlpC/P60 family peptidase|unclassified	0.0327210579
+UniRef50_A7N4E5: Membrane protein	0.0327176422
+UniRef50_A7N4E5: Membrane protein|unclassified	0.0327176422
+UniRef50_C1F2D1: NAD-specific glutamate dehydrogenase domain protein	0.0327090702
+UniRef50_C1F2D1: NAD-specific glutamate dehydrogenase domain protein|unclassified	0.0327090702
+UniRef50_UPI0003476CE2: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0327068756
+UniRef50_UPI0003476CE2: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0327068756
+UniRef50_UPI0003B57755: DNA polymerase III subunit alpha	0.0327013536
+UniRef50_UPI0003B57755: DNA polymerase III subunit alpha|unclassified	0.0327013536
+UniRef50_P42954: Teichoic acids export ATP-binding protein TagH	0.0327002907
+UniRef50_P42954: Teichoic acids export ATP-binding protein TagH|unclassified	0.0327002907
+UniRef50_UPI0004677BA9: arginase	0.0326971011
+UniRef50_UPI0004677BA9: arginase|unclassified	0.0326971011
+UniRef50_UPI0004654FFF: histidine kinase, partial	0.0326964405
+UniRef50_UPI0004654FFF: histidine kinase, partial|unclassified	0.0326964405
+UniRef50_Q3M8C8: Lysine--tRNA ligase	0.0326887729
+UniRef50_Q3M8C8: Lysine--tRNA ligase|unclassified	0.0326887729
+UniRef50_R5TEH1	0.0326878063
+UniRef50_R5TEH1|unclassified	0.0326878063
+UniRef50_O58182	0.0326858857
+UniRef50_O58182|unclassified	0.0326858857
+UniRef50_UPI00047E74DA: hypothetical protein	0.0326801019
+UniRef50_UPI00047E74DA: hypothetical protein|unclassified	0.0326801019
+UniRef50_UPI0004636051: hypothetical protein	0.0326774502
+UniRef50_UPI0004636051: hypothetical protein|unclassified	0.0326774502
+UniRef50_I1ATU4: Diguanylate cyclase/phosphodiesterase	0.0326772432
+UniRef50_I1ATU4: Diguanylate cyclase/phosphodiesterase|unclassified	0.0326772432
+UniRef50_UPI000479C7A6: quinoprotein glucose dehydrogenase	0.0326745257
+UniRef50_UPI000479C7A6: quinoprotein glucose dehydrogenase|unclassified	0.0326745257
+UniRef50_UPI00040C0F6B: hypothetical protein	0.0326736079
+UniRef50_UPI00040C0F6B: hypothetical protein|unclassified	0.0326736079
+UniRef50_UPI0003820E23: hypothetical protein	0.0326652474
+UniRef50_UPI0003820E23: hypothetical protein|unclassified	0.0326652474
+UniRef50_D2CJC4: Putative LSD1-like protein	0.0326640528
+UniRef50_D2CJC4: Putative LSD1-like protein|unclassified	0.0326640528
+UniRef50_UPI0003DF74AA: PREDICTED: zinc finger protein 608-like, partial	0.0326636548
+UniRef50_UPI0003DF74AA: PREDICTED: zinc finger protein 608-like, partial|unclassified	0.0326636548
+UniRef50_F3KSI3	0.0326609200
+UniRef50_F3KSI3|unclassified	0.0326609200
+UniRef50_UPI000287F1F4: hypothetical protein	0.0326599832
+UniRef50_UPI000287F1F4: hypothetical protein|unclassified	0.0326599832
+UniRef50_UPI0003608CB6: MULTISPECIES: hypothetical protein	0.0326524385
+UniRef50_UPI0003608CB6: MULTISPECIES: hypothetical protein|unclassified	0.0326524385
+UniRef50_UPI0004439963: PREDICTED: branched-chain-amino-acid aminotransferase, cytosolic-like isoform X1	0.0326510825
+UniRef50_UPI0004439963: PREDICTED: branched-chain-amino-acid aminotransferase, cytosolic-like isoform X1|unclassified	0.0326510825
+UniRef50_UPI000306D363: hypothetical protein	0.0326508644
+UniRef50_UPI000306D363: hypothetical protein|unclassified	0.0326508644
+UniRef50_UPI00046F970C: hypothetical protein	0.0326506631
+UniRef50_UPI00046F970C: hypothetical protein|unclassified	0.0326506631
+UniRef50_B3EQY1: ABC-type phosphate transport system periplasmic component-like protein	0.0326475699
+UniRef50_B3EQY1: ABC-type phosphate transport system periplasmic component-like protein|unclassified	0.0326475699
+UniRef50_UPI000372834D: hypothetical protein	0.0326430699
+UniRef50_UPI000372834D: hypothetical protein|unclassified	0.0326430699
+UniRef50_UPI00036B82E0: hypothetical protein	0.0326417716
+UniRef50_UPI00036B82E0: hypothetical protein|unclassified	0.0326417716
+UniRef50_Q58776: Carbamoyl-phosphate synthase large chain, C-terminal section	0.0326390622
+UniRef50_Q58776: Carbamoyl-phosphate synthase large chain, C-terminal section|unclassified	0.0326390622
+UniRef50_G7JTC7: Tir-nbs-lrr resistance protein (Fragment)	0.0326372509
+UniRef50_G7JTC7: Tir-nbs-lrr resistance protein (Fragment)|unclassified	0.0326372509
+UniRef50_C5YW89	0.0326370979
+UniRef50_C5YW89|unclassified	0.0326370979
+UniRef50_Q1QAW5: Lysine--tRNA ligase	0.0326342972
+UniRef50_Q1QAW5: Lysine--tRNA ligase|unclassified	0.0326342972
+UniRef50_UPI0003840004: PREDICTED: adenylosuccinate synthetase isozyme 1-like isoform X3	0.0326319224
+UniRef50_UPI0003840004: PREDICTED: adenylosuccinate synthetase isozyme 1-like isoform X3|unclassified	0.0326319224
+UniRef50_P50547: CTP synthase 1 (Fragment)	0.0326313023
+UniRef50_P50547: CTP synthase 1 (Fragment)|unclassified	0.0326313023
+UniRef50_A8LQ61	0.0326267284
+UniRef50_A8LQ61|unclassified	0.0326267284
+UniRef50_UPI0003B50A34: DNA polymerase IV, partial	0.0326266771
+UniRef50_UPI0003B50A34: DNA polymerase IV, partial|unclassified	0.0326266771
+UniRef50_A0A034U7M5	0.0326238627
+UniRef50_A0A034U7M5|unclassified	0.0326238627
+UniRef50_UPI00046350E3: DNA primase	0.0326236977
+UniRef50_UPI00046350E3: DNA primase|unclassified	0.0326236977
+UniRef50_F9NG90: Conserved domain protein	0.0326232257
+UniRef50_F9NG90: Conserved domain protein|unclassified	0.0326232257
+UniRef50_Q63MT0: L-carnitine dehydrogenase	0.0326221328
+UniRef50_Q63MT0: L-carnitine dehydrogenase|unclassified	0.0326221328
+UniRef50_UPI00035FC970: hypothetical protein	0.0326175091
+UniRef50_UPI00035FC970: hypothetical protein|unclassified	0.0326175091
+UniRef50_UPI0003B6B26D: heme ABC transporter ATP-binding protein	0.0326082162
+UniRef50_UPI0003B6B26D: heme ABC transporter ATP-binding protein|unclassified	0.0326082162
+UniRef50_M1IHV7	0.0326051116
+UniRef50_M1IHV7|unclassified	0.0326051116
+UniRef50_UPI000468A201: hypothetical protein	0.0326015111
+UniRef50_UPI000468A201: hypothetical protein|unclassified	0.0326015111
+UniRef50_R7BS74	0.0326008420
+UniRef50_R7BS74|unclassified	0.0326008420
+UniRef50_UPI00036A23E3: hypothetical protein	0.0326007105
+UniRef50_UPI00036A23E3: hypothetical protein|unclassified	0.0326007105
+UniRef50_I7T655: Phosphate transport system permease protein PstC (Fragment)	0.0325996166
+UniRef50_I7T655: Phosphate transport system permease protein PstC (Fragment)|unclassified	0.0325996166
+UniRef50_UPI0003B30236: 3-oxoacyl-ACP synthase	0.0325971853
+UniRef50_UPI0003B30236: 3-oxoacyl-ACP synthase|unclassified	0.0325971853
+UniRef50_Q04Q03: ATP-dependent zinc metalloprotease FtsH	0.0325933440
+UniRef50_Q04Q03: ATP-dependent zinc metalloprotease FtsH|unclassified	0.0325933440
+UniRef50_UPI000369CE77: hypothetical protein	0.0325925480
+UniRef50_UPI000369CE77: hypothetical protein|unclassified	0.0325925480
+UniRef50_C6NXJ2: [NiFe] hydrogenase metallocenter assembly protein HypF	0.0325888279
+UniRef50_C6NXJ2: [NiFe] hydrogenase metallocenter assembly protein HypF|unclassified	0.0325888279
+UniRef50_A1WSK3: Probable cytosol aminopeptidase	0.0325882697
+UniRef50_A1WSK3: Probable cytosol aminopeptidase|unclassified	0.0325882697
+UniRef50_Q313W4: Bifunctional protein GlmU	0.0325842660
+UniRef50_Q313W4: Bifunctional protein GlmU|unclassified	0.0325842660
+UniRef50_R7JN15: Peptidase M23 family	0.0325842222
+UniRef50_R7JN15: Peptidase M23 family|unclassified	0.0325842222
+UniRef50_O83618: Asparagine--tRNA ligase	0.0325821407
+UniRef50_O83618: Asparagine--tRNA ligase|unclassified	0.0325821407
+UniRef50_L7N1B9	0.0325798454
+UniRef50_L7N1B9|unclassified	0.0325798454
+UniRef50_B5YHS4: Bifunctional protein GlmU	0.0325780898
+UniRef50_B5YHS4: Bifunctional protein GlmU|unclassified	0.0325780898
+UniRef50_Q5FL50: Phosphoglycerate kinase	0.0325740946
+UniRef50_Q5FL50: Phosphoglycerate kinase|unclassified	0.0325740946
+UniRef50_UPI0004717B00: hypothetical protein	0.0325711543
+UniRef50_UPI0004717B00: hypothetical protein|unclassified	0.0325711543
+UniRef50_Q43768: Glutamate--tRNA ligase, chloroplastic/mitochondrial	0.0325710588
+UniRef50_Q43768: Glutamate--tRNA ligase, chloroplastic/mitochondrial|unclassified	0.0325710588
+UniRef50_T1I348	0.0325701481
+UniRef50_T1I348|unclassified	0.0325701481
+UniRef50_Q98QH1: Lysine--tRNA ligase 1	0.0325682512
+UniRef50_Q98QH1: Lysine--tRNA ligase 1|unclassified	0.0325682512
+UniRef50_F8I0C3	0.0325596415
+UniRef50_F8I0C3|unclassified	0.0325596415
+UniRef50_W4G3T3	0.0325596116
+UniRef50_W4G3T3|unclassified	0.0325596116
+UniRef50_Q3JHP8	0.0325545822
+UniRef50_Q3JHP8|unclassified	0.0325545822
+UniRef50_UPI00047806EC: hypothetical protein	0.0325543599
+UniRef50_UPI00047806EC: hypothetical protein|unclassified	0.0325543599
+UniRef50_UPI0003330D5A	0.0325492107
+UniRef50_UPI0003330D5A|unclassified	0.0325492107
+UniRef50_UPI00034BB763: hypothetical protein	0.0325472227
+UniRef50_UPI00034BB763: hypothetical protein|unclassified	0.0325472227
+UniRef50_H5UW74	0.0325430823
+UniRef50_H5UW74|unclassified	0.0325430823
+UniRef50_E5Y1I6: EvpB/family type VI secretion protein	0.0325416433
+UniRef50_E5Y1I6: EvpB/family type VI secretion protein|unclassified	0.0325416433
+UniRef50_UPI0003746324: hypothetical protein	0.0325395481
+UniRef50_UPI0003746324: hypothetical protein|unclassified	0.0325395481
+UniRef50_UPI0002F777B5: hypothetical protein	0.0325379011
+UniRef50_UPI0002F777B5: hypothetical protein|unclassified	0.0325379011
+UniRef50_V9VSG3: Membrane protein	0.0325362230
+UniRef50_V9VSG3: Membrane protein|unclassified	0.0325362230
+UniRef50_Q6SSE6: Plus agglutinin	0.0325319421
+UniRef50_Q6SSE6: Plus agglutinin|unclassified	0.0325319421
+UniRef50_UPI0003B412E9: ribonuclease R	0.0325289115
+UniRef50_UPI0003B412E9: ribonuclease R|unclassified	0.0325289115
+UniRef50_K7E2Z4	0.0325283034
+UniRef50_K7E2Z4|unclassified	0.0325283034
+UniRef50_UPI00047A3E82: ATP-dependent DNA helicase	0.0325233194
+UniRef50_UPI00047A3E82: ATP-dependent DNA helicase|unclassified	0.0325233194
+UniRef50_G3PHI5	0.0325206979
+UniRef50_G3PHI5|unclassified	0.0325206979
+UniRef50_A3NTT3	0.0325196193
+UniRef50_A3NTT3|unclassified	0.0325196193
+UniRef50_UPI0003796841: hypothetical protein	0.0325195771
+UniRef50_UPI0003796841: hypothetical protein|unclassified	0.0325195771
+UniRef50_UPI000463DD92: nitrate ABC transporter permease	0.0325120465
+UniRef50_UPI000463DD92: nitrate ABC transporter permease|unclassified	0.0325120465
+UniRef50_UPI0000E0E8A2: FolC bifunctional protein	0.0325116546
+UniRef50_UPI0000E0E8A2: FolC bifunctional protein|unclassified	0.0325116546
+UniRef50_Q8W2B8: Serine acetyltransferase 4	0.0325042932
+UniRef50_Q8W2B8: Serine acetyltransferase 4|unclassified	0.0325042932
+UniRef50_E2LVY7	0.0325005534
+UniRef50_E2LVY7|unclassified	0.0325005534
+UniRef50_UPI000472A2A5: hypothetical protein	0.0324986970
+UniRef50_UPI000472A2A5: hypothetical protein|unclassified	0.0324986970
+UniRef50_UPI000289E4F2: alcohol dehydrogenase	0.0324904326
+UniRef50_UPI000289E4F2: alcohol dehydrogenase|unclassified	0.0324904326
+UniRef50_UPI0003F0D80F	0.0324887496
+UniRef50_UPI0003F0D80F|unclassified	0.0324887496
+UniRef50_Q7XQ58: OSJNBb0046P18.2 protein	0.0324886111
+UniRef50_Q7XQ58: OSJNBb0046P18.2 protein|unclassified	0.0324886111
+UniRef50_UPI0004279983: hypothetical protein	0.0324884396
+UniRef50_UPI0004279983: hypothetical protein|unclassified	0.0324884396
+UniRef50_UPI00035983D7: PREDICTED: pecanex-like protein 4-like	0.0324861710
+UniRef50_UPI00035983D7: PREDICTED: pecanex-like protein 4-like|unclassified	0.0324861710
+UniRef50_Q1QA44: Glutamate 5-kinase	0.0324850003
+UniRef50_Q1QA44: Glutamate 5-kinase|unclassified	0.0324850003
+UniRef50_E6LF59: ABC transporter substrate binding protein	0.0324846604
+UniRef50_E6LF59: ABC transporter substrate binding protein|unclassified	0.0324846604
+UniRef50_R5DI97: CobW/P47K family protein	0.0324805646
+UniRef50_R5DI97: CobW/P47K family protein|unclassified	0.0324805646
+UniRef50_UPI000289B3D0: cell division protein FtsK	0.0324793414
+UniRef50_UPI000289B3D0: cell division protein FtsK|unclassified	0.0324793414
+UniRef50_N6UVU0	0.0324787479
+UniRef50_N6UVU0|unclassified	0.0324787479
+UniRef50_A3JS25	0.0324767563
+UniRef50_A3JS25|unclassified	0.0324767563
+UniRef50_UPI000475D4DC: hypothetical protein	0.0324762845
+UniRef50_UPI000475D4DC: hypothetical protein|unclassified	0.0324762845
+UniRef50_UPI0003EBF641: PREDICTED: serine/arginine repetitive matrix protein 2-like	0.0324754214
+UniRef50_UPI0003EBF641: PREDICTED: serine/arginine repetitive matrix protein 2-like|unclassified	0.0324754214
+UniRef50_UPI00036E39FC: hypothetical protein	0.0324612661
+UniRef50_UPI00036E39FC: hypothetical protein|unclassified	0.0324612661
+UniRef50_UPI0003B35329: transporter	0.0324599271
+UniRef50_UPI0003B35329: transporter|unclassified	0.0324599271
+UniRef50_P9WHP0: Phosphate acetyltransferase	0.0324567652
+UniRef50_P9WHP0: Phosphate acetyltransferase|unclassified	0.0324567652
+UniRef50_UPI00046F9918: MFS transporter	0.0324523151
+UniRef50_UPI00046F9918: MFS transporter|unclassified	0.0324523151
+UniRef50_O95396: Adenylyltransferase and sulfurtransferase MOCS3	0.0324460504
+UniRef50_O95396: Adenylyltransferase and sulfurtransferase MOCS3|unclassified	0.0324460504
+UniRef50_UPI0003B6FDF8: carbamoyl phosphate synthase large subunit, partial	0.0324452386
+UniRef50_UPI0003B6FDF8: carbamoyl phosphate synthase large subunit, partial|unclassified	0.0324452386
+UniRef50_M4ZCT2: Periplasmic-binding component of ABC superfamily	0.0324437351
+UniRef50_M4ZCT2: Periplasmic-binding component of ABC superfamily|unclassified	0.0324437351
+UniRef50_A9B7C0: Beta-lactamase domain protein	0.0324401595
+UniRef50_A9B7C0: Beta-lactamase domain protein|unclassified	0.0324401595
+UniRef50_UPI00036FA5B3: hypothetical protein	0.0324386427
+UniRef50_UPI00036FA5B3: hypothetical protein|unclassified	0.0324386427
+UniRef50_R1EQ17	0.0324364939
+UniRef50_R1EQ17|unclassified	0.0324364939
+UniRef50_Q98PQ3: CTP synthase	0.0324316775
+UniRef50_Q98PQ3: CTP synthase|unclassified	0.0324316775
+UniRef50_UPI000471F325: hypothetical protein	0.0324301334
+UniRef50_UPI000471F325: hypothetical protein|unclassified	0.0324301334
+UniRef50_U6L6F4	0.0324284882
+UniRef50_U6L6F4|unclassified	0.0324284882
+UniRef50_UPI0003B3943C: xanthine/CO dehydrogenase maturation protein	0.0324281306
+UniRef50_UPI0003B3943C: xanthine/CO dehydrogenase maturation protein|unclassified	0.0324281306
+UniRef50_R6F6X3: Putative anti-sigma factor	0.0324260407
+UniRef50_R6F6X3: Putative anti-sigma factor|unclassified	0.0324260407
+UniRef50_UPI0002492F9D: acetylornithine deacetylase	0.0324232362
+UniRef50_UPI0002492F9D: acetylornithine deacetylase|unclassified	0.0324232362
+UniRef50_C2WMG4: Phytoene dehydrogenase enzyme	0.0324189042
+UniRef50_C2WMG4: Phytoene dehydrogenase enzyme|unclassified	0.0324189042
+UniRef50_UPI0004183796: MULTISPECIES: lipocalin	0.0324179433
+UniRef50_UPI0004183796: MULTISPECIES: lipocalin|unclassified	0.0324179433
+UniRef50_UPI000255B859: molybdopterin biosynthesis protein MoeA	0.0324172780
+UniRef50_UPI000255B859: molybdopterin biosynthesis protein MoeA|unclassified	0.0324172780
+UniRef50_UPI0003B6096B: DNA topoisomerase III	0.0324166333
+UniRef50_UPI0003B6096B: DNA topoisomerase III|unclassified	0.0324166333
+UniRef50_A6LGA2: Leucine--tRNA ligase	0.0324161864
+UniRef50_A6LGA2: Leucine--tRNA ligase|unclassified	0.0324161864
+UniRef50_UPI000316BE92: hypothetical protein	0.0324120586
+UniRef50_UPI000316BE92: hypothetical protein|unclassified	0.0324120586
+UniRef50_UPI000470AA89: excinuclease ABC subunit C	0.0324115555
+UniRef50_UPI000470AA89: excinuclease ABC subunit C|unclassified	0.0324115555
+UniRef50_P51844: Pyruvate decarboxylase	0.0324102154
+UniRef50_P51844: Pyruvate decarboxylase|unclassified	0.0324102154
+UniRef50_UPI00037645AE: hypothetical protein	0.0324042343
+UniRef50_UPI00037645AE: hypothetical protein|unclassified	0.0324042343
+UniRef50_UPI00041E0ACA: hypothetical protein	0.0324041356
+UniRef50_UPI00041E0ACA: hypothetical protein|unclassified	0.0324041356
+UniRef50_A5CD00: Arginine--tRNA ligase	0.0324015877
+UniRef50_A5CD00: Arginine--tRNA ligase|unclassified	0.0324015877
+UniRef50_UPI0003FD6D14: preprotein translocase subunit SecY	0.0324004950
+UniRef50_UPI0003FD6D14: preprotein translocase subunit SecY|unclassified	0.0324004950
+UniRef50_UPI00036CCC4D: hypothetical protein	0.0323992717
+UniRef50_UPI00036CCC4D: hypothetical protein|unclassified	0.0323992717
+UniRef50_UPI0003619D8E: hypothetical protein	0.0323962167
+UniRef50_UPI0003619D8E: hypothetical protein|unclassified	0.0323962167
+UniRef50_UPI00035D925C: hypothetical protein	0.0323929950
+UniRef50_UPI00035D925C: hypothetical protein|unclassified	0.0323929950
+UniRef50_UPI0002F7BA5C: hypothetical protein	0.0323924236
+UniRef50_UPI0002F7BA5C: hypothetical protein|unclassified	0.0323924236
+UniRef50_Q9CEF5: Probable serine/threonine-protein kinase PknB	0.0323921223
+UniRef50_Q9CEF5: Probable serine/threonine-protein kinase PknB|unclassified	0.0323921223
+UniRef50_Q3BY50	0.0323853867
+UniRef50_Q3BY50|unclassified	0.0323853867
+UniRef50_B3MHL1: GF12260	0.0323844333
+UniRef50_B3MHL1: GF12260|unclassified	0.0323844333
+UniRef50_UPI0003C7486F: NUDIX hydrolase	0.0323826192
+UniRef50_UPI0003C7486F: NUDIX hydrolase|unclassified	0.0323826192
+UniRef50_D7DKG0: Inner membrane CreD family protein	0.0323790482
+UniRef50_D7DKG0: Inner membrane CreD family protein|unclassified	0.0323790482
+UniRef50_UPI000371FF51: hypothetical protein	0.0323783143
+UniRef50_UPI000371FF51: hypothetical protein|unclassified	0.0323783143
+UniRef50_UPI0003B40221: aminotransferase	0.0323747005
+UniRef50_UPI0003B40221: aminotransferase|unclassified	0.0323747005
+UniRef50_R5V3M4	0.0323746504
+UniRef50_R5V3M4|unclassified	0.0323746504
+UniRef50_UPI0002FF51AC: hypothetical protein	0.0323742154
+UniRef50_UPI0002FF51AC: hypothetical protein|unclassified	0.0323742154
+UniRef50_W7X462	0.0323720318
+UniRef50_W7X462|unclassified	0.0323720318
+UniRef50_UPI00036616D0: hypothetical protein	0.0323714868
+UniRef50_UPI00036616D0: hypothetical protein|unclassified	0.0323714868
+UniRef50_UPI00029A3EAA: serine/threonine protein kinase	0.0323675274
+UniRef50_UPI00029A3EAA: serine/threonine protein kinase|unclassified	0.0323675274
+UniRef50_Q8D2L6: Tyrosine--tRNA ligase	0.0323673394
+UniRef50_Q8D2L6: Tyrosine--tRNA ligase|unclassified	0.0323673394
+UniRef50_D5XCB8	0.0323671974
+UniRef50_D5XCB8|unclassified	0.0323671974
+UniRef50_UPI0004693717: hypothetical protein	0.0323609888
+UniRef50_UPI0004693717: hypothetical protein|unclassified	0.0323609888
+UniRef50_W4PCG0: Transketolase	0.0323590475
+UniRef50_W4PCG0: Transketolase|unclassified	0.0323590475
+UniRef50_O29777: Probable copper-exporting P-type ATPase A	0.0323569454
+UniRef50_O29777: Probable copper-exporting P-type ATPase A|unclassified	0.0323569454
+UniRef50_UPI00042BBC31: PREDICTED: inosine-5''''-monophosphate dehydrogenase 1-like	0.0323550612
+UniRef50_UPI00042BBC31: PREDICTED: inosine-5''''-monophosphate dehydrogenase 1-like|unclassified	0.0323550612
+UniRef50_UPI0003A068C7: sodium/hydrogen exchanger	0.0323479877
+UniRef50_UPI0003A068C7: sodium/hydrogen exchanger|unclassified	0.0323479877
+UniRef50_UPI00035E73BE: hypothetical protein	0.0323477798
+UniRef50_UPI00035E73BE: hypothetical protein|unclassified	0.0323477798
+UniRef50_UPI0003A868DA: histidine kinase	0.0323421261
+UniRef50_UPI0003A868DA: histidine kinase|unclassified	0.0323421261
+UniRef50_W6R6D1	0.0323360032
+UniRef50_W6R6D1|unclassified	0.0323360032
+UniRef50_UPI00038259CD: hypothetical protein	0.0323307796
+UniRef50_UPI00038259CD: hypothetical protein|unclassified	0.0323307796
+UniRef50_UPI000370CEBD: hypothetical protein	0.0323291547
+UniRef50_UPI000370CEBD: hypothetical protein|unclassified	0.0323291547
+UniRef50_UPI0002FD2656: hypothetical protein	0.0323273491
+UniRef50_UPI0002FD2656: hypothetical protein|unclassified	0.0323273491
+UniRef50_Q2NB77: Blue-light-activated histidine kinase 2	0.0323228391
+UniRef50_Q2NB77: Blue-light-activated histidine kinase 2|unclassified	0.0323228391
+UniRef50_UPI0003B646B9: hypothetical protein	0.0323215800
+UniRef50_UPI0003B646B9: hypothetical protein|unclassified	0.0323215800
+UniRef50_UPI0003B3B830: 2-oxoglutarate dehydrogenase E1, partial	0.0323118853
+UniRef50_UPI0003B3B830: 2-oxoglutarate dehydrogenase E1, partial|unclassified	0.0323118853
+UniRef50_S2VZ33	0.0323107700
+UniRef50_S2VZ33|unclassified	0.0323107700
+UniRef50_B2V969: Methionyl-tRNA formyltransferase	0.0323063438
+UniRef50_B2V969: Methionyl-tRNA formyltransferase|unclassified	0.0323063438
+UniRef50_UPI0003808F11: hypothetical protein	0.0323040542
+UniRef50_UPI0003808F11: hypothetical protein|unclassified	0.0323040542
+UniRef50_UPI0002557ABC: KDO transferase kdt30A	0.0323029072
+UniRef50_UPI0002557ABC: KDO transferase kdt30A|unclassified	0.0323029072
+UniRef50_UPI0004246E9D: hypothetical protein	0.0323023465
+UniRef50_UPI0004246E9D: hypothetical protein|unclassified	0.0323023465
+UniRef50_UPI0003695AD2: hypothetical protein, partial	0.0323011680
+UniRef50_UPI0003695AD2: hypothetical protein, partial|unclassified	0.0323011680
+UniRef50_UPI0003B33F0E: ABC transporter permease	0.0323001059
+UniRef50_UPI0003B33F0E: ABC transporter permease|unclassified	0.0323001059
+UniRef50_UPI0003FB3574: hypothetical protein	0.0322958692
+UniRef50_UPI0003FB3574: hypothetical protein|unclassified	0.0322958692
+UniRef50_UPI00047AF1F1: hypothetical protein	0.0322893782
+UniRef50_UPI00047AF1F1: hypothetical protein|unclassified	0.0322893782
+UniRef50_UPI0004784289: mannose-1-phosphate guanyltransferase	0.0322875071
+UniRef50_UPI0004784289: mannose-1-phosphate guanyltransferase|unclassified	0.0322875071
+UniRef50_K2AVC9	0.0322853564
+UniRef50_K2AVC9|unclassified	0.0322853564
+UniRef50_D3QIQ8: Membrane anchored protein	0.0322851644
+UniRef50_D3QIQ8: Membrane anchored protein|unclassified	0.0322851644
+UniRef50_UPI00047598FA: glycosyl transferase	0.0322799733
+UniRef50_UPI00047598FA: glycosyl transferase|unclassified	0.0322799733
+UniRef50_W9GJ85: Transcriptional regulator	0.0322784192
+UniRef50_W9GJ85: Transcriptional regulator|unclassified	0.0322784192
+UniRef50_UPI00046684A1: hypothetical protein	0.0322703481
+UniRef50_UPI00046684A1: hypothetical protein|unclassified	0.0322703481
+UniRef50_UPI000429F6B2: hypothetical protein	0.0322684195
+UniRef50_UPI000429F6B2: hypothetical protein|unclassified	0.0322684195
+UniRef50_Q89ZL8: Alpha-N-acetylglucosaminidase	0.0322591599
+UniRef50_Q89ZL8: Alpha-N-acetylglucosaminidase|unclassified	0.0322591599
+UniRef50_UPI000467FC65: hypothetical protein	0.0322573163
+UniRef50_UPI000467FC65: hypothetical protein|unclassified	0.0322573163
+UniRef50_UPI0003B51B40: protein-export membrane protein SecD, partial	0.0322530248
+UniRef50_UPI0003B51B40: protein-export membrane protein SecD, partial|unclassified	0.0322530248
+UniRef50_Q7W6P3: Valine--tRNA ligase	0.0322510548
+UniRef50_Q7W6P3: Valine--tRNA ligase|unclassified	0.0322510548
+UniRef50_Q8K9M4	0.0322501756
+UniRef50_Q8K9M4|unclassified	0.0322501756
+UniRef50_A6WXG5: Diguanylate cyclase	0.0322376148
+UniRef50_A6WXG5: Diguanylate cyclase|unclassified	0.0322376148
+UniRef50_I0WMN6: Non-ribosomal peptide synthetase (Fragment)	0.0322353971
+UniRef50_I0WMN6: Non-ribosomal peptide synthetase (Fragment)|unclassified	0.0322353971
+UniRef50_UPI00021A5132: PREDICTED: hypothetical protein LOC100632374	0.0322322035
+UniRef50_UPI00021A5132: PREDICTED: hypothetical protein LOC100632374|unclassified	0.0322322035
+UniRef50_UPI00031C278F: hypothetical protein	0.0322318243
+UniRef50_UPI00031C278F: hypothetical protein|unclassified	0.0322318243
+UniRef50_UPI000479592C: adenosine deaminase	0.0322296919
+UniRef50_UPI000479592C: adenosine deaminase|unclassified	0.0322296919
+UniRef50_B9E9P6	0.0322289820
+UniRef50_B9E9P6|unclassified	0.0322289820
+UniRef50_UPI0003EA865B	0.0322288482
+UniRef50_UPI0003EA865B|unclassified	0.0322288482
+UniRef50_UPI0002883A7C: phosphoribosylaminoimidazole carboxylase	0.0322249599
+UniRef50_UPI0002883A7C: phosphoribosylaminoimidazole carboxylase|unclassified	0.0322249599
+UniRef50_D0IXW2: Transposase, IS4	0.0322235505
+UniRef50_D0IXW2: Transposase, IS4|unclassified	0.0322235505
+UniRef50_UPI00036408F7: hypothetical protein	0.0322201811
+UniRef50_UPI00036408F7: hypothetical protein|unclassified	0.0322201811
+UniRef50_Q2S432: ATP synthase subunit alpha	0.0322198385
+UniRef50_Q2S432: ATP synthase subunit alpha|unclassified	0.0322198385
+UniRef50_UPI0003B71B43: 3-hydroxyacyl-ACP dehydratase	0.0322187887
+UniRef50_UPI0003B71B43: 3-hydroxyacyl-ACP dehydratase|unclassified	0.0322187887
+UniRef50_UPI000255BB13: cell surface protein, partial	0.0322110602
+UniRef50_UPI000255BB13: cell surface protein, partial|unclassified	0.0322110602
+UniRef50_UPI00037F72A2: hypothetical protein	0.0322108618
+UniRef50_UPI00037F72A2: hypothetical protein|unclassified	0.0322108618
+UniRef50_UPI00030945F6: cation transporter	0.0322078232
+UniRef50_UPI00030945F6: cation transporter|unclassified	0.0322078232
+UniRef50_W0P658: Beta-lactamase domain-containing protein	0.0322066727
+UniRef50_W0P658: Beta-lactamase domain-containing protein|unclassified	0.0322066727
+UniRef50_A6VFI9: Arginine biosynthesis bifunctional protein ArgJ	0.0322060295
+UniRef50_A6VFI9: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.0322060295
+UniRef50_A1K7M5: Putative xanthine dehydrogenase protein	0.0322055996
+UniRef50_A1K7M5: Putative xanthine dehydrogenase protein|unclassified	0.0322055996
+UniRef50_UPI000469E4FE: hypothetical protein	0.0322039231
+UniRef50_UPI000469E4FE: hypothetical protein|unclassified	0.0322039231
+UniRef50_K2KDE4: GGDEF domain/EAL domain-containing protein	0.0322028404
+UniRef50_K2KDE4: GGDEF domain/EAL domain-containing protein|unclassified	0.0322028404
+UniRef50_D2BQV2: NTPase, KAP P-loop domain-containing family	0.0321965835
+UniRef50_D2BQV2: NTPase, KAP P-loop domain-containing family|unclassified	0.0321965835
+UniRef50_B2RIZ3: Leucine--tRNA ligase	0.0321942473
+UniRef50_B2RIZ3: Leucine--tRNA ligase|unclassified	0.0321942473
+UniRef50_UPI00046ED9F8: glutamyl-tRNA amidotransferase	0.0321918748
+UniRef50_UPI00046ED9F8: glutamyl-tRNA amidotransferase|unclassified	0.0321918748
+UniRef50_Q9NQW7: Xaa-Pro aminopeptidase 1	0.0321903868
+UniRef50_Q9NQW7: Xaa-Pro aminopeptidase 1|unclassified	0.0321903868
+UniRef50_P04424: Argininosuccinate lyase	0.0321899478
+UniRef50_P04424: Argininosuccinate lyase|unclassified	0.0321899478
+UniRef50_UPI0004111510: hypothetical protein	0.0321886393
+UniRef50_UPI0004111510: hypothetical protein|unclassified	0.0321886393
+UniRef50_A9GG06	0.0321846895
+UniRef50_A9GG06|unclassified	0.0321846895
+UniRef50_UPI000379B7D6: hypothetical protein	0.0321843097
+UniRef50_UPI000379B7D6: hypothetical protein|unclassified	0.0321843097
+UniRef50_UPI0003B41B33: outer membrane protein assembly factor yaeT	0.0321839100
+UniRef50_UPI0003B41B33: outer membrane protein assembly factor yaeT|unclassified	0.0321839100
+UniRef50_UPI000373852F: hypothetical protein	0.0321820269
+UniRef50_UPI000373852F: hypothetical protein|unclassified	0.0321820269
+UniRef50_S5EFM2: ABC transporter permease	0.0321771737
+UniRef50_S5EFM2: ABC transporter permease|unclassified	0.0321771737
+UniRef50_UPI0002DD61A2: hypothetical protein	0.0321768766
+UniRef50_UPI0002DD61A2: hypothetical protein|unclassified	0.0321768766
+UniRef50_I0DPX6	0.0321749008
+UniRef50_I0DPX6|unclassified	0.0321749008
+UniRef50_UPI0004765137: hypothetical protein	0.0321738682
+UniRef50_UPI0004765137: hypothetical protein|unclassified	0.0321738682
+UniRef50_UPI00036136F5: hypothetical protein	0.0321728941
+UniRef50_UPI00036136F5: hypothetical protein|unclassified	0.0321728941
+UniRef50_Q2JKE8: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	0.0321709500
+UniRef50_Q2JKE8: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.0321709500
+UniRef50_UPI000406F11E: permease	0.0321703555
+UniRef50_UPI000406F11E: permease|unclassified	0.0321703555
+UniRef50_UPI000316DEA9: hypothetical protein	0.0321702656
+UniRef50_UPI000316DEA9: hypothetical protein|unclassified	0.0321702656
+UniRef50_UPI00037A0CD4: hypothetical protein	0.0321647988
+UniRef50_UPI00037A0CD4: hypothetical protein|unclassified	0.0321647988
+UniRef50_D6DFG4: Predicted ATPase (AAA+ superfamily)	0.0321602761
+UniRef50_D6DFG4: Predicted ATPase (AAA+ superfamily)|unclassified	0.0321602761
+UniRef50_UPI0003B69561: IMP cyclohydrolase	0.0321600005
+UniRef50_UPI0003B69561: IMP cyclohydrolase|unclassified	0.0321600005
+UniRef50_A8TJN4	0.0321595752
+UniRef50_A8TJN4|unclassified	0.0321595752
+UniRef50_A0A011NG75: Putative ATPase (AAA+ superfamily)	0.0321580342
+UniRef50_A0A011NG75: Putative ATPase (AAA+ superfamily)|unclassified	0.0321580342
+UniRef50_A0A022FV30: Diguanylate cyclase	0.0321551834
+UniRef50_A0A022FV30: Diguanylate cyclase|unclassified	0.0321551834
+UniRef50_A8I6P0: Predicted protein	0.0321541358
+UniRef50_A8I6P0: Predicted protein|unclassified	0.0321541358
+UniRef50_UPI000360626E: hypothetical protein	0.0321531299
+UniRef50_UPI000360626E: hypothetical protein|unclassified	0.0321531299
+UniRef50_UPI0004090971: hypothetical protein	0.0321530948
+UniRef50_UPI0004090971: hypothetical protein|unclassified	0.0321530948
+UniRef50_UPI000360808C: hypothetical protein, partial	0.0321487356
+UniRef50_UPI000360808C: hypothetical protein, partial|unclassified	0.0321487356
+UniRef50_F9DWA5	0.0321486867
+UniRef50_F9DWA5|unclassified	0.0321486867
+UniRef50_UPI00037892F1: hypothetical protein	0.0321475513
+UniRef50_UPI00037892F1: hypothetical protein|unclassified	0.0321475513
+UniRef50_UPI00034D25B0: amino acid dehydrogenase	0.0321397805
+UniRef50_UPI00034D25B0: amino acid dehydrogenase|unclassified	0.0321397805
+UniRef50_UPI0003653047: hypothetical protein	0.0321306483
+UniRef50_UPI0003653047: hypothetical protein|unclassified	0.0321306483
+UniRef50_UPI00046F9D92: multidrug ABC transporter ATP-binding protein	0.0321297998
+UniRef50_UPI00046F9D92: multidrug ABC transporter ATP-binding protein|unclassified	0.0321297998
+UniRef50_B6QBD8: Hsp20/alpha crystallin family protein	0.0321291013
+UniRef50_B6QBD8: Hsp20/alpha crystallin family protein|unclassified	0.0321291013
+UniRef50_UPI00037F45CC: hypothetical protein	0.0321246791
+UniRef50_UPI00037F45CC: hypothetical protein|unclassified	0.0321246791
+UniRef50_J9FY50	0.0321197428
+UniRef50_J9FY50|unclassified	0.0321197428
+UniRef50_UPI0004219839: hypothetical protein	0.0321172955
+UniRef50_UPI0004219839: hypothetical protein|unclassified	0.0321172955
+UniRef50_Q9LEJ0: Enolase 1	0.0321116445
+UniRef50_Q9LEJ0: Enolase 1|unclassified	0.0321116445
+UniRef50_UPI0004680200: (p)ppGpp synthetase	0.0321115309
+UniRef50_UPI0004680200: (p)ppGpp synthetase|unclassified	0.0321115309
+UniRef50_Q6I286: S-layer protein, putative	0.0321076853
+UniRef50_Q6I286: S-layer protein, putative|unclassified	0.0321076853
+UniRef50_P20691: 3-phosphoshikimate 1-carboxyvinyltransferase	0.0321063387
+UniRef50_P20691: 3-phosphoshikimate 1-carboxyvinyltransferase|unclassified	0.0321063387
+UniRef50_C4U5S1: Paraquat-inducible protein A	0.0321061015
+UniRef50_C4U5S1: Paraquat-inducible protein A|unclassified	0.0321061015
+UniRef50_S6FD31	0.0321017627
+UniRef50_S6FD31|unclassified	0.0321017627
+UniRef50_H8L879	0.0320942493
+UniRef50_H8L879|unclassified	0.0320942493
+UniRef50_L8E166: Activator of (R)-2-hydroxyglutaryl-CoA dehydratase	0.0320816871
+UniRef50_L8E166: Activator of (R)-2-hydroxyglutaryl-CoA dehydratase|unclassified	0.0320816871
+UniRef50_Q41008: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha, chloroplastic	0.0320792160
+UniRef50_Q41008: Acetyl-coenzyme A carboxylase carboxyl transferase subunit alpha, chloroplastic|unclassified	0.0320792160
+UniRef50_UPI0002F2AFC9: hypothetical protein	0.0320791183
+UniRef50_UPI0002F2AFC9: hypothetical protein|unclassified	0.0320791183
+UniRef50_UPI00037DE251: hypothetical protein	0.0320780881
+UniRef50_UPI00037DE251: hypothetical protein|unclassified	0.0320780881
+UniRef50_UPI00047B7960: hypothetical protein	0.0320758834
+UniRef50_UPI00047B7960: hypothetical protein|unclassified	0.0320758834
+UniRef50_UPI00046D7612: hypothetical protein	0.0320755642
+UniRef50_UPI00046D7612: hypothetical protein|unclassified	0.0320755642
+UniRef50_L1I6M6	0.0320754016
+UniRef50_L1I6M6|unclassified	0.0320754016
+UniRef50_A0A016RRT7	0.0320715447
+UniRef50_A0A016RRT7|unclassified	0.0320715447
+UniRef50_UPI0002654828: PREDICTED: thymidine phosphorylase-like	0.0320702415
+UniRef50_UPI0002654828: PREDICTED: thymidine phosphorylase-like|unclassified	0.0320702415
+UniRef50_Q8CJR5: Phosphate acetyltransferase	0.0320691763
+UniRef50_Q8CJR5: Phosphate acetyltransferase|unclassified	0.0320691763
+UniRef50_UPI00037877B4: hypothetical protein	0.0320657801
+UniRef50_UPI00037877B4: hypothetical protein|unclassified	0.0320657801
+UniRef50_Q9L0Q6: Cysteine--tRNA ligase	0.0320635008
+UniRef50_Q9L0Q6: Cysteine--tRNA ligase|unclassified	0.0320635008
+UniRef50_UPI00047EA6BF: hypothetical protein	0.0320613524
+UniRef50_UPI00047EA6BF: hypothetical protein|unclassified	0.0320613524
+UniRef50_UPI0003B6D74A: methionine sulfoxide reductase	0.0320591400
+UniRef50_UPI0003B6D74A: methionine sulfoxide reductase|unclassified	0.0320591400
+UniRef50_UPI0003778082: hypothetical protein	0.0320553549
+UniRef50_UPI0003778082: hypothetical protein|unclassified	0.0320553549
+UniRef50_UPI000161CF0A: S1 RNA binding domain protein	0.0320499007
+UniRef50_UPI000161CF0A: S1 RNA binding domain protein|unclassified	0.0320499007
+UniRef50_UPI00022CA411: PREDICTED: high affinity cationic amino acid transporter 1-like	0.0320497374
+UniRef50_UPI00022CA411: PREDICTED: high affinity cationic amino acid transporter 1-like|unclassified	0.0320497374
+UniRef50_F2MU03	0.0320483373
+UniRef50_F2MU03|unclassified	0.0320483373
+UniRef50_UPI00036FA209: hypothetical protein	0.0320465399
+UniRef50_UPI00036FA209: hypothetical protein|unclassified	0.0320465399
+UniRef50_UPI00035075E1: PREDICTED: xaa-Pro aminopeptidase 2 isoform X4	0.0320431114
+UniRef50_UPI00035075E1: PREDICTED: xaa-Pro aminopeptidase 2 isoform X4|unclassified	0.0320431114
+UniRef50_UPI00046E972F: hypothetical protein	0.0320414292
+UniRef50_UPI00046E972F: hypothetical protein|unclassified	0.0320414292
+UniRef50_A0A024HXD9	0.0320393768
+UniRef50_A0A024HXD9|unclassified	0.0320393768
+UniRef50_UPI000255639C: ABC transporter permease	0.0320373274
+UniRef50_UPI000255639C: ABC transporter permease|unclassified	0.0320373274
+UniRef50_O67762: DNA-directed RNA polymerase subunit beta	0.0320355051
+UniRef50_O67762: DNA-directed RNA polymerase subunit beta|unclassified	0.0320355051
+UniRef50_I0XBA1: Esterase	0.0320350483
+UniRef50_I0XBA1: Esterase|unclassified	0.0320350483
+UniRef50_UPI00016C3B2B: NADH dehydrogenase subunit L	0.0320311072
+UniRef50_UPI00016C3B2B: NADH dehydrogenase subunit L|unclassified	0.0320311072
+UniRef50_P56690: Isoleucine--tRNA ligase	0.0320290481
+UniRef50_P56690: Isoleucine--tRNA ligase|unclassified	0.0320290481
+UniRef50_UPI000374D6AB: hypothetical protein	0.0320283886
+UniRef50_UPI000374D6AB: hypothetical protein|unclassified	0.0320283886
+UniRef50_UPI0002559D47: DNA primase	0.0320244028
+UniRef50_UPI0002559D47: DNA primase|unclassified	0.0320244028
+UniRef50_UPI000474A0FC: cation-transporting ATPase PacS, partial	0.0320218155
+UniRef50_UPI000474A0FC: cation-transporting ATPase PacS, partial|unclassified	0.0320218155
+UniRef50_UPI0004004559: hypothetical protein	0.0320139702
+UniRef50_UPI0004004559: hypothetical protein|unclassified	0.0320139702
+UniRef50_UPI00046E979F: short-chain dehydrogenase	0.0320138821
+UniRef50_UPI00046E979F: short-chain dehydrogenase|unclassified	0.0320138821
+UniRef50_A8JA23: Predicted protein (Fragment)	0.0320132887
+UniRef50_A8JA23: Predicted protein (Fragment)|unclassified	0.0320132887
+UniRef50_UPI00036E309D: hypothetical protein	0.0320126041
+UniRef50_UPI00036E309D: hypothetical protein|unclassified	0.0320126041
+UniRef50_UPI0003B693BE: hypothetical protein	0.0320123409
+UniRef50_UPI0003B693BE: hypothetical protein|unclassified	0.0320123409
+UniRef50_UPI0003B6CD8E: thiamine pyrophosphate-binding protein	0.0320091847
+UniRef50_UPI0003B6CD8E: thiamine pyrophosphate-binding protein|unclassified	0.0320091847
+UniRef50_X4ZM14: Diguanylate cyclase domain protein	0.0320046451
+UniRef50_X4ZM14: Diguanylate cyclase domain protein|unclassified	0.0320046451
+UniRef50_UPI00035E1F0D: hypothetical protein	0.0320043402
+UniRef50_UPI00035E1F0D: hypothetical protein|unclassified	0.0320043402
+UniRef50_Q1B492: LigA	0.0320042071
+UniRef50_Q1B492: LigA|unclassified	0.0320042071
+UniRef50_A0A011QZR8: Sulfate/thiosulfate import ATP-binding protein CysA	0.0320008465
+UniRef50_A0A011QZR8: Sulfate/thiosulfate import ATP-binding protein CysA|unclassified	0.0320008465
+UniRef50_UPI00027F4374	0.0319912949
+UniRef50_UPI00027F4374|unclassified	0.0319912949
+UniRef50_R9VJU0	0.0319881740
+UniRef50_R9VJU0|unclassified	0.0319881740
+UniRef50_E1ZTS2	0.0319839890
+UniRef50_E1ZTS2|unclassified	0.0319839890
+UniRef50_G8R2Z5: Cysteine synthase	0.0319821660
+UniRef50_G8R2Z5: Cysteine synthase|unclassified	0.0319821660
+UniRef50_UPI00046F8B2B: hypothetical protein	0.0319817693
+UniRef50_UPI00046F8B2B: hypothetical protein|unclassified	0.0319817693
+UniRef50_UPI000369C5C3: hypothetical protein	0.0319774457
+UniRef50_UPI000369C5C3: hypothetical protein|unclassified	0.0319774457
+UniRef50_H8E1H7: Rhamnan synthesis F	0.0319756474
+UniRef50_H8E1H7: Rhamnan synthesis F|unclassified	0.0319756474
+UniRef50_UPI0002F8DE8C: hypothetical protein	0.0319723191
+UniRef50_UPI0002F8DE8C: hypothetical protein|unclassified	0.0319723191
+UniRef50_C6XNM1: HI0933 family protein	0.0319716225
+UniRef50_C6XNM1: HI0933 family protein|unclassified	0.0319716225
+UniRef50_UPI000478D8DB: hypothetical protein	0.0319661362
+UniRef50_UPI000478D8DB: hypothetical protein|unclassified	0.0319661362
+UniRef50_UPI0004689F78: hypothetical protein	0.0319575969
+UniRef50_UPI0004689F78: hypothetical protein|unclassified	0.0319575969
+UniRef50_V5SDZ1: IMP dehydrogenase	0.0319538429
+UniRef50_V5SDZ1: IMP dehydrogenase|unclassified	0.0319538429
+UniRef50_E2Q891: Putative ATP/GTP-binding protein	0.0319517149
+UniRef50_E2Q891: Putative ATP/GTP-binding protein|unclassified	0.0319517149
+UniRef50_UPI0003F096DB: PREDICTED: WAS/WASL-interacting protein family member 2-like	0.0319504341
+UniRef50_UPI0003F096DB: PREDICTED: WAS/WASL-interacting protein family member 2-like|unclassified	0.0319504341
+UniRef50_UPI0004412CC8: member of major facilitator superfamily multidrug-resistance, DHA1 sub-family	0.0319480252
+UniRef50_UPI0004412CC8: member of major facilitator superfamily multidrug-resistance, DHA1 sub-family|unclassified	0.0319480252
+UniRef50_UPI000185E496: zinc finger (C3HC4 type RING finger) protein, putative	0.0319408237
+UniRef50_UPI000185E496: zinc finger (C3HC4 type RING finger) protein, putative|unclassified	0.0319408237
+UniRef50_UPI000469A8AB: ABC transporter permease	0.0319407370
+UniRef50_UPI000469A8AB: ABC transporter permease|unclassified	0.0319407370
+UniRef50_UPI0003F60F49: hypothetical protein	0.0319404511
+UniRef50_UPI0003F60F49: hypothetical protein|unclassified	0.0319404511
+UniRef50_T5A024: DUF726 domain-containing protein	0.0319354950
+UniRef50_T5A024: DUF726 domain-containing protein|unclassified	0.0319354950
+UniRef50_K0TJY3	0.0319323250
+UniRef50_K0TJY3|unclassified	0.0319323250
+UniRef50_UPI000475FC84: peptide ABC transporter ATP-binding protein	0.0319304515
+UniRef50_UPI000475FC84: peptide ABC transporter ATP-binding protein|unclassified	0.0319304515
+UniRef50_UPI00035F5582: hypothetical protein	0.0319288083
+UniRef50_UPI00035F5582: hypothetical protein|unclassified	0.0319288083
+UniRef50_Q83GA1: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.0319274315
+UniRef50_Q83GA1: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.0319274315
+UniRef50_X6K971	0.0319226204
+UniRef50_X6K971|unclassified	0.0319226204
+UniRef50_A5UZH7: NADH-quinone oxidoreductase subunit D 2	0.0319177327
+UniRef50_A5UZH7: NADH-quinone oxidoreductase subunit D 2|unclassified	0.0319177327
+UniRef50_F8ET18	0.0319175106
+UniRef50_F8ET18|unclassified	0.0319175106
+UniRef50_W5XBB1: Histidine ammonia-lyase	0.0319100274
+UniRef50_W5XBB1: Histidine ammonia-lyase|unclassified	0.0319100274
+UniRef50_UPI000423658C: dihydrolipoamide dehydrogenase	0.0319073694
+UniRef50_UPI000423658C: dihydrolipoamide dehydrogenase|unclassified	0.0319073694
+UniRef50_R6CMC1: YhgE/Pip domain protein	0.0319050060
+UniRef50_R6CMC1: YhgE/Pip domain protein|unclassified	0.0319050060
+UniRef50_C2QC05	0.0319014977
+UniRef50_C2QC05|unclassified	0.0319014977
+UniRef50_Q8N142: Adenylosuccinate synthetase isozyme 1	0.0318964170
+UniRef50_Q8N142: Adenylosuccinate synthetase isozyme 1|unclassified	0.0318964170
+UniRef50_UPI000455E084: FAD/NAD(P)-binding domain-containing protein	0.0318940429
+UniRef50_UPI000455E084: FAD/NAD(P)-binding domain-containing protein|unclassified	0.0318940429
+UniRef50_G8MZC3	0.0318911570
+UniRef50_G8MZC3|unclassified	0.0318911570
+UniRef50_Q89WL0: Glutathione synthetase	0.0318877112
+UniRef50_Q89WL0: Glutathione synthetase|unclassified	0.0318877112
+UniRef50_Q6MI59: Aspartate--tRNA(Asp/Asn) ligase	0.0318857019
+UniRef50_Q6MI59: Aspartate--tRNA(Asp/Asn) ligase|unclassified	0.0318857019
+UniRef50_A7K3W9: NAD dependent epimerase/dehydratase family	0.0318856304
+UniRef50_A7K3W9: NAD dependent epimerase/dehydratase family|unclassified	0.0318856304
+UniRef50_UPI00028A30B0: two component transcriptional regulator, arac family protein	0.0318833877
+UniRef50_UPI00028A30B0: two component transcriptional regulator, arac family protein|unclassified	0.0318833877
+UniRef50_UPI000369CA42: hypothetical protein	0.0318829318
+UniRef50_UPI000369CA42: hypothetical protein|unclassified	0.0318829318
+UniRef50_UPI00036DD2E7: hypothetical protein	0.0318828603
+UniRef50_UPI00036DD2E7: hypothetical protein|unclassified	0.0318828603
+UniRef50_UPI000361D8A5: hypothetical protein	0.0318761414
+UniRef50_UPI000361D8A5: hypothetical protein|unclassified	0.0318761414
+UniRef50_UPI000477481B: hypothetical protein	0.0318746269
+UniRef50_UPI000477481B: hypothetical protein|unclassified	0.0318746269
+UniRef50_UPI00030221F2: metallophosphoesterase	0.0318661943
+UniRef50_UPI00030221F2: metallophosphoesterase|unclassified	0.0318661943
+UniRef50_Q9SS48: Glycerol-3-phosphate dehydrogenase SDP6, mitochondrial	0.0318636374
+UniRef50_Q9SS48: Glycerol-3-phosphate dehydrogenase SDP6, mitochondrial|unclassified	0.0318636374
+UniRef50_UPI0003763AA0: hypothetical protein	0.0318616203
+UniRef50_UPI0003763AA0: hypothetical protein|unclassified	0.0318616203
+UniRef50_D8DD96	0.0318593020
+UniRef50_D8DD96|unclassified	0.0318593020
+UniRef50_UPI00044347BA: PREDICTED: zinc finger MIZ domain-containing protein 1	0.0318570324
+UniRef50_UPI00044347BA: PREDICTED: zinc finger MIZ domain-containing protein 1|unclassified	0.0318570324
+UniRef50_UPI0004631288: hypothetical protein	0.0318477641
+UniRef50_UPI0004631288: hypothetical protein|unclassified	0.0318477641
+UniRef50_UPI0003FCF933: DNA polymerase III subunit alpha	0.0318468130
+UniRef50_UPI0003FCF933: DNA polymerase III subunit alpha|unclassified	0.0318468130
+UniRef50_R3TLJ3	0.0318454789
+UniRef50_R3TLJ3|unclassified	0.0318454789
+UniRef50_UPI0004716A11: hypothetical protein	0.0318439176
+UniRef50_UPI0004716A11: hypothetical protein|unclassified	0.0318439176
+UniRef50_UPI000364F2DB: hypothetical protein	0.0318428498
+UniRef50_UPI000364F2DB: hypothetical protein|unclassified	0.0318428498
+UniRef50_B3DWK0: Potassium-transporting ATPase A chain	0.0318422767
+UniRef50_B3DWK0: Potassium-transporting ATPase A chain|unclassified	0.0318422767
+UniRef50_S1T0A0: Molybdopterin-guanine dinucleotide biosynthesis protein MobA	0.0318374656
+UniRef50_S1T0A0: Molybdopterin-guanine dinucleotide biosynthesis protein MobA|unclassified	0.0318374656
+UniRef50_U7UDJ7: Putative L-serine dehydratase, iron-sulfur-dependent, alpha subunit	0.0318321411
+UniRef50_U7UDJ7: Putative L-serine dehydratase, iron-sulfur-dependent, alpha subunit|unclassified	0.0318321411
+UniRef50_UPI00035C784D: hypothetical protein	0.0318274900
+UniRef50_UPI00035C784D: hypothetical protein|unclassified	0.0318274900
+UniRef50_X0P1E3	0.0318253103
+UniRef50_X0P1E3|unclassified	0.0318253103
+UniRef50_W5X434	0.0318227311
+UniRef50_W5X434|unclassified	0.0318227311
+UniRef50_G7GMS0	0.0318198927
+UniRef50_G7GMS0|unclassified	0.0318198927
+UniRef50_V4IHK9	0.0318167807
+UniRef50_V4IHK9|unclassified	0.0318167807
+UniRef50_Q98B75: D-amino acid dehydrogenase 2 small subunit	0.0318128031
+UniRef50_Q98B75: D-amino acid dehydrogenase 2 small subunit|unclassified	0.0318128031
+UniRef50_UPI00047541D4: hypothetical protein	0.0318120489
+UniRef50_UPI00047541D4: hypothetical protein|unclassified	0.0318120489
+UniRef50_G0EZE7	0.0318113636
+UniRef50_G0EZE7|unclassified	0.0318113636
+UniRef50_UPI00030D2BDD: hypothetical protein	0.0318047333
+UniRef50_UPI00030D2BDD: hypothetical protein|unclassified	0.0318047333
+UniRef50_UPI0003659E14: MULTISPECIES: hypothetical protein	0.0317834042
+UniRef50_UPI0003659E14: MULTISPECIES: hypothetical protein|unclassified	0.0317834042
+UniRef50_UPI00037E9D42: MULTISPECIES: hypothetical protein	0.0317821245
+UniRef50_UPI00037E9D42: MULTISPECIES: hypothetical protein|unclassified	0.0317821245
+UniRef50_UPI0003B651BF: hypothetical protein	0.0317784823
+UniRef50_UPI0003B651BF: hypothetical protein|unclassified	0.0317784823
+UniRef50_UPI00037D12D5: hypothetical protein, partial	0.0317779981
+UniRef50_UPI00037D12D5: hypothetical protein, partial|unclassified	0.0317779981
+UniRef50_UPI0003614420: hypothetical protein	0.0317712027
+UniRef50_UPI0003614420: hypothetical protein|unclassified	0.0317712027
+UniRef50_UPI0004749F6B: cytochrome C	0.0317708575
+UniRef50_UPI0004749F6B: cytochrome C|unclassified	0.0317708575
+UniRef50_UPI00046365E7: hypothetical protein	0.0317701776
+UniRef50_UPI00046365E7: hypothetical protein|unclassified	0.0317701776
+UniRef50_B8GEI1: Putative (R)-citramalate synthase CimA	0.0317629860
+UniRef50_B8GEI1: Putative (R)-citramalate synthase CimA|unclassified	0.0317629860
+UniRef50_A3S887	0.0317622813
+UniRef50_A3S887|unclassified	0.0317622813
+UniRef50_Q2BMC9: Immunogenic protein	0.0317590497
+UniRef50_Q2BMC9: Immunogenic protein|unclassified	0.0317590497
+UniRef50_UPI00046FB1B1: hypothetical protein	0.0317578644
+UniRef50_UPI00046FB1B1: hypothetical protein|unclassified	0.0317578644
+UniRef50_D3DD12	0.0317515447
+UniRef50_D3DD12|unclassified	0.0317515447
+UniRef50_D5V1H1: Type VI secretion protein, VC_A0114 family	0.0317509507
+UniRef50_D5V1H1: Type VI secretion protein, VC_A0114 family|unclassified	0.0317509507
+UniRef50_W8S3G5: GTA host specificity protein	0.0317507169
+UniRef50_W8S3G5: GTA host specificity protein|unclassified	0.0317507169
+UniRef50_Q0JYF9	0.0317504762
+UniRef50_Q0JYF9|unclassified	0.0317504762
+UniRef50_P40394: Alcohol dehydrogenase class 4 mu/sigma chain	0.0317473125
+UniRef50_P40394: Alcohol dehydrogenase class 4 mu/sigma chain|unclassified	0.0317473125
+UniRef50_A9KIA5: Histidine--tRNA ligase	0.0317453026
+UniRef50_A9KIA5: Histidine--tRNA ligase|unclassified	0.0317453026
+UniRef50_C6V3U5: ABC-type phosphate transport system, periplasmic component	0.0317396195
+UniRef50_C6V3U5: ABC-type phosphate transport system, periplasmic component|unclassified	0.0317396195
+UniRef50_G8QM91	0.0317318912
+UniRef50_G8QM91|unclassified	0.0317318912
+UniRef50_UPI00037D8B1C: hypothetical protein	0.0317239500
+UniRef50_UPI00037D8B1C: hypothetical protein|unclassified	0.0317239500
+UniRef50_H6BQQ2: Beta-lactamase	0.0317203655
+UniRef50_H6BQQ2: Beta-lactamase|unclassified	0.0317203655
+UniRef50_W4Q6R9: Phytoene desaturase	0.0317192134
+UniRef50_W4Q6R9: Phytoene desaturase|unclassified	0.0317192134
+UniRef50_F2F2Y2: Predicted membrane protein	0.0317174094
+UniRef50_F2F2Y2: Predicted membrane protein|unclassified	0.0317174094
+UniRef50_UPI0003C165C8: PREDICTED: xanthine dehydrogenase-like	0.0317127628
+UniRef50_UPI0003C165C8: PREDICTED: xanthine dehydrogenase-like|unclassified	0.0317127628
+UniRef50_UPI0003104B05: hypothetical protein	0.0317117078
+UniRef50_UPI0003104B05: hypothetical protein|unclassified	0.0317117078
+UniRef50_Q89VX9: Bifunctional uridylyltransferase/uridylyl-removing enzyme	0.0317073909
+UniRef50_Q89VX9: Bifunctional uridylyltransferase/uridylyl-removing enzyme|unclassified	0.0317073909
+UniRef50_UPI00047AE9A0: hypothetical protein	0.0317065999
+UniRef50_UPI00047AE9A0: hypothetical protein|unclassified	0.0317065999
+UniRef50_UPI00047DF057: hypothetical protein	0.0317065619
+UniRef50_UPI00047DF057: hypothetical protein|unclassified	0.0317065619
+UniRef50_B2KDP9: UDP-N-acetylglucosamine 1-carboxyvinyltransferase	0.0316993218
+UniRef50_B2KDP9: UDP-N-acetylglucosamine 1-carboxyvinyltransferase|unclassified	0.0316993218
+UniRef50_D8J3N6	0.0316904138
+UniRef50_D8J3N6|unclassified	0.0316904138
+UniRef50_D7GHC1: Chromosome partitioning protein	0.0316876614
+UniRef50_D7GHC1: Chromosome partitioning protein|unclassified	0.0316876614
+UniRef50_K2H6F2: Membrane protein-like protein	0.0316865403
+UniRef50_K2H6F2: Membrane protein-like protein|unclassified	0.0316865403
+UniRef50_UPI0002D3C80C: hypothetical protein	0.0316851019
+UniRef50_UPI0002D3C80C: hypothetical protein|unclassified	0.0316851019
+UniRef50_UPI0004710E3C: hypothetical protein	0.0316836764
+UniRef50_UPI0004710E3C: hypothetical protein|unclassified	0.0316836764
+UniRef50_UPI000344C383: hypothetical protein	0.0316824045
+UniRef50_UPI000344C383: hypothetical protein|unclassified	0.0316824045
+UniRef50_UPI0002631DC9: Clp protease	0.0316808869
+UniRef50_UPI0002631DC9: Clp protease|unclassified	0.0316808869
+UniRef50_UPI00045EA089: hypothetical protein	0.0316804147
+UniRef50_UPI00045EA089: hypothetical protein|unclassified	0.0316804147
+UniRef50_UPI00046BEDA6: PREDICTED: golgin subfamily B member 1-like isoform X1	0.0316804112
+UniRef50_UPI00046BEDA6: PREDICTED: golgin subfamily B member 1-like isoform X1|unclassified	0.0316804112
+UniRef50_UPI000362ADEC: hypothetical protein	0.0316791751
+UniRef50_UPI000362ADEC: hypothetical protein|unclassified	0.0316791751
+UniRef50_UPI0002BC90CC: PREDICTED: inositol transporter 4 isoform 2	0.0316786392
+UniRef50_UPI0002BC90CC: PREDICTED: inositol transporter 4 isoform 2|unclassified	0.0316786392
+UniRef50_UPI000475C47D: hypothetical protein	0.0316760856
+UniRef50_UPI000475C47D: hypothetical protein|unclassified	0.0316760856
+UniRef50_UPI000478D81C: hypothetical protein	0.0316760145
+UniRef50_UPI000478D81C: hypothetical protein|unclassified	0.0316760145
+UniRef50_K9UM61: Diguanylate cyclase (GGDEF) domain-containing protein	0.0316756430
+UniRef50_K9UM61: Diguanylate cyclase (GGDEF) domain-containing protein|unclassified	0.0316756430
+UniRef50_UPI00046F44A0: DNA-binding protein	0.0316720743
+UniRef50_UPI00046F44A0: DNA-binding protein|unclassified	0.0316720743
+UniRef50_UPI00038254C9: hypothetical protein	0.0316598859
+UniRef50_UPI00038254C9: hypothetical protein|unclassified	0.0316598859
+UniRef50_UPI0002DA7A52: hypothetical protein	0.0316570522
+UniRef50_UPI0002DA7A52: hypothetical protein|unclassified	0.0316570522
+UniRef50_UPI00047E3ED1: hypothetical protein	0.0316539146
+UniRef50_UPI00047E3ED1: hypothetical protein|unclassified	0.0316539146
+UniRef50_Q9SA27: DEAD-box ATP-dependent RNA helicase 36	0.0316531627
+UniRef50_Q9SA27: DEAD-box ATP-dependent RNA helicase 36|unclassified	0.0316531627
+UniRef50_UPI0003774EF4: hypothetical protein	0.0316524728
+UniRef50_UPI0003774EF4: hypothetical protein|unclassified	0.0316524728
+UniRef50_UPI00016C0B60: ABC transporter related protein	0.0316502479
+UniRef50_UPI00016C0B60: ABC transporter related protein|unclassified	0.0316502479
+UniRef50_UPI00026242F2: membrane protein	0.0316497299
+UniRef50_UPI00026242F2: membrane protein|unclassified	0.0316497299
+UniRef50_UPI0003B6F72D: hypothetical protein	0.0316466245
+UniRef50_UPI0003B6F72D: hypothetical protein|unclassified	0.0316466245
+UniRef50_UPI00037FB35F: hypothetical protein	0.0316463631
+UniRef50_UPI00037FB35F: hypothetical protein|unclassified	0.0316463631
+UniRef50_UPI000409D88E: ABC transporter ATP-binding protein	0.0316403400
+UniRef50_UPI000409D88E: ABC transporter ATP-binding protein|unclassified	0.0316403400
+UniRef50_F2J553: Metallo-beta-lactamase family protein	0.0316400087
+UniRef50_F2J553: Metallo-beta-lactamase family protein|unclassified	0.0316400087
+UniRef50_Q03G85: Predicted membrane protein	0.0316377820
+UniRef50_Q03G85: Predicted membrane protein|unclassified	0.0316377820
+UniRef50_UPI0004785186: ATPase P	0.0316369058
+UniRef50_UPI0004785186: ATPase P|unclassified	0.0316369058
+UniRef50_G0HCK4	0.0316325143
+UniRef50_G0HCK4|unclassified	0.0316325143
+UniRef50_A6FSN1	0.0316308594
+UniRef50_A6FSN1|unclassified	0.0316308594
+UniRef50_UPI00035F54E8: hypothetical protein	0.0316270513
+UniRef50_UPI00035F54E8: hypothetical protein|unclassified	0.0316270513
+UniRef50_UPI000394592D: PREDICTED: mucin-2-like, partial	0.0316240784
+UniRef50_UPI000394592D: PREDICTED: mucin-2-like, partial|unclassified	0.0316240784
+UniRef50_C1E9A8: Predicted protein	0.0316214183
+UniRef50_C1E9A8: Predicted protein|unclassified	0.0316214183
+UniRef50_UPI0001E898F9: probable oligopeptidase F	0.0316177219
+UniRef50_UPI0001E898F9: probable oligopeptidase F|unclassified	0.0316177219
+UniRef50_P59399: Histidinol dehydrogenase	0.0316164312
+UniRef50_P59399: Histidinol dehydrogenase|unclassified	0.0316164312
+UniRef50_UPI0003B3431D: 6-phosphofructokinase	0.0316135056
+UniRef50_UPI0003B3431D: 6-phosphofructokinase|unclassified	0.0316135056
+UniRef50_UPI00025562C0: AmpG-related permease	0.0316080429
+UniRef50_UPI00025562C0: AmpG-related permease|unclassified	0.0316080429
+UniRef50_UPI0003B42592: amidase, partial	0.0316024204
+UniRef50_UPI0003B42592: amidase, partial|unclassified	0.0316024204
+UniRef50_UPI000470B0FB: epoxyqueuosine reductase, partial	0.0315988403
+UniRef50_UPI000470B0FB: epoxyqueuosine reductase, partial|unclassified	0.0315988403
+UniRef50_UPI00034723F8: hypothetical protein	0.0315978057
+UniRef50_UPI00034723F8: hypothetical protein|unclassified	0.0315978057
+UniRef50_UPI00047E2C93: hypothetical protein	0.0315911375
+UniRef50_UPI00047E2C93: hypothetical protein|unclassified	0.0315911375
+UniRef50_G8NUY5: Beta-lactamase domain protein	0.0315910326
+UniRef50_G8NUY5: Beta-lactamase domain protein|unclassified	0.0315910326
+UniRef50_A0A023B1U2: AAA domain protein	0.0315896305
+UniRef50_A0A023B1U2: AAA domain protein|unclassified	0.0315896305
+UniRef50_Q9X8N8: L-aspartate oxidase	0.0315878038
+UniRef50_Q9X8N8: L-aspartate oxidase|unclassified	0.0315878038
+UniRef50_UPI0004648207: membrane protein	0.0315864568
+UniRef50_UPI0004648207: membrane protein|unclassified	0.0315864568
+UniRef50_M2T582	0.0315844188
+UniRef50_M2T582|unclassified	0.0315844188
+UniRef50_R8MCU4	0.0315842488
+UniRef50_R8MCU4|unclassified	0.0315842488
+UniRef50_UPI0001851111: MenF	0.0315836476
+UniRef50_UPI0001851111: MenF|unclassified	0.0315836476
+UniRef50_W9HAI5	0.0315834367
+UniRef50_W9HAI5|unclassified	0.0315834367
+UniRef50_W4GDC1	0.0315819251
+UniRef50_W4GDC1|unclassified	0.0315819251
+UniRef50_UPI00047A2BE5: hypothetical protein	0.0315809315
+UniRef50_UPI00047A2BE5: hypothetical protein|unclassified	0.0315809315
+UniRef50_S9SHU2	0.0315802366
+UniRef50_S9SHU2|unclassified	0.0315802366
+UniRef50_UPI00035E09CF: hypothetical protein	0.0315779774
+UniRef50_UPI00035E09CF: hypothetical protein|unclassified	0.0315779774
+UniRef50_Q2RX74: tRNA dimethylallyltransferase	0.0315737658
+UniRef50_Q2RX74: tRNA dimethylallyltransferase|unclassified	0.0315737658
+UniRef50_G0A719: Type VI secretion protein, VC_A0114 family	0.0315723910
+UniRef50_G0A719: Type VI secretion protein, VC_A0114 family|unclassified	0.0315723910
+UniRef50_Q83HS8: Cysteine--tRNA ligase 1	0.0315692345
+UniRef50_Q83HS8: Cysteine--tRNA ligase 1|unclassified	0.0315692345
+UniRef50_UPI00042449ED: hypothetical protein	0.0315689321
+UniRef50_UPI00042449ED: hypothetical protein|unclassified	0.0315689321
+UniRef50_A0A011NHQ8: Exopolyphosphatase	0.0315658204
+UniRef50_A0A011NHQ8: Exopolyphosphatase|unclassified	0.0315658204
+UniRef50_W0RNB1: Ornithine cyclodeaminase/mu-crystallin	0.0315657102
+UniRef50_W0RNB1: Ornithine cyclodeaminase/mu-crystallin|unclassified	0.0315657102
+UniRef50_Q2SEB7	0.0315570825
+UniRef50_Q2SEB7|unclassified	0.0315570825
+UniRef50_W6I2G6: Transglutaminase-like protein	0.0315561038
+UniRef50_W6I2G6: Transglutaminase-like protein|unclassified	0.0315561038
+UniRef50_UPI00031BEEB0: hypothetical protein	0.0315470233
+UniRef50_UPI00031BEEB0: hypothetical protein|unclassified	0.0315470233
+UniRef50_W1IRG8: Late control gene D protein	0.0315450303
+UniRef50_W1IRG8: Late control gene D protein|unclassified	0.0315450303
+UniRef50_UPI000370B132: hypothetical protein	0.0315445937
+UniRef50_UPI000370B132: hypothetical protein|unclassified	0.0315445937
+UniRef50_UPI000479C4CF: hypothetical protein	0.0315443901
+UniRef50_UPI000479C4CF: hypothetical protein|unclassified	0.0315443901
+UniRef50_UPI00047CAC68: hypothetical protein	0.0315441751
+UniRef50_UPI00047CAC68: hypothetical protein|unclassified	0.0315441751
+UniRef50_A9BIJ7: Valine--tRNA ligase	0.0315387471
+UniRef50_A9BIJ7: Valine--tRNA ligase|unclassified	0.0315387471
+UniRef50_B3QV79: Serine--tRNA ligase	0.0315365475
+UniRef50_B3QV79: Serine--tRNA ligase|unclassified	0.0315365475
+UniRef50_UPI0003806CCD: hypothetical protein	0.0315363584
+UniRef50_UPI0003806CCD: hypothetical protein|unclassified	0.0315363584
+UniRef50_UPI000467E1B1: hypothetical protein	0.0315332520
+UniRef50_UPI000467E1B1: hypothetical protein|unclassified	0.0315332520
+UniRef50_UPI00035CF2A1: hypothetical protein	0.0315310501
+UniRef50_UPI00035CF2A1: hypothetical protein|unclassified	0.0315310501
+UniRef50_UPI00036FC3FF: hypothetical protein	0.0315227769
+UniRef50_UPI00036FC3FF: hypothetical protein|unclassified	0.0315227769
+UniRef50_UPI0003B5104F: hypothetical protein	0.0315197705
+UniRef50_UPI0003B5104F: hypothetical protein|unclassified	0.0315197705
+UniRef50_UPI0002B40C9C: PREDICTED: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial-like	0.0315112354
+UniRef50_UPI0002B40C9C: PREDICTED: 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial-like|unclassified	0.0315112354
+UniRef50_UPI00035D359F: hypothetical protein, partial	0.0315097527
+UniRef50_UPI00035D359F: hypothetical protein, partial|unclassified	0.0315097527
+UniRef50_C6C7W6: NAD-dependent epimerase/dehydratase	0.0315096964
+UniRef50_C6C7W6: NAD-dependent epimerase/dehydratase|unclassified	0.0315096964
+UniRef50_P09950: 5-aminolevulinate synthase, mitochondrial	0.0315081506
+UniRef50_P09950: 5-aminolevulinate synthase, mitochondrial|unclassified	0.0315081506
+UniRef50_Q6ML73: Lon protease 1	0.0315063309
+UniRef50_Q6ML73: Lon protease 1|unclassified	0.0315063309
+UniRef50_B2KCB2: Proline--tRNA ligase	0.0315043561
+UniRef50_B2KCB2: Proline--tRNA ligase|unclassified	0.0315043561
+UniRef50_UPI00046CD37A: ribonuclease G	0.0315036390
+UniRef50_UPI00046CD37A: ribonuclease G|unclassified	0.0315036390
+UniRef50_UPI0003F57058: hypothetical protein	0.0314964216
+UniRef50_UPI0003F57058: hypothetical protein|unclassified	0.0314964216
+UniRef50_Q00796: Sorbitol dehydrogenase	0.0314944846
+UniRef50_Q00796: Sorbitol dehydrogenase|unclassified	0.0314944846
+UniRef50_UPI0003FF37C0: hypothetical protein	0.0314931843
+UniRef50_UPI0003FF37C0: hypothetical protein|unclassified	0.0314931843
+UniRef50_G4RGR6: Ferric siderophore transport system, periplasmic binding protein TonB	0.0314926371
+UniRef50_G4RGR6: Ferric siderophore transport system, periplasmic binding protein TonB|unclassified	0.0314926371
+UniRef50_A0A021QE96	0.0314909481
+UniRef50_A0A021QE96|unclassified	0.0314909481
+UniRef50_Q0A4X2: DNA polymerase IV	0.0314876679
+UniRef50_Q0A4X2: DNA polymerase IV|unclassified	0.0314876679
+UniRef50_U0H1M8: Prophage tail fiber family protein	0.0314869906
+UniRef50_U0H1M8: Prophage tail fiber family protein|unclassified	0.0314869906
+UniRef50_UPI000382615E: hypothetical protein	0.0314861674
+UniRef50_UPI000382615E: hypothetical protein|unclassified	0.0314861674
+UniRef50_U6LQX9: WD domain, G-beta repeat-containing protein, putative	0.0314837882
+UniRef50_U6LQX9: WD domain, G-beta repeat-containing protein, putative|unclassified	0.0314837882
+UniRef50_A1WXL3: Ribosomal RNA large subunit methyltransferase M	0.0314804990
+UniRef50_A1WXL3: Ribosomal RNA large subunit methyltransferase M|unclassified	0.0314804990
+UniRef50_A5VHE6	0.0314773655
+UniRef50_A5VHE6|unclassified	0.0314773655
+UniRef50_W9GXE7	0.0314743589
+UniRef50_W9GXE7|unclassified	0.0314743589
+UniRef50_U6LGW1: Zinc finger (C3HC4 RING finger) protein, putative	0.0314726012
+UniRef50_U6LGW1: Zinc finger (C3HC4 RING finger) protein, putative|unclassified	0.0314726012
+UniRef50_C1N4E9: Predicted protein	0.0314721581
+UniRef50_C1N4E9: Predicted protein|unclassified	0.0314721581
+UniRef50_UPI0003EC5005: PREDICTED: ribosome-releasing factor 2, mitochondrial	0.0314620925
+UniRef50_UPI0003EC5005: PREDICTED: ribosome-releasing factor 2, mitochondrial|unclassified	0.0314620925
+UniRef50_UPI00047E0066: tRNA dimethylallyltransferase	0.0314612331
+UniRef50_UPI00047E0066: tRNA dimethylallyltransferase|unclassified	0.0314612331
+UniRef50_K0KD67	0.0314605540
+UniRef50_K0KD67|unclassified	0.0314605540
+UniRef50_O21049: Cytochrome c oxidase subunit 3	0.0314577085
+UniRef50_O21049: Cytochrome c oxidase subunit 3|unclassified	0.0314577085
+UniRef50_K0YMW1	0.0314542139
+UniRef50_K0YMW1|unclassified	0.0314542139
+UniRef50_UPI00035F2044: hypothetical protein	0.0314525636
+UniRef50_UPI00035F2044: hypothetical protein|unclassified	0.0314525636
+UniRef50_G9AJN2	0.0314512885
+UniRef50_G9AJN2|unclassified	0.0314512885
+UniRef50_P70795	0.0314512885
+UniRef50_P70795|unclassified	0.0314512885
+UniRef50_Q2SSF4: Histidine--tRNA ligase	0.0314510760
+UniRef50_Q2SSF4: Histidine--tRNA ligase|unclassified	0.0314510760
+UniRef50_Q3JT66	0.0314499943
+UniRef50_Q3JT66|unclassified	0.0314499943
+UniRef50_X1HV06: Marine sediment metagenome DNA, contig: S03H2_S13613	0.0314498102
+UniRef50_X1HV06: Marine sediment metagenome DNA, contig: S03H2_S13613|unclassified	0.0314498102
+UniRef50_Q0IDE8: Bifunctional purine biosynthesis protein PurH	0.0314467747
+UniRef50_Q0IDE8: Bifunctional purine biosynthesis protein PurH|unclassified	0.0314467747
+UniRef50_U6GGJ4	0.0314383669
+UniRef50_U6GGJ4|unclassified	0.0314383669
+UniRef50_UPI000473B0C6: peptidase M24, partial	0.0314366766
+UniRef50_UPI000473B0C6: peptidase M24, partial|unclassified	0.0314366766
+UniRef50_L5MXQ4: Tn7-like transposition protein D	0.0314344262
+UniRef50_L5MXQ4: Tn7-like transposition protein D|unclassified	0.0314344262
+UniRef50_UPI00047EE473: hypothetical protein	0.0314335738
+UniRef50_UPI00047EE473: hypothetical protein|unclassified	0.0314335738
+UniRef50_UPI000380015D: hypothetical protein	0.0314328461
+UniRef50_UPI000380015D: hypothetical protein|unclassified	0.0314328461
+UniRef50_UPI00017450C8: tetratricopeptide repeat/protein kinase domain protein	0.0314241608
+UniRef50_UPI00017450C8: tetratricopeptide repeat/protein kinase domain protein|unclassified	0.0314241608
+UniRef50_UPI0002B4A5BA	0.0314235190
+UniRef50_UPI0002B4A5BA|unclassified	0.0314235190
+UniRef50_UPI00046BAD61: PREDICTED: centrosomal protein of 170 kDa protein B	0.0314167649
+UniRef50_UPI00046BAD61: PREDICTED: centrosomal protein of 170 kDa protein B|unclassified	0.0314167649
+UniRef50_Q8PYJ4: Methionine--tRNA ligase	0.0314149929
+UniRef50_Q8PYJ4: Methionine--tRNA ligase|unclassified	0.0314149929
+UniRef50_UPI0003608953: hypothetical protein	0.0314144796
+UniRef50_UPI0003608953: hypothetical protein|unclassified	0.0314144796
+UniRef50_UPI0003691ABF: hypothetical protein	0.0314081469
+UniRef50_UPI0003691ABF: hypothetical protein|unclassified	0.0314081469
+UniRef50_B2A6J7	0.0314039055
+UniRef50_B2A6J7|unclassified	0.0314039055
+UniRef50_B0DLC8: Predicted protein	0.0314016112
+UniRef50_B0DLC8: Predicted protein|unclassified	0.0314016112
+UniRef50_UPI00021979F4: glycoside hydrolase family 65 central catalytic	0.0313998615
+UniRef50_UPI00021979F4: glycoside hydrolase family 65 central catalytic|unclassified	0.0313998615
+UniRef50_UPI000379ED30: hypothetical protein	0.0313950201
+UniRef50_UPI000379ED30: hypothetical protein|unclassified	0.0313950201
+UniRef50_UPI000262D190: UDP-N-acetylglucosamine pyrophosphorylase	0.0313915335
+UniRef50_UPI000262D190: UDP-N-acetylglucosamine pyrophosphorylase|unclassified	0.0313915335
+UniRef50_UPI0003B74E1B: multidrug DMT transporter permease	0.0313891077
+UniRef50_UPI0003B74E1B: multidrug DMT transporter permease|unclassified	0.0313891077
+UniRef50_B8GN35: Diguanylate cyclase/phosphodiesterase with GAF sensor	0.0313870658
+UniRef50_B8GN35: Diguanylate cyclase/phosphodiesterase with GAF sensor|unclassified	0.0313870658
+UniRef50_A8MZV6	0.0313860210
+UniRef50_A8MZV6|unclassified	0.0313860210
+UniRef50_H1S377: NAD-dependent epimerase/dehydratase	0.0313855707
+UniRef50_H1S377: NAD-dependent epimerase/dehydratase|unclassified	0.0313855707
+UniRef50_E3DTJ4	0.0313814628
+UniRef50_E3DTJ4|unclassified	0.0313814628
+UniRef50_E3HE33	0.0313813190
+UniRef50_E3HE33|unclassified	0.0313813190
+UniRef50_O64422: Fructose-1,6-bisphosphatase, chloroplastic	0.0313805292
+UniRef50_O64422: Fructose-1,6-bisphosphatase, chloroplastic|unclassified	0.0313805292
+UniRef50_E1R1G8: Phage portal protein, HK97 family	0.0313801396
+UniRef50_E1R1G8: Phage portal protein, HK97 family|unclassified	0.0313801396
+UniRef50_UPI0003651ACE: hypothetical protein	0.0313801387
+UniRef50_UPI0003651ACE: hypothetical protein|unclassified	0.0313801387
+UniRef50_P23973: Menaquinone-specific isochorismate synthase	0.0313782627
+UniRef50_P23973: Menaquinone-specific isochorismate synthase|unclassified	0.0313782627
+UniRef50_D2V893: Predicted protein	0.0313654681
+UniRef50_D2V893: Predicted protein|unclassified	0.0313654681
+UniRef50_A0AFE5: LRR/LPXTG motif internalin family protein	0.0313586389
+UniRef50_A0AFE5: LRR/LPXTG motif internalin family protein|unclassified	0.0313586389
+UniRef50_UPI0002D51FEF: hypothetical protein	0.0313573031
+UniRef50_UPI0002D51FEF: hypothetical protein|unclassified	0.0313573031
+UniRef50_J7RQR2: Transcriptional regulator	0.0313545746
+UniRef50_J7RQR2: Transcriptional regulator|unclassified	0.0313545746
+UniRef50_Q9X4D0: DNA primase	0.0313532872
+UniRef50_Q9X4D0: DNA primase|unclassified	0.0313532872
+UniRef50_UPI0003B6ECB5: hypothetical protein	0.0313524460
+UniRef50_UPI0003B6ECB5: hypothetical protein|unclassified	0.0313524460
+UniRef50_UPI0001CE27CE: PREDICTED: hypothetical protein	0.0313501565
+UniRef50_UPI0001CE27CE: PREDICTED: hypothetical protein|unclassified	0.0313501565
+UniRef50_F7TUP9: Glycine oxidase	0.0313452886
+UniRef50_F7TUP9: Glycine oxidase|unclassified	0.0313452886
+UniRef50_G9MKE1	0.0313440845
+UniRef50_G9MKE1|unclassified	0.0313440845
+UniRef50_S1MU41	0.0313336565
+UniRef50_S1MU41|unclassified	0.0313336565
+UniRef50_UPI0003B5108D: molybdopterin biosynthesis protein MoeA	0.0313303596
+UniRef50_UPI0003B5108D: molybdopterin biosynthesis protein MoeA|unclassified	0.0313303596
+UniRef50_W4YYH1	0.0313287590
+UniRef50_W4YYH1|unclassified	0.0313287590
+UniRef50_K5DHR2: Mating pair stabilization protein TraN	0.0313278964
+UniRef50_K5DHR2: Mating pair stabilization protein TraN|unclassified	0.0313278964
+UniRef50_UPI00047080E7: hypothetical protein	0.0313277314
+UniRef50_UPI00047080E7: hypothetical protein|unclassified	0.0313277314
+UniRef50_UPI00046745A2: iron-molybdenum cofactor-binding protein	0.0313257967
+UniRef50_UPI00046745A2: iron-molybdenum cofactor-binding protein|unclassified	0.0313257967
+UniRef50_UPI00036CA0EA: hypothetical protein	0.0313219386
+UniRef50_UPI00036CA0EA: hypothetical protein|unclassified	0.0313219386
+UniRef50_UPI0004718B10: hypothetical protein	0.0313196786
+UniRef50_UPI0004718B10: hypothetical protein|unclassified	0.0313196786
+UniRef50_UPI00037EFC63: hypothetical protein	0.0313191310
+UniRef50_UPI00037EFC63: hypothetical protein|unclassified	0.0313191310
+UniRef50_U4T249	0.0313145731
+UniRef50_U4T249|unclassified	0.0313145731
+UniRef50_UPI00037AEFC5: hypothetical protein	0.0313140210
+UniRef50_UPI00037AEFC5: hypothetical protein|unclassified	0.0313140210
+UniRef50_Q8XJR3: DNA polymerase III PolC-type	0.0313085197
+UniRef50_Q8XJR3: DNA polymerase III PolC-type|unclassified	0.0313085197
+UniRef50_M5IH53: Phage portal protein	0.0313064676
+UniRef50_M5IH53: Phage portal protein|unclassified	0.0313064676
+UniRef50_H0A5S3: YcjX-like family, DUF463	0.0313053511
+UniRef50_H0A5S3: YcjX-like family, DUF463|unclassified	0.0313053511
+UniRef50_M0NJE3	0.0313047116
+UniRef50_M0NJE3|unclassified	0.0313047116
+UniRef50_UPI000381C290: hypothetical protein	0.0312930337
+UniRef50_UPI000381C290: hypothetical protein|unclassified	0.0312930337
+UniRef50_Q5YVA5: 2-isopropylmalate synthase	0.0312857597
+UniRef50_Q5YVA5: 2-isopropylmalate synthase|unclassified	0.0312857597
+UniRef50_UPI00047C4DCA: peptide ABC transporter permease	0.0312857369
+UniRef50_UPI00047C4DCA: peptide ABC transporter permease|unclassified	0.0312857369
+UniRef50_B2H069	0.0312794190
+UniRef50_B2H069|unclassified	0.0312794190
+UniRef50_Q9YE82	0.0312740994
+UniRef50_Q9YE82|unclassified	0.0312740994
+UniRef50_UPI00039C3FF5: dimethyladenosine transferase	0.0312737904
+UniRef50_UPI00039C3FF5: dimethyladenosine transferase|unclassified	0.0312737904
+UniRef50_UPI0003AE4930	0.0312701782
+UniRef50_UPI0003AE4930|unclassified	0.0312701782
+UniRef50_UPI0003827FD5: hypothetical protein	0.0312695036
+UniRef50_UPI0003827FD5: hypothetical protein|unclassified	0.0312695036
+UniRef50_Q8S895: Serine acetyltransferase 2	0.0312686924
+UniRef50_Q8S895: Serine acetyltransferase 2|unclassified	0.0312686924
+UniRef50_A0A024HWT2	0.0312672561
+UniRef50_A0A024HWT2|unclassified	0.0312672561
+UniRef50_Q8RIQ3: Leucine--tRNA ligase	0.0312660946
+UniRef50_Q8RIQ3: Leucine--tRNA ligase|unclassified	0.0312660946
+UniRef50_UPI00036B0B60: hypothetical protein	0.0312621266
+UniRef50_UPI00036B0B60: hypothetical protein|unclassified	0.0312621266
+UniRef50_UPI0003B34E5F: NADH-quinone oxidoreductase subunit F	0.0312588457
+UniRef50_UPI0003B34E5F: NADH-quinone oxidoreductase subunit F|unclassified	0.0312588457
+UniRef50_V4NUN3	0.0312570294
+UniRef50_V4NUN3|unclassified	0.0312570294
+UniRef50_U2PH02	0.0312550434
+UniRef50_U2PH02|unclassified	0.0312550434
+UniRef50_U7FYS4	0.0312527774
+UniRef50_U7FYS4|unclassified	0.0312527774
+UniRef50_B6AVN5	0.0312501760
+UniRef50_B6AVN5|unclassified	0.0312501760
+UniRef50_C9SXE8: Predicted protein	0.0312498137
+UniRef50_C9SXE8: Predicted protein|unclassified	0.0312498137
+UniRef50_UPI00046D0519: hypothetical protein	0.0312448040
+UniRef50_UPI00046D0519: hypothetical protein|unclassified	0.0312448040
+UniRef50_Q3IIQ6: Adenylosuccinate synthetase 2	0.0312415424
+UniRef50_Q3IIQ6: Adenylosuccinate synthetase 2|unclassified	0.0312415424
+UniRef50_UPI00047293B6: hypothetical protein	0.0312415008
+UniRef50_UPI00047293B6: hypothetical protein|unclassified	0.0312415008
+UniRef50_UPI00037DDEBF: hypothetical protein	0.0312414081
+UniRef50_UPI00037DDEBF: hypothetical protein|unclassified	0.0312414081
+UniRef50_UPI0003770952: hypothetical protein	0.0312308732
+UniRef50_UPI0003770952: hypothetical protein|unclassified	0.0312308732
+UniRef50_A6WGM7: Cobyrinic acid ac-diamide synthase	0.0312290566
+UniRef50_A6WGM7: Cobyrinic acid ac-diamide synthase|unclassified	0.0312290566
+UniRef50_A5FUT4: Import inner membrane translocase, subunit Tim44	0.0312269086
+UniRef50_A5FUT4: Import inner membrane translocase, subunit Tim44|unclassified	0.0312269086
+UniRef50_I3BT12: Inner membrane CreD family protein	0.0312215581
+UniRef50_I3BT12: Inner membrane CreD family protein|unclassified	0.0312215581
+UniRef50_UPI000407EA99: hypothetical protein	0.0312214220
+UniRef50_UPI000407EA99: hypothetical protein|unclassified	0.0312214220
+UniRef50_UPI0003680DBD: hypothetical protein	0.0312206549
+UniRef50_UPI0003680DBD: hypothetical protein|unclassified	0.0312206549
+UniRef50_UPI00036C20DD: hypothetical protein	0.0312187631
+UniRef50_UPI00036C20DD: hypothetical protein|unclassified	0.0312187631
+UniRef50_UPI0003708E67: hypothetical protein	0.0312169464
+UniRef50_UPI0003708E67: hypothetical protein|unclassified	0.0312169464
+UniRef50_UPI0002EF496B: hypothetical protein	0.0312101446
+UniRef50_UPI0002EF496B: hypothetical protein|unclassified	0.0312101446
+UniRef50_I6WD10	0.0312098746
+UniRef50_I6WD10|unclassified	0.0312098746
+UniRef50_A4SIM5: Argininosuccinate synthase	0.0312054336
+UniRef50_A4SIM5: Argininosuccinate synthase|unclassified	0.0312054336
+UniRef50_F7NYK3	0.0312043356
+UniRef50_F7NYK3|unclassified	0.0312043356
+UniRef50_K7G0J8	0.0312042048
+UniRef50_K7G0J8|unclassified	0.0312042048
+UniRef50_UPI000248DBE4: multidrug transporter	0.0312012294
+UniRef50_UPI000248DBE4: multidrug transporter|unclassified	0.0312012294
+UniRef50_W6LY53	0.0311901660
+UniRef50_W6LY53|unclassified	0.0311901660
+UniRef50_UPI00044402D5	0.0311895719
+UniRef50_UPI00044402D5|unclassified	0.0311895719
+UniRef50_UPI00046B01D1: hypothetical protein	0.0311878983
+UniRef50_UPI00046B01D1: hypothetical protein|unclassified	0.0311878983
+UniRef50_UPI00030F5A0B: hypothetical protein	0.0311831949
+UniRef50_UPI00030F5A0B: hypothetical protein|unclassified	0.0311831949
+UniRef50_M5DMW9	0.0311822412
+UniRef50_M5DMW9|unclassified	0.0311822412
+UniRef50_UPI0003F77CB8: hypothetical protein	0.0311789551
+UniRef50_UPI0003F77CB8: hypothetical protein|unclassified	0.0311789551
+UniRef50_A0A024JPB0: Similar to Saccharomyces cerevisiae YPL258C THI21 Hydroxymethylpyrimidine phosphate kinase	0.0311723628
+UniRef50_A0A024JPB0: Similar to Saccharomyces cerevisiae YPL258C THI21 Hydroxymethylpyrimidine phosphate kinase|unclassified	0.0311723628
+UniRef50_UPI00046E67B2: hypothetical protein	0.0311716996
+UniRef50_UPI00046E67B2: hypothetical protein|unclassified	0.0311716996
+UniRef50_V4A7Y0	0.0311712665
+UniRef50_V4A7Y0|unclassified	0.0311712665
+UniRef50_UPI0004642A7D: hypothetical protein	0.0311701988
+UniRef50_UPI0004642A7D: hypothetical protein|unclassified	0.0311701988
+UniRef50_UPI00036CF21A: MULTISPECIES: hypothetical protein	0.0311673638
+UniRef50_UPI00036CF21A: MULTISPECIES: hypothetical protein|unclassified	0.0311673638
+UniRef50_UPI000371AAD3: hypothetical protein	0.0311638091
+UniRef50_UPI000371AAD3: hypothetical protein|unclassified	0.0311638091
+UniRef50_UPI0002195D59: Zn-dependent hydrolase	0.0311619676
+UniRef50_UPI0002195D59: Zn-dependent hydrolase|unclassified	0.0311619676
+UniRef50_UPI0002625B35: oligopeptide ABC transporter ATP-binding protein	0.0311589944
+UniRef50_UPI0002625B35: oligopeptide ABC transporter ATP-binding protein|unclassified	0.0311589944
+UniRef50_A3JPI7	0.0311582004
+UniRef50_A3JPI7|unclassified	0.0311582004
+UniRef50_UPI000381F4CF: hypothetical protein	0.0311552417
+UniRef50_UPI000381F4CF: hypothetical protein|unclassified	0.0311552417
+UniRef50_UPI00021979C2: oligo-1,6-glucosidase	0.0311483457
+UniRef50_UPI00021979C2: oligo-1,6-glucosidase|unclassified	0.0311483457
+UniRef50_UPI0003C1155E: PREDICTED: d-3-phosphoglycerate dehydrogenase-like	0.0311468092
+UniRef50_UPI0003C1155E: PREDICTED: d-3-phosphoglycerate dehydrogenase-like|unclassified	0.0311468092
+UniRef50_UPI00037B21FB: MULTISPECIES: hypothetical protein	0.0311395415
+UniRef50_UPI00037B21FB: MULTISPECIES: hypothetical protein|unclassified	0.0311395415
+UniRef50_UPI00037B79F8: hypothetical protein	0.0311376510
+UniRef50_UPI00037B79F8: hypothetical protein|unclassified	0.0311376510
+UniRef50_UPI00035FA43A: hypothetical protein	0.0311375428
+UniRef50_UPI00035FA43A: hypothetical protein|unclassified	0.0311375428
+UniRef50_UPI00036D8DA7: hypothetical protein	0.0311361937
+UniRef50_UPI00036D8DA7: hypothetical protein|unclassified	0.0311361937
+UniRef50_F2RN98	0.0311298540
+UniRef50_F2RN98|unclassified	0.0311298540
+UniRef50_F7QM88: Diguanylate phosphodiesterase	0.0311275947
+UniRef50_F7QM88: Diguanylate phosphodiesterase|unclassified	0.0311275947
+UniRef50_Q6KIP6: Lysine--tRNA ligase	0.0311273519
+UniRef50_Q6KIP6: Lysine--tRNA ligase|unclassified	0.0311273519
+UniRef50_UPI000456035A: hypothetical protein PFL1_03912	0.0311244820
+UniRef50_UPI000456035A: hypothetical protein PFL1_03912|unclassified	0.0311244820
+UniRef50_W7KR54	0.0311224880
+UniRef50_W7KR54|unclassified	0.0311224880
+UniRef50_H2FWV3: Long-chain fatty acid transport protein	0.0311222777
+UniRef50_H2FWV3: Long-chain fatty acid transport protein|unclassified	0.0311222777
+UniRef50_UPI0003766183: hypothetical protein	0.0311195637
+UniRef50_UPI0003766183: hypothetical protein|unclassified	0.0311195637
+UniRef50_UPI00025564E2: DNA polymerase I	0.0311195060
+UniRef50_UPI00025564E2: DNA polymerase I|unclassified	0.0311195060
+UniRef50_Q0A8J8: Ribosomal RNA large subunit methyltransferase M	0.0311119223
+UniRef50_Q0A8J8: Ribosomal RNA large subunit methyltransferase M|unclassified	0.0311119223
+UniRef50_UPI000425DA89: hypothetical protein	0.0311110166
+UniRef50_UPI000425DA89: hypothetical protein|unclassified	0.0311110166
+UniRef50_A0RAU5: Wall-associated protein	0.0311086539
+UniRef50_A0RAU5: Wall-associated protein|unclassified	0.0311086539
+UniRef50_A5UBZ9: Valine--tRNA ligase	0.0311064400
+UniRef50_A5UBZ9: Valine--tRNA ligase|unclassified	0.0311064400
+UniRef50_UPI00035FF96F: hypothetical protein	0.0311021992
+UniRef50_UPI00035FF96F: hypothetical protein|unclassified	0.0311021992
+UniRef50_P51348: Histidine--tRNA ligase, chloroplastic	0.0310992525
+UniRef50_P51348: Histidine--tRNA ligase, chloroplastic|unclassified	0.0310992525
+UniRef50_H8IYF8: PPE family protein	0.0310910352
+UniRef50_H8IYF8: PPE family protein|unclassified	0.0310910352
+UniRef50_UPI00037BDC6C: hypothetical protein	0.0310859147
+UniRef50_UPI00037BDC6C: hypothetical protein|unclassified	0.0310859147
+UniRef50_UPI0003B3A17D: diguanylate cyclase	0.0310784282
+UniRef50_UPI0003B3A17D: diguanylate cyclase|unclassified	0.0310784282
+UniRef50_Q9FEA2: Glutamate--tRNA ligase, chloroplastic/mitochondrial	0.0310761084
+UniRef50_Q9FEA2: Glutamate--tRNA ligase, chloroplastic/mitochondrial|unclassified	0.0310761084
+UniRef50_Q11GL3: OmpA/MotB	0.0310758015
+UniRef50_Q11GL3: OmpA/MotB|unclassified	0.0310758015
+UniRef50_Q8L796: Phosphatidylinositol 4-phosphate 5-kinase 2	0.0310741391
+UniRef50_Q8L796: Phosphatidylinositol 4-phosphate 5-kinase 2|unclassified	0.0310741391
+UniRef50_UPI00042380C6: hypothetical protein	0.0310640452
+UniRef50_UPI00042380C6: hypothetical protein|unclassified	0.0310640452
+UniRef50_UPI000301C2E3: ATPase	0.0310554083
+UniRef50_UPI000301C2E3: ATPase|unclassified	0.0310554083
+UniRef50_M7YV85: Formin-like protein 6	0.0310553273
+UniRef50_M7YV85: Formin-like protein 6|unclassified	0.0310553273
+UniRef50_UPI00037CE6B4: hypothetical protein	0.0310520794
+UniRef50_UPI00037CE6B4: hypothetical protein|unclassified	0.0310520794
+UniRef50_UPI000403B6F7: hypothetical protein	0.0310494387
+UniRef50_UPI000403B6F7: hypothetical protein|unclassified	0.0310494387
+UniRef50_J1JW34	0.0310435848
+UniRef50_J1JW34|unclassified	0.0310435848
+UniRef50_UPI0003B6A390: peptidase M20	0.0310422498
+UniRef50_UPI0003B6A390: peptidase M20|unclassified	0.0310422498
+UniRef50_B0C4N3: Diguanylate cyclase/phosphodiesterase with EAL domain	0.0310419278
+UniRef50_B0C4N3: Diguanylate cyclase/phosphodiesterase with EAL domain|unclassified	0.0310419278
+UniRef50_Q0I3Q6: Glutamyl-tRNA reductase	0.0310400942
+UniRef50_Q0I3Q6: Glutamyl-tRNA reductase|unclassified	0.0310400942
+UniRef50_UPI0001746B66: chromosomal replication initiation protein	0.0310386458
+UniRef50_UPI0001746B66: chromosomal replication initiation protein|unclassified	0.0310386458
+UniRef50_S4NSC2	0.0310374501
+UniRef50_S4NSC2|unclassified	0.0310374501
+UniRef50_Q6YPH3: Asparagine--tRNA ligase	0.0310344806
+UniRef50_Q6YPH3: Asparagine--tRNA ligase|unclassified	0.0310344806
+UniRef50_UPI0003F601BB: hypothetical protein	0.0310342723
+UniRef50_UPI0003F601BB: hypothetical protein|unclassified	0.0310342723
+UniRef50_UPI00045D786F: PREDICTED: glycosyltransferase 1 domain-containing protein 1 isoform X4	0.0310306695
+UniRef50_UPI00045D786F: PREDICTED: glycosyltransferase 1 domain-containing protein 1 isoform X4|unclassified	0.0310306695
+UniRef50_UPI0002559D42: non-specific serine/threonine protein kinase	0.0310282007
+UniRef50_UPI0002559D42: non-specific serine/threonine protein kinase|unclassified	0.0310282007
+UniRef50_D6M4D2: Nogalamycin resistance protein SnorO	0.0310243178
+UniRef50_D6M4D2: Nogalamycin resistance protein SnorO|unclassified	0.0310243178
+UniRef50_UPI0004113086: hypothetical protein	0.0310238383
+UniRef50_UPI0004113086: hypothetical protein|unclassified	0.0310238383
+UniRef50_UPI000470FD75: hypothetical protein	0.0310226242
+UniRef50_UPI000470FD75: hypothetical protein|unclassified	0.0310226242
+UniRef50_A4FWT9: PP-loop domain protein	0.0310220896
+UniRef50_A4FWT9: PP-loop domain protein|unclassified	0.0310220896
+UniRef50_K8DST8	0.0310199435
+UniRef50_K8DST8|unclassified	0.0310199435
+UniRef50_UPI000344A60B: hypothetical protein	0.0310196050
+UniRef50_UPI000344A60B: hypothetical protein|unclassified	0.0310196050
+UniRef50_Q7WTY4	0.0310093764
+UniRef50_Q7WTY4|unclassified	0.0310093764
+UniRef50_UPI000374E495: hypothetical protein	0.0310088812
+UniRef50_UPI000374E495: hypothetical protein|unclassified	0.0310088812
+UniRef50_B9KVL9: Tricarboxylate transport protein TctA	0.0309973524
+UniRef50_B9KVL9: Tricarboxylate transport protein TctA|unclassified	0.0309973524
+UniRef50_UPI000225B441: phosphate acyltransferase	0.0309971122
+UniRef50_UPI000225B441: phosphate acyltransferase|unclassified	0.0309971122
+UniRef50_UPI00037F0E4A: hypothetical protein	0.0309947498
+UniRef50_UPI00037F0E4A: hypothetical protein|unclassified	0.0309947498
+UniRef50_UPI00045EB0B6: transcriptional regulator	0.0309918575
+UniRef50_UPI00045EB0B6: transcriptional regulator|unclassified	0.0309918575
+UniRef50_K1MEW0	0.0309866470
+UniRef50_K1MEW0|unclassified	0.0309866470
+UniRef50_UPI0001DCFAFD: TonB protein, partial	0.0309853040
+UniRef50_UPI0001DCFAFD: TonB protein, partial|unclassified	0.0309853040
+UniRef50_Q3JHR7	0.0309845420
+UniRef50_Q3JHR7|unclassified	0.0309845420
+UniRef50_UPI00047E0F0D: peptide ABC transporter permease	0.0309828565
+UniRef50_UPI00047E0F0D: peptide ABC transporter permease|unclassified	0.0309828565
+UniRef50_D3PC40: C4-dicarboxylate transporter, small subunit	0.0309787114
+UniRef50_D3PC40: C4-dicarboxylate transporter, small subunit|unclassified	0.0309787114
+UniRef50_M9TDY9: LPXTG-domain-containing protein cell wall anchor domain protein	0.0309762040
+UniRef50_M9TDY9: LPXTG-domain-containing protein cell wall anchor domain protein|unclassified	0.0309762040
+UniRef50_A3PHE2: Phage Terminase	0.0309639146
+UniRef50_A3PHE2: Phage Terminase|unclassified	0.0309639146
+UniRef50_UPI00036F349D: hypothetical protein	0.0309634060
+UniRef50_UPI00036F349D: hypothetical protein|unclassified	0.0309634060
+UniRef50_I1CER6	0.0309628927
+UniRef50_I1CER6|unclassified	0.0309628927
+UniRef50_UPI0004691B5B: acyl-CoA dehydrogenase	0.0309606113
+UniRef50_UPI0004691B5B: acyl-CoA dehydrogenase|unclassified	0.0309606113
+UniRef50_Q9ZHF6: DNA polymerase III PolC-type	0.0309588375
+UniRef50_Q9ZHF6: DNA polymerase III PolC-type|unclassified	0.0309588375
+UniRef50_UPI0003B482FE: potassium transporter TrkA	0.0309559784
+UniRef50_UPI0003B482FE: potassium transporter TrkA|unclassified	0.0309559784
+UniRef50_UPI0003B6370A: muropeptide permease AmpG	0.0309557860
+UniRef50_UPI0003B6370A: muropeptide permease AmpG|unclassified	0.0309557860
+UniRef50_UPI0003B6DCF9: cysteine synthase	0.0309529327
+UniRef50_UPI0003B6DCF9: cysteine synthase|unclassified	0.0309529327
+UniRef50_M5UGA5: Protein containing DUF899, thioredoxin-like protein	0.0309485446
+UniRef50_M5UGA5: Protein containing DUF899, thioredoxin-like protein|unclassified	0.0309485446
+UniRef50_UPI0003495961: hypothetical protein	0.0309479319
+UniRef50_UPI0003495961: hypothetical protein|unclassified	0.0309479319
+UniRef50_B7TY28: TraI	0.0309471996
+UniRef50_B7TY28: TraI|unclassified	0.0309471996
+UniRef50_G5JF54	0.0309441217
+UniRef50_G5JF54|unclassified	0.0309441217
+UniRef50_Q6BUP9: Acetylornithine aminotransferase, mitochondrial	0.0309399585
+UniRef50_Q6BUP9: Acetylornithine aminotransferase, mitochondrial|unclassified	0.0309399585
+UniRef50_A7IMU2	0.0309386595
+UniRef50_A7IMU2|unclassified	0.0309386595
+UniRef50_B9G0F9	0.0309322629
+UniRef50_B9G0F9|unclassified	0.0309322629
+UniRef50_UPI0003690F47: hypothetical protein	0.0309311147
+UniRef50_UPI0003690F47: hypothetical protein|unclassified	0.0309311147
+UniRef50_UPI00042A98DB: PREDICTED: protein Shroom3	0.0309283714
+UniRef50_UPI00042A98DB: PREDICTED: protein Shroom3|unclassified	0.0309283714
+UniRef50_UPI000333B8E8	0.0309213531
+UniRef50_UPI000333B8E8|unclassified	0.0309213531
+UniRef50_Q38X26: Dihydroorotase	0.0309197523
+UniRef50_Q38X26: Dihydroorotase|unclassified	0.0309197523
+UniRef50_K9RE57: GAF domain-containing protein	0.0309193227
+UniRef50_K9RE57: GAF domain-containing protein|unclassified	0.0309193227
+UniRef50_O23240: D-2-hydroxyglutarate dehydrogenase, mitochondrial	0.0309138015
+UniRef50_O23240: D-2-hydroxyglutarate dehydrogenase, mitochondrial|unclassified	0.0309138015
+UniRef50_UPI000455CE56: hypothetical protein CONPUDRAFT_91769	0.0309067088
+UniRef50_UPI000455CE56: hypothetical protein CONPUDRAFT_91769|unclassified	0.0309067088
+UniRef50_UPI0003FD0BE2: D-ribose transporter ATP-binding protein	0.0309006366
+UniRef50_UPI0003FD0BE2: D-ribose transporter ATP-binding protein|unclassified	0.0309006366
+UniRef50_UPI0003D73A02: PREDICTED: uroporphyrinogen decarboxylase isoform X2	0.0308997161
+UniRef50_UPI0003D73A02: PREDICTED: uroporphyrinogen decarboxylase isoform X2|unclassified	0.0308997161
+UniRef50_UPI000361820D: hypothetical protein	0.0308993082
+UniRef50_UPI000361820D: hypothetical protein|unclassified	0.0308993082
+UniRef50_R6A0Z9: ATPase	0.0308905599
+UniRef50_R6A0Z9: ATPase|unclassified	0.0308905599
+UniRef50_A2U1W8: Peptidase family M23	0.0308887243
+UniRef50_A2U1W8: Peptidase family M23|unclassified	0.0308887243
+UniRef50_G8UQE5: FAD dependent oxidoreductase	0.0308883157
+UniRef50_G8UQE5: FAD dependent oxidoreductase|unclassified	0.0308883157
+UniRef50_UPI00046F1741: DNA mismatch repair protein MutL	0.0308872861
+UniRef50_UPI00046F1741: DNA mismatch repair protein MutL|unclassified	0.0308872861
+UniRef50_W5X7T4	0.0308849638
+UniRef50_W5X7T4|unclassified	0.0308849638
+UniRef50_V8R8L3: Histone H1	0.0308789886
+UniRef50_V8R8L3: Histone H1|unclassified	0.0308789886
+UniRef50_C5MG55: Arginine biosynthesis bifunctional protein ArgJ, mitochondrial	0.0308780255
+UniRef50_C5MG55: Arginine biosynthesis bifunctional protein ArgJ, mitochondrial|unclassified	0.0308780255
+UniRef50_U6M6P9	0.0308766267
+UniRef50_U6M6P9|unclassified	0.0308766267
+UniRef50_B2G3L4	0.0308712603
+UniRef50_B2G3L4|unclassified	0.0308712603
+UniRef50_UPI00040ADE19: helicase	0.0308711756
+UniRef50_UPI00040ADE19: helicase|unclassified	0.0308711756
+UniRef50_UPI00036DFBB3: hypothetical protein	0.0308705744
+UniRef50_UPI00036DFBB3: hypothetical protein|unclassified	0.0308705744
+UniRef50_UPI00037D4FA3: hypothetical protein	0.0308689707
+UniRef50_UPI00037D4FA3: hypothetical protein|unclassified	0.0308689707
+UniRef50_Q3U186: Probable arginine--tRNA ligase, mitochondrial	0.0308632100
+UniRef50_Q3U186: Probable arginine--tRNA ligase, mitochondrial|unclassified	0.0308632100
+UniRef50_Q5T160: Probable arginine--tRNA ligase, mitochondrial	0.0308632100
+UniRef50_Q5T160: Probable arginine--tRNA ligase, mitochondrial|unclassified	0.0308632100
+UniRef50_K9HQP8: Phosphate binding protein	0.0308629491
+UniRef50_K9HQP8: Phosphate binding protein|unclassified	0.0308629491
+UniRef50_UPI0004008853: peptidase S8 and S53 subtilisin kexin sedolisin	0.0308621659
+UniRef50_UPI0004008853: peptidase S8 and S53 subtilisin kexin sedolisin|unclassified	0.0308621659
+UniRef50_UPI00040149A9: hypothetical protein	0.0308615981
+UniRef50_UPI00040149A9: hypothetical protein|unclassified	0.0308615981
+UniRef50_UPI000349A51E: hypothetical protein	0.0308572368
+UniRef50_UPI000349A51E: hypothetical protein|unclassified	0.0308572368
+UniRef50_D2TMP2: ParB-like nuclease	0.0308532117
+UniRef50_D2TMP2: ParB-like nuclease|unclassified	0.0308532117
+UniRef50_C6NW58: Putative ATP-dependent RNA helicase	0.0308516833
+UniRef50_C6NW58: Putative ATP-dependent RNA helicase|unclassified	0.0308516833
+UniRef50_A7NN57: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta 2	0.0308516402
+UniRef50_A7NN57: Acetyl-coenzyme A carboxylase carboxyl transferase subunit beta 2|unclassified	0.0308516402
+UniRef50_UPI0003F148E4: glutamate-rich protein 2 isoform 3	0.0308475709
+UniRef50_UPI0003F148E4: glutamate-rich protein 2 isoform 3|unclassified	0.0308475709
+UniRef50_Q1IUD5: Potassium-transporting ATPase A chain	0.0308435337
+UniRef50_Q1IUD5: Potassium-transporting ATPase A chain|unclassified	0.0308435337
+UniRef50_F0L4J6: Phage portal protein, HK97 family	0.0308425200
+UniRef50_F0L4J6: Phage portal protein, HK97 family|unclassified	0.0308425200
+UniRef50_UPI000428E6E8: hypothetical protein	0.0308420414
+UniRef50_UPI000428E6E8: hypothetical protein|unclassified	0.0308420414
+UniRef50_E0SFZ4: Cobalamin synthesis protein	0.0308410340
+UniRef50_E0SFZ4: Cobalamin synthesis protein|unclassified	0.0308410340
+UniRef50_G9Z4A4	0.0308403160
+UniRef50_G9Z4A4|unclassified	0.0308403160
+UniRef50_Q98PF2: Asparagine--tRNA ligase	0.0308337990
+UniRef50_Q98PF2: Asparagine--tRNA ligase|unclassified	0.0308337990
+UniRef50_A0A022FZ54: Diguanylate cyclase	0.0308333620
+UniRef50_A0A022FZ54: Diguanylate cyclase|unclassified	0.0308333620
+UniRef50_UPI000364300D: hypothetical protein	0.0308322458
+UniRef50_UPI000364300D: hypothetical protein|unclassified	0.0308322458
+UniRef50_UPI0003B6C24E: GntR family transcriptional regulator	0.0308288698
+UniRef50_UPI0003B6C24E: GntR family transcriptional regulator|unclassified	0.0308288698
+UniRef50_UPI00016C54E0: DNA gyrase subunit B	0.0308280657
+UniRef50_UPI00016C54E0: DNA gyrase subunit B|unclassified	0.0308280657
+UniRef50_F7U058: Microbial collagenase	0.0308175187
+UniRef50_F7U058: Microbial collagenase|unclassified	0.0308175187
+UniRef50_UPI000364AF8B: hypothetical protein	0.0308164953
+UniRef50_UPI000364AF8B: hypothetical protein|unclassified	0.0308164953
+UniRef50_UPI000375EA8E: hypothetical protein	0.0308109232
+UniRef50_UPI000375EA8E: hypothetical protein|unclassified	0.0308109232
+UniRef50_UPI0002484315: hypothetical protein	0.0308082314
+UniRef50_UPI0002484315: hypothetical protein|unclassified	0.0308082314
+UniRef50_X1YJP7	0.0308048163
+UniRef50_X1YJP7|unclassified	0.0308048163
+UniRef50_UPI0003B32C81: nucleoside-diphosphate sugar epimerase	0.0308017564
+UniRef50_UPI0003B32C81: nucleoside-diphosphate sugar epimerase|unclassified	0.0308017564
+UniRef50_K8E2F6	0.0307950122
+UniRef50_K8E2F6|unclassified	0.0307950122
+UniRef50_UPI00035E1031: hypothetical protein, partial	0.0307943357
+UniRef50_UPI00035E1031: hypothetical protein, partial|unclassified	0.0307943357
+UniRef50_H8YYN3: ABC-type phosphate transport system, periplasmic component	0.0307926048
+UniRef50_H8YYN3: ABC-type phosphate transport system, periplasmic component|unclassified	0.0307926048
+UniRef50_UPI000360E579: hypothetical protein	0.0307908467
+UniRef50_UPI000360E579: hypothetical protein|unclassified	0.0307908467
+UniRef50_F3MYT5: DNA translocase FtsK (Fragment)	0.0307888057
+UniRef50_F3MYT5: DNA translocase FtsK (Fragment)|unclassified	0.0307888057
+UniRef50_UPI00016C4BDE: Chemotaxis signal transduction protein, partial	0.0307881769
+UniRef50_UPI00016C4BDE: Chemotaxis signal transduction protein, partial|unclassified	0.0307881769
+UniRef50_F4GGU7: Type-IV secretion system protein TraC	0.0307859402
+UniRef50_F4GGU7: Type-IV secretion system protein TraC|unclassified	0.0307859402
+UniRef50_U6HQL0: Mechanosensory protein 2	0.0307852143
+UniRef50_U6HQL0: Mechanosensory protein 2|unclassified	0.0307852143
+UniRef50_UPI0003D72F94: PREDICTED: methylmalonate-semialdehyde dehydrogenase [acylating], mitochondrial-like isoform X1	0.0307833436
+UniRef50_UPI0003D72F94: PREDICTED: methylmalonate-semialdehyde dehydrogenase [acylating], mitochondrial-like isoform X1|unclassified	0.0307833436
+UniRef50_UPI000375B6D1: hypothetical protein	0.0307773800
+UniRef50_UPI000375B6D1: hypothetical protein|unclassified	0.0307773800
+UniRef50_G4QSV6	0.0307739782
+UniRef50_G4QSV6|unclassified	0.0307739782
+UniRef50_Q8CIM3: D-2-hydroxyglutarate dehydrogenase, mitochondrial	0.0307737866
+UniRef50_Q8CIM3: D-2-hydroxyglutarate dehydrogenase, mitochondrial|unclassified	0.0307737866
+UniRef50_UPI00036CB9C0: hypothetical protein	0.0307728994
+UniRef50_UPI00036CB9C0: hypothetical protein|unclassified	0.0307728994
+UniRef50_Q89LR8: Valine--tRNA ligase	0.0307724463
+UniRef50_Q89LR8: Valine--tRNA ligase|unclassified	0.0307724463
+UniRef50_B2HK44: PE-PGRS family protein	0.0307711905
+UniRef50_B2HK44: PE-PGRS family protein|unclassified	0.0307711905
+UniRef50_UPI000362AA0E: hypothetical protein	0.0307551729
+UniRef50_UPI000362AA0E: hypothetical protein|unclassified	0.0307551729
+UniRef50_UPI00038266BB: hypothetical protein	0.0307460345
+UniRef50_UPI00038266BB: hypothetical protein|unclassified	0.0307460345
+UniRef50_UPI0003B549EB: amino acid ABC transporter permease	0.0307432580
+UniRef50_UPI0003B549EB: amino acid ABC transporter permease|unclassified	0.0307432580
+UniRef50_UPI00041C2A49: hypothetical protein	0.0307413137
+UniRef50_UPI00041C2A49: hypothetical protein|unclassified	0.0307413137
+UniRef50_U2QYS6: Oligopeptide ABC transporter, oligopeptide-binding protein	0.0307344265
+UniRef50_U2QYS6: Oligopeptide ABC transporter, oligopeptide-binding protein|unclassified	0.0307344265
+UniRef50_UPI00036A9EAE: MULTISPECIES: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase	0.0307296260
+UniRef50_UPI00036A9EAE: MULTISPECIES: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase|unclassified	0.0307296260
+UniRef50_W6I482: NADH-ubiquinone oxidoreductase 39-40 kDa subunit-like protein	0.0307293433
+UniRef50_W6I482: NADH-ubiquinone oxidoreductase 39-40 kDa subunit-like protein|unclassified	0.0307293433
+UniRef50_UPI000362CB68: hypothetical protein	0.0307269774
+UniRef50_UPI000362CB68: hypothetical protein|unclassified	0.0307269774
+UniRef50_UPI00035D78F7: hypothetical protein	0.0307226182
+UniRef50_UPI00035D78F7: hypothetical protein|unclassified	0.0307226182
+UniRef50_W4ANY2: Diadenosine tetraphosphatase	0.0307200312
+UniRef50_W4ANY2: Diadenosine tetraphosphatase|unclassified	0.0307200312
+UniRef50_P46831: Isocitrate lyase	0.0307117793
+UniRef50_P46831: Isocitrate lyase|unclassified	0.0307117793
+UniRef50_UPI000414700A: hypothetical protein	0.0306984706
+UniRef50_UPI000414700A: hypothetical protein|unclassified	0.0306984706
+UniRef50_UPI0003B3BEE3: GntR family transcriptional regulator	0.0306908563
+UniRef50_UPI0003B3BEE3: GntR family transcriptional regulator|unclassified	0.0306908563
+UniRef50_B2SXV7: Lysine--tRNA ligase	0.0306905751
+UniRef50_B2SXV7: Lysine--tRNA ligase|unclassified	0.0306905751
+UniRef50_UPI00047BB8D4: lysyl-tRNA synthetase	0.0306900342
+UniRef50_UPI00047BB8D4: lysyl-tRNA synthetase|unclassified	0.0306900342
+UniRef50_B4SI67: 2-isopropylmalate synthase	0.0306882613
+UniRef50_B4SI67: 2-isopropylmalate synthase|unclassified	0.0306882613
+UniRef50_UPI0003712256: hypothetical protein	0.0306873222
+UniRef50_UPI0003712256: hypothetical protein|unclassified	0.0306873222
+UniRef50_P57720: Chorismate synthase, chloroplastic	0.0306838408
+UniRef50_P57720: Chorismate synthase, chloroplastic|unclassified	0.0306838408
+UniRef50_UPI0003B362C7: prolyl-tRNA synthetase	0.0306812702
+UniRef50_UPI0003B362C7: prolyl-tRNA synthetase|unclassified	0.0306812702
+UniRef50_R5JQM7	0.0306811195
+UniRef50_R5JQM7|unclassified	0.0306811195
+UniRef50_UPI00035E3D1B: hypothetical protein	0.0306808097
+UniRef50_UPI00035E3D1B: hypothetical protein|unclassified	0.0306808097
+UniRef50_UPI0002D6AA73: hypothetical protein	0.0306789413
+UniRef50_UPI0002D6AA73: hypothetical protein|unclassified	0.0306789413
+UniRef50_UPI0003742629: hypothetical protein	0.0306758951
+UniRef50_UPI0003742629: hypothetical protein|unclassified	0.0306758951
+UniRef50_A0A023JAC6: Pirin-like protein	0.0306747807
+UniRef50_A0A023JAC6: Pirin-like protein|unclassified	0.0306747807
+UniRef50_F2L8D2	0.0306647256
+UniRef50_F2L8D2|unclassified	0.0306647256
+UniRef50_Q55FI3: Probable asparagine--tRNA ligase, mitochondrial	0.0306627685
+UniRef50_Q55FI3: Probable asparagine--tRNA ligase, mitochondrial|unclassified	0.0306627685
+UniRef50_UPI00045E7172: hypothetical protein	0.0306548845
+UniRef50_UPI00045E7172: hypothetical protein|unclassified	0.0306548845
+UniRef50_Y2M1I5: Staphyloxanthin biosynthesis protein	0.0306511832
+UniRef50_Y2M1I5: Staphyloxanthin biosynthesis protein|unclassified	0.0306511832
+UniRef50_UPI00036C3C4B: hypothetical protein	0.0306502778
+UniRef50_UPI00036C3C4B: hypothetical protein|unclassified	0.0306502778
+UniRef50_UPI0003C75AF6: von Willebrand factor A	0.0306493302
+UniRef50_UPI0003C75AF6: von Willebrand factor A|unclassified	0.0306493302
+UniRef50_Q7USY7: DNA polymerase IV	0.0306488057
+UniRef50_Q7USY7: DNA polymerase IV|unclassified	0.0306488057
+UniRef50_UPI000476CFB4: hypothetical protein, partial	0.0306485700
+UniRef50_UPI000476CFB4: hypothetical protein, partial|unclassified	0.0306485700
+UniRef50_UPI000455D934: hypothetical protein CONPUDRAFT_159706	0.0306472314
+UniRef50_UPI000455D934: hypothetical protein CONPUDRAFT_159706|unclassified	0.0306472314
+UniRef50_UPI000360632D: peptidyl-prolyl cis-trans isomerase	0.0306454926
+UniRef50_UPI000360632D: peptidyl-prolyl cis-trans isomerase|unclassified	0.0306454926
+UniRef50_UPI00016C4288: CheA Signal Transduction Histidine Kinases (STHK), partial	0.0306426969
+UniRef50_UPI00016C4288: CheA Signal Transduction Histidine Kinases (STHK), partial|unclassified	0.0306426969
+UniRef50_UPI0003A57B20: cell envelope biogenesis protein AsmA	0.0306385890
+UniRef50_UPI0003A57B20: cell envelope biogenesis protein AsmA|unclassified	0.0306385890
+UniRef50_UPI000472B545: hypothetical protein	0.0306324539
+UniRef50_UPI000472B545: hypothetical protein|unclassified	0.0306324539
+UniRef50_UPI000477EFAD: UDP-N-acetylmuramate--alanine ligase	0.0306306602
+UniRef50_UPI000477EFAD: UDP-N-acetylmuramate--alanine ligase|unclassified	0.0306306602
+UniRef50_UPI0003751DCE: hypothetical protein	0.0306305821
+UniRef50_UPI0003751DCE: hypothetical protein|unclassified	0.0306305821
+UniRef50_F4H7D9	0.0306286152
+UniRef50_F4H7D9|unclassified	0.0306286152
+UniRef50_UPI0003814938: hypothetical protein	0.0306257851
+UniRef50_UPI0003814938: hypothetical protein|unclassified	0.0306257851
+UniRef50_Q1IS58: NADH-quinone oxidoreductase subunit H 1	0.0306240711
+UniRef50_Q1IS58: NADH-quinone oxidoreductase subunit H 1|unclassified	0.0306240711
+UniRef50_UPI000374A716: hypothetical protein	0.0306216878
+UniRef50_UPI000374A716: hypothetical protein|unclassified	0.0306216878
+UniRef50_UPI00037FAE39: hypothetical protein	0.0306169663
+UniRef50_UPI00037FAE39: hypothetical protein|unclassified	0.0306169663
+UniRef50_UPI0003B6A261: type VI secretion protein	0.0306131134
+UniRef50_UPI0003B6A261: type VI secretion protein|unclassified	0.0306131134
+UniRef50_UPI000468F792: hypothetical protein	0.0306127734
+UniRef50_UPI000468F792: hypothetical protein|unclassified	0.0306127734
+UniRef50_Q41805: Extensin-like protein	0.0306124710
+UniRef50_Q41805: Extensin-like protein|unclassified	0.0306124710
+UniRef50_R9S878	0.0306098505
+UniRef50_R9S878|unclassified	0.0306098505
+UniRef50_UPI000379013E: hypothetical protein	0.0306023814
+UniRef50_UPI000379013E: hypothetical protein|unclassified	0.0306023814
+UniRef50_UPI0003C11333: PREDICTED: pyruvate kinase-like	0.0305992061
+UniRef50_UPI0003C11333: PREDICTED: pyruvate kinase-like|unclassified	0.0305992061
+UniRef50_B5ENX6	0.0305977970
+UniRef50_B5ENX6|unclassified	0.0305977970
+UniRef50_E0MQS1: Trap dicarboxylate transporter, dctm subunit	0.0305952707
+UniRef50_E0MQS1: Trap dicarboxylate transporter, dctm subunit|unclassified	0.0305952707
+UniRef50_P46799: DNA topoisomerase 1	0.0305925578
+UniRef50_P46799: DNA topoisomerase 1|unclassified	0.0305925578
+UniRef50_UPI0004652C24: glucose dehydrogenase	0.0305911584
+UniRef50_UPI0004652C24: glucose dehydrogenase|unclassified	0.0305911584
+UniRef50_UPI0003EA8165: PREDICTED: tRNA modification GTPase GTPBP3, mitochondrial-like	0.0305884053
+UniRef50_UPI0003EA8165: PREDICTED: tRNA modification GTPase GTPBP3, mitochondrial-like|unclassified	0.0305884053
+UniRef50_A9GHR6: ATP synthase subunit alpha	0.0305610069
+UniRef50_A9GHR6: ATP synthase subunit alpha|unclassified	0.0305610069
+UniRef50_UPI00042382C9: hypothetical protein	0.0305585492
+UniRef50_UPI00042382C9: hypothetical protein|unclassified	0.0305585492
+UniRef50_UPI00038031F8: hypothetical protein	0.0305580436
+UniRef50_UPI00038031F8: hypothetical protein|unclassified	0.0305580436
+UniRef50_K3UNQ6	0.0305546560
+UniRef50_K3UNQ6|unclassified	0.0305546560
+UniRef50_W9PCX8	0.0305524508
+UniRef50_W9PCX8|unclassified	0.0305524508
+UniRef50_A0A024HY81	0.0305520234
+UniRef50_A0A024HY81|unclassified	0.0305520234
+UniRef50_UPI000370BBC9: hypothetical protein	0.0305504959
+UniRef50_UPI000370BBC9: hypothetical protein|unclassified	0.0305504959
+UniRef50_UPI00036CFC95: hypothetical protein	0.0305414082
+UniRef50_UPI00036CFC95: hypothetical protein|unclassified	0.0305414082
+UniRef50_UPI00034A4173: hypothetical protein	0.0305400907
+UniRef50_UPI00034A4173: hypothetical protein|unclassified	0.0305400907
+UniRef50_UPI00044327C9: PREDICTED: ensconsin-like	0.0305399605
+UniRef50_UPI00044327C9: PREDICTED: ensconsin-like|unclassified	0.0305399605
+UniRef50_UPI00036104E3: hypothetical protein	0.0305389601
+UniRef50_UPI00036104E3: hypothetical protein|unclassified	0.0305389601
+UniRef50_UPI0004785315: hypothetical protein	0.0305359753
+UniRef50_UPI0004785315: hypothetical protein|unclassified	0.0305359753
+UniRef50_UPI000237B46F: hydroxymethylglutaryl-CoA synthase	0.0305346003
+UniRef50_UPI000237B46F: hydroxymethylglutaryl-CoA synthase|unclassified	0.0305346003
+UniRef50_W5X7J4: Transcriptional regulatory protein	0.0305343494
+UniRef50_W5X7J4: Transcriptional regulatory protein|unclassified	0.0305343494
+UniRef50_UPI00035D0C93: hypothetical protein	0.0305222180
+UniRef50_UPI00035D0C93: hypothetical protein|unclassified	0.0305222180
+UniRef50_UPI00027427E1: PREDICTED: LOW QUALITY PROTEIN: DNA-binding protein A	0.0305161308
+UniRef50_UPI00027427E1: PREDICTED: LOW QUALITY PROTEIN: DNA-binding protein A|unclassified	0.0305161308
+UniRef50_UPI000376B5E0: hypothetical protein	0.0305099369
+UniRef50_UPI000376B5E0: hypothetical protein|unclassified	0.0305099369
+UniRef50_UPI00047E5336: hypothetical protein	0.0305093570
+UniRef50_UPI00047E5336: hypothetical protein|unclassified	0.0305093570
+UniRef50_UPI0001D2F07D: NAD(FAD)-utilizing dehydrogenase	0.0305080760
+UniRef50_UPI0001D2F07D: NAD(FAD)-utilizing dehydrogenase|unclassified	0.0305080760
+UniRef50_UPI0002B42BB1: PREDICTED: probable Xaa-Pro aminopeptidase 3-like, partial	0.0305051698
+UniRef50_UPI0002B42BB1: PREDICTED: probable Xaa-Pro aminopeptidase 3-like, partial|unclassified	0.0305051698
+UniRef50_UPI00029AA298: heme exporter protein CcmA	0.0305048674
+UniRef50_UPI00029AA298: heme exporter protein CcmA|unclassified	0.0305048674
+UniRef50_UPI000393D820: PREDICTED: ATP-binding cassette sub-family B member 6, mitochondrial-like	0.0305028193
+UniRef50_UPI000393D820: PREDICTED: ATP-binding cassette sub-family B member 6, mitochondrial-like|unclassified	0.0305028193
+UniRef50_UPI000365FB51: hypothetical protein	0.0304997972
+UniRef50_UPI000365FB51: hypothetical protein|unclassified	0.0304997972
+UniRef50_UPI0003B4FCE8: arginyl-tRNA synthetase	0.0304910150
+UniRef50_UPI0003B4FCE8: arginyl-tRNA synthetase|unclassified	0.0304910150
+UniRef50_M2YIG9	0.0304901197
+UniRef50_M2YIG9|unclassified	0.0304901197
+UniRef50_C8NAR0: NapC/NirT cytochrome c family, N-terminal domain protein	0.0304878798
+UniRef50_C8NAR0: NapC/NirT cytochrome c family, N-terminal domain protein|unclassified	0.0304878798
+UniRef50_UPI00047E2807: mannonate dehydratase	0.0304869732
+UniRef50_UPI00047E2807: mannonate dehydratase|unclassified	0.0304869732
+UniRef50_UPI00047907A2: hypothetical protein	0.0304758874
+UniRef50_UPI00047907A2: hypothetical protein|unclassified	0.0304758874
+UniRef50_UPI00037E2400: hypothetical protein	0.0304736074
+UniRef50_UPI00037E2400: hypothetical protein|unclassified	0.0304736074
+UniRef50_UPI0004293C91: UDP-glucose 6-dehydrogenase	0.0304716244
+UniRef50_UPI0004293C91: UDP-glucose 6-dehydrogenase|unclassified	0.0304716244
+UniRef50_B2A5W1: Bifunctional purine biosynthesis protein PurH	0.0304692875
+UniRef50_B2A5W1: Bifunctional purine biosynthesis protein PurH|unclassified	0.0304692875
+UniRef50_K2JI01	0.0304636770
+UniRef50_K2JI01|unclassified	0.0304636770
+UniRef50_UPI000361DA7D: hypothetical protein	0.0304600805
+UniRef50_UPI000361DA7D: hypothetical protein|unclassified	0.0304600805
+UniRef50_A7HKV1: Cysteine--tRNA ligase	0.0304595079
+UniRef50_A7HKV1: Cysteine--tRNA ligase|unclassified	0.0304595079
+UniRef50_UPI0001D2F136: 6-methylsalicylic acid synthase., 6-deoxyerythronolide-B synthase	0.0304545582
+UniRef50_UPI0001D2F136: 6-methylsalicylic acid synthase., 6-deoxyerythronolide-B synthase|unclassified	0.0304545582
+UniRef50_UPI000463F140: hypothetical protein, partial	0.0304497484
+UniRef50_UPI000463F140: hypothetical protein, partial|unclassified	0.0304497484
+UniRef50_F7U3R2: Peptidase U35 phage prohead HK97	0.0304459162
+UniRef50_F7U3R2: Peptidase U35 phage prohead HK97|unclassified	0.0304459162
+UniRef50_UPI00036F4523: hypothetical protein, partial	0.0304458739
+UniRef50_UPI00036F4523: hypothetical protein, partial|unclassified	0.0304458739
+UniRef50_UPI0003645140: hypothetical protein	0.0304457361
+UniRef50_UPI0003645140: hypothetical protein|unclassified	0.0304457361
+UniRef50_R3HKY6	0.0304446132
+UniRef50_R3HKY6|unclassified	0.0304446132
+UniRef50_UPI000408DFD9: hypothetical protein	0.0304443891
+UniRef50_UPI000408DFD9: hypothetical protein|unclassified	0.0304443891
+UniRef50_UPI0003EDC663: PREDICTED: 5-aminolevulinate synthase, erythroid-specific, mitochondrial isoform X3	0.0304385143
+UniRef50_UPI0003EDC663: PREDICTED: 5-aminolevulinate synthase, erythroid-specific, mitochondrial isoform X3|unclassified	0.0304385143
+UniRef50_UPI0003AE35A2: PREDICTED: basic proline-rich protein-like	0.0304376655
+UniRef50_UPI0003AE35A2: PREDICTED: basic proline-rich protein-like|unclassified	0.0304376655
+UniRef50_J9BPB4	0.0304374157
+UniRef50_J9BPB4|unclassified	0.0304374157
+UniRef50_UPI0003B3EDEC: ketol-acid reductoisomerase	0.0304325807
+UniRef50_UPI0003B3EDEC: ketol-acid reductoisomerase|unclassified	0.0304325807
+UniRef50_G0JLX1: IS66 Orf2 family protein	0.0304312924
+UniRef50_G0JLX1: IS66 Orf2 family protein|unclassified	0.0304312924
+UniRef50_C3ID20: 40-residue YVTN family beta-propeller repeat protein	0.0304267217
+UniRef50_C3ID20: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.0304267217
+UniRef50_I4B958	0.0304238863
+UniRef50_I4B958|unclassified	0.0304238863
+UniRef50_UPI00023773E6: hemolysin-type calcium-binding domain-containing protein, partial	0.0304224635
+UniRef50_UPI00023773E6: hemolysin-type calcium-binding domain-containing protein, partial|unclassified	0.0304224635
+UniRef50_UPI00047C2FD3: hypothetical protein	0.0304221343
+UniRef50_UPI00047C2FD3: hypothetical protein|unclassified	0.0304221343
+UniRef50_A5D227	0.0304203983
+UniRef50_A5D227|unclassified	0.0304203983
+UniRef50_B1AJ73: Urease subunit alpha	0.0304188193
+UniRef50_B1AJ73: Urease subunit alpha|unclassified	0.0304188193
+UniRef50_UPI0003B7783A: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase	0.0304185814
+UniRef50_UPI0003B7783A: CDP-diacylglycerol--glycerol-3-phosphate 3-phosphatidyltransferase|unclassified	0.0304185814
+UniRef50_UPI0004687B18: hypothetical protein	0.0304168203
+UniRef50_UPI0004687B18: hypothetical protein|unclassified	0.0304168203
+UniRef50_S0AP12	0.0304162781
+UniRef50_S0AP12|unclassified	0.0304162781
+UniRef50_J8NS05	0.0304136196
+UniRef50_J8NS05|unclassified	0.0304136196
+UniRef50_L8XXS3	0.0304126444
+UniRef50_L8XXS3|unclassified	0.0304126444
+UniRef50_Q8KBX0: Bifunctional enzyme LpxC/FabZ	0.0304046677
+UniRef50_Q8KBX0: Bifunctional enzyme LpxC/FabZ|unclassified	0.0304046677
+UniRef50_UPI0003B46A09: multidrug transporter	0.0303991487
+UniRef50_UPI0003B46A09: multidrug transporter|unclassified	0.0303991487
+UniRef50_O66690: Proline--tRNA ligase	0.0303971843
+UniRef50_O66690: Proline--tRNA ligase|unclassified	0.0303971843
+UniRef50_UPI000288FB4B: PpiC-type peptidyl-prolyl cis-trans isomerase	0.0303925797
+UniRef50_UPI000288FB4B: PpiC-type peptidyl-prolyl cis-trans isomerase|unclassified	0.0303925797
+UniRef50_UPI000414746D: ABC transporter ATP-binding protein	0.0303887498
+UniRef50_UPI000414746D: ABC transporter ATP-binding protein|unclassified	0.0303887498
+UniRef50_Q9LM59: Serine hydroxymethyltransferase 6	0.0303884918
+UniRef50_Q9LM59: Serine hydroxymethyltransferase 6|unclassified	0.0303884918
+UniRef50_U2YL84	0.0303879248
+UniRef50_U2YL84|unclassified	0.0303879248
+UniRef50_UPI00016C3B98: serine/threonine protein kinase	0.0303869985
+UniRef50_UPI00016C3B98: serine/threonine protein kinase|unclassified	0.0303869985
+UniRef50_R6V1M8	0.0303782652
+UniRef50_R6V1M8|unclassified	0.0303782652
+UniRef50_UPI0004763D11: phospholipase C	0.0303744636
+UniRef50_UPI0004763D11: phospholipase C|unclassified	0.0303744636
+UniRef50_UPI00046FC45D: ABC transporter	0.0303691003
+UniRef50_UPI00046FC45D: ABC transporter|unclassified	0.0303691003
+UniRef50_W7VRD2: Basic proline-rich protein	0.0303670838
+UniRef50_W7VRD2: Basic proline-rich protein|unclassified	0.0303670838
+UniRef50_UPI0003773DF7: ABC transporter	0.0303592853
+UniRef50_UPI0003773DF7: ABC transporter|unclassified	0.0303592853
+UniRef50_UPI0003B56D64: outer membrane receptor FepA	0.0303548720
+UniRef50_UPI0003B56D64: outer membrane receptor FepA|unclassified	0.0303548720
+UniRef50_V5PXL4: Flagellar motor protein MotB	0.0303493621
+UniRef50_V5PXL4: Flagellar motor protein MotB|unclassified	0.0303493621
+UniRef50_D4YEH3	0.0303437954
+UniRef50_D4YEH3|unclassified	0.0303437954
+UniRef50_UPI0004721298: GTP pyrophosphokinase, partial	0.0303427409
+UniRef50_UPI0004721298: GTP pyrophosphokinase, partial|unclassified	0.0303427409
+UniRef50_UPI0003C1A8A8: PREDICTED: ABC transporter B family member 25-like	0.0303409400
+UniRef50_UPI0003C1A8A8: PREDICTED: ABC transporter B family member 25-like|unclassified	0.0303409400
+UniRef50_H3RNW1	0.0303403904
+UniRef50_H3RNW1|unclassified	0.0303403904
+UniRef50_UPI00031BB00E: hypothetical protein	0.0303393781
+UniRef50_UPI00031BB00E: hypothetical protein|unclassified	0.0303393781
+UniRef50_S7PQU5	0.0303392036
+UniRef50_S7PQU5|unclassified	0.0303392036
+UniRef50_R7YUC0	0.0303362217
+UniRef50_R7YUC0|unclassified	0.0303362217
+UniRef50_UPI0003830838: hypothetical protein M271_00610	0.0303319899
+UniRef50_UPI0003830838: hypothetical protein M271_00610|unclassified	0.0303319899
+UniRef50_C3CT52	0.0303317082
+UniRef50_C3CT52|unclassified	0.0303317082
+UniRef50_UPI00035C5625: hypothetical protein	0.0303202152
+UniRef50_UPI00035C5625: hypothetical protein|unclassified	0.0303202152
+UniRef50_UPI0003121BA2: hypothetical protein	0.0303185042
+UniRef50_UPI0003121BA2: hypothetical protein|unclassified	0.0303185042
+UniRef50_R6VGJ2: Transcriptional regulator	0.0303155925
+UniRef50_R6VGJ2: Transcriptional regulator|unclassified	0.0303155925
+UniRef50_UPI00036BF090: hypothetical protein	0.0303128085
+UniRef50_UPI00036BF090: hypothetical protein|unclassified	0.0303128085
+UniRef50_UPI0003AE56AA: PREDICTED: collagen alpha-1(III) chain-like	0.0303093476
+UniRef50_UPI0003AE56AA: PREDICTED: collagen alpha-1(III) chain-like|unclassified	0.0303093476
+UniRef50_UPI0003B4A5D1: fusaric acid resistance protein FusB/FusC, partial	0.0303088183
+UniRef50_UPI0003B4A5D1: fusaric acid resistance protein FusB/FusC, partial|unclassified	0.0303088183
+UniRef50_UPI000328C4C6	0.0303076099
+UniRef50_UPI000328C4C6|unclassified	0.0303076099
+UniRef50_D8UII9	0.0303070264
+UniRef50_D8UII9|unclassified	0.0303070264
+UniRef50_D7WD33	0.0303066382
+UniRef50_D7WD33|unclassified	0.0303066382
+UniRef50_UPI0004711AD3: type II secretion system protein F	0.0303047029
+UniRef50_UPI0004711AD3: type II secretion system protein F|unclassified	0.0303047029
+UniRef50_UPI0004110EF4: hypothetical protein	0.0303045439
+UniRef50_UPI0004110EF4: hypothetical protein|unclassified	0.0303045439
+UniRef50_B7PIN5: Secreted salivary gland peptide, putative	0.0302995985
+UniRef50_B7PIN5: Secreted salivary gland peptide, putative|unclassified	0.0302995985
+UniRef50_UPI000440DB19: PREDICTED: molybdenum cofactor biosynthesis protein 1	0.0302984125
+UniRef50_UPI000440DB19: PREDICTED: molybdenum cofactor biosynthesis protein 1|unclassified	0.0302984125
+UniRef50_UPI0003332FC5	0.0302929717
+UniRef50_UPI0003332FC5|unclassified	0.0302929717
+UniRef50_UPI000470450A: hypothetical protein	0.0302909317
+UniRef50_UPI000470450A: hypothetical protein|unclassified	0.0302909317
+UniRef50_N9CYG6	0.0302899629
+UniRef50_N9CYG6|unclassified	0.0302899629
+UniRef50_M5E073: Tricarboxylate transport membrane protein TctA	0.0302897929
+UniRef50_M5E073: Tricarboxylate transport membrane protein TctA|unclassified	0.0302897929
+UniRef50_W1DNW7: IncW plasmid conjugative relaxase protein TrwC (TraI homolog)	0.0302895716
+UniRef50_W1DNW7: IncW plasmid conjugative relaxase protein TrwC (TraI homolog)|unclassified	0.0302895716
+UniRef50_UPI0003B75F90: hypothetical protein	0.0302869754
+UniRef50_UPI0003B75F90: hypothetical protein|unclassified	0.0302869754
+UniRef50_K1YQK0	0.0302854305
+UniRef50_K1YQK0|unclassified	0.0302854305
+UniRef50_UPI00046D4969: hypothetical protein	0.0302853903
+UniRef50_UPI00046D4969: hypothetical protein|unclassified	0.0302853903
+UniRef50_K2C9R8	0.0302827742
+UniRef50_K2C9R8|unclassified	0.0302827742
+UniRef50_L7WWX5: Elastin binding protein	0.0302826437
+UniRef50_L7WWX5: Elastin binding protein|unclassified	0.0302826437
+UniRef50_UPI00046ED203: hypothetical protein	0.0302759650
+UniRef50_UPI00046ED203: hypothetical protein|unclassified	0.0302759650
+UniRef50_UPI00022CA944: PREDICTED: anhydro-N-acetylmuramic acid kinase-like	0.0302757769
+UniRef50_UPI00022CA944: PREDICTED: anhydro-N-acetylmuramic acid kinase-like|unclassified	0.0302757769
+UniRef50_UPI0003682914: hypothetical protein	0.0302742730
+UniRef50_UPI0003682914: hypothetical protein|unclassified	0.0302742730
+UniRef50_Q2P100: Phenylalanine--tRNA ligase beta subunit	0.0302730133
+UniRef50_Q2P100: Phenylalanine--tRNA ligase beta subunit|unclassified	0.0302730133
+UniRef50_Q09810: Adenylyltransferase and sulfurtransferase uba4	0.0302723690
+UniRef50_Q09810: Adenylyltransferase and sulfurtransferase uba4|unclassified	0.0302723690
+UniRef50_UPI00036C9D5C: hypothetical protein	0.0302710908
+UniRef50_UPI00036C9D5C: hypothetical protein|unclassified	0.0302710908
+UniRef50_Q8UD63: 2-isopropylmalate synthase	0.0302696066
+UniRef50_Q8UD63: 2-isopropylmalate synthase|unclassified	0.0302696066
+UniRef50_UPI000377C983: phospholipase C	0.0302688090
+UniRef50_UPI000377C983: phospholipase C|unclassified	0.0302688090
+UniRef50_U6LKZ3	0.0302687213
+UniRef50_U6LKZ3|unclassified	0.0302687213
+UniRef50_UPI000377A165: hypothetical protein	0.0302665530
+UniRef50_UPI000377A165: hypothetical protein|unclassified	0.0302665530
+UniRef50_D7WET9: YeeE/YedE family protein	0.0302582519
+UniRef50_D7WET9: YeeE/YedE family protein|unclassified	0.0302582519
+UniRef50_UPI000371D0CB: hypothetical protein	0.0302579052
+UniRef50_UPI000371D0CB: hypothetical protein|unclassified	0.0302579052
+UniRef50_UPI000378123C: hypothetical protein	0.0302555735
+UniRef50_UPI000378123C: hypothetical protein|unclassified	0.0302555735
+UniRef50_UPI000473F8A0: mannose-1-phosphate guanylyltransferase	0.0302536479
+UniRef50_UPI000473F8A0: mannose-1-phosphate guanylyltransferase|unclassified	0.0302536479
+UniRef50_UPI00036DEA69: hypothetical protein	0.0302465007
+UniRef50_UPI00036DEA69: hypothetical protein|unclassified	0.0302465007
+UniRef50_UPI00046A395B: hypothetical protein	0.0302461806
+UniRef50_UPI00046A395B: hypothetical protein|unclassified	0.0302461806
+UniRef50_UPI0004783FF9: hypothetical protein	0.0302426406
+UniRef50_UPI0004783FF9: hypothetical protein|unclassified	0.0302426406
+UniRef50_X5FE35: DetB	0.0302421064
+UniRef50_X5FE35: DetB|unclassified	0.0302421064
+UniRef50_UPI0002379A1B: acyltransferase 3	0.0302414720
+UniRef50_UPI0002379A1B: acyltransferase 3|unclassified	0.0302414720
+UniRef50_UPI00047393A4: protoheme IX farnesyltransferase	0.0302371652
+UniRef50_UPI00047393A4: protoheme IX farnesyltransferase|unclassified	0.0302371652
+UniRef50_UPI0003C1484E	0.0302367931
+UniRef50_UPI0003C1484E|unclassified	0.0302367931
+UniRef50_UPI000225C0B5: general substrate transporter	0.0302329784
+UniRef50_UPI000225C0B5: general substrate transporter|unclassified	0.0302329784
+UniRef50_F8JDQ8	0.0302286911
+UniRef50_F8JDQ8|unclassified	0.0302286911
+UniRef50_O74942: Peptidyl-prolyl cis-trans isomerase 9	0.0302186737
+UniRef50_O74942: Peptidyl-prolyl cis-trans isomerase 9|unclassified	0.0302186737
+UniRef50_UPI00036AF15E: hypothetical protein	0.0302161768
+UniRef50_UPI00036AF15E: hypothetical protein|unclassified	0.0302161768
+UniRef50_UPI0004094116: hypothetical protein	0.0302152660
+UniRef50_UPI0004094116: hypothetical protein|unclassified	0.0302152660
+UniRef50_UPI00036D0F9D: hypothetical protein	0.0302065978
+UniRef50_UPI00036D0F9D: hypothetical protein|unclassified	0.0302065978
+UniRef50_UPI000361F70E: hypothetical protein	0.0302053953
+UniRef50_UPI000361F70E: hypothetical protein|unclassified	0.0302053953
+UniRef50_UPI0004672B4A: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	0.0302022940
+UniRef50_UPI0004672B4A: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.0302022940
+UniRef50_UPI0004115641: hypothetical protein	0.0301996792
+UniRef50_UPI0004115641: hypothetical protein|unclassified	0.0301996792
+UniRef50_UPI000373E5C0: hypothetical protein	0.0301969398
+UniRef50_UPI000373E5C0: hypothetical protein|unclassified	0.0301969398
+UniRef50_UPI0002E9A0DB: hypothetical protein	0.0301940387
+UniRef50_UPI0002E9A0DB: hypothetical protein|unclassified	0.0301940387
+UniRef50_X2LLL8	0.0301911175
+UniRef50_X2LLL8|unclassified	0.0301911175
+UniRef50_UPI000468A1BA: glycoside hydrolase family 2	0.0301825307
+UniRef50_UPI000468A1BA: glycoside hydrolase family 2|unclassified	0.0301825307
+UniRef50_UPI00046E5399: hypothetical protein	0.0301798652
+UniRef50_UPI00046E5399: hypothetical protein|unclassified	0.0301798652
+UniRef50_Q15SF7: ATP synthase subunit beta 1	0.0301780231
+UniRef50_Q15SF7: ATP synthase subunit beta 1|unclassified	0.0301780231
+UniRef50_H0DGP2: Fusaric acid resistance domain protein	0.0301770138
+UniRef50_H0DGP2: Fusaric acid resistance domain protein|unclassified	0.0301770138
+UniRef50_Q8RBL8: Kojibiose phosphorylase	0.0301744271
+UniRef50_Q8RBL8: Kojibiose phosphorylase|unclassified	0.0301744271
+UniRef50_UPI0002896C02: L-glutamine synthetase	0.0301695637
+UniRef50_UPI0002896C02: L-glutamine synthetase|unclassified	0.0301695637
+UniRef50_UPI000440D7F2: PREDICTED: elongation factor Tu GTP-binding domain-containing protein 1	0.0301685979
+UniRef50_UPI000440D7F2: PREDICTED: elongation factor Tu GTP-binding domain-containing protein 1|unclassified	0.0301685979
+UniRef50_A0A023DKL5	0.0301674588
+UniRef50_A0A023DKL5|unclassified	0.0301674588
+UniRef50_Q93JQ8: Argininosuccinate synthase	0.0301636353
+UniRef50_Q93JQ8: Argininosuccinate synthase|unclassified	0.0301636353
+UniRef50_Q2SSZ1: Glutamate--tRNA ligase	0.0301616026
+UniRef50_Q2SSZ1: Glutamate--tRNA ligase|unclassified	0.0301616026
+UniRef50_UPI0003806D02: hypothetical protein	0.0301439024
+UniRef50_UPI0003806D02: hypothetical protein|unclassified	0.0301439024
+UniRef50_U4TQ04	0.0301423840
+UniRef50_U4TQ04|unclassified	0.0301423840
+UniRef50_UPI00046FC1BE: PTS mannose transporter subunit IIB	0.0301362875
+UniRef50_UPI00046FC1BE: PTS mannose transporter subunit IIB|unclassified	0.0301362875
+UniRef50_UPI00047C0EB3: hypothetical protein	0.0301329501
+UniRef50_UPI00047C0EB3: hypothetical protein|unclassified	0.0301329501
+UniRef50_J3CEU6: Outer membrane protein/peptidoglycan-associated lipoprotein	0.0301307629
+UniRef50_J3CEU6: Outer membrane protein/peptidoglycan-associated lipoprotein|unclassified	0.0301307629
+UniRef50_UPI0003A0A456: hypothetical protein	0.0301257809
+UniRef50_UPI0003A0A456: hypothetical protein|unclassified	0.0301257809
+UniRef50_UPI0003AB92AD	0.0301237450
+UniRef50_UPI0003AB92AD|unclassified	0.0301237450
+UniRef50_UPI000464816A: hypothetical protein	0.0301190901
+UniRef50_UPI000464816A: hypothetical protein|unclassified	0.0301190901
+UniRef50_R5ZCF8	0.0301152124
+UniRef50_R5ZCF8|unclassified	0.0301152124
+UniRef50_G3NJA9	0.0301048863
+UniRef50_G3NJA9|unclassified	0.0301048863
+UniRef50_UPI00037C0F6F: hypothetical protein	0.0301018021
+UniRef50_UPI00037C0F6F: hypothetical protein|unclassified	0.0301018021
+UniRef50_A1U0M3: Transposase, IS4 family	0.0301011550
+UniRef50_A1U0M3: Transposase, IS4 family|unclassified	0.0301011550
+UniRef50_A0A024EJ70: Tail protein D	0.0301010236
+UniRef50_A0A024EJ70: Tail protein D|unclassified	0.0301010236
+UniRef50_A0A011RVK6	0.0300997198
+UniRef50_A0A011RVK6|unclassified	0.0300997198
+UniRef50_UPI0002FD94E4: hypothetical protein	0.0300942785
+UniRef50_UPI0002FD94E4: hypothetical protein|unclassified	0.0300942785
+UniRef50_UPI00032A5C01: PREDICTED: LOW QUALITY PROTEIN: chaperone protein ClpC1, chloroplastic-like	0.0300924508
+UniRef50_UPI00032A5C01: PREDICTED: LOW QUALITY PROTEIN: chaperone protein ClpC1, chloroplastic-like|unclassified	0.0300924508
+UniRef50_U7GG34	0.0300921834
+UniRef50_U7GG34|unclassified	0.0300921834
+UniRef50_E1VKX2	0.0300900785
+UniRef50_E1VKX2|unclassified	0.0300900785
+UniRef50_UPI0003695A84: hypothetical protein	0.0300890567
+UniRef50_UPI0003695A84: hypothetical protein|unclassified	0.0300890567
+UniRef50_UPI0004786151: capsule biosynthesis protein CapD	0.0300887145
+UniRef50_UPI0004786151: capsule biosynthesis protein CapD|unclassified	0.0300887145
+UniRef50_M1Q2M6: ATPase	0.0300867999
+UniRef50_M1Q2M6: ATPase|unclassified	0.0300867999
+UniRef50_UPI0003478E60: hypothetical protein	0.0300748632
+UniRef50_UPI0003478E60: hypothetical protein|unclassified	0.0300748632
+UniRef50_UPI00037DFDE1: hypothetical protein	0.0300740930
+UniRef50_UPI00037DFDE1: hypothetical protein|unclassified	0.0300740930
+UniRef50_UPI000374EA66: hypothetical protein	0.0300737235
+UniRef50_UPI000374EA66: hypothetical protein|unclassified	0.0300737235
+UniRef50_W0FTI4	0.0300698260
+UniRef50_W0FTI4|unclassified	0.0300698260
+UniRef50_UPI000401523E: diguanylate cyclase	0.0300695899
+UniRef50_UPI000401523E: diguanylate cyclase|unclassified	0.0300695899
+UniRef50_UPI0003A99930: hypothetical protein	0.0300644241
+UniRef50_UPI0003A99930: hypothetical protein|unclassified	0.0300644241
+UniRef50_N1ZT49	0.0300624250
+UniRef50_N1ZT49|unclassified	0.0300624250
+UniRef50_P50245: Putative adenosylhomocysteinase 2	0.0300587706
+UniRef50_P50245: Putative adenosylhomocysteinase 2|unclassified	0.0300587706
+UniRef50_UPI000290D07B: flagellin FliC	0.0300566543
+UniRef50_UPI000290D07B: flagellin FliC|unclassified	0.0300566543
+UniRef50_UPI00025564E0: guanosine pentaphosphate phosphohydrolase	0.0300555406
+UniRef50_UPI00025564E0: guanosine pentaphosphate phosphohydrolase|unclassified	0.0300555406
+UniRef50_UPI0003599709: PREDICTED: retinal dehydrogenase 2-like	0.0300514835
+UniRef50_UPI0003599709: PREDICTED: retinal dehydrogenase 2-like|unclassified	0.0300514835
+UniRef50_X6GED8	0.0300500738
+UniRef50_X6GED8|unclassified	0.0300500738
+UniRef50_UPI00029A8758: flagellar biosynthesis protein FliP	0.0300474797
+UniRef50_UPI00029A8758: flagellar biosynthesis protein FliP|unclassified	0.0300474797
+UniRef50_UPI0003B58BDB: glutathione synthetase	0.0300471660
+UniRef50_UPI0003B58BDB: glutathione synthetase|unclassified	0.0300471660
+UniRef50_E6SFQ0: Cell envelope-related transcriptional attenuator	0.0300451325
+UniRef50_E6SFQ0: Cell envelope-related transcriptional attenuator|unclassified	0.0300451325
+UniRef50_UPI00034F6754: PREDICTED: forkhead box protein C1-like	0.0300442293
+UniRef50_UPI00034F6754: PREDICTED: forkhead box protein C1-like|unclassified	0.0300442293
+UniRef50_C9Z6T3	0.0300397621
+UniRef50_C9Z6T3|unclassified	0.0300397621
+UniRef50_UPI0003B717A8: hypothetical protein	0.0300382570
+UniRef50_UPI0003B717A8: hypothetical protein|unclassified	0.0300382570
+UniRef50_T1EFG5	0.0300361307
+UniRef50_T1EFG5|unclassified	0.0300361307
+UniRef50_UPI0004687A75: hypothetical protein	0.0300355739
+UniRef50_UPI0004687A75: hypothetical protein|unclassified	0.0300355739
+UniRef50_C2W144: Cell wall surface anchor	0.0300347418
+UniRef50_C2W144: Cell wall surface anchor|unclassified	0.0300347418
+UniRef50_UPI00034AF72A: hypothetical protein	0.0300332377
+UniRef50_UPI00034AF72A: hypothetical protein|unclassified	0.0300332377
+UniRef50_I4CY06: Diguanylate cyclase	0.0300303932
+UniRef50_I4CY06: Diguanylate cyclase|unclassified	0.0300303932
+UniRef50_D4TYZ8	0.0300168310
+UniRef50_D4TYZ8|unclassified	0.0300168310
+UniRef50_F3LHH4	0.0300166900
+UniRef50_F3LHH4|unclassified	0.0300166900
+UniRef50_F9ZBY3	0.0300166655
+UniRef50_F9ZBY3|unclassified	0.0300166655
+UniRef50_C1MTJ4: Predicted protein	0.0300131852
+UniRef50_C1MTJ4: Predicted protein|unclassified	0.0300131852
+UniRef50_UPI000363BEE3: hypothetical protein	0.0300126746
+UniRef50_UPI000363BEE3: hypothetical protein|unclassified	0.0300126746
+UniRef50_UPI000367F92F: hypothetical protein	0.0300109749
+UniRef50_UPI000367F92F: hypothetical protein|unclassified	0.0300109749
+UniRef50_UPI00029A2AF2: multi-sensor hybrid histidine kinase	0.0300108921
+UniRef50_UPI00029A2AF2: multi-sensor hybrid histidine kinase|unclassified	0.0300108921
+UniRef50_B7GNM0: Arginine--tRNA ligase	0.0300087526
+UniRef50_B7GNM0: Arginine--tRNA ligase|unclassified	0.0300087526
+UniRef50_UPI0000D86BE6: hypothetical protein CIMG_03414	0.0300061484
+UniRef50_UPI0000D86BE6: hypothetical protein CIMG_03414|unclassified	0.0300061484
+UniRef50_UPI000317F3BB: hypothetical protein	0.0299959585
+UniRef50_UPI000317F3BB: hypothetical protein|unclassified	0.0299959585
+UniRef50_K1Y7A4	0.0299922844
+UniRef50_K1Y7A4|unclassified	0.0299922844
+UniRef50_M7B5I8: Circumsporozoite protein	0.0299920811
+UniRef50_M7B5I8: Circumsporozoite protein|unclassified	0.0299920811
+UniRef50_A0A033V3D6	0.0299905512
+UniRef50_A0A033V3D6|unclassified	0.0299905512
+UniRef50_P53101: Cystathionine beta-lyase	0.0299864333
+UniRef50_P53101: Cystathionine beta-lyase|unclassified	0.0299864333
+UniRef50_UPI0003AF559A	0.0299832706
+UniRef50_UPI0003AF559A|unclassified	0.0299832706
+UniRef50_UPI00047DFAFF: hypothetical protein	0.0299823873
+UniRef50_UPI00047DFAFF: hypothetical protein|unclassified	0.0299823873
+UniRef50_UPI00036BF4CB: hypothetical protein	0.0299816635
+UniRef50_UPI00036BF4CB: hypothetical protein|unclassified	0.0299816635
+UniRef50_UPI0003162C39: hypothetical protein	0.0299813429
+UniRef50_UPI0003162C39: hypothetical protein|unclassified	0.0299813429
+UniRef50_F4DEI4: D protein	0.0299805275
+UniRef50_F4DEI4: D protein|unclassified	0.0299805275
+UniRef50_A0A024JCU6: Similar to Saccharomyces cerevisiae YHR168W MTG2 Putative GTPase member of the Obg family	0.0299802455
+UniRef50_A0A024JCU6: Similar to Saccharomyces cerevisiae YHR168W MTG2 Putative GTPase member of the Obg family|unclassified	0.0299802455
+UniRef50_Q50319: Methionine--tRNA ligase	0.0299798823
+UniRef50_Q50319: Methionine--tRNA ligase|unclassified	0.0299798823
+UniRef50_W9UVV8	0.0299791504
+UniRef50_W9UVV8|unclassified	0.0299791504
+UniRef50_A1TRG1: Glucose-1-phosphate adenylyltransferase	0.0299790344
+UniRef50_A1TRG1: Glucose-1-phosphate adenylyltransferase|unclassified	0.0299790344
+UniRef50_UPI00036FD7AA: hypothetical protein	0.0299770596
+UniRef50_UPI00036FD7AA: hypothetical protein|unclassified	0.0299770596
+UniRef50_UPI00025555DE: ribose transport ATP-binding protein RbsA	0.0299766978
+UniRef50_UPI00025555DE: ribose transport ATP-binding protein RbsA|unclassified	0.0299766978
+UniRef50_A0A024JBZ5: Similar to Saccharomyces cerevisiae YGL143C MRF1 Mitochondrial polypeptide chain release factor involved in stop codon recognition and hydrolysis of the peptidyl-tRNA bond	0.0299747885
+UniRef50_A0A024JBZ5: Similar to Saccharomyces cerevisiae YGL143C MRF1 Mitochondrial polypeptide chain release factor involved in stop codon recognition and hydrolysis of the peptidyl-tRNA bond|unclassified	0.0299747885
+UniRef50_G2QUG4	0.0299723972
+UniRef50_G2QUG4|unclassified	0.0299723972
+UniRef50_Q2RWP7	0.0299649702
+UniRef50_Q2RWP7|unclassified	0.0299649702
+UniRef50_UPI00037AAB88: hypothetical protein	0.0299614880
+UniRef50_UPI00037AAB88: hypothetical protein|unclassified	0.0299614880
+UniRef50_UPI0003633A7E: hypothetical protein	0.0299602291
+UniRef50_UPI0003633A7E: hypothetical protein|unclassified	0.0299602291
+UniRef50_G7M7I6: Tn7-like transposition protein C	0.0299504836
+UniRef50_G7M7I6: Tn7-like transposition protein C|unclassified	0.0299504836
+UniRef50_UPI00020AE9D6: PREDICTED: glucose-6-phosphate 1-dehydrogenase	0.0299473709
+UniRef50_UPI00020AE9D6: PREDICTED: glucose-6-phosphate 1-dehydrogenase|unclassified	0.0299473709
+UniRef50_UPI00026C9BE0: preprotein translocase subunit SecD	0.0299463254
+UniRef50_UPI00026C9BE0: preprotein translocase subunit SecD|unclassified	0.0299463254
+UniRef50_UPI000364852F: hypothetical protein	0.0299460209
+UniRef50_UPI000364852F: hypothetical protein|unclassified	0.0299460209
+UniRef50_O31652: Protoheme IX farnesyltransferase 1	0.0299426473
+UniRef50_O31652: Protoheme IX farnesyltransferase 1|unclassified	0.0299426473
+UniRef50_UPI00037A9B52: hypothetical protein	0.0299423543
+UniRef50_UPI00037A9B52: hypothetical protein|unclassified	0.0299423543
+UniRef50_UPI00022B7FD3: PREDICTED: retinal homeobox protein Rx	0.0299398377
+UniRef50_UPI00022B7FD3: PREDICTED: retinal homeobox protein Rx|unclassified	0.0299398377
+UniRef50_A7I119: Capsule biosynthesis protein	0.0299372304
+UniRef50_A7I119: Capsule biosynthesis protein|unclassified	0.0299372304
+UniRef50_V4HW78	0.0299344233
+UniRef50_V4HW78|unclassified	0.0299344233
+UniRef50_A4WJG1: Acetyl-coenzyme A synthetase	0.0299314873
+UniRef50_A4WJG1: Acetyl-coenzyme A synthetase|unclassified	0.0299314873
+UniRef50_UPI00029A8E4B: MFS transporter	0.0299300166
+UniRef50_UPI00029A8E4B: MFS transporter|unclassified	0.0299300166
+UniRef50_P9WJI9: Nicotinate phosphoribosyltransferase pncB1	0.0299281090
+UniRef50_P9WJI9: Nicotinate phosphoribosyltransferase pncB1|unclassified	0.0299281090
+UniRef50_UPI0002555FF6: DNA topoisomerase III	0.0299251341
+UniRef50_UPI0002555FF6: DNA topoisomerase III|unclassified	0.0299251341
+UniRef50_UPI0003F0DF99: PREDICTED: multidrug resistance protein 1-like	0.0299223239
+UniRef50_UPI0003F0DF99: PREDICTED: multidrug resistance protein 1-like|unclassified	0.0299223239
+UniRef50_UPI0002651C73: PREDICTED: methylcrotonoyl-CoA carboxylase subunit alpha, mitochondrial-like	0.0299111084
+UniRef50_UPI0002651C73: PREDICTED: methylcrotonoyl-CoA carboxylase subunit alpha, mitochondrial-like|unclassified	0.0299111084
+UniRef50_R9GCG8	0.0299102490
+UniRef50_R9GCG8|unclassified	0.0299102490
+UniRef50_UPI00036FDBE7: hypothetical protein	0.0299043161
+UniRef50_UPI00036FDBE7: hypothetical protein|unclassified	0.0299043161
+UniRef50_J2CPQ2	0.0299024424
+UniRef50_J2CPQ2|unclassified	0.0299024424
+UniRef50_UPI00046E909F: hypothetical protein	0.0298964294
+UniRef50_UPI00046E909F: hypothetical protein|unclassified	0.0298964294
+UniRef50_UPI000479A3F2: hypothetical protein	0.0298960631
+UniRef50_UPI000479A3F2: hypothetical protein|unclassified	0.0298960631
+UniRef50_A3V315	0.0298945166
+UniRef50_A3V315|unclassified	0.0298945166
+UniRef50_UPI00035C8085: MULTISPECIES: hypothetical protein	0.0298941688
+UniRef50_UPI00035C8085: MULTISPECIES: hypothetical protein|unclassified	0.0298941688
+UniRef50_T1PMY0	0.0298941683
+UniRef50_T1PMY0|unclassified	0.0298941683
+UniRef50_UPI000471E6E8: phosphoenolpyruvate-protein phosphotransferase, partial	0.0298930127
+UniRef50_UPI000471E6E8: phosphoenolpyruvate-protein phosphotransferase, partial|unclassified	0.0298930127
+UniRef50_UPI00047DD048: glucose-6-phosphate dehydrogenase	0.0298925556
+UniRef50_UPI00047DD048: glucose-6-phosphate dehydrogenase|unclassified	0.0298925556
+UniRef50_U6K378: Ribosome biogenesis protein BMS1, putative	0.0298876116
+UniRef50_U6K378: Ribosome biogenesis protein BMS1, putative|unclassified	0.0298876116
+UniRef50_UPI000364B5A2: hypothetical protein	0.0298844482
+UniRef50_UPI000364B5A2: hypothetical protein|unclassified	0.0298844482
+UniRef50_Q02987: Carbamoyltransferase HypF	0.0298837561
+UniRef50_Q02987: Carbamoyltransferase HypF|unclassified	0.0298837561
+UniRef50_A0A017HQ29	0.0298820384
+UniRef50_A0A017HQ29|unclassified	0.0298820384
+UniRef50_S4MVI3	0.0298811164
+UniRef50_S4MVI3|unclassified	0.0298811164
+UniRef50_B8ITI2: Electron transfer flavoprotein alpha subunit	0.0298804928
+UniRef50_B8ITI2: Electron transfer flavoprotein alpha subunit|unclassified	0.0298804928
+UniRef50_UPI0003B567E1: PREDICTED: monofunctional C1-tetrahydrofolate synthase, mitochondrial-like	0.0298785022
+UniRef50_UPI0003B567E1: PREDICTED: monofunctional C1-tetrahydrofolate synthase, mitochondrial-like|unclassified	0.0298785022
+UniRef50_B9NME0: Flagellar motor protein	0.0298781728
+UniRef50_B9NME0: Flagellar motor protein|unclassified	0.0298781728
+UniRef50_P43153: Microbial collagenase	0.0298773530
+UniRef50_P43153: Microbial collagenase|unclassified	0.0298773530
+UniRef50_W6RNE8	0.0298676268
+UniRef50_W6RNE8|unclassified	0.0298676268
+UniRef50_V4ZSV5	0.0298626465
+UniRef50_V4ZSV5|unclassified	0.0298626465
+UniRef50_UPI000401DFA8: hypothetical protein	0.0298609196
+UniRef50_UPI000401DFA8: hypothetical protein|unclassified	0.0298609196
+UniRef50_P62051: L-lactate dehydrogenase	0.0298595856
+UniRef50_P62051: L-lactate dehydrogenase|unclassified	0.0298595856
+UniRef50_UPI00046C8E84: hypothetical protein	0.0298572907
+UniRef50_UPI00046C8E84: hypothetical protein|unclassified	0.0298572907
+UniRef50_V8R0S1: Deoxyribonuclease	0.0298569499
+UniRef50_V8R0S1: Deoxyribonuclease|unclassified	0.0298569499
+UniRef50_Q1GZC0: Chaperone SurA	0.0298563118
+UniRef50_Q1GZC0: Chaperone SurA|unclassified	0.0298563118
+UniRef50_UPI00046C9CA2: hypothetical protein	0.0298442196
+UniRef50_UPI00046C9CA2: hypothetical protein|unclassified	0.0298442196
+UniRef50_F7TXR9: DNA mismatch repair protein MutL	0.0298403599
+UniRef50_F7TXR9: DNA mismatch repair protein MutL|unclassified	0.0298403599
+UniRef50_W0RDN9	0.0298400028
+UniRef50_W0RDN9|unclassified	0.0298400028
+UniRef50_Q1J1F1: Diguanylate cyclase	0.0298316613
+UniRef50_Q1J1F1: Diguanylate cyclase|unclassified	0.0298316613
+UniRef50_UPI0003AF1120: PREDICTED: probable ATP-dependent RNA helicase DDX59 isoform X4	0.0298301733
+UniRef50_UPI0003AF1120: PREDICTED: probable ATP-dependent RNA helicase DDX59 isoform X4|unclassified	0.0298301733
+UniRef50_Q2WGJ0: ATP synthase subunit alpha, chloroplastic	0.0298281629
+UniRef50_Q2WGJ0: ATP synthase subunit alpha, chloroplastic|unclassified	0.0298281629
+UniRef50_Q0SMT3: CTP synthase	0.0298255983
+UniRef50_Q0SMT3: CTP synthase|unclassified	0.0298255983
+UniRef50_UPI0003621B16: hypothetical protein	0.0298175684
+UniRef50_UPI0003621B16: hypothetical protein|unclassified	0.0298175684
+UniRef50_UPI00040F28AD: hypothetical protein	0.0298107116
+UniRef50_UPI00040F28AD: hypothetical protein|unclassified	0.0298107116
+UniRef50_UPI00037A57C2: hypothetical protein	0.0298106894
+UniRef50_UPI00037A57C2: hypothetical protein|unclassified	0.0298106894
+UniRef50_P25696: Bifunctional enolase 2/transcriptional activator	0.0297979585
+UniRef50_P25696: Bifunctional enolase 2/transcriptional activator|unclassified	0.0297979585
+UniRef50_D4H1T8	0.0297934410
+UniRef50_D4H1T8|unclassified	0.0297934410
+UniRef50_D5WFR0: OmpA/MotB domain protein	0.0297864575
+UniRef50_D5WFR0: OmpA/MotB domain protein|unclassified	0.0297864575
+UniRef50_UPI0002D3D214: hypothetical protein	0.0297820277
+UniRef50_UPI0002D3D214: hypothetical protein|unclassified	0.0297820277
+UniRef50_UPI000467BDCA: hypothetical protein	0.0297798089
+UniRef50_UPI000467BDCA: hypothetical protein|unclassified	0.0297798089
+UniRef50_UPI0003B3CAF9: iron transporter FeoB, partial	0.0297795615
+UniRef50_UPI0003B3CAF9: iron transporter FeoB, partial|unclassified	0.0297795615
+UniRef50_I1YHD5: Membrane-bound lytic murein transglycosylase B	0.0297672150
+UniRef50_I1YHD5: Membrane-bound lytic murein transglycosylase B|unclassified	0.0297672150
+UniRef50_D5W9V1: Cobalamin synthesis protein P47K	0.0297604783
+UniRef50_D5W9V1: Cobalamin synthesis protein P47K|unclassified	0.0297604783
+UniRef50_M5FR15	0.0297558219
+UniRef50_M5FR15|unclassified	0.0297558219
+UniRef50_D0Z3Z6: Cell wall endopeptidase family M23/M37	0.0297541640
+UniRef50_D0Z3Z6: Cell wall endopeptidase family M23/M37|unclassified	0.0297541640
+UniRef50_UPI0004727AC2: hypothetical protein	0.0297531372
+UniRef50_UPI0004727AC2: hypothetical protein|unclassified	0.0297531372
+UniRef50_UPI0003B618D1: flagellar hook protein FlgE	0.0297515642
+UniRef50_UPI0003B618D1: flagellar hook protein FlgE|unclassified	0.0297515642
+UniRef50_UPI0003B309DE: peptide ABC transporter ATP-binding protein	0.0297498968
+UniRef50_UPI0003B309DE: peptide ABC transporter ATP-binding protein|unclassified	0.0297498968
+UniRef50_UPI0002EC1AE8: hypothetical protein	0.0297433587
+UniRef50_UPI0002EC1AE8: hypothetical protein|unclassified	0.0297433587
+UniRef50_UPI00046628A7: flagellar hook protein FlgE, partial	0.0297320419
+UniRef50_UPI00046628A7: flagellar hook protein FlgE, partial|unclassified	0.0297320419
+UniRef50_UPI0003B53833: hypothetical protein	0.0297267299
+UniRef50_UPI0003B53833: hypothetical protein|unclassified	0.0297267299
+UniRef50_UPI00046515D4: hypothetical protein	0.0297263152
+UniRef50_UPI00046515D4: hypothetical protein|unclassified	0.0297263152
+UniRef50_A6VMT0: tRNA (mo5U34)-methyltransferase	0.0297258732
+UniRef50_A6VMT0: tRNA (mo5U34)-methyltransferase|unclassified	0.0297258732
+UniRef50_H0DHY4: Elastin-binding protein EbpS	0.0297254849
+UniRef50_H0DHY4: Elastin-binding protein EbpS|unclassified	0.0297254849
+UniRef50_Q4RHJ8: Chromosome 19 SCAF15045, whole genome shotgun sequence. (Fragment)	0.0297234401
+UniRef50_Q4RHJ8: Chromosome 19 SCAF15045, whole genome shotgun sequence. (Fragment)|unclassified	0.0297234401
+UniRef50_UPI00030D5F42: hypothetical protein	0.0297229548
+UniRef50_UPI00030D5F42: hypothetical protein|unclassified	0.0297229548
+UniRef50_G5HK56	0.0297205748
+UniRef50_G5HK56|unclassified	0.0297205748
+UniRef50_Q6MH10: Probable cytosol aminopeptidase	0.0297176547
+UniRef50_Q6MH10: Probable cytosol aminopeptidase|unclassified	0.0297176547
+UniRef50_UPI0003B3EB5D: pyruvate phosphate dikinase	0.0297167165
+UniRef50_UPI0003B3EB5D: pyruvate phosphate dikinase|unclassified	0.0297167165
+UniRef50_I2JH78: Flagellar motor protein MotB	0.0297099867
+UniRef50_I2JH78: Flagellar motor protein MotB|unclassified	0.0297099867
+UniRef50_UPI000361F275: hypothetical protein	0.0297087550
+UniRef50_UPI000361F275: hypothetical protein|unclassified	0.0297087550
+UniRef50_J7C5C3	0.0297083557
+UniRef50_J7C5C3|unclassified	0.0297083557
+UniRef50_UPI00037B7744: hypothetical protein	0.0297041830
+UniRef50_UPI00037B7744: hypothetical protein|unclassified	0.0297041830
+UniRef50_E1ZNG1	0.0297009144
+UniRef50_E1ZNG1|unclassified	0.0297009144
+UniRef50_V9Y1M3: EspD-like indole-3-pyruvic acid imine synthase	0.0296956430
+UniRef50_V9Y1M3: EspD-like indole-3-pyruvic acid imine synthase|unclassified	0.0296956430
+UniRef50_UPI00034D4B82: hypothetical protein	0.0296901814
+UniRef50_UPI00034D4B82: hypothetical protein|unclassified	0.0296901814
+UniRef50_D7GEA9: Regulatory protein	0.0296877529
+UniRef50_D7GEA9: Regulatory protein|unclassified	0.0296877529
+UniRef50_B6ER73	0.0296847713
+UniRef50_B6ER73|unclassified	0.0296847713
+UniRef50_UPI000376A3B0: hypothetical protein	0.0296837495
+UniRef50_UPI000376A3B0: hypothetical protein|unclassified	0.0296837495
+UniRef50_UPI0002891B32: C4-dicarboxylate ABC transporter	0.0296825396
+UniRef50_UPI0002891B32: C4-dicarboxylate ABC transporter|unclassified	0.0296825396
+UniRef50_V5U3M5	0.0296752781
+UniRef50_V5U3M5|unclassified	0.0296752781
+UniRef50_A6FFR8	0.0296702033
+UniRef50_A6FFR8|unclassified	0.0296702033
+UniRef50_UPI0003B4FA18: membrane protein	0.0296653549
+UniRef50_UPI0003B4FA18: membrane protein|unclassified	0.0296653549
+UniRef50_UPI0003FF8F9D: hypothetical protein	0.0296640062
+UniRef50_UPI0003FF8F9D: hypothetical protein|unclassified	0.0296640062
+UniRef50_UPI00046EE526: hypothetical protein	0.0296629866
+UniRef50_UPI00046EE526: hypothetical protein|unclassified	0.0296629866
+UniRef50_V6SW31: Secreted M23/M37 family peptidase	0.0296626923
+UniRef50_V6SW31: Secreted M23/M37 family peptidase|unclassified	0.0296626923
+UniRef50_UPI00041D675E: DNA primase	0.0296582090
+UniRef50_UPI00041D675E: DNA primase|unclassified	0.0296582090
+UniRef50_UPI0002DF5243: hypothetical protein	0.0296574162
+UniRef50_UPI0002DF5243: hypothetical protein|unclassified	0.0296574162
+UniRef50_UPI00037812FE: hypothetical protein	0.0296534668
+UniRef50_UPI00037812FE: hypothetical protein|unclassified	0.0296534668
+UniRef50_UPI0004168D45: DEAD/DEAH box helicase	0.0296523061
+UniRef50_UPI0004168D45: DEAD/DEAH box helicase|unclassified	0.0296523061
+UniRef50_UPI000420F3B0: trehalase	0.0296499637
+UniRef50_UPI000420F3B0: trehalase|unclassified	0.0296499637
+UniRef50_U1SG28	0.0296466590
+UniRef50_U1SG28|unclassified	0.0296466590
+UniRef50_UPI00046D6304: hypothetical protein	0.0296388101
+UniRef50_UPI00046D6304: hypothetical protein|unclassified	0.0296388101
+UniRef50_UPI000380C86E: hypothetical protein	0.0296385205
+UniRef50_UPI000380C86E: hypothetical protein|unclassified	0.0296385205
+UniRef50_I1EQF0	0.0296369653
+UniRef50_I1EQF0|unclassified	0.0296369653
+UniRef50_W0MSW6: Diguanylate phosphodiesterase	0.0296292961
+UniRef50_W0MSW6: Diguanylate phosphodiesterase|unclassified	0.0296292961
+UniRef50_UPI00034AC0CA: hypothetical protein	0.0296264178
+UniRef50_UPI00034AC0CA: hypothetical protein|unclassified	0.0296264178
+UniRef50_A1VYJ5: DNA-directed RNA polymerase subunit beta'	0.0296242108
+UniRef50_A1VYJ5: DNA-directed RNA polymerase subunit beta'|unclassified	0.0296242108
+UniRef50_UPI000392EF25: PREDICTED: MAP7 domain-containing protein 1	0.0296192631
+UniRef50_UPI000392EF25: PREDICTED: MAP7 domain-containing protein 1|unclassified	0.0296192631
+UniRef50_UPI00047B8999: coproporphyrinogen III oxidase	0.0296158096
+UniRef50_UPI00047B8999: coproporphyrinogen III oxidase|unclassified	0.0296158096
+UniRef50_R5FLK7: Sporulation initiation inhibitor protein Soj	0.0296157214
+UniRef50_R5FLK7: Sporulation initiation inhibitor protein Soj|unclassified	0.0296157214
+UniRef50_UPI000375E682: hypothetical protein	0.0296153059
+UniRef50_UPI000375E682: hypothetical protein|unclassified	0.0296153059
+UniRef50_G3XZQ5	0.0296123731
+UniRef50_G3XZQ5|unclassified	0.0296123731
+UniRef50_UPI0004727710: hypothetical protein	0.0296110009
+UniRef50_UPI0004727710: hypothetical protein|unclassified	0.0296110009
+UniRef50_B2TE41: Putative membrane glycoprotein	0.0296050443
+UniRef50_B2TE41: Putative membrane glycoprotein|unclassified	0.0296050443
+UniRef50_R7EC63	0.0295933596
+UniRef50_R7EC63|unclassified	0.0295933596
+UniRef50_UPI0003683269: hypothetical protein	0.0295915646
+UniRef50_UPI0003683269: hypothetical protein|unclassified	0.0295915646
+UniRef50_V4R5H1	0.0295851018
+UniRef50_V4R5H1|unclassified	0.0295851018
+UniRef50_D3E337	0.0295821713
+UniRef50_D3E337|unclassified	0.0295821713
+UniRef50_UPI000287D648: multidrug efflux-associated protein	0.0295818804
+UniRef50_UPI000287D648: multidrug efflux-associated protein|unclassified	0.0295818804
+UniRef50_UPI000478D673: spore gernimation protein GerA	0.0295775098
+UniRef50_UPI000478D673: spore gernimation protein GerA|unclassified	0.0295775098
+UniRef50_B8JFW2: Lysine--tRNA ligase	0.0295647905
+UniRef50_B8JFW2: Lysine--tRNA ligase|unclassified	0.0295647905
+UniRef50_UPI00046252B9: adenine deaminase	0.0295580567
+UniRef50_UPI00046252B9: adenine deaminase|unclassified	0.0295580567
+UniRef50_A0A059N7H1: Mucin 17-like protein (Fragment)	0.0295556630
+UniRef50_A0A059N7H1: Mucin 17-like protein (Fragment)|unclassified	0.0295556630
+UniRef50_UPI0002883C79: histidine kinase	0.0295467264
+UniRef50_UPI0002883C79: histidine kinase|unclassified	0.0295467264
+UniRef50_Q3MGL3: Aspartate--tRNA(Asp/Asn) ligase	0.0295462164
+UniRef50_Q3MGL3: Aspartate--tRNA(Asp/Asn) ligase|unclassified	0.0295462164
+UniRef50_E3CM39	0.0295428345
+UniRef50_E3CM39|unclassified	0.0295428345
+UniRef50_UPI000468FA94: peptidase	0.0295410043
+UniRef50_UPI000468FA94: peptidase|unclassified	0.0295410043
+UniRef50_F3ZQH0	0.0295383978
+UniRef50_F3ZQH0|unclassified	0.0295383978
+UniRef50_K1PM14: Threonine synthase-like 2	0.0295368749
+UniRef50_K1PM14: Threonine synthase-like 2|unclassified	0.0295368749
+UniRef50_W6VG46: Rhamnan synthesis F	0.0295367538
+UniRef50_W6VG46: Rhamnan synthesis F|unclassified	0.0295367538
+UniRef50_C5DX72: ZYRO0F02728p	0.0295343371
+UniRef50_C5DX72: ZYRO0F02728p|unclassified	0.0295343371
+UniRef50_D4H2J1	0.0295325902
+UniRef50_D4H2J1|unclassified	0.0295325902
+UniRef50_UPI000367C450: hypothetical protein	0.0295312673
+UniRef50_UPI000367C450: hypothetical protein|unclassified	0.0295312673
+UniRef50_UPI00034443E1: PREDICTED: glutathione reductase, mitochondrial	0.0295262222
+UniRef50_UPI00034443E1: PREDICTED: glutathione reductase, mitochondrial|unclassified	0.0295262222
+UniRef50_UPI000380F983: hypothetical protein	0.0295244082
+UniRef50_UPI000380F983: hypothetical protein|unclassified	0.0295244082
+UniRef50_UPI00040463FD: UDP-N-acetylmuramoylalanyl-D-glutamyl-2, 6-diaminopimelate--D-alanyl-D-alanine ligase	0.0295210806
+UniRef50_UPI00040463FD: UDP-N-acetylmuramoylalanyl-D-glutamyl-2, 6-diaminopimelate--D-alanyl-D-alanine ligase|unclassified	0.0295210806
+UniRef50_UPI00034D3A31: hypothetical protein	0.0295186779
+UniRef50_UPI00034D3A31: hypothetical protein|unclassified	0.0295186779
+UniRef50_R8TF12: TQXA domain-containing protein	0.0295096599
+UniRef50_R8TF12: TQXA domain-containing protein|unclassified	0.0295096599
+UniRef50_UPI00036659B6: hypothetical protein	0.0294883814
+UniRef50_UPI00036659B6: hypothetical protein|unclassified	0.0294883814
+UniRef50_B9KMF2	0.0294871924
+UniRef50_B9KMF2|unclassified	0.0294871924
+UniRef50_UPI0003B5D661: DNA polymerase III subunit alpha	0.0294869084
+UniRef50_UPI0003B5D661: DNA polymerase III subunit alpha|unclassified	0.0294869084
+UniRef50_H8Z4B4: Putative signal transduction protein	0.0294861690
+UniRef50_H8Z4B4: Putative signal transduction protein|unclassified	0.0294861690
+UniRef50_UPI0003717348: hypothetical protein	0.0294851092
+UniRef50_UPI0003717348: hypothetical protein|unclassified	0.0294851092
+UniRef50_B8G5P6	0.0294807964
+UniRef50_B8G5P6|unclassified	0.0294807964
+UniRef50_Q8ZTQ7: Adenosylhomocysteinase	0.0294772463
+UniRef50_Q8ZTQ7: Adenosylhomocysteinase|unclassified	0.0294772463
+UniRef50_D4M9X6	0.0294767970
+UniRef50_D4M9X6|unclassified	0.0294767970
+UniRef50_A8MM96	0.0294767494
+UniRef50_A8MM96|unclassified	0.0294767494
+UniRef50_H1Y3J7: Conjugative relaxase domain protein	0.0294753813
+UniRef50_H1Y3J7: Conjugative relaxase domain protein|unclassified	0.0294753813
+UniRef50_F8UH76: Monovalent cation/H+ antiporter subunit A (Fragment)	0.0294744488
+UniRef50_F8UH76: Monovalent cation/H+ antiporter subunit A (Fragment)|unclassified	0.0294744488
+UniRef50_M4RYW8: Putative thioesterase	0.0294648516
+UniRef50_M4RYW8: Putative thioesterase|unclassified	0.0294648516
+UniRef50_Q8NR12: Ribose import ATP-binding protein RbsA	0.0294606898
+UniRef50_Q8NR12: Ribose import ATP-binding protein RbsA|unclassified	0.0294606898
+UniRef50_Q9BYV1: Alanine--glyoxylate aminotransferase 2, mitochondrial	0.0294590494
+UniRef50_Q9BYV1: Alanine--glyoxylate aminotransferase 2, mitochondrial|unclassified	0.0294590494
+UniRef50_UPI00046D3E4C: hypothetical protein	0.0294583473
+UniRef50_UPI00046D3E4C: hypothetical protein|unclassified	0.0294583473
+UniRef50_UPI0004190CF8: DNA mismatch repair protein MutL	0.0294562869
+UniRef50_UPI0004190CF8: DNA mismatch repair protein MutL|unclassified	0.0294562869
+UniRef50_S0AZE0	0.0294480130
+UniRef50_S0AZE0|unclassified	0.0294480130
+UniRef50_A0A023FFW2: Putative glycine-rich secreted cement protein (Fragment)	0.0294459043
+UniRef50_A0A023FFW2: Putative glycine-rich secreted cement protein (Fragment)|unclassified	0.0294459043
+UniRef50_D3VHD6	0.0294456762
+UniRef50_D3VHD6|unclassified	0.0294456762
+UniRef50_UPI0003A6DEF1: preprotein translocase subunit SecA	0.0294443960
+UniRef50_UPI0003A6DEF1: preprotein translocase subunit SecA|unclassified	0.0294443960
+UniRef50_UPI00035CC198: hypothetical protein	0.0294401456
+UniRef50_UPI00035CC198: hypothetical protein|unclassified	0.0294401456
+UniRef50_A0A035A532	0.0294384788
+UniRef50_A0A035A532|unclassified	0.0294384788
+UniRef50_F4RCY2	0.0294228190
+UniRef50_F4RCY2|unclassified	0.0294228190
+UniRef50_Q8K9W5: Phosphate acetyltransferase	0.0294205566
+UniRef50_Q8K9W5: Phosphate acetyltransferase|unclassified	0.0294205566
+UniRef50_M1NP54	0.0294195370
+UniRef50_M1NP54|unclassified	0.0294195370
+UniRef50_UPI00046D3482: hypothetical protein	0.0294160801
+UniRef50_UPI00046D3482: hypothetical protein|unclassified	0.0294160801
+UniRef50_UPI000262CBE5: glutathione reductase	0.0294158149
+UniRef50_UPI000262CBE5: glutathione reductase|unclassified	0.0294158149
+UniRef50_N4V356: Cysteine synthase	0.0294146644
+UniRef50_N4V356: Cysteine synthase|unclassified	0.0294146644
+UniRef50_UPI00047C047A: HemD protein	0.0294140073
+UniRef50_UPI00047C047A: HemD protein|unclassified	0.0294140073
+UniRef50_C3PF03: Bifunctional purine biosynthesis protein PurH	0.0294130364
+UniRef50_C3PF03: Bifunctional purine biosynthesis protein PurH|unclassified	0.0294130364
+UniRef50_UPI000375C426: hypothetical protein	0.0294109190
+UniRef50_UPI000375C426: hypothetical protein|unclassified	0.0294109190
+UniRef50_UPI00041A278C: folylpolyglutamate synthase	0.0294086125
+UniRef50_UPI00041A278C: folylpolyglutamate synthase|unclassified	0.0294086125
+UniRef50_P63978: DNA polymerase III subunit alpha	0.0294058211
+UniRef50_P63978: DNA polymerase III subunit alpha|unclassified	0.0294058211
+UniRef50_J9S761	0.0294044846
+UniRef50_J9S761|unclassified	0.0294044846
+UniRef50_UPI0004415ED9: GTP-binding protein Obg/CgtA	0.0294028507
+UniRef50_UPI0004415ED9: GTP-binding protein Obg/CgtA|unclassified	0.0294028507
+UniRef50_UPI0003757871: hypothetical protein	0.0294005406
+UniRef50_UPI0003757871: hypothetical protein|unclassified	0.0294005406
+UniRef50_F0HAX6	0.0293969192
+UniRef50_F0HAX6|unclassified	0.0293969192
+UniRef50_UPI00036A64C5: hypothetical protein	0.0293936176
+UniRef50_UPI00036A64C5: hypothetical protein|unclassified	0.0293936176
+UniRef50_UPI00037D8EA4: hypothetical protein	0.0293849458
+UniRef50_UPI00037D8EA4: hypothetical protein|unclassified	0.0293849458
+UniRef50_UPI0003B6B198: chromosomal replication initiation protein	0.0293809592
+UniRef50_UPI0003B6B198: chromosomal replication initiation protein|unclassified	0.0293809592
+UniRef50_UPI00036818E1: hypothetical protein	0.0293800302
+UniRef50_UPI00036818E1: hypothetical protein|unclassified	0.0293800302
+UniRef50_Q6FYZ7: Glycine dehydrogenase (decarboxylating)	0.0293798889
+UniRef50_Q6FYZ7: Glycine dehydrogenase (decarboxylating)|unclassified	0.0293798889
+UniRef50_UPI0003B49864: transporter	0.0293742723
+UniRef50_UPI0003B49864: transporter|unclassified	0.0293742723
+UniRef50_Q9PF40: Chaperone SurA	0.0293738293
+UniRef50_Q9PF40: Chaperone SurA|unclassified	0.0293738293
+UniRef50_A9G7W0: Probable bifunctional SAT/APS kinase 2	0.0293723985
+UniRef50_A9G7W0: Probable bifunctional SAT/APS kinase 2|unclassified	0.0293723985
+UniRef50_E4KP90	0.0293710203
+UniRef50_E4KP90|unclassified	0.0293710203
+UniRef50_A4G1V2: Valine--tRNA ligase	0.0293644160
+UniRef50_A4G1V2: Valine--tRNA ligase|unclassified	0.0293644160
+UniRef50_UPI0002E39F43: hypothetical protein	0.0293628905
+UniRef50_UPI0002E39F43: hypothetical protein|unclassified	0.0293628905
+UniRef50_D2NRK7	0.0293434847
+UniRef50_D2NRK7|unclassified	0.0293434847
+UniRef50_H3EFD5	0.0293431845
+UniRef50_H3EFD5|unclassified	0.0293431845
+UniRef50_UPI0002559CF6: 3-hydroxyacyl-CoA dehydrogenase, NAD-binding, partial	0.0293423784
+UniRef50_UPI0002559CF6: 3-hydroxyacyl-CoA dehydrogenase, NAD-binding, partial|unclassified	0.0293423784
+UniRef50_T1FJ63	0.0293395324
+UniRef50_T1FJ63|unclassified	0.0293395324
+UniRef50_UPI000361AEA4: hypothetical protein	0.0293394111
+UniRef50_UPI000361AEA4: hypothetical protein|unclassified	0.0293394111
+UniRef50_UPI00036A6475: hypothetical protein	0.0293358764
+UniRef50_UPI00036A6475: hypothetical protein|unclassified	0.0293358764
+UniRef50_UPI00037C520F: hypothetical protein	0.0293318906
+UniRef50_UPI00037C520F: hypothetical protein|unclassified	0.0293318906
+UniRef50_UPI00035D55FE: hypothetical protein	0.0293273998
+UniRef50_UPI00035D55FE: hypothetical protein|unclassified	0.0293273998
+UniRef50_R4YQZ1	0.0293271041
+UniRef50_R4YQZ1|unclassified	0.0293271041
+UniRef50_UPI000440B5B5: PREDICTED: pyruvate dehydrogenase E1 component subunit alpha type II, mitochondrial-like	0.0293247460
+UniRef50_UPI000440B5B5: PREDICTED: pyruvate dehydrogenase E1 component subunit alpha type II, mitochondrial-like|unclassified	0.0293247460
+UniRef50_UPI00029B1CCC: 8-amino-7-oxononanoate synthase	0.0293228197
+UniRef50_UPI00029B1CCC: 8-amino-7-oxononanoate synthase|unclassified	0.0293228197
+UniRef50_K3XFN2	0.0293205309
+UniRef50_K3XFN2|unclassified	0.0293205309
+UniRef50_R8L958	0.0293157769
+UniRef50_R8L958|unclassified	0.0293157769
+UniRef50_Q13B96	0.0293115106
+UniRef50_Q13B96|unclassified	0.0293115106
+UniRef50_UPI00037D52AC: hypothetical protein	0.0293073103
+UniRef50_UPI00037D52AC: hypothetical protein|unclassified	0.0293073103
+UniRef50_UPI0004638197: pseudouridine synthase	0.0293048125
+UniRef50_UPI0004638197: pseudouridine synthase|unclassified	0.0293048125
+UniRef50_Q2A1U9: Lipid A export ATP-binding/permease protein MsbA	0.0293038681
+UniRef50_Q2A1U9: Lipid A export ATP-binding/permease protein MsbA|unclassified	0.0293038681
+UniRef50_UPI0003B37B84: CRISPR-associated protein Cas3, partial	0.0293007454
+UniRef50_UPI0003B37B84: CRISPR-associated protein Cas3, partial|unclassified	0.0293007454
+UniRef50_UPI000477B9A7: membrane protein	0.0292980048
+UniRef50_UPI000477B9A7: membrane protein|unclassified	0.0292980048
+UniRef50_O87393: Glutamine synthetase 3	0.0292963980
+UniRef50_O87393: Glutamine synthetase 3|unclassified	0.0292963980
+UniRef50_Q8ERW5: ATP-dependent helicase/nuclease subunit A	0.0292960160
+UniRef50_Q8ERW5: ATP-dependent helicase/nuclease subunit A|unclassified	0.0292960160
+UniRef50_UPI0002658CD5: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial-like	0.0292895750
+UniRef50_UPI0002658CD5: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial-like|unclassified	0.0292895750
+UniRef50_C1MNG9: Predicted protein	0.0292751782
+UniRef50_C1MNG9: Predicted protein|unclassified	0.0292751782
+UniRef50_UPI00042B734C: Ornithine-delta-aminotransferase isoform 2	0.0292736992
+UniRef50_UPI00042B734C: Ornithine-delta-aminotransferase isoform 2|unclassified	0.0292736992
+UniRef50_UPI00037A113D: hypothetical protein	0.0292635739
+UniRef50_UPI00037A113D: hypothetical protein|unclassified	0.0292635739
+UniRef50_I2EDD9	0.0292622229
+UniRef50_I2EDD9|unclassified	0.0292622229
+UniRef50_UPI00047191B3: Clp protease ClpX, partial	0.0292606468
+UniRef50_UPI00047191B3: Clp protease ClpX, partial|unclassified	0.0292606468
+UniRef50_R5R9S3: Exopolyphosphatase	0.0292577180
+UniRef50_R5R9S3: Exopolyphosphatase|unclassified	0.0292577180
+UniRef50_B9EC06	0.0292483507
+UniRef50_B9EC06|unclassified	0.0292483507
+UniRef50_UPI00037EBF8D: hypothetical protein	0.0292479359
+UniRef50_UPI00037EBF8D: hypothetical protein|unclassified	0.0292479359
+UniRef50_UPI0003B346B1: glycine/betaine ABC transporter	0.0292468859
+UniRef50_UPI0003B346B1: glycine/betaine ABC transporter|unclassified	0.0292468859
+UniRef50_G2IZ95: FIST domain protein	0.0292445910
+UniRef50_G2IZ95: FIST domain protein|unclassified	0.0292445910
+UniRef50_D5UQ22: Cell envelope-related transcriptional attenuator	0.0292353682
+UniRef50_D5UQ22: Cell envelope-related transcriptional attenuator|unclassified	0.0292353682
+UniRef50_UPI0004726D5E: amino acid permease	0.0292353596
+UniRef50_UPI0004726D5E: amino acid permease|unclassified	0.0292353596
+UniRef50_UPI00036C6220: MULTISPECIES: hypothetical protein	0.0292343186
+UniRef50_UPI00036C6220: MULTISPECIES: hypothetical protein|unclassified	0.0292343186
+UniRef50_UPI00047161B5: spore gernimation protein KA	0.0292258476
+UniRef50_UPI00047161B5: spore gernimation protein KA|unclassified	0.0292258476
+UniRef50_UPI000263135D: peptidoglycan-binding protein	0.0292253606
+UniRef50_UPI000263135D: peptidoglycan-binding protein|unclassified	0.0292253606
+UniRef50_K5VLK7: Outer membrane transport family protein	0.0292233073
+UniRef50_K5VLK7: Outer membrane transport family protein|unclassified	0.0292233073
+UniRef50_K8NZF8	0.0292194232
+UniRef50_K8NZF8|unclassified	0.0292194232
+UniRef50_Q4A602: ATP synthase subunit alpha	0.0292192907
+UniRef50_Q4A602: ATP synthase subunit alpha|unclassified	0.0292192907
+UniRef50_R7DCV9: Minor teichoic acid biosynthesis protein GgaA	0.0292189022
+UniRef50_R7DCV9: Minor teichoic acid biosynthesis protein GgaA|unclassified	0.0292189022
+UniRef50_UPI0003B5133D: ATP-dependent DNA helicase	0.0292162936
+UniRef50_UPI0003B5133D: ATP-dependent DNA helicase|unclassified	0.0292162936
+UniRef50_Q2YBS1: Phenylalanine--tRNA ligase beta subunit	0.0292162395
+UniRef50_Q2YBS1: Phenylalanine--tRNA ligase beta subunit|unclassified	0.0292162395
+UniRef50_C0Q9X9: DNA-directed RNA polymerase subunit beta	0.0292138333
+UniRef50_C0Q9X9: DNA-directed RNA polymerase subunit beta|unclassified	0.0292138333
+UniRef50_UPI00046F109B: isoleucyl-tRNA synthase	0.0292137129
+UniRef50_UPI00046F109B: isoleucyl-tRNA synthase|unclassified	0.0292137129
+UniRef50_UPI00035E2599: hypothetical protein	0.0292114816
+UniRef50_UPI00035E2599: hypothetical protein|unclassified	0.0292114816
+UniRef50_UPI0001746415: Pyruvate kinase	0.0292109097
+UniRef50_UPI0001746415: Pyruvate kinase|unclassified	0.0292109097
+UniRef50_P81186: Periplasmic nitrate reductase	0.0292103654
+UniRef50_P81186: Periplasmic nitrate reductase|unclassified	0.0292103654
+UniRef50_P75052: Thymidine phosphorylase	0.0292095973
+UniRef50_P75052: Thymidine phosphorylase|unclassified	0.0292095973
+UniRef50_UPI00047DFD54: hypothetical protein	0.0292089859
+UniRef50_UPI00047DFD54: hypothetical protein|unclassified	0.0292089859
+UniRef50_UPI0004629704: pyruvate decarboxylase, partial	0.0292058905
+UniRef50_UPI0004629704: pyruvate decarboxylase, partial|unclassified	0.0292058905
+UniRef50_I1ZK42: Ukp protein	0.0292030041
+UniRef50_I1ZK42: Ukp protein|unclassified	0.0292030041
+UniRef50_UPI0003B590B8: hypothetical protein	0.0292014061
+UniRef50_UPI0003B590B8: hypothetical protein|unclassified	0.0292014061
+UniRef50_UPI0003C4525D: PREDICTED: LOW QUALITY PROTEIN: zinc finger homeobox protein 4	0.0291898945
+UniRef50_UPI0003C4525D: PREDICTED: LOW QUALITY PROTEIN: zinc finger homeobox protein 4|unclassified	0.0291898945
+UniRef50_UPI0003C107D3: PREDICTED: dehydrogenase/reductase SDR family member 4-like	0.0291866937
+UniRef50_UPI0003C107D3: PREDICTED: dehydrogenase/reductase SDR family member 4-like|unclassified	0.0291866937
+UniRef50_Q98LT6: Glycine dehydrogenase (decarboxylating)	0.0291865104
+UniRef50_Q98LT6: Glycine dehydrogenase (decarboxylating)|unclassified	0.0291865104
+UniRef50_UPI00035CBF91: hypothetical protein	0.0291842636
+UniRef50_UPI00035CBF91: hypothetical protein|unclassified	0.0291842636
+UniRef50_W1SJP6: ABC transporter substrate-binding protein	0.0291824804
+UniRef50_W1SJP6: ABC transporter substrate-binding protein|unclassified	0.0291824804
+UniRef50_Q12NN6	0.0291820401
+UniRef50_Q12NN6|unclassified	0.0291820401
+UniRef50_D3CSA0: Aliphatic sulfonates family ABC transporter, periplasmic ligand-binding protein	0.0291734455
+UniRef50_D3CSA0: Aliphatic sulfonates family ABC transporter, periplasmic ligand-binding protein|unclassified	0.0291734455
+UniRef50_UPI0002659759: PREDICTED: acyl-coenzyme A synthetase ACSM3, mitochondrial-like	0.0291733407
+UniRef50_UPI0002659759: PREDICTED: acyl-coenzyme A synthetase ACSM3, mitochondrial-like|unclassified	0.0291733407
+UniRef50_D3FWQ3: Tripartate TCA cycle transporter TctA	0.0291717730
+UniRef50_D3FWQ3: Tripartate TCA cycle transporter TctA|unclassified	0.0291717730
+UniRef50_UPI0003A594AB: hypothetical protein	0.0291685813
+UniRef50_UPI0003A594AB: hypothetical protein|unclassified	0.0291685813
+UniRef50_D3FA78	0.0291676486
+UniRef50_D3FA78|unclassified	0.0291676486
+UniRef50_D8TRY6	0.0291668892
+UniRef50_D8TRY6|unclassified	0.0291668892
+UniRef50_F4QAU5: WH2 domain-containing protein	0.0291600819
+UniRef50_F4QAU5: WH2 domain-containing protein|unclassified	0.0291600819
+UniRef50_F4QBD2: Threonine synthase	0.0291570469
+UniRef50_F4QBD2: Threonine synthase|unclassified	0.0291570469
+UniRef50_F9FPF6	0.0291555616
+UniRef50_F9FPF6|unclassified	0.0291555616
+UniRef50_Q0VLR3: 2-isopropylmalate synthase	0.0291503500
+UniRef50_Q0VLR3: 2-isopropylmalate synthase|unclassified	0.0291503500
+UniRef50_UPI000444A579: hypothetical protein STEHIDRAFT_80731	0.0291486045
+UniRef50_UPI000444A579: hypothetical protein STEHIDRAFT_80731|unclassified	0.0291486045
+UniRef50_UPI000469B245: hypothetical protein	0.0291469162
+UniRef50_UPI000469B245: hypothetical protein|unclassified	0.0291469162
+UniRef50_Q73F23: Tn7-like transposition protein C	0.0291464790
+UniRef50_Q73F23: Tn7-like transposition protein C|unclassified	0.0291464790
+UniRef50_UPI0003B55D0D: CTP synthetase	0.0291461626
+UniRef50_UPI0003B55D0D: CTP synthetase|unclassified	0.0291461626
+UniRef50_A3W0R3	0.0291459612
+UniRef50_A3W0R3|unclassified	0.0291459612
+UniRef50_UPI00047ACC3D: hypothetical protein	0.0291412346
+UniRef50_UPI00047ACC3D: hypothetical protein|unclassified	0.0291412346
+UniRef50_UPI0003C1B3D1	0.0291377633
+UniRef50_UPI0003C1B3D1|unclassified	0.0291377633
+UniRef50_T0LM07	0.0291371040
+UniRef50_T0LM07|unclassified	0.0291371040
+UniRef50_B3PC18: Putative lipoprotein	0.0291303404
+UniRef50_B3PC18: Putative lipoprotein|unclassified	0.0291303404
+UniRef50_UPI00041EA555: hypothetical protein	0.0291292947
+UniRef50_UPI00041EA555: hypothetical protein|unclassified	0.0291292947
+UniRef50_UPI0003956406	0.0291289383
+UniRef50_UPI0003956406|unclassified	0.0291289383
+UniRef50_UPI00035D59A5: hypothetical protein	0.0291278136
+UniRef50_UPI00035D59A5: hypothetical protein|unclassified	0.0291278136
+UniRef50_Q47MV7: Glutamate 5-kinase	0.0291268791
+UniRef50_Q47MV7: Glutamate 5-kinase|unclassified	0.0291268791
+UniRef50_UPI0004783BAC: hypothetical protein	0.0291268370
+UniRef50_UPI0004783BAC: hypothetical protein|unclassified	0.0291268370
+UniRef50_J5SUN9	0.0291267698
+UniRef50_J5SUN9|unclassified	0.0291267698
+UniRef50_L0K8D4	0.0291222411
+UniRef50_L0K8D4|unclassified	0.0291222411
+UniRef50_F7YH12: OmpA/MotB domain protein	0.0291221548
+UniRef50_F7YH12: OmpA/MotB domain protein|unclassified	0.0291221548
+UniRef50_H0Q5L4: Cation transport protein	0.0291217685
+UniRef50_H0Q5L4: Cation transport protein|unclassified	0.0291217685
+UniRef50_UPI00034DA5CF: hypothetical protein	0.0291159538
+UniRef50_UPI00034DA5CF: hypothetical protein|unclassified	0.0291159538
+UniRef50_UPI000471B390: hypothetical protein, partial	0.0291143738
+UniRef50_UPI000471B390: hypothetical protein, partial|unclassified	0.0291143738
+UniRef50_Q0V226	0.0291095397
+UniRef50_Q0V226|unclassified	0.0291095397
+UniRef50_UPI000476CBCD: hypothetical protein	0.0291042500
+UniRef50_UPI000476CBCD: hypothetical protein|unclassified	0.0291042500
+UniRef50_F0PCZ7: Purine catabolism regulatory protein family protein	0.0291026265
+UniRef50_F0PCZ7: Purine catabolism regulatory protein family protein|unclassified	0.0291026265
+UniRef50_U6JY85	0.0290985453
+UniRef50_U6JY85|unclassified	0.0290985453
+UniRef50_A0A031GT28: Rhs element Vgr protein	0.0290959891
+UniRef50_A0A031GT28: Rhs element Vgr protein|unclassified	0.0290959891
+UniRef50_Q8KCW2: Dihydrolipoyl dehydrogenase	0.0290919076
+UniRef50_Q8KCW2: Dihydrolipoyl dehydrogenase|unclassified	0.0290919076
+UniRef50_UPI00035F9A8A: hypothetical protein	0.0290882730
+UniRef50_UPI00035F9A8A: hypothetical protein|unclassified	0.0290882730
+UniRef50_F5Y5F1	0.0290855991
+UniRef50_F5Y5F1|unclassified	0.0290855991
+UniRef50_C5AMV5: Type VI secretion protein, VC_A0114 family	0.0290850739
+UniRef50_C5AMV5: Type VI secretion protein, VC_A0114 family|unclassified	0.0290850739
+UniRef50_Q6ME91: Aspartate--tRNA(Asp/Asn) ligase	0.0290828616
+UniRef50_Q6ME91: Aspartate--tRNA(Asp/Asn) ligase|unclassified	0.0290828616
+UniRef50_UPI0003F069E2: PREDICTED: mycophenolic acid acyl-glucuronide esterase, mitochondrial-like	0.0290812980
+UniRef50_UPI0003F069E2: PREDICTED: mycophenolic acid acyl-glucuronide esterase, mitochondrial-like|unclassified	0.0290812980
+UniRef50_UPI00047D8E5C: signal peptidase I	0.0290766989
+UniRef50_UPI00047D8E5C: signal peptidase I|unclassified	0.0290766989
+UniRef50_C1DLD0: Iron(III)-siderophore-binding periplasmic protein	0.0290701852
+UniRef50_C1DLD0: Iron(III)-siderophore-binding periplasmic protein|unclassified	0.0290701852
+UniRef50_UPI000362B65E: hypothetical protein	0.0290636231
+UniRef50_UPI000362B65E: hypothetical protein|unclassified	0.0290636231
+UniRef50_UPI00037A465E: hypothetical protein	0.0290625656
+UniRef50_UPI00037A465E: hypothetical protein|unclassified	0.0290625656
+UniRef50_W0DRV2: Cupin	0.0290493151
+UniRef50_W0DRV2: Cupin|unclassified	0.0290493151
+UniRef50_UPI000470303C: hypothetical protein	0.0290490038
+UniRef50_UPI000470303C: hypothetical protein|unclassified	0.0290490038
+UniRef50_U7PW85	0.0290378690
+UniRef50_U7PW85|unclassified	0.0290378690
+UniRef50_A6UUN1: Methionine--tRNA ligase	0.0290356182
+UniRef50_A6UUN1: Methionine--tRNA ligase|unclassified	0.0290356182
+UniRef50_UPI000470158C: hypothetical protein	0.0290341954
+UniRef50_UPI000470158C: hypothetical protein|unclassified	0.0290341954
+UniRef50_W5XTE4	0.0290290058
+UniRef50_W5XTE4|unclassified	0.0290290058
+UniRef50_A8LJS0	0.0290265299
+UniRef50_A8LJS0|unclassified	0.0290265299
+UniRef50_K9ANT3	0.0290257910
+UniRef50_K9ANT3|unclassified	0.0290257910
+UniRef50_UPI0003B45520: exodeoxyribonuclease V subunit alpha	0.0290254999
+UniRef50_UPI0003B45520: exodeoxyribonuclease V subunit alpha|unclassified	0.0290254999
+UniRef50_UPI00046287B9: glucosamine--fructose-6-phosphate aminotransferase	0.0290250072
+UniRef50_UPI00046287B9: glucosamine--fructose-6-phosphate aminotransferase|unclassified	0.0290250072
+UniRef50_C3HT49: S-layer protein EA1	0.0290231414
+UniRef50_C3HT49: S-layer protein EA1|unclassified	0.0290231414
+UniRef50_A0A011NTG4: Putative GTP-binding protein YjiA	0.0290216274
+UniRef50_A0A011NTG4: Putative GTP-binding protein YjiA|unclassified	0.0290216274
+UniRef50_R6G7A2: Bacterial membrane protein YfhO	0.0290167730
+UniRef50_R6G7A2: Bacterial membrane protein YfhO|unclassified	0.0290167730
+UniRef50_UPI000329E73C: PREDICTED: probable maltase D-like	0.0290133421
+UniRef50_UPI000329E73C: PREDICTED: probable maltase D-like|unclassified	0.0290133421
+UniRef50_Q108L3: Isonitrile synthase	0.0290008610
+UniRef50_Q108L3: Isonitrile synthase|unclassified	0.0290008610
+UniRef50_UPI0003666D07: hypothetical protein	0.0290005375
+UniRef50_UPI0003666D07: hypothetical protein|unclassified	0.0290005375
+UniRef50_UPI0004650D81: DNA polymerase III subunit alpha	0.0289929134
+UniRef50_UPI0004650D81: DNA polymerase III subunit alpha|unclassified	0.0289929134
+UniRef50_UPI0002627AF2: RpoD subfamily RNA polymerase sigma-70 subunit	0.0289886834
+UniRef50_UPI0002627AF2: RpoD subfamily RNA polymerase sigma-70 subunit|unclassified	0.0289886834
+UniRef50_A8MJT4: Diguanylate cyclase/phosphodiesterase	0.0289856822
+UniRef50_A8MJT4: Diguanylate cyclase/phosphodiesterase|unclassified	0.0289856822
+UniRef50_Q1QW61: Lytic transglycosylase	0.0289849996
+UniRef50_Q1QW61: Lytic transglycosylase|unclassified	0.0289849996
+UniRef50_UPI000478376C: oligo-1,6-glucosidase	0.0289780079
+UniRef50_UPI000478376C: oligo-1,6-glucosidase|unclassified	0.0289780079
+UniRef50_UPI0002882408: thymidine phosphorylase	0.0289694463
+UniRef50_UPI0002882408: thymidine phosphorylase|unclassified	0.0289694463
+UniRef50_UPI0004440FC8: PREDICTED: scaffold attachment factor B2 isoform X1	0.0289692507
+UniRef50_UPI0004440FC8: PREDICTED: scaffold attachment factor B2 isoform X1|unclassified	0.0289692507
+UniRef50_UPI00047A7359: PTS sugar transporter subunit IIC	0.0289641800
+UniRef50_UPI00047A7359: PTS sugar transporter subunit IIC|unclassified	0.0289641800
+UniRef50_UPI000360793E: hypothetical protein	0.0289627477
+UniRef50_UPI000360793E: hypothetical protein|unclassified	0.0289627477
+UniRef50_D5ASX0	0.0289613632
+UniRef50_D5ASX0|unclassified	0.0289613632
+UniRef50_C4ZJM0: Ribosomal RNA large subunit methyltransferase M	0.0289607152
+UniRef50_C4ZJM0: Ribosomal RNA large subunit methyltransferase M|unclassified	0.0289607152
+UniRef50_C1E8D4: Predicted protein	0.0289556024
+UniRef50_C1E8D4: Predicted protein|unclassified	0.0289556024
+UniRef50_UPI0003DEA38D	0.0289509318
+UniRef50_UPI0003DEA38D|unclassified	0.0289509318
+UniRef50_UPI0003B33962: hypothetical protein	0.0289498754
+UniRef50_UPI0003B33962: hypothetical protein|unclassified	0.0289498754
+UniRef50_UPI0002F796E5: hypothetical protein	0.0289485831
+UniRef50_UPI0002F796E5: hypothetical protein|unclassified	0.0289485831
+UniRef50_A3DLR9: Succinyl-CoA ligase [ADP-forming] subunit beta	0.0289436826
+UniRef50_A3DLR9: Succinyl-CoA ligase [ADP-forming] subunit beta|unclassified	0.0289436826
+UniRef50_Q89A97: Multidrug resistance-like ATP-binding protein MdlA	0.0289436304
+UniRef50_Q89A97: Multidrug resistance-like ATP-binding protein MdlA|unclassified	0.0289436304
+UniRef50_Q75CE1: Dihydroorotate dehydrogenase (quinone), mitochondrial	0.0289407463
+UniRef50_Q75CE1: Dihydroorotate dehydrogenase (quinone), mitochondrial|unclassified	0.0289407463
+UniRef50_UPI000472A3C2: spore gernimation protein GerA	0.0289395733
+UniRef50_UPI000472A3C2: spore gernimation protein GerA|unclassified	0.0289395733
+UniRef50_F5YIA1: ATPase	0.0289351264
+UniRef50_F5YIA1: ATPase|unclassified	0.0289351264
+UniRef50_UPI0003F63AFE: GntR family transcriptional regulator	0.0289316246
+UniRef50_UPI0003F63AFE: GntR family transcriptional regulator|unclassified	0.0289316246
+UniRef50_UPI0003F197F4: PREDICTED: glutamine-rich protein 2	0.0289270824
+UniRef50_UPI0003F197F4: PREDICTED: glutamine-rich protein 2|unclassified	0.0289270824
+UniRef50_UPI000370A181: hypothetical protein	0.0289242674
+UniRef50_UPI000370A181: hypothetical protein|unclassified	0.0289242674
+UniRef50_E3I859: Peptidase U35 phage prohead HK97	0.0289231650
+UniRef50_E3I859: Peptidase U35 phage prohead HK97|unclassified	0.0289231650
+UniRef50_UPI000363C9B5: hypothetical protein	0.0289158961
+UniRef50_UPI000363C9B5: hypothetical protein|unclassified	0.0289158961
+UniRef50_UPI000455FB44: hypothetical protein CONPUDRAFT_92988	0.0289154776
+UniRef50_UPI000455FB44: hypothetical protein CONPUDRAFT_92988|unclassified	0.0289154776
+UniRef50_UPI000465AB9E: hypothetical protein	0.0289140338
+UniRef50_UPI000465AB9E: hypothetical protein|unclassified	0.0289140338
+UniRef50_UPI00037EA804: hypothetical protein	0.0289081018
+UniRef50_UPI00037EA804: hypothetical protein|unclassified	0.0289081018
+UniRef50_UPI0004754C12: hypothetical protein	0.0289024926
+UniRef50_UPI0004754C12: hypothetical protein|unclassified	0.0289024926
+UniRef50_UPI00037BC540: hypothetical protein	0.0289006853
+UniRef50_UPI00037BC540: hypothetical protein|unclassified	0.0289006853
+UniRef50_E0MP30: Bifunctional hemolysin/adenylate cyclase	0.0288974996
+UniRef50_E0MP30: Bifunctional hemolysin/adenylate cyclase|unclassified	0.0288974996
+UniRef50_UPI00046A2756: hypothetical protein	0.0288971519
+UniRef50_UPI00046A2756: hypothetical protein|unclassified	0.0288971519
+UniRef50_D7FNC8: Enoyl-ACP reductase enoyl-ACP reductase	0.0288896855
+UniRef50_D7FNC8: Enoyl-ACP reductase enoyl-ACP reductase|unclassified	0.0288896855
+UniRef50_UPI0002E0D857: hypothetical protein	0.0288864546
+UniRef50_UPI0002E0D857: hypothetical protein|unclassified	0.0288864546
+UniRef50_UPI0003B59851: alpha-amylase	0.0288809163
+UniRef50_UPI0003B59851: alpha-amylase|unclassified	0.0288809163
+UniRef50_B1AJ89: Holliday junction ATP-dependent DNA helicase RuvB	0.0288793100
+UniRef50_B1AJ89: Holliday junction ATP-dependent DNA helicase RuvB|unclassified	0.0288793100
+UniRef50_UPI00036A7F29: hypothetical protein	0.0288784526
+UniRef50_UPI00036A7F29: hypothetical protein|unclassified	0.0288784526
+UniRef50_D3G1C7	0.0288741515
+UniRef50_D3G1C7|unclassified	0.0288741515
+UniRef50_UPI000409332F: hypothetical protein	0.0288694135
+UniRef50_UPI000409332F: hypothetical protein|unclassified	0.0288694135
+UniRef50_UPI00046A94A2: MFS transporter permease	0.0288680802
+UniRef50_UPI00046A94A2: MFS transporter permease|unclassified	0.0288680802
+UniRef50_UPI0004647121: hypothetical protein	0.0288639647
+UniRef50_UPI0004647121: hypothetical protein|unclassified	0.0288639647
+UniRef50_I2AAI6: Cellobiose phosphorylase	0.0288619540
+UniRef50_I2AAI6: Cellobiose phosphorylase|unclassified	0.0288619540
+UniRef50_G5HQ36	0.0288617914
+UniRef50_G5HQ36|unclassified	0.0288617914
+UniRef50_U2B892	0.0288518502
+UniRef50_U2B892|unclassified	0.0288518502
+UniRef50_B8FDN2: Ethanolamine utilization protein EutJ family protein	0.0288434155
+UniRef50_B8FDN2: Ethanolamine utilization protein EutJ family protein|unclassified	0.0288434155
+UniRef50_C0QC86: Probable cytosol aminopeptidase	0.0288390118
+UniRef50_C0QC86: Probable cytosol aminopeptidase|unclassified	0.0288390118
+UniRef50_B5HY76: D-xylose ABC transporter, D-xylose-binding protein	0.0288348015
+UniRef50_B5HY76: D-xylose ABC transporter, D-xylose-binding protein|unclassified	0.0288348015
+UniRef50_UPI0003B455BB: histidine kinase	0.0288257846
+UniRef50_UPI0003B455BB: histidine kinase|unclassified	0.0288257846
+UniRef50_L8FIP1	0.0288245217
+UniRef50_L8FIP1|unclassified	0.0288245217
+UniRef50_UPI000370916D: hypothetical protein, partial	0.0288239378
+UniRef50_UPI000370916D: hypothetical protein, partial|unclassified	0.0288239378
+UniRef50_T1Y3Y5	0.0288229407
+UniRef50_T1Y3Y5|unclassified	0.0288229407
+UniRef50_UPI00034A9AF9: hypothetical protein	0.0288190377
+UniRef50_UPI00034A9AF9: hypothetical protein|unclassified	0.0288190377
+UniRef50_UPI0003AD4034: hypothetical protein	0.0288181440
+UniRef50_UPI0003AD4034: hypothetical protein|unclassified	0.0288181440
+UniRef50_P58083: Histidine ammonia-lyase	0.0288167024
+UniRef50_P58083: Histidine ammonia-lyase|unclassified	0.0288167024
+UniRef50_C3Z8J5	0.0288150420
+UniRef50_C3Z8J5|unclassified	0.0288150420
+UniRef50_UPI00029AA549: trehalase	0.0288113985
+UniRef50_UPI00029AA549: trehalase|unclassified	0.0288113985
+UniRef50_K2GR17	0.0288102303
+UniRef50_K2GR17|unclassified	0.0288102303
+UniRef50_Q92BQ5: DNA primase	0.0288101127
+UniRef50_Q92BQ5: DNA primase|unclassified	0.0288101127
+UniRef50_UPI00037A8F09: hypothetical protein	0.0288058368
+UniRef50_UPI00037A8F09: hypothetical protein|unclassified	0.0288058368
+UniRef50_R6E6L7	0.0288039613
+UniRef50_R6E6L7|unclassified	0.0288039613
+UniRef50_R5I2E7: Alpha-N-acetylglucosaminidase	0.0288034324
+UniRef50_R5I2E7: Alpha-N-acetylglucosaminidase|unclassified	0.0288034324
+UniRef50_UPI00029A0230: SecA DEAD domain-containing protein	0.0288023458
+UniRef50_UPI00029A0230: SecA DEAD domain-containing protein|unclassified	0.0288023458
+UniRef50_UPI000462F0DA: hypothetical protein	0.0288021293
+UniRef50_UPI000462F0DA: hypothetical protein|unclassified	0.0288021293
+UniRef50_A9EFV4: Replication protein (Fragment)	0.0287994023
+UniRef50_A9EFV4: Replication protein (Fragment)|unclassified	0.0287994023
+UniRef50_UPI00016C41DC: ABC transporter ATP-binding protein	0.0287992921
+UniRef50_UPI00016C41DC: ABC transporter ATP-binding protein|unclassified	0.0287992921
+UniRef50_UPI0001E8EC9D: recombination and DNA strand exchange inhibitor protein, partial	0.0287986736
+UniRef50_UPI0001E8EC9D: recombination and DNA strand exchange inhibitor protein, partial|unclassified	0.0287986736
+UniRef50_UPI00036D7893: hypothetical protein	0.0287975239
+UniRef50_UPI00036D7893: hypothetical protein|unclassified	0.0287975239
+UniRef50_M5AC15	0.0287969415
+UniRef50_M5AC15|unclassified	0.0287969415
+UniRef50_A0R7Q6	0.0287899009
+UniRef50_A0R7Q6|unclassified	0.0287899009
+UniRef50_F4FXN7	0.0287851580
+UniRef50_F4FXN7|unclassified	0.0287851580
+UniRef50_G0ADG0: Integral membrane protein	0.0287820221
+UniRef50_G0ADG0: Integral membrane protein|unclassified	0.0287820221
+UniRef50_UPI00037C561C: hypothetical protein	0.0287820010
+UniRef50_UPI00037C561C: hypothetical protein|unclassified	0.0287820010
+UniRef50_UPI0003606BDF: hypothetical protein	0.0287785888
+UniRef50_UPI0003606BDF: hypothetical protein|unclassified	0.0287785888
+UniRef50_UPI00037C1B37: hypothetical protein	0.0287782783
+UniRef50_UPI00037C1B37: hypothetical protein|unclassified	0.0287782783
+UniRef50_R6SN75	0.0287769735
+UniRef50_R6SN75|unclassified	0.0287769735
+UniRef50_UPI0003B5154D: hypothetical protein, partial	0.0287735502
+UniRef50_UPI0003B5154D: hypothetical protein, partial|unclassified	0.0287735502
+UniRef50_B9EA47	0.0287729318
+UniRef50_B9EA47|unclassified	0.0287729318
+UniRef50_UPI0003803CC2: hypothetical protein	0.0287729125
+UniRef50_UPI0003803CC2: hypothetical protein|unclassified	0.0287729125
+UniRef50_UPI00047644EC: glycogen debranching protein	0.0287703503
+UniRef50_UPI00047644EC: glycogen debranching protein|unclassified	0.0287703503
+UniRef50_UPI00047B8895: DNA primase	0.0287670022
+UniRef50_UPI00047B8895: DNA primase|unclassified	0.0287670022
+UniRef50_UPI00016C076A: putative trehalose/maltose hydrolase	0.0287625029
+UniRef50_UPI00016C076A: putative trehalose/maltose hydrolase|unclassified	0.0287625029
+UniRef50_UPI00047BE467: phosphoenolpyruvate-protein phosphotransferase	0.0287602301
+UniRef50_UPI00047BE467: phosphoenolpyruvate-protein phosphotransferase|unclassified	0.0287602301
+UniRef50_UPI0002492155: penicillin-binding protein 2B	0.0287566652
+UniRef50_UPI0002492155: penicillin-binding protein 2B|unclassified	0.0287566652
+UniRef50_UPI0003108872: hypothetical protein	0.0287545629
+UniRef50_UPI0003108872: hypothetical protein|unclassified	0.0287545629
+UniRef50_Q8SSD7: Proline--tRNA ligase	0.0287478866
+UniRef50_Q8SSD7: Proline--tRNA ligase|unclassified	0.0287478866
+UniRef50_V4M8M3	0.0287468476
+UniRef50_V4M8M3|unclassified	0.0287468476
+UniRef50_A0A024J7I0: Similar to Saccharomyces cerevisiae YNL218W MGS1 Protein with DNA-dependent ATPase and ssDNA annealing activities involved in maintenance of genome	0.0287414455
+UniRef50_A0A024J7I0: Similar to Saccharomyces cerevisiae YNL218W MGS1 Protein with DNA-dependent ATPase and ssDNA annealing activities involved in maintenance of genome|unclassified	0.0287414455
+UniRef50_UPI000262842A: acetolactate synthase	0.0287413905
+UniRef50_UPI000262842A: acetolactate synthase|unclassified	0.0287413905
+UniRef50_UPI00030E951F: hypothetical protein	0.0287392532
+UniRef50_UPI00030E951F: hypothetical protein|unclassified	0.0287392532
+UniRef50_UPI00036D34C6: hypothetical protein	0.0287359475
+UniRef50_UPI00036D34C6: hypothetical protein|unclassified	0.0287359475
+UniRef50_UPI0004785B9B: DNA-directed RNA polymerase subunit beta''	0.0287324655
+UniRef50_UPI0004785B9B: DNA-directed RNA polymerase subunit beta''|unclassified	0.0287324655
+UniRef50_UPI000362260F: hypothetical protein	0.0287299157
+UniRef50_UPI000362260F: hypothetical protein|unclassified	0.0287299157
+UniRef50_Q3ZWX9: Lysine--tRNA ligase	0.0287276618
+UniRef50_Q3ZWX9: Lysine--tRNA ligase|unclassified	0.0287276618
+UniRef50_UPI00044075C3: NAD-binding protein	0.0287256266
+UniRef50_UPI00044075C3: NAD-binding protein|unclassified	0.0287256266
+UniRef50_A0A024HWG6	0.0287236925
+UniRef50_A0A024HWG6|unclassified	0.0287236925
+UniRef50_UPI00042BBF4B: PREDICTED: 2-5A-dependent ribonuclease-like	0.0287148013
+UniRef50_UPI00042BBF4B: PREDICTED: 2-5A-dependent ribonuclease-like|unclassified	0.0287148013
+UniRef50_UPI00046D6656: hypothetical protein	0.0287114751
+UniRef50_UPI00046D6656: hypothetical protein|unclassified	0.0287114751
+UniRef50_F8AV02	0.0287053542
+UniRef50_F8AV02|unclassified	0.0287053542
+UniRef50_UPI0004784379: cell division protein FtsK	0.0287015119
+UniRef50_UPI0004784379: cell division protein FtsK|unclassified	0.0287015119
+UniRef50_UPI00047D7442: multidrug ABC transporter ATPase	0.0286976856
+UniRef50_UPI00047D7442: multidrug ABC transporter ATPase|unclassified	0.0286976856
+UniRef50_R5Q5Y1	0.0286974177
+UniRef50_R5Q5Y1|unclassified	0.0286974177
+UniRef50_UPI0003F4991B: hypothetical protein TREMEDRAFT_73427	0.0286949127
+UniRef50_UPI0003F4991B: hypothetical protein TREMEDRAFT_73427|unclassified	0.0286949127
+UniRef50_UPI00046CF4EC: hypothetical protein	0.0286905812
+UniRef50_UPI00046CF4EC: hypothetical protein|unclassified	0.0286905812
+UniRef50_UPI0003F07DB8: PREDICTED: histidine ammonia-lyase-like isoform X2	0.0286886080
+UniRef50_UPI0003F07DB8: PREDICTED: histidine ammonia-lyase-like isoform X2|unclassified	0.0286886080
+UniRef50_I9CAP4: 3-oxoadipate enol-lactonase	0.0286882610
+UniRef50_I9CAP4: 3-oxoadipate enol-lactonase|unclassified	0.0286882610
+UniRef50_D7WNC9: Tn7-like transposition protein D	0.0286807670
+UniRef50_D7WNC9: Tn7-like transposition protein D|unclassified	0.0286807670
+UniRef50_UPI0003B46B1E: C4-dicarboxylate ABC transporter permease	0.0286803401
+UniRef50_UPI0003B46B1E: C4-dicarboxylate ABC transporter permease|unclassified	0.0286803401
+UniRef50_UPI00035DA196: hypothetical protein	0.0286715418
+UniRef50_UPI00035DA196: hypothetical protein|unclassified	0.0286715418
+UniRef50_K8CPN0	0.0286657978
+UniRef50_K8CPN0|unclassified	0.0286657978
+UniRef50_UPI000255A46B: lytic transglycosylase	0.0286613257
+UniRef50_UPI000255A46B: lytic transglycosylase|unclassified	0.0286613257
+UniRef50_UPI0003673A6D: MULTISPECIES: hypothetical protein	0.0286598559
+UniRef50_UPI0003673A6D: MULTISPECIES: hypothetical protein|unclassified	0.0286598559
+UniRef50_X2GX35	0.0286584351
+UniRef50_X2GX35|unclassified	0.0286584351
+UniRef50_UPI00034B9DA0: hypothetical protein	0.0286575189
+UniRef50_UPI00034B9DA0: hypothetical protein|unclassified	0.0286575189
+UniRef50_Q9N4K2: Protein CBS-2	0.0286531697
+UniRef50_Q9N4K2: Protein CBS-2|unclassified	0.0286531697
+UniRef50_UPI0004660756: hypothetical protein	0.0286529898
+UniRef50_UPI0004660756: hypothetical protein|unclassified	0.0286529898
+UniRef50_UPI0003B41C3D: hypothetical protein	0.0286369780
+UniRef50_UPI0003B41C3D: hypothetical protein|unclassified	0.0286369780
+UniRef50_UPI000225A921: exonuclease VII large subunit	0.0286311691
+UniRef50_UPI000225A921: exonuclease VII large subunit|unclassified	0.0286311691
+UniRef50_Q1LSM8: Proline--tRNA ligase	0.0286262656
+UniRef50_Q1LSM8: Proline--tRNA ligase|unclassified	0.0286262656
+UniRef50_Q8ESB1: Hypothetical conserved protein	0.0286218081
+UniRef50_Q8ESB1: Hypothetical conserved protein|unclassified	0.0286218081
+UniRef50_UPI000477D823: hypothetical protein	0.0286191593
+UniRef50_UPI000477D823: hypothetical protein|unclassified	0.0286191593
+UniRef50_UPI0003B5D675: peptide chain release factor 1	0.0286148385
+UniRef50_UPI0003B5D675: peptide chain release factor 1|unclassified	0.0286148385
+UniRef50_UPI0003646563: hypothetical protein	0.0286114500
+UniRef50_UPI0003646563: hypothetical protein|unclassified	0.0286114500
+UniRef50_Q46J19: Histidinol dehydrogenase	0.0286036407
+UniRef50_Q46J19: Histidinol dehydrogenase|unclassified	0.0286036407
+UniRef50_UPI00036BA0C6: terminase	0.0286018707
+UniRef50_UPI00036BA0C6: terminase|unclassified	0.0286018707
+UniRef50_B8G4Q6: ATP-dependent zinc metalloprotease FtsH	0.0286015735
+UniRef50_B8G4Q6: ATP-dependent zinc metalloprotease FtsH|unclassified	0.0286015735
+UniRef50_UPI0003B5D565: phospholipase C	0.0285962548
+UniRef50_UPI0003B5D565: phospholipase C|unclassified	0.0285962548
+UniRef50_C3BGQ0: Cell wall surface anchor	0.0285957888
+UniRef50_C3BGQ0: Cell wall surface anchor|unclassified	0.0285957888
+UniRef50_B7RP52	0.0285949805
+UniRef50_B7RP52|unclassified	0.0285949805
+UniRef50_UPI0003B3F904: glycine oxidase	0.0285936791
+UniRef50_UPI0003B3F904: glycine oxidase|unclassified	0.0285936791
+UniRef50_H1LVZ8: Cell wall-binding repeat protein	0.0285932012
+UniRef50_H1LVZ8: Cell wall-binding repeat protein|unclassified	0.0285932012
+UniRef50_UPI0003731541: hypothetical protein	0.0285906104
+UniRef50_UPI0003731541: hypothetical protein|unclassified	0.0285906104
+UniRef50_W5X348	0.0285902514
+UniRef50_W5X348|unclassified	0.0285902514
+UniRef50_D0DRT9: YhgE/Pip domain protein (Fragment)	0.0285879520
+UniRef50_D0DRT9: YhgE/Pip domain protein (Fragment)|unclassified	0.0285879520
+UniRef50_F7YFI4: Peptidase M23	0.0285874531
+UniRef50_F7YFI4: Peptidase M23|unclassified	0.0285874531
+UniRef50_UPI0004703A21: hypothetical protein	0.0285851529
+UniRef50_UPI0004703A21: hypothetical protein|unclassified	0.0285851529
+UniRef50_C7XUG4: LPXTG-motif cell wall anchor domain protein (Fragment)	0.0285762295
+UniRef50_C7XUG4: LPXTG-motif cell wall anchor domain protein (Fragment)|unclassified	0.0285762295
+UniRef50_UPI0004026811: hypothetical protein	0.0285751756
+UniRef50_UPI0004026811: hypothetical protein|unclassified	0.0285751756
+UniRef50_X0SPN8: Marine sediment metagenome DNA, contig: S01H1_L00399 (Fragment)	0.0285743380
+UniRef50_X0SPN8: Marine sediment metagenome DNA, contig: S01H1_L00399 (Fragment)|unclassified	0.0285743380
+UniRef50_A0A037XJM6	0.0285738826
+UniRef50_A0A037XJM6|unclassified	0.0285738826
+UniRef50_UPI00032A7F91: PREDICTED: 2-keto-3-deoxy-L-rhamnonate aldolase-like isoform X2	0.0285738060
+UniRef50_UPI00032A7F91: PREDICTED: 2-keto-3-deoxy-L-rhamnonate aldolase-like isoform X2|unclassified	0.0285738060
+UniRef50_K2PLP9: Internalin-like protein	0.0285702659
+UniRef50_K2PLP9: Internalin-like protein|unclassified	0.0285702659
+UniRef50_UPI00047C3D3D: hypothetical protein	0.0285701098
+UniRef50_UPI00047C3D3D: hypothetical protein|unclassified	0.0285701098
+UniRef50_I8V3N1	0.0285698590
+UniRef50_I8V3N1|unclassified	0.0285698590
+UniRef50_Q7NCQ9: Valine--tRNA ligase	0.0285612934
+UniRef50_Q7NCQ9: Valine--tRNA ligase|unclassified	0.0285612934
+UniRef50_C1FAE8: Aspartate--tRNA(Asp/Asn) ligase	0.0285559575
+UniRef50_C1FAE8: Aspartate--tRNA(Asp/Asn) ligase|unclassified	0.0285559575
+UniRef50_UPI000471F1C1: hypothetical protein	0.0285553469
+UniRef50_UPI000471F1C1: hypothetical protein|unclassified	0.0285553469
+UniRef50_UPI0003B6B79C: D-alanyl-D-alanine carboxypeptidase	0.0285526083
+UniRef50_UPI0003B6B79C: D-alanyl-D-alanine carboxypeptidase|unclassified	0.0285526083
+UniRef50_O66937: 4-alpha-glucanotransferase	0.0285473690
+UniRef50_O66937: 4-alpha-glucanotransferase|unclassified	0.0285473690
+UniRef50_UPI0002EF1B05: hypothetical protein	0.0285401516
+UniRef50_UPI0002EF1B05: hypothetical protein|unclassified	0.0285401516
+UniRef50_S6GLW7	0.0285398496
+UniRef50_S6GLW7|unclassified	0.0285398496
+UniRef50_Z5XDL4: Glutamate synthase	0.0285384671
+UniRef50_Z5XDL4: Glutamate synthase|unclassified	0.0285384671
+UniRef50_W4WFI3	0.0285381240
+UniRef50_W4WFI3|unclassified	0.0285381240
+UniRef50_UPI0003B44D54: hypothetical protein, partial	0.0285366401
+UniRef50_UPI0003B44D54: hypothetical protein, partial|unclassified	0.0285366401
+UniRef50_G8PCE9	0.0285351009
+UniRef50_G8PCE9|unclassified	0.0285351009
+UniRef50_A0A059G3K0: Ppx/GppA family phosphatase	0.0285343261
+UniRef50_A0A059G3K0: Ppx/GppA family phosphatase|unclassified	0.0285343261
+UniRef50_UPI0004414D01: thiamin biosynthesis protein	0.0285318864
+UniRef50_UPI0004414D01: thiamin biosynthesis protein|unclassified	0.0285318864
+UniRef50_UPI0002491344: cell division protein FtsK	0.0285310079
+UniRef50_UPI0002491344: cell division protein FtsK|unclassified	0.0285310079
+UniRef50_UPI00047E4EA4: hypothetical protein	0.0285309812
+UniRef50_UPI00047E4EA4: hypothetical protein|unclassified	0.0285309812
+UniRef50_E9USM4	0.0285299837
+UniRef50_E9USM4|unclassified	0.0285299837
+UniRef50_UPI0003F5D9E9: histidine kinase	0.0285195208
+UniRef50_UPI0003F5D9E9: histidine kinase|unclassified	0.0285195208
+UniRef50_UPI0004637E9E: hypothetical protein	0.0285182341
+UniRef50_UPI0004637E9E: hypothetical protein|unclassified	0.0285182341
+UniRef50_M4GFK8	0.0285177282
+UniRef50_M4GFK8|unclassified	0.0285177282
+UniRef50_Q98K42: Mll1647 protein	0.0285176973
+UniRef50_Q98K42: Mll1647 protein|unclassified	0.0285176973
+UniRef50_G8PCT5	0.0285155256
+UniRef50_G8PCT5|unclassified	0.0285155256
+UniRef50_F2I5A0: Putative ATP synthase F0, A subunit	0.0285137921
+UniRef50_F2I5A0: Putative ATP synthase F0, A subunit|unclassified	0.0285137921
+UniRef50_G2KNN3	0.0285133609
+UniRef50_G2KNN3|unclassified	0.0285133609
+UniRef50_UPI000476740D: hypothetical protein	0.0285122945
+UniRef50_UPI000476740D: hypothetical protein|unclassified	0.0285122945
+UniRef50_UPI00034BEFF0: hypothetical protein	0.0285118618
+UniRef50_UPI00034BEFF0: hypothetical protein|unclassified	0.0285118618
+UniRef50_UPI00037F9825: hypothetical protein	0.0285090588
+UniRef50_UPI00037F9825: hypothetical protein|unclassified	0.0285090588
+UniRef50_Q31J06	0.0285051436
+UniRef50_Q31J06|unclassified	0.0285051436
+UniRef50_UPI00029AE6C9: DEAD/DEAH box helicase	0.0285013381
+UniRef50_UPI00029AE6C9: DEAD/DEAH box helicase|unclassified	0.0285013381
+UniRef50_S5XXL2	0.0284948951
+UniRef50_S5XXL2|unclassified	0.0284948951
+UniRef50_UPI00035CFB31: hypothetical protein	0.0284887218
+UniRef50_UPI00035CFB31: hypothetical protein|unclassified	0.0284887218
+UniRef50_UPI00037C3791: hypothetical protein	0.0284860186
+UniRef50_UPI00037C3791: hypothetical protein|unclassified	0.0284860186
+UniRef50_UPI000455DF56: 2-isopropylmalate synthase	0.0284854037
+UniRef50_UPI000455DF56: 2-isopropylmalate synthase|unclassified	0.0284854037
+UniRef50_R6C4F8	0.0284824176
+UniRef50_R6C4F8|unclassified	0.0284824176
+UniRef50_UPI00034BA4FD: hypothetical protein	0.0284806752
+UniRef50_UPI00034BA4FD: hypothetical protein|unclassified	0.0284806752
+UniRef50_UPI00046D56F4: hypothetical protein	0.0284798526
+UniRef50_UPI00046D56F4: hypothetical protein|unclassified	0.0284798526
+UniRef50_M7MZC8: Cytoplasmic protein	0.0284753883
+UniRef50_M7MZC8: Cytoplasmic protein|unclassified	0.0284753883
+UniRef50_UPI0004723BA0: hypothetical protein	0.0284724528
+UniRef50_UPI0004723BA0: hypothetical protein|unclassified	0.0284724528
+UniRef50_UPI00046818D4: aldehyde dehydrogenase	0.0284706082
+UniRef50_UPI00046818D4: aldehyde dehydrogenase|unclassified	0.0284706082
+UniRef50_UPI0003632503: hypothetical protein	0.0284676325
+UniRef50_UPI0003632503: hypothetical protein|unclassified	0.0284676325
+UniRef50_UPI00026542F0: PREDICTED: ABC transporter B family member 1-like	0.0284659528
+UniRef50_UPI00026542F0: PREDICTED: ABC transporter B family member 1-like|unclassified	0.0284659528
+UniRef50_UPI000456089F: hypothetical protein PFL1_00205	0.0284606926
+UniRef50_UPI000456089F: hypothetical protein PFL1_00205|unclassified	0.0284606926
+UniRef50_E8X5X8	0.0284603794
+UniRef50_E8X5X8|unclassified	0.0284603794
+UniRef50_UPI0003804843: hypothetical protein	0.0284596051
+UniRef50_UPI0003804843: hypothetical protein|unclassified	0.0284596051
+UniRef50_K0S0E9	0.0284537848
+UniRef50_K0S0E9|unclassified	0.0284537848
+UniRef50_UPI0003F4DAD2: valyl-tRNA synthetase	0.0284533328
+UniRef50_UPI0003F4DAD2: valyl-tRNA synthetase|unclassified	0.0284533328
+UniRef50_Q72GT4: Adenylosuccinate synthetase	0.0284510522
+UniRef50_Q72GT4: Adenylosuccinate synthetase|unclassified	0.0284510522
+UniRef50_U6GHH8: Enoyl-acyl carrier reductase, putative	0.0284479545
+UniRef50_U6GHH8: Enoyl-acyl carrier reductase, putative|unclassified	0.0284479545
+UniRef50_S3DA11: FAD/NAD(P)-binding protein	0.0284397995
+UniRef50_S3DA11: FAD/NAD(P)-binding protein|unclassified	0.0284397995
+UniRef50_D6EJ88: Polyketide synthase	0.0284387911
+UniRef50_D6EJ88: Polyketide synthase|unclassified	0.0284387911
+UniRef50_UPI000369EF18: hypothetical protein	0.0284369195
+UniRef50_UPI000369EF18: hypothetical protein|unclassified	0.0284369195
+UniRef50_F0RQZ2: ABC-type transporter, periplasmic subunit	0.0284344636
+UniRef50_F0RQZ2: ABC-type transporter, periplasmic subunit|unclassified	0.0284344636
+UniRef50_D8J0Q1: 2-isopropylmalate synthase	0.0284336294
+UniRef50_D8J0Q1: 2-isopropylmalate synthase|unclassified	0.0284336294
+UniRef50_UPI0003662012: hypothetical protein	0.0284317422
+UniRef50_UPI0003662012: hypothetical protein|unclassified	0.0284317422
+UniRef50_UPI0003731CE5: hypothetical protein	0.0284313965
+UniRef50_UPI0003731CE5: hypothetical protein|unclassified	0.0284313965
+UniRef50_UPI00035DE731: hypothetical protein	0.0284300552
+UniRef50_UPI00035DE731: hypothetical protein|unclassified	0.0284300552
+UniRef50_UPI000361E46B: hypothetical protein	0.0284270692
+UniRef50_UPI000361E46B: hypothetical protein|unclassified	0.0284270692
+UniRef50_U5MW98: Transposon Tn7 transposition protein TnsC	0.0284261555
+UniRef50_U5MW98: Transposon Tn7 transposition protein TnsC|unclassified	0.0284261555
+UniRef50_A0A015NBM5	0.0284243687
+UniRef50_A0A015NBM5|unclassified	0.0284243687
+UniRef50_UPI000464D33B: hypothetical protein	0.0284240688
+UniRef50_UPI000464D33B: hypothetical protein|unclassified	0.0284240688
+UniRef50_UPI000372D391: hypothetical protein	0.0284216321
+UniRef50_UPI000372D391: hypothetical protein|unclassified	0.0284216321
+UniRef50_UPI0003AEAC1E: PREDICTED: peroxisomal bifunctional enzyme-like	0.0284215536
+UniRef50_UPI0003AEAC1E: PREDICTED: peroxisomal bifunctional enzyme-like|unclassified	0.0284215536
+UniRef50_UPI00041CAE50: multidrug ABC transporter ATP-binding protein	0.0284202072
+UniRef50_UPI00041CAE50: multidrug ABC transporter ATP-binding protein|unclassified	0.0284202072
+UniRef50_UPI0003B6BBFD: penicillin-binding protein	0.0284171764
+UniRef50_UPI0003B6BBFD: penicillin-binding protein|unclassified	0.0284171764
+UniRef50_UPI00037CF2DE: hypothetical protein	0.0284111710
+UniRef50_UPI00037CF2DE: hypothetical protein|unclassified	0.0284111710
+UniRef50_Q8D1V9: Proline--tRNA ligase	0.0284107605
+UniRef50_Q8D1V9: Proline--tRNA ligase|unclassified	0.0284107605
+UniRef50_W9H1K8: Metal-chelation protein CHAD	0.0284057614
+UniRef50_W9H1K8: Metal-chelation protein CHAD|unclassified	0.0284057614
+UniRef50_W7AZK9	0.0284024799
+UniRef50_W7AZK9|unclassified	0.0284024799
+UniRef50_C1N6D9: Predicted protein	0.0283961943
+UniRef50_C1N6D9: Predicted protein|unclassified	0.0283961943
+UniRef50_D1Y1Z6: Membrane protein	0.0283955847
+UniRef50_D1Y1Z6: Membrane protein|unclassified	0.0283955847
+UniRef50_W7ZSI6: Nucleoside-diphosphate-sugar epimerase	0.0283947398
+UniRef50_W7ZSI6: Nucleoside-diphosphate-sugar epimerase|unclassified	0.0283947398
+UniRef50_UPI0002485A11: ATPase P	0.0283936673
+UniRef50_UPI0002485A11: ATPase P|unclassified	0.0283936673
+UniRef50_Q47II8: 1,4-alpha-glucan branching enzyme GlgB	0.0283871893
+UniRef50_Q47II8: 1,4-alpha-glucan branching enzyme GlgB|unclassified	0.0283871893
+UniRef50_UPI00036ED2AC: hypothetical protein	0.0283856361
+UniRef50_UPI00036ED2AC: hypothetical protein|unclassified	0.0283856361
+UniRef50_D3Q1B6	0.0283845061
+UniRef50_D3Q1B6|unclassified	0.0283845061
+UniRef50_UPI0002D438B0: hypothetical protein	0.0283841063
+UniRef50_UPI0002D438B0: hypothetical protein|unclassified	0.0283841063
+UniRef50_UPI0003A2A802: hypothetical protein	0.0283829413
+UniRef50_UPI0003A2A802: hypothetical protein|unclassified	0.0283829413
+UniRef50_UPI0002EB3302: hypothetical protein	0.0283799822
+UniRef50_UPI0002EB3302: hypothetical protein|unclassified	0.0283799822
+UniRef50_UPI00035F0F98: hypothetical protein	0.0283789832
+UniRef50_UPI00035F0F98: hypothetical protein|unclassified	0.0283789832
+UniRef50_P0DJQ6: Arginine biosynthesis bifunctional protein ArgJ 3	0.0283756302
+UniRef50_P0DJQ6: Arginine biosynthesis bifunctional protein ArgJ 3|unclassified	0.0283756302
+UniRef50_C6D7D6	0.0283735522
+UniRef50_C6D7D6|unclassified	0.0283735522
+UniRef50_U2LU58	0.0283676865
+UniRef50_U2LU58|unclassified	0.0283676865
+UniRef50_UPI00029CAEFC: acyl-CoA dehydrogenase, very long chain	0.0283659399
+UniRef50_UPI00029CAEFC: acyl-CoA dehydrogenase, very long chain|unclassified	0.0283659399
+UniRef50_R6ULK6	0.0283635261
+UniRef50_R6ULK6|unclassified	0.0283635261
+UniRef50_P39812: Glutamate synthase [NADPH] large chain	0.0283621505
+UniRef50_P39812: Glutamate synthase [NADPH] large chain|unclassified	0.0283621505
+UniRef50_J3U9Q7: Gene transfer agent-like protein	0.0283594675
+UniRef50_J3U9Q7: Gene transfer agent-like protein|unclassified	0.0283594675
+UniRef50_P26208: Beta-glucosidase A	0.0283517610
+UniRef50_P26208: Beta-glucosidase A|unclassified	0.0283517610
+UniRef50_UPI00047B1A83: hypothetical protein	0.0283505877
+UniRef50_UPI00047B1A83: hypothetical protein|unclassified	0.0283505877
+UniRef50_Q8AA15: Phosphomethylpyrimidine synthase	0.0283461540
+UniRef50_Q8AA15: Phosphomethylpyrimidine synthase|unclassified	0.0283461540
+UniRef50_UPI0003662138: hypothetical protein	0.0283420645
+UniRef50_UPI0003662138: hypothetical protein|unclassified	0.0283420645
+UniRef50_C7NK94: Molybdopterin-guanine dinucleotide biosynthesis protein A	0.0283406267
+UniRef50_C7NK94: Molybdopterin-guanine dinucleotide biosynthesis protein A|unclassified	0.0283406267
+UniRef50_H3ZCT1: Putative periplasmic ligand-binding sensor protein	0.0283351010
+UniRef50_H3ZCT1: Putative periplasmic ligand-binding sensor protein|unclassified	0.0283351010
+UniRef50_A0KII3: ABC transporter substrate-binding protein	0.0283321043
+UniRef50_A0KII3: ABC transporter substrate-binding protein|unclassified	0.0283321043
+UniRef50_F0VLB9	0.0283309770
+UniRef50_F0VLB9|unclassified	0.0283309770
+UniRef50_UPI0003B44650: membrane protein	0.0283259518
+UniRef50_UPI0003B44650: membrane protein|unclassified	0.0283259518
+UniRef50_Q2GEB1: Threonine--tRNA ligase	0.0283236444
+UniRef50_Q2GEB1: Threonine--tRNA ligase|unclassified	0.0283236444
+UniRef50_UPI00034492F6: hypothetical protein	0.0283222716
+UniRef50_UPI00034492F6: hypothetical protein|unclassified	0.0283222716
+UniRef50_S2VYT8	0.0283209446
+UniRef50_S2VYT8|unclassified	0.0283209446
+UniRef50_R4SH81: PE-PGRS family protein	0.0283154820
+UniRef50_R4SH81: PE-PGRS family protein|unclassified	0.0283154820
+UniRef50_T0JKB5	0.0283101999
+UniRef50_T0JKB5|unclassified	0.0283101999
+UniRef50_A0A023S443: Portal protein	0.0283099102
+UniRef50_A0A023S443: Portal protein|unclassified	0.0283099102
+UniRef50_W1DMC2: Putative NAGC-like transcriptional regulator	0.0283055209
+UniRef50_W1DMC2: Putative NAGC-like transcriptional regulator|unclassified	0.0283055209
+UniRef50_UPI000262575B: HrcA family transcriptional regulator	0.0283050876
+UniRef50_UPI000262575B: HrcA family transcriptional regulator|unclassified	0.0283050876
+UniRef50_W7XVQ0: Putative permease	0.0283027980
+UniRef50_W7XVQ0: Putative permease|unclassified	0.0283027980
+UniRef50_F2J2Z5: Adenylate cyclase, putative	0.0282951185
+UniRef50_F2J2Z5: Adenylate cyclase, putative|unclassified	0.0282951185
+UniRef50_D0IAL6: Nucleoside-diphosphate-sugar epimerase	0.0282926344
+UniRef50_D0IAL6: Nucleoside-diphosphate-sugar epimerase|unclassified	0.0282926344
+UniRef50_UPI00037028AD: hypothetical protein	0.0282898639
+UniRef50_UPI00037028AD: hypothetical protein|unclassified	0.0282898639
+UniRef50_UPI00042B224B: Tubulin/FtsZ family protein, putative isoform 4	0.0282862020
+UniRef50_UPI00042B224B: Tubulin/FtsZ family protein, putative isoform 4|unclassified	0.0282862020
+UniRef50_UPI00037BA4B4: hypothetical protein	0.0282854934
+UniRef50_UPI00037BA4B4: hypothetical protein|unclassified	0.0282854934
+UniRef50_UPI0003595226: PREDICTED: threonine synthase-like 2	0.0282844764
+UniRef50_UPI0003595226: PREDICTED: threonine synthase-like 2|unclassified	0.0282844764
+UniRef50_UPI0003F0AAA6: PREDICTED: LOW QUALITY PROTEIN: guanine monphosphate synthase	0.0282841774
+UniRef50_UPI0003F0AAA6: PREDICTED: LOW QUALITY PROTEIN: guanine monphosphate synthase|unclassified	0.0282841774
+UniRef50_UPI00047ABD8A: arginine--tRNA ligase	0.0282819856
+UniRef50_UPI00047ABD8A: arginine--tRNA ligase|unclassified	0.0282819856
+UniRef50_P37893: Aminopeptidase N	0.0282792762
+UniRef50_P37893: Aminopeptidase N|unclassified	0.0282792762
+UniRef50_I0BSQ6: Diguanylate cyclase	0.0282786306
+UniRef50_I0BSQ6: Diguanylate cyclase|unclassified	0.0282786306
+UniRef50_G2PS92: Peptidase M23	0.0282724816
+UniRef50_G2PS92: Peptidase M23|unclassified	0.0282724816
+UniRef50_UPI00038229EA: hypothetical protein	0.0282713653
+UniRef50_UPI00038229EA: hypothetical protein|unclassified	0.0282713653
+UniRef50_UPI00047E196E: hypothetical protein	0.0282702342
+UniRef50_UPI00047E196E: hypothetical protein|unclassified	0.0282702342
+UniRef50_A6TWP7: ATP-dependent zinc metalloprotease FtsH 2	0.0282693230
+UniRef50_A6TWP7: ATP-dependent zinc metalloprotease FtsH 2|unclassified	0.0282693230
+UniRef50_W5X7V8: VWA containing CoxE family protein	0.0282657088
+UniRef50_W5X7V8: VWA containing CoxE family protein|unclassified	0.0282657088
+UniRef50_G2HAY7: Peptidase M23 family protein	0.0282580902
+UniRef50_G2HAY7: Peptidase M23 family protein|unclassified	0.0282580902
+UniRef50_UPI0003C1816D: PREDICTED: probable beta-glucosidase I-like	0.0282523842
+UniRef50_UPI0003C1816D: PREDICTED: probable beta-glucosidase I-like|unclassified	0.0282523842
+UniRef50_G5JKU2: SdrH protein	0.0282427181
+UniRef50_G5JKU2: SdrH protein|unclassified	0.0282427181
+UniRef50_UPI0002B47AB1: PREDICTED: phosphoglucomutase-2-like	0.0282342388
+UniRef50_UPI0002B47AB1: PREDICTED: phosphoglucomutase-2-like|unclassified	0.0282342388
+UniRef50_UPI00037716CA: MULTISPECIES: hypothetical protein	0.0282327262
+UniRef50_UPI00037716CA: MULTISPECIES: hypothetical protein|unclassified	0.0282327262
+UniRef50_A0A058Z017	0.0282284997
+UniRef50_A0A058Z017|unclassified	0.0282284997
+UniRef50_C5AFT1	0.0282282661
+UniRef50_C5AFT1|unclassified	0.0282282661
+UniRef50_UPI0003641330: hypothetical protein	0.0282242246
+UniRef50_UPI0003641330: hypothetical protein|unclassified	0.0282242246
+UniRef50_UPI000374220E: hypothetical protein	0.0282136253
+UniRef50_UPI000374220E: hypothetical protein|unclassified	0.0282136253
+UniRef50_UPI000464C197: hypothetical protein	0.0282105172
+UniRef50_UPI000464C197: hypothetical protein|unclassified	0.0282105172
+UniRef50_UPI00047A45E7: hypothetical protein	0.0282092923
+UniRef50_UPI00047A45E7: hypothetical protein|unclassified	0.0282092923
+UniRef50_UPI00047731F6: alkaline phosphatase	0.0282065288
+UniRef50_UPI00047731F6: alkaline phosphatase|unclassified	0.0282065288
+UniRef50_UPI0003B711FF: DNA mismatch repair protein MutL	0.0282028565
+UniRef50_UPI0003B711FF: DNA mismatch repair protein MutL|unclassified	0.0282028565
+UniRef50_U1ETI2	0.0282025740
+UniRef50_U1ETI2|unclassified	0.0282025740
+UniRef50_UPI000441A327: PREDICTED: collagen alpha-1(VII) chain	0.0282006343
+UniRef50_UPI000441A327: PREDICTED: collagen alpha-1(VII) chain|unclassified	0.0282006343
+UniRef50_A6E257	0.0281982552
+UniRef50_A6E257|unclassified	0.0281982552
+UniRef50_UPI0004417785: methionine aminopeptidase	0.0281976040
+UniRef50_UPI0004417785: methionine aminopeptidase|unclassified	0.0281976040
+UniRef50_UPI000376938F: MULTISPECIES: hypothetical protein	0.0281967947
+UniRef50_UPI000376938F: MULTISPECIES: hypothetical protein|unclassified	0.0281967947
+UniRef50_A6D100	0.0281943352
+UniRef50_A6D100|unclassified	0.0281943352
+UniRef50_Q92G23: 5-aminolevulinate synthase	0.0281864744
+UniRef50_Q92G23: 5-aminolevulinate synthase|unclassified	0.0281864744
+UniRef50_F3ZB90: Putative MmcJ protein	0.0281860892
+UniRef50_F3ZB90: Putative MmcJ protein|unclassified	0.0281860892
+UniRef50_UPI000471FD43: acetyl-CoA carboxylase subunit beta	0.0281849788
+UniRef50_UPI000471FD43: acetyl-CoA carboxylase subunit beta|unclassified	0.0281849788
+UniRef50_UPI0004665CC5: betaine-aldehyde dehydrogenase	0.0281833554
+UniRef50_UPI0004665CC5: betaine-aldehyde dehydrogenase|unclassified	0.0281833554
+UniRef50_D3SBV6: Putative signal transduction protein	0.0281770503
+UniRef50_D3SBV6: Putative signal transduction protein|unclassified	0.0281770503
+UniRef50_J8JYT3	0.0281698951
+UniRef50_J8JYT3|unclassified	0.0281698951
+UniRef50_A0A058CU63: PE-PGRS family protein PE_PGRS44	0.0281682536
+UniRef50_A0A058CU63: PE-PGRS family protein PE_PGRS44|unclassified	0.0281682536
+UniRef50_A8ZV00: YadA domain protein	0.0281590223
+UniRef50_A8ZV00: YadA domain protein|unclassified	0.0281590223
+UniRef50_UPI0003EAB7B9: PREDICTED: xanthine dehydrogenase/oxidase-like	0.0281569670
+UniRef50_UPI0003EAB7B9: PREDICTED: xanthine dehydrogenase/oxidase-like|unclassified	0.0281569670
+UniRef50_UPI00041732E0: cell division protein FtsK	0.0281518943
+UniRef50_UPI00041732E0: cell division protein FtsK|unclassified	0.0281518943
+UniRef50_UPI0003BBF2DF: PREDICTED: alpha-tubulin N-acetyltransferase isoform X4	0.0281514793
+UniRef50_UPI0003BBF2DF: PREDICTED: alpha-tubulin N-acetyltransferase isoform X4|unclassified	0.0281514793
+UniRef50_S9Q8I1	0.0281511765
+UniRef50_S9Q8I1|unclassified	0.0281511765
+UniRef50_UPI0002886BDA: beta-N-acetylglucosaminidase	0.0281459051
+UniRef50_UPI0002886BDA: beta-N-acetylglucosaminidase|unclassified	0.0281459051
+UniRef50_UPI00047C475A: hypothetical protein	0.0281454602
+UniRef50_UPI00047C475A: hypothetical protein|unclassified	0.0281454602
+UniRef50_W4QC05	0.0281445731
+UniRef50_W4QC05|unclassified	0.0281445731
+UniRef50_UPI00037FB53A: hypothetical protein	0.0281427919
+UniRef50_UPI00037FB53A: hypothetical protein|unclassified	0.0281427919
+UniRef50_K9PAV6: Lysophospholipase	0.0281374409
+UniRef50_K9PAV6: Lysophospholipase|unclassified	0.0281374409
+UniRef50_UPI00047D5DD0: hypothetical protein	0.0281371253
+UniRef50_UPI00047D5DD0: hypothetical protein|unclassified	0.0281371253
+UniRef50_Q87AB6: Phenylalanine--tRNA ligase beta subunit	0.0281342698
+UniRef50_Q87AB6: Phenylalanine--tRNA ligase beta subunit|unclassified	0.0281342698
+UniRef50_UPI00005103BC: L-aspartate oxidase	0.0281337731
+UniRef50_UPI00005103BC: L-aspartate oxidase|unclassified	0.0281337731
+UniRef50_UPI0004627EF4: hypothetical protein	0.0281312095
+UniRef50_UPI0004627EF4: hypothetical protein|unclassified	0.0281312095
+UniRef50_R9S1U8: Silk sericin MG-2	0.0281296921
+UniRef50_R9S1U8: Silk sericin MG-2|unclassified	0.0281296921
+UniRef50_I1Q0J6	0.0281269891
+UniRef50_I1Q0J6|unclassified	0.0281269891
+UniRef50_Q30Z04: Arginine--tRNA ligase	0.0281239409
+UniRef50_Q30Z04: Arginine--tRNA ligase|unclassified	0.0281239409
+UniRef50_A0A024HX97	0.0281216806
+UniRef50_A0A024HX97|unclassified	0.0281216806
+UniRef50_UPI0003B2EAF3: DNA polymerase I	0.0281209011
+UniRef50_UPI0003B2EAF3: DNA polymerase I|unclassified	0.0281209011
+UniRef50_UPI0003C4646D: PREDICTED: MEF2-activating motif and SAP domain-containing transcriptional regulator	0.0281208717
+UniRef50_UPI0003C4646D: PREDICTED: MEF2-activating motif and SAP domain-containing transcriptional regulator|unclassified	0.0281208717
+UniRef50_E3FT56	0.0281199746
+UniRef50_E3FT56|unclassified	0.0281199746
+UniRef50_UPI000310E6CD: hypothetical protein	0.0281152009
+UniRef50_UPI000310E6CD: hypothetical protein|unclassified	0.0281152009
+UniRef50_UPI00037B94AB: hypothetical protein	0.0281134241
+UniRef50_UPI00037B94AB: hypothetical protein|unclassified	0.0281134241
+UniRef50_A9EDE1: NAD-dependent epimerase/dehydratase	0.0281121879
+UniRef50_A9EDE1: NAD-dependent epimerase/dehydratase|unclassified	0.0281121879
+UniRef50_UPI00046F0581: hypothetical protein	0.0281113027
+UniRef50_UPI00046F0581: hypothetical protein|unclassified	0.0281113027
+UniRef50_UPI0003FEC0C1: hypothetical protein	0.0281080792
+UniRef50_UPI0003FEC0C1: hypothetical protein|unclassified	0.0281080792
+UniRef50_A0A017SC74	0.0281058474
+UniRef50_A0A017SC74|unclassified	0.0281058474
+UniRef50_UPI00045E5FC4: hypothetical protein	0.0281054911
+UniRef50_UPI00045E5FC4: hypothetical protein|unclassified	0.0281054911
+UniRef50_U6L6X4	0.0281009108
+UniRef50_U6L6X4|unclassified	0.0281009108
+UniRef50_UPI000399A62E: ATPase AAA	0.0280986392
+UniRef50_UPI000399A62E: ATPase AAA|unclassified	0.0280986392
+UniRef50_F3KZU0: Exopolyphosphatase	0.0280985461
+UniRef50_F3KZU0: Exopolyphosphatase|unclassified	0.0280985461
+UniRef50_UPI0004634279: UDP-N-acetylglucosamine 4,6-dehydratase	0.0280982844
+UniRef50_UPI0004634279: UDP-N-acetylglucosamine 4,6-dehydratase|unclassified	0.0280982844
+UniRef50_UPI00046B439D: PREDICTED: D-3-phosphoglycerate dehydrogenase	0.0280976442
+UniRef50_UPI00046B439D: PREDICTED: D-3-phosphoglycerate dehydrogenase|unclassified	0.0280976442
+UniRef50_UPI0004635964: lysyl-tRNA synthetase	0.0280952316
+UniRef50_UPI0004635964: lysyl-tRNA synthetase|unclassified	0.0280952316
+UniRef50_UPI00036B664E: hypothetical protein	0.0280896146
+UniRef50_UPI00036B664E: hypothetical protein|unclassified	0.0280896146
+UniRef50_I7IVP6: Bacterial membrane protein	0.0280863360
+UniRef50_I7IVP6: Bacterial membrane protein|unclassified	0.0280863360
+UniRef50_K0S277	0.0280778858
+UniRef50_K0S277|unclassified	0.0280778858
+UniRef50_A8IJ09: Predicted protein (Fragment)	0.0280706005
+UniRef50_A8IJ09: Predicted protein (Fragment)|unclassified	0.0280706005
+UniRef50_UPI0003B30D02: amidohydrolase	0.0280679338
+UniRef50_UPI0003B30D02: amidohydrolase|unclassified	0.0280679338
+UniRef50_C5KW02: Calcium-binding tyrosine phosphorylation-regulated protein, putative	0.0280670512
+UniRef50_C5KW02: Calcium-binding tyrosine phosphorylation-regulated protein, putative|unclassified	0.0280670512
+UniRef50_Q8M9U5: NAD(P)H-quinone oxidoreductase subunit 5, chloroplastic	0.0280656922
+UniRef50_Q8M9U5: NAD(P)H-quinone oxidoreductase subunit 5, chloroplastic|unclassified	0.0280656922
+UniRef50_E2M0F5	0.0280648534
+UniRef50_E2M0F5|unclassified	0.0280648534
+UniRef50_UPI000395737E: TonB-dependent receptor	0.0280641634
+UniRef50_UPI000395737E: TonB-dependent receptor|unclassified	0.0280641634
+UniRef50_UPI0001FE5E48: heat shock protein 60	0.0280631849
+UniRef50_UPI0001FE5E48: heat shock protein 60|unclassified	0.0280631849
+UniRef50_UPI000427273C: preprotein translocase subunit SecA	0.0280630829
+UniRef50_UPI000427273C: preprotein translocase subunit SecA|unclassified	0.0280630829
+UniRef50_UPI00036AE0C4: hypothetical protein	0.0280626851
+UniRef50_UPI00036AE0C4: hypothetical protein|unclassified	0.0280626851
+UniRef50_UPI00047C0359: hypothetical protein	0.0280625961
+UniRef50_UPI00047C0359: hypothetical protein|unclassified	0.0280625961
+UniRef50_D5MIC8	0.0280618745
+UniRef50_D5MIC8|unclassified	0.0280618745
+UniRef50_I6SCD9: Transposase	0.0280608944
+UniRef50_I6SCD9: Transposase|unclassified	0.0280608944
+UniRef50_Q65TN5	0.0280599026
+UniRef50_Q65TN5|unclassified	0.0280599026
+UniRef50_Q9ZJU5: Anthranilate synthase component 1	0.0280570952
+UniRef50_Q9ZJU5: Anthranilate synthase component 1|unclassified	0.0280570952
+UniRef50_UPI0003641916: hypothetical protein	0.0280568647
+UniRef50_UPI0003641916: hypothetical protein|unclassified	0.0280568647
+UniRef50_UPI0001FFDB0C: C4-dicarboxylate transporter	0.0280567349
+UniRef50_UPI0001FFDB0C: C4-dicarboxylate transporter|unclassified	0.0280567349
+UniRef50_F4KQX4	0.0280556009
+UniRef50_F4KQX4|unclassified	0.0280556009
+UniRef50_UPI0003B76D70: adenylylsulfate kinase	0.0280454544
+UniRef50_UPI0003B76D70: adenylylsulfate kinase|unclassified	0.0280454544
+UniRef50_B3RX25	0.0280418049
+UniRef50_B3RX25|unclassified	0.0280418049
+UniRef50_D5RJQ7: Type VI secretion protein, VC_A0110 family	0.0280372636
+UniRef50_D5RJQ7: Type VI secretion protein, VC_A0110 family|unclassified	0.0280372636
+UniRef50_E6L4S2: Transcription regulator	0.0280322020
+UniRef50_E6L4S2: Transcription regulator|unclassified	0.0280322020
+UniRef50_UPI0003B63B8B: stage V sporulation protein D	0.0280315758
+UniRef50_UPI0003B63B8B: stage V sporulation protein D|unclassified	0.0280315758
+UniRef50_UPI000248D4F4: spore germination protein	0.0280284598
+UniRef50_UPI000248D4F4: spore germination protein|unclassified	0.0280284598
+UniRef50_C2Z8Y5	0.0280232764
+UniRef50_C2Z8Y5|unclassified	0.0280232764
+UniRef50_K8EM38	0.0280202538
+UniRef50_K8EM38|unclassified	0.0280202538
+UniRef50_B6ZXI0: Tail fiber protein	0.0280140355
+UniRef50_B6ZXI0: Tail fiber protein|unclassified	0.0280140355
+UniRef50_UPI00041B9202: hypothetical protein	0.0280096641
+UniRef50_UPI00041B9202: hypothetical protein|unclassified	0.0280096641
+UniRef50_UPI00035FACA9: hypothetical protein	0.0280095178
+UniRef50_UPI00035FACA9: hypothetical protein|unclassified	0.0280095178
+UniRef50_E8LN63	0.0280081223
+UniRef50_E8LN63|unclassified	0.0280081223
+UniRef50_A0A017TJH6	0.0280058613
+UniRef50_A0A017TJH6|unclassified	0.0280058613
+UniRef50_UPI00037C824E: hypothetical protein	0.0280008665
+UniRef50_UPI00037C824E: hypothetical protein|unclassified	0.0280008665
+UniRef50_B6J667: Arginine--tRNA ligase	0.0279995553
+UniRef50_B6J667: Arginine--tRNA ligase|unclassified	0.0279995553
+UniRef50_R7PDM5	0.0279974484
+UniRef50_R7PDM5|unclassified	0.0279974484
+UniRef50_UPI00047AC889: ATPase P	0.0279970442
+UniRef50_UPI00047AC889: ATPase P|unclassified	0.0279970442
+UniRef50_A0LM36: Macrolide export ATP-binding/permease protein MacB	0.0279967698
+UniRef50_A0LM36: Macrolide export ATP-binding/permease protein MacB|unclassified	0.0279967698
+UniRef50_A4SHF7: Nucleoside-diphosphate-sugar epimerase	0.0279953161
+UniRef50_A4SHF7: Nucleoside-diphosphate-sugar epimerase|unclassified	0.0279953161
+UniRef50_F3RIQ8: Membrane protein	0.0279768092
+UniRef50_F3RIQ8: Membrane protein|unclassified	0.0279768092
+UniRef50_T0CKP1	0.0279765921
+UniRef50_T0CKP1|unclassified	0.0279765921
+UniRef50_E1ZM35	0.0279629974
+UniRef50_E1ZM35|unclassified	0.0279629974
+UniRef50_UPI00037CD1A1: flagellar hook-basal body protein	0.0279617372
+UniRef50_UPI00037CD1A1: flagellar hook-basal body protein|unclassified	0.0279617372
+UniRef50_UPI0003B5BE55: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase	0.0279617062
+UniRef50_UPI0003B5BE55: UDP-N-acetylmuramoyl-tripeptide--D-alanyl-D-alanine ligase|unclassified	0.0279617062
+UniRef50_P28997: NAD-specific glutamate dehydrogenase	0.0279612580
+UniRef50_P28997: NAD-specific glutamate dehydrogenase|unclassified	0.0279612580
+UniRef50_UPI0004660E48: multidrug transporter AcrB	0.0279611140
+UniRef50_UPI0004660E48: multidrug transporter AcrB|unclassified	0.0279611140
+UniRef50_UPI0003BC03CE: PREDICTED: keratin-associated protein 5-5-like	0.0279594883
+UniRef50_UPI0003BC03CE: PREDICTED: keratin-associated protein 5-5-like|unclassified	0.0279594883
+UniRef50_A8G7C4: Lysine--tRNA ligase	0.0279567355
+UniRef50_A8G7C4: Lysine--tRNA ligase|unclassified	0.0279567355
+UniRef50_C1D205: Putative diguanylate-cyclase	0.0279523215
+UniRef50_C1D205: Putative diguanylate-cyclase|unclassified	0.0279523215
+UniRef50_UPI000455F125: MFS general substrate transporter	0.0279434348
+UniRef50_UPI000455F125: MFS general substrate transporter|unclassified	0.0279434348
+UniRef50_UPI00029B45BD: RND family efflux transporter MFP subunit	0.0279355770
+UniRef50_UPI00029B45BD: RND family efflux transporter MFP subunit|unclassified	0.0279355770
+UniRef50_UPI000248619A: hypothetical protein	0.0279327819
+UniRef50_UPI000248619A: hypothetical protein|unclassified	0.0279327819
+UniRef50_Q8DMA8: Polyphosphate kinase	0.0279321300
+UniRef50_Q8DMA8: Polyphosphate kinase|unclassified	0.0279321300
+UniRef50_UPI0003EBBF6F: PREDICTED: acetyl-coenzyme A synthetase, cytoplasmic-like	0.0279310698
+UniRef50_UPI0003EBBF6F: PREDICTED: acetyl-coenzyme A synthetase, cytoplasmic-like|unclassified	0.0279310698
+UniRef50_U4TBY3: CobQ/CobB/MinD/ParA nucleotide binding domain protein	0.0279246910
+UniRef50_U4TBY3: CobQ/CobB/MinD/ParA nucleotide binding domain protein|unclassified	0.0279246910
+UniRef50_Q3AWX1: Probable malate:quinone oxidoreductase	0.0279199442
+UniRef50_Q3AWX1: Probable malate:quinone oxidoreductase|unclassified	0.0279199442
+UniRef50_UPI000382AFD6: hypothetical protein	0.0279150047
+UniRef50_UPI000382AFD6: hypothetical protein|unclassified	0.0279150047
+UniRef50_UPI00036E4615: hypothetical protein, partial	0.0279097424
+UniRef50_UPI00036E4615: hypothetical protein, partial|unclassified	0.0279097424
+UniRef50_Q825Q8: 1,4-alpha-glucan branching enzyme GlgB 2	0.0278947957
+UniRef50_Q825Q8: 1,4-alpha-glucan branching enzyme GlgB 2|unclassified	0.0278947957
+UniRef50_U6K7E5	0.0278903482
+UniRef50_U6K7E5|unclassified	0.0278903482
+UniRef50_UPI0000D9989C: PREDICTED: hypothetical protein LOC718677	0.0278889320
+UniRef50_UPI0000D9989C: PREDICTED: hypothetical protein LOC718677|unclassified	0.0278889320
+UniRef50_UPI0003C43EA8: PREDICTED: pleckstrin homology domain-containing family G member 2	0.0278877913
+UniRef50_UPI0003C43EA8: PREDICTED: pleckstrin homology domain-containing family G member 2|unclassified	0.0278877913
+UniRef50_I0HUP6: Diguanylate cyclase	0.0278783807
+UniRef50_I0HUP6: Diguanylate cyclase|unclassified	0.0278783807
+UniRef50_P10482: Beta-glucosidase A	0.0278777268
+UniRef50_P10482: Beta-glucosidase A|unclassified	0.0278777268
+UniRef50_UPI00047773C9: cobalt transporter	0.0278750094
+UniRef50_UPI00047773C9: cobalt transporter|unclassified	0.0278750094
+UniRef50_A5F3R3: Guanosine-5'-triphosphate,3'-diphosphate pyrophosphatase	0.0278725964
+UniRef50_A5F3R3: Guanosine-5'-triphosphate,3'-diphosphate pyrophosphatase|unclassified	0.0278725964
+UniRef50_UPI0003B71C77: dihydrolipoamide dehydrogenase	0.0278716274
+UniRef50_UPI0003B71C77: dihydrolipoamide dehydrogenase|unclassified	0.0278716274
+UniRef50_UPI0003695221: hypothetical protein, partial	0.0278713705
+UniRef50_UPI0003695221: hypothetical protein, partial|unclassified	0.0278713705
+UniRef50_P23388: Multiphosphoryl transfer protein	0.0278710721
+UniRef50_P23388: Multiphosphoryl transfer protein|unclassified	0.0278710721
+UniRef50_K4KG71	0.0278705938
+UniRef50_K4KG71|unclassified	0.0278705938
+UniRef50_UPI0003AE1EC3: PREDICTED: basic proline-rich protein-like, partial	0.0278705545
+UniRef50_UPI0003AE1EC3: PREDICTED: basic proline-rich protein-like, partial|unclassified	0.0278705545
+UniRef50_M5T0L2: Transglutaminase domain-containing protein	0.0278698921
+UniRef50_M5T0L2: Transglutaminase domain-containing protein|unclassified	0.0278698921
+UniRef50_Q66HG7: Probable ATP-dependent RNA helicase DDX59	0.0278667554
+UniRef50_Q66HG7: Probable ATP-dependent RNA helicase DDX59|unclassified	0.0278667554
+UniRef50_Q81K31: Teichoic acids export ATP-binding protein TagH	0.0278544685
+UniRef50_Q81K31: Teichoic acids export ATP-binding protein TagH|unclassified	0.0278544685
+UniRef50_UPI00047A7B7F: hypothetical protein	0.0278544685
+UniRef50_UPI00047A7B7F: hypothetical protein|unclassified	0.0278544685
+UniRef50_UPI0003660BCC: hypothetical protein	0.0278542687
+UniRef50_UPI0003660BCC: hypothetical protein|unclassified	0.0278542687
+UniRef50_UPI00036C5BE1: hypothetical protein	0.0278537185
+UniRef50_UPI00036C5BE1: hypothetical protein|unclassified	0.0278537185
+UniRef50_UPI000237DCE8: gamma-glutamyltransferase	0.0278511032
+UniRef50_UPI000237DCE8: gamma-glutamyltransferase|unclassified	0.0278511032
+UniRef50_UPI000471E026: hypothetical protein	0.0278471553
+UniRef50_UPI000471E026: hypothetical protein|unclassified	0.0278471553
+UniRef50_UPI00047E877E: hypothetical protein	0.0278440871
+UniRef50_UPI00047E877E: hypothetical protein|unclassified	0.0278440871
+UniRef50_UPI00047B6836: hypothetical protein	0.0278435162
+UniRef50_UPI00047B6836: hypothetical protein|unclassified	0.0278435162
+UniRef50_UPI0004791B8E: 2-oxoisovalerate dehydrogenase	0.0278431918
+UniRef50_UPI0004791B8E: 2-oxoisovalerate dehydrogenase|unclassified	0.0278431918
+UniRef50_UPI0002659059: PREDICTED: sulfide:quinone oxidoreductase, mitochondrial-like	0.0278431264
+UniRef50_UPI0002659059: PREDICTED: sulfide:quinone oxidoreductase, mitochondrial-like|unclassified	0.0278431264
+UniRef50_UPI0003B71D4D: biotin carboxyl carrier protein	0.0278426499
+UniRef50_UPI0003B71D4D: biotin carboxyl carrier protein|unclassified	0.0278426499
+UniRef50_UPI000476D9A7: hypothetical protein	0.0278422370
+UniRef50_UPI000476D9A7: hypothetical protein|unclassified	0.0278422370
+UniRef50_UPI00044163EB: hypothetical protein PUNSTDRAFT_130809	0.0278414236
+UniRef50_UPI00044163EB: hypothetical protein PUNSTDRAFT_130809|unclassified	0.0278414236
+UniRef50_UPI0003729E07: hypothetical protein	0.0278373179
+UniRef50_UPI0003729E07: hypothetical protein|unclassified	0.0278373179
+UniRef50_UPI000470DD33: cell division protein FtsZ	0.0278343189
+UniRef50_UPI000470DD33: cell division protein FtsZ|unclassified	0.0278343189
+UniRef50_UPI0002739E74	0.0278336847
+UniRef50_UPI0002739E74|unclassified	0.0278336847
+UniRef50_UPI000440790F: xylitol dehydrogenase	0.0278335334
+UniRef50_UPI000440790F: xylitol dehydrogenase|unclassified	0.0278335334
+UniRef50_UPI0003B55F2C: LacI family transcriptional regulator	0.0278293106
+UniRef50_UPI0003B55F2C: LacI family transcriptional regulator|unclassified	0.0278293106
+UniRef50_B8FXD3	0.0278285646
+UniRef50_B8FXD3|unclassified	0.0278285646
+UniRef50_Q5ZKW0: Mitochondrial tRNA-specific 2-thiouridylase 1	0.0278210351
+UniRef50_Q5ZKW0: Mitochondrial tRNA-specific 2-thiouridylase 1|unclassified	0.0278210351
+UniRef50_UPI000470B36D: hypothetical protein, partial	0.0278150768
+UniRef50_UPI000470B36D: hypothetical protein, partial|unclassified	0.0278150768
+UniRef50_K6W7S7: Putative CRISPR-associated helicase	0.0278109871
+UniRef50_K6W7S7: Putative CRISPR-associated helicase|unclassified	0.0278109871
+UniRef50_E6SLA7	0.0278093098
+UniRef50_E6SLA7|unclassified	0.0278093098
+UniRef50_UPI00037D6690: hypothetical protein	0.0278072908
+UniRef50_UPI00037D6690: hypothetical protein|unclassified	0.0278072908
+UniRef50_A0Z0Z6	0.0278065234
+UniRef50_A0Z0Z6|unclassified	0.0278065234
+UniRef50_UPI000248E7A7: peptidase M23	0.0278048500
+UniRef50_UPI000248E7A7: peptidase M23|unclassified	0.0278048500
+UniRef50_R6PZX0	0.0277994556
+UniRef50_R6PZX0|unclassified	0.0277994556
+UniRef50_D5QG42: Exopolyphosphatase	0.0277912447
+UniRef50_D5QG42: Exopolyphosphatase|unclassified	0.0277912447
+UniRef50_W7CP12: Wall-associated protein (Fragment)	0.0277819579
+UniRef50_W7CP12: Wall-associated protein (Fragment)|unclassified	0.0277819579
+UniRef50_UPI00047C3E54: diguanylate cyclase	0.0277817896
+UniRef50_UPI00047C3E54: diguanylate cyclase|unclassified	0.0277817896
+UniRef50_UPI00047963D3: formate dehydrogenase	0.0277773093
+UniRef50_UPI00047963D3: formate dehydrogenase|unclassified	0.0277773093
+UniRef50_UPI0004200FB3: hypothetical protein	0.0277758886
+UniRef50_UPI0004200FB3: hypothetical protein|unclassified	0.0277758886
+UniRef50_UPI00047090FD: hypothetical protein	0.0277753323
+UniRef50_UPI00047090FD: hypothetical protein|unclassified	0.0277753323
+UniRef50_UPI0004678482: hypothetical protein	0.0277746971
+UniRef50_UPI0004678482: hypothetical protein|unclassified	0.0277746971
+UniRef50_W5XGK2: DNA mismatch repair protein MutL	0.0277679291
+UniRef50_W5XGK2: DNA mismatch repair protein MutL|unclassified	0.0277679291
+UniRef50_UPI0003714454: hypothetical protein	0.0277674851
+UniRef50_UPI0003714454: hypothetical protein|unclassified	0.0277674851
+UniRef50_P9WNM4: Bifunctional enzyme CysN/CysC	0.0277667290
+UniRef50_P9WNM4: Bifunctional enzyme CysN/CysC|unclassified	0.0277667290
+UniRef50_P75146: PTS system mannitol-specific EIICB component	0.0277650627
+UniRef50_P75146: PTS system mannitol-specific EIICB component|unclassified	0.0277650627
+UniRef50_Q3JNU8	0.0277601856
+UniRef50_Q3JNU8|unclassified	0.0277601856
+UniRef50_UPI000262C6F8: hemolysin-type calcium-binding region	0.0277583388
+UniRef50_UPI000262C6F8: hemolysin-type calcium-binding region|unclassified	0.0277583388
+UniRef50_A6FDA8	0.0277566666
+UniRef50_A6FDA8|unclassified	0.0277566666
+UniRef50_H8LRB8	0.0277472278
+UniRef50_H8LRB8|unclassified	0.0277472278
+UniRef50_O80988: Glycine dehydrogenase (decarboxylating) 2, mitochondrial	0.0277444226
+UniRef50_O80988: Glycine dehydrogenase (decarboxylating) 2, mitochondrial|unclassified	0.0277444226
+UniRef50_G1XWZ6	0.0277345697
+UniRef50_G1XWZ6|unclassified	0.0277345697
+UniRef50_UPI0003F085E7: PREDICTED: agmatinase, mitochondrial-like, partial	0.0277319904
+UniRef50_UPI0003F085E7: PREDICTED: agmatinase, mitochondrial-like, partial|unclassified	0.0277319904
+UniRef50_UPI00029DA3CC: PREDICTED: trifunctional purine biosynthetic protein adenosine-3-like	0.0277276302
+UniRef50_UPI00029DA3CC: PREDICTED: trifunctional purine biosynthetic protein adenosine-3-like|unclassified	0.0277276302
+UniRef50_Q07471: Thiamine metabolism regulatory protein THI3	0.0277263270
+UniRef50_Q07471: Thiamine metabolism regulatory protein THI3|unclassified	0.0277263270
+UniRef50_UPI0003653506: hypothetical protein	0.0277246652
+UniRef50_UPI0003653506: hypothetical protein|unclassified	0.0277246652
+UniRef50_UPI0003B49CB3: serine hydroxymethyltransferase	0.0277195542
+UniRef50_UPI0003B49CB3: serine hydroxymethyltransferase|unclassified	0.0277195542
+UniRef50_UPI0003711956: hypothetical protein	0.0277188381
+UniRef50_UPI0003711956: hypothetical protein|unclassified	0.0277188381
+UniRef50_UPI0004085958: chemotaxis protein CheY	0.0277181105
+UniRef50_UPI0004085958: chemotaxis protein CheY|unclassified	0.0277181105
+UniRef50_UPI00031BE62A: hypothetical protein	0.0277165386
+UniRef50_UPI00031BE62A: hypothetical protein|unclassified	0.0277165386
+UniRef50_Q59A32: Trifunctional purine biosynthetic protein adenosine-3	0.0277160726
+UniRef50_Q59A32: Trifunctional purine biosynthetic protein adenosine-3|unclassified	0.0277160726
+UniRef50_UPI0003EA8DFE: PREDICTED: NADPH oxidase 3-like	0.0277093575
+UniRef50_UPI0003EA8DFE: PREDICTED: NADPH oxidase 3-like|unclassified	0.0277093575
+UniRef50_UPI0003C1900C: PREDICTED: serine/arginine repetitive matrix protein 2-like isoform X1	0.0277057510
+UniRef50_UPI0003C1900C: PREDICTED: serine/arginine repetitive matrix protein 2-like isoform X1|unclassified	0.0277057510
+UniRef50_A9V313: Predicted protein	0.0277046166
+UniRef50_A9V313: Predicted protein|unclassified	0.0277046166
+UniRef50_I0VEJ4	0.0277037925
+UniRef50_I0VEJ4|unclassified	0.0277037925
+UniRef50_UPI0003958A8D: chorismate-binding protein	0.0276998974
+UniRef50_UPI0003958A8D: chorismate-binding protein|unclassified	0.0276998974
+UniRef50_UPI000463ADD2: hypothetical protein	0.0276970865
+UniRef50_UPI000463ADD2: hypothetical protein|unclassified	0.0276970865
+UniRef50_Q836J8: ATP-dependent helicase/nuclease subunit A	0.0276963073
+UniRef50_Q836J8: ATP-dependent helicase/nuclease subunit A|unclassified	0.0276963073
+UniRef50_UPI000364E3EA: hypothetical protein	0.0276904827
+UniRef50_UPI000364E3EA: hypothetical protein|unclassified	0.0276904827
+UniRef50_Q7M960: INTEGRAL MEMBRANE PROTEIN	0.0276871530
+UniRef50_Q7M960: INTEGRAL MEMBRANE PROTEIN|unclassified	0.0276871530
+UniRef50_Q8IQF1: Molybdenum cofactor biosynthesis protein 1	0.0276866404
+UniRef50_Q8IQF1: Molybdenum cofactor biosynthesis protein 1|unclassified	0.0276866404
+UniRef50_Q2J545: Cysteine--tRNA ligase	0.0276857204
+UniRef50_Q2J545: Cysteine--tRNA ligase|unclassified	0.0276857204
+UniRef50_C5AI60: Diguanylate cyclase	0.0276851039
+UniRef50_C5AI60: Diguanylate cyclase|unclassified	0.0276851039
+UniRef50_UPI000440DE53: PREDICTED: mucin-5AC-like	0.0276848391
+UniRef50_UPI000440DE53: PREDICTED: mucin-5AC-like|unclassified	0.0276848391
+UniRef50_Q1N1Z2	0.0276842966
+UniRef50_Q1N1Z2|unclassified	0.0276842966
+UniRef50_UPI00035DA6F7: hypothetical protein	0.0276827551
+UniRef50_UPI00035DA6F7: hypothetical protein|unclassified	0.0276827551
+UniRef50_UPI0003D40258: biotin carboxylase	0.0276826859
+UniRef50_UPI0003D40258: biotin carboxylase|unclassified	0.0276826859
+UniRef50_R5QJY7	0.0276818813
+UniRef50_R5QJY7|unclassified	0.0276818813
+UniRef50_B6AXL7: Flagellar motor protein	0.0276721288
+UniRef50_B6AXL7: Flagellar motor protein|unclassified	0.0276721288
+UniRef50_Q3AQR4: Methionine--tRNA ligase	0.0276622138
+UniRef50_Q3AQR4: Methionine--tRNA ligase|unclassified	0.0276622138
+UniRef50_UPI00039B519D: hypothetical protein	0.0276597901
+UniRef50_UPI00039B519D: hypothetical protein|unclassified	0.0276597901
+UniRef50_B8DNM5: Proline--tRNA ligase	0.0276561766
+UniRef50_B8DNM5: Proline--tRNA ligase|unclassified	0.0276561766
+UniRef50_Q1MRD0: Proline--tRNA ligase	0.0276561766
+UniRef50_Q1MRD0: Proline--tRNA ligase|unclassified	0.0276561766
+UniRef50_UPI0003729A2D: hypothetical protein, partial	0.0276525927
+UniRef50_UPI0003729A2D: hypothetical protein, partial|unclassified	0.0276525927
+UniRef50_UPI0003748CB6: hypothetical protein	0.0276500628
+UniRef50_UPI0003748CB6: hypothetical protein|unclassified	0.0276500628
+UniRef50_UPI00047CA6E5: flagellar motor protein MotB	0.0276454145
+UniRef50_UPI00047CA6E5: flagellar motor protein MotB|unclassified	0.0276454145
+UniRef50_UPI00047253F8: hypothetical protein	0.0276425834
+UniRef50_UPI00047253F8: hypothetical protein|unclassified	0.0276425834
+UniRef50_A6WUM2: Transposase IS4 family protein	0.0276417666
+UniRef50_A6WUM2: Transposase IS4 family protein|unclassified	0.0276417666
+UniRef50_F8KH67: Membrane anchored protein	0.0276349382
+UniRef50_F8KH67: Membrane anchored protein|unclassified	0.0276349382
+UniRef50_B0SY33: Exodeoxyribonuclease 7 large subunit	0.0276315903
+UniRef50_B0SY33: Exodeoxyribonuclease 7 large subunit|unclassified	0.0276315903
+UniRef50_C9R5I1: Lipopolysaccharide biosynthesis protein	0.0276296952
+UniRef50_C9R5I1: Lipopolysaccharide biosynthesis protein|unclassified	0.0276296952
+UniRef50_A0A031MEF8: Type VI secretion protein VasK	0.0276267315
+UniRef50_A0A031MEF8: Type VI secretion protein VasK|unclassified	0.0276267315
+UniRef50_UPI0003725D3A: hypothetical protein	0.0276228570
+UniRef50_UPI0003725D3A: hypothetical protein|unclassified	0.0276228570
+UniRef50_B6WWV9: Membrane protein	0.0276204911
+UniRef50_B6WWV9: Membrane protein|unclassified	0.0276204911
+UniRef50_UPI0003B7187B: hypothetical protein	0.0276146477
+UniRef50_UPI0003B7187B: hypothetical protein|unclassified	0.0276146477
+UniRef50_UPI00037D23E6: hypothetical protein	0.0276140863
+UniRef50_UPI00037D23E6: hypothetical protein|unclassified	0.0276140863
+UniRef50_P47985: Cytochrome b-c1 complex subunit Rieske, mitochondrial	0.0276120090
+UniRef50_P47985: Cytochrome b-c1 complex subunit Rieske, mitochondrial|unclassified	0.0276120090
+UniRef50_Q3JR64	0.0276116259
+UniRef50_Q3JR64|unclassified	0.0276116259
+UniRef50_UPI00036ADBB7: hypothetical protein	0.0275981680
+UniRef50_UPI00036ADBB7: hypothetical protein|unclassified	0.0275981680
+UniRef50_UPI00047926DE: transposase	0.0275871923
+UniRef50_UPI00047926DE: transposase|unclassified	0.0275871923
+UniRef50_UPI00036A1CB4: hypothetical protein	0.0275864355
+UniRef50_UPI00036A1CB4: hypothetical protein|unclassified	0.0275864355
+UniRef50_UPI0003B74E71: sulfur deprivation response regulator	0.0275860835
+UniRef50_UPI0003B74E71: sulfur deprivation response regulator|unclassified	0.0275860835
+UniRef50_UPI000477AE59: GMP synthase	0.0275837014
+UniRef50_UPI000477AE59: GMP synthase|unclassified	0.0275837014
+UniRef50_UPI0003724082: hypothetical protein	0.0275795096
+UniRef50_UPI0003724082: hypothetical protein|unclassified	0.0275795096
+UniRef50_Q2S158: Aspartate--tRNA(Asp/Asn) ligase	0.0275782976
+UniRef50_Q2S158: Aspartate--tRNA(Asp/Asn) ligase|unclassified	0.0275782976
+UniRef50_UPI00041118D3: PTS beta-glucoside transporter subunit IIABC	0.0275706771
+UniRef50_UPI00041118D3: PTS beta-glucoside transporter subunit IIABC|unclassified	0.0275706771
+UniRef50_UPI00047A86C3: preprotein translocase subunit SecA	0.0275683075
+UniRef50_UPI00047A86C3: preprotein translocase subunit SecA|unclassified	0.0275683075
+UniRef50_F4V3B2: Phage tail sheath protein	0.0275653455
+UniRef50_F4V3B2: Phage tail sheath protein|unclassified	0.0275653455
+UniRef50_UPI00040E434F: histidine kinase	0.0275636366
+UniRef50_UPI00040E434F: histidine kinase|unclassified	0.0275636366
+UniRef50_UPI0004753FFF: hypothetical protein	0.0275603616
+UniRef50_UPI0004753FFF: hypothetical protein|unclassified	0.0275603616
+UniRef50_UPI0003B72BA0: hydrogenase	0.0275582928
+UniRef50_UPI0003B72BA0: hydrogenase|unclassified	0.0275582928
+UniRef50_M3EM95: Diguanylate cyclase/phosphodiesterase (GGDEF & EAL domains) with PAS/PAC sensor(S)	0.0275536237
+UniRef50_M3EM95: Diguanylate cyclase/phosphodiesterase (GGDEF & EAL domains) with PAS/PAC sensor(S)|unclassified	0.0275536237
+UniRef50_Q96HN2: Putative adenosylhomocysteinase 3	0.0275497957
+UniRef50_Q96HN2: Putative adenosylhomocysteinase 3|unclassified	0.0275497957
+UniRef50_UPI000362C020: hypothetical protein	0.0275421948
+UniRef50_UPI000362C020: hypothetical protein|unclassified	0.0275421948
+UniRef50_B9KXA9: Large exoprotein involved in heme utilization or adhesion	0.0275397871
+UniRef50_B9KXA9: Large exoprotein involved in heme utilization or adhesion|unclassified	0.0275397871
+UniRef50_K2Q4F5: Internalin-A	0.0275378146
+UniRef50_K2Q4F5: Internalin-A|unclassified	0.0275378146
+UniRef50_A5GWT2: Aspartate--tRNA(Asp/Asn) ligase	0.0275290817
+UniRef50_A5GWT2: Aspartate--tRNA(Asp/Asn) ligase|unclassified	0.0275290817
+UniRef50_Q6XQN6: Nicotinate phosphoribosyltransferase	0.0275227908
+UniRef50_Q6XQN6: Nicotinate phosphoribosyltransferase|unclassified	0.0275227908
+UniRef50_B6VLA0	0.0275175777
+UniRef50_B6VLA0|unclassified	0.0275175777
+UniRef50_I3LAR5	0.0275083175
+UniRef50_I3LAR5|unclassified	0.0275083175
+UniRef50_A3DLW5: Cysteine--tRNA ligase	0.0274982304
+UniRef50_A3DLW5: Cysteine--tRNA ligase|unclassified	0.0274982304
+UniRef50_UPI00045EBEB6: MULTISPECIES: antibiotic ABC transporter ATP-binding protein	0.0274978625
+UniRef50_UPI00045EBEB6: MULTISPECIES: antibiotic ABC transporter ATP-binding protein|unclassified	0.0274978625
+UniRef50_UPI00037530A9: hypothetical protein	0.0274951642
+UniRef50_UPI00037530A9: hypothetical protein|unclassified	0.0274951642
+UniRef50_UPI0003765EE2: hypothetical protein	0.0274948235
+UniRef50_UPI0003765EE2: hypothetical protein|unclassified	0.0274948235
+UniRef50_UPI00035F6943: hypothetical protein	0.0274932529
+UniRef50_UPI00035F6943: hypothetical protein|unclassified	0.0274932529
+UniRef50_L8XX63	0.0274867991
+UniRef50_L8XX63|unclassified	0.0274867991
+UniRef50_UPI00047A8026: D-ribose transporter ATP-binding protein	0.0274823121
+UniRef50_UPI00047A8026: D-ribose transporter ATP-binding protein|unclassified	0.0274823121
+UniRef50_UPI000318DD39: hypothetical protein	0.0274814626
+UniRef50_UPI000318DD39: hypothetical protein|unclassified	0.0274814626
+UniRef50_N9W643	0.0274800122
+UniRef50_N9W643|unclassified	0.0274800122
+UniRef50_UPI0003B610B0: C4-dicarboxylate ABC transporter permease	0.0274759744
+UniRef50_UPI0003B610B0: C4-dicarboxylate ABC transporter permease|unclassified	0.0274759744
+UniRef50_Q98QB6: ATP synthase subunit beta 2	0.0274755283
+UniRef50_Q98QB6: ATP synthase subunit beta 2|unclassified	0.0274755283
+UniRef50_UPI00047E7788: hypothetical protein	0.0274734593
+UniRef50_UPI00047E7788: hypothetical protein|unclassified	0.0274734593
+UniRef50_O66668	0.0274701297
+UniRef50_O66668|unclassified	0.0274701297
+UniRef50_UPI0003722F98: hypothetical protein	0.0274691620
+UniRef50_UPI0003722F98: hypothetical protein|unclassified	0.0274691620
+UniRef50_UPI000319F223: hypothetical protein	0.0274658463
+UniRef50_UPI000319F223: hypothetical protein|unclassified	0.0274658463
+UniRef50_UPI0003196FD5: hypothetical protein	0.0274649551
+UniRef50_UPI0003196FD5: hypothetical protein|unclassified	0.0274649551
+UniRef50_UPI00034AAFC3: hypothetical protein	0.0274624759
+UniRef50_UPI00034AAFC3: hypothetical protein|unclassified	0.0274624759
+UniRef50_U6LMB1	0.0274550949
+UniRef50_U6LMB1|unclassified	0.0274550949
+UniRef50_UPI00047AA101: hypothetical protein	0.0274550676
+UniRef50_UPI00047AA101: hypothetical protein|unclassified	0.0274550676
+UniRef50_UPI0002D3E8D4: hypothetical protein	0.0274524223
+UniRef50_UPI0002D3E8D4: hypothetical protein|unclassified	0.0274524223
+UniRef50_UPI00035D05BC: hypothetical protein	0.0274475973
+UniRef50_UPI00035D05BC: hypothetical protein|unclassified	0.0274475973
+UniRef50_UPI00035F69F0: hypothetical protein, partial	0.0274439727
+UniRef50_UPI00035F69F0: hypothetical protein, partial|unclassified	0.0274439727
+UniRef50_UPI0003B6A19C: glutamyl-tRNA reductase	0.0274430047
+UniRef50_UPI0003B6A19C: glutamyl-tRNA reductase|unclassified	0.0274430047
+UniRef50_UPI0003B73704: hypothetical protein	0.0274381239
+UniRef50_UPI0003B73704: hypothetical protein|unclassified	0.0274381239
+UniRef50_UPI0004011CB7: hypothetical protein	0.0274328548
+UniRef50_UPI0004011CB7: hypothetical protein|unclassified	0.0274328548
+UniRef50_UPI00047AE020: hypothetical protein	0.0274312144
+UniRef50_UPI00047AE020: hypothetical protein|unclassified	0.0274312144
+UniRef50_R9M0L7	0.0274304309
+UniRef50_R9M0L7|unclassified	0.0274304309
+UniRef50_F7P0K8: Exopolyphosphatase	0.0274302244
+UniRef50_F7P0K8: Exopolyphosphatase|unclassified	0.0274302244
+UniRef50_UPI0003C1951F: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial	0.0274244530
+UniRef50_UPI0003C1951F: PREDICTED: glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial|unclassified	0.0274244530
+UniRef50_UPI000366A0BF: aminotransferase	0.0274238595
+UniRef50_UPI000366A0BF: aminotransferase|unclassified	0.0274238595
+UniRef50_UPI0003B57584: hypothetical protein	0.0274163670
+UniRef50_UPI0003B57584: hypothetical protein|unclassified	0.0274163670
+UniRef50_UPI0003FA835C: alkaline phosphatase	0.0274147233
+UniRef50_UPI0003FA835C: alkaline phosphatase|unclassified	0.0274147233
+UniRef50_J2IS06: Mating pair stabilization TraN family protein	0.0274104535
+UniRef50_J2IS06: Mating pair stabilization TraN family protein|unclassified	0.0274104535
+UniRef50_UPI0003C266F6: PREDICTED: procollagen C-endopeptidase enhancer 1-like	0.0274091472
+UniRef50_UPI0003C266F6: PREDICTED: procollagen C-endopeptidase enhancer 1-like|unclassified	0.0274091472
+UniRef50_UPI0003748772: hypothetical protein	0.0274064141
+UniRef50_UPI0003748772: hypothetical protein|unclassified	0.0274064141
+UniRef50_J2WHC7: Soluble lytic murein transglycosylase-like protein	0.0273954929
+UniRef50_J2WHC7: Soluble lytic murein transglycosylase-like protein|unclassified	0.0273954929
+UniRef50_UPI000362695F: hypothetical protein	0.0273933551
+UniRef50_UPI000362695F: hypothetical protein|unclassified	0.0273933551
+UniRef50_UPI0004449B34: hypothetical protein STEHIDRAFT_171313	0.0273915591
+UniRef50_UPI0004449B34: hypothetical protein STEHIDRAFT_171313|unclassified	0.0273915591
+UniRef50_K0G496: D-galactose-binding periplasmic protein	0.0273908752
+UniRef50_K0G496: D-galactose-binding periplasmic protein|unclassified	0.0273908752
+UniRef50_UPI0003B6D0DD: peptidase M24	0.0273882501
+UniRef50_UPI0003B6D0DD: peptidase M24|unclassified	0.0273882501
+UniRef50_UPI00047E6A24: hypothetical protein	0.0273817919
+UniRef50_UPI00047E6A24: hypothetical protein|unclassified	0.0273817919
+UniRef50_B2GBP8: Probable D-serine dehydratase	0.0273759290
+UniRef50_B2GBP8: Probable D-serine dehydratase|unclassified	0.0273759290
+UniRef50_UPI0003B4A940: hypothetical protein	0.0273722773
+UniRef50_UPI0003B4A940: hypothetical protein|unclassified	0.0273722773
+UniRef50_UPI000299D6AD: DEAD/DEAH box helicase	0.0273714212
+UniRef50_UPI000299D6AD: DEAD/DEAH box helicase|unclassified	0.0273714212
+UniRef50_X4RT03	0.0273706571
+UniRef50_X4RT03|unclassified	0.0273706571
+UniRef50_G8XER2: Drug resistance efflux protein	0.0273695973
+UniRef50_G8XER2: Drug resistance efflux protein|unclassified	0.0273695973
+UniRef50_M9RDS0: OmpA-like protein	0.0273661004
+UniRef50_M9RDS0: OmpA-like protein|unclassified	0.0273661004
+UniRef50_B0UPI7	0.0273646458
+UniRef50_B0UPI7|unclassified	0.0273646458
+UniRef50_Q96I59: Probable asparagine--tRNA ligase, mitochondrial	0.0273599115
+UniRef50_Q96I59: Probable asparagine--tRNA ligase, mitochondrial|unclassified	0.0273599115
+UniRef50_A0A017T4J5	0.0273575491
+UniRef50_A0A017T4J5|unclassified	0.0273575491
+UniRef50_UPI00036AF34E: hypothetical protein	0.0273551818
+UniRef50_UPI00036AF34E: hypothetical protein|unclassified	0.0273551818
+UniRef50_UPI000379748F: hypothetical protein	0.0273482589
+UniRef50_UPI000379748F: hypothetical protein|unclassified	0.0273482589
+UniRef50_UPI000373C684: hypothetical protein, partial	0.0273437214
+UniRef50_UPI000373C684: hypothetical protein, partial|unclassified	0.0273437214
+UniRef50_UPI000462FF09: tight adherence secretin RcpA	0.0273423914
+UniRef50_UPI000462FF09: tight adherence secretin RcpA|unclassified	0.0273423914
+UniRef50_F3ZC85	0.0273410050
+UniRef50_F3ZC85|unclassified	0.0273410050
+UniRef50_I6GMY7: Inner membrane transport protein YhaO	0.0273384133
+UniRef50_I6GMY7: Inner membrane transport protein YhaO|unclassified	0.0273384133
+UniRef50_UPI00037DD4F1: hypothetical protein	0.0273371606
+UniRef50_UPI00037DD4F1: hypothetical protein|unclassified	0.0273371606
+UniRef50_UPI000468CBBC: alkaline phosphatase	0.0273317648
+UniRef50_UPI000468CBBC: alkaline phosphatase|unclassified	0.0273317648
+UniRef50_U7NYZ2	0.0273302002
+UniRef50_U7NYZ2|unclassified	0.0273302002
+UniRef50_V2J6J5	0.0273297221
+UniRef50_V2J6J5|unclassified	0.0273297221
+UniRef50_UPI0004745777: 3-methylcrotonyl-CoA carboxylase	0.0273291026
+UniRef50_UPI0004745777: 3-methylcrotonyl-CoA carboxylase|unclassified	0.0273291026
+UniRef50_UPI0002F40134: hypothetical protein	0.0273288270
+UniRef50_UPI0002F40134: hypothetical protein|unclassified	0.0273288270
+UniRef50_UPI0003B666EC: ABC transporter	0.0273280457
+UniRef50_UPI0003B666EC: ABC transporter|unclassified	0.0273280457
+UniRef50_UPI0004712802: ribose ABC transporter permease	0.0273279081
+UniRef50_UPI0004712802: ribose ABC transporter permease|unclassified	0.0273279081
+UniRef50_A9WHT8: Histidine ammonia-lyase	0.0273264523
+UniRef50_A9WHT8: Histidine ammonia-lyase|unclassified	0.0273264523
+UniRef50_UPI00037D6A42: hypothetical protein	0.0273235864
+UniRef50_UPI00037D6A42: hypothetical protein|unclassified	0.0273235864
+UniRef50_UPI0003B6152B: hypothetical protein	0.0273223123
+UniRef50_UPI0003B6152B: hypothetical protein|unclassified	0.0273223123
+UniRef50_UPI00047398B6: carnitine dehydratase	0.0273219241
+UniRef50_UPI00047398B6: carnitine dehydratase|unclassified	0.0273219241
+UniRef50_Q11FP3	0.0273190069
+UniRef50_Q11FP3|unclassified	0.0273190069
+UniRef50_UPI000225AEB1: outer membrane protein	0.0273167486
+UniRef50_UPI000225AEB1: outer membrane protein|unclassified	0.0273167486
+UniRef50_UPI00035D7244: hypothetical protein	0.0273141250
+UniRef50_UPI00035D7244: hypothetical protein|unclassified	0.0273141250
+UniRef50_M1CWM3	0.0273131304
+UniRef50_M1CWM3|unclassified	0.0273131304
+UniRef50_UPI0003827A64: hypothetical protein	0.0273121220
+UniRef50_UPI0003827A64: hypothetical protein|unclassified	0.0273121220
+UniRef50_G2RTD5: Ferrichrome ABC transporter binding protein	0.0273117550
+UniRef50_G2RTD5: Ferrichrome ABC transporter binding protein|unclassified	0.0273117550
+UniRef50_UPI0003731F30: hypothetical protein	0.0273060939
+UniRef50_UPI0003731F30: hypothetical protein|unclassified	0.0273060939
+UniRef50_B5JV06: Beta-lactamase	0.0273053141
+UniRef50_B5JV06: Beta-lactamase|unclassified	0.0273053141
+UniRef50_UPI00046968BE: hypothetical protein	0.0273006780
+UniRef50_UPI00046968BE: hypothetical protein|unclassified	0.0273006780
+UniRef50_UPI0003B4C46A: hypothetical protein	0.0272984120
+UniRef50_UPI0003B4C46A: hypothetical protein|unclassified	0.0272984120
+UniRef50_F8VIG8: Type VI secretion protein (VasA)	0.0272983639
+UniRef50_F8VIG8: Type VI secretion protein (VasA)|unclassified	0.0272983639
+UniRef50_O43175: D-3-phosphoglycerate dehydrogenase	0.0272893481
+UniRef50_O43175: D-3-phosphoglycerate dehydrogenase|unclassified	0.0272893481
+UniRef50_UPI000225AE99: ribonuclease R	0.0272875078
+UniRef50_UPI000225AE99: ribonuclease R|unclassified	0.0272875078
+UniRef50_S0JMW2	0.0272849329
+UniRef50_S0JMW2|unclassified	0.0272849329
+UniRef50_UPI00036836B6: hypothetical protein	0.0272837132
+UniRef50_UPI00036836B6: hypothetical protein|unclassified	0.0272837132
+UniRef50_UPI0004146934: chemotaxis protein	0.0272829232
+UniRef50_UPI0004146934: chemotaxis protein|unclassified	0.0272829232
+UniRef50_K5VYY8	0.0272775649
+UniRef50_K5VYY8|unclassified	0.0272775649
+UniRef50_U6I6N5: Sulfide:quinone oxidoreductase	0.0272767054
+UniRef50_U6I6N5: Sulfide:quinone oxidoreductase|unclassified	0.0272767054
+UniRef50_M5CKL9: Inner membrane transport permease ybhR	0.0272762301
+UniRef50_M5CKL9: Inner membrane transport permease ybhR|unclassified	0.0272762301
+UniRef50_D7A8X9: HI0933 family protein	0.0272729120
+UniRef50_D7A8X9: HI0933 family protein|unclassified	0.0272729120
+UniRef50_C2Z3W3	0.0272694844
+UniRef50_C2Z3W3|unclassified	0.0272694844
+UniRef50_UPI0004720102: hypothetical protein	0.0272690445
+UniRef50_UPI0004720102: hypothetical protein|unclassified	0.0272690445
+UniRef50_UPI000404FF04: hypothetical protein	0.0272640918
+UniRef50_UPI000404FF04: hypothetical protein|unclassified	0.0272640918
+UniRef50_UPI00047EEF17: hypothetical protein	0.0272633048
+UniRef50_UPI00047EEF17: hypothetical protein|unclassified	0.0272633048
+UniRef50_M4HJD4: S-layer protein / N-acetylmuramoyl-L-alanine amidase	0.0272621239
+UniRef50_M4HJD4: S-layer protein / N-acetylmuramoyl-L-alanine amidase|unclassified	0.0272621239
+UniRef50_A7HCP4: Arginine--tRNA ligase	0.0272603523
+UniRef50_A7HCP4: Arginine--tRNA ligase|unclassified	0.0272603523
+UniRef50_S5QZJ2: Transposase	0.0272572160
+UniRef50_S5QZJ2: Transposase|unclassified	0.0272572160
+UniRef50_B0ZTR0	0.0272528488
+UniRef50_B0ZTR0|unclassified	0.0272528488
+UniRef50_UPI000375C9CF: hypothetical protein, partial	0.0272514149
+UniRef50_UPI000375C9CF: hypothetical protein, partial|unclassified	0.0272514149
+UniRef50_D0LWB8: ATP-dependent zinc metalloprotease FtsH	0.0272494605
+UniRef50_D0LWB8: ATP-dependent zinc metalloprotease FtsH|unclassified	0.0272494605
+UniRef50_UPI0003B52E8B: IMP cyclohydrolase	0.0272483698
+UniRef50_UPI0003B52E8B: IMP cyclohydrolase|unclassified	0.0272483698
+UniRef50_H4FC60	0.0272470254
+UniRef50_H4FC60|unclassified	0.0272470254
+UniRef50_O29513: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit	0.0272386798
+UniRef50_O29513: Dihydroorotate dehydrogenase B (NAD(+)), catalytic subunit|unclassified	0.0272386798
+UniRef50_UPI00047694AF: hypothetical protein	0.0272332008
+UniRef50_UPI00047694AF: hypothetical protein|unclassified	0.0272332008
+UniRef50_W7QK08	0.0272300388
+UniRef50_W7QK08|unclassified	0.0272300388
+UniRef50_UPI0004786564: hypothetical protein	0.0272296991
+UniRef50_UPI0004786564: hypothetical protein|unclassified	0.0272296991
+UniRef50_Q9DAT5: Mitochondrial tRNA-specific 2-thiouridylase 1	0.0272283671
+UniRef50_Q9DAT5: Mitochondrial tRNA-specific 2-thiouridylase 1|unclassified	0.0272283671
+UniRef50_C2NAU8: S-layer protein / Peptidoglycan endo-beta-N-acetylglucosaminidase	0.0272276219
+UniRef50_C2NAU8: S-layer protein / Peptidoglycan endo-beta-N-acetylglucosaminidase|unclassified	0.0272276219
+UniRef50_B2GB97: Exodeoxyribonuclease V alpha subunit	0.0272260643
+UniRef50_B2GB97: Exodeoxyribonuclease V alpha subunit|unclassified	0.0272260643
+UniRef50_UPI00021977F6: DNA repair ATPase	0.0272257081
+UniRef50_UPI00021977F6: DNA repair ATPase|unclassified	0.0272257081
+UniRef50_UPI00034B7A86: hypothetical protein	0.0272238626
+UniRef50_UPI00034B7A86: hypothetical protein|unclassified	0.0272238626
+UniRef50_UPI0003B4A503: phosphomannomutase	0.0272206659
+UniRef50_UPI0003B4A503: phosphomannomutase|unclassified	0.0272206659
+UniRef50_E3S415	0.0272205120
+UniRef50_E3S415|unclassified	0.0272205120
+UniRef50_M2SV33	0.0272140413
+UniRef50_M2SV33|unclassified	0.0272140413
+UniRef50_V5X747: Permease	0.0272135853
+UniRef50_V5X747: Permease|unclassified	0.0272135853
+UniRef50_UPI000200163E: chromate transporter	0.0272116702
+UniRef50_UPI000200163E: chromate transporter|unclassified	0.0272116702
+UniRef50_UPI00046E9748: excinuclease ABC subunit C	0.0272112202
+UniRef50_UPI00046E9748: excinuclease ABC subunit C|unclassified	0.0272112202
+UniRef50_I0KHG7	0.0272111476
+UniRef50_I0KHG7|unclassified	0.0272111476
+UniRef50_A4S1Y9: Predicted protein	0.0272108071
+UniRef50_A4S1Y9: Predicted protein|unclassified	0.0272108071
+UniRef50_UPI00034CB51F: kojibiose phosphorylase	0.0272068710
+UniRef50_UPI00034CB51F: kojibiose phosphorylase|unclassified	0.0272068710
+UniRef50_UPI000462E8F2: hypothetical protein	0.0272044612
+UniRef50_UPI000462E8F2: hypothetical protein|unclassified	0.0272044612
+UniRef50_X5P6R6	0.0272040861
+UniRef50_X5P6R6|unclassified	0.0272040861
+UniRef50_UPI0003945864: PREDICTED: basic salivary proline-rich protein 4-like	0.0272031809
+UniRef50_UPI0003945864: PREDICTED: basic salivary proline-rich protein 4-like|unclassified	0.0272031809
+UniRef50_UPI000255A109: FrpC, partial	0.0272007303
+UniRef50_UPI000255A109: FrpC, partial|unclassified	0.0272007303
+UniRef50_UPI000465565E: hypothetical protein	0.0271968635
+UniRef50_UPI000465565E: hypothetical protein|unclassified	0.0271968635
+UniRef50_R8SB24	0.0271955404
+UniRef50_R8SB24|unclassified	0.0271955404
+UniRef50_UPI0003C116B6: PREDICTED: chaperone protein ClpB2, chloroplastic-like	0.0271915697
+UniRef50_UPI0003C116B6: PREDICTED: chaperone protein ClpB2, chloroplastic-like|unclassified	0.0271915697
+UniRef50_B5ZBH7: Asparagine--tRNA ligase	0.0271912816
+UniRef50_B5ZBH7: Asparagine--tRNA ligase|unclassified	0.0271912816
+UniRef50_UPI000443101F: PREDICTED: very long-chain specific acyl-CoA dehydrogenase, mitochondrial isoform X3	0.0271895475
+UniRef50_UPI000443101F: PREDICTED: very long-chain specific acyl-CoA dehydrogenase, mitochondrial isoform X3|unclassified	0.0271895475
+UniRef50_S5S714: NnrS family protein	0.0271837495
+UniRef50_S5S714: NnrS family protein|unclassified	0.0271837495
+UniRef50_UPI0003B45B3B: hypothetical protein	0.0271809977
+UniRef50_UPI0003B45B3B: hypothetical protein|unclassified	0.0271809977
+UniRef50_Q7RVY5: 5-aminolevulinate synthase, mitochondrial	0.0271789396
+UniRef50_Q7RVY5: 5-aminolevulinate synthase, mitochondrial|unclassified	0.0271789396
+UniRef50_W4E323: S-layer protein	0.0271779341
+UniRef50_W4E323: S-layer protein|unclassified	0.0271779341
+UniRef50_UPI00047D2769: phosphoenolpyruvate-protein phosphotransferase	0.0271665988
+UniRef50_UPI00047D2769: phosphoenolpyruvate-protein phosphotransferase|unclassified	0.0271665988
+UniRef50_D7A127	0.0271665342
+UniRef50_D7A127|unclassified	0.0271665342
+UniRef50_UPI000475CD3E: hypothetical protein, partial	0.0271638534
+UniRef50_UPI000475CD3E: hypothetical protein, partial|unclassified	0.0271638534
+UniRef50_UPI000366BF3D: hypothetical protein	0.0271638264
+UniRef50_UPI000366BF3D: hypothetical protein|unclassified	0.0271638264
+UniRef50_UPI0002895CF3: amino acid carrier protein, partial	0.0271557787
+UniRef50_UPI0002895CF3: amino acid carrier protein, partial|unclassified	0.0271557787
+UniRef50_F0VN68	0.0271528611
+UniRef50_F0VN68|unclassified	0.0271528611
+UniRef50_UPI0003B4812F: acyltransferase	0.0271522751
+UniRef50_UPI0003B4812F: acyltransferase|unclassified	0.0271522751
+UniRef50_Q8FP91: Probable malate:quinone oxidoreductase	0.0271510276
+UniRef50_Q8FP91: Probable malate:quinone oxidoreductase|unclassified	0.0271510276
+UniRef50_UPI000478551B: hypothetical protein	0.0271381206
+UniRef50_UPI000478551B: hypothetical protein|unclassified	0.0271381206
+UniRef50_C2MXE0: Phage infection protein	0.0271368678
+UniRef50_C2MXE0: Phage infection protein|unclassified	0.0271368678
+UniRef50_UPI00037D705C: hypothetical protein	0.0271325532
+UniRef50_UPI00037D705C: hypothetical protein|unclassified	0.0271325532
+UniRef50_UPI0003A646A2: GTP pyrophosphokinase	0.0271242312
+UniRef50_UPI0003A646A2: GTP pyrophosphokinase|unclassified	0.0271242312
+UniRef50_Q5GTG5: UDP-N-acetylmuramate--L-alanine ligase	0.0271221601
+UniRef50_Q5GTG5: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.0271221601
+UniRef50_C1N1Y1: Predicted protein	0.0271212760
+UniRef50_C1N1Y1: Predicted protein|unclassified	0.0271212760
+UniRef50_W5X5E4: Putative gluconeogenesis factor	0.0271179011
+UniRef50_W5X5E4: Putative gluconeogenesis factor|unclassified	0.0271179011
+UniRef50_UPI00036F8CD4: hypothetical protein	0.0271174393
+UniRef50_UPI00036F8CD4: hypothetical protein|unclassified	0.0271174393
+UniRef50_I0JQZ2	0.0271172845
+UniRef50_I0JQZ2|unclassified	0.0271172845
+UniRef50_UPI00037AABBD: hypothetical protein	0.0271156532
+UniRef50_UPI00037AABBD: hypothetical protein|unclassified	0.0271156532
+UniRef50_P22557: 5-aminolevulinate synthase, erythroid-specific, mitochondrial	0.0271128415
+UniRef50_P22557: 5-aminolevulinate synthase, erythroid-specific, mitochondrial|unclassified	0.0271128415
+UniRef50_A9EXK6: ATP-dependent zinc metalloprotease FtsH 4	0.0271119928
+UniRef50_A9EXK6: ATP-dependent zinc metalloprotease FtsH 4|unclassified	0.0271119928
+UniRef50_D3NXC5: Signal transduction protein	0.0271104891
+UniRef50_D3NXC5: Signal transduction protein|unclassified	0.0271104891
+UniRef50_J7P463	0.0271087368
+UniRef50_J7P463|unclassified	0.0271087368
+UniRef50_A0BBI2: Chromosome undetermined scaffold_1, whole genome shotgun sequence	0.0271050443
+UniRef50_A0BBI2: Chromosome undetermined scaffold_1, whole genome shotgun sequence|unclassified	0.0271050443
+UniRef50_UPI000370F20A: DNA polymerase I, partial	0.0270989844
+UniRef50_UPI000370F20A: DNA polymerase I, partial|unclassified	0.0270989844
+UniRef50_UPI00036BFE12: hypothetical protein	0.0270968416
+UniRef50_UPI00036BFE12: hypothetical protein|unclassified	0.0270968416
+UniRef50_C0QR28: Biotin synthase	0.0270884073
+UniRef50_C0QR28: Biotin synthase|unclassified	0.0270884073
+UniRef50_U6G774	0.0270863589
+UniRef50_U6G774|unclassified	0.0270863589
+UniRef50_UPI00046FFD48: alanyl-tRNA synthetase	0.0270816596
+UniRef50_UPI00046FFD48: alanyl-tRNA synthetase|unclassified	0.0270816596
+UniRef50_UPI0003793BA9: hypothetical protein	0.0270758063
+UniRef50_UPI0003793BA9: hypothetical protein|unclassified	0.0270758063
+UniRef50_C7N2X5: YeeE/YedE family protein (DUF395)	0.0270748655
+UniRef50_C7N2X5: YeeE/YedE family protein (DUF395)|unclassified	0.0270748655
+UniRef50_UPI000473F1F8: glycine/betaine ABC transporter	0.0270709687
+UniRef50_UPI000473F1F8: glycine/betaine ABC transporter|unclassified	0.0270709687
+UniRef50_E8U3L4: Diguanylate cyclase/phosphodiesterase	0.0270701643
+UniRef50_E8U3L4: Diguanylate cyclase/phosphodiesterase|unclassified	0.0270701643
+UniRef50_UPI00036133DB: hypothetical protein	0.0270681358
+UniRef50_UPI00036133DB: hypothetical protein|unclassified	0.0270681358
+UniRef50_U7PQZ2	0.0270669023
+UniRef50_U7PQZ2|unclassified	0.0270669023
+UniRef50_A7J7P9	0.0270660922
+UniRef50_A7J7P9|unclassified	0.0270660922
+UniRef50_UPI0004233849: hypothetical protein	0.0270636403
+UniRef50_UPI0004233849: hypothetical protein|unclassified	0.0270636403
+UniRef50_A7SIC5: Predicted protein	0.0270615353
+UniRef50_A7SIC5: Predicted protein|unclassified	0.0270615353
+UniRef50_R7GC03: Possible mobilisation protein	0.0270559004
+UniRef50_R7GC03: Possible mobilisation protein|unclassified	0.0270559004
+UniRef50_UPI00037E8C2C: hypothetical protein	0.0270542932
+UniRef50_UPI00037E8C2C: hypothetical protein|unclassified	0.0270542932
+UniRef50_UPI0003745162: hypothetical protein	0.0270479787
+UniRef50_UPI0003745162: hypothetical protein|unclassified	0.0270479787
+UniRef50_UPI0003707934: hypothetical protein	0.0270467129
+UniRef50_UPI0003707934: hypothetical protein|unclassified	0.0270467129
+UniRef50_G8UWT9: Peptide maturation protein PmbA	0.0270430324
+UniRef50_G8UWT9: Peptide maturation protein PmbA|unclassified	0.0270430324
+UniRef50_D8TNG9	0.0270408210
+UniRef50_D8TNG9|unclassified	0.0270408210
+UniRef50_P33349	0.0270379588
+UniRef50_P33349|unclassified	0.0270379588
+UniRef50_UPI0003B54A7D: ABC transporter	0.0270336547
+UniRef50_UPI0003B54A7D: ABC transporter|unclassified	0.0270336547
+UniRef50_H0TVH9	0.0270307756
+UniRef50_H0TVH9|unclassified	0.0270307756
+UniRef50_UPI0002EE882E: hypothetical protein	0.0270222570
+UniRef50_UPI0002EE882E: hypothetical protein|unclassified	0.0270222570
+UniRef50_UPI00042B6AB1: GMP synthase	0.0270215849
+UniRef50_UPI00042B6AB1: GMP synthase|unclassified	0.0270215849
+UniRef50_UPI000455F799: asparaginyl-tRNA synthetase	0.0270189080
+UniRef50_UPI000455F799: asparaginyl-tRNA synthetase|unclassified	0.0270189080
+UniRef50_Q04444: Protoheme IX farnesyltransferase	0.0270185607
+UniRef50_Q04444: Protoheme IX farnesyltransferase|unclassified	0.0270185607
+UniRef50_Q3Z7P5: Isoleucine--tRNA ligase	0.0270169327
+UniRef50_Q3Z7P5: Isoleucine--tRNA ligase|unclassified	0.0270169327
+UniRef50_B7VNA7	0.0270083418
+UniRef50_B7VNA7|unclassified	0.0270083418
+UniRef50_UPI0003639553: hypothetical protein, partial	0.0270073977
+UniRef50_UPI0003639553: hypothetical protein, partial|unclassified	0.0270073977
+UniRef50_R1FK72	0.0270017408
+UniRef50_R1FK72|unclassified	0.0270017408
+UniRef50_UPI0003B4A0E5: penicillin-binding protein 2B	0.0269951578
+UniRef50_UPI0003B4A0E5: penicillin-binding protein 2B|unclassified	0.0269951578
+UniRef50_H1GBP2: LPXTG-motif protein cell wall anchor domain protein	0.0269947387
+UniRef50_H1GBP2: LPXTG-motif protein cell wall anchor domain protein|unclassified	0.0269947387
+UniRef50_Q1WRS0: ATP-dependent helicase/nuclease subunit A	0.0269937744
+UniRef50_Q1WRS0: ATP-dependent helicase/nuclease subunit A|unclassified	0.0269937744
+UniRef50_B3PYT5: Probable D-serine dehydratase	0.0269929678
+UniRef50_B3PYT5: Probable D-serine dehydratase|unclassified	0.0269929678
+UniRef50_UPI00046F9C26: hypothetical protein	0.0269911695
+UniRef50_UPI00046F9C26: hypothetical protein|unclassified	0.0269911695
+UniRef50_Q9JHW9: Aldehyde dehydrogenase family 1 member A3	0.0269907093
+UniRef50_Q9JHW9: Aldehyde dehydrogenase family 1 member A3|unclassified	0.0269907093
+UniRef50_UPI00033148CA	0.0269878041
+UniRef50_UPI00033148CA|unclassified	0.0269878041
+UniRef50_UPI00046E5527: DNA polymerase IV	0.0269865304
+UniRef50_UPI00046E5527: DNA polymerase IV|unclassified	0.0269865304
+UniRef50_UPI000476A6BC: preprotein translocase subunit SecD	0.0269863327
+UniRef50_UPI000476A6BC: preprotein translocase subunit SecD|unclassified	0.0269863327
+UniRef50_UPI0003B6D6DC: l,D-transpeptidase YcbB	0.0269859883
+UniRef50_UPI0003B6D6DC: l,D-transpeptidase YcbB|unclassified	0.0269859883
+UniRef50_UPI000479CAE5: ABC transporter	0.0269859559
+UniRef50_UPI000479CAE5: ABC transporter|unclassified	0.0269859559
+UniRef50_UPI000470E63C: hypothetical protein	0.0269726451
+UniRef50_UPI000470E63C: hypothetical protein|unclassified	0.0269726451
+UniRef50_UPI00036C1E23: hypothetical protein	0.0269694283
+UniRef50_UPI00036C1E23: hypothetical protein|unclassified	0.0269694283
+UniRef50_W7C258: Fibronectin/fibrinogen binding protein	0.0269593060
+UniRef50_W7C258: Fibronectin/fibrinogen binding protein|unclassified	0.0269593060
+UniRef50_Q9FIW4: Beta-glucosidase 42	0.0269428689
+UniRef50_Q9FIW4: Beta-glucosidase 42|unclassified	0.0269428689
+UniRef50_UPI00035D9122: hypothetical protein	0.0269417428
+UniRef50_UPI00035D9122: hypothetical protein|unclassified	0.0269417428
+UniRef50_UPI00034B5D93: DNA polymerase III subunit gamma/tau	0.0269340675
+UniRef50_UPI00034B5D93: DNA polymerase III subunit gamma/tau|unclassified	0.0269340675
+UniRef50_Q0VQP5: Lipid A export ATP-binding/permease protein MsbA	0.0269340429
+UniRef50_Q0VQP5: Lipid A export ATP-binding/permease protein MsbA|unclassified	0.0269340429
+UniRef50_UPI0003634865: hypothetical protein	0.0269326091
+UniRef50_UPI0003634865: hypothetical protein|unclassified	0.0269326091
+UniRef50_Q6K3B5: Pr1-like protein	0.0269306840
+UniRef50_Q6K3B5: Pr1-like protein|unclassified	0.0269306840
+UniRef50_R4RIX1: Membrane protein family protein	0.0269306304
+UniRef50_R4RIX1: Membrane protein family protein|unclassified	0.0269306304
+UniRef50_UPI000379D183: hypothetical protein	0.0269270918
+UniRef50_UPI000379D183: hypothetical protein|unclassified	0.0269270918
+UniRef50_UPI00038F2E46: hypothetical protein, partial	0.0269247123
+UniRef50_UPI00038F2E46: hypothetical protein, partial|unclassified	0.0269247123
+UniRef50_UPI0003957B92: PREDICTED: otopetrin-1	0.0269240397
+UniRef50_UPI0003957B92: PREDICTED: otopetrin-1|unclassified	0.0269240397
+UniRef50_UPI00047D9C2A: 3-hydroxybutyryl-CoA dehydrogenase	0.0269181874
+UniRef50_UPI00047D9C2A: 3-hydroxybutyryl-CoA dehydrogenase|unclassified	0.0269181874
+UniRef50_UPI00016C5421: molybdenum cofactor biosynthesis protein	0.0269141330
+UniRef50_UPI00016C5421: molybdenum cofactor biosynthesis protein|unclassified	0.0269141330
+UniRef50_S4Y1B0	0.0269109397
+UniRef50_S4Y1B0|unclassified	0.0269109397
+UniRef50_Q4PEX7: ATP-dependent RNA helicase DBP8	0.0269070882
+UniRef50_Q4PEX7: ATP-dependent RNA helicase DBP8|unclassified	0.0269070882
+UniRef50_UPI000348F43F: hypothetical protein	0.0268972952
+UniRef50_UPI000348F43F: hypothetical protein|unclassified	0.0268972952
+UniRef50_D2TTN9	0.0268905156
+UniRef50_D2TTN9|unclassified	0.0268905156
+UniRef50_UPI00036ECB8E: hypothetical protein	0.0268865816
+UniRef50_UPI00036ECB8E: hypothetical protein|unclassified	0.0268865816
+UniRef50_UPI00036EFEAB: hypothetical protein	0.0268786756
+UniRef50_UPI00036EFEAB: hypothetical protein|unclassified	0.0268786756
+UniRef50_UPI00036D193E: hypothetical protein	0.0268782774
+UniRef50_UPI00036D193E: hypothetical protein|unclassified	0.0268782774
+UniRef50_Q9PFD0: Ribosomal RNA large subunit methyltransferase M	0.0268750406
+UniRef50_Q9PFD0: Ribosomal RNA large subunit methyltransferase M|unclassified	0.0268750406
+UniRef50_UPI000361A5FB: hypothetical protein	0.0268721259
+UniRef50_UPI000361A5FB: hypothetical protein|unclassified	0.0268721259
+UniRef50_R8QVZ2: YhgE/Pip domain-containing protein	0.0268647778
+UniRef50_R8QVZ2: YhgE/Pip domain-containing protein|unclassified	0.0268647778
+UniRef50_UPI00037713A6: hypothetical protein	0.0268618313
+UniRef50_UPI00037713A6: hypothetical protein|unclassified	0.0268618313
+UniRef50_UPI000363D781: hypothetical protein	0.0268538608
+UniRef50_UPI000363D781: hypothetical protein|unclassified	0.0268538608
+UniRef50_UPI0003B38604: porphyrin biosynthesis protein HemD	0.0268533679
+UniRef50_UPI0003B38604: porphyrin biosynthesis protein HemD|unclassified	0.0268533679
+UniRef50_UPI0002D500E7: hypothetical protein	0.0268514450
+UniRef50_UPI0002D500E7: hypothetical protein|unclassified	0.0268514450
+UniRef50_W5XCX4: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]	0.0268493541
+UniRef50_W5XCX4: Glutamine--fructose-6-phosphate aminotransferase [isomerizing]|unclassified	0.0268493541
+UniRef50_J9HUP4: UPF0753 protein URH17368_1225	0.0268475027
+UniRef50_J9HUP4: UPF0753 protein URH17368_1225|unclassified	0.0268475027
+UniRef50_D2QQE0	0.0268398439
+UniRef50_D2QQE0|unclassified	0.0268398439
+UniRef50_E1QJ58: Phage portal protein, HK97 family	0.0268391567
+UniRef50_E1QJ58: Phage portal protein, HK97 family|unclassified	0.0268391567
+UniRef50_A8MAQ6: Ornithine cyclodeaminase/mu-crystallin	0.0268385317
+UniRef50_A8MAQ6: Ornithine cyclodeaminase/mu-crystallin|unclassified	0.0268385317
+UniRef50_UPI00036B07DE: hypothetical protein, partial	0.0268314043
+UniRef50_UPI00036B07DE: hypothetical protein, partial|unclassified	0.0268314043
+UniRef50_A0A058ZDP9	0.0268289204
+UniRef50_A0A058ZDP9|unclassified	0.0268289204
+UniRef50_A0A024L400: Late control gene D protein (GpD)	0.0268269304
+UniRef50_A0A024L400: Late control gene D protein (GpD)|unclassified	0.0268269304
+UniRef50_N2QUX1: Autotransporter (AT) family porin	0.0268262132
+UniRef50_N2QUX1: Autotransporter (AT) family porin|unclassified	0.0268262132
+UniRef50_Q55G10: Nicotinate phosphoribosyltransferase	0.0268147085
+UniRef50_Q55G10: Nicotinate phosphoribosyltransferase|unclassified	0.0268147085
+UniRef50_UPI0004781EE1: NADH dehydrogenase	0.0268145752
+UniRef50_UPI0004781EE1: NADH dehydrogenase|unclassified	0.0268145752
+UniRef50_UPI0003946DB6: PREDICTED: serine/arginine repetitive matrix protein 2-like	0.0268126740
+UniRef50_UPI0003946DB6: PREDICTED: serine/arginine repetitive matrix protein 2-like|unclassified	0.0268126740
+UniRef50_V8QLC3: 6-pyruvoyl tetrahydrobiopterin synthase	0.0268112758
+UniRef50_V8QLC3: 6-pyruvoyl tetrahydrobiopterin synthase|unclassified	0.0268112758
+UniRef50_A0RKK5: Cell wall surface anchor family protein	0.0268100831
+UniRef50_A0RKK5: Cell wall surface anchor family protein|unclassified	0.0268100831
+UniRef50_UPI000367F7C6: hypothetical protein	0.0268063647
+UniRef50_UPI000367F7C6: hypothetical protein|unclassified	0.0268063647
+UniRef50_UPI000258F562: PREDICTED: trifunctional enzyme subunit alpha, mitochondrial-like	0.0267953377
+UniRef50_UPI000258F562: PREDICTED: trifunctional enzyme subunit alpha, mitochondrial-like|unclassified	0.0267953377
+UniRef50_UPI000361D523: hypothetical protein, partial	0.0267924338
+UniRef50_UPI000361D523: hypothetical protein, partial|unclassified	0.0267924338
+UniRef50_UPI00022CAA8E: PREDICTED: hypothetical protein LOC100740199	0.0267911888
+UniRef50_UPI00022CAA8E: PREDICTED: hypothetical protein LOC100740199|unclassified	0.0267911888
+UniRef50_I2F506	0.0267909896
+UniRef50_I2F506|unclassified	0.0267909896
+UniRef50_D7AF64: NADPH-Fe(3+) oxidoreductase subunit beta	0.0267864167
+UniRef50_D7AF64: NADPH-Fe(3+) oxidoreductase subunit beta|unclassified	0.0267864167
+UniRef50_UPI00028A344D: group 1 glycosyl transferase	0.0267845205
+UniRef50_UPI00028A344D: group 1 glycosyl transferase|unclassified	0.0267845205
+UniRef50_UPI00047938D1: hypothetical protein	0.0267837962
+UniRef50_UPI00047938D1: hypothetical protein|unclassified	0.0267837962
+UniRef50_UPI000419AB44: hypothetical protein	0.0267823758
+UniRef50_UPI000419AB44: hypothetical protein|unclassified	0.0267823758
+UniRef50_UPI00024850D8: hemolysin-type calcium-binding protein, partial	0.0267813247
+UniRef50_UPI00024850D8: hemolysin-type calcium-binding protein, partial|unclassified	0.0267813247
+UniRef50_UPI000263139C: hypothetical protein	0.0267746757
+UniRef50_UPI000263139C: hypothetical protein|unclassified	0.0267746757
+UniRef50_UPI000470CBD2: hypothetical protein	0.0267717655
+UniRef50_UPI000470CBD2: hypothetical protein|unclassified	0.0267717655
+UniRef50_A8WP91: Probable medium-chain specific acyl-CoA dehydrogenase 2, mitochondrial	0.0267685579
+UniRef50_A8WP91: Probable medium-chain specific acyl-CoA dehydrogenase 2, mitochondrial|unclassified	0.0267685579
+UniRef50_UPI00030EA43E: hypothetical protein	0.0267647811
+UniRef50_UPI00030EA43E: hypothetical protein|unclassified	0.0267647811
+UniRef50_A0A058Z8G7	0.0267621722
+UniRef50_A0A058Z8G7|unclassified	0.0267621722
+UniRef50_UPI000365B356: hypothetical protein	0.0267600538
+UniRef50_UPI000365B356: hypothetical protein|unclassified	0.0267600538
+UniRef50_UPI0002002642: GAF domain/GGDEF domain/EAL domain-containing protein	0.0267598810
+UniRef50_UPI0002002642: GAF domain/GGDEF domain/EAL domain-containing protein|unclassified	0.0267598810
+UniRef50_X6MV74	0.0267588860
+UniRef50_X6MV74|unclassified	0.0267588860
+UniRef50_E4PL62: Secreted protein containing YkuD domain	0.0267584408
+UniRef50_E4PL62: Secreted protein containing YkuD domain|unclassified	0.0267584408
+UniRef50_B4RZS0: Succinyl-diaminopimelate desuccinylase 1	0.0267566456
+UniRef50_B4RZS0: Succinyl-diaminopimelate desuccinylase 1|unclassified	0.0267566456
+UniRef50_UPI0001CBFDA2: TrwC protein, partial	0.0267544909
+UniRef50_UPI0001CBFDA2: TrwC protein, partial|unclassified	0.0267544909
+UniRef50_UPI0003F8AF13: hypothetical protein	0.0267505982
+UniRef50_UPI0003F8AF13: hypothetical protein|unclassified	0.0267505982
+UniRef50_L1IXW1	0.0267497694
+UniRef50_L1IXW1|unclassified	0.0267497694
+UniRef50_UPI000415CD9E: hypothetical protein	0.0267394525
+UniRef50_UPI000415CD9E: hypothetical protein|unclassified	0.0267394525
+UniRef50_UPI000467DCF9: carbonate dehydratase, partial	0.0267352855
+UniRef50_UPI000467DCF9: carbonate dehydratase, partial|unclassified	0.0267352855
+UniRef50_UPI0003B62106: ATP-dependent DNA helicase PcrA	0.0267350050
+UniRef50_UPI0003B62106: ATP-dependent DNA helicase PcrA|unclassified	0.0267350050
+UniRef50_UPI00045E1D0A: PREDICTED: LOW QUALITY PROTEIN: succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial-like	0.0267338607
+UniRef50_UPI00045E1D0A: PREDICTED: LOW QUALITY PROTEIN: succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial-like|unclassified	0.0267338607
+UniRef50_A3KAM8	0.0267311809
+UniRef50_A3KAM8|unclassified	0.0267311809
+UniRef50_UPI0002B471C1: PREDICTED: putative gamma-glutamyltransferase YwrD-like, partial	0.0267274714
+UniRef50_UPI0002B471C1: PREDICTED: putative gamma-glutamyltransferase YwrD-like, partial|unclassified	0.0267274714
+UniRef50_A6GG77	0.0267246067
+UniRef50_A6GG77|unclassified	0.0267246067
+UniRef50_Q08RM3: 6-pyruvoyl tetrahydropterin synthase family	0.0267199354
+UniRef50_Q08RM3: 6-pyruvoyl tetrahydropterin synthase family|unclassified	0.0267199354
+UniRef50_D8JLK9: Pyoverdine biosynthesis protein	0.0267181785
+UniRef50_D8JLK9: Pyoverdine biosynthesis protein|unclassified	0.0267181785
+UniRef50_UPI0003FFD9EF: hypothetical protein	0.0267178899
+UniRef50_UPI0003FFD9EF: hypothetical protein|unclassified	0.0267178899
+UniRef50_UPI00040EACCC: exoribonuclease R	0.0267177084
+UniRef50_UPI00040EACCC: exoribonuclease R|unclassified	0.0267177084
+UniRef50_B8DQY3: Peptidase M23	0.0267105850
+UniRef50_B8DQY3: Peptidase M23|unclassified	0.0267105850
+UniRef50_R5QUM0	0.0267077031
+UniRef50_R5QUM0|unclassified	0.0267077031
+UniRef50_J8JJQ5	0.0267067125
+UniRef50_J8JJQ5|unclassified	0.0267067125
+UniRef50_E1V7U6	0.0267039764
+UniRef50_E1V7U6|unclassified	0.0267039764
+UniRef50_A6ABU1: ABC transporter substrate-binding protein	0.0267026750
+UniRef50_A6ABU1: ABC transporter substrate-binding protein|unclassified	0.0267026750
+UniRef50_UPI00037169B7: hypothetical protein	0.0266944558
+UniRef50_UPI00037169B7: hypothetical protein|unclassified	0.0266944558
+UniRef50_UPI000470ECAF: ATPase, partial	0.0266838610
+UniRef50_UPI000470ECAF: ATPase, partial|unclassified	0.0266838610
+UniRef50_I7EJ33	0.0266829097
+UniRef50_I7EJ33|unclassified	0.0266829097
+UniRef50_UPI000479C2FE: hypothetical protein	0.0266822585
+UniRef50_UPI000479C2FE: hypothetical protein|unclassified	0.0266822585
+UniRef50_UPI00047A9DE5: hypothetical protein	0.0266803655
+UniRef50_UPI00047A9DE5: hypothetical protein|unclassified	0.0266803655
+UniRef50_S2L6H0	0.0266803338
+UniRef50_S2L6H0|unclassified	0.0266803338
+UniRef50_UPI00037D49AF: hypothetical protein	0.0266776059
+UniRef50_UPI00037D49AF: hypothetical protein|unclassified	0.0266776059
+UniRef50_UPI000289C850: glutamine synthetase	0.0266739328
+UniRef50_UPI000289C850: glutamine synthetase|unclassified	0.0266739328
+UniRef50_K4AZG4	0.0266736504
+UniRef50_K4AZG4|unclassified	0.0266736504
+UniRef50_B7J0N5: ATP-dependent zinc metalloprotease FtsH	0.0266690644
+UniRef50_B7J0N5: ATP-dependent zinc metalloprotease FtsH|unclassified	0.0266690644
+UniRef50_UPI0001AF2CE2: aldehyde dehydrogenase	0.0266669944
+UniRef50_UPI0001AF2CE2: aldehyde dehydrogenase|unclassified	0.0266669944
+UniRef50_Q28P31: Membrane protein-like protein	0.0266630194
+UniRef50_Q28P31: Membrane protein-like protein|unclassified	0.0266630194
+UniRef50_D8LPQ7	0.0266601324
+UniRef50_D8LPQ7|unclassified	0.0266601324
+UniRef50_UPI00038F36ED: Chromosome partition protein Smc	0.0266578475
+UniRef50_UPI00038F36ED: Chromosome partition protein Smc|unclassified	0.0266578475
+UniRef50_UPI0004632E67: hypothetical protein	0.0266570135
+UniRef50_UPI0004632E67: hypothetical protein|unclassified	0.0266570135
+UniRef50_UPI0003B306FF: acyltransferase	0.0266549028
+UniRef50_UPI0003B306FF: acyltransferase|unclassified	0.0266549028
+UniRef50_M0EMI2	0.0266446298
+UniRef50_M0EMI2|unclassified	0.0266446298
+UniRef50_B9DJQ7: Truncated protein, similar to cell wall surface anchor family protein (Fragment 3)	0.0266421608
+UniRef50_B9DJQ7: Truncated protein, similar to cell wall surface anchor family protein (Fragment 3)|unclassified	0.0266421608
+UniRef50_Q5P9L5: GMP synthase [glutamine-hydrolyzing]	0.0266414977
+UniRef50_Q5P9L5: GMP synthase [glutamine-hydrolyzing]|unclassified	0.0266414977
+UniRef50_UPI000470942E: hypothetical protein	0.0266409444
+UniRef50_UPI000470942E: hypothetical protein|unclassified	0.0266409444
+UniRef50_J6F2X0	0.0266408691
+UniRef50_J6F2X0|unclassified	0.0266408691
+UniRef50_X8APG4: FeS assembly SufB domain protein	0.0266402931
+UniRef50_X8APG4: FeS assembly SufB domain protein|unclassified	0.0266402931
+UniRef50_UPI00037B7293: hypothetical protein	0.0266383966
+UniRef50_UPI00037B7293: hypothetical protein|unclassified	0.0266383966
+UniRef50_H8MJ08	0.0266348675
+UniRef50_H8MJ08|unclassified	0.0266348675
+UniRef50_B1HN90: ATP-dependent helicase/nuclease subunit A	0.0266304217
+UniRef50_B1HN90: ATP-dependent helicase/nuclease subunit A|unclassified	0.0266304217
+UniRef50_UPI00037E096F: hypothetical protein	0.0266251410
+UniRef50_UPI00037E096F: hypothetical protein|unclassified	0.0266251410
+UniRef50_UPI000479E15E: hypothetical protein	0.0266243563
+UniRef50_UPI000479E15E: hypothetical protein|unclassified	0.0266243563
+UniRef50_UPI0002C57BE5: PREDICTED: histone-lysine N-methyltransferase SETD1B	0.0266198501
+UniRef50_UPI0002C57BE5: PREDICTED: histone-lysine N-methyltransferase SETD1B|unclassified	0.0266198501
+UniRef50_UPI00036664E5: hypothetical protein	0.0266148644
+UniRef50_UPI00036664E5: hypothetical protein|unclassified	0.0266148644
+UniRef50_UPI0003780373: hypothetical protein	0.0266069539
+UniRef50_UPI0003780373: hypothetical protein|unclassified	0.0266069539
+UniRef50_B1YH63: NAD-dependent epimerase/dehydratase	0.0266069512
+UniRef50_B1YH63: NAD-dependent epimerase/dehydratase|unclassified	0.0266069512
+UniRef50_UPI00046F8BD9: hypothetical protein	0.0266067533
+UniRef50_UPI00046F8BD9: hypothetical protein|unclassified	0.0266067533
+UniRef50_UPI000248A7D5: putative RTX-family exoprotein	0.0265958967
+UniRef50_UPI000248A7D5: putative RTX-family exoprotein|unclassified	0.0265958967
+UniRef50_A0A052JBZ4: Diguanylate cyclase (GGDEF) domain protein	0.0265803014
+UniRef50_A0A052JBZ4: Diguanylate cyclase (GGDEF) domain protein|unclassified	0.0265803014
+UniRef50_UPI000344EB03: hypothetical protein	0.0265752067
+UniRef50_UPI000344EB03: hypothetical protein|unclassified	0.0265752067
+UniRef50_UPI000429FB62: terminase	0.0265727396
+UniRef50_UPI000429FB62: terminase|unclassified	0.0265727396
+UniRef50_A0A022PPG2	0.0265710940
+UniRef50_A0A022PPG2|unclassified	0.0265710940
+UniRef50_UPI00036AF92A: hypothetical protein	0.0265670867
+UniRef50_UPI00036AF92A: hypothetical protein|unclassified	0.0265670867
+UniRef50_C2Z544: Oligoendopeptidase, M3	0.0265613279
+UniRef50_C2Z544: Oligoendopeptidase, M3|unclassified	0.0265613279
+UniRef50_B3DZH2	0.0265545597
+UniRef50_B3DZH2|unclassified	0.0265545597
+UniRef50_B4BNC3	0.0265530379
+UniRef50_B4BNC3|unclassified	0.0265530379
+UniRef50_Q9A8P0	0.0265492933
+UniRef50_Q9A8P0|unclassified	0.0265492933
+UniRef50_I1F207	0.0265472681
+UniRef50_I1F207|unclassified	0.0265472681
+UniRef50_UPI0001BF6909: hypothetical protein SMAC_10569, partial	0.0265404935
+UniRef50_UPI0001BF6909: hypothetical protein SMAC_10569, partial|unclassified	0.0265404935
+UniRef50_I3C044	0.0265391217
+UniRef50_I3C044|unclassified	0.0265391217
+UniRef50_UPI000441545E: hypothetical protein AURDEDRAFT_129849	0.0265387382
+UniRef50_UPI000441545E: hypothetical protein AURDEDRAFT_129849|unclassified	0.0265387382
+UniRef50_UPI00046D7898: hypothetical protein	0.0265351874
+UniRef50_UPI00046D7898: hypothetical protein|unclassified	0.0265351874
+UniRef50_S5JF58	0.0265279471
+UniRef50_S5JF58|unclassified	0.0265279471
+UniRef50_UPI00046666B3: maltooligosyl trehalose synthase	0.0265258520
+UniRef50_UPI00046666B3: maltooligosyl trehalose synthase|unclassified	0.0265258520
+UniRef50_UPI00036BF734: hypothetical protein	0.0265117995
+UniRef50_UPI00036BF734: hypothetical protein|unclassified	0.0265117995
+UniRef50_Q6MDR3: NADH-quinone oxidoreductase subunit D	0.0265116754
+UniRef50_Q6MDR3: NADH-quinone oxidoreductase subunit D|unclassified	0.0265116754
+UniRef50_U1S9N3	0.0265050535
+UniRef50_U1S9N3|unclassified	0.0265050535
+UniRef50_G7YMQ6: Radial spoke head 10 homolog B (Fragment)	0.0265040647
+UniRef50_G7YMQ6: Radial spoke head 10 homolog B (Fragment)|unclassified	0.0265040647
+UniRef50_UPI00035D42F6: hypothetical protein	0.0265034872
+UniRef50_UPI00035D42F6: hypothetical protein|unclassified	0.0265034872
+UniRef50_UPI0003C19E0F: PREDICTED: carbamoyl-phosphate synthase small chain, chloroplastic-like	0.0265023649
+UniRef50_UPI0003C19E0F: PREDICTED: carbamoyl-phosphate synthase small chain, chloroplastic-like|unclassified	0.0265023649
+UniRef50_Q9VTM5: Dimethyladenosine transferase 1, mitochondrial	0.0264971129
+UniRef50_Q9VTM5: Dimethyladenosine transferase 1, mitochondrial|unclassified	0.0264971129
+UniRef50_UPI00042CE8AF: PREDICTED: ras-related protein Rab-44-like	0.0264943143
+UniRef50_UPI00042CE8AF: PREDICTED: ras-related protein Rab-44-like|unclassified	0.0264943143
+UniRef50_N9PKE6	0.0264905616
+UniRef50_N9PKE6|unclassified	0.0264905616
+UniRef50_UPI000361F3BB: hypothetical protein	0.0264840235
+UniRef50_UPI000361F3BB: hypothetical protein|unclassified	0.0264840235
+UniRef50_I0K765	0.0264839122
+UniRef50_I0K765|unclassified	0.0264839122
+UniRef50_Q8CC86: Nicotinate phosphoribosyltransferase	0.0264788186
+UniRef50_Q8CC86: Nicotinate phosphoribosyltransferase|unclassified	0.0264788186
+UniRef50_UPI000476D747: pectate lyase	0.0264787564
+UniRef50_UPI000476D747: pectate lyase|unclassified	0.0264787564
+UniRef50_UPI000470A361: hypothetical protein	0.0264743569
+UniRef50_UPI000470A361: hypothetical protein|unclassified	0.0264743569
+UniRef50_UPI00047A0085: 6-phospho-beta-glucosidase	0.0264659296
+UniRef50_UPI00047A0085: 6-phospho-beta-glucosidase|unclassified	0.0264659296
+UniRef50_UPI000419C5FE: hypothetical protein	0.0264603257
+UniRef50_UPI000419C5FE: hypothetical protein|unclassified	0.0264603257
+UniRef50_B8H8I4: Glucose-1-phosphate adenylyltransferase	0.0264567801
+UniRef50_B8H8I4: Glucose-1-phosphate adenylyltransferase|unclassified	0.0264567801
+UniRef50_J4V067	0.0264563669
+UniRef50_J4V067|unclassified	0.0264563669
+UniRef50_UPI0004723A4A: (p)ppGpp synthetase	0.0264546269
+UniRef50_UPI0004723A4A: (p)ppGpp synthetase|unclassified	0.0264546269
+UniRef50_UPI000150A602: 2-oxoglutarate dehydrogenase, E2 component, dihydrolipoamide succinyltransferase family protein	0.0264517989
+UniRef50_UPI000150A602: 2-oxoglutarate dehydrogenase, E2 component, dihydrolipoamide succinyltransferase family protein|unclassified	0.0264517989
+UniRef50_A0A031MHL6: Cell envelope biogenesis protein AsmA	0.0264504831
+UniRef50_A0A031MHL6: Cell envelope biogenesis protein AsmA|unclassified	0.0264504831
+UniRef50_UPI00037B5AE4: 30S ribosomal protein S1	0.0264485844
+UniRef50_UPI00037B5AE4: 30S ribosomal protein S1|unclassified	0.0264485844
+UniRef50_UPI000252B748	0.0264478106
+UniRef50_UPI000252B748|unclassified	0.0264478106
+UniRef50_UPI000255A216: hypothetical protein	0.0264470830
+UniRef50_UPI000255A216: hypothetical protein|unclassified	0.0264470830
+UniRef50_UPI000470EA5E: 2-oxoglutarate dehydrogenase, partial	0.0264466157
+UniRef50_UPI000470EA5E: 2-oxoglutarate dehydrogenase, partial|unclassified	0.0264466157
+UniRef50_D3NXL8	0.0264450036
+UniRef50_D3NXL8|unclassified	0.0264450036
+UniRef50_U2Z8R9	0.0264374203
+UniRef50_U2Z8R9|unclassified	0.0264374203
+UniRef50_UPI000363C4F1: hypothetical protein	0.0264350403
+UniRef50_UPI000363C4F1: hypothetical protein|unclassified	0.0264350403
+UniRef50_P44693	0.0264299301
+UniRef50_P44693|unclassified	0.0264299301
+UniRef50_UPI000363214D: hypothetical protein	0.0264294417
+UniRef50_UPI000363214D: hypothetical protein|unclassified	0.0264294417
+UniRef50_UPI000287FF7D: RpoD subfamily RNA polymerase sigma-70 subunit	0.0264278215
+UniRef50_UPI000287FF7D: RpoD subfamily RNA polymerase sigma-70 subunit|unclassified	0.0264278215
+UniRef50_UPI0003B40631: glutamine synthetase	0.0264269501
+UniRef50_UPI0003B40631: glutamine synthetase|unclassified	0.0264269501
+UniRef50_UPI0004706E7E: hypothetical protein	0.0264170275
+UniRef50_UPI0004706E7E: hypothetical protein|unclassified	0.0264170275
+UniRef50_K7SCS8	0.0264165757
+UniRef50_K7SCS8|unclassified	0.0264165757
+UniRef50_U6LU16	0.0264138394
+UniRef50_U6LU16|unclassified	0.0264138394
+UniRef50_A0A031IJK2	0.0264135640
+UniRef50_A0A031IJK2|unclassified	0.0264135640
+UniRef50_Q9K4U8: Nitric oxide reductase transcription regulator NorR2	0.0264120187
+UniRef50_Q9K4U8: Nitric oxide reductase transcription regulator NorR2|unclassified	0.0264120187
+UniRef50_V4ICM3: Aldo/keto reductase	0.0264088783
+UniRef50_V4ICM3: Aldo/keto reductase|unclassified	0.0264088783
+UniRef50_X7ECQ0	0.0264078961
+UniRef50_X7ECQ0|unclassified	0.0264078961
+UniRef50_UPI0004680C0E: hypothetical protein	0.0264039426
+UniRef50_UPI0004680C0E: hypothetical protein|unclassified	0.0264039426
+UniRef50_UPI0003C15FB0: PREDICTED: pentafunctional AROM polypeptide-like	0.0264023408
+UniRef50_UPI0003C15FB0: PREDICTED: pentafunctional AROM polypeptide-like|unclassified	0.0264023408
+UniRef50_X4ZHZ0: VWA domain containing CoxE-like family protein	0.0263996185
+UniRef50_X4ZHZ0: VWA domain containing CoxE-like family protein|unclassified	0.0263996185
+UniRef50_B7MQ51	0.0263926037
+UniRef50_B7MQ51|unclassified	0.0263926037
+UniRef50_UPI000468BA9B: hypothetical protein	0.0263911699
+UniRef50_UPI000468BA9B: hypothetical protein|unclassified	0.0263911699
+UniRef50_H9KH51	0.0263882270
+UniRef50_H9KH51|unclassified	0.0263882270
+UniRef50_W0A5F8: Transposase	0.0263847700
+UniRef50_W0A5F8: Transposase|unclassified	0.0263847700
+UniRef50_UPI00037EB66F: hypothetical protein	0.0263783702
+UniRef50_UPI00037EB66F: hypothetical protein|unclassified	0.0263783702
+UniRef50_J8VLL6: PAS/PAC sensor(S)-containing diguanylate cyclase/phosphodiesterase	0.0263690045
+UniRef50_J8VLL6: PAS/PAC sensor(S)-containing diguanylate cyclase/phosphodiesterase|unclassified	0.0263690045
+UniRef50_UPI0002DF30C4: hypothetical protein	0.0263689865
+UniRef50_UPI0002DF30C4: hypothetical protein|unclassified	0.0263689865
+UniRef50_Q04EZ3: Fibronectin-binding protein	0.0263682835
+UniRef50_Q04EZ3: Fibronectin-binding protein|unclassified	0.0263682835
+UniRef50_P38092: 5-aminolevulinate synthase, mitochondrial	0.0263622819
+UniRef50_P38092: 5-aminolevulinate synthase, mitochondrial|unclassified	0.0263622819
+UniRef50_UPI000374140F: hypothetical protein	0.0263574162
+UniRef50_UPI000374140F: hypothetical protein|unclassified	0.0263574162
+UniRef50_I2B879: Putative oxidoreductase	0.0263500551
+UniRef50_I2B879: Putative oxidoreductase|unclassified	0.0263500551
+UniRef50_UPI000363A6EC: hypothetical protein	0.0263487338
+UniRef50_UPI000363A6EC: hypothetical protein|unclassified	0.0263487338
+UniRef50_J2P058: ABC-type Fe3+-citrate transport system, periplasmic component	0.0263486704
+UniRef50_J2P058: ABC-type Fe3+-citrate transport system, periplasmic component|unclassified	0.0263486704
+UniRef50_UPI00037D56C5: hypothetical protein, partial	0.0263478728
+UniRef50_UPI00037D56C5: hypothetical protein, partial|unclassified	0.0263478728
+UniRef50_UPI0003734662: hypothetical protein	0.0263467065
+UniRef50_UPI0003734662: hypothetical protein|unclassified	0.0263467065
+UniRef50_H2XWZ4	0.0263454180
+UniRef50_H2XWZ4|unclassified	0.0263454180
+UniRef50_UPI0002559DDE: M23 family peptidase	0.0263439820
+UniRef50_UPI0002559DDE: M23 family peptidase|unclassified	0.0263439820
+UniRef50_Q8YX97: Valine--tRNA ligase	0.0263435667
+UniRef50_Q8YX97: Valine--tRNA ligase|unclassified	0.0263435667
+UniRef50_UPI00038133D3: hypothetical protein	0.0263416307
+UniRef50_UPI00038133D3: hypothetical protein|unclassified	0.0263416307
+UniRef50_F8JJM3	0.0263409276
+UniRef50_F8JJM3|unclassified	0.0263409276
+UniRef50_UPI00047C911F: hyalin	0.0263312259
+UniRef50_UPI00047C911F: hyalin|unclassified	0.0263312259
+UniRef50_J3JP49: Cell surface protein	0.0263254927
+UniRef50_J3JP49: Cell surface protein|unclassified	0.0263254927
+UniRef50_UPI000462E956: RNA polymerase factor sigma-54	0.0263187581
+UniRef50_UPI000462E956: RNA polymerase factor sigma-54|unclassified	0.0263187581
+UniRef50_UPI000420B1B6: hypothetical protein	0.0263172041
+UniRef50_UPI000420B1B6: hypothetical protein|unclassified	0.0263172041
+UniRef50_UPI00037EEACF: MULTISPECIES: exopolyphosphatase	0.0263089350
+UniRef50_UPI00037EEACF: MULTISPECIES: exopolyphosphatase|unclassified	0.0263089350
+UniRef50_UPI00046621BD: hypothetical protein	0.0263085678
+UniRef50_UPI00046621BD: hypothetical protein|unclassified	0.0263085678
+UniRef50_UPI00035D319D: hypothetical protein, partial	0.0263034509
+UniRef50_UPI00035D319D: hypothetical protein, partial|unclassified	0.0263034509
+UniRef50_S2AX28: Type-F conjugative transfer system mating-pair stabilization protein TraN	0.0263032034
+UniRef50_S2AX28: Type-F conjugative transfer system mating-pair stabilization protein TraN|unclassified	0.0263032034
+UniRef50_F4D7U4: Formate-dependent nitrite reductase complex nrfG subunit	0.0262989791
+UniRef50_F4D7U4: Formate-dependent nitrite reductase complex nrfG subunit|unclassified	0.0262989791
+UniRef50_B9KXV3: ATP-dependent zinc metalloprotease FtsH 1	0.0262979802
+UniRef50_B9KXV3: ATP-dependent zinc metalloprotease FtsH 1|unclassified	0.0262979802
+UniRef50_UPI00047D72FD: hypothetical protein	0.0262924469
+UniRef50_UPI00047D72FD: hypothetical protein|unclassified	0.0262924469
+UniRef50_U6HR28: 5-aminolevulinate synthase	0.0262924402
+UniRef50_U6HR28: 5-aminolevulinate synthase|unclassified	0.0262924402
+UniRef50_UPI00037CDE50: hypothetical protein	0.0262879650
+UniRef50_UPI00037CDE50: hypothetical protein|unclassified	0.0262879650
+UniRef50_A0A011REG2: Peptidase PmbA	0.0262861510
+UniRef50_A0A011REG2: Peptidase PmbA|unclassified	0.0262861510
+UniRef50_Q5F485: ATP-dependent RNA helicase DDX42	0.0262859256
+UniRef50_Q5F485: ATP-dependent RNA helicase DDX42|unclassified	0.0262859256
+UniRef50_UPI00041691DD: DEAD/DEAH box helicase	0.0262811317
+UniRef50_UPI00041691DD: DEAD/DEAH box helicase|unclassified	0.0262811317
+UniRef50_UPI00016C57A2: elongation factor G, partial	0.0262745130
+UniRef50_UPI00016C57A2: elongation factor G, partial|unclassified	0.0262745130
+UniRef50_B9J982: Chemotaxis motility protein	0.0262717623
+UniRef50_B9J982: Chemotaxis motility protein|unclassified	0.0262717623
+UniRef50_F6IPV7: Structural toxin protein RtxA	0.0262692025
+UniRef50_F6IPV7: Structural toxin protein RtxA|unclassified	0.0262692025
+UniRef50_C1D1L2: Glutamyl-tRNA(Gln) amidotransferase subunit A	0.0262641967
+UniRef50_C1D1L2: Glutamyl-tRNA(Gln) amidotransferase subunit A|unclassified	0.0262641967
+UniRef50_K1LK40	0.0262636495
+UniRef50_K1LK40|unclassified	0.0262636495
+UniRef50_B8D024	0.0262620836
+UniRef50_B8D024|unclassified	0.0262620836
+UniRef50_L8GR06: Phosphatidylinositol-3,4,5-trisphosphate 3-phosphatase	0.0262606977
+UniRef50_L8GR06: Phosphatidylinositol-3,4,5-trisphosphate 3-phosphatase|unclassified	0.0262606977
+UniRef50_UPI00038069E1: hypothetical protein	0.0262604746
+UniRef50_UPI00038069E1: hypothetical protein|unclassified	0.0262604746
+UniRef50_H4SX03: SrgB	0.0262575037
+UniRef50_H4SX03: SrgB|unclassified	0.0262575037
+UniRef50_M1ZG67	0.0262553221
+UniRef50_M1ZG67|unclassified	0.0262553221
+UniRef50_Q8J0F0: Isopenicillin N epimerase component 2	0.0262546894
+UniRef50_Q8J0F0: Isopenicillin N epimerase component 2|unclassified	0.0262546894
+UniRef50_H6SQW0: Transglutaminase-like	0.0262444824
+UniRef50_H6SQW0: Transglutaminase-like|unclassified	0.0262444824
+UniRef50_UPI00037FA625: hypothetical protein	0.0262442508
+UniRef50_UPI00037FA625: hypothetical protein|unclassified	0.0262442508
+UniRef50_Q4Q523	0.0262413695
+UniRef50_Q4Q523|unclassified	0.0262413695
+UniRef50_UPI000365191C: hypothetical protein	0.0262411186
+UniRef50_UPI000365191C: hypothetical protein|unclassified	0.0262411186
+UniRef50_UPI0003B6CE87: pseudouridylate synthase	0.0262398172
+UniRef50_UPI0003B6CE87: pseudouridylate synthase|unclassified	0.0262398172
+UniRef50_UPI0003633276: hypothetical protein	0.0262397359
+UniRef50_UPI0003633276: hypothetical protein|unclassified	0.0262397359
+UniRef50_UPI000478D1B9: hypothetical protein	0.0262359965
+UniRef50_UPI000478D1B9: hypothetical protein|unclassified	0.0262359965
+UniRef50_UPI00035DE54F: hypothetical protein	0.0262341370
+UniRef50_UPI00035DE54F: hypothetical protein|unclassified	0.0262341370
+UniRef50_UPI00037D595A: hypothetical protein	0.0262340505
+UniRef50_UPI00037D595A: hypothetical protein|unclassified	0.0262340505
+UniRef50_UPI000287AFB1: DNA mismatch repair protein	0.0262321394
+UniRef50_UPI000287AFB1: DNA mismatch repair protein|unclassified	0.0262321394
+UniRef50_UPI0003688B52: hypothetical protein	0.0262286733
+UniRef50_UPI0003688B52: hypothetical protein|unclassified	0.0262286733
+UniRef50_UPI0003F6BA02: cysteinyl-tRNA synthetase	0.0262277896
+UniRef50_UPI0003F6BA02: cysteinyl-tRNA synthetase|unclassified	0.0262277896
+UniRef50_UPI00047EAA8B: hypothetical protein	0.0262273811
+UniRef50_UPI00047EAA8B: hypothetical protein|unclassified	0.0262273811
+UniRef50_B2I6K9: Valine--tRNA ligase	0.0262253613
+UniRef50_B2I6K9: Valine--tRNA ligase|unclassified	0.0262253613
+UniRef50_U1SGC9: Cell wall-binding repeat protein	0.0262145284
+UniRef50_U1SGC9: Cell wall-binding repeat protein|unclassified	0.0262145284
+UniRef50_UPI0003808BDF: hypothetical protein	0.0262044388
+UniRef50_UPI0003808BDF: hypothetical protein|unclassified	0.0262044388
+UniRef50_A0A011MBA1: DNA repair protein RecN	0.0262033861
+UniRef50_A0A011MBA1: DNA repair protein RecN|unclassified	0.0262033861
+UniRef50_Q2AC60: HrpY	0.0261884371
+UniRef50_Q2AC60: HrpY|unclassified	0.0261884371
+UniRef50_J2PC13: Arabinose efflux permease family protein	0.0261777060
+UniRef50_J2PC13: Arabinose efflux permease family protein|unclassified	0.0261777060
+UniRef50_UPI000405366E: FAD-dependent oxidoreductase	0.0261774034
+UniRef50_UPI000405366E: FAD-dependent oxidoreductase|unclassified	0.0261774034
+UniRef50_H5T7Z3	0.0261745473
+UniRef50_H5T7Z3|unclassified	0.0261745473
+UniRef50_I7JXM0	0.0261744093
+UniRef50_I7JXM0|unclassified	0.0261744093
+UniRef50_UPI0003EC47C0: PREDICTED: histone-arginine methyltransferase CARM1-like	0.0261644695
+UniRef50_UPI0003EC47C0: PREDICTED: histone-arginine methyltransferase CARM1-like|unclassified	0.0261644695
+UniRef50_UPI0001DD0A35: glucose-methanol-choline oxidoreductase	0.0261634863
+UniRef50_UPI0001DD0A35: glucose-methanol-choline oxidoreductase|unclassified	0.0261634863
+UniRef50_C7MC16: ATP-dependent zinc metalloprotease FtsH	0.0261572323
+UniRef50_C7MC16: ATP-dependent zinc metalloprotease FtsH|unclassified	0.0261572323
+UniRef50_J3PR65	0.0261538203
+UniRef50_J3PR65|unclassified	0.0261538203
+UniRef50_UPI00035C5149: hypothetical protein	0.0261511952
+UniRef50_UPI00035C5149: hypothetical protein|unclassified	0.0261511952
+UniRef50_UPI0003B6E119: multidrug ABC transporter ATP-binding protein	0.0261504888
+UniRef50_UPI0003B6E119: multidrug ABC transporter ATP-binding protein|unclassified	0.0261504888
+UniRef50_A6GGA4: Coenzyme PQQ synthesis protein B	0.0261470882
+UniRef50_A6GGA4: Coenzyme PQQ synthesis protein B|unclassified	0.0261470882
+UniRef50_UPI0003EAAE56: PREDICTED: LOW QUALITY PROTEIN: mycophenolic acid acyl-glucuronide esterase, mitochondrial-like	0.0261447092
+UniRef50_UPI0003EAAE56: PREDICTED: LOW QUALITY PROTEIN: mycophenolic acid acyl-glucuronide esterase, mitochondrial-like|unclassified	0.0261447092
+UniRef50_A3YTS5	0.0261425585
+UniRef50_A3YTS5|unclassified	0.0261425585
+UniRef50_Q7U5L7: Probable malate:quinone oxidoreductase	0.0261381024
+UniRef50_Q7U5L7: Probable malate:quinone oxidoreductase|unclassified	0.0261381024
+UniRef50_UPI00047D5F09: hypothetical protein	0.0261379102
+UniRef50_UPI00047D5F09: hypothetical protein|unclassified	0.0261379102
+UniRef50_I4KW65	0.0261300328
+UniRef50_I4KW65|unclassified	0.0261300328
+UniRef50_UPI000468EA55: hypothetical protein	0.0261190754
+UniRef50_UPI000468EA55: hypothetical protein|unclassified	0.0261190754
+UniRef50_Q2J6Q9: 1,4-alpha-glucan branching enzyme GlgB	0.0261183716
+UniRef50_Q2J6Q9: 1,4-alpha-glucan branching enzyme GlgB|unclassified	0.0261183716
+UniRef50_UPI0003A7F193: sulfate:proton symporter	0.0261129470
+UniRef50_UPI0003A7F193: sulfate:proton symporter|unclassified	0.0261129470
+UniRef50_E3YHB5: Peptidoglycan binding protein	0.0261119691
+UniRef50_E3YHB5: Peptidoglycan binding protein|unclassified	0.0261119691
+UniRef50_U6G3Q1	0.0261114956
+UniRef50_U6G3Q1|unclassified	0.0261114956
+UniRef50_UPI0003318D3E: PREDICTED: chromogranin-A	0.0261100207
+UniRef50_UPI0003318D3E: PREDICTED: chromogranin-A|unclassified	0.0261100207
+UniRef50_UPI000380AA77: hypothetical protein	0.0261098009
+UniRef50_UPI000380AA77: hypothetical protein|unclassified	0.0261098009
+UniRef50_K7IMX3	0.0261074995
+UniRef50_K7IMX3|unclassified	0.0261074995
+UniRef50_H0A188: Putative phage terminase, large subunit	0.0261074769
+UniRef50_H0A188: Putative phage terminase, large subunit|unclassified	0.0261074769
+UniRef50_G5JX83: Type VII secretion protein EssB	0.0261059527
+UniRef50_G5JX83: Type VII secretion protein EssB|unclassified	0.0261059527
+UniRef50_UPI0003C19678: PREDICTED: CDK5 regulatory subunit-associated protein 1-like	0.0261052775
+UniRef50_UPI0003C19678: PREDICTED: CDK5 regulatory subunit-associated protein 1-like|unclassified	0.0261052775
+UniRef50_UPI0004750999: exonuclease V subunit gamma, partial	0.0260996991
+UniRef50_UPI0004750999: exonuclease V subunit gamma, partial|unclassified	0.0260996991
+UniRef50_UPI00047E74A6: hypothetical protein	0.0260967306
+UniRef50_UPI00047E74A6: hypothetical protein|unclassified	0.0260967306
+UniRef50_UPI00035DE498: hypothetical protein	0.0260929055
+UniRef50_UPI00035DE498: hypothetical protein|unclassified	0.0260929055
+UniRef50_S4XT22	0.0260921063
+UniRef50_S4XT22|unclassified	0.0260921063
+UniRef50_L0GW54: Exopolyphosphatase	0.0260902162
+UniRef50_L0GW54: Exopolyphosphatase|unclassified	0.0260902162
+UniRef50_UPI00037A05DD: hypothetical protein	0.0260860092
+UniRef50_UPI00037A05DD: hypothetical protein|unclassified	0.0260860092
+UniRef50_UPI0003B49194: pyridine nucleotide-disulfide oxidoreductase	0.0260827846
+UniRef50_UPI0003B49194: pyridine nucleotide-disulfide oxidoreductase|unclassified	0.0260827846
+UniRef50_UPI0003B45CE3: arabinose ABC transporter permease	0.0260782340
+UniRef50_UPI0003B45CE3: arabinose ABC transporter permease|unclassified	0.0260782340
+UniRef50_UPI0003316793: PREDICTED: regulator of G-protein signaling protein-like	0.0260756255
+UniRef50_UPI0003316793: PREDICTED: regulator of G-protein signaling protein-like|unclassified	0.0260756255
+UniRef50_UPI00016AD27F: O-antigen acetylase, partial	0.0260745476
+UniRef50_UPI00016AD27F: O-antigen acetylase, partial|unclassified	0.0260745476
+UniRef50_UPI0003B3872E: branched-chain alpha-keto acid dehydrogenase subunit E2	0.0260727906
+UniRef50_UPI0003B3872E: branched-chain alpha-keto acid dehydrogenase subunit E2|unclassified	0.0260727906
+UniRef50_UPI000465F234: hypothetical protein	0.0260724593
+UniRef50_UPI000465F234: hypothetical protein|unclassified	0.0260724593
+UniRef50_UPI000376F4CA: hypothetical protein	0.0260714996
+UniRef50_UPI000376F4CA: hypothetical protein|unclassified	0.0260714996
+UniRef50_UPI000468FDF0: cell division protein FtsK	0.0260704904
+UniRef50_UPI000468FDF0: cell division protein FtsK|unclassified	0.0260704904
+UniRef50_UPI00035944E9	0.0260703796
+UniRef50_UPI00035944E9|unclassified	0.0260703796
+UniRef50_A0A021W7Z9	0.0260664887
+UniRef50_A0A021W7Z9|unclassified	0.0260664887
+UniRef50_UPI000368B66A: hypothetical protein	0.0260645690
+UniRef50_UPI000368B66A: hypothetical protein|unclassified	0.0260645690
+UniRef50_UPI00037928ED: hypothetical protein	0.0260645690
+UniRef50_UPI00037928ED: hypothetical protein|unclassified	0.0260645690
+UniRef50_A0A029RN46	0.0260547650
+UniRef50_A0A029RN46|unclassified	0.0260547650
+UniRef50_O60678: Protein arginine N-methyltransferase 3	0.0260506422
+UniRef50_O60678: Protein arginine N-methyltransferase 3|unclassified	0.0260506422
+UniRef50_UPI0003699727: hypothetical protein	0.0260496562
+UniRef50_UPI0003699727: hypothetical protein|unclassified	0.0260496562
+UniRef50_UPI0003B34243: histidine kinase	0.0260429942
+UniRef50_UPI0003B34243: histidine kinase|unclassified	0.0260429942
+UniRef50_C3PZG5	0.0260427031
+UniRef50_C3PZG5|unclassified	0.0260427031
+UniRef50_Q29R28: RE28791p	0.0260368598
+UniRef50_Q29R28: RE28791p|unclassified	0.0260368598
+UniRef50_Q39F07: Glutamate--tRNA ligase	0.0260366981
+UniRef50_Q39F07: Glutamate--tRNA ligase|unclassified	0.0260366981
+UniRef50_M2XTQ6	0.0260350415
+UniRef50_M2XTQ6|unclassified	0.0260350415
+UniRef50_A3TYC1: Putative cytoplasmic protein	0.0260333699
+UniRef50_A3TYC1: Putative cytoplasmic protein|unclassified	0.0260333699
+UniRef50_UPI0003691F16: hypothetical protein	0.0260329026
+UniRef50_UPI0003691F16: hypothetical protein|unclassified	0.0260329026
+UniRef50_S2MQ18	0.0260259714
+UniRef50_S2MQ18|unclassified	0.0260259714
+UniRef50_UPI0003786B29: hypothetical protein	0.0260244908
+UniRef50_UPI0003786B29: hypothetical protein|unclassified	0.0260244908
+UniRef50_T0HPL2	0.0260241973
+UniRef50_T0HPL2|unclassified	0.0260241973
+UniRef50_A7AUY7: Aldo-keto reductase	0.0260239067
+UniRef50_A7AUY7: Aldo-keto reductase|unclassified	0.0260239067
+UniRef50_Q9PQK7: CTP synthase	0.0260234030
+UniRef50_Q9PQK7: CTP synthase|unclassified	0.0260234030
+UniRef50_UPI0002492F6C: DNA-binding protein	0.0260215496
+UniRef50_UPI0002492F6C: DNA-binding protein|unclassified	0.0260215496
+UniRef50_Q492Z3: Leucine--tRNA ligase	0.0260200353
+UniRef50_Q492Z3: Leucine--tRNA ligase|unclassified	0.0260200353
+UniRef50_I6WST3: Periplasmic-binding protein	0.0260190302
+UniRef50_I6WST3: Periplasmic-binding protein|unclassified	0.0260190302
+UniRef50_UPI000408B548: hypothetical protein	0.0260189649
+UniRef50_UPI000408B548: hypothetical protein|unclassified	0.0260189649
+UniRef50_K7EH66	0.0260160397
+UniRef50_K7EH66|unclassified	0.0260160397
+UniRef50_Q6FEP2: Phosphate acetyltransferase	0.0260149079
+UniRef50_Q6FEP2: Phosphate acetyltransferase|unclassified	0.0260149079
+UniRef50_UPI0003AD207F: hypothetical protein	0.0260145989
+UniRef50_UPI0003AD207F: hypothetical protein|unclassified	0.0260145989
+UniRef50_UPI000479919E: phosphoribosylaminoimidazolecarboxamide formyltransferase	0.0260134453
+UniRef50_UPI000479919E: phosphoribosylaminoimidazolecarboxamide formyltransferase|unclassified	0.0260134453
+UniRef50_UPI000479C05A: malate:quinone oxidoreductase	0.0260129866
+UniRef50_UPI000479C05A: malate:quinone oxidoreductase|unclassified	0.0260129866
+UniRef50_UPI00037C5039: hypothetical protein	0.0260115846
+UniRef50_UPI00037C5039: hypothetical protein|unclassified	0.0260115846
+UniRef50_F1VW16: EAL domain	0.0260061473
+UniRef50_F1VW16: EAL domain|unclassified	0.0260061473
+UniRef50_UPI0002E4B515: hypothetical protein	0.0260057168
+UniRef50_UPI0002E4B515: hypothetical protein|unclassified	0.0260057168
+UniRef50_UPI0003C44AB2: PREDICTED: hydroxyacid oxidase 1	0.0260046999
+UniRef50_UPI0003C44AB2: PREDICTED: hydroxyacid oxidase 1|unclassified	0.0260046999
+UniRef50_UPI0003B5016A: hypothetical protein	0.0260026943
+UniRef50_UPI0003B5016A: hypothetical protein|unclassified	0.0260026943
+UniRef50_UPI000050F9B6: C4-dicarboxylate ABC transporter permease	0.0260005309
+UniRef50_UPI000050F9B6: C4-dicarboxylate ABC transporter permease|unclassified	0.0260005309
+UniRef50_UPI00034C6033: hypothetical protein	0.0259987192
+UniRef50_UPI00034C6033: hypothetical protein|unclassified	0.0259987192
+UniRef50_UPI0003F69977: hypothetical protein	0.0259955004
+UniRef50_UPI0003F69977: hypothetical protein|unclassified	0.0259955004
+UniRef50_UPI00037C3327: C4-dicarboxylate ABC transporter	0.0259852883
+UniRef50_UPI00037C3327: C4-dicarboxylate ABC transporter|unclassified	0.0259852883
+UniRef50_B3PB14	0.0259825865
+UniRef50_B3PB14|unclassified	0.0259825865
+UniRef50_UPI00036A9BE8: hypothetical protein, partial	0.0259771449
+UniRef50_UPI00036A9BE8: hypothetical protein, partial|unclassified	0.0259771449
+UniRef50_UPI0004639C8D: multidrug ABC transporter permease	0.0259743315
+UniRef50_UPI0004639C8D: multidrug ABC transporter permease|unclassified	0.0259743315
+UniRef50_UPI0003B39979: DNA polymerase III subunit alpha	0.0259736811
+UniRef50_UPI0003B39979: DNA polymerase III subunit alpha|unclassified	0.0259736811
+UniRef50_UPI00028905C7: recombinase RecQ	0.0259711962
+UniRef50_UPI00028905C7: recombinase RecQ|unclassified	0.0259711962
+UniRef50_J9S5I5	0.0259590141
+UniRef50_J9S5I5|unclassified	0.0259590141
+UniRef50_S0F055	0.0259581372
+UniRef50_S0F055|unclassified	0.0259581372
+UniRef50_UPI000382DDED: hypothetical protein	0.0259562802
+UniRef50_UPI000382DDED: hypothetical protein|unclassified	0.0259562802
+UniRef50_P23921: Ribonucleoside-diphosphate reductase large subunit	0.0259558458
+UniRef50_P23921: Ribonucleoside-diphosphate reductase large subunit|unclassified	0.0259558458
+UniRef50_UPI00047954CB: hypothetical protein	0.0259540982
+UniRef50_UPI00047954CB: hypothetical protein|unclassified	0.0259540982
+UniRef50_UPI00047DAA1D: hypothetical protein	0.0259426840
+UniRef50_UPI00047DAA1D: hypothetical protein|unclassified	0.0259426840
+UniRef50_Q4A2U1: Putative membrane protein	0.0259423405
+UniRef50_Q4A2U1: Putative membrane protein|unclassified	0.0259423405
+UniRef50_UPI000368FCD4: hypothetical protein	0.0259379763
+UniRef50_UPI000368FCD4: hypothetical protein|unclassified	0.0259379763
+UniRef50_UPI000375FA0B: hypothetical protein	0.0259345565
+UniRef50_UPI000375FA0B: hypothetical protein|unclassified	0.0259345565
+UniRef50_UPI00047C60CD: hypothetical protein	0.0259244051
+UniRef50_UPI00047C60CD: hypothetical protein|unclassified	0.0259244051
+UniRef50_I6EVX6: RHS repeat-associated core domain protein	0.0259229524
+UniRef50_I6EVX6: RHS repeat-associated core domain protein|unclassified	0.0259229524
+UniRef50_UPI0003B5A2A7: glycosyl transferase	0.0259213268
+UniRef50_UPI0003B5A2A7: glycosyl transferase|unclassified	0.0259213268
+UniRef50_UPI00042682BC: carbamoyltransferase	0.0259211400
+UniRef50_UPI00042682BC: carbamoyltransferase|unclassified	0.0259211400
+UniRef50_P71481: DNA primase	0.0259201428
+UniRef50_P71481: DNA primase|unclassified	0.0259201428
+UniRef50_R2Q149: Serine-aspartate repeat-containing protein E	0.0259195662
+UniRef50_R2Q149: Serine-aspartate repeat-containing protein E|unclassified	0.0259195662
+UniRef50_UPI00031E94BD: hypothetical protein	0.0259180271
+UniRef50_UPI00031E94BD: hypothetical protein|unclassified	0.0259180271
+UniRef50_D1AZL6: Tripartite ATP-independent periplasmic transporter DctQ component	0.0259171408
+UniRef50_D1AZL6: Tripartite ATP-independent periplasmic transporter DctQ component|unclassified	0.0259171408
+UniRef50_D2EH97: Methyl-accepting chemotaxis protein signaling domain protein	0.0259113871
+UniRef50_D2EH97: Methyl-accepting chemotaxis protein signaling domain protein|unclassified	0.0259113871
+UniRef50_UPI0003B4E2D0: preprotein translocase subunit SecD	0.0259094058
+UniRef50_UPI0003B4E2D0: preprotein translocase subunit SecD|unclassified	0.0259094058
+UniRef50_S3CKR8	0.0259088413
+UniRef50_S3CKR8|unclassified	0.0259088413
+UniRef50_UPI00046E1C82: PREDICTED: pollen-specific leucine-rich repeat extensin-like protein 4	0.0259055562
+UniRef50_UPI00046E1C82: PREDICTED: pollen-specific leucine-rich repeat extensin-like protein 4|unclassified	0.0259055562
+UniRef50_UPI00047964ED: multidrug DMT transporter permease	0.0259001490
+UniRef50_UPI00047964ED: multidrug DMT transporter permease|unclassified	0.0259001490
+UniRef50_UPI000478E443: hypothetical protein	0.0258953014
+UniRef50_UPI000478E443: hypothetical protein|unclassified	0.0258953014
+UniRef50_Q21Z99: ATP synthase subunit alpha 2	0.0258929580
+UniRef50_Q21Z99: ATP synthase subunit alpha 2|unclassified	0.0258929580
+UniRef50_UPI000379633C: hypothetical protein	0.0258903294
+UniRef50_UPI000379633C: hypothetical protein|unclassified	0.0258903294
+UniRef50_UPI00035C4330: hypothetical protein	0.0258884586
+UniRef50_UPI00035C4330: hypothetical protein|unclassified	0.0258884586
+UniRef50_UPI000347C25A: hypothetical protein	0.0258871745
+UniRef50_UPI000347C25A: hypothetical protein|unclassified	0.0258871745
+UniRef50_E4R570	0.0258789189
+UniRef50_E4R570|unclassified	0.0258789189
+UniRef50_C1EHI5: Predicted protein	0.0258783302
+UniRef50_C1EHI5: Predicted protein|unclassified	0.0258783302
+UniRef50_UPI0003B773D1: DNA topoisomerase I	0.0258735768
+UniRef50_UPI0003B773D1: DNA topoisomerase I|unclassified	0.0258735768
+UniRef50_UPI0003C78D05: DNA-directed RNA polymerase subunit beta, partial	0.0258732950
+UniRef50_UPI0003C78D05: DNA-directed RNA polymerase subunit beta, partial|unclassified	0.0258732950
+UniRef50_UPI00026CC91E: flagellar hook-basal body protein	0.0258716779
+UniRef50_UPI00026CC91E: flagellar hook-basal body protein|unclassified	0.0258716779
+UniRef50_UPI0003B72B63: UDP-N-acetylmuramoylalanyl-D-glutamate--2,6-diaminopimelate ligase	0.0258711065
+UniRef50_UPI0003B72B63: UDP-N-acetylmuramoylalanyl-D-glutamate--2,6-diaminopimelate ligase|unclassified	0.0258711065
+UniRef50_UPI0002557A53: beta-ketoacyl synthase, partial	0.0258687825
+UniRef50_UPI0002557A53: beta-ketoacyl synthase, partial|unclassified	0.0258687825
+UniRef50_UPI0004414296: hypothetical protein AURDEDRAFT_187166	0.0258629642
+UniRef50_UPI0004414296: hypothetical protein AURDEDRAFT_187166|unclassified	0.0258629642
+UniRef50_H3B5V6	0.0258597859
+UniRef50_H3B5V6|unclassified	0.0258597859
+UniRef50_UPI0003650E6A: hypothetical protein	0.0258578676
+UniRef50_UPI0003650E6A: hypothetical protein|unclassified	0.0258578676
+UniRef50_A0A024HY89	0.0258575847
+UniRef50_A0A024HY89|unclassified	0.0258575847
+UniRef50_F3YAV3: Fibronectin/ fibrinogen-binding protein	0.0258544304
+UniRef50_F3YAV3: Fibronectin/ fibrinogen-binding protein|unclassified	0.0258544304
+UniRef50_UPI00046EFD00: hypothetical protein	0.0258509532
+UniRef50_UPI00046EFD00: hypothetical protein|unclassified	0.0258509532
+UniRef50_P15202: Peroxisomal catalase A	0.0258482963
+UniRef50_P15202: Peroxisomal catalase A|unclassified	0.0258482963
+UniRef50_UPI000479F6ED: hypothetical protein	0.0258472280
+UniRef50_UPI000479F6ED: hypothetical protein|unclassified	0.0258472280
+UniRef50_Q14IC9: Polyribonucleotide nucleotidyltransferase	0.0258460371
+UniRef50_Q14IC9: Polyribonucleotide nucleotidyltransferase|unclassified	0.0258460371
+UniRef50_C4YMD9	0.0258459857
+UniRef50_C4YMD9|unclassified	0.0258459857
+UniRef50_K0SMC9	0.0258404273
+UniRef50_K0SMC9|unclassified	0.0258404273
+UniRef50_L0MGL1: Flagellar motor protein	0.0258388377
+UniRef50_L0MGL1: Flagellar motor protein|unclassified	0.0258388377
+UniRef50_UPI000361D79D: hypothetical protein	0.0258373657
+UniRef50_UPI000361D79D: hypothetical protein|unclassified	0.0258373657
+UniRef50_UPI00047138DD: hypothetical protein	0.0258364794
+UniRef50_UPI00047138DD: hypothetical protein|unclassified	0.0258364794
+UniRef50_UPI000469C4B1: hypothetical protein	0.0258265277
+UniRef50_UPI000469C4B1: hypothetical protein|unclassified	0.0258265277
+UniRef50_J2NRA1: Rhs element Vgr protein	0.0258242472
+UniRef50_J2NRA1: Rhs element Vgr protein|unclassified	0.0258242472
+UniRef50_UPI0003344A46: PREDICTED: collagen alpha-1(I) chain-like	0.0258241900
+UniRef50_UPI0003344A46: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.0258241900
+UniRef50_W3ANA7	0.0258231342
+UniRef50_W3ANA7|unclassified	0.0258231342
+UniRef50_S2ZIW6	0.0258220510
+UniRef50_S2ZIW6|unclassified	0.0258220510
+UniRef50_A6SXI6: Tricarboxylate transport protein TctA	0.0258190534
+UniRef50_A6SXI6: Tricarboxylate transport protein TctA|unclassified	0.0258190534
+UniRef50_UPI000367F4BF: hypothetical protein	0.0258177418
+UniRef50_UPI000367F4BF: hypothetical protein|unclassified	0.0258177418
+UniRef50_UPI0003706093: hypothetical protein	0.0258115693
+UniRef50_UPI0003706093: hypothetical protein|unclassified	0.0258115693
+UniRef50_UPI00047D47B8: branched-chain amino acid ABC transporter substrate-binding protein	0.0258067242
+UniRef50_UPI00047D47B8: branched-chain amino acid ABC transporter substrate-binding protein|unclassified	0.0258067242
+UniRef50_UPI000475E2DE: hypothetical protein, partial	0.0258007305
+UniRef50_UPI000475E2DE: hypothetical protein, partial|unclassified	0.0258007305
+UniRef50_F0P909: Conserved membrane protein, putative	0.0258004100
+UniRef50_F0P909: Conserved membrane protein, putative|unclassified	0.0258004100
+UniRef50_UPI000225B7B3: hypothetical protein	0.0257948116
+UniRef50_UPI000225B7B3: hypothetical protein|unclassified	0.0257948116
+UniRef50_UPI00035D2C63: hypothetical protein	0.0257938324
+UniRef50_UPI00035D2C63: hypothetical protein|unclassified	0.0257938324
+UniRef50_UPI00046E6FF8: hypothetical protein	0.0257903552
+UniRef50_UPI00046E6FF8: hypothetical protein|unclassified	0.0257903552
+UniRef50_UPI0002F865A8: hypothetical protein	0.0257903300
+UniRef50_UPI0002F865A8: hypothetical protein|unclassified	0.0257903300
+UniRef50_V5FJL0: Conjugal transfer protein TraN	0.0257892832
+UniRef50_V5FJL0: Conjugal transfer protein TraN|unclassified	0.0257892832
+UniRef50_UPI0003C14420: PREDICTED: trifunctional purine biosynthetic protein adenosine-3-like	0.0257879144
+UniRef50_UPI0003C14420: PREDICTED: trifunctional purine biosynthetic protein adenosine-3-like|unclassified	0.0257879144
+UniRef50_UPI0004766F31: hypothetical protein, partial	0.0257818578
+UniRef50_UPI0004766F31: hypothetical protein, partial|unclassified	0.0257818578
+UniRef50_UPI0003674A10: hypothetical protein	0.0257811929
+UniRef50_UPI0003674A10: hypothetical protein|unclassified	0.0257811929
+UniRef50_UPI0002490D5A: PTS system mannitol-specific transporter subunit IIBC	0.0257686131
+UniRef50_UPI0002490D5A: PTS system mannitol-specific transporter subunit IIBC|unclassified	0.0257686131
+UniRef50_UPI0003C13E82: PREDICTED: cysteine--tRNA ligase, mitochondrial-like	0.0257605864
+UniRef50_UPI0003C13E82: PREDICTED: cysteine--tRNA ligase, mitochondrial-like|unclassified	0.0257605864
+UniRef50_UPI000473A780: threonine dehydratase	0.0257585855
+UniRef50_UPI000473A780: threonine dehydratase|unclassified	0.0257585855
+UniRef50_W8R3P7: Type IV secretion protein Rhs	0.0257552871
+UniRef50_W8R3P7: Type IV secretion protein Rhs|unclassified	0.0257552871
+UniRef50_Q4W6G0: Quinohemoprotein alcohol dehydrogenase ADH-IIG	0.0257523971
+UniRef50_Q4W6G0: Quinohemoprotein alcohol dehydrogenase ADH-IIG|unclassified	0.0257523971
+UniRef50_UPI0004694FD0: hypothetical protein	0.0257395060
+UniRef50_UPI0004694FD0: hypothetical protein|unclassified	0.0257395060
+UniRef50_UPI0004669156: major facilitator transporter	0.0257348844
+UniRef50_UPI0004669156: major facilitator transporter|unclassified	0.0257348844
+UniRef50_UPI0002DF9490: hypothetical protein	0.0257342775
+UniRef50_UPI0002DF9490: hypothetical protein|unclassified	0.0257342775
+UniRef50_D2RJJ8	0.0257338976
+UniRef50_D2RJJ8|unclassified	0.0257338976
+UniRef50_UPI00040E05A5: pilus assembly protein PilQ	0.0257262802
+UniRef50_UPI00040E05A5: pilus assembly protein PilQ|unclassified	0.0257262802
+UniRef50_M5J7W6	0.0257209151
+UniRef50_M5J7W6|unclassified	0.0257209151
+UniRef50_Q4FSU1: Siroheme synthase	0.0257176681
+UniRef50_Q4FSU1: Siroheme synthase|unclassified	0.0257176681
+UniRef50_B1M6B9: Pyrimidine monooxygenase RutA	0.0257169008
+UniRef50_B1M6B9: Pyrimidine monooxygenase RutA|unclassified	0.0257169008
+UniRef50_Q2NV27: Phage portal protein	0.0257168395
+UniRef50_Q2NV27: Phage portal protein|unclassified	0.0257168395
+UniRef50_Q93EJ3: Arginine biosynthesis bifunctional protein ArgJ	0.0257103415
+UniRef50_Q93EJ3: Arginine biosynthesis bifunctional protein ArgJ|unclassified	0.0257103415
+UniRef50_UPI00046D808E: hypothetical protein	0.0257071868
+UniRef50_UPI00046D808E: hypothetical protein|unclassified	0.0257071868
+UniRef50_UPI0004650B13: hypothetical protein	0.0257042043
+UniRef50_UPI0004650B13: hypothetical protein|unclassified	0.0257042043
+UniRef50_A0A021XGJ3: OmpA family protein	0.0257018486
+UniRef50_A0A021XGJ3: OmpA family protein|unclassified	0.0257018486
+UniRef50_Q9RUF3: Methionine--tRNA ligase	0.0256998760
+UniRef50_Q9RUF3: Methionine--tRNA ligase|unclassified	0.0256998760
+UniRef50_UPI000471E8AE: hypothetical protein, partial	0.0256953472
+UniRef50_UPI000471E8AE: hypothetical protein, partial|unclassified	0.0256953472
+UniRef50_UPI000262D1BF: ribonuclease R	0.0256889656
+UniRef50_UPI000262D1BF: ribonuclease R|unclassified	0.0256889656
+UniRef50_UPI00037F0210: hypothetical protein	0.0256883874
+UniRef50_UPI00037F0210: hypothetical protein|unclassified	0.0256883874
+UniRef50_B4U1K4: Fibronectin-binding protein FbpZ.2	0.0256835707
+UniRef50_B4U1K4: Fibronectin-binding protein FbpZ.2|unclassified	0.0256835707
+UniRef50_E8X7L8: Conjugative relaxase domain protein	0.0256822907
+UniRef50_E8X7L8: Conjugative relaxase domain protein|unclassified	0.0256822907
+UniRef50_UPI00040B2A47: hypothetical protein	0.0256744503
+UniRef50_UPI00040B2A47: hypothetical protein|unclassified	0.0256744503
+UniRef50_E1R2T5: Galactoside ABC transporter	0.0256700894
+UniRef50_E1R2T5: Galactoside ABC transporter|unclassified	0.0256700894
+UniRef50_E9B5T6: Proteophosphoglycan ppg1	0.0256696416
+UniRef50_E9B5T6: Proteophosphoglycan ppg1|unclassified	0.0256696416
+UniRef50_UPI000477F471: hypothetical protein	0.0256623362
+UniRef50_UPI000477F471: hypothetical protein|unclassified	0.0256623362
+UniRef50_P47359: Asparagine--tRNA ligase	0.0256553476
+UniRef50_P47359: Asparagine--tRNA ligase|unclassified	0.0256553476
+UniRef50_F0VLI9: Complete genome, chromosome X	0.0256526531
+UniRef50_F0VLI9: Complete genome, chromosome X|unclassified	0.0256526531
+UniRef50_UPI000225ACBB: acetyl-CoA carboxylase, biotin carboxylase	0.0256512932
+UniRef50_UPI000225ACBB: acetyl-CoA carboxylase, biotin carboxylase|unclassified	0.0256512932
+UniRef50_UPI000455DB27: general APC amino acid permease	0.0256489540
+UniRef50_UPI000455DB27: general APC amino acid permease|unclassified	0.0256489540
+UniRef50_UPI00036D78B0: hypothetical protein	0.0256451075
+UniRef50_UPI00036D78B0: hypothetical protein|unclassified	0.0256451075
+UniRef50_UPI0003DF491B: PREDICTED: vegetative cell wall protein gp1-like, partial	0.0256410741
+UniRef50_UPI0003DF491B: PREDICTED: vegetative cell wall protein gp1-like, partial|unclassified	0.0256410741
+UniRef50_UPI0004671810: transporter	0.0256407507
+UniRef50_UPI0004671810: transporter|unclassified	0.0256407507
+UniRef50_UPI00046CFFD4: hypothetical protein	0.0256373076
+UniRef50_UPI00046CFFD4: hypothetical protein|unclassified	0.0256373076
+UniRef50_UPI0003637414: hypothetical protein	0.0256243658
+UniRef50_UPI0003637414: hypothetical protein|unclassified	0.0256243658
+UniRef50_UPI000421E015: hypothetical protein	0.0256125188
+UniRef50_UPI000421E015: hypothetical protein|unclassified	0.0256125188
+UniRef50_A9FSC5	0.0256107442
+UniRef50_A9FSC5|unclassified	0.0256107442
+UniRef50_R7WJS6	0.0256086765
+UniRef50_R7WJS6|unclassified	0.0256086765
+UniRef50_A3U3T3	0.0256071973
+UniRef50_A3U3T3|unclassified	0.0256071973
+UniRef50_D2NPJ7: Protein containing PAS/PAC domain	0.0256067323
+UniRef50_D2NPJ7: Protein containing PAS/PAC domain|unclassified	0.0256067323
+UniRef50_UPI00038165C7: hypothetical protein	0.0256067226
+UniRef50_UPI00038165C7: hypothetical protein|unclassified	0.0256067226
+UniRef50_W7HYY6	0.0256031123
+UniRef50_W7HYY6|unclassified	0.0256031123
+UniRef50_R4ZXL0: Membrane protein, putative	0.0256014572
+UniRef50_R4ZXL0: Membrane protein, putative|unclassified	0.0256014572
+UniRef50_UPI0004434C05: PREDICTED: threonine synthase-like 2 isoform X1	0.0255971452
+UniRef50_UPI0004434C05: PREDICTED: threonine synthase-like 2 isoform X1|unclassified	0.0255971452
+UniRef50_UPI0003B4A7F5: 16S rRNA methyltransferase	0.0255941404
+UniRef50_UPI0003B4A7F5: 16S rRNA methyltransferase|unclassified	0.0255941404
+UniRef50_UPI0004772455: metallophosphoesterase, partial	0.0255930306
+UniRef50_UPI0004772455: metallophosphoesterase, partial|unclassified	0.0255930306
+UniRef50_Q9K4V0: Nitric oxide reductase transcription regulator NorR1	0.0255918746
+UniRef50_Q9K4V0: Nitric oxide reductase transcription regulator NorR1|unclassified	0.0255918746
+UniRef50_UPI0004704839: nodulation protein	0.0255872287
+UniRef50_UPI0004704839: nodulation protein|unclassified	0.0255872287
+UniRef50_C4SH57: Integral membrane protein	0.0255859653
+UniRef50_C4SH57: Integral membrane protein|unclassified	0.0255859653
+UniRef50_W0RB11	0.0255822874
+UniRef50_W0RB11|unclassified	0.0255822874
+UniRef50_UPI00038F537A: Phosphate acyltransferase	0.0255818272
+UniRef50_UPI00038F537A: Phosphate acyltransferase|unclassified	0.0255818272
+UniRef50_UPI00047B1408: ribonuclease	0.0255789075
+UniRef50_UPI00047B1408: ribonuclease|unclassified	0.0255789075
+UniRef50_UPI0003457BAD: hypothetical protein	0.0255777854
+UniRef50_UPI0003457BAD: hypothetical protein|unclassified	0.0255777854
+UniRef50_Q96S55: ATPase WRNIP1	0.0255774099
+UniRef50_Q96S55: ATPase WRNIP1|unclassified	0.0255774099
+UniRef50_F4Q4F3: WD40 repeat-containing protein	0.0255736704
+UniRef50_F4Q4F3: WD40 repeat-containing protein|unclassified	0.0255736704
+UniRef50_Q8D1X9: Phosphoenolpyruvate carboxykinase [ATP]	0.0255640153
+UniRef50_Q8D1X9: Phosphoenolpyruvate carboxykinase [ATP]|unclassified	0.0255640153
+UniRef50_UPI00035C6A54: hypothetical protein	0.0255532604
+UniRef50_UPI00035C6A54: hypothetical protein|unclassified	0.0255532604
+UniRef50_UPI00047E641A: DNA mismatch repair protein MutL	0.0255506143
+UniRef50_UPI00047E641A: DNA mismatch repair protein MutL|unclassified	0.0255506143
+UniRef50_E1ZFT3	0.0255497081
+UniRef50_E1ZFT3|unclassified	0.0255497081
+UniRef50_M7TQJ9	0.0255422195
+UniRef50_M7TQJ9|unclassified	0.0255422195
+UniRef50_UPI0003B624E4: gamma-glutamyltranspeptidase	0.0255415708
+UniRef50_UPI0003B624E4: gamma-glutamyltranspeptidase|unclassified	0.0255415708
+UniRef50_B7GT76: 2-isopropylmalate synthase	0.0255318786
+UniRef50_B7GT76: 2-isopropylmalate synthase|unclassified	0.0255318786
+UniRef50_G1X3P0	0.0255304052
+UniRef50_G1X3P0|unclassified	0.0255304052
+UniRef50_S3U5X7	0.0255280338
+UniRef50_S3U5X7|unclassified	0.0255280338
+UniRef50_S2IYL3	0.0255277202
+UniRef50_S2IYL3|unclassified	0.0255277202
+UniRef50_P06208: 2-isopropylmalate synthase	0.0255139074
+UniRef50_P06208: 2-isopropylmalate synthase|unclassified	0.0255139074
+UniRef50_Q94AY1: L-aspartate oxidase, chloroplastic	0.0255085397
+UniRef50_Q94AY1: L-aspartate oxidase, chloroplastic|unclassified	0.0255085397
+UniRef50_UPI00036D4029: hypothetical protein	0.0255039177
+UniRef50_UPI00036D4029: hypothetical protein|unclassified	0.0255039177
+UniRef50_UPI0003B5C03B: phospholipase	0.0255029465
+UniRef50_UPI0003B5C03B: phospholipase|unclassified	0.0255029465
+UniRef50_UPI0004575D3A: PREDICTED: probable cationic amino acid transporter	0.0255003179
+UniRef50_UPI0004575D3A: PREDICTED: probable cationic amino acid transporter|unclassified	0.0255003179
+UniRef50_D4ZH68	0.0254996236
+UniRef50_D4ZH68|unclassified	0.0254996236
+UniRef50_A0A023SE77: Chaperone	0.0254967412
+UniRef50_A0A023SE77: Chaperone|unclassified	0.0254967412
+UniRef50_UPI0004639FD2: hypothetical protein	0.0254956286
+UniRef50_UPI0004639FD2: hypothetical protein|unclassified	0.0254956286
+UniRef50_U1EPB8: ABC transporter	0.0254949830
+UniRef50_U1EPB8: ABC transporter|unclassified	0.0254949830
+UniRef50_UPI0004419370: PREDICTED: probable asparagine--tRNA ligase, mitochondrial-like	0.0254912281
+UniRef50_UPI0004419370: PREDICTED: probable asparagine--tRNA ligase, mitochondrial-like|unclassified	0.0254912281
+UniRef50_H4U1D2: Prophage tail fiber family protein	0.0254896136
+UniRef50_H4U1D2: Prophage tail fiber family protein|unclassified	0.0254896136
+UniRef50_A6V228: Membrane protein, putative	0.0254891582
+UniRef50_A6V228: Membrane protein, putative|unclassified	0.0254891582
+UniRef50_UPI0004005113: antibiotic ABC transporter ATP-binding protein	0.0254884219
+UniRef50_UPI0004005113: antibiotic ABC transporter ATP-binding protein|unclassified	0.0254884219
+UniRef50_Q67KG3: Bifunctional purine biosynthesis protein PurH	0.0254878367
+UniRef50_Q67KG3: Bifunctional purine biosynthesis protein PurH|unclassified	0.0254878367
+UniRef50_Q0PAR0: Macrolide export ATP-binding/permease protein MacB	0.0254848236
+UniRef50_Q0PAR0: Macrolide export ATP-binding/permease protein MacB|unclassified	0.0254848236
+UniRef50_UPI00046713C4: folylpolyglutamate synthase	0.0254780680
+UniRef50_UPI00046713C4: folylpolyglutamate synthase|unclassified	0.0254780680
+UniRef50_UPI00047B3E5B: hypothetical protein	0.0254779039
+UniRef50_UPI00047B3E5B: hypothetical protein|unclassified	0.0254779039
+UniRef50_Q1ZAH6: Ferrichrome-binding protein	0.0254729940
+UniRef50_Q1ZAH6: Ferrichrome-binding protein|unclassified	0.0254729940
+UniRef50_D7JCW2: Membrane protein	0.0254705813
+UniRef50_D7JCW2: Membrane protein|unclassified	0.0254705813
+UniRef50_UPI000050FDF9: hydroxyglutarate oxidase	0.0254699653
+UniRef50_UPI000050FDF9: hydroxyglutarate oxidase|unclassified	0.0254699653
+UniRef50_UPI00047B2679: flagellar biosynthesis protein FlhB	0.0254676319
+UniRef50_UPI00047B2679: flagellar biosynthesis protein FlhB|unclassified	0.0254676319
+UniRef50_Q4KGS9: GAF domain/cyclic diguanylate phosphodiesterase (EAL) domain protein	0.0254644203
+UniRef50_Q4KGS9: GAF domain/cyclic diguanylate phosphodiesterase (EAL) domain protein|unclassified	0.0254644203
+UniRef50_O68984: Polyphosphate kinase 2	0.0254630573
+UniRef50_O68984: Polyphosphate kinase 2|unclassified	0.0254630573
+UniRef50_UPI0001CBAB2C: PREDICTED: WAS/WASL-interacting protein family member 1-like isoform X1	0.0254569046
+UniRef50_UPI0001CBAB2C: PREDICTED: WAS/WASL-interacting protein family member 1-like isoform X1|unclassified	0.0254569046
+UniRef50_U6IYZ4: Cationic amino acid transporter	0.0254566627
+UniRef50_U6IYZ4: Cationic amino acid transporter|unclassified	0.0254566627
+UniRef50_M4NH50	0.0254566077
+UniRef50_M4NH50|unclassified	0.0254566077
+UniRef50_UPI00035F3330: hypothetical protein	0.0254561105
+UniRef50_UPI00035F3330: hypothetical protein|unclassified	0.0254561105
+UniRef50_U6KBI9	0.0254553336
+UniRef50_U6KBI9|unclassified	0.0254553336
+UniRef50_R1CC10	0.0254521949
+UniRef50_R1CC10|unclassified	0.0254521949
+UniRef50_UPI00046F5175: ATPase	0.0254434927
+UniRef50_UPI00046F5175: ATPase|unclassified	0.0254434927
+UniRef50_UPI000467BC4C: type I secretion protein	0.0254433744
+UniRef50_UPI000467BC4C: type I secretion protein|unclassified	0.0254433744
+UniRef50_UPI00045606F4: hypothetical protein PFL1_04380	0.0254431865
+UniRef50_UPI00045606F4: hypothetical protein PFL1_04380|unclassified	0.0254431865
+UniRef50_Q6PCE3: Glucose 1,6-bisphosphate synthase	0.0254389751
+UniRef50_Q6PCE3: Glucose 1,6-bisphosphate synthase|unclassified	0.0254389751
+UniRef50_UPI0003800150: hypothetical protein	0.0254373578
+UniRef50_UPI0003800150: hypothetical protein|unclassified	0.0254373578
+UniRef50_UPI00029AE452: hypothetical protein	0.0254365287
+UniRef50_UPI00029AE452: hypothetical protein|unclassified	0.0254365287
+UniRef50_UPI000161E3FF: Elongation factor G C-terminus family protein	0.0254332013
+UniRef50_UPI000161E3FF: Elongation factor G C-terminus family protein|unclassified	0.0254332013
+UniRef50_UPI00037FF171: hypothetical protein	0.0254292704
+UniRef50_UPI00037FF171: hypothetical protein|unclassified	0.0254292704
+UniRef50_S4C0T0	0.0254289486
+UniRef50_S4C0T0|unclassified	0.0254289486
+UniRef50_O84834: Ribonucleoside-diphosphate reductase subunit alpha	0.0254242792
+UniRef50_O84834: Ribonucleoside-diphosphate reductase subunit alpha|unclassified	0.0254242792
+UniRef50_X1XW64	0.0254240885
+UniRef50_X1XW64|unclassified	0.0254240885
+UniRef50_T0ISY5	0.0254224381
+UniRef50_T0ISY5|unclassified	0.0254224381
+UniRef50_D0NVH9: Adenylosuccinate synthetase	0.0254221682
+UniRef50_D0NVH9: Adenylosuccinate synthetase|unclassified	0.0254221682
+UniRef50_I0I723	0.0254122905
+UniRef50_I0I723|unclassified	0.0254122905
+UniRef50_A0A011UDJ9	0.0254018527
+UniRef50_A0A011UDJ9|unclassified	0.0254018527
+UniRef50_UPI00030BAA24: hypothetical protein	0.0254005419
+UniRef50_UPI00030BAA24: hypothetical protein|unclassified	0.0254005419
+UniRef50_A0A014MC25	0.0253975047
+UniRef50_A0A014MC25|unclassified	0.0253975047
+UniRef50_G8SD75	0.0253972961
+UniRef50_G8SD75|unclassified	0.0253972961
+UniRef50_Q9Z4W7: Anthranilate synthase component 1	0.0253933510
+UniRef50_Q9Z4W7: Anthranilate synthase component 1|unclassified	0.0253933510
+UniRef50_W5XGT4	0.0253896132
+UniRef50_W5XGT4|unclassified	0.0253896132
+UniRef50_J3ZXU9: S-layer protein	0.0253791534
+UniRef50_J3ZXU9: S-layer protein|unclassified	0.0253791534
+UniRef50_UPI00046F9B67: PTS system, glucose subfamily, IIA component	0.0253787055
+UniRef50_UPI00046F9B67: PTS system, glucose subfamily, IIA component|unclassified	0.0253787055
+UniRef50_P47277: DNA polymerase III PolC-type	0.0253743695
+UniRef50_P47277: DNA polymerase III PolC-type|unclassified	0.0253743695
+UniRef50_N0B0K5: ATP-dependent RNA helicase	0.0253682477
+UniRef50_N0B0K5: ATP-dependent RNA helicase|unclassified	0.0253682477
+UniRef50_UPI00029ABFD7: Xaa-Pro aminopeptidase	0.0253664451
+UniRef50_UPI00029ABFD7: Xaa-Pro aminopeptidase|unclassified	0.0253664451
+UniRef50_G8TNJ0	0.0253662050
+UniRef50_G8TNJ0|unclassified	0.0253662050
+UniRef50_A8RTE6	0.0253658156
+UniRef50_A8RTE6|unclassified	0.0253658156
+UniRef50_UPI000370251A: hypothetical protein	0.0253625964
+UniRef50_UPI000370251A: hypothetical protein|unclassified	0.0253625964
+UniRef50_UPI0003C19153	0.0253599959
+UniRef50_UPI0003C19153|unclassified	0.0253599959
+UniRef50_F4EF38: Permease	0.0253574894
+UniRef50_F4EF38: Permease|unclassified	0.0253574894
+UniRef50_UPI0003688936: hypothetical protein	0.0253574894
+UniRef50_UPI0003688936: hypothetical protein|unclassified	0.0253574894
+UniRef50_UPI000470A2A9: hypothetical protein	0.0253554221
+UniRef50_UPI000470A2A9: hypothetical protein|unclassified	0.0253554221
+UniRef50_D0BMB6	0.0253532921
+UniRef50_D0BMB6|unclassified	0.0253532921
+UniRef50_UPI00046EED92: monooxygenase	0.0253521830
+UniRef50_UPI00046EED92: monooxygenase|unclassified	0.0253521830
+UniRef50_W6KI28: Genomic scaffold, scaffold_6	0.0253475214
+UniRef50_W6KI28: Genomic scaffold, scaffold_6|unclassified	0.0253475214
+UniRef50_P39119: Citrate synthase 1	0.0253459405
+UniRef50_P39119: Citrate synthase 1|unclassified	0.0253459405
+UniRef50_UPI00036D6CBB: hypothetical protein	0.0253416065
+UniRef50_UPI00036D6CBB: hypothetical protein|unclassified	0.0253416065
+UniRef50_UPI0003D30D31: Coenzyme F420-dependent N5,N10-methylene tetrahydromethanopterin reductase	0.0253367789
+UniRef50_UPI0003D30D31: Coenzyme F420-dependent N5,N10-methylene tetrahydromethanopterin reductase|unclassified	0.0253367789
+UniRef50_D5WJ02: PE-PGRS family protein	0.0253346112
+UniRef50_D5WJ02: PE-PGRS family protein|unclassified	0.0253346112
+UniRef50_UPI0003B5670B: peptide ABC transporter permease	0.0253332206
+UniRef50_UPI0003B5670B: peptide ABC transporter permease|unclassified	0.0253332206
+UniRef50_X8AJ38: Condensation domain protein	0.0253263407
+UniRef50_X8AJ38: Condensation domain protein|unclassified	0.0253263407
+UniRef50_UPI0004718EA9: peptidase U32, partial	0.0253248126
+UniRef50_UPI0004718EA9: peptidase U32, partial|unclassified	0.0253248126
+UniRef50_UPI00034416DC: PREDICTED: putative adenosylhomocysteinase 3 isoform X1	0.0253218184
+UniRef50_UPI00034416DC: PREDICTED: putative adenosylhomocysteinase 3 isoform X1|unclassified	0.0253218184
+UniRef50_W7CQC7: Fibronectin binding protein A	0.0253203050
+UniRef50_W7CQC7: Fibronectin binding protein A|unclassified	0.0253203050
+UniRef50_A6GLK1	0.0253177218
+UniRef50_A6GLK1|unclassified	0.0253177218
+UniRef50_J8E568: LPXTG-domain-containing protein cell wall anchor domain (Fragment)	0.0253174524
+UniRef50_J8E568: LPXTG-domain-containing protein cell wall anchor domain (Fragment)|unclassified	0.0253174524
+UniRef50_Q5XHA8: CTP synthase 1-A	0.0253096041
+UniRef50_Q5XHA8: CTP synthase 1-A|unclassified	0.0253096041
+UniRef50_L0KX35: Coenzyme F390 synthetase	0.0253081434
+UniRef50_L0KX35: Coenzyme F390 synthetase|unclassified	0.0253081434
+UniRef50_P19319: Respiratory nitrate reductase 2 alpha chain	0.0253072063
+UniRef50_P19319: Respiratory nitrate reductase 2 alpha chain|unclassified	0.0253072063
+UniRef50_UPI000475ABD1: hypothetical protein	0.0253044092
+UniRef50_UPI000475ABD1: hypothetical protein|unclassified	0.0253044092
+UniRef50_UPI000471E4EB: acyltransferase	0.0253041687
+UniRef50_UPI000471E4EB: acyltransferase|unclassified	0.0253041687
+UniRef50_UPI00026CCA2C: MULTISPECIES: putative ribonuclease	0.0253032278
+UniRef50_UPI00026CCA2C: MULTISPECIES: putative ribonuclease|unclassified	0.0253032278
+UniRef50_UPI00047CDAEB: type VI secretion protein	0.0253029218
+UniRef50_UPI00047CDAEB: type VI secretion protein|unclassified	0.0253029218
+UniRef50_UPI0003B45A90: cytochrome C oxidase	0.0253015955
+UniRef50_UPI0003B45A90: cytochrome C oxidase|unclassified	0.0253015955
+UniRef50_I1F340	0.0252945558
+UniRef50_I1F340|unclassified	0.0252945558
+UniRef50_F3L5H6	0.0252944872
+UniRef50_F3L5H6|unclassified	0.0252944872
+UniRef50_UPI000317D899: hypothetical protein	0.0252939203
+UniRef50_UPI000317D899: hypothetical protein|unclassified	0.0252939203
+UniRef50_UPI0003690004: hypothetical protein	0.0252908967
+UniRef50_UPI0003690004: hypothetical protein|unclassified	0.0252908967
+UniRef50_E3KZ88	0.0252869376
+UniRef50_E3KZ88|unclassified	0.0252869376
+UniRef50_UPI00035ED296: hypothetical protein	0.0252853435
+UniRef50_UPI00035ED296: hypothetical protein|unclassified	0.0252853435
+UniRef50_B5X4Z4: Probable amino-acid acetyltransferase NAGS2, chloroplastic	0.0252825765
+UniRef50_B5X4Z4: Probable amino-acid acetyltransferase NAGS2, chloroplastic|unclassified	0.0252825765
+UniRef50_B3M6C2: GF24314	0.0252813260
+UniRef50_B3M6C2: GF24314|unclassified	0.0252813260
+UniRef50_UPI000463A8B3: preprotein translocase subunit SecD/SecF, partial	0.0252705164
+UniRef50_UPI000463A8B3: preprotein translocase subunit SecD/SecF, partial|unclassified	0.0252705164
+UniRef50_UPI00047174FB: hypothetical protein	0.0252686797
+UniRef50_UPI00047174FB: hypothetical protein|unclassified	0.0252686797
+UniRef50_Q2IKX7: Aspartate--tRNA(Asp/Asn) ligase	0.0252661602
+UniRef50_Q2IKX7: Aspartate--tRNA(Asp/Asn) ligase|unclassified	0.0252661602
+UniRef50_UPI0003338868: PREDICTED: acetyl-CoA acetyltransferase, mitochondrial	0.0252660222
+UniRef50_UPI0003338868: PREDICTED: acetyl-CoA acetyltransferase, mitochondrial|unclassified	0.0252660222
+UniRef50_A6L7M5: Tryptophan synthase beta chain	0.0252653075
+UniRef50_A6L7M5: Tryptophan synthase beta chain|unclassified	0.0252653075
+UniRef50_UPI00035DA474: hypothetical protein	0.0252642061
+UniRef50_UPI00035DA474: hypothetical protein|unclassified	0.0252642061
+UniRef50_UPI0003B3F620: diguanylate cyclase	0.0252627112
+UniRef50_UPI0003B3F620: diguanylate cyclase|unclassified	0.0252627112
+UniRef50_UPI00035A08C7: PREDICTED: threonine synthase-like 2-like isoform X2	0.0252620926
+UniRef50_UPI00035A08C7: PREDICTED: threonine synthase-like 2-like isoform X2|unclassified	0.0252620926
+UniRef50_F8FG41	0.0252538015
+UniRef50_F8FG41|unclassified	0.0252538015
+UniRef50_A6VQF5	0.0252500802
+UniRef50_A6VQF5|unclassified	0.0252500802
+UniRef50_UPI0004691E44: hypothetical protein	0.0252477439
+UniRef50_UPI0004691E44: hypothetical protein|unclassified	0.0252477439
+UniRef50_R5R9L4	0.0252465851
+UniRef50_R5R9L4|unclassified	0.0252465851
+UniRef50_UPI0003DEC57A: PREDICTED: beta-glucosidase 42-like, partial	0.0252457264
+UniRef50_UPI0003DEC57A: PREDICTED: beta-glucosidase 42-like, partial|unclassified	0.0252457264
+UniRef50_W0BT27	0.0252436932
+UniRef50_W0BT27|unclassified	0.0252436932
+UniRef50_UPI000299F06B: amino acid carrier protein	0.0252423145
+UniRef50_UPI000299F06B: amino acid carrier protein|unclassified	0.0252423145
+UniRef50_UPI0003721DDA: hypothetical protein	0.0252413680
+UniRef50_UPI0003721DDA: hypothetical protein|unclassified	0.0252413680
+UniRef50_UPI0002625FE4: peptidase	0.0252381562
+UniRef50_UPI0002625FE4: peptidase|unclassified	0.0252381562
+UniRef50_O99255: Cytochrome c oxidase subunit 1	0.0252338912
+UniRef50_O99255: Cytochrome c oxidase subunit 1|unclassified	0.0252338912
+UniRef50_W7ZHH2: Cell wall-associated protein	0.0252327154
+UniRef50_W7ZHH2: Cell wall-associated protein|unclassified	0.0252327154
+UniRef50_UPI0004714E34: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase	0.0252300780
+UniRef50_UPI0004714E34: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|unclassified	0.0252300780
+UniRef50_U2ENE3: Periplasmic binding protein	0.0252283101
+UniRef50_U2ENE3: Periplasmic binding protein|unclassified	0.0252283101
+UniRef50_UPI00046677C0: dihydrolipoamide dehydrogenase	0.0252236439
+UniRef50_UPI00046677C0: dihydrolipoamide dehydrogenase|unclassified	0.0252236439
+UniRef50_Q08WY8	0.0252235762
+UniRef50_Q08WY8|unclassified	0.0252235762
+UniRef50_UPI00036B6882: hypothetical protein	0.0252206666
+UniRef50_UPI00036B6882: hypothetical protein|unclassified	0.0252206666
+UniRef50_T1GDE9	0.0252183002
+UniRef50_T1GDE9|unclassified	0.0252183002
+UniRef50_UPI00047E9040: DNA mismatch repair protein MutL	0.0252170359
+UniRef50_UPI00047E9040: DNA mismatch repair protein MutL|unclassified	0.0252170359
+UniRef50_UPI00036B01E6: hypothetical protein	0.0252158641
+UniRef50_UPI00036B01E6: hypothetical protein|unclassified	0.0252158641
+UniRef50_UPI00047B0C9F: DEAD/DEAH box helicase	0.0252136859
+UniRef50_UPI00047B0C9F: DEAD/DEAH box helicase|unclassified	0.0252136859
+UniRef50_UPI0002626B1F: RNA polymerase subunit sigma-54	0.0252114445
+UniRef50_UPI0002626B1F: RNA polymerase subunit sigma-54|unclassified	0.0252114445
+UniRef50_UPI0004786524: hypothetical protein	0.0252091089
+UniRef50_UPI0004786524: hypothetical protein|unclassified	0.0252091089
+UniRef50_UPI0002493434: DNA mismatch repair protein MutS	0.0252026032
+UniRef50_UPI0002493434: DNA mismatch repair protein MutS|unclassified	0.0252026032
+UniRef50_K8ZQK4: Membrane protein	0.0251987593
+UniRef50_K8ZQK4: Membrane protein|unclassified	0.0251987593
+UniRef50_R2PYA1	0.0251966332
+UniRef50_R2PYA1|unclassified	0.0251966332
+UniRef50_UPI00037EE083: hypothetical protein	0.0251931287
+UniRef50_UPI00037EE083: hypothetical protein|unclassified	0.0251931287
+UniRef50_UPI0002DCBBD5: chemotaxis protein	0.0251866477
+UniRef50_UPI0002DCBBD5: chemotaxis protein|unclassified	0.0251866477
+UniRef50_UPI000248D704: spore germination protein	0.0251845670
+UniRef50_UPI000248D704: spore germination protein|unclassified	0.0251845670
+UniRef50_Q9PC10: Bifunctional purine biosynthesis protein PurH	0.0251706709
+UniRef50_Q9PC10: Bifunctional purine biosynthesis protein PurH|unclassified	0.0251706709
+UniRef50_H3EWT8	0.0251706046
+UniRef50_H3EWT8|unclassified	0.0251706046
+UniRef50_G8PS78	0.0251686145
+UniRef50_G8PS78|unclassified	0.0251686145
+UniRef50_UPI0002630FF7: multi-sensor hybrid histidine kinase	0.0251673917
+UniRef50_UPI0002630FF7: multi-sensor hybrid histidine kinase|unclassified	0.0251673917
+UniRef50_C0CW90: Membrane protein	0.0251652038
+UniRef50_C0CW90: Membrane protein|unclassified	0.0251652038
+UniRef50_UPI0003B79E6B: arabinose ABC transporter permease	0.0251651935
+UniRef50_UPI0003B79E6B: arabinose ABC transporter permease|unclassified	0.0251651935
+UniRef50_UPI0003B3A510: MULTISPECIES: stage V sporulation protein D	0.0251644504
+UniRef50_UPI0003B3A510: MULTISPECIES: stage V sporulation protein D|unclassified	0.0251644504
+UniRef50_N6XTN1: PAS domain-containing protein/PAC sensor-containing diguanylate cyclase/phosphodiesterase	0.0251632461
+UniRef50_N6XTN1: PAS domain-containing protein/PAC sensor-containing diguanylate cyclase/phosphodiesterase|unclassified	0.0251632461
+UniRef50_UPI0003B79383: hypothetical protein	0.0251579057
+UniRef50_UPI0003B79383: hypothetical protein|unclassified	0.0251579057
+UniRef50_Q46507: NADP-reducing hydrogenase subunit HndC	0.0251523025
+UniRef50_Q46507: NADP-reducing hydrogenase subunit HndC|unclassified	0.0251523025
+UniRef50_UPI000474B71C: hypothetical protein	0.0251521593
+UniRef50_UPI000474B71C: hypothetical protein|unclassified	0.0251521593
+UniRef50_B2I5I8: Prophage antirepressor	0.0251509881
+UniRef50_B2I5I8: Prophage antirepressor|unclassified	0.0251509881
+UniRef50_P35136: D-3-phosphoglycerate dehydrogenase	0.0251508102
+UniRef50_P35136: D-3-phosphoglycerate dehydrogenase|unclassified	0.0251508102
+UniRef50_Q86X55-2: Isoform 2 of Histone-arginine methyltransferase CARM1	0.0251490129
+UniRef50_Q86X55-2: Isoform 2 of Histone-arginine methyltransferase CARM1|unclassified	0.0251490129
+UniRef50_UPI0004684670: DNA primase	0.0251400405
+UniRef50_UPI0004684670: DNA primase|unclassified	0.0251400405
+UniRef50_Q5FPT6: Bifunctional uridylyltransferase/uridylyl-removing enzyme	0.0251387996
+UniRef50_Q5FPT6: Bifunctional uridylyltransferase/uridylyl-removing enzyme|unclassified	0.0251387996
+UniRef50_UPI00037ED6DC: hypothetical protein	0.0251378544
+UniRef50_UPI00037ED6DC: hypothetical protein|unclassified	0.0251378544
+UniRef50_UPI00026541A2	0.0251371941
+UniRef50_UPI00026541A2|unclassified	0.0251371941
+UniRef50_H0JKI3: DNA polymerase II large subunit	0.0251285696
+UniRef50_H0JKI3: DNA polymerase II large subunit|unclassified	0.0251285696
+UniRef50_UPI0004665EA7: fusaric acid resistance protein	0.0251188455
+UniRef50_UPI0004665EA7: fusaric acid resistance protein|unclassified	0.0251188455
+UniRef50_Q7WLL0: Cysteine--tRNA ligase	0.0251172884
+UniRef50_Q7WLL0: Cysteine--tRNA ligase|unclassified	0.0251172884
+UniRef50_L0BKX0: Mucin 17-like protein	0.0251158998
+UniRef50_L0BKX0: Mucin 17-like protein|unclassified	0.0251158998
+UniRef50_A6WEM4	0.0251104088
+UniRef50_A6WEM4|unclassified	0.0251104088
+UniRef50_M9LJG3: Fumarase	0.0251037949
+UniRef50_M9LJG3: Fumarase|unclassified	0.0251037949
+UniRef50_O58228	0.0251036200
+UniRef50_O58228|unclassified	0.0251036200
+UniRef50_UPI000375D1DA: hypothetical protein	0.0251030590
+UniRef50_UPI000375D1DA: hypothetical protein|unclassified	0.0251030590
+UniRef50_UPI000347491F: hypothetical protein	0.0250993672
+UniRef50_UPI000347491F: hypothetical protein|unclassified	0.0250993672
+UniRef50_C1N2I9: Predicted protein	0.0250990920
+UniRef50_C1N2I9: Predicted protein|unclassified	0.0250990920
+UniRef50_Q5ZUH9: Lipid A export ATP-binding/permease protein MsbA	0.0250984015
+UniRef50_Q5ZUH9: Lipid A export ATP-binding/permease protein MsbA|unclassified	0.0250984015
+UniRef50_UPI0003755B2A: hypothetical protein	0.0250960779
+UniRef50_UPI0003755B2A: hypothetical protein|unclassified	0.0250960779
+UniRef50_UPI000473E35D: hypothetical protein	0.0250932810
+UniRef50_UPI000473E35D: hypothetical protein|unclassified	0.0250932810
+UniRef50_UPI0003B5BA49: aldehyde dehydrogenase	0.0250919530
+UniRef50_UPI0003B5BA49: aldehyde dehydrogenase|unclassified	0.0250919530
+UniRef50_R8GNE3	0.0250829393
+UniRef50_R8GNE3|unclassified	0.0250829393
+UniRef50_V5SK84	0.0250826338
+UniRef50_V5SK84|unclassified	0.0250826338
+UniRef50_D8FUA8	0.0250763136
+UniRef50_D8FUA8|unclassified	0.0250763136
+UniRef50_UPI0003B56684: cell division protein FtsK	0.0250684144
+UniRef50_UPI0003B56684: cell division protein FtsK|unclassified	0.0250684144
+UniRef50_UPI00036D7909: hypothetical protein	0.0250674096
+UniRef50_UPI00036D7909: hypothetical protein|unclassified	0.0250674096
+UniRef50_UPI0002558416: transcriptional activator of acetoin/glycerol metabolism	0.0250648148
+UniRef50_UPI0002558416: transcriptional activator of acetoin/glycerol metabolism|unclassified	0.0250648148
+UniRef50_W5WUM8	0.0250639668
+UniRef50_W5WUM8|unclassified	0.0250639668
+UniRef50_UPI00031740E3: hypothetical protein	0.0250589321
+UniRef50_UPI00031740E3: hypothetical protein|unclassified	0.0250589321
+UniRef50_F4F4R7: Bifunctional DNA primase/polymerase	0.0250576641
+UniRef50_F4F4R7: Bifunctional DNA primase/polymerase|unclassified	0.0250576641
+UniRef50_UPI0003AD1A5F: hypothetical protein	0.0250541640
+UniRef50_UPI0003AD1A5F: hypothetical protein|unclassified	0.0250541640
+UniRef50_A0A024KHY8: Predicted cobalt transporter CbtA	0.0250537431
+UniRef50_A0A024KHY8: Predicted cobalt transporter CbtA|unclassified	0.0250537431
+UniRef50_UPI0003B6D51E: DNA topoisomerase I	0.0250522105
+UniRef50_UPI0003B6D51E: DNA topoisomerase I|unclassified	0.0250522105
+UniRef50_UPI00037A83CF: hypothetical protein	0.0250511469
+UniRef50_UPI00037A83CF: hypothetical protein|unclassified	0.0250511469
+UniRef50_Q985R7: Mlr7559 protein	0.0250509030
+UniRef50_Q985R7: Mlr7559 protein|unclassified	0.0250509030
+UniRef50_W8EXQ8	0.0250461498
+UniRef50_W8EXQ8|unclassified	0.0250461498
+UniRef50_B3R663: Probable cytosol aminopeptidase	0.0250439172
+UniRef50_B3R663: Probable cytosol aminopeptidase|unclassified	0.0250439172
+UniRef50_A0L9X4	0.0250424842
+UniRef50_A0L9X4|unclassified	0.0250424842
+UniRef50_Q4PG90	0.0250398648
+UniRef50_Q4PG90|unclassified	0.0250398648
+UniRef50_UPI0003B60CB5: hypothetical protein	0.0250335823
+UniRef50_UPI0003B60CB5: hypothetical protein|unclassified	0.0250335823
+UniRef50_F6CMW5	0.0250269258
+UniRef50_F6CMW5|unclassified	0.0250269258
+UniRef50_UPI0004746F4C: anthranilate synthase	0.0250256835
+UniRef50_UPI0004746F4C: anthranilate synthase|unclassified	0.0250256835
+UniRef50_M9RK45	0.0250255425
+UniRef50_M9RK45|unclassified	0.0250255425
+UniRef50_A0A023K6R2: Hydrogenase 2 protein HybA	0.0250239928
+UniRef50_A0A023K6R2: Hydrogenase 2 protein HybA|unclassified	0.0250239928
+UniRef50_UPI000413978B: tRNA modification GTPase MnmE	0.0250239153
+UniRef50_UPI000413978B: tRNA modification GTPase MnmE|unclassified	0.0250239153
+UniRef50_UPI0002DD2C88: hypothetical protein	0.0250239036
+UniRef50_UPI0002DD2C88: hypothetical protein|unclassified	0.0250239036
+UniRef50_C1E688: Predicted protein	0.0250219848
+UniRef50_C1E688: Predicted protein|unclassified	0.0250219848
+UniRef50_UPI00045EB9A7: hypothetical protein	0.0250202093
+UniRef50_UPI00045EB9A7: hypothetical protein|unclassified	0.0250202093
+UniRef50_C3MDG2: OmpA family protein	0.0250201346
+UniRef50_C3MDG2: OmpA family protein|unclassified	0.0250201346
+UniRef50_D8UGH1	0.0250177714
+UniRef50_D8UGH1|unclassified	0.0250177714
+UniRef50_UPI000350AF0A: PREDICTED: immunoglobulin-like and fibronectin type III domain-containing protein 1	0.0250128772
+UniRef50_UPI000350AF0A: PREDICTED: immunoglobulin-like and fibronectin type III domain-containing protein 1|unclassified	0.0250128772
+UniRef50_A1TM83	0.0250097887
+UniRef50_A1TM83|unclassified	0.0250097887
+UniRef50_D8U3W9: Metalloproteinase, extracellular matrix glycoprotein VMP7	0.0250009266
+UniRef50_D8U3W9: Metalloproteinase, extracellular matrix glycoprotein VMP7|unclassified	0.0250009266
+UniRef50_H8GHG6	0.0250008238
+UniRef50_H8GHG6|unclassified	0.0250008238
+UniRef50_C7R6B9	0.0249979046
+UniRef50_C7R6B9|unclassified	0.0249979046
+UniRef50_UPI00047C644A: hypothetical protein	0.0249963131
+UniRef50_UPI00047C644A: hypothetical protein|unclassified	0.0249963131
+UniRef50_W5X9X7: Transcriptional regulator, LacI family	0.0249934712
+UniRef50_W5X9X7: Transcriptional regulator, LacI family|unclassified	0.0249934712
+UniRef50_UPI000476D71A: hypothetical protein	0.0249919920
+UniRef50_UPI000476D71A: hypothetical protein|unclassified	0.0249919920
+UniRef50_UPI00047265F4: hypothetical protein	0.0249883674
+UniRef50_UPI00047265F4: hypothetical protein|unclassified	0.0249883674
+UniRef50_UPI0004292D63: hypothetical protein	0.0249826349
+UniRef50_UPI0004292D63: hypothetical protein|unclassified	0.0249826349
+UniRef50_Q4UV65: Lipid A export ATP-binding/permease protein MsbA	0.0249772879
+UniRef50_Q4UV65: Lipid A export ATP-binding/permease protein MsbA|unclassified	0.0249772879
+UniRef50_UPI0001746B17: inorganic polyphosphate/ATP-NAD kinase	0.0249734325
+UniRef50_UPI0001746B17: inorganic polyphosphate/ATP-NAD kinase|unclassified	0.0249734325
+UniRef50_UPI00036F3D8D: hypothetical protein	0.0249668835
+UniRef50_UPI00036F3D8D: hypothetical protein|unclassified	0.0249668835
+UniRef50_UPI00036D27AE: hypothetical protein	0.0249658436
+UniRef50_UPI00036D27AE: hypothetical protein|unclassified	0.0249658436
+UniRef50_Q9FFT4: Pyruvate decarboxylase 2	0.0249620369
+UniRef50_Q9FFT4: Pyruvate decarboxylase 2|unclassified	0.0249620369
+UniRef50_B2KBB9: Aspartate--tRNA(Asp/Asn) ligase	0.0249586994
+UniRef50_B2KBB9: Aspartate--tRNA(Asp/Asn) ligase|unclassified	0.0249586994
+UniRef50_UPI00047A8C3F: hypothetical protein	0.0249544694
+UniRef50_UPI00047A8C3F: hypothetical protein|unclassified	0.0249544694
+UniRef50_UPI0003683526: hypothetical protein	0.0249542381
+UniRef50_UPI0003683526: hypothetical protein|unclassified	0.0249542381
+UniRef50_Q3JR20	0.0249495123
+UniRef50_Q3JR20|unclassified	0.0249495123
+UniRef50_UPI0003B4EA94: DNA primase	0.0249450376
+UniRef50_UPI0003B4EA94: DNA primase|unclassified	0.0249450376
+UniRef50_A1B8B0	0.0249359778
+UniRef50_A1B8B0|unclassified	0.0249359778
+UniRef50_UPI00046AEE41: DNA primase	0.0249289880
+UniRef50_UPI00046AEE41: DNA primase|unclassified	0.0249289880
+UniRef50_UPI000468C466: hypothetical protein	0.0249284172
+UniRef50_UPI000468C466: hypothetical protein|unclassified	0.0249284172
+UniRef50_UPI00037F371E: hypothetical protein	0.0249253411
+UniRef50_UPI00037F371E: hypothetical protein|unclassified	0.0249253411
+UniRef50_UPI0004162C96: histidine ammonia-lyase	0.0249241226
+UniRef50_UPI0004162C96: histidine ammonia-lyase|unclassified	0.0249241226
+UniRef50_UPI000378226F: hypothetical protein	0.0249224869
+UniRef50_UPI000378226F: hypothetical protein|unclassified	0.0249224869
+UniRef50_F7F1K1	0.0249113629
+UniRef50_F7F1K1|unclassified	0.0249113629
+UniRef50_UPI00039C5902: RNA polymerase sigma-70 factor	0.0249101440
+UniRef50_UPI00039C5902: RNA polymerase sigma-70 factor|unclassified	0.0249101440
+UniRef50_M3JI11	0.0249062180
+UniRef50_M3JI11|unclassified	0.0249062180
+UniRef50_UPI00029AEE1E: hydrogenase 4 Fe-S subunit	0.0249037084
+UniRef50_UPI00029AEE1E: hydrogenase 4 Fe-S subunit|unclassified	0.0249037084
+UniRef50_D1A2T5: Transcriptional regulator-like protein	0.0249027004
+UniRef50_D1A2T5: Transcriptional regulator-like protein|unclassified	0.0249027004
+UniRef50_O94788: Retinal dehydrogenase 2	0.0249007398
+UniRef50_O94788: Retinal dehydrogenase 2|unclassified	0.0249007398
+UniRef50_UPI0003B78806: dihydrolipoamide dehydrogenase	0.0248937165
+UniRef50_UPI0003B78806: dihydrolipoamide dehydrogenase|unclassified	0.0248937165
+UniRef50_A1WTE5	0.0248918401
+UniRef50_A1WTE5|unclassified	0.0248918401
+UniRef50_UPI0002491322: serine/threonine protein kinase	0.0248906761
+UniRef50_UPI0002491322: serine/threonine protein kinase|unclassified	0.0248906761
+UniRef50_C6XPM3	0.0248885067
+UniRef50_C6XPM3|unclassified	0.0248885067
+UniRef50_F4GMN5: TrwC	0.0248796556
+UniRef50_F4GMN5: TrwC|unclassified	0.0248796556
+UniRef50_UPI00036BAC4E: hypothetical protein	0.0248761948
+UniRef50_UPI00036BAC4E: hypothetical protein|unclassified	0.0248761948
+UniRef50_UPI000362223C: lytic transglycosylase	0.0248757333
+UniRef50_UPI000362223C: lytic transglycosylase|unclassified	0.0248757333
+UniRef50_UPI0003615436: hypothetical protein	0.0248743177
+UniRef50_UPI0003615436: hypothetical protein|unclassified	0.0248743177
+UniRef50_UPI0004416D75: RF-1-domain-containing protein	0.0248722879
+UniRef50_UPI0004416D75: RF-1-domain-containing protein|unclassified	0.0248722879
+UniRef50_J3Q7J9	0.0248692146
+UniRef50_J3Q7J9|unclassified	0.0248692146
+UniRef50_UPI0004156AD6: mannonate dehydratase	0.0248687379
+UniRef50_UPI0004156AD6: mannonate dehydratase|unclassified	0.0248687379
+UniRef50_V5CEW5	0.0248686426
+UniRef50_V5CEW5|unclassified	0.0248686426
+UniRef50_UPI00040B6C97: hypothetical protein	0.0248673866
+UniRef50_UPI00040B6C97: hypothetical protein|unclassified	0.0248673866
+UniRef50_UPI0002558C10: AsmA family protein	0.0248642812
+UniRef50_UPI0002558C10: AsmA family protein|unclassified	0.0248642812
+UniRef50_UPI0002E43F5D: hypothetical protein	0.0248641688
+UniRef50_UPI0002E43F5D: hypothetical protein|unclassified	0.0248641688
+UniRef50_UPI00035F0280: hypothetical protein	0.0248631428
+UniRef50_UPI00035F0280: hypothetical protein|unclassified	0.0248631428
+UniRef50_Q8KUD0: EF0012	0.0248623472
+UniRef50_Q8KUD0: EF0012|unclassified	0.0248623472
+UniRef50_UPI0003B39091: histidine kinase	0.0248498950
+UniRef50_UPI0003B39091: histidine kinase|unclassified	0.0248498950
+UniRef50_G8T537: Transposase IS66	0.0248475091
+UniRef50_G8T537: Transposase IS66|unclassified	0.0248475091
+UniRef50_UPI0003460EC4: hypothetical protein	0.0248468165
+UniRef50_UPI0003460EC4: hypothetical protein|unclassified	0.0248468165
+UniRef50_UPI0003453247: hypothetical protein	0.0248464614
+UniRef50_UPI0003453247: hypothetical protein|unclassified	0.0248464614
+UniRef50_UPI000366DF96: hypothetical protein	0.0248410176
+UniRef50_UPI000366DF96: hypothetical protein|unclassified	0.0248410176
+UniRef50_UPI00029A9B32: ATP-dependent helicase/nuclease subunit A (ATP-dependent helicase/nuclease addA)	0.0248377093
+UniRef50_UPI00029A9B32: ATP-dependent helicase/nuclease subunit A (ATP-dependent helicase/nuclease addA)|unclassified	0.0248377093
+UniRef50_Q2CDJ9	0.0248263544
+UniRef50_Q2CDJ9|unclassified	0.0248263544
+UniRef50_S3ZTZ3	0.0248240955
+UniRef50_S3ZTZ3|unclassified	0.0248240955
+UniRef50_Q9NJP9: Glycerol kinase, glycosomal	0.0248206849
+UniRef50_Q9NJP9: Glycerol kinase, glycosomal|unclassified	0.0248206849
+UniRef50_F4A681	0.0248195762
+UniRef50_F4A681|unclassified	0.0248195762
+UniRef50_UPI000262CFA5: LOG family protein	0.0248129910
+UniRef50_UPI000262CFA5: LOG family protein|unclassified	0.0248129910
+UniRef50_UPI000478F0A8: ABC transporter permease	0.0248104557
+UniRef50_UPI000478F0A8: ABC transporter permease|unclassified	0.0248104557
+UniRef50_UPI00039CF033: preprotein translocase subunit SecD	0.0248079258
+UniRef50_UPI00039CF033: preprotein translocase subunit SecD|unclassified	0.0248079258
+UniRef50_I0Z518	0.0248067400
+UniRef50_I0Z518|unclassified	0.0248067400
+UniRef50_UPI0003B66BEF: hypothetical protein	0.0248066892
+UniRef50_UPI0003B66BEF: hypothetical protein|unclassified	0.0248066892
+UniRef50_UPI00036D062D: hypothetical protein	0.0248002893
+UniRef50_UPI00036D062D: hypothetical protein|unclassified	0.0248002893
+UniRef50_Q3ZAD5: Cysteine--tRNA ligase	0.0248001949
+UniRef50_Q3ZAD5: Cysteine--tRNA ligase|unclassified	0.0248001949
+UniRef50_F4GQP5: Transposase TnpC protein	0.0247989006
+UniRef50_F4GQP5: Transposase TnpC protein|unclassified	0.0247989006
+UniRef50_UPI000462DF28: MFS transporter	0.0247986026
+UniRef50_UPI000462DF28: MFS transporter|unclassified	0.0247986026
+UniRef50_UPI0003A6C4A8: phosphohydrolase	0.0247971956
+UniRef50_UPI0003A6C4A8: phosphohydrolase|unclassified	0.0247971956
+UniRef50_D2NRU1: Archaeal DNA polymerase II, large subunit	0.0247959549
+UniRef50_D2NRU1: Archaeal DNA polymerase II, large subunit|unclassified	0.0247959549
+UniRef50_A4BFW6	0.0247915841
+UniRef50_A4BFW6|unclassified	0.0247915841
+UniRef50_Q8GRC3: Alpha,alpha-trehalose phosphorylase	0.0247884871
+UniRef50_Q8GRC3: Alpha,alpha-trehalose phosphorylase|unclassified	0.0247884871
+UniRef50_D9SZV9: PKD domain containing protein	0.0247847294
+UniRef50_D9SZV9: PKD domain containing protein|unclassified	0.0247847294
+UniRef50_W0RQ97	0.0247815589
+UniRef50_W0RQ97|unclassified	0.0247815589
+UniRef50_W6VX01: Lytic transglycosylase catalytic	0.0247796870
+UniRef50_W6VX01: Lytic transglycosylase catalytic|unclassified	0.0247796870
+UniRef50_UPI0004449C2E: hypothetical protein STEHIDRAFT_141569	0.0247724538
+UniRef50_UPI0004449C2E: hypothetical protein STEHIDRAFT_141569|unclassified	0.0247724538
+UniRef50_UPI00029AB486: serine/threonine kinase	0.0247589887
+UniRef50_UPI00029AB486: serine/threonine kinase|unclassified	0.0247589887
+UniRef50_G4CLR1: RTX toxin protein (Fragment)	0.0247581503
+UniRef50_G4CLR1: RTX toxin protein (Fragment)|unclassified	0.0247581503
+UniRef50_UPI0003737571: hypothetical protein	0.0247579201
+UniRef50_UPI0003737571: hypothetical protein|unclassified	0.0247579201
+UniRef50_C8WJH0: NLP/P60 protein	0.0247527838
+UniRef50_C8WJH0: NLP/P60 protein|unclassified	0.0247527838
+UniRef50_K4INP6: CRISPR-associated helicase Cas3	0.0247511274
+UniRef50_K4INP6: CRISPR-associated helicase Cas3|unclassified	0.0247511274
+UniRef50_UPI00034FCB3B: PREDICTED: acetylcholinesterase collagenic tail peptide-like	0.0247476560
+UniRef50_UPI00034FCB3B: PREDICTED: acetylcholinesterase collagenic tail peptide-like|unclassified	0.0247476560
+UniRef50_L8H1I9: Alkylated DNA repair protein AlkB	0.0247212818
+UniRef50_L8H1I9: Alkylated DNA repair protein AlkB|unclassified	0.0247212818
+UniRef50_X1Y7H5	0.0247192916
+UniRef50_X1Y7H5|unclassified	0.0247192916
+UniRef50_UPI00037411AF: hypothetical protein	0.0247167437
+UniRef50_UPI00037411AF: hypothetical protein|unclassified	0.0247167437
+UniRef50_K0T3G0	0.0247163127
+UniRef50_K0T3G0|unclassified	0.0247163127
+UniRef50_UPI000369B201: NADH:ubiquinone oxidoreductase subunit L	0.0247158052
+UniRef50_UPI000369B201: NADH:ubiquinone oxidoreductase subunit L|unclassified	0.0247158052
+UniRef50_Q55G46	0.0247135027
+UniRef50_Q55G46|unclassified	0.0247135027
+UniRef50_UPI000369D321: hypothetical protein	0.0247123742
+UniRef50_UPI000369D321: hypothetical protein|unclassified	0.0247123742
+UniRef50_UPI0002E4DF67: hypothetical protein	0.0246995471
+UniRef50_UPI0002E4DF67: hypothetical protein|unclassified	0.0246995471
+UniRef50_UPI00046F222C: ATP-dependent DNA helicase	0.0246902959
+UniRef50_UPI00046F222C: ATP-dependent DNA helicase|unclassified	0.0246902959
+UniRef50_UPI00036ECB69: hypothetical protein	0.0246843392
+UniRef50_UPI00036ECB69: hypothetical protein|unclassified	0.0246843392
+UniRef50_D5BSA6	0.0246804235
+UniRef50_D5BSA6|unclassified	0.0246804235
+UniRef50_O14092: 5-aminolevulinate synthase, mitochondrial	0.0246792101
+UniRef50_O14092: 5-aminolevulinate synthase, mitochondrial|unclassified	0.0246792101
+UniRef50_UPI00036BF684: hypothetical protein	0.0246779757
+UniRef50_UPI00036BF684: hypothetical protein|unclassified	0.0246779757
+UniRef50_UPI00035CAB6D: hypothetical protein	0.0246774774
+UniRef50_UPI00035CAB6D: hypothetical protein|unclassified	0.0246774774
+UniRef50_E9PPK1: Trehalase	0.0246761053
+UniRef50_E9PPK1: Trehalase|unclassified	0.0246761053
+UniRef50_Q2S1Q5: DNA-directed RNA polymerase subunit beta	0.0246698086
+UniRef50_Q2S1Q5: DNA-directed RNA polymerase subunit beta|unclassified	0.0246698086
+UniRef50_UPI00034C11D4: hypothetical protein	0.0246673015
+UniRef50_UPI00034C11D4: hypothetical protein|unclassified	0.0246673015
+UniRef50_P52480: Pyruvate kinase PKM	0.0246654497
+UniRef50_P52480: Pyruvate kinase PKM|unclassified	0.0246654497
+UniRef50_A9U6J3: Predicted protein	0.0246643747
+UniRef50_A9U6J3: Predicted protein|unclassified	0.0246643747
+UniRef50_UPI00036A4579: hypothetical protein	0.0246633761
+UniRef50_UPI00036A4579: hypothetical protein|unclassified	0.0246633761
+UniRef50_UPI00047DED3A: hypothetical protein	0.0246609368
+UniRef50_UPI00047DED3A: hypothetical protein|unclassified	0.0246609368
+UniRef50_D2S998	0.0246592132
+UniRef50_D2S998|unclassified	0.0246592132
+UniRef50_A3PBD7: Probable malate:quinone oxidoreductase	0.0246586347
+UniRef50_A3PBD7: Probable malate:quinone oxidoreductase|unclassified	0.0246586347
+UniRef50_UPI0003299C31: PREDICTED: mucin-19-like	0.0246584272
+UniRef50_UPI0003299C31: PREDICTED: mucin-19-like|unclassified	0.0246584272
+UniRef50_V7Q883	0.0246578789
+UniRef50_V7Q883|unclassified	0.0246578789
+UniRef50_UPI00042B847E: Methylmalonate-semialdehyde dehydrogenase	0.0246551856
+UniRef50_UPI00042B847E: Methylmalonate-semialdehyde dehydrogenase|unclassified	0.0246551856
+UniRef50_UPI000465D624: indole-3-pyruvate decarboxylase	0.0246477535
+UniRef50_UPI000465D624: indole-3-pyruvate decarboxylase|unclassified	0.0246477535
+UniRef50_Q5X5L8: Leucine--tRNA ligase	0.0246445495
+UniRef50_Q5X5L8: Leucine--tRNA ligase|unclassified	0.0246445495
+UniRef50_J3CUS0	0.0246414376
+UniRef50_J3CUS0|unclassified	0.0246414376
+UniRef50_Q3ZXC2: 1-deoxy-D-xylulose-5-phosphate synthase	0.0246351288
+UniRef50_Q3ZXC2: 1-deoxy-D-xylulose-5-phosphate synthase|unclassified	0.0246351288
+UniRef50_R5IMI1	0.0246343233
+UniRef50_R5IMI1|unclassified	0.0246343233
+UniRef50_UPI00035114FD: PREDICTED: midasin	0.0246328195
+UniRef50_UPI00035114FD: PREDICTED: midasin|unclassified	0.0246328195
+UniRef50_Q9KQF5: DNA topoisomerase 3	0.0246270248
+UniRef50_Q9KQF5: DNA topoisomerase 3|unclassified	0.0246270248
+UniRef50_UPI0004786135: hypothetical protein	0.0246264205
+UniRef50_UPI0004786135: hypothetical protein|unclassified	0.0246264205
+UniRef50_UPI0003955A20: PREDICTED: LOW QUALITY PROTEIN: collagen alpha-1(II) chain, partial	0.0246195621
+UniRef50_UPI0003955A20: PREDICTED: LOW QUALITY PROTEIN: collagen alpha-1(II) chain, partial|unclassified	0.0246195621
+UniRef50_Q9VQX4: Nicotinate phosphoribosyltransferase	0.0246180179
+UniRef50_Q9VQX4: Nicotinate phosphoribosyltransferase|unclassified	0.0246180179
+UniRef50_Q94IB8: Long chain base biosynthesis protein 1	0.0246156361
+UniRef50_Q94IB8: Long chain base biosynthesis protein 1|unclassified	0.0246156361
+UniRef50_UPI00041D1DA8: hypothetical protein	0.0246124940
+UniRef50_UPI00041D1DA8: hypothetical protein|unclassified	0.0246124940
+UniRef50_UPI0003B2FB0B: hypothetical protein	0.0246117217
+UniRef50_UPI0003B2FB0B: hypothetical protein|unclassified	0.0246117217
+UniRef50_J0CT56	0.0246046004
+UniRef50_J0CT56|unclassified	0.0246046004
+UniRef50_H3EXP1	0.0246003269
+UniRef50_H3EXP1|unclassified	0.0246003269
+UniRef50_UPI000360CFBA: hypothetical protein	0.0245957801
+UniRef50_UPI000360CFBA: hypothetical protein|unclassified	0.0245957801
+UniRef50_Q8D2Z7: UDP-N-acetylmuramate--L-alanine ligase	0.0245937764
+UniRef50_Q8D2Z7: UDP-N-acetylmuramate--L-alanine ligase|unclassified	0.0245937764
+UniRef50_UPI00038072CD: hypothetical protein	0.0245890976
+UniRef50_UPI00038072CD: hypothetical protein|unclassified	0.0245890976
+UniRef50_UPI0003B5D77D: LytR family transcriptional regulator	0.0245867127
+UniRef50_UPI0003B5D77D: LytR family transcriptional regulator|unclassified	0.0245867127
+UniRef50_M4AED6	0.0245861469
+UniRef50_M4AED6|unclassified	0.0245861469
+UniRef50_Q6NUN0: Acyl-coenzyme A synthetase ACSM5, mitochondrial	0.0245859981
+UniRef50_Q6NUN0: Acyl-coenzyme A synthetase ACSM5, mitochondrial|unclassified	0.0245859981
+UniRef50_UPI00046896FC: flagellar motor protein	0.0245819098
+UniRef50_UPI00046896FC: flagellar motor protein|unclassified	0.0245819098
+UniRef50_UPI000414AF4E: serine/threonine protein kinase	0.0245792287
+UniRef50_UPI000414AF4E: serine/threonine protein kinase|unclassified	0.0245792287
+UniRef50_UPI000365E429: hypothetical protein	0.0245766588
+UniRef50_UPI000365E429: hypothetical protein|unclassified	0.0245766588
+UniRef50_UPI0003B5A314: multidrug ABC transporter ATP-binding protein	0.0245764969
+UniRef50_UPI0003B5A314: multidrug ABC transporter ATP-binding protein|unclassified	0.0245764969
+UniRef50_Q8NQH1: Thiamine biosynthesis multifunctional protein ThiED	0.0245737470
+UniRef50_Q8NQH1: Thiamine biosynthesis multifunctional protein ThiED|unclassified	0.0245737470
+UniRef50_UPI00034FAA06: PREDICTED: protein crumbs-like	0.0245702016
+UniRef50_UPI00034FAA06: PREDICTED: protein crumbs-like|unclassified	0.0245702016
+UniRef50_UPI00046C9F03: hypothetical protein	0.0245681291
+UniRef50_UPI00046C9F03: hypothetical protein|unclassified	0.0245681291
+UniRef50_UPI00047E6581: hypothetical protein	0.0245633783
+UniRef50_UPI00047E6581: hypothetical protein|unclassified	0.0245633783
+UniRef50_F0FF01	0.0245618940
+UniRef50_F0FF01|unclassified	0.0245618940
+UniRef50_UPI000362D41D: hypothetical protein	0.0245593870
+UniRef50_UPI000362D41D: hypothetical protein|unclassified	0.0245593870
+UniRef50_Q8L164: Alpha,alpha-trehalose phosphorylase	0.0245561358
+UniRef50_Q8L164: Alpha,alpha-trehalose phosphorylase|unclassified	0.0245561358
+UniRef50_B4SRU8: Filamentous haemagglutinin family outer membrane protein	0.0245548158
+UniRef50_B4SRU8: Filamentous haemagglutinin family outer membrane protein|unclassified	0.0245548158
+UniRef50_UPI0002B4434D	0.0245524672
+UniRef50_UPI0002B4434D|unclassified	0.0245524672
+UniRef50_UPI00046F5BAE: hypothetical protein, partial	0.0245515928
+UniRef50_UPI00046F5BAE: hypothetical protein, partial|unclassified	0.0245515928
+UniRef50_B2UBQ0: Ferrochelatase	0.0245511157
+UniRef50_B2UBQ0: Ferrochelatase|unclassified	0.0245511157
+UniRef50_UPI0002195C83: cell surface protein	0.0245496706
+UniRef50_UPI0002195C83: cell surface protein|unclassified	0.0245496706
+UniRef50_UPI00047772C1: hypothetical protein	0.0245489141
+UniRef50_UPI00047772C1: hypothetical protein|unclassified	0.0245489141
+UniRef50_F0Y919	0.0245369875
+UniRef50_F0Y919|unclassified	0.0245369875
+UniRef50_UPI00044391F6: PREDICTED: vegetative cell wall protein gp1-like, partial	0.0245225192
+UniRef50_UPI00044391F6: PREDICTED: vegetative cell wall protein gp1-like, partial|unclassified	0.0245225192
+UniRef50_Q9A757: Anhydro-N-acetylmuramic acid kinase	0.0245223103
+UniRef50_Q9A757: Anhydro-N-acetylmuramic acid kinase|unclassified	0.0245223103
+UniRef50_UPI0003FC1CC9: DNA mismatch repair protein MutS	0.0245141117
+UniRef50_UPI0003FC1CC9: DNA mismatch repair protein MutS|unclassified	0.0245141117
+UniRef50_UPI0002626EC0: dehydrogenase/oxidase	0.0245066305
+UniRef50_UPI0002626EC0: dehydrogenase/oxidase|unclassified	0.0245066305
+UniRef50_C5CA60: Arginine--tRNA ligase	0.0244999448
+UniRef50_C5CA60: Arginine--tRNA ligase|unclassified	0.0244999448
+UniRef50_UPI00037A36F8: hypothetical protein	0.0244990871
+UniRef50_UPI00037A36F8: hypothetical protein|unclassified	0.0244990871
+UniRef50_O86422: UDP-glucose 6-dehydrogenase	0.0244954890
+UniRef50_O86422: UDP-glucose 6-dehydrogenase|unclassified	0.0244954890
+UniRef50_UPI0003B572B0: polysaccharide biosynthesis protein CapD	0.0244949913
+UniRef50_UPI0003B572B0: polysaccharide biosynthesis protein CapD|unclassified	0.0244949913
+UniRef50_L0AZR4	0.0244924533
+UniRef50_L0AZR4|unclassified	0.0244924533
+UniRef50_UPI0003F491E6: hypothetical protein TREMEDRAFT_31426	0.0244894988
+UniRef50_UPI0003F491E6: hypothetical protein TREMEDRAFT_31426|unclassified	0.0244894988
+UniRef50_UPI00036B9DAF: hypothetical protein	0.0244840959
+UniRef50_UPI00036B9DAF: hypothetical protein|unclassified	0.0244840959
+UniRef50_UPI00035C93F1: hypothetical protein	0.0244731246
+UniRef50_UPI00035C93F1: hypothetical protein|unclassified	0.0244731246
+UniRef50_J3QFH4	0.0244726268
+UniRef50_J3QFH4|unclassified	0.0244726268
+UniRef50_Q09580: Probable GMP synthase [glutamine-hydrolyzing]	0.0244668248
+UniRef50_Q09580: Probable GMP synthase [glutamine-hydrolyzing]|unclassified	0.0244668248
+UniRef50_UPI00030C26AA: hypothetical protein	0.0244661471
+UniRef50_UPI00030C26AA: hypothetical protein|unclassified	0.0244661471
+UniRef50_X1XX47	0.0244578132
+UniRef50_X1XX47|unclassified	0.0244578132
+UniRef50_W0J671: Cobalamin biosynthesis protein P47K	0.0244577591
+UniRef50_W0J671: Cobalamin biosynthesis protein P47K|unclassified	0.0244577591
+UniRef50_X6IU26	0.0244558559
+UniRef50_X6IU26|unclassified	0.0244558559
+UniRef50_L8GA92	0.0244449783
+UniRef50_L8GA92|unclassified	0.0244449783
+UniRef50_B8CVY1: 1,4-alpha-glucan branching enzyme GlgB	0.0244438066
+UniRef50_B8CVY1: 1,4-alpha-glucan branching enzyme GlgB|unclassified	0.0244438066
+UniRef50_UPI00017465EA: acetylornithine aminotransferase	0.0244347238
+UniRef50_UPI00017465EA: acetylornithine aminotransferase|unclassified	0.0244347238
+UniRef50_UPI00047B5B61: membrane protein	0.0244286932
+UniRef50_UPI00047B5B61: membrane protein|unclassified	0.0244286932
+UniRef50_J9NVP4	0.0244260362
+UniRef50_J9NVP4|unclassified	0.0244260362
+UniRef50_D7A9X5: Rhodanese domain protein	0.0244158985
+UniRef50_D7A9X5: Rhodanese domain protein|unclassified	0.0244158985
+UniRef50_I4BYQ4	0.0244142775
+UniRef50_I4BYQ4|unclassified	0.0244142775
+UniRef50_UPI00047B9E50: hypothetical protein	0.0244125825
+UniRef50_UPI00047B9E50: hypothetical protein|unclassified	0.0244125825
+UniRef50_Q8REV6: Bifunctional purine biosynthesis protein PurH	0.0244072096
+UniRef50_Q8REV6: Bifunctional purine biosynthesis protein PurH|unclassified	0.0244072096
+UniRef50_A4IU06: Nickase TraA	0.0244069651
+UniRef50_A4IU06: Nickase TraA|unclassified	0.0244069651
+UniRef50_S7TRK7	0.0244047714
+UniRef50_S7TRK7|unclassified	0.0244047714
+UniRef50_F1Z852: Beta-lactamase induction signal transducer	0.0244045121
+UniRef50_F1Z852: Beta-lactamase induction signal transducer|unclassified	0.0244045121
+UniRef50_UPI0003B5CC4A: serine/threonine protein kinase	0.0244018712
+UniRef50_UPI0003B5CC4A: serine/threonine protein kinase|unclassified	0.0244018712
+UniRef50_U6HPQ3: Thymidine phosphorylase	0.0243989807
+UniRef50_U6HPQ3: Thymidine phosphorylase|unclassified	0.0243989807
+UniRef50_F2U6L8: SAM domain and HD domain-containing protein 1	0.0243978482
+UniRef50_F2U6L8: SAM domain and HD domain-containing protein 1|unclassified	0.0243978482
+UniRef50_UPI00036DB1D7: hypothetical protein	0.0243896912
+UniRef50_UPI00036DB1D7: hypothetical protein|unclassified	0.0243896912
+UniRef50_UPI0004223D95: hypothetical protein	0.0243879167
+UniRef50_UPI0004223D95: hypothetical protein|unclassified	0.0243879167
+UniRef50_Q34313: NADH-ubiquinone oxidoreductase chain 5	0.0243830365
+UniRef50_Q34313: NADH-ubiquinone oxidoreductase chain 5|unclassified	0.0243830365
+UniRef50_A1S759	0.0243819876
+UniRef50_A1S759|unclassified	0.0243819876
+UniRef50_D2NNT4	0.0243797680
+UniRef50_D2NNT4|unclassified	0.0243797680
+UniRef50_UPI000317C610: glycerol kinase	0.0243788977
+UniRef50_UPI000317C610: glycerol kinase|unclassified	0.0243788977
+UniRef50_UPI00036FB7AE: hypothetical protein	0.0243772706
+UniRef50_UPI00036FB7AE: hypothetical protein|unclassified	0.0243772706
+UniRef50_N0C3A0	0.0243739042
+UniRef50_N0C3A0|unclassified	0.0243739042
+UniRef50_UPI000300CA22: ABC transporter substrate-binding protein	0.0243737302
+UniRef50_UPI000300CA22: ABC transporter substrate-binding protein|unclassified	0.0243737302
+UniRef50_UPI00034DD06F: hypothetical protein	0.0243724908
+UniRef50_UPI00034DD06F: hypothetical protein|unclassified	0.0243724908
+UniRef50_A3QHJ6: Ppx/GppA phosphatase	0.0243721369
+UniRef50_A3QHJ6: Ppx/GppA phosphatase|unclassified	0.0243721369
+UniRef50_Q7VAS6: Cytosine deaminase	0.0243671365
+UniRef50_Q7VAS6: Cytosine deaminase|unclassified	0.0243671365
+UniRef50_Q2KX38: Cysteine--tRNA ligase	0.0243641379
+UniRef50_Q2KX38: Cysteine--tRNA ligase|unclassified	0.0243641379
+UniRef50_O31616: Glycine oxidase	0.0243546530
+UniRef50_O31616: Glycine oxidase|unclassified	0.0243546530
+UniRef50_UPI000372A981: hypothetical protein	0.0243537719
+UniRef50_UPI000372A981: hypothetical protein|unclassified	0.0243537719
+UniRef50_UPI0003C86011	0.0243502409
+UniRef50_UPI0003C86011|unclassified	0.0243502409
+UniRef50_E3A4C5	0.0243447329
+UniRef50_E3A4C5|unclassified	0.0243447329
+UniRef50_UPI0004204F60: cytochrome P450	0.0243432156
+UniRef50_UPI0004204F60: cytochrome P450|unclassified	0.0243432156
+UniRef50_UPI0004775134: cysteine ABC transporter permease	0.0243428138
+UniRef50_UPI0004775134: cysteine ABC transporter permease|unclassified	0.0243428138
+UniRef50_UPI000366A264: hypothetical protein	0.0243348006
+UniRef50_UPI000366A264: hypothetical protein|unclassified	0.0243348006
+UniRef50_UPI0000D55548: PREDICTED: similar to glutamate dehydrogenase	0.0243341023
+UniRef50_UPI0000D55548: PREDICTED: similar to glutamate dehydrogenase|unclassified	0.0243341023
+UniRef50_A7GJS9: Glutamine amidotransferase subunit PdxT	0.0243307289
+UniRef50_A7GJS9: Glutamine amidotransferase subunit PdxT|unclassified	0.0243307289
+UniRef50_B3DX01: Aspartate--tRNA(Asp/Asn) ligase	0.0243141317
+UniRef50_B3DX01: Aspartate--tRNA(Asp/Asn) ligase|unclassified	0.0243141317
+UniRef50_E4N6E5	0.0243100834
+UniRef50_E4N6E5|unclassified	0.0243100834
+UniRef50_B8IZD1: Proline--tRNA ligase	0.0243068829
+UniRef50_B8IZD1: Proline--tRNA ligase|unclassified	0.0243068829
+UniRef50_UPI000316568D: hypothetical protein	0.0243057899
+UniRef50_UPI000316568D: hypothetical protein|unclassified	0.0243057899
+UniRef50_UPI00047B469E: hypothetical protein	0.0243015104
+UniRef50_UPI00047B469E: hypothetical protein|unclassified	0.0243015104
+UniRef50_Q89AM3: Adenylosuccinate lyase	0.0242961493
+UniRef50_Q89AM3: Adenylosuccinate lyase|unclassified	0.0242961493
+UniRef50_UPI00034C4747: hypothetical protein	0.0242945675
+UniRef50_UPI00034C4747: hypothetical protein|unclassified	0.0242945675
+UniRef50_I9A2F0: Flavin-dependent dehydrogenase	0.0242893639
+UniRef50_I9A2F0: Flavin-dependent dehydrogenase|unclassified	0.0242893639
+UniRef50_UPI000369A47F: hypothetical protein	0.0242890197
+UniRef50_UPI000369A47F: hypothetical protein|unclassified	0.0242890197
+UniRef50_UPI0003DEC061: PREDICTED: neurogenic protein mastermind	0.0242858412
+UniRef50_UPI0003DEC061: PREDICTED: neurogenic protein mastermind|unclassified	0.0242858412
+UniRef50_UPI000255B256: trehalase	0.0242848094
+UniRef50_UPI000255B256: trehalase|unclassified	0.0242848094
+UniRef50_UPI0003B67AC5: hypothetical protein	0.0242789823
+UniRef50_UPI0003B67AC5: hypothetical protein|unclassified	0.0242789823
+UniRef50_UPI000308E21F: tail fiber protein	0.0242785985
+UniRef50_UPI000308E21F: tail fiber protein|unclassified	0.0242785985
+UniRef50_UPI0003B511AF: histidine kinase	0.0242732292
+UniRef50_UPI0003B511AF: histidine kinase|unclassified	0.0242732292
+UniRef50_UPI0001746BF5: probable protein-export membrane protein	0.0242731856
+UniRef50_UPI0001746BF5: probable protein-export membrane protein|unclassified	0.0242731856
+UniRef50_Q94523: Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial	0.0242604219
+UniRef50_Q94523: Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial|unclassified	0.0242604219
+UniRef50_UPI00035EE3E6: hypothetical protein	0.0242580668
+UniRef50_UPI00035EE3E6: hypothetical protein|unclassified	0.0242580668
+UniRef50_UPI00046F7B3F: hypothetical protein	0.0242497945
+UniRef50_UPI00046F7B3F: hypothetical protein|unclassified	0.0242497945
+UniRef50_UPI00037379AF: hypothetical protein	0.0242460397
+UniRef50_UPI00037379AF: hypothetical protein|unclassified	0.0242460397
+UniRef50_UPI00046D55BC: nitrate transporter	0.0242407687
+UniRef50_UPI00046D55BC: nitrate transporter|unclassified	0.0242407687
+UniRef50_UPI000366C8E5: hypothetical protein	0.0242401448
+UniRef50_UPI000366C8E5: hypothetical protein|unclassified	0.0242401448
+UniRef50_UPI00037E9476: hypothetical protein	0.0242396901
+UniRef50_UPI00037E9476: hypothetical protein|unclassified	0.0242396901
+UniRef50_B8E2S5: Polyribonucleotide nucleotidyltransferase	0.0242316977
+UniRef50_B8E2S5: Polyribonucleotide nucleotidyltransferase|unclassified	0.0242316977
+UniRef50_UPI0003734279: hypothetical protein	0.0242279367
+UniRef50_UPI0003734279: hypothetical protein|unclassified	0.0242279367
+UniRef50_UPI00046F80AC: hypothetical protein	0.0242259812
+UniRef50_UPI00046F80AC: hypothetical protein|unclassified	0.0242259812
+UniRef50_UPI0004733D46: ABC transporter	0.0242231061
+UniRef50_UPI0004733D46: ABC transporter|unclassified	0.0242231061
+UniRef50_UPI00036658C6: hypothetical protein	0.0242207746
+UniRef50_UPI00036658C6: hypothetical protein|unclassified	0.0242207746
+UniRef50_UPI0002FDE3EE: hypothetical protein	0.0242159696
+UniRef50_UPI0002FDE3EE: hypothetical protein|unclassified	0.0242159696
+UniRef50_UPI00047B19BA: methanol dehydrogenase	0.0242157028
+UniRef50_UPI00047B19BA: methanol dehydrogenase|unclassified	0.0242157028
+UniRef50_UPI000318D6BE: hypothetical protein	0.0242138364
+UniRef50_UPI000318D6BE: hypothetical protein|unclassified	0.0242138364
+UniRef50_UPI000465E6C1: type IV secretion protein C	0.0242119912
+UniRef50_UPI000465E6C1: type IV secretion protein C|unclassified	0.0242119912
+UniRef50_UPI00037EEE57: MULTISPECIES: hypothetical protein	0.0242101120
+UniRef50_UPI00037EEE57: MULTISPECIES: hypothetical protein|unclassified	0.0242101120
+UniRef50_Q9X7L2: 2-isopropylmalate synthase	0.0241989270
+UniRef50_Q9X7L2: 2-isopropylmalate synthase|unclassified	0.0241989270
+UniRef50_UPI0002556217: chromosomal replication initiation protein	0.0241972217
+UniRef50_UPI0002556217: chromosomal replication initiation protein|unclassified	0.0241972217
+UniRef50_UPI00036C4ADF: hypothetical protein	0.0241939823
+UniRef50_UPI00036C4ADF: hypothetical protein|unclassified	0.0241939823
+UniRef50_UPI00036F5F0F: hypothetical protein	0.0241902140
+UniRef50_UPI00036F5F0F: hypothetical protein|unclassified	0.0241902140
+UniRef50_UPI0003B2FBC8: multidrug ABC transporter ATP-binding protein	0.0241846230
+UniRef50_UPI0003B2FBC8: multidrug ABC transporter ATP-binding protein|unclassified	0.0241846230
+UniRef50_UPI000476540F: hypothetical protein	0.0241810029
+UniRef50_UPI000476540F: hypothetical protein|unclassified	0.0241810029
+UniRef50_UPI00037692BA: hypothetical protein	0.0241806183
+UniRef50_UPI00037692BA: hypothetical protein|unclassified	0.0241806183
+UniRef50_G8CNU7	0.0241794037
+UniRef50_G8CNU7|unclassified	0.0241794037
+UniRef50_UPI0003F4F140: ABC transporter ATP-binding protein	0.0241777234
+UniRef50_UPI0003F4F140: ABC transporter ATP-binding protein|unclassified	0.0241777234
+UniRef50_R1IB85: Long-chain fatty acid transport protein	0.0241736608
+UniRef50_R1IB85: Long-chain fatty acid transport protein|unclassified	0.0241736608
+UniRef50_UPI0004792764: cobalamin biosynthesis protein CobW	0.0241652667
+UniRef50_UPI0004792764: cobalamin biosynthesis protein CobW|unclassified	0.0241652667
+UniRef50_C6B719	0.0241635993
+UniRef50_C6B719|unclassified	0.0241635993
+UniRef50_Q6AG81: Arginine--tRNA ligase	0.0241625458
+UniRef50_Q6AG81: Arginine--tRNA ligase|unclassified	0.0241625458
+UniRef50_UPI0003801875: hypothetical protein	0.0241618890
+UniRef50_UPI0003801875: hypothetical protein|unclassified	0.0241618890
+UniRef50_UPI000262CDFD: recombination and repair protein	0.0241605548
+UniRef50_UPI000262CDFD: recombination and repair protein|unclassified	0.0241605548
+UniRef50_UPI0004652689: hypothetical protein	0.0241590358
+UniRef50_UPI0004652689: hypothetical protein|unclassified	0.0241590358
+UniRef50_UPI00047152CF: collagenase, partial	0.0241532967
+UniRef50_UPI00047152CF: collagenase, partial|unclassified	0.0241532967
+UniRef50_A1WHF5: Ppx/GppA phosphatase	0.0241498463
+UniRef50_A1WHF5: Ppx/GppA phosphatase|unclassified	0.0241498463
+UniRef50_W0HYK9: Putative lipoprotein	0.0241387438
+UniRef50_W0HYK9: Putative lipoprotein|unclassified	0.0241387438
+UniRef50_UPI00046ED511: iron-sulfur protein, partial	0.0241220399
+UniRef50_UPI00046ED511: iron-sulfur protein, partial|unclassified	0.0241220399
+UniRef50_UPI0002629C43: lipopolysaccharide modification acyltransferase	0.0241161566
+UniRef50_UPI0002629C43: lipopolysaccharide modification acyltransferase|unclassified	0.0241161566
+UniRef50_Q9SR52: Urease	0.0241111834
+UniRef50_Q9SR52: Urease|unclassified	0.0241111834
+UniRef50_UPI00046AD5A4: carnitine dehydratase	0.0241098002
+UniRef50_UPI00046AD5A4: carnitine dehydratase|unclassified	0.0241098002
+UniRef50_R6BFT0: DNA integration/recombination/invertion protein	0.0241086350
+UniRef50_R6BFT0: DNA integration/recombination/invertion protein|unclassified	0.0241086350
+UniRef50_UPI000472B9F2: hypothetical protein	0.0241049999
+UniRef50_UPI000472B9F2: hypothetical protein|unclassified	0.0241049999
+UniRef50_UPI000463AA8D: MULTISPECIES: hypothetical protein	0.0241048721
+UniRef50_UPI000463AA8D: MULTISPECIES: hypothetical protein|unclassified	0.0241048721
+UniRef50_UPI000408AC09: MULTISPECIES: hypothetical protein	0.0241034741
+UniRef50_UPI000408AC09: MULTISPECIES: hypothetical protein|unclassified	0.0241034741
+UniRef50_W5XBZ3: Chromate transporter, chromate ion transporter (CHR) family	0.0241018922
+UniRef50_W5XBZ3: Chromate transporter, chromate ion transporter (CHR) family|unclassified	0.0241018922
+UniRef50_W6RVS3	0.0240981336
+UniRef50_W6RVS3|unclassified	0.0240981336
+UniRef50_K0YTM4	0.0240977767
+UniRef50_K0YTM4|unclassified	0.0240977767
+UniRef50_D9VLM5: Predicted protein	0.0240964066
+UniRef50_D9VLM5: Predicted protein|unclassified	0.0240964066
+UniRef50_UPI000377EABC: hypothetical protein	0.0240942754
+UniRef50_UPI000377EABC: hypothetical protein|unclassified	0.0240942754
+UniRef50_F5YSY6: Transcriptional regulator PadR family protein	0.0240936887
+UniRef50_F5YSY6: Transcriptional regulator PadR family protein|unclassified	0.0240936887
+UniRef50_O15820: Phosphoglucomutase	0.0240886916
+UniRef50_O15820: Phosphoglucomutase|unclassified	0.0240886916
+UniRef50_UPI00035C7818: hypothetical protein	0.0240854207
+UniRef50_UPI00035C7818: hypothetical protein|unclassified	0.0240854207
+UniRef50_F3ZFK1: Putative secreted sugar-binding protein	0.0240839294
+UniRef50_F3ZFK1: Putative secreted sugar-binding protein|unclassified	0.0240839294
+UniRef50_J2WCX1	0.0240762601
+UniRef50_J2WCX1|unclassified	0.0240762601
+UniRef50_UPI0002003A96: peptide chain release factor 1, partial	0.0240751896
+UniRef50_UPI0002003A96: peptide chain release factor 1, partial|unclassified	0.0240751896
+UniRef50_V7HV36	0.0240691316
+UniRef50_V7HV36|unclassified	0.0240691316
+UniRef50_Q9Z9A0: DNA-directed RNA polymerase subunit beta	0.0240677514
+UniRef50_Q9Z9A0: DNA-directed RNA polymerase subunit beta|unclassified	0.0240677514
+UniRef50_UPI00037BD13A: hypothetical protein	0.0240673107
+UniRef50_UPI00037BD13A: hypothetical protein|unclassified	0.0240673107
+UniRef50_K6WEU5: Putative esterase	0.0240645097
+UniRef50_K6WEU5: Putative esterase|unclassified	0.0240645097
+UniRef50_UPI0004743C50: hypothetical protein	0.0240597285
+UniRef50_UPI0004743C50: hypothetical protein|unclassified	0.0240597285
+UniRef50_L8ULA6: NlpD protein	0.0240546959
+UniRef50_L8ULA6: NlpD protein|unclassified	0.0240546959
+UniRef50_U5MTJ0	0.0240530663
+UniRef50_U5MTJ0|unclassified	0.0240530663
+UniRef50_UPI0004726693: hypothetical protein	0.0240524761
+UniRef50_UPI0004726693: hypothetical protein|unclassified	0.0240524761
+UniRef50_G4I649: 40-residue YVTN family beta-propeller repeat protein	0.0240520932
+UniRef50_G4I649: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.0240520932
+UniRef50_UPI00040203EA: hypothetical protein	0.0240505286
+UniRef50_UPI00040203EA: hypothetical protein|unclassified	0.0240505286
+UniRef50_Q15046: Lysine--tRNA ligase	0.0240426653
+UniRef50_Q15046: Lysine--tRNA ligase|unclassified	0.0240426653
+UniRef50_UPI0003F0B3EF: PREDICTED: WAS/WASL-interacting protein family member 1-like isoform X2	0.0240299481
+UniRef50_UPI0003F0B3EF: PREDICTED: WAS/WASL-interacting protein family member 1-like isoform X2|unclassified	0.0240299481
+UniRef50_D1A708	0.0240293829
+UniRef50_D1A708|unclassified	0.0240293829
+UniRef50_R9BX29	0.0240285451
+UniRef50_R9BX29|unclassified	0.0240285451
+UniRef50_UPI000348E582: hypothetical protein	0.0240258578
+UniRef50_UPI000348E582: hypothetical protein|unclassified	0.0240258578
+UniRef50_UPI000399B535: pectate lyase	0.0240234789
+UniRef50_UPI000399B535: pectate lyase|unclassified	0.0240234789
+UniRef50_C3ASP8: ABC-2 type transporter	0.0240232812
+UniRef50_C3ASP8: ABC-2 type transporter|unclassified	0.0240232812
+UniRef50_W9H4Y7: ABC transporter permease	0.0240192814
+UniRef50_W9H4Y7: ABC transporter permease|unclassified	0.0240192814
+UniRef50_M9LX88	0.0240075622
+UniRef50_M9LX88|unclassified	0.0240075622
+UniRef50_UPI00036319EC: hypothetical protein	0.0239894582
+UniRef50_UPI00036319EC: hypothetical protein|unclassified	0.0239894582
+UniRef50_UPI000374FB7B: hypothetical protein	0.0239893500
+UniRef50_UPI000374FB7B: hypothetical protein|unclassified	0.0239893500
+UniRef50_UPI00022CAA86: PREDICTED: ATP-dependent RNA helicase hrpA-like	0.0239837033
+UniRef50_UPI00022CAA86: PREDICTED: ATP-dependent RNA helicase hrpA-like|unclassified	0.0239837033
+UniRef50_UPI0004695EF6: hypothetical protein	0.0239762322
+UniRef50_UPI0004695EF6: hypothetical protein|unclassified	0.0239762322
+UniRef50_U2NHZ0	0.0239729484
+UniRef50_U2NHZ0|unclassified	0.0239729484
+UniRef50_Q54J34: Adenylosuccinate lyase	0.0239724404
+UniRef50_Q54J34: Adenylosuccinate lyase|unclassified	0.0239724404
+UniRef50_UPI00035C5743: hypothetical protein	0.0239710506
+UniRef50_UPI00035C5743: hypothetical protein|unclassified	0.0239710506
+UniRef50_UPI00035C321C: hypothetical protein	0.0239707891
+UniRef50_UPI00035C321C: hypothetical protein|unclassified	0.0239707891
+UniRef50_UPI0003AF4191: PREDICTED: trehalase	0.0239700469
+UniRef50_UPI0003AF4191: PREDICTED: trehalase|unclassified	0.0239700469
+UniRef50_UPI00037A3857: helicase	0.0239653603
+UniRef50_UPI00037A3857: helicase|unclassified	0.0239653603
+UniRef50_UPI00046FC365: ABC transporter ATP-binding protein	0.0239641717
+UniRef50_UPI00046FC365: ABC transporter ATP-binding protein|unclassified	0.0239641717
+UniRef50_Q46I98: Aspartate--tRNA(Asp/Asn) ligase	0.0239603515
+UniRef50_Q46I98: Aspartate--tRNA(Asp/Asn) ligase|unclassified	0.0239603515
+UniRef50_Q7VRC8: Proline--tRNA ligase	0.0239579505
+UniRef50_Q7VRC8: Proline--tRNA ligase|unclassified	0.0239579505
+UniRef50_Q2LPW5: Aspartate--tRNA(Asp/Asn) ligase 1	0.0239556196
+UniRef50_Q2LPW5: Aspartate--tRNA(Asp/Asn) ligase 1|unclassified	0.0239556196
+UniRef50_W7TLI5	0.0239509589
+UniRef50_W7TLI5|unclassified	0.0239509589
+UniRef50_UPI0003B70707: alpha/beta hydrolase	0.0239447627
+UniRef50_UPI0003B70707: alpha/beta hydrolase|unclassified	0.0239447627
+UniRef50_M4FRG3	0.0239432052
+UniRef50_M4FRG3|unclassified	0.0239432052
+UniRef50_R9X5J4: Membrane protein	0.0239397314
+UniRef50_R9X5J4: Membrane protein|unclassified	0.0239397314
+UniRef50_UPI0003671825: hypothetical protein	0.0239388422
+UniRef50_UPI0003671825: hypothetical protein|unclassified	0.0239388422
+UniRef50_UPI0003761147: hypothetical protein	0.0239350607
+UniRef50_UPI0003761147: hypothetical protein|unclassified	0.0239350607
+UniRef50_M4WW08	0.0239322912
+UniRef50_M4WW08|unclassified	0.0239322912
+UniRef50_G2RZR4: PARCEL domain protein	0.0239315928
+UniRef50_G2RZR4: PARCEL domain protein|unclassified	0.0239315928
+UniRef50_UPI0004549546: PREDICTED: iporin	0.0239294469
+UniRef50_UPI0004549546: PREDICTED: iporin|unclassified	0.0239294469
+UniRef50_UPI000359E7BB: PREDICTED: LOW QUALITY PROTEIN: T-complex protein 1 subunit alpha	0.0239287831
+UniRef50_UPI000359E7BB: PREDICTED: LOW QUALITY PROTEIN: T-complex protein 1 subunit alpha|unclassified	0.0239287831
+UniRef50_UPI0003B53D80: primosomal protein N''''	0.0239256982
+UniRef50_UPI0003B53D80: primosomal protein N''''|unclassified	0.0239256982
+UniRef50_B2J4G6: Tn7-like transposition protein C	0.0239256813
+UniRef50_B2J4G6: Tn7-like transposition protein C|unclassified	0.0239256813
+UniRef50_UPI00046631F1: phosphatase	0.0239249731
+UniRef50_UPI00046631F1: phosphatase|unclassified	0.0239249731
+UniRef50_UPI0003B5337E: PREDICTED: midasin-like	0.0239241160
+UniRef50_UPI0003B5337E: PREDICTED: midasin-like|unclassified	0.0239241160
+UniRef50_O67258: Lysine--tRNA ligase	0.0239218523
+UniRef50_O67258: Lysine--tRNA ligase|unclassified	0.0239218523
+UniRef50_UPI000400E0A6: DNA repair protein RecN	0.0239112006
+UniRef50_UPI000400E0A6: DNA repair protein RecN|unclassified	0.0239112006
+UniRef50_UPI00047729DA: chemotaxis protein CheA	0.0239067087
+UniRef50_UPI00047729DA: chemotaxis protein CheA|unclassified	0.0239067087
+UniRef50_UPI00037676AA: hypothetical protein	0.0239048252
+UniRef50_UPI00037676AA: hypothetical protein|unclassified	0.0239048252
+UniRef50_UPI000475BE68: hypothetical protein	0.0239044946
+UniRef50_UPI000475BE68: hypothetical protein|unclassified	0.0239044946
+UniRef50_I9M4P4	0.0238961682
+UniRef50_I9M4P4|unclassified	0.0238961682
+UniRef50_UPI00036C4041: hypothetical protein	0.0238893344
+UniRef50_UPI00036C4041: hypothetical protein|unclassified	0.0238893344
+UniRef50_K9XNW0	0.0238878945
+UniRef50_K9XNW0|unclassified	0.0238878945
+UniRef50_UPI0004715360: collagen-binding protein	0.0238868521
+UniRef50_UPI0004715360: collagen-binding protein|unclassified	0.0238868521
+UniRef50_W5LTR9	0.0238780755
+UniRef50_W5LTR9|unclassified	0.0238780755
+UniRef50_C1N0B8: Predicted protein	0.0238687167
+UniRef50_C1N0B8: Predicted protein|unclassified	0.0238687167
+UniRef50_A9BFL9: ATP-dependent zinc metalloprotease FtsH 1	0.0238644255
+UniRef50_A9BFL9: ATP-dependent zinc metalloprotease FtsH 1|unclassified	0.0238644255
+UniRef50_UPI0003679578: hypothetical protein, partial	0.0238606633
+UniRef50_UPI0003679578: hypothetical protein, partial|unclassified	0.0238606633
+UniRef50_UPI0003B4D5D7: calcium-binding protein, partial	0.0238587188
+UniRef50_UPI0003B4D5D7: calcium-binding protein, partial|unclassified	0.0238587188
+UniRef50_UPI000366073B: hypothetical protein	0.0238555076
+UniRef50_UPI000366073B: hypothetical protein|unclassified	0.0238555076
+UniRef50_L8GJJ7	0.0238505338
+UniRef50_L8GJJ7|unclassified	0.0238505338
+UniRef50_C2R4M4: Phage infection protein	0.0238462443
+UniRef50_C2R4M4: Phage infection protein|unclassified	0.0238462443
+UniRef50_C2ZYB6: S-layer y domain protein	0.0238373562
+UniRef50_C2ZYB6: S-layer y domain protein|unclassified	0.0238373562
+UniRef50_B9NXE5: Calcium binding hemolysin protein, putative	0.0238326259
+UniRef50_B9NXE5: Calcium binding hemolysin protein, putative|unclassified	0.0238326259
+UniRef50_Q06408: Transaminated amino acid decarboxylase	0.0238265189
+UniRef50_Q06408: Transaminated amino acid decarboxylase|unclassified	0.0238265189
+UniRef50_UPI000467FD99: glycine/betaine ABC transporter	0.0238206691
+UniRef50_UPI000467FD99: glycine/betaine ABC transporter|unclassified	0.0238206691
+UniRef50_UPI0003F48E9A: hypothetical protein TREMEDRAFT_26315	0.0238198699
+UniRef50_UPI0003F48E9A: hypothetical protein TREMEDRAFT_26315|unclassified	0.0238198699
+UniRef50_V6HLA3: MORN repeat protein	0.0238163732
+UniRef50_V6HLA3: MORN repeat protein|unclassified	0.0238163732
+UniRef50_UPI000366AA03: hypothetical protein	0.0238097583
+UniRef50_UPI000366AA03: hypothetical protein|unclassified	0.0238097583
+UniRef50_UPI00036095D3: hypothetical protein	0.0237994695
+UniRef50_UPI00036095D3: hypothetical protein|unclassified	0.0237994695
+UniRef50_B1VDX1: Putative membrane protein	0.0237906221
+UniRef50_B1VDX1: Putative membrane protein|unclassified	0.0237906221
+UniRef50_K8PL00	0.0237898381
+UniRef50_K8PL00|unclassified	0.0237898381
+UniRef50_B0SDM9: Proline--tRNA ligase	0.0237822739
+UniRef50_B0SDM9: Proline--tRNA ligase|unclassified	0.0237822739
+UniRef50_UPI00046AEB65: hypothetical protein	0.0237819681
+UniRef50_UPI00046AEB65: hypothetical protein|unclassified	0.0237819681
+UniRef50_UPI00041221D7: hypothetical protein	0.0237817418
+UniRef50_UPI00041221D7: hypothetical protein|unclassified	0.0237817418
+UniRef50_UPI00036C2609: hypothetical protein	0.0237784498
+UniRef50_UPI00036C2609: hypothetical protein|unclassified	0.0237784498
+UniRef50_UPI0003FDDEC4: hypothetical protein	0.0237771681
+UniRef50_UPI0003FDDEC4: hypothetical protein|unclassified	0.0237771681
+UniRef50_UPI00046779B7: secretin	0.0237763145
+UniRef50_UPI00046779B7: secretin|unclassified	0.0237763145
+UniRef50_I0IIS2	0.0237748852
+UniRef50_I0IIS2|unclassified	0.0237748852
+UniRef50_UPI000289FA79: hypothetical protein, partial	0.0237741990
+UniRef50_UPI000289FA79: hypothetical protein, partial|unclassified	0.0237741990
+UniRef50_UPI00047E29B6: chemotaxis protein	0.0237681722
+UniRef50_UPI00047E29B6: chemotaxis protein|unclassified	0.0237681722
+UniRef50_R6GZD6	0.0237647671
+UniRef50_R6GZD6|unclassified	0.0237647671
+UniRef50_Q9GYL4: Protein R04E5.8, isoform a	0.0237539878
+UniRef50_Q9GYL4: Protein R04E5.8, isoform a|unclassified	0.0237539878
+UniRef50_UPI000369FE8F: hypothetical protein	0.0237530483
+UniRef50_UPI000369FE8F: hypothetical protein|unclassified	0.0237530483
+UniRef50_UPI0004635CB2: DNA mismatch repair protein MutL	0.0237480966
+UniRef50_UPI0004635CB2: DNA mismatch repair protein MutL|unclassified	0.0237480966
+UniRef50_X1YFD5	0.0237479358
+UniRef50_X1YFD5|unclassified	0.0237479358
+UniRef50_P96719	0.0237452633
+UniRef50_P96719|unclassified	0.0237452633
+UniRef50_UPI00036EBE99: hypothetical protein	0.0237449811
+UniRef50_UPI00036EBE99: hypothetical protein|unclassified	0.0237449811
+UniRef50_UPI00042BF34C: PREDICTED: 6-phosphofructokinase, muscle type	0.0237423177
+UniRef50_UPI00042BF34C: PREDICTED: 6-phosphofructokinase, muscle type|unclassified	0.0237423177
+UniRef50_UPI0003D25654: PREDICTED: multicystatin-like	0.0237421738
+UniRef50_UPI0003D25654: PREDICTED: multicystatin-like|unclassified	0.0237421738
+UniRef50_T1IGB0	0.0237411639
+UniRef50_T1IGB0|unclassified	0.0237411639
+UniRef50_S0L2E6	0.0237395457
+UniRef50_S0L2E6|unclassified	0.0237395457
+UniRef50_W0AJZ5	0.0237350533
+UniRef50_W0AJZ5|unclassified	0.0237350533
+UniRef50_X2MSF3	0.0237344477
+UniRef50_X2MSF3|unclassified	0.0237344477
+UniRef50_UPI00036B5465: hypothetical protein	0.0237332673
+UniRef50_UPI00036B5465: hypothetical protein|unclassified	0.0237332673
+UniRef50_R2Q970	0.0237331163
+UniRef50_R2Q970|unclassified	0.0237331163
+UniRef50_Q982S1: Mlr8521 protein	0.0237327122
+UniRef50_Q982S1: Mlr8521 protein|unclassified	0.0237327122
+UniRef50_UPI0001E7AE98: putative ribonucleotide reductase large subunit	0.0237315809
+UniRef50_UPI0001E7AE98: putative ribonucleotide reductase large subunit|unclassified	0.0237315809
+UniRef50_UPI00047293BE: DNA polymerase III subunit alpha, partial	0.0237287129
+UniRef50_UPI00047293BE: DNA polymerase III subunit alpha, partial|unclassified	0.0237287129
+UniRef50_UPI000237CE2F: malto-oligosyltrehalose synthase	0.0237215333
+UniRef50_UPI000237CE2F: malto-oligosyltrehalose synthase|unclassified	0.0237215333
+UniRef50_UPI000470A3F7: hypothetical protein	0.0237201953
+UniRef50_UPI000470A3F7: hypothetical protein|unclassified	0.0237201953
+UniRef50_F0VQ97	0.0237166597
+UniRef50_F0VQ97|unclassified	0.0237166597
+UniRef50_UPI0002062E38: PREDICTED: hypothetical protein LOC100164573	0.0237129214
+UniRef50_UPI0002062E38: PREDICTED: hypothetical protein LOC100164573|unclassified	0.0237129214
+UniRef50_UPI0004728F0C: DNA mismatch repair protein MutL	0.0237061444
+UniRef50_UPI0004728F0C: DNA mismatch repair protein MutL|unclassified	0.0237061444
+UniRef50_R9C1K6	0.0237023639
+UniRef50_R9C1K6|unclassified	0.0237023639
+UniRef50_UPI00047BEAD8: membrane protein	0.0237021108
+UniRef50_UPI00047BEAD8: membrane protein|unclassified	0.0237021108
+UniRef50_UPI000382EE91: hypothetical protein	0.0237002793
+UniRef50_UPI000382EE91: hypothetical protein|unclassified	0.0237002793
+UniRef50_UPI0003B6062E: sensor histidine kinase	0.0237001814
+UniRef50_UPI0003B6062E: sensor histidine kinase|unclassified	0.0237001814
+UniRef50_D5S0P6	0.0236937851
+UniRef50_D5S0P6|unclassified	0.0236937851
+UniRef50_UPI0002ADB117: PREDICTED: d-2-hydroxyglutarate dehydrogenase, mitochondrial	0.0236930596
+UniRef50_UPI0002ADB117: PREDICTED: d-2-hydroxyglutarate dehydrogenase, mitochondrial|unclassified	0.0236930596
+UniRef50_U6MNW6	0.0236917984
+UniRef50_U6MNW6|unclassified	0.0236917984
+UniRef50_X7E1U9: Cobalamin biosynthesis protein CobW	0.0236903245
+UniRef50_X7E1U9: Cobalamin biosynthesis protein CobW|unclassified	0.0236903245
+UniRef50_C6MA39: Type VI secretion protein, VC_A0110 family	0.0236859701
+UniRef50_C6MA39: Type VI secretion protein, VC_A0110 family|unclassified	0.0236859701
+UniRef50_UPI00030D79AD: hypothetical protein	0.0236827323
+UniRef50_UPI00030D79AD: hypothetical protein|unclassified	0.0236827323
+UniRef50_A4F0Z1	0.0236822507
+UniRef50_A4F0Z1|unclassified	0.0236822507
+UniRef50_S4D9L4	0.0236819653
+UniRef50_S4D9L4|unclassified	0.0236819653
+UniRef50_UPI000363AE69: hypothetical protein	0.0236812110
+UniRef50_UPI000363AE69: hypothetical protein|unclassified	0.0236812110
+UniRef50_A9KYV4	0.0236777163
+UniRef50_A9KYV4|unclassified	0.0236777163
+UniRef50_UPI00042A413F: flagellar motor protein	0.0236763009
+UniRef50_UPI00042A413F: flagellar motor protein|unclassified	0.0236763009
+UniRef50_UPI0004019FAA: hypothetical protein	0.0236750402
+UniRef50_UPI0004019FAA: hypothetical protein|unclassified	0.0236750402
+UniRef50_UPI0003B3160E: beta-lactamase	0.0236708087
+UniRef50_UPI0003B3160E: beta-lactamase|unclassified	0.0236708087
+UniRef50_A0A059LFK1	0.0236687810
+UniRef50_A0A059LFK1|unclassified	0.0236687810
+UniRef50_UPI0004716C49: hypothetical protein	0.0236630275
+UniRef50_UPI0004716C49: hypothetical protein|unclassified	0.0236630275
+UniRef50_UPI0001D2F21E: nitrogenase	0.0236627475
+UniRef50_UPI0001D2F21E: nitrogenase|unclassified	0.0236627475
+UniRef50_UPI0003B785CD: transporter	0.0236616374
+UniRef50_UPI0003B785CD: transporter|unclassified	0.0236616374
+UniRef50_UPI00040DEF8D: hypothetical protein	0.0236585748
+UniRef50_UPI00040DEF8D: hypothetical protein|unclassified	0.0236585748
+UniRef50_UPI00046C3813: PREDICTED: inner nuclear membrane protein Man1 isoform X1	0.0236570006
+UniRef50_UPI00046C3813: PREDICTED: inner nuclear membrane protein Man1 isoform X1|unclassified	0.0236570006
+UniRef50_UPI00036B474C: hypothetical protein	0.0236552685
+UniRef50_UPI00036B474C: hypothetical protein|unclassified	0.0236552685
+UniRef50_K7PC03: Protein ORF84	0.0236435808
+UniRef50_K7PC03: Protein ORF84|unclassified	0.0236435808
+UniRef50_UPI000365B14D: hypothetical protein	0.0236409856
+UniRef50_UPI000365B14D: hypothetical protein|unclassified	0.0236409856
+UniRef50_Q2RNG2: Bifunctional uridylyltransferase/uridylyl-removing enzyme	0.0236317764
+UniRef50_Q2RNG2: Bifunctional uridylyltransferase/uridylyl-removing enzyme|unclassified	0.0236317764
+UniRef50_X2X8I7	0.0236269383
+UniRef50_X2X8I7|unclassified	0.0236269383
+UniRef50_P50648: Ribonucleoside-diphosphate reductase large subunit	0.0236229493
+UniRef50_P50648: Ribonucleoside-diphosphate reductase large subunit|unclassified	0.0236229493
+UniRef50_UPI00031FC1CD: hypothetical protein	0.0236157306
+UniRef50_UPI00031FC1CD: hypothetical protein|unclassified	0.0236157306
+UniRef50_R6SBV2	0.0236154079
+UniRef50_R6SBV2|unclassified	0.0236154079
+UniRef50_B8GWX0: Bifunctional uridylyltransferase/uridylyl-removing enzyme	0.0236121637
+UniRef50_B8GWX0: Bifunctional uridylyltransferase/uridylyl-removing enzyme|unclassified	0.0236121637
+UniRef50_W2CA93	0.0236079805
+UniRef50_W2CA93|unclassified	0.0236079805
+UniRef50_A0A011R5C6	0.0236065769
+UniRef50_A0A011R5C6|unclassified	0.0236065769
+UniRef50_J2X9Z3	0.0236000939
+UniRef50_J2X9Z3|unclassified	0.0236000939
+UniRef50_UPI0003740768: nucleoside-diphosphate sugar epimerase	0.0235986847
+UniRef50_UPI0003740768: nucleoside-diphosphate sugar epimerase|unclassified	0.0235986847
+UniRef50_C5CES8: ATP-dependent zinc metalloprotease FtsH	0.0235986476
+UniRef50_C5CES8: ATP-dependent zinc metalloprotease FtsH|unclassified	0.0235986476
+UniRef50_V4KV87	0.0235960512
+UniRef50_V4KV87|unclassified	0.0235960512
+UniRef50_F3ZH76: Putative pyridoxal-phosphate dependent enzyme	0.0235915882
+UniRef50_F3ZH76: Putative pyridoxal-phosphate dependent enzyme|unclassified	0.0235915882
+UniRef50_M3Y767	0.0235900377
+UniRef50_M3Y767|unclassified	0.0235900377
+UniRef50_F0XVZ3	0.0235899188
+UniRef50_F0XVZ3|unclassified	0.0235899188
+UniRef50_UPI0003DEB080: PREDICTED: chaperone protein ClpD, chloroplastic-like isoform X2	0.0235867495
+UniRef50_UPI0003DEB080: PREDICTED: chaperone protein ClpD, chloroplastic-like isoform X2|unclassified	0.0235867495
+UniRef50_K9W9H8: Arabinose efflux permease family protein	0.0235817744
+UniRef50_K9W9H8: Arabinose efflux permease family protein|unclassified	0.0235817744
+UniRef50_UPI000440412B: PREDICTED: LOW QUALITY PROTEIN: E1A-binding protein p400	0.0235801540
+UniRef50_UPI000440412B: PREDICTED: LOW QUALITY PROTEIN: E1A-binding protein p400|unclassified	0.0235801540
+UniRef50_K8DRZ7	0.0235781701
+UniRef50_K8DRZ7|unclassified	0.0235781701
+UniRef50_UPI0003D07A7B: PREDICTED: procollagen C-endopeptidase enhancer 1-like	0.0235765683
+UniRef50_UPI0003D07A7B: PREDICTED: procollagen C-endopeptidase enhancer 1-like|unclassified	0.0235765683
+UniRef50_UPI000462C1F9: ATPase, partial	0.0235690486
+UniRef50_UPI000462C1F9: ATPase, partial|unclassified	0.0235690486
+UniRef50_UPI00046D09BA: membrane protein	0.0235687150
+UniRef50_UPI00046D09BA: membrane protein|unclassified	0.0235687150
+UniRef50_U6MP51	0.0235653008
+UniRef50_U6MP51|unclassified	0.0235653008
+UniRef50_UPI0003B6D096: multidrug ABC transporter ATPase	0.0235634591
+UniRef50_UPI0003B6D096: multidrug ABC transporter ATPase|unclassified	0.0235634591
+UniRef50_A0A011PXZ1: Copper-exporting P-type ATPase A	0.0235623545
+UniRef50_A0A011PXZ1: Copper-exporting P-type ATPase A|unclassified	0.0235623545
+UniRef50_UPI000308EABA: hypothetical protein	0.0235610068
+UniRef50_UPI000308EABA: hypothetical protein|unclassified	0.0235610068
+UniRef50_UPI00047854CC: hypothetical protein	0.0235594560
+UniRef50_UPI00047854CC: hypothetical protein|unclassified	0.0235594560
+UniRef50_UPI000273AE05: PREDICTED: very long-chain specific acyl-CoA dehydrogenase, mitochondrial-like	0.0235583622
+UniRef50_UPI000273AE05: PREDICTED: very long-chain specific acyl-CoA dehydrogenase, mitochondrial-like|unclassified	0.0235583622
+UniRef50_UPI0003B721B0: ATPase P	0.0235578605
+UniRef50_UPI0003B721B0: ATPase P|unclassified	0.0235578605
+UniRef50_UPI00046EBF49: hypothetical protein	0.0235557832
+UniRef50_UPI00046EBF49: hypothetical protein|unclassified	0.0235557832
+UniRef50_UPI00046AE8E8: hypothetical protein	0.0235469700
+UniRef50_UPI00046AE8E8: hypothetical protein|unclassified	0.0235469700
+UniRef50_UPI000363BB7C: hypothetical protein	0.0235448971
+UniRef50_UPI000363BB7C: hypothetical protein|unclassified	0.0235448971
+UniRef50_UPI00042839E6: hypothetical protein	0.0235437069
+UniRef50_UPI00042839E6: hypothetical protein|unclassified	0.0235437069
+UniRef50_P9WQ18: Trehalose synthase/amylase TreS	0.0235413614
+UniRef50_P9WQ18: Trehalose synthase/amylase TreS|unclassified	0.0235413614
+UniRef50_UPI0003729887: branched-chain alpha-keto acid dehydrogenase subunit E2	0.0235393639
+UniRef50_UPI0003729887: branched-chain alpha-keto acid dehydrogenase subunit E2|unclassified	0.0235393639
+UniRef50_UPI0003B3F37B: polyphosphate kinase, partial	0.0235352830
+UniRef50_UPI0003B3F37B: polyphosphate kinase, partial|unclassified	0.0235352830
+UniRef50_UPI00037C68B5: hypothetical protein	0.0235267413
+UniRef50_UPI00037C68B5: hypothetical protein|unclassified	0.0235267413
+UniRef50_E4U116	0.0235249400
+UniRef50_E4U116|unclassified	0.0235249400
+UniRef50_Q9P7L5: Ornithine aminotransferase car2	0.0235235406
+UniRef50_Q9P7L5: Ornithine aminotransferase car2|unclassified	0.0235235406
+UniRef50_W5XCK2: Glycoside hydrolase family 16	0.0235216929
+UniRef50_W5XCK2: Glycoside hydrolase family 16|unclassified	0.0235216929
+UniRef50_G7JFY9: Acetyl-coA carboxylase beta subunit	0.0235154681
+UniRef50_G7JFY9: Acetyl-coA carboxylase beta subunit|unclassified	0.0235154681
+UniRef50_Q3B6R3: ATP-dependent zinc metalloprotease FtsH	0.0235122357
+UniRef50_Q3B6R3: ATP-dependent zinc metalloprotease FtsH|unclassified	0.0235122357
+UniRef50_UPI00047AAA63: hypothetical protein	0.0235025718
+UniRef50_UPI00047AAA63: hypothetical protein|unclassified	0.0235025718
+UniRef50_UPI000455F598: hypothetical protein CONPUDRAFT_101061	0.0235024520
+UniRef50_UPI000455F598: hypothetical protein CONPUDRAFT_101061|unclassified	0.0235024520
+UniRef50_Q9UW15: Ribonucleoside-diphosphate reductase large chain	0.0234962448
+UniRef50_Q9UW15: Ribonucleoside-diphosphate reductase large chain|unclassified	0.0234962448
+UniRef50_W1IYA0	0.0234920376
+UniRef50_W1IYA0|unclassified	0.0234920376
+UniRef50_UPI0004788E38: PTS fructose transporter subunit IIA	0.0234878795
+UniRef50_UPI0004788E38: PTS fructose transporter subunit IIA|unclassified	0.0234878795
+UniRef50_UPI00036FEF96: hypothetical protein	0.0234839032
+UniRef50_UPI00036FEF96: hypothetical protein|unclassified	0.0234839032
+UniRef50_J7G653: Aggregate gland silk factor 1 (Fragment)	0.0234809685
+UniRef50_J7G653: Aggregate gland silk factor 1 (Fragment)|unclassified	0.0234809685
+UniRef50_A0A011NLS4	0.0234771540
+UniRef50_A0A011NLS4|unclassified	0.0234771540
+UniRef50_D6D6E5: Virulence protein	0.0234752800
+UniRef50_D6D6E5: Virulence protein|unclassified	0.0234752800
+UniRef50_A0A021VVK4	0.0234747324
+UniRef50_A0A021VVK4|unclassified	0.0234747324
+UniRef50_UPI0002625FBE: excinuclease ABC subunit C	0.0234720752
+UniRef50_UPI0002625FBE: excinuclease ABC subunit C|unclassified	0.0234720752
+UniRef50_G2E6M7: Diguanylate cyclase	0.0234717188
+UniRef50_G2E6M7: Diguanylate cyclase|unclassified	0.0234717188
+UniRef50_R7Z4P6	0.0234712455
+UniRef50_R7Z4P6|unclassified	0.0234712455
+UniRef50_UPI0003B49CD4: glutamine amidotransferase	0.0234660410
+UniRef50_UPI0003B49CD4: glutamine amidotransferase|unclassified	0.0234660410
+UniRef50_UPI00047CC614: hypothetical protein, partial	0.0234593025
+UniRef50_UPI00047CC614: hypothetical protein, partial|unclassified	0.0234593025
+UniRef50_R8AT37	0.0234569930
+UniRef50_R8AT37|unclassified	0.0234569930
+UniRef50_UPI000262CCC8: patatin	0.0234565870
+UniRef50_UPI000262CCC8: patatin|unclassified	0.0234565870
+UniRef50_UPI0003B6F64B: ABC transporter	0.0234542461
+UniRef50_UPI0003B6F64B: ABC transporter|unclassified	0.0234542461
+UniRef50_UPI00040CA50D: hypothetical protein	0.0234541226
+UniRef50_UPI00040CA50D: hypothetical protein|unclassified	0.0234541226
+UniRef50_UPI0004184600: GTP pyrophosphokinase	0.0234498666
+UniRef50_UPI0004184600: GTP pyrophosphokinase|unclassified	0.0234498666
+UniRef50_UPI0001509F0D: Electron transfer flavoprotein-ubiquinone oxidoreductase containing protein	0.0234485380
+UniRef50_UPI0001509F0D: Electron transfer flavoprotein-ubiquinone oxidoreductase containing protein|unclassified	0.0234485380
+UniRef50_UPI00037F2380: hypothetical protein	0.0234417821
+UniRef50_UPI00037F2380: hypothetical protein|unclassified	0.0234417821
+UniRef50_UPI00040B2182: serine/threonine protein kinase	0.0234412721
+UniRef50_UPI00040B2182: serine/threonine protein kinase|unclassified	0.0234412721
+UniRef50_UPI000287FEC7: aminopeptidase N	0.0234409355
+UniRef50_UPI000287FEC7: aminopeptidase N|unclassified	0.0234409355
+UniRef50_UPI000317F158: hypothetical protein	0.0234362469
+UniRef50_UPI000317F158: hypothetical protein|unclassified	0.0234362469
+UniRef50_UPI000225C0B3: hypothetical protein	0.0234357924
+UniRef50_UPI000225C0B3: hypothetical protein|unclassified	0.0234357924
+UniRef50_UPI0002FD6CB1: hypothetical protein	0.0234349374
+UniRef50_UPI0002FD6CB1: hypothetical protein|unclassified	0.0234349374
+UniRef50_X7F100	0.0234346617
+UniRef50_X7F100|unclassified	0.0234346617
+UniRef50_E1SNI5: Lytic transglycosylase catalytic	0.0234318474
+UniRef50_E1SNI5: Lytic transglycosylase catalytic|unclassified	0.0234318474
+UniRef50_UPI0003945467	0.0234302306
+UniRef50_UPI0003945467|unclassified	0.0234302306
+UniRef50_UPI0003F0800D: PREDICTED: solute carrier family 2, facilitated glucose transporter member 12-like	0.0234277038
+UniRef50_UPI0003F0800D: PREDICTED: solute carrier family 2, facilitated glucose transporter member 12-like|unclassified	0.0234277038
+UniRef50_A0A044T6P9	0.0234195302
+UniRef50_A0A044T6P9|unclassified	0.0234195302
+UniRef50_UPI0003693CBD: hypothetical protein	0.0234086969
+UniRef50_UPI0003693CBD: hypothetical protein|unclassified	0.0234086969
+UniRef50_UPI000404C86C: hypothetical protein	0.0234082118
+UniRef50_UPI000404C86C: hypothetical protein|unclassified	0.0234082118
+UniRef50_S6ABC9: Putative peptidase, C39 family	0.0234047180
+UniRef50_S6ABC9: Putative peptidase, C39 family|unclassified	0.0234047180
+UniRef50_L8J736: IcmF-related protein	0.0234046977
+UniRef50_L8J736: IcmF-related protein|unclassified	0.0234046977
+UniRef50_X3EPK5	0.0234040628
+UniRef50_X3EPK5|unclassified	0.0234040628
+UniRef50_Q5ZUT5: N-succinylglutamate 5-semialdehyde dehydrogenase	0.0234038435
+UniRef50_Q5ZUT5: N-succinylglutamate 5-semialdehyde dehydrogenase|unclassified	0.0234038435
+UniRef50_U7FRU5	0.0234002648
+UniRef50_U7FRU5|unclassified	0.0234002648
+UniRef50_D8K6L4	0.0233930033
+UniRef50_D8K6L4|unclassified	0.0233930033
+UniRef50_UPI00035EE9A0: hypothetical protein	0.0233913406
+UniRef50_UPI00035EE9A0: hypothetical protein|unclassified	0.0233913406
+UniRef50_B3DRY6: Bifunctional purine biosynthesis protein PurH	0.0233887621
+UniRef50_B3DRY6: Bifunctional purine biosynthesis protein PurH|unclassified	0.0233887621
+UniRef50_Q7UKJ8: Bifunctional purine biosynthesis protein PurH	0.0233866559
+UniRef50_Q7UKJ8: Bifunctional purine biosynthesis protein PurH|unclassified	0.0233866559
+UniRef50_UPI0002C6355C: PREDICTED: cactin	0.0233862804
+UniRef50_UPI0002C6355C: PREDICTED: cactin|unclassified	0.0233862804
+UniRef50_UPI000345E034: hypothetical protein	0.0233857078
+UniRef50_UPI000345E034: hypothetical protein|unclassified	0.0233857078
+UniRef50_F5UKG0: Hemolysin-type calcium-binding region	0.0233824923
+UniRef50_F5UKG0: Hemolysin-type calcium-binding region|unclassified	0.0233824923
+UniRef50_Q2S2A3: Methionine--tRNA ligase	0.0233787088
+UniRef50_Q2S2A3: Methionine--tRNA ligase|unclassified	0.0233787088
+UniRef50_Q9V595: Uroporphyrinogen decarboxylase	0.0233768644
+UniRef50_Q9V595: Uroporphyrinogen decarboxylase|unclassified	0.0233768644
+UniRef50_UPI0003B42653: AraC family transcriptional regulator	0.0233703855
+UniRef50_UPI0003B42653: AraC family transcriptional regulator|unclassified	0.0233703855
+UniRef50_J8N1B1: TQXA domain-containing protein	0.0233697465
+UniRef50_J8N1B1: TQXA domain-containing protein|unclassified	0.0233697465
+UniRef50_UPI0003B7474D: dihydrolipoamide dehydrogenase	0.0233642962
+UniRef50_UPI0003B7474D: dihydrolipoamide dehydrogenase|unclassified	0.0233642962
+UniRef50_UPI00036CF2E8: hypothetical protein	0.0233636677
+UniRef50_UPI00036CF2E8: hypothetical protein|unclassified	0.0233636677
+UniRef50_F0ZMW4	0.0233617062
+UniRef50_F0ZMW4|unclassified	0.0233617062
+UniRef50_UPI0002627359: aldehyde dehydrogenase	0.0233576108
+UniRef50_UPI0002627359: aldehyde dehydrogenase|unclassified	0.0233576108
+UniRef50_V4GZA8	0.0233497254
+UniRef50_V4GZA8|unclassified	0.0233497254
+UniRef50_UPI0004042A58: hypothetical protein	0.0233376666
+UniRef50_UPI0004042A58: hypothetical protein|unclassified	0.0233376666
+UniRef50_UPI0002F52239: hypothetical protein	0.0233347861
+UniRef50_UPI0002F52239: hypothetical protein|unclassified	0.0233347861
+UniRef50_M0WRZ0	0.0233321926
+UniRef50_M0WRZ0|unclassified	0.0233321926
+UniRef50_UPI00047603F3: hypothetical protein	0.0233280610
+UniRef50_UPI00047603F3: hypothetical protein|unclassified	0.0233280610
+UniRef50_Q8XYN6: Phosphoribosylformylglycinamidine synthase	0.0233280325
+UniRef50_Q8XYN6: Phosphoribosylformylglycinamidine synthase|unclassified	0.0233280325
+UniRef50_UPI0003B4F6D8: hypothetical protein	0.0233275189
+UniRef50_UPI0003B4F6D8: hypothetical protein|unclassified	0.0233275189
+UniRef50_H5WHJ9: Diguanylate cyclase (GGDEF) domain-containing protein	0.0233243697
+UniRef50_H5WHJ9: Diguanylate cyclase (GGDEF) domain-containing protein|unclassified	0.0233243697
+UniRef50_UPI00046FDE0E: hypothetical protein	0.0233178510
+UniRef50_UPI00046FDE0E: hypothetical protein|unclassified	0.0233178510
+UniRef50_B1VLT7: L-carnitine dehydrogenase	0.0233176501
+UniRef50_B1VLT7: L-carnitine dehydrogenase|unclassified	0.0233176501
+UniRef50_UPI000262CD16: guanine deaminase	0.0233167680
+UniRef50_UPI000262CD16: guanine deaminase|unclassified	0.0233167680
+UniRef50_UPI000379CF37: hypothetical protein	0.0233121030
+UniRef50_UPI000379CF37: hypothetical protein|unclassified	0.0233121030
+UniRef50_UPI0003689EF8: hypothetical protein, partial	0.0233072496
+UniRef50_UPI0003689EF8: hypothetical protein, partial|unclassified	0.0233072496
+UniRef50_Q6Z247: Erythrocyte binding protein-like	0.0233044479
+UniRef50_Q6Z247: Erythrocyte binding protein-like|unclassified	0.0233044479
+UniRef50_UPI000364F36D: hypothetical protein	0.0233043058
+UniRef50_UPI000364F36D: hypothetical protein|unclassified	0.0233043058
+UniRef50_UPI00046A9272: hypothetical protein	0.0233016703
+UniRef50_UPI00046A9272: hypothetical protein|unclassified	0.0233016703
+UniRef50_Q8IXK2: Polypeptide N-acetylgalactosaminyltransferase 12	0.0233000431
+UniRef50_Q8IXK2: Polypeptide N-acetylgalactosaminyltransferase 12|unclassified	0.0233000431
+UniRef50_UPI000393F65B: transcriptional regulator	0.0232955872
+UniRef50_UPI000393F65B: transcriptional regulator|unclassified	0.0232955872
+UniRef50_G8Q5F0: VgrG2d	0.0232953251
+UniRef50_G8Q5F0: VgrG2d|unclassified	0.0232953251
+UniRef50_W4VJ74	0.0232949353
+UniRef50_W4VJ74|unclassified	0.0232949353
+UniRef50_UPI000360362F: hypothetical protein	0.0232904409
+UniRef50_UPI000360362F: hypothetical protein|unclassified	0.0232904409
+UniRef50_F2I4S4: Fibronectin-binding protein A domain protein	0.0232903408
+UniRef50_F2I4S4: Fibronectin-binding protein A domain protein|unclassified	0.0232903408
+UniRef50_UPI0003B440C3: glycosyl transferase	0.0232874876
+UniRef50_UPI0003B440C3: glycosyl transferase|unclassified	0.0232874876
+UniRef50_Q3KE48: Macrolide export ATP-binding/permease protein MacB 2	0.0232864928
+UniRef50_Q3KE48: Macrolide export ATP-binding/permease protein MacB 2|unclassified	0.0232864928
+UniRef50_Q00YG8: WGS project CAID00000000 data, contig chromosome 11	0.0232827573
+UniRef50_Q00YG8: WGS project CAID00000000 data, contig chromosome 11|unclassified	0.0232827573
+UniRef50_D8TM72	0.0232827336
+UniRef50_D8TM72|unclassified	0.0232827336
+UniRef50_UPI000344DDDB: hypothetical protein	0.0232818896
+UniRef50_UPI000344DDDB: hypothetical protein|unclassified	0.0232818896
+UniRef50_K7UE53: Putative acetylornithine/succinylornithine aminotransferase family protein	0.0232703092
+UniRef50_K7UE53: Putative acetylornithine/succinylornithine aminotransferase family protein|unclassified	0.0232703092
+UniRef50_B1R2N9: Transporter	0.0232697872
+UniRef50_B1R2N9: Transporter|unclassified	0.0232697872
+UniRef50_UPI0003B74573: cell division protein FtsK	0.0232606626
+UniRef50_UPI0003B74573: cell division protein FtsK|unclassified	0.0232606626
+UniRef50_X1YC61	0.0232424582
+UniRef50_X1YC61|unclassified	0.0232424582
+UniRef50_UPI00036D3FBE: hypothetical protein	0.0232424208
+UniRef50_UPI00036D3FBE: hypothetical protein|unclassified	0.0232424208
+UniRef50_J8G8A5	0.0232411033
+UniRef50_J8G8A5|unclassified	0.0232411033
+UniRef50_UPI0003083CE2: hypothetical protein	0.0232370141
+UniRef50_UPI0003083CE2: hypothetical protein|unclassified	0.0232370141
+UniRef50_UPI0001C373D2: putative nicotinate-nucleotide adenylyltransferase	0.0232362070
+UniRef50_UPI0001C373D2: putative nicotinate-nucleotide adenylyltransferase|unclassified	0.0232362070
+UniRef50_UPI000287FBC5: Preprotein translocase ATPase subunit	0.0232287197
+UniRef50_UPI000287FBC5: Preprotein translocase ATPase subunit|unclassified	0.0232287197
+UniRef50_Z5X8N7	0.0232258234
+UniRef50_Z5X8N7|unclassified	0.0232258234
+UniRef50_UPI0003A885D5: translation initiation factor IF-2	0.0232249712
+UniRef50_UPI0003A885D5: translation initiation factor IF-2|unclassified	0.0232249712
+UniRef50_UPI00029A13AB: lysyl-tRNA synthetase	0.0232234945
+UniRef50_UPI00029A13AB: lysyl-tRNA synthetase|unclassified	0.0232234945
+UniRef50_UPI0002913A0D: hypothetical protein	0.0232199025
+UniRef50_UPI0002913A0D: hypothetical protein|unclassified	0.0232199025
+UniRef50_UPI00047EBD86: hypothetical protein, partial	0.0232123244
+UniRef50_UPI00047EBD86: hypothetical protein, partial|unclassified	0.0232123244
+UniRef50_UPI00037EDD27: hypothetical protein	0.0232061599
+UniRef50_UPI00037EDD27: hypothetical protein|unclassified	0.0232061599
+UniRef50_UPI000429F7B5: signal peptidase I	0.0232046689
+UniRef50_UPI000429F7B5: signal peptidase I|unclassified	0.0232046689
+UniRef50_UPI00026573A8: PREDICTED: 28S ribosomal protein S9, mitochondrial-like	0.0232023007
+UniRef50_UPI00026573A8: PREDICTED: 28S ribosomal protein S9, mitochondrial-like|unclassified	0.0232023007
+UniRef50_UPI0003B76375: acetyl-CoA carboxylase biotin carboxylase subunit	0.0232006570
+UniRef50_UPI0003B76375: acetyl-CoA carboxylase biotin carboxylase subunit|unclassified	0.0232006570
+UniRef50_S5YWV7: Phage terminase, large subunit	0.0232003707
+UniRef50_S5YWV7: Phage terminase, large subunit|unclassified	0.0232003707
+UniRef50_UPI00033398FF: PREDICTED: pinin-like	0.0231943551
+UniRef50_UPI00033398FF: PREDICTED: pinin-like|unclassified	0.0231943551
+UniRef50_UPI0004689981: hypothetical protein	0.0231911188
+UniRef50_UPI0004689981: hypothetical protein|unclassified	0.0231911188
+UniRef50_F0S416: NapC/NirT cytochrome c domain protein	0.0231892782
+UniRef50_F0S416: NapC/NirT cytochrome c domain protein|unclassified	0.0231892782
+UniRef50_D2AEN1	0.0231852457
+UniRef50_D2AEN1|unclassified	0.0231852457
+UniRef50_S4MKK1: Putative Branched-chain amino acid transport protein AzlC	0.0231778804
+UniRef50_S4MKK1: Putative Branched-chain amino acid transport protein AzlC|unclassified	0.0231778804
+UniRef50_UPI000479136C: peptide ABC transporter permease	0.0231757236
+UniRef50_UPI000479136C: peptide ABC transporter permease|unclassified	0.0231757236
+UniRef50_UPI00046A4EAB: membrane protein	0.0231751253
+UniRef50_UPI00046A4EAB: membrane protein|unclassified	0.0231751253
+UniRef50_UPI000464A202: hypothetical protein	0.0231748054
+UniRef50_UPI000464A202: hypothetical protein|unclassified	0.0231748054
+UniRef50_UPI0003A42227: primosomal protein N''	0.0231726448
+UniRef50_UPI0003A42227: primosomal protein N''|unclassified	0.0231726448
+UniRef50_UPI000376AE0D: hypothetical protein	0.0231574599
+UniRef50_UPI000376AE0D: hypothetical protein|unclassified	0.0231574599
+UniRef50_B0JJ94: Potassium-transporting ATPase A chain	0.0231527541
+UniRef50_B0JJ94: Potassium-transporting ATPase A chain|unclassified	0.0231527541
+UniRef50_Q8KFI9: 1-deoxy-D-xylulose-5-phosphate synthase	0.0231461335
+UniRef50_Q8KFI9: 1-deoxy-D-xylulose-5-phosphate synthase|unclassified	0.0231461335
+UniRef50_UPI00036BCB0A: hypothetical protein	0.0231388126
+UniRef50_UPI00036BCB0A: hypothetical protein|unclassified	0.0231388126
+UniRef50_UPI0003AD9F9E: PREDICTED: collagen alpha-2(I) chain-like	0.0231376780
+UniRef50_UPI0003AD9F9E: PREDICTED: collagen alpha-2(I) chain-like|unclassified	0.0231376780
+UniRef50_J2XKN7: Phage-related tail fiber protein	0.0231364552
+UniRef50_J2XKN7: Phage-related tail fiber protein|unclassified	0.0231364552
+UniRef50_M4TWT1	0.0231297527
+UniRef50_M4TWT1|unclassified	0.0231297527
+UniRef50_UPI00036918D5: hypothetical protein	0.0231254382
+UniRef50_UPI00036918D5: hypothetical protein|unclassified	0.0231254382
+UniRef50_E3B8X8: CobQ/CobB/MinD/ParA nucleotide binding domain protein	0.0231237545
+UniRef50_E3B8X8: CobQ/CobB/MinD/ParA nucleotide binding domain protein|unclassified	0.0231237545
+UniRef50_UPI00047D4833: hypothetical protein	0.0231169765
+UniRef50_UPI00047D4833: hypothetical protein|unclassified	0.0231169765
+UniRef50_Q11NV4: Isoleucine--tRNA ligase	0.0231164498
+UniRef50_Q11NV4: Isoleucine--tRNA ligase|unclassified	0.0231164498
+UniRef50_W9VU84	0.0231134152
+UniRef50_W9VU84|unclassified	0.0231134152
+UniRef50_C1DJS8	0.0231093494
+UniRef50_C1DJS8|unclassified	0.0231093494
+UniRef50_UPI0003ABC022: PREDICTED: nicotinate phosphoribosyltransferase isoform X1	0.0230895896
+UniRef50_UPI0003ABC022: PREDICTED: nicotinate phosphoribosyltransferase isoform X1|unclassified	0.0230895896
+UniRef50_A3W978	0.0230889988
+UniRef50_A3W978|unclassified	0.0230889988
+UniRef50_UPI00047D3AFF: hypothetical protein	0.0230870060
+UniRef50_UPI00047D3AFF: hypothetical protein|unclassified	0.0230870060
+UniRef50_UPI0003B3D63E: DEAD/DEAH box helicase	0.0230862092
+UniRef50_UPI0003B3D63E: DEAD/DEAH box helicase|unclassified	0.0230862092
+UniRef50_UPI0001E2F59B: cyclic peptide transporter	0.0230827311
+UniRef50_UPI0001E2F59B: cyclic peptide transporter|unclassified	0.0230827311
+UniRef50_P13196: 5-aminolevulinate synthase, nonspecific, mitochondrial	0.0230767166
+UniRef50_P13196: 5-aminolevulinate synthase, nonspecific, mitochondrial|unclassified	0.0230767166
+UniRef50_V9WGH8	0.0230748997
+UniRef50_V9WGH8|unclassified	0.0230748997
+UniRef50_UPI0003B44979: glutamate:proton symporter	0.0230721150
+UniRef50_UPI0003B44979: glutamate:proton symporter|unclassified	0.0230721150
+UniRef50_Q0VSL0: Alginate O-acetylation protein AlgJ	0.0230710230
+UniRef50_Q0VSL0: Alginate O-acetylation protein AlgJ|unclassified	0.0230710230
+UniRef50_Q27713: Bifunctional dihydrofolate reductase-thymidylate synthase	0.0230707195
+UniRef50_Q27713: Bifunctional dihydrofolate reductase-thymidylate synthase|unclassified	0.0230707195
+UniRef50_UPI000470485E: DNA topoisomerase III	0.0230681994
+UniRef50_UPI000470485E: DNA topoisomerase III|unclassified	0.0230681994
+UniRef50_UPI0002654FEE: PREDICTED: midasin-like	0.0230669888
+UniRef50_UPI0002654FEE: PREDICTED: midasin-like|unclassified	0.0230669888
+UniRef50_UPI000302F3DC: hypothetical protein	0.0230649010
+UniRef50_UPI000302F3DC: hypothetical protein|unclassified	0.0230649010
+UniRef50_UPI000473EDE0: peptidoglycan O-acetyltransferase	0.0230636167
+UniRef50_UPI000473EDE0: peptidoglycan O-acetyltransferase|unclassified	0.0230636167
+UniRef50_UPI0002B43797	0.0230612258
+UniRef50_UPI0002B43797|unclassified	0.0230612258
+UniRef50_Q2YC13	0.0230584682
+UniRef50_Q2YC13|unclassified	0.0230584682
+UniRef50_UPI00034D0A26: hypothetical protein	0.0230575605
+UniRef50_UPI00034D0A26: hypothetical protein|unclassified	0.0230575605
+UniRef50_UPI00036FC8DC: hypothetical protein	0.0230567859
+UniRef50_UPI00036FC8DC: hypothetical protein|unclassified	0.0230567859
+UniRef50_UPI00037971E5: hypothetical protein	0.0230551343
+UniRef50_UPI00037971E5: hypothetical protein|unclassified	0.0230551343
+UniRef50_UPI0003B59BB3: chemotaxis protein	0.0230549322
+UniRef50_UPI0003B59BB3: chemotaxis protein|unclassified	0.0230549322
+UniRef50_UPI0002899E73: 2-oxoglutarate dehydrogenase E1	0.0230519253
+UniRef50_UPI0002899E73: 2-oxoglutarate dehydrogenase E1|unclassified	0.0230519253
+UniRef50_U1FRJ4	0.0230484121
+UniRef50_U1FRJ4|unclassified	0.0230484121
+UniRef50_B8KN49: Beta-Ig-H3/fasciclin	0.0230404196
+UniRef50_B8KN49: Beta-Ig-H3/fasciclin|unclassified	0.0230404196
+UniRef50_E7CGE6: Nickase TraA	0.0230395540
+UniRef50_E7CGE6: Nickase TraA|unclassified	0.0230395540
+UniRef50_R5AY66	0.0230372035
+UniRef50_R5AY66|unclassified	0.0230372035
+UniRef50_W8KRU7	0.0230365134
+UniRef50_W8KRU7|unclassified	0.0230365134
+UniRef50_UPI0004415374: hypothetical protein AURDEDRAFT_126220	0.0230329779
+UniRef50_UPI0004415374: hypothetical protein AURDEDRAFT_126220|unclassified	0.0230329779
+UniRef50_UPI00046ECC0C: hypothetical protein	0.0230322476
+UniRef50_UPI00046ECC0C: hypothetical protein|unclassified	0.0230322476
+UniRef50_Q20624: Molybdenum cofactor biosynthesis protein 1	0.0230215329
+UniRef50_Q20624: Molybdenum cofactor biosynthesis protein 1|unclassified	0.0230215329
+UniRef50_UPI0003188B7E: hypothetical protein	0.0230173516
+UniRef50_UPI0003188B7E: hypothetical protein|unclassified	0.0230173516
+UniRef50_I1FPH4	0.0230153423
+UniRef50_I1FPH4|unclassified	0.0230153423
+UniRef50_X4ZGB9	0.0230144630
+UniRef50_X4ZGB9|unclassified	0.0230144630
+UniRef50_UPI0004414970: hypothetical protein AURDEDRAFT_50801	0.0230127079
+UniRef50_UPI0004414970: hypothetical protein AURDEDRAFT_50801|unclassified	0.0230127079
+UniRef50_A4IK74: Phosphomethylpyrimidine synthase	0.0230116027
+UniRef50_A4IK74: Phosphomethylpyrimidine synthase|unclassified	0.0230116027
+UniRef50_U5W2D0: Cellulose synthesis regulatory protein	0.0230099520
+UniRef50_U5W2D0: Cellulose synthesis regulatory protein|unclassified	0.0230099520
+UniRef50_UPI00045612E9: hypothetical protein PFL1_00663	0.0230079701
+UniRef50_UPI00045612E9: hypothetical protein PFL1_00663|unclassified	0.0230079701
+UniRef50_UPI000362D518: hypothetical protein	0.0230076099
+UniRef50_UPI000362D518: hypothetical protein|unclassified	0.0230076099
+UniRef50_F0YBG4	0.0230056594
+UniRef50_F0YBG4|unclassified	0.0230056594
+UniRef50_G8SXD9: ATP/GTP-binding protein	0.0230032073
+UniRef50_G8SXD9: ATP/GTP-binding protein|unclassified	0.0230032073
+UniRef50_G1LP61	0.0230020138
+UniRef50_G1LP61|unclassified	0.0230020138
+UniRef50_UPI00034C42C5: hypothetical protein	0.0229975058
+UniRef50_UPI00034C42C5: hypothetical protein|unclassified	0.0229975058
+UniRef50_UPI0001FFDEF3: hypothetical protein	0.0229969664
+UniRef50_UPI0001FFDEF3: hypothetical protein|unclassified	0.0229969664
+UniRef50_UPI00035D8274: hypothetical protein	0.0229958184
+UniRef50_UPI00035D8274: hypothetical protein|unclassified	0.0229958184
+UniRef50_S5DVJ1: Putative membrane protein	0.0229872264
+UniRef50_S5DVJ1: Putative membrane protein|unclassified	0.0229872264
+UniRef50_UPI0004675456: cysteine ABC transporter permease	0.0229694604
+UniRef50_UPI0004675456: cysteine ABC transporter permease|unclassified	0.0229694604
+UniRef50_UPI00037FB6E3: hypothetical protein	0.0229680478
+UniRef50_UPI00037FB6E3: hypothetical protein|unclassified	0.0229680478
+UniRef50_UPI0003B3D1AB: peptide ABC transporter ATPase	0.0229637011
+UniRef50_UPI0003B3D1AB: peptide ABC transporter ATPase|unclassified	0.0229637011
+UniRef50_UPI000363CCB9: hypothetical protein	0.0229624749
+UniRef50_UPI000363CCB9: hypothetical protein|unclassified	0.0229624749
+UniRef50_B7KHQ1: Tn7-like transposition protein C	0.0229607955
+UniRef50_B7KHQ1: Tn7-like transposition protein C|unclassified	0.0229607955
+UniRef50_P54979: zeta-carotene-forming phytoene desaturase	0.0229566768
+UniRef50_P54979: zeta-carotene-forming phytoene desaturase|unclassified	0.0229566768
+UniRef50_Q0FEW6: Flagellar motor protein	0.0229562695
+UniRef50_Q0FEW6: Flagellar motor protein|unclassified	0.0229562695
+UniRef50_D8MEB7: Serine-rich repeat protein	0.0229543344
+UniRef50_D8MEB7: Serine-rich repeat protein|unclassified	0.0229543344
+UniRef50_Q73Z69	0.0229541062
+UniRef50_Q73Z69|unclassified	0.0229541062
+UniRef50_UPI000472CD1A: anhydro-N-acetylmuramic acid kinase	0.0229510103
+UniRef50_UPI000472CD1A: anhydro-N-acetylmuramic acid kinase|unclassified	0.0229510103
+UniRef50_A1TRS2: Diguanylate cyclase/phosphodiesterase with GAF sensor	0.0229446031
+UniRef50_A1TRS2: Diguanylate cyclase/phosphodiesterase with GAF sensor|unclassified	0.0229446031
+UniRef50_A5FQ65: Arginine--tRNA ligase	0.0229440331
+UniRef50_A5FQ65: Arginine--tRNA ligase|unclassified	0.0229440331
+UniRef50_A6ZVT8: Cell surface flocculin	0.0229359588
+UniRef50_A6ZVT8: Cell surface flocculin|unclassified	0.0229359588
+UniRef50_D4GP31: D-xylonolactonase	0.0229357502
+UniRef50_D4GP31: D-xylonolactonase|unclassified	0.0229357502
+UniRef50_UPI0001584DF8: conserved hypothetical protein	0.0229318242
+UniRef50_UPI0001584DF8: conserved hypothetical protein|unclassified	0.0229318242
+UniRef50_UPI0003610B2B: hypothetical protein	0.0229312804
+UniRef50_UPI0003610B2B: hypothetical protein|unclassified	0.0229312804
+UniRef50_B7RRB8: Putative cytoplasmic protein,SciH	0.0229296118
+UniRef50_B7RRB8: Putative cytoplasmic protein,SciH|unclassified	0.0229296118
+UniRef50_UPI0004719E67: hypothetical protein	0.0229273597
+UniRef50_UPI0004719E67: hypothetical protein|unclassified	0.0229273597
+UniRef50_UPI000473FF4E: cytosine deaminase, partial	0.0229143718
+UniRef50_UPI000473FF4E: cytosine deaminase, partial|unclassified	0.0229143718
+UniRef50_UPI0003B3FE1F: sensor histidine kinase	0.0229042754
+UniRef50_UPI0003B3FE1F: sensor histidine kinase|unclassified	0.0229042754
+UniRef50_F2RSR9: Chitin synthase activator	0.0229000736
+UniRef50_F2RSR9: Chitin synthase activator|unclassified	0.0229000736
+UniRef50_Q2NDD6: Membrane protein, putative	0.0228993011
+UniRef50_Q2NDD6: Membrane protein, putative|unclassified	0.0228993011
+UniRef50_Q43950: Carbamoyltransferase HypF	0.0228954404
+UniRef50_Q43950: Carbamoyltransferase HypF|unclassified	0.0228954404
+UniRef50_P33287: Pyruvate decarboxylase	0.0228949906
+UniRef50_P33287: Pyruvate decarboxylase|unclassified	0.0228949906
+UniRef50_UPI0003347ABB: PREDICTED: maltase-glucoamylase, intestinal-like	0.0228948243
+UniRef50_UPI0003347ABB: PREDICTED: maltase-glucoamylase, intestinal-like|unclassified	0.0228948243
+UniRef50_UPI000369E763: hypothetical protein	0.0228931941
+UniRef50_UPI000369E763: hypothetical protein|unclassified	0.0228931941
+UniRef50_G0B614	0.0228876183
+UniRef50_G0B614|unclassified	0.0228876183
+UniRef50_K6UJ84: GTP-binding protein (Fragment)	0.0228855435
+UniRef50_K6UJ84: GTP-binding protein (Fragment)|unclassified	0.0228855435
+UniRef50_UPI000347BBD4: hypothetical protein	0.0228796041
+UniRef50_UPI000347BBD4: hypothetical protein|unclassified	0.0228796041
+UniRef50_R5SYF0	0.0228747137
+UniRef50_R5SYF0|unclassified	0.0228747137
+UniRef50_UPI00037DC1E7: hypothetical protein	0.0228635391
+UniRef50_UPI00037DC1E7: hypothetical protein|unclassified	0.0228635391
+UniRef50_R7KCD6	0.0228596210
+UniRef50_R7KCD6|unclassified	0.0228596210
+UniRef50_K8A5P1	0.0228560553
+UniRef50_K8A5P1|unclassified	0.0228560553
+UniRef50_UPI000262636B: DNA gyrase subunit A	0.0228503922
+UniRef50_UPI000262636B: DNA gyrase subunit A|unclassified	0.0228503922
+UniRef50_Q5E0H8: GGDEF domain protein	0.0228493235
+UniRef50_Q5E0H8: GGDEF domain protein|unclassified	0.0228493235
+UniRef50_B1MXB4: Endonuclease MutS2	0.0228491582
+UniRef50_B1MXB4: Endonuclease MutS2|unclassified	0.0228491582
+UniRef50_UPI0004677627: hypothetical protein	0.0228395290
+UniRef50_UPI0004677627: hypothetical protein|unclassified	0.0228395290
+UniRef50_UPI00036D4EE1: hypothetical protein	0.0228346657
+UniRef50_UPI00036D4EE1: hypothetical protein|unclassified	0.0228346657
+UniRef50_UPI0003B74A7C: glycosyl transferase	0.0228338987
+UniRef50_UPI0003B74A7C: glycosyl transferase|unclassified	0.0228338987
+UniRef50_UPI0004713F18: 2-hydroxy-acid oxidase	0.0228327629
+UniRef50_UPI0004713F18: 2-hydroxy-acid oxidase|unclassified	0.0228327629
+UniRef50_G2JRU0: Internalin	0.0228295654
+UniRef50_G2JRU0: Internalin|unclassified	0.0228295654
+UniRef50_S0ESB5: Diguanylate cyclase (GGDEF) domain	0.0228283243
+UniRef50_S0ESB5: Diguanylate cyclase (GGDEF) domain|unclassified	0.0228283243
+UniRef50_UPI0003720A49: hypothetical protein	0.0228280193
+UniRef50_UPI0003720A49: hypothetical protein|unclassified	0.0228280193
+UniRef50_UPI0004449AFF: 5-oxoprolinase	0.0228273155
+UniRef50_UPI0004449AFF: 5-oxoprolinase|unclassified	0.0228273155
+UniRef50_UPI00037CD039: hypothetical protein	0.0228264686
+UniRef50_UPI00037CD039: hypothetical protein|unclassified	0.0228264686
+UniRef50_Z9J744	0.0228245153
+UniRef50_Z9J744|unclassified	0.0228245153
+UniRef50_UPI00037DC049: hypothetical protein	0.0228244108
+UniRef50_UPI00037DC049: hypothetical protein|unclassified	0.0228244108
+UniRef50_E8KDB6: Bacterial membrane protein YfhO	0.0228211223
+UniRef50_E8KDB6: Bacterial membrane protein YfhO|unclassified	0.0228211223
+UniRef50_UPI000376B655: hypothetical protein	0.0228137468
+UniRef50_UPI000376B655: hypothetical protein|unclassified	0.0228137468
+UniRef50_G2KTP0	0.0228124718
+UniRef50_G2KTP0|unclassified	0.0228124718
+UniRef50_UPI000464C182: hypothetical protein	0.0228089803
+UniRef50_UPI000464C182: hypothetical protein|unclassified	0.0228089803
+UniRef50_UPI000300EF77: hypothetical protein	0.0228076480
+UniRef50_UPI000300EF77: hypothetical protein|unclassified	0.0228076480
+UniRef50_R9RCC7	0.0228028445
+UniRef50_R9RCC7|unclassified	0.0228028445
+UniRef50_UPI00016C50A5: N-acetylmuramic acid-6-phosphate etherase	0.0228020974
+UniRef50_UPI00016C50A5: N-acetylmuramic acid-6-phosphate etherase|unclassified	0.0228020974
+UniRef50_P19971: Thymidine phosphorylase	0.0228000269
+UniRef50_P19971: Thymidine phosphorylase|unclassified	0.0228000269
+UniRef50_V4J475	0.0227981761
+UniRef50_V4J475|unclassified	0.0227981761
+UniRef50_UPI00015845FF: conserved hypothetical protein	0.0227929232
+UniRef50_UPI00015845FF: conserved hypothetical protein|unclassified	0.0227929232
+UniRef50_W8AVL9	0.0227926724
+UniRef50_W8AVL9|unclassified	0.0227926724
+UniRef50_Q985R5: Mlr7561 protein	0.0227905104
+UniRef50_Q985R5: Mlr7561 protein|unclassified	0.0227905104
+UniRef50_UPI000362EEF4: hypothetical protein	0.0227842158
+UniRef50_UPI000362EEF4: hypothetical protein|unclassified	0.0227842158
+UniRef50_UPI00046F1EEF: hypothetical protein	0.0227840388
+UniRef50_UPI00046F1EEF: hypothetical protein|unclassified	0.0227840388
+UniRef50_UPI00006CB823: hypothetical protein TTHERM_00579160	0.0227839116
+UniRef50_UPI00006CB823: hypothetical protein TTHERM_00579160|unclassified	0.0227839116
+UniRef50_UPI0003B61CAA: DNA polymerase III subunit alpha	0.0227778606
+UniRef50_UPI0003B61CAA: DNA polymerase III subunit alpha|unclassified	0.0227778606
+UniRef50_C6NXT3: Sigma-54 dependent transcriptional regulator	0.0227773860
+UniRef50_C6NXT3: Sigma-54 dependent transcriptional regulator|unclassified	0.0227773860
+UniRef50_UPI00046A87A7: hypothetical protein	0.0227747916
+UniRef50_UPI00046A87A7: hypothetical protein|unclassified	0.0227747916
+UniRef50_UPI00037EE038: hypothetical protein	0.0227651952
+UniRef50_UPI00037EE038: hypothetical protein|unclassified	0.0227651952
+UniRef50_L8EHD4: Major facilitator transporter	0.0227593133
+UniRef50_L8EHD4: Major facilitator transporter|unclassified	0.0227593133
+UniRef50_UPI000471EFA3: histidine kinase	0.0227587924
+UniRef50_UPI000471EFA3: histidine kinase|unclassified	0.0227587924
+UniRef50_A6UGG8	0.0227581545
+UniRef50_A6UGG8|unclassified	0.0227581545
+UniRef50_UPI00038194DF: hypothetical protein	0.0227486622
+UniRef50_UPI00038194DF: hypothetical protein|unclassified	0.0227486622
+UniRef50_D5WK16: ChaC family protein	0.0227423712
+UniRef50_D5WK16: ChaC family protein|unclassified	0.0227423712
+UniRef50_L0EI82	0.0227335757
+UniRef50_L0EI82|unclassified	0.0227335757
+UniRef50_M4XCL5	0.0227227832
+UniRef50_M4XCL5|unclassified	0.0227227832
+UniRef50_W4H832	0.0227167274
+UniRef50_W4H832|unclassified	0.0227167274
+UniRef50_Q9KXB9: Tail fiber protein	0.0227137607
+UniRef50_Q9KXB9: Tail fiber protein|unclassified	0.0227137607
+UniRef50_UPI00034DB930: hypothetical protein	0.0227091350
+UniRef50_UPI00034DB930: hypothetical protein|unclassified	0.0227091350
+UniRef50_UPI000359E946: PREDICTED: LOW QUALITY PROTEIN: protein diaphanous homolog 2-like, partial	0.0227057395
+UniRef50_UPI000359E946: PREDICTED: LOW QUALITY PROTEIN: protein diaphanous homolog 2-like, partial|unclassified	0.0227057395
+UniRef50_UPI0002195A0E: penicillin-binding protein 2B	0.0227024752
+UniRef50_UPI0002195A0E: penicillin-binding protein 2B|unclassified	0.0227024752
+UniRef50_Q9C8S9: Probable DEAD-box ATP-dependent RNA helicase 48	0.0226994651
+UniRef50_Q9C8S9: Probable DEAD-box ATP-dependent RNA helicase 48|unclassified	0.0226994651
+UniRef50_U6R7K9: Phage tail tape measure protein, TP901 family, core region	0.0226987909
+UniRef50_U6R7K9: Phage tail tape measure protein, TP901 family, core region|unclassified	0.0226987909
+UniRef50_UPI0003F726C9: 5-methyltetrahydrofolate--homocysteine methyltransferase	0.0226968495
+UniRef50_UPI0003F726C9: 5-methyltetrahydrofolate--homocysteine methyltransferase|unclassified	0.0226968495
+UniRef50_UPI0003823562: hypothetical protein	0.0226940714
+UniRef50_UPI0003823562: hypothetical protein|unclassified	0.0226940714
+UniRef50_UPI00036A3416: hypothetical protein	0.0226839264
+UniRef50_UPI00036A3416: hypothetical protein|unclassified	0.0226839264
+UniRef50_A8GC97	0.0226791551
+UniRef50_A8GC97|unclassified	0.0226791551
+UniRef50_UPI0003509B50	0.0226750284
+UniRef50_UPI0003509B50|unclassified	0.0226750284
+UniRef50_UPI00036E77E3: hypothetical protein	0.0226745870
+UniRef50_UPI00036E77E3: hypothetical protein|unclassified	0.0226745870
+UniRef50_H8F9P1	0.0226685788
+UniRef50_H8F9P1|unclassified	0.0226685788
+UniRef50_W4QZS7: Tn7-like transposition protein D	0.0226675057
+UniRef50_W4QZS7: Tn7-like transposition protein D|unclassified	0.0226675057
+UniRef50_UPI00046CCDD5: histidine kinase	0.0226582012
+UniRef50_UPI00046CCDD5: histidine kinase|unclassified	0.0226582012
+UniRef50_UPI000287BED1: cation-transporting ATPase	0.0226547085
+UniRef50_UPI000287BED1: cation-transporting ATPase|unclassified	0.0226547085
+UniRef50_K5YXR4	0.0226512567
+UniRef50_K5YXR4|unclassified	0.0226512567
+UniRef50_UPI0003678D81: hypothetical protein	0.0226492824
+UniRef50_UPI0003678D81: hypothetical protein|unclassified	0.0226492824
+UniRef50_UPI0002DD3A3E: hypothetical protein	0.0226483273
+UniRef50_UPI0002DD3A3E: hypothetical protein|unclassified	0.0226483273
+UniRef50_Q4UMV4: Exodeoxyribonuclease 7 large subunit	0.0226444147
+UniRef50_Q4UMV4: Exodeoxyribonuclease 7 large subunit|unclassified	0.0226444147
+UniRef50_UPI00047AE1AD: hypothetical protein	0.0226440029
+UniRef50_UPI00047AE1AD: hypothetical protein|unclassified	0.0226440029
+UniRef50_P78016: DNA topoisomerase 4 subunit B	0.0226411868
+UniRef50_P78016: DNA topoisomerase 4 subunit B|unclassified	0.0226411868
+UniRef50_UPI000255CCA1: peptidase M23	0.0226400279
+UniRef50_UPI000255CCA1: peptidase M23|unclassified	0.0226400279
+UniRef50_O33259: Methionine synthase	0.0226391733
+UniRef50_O33259: Methionine synthase|unclassified	0.0226391733
+UniRef50_Q142P6: Lipid A export ATP-binding/permease protein MsbA	0.0226391560
+UniRef50_Q142P6: Lipid A export ATP-binding/permease protein MsbA|unclassified	0.0226391560
+UniRef50_H0TTS9: Putative CHAD domain containing protein	0.0226384500
+UniRef50_H0TTS9: Putative CHAD domain containing protein|unclassified	0.0226384500
+UniRef50_UPI000478AF22: hypothetical protein	0.0226384500
+UniRef50_UPI000478AF22: hypothetical protein|unclassified	0.0226384500
+UniRef50_C2NS52	0.0226367260
+UniRef50_C2NS52|unclassified	0.0226367260
+UniRef50_S7TUR0	0.0226286550
+UniRef50_S7TUR0|unclassified	0.0226286550
+UniRef50_R5F1J0: Peptidase M23 family	0.0226275312
+UniRef50_R5F1J0: Peptidase M23 family|unclassified	0.0226275312
+UniRef50_UPI0004638A70: hypothetical protein	0.0226247550
+UniRef50_UPI0004638A70: hypothetical protein|unclassified	0.0226247550
+UniRef50_UPI0002627AD3: dTDP-glucose 4,6-dehydratase	0.0226239145
+UniRef50_UPI0002627AD3: dTDP-glucose 4,6-dehydratase|unclassified	0.0226239145
+UniRef50_UPI00037DA29D: hypothetical protein	0.0226232848
+UniRef50_UPI00037DA29D: hypothetical protein|unclassified	0.0226232848
+UniRef50_G8M6M5: Rhs element Vgr protein	0.0226206426
+UniRef50_G8M6M5: Rhs element Vgr protein|unclassified	0.0226206426
+UniRef50_Q54MI4	0.0226157437
+UniRef50_Q54MI4|unclassified	0.0226157437
+UniRef50_B9GCH9: Urease	0.0226128530
+UniRef50_B9GCH9: Urease|unclassified	0.0226128530
+UniRef50_W4QYR8: Transposon Tn7 transposition protein tnsC	0.0226121021
+UniRef50_W4QYR8: Transposon Tn7 transposition protein tnsC|unclassified	0.0226121021
+UniRef50_W1IWA4	0.0226075018
+UniRef50_W1IWA4|unclassified	0.0226075018
+UniRef50_UPI00040EF0A5: hypothetical protein	0.0226022561
+UniRef50_UPI00040EF0A5: hypothetical protein|unclassified	0.0226022561
+UniRef50_I9NK21: Beta-lactamase	0.0225999291
+UniRef50_I9NK21: Beta-lactamase|unclassified	0.0225999291
+UniRef50_UPI0004724227: hypothetical protein	0.0225965064
+UniRef50_UPI0004724227: hypothetical protein|unclassified	0.0225965064
+UniRef50_E7MPX6: Metallo-beta-lactamase domain protein	0.0225915133
+UniRef50_E7MPX6: Metallo-beta-lactamase domain protein|unclassified	0.0225915133
+UniRef50_UPI0003B34D06: DNA topoisomerase I	0.0225898482
+UniRef50_UPI0003B34D06: DNA topoisomerase I|unclassified	0.0225898482
+UniRef50_UPI0003B67F64: RNA polymerase sigma factor RpoD	0.0225893168
+UniRef50_UPI0003B67F64: RNA polymerase sigma factor RpoD|unclassified	0.0225893168
+UniRef50_UPI00034C05DA: hypothetical protein	0.0225888679
+UniRef50_UPI00034C05DA: hypothetical protein|unclassified	0.0225888679
+UniRef50_UPI0003F647B4: hypothetical protein	0.0225811353
+UniRef50_UPI0003F647B4: hypothetical protein|unclassified	0.0225811353
+UniRef50_E7ETR5: Acyl-coenzyme A synthetase ACSM3, mitochondrial	0.0225755830
+UniRef50_E7ETR5: Acyl-coenzyme A synthetase ACSM3, mitochondrial|unclassified	0.0225755830
+UniRef50_Q4S9N4: Chromosome undetermined SCAF14696, whole genome shotgun sequence. (Fragment)	0.0225738606
+UniRef50_Q4S9N4: Chromosome undetermined SCAF14696, whole genome shotgun sequence. (Fragment)|unclassified	0.0225738606
+UniRef50_B7I1I2: Collagen adhesion protein	0.0225714013
+UniRef50_B7I1I2: Collagen adhesion protein|unclassified	0.0225714013
+UniRef50_G7JG03: ATP synthase subunit a chloroplastic (Fragment)	0.0225705431
+UniRef50_G7JG03: ATP synthase subunit a chloroplastic (Fragment)|unclassified	0.0225705431
+UniRef50_W4XRQ0	0.0225679051
+UniRef50_W4XRQ0|unclassified	0.0225679051
+UniRef50_UPI0004663B21: transcriptional antiterminator	0.0225664340
+UniRef50_UPI0004663B21: transcriptional antiterminator|unclassified	0.0225664340
+UniRef50_Q5DN21: Gp84	0.0225641428
+UniRef50_Q5DN21: Gp84|unclassified	0.0225641428
+UniRef50_UPI000373FC72: hypothetical protein	0.0225622385
+UniRef50_UPI000373FC72: hypothetical protein|unclassified	0.0225622385
+UniRef50_UPI00036AABBE: hypothetical protein	0.0225611692
+UniRef50_UPI00036AABBE: hypothetical protein|unclassified	0.0225611692
+UniRef50_Q67VW8	0.0225553080
+UniRef50_Q67VW8|unclassified	0.0225553080
+UniRef50_UPI0004663658: transposase	0.0225531715
+UniRef50_UPI0004663658: transposase|unclassified	0.0225531715
+UniRef50_D5V5Y4: Hemolysin-type calcium-binding region	0.0225457263
+UniRef50_D5V5Y4: Hemolysin-type calcium-binding region|unclassified	0.0225457263
+UniRef50_F3B401	0.0225443186
+UniRef50_F3B401|unclassified	0.0225443186
+UniRef50_I2ZZE1: Prophage tail fiber C-terminal domain protein	0.0225411754
+UniRef50_I2ZZE1: Prophage tail fiber C-terminal domain protein|unclassified	0.0225411754
+UniRef50_UPI0002B41B78: PREDICTED: zinc transporter 8	0.0225376329
+UniRef50_UPI0002B41B78: PREDICTED: zinc transporter 8|unclassified	0.0225376329
+UniRef50_UPI00037C530D: hypothetical protein	0.0225306593
+UniRef50_UPI00037C530D: hypothetical protein|unclassified	0.0225306593
+UniRef50_UPI000370DC4B: hypothetical protein	0.0225295448
+UniRef50_UPI000370DC4B: hypothetical protein|unclassified	0.0225295448
+UniRef50_UPI0003B63A21: aminotransferase	0.0225249443
+UniRef50_UPI0003B63A21: aminotransferase|unclassified	0.0225249443
+UniRef50_G8PSQ2: Type VI secretion system	0.0225228087
+UniRef50_G8PSQ2: Type VI secretion system|unclassified	0.0225228087
+UniRef50_UPI00047577E0: hypothetical protein	0.0225142441
+UniRef50_UPI00047577E0: hypothetical protein|unclassified	0.0225142441
+UniRef50_UPI0002F39585: hypothetical protein	0.0225137267
+UniRef50_UPI0002F39585: hypothetical protein|unclassified	0.0225137267
+UniRef50_UPI0003B4A2CD: malate:quinone oxidoreductase	0.0225122738
+UniRef50_UPI0003B4A2CD: malate:quinone oxidoreductase|unclassified	0.0225122738
+UniRef50_UPI000360C1C9: hypothetical protein	0.0225104980
+UniRef50_UPI000360C1C9: hypothetical protein|unclassified	0.0225104980
+UniRef50_A6X3N7: Diguanylate cyclase/phosphodiesterase	0.0225073766
+UniRef50_A6X3N7: Diguanylate cyclase/phosphodiesterase|unclassified	0.0225073766
+UniRef50_UPI00042154FE: hypothetical protein	0.0225019677
+UniRef50_UPI00042154FE: hypothetical protein|unclassified	0.0225019677
+UniRef50_Q2SRJ4: Putrescine carbamoyltransferase	0.0224998981
+UniRef50_Q2SRJ4: Putrescine carbamoyltransferase|unclassified	0.0224998981
+UniRef50_UPI000364A6A5: hypothetical protein	0.0224934450
+UniRef50_UPI000364A6A5: hypothetical protein|unclassified	0.0224934450
+UniRef50_UPI000362831E: hypothetical protein	0.0224838781
+UniRef50_UPI000362831E: hypothetical protein|unclassified	0.0224838781
+UniRef50_UPI000359998F: PREDICTED: midasin	0.0224680533
+UniRef50_UPI000359998F: PREDICTED: midasin|unclassified	0.0224680533
+UniRef50_Q99MR8: Methylcrotonoyl-CoA carboxylase subunit alpha, mitochondrial	0.0224680123
+UniRef50_Q99MR8: Methylcrotonoyl-CoA carboxylase subunit alpha, mitochondrial|unclassified	0.0224680123
+UniRef50_V4Z4F4	0.0224667995
+UniRef50_V4Z4F4|unclassified	0.0224667995
+UniRef50_UPI00016C5758: primosomal protein N	0.0224660821
+UniRef50_UPI00016C5758: primosomal protein N|unclassified	0.0224660821
+UniRef50_G8PD79: Fibronectin-binding A family protein	0.0224559765
+UniRef50_G8PD79: Fibronectin-binding A family protein|unclassified	0.0224559765
+UniRef50_Q03DC1: Predicted membrane protein	0.0224544990
+UniRef50_Q03DC1: Predicted membrane protein|unclassified	0.0224544990
+UniRef50_V7F0N8	0.0224503106
+UniRef50_V7F0N8|unclassified	0.0224503106
+UniRef50_Q9X051: Ribose import ATP-binding protein RbsA 2	0.0224426848
+UniRef50_Q9X051: Ribose import ATP-binding protein RbsA 2|unclassified	0.0224426848
+UniRef50_W9V368	0.0224318148
+UniRef50_W9V368|unclassified	0.0224318148
+UniRef50_UPI00047E7181: hypothetical protein	0.0224204712
+UniRef50_UPI00047E7181: hypothetical protein|unclassified	0.0224204712
+UniRef50_S6AMZ5: Adenylate cyclase	0.0224096247
+UniRef50_S6AMZ5: Adenylate cyclase|unclassified	0.0224096247
+UniRef50_UPI0003B75944: hypothetical protein	0.0224056785
+UniRef50_UPI0003B75944: hypothetical protein|unclassified	0.0224056785
+UniRef50_O43865: Putative adenosylhomocysteinase 2	0.0224031911
+UniRef50_O43865: Putative adenosylhomocysteinase 2|unclassified	0.0224031911
+UniRef50_A8J7I0: Predicted protein (Fragment)	0.0224011048
+UniRef50_A8J7I0: Predicted protein (Fragment)|unclassified	0.0224011048
+UniRef50_UPI00035D44F9: hypothetical protein	0.0223986296
+UniRef50_UPI00035D44F9: hypothetical protein|unclassified	0.0223986296
+UniRef50_UPI00029A3335: helicase	0.0223979022
+UniRef50_UPI00029A3335: helicase|unclassified	0.0223979022
+UniRef50_F2I705: Cell envelope-like function transcriptional attenuator common domain protein	0.0223881009
+UniRef50_F2I705: Cell envelope-like function transcriptional attenuator common domain protein|unclassified	0.0223881009
+UniRef50_UPI0002628AE7: methionyl-tRNA synthetase	0.0223840660
+UniRef50_UPI0002628AE7: methionyl-tRNA synthetase|unclassified	0.0223840660
+UniRef50_Q7T6Y8: Ribonucleoside-diphosphate reductase large subunit	0.0223792587
+UniRef50_Q7T6Y8: Ribonucleoside-diphosphate reductase large subunit|unclassified	0.0223792587
+UniRef50_C2YJI3	0.0223761196
+UniRef50_C2YJI3|unclassified	0.0223761196
+UniRef50_W7DTB9: Wall-associated protein	0.0223732578
+UniRef50_W7DTB9: Wall-associated protein|unclassified	0.0223732578
+UniRef50_C1CX76: Putative diguanylate cyclase/phosphodiesterase putative membrane protein	0.0223718735
+UniRef50_C1CX76: Putative diguanylate cyclase/phosphodiesterase putative membrane protein|unclassified	0.0223718735
+UniRef50_B4U9I4: Cysteine--tRNA ligase	0.0223692426
+UniRef50_B4U9I4: Cysteine--tRNA ligase|unclassified	0.0223692426
+UniRef50_UPI00047902AE: hypothetical protein	0.0223662012
+UniRef50_UPI00047902AE: hypothetical protein|unclassified	0.0223662012
+UniRef50_UPI00037E1087: hypothetical protein	0.0223565721
+UniRef50_UPI00037E1087: hypothetical protein|unclassified	0.0223565721
+UniRef50_UPI00047114BD: hypothetical protein	0.0223540296
+UniRef50_UPI00047114BD: hypothetical protein|unclassified	0.0223540296
+UniRef50_Q1YJE9	0.0223359401
+UniRef50_Q1YJE9|unclassified	0.0223359401
+UniRef50_R9T5B9	0.0223351408
+UniRef50_R9T5B9|unclassified	0.0223351408
+UniRef50_UPI00037F91DA: hypothetical protein	0.0223336257
+UniRef50_UPI00037F91DA: hypothetical protein|unclassified	0.0223336257
+UniRef50_UPI0003597593: PREDICTED: proton myo-inositol cotransporter-like isoform X2	0.0223304667
+UniRef50_UPI0003597593: PREDICTED: proton myo-inositol cotransporter-like isoform X2|unclassified	0.0223304667
+UniRef50_L1MQK3	0.0223262742
+UniRef50_L1MQK3|unclassified	0.0223262742
+UniRef50_T6Y301: Xanthine dehydrogenase accessory factor	0.0223199714
+UniRef50_T6Y301: Xanthine dehydrogenase accessory factor|unclassified	0.0223199714
+UniRef50_UPI00046D6123: PREDICTED: leucine-rich repeat extensin-like protein 3	0.0223175605
+UniRef50_UPI00046D6123: PREDICTED: leucine-rich repeat extensin-like protein 3|unclassified	0.0223175605
+UniRef50_UPI0002D680F8: hydroxymethylglutaryl-CoA lyase	0.0223093967
+UniRef50_UPI0002D680F8: hydroxymethylglutaryl-CoA lyase|unclassified	0.0223093967
+UniRef50_UPI00016C5336: ATP-dependent RNA helicase	0.0222940487
+UniRef50_UPI00016C5336: ATP-dependent RNA helicase|unclassified	0.0222940487
+UniRef50_S4XJH3	0.0222890423
+UniRef50_S4XJH3|unclassified	0.0222890423
+UniRef50_Q0FZ35	0.0222881068
+UniRef50_Q0FZ35|unclassified	0.0222881068
+UniRef50_UPI0003BD4554	0.0222849575
+UniRef50_UPI0003BD4554|unclassified	0.0222849575
+UniRef50_R4LSC2: PE-PGRS family protein PE_PGRS6	0.0222780296
+UniRef50_R4LSC2: PE-PGRS family protein PE_PGRS6|unclassified	0.0222780296
+UniRef50_B9L996: Iron-molybdenum cofactor-binding protein	0.0222777416
+UniRef50_B9L996: Iron-molybdenum cofactor-binding protein|unclassified	0.0222777416
+UniRef50_A0A011MQD2: DNA primase	0.0222729542
+UniRef50_A0A011MQD2: DNA primase|unclassified	0.0222729542
+UniRef50_UPI0003B75DB3: ferredoxin	0.0222696418
+UniRef50_UPI0003B75DB3: ferredoxin|unclassified	0.0222696418
+UniRef50_UPI0003C84C0F: PREDICTED: acetyl-CoA acetyltransferase, mitochondrial	0.0222688084
+UniRef50_UPI0003C84C0F: PREDICTED: acetyl-CoA acetyltransferase, mitochondrial|unclassified	0.0222688084
+UniRef50_P38674: Ketol-acid reductoisomerase, mitochondrial	0.0222570484
+UniRef50_P38674: Ketol-acid reductoisomerase, mitochondrial|unclassified	0.0222570484
+UniRef50_J8SW81: YhgE/Pip domain-containing protein	0.0222567167
+UniRef50_J8SW81: YhgE/Pip domain-containing protein|unclassified	0.0222567167
+UniRef50_Q53FZ2: Acyl-coenzyme A synthetase ACSM3, mitochondrial	0.0222534582
+UniRef50_Q53FZ2: Acyl-coenzyme A synthetase ACSM3, mitochondrial|unclassified	0.0222534582
+UniRef50_UPI00029B39C1: polysaccharide biosynthesis protein CapD	0.0222521474
+UniRef50_UPI00029B39C1: polysaccharide biosynthesis protein CapD|unclassified	0.0222521474
+UniRef50_U6LIK5	0.0222481155
+UniRef50_U6LIK5|unclassified	0.0222481155
+UniRef50_UPI00040B989C: alkaline phosphatase	0.0222449680
+UniRef50_UPI00040B989C: alkaline phosphatase|unclassified	0.0222449680
+UniRef50_UPI00037254A2: hypothetical protein	0.0222416734
+UniRef50_UPI00037254A2: hypothetical protein|unclassified	0.0222416734
+UniRef50_V4TID6: NnrS protein involved in response to NO	0.0222398871
+UniRef50_V4TID6: NnrS protein involved in response to NO|unclassified	0.0222398871
+UniRef50_J1LM10: Cell wall-binding repeat protein	0.0222335255
+UniRef50_J1LM10: Cell wall-binding repeat protein|unclassified	0.0222335255
+UniRef50_Q96RQ3: Methylcrotonoyl-CoA carboxylase subunit alpha, mitochondrial	0.0222298457
+UniRef50_Q96RQ3: Methylcrotonoyl-CoA carboxylase subunit alpha, mitochondrial|unclassified	0.0222298457
+UniRef50_UPI00036E638B: hypothetical protein	0.0222273260
+UniRef50_UPI00036E638B: hypothetical protein|unclassified	0.0222273260
+UniRef50_UPI00046A5CB8: histidine kinase	0.0222207102
+UniRef50_UPI00046A5CB8: histidine kinase|unclassified	0.0222207102
+UniRef50_V1FRG1	0.0222160540
+UniRef50_V1FRG1|unclassified	0.0222160540
+UniRef50_UPI000364F5FC: hypothetical protein	0.0222066796
+UniRef50_UPI000364F5FC: hypothetical protein|unclassified	0.0222066796
+UniRef50_UPI00017448C8: DEAD/DEAH box helicase-like protein	0.0222031147
+UniRef50_UPI00017448C8: DEAD/DEAH box helicase-like protein|unclassified	0.0222031147
+UniRef50_W7D288	0.0222026724
+UniRef50_W7D288|unclassified	0.0222026724
+UniRef50_UPI00038172FC: hypothetical protein	0.0222020541
+UniRef50_UPI00038172FC: hypothetical protein|unclassified	0.0222020541
+UniRef50_UPI000479DF0E: hypothetical protein	0.0221987252
+UniRef50_UPI000479DF0E: hypothetical protein|unclassified	0.0221987252
+UniRef50_UPI000478EAEF: hypothetical protein	0.0221938916
+UniRef50_UPI000478EAEF: hypothetical protein|unclassified	0.0221938916
+UniRef50_G8M1T6	0.0221929348
+UniRef50_G8M1T6|unclassified	0.0221929348
+UniRef50_UPI0004105041: hypothetical protein	0.0221926680
+UniRef50_UPI0004105041: hypothetical protein|unclassified	0.0221926680
+UniRef50_Q1GML0: Diguanylate cyclase/phosphodiesterase	0.0221891728
+UniRef50_Q1GML0: Diguanylate cyclase/phosphodiesterase|unclassified	0.0221891728
+UniRef50_UPI0003D0CB98: PREDICTED: acyl-coenzyme A synthetase ACSM3, mitochondrial isoform X1	0.0221837854
+UniRef50_UPI0003D0CB98: PREDICTED: acyl-coenzyme A synthetase ACSM3, mitochondrial isoform X1|unclassified	0.0221837854
+UniRef50_UPI0000E10DEA: Mg chelatase, subunit ChlI	0.0221824528
+UniRef50_UPI0000E10DEA: Mg chelatase, subunit ChlI|unclassified	0.0221824528
+UniRef50_S9QT99	0.0221724807
+UniRef50_S9QT99|unclassified	0.0221724807
+UniRef50_S5R2G1	0.0221699824
+UniRef50_S5R2G1|unclassified	0.0221699824
+UniRef50_O86508: Urease subunit alpha 2	0.0221630830
+UniRef50_O86508: Urease subunit alpha 2|unclassified	0.0221630830
+UniRef50_UPI00037DF23F: hypothetical protein	0.0221488262
+UniRef50_UPI00037DF23F: hypothetical protein|unclassified	0.0221488262
+UniRef50_UPI00047C314D: glutamate synthase	0.0221481028
+UniRef50_UPI00047C314D: glutamate synthase|unclassified	0.0221481028
+UniRef50_I6S881: TraA conjugation protein	0.0221411894
+UniRef50_I6S881: TraA conjugation protein|unclassified	0.0221411894
+UniRef50_UPI00034C8F0A: formate dehydrogenase subunit alpha	0.0221409484
+UniRef50_UPI00034C8F0A: formate dehydrogenase subunit alpha|unclassified	0.0221409484
+UniRef50_UPI00046B3718: PREDICTED: LOW QUALITY PROTEIN: fibrosin-1-like protein	0.0221339967
+UniRef50_UPI00046B3718: PREDICTED: LOW QUALITY PROTEIN: fibrosin-1-like protein|unclassified	0.0221339967
+UniRef50_UPI00046ECC7C: hypothetical protein, partial	0.0221288529
+UniRef50_UPI00046ECC7C: hypothetical protein, partial|unclassified	0.0221288529
+UniRef50_C4RQ17	0.0221204440
+UniRef50_C4RQ17|unclassified	0.0221204440
+UniRef50_Q89AR5: Threonine synthase	0.0221195327
+UniRef50_Q89AR5: Threonine synthase|unclassified	0.0221195327
+UniRef50_E6VHF0: Flagellar hook-basal body protein	0.0221183214
+UniRef50_E6VHF0: Flagellar hook-basal body protein|unclassified	0.0221183214
+UniRef50_UPI0003F49121: hypothetical protein TREMEDRAFT_73008	0.0221137178
+UniRef50_UPI0003F49121: hypothetical protein TREMEDRAFT_73008|unclassified	0.0221137178
+UniRef50_W1W9X0: Fusaric acid resistance protein fusE	0.0221132481
+UniRef50_W1W9X0: Fusaric acid resistance protein fusE|unclassified	0.0221132481
+UniRef50_Q8D333: Leucine--tRNA ligase	0.0221050753
+UniRef50_Q8D333: Leucine--tRNA ligase|unclassified	0.0221050753
+UniRef50_R6NB19	0.0221016788
+UniRef50_R6NB19|unclassified	0.0221016788
+UniRef50_Q5NPH0: Bifunctional uridylyltransferase/uridylyl-removing enzyme	0.0221012472
+UniRef50_Q5NPH0: Bifunctional uridylyltransferase/uridylyl-removing enzyme|unclassified	0.0221012472
+UniRef50_Q4X0C2: ATP-dependent RNA helicase dbp9	0.0221011467
+UniRef50_Q4X0C2: ATP-dependent RNA helicase dbp9|unclassified	0.0221011467
+UniRef50_B6YRJ5	0.0221000066
+UniRef50_B6YRJ5|unclassified	0.0221000066
+UniRef50_B6IWY4	0.0220994288
+UniRef50_B6IWY4|unclassified	0.0220994288
+UniRef50_A0A023RIN0: Long-chain fatty acid transport protein 1	0.0220926725
+UniRef50_A0A023RIN0: Long-chain fatty acid transport protein 1|unclassified	0.0220926725
+UniRef50_A0A055SYK3: PE-PGRS family protein PE_PGRS44	0.0220859330
+UniRef50_A0A055SYK3: PE-PGRS family protein PE_PGRS44|unclassified	0.0220859330
+UniRef50_UPI00037D06A7: hypothetical protein	0.0220850342
+UniRef50_UPI00037D06A7: hypothetical protein|unclassified	0.0220850342
+UniRef50_B1ZS98: Polyribonucleotide nucleotidyltransferase	0.0220810071
+UniRef50_B1ZS98: Polyribonucleotide nucleotidyltransferase|unclassified	0.0220810071
+UniRef50_G7RBY0	0.0220773962
+UniRef50_G7RBY0|unclassified	0.0220773962
+UniRef50_UPI000366C688: hypothetical protein	0.0220652624
+UniRef50_UPI000366C688: hypothetical protein|unclassified	0.0220652624
+UniRef50_UPI00036F72BE: hypothetical protein	0.0220634885
+UniRef50_UPI00036F72BE: hypothetical protein|unclassified	0.0220634885
+UniRef50_UPI00045E5BA7: diguanylate cyclase	0.0220633831
+UniRef50_UPI00045E5BA7: diguanylate cyclase|unclassified	0.0220633831
+UniRef50_I8AM60	0.0220585620
+UniRef50_I8AM60|unclassified	0.0220585620
+UniRef50_Q8RHI7: DNA-directed RNA polymerase subunit beta'	0.0220502679
+UniRef50_Q8RHI7: DNA-directed RNA polymerase subunit beta'|unclassified	0.0220502679
+UniRef50_UPI000371974E: hypothetical protein	0.0220349499
+UniRef50_UPI000371974E: hypothetical protein|unclassified	0.0220349499
+UniRef50_UPI00041C949A: signal peptidase I	0.0220320533
+UniRef50_UPI00041C949A: signal peptidase I|unclassified	0.0220320533
+UniRef50_N9UTV8: Putative phage tail protein	0.0220292697
+UniRef50_N9UTV8: Putative phage tail protein|unclassified	0.0220292697
+UniRef50_UPI00036CDE87: hypothetical protein	0.0220275839
+UniRef50_UPI00036CDE87: hypothetical protein|unclassified	0.0220275839
+UniRef50_K2KKI9: Signaling protein	0.0220270774
+UniRef50_K2KKI9: Signaling protein|unclassified	0.0220270774
+UniRef50_UPI000379B900: hypothetical protein	0.0220177742
+UniRef50_UPI000379B900: hypothetical protein|unclassified	0.0220177742
+UniRef50_UPI0004710CA8: hypothetical protein	0.0220168196
+UniRef50_UPI0004710CA8: hypothetical protein|unclassified	0.0220168196
+UniRef50_A0A031GQQ9	0.0220156711
+UniRef50_A0A031GQQ9|unclassified	0.0220156711
+UniRef50_P25306: Threonine dehydratase biosynthetic, chloroplastic	0.0220104597
+UniRef50_P25306: Threonine dehydratase biosynthetic, chloroplastic|unclassified	0.0220104597
+UniRef50_X2GPQ0	0.0220072550
+UniRef50_X2GPQ0|unclassified	0.0220072550
+UniRef50_K9DGK5: Diguanylate cyclase (GGDEF) domain-containing protein	0.0220056466
+UniRef50_K9DGK5: Diguanylate cyclase (GGDEF) domain-containing protein|unclassified	0.0220056466
+UniRef50_A0A019DDQ7: Membrane protein	0.0220042092
+UniRef50_A0A019DDQ7: Membrane protein|unclassified	0.0220042092
+UniRef50_B0RZJ0: Proline--tRNA ligase	0.0220029092
+UniRef50_B0RZJ0: Proline--tRNA ligase|unclassified	0.0220029092
+UniRef50_Q9WXR9: Uronate isomerase	0.0219991672
+UniRef50_Q9WXR9: Uronate isomerase|unclassified	0.0219991672
+UniRef50_R5TVD4	0.0219874909
+UniRef50_R5TVD4|unclassified	0.0219874909
+UniRef50_UPI00014BB14F: hypothetical protein	0.0219864201
+UniRef50_UPI00014BB14F: hypothetical protein|unclassified	0.0219864201
+UniRef50_UPI0003A8568F: diguanylate cyclase	0.0219820927
+UniRef50_UPI0003A8568F: diguanylate cyclase|unclassified	0.0219820927
+UniRef50_UPI00047C8684: glycoside hydrolase family 65	0.0219810331
+UniRef50_UPI00047C8684: glycoside hydrolase family 65|unclassified	0.0219810331
+UniRef50_UPI0003288DDD: PREDICTED: d-3-phosphoglycerate dehydrogenase	0.0219799755
+UniRef50_UPI0003288DDD: PREDICTED: d-3-phosphoglycerate dehydrogenase|unclassified	0.0219799755
+UniRef50_C0ZPK5: ATP-dependent zinc metalloprotease FtsH	0.0219778582
+UniRef50_C0ZPK5: ATP-dependent zinc metalloprotease FtsH|unclassified	0.0219778582
+UniRef50_UPI00045EC641: NADH:flavin oxidoreductase	0.0219754510
+UniRef50_UPI00045EC641: NADH:flavin oxidoreductase|unclassified	0.0219754510
+UniRef50_U7R347	0.0219737154
+UniRef50_U7R347|unclassified	0.0219737154
+UniRef50_UPI0003B4B8D8: GntR family transcriptional regulator	0.0219718113
+UniRef50_UPI0003B4B8D8: GntR family transcriptional regulator|unclassified	0.0219718113
+UniRef50_A0A017HTD7: Flagellar motor rotation protein MotB	0.0219712930
+UniRef50_A0A017HTD7: Flagellar motor rotation protein MotB|unclassified	0.0219712930
+UniRef50_A0A024JDY6: Similar to Saccharomyces cerevisiae YGR171C MSM1 Mitochondrial methionyl-tRNA synthetase (MetRS)	0.0219683029
+UniRef50_A0A024JDY6: Similar to Saccharomyces cerevisiae YGR171C MSM1 Mitochondrial methionyl-tRNA synthetase (MetRS)|unclassified	0.0219683029
+UniRef50_C1EK72: S-layer protein	0.0219664380
+UniRef50_C1EK72: S-layer protein|unclassified	0.0219664380
+UniRef50_C6SCL1: PmbA protein	0.0219614533
+UniRef50_C6SCL1: PmbA protein|unclassified	0.0219614533
+UniRef50_UPI0003EDE4C6: PREDICTED: bifunctional glutamate/proline--tRNA ligase-like, partial	0.0219556762
+UniRef50_UPI0003EDE4C6: PREDICTED: bifunctional glutamate/proline--tRNA ligase-like, partial|unclassified	0.0219556762
+UniRef50_O66680: Leucine--tRNA ligase subunit alpha	0.0219497571
+UniRef50_O66680: Leucine--tRNA ligase subunit alpha|unclassified	0.0219497571
+UniRef50_UPI00045E618F: hypothetical protein	0.0219461271
+UniRef50_UPI00045E618F: hypothetical protein|unclassified	0.0219461271
+UniRef50_UPI00035C7EF6: hypothetical protein	0.0219453067
+UniRef50_UPI00035C7EF6: hypothetical protein|unclassified	0.0219453067
+UniRef50_K0SF59	0.0219449929
+UniRef50_K0SF59|unclassified	0.0219449929
+UniRef50_UPI00016C4C40: techoic acid ABC transporter ATPase	0.0219428022
+UniRef50_UPI00016C4C40: techoic acid ABC transporter ATPase|unclassified	0.0219428022
+UniRef50_UPI000255652B: arginyl-tRNA synthetase	0.0219387046
+UniRef50_UPI000255652B: arginyl-tRNA synthetase|unclassified	0.0219387046
+UniRef50_UPI00026C8397: cysteine desulfurase	0.0219373295
+UniRef50_UPI00026C8397: cysteine desulfurase|unclassified	0.0219373295
+UniRef50_E4PR67: ABC-type Fe3+-hydroxamate transport system, periplasmic component	0.0219369349
+UniRef50_E4PR67: ABC-type Fe3+-hydroxamate transport system, periplasmic component|unclassified	0.0219369349
+UniRef50_B5EKE2: Transposase IS66	0.0219295501
+UniRef50_B5EKE2: Transposase IS66|unclassified	0.0219295501
+UniRef50_P48027: Sensor protein GacS	0.0219273844
+UniRef50_P48027: Sensor protein GacS|unclassified	0.0219273844
+UniRef50_UPI000237D200: membrane protein	0.0219152714
+UniRef50_UPI000237D200: membrane protein|unclassified	0.0219152714
+UniRef50_UPI000304D965: hypothetical protein	0.0219110919
+UniRef50_UPI000304D965: hypothetical protein|unclassified	0.0219110919
+UniRef50_I4GV48	0.0219047513
+UniRef50_I4GV48|unclassified	0.0219047513
+UniRef50_UPI00034A188B: hypothetical protein	0.0218962753
+UniRef50_UPI00034A188B: hypothetical protein|unclassified	0.0218962753
+UniRef50_UPI00037C2F5A: hypothetical protein	0.0218883111
+UniRef50_UPI00037C2F5A: hypothetical protein|unclassified	0.0218883111
+UniRef50_T1XTP8	0.0218805809
+UniRef50_T1XTP8|unclassified	0.0218805809
+UniRef50_T1ZUA2	0.0218799201
+UniRef50_T1ZUA2|unclassified	0.0218799201
+UniRef50_U4LV30	0.0218781092
+UniRef50_U4LV30|unclassified	0.0218781092
+UniRef50_U6IFH0: Nuclear pore complex protein nup214	0.0218747282
+UniRef50_U6IFH0: Nuclear pore complex protein nup214|unclassified	0.0218747282
+UniRef50_UPI000467D307: valyl-tRNA synthetase, partial	0.0218659660
+UniRef50_UPI000467D307: valyl-tRNA synthetase, partial|unclassified	0.0218659660
+UniRef50_UPI0003AF9315: PREDICTED: acyl-CoA dehydrogenase family member 9, mitochondrial	0.0218648215
+UniRef50_UPI0003AF9315: PREDICTED: acyl-CoA dehydrogenase family member 9, mitochondrial|unclassified	0.0218648215
+UniRef50_A7I2K0: Type I secretion target ggxgxdxxx repeat (2 copies) domain protein	0.0218530291
+UniRef50_A7I2K0: Type I secretion target ggxgxdxxx repeat (2 copies) domain protein|unclassified	0.0218530291
+UniRef50_UPI000367DAA4: hypothetical protein	0.0218520938
+UniRef50_UPI000367DAA4: hypothetical protein|unclassified	0.0218520938
+UniRef50_D9WSF3: Vegetative cell wall protein gp1 (Hydroxyproline-rich glycoprotein 1) (Fragment)	0.0218431855
+UniRef50_D9WSF3: Vegetative cell wall protein gp1 (Hydroxyproline-rich glycoprotein 1) (Fragment)|unclassified	0.0218431855
+UniRef50_UPI00037D6CA9: hypothetical protein	0.0218421667
+UniRef50_UPI00037D6CA9: hypothetical protein|unclassified	0.0218421667
+UniRef50_B0VHH0: 3-keto-5-aminohexanoate cleavage enzyme	0.0218408612
+UniRef50_B0VHH0: 3-keto-5-aminohexanoate cleavage enzyme|unclassified	0.0218408612
+UniRef50_UPI00036DCDCE: hypothetical protein	0.0218399324
+UniRef50_UPI00036DCDCE: hypothetical protein|unclassified	0.0218399324
+UniRef50_UPI00046CF429: hypothetical protein	0.0218263526
+UniRef50_UPI00046CF429: hypothetical protein|unclassified	0.0218263526
+UniRef50_F0YAC3	0.0218239648
+UniRef50_F0YAC3|unclassified	0.0218239648
+UniRef50_Q01813: ATP-dependent 6-phosphofructokinase, platelet type	0.0218166857
+UniRef50_Q01813: ATP-dependent 6-phosphofructokinase, platelet type|unclassified	0.0218166857
+UniRef50_A4N426: Transcription-repair coupling factor	0.0218138385
+UniRef50_A4N426: Transcription-repair coupling factor|unclassified	0.0218138385
+UniRef50_W7C509	0.0218104066
+UniRef50_W7C509|unclassified	0.0218104066
+UniRef50_B4SEB2: Short-chain dehydrogenase/reductase SDR	0.0218092640
+UniRef50_B4SEB2: Short-chain dehydrogenase/reductase SDR|unclassified	0.0218092640
+UniRef50_UPI000252BED4	0.0218047954
+UniRef50_UPI000252BED4|unclassified	0.0218047954
+UniRef50_Q9HGZ1: ATP-dependent 6-phosphofructokinase 1	0.0218029957
+UniRef50_Q9HGZ1: ATP-dependent 6-phosphofructokinase 1|unclassified	0.0218029957
+UniRef50_UPI0004729BC8: hypothetical protein	0.0217977630
+UniRef50_UPI0004729BC8: hypothetical protein|unclassified	0.0217977630
+UniRef50_E7B0J5: Putative calcium binding hemolysin	0.0217958584
+UniRef50_E7B0J5: Putative calcium binding hemolysin|unclassified	0.0217958584
+UniRef50_UPI0003817C3B: hypothetical protein	0.0217917272
+UniRef50_UPI0003817C3B: hypothetical protein|unclassified	0.0217917272
+UniRef50_C4L8G6: Type VI secretion protein IcmF	0.0217902036
+UniRef50_C4L8G6: Type VI secretion protein IcmF|unclassified	0.0217902036
+UniRef50_U6G6Z9	0.0217891872
+UniRef50_U6G6Z9|unclassified	0.0217891872
+UniRef50_C3F5H8: Tn7-like transposition protein C	0.0217867112
+UniRef50_C3F5H8: Tn7-like transposition protein C|unclassified	0.0217867112
+UniRef50_M4GCS0	0.0217824848
+UniRef50_M4GCS0|unclassified	0.0217824848
+UniRef50_D6KFM1: Beta-lactamase	0.0217797858
+UniRef50_D6KFM1: Beta-lactamase|unclassified	0.0217797858
+UniRef50_UPI0003333037: PREDICTED: peroxisomal bifunctional enzyme-like	0.0217777968
+UniRef50_UPI0003333037: PREDICTED: peroxisomal bifunctional enzyme-like|unclassified	0.0217777968
+UniRef50_UPI000407A2C3: FAD-dependent oxidoreductase	0.0217752602
+UniRef50_UPI000407A2C3: FAD-dependent oxidoreductase|unclassified	0.0217752602
+UniRef50_P48591: Ribonucleoside-diphosphate reductase large subunit	0.0217748968
+UniRef50_P48591: Ribonucleoside-diphosphate reductase large subunit|unclassified	0.0217748968
+UniRef50_UPI000364A135: hypothetical protein	0.0217744691
+UniRef50_UPI000364A135: hypothetical protein|unclassified	0.0217744691
+UniRef50_UPI000468C0C0: hypothetical protein	0.0217717448
+UniRef50_UPI000468C0C0: hypothetical protein|unclassified	0.0217717448
+UniRef50_UPI0003B56B90: DNA mismatch repair protein MutS	0.0217647412
+UniRef50_UPI0003B56B90: DNA mismatch repair protein MutS|unclassified	0.0217647412
+UniRef50_UPI00022347EB: PREDICTED: hypothetical protein LOC100669665	0.0217606083
+UniRef50_UPI00022347EB: PREDICTED: hypothetical protein LOC100669665|unclassified	0.0217606083
+UniRef50_C6PYP8: Diguanylate cyclase (GGDEF) domain protein	0.0217502863
+UniRef50_C6PYP8: Diguanylate cyclase (GGDEF) domain protein|unclassified	0.0217502863
+UniRef50_UPI0003A6FA64: membrane protein	0.0217494396
+UniRef50_UPI0003A6FA64: membrane protein|unclassified	0.0217494396
+UniRef50_R8AQC6: ABC transporter, periplasmic substrate-binding protein YnjB	0.0217457037
+UniRef50_R8AQC6: ABC transporter, periplasmic substrate-binding protein YnjB|unclassified	0.0217457037
+UniRef50_D8TIT9	0.0217390901
+UniRef50_D8TIT9|unclassified	0.0217390901
+UniRef50_UPI00028877F3: peptide ABC transporter permease	0.0217388203
+UniRef50_UPI00028877F3: peptide ABC transporter permease|unclassified	0.0217388203
+UniRef50_UPI00035EF443: hypothetical protein	0.0217380626
+UniRef50_UPI00035EF443: hypothetical protein|unclassified	0.0217380626
+UniRef50_A0A022FVN3: Calcium transporter ChaC	0.0217348911
+UniRef50_A0A022FVN3: Calcium transporter ChaC|unclassified	0.0217348911
+UniRef50_UPI0003101061: hypothetical protein	0.0217345388
+UniRef50_UPI0003101061: hypothetical protein|unclassified	0.0217345388
+UniRef50_UPI000464121D: hypothetical protein	0.0217337221
+UniRef50_UPI000464121D: hypothetical protein|unclassified	0.0217337221
+UniRef50_UPI00041080FD: hypothetical protein	0.0217297867
+UniRef50_UPI00041080FD: hypothetical protein|unclassified	0.0217297867
+UniRef50_UPI000477C7AD: DNA gyrase subunit A	0.0217193203
+UniRef50_UPI000477C7AD: DNA gyrase subunit A|unclassified	0.0217193203
+UniRef50_UPI0003B5589D: hypothetical protein	0.0217182154
+UniRef50_UPI0003B5589D: hypothetical protein|unclassified	0.0217182154
+UniRef50_UPI000469F5BA: hypothetical protein	0.0217146627
+UniRef50_UPI000469F5BA: hypothetical protein|unclassified	0.0217146627
+UniRef50_I8SIR3: Flp pilus assembly protein CpaB	0.0217144835
+UniRef50_I8SIR3: Flp pilus assembly protein CpaB|unclassified	0.0217144835
+UniRef50_R2NF53	0.0217131516
+UniRef50_R2NF53|unclassified	0.0217131516
+UniRef50_UPI000415C161: phospholipase C	0.0217102723
+UniRef50_UPI000415C161: phospholipase C|unclassified	0.0217102723
+UniRef50_Q3JUF7	0.0217016656
+UniRef50_Q3JUF7|unclassified	0.0217016656
+UniRef50_UPI000298FE30: PREDICTED: LOW QUALITY PROTEIN: alanine--glyoxylate aminotransferase 2, mitochondrial	0.0216986726
+UniRef50_UPI000298FE30: PREDICTED: LOW QUALITY PROTEIN: alanine--glyoxylate aminotransferase 2, mitochondrial|unclassified	0.0216986726
+UniRef50_Q01LV4: OSIGBa0135A16.4 protein	0.0216863030
+UniRef50_Q01LV4: OSIGBa0135A16.4 protein|unclassified	0.0216863030
+UniRef50_UPI00036DECB5: hypothetical protein	0.0216822907
+UniRef50_UPI00036DECB5: hypothetical protein|unclassified	0.0216822907
+UniRef50_UPI0003B303D4: hypothetical protein	0.0216791004
+UniRef50_UPI0003B303D4: hypothetical protein|unclassified	0.0216791004
+UniRef50_UPI0003C2993A: PREDICTED: LOW QUALITY PROTEIN: striated muscle preferentially expressed protein kinase	0.0216776336
+UniRef50_UPI0003C2993A: PREDICTED: LOW QUALITY PROTEIN: striated muscle preferentially expressed protein kinase|unclassified	0.0216776336
+UniRef50_UPI0004719DB7: ABC transporter	0.0216716274
+UniRef50_UPI0004719DB7: ABC transporter|unclassified	0.0216716274
+UniRef50_UPI0003A1CBE1: hypothetical protein	0.0216655790
+UniRef50_UPI0003A1CBE1: hypothetical protein|unclassified	0.0216655790
+UniRef50_UPI00029B5215: proton-translocating NADH-quinone oxidoreductase subunit L	0.0216653008
+UniRef50_UPI00029B5215: proton-translocating NADH-quinone oxidoreductase subunit L|unclassified	0.0216653008
+UniRef50_UPI000367032B: hypothetical protein	0.0216617932
+UniRef50_UPI000367032B: hypothetical protein|unclassified	0.0216617932
+UniRef50_UPI000301C3F2: hypothetical protein	0.0216553418
+UniRef50_UPI000301C3F2: hypothetical protein|unclassified	0.0216553418
+UniRef50_UPI0003A8D6F4: histidine kinase	0.0216518372
+UniRef50_UPI0003A8D6F4: histidine kinase|unclassified	0.0216518372
+UniRef50_A5IMS4: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	0.0216430001
+UniRef50_A5IMS4: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.0216430001
+UniRef50_T0LF05	0.0216404453
+UniRef50_T0LF05|unclassified	0.0216404453
+UniRef50_UPI0003782418: hypothetical protein	0.0216289918
+UniRef50_UPI0003782418: hypothetical protein|unclassified	0.0216289918
+UniRef50_L0M8C5	0.0216227185
+UniRef50_L0M8C5|unclassified	0.0216227185
+UniRef50_K9RHU9	0.0216121929
+UniRef50_K9RHU9|unclassified	0.0216121929
+UniRef50_UPI00047D0FE2: hypothetical protein	0.0216102947
+UniRef50_UPI00047D0FE2: hypothetical protein|unclassified	0.0216102947
+UniRef50_UPI00047AC70D: hypothetical protein	0.0216097780
+UniRef50_UPI00047AC70D: hypothetical protein|unclassified	0.0216097780
+UniRef50_UPI0004695099: pseudouridine synthase	0.0216080384
+UniRef50_UPI0004695099: pseudouridine synthase|unclassified	0.0216080384
+UniRef50_UPI00037696BB: hypothetical protein	0.0216022426
+UniRef50_UPI00037696BB: hypothetical protein|unclassified	0.0216022426
+UniRef50_K3D1P2	0.0216012647
+UniRef50_K3D1P2|unclassified	0.0216012647
+UniRef50_H0HQZ9: Gp37Gp68 family protein	0.0215965547
+UniRef50_H0HQZ9: Gp37Gp68 family protein|unclassified	0.0215965547
+UniRef50_X1Y5A6	0.0215936398
+UniRef50_X1Y5A6|unclassified	0.0215936398
+UniRef50_UPI0003665978: hypothetical protein	0.0215876974
+UniRef50_UPI0003665978: hypothetical protein|unclassified	0.0215876974
+UniRef50_UPI0001CE1135: PREDICTED: cold shock domain protein A short-like	0.0215871450
+UniRef50_UPI0001CE1135: PREDICTED: cold shock domain protein A short-like|unclassified	0.0215871450
+UniRef50_A0A023AYR6	0.0215870776
+UniRef50_A0A023AYR6|unclassified	0.0215870776
+UniRef50_UPI0004681A8B: glycosyl hydrolase family 65	0.0215788098
+UniRef50_UPI0004681A8B: glycosyl hydrolase family 65|unclassified	0.0215788098
+UniRef50_UPI00022CA8D9: PREDICTED: coenzyme A biosynthesis bifunctional protein CoaBC-like	0.0215787861
+UniRef50_UPI00022CA8D9: PREDICTED: coenzyme A biosynthesis bifunctional protein CoaBC-like|unclassified	0.0215787861
+UniRef50_UPI000466CCF2: hypothetical protein	0.0215778110
+UniRef50_UPI000466CCF2: hypothetical protein|unclassified	0.0215778110
+UniRef50_UPI00005101D3: hypothetical protein	0.0215695760
+UniRef50_UPI00005101D3: hypothetical protein|unclassified	0.0215695760
+UniRef50_UPI0003791242: phosphoenolpyruvate synthase	0.0215644415
+UniRef50_UPI0003791242: phosphoenolpyruvate synthase|unclassified	0.0215644415
+UniRef50_UPI0003B5F8D8: hypothetical protein	0.0215587531
+UniRef50_UPI0003B5F8D8: hypothetical protein|unclassified	0.0215587531
+UniRef50_UPI00046DA6C6: PREDICTED: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase, chloroplastic-like	0.0215574472
+UniRef50_UPI00046DA6C6: PREDICTED: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase, chloroplastic-like|unclassified	0.0215574472
+UniRef50_A7GKI0: Phosphoribosylformylglycinamidine cyclo-ligase	0.0215459456
+UniRef50_A7GKI0: Phosphoribosylformylglycinamidine cyclo-ligase|unclassified	0.0215459456
+UniRef50_UPI000469261F: hypothetical protein	0.0215447373
+UniRef50_UPI000469261F: hypothetical protein|unclassified	0.0215447373
+UniRef50_D3SC87	0.0215380841
+UniRef50_D3SC87|unclassified	0.0215380841
+UniRef50_X6KWY4	0.0215371959
+UniRef50_X6KWY4|unclassified	0.0215371959
+UniRef50_UPI00036CD44B: hypothetical protein	0.0215361288
+UniRef50_UPI00036CD44B: hypothetical protein|unclassified	0.0215361288
+UniRef50_I4A5J3	0.0215183729
+UniRef50_I4A5J3|unclassified	0.0215183729
+UniRef50_UPI00047BD4E4: hypothetical protein	0.0215167705
+UniRef50_UPI00047BD4E4: hypothetical protein|unclassified	0.0215167705
+UniRef50_UPI00034C16D2: formate dehydrogenase	0.0215127118
+UniRef50_UPI00034C16D2: formate dehydrogenase|unclassified	0.0215127118
+UniRef50_S5RGT8: ABC transporter permease protein	0.0215049440
+UniRef50_S5RGT8: ABC transporter permease protein|unclassified	0.0215049440
+UniRef50_UPI00046FD3F6: ATPase	0.0214998357
+UniRef50_UPI00046FD3F6: ATPase|unclassified	0.0214998357
+UniRef50_W8G7V2: Chaperone	0.0214983176
+UniRef50_W8G7V2: Chaperone|unclassified	0.0214983176
+UniRef50_UPI000393E23A: membrane protein	0.0214970379
+UniRef50_UPI000393E23A: membrane protein|unclassified	0.0214970379
+UniRef50_B1AIC1: ATP synthase subunit alpha	0.0214864792
+UniRef50_B1AIC1: ATP synthase subunit alpha|unclassified	0.0214864792
+UniRef50_R1EB69	0.0214842749
+UniRef50_R1EB69|unclassified	0.0214842749
+UniRef50_UPI0003B43790: GTP pyrophosphokinase	0.0214756321
+UniRef50_UPI0003B43790: GTP pyrophosphokinase|unclassified	0.0214756321
+UniRef50_C4LJ74: Polyribonucleotide nucleotidyltransferase	0.0214743440
+UniRef50_C4LJ74: Polyribonucleotide nucleotidyltransferase|unclassified	0.0214743440
+UniRef50_Q6BNF2: DEHA2E22242p	0.0214742510
+UniRef50_Q6BNF2: DEHA2E22242p|unclassified	0.0214742510
+UniRef50_R5XPP0: SH3 domain protein	0.0214692169
+UniRef50_R5XPP0: SH3 domain protein|unclassified	0.0214692169
+UniRef50_A5U862	0.0214679535
+UniRef50_A5U862|unclassified	0.0214679535
+UniRef50_UPI0002884444: oligopeptide ABC transporter substrate-binding protein	0.0214655430
+UniRef50_UPI0002884444: oligopeptide ABC transporter substrate-binding protein|unclassified	0.0214655430
+UniRef50_UPI000362F439: hypothetical protein	0.0214598090
+UniRef50_UPI000362F439: hypothetical protein|unclassified	0.0214598090
+UniRef50_A5WEW9: Cysteine--tRNA ligase	0.0214588723
+UniRef50_A5WEW9: Cysteine--tRNA ligase|unclassified	0.0214588723
+UniRef50_Q6MDG0: Methionine--tRNA ligase	0.0214577281
+UniRef50_Q6MDG0: Methionine--tRNA ligase|unclassified	0.0214577281
+UniRef50_UPI000273D80A: PREDICTED: LIM domain-binding protein 3	0.0214570583
+UniRef50_UPI000273D80A: PREDICTED: LIM domain-binding protein 3|unclassified	0.0214570583
+UniRef50_A9VCT2: Predicted protein	0.0214570232
+UniRef50_A9VCT2: Predicted protein|unclassified	0.0214570232
+UniRef50_M4T435	0.0214563209
+UniRef50_M4T435|unclassified	0.0214563209
+UniRef50_B7K7C9	0.0214562693
+UniRef50_B7K7C9|unclassified	0.0214562693
+UniRef50_UPI00037AD2A9: hypothetical protein	0.0214511436
+UniRef50_UPI00037AD2A9: hypothetical protein|unclassified	0.0214511436
+UniRef50_R4WRS5	0.0214505900
+UniRef50_R4WRS5|unclassified	0.0214505900
+UniRef50_UPI0003B639BB: hypothetical protein	0.0214490065
+UniRef50_UPI0003B639BB: hypothetical protein|unclassified	0.0214490065
+UniRef50_I1QK58	0.0214458244
+UniRef50_I1QK58|unclassified	0.0214458244
+UniRef50_UPI000372F9DB: hypothetical protein, partial	0.0214266948
+UniRef50_UPI000372F9DB: hypothetical protein, partial|unclassified	0.0214266948
+UniRef50_UPI0003B63533: hypothetical protein	0.0214223975
+UniRef50_UPI0003B63533: hypothetical protein|unclassified	0.0214223975
+UniRef50_L7UAP3	0.0214198465
+UniRef50_L7UAP3|unclassified	0.0214198465
+UniRef50_UPI0002192A40: FAD dependent oxidoreductase, partial	0.0214190490
+UniRef50_UPI0002192A40: FAD dependent oxidoreductase, partial|unclassified	0.0214190490
+UniRef50_UPI00047B30F5: hypothetical protein	0.0214188435
+UniRef50_UPI00047B30F5: hypothetical protein|unclassified	0.0214188435
+UniRef50_UPI00037C1A57: hypothetical protein	0.0214184996
+UniRef50_UPI00037C1A57: hypothetical protein|unclassified	0.0214184996
+UniRef50_UPI0003A33C9F: peptidase S8	0.0214105482
+UniRef50_UPI0003A33C9F: peptidase S8|unclassified	0.0214105482
+UniRef50_UPI00024928D8: ATP-dependent DNA helicase	0.0214084895
+UniRef50_UPI00024928D8: ATP-dependent DNA helicase|unclassified	0.0214084895
+UniRef50_UPI0001E89E06: acylneuraminate cytidylyltransferase	0.0214071243
+UniRef50_UPI0001E89E06: acylneuraminate cytidylyltransferase|unclassified	0.0214071243
+UniRef50_U9WFI5: PD-(D/E)XK nuclease family protein	0.0213969413
+UniRef50_U9WFI5: PD-(D/E)XK nuclease family protein|unclassified	0.0213969413
+UniRef50_W5X9F8: Polyphosphate kinase	0.0213945926
+UniRef50_W5X9F8: Polyphosphate kinase|unclassified	0.0213945926
+UniRef50_R9AHM1: SAM domain and HD domain-containing protein 1	0.0213876206
+UniRef50_R9AHM1: SAM domain and HD domain-containing protein 1|unclassified	0.0213876206
+UniRef50_G1Y1T1	0.0213863814
+UniRef50_G1Y1T1|unclassified	0.0213863814
+UniRef50_W5X6I0: Metallophosphoesterase	0.0213857853
+UniRef50_W5X6I0: Metallophosphoesterase|unclassified	0.0213857853
+UniRef50_B4H5C2: GL20532	0.0213840916
+UniRef50_B4H5C2: GL20532|unclassified	0.0213840916
+UniRef50_UPI000375B637: hypothetical protein	0.0213761429
+UniRef50_UPI000375B637: hypothetical protein|unclassified	0.0213761429
+UniRef50_E6SWF5	0.0213719512
+UniRef50_E6SWF5|unclassified	0.0213719512
+UniRef50_UPI0004692135: cell division protein	0.0213694227
+UniRef50_UPI0004692135: cell division protein|unclassified	0.0213694227
+UniRef50_S2XTQ2	0.0213647309
+UniRef50_S2XTQ2|unclassified	0.0213647309
+UniRef50_UPI00042B9CDB: PREDICTED: tRNA modification GTPase GTPBP3, mitochondrial	0.0213642360
+UniRef50_UPI00042B9CDB: PREDICTED: tRNA modification GTPase GTPBP3, mitochondrial|unclassified	0.0213642360
+UniRef50_W4MB46	0.0213605254
+UniRef50_W4MB46|unclassified	0.0213605254
+UniRef50_O87455: Regulatory protein LuxO	0.0213589978
+UniRef50_O87455: Regulatory protein LuxO|unclassified	0.0213589978
+UniRef50_X8J9U9	0.0213571623
+UniRef50_X8J9U9|unclassified	0.0213571623
+UniRef50_D8TYI6	0.0213570234
+UniRef50_D8TYI6|unclassified	0.0213570234
+UniRef50_Q54GJ2: Bifunctional purine biosynthetic protein purD	0.0213553276
+UniRef50_Q54GJ2: Bifunctional purine biosynthetic protein purD|unclassified	0.0213553276
+UniRef50_UPI00046227CD: hypothetical protein TRAVEDRAFT_51110	0.0213516164
+UniRef50_UPI00046227CD: hypothetical protein TRAVEDRAFT_51110|unclassified	0.0213516164
+UniRef50_UPI000478CDB6: hypothetical protein	0.0213489588
+UniRef50_UPI000478CDB6: hypothetical protein|unclassified	0.0213489588
+UniRef50_UPI00036EA0C5: hypothetical protein	0.0213432157
+UniRef50_UPI00036EA0C5: hypothetical protein|unclassified	0.0213432157
+UniRef50_UPI000395D8EB: (p)ppGpp synthetase	0.0213347344
+UniRef50_UPI000395D8EB: (p)ppGpp synthetase|unclassified	0.0213347344
+UniRef50_UPI00037CEF8D: hypothetical protein	0.0213346433
+UniRef50_UPI00037CEF8D: hypothetical protein|unclassified	0.0213346433
+UniRef50_W8S468	0.0213343154
+UniRef50_W8S468|unclassified	0.0213343154
+UniRef50_R7S2B2: HD-domain/PDEase-like protein	0.0213339386
+UniRef50_R7S2B2: HD-domain/PDEase-like protein|unclassified	0.0213339386
+UniRef50_U6I490: Cationic amino acid transporter 4	0.0213312547
+UniRef50_U6I490: Cationic amino acid transporter 4|unclassified	0.0213312547
+UniRef50_M4NJD9	0.0213300580
+UniRef50_M4NJD9|unclassified	0.0213300580
+UniRef50_UPI00046FADEF: hypothetical protein	0.0213292601
+UniRef50_UPI00046FADEF: hypothetical protein|unclassified	0.0213292601
+UniRef50_B3DWZ0: Alanine racemase	0.0213276930
+UniRef50_B3DWZ0: Alanine racemase|unclassified	0.0213276930
+UniRef50_UPI00046E6B47: hypothetical protein	0.0213176773
+UniRef50_UPI00046E6B47: hypothetical protein|unclassified	0.0213176773
+UniRef50_W8KYP1	0.0213140788
+UniRef50_W8KYP1|unclassified	0.0213140788
+UniRef50_M3Z663	0.0213112741
+UniRef50_M3Z663|unclassified	0.0213112741
+UniRef50_A0DUZ6: Chromosome undetermined scaffold_65, whole genome shotgun sequence	0.0213027000
+UniRef50_A0DUZ6: Chromosome undetermined scaffold_65, whole genome shotgun sequence|unclassified	0.0213027000
+UniRef50_UPI0003B7AD31: glycosyl transferase	0.0212924454
+UniRef50_UPI0003B7AD31: glycosyl transferase|unclassified	0.0212924454
+UniRef50_A9FGU9	0.0212869607
+UniRef50_A9FGU9|unclassified	0.0212869607
+UniRef50_P49748: Very long-chain specific acyl-CoA dehydrogenase, mitochondrial	0.0212840011
+UniRef50_P49748: Very long-chain specific acyl-CoA dehydrogenase, mitochondrial|unclassified	0.0212840011
+UniRef50_G0N340	0.0212810449
+UniRef50_G0N340|unclassified	0.0212810449
+UniRef50_U6LVU1	0.0212667863
+UniRef50_U6LVU1|unclassified	0.0212667863
+UniRef50_UPI00047308BF: hypothetical protein	0.0212627502
+UniRef50_UPI00047308BF: hypothetical protein|unclassified	0.0212627502
+UniRef50_UPI00037AC220: hypothetical protein	0.0212616155
+UniRef50_UPI00037AC220: hypothetical protein|unclassified	0.0212616155
+UniRef50_UPI0003F0CAAC: PREDICTED: peptide chain release factor 1-like, mitochondrial-like	0.0212584876
+UniRef50_UPI0003F0CAAC: PREDICTED: peptide chain release factor 1-like, mitochondrial-like|unclassified	0.0212584876
+UniRef50_S9UXI6	0.0212579199
+UniRef50_S9UXI6|unclassified	0.0212579199
+UniRef50_UPI00046FD8B5: pectate lyase	0.0212507484
+UniRef50_UPI00046FD8B5: pectate lyase|unclassified	0.0212507484
+UniRef50_U1Y4P2: NAD dependent epimerase/dehydratase family protein	0.0212415355
+UniRef50_U1Y4P2: NAD dependent epimerase/dehydratase family protein|unclassified	0.0212415355
+UniRef50_UPI000185D75B: hypothetical protein TGME49_056940	0.0212406948
+UniRef50_UPI000185D75B: hypothetical protein TGME49_056940|unclassified	0.0212406948
+UniRef50_H3NE53	0.0212319976
+UniRef50_H3NE53|unclassified	0.0212319976
+UniRef50_L0LFD6: Chemotaxis motility protein MotB	0.0212257218
+UniRef50_L0LFD6: Chemotaxis motility protein MotB|unclassified	0.0212257218
+UniRef50_U3HE93	0.0212240555
+UniRef50_U3HE93|unclassified	0.0212240555
+UniRef50_UPI00036D78CA: MULTISPECIES: hypothetical protein	0.0212215500
+UniRef50_UPI00036D78CA: MULTISPECIES: hypothetical protein|unclassified	0.0212215500
+UniRef50_UPI0004657CE9: peptidoglycan glycosyltransferase	0.0212126502
+UniRef50_UPI0004657CE9: peptidoglycan glycosyltransferase|unclassified	0.0212126502
+UniRef50_E9T6B7: Periplasmic binding protein	0.0212003461
+UniRef50_E9T6B7: Periplasmic binding protein|unclassified	0.0212003461
+UniRef50_E4U3H9	0.0211915116
+UniRef50_E4U3H9|unclassified	0.0211915116
+UniRef50_B9JH67: Transglycosylase protein	0.0211913626
+UniRef50_B9JH67: Transglycosylase protein|unclassified	0.0211913626
+UniRef50_UPI0003B3C500: hypothetical protein	0.0211890560
+UniRef50_UPI0003B3C500: hypothetical protein|unclassified	0.0211890560
+UniRef50_A9VCB7: Predicted protein	0.0211827899
+UniRef50_A9VCB7: Predicted protein|unclassified	0.0211827899
+UniRef50_UPI000370CC80: hypothetical protein	0.0211821566
+UniRef50_UPI000370CC80: hypothetical protein|unclassified	0.0211821566
+UniRef50_UPI00016BFB47: excinuclease ABC subunit C	0.0211807665
+UniRef50_UPI00016BFB47: excinuclease ABC subunit C|unclassified	0.0211807665
+UniRef50_B4RKY8: Succinyl-diaminopimelate desuccinylase	0.0211789090
+UniRef50_B4RKY8: Succinyl-diaminopimelate desuccinylase|unclassified	0.0211789090
+UniRef50_R1FZF8	0.0211765850
+UniRef50_R1FZF8|unclassified	0.0211765850
+UniRef50_UPI00046FC069: hypothetical protein	0.0211755452
+UniRef50_UPI00046FC069: hypothetical protein|unclassified	0.0211755452
+UniRef50_UPI00037F54AE: hypothetical protein	0.0211733754
+UniRef50_UPI00037F54AE: hypothetical protein|unclassified	0.0211733754
+UniRef50_Q89376	0.0211651437
+UniRef50_Q89376|unclassified	0.0211651437
+UniRef50_UPI000421BDAC: hypothetical protein	0.0211625203
+UniRef50_UPI000421BDAC: hypothetical protein|unclassified	0.0211625203
+UniRef50_P58991: Polyphosphate kinase 1	0.0211624707
+UniRef50_P58991: Polyphosphate kinase 1|unclassified	0.0211624707
+UniRef50_Q9AQC6: 3-isopropylmalate dehydratase large subunit (Fragment)	0.0211603114
+UniRef50_Q9AQC6: 3-isopropylmalate dehydratase large subunit (Fragment)|unclassified	0.0211603114
+UniRef50_UPI00036E68E0: hypothetical protein	0.0211560011
+UniRef50_UPI00036E68E0: hypothetical protein|unclassified	0.0211560011
+UniRef50_M5E5J2: Genomic scaffold, msy_sf_2	0.0211547074
+UniRef50_M5E5J2: Genomic scaffold, msy_sf_2|unclassified	0.0211547074
+UniRef50_UPI000350E4F1	0.0211438161
+UniRef50_UPI000350E4F1|unclassified	0.0211438161
+UniRef50_B2UE66: ATP-dependent zinc metalloprotease FtsH	0.0211413247
+UniRef50_B2UE66: ATP-dependent zinc metalloprotease FtsH|unclassified	0.0211413247
+UniRef50_A6VY31	0.0211360170
+UniRef50_A6VY31|unclassified	0.0211360170
+UniRef50_Q8TIV8: Surface antigen protein	0.0211331422
+UniRef50_Q8TIV8: Surface antigen protein|unclassified	0.0211331422
+UniRef50_Q84WV0: Serine hydroxymethyltransferase 7	0.0211308189
+UniRef50_Q84WV0: Serine hydroxymethyltransferase 7|unclassified	0.0211308189
+UniRef50_G7M5P4	0.0211261607
+UniRef50_G7M5P4|unclassified	0.0211261607
+UniRef50_Q1N8Z9: ATPase	0.0211248992
+UniRef50_Q1N8Z9: ATPase|unclassified	0.0211248992
+UniRef50_UPI00036A5DBF: hypothetical protein	0.0211222813
+UniRef50_UPI00036A5DBF: hypothetical protein|unclassified	0.0211222813
+UniRef50_UPI00047764C8: hypothetical protein	0.0211219050
+UniRef50_UPI00047764C8: hypothetical protein|unclassified	0.0211219050
+UniRef50_B2V5X3	0.0211135261
+UniRef50_B2V5X3|unclassified	0.0211135261
+UniRef50_UPI0002193FDE: DNA mismatch repair protein MutS	0.0211131751
+UniRef50_UPI0002193FDE: DNA mismatch repair protein MutS|unclassified	0.0211131751
+UniRef50_N0CUY7	0.0211105503
+UniRef50_N0CUY7|unclassified	0.0211105503
+UniRef50_Q114I1: 1,4-alpha-glucan branching enzyme GlgB	0.0211076169
+UniRef50_Q114I1: 1,4-alpha-glucan branching enzyme GlgB|unclassified	0.0211076169
+UniRef50_UPI00037C28CA: hypothetical protein	0.0211065343
+UniRef50_UPI00037C28CA: hypothetical protein|unclassified	0.0211065343
+UniRef50_UPI000472273F: aspartate ammonia-lyase	0.0211064099
+UniRef50_UPI000472273F: aspartate ammonia-lyase|unclassified	0.0211064099
+UniRef50_UPI0003BBD114	0.0211058651
+UniRef50_UPI0003BBD114|unclassified	0.0211058651
+UniRef50_UPI00046518D9: hypothetical protein	0.0211005793
+UniRef50_UPI00046518D9: hypothetical protein|unclassified	0.0211005793
+UniRef50_UPI0003ACE1E1: hypothetical protein	0.0210947418
+UniRef50_UPI0003ACE1E1: hypothetical protein|unclassified	0.0210947418
+UniRef50_Q3ZX01: DNA-directed RNA polymerase subunit beta	0.0210807547
+UniRef50_Q3ZX01: DNA-directed RNA polymerase subunit beta|unclassified	0.0210807547
+UniRef50_M7YTZ1	0.0210806340
+UniRef50_M7YTZ1|unclassified	0.0210806340
+UniRef50_Q6SHT8: YjeF-related protein	0.0210722219
+UniRef50_Q6SHT8: YjeF-related protein|unclassified	0.0210722219
+UniRef50_UPI00025552C4: glutathione transferase	0.0210695629
+UniRef50_UPI00025552C4: glutathione transferase|unclassified	0.0210695629
+UniRef50_I9XDD1	0.0210656086
+UniRef50_I9XDD1|unclassified	0.0210656086
+UniRef50_P05489: Cytochrome c oxidase subunit 1	0.0210477219
+UniRef50_P05489: Cytochrome c oxidase subunit 1|unclassified	0.0210477219
+UniRef50_G6C7A8: KxYKxGKxW signal domain protein (Fragment)	0.0210475049
+UniRef50_G6C7A8: KxYKxGKxW signal domain protein (Fragment)|unclassified	0.0210475049
+UniRef50_UPI000463C607: hypothetical protein	0.0210474863
+UniRef50_UPI000463C607: hypothetical protein|unclassified	0.0210474863
+UniRef50_X1Y8X5: Glutathione peroxidase	0.0210466226
+UniRef50_X1Y8X5: Glutathione peroxidase|unclassified	0.0210466226
+UniRef50_UPI00037A7900: hypothetical protein	0.0210465730
+UniRef50_UPI00037A7900: hypothetical protein|unclassified	0.0210465730
+UniRef50_UPI0003695FA0: hypothetical protein	0.0210403569
+UniRef50_UPI0003695FA0: hypothetical protein|unclassified	0.0210403569
+UniRef50_D5C1P1	0.0210357594
+UniRef50_D5C1P1|unclassified	0.0210357594
+UniRef50_M2Y350: ICE nucleation protein (Fragment)	0.0210350000
+UniRef50_M2Y350: ICE nucleation protein (Fragment)|unclassified	0.0210350000
+UniRef50_UPI0003B5E20B: ABC transporter permease	0.0210320682
+UniRef50_UPI0003B5E20B: ABC transporter permease|unclassified	0.0210320682
+UniRef50_UPI000426ED6A: primosomal protein DnaI	0.0210269215
+UniRef50_UPI000426ED6A: primosomal protein DnaI|unclassified	0.0210269215
+UniRef50_K0SW69	0.0210224606
+UniRef50_K0SW69|unclassified	0.0210224606
+UniRef50_C4L5F1: NAD-dependent epimerase/dehydratase	0.0210192414
+UniRef50_C4L5F1: NAD-dependent epimerase/dehydratase|unclassified	0.0210192414
+UniRef50_UPI0003A412EC: hypothetical protein	0.0210163822
+UniRef50_UPI0003A412EC: hypothetical protein|unclassified	0.0210163822
+UniRef50_UPI0003768F48: hypothetical protein	0.0210052958
+UniRef50_UPI0003768F48: hypothetical protein|unclassified	0.0210052958
+UniRef50_K0EMS0: Glycine betaine ABC transporter substrate-binding protein	0.0210042499
+UniRef50_K0EMS0: Glycine betaine ABC transporter substrate-binding protein|unclassified	0.0210042499
+UniRef50_UPI000364069B: hypothetical protein	0.0210039197
+UniRef50_UPI000364069B: hypothetical protein|unclassified	0.0210039197
+UniRef50_UPI0004422EE7: PREDICTED: aldehyde dehydrogenase family 16 member A1 isoform X3	0.0210028369
+UniRef50_UPI0004422EE7: PREDICTED: aldehyde dehydrogenase family 16 member A1 isoform X3|unclassified	0.0210028369
+UniRef50_UPI00036B19F3: hypothetical protein	0.0210023952
+UniRef50_UPI00036B19F3: hypothetical protein|unclassified	0.0210023952
+UniRef50_K7PXH1	0.0209921195
+UniRef50_K7PXH1|unclassified	0.0209921195
+UniRef50_UPI0004444610: PREDICTED: collagen alpha-1(XII) chain	0.0209915647
+UniRef50_UPI0004444610: PREDICTED: collagen alpha-1(XII) chain|unclassified	0.0209915647
+UniRef50_UPI000422A46D: hypothetical protein	0.0209907648
+UniRef50_UPI000422A46D: hypothetical protein|unclassified	0.0209907648
+UniRef50_Q9NZB8: Molybdenum cofactor biosynthesis protein 1	0.0209814419
+UniRef50_Q9NZB8: Molybdenum cofactor biosynthesis protein 1|unclassified	0.0209814419
+UniRef50_UPI000300C21C: hypothetical protein	0.0209798870
+UniRef50_UPI000300C21C: hypothetical protein|unclassified	0.0209798870
+UniRef50_UPI0004713504: hypothetical protein	0.0209793071
+UniRef50_UPI0004713504: hypothetical protein|unclassified	0.0209793071
+UniRef50_A0A058Z0V6	0.0209786975
+UniRef50_A0A058Z0V6|unclassified	0.0209786975
+UniRef50_UPI0002D709E2: hypothetical protein	0.0209774742
+UniRef50_UPI0002D709E2: hypothetical protein|unclassified	0.0209774742
+UniRef50_D8LMZ6	0.0209764788
+UniRef50_D8LMZ6|unclassified	0.0209764788
+UniRef50_UPI00032925BE: PREDICTED: LOW QUALITY PROTEIN: polycystin-1	0.0209760646
+UniRef50_UPI00032925BE: PREDICTED: LOW QUALITY PROTEIN: polycystin-1|unclassified	0.0209760646
+UniRef50_UPI000317DC6F: hypothetical protein	0.0209739939
+UniRef50_UPI000317DC6F: hypothetical protein|unclassified	0.0209739939
+UniRef50_UPI0003B75ED8: 3-hydroxyacyl-CoA dehydrogenase	0.0209738794
+UniRef50_UPI0003B75ED8: 3-hydroxyacyl-CoA dehydrogenase|unclassified	0.0209738794
+UniRef50_UPI000475F849: hypothetical protein	0.0209721147
+UniRef50_UPI000475F849: hypothetical protein|unclassified	0.0209721147
+UniRef50_U6MM73	0.0209664284
+UniRef50_U6MM73|unclassified	0.0209664284
+UniRef50_UPI000362790E: hypothetical protein	0.0209657650
+UniRef50_UPI000362790E: hypothetical protein|unclassified	0.0209657650
+UniRef50_UPI00047B8AB9: pectate lyase	0.0209643810
+UniRef50_UPI00047B8AB9: pectate lyase|unclassified	0.0209643810
+UniRef50_K8NS59	0.0209572599
+UniRef50_K8NS59|unclassified	0.0209572599
+UniRef50_UPI00035D007C: hypothetical protein	0.0209534931
+UniRef50_UPI00035D007C: hypothetical protein|unclassified	0.0209534931
+UniRef50_U6LIN1: TPR domain-containing protein, putative	0.0209519616
+UniRef50_U6LIN1: TPR domain-containing protein, putative|unclassified	0.0209519616
+UniRef50_K0RYX7	0.0209490648
+UniRef50_K0RYX7|unclassified	0.0209490648
+UniRef50_UPI0004560107: hypothetical protein PFL1_06752	0.0209467873
+UniRef50_UPI0004560107: hypothetical protein PFL1_06752|unclassified	0.0209467873
+UniRef50_UPI00016C08D0: phosphoenolpyruvate synthase	0.0209462413
+UniRef50_UPI00016C08D0: phosphoenolpyruvate synthase|unclassified	0.0209462413
+UniRef50_UPI0002891F4A: rhizobiocin/RTX toxin and hemolysin-type calcium binding protein	0.0209458838
+UniRef50_UPI0002891F4A: rhizobiocin/RTX toxin and hemolysin-type calcium binding protein|unclassified	0.0209458838
+UniRef50_Q7VJ82: Bifunctional DNA-directed RNA polymerase subunit beta-beta'	0.0209447695
+UniRef50_Q7VJ82: Bifunctional DNA-directed RNA polymerase subunit beta-beta'|unclassified	0.0209447695
+UniRef50_UPI00047A1713: hypothetical protein	0.0209430778
+UniRef50_UPI00047A1713: hypothetical protein|unclassified	0.0209430778
+UniRef50_Q1QE74: 1-deoxy-D-xylulose-5-phosphate synthase	0.0209410918
+UniRef50_Q1QE74: 1-deoxy-D-xylulose-5-phosphate synthase|unclassified	0.0209410918
+UniRef50_A1WWL1: Diguanylate cyclase	0.0209404347
+UniRef50_A1WWL1: Diguanylate cyclase|unclassified	0.0209404347
+UniRef50_R1EP49	0.0209371101
+UniRef50_R1EP49|unclassified	0.0209371101
+UniRef50_UPI00025595F0: deoxyribodipyrimidine photolyase	0.0209261024
+UniRef50_UPI00025595F0: deoxyribodipyrimidine photolyase|unclassified	0.0209261024
+UniRef50_UPI0004790E71: molybdopterin biosynthesis protein	0.0209239102
+UniRef50_UPI0004790E71: molybdopterin biosynthesis protein|unclassified	0.0209239102
+UniRef50_B1R007	0.0209169143
+UniRef50_B1R007|unclassified	0.0209169143
+UniRef50_D8PCE0	0.0209161636
+UniRef50_D8PCE0|unclassified	0.0209161636
+UniRef50_UPI000361C034: hypothetical protein	0.0209154224
+UniRef50_UPI000361C034: hypothetical protein|unclassified	0.0209154224
+UniRef50_UPI0003C0FDA1: PREDICTED: iron-responsive element-binding protein 2	0.0209142536
+UniRef50_UPI0003C0FDA1: PREDICTED: iron-responsive element-binding protein 2|unclassified	0.0209142536
+UniRef50_D6DN65: Conjugative relaxase domain, TrwC/TraI family	0.0209120370
+UniRef50_D6DN65: Conjugative relaxase domain, TrwC/TraI family|unclassified	0.0209120370
+UniRef50_UPI00046E1FAA: PREDICTED: acetate--CoA ligase ACS, chloroplastic/glyoxysomal	0.0209040159
+UniRef50_UPI00046E1FAA: PREDICTED: acetate--CoA ligase ACS, chloroplastic/glyoxysomal|unclassified	0.0209040159
+UniRef50_B3Q9Q6: Polyphosphate kinase	0.0209015268
+UniRef50_B3Q9Q6: Polyphosphate kinase|unclassified	0.0209015268
+UniRef50_UPI000380B9CF: hypothetical protein	0.0208974026
+UniRef50_UPI000380B9CF: hypothetical protein|unclassified	0.0208974026
+UniRef50_Q7NL20: 1,4-alpha-glucan branching enzyme GlgB	0.0208897791
+UniRef50_Q7NL20: 1,4-alpha-glucan branching enzyme GlgB|unclassified	0.0208897791
+UniRef50_L8PSV1	0.0208871897
+UniRef50_L8PSV1|unclassified	0.0208871897
+UniRef50_E1SQJ5: Diguanylate cyclase/phosphodiesterase	0.0208855631
+UniRef50_E1SQJ5: Diguanylate cyclase/phosphodiesterase|unclassified	0.0208855631
+UniRef50_G1DA54: Gp4	0.0208844773
+UniRef50_G1DA54: Gp4|unclassified	0.0208844773
+UniRef50_R5UTL7: Phage tail tape measure protein TP901 family core region	0.0208808426
+UniRef50_R5UTL7: Phage tail tape measure protein TP901 family core region|unclassified	0.0208808426
+UniRef50_Q07833: tRNA nuclease WapA	0.0208731570
+UniRef50_Q07833: tRNA nuclease WapA|unclassified	0.0208731570
+UniRef50_UPI00036B4C40: hypothetical protein	0.0208673965
+UniRef50_UPI00036B4C40: hypothetical protein|unclassified	0.0208673965
+UniRef50_UPI0003AFDE9C: PREDICTED: LOW QUALITY PROTEIN: SCO-spondin	0.0208662317
+UniRef50_UPI0003AFDE9C: PREDICTED: LOW QUALITY PROTEIN: SCO-spondin|unclassified	0.0208662317
+UniRef50_UPI0003651CF6: hypothetical protein	0.0208654875
+UniRef50_UPI0003651CF6: hypothetical protein|unclassified	0.0208654875
+UniRef50_Q72NX7: Polyribonucleotide nucleotidyltransferase	0.0208630414
+UniRef50_Q72NX7: Polyribonucleotide nucleotidyltransferase|unclassified	0.0208630414
+UniRef50_B8ICE5: DNA ligase	0.0208506255
+UniRef50_B8ICE5: DNA ligase|unclassified	0.0208506255
+UniRef50_UPI0003C176FD: PREDICTED: argininosuccinate synthase, chloroplastic-like	0.0208493911
+UniRef50_UPI0003C176FD: PREDICTED: argininosuccinate synthase, chloroplastic-like|unclassified	0.0208493911
+UniRef50_K0Z768	0.0208490050
+UniRef50_K0Z768|unclassified	0.0208490050
+UniRef50_UPI00036A2820: hypothetical protein	0.0208395714
+UniRef50_UPI00036A2820: hypothetical protein|unclassified	0.0208395714
+UniRef50_UPI000455FFD5: hypothetical protein PFL1_02308	0.0208312381
+UniRef50_UPI000455FFD5: hypothetical protein PFL1_02308|unclassified	0.0208312381
+UniRef50_UPI00047480E9: diguanylate cyclase	0.0208249865
+UniRef50_UPI00047480E9: diguanylate cyclase|unclassified	0.0208249865
+UniRef50_A0A059LFX7	0.0208226159
+UniRef50_A0A059LFX7|unclassified	0.0208226159
+UniRef50_D5E3C4: MobA/MobL family protein	0.0208200048
+UniRef50_D5E3C4: MobA/MobL family protein|unclassified	0.0208200048
+UniRef50_T1BPE0: IS66 family element, transposase (Fragment)	0.0208173376
+UniRef50_T1BPE0: IS66 family element, transposase (Fragment)|unclassified	0.0208173376
+UniRef50_D2ATJ4: 2-isopropylmalate synthase	0.0208166321
+UniRef50_D2ATJ4: 2-isopropylmalate synthase|unclassified	0.0208166321
+UniRef50_P40611: Ribonuclease R	0.0208142740
+UniRef50_P40611: Ribonuclease R|unclassified	0.0208142740
+UniRef50_UPI0003B6A618: hypothetical protein	0.0208112781
+UniRef50_UPI0003B6A618: hypothetical protein|unclassified	0.0208112781
+UniRef50_D0GKL4: Rhamnan synthesis protein F	0.0208002029
+UniRef50_D0GKL4: Rhamnan synthesis protein F|unclassified	0.0208002029
+UniRef50_UPI0002F8F2B8: hypothetical protein	0.0207965901
+UniRef50_UPI0002F8F2B8: hypothetical protein|unclassified	0.0207965901
+UniRef50_UPI0002EDFCDA: hypothetical protein	0.0207953567
+UniRef50_UPI0002EDFCDA: hypothetical protein|unclassified	0.0207953567
+UniRef50_UPI0003768F93: hypothetical protein	0.0207937961
+UniRef50_UPI0003768F93: hypothetical protein|unclassified	0.0207937961
+UniRef50_UPI0003C49967: PREDICTED: ATP-binding cassette sub-family A member 13-like	0.0207931986
+UniRef50_UPI0003C49967: PREDICTED: ATP-binding cassette sub-family A member 13-like|unclassified	0.0207931986
+UniRef50_UPI00047918D8: isoleucine--tRNA ligase	0.0207869480
+UniRef50_UPI00047918D8: isoleucine--tRNA ligase|unclassified	0.0207869480
+UniRef50_A0A023AZW8	0.0207784845
+UniRef50_A0A023AZW8|unclassified	0.0207784845
+UniRef50_M2WSF6	0.0207753975
+UniRef50_M2WSF6|unclassified	0.0207753975
+UniRef50_Q54HJ6	0.0207710731
+UniRef50_Q54HJ6|unclassified	0.0207710731
+UniRef50_D4B4X2: pH signal transduction protein PalI, putative	0.0207666716
+UniRef50_D4B4X2: pH signal transduction protein PalI, putative|unclassified	0.0207666716
+UniRef50_UPI00035C96AE: hypothetical protein, partial	0.0207662807
+UniRef50_UPI00035C96AE: hypothetical protein, partial|unclassified	0.0207662807
+UniRef50_UPI00045E7D6B: hypothetical protein	0.0207643401
+UniRef50_UPI00045E7D6B: hypothetical protein|unclassified	0.0207643401
+UniRef50_W2E5U3	0.0207572121
+UniRef50_W2E5U3|unclassified	0.0207572121
+UniRef50_O50314: Magnesium-chelatase subunit H	0.0207568194
+UniRef50_O50314: Magnesium-chelatase subunit H|unclassified	0.0207568194
+UniRef50_UPI000478DB84: hypothetical protein	0.0207371827
+UniRef50_UPI000478DB84: hypothetical protein|unclassified	0.0207371827
+UniRef50_L0J3X7: VCBS repeat-containing protein,YVTN family beta-propeller repeat protein	0.0207230312
+UniRef50_L0J3X7: VCBS repeat-containing protein,YVTN family beta-propeller repeat protein|unclassified	0.0207230312
+UniRef50_UPI000237D1A0: glycosyl transferase family 2	0.0207140956
+UniRef50_UPI000237D1A0: glycosyl transferase family 2|unclassified	0.0207140956
+UniRef50_UPI0003B4B49C: bifunctional (p)ppGpp synthetase II/ guanosine-3'''',5''''-bis pyrophosphate 3''''-pyrophosphohydrolase	0.0207139385
+UniRef50_UPI0003B4B49C: bifunctional (p)ppGpp synthetase II/ guanosine-3'''',5''''-bis pyrophosphate 3''''-pyrophosphohydrolase|unclassified	0.0207139385
+UniRef50_UPI000382FFC4: hypothetical protein M271_14745	0.0207128242
+UniRef50_UPI000382FFC4: hypothetical protein M271_14745|unclassified	0.0207128242
+UniRef50_D3QWZ9: Tail fiber protein	0.0207115928
+UniRef50_D3QWZ9: Tail fiber protein|unclassified	0.0207115928
+UniRef50_UPI00036474E6: hypothetical protein	0.0207080548
+UniRef50_UPI00036474E6: hypothetical protein|unclassified	0.0207080548
+UniRef50_UPI0004734409: ATPase P	0.0207065961
+UniRef50_UPI0004734409: ATPase P|unclassified	0.0207065961
+UniRef50_UPI00047AF92A: hypothetical protein	0.0207060294
+UniRef50_UPI00047AF92A: hypothetical protein|unclassified	0.0207060294
+UniRef50_X6KTF2	0.0207059720
+UniRef50_X6KTF2|unclassified	0.0207059720
+UniRef50_L7IUD6: SH3 domain-containing protein	0.0206982914
+UniRef50_L7IUD6: SH3 domain-containing protein|unclassified	0.0206982914
+UniRef50_F0LSK3	0.0206963813
+UniRef50_F0LSK3|unclassified	0.0206963813
+UniRef50_UPI0003676CBD: hypothetical protein	0.0206932585
+UniRef50_UPI0003676CBD: hypothetical protein|unclassified	0.0206932585
+UniRef50_UPI0003F0C1D2: PREDICTED: monocarboxylate transporter 2-like	0.0206898111
+UniRef50_UPI0003F0C1D2: PREDICTED: monocarboxylate transporter 2-like|unclassified	0.0206898111
+UniRef50_Q9FNB0: Magnesium-chelatase subunit ChlH, chloroplastic	0.0206872073
+UniRef50_Q9FNB0: Magnesium-chelatase subunit ChlH, chloroplastic|unclassified	0.0206872073
+UniRef50_UPI0004642247: hypothetical protein	0.0206861827
+UniRef50_UPI0004642247: hypothetical protein|unclassified	0.0206861827
+UniRef50_UPI0002C43CFB	0.0206832983
+UniRef50_UPI0002C43CFB|unclassified	0.0206832983
+UniRef50_UPI000373A78E: hypothetical protein	0.0206825924
+UniRef50_UPI000373A78E: hypothetical protein|unclassified	0.0206825924
+UniRef50_UPI00042B2916: Kinase protein with adenine nucleotide alpha hydrolases-like domain, putative isoform 1	0.0206816701
+UniRef50_UPI00042B2916: Kinase protein with adenine nucleotide alpha hydrolases-like domain, putative isoform 1|unclassified	0.0206816701
+UniRef50_H1S0I6	0.0206739804
+UniRef50_H1S0I6|unclassified	0.0206739804
+UniRef50_UPI00036DEB62: hypothetical protein	0.0206687024
+UniRef50_UPI00036DEB62: hypothetical protein|unclassified	0.0206687024
+UniRef50_UPI0003694178: hypothetical protein	0.0206657757
+UniRef50_UPI0003694178: hypothetical protein|unclassified	0.0206657757
+UniRef50_U6MX62	0.0206498763
+UniRef50_U6MX62|unclassified	0.0206498763
+UniRef50_UPI000455F234: alcohol oxidase	0.0206412269
+UniRef50_UPI000455F234: alcohol oxidase|unclassified	0.0206412269
+UniRef50_UPI000359A0D1: PREDICTED: medium-chain specific acyl-CoA dehydrogenase, mitochondrial	0.0206398664
+UniRef50_UPI000359A0D1: PREDICTED: medium-chain specific acyl-CoA dehydrogenase, mitochondrial|unclassified	0.0206398664
+UniRef50_U6JQJ6	0.0206354378
+UniRef50_U6JQJ6|unclassified	0.0206354378
+UniRef50_V8I2Q7	0.0206306648
+UniRef50_V8I2Q7|unclassified	0.0206306648
+UniRef50_UPI00035001EE	0.0206265015
+UniRef50_UPI00035001EE|unclassified	0.0206265015
+UniRef50_R0ENU8: KxYKxGKxW signal peptide	0.0206261519
+UniRef50_R0ENU8: KxYKxGKxW signal peptide|unclassified	0.0206261519
+UniRef50_UPI00034B0409: hypothetical protein	0.0206211211
+UniRef50_UPI00034B0409: hypothetical protein|unclassified	0.0206211211
+UniRef50_UPI000465CA86: DNA primase	0.0206194387
+UniRef50_UPI000465CA86: DNA primase|unclassified	0.0206194387
+UniRef50_UPI0003735848: hypothetical protein	0.0206156025
+UniRef50_UPI0003735848: hypothetical protein|unclassified	0.0206156025
+UniRef50_E8KU60	0.0206117535
+UniRef50_E8KU60|unclassified	0.0206117535
+UniRef50_K8EVF2: Internalin-J	0.0206067831
+UniRef50_K8EVF2: Internalin-J|unclassified	0.0206067831
+UniRef50_UPI000332FEFF	0.0206046379
+UniRef50_UPI000332FEFF|unclassified	0.0206046379
+UniRef50_UPI000409990C: recombination and DNA strand exchange inhibitor protein	0.0206033863
+UniRef50_UPI000409990C: recombination and DNA strand exchange inhibitor protein|unclassified	0.0206033863
+UniRef50_A8XAP2: Protein CBG10287	0.0205996740
+UniRef50_A8XAP2: Protein CBG10287|unclassified	0.0205996740
+UniRef50_R5LPQ5	0.0205992993
+UniRef50_R5LPQ5|unclassified	0.0205992993
+UniRef50_A3JXP9	0.0205926126
+UniRef50_A3JXP9|unclassified	0.0205926126
+UniRef50_M4U3V1: TrwC protein	0.0205878788
+UniRef50_M4U3V1: TrwC protein|unclassified	0.0205878788
+UniRef50_UPI0003B4627D: hypothetical protein	0.0205856095
+UniRef50_UPI0003B4627D: hypothetical protein|unclassified	0.0205856095
+UniRef50_UPI000369D965: hypothetical protein	0.0205830407
+UniRef50_UPI000369D965: hypothetical protein|unclassified	0.0205830407
+UniRef50_Q7G491: Transposon protein, putative, CACTA, En/Spm sub-class	0.0205821405
+UniRef50_Q7G491: Transposon protein, putative, CACTA, En/Spm sub-class|unclassified	0.0205821405
+UniRef50_UPI000219525E: PAS/PAC sensor signal transduction histidine kinase	0.0205809522
+UniRef50_UPI000219525E: PAS/PAC sensor signal transduction histidine kinase|unclassified	0.0205809522
+UniRef50_UPI00046AD605: PTS fructose transporter subunit IIA	0.0205759965
+UniRef50_UPI00046AD605: PTS fructose transporter subunit IIA|unclassified	0.0205759965
+UniRef50_F0YNG2	0.0205726923
+UniRef50_F0YNG2|unclassified	0.0205726923
+UniRef50_Q9PQB4: DNA polymerase III PolC-type	0.0205634340
+UniRef50_Q9PQB4: DNA polymerase III PolC-type|unclassified	0.0205634340
+UniRef50_G4NI71	0.0205564970
+UniRef50_G4NI71|unclassified	0.0205564970
+UniRef50_A6FDS3: Putative long-chain fatty acid transport protein	0.0205515559
+UniRef50_A6FDS3: Putative long-chain fatty acid transport protein|unclassified	0.0205515559
+UniRef50_UPI0003463E36: hypothetical protein	0.0205473689
+UniRef50_UPI0003463E36: hypothetical protein|unclassified	0.0205473689
+UniRef50_I1ZMJ9	0.0205329028
+UniRef50_I1ZMJ9|unclassified	0.0205329028
+UniRef50_UPI000262D040: hypothetical protein	0.0205325457
+UniRef50_UPI000262D040: hypothetical protein|unclassified	0.0205325457
+UniRef50_E4R281	0.0205269982
+UniRef50_E4R281|unclassified	0.0205269982
+UniRef50_UPI000288E31E: peptidoglycan glycosyltransferase	0.0205224338
+UniRef50_UPI000288E31E: peptidoglycan glycosyltransferase|unclassified	0.0205224338
+UniRef50_A4Y8A8: Membrane protein involved in aromatic hydrocarbon degradation	0.0205218513
+UniRef50_A4Y8A8: Membrane protein involved in aromatic hydrocarbon degradation|unclassified	0.0205218513
+UniRef50_J0N224: Cell wall-binding repeat protein	0.0205209928
+UniRef50_J0N224: Cell wall-binding repeat protein|unclassified	0.0205209928
+UniRef50_F0PZH7	0.0205205887
+UniRef50_F0PZH7|unclassified	0.0205205887
+UniRef50_UPI00045EBBF0: hypothetical protein	0.0205086462
+UniRef50_UPI00045EBBF0: hypothetical protein|unclassified	0.0205086462
+UniRef50_F4DB39: Long-chain fatty acid transport protein	0.0205069630
+UniRef50_F4DB39: Long-chain fatty acid transport protein|unclassified	0.0205069630
+UniRef50_UPI0003682E40: hypothetical protein	0.0205047826
+UniRef50_UPI0003682E40: hypothetical protein|unclassified	0.0205047826
+UniRef50_E2Q251: Sporozoite_P67 multi-domain protein (Fragment)	0.0204950694
+UniRef50_E2Q251: Sporozoite_P67 multi-domain protein (Fragment)|unclassified	0.0204950694
+UniRef50_K2JJV4	0.0204908083
+UniRef50_K2JJV4|unclassified	0.0204908083
+UniRef50_UPI000161C024: Centromere/kinetochore Zw10 family protein	0.0204859203
+UniRef50_UPI000161C024: Centromere/kinetochore Zw10 family protein|unclassified	0.0204859203
+UniRef50_J7HWP3: S-layer protein / peptidoglycan endo-beta-N-acetylglucosaminidase	0.0204855518
+UniRef50_J7HWP3: S-layer protein / peptidoglycan endo-beta-N-acetylglucosaminidase|unclassified	0.0204855518
+UniRef50_UPI0003F86403: hypothetical protein	0.0204827831
+UniRef50_UPI0003F86403: hypothetical protein|unclassified	0.0204827831
+UniRef50_UPI000289216F: DNA mismatch repair protein MutS	0.0204731954
+UniRef50_UPI000289216F: DNA mismatch repair protein MutS|unclassified	0.0204731954
+UniRef50_UPI00034C25BF: hypothetical protein	0.0204680209
+UniRef50_UPI00034C25BF: hypothetical protein|unclassified	0.0204680209
+UniRef50_UPI00037CFAED: ABC transporter	0.0204672185
+UniRef50_UPI00037CFAED: ABC transporter|unclassified	0.0204672185
+UniRef50_UPI00026288A1: hypothetical protein	0.0204657787
+UniRef50_UPI00026288A1: hypothetical protein|unclassified	0.0204657787
+UniRef50_UPI0003597F71: PREDICTED: alpha-glucosidase-like	0.0204642441
+UniRef50_UPI0003597F71: PREDICTED: alpha-glucosidase-like|unclassified	0.0204642441
+UniRef50_E1ZTB7	0.0204537417
+UniRef50_E1ZTB7|unclassified	0.0204537417
+UniRef50_UPI000467AAFA: hypothetical protein	0.0204537147
+UniRef50_UPI000467AAFA: hypothetical protein|unclassified	0.0204537147
+UniRef50_H0DH25: CHAP domain protein	0.0204446733
+UniRef50_H0DH25: CHAP domain protein|unclassified	0.0204446733
+UniRef50_E6TZL9: AAA ATPase	0.0204443250
+UniRef50_E6TZL9: AAA ATPase|unclassified	0.0204443250
+UniRef50_UPI00032AFB1B: PREDICTED: rho guanine nucleotide exchange factor 15	0.0204399403
+UniRef50_UPI00032AFB1B: PREDICTED: rho guanine nucleotide exchange factor 15|unclassified	0.0204399403
+UniRef50_Z5XAT1	0.0204393184
+UniRef50_Z5XAT1|unclassified	0.0204393184
+UniRef50_UPI00047B8C02: hypothetical protein	0.0204289335
+UniRef50_UPI00047B8C02: hypothetical protein|unclassified	0.0204289335
+UniRef50_UPI00036F748E: hypothetical protein	0.0204231219
+UniRef50_UPI00036F748E: hypothetical protein|unclassified	0.0204231219
+UniRef50_B2UNA9: Polyribonucleotide nucleotidyltransferase	0.0204201878
+UniRef50_B2UNA9: Polyribonucleotide nucleotidyltransferase|unclassified	0.0204201878
+UniRef50_UPI000443DB62: PREDICTED: T-complex protein 1 subunit alpha	0.0204183238
+UniRef50_UPI000443DB62: PREDICTED: T-complex protein 1 subunit alpha|unclassified	0.0204183238
+UniRef50_K2P5R3: Adenylate cyclase	0.0204089194
+UniRef50_K2P5R3: Adenylate cyclase|unclassified	0.0204089194
+UniRef50_UPI0004249AB5: hypothetical protein	0.0204059484
+UniRef50_UPI0004249AB5: hypothetical protein|unclassified	0.0204059484
+UniRef50_W5X572: L-aspartate aminotransferase	0.0204051466
+UniRef50_W5X572: L-aspartate aminotransferase|unclassified	0.0204051466
+UniRef50_A6GMT9	0.0204047485
+UniRef50_A6GMT9|unclassified	0.0204047485
+UniRef50_UPI00046EDA0B: hypothetical protein	0.0203886381
+UniRef50_UPI00046EDA0B: hypothetical protein|unclassified	0.0203886381
+UniRef50_UPI00026589BA: PREDICTED: acyl-CoA dehydrogenase family member 9, mitochondrial-like	0.0203875276
+UniRef50_UPI00026589BA: PREDICTED: acyl-CoA dehydrogenase family member 9, mitochondrial-like|unclassified	0.0203875276
+UniRef50_C5C6A7	0.0203845897
+UniRef50_C5C6A7|unclassified	0.0203845897
+UniRef50_UPI000474E89D: ABC transporter ATP-binding protein	0.0203838925
+UniRef50_UPI000474E89D: ABC transporter ATP-binding protein|unclassified	0.0203838925
+UniRef50_UPI00045499DB: PREDICTED: collagen alpha-1(I) chain-like	0.0203820328
+UniRef50_UPI00045499DB: PREDICTED: collagen alpha-1(I) chain-like|unclassified	0.0203820328
+UniRef50_UPI0002D79CA4: hypothetical protein	0.0203786314
+UniRef50_UPI0002D79CA4: hypothetical protein|unclassified	0.0203786314
+UniRef50_E3YVV9: Wall-associated protein (Fragment)	0.0203780805
+UniRef50_E3YVV9: Wall-associated protein (Fragment)|unclassified	0.0203780805
+UniRef50_UPI0003FE4D19: dienelactone hydrolase	0.0203743779
+UniRef50_UPI0003FE4D19: dienelactone hydrolase|unclassified	0.0203743779
+UniRef50_UPI00046A4CBA: hypothetical protein	0.0203700794
+UniRef50_UPI00046A4CBA: hypothetical protein|unclassified	0.0203700794
+UniRef50_B1GZG8: Polyribonucleotide nucleotidyltransferase	0.0203592816
+UniRef50_B1GZG8: Polyribonucleotide nucleotidyltransferase|unclassified	0.0203592816
+UniRef50_UPI000368479F: hypothetical protein	0.0203581847
+UniRef50_UPI000368479F: hypothetical protein|unclassified	0.0203581847
+UniRef50_UPI0003B74FC2: cysteine ABC transporter ATP-binding protein	0.0203549146
+UniRef50_UPI0003B74FC2: cysteine ABC transporter ATP-binding protein|unclassified	0.0203549146
+UniRef50_A5D0W6: Endonuclease MutS2	0.0203532114
+UniRef50_A5D0W6: Endonuclease MutS2|unclassified	0.0203532114
+UniRef50_Q54KE6: Methylcrotonoyl-CoA carboxylase subunit alpha, mitochondrial	0.0203520688
+UniRef50_Q54KE6: Methylcrotonoyl-CoA carboxylase subunit alpha, mitochondrial|unclassified	0.0203520688
+UniRef50_UPI00042C0381: PREDICTED: LOW QUALITY PROTEIN: alanine--glyoxylate aminotransferase 2, mitochondrial	0.0203506188
+UniRef50_UPI00042C0381: PREDICTED: LOW QUALITY PROTEIN: alanine--glyoxylate aminotransferase 2, mitochondrial|unclassified	0.0203506188
+UniRef50_UPI0003FE3F47: hypothetical protein	0.0203462881
+UniRef50_UPI0003FE3F47: hypothetical protein|unclassified	0.0203462881
+UniRef50_UPI00037CE211: hypothetical protein	0.0203460338
+UniRef50_UPI00037CE211: hypothetical protein|unclassified	0.0203460338
+UniRef50_UPI00026579AE: PREDICTED: phosphoribosylaminoimidazole-succinocarboxamide synthase-like	0.0203237466
+UniRef50_UPI00026579AE: PREDICTED: phosphoribosylaminoimidazole-succinocarboxamide synthase-like|unclassified	0.0203237466
+UniRef50_UPI000369BC57: hypothetical protein	0.0203191011
+UniRef50_UPI000369BC57: hypothetical protein|unclassified	0.0203191011
+UniRef50_F0VQY8: Proteophosphoglycan 5, related	0.0203168262
+UniRef50_F0VQY8: Proteophosphoglycan 5, related|unclassified	0.0203168262
+UniRef50_UPI000375B0C3: signal peptide protein	0.0203167926
+UniRef50_UPI000375B0C3: signal peptide protein|unclassified	0.0203167926
+UniRef50_UPI0003486CF4: hypothetical protein	0.0203063156
+UniRef50_UPI0003486CF4: hypothetical protein|unclassified	0.0203063156
+UniRef50_K9IET8	0.0203035722
+UniRef50_K9IET8|unclassified	0.0203035722
+UniRef50_C4L3Y8: Polyphosphate kinase	0.0203026480
+UniRef50_C4L3Y8: Polyphosphate kinase|unclassified	0.0203026480
+UniRef50_Q9NQH7: Probable Xaa-Pro aminopeptidase 3	0.0203025153
+UniRef50_Q9NQH7: Probable Xaa-Pro aminopeptidase 3|unclassified	0.0203025153
+UniRef50_Q08426: Peroxisomal bifunctional enzyme	0.0202975658
+UniRef50_Q08426: Peroxisomal bifunctional enzyme|unclassified	0.0202975658
+UniRef50_UPI0003B5221E: glycosyl hydrolase	0.0202927228
+UniRef50_UPI0003B5221E: glycosyl hydrolase|unclassified	0.0202927228
+UniRef50_O83796: 1-deoxy-D-xylulose-5-phosphate synthase	0.0202906204
+UniRef50_O83796: 1-deoxy-D-xylulose-5-phosphate synthase|unclassified	0.0202906204
+UniRef50_H6MVW6: Putative integral membrane protein	0.0202906071
+UniRef50_H6MVW6: Putative integral membrane protein|unclassified	0.0202906071
+UniRef50_UPI00047CAA92: polynucleotide phosphorylase/polyadenylase	0.0202901570
+UniRef50_UPI00047CAA92: polynucleotide phosphorylase/polyadenylase|unclassified	0.0202901570
+UniRef50_H3GNH0	0.0202889708
+UniRef50_H3GNH0|unclassified	0.0202889708
+UniRef50_C5BSZ9: TPR domain protein	0.0202777503
+UniRef50_C5BSZ9: TPR domain protein|unclassified	0.0202777503
+UniRef50_UPI00016C444E: DNA topoisomerase I	0.0202776523
+UniRef50_UPI00016C444E: DNA topoisomerase I|unclassified	0.0202776523
+UniRef50_H6SJP6	0.0202748860
+UniRef50_H6SJP6|unclassified	0.0202748860
+UniRef50_UPI00029ADD09: dehydrogenase E1 component	0.0202692024
+UniRef50_UPI00029ADD09: dehydrogenase E1 component|unclassified	0.0202692024
+UniRef50_F0VRQ0	0.0202657701
+UniRef50_F0VRQ0|unclassified	0.0202657701
+UniRef50_S4YST9	0.0202636640
+UniRef50_S4YST9|unclassified	0.0202636640
+UniRef50_F0A5S1	0.0202624078
+UniRef50_F0A5S1|unclassified	0.0202624078
+UniRef50_UPI000362805E: hypothetical protein	0.0202604231
+UniRef50_UPI000362805E: hypothetical protein|unclassified	0.0202604231
+UniRef50_UPI0003136BFB: hypothetical protein	0.0202446128
+UniRef50_UPI0003136BFB: hypothetical protein|unclassified	0.0202446128
+UniRef50_U6GKJ3: TPR domain-containing protein, putative	0.0202351296
+UniRef50_U6GKJ3: TPR domain-containing protein, putative|unclassified	0.0202351296
+UniRef50_F3PXV7	0.0202291903
+UniRef50_F3PXV7|unclassified	0.0202291903
+UniRef50_Q2NSZ1: Macrolide export ATP-binding/permease protein MacB	0.0202264314
+UniRef50_Q2NSZ1: Macrolide export ATP-binding/permease protein MacB|unclassified	0.0202264314
+UniRef50_F5SFK9: Transcriptional regulator	0.0202249787
+UniRef50_F5SFK9: Transcriptional regulator|unclassified	0.0202249787
+UniRef50_C4LC17	0.0202239105
+UniRef50_C4LC17|unclassified	0.0202239105
+UniRef50_UPI000328F876: PREDICTED: basic proline-rich protein-like	0.0202197441
+UniRef50_UPI000328F876: PREDICTED: basic proline-rich protein-like|unclassified	0.0202197441
+UniRef50_UPI00046491AE: hypothetical protein	0.0202196599
+UniRef50_UPI00046491AE: hypothetical protein|unclassified	0.0202196599
+UniRef50_UPI000470CE9E: DNA mismatch repair protein MutS	0.0202177641
+UniRef50_UPI000470CE9E: DNA mismatch repair protein MutS|unclassified	0.0202177641
+UniRef50_UPI00045EAD33: MULTISPECIES: hypothetical protein	0.0201989385
+UniRef50_UPI00045EAD33: MULTISPECIES: hypothetical protein|unclassified	0.0201989385
+UniRef50_UPI000345C5BA: hypothetical protein	0.0201953996
+UniRef50_UPI000345C5BA: hypothetical protein|unclassified	0.0201953996
+UniRef50_UPI000174444A: protein-P-II uridylyltransferase, putative	0.0201939803
+UniRef50_UPI000174444A: protein-P-II uridylyltransferase, putative|unclassified	0.0201939803
+UniRef50_UPI0002E5228C: hypothetical protein	0.0201902459
+UniRef50_UPI0002E5228C: hypothetical protein|unclassified	0.0201902459
+UniRef50_W5XB85: DNA-directed RNA polymerase subunit beta	0.0201863450
+UniRef50_W5XB85: DNA-directed RNA polymerase subunit beta|unclassified	0.0201863450
+UniRef50_UPI0003B71A0F: hypothetical protein	0.0201791323
+UniRef50_UPI0003B71A0F: hypothetical protein|unclassified	0.0201791323
+UniRef50_UPI0004757A87: multidrug ABC transporter	0.0201770841
+UniRef50_UPI0004757A87: multidrug ABC transporter|unclassified	0.0201770841
+UniRef50_W9AMV1: 3-oxoadipate enol-lactonase	0.0201724252
+UniRef50_W9AMV1: 3-oxoadipate enol-lactonase|unclassified	0.0201724252
+UniRef50_B7WPJ2: Trehalase	0.0201684175
+UniRef50_B7WPJ2: Trehalase|unclassified	0.0201684175
+UniRef50_A9FSF5	0.0201595394
+UniRef50_A9FSF5|unclassified	0.0201595394
+UniRef50_J0S0K6	0.0201589393
+UniRef50_J0S0K6|unclassified	0.0201589393
+UniRef50_Q399M3: Macrolide export ATP-binding/permease protein MacB	0.0201586649
+UniRef50_Q399M3: Macrolide export ATP-binding/permease protein MacB|unclassified	0.0201586649
+UniRef50_UPI0003825528: hypothetical protein	0.0201559708
+UniRef50_UPI0003825528: hypothetical protein|unclassified	0.0201559708
+UniRef50_A5EPJ2: DNA ligase	0.0201554882
+UniRef50_A5EPJ2: DNA ligase|unclassified	0.0201554882
+UniRef50_UPI00042B67B1: Serine hydroxymethyltransferase 6 isoform 2	0.0201463548
+UniRef50_UPI00042B67B1: Serine hydroxymethyltransferase 6 isoform 2|unclassified	0.0201463548
+UniRef50_W0HTE1	0.0201372688
+UniRef50_W0HTE1|unclassified	0.0201372688
+UniRef50_D3V3B6	0.0201362135
+UniRef50_D3V3B6|unclassified	0.0201362135
+UniRef50_UPI000466FDE3: hypothetical protein	0.0201333205
+UniRef50_UPI000466FDE3: hypothetical protein|unclassified	0.0201333205
+UniRef50_UPI00038193A8: hypothetical protein	0.0201323860
+UniRef50_UPI00038193A8: hypothetical protein|unclassified	0.0201323860
+UniRef50_D4F0Q1	0.0201299811
+UniRef50_D4F0Q1|unclassified	0.0201299811
+UniRef50_F9EYP6	0.0201271271
+UniRef50_F9EYP6|unclassified	0.0201271271
+UniRef50_UPI00035E725C: hypothetical protein	0.0201234691
+UniRef50_UPI00035E725C: hypothetical protein|unclassified	0.0201234691
+UniRef50_I3DTJ4	0.0201193488
+UniRef50_I3DTJ4|unclassified	0.0201193488
+UniRef50_UPI00047E6122: monovalent cation/H+ antiporter subunit D	0.0201167245
+UniRef50_UPI00047E6122: monovalent cation/H+ antiporter subunit D|unclassified	0.0201167245
+UniRef50_UPI0003B6D8C1: 3-phosphoshikimate 1-carboxyvinyltransferase, partial	0.0201100756
+UniRef50_UPI0003B6D8C1: 3-phosphoshikimate 1-carboxyvinyltransferase, partial|unclassified	0.0201100756
+UniRef50_UPI0003C14EF8: PREDICTED: chaperone protein ClpB1-like	0.0201087502
+UniRef50_UPI0003C14EF8: PREDICTED: chaperone protein ClpB1-like|unclassified	0.0201087502
+UniRef50_A0A022H255: Methylhydantoinase	0.0201076803
+UniRef50_A0A022H255: Methylhydantoinase|unclassified	0.0201076803
+UniRef50_G6XK52	0.0201058377
+UniRef50_G6XK52|unclassified	0.0201058377
+UniRef50_Q6BX71: 5-aminolevulinate synthase, mitochondrial	0.0201054356
+UniRef50_Q6BX71: 5-aminolevulinate synthase, mitochondrial|unclassified	0.0201054356
+UniRef50_C1N2Q4: Predicted protein (Fragment)	0.0201053646
+UniRef50_C1N2Q4: Predicted protein (Fragment)|unclassified	0.0201053646
+UniRef50_UPI00047AE677: hypothetical protein	0.0200970080
+UniRef50_UPI00047AE677: hypothetical protein|unclassified	0.0200970080
+UniRef50_UPI000370C086: hypothetical protein	0.0200959651
+UniRef50_UPI000370C086: hypothetical protein|unclassified	0.0200959651
+UniRef50_UPI00047943F3: ABC transporter permease	0.0200958389
+UniRef50_UPI00047943F3: ABC transporter permease|unclassified	0.0200958389
+UniRef50_P35667: Glutathione synthetase	0.0200904502
+UniRef50_P35667: Glutathione synthetase|unclassified	0.0200904502
+UniRef50_UPI0003608995: hypothetical protein	0.0200897246
+UniRef50_UPI0003608995: hypothetical protein|unclassified	0.0200897246
+UniRef50_J7Q420: MORN motif containing protein	0.0200877749
+UniRef50_J7Q420: MORN motif containing protein|unclassified	0.0200877749
+UniRef50_I4CPH6	0.0200776797
+UniRef50_I4CPH6|unclassified	0.0200776797
+UniRef50_UPI000412F4E6: chemotaxis protein CheW	0.0200714152
+UniRef50_UPI000412F4E6: chemotaxis protein CheW|unclassified	0.0200714152
+UniRef50_UPI0004433AF1: PREDICTED: UPF0249 protein ydjC homolog isoform X2	0.0200619671
+UniRef50_UPI0004433AF1: PREDICTED: UPF0249 protein ydjC homolog isoform X2|unclassified	0.0200619671
+UniRef50_A0A024HX85	0.0200600543
+UniRef50_A0A024HX85|unclassified	0.0200600543
+UniRef50_I7JW82: Taurine ABC transporter, periplasmic binding protein	0.0200547447
+UniRef50_I7JW82: Taurine ABC transporter, periplasmic binding protein|unclassified	0.0200547447
+UniRef50_UPI00036299DB: MULTISPECIES: hypothetical protein	0.0200499248
+UniRef50_UPI00036299DB: MULTISPECIES: hypothetical protein|unclassified	0.0200499248
+UniRef50_UPI00036E266B: hypothetical protein	0.0200455253
+UniRef50_UPI00036E266B: hypothetical protein|unclassified	0.0200455253
+UniRef50_C8NI16	0.0200421280
+UniRef50_C8NI16|unclassified	0.0200421280
+UniRef50_W8KHI6: ABC transporter	0.0200366570
+UniRef50_W8KHI6: ABC transporter|unclassified	0.0200366570
+UniRef50_UPI00046C358A: PREDICTED: LOW QUALITY PROTEIN: atherin-like	0.0200351265
+UniRef50_UPI00046C358A: PREDICTED: LOW QUALITY PROTEIN: atherin-like|unclassified	0.0200351265
+UniRef50_UPI0003B79E51: ATPase P	0.0200308000
+UniRef50_UPI0003B79E51: ATPase P|unclassified	0.0200308000
+UniRef50_UPI000372829F: MULTISPECIES: hypothetical protein	0.0200248879
+UniRef50_UPI000372829F: MULTISPECIES: hypothetical protein|unclassified	0.0200248879
+UniRef50_Q0QZJ2: Gp36	0.0200243295
+UniRef50_Q0QZJ2: Gp36|unclassified	0.0200243295
+UniRef50_G3GQA9	0.0200207655
+UniRef50_G3GQA9|unclassified	0.0200207655
+UniRef50_R9ART5	0.0200133886
+UniRef50_R9ART5|unclassified	0.0200133886
+UniRef50_K4DGW6	0.0200093307
+UniRef50_K4DGW6|unclassified	0.0200093307
+UniRef50_D8UCP5	0.0200031887
+UniRef50_D8UCP5|unclassified	0.0200031887
+UniRef50_UPI0003806C26: hypothetical protein	0.0200022747
+UniRef50_UPI0003806C26: hypothetical protein|unclassified	0.0200022747
+UniRef50_P55037: Ferredoxin-dependent glutamate synthase 1	0.0200012600
+UniRef50_P55037: Ferredoxin-dependent glutamate synthase 1|unclassified	0.0200012600
+UniRef50_UPI0001D36408: PREDICTED: argininosuccinate lyase-like	0.0200001165
+UniRef50_UPI0001D36408: PREDICTED: argininosuccinate lyase-like|unclassified	0.0200001165
+UniRef50_UPI000478527A: hypothetical protein	0.0199983778
+UniRef50_UPI000478527A: hypothetical protein|unclassified	0.0199983778
+UniRef50_W6I1I5	0.0199953669
+UniRef50_W6I1I5|unclassified	0.0199953669
+UniRef50_UPI0004691843: ATP-dependent DNA helicase	0.0199854961
+UniRef50_UPI0004691843: ATP-dependent DNA helicase|unclassified	0.0199854961
+UniRef50_P22320: NAD-reducing hydrogenase HoxS subunit beta	0.0199772788
+UniRef50_P22320: NAD-reducing hydrogenase HoxS subunit beta|unclassified	0.0199772788
+UniRef50_A0A017HER9: Flagellar motor rotation protein MotB	0.0199757978
+UniRef50_A0A017HER9: Flagellar motor rotation protein MotB|unclassified	0.0199757978
+UniRef50_B0TL32: Membrane protein involved in aromatic hydrocarbon degradation	0.0199731616
+UniRef50_B0TL32: Membrane protein involved in aromatic hydrocarbon degradation|unclassified	0.0199731616
+UniRef50_R5F3Z0	0.0199706680
+UniRef50_R5F3Z0|unclassified	0.0199706680
+UniRef50_UPI0002FD5ADE: hypothetical protein	0.0199664482
+UniRef50_UPI0002FD5ADE: hypothetical protein|unclassified	0.0199664482
+UniRef50_A0A011QY25: Efflux pump membrane transporter BepE	0.0199507819
+UniRef50_A0A011QY25: Efflux pump membrane transporter BepE|unclassified	0.0199507819
+UniRef50_UPI000374BDCB: hypothetical protein	0.0199480663
+UniRef50_UPI000374BDCB: hypothetical protein|unclassified	0.0199480663
+UniRef50_A6VWE9: Hemolysin-type calcium-binding region	0.0199416640
+UniRef50_A6VWE9: Hemolysin-type calcium-binding region|unclassified	0.0199416640
+UniRef50_UPI0004783D8E: hypothetical protein	0.0199403224
+UniRef50_UPI0004783D8E: hypothetical protein|unclassified	0.0199403224
+UniRef50_UPI00037D9A05: hypothetical protein, partial	0.0199314473
+UniRef50_UPI00037D9A05: hypothetical protein, partial|unclassified	0.0199314473
+UniRef50_UPI000467827F: dimodular nonribosomal peptide synthase	0.0199235968
+UniRef50_UPI000467827F: dimodular nonribosomal peptide synthase|unclassified	0.0199235968
+UniRef50_U5E3U5	0.0199184845
+UniRef50_U5E3U5|unclassified	0.0199184845
+UniRef50_H2XPU1	0.0199184622
+UniRef50_H2XPU1|unclassified	0.0199184622
+UniRef50_Q2GJV5: Polyribonucleotide nucleotidyltransferase	0.0199032352
+UniRef50_Q2GJV5: Polyribonucleotide nucleotidyltransferase|unclassified	0.0199032352
+UniRef50_R8QRN4	0.0198969364
+UniRef50_R8QRN4|unclassified	0.0198969364
+UniRef50_X8MWV9: TraI family protein	0.0198965303
+UniRef50_X8MWV9: TraI family protein|unclassified	0.0198965303
+UniRef50_UPI000249106B: ATP-dependent nuclease subunit A	0.0198919856
+UniRef50_UPI000249106B: ATP-dependent nuclease subunit A|unclassified	0.0198919856
+UniRef50_UPI00046DF438: PREDICTED: glycine--tRNA ligase 2, chloroplastic/mitochondrial	0.0198839820
+UniRef50_UPI00046DF438: PREDICTED: glycine--tRNA ligase 2, chloroplastic/mitochondrial|unclassified	0.0198839820
+UniRef50_A0A022ML05: Type III effector HopAG1	0.0198794424
+UniRef50_A0A022ML05: Type III effector HopAG1|unclassified	0.0198794424
+UniRef50_UPI000262D125: DNA mismatch repair protein MutS	0.0198782223
+UniRef50_UPI000262D125: DNA mismatch repair protein MutS|unclassified	0.0198782223
+UniRef50_W4UAP9: Anaerobic glycerol-3-phosphate dehydrogenase subunit B	0.0198768167
+UniRef50_W4UAP9: Anaerobic glycerol-3-phosphate dehydrogenase subunit B|unclassified	0.0198768167
+UniRef50_T0RF90	0.0198740935
+UniRef50_T0RF90|unclassified	0.0198740935
+UniRef50_U4SZL7: Conjugative relaxase domain protein	0.0198717730
+UniRef50_U4SZL7: Conjugative relaxase domain protein|unclassified	0.0198717730
+UniRef50_E1ZJI9	0.0198691158
+UniRef50_E1ZJI9|unclassified	0.0198691158
+UniRef50_UPI0004130CFC: beta-galactosidase	0.0198646910
+UniRef50_UPI0004130CFC: beta-galactosidase|unclassified	0.0198646910
+UniRef50_UPI0002F70260: hypothetical protein	0.0198603008
+UniRef50_UPI0002F70260: hypothetical protein|unclassified	0.0198603008
+UniRef50_UPI000373F722: histone H1	0.0198602639
+UniRef50_UPI000373F722: histone H1|unclassified	0.0198602639
+UniRef50_F5J2R0	0.0198587300
+UniRef50_F5J2R0|unclassified	0.0198587300
+UniRef50_UPI0004770EDA: cell division protein FtsI	0.0198448392
+UniRef50_UPI0004770EDA: cell division protein FtsI|unclassified	0.0198448392
+UniRef50_A0A059KID1	0.0198419149
+UniRef50_A0A059KID1|unclassified	0.0198419149
+UniRef50_H2A0L0: Tyrosinase-like protein 1	0.0198408479
+UniRef50_H2A0L0: Tyrosinase-like protein 1|unclassified	0.0198408479
+UniRef50_Q9UQ39: RNA binding protein (Fragment)	0.0198388168
+UniRef50_Q9UQ39: RNA binding protein (Fragment)|unclassified	0.0198388168
+UniRef50_UPI000469F4B7: hypothetical protein	0.0198312352
+UniRef50_UPI000469F4B7: hypothetical protein|unclassified	0.0198312352
+UniRef50_UPI000477D310: ABC transporter permease	0.0198269615
+UniRef50_UPI000477D310: ABC transporter permease|unclassified	0.0198269615
+UniRef50_D7A7M3: NnrS family protein	0.0198222697
+UniRef50_D7A7M3: NnrS family protein|unclassified	0.0198222697
+UniRef50_W5XB99: 50S ribosomal protein l3	0.0198214511
+UniRef50_W5XB99: 50S ribosomal protein l3|unclassified	0.0198214511
+UniRef50_UPI00029DCE7C: PREDICTED: alsin-like	0.0198096606
+UniRef50_UPI00029DCE7C: PREDICTED: alsin-like|unclassified	0.0198096606
+UniRef50_UPI0003B31446: peptide ABC transporter ATP-binding protein	0.0198084127
+UniRef50_UPI0003B31446: peptide ABC transporter ATP-binding protein|unclassified	0.0198084127
+UniRef50_Q4L5E9: Endonuclease MutS2	0.0198072097
+UniRef50_Q4L5E9: Endonuclease MutS2|unclassified	0.0198072097
+UniRef50_D8TIH0	0.0198070695
+UniRef50_D8TIH0|unclassified	0.0198070695
+UniRef50_UPI00037FDB1B: hypothetical protein	0.0198055930
+UniRef50_UPI00037FDB1B: hypothetical protein|unclassified	0.0198055930
+UniRef50_UPI000185E562: hypothetical protein TGME49_034960	0.0198048815
+UniRef50_UPI000185E562: hypothetical protein TGME49_034960|unclassified	0.0198048815
+UniRef50_H8I319	0.0197996547
+UniRef50_H8I319|unclassified	0.0197996547
+UniRef50_I3TX57	0.0197988145
+UniRef50_I3TX57|unclassified	0.0197988145
+UniRef50_UPI0004722773: hypothetical protein	0.0197970802
+UniRef50_UPI0004722773: hypothetical protein|unclassified	0.0197970802
+UniRef50_UPI00036ECAC2: MULTISPECIES: hypothetical protein	0.0197929226
+UniRef50_UPI00036ECAC2: MULTISPECIES: hypothetical protein|unclassified	0.0197929226
+UniRef50_UPI000273BC28: PREDICTED: thymidine phosphorylase	0.0197913619
+UniRef50_UPI000273BC28: PREDICTED: thymidine phosphorylase|unclassified	0.0197913619
+UniRef50_K9QP85	0.0197884504
+UniRef50_K9QP85|unclassified	0.0197884504
+UniRef50_UPI000359EB0E: PREDICTED: acyl-CoA dehydrogenase family member 9, mitochondrial-like	0.0197879693
+UniRef50_UPI000359EB0E: PREDICTED: acyl-CoA dehydrogenase family member 9, mitochondrial-like|unclassified	0.0197879693
+UniRef50_UPI0004651515: hypothetical protein	0.0197852473
+UniRef50_UPI0004651515: hypothetical protein|unclassified	0.0197852473
+UniRef50_B2GK44	0.0197846125
+UniRef50_B2GK44|unclassified	0.0197846125
+UniRef50_UPI00046F6AE9: glycosyl hydrolase	0.0197832897
+UniRef50_UPI00046F6AE9: glycosyl hydrolase|unclassified	0.0197832897
+UniRef50_UPI00037BC68E: hypothetical protein	0.0197831413
+UniRef50_UPI00037BC68E: hypothetical protein|unclassified	0.0197831413
+UniRef50_K6DPK7: YhgE/Pip C-terminal domain-containing protein	0.0197768277
+UniRef50_K6DPK7: YhgE/Pip C-terminal domain-containing protein|unclassified	0.0197768277
+UniRef50_Q2GDQ6: Leucine--tRNA ligase	0.0197761485
+UniRef50_Q2GDQ6: Leucine--tRNA ligase|unclassified	0.0197761485
+UniRef50_UPI00037952D8: hypothetical protein	0.0197638481
+UniRef50_UPI00037952D8: hypothetical protein|unclassified	0.0197638481
+UniRef50_U7UFH3: HD domain protein	0.0197619483
+UniRef50_U7UFH3: HD domain protein|unclassified	0.0197619483
+UniRef50_Q881Q1: Macrolide export ATP-binding/permease protein MacB 2	0.0197600099
+UniRef50_Q881Q1: Macrolide export ATP-binding/permease protein MacB 2|unclassified	0.0197600099
+UniRef50_UPI0002624FC5: hypothetical protein	0.0197580429
+UniRef50_UPI0002624FC5: hypothetical protein|unclassified	0.0197580429
+UniRef50_Q94BZ7: DNA gyrase subunit B, mitochondrial	0.0197560995
+UniRef50_Q94BZ7: DNA gyrase subunit B, mitochondrial|unclassified	0.0197560995
+UniRef50_X6W181	0.0197529425
+UniRef50_X6W181|unclassified	0.0197529425
+UniRef50_UPI000395A9DA: PREDICTED: valine--tRNA ligase, partial	0.0197510412
+UniRef50_UPI000395A9DA: PREDICTED: valine--tRNA ligase, partial|unclassified	0.0197510412
+UniRef50_Q5YWD4: NADH-quinone oxidoreductase subunits H/I	0.0197481818
+UniRef50_Q5YWD4: NADH-quinone oxidoreductase subunits H/I|unclassified	0.0197481818
+UniRef50_K6XUB4	0.0197474887
+UniRef50_K6XUB4|unclassified	0.0197474887
+UniRef50_Q8PTZ5	0.0197404924
+UniRef50_Q8PTZ5|unclassified	0.0197404924
+UniRef50_H3NG61: Rib/alpha/Esp surface antigen (Fragment)	0.0197368491
+UniRef50_H3NG61: Rib/alpha/Esp surface antigen (Fragment)|unclassified	0.0197368491
+UniRef50_UPI00036F0C88: hypothetical protein	0.0197347801
+UniRef50_UPI00036F0C88: hypothetical protein|unclassified	0.0197347801
+UniRef50_G4YCS1	0.0197213591
+UniRef50_G4YCS1|unclassified	0.0197213591
+UniRef50_UPI0004666336: DNA mismatch repair protein MutS	0.0197184536
+UniRef50_UPI0004666336: DNA mismatch repair protein MutS|unclassified	0.0197184536
+UniRef50_UPI000380D55F: hypothetical protein	0.0197175326
+UniRef50_UPI000380D55F: hypothetical protein|unclassified	0.0197175326
+UniRef50_O34204: DNA topoisomerase 1	0.0197070137
+UniRef50_O34204: DNA topoisomerase 1|unclassified	0.0197070137
+UniRef50_UPI00035E1A30: hypothetical protein	0.0197035113
+UniRef50_UPI00035E1A30: hypothetical protein|unclassified	0.0197035113
+UniRef50_G8QFB0: Diguanylate cyclase (GGDEF) domain-containing protein	0.0197029819
+UniRef50_G8QFB0: Diguanylate cyclase (GGDEF) domain-containing protein|unclassified	0.0197029819
+UniRef50_UPI0004734FB8: hypothetical protein	0.0197006897
+UniRef50_UPI0004734FB8: hypothetical protein|unclassified	0.0197006897
+UniRef50_UPI0003B42C7B: histidine kinase	0.0196897199
+UniRef50_UPI0003B42C7B: histidine kinase|unclassified	0.0196897199
+UniRef50_M4NC33: Microcin-processing peptidase 1	0.0196868706
+UniRef50_M4NC33: Microcin-processing peptidase 1|unclassified	0.0196868706
+UniRef50_T1G3U4	0.0196866167
+UniRef50_T1G3U4|unclassified	0.0196866167
+UniRef50_N0AS90: Signaling protein	0.0196826239
+UniRef50_N0AS90: Signaling protein|unclassified	0.0196826239
+UniRef50_UPI000375CC3F: hypothetical protein	0.0196699413
+UniRef50_UPI000375CC3F: hypothetical protein|unclassified	0.0196699413
+UniRef50_Q03215: ATP-dependent 6-phosphofructokinase subunit alpha	0.0196697727
+UniRef50_Q03215: ATP-dependent 6-phosphofructokinase subunit alpha|unclassified	0.0196697727
+UniRef50_R1DS42	0.0196663019
+UniRef50_R1DS42|unclassified	0.0196663019
+UniRef50_Q98KC4: DNA ligase	0.0196555358
+UniRef50_Q98KC4: DNA ligase|unclassified	0.0196555358
+UniRef50_UPI0003C13A46: PREDICTED: alkylated DNA repair protein alkB homolog 1 isoform X2	0.0196509237
+UniRef50_UPI0003C13A46: PREDICTED: alkylated DNA repair protein alkB homolog 1 isoform X2|unclassified	0.0196509237
+UniRef50_UPI0003798661: hypothetical protein	0.0196501574
+UniRef50_UPI0003798661: hypothetical protein|unclassified	0.0196501574
+UniRef50_B8P001: Predicted protein	0.0196479839
+UniRef50_B8P001: Predicted protein|unclassified	0.0196479839
+UniRef50_UPI000377A633: hypothetical protein	0.0196422437
+UniRef50_UPI000377A633: hypothetical protein|unclassified	0.0196422437
+UniRef50_A1VTM3: Filamentous hemagglutinin family outer membrane protein	0.0196355406
+UniRef50_A1VTM3: Filamentous hemagglutinin family outer membrane protein|unclassified	0.0196355406
+UniRef50_UPI0004658083: hypothetical protein	0.0196343359
+UniRef50_UPI0004658083: hypothetical protein|unclassified	0.0196343359
+UniRef50_UPI000395A939: phosphate ABC transporter permease	0.0196321227
+UniRef50_UPI000395A939: phosphate ABC transporter permease|unclassified	0.0196321227
+UniRef50_UPI00041A30E2: hypothetical protein	0.0196261441
+UniRef50_UPI00041A30E2: hypothetical protein|unclassified	0.0196261441
+UniRef50_L9U810: Diguanylate cyclase, predicted	0.0196173679
+UniRef50_L9U810: Diguanylate cyclase, predicted|unclassified	0.0196173679
+UniRef50_UPI0003B4AFEA: serine/threonine protein kinase	0.0196167339
+UniRef50_UPI0003B4AFEA: serine/threonine protein kinase|unclassified	0.0196167339
+UniRef50_UPI0003B6A033: ABC transporter	0.0196110670
+UniRef50_UPI0003B6A033: ABC transporter|unclassified	0.0196110670
+UniRef50_G0NRW8	0.0196090526
+UniRef50_G0NRW8|unclassified	0.0196090526
+UniRef50_UPI00047E14E8: hypothetical protein	0.0196075657
+UniRef50_UPI00047E14E8: hypothetical protein|unclassified	0.0196075657
+UniRef50_Q2T6R3: 1,4-alpha-glucan branching enzyme GlgB	0.0196021765
+UniRef50_Q2T6R3: 1,4-alpha-glucan branching enzyme GlgB|unclassified	0.0196021765
+UniRef50_Q2N9V6: DNA ligase	0.0196015123
+UniRef50_Q2N9V6: DNA ligase|unclassified	0.0196015123
+UniRef50_G5EH57	0.0195922963
+UniRef50_G5EH57|unclassified	0.0195922963
+UniRef50_UPI00034A840A: magnesium chelatase	0.0195903500
+UniRef50_UPI00034A840A: magnesium chelatase|unclassified	0.0195903500
+UniRef50_P45745: Dimodular nonribosomal peptide synthase	0.0195864847
+UniRef50_P45745: Dimodular nonribosomal peptide synthase|unclassified	0.0195864847
+UniRef50_UPI0003479767: hypothetical protein	0.0195797789
+UniRef50_UPI0003479767: hypothetical protein|unclassified	0.0195797789
+UniRef50_UPI00037E022B: hypothetical protein	0.0195787601
+UniRef50_UPI00037E022B: hypothetical protein|unclassified	0.0195787601
+UniRef50_S9RNF1: Flagellar motor rotation protein MotB	0.0195779166
+UniRef50_S9RNF1: Flagellar motor rotation protein MotB|unclassified	0.0195779166
+UniRef50_D4X8Q1: RepB plasmid partitioning protein	0.0195760303
+UniRef50_D4X8Q1: RepB plasmid partitioning protein|unclassified	0.0195760303
+UniRef50_V6KW31	0.0195725177
+UniRef50_V6KW31|unclassified	0.0195725177
+UniRef50_X6L148	0.0195600790
+UniRef50_X6L148|unclassified	0.0195600790
+UniRef50_D3E007: Adhesin-like protein	0.0195527811
+UniRef50_D3E007: Adhesin-like protein|unclassified	0.0195527811
+UniRef50_R6B9D7: CoA-substrate-specific enzyme activase putative	0.0195525572
+UniRef50_R6B9D7: CoA-substrate-specific enzyme activase putative|unclassified	0.0195525572
+UniRef50_I1YI62: Gliding motility protein GldG	0.0195505688
+UniRef50_I1YI62: Gliding motility protein GldG|unclassified	0.0195505688
+UniRef50_UPI00039FBFD3: hypothetical protein	0.0195498575
+UniRef50_UPI00039FBFD3: hypothetical protein|unclassified	0.0195498575
+UniRef50_Q0C1N8: Macrolide export ATP-binding/permease protein MacB	0.0195482905
+UniRef50_Q0C1N8: Macrolide export ATP-binding/permease protein MacB|unclassified	0.0195482905
+UniRef50_UPI00016C447B: sensory transduction histidine kinase	0.0195458753
+UniRef50_UPI00016C447B: sensory transduction histidine kinase|unclassified	0.0195458753
+UniRef50_G5JIC9: Membrane protein	0.0195452541
+UniRef50_G5JIC9: Membrane protein|unclassified	0.0195452541
+UniRef50_N4W4B5	0.0195452321
+UniRef50_N4W4B5|unclassified	0.0195452321
+UniRef50_UPI0004411D80: asparaginyl-tRNA synthetase	0.0195279580
+UniRef50_UPI0004411D80: asparaginyl-tRNA synthetase|unclassified	0.0195279580
+UniRef50_Q7UJ69: Dihydroxy-acid dehydratase	0.0195265020
+UniRef50_Q7UJ69: Dihydroxy-acid dehydratase|unclassified	0.0195265020
+UniRef50_UPI000409E10F: membrane protein	0.0195215739
+UniRef50_UPI000409E10F: membrane protein|unclassified	0.0195215739
+UniRef50_C7CAN5: Chemotaxis protein MotB	0.0195193222
+UniRef50_C7CAN5: Chemotaxis protein MotB|unclassified	0.0195193222
+UniRef50_UPI00047210DD: hypothetical protein	0.0195180735
+UniRef50_UPI00047210DD: hypothetical protein|unclassified	0.0195180735
+UniRef50_X7F4Y8	0.0195168198
+UniRef50_X7F4Y8|unclassified	0.0195168198
+UniRef50_Q82JF0: 1,4-alpha-glucan branching enzyme GlgB 1	0.0195161391
+UniRef50_Q82JF0: 1,4-alpha-glucan branching enzyme GlgB 1|unclassified	0.0195161391
+UniRef50_A3TUW4: Flagellar motor protein	0.0195095615
+UniRef50_A3TUW4: Flagellar motor protein|unclassified	0.0195095615
+UniRef50_UPI00041B0045: hypothetical protein	0.0194928891
+UniRef50_UPI00041B0045: hypothetical protein|unclassified	0.0194928891
+UniRef50_UPI000477AF8F: hypothetical protein	0.0194774420
+UniRef50_UPI000477AF8F: hypothetical protein|unclassified	0.0194774420
+UniRef50_G4HUJ2: 40-residue YVTN family beta-propeller repeat protein	0.0194724188
+UniRef50_G4HUJ2: 40-residue YVTN family beta-propeller repeat protein|unclassified	0.0194724188
+UniRef50_UPI0004434C1D: PREDICTED: trehalase isoform X3	0.0194655449
+UniRef50_UPI0004434C1D: PREDICTED: trehalase isoform X3|unclassified	0.0194655449
+UniRef50_UPI000478F20C: macrolide transporter	0.0194649818
+UniRef50_UPI000478F20C: macrolide transporter|unclassified	0.0194649818
+UniRef50_Q9T0P4: Ferredoxin-dependent glutamate synthase 2, chloroplastic	0.0194647640
+UniRef50_Q9T0P4: Ferredoxin-dependent glutamate synthase 2, chloroplastic|unclassified	0.0194647640
+UniRef50_E3EZ66	0.0194646273
+UniRef50_E3EZ66|unclassified	0.0194646273
+UniRef50_A6QV35: Predicted protein	0.0194644632
+UniRef50_A6QV35: Predicted protein|unclassified	0.0194644632
+UniRef50_UPI0004648E91: hypothetical protein	0.0194611309
+UniRef50_UPI0004648E91: hypothetical protein|unclassified	0.0194611309
+UniRef50_Q9T1A3: Gp20	0.0194604043
+UniRef50_Q9T1A3: Gp20|unclassified	0.0194604043
+UniRef50_UPI0004692036: virulence factor SrfB	0.0194478745
+UniRef50_UPI0004692036: virulence factor SrfB|unclassified	0.0194478745
+UniRef50_UPI000368894C: hypothetical protein	0.0194408130
+UniRef50_UPI000368894C: hypothetical protein|unclassified	0.0194408130
+UniRef50_A8XWT3: Protein CBG19956	0.0194389350
+UniRef50_A8XWT3: Protein CBG19956|unclassified	0.0194389350
+UniRef50_A5FCG5	0.0194294841
+UniRef50_A5FCG5|unclassified	0.0194294841
+UniRef50_U6LJN8: Iron only hydrogenase large subunit, C-terminal domain-containing protein, putative	0.0194266891
+UniRef50_U6LJN8: Iron only hydrogenase large subunit, C-terminal domain-containing protein, putative|unclassified	0.0194266891
+UniRef50_C1N0Z7: Predicted protein	0.0194251229
+UniRef50_C1N0Z7: Predicted protein|unclassified	0.0194251229
+UniRef50_W4VNE2: DNA double-strand break repair Rad50 ATPase	0.0194148598
+UniRef50_W4VNE2: DNA double-strand break repair Rad50 ATPase|unclassified	0.0194148598
+UniRef50_D5ZH35: Predicted protein	0.0194047204
+UniRef50_D5ZH35: Predicted protein|unclassified	0.0194047204
+UniRef50_N0APD1	0.0194045805
+UniRef50_N0APD1|unclassified	0.0194045805
+UniRef50_Q8TUT7: Carbamoyl-phosphate synthase large chain, C-terminal section	0.0193981112
+UniRef50_Q8TUT7: Carbamoyl-phosphate synthase large chain, C-terminal section|unclassified	0.0193981112
+UniRef50_V4Z5N2: RNA polymerase III transcription factor (TF)IIIC subunit	0.0193961687
+UniRef50_V4Z5N2: RNA polymerase III transcription factor (TF)IIIC subunit|unclassified	0.0193961687
+UniRef50_UPI000462444A: hypothetical protein TRAVEDRAFT_47836	0.0193955261
+UniRef50_UPI000462444A: hypothetical protein TRAVEDRAFT_47836|unclassified	0.0193955261
+UniRef50_UPI00035C3313: hypothetical protein	0.0193913739
+UniRef50_UPI00035C3313: hypothetical protein|unclassified	0.0193913739
+UniRef50_UPI0004794D10: hypothetical protein	0.0193885642
+UniRef50_UPI0004794D10: hypothetical protein|unclassified	0.0193885642
+UniRef50_K4Q9I5: ComE operon protein 3	0.0193881973
+UniRef50_K4Q9I5: ComE operon protein 3|unclassified	0.0193881973
+UniRef50_UPI0002B472DF: PREDICTED: LOW QUALITY PROTEIN: 2-oxoglutarate dehydrogenase E1 component-like	0.0193866110
+UniRef50_UPI0002B472DF: PREDICTED: LOW QUALITY PROTEIN: 2-oxoglutarate dehydrogenase E1 component-like|unclassified	0.0193866110
+UniRef50_UPI0004746019: membrane protein	0.0193804935
+UniRef50_UPI0004746019: membrane protein|unclassified	0.0193804935
+UniRef50_Q0SBN0	0.0193773112
+UniRef50_Q0SBN0|unclassified	0.0193773112
+UniRef50_Q2SC60	0.0193649621
+UniRef50_Q2SC60|unclassified	0.0193649621
+UniRef50_UPI00041C1C9B: type VI secretion protein	0.0193622037
+UniRef50_UPI00041C1C9B: type VI secretion protein|unclassified	0.0193622037
+UniRef50_UPI0002559B94: chemotaxis protein histidine kinase-like kinase	0.0193620027
+UniRef50_UPI0002559B94: chemotaxis protein histidine kinase-like kinase|unclassified	0.0193620027
+UniRef50_Q92370: Multifunctional tryptophan biosynthesis protein	0.0193511349
+UniRef50_Q92370: Multifunctional tryptophan biosynthesis protein|unclassified	0.0193511349
+UniRef50_B2KEN0: DNA-directed RNA polymerase subunit beta'	0.0193450384
+UniRef50_B2KEN0: DNA-directed RNA polymerase subunit beta'|unclassified	0.0193450384
+UniRef50_U5L685: Membrane protein	0.0193445604
+UniRef50_U5L685: Membrane protein|unclassified	0.0193445604
+UniRef50_UPI00021A59DA: PREDICTED: hypothetical protein LOC100635956	0.0193344016
+UniRef50_UPI00021A59DA: PREDICTED: hypothetical protein LOC100635956|unclassified	0.0193344016
+UniRef50_UPI00034C7718: hypothetical protein	0.0193341778
+UniRef50_UPI00034C7718: hypothetical protein|unclassified	0.0193341778
+UniRef50_UPI000348B233: hypothetical protein	0.0193188631
+UniRef50_UPI000348B233: hypothetical protein|unclassified	0.0193188631
+UniRef50_UPI0003796517: hypothetical protein	0.0193186149
+UniRef50_UPI0003796517: hypothetical protein|unclassified	0.0193186149
+UniRef50_UPI000365F03D: hypothetical protein	0.0193163094
+UniRef50_UPI000365F03D: hypothetical protein|unclassified	0.0193163094
+UniRef50_UPI0003955F2E: PREDICTED: c-1-tetrahydrofolate synthase, cytoplasmic	0.0193121749
+UniRef50_UPI0003955F2E: PREDICTED: c-1-tetrahydrofolate synthase, cytoplasmic|unclassified	0.0193121749
+UniRef50_UPI00037376DC: hypothetical protein	0.0193089653
+UniRef50_UPI00037376DC: hypothetical protein|unclassified	0.0193089653
+UniRef50_UPI0003761A55: hypothetical protein	0.0193081050
+UniRef50_UPI0003761A55: hypothetical protein|unclassified	0.0193081050
+UniRef50_A7HRK9: Gene transfer agent (GTA) like protein	0.0192923715
+UniRef50_A7HRK9: Gene transfer agent (GTA) like protein|unclassified	0.0192923715
+UniRef50_UPI0003704FCD: hypothetical protein	0.0192890366
+UniRef50_UPI0003704FCD: hypothetical protein|unclassified	0.0192890366
+UniRef50_F3KHD1	0.0192862252
+UniRef50_F3KHD1|unclassified	0.0192862252
+UniRef50_C6NYG1: Flagellar biosynthesis protein FlhA	0.0192745567
+UniRef50_C6NYG1: Flagellar biosynthesis protein FlhA|unclassified	0.0192745567
+UniRef50_Q42523: Methylcrotonoyl-CoA carboxylase subunit alpha, mitochondrial	0.0192732494
+UniRef50_Q42523: Methylcrotonoyl-CoA carboxylase subunit alpha, mitochondrial|unclassified	0.0192732494
+UniRef50_J3D958	0.0192729652
+UniRef50_J3D958|unclassified	0.0192729652
+UniRef50_UPI0002F6EC83: hypothetical protein	0.0192720824
+UniRef50_UPI0002F6EC83: hypothetical protein|unclassified	0.0192720824
+UniRef50_UPI0001744997: peptidase U32	0.0192719680
+UniRef50_UPI0001744997: peptidase U32|unclassified	0.0192719680
+UniRef50_UPI00037B7D84: hypothetical protein	0.0192716069
+UniRef50_UPI00037B7D84: hypothetical protein|unclassified	0.0192716069
+UniRef50_Z5X5V3: Cation transporting ATPase	0.0192684454
+UniRef50_Z5X5V3: Cation transporting ATPase|unclassified	0.0192684454
+UniRef50_UPI00036B9453: hypothetical protein	0.0192610648
+UniRef50_UPI00036B9453: hypothetical protein|unclassified	0.0192610648
+UniRef50_UPI000367649B: hypothetical protein	0.0192587919
+UniRef50_UPI000367649B: hypothetical protein|unclassified	0.0192587919
+UniRef50_F6F3C8: FAD-dependent pyridine nucleotide-disulfide oxidoreductase	0.0192585107
+UniRef50_F6F3C8: FAD-dependent pyridine nucleotide-disulfide oxidoreductase|unclassified	0.0192585107
+UniRef50_E3NM00	0.0192493148
+UniRef50_E3NM00|unclassified	0.0192493148
+UniRef50_UPI0003B6D815: hypothetical protein	0.0192468232
+UniRef50_UPI0003B6D815: hypothetical protein|unclassified	0.0192468232
+UniRef50_UPI00044134F7: hypothetical protein DICSQDRAFT_179654	0.0192385740
+UniRef50_UPI00044134F7: hypothetical protein DICSQDRAFT_179654|unclassified	0.0192385740
+UniRef50_X1Y7E7	0.0192287995
+UniRef50_X1Y7E7|unclassified	0.0192287995
+UniRef50_UPI0004561990: hypothetical protein PFL1_04301	0.0192251407
+UniRef50_UPI0004561990: hypothetical protein PFL1_04301|unclassified	0.0192251407
+UniRef50_F5XTV6: Putative ABC transporter substrate-binding protein	0.0192230017
+UniRef50_F5XTV6: Putative ABC transporter substrate-binding protein|unclassified	0.0192230017
+UniRef50_UPI00045E98AE: hypothetical protein	0.0192213011
+UniRef50_UPI00045E98AE: hypothetical protein|unclassified	0.0192213011
+UniRef50_UPI00021A5A53: PREDICTED: trigger factor-like	0.0192201318
+UniRef50_UPI00021A5A53: PREDICTED: trigger factor-like|unclassified	0.0192201318
+UniRef50_UPI000349D251: hypothetical protein	0.0192135433
+UniRef50_UPI000349D251: hypothetical protein|unclassified	0.0192135433
+UniRef50_UPI000262C9FD: ribonuclease, Rne/Rng family protein	0.0192054955
+UniRef50_UPI000262C9FD: ribonuclease, Rne/Rng family protein|unclassified	0.0192054955
+UniRef50_W5XGS0: UDP-N-acetylmuramoylalanine--D-glutamate ligase	0.0191971118
+UniRef50_W5XGS0: UDP-N-acetylmuramoylalanine--D-glutamate ligase|unclassified	0.0191971118
+UniRef50_G8W870: Type VI secretion protein, VC_A0110 family	0.0191894469
+UniRef50_G8W870: Type VI secretion protein, VC_A0110 family|unclassified	0.0191894469
+UniRef50_R9BUX5: MobA/MobL family protein	0.0191890862
+UniRef50_R9BUX5: MobA/MobL family protein|unclassified	0.0191890862
+UniRef50_P23224: Zinc metalloproteinase	0.0191860029
+UniRef50_P23224: Zinc metalloproteinase|unclassified	0.0191860029
+UniRef50_A0A017HHJ1: GTA NlpC/P60 family peptidase	0.0191852287
+UniRef50_A0A017HHJ1: GTA NlpC/P60 family peptidase|unclassified	0.0191852287
+UniRef50_L8M421	0.0191809414
+UniRef50_L8M421|unclassified	0.0191809414
+UniRef50_Q98QY9: Glycerol kinase	0.0191758402
+UniRef50_Q98QY9: Glycerol kinase|unclassified	0.0191758402
+UniRef50_E6PSY8: 6-pyruvoyl tetrahydrobiopterin synthase (PTPS) (Modular protein)	0.0191747798
+UniRef50_E6PSY8: 6-pyruvoyl tetrahydrobiopterin synthase (PTPS) (Modular protein)|unclassified	0.0191747798
+UniRef50_UPI00045D98FA: PREDICTED: ATP-binding cassette sub-family B member 10, mitochondrial isoform X2	0.0191648218
+UniRef50_UPI00045D98FA: PREDICTED: ATP-binding cassette sub-family B member 10, mitochondrial isoform X2|unclassified	0.0191648218
+UniRef50_W9V3U7: Putative membrane protein	0.0191630916
+UniRef50_W9V3U7: Putative membrane protein|unclassified	0.0191630916
+UniRef50_UPI0004645C69: hypothetical protein	0.0191614406
+UniRef50_UPI0004645C69: hypothetical protein|unclassified	0.0191614406
+UniRef50_W2FJX3: ATPase AAA	0.0191503104
+UniRef50_W2FJX3: ATPase AAA|unclassified	0.0191503104
+UniRef50_E6CES2	0.0191477507
+UniRef50_E6CES2|unclassified	0.0191477507
+UniRef50_UPI0003B35096: GntR family transcriptional regulator	0.0191451786
+UniRef50_UPI0003B35096: GntR family transcriptional regulator|unclassified	0.0191451786
+UniRef50_R5EI31	0.0191424188
+UniRef50_R5EI31|unclassified	0.0191424188
+UniRef50_D2R7T8	0.0191393650
+UniRef50_D2R7T8|unclassified	0.0191393650
+UniRef50_U6G4A2	0.0191368726
+UniRef50_U6G4A2|unclassified	0.0191368726
+UniRef50_UPI00036188FB: hypothetical protein	0.0191342572
+UniRef50_UPI00036188FB: hypothetical protein|unclassified	0.0191342572
+UniRef50_H9KM02: Methionine aminopeptidase	0.0191251307
+UniRef50_H9KM02: Methionine aminopeptidase|unclassified	0.0191251307
+UniRef50_M4U6L4: Putative lipoprotein	0.0191142496
+UniRef50_M4U6L4: Putative lipoprotein|unclassified	0.0191142496
+UniRef50_Q2RKZ1: Leucine--tRNA ligase	0.0191081038
+UniRef50_Q2RKZ1: Leucine--tRNA ligase|unclassified	0.0191081038
+UniRef50_UPI00047456B7: structural toxin protein RtxA	0.0191073211
+UniRef50_UPI00047456B7: structural toxin protein RtxA|unclassified	0.0191073211
+UniRef50_V4N1G5: Tellurite resistance protein TerB	0.0191067549
+UniRef50_V4N1G5: Tellurite resistance protein TerB|unclassified	0.0191067549
+UniRef50_UPI0002B47A05: PREDICTED: keratin, type I cytoskeletal 14-like	0.0191027897
+UniRef50_UPI0002B47A05: PREDICTED: keratin, type I cytoskeletal 14-like|unclassified	0.0191027897
+UniRef50_UPI0003B79BBC: NAD-dependent DNA ligase LigA	0.0190931347
+UniRef50_UPI0003B79BBC: NAD-dependent DNA ligase LigA|unclassified	0.0190931347
+UniRef50_UPI0002B8EE1A	0.0190869865
+UniRef50_UPI0002B8EE1A|unclassified	0.0190869865
+UniRef50_UPI0002D5D0AD: hypothetical protein	0.0190858589
+UniRef50_UPI0002D5D0AD: hypothetical protein|unclassified	0.0190858589
+UniRef50_UPI000369122A: MULTISPECIES: hypothetical protein	0.0190822760
+UniRef50_UPI000369122A: MULTISPECIES: hypothetical protein|unclassified	0.0190822760
+UniRef50_UPI0003C17D4A	0.0190812665
+UniRef50_UPI0003C17D4A|unclassified	0.0190812665
+UniRef50_R5STI5: CoA-substrate-specific enzyme activase	0.0190789279
+UniRef50_R5STI5: CoA-substrate-specific enzyme activase|unclassified	0.0190789279
+UniRef50_UPI0002DD755D: hypothetical protein	0.0190776154
+UniRef50_UPI0002DD755D: hypothetical protein|unclassified	0.0190776154
+UniRef50_UPI0002BC4120: phosphoenolpyruvate-protein phosphotransferase, partial	0.0190680389
+UniRef50_UPI0002BC4120: phosphoenolpyruvate-protein phosphotransferase, partial|unclassified	0.0190680389
+UniRef50_B8GL43: Glutamate-ammonia-ligase adenylyltransferase	0.0190650135
+UniRef50_B8GL43: Glutamate-ammonia-ligase adenylyltransferase|unclassified	0.0190650135
+UniRef50_UPI00037F85DE: hypothetical protein	0.0190606201
+UniRef50_UPI00037F85DE: hypothetical protein|unclassified	0.0190606201
+UniRef50_Q8UEN6: Valine--tRNA ligase	0.0190596204
+UniRef50_Q8UEN6: Valine--tRNA ligase|unclassified	0.0190596204
+UniRef50_R5EK95: Conserved domain protein	0.0190591240
+UniRef50_R5EK95: Conserved domain protein|unclassified	0.0190591240
+UniRef50_UPI00046D39AB: 4-hydroxybenzoyl-CoA reductase	0.0190577954
+UniRef50_UPI00046D39AB: 4-hydroxybenzoyl-CoA reductase|unclassified	0.0190577954
+UniRef50_C7XX35: YhgE/Pip domain protein (Fragment)	0.0190565097
+UniRef50_C7XX35: YhgE/Pip domain protein (Fragment)|unclassified	0.0190565097
+UniRef50_UPI0002DF8A9F: hypothetical protein	0.0190528815
+UniRef50_UPI0002DF8A9F: hypothetical protein|unclassified	0.0190528815
+UniRef50_Q47DK0: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase	0.0190497847
+UniRef50_Q47DK0: 2-succinyl-5-enolpyruvyl-6-hydroxy-3-cyclohexene-1-carboxylate synthase|unclassified	0.0190497847
+UniRef50_UPI00046624C5: ribonuclease E	0.0190483302
+UniRef50_UPI00046624C5: ribonuclease E|unclassified	0.0190483302
+UniRef50_A6NTB7: Beta-lactamase	0.0190387265
+UniRef50_A6NTB7: Beta-lactamase|unclassified	0.0190387265
+UniRef50_D5C5Y8	0.0190383373
+UniRef50_D5C5Y8|unclassified	0.0190383373
+UniRef50_UPI0003657C42: hypothetical protein	0.0190295814
+UniRef50_UPI0003657C42: hypothetical protein|unclassified	0.0190295814
+UniRef50_UPI0003F4D048: 2,3-dihydroxybenzoate--AMP ligase	0.0190262414
+UniRef50_UPI0003F4D048: 2,3-dihydroxybenzoate--AMP ligase|unclassified	0.0190262414
+UniRef50_A3DE67: Endonuclease MutS2	0.0190251954
+UniRef50_A3DE67: Endonuclease MutS2|unclassified	0.0190251954
+UniRef50_D1B416: Diguanylate cyclase	0.0190229708
+UniRef50_D1B416: Diguanylate cyclase|unclassified	0.0190229708
+UniRef50_UPI000369E4B0: hypothetical protein	0.0190224249
+UniRef50_UPI000369E4B0: hypothetical protein|unclassified	0.0190224249
+UniRef50_UPI000470AE3D: phage infection protein	0.0190221178
+UniRef50_UPI000470AE3D: phage infection protein|unclassified	0.0190221178
+UniRef50_H9KHE3	0.0190150851
+UniRef50_H9KHE3|unclassified	0.0190150851
+UniRef50_UPI0002898462: FIST domain containing protein	0.0190146699
+UniRef50_UPI0002898462: FIST domain containing protein|unclassified	0.0190146699
+UniRef50_UPI000312CEC0: hypothetical protein	0.0190096837
+UniRef50_UPI000312CEC0: hypothetical protein|unclassified	0.0190096837
+UniRef50_UPI0003B45CAB: methyl-accepting chemotaxis protein	0.0190084398
+UniRef50_UPI0003B45CAB: methyl-accepting chemotaxis protein|unclassified	0.0190084398
+UniRef50_UPI000471915B: hypothetical protein, partial	0.0189919242
+UniRef50_UPI000471915B: hypothetical protein, partial|unclassified	0.0189919242
+UniRef50_UPI000466C50A: hypothetical protein, partial	0.0189917917
+UniRef50_UPI000466C50A: hypothetical protein, partial|unclassified	0.0189917917
+UniRef50_UPI00036F5DFE: hypothetical protein	0.0189856371
+UniRef50_UPI00036F5DFE: hypothetical protein|unclassified	0.0189856371
+UniRef50_B2T5Z5: Peptidase U62 modulator of DNA gyrase	0.0189686901
+UniRef50_B2T5Z5: Peptidase U62 modulator of DNA gyrase|unclassified	0.0189686901
+UniRef50_UPI00036238A9: hypothetical protein	0.0189643327
+UniRef50_UPI00036238A9: hypothetical protein|unclassified	0.0189643327
+UniRef50_UPI00046A71B3: hypothetical protein	0.0189642204
+UniRef50_UPI00046A71B3: hypothetical protein|unclassified	0.0189642204
+UniRef50_E1Z895: Expressed protein	0.0189601882
+UniRef50_E1Z895: Expressed protein|unclassified	0.0189601882
+UniRef50_G8Y488: Piso0_005105 protein	0.0189565147
+UniRef50_G8Y488: Piso0_005105 protein|unclassified	0.0189565147
+UniRef50_A9UXI9: Predicted protein	0.0189535823
+UniRef50_A9UXI9: Predicted protein|unclassified	0.0189535823
+UniRef50_O32215: Helicase IV	0.0189529479
+UniRef50_O32215: Helicase IV|unclassified	0.0189529479
+UniRef50_W4D130: Conjugation protein	0.0189503895
+UniRef50_W4D130: Conjugation protein|unclassified	0.0189503895
+UniRef50_UPI00016C0C74: DNA mismatch repair protein MutS	0.0189467793
+UniRef50_UPI00016C0C74: DNA mismatch repair protein MutS|unclassified	0.0189467793
+UniRef50_UPI0003761FCC: hypothetical protein	0.0189388366
+UniRef50_UPI0003761FCC: hypothetical protein|unclassified	0.0189388366
+UniRef50_L1QFI2	0.0189378435
+UniRef50_L1QFI2|unclassified	0.0189378435
+UniRef50_V0ACS0	0.0189354851
+UniRef50_V0ACS0|unclassified	0.0189354851
+UniRef50_L2GDE2	0.0189317612
+UniRef50_L2GDE2|unclassified	0.0189317612
+UniRef50_UPI000455F329: hypothetical protein CONPUDRAFT_167911	0.0189277935
+UniRef50_UPI000455F329: hypothetical protein CONPUDRAFT_167911|unclassified	0.0189277935
+UniRef50_UPI000329A755: PREDICTED: probable D,D-dipeptide transport ATP-binding protein DdpD-like	0.0189177650
+UniRef50_UPI000329A755: PREDICTED: probable D,D-dipeptide transport ATP-binding protein DdpD-like|unclassified	0.0189177650
+UniRef50_B3QYN0: PUCC protein	0.0189167593
+UniRef50_B3QYN0: PUCC protein|unclassified	0.0189167593
+UniRef50_Q6BPI1: Glutathione reductase	0.0189143485
+UniRef50_Q6BPI1: Glutathione reductase|unclassified	0.0189143485
+UniRef50_UPI0002898203: lysyl-tRNA synthetase	0.0189132184
+UniRef50_UPI0002898203: lysyl-tRNA synthetase|unclassified	0.0189132184
+UniRef50_UPI000421078A: nucleoside-diphosphate sugar epimerase	0.0189106270
+UniRef50_UPI000421078A: nucleoside-diphosphate sugar epimerase|unclassified	0.0189106270
+UniRef50_UPI00041A4D89: ABC transporter	0.0189092430
+UniRef50_UPI00041A4D89: ABC transporter|unclassified	0.0189092430
+UniRef50_UPI0002B49A4A	0.0189064222
+UniRef50_UPI0002B49A4A|unclassified	0.0189064222
+UniRef50_UPI00029A0BC2: 3-hydroxybutyryl-CoA epimerase	0.0189043662
+UniRef50_UPI00029A0BC2: 3-hydroxybutyryl-CoA epimerase|unclassified	0.0189043662
+UniRef50_UPI0003B5E289: diguanylate cyclase	0.0189042512
+UniRef50_UPI0003B5E289: diguanylate cyclase|unclassified	0.0189042512
+UniRef50_UPI0001FFE0CA: DEAD/DEAH box helicase	0.0189034587
+UniRef50_UPI0001FFE0CA: DEAD/DEAH box helicase|unclassified	0.0189034587
+UniRef50_O84767: Bifunctional enzyme MurC/Ddl	0.0188986531
+UniRef50_O84767: Bifunctional enzyme MurC/Ddl|unclassified	0.0188986531
+UniRef50_UPI0003FD5FE9: hypothetical protein	0.0188860742
+UniRef50_UPI0003FD5FE9: hypothetical protein|unclassified	0.0188860742
+UniRef50_UPI0004160551: TonB-dependent receptor	0.0188850701
+UniRef50_UPI0004160551: TonB-dependent receptor|unclassified	0.0188850701
+UniRef50_UPI000366B562: hypothetical protein	0.0188848139
+UniRef50_UPI000366B562: hypothetical protein|unclassified	0.0188848139
+UniRef50_B3WEJ1: ATP-dependent helicase/nuclease subunit A	0.0188818645
+UniRef50_B3WEJ1: ATP-dependent helicase/nuclease subunit A|unclassified	0.0188818645
+UniRef50_E8WD83	0.0188742149
+UniRef50_E8WD83|unclassified	0.0188742149
+UniRef50_UPI00016A556A: putative ATP-dependent helicase Lhr, partial	0.0188706552
+UniRef50_UPI00016A556A: putative ATP-dependent helicase Lhr, partial|unclassified	0.0188706552
+UniRef50_UPI00042C2386: PREDICTED: zinc finger and BTB domain-containing protein 4	0.0188505478
+UniRef50_UPI00042C2386: PREDICTED: zinc finger and BTB domain-containing protein 4|unclassified	0.0188505478
+UniRef50_UPI000471CB6B: hypothetical protein	0.0188416201
+UniRef50_UPI000471CB6B: hypothetical protein|unclassified	0.0188416201
+UniRef50_UPI0003C10787	0.0188369671
+UniRef50_UPI0003C10787|unclassified	0.0188369671
+UniRef50_C8WU33: UPF0753 protein Aaci_0752	0.0188347572
+UniRef50_C8WU33: UPF0753 protein Aaci_0752|unclassified	0.0188347572
+UniRef50_UPI000440779C: Arginase/deacetylase	0.0188315178
+UniRef50_UPI000440779C: Arginase/deacetylase|unclassified	0.0188315178
+UniRef50_UPI000289CC92: cyclic nucleotide-binding protein	0.0188262681
+UniRef50_UPI000289CC92: cyclic nucleotide-binding protein|unclassified	0.0188262681
+UniRef50_UPI00038028F6: hypothetical protein	0.0188248248
+UniRef50_UPI00038028F6: hypothetical protein|unclassified	0.0188248248
+UniRef50_U6MES7	0.0188223578
+UniRef50_U6MES7|unclassified	0.0188223578
+UniRef50_E1SNT0: NAD-dependent epimerase/dehydratase	0.0188193092
+UniRef50_E1SNT0: NAD-dependent epimerase/dehydratase|unclassified	0.0188193092
+UniRef50_UPI000203AD44: PREDICTED: thymidine phosphorylase-like	0.0188166871
+UniRef50_UPI000203AD44: PREDICTED: thymidine phosphorylase-like|unclassified	0.0188166871
+UniRef50_D0B8V7: Cobalt transporter	0.0188139515
+UniRef50_D0B8V7: Cobalt transporter|unclassified	0.0188139515
+UniRef50_UPI0004409F17: PREDICTED: altered inheritance of mitochondria protein 3-like isoform X3	0.0188125380
+UniRef50_UPI0004409F17: PREDICTED: altered inheritance of mitochondria protein 3-like isoform X3|unclassified	0.0188125380
+UniRef50_UPI0003B5C907: hypothetical protein	0.0188075245
+UniRef50_UPI0003B5C907: hypothetical protein|unclassified	0.0188075245
+UniRef50_A9EUD2	0.0188066372
+UniRef50_A9EUD2|unclassified	0.0188066372
+UniRef50_A0A011PGG4	0.0187957860
+UniRef50_A0A011PGG4|unclassified	0.0187957860
+UniRef50_H9KEJ9	0.0187949267
+UniRef50_H9KEJ9|unclassified	0.0187949267
+UniRef50_UPI0003B493D4: hypothetical protein	0.0187927210
+UniRef50_UPI0003B493D4: hypothetical protein|unclassified	0.0187927210
+UniRef50_R4MBB3	0.0187891174
+UniRef50_R4MBB3|unclassified	0.0187891174
+UniRef50_UPI0003F80943: hypothetical protein	0.0187845907
+UniRef50_UPI0003F80943: hypothetical protein|unclassified	0.0187845907
+UniRef50_UPI0003B54D0C: hypothetical protein	0.0187732588
+UniRef50_UPI0003B54D0C: hypothetical protein|unclassified	0.0187732588
+UniRef50_E6UW30: 5'-nucleotidase domain-containing protein	0.0187654971
+UniRef50_E6UW30: 5'-nucleotidase domain-containing protein|unclassified	0.0187654971
+UniRef50_A5KBZ7	0.0187652559
+UniRef50_A5KBZ7|unclassified	0.0187652559
+UniRef50_UPI0002D4CC0A: hypothetical protein	0.0187497038
+UniRef50_UPI0002D4CC0A: hypothetical protein|unclassified	0.0187497038
+UniRef50_H2M3D9	0.0187471892
+UniRef50_H2M3D9|unclassified	0.0187471892
+UniRef50_UPI0003ADCCC1: PREDICTED: solute carrier family 2, facilitated glucose transporter member 11 isoform X3	0.0187446839
+UniRef50_UPI0003ADCCC1: PREDICTED: solute carrier family 2, facilitated glucose transporter member 11 isoform X3|unclassified	0.0187446839
+UniRef50_Q820M7: Leucine--tRNA ligase	0.0187431029
+UniRef50_Q820M7: Leucine--tRNA ligase|unclassified	0.0187431029
+UniRef50_UPI0003C1189D: PREDICTED: putative leucine--tRNA ligase, mitochondrial-like	0.0187376087
+UniRef50_UPI0003C1189D: PREDICTED: putative leucine--tRNA ligase, mitochondrial-like|unclassified	0.0187376087
+UniRef50_UPI00037EF591: hypothetical protein	0.0187361229
+UniRef50_UPI00037EF591: hypothetical protein|unclassified	0.0187361229
+UniRef50_Q9ZSS6: Threonine dehydratase biosynthetic, chloroplastic	0.0187337303
+UniRef50_Q9ZSS6: Threonine dehydratase biosynthetic, chloroplastic|unclassified	0.0187337303
+UniRef50_E3J5M0	0.0187324622
+UniRef50_E3J5M0|unclassified	0.0187324622
+UniRef50_UPI000466CC16: hydantoinase	0.0187238353
+UniRef50_UPI000466CC16: hydantoinase|unclassified	0.0187238353
+UniRef50_UPI0004725B33: hypothetical protein, partial	0.0187216321
+UniRef50_UPI0004725B33: hypothetical protein, partial|unclassified	0.0187216321
+UniRef50_UPI0002B44384: PREDICTED: LOW QUALITY PROTEIN: alpha-N-acetylglucosaminidase-like	0.0187119562
+UniRef50_UPI0002B44384: PREDICTED: LOW QUALITY PROTEIN: alpha-N-acetylglucosaminidase-like|unclassified	0.0187119562
+UniRef50_Q8A8M0: Glycine dehydrogenase (decarboxylating)	0.0187044665
+UniRef50_Q8A8M0: Glycine dehydrogenase (decarboxylating)|unclassified	0.0187044665
+UniRef50_UPI00036EAD03: hypothetical protein	0.0187001891
+UniRef50_UPI00036EAD03: hypothetical protein|unclassified	0.0187001891
+UniRef50_I1P1U8	0.0186947415
+UniRef50_I1P1U8|unclassified	0.0186947415
+UniRef50_Q6K905: L-zip+NBS+LRR-like protein	0.0186947415
+UniRef50_Q6K905: L-zip+NBS+LRR-like protein|unclassified	0.0186947415
+UniRef50_P17812: CTP synthase 1	0.0186942846
+UniRef50_P17812: CTP synthase 1|unclassified	0.0186942846
+UniRef50_UPI000191169A: hypothetical protein	0.0186803192
+UniRef50_UPI000191169A: hypothetical protein|unclassified	0.0186803192
+UniRef50_UPI0003B53820: PAS sensor protein	0.0186798150
+UniRef50_UPI0003B53820: PAS sensor protein|unclassified	0.0186798150
+UniRef50_UPI0003B6FBDB: hypothetical protein	0.0186762214
+UniRef50_UPI0003B6FBDB: hypothetical protein|unclassified	0.0186762214
+UniRef50_G2S6S7	0.0186728767
+UniRef50_G2S6S7|unclassified	0.0186728767
+UniRef50_UPI0003B364BB: DNA mistmatch repair protein MutT	0.0186713782
+UniRef50_UPI0003B364BB: DNA mistmatch repair protein MutT|unclassified	0.0186713782
+UniRef50_UPI000408EDDD: hypothetical protein	0.0186712251
+UniRef50_UPI000408EDDD: hypothetical protein|unclassified	0.0186712251
+UniRef50_UPI00036198F2: hypothetical protein	0.0186682070
+UniRef50_UPI00036198F2: hypothetical protein|unclassified	0.0186682070
+UniRef50_A0A058ZAW9	0.0186636888
+UniRef50_A0A058ZAW9|unclassified	0.0186636888
+UniRef50_C5J6J8: LppS lipoprotein	0.0186636129
+UniRef50_C5J6J8: LppS lipoprotein|unclassified	0.0186636129
+UniRef50_UPI0003B419E6: DNA mismatch repair protein MutS	0.0186617970
+UniRef50_UPI0003B419E6: DNA mismatch repair protein MutS|unclassified	0.0186617970
+UniRef50_A2FR65: Basic proline-rich protein, putative	0.0186470348
+UniRef50_A2FR65: Basic proline-rich protein, putative|unclassified	0.0186470348
+UniRef50_J8FD83	0.0186459524
+UniRef50_J8FD83|unclassified	0.0186459524
+UniRef50_M5DVJ7: GTPase	0.0186437933
+UniRef50_M5DVJ7: GTPase|unclassified	0.0186437933
+UniRef50_A4TLJ7: Integral membrane protein	0.0186399163
+UniRef50_A4TLJ7: Integral membrane protein|unclassified	0.0186399163
+UniRef50_UPI000255B7A0: serine/threonine protein kinase PpkA	0.0186293655
+UniRef50_UPI000255B7A0: serine/threonine protein kinase PpkA|unclassified	0.0186293655
+UniRef50_V9W3S1	0.0186263250
+UniRef50_V9W3S1|unclassified	0.0186263250
+UniRef50_UPI00047A5072: chromosome segregation protein SMC	0.0186183705
+UniRef50_UPI00047A5072: chromosome segregation protein SMC|unclassified	0.0186183705
+UniRef50_I7DAX1	0.0186129607
+UniRef50_I7DAX1|unclassified	0.0186129607
+UniRef50_UPI0003B67D96: hypothetical protein	0.0186113565
+UniRef50_UPI0003B67D96: hypothetical protein|unclassified	0.0186113565
+UniRef50_UPI0002E70D72: serine dehydratase	0.0186094459
+UniRef50_UPI0002E70D72: serine dehydratase|unclassified	0.0186094459
+UniRef50_A0A034WQ36: Protein single-minded (Fragment)	0.0186021657
+UniRef50_A0A034WQ36: Protein single-minded (Fragment)|unclassified	0.0186021657
+UniRef50_UPI0002036836: PREDICTED: aldehyde dehydrogenase, mitochondrial-like	0.0186019644
+UniRef50_UPI0002036836: PREDICTED: aldehyde dehydrogenase, mitochondrial-like|unclassified	0.0186019644
+UniRef50_A9UYW3: Predicted protein	0.0185979440
+UniRef50_A9UYW3: Predicted protein|unclassified	0.0185979440
+UniRef50_UPI0002E2BD54: hypothetical protein	0.0185964121
+UniRef50_UPI0002E2BD54: hypothetical protein|unclassified	0.0185964121
+UniRef50_UPI0003B60183: hypothetical protein	0.0185942948
+UniRef50_UPI0003B60183: hypothetical protein|unclassified	0.0185942948
+UniRef50_M7E480: ABC transporter permease	0.0185937153
+UniRef50_M7E480: ABC transporter permease|unclassified	0.0185937153
+UniRef50_A0A058Z5Y1	0.0185845082
+UniRef50_A0A058Z5Y1|unclassified	0.0185845082
+UniRef50_UPI0004789066: ATP-dependent DNA helicase	0.0185839667
+UniRef50_UPI0004789066: ATP-dependent DNA helicase|unclassified	0.0185839667
+UniRef50_UPI0003074063: hypothetical protein	0.0185831034
+UniRef50_UPI0003074063: hypothetical protein|unclassified	0.0185831034
+UniRef50_UPI000475B8DD: hypothetical protein, partial	0.0185804761
+UniRef50_UPI000475B8DD: hypothetical protein, partial|unclassified	0.0185804761
+UniRef50_B0S912: DNA gyrase subunit A	0.0185772288
+UniRef50_B0S912: DNA gyrase subunit A|unclassified	0.0185772288
+UniRef50_UPI000365D452: hypothetical protein	0.0185760561
+UniRef50_UPI000365D452: hypothetical protein|unclassified	0.0185760561
+UniRef50_UPI000467700F: hypothetical protein	0.0185724112
+UniRef50_UPI000467700F: hypothetical protein|unclassified	0.0185724112
+UniRef50_UPI00047E5ED7: methionyl-tRNA synthetase	0.0185699963
+UniRef50_UPI00047E5ED7: methionyl-tRNA synthetase|unclassified	0.0185699963
+UniRef50_UPI0003A23FC4: penicillin-binding protein	0.0185660776
+UniRef50_UPI0003A23FC4: penicillin-binding protein|unclassified	0.0185660776
+UniRef50_Q03470: DNA gyrase subunit A	0.0185608523
+UniRef50_Q03470: DNA gyrase subunit A|unclassified	0.0185608523
+UniRef50_UPI00035C1FA5: hypothetical protein, partial	0.0185591373
+UniRef50_UPI00035C1FA5: hypothetical protein, partial|unclassified	0.0185591373
+UniRef50_UPI00038E961C	0.0185535125
+UniRef50_UPI00038E961C|unclassified	0.0185535125
+UniRef50_UPI00016C0D96: hypothetical protein	0.0185499354
+UniRef50_UPI00016C0D96: hypothetical protein|unclassified	0.0185499354
+UniRef50_UPI000350F61A: PREDICTED: LOW QUALITY PROTEIN: heat shock protein SSA3-like	0.0185476850
+UniRef50_UPI000350F61A: PREDICTED: LOW QUALITY PROTEIN: heat shock protein SSA3-like|unclassified	0.0185476850
+UniRef50_C7Q1A6	0.0185449893
+UniRef50_C7Q1A6|unclassified	0.0185449893
+UniRef50_UPI0002626B82: polyphosphate kinase	0.0185375515
+UniRef50_UPI0002626B82: polyphosphate kinase|unclassified	0.0185375515
+UniRef50_D5BHW7	0.0185356053
+UniRef50_D5BHW7|unclassified	0.0185356053
+UniRef50_R5JLL7	0.0185352300
+UniRef50_R5JLL7|unclassified	0.0185352300
+UniRef50_V5M727: Collagen adhesion protein	0.0185328392
+UniRef50_V5M727: Collagen adhesion protein|unclassified	0.0185328392
+UniRef50_UPI000475EA59: glucose dehydrogenase	0.0185315676
+UniRef50_UPI000475EA59: glucose dehydrogenase|unclassified	0.0185315676
+UniRef50_W9GSQ8	0.0185291147
+UniRef50_W9GSQ8|unclassified	0.0185291147
+UniRef50_UPI0003B4AFAB: flagellin	0.0185278817
+UniRef50_UPI0003B4AFAB: flagellin|unclassified	0.0185278817
+UniRef50_UPI000444A627: hypothetical protein STEHIDRAFT_83294	0.0185259318
+UniRef50_UPI000444A627: hypothetical protein STEHIDRAFT_83294|unclassified	0.0185259318
+UniRef50_Q8R9D0: Endonuclease MutS2	0.0185228585
+UniRef50_Q8R9D0: Endonuclease MutS2|unclassified	0.0185228585
+UniRef50_UPI0003B45B6A: hypothetical protein	0.0185210541
+UniRef50_UPI0003B45B6A: hypothetical protein|unclassified	0.0185210541
+UniRef50_UPI0004422D8B	0.0185123690
+UniRef50_UPI0004422D8B|unclassified	0.0185123690
+UniRef50_UPI00016B142B: F0F1 ATP synthase subunit beta, partial	0.0185088288
+UniRef50_UPI00016B142B: F0F1 ATP synthase subunit beta, partial|unclassified	0.0185088288
+UniRef50_UPI000465D96F: conjugal transfer protein TrbE	0.0185050160
+UniRef50_UPI000465D96F: conjugal transfer protein TrbE|unclassified	0.0185050160
+UniRef50_UPI0004280637: 5''-nucleotidase	0.0184967150
+UniRef50_UPI0004280637: 5''-nucleotidase|unclassified	0.0184967150
+UniRef50_UPI00047DA2C8: hypothetical protein	0.0184945784
+UniRef50_UPI00047DA2C8: hypothetical protein|unclassified	0.0184945784
+UniRef50_V4P1T2: Conjugal transfer protein TraC	0.0184890320
+UniRef50_V4P1T2: Conjugal transfer protein TraC|unclassified	0.0184890320
+UniRef50_UPI0002D8DA2B: hypothetical protein	0.0184844436
+UniRef50_UPI0002D8DA2B: hypothetical protein|unclassified	0.0184844436
+UniRef50_UPI00034CA933: hypothetical protein	0.0184842162
+UniRef50_UPI00034CA933: hypothetical protein|unclassified	0.0184842162
+UniRef50_A9UPG1	0.0184781272
+UniRef50_A9UPG1|unclassified	0.0184781272
+UniRef50_E8SGU7: Predicted cell-wall-anchored protein SasA	0.0184781126
+UniRef50_E8SGU7: Predicted cell-wall-anchored protein SasA|unclassified	0.0184781126
+UniRef50_M3KG96: Cobalt transporter subunit CbtA	0.0184751825
+UniRef50_M3KG96: Cobalt transporter subunit CbtA|unclassified	0.0184751825
+UniRef50_UPI0003719851: hypothetical protein, partial	0.0184700003
+UniRef50_UPI0003719851: hypothetical protein, partial|unclassified	0.0184700003
+UniRef50_UPI00017455B0: PAS/PAC sensor hybrid histidine kinase	0.0184601115
+UniRef50_UPI00017455B0: PAS/PAC sensor hybrid histidine kinase|unclassified	0.0184601115
+UniRef50_W4UQ33	0.0184587700
+UniRef50_W4UQ33|unclassified	0.0184587700
+UniRef50_UPI0002889CD1: DNA mismatch repair protein MutS	0.0184568758
+UniRef50_UPI0002889CD1: DNA mismatch repair protein MutS|unclassified	0.0184568758
+UniRef50_W9HSV6	0.0184512934
+UniRef50_W9HSV6|unclassified	0.0184512934
+UniRef50_V2X0Q9	0.0184492424
+UniRef50_V2X0Q9|unclassified	0.0184492424
+UniRef50_X1YHI4	0.0184369984
+UniRef50_X1YHI4|unclassified	0.0184369984
+UniRef50_D4KVC9: Listeria/Bacterioides repeat	0.0184337206
+UniRef50_D4KVC9: Listeria/Bacterioides repeat|unclassified	0.0184337206
+UniRef50_UPI0003B6E634: histidine kinase	0.0184327500
+UniRef50_UPI0003B6E634: histidine kinase|unclassified	0.0184327500
+UniRef50_A2TX18: Putative cell wall associated biofilm protein	0.0184296271
+UniRef50_A2TX18: Putative cell wall associated biofilm protein|unclassified	0.0184296271
+UniRef50_UPI0003B5B736: hypothetical protein	0.0184227536
+UniRef50_UPI0003B5B736: hypothetical protein|unclassified	0.0184227536
+UniRef50_G8DH61: Tail fiber protein	0.0184196132
+UniRef50_G8DH61: Tail fiber protein|unclassified	0.0184196132
+UniRef50_R9M9C3	0.0184109454
+UniRef50_R9M9C3|unclassified	0.0184109454
+UniRef50_UPI0002F80216: ABC transporter ATP-binding protein	0.0184066317
+UniRef50_UPI0002F80216: ABC transporter ATP-binding protein|unclassified	0.0184066317
+UniRef50_UPI000344C588: hypothetical protein	0.0183957493
+UniRef50_UPI000344C588: hypothetical protein|unclassified	0.0183957493
+UniRef50_UPI00031ABCD6: hypothetical protein	0.0183919927
+UniRef50_UPI00031ABCD6: hypothetical protein|unclassified	0.0183919927
+UniRef50_UPI00040C5350: hypothetical protein	0.0183903694
+UniRef50_UPI00040C5350: hypothetical protein|unclassified	0.0183903694
+UniRef50_UPI000475C82A: phosphoribosyltransferase	0.0183868884
+UniRef50_UPI000475C82A: phosphoribosyltransferase|unclassified	0.0183868884
+UniRef50_UPI000444A3F9: alcohol oxidase	0.0183859246
+UniRef50_UPI000444A3F9: alcohol oxidase|unclassified	0.0183859246
+UniRef50_Q1GUM2: Valine--tRNA ligase	0.0183858623
+UniRef50_Q1GUM2: Valine--tRNA ligase|unclassified	0.0183858623
+UniRef50_Q62KW5: Valine--tRNA ligase	0.0183853234
+UniRef50_Q62KW5: Valine--tRNA ligase|unclassified	0.0183853234
+UniRef50_UPI00036960A2: MULTISPECIES: hypothetical protein	0.0183812860
+UniRef50_UPI00036960A2: MULTISPECIES: hypothetical protein|unclassified	0.0183812860
+UniRef50_A9KR74: Endonuclease MutS2	0.0183761105
+UniRef50_A9KR74: Endonuclease MutS2|unclassified	0.0183761105
+UniRef50_UPI000412FD16: hypothetical protein	0.0183750397
+UniRef50_UPI000412FD16: hypothetical protein|unclassified	0.0183750397
+UniRef50_UPI00037C4F3E: hypothetical protein	0.0183631206
+UniRef50_UPI00037C4F3E: hypothetical protein|unclassified	0.0183631206
+UniRef50_W5X562: 3-dehydroquinate dehydratase, type II	0.0183512859
+UniRef50_W5X562: 3-dehydroquinate dehydratase, type II|unclassified	0.0183512859
+UniRef50_UPI00046F124C: hypothetical protein	0.0183484128
+UniRef50_UPI00046F124C: hypothetical protein|unclassified	0.0183484128
+UniRef50_UPI00045E6A9B: hypothetical protein	0.0183469907
+UniRef50_UPI00045E6A9B: hypothetical protein|unclassified	0.0183469907
+UniRef50_D7C985	0.0183468795
+UniRef50_D7C985|unclassified	0.0183468795
+UniRef50_W5EJB3	0.0183452589
+UniRef50_W5EJB3|unclassified	0.0183452589
+UniRef50_UPI0002627C9E: stage III sporulation protein E	0.0183440225
+UniRef50_UPI0002627C9E: stage III sporulation protein E|unclassified	0.0183440225
+UniRef50_UPI00036FD7D9: hypothetical protein	0.0183419945
+UniRef50_UPI00036FD7D9: hypothetical protein|unclassified	0.0183419945
+UniRef50_S3ZTK4	0.0183406755
+UniRef50_S3ZTK4|unclassified	0.0183406755
+UniRef50_UPI0003792A51: hypothetical protein	0.0183405531
+UniRef50_UPI0003792A51: hypothetical protein|unclassified	0.0183405531
+UniRef50_K1E5Y4	0.0183254045
+UniRef50_K1E5Y4|unclassified	0.0183254045
+UniRef50_U0M0H5: Putative tail fiber protein	0.0183231949
+UniRef50_U0M0H5: Putative tail fiber protein|unclassified	0.0183231949
+UniRef50_UPI0003347D13: PREDICTED: laminin subunit alpha-5	0.0183175075
+UniRef50_UPI0003347D13: PREDICTED: laminin subunit alpha-5|unclassified	0.0183175075
+UniRef50_Q3M7D4: Tn7-like transposition protein D	0.0183148244
+UniRef50_Q3M7D4: Tn7-like transposition protein D|unclassified	0.0183148244
+UniRef50_P43304: Glycerol-3-phosphate dehydrogenase, mitochondrial	0.0183099963
+UniRef50_P43304: Glycerol-3-phosphate dehydrogenase, mitochondrial|unclassified	0.0183099963
+UniRef50_UPI0002198052: HTH-type transcriptional regulator YidZ	0.0183061598
+UniRef50_UPI0002198052: HTH-type transcriptional regulator YidZ|unclassified	0.0183061598
+UniRef50_UPI00024851F3: hemolysin-type calcium-binding protein	0.0182989578
+UniRef50_UPI00024851F3: hemolysin-type calcium-binding protein|unclassified	0.0182989578
+UniRef50_C1MHR5: Predicted protein	0.0182939410
+UniRef50_C1MHR5: Predicted protein|unclassified	0.0182939410
+UniRef50_E9BYY8	0.0182930075
+UniRef50_E9BYY8|unclassified	0.0182930075
+UniRef50_R1DZY7	0.0182928339
+UniRef50_R1DZY7|unclassified	0.0182928339
+UniRef50_Q87JM4: Macrolide export ATP-binding/permease protein MacB	0.0182901737
+UniRef50_Q87JM4: Macrolide export ATP-binding/permease protein MacB|unclassified	0.0182901737
+UniRef50_Q18B68: 1-deoxy-D-xylulose-5-phosphate synthase	0.0182876001
+UniRef50_Q18B68: 1-deoxy-D-xylulose-5-phosphate synthase|unclassified	0.0182876001
+UniRef50_UPI0003B42040: phosphoenolpyruvate synthase	0.0182839862
+UniRef50_UPI0003B42040: phosphoenolpyruvate synthase|unclassified	0.0182839862
+UniRef50_UPI0003758FC3: hypothetical protein	0.0182824508
+UniRef50_UPI0003758FC3: hypothetical protein|unclassified	0.0182824508
+UniRef50_UPI00036B837B: hypothetical protein	0.0182641082
+UniRef50_UPI00036B837B: hypothetical protein|unclassified	0.0182641082
+UniRef50_D2AVE8	0.0182507891
+UniRef50_D2AVE8|unclassified	0.0182507891
+UniRef50_UPI00046F18A1: oxidoreductase	0.0182495944
+UniRef50_UPI00046F18A1: oxidoreductase|unclassified	0.0182495944
+UniRef50_R6ZBG8	0.0182492031
+UniRef50_R6ZBG8|unclassified	0.0182492031
+UniRef50_UPI0003B4A820: helicase	0.0182446769
+UniRef50_UPI0003B4A820: helicase|unclassified	0.0182446769
+UniRef50_UPI0003733B95: hypothetical protein	0.0182443168
+UniRef50_UPI0003733B95: hypothetical protein|unclassified	0.0182443168
+UniRef50_UPI00046CCA8E: 2-oxoglutarate dehydrogenase	0.0182408396
+UniRef50_UPI00046CCA8E: 2-oxoglutarate dehydrogenase|unclassified	0.0182408396
+UniRef50_A6UB73: DNA ligase	0.0182309800
+UniRef50_A6UB73: DNA ligase|unclassified	0.0182309800
+UniRef50_D8LIG7	0.0182298644
+UniRef50_D8LIG7|unclassified	0.0182298644
+UniRef50_UPI0003B66F39: DNA gyrase subunit A	0.0182279879
+UniRef50_UPI0003B66F39: DNA gyrase subunit A|unclassified	0.0182279879
+UniRef50_S6AEF9	0.0182265137
+UniRef50_S6AEF9|unclassified	0.0182265137
+UniRef50_UPI000373DFF5: hypothetical protein, partial	0.0182213903
+UniRef50_UPI000373DFF5: hypothetical protein, partial|unclassified	0.0182213903
+UniRef50_V5BR98: Putative integral membrane protein	0.0182095242
+UniRef50_V5BR98: Putative integral membrane protein|unclassified	0.0182095242
+UniRef50_F8NRS3	0.0182052680
+UniRef50_F8NRS3|unclassified	0.0182052680
+UniRef50_A0A058ZFV0	0.0181994484
+UniRef50_A0A058ZFV0|unclassified	0.0181994484
+UniRef50_UPI00035E1643: hypothetical protein	0.0181972236
+UniRef50_UPI00035E1643: hypothetical protein|unclassified	0.0181972236
+UniRef50_K0RVK6	0.0181934297
+UniRef50_K0RVK6|unclassified	0.0181934297
+UniRef50_D1W0N8: Alpha-N-acetylglucosaminidase (NAGLU)	0.0181923056
+UniRef50_D1W0N8: Alpha-N-acetylglucosaminidase (NAGLU)|unclassified	0.0181923056
+UniRef50_E3EIF6: Glycerol-3-phosphate ABC transporter substarate-binding protein	0.0181910635
+UniRef50_E3EIF6: Glycerol-3-phosphate ABC transporter substarate-binding protein|unclassified	0.0181910635
+UniRef50_UPI0003638F81: cold-shock protein	0.0181819155
+UniRef50_UPI0003638F81: cold-shock protein|unclassified	0.0181819155
+UniRef50_UPI0003D25C42	0.0181757665
+UniRef50_UPI0003D25C42|unclassified	0.0181757665
+UniRef50_UPI000169A661: type IV secretory pathway VirB4 component, partial	0.0181735549
+UniRef50_UPI000169A661: type IV secretory pathway VirB4 component, partial|unclassified	0.0181735549
+UniRef50_Q39586: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	0.0181684168
+UniRef50_Q39586: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.0181684168
+UniRef50_S2ZX86: Rib/alpha/Esp surface antigen	0.0181666376
+UniRef50_S2ZX86: Rib/alpha/Esp surface antigen|unclassified	0.0181666376
+UniRef50_E3QRU3	0.0181630683
+UniRef50_E3QRU3|unclassified	0.0181630683
+UniRef50_C0LZW7: Cross-beta structure silk protein 2	0.0181571004
+UniRef50_C0LZW7: Cross-beta structure silk protein 2|unclassified	0.0181571004
+UniRef50_Q08UM8	0.0181537058
+UniRef50_Q08UM8|unclassified	0.0181537058
+UniRef50_UPI000476E759: hypothetical protein	0.0181529585
+UniRef50_UPI000476E759: hypothetical protein|unclassified	0.0181529585
+UniRef50_UPI000415B2C7: MULTISPECIES: hypothetical protein	0.0181460253
+UniRef50_UPI000415B2C7: MULTISPECIES: hypothetical protein|unclassified	0.0181460253
+UniRef50_UPI000369492B: hypothetical protein	0.0181455069
+UniRef50_UPI000369492B: hypothetical protein|unclassified	0.0181455069
+UniRef50_U6IQA0: Cationic amino acid transporter	0.0181406278
+UniRef50_U6IQA0: Cationic amino acid transporter|unclassified	0.0181406278
+UniRef50_UPI00035F4903: hypothetical protein	0.0181293214
+UniRef50_UPI00035F4903: hypothetical protein|unclassified	0.0181293214
+UniRef50_UPI0004677218: acyl-CoA transferase	0.0181274572
+UniRef50_UPI0004677218: acyl-CoA transferase|unclassified	0.0181274572
+UniRef50_F4HF86: Long-chain fatty acid outer membrane transporter	0.0181262189
+UniRef50_F4HF86: Long-chain fatty acid outer membrane transporter|unclassified	0.0181262189
+UniRef50_A0A023SZ56: Conjugal transfer protein TraC	0.0181186625
+UniRef50_A0A023SZ56: Conjugal transfer protein TraC|unclassified	0.0181186625
+UniRef50_UPI0003730FF4: hypothetical protein	0.0181090393
+UniRef50_UPI0003730FF4: hypothetical protein|unclassified	0.0181090393
+UniRef50_UPI000377C6CE: hypothetical protein	0.0181087323
+UniRef50_UPI000377C6CE: hypothetical protein|unclassified	0.0181087323
+UniRef50_UPI0002C36A15	0.0181041858
+UniRef50_UPI0002C36A15|unclassified	0.0181041858
+UniRef50_Q0SWZ1: 1,4-alpha-glucan branching enzyme GlgB 1	0.0181011785
+UniRef50_Q0SWZ1: 1,4-alpha-glucan branching enzyme GlgB 1|unclassified	0.0181011785
+UniRef50_UPI00047CBA4F: excinuclease ABC subunit C	0.0180931422
+UniRef50_UPI00047CBA4F: excinuclease ABC subunit C|unclassified	0.0180931422
+UniRef50_UPI000373C694: hypothetical protein	0.0180923751
+UniRef50_UPI000373C694: hypothetical protein|unclassified	0.0180923751
+UniRef50_UPI0002DF4839: ATP-dependent DNA helicase	0.0180918839
+UniRef50_UPI0002DF4839: ATP-dependent DNA helicase|unclassified	0.0180918839
+UniRef50_A3Q284	0.0180904156
+UniRef50_A3Q284|unclassified	0.0180904156
+UniRef50_U6HXC2: Glycerol 3 phosphate dehydrogenase	0.0180863270
+UniRef50_U6HXC2: Glycerol 3 phosphate dehydrogenase|unclassified	0.0180863270
+UniRef50_Q7NB47: Leucine--tRNA ligase	0.0180806442
+UniRef50_Q7NB47: Leucine--tRNA ligase|unclassified	0.0180806442
+UniRef50_K0TKD8	0.0180776407
+UniRef50_K0TKD8|unclassified	0.0180776407
+UniRef50_UPI00029A31B9: Peptidase M3A and M3B, thimet/oligopeptidase F	0.0180505496
+UniRef50_UPI00029A31B9: Peptidase M3A and M3B, thimet/oligopeptidase F|unclassified	0.0180505496
+UniRef50_UPI0003FC10E6: hypothetical protein	0.0180489139
+UniRef50_UPI0003FC10E6: hypothetical protein|unclassified	0.0180489139
+UniRef50_A1TJC5	0.0180459496
+UniRef50_A1TJC5|unclassified	0.0180459496
+UniRef50_UPI000421D154: hypothetical protein	0.0180418664
+UniRef50_UPI000421D154: hypothetical protein|unclassified	0.0180418664
+UniRef50_A6TNX0: Endonuclease MutS2	0.0180402854
+UniRef50_A6TNX0: Endonuclease MutS2|unclassified	0.0180402854
+UniRef50_UPI000475929C: DNA mismatch repair protein MutS	0.0180402854
+UniRef50_UPI000475929C: DNA mismatch repair protein MutS|unclassified	0.0180402854
+UniRef50_UPI00036A62DC: hypothetical protein	0.0180328364
+UniRef50_UPI00036A62DC: hypothetical protein|unclassified	0.0180328364
+UniRef50_B8H8H8: Periplasmic binding protein/LacI transcriptional regulator	0.0180279433
+UniRef50_B8H8H8: Periplasmic binding protein/LacI transcriptional regulator|unclassified	0.0180279433
+UniRef50_V7FDY7	0.0180232740
+UniRef50_V7FDY7|unclassified	0.0180232740
+UniRef50_UPI00040A50B2: hypothetical protein	0.0180206270
+UniRef50_UPI00040A50B2: hypothetical protein|unclassified	0.0180206270
+UniRef50_UPI00036DF70A: hypothetical protein	0.0180178156
+UniRef50_UPI00036DF70A: hypothetical protein|unclassified	0.0180178156
+UniRef50_UPI0002EF2062: hypothetical protein	0.0180133365
+UniRef50_UPI0002EF2062: hypothetical protein|unclassified	0.0180133365
+UniRef50_C5BMW2: Putative lipoprotein	0.0180130841
+UniRef50_C5BMW2: Putative lipoprotein|unclassified	0.0180130841
+UniRef50_W6LPI9: Putative FHA domain containing protein	0.0180101628
+UniRef50_W6LPI9: Putative FHA domain containing protein|unclassified	0.0180101628
+UniRef50_B3DW88: 1-deoxy-D-xylulose-5-phosphate synthase	0.0180005921
+UniRef50_B3DW88: 1-deoxy-D-xylulose-5-phosphate synthase|unclassified	0.0180005921
+UniRef50_UPI00037A15A0: hypothetical protein	0.0179920933
+UniRef50_UPI00037A15A0: hypothetical protein|unclassified	0.0179920933
+UniRef50_V8ASR9	0.0179785467
+UniRef50_V8ASR9|unclassified	0.0179785467
+UniRef50_UPI00047BCCBD: hypothetical protein	0.0179725300
+UniRef50_UPI00047BCCBD: hypothetical protein|unclassified	0.0179725300
+UniRef50_UPI00034B59BD: portal protein	0.0179684987
+UniRef50_UPI00034B59BD: portal protein|unclassified	0.0179684987
+UniRef50_C0WIN3	0.0179676343
+UniRef50_C0WIN3|unclassified	0.0179676343
+UniRef50_UPI0003795D71: hypothetical protein	0.0179586588
+UniRef50_UPI0003795D71: hypothetical protein|unclassified	0.0179586588
+UniRef50_UPI0003651980: hypothetical protein	0.0179581468
+UniRef50_UPI0003651980: hypothetical protein|unclassified	0.0179581468
+UniRef50_W7CG32	0.0179552159
+UniRef50_W7CG32|unclassified	0.0179552159
+UniRef50_A0A011RTW8	0.0179546637
+UniRef50_A0A011RTW8|unclassified	0.0179546637
+UniRef50_A4QN64: Zgc:162320 protein	0.0179330085
+UniRef50_A4QN64: Zgc:162320 protein|unclassified	0.0179330085
+UniRef50_UPI00036E8E34: hypothetical protein	0.0179234551
+UniRef50_UPI00036E8E34: hypothetical protein|unclassified	0.0179234551
+UniRef50_UPI00047C461A: chemotaxis protein CheA	0.0179175694
+UniRef50_UPI00047C461A: chemotaxis protein CheA|unclassified	0.0179175694
+UniRef50_U6LJZ6	0.0179172705
+UniRef50_U6LJZ6|unclassified	0.0179172705
+UniRef50_U6JUM5	0.0179171908
+UniRef50_U6JUM5|unclassified	0.0179171908
+UniRef50_Q02V99	0.0179164764
+UniRef50_Q02V99|unclassified	0.0179164764
+UniRef50_UPI000472B398: hypothetical protein	0.0179121873
+UniRef50_UPI000472B398: hypothetical protein|unclassified	0.0179121873
+UniRef50_B4I521: GM17189	0.0179052576
+UniRef50_B4I521: GM17189|unclassified	0.0179052576
+UniRef50_Q5V6U6: UPF0753 protein pNG7034	0.0179041529
+UniRef50_Q5V6U6: UPF0753 protein pNG7034|unclassified	0.0179041529
+UniRef50_UPI00046AF737: iron transporter FeoB	0.0179031544
+UniRef50_UPI00046AF737: iron transporter FeoB|unclassified	0.0179031544
+UniRef50_M4KDA0	0.0178980603
+UniRef50_M4KDA0|unclassified	0.0178980603
+UniRef50_B4KEQ1: GI22193	0.0178925146
+UniRef50_B4KEQ1: GI22193|unclassified	0.0178925146
+UniRef50_R6WBM5: FAD dependent oxidoreductase	0.0178902337
+UniRef50_R6WBM5: FAD dependent oxidoreductase|unclassified	0.0178902337
+UniRef50_UPI00036B6931: hypothetical protein	0.0178835215
+UniRef50_UPI00036B6931: hypothetical protein|unclassified	0.0178835215
+UniRef50_UPI0003C1A1E5: PREDICTED: collagen alpha-1(XVIII) chain	0.0178832974
+UniRef50_UPI0003C1A1E5: PREDICTED: collagen alpha-1(XVIII) chain|unclassified	0.0178832974
+UniRef50_UPI000376B86D: hypothetical protein, partial	0.0178820449
+UniRef50_UPI000376B86D: hypothetical protein, partial|unclassified	0.0178820449
+UniRef50_Q72PJ7: 2-oxoglutarate dehydrogenase E1 component	0.0178789542
+UniRef50_Q72PJ7: 2-oxoglutarate dehydrogenase E1 component|unclassified	0.0178789542
+UniRef50_UPI000478583F: hypothetical protein	0.0178768901
+UniRef50_UPI000478583F: hypothetical protein|unclassified	0.0178768901
+UniRef50_UPI00046E002C: hypothetical protein	0.0178702201
+UniRef50_UPI00046E002C: hypothetical protein|unclassified	0.0178702201
+UniRef50_UPI0004641324: glycosyl transferase	0.0178694696
+UniRef50_UPI0004641324: glycosyl transferase|unclassified	0.0178694696
+UniRef50_F2FAF1	0.0178677803
+UniRef50_F2FAF1|unclassified	0.0178677803
+UniRef50_UPI000363EF1A: hypothetical protein	0.0178646454
+UniRef50_UPI000363EF1A: hypothetical protein|unclassified	0.0178646454
+UniRef50_UPI00036DA784: hypothetical protein	0.0178638154
+UniRef50_UPI00036DA784: hypothetical protein|unclassified	0.0178638154
+UniRef50_UPI000382A798: hypothetical protein	0.0178607534
+UniRef50_UPI000382A798: hypothetical protein|unclassified	0.0178607534
+UniRef50_UPI00035E853E: hypothetical protein	0.0178599377
+UniRef50_UPI00035E853E: hypothetical protein|unclassified	0.0178599377
+UniRef50_Q9RSJ1	0.0178582307
+UniRef50_Q9RSJ1|unclassified	0.0178582307
+UniRef50_UPI0003463023: hypothetical protein	0.0178574324
+UniRef50_UPI0003463023: hypothetical protein|unclassified	0.0178574324
+UniRef50_Q04U59: 1-deoxy-D-xylulose-5-phosphate synthase	0.0178570373
+UniRef50_Q04U59: 1-deoxy-D-xylulose-5-phosphate synthase|unclassified	0.0178570373
+UniRef50_UPI0003B30FE2: DNA mismatch repair protein MutS	0.0178547388
+UniRef50_UPI0003B30FE2: DNA mismatch repair protein MutS|unclassified	0.0178547388
+UniRef50_UPI0002626F11: hypothetical protein	0.0178463458
+UniRef50_UPI0002626F11: hypothetical protein|unclassified	0.0178463458
+UniRef50_D2PVS1	0.0178442372
+UniRef50_D2PVS1|unclassified	0.0178442372
+UniRef50_UPI0003C39B58: PREDICTED: microtubule-associated protein futsch-like isoform X1	0.0178374048
+UniRef50_UPI0003C39B58: PREDICTED: microtubule-associated protein futsch-like isoform X1|unclassified	0.0178374048
+UniRef50_UPI00035F2644: hypothetical protein	0.0178199912
+UniRef50_UPI00035F2644: hypothetical protein|unclassified	0.0178199912
+UniRef50_UPI0003B789C4: DNA mismatch repair protein MutS	0.0178196839
+UniRef50_UPI0003B789C4: DNA mismatch repair protein MutS|unclassified	0.0178196839
+UniRef50_UPI00046EA062: hypothetical protein	0.0178184951
+UniRef50_UPI00046EA062: hypothetical protein|unclassified	0.0178184951
+UniRef50_UPI0003FCA8C7: type IV secretion protein Rhs	0.0178150008
+UniRef50_UPI0003FCA8C7: type IV secretion protein Rhs|unclassified	0.0178150008
+UniRef50_W5GWD8	0.0178117788
+UniRef50_W5GWD8|unclassified	0.0178117788
+UniRef50_H8YVR6: Mating pair stabilization protein TraN	0.0178089461
+UniRef50_H8YVR6: Mating pair stabilization protein TraN|unclassified	0.0178089461
+UniRef50_Q5SJ45: Valine--tRNA ligase	0.0178075793
+UniRef50_Q5SJ45: Valine--tRNA ligase|unclassified	0.0178075793
+UniRef50_UPI0003F914BA: DEAD/DEAH box helicase	0.0178026756
+UniRef50_UPI0003F914BA: DEAD/DEAH box helicase|unclassified	0.0178026756
+UniRef50_N6V2G4	0.0177927418
+UniRef50_N6V2G4|unclassified	0.0177927418
+UniRef50_UPI00019B355E: stomatin-related	0.0177788627
+UniRef50_UPI00019B355E: stomatin-related|unclassified	0.0177788627
+UniRef50_K0RB57	0.0177743560
+UniRef50_K0RB57|unclassified	0.0177743560
+UniRef50_R5BQJ9	0.0177741921
+UniRef50_R5BQJ9|unclassified	0.0177741921
+UniRef50_UPI000380F7AF: hypothetical protein	0.0177726854
+UniRef50_UPI000380F7AF: hypothetical protein|unclassified	0.0177726854
+UniRef50_K2KEC6	0.0177641249
+UniRef50_K2KEC6|unclassified	0.0177641249
+UniRef50_UPI00027426A1	0.0177545952
+UniRef50_UPI00027426A1|unclassified	0.0177545952
+UniRef50_E0XRK4	0.0177541992
+UniRef50_E0XRK4|unclassified	0.0177541992
+UniRef50_R7HQZ6	0.0177414303
+UniRef50_R7HQZ6|unclassified	0.0177414303
+UniRef50_UPI0003B7A785: hypothetical protein	0.0177402089
+UniRef50_UPI0003B7A785: hypothetical protein|unclassified	0.0177402089
+UniRef50_UPI00046432A7: hypothetical protein	0.0177369975
+UniRef50_UPI00046432A7: hypothetical protein|unclassified	0.0177369975
+UniRef50_UPI0003B4EA64: isoleucyl-tRNA synthase	0.0177340653
+UniRef50_UPI0003B4EA64: isoleucyl-tRNA synthase|unclassified	0.0177340653
+UniRef50_UPI0003748A6F: hypothetical protein	0.0177315592
+UniRef50_UPI0003748A6F: hypothetical protein|unclassified	0.0177315592
+UniRef50_UPI00046685D9: glucose dehydrogenase	0.0177298496
+UniRef50_UPI00046685D9: glucose dehydrogenase|unclassified	0.0177298496
+UniRef50_F7U0E0	0.0177260942
+UniRef50_F7U0E0|unclassified	0.0177260942
+UniRef50_Q54TJ4: Probable ATP-dependent RNA helicase ddx27	0.0177241151
+UniRef50_Q54TJ4: Probable ATP-dependent RNA helicase ddx27|unclassified	0.0177241151
+UniRef50_UPI0002B49029: PREDICTED: phosphoglucomutase-1-like	0.0177201859
+UniRef50_UPI0002B49029: PREDICTED: phosphoglucomutase-1-like|unclassified	0.0177201859
+UniRef50_UPI000255607E: ribonuclease R	0.0177154698
+UniRef50_UPI000255607E: ribonuclease R|unclassified	0.0177154698
+UniRef50_UPI00046657A8: ribonuclease R	0.0177125461
+UniRef50_UPI00046657A8: ribonuclease R|unclassified	0.0177125461
+UniRef50_UPI00036CD2C0: hypothetical protein	0.0177104566
+UniRef50_UPI00036CD2C0: hypothetical protein|unclassified	0.0177104566
+UniRef50_UPI00037CFE28: hypothetical protein	0.0177087369
+UniRef50_UPI00037CFE28: hypothetical protein|unclassified	0.0177087369
+UniRef50_UPI0003ACEF34: dihydrofolate synthase	0.0177022678
+UniRef50_UPI0003ACEF34: dihydrofolate synthase|unclassified	0.0177022678
+UniRef50_I0JKV5	0.0177021350
+UniRef50_I0JKV5|unclassified	0.0177021350
+UniRef50_UPI00046238FD: hypothetical protein TRAVEDRAFT_48830	0.0177011604
+UniRef50_UPI00046238FD: hypothetical protein TRAVEDRAFT_48830|unclassified	0.0177011604
+UniRef50_F0RC69	0.0176989813
+UniRef50_F0RC69|unclassified	0.0176989813
+UniRef50_UPI000365A89E: hypothetical protein	0.0176961432
+UniRef50_UPI000365A89E: hypothetical protein|unclassified	0.0176961432
+UniRef50_A7I002: Polyribonucleotide nucleotidyltransferase	0.0176854404
+UniRef50_A7I002: Polyribonucleotide nucleotidyltransferase|unclassified	0.0176854404
+UniRef50_C0ZU98	0.0176790157
+UniRef50_C0ZU98|unclassified	0.0176790157
+UniRef50_UPI0003B48391: LytTR family transcriptional regulator	0.0176727572
+UniRef50_UPI0003B48391: LytTR family transcriptional regulator|unclassified	0.0176727572
+UniRef50_UPI0003B4D7BB: hypothetical protein	0.0176723985
+UniRef50_UPI0003B4D7BB: hypothetical protein|unclassified	0.0176723985
+UniRef50_R6E8N4	0.0176704203
+UniRef50_R6E8N4|unclassified	0.0176704203
+UniRef50_UPI000023CB21: hypothetical protein FG03961.1	0.0176427640
+UniRef50_UPI000023CB21: hypothetical protein FG03961.1|unclassified	0.0176427640
+UniRef50_A8IGE5: Predicted protein	0.0176419219
+UniRef50_A8IGE5: Predicted protein|unclassified	0.0176419219
+UniRef50_UPI00047860A0: aldehyde oxidase	0.0176345165
+UniRef50_UPI00047860A0: aldehyde oxidase|unclassified	0.0176345165
+UniRef50_UPI000476230F: hypothetical protein	0.0176329460
+UniRef50_UPI000476230F: hypothetical protein|unclassified	0.0176329460
+UniRef50_UPI0002000C5D: lyase	0.0176323220
+UniRef50_UPI0002000C5D: lyase|unclassified	0.0176323220
+UniRef50_A0A022NU29	0.0176283809
+UniRef50_A0A022NU29|unclassified	0.0176283809
+UniRef50_F0XZU1	0.0176263324
+UniRef50_F0XZU1|unclassified	0.0176263324
+UniRef50_UPI00045607F1: hypothetical protein PFL1_05669	0.0176201285
+UniRef50_UPI00045607F1: hypothetical protein PFL1_05669|unclassified	0.0176201285
+UniRef50_UPI00047E6AEF: hypothetical protein	0.0176176566
+UniRef50_UPI00047E6AEF: hypothetical protein|unclassified	0.0176176566
+UniRef50_UPI00046A785B: hypothetical protein	0.0176174653
+UniRef50_UPI00046A785B: hypothetical protein|unclassified	0.0176174653
+UniRef50_U6EY40: Activator of (R)-2-hydroxyglutaryl-CoAdehydratase	0.0176162939
+UniRef50_U6EY40: Activator of (R)-2-hydroxyglutaryl-CoAdehydratase|unclassified	0.0176162939
+UniRef50_D2NT48: Predicted thioesterase involved in non-ribosomal peptide biosynthesis	0.0176130733
+UniRef50_D2NT48: Predicted thioesterase involved in non-ribosomal peptide biosynthesis|unclassified	0.0176130733
+UniRef50_M3X1Y9	0.0176095906
+UniRef50_M3X1Y9|unclassified	0.0176095906
+UniRef50_UPI00037B1792: hypothetical protein	0.0176066607
+UniRef50_UPI00037B1792: hypothetical protein|unclassified	0.0176066607
+UniRef50_F9FGU0	0.0176017814
+UniRef50_F9FGU0|unclassified	0.0176017814
+UniRef50_F0VFF5: NLI interacting factor-like phosphatase domain-containing protein	0.0175949749
+UniRef50_F0VFF5: NLI interacting factor-like phosphatase domain-containing protein|unclassified	0.0175949749
+UniRef50_UPI000310B872: hypothetical protein	0.0175941975
+UniRef50_UPI000310B872: hypothetical protein|unclassified	0.0175941975
+UniRef50_UPI00036D5F9F: hypothetical protein	0.0175941624
+UniRef50_UPI00036D5F9F: hypothetical protein|unclassified	0.0175941624
+UniRef50_W7DD23: (R)-2-hydroxyglutaryl-coA dehydratase activator protein	0.0175935130
+UniRef50_W7DD23: (R)-2-hydroxyglutaryl-coA dehydratase activator protein|unclassified	0.0175935130
+UniRef50_UPI000363A3A9: hypothetical protein	0.0175877381
+UniRef50_UPI000363A3A9: hypothetical protein|unclassified	0.0175877381
+UniRef50_D8LGM3	0.0175853317
+UniRef50_D8LGM3|unclassified	0.0175853317
+UniRef50_D8TJ66	0.0175810302
+UniRef50_D8TJ66|unclassified	0.0175810302
+UniRef50_UPI00037A38B3: hypothetical protein	0.0175790971
+UniRef50_UPI00037A38B3: hypothetical protein|unclassified	0.0175790971
+UniRef50_UPI00034B4D85: phosphoenolpyruvate synthase	0.0175778893
+UniRef50_UPI00034B4D85: phosphoenolpyruvate synthase|unclassified	0.0175778893
+UniRef50_U6MJN3	0.0175669062
+UniRef50_U6MJN3|unclassified	0.0175669062
+UniRef50_UPI0003B38D30: hypothetical protein	0.0175614119
+UniRef50_UPI0003B38D30: hypothetical protein|unclassified	0.0175614119
+UniRef50_E9FWN7	0.0175572926
+UniRef50_E9FWN7|unclassified	0.0175572926
+UniRef50_R5WF49	0.0175546471
+UniRef50_R5WF49|unclassified	0.0175546471
+UniRef50_V2Z011: Conserved fungal protein	0.0175480754
+UniRef50_V2Z011: Conserved fungal protein|unclassified	0.0175480754
+UniRef50_UPI0002DD9DEF: hypothetical protein	0.0175442382
+UniRef50_UPI0002DD9DEF: hypothetical protein|unclassified	0.0175442382
+UniRef50_K7EWF5	0.0175401375
+UniRef50_K7EWF5|unclassified	0.0175401375
+UniRef50_Q3JSN1	0.0175384692
+UniRef50_Q3JSN1|unclassified	0.0175384692
+UniRef50_Q0P903: Polyribonucleotide nucleotidyltransferase	0.0175351129
+UniRef50_Q0P903: Polyribonucleotide nucleotidyltransferase|unclassified	0.0175351129
+UniRef50_B0TEJ5: 1-deoxy-D-xylulose-5-phosphate synthase	0.0175283488
+UniRef50_B0TEJ5: 1-deoxy-D-xylulose-5-phosphate synthase|unclassified	0.0175283488
+UniRef50_UPI00029A58CA: pyoverdine biosynthesis protein	0.0175203096
+UniRef50_UPI00029A58CA: pyoverdine biosynthesis protein|unclassified	0.0175203096
+UniRef50_UPI00047859F1: hypothetical protein	0.0175139245
+UniRef50_UPI00047859F1: hypothetical protein|unclassified	0.0175139245
+UniRef50_UPI000463C3B1: hypothetical protein	0.0175121360
+UniRef50_UPI000463C3B1: hypothetical protein|unclassified	0.0175121360
+UniRef50_UPI000463A8A4: hypothetical protein	0.0175110953
+UniRef50_UPI000463A8A4: hypothetical protein|unclassified	0.0175110953
+UniRef50_UPI0003ACCF86: PREDICTED: RUN and FYVE domain-containing protein 4	0.0175073187
+UniRef50_UPI0003ACCF86: PREDICTED: RUN and FYVE domain-containing protein 4|unclassified	0.0175073187
+UniRef50_W7KYH7: Mob/TraA nicking	0.0175030254
+UniRef50_W7KYH7: Mob/TraA nicking|unclassified	0.0175030254
+UniRef50_J3L401	0.0175023871
+UniRef50_J3L401|unclassified	0.0175023871
+UniRef50_C5YVS6	0.0174908100
+UniRef50_C5YVS6|unclassified	0.0174908100
+UniRef50_UPI00023B2DB2: PREDICTED: cysteine desulfurase 1, mitochondrial	0.0174869170
+UniRef50_UPI00023B2DB2: PREDICTED: cysteine desulfurase 1, mitochondrial|unclassified	0.0174869170
+UniRef50_Q4MV63: S-layer homology domain protein	0.0174855512
+UniRef50_Q4MV63: S-layer homology domain protein|unclassified	0.0174855512
+UniRef50_UPI0002B4135E: PREDICTED: hydrocephalus-inducing protein-like, partial	0.0174854257
+UniRef50_UPI0002B4135E: PREDICTED: hydrocephalus-inducing protein-like, partial|unclassified	0.0174854257
+UniRef50_A0A021XD02: Lipase, class 3	0.0174819186
+UniRef50_A0A021XD02: Lipase, class 3|unclassified	0.0174819186
+UniRef50_UPI000366B7BC: MULTISPECIES: hypothetical protein	0.0174811780
+UniRef50_UPI000366B7BC: MULTISPECIES: hypothetical protein|unclassified	0.0174811780
+UniRef50_UPI00036DA060: hypothetical protein	0.0174630064
+UniRef50_UPI00036DA060: hypothetical protein|unclassified	0.0174630064
+UniRef50_J9P7D1	0.0174626180
+UniRef50_J9P7D1|unclassified	0.0174626180
+UniRef50_A8ZXB3: SH3 type 3 domain protein	0.0174623877
+UniRef50_A8ZXB3: SH3 type 3 domain protein|unclassified	0.0174623877
+UniRef50_I0L8K6	0.0174588321
+UniRef50_I0L8K6|unclassified	0.0174588321
+UniRef50_D8U1S0	0.0174536983
+UniRef50_D8U1S0|unclassified	0.0174536983
+UniRef50_UPI000378F7F1: MULTISPECIES: hypothetical protein	0.0174463644
+UniRef50_UPI000378F7F1: MULTISPECIES: hypothetical protein|unclassified	0.0174463644
+UniRef50_UPI0003676335: hypothetical protein	0.0174340530
+UniRef50_UPI0003676335: hypothetical protein|unclassified	0.0174340530
+UniRef50_UPI0003D08670: PREDICTED: midasin	0.0174335995
+UniRef50_UPI0003D08670: PREDICTED: midasin|unclassified	0.0174335995
+UniRef50_UPI00016BFDBF: nicotinate (nicotinamide) nucleotide adenylyltransferase	0.0174330167
+UniRef50_UPI00016BFDBF: nicotinate (nicotinamide) nucleotide adenylyltransferase|unclassified	0.0174330167
+UniRef50_P52028: DNA polymerase I, thermostable	0.0174254796
+UniRef50_P52028: DNA polymerase I, thermostable|unclassified	0.0174254796
+UniRef50_UPI00035EA28E: hypothetical protein	0.0174156891
+UniRef50_UPI00035EA28E: hypothetical protein|unclassified	0.0174156891
+UniRef50_Q47LW5	0.0174154949
+UniRef50_Q47LW5|unclassified	0.0174154949
+UniRef50_UPI0002E46F12: hypothetical protein	0.0174144332
+UniRef50_UPI0002E46F12: hypothetical protein|unclassified	0.0174144332
+UniRef50_A5VSQ0: 2-oxoglutarate dehydrogenase E1 component	0.0174128193
+UniRef50_A5VSQ0: 2-oxoglutarate dehydrogenase E1 component|unclassified	0.0174128193
+UniRef50_Q54R92	0.0174103007
+UniRef50_Q54R92|unclassified	0.0174103007
+UniRef50_UPI000471167D: hypothetical protein	0.0174059855
+UniRef50_UPI000471167D: hypothetical protein|unclassified	0.0174059855
+UniRef50_UPI000376BCB8: MULTISPECIES: hypothetical protein	0.0174049856
+UniRef50_UPI000376BCB8: MULTISPECIES: hypothetical protein|unclassified	0.0174049856
+UniRef50_P9WH77: Vitamin B12-dependent ribonucleoside-diphosphate reductase	0.0174049195
+UniRef50_P9WH77: Vitamin B12-dependent ribonucleoside-diphosphate reductase|unclassified	0.0174049195
+UniRef50_W5CNM4	0.0174019855
+UniRef50_W5CNM4|unclassified	0.0174019855
+UniRef50_I6A8M4	0.0173994490
+UniRef50_I6A8M4|unclassified	0.0173994490
+UniRef50_A3KJT6	0.0173967913
+UniRef50_A3KJT6|unclassified	0.0173967913
+UniRef50_U5VJV2	0.0173929525
+UniRef50_U5VJV2|unclassified	0.0173929525
+UniRef50_UPI00047E26CD: hypothetical protein	0.0173923705
+UniRef50_UPI00047E26CD: hypothetical protein|unclassified	0.0173923705
+UniRef50_M3Y9G1	0.0173910817
+UniRef50_M3Y9G1|unclassified	0.0173910817
+UniRef50_D8M434: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_20	0.0173834299
+UniRef50_D8M434: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_20|unclassified	0.0173834299
+UniRef50_F7W6Q2: WGS project CABT00000000 data, contig 2.35	0.0173729215
+UniRef50_F7W6Q2: WGS project CABT00000000 data, contig 2.35|unclassified	0.0173729215
+UniRef50_F0ST86	0.0173701248
+UniRef50_F0ST86|unclassified	0.0173701248
+UniRef50_UPI00045613AA: hypothetical protein PFL1_01689	0.0173693892
+UniRef50_UPI00045613AA: hypothetical protein PFL1_01689|unclassified	0.0173693892
+UniRef50_UPI000479D77D: hypothetical protein	0.0173608414
+UniRef50_UPI000479D77D: hypothetical protein|unclassified	0.0173608414
+UniRef50_UPI00041C9E3C: hypothetical protein	0.0173595534
+UniRef50_UPI00041C9E3C: hypothetical protein|unclassified	0.0173595534
+UniRef50_UPI0003500B54: PREDICTED: probable glutamine--tRNA ligase-like	0.0173567665
+UniRef50_UPI0003500B54: PREDICTED: probable glutamine--tRNA ligase-like|unclassified	0.0173567665
+UniRef50_W5X593: Carbohydrate esterase, family 1	0.0173557632
+UniRef50_W5X593: Carbohydrate esterase, family 1|unclassified	0.0173557632
+UniRef50_UPI00032911E8: PREDICTED: collagen alpha-2(I) chain-like	0.0173518676
+UniRef50_UPI00032911E8: PREDICTED: collagen alpha-2(I) chain-like|unclassified	0.0173518676
+UniRef50_UPI0004698811: DNA topoisomerase I	0.0173494277
+UniRef50_UPI0004698811: DNA topoisomerase I|unclassified	0.0173494277
+UniRef50_F4GZZ7	0.0173472113
+UniRef50_F4GZZ7|unclassified	0.0173472113
+UniRef50_N8W4Y3	0.0173297561
+UniRef50_N8W4Y3|unclassified	0.0173297561
+UniRef50_Q73LF4: 1-deoxy-D-xylulose-5-phosphate synthase	0.0173263028
+UniRef50_Q73LF4: 1-deoxy-D-xylulose-5-phosphate synthase|unclassified	0.0173263028
+UniRef50_UPI0002A4891A	0.0173050977
+UniRef50_UPI0002A4891A|unclassified	0.0173050977
+UniRef50_UPI000377CCD2: hypothetical protein	0.0173031600
+UniRef50_UPI000377CCD2: hypothetical protein|unclassified	0.0173031600
+UniRef50_UPI0001744D92: alkanesulfonate monooxygenase	0.0172968967
+UniRef50_UPI0001744D92: alkanesulfonate monooxygenase|unclassified	0.0172968967
+UniRef50_B1FRF3	0.0172959409
+UniRef50_B1FRF3|unclassified	0.0172959409
+UniRef50_UPI000225EBF9: TonB-denpendent receptor	0.0172924753
+UniRef50_UPI000225EBF9: TonB-denpendent receptor|unclassified	0.0172924753
+UniRef50_UPI00041335DC: hypothetical protein	0.0172918908
+UniRef50_UPI00041335DC: hypothetical protein|unclassified	0.0172918908
+UniRef50_A8FAK7: 2-isopropylmalate synthase 2	0.0172838344
+UniRef50_A8FAK7: 2-isopropylmalate synthase 2|unclassified	0.0172838344
+UniRef50_A0A023X655	0.0172787560
+UniRef50_A0A023X655|unclassified	0.0172787560
+UniRef50_UPI00036AEC1C: hypothetical protein	0.0172765046
+UniRef50_UPI00036AEC1C: hypothetical protein|unclassified	0.0172765046
+UniRef50_O94201: ATP-dependent 6-phosphofructokinase subunit alpha	0.0172750261
+UniRef50_O94201: ATP-dependent 6-phosphofructokinase subunit alpha|unclassified	0.0172750261
+UniRef50_UPI000362BA63: hypothetical protein	0.0172714986
+UniRef50_UPI000362BA63: hypothetical protein|unclassified	0.0172714986
+UniRef50_A1SCM2: DNA gyrase subunit A	0.0172661189
+UniRef50_A1SCM2: DNA gyrase subunit A|unclassified	0.0172661189
+UniRef50_Q46509: Aldehyde oxidoreductase	0.0172657979
+UniRef50_Q46509: Aldehyde oxidoreductase|unclassified	0.0172657979
+UniRef50_B1TGS4	0.0172632713
+UniRef50_B1TGS4|unclassified	0.0172632713
+UniRef50_UPI0003A4755B: histidine kinase	0.0172590434
+UniRef50_UPI0003A4755B: histidine kinase|unclassified	0.0172590434
+UniRef50_V4ZHB5	0.0172582413
+UniRef50_V4ZHB5|unclassified	0.0172582413
+UniRef50_G8AGV1: RepB plasmid partition	0.0172530567
+UniRef50_G8AGV1: RepB plasmid partition|unclassified	0.0172530567
+UniRef50_UPI00006CDF20: aminotransferase, class V family protein	0.0172485167
+UniRef50_UPI00006CDF20: aminotransferase, class V family protein|unclassified	0.0172485167
+UniRef50_F0VMY9	0.0172440015
+UniRef50_F0VMY9|unclassified	0.0172440015
+UniRef50_UPI00036E0FA5: hypothetical protein, partial	0.0172422271
+UniRef50_UPI00036E0FA5: hypothetical protein, partial|unclassified	0.0172422271
+UniRef50_UPI00035FAC18: hypothetical protein	0.0172256057
+UniRef50_UPI00035FAC18: hypothetical protein|unclassified	0.0172256057
+UniRef50_UPI000362A514: hypothetical protein	0.0172181936
+UniRef50_UPI000362A514: hypothetical protein|unclassified	0.0172181936
+UniRef50_W7AVK5	0.0172130367
+UniRef50_W7AVK5|unclassified	0.0172130367
+UniRef50_F6D866: Polymorphic outer membrane protein	0.0172024567
+UniRef50_F6D866: Polymorphic outer membrane protein|unclassified	0.0172024567
+UniRef50_W9UQ60: Putative assembly protein	0.0171978864
+UniRef50_W9UQ60: Putative assembly protein|unclassified	0.0171978864
+UniRef50_D2NRU7: Cytosine deaminase	0.0171957105
+UniRef50_D2NRU7: Cytosine deaminase|unclassified	0.0171957105
+UniRef50_UPI00037DF184: hypothetical protein, partial	0.0171850257
+UniRef50_UPI00037DF184: hypothetical protein, partial|unclassified	0.0171850257
+UniRef50_UPI000311EFA1: hypothetical protein	0.0171654277
+UniRef50_UPI000311EFA1: hypothetical protein|unclassified	0.0171654277
+UniRef50_H6R9M2	0.0171580954
+UniRef50_H6R9M2|unclassified	0.0171580954
+UniRef50_UPI000476E026: hypothetical protein	0.0171525385
+UniRef50_UPI000476E026: hypothetical protein|unclassified	0.0171525385
+UniRef50_B2UMY1: ATP-dependent zinc metalloprotease FtsH	0.0171472800
+UniRef50_B2UMY1: ATP-dependent zinc metalloprotease FtsH|unclassified	0.0171472800
+UniRef50_UPI00024934C7: ATPase	0.0171447793
+UniRef50_UPI00024934C7: ATPase|unclassified	0.0171447793
+UniRef50_D3E9W2: Transcriptional regulator, ArsR family protein	0.0171354624
+UniRef50_D3E9W2: Transcriptional regulator, ArsR family protein|unclassified	0.0171354624
+UniRef50_UPI00047EDDA8: ACGS family amino acid carrier protein	0.0171289180
+UniRef50_UPI00047EDDA8: ACGS family amino acid carrier protein|unclassified	0.0171289180
+UniRef50_UPI0003B3AC10: hypothetical protein	0.0171287754
+UniRef50_UPI0003B3AC10: hypothetical protein|unclassified	0.0171287754
+UniRef50_P56926: Glutamine--tRNA ligase	0.0171228467
+UniRef50_P56926: Glutamine--tRNA ligase|unclassified	0.0171228467
+UniRef50_R6MV50: YhgE/Pip domain-containing protein	0.0171139153
+UniRef50_R6MV50: YhgE/Pip domain-containing protein|unclassified	0.0171139153
+UniRef50_UPI0004780E06: membrane protein	0.0171092336
+UniRef50_UPI0004780E06: membrane protein|unclassified	0.0171092336
+UniRef50_X0SRQ3	0.0171007142
+UniRef50_X0SRQ3|unclassified	0.0171007142
+UniRef50_UPI0004656BE4: DNA mismatch repair protein MutS	0.0170962501
+UniRef50_UPI0004656BE4: DNA mismatch repair protein MutS|unclassified	0.0170962501
+UniRef50_Q14VU5: ORF13	0.0170884022
+UniRef50_Q14VU5: ORF13|unclassified	0.0170884022
+UniRef50_UPI0003D76B47	0.0170853552
+UniRef50_UPI0003D76B47|unclassified	0.0170853552
+UniRef50_A6X2K0: Transposase IS66	0.0170774053
+UniRef50_A6X2K0: Transposase IS66|unclassified	0.0170774053
+UniRef50_A4SX51: 4-hydroxy-tetrahydrodipicolinate synthase	0.0170749112
+UniRef50_A4SX51: 4-hydroxy-tetrahydrodipicolinate synthase|unclassified	0.0170749112
+UniRef50_UPI0003B5F8CA: nicotinate-nucleotide adenylyltransferase	0.0170748041
+UniRef50_UPI0003B5F8CA: nicotinate-nucleotide adenylyltransferase|unclassified	0.0170748041
+UniRef50_D3NVI7: FHA domain-containing protein	0.0170725871
+UniRef50_D3NVI7: FHA domain-containing protein|unclassified	0.0170725871
+UniRef50_K1QQ72	0.0170720520
+UniRef50_K1QQ72|unclassified	0.0170720520
+UniRef50_Q2SK78	0.0170705427
+UniRef50_Q2SK78|unclassified	0.0170705427
+UniRef50_H6N0P1: Transglutaminase-like protein	0.0170698417
+UniRef50_H6N0P1: Transglutaminase-like protein|unclassified	0.0170698417
+UniRef50_B6IQY7: Potassium-transporting ATPase C chain	0.0170622653
+UniRef50_B6IQY7: Potassium-transporting ATPase C chain|unclassified	0.0170622653
+UniRef50_UPI00046E96EF: hypothetical protein	0.0170614443
+UniRef50_UPI00046E96EF: hypothetical protein|unclassified	0.0170614443
+UniRef50_UPI00047D7E71: serine/threonine protein kinase	0.0170527259
+UniRef50_UPI00047D7E71: serine/threonine protein kinase|unclassified	0.0170527259
+UniRef50_UPI00036C2242: hypothetical protein	0.0170436469
+UniRef50_UPI00036C2242: hypothetical protein|unclassified	0.0170436469
+UniRef50_UPI0003738A87: hypothetical protein	0.0170378824
+UniRef50_UPI0003738A87: hypothetical protein|unclassified	0.0170378824
+UniRef50_UPI000475C180: phosphoesterase	0.0170350791
+UniRef50_UPI000475C180: phosphoesterase|unclassified	0.0170350791
+UniRef50_UPI00036BB33A: hypothetical protein	0.0170305445
+UniRef50_UPI00036BB33A: hypothetical protein|unclassified	0.0170305445
+UniRef50_D0FQI7	0.0170257684
+UniRef50_D0FQI7|unclassified	0.0170257684
+UniRef50_UPI00037E01EF: hypothetical protein	0.0170140668
+UniRef50_UPI00037E01EF: hypothetical protein|unclassified	0.0170140668
+UniRef50_F3ZGB9: Putative AraC family transcription regulator	0.0170116646
+UniRef50_F3ZGB9: Putative AraC family transcription regulator|unclassified	0.0170116646
+UniRef50_UPI00038035A6: hypothetical protein	0.0169930346
+UniRef50_UPI00038035A6: hypothetical protein|unclassified	0.0169930346
+UniRef50_UPI0003C0FD63: PREDICTED: methylcrotonoyl-CoA carboxylase subunit alpha, mitochondrial-like	0.0169836270
+UniRef50_UPI0003C0FD63: PREDICTED: methylcrotonoyl-CoA carboxylase subunit alpha, mitochondrial-like|unclassified	0.0169836270
+UniRef50_W9VYD7	0.0169740188
+UniRef50_W9VYD7|unclassified	0.0169740188
+UniRef50_U6IPX1: Eri1 exoribonuclease 2	0.0169652533
+UniRef50_U6IPX1: Eri1 exoribonuclease 2|unclassified	0.0169652533
+UniRef50_UPI00036F972C: hypothetical protein	0.0169643269
+UniRef50_UPI00036F972C: hypothetical protein|unclassified	0.0169643269
+UniRef50_A0A022MHJ4	0.0169538532
+UniRef50_A0A022MHJ4|unclassified	0.0169538532
+UniRef50_UPI00041E2B86: hypothetical protein	0.0169473683
+UniRef50_UPI00041E2B86: hypothetical protein|unclassified	0.0169473683
+UniRef50_UPI0003B55DB1: histidine kinase	0.0169466092
+UniRef50_UPI0003B55DB1: histidine kinase|unclassified	0.0169466092
+UniRef50_M4X2W0: Rhs element Vgr protein	0.0169279313
+UniRef50_M4X2W0: Rhs element Vgr protein|unclassified	0.0169279313
+UniRef50_A0A017T816	0.0169224323
+UniRef50_A0A017T816|unclassified	0.0169224323
+UniRef50_UPI00047A1A5F: hypothetical protein	0.0169192975
+UniRef50_UPI00047A1A5F: hypothetical protein|unclassified	0.0169192975
+UniRef50_V6KSS1	0.0169051695
+UniRef50_V6KSS1|unclassified	0.0169051695
+UniRef50_UPI000372A545: hypothetical protein	0.0169016246
+UniRef50_UPI000372A545: hypothetical protein|unclassified	0.0169016246
+UniRef50_U1SRA3	0.0169012252
+UniRef50_U1SRA3|unclassified	0.0169012252
+UniRef50_UPI00037FD000: hypothetical protein	0.0168863293
+UniRef50_UPI00037FD000: hypothetical protein|unclassified	0.0168863293
+UniRef50_K8EDL9: YhgE/Pip C-terminal domain protein	0.0168863264
+UniRef50_K8EDL9: YhgE/Pip C-terminal domain protein|unclassified	0.0168863264
+UniRef50_S8A9P1	0.0168861707
+UniRef50_S8A9P1|unclassified	0.0168861707
+UniRef50_UPI0004792045: DEAD/DEAH box helicase	0.0168819199
+UniRef50_UPI0004792045: DEAD/DEAH box helicase|unclassified	0.0168819199
+UniRef50_UPI0003A3E99F: hypothetical protein	0.0168780718
+UniRef50_UPI0003A3E99F: hypothetical protein|unclassified	0.0168780718
+UniRef50_UPI0003317AAB: PREDICTED: amidophosphoribosyltransferase-like, partial	0.0168775545
+UniRef50_UPI0003317AAB: PREDICTED: amidophosphoribosyltransferase-like, partial|unclassified	0.0168775545
+UniRef50_UPI000344809E: PREDICTED: serine/arginine repetitive matrix protein 2-like	0.0168734496
+UniRef50_UPI000344809E: PREDICTED: serine/arginine repetitive matrix protein 2-like|unclassified	0.0168734496
+UniRef50_UPI0003D0A65E: PREDICTED: thymidine phosphorylase	0.0168684736
+UniRef50_UPI0003D0A65E: PREDICTED: thymidine phosphorylase|unclassified	0.0168684736
+UniRef50_UPI00016BFB3D: multi-sensor signal transduction histidine kinase	0.0168656908
+UniRef50_UPI00016BFB3D: multi-sensor signal transduction histidine kinase|unclassified	0.0168656908
+UniRef50_G0SZ68: Peptide-binding protein	0.0168629095
+UniRef50_G0SZ68: Peptide-binding protein|unclassified	0.0168629095
+UniRef50_A0A024YKW9: Portal protein	0.0168477439
+UniRef50_A0A024YKW9: Portal protein|unclassified	0.0168477439
+UniRef50_Q9Y105: Probable glutamine--tRNA ligase	0.0168448480
+UniRef50_Q9Y105: Probable glutamine--tRNA ligase|unclassified	0.0168448480
+UniRef50_W3A8E3	0.0168435712
+UniRef50_W3A8E3|unclassified	0.0168435712
+UniRef50_R4L8F8: Sortase	0.0168390370
+UniRef50_R4L8F8: Sortase|unclassified	0.0168390370
+UniRef50_C9RW76: YhgE/Pip C-terminal domain protein	0.0168343361
+UniRef50_C9RW76: YhgE/Pip C-terminal domain protein|unclassified	0.0168343361
+UniRef50_I2JTV4: Anaerobic ribonucleoside-triphosphate reductase	0.0168310861
+UniRef50_I2JTV4: Anaerobic ribonucleoside-triphosphate reductase|unclassified	0.0168310861
+UniRef50_UPI00037A92EF: hypothetical protein	0.0168271339
+UniRef50_UPI00037A92EF: hypothetical protein|unclassified	0.0168271339
+UniRef50_U6PZV7: ISE/inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_94	0.0168242806
+UniRef50_U6PZV7: ISE/inbred ISE genomic scaffold, scaffold_pathogens_Hcontortus_scaffold_94|unclassified	0.0168242806
+UniRef50_W3VNJ7	0.0168210677
+UniRef50_W3VNJ7|unclassified	0.0168210677
+UniRef50_G9WVP5	0.0168206810
+UniRef50_G9WVP5|unclassified	0.0168206810
+UniRef50_UPI000363DA73: hypothetical protein	0.0168165694
+UniRef50_UPI000363DA73: hypothetical protein|unclassified	0.0168165694
+UniRef50_UPI0003B487CD: hypothetical protein	0.0168102545
+UniRef50_UPI0003B487CD: hypothetical protein|unclassified	0.0168102545
+UniRef50_UPI00037C9F7B: hypothetical protein	0.0168073163
+UniRef50_UPI00037C9F7B: hypothetical protein|unclassified	0.0168073163
+UniRef50_E3EDG6: Ser/Thr phosphatase family protein	0.0168037953
+UniRef50_E3EDG6: Ser/Thr phosphatase family protein|unclassified	0.0168037953
+UniRef50_UPI00047E3E2A: hypothetical protein	0.0168030968
+UniRef50_UPI00047E3E2A: hypothetical protein|unclassified	0.0168030968
+UniRef50_UPI000345C556: hypothetical protein	0.0167978623
+UniRef50_UPI000345C556: hypothetical protein|unclassified	0.0167978623
+UniRef50_Q1CJW8: Macrolide export ATP-binding/permease protein MacB 1	0.0167864989
+UniRef50_Q1CJW8: Macrolide export ATP-binding/permease protein MacB 1|unclassified	0.0167864989
+UniRef50_R5EPL7	0.0167835458
+UniRef50_R5EPL7|unclassified	0.0167835458
+UniRef50_UPI0004674AD8: hypothetical protein	0.0167828219
+UniRef50_UPI0004674AD8: hypothetical protein|unclassified	0.0167828219
+UniRef50_P44945: RecBCD enzyme subunit RecC	0.0167817369
+UniRef50_P44945: RecBCD enzyme subunit RecC|unclassified	0.0167817369
+UniRef50_W5X5B2: Lipoate-protein ligase B	0.0167794613
+UniRef50_W5X5B2: Lipoate-protein ligase B|unclassified	0.0167794613
+UniRef50_UPI00046770E5: serine/threonine protein kinase	0.0167716154
+UniRef50_UPI00046770E5: serine/threonine protein kinase|unclassified	0.0167716154
+UniRef50_UPI00042B4A3F: Clp ATPase	0.0167611788
+UniRef50_UPI00042B4A3F: Clp ATPase|unclassified	0.0167611788
+UniRef50_F0VCY6	0.0167598983
+UniRef50_F0VCY6|unclassified	0.0167598983
+UniRef50_R6HBR9: UPF0272 protein BN574_01273	0.0167589943
+UniRef50_R6HBR9: UPF0272 protein BN574_01273|unclassified	0.0167589943
+UniRef50_Q8EX08: Valine--tRNA ligase	0.0167581670
+UniRef50_Q8EX08: Valine--tRNA ligase|unclassified	0.0167581670
+UniRef50_Q9JLT2: Trehalase	0.0167537405
+UniRef50_Q9JLT2: Trehalase|unclassified	0.0167537405
+UniRef50_UPI00047188E0: hypothetical protein	0.0167506761
+UniRef50_UPI00047188E0: hypothetical protein|unclassified	0.0167506761
+UniRef50_UPI0003F4A35E: hypothetical protein TREMEDRAFT_74449	0.0167203785
+UniRef50_UPI0003F4A35E: hypothetical protein TREMEDRAFT_74449|unclassified	0.0167203785
+UniRef50_E1ZS58	0.0167142957
+UniRef50_E1ZS58|unclassified	0.0167142957
+UniRef50_UPI00035FA6E2: hypothetical protein	0.0167131142
+UniRef50_UPI00035FA6E2: hypothetical protein|unclassified	0.0167131142
+UniRef50_UPI0004777CC6: hypothetical protein	0.0167123717
+UniRef50_UPI0004777CC6: hypothetical protein|unclassified	0.0167123717
+UniRef50_UPI0003021952: hypothetical protein	0.0167073324
+UniRef50_UPI0003021952: hypothetical protein|unclassified	0.0167073324
+UniRef50_UPI0003632653: hypothetical protein	0.0167053228
+UniRef50_UPI0003632653: hypothetical protein|unclassified	0.0167053228
+UniRef50_UPI0003B32907: DNA gyrase subunit A	0.0166988698
+UniRef50_UPI0003B32907: DNA gyrase subunit A|unclassified	0.0166988698
+UniRef50_UPI0004766702: hypothetical protein	0.0166987752
+UniRef50_UPI0004766702: hypothetical protein|unclassified	0.0166987752
+UniRef50_UPI00046D2949: hypothetical protein	0.0166947358
+UniRef50_UPI00046D2949: hypothetical protein|unclassified	0.0166947358
+UniRef50_UPI000265782C: PREDICTED: glyoxalase domain-containing protein 4-like	0.0166930245
+UniRef50_UPI000265782C: PREDICTED: glyoxalase domain-containing protein 4-like|unclassified	0.0166930245
+UniRef50_UPI00046D6B42: hypothetical protein	0.0166892382
+UniRef50_UPI00046D6B42: hypothetical protein|unclassified	0.0166892382
+UniRef50_UPI0003478680: hypothetical protein	0.0166882637
+UniRef50_UPI0003478680: hypothetical protein|unclassified	0.0166882637
+UniRef50_UPI0004237F76: hypothetical protein	0.0166859801
+UniRef50_UPI0004237F76: hypothetical protein|unclassified	0.0166859801
+UniRef50_UPI0004649B84: hypothetical protein	0.0166832817
+UniRef50_UPI0004649B84: hypothetical protein|unclassified	0.0166832817
+UniRef50_UPI0003836B4E: PREDICTED: vegetative cell wall protein gp1-like, partial	0.0166829471
+UniRef50_UPI0003836B4E: PREDICTED: vegetative cell wall protein gp1-like, partial|unclassified	0.0166829471
+UniRef50_M3G510: Hemolysin	0.0166803805
+UniRef50_M3G510: Hemolysin|unclassified	0.0166803805
+UniRef50_A4EM01: OmpA domain protein	0.0166674630
+UniRef50_A4EM01: OmpA domain protein|unclassified	0.0166674630
+UniRef50_UPI000381F67F: hypothetical protein	0.0166599332
+UniRef50_UPI000381F67F: hypothetical protein|unclassified	0.0166599332
+UniRef50_UPI0003B5798A: PII uridylyl-transferase	0.0166574168
+UniRef50_UPI0003B5798A: PII uridylyl-transferase|unclassified	0.0166574168
+UniRef50_W5X7S1: FHA domain-containing protein	0.0166451479
+UniRef50_W5X7S1: FHA domain-containing protein|unclassified	0.0166451479
+UniRef50_UPI00036EBE75: hypothetical protein	0.0166409719
+UniRef50_UPI00036EBE75: hypothetical protein|unclassified	0.0166409719
+UniRef50_L1J393	0.0166377930
+UniRef50_L1J393|unclassified	0.0166377930
+UniRef50_B5H170: Predicted transcriptional regulator	0.0166340910
+UniRef50_B5H170: Predicted transcriptional regulator|unclassified	0.0166340910
+UniRef50_Q1LBJ8	0.0166285265
+UniRef50_Q1LBJ8|unclassified	0.0166285265
+UniRef50_K7U3H6	0.0166200727
+UniRef50_K7U3H6|unclassified	0.0166200727
+UniRef50_UPI0003B6B72A: cell division protein FtsK	0.0166176670
+UniRef50_UPI0003B6B72A: cell division protein FtsK|unclassified	0.0166176670
+UniRef50_Q9HJX7: ATP-dependent DNA helicase Hel308	0.0166127761
+UniRef50_Q9HJX7: ATP-dependent DNA helicase Hel308|unclassified	0.0166127761
+UniRef50_UPI00022F6ADD: PREDICTED: ATP-binding cassette sub-family A member 3-like isoform X1, partial	0.0166098069
+UniRef50_UPI00022F6ADD: PREDICTED: ATP-binding cassette sub-family A member 3-like isoform X1, partial|unclassified	0.0166098069
+UniRef50_UPI0003870E5B	0.0166076870
+UniRef50_UPI0003870E5B|unclassified	0.0166076870
+UniRef50_UPI0003B37A7B: transporter	0.0165948314
+UniRef50_UPI0003B37A7B: transporter|unclassified	0.0165948314
+UniRef50_UPI00046B9FB9: PREDICTED: coiled-coil domain-containing protein 140	0.0165855897
+UniRef50_UPI00046B9FB9: PREDICTED: coiled-coil domain-containing protein 140|unclassified	0.0165855897
+UniRef50_R1HQL9: Putative thioesterase	0.0165786804
+UniRef50_R1HQL9: Putative thioesterase|unclassified	0.0165786804
+UniRef50_E1SPG8	0.0165730145
+UniRef50_E1SPG8|unclassified	0.0165730145
+UniRef50_UPI0004019330: chromosome segregation protein SMC	0.0165640674
+UniRef50_UPI0004019330: chromosome segregation protein SMC|unclassified	0.0165640674
+UniRef50_R6JBQ0	0.0165638193
+UniRef50_R6JBQ0|unclassified	0.0165638193
+UniRef50_W7D4E7: YhgE/Pip domain-containing protein	0.0165630150
+UniRef50_W7D4E7: YhgE/Pip domain-containing protein|unclassified	0.0165630150
+UniRef50_UPI0003681885: hypothetical protein, partial	0.0165579744
+UniRef50_UPI0003681885: hypothetical protein, partial|unclassified	0.0165579744
+UniRef50_UPI0004769049: hypothetical protein	0.0165425338
+UniRef50_UPI0004769049: hypothetical protein|unclassified	0.0165425338
+UniRef50_F0V8V4	0.0165422659
+UniRef50_F0V8V4|unclassified	0.0165422659
+UniRef50_UPI000045139C: hypothetical protein ABC2578	0.0165234596
+UniRef50_UPI000045139C: hypothetical protein ABC2578|unclassified	0.0165234596
+UniRef50_UPI000476AE65: hypothetical protein, partial	0.0165217010
+UniRef50_UPI000476AE65: hypothetical protein, partial|unclassified	0.0165217010
+UniRef50_UPI00036311DB: hypothetical protein	0.0165091593
+UniRef50_UPI00036311DB: hypothetical protein|unclassified	0.0165091593
+UniRef50_A0NSP5	0.0165053220
+UniRef50_A0NSP5|unclassified	0.0165053220
+UniRef50_UPI000185DB7C: zinc finger (C3HC4 RING finger) protein, putative	0.0165043976
+UniRef50_UPI000185DB7C: zinc finger (C3HC4 RING finger) protein, putative|unclassified	0.0165043976
+UniRef50_UPI0004561BB0: hypothetical protein PFL1_05640	0.0164947502
+UniRef50_UPI0004561BB0: hypothetical protein PFL1_05640|unclassified	0.0164947502
+UniRef50_R9X305: Nicking enzyme (TraA)-like protein	0.0164906665
+UniRef50_R9X305: Nicking enzyme (TraA)-like protein|unclassified	0.0164906665
+UniRef50_U6B3J4: Scaffold protein for [4Fe-4S] cluster assembly ApbC, MRP-like protein	0.0164905849
+UniRef50_U6B3J4: Scaffold protein for [4Fe-4S] cluster assembly ApbC, MRP-like protein|unclassified	0.0164905849
+UniRef50_B0T1N5: DNA ligase	0.0164862031
+UniRef50_B0T1N5: DNA ligase|unclassified	0.0164862031
+UniRef50_UPI0003B40C03: cell division protein FtsK	0.0164800762
+UniRef50_UPI0003B40C03: cell division protein FtsK|unclassified	0.0164800762
+UniRef50_R7NEY6	0.0164746047
+UniRef50_R7NEY6|unclassified	0.0164746047
+UniRef50_UPI0003F0B2FB: PREDICTED: multidrug resistance protein 1-like	0.0164736378
+UniRef50_UPI0003F0B2FB: PREDICTED: multidrug resistance protein 1-like|unclassified	0.0164736378
+UniRef50_UPI00037A4870: hypothetical protein, partial	0.0164692507
+UniRef50_UPI00037A4870: hypothetical protein, partial|unclassified	0.0164692507
+UniRef50_Q1MS17: Leucine--tRNA ligase	0.0164645919
+UniRef50_Q1MS17: Leucine--tRNA ligase|unclassified	0.0164645919
+UniRef50_UPI00044499DF: HD-domain/PDEase-like protein	0.0164454391
+UniRef50_UPI00044499DF: HD-domain/PDEase-like protein|unclassified	0.0164454391
+UniRef50_H6VX40: GroEL (Fragment)	0.0164403282
+UniRef50_H6VX40: GroEL (Fragment)|unclassified	0.0164403282
+UniRef50_UPI00035D0B9A: MULTISPECIES: hypothetical protein	0.0164393321
+UniRef50_UPI00035D0B9A: MULTISPECIES: hypothetical protein|unclassified	0.0164393321
+UniRef50_A9TLM2: Predicted protein	0.0164340377
+UniRef50_A9TLM2: Predicted protein|unclassified	0.0164340377
+UniRef50_G0R990: Predicted protein	0.0164242926
+UniRef50_G0R990: Predicted protein|unclassified	0.0164242926
+UniRef50_UPI0003B56FE6: hypothetical protein	0.0164239087
+UniRef50_UPI0003B56FE6: hypothetical protein|unclassified	0.0164239087
+UniRef50_F2R697: Phage portal protein	0.0164022608
+UniRef50_F2R697: Phage portal protein|unclassified	0.0164022608
+UniRef50_I0UU63	0.0163988867
+UniRef50_I0UU63|unclassified	0.0163988867
+UniRef50_UPI000346038C: hypothetical protein	0.0163964062
+UniRef50_UPI000346038C: hypothetical protein|unclassified	0.0163964062
+UniRef50_UPI0004433F46: PREDICTED: keratinocyte proline-rich protein-like	0.0163759884
+UniRef50_UPI0004433F46: PREDICTED: keratinocyte proline-rich protein-like|unclassified	0.0163759884
+UniRef50_Q6C7X8: ATP-dependent RNA helicase DBP10	0.0163716172
+UniRef50_Q6C7X8: ATP-dependent RNA helicase DBP10|unclassified	0.0163716172
+UniRef50_UPI0003EB35B9: L-lactate permease, partial	0.0163680009
+UniRef50_UPI0003EB35B9: L-lactate permease, partial|unclassified	0.0163680009
+UniRef50_H9UGN7	0.0163666213
+UniRef50_H9UGN7|unclassified	0.0163666213
+UniRef50_UPI00045E7F9C: hypothetical protein	0.0163629158
+UniRef50_UPI00045E7F9C: hypothetical protein|unclassified	0.0163629158
+UniRef50_UPI0003794833: hypothetical protein	0.0163591180
+UniRef50_UPI0003794833: hypothetical protein|unclassified	0.0163591180
+UniRef50_UPI00047E2CA9: hypothetical protein	0.0163462947
+UniRef50_UPI00047E2CA9: hypothetical protein|unclassified	0.0163462947
+UniRef50_UPI000412A15D: hypothetical protein	0.0163395830
+UniRef50_UPI000412A15D: hypothetical protein|unclassified	0.0163395830
+UniRef50_Q9Y7M1: Putative 2-hydroxyacyl-CoA lyase	0.0163359191
+UniRef50_Q9Y7M1: Putative 2-hydroxyacyl-CoA lyase|unclassified	0.0163359191
+UniRef50_UPI00016A3B5E: sensor histidine kinase/response regulator	0.0163280146
+UniRef50_UPI00016A3B5E: sensor histidine kinase/response regulator|unclassified	0.0163280146
+UniRef50_UPI00037263C3: hypothetical protein	0.0163266403
+UniRef50_UPI00037263C3: hypothetical protein|unclassified	0.0163266403
+UniRef50_V6Q5B3	0.0163251545
+UniRef50_V6Q5B3|unclassified	0.0163251545
+UniRef50_V6EXC9	0.0163220359
+UniRef50_V6EXC9|unclassified	0.0163220359
+UniRef50_UPI0003B41E21: flagellar hook protein FlgE	0.0163190750
+UniRef50_UPI0003B41E21: flagellar hook protein FlgE|unclassified	0.0163190750
+UniRef50_V5B252	0.0163124728
+UniRef50_V5B252|unclassified	0.0163124728
+UniRef50_U3ASA7	0.0163066996
+UniRef50_U3ASA7|unclassified	0.0163066996
+UniRef50_Q3B5J7: Macrolide export ATP-binding/permease protein MacB	0.0163060310
+UniRef50_Q3B5J7: Macrolide export ATP-binding/permease protein MacB|unclassified	0.0163060310
+UniRef50_UPI0003807B97: hypothetical protein	0.0163025472
+UniRef50_UPI0003807B97: hypothetical protein|unclassified	0.0163025472
+UniRef50_UPI000370B77A: hypothetical protein	0.0162968160
+UniRef50_UPI000370B77A: hypothetical protein|unclassified	0.0162968160
+UniRef50_U6JZK7	0.0162886087
+UniRef50_U6JZK7|unclassified	0.0162886087
+UniRef50_UPI0003B34DB1: acyltransferase	0.0162817824
+UniRef50_UPI0003B34DB1: acyltransferase|unclassified	0.0162817824
+UniRef50_UPI0004422462: PREDICTED: trehalase	0.0162717425
+UniRef50_UPI0004422462: PREDICTED: trehalase|unclassified	0.0162717425
+UniRef50_UPI00036FFA67: hypothetical protein, partial	0.0162716924
+UniRef50_UPI00036FFA67: hypothetical protein, partial|unclassified	0.0162716924
+UniRef50_R4Z1H3: Putative Transcriptional regulator-like protein	0.0162697643
+UniRef50_R4Z1H3: Putative Transcriptional regulator-like protein|unclassified	0.0162697643
+UniRef50_C1E049: Predicted protein	0.0162695157
+UniRef50_C1E049: Predicted protein|unclassified	0.0162695157
+UniRef50_UPI000365261D: hypothetical protein, partial	0.0162637569
+UniRef50_UPI000365261D: hypothetical protein, partial|unclassified	0.0162637569
+UniRef50_J9NUQ1	0.0162622455
+UniRef50_J9NUQ1|unclassified	0.0162622455
+UniRef50_UPI000475B66E: phosphoenolpyruvate synthase	0.0162590338
+UniRef50_UPI000475B66E: phosphoenolpyruvate synthase|unclassified	0.0162590338
+UniRef50_UPI0002E0F44E: hypothetical protein	0.0162461502
+UniRef50_UPI0002E0F44E: hypothetical protein|unclassified	0.0162461502
+UniRef50_S4Y7A1	0.0162446639
+UniRef50_S4Y7A1|unclassified	0.0162446639
+UniRef50_UPI000466A89B: NADH/ubiquinone/plastoquinone	0.0162388130
+UniRef50_UPI000466A89B: NADH/ubiquinone/plastoquinone|unclassified	0.0162388130
+UniRef50_K6GEJ6	0.0162380612
+UniRef50_K6GEJ6|unclassified	0.0162380612
+UniRef50_UPI0004295584: methylmalonyl-CoA mutase	0.0162353154
+UniRef50_UPI0004295584: methylmalonyl-CoA mutase|unclassified	0.0162353154
+UniRef50_D6YR51	0.0162316360
+UniRef50_D6YR51|unclassified	0.0162316360
+UniRef50_UPI00036A4753: hypothetical protein	0.0162283584
+UniRef50_UPI00036A4753: hypothetical protein|unclassified	0.0162283584
+UniRef50_UPI0001C36D2D: hypothetical protein	0.0162229739
+UniRef50_UPI0001C36D2D: hypothetical protein|unclassified	0.0162229739
+UniRef50_W9GDA1	0.0162224842
+UniRef50_W9GDA1|unclassified	0.0162224842
+UniRef50_E8NHH4: WGS CADB00000000 data, contig 29 (Fragment)	0.0162222475
+UniRef50_E8NHH4: WGS CADB00000000 data, contig 29 (Fragment)|unclassified	0.0162222475
+UniRef50_Q3IIY9	0.0162222394
+UniRef50_Q3IIY9|unclassified	0.0162222394
+UniRef50_UPI00047B0402: stage V sporulation protein D	0.0162198021
+UniRef50_UPI00047B0402: stage V sporulation protein D|unclassified	0.0162198021
+UniRef50_E7BAQ0: Functional role page for Cytochrome c-type protein TorY	0.0162152661
+UniRef50_E7BAQ0: Functional role page for Cytochrome c-type protein TorY|unclassified	0.0162152661
+UniRef50_UPI00047D88C2: stage V sporulation protein D	0.0162111638
+UniRef50_UPI00047D88C2: stage V sporulation protein D|unclassified	0.0162111638
+UniRef50_UPI00045497A1: PREDICTED: ATP-binding cassette sub-family A member 3-like isoform X2, partial	0.0162064987
+UniRef50_UPI00045497A1: PREDICTED: ATP-binding cassette sub-family A member 3-like isoform X2, partial|unclassified	0.0162064987
+UniRef50_UPI0003A8604F: DNA polymerase I	0.0162021840
+UniRef50_UPI0003A8604F: DNA polymerase I|unclassified	0.0162021840
+UniRef50_UPI00037C4890: hypothetical protein	0.0161975354
+UniRef50_UPI00037C4890: hypothetical protein|unclassified	0.0161975354
+UniRef50_E6LHQ7: YhgE/Pip domain protein	0.0161960164
+UniRef50_E6LHQ7: YhgE/Pip domain protein|unclassified	0.0161960164
+UniRef50_W3XT73	0.0161933221
+UniRef50_W3XT73|unclassified	0.0161933221
+UniRef50_I2JIY4	0.0161784705
+UniRef50_I2JIY4|unclassified	0.0161784705
+UniRef50_U6LR20	0.0161781013
+UniRef50_U6LR20|unclassified	0.0161781013
+UniRef50_UPI0002F8B59B: helicase	0.0161715413
+UniRef50_UPI0002F8B59B: helicase|unclassified	0.0161715413
+UniRef50_D8UAE1: Molecular chaperone	0.0161652341
+UniRef50_D8UAE1: Molecular chaperone|unclassified	0.0161652341
+UniRef50_UPI00034835DE: hypothetical protein	0.0161652325
+UniRef50_UPI00034835DE: hypothetical protein|unclassified	0.0161652325
+UniRef50_P59680: ATP-dependent 6-phosphofructokinase	0.0161585347
+UniRef50_P59680: ATP-dependent 6-phosphofructokinase|unclassified	0.0161585347
+UniRef50_D7FLE5	0.0161540699
+UniRef50_D7FLE5|unclassified	0.0161540699
+UniRef50_UPI000477220D: hypothetical protein	0.0161426230
+UniRef50_UPI000477220D: hypothetical protein|unclassified	0.0161426230
+UniRef50_UPI00047A4340: hypothetical protein	0.0161360644
+UniRef50_UPI00047A4340: hypothetical protein|unclassified	0.0161360644
+UniRef50_C0W8D3: Putative peptidoglycan binding domain protein	0.0161305852
+UniRef50_C0W8D3: Putative peptidoglycan binding domain protein|unclassified	0.0161305852
+UniRef50_UPI000428EAFE: hypothetical protein	0.0161214562
+UniRef50_UPI000428EAFE: hypothetical protein|unclassified	0.0161214562
+UniRef50_UPI0003738A09: MULTISPECIES: hypothetical protein	0.0161176804
+UniRef50_UPI0003738A09: MULTISPECIES: hypothetical protein|unclassified	0.0161176804
+UniRef50_V3L139	0.0161142167
+UniRef50_V3L139|unclassified	0.0161142167
+UniRef50_UPI0004238353: hypothetical protein	0.0161096407
+UniRef50_UPI0004238353: hypothetical protein|unclassified	0.0161096407
+UniRef50_D3BJ86: LIM-type zinc finger-containing protein	0.0160988649
+UniRef50_D3BJ86: LIM-type zinc finger-containing protein|unclassified	0.0160988649
+UniRef50_D3EEY8: von Willebrand factor type A	0.0160833999
+UniRef50_D3EEY8: von Willebrand factor type A|unclassified	0.0160833999
+UniRef50_M7X458: Protein transport protein SEC31	0.0160778760
+UniRef50_M7X458: Protein transport protein SEC31|unclassified	0.0160778760
+UniRef50_B8GLZ1	0.0160749144
+UniRef50_B8GLZ1|unclassified	0.0160749144
+UniRef50_UPI0003C154AA: PREDICTED: glutamate synthase 1 [NADH], chloroplastic-like	0.0160674920
+UniRef50_UPI0003C154AA: PREDICTED: glutamate synthase 1 [NADH], chloroplastic-like|unclassified	0.0160674920
+UniRef50_UPI00046CA2CA: hypothetical protein	0.0160634940
+UniRef50_UPI00046CA2CA: hypothetical protein|unclassified	0.0160634940
+UniRef50_A0DT33: Chromosome undetermined scaffold_62, whole genome shotgun sequence	0.0160617867
+UniRef50_A0DT33: Chromosome undetermined scaffold_62, whole genome shotgun sequence|unclassified	0.0160617867
+UniRef50_UPI0003C17542: PREDICTED: leucine--tRNA ligase, mitochondrial-like	0.0160595719
+UniRef50_UPI0003C17542: PREDICTED: leucine--tRNA ligase, mitochondrial-like|unclassified	0.0160595719
+UniRef50_G4MLQ1	0.0160443447
+UniRef50_G4MLQ1|unclassified	0.0160443447
+UniRef50_UPI0001B42F43: cell wall surface anchor family protein, partial	0.0160394734
+UniRef50_UPI0001B42F43: cell wall surface anchor family protein, partial|unclassified	0.0160394734
+UniRef50_Q5L7W2: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase	0.0160392315
+UniRef50_Q5L7W2: 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase|unclassified	0.0160392315
+UniRef50_UPI000471611F: hypothetical protein, partial	0.0160243479
+UniRef50_UPI000471611F: hypothetical protein, partial|unclassified	0.0160243479
+UniRef50_Q8TVM4: Leucine--tRNA ligase	0.0160198451
+UniRef50_Q8TVM4: Leucine--tRNA ligase|unclassified	0.0160198451
+UniRef50_W5X6K6	0.0160178901
+UniRef50_W5X6K6|unclassified	0.0160178901
+UniRef50_UPI0001FE37B6: xanthine dehydrogenase	0.0160173532
+UniRef50_UPI0001FE37B6: xanthine dehydrogenase|unclassified	0.0160173532
+UniRef50_V4YNS8	0.0160165466
+UniRef50_V4YNS8|unclassified	0.0160165466
+UniRef50_P13188: Glutamine--tRNA ligase	0.0160141850
+UniRef50_P13188: Glutamine--tRNA ligase|unclassified	0.0160141850
+UniRef50_Q5YN24	0.0160140116
+UniRef50_Q5YN24|unclassified	0.0160140116
+UniRef50_UPI00047AF6CE: restriction endonuclease	0.0160096144
+UniRef50_UPI00047AF6CE: restriction endonuclease|unclassified	0.0160096144
+UniRef50_UPI000478C1B0: ABC transporter	0.0160096069
+UniRef50_UPI000478C1B0: ABC transporter|unclassified	0.0160096069
+UniRef50_UPI0004634640: hypothetical protein	0.0160056076
+UniRef50_UPI0004634640: hypothetical protein|unclassified	0.0160056076
+UniRef50_E4UUH9	0.0160045418
+UniRef50_E4UUH9|unclassified	0.0160045418
+UniRef50_UPI0004785612: valyl-tRNA synthetase	0.0159962105
+UniRef50_UPI0004785612: valyl-tRNA synthetase|unclassified	0.0159962105
+UniRef50_UPI00047BAF04: hypothetical protein	0.0159913334
+UniRef50_UPI00047BAF04: hypothetical protein|unclassified	0.0159913334
+UniRef50_UPI0003C138C2: PREDICTED: leucine--tRNA ligase, mitochondrial-like	0.0159863284
+UniRef50_UPI0003C138C2: PREDICTED: leucine--tRNA ligase, mitochondrial-like|unclassified	0.0159863284
+UniRef50_UPI0004736C33: chromate transporter, partial	0.0159851426
+UniRef50_UPI0004736C33: chromate transporter, partial|unclassified	0.0159851426
+UniRef50_R5T9U3	0.0159838697
+UniRef50_R5T9U3|unclassified	0.0159838697
+UniRef50_UPI00042BD887: PREDICTED: LOW QUALITY PROTEIN: trehalase	0.0159812063
+UniRef50_UPI00042BD887: PREDICTED: LOW QUALITY PROTEIN: trehalase|unclassified	0.0159812063
+UniRef50_UPI00035EA52C: hypothetical protein	0.0159789801
+UniRef50_UPI00035EA52C: hypothetical protein|unclassified	0.0159789801
+UniRef50_T2F4Q9: Cell surface protein	0.0159767158
+UniRef50_T2F4Q9: Cell surface protein|unclassified	0.0159767158
+UniRef50_D8U9F9	0.0159752945
+UniRef50_D8U9F9|unclassified	0.0159752945
+UniRef50_U4U1Q3	0.0159730550
+UniRef50_U4U1Q3|unclassified	0.0159730550
+UniRef50_B3ETM6: Valine--tRNA ligase	0.0159697934
+UniRef50_B3ETM6: Valine--tRNA ligase|unclassified	0.0159697934
+UniRef50_Q7N253: Complete genome; segment 12/17	0.0159640175
+UniRef50_Q7N253: Complete genome; segment 12/17|unclassified	0.0159640175
+UniRef50_UPI00036FCC75: MULTISPECIES: hypothetical protein	0.0159567113
+UniRef50_UPI00036FCC75: MULTISPECIES: hypothetical protein|unclassified	0.0159567113
+UniRef50_E9AEN0: Proteophosphoglycan ppg1	0.0159539354
+UniRef50_E9AEN0: Proteophosphoglycan ppg1|unclassified	0.0159539354
+UniRef50_C7QBG2: AAA ATPase containing von Willebrand factor type A (VWA) domain	0.0159493744
+UniRef50_C7QBG2: AAA ATPase containing von Willebrand factor type A (VWA) domain|unclassified	0.0159493744
+UniRef50_UPI0002EA8076: hypothetical protein	0.0159374429
+UniRef50_UPI0002EA8076: hypothetical protein|unclassified	0.0159374429
+UniRef50_UPI000473F255: GTPase	0.0159351111
+UniRef50_UPI000473F255: GTPase|unclassified	0.0159351111
+UniRef50_UPI0003347753	0.0159310384
+UniRef50_UPI0003347753|unclassified	0.0159310384
+UniRef50_UPI00036EA2AA: hypothetical protein, partial	0.0159292607
+UniRef50_UPI00036EA2AA: hypothetical protein, partial|unclassified	0.0159292607
+UniRef50_UPI0003B398FF: hypothetical protein	0.0159088748
+UniRef50_UPI0003B398FF: hypothetical protein|unclassified	0.0159088748
+UniRef50_P57371: DNA topoisomerase 1	0.0159042702
+UniRef50_P57371: DNA topoisomerase 1|unclassified	0.0159042702
+UniRef50_L1J0A5	0.0159028066
+UniRef50_L1J0A5|unclassified	0.0159028066
+UniRef50_X0XC51: Marine sediment metagenome DNA, contig: S01H1_S26733 (Fragment)	0.0158946151
+UniRef50_X0XC51: Marine sediment metagenome DNA, contig: S01H1_S26733 (Fragment)|unclassified	0.0158946151
+UniRef50_A9UNP0: SH3, pleckstrin-like and PDZ/DHR/GLGF domain-containing protein	0.0158878320
+UniRef50_A9UNP0: SH3, pleckstrin-like and PDZ/DHR/GLGF domain-containing protein|unclassified	0.0158878320
+UniRef50_UPI00034B61C2: hypothetical protein	0.0158815652
+UniRef50_UPI00034B61C2: hypothetical protein|unclassified	0.0158815652
+UniRef50_UPI00022CAAEE: PREDICTED: hypothetical protein LOC100745157	0.0158791320
+UniRef50_UPI00022CAAEE: PREDICTED: hypothetical protein LOC100745157|unclassified	0.0158791320
+UniRef50_Q5GRY9: Bifunctional DNA-directed RNA polymerase subunit beta-beta'	0.0158762952
+UniRef50_Q5GRY9: Bifunctional DNA-directed RNA polymerase subunit beta-beta'|unclassified	0.0158762952
+UniRef50_UPI000403A517: hypothetical protein	0.0158704998
+UniRef50_UPI000403A517: hypothetical protein|unclassified	0.0158704998
+UniRef50_M3DIP4	0.0158704393
+UniRef50_M3DIP4|unclassified	0.0158704393
+UniRef50_B9JW46: OmpA family protein	0.0158588730
+UniRef50_B9JW46: OmpA family protein|unclassified	0.0158588730
+UniRef50_UPI000050FC02: helicase superfamily protein	0.0158569938
+UniRef50_UPI000050FC02: helicase superfamily protein|unclassified	0.0158569938
+UniRef50_UPI0003761AFD: hypothetical protein, partial	0.0158520910
+UniRef50_UPI0003761AFD: hypothetical protein, partial|unclassified	0.0158520910
+UniRef50_F7ZZ02: RDD domain containing protein	0.0158420970
+UniRef50_F7ZZ02: RDD domain containing protein|unclassified	0.0158420970
+UniRef50_A6VP15: 1,4-alpha-glucan branching enzyme GlgB	0.0158419562
+UniRef50_A6VP15: 1,4-alpha-glucan branching enzyme GlgB|unclassified	0.0158419562
+UniRef50_UPI000381514D: hypothetical protein	0.0158344822
+UniRef50_UPI000381514D: hypothetical protein|unclassified	0.0158344822
+UniRef50_UPI0003770F57: hypothetical protein	0.0158343922
+UniRef50_UPI0003770F57: hypothetical protein|unclassified	0.0158343922
+UniRef50_UPI00047AB87D: hypothetical protein	0.0158291510
+UniRef50_UPI00047AB87D: hypothetical protein|unclassified	0.0158291510
+UniRef50_UPI00035D14CB: hypothetical protein	0.0158279399
+UniRef50_UPI00035D14CB: hypothetical protein|unclassified	0.0158279399
+UniRef50_Q83GV1: Glycine dehydrogenase (decarboxylating)	0.0158275900
+UniRef50_Q83GV1: Glycine dehydrogenase (decarboxylating)|unclassified	0.0158275900
+UniRef50_UPI00034A75BB: hypothetical protein	0.0158217191
+UniRef50_UPI00034A75BB: hypothetical protein|unclassified	0.0158217191
+UniRef50_UPI00037416F3: hypothetical protein	0.0158164086
+UniRef50_UPI00037416F3: hypothetical protein|unclassified	0.0158164086
+UniRef50_UPI000372885F: hypothetical protein	0.0158136311
+UniRef50_UPI000372885F: hypothetical protein|unclassified	0.0158136311
+UniRef50_Q9DBM2: Peroxisomal bifunctional enzyme	0.0158073554
+UniRef50_Q9DBM2: Peroxisomal bifunctional enzyme|unclassified	0.0158073554
+UniRef50_UPI00038C29BD: PREDICTED: dentin sialophosphoprotein	0.0157954966
+UniRef50_UPI00038C29BD: PREDICTED: dentin sialophosphoprotein|unclassified	0.0157954966
+UniRef50_UPI000365A8C3: hypothetical protein	0.0157948622
+UniRef50_UPI000365A8C3: hypothetical protein|unclassified	0.0157948622
+UniRef50_UPI0003B67868: aldehyde oxidase	0.0157852941
+UniRef50_UPI0003B67868: aldehyde oxidase|unclassified	0.0157852941
+UniRef50_D7UUT3: LPXTG-motif cell wall anchor domain protein	0.0157798243
+UniRef50_D7UUT3: LPXTG-motif cell wall anchor domain protein|unclassified	0.0157798243
+UniRef50_UPI00037278CA: hypothetical protein	0.0157765245
+UniRef50_UPI00037278CA: hypothetical protein|unclassified	0.0157765245
+UniRef50_D3E316: Adhesin-like protein	0.0157691488
+UniRef50_D3E316: Adhesin-like protein|unclassified	0.0157691488
+UniRef50_A5D5F2	0.0157677614
+UniRef50_A5D5F2|unclassified	0.0157677614
+UniRef50_UPI00037EF93C: hypothetical protein	0.0157593958
+UniRef50_UPI00037EF93C: hypothetical protein|unclassified	0.0157593958
+UniRef50_UPI0001E895C0: Dynamin family protein	0.0157482596
+UniRef50_UPI0001E895C0: Dynamin family protein|unclassified	0.0157482596
+UniRef50_Q86X55: Histone-arginine methyltransferase CARM1	0.0157391372
+UniRef50_Q86X55: Histone-arginine methyltransferase CARM1|unclassified	0.0157391372
+UniRef50_UPI00046BA34F: PREDICTED: maltase A2-like	0.0157360296
+UniRef50_UPI00046BA34F: PREDICTED: maltase A2-like|unclassified	0.0157360296
+UniRef50_UPI0002894071: subtilisin-type proteinase	0.0157337123
+UniRef50_UPI0002894071: subtilisin-type proteinase|unclassified	0.0157337123
+UniRef50_UPI0002EC0588: hypothetical protein	0.0157287287
+UniRef50_UPI0002EC0588: hypothetical protein|unclassified	0.0157287287
+UniRef50_A0A023VHX5: Membrane protein	0.0157262876
+UniRef50_A0A023VHX5: Membrane protein|unclassified	0.0157262876
+UniRef50_B6IS79: Tetratricopeptide TPR_2 (Cell wall/envelope/membrane biosynthesis)	0.0157209715
+UniRef50_B6IS79: Tetratricopeptide TPR_2 (Cell wall/envelope/membrane biosynthesis)|unclassified	0.0157209715
+UniRef50_U7P0S3	0.0157204766
+UniRef50_U7P0S3|unclassified	0.0157204766
+UniRef50_X1YWH5	0.0157181808
+UniRef50_X1YWH5|unclassified	0.0157181808
+UniRef50_UPI0003B69332: NADH dehydrogenase	0.0157004317
+UniRef50_UPI0003B69332: NADH dehydrogenase|unclassified	0.0157004317
+UniRef50_Q4S5X4: Chromosome 9 SCAF14729, whole genome shotgun sequence. (Fragment)	0.0156958412
+UniRef50_Q4S5X4: Chromosome 9 SCAF14729, whole genome shotgun sequence. (Fragment)|unclassified	0.0156958412
+UniRef50_Q9XDH5: DNA polymerase III subunit alpha	0.0156954307
+UniRef50_Q9XDH5: DNA polymerase III subunit alpha|unclassified	0.0156954307
+UniRef50_UPI000468E354: hypothetical protein	0.0156912756
+UniRef50_UPI000468E354: hypothetical protein|unclassified	0.0156912756
+UniRef50_G0NKG2	0.0156889121
+UniRef50_G0NKG2|unclassified	0.0156889121
+UniRef50_A0D1C0: Chromosome undetermined scaffold_34, whole genome shotgun sequence	0.0156875907
+UniRef50_A0D1C0: Chromosome undetermined scaffold_34, whole genome shotgun sequence|unclassified	0.0156875907
+UniRef50_UPI0003B59A94: multifunctional thiamine-phosphate pyrophosphorylase/synthase/phosphomethylpyrimidine kinase	0.0156874659
+UniRef50_UPI0003B59A94: multifunctional thiamine-phosphate pyrophosphorylase/synthase/phosphomethylpyrimidine kinase|unclassified	0.0156874659
+UniRef50_S6CL80	0.0156761977
+UniRef50_S6CL80|unclassified	0.0156761977
+UniRef50_UPI000367B510: hypothetical protein	0.0156738966
+UniRef50_UPI000367B510: hypothetical protein|unclassified	0.0156738966
+UniRef50_UPI00034437BB: PREDICTED: pre-B-cell leukemia transcription factor-interacting protein 1 isoform X1	0.0156710348
+UniRef50_UPI00034437BB: PREDICTED: pre-B-cell leukemia transcription factor-interacting protein 1 isoform X1|unclassified	0.0156710348
+UniRef50_UPI0003B40AC9: hypothetical protein	0.0156686458
+UniRef50_UPI0003B40AC9: hypothetical protein|unclassified	0.0156686458
+UniRef50_UPI000473521A: glutamate synthase, partial	0.0156679278
+UniRef50_UPI000473521A: glutamate synthase, partial|unclassified	0.0156679278
+UniRef50_UPI00037DF3FD: hypothetical protein	0.0156651817
+UniRef50_UPI00037DF3FD: hypothetical protein|unclassified	0.0156651817
+UniRef50_UPI00046A87F0: hypothetical protein	0.0156651582
+UniRef50_UPI00046A87F0: hypothetical protein|unclassified	0.0156651582
+UniRef50_I7KK12	0.0156650371
+UniRef50_I7KK12|unclassified	0.0156650371
+UniRef50_G4UTF3	0.0156637185
+UniRef50_G4UTF3|unclassified	0.0156637185
+UniRef50_UPI000378EA8F: hypothetical protein	0.0156591436
+UniRef50_UPI000378EA8F: hypothetical protein|unclassified	0.0156591436
+UniRef50_I7A8X0: Rhs element Vgr protein	0.0156579578
+UniRef50_I7A8X0: Rhs element Vgr protein|unclassified	0.0156579578
+UniRef50_M9PGM8: Female sterile (1) homeotic, isoform I	0.0156515638
+UniRef50_M9PGM8: Female sterile (1) homeotic, isoform I|unclassified	0.0156515638
+UniRef50_Q64QH6	0.0156465280
+UniRef50_Q64QH6|unclassified	0.0156465280
+UniRef50_UPI0003B616E8: S1 RNA binding domain protein	0.0156416367
+UniRef50_UPI0003B616E8: S1 RNA binding domain protein|unclassified	0.0156416367
+UniRef50_E3S2I2	0.0156401475
+UniRef50_E3S2I2|unclassified	0.0156401475
+UniRef50_G3YXT2	0.0156394561
+UniRef50_G3YXT2|unclassified	0.0156394561
+UniRef50_UPI00006CBA49: glycine cleavage system T protein	0.0156377335
+UniRef50_UPI00006CBA49: glycine cleavage system T protein|unclassified	0.0156377335
+UniRef50_UPI000441513D: hypothetical protein DICSQDRAFT_101802	0.0156325023
+UniRef50_UPI000441513D: hypothetical protein DICSQDRAFT_101802|unclassified	0.0156325023
+UniRef50_C4WAX5	0.0156253852
+UniRef50_C4WAX5|unclassified	0.0156253852
+UniRef50_W7IWL2	0.0156234820
+UniRef50_W7IWL2|unclassified	0.0156234820
+UniRef50_C0RF58: Leucine--tRNA ligase	0.0156234796
+UniRef50_C0RF58: Leucine--tRNA ligase|unclassified	0.0156234796
+UniRef50_Q9S7G6: Polyribonucleotide nucleotidyltransferase 2, mitochondrial	0.0156205702
+UniRef50_Q9S7G6: Polyribonucleotide nucleotidyltransferase 2, mitochondrial|unclassified	0.0156205702
+UniRef50_Q5QU15: Predicted ATPase	0.0156159367
+UniRef50_Q5QU15: Predicted ATPase|unclassified	0.0156159367
+UniRef50_UPI0003646CC2: hypothetical protein	0.0156142646
+UniRef50_UPI0003646CC2: hypothetical protein|unclassified	0.0156142646
+UniRef50_UPI00041EBB81: primosome assembly protein PriA	0.0156013018
+UniRef50_UPI00041EBB81: primosome assembly protein PriA|unclassified	0.0156013018
+UniRef50_G7I9Q9: ATP synthase subunit alpha	0.0155997648
+UniRef50_G7I9Q9: ATP synthase subunit alpha|unclassified	0.0155997648
+UniRef50_UPI0003AD4ED6: hypothetical protein	0.0155989175
+UniRef50_UPI0003AD4ED6: hypothetical protein|unclassified	0.0155989175
+UniRef50_A9C1G8: Leucine--tRNA ligase	0.0155979620
+UniRef50_A9C1G8: Leucine--tRNA ligase|unclassified	0.0155979620
+UniRef50_Q2BPZ8: AsmA family superfamily protein	0.0155918901
+UniRef50_Q2BPZ8: AsmA family superfamily protein|unclassified	0.0155918901
+UniRef50_S9YVL9	0.0155818396
+UniRef50_S9YVL9|unclassified	0.0155818396
+UniRef50_H3ENC1	0.0155775842
+UniRef50_H3ENC1|unclassified	0.0155775842
+UniRef50_A0A026W2G8: Activating molecule in BECN1-regulated autophagy protein	0.0155718337
+UniRef50_A0A026W2G8: Activating molecule in BECN1-regulated autophagy protein|unclassified	0.0155718337
+UniRef50_UPI00037CCFF7: hypothetical protein	0.0155546111
+UniRef50_UPI00037CCFF7: hypothetical protein|unclassified	0.0155546111
+UniRef50_UPI00046B9072: PREDICTED: ATP-binding cassette sub-family A member 3-like, partial	0.0155517505
+UniRef50_UPI00046B9072: PREDICTED: ATP-binding cassette sub-family A member 3-like, partial|unclassified	0.0155517505
+UniRef50_Q3JUZ8	0.0155498183
+UniRef50_Q3JUZ8|unclassified	0.0155498183
+UniRef50_W4YDX4	0.0155424389
+UniRef50_W4YDX4|unclassified	0.0155424389
+UniRef50_D8U9B3	0.0155410110
+UniRef50_D8U9B3|unclassified	0.0155410110
+UniRef50_B9E7U9	0.0155358376
+UniRef50_B9E7U9|unclassified	0.0155358376
+UniRef50_U6M4L3	0.0155291417
+UniRef50_U6M4L3|unclassified	0.0155291417
+UniRef50_UPI000366B458: hypothetical protein	0.0155241282
+UniRef50_UPI000366B458: hypothetical protein|unclassified	0.0155241282
+UniRef50_UPI0003450E32: hypothetical protein	0.0155148025
+UniRef50_UPI0003450E32: hypothetical protein|unclassified	0.0155148025
+UniRef50_A5IKQ3: Leucine--tRNA ligase	0.0155100390
+UniRef50_A5IKQ3: Leucine--tRNA ligase|unclassified	0.0155100390
+UniRef50_U4YCI9	0.0154997416
+UniRef50_U4YCI9|unclassified	0.0154997416
+UniRef50_UPI00021A4D09: PREDICTED: hypothetical protein LOC100638427	0.0154988813
+UniRef50_UPI00021A4D09: PREDICTED: hypothetical protein LOC100638427|unclassified	0.0154988813
+UniRef50_UPI0003A911E9: adenylosuccinate lyase	0.0154950365
+UniRef50_UPI0003A911E9: adenylosuccinate lyase|unclassified	0.0154950365
+UniRef50_B4L996: GI16808	0.0154924323
+UniRef50_B4L996: GI16808|unclassified	0.0154924323
+UniRef50_Q54B22	0.0154838775
+UniRef50_Q54B22|unclassified	0.0154838775
+UniRef50_F3ZC19: Putative 3-oxoacyl-ACP synthase II	0.0154793162
+UniRef50_F3ZC19: Putative 3-oxoacyl-ACP synthase II|unclassified	0.0154793162
+UniRef50_UPI0003724D31: hypothetical protein	0.0154786259
+UniRef50_UPI0003724D31: hypothetical protein|unclassified	0.0154786259
+UniRef50_UPI00047B5136: hypothetical protein	0.0154746329
+UniRef50_UPI00047B5136: hypothetical protein|unclassified	0.0154746329
+UniRef50_B3CNT0: Ankyrin repeat domain protein	0.0154726914
+UniRef50_B3CNT0: Ankyrin repeat domain protein|unclassified	0.0154726914
+UniRef50_UPI00037F4A8F: hypothetical protein	0.0154579945
+UniRef50_UPI00037F4A8F: hypothetical protein|unclassified	0.0154579945
+UniRef50_V3ZN94	0.0154439795
+UniRef50_V3ZN94|unclassified	0.0154439795
+UniRef50_R9L5H1	0.0154364620
+UniRef50_R9L5H1|unclassified	0.0154364620
+UniRef50_UPI00036E5C3C: hypothetical protein	0.0154349044
+UniRef50_UPI00036E5C3C: hypothetical protein|unclassified	0.0154349044
+UniRef50_U6L954	0.0154180341
+UniRef50_U6L954|unclassified	0.0154180341
+UniRef50_UPI00036BB88B: hypothetical protein	0.0154175356
+UniRef50_UPI00036BB88B: hypothetical protein|unclassified	0.0154175356
+UniRef50_UPI00046997D0: hypothetical protein	0.0154054582
+UniRef50_UPI00046997D0: hypothetical protein|unclassified	0.0154054582
+UniRef50_UPI000425424A: leucyl-tRNA synthetase	0.0154052238
+UniRef50_UPI000425424A: leucyl-tRNA synthetase|unclassified	0.0154052238
+UniRef50_UPI0003790A2D: hypothetical protein	0.0154050350
+UniRef50_UPI0003790A2D: hypothetical protein|unclassified	0.0154050350
+UniRef50_X1XUX4: Uroporphyrinogen decarboxylase	0.0154045498
+UniRef50_X1XUX4: Uroporphyrinogen decarboxylase|unclassified	0.0154045498
+UniRef50_W5BIC2	0.0154034287
+UniRef50_W5BIC2|unclassified	0.0154034287
+UniRef50_E8ZW24	0.0154007794
+UniRef50_E8ZW24|unclassified	0.0154007794
+UniRef50_A8JB13: Predicted protein	0.0153999001
+UniRef50_A8JB13: Predicted protein|unclassified	0.0153999001
+UniRef50_E3C854: YhgE/Pip domain protein	0.0153966931
+UniRef50_E3C854: YhgE/Pip domain protein|unclassified	0.0153966931
+UniRef50_UPI0003667454: hypothetical protein	0.0153919914
+UniRef50_UPI0003667454: hypothetical protein|unclassified	0.0153919914
+UniRef50_UPI0003B4F62D: ABC transporter	0.0153887496
+UniRef50_UPI0003B4F62D: ABC transporter|unclassified	0.0153887496
+UniRef50_T0UDK3: Membrane protein, putative	0.0153842739
+UniRef50_T0UDK3: Membrane protein, putative|unclassified	0.0153842739
+UniRef50_Q12ES1	0.0153834356
+UniRef50_Q12ES1|unclassified	0.0153834356
+UniRef50_UPI000368F721: hypothetical protein	0.0153727922
+UniRef50_UPI000368F721: hypothetical protein|unclassified	0.0153727922
+UniRef50_UPI0003639D33: hypothetical protein	0.0153697848
+UniRef50_UPI0003639D33: hypothetical protein|unclassified	0.0153697848
+UniRef50_UPI0003723135: transcription-repair coupling factor, partial	0.0153690640
+UniRef50_UPI0003723135: transcription-repair coupling factor, partial|unclassified	0.0153690640
+UniRef50_K1QE07	0.0153643016
+UniRef50_K1QE07|unclassified	0.0153643016
+UniRef50_A8NU44	0.0153637946
+UniRef50_A8NU44|unclassified	0.0153637946
+UniRef50_B5UW86: Nickase	0.0153634291
+UniRef50_B5UW86: Nickase|unclassified	0.0153634291
+UniRef50_R7VY37	0.0153631096
+UniRef50_R7VY37|unclassified	0.0153631096
+UniRef50_UPI00046C3F2D: hypothetical protein, partial	0.0153630067
+UniRef50_UPI00046C3F2D: hypothetical protein, partial|unclassified	0.0153630067
+UniRef50_UPI00036AEB52: hypothetical protein	0.0153571804
+UniRef50_UPI00036AEB52: hypothetical protein|unclassified	0.0153571804
+UniRef50_UPI0004202255: hypothetical protein	0.0153556563
+UniRef50_UPI0004202255: hypothetical protein|unclassified	0.0153556563
+UniRef50_U6IQP8: Lysosomal alpha mannosidase	0.0153530736
+UniRef50_U6IQP8: Lysosomal alpha mannosidase|unclassified	0.0153530736
+UniRef50_UPI0003FF83DB: hypothetical protein	0.0153419637
+UniRef50_UPI0003FF83DB: hypothetical protein|unclassified	0.0153419637
+UniRef50_UPI000367F729: hypothetical protein	0.0153412363
+UniRef50_UPI000367F729: hypothetical protein|unclassified	0.0153412363
+UniRef50_UPI00030C10FA: hypothetical protein	0.0153371203
+UniRef50_UPI00030C10FA: hypothetical protein|unclassified	0.0153371203
+UniRef50_UPI0003345B42: PREDICTED: aldehyde oxidase-like	0.0153198858
+UniRef50_UPI0003345B42: PREDICTED: aldehyde oxidase-like|unclassified	0.0153198858
+UniRef50_U6N065	0.0153191212
+UniRef50_U6N065|unclassified	0.0153191212
+UniRef50_UPI00047267C2: hypothetical protein	0.0153163800
+UniRef50_UPI00047267C2: hypothetical protein|unclassified	0.0153163800
+UniRef50_G4CRC0: Transglycosylase SLT/LysM domain protein	0.0153160883
+UniRef50_G4CRC0: Transglycosylase SLT/LysM domain protein|unclassified	0.0153160883
+UniRef50_M1K176: Putative threonine-rich GPI-anchored glycoprotein	0.0152846992
+UniRef50_M1K176: Putative threonine-rich GPI-anchored glycoprotein|unclassified	0.0152846992
+UniRef50_UPI00036BE8CD: hypothetical protein	0.0152715304
+UniRef50_UPI00036BE8CD: hypothetical protein|unclassified	0.0152715304
+UniRef50_Q63IW3: ATP synthase subunit beta 2	0.0152685564
+UniRef50_Q63IW3: ATP synthase subunit beta 2|unclassified	0.0152685564
+UniRef50_UPI00047AD872: 2-oxoglutarate dehydrogenase	0.0152656453
+UniRef50_UPI00047AD872: 2-oxoglutarate dehydrogenase|unclassified	0.0152656453
+UniRef50_K0QYX4	0.0152629471
+UniRef50_K0QYX4|unclassified	0.0152629471
+UniRef50_UPI00037520F8: hypothetical protein, partial	0.0152603375
+UniRef50_UPI00037520F8: hypothetical protein, partial|unclassified	0.0152603375
+UniRef50_UPI0002653848: PREDICTED: acyl-coenzyme A synthetase ACSM3, mitochondrial-like, partial	0.0152552635
+UniRef50_UPI0002653848: PREDICTED: acyl-coenzyme A synthetase ACSM3, mitochondrial-like, partial|unclassified	0.0152552635
+UniRef50_K7UKE5	0.0152548765
+UniRef50_K7UKE5|unclassified	0.0152548765
+UniRef50_UPI000359F820: PREDICTED: DNA polymerase kappa-like isoform X2	0.0152520453
+UniRef50_UPI000359F820: PREDICTED: DNA polymerase kappa-like isoform X2|unclassified	0.0152520453
+UniRef50_W4KQX7	0.0152474208
+UniRef50_W4KQX7|unclassified	0.0152474208
+UniRef50_UPI00047792DB: hypothetical protein	0.0152459334
+UniRef50_UPI00047792DB: hypothetical protein|unclassified	0.0152459334
+UniRef50_UPI00037C10F9: hypothetical protein	0.0152453019
+UniRef50_UPI00037C10F9: hypothetical protein|unclassified	0.0152453019
+UniRef50_J7IUM6: BclB C-terminal domain protein	0.0152413698
+UniRef50_J7IUM6: BclB C-terminal domain protein|unclassified	0.0152413698
+UniRef50_UPI0003B6AAEA: aldehyde oxidase	0.0152406818
+UniRef50_UPI0003B6AAEA: aldehyde oxidase|unclassified	0.0152406818
+UniRef50_UPI000379F0B0: hypothetical protein	0.0152357293
+UniRef50_UPI000379F0B0: hypothetical protein|unclassified	0.0152357293
+UniRef50_UPI0003B5229F: biphenyl 2,3-dioxygenase	0.0152328004
+UniRef50_UPI0003B5229F: biphenyl 2,3-dioxygenase|unclassified	0.0152328004
+UniRef50_D3CS21: Terminase	0.0152255121
+UniRef50_D3CS21: Terminase|unclassified	0.0152255121
+UniRef50_UPI00036F9430: hypothetical protein	0.0152174185
+UniRef50_UPI00036F9430: hypothetical protein|unclassified	0.0152174185
+UniRef50_D8PQZ0: Expressed protein	0.0152161098
+UniRef50_D8PQZ0: Expressed protein|unclassified	0.0152161098
+UniRef50_A0A055EPD9: PE-PGRS family protein PE_PGRS44	0.0152160813
+UniRef50_A0A055EPD9: PE-PGRS family protein PE_PGRS44|unclassified	0.0152160813
+UniRef50_I2B934	0.0152101739
+UniRef50_I2B934|unclassified	0.0152101739
+UniRef50_UPI000363AB7A: hypothetical protein	0.0152096360
+UniRef50_UPI000363AB7A: hypothetical protein|unclassified	0.0152096360
+UniRef50_UPI0001585191: hypothetical protein BC1G_09731	0.0152094450
+UniRef50_UPI0001585191: hypothetical protein BC1G_09731|unclassified	0.0152094450
+UniRef50_UPI0003B62AA6: TonB-denpendent receptor	0.0152051184
+UniRef50_UPI0003B62AA6: TonB-denpendent receptor|unclassified	0.0152051184
+UniRef50_U6JRJ4	0.0152039390
+UniRef50_U6JRJ4|unclassified	0.0152039390
+UniRef50_UPI000363DC65: hypothetical protein	0.0152037626
+UniRef50_UPI000363DC65: hypothetical protein|unclassified	0.0152037626
+UniRef50_U6MQ72	0.0151999066
+UniRef50_U6MQ72|unclassified	0.0151999066
+UniRef50_F2R2X3	0.0151879921
+UniRef50_F2R2X3|unclassified	0.0151879921
+UniRef50_UPI00036F21BD: hypothetical protein	0.0151830618
+UniRef50_UPI00036F21BD: hypothetical protein|unclassified	0.0151830618
+UniRef50_W5J9I2: Alpha-N-acetyl glucosaminidase	0.0151798270
+UniRef50_W5J9I2: Alpha-N-acetyl glucosaminidase|unclassified	0.0151798270
+UniRef50_A8GNE3: Leucine--tRNA ligase	0.0151761804
+UniRef50_A8GNE3: Leucine--tRNA ligase|unclassified	0.0151761804
+UniRef50_UPI000255A1EB: hypothetical protein	0.0151679703
+UniRef50_UPI000255A1EB: hypothetical protein|unclassified	0.0151679703
+UniRef50_UPI000305CDE5: hypothetical protein	0.0151672377
+UniRef50_UPI000305CDE5: hypothetical protein|unclassified	0.0151672377
+UniRef50_UPI0003B33944: ATPase	0.0151579434
+UniRef50_UPI0003B33944: ATPase|unclassified	0.0151579434
+UniRef50_UPI0002D5F12D: valyl-tRNA synthase	0.0151536967
+UniRef50_UPI0002D5F12D: valyl-tRNA synthase|unclassified	0.0151536967
+UniRef50_T0TTU7: Membrane protein, putative	0.0151511968
+UniRef50_T0TTU7: Membrane protein, putative|unclassified	0.0151511968
+UniRef50_UPI0002ADAF3F	0.0151426662
+UniRef50_UPI0002ADAF3F|unclassified	0.0151426662
+UniRef50_UPI00035F8AC5: hypothetical protein	0.0151413803
+UniRef50_UPI00035F8AC5: hypothetical protein|unclassified	0.0151413803
+UniRef50_UPI0004690178: hypothetical protein	0.0151267322
+UniRef50_UPI0004690178: hypothetical protein|unclassified	0.0151267322
+UniRef50_A4TTX4	0.0151188094
+UniRef50_A4TTX4|unclassified	0.0151188094
+UniRef50_UPI0003A40D95: dehydrogenase	0.0151160625
+UniRef50_UPI0003A40D95: dehydrogenase|unclassified	0.0151160625
+UniRef50_UPI00047E5D43: hypothetical protein	0.0151071050
+UniRef50_UPI00047E5D43: hypothetical protein|unclassified	0.0151071050
+UniRef50_UPI0001BF70A9: hypothetical protein SMAC_07598	0.0151010493
+UniRef50_UPI0001BF70A9: hypothetical protein SMAC_07598|unclassified	0.0151010493
+UniRef50_A0A023B3E8	0.0150869874
+UniRef50_A0A023B3E8|unclassified	0.0150869874
+UniRef50_Q01BN9: Putative histone deacetylase (ISS)	0.0150855216
+UniRef50_Q01BN9: Putative histone deacetylase (ISS)|unclassified	0.0150855216
+UniRef50_C2IMY7: IncF plasmid conjugative transfer protein TraN	0.0150738394
+UniRef50_C2IMY7: IncF plasmid conjugative transfer protein TraN|unclassified	0.0150738394
+UniRef50_UPI000344DCE5: hypothetical protein	0.0150733420
+UniRef50_UPI000344DCE5: hypothetical protein|unclassified	0.0150733420
+UniRef50_P57388: 2-oxoglutarate dehydrogenase E1 component	0.0150604905
+UniRef50_P57388: 2-oxoglutarate dehydrogenase E1 component|unclassified	0.0150604905
+UniRef50_UPI0003DEC8D7	0.0150562781
+UniRef50_UPI0003DEC8D7|unclassified	0.0150562781
+UniRef50_A6RCA0: Predicted protein	0.0150531523
+UniRef50_A6RCA0: Predicted protein|unclassified	0.0150531523
+UniRef50_P32191: Glycerol-3-phosphate dehydrogenase, mitochondrial	0.0150508334
+UniRef50_P32191: Glycerol-3-phosphate dehydrogenase, mitochondrial|unclassified	0.0150508334
+UniRef50_UPI00022CAD53: PREDICTED: hypothetical protein LOC100742239	0.0150399065
+UniRef50_UPI00022CAD53: PREDICTED: hypothetical protein LOC100742239|unclassified	0.0150399065
+UniRef50_U4Q4Y3: RecA-family ATPase	0.0150233981
+UniRef50_U4Q4Y3: RecA-family ATPase|unclassified	0.0150233981
+UniRef50_Q8RHI6: DNA-directed RNA polymerase subunit beta	0.0150160037
+UniRef50_Q8RHI6: DNA-directed RNA polymerase subunit beta|unclassified	0.0150160037
+UniRef50_B1L762: Alanine--tRNA ligase	0.0150105418
+UniRef50_B1L762: Alanine--tRNA ligase|unclassified	0.0150105418
+UniRef50_UPI00046381C2: fimbrial assembly protein	0.0150098171
+UniRef50_UPI00046381C2: fimbrial assembly protein|unclassified	0.0150098171
+UniRef50_UPI0003C7C1A0: Pyruvate-flavodoxin oxidoreductase	0.0150076461
+UniRef50_UPI0003C7C1A0: Pyruvate-flavodoxin oxidoreductase|unclassified	0.0150076461
+UniRef50_UPI0003A62D6F: hypothetical protein	0.0150004795
+UniRef50_UPI0003A62D6F: hypothetical protein|unclassified	0.0150004795
+UniRef50_C9SAM1: Ribosomal RNA-processing protein	0.0149943773
+UniRef50_C9SAM1: Ribosomal RNA-processing protein|unclassified	0.0149943773
+UniRef50_A8GA32: Phage tail protein I	0.0149834358
+UniRef50_A8GA32: Phage tail protein I|unclassified	0.0149834358
+UniRef50_B4VEM8	0.0149808244
+UniRef50_B4VEM8|unclassified	0.0149808244
+UniRef50_UPI00034864C1: hypothetical protein	0.0149727986
+UniRef50_UPI00034864C1: hypothetical protein|unclassified	0.0149727986
+UniRef50_UPI00036D9B8C: hypothetical protein, partial	0.0149667079
+UniRef50_UPI00036D9B8C: hypothetical protein, partial|unclassified	0.0149667079
+UniRef50_UPI00047C8EB0: hypothetical protein	0.0149637143
+UniRef50_UPI00047C8EB0: hypothetical protein|unclassified	0.0149637143
+UniRef50_E1VL16	0.0149607944
+UniRef50_E1VL16|unclassified	0.0149607944
+UniRef50_UPI00047C04FB: hypothetical protein	0.0149586447
+UniRef50_UPI00047C04FB: hypothetical protein|unclassified	0.0149586447
+UniRef50_UPI00047BD144: hypothetical protein	0.0149482329
+UniRef50_UPI00047BD144: hypothetical protein|unclassified	0.0149482329
+UniRef50_UPI000362FEAB: MULTISPECIES: hypothetical protein	0.0149469067
+UniRef50_UPI000362FEAB: MULTISPECIES: hypothetical protein|unclassified	0.0149469067
+UniRef50_UPI0003800C65: hypothetical protein	0.0149468113
+UniRef50_UPI0003800C65: hypothetical protein|unclassified	0.0149468113
+UniRef50_Q660D6: Valine--tRNA ligase	0.0149456950
+UniRef50_Q660D6: Valine--tRNA ligase|unclassified	0.0149456950
+UniRef50_UPI00034D8338: hypothetical protein	0.0149377287
+UniRef50_UPI00034D8338: hypothetical protein|unclassified	0.0149377287
+UniRef50_UPI000416B41F: hypothetical protein	0.0149364293
+UniRef50_UPI000416B41F: hypothetical protein|unclassified	0.0149364293
+UniRef50_UPI000287AD13: GTPase	0.0149328661
+UniRef50_UPI000287AD13: GTPase|unclassified	0.0149328661
+UniRef50_UPI00046F1DB8: hypothetical protein	0.0149307661
+UniRef50_UPI00046F1DB8: hypothetical protein|unclassified	0.0149307661
+UniRef50_UPI000379E009: hypothetical protein	0.0149291555
+UniRef50_UPI000379E009: hypothetical protein|unclassified	0.0149291555
+UniRef50_Q9K838: DNA polymerase III subunit alpha	0.0149284619
+UniRef50_Q9K838: DNA polymerase III subunit alpha|unclassified	0.0149284619
+UniRef50_U6HS53: S1 RNA binding domain containing protein 1	0.0149252853
+UniRef50_U6HS53: S1 RNA binding domain containing protein 1|unclassified	0.0149252853
+UniRef50_R5W0N7	0.0149228011
+UniRef50_R5W0N7|unclassified	0.0149228011
+UniRef50_UPI0003632775: hypothetical protein	0.0149219444
+UniRef50_UPI0003632775: hypothetical protein|unclassified	0.0149219444
+UniRef50_W7W5S9: LuxR family transcriptional regulator	0.0149194483
+UniRef50_W7W5S9: LuxR family transcriptional regulator|unclassified	0.0149194483
+UniRef50_O66605: Lon protease	0.0148967895
+UniRef50_O66605: Lon protease|unclassified	0.0148967895
+UniRef50_UPI000466061A: DEAD/DEAH box helicase	0.0148871658
+UniRef50_UPI000466061A: DEAD/DEAH box helicase|unclassified	0.0148871658
+UniRef50_E8KR49	0.0148871327
+UniRef50_E8KR49|unclassified	0.0148871327
+UniRef50_Q9PQM4: Valine--tRNA ligase	0.0148737686
+UniRef50_Q9PQM4: Valine--tRNA ligase|unclassified	0.0148737686
+UniRef50_S2ZVN1	0.0148617319
+UniRef50_S2ZVN1|unclassified	0.0148617319
+UniRef50_UPI0004193B89: hypothetical protein	0.0148544249
+UniRef50_UPI0004193B89: hypothetical protein|unclassified	0.0148544249
+UniRef50_Q211V0: DNA ligase	0.0148403227
+UniRef50_Q211V0: DNA ligase|unclassified	0.0148403227
+UniRef50_UPI0004449D87: hypothetical protein STEHIDRAFT_140764	0.0148315610
+UniRef50_UPI0004449D87: hypothetical protein STEHIDRAFT_140764|unclassified	0.0148315610
+UniRef50_R6W8E2: YhgE/Pip domain-containing protein	0.0148245660
+UniRef50_R6W8E2: YhgE/Pip domain-containing protein|unclassified	0.0148245660
+UniRef50_UPI000370AE25: hypothetical protein	0.0148243512
+UniRef50_UPI000370AE25: hypothetical protein|unclassified	0.0148243512
+UniRef50_UPI0004667AB9: hypothetical protein	0.0148230261
+UniRef50_UPI0004667AB9: hypothetical protein|unclassified	0.0148230261
+UniRef50_E7C3B6	0.0148197971
+UniRef50_E7C3B6|unclassified	0.0148197971
+UniRef50_X5MKP4: FIG003603: membrane protein, putative	0.0148175041
+UniRef50_X5MKP4: FIG003603: membrane protein, putative|unclassified	0.0148175041
+UniRef50_UPI0004621699: glutaminyl-tRNA synthetase	0.0148045759
+UniRef50_UPI0004621699: glutaminyl-tRNA synthetase|unclassified	0.0148045759
+UniRef50_A6LM12	0.0148026450
+UniRef50_A6LM12|unclassified	0.0148026450
+UniRef50_UPI0003D0F009: PREDICTED: striated muscle preferentially expressed protein kinase	0.0148001229
+UniRef50_UPI0003D0F009: PREDICTED: striated muscle preferentially expressed protein kinase|unclassified	0.0148001229
+UniRef50_UPI00047635FB: hypothetical protein	0.0147865150
+UniRef50_UPI00047635FB: hypothetical protein|unclassified	0.0147865150
+UniRef50_UPI0002235060: PREDICTED: GAS2-like protein 2-like	0.0147821419
+UniRef50_UPI0002235060: PREDICTED: GAS2-like protein 2-like|unclassified	0.0147821419
+UniRef50_K8EM70: YhgE/Pip C-terminal domain protein	0.0147764174
+UniRef50_K8EM70: YhgE/Pip C-terminal domain protein|unclassified	0.0147764174
+UniRef50_J2X5B6	0.0147734135
+UniRef50_J2X5B6|unclassified	0.0147734135
+UniRef50_UPI00037BBCC1: hypothetical protein	0.0147649039
+UniRef50_UPI00037BBCC1: hypothetical protein|unclassified	0.0147649039
+UniRef50_U5SEF5: Methyl-accepting protein	0.0147608309
+UniRef50_U5SEF5: Methyl-accepting protein|unclassified	0.0147608309
+UniRef50_UPI0004063580: hypothetical protein	0.0147586084
+UniRef50_UPI0004063580: hypothetical protein|unclassified	0.0147586084
+UniRef50_UPI00036053D3: MULTISPECIES: hypothetical protein	0.0147473380
+UniRef50_UPI00036053D3: MULTISPECIES: hypothetical protein|unclassified	0.0147473380
+UniRef50_UPI000329DC11	0.0147414611
+UniRef50_UPI000329DC11|unclassified	0.0147414611
+UniRef50_I7A0A8: Transporter	0.0147404817
+UniRef50_I7A0A8: Transporter|unclassified	0.0147404817
+UniRef50_UPI000383333D: PREDICTED: 2-oxoglutarate dehydrogenase-like, mitochondrial isoform X2	0.0147379460
+UniRef50_UPI000383333D: PREDICTED: 2-oxoglutarate dehydrogenase-like, mitochondrial isoform X2|unclassified	0.0147379460
+UniRef50_UPI0003FE2537: hypothetical protein	0.0147379201
+UniRef50_UPI0003FE2537: hypothetical protein|unclassified	0.0147379201
+UniRef50_UPI0003A01DE6: hypothetical protein	0.0147354031
+UniRef50_UPI0003A01DE6: hypothetical protein|unclassified	0.0147354031
+UniRef50_UPI0003698208: hypothetical protein	0.0147296334
+UniRef50_UPI0003698208: hypothetical protein|unclassified	0.0147296334
+UniRef50_C2D090: Bacterial surface protein 26-residue PARCEL repeat (3 repeats)	0.0147278442
+UniRef50_C2D090: Bacterial surface protein 26-residue PARCEL repeat (3 repeats)|unclassified	0.0147278442
+UniRef50_H3ZJY1	0.0147247997
+UniRef50_H3ZJY1|unclassified	0.0147247997
+UniRef50_D8LLV7	0.0147245354
+UniRef50_D8LLV7|unclassified	0.0147245354
+UniRef50_U6IMP0: Type II collagen a	0.0147054163
+UniRef50_U6IMP0: Type II collagen a|unclassified	0.0147054163
+UniRef50_UPI000454614C	0.0146991515
+UniRef50_UPI000454614C|unclassified	0.0146991515
+UniRef50_C7R9P3: FHA domain containing protein	0.0146939672
+UniRef50_C7R9P3: FHA domain containing protein|unclassified	0.0146939672
+UniRef50_D8LT40	0.0146937912
+UniRef50_D8LT40|unclassified	0.0146937912
+UniRef50_X1YCH9	0.0146931006
+UniRef50_X1YCH9|unclassified	0.0146931006
+UniRef50_UPI0003EAF89B	0.0146791086
+UniRef50_UPI0003EAF89B|unclassified	0.0146791086
+UniRef50_UPI000309905F: hypothetical protein	0.0146719189
+UniRef50_UPI000309905F: hypothetical protein|unclassified	0.0146719189
+UniRef50_E6I3A8: SH3 domain protein	0.0146706254
+UniRef50_E6I3A8: SH3 domain protein|unclassified	0.0146706254
+UniRef50_W5XDD5: DNA polymerase	0.0146679644
+UniRef50_W5XDD5: DNA polymerase|unclassified	0.0146679644
+UniRef50_UPI000225AA6E: YhgE/Pip C-terminal domain-containing protein	0.0146560976
+UniRef50_UPI000225AA6E: YhgE/Pip C-terminal domain-containing protein|unclassified	0.0146560976
+UniRef50_UPI0002628657: carbon monoxide dehydrogenase	0.0146520347
+UniRef50_UPI0002628657: carbon monoxide dehydrogenase|unclassified	0.0146520347
+UniRef50_Q2GAZ8: RepB plasmid partition	0.0146488265
+UniRef50_Q2GAZ8: RepB plasmid partition|unclassified	0.0146488265
+UniRef50_X0R7Q6	0.0146371084
+UniRef50_X0R7Q6|unclassified	0.0146371084
+UniRef50_S7VYT1	0.0146363707
+UniRef50_S7VYT1|unclassified	0.0146363707
+UniRef50_UPI0003D2CBF5: helicase subunit of the DNA excision repair complex	0.0146292603
+UniRef50_UPI0003D2CBF5: helicase subunit of the DNA excision repair complex|unclassified	0.0146292603
+UniRef50_V8REA5	0.0146140011
+UniRef50_V8REA5|unclassified	0.0146140011
+UniRef50_E9GBA5	0.0146130890
+UniRef50_E9GBA5|unclassified	0.0146130890
+UniRef50_A0A011U9H9	0.0146115179
+UniRef50_A0A011U9H9|unclassified	0.0146115179
+UniRef50_S3Y327	0.0146110092
+UniRef50_S3Y327|unclassified	0.0146110092
+UniRef50_V6VI70: Membrane protein	0.0146062622
+UniRef50_V6VI70: Membrane protein|unclassified	0.0146062622
+UniRef50_UPI00042B76EF: Heavy metal atpase 5 isoform 1	0.0146054245
+UniRef50_UPI00042B76EF: Heavy metal atpase 5 isoform 1|unclassified	0.0146054245
+UniRef50_UPI00035FE9B6: hypothetical protein	0.0146032098
+UniRef50_UPI00035FE9B6: hypothetical protein|unclassified	0.0146032098
+UniRef50_UPI00046E8175: hypothetical protein	0.0145952929
+UniRef50_UPI00046E8175: hypothetical protein|unclassified	0.0145952929
+UniRef50_UPI0004717CFE: hypothetical protein	0.0145936501
+UniRef50_UPI0004717CFE: hypothetical protein|unclassified	0.0145936501
+UniRef50_UPI00042B6A44: Aldolase-type TIM barrel family protein	0.0145901311
+UniRef50_UPI00042B6A44: Aldolase-type TIM barrel family protein|unclassified	0.0145901311
+UniRef50_UPI0003B3855E: DNA polymerase I	0.0145896402
+UniRef50_UPI0003B3855E: DNA polymerase I|unclassified	0.0145896402
+UniRef50_UPI0004720CE8: hypothetical protein	0.0145839624
+UniRef50_UPI0004720CE8: hypothetical protein|unclassified	0.0145839624
+UniRef50_UPI0003620D57: hypothetical protein	0.0145822755
+UniRef50_UPI0003620D57: hypothetical protein|unclassified	0.0145822755
+UniRef50_UPI00035FD4E6: hypothetical protein	0.0145781202
+UniRef50_UPI00035FD4E6: hypothetical protein|unclassified	0.0145781202
+UniRef50_UPI00026272CC: xanthine dehydrogenase	0.0145754006
+UniRef50_UPI00026272CC: xanthine dehydrogenase|unclassified	0.0145754006
+UniRef50_R6A3C4	0.0145721878
+UniRef50_R6A3C4|unclassified	0.0145721878
+UniRef50_I3KBQ8	0.0145682712
+UniRef50_I3KBQ8|unclassified	0.0145682712
+UniRef50_F0YQQ6	0.0145580022
+UniRef50_F0YQQ6|unclassified	0.0145580022
+UniRef50_UPI0002627291: ABC transporter ATP-binding protein	0.0145572645
+UniRef50_UPI0002627291: ABC transporter ATP-binding protein|unclassified	0.0145572645
+UniRef50_R5B2K5	0.0145568048
+UniRef50_R5B2K5|unclassified	0.0145568048
+UniRef50_UPI0002657745: PREDICTED: S1 RNA-binding domain-containing protein 1-like	0.0145468996
+UniRef50_UPI0002657745: PREDICTED: S1 RNA-binding domain-containing protein 1-like|unclassified	0.0145468996
+UniRef50_UPI0003640B98: hypothetical protein, partial	0.0145440600
+UniRef50_UPI0003640B98: hypothetical protein, partial|unclassified	0.0145440600
+UniRef50_UPI000366C8A8: calcium-binding protein	0.0145409272
+UniRef50_UPI000366C8A8: calcium-binding protein|unclassified	0.0145409272
+UniRef50_UPI00034B293D: hypothetical protein	0.0145352084
+UniRef50_UPI00034B293D: hypothetical protein|unclassified	0.0145352084
+UniRef50_M2ZV09	0.0145339669
+UniRef50_M2ZV09|unclassified	0.0145339669
+UniRef50_A0A058ZD63	0.0145298627
+UniRef50_A0A058ZD63|unclassified	0.0145298627
+UniRef50_UPI0003F7B6B3: hypothetical protein	0.0145116731
+UniRef50_UPI0003F7B6B3: hypothetical protein|unclassified	0.0145116731
+UniRef50_UPI000366DA96: hypothetical protein	0.0145113204
+UniRef50_UPI000366DA96: hypothetical protein|unclassified	0.0145113204
+UniRef50_A0R7Q8: Sex pilus assembly protein	0.0145064195
+UniRef50_A0R7Q8: Sex pilus assembly protein|unclassified	0.0145064195
+UniRef50_V4YXQ9	0.0145033492
+UniRef50_V4YXQ9|unclassified	0.0145033492
+UniRef50_O18964: Synaptojanin-1 (Fragment)	0.0144919873
+UniRef50_O18964: Synaptojanin-1 (Fragment)|unclassified	0.0144919873
+UniRef50_H8MPQ7	0.0144904819
+UniRef50_H8MPQ7|unclassified	0.0144904819
+UniRef50_A9B3R2: Lon protease 2	0.0144655877
+UniRef50_A9B3R2: Lon protease 2|unclassified	0.0144655877
+UniRef50_UPI0002652051	0.0144569368
+UniRef50_UPI0002652051|unclassified	0.0144569368
+UniRef50_K0XPT4	0.0144539900
+UniRef50_K0XPT4|unclassified	0.0144539900
+UniRef50_E1VNP6	0.0144371414
+UniRef50_E1VNP6|unclassified	0.0144371414
+UniRef50_UPI000466A78D: hypothetical protein	0.0144338945
+UniRef50_UPI000466A78D: hypothetical protein|unclassified	0.0144338945
+UniRef50_H3H605	0.0144258470
+UniRef50_H3H605|unclassified	0.0144258470
+UniRef50_U2Z8B8	0.0144125551
+UniRef50_U2Z8B8|unclassified	0.0144125551
+UniRef50_UPI000359A7E6: PREDICTED: peroxisomal bifunctional enzyme-like	0.0144110204
+UniRef50_UPI000359A7E6: PREDICTED: peroxisomal bifunctional enzyme-like|unclassified	0.0144110204
+UniRef50_UPI00031F7224: hypothetical protein	0.0144070382
+UniRef50_UPI00031F7224: hypothetical protein|unclassified	0.0144070382
+UniRef50_C8KCZ1	0.0144048539
+UniRef50_C8KCZ1|unclassified	0.0144048539
+UniRef50_P47897: Glutamine--tRNA ligase	0.0144041949
+UniRef50_P47897: Glutamine--tRNA ligase|unclassified	0.0144041949
+UniRef50_UPI00030D32B8: hypothetical protein	0.0144029695
+UniRef50_UPI00030D32B8: hypothetical protein|unclassified	0.0144029695
+UniRef50_UPI00029A471E: pH regulation protein D	0.0143974115
+UniRef50_UPI00029A471E: pH regulation protein D|unclassified	0.0143974115
+UniRef50_UPI00037BC728: hypothetical protein	0.0143952459
+UniRef50_UPI00037BC728: hypothetical protein|unclassified	0.0143952459
+UniRef50_B5V5G4: Surface-layer protein	0.0143810357
+UniRef50_B5V5G4: Surface-layer protein|unclassified	0.0143810357
+UniRef50_UPI00035E30BB: hypothetical protein, partial	0.0143691985
+UniRef50_UPI00035E30BB: hypothetical protein, partial|unclassified	0.0143691985
+UniRef50_UPI00026287F8: hypothetical protein	0.0143459926
+UniRef50_UPI00026287F8: hypothetical protein|unclassified	0.0143459926
+UniRef50_UPI0002557980: hemolysin-type calcium-binding protein	0.0143396752
+UniRef50_UPI0002557980: hemolysin-type calcium-binding protein|unclassified	0.0143396752
+UniRef50_UPI000469ADEB: hypothetical protein, partial	0.0143365574
+UniRef50_UPI000469ADEB: hypothetical protein, partial|unclassified	0.0143365574
+UniRef50_UPI0003B5CAF5: peptide ABC transporter permease	0.0143352608
+UniRef50_UPI0003B5CAF5: peptide ABC transporter permease|unclassified	0.0143352608
+UniRef50_UPI0003B74F3A: protein kinase	0.0143287780
+UniRef50_UPI0003B74F3A: protein kinase|unclassified	0.0143287780
+UniRef50_UPI000379D4EE: hypothetical protein	0.0143204948
+UniRef50_UPI000379D4EE: hypothetical protein|unclassified	0.0143204948
+UniRef50_UPI00035B52D5: hypothetical protein	0.0143200174
+UniRef50_UPI00035B52D5: hypothetical protein|unclassified	0.0143200174
+UniRef50_A0A017TDI7	0.0142969729
+UniRef50_A0A017TDI7|unclassified	0.0142969729
+UniRef50_UPI0002DAE020: hypothetical protein	0.0142939894
+UniRef50_UPI0002DAE020: hypothetical protein|unclassified	0.0142939894
+UniRef50_UPI0004706261: hypothetical protein	0.0142809822
+UniRef50_UPI0004706261: hypothetical protein|unclassified	0.0142809822
+UniRef50_UPI00037C81A9: hypothetical protein	0.0142783187
+UniRef50_UPI00037C81A9: hypothetical protein|unclassified	0.0142783187
+UniRef50_UPI00036EE2F2: hypothetical protein, partial	0.0142775059
+UniRef50_UPI00036EE2F2: hypothetical protein, partial|unclassified	0.0142775059
+UniRef50_UPI000248CD16: PTS system mannitol-specific transporter subunit IICBA	0.0142742531
+UniRef50_UPI000248CD16: PTS system mannitol-specific transporter subunit IICBA|unclassified	0.0142742531
+UniRef50_UPI000476AB3B: hypothetical protein, partial	0.0142724368
+UniRef50_UPI000476AB3B: hypothetical protein, partial|unclassified	0.0142724368
+UniRef50_UPI00047AAC54: DNA polymerase I	0.0142642590
+UniRef50_UPI00047AAC54: DNA polymerase I|unclassified	0.0142642590
+UniRef50_I3JAX7	0.0142616380
+UniRef50_I3JAX7|unclassified	0.0142616380
+UniRef50_U2E4X4: Rib/alpha-like repeat protein (Fragment)	0.0142561947
+UniRef50_U2E4X4: Rib/alpha-like repeat protein (Fragment)|unclassified	0.0142561947
+UniRef50_Q2CB46: Flagellar motor protein	0.0142552309
+UniRef50_Q2CB46: Flagellar motor protein|unclassified	0.0142552309
+UniRef50_UPI0003752BD2: hypothetical protein, partial	0.0142501181
+UniRef50_UPI0003752BD2: hypothetical protein, partial|unclassified	0.0142501181
+UniRef50_F9V8V7: Cell surface protein	0.0142461670
+UniRef50_F9V8V7: Cell surface protein|unclassified	0.0142461670
+UniRef50_UPI0003703272: hypothetical protein	0.0142447744
+UniRef50_UPI0003703272: hypothetical protein|unclassified	0.0142447744
+UniRef50_Q8SR10: Probable glutamine--tRNA ligase	0.0142418068
+UniRef50_Q8SR10: Probable glutamine--tRNA ligase|unclassified	0.0142418068
+UniRef50_C6BQG0	0.0142364500
+UniRef50_C6BQG0|unclassified	0.0142364500
+UniRef50_B5YFG2: Lon protease	0.0142259754
+UniRef50_B5YFG2: Lon protease|unclassified	0.0142259754
+UniRef50_UPI0003670B73: hypothetical protein	0.0142259239
+UniRef50_UPI0003670B73: hypothetical protein|unclassified	0.0142259239
+UniRef50_UPI0003A10A10: hypothetical protein	0.0142204986
+UniRef50_UPI0003A10A10: hypothetical protein|unclassified	0.0142204986
+UniRef50_K6E2E7: Hemolysin-type calcium-binding protein	0.0142143871
+UniRef50_K6E2E7: Hemolysin-type calcium-binding protein|unclassified	0.0142143871
+UniRef50_UPI0003EA90A6: PREDICTED: LOW QUALITY PROTEIN: phosphatidylinositol 4-phosphate 5-kinase 6-like	0.0142030759
+UniRef50_UPI0003EA90A6: PREDICTED: LOW QUALITY PROTEIN: phosphatidylinositol 4-phosphate 5-kinase 6-like|unclassified	0.0142030759
+UniRef50_R6IH80	0.0141830434
+UniRef50_R6IH80|unclassified	0.0141830434
+UniRef50_UPI000368F18A: hypothetical protein	0.0141685706
+UniRef50_UPI000368F18A: hypothetical protein|unclassified	0.0141685706
+UniRef50_UPI000440DB80: PREDICTED: elongation factor 2-like, partial	0.0141461806
+UniRef50_UPI000440DB80: PREDICTED: elongation factor 2-like, partial|unclassified	0.0141461806
+UniRef50_B9NX71	0.0141430296
+UniRef50_B9NX71|unclassified	0.0141430296
+UniRef50_R7NS78: YhgE/Pip domain-containing protein	0.0141410615
+UniRef50_R7NS78: YhgE/Pip domain-containing protein|unclassified	0.0141410615
+UniRef50_UPI0004648B85: hypothetical protein	0.0141341495
+UniRef50_UPI0004648B85: hypothetical protein|unclassified	0.0141341495
+UniRef50_UPI000370079F: hypothetical protein	0.0141317981
+UniRef50_UPI000370079F: hypothetical protein|unclassified	0.0141317981
+UniRef50_S0P1N5	0.0141237073
+UniRef50_S0P1N5|unclassified	0.0141237073
+UniRef50_UPI0003451F63: hypothetical protein	0.0141089422
+UniRef50_UPI0003451F63: hypothetical protein|unclassified	0.0141089422
+UniRef50_UPI00034F66FC	0.0140972054
+UniRef50_UPI00034F66FC|unclassified	0.0140972054
+UniRef50_D8IIY6: Membrane protein family protein	0.0140920830
+UniRef50_D8IIY6: Membrane protein family protein|unclassified	0.0140920830
+UniRef50_UPI0003454F94: hypothetical protein	0.0140855299
+UniRef50_UPI0003454F94: hypothetical protein|unclassified	0.0140855299
+UniRef50_O83998: Valine--tRNA ligase	0.0140823238
+UniRef50_O83998: Valine--tRNA ligase|unclassified	0.0140823238
+UniRef50_UPI0001D5EE28: PREDICTED: Krueppel-like factor 14	0.0140722743
+UniRef50_UPI0001D5EE28: PREDICTED: Krueppel-like factor 14|unclassified	0.0140722743
+UniRef50_G7TIN1: Filmentous hemagglutinin	0.0140696427
+UniRef50_G7TIN1: Filmentous hemagglutinin|unclassified	0.0140696427
+UniRef50_W6KJK1	0.0140592243
+UniRef50_W6KJK1|unclassified	0.0140592243
+UniRef50_UPI0003B6DB7E: preprotein translocase subunit SecD	0.0140513393
+UniRef50_UPI0003B6DB7E: preprotein translocase subunit SecD|unclassified	0.0140513393
+UniRef50_P77965: DNA-directed RNA polymerase subunit beta	0.0140348241
+UniRef50_P77965: DNA-directed RNA polymerase subunit beta|unclassified	0.0140348241
+UniRef50_K2NPQ1: Structural toxin protein RtxA (Fragment)	0.0140281796
+UniRef50_K2NPQ1: Structural toxin protein RtxA (Fragment)|unclassified	0.0140281796
+UniRef50_U6KXT0	0.0140261304
+UniRef50_U6KXT0|unclassified	0.0140261304
+UniRef50_UPI000462E460: hypothetical protein, partial	0.0140023569
+UniRef50_UPI000462E460: hypothetical protein, partial|unclassified	0.0140023569
+UniRef50_UPI000469F8C6: ABC transporter	0.0140014395
+UniRef50_UPI000469F8C6: ABC transporter|unclassified	0.0140014395
+UniRef50_UPI0003EAF39C: PREDICTED: EF-hand calcium-binding domain-containing protein 4A isoform X3	0.0139983349
+UniRef50_UPI0003EAF39C: PREDICTED: EF-hand calcium-binding domain-containing protein 4A isoform X3|unclassified	0.0139983349
+UniRef50_UPI0003694337: hypothetical protein, partial	0.0139870668
+UniRef50_UPI0003694337: hypothetical protein, partial|unclassified	0.0139870668
+UniRef50_A9UW92: Predicted protein	0.0139826536
+UniRef50_A9UW92: Predicted protein|unclassified	0.0139826536
+UniRef50_UPI0003473EF9: hypothetical protein	0.0139814475
+UniRef50_UPI0003473EF9: hypothetical protein|unclassified	0.0139814475
+UniRef50_W0I4X7	0.0139688131
+UniRef50_W0I4X7|unclassified	0.0139688131
+UniRef50_UPI00047CEE30: hypothetical protein	0.0139686244
+UniRef50_UPI00047CEE30: hypothetical protein|unclassified	0.0139686244
+UniRef50_E9BQS2	0.0139663972
+UniRef50_E9BQS2|unclassified	0.0139663972
+UniRef50_A4YMQ8	0.0139607583
+UniRef50_A4YMQ8|unclassified	0.0139607583
+UniRef50_U6LQH6	0.0139577795
+UniRef50_U6LQH6|unclassified	0.0139577795
+UniRef50_E6KUU4: Choline binding protein PcpA	0.0139545962
+UniRef50_E6KUU4: Choline binding protein PcpA|unclassified	0.0139545962
+UniRef50_G2QDG1	0.0139534535
+UniRef50_G2QDG1|unclassified	0.0139534535
+UniRef50_UPI00035F71DA: hypothetical protein, partial	0.0139529958
+UniRef50_UPI00035F71DA: hypothetical protein, partial|unclassified	0.0139529958
+UniRef50_Q4UKI8: 2-oxoglutarate dehydrogenase E1 component	0.0139519327
+UniRef50_Q4UKI8: 2-oxoglutarate dehydrogenase E1 component|unclassified	0.0139519327
+UniRef50_UPI00041E1A7A: hypothetical protein	0.0139269096
+UniRef50_UPI00041E1A7A: hypothetical protein|unclassified	0.0139269096
+UniRef50_UPI0003B4EE97: helicase SNF2	0.0139263682
+UniRef50_UPI0003B4EE97: helicase SNF2|unclassified	0.0139263682
+UniRef50_UPI0004085752: hypothetical protein	0.0139220533
+UniRef50_UPI0004085752: hypothetical protein|unclassified	0.0139220533
+UniRef50_UPI0003608A43: hypothetical protein	0.0139219199
+UniRef50_UPI0003608A43: hypothetical protein|unclassified	0.0139219199
+UniRef50_M4WQM1	0.0139160926
+UniRef50_M4WQM1|unclassified	0.0139160926
+UniRef50_UPI00041A4387: DNA polymerase I	0.0139110083
+UniRef50_UPI00041A4387: DNA polymerase I|unclassified	0.0139110083
+UniRef50_J5K6R3	0.0139070998
+UniRef50_J5K6R3|unclassified	0.0139070998
+UniRef50_P28156: Carbamoyltransferase HypF	0.0138907129
+UniRef50_P28156: Carbamoyltransferase HypF|unclassified	0.0138907129
+UniRef50_UPI000365C161: hypothetical protein	0.0138889895
+UniRef50_UPI000365C161: hypothetical protein|unclassified	0.0138889895
+UniRef50_UPI0003B30B9B: aminopeptidase N	0.0138889524
+UniRef50_UPI0003B30B9B: aminopeptidase N|unclassified	0.0138889524
+UniRef50_UPI0003B6A7C9: flagellar biosynthesis protein FlhA, partial	0.0138878725
+UniRef50_UPI0003B6A7C9: flagellar biosynthesis protein FlhA, partial|unclassified	0.0138878725
+UniRef50_Q57962: Probable phosphoenolpyruvate synthase	0.0138858779
+UniRef50_Q57962: Probable phosphoenolpyruvate synthase|unclassified	0.0138858779
+UniRef50_UPI00037F13A1: hypothetical protein	0.0138796695
+UniRef50_UPI00037F13A1: hypothetical protein|unclassified	0.0138796695
+UniRef50_E3ZVW1: Wall-associated protein (Fragment)	0.0138753228
+UniRef50_E3ZVW1: Wall-associated protein (Fragment)|unclassified	0.0138753228
+UniRef50_UPI00046D1A57: PREDICTED: heat shock 70 kDa protein cognate 3 isoform X2	0.0138727611
+UniRef50_UPI00046D1A57: PREDICTED: heat shock 70 kDa protein cognate 3 isoform X2|unclassified	0.0138727611
+UniRef50_X1AE17: Marine sediment metagenome DNA, contig: S01H4_L06677 (Fragment)	0.0138713341
+UniRef50_X1AE17: Marine sediment metagenome DNA, contig: S01H4_L06677 (Fragment)|unclassified	0.0138713341
+UniRef50_Q216H0: Phosphomethylpyrimidine synthase	0.0138699305
+UniRef50_Q216H0: Phosphomethylpyrimidine synthase|unclassified	0.0138699305
+UniRef50_N2IVF8	0.0138557210
+UniRef50_N2IVF8|unclassified	0.0138557210
+UniRef50_Q8YD09: Bifunctional imidazolonepropionase/histidine ammonia-lyase	0.0138388796
+UniRef50_Q8YD09: Bifunctional imidazolonepropionase/histidine ammonia-lyase|unclassified	0.0138388796
+UniRef50_M0LR14	0.0138346762
+UniRef50_M0LR14|unclassified	0.0138346762
+UniRef50_Q07UN5: Leucine--tRNA ligase	0.0138320895
+UniRef50_Q07UN5: Leucine--tRNA ligase|unclassified	0.0138320895
+UniRef50_F4N6V9	0.0138314420
+UniRef50_F4N6V9|unclassified	0.0138314420
+UniRef50_M1PL72	0.0138290359
+UniRef50_M1PL72|unclassified	0.0138290359
+UniRef50_F8A1F7	0.0138286187
+UniRef50_F8A1F7|unclassified	0.0138286187
+UniRef50_UPI0003117FD6: hypothetical protein	0.0138278393
+UniRef50_UPI0003117FD6: hypothetical protein|unclassified	0.0138278393
+UniRef50_UPI0004420836: PREDICTED: nascent polypeptide-associated complex subunit alpha, muscle-specific form-like	0.0138232120
+UniRef50_UPI0004420836: PREDICTED: nascent polypeptide-associated complex subunit alpha, muscle-specific form-like|unclassified	0.0138232120
+UniRef50_E1ZA34	0.0138194306
+UniRef50_E1ZA34|unclassified	0.0138194306
+UniRef50_UPI00034739EE: hypothetical protein	0.0138098899
+UniRef50_UPI00034739EE: hypothetical protein|unclassified	0.0138098899
+UniRef50_P54982: Phytoene desaturase	0.0138048420
+UniRef50_P54982: Phytoene desaturase|unclassified	0.0138048420
+UniRef50_A0A058Z4Y7	0.0138043564
+UniRef50_A0A058Z4Y7|unclassified	0.0138043564
+UniRef50_A0A024I5Z9: Peptidoglycan binding protein	0.0138016267
+UniRef50_A0A024I5Z9: Peptidoglycan binding protein|unclassified	0.0138016267
+UniRef50_UPI0003B63A91: ATP-dependent nuclease subunit A	0.0137971204
+UniRef50_UPI0003B63A91: ATP-dependent nuclease subunit A|unclassified	0.0137971204
+UniRef50_R4M5I7: PE-PGRS family protein	0.0137969421
+UniRef50_R4M5I7: PE-PGRS family protein|unclassified	0.0137969421
+UniRef50_UPI0003658AFA: hypothetical protein	0.0137886193
+UniRef50_UPI0003658AFA: hypothetical protein|unclassified	0.0137886193
+UniRef50_UPI0001758483: PREDICTED: similar to ap endonuclease, partial	0.0137806293
+UniRef50_UPI0001758483: PREDICTED: similar to ap endonuclease, partial|unclassified	0.0137806293
+UniRef50_W5XAJ1: Ribosomal protein L25/L23	0.0137705054
+UniRef50_W5XAJ1: Ribosomal protein L25/L23|unclassified	0.0137705054
+UniRef50_UPI000359669F: PREDICTED: multidrug resistance protein 1-like	0.0137633841
+UniRef50_UPI000359669F: PREDICTED: multidrug resistance protein 1-like|unclassified	0.0137633841
+UniRef50_UPI00037D6C53: hypothetical protein, partial	0.0137624702
+UniRef50_UPI00037D6C53: hypothetical protein, partial|unclassified	0.0137624702
+UniRef50_R7PLH6	0.0137594142
+UniRef50_R7PLH6|unclassified	0.0137594142
+UniRef50_UPI000258E41C: PREDICTED: maltase A3-like	0.0137559501
+UniRef50_UPI000258E41C: PREDICTED: maltase A3-like|unclassified	0.0137559501
+UniRef50_Q465S7	0.0137521957
+UniRef50_Q465S7|unclassified	0.0137521957
+UniRef50_F0RQV0: Diguanylate cyclase/phosphodiesterase	0.0137496953
+UniRef50_F0RQV0: Diguanylate cyclase/phosphodiesterase|unclassified	0.0137496953
+UniRef50_UPI0003F071E0: PREDICTED: ribosome-releasing factor 2, mitochondrial-like	0.0137472050
+UniRef50_UPI0003F071E0: PREDICTED: ribosome-releasing factor 2, mitochondrial-like|unclassified	0.0137472050
+UniRef50_UPI0002485BD0: hypothetical protein, partial	0.0137398114
+UniRef50_UPI0002485BD0: hypothetical protein, partial|unclassified	0.0137398114
+UniRef50_R9G8C2: Membrane protein	0.0137266693
+UniRef50_R9G8C2: Membrane protein|unclassified	0.0137266693
+UniRef50_F2US62	0.0137261928
+UniRef50_F2US62|unclassified	0.0137261928
+UniRef50_M4KPR8: Cell surface protein, CscC family	0.0136756565
+UniRef50_M4KPR8: Cell surface protein, CscC family|unclassified	0.0136756565
+UniRef50_UPI0001E45F6A: ribonucleoside-diphosphate reductase large subunit	0.0136724572
+UniRef50_UPI0001E45F6A: ribonucleoside-diphosphate reductase large subunit|unclassified	0.0136724572
+UniRef50_P00967: Trifunctional purine biosynthetic protein adenosine-3	0.0136715438
+UniRef50_P00967: Trifunctional purine biosynthetic protein adenosine-3|unclassified	0.0136715438
+UniRef50_G4USH6	0.0136518692
+UniRef50_G4USH6|unclassified	0.0136518692
+UniRef50_A0A058Z7C6	0.0136463673
+UniRef50_A0A058Z7C6|unclassified	0.0136463673
+UniRef50_P51056: 2-oxoglutarate dehydrogenase E1 component	0.0136439523
+UniRef50_P51056: 2-oxoglutarate dehydrogenase E1 component|unclassified	0.0136439523
+UniRef50_Q64737: Trifunctional purine biosynthetic protein adenosine-3	0.0136327934
+UniRef50_Q64737: Trifunctional purine biosynthetic protein adenosine-3|unclassified	0.0136327934
+UniRef50_I4WI90: Putative thioesterase	0.0136276509
+UniRef50_I4WI90: Putative thioesterase|unclassified	0.0136276509
+UniRef50_UPI000408EFE2: hypothetical protein	0.0136265350
+UniRef50_UPI000408EFE2: hypothetical protein|unclassified	0.0136265350
+UniRef50_UPI00046F4F65: DNA polymerase III subunit alpha	0.0136261339
+UniRef50_UPI00046F4F65: DNA polymerase III subunit alpha|unclassified	0.0136261339
+UniRef50_H1LY38: MucBP domain protein (Fragment)	0.0136234643
+UniRef50_H1LY38: MucBP domain protein (Fragment)|unclassified	0.0136234643
+UniRef50_D1BE57	0.0136185865
+UniRef50_D1BE57|unclassified	0.0136185865
+UniRef50_UPI0003F8B04D: hypothetical protein	0.0136145187
+UniRef50_UPI0003F8B04D: hypothetical protein|unclassified	0.0136145187
+UniRef50_R6YN19: Transposase IS4	0.0136116790
+UniRef50_R6YN19: Transposase IS4|unclassified	0.0136116790
+UniRef50_B1LVQ1	0.0135933879
+UniRef50_B1LVQ1|unclassified	0.0135933879
+UniRef50_K2SDX5	0.0135889162
+UniRef50_K2SDX5|unclassified	0.0135889162
+UniRef50_K0S5L3	0.0135887447
+UniRef50_K0S5L3|unclassified	0.0135887447
+UniRef50_R1DBS1	0.0135765618
+UniRef50_R1DBS1|unclassified	0.0135765618
+UniRef50_UPI0003758701: hypothetical protein	0.0135759927
+UniRef50_UPI0003758701: hypothetical protein|unclassified	0.0135759927
+UniRef50_F6CZ33: AsmA family protein	0.0135703342
+UniRef50_F6CZ33: AsmA family protein|unclassified	0.0135703342
+UniRef50_UPI00034FF51E: PREDICTED: guanine deaminase-like	0.0135623623
+UniRef50_UPI00034FF51E: PREDICTED: guanine deaminase-like|unclassified	0.0135623623
+UniRef50_U6IX86: Cleavage and polyadenylation specificity factor	0.0135617250
+UniRef50_U6IX86: Cleavage and polyadenylation specificity factor|unclassified	0.0135617250
+UniRef50_U6I4I8: Phosphoglucomutase	0.0135596259
+UniRef50_U6I4I8: Phosphoglucomutase|unclassified	0.0135596259
+UniRef50_B4LHJ2: GJ12654	0.0135559005
+UniRef50_B4LHJ2: GJ12654|unclassified	0.0135559005
+UniRef50_UPI000377656B: hypothetical protein	0.0135526051
+UniRef50_UPI000377656B: hypothetical protein|unclassified	0.0135526051
+UniRef50_UPI0001585F6B: hypothetical protein BC1G_13151	0.0135485130
+UniRef50_UPI0001585F6B: hypothetical protein BC1G_13151|unclassified	0.0135485130
+UniRef50_P56914: NADH-quinone oxidoreductase subunit G 2	0.0135472521
+UniRef50_P56914: NADH-quinone oxidoreductase subunit G 2|unclassified	0.0135472521
+UniRef50_I3IW35	0.0135370300
+UniRef50_I3IW35|unclassified	0.0135370300
+UniRef50_B1ZXK6	0.0135297511
+UniRef50_B1ZXK6|unclassified	0.0135297511
+UniRef50_D3P6U4: Plasma membrane H+-transporting two-sector ATPase	0.0135250271
+UniRef50_D3P6U4: Plasma membrane H+-transporting two-sector ATPase|unclassified	0.0135250271
+UniRef50_P36437: Light-independent protochlorophyllide reductase subunit B	0.0135229427
+UniRef50_P36437: Light-independent protochlorophyllide reductase subunit B|unclassified	0.0135229427
+UniRef50_E3F2A6	0.0135184672
+UniRef50_E3F2A6|unclassified	0.0135184672
+UniRef50_Q9SH30: Probable copper-transporting ATPase HMA5	0.0135111175
+UniRef50_Q9SH30: Probable copper-transporting ATPase HMA5|unclassified	0.0135111175
+UniRef50_F2I8N8: LysM domain protein	0.0135096155
+UniRef50_F2I8N8: LysM domain protein|unclassified	0.0135096155
+UniRef50_A3XA65	0.0135060559
+UniRef50_A3XA65|unclassified	0.0135060559
+UniRef50_UPI0003B4EF18: peptidylprolyl isomerase	0.0135054292
+UniRef50_UPI0003B4EF18: peptidylprolyl isomerase|unclassified	0.0135054292
+UniRef50_H8WCR1	0.0134910091
+UniRef50_H8WCR1|unclassified	0.0134910091
+UniRef50_A6W977	0.0134859528
+UniRef50_A6W977|unclassified	0.0134859528
+UniRef50_UPI00036E6417: hypothetical protein	0.0134838265
+UniRef50_UPI00036E6417: hypothetical protein|unclassified	0.0134838265
+UniRef50_M5ECN5: Genomic scaffold, msy_sf_14	0.0134520823
+UniRef50_M5ECN5: Genomic scaffold, msy_sf_14|unclassified	0.0134520823
+UniRef50_C3YD63	0.0134488932
+UniRef50_C3YD63|unclassified	0.0134488932
+UniRef50_Q59QX1	0.0134484523
+UniRef50_Q59QX1|unclassified	0.0134484523
+UniRef50_UPI0004258808: hypothetical protein	0.0134438160
+UniRef50_UPI0004258808: hypothetical protein|unclassified	0.0134438160
+UniRef50_UPI0003A9422F: acriflavin resistance protein	0.0134273867
+UniRef50_UPI0003A9422F: acriflavin resistance protein|unclassified	0.0134273867
+UniRef50_R0FX57: Hemolysin-adenylate cyclase (Fragment)	0.0134211782
+UniRef50_R0FX57: Hemolysin-adenylate cyclase (Fragment)|unclassified	0.0134211782
+UniRef50_UPI00047B2DE4: hypothetical protein	0.0134165009
+UniRef50_UPI00047B2DE4: hypothetical protein|unclassified	0.0134165009
+UniRef50_UPI000469A483: hypothetical protein	0.0134124268
+UniRef50_UPI000469A483: hypothetical protein|unclassified	0.0134124268
+UniRef50_UPI0002378148: cadherin domain-containing protein	0.0134052641
+UniRef50_UPI0002378148: cadherin domain-containing protein|unclassified	0.0134052641
+UniRef50_G2DDX0: Chaperone	0.0133957782
+UniRef50_G2DDX0: Chaperone|unclassified	0.0133957782
+UniRef50_Q4A755: Valine--tRNA ligase	0.0133885406
+UniRef50_Q4A755: Valine--tRNA ligase|unclassified	0.0133885406
+UniRef50_UPI00041A0E64: hypothetical protein	0.0133822799
+UniRef50_UPI00041A0E64: hypothetical protein|unclassified	0.0133822799
+UniRef50_UPI00034500BD: hypothetical protein	0.0133468257
+UniRef50_UPI00034500BD: hypothetical protein|unclassified	0.0133468257
+UniRef50_C6B952	0.0133298690
+UniRef50_C6B952|unclassified	0.0133298690
+UniRef50_UPI0003811395: hypothetical protein	0.0133233652
+UniRef50_UPI0003811395: hypothetical protein|unclassified	0.0133233652
+UniRef50_Q16DR4: PucC family protein, putative	0.0133229678
+UniRef50_Q16DR4: PucC family protein, putative|unclassified	0.0133229678
+UniRef50_UPI000288AD03: glutamate synthase subunit alpha	0.0133201526
+UniRef50_UPI000288AD03: glutamate synthase subunit alpha|unclassified	0.0133201526
+UniRef50_Q49YY8	0.0133103870
+UniRef50_Q49YY8|unclassified	0.0133103870
+UniRef50_W4VYH9	0.0133094440
+UniRef50_W4VYH9|unclassified	0.0133094440
+UniRef50_UPI0003805964: MULTISPECIES: hypothetical protein	0.0133007008
+UniRef50_UPI0003805964: MULTISPECIES: hypothetical protein|unclassified	0.0133007008
+UniRef50_UPI000462CEC4: hypothetical protein, partial	0.0133005236
+UniRef50_UPI000462CEC4: hypothetical protein, partial|unclassified	0.0133005236
+UniRef50_UPI0004645BC1: type III secretion system protein InvA	0.0132956890
+UniRef50_UPI0004645BC1: type III secretion system protein InvA|unclassified	0.0132956890
+UniRef50_S6JIB9: Hemagglutination repeat-containing protein (Fragment)	0.0132898163
+UniRef50_S6JIB9: Hemagglutination repeat-containing protein (Fragment)|unclassified	0.0132898163
+UniRef50_Q97AG7: Isoleucine--tRNA ligase	0.0132802023
+UniRef50_Q97AG7: Isoleucine--tRNA ligase|unclassified	0.0132802023
+UniRef50_W5X4F5: Dehydrogenase-like protein	0.0132794089
+UniRef50_W5X4F5: Dehydrogenase-like protein|unclassified	0.0132794089
+UniRef50_UPI0003B62039: hypothetical protein	0.0132789186
+UniRef50_UPI0003B62039: hypothetical protein|unclassified	0.0132789186
+UniRef50_UPI0004122224: chemotaxis protein CheA	0.0132752972
+UniRef50_UPI0004122224: chemotaxis protein CheA|unclassified	0.0132752972
+UniRef50_UPI0003C10C25	0.0132691444
+UniRef50_UPI0003C10C25|unclassified	0.0132691444
+UniRef50_UPI0003B56116: 4Fe-4S ferredoxin	0.0132661607
+UniRef50_UPI0003B56116: 4Fe-4S ferredoxin|unclassified	0.0132661607
+UniRef50_UPI000347BD58: hypothetical protein	0.0132588459
+UniRef50_UPI000347BD58: hypothetical protein|unclassified	0.0132588459
+UniRef50_UPI00036142F7: hypothetical protein	0.0132447322
+UniRef50_UPI00036142F7: hypothetical protein|unclassified	0.0132447322
+UniRef50_UPI00016C3500: ATP synthase	0.0132377823
+UniRef50_UPI00016C3500: ATP synthase|unclassified	0.0132377823
+UniRef50_H2UAI5	0.0132360717
+UniRef50_H2UAI5|unclassified	0.0132360717
+UniRef50_D8TSH0	0.0132341741
+UniRef50_D8TSH0|unclassified	0.0132341741
+UniRef50_H9KUB2	0.0132290135
+UniRef50_H9KUB2|unclassified	0.0132290135
+UniRef50_Q6MAM1: Valine--tRNA ligase	0.0132220435
+UniRef50_Q6MAM1: Valine--tRNA ligase|unclassified	0.0132220435
+UniRef50_C0HE82	0.0132217758
+UniRef50_C0HE82|unclassified	0.0132217758
+UniRef50_UPI0003315AEB: PREDICTED: phosphoglucomutase-1	0.0132111398
+UniRef50_UPI0003315AEB: PREDICTED: phosphoglucomutase-1|unclassified	0.0132111398
+UniRef50_UPI00034BB86B: hypothetical protein	0.0132091284
+UniRef50_UPI00034BB86B: hypothetical protein|unclassified	0.0132091284
+UniRef50_UPI00047976D9: histidine kinase	0.0132033498
+UniRef50_UPI00047976D9: histidine kinase|unclassified	0.0132033498
+UniRef50_UPI0003738034: hypothetical protein	0.0132027984
+UniRef50_UPI0003738034: hypothetical protein|unclassified	0.0132027984
+UniRef50_UPI0003B79ABA: hypothetical protein	0.0132018607
+UniRef50_UPI0003B79ABA: hypothetical protein|unclassified	0.0132018607
+UniRef50_U6G3R1	0.0131884981
+UniRef50_U6G3R1|unclassified	0.0131884981
+UniRef50_Q180E4: Lon protease	0.0131791228
+UniRef50_Q180E4: Lon protease|unclassified	0.0131791228
+UniRef50_U6MXN8	0.0131724431
+UniRef50_U6MXN8|unclassified	0.0131724431
+UniRef50_D9QNL1	0.0131721310
+UniRef50_D9QNL1|unclassified	0.0131721310
+UniRef50_UPI000255CEAC: 3,4-dihydroxy-2-butanone 4-phosphate synthase	0.0131702302
+UniRef50_UPI000255CEAC: 3,4-dihydroxy-2-butanone 4-phosphate synthase|unclassified	0.0131702302
+UniRef50_R7I6B6: YhgE/Pip domain protein	0.0131617768
+UniRef50_R7I6B6: YhgE/Pip domain protein|unclassified	0.0131617768
+UniRef50_UPI00037091A6: hypothetical protein	0.0131527338
+UniRef50_UPI00037091A6: hypothetical protein|unclassified	0.0131527338
+UniRef50_M2TPZ2: Diguanylate cyclase/phosphodiesterase (GGDEF & EAL domains) with PAS/PAC sensor(S)	0.0131493289
+UniRef50_M2TPZ2: Diguanylate cyclase/phosphodiesterase (GGDEF & EAL domains) with PAS/PAC sensor(S)|unclassified	0.0131493289
+UniRef50_B3DTE2: DNA-directed RNA polymerase subunit beta	0.0131458665
+UniRef50_B3DTE2: DNA-directed RNA polymerase subunit beta|unclassified	0.0131458665
+UniRef50_UPI000365C247: hypothetical protein	0.0131455208
+UniRef50_UPI000365C247: hypothetical protein|unclassified	0.0131455208
+UniRef50_UPI00037B8097: hypothetical protein	0.0131440840
+UniRef50_UPI00037B8097: hypothetical protein|unclassified	0.0131440840
+UniRef50_UPI0004772D62: hypothetical protein	0.0131437943
+UniRef50_UPI0004772D62: hypothetical protein|unclassified	0.0131437943
+UniRef50_UPI000469E22D: hypothetical protein	0.0131339396
+UniRef50_UPI000469E22D: hypothetical protein|unclassified	0.0131339396
+UniRef50_UPI00035F8157: hypothetical protein	0.0131213851
+UniRef50_UPI00035F8157: hypothetical protein|unclassified	0.0131213851
+UniRef50_B9ACY6: Polymorphic outer membrane protein repeat (3 repeats)	0.0131207181
+UniRef50_B9ACY6: Polymorphic outer membrane protein repeat (3 repeats)|unclassified	0.0131207181
+UniRef50_UPI0003C01A10: PREDICTED: mucin-2-like	0.0131180555
+UniRef50_UPI0003C01A10: PREDICTED: mucin-2-like|unclassified	0.0131180555
+UniRef50_UPI00035F0CFF: hypothetical protein	0.0131019276
+UniRef50_UPI00035F0CFF: hypothetical protein|unclassified	0.0131019276
+UniRef50_N0CEJ7	0.0130960065
+UniRef50_N0CEJ7|unclassified	0.0130960065
+UniRef50_Q8SQT7: Elongation factor 2	0.0130862271
+UniRef50_Q8SQT7: Elongation factor 2|unclassified	0.0130862271
+UniRef50_UPI00030E5B7B: hypothetical protein	0.0130811566
+UniRef50_UPI00030E5B7B: hypothetical protein|unclassified	0.0130811566
+UniRef50_UPI000364FA5A: hypothetical protein	0.0130768015
+UniRef50_UPI000364FA5A: hypothetical protein|unclassified	0.0130768015
+UniRef50_A0A024JMF2: Similar to Saccharomyces cerevisiae YHR120W MSH1 DNA-binding protein of the mitochondria involved in repair of mitochondrial DNA	0.0130717734
+UniRef50_A0A024JMF2: Similar to Saccharomyces cerevisiae YHR120W MSH1 DNA-binding protein of the mitochondria involved in repair of mitochondrial DNA|unclassified	0.0130717734
+UniRef50_UPI00047ECEE3: hypothetical protein	0.0130652124
+UniRef50_UPI00047ECEE3: hypothetical protein|unclassified	0.0130652124
+UniRef50_A5ZSL9: YhgE/Pip domain protein	0.0130559719
+UniRef50_A5ZSL9: YhgE/Pip domain protein|unclassified	0.0130559719
+UniRef50_J1ZV65	0.0130507819
+UniRef50_J1ZV65|unclassified	0.0130507819
+UniRef50_UPI00038001A6: hypothetical protein	0.0130499952
+UniRef50_UPI00038001A6: hypothetical protein|unclassified	0.0130499952
+UniRef50_A8NKP1	0.0130406178
+UniRef50_A8NKP1|unclassified	0.0130406178
+UniRef50_P23445: Flagellum-specific ATP synthase	0.0130171075
+UniRef50_P23445: Flagellum-specific ATP synthase|unclassified	0.0130171075
+UniRef50_D3NUN3	0.0129952842
+UniRef50_D3NUN3|unclassified	0.0129952842
+UniRef50_H6QYN6	0.0129870218
+UniRef50_H6QYN6|unclassified	0.0129870218
+UniRef50_UPI00045755E9: PREDICTED: serine/arginine repetitive matrix protein 1-like	0.0129761750
+UniRef50_UPI00045755E9: PREDICTED: serine/arginine repetitive matrix protein 1-like|unclassified	0.0129761750
+UniRef50_UPI00037B601E: hypothetical protein	0.0129644631
+UniRef50_UPI00037B601E: hypothetical protein|unclassified	0.0129644631
+UniRef50_UPI00016C3D5B: multi-sensor hybrid histidine kinase	0.0129529164
+UniRef50_UPI00016C3D5B: multi-sensor hybrid histidine kinase|unclassified	0.0129529164
+UniRef50_K0RES4	0.0129469605
+UniRef50_K0RES4|unclassified	0.0129469605
+UniRef50_A7J7D1	0.0129264520
+UniRef50_A7J7D1|unclassified	0.0129264520
+UniRef50_A8TTI0	0.0129216467
+UniRef50_A8TTI0|unclassified	0.0129216467
+UniRef50_UPI000369BDEC: hypothetical protein	0.0129158234
+UniRef50_UPI000369BDEC: hypothetical protein|unclassified	0.0129158234
+UniRef50_UPI000366C1A8: hypothetical protein	0.0129155536
+UniRef50_UPI000366C1A8: hypothetical protein|unclassified	0.0129155536
+UniRef50_V5B632	0.0129130097
+UniRef50_V5B632|unclassified	0.0129130097
+UniRef50_UPI0002B418DC: PREDICTED: bifunctional glutamate/proline--tRNA ligase-like	0.0129056928
+UniRef50_UPI0002B418DC: PREDICTED: bifunctional glutamate/proline--tRNA ligase-like|unclassified	0.0129056928
+UniRef50_F5T2N6	0.0128995803
+UniRef50_F5T2N6|unclassified	0.0128995803
+UniRef50_G2Y3Z8	0.0128946192
+UniRef50_G2Y3Z8|unclassified	0.0128946192
+UniRef50_A8UW32: UPF0753 protein HG1285_01035	0.0128877163
+UniRef50_A8UW32: UPF0753 protein HG1285_01035|unclassified	0.0128877163
+UniRef50_A9V0E5: Predicted protein	0.0128874539
+UniRef50_A9V0E5: Predicted protein|unclassified	0.0128874539
+UniRef50_UPI0004690011: hypothetical protein	0.0128794474
+UniRef50_UPI0004690011: hypothetical protein|unclassified	0.0128794474
+UniRef50_UPI000382089B: hypothetical protein	0.0128642032
+UniRef50_UPI000382089B: hypothetical protein|unclassified	0.0128642032
+UniRef50_UPI0004549455: PREDICTED: protein diaphanous homolog 2-like isoform X2, partial	0.0128614257
+UniRef50_UPI0004549455: PREDICTED: protein diaphanous homolog 2-like isoform X2, partial|unclassified	0.0128614257
+UniRef50_C3B0M8	0.0128496384
+UniRef50_C3B0M8|unclassified	0.0128496384
+UniRef50_U6G5Y4	0.0128490625
+UniRef50_U6G5Y4|unclassified	0.0128490625
+UniRef50_UPI00036E90DE: hypothetical protein	0.0128489250
+UniRef50_UPI00036E90DE: hypothetical protein|unclassified	0.0128489250
+UniRef50_Q08PT5	0.0128415460
+UniRef50_Q08PT5|unclassified	0.0128415460
+UniRef50_UPI000346E108: diguanylate cyclase	0.0128354775
+UniRef50_UPI000346E108: diguanylate cyclase|unclassified	0.0128354775
+UniRef50_UPI0002FCB472: hypothetical protein	0.0128298566
+UniRef50_UPI0002FCB472: hypothetical protein|unclassified	0.0128298566
+UniRef50_Q8EZT8: Valine--tRNA ligase	0.0128235261
+UniRef50_Q8EZT8: Valine--tRNA ligase|unclassified	0.0128235261
+UniRef50_W6M4Q0: Putative FHA domain containing protein	0.0128205992
+UniRef50_W6M4Q0: Putative FHA domain containing protein|unclassified	0.0128205992
+UniRef50_UPI00034A7DFF: hypothetical protein	0.0128121215
+UniRef50_UPI00034A7DFF: hypothetical protein|unclassified	0.0128121215
+UniRef50_UPI00036E2C46: hypothetical protein, partial	0.0128095364
+UniRef50_UPI00036E2C46: hypothetical protein, partial|unclassified	0.0128095364
+UniRef50_B9NM54: Vcbs repeat domain protein	0.0128076578
+UniRef50_B9NM54: Vcbs repeat domain protein|unclassified	0.0128076578
+UniRef50_UPI00032905EE: PREDICTED: very long-chain specific acyl-CoA dehydrogenase, mitochondrial isoform 1	0.0128035350
+UniRef50_UPI00032905EE: PREDICTED: very long-chain specific acyl-CoA dehydrogenase, mitochondrial isoform 1|unclassified	0.0128035350
+UniRef50_UPI0003607ABA: heavy metal transporter CzcA	0.0128024873
+UniRef50_UPI0003607ABA: heavy metal transporter CzcA|unclassified	0.0128024873
+UniRef50_UPI00036E3E48: hypothetical protein	0.0128007367
+UniRef50_UPI00036E3E48: hypothetical protein|unclassified	0.0128007367
+UniRef50_UPI00022CE1AC	0.0127864489
+UniRef50_UPI00022CE1AC|unclassified	0.0127864489
+UniRef50_D5RTN0	0.0127815616
+UniRef50_D5RTN0|unclassified	0.0127815616
+UniRef50_UPI00031DDA32: hypothetical protein	0.0127743621
+UniRef50_UPI00031DDA32: hypothetical protein|unclassified	0.0127743621
+UniRef50_R6YYK7	0.0127512156
+UniRef50_R6YYK7|unclassified	0.0127512156
+UniRef50_B9QT58	0.0127463797
+UniRef50_B9QT58|unclassified	0.0127463797
+UniRef50_UPI00037DCE93: hypothetical protein	0.0127395368
+UniRef50_UPI00037DCE93: hypothetical protein|unclassified	0.0127395368
+UniRef50_UPI0001744445: ClpA/B family protein	0.0127394791
+UniRef50_UPI0001744445: ClpA/B family protein|unclassified	0.0127394791
+UniRef50_A3TSY0: Hemolysin-type calcium-binding protein	0.0127382620
+UniRef50_A3TSY0: Hemolysin-type calcium-binding protein|unclassified	0.0127382620
+UniRef50_UPI000369B03E: MULTISPECIES: hypothetical protein	0.0127291676
+UniRef50_UPI000369B03E: MULTISPECIES: hypothetical protein|unclassified	0.0127291676
+UniRef50_T5BIS1	0.0127249877
+UniRef50_T5BIS1|unclassified	0.0127249877
+UniRef50_UPI00047C4990: hypothetical protein	0.0127135571
+UniRef50_UPI00047C4990: hypothetical protein|unclassified	0.0127135571
+UniRef50_Q1I680: Putative phage protein	0.0127094718
+UniRef50_Q1I680: Putative phage protein|unclassified	0.0127094718
+UniRef50_V5EBD8	0.0127080463
+UniRef50_V5EBD8|unclassified	0.0127080463
+UniRef50_UPI00047230A9: carbamoyl phosphate synthase large subunit	0.0127023659
+UniRef50_UPI00047230A9: carbamoyl phosphate synthase large subunit|unclassified	0.0127023659
+UniRef50_UPI0002C2E007: PREDICTED: HUA2-like protein 3-like	0.0126971206
+UniRef50_UPI0002C2E007: PREDICTED: HUA2-like protein 3-like|unclassified	0.0126971206
+UniRef50_K0TY28	0.0126876488
+UniRef50_K0TY28|unclassified	0.0126876488
+UniRef50_UPI0003B52ABE: flagellar biosynthesis protein FlhA	0.0126850352
+UniRef50_UPI0003B52ABE: flagellar biosynthesis protein FlhA|unclassified	0.0126850352
+UniRef50_X1YL51	0.0126798475
+UniRef50_X1YL51|unclassified	0.0126798475
+UniRef50_X8JDE1: Response regulator receiver domain protein	0.0126789732
+UniRef50_X8JDE1: Response regulator receiver domain protein|unclassified	0.0126789732
+UniRef50_UPI00036E2801: hypothetical protein	0.0126766281
+UniRef50_UPI00036E2801: hypothetical protein|unclassified	0.0126766281
+UniRef50_A5K315	0.0126706071
+UniRef50_A5K315|unclassified	0.0126706071
+UniRef50_L8GTB7	0.0126630870
+UniRef50_L8GTB7|unclassified	0.0126630870
+UniRef50_UPI0003A1637C: pseudouridine synthase	0.0126587102
+UniRef50_UPI0003A1637C: pseudouridine synthase|unclassified	0.0126587102
+UniRef50_UPI0003F854E8: hypothetical protein	0.0126560848
+UniRef50_UPI0003F854E8: hypothetical protein|unclassified	0.0126560848
+UniRef50_UPI00047D2937: hypothetical protein	0.0126500996
+UniRef50_UPI00047D2937: hypothetical protein|unclassified	0.0126500996
+UniRef50_U6KR29	0.0126494699
+UniRef50_U6KR29|unclassified	0.0126494699
+UniRef50_UPI000360A2C0: hypothetical protein	0.0126479689
+UniRef50_UPI000360A2C0: hypothetical protein|unclassified	0.0126479689
+UniRef50_UPI0004449CBD: SKN1-domain-containing protein	0.0126412929
+UniRef50_UPI0004449CBD: SKN1-domain-containing protein|unclassified	0.0126412929
+UniRef50_UPI00047EF6F7: ABC transporter ATP-binding protein	0.0126394101
+UniRef50_UPI00047EF6F7: ABC transporter ATP-binding protein|unclassified	0.0126394101
+UniRef50_A2FJ20	0.0126300081
+UniRef50_A2FJ20|unclassified	0.0126300081
+UniRef50_A0A026SW65	0.0126144846
+UniRef50_A0A026SW65|unclassified	0.0126144846
+UniRef50_UPI000363E970: MULTISPECIES: hypothetical protein	0.0126128710
+UniRef50_UPI000363E970: MULTISPECIES: hypothetical protein|unclassified	0.0126128710
+UniRef50_G1TTI0	0.0126058600
+UniRef50_G1TTI0|unclassified	0.0126058600
+UniRef50_UPI0003B7235F: chromosome partitioning protein Smc	0.0126009943
+UniRef50_UPI0003B7235F: chromosome partitioning protein Smc|unclassified	0.0126009943
+UniRef50_UPI0004679221: hypothetical protein	0.0125927413
+UniRef50_UPI0004679221: hypothetical protein|unclassified	0.0125927413
+UniRef50_UPI0003B6C95A: isoleucyl-tRNA synthase	0.0125924107
+UniRef50_UPI0003B6C95A: isoleucyl-tRNA synthase|unclassified	0.0125924107
+UniRef50_G7KNW8: Immunoglobulin superfamily DCC subclass member	0.0125905619
+UniRef50_G7KNW8: Immunoglobulin superfamily DCC subclass member|unclassified	0.0125905619
+UniRef50_UPI00037FCE7E: hypothetical protein, partial	0.0125895847
+UniRef50_UPI00037FCE7E: hypothetical protein, partial|unclassified	0.0125895847
+UniRef50_C3JZ89	0.0125880497
+UniRef50_C3JZ89|unclassified	0.0125880497
+UniRef50_R7XBV9: RTX toxin exported protein (Fragment)	0.0125756510
+UniRef50_R7XBV9: RTX toxin exported protein (Fragment)|unclassified	0.0125756510
+UniRef50_UPI0002FD41FC: type IV secretion protein Rhs	0.0125555747
+UniRef50_UPI0002FD41FC: type IV secretion protein Rhs|unclassified	0.0125555747
+UniRef50_F0VIF6	0.0125530983
+UniRef50_F0VIF6|unclassified	0.0125530983
+UniRef50_UPI0002652F6C: PREDICTED: acetyl-coenzyme A synthetase, cytoplasmic-like	0.0125475502
+UniRef50_UPI0002652F6C: PREDICTED: acetyl-coenzyme A synthetase, cytoplasmic-like|unclassified	0.0125475502
+UniRef50_A8U0I4	0.0125427949
+UniRef50_A8U0I4|unclassified	0.0125427949
+UniRef50_UPI00047B007B: 2-oxoglutarate dehydrogenase	0.0125363356
+UniRef50_UPI00047B007B: 2-oxoglutarate dehydrogenase|unclassified	0.0125363356
+UniRef50_B2GEY4: ATP-dependent helicase/nuclease subunit A	0.0125318483
+UniRef50_B2GEY4: ATP-dependent helicase/nuclease subunit A|unclassified	0.0125318483
+UniRef50_Q8KFL5: Isoleucine--tRNA ligase	0.0125311301
+UniRef50_Q8KFL5: Isoleucine--tRNA ligase|unclassified	0.0125311301
+UniRef50_UPI00021968E8: autotransporter	0.0125288885
+UniRef50_UPI00021968E8: autotransporter|unclassified	0.0125288885
+UniRef50_UPI00037028AC: hypothetical protein	0.0125236936
+UniRef50_UPI00037028AC: hypothetical protein|unclassified	0.0125236936
+UniRef50_UPI0002E0B847: hypothetical protein	0.0125207011
+UniRef50_UPI0002E0B847: hypothetical protein|unclassified	0.0125207011
+UniRef50_UPI000411C3F9: hypothetical protein	0.0125177337
+UniRef50_UPI000411C3F9: hypothetical protein|unclassified	0.0125177337
+UniRef50_R5XE02: YhgE/Pip domain protein	0.0125175824
+UniRef50_R5XE02: YhgE/Pip domain protein|unclassified	0.0125175824
+UniRef50_H7F7U9	0.0125129512
+UniRef50_H7F7U9|unclassified	0.0125129512
+UniRef50_UPI00037B4C0C: hypothetical protein	0.0124944815
+UniRef50_UPI00037B4C0C: hypothetical protein|unclassified	0.0124944815
+UniRef50_K1KS97	0.0124941733
+UniRef50_K1KS97|unclassified	0.0124941733
+UniRef50_UPI00027409EB: PREDICTED: keratin, type II cytoskeletal 6C-like	0.0124901843
+UniRef50_UPI00027409EB: PREDICTED: keratin, type II cytoskeletal 6C-like|unclassified	0.0124901843
+UniRef50_UPI0003B4BEBB: hypothetical protein	0.0124872526
+UniRef50_UPI0003B4BEBB: hypothetical protein|unclassified	0.0124872526
+UniRef50_UPI000359C794: PREDICTED: myosin-G heavy chain-like	0.0124807094
+UniRef50_UPI000359C794: PREDICTED: myosin-G heavy chain-like|unclassified	0.0124807094
+UniRef50_Q8A1G1: TonB-dependent receptor SusC	0.0124703005
+UniRef50_Q8A1G1: TonB-dependent receptor SusC|unclassified	0.0124703005
+UniRef50_F0XGU0: Ring finger protein	0.0124702410
+UniRef50_F0XGU0: Ring finger protein|unclassified	0.0124702410
+UniRef50_B1VAM6: DNA-directed RNA polymerase subunit beta	0.0124698428
+UniRef50_B1VAM6: DNA-directed RNA polymerase subunit beta|unclassified	0.0124698428
+UniRef50_UPI00035CEBAE: hypothetical protein	0.0124585922
+UniRef50_UPI00035CEBAE: hypothetical protein|unclassified	0.0124585922
+UniRef50_UPI000470124D: autotransporter adhesin, partial	0.0124568584
+UniRef50_UPI000470124D: autotransporter adhesin, partial|unclassified	0.0124568584
+UniRef50_U2Z2J1	0.0124536232
+UniRef50_U2Z2J1|unclassified	0.0124536232
+UniRef50_UPI000472A374: hypothetical protein	0.0124431647
+UniRef50_UPI000472A374: hypothetical protein|unclassified	0.0124431647
+UniRef50_UPI000344CCE5: hypothetical protein	0.0124401482
+UniRef50_UPI000344CCE5: hypothetical protein|unclassified	0.0124401482
+UniRef50_UPI00035D06F8: hypothetical protein	0.0124172111
+UniRef50_UPI00035D06F8: hypothetical protein|unclassified	0.0124172111
+UniRef50_A0A024SA23	0.0124153232
+UniRef50_A0A024SA23|unclassified	0.0124153232
+UniRef50_UPI000440CA24: PREDICTED: LOW QUALITY PROTEIN: xanthine dehydrogenase/oxidase-like	0.0124067562
+UniRef50_UPI000440CA24: PREDICTED: LOW QUALITY PROTEIN: xanthine dehydrogenase/oxidase-like|unclassified	0.0124067562
+UniRef50_K8FV99: Hemagglutinin/hemolysin-related protein	0.0123962799
+UniRef50_K8FV99: Hemagglutinin/hemolysin-related protein|unclassified	0.0123962799
+UniRef50_UPI00034A8804: hypothetical protein	0.0123807604
+UniRef50_UPI00034A8804: hypothetical protein|unclassified	0.0123807604
+UniRef50_UPI0003730F41: hypothetical protein	0.0123802406
+UniRef50_UPI0003730F41: hypothetical protein|unclassified	0.0123802406
+UniRef50_A0A011R0K8	0.0123769058
+UniRef50_A0A011R0K8|unclassified	0.0123769058
+UniRef50_UPI000378573F: hypothetical protein	0.0123671381
+UniRef50_UPI000378573F: hypothetical protein|unclassified	0.0123671381
+UniRef50_P43154: Microbial collagenase	0.0123633003
+UniRef50_P43154: Microbial collagenase|unclassified	0.0123633003
+UniRef50_K1XMG6	0.0123621328
+UniRef50_K1XMG6|unclassified	0.0123621328
+UniRef50_A9VAJ2: Predicted protein	0.0123536019
+UniRef50_A9VAJ2: Predicted protein|unclassified	0.0123536019
+UniRef50_G0S869: Putative myosin I binding protein	0.0123533812
+UniRef50_G0S869: Putative myosin I binding protein|unclassified	0.0123533812
+UniRef50_Q43900: CarR protein (Fragment)	0.0123459358
+UniRef50_Q43900: CarR protein (Fragment)|unclassified	0.0123459358
+UniRef50_UPI0003597318: PREDICTED: arginine-glutamic acid dipeptide repeats protein-like, partial	0.0123421713
+UniRef50_UPI0003597318: PREDICTED: arginine-glutamic acid dipeptide repeats protein-like, partial|unclassified	0.0123421713
+UniRef50_A0A031IUV4: Phage-related tail fiber protein-like protein	0.0123397811
+UniRef50_A0A031IUV4: Phage-related tail fiber protein-like protein|unclassified	0.0123397811
+UniRef50_UPI0003688726: hypothetical protein	0.0123254313
+UniRef50_UPI0003688726: hypothetical protein|unclassified	0.0123254313
+UniRef50_UPI00046809C2: membrane protein	0.0123211898
+UniRef50_UPI00046809C2: membrane protein|unclassified	0.0123211898
+UniRef50_UPI00037274E3: hypothetical protein	0.0123202027
+UniRef50_UPI00037274E3: hypothetical protein|unclassified	0.0123202027
+UniRef50_A7B8Z2: Cell wall-binding repeat protein	0.0123024713
+UniRef50_A7B8Z2: Cell wall-binding repeat protein|unclassified	0.0123024713
+UniRef50_UPI00035F5072: hypothetical protein	0.0123009395
+UniRef50_UPI00035F5072: hypothetical protein|unclassified	0.0123009395
+UniRef50_UPI00045EC2D1: hypothetical protein	0.0122890575
+UniRef50_UPI00045EC2D1: hypothetical protein|unclassified	0.0122890575
+UniRef50_UPI0004686834: glycoside hydrolase family 13	0.0122864724
+UniRef50_UPI0004686834: glycoside hydrolase family 13|unclassified	0.0122864724
+UniRef50_W8L333	0.0122851982
+UniRef50_W8L333|unclassified	0.0122851982
+UniRef50_E1VKU6	0.0122650022
+UniRef50_E1VKU6|unclassified	0.0122650022
+UniRef50_K5UXP4	0.0122615136
+UniRef50_K5UXP4|unclassified	0.0122615136
+UniRef50_UPI0003796C6A: hypothetical protein	0.0122539732
+UniRef50_UPI0003796C6A: hypothetical protein|unclassified	0.0122539732
+UniRef50_Q04LT6: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase	0.0122433677
+UniRef50_Q04LT6: 5-methyltetrahydropteroyltriglutamate--homocysteine methyltransferase|unclassified	0.0122433677
+UniRef50_UPI0003471108: hypothetical protein	0.0122414217
+UniRef50_UPI0003471108: hypothetical protein|unclassified	0.0122414217
+UniRef50_C1ARD8	0.0122411078
+UniRef50_C1ARD8|unclassified	0.0122411078
+UniRef50_UPI000477B724: transcription-repair coupling factor	0.0122406625
+UniRef50_UPI000477B724: transcription-repair coupling factor|unclassified	0.0122406625
+UniRef50_UPI00042B7FFC: TRNA arginine adenosine deaminase, putative isoform 1	0.0122393363
+UniRef50_UPI00042B7FFC: TRNA arginine adenosine deaminase, putative isoform 1|unclassified	0.0122393363
+UniRef50_Q4PF83: Lysophospholipase NTE1	0.0122165587
+UniRef50_Q4PF83: Lysophospholipase NTE1|unclassified	0.0122165587
+UniRef50_V9VS67: Peptidase	0.0122086923
+UniRef50_V9VS67: Peptidase|unclassified	0.0122086923
+UniRef50_F2UM97	0.0122059056
+UniRef50_F2UM97|unclassified	0.0122059056
+UniRef50_UPI0002193A8A: exopolysaccharide phosphogalactosyltransferase	0.0122022591
+UniRef50_UPI0002193A8A: exopolysaccharide phosphogalactosyltransferase|unclassified	0.0122022591
+UniRef50_U6G0B6	0.0122020056
+UniRef50_U6G0B6|unclassified	0.0122020056
+UniRef50_UPI00036831ED: hypothetical protein	0.0122009061
+UniRef50_UPI00036831ED: hypothetical protein|unclassified	0.0122009061
+UniRef50_UPI000363BE83: hypothetical protein	0.0121983455
+UniRef50_UPI000363BE83: hypothetical protein|unclassified	0.0121983455
+UniRef50_UPI0003B4A46E: hypothetical protein	0.0121976308
+UniRef50_UPI0003B4A46E: hypothetical protein|unclassified	0.0121976308
+UniRef50_U6MU83	0.0121886788
+UniRef50_U6MU83|unclassified	0.0121886788
+UniRef50_A3QMN0: Protein ORF62	0.0121866815
+UniRef50_A3QMN0: Protein ORF62|unclassified	0.0121866815
+UniRef50_UPI000333EDBA: PREDICTED: translation initiation factor IF-2-like	0.0121858263
+UniRef50_UPI000333EDBA: PREDICTED: translation initiation factor IF-2-like|unclassified	0.0121858263
+UniRef50_D9XKT1: Polyunsaturated fatty acid synthase PfaC	0.0121815472
+UniRef50_D9XKT1: Polyunsaturated fatty acid synthase PfaC|unclassified	0.0121815472
+UniRef50_UPI0004413622: P-loop containing nucleoside triphosphate hydrolase protein	0.0121721837
+UniRef50_UPI0004413622: P-loop containing nucleoside triphosphate hydrolase protein|unclassified	0.0121721837
+UniRef50_N4TEP3: Septation protein imp2	0.0121659438
+UniRef50_N4TEP3: Septation protein imp2|unclassified	0.0121659438
+UniRef50_A5FG89: Lon protease	0.0121656926
+UniRef50_A5FG89: Lon protease|unclassified	0.0121656926
+UniRef50_UPI00036CBEFA: CDP-glycerol:glycerophosphate glycerophosphotransferase	0.0121446324
+UniRef50_UPI00036CBEFA: CDP-glycerol:glycerophosphate glycerophosphotransferase|unclassified	0.0121446324
+UniRef50_UPI0004225DED: isoleucine--tRNA ligase	0.0121445291
+UniRef50_UPI0004225DED: isoleucine--tRNA ligase|unclassified	0.0121445291
+UniRef50_Q8RHK0: Lon protease	0.0121434890
+UniRef50_Q8RHK0: Lon protease|unclassified	0.0121434890
+UniRef50_UPI0003634A34: hypothetical protein	0.0121362807
+UniRef50_UPI0003634A34: hypothetical protein|unclassified	0.0121362807
+UniRef50_UPI00047C1EB1: hypothetical protein	0.0121297405
+UniRef50_UPI00047C1EB1: hypothetical protein|unclassified	0.0121297405
+UniRef50_F2UBT6	0.0121277129
+UniRef50_F2UBT6|unclassified	0.0121277129
+UniRef50_Q7V9I9: Valine--tRNA ligase	0.0121174833
+UniRef50_Q7V9I9: Valine--tRNA ligase|unclassified	0.0121174833
+UniRef50_R6V2L6: YhgE/Pip domain protein	0.0121107900
+UniRef50_R6V2L6: YhgE/Pip domain protein|unclassified	0.0121107900
+UniRef50_UPI00042AF1E7: PREDICTED: histone-lysine N-methyltransferase SETD2-like	0.0121070048
+UniRef50_UPI00042AF1E7: PREDICTED: histone-lysine N-methyltransferase SETD2-like|unclassified	0.0121070048
+UniRef50_UPI0003B3003D: type I secretion protein	0.0121023294
+UniRef50_UPI0003B3003D: type I secretion protein|unclassified	0.0121023294
+UniRef50_UPI0003D28C7A: PREDICTED: HUA2-like protein 3-like	0.0121007783
+UniRef50_UPI0003D28C7A: PREDICTED: HUA2-like protein 3-like|unclassified	0.0121007783
+UniRef50_UPI00046E53C7: hypothetical protein	0.0120938409
+UniRef50_UPI00046E53C7: hypothetical protein|unclassified	0.0120938409
+UniRef50_R7TFB5	0.0120937094
+UniRef50_R7TFB5|unclassified	0.0120937094
+UniRef50_X1YL77	0.0120893640
+UniRef50_X1YL77|unclassified	0.0120893640
+UniRef50_R2PFX5	0.0120666765
+UniRef50_R2PFX5|unclassified	0.0120666765
+UniRef50_T5HX48	0.0120509570
+UniRef50_T5HX48|unclassified	0.0120509570
+UniRef50_K2KBP7	0.0120492630
+UniRef50_K2KBP7|unclassified	0.0120492630
+UniRef50_U6JQ37	0.0120467690
+UniRef50_U6JQ37|unclassified	0.0120467690
+UniRef50_F2U351	0.0120430151
+UniRef50_F2U351|unclassified	0.0120430151
+UniRef50_Q3K488	0.0120389879
+UniRef50_Q3K488|unclassified	0.0120389879
+UniRef50_UPI0003B32CE6: multidrug transporter, partial	0.0120374547
+UniRef50_UPI0003B32CE6: multidrug transporter, partial|unclassified	0.0120374547
+UniRef50_UPI0003B370F2: flagellin	0.0120259076
+UniRef50_UPI0003B370F2: flagellin|unclassified	0.0120259076
+UniRef50_UPI000273DED8: PREDICTED: 5-azacytidine-induced protein 1, partial	0.0120128431
+UniRef50_UPI000273DED8: PREDICTED: 5-azacytidine-induced protein 1, partial|unclassified	0.0120128431
+UniRef50_C4RR63: Secreted protein	0.0119790433
+UniRef50_C4RR63: Secreted protein|unclassified	0.0119790433
+UniRef50_UPI000470592A: ribonucleoside reductase class II	0.0119676615
+UniRef50_UPI000470592A: ribonucleoside reductase class II|unclassified	0.0119676615
+UniRef50_UPI0002E62831: hypothetical protein	0.0119670507
+UniRef50_UPI0002E62831: hypothetical protein|unclassified	0.0119670507
+UniRef50_D5EKA9	0.0119653824
+UniRef50_D5EKA9|unclassified	0.0119653824
+UniRef50_UPI00046BF16E: PREDICTED: glycine-rich cell wall structural protein-like	0.0119618762
+UniRef50_UPI00046BF16E: PREDICTED: glycine-rich cell wall structural protein-like|unclassified	0.0119618762
+UniRef50_UPI0003490542: hypothetical protein	0.0119578434
+UniRef50_UPI0003490542: hypothetical protein|unclassified	0.0119578434
+UniRef50_V7KF11	0.0119557995
+UniRef50_V7KF11|unclassified	0.0119557995
+UniRef50_UPI00046351B6: host specificity protein	0.0119295986
+UniRef50_UPI00046351B6: host specificity protein|unclassified	0.0119295986
+UniRef50_UPI000406AFCA: membrane protein	0.0119158491
+UniRef50_UPI000406AFCA: membrane protein|unclassified	0.0119158491
+UniRef50_UPI000359E4E2: PREDICTED: basic proline-rich protein-like	0.0119155650
+UniRef50_UPI000359E4E2: PREDICTED: basic proline-rich protein-like|unclassified	0.0119155650
+UniRef50_R1EKH0	0.0119136423
+UniRef50_R1EKH0|unclassified	0.0119136423
+UniRef50_F0XWX7	0.0119098391
+UniRef50_F0XWX7|unclassified	0.0119098391
+UniRef50_E8X415	0.0118981832
+UniRef50_E8X415|unclassified	0.0118981832
+UniRef50_UPI0004408405: hypothetical protein FOMMEDRAFT_106414	0.0118590521
+UniRef50_UPI0004408405: hypothetical protein FOMMEDRAFT_106414|unclassified	0.0118590521
+UniRef50_UPI00033440EB	0.0118563328
+UniRef50_UPI00033440EB|unclassified	0.0118563328
+UniRef50_B5DNB1: GA23096	0.0118541381
+UniRef50_B5DNB1: GA23096|unclassified	0.0118541381
+UniRef50_D2PYN9	0.0118541307
+UniRef50_D2PYN9|unclassified	0.0118541307
+UniRef50_UPI00035F5AB5: hypothetical protein	0.0118494954
+UniRef50_UPI00035F5AB5: hypothetical protein|unclassified	0.0118494954
+UniRef50_UPI00046CAF28: hypothetical protein	0.0118460007
+UniRef50_UPI00046CAF28: hypothetical protein|unclassified	0.0118460007
+UniRef50_UPI000361DC56: hypothetical protein	0.0118425736
+UniRef50_UPI000361DC56: hypothetical protein|unclassified	0.0118425736
+UniRef50_UPI00042A76BC: leucyl-tRNA synthetase	0.0118341933
+UniRef50_UPI00042A76BC: leucyl-tRNA synthetase|unclassified	0.0118341933
+UniRef50_UPI0002C35558	0.0118005720
+UniRef50_UPI0002C35558|unclassified	0.0118005720
+UniRef50_G4U7X4	0.0117666093
+UniRef50_G4U7X4|unclassified	0.0117666093
+UniRef50_UPI0004720A04: diguanylate cyclase, partial	0.0117350153
+UniRef50_UPI0004720A04: diguanylate cyclase, partial|unclassified	0.0117350153
+UniRef50_UPI00041BD20B: hypothetical protein	0.0117348016
+UniRef50_UPI00041BD20B: hypothetical protein|unclassified	0.0117348016
+UniRef50_UPI00030212D2: hypothetical protein	0.0117301496
+UniRef50_UPI00030212D2: hypothetical protein|unclassified	0.0117301496
+UniRef50_D8KW04: Absent in melanoma 1, 5 prime (Fragment)	0.0117236526
+UniRef50_D8KW04: Absent in melanoma 1, 5 prime (Fragment)|unclassified	0.0117236526
+UniRef50_UPI0003788832: hypothetical protein	0.0117159424
+UniRef50_UPI0003788832: hypothetical protein|unclassified	0.0117159424
+UniRef50_UPI000377D2DD: hypothetical protein	0.0117143008
+UniRef50_UPI000377D2DD: hypothetical protein|unclassified	0.0117143008
+UniRef50_UPI00031F2853: hypothetical protein	0.0116984534
+UniRef50_UPI00031F2853: hypothetical protein|unclassified	0.0116984534
+UniRef50_UPI0002556365: hypothetical protein	0.0116964436
+UniRef50_UPI0002556365: hypothetical protein|unclassified	0.0116964436
+UniRef50_UPI00047DE0AF: hypothetical protein	0.0116860050
+UniRef50_UPI00047DE0AF: hypothetical protein|unclassified	0.0116860050
+UniRef50_D8QU50	0.0116832007
+UniRef50_D8QU50|unclassified	0.0116832007
+UniRef50_G0W291: Membrane-bound lytic murein transglycosylase F	0.0116818097
+UniRef50_G0W291: Membrane-bound lytic murein transglycosylase F|unclassified	0.0116818097
+UniRef50_Q6CCA1: YALI0C11165p	0.0116760412
+UniRef50_Q6CCA1: YALI0C11165p|unclassified	0.0116760412
+UniRef50_UPI000395C5BD	0.0116440428
+UniRef50_UPI000395C5BD|unclassified	0.0116440428
+UniRef50_G8AF41	0.0116399462
+UniRef50_G8AF41|unclassified	0.0116399462
+UniRef50_UPI0003594D3C: PREDICTED: NAD(P) transhydrogenase, mitochondrial-like, partial	0.0116372586
+UniRef50_UPI0003594D3C: PREDICTED: NAD(P) transhydrogenase, mitochondrial-like, partial|unclassified	0.0116372586
+UniRef50_UPI0002B41A80: PREDICTED: LOW QUALITY PROTEIN: protein bassoon	0.0116339141
+UniRef50_UPI0002B41A80: PREDICTED: LOW QUALITY PROTEIN: protein bassoon|unclassified	0.0116339141
+UniRef50_UPI00036ADD81: hypothetical protein	0.0116193411
+UniRef50_UPI00036ADD81: hypothetical protein|unclassified	0.0116193411
+UniRef50_UPI0002D9B998: pyruvate-flavodoxin oxidoreductase	0.0116149504
+UniRef50_UPI0002D9B998: pyruvate-flavodoxin oxidoreductase|unclassified	0.0116149504
+UniRef50_U7PXI1	0.0116020566
+UniRef50_U7PXI1|unclassified	0.0116020566
+UniRef50_UPI0003698C7D: hypothetical protein	0.0115968825
+UniRef50_UPI0003698C7D: hypothetical protein|unclassified	0.0115968825
+UniRef50_Q3JLT5	0.0115958874
+UniRef50_Q3JLT5|unclassified	0.0115958874
+UniRef50_M1MJ19: Activator of (R)-2-hydroxyglutaryl-CoA dehydratase HgdC	0.0115846990
+UniRef50_M1MJ19: Activator of (R)-2-hydroxyglutaryl-CoA dehydratase HgdC|unclassified	0.0115846990
+UniRef50_Q2GUA3	0.0115799785
+UniRef50_Q2GUA3|unclassified	0.0115799785
+UniRef50_UPI000365D546: hypothetical protein	0.0115579070
+UniRef50_UPI000365D546: hypothetical protein|unclassified	0.0115579070
+UniRef50_A0A058Z2Y8	0.0115493601
+UniRef50_A0A058Z2Y8|unclassified	0.0115493601
+UniRef50_UPI00047DA292: hypothetical protein	0.0115455817
+UniRef50_UPI00047DA292: hypothetical protein|unclassified	0.0115455817
+UniRef50_U1TBL5	0.0115399453
+UniRef50_U1TBL5|unclassified	0.0115399453
+UniRef50_Q21926: Isoleucine--tRNA ligase, cytoplasmic	0.0115272005
+UniRef50_Q21926: Isoleucine--tRNA ligase, cytoplasmic|unclassified	0.0115272005
+UniRef50_UPI00047ECB6C: hypothetical protein	0.0115178730
+UniRef50_UPI00047ECB6C: hypothetical protein|unclassified	0.0115178730
+UniRef50_UPI0003314D25: PREDICTED: inverted formin-2-like	0.0115176699
+UniRef50_UPI0003314D25: PREDICTED: inverted formin-2-like|unclassified	0.0115176699
+UniRef50_UPI0003720EFE: hypothetical protein	0.0115131040
+UniRef50_UPI0003720EFE: hypothetical protein|unclassified	0.0115131040
+UniRef50_UPI0003B5D96D: isoleucyl-tRNA synthase	0.0114994070
+UniRef50_UPI0003B5D96D: isoleucyl-tRNA synthase|unclassified	0.0114994070
+UniRef50_UPI00046DEE74: hypothetical protein	0.0114992243
+UniRef50_UPI00046DEE74: hypothetical protein|unclassified	0.0114992243
+UniRef50_B9TG64	0.0114917530
+UniRef50_B9TG64|unclassified	0.0114917530
+UniRef50_E1ZD54	0.0114911466
+UniRef50_E1ZD54|unclassified	0.0114911466
+UniRef50_UPI0003F0C6AE: PREDICTED: 60 kDa heat shock protein, mitochondrial-like, partial	0.0114892947
+UniRef50_UPI0003F0C6AE: PREDICTED: 60 kDa heat shock protein, mitochondrial-like, partial|unclassified	0.0114892947
+UniRef50_J0TZJ1	0.0114855089
+UniRef50_J0TZJ1|unclassified	0.0114855089
+UniRef50_UPI0003B4715F: hypothetical protein	0.0114804022
+UniRef50_UPI0003B4715F: hypothetical protein|unclassified	0.0114804022
+UniRef50_L8H7N1	0.0114607557
+UniRef50_L8H7N1|unclassified	0.0114607557
+UniRef50_UPI00045462D9: PREDICTED: LOW QUALITY PROTEIN: serine/arginine repetitive matrix protein 4 isoform X2	0.0114590532
+UniRef50_UPI00045462D9: PREDICTED: LOW QUALITY PROTEIN: serine/arginine repetitive matrix protein 4 isoform X2|unclassified	0.0114590532
+UniRef50_E1ZMI1	0.0114546078
+UniRef50_E1ZMI1|unclassified	0.0114546078
+UniRef50_X6NEQ7	0.0114528138
+UniRef50_X6NEQ7|unclassified	0.0114528138
+UniRef50_G7ZFI3: Putative type VI secretion protein, FHA domain-containing	0.0114505017
+UniRef50_G7ZFI3: Putative type VI secretion protein, FHA domain-containing|unclassified	0.0114505017
+UniRef50_Q26255: Trifunctional purine biosynthetic protein adenosine-3	0.0114446892
+UniRef50_Q26255: Trifunctional purine biosynthetic protein adenosine-3|unclassified	0.0114446892
+UniRef50_P52780: Glutamine--tRNA ligase	0.0114333682
+UniRef50_P52780: Glutamine--tRNA ligase|unclassified	0.0114333682
+UniRef50_UPI0003B39CF5: diguanylate phosphodiesterase	0.0114299739
+UniRef50_UPI0003B39CF5: diguanylate phosphodiesterase|unclassified	0.0114299739
+UniRef50_UPI0002BC838E: PREDICTED: phosphoribosylaminoimidazole carboxylase, chloroplastic-like, partial	0.0114279480
+UniRef50_UPI0002BC838E: PREDICTED: phosphoribosylaminoimidazole carboxylase, chloroplastic-like, partial|unclassified	0.0114279480
+UniRef50_B8IE16: Gene transfer agent (GTA) like protein	0.0114249489
+UniRef50_B8IE16: Gene transfer agent (GTA) like protein|unclassified	0.0114249489
+UniRef50_B0UJ15: Gene transfer agent (GTA) like protein	0.0114230787
+UniRef50_B0UJ15: Gene transfer agent (GTA) like protein|unclassified	0.0114230787
+UniRef50_F0J0R1	0.0114136672
+UniRef50_F0J0R1|unclassified	0.0114136672
+UniRef50_Q0FN10	0.0114136239
+UniRef50_Q0FN10|unclassified	0.0114136239
+UniRef50_UPI00046CFDF2: hypothetical protein	0.0114066478
+UniRef50_UPI00046CFDF2: hypothetical protein|unclassified	0.0114066478
+UniRef50_Q54VU4: Probable serine/threonine-protein kinase DDB_G0280133	0.0114005750
+UniRef50_Q54VU4: Probable serine/threonine-protein kinase DDB_G0280133|unclassified	0.0114005750
+UniRef50_UPI0003C12BE2	0.0113914913
+UniRef50_UPI0003C12BE2|unclassified	0.0113914913
+UniRef50_D6EJW5: Predicted protein	0.0113905335
+UniRef50_D6EJW5: Predicted protein|unclassified	0.0113905335
+UniRef50_J9PA60	0.0113829253
+UniRef50_J9PA60|unclassified	0.0113829253
+UniRef50_UPI00035C5280: hypothetical protein	0.0113555315
+UniRef50_UPI00035C5280: hypothetical protein|unclassified	0.0113555315
+UniRef50_H6SP82	0.0113517345
+UniRef50_H6SP82|unclassified	0.0113517345
+UniRef50_V4NSH3	0.0113474316
+UniRef50_V4NSH3|unclassified	0.0113474316
+UniRef50_E5WEP6	0.0113461611
+UniRef50_E5WEP6|unclassified	0.0113461611
+UniRef50_G2GCB4	0.0113437932
+UniRef50_G2GCB4|unclassified	0.0113437932
+UniRef50_D7GIB5	0.0113372900
+UniRef50_D7GIB5|unclassified	0.0113372900
+UniRef50_UPI0003AFC48F: PREDICTED: regulator of G-protein signaling 3-like	0.0113358557
+UniRef50_UPI0003AFC48F: PREDICTED: regulator of G-protein signaling 3-like|unclassified	0.0113358557
+UniRef50_T0VJJ1: Multiple sugar ABC transporter,substrate-bindingprotein	0.0113237775
+UniRef50_T0VJJ1: Multiple sugar ABC transporter,substrate-bindingprotein|unclassified	0.0113237775
+UniRef50_UPI000464C9B7: hypothetical protein	0.0113226371
+UniRef50_UPI000464C9B7: hypothetical protein|unclassified	0.0113226371
+UniRef50_UPI000477EBC3: hypothetical protein	0.0113089864
+UniRef50_UPI000477EBC3: hypothetical protein|unclassified	0.0113089864
+UniRef50_UPI00040D5ECC: lysophospholipase	0.0113021808
+UniRef50_UPI00040D5ECC: lysophospholipase|unclassified	0.0113021808
+UniRef50_D7MN44	0.0112975540
+UniRef50_D7MN44|unclassified	0.0112975540
+UniRef50_Q6CEK4: YALI0B14971p	0.0112958792
+UniRef50_Q6CEK4: YALI0B14971p|unclassified	0.0112958792
+UniRef50_A0A023NZ41	0.0112955910
+UniRef50_A0A023NZ41|unclassified	0.0112955910
+UniRef50_R3WI75	0.0112915247
+UniRef50_R3WI75|unclassified	0.0112915247
+UniRef50_U6MSL1	0.0112804964
+UniRef50_U6MSL1|unclassified	0.0112804964
+UniRef50_UPI0001E2F063: serine protease precursor	0.0112766210
+UniRef50_UPI0001E2F063: serine protease precursor|unclassified	0.0112766210
+UniRef50_D6PEV3	0.0112621679
+UniRef50_D6PEV3|unclassified	0.0112621679
+UniRef50_J3M237	0.0112605250
+UniRef50_J3M237|unclassified	0.0112605250
+UniRef50_UPI000023D2B8: hypothetical protein FG07361.1	0.0112546090
+UniRef50_UPI000023D2B8: hypothetical protein FG07361.1|unclassified	0.0112546090
+UniRef50_UPI000477E509: hypothetical protein	0.0112507441
+UniRef50_UPI000477E509: hypothetical protein|unclassified	0.0112507441
+UniRef50_A3UG89	0.0112471173
+UniRef50_A3UG89|unclassified	0.0112471173
+UniRef50_A0Z706	0.0112415541
+UniRef50_A0Z706|unclassified	0.0112415541
+UniRef50_V4ZFQ7	0.0112361835
+UniRef50_V4ZFQ7|unclassified	0.0112361835
+UniRef50_K1PTP2: Cell surface glycoprotein 1	0.0112332951
+UniRef50_K1PTP2: Cell surface glycoprotein 1|unclassified	0.0112332951
+UniRef50_D8U5B8	0.0112289879
+UniRef50_D8U5B8|unclassified	0.0112289879
+UniRef50_A0A058Z4D9	0.0112254585
+UniRef50_A0A058Z4D9|unclassified	0.0112254585
+UniRef50_C4XKH1	0.0112176459
+UniRef50_C4XKH1|unclassified	0.0112176459
+UniRef50_UPI000333D3E1: PREDICTED: acetylcholinesterase collagenic tail peptide	0.0112172504
+UniRef50_UPI000333D3E1: PREDICTED: acetylcholinesterase collagenic tail peptide|unclassified	0.0112172504
+UniRef50_R1CKY7	0.0111957808
+UniRef50_R1CKY7|unclassified	0.0111957808
+UniRef50_UPI0003B71B58: GNAT family acetyltransferase	0.0111855306
+UniRef50_UPI0003B71B58: GNAT family acetyltransferase|unclassified	0.0111855306
+UniRef50_N9WDQ2	0.0111838129
+UniRef50_N9WDQ2|unclassified	0.0111838129
+UniRef50_UPI0003F093A2: PREDICTED: E3 ubiquitin-protein ligase RBBP6-like	0.0111780995
+UniRef50_UPI0003F093A2: PREDICTED: E3 ubiquitin-protein ligase RBBP6-like|unclassified	0.0111780995
+UniRef50_UPI00047897DA: xanthine permease	0.0111637246
+UniRef50_UPI00047897DA: xanthine permease|unclassified	0.0111637246
+UniRef50_UPI0002C58260	0.0111493253
+UniRef50_UPI0002C58260|unclassified	0.0111493253
+UniRef50_Q2GD91: DNA-directed RNA polymerase subunit beta'	0.0111434797
+UniRef50_Q2GD91: DNA-directed RNA polymerase subunit beta'|unclassified	0.0111434797
+UniRef50_O53553	0.0111426939
+UniRef50_O53553|unclassified	0.0111426939
+UniRef50_UPI000382FC56: hypothetical protein	0.0111319935
+UniRef50_UPI000382FC56: hypothetical protein|unclassified	0.0111319935
+UniRef50_UPI00037B244B: hypothetical protein	0.0111192343
+UniRef50_UPI00037B244B: hypothetical protein|unclassified	0.0111192343
+UniRef50_U6IVI3: Collagen type XI alpha 2	0.0111160808
+UniRef50_U6IVI3: Collagen type XI alpha 2|unclassified	0.0111160808
+UniRef50_C5E0B1: ZYRO0G11242p	0.0111068073
+UniRef50_C5E0B1: ZYRO0G11242p|unclassified	0.0111068073
+UniRef50_J0LG73	0.0111004676
+UniRef50_J0LG73|unclassified	0.0111004676
+UniRef50_UPI00042B629D: ABI3, putative isoform 1	0.0110852399
+UniRef50_UPI00042B629D: ABI3, putative isoform 1|unclassified	0.0110852399
+UniRef50_X0QL07: Putative non-ribosomal peptide synthetase (Fragment)	0.0110850211
+UniRef50_X0QL07: Putative non-ribosomal peptide synthetase (Fragment)|unclassified	0.0110850211
+UniRef50_M1VE96	0.0110718113
+UniRef50_M1VE96|unclassified	0.0110718113
+UniRef50_W0A2U1: Structural toxin protein RtxA	0.0110643515
+UniRef50_W0A2U1: Structural toxin protein RtxA|unclassified	0.0110643515
+UniRef50_UPI000258DCCB	0.0110532724
+UniRef50_UPI000258DCCB|unclassified	0.0110532724
+UniRef50_H0DGU0: SdrH family protein	0.0110473485
+UniRef50_H0DGU0: SdrH family protein|unclassified	0.0110473485
+UniRef50_A9D2Z6: Gene transfer agent (GTA) like protein	0.0110466798
+UniRef50_A9D2Z6: Gene transfer agent (GTA) like protein|unclassified	0.0110466798
+UniRef50_UPI00046291AE: PREDICTED: von Willebrand factor C and EGF domain-containing protein isoform X4	0.0110304366
+UniRef50_UPI00046291AE: PREDICTED: von Willebrand factor C and EGF domain-containing protein isoform X4|unclassified	0.0110304366
+UniRef50_A1XF85: Foot protein-4 variant-2	0.0110064030
+UniRef50_A1XF85: Foot protein-4 variant-2|unclassified	0.0110064030
+UniRef50_UPI00047094BE: hypothetical protein	0.0109997676
+UniRef50_UPI00047094BE: hypothetical protein|unclassified	0.0109997676
+UniRef50_T0LNH5	0.0109951141
+UniRef50_T0LNH5|unclassified	0.0109951141
+UniRef50_D7GQG6: CoA-substrate-specific enzyme activase, putative	0.0109880724
+UniRef50_D7GQG6: CoA-substrate-specific enzyme activase, putative|unclassified	0.0109880724
+UniRef50_UPI00047EA492: hypothetical protein	0.0109827073
+UniRef50_UPI00047EA492: hypothetical protein|unclassified	0.0109827073
+UniRef50_UPI00037C438D: hypothetical protein	0.0109696763
+UniRef50_UPI00037C438D: hypothetical protein|unclassified	0.0109696763
+UniRef50_P40596: Carbamoyltransferase HypF	0.0109621132
+UniRef50_P40596: Carbamoyltransferase HypF|unclassified	0.0109621132
+UniRef50_R5N934: YhgE/Pip domain protein	0.0109618430
+UniRef50_R5N934: YhgE/Pip domain protein|unclassified	0.0109618430
+UniRef50_A4EAB4	0.0109599255
+UniRef50_A4EAB4|unclassified	0.0109599255
+UniRef50_UPI00042AF68B: PREDICTED: zinc finger protein ZIC 5	0.0109584687
+UniRef50_UPI00042AF68B: PREDICTED: zinc finger protein ZIC 5|unclassified	0.0109584687
+UniRef50_U6G5K5	0.0109575194
+UniRef50_U6G5K5|unclassified	0.0109575194
+UniRef50_A0A035VWI5	0.0109555942
+UniRef50_A0A035VWI5|unclassified	0.0109555942
+UniRef50_UPI00037E53E4: hypothetical protein	0.0109532984
+UniRef50_UPI00037E53E4: hypothetical protein|unclassified	0.0109532984
+UniRef50_UPI000427CAFD: hypothetical protein	0.0109504464
+UniRef50_UPI000427CAFD: hypothetical protein|unclassified	0.0109504464
+UniRef50_G1Y380: Major ampullate spidroin 1 MaSp1	0.0109458719
+UniRef50_G1Y380: Major ampullate spidroin 1 MaSp1|unclassified	0.0109458719
+UniRef50_E7KDY4: Muc1p	0.0109401633
+UniRef50_E7KDY4: Muc1p|unclassified	0.0109401633
+UniRef50_UPI00022B70BE: PREDICTED: retinitis pigmentosa 1 homolog (human)-like 1	0.0109344610
+UniRef50_UPI00022B70BE: PREDICTED: retinitis pigmentosa 1 homolog (human)-like 1|unclassified	0.0109344610
+UniRef50_D3CY28	0.0109303064
+UniRef50_D3CY28|unclassified	0.0109303064
+UniRef50_UPI000289252A: selenocysteine-specific translation elongation factor	0.0109221306
+UniRef50_UPI000289252A: selenocysteine-specific translation elongation factor|unclassified	0.0109221306
+UniRef50_UPI00036C7B18: hypothetical protein	0.0109170222
+UniRef50_UPI00036C7B18: hypothetical protein|unclassified	0.0109170222
+UniRef50_M7NDN1: Recombination protein F	0.0109152664
+UniRef50_M7NDN1: Recombination protein F|unclassified	0.0109152664
+UniRef50_B6AM37	0.0109069764
+UniRef50_B6AM37|unclassified	0.0109069764
+UniRef50_UPI000465609F: hypothetical protein	0.0109055207
+UniRef50_UPI000465609F: hypothetical protein|unclassified	0.0109055207
+UniRef50_UPI000455DC93: P-loop containing nucleoside triphosphate hydrolase protein	0.0109049986
+UniRef50_UPI000455DC93: P-loop containing nucleoside triphosphate hydrolase protein|unclassified	0.0109049986
+UniRef50_UPI000368B5C4: hypothetical protein	0.0108897824
+UniRef50_UPI000368B5C4: hypothetical protein|unclassified	0.0108897824
+UniRef50_UPI000258EC48	0.0108888857
+UniRef50_UPI000258EC48|unclassified	0.0108888857
+UniRef50_UPI000329160B: PREDICTED: LOW QUALITY PROTEIN: latent-transforming growth factor beta-binding protein 2	0.0108880857
+UniRef50_UPI000329160B: PREDICTED: LOW QUALITY PROTEIN: latent-transforming growth factor beta-binding protein 2|unclassified	0.0108880857
+UniRef50_C7DBJ9	0.0108836273
+UniRef50_C7DBJ9|unclassified	0.0108836273
+UniRef50_B5YP27: Predicted protein	0.0108835179
+UniRef50_B5YP27: Predicted protein|unclassified	0.0108835179
+UniRef50_G2TMZ9: YhgE/Pip C-terminal domain protein	0.0108763780
+UniRef50_G2TMZ9: YhgE/Pip C-terminal domain protein|unclassified	0.0108763780
+UniRef50_UPI0002484A6E: hemolysin-type calcium-binding protein	0.0108740427
+UniRef50_UPI0002484A6E: hemolysin-type calcium-binding protein|unclassified	0.0108740427
+UniRef50_S8F394	0.0108680767
+UniRef50_S8F394|unclassified	0.0108680767
+UniRef50_UPI00037202CE: hypothetical protein	0.0108623254
+UniRef50_UPI00037202CE: hypothetical protein|unclassified	0.0108623254
+UniRef50_UPI000366728F: hypothetical protein	0.0108598184
+UniRef50_UPI000366728F: hypothetical protein|unclassified	0.0108598184
+UniRef50_UPI000374D2A5: hypothetical protein	0.0108542856
+UniRef50_UPI000374D2A5: hypothetical protein|unclassified	0.0108542856
+UniRef50_UPI00022CA616: PREDICTED: hypothetical protein LOC100740116	0.0108425765
+UniRef50_UPI00022CA616: PREDICTED: hypothetical protein LOC100740116|unclassified	0.0108425765
+UniRef50_G7TIN6: Filamentous hemagglutinin	0.0108366052
+UniRef50_G7TIN6: Filamentous hemagglutinin|unclassified	0.0108366052
+UniRef50_UPI0003B3965F: suppressor for copper-sensitivity B	0.0108313902
+UniRef50_UPI0003B3965F: suppressor for copper-sensitivity B|unclassified	0.0108313902
+UniRef50_D4ZCS2: RTX toxin, putative	0.0108150751
+UniRef50_D4ZCS2: RTX toxin, putative|unclassified	0.0108150751
+UniRef50_UPI00035F3A0C: hypothetical protein	0.0108149660
+UniRef50_UPI00035F3A0C: hypothetical protein|unclassified	0.0108149660
+UniRef50_G5RW92: Putative two-component response regulator and GGDEF family protein YeaJ (Fragment)	0.0108092932
+UniRef50_G5RW92: Putative two-component response regulator and GGDEF family protein YeaJ (Fragment)|unclassified	0.0108092932
+UniRef50_K6QCW0	0.0108088404
+UniRef50_K6QCW0|unclassified	0.0108088404
+UniRef50_T1JH80	0.0107957492
+UniRef50_T1JH80|unclassified	0.0107957492
+UniRef50_UPI000413BF1A: hypothetical protein	0.0107912299
+UniRef50_UPI000413BF1A: hypothetical protein|unclassified	0.0107912299
+UniRef50_R8NJ18	0.0107705780
+UniRef50_R8NJ18|unclassified	0.0107705780
+UniRef50_UPI0002ADB8A9: PREDICTED: LOW QUALITY PROTEIN: multidrug resistance-associated protein 6	0.0107571943
+UniRef50_UPI0002ADB8A9: PREDICTED: LOW QUALITY PROTEIN: multidrug resistance-associated protein 6|unclassified	0.0107571943
+UniRef50_E9G921	0.0107531438
+UniRef50_E9G921|unclassified	0.0107531438
+UniRef50_S3LBZ1	0.0107389786
+UniRef50_S3LBZ1|unclassified	0.0107389786
+UniRef50_UPI0004686C51: hypothetical protein	0.0107381407
+UniRef50_UPI0004686C51: hypothetical protein|unclassified	0.0107381407
+UniRef50_UPI0003FD5688: MULTISPECIES: hypothetical protein	0.0107311205
+UniRef50_UPI0003FD5688: MULTISPECIES: hypothetical protein|unclassified	0.0107311205
+UniRef50_E3J2U0: Transcriptional regulator	0.0107255018
+UniRef50_E3J2U0: Transcriptional regulator|unclassified	0.0107255018
+UniRef50_A9V3A1: Predicted protein	0.0107228442
+UniRef50_A9V3A1: Predicted protein|unclassified	0.0107228442
+UniRef50_UPI00038718E5	0.0107200322
+UniRef50_UPI00038718E5|unclassified	0.0107200322
+UniRef50_O67411: Valine--tRNA ligase	0.0107179901
+UniRef50_O67411: Valine--tRNA ligase|unclassified	0.0107179901
+UniRef50_UPI00046400FC: branched-chain amino acid ABC transporter substrate-binding protein	0.0107173441
+UniRef50_UPI00046400FC: branched-chain amino acid ABC transporter substrate-binding protein|unclassified	0.0107173441
+UniRef50_S6AS82	0.0107065221
+UniRef50_S6AS82|unclassified	0.0107065221
+UniRef50_UPI0003AFD312: PREDICTED: voltage-dependent T-type calcium channel subunit alpha-1H	0.0107050949
+UniRef50_UPI0003AFD312: PREDICTED: voltage-dependent T-type calcium channel subunit alpha-1H|unclassified	0.0107050949
+UniRef50_UPI00035CE6BC: hypothetical protein	0.0106922417
+UniRef50_UPI00035CE6BC: hypothetical protein|unclassified	0.0106922417
+UniRef50_UPI0004649A8D: hypothetical protein	0.0106828310
+UniRef50_UPI0004649A8D: hypothetical protein|unclassified	0.0106828310
+UniRef50_UPI000303EDDC: hypothetical protein	0.0106782392
+UniRef50_UPI000303EDDC: hypothetical protein|unclassified	0.0106782392
+UniRef50_A0A015I920	0.0106760100
+UniRef50_A0A015I920|unclassified	0.0106760100
+UniRef50_UPI00023B23B3	0.0106757507
+UniRef50_UPI00023B23B3|unclassified	0.0106757507
+UniRef50_UPI00036C3E3E: hypothetical protein, partial	0.0106640828
+UniRef50_UPI00036C3E3E: hypothetical protein, partial|unclassified	0.0106640828
+UniRef50_B3PFL8: Rhs family protein	0.0106571464
+UniRef50_B3PFL8: Rhs family protein|unclassified	0.0106571464
+UniRef50_UPI00046A592F: hypothetical protein	0.0106382342
+UniRef50_UPI00046A592F: hypothetical protein|unclassified	0.0106382342
+UniRef50_Q7UNZ2: Isoleucine--tRNA ligase	0.0106267947
+UniRef50_Q7UNZ2: Isoleucine--tRNA ligase|unclassified	0.0106267947
+UniRef50_D5RNF7	0.0106220676
+UniRef50_D5RNF7|unclassified	0.0106220676
+UniRef50_M7WMK4	0.0106121081
+UniRef50_M7WMK4|unclassified	0.0106121081
+UniRef50_UPI000379614D: hypothetical protein	0.0106075141
+UniRef50_UPI000379614D: hypothetical protein|unclassified	0.0106075141
+UniRef50_UPI00037F38F9: hypothetical protein	0.0106004913
+UniRef50_UPI00037F38F9: hypothetical protein|unclassified	0.0106004913
+UniRef50_UPI00037AE395: hypothetical protein	0.0105995370
+UniRef50_UPI00037AE395: hypothetical protein|unclassified	0.0105995370
+UniRef50_UPI00022CAAC7: PREDICTED: competence protein ComM-like	0.0105982572
+UniRef50_UPI00022CAAC7: PREDICTED: competence protein ComM-like|unclassified	0.0105982572
+UniRef50_Q8A9K9: Isoleucine--tRNA ligase	0.0105947082
+UniRef50_Q8A9K9: Isoleucine--tRNA ligase|unclassified	0.0105947082
+UniRef50_A0A017HMU6: Secreted hemolysin-type calcium-binding protein bacteriocin, putative	0.0105885278
+UniRef50_A0A017HMU6: Secreted hemolysin-type calcium-binding protein bacteriocin, putative|unclassified	0.0105885278
+UniRef50_UPI000365508C: hypothetical protein	0.0105774164
+UniRef50_UPI000365508C: hypothetical protein|unclassified	0.0105774164
+UniRef50_UPI00036196C4: hypothetical protein	0.0105740529
+UniRef50_UPI00036196C4: hypothetical protein|unclassified	0.0105740529
+UniRef50_X1Y6V1	0.0105659135
+UniRef50_X1Y6V1|unclassified	0.0105659135
+UniRef50_F6AI47	0.0105574497
+UniRef50_F6AI47|unclassified	0.0105574497
+UniRef50_UPI000467352B: hypothetical protein	0.0105570816
+UniRef50_UPI000467352B: hypothetical protein|unclassified	0.0105570816
+UniRef50_U5H936	0.0105563854
+UniRef50_U5H936|unclassified	0.0105563854
+UniRef50_UPI0000164D05: cytochrome c oxidase, subunit II	0.0105423038
+UniRef50_UPI0000164D05: cytochrome c oxidase, subunit II|unclassified	0.0105423038
+UniRef50_UPI0003474DAF: hypothetical protein	0.0105285140
+UniRef50_UPI0003474DAF: hypothetical protein|unclassified	0.0105285140
+UniRef50_UPI0003064E8E: hypothetical protein	0.0105231154
+UniRef50_UPI0003064E8E: hypothetical protein|unclassified	0.0105231154
+UniRef50_C5FLY1: U-box domain containing protein	0.0104837781
+UniRef50_C5FLY1: U-box domain containing protein|unclassified	0.0104837781
+UniRef50_UPI0004560346: hypothetical protein PFL1_00783	0.0104826353
+UniRef50_UPI0004560346: hypothetical protein PFL1_00783|unclassified	0.0104826353
+UniRef50_UPI0004643843: Apolipoprotein A1/A4/E	0.0104715636
+UniRef50_UPI0004643843: Apolipoprotein A1/A4/E|unclassified	0.0104715636
+UniRef50_UPI00046ADA47: hypothetical protein	0.0104678544
+UniRef50_UPI00046ADA47: hypothetical protein|unclassified	0.0104678544
+UniRef50_U6JYK1	0.0104642846
+UniRef50_U6JYK1|unclassified	0.0104642846
+UniRef50_UPI000441AEF7: PREDICTED: phospho-2-dehydro-3-deoxyheptonate aldolase, tyrosine-inhibited-like	0.0104618055
+UniRef50_UPI000441AEF7: PREDICTED: phospho-2-dehydro-3-deoxyheptonate aldolase, tyrosine-inhibited-like|unclassified	0.0104618055
+UniRef50_UPI000378C1A0: hypothetical protein, partial	0.0104579288
+UniRef50_UPI000378C1A0: hypothetical protein, partial|unclassified	0.0104579288
+UniRef50_X8JGW4: Targeting protein for Xklp2 protein	0.0104528620
+UniRef50_X8JGW4: Targeting protein for Xklp2 protein|unclassified	0.0104528620
+UniRef50_UPI0003F12680: PREDICTED: WD repeat-containing protein 87-like	0.0104485092
+UniRef50_UPI0003F12680: PREDICTED: WD repeat-containing protein 87-like|unclassified	0.0104485092
+UniRef50_H3G1J8	0.0104480987
+UniRef50_H3G1J8|unclassified	0.0104480987
+UniRef50_D7G8U5	0.0104467973
+UniRef50_D7G8U5|unclassified	0.0104467973
+UniRef50_B8CK58: Collagenase	0.0104302363
+UniRef50_B8CK58: Collagenase|unclassified	0.0104302363
+UniRef50_UPI0003725649: hypothetical protein, partial	0.0104165481
+UniRef50_UPI0003725649: hypothetical protein, partial|unclassified	0.0104165481
+UniRef50_U7PG68	0.0104065396
+UniRef50_U7PG68|unclassified	0.0104065396
+UniRef50_UPI000359757B: PREDICTED: protein enabled homolog isoform X1	0.0104036725
+UniRef50_UPI000359757B: PREDICTED: protein enabled homolog isoform X1|unclassified	0.0104036725
+UniRef50_UPI000376C700: hypothetical protein, partial	0.0104030072
+UniRef50_UPI000376C700: hypothetical protein, partial|unclassified	0.0104030072
+UniRef50_A6FZQ4	0.0103952613
+UniRef50_A6FZQ4|unclassified	0.0103952613
+UniRef50_Q095D5	0.0103807949
+UniRef50_Q095D5|unclassified	0.0103807949
+UniRef50_UPI0004749545: hypothetical protein	0.0103724434
+UniRef50_UPI0004749545: hypothetical protein|unclassified	0.0103724434
+UniRef50_Q05755: Glutamate synthase [NADPH] large chain	0.0103635067
+UniRef50_Q05755: Glutamate synthase [NADPH] large chain|unclassified	0.0103635067
+UniRef50_UPI00047BEBBF: excinuclease ABC subunit A	0.0103620461
+UniRef50_UPI00047BEBBF: excinuclease ABC subunit A|unclassified	0.0103620461
+UniRef50_UPI000366EF31: hypothetical protein	0.0103518103
+UniRef50_UPI000366EF31: hypothetical protein|unclassified	0.0103518103
+UniRef50_B9WF68	0.0103473754
+UniRef50_B9WF68|unclassified	0.0103473754
+UniRef50_G3JG37	0.0103444646
+UniRef50_G3JG37|unclassified	0.0103444646
+UniRef50_E3FY93: Fibronectin type III domain protein	0.0103428857
+UniRef50_E3FY93: Fibronectin type III domain protein|unclassified	0.0103428857
+UniRef50_UPI0003A9FB8C: peptidase S74	0.0103428444
+UniRef50_UPI0003A9FB8C: peptidase S74|unclassified	0.0103428444
+UniRef50_D3E4I9: Adhesin-like protein	0.0103405966
+UniRef50_D3E4I9: Adhesin-like protein|unclassified	0.0103405966
+UniRef50_D0D7A4	0.0103318918
+UniRef50_D0D7A4|unclassified	0.0103318918
+UniRef50_UPI0003836BE8	0.0103170179
+UniRef50_UPI0003836BE8|unclassified	0.0103170179
+UniRef50_X8HT49	0.0103167087
+UniRef50_X8HT49|unclassified	0.0103167087
+UniRef50_UPI000350FE04: PREDICTED: seizure 6-like protein	0.0103164015
+UniRef50_UPI000350FE04: PREDICTED: seizure 6-like protein|unclassified	0.0103164015
+UniRef50_B8EMC7	0.0103143863
+UniRef50_B8EMC7|unclassified	0.0103143863
+UniRef50_UPI000376E68D: hypothetical protein	0.0103115146
+UniRef50_UPI000376E68D: hypothetical protein|unclassified	0.0103115146
+UniRef50_J1HZ40: Cadherin-like beta sandwich domain protein	0.0102972695
+UniRef50_J1HZ40: Cadherin-like beta sandwich domain protein|unclassified	0.0102972695
+UniRef50_W6T5K5: Membrane protein	0.0102961618
+UniRef50_W6T5K5: Membrane protein|unclassified	0.0102961618
+UniRef50_H1RVN3: Hemagglutinin-like protein	0.0102900814
+UniRef50_H1RVN3: Hemagglutinin-like protein|unclassified	0.0102900814
+UniRef50_UPI00037BAD1C: hypothetical protein	0.0102804366
+UniRef50_UPI00037BAD1C: hypothetical protein|unclassified	0.0102804366
+UniRef50_K2JE27	0.0102766014
+UniRef50_K2JE27|unclassified	0.0102766014
+UniRef50_W5YAA4	0.0102533585
+UniRef50_W5YAA4|unclassified	0.0102533585
+UniRef50_Q0DG35: Glutamate synthase 2 [NADH], chloroplastic	0.0102510797
+UniRef50_Q0DG35: Glutamate synthase 2 [NADH], chloroplastic|unclassified	0.0102510797
+UniRef50_J2MY50: Rhs element Vgr protein	0.0102476961
+UniRef50_J2MY50: Rhs element Vgr protein|unclassified	0.0102476961
+UniRef50_E8JIH7	0.0102453182
+UniRef50_E8JIH7|unclassified	0.0102453182
+UniRef50_UPI00006CE52E: hypothetical protein TTHERM_00142340	0.0102446134
+UniRef50_UPI00006CE52E: hypothetical protein TTHERM_00142340|unclassified	0.0102446134
+UniRef50_C7LAR4: Phage host specificity protein	0.0102434340
+UniRef50_C7LAR4: Phage host specificity protein|unclassified	0.0102434340
+UniRef50_Q1DE10	0.0102421949
+UniRef50_Q1DE10|unclassified	0.0102421949
+UniRef50_W9R1E6	0.0102335161
+UniRef50_W9R1E6|unclassified	0.0102335161
+UniRef50_UPI0002E6D910: hypothetical protein	0.0102299943
+UniRef50_UPI0002E6D910: hypothetical protein|unclassified	0.0102299943
+UniRef50_UPI0003496919: hypothetical protein	0.0102291472
+UniRef50_UPI0003496919: hypothetical protein|unclassified	0.0102291472
+UniRef50_Q11F32: Amino acid/amide ABC transporter substrate-binding protein, HAAT family	0.0102287547
+UniRef50_Q11F32: Amino acid/amide ABC transporter substrate-binding protein, HAAT family|unclassified	0.0102287547
+UniRef50_A9NEL7: DNA-directed RNA polymerase subunit beta	0.0102073894
+UniRef50_A9NEL7: DNA-directed RNA polymerase subunit beta|unclassified	0.0102073894
+UniRef50_A0A015L8B0	0.0102056544
+UniRef50_A0A015L8B0|unclassified	0.0102056544
+UniRef50_D0LIY3	0.0102053836
+UniRef50_D0LIY3|unclassified	0.0102053836
+UniRef50_UPI00037F7964: hypothetical protein	0.0101937103
+UniRef50_UPI00037F7964: hypothetical protein|unclassified	0.0101937103
+UniRef50_UPI00037331DA: hypothetical protein	0.0101885309
+UniRef50_UPI00037331DA: hypothetical protein|unclassified	0.0101885309
+UniRef50_W6Z4U5	0.0101831312
+UniRef50_W6Z4U5|unclassified	0.0101831312
+UniRef50_UPI000454274A: PREDICTED: bifunctional glutamate/proline--tRNA ligase, partial	0.0101822448
+UniRef50_UPI000454274A: PREDICTED: bifunctional glutamate/proline--tRNA ligase, partial|unclassified	0.0101822448
+UniRef50_UPI00037587F7: hypothetical protein	0.0101698556
+UniRef50_UPI00037587F7: hypothetical protein|unclassified	0.0101698556
+UniRef50_UPI000403C5BD: hypothetical protein	0.0101586530
+UniRef50_UPI000403C5BD: hypothetical protein|unclassified	0.0101586530
+UniRef50_UPI00037EBD36: hypothetical protein	0.0101281772
+UniRef50_UPI00037EBD36: hypothetical protein|unclassified	0.0101281772
+UniRef50_F3Z639	0.0101176778
+UniRef50_F3Z639|unclassified	0.0101176778
+UniRef50_UPI000023E6F1: hypothetical protein FG03809.1	0.0101134933
+UniRef50_UPI000023E6F1: hypothetical protein FG03809.1|unclassified	0.0101134933
+UniRef50_F0J1E2	0.0101113387
+UniRef50_F0J1E2|unclassified	0.0101113387
+UniRef50_U2U9N8	0.0101089450
+UniRef50_U2U9N8|unclassified	0.0101089450
+UniRef50_A0A022MNB4: Polyunsaturated fatty acid synthase PfaC (Fragment)	0.0100965831
+UniRef50_A0A022MNB4: Polyunsaturated fatty acid synthase PfaC (Fragment)|unclassified	0.0100965831
+UniRef50_G4SXJ2	0.0100917075
+UniRef50_G4SXJ2|unclassified	0.0100917075
+UniRef50_UPI0003835728: PREDICTED: collagen alpha-2(I) chain-like	0.0100851197
+UniRef50_UPI0003835728: PREDICTED: collagen alpha-2(I) chain-like|unclassified	0.0100851197
+UniRef50_UPI000462C490: hypothetical protein	0.0100848487
+UniRef50_UPI000462C490: hypothetical protein|unclassified	0.0100848487
+UniRef50_H6SR52: Large exoprotein involved in heme utilization or adhesion	0.0100631350
+UniRef50_H6SR52: Large exoprotein involved in heme utilization or adhesion|unclassified	0.0100631350
+UniRef50_U6M1T5	0.0100552693
+UniRef50_U6M1T5|unclassified	0.0100552693
+UniRef50_UPI000440B646	0.0100304403
+UniRef50_UPI000440B646|unclassified	0.0100304403
+UniRef50_E1Z4K9	0.0100282651
+UniRef50_E1Z4K9|unclassified	0.0100282651
+UniRef50_A1RH43: Mating pair stabilisation TraN	0.0100267354
+UniRef50_A1RH43: Mating pair stabilisation TraN|unclassified	0.0100267354
+UniRef50_D3DYW1: Adhesin-like protein	0.0100169409
+UniRef50_D3DYW1: Adhesin-like protein|unclassified	0.0100169409
+UniRef50_UPI0003B71383: translation elongation factor	0.0100051703
+UniRef50_UPI0003B71383: translation elongation factor|unclassified	0.0100051703
+UniRef50_UPI0003B318EA: hypothetical protein	0.0099999363
+UniRef50_UPI0003B318EA: hypothetical protein|unclassified	0.0099999363
+UniRef50_UPI000378FEFA: hypothetical protein	0.0099977716
+UniRef50_UPI000378FEFA: hypothetical protein|unclassified	0.0099977716
+UniRef50_W9QZ02: F-box-like/WD repeat-containing protein	0.0099920409
+UniRef50_W9QZ02: F-box-like/WD repeat-containing protein|unclassified	0.0099920409
+UniRef50_UPI0003602AFB: hypothetical protein	0.0099842303
+UniRef50_UPI0003602AFB: hypothetical protein|unclassified	0.0099842303
+UniRef50_L8H6A3: Fbox and MORN domain containing protein	0.0099702380
+UniRef50_L8H6A3: Fbox and MORN domain containing protein|unclassified	0.0099702380
+UniRef50_UPI00026578AA: PREDICTED: copper-transporting ATPase 1-like	0.0099689315
+UniRef50_UPI00026578AA: PREDICTED: copper-transporting ATPase 1-like|unclassified	0.0099689315
+UniRef50_H5YG53: N-terminal double-transmembrane domain-containing protein	0.0099654775
+UniRef50_H5YG53: N-terminal double-transmembrane domain-containing protein|unclassified	0.0099654775
+UniRef50_Q0BQU0	0.0099625385
+UniRef50_Q0BQU0|unclassified	0.0099625385
+UniRef50_Q02D08	0.0099523566
+UniRef50_Q02D08|unclassified	0.0099523566
+UniRef50_E0VHF0	0.0099469542
+UniRef50_E0VHF0|unclassified	0.0099469542
+UniRef50_B9JZN3	0.0099404352
+UniRef50_B9JZN3|unclassified	0.0099404352
+UniRef50_M2U9D5	0.0099269646
+UniRef50_M2U9D5|unclassified	0.0099269646
+UniRef50_UPI0002D92AB4: excinuclease ABC subunit A	0.0099197083
+UniRef50_UPI0002D92AB4: excinuclease ABC subunit A|unclassified	0.0099197083
+UniRef50_UPI000476CA1B: hypothetical protein	0.0099069338
+UniRef50_UPI000476CA1B: hypothetical protein|unclassified	0.0099069338
+UniRef50_UPI0002484D08: glycerophosphoryl diester phosphodiesterase	0.0099000213
+UniRef50_UPI0002484D08: glycerophosphoryl diester phosphodiesterase|unclassified	0.0099000213
+UniRef50_UPI0003B5FDE5: PREDICTED: tetratricopeptide repeat protein 40-like	0.0098999952
+UniRef50_UPI0003B5FDE5: PREDICTED: tetratricopeptide repeat protein 40-like|unclassified	0.0098999952
+UniRef50_B8HD15: DNA-directed RNA polymerase subunit beta'	0.0098971883
+UniRef50_B8HD15: DNA-directed RNA polymerase subunit beta'|unclassified	0.0098971883
+UniRef50_B0SAG0: DNA-directed RNA polymerase subunit beta'	0.0098954201
+UniRef50_B0SAG0: DNA-directed RNA polymerase subunit beta'|unclassified	0.0098954201
+UniRef50_Q9JFR9: Phosphoprotein	0.0098942741
+UniRef50_Q9JFR9: Phosphoprotein|unclassified	0.0098942741
+UniRef50_A0A024J6D3: Similar to Saccharomyces cerevisiae YIR006C PAN1 Part of actin cytoskeleton-regulatory complex Pan1p-Sla1p-End3p	0.0098715740
+UniRef50_A0A024J6D3: Similar to Saccharomyces cerevisiae YIR006C PAN1 Part of actin cytoskeleton-regulatory complex Pan1p-Sla1p-End3p|unclassified	0.0098715740
+UniRef50_UPI000194D290: PREDICTED: glutamine--tRNA ligase	0.0098545207
+UniRef50_UPI000194D290: PREDICTED: glutamine--tRNA ligase|unclassified	0.0098545207
+UniRef50_UPI00016BFAFA: hypothetical protein, partial	0.0098449190
+UniRef50_UPI00016BFAFA: hypothetical protein, partial|unclassified	0.0098449190
+UniRef50_F4KUW7	0.0098386392
+UniRef50_F4KUW7|unclassified	0.0098386392
+UniRef50_B9JLA3	0.0098365752
+UniRef50_B9JLA3|unclassified	0.0098365752
+UniRef50_J3NHM7	0.0098360095
+UniRef50_J3NHM7|unclassified	0.0098360095
+UniRef50_U6HKN7: Glutamyl tRNA synthetase cytoplasmic	0.0098337582
+UniRef50_U6HKN7: Glutamyl tRNA synthetase cytoplasmic|unclassified	0.0098337582
+UniRef50_UPI0002C469DD: PREDICTED: bifunctional glutamate/proline--tRNA ligase	0.0098322819
+UniRef50_UPI0002C469DD: PREDICTED: bifunctional glutamate/proline--tRNA ligase|unclassified	0.0098322819
+UniRef50_UPI000382350E: hypothetical protein	0.0098278414
+UniRef50_UPI000382350E: hypothetical protein|unclassified	0.0098278414
+UniRef50_W4JW71	0.0098060664
+UniRef50_W4JW71|unclassified	0.0098060664
+UniRef50_UPI000462329D: hypothetical protein TRAVEDRAFT_23373	0.0097976848
+UniRef50_UPI000462329D: hypothetical protein TRAVEDRAFT_23373|unclassified	0.0097976848
+UniRef50_F8FDJ3	0.0097931848
+UniRef50_F8FDJ3|unclassified	0.0097931848
+UniRef50_W6IAM9: Putative membrane spanning protein	0.0097869581
+UniRef50_W6IAM9: Putative membrane spanning protein|unclassified	0.0097869581
+UniRef50_UPI0002556DB4: outer membrane protein PgaA	0.0097827254
+UniRef50_UPI0002556DB4: outer membrane protein PgaA|unclassified	0.0097827254
+UniRef50_C0LZW6: Cross-beta structure silk protein 1	0.0097777047
+UniRef50_C0LZW6: Cross-beta structure silk protein 1|unclassified	0.0097777047
+UniRef50_Q7NNI4: Gll0427 protein	0.0097759921
+UniRef50_Q7NNI4: Gll0427 protein|unclassified	0.0097759921
+UniRef50_UPI0002C3D833: ATP-dependent RNA helicase DDX50, putative	0.0097676419
+UniRef50_UPI0002C3D833: ATP-dependent RNA helicase DDX50, putative|unclassified	0.0097676419
+UniRef50_D8U1W2	0.0097651928
+UniRef50_D8U1W2|unclassified	0.0097651928
+UniRef50_G9QKD4	0.0097606031
+UniRef50_G9QKD4|unclassified	0.0097606031
+UniRef50_B1GZ76: DNA-directed RNA polymerase subunit beta'	0.0097527610
+UniRef50_B1GZ76: DNA-directed RNA polymerase subunit beta'|unclassified	0.0097527610
+UniRef50_M5A1G3	0.0097373857
+UniRef50_M5A1G3|unclassified	0.0097373857
+UniRef50_A0A058Z774	0.0097158473
+UniRef50_A0A058Z774|unclassified	0.0097158473
+UniRef50_C7J210: Os05g0382500 protein (Fragment)	0.0097136484
+UniRef50_C7J210: Os05g0382500 protein (Fragment)|unclassified	0.0097136484
+UniRef50_F2J6G8: Gene transfer agent-like protein	0.0097129968
+UniRef50_F2J6G8: Gene transfer agent-like protein|unclassified	0.0097129968
+UniRef50_UPI0003F0645E: PREDICTED: integrator complex subunit 2-like	0.0097129377
+UniRef50_UPI0003F0645E: PREDICTED: integrator complex subunit 2-like|unclassified	0.0097129377
+UniRef50_UPI000185D8EB: hypothetical protein TGME49_028060	0.0097124917
+UniRef50_UPI000185D8EB: hypothetical protein TGME49_028060|unclassified	0.0097124917
+UniRef50_UPI0002F98998: hypothetical protein	0.0097070184
+UniRef50_UPI0002F98998: hypothetical protein|unclassified	0.0097070184
+UniRef50_L0J4Y6: YVTN family beta-propeller repeat protein	0.0096974359
+UniRef50_L0J4Y6: YVTN family beta-propeller repeat protein|unclassified	0.0096974359
+UniRef50_UPI00046CD486: PREDICTED: zinc finger protein 235-like	0.0096945017
+UniRef50_UPI00046CD486: PREDICTED: zinc finger protein 235-like|unclassified	0.0096945017
+UniRef50_UPI0003829DD9: hypothetical protein	0.0096935175
+UniRef50_UPI0003829DD9: hypothetical protein|unclassified	0.0096935175
+UniRef50_Q6ERD7	0.0096929631
+UniRef50_Q6ERD7|unclassified	0.0096929631
+UniRef50_F0XRV7	0.0096901456
+UniRef50_F0XRV7|unclassified	0.0096901456
+UniRef50_UPI00036A0DBC: hypothetical protein	0.0096877343
+UniRef50_UPI00036A0DBC: hypothetical protein|unclassified	0.0096877343
+UniRef50_UPI00036A7439: hypothetical protein	0.0096842416
+UniRef50_UPI00036A7439: hypothetical protein|unclassified	0.0096842416
+UniRef50_UPI0003670EA7: hypothetical protein	0.0096818241
+UniRef50_UPI0003670EA7: hypothetical protein|unclassified	0.0096818241
+UniRef50_UPI00031B1481: hypothetical protein	0.0096664503
+UniRef50_UPI00031B1481: hypothetical protein|unclassified	0.0096664503
+UniRef50_UPI00030C3B7B: hypothetical protein	0.0096623985
+UniRef50_UPI00030C3B7B: hypothetical protein|unclassified	0.0096623985
+UniRef50_UPI00047C51C0: translation elongation factor	0.0096572801
+UniRef50_UPI00047C51C0: translation elongation factor|unclassified	0.0096572801
+UniRef50_I0Z1H0	0.0096518421
+UniRef50_I0Z1H0|unclassified	0.0096518421
+UniRef50_C9A5E8	0.0096497915
+UniRef50_C9A5E8|unclassified	0.0096497915
+UniRef50_UPI0003ACD8AE: PREDICTED: adenylate kinase 7	0.0096450255
+UniRef50_UPI0003ACD8AE: PREDICTED: adenylate kinase 7|unclassified	0.0096450255
+UniRef50_UPI0002659825: PREDICTED: ATP-binding cassette sub-family A member 1-like	0.0096375719
+UniRef50_UPI0002659825: PREDICTED: ATP-binding cassette sub-family A member 1-like|unclassified	0.0096375719
+UniRef50_W4RPM8: DNA double-strand break repair Rad50 ATPase	0.0096319136
+UniRef50_W4RPM8: DNA double-strand break repair Rad50 ATPase|unclassified	0.0096319136
+UniRef50_K8B7H2	0.0096138271
+UniRef50_K8B7H2|unclassified	0.0096138271
+UniRef50_UPI0002485C8B: stage V sporulation protein K	0.0096001021
+UniRef50_UPI0002485C8B: stage V sporulation protein K|unclassified	0.0096001021
+UniRef50_F0ZJZ6	0.0095997180
+UniRef50_F0ZJZ6|unclassified	0.0095997180
+UniRef50_UPI0003A611B9: hypothetical protein	0.0095986669
+UniRef50_UPI0003A611B9: hypothetical protein|unclassified	0.0095986669
+UniRef50_U3B7L5	0.0095946332
+UniRef50_U3B7L5|unclassified	0.0095946332
+UniRef50_UPI00037A4027: hypothetical protein	0.0095897870
+UniRef50_UPI00037A4027: hypothetical protein|unclassified	0.0095897870
+UniRef50_Q0JKD0: Glutamate synthase 1 [NADH], chloroplastic	0.0095869941
+UniRef50_Q0JKD0: Glutamate synthase 1 [NADH], chloroplastic|unclassified	0.0095869941
+UniRef50_UPI000417B31D: hypothetical protein	0.0095782158
+UniRef50_UPI000417B31D: hypothetical protein|unclassified	0.0095782158
+UniRef50_K6EM35: DEAD/DEAH box helicase	0.0095755628
+UniRef50_K6EM35: DEAD/DEAH box helicase|unclassified	0.0095755628
+UniRef50_W7KFG6	0.0095752076
+UniRef50_W7KFG6|unclassified	0.0095752076
+UniRef50_UPI0003B438A5: branched-chain amino acid ABC transporter substrate-binding protein	0.0095679201
+UniRef50_UPI0003B438A5: branched-chain amino acid ABC transporter substrate-binding protein|unclassified	0.0095679201
+UniRef50_A0A058Z8X6	0.0095523850
+UniRef50_A0A058Z8X6|unclassified	0.0095523850
+UniRef50_U6ING1: Glutamyl tRNA synthetase cytoplasmic	0.0095432153
+UniRef50_U6ING1: Glutamyl tRNA synthetase cytoplasmic|unclassified	0.0095432153
+UniRef50_Q6A8J4	0.0095412735
+UniRef50_Q6A8J4|unclassified	0.0095412735
+UniRef50_L8HCB1	0.0095404011
+UniRef50_L8HCB1|unclassified	0.0095404011
+UniRef50_C1N0N6: Predicted protein	0.0095357540
+UniRef50_C1N0N6: Predicted protein|unclassified	0.0095357540
+UniRef50_B5VJI3	0.0095291438
+UniRef50_B5VJI3|unclassified	0.0095291438
+UniRef50_UPI000373B187: hypothetical protein	0.0095289924
+UniRef50_UPI000373B187: hypothetical protein|unclassified	0.0095289924
+UniRef50_Q8PLI2: Hemagglutinin/hemolysin-related protein	0.0095286590
+UniRef50_Q8PLI2: Hemagglutinin/hemolysin-related protein|unclassified	0.0095286590
+UniRef50_Q0IRA5: Os11g0657400 protein	0.0095230867
+UniRef50_Q0IRA5: Os11g0657400 protein|unclassified	0.0095230867
+UniRef50_UPI00042C6A1E: PREDICTED: immunoglobulin-like and fibronectin type III domain-containing protein 1	0.0095178090
+UniRef50_UPI00042C6A1E: PREDICTED: immunoglobulin-like and fibronectin type III domain-containing protein 1|unclassified	0.0095178090
+UniRef50_UPI000395C828: PREDICTED: basic proline-rich protein-like	0.0095090195
+UniRef50_UPI000395C828: PREDICTED: basic proline-rich protein-like|unclassified	0.0095090195
+UniRef50_H1S6C2: Filamentous hemagglutinin outer membrane protein	0.0095034577
+UniRef50_H1S6C2: Filamentous hemagglutinin outer membrane protein|unclassified	0.0095034577
+UniRef50_S7HSY7	0.0095011285
+UniRef50_S7HSY7|unclassified	0.0095011285
+UniRef50_W5XFT3: General secretion pathway protein G	0.0094832180
+UniRef50_W5XFT3: General secretion pathway protein G|unclassified	0.0094832180
+UniRef50_UPI0003B4739A: membrane protein	0.0094829023
+UniRef50_UPI0003B4739A: membrane protein|unclassified	0.0094829023
+UniRef50_C2GL58: Putative Ig domain protein (Fragment)	0.0094683316
+UniRef50_C2GL58: Putative Ig domain protein (Fragment)|unclassified	0.0094683316
+UniRef50_UPI00024901C4: putative biofilm-associated surface protein	0.0094644831
+UniRef50_UPI00024901C4: putative biofilm-associated surface protein|unclassified	0.0094644831
+UniRef50_UPI00047B7AB7: alpha-ketoglutarate decarboxylase	0.0094639786
+UniRef50_UPI00047B7AB7: alpha-ketoglutarate decarboxylase|unclassified	0.0094639786
+UniRef50_F5H1R7: Protein FLJ22184	0.0094633073
+UniRef50_F5H1R7: Protein FLJ22184|unclassified	0.0094633073
+UniRef50_S5KJ87	0.0094419680
+UniRef50_S5KJ87|unclassified	0.0094419680
+UniRef50_F0VF06	0.0094369515
+UniRef50_F0VF06|unclassified	0.0094369515
+UniRef50_UPI0002379BF3: putative ABC transporter ATP-binding protein	0.0094278449
+UniRef50_UPI0002379BF3: putative ABC transporter ATP-binding protein|unclassified	0.0094278449
+UniRef50_UPI000359AA21	0.0094275760
+UniRef50_UPI000359AA21|unclassified	0.0094275760
+UniRef50_UPI00044157AC: hypothetical protein AURDEDRAFT_182812	0.0094190403
+UniRef50_UPI00044157AC: hypothetical protein AURDEDRAFT_182812|unclassified	0.0094190403
+UniRef50_X0UA33: Marine sediment metagenome DNA, contig: S01H1_S03817 (Fragment)	0.0094169171
+UniRef50_X0UA33: Marine sediment metagenome DNA, contig: S01H1_S03817 (Fragment)|unclassified	0.0094169171
+UniRef50_UPI000470660A: hypothetical protein	0.0094150511
+UniRef50_UPI000470660A: hypothetical protein|unclassified	0.0094150511
+UniRef50_UPI00016C5510: inorganic polyphosphate/ATP-NAD kinase	0.0093915070
+UniRef50_UPI00016C5510: inorganic polyphosphate/ATP-NAD kinase|unclassified	0.0093915070
+UniRef50_U6K980	0.0093818102
+UniRef50_U6K980|unclassified	0.0093818102
+UniRef50_UPI0003C3A0E4: PREDICTED: midasin-like	0.0093720233
+UniRef50_UPI0003C3A0E4: PREDICTED: midasin-like|unclassified	0.0093720233
+UniRef50_Q49775: Methionine synthase	0.0093631157
+UniRef50_Q49775: Methionine synthase|unclassified	0.0093631157
+UniRef50_UPI00046D31EB	0.0093571824
+UniRef50_UPI00046D31EB|unclassified	0.0093571824
+UniRef50_UPI000393D0FC: PREDICTED: formin-2-like	0.0093288959
+UniRef50_UPI000393D0FC: PREDICTED: formin-2-like|unclassified	0.0093288959
+UniRef50_UPI0003625326: hypothetical protein	0.0093188497
+UniRef50_UPI0003625326: hypothetical protein|unclassified	0.0093188497
+UniRef50_U6LM07: Transportin, putative	0.0093159550
+UniRef50_U6LM07: Transportin, putative|unclassified	0.0093159550
+UniRef50_U6JWL6	0.0093117785
+UniRef50_U6JWL6|unclassified	0.0093117785
+UniRef50_A3QTV8: Membrane protein ORF149	0.0093114834
+UniRef50_A3QTV8: Membrane protein ORF149|unclassified	0.0093114834
+UniRef50_UPI000344B8F7: hypothetical protein	0.0093052783
+UniRef50_UPI000344B8F7: hypothetical protein|unclassified	0.0093052783
+UniRef50_S3Y631	0.0093028477
+UniRef50_S3Y631|unclassified	0.0093028477
+UniRef50_Q2NJ15: DNA-directed RNA polymerase subunit beta	0.0092974685
+UniRef50_Q2NJ15: DNA-directed RNA polymerase subunit beta|unclassified	0.0092974685
+UniRef50_F4RU88	0.0092949803
+UniRef50_F4RU88|unclassified	0.0092949803
+UniRef50_W7TT61: Nadh:ubiquinone oxidoreductase complex i intermediate-associated protein 30	0.0092889233
+UniRef50_W7TT61: Nadh:ubiquinone oxidoreductase complex i intermediate-associated protein 30|unclassified	0.0092889233
+UniRef50_R8BZM0: Exosporium leader peptide	0.0092829202
+UniRef50_R8BZM0: Exosporium leader peptide|unclassified	0.0092829202
+UniRef50_UPI00035CD306: hypothetical protein, partial	0.0092709534
+UniRef50_UPI00035CD306: hypothetical protein, partial|unclassified	0.0092709534
+UniRef50_UPI000369E035: hypothetical protein	0.0092687155
+UniRef50_UPI000369E035: hypothetical protein|unclassified	0.0092687155
+UniRef50_UPI0003692DCB: valyl-tRNA synthetase	0.0092681821
+UniRef50_UPI0003692DCB: valyl-tRNA synthetase|unclassified	0.0092681821
+UniRef50_A0A024JLS1: Similar to Saccharomyces cerevisiae YLR106C MDN1 Huge dynein-related AAA-type ATPase (Midasin)	0.0092654192
+UniRef50_A0A024JLS1: Similar to Saccharomyces cerevisiae YLR106C MDN1 Huge dynein-related AAA-type ATPase (Midasin)|unclassified	0.0092654192
+UniRef50_UPI000255F256: hypothetical protein	0.0092642891
+UniRef50_UPI000255F256: hypothetical protein|unclassified	0.0092642891
+UniRef50_D9R218: Mucin 17-like protein	0.0092582301
+UniRef50_D9R218: Mucin 17-like protein|unclassified	0.0092582301
+UniRef50_F2NXX8: CoA-substrate-specific enzyme activase	0.0092448547
+UniRef50_F2NXX8: CoA-substrate-specific enzyme activase|unclassified	0.0092448547
+UniRef50_UPI0001FFEF54: glutamate synthase large subunit	0.0092297806
+UniRef50_UPI0001FFEF54: glutamate synthase large subunit|unclassified	0.0092297806
+UniRef50_UPI000383D415: PREDICTED: transmembrane protease serine 11G isoform X3	0.0092214778
+UniRef50_UPI000383D415: PREDICTED: transmembrane protease serine 11G isoform X3|unclassified	0.0092214778
+UniRef50_W4JZB9	0.0092140957
+UniRef50_W4JZB9|unclassified	0.0092140957
+UniRef50_K1WP49	0.0092128617
+UniRef50_K1WP49|unclassified	0.0092128617
+UniRef50_UPI00021982B8: hypothetical protein, partial	0.0092008294
+UniRef50_UPI00021982B8: hypothetical protein, partial|unclassified	0.0092008294
+UniRef50_S9UZ53	0.0091926465
+UniRef50_S9UZ53|unclassified	0.0091926465
+UniRef50_B9KBJ4: DNA-directed RNA polymerase subunit beta'	0.0091917341
+UniRef50_B9KBJ4: DNA-directed RNA polymerase subunit beta'|unclassified	0.0091917341
+UniRef50_UPI000466FFC4: hypothetical protein	0.0091895133
+UniRef50_UPI000466FFC4: hypothetical protein|unclassified	0.0091895133
+UniRef50_X1YKD9	0.0091760971
+UniRef50_X1YKD9|unclassified	0.0091760971
+UniRef50_Q3JNX0	0.0091720761
+UniRef50_Q3JNX0|unclassified	0.0091720761
+UniRef50_Q9LV03: Glutamate synthase 1 [NADH], chloroplastic	0.0091688349
+UniRef50_Q9LV03: Glutamate synthase 1 [NADH], chloroplastic|unclassified	0.0091688349
+UniRef50_A7IK58: Gene transfer agent (GTA) orfg15, like protein	0.0091599792
+UniRef50_A7IK58: Gene transfer agent (GTA) orfg15, like protein|unclassified	0.0091599792
+UniRef50_UPI0003B32958: hypothetical protein	0.0091555778
+UniRef50_UPI0003B32958: hypothetical protein|unclassified	0.0091555778
+UniRef50_UPI00035962EA: PREDICTED: trifunctional purine biosynthetic protein adenosine-3-like	0.0091540129
+UniRef50_UPI00035962EA: PREDICTED: trifunctional purine biosynthetic protein adenosine-3-like|unclassified	0.0091540129
+UniRef50_B1LYY6	0.0091490105
+UniRef50_B1LYY6|unclassified	0.0091490105
+UniRef50_UPI00035E22E6: hypothetical protein	0.0091043819
+UniRef50_UPI00035E22E6: hypothetical protein|unclassified	0.0091043819
+UniRef50_S2KNI0	0.0090792138
+UniRef50_S2KNI0|unclassified	0.0090792138
+UniRef50_W4K2U9	0.0090757159
+UniRef50_W4K2U9|unclassified	0.0090757159
+UniRef50_G4I6C2	0.0090656372
+UniRef50_G4I6C2|unclassified	0.0090656372
+UniRef50_B9QXK1	0.0090645592
+UniRef50_B9QXK1|unclassified	0.0090645592
+UniRef50_H9KFK6	0.0090578746
+UniRef50_H9KFK6|unclassified	0.0090578746
+UniRef50_UPI0004665453: hypothetical protein	0.0090485532
+UniRef50_UPI0004665453: hypothetical protein|unclassified	0.0090485532
+UniRef50_O07451: Carbamoyltransferase hypF2	0.0090343811
+UniRef50_O07451: Carbamoyltransferase hypF2|unclassified	0.0090343811
+UniRef50_UPI0003724D84: hypothetical protein	0.0090175612
+UniRef50_UPI0003724D84: hypothetical protein|unclassified	0.0090175612
+UniRef50_L9PI82	0.0090152901
+UniRef50_L9PI82|unclassified	0.0090152901
+UniRef50_UPI000395C61A: PREDICTED: methyl-CpG-binding domain protein 4	0.0090068900
+UniRef50_UPI000395C61A: PREDICTED: methyl-CpG-binding domain protein 4|unclassified	0.0090068900
+UniRef50_UPI00047A1A13: hypothetical protein	0.0089927770
+UniRef50_UPI00047A1A13: hypothetical protein|unclassified	0.0089927770
+UniRef50_K1XW15	0.0089917114
+UniRef50_K1XW15|unclassified	0.0089917114
+UniRef50_UPI00037DE56E: hypothetical protein	0.0089902460
+UniRef50_UPI00037DE56E: hypothetical protein|unclassified	0.0089902460
+UniRef50_D2U951: Putative hemagglutinin/hemolysin-related protein	0.0089441456
+UniRef50_D2U951: Putative hemagglutinin/hemolysin-related protein|unclassified	0.0089441456
+UniRef50_K6VMV8	0.0089294163
+UniRef50_K6VMV8|unclassified	0.0089294163
+UniRef50_UPI00032894D3: PREDICTED: collagen alpha-1(VII) chain-like	0.0089293402
+UniRef50_UPI00032894D3: PREDICTED: collagen alpha-1(VII) chain-like|unclassified	0.0089293402
+UniRef50_D6WYG4	0.0089219811
+UniRef50_D6WYG4|unclassified	0.0089219811
+UniRef50_W1BE34	0.0088926155
+UniRef50_W1BE34|unclassified	0.0088926155
+UniRef50_F2AAD6	0.0088917395
+UniRef50_F2AAD6|unclassified	0.0088917395
+UniRef50_R1BL70	0.0088695357
+UniRef50_R1BL70|unclassified	0.0088695357
+UniRef50_A3U2G6	0.0088676471
+UniRef50_A3U2G6|unclassified	0.0088676471
+UniRef50_B8CFE9	0.0088636491
+UniRef50_B8CFE9|unclassified	0.0088636491
+UniRef50_UPI00034D435F: hypothetical protein	0.0088551802
+UniRef50_UPI00034D435F: hypothetical protein|unclassified	0.0088551802
+UniRef50_UPI0003641C87: hypothetical protein	0.0088491271
+UniRef50_UPI0003641C87: hypothetical protein|unclassified	0.0088491271
+UniRef50_UPI000468F4DC: hypothetical protein	0.0088347638
+UniRef50_UPI000468F4DC: hypothetical protein|unclassified	0.0088347638
+UniRef50_H2WUA1	0.0088307216
+UniRef50_H2WUA1|unclassified	0.0088307216
+UniRef50_K6UHV0	0.0088252377
+UniRef50_K6UHV0|unclassified	0.0088252377
+UniRef50_UPI00044443B7: PREDICTED: protein FAM208A	0.0088251465
+UniRef50_UPI00044443B7: PREDICTED: protein FAM208A|unclassified	0.0088251465
+UniRef50_W6W3A3: T1SS repeat-containing protein	0.0088169984
+UniRef50_W6W3A3: T1SS repeat-containing protein|unclassified	0.0088169984
+UniRef50_G6DH23	0.0087981625
+UniRef50_G6DH23|unclassified	0.0087981625
+UniRef50_N4VW50	0.0087958536
+UniRef50_N4VW50|unclassified	0.0087958536
+UniRef50_UPI00036768CC: hypothetical protein	0.0087851297
+UniRef50_UPI00036768CC: hypothetical protein|unclassified	0.0087851297
+UniRef50_D8IRJ3: Hemolysin-adenylate cyclase protein	0.0087693937
+UniRef50_D8IRJ3: Hemolysin-adenylate cyclase protein|unclassified	0.0087693937
+UniRef50_D6TV92: ATPase	0.0087666960
+UniRef50_D6TV92: ATPase|unclassified	0.0087666960
+UniRef50_U6KVH7: Protein phosphatase 2C, putative	0.0087627856
+UniRef50_U6KVH7: Protein phosphatase 2C, putative|unclassified	0.0087627856
+UniRef50_C1E1M2: Predicted protein	0.0087623167
+UniRef50_C1E1M2: Predicted protein|unclassified	0.0087623167
+UniRef50_G0R7G7: Predicted protein	0.0087547607
+UniRef50_G0R7G7: Predicted protein|unclassified	0.0087547607
+UniRef50_UPI0004099807: hypothetical protein	0.0087521033
+UniRef50_UPI0004099807: hypothetical protein|unclassified	0.0087521033
+UniRef50_F0BVA4	0.0087433112
+UniRef50_F0BVA4|unclassified	0.0087433112
+UniRef50_UPI00016C59CA: 5-methyltetrahydrofolate--homocysteine S-methyltransferase	0.0087052604
+UniRef50_UPI00016C59CA: 5-methyltetrahydrofolate--homocysteine S-methyltransferase|unclassified	0.0087052604
+UniRef50_W8A932	0.0087016104
+UniRef50_W8A932|unclassified	0.0087016104
+UniRef50_X6M7B3	0.0087005113
+UniRef50_X6M7B3|unclassified	0.0087005113
+UniRef50_A9IQI4: Putative lipoprotein	0.0086600022
+UniRef50_A9IQI4: Putative lipoprotein|unclassified	0.0086600022
+UniRef50_D8UBN5	0.0086386241
+UniRef50_D8UBN5|unclassified	0.0086386241
+UniRef50_U5WJX6	0.0086110991
+UniRef50_U5WJX6|unclassified	0.0086110991
+UniRef50_A2G8M9: Ankyrin repeat protein, putative	0.0086108781
+UniRef50_A2G8M9: Ankyrin repeat protein, putative|unclassified	0.0086108781
+UniRef50_F0T8H8: Polymorphic outer membrane protein	0.0086058547
+UniRef50_F0T8H8: Polymorphic outer membrane protein|unclassified	0.0086058547
+UniRef50_UPI0004118E6E: hypothetical protein	0.0085881909
+UniRef50_UPI0004118E6E: hypothetical protein|unclassified	0.0085881909
+UniRef50_U6M1N8	0.0085840475
+UniRef50_U6M1N8|unclassified	0.0085840475
+UniRef50_L0Q6W3	0.0085685990
+UniRef50_L0Q6W3|unclassified	0.0085685990
+UniRef50_UPI000465A069: thioester reductase	0.0085643307
+UniRef50_UPI000465A069: thioester reductase|unclassified	0.0085643307
+UniRef50_J2P387: Rhs element Vgr protein	0.0085586107
+UniRef50_J2P387: Rhs element Vgr protein|unclassified	0.0085586107
+UniRef50_UPI00036FDE1D: hypothetical protein	0.0085586086
+UniRef50_UPI00036FDE1D: hypothetical protein|unclassified	0.0085586086
+UniRef50_W1TN75	0.0085584665
+UniRef50_W1TN75|unclassified	0.0085584665
+UniRef50_UPI000325EE5D: hypothetical protein	0.0085532651
+UniRef50_UPI000325EE5D: hypothetical protein|unclassified	0.0085532651
+UniRef50_K2Q3C7	0.0085523602
+UniRef50_K2Q3C7|unclassified	0.0085523602
+UniRef50_V1TWW0: Colanic acid biosynthesis protein	0.0085498797
+UniRef50_V1TWW0: Colanic acid biosynthesis protein|unclassified	0.0085498797
+UniRef50_D6A9U6: Multi-domain beta keto-acyl synthase	0.0085406436
+UniRef50_D6A9U6: Multi-domain beta keto-acyl synthase|unclassified	0.0085406436
+UniRef50_UPI0003705811: hypothetical protein	0.0085254064
+UniRef50_UPI0003705811: hypothetical protein|unclassified	0.0085254064
+UniRef50_U6MCG5	0.0085234433
+UniRef50_U6MCG5|unclassified	0.0085234433
+UniRef50_D7G2C7	0.0085229743
+UniRef50_D7G2C7|unclassified	0.0085229743
+UniRef50_UPI0004560E4C: hypothetical protein PFL1_02416	0.0085134989
+UniRef50_UPI0004560E4C: hypothetical protein PFL1_02416|unclassified	0.0085134989
+UniRef50_F9DXS2	0.0085017520
+UniRef50_F9DXS2|unclassified	0.0085017520
+UniRef50_Q5CWH1	0.0084938924
+UniRef50_Q5CWH1|unclassified	0.0084938924
+UniRef50_D8HGA0	0.0084710019
+UniRef50_D8HGA0|unclassified	0.0084710019
+UniRef50_UPI00035F412E: hypothetical protein	0.0084709743
+UniRef50_UPI00035F412E: hypothetical protein|unclassified	0.0084709743
+UniRef50_UPI0003FA7BF9: high frequency lysogenization protein HflD	0.0084644609
+UniRef50_UPI0003FA7BF9: high frequency lysogenization protein HflD|unclassified	0.0084644609
+UniRef50_UPI00037131BC: MULTISPECIES: hypothetical protein	0.0084538328
+UniRef50_UPI00037131BC: MULTISPECIES: hypothetical protein|unclassified	0.0084538328
+UniRef50_K6W4F6	0.0084529360
+UniRef50_K6W4F6|unclassified	0.0084529360
+UniRef50_L1IH75	0.0084510497
+UniRef50_L1IH75|unclassified	0.0084510497
+UniRef50_UPI0004005367: hypothetical protein	0.0084493119
+UniRef50_UPI0004005367: hypothetical protein|unclassified	0.0084493119
+UniRef50_D3BJZ9	0.0084354912
+UniRef50_D3BJZ9|unclassified	0.0084354912
+UniRef50_W5LPP9	0.0084330264
+UniRef50_W5LPP9|unclassified	0.0084330264
+UniRef50_UPI0002DE78A3: hypothetical protein	0.0084233238
+UniRef50_UPI0002DE78A3: hypothetical protein|unclassified	0.0084233238
+UniRef50_UPI00047C1D3C: thioester reductase	0.0084152990
+UniRef50_UPI00047C1D3C: thioester reductase|unclassified	0.0084152990
+UniRef50_UPI0003B55077: hypothetical protein	0.0084017749
+UniRef50_UPI0003B55077: hypothetical protein|unclassified	0.0084017749
+UniRef50_I5B5T2: 3-hydroxymyristoyl/3-hydroxydecanoyl-(Acyl carrier protein) dehydratase	0.0083840434
+UniRef50_I5B5T2: 3-hydroxymyristoyl/3-hydroxydecanoyl-(Acyl carrier protein) dehydratase|unclassified	0.0083840434
+UniRef50_UPI00037518CF: hypothetical protein	0.0083564383
+UniRef50_UPI00037518CF: hypothetical protein|unclassified	0.0083564383
+UniRef50_UPI000393F27C: PREDICTED: mucin-5AC-like	0.0083500083
+UniRef50_UPI000393F27C: PREDICTED: mucin-5AC-like|unclassified	0.0083500083
+UniRef50_A9B6J1: DNA-directed RNA polymerase subunit beta'	0.0083239544
+UniRef50_A9B6J1: DNA-directed RNA polymerase subunit beta'|unclassified	0.0083239544
+UniRef50_Q6MRX6: DNA-directed RNA polymerase subunit beta	0.0083220918
+UniRef50_Q6MRX6: DNA-directed RNA polymerase subunit beta|unclassified	0.0083220918
+UniRef50_UPI0004710CC9: hypothetical protein	0.0083165513
+UniRef50_UPI0004710CC9: hypothetical protein|unclassified	0.0083165513
+UniRef50_UPI0002F4F600: translation elongation factor	0.0082952195
+UniRef50_UPI0002F4F600: translation elongation factor|unclassified	0.0082952195
+UniRef50_UPI0004409DB6: hypothetical protein STEHIDRAFT_155333	0.0082919106
+UniRef50_UPI0004409DB6: hypothetical protein STEHIDRAFT_155333|unclassified	0.0082919106
+UniRef50_UPI00036B6957: MULTISPECIES: hypothetical protein	0.0082801168
+UniRef50_UPI00036B6957: MULTISPECIES: hypothetical protein|unclassified	0.0082801168
+UniRef50_F8JSP7	0.0082725075
+UniRef50_F8JSP7|unclassified	0.0082725075
+UniRef50_F7UZ41	0.0082656560
+UniRef50_F7UZ41|unclassified	0.0082656560
+UniRef50_V4YQV8: ABC transporter, substrate binding protein, PQQ-dependent alcohol dehydrogenase system	0.0082583141
+UniRef50_V4YQV8: ABC transporter, substrate binding protein, PQQ-dependent alcohol dehydrogenase system|unclassified	0.0082583141
+UniRef50_Q39189: DEAD-box ATP-dependent RNA helicase 7	0.0082557392
+UniRef50_Q39189: DEAD-box ATP-dependent RNA helicase 7|unclassified	0.0082557392
+UniRef50_Q5JIL7: Alanine--tRNA ligase	0.0082544393
+UniRef50_Q5JIL7: Alanine--tRNA ligase|unclassified	0.0082544393
+UniRef50_UPI00037632C6: hypothetical protein	0.0082435470
+UniRef50_UPI00037632C6: hypothetical protein|unclassified	0.0082435470
+UniRef50_UPI000466CF90: nitrate reductase, partial	0.0082364063
+UniRef50_UPI000466CF90: nitrate reductase, partial|unclassified	0.0082364063
+UniRef50_A9V9U8: Predicted protein	0.0082337212
+UniRef50_A9V9U8: Predicted protein|unclassified	0.0082337212
+UniRef50_UPI0003B33BE3: excinuclease ABC subunit A, partial	0.0082224651
+UniRef50_UPI0003B33BE3: excinuclease ABC subunit A, partial|unclassified	0.0082224651
+UniRef50_G8LNH7	0.0082224450
+UniRef50_G8LNH7|unclassified	0.0082224450
+UniRef50_UPI00034F520F: PREDICTED: serine/threonine-protein kinase WNK4	0.0082191384
+UniRef50_UPI00034F520F: PREDICTED: serine/threonine-protein kinase WNK4|unclassified	0.0082191384
+UniRef50_UPI000363B831: hypothetical protein	0.0082146068
+UniRef50_UPI000363B831: hypothetical protein|unclassified	0.0082146068
+UniRef50_G9P0I6	0.0082129242
+UniRef50_G9P0I6|unclassified	0.0082129242
+UniRef50_UPI00046D6223: hypothetical protein	0.0081663133
+UniRef50_UPI00046D6223: hypothetical protein|unclassified	0.0081663133
+UniRef50_UPI000443CAC3: PREDICTED: bifunctional glutamate/proline--tRNA ligase	0.0081643415
+UniRef50_UPI000443CAC3: PREDICTED: bifunctional glutamate/proline--tRNA ligase|unclassified	0.0081643415
+UniRef50_UPI0003597BBC: PREDICTED: E3 ubiquitin-protein ligase RBBP6-like isoform X1	0.0081569668
+UniRef50_UPI0003597BBC: PREDICTED: E3 ubiquitin-protein ligase RBBP6-like isoform X1|unclassified	0.0081569668
+UniRef50_F7TVU4: Putative gramicidin S synthase 2	0.0081466190
+UniRef50_F7TVU4: Putative gramicidin S synthase 2|unclassified	0.0081466190
+UniRef50_UPI0002B8E687: PREDICTED: LOW QUALITY PROTEIN: bifunctional glutamate/proline--tRNA ligase	0.0081448705
+UniRef50_UPI0002B8E687: PREDICTED: LOW QUALITY PROTEIN: bifunctional glutamate/proline--tRNA ligase|unclassified	0.0081448705
+UniRef50_UPI00035D7CEB: hypothetical protein	0.0081443599
+UniRef50_UPI00035D7CEB: hypothetical protein|unclassified	0.0081443599
+UniRef50_UPI000383B6CF: PREDICTED: transmembrane protease serine 11G isoform X2	0.0081423080
+UniRef50_UPI000383B6CF: PREDICTED: transmembrane protease serine 11G isoform X2|unclassified	0.0081423080
+UniRef50_M5D942: Filamentous hemagglutinin	0.0081409209
+UniRef50_M5D942: Filamentous hemagglutinin|unclassified	0.0081409209
+UniRef50_I3J2U6	0.0081357303
+UniRef50_I3J2U6|unclassified	0.0081357303
+UniRef50_UPI00006CF9E8: glutamyl-tRNA synthetase	0.0081316292
+UniRef50_UPI00006CF9E8: glutamyl-tRNA synthetase|unclassified	0.0081316292
+UniRef50_UPI0003B413D7: valyl-tRNA synthetase	0.0081254541
+UniRef50_UPI0003B413D7: valyl-tRNA synthetase|unclassified	0.0081254541
+UniRef50_G7TIM6: Filamentous hemagglutinin	0.0081075746
+UniRef50_G7TIM6: Filamentous hemagglutinin|unclassified	0.0081075746
+UniRef50_Q7T037: E3 ubiquitin-protein ligase RNF12-B	0.0081020952
+UniRef50_Q7T037: E3 ubiquitin-protein ligase RNF12-B|unclassified	0.0081020952
+UniRef50_E0MPK7: Gene transfer agent protein	0.0080828964
+UniRef50_E0MPK7: Gene transfer agent protein|unclassified	0.0080828964
+UniRef50_Q6CWC2: Lysophospholipase NTE1	0.0080786469
+UniRef50_Q6CWC2: Lysophospholipase NTE1|unclassified	0.0080786469
+UniRef50_UPI00046604A3: hypothetical protein	0.0080645556
+UniRef50_UPI00046604A3: hypothetical protein|unclassified	0.0080645556
+UniRef50_R1D5W4	0.0080523784
+UniRef50_R1D5W4|unclassified	0.0080523784
+UniRef50_A0A031HYF4: Cell envelope-like function transcriptional attenuator common domain protein	0.0080456302
+UniRef50_A0A031HYF4: Cell envelope-like function transcriptional attenuator common domain protein|unclassified	0.0080456302
+UniRef50_Q12680: Glutamate synthase [NADH]	0.0080404107
+UniRef50_Q12680: Glutamate synthase [NADH]|unclassified	0.0080404107
+UniRef50_UPI0003692C29: hypothetical protein	0.0080297315
+UniRef50_UPI0003692C29: hypothetical protein|unclassified	0.0080297315
+UniRef50_W5BIZ9	0.0080185466
+UniRef50_W5BIZ9|unclassified	0.0080185466
+UniRef50_F9ZZL1	0.0080175479
+UniRef50_F9ZZL1|unclassified	0.0080175479
+UniRef50_UPI000376476E: hypothetical protein	0.0080171387
+UniRef50_UPI000376476E: hypothetical protein|unclassified	0.0080171387
+UniRef50_UPI0004725351: hypothetical protein	0.0080142701
+UniRef50_UPI0004725351: hypothetical protein|unclassified	0.0080142701
+UniRef50_U5NAP1: Calcium-binding RTX toxin-like protein	0.0079919937
+UniRef50_U5NAP1: Calcium-binding RTX toxin-like protein|unclassified	0.0079919937
+UniRef50_UPI0004541115: PREDICTED: leucine-rich repeat extensin-like protein 5	0.0079918716
+UniRef50_UPI0004541115: PREDICTED: leucine-rich repeat extensin-like protein 5|unclassified	0.0079918716
+UniRef50_D8TK47	0.0079651312
+UniRef50_D8TK47|unclassified	0.0079651312
+UniRef50_S8EPY2	0.0079606258
+UniRef50_S8EPY2|unclassified	0.0079606258
+UniRef50_UPI000367902D: hypothetical protein	0.0079594885
+UniRef50_UPI000367902D: hypothetical protein|unclassified	0.0079594885
+UniRef50_F1PYJ5	0.0079571800
+UniRef50_F1PYJ5|unclassified	0.0079571800
+UniRef50_UPI000380F5C4: hypothetical protein	0.0079487128
+UniRef50_UPI000380F5C4: hypothetical protein|unclassified	0.0079487128
+UniRef50_UPI00047C5855: hypothetical protein	0.0079451027
+UniRef50_UPI00047C5855: hypothetical protein|unclassified	0.0079451027
+UniRef50_U6MH53	0.0079445235
+UniRef50_U6MH53|unclassified	0.0079445235
+UniRef50_UPI0003802BEA: hypothetical protein, partial	0.0079419466
+UniRef50_UPI0003802BEA: hypothetical protein, partial|unclassified	0.0079419466
+UniRef50_UPI00016A72E3: oxidoreductase, 2-nitropropane dioxygenase family protein	0.0079219489
+UniRef50_UPI00016A72E3: oxidoreductase, 2-nitropropane dioxygenase family protein|unclassified	0.0079219489
+UniRef50_UPI000360E221: antiadhesin Pls, partial	0.0079140860
+UniRef50_UPI000360E221: antiadhesin Pls, partial|unclassified	0.0079140860
+UniRef50_UPI0003AD1FFA: hypothetical protein	0.0079094475
+UniRef50_UPI0003AD1FFA: hypothetical protein|unclassified	0.0079094475
+UniRef50_Q3JHW2	0.0079038444
+UniRef50_Q3JHW2|unclassified	0.0079038444
+UniRef50_UPI00037C5C8B: hypothetical protein	0.0078873550
+UniRef50_UPI00037C5C8B: hypothetical protein|unclassified	0.0078873550
+UniRef50_UPI00037C4261: hypothetical protein	0.0078849705
+UniRef50_UPI00037C4261: hypothetical protein|unclassified	0.0078849705
+UniRef50_UPI0000222BCC: Hypothetical protein CBG04553	0.0078784043
+UniRef50_UPI0000222BCC: Hypothetical protein CBG04553|unclassified	0.0078784043
+UniRef50_K0Y1B4: SrfB	0.0078780981
+UniRef50_K0Y1B4: SrfB|unclassified	0.0078780981
+UniRef50_E3LN58	0.0078564386
+UniRef50_E3LN58|unclassified	0.0078564386
+UniRef50_UPI000456105B: hypothetical protein PFL1_03954	0.0078556345
+UniRef50_UPI000456105B: hypothetical protein PFL1_03954|unclassified	0.0078556345
+UniRef50_UPI000262D0AF: flagellin domain-containing protein	0.0078551139
+UniRef50_UPI000262D0AF: flagellin domain-containing protein|unclassified	0.0078551139
+UniRef50_UPI0003A7C9ED: hypothetical protein	0.0078540423
+UniRef50_UPI0003A7C9ED: hypothetical protein|unclassified	0.0078540423
+UniRef50_UPI00036B7282: hypothetical protein	0.0078521107
+UniRef50_UPI00036B7282: hypothetical protein|unclassified	0.0078521107
+UniRef50_W4YNN4	0.0078417538
+UniRef50_W4YNN4|unclassified	0.0078417538
+UniRef50_A9E8P1	0.0078242611
+UniRef50_A9E8P1|unclassified	0.0078242611
+UniRef50_UPI000375A0A8: hypothetical protein	0.0078223058
+UniRef50_UPI000375A0A8: hypothetical protein|unclassified	0.0078223058
+UniRef50_UPI00047406B0: histidine kinase	0.0078167507
+UniRef50_UPI00047406B0: histidine kinase|unclassified	0.0078167507
+UniRef50_G8EY14	0.0078063585
+UniRef50_G8EY14|unclassified	0.0078063585
+UniRef50_E7BHI6	0.0078033948
+UniRef50_E7BHI6|unclassified	0.0078033948
+UniRef50_UPI0003958A44: PREDICTED: mucin-2-like	0.0077952044
+UniRef50_UPI0003958A44: PREDICTED: mucin-2-like|unclassified	0.0077952044
+UniRef50_UPI0002DA4A3A: hypothetical protein	0.0077907888
+UniRef50_UPI0002DA4A3A: hypothetical protein|unclassified	0.0077907888
+UniRef50_UPI0003F78D79: hypothetical protein	0.0077897883
+UniRef50_UPI0003F78D79: hypothetical protein|unclassified	0.0077897883
+UniRef50_UPI0003B7BAA0: cobaltochelatase subunit CobN	0.0077864552
+UniRef50_UPI0003B7BAA0: cobaltochelatase subunit CobN|unclassified	0.0077864552
+UniRef50_G7ZBU5	0.0077636068
+UniRef50_G7ZBU5|unclassified	0.0077636068
+UniRef50_A6GK67	0.0077489297
+UniRef50_A6GK67|unclassified	0.0077489297
+UniRef50_UPI0003DE73F4: PREDICTED: protein PHYLLO, chloroplastic-like isoform X2	0.0077455411
+UniRef50_UPI0003DE73F4: PREDICTED: protein PHYLLO, chloroplastic-like isoform X2|unclassified	0.0077455411
+UniRef50_Q4EFD6	0.0077408511
+UniRef50_Q4EFD6|unclassified	0.0077408511
+UniRef50_A3BK62	0.0077326816
+UniRef50_A3BK62|unclassified	0.0077326816
+UniRef50_UPI0002E94455: hypothetical protein	0.0077243926
+UniRef50_UPI0002E94455: hypothetical protein|unclassified	0.0077243926
+UniRef50_M1BG02	0.0077143348
+UniRef50_M1BG02|unclassified	0.0077143348
+UniRef50_B0SHS4	0.0076953310
+UniRef50_B0SHS4|unclassified	0.0076953310
+UniRef50_UPI0002196085: ATP-dependent exoDNAse beta subunit	0.0076775806
+UniRef50_UPI0002196085: ATP-dependent exoDNAse beta subunit|unclassified	0.0076775806
+UniRef50_UPI0003816203: hypothetical protein	0.0076716844
+UniRef50_UPI0003816203: hypothetical protein|unclassified	0.0076716844
+UniRef50_W5PDS6	0.0076651019
+UniRef50_W5PDS6|unclassified	0.0076651019
+UniRef50_UPI0003B4CE11: glycosyl hydrolase family 20	0.0076603905
+UniRef50_UPI0003B4CE11: glycosyl hydrolase family 20|unclassified	0.0076603905
+UniRef50_UPI00037DFE14: hypothetical protein	0.0076441012
+UniRef50_UPI00037DFE14: hypothetical protein|unclassified	0.0076441012
+UniRef50_UPI0004680DA6: hypothetical protein, partial	0.0076398921
+UniRef50_UPI0004680DA6: hypothetical protein, partial|unclassified	0.0076398921
+UniRef50_F2U2R0	0.0076366859
+UniRef50_F2U2R0|unclassified	0.0076366859
+UniRef50_UPI0003B680A3: hypothetical protein	0.0076205853
+UniRef50_UPI0003B680A3: hypothetical protein|unclassified	0.0076205853
+UniRef50_UPI0003710978: hypothetical protein	0.0076160836
+UniRef50_UPI0003710978: hypothetical protein|unclassified	0.0076160836
+UniRef50_G8JMW5	0.0076103539
+UniRef50_G8JMW5|unclassified	0.0076103539
+UniRef50_X1XW63	0.0076071030
+UniRef50_X1XW63|unclassified	0.0076071030
+UniRef50_U6JYN8	0.0076055996
+UniRef50_U6JYN8|unclassified	0.0076055996
+UniRef50_UPI000422F3ED: selenocysteine-specific elongation factor	0.0076037552
+UniRef50_UPI000422F3ED: selenocysteine-specific elongation factor|unclassified	0.0076037552
+UniRef50_S7PTD9	0.0075960853
+UniRef50_S7PTD9|unclassified	0.0075960853
+UniRef50_A0A021WYZ5	0.0075872711
+UniRef50_A0A021WYZ5|unclassified	0.0075872711
+UniRef50_S6CKM0: CoA-substrate-specific enzyme activase	0.0075853657
+UniRef50_S6CKM0: CoA-substrate-specific enzyme activase|unclassified	0.0075853657
+UniRef50_UPI0002D71EC4: hypothetical protein	0.0075793898
+UniRef50_UPI0002D71EC4: hypothetical protein|unclassified	0.0075793898
+UniRef50_U6GT69: Formin homology 2 domain containing protein, related	0.0075750971
+UniRef50_U6GT69: Formin homology 2 domain containing protein, related|unclassified	0.0075750971
+UniRef50_UPI0004632CA9: hypothetical protein, partial	0.0075696241
+UniRef50_UPI0004632CA9: hypothetical protein, partial|unclassified	0.0075696241
+UniRef50_G8I4A8: Gp126	0.0075628002
+UniRef50_G8I4A8: Gp126|unclassified	0.0075628002
+UniRef50_F8FIU0: Fibronectin type III domain protein	0.0075410905
+UniRef50_F8FIU0: Fibronectin type III domain protein|unclassified	0.0075410905
+UniRef50_A8I3P9	0.0075329977
+UniRef50_A8I3P9|unclassified	0.0075329977
+UniRef50_UPI00029B42A7: hypothetical protein	0.0075281692
+UniRef50_UPI00029B42A7: hypothetical protein|unclassified	0.0075281692
+UniRef50_G7HCJ2	0.0075223383
+UniRef50_G7HCJ2|unclassified	0.0075223383
+UniRef50_Q03D71: ATP-dependent helicase/nuclease subunit A	0.0075069386
+UniRef50_Q03D71: ATP-dependent helicase/nuclease subunit A|unclassified	0.0075069386
+UniRef50_UPI00024923F1: fumarate reductase	0.0075009395
+UniRef50_UPI00024923F1: fumarate reductase|unclassified	0.0075009395
+UniRef50_F7QN06: Flagellar hook-length control protein	0.0074785422
+UniRef50_F7QN06: Flagellar hook-length control protein|unclassified	0.0074785422
+UniRef50_C6HWC8: Glutamate dehydrogenase	0.0074631579
+UniRef50_C6HWC8: Glutamate dehydrogenase|unclassified	0.0074631579
+UniRef50_W7BP47	0.0074501856
+UniRef50_W7BP47|unclassified	0.0074501856
+UniRef50_H2YEG2	0.0074349117
+UniRef50_H2YEG2|unclassified	0.0074349117
+UniRef50_B5EAA9: Repeat-containing protein	0.0074328602
+UniRef50_B5EAA9: Repeat-containing protein|unclassified	0.0074328602
+UniRef50_W0T3C8: EGF-like region	0.0074232235
+UniRef50_W0T3C8: EGF-like region|unclassified	0.0074232235
+UniRef50_B4H4F5: GL18242	0.0074013248
+UniRef50_B4H4F5: GL18242|unclassified	0.0074013248
+UniRef50_U6G2M4	0.0073988837
+UniRef50_U6G2M4|unclassified	0.0073988837
+UniRef50_UPI0002F1891F: hypothetical protein	0.0073946980
+UniRef50_UPI0002F1891F: hypothetical protein|unclassified	0.0073946980
+UniRef50_UPI0004047B0E: hypothetical protein	0.0073944323
+UniRef50_UPI0004047B0E: hypothetical protein|unclassified	0.0073944323
+UniRef50_U6LS41	0.0073929125
+UniRef50_U6LS41|unclassified	0.0073929125
+UniRef50_B2B462: Podospora anserina S mat+ genomic DNA chromosome 2, supercontig 2	0.0073888217
+UniRef50_B2B462: Podospora anserina S mat+ genomic DNA chromosome 2, supercontig 2|unclassified	0.0073888217
+UniRef50_W6N2P4: Phage tail fiber protein	0.0073741647
+UniRef50_W6N2P4: Phage tail fiber protein|unclassified	0.0073741647
+UniRef50_UPI0004644DEE: hypothetical protein	0.0073683854
+UniRef50_UPI0004644DEE: hypothetical protein|unclassified	0.0073683854
+UniRef50_UPI00036D4D66: hypothetical protein, partial	0.0073384906
+UniRef50_UPI00036D4D66: hypothetical protein, partial|unclassified	0.0073384906
+UniRef50_V4QIR5: Glycosyltransferase	0.0073340756
+UniRef50_V4QIR5: Glycosyltransferase|unclassified	0.0073340756
+UniRef50_Q24FW3: MORN motif protein	0.0073316744
+UniRef50_Q24FW3: MORN motif protein|unclassified	0.0073316744
+UniRef50_O14646: Chromodomain-helicase-DNA-binding protein 1	0.0073260271
+UniRef50_O14646: Chromodomain-helicase-DNA-binding protein 1|unclassified	0.0073260271
+UniRef50_F2J3S6: Gene transfer agent (GTA) like protein	0.0073212141
+UniRef50_F2J3S6: Gene transfer agent (GTA) like protein|unclassified	0.0073212141
+UniRef50_U9QSP0	0.0072975303
+UniRef50_U9QSP0|unclassified	0.0072975303
+UniRef50_A0A017T696: VgrG protein	0.0072954296
+UniRef50_A0A017T696: VgrG protein|unclassified	0.0072954296
+UniRef50_UPI0003C1735E: PREDICTED: glutamate synthase 1 [NADH], chloroplastic-like	0.0072576728
+UniRef50_UPI0003C1735E: PREDICTED: glutamate synthase 1 [NADH], chloroplastic-like|unclassified	0.0072576728
+UniRef50_UPI000265856D: PREDICTED: bifunctional glutamate/proline--tRNA ligase-like	0.0072521844
+UniRef50_UPI000265856D: PREDICTED: bifunctional glutamate/proline--tRNA ligase-like|unclassified	0.0072521844
+UniRef50_D3E489: Adhesin-like protein	0.0072249343
+UniRef50_D3E489: Adhesin-like protein|unclassified	0.0072249343
+UniRef50_W6W2Y7: GTA TIM-barrel-like domain containing protein	0.0072078713
+UniRef50_W6W2Y7: GTA TIM-barrel-like domain containing protein|unclassified	0.0072078713
+UniRef50_UPI0004418616: P-loop containing nucleoside triphosphate hydrolase protein	0.0072065254
+UniRef50_UPI0004418616: P-loop containing nucleoside triphosphate hydrolase protein|unclassified	0.0072065254
+UniRef50_UPI0002195C82: putative C protein alpha-antigen	0.0071937767
+UniRef50_UPI0002195C82: putative C protein alpha-antigen|unclassified	0.0071937767
+UniRef50_U6IPY0: Elongation factor Tu GTP binding	0.0071903370
+UniRef50_U6IPY0: Elongation factor Tu GTP binding|unclassified	0.0071903370
+UniRef50_UPI0003EBE66A: PREDICTED: retinitis pigmentosa 1-like 1 protein	0.0071739670
+UniRef50_UPI0003EBE66A: PREDICTED: retinitis pigmentosa 1-like 1 protein|unclassified	0.0071739670
+UniRef50_UPI00034D9920: hypothetical protein	0.0071690542
+UniRef50_UPI00034D9920: hypothetical protein|unclassified	0.0071690542
+UniRef50_UPI0003AD3D4A: hypothetical protein	0.0071657398
+UniRef50_UPI0003AD3D4A: hypothetical protein|unclassified	0.0071657398
+UniRef50_H6NRL1	0.0071566008
+UniRef50_H6NRL1|unclassified	0.0071566008
+UniRef50_UPI00037C3035: hypothetical protein	0.0071541858
+UniRef50_UPI00037C3035: hypothetical protein|unclassified	0.0071541858
+UniRef50_UPI00037832C1: hypothetical protein	0.0071442285
+UniRef50_UPI00037832C1: hypothetical protein|unclassified	0.0071442285
+UniRef50_L5KNJ4: WD repeat-containing protein 87	0.0071442190
+UniRef50_L5KNJ4: WD repeat-containing protein 87|unclassified	0.0071442190
+UniRef50_A0A024JA27: Similar to Saccharomyces cerevisiae YNL271C BNI1 Formin, nucleates the formation of linear actin filaments	0.0071380472
+UniRef50_A0A024JA27: Similar to Saccharomyces cerevisiae YNL271C BNI1 Formin, nucleates the formation of linear actin filaments|unclassified	0.0071380472
+UniRef50_K1YBS2	0.0071306533
+UniRef50_K1YBS2|unclassified	0.0071306533
+UniRef50_UPI00041FAC16: hypothetical protein	0.0071269935
+UniRef50_UPI00041FAC16: hypothetical protein|unclassified	0.0071269935
+UniRef50_UPI0004799CB4: hypothetical protein, partial	0.0071124029
+UniRef50_UPI0004799CB4: hypothetical protein, partial|unclassified	0.0071124029
+UniRef50_J8G6B9: TQXA domain-containing protein	0.0071084881
+UniRef50_J8G6B9: TQXA domain-containing protein|unclassified	0.0071084881
+UniRef50_W2SY01	0.0070941870
+UniRef50_W2SY01|unclassified	0.0070941870
+UniRef50_T0RT77	0.0070908759
+UniRef50_T0RT77|unclassified	0.0070908759
+UniRef50_W8EBH7	0.0070853662
+UniRef50_W8EBH7|unclassified	0.0070853662
+UniRef50_UPI0003037B5D: hypothetical protein	0.0070565087
+UniRef50_UPI0003037B5D: hypothetical protein|unclassified	0.0070565087
+UniRef50_E9B5X1	0.0070228976
+UniRef50_E9B5X1|unclassified	0.0070228976
+UniRef50_UPI00037B6EEA: hypothetical protein	0.0070226946
+UniRef50_UPI00037B6EEA: hypothetical protein|unclassified	0.0070226946
+UniRef50_R7Y0E8	0.0070174072
+UniRef50_R7Y0E8|unclassified	0.0070174072
+UniRef50_F9UIR9: Virulence protein SrfB	0.0070133743
+UniRef50_F9UIR9: Virulence protein SrfB|unclassified	0.0070133743
+UniRef50_W4XRF3	0.0070048185
+UniRef50_W4XRF3|unclassified	0.0070048185
+UniRef50_I2BCA6	0.0069937610
+UniRef50_I2BCA6|unclassified	0.0069937610
+UniRef50_UPI0003826704: hypothetical protein, partial	0.0069725319
+UniRef50_UPI0003826704: hypothetical protein, partial|unclassified	0.0069725319
+UniRef50_UPI00042126FC: hypothetical protein	0.0069642874
+UniRef50_UPI00042126FC: hypothetical protein|unclassified	0.0069642874
+UniRef50_UPI0004646D49: ATP-dependent helicase	0.0069632309
+UniRef50_UPI0004646D49: ATP-dependent helicase|unclassified	0.0069632309
+UniRef50_B4JDR2: GH10507	0.0069539302
+UniRef50_B4JDR2: GH10507|unclassified	0.0069539302
+UniRef50_UPI0003B5A1CC: type I secretion protein	0.0069400667
+UniRef50_UPI0003B5A1CC: type I secretion protein|unclassified	0.0069400667
+UniRef50_S2Y018	0.0069343145
+UniRef50_S2Y018|unclassified	0.0069343145
+UniRef50_F2DJV5: Predicted protein (Fragment)	0.0069334384
+UniRef50_F2DJV5: Predicted protein (Fragment)|unclassified	0.0069334384
+UniRef50_A4ATG0: Hypothetical glycine-rich protein	0.0069318457
+UniRef50_A4ATG0: Hypothetical glycine-rich protein|unclassified	0.0069318457
+UniRef50_UPI00030650F9: hypothetical protein	0.0069009809
+UniRef50_UPI00030650F9: hypothetical protein|unclassified	0.0069009809
+UniRef50_A8IJ31: Predicted protein (Fragment)	0.0068803908
+UniRef50_A8IJ31: Predicted protein (Fragment)|unclassified	0.0068803908
+UniRef50_UPI0003958BDE: endonuclease	0.0068713744
+UniRef50_UPI0003958BDE: endonuclease|unclassified	0.0068713744
+UniRef50_A0YNR6: Putative RTX toxin	0.0068707305
+UniRef50_A0YNR6: Putative RTX toxin|unclassified	0.0068707305
+UniRef50_R5MZ93	0.0068703365
+UniRef50_R5MZ93|unclassified	0.0068703365
+UniRef50_UPI000472033F: hypothetical protein	0.0068626203
+UniRef50_UPI000472033F: hypothetical protein|unclassified	0.0068626203
+UniRef50_K8APY2: Large repetitive protein	0.0068184177
+UniRef50_K8APY2: Large repetitive protein|unclassified	0.0068184177
+UniRef50_U7DHT5: Type IV secretion protein Rhs	0.0068050283
+UniRef50_U7DHT5: Type IV secretion protein Rhs|unclassified	0.0068050283
+UniRef50_UPI00046C2C33: PREDICTED: LOW QUALITY PROTEIN: maltase 2-like	0.0068032680
+UniRef50_UPI00046C2C33: PREDICTED: LOW QUALITY PROTEIN: maltase 2-like|unclassified	0.0068032680
+UniRef50_UPI0004074896: ATP-dependent DNA helicase RecQ	0.0067830874
+UniRef50_UPI0004074896: ATP-dependent DNA helicase RecQ|unclassified	0.0067830874
+UniRef50_K0WJL4	0.0067826320
+UniRef50_K0WJL4|unclassified	0.0067826320
+UniRef50_UPI0003635E67: hypothetical protein	0.0067776213
+UniRef50_UPI0003635E67: hypothetical protein|unclassified	0.0067776213
+UniRef50_U6JVA5	0.0067766231
+UniRef50_U6JVA5|unclassified	0.0067766231
+UniRef50_UPI0003834559: PREDICTED: CDK5 regulatory subunit-associated protein 2	0.0067729316
+UniRef50_UPI0003834559: PREDICTED: CDK5 regulatory subunit-associated protein 2|unclassified	0.0067729316
+UniRef50_UPI0002E1F140: hypothetical protein	0.0067352981
+UniRef50_UPI0002E1F140: hypothetical protein|unclassified	0.0067352981
+UniRef50_UPI0003700CC6: hypothetical protein, partial	0.0067156955
+UniRef50_UPI0003700CC6: hypothetical protein, partial|unclassified	0.0067156955
+UniRef50_F2ABE2	0.0067119646
+UniRef50_F2ABE2|unclassified	0.0067119646
+UniRef50_UPI00047758AB: hypothetical protein	0.0067003018
+UniRef50_UPI00047758AB: hypothetical protein|unclassified	0.0067003018
+UniRef50_UPI00041B42CD: multidrug transporter	0.0066998816
+UniRef50_UPI00041B42CD: multidrug transporter|unclassified	0.0066998816
+UniRef50_B9DR52: MATER protein	0.0066632815
+UniRef50_B9DR52: MATER protein|unclassified	0.0066632815
+UniRef50_UPI00046439ED: hypothetical protein	0.0066599006
+UniRef50_UPI00046439ED: hypothetical protein|unclassified	0.0066599006
+UniRef50_G1ZYB3	0.0066539017
+UniRef50_G1ZYB3|unclassified	0.0066539017
+UniRef50_W4CXI8: Mucin 17-like protein	0.0066457024
+UniRef50_W4CXI8: Mucin 17-like protein|unclassified	0.0066457024
+UniRef50_D7EI37	0.0066130071
+UniRef50_D7EI37|unclassified	0.0066130071
+UniRef50_UPI00016A89EB: Rhs element Vgr protein, putative, partial	0.0065894160
+UniRef50_UPI00016A89EB: Rhs element Vgr protein, putative, partial|unclassified	0.0065894160
+UniRef50_B4N195: GK24815	0.0065891963
+UniRef50_B4N195: GK24815|unclassified	0.0065891963
+UniRef50_M3JXH8	0.0065741306
+UniRef50_M3JXH8|unclassified	0.0065741306
+UniRef50_UPI000361EBAF: hypothetical protein	0.0065540669
+UniRef50_UPI000361EBAF: hypothetical protein|unclassified	0.0065540669
+UniRef50_F0VAJ2	0.0065224230
+UniRef50_F0VAJ2|unclassified	0.0065224230
+UniRef50_H1SI39: Filamentous hemagglutinin	0.0065187818
+UniRef50_H1SI39: Filamentous hemagglutinin|unclassified	0.0065187818
+UniRef50_I1EEC9	0.0065056024
+UniRef50_I1EEC9|unclassified	0.0065056024
+UniRef50_K9ZYR5: Tape measure domain protein	0.0064969195
+UniRef50_K9ZYR5: Tape measure domain protein|unclassified	0.0064969195
+UniRef50_UPI00006CF5D0: Ribonucleotide reductase, barrel domain containing protein	0.0064907873
+UniRef50_UPI00006CF5D0: Ribonucleotide reductase, barrel domain containing protein|unclassified	0.0064907873
+UniRef50_UPI0003615A4F: hypothetical protein	0.0064896599
+UniRef50_UPI0003615A4F: hypothetical protein|unclassified	0.0064896599
+UniRef50_Q03NA7: ATP-dependent helicase/nuclease subunit A	0.0064894581
+UniRef50_Q03NA7: ATP-dependent helicase/nuclease subunit A|unclassified	0.0064894581
+UniRef50_UPI000366EA2D: hypothetical protein, partial	0.0064815196
+UniRef50_UPI000366EA2D: hypothetical protein, partial|unclassified	0.0064815196
+UniRef50_UPI0003B40E2C: membrane protein, partial	0.0064668204
+UniRef50_UPI0003B40E2C: membrane protein, partial|unclassified	0.0064668204
+UniRef50_UPI0004442056: PREDICTED: midasin-like, partial	0.0064629067
+UniRef50_UPI0004442056: PREDICTED: midasin-like, partial|unclassified	0.0064629067
+UniRef50_Q55786: Methionine synthase	0.0064579469
+UniRef50_Q55786: Methionine synthase|unclassified	0.0064579469
+UniRef50_U3H8E5	0.0064452162
+UniRef50_U3H8E5|unclassified	0.0064452162
+UniRef50_Q00X46: WGS project CAID00000000 data, contig chromosome 13	0.0064222214
+UniRef50_Q00X46: WGS project CAID00000000 data, contig chromosome 13|unclassified	0.0064222214
+UniRef50_V8APD3	0.0064151103
+UniRef50_V8APD3|unclassified	0.0064151103
+UniRef50_UPI00035F7937: hypothetical protein	0.0064122651
+UniRef50_UPI00035F7937: hypothetical protein|unclassified	0.0064122651
+UniRef50_UPI00029CBBD2: non-ribosomal peptide synthetase	0.0064072064
+UniRef50_UPI00029CBBD2: non-ribosomal peptide synthetase|unclassified	0.0064072064
+UniRef50_UPI0001C373E9: helicase	0.0064039091
+UniRef50_UPI0001C373E9: helicase|unclassified	0.0064039091
+UniRef50_T0IJT6	0.0064038095
+UniRef50_T0IJT6|unclassified	0.0064038095
+UniRef50_V4R7Y3: Hydrogenase expression protein HypA	0.0063560603
+UniRef50_V4R7Y3: Hydrogenase expression protein HypA|unclassified	0.0063560603
+UniRef50_E1RPU5: Filamentous hemagglutinin outer membrane protein	0.0063442240
+UniRef50_E1RPU5: Filamentous hemagglutinin outer membrane protein|unclassified	0.0063442240
+UniRef50_UPI00037C3A9D: hypothetical protein, partial	0.0063356921
+UniRef50_UPI00037C3A9D: hypothetical protein, partial|unclassified	0.0063356921
+UniRef50_S7W0T4	0.0063297723
+UniRef50_S7W0T4|unclassified	0.0063297723
+UniRef50_UPI0004110C18: DNA-directed RNA polymerase subunit beta	0.0063224908
+UniRef50_UPI0004110C18: DNA-directed RNA polymerase subunit beta|unclassified	0.0063224908
+UniRef50_U4LRI5	0.0063080050
+UniRef50_U4LRI5|unclassified	0.0063080050
+UniRef50_Q6IH67: HDC03159	0.0063076548
+UniRef50_Q6IH67: HDC03159|unclassified	0.0063076548
+UniRef50_C3YC75	0.0062887824
+UniRef50_C3YC75|unclassified	0.0062887824
+UniRef50_N4W017: Cell surface glycoprotein (Fragment)	0.0062787228
+UniRef50_N4W017: Cell surface glycoprotein (Fragment)|unclassified	0.0062787228
+UniRef50_UPI0004649A8B: MULTISPECIES: peptidase C39	0.0062715976
+UniRef50_UPI0004649A8B: MULTISPECIES: peptidase C39|unclassified	0.0062715976
+UniRef50_J2JDI0: PQQ enzyme repeat family protein	0.0062711414
+UniRef50_J2JDI0: PQQ enzyme repeat family protein|unclassified	0.0062711414
+UniRef50_UPI000469BE78: hypothetical protein	0.0062510823
+UniRef50_UPI000469BE78: hypothetical protein|unclassified	0.0062510823
+UniRef50_K7YU90	0.0062470229
+UniRef50_K7YU90|unclassified	0.0062470229
+UniRef50_Q9XTL7: CG2 kappa repeat (Fragment)	0.0062093898
+UniRef50_Q9XTL7: CG2 kappa repeat (Fragment)|unclassified	0.0062093898
+UniRef50_D8R6N5	0.0061995070
+UniRef50_D8R6N5|unclassified	0.0061995070
+UniRef50_U6GGG5	0.0061493999
+UniRef50_U6GGG5|unclassified	0.0061493999
+UniRef50_UPI00034C12E9: hypothetical protein	0.0061491975
+UniRef50_UPI00034C12E9: hypothetical protein|unclassified	0.0061491975
+UniRef50_UPI0000DA44BE: PREDICTED: retinitis pigmentosa 1-like 1 protein-like	0.0061351376
+UniRef50_UPI0000DA44BE: PREDICTED: retinitis pigmentosa 1-like 1 protein-like|unclassified	0.0061351376
+UniRef50_UPI00035D4264: hypothetical protein	0.0061059116
+UniRef50_UPI00035D4264: hypothetical protein|unclassified	0.0061059116
+UniRef50_F0P5S4: LPXTG-motif cell wall anchor domain protein	0.0060993655
+UniRef50_F0P5S4: LPXTG-motif cell wall anchor domain protein|unclassified	0.0060993655
+UniRef50_UPI00029AB4E4: Na/Pi cotransporter II-like protein	0.0060992498
+UniRef50_UPI00029AB4E4: Na/Pi cotransporter II-like protein|unclassified	0.0060992498
+UniRef50_W7FZ93: Transporter	0.0060986072
+UniRef50_W7FZ93: Transporter|unclassified	0.0060986072
+UniRef50_Q98QC8	0.0060889111
+UniRef50_Q98QC8|unclassified	0.0060889111
+UniRef50_UPI000404DA40: hypothetical protein	0.0060882096
+UniRef50_UPI000404DA40: hypothetical protein|unclassified	0.0060882096
+UniRef50_Q396E1	0.0060877670
+UniRef50_Q396E1|unclassified	0.0060877670
+UniRef50_M4KGR1: Cell surface SD repeat protein,membrane-anchored	0.0060787654
+UniRef50_M4KGR1: Cell surface SD repeat protein,membrane-anchored|unclassified	0.0060787654
+UniRef50_UPI0004411AE2: hypothetical protein AURDEDRAFT_166722	0.0060281897
+UniRef50_UPI0004411AE2: hypothetical protein AURDEDRAFT_166722|unclassified	0.0060281897
+UniRef50_W0TBA1	0.0060157550
+UniRef50_W0TBA1|unclassified	0.0060157550
+UniRef50_X1YDK1	0.0060116925
+UniRef50_X1YDK1|unclassified	0.0060116925
+UniRef50_B4SL29: Filamentous haemagglutinin family outer membrane protein	0.0060100643
+UniRef50_B4SL29: Filamentous haemagglutinin family outer membrane protein|unclassified	0.0060100643
+UniRef50_L8PMS9: Putative secreted protein	0.0060076887
+UniRef50_L8PMS9: Putative secreted protein|unclassified	0.0060076887
+UniRef50_UPI000374CA9B: hypothetical protein	0.0059928933
+UniRef50_UPI000374CA9B: hypothetical protein|unclassified	0.0059928933
+UniRef50_G5APH5: Fanconi anemia group A protein	0.0059871725
+UniRef50_G5APH5: Fanconi anemia group A protein|unclassified	0.0059871725
+UniRef50_W4XFJ9	0.0059695830
+UniRef50_W4XFJ9|unclassified	0.0059695830
+UniRef50_G3JV14	0.0059619380
+UniRef50_G3JV14|unclassified	0.0059619380
+UniRef50_R1DU06	0.0059396208
+UniRef50_R1DU06|unclassified	0.0059396208
+UniRef50_UPI0003B41177: hypothetical protein	0.0059340390
+UniRef50_UPI0003B41177: hypothetical protein|unclassified	0.0059340390
+UniRef50_UPI0002192FB8: hypothetical protein, partial	0.0059248174
+UniRef50_UPI0002192FB8: hypothetical protein, partial|unclassified	0.0059248174
+UniRef50_S9PYS6: Cell agglutination protein mam3	0.0059071409
+UniRef50_S9PYS6: Cell agglutination protein mam3|unclassified	0.0059071409
+UniRef50_U6LNQ4	0.0058894509
+UniRef50_U6LNQ4|unclassified	0.0058894509
+UniRef50_F0VDS3	0.0058817239
+UniRef50_F0VDS3|unclassified	0.0058817239
+UniRef50_Q9NES7: Protein Y39B6A.1	0.0058596622
+UniRef50_Q9NES7: Protein Y39B6A.1|unclassified	0.0058596622
+UniRef50_UPI00029AF171: sugar ABC transporter substrate-binding protein, partial	0.0058355613
+UniRef50_UPI00029AF171: sugar ABC transporter substrate-binding protein, partial|unclassified	0.0058355613
+UniRef50_A8Y056: Protein CBR-PQN-75	0.0057867878
+UniRef50_A8Y056: Protein CBR-PQN-75|unclassified	0.0057867878
+UniRef50_V4Z9I2: Metallo-beta-lactamase domain-containing protein	0.0057780188
+UniRef50_V4Z9I2: Metallo-beta-lactamase domain-containing protein|unclassified	0.0057780188
+UniRef50_UPI00037A1FBF: hypothetical protein	0.0057773292
+UniRef50_UPI00037A1FBF: hypothetical protein|unclassified	0.0057773292
+UniRef50_M5TXB6	0.0057769146
+UniRef50_M5TXB6|unclassified	0.0057769146
+UniRef50_J7J5Q5: Large exoprotein involved in heme utilization or adhesion	0.0057722950
+UniRef50_J7J5Q5: Large exoprotein involved in heme utilization or adhesion|unclassified	0.0057722950
+UniRef50_UPI00038706DD: PREDICTED: collagen alpha-1(XIX) chain	0.0057705933
+UniRef50_UPI00038706DD: PREDICTED: collagen alpha-1(XIX) chain|unclassified	0.0057705933
+UniRef50_G7TIN3: Filamentous hemagglutinin	0.0057654731
+UniRef50_G7TIN3: Filamentous hemagglutinin|unclassified	0.0057654731
+UniRef50_D8TS17	0.0057534190
+UniRef50_D8TS17|unclassified	0.0057534190
+UniRef50_UPI00036CD3A9: hypothetical protein	0.0057513667
+UniRef50_UPI00036CD3A9: hypothetical protein|unclassified	0.0057513667
+UniRef50_Q08WN9	0.0057445317
+UniRef50_Q08WN9|unclassified	0.0057445317
+UniRef50_A0RV31	0.0057426057
+UniRef50_A0RV31|unclassified	0.0057426057
+UniRef50_UPI0003F87E98: hypothetical protein	0.0057231413
+UniRef50_UPI0003F87E98: hypothetical protein|unclassified	0.0057231413
+UniRef50_S8GS54	0.0057096294
+UniRef50_S8GS54|unclassified	0.0057096294
+UniRef50_U6JY59	0.0057068972
+UniRef50_U6JY59|unclassified	0.0057068972
+UniRef50_G5IQ08	0.0056793323
+UniRef50_G5IQ08|unclassified	0.0056793323
+UniRef50_T0C9L8: Putative membrane protein	0.0056752814
+UniRef50_T0C9L8: Putative membrane protein|unclassified	0.0056752814
+UniRef50_UPI000333E177	0.0056739949
+UniRef50_UPI000333E177|unclassified	0.0056739949
+UniRef50_UPI0003A2D876: hypothetical protein	0.0056464244
+UniRef50_UPI0003A2D876: hypothetical protein|unclassified	0.0056464244
+UniRef50_UPI00036099A6: hypothetical protein	0.0056405768
+UniRef50_UPI00036099A6: hypothetical protein|unclassified	0.0056405768
+UniRef50_UPI00036E8915: hypothetical protein	0.0056343106
+UniRef50_UPI00036E8915: hypothetical protein|unclassified	0.0056343106
+UniRef50_Q5KT71: DNA primase	0.0056293283
+UniRef50_Q5KT71: DNA primase|unclassified	0.0056293283
+UniRef50_UPI000402E9C0: hypothetical protein	0.0056239056
+UniRef50_UPI000402E9C0: hypothetical protein|unclassified	0.0056239056
+UniRef50_A4WS04	0.0056228051
+UniRef50_A4WS04|unclassified	0.0056228051
+UniRef50_UPI00036A9EBC: hypothetical protein	0.0056167393
+UniRef50_UPI00036A9EBC: hypothetical protein|unclassified	0.0056167393
+UniRef50_UPI00020F5788: PREDICTED: microtubule-associated protein 1A isoform X1	0.0055981647
+UniRef50_UPI00020F5788: PREDICTED: microtubule-associated protein 1A isoform X1|unclassified	0.0055981647
+UniRef50_D8TMM4	0.0055901376
+UniRef50_D8TMM4|unclassified	0.0055901376
+UniRef50_UPI0003648172: hypothetical protein, partial	0.0055544731
+UniRef50_UPI0003648172: hypothetical protein, partial|unclassified	0.0055544731
+UniRef50_UPI00022CA85D: PREDICTED: hypothetical protein LOC100744225	0.0055531851
+UniRef50_UPI00022CA85D: PREDICTED: hypothetical protein LOC100744225|unclassified	0.0055531851
+UniRef50_L0NM51	0.0055502696
+UniRef50_L0NM51|unclassified	0.0055502696
+UniRef50_Q733C1	0.0055435942
+UniRef50_Q733C1|unclassified	0.0055435942
+UniRef50_N4WBQ4	0.0055160453
+UniRef50_N4WBQ4|unclassified	0.0055160453
+UniRef50_UPI0004786584: hypothetical protein	0.0055067258
+UniRef50_UPI0004786584: hypothetical protein|unclassified	0.0055067258
+UniRef50_F0Y5X9	0.0054973983
+UniRef50_F0Y5X9|unclassified	0.0054973983
+UniRef50_G0NRJ5	0.0054926048
+UniRef50_G0NRJ5|unclassified	0.0054926048
+UniRef50_G0NWR7	0.0054894591
+UniRef50_G0NWR7|unclassified	0.0054894591
+UniRef50_UPI00036499A6: hypothetical protein	0.0054886198
+UniRef50_UPI00036499A6: hypothetical protein|unclassified	0.0054886198
+UniRef50_D0S9A9: Excinuclease ABC, A subunit family protein (Fragment)	0.0054791865
+UniRef50_D0S9A9: Excinuclease ABC, A subunit family protein (Fragment)|unclassified	0.0054791865
+UniRef50_I4N938	0.0054582520
+UniRef50_I4N938|unclassified	0.0054582520
+UniRef50_UPI0004091FE8: helicase	0.0054536121
+UniRef50_UPI0004091FE8: helicase|unclassified	0.0054536121
+UniRef50_UPI0003B42E56: hypothetical protein	0.0054359551
+UniRef50_UPI0003B42E56: hypothetical protein|unclassified	0.0054359551
+UniRef50_R1DBK5	0.0054306122
+UniRef50_R1DBK5|unclassified	0.0054306122
+UniRef50_K7ISH6	0.0054217502
+UniRef50_K7ISH6|unclassified	0.0054217502
+UniRef50_UPI000456030C: hypothetical protein PFL1_02724	0.0054206983
+UniRef50_UPI000456030C: hypothetical protein PFL1_02724|unclassified	0.0054206983
+UniRef50_K8YQM7: Nadh:ubiquinone oxidoreductase complex i intermediate-associated protein 30	0.0054040117
+UniRef50_K8YQM7: Nadh:ubiquinone oxidoreductase complex i intermediate-associated protein 30|unclassified	0.0054040117
+UniRef50_A0A024UPZ1	0.0053957897
+UniRef50_A0A024UPZ1|unclassified	0.0053957897
+UniRef50_F9WBG1: WGS project CAEQ00000000 data, annotated contig 2102 (Fragment)	0.0053902053
+UniRef50_F9WBG1: WGS project CAEQ00000000 data, annotated contig 2102 (Fragment)|unclassified	0.0053902053
+UniRef50_E6V361: FG-GAP repeat protein	0.0053898071
+UniRef50_E6V361: FG-GAP repeat protein|unclassified	0.0053898071
+UniRef50_K0K3W4	0.0053758209
+UniRef50_K0K3W4|unclassified	0.0053758209
+UniRef50_UPI0003B40518: ABC transporter ATP-binding protein	0.0053616421
+UniRef50_UPI0003B40518: ABC transporter ATP-binding protein|unclassified	0.0053616421
+UniRef50_G5ENR4: Putative ribonucleotide reductase beta subunit	0.0053515561
+UniRef50_G5ENR4: Putative ribonucleotide reductase beta subunit|unclassified	0.0053515561
+UniRef50_UPI0003776DE2: hypothetical protein	0.0053514781
+UniRef50_UPI0003776DE2: hypothetical protein|unclassified	0.0053514781
+UniRef50_K0KM61: Nipped-B-like protein	0.0053465866
+UniRef50_K0KM61: Nipped-B-like protein|unclassified	0.0053465866
+UniRef50_R8UUY9	0.0053395556
+UniRef50_R8UUY9|unclassified	0.0053395556
+UniRef50_R4Y2Q0: Filamentous haemagglutinin family outer membrane protein associated with VreARI signalling system	0.0053387031
+UniRef50_R4Y2Q0: Filamentous haemagglutinin family outer membrane protein associated with VreARI signalling system|unclassified	0.0053387031
+UniRef50_H3REW2: Large repetitive protein	0.0053338958
+UniRef50_H3REW2: Large repetitive protein|unclassified	0.0053338958
+UniRef50_A9VCF4: Predicted protein	0.0053199545
+UniRef50_A9VCF4: Predicted protein|unclassified	0.0053199545
+UniRef50_R6VMD7: Val start codon	0.0053010992
+UniRef50_R6VMD7: Val start codon|unclassified	0.0053010992
+UniRef50_UPI0003646A68: hypothetical protein	0.0052648035
+UniRef50_UPI0003646A68: hypothetical protein|unclassified	0.0052648035
+UniRef50_B4MJK9: GK20794	0.0052610865
+UniRef50_B4MJK9: GK20794|unclassified	0.0052610865
+UniRef50_U6LUB3	0.0052607896
+UniRef50_U6LUB3|unclassified	0.0052607896
+UniRef50_S4VYD2: Morn repeat	0.0052524074
+UniRef50_S4VYD2: Morn repeat|unclassified	0.0052524074
+UniRef50_A8WXW9: Protein CBG04553	0.0052472863
+UniRef50_A8WXW9: Protein CBG04553|unclassified	0.0052472863
+UniRef50_L7GNY8: Filamentous hemagglutinin (Fragment)	0.0052205110
+UniRef50_L7GNY8: Filamentous hemagglutinin (Fragment)|unclassified	0.0052205110
+UniRef50_U5GZC0	0.0052192844
+UniRef50_U5GZC0|unclassified	0.0052192844
+UniRef50_Q4JSJ3: Putative cell surface protein	0.0052154340
+UniRef50_Q4JSJ3: Putative cell surface protein|unclassified	0.0052154340
+UniRef50_Q070J3: Virion core protein	0.0052116077
+UniRef50_Q070J3: Virion core protein|unclassified	0.0052116077
+UniRef50_UPI0003765362: hypothetical protein	0.0052072570
+UniRef50_UPI0003765362: hypothetical protein|unclassified	0.0052072570
+UniRef50_UPI00024836FF: autotransporter adhesin	0.0051887549
+UniRef50_UPI00024836FF: autotransporter adhesin|unclassified	0.0051887549
+UniRef50_UPI00034D3A20: hypothetical protein	0.0051822783
+UniRef50_UPI00034D3A20: hypothetical protein|unclassified	0.0051822783
+UniRef50_C5M6H4: Predicted protein	0.0051547864
+UniRef50_C5M6H4: Predicted protein|unclassified	0.0051547864
+UniRef50_UPI0002F901AF: hypothetical protein	0.0051326609
+UniRef50_UPI0002F901AF: hypothetical protein|unclassified	0.0051326609
+UniRef50_UPI000475CDAD: hypothetical protein	0.0051293532
+UniRef50_UPI000475CDAD: hypothetical protein|unclassified	0.0051293532
+UniRef50_W9Y1N0	0.0051028443
+UniRef50_W9Y1N0|unclassified	0.0051028443
+UniRef50_UPI000288D51F: beta-hydroxyacyl-(acyl-carrier-protein) dehydratase FabA/FabZ, partial	0.0050953925
+UniRef50_UPI000288D51F: beta-hydroxyacyl-(acyl-carrier-protein) dehydratase FabA/FabZ, partial|unclassified	0.0050953925
+UniRef50_K0RMW0	0.0050934647
+UniRef50_K0RMW0|unclassified	0.0050934647
+UniRef50_F6D6L7: Polymorphic outer membrane protein	0.0050816691
+UniRef50_F6D6L7: Polymorphic outer membrane protein|unclassified	0.0050816691
+UniRef50_E1JTR8	0.0050623819
+UniRef50_E1JTR8|unclassified	0.0050623819
+UniRef50_D9VJK2	0.0050379486
+UniRef50_D9VJK2|unclassified	0.0050379486
+UniRef50_A0A011QZ11	0.0050249045
+UniRef50_A0A011QZ11|unclassified	0.0050249045
+UniRef50_W0Z4J9: Hemagglutination repeat-containing protein	0.0050189189
+UniRef50_W0Z4J9: Hemagglutination repeat-containing protein|unclassified	0.0050189189
+UniRef50_UPI000395B6E3: PREDICTED: glioma tumor suppressor candidate region gene 1 protein-like	0.0050041969
+UniRef50_UPI000395B6E3: PREDICTED: glioma tumor suppressor candidate region gene 1 protein-like|unclassified	0.0050041969
+UniRef50_F6D7F1: Polymorphic outer membrane protein	0.0049971729
+UniRef50_F6D7F1: Polymorphic outer membrane protein|unclassified	0.0049971729
+UniRef50_C6D677: Peptidoglycan-binding domain 1 protein	0.0049927435
+UniRef50_C6D677: Peptidoglycan-binding domain 1 protein|unclassified	0.0049927435
+UniRef50_J9DB76	0.0049794274
+UniRef50_J9DB76|unclassified	0.0049794274
+UniRef50_UPI00046B666E: PREDICTED: retinitis pigmentosa 1-like 1 protein	0.0049717069
+UniRef50_UPI00046B666E: PREDICTED: retinitis pigmentosa 1-like 1 protein|unclassified	0.0049717069
+UniRef50_Q08UW0	0.0049455584
+UniRef50_Q08UW0|unclassified	0.0049455584
+UniRef50_R7SB12	0.0049426822
+UniRef50_R7SB12|unclassified	0.0049426822
+UniRef50_D4YR40	0.0049368085
+UniRef50_D4YR40|unclassified	0.0049368085
+UniRef50_H6SNC6: Large exoprotein involved in heme utilization or adhesion	0.0049222086
+UniRef50_H6SNC6: Large exoprotein involved in heme utilization or adhesion|unclassified	0.0049222086
+UniRef50_G0J229: Carbohydrate-binding CenC domain protein	0.0049204804
+UniRef50_G0J229: Carbohydrate-binding CenC domain protein|unclassified	0.0049204804
+UniRef50_UPI00035FE337: hypothetical protein	0.0049184279
+UniRef50_UPI00035FE337: hypothetical protein|unclassified	0.0049184279
+UniRef50_Q67L49	0.0048848444
+UniRef50_Q67L49|unclassified	0.0048848444
+UniRef50_Q2NFN2: Member of asn/thr-rich large protein family	0.0048777430
+UniRef50_Q2NFN2: Member of asn/thr-rich large protein family|unclassified	0.0048777430
+UniRef50_UPI00037E79E4: hypothetical protein, partial	0.0048765982
+UniRef50_UPI00037E79E4: hypothetical protein, partial|unclassified	0.0048765982
+UniRef50_B3AZS4	0.0048720245
+UniRef50_B3AZS4|unclassified	0.0048720245
+UniRef50_J7USD3: Adhesin HecA family 20-residue repeat (Two copies)	0.0048670547
+UniRef50_J7USD3: Adhesin HecA family 20-residue repeat (Two copies)|unclassified	0.0048670547
+UniRef50_I4VL21: Filamentous hemagglutinin outer membrane protein (Fragment)	0.0048627204
+UniRef50_I4VL21: Filamentous hemagglutinin outer membrane protein (Fragment)|unclassified	0.0048627204
+UniRef50_S8ENL7	0.0048366248
+UniRef50_S8ENL7|unclassified	0.0048366248
+UniRef50_Q8BRH4-2: Isoform 2 of Histone-lysine N-methyltransferase 2C	0.0048199738
+UniRef50_Q8BRH4-2: Isoform 2 of Histone-lysine N-methyltransferase 2C|unclassified	0.0048199738
+UniRef50_R7TV32	0.0048029325
+UniRef50_R7TV32|unclassified	0.0048029325
+UniRef50_E1TRA6: Cell surface protein (Putative)	0.0047994513
+UniRef50_E1TRA6: Cell surface protein (Putative)|unclassified	0.0047994513
+UniRef50_UPI00036B1EA9: hypothetical protein	0.0047968211
+UniRef50_UPI00036B1EA9: hypothetical protein|unclassified	0.0047968211
+UniRef50_S7UIT6	0.0047292015
+UniRef50_S7UIT6|unclassified	0.0047292015
+UniRef50_Q2WA86: Ice nucleation protein	0.0046832804
+UniRef50_Q2WA86: Ice nucleation protein|unclassified	0.0046832804
+UniRef50_K7JFU1	0.0046666775
+UniRef50_K7JFU1|unclassified	0.0046666775
+UniRef50_F9P402: Serine-rich adhesin, platelet-type (Fragment)	0.0046392022
+UniRef50_F9P402: Serine-rich adhesin, platelet-type (Fragment)|unclassified	0.0046392022
+UniRef50_K0US89	0.0046253086
+UniRef50_K0US89|unclassified	0.0046253086
+UniRef50_E9HK69	0.0046061364
+UniRef50_E9HK69|unclassified	0.0046061364
+UniRef50_W4BGV3: Cell surface glycoprotein 2 (Fragment)	0.0046052518
+UniRef50_W4BGV3: Cell surface glycoprotein 2 (Fragment)|unclassified	0.0046052518
+UniRef50_UPI00036A9BF7: hypothetical protein	0.0046007023
+UniRef50_UPI00036A9BF7: hypothetical protein|unclassified	0.0046007023
+UniRef50_F4WT46: Iporin	0.0045808561
+UniRef50_F4WT46: Iporin|unclassified	0.0045808561
+UniRef50_W4YQ01	0.0045655565
+UniRef50_W4YQ01|unclassified	0.0045655565
+UniRef50_B7ZYQ6	0.0045620364
+UniRef50_B7ZYQ6|unclassified	0.0045620364
+UniRef50_UPI00022CA0E4: PREDICTED: hypothetical protein LOC100741268	0.0045545983
+UniRef50_UPI00022CA0E4: PREDICTED: hypothetical protein LOC100741268|unclassified	0.0045545983
+UniRef50_D8N394	0.0045389309
+UniRef50_D8N394|unclassified	0.0045389309
+UniRef50_F0VKW9: Putative dopey, N-terminal domain-containing protein	0.0045313745
+UniRef50_F0VKW9: Putative dopey, N-terminal domain-containing protein|unclassified	0.0045313745
+UniRef50_A9CFW3: Ice nucleation-like protein	0.0045076963
+UniRef50_A9CFW3: Ice nucleation-like protein|unclassified	0.0045076963
+UniRef50_Q3JX16: Planctomycete extracellular domain protein	0.0045043882
+UniRef50_Q3JX16: Planctomycete extracellular domain protein|unclassified	0.0045043882
+UniRef50_B4MJZ5: GK20714	0.0045026666
+UniRef50_B4MJZ5: GK20714|unclassified	0.0045026666
+UniRef50_Q74I55	0.0044726603
+UniRef50_Q74I55|unclassified	0.0044726603
+UniRef50_UPI0004637FB0: hypothetical protein, partial	0.0044530283
+UniRef50_UPI0004637FB0: hypothetical protein, partial|unclassified	0.0044530283
+UniRef50_S0NR54	0.0044339006
+UniRef50_S0NR54|unclassified	0.0044339006
+UniRef50_UPI0003B5138C: PREDICTED: helicase SRCAP-like	0.0044321769
+UniRef50_UPI0003B5138C: PREDICTED: helicase SRCAP-like|unclassified	0.0044321769
+UniRef50_A0A046SJ38: PE-PGRS family protein PE_PGRS54	0.0044297065
+UniRef50_A0A046SJ38: PE-PGRS family protein PE_PGRS54|unclassified	0.0044297065
+UniRef50_I2FYJ8	0.0044102271
+UniRef50_I2FYJ8|unclassified	0.0044102271
+UniRef50_D9QPT3: Ankyrin	0.0044083791
+UniRef50_D9QPT3: Ankyrin|unclassified	0.0044083791
+UniRef50_UPI00022337B0: PREDICTED: hypothetical protein LOC100676107	0.0043964152
+UniRef50_UPI00022337B0: PREDICTED: hypothetical protein LOC100676107|unclassified	0.0043964152
+UniRef50_UPI0002B4A544	0.0043948685
+UniRef50_UPI0002B4A544|unclassified	0.0043948685
+UniRef50_UPI0003748AA6: hypothetical protein	0.0043628924
+UniRef50_UPI0003748AA6: hypothetical protein|unclassified	0.0043628924
+UniRef50_D3E0W6: Adhesin-like protein	0.0043253838
+UniRef50_D3E0W6: Adhesin-like protein|unclassified	0.0043253838
+UniRef50_S8F0C2	0.0043165386
+UniRef50_S8F0C2|unclassified	0.0043165386
+UniRef50_M2WAS0	0.0043074573
+UniRef50_M2WAS0|unclassified	0.0043074573
+UniRef50_UPI0003042104: hypothetical protein	0.0042915568
+UniRef50_UPI0003042104: hypothetical protein|unclassified	0.0042915568
+UniRef50_H5X0A3	0.0042811000
+UniRef50_H5X0A3|unclassified	0.0042811000
+UniRef50_UPI000023CA35: hypothetical protein FG01684.1	0.0042801977
+UniRef50_UPI000023CA35: hypothetical protein FG01684.1|unclassified	0.0042801977
+UniRef50_F4GVZ5: Filamentous hemagglutinin-like protein	0.0042767804
+UniRef50_F4GVZ5: Filamentous hemagglutinin-like protein|unclassified	0.0042767804
+UniRef50_D7G3F8	0.0042653639
+UniRef50_D7G3F8|unclassified	0.0042653639
+UniRef50_A6SZB5	0.0042131801
+UniRef50_A6SZB5|unclassified	0.0042131801
+UniRef50_E9BVX7	0.0041856957
+UniRef50_E9BVX7|unclassified	0.0041856957
+UniRef50_K3W2S5	0.0041832408
+UniRef50_K3W2S5|unclassified	0.0041832408
+UniRef50_UPI00047B937D: DEAD/DEAH box helicase	0.0041809691
+UniRef50_UPI00047B937D: DEAD/DEAH box helicase|unclassified	0.0041809691
+UniRef50_UPI0003742704: hypothetical protein, partial	0.0041752096
+UniRef50_UPI0003742704: hypothetical protein, partial|unclassified	0.0041752096
+UniRef50_W6AJD8	0.0041701972
+UniRef50_W6AJD8|unclassified	0.0041701972
+UniRef50_UPI00035A02C1: PREDICTED: G-protein coupled receptor 98-like	0.0041171740
+UniRef50_UPI00035A02C1: PREDICTED: G-protein coupled receptor 98-like|unclassified	0.0041171740
+UniRef50_A3ATB7	0.0041158642
+UniRef50_A3ATB7|unclassified	0.0041158642
+UniRef50_B0DMW2: Predicted protein	0.0041017586
+UniRef50_B0DMW2: Predicted protein|unclassified	0.0041017586
+UniRef50_D6SXB8	0.0040829285
+UniRef50_D6SXB8|unclassified	0.0040829285
+UniRef50_A6T0L1	0.0040725019
+UniRef50_A6T0L1|unclassified	0.0040725019
+UniRef50_E8TVQ1	0.0040665057
+UniRef50_E8TVQ1|unclassified	0.0040665057
+UniRef50_UPI0003621D80: hypothetical protein	0.0040662955
+UniRef50_UPI0003621D80: hypothetical protein|unclassified	0.0040662955
+UniRef50_UPI00036B09C8: hypothetical protein	0.0040597426
+UniRef50_UPI00036B09C8: hypothetical protein|unclassified	0.0040597426
+UniRef50_B1JCL4: Outer membrane adhesin like proteiin	0.0040585251
+UniRef50_B1JCL4: Outer membrane adhesin like proteiin|unclassified	0.0040585251
+UniRef50_UPI00037BC1A6: MULTISPECIES: hypothetical protein	0.0040535471
+UniRef50_UPI00037BC1A6: MULTISPECIES: hypothetical protein|unclassified	0.0040535471
+UniRef50_B4SFT0: Hemolysin-type calcium-binding region	0.0040527962
+UniRef50_B4SFT0: Hemolysin-type calcium-binding region|unclassified	0.0040527962
+UniRef50_UPI00039FB6D9: hypothetical protein	0.0040461003
+UniRef50_UPI00039FB6D9: hypothetical protein|unclassified	0.0040461003
+UniRef50_U6M0C0	0.0040211289
+UniRef50_U6M0C0|unclassified	0.0040211289
+UniRef50_S9TJM6	0.0039913665
+UniRef50_S9TJM6|unclassified	0.0039913665
+UniRef50_UPI0004572114	0.0039905260
+UniRef50_UPI0004572114|unclassified	0.0039905260
+UniRef50_U6JQ35	0.0039757230
+UniRef50_U6JQ35|unclassified	0.0039757230
+UniRef50_UPI000467DA4D: hypothetical protein	0.0039530444
+UniRef50_UPI000467DA4D: hypothetical protein|unclassified	0.0039530444
+UniRef50_C7R6B5: Lytic transglycosylase catalytic	0.0039522222
+UniRef50_C7R6B5: Lytic transglycosylase catalytic|unclassified	0.0039522222
+UniRef50_UPI00047B3D5B: amino acid adenylation protein	0.0039262665
+UniRef50_UPI00047B3D5B: amino acid adenylation protein|unclassified	0.0039262665
+UniRef50_J4UHW8	0.0039111409
+UniRef50_J4UHW8|unclassified	0.0039111409
+UniRef50_UPI0003C369DA	0.0039086771
+UniRef50_UPI0003C369DA|unclassified	0.0039086771
+UniRef50_UPI000203A270: PREDICTED: protein FAM179B-like	0.0039013305
+UniRef50_UPI000203A270: PREDICTED: protein FAM179B-like|unclassified	0.0039013305
+UniRef50_M2REW5	0.0039005772
+UniRef50_M2REW5|unclassified	0.0039005772
+UniRef50_C2GL54: Putative Ig domain protein	0.0038821286
+UniRef50_C2GL54: Putative Ig domain protein|unclassified	0.0038821286
+UniRef50_UPI0002E3BD73: hypothetical protein	0.0038765122
+UniRef50_UPI0002E3BD73: hypothetical protein|unclassified	0.0038765122
+UniRef50_UPI00047BFD0E: hypothetical protein, partial	0.0038648786
+UniRef50_UPI00047BFD0E: hypothetical protein, partial|unclassified	0.0038648786
+UniRef50_UPI00034A779B: hypothetical protein	0.0038625388
+UniRef50_UPI00034A779B: hypothetical protein|unclassified	0.0038625388
+UniRef50_K2RSL7	0.0038609789
+UniRef50_K2RSL7|unclassified	0.0038609789
+UniRef50_K0C6X2: Filamentous hemagglutinin-like protein	0.0038608505
+UniRef50_K0C6X2: Filamentous hemagglutinin-like protein|unclassified	0.0038608505
+UniRef50_A0A024JI89: Similar to Saccharomyces cerevisiae YNL271C BNI1 Formin, nucleates the formation of linear actin filaments	0.0038524193
+UniRef50_A0A024JI89: Similar to Saccharomyces cerevisiae YNL271C BNI1 Formin, nucleates the formation of linear actin filaments|unclassified	0.0038524193
+UniRef50_D8N1D9	0.0038382796
+UniRef50_D8N1D9|unclassified	0.0038382796
+UniRef50_S7FPR8	0.0038259742
+UniRef50_S7FPR8|unclassified	0.0038259742
+UniRef50_UPI000273CA5E: PREDICTED: mortality factor 4-like protein 1-like	0.0038086128
+UniRef50_UPI000273CA5E: PREDICTED: mortality factor 4-like protein 1-like|unclassified	0.0038086128
+UniRef50_K0B491	0.0037850326
+UniRef50_K0B491|unclassified	0.0037850326
+UniRef50_UPI0004643B11: hypothetical protein, partial	0.0037792442
+UniRef50_UPI0004643B11: hypothetical protein, partial|unclassified	0.0037792442
+UniRef50_UPI000372ED37: MULTISPECIES: hypothetical protein	0.0037695211
+UniRef50_UPI000372ED37: MULTISPECIES: hypothetical protein|unclassified	0.0037695211
+UniRef50_UPI0003B71D05: hypothetical protein	0.0037640139
+UniRef50_UPI0003B71D05: hypothetical protein|unclassified	0.0037640139
+UniRef50_M7CKF2: Cell surface SD repeat protein,membrane-anchored	0.0037212686
+UniRef50_M7CKF2: Cell surface SD repeat protein,membrane-anchored|unclassified	0.0037212686
+UniRef50_Q4SIU4: Chromosome 21 SCAF14577, whole genome shotgun sequence. (Fragment)	0.0037051943
+UniRef50_Q4SIU4: Chromosome 21 SCAF14577, whole genome shotgun sequence. (Fragment)|unclassified	0.0037051943
+UniRef50_UPI0003EA830E: PREDICTED: pollen-specific leucine-rich repeat extensin-like protein 1-like	0.0037017494
+UniRef50_UPI0003EA830E: PREDICTED: pollen-specific leucine-rich repeat extensin-like protein 1-like|unclassified	0.0037017494
+UniRef50_S0E049	0.0036955206
+UniRef50_S0E049|unclassified	0.0036955206
+UniRef50_J9NEN2	0.0036892792
+UniRef50_J9NEN2|unclassified	0.0036892792
+UniRef50_C3ZCN2	0.0036738651
+UniRef50_C3ZCN2|unclassified	0.0036738651
+UniRef50_UPI00037C0328: hypothetical protein	0.0036410722
+UniRef50_UPI00037C0328: hypothetical protein|unclassified	0.0036410722
+UniRef50_K1JG29	0.0036286121
+UniRef50_K1JG29|unclassified	0.0036286121
+UniRef50_UPI00032A2ED1: PREDICTED: midasin-like	0.0036257005
+UniRef50_UPI00032A2ED1: PREDICTED: midasin-like|unclassified	0.0036257005
+UniRef50_Q3KBE5	0.0036214061
+UniRef50_Q3KBE5|unclassified	0.0036214061
+UniRef50_E6JE24: Integral membrane protein	0.0036188846
+UniRef50_E6JE24: Integral membrane protein|unclassified	0.0036188846
+UniRef50_J2J6F5	0.0036063386
+UniRef50_J2J6F5|unclassified	0.0036063386
+UniRef50_Q1I8T5	0.0036050305
+UniRef50_Q1I8T5|unclassified	0.0036050305
+UniRef50_Q3BUH1: Filamentous hemagglutinin-related protein	0.0036029321
+UniRef50_Q3BUH1: Filamentous hemagglutinin-related protein|unclassified	0.0036029321
+UniRef50_UPI0003C808C2: PREDICTED: mucin-2-like, partial	0.0035509424
+UniRef50_UPI0003C808C2: PREDICTED: mucin-2-like, partial|unclassified	0.0035509424
+UniRef50_H6N2J3	0.0035502696
+UniRef50_H6N2J3|unclassified	0.0035502696
+UniRef50_Q9XJM1	0.0035129644
+UniRef50_Q9XJM1|unclassified	0.0035129644
+UniRef50_I4XVE2: Hemagglutinin family protein	0.0034997538
+UniRef50_I4XVE2: Hemagglutinin family protein|unclassified	0.0034997538
+UniRef50_A4SD98	0.0034927651
+UniRef50_A4SD98|unclassified	0.0034927651
+UniRef50_UPI0003943449: PREDICTED: protein SCAF11-like isoform X3	0.0034765912
+UniRef50_UPI0003943449: PREDICTED: protein SCAF11-like isoform X3|unclassified	0.0034765912
+UniRef50_E2ZP02	0.0034652221
+UniRef50_E2ZP02|unclassified	0.0034652221
+UniRef50_UPI0003798B2F: hypothetical protein	0.0034637732
+UniRef50_UPI0003798B2F: hypothetical protein|unclassified	0.0034637732
+UniRef50_A0A031GMA6	0.0034611426
+UniRef50_A0A031GMA6|unclassified	0.0034611426
+UniRef50_A0A058Z181	0.0034419042
+UniRef50_A0A058Z181|unclassified	0.0034419042
+UniRef50_UPI00029AB9CD: hypothetical protein	0.0034372075
+UniRef50_UPI00029AB9CD: hypothetical protein|unclassified	0.0034372075
+UniRef50_UPI0003941003: PREDICTED: retinoic acid-induced protein 1-like isoform X1	0.0034196941
+UniRef50_UPI0003941003: PREDICTED: retinoic acid-induced protein 1-like isoform X1|unclassified	0.0034196941
+UniRef50_UPI000363611D: hypothetical protein, partial	0.0033475000
+UniRef50_UPI000363611D: hypothetical protein, partial|unclassified	0.0033475000
+UniRef50_UPI0003D0AA58: PREDICTED: histone-lysine N-methyltransferase 2C-like isoform X9	0.0033465741
+UniRef50_UPI0003D0AA58: PREDICTED: histone-lysine N-methyltransferase 2C-like isoform X9|unclassified	0.0033465741
+UniRef50_V9S0Q2: Filamentous hemagglutinin family outer membrane protein associated with VreARI signaling system	0.0033297183
+UniRef50_V9S0Q2: Filamentous hemagglutinin family outer membrane protein associated with VreARI signaling system|unclassified	0.0033297183
+UniRef50_UPI000440E14F: hypothetical protein STEHIDRAFT_116932	0.0033270053
+UniRef50_UPI000440E14F: hypothetical protein STEHIDRAFT_116932|unclassified	0.0033270053
+UniRef50_UPI0004634E35: hypothetical protein, partial	0.0033229444
+UniRef50_UPI0004634E35: hypothetical protein, partial|unclassified	0.0033229444
+UniRef50_T2F4S3: MucBP domain-containing cell surface protein	0.0033193944
+UniRef50_T2F4S3: MucBP domain-containing cell surface protein|unclassified	0.0033193944
+UniRef50_F4X6W0: Activating molecule in BECN1-regulated autophagy protein 1	0.0032862766
+UniRef50_F4X6W0: Activating molecule in BECN1-regulated autophagy protein 1|unclassified	0.0032862766
+UniRef50_I2AGX0	0.0032810597
+UniRef50_I2AGX0|unclassified	0.0032810597
+UniRef50_A0A023XYX7	0.0032545713
+UniRef50_A0A023XYX7|unclassified	0.0032545713
+UniRef50_UPI00042CACEC	0.0032421602
+UniRef50_UPI00042CACEC|unclassified	0.0032421602
+UniRef50_U2ZTD9	0.0032217821
+UniRef50_U2ZTD9|unclassified	0.0032217821
+UniRef50_Q5W678: Putative polyprotein	0.0032154975
+UniRef50_Q5W678: Putative polyprotein|unclassified	0.0032154975
+UniRef50_Y0KNL3: Hemagglutinin (Fragment)	0.0031710411
+UniRef50_Y0KNL3: Hemagglutinin (Fragment)|unclassified	0.0031710411
+UniRef50_Q66BE0	0.0031669536
+UniRef50_Q66BE0|unclassified	0.0031669536
+UniRef50_K8YYD4: Filamentous hemagglutinin	0.0031375000
+UniRef50_K8YYD4: Filamentous hemagglutinin|unclassified	0.0031375000
+UniRef50_L9PKQ6	0.0031304089
+UniRef50_L9PKQ6|unclassified	0.0031304089
+UniRef50_UPI0004624AAB: calcium-binding protein	0.0031091107
+UniRef50_UPI0004624AAB: calcium-binding protein|unclassified	0.0031091107
+UniRef50_A0A024K9K9	0.0031079385
+UniRef50_A0A024K9K9|unclassified	0.0031079385
+UniRef50_UPI00035DAFD9: hypothetical protein	0.0031023393
+UniRef50_UPI00035DAFD9: hypothetical protein|unclassified	0.0031023393
+UniRef50_A0A022GT17: Hemagglutinin	0.0030729240
+UniRef50_A0A022GT17: Hemagglutinin|unclassified	0.0030729240
+UniRef50_UPI000402383C: hypothetical protein	0.0030185169
+UniRef50_UPI000402383C: hypothetical protein|unclassified	0.0030185169
+UniRef50_UPI0003C3A565: PREDICTED: microtubule-associated protein futsch-like	0.0030168050
+UniRef50_UPI0003C3A565: PREDICTED: microtubule-associated protein futsch-like|unclassified	0.0030168050
+UniRef50_UPI00040620EB: hypothetical protein	0.0029954566
+UniRef50_UPI00040620EB: hypothetical protein|unclassified	0.0029954566
+UniRef50_UPI00035D9DBA: hypothetical protein	0.0029878452
+UniRef50_UPI00035D9DBA: hypothetical protein|unclassified	0.0029878452
+UniRef50_E1X3N0: Putative membrane-anchored cell surface protein	0.0029539270
+UniRef50_E1X3N0: Putative membrane-anchored cell surface protein|unclassified	0.0029539270
+UniRef50_UPI00036DBFF9: hypothetical protein	0.0029514786
+UniRef50_UPI00036DBFF9: hypothetical protein|unclassified	0.0029514786
+UniRef50_UPI000237B670: siderophore 2,3-dihydroxybenzoate-glycine-threonine trimeric ester bacillibactin synthetase	0.0029498472
+UniRef50_UPI000237B670: siderophore 2,3-dihydroxybenzoate-glycine-threonine trimeric ester bacillibactin synthetase|unclassified	0.0029498472
+UniRef50_UPI0000D880A0: predicted protein	0.0029463841
+UniRef50_UPI0000D880A0: predicted protein|unclassified	0.0029463841
+UniRef50_UPI00046FF34F: peptide synthetase	0.0029364411
+UniRef50_UPI00046FF34F: peptide synthetase|unclassified	0.0029364411
+UniRef50_D6RM86	0.0029098293
+UniRef50_D6RM86|unclassified	0.0029098293
+UniRef50_UPI000377A505: hypothetical protein	0.0029060479
+UniRef50_UPI000377A505: hypothetical protein|unclassified	0.0029060479
+UniRef50_UPI0002B4B3B7: PREDICTED: midasin-like	0.0028870146
+UniRef50_UPI0002B4B3B7: PREDICTED: midasin-like|unclassified	0.0028870146
+UniRef50_G2LQM1: Filamentous hemagglutinin	0.0028789861
+UniRef50_G2LQM1: Filamentous hemagglutinin|unclassified	0.0028789861
+UniRef50_Q9BH64: Putative Cg2 protein, kappa domain (Fragment)	0.0028785251
+UniRef50_Q9BH64: Putative Cg2 protein, kappa domain (Fragment)|unclassified	0.0028785251
+UniRef50_C3GTM5: Collagen adhesion protein	0.0028757443
+UniRef50_C3GTM5: Collagen adhesion protein|unclassified	0.0028757443
+UniRef50_UPI00046336AA: hypothetical protein	0.0028656711
+UniRef50_UPI00046336AA: hypothetical protein|unclassified	0.0028656711
+UniRef50_N9N5V9	0.0028568285
+UniRef50_N9N5V9|unclassified	0.0028568285
+UniRef50_E6V9U6	0.0028505347
+UniRef50_E6V9U6|unclassified	0.0028505347
+UniRef50_UPI0002D6F017: hypothetical protein	0.0027913411
+UniRef50_UPI0002D6F017: hypothetical protein|unclassified	0.0027913411
+UniRef50_F4PJT2: Hypothetical ribonuclease II domain containing protein	0.0027799497
+UniRef50_F4PJT2: Hypothetical ribonuclease II domain containing protein|unclassified	0.0027799497
+UniRef50_E4NJ63	0.0027182278
+UniRef50_E4NJ63|unclassified	0.0027182278
+UniRef50_UPI000469F8B9: hypothetical protein	0.0027128362
+UniRef50_UPI000469F8B9: hypothetical protein|unclassified	0.0027128362
+UniRef50_UPI000369419C: hypothetical protein	0.0026984230
+UniRef50_UPI000369419C: hypothetical protein|unclassified	0.0026984230
+UniRef50_UPI0002F0DF2E: hypothetical protein	0.0026797182
+UniRef50_UPI0002F0DF2E: hypothetical protein|unclassified	0.0026797182
+UniRef50_G3PPI5	0.0026764160
+UniRef50_G3PPI5|unclassified	0.0026764160
+UniRef50_UPI00036E4958: hypothetical protein	0.0026756965
+UniRef50_UPI00036E4958: hypothetical protein|unclassified	0.0026756965
+UniRef50_C4XTI6	0.0026720071
+UniRef50_C4XTI6|unclassified	0.0026720071
+UniRef50_UPI00034B5E7B: hypothetical protein	0.0026270915
+UniRef50_UPI00034B5E7B: hypothetical protein|unclassified	0.0026270915
+UniRef50_V5F9I0: Putative hemagglutinin/hemolysin-related protein	0.0026265241
+UniRef50_V5F9I0: Putative hemagglutinin/hemolysin-related protein|unclassified	0.0026265241
+UniRef50_UPI0003691FBA: hypothetical protein	0.0026176788
+UniRef50_UPI0003691FBA: hypothetical protein|unclassified	0.0026176788
+UniRef50_J7PC82: Leucine-rich repeat domain protein (LPXTG motif)	0.0025810288
+UniRef50_J7PC82: Leucine-rich repeat domain protein (LPXTG motif)|unclassified	0.0025810288
+UniRef50_I3AIQ0: Filamentous hemagglutinin (Fragment)	0.0025656163
+UniRef50_I3AIQ0: Filamentous hemagglutinin (Fragment)|unclassified	0.0025656163
+UniRef50_X5M9G0: TPR repeat, SEL1 subfamily	0.0025505511
+UniRef50_X5M9G0: TPR repeat, SEL1 subfamily|unclassified	0.0025505511
+UniRef50_UPI0003F50C11: hypothetical protein	0.0025389324
+UniRef50_UPI0003F50C11: hypothetical protein|unclassified	0.0025389324
+UniRef50_C0VWL5: Thrombospondin type 3 repeat protein	0.0024885873
+UniRef50_C0VWL5: Thrombospondin type 3 repeat protein|unclassified	0.0024885873
+UniRef50_N8V7J5	0.0024813901
+UniRef50_N8V7J5|unclassified	0.0024813901
+UniRef50_A0A011NPI5: Cyclolysin	0.0024770022
+UniRef50_A0A011NPI5: Cyclolysin|unclassified	0.0024770022
+UniRef50_UPI0004431B20: PREDICTED: rho guanine nucleotide exchange factor 3	0.0024701297
+UniRef50_UPI0004431B20: PREDICTED: rho guanine nucleotide exchange factor 3|unclassified	0.0024701297
+UniRef50_UPI000465F2BE: peptide synthetase	0.0024478087
+UniRef50_UPI000465F2BE: peptide synthetase|unclassified	0.0024478087
+UniRef50_UPI00036BF596: hypothetical protein	0.0024151249
+UniRef50_UPI00036BF596: hypothetical protein|unclassified	0.0024151249
+UniRef50_UPI0002B4ABD9: PREDICTED: gamma-glutamyltranspeptidase 1-like	0.0023879334
+UniRef50_UPI0002B4ABD9: PREDICTED: gamma-glutamyltranspeptidase 1-like|unclassified	0.0023879334
+UniRef50_UPI00037E9746: hypothetical protein, partial	0.0023806858
+UniRef50_UPI00037E9746: hypothetical protein, partial|unclassified	0.0023806858
+UniRef50_UPI00047580F1: hypothetical protein, partial	0.0023733753
+UniRef50_UPI00047580F1: hypothetical protein, partial|unclassified	0.0023733753
+UniRef50_Q7ML81: Putative RTX protein	0.0023586381
+UniRef50_Q7ML81: Putative RTX protein|unclassified	0.0023586381
+UniRef50_D7FZX1	0.0023583855
+UniRef50_D7FZX1|unclassified	0.0023583855
+UniRef50_UPI0004622947: hypothetical protein TRAVEDRAFT_68878	0.0022944099
+UniRef50_UPI0004622947: hypothetical protein TRAVEDRAFT_68878|unclassified	0.0022944099
+UniRef50_U6GVJ1	0.0022384031
+UniRef50_U6GVJ1|unclassified	0.0022384031
+UniRef50_U6JU30	0.0021715124
+UniRef50_U6JU30|unclassified	0.0021715124
+UniRef50_UPI0003645BA6: hypothetical protein	0.0021393252
+UniRef50_UPI0003645BA6: hypothetical protein|unclassified	0.0021393252
+UniRef50_UPI0004672358: hypothetical protein	0.0021389942
+UniRef50_UPI0004672358: hypothetical protein|unclassified	0.0021389942
+UniRef50_UPI00035E25C2: hypothetical protein	0.0021371831
+UniRef50_UPI00035E25C2: hypothetical protein|unclassified	0.0021371831
+UniRef50_D9CIX9: SAD1f	0.0021285314
+UniRef50_D9CIX9: SAD1f|unclassified	0.0021285314
+UniRef50_Q3JP46	0.0021188512
+UniRef50_Q3JP46|unclassified	0.0021188512
+UniRef50_J8AXF8	0.0021160245
+UniRef50_J8AXF8|unclassified	0.0021160245
+UniRef50_W4FFI6	0.0020701533
+UniRef50_W4FFI6|unclassified	0.0020701533
+UniRef50_UPI000378EC20: hypothetical protein	0.0020652271
+UniRef50_UPI000378EC20: hypothetical protein|unclassified	0.0020652271
+UniRef50_J3DU69	0.0020425474
+UniRef50_J3DU69|unclassified	0.0020425474
+UniRef50_UPI0003637D6D: hypothetical protein	0.0020088197
+UniRef50_UPI0003637D6D: hypothetical protein|unclassified	0.0020088197
+UniRef50_R0KT14	0.0019394397
+UniRef50_R0KT14|unclassified	0.0019394397
+UniRef50_UPI00037EF227: hypothetical protein, partial	0.0019328841
+UniRef50_UPI00037EF227: hypothetical protein, partial|unclassified	0.0019328841
+UniRef50_B5SDA9: Hemagglutinin-related protein	0.0019268390
+UniRef50_B5SDA9: Hemagglutinin-related protein|unclassified	0.0019268390
+UniRef50_UPI0003EAD270: PREDICTED: protein bassoon-like	0.0018866196
+UniRef50_UPI0003EAD270: PREDICTED: protein bassoon-like|unclassified	0.0018866196
+UniRef50_UPI0003602AC0: hypothetical protein	0.0018857298
+UniRef50_UPI0003602AC0: hypothetical protein|unclassified	0.0018857298
+UniRef50_UPI0003B5F3E5: hypothetical protein	0.0018613244
+UniRef50_UPI0003B5F3E5: hypothetical protein|unclassified	0.0018613244
+UniRef50_M7YSB0	0.0018482051
+UniRef50_M7YSB0|unclassified	0.0018482051
+UniRef50_B2I527: Filamentous haemagglutinin family outer membrane protein	0.0018395479
+UniRef50_B2I527: Filamentous haemagglutinin family outer membrane protein|unclassified	0.0018395479
+UniRef50_X2D8N8: CCR4-NOT transcription complex subunit 1-like protein	0.0018313691
+UniRef50_X2D8N8: CCR4-NOT transcription complex subunit 1-like protein|unclassified	0.0018313691
+UniRef50_A4P1C2	0.0018132989
+UniRef50_A4P1C2|unclassified	0.0018132989
+UniRef50_UPI00037444DC: hypothetical protein	0.0017973217
+UniRef50_UPI00037444DC: hypothetical protein|unclassified	0.0017973217
+UniRef50_UPI000378A614: hypothetical protein	0.0017691421
+UniRef50_UPI000378A614: hypothetical protein|unclassified	0.0017691421
+UniRef50_R4LEH4: Yd repeat-containing protein	0.0017472130
+UniRef50_R4LEH4: Yd repeat-containing protein|unclassified	0.0017472130
+UniRef50_S4YMU8: Filamentous hemagglutinin	0.0017432148
+UniRef50_S4YMU8: Filamentous hemagglutinin|unclassified	0.0017432148
+UniRef50_UPI000443E2D6: PREDICTED: tetratricopeptide repeat protein 40	0.0016819660
+UniRef50_UPI000443E2D6: PREDICTED: tetratricopeptide repeat protein 40|unclassified	0.0016819660
+UniRef50_UPI00036DCFC8: hypothetical protein	0.0016327044
+UniRef50_UPI00036DCFC8: hypothetical protein|unclassified	0.0016327044
+UniRef50_UPI0001BF6B99: 90S preribosome component RRP12	0.0016313392
+UniRef50_UPI0001BF6B99: 90S preribosome component RRP12|unclassified	0.0016313392
+UniRef50_UPI000365699C: hypothetical protein	0.0016224188
+UniRef50_UPI000365699C: hypothetical protein|unclassified	0.0016224188
+UniRef50_UPI000344F009: hypothetical protein	0.0015763429
+UniRef50_UPI000344F009: hypothetical protein|unclassified	0.0015763429
+UniRef50_U6M5E8	0.0015640805
+UniRef50_U6M5E8|unclassified	0.0015640805
+UniRef50_UPI000349BE1A: hypothetical protein	0.0015464606
+UniRef50_UPI000349BE1A: hypothetical protein|unclassified	0.0015464606
+UniRef50_UPI0003773ED0: hypothetical protein	0.0014975465
+UniRef50_UPI0003773ED0: hypothetical protein|unclassified	0.0014975465
+UniRef50_R0ISA3	0.0014873041
+UniRef50_R0ISA3|unclassified	0.0014873041
+UniRef50_F4GI46	0.0014628012
+UniRef50_F4GI46|unclassified	0.0014628012
+UniRef50_UPI0002D336FD: hypothetical protein	0.0014421264
+UniRef50_UPI0002D336FD: hypothetical protein|unclassified	0.0014421264
+UniRef50_C0N8P3: Type I secretion target GGXGXDXXX repeat protein domain protein	0.0014134994
+UniRef50_C0N8P3: Type I secretion target GGXGXDXXX repeat protein domain protein|unclassified	0.0014134994
+UniRef50_W7A2A5	0.0013833667
+UniRef50_W7A2A5|unclassified	0.0013833667
+UniRef50_D2QX58: Peptidase domain protein	0.0013763922
+UniRef50_D2QX58: Peptidase domain protein|unclassified	0.0013763922
+UniRef50_UPI0004446091: PREDICTED: LOW QUALITY PROTEIN: histone-lysine N-methyltransferase 2C	0.0013693947
+UniRef50_UPI0004446091: PREDICTED: LOW QUALITY PROTEIN: histone-lysine N-methyltransferase 2C|unclassified	0.0013693947
+UniRef50_UPI0003644B17: hypothetical protein, partial	0.0013488169
+UniRef50_UPI0003644B17: hypothetical protein, partial|unclassified	0.0013488169
+UniRef50_A0A011N6I9	0.0013414891
+UniRef50_A0A011N6I9|unclassified	0.0013414891
+UniRef50_A0A058ZAA0	0.0012939818
+UniRef50_A0A058ZAA0|unclassified	0.0012939818
+UniRef50_UPI000468C770: hypothetical protein	0.0012465542
+UniRef50_UPI000468C770: hypothetical protein|unclassified	0.0012465542
+UniRef50_UPI00036FCEE3: hypothetical protein	0.0012113651
+UniRef50_UPI00036FCEE3: hypothetical protein|unclassified	0.0012113651
+UniRef50_UPI00035C33AC: hypothetical protein	0.0010786375
+UniRef50_UPI00035C33AC: hypothetical protein|unclassified	0.0010786375
+UniRef50_N1Q3A9	0.0009733696
+UniRef50_N1Q3A9|unclassified	0.0009733696
+UniRef50_A0A031GKF7: Polymorphic membrane protein, Filamentous hemagglutinin/Adhesin	0.0008849280
+UniRef50_A0A031GKF7: Polymorphic membrane protein, Filamentous hemagglutinin/Adhesin|unclassified	0.0008849280
+UniRef50_D8M1X0: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_16	0.0008849116
+UniRef50_D8M1X0: Singapore isolate B (sub-type 7) whole genome shotgun sequence assembly, scaffold_16|unclassified	0.0008849116
+UniRef50_A8LV91	0.0008555354
+UniRef50_A8LV91|unclassified	0.0008555354
+UniRef50_D3E2A1: Adhesin-like protein	0.0007987026
+UniRef50_D3E2A1: Adhesin-like protein|unclassified	0.0007987026
+UniRef50_U6MJL1	0.0007379580
+UniRef50_U6MJL1|unclassified	0.0007379580
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/metaphlan2_file.txt	Tue Apr 12 02:55:42 2016 -0400
@@ -0,0 +1,85 @@
+#SampleID	Metaphlan2_Analysis
+#clade_name	relative_abundance	coverage	average_genome_length_in_the_clade	estimated_number_of_reads_from_the_clade
+k__Bacteria	93.48715	0.138259210304	3060646	423162
+k__Archaea	6.51285	0.00963193275713	1717866	16546
+k__Bacteria|p__Firmicutes	73.45294	0.108630391421	2645593	287392
+k__Bacteria|p__Proteobacteria	19.36391	0.0286375092603	3135748	89800
+k__Archaea|p__Euryarchaeota	6.51285	0.00963193275713	1954104	18822
+k__Bacteria|p__Actinobacteria	0.36055	0.000533224419409	3230214	1722
+k__Bacteria|p__Deinococcus_Thermus	0.30974	0.000458085203848	2916300	1336
+k__Bacteria|p__Firmicutes|c__Bacilli	72.514	0.107241784241	2708875	290505
+k__Bacteria|p__Proteobacteria|c__Gammaproteobacteria	13.59711	0.0201089279307	3686133	74124
+k__Archaea|p__Euryarchaeota|c__Methanobacteria	6.51285	0.00963193275713	1658190	15972
+k__Bacteria|p__Proteobacteria|c__Alphaproteobacteria	5.64659	0.00835080616008	3693177	30841
+k__Bacteria|p__Firmicutes|c__Clostridia	0.93894	0.00138860718019	2874996	3992
+k__Bacteria|p__Actinobacteria|c__Actinobacteria	0.36055	0.000533224419409	3230214	1722
+k__Bacteria|p__Deinococcus_Thermus|c__Deinococci	0.30974	0.000458085203848	2916300	1336
+k__Bacteria|p__Proteobacteria|c__Epsilonproteobacteria	0.07678	0.000113544968539	2003141	227
+k__Bacteria|p__Proteobacteria|c__Betaproteobacteria	0.04343	6.42302010405e-05	3060202	197
+k__Bacteria|p__Firmicutes|c__Bacilli|o__Bacillales	55.38558	0.0819103700977	3407631	279120
+k__Bacteria|p__Firmicutes|c__Bacilli|o__Lactobacillales	17.12842	0.0253314141428	2010119	50919
+k__Bacteria|p__Proteobacteria|c__Gammaproteobacteria|o__Enterobacteriales	11.54704	0.017077045274	4079009	69657
+k__Archaea|p__Euryarchaeota|c__Methanobacteria|o__Methanobacteriales	6.51285	0.00963193275713	1658190	15972
+k__Bacteria|p__Proteobacteria|c__Alphaproteobacteria|o__Rhodobacterales	5.64659	0.00835080616008	4758592	39738
+k__Bacteria|p__Proteobacteria|c__Gammaproteobacteria|o__Pseudomonadales	2.05008	0.00303188265663	4126474	12511
+k__Bacteria|p__Firmicutes|c__Clostridia|o__Clostridiales	0.93894	0.00138860718019	3127383	4343
+k__Bacteria|p__Actinobacteria|c__Actinobacteria|o__Actinomycetales	0.36055	0.000533224419409	4860922	2592
+k__Bacteria|p__Deinococcus_Thermus|c__Deinococci|o__Deinococcales	0.30974	0.000458085203848	3351957	1535
+k__Bacteria|p__Proteobacteria|c__Epsilonproteobacteria|o__Campylobacterales	0.07678	0.000113544968539	2228417	253
+k__Bacteria|p__Proteobacteria|c__Betaproteobacteria|o__Neisseriales	0.04343	6.42302010405e-05	3161861	203
+k__Bacteria|p__Firmicutes|c__Bacilli|o__Bacillales|f__Staphylococcaceae	55.38558	0.0819103700977	2461214	201599
+k__Bacteria|p__Firmicutes|c__Bacilli|o__Lactobacillales|f__Streptococcaceae	17.12842	0.0253314141428	2193606	55567
+k__Bacteria|p__Proteobacteria|c__Gammaproteobacteria|o__Enterobacteriales|f__Enterobacteriaceae	11.54704	0.017077045274	4079009	69657
+k__Archaea|p__Euryarchaeota|c__Methanobacteria|o__Methanobacteriales|f__Methanobacteriaceae	6.51285	0.00963193275713	2073038	19967
+k__Bacteria|p__Proteobacteria|c__Alphaproteobacteria|o__Rhodobacterales|f__Rhodobacteraceae	5.64659	0.00835080616008	5037498	42067
+k__Bacteria|p__Proteobacteria|c__Gammaproteobacteria|o__Pseudomonadales|f__Pseudomonadaceae	1.92917	0.00285306704708	5434751	15506
+k__Bacteria|p__Firmicutes|c__Clostridia|o__Clostridiales|f__Clostridiaceae	0.93894	0.00138860718019	3351243	4654
+k__Bacteria|p__Actinobacteria|c__Actinobacteria|o__Actinomycetales|f__Propionibacteriaceae	0.36055	0.000533224419409	3386340	1806
+k__Bacteria|p__Deinococcus_Thermus|c__Deinococci|o__Deinococcales|f__Deinococcaceae	0.30974	0.000458085203848	3443517	1577
+k__Bacteria|p__Proteobacteria|c__Gammaproteobacteria|o__Pseudomonadales|f__Moraxellaceae	0.12091	0.000178815609551	2818198	504
+k__Bacteria|p__Proteobacteria|c__Epsilonproteobacteria|o__Campylobacterales|f__Helicobacteraceae	0.07678	0.000113544968539	2208224	251
+k__Bacteria|p__Proteobacteria|c__Betaproteobacteria|o__Neisseriales|f__Neisseriaceae	0.04343	6.42302010405e-05	3161861	203
+k__Bacteria|p__Firmicutes|c__Bacilli|o__Bacillales|f__Staphylococcaceae|g__Staphylococcus	55.38558	0.0819103700977	2627125	215189
+k__Bacteria|p__Firmicutes|c__Bacilli|o__Lactobacillales|f__Streptococcaceae|g__Streptococcus	17.12842	0.0253314141428	2091707	52986
+k__Bacteria|p__Proteobacteria|c__Gammaproteobacteria|o__Enterobacteriales|f__Enterobacteriaceae|g__Escherichia	11.54704	0.017077045274	4803810	82035
+k__Archaea|p__Euryarchaeota|c__Methanobacteria|o__Methanobacteriales|f__Methanobacteriaceae|g__Methanobrevibacter	6.51285	0.00963193275713	2273035	21894
+k__Bacteria|p__Proteobacteria|c__Alphaproteobacteria|o__Rhodobacterales|f__Rhodobacteraceae|g__Rhodobacter	5.64659	0.00835080616008	3846637	32123
+k__Bacteria|p__Proteobacteria|c__Gammaproteobacteria|o__Pseudomonadales|f__Pseudomonadaceae|g__Pseudomonas	1.92917	0.00285306704708	6246362	17821
+k__Bacteria|p__Firmicutes|c__Clostridia|o__Clostridiales|f__Clostridiaceae|g__Clostridium	0.93894	0.00138860718019	4612938	6406
+k__Bacteria|p__Actinobacteria|c__Actinobacteria|o__Actinomycetales|f__Propionibacteriaceae|g__Propionibacterium	0.36055	0.000533224419409	2605315	1389
+k__Bacteria|p__Deinococcus_Thermus|c__Deinococci|o__Deinococcales|f__Deinococcaceae|g__Deinococcus	0.30974	0.000458085203848	3443517	1577
+k__Bacteria|p__Proteobacteria|c__Gammaproteobacteria|o__Pseudomonadales|f__Moraxellaceae|g__Acinetobacter	0.12091	0.000178815609551	3719277	665
+k__Bacteria|p__Proteobacteria|c__Epsilonproteobacteria|o__Campylobacterales|f__Helicobacteraceae|g__Helicobacter	0.07678	0.000113544968539	1873785	213
+k__Bacteria|p__Proteobacteria|c__Betaproteobacteria|o__Neisseriales|f__Neisseriaceae|g__Neisseria	0.04343	6.42302010405e-05	2338593	150
+k__Bacteria|p__Firmicutes|c__Bacilli|o__Bacillales|f__Staphylococcaceae|g__Staphylococcus|s__Staphylococcus_aureus	28.27762	0.041820097544	2866570	119880
+k__Bacteria|p__Firmicutes|c__Bacilli|o__Bacillales|f__Staphylococcaceae|g__Staphylococcus|s__Staphylococcus_epidermidis	27.10796	0.0400902725537	2525605	101252
+k__Bacteria|p__Firmicutes|c__Bacilli|o__Lactobacillales|f__Streptococcaceae|g__Streptococcus|s__Streptococcus_mutans	16.30896	0.0241195042226	1908490	46032
+k__Bacteria|p__Proteobacteria|c__Gammaproteobacteria|o__Enterobacteriales|f__Enterobacteriaceae|g__Escherichia|s__Escherichia_coli	6.69956	0.00990806034098	5208306	51604
+k__Archaea|p__Euryarchaeota|c__Methanobacteria|o__Methanobacteriales|f__Methanobacteriaceae|g__Methanobrevibacter|s__Methanobrevibacter_smithii	6.51285	0.00963193275713	1883713	18144
+k__Bacteria|p__Proteobacteria|c__Alphaproteobacteria|o__Rhodobacterales|f__Rhodobacteraceae|g__Rhodobacter|s__Rhodobacter_sphaeroides	5.64659	0.00835080616008	4259863	35573
+k__Bacteria|p__Proteobacteria|c__Gammaproteobacteria|o__Enterobacteriales|f__Enterobacteriaceae|g__Escherichia|s__Escherichia_unclassified	4.84747	0.00716898493305	4803810	34438
+k__Bacteria|p__Proteobacteria|c__Gammaproteobacteria|o__Pseudomonadales|f__Pseudomonadaceae|g__Pseudomonas|s__Pseudomonas_unclassified	1.11583	0.00165021989547	6246362	10308
+k__Bacteria|p__Firmicutes|c__Clostridia|o__Clostridiales|f__Clostridiaceae|g__Clostridium|s__Clostridium_beijerinckii	0.93894	0.00138860718019	5906224	8201
+k__Bacteria|p__Firmicutes|c__Bacilli|o__Lactobacillales|f__Streptococcaceae|g__Streptococcus|s__Streptococcus_agalactiae	0.81946	0.00121190992023	2093917	2538
+k__Bacteria|p__Proteobacteria|c__Gammaproteobacteria|o__Pseudomonadales|f__Pseudomonadaceae|g__Pseudomonas|s__Pseudomonas_aeruginosa	0.81333	0.00120284715161	6695839	8054
+k__Bacteria|p__Actinobacteria|c__Actinobacteria|o__Actinomycetales|f__Propionibacteriaceae|g__Propionibacterium|s__Propionibacterium_acnes	0.36055	0.000533224419409	2505029	1336
+k__Bacteria|p__Deinococcus_Thermus|c__Deinococci|o__Deinococcales|f__Deinococcaceae|g__Deinococcus|s__Deinococcus_unclassified	0.15778	0.000233347738069	3443517	804
+k__Bacteria|p__Deinococcus_Thermus|c__Deinococci|o__Deinococcales|f__Deinococcaceae|g__Deinococcus|s__Deinococcus_radiodurans	0.15196	0.000224737465779	3060986	688
+k__Bacteria|p__Proteobacteria|c__Gammaproteobacteria|o__Pseudomonadales|f__Moraxellaceae|g__Acinetobacter|s__Acinetobacter_baumannii	0.12091	0.000178815609551	3966061	709
+k__Bacteria|p__Proteobacteria|c__Epsilonproteobacteria|o__Campylobacterales|f__Helicobacteraceae|g__Helicobacter|s__Helicobacter_pylori	0.07678	0.000113544968539	1635217	186
+k__Bacteria|p__Proteobacteria|c__Betaproteobacteria|o__Neisseriales|f__Neisseriaceae|g__Neisseria|s__Neisseria_meningitidis	0.04343	6.42302010405e-05	2200434	141
+k__Bacteria|p__Firmicutes|c__Bacilli|o__Bacillales|f__Staphylococcaceae|g__Staphylococcus|s__Staphylococcus_aureus|t__Staphylococcus_aureus_unclassified	28.27762	0.041820097544	2866570	119880
+k__Bacteria|p__Firmicutes|c__Bacilli|o__Bacillales|f__Staphylococcaceae|g__Staphylococcus|s__Staphylococcus_epidermidis|t__Staphylococcus_epidermidis_unclassified	27.10796	0.0400902725537	2525605	101252
+k__Bacteria|p__Firmicutes|c__Bacilli|o__Lactobacillales|f__Streptococcaceae|g__Streptococcus|s__Streptococcus_mutans|t__Streptococcus_mutans_unclassified	16.30896	0.0241195042226	1908490	46032
+k__Bacteria|p__Proteobacteria|c__Gammaproteobacteria|o__Enterobacteriales|f__Enterobacteriaceae|g__Escherichia|s__Escherichia_coli|t__Escherichia_coli_unclassified	6.69956	0.00990806034098	5208306	51604
+k__Archaea|p__Euryarchaeota|c__Methanobacteria|o__Methanobacteriales|f__Methanobacteriaceae|g__Methanobrevibacter|s__Methanobrevibacter_smithii|t__Methanobrevibacter_smithii_unclassified	6.51285	0.00963193275713	1883713	18144
+k__Bacteria|p__Proteobacteria|c__Alphaproteobacteria|o__Rhodobacterales|f__Rhodobacteraceae|g__Rhodobacter|s__Rhodobacter_sphaeroides|t__Rhodobacter_sphaeroides_unclassified	5.64659	0.00835080616008	4259863	35573
+k__Bacteria|p__Firmicutes|c__Clostridia|o__Clostridiales|f__Clostridiaceae|g__Clostridium|s__Clostridium_beijerinckii|t__Clostridium_beijerinckii_unclassified	0.93894	0.00138860718019	5906224	8201
+k__Bacteria|p__Firmicutes|c__Bacilli|o__Lactobacillales|f__Streptococcaceae|g__Streptococcus|s__Streptococcus_agalactiae|t__Streptococcus_agalactiae_unclassified	0.81946	0.00121190992023	2093917	2538
+k__Bacteria|p__Proteobacteria|c__Gammaproteobacteria|o__Pseudomonadales|f__Pseudomonadaceae|g__Pseudomonas|s__Pseudomonas_aeruginosa|t__Pseudomonas_aeruginosa_unclassified	0.81333	0.00120284715161	6695839	8054
+k__Bacteria|p__Actinobacteria|c__Actinobacteria|o__Actinomycetales|f__Propionibacteriaceae|g__Propionibacterium|s__Propionibacterium_acnes|t__Propionibacterium_acnes_unclassified	0.36055	0.000533224419409	2505029	1336
+k__Bacteria|p__Deinococcus_Thermus|c__Deinococci|o__Deinococcales|f__Deinococcaceae|g__Deinococcus|s__Deinococcus_radiodurans|t__GCF_000008565	0.15196	0.000224737465779	3060986	688
+k__Bacteria|p__Proteobacteria|c__Gammaproteobacteria|o__Pseudomonadales|f__Moraxellaceae|g__Acinetobacter|s__Acinetobacter_baumannii|t__Acinetobacter_baumannii_unclassified	0.12091	0.000178815609551	3966061	709
+k__Bacteria|p__Proteobacteria|c__Epsilonproteobacteria|o__Campylobacterales|f__Helicobacteraceae|g__Helicobacter|s__Helicobacter_pylori|t__Helicobacter_pylori_unclassified	0.07678	0.000113544968539	1635217	186
+k__Bacteria|p__Proteobacteria|c__Betaproteobacteria|o__Neisseriales|f__Neisseriaceae|g__Neisseria|s__Neisseria_meningitidis|t__Neisseria_meningitidis_unclassified	0.04343	6.42302010405e-05	2200434	141
+#estimated total number of reads from known clades: 439708